From 41fe4b7bca7b9831eb58b5486fea910737867bd7 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 7 Oct 2025 12:07:45 +0600 Subject: [PATCH 01/78] Initial commit --- 1-4 Slice And Loop.py | 11 +++++++++++ 1-4 Slice And Loop_b.py | 12 ++++++++++++ 1-5 Control Flow.py | 19 +++++++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 1-4 Slice And Loop.py create mode 100644 1-4 Slice And Loop_b.py create mode 100644 1-5 Control Flow.py diff --git a/1-4 Slice And Loop.py b/1-4 Slice And Loop.py new file mode 100644 index 0000000..7725c84 --- /dev/null +++ b/1-4 Slice And Loop.py @@ -0,0 +1,11 @@ +# --- DEMO: Slicing sequences --- +nums = [10, 20, 30, 40, 50, 60] +print(nums[1:4]) # middle slice +print(nums[-3:]) # last 3 +print(nums[::2]) # step slice +print(nums[::-1]) # reverse +print(nums[:-1]) +print(nums[-1:]) +print(nums[-4:-3]) +print(nums[-2:-2]) +print(nums[-2:-1]) diff --git a/1-4 Slice And Loop_b.py b/1-4 Slice And Loop_b.py new file mode 100644 index 0000000..212a71f --- /dev/null +++ b/1-4 Slice And Loop_b.py @@ -0,0 +1,12 @@ +# --- DEMO: Truthiness --- +samples = [0, 1, "", "text", [], [1], {}, {"k": 1}, None] +for item in samples: + if item: + print(repr(item), "→ Truthy") + else: + print(repr(item), "→ Falsy") + +# --- DEMO: f-strings --- +name = "John" +score = 95 +print(f"{name} scored {score}% (next: {score + 1}%)") \ No newline at end of file diff --git a/1-5 Control Flow.py b/1-5 Control Flow.py new file mode 100644 index 0000000..968cc80 --- /dev/null +++ b/1-5 Control Flow.py @@ -0,0 +1,19 @@ +# --- DEMO: Nested data structures --- +data = { + "user": { + "name": "Alice", + "id": 123, + "contact": { + "email": ["alice@example.com", "abc@edu.com"], + "phone": "555-1234" + } + }, + "items": [ + {"name": "Laptop", "price": 1200}, + {"name": "Keyboard", "price": 75} + ] +} + +print("User Name:", data["user"]["name"]) +print("First Item Price:", data["items"][0]["price"]) +print("User Email:", data["user"]["contact"]["email"][1]) \ No newline at end of file From 13b906123e6871b93304f01519dbd3cb3f76d939 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 7 Oct 2025 12:22:13 +0600 Subject: [PATCH 02/78] 1-5 Control Flow B --- 1-5 Control Flow b.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 1-5 Control Flow b.py diff --git a/1-5 Control Flow b.py b/1-5 Control Flow b.py new file mode 100644 index 0000000..36330af --- /dev/null +++ b/1-5 Control Flow b.py @@ -0,0 +1,29 @@ +order_data = { + "customer": { + "first_name": "Bob", + "last_name": "Johnson" + }, + "items": [ + {"item_name": "Book", + "price": 25.99 + }, + {"item_name": "Notebook", + "price": 4.50 + }, + {"item_name": "Pen", + "price": 1.20 + } + ] +} + +# 1. Customer's full name +full_name = f"{order_data['customer']['first_name']} {order_data['customer']['last_name']}" +print("Customer Full Name:", full_name) + +# 2. Total price of all items +total_price = sum(item["price"] for item in order_data["items"]) +print("Total Order Price:", total_price) + +# 3. List of item names +item_names = [item["item_name"] for item in order_data["items"]] +print("Item Names:", item_names) \ No newline at end of file From ba019227e665efa9322d9a98688ac29d1569523b Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Thu, 9 Oct 2025 09:56:01 +0600 Subject: [PATCH 03/78] Nested Comprehensions and Conditional Logic --- Demo_Comprehensions.py | 24 ++++++++++++++++++++++++ Nested Comprehensions.py | 14 ++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 Demo_Comprehensions.py create mode 100644 Nested Comprehensions.py diff --git a/Demo_Comprehensions.py b/Demo_Comprehensions.py new file mode 100644 index 0000000..a92b5f1 --- /dev/null +++ b/Demo_Comprehensions.py @@ -0,0 +1,24 @@ +# --- DEMO: Comprehensions --- +temp = [35, 40, 28, 32, 30] + +farhen = [item*(9/5)+32 for item in temp] +print(f"First {farhen}") + +farhen1 = [item*(9/5)+32 for item in temp if item % 2 == 0] +print(farhen1) + +for item in temp: + print(item*(9/5)+32) + +squares = [x**2 for x in range(6)] + +evens = [x for x in range(20) if x % 2 == 0] + +square_map = {x: x**2 for x in range(5)} + +unique_initials = {item[0].lower() for item in ["Alice", "Bob", "alex", "Beta"]} + +print(f"Square is : {squares}") +print(f"even: {evens}") +print(f"smap: {square_map}") +print(f"ui : {unique_initials}") \ No newline at end of file diff --git a/Nested Comprehensions.py b/Nested Comprehensions.py new file mode 100644 index 0000000..3be4af7 --- /dev/null +++ b/Nested Comprehensions.py @@ -0,0 +1,14 @@ +# --- DEMO: Nested Comprehensions and Conditional Logic --- +# Create a list of lists where inner lists contain squares of even numbers +nested_squares = [[x**2 for x in range(i, i+5) if x % 2 == 0] for i in range(1, 10, 3)] +print("Nested Squares:", nested_squares) + +# Create a dictionary mapping numbers to a description based on conditions +number_descriptions = { + num: ("Even and divisible by 3" if num % 2 == 0 and num % 3 == 0 + else "Even" if num % 2 == 0 + else "Odd and divisible by 3" if num % 3 == 0 + else "Odd") + for num in range(1, 100) +} +print("Number Descriptions:", number_descriptions) \ No newline at end of file From 4e4640cb88d25c4870a9f9ad28ebc58b7eef6b0a Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 7 Oct 2025 12:12:50 +0600 Subject: [PATCH 04/78] Reinitialize repo with full folder structure --- Python_For_ML/Week_1 | 1 + Python_For_ML/print(hlw);.py | 1 + 2 files changed, 2 insertions(+) create mode 160000 Python_For_ML/Week_1 create mode 100644 Python_For_ML/print(hlw);.py diff --git a/Python_For_ML/Week_1 b/Python_For_ML/Week_1 new file mode 160000 index 0000000..41fe4b7 --- /dev/null +++ b/Python_For_ML/Week_1 @@ -0,0 +1 @@ +Subproject commit 41fe4b7bca7b9831eb58b5486fea910737867bd7 diff --git a/Python_For_ML/print(hlw);.py b/Python_For_ML/print(hlw);.py new file mode 100644 index 0000000..0c8a497 --- /dev/null +++ b/Python_For_ML/print(hlw);.py @@ -0,0 +1 @@ +print("hlw"); \ No newline at end of file From 8185893a691de3d5aae0afc7c580cbf11d877506 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 7 Oct 2025 12:57:49 +0600 Subject: [PATCH 05/78] Update Week_1 --- Python_For_ML/Week_1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python_For_ML/Week_1 b/Python_For_ML/Week_1 index 41fe4b7..13b9061 160000 --- a/Python_For_ML/Week_1 +++ b/Python_For_ML/Week_1 @@ -1 +1 @@ -Subproject commit 41fe4b7bca7b9831eb58b5486fea910737867bd7 +Subproject commit 13b906123e6871b93304f01519dbd3cb3f76d939 From 355dd8e1227394ebd1e0b27f9bc473269aab47e0 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 14 Oct 2025 21:49:33 +0600 Subject: [PATCH 06/78] Conditionals statement in Python --- Python_For_ML/Week_1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python_For_ML/Week_1 b/Python_For_ML/Week_1 index 13b9061..ba01922 160000 --- a/Python_For_ML/Week_1 +++ b/Python_For_ML/Week_1 @@ -1 +1 @@ -Subproject commit 13b906123e6871b93304f01519dbd3cb3f76d939 +Subproject commit ba019227e665efa9322d9a98688ac29d1569523b From f8eba325dea65da323615406d356cb953a8bd860 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Thu, 16 Oct 2025 11:56:55 +0600 Subject: [PATCH 07/78] 2.4 Break and Continue Statements in Python --- Python_For_ML/Week_1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python_For_ML/Week_1 b/Python_For_ML/Week_1 index ba01922..ea3ab39 160000 --- a/Python_For_ML/Week_1 +++ b/Python_For_ML/Week_1 @@ -1 +1 @@ -Subproject commit ba019227e665efa9322d9a98688ac29d1569523b +Subproject commit ea3ab39383675f98e035cab3416aa5431e5288c1 From cb08e0a332303bb6a92632edf5732661487061bb Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Sat, 18 Oct 2025 07:57:49 +0600 Subject: [PATCH 08/78] Mod_2 --- ...sitive_and_Negative.py_af21d1322666bd52797fb80b21a35953.prob | 1 + Python_For_ML/Week_1 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 Python_For_ML/.cph/.C_Even_Odd_Positive_and_Negative.py_af21d1322666bd52797fb80b21a35953.prob diff --git a/Python_For_ML/.cph/.C_Even_Odd_Positive_and_Negative.py_af21d1322666bd52797fb80b21a35953.prob b/Python_For_ML/.cph/.C_Even_Odd_Positive_and_Negative.py_af21d1322666bd52797fb80b21a35953.prob new file mode 100644 index 0000000..754a58e --- /dev/null +++ b/Python_For_ML/.cph/.C_Even_Odd_Positive_and_Negative.py_af21d1322666bd52797fb80b21a35953.prob @@ -0,0 +1 @@ +{"name":"C. Even, Odd, Positive and Negative","group":"Codeforces - Sheet #2 (Loops)","url":"https://codeforces.com/group/MWSDmqGsZm/contest/219432/problem/C","interactive":false,"memoryLimit":256,"timeLimit":1000,"tests":[{"id":1760751970230,"input":"5\n-5 0 -3 -4 12\n","output":"Even: 3\nOdd: 2\nPositive: 1\nNegative: 3\n"}],"testType":"single","input":{"type":"stdin"},"output":{"type":"stdout"},"languages":{"java":{"mainClass":"Main","taskClass":"CEvenOddPositiveAndNegative"}},"batch":{"id":"bb8c5099-e7a3-42bf-a04a-b8cbc454f721","size":1},"srcPath":"c:\\Users\\evan\\OneDrive\\Documents\\GitHub\\Phitron_ai\\Python_For_ML\\C_Even_Odd_Positive_and_Negative.py"} \ No newline at end of file diff --git a/Python_For_ML/Week_1 b/Python_For_ML/Week_1 index ea3ab39..938ec73 160000 --- a/Python_For_ML/Week_1 +++ b/Python_For_ML/Week_1 @@ -1 +1 @@ -Subproject commit ea3ab39383675f98e035cab3416aa5431e5288c1 +Subproject commit 938ec730491291c9af61596062ce7950cb0fc52e From 5c68af8fcea9b72b3fbd85704a9d7ad9640ee2e2 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Sat, 18 Oct 2025 08:07:26 +0600 Subject: [PATCH 09/78] Reset repo: remove all old files and upload fresh local version --- 1-4 Slice And Loop.py | 11 ----------- 1-4 Slice And Loop_b.py | 12 ------------ 1-5 Control Flow b.py | 29 ----------------------------- 1-5 Control Flow.py | 19 ------------------- Demo_Comprehensions.py | 24 ------------------------ Nested Comprehensions.py | 14 -------------- 6 files changed, 109 deletions(-) delete mode 100644 1-4 Slice And Loop.py delete mode 100644 1-4 Slice And Loop_b.py delete mode 100644 1-5 Control Flow b.py delete mode 100644 1-5 Control Flow.py delete mode 100644 Demo_Comprehensions.py delete mode 100644 Nested Comprehensions.py diff --git a/1-4 Slice And Loop.py b/1-4 Slice And Loop.py deleted file mode 100644 index 7725c84..0000000 --- a/1-4 Slice And Loop.py +++ /dev/null @@ -1,11 +0,0 @@ -# --- DEMO: Slicing sequences --- -nums = [10, 20, 30, 40, 50, 60] -print(nums[1:4]) # middle slice -print(nums[-3:]) # last 3 -print(nums[::2]) # step slice -print(nums[::-1]) # reverse -print(nums[:-1]) -print(nums[-1:]) -print(nums[-4:-3]) -print(nums[-2:-2]) -print(nums[-2:-1]) diff --git a/1-4 Slice And Loop_b.py b/1-4 Slice And Loop_b.py deleted file mode 100644 index 212a71f..0000000 --- a/1-4 Slice And Loop_b.py +++ /dev/null @@ -1,12 +0,0 @@ -# --- DEMO: Truthiness --- -samples = [0, 1, "", "text", [], [1], {}, {"k": 1}, None] -for item in samples: - if item: - print(repr(item), "→ Truthy") - else: - print(repr(item), "→ Falsy") - -# --- DEMO: f-strings --- -name = "John" -score = 95 -print(f"{name} scored {score}% (next: {score + 1}%)") \ No newline at end of file diff --git a/1-5 Control Flow b.py b/1-5 Control Flow b.py deleted file mode 100644 index 36330af..0000000 --- a/1-5 Control Flow b.py +++ /dev/null @@ -1,29 +0,0 @@ -order_data = { - "customer": { - "first_name": "Bob", - "last_name": "Johnson" - }, - "items": [ - {"item_name": "Book", - "price": 25.99 - }, - {"item_name": "Notebook", - "price": 4.50 - }, - {"item_name": "Pen", - "price": 1.20 - } - ] -} - -# 1. Customer's full name -full_name = f"{order_data['customer']['first_name']} {order_data['customer']['last_name']}" -print("Customer Full Name:", full_name) - -# 2. Total price of all items -total_price = sum(item["price"] for item in order_data["items"]) -print("Total Order Price:", total_price) - -# 3. List of item names -item_names = [item["item_name"] for item in order_data["items"]] -print("Item Names:", item_names) \ No newline at end of file diff --git a/1-5 Control Flow.py b/1-5 Control Flow.py deleted file mode 100644 index 968cc80..0000000 --- a/1-5 Control Flow.py +++ /dev/null @@ -1,19 +0,0 @@ -# --- DEMO: Nested data structures --- -data = { - "user": { - "name": "Alice", - "id": 123, - "contact": { - "email": ["alice@example.com", "abc@edu.com"], - "phone": "555-1234" - } - }, - "items": [ - {"name": "Laptop", "price": 1200}, - {"name": "Keyboard", "price": 75} - ] -} - -print("User Name:", data["user"]["name"]) -print("First Item Price:", data["items"][0]["price"]) -print("User Email:", data["user"]["contact"]["email"][1]) \ No newline at end of file diff --git a/Demo_Comprehensions.py b/Demo_Comprehensions.py deleted file mode 100644 index a92b5f1..0000000 --- a/Demo_Comprehensions.py +++ /dev/null @@ -1,24 +0,0 @@ -# --- DEMO: Comprehensions --- -temp = [35, 40, 28, 32, 30] - -farhen = [item*(9/5)+32 for item in temp] -print(f"First {farhen}") - -farhen1 = [item*(9/5)+32 for item in temp if item % 2 == 0] -print(farhen1) - -for item in temp: - print(item*(9/5)+32) - -squares = [x**2 for x in range(6)] - -evens = [x for x in range(20) if x % 2 == 0] - -square_map = {x: x**2 for x in range(5)} - -unique_initials = {item[0].lower() for item in ["Alice", "Bob", "alex", "Beta"]} - -print(f"Square is : {squares}") -print(f"even: {evens}") -print(f"smap: {square_map}") -print(f"ui : {unique_initials}") \ No newline at end of file diff --git a/Nested Comprehensions.py b/Nested Comprehensions.py deleted file mode 100644 index 3be4af7..0000000 --- a/Nested Comprehensions.py +++ /dev/null @@ -1,14 +0,0 @@ -# --- DEMO: Nested Comprehensions and Conditional Logic --- -# Create a list of lists where inner lists contain squares of even numbers -nested_squares = [[x**2 for x in range(i, i+5) if x % 2 == 0] for i in range(1, 10, 3)] -print("Nested Squares:", nested_squares) - -# Create a dictionary mapping numbers to a description based on conditions -number_descriptions = { - num: ("Even and divisible by 3" if num % 2 == 0 and num % 3 == 0 - else "Even" if num % 2 == 0 - else "Odd and divisible by 3" if num % 3 == 0 - else "Odd") - for num in range(1, 100) -} -print("Number Descriptions:", number_descriptions) \ No newline at end of file From 2e5f7b1aa45e3fe59a196e49735f3989aa74ea43 Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Sat, 18 Oct 2025 08:06:45 +0600 Subject: [PATCH 10/78] Delete Python_For_ML directory --- ...ositive_and_Negative.py_af21d1322666bd52797fb80b21a35953.prob | 1 - Python_For_ML/Week_1 | 1 - Python_For_ML/print(hlw);.py | 1 - 3 files changed, 3 deletions(-) delete mode 100644 Python_For_ML/.cph/.C_Even_Odd_Positive_and_Negative.py_af21d1322666bd52797fb80b21a35953.prob delete mode 160000 Python_For_ML/Week_1 delete mode 100644 Python_For_ML/print(hlw);.py diff --git a/Python_For_ML/.cph/.C_Even_Odd_Positive_and_Negative.py_af21d1322666bd52797fb80b21a35953.prob b/Python_For_ML/.cph/.C_Even_Odd_Positive_and_Negative.py_af21d1322666bd52797fb80b21a35953.prob deleted file mode 100644 index 754a58e..0000000 --- a/Python_For_ML/.cph/.C_Even_Odd_Positive_and_Negative.py_af21d1322666bd52797fb80b21a35953.prob +++ /dev/null @@ -1 +0,0 @@ -{"name":"C. Even, Odd, Positive and Negative","group":"Codeforces - Sheet #2 (Loops)","url":"https://codeforces.com/group/MWSDmqGsZm/contest/219432/problem/C","interactive":false,"memoryLimit":256,"timeLimit":1000,"tests":[{"id":1760751970230,"input":"5\n-5 0 -3 -4 12\n","output":"Even: 3\nOdd: 2\nPositive: 1\nNegative: 3\n"}],"testType":"single","input":{"type":"stdin"},"output":{"type":"stdout"},"languages":{"java":{"mainClass":"Main","taskClass":"CEvenOddPositiveAndNegative"}},"batch":{"id":"bb8c5099-e7a3-42bf-a04a-b8cbc454f721","size":1},"srcPath":"c:\\Users\\evan\\OneDrive\\Documents\\GitHub\\Phitron_ai\\Python_For_ML\\C_Even_Odd_Positive_and_Negative.py"} \ No newline at end of file diff --git a/Python_For_ML/Week_1 b/Python_For_ML/Week_1 deleted file mode 160000 index 938ec73..0000000 --- a/Python_For_ML/Week_1 +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 938ec730491291c9af61596062ce7950cb0fc52e diff --git a/Python_For_ML/print(hlw);.py b/Python_For_ML/print(hlw);.py deleted file mode 100644 index 0c8a497..0000000 --- a/Python_For_ML/print(hlw);.py +++ /dev/null @@ -1 +0,0 @@ -print("hlw"); \ No newline at end of file From cf171eb29e177496acec689ba216f2a7c3bbf9ab Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Sat, 18 Oct 2025 08:07:33 +0600 Subject: [PATCH 11/78] reuploadManually --- .../Week_1/Mod_1/1-4 Slice And Loop.py | 11 ++ .../Week_1/Mod_1/1-4 Slice And Loop_b.py | 12 ++ .../Week_1/Mod_1/1-5 Control Flow b.py | 29 ++++ .../Week_1/Mod_1/1-5 Control Flow.py | 19 +++ .../Week_1/Mod_1/Demo_Comprehensions.py | 24 +++ .../Week_1/Mod_1/Nested Comprehensions.py | 14 ++ .../Week_1/Mod_1/python basics.ipynb | 138 ++++++++++++++++++ Python_For_ML/Week_1/Mod_1/test.ipynb | 71 +++++++++ ...Break and Continue Statements in Python.py | 30 ++++ .../Mod_2/2.5 Problem 1 - Min and Max.py | 28 ++++ .../Mod_2/C_Even_Odd_Positive_and_Negative.py | 29 ++++ Python_For_ML/print(hlw);.py | 1 + 12 files changed, 406 insertions(+) create mode 100644 Python_For_ML/Week_1/Mod_1/1-4 Slice And Loop.py create mode 100644 Python_For_ML/Week_1/Mod_1/1-4 Slice And Loop_b.py create mode 100644 Python_For_ML/Week_1/Mod_1/1-5 Control Flow b.py create mode 100644 Python_For_ML/Week_1/Mod_1/1-5 Control Flow.py create mode 100644 Python_For_ML/Week_1/Mod_1/Demo_Comprehensions.py create mode 100644 Python_For_ML/Week_1/Mod_1/Nested Comprehensions.py create mode 100644 Python_For_ML/Week_1/Mod_1/python basics.ipynb create mode 100644 Python_For_ML/Week_1/Mod_1/test.ipynb create mode 100644 Python_For_ML/Week_1/Mod_2/2.4 Break and Continue Statements in Python.py create mode 100644 Python_For_ML/Week_1/Mod_2/2.5 Problem 1 - Min and Max.py create mode 100644 Python_For_ML/Week_1/Mod_2/C_Even_Odd_Positive_and_Negative.py create mode 100644 Python_For_ML/print(hlw);.py diff --git a/Python_For_ML/Week_1/Mod_1/1-4 Slice And Loop.py b/Python_For_ML/Week_1/Mod_1/1-4 Slice And Loop.py new file mode 100644 index 0000000..7725c84 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_1/1-4 Slice And Loop.py @@ -0,0 +1,11 @@ +# --- DEMO: Slicing sequences --- +nums = [10, 20, 30, 40, 50, 60] +print(nums[1:4]) # middle slice +print(nums[-3:]) # last 3 +print(nums[::2]) # step slice +print(nums[::-1]) # reverse +print(nums[:-1]) +print(nums[-1:]) +print(nums[-4:-3]) +print(nums[-2:-2]) +print(nums[-2:-1]) diff --git a/Python_For_ML/Week_1/Mod_1/1-4 Slice And Loop_b.py b/Python_For_ML/Week_1/Mod_1/1-4 Slice And Loop_b.py new file mode 100644 index 0000000..212a71f --- /dev/null +++ b/Python_For_ML/Week_1/Mod_1/1-4 Slice And Loop_b.py @@ -0,0 +1,12 @@ +# --- DEMO: Truthiness --- +samples = [0, 1, "", "text", [], [1], {}, {"k": 1}, None] +for item in samples: + if item: + print(repr(item), "→ Truthy") + else: + print(repr(item), "→ Falsy") + +# --- DEMO: f-strings --- +name = "John" +score = 95 +print(f"{name} scored {score}% (next: {score + 1}%)") \ No newline at end of file diff --git a/Python_For_ML/Week_1/Mod_1/1-5 Control Flow b.py b/Python_For_ML/Week_1/Mod_1/1-5 Control Flow b.py new file mode 100644 index 0000000..36330af --- /dev/null +++ b/Python_For_ML/Week_1/Mod_1/1-5 Control Flow b.py @@ -0,0 +1,29 @@ +order_data = { + "customer": { + "first_name": "Bob", + "last_name": "Johnson" + }, + "items": [ + {"item_name": "Book", + "price": 25.99 + }, + {"item_name": "Notebook", + "price": 4.50 + }, + {"item_name": "Pen", + "price": 1.20 + } + ] +} + +# 1. Customer's full name +full_name = f"{order_data['customer']['first_name']} {order_data['customer']['last_name']}" +print("Customer Full Name:", full_name) + +# 2. Total price of all items +total_price = sum(item["price"] for item in order_data["items"]) +print("Total Order Price:", total_price) + +# 3. List of item names +item_names = [item["item_name"] for item in order_data["items"]] +print("Item Names:", item_names) \ No newline at end of file diff --git a/Python_For_ML/Week_1/Mod_1/1-5 Control Flow.py b/Python_For_ML/Week_1/Mod_1/1-5 Control Flow.py new file mode 100644 index 0000000..968cc80 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_1/1-5 Control Flow.py @@ -0,0 +1,19 @@ +# --- DEMO: Nested data structures --- +data = { + "user": { + "name": "Alice", + "id": 123, + "contact": { + "email": ["alice@example.com", "abc@edu.com"], + "phone": "555-1234" + } + }, + "items": [ + {"name": "Laptop", "price": 1200}, + {"name": "Keyboard", "price": 75} + ] +} + +print("User Name:", data["user"]["name"]) +print("First Item Price:", data["items"][0]["price"]) +print("User Email:", data["user"]["contact"]["email"][1]) \ No newline at end of file diff --git a/Python_For_ML/Week_1/Mod_1/Demo_Comprehensions.py b/Python_For_ML/Week_1/Mod_1/Demo_Comprehensions.py new file mode 100644 index 0000000..a92b5f1 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_1/Demo_Comprehensions.py @@ -0,0 +1,24 @@ +# --- DEMO: Comprehensions --- +temp = [35, 40, 28, 32, 30] + +farhen = [item*(9/5)+32 for item in temp] +print(f"First {farhen}") + +farhen1 = [item*(9/5)+32 for item in temp if item % 2 == 0] +print(farhen1) + +for item in temp: + print(item*(9/5)+32) + +squares = [x**2 for x in range(6)] + +evens = [x for x in range(20) if x % 2 == 0] + +square_map = {x: x**2 for x in range(5)} + +unique_initials = {item[0].lower() for item in ["Alice", "Bob", "alex", "Beta"]} + +print(f"Square is : {squares}") +print(f"even: {evens}") +print(f"smap: {square_map}") +print(f"ui : {unique_initials}") \ No newline at end of file diff --git a/Python_For_ML/Week_1/Mod_1/Nested Comprehensions.py b/Python_For_ML/Week_1/Mod_1/Nested Comprehensions.py new file mode 100644 index 0000000..3be4af7 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_1/Nested Comprehensions.py @@ -0,0 +1,14 @@ +# --- DEMO: Nested Comprehensions and Conditional Logic --- +# Create a list of lists where inner lists contain squares of even numbers +nested_squares = [[x**2 for x in range(i, i+5) if x % 2 == 0] for i in range(1, 10, 3)] +print("Nested Squares:", nested_squares) + +# Create a dictionary mapping numbers to a description based on conditions +number_descriptions = { + num: ("Even and divisible by 3" if num % 2 == 0 and num % 3 == 0 + else "Even" if num % 2 == 0 + else "Odd and divisible by 3" if num % 3 == 0 + else "Odd") + for num in range(1, 100) +} +print("Number Descriptions:", number_descriptions) \ No newline at end of file diff --git a/Python_For_ML/Week_1/Mod_1/python basics.ipynb b/Python_For_ML/Week_1/Mod_1/python basics.ipynb new file mode 100644 index 0000000..43dfb43 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_1/python basics.ipynb @@ -0,0 +1,138 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " \n", + "\n" + ] + } + ], + "source": [ + "age = 20;\n", + "height = 5.6;\n", + "name = \"imran\";\n", + "is_true = True;\n", + "print(type(age), type(name));\n", + "age = 20.3;\n", + "print(type(age));" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5 \n" + ] + } + ], + "source": [ + "age = input(\"age?\");\n", + "age = int(age);\n", + "print(age , type(age));" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13 7 30 3.33 1\n" + ] + } + ], + "source": [ + "x = 10 ; y = 3 \n", + "\n", + "sum = x + y # summation \n", + "sub = x - y # subtraction\n", + "mult = x * y # multiplication\n", + "div = round(x / y , 2) # division \n", + "\n", + "rem = x % y # remainder \n", + "\n", + "print(sum , sub , mult, div , rem)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "True True\n", + "False True\n", + "False\n", + "True\n" + ] + } + ], + "source": [ + "x = 10 ; y = 3 \n", + "\n", + "greater_than = x > y \n", + "\n", + "greater_than_equal = (10 >= 10)\n", + "\n", + "print(greater_than , greater_than_equal)\n", + "\n", + "\n", + "less_than = x < y \n", + "\n", + "less_than_equal = (10 <= 10)\n", + "\n", + "print(less_than , less_than_equal)\n", + "\n", + "\n", + "\n", + "equal = x==y\n", + "\n", + "print(equal)\n", + "\n", + "\n", + "not_equal = x != y\n", + "\n", + "print(not_equal)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Python_For_ML/Week_1/Mod_1/test.ipynb b/Python_For_ML/Week_1/Mod_1/test.ipynb new file mode 100644 index 0000000..354c105 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_1/test.ipynb @@ -0,0 +1,71 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " \n" + ] + } + ], + "source": [ + "x = 5\n", + "y = \"5\"\n", + "print(type(x), type(y))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], + "source": [ + "num = float(input())\n", + "print(type(num))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print(\"hello\");" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Python_For_ML/Week_1/Mod_2/2.4 Break and Continue Statements in Python.py b/Python_For_ML/Week_1/Mod_2/2.4 Break and Continue Statements in Python.py new file mode 100644 index 0000000..0a3015b --- /dev/null +++ b/Python_For_ML/Week_1/Mod_2/2.4 Break and Continue Statements in Python.py @@ -0,0 +1,30 @@ +sum = 0 + +for i in range(1,11): + + print(i, "is pricessing"); + + if i % 2 ==0 : + continue; + + sum+= i + print(i, "sum"); + +#### + +accuricy = 90 +for i in range(100): + accuricy+=1 + print(accuricy); + if accuricy == 100: + break + + +changed_or_not = True + +while True: + if changed_or_not == False and accuricy == 100: + break + + if (prev>accuricy): + changed_or_not = False \ No newline at end of file diff --git a/Python_For_ML/Week_1/Mod_2/2.5 Problem 1 - Min and Max.py b/Python_For_ML/Week_1/Mod_2/2.5 Problem 1 - Min and Max.py new file mode 100644 index 0000000..b4419b3 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_2/2.5 Problem 1 - Min and Max.py @@ -0,0 +1,28 @@ +inp = input() + +numbers = inp.split() + +x = int(numbers[0]) +y = int(numbers[1]) +z = int(numbers[2]) + +min = x +max = x + +## min +if y < min : + min = y +if z < min : + min = z + + +## max + +if y > max : + max = y + +if z > max : + max = z + + +print(min , max) \ No newline at end of file diff --git a/Python_For_ML/Week_1/Mod_2/C_Even_Odd_Positive_and_Negative.py b/Python_For_ML/Week_1/Mod_2/C_Even_Odd_Positive_and_Negative.py new file mode 100644 index 0000000..2074cc3 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_2/C_Even_Odd_Positive_and_Negative.py @@ -0,0 +1,29 @@ + +n = int(input()) + +inp = input() + +numbers= inp.split() + +positive =0 ; negative =0 ; even =0 ; odd =0 + + +for i in range(n): + x = int(numbers[i]) + # positive or negative + if x > 0 : + positive+=1 + elif x < 0 : + negative+=1 + + # odd or even + if x % 2 !=0 : + odd+=1 + else: + even+=1 + + +print("Even:",even) +print("Odd:",odd) +print("Positive:",positive) +print("Negative:",negative) \ No newline at end of file diff --git a/Python_For_ML/print(hlw);.py b/Python_For_ML/print(hlw);.py new file mode 100644 index 0000000..0c8a497 --- /dev/null +++ b/Python_For_ML/print(hlw);.py @@ -0,0 +1 @@ +print("hlw"); \ No newline at end of file From 02bcfb4293229dc5ee38175965891b83044f030e Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Sat, 18 Oct 2025 08:17:34 +0600 Subject: [PATCH 12/78] update --- Python_For_ML/print(hlw);.py | 1 - 1 file changed, 1 deletion(-) delete mode 100644 Python_For_ML/print(hlw);.py diff --git a/Python_For_ML/print(hlw);.py b/Python_For_ML/print(hlw);.py deleted file mode 100644 index 0c8a497..0000000 --- a/Python_For_ML/print(hlw);.py +++ /dev/null @@ -1 +0,0 @@ -print("hlw"); \ No newline at end of file From 89108ad7e010471bb15ceee90c91d999312cfea6 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Sat, 18 Oct 2025 11:56:21 +0600 Subject: [PATCH 13/78] Mod_2_quize --- ...s.py_629cd998c43714f9d29743c443dc1213.prob | 1 + Python_For_ML/Q_Digits.py | 11 + Python_For_ML/Week_1/Mod_2/quize.ipynb | 200 ++++++++++++++++++ 3 files changed, 212 insertions(+) create mode 100644 Python_For_ML/.cph/.Q_Digits.py_629cd998c43714f9d29743c443dc1213.prob create mode 100644 Python_For_ML/Q_Digits.py create mode 100644 Python_For_ML/Week_1/Mod_2/quize.ipynb diff --git a/Python_For_ML/.cph/.Q_Digits.py_629cd998c43714f9d29743c443dc1213.prob b/Python_For_ML/.cph/.Q_Digits.py_629cd998c43714f9d29743c443dc1213.prob new file mode 100644 index 0000000..26b8cb2 --- /dev/null +++ b/Python_For_ML/.cph/.Q_Digits.py_629cd998c43714f9d29743c443dc1213.prob @@ -0,0 +1 @@ +{"name":"Q. Digits","group":"Codeforces - Sheet #2 (Loops)","url":"https://codeforces.com/group/MWSDmqGsZm/contest/219432/problem/Q","interactive":false,"memoryLimit":256,"timeLimit":1000,"tests":[{"id":1760759262029,"input":"4\n121\n39\n123456\n1200\n","output":"1 2 1\n9 3\n6 5 4 3 2 1\n0 0 2 1\n"}],"testType":"single","input":{"type":"stdin"},"output":{"type":"stdout"},"languages":{"java":{"mainClass":"Main","taskClass":"QDigits"}},"batch":{"id":"64392b92-7c3e-4f9a-81ed-f0f9c767b917","size":1},"srcPath":"c:\\Users\\evan\\OneDrive\\Documents\\GitHub\\Phitron_ai\\Python_For_ML\\Q_Digits.py"} \ No newline at end of file diff --git a/Python_For_ML/Q_Digits.py b/Python_For_ML/Q_Digits.py new file mode 100644 index 0000000..b765385 --- /dev/null +++ b/Python_For_ML/Q_Digits.py @@ -0,0 +1,11 @@ +t = int(input()) + +for i in range(t): + number = int (input()) + if number ==0 : + print(0) + continue + while number > 0 : + print(number%10, end=" ") + number//=10 + print() \ No newline at end of file diff --git a/Python_For_ML/Week_1/Mod_2/quize.ipynb b/Python_For_ML/Week_1/Mod_2/quize.ipynb new file mode 100644 index 0000000..221ad55 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_2/quize.ipynb @@ -0,0 +1,200 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "a\n" + ] + } + ], + "source": [ + "x = 5\n", + "if x > 3:\n", + " print(\"a\")\n", + "elif x > 1:\n", + " print(\"b\")\n", + "else:\n", + " print(\"c\") \n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "done\n" + ] + } + ], + "source": [ + "i = 0\n", + "while i < 3:\n", + " i += 1\n", + " if i == 2:\n", + " break\n", + " print(\"done\")" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0 0\n", + "1 0\n" + ] + } + ], + "source": [ + "for i in range(2):\n", + " for j in range(3):\n", + " if j == 1:\n", + " break\n", + " print(i, j)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n" + ] + } + ], + "source": [ + "for i in range(3):\n", + " if i == 1:\n", + " break\n", + " print(i)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "01" + ] + } + ], + "source": [ + "for i in range(5):\n", + " if i == 2:\n", + " break\n", + " print(i , end=\"\")" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2\n" + ] + } + ], + "source": [ + "count = 0\n", + "for n in [1,2,3,4,5]:\n", + " if n % 2 != 0:\n", + " continue\n", + " count+=1\n", + "print(count)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2\n" + ] + } + ], + "source": [ + "s = 0\n", + "for i in range(1,5):\n", + " if i % 2 == 0:\n", + " s+=i\n", + " else:\n", + " s -= i\n", + "print(s)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5" + ] + } + ], + "source": [ + "for i in range(5, 0, -1):\n", + " if i % 2 == 0:\n", + " continue\n", + " if i == 3:\n", + " break\n", + " print(i, end=\"\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 53589fbc7c33f6a31df3093941018e0923327268 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Sun, 19 Oct 2025 21:26:43 +0600 Subject: [PATCH 14/78] 3.2 String , Indexing and Slicing --- ...ng , Indexing and Slicing-checkpoint.ipynb | 23 +++++ .../3.2 String , Indexing and Slicing.ipynb | 91 +++++++++++++++++++ 2 files changed, 114 insertions(+) create mode 100644 Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.2 String , Indexing and Slicing-checkpoint.ipynb create mode 100644 Python_For_ML/Week_1/Mod_3/3.2 String , Indexing and Slicing.ipynb diff --git a/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.2 String , Indexing and Slicing-checkpoint.ipynb b/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.2 String , Indexing and Slicing-checkpoint.ipynb new file mode 100644 index 0000000..9a2ac10 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.2 String , Indexing and Slicing-checkpoint.ipynb @@ -0,0 +1,23 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "e460d583", + "metadata": { + "vscode": { + "languageId": "plaintext" + } + }, + "outputs": [], + "source": [] + } + ], + "metadata": { + "language_info": { + "name": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_1/Mod_3/3.2 String , Indexing and Slicing.ipynb b/Python_For_ML/Week_1/Mod_3/3.2 String , Indexing and Slicing.ipynb new file mode 100644 index 0000000..43ed792 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_3/3.2 String , Indexing and Slicing.ipynb @@ -0,0 +1,91 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "e460d583", + "metadata": { + "vscode": { + "languageId": "plaintext" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], + "source": [ + "prompt = \"text\"\n", + "print(type(prompt))" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "bc239b4d-5249-40bb-8e15-4bbe00f4b84b", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "p\n", + " \n", + "i\n", + "m\n" + ] + } + ], + "source": [ + "message_java = \"\"\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. \n", + "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, \n", + "when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n", + "It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. \n", + "It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently \n", + "with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\"\"\"\n", + "\n", + "remessage=message_java[0:20:2]\n", + "#print(message_java)\n", + "#print()\n", + "#print(remessage)\n", + "print(remessage[-1])\n", + "print(remessage[-3])\n", + "print(remessage[-4])\n", + "print(remessage[-5])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "df8f720a-6403-42f5-9877-2eea163f4008", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python [conda env:base] *", + "language": "python", + "name": "conda-base-py" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 778f1bf3e5b0fc58ac21f6a0c77c7e1ef5011b10 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Mon, 20 Oct 2025 07:07:15 +0600 Subject: [PATCH 15/78] 3.3 String Methods --- .../3.3 String Methods-checkpoint.ipynb | 6 ++ .../Week_1/Mod_3/3.3 String Methods.ipynb | 66 +++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.3 String Methods-checkpoint.ipynb create mode 100644 Python_For_ML/Week_1/Mod_3/3.3 String Methods.ipynb diff --git a/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.3 String Methods-checkpoint.ipynb b/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.3 String Methods-checkpoint.ipynb new file mode 100644 index 0000000..363fcab --- /dev/null +++ b/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.3 String Methods-checkpoint.ipynb @@ -0,0 +1,6 @@ +{ + "cells": [], + "metadata": {}, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_1/Mod_3/3.3 String Methods.ipynb b/Python_For_ML/Week_1/Mod_3/3.3 String Methods.ipynb new file mode 100644 index 0000000..33029e4 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_3/3.3 String Methods.ipynb @@ -0,0 +1,66 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 18, + "id": "4618e959-3d1c-43f5-866a-07747ecb448b", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "abcd_Imran\n", + "10\n", + "True\n", + "abcd_emran\n", + "5\n" + ] + } + ], + "source": [ + "string = \"abcd_Imran\"\n", + "processed_string1 = string.lower()\n", + "print(processed_string)\n", + "print(len(string))\n", + "print(\"Imran\" in string)\n", + "\n", + "processed_string=string.replace(\"I\",\"e\")\n", + "print(processed_string)\n", + "\n", + "index = processed_string1.find(\"i\")\n", + "print(index)\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "aac0827f-8ce0-4cda-9f08-39ae4d8959d4", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python [conda env:base] *", + "language": "python", + "name": "conda-base-py" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 5730636efd0f8e72ac77a0c6662978d531894801 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Mon, 20 Oct 2025 12:06:39 +0600 Subject: [PATCH 16/78] 3.4 String Splitting Joining and Formatting --- ...ng Joining and Formatting-checkpoint.ipynb | 57 +++++++++++++ ...ing Splitting Joining and Formatting.ipynb | 81 +++++++++++++++++++ 2 files changed, 138 insertions(+) create mode 100644 Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.4 String Splitting Joining and Formatting-checkpoint.ipynb create mode 100644 Python_For_ML/Week_1/Mod_3/3.4 String Splitting Joining and Formatting.ipynb diff --git a/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.4 String Splitting Joining and Formatting-checkpoint.ipynb b/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.4 String Splitting Joining and Formatting-checkpoint.ipynb new file mode 100644 index 0000000..405990e --- /dev/null +++ b/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.4 String Splitting Joining and Formatting-checkpoint.ipynb @@ -0,0 +1,57 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 9, + "id": "97e4abcf-e009-4150-b60d-096fb227bbb8", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['what', ' is ', 'python?']\n", + "what_ is _python?\n" + ] + } + ], + "source": [ + "prompt = \"what, is ,python?\"\n", + "tokens = prompt.split(\",\")\n", + "print(tokens)\n", + "\n", + "sentence = \"_\".join(tokens)\n", + "print(sentence)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ddf215aa-e530-4d99-af47-673fb99e1f4a", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python [conda env:base] *", + "language": "python", + "name": "conda-base-py" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_1/Mod_3/3.4 String Splitting Joining and Formatting.ipynb b/Python_For_ML/Week_1/Mod_3/3.4 String Splitting Joining and Formatting.ipynb new file mode 100644 index 0000000..77362ca --- /dev/null +++ b/Python_For_ML/Week_1/Mod_3/3.4 String Splitting Joining and Formatting.ipynb @@ -0,0 +1,81 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 9, + "id": "97e4abcf-e009-4150-b60d-096fb227bbb8", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['what', ' is ', 'python?']\n", + "what_ is _python?\n" + ] + } + ], + "source": [ + "prompt = \"what, is ,python?\"\n", + "tokens = prompt.split(\",\")\n", + "print(tokens)\n", + "\n", + "sentence = \"_\".join(tokens)\n", + "print(sentence)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "ddf215aa-e530-4d99-af47-673fb99e1f4a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "the model accuricy is83.33%\n" + ] + } + ], + "source": [ + "name = \"imran\"\n", + "age = 33\n", + "height = 5.9\n", + "info = f\"his name is {name.upper()}, he is {age} old. he is {height:.3} feet\"\n", + "pr\n", + "model_accuricy = 0.8333\n", + "print(f\"the model accuricy is{model_accuricy:.2%}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a9c93d3f-f921-4876-9946-9a95d3db8cda", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python [conda env:base] *", + "language": "python", + "name": "conda-base-py" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From c6310fd49181b19e0494a2bf0e78a40f90b950b0 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 21 Oct 2025 23:47:22 +0600 Subject: [PATCH 17/78] 200~3.5 List and List Methods --- ...ng Joining and Formatting-checkpoint.ipynb | 27 ++++++++- ...3.5 List and List Methods-checkpoint.ipynb | 6 ++ ...ing Splitting Joining and Formatting.ipynb | 7 ++- .../Mod_3/3.5 List and List Methods.ipynb | 60 +++++++++++++++++++ 4 files changed, 96 insertions(+), 4 deletions(-) create mode 100644 Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.5 List and List Methods-checkpoint.ipynb create mode 100644 Python_For_ML/Week_1/Mod_3/3.5 List and List Methods.ipynb diff --git a/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.4 String Splitting Joining and Formatting-checkpoint.ipynb b/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.4 String Splitting Joining and Formatting-checkpoint.ipynb index 405990e..b18c352 100644 --- a/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.4 String Splitting Joining and Formatting-checkpoint.ipynb +++ b/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.4 String Splitting Joining and Formatting-checkpoint.ipynb @@ -26,9 +26,34 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "id": "ddf215aa-e530-4d99-af47-673fb99e1f4a", "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "his name is IMRAN, he is 33 old. he is 5.9 feet\n", + "the model accuricy is83.33%\n" + ] + } + ], + "source": [ + "name = \"imran\"\n", + "age = 33\n", + "height = 5.9\n", + "info = f\"his name is {name.upper()}, he is {age} old. he is {height:.3} feet\"\n", + "print(info)\n", + "model_accuricy = 0.8333\n", + "print(f\"the model accuricy is {model_accuricy:.2%}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a9c93d3f-f921-4876-9946-9a95d3db8cda", + "metadata": {}, "outputs": [], "source": [] } diff --git a/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.5 List and List Methods-checkpoint.ipynb b/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.5 List and List Methods-checkpoint.ipynb new file mode 100644 index 0000000..363fcab --- /dev/null +++ b/Python_For_ML/Week_1/Mod_3/.ipynb_checkpoints/3.5 List and List Methods-checkpoint.ipynb @@ -0,0 +1,6 @@ +{ + "cells": [], + "metadata": {}, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_1/Mod_3/3.4 String Splitting Joining and Formatting.ipynb b/Python_For_ML/Week_1/Mod_3/3.4 String Splitting Joining and Formatting.ipynb index 77362ca..b18c352 100644 --- a/Python_For_ML/Week_1/Mod_3/3.4 String Splitting Joining and Formatting.ipynb +++ b/Python_For_ML/Week_1/Mod_3/3.4 String Splitting Joining and Formatting.ipynb @@ -26,7 +26,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 11, "id": "ddf215aa-e530-4d99-af47-673fb99e1f4a", "metadata": {}, "outputs": [ @@ -34,6 +34,7 @@ "name": "stdout", "output_type": "stream", "text": [ + "his name is IMRAN, he is 33 old. he is 5.9 feet\n", "the model accuricy is83.33%\n" ] } @@ -43,9 +44,9 @@ "age = 33\n", "height = 5.9\n", "info = f\"his name is {name.upper()}, he is {age} old. he is {height:.3} feet\"\n", - "pr\n", + "print(info)\n", "model_accuricy = 0.8333\n", - "print(f\"the model accuricy is{model_accuricy:.2%}\")" + "print(f\"the model accuricy is {model_accuricy:.2%}\")" ] }, { diff --git a/Python_For_ML/Week_1/Mod_3/3.5 List and List Methods.ipynb b/Python_For_ML/Week_1/Mod_3/3.5 List and List Methods.ipynb new file mode 100644 index 0000000..d6f8a05 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_3/3.5 List and List Methods.ipynb @@ -0,0 +1,60 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "id": "7bc47022-ae92-4773-b6d6-7c822c4eadad", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "30\n", + "[100, 20, 30]\n", + "[100, 20, 30, 40]\n", + "[33, 100, 20, 30, 40]\n" + ] + } + ], + "source": [ + "numbers = [100,20,30,40]\n", + "\n", + "print(numbers[2])\n", + "\n", + "new_list = numbers[0:3]\n", + "print(new_list)\n", + "\n", + "new_list.append(3)\n", + "print(numbers)\n", + "\n", + "numbers.insert(0,33)\n", + "print(numbers)\n", + "\n", + "numbers.pop()\n", + "print(numbers)\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 71d38f195e5b3e5548142521d681b66ec6a54c1f Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Wed, 22 Oct 2025 13:46:43 +0600 Subject: [PATCH 18/78] 3.6 List as Stack and Queue --- .../Mod_3/3.5 List and List Methods.ipynb | 11 +- .../Mod_3/3.6 List as Stack and Queue.ipynb | 141 ++++++++++++++++++ 2 files changed, 149 insertions(+), 3 deletions(-) create mode 100644 Python_For_ML/Week_1/Mod_3/3.6 List as Stack and Queue.ipynb diff --git a/Python_For_ML/Week_1/Mod_3/3.5 List and List Methods.ipynb b/Python_For_ML/Week_1/Mod_3/3.5 List and List Methods.ipynb index d6f8a05..9dfa60a 100644 --- a/Python_For_ML/Week_1/Mod_3/3.5 List and List Methods.ipynb +++ b/Python_For_ML/Week_1/Mod_3/3.5 List and List Methods.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 3, + "execution_count": 1, "id": "7bc47022-ae92-4773-b6d6-7c822c4eadad", "metadata": {}, "outputs": [ @@ -13,7 +13,9 @@ "30\n", "[100, 20, 30]\n", "[100, 20, 30, 40]\n", - "[33, 100, 20, 30, 40]\n" + "[33, 100, 20, 30, 40]\n", + "[33, 100, 20, 30]\n", + "[20, 30, 33, 100]\n" ] } ], @@ -32,7 +34,10 @@ "print(numbers)\n", "\n", "numbers.pop()\n", - "print(numbers)\n" + "print(numbers)\n", + "\n", + "numbers.sort()\n", + "print(numbers)" ] } ], diff --git a/Python_For_ML/Week_1/Mod_3/3.6 List as Stack and Queue.ipynb b/Python_For_ML/Week_1/Mod_3/3.6 List as Stack and Queue.ipynb new file mode 100644 index 0000000..0d4bd69 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_3/3.6 List as Stack and Queue.ipynb @@ -0,0 +1,141 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[20, 30, 40, 50, 60, 70, 100, 2000]\n", + "[2000, 100, 70, 60, 50, 40, 30, 20]\n", + "[2000, 100, 70, 60, 50, 40, 30, 20]\n" + ] + } + ], + "source": [ + "numbers = [100,20,30,40,50,60,70,2000]\n", + "\n", + "numbers.sort()\n", + "print(numbers)\n", + "\n", + "numbers.reverse()\n", + "print(numbers)\n", + "\n", + "numbers.sort(reverse=True)\n", + "print(numbers)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4\n", + "3\n", + "2\n" + ] + } + ], + "source": [ + "list =[]\n", + "\n", + "list.append(1)\n", + "list.append(2)\n", + "list.append(3)\n", + "list.append(4)\n", + "\n", + "print(list.pop())\n", + "print(list.pop())\n", + "print(list.pop())\n", + "\n", + "#print(len(list))" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4\n", + "3\n", + "2\n" + ] + } + ], + "source": [ + "stack =[]\n", + "\n", + "stack.append(1)\n", + "stack.append(2)\n", + "stack.append(3)\n", + "stack.append(4)\n", + "\n", + "print(stack.pop())\n", + "print(stack.pop())\n", + "print(stack.pop())" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "4\n", + "3\n" + ] + } + ], + "source": [ + "queue =[]\n", + "\n", + "queue.append(1)\n", + "queue.append(2)\n", + "queue.append(3)\n", + "queue.append(4)\n", + "\n", + "print(queue.pop(0))\n", + "print(queue.pop())\n", + "print(queue.pop())\n", + "\n", + "print(queue[0])" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 3bf40f0338f9b9e415ba4ea21228d8d92cbcffd0 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Wed, 22 Oct 2025 14:00:42 +0600 Subject: [PATCH 19/78] 3.7 List Comprehension --- .../Mod_3/3.6 List as Stack and Queue.ipynb | 11 ++- .../Week_1/Mod_3/3.7 List Comprehension.ipynb | 68 +++++++++++++++++++ 2 files changed, 76 insertions(+), 3 deletions(-) create mode 100644 Python_For_ML/Week_1/Mod_3/3.7 List Comprehension.ipynb diff --git a/Python_For_ML/Week_1/Mod_3/3.6 List as Stack and Queue.ipynb b/Python_For_ML/Week_1/Mod_3/3.6 List as Stack and Queue.ipynb index 0d4bd69..e295a2a 100644 --- a/Python_For_ML/Week_1/Mod_3/3.6 List as Stack and Queue.ipynb +++ b/Python_For_ML/Week_1/Mod_3/3.6 List as Stack and Queue.ipynb @@ -88,7 +88,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 17, "metadata": {}, "outputs": [ { @@ -97,7 +97,9 @@ "text": [ "1\n", "4\n", - "3\n" + "3\n", + "2\n", + "[]\n" ] } ], @@ -113,7 +115,10 @@ "print(queue.pop())\n", "print(queue.pop())\n", "\n", - "print(queue[0])" + "print(queue[0])\n", + "\n", + "queue.pop(0)\n", + "print(queue)" ] } ], diff --git a/Python_For_ML/Week_1/Mod_3/3.7 List Comprehension.ipynb b/Python_For_ML/Week_1/Mod_3/3.7 List Comprehension.ipynb new file mode 100644 index 0000000..e9b0ecc --- /dev/null +++ b/Python_For_ML/Week_1/Mod_3/3.7 List Comprehension.ipynb @@ -0,0 +1,68 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98]\n" + ] + } + ], + "source": [ + "even = []\n", + "\n", + "for i in range(100):\n", + " if i%2==0:\n", + " even.append(i)\n", + "\n", + "print(even)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0, 4, 8, 12, 16]\n" + ] + } + ], + "source": [ + "even1 = []\n", + "\n", + "random_list = [ x*2 for x in range(10) if x%2!=0]\n", + "print(random_list)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From e111c6725a944227c3ada9911ec7f48d304c3f60 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Wed, 22 Oct 2025 17:02:30 +0600 Subject: [PATCH 20/78] 3.8 List Comprehension with List of String --- .../Week_1/Mod_3/3.7 List Comprehension.ipynb | 4 +- ...st Comprehension with List of String.ipynb | 49 +++++++++++++++++++ 2 files changed, 51 insertions(+), 2 deletions(-) create mode 100644 Python_For_ML/Week_1/Mod_3/3.8 List Comprehension with List of String.ipynb diff --git a/Python_For_ML/Week_1/Mod_3/3.7 List Comprehension.ipynb b/Python_For_ML/Week_1/Mod_3/3.7 List Comprehension.ipynb index e9b0ecc..6b33854 100644 --- a/Python_For_ML/Week_1/Mod_3/3.7 List Comprehension.ipynb +++ b/Python_For_ML/Week_1/Mod_3/3.7 List Comprehension.ipynb @@ -25,14 +25,14 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "[0, 4, 8, 12, 16]\n" + "[2, 6, 10, 14, 18]\n" ] } ], diff --git a/Python_For_ML/Week_1/Mod_3/3.8 List Comprehension with List of String.ipynb b/Python_For_ML/Week_1/Mod_3/3.8 List Comprehension with List of String.ipynb new file mode 100644 index 0000000..0616ea7 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_3/3.8 List Comprehension with List of String.ipynb @@ -0,0 +1,49 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['APPLE ', 'ORANGE', 'LICHI']\n" + ] + } + ], + "source": [ + "fruits = ['apple ', 'orange', 'lichi']\n", + "\n", + "upper_fruits=[]\n", + "\n", + "for fruits in fruits:\n", + " upper_fruits.append(fruits.upper())\n", + "\n", + "print(upper_fruits)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 6984dd2fa59bc5ea0038e83df8f222814f068151 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Sun, 26 Oct 2025 13:35:25 +0600 Subject: [PATCH 21/78] 5.1 Tuples in Python --- Python_For_ML/Week_1/Mod_3/quize_3.ipynb | 216 ++++++++++++++++++ .../Week_1/Mod_5/5.1 Tuples in Python.ipynb | 108 +++++++++ 2 files changed, 324 insertions(+) create mode 100644 Python_For_ML/Week_1/Mod_3/quize_3.ipynb create mode 100644 Python_For_ML/Week_1/Mod_5/5.1 Tuples in Python.ipynb diff --git a/Python_For_ML/Week_1/Mod_3/quize_3.ipynb b/Python_For_ML/Week_1/Mod_3/quize_3.ipynb new file mode 100644 index 0000000..52866c8 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_3/quize_3.ipynb @@ -0,0 +1,216 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "i\n" + ] + } + ], + "source": [ + "word=\"pythonista\"\n", + "print(word[-4])" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "loo\n" + ] + } + ], + "source": [ + "s = \"helloworld\"\n", + "print(s[2:8:2])" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2\n" + ] + } + ], + "source": [ + "text = \"banana bandana\"\n", + "print(text.count(\"ana\"))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "bnlue_green_red\n" + ] + } + ], + "source": [ + "msg = \"red,green,blue\"\n", + "colors = msg.split(\",\")\n", + "print(\"_\".join(colors[::-1]))" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2, 4, 12, 8, 10]\n" + ] + } + ], + "source": [ + "nums =[2,4,6,8,10]\n", + "nums[2] = nums[2] * nums[0]\n", + "print(nums)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['d', 'b']\n" + ] + } + ], + "source": [ + "letters = ['a','b','c','d','e']\n", + "print(letters[1:4][::-2])" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2\n" + ] + } + ], + "source": [ + "stack =[]\n", + "for i in range(1,4):\n", + " stack.append(i)\n", + "stack.pop()\n", + "print(stack[-1])" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "30\n" + ] + } + ], + "source": [ + "queue = [10,20,30,40]\n", + "queue.pop(1)\n", + "queue.append(50)\n", + "queue.pop(0)\n", + "print(queue[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[4, 16]\n" + ] + } + ], + "source": [ + "nums =[1,2,3,4]\n", + "squeres = [x**2 for x in nums if x%2==0]\n", + "print(squeres)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 2, 3]\n" + ] + } + ], + "source": [ + "x = [1,2,3,2,4]\n", + "x.remove(4)\n", + "x.pop()\n", + "print(x)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Python_For_ML/Week_1/Mod_5/5.1 Tuples in Python.ipynb b/Python_For_ML/Week_1/Mod_5/5.1 Tuples in Python.ipynb new file mode 100644 index 0000000..5607460 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_5/5.1 Tuples in Python.ipynb @@ -0,0 +1,108 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " (10, 22, 33)\n" + ] + } + ], + "source": [ + "tup = (10,30,50,60)\n", + "float_tup = (10.5,102)\n", + "#print(type(float_tup),float_tup)\n", + "\n", + "mixed_tup = (10,33, \"str\", True)\n", + "#print(mixed_tup)\n", + "\n", + "lst =[10,22,33]\n", + "tuple1 =tuple(lst)\n", + "print(type(tuple1), tuple1)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(10, 30, 50)\n" + ] + } + ], + "source": [ + "new_tup = tup[0:3]\n", + "print(new_tup)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[10, 22, 33, 444]\n" + ] + } + ], + "source": [ + "lst.append(444)\n", + "print(lst)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3\n", + "3\n" + ] + } + ], + "source": [ + "tup_double= (10,10,10,50,50,66,)\n", + "print(tup_double.count(10))\n", + "\n", + "print(tup_double.index(50))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "base", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 06ad6b7fc9bd4fa0fbb82490437645884b1122cd Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Sun, 26 Oct 2025 15:01:09 +0600 Subject: [PATCH 22/78] 5.2 Sets in Python --- Python_For_ML/Week_1/5.2 Sets in Python.ipynb | 123 ++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 Python_For_ML/Week_1/5.2 Sets in Python.ipynb diff --git a/Python_For_ML/Week_1/5.2 Sets in Python.ipynb b/Python_For_ML/Week_1/5.2 Sets in Python.ipynb new file mode 100644 index 0000000..72b4557 --- /dev/null +++ b/Python_For_ML/Week_1/5.2 Sets in Python.ipynb @@ -0,0 +1,123 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], + "source": [ + "A ={1,2,3}\n", + "\n", + "print(type(A))" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "yes\n", + "15\n" + ] + } + ], + "source": [ + "s={1,2,3,4,5}\n", + "\n", + "if(3 in s):\n", + " print(\"yes\")\n", + "else:\n", + " print(\"no\")\n", + "\n", + "sum=0\n", + "for element in s:\n", + " sum+= element\n", + "print(sum)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{99, 4, 5, 6, 7, 8, 999, 2222}\n", + "{5, 6, 7, 8, 999, 2222}\n" + ] + } + ], + "source": [ + "S={4,5,5,6,7,8,99,999}\n", + "S.add(2222)\n", + "print(S)\n", + "\n", + "S.pop()\n", + "S.pop()\n", + "print(S)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{1, 2, 3, 4, 5, 6}\n", + "{2, 3, 4, 5}\n", + "False\n", + "False\n" + ] + } + ], + "source": [ + "a={1,2,3,4,5}\n", + "b={2,3,4,5,6}\n", + "\n", + "print(a.union(b))\n", + "print(a.intersection(b))\n", + "\n", + "print(a.isdisjoint(b))\n", + "print(a.issubset(b))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "base", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From fde69045374a0832236b5991088fcf6ca61f944c Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Sun, 26 Oct 2025 15:38:46 +0600 Subject: [PATCH 23/78] 5.3 Dictionary Basics --- .../{ => Mod_5}/5.2 Sets in Python.ipynb | 0 .../Week_1/Mod_5/5.3 Dictionary Basics.ipynb | 75 +++++++++++++++++++ 2 files changed, 75 insertions(+) rename Python_For_ML/Week_1/{ => Mod_5}/5.2 Sets in Python.ipynb (100%) create mode 100644 Python_For_ML/Week_1/Mod_5/5.3 Dictionary Basics.ipynb diff --git a/Python_For_ML/Week_1/5.2 Sets in Python.ipynb b/Python_For_ML/Week_1/Mod_5/5.2 Sets in Python.ipynb similarity index 100% rename from Python_For_ML/Week_1/5.2 Sets in Python.ipynb rename to Python_For_ML/Week_1/Mod_5/5.2 Sets in Python.ipynb diff --git a/Python_For_ML/Week_1/Mod_5/5.3 Dictionary Basics.ipynb b/Python_For_ML/Week_1/Mod_5/5.3 Dictionary Basics.ipynb new file mode 100644 index 0000000..4739a96 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_5/5.3 Dictionary Basics.ipynb @@ -0,0 +1,75 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + " {'name': 'Phi', 'age': 33, 'address': 'dhaka,', 'number': [23, 44, 55]}\n" + ] + } + ], + "source": [ + "dic = {}\n", + "\n", + "print(type(dic))\n", + "\n", + "dic={\"name\" : \"Phi\", \"age\":20, \"address\": \"dhaka,\", \"number\":[23,44,55], \"age\":33}\n", + "\n", + "print(type(dic),dic)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[23, 44, 55]\n", + "20\n", + "{'name': 'Phitron', 'age': 20, 'address': 'dhaka,', 'number': [23, 44, 55]}\n" + ] + } + ], + "source": [ + "print(dic[\"number\"])\n", + "print(dic[\"age\"])\n", + "\n", + "\n", + "#to change\n", + "dic[\"name\"] = \"Phitron\"\n", + "\n", + "print(dic)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "base", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From b82d597129c3f8b7186f0af69477406a3e8afcf1 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Sun, 26 Oct 2025 17:45:40 +0600 Subject: [PATCH 24/78] 5.4 Dictionary Methods and 5.5 Dictionary View Methods --- .../Week_1/Mod_5/5.3 Dictionary Basics.ipynb | 6 +- .../Week_1/Mod_5/5.4 Dictionary Methods.ipynb | 180 ++++++++++++++++++ .../Mod_5/5.5 Dictionary View Methods.ipynb | 61 ++++++ 3 files changed, 244 insertions(+), 3 deletions(-) create mode 100644 Python_For_ML/Week_1/Mod_5/5.4 Dictionary Methods.ipynb create mode 100644 Python_For_ML/Week_1/Mod_5/5.5 Dictionary View Methods.ipynb diff --git a/Python_For_ML/Week_1/Mod_5/5.3 Dictionary Basics.ipynb b/Python_For_ML/Week_1/Mod_5/5.3 Dictionary Basics.ipynb index 4739a96..3777292 100644 --- a/Python_For_ML/Week_1/Mod_5/5.3 Dictionary Basics.ipynb +++ b/Python_For_ML/Week_1/Mod_5/5.3 Dictionary Basics.ipynb @@ -26,7 +26,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 6, "metadata": {}, "outputs": [ { @@ -34,8 +34,8 @@ "output_type": "stream", "text": [ "[23, 44, 55]\n", - "20\n", - "{'name': 'Phitron', 'age': 20, 'address': 'dhaka,', 'number': [23, 44, 55]}\n" + "33\n", + "{'name': 'Phitron', 'age': 33, 'address': 'dhaka,', 'number': [23, 44, 55]}\n" ] } ], diff --git a/Python_For_ML/Week_1/Mod_5/5.4 Dictionary Methods.ipynb b/Python_For_ML/Week_1/Mod_5/5.4 Dictionary Methods.ipynb new file mode 100644 index 0000000..eb40950 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_5/5.4 Dictionary Methods.ipynb @@ -0,0 +1,180 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Initial dictionary: {'name': 'Alice', 'age': 30, 'city': 'New York'}\n" + ] + } + ], + "source": [ + "# Creating a dictionary\n", + "my_dict = {\n", + " \"name\": \"Alice\",\n", + " \"age\": 30,\n", + " \"city\": \"New York\"\n", + "}\n", + "\n", + "print(f\"Initial dictionary: {my_dict}\")\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 1. get() - Safely retrieve a value by key, with an optional default\n", + "age = my_dict.get(\"age\")\n", + "print(f\"Age using get(): {age}\")\n", + "\n", + "country = my_dict.get(\"country\", \"Unknown\")\n", + "print(f\"Country using get() with default: {country}\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 2. update() - Add or update key-value pairs\n", + "my_dict.update({\"occupation\": \"Engineer\", \"age\": 31})\n", + "print(f\"Dictionary after update(): {my_dict}\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 3. keys() - Get a view of all keys\n", + "keys = my_dict.keys()\n", + "print(f\"Keys: {list(keys)}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 4. values() - Get a view of all values\n", + "values = my_dict.values()\n", + "print(f\"Values: {list(values)}\")\n", + "\n", + "# 5. items() - Get a view of all key-value pairs as tuples\n", + "items = my_dict.items()\n", + "print(f\"Items: {list(items)}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 6. pop() - Remove a key-value pair by key and return its value\n", + "removed_city = my_dict.pop(\"city\")\n", + "print(f\"Removed city: {removed_city}\")\n", + "print(f\"Dictionary after pop(): {my_dict}\")\n", + "\n", + "# 7. popitem() - Remove and return the last inserted key-value pair (as a tuple)\n", + "# Note: In older Python versions, popitem() removed an arbitrary item.\n", + "removed_item = my_dict.popitem()\n", + "print(f\"Removed item using popitem(): {removed_item}\")\n", + "print(f\"Dictionary after popitem(): {my_dict}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dictionary after clear(): {}\n", + "Original dictionary: {'a': 1, 'b': 2}\n", + "Copied dictionary: {'a': 1, 'b': 2}\n", + "Original dictionary after modifying copy: {'a': 1, 'b': 2}\n", + "Copied dictionary after modification: {'a': 1, 'b': 2, 'c': 3}\n" + ] + } + ], + "source": [ + "# 8. clear() - Remove all items from the dictionary\n", + "my_dict.clear()\n", + "print(f\"Dictionary after clear(): {my_dict}\")\n", + "\n", + "# 9. copy() - Create a shallow copy of the dictionary\n", + "original_dict = {\"a\": 1, \"b\": 2}\n", + "copied_dict = original_dict.copy()\n", + "print(f\"Original dictionary: {original_dict}\")\n", + "print(f\"Copied dictionary: {copied_dict}\")\n", + "copied_dict[\"c\"] = 3\n", + "print(f\"Original dictionary after modifying copy: {original_dict}\")\n", + "print(f\"Copied dictionary after modification: {copied_dict}\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Font size set with setdefault(): 12\n", + "Settings after setdefault(): {'theme': 'dark', 'font_size': 12}\n", + "Theme after setdefault() on existing key: dark\n", + "Settings after second setdefault(): {'theme': 'dark', 'font_size': 12}\n" + ] + } + ], + "source": [ + "# 10. setdefault() - Insert a key with a default value if the key is not already present\n", + "settings = {\"theme\": \"dark\"}\n", + "font_size = settings.setdefault(\"font_size\", 12)\n", + "print(f\"Font size set with setdefault(): {font_size}\")\n", + "print(f\"Settings after setdefault(): {settings}\")\n", + "\n", + "# Trying to set an existing key with setdefault() does not change its value\n", + "theme = settings.setdefault(\"theme\", \"light\")\n", + "print(f\"Theme after setdefault() on existing key: {theme}\")\n", + "print(f\"Settings after second setdefault(): {settings}\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Python_For_ML/Week_1/Mod_5/5.5 Dictionary View Methods.ipynb b/Python_For_ML/Week_1/Mod_5/5.5 Dictionary View Methods.ipynb new file mode 100644 index 0000000..656de9a --- /dev/null +++ b/Python_For_ML/Week_1/Mod_5/5.5 Dictionary View Methods.ipynb @@ -0,0 +1,61 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "dict_keys(['name', 'age', 'address', 'numbers'])\n", + "dict_keys(['name', 'age', 'address', 'numbers', 'math'])\n" + ] + } + ], + "source": [ + "dic ={ \"name\" : \"Phitron\" , \"age\": 20 , \"address\" : \"Dhaka\" , \"numbers\":[10,20,30]} \n", + "\n", + "keys = dic.keys()\n", + "print(keys)\n", + "\n", + "dic[\"math\"] = 33\n", + "\n", + "print(keys)\n", + "\n", + "values = dic.values()\n", + "print(values)\n", + "\n", + "\n", + "dic[\"math\"] = 40\n", + "print(values)\n", + "\n", + "items = dic.items()\n", + "\n", + "print(items)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 6d6501a4f352e0cb3b59c420c77f8e398ee7814f Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Mon, 27 Oct 2025 06:46:38 +0600 Subject: [PATCH 25/78] 5.6 Dictionary Comprehension --- .../Mod_5/5.5 Dictionary View Methods.ipynb | 29 ++++++++- .../Mod_5/5.6 Dictionary Comprehension.ipynb | 64 +++++++++++++++++++ 2 files changed, 91 insertions(+), 2 deletions(-) create mode 100644 Python_For_ML/Week_1/Mod_5/5.6 Dictionary Comprehension.ipynb diff --git a/Python_For_ML/Week_1/Mod_5/5.5 Dictionary View Methods.ipynb b/Python_For_ML/Week_1/Mod_5/5.5 Dictionary View Methods.ipynb index 656de9a..d872ecf 100644 --- a/Python_For_ML/Week_1/Mod_5/5.5 Dictionary View Methods.ipynb +++ b/Python_For_ML/Week_1/Mod_5/5.5 Dictionary View Methods.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 3, + "execution_count": 4, "metadata": {}, "outputs": [ { @@ -10,7 +10,10 @@ "output_type": "stream", "text": [ "dict_keys(['name', 'age', 'address', 'numbers'])\n", - "dict_keys(['name', 'age', 'address', 'numbers', 'math'])\n" + "dict_keys(['name', 'age', 'address', 'numbers', 'math'])\n", + "dict_values(['Phitron', 20, 'Dhaka', [10, 20, 30], 33])\n", + "dict_values(['Phitron', 20, 'Dhaka', [10, 20, 30], 40])\n", + "dict_items([('name', 'Phitron'), ('age', 20), ('address', 'Dhaka'), ('numbers', [10, 20, 30]), ('math', 40)])\n" ] } ], @@ -35,6 +38,28 @@ "\n", "print(items)" ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "name Phitron\n", + "age 20\n", + "address Dhaka\n", + "numbers [10, 20, 30]\n", + "math 40\n" + ] + } + ], + "source": [ + "for keys, values in dic.items():\n", + " print(keys,values)" + ] } ], "metadata": { diff --git a/Python_For_ML/Week_1/Mod_5/5.6 Dictionary Comprehension.ipynb b/Python_For_ML/Week_1/Mod_5/5.6 Dictionary Comprehension.ipynb new file mode 100644 index 0000000..81d9cc8 --- /dev/null +++ b/Python_For_ML/Week_1/Mod_5/5.6 Dictionary Comprehension.ipynb @@ -0,0 +1,64 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{2: 4, 4: 16, 6: 36, 8: 64, 10: 100}\n" + ] + } + ], + "source": [ + "square = {x:x**2 for x in range(1,11) if x%2==0}\n", + "print(square)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{(10, 10.5): 'dhaka', (20.5, 192): 'Chitagong', (101, 1102): 'sylhet'}\n" + ] + } + ], + "source": [ + "Co_ordinates = [(10,10.5), (20.5,192), (101,1102) ]\n", + "Location = [\"dhaka\", \"Chitagong\", \"sylhet\"]\n", + "\n", + "exact_locaton = {co_or : loc for co_or, loc in zip(Co_ordinates,Location)}\n", + "print(exact_locaton)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From b18b2cd7262032978380e9613f0eecca43015e61 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Mon, 27 Oct 2025 07:04:21 +0600 Subject: [PATCH 26/78] 5.7 Problem solving with In Built Structures --- ...lem solving with In Built Structures.ipynb | 164 ++++++++++++++++++ 1 file changed, 164 insertions(+) create mode 100644 Python_For_ML/Week_1/5.7 Problem solving with In Built Structures.ipynb diff --git a/Python_For_ML/Week_1/5.7 Problem solving with In Built Structures.ipynb b/Python_For_ML/Week_1/5.7 Problem solving with In Built Structures.ipynb new file mode 100644 index 0000000..76c9e00 --- /dev/null +++ b/Python_For_ML/Week_1/5.7 Problem solving with In Built Structures.ipynb @@ -0,0 +1,164 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[34, 98, 12, 13, 76, 7666, 87, 56, 799]\n" + ] + } + ], + "source": [ + "last = [12,12,13,34,56,76,87,98,799,7666]\n", + "\n", + "unique_val = set(last)\n", + "\n", + "last=list(unique_val)\n", + "\n", + "print(last)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'A': 1, '25-year-old': 1, 'man': 1, 'is': 3, 'dead': 1, 'and': 2, 'six': 1, 'others': 1, 'were': 2, 'injured': 1, 'in': 3, 'a': 4, 'shooting': 1, 'during': 2, 'homecoming': 1, 'celebration': 1, 'at': 1, 'Lincoln': 2, 'University': 1, 'Pennsylvania,': 1, 'Saturday': 1, 'night,': 1, 'the': 7, 'Chester': 1, 'County': 1, 'district': 1, 'attorney': 1, 'announced.': 1, 'District': 1, 'Attorney': 1, 'Christopher': 1, 'de': 2, 'Barrena-Sarobe': 2, 'said': 2, 'one': 2, 'person': 1, 'who': 2, 'had': 1, 'gun': 1, 'has': 1, 'since': 1, 'been': 1, 'detained.': 1, 'Jujuan': 1, 'Jeffers,': 1, 'of': 3, 'Wilmington,': 1, 'Delaware,': 1, 'died': 1, 'shooting,': 1, 'press': 1, 'conference': 1, 'on': 1, 'Sunday.': 1, 'One': 1, 'current': 1, 'student': 1, 'among': 1, 'wounded,': 1, 'as': 1, 'graduate': 1, 'school.': 1, 'The': 1, 'other': 1, 'people': 1, 'hurt': 1, 'are': 3, 'not': 1, 'directly': 1, 'connected': 1, 'to': 3, 'university,': 1, 'DA': 1, 'said.': 1, 'All': 1, 'victims': 1, '20': 1, '25': 1, 'years': 1, 'old': 1, 'expected': 1, 'survive.': 1}\n", + "count of A is 1\n", + "count of 25-year-old is 1\n", + "count of man is 1\n", + "count of is is 3\n", + "count of dead is 1\n", + "count of and is 2\n", + "count of six is 1\n", + "count of others is 1\n", + "count of were is 2\n", + "count of injured is 1\n", + "count of in is 3\n", + "count of a is 4\n", + "count of shooting is 1\n", + "count of during is 2\n", + "count of homecoming is 1\n", + "count of celebration is 1\n", + "count of at is 1\n", + "count of Lincoln is 2\n", + "count of University is 1\n", + "count of Pennsylvania, is 1\n", + "count of Saturday is 1\n", + "count of night, is 1\n", + "count of the is 7\n", + "count of Chester is 1\n", + "count of County is 1\n", + "count of district is 1\n", + "count of attorney is 1\n", + "count of announced. is 1\n", + "count of District is 1\n", + "count of Attorney is 1\n", + "count of Christopher is 1\n", + "count of de is 2\n", + "count of Barrena-Sarobe is 2\n", + "count of said is 2\n", + "count of one is 2\n", + "count of person is 1\n", + "count of who is 2\n", + "count of had is 1\n", + "count of gun is 1\n", + "count of has is 1\n", + "count of since is 1\n", + "count of been is 1\n", + "count of detained. is 1\n", + "count of Jujuan is 1\n", + "count of Jeffers, is 1\n", + "count of of is 3\n", + "count of Wilmington, is 1\n", + "count of Delaware, is 1\n", + "count of died is 1\n", + "count of shooting, is 1\n", + "count of press is 1\n", + "count of conference is 1\n", + "count of on is 1\n", + "count of Sunday. is 1\n", + "count of One is 1\n", + "count of current is 1\n", + "count of student is 1\n", + "count of among is 1\n", + "count of wounded, is 1\n", + "count of as is 1\n", + "count of graduate is 1\n", + "count of school. is 1\n", + "count of The is 1\n", + "count of other is 1\n", + "count of people is 1\n", + "count of hurt is 1\n", + "count of are is 3\n", + "count of not is 1\n", + "count of directly is 1\n", + "count of connected is 1\n", + "count of to is 3\n", + "count of university, is 1\n", + "count of DA is 1\n", + "count of said. is 1\n", + "count of All is 1\n", + "count of victims is 1\n", + "count of 20 is 1\n", + "count of 25 is 1\n", + "count of years is 1\n", + "count of old is 1\n", + "count of expected is 1\n", + "count of survive. is 1\n" + ] + } + ], + "source": [ + "string=\"\"\"A 25-year-old man is dead and six others were injured in a shooting during a homecoming celebration at Lincoln University in Pennsylvania, Saturday night, the Chester County district attorney announced.\n", + "\n", + "District Attorney Christopher de Barrena-Sarobe said one person who had a gun has since been detained. \n", + "\n", + "Jujuan Jeffers, of Wilmington, Delaware, died in the shooting, de Barrena-Sarobe said during a press conference on Sunday.\n", + "\n", + "One current Lincoln student is among the wounded, as is one graduate of the school. The other people who were hurt are not directly connected to the university, the DA said. All of the victims are 20 to 25 years old and are expected to survive.\"\"\"\n", + "\n", + "words = string.split()\n", + "\n", + "count = {}\n", + "for word in words:\n", + " count[word] = count.get(word,0) +1\n", + "\n", + "#print(count)\n", + "\n", + "for k,v in count.items():\n", + " print(f\"count of {k} is {v}\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 4bc35340d96ac50cfbc2d64fb11b61c180793036 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Mon, 27 Oct 2025 17:21:08 +0600 Subject: [PATCH 27/78] 6.2 Function Parameters --- .../Mod_6/6.2 Function Parameters.ipynb | 139 ++++++++++++++++++ 1 file changed, 139 insertions(+) create mode 100644 Python_For_ML/Week_2/Mod_6/6.2 Function Parameters.ipynb diff --git a/Python_For_ML/Week_2/Mod_6/6.2 Function Parameters.ipynb b/Python_For_ML/Week_2/Mod_6/6.2 Function Parameters.ipynb new file mode 100644 index 0000000..bf3a34b --- /dev/null +++ b/Python_For_ML/Week_2/Mod_6/6.2 Function Parameters.ipynb @@ -0,0 +1,139 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "hello salam\n" + ] + } + ], + "source": [ + "def greet(user = \"imran\"):\n", + " print(f\"hello {user}\")\n", + "\n", + "greet(\"salam\")" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10 20\n", + "510\n" + ] + } + ], + "source": [ + "def squer_add(a,b):\n", + " print(f\"{a} {b}\")\n", + " a=a**2\n", + " b=b**2\n", + " return a+b \n", + "\n", + "ans = squer_add(10,20) +10\n", + "print(ans)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "500\n" + ] + } + ], + "source": [ + "def squer_addition(*args):\n", + " summetion =0\n", + " for i in args:\n", + " i=i**2\n", + " summetion+=i\n", + " return summetion\n", + "\n", + "ans1 = squer_addition(10,20) \n", + "print(ans1)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "name : ivan\n", + "clas : 11\n", + "roll : 33\n" + ] + } + ], + "source": [ + "def student(**Kwargs):\n", + " for key,val in Kwargs.items():\n", + " print(f\"{key} : {val}\")\n", + "\n", + "student(name = \"ivan\", clas =11, roll=33)" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "ename": "SyntaxError", + "evalue": "invalid syntax (2196713934.py, line 1)", + "output_type": "error", + "traceback": [ + " \u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[25]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[31m \u001b[39m\u001b[31mstudent(name = \"ivan\", class =11, roll=33)\u001b[39m\n ^\n\u001b[31mSyntaxError\u001b[39m\u001b[31m:\u001b[39m invalid syntax\n" + ] + } + ], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From f8a52de1bc7284daa42bbeb1735561ef5f8fa8a0 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Mon, 27 Oct 2025 18:57:14 +0600 Subject: [PATCH 28/78] 6.3 Function Return Types --- .../Mod_6/6.3 Function Return Types.ipynb | 130 ++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb diff --git a/Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb b/Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb new file mode 100644 index 0000000..9b5ab84 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb @@ -0,0 +1,130 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10 20\n" + ] + } + ], + "source": [ + "def given_predicton():\n", + " return 10,20\n", + "\n", + "type(given_predicton())\n", + "\n", + "#ubpack\n", + "x , y = given_predicton()\n", + "\n", + "print(x,y)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[10, 20] [22, 33]\n" + ] + } + ], + "source": [ + "def given_predicton():\n", + " a =[10,20]\n", + " b=[22,33]\n", + " return a,b\n", + "\n", + "\n", + "type(given_predicton())\n", + "\n", + "#ubpack\n", + "x , y = given_predicton()\n", + "\n", + "print(x,y)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], + "source": [ + "def give_predicton():\n", + " a ={10,23,44}\n", + " return a\n", + "\n", + "x = give_predicton()\n", + "\n", + "print(type(x))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "i\n", + "v\n", + "a\n", + "n\n" + ] + } + ], + "source": [ + "def give_predic():\n", + " return {\"ivan\": \"jama\", \"Laptop\":\"333\"},{\"ivan\": \"jama\", \"Laptop\":\"333\"}\n", + "\n", + "x,y = give_predic()\n", + "\n", + "print(type(x))\n", + "\n", + "for item in x:\n", + " print(item)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 5290b01a8861ab1aaf55aeafdba5bcc6eb58c6a5 Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Mon, 27 Oct 2025 18:57:22 +0600 Subject: [PATCH 29/78] Delete Python_For_ML/Week_2/Mod_6 directory dlt --- .../Mod_6/6.2 Function Parameters.ipynb | 139 ------------------ .../Mod_6/6.3 Function Return Types.ipynb | 130 ---------------- 2 files changed, 269 deletions(-) delete mode 100644 Python_For_ML/Week_2/Mod_6/6.2 Function Parameters.ipynb delete mode 100644 Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb diff --git a/Python_For_ML/Week_2/Mod_6/6.2 Function Parameters.ipynb b/Python_For_ML/Week_2/Mod_6/6.2 Function Parameters.ipynb deleted file mode 100644 index bf3a34b..0000000 --- a/Python_For_ML/Week_2/Mod_6/6.2 Function Parameters.ipynb +++ /dev/null @@ -1,139 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "hello salam\n" - ] - } - ], - "source": [ - "def greet(user = \"imran\"):\n", - " print(f\"hello {user}\")\n", - "\n", - "greet(\"salam\")" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "10 20\n", - "510\n" - ] - } - ], - "source": [ - "def squer_add(a,b):\n", - " print(f\"{a} {b}\")\n", - " a=a**2\n", - " b=b**2\n", - " return a+b \n", - "\n", - "ans = squer_add(10,20) +10\n", - "print(ans)" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "500\n" - ] - } - ], - "source": [ - "def squer_addition(*args):\n", - " summetion =0\n", - " for i in args:\n", - " i=i**2\n", - " summetion+=i\n", - " return summetion\n", - "\n", - "ans1 = squer_addition(10,20) \n", - "print(ans1)" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "name : ivan\n", - "clas : 11\n", - "roll : 33\n" - ] - } - ], - "source": [ - "def student(**Kwargs):\n", - " for key,val in Kwargs.items():\n", - " print(f\"{key} : {val}\")\n", - "\n", - "student(name = \"ivan\", clas =11, roll=33)" - ] - }, - { - "cell_type": "code", - "execution_count": 25, - "metadata": {}, - "outputs": [ - { - "ename": "SyntaxError", - "evalue": "invalid syntax (2196713934.py, line 1)", - "output_type": "error", - "traceback": [ - " \u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[25]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[31m \u001b[39m\u001b[31mstudent(name = \"ivan\", class =11, roll=33)\u001b[39m\n ^\n\u001b[31mSyntaxError\u001b[39m\u001b[31m:\u001b[39m invalid syntax\n" - ] - } - ], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.13.7" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb b/Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb deleted file mode 100644 index 9b5ab84..0000000 --- a/Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb +++ /dev/null @@ -1,130 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "10 20\n" - ] - } - ], - "source": [ - "def given_predicton():\n", - " return 10,20\n", - "\n", - "type(given_predicton())\n", - "\n", - "#ubpack\n", - "x , y = given_predicton()\n", - "\n", - "print(x,y)" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[10, 20] [22, 33]\n" - ] - } - ], - "source": [ - "def given_predicton():\n", - " a =[10,20]\n", - " b=[22,33]\n", - " return a,b\n", - "\n", - "\n", - "type(given_predicton())\n", - "\n", - "#ubpack\n", - "x , y = given_predicton()\n", - "\n", - "print(x,y)" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n" - ] - } - ], - "source": [ - "def give_predicton():\n", - " a ={10,23,44}\n", - " return a\n", - "\n", - "x = give_predicton()\n", - "\n", - "print(type(x))\n" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "i\n", - "v\n", - "a\n", - "n\n" - ] - } - ], - "source": [ - "def give_predic():\n", - " return {\"ivan\": \"jama\", \"Laptop\":\"333\"},{\"ivan\": \"jama\", \"Laptop\":\"333\"}\n", - "\n", - "x,y = give_predic()\n", - "\n", - "print(type(x))\n", - "\n", - "for item in x:\n", - " print(item)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.13.7" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} From 60de9d265dde9a52496eba2326794c269918da06 Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Mon, 27 Oct 2025 18:58:11 +0600 Subject: [PATCH 30/78] Add files via upload --- .../Mod_6/6.2 Function Parameters.ipynb | 139 ++++++++++++++++++ .../Mod_6/6.3 Function Return Types.ipynb | 130 ++++++++++++++++ 2 files changed, 269 insertions(+) create mode 100644 Python_For_ML/Week_2/Mod_6/6.2 Function Parameters.ipynb create mode 100644 Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb diff --git a/Python_For_ML/Week_2/Mod_6/6.2 Function Parameters.ipynb b/Python_For_ML/Week_2/Mod_6/6.2 Function Parameters.ipynb new file mode 100644 index 0000000..bf3a34b --- /dev/null +++ b/Python_For_ML/Week_2/Mod_6/6.2 Function Parameters.ipynb @@ -0,0 +1,139 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "hello salam\n" + ] + } + ], + "source": [ + "def greet(user = \"imran\"):\n", + " print(f\"hello {user}\")\n", + "\n", + "greet(\"salam\")" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10 20\n", + "510\n" + ] + } + ], + "source": [ + "def squer_add(a,b):\n", + " print(f\"{a} {b}\")\n", + " a=a**2\n", + " b=b**2\n", + " return a+b \n", + "\n", + "ans = squer_add(10,20) +10\n", + "print(ans)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "500\n" + ] + } + ], + "source": [ + "def squer_addition(*args):\n", + " summetion =0\n", + " for i in args:\n", + " i=i**2\n", + " summetion+=i\n", + " return summetion\n", + "\n", + "ans1 = squer_addition(10,20) \n", + "print(ans1)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "name : ivan\n", + "clas : 11\n", + "roll : 33\n" + ] + } + ], + "source": [ + "def student(**Kwargs):\n", + " for key,val in Kwargs.items():\n", + " print(f\"{key} : {val}\")\n", + "\n", + "student(name = \"ivan\", clas =11, roll=33)" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "ename": "SyntaxError", + "evalue": "invalid syntax (2196713934.py, line 1)", + "output_type": "error", + "traceback": [ + " \u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[25]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[31m \u001b[39m\u001b[31mstudent(name = \"ivan\", class =11, roll=33)\u001b[39m\n ^\n\u001b[31mSyntaxError\u001b[39m\u001b[31m:\u001b[39m invalid syntax\n" + ] + } + ], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb b/Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb new file mode 100644 index 0000000..9b5ab84 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb @@ -0,0 +1,130 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10 20\n" + ] + } + ], + "source": [ + "def given_predicton():\n", + " return 10,20\n", + "\n", + "type(given_predicton())\n", + "\n", + "#ubpack\n", + "x , y = given_predicton()\n", + "\n", + "print(x,y)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[10, 20] [22, 33]\n" + ] + } + ], + "source": [ + "def given_predicton():\n", + " a =[10,20]\n", + " b=[22,33]\n", + " return a,b\n", + "\n", + "\n", + "type(given_predicton())\n", + "\n", + "#ubpack\n", + "x , y = given_predicton()\n", + "\n", + "print(x,y)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], + "source": [ + "def give_predicton():\n", + " a ={10,23,44}\n", + " return a\n", + "\n", + "x = give_predicton()\n", + "\n", + "print(type(x))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "i\n", + "v\n", + "a\n", + "n\n" + ] + } + ], + "source": [ + "def give_predic():\n", + " return {\"ivan\": \"jama\", \"Laptop\":\"333\"},{\"ivan\": \"jama\", \"Laptop\":\"333\"}\n", + "\n", + "x,y = give_predic()\n", + "\n", + "print(type(x))\n", + "\n", + "for item in x:\n", + " print(item)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From fc0a32287e4f6aff0901d4bfd502f6027fe8fd4d Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Mon, 27 Oct 2025 22:21:00 +0600 Subject: [PATCH 31/78] Initial commit --- .../Mod_6/6.3 Function Return Types.ipynb | 10 +-- .../Mod_6/6.4 Iterator and Generator.ipynb | 79 +++++++++++++++++++ 2 files changed, 83 insertions(+), 6 deletions(-) create mode 100644 Python_For_ML/Week_2/Mod_6/6.4 Iterator and Generator.ipynb diff --git a/Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb b/Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb index 9b5ab84..2f1640f 100644 --- a/Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb +++ b/Python_For_ML/Week_2/Mod_6/6.3 Function Return Types.ipynb @@ -78,18 +78,16 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 17, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "\n", - "i\n", - "v\n", - "a\n", - "n\n" + "\n", + "ivan\n", + "Laptop\n" ] } ], diff --git a/Python_For_ML/Week_2/Mod_6/6.4 Iterator and Generator.ipynb b/Python_For_ML/Week_2/Mod_6/6.4 Iterator and Generator.ipynb new file mode 100644 index 0000000..30855a2 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_6/6.4 Iterator and Generator.ipynb @@ -0,0 +1,79 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "40\n", + "10\n", + "\n", + "40\n", + "10\n", + "60\n", + "78\n" + ] + } + ], + "source": [ + "s = {10,40,60,78}\n", + "\n", + "s_iter = iter(s)\n", + "print(next(s_iter))\n", + "print(next(s_iter))\n", + "print(\"\")\n", + "for i in s:\n", + " print( i)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0, 1, 2, 3, 4]\n" + ] + } + ], + "source": [ + "lst = [x for x in range(500)]\n", + "\n", + "def data_load(chunk_sz,lst):\n", + " for i in range(0,len(lst), chunk_sz):\n", + " yield lst[i:i+chunk_sz]\n", + "\n", + "x = data_load(5,lst)\n", + "print(next(x))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From c3a61b41a9115ff60fd74429b31b13927a2e47cb Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Mon, 27 Oct 2025 22:25:19 +0600 Subject: [PATCH 32/78] Create Mod_7 --- Python_For_ML/Week_2/Mod_7 | 1 + 1 file changed, 1 insertion(+) create mode 100644 Python_For_ML/Week_2/Mod_7 diff --git a/Python_For_ML/Week_2/Mod_7 b/Python_For_ML/Week_2/Mod_7 new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_7 @@ -0,0 +1 @@ + From 85f60b52dfa7fd675e1fac619df3d9a931121cf2 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 28 Oct 2025 09:04:08 +0600 Subject: [PATCH 33/78] 6.5 Lambda function in Python --- .../Mod_6/6.5 Lambda function in Python.ipynb | 66 +++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 Python_For_ML/Week_2/Mod_6/6.5 Lambda function in Python.ipynb diff --git a/Python_For_ML/Week_2/Mod_6/6.5 Lambda function in Python.ipynb b/Python_For_ML/Week_2/Mod_6/6.5 Lambda function in Python.ipynb new file mode 100644 index 0000000..b052e60 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_6/6.5 Lambda function in Python.ipynb @@ -0,0 +1,66 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13\n" + ] + } + ], + "source": [ + "def square_addition(x,y):\n", + " return x**2+y*2\n", + "\n", + "sq_add = lambda x,y : x**2 + y**2\n", + "\n", + "print(sq_add(2,3))" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "False\n" + ] + } + ], + "source": [ + "if_even = lambda x : x%2==0\n", + "\n", + "print(if_even(5))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 3ee662adb6d090175985dbf6f847375fc7995948 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 28 Oct 2025 09:12:35 +0600 Subject: [PATCH 34/78] 28_Oct --- .../Mod_6/6.6 Map function in Python.ipynb | 69 +++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 Python_For_ML/Week_2/Mod_6/6.6 Map function in Python.ipynb diff --git a/Python_For_ML/Week_2/Mod_6/6.6 Map function in Python.ipynb b/Python_For_ML/Week_2/Mod_6/6.6 Map function in Python.ipynb new file mode 100644 index 0000000..36b1682 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_6/6.6 Map function in Python.ipynb @@ -0,0 +1,69 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], + "source": [ + "lst = [1,2,3,4,5]\n", + "\n", + "def sq(x):\n", + " return x**2\n", + "lst = map(sq,lst)\n", + "print(lst)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 4, 9, 16, 25]\n" + ] + } + ], + "source": [ + "lst = [1,2,3,4,5]\n", + "\n", + "def sq(x):\n", + " return x**2\n", + "lst = list(map(sq,lst))\n", + "print(lst)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 752e0cd806ae721188498ab0642f4d9bc8a32e1c Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 28 Oct 2025 09:15:15 +0600 Subject: [PATCH 35/78] Quick update for graph - Oct 28, 2025 --- README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..c0a20ee --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Oct 28 update From b4665915196a3e3d76dced2731e180b73399cb9e Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 28 Oct 2025 09:44:02 +0600 Subject: [PATCH 36/78] 6.6 Map function in Pytho --- .../Mod_6/6.6 Map function in Python.ipynb | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/Python_For_ML/Week_2/Mod_6/6.6 Map function in Python.ipynb b/Python_For_ML/Week_2/Mod_6/6.6 Map function in Python.ipynb index 36b1682..1b80a3d 100644 --- a/Python_For_ML/Week_2/Mod_6/6.6 Map function in Python.ipynb +++ b/Python_For_ML/Week_2/Mod_6/6.6 Map function in Python.ipynb @@ -43,6 +43,41 @@ "lst = list(map(sq,lst))\n", "print(lst)" ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['A', 'B', 'C', 'D', ' ', 'E', 'F', 'G', 'H', ' ']\n", + "A B C D E F G H \n" + ] + } + ], + "source": [ + "string = \"abcd efgh \"\n", + "string1 = list(map(str.upper,string))\n", + "print(string1)\n", + "\n", + "string1= \" \".join(string1)\n", + "print(string1)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "lst = [1,2,3,4,5,6]\n", + "lst = list(map(lambda x : x**2, lst))\n", + "\n", + "print(lst)" + ] } ], "metadata": { From 63e97ffbc14f345df0790bcc949d91a7b07fd955 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 28 Oct 2025 09:47:55 +0600 Subject: [PATCH 37/78] 6.4 Iterator and Generator --- .../Week_2/Mod_6/6.6 Map function in Python.ipynb | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/Python_For_ML/Week_2/Mod_6/6.6 Map function in Python.ipynb b/Python_For_ML/Week_2/Mod_6/6.6 Map function in Python.ipynb index 1b80a3d..576751b 100644 --- a/Python_For_ML/Week_2/Mod_6/6.6 Map function in Python.ipynb +++ b/Python_For_ML/Week_2/Mod_6/6.6 Map function in Python.ipynb @@ -69,12 +69,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 4, 3, 16, 5, 36]\n" + ] + } + ], "source": [ "lst = [1,2,3,4,5,6]\n", - "lst = list(map(lambda x : x**2, lst))\n", + "lst = list(map(lambda x : x**2 if x%2==0 else x, lst))\n", "\n", "print(lst)" ] From e7f2ac42bce04cffd82778d0526fa865df465e6d Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 28 Oct 2025 10:01:46 +0600 Subject: [PATCH 38/78] 6.7 Filter Function in Python --- .../Mod_6/6.7 Filter Function in Python.ipynb | 61 +++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 Python_For_ML/Week_2/Mod_6/6.7 Filter Function in Python.ipynb diff --git a/Python_For_ML/Week_2/Mod_6/6.7 Filter Function in Python.ipynb b/Python_For_ML/Week_2/Mod_6/6.7 Filter Function in Python.ipynb new file mode 100644 index 0000000..024bae8 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_6/6.7 Filter Function in Python.ipynb @@ -0,0 +1,61 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99]\n", + "[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98]\n" + ] + } + ], + "source": [ + "numbers = [x for x in range(100)]\n", + "print(numbers)\n", + "\n", + "even = list(filter(lambda x : x % 2 ==0, numbers))\n", + "print(even)\n", + "\n", + "\n", + "fifty_upper = list(filter(lambda x : x > 50, numbers))\n", + "\n", + "print(fifty_upper)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "list(filter(None, data))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From c7926ccaf130ba6eeb2226330da311687f333130 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 28 Oct 2025 10:14:48 +0600 Subject: [PATCH 39/78] 6.8 Reduce function in Python --- .../Mod_6/6.7 Filter Function in Python.ipynb | 41 +++++++++++-- .../Mod_6/6.8 Reduce function in Python.ipynb | 60 +++++++++++++++++++ 2 files changed, 96 insertions(+), 5 deletions(-) create mode 100644 Python_For_ML/Week_2/Mod_6/6.8 Reduce function in Python.ipynb diff --git a/Python_For_ML/Week_2/Mod_6/6.7 Filter Function in Python.ipynb b/Python_For_ML/Week_2/Mod_6/6.7 Filter Function in Python.ipynb index 024bae8..acb80ed 100644 --- a/Python_For_ML/Week_2/Mod_6/6.7 Filter Function in Python.ipynb +++ b/Python_For_ML/Week_2/Mod_6/6.7 Filter Function in Python.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 3, + "execution_count": 4, "metadata": {}, "outputs": [ { @@ -10,7 +10,8 @@ "output_type": "stream", "text": [ "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99]\n", - "[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98]\n" + "[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98]\n", + "[51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99]\n" ] } ], @@ -29,11 +30,41 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 'hllo']\n" + ] + } + ], + "source": [ + "data = [0,1,\"\",None,'hllo',[],]\n", + "\n", + "cleaned_data = list(filter(None, data))\n", + "print(cleaned_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['aaa', 'ccc']\n" + ] + } + ], "source": [ - "list(filter(None, data))" + "fruites = ['aaa','bb','ccc']\n", + "filtering = list(filter(lambda x: len(x)>2,fruites))\n", + "print(filtering)" ] } ], diff --git a/Python_For_ML/Week_2/Mod_6/6.8 Reduce function in Python.ipynb b/Python_For_ML/Week_2/Mod_6/6.8 Reduce function in Python.ipynb new file mode 100644 index 0000000..ef74348 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_6/6.8 Reduce function in Python.ipynb @@ -0,0 +1,60 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15\n" + ] + } + ], + "source": [ + "\n", + "from functools import reduce\n", + "lst = [1,2,3,4,5]\n", + "\n", + "sum = reduce(lambda x,y : x+y,lst)\n", + "\n", + "print(sum)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "lst = [1,2,3,4,5]\n", + "\n", + "max = reduce(lambda x ,y :x if x > y else y, lst)\n", + "print(max)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 7d7a2ba66a1593d793ccdca0190b3c20cc5931b6 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 28 Oct 2025 10:35:13 +0600 Subject: [PATCH 40/78] '7.1 File Handling Basics.ipynb' --- Python_For_ML/Week_2/Mod_7 | 1 - .../Mod_7/7.1 File Handling Basics.ipynb | 20 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) delete mode 100644 Python_For_ML/Week_2/Mod_7 create mode 100644 Python_For_ML/Week_2/Mod_7/7.1 File Handling Basics.ipynb diff --git a/Python_For_ML/Week_2/Mod_7 b/Python_For_ML/Week_2/Mod_7 deleted file mode 100644 index 8b13789..0000000 --- a/Python_For_ML/Week_2/Mod_7 +++ /dev/null @@ -1 +0,0 @@ - diff --git a/Python_For_ML/Week_2/Mod_7/7.1 File Handling Basics.ipynb b/Python_For_ML/Week_2/Mod_7/7.1 File Handling Basics.ipynb new file mode 100644 index 0000000..6176334 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_7/7.1 File Handling Basics.ipynb @@ -0,0 +1,20 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#it was a theory class." + ] + } + ], + "metadata": { + "language_info": { + "name": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 08724320f9afb262f68a0d23ef7c5d7ea1f906ff Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Tue, 28 Oct 2025 18:47:54 +0600 Subject: [PATCH 41/78] Created using Colab --- .../Week_2/Mod_7/7_2_File_Read.ipynb | 89 +++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 Python_For_ML/Week_2/Mod_7/7_2_File_Read.ipynb diff --git a/Python_For_ML/Week_2/Mod_7/7_2_File_Read.ipynb b/Python_For_ML/Week_2/Mod_7/7_2_File_Read.ipynb new file mode 100644 index 0000000..9c7421d --- /dev/null +++ b/Python_For_ML/Week_2/Mod_7/7_2_File_Read.ipynb @@ -0,0 +1,89 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [], + "authorship_tag": "ABX9TyPit0Gb9guVCwwOHBF1fzLZ", + "include_colab_link": true + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "view-in-github", + "colab_type": "text" + }, + "source": [ + "\"Open" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "CoeeGr4D0YZm", + "outputId": "73d663ac-ad49-4c46-db59-611c194c00e6" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\n", + "True\n" + ] + } + ], + "source": [ + "file = open(\"./sample_data/sample.txt\",\"r\")\n", + "content = file.read()\n", + "print(type(content))\n", + "\n", + "file.close()\n", + "print(file.closed)" + ] + }, + { + "cell_type": "code", + "source": [ + "with open(\"./sample_data/sample.txt\",\"r\") as file:\n", + " for line in file:\n", + " # content = file.readlines()\n", + " #print(content)\n", + " print(line, end=\"\")\n", + " l = line.strip()\n", + "\n", + "#print(file.closed)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "_kjx2JuL1eHT", + "outputId": "f4448cc3-a6e5-4087-b123-54612bfb72a4" + }, + "execution_count": 16, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "hello there!" + ] + } + ] + } + ] +} \ No newline at end of file From a1d5b0495f465f48d77f9cc776acc7bab840507c Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Tue, 28 Oct 2025 19:42:36 +0600 Subject: [PATCH 42/78] Created using Colab --- .../Mod_7/7_3_File_Write_and_Append.ipynb | 74 +++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 Python_For_ML/Week_2/Mod_7/7_3_File_Write_and_Append.ipynb diff --git a/Python_For_ML/Week_2/Mod_7/7_3_File_Write_and_Append.ipynb b/Python_For_ML/Week_2/Mod_7/7_3_File_Write_and_Append.ipynb new file mode 100644 index 0000000..45f425b --- /dev/null +++ b/Python_For_ML/Week_2/Mod_7/7_3_File_Write_and_Append.ipynb @@ -0,0 +1,74 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [], + "authorship_tag": "ABX9TyN5yXq1X2kRZJ49ES+MnVgy", + "include_colab_link": true + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "view-in-github", + "colab_type": "text" + }, + "source": [ + "\"Open" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "id": "hBTMUPW74gC4" + }, + "outputs": [], + "source": [ + "with open(\"./sample_data/sample.txt\",\"w\") as file:\n", + " file.write(\"world war 2\")\n", + " file.write(\"tell us the history\")" + ] + }, + { + "cell_type": "code", + "source": [ + "file = open(\"./sample_data/sample.txt\",\"r\")\n", + "\n", + "content = file.readlines()\n", + "content = list(map(str.strip,content))\n", + "print(content)\n", + "\n", + "filter_content = list(filter(lambda x : len(x)>=1,content))\n", + "print(filter_content)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "MHGPsQNJBS05", + "outputId": "6406108e-06b6-4820-e2dc-d8f00c423e30" + }, + "execution_count": 9, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "['world war 2tell us the history']\n", + "['world war 2tell us the history']\n" + ] + } + ] + } + ] +} \ No newline at end of file From e2a35836451d4ac5cb9f481ea6194557656262e1 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 28 Oct 2025 19:50:53 +0600 Subject: [PATCH 43/78] Updated login feature --- .../Mod_6/6.8 Reduce function in Python.ipynb | 12 +++- Python_For_ML/Week_2/Mod_6/quize.ipynb | 63 +++++++++++++++++++ .../Week_2/Mod_7/7.2 File Read.ipynb | 18 ++++++ 3 files changed, 91 insertions(+), 2 deletions(-) create mode 100644 Python_For_ML/Week_2/Mod_6/quize.ipynb create mode 100644 Python_For_ML/Week_2/Mod_7/7.2 File Read.ipynb diff --git a/Python_For_ML/Week_2/Mod_6/6.8 Reduce function in Python.ipynb b/Python_For_ML/Week_2/Mod_6/6.8 Reduce function in Python.ipynb index ef74348..729382d 100644 --- a/Python_For_ML/Week_2/Mod_6/6.8 Reduce function in Python.ipynb +++ b/Python_For_ML/Week_2/Mod_6/6.8 Reduce function in Python.ipynb @@ -25,9 +25,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5\n" + ] + } + ], "source": [ "lst = [1,2,3,4,5]\n", "\n", diff --git a/Python_For_ML/Week_2/Mod_6/quize.ipynb b/Python_For_ML/Week_2/Mod_6/quize.ipynb new file mode 100644 index 0000000..3b0a81e --- /dev/null +++ b/Python_For_ML/Week_2/Mod_6/quize.ipynb @@ -0,0 +1,63 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5\n" + ] + } + ], + "source": [ + "def add(a, b=2):\n", + " return a+b\n", + "print(add(3))" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2, 4]\n" + ] + } + ], + "source": [ + "check = list(filter(lambda x: x % 2 == 0, [1, 2, 3, 4]))\n", + "\n", + "print(check)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Python_For_ML/Week_2/Mod_7/7.2 File Read.ipynb b/Python_For_ML/Week_2/Mod_7/7.2 File Read.ipynb new file mode 100644 index 0000000..709d82c --- /dev/null +++ b/Python_For_ML/Week_2/Mod_7/7.2 File Read.ipynb @@ -0,0 +1,18 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "language_info": { + "name": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 7d7bb9edf28c6560e8bbdc47c642c6c6beaa48fc Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Tue, 28 Oct 2025 19:50:17 +0600 Subject: [PATCH 44/78] Delete Python_For_ML/Week_2/Mod_7/7.2 File Read.ipynb --- Python_For_ML/Week_2/Mod_7/7.2 File Read.ipynb | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 Python_For_ML/Week_2/Mod_7/7.2 File Read.ipynb diff --git a/Python_For_ML/Week_2/Mod_7/7.2 File Read.ipynb b/Python_For_ML/Week_2/Mod_7/7.2 File Read.ipynb deleted file mode 100644 index 709d82c..0000000 --- a/Python_For_ML/Week_2/Mod_7/7.2 File Read.ipynb +++ /dev/null @@ -1,18 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "language_info": { - "name": "python" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} From e56be0abfaa89904fabe294649bdd6d123c6d134 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Wed, 29 Oct 2025 16:06:29 +0600 Subject: [PATCH 45/78] 7.4 File Pointer.ipynb --- .../Week_2/Mod_7/7_4_File_Pointer.ipynb | 111 ++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 Python_For_ML/Week_2/Mod_7/7_4_File_Pointer.ipynb diff --git a/Python_For_ML/Week_2/Mod_7/7_4_File_Pointer.ipynb b/Python_For_ML/Week_2/Mod_7/7_4_File_Pointer.ipynb new file mode 100644 index 0000000..302c4e7 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_7/7_4_File_Pointer.ipynb @@ -0,0 +1,111 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "WorEhFdoNIai", + "colab": { + "base_uri": "https://localhost:8080/" + }, + "outputId": "deea6ef9-633e-473a-bfc5-e3dd17e72c0c" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "0\n", + "1 hllo wrld\n", + "2 wlcom to ai\n", + "3 lets enjoy\n", + "40\n" + ] + } + ], + "source": [ + "with open(\"./sample_data/test.txt\",\"r\") as file:\n", + " print(file.tell())\n", + " print(file.read())\n", + "\n", + " print(file.tell())" + ] + }, + { + "cell_type": "code", + "source": [ + "with open(\"./sample_data/test.txt\",\"r\") as file:\n", + " print(file.tell())\n", + " print(file.read(10))\n", + " print(file.tell())\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "hfZsD6gIkqe9", + "outputId": "68a91934-c093-40dd-a7dd-62c1e241950e" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "0\n", + "1 hllo wrl\n", + "10\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "with open(\"./sample_data/test.txt\",\"r\") as file:\n", + " print(file.tell())\n", + "\n", + " file.seek(5)\n", + " print(file.tell())\n", + " print(file.seek(0))\n", + " print(file.tell())\n", + "\n", + "" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "UlXbALrMZfVm", + "outputId": "4ef8671f-4194-40e3-b13d-35c977457dfa" + }, + "execution_count": 7, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "0\n", + "5\n", + "0\n", + "0\n" + ] + } + ] + } + ] +} \ No newline at end of file From c3a500004d456ec7d3b2f5c69082b5a360eec0a9 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Wed, 29 Oct 2025 19:07:42 +0600 Subject: [PATCH 46/78] 7.5 Practice Problems on File --- .../Mod_7/7_5_Practice_Problems_on_File.ipynb | 151 ++++++++++++++++++ 1 file changed, 151 insertions(+) create mode 100644 Python_For_ML/Week_2/Mod_7/7_5_Practice_Problems_on_File.ipynb diff --git a/Python_For_ML/Week_2/Mod_7/7_5_Practice_Problems_on_File.ipynb b/Python_For_ML/Week_2/Mod_7/7_5_Practice_Problems_on_File.ipynb new file mode 100644 index 0000000..a7040a3 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_7/7_5_Practice_Problems_on_File.ipynb @@ -0,0 +1,151 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "vvO5UP75eZ_7", + "outputId": "179b679e-f5a0-4368-e65d-44463d4171cb" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "['What is a valid proof of education?\\n', 'Good proof types indicate academic affiliation documentation most likely to help you be approved.\\n', 'Fair proof types may lower your chances of being approved.\\n', 'Poor proof types are unlikely to be acceptable.']\n", + "[7, 14, 10, 8]\n", + "['What is a valid proof of education?', 'Good proof types indicate academic affiliation documentation most likely to help you be approved.', 'Fair proof types may lower your chances of being approved.', 'Poor proof types are unlikely to be acceptable.']\n", + "[]\n", + "[]\n", + "[]\n" + ] + } + ], + "source": [ + "with open(\"./sample_data/test.txt\",\"r\") as file:\n", + " strings = file.readlines()\n", + " print(strings)\n", + "\n", + " total_lines = len(strings)\n", + "\n", + " number_ofWords = list(map(lambda x : len(x.split()),strings))\n", + "\n", + " print(number_ofWords)\n", + "\n", + "\n", + " strings = list(map(str.strip,strings))\n", + " print(strings)\n", + "\n", + " string_list = file.readlines()\n", + " print(string_list)\n", + "\n", + " string_list = list(map(lambda x : x.replace(\" \",\"\"),string_list))\n", + " print(string_list)\n", + "\n", + " number_of_char = list(map(lambda x : len(x), string_list))\n", + "\n", + " print(number_of_char)\n", + "\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "source": [ + "from functools import reduce\n", + "\n", + "with open(\"./sample_data/test.txt\",\"r\") as file:\n", + " string_list = file.readlines()\n", + "\n", + " # total line koita\n", + " total_lines = len(string_list)\n", + "\n", + " # word ber korbo\n", + " number_of_words = list(map(lambda x : len(x.split()),string_list))\n", + " #total words\n", + " total_number_of_words = reduce(lambda x,y : x+y ,number_of_words)\n", + "\n", + " #cleaning process\n", + "\n", + " # 1. new line delete\n", + " string_list = list(map(str.strip,string_list))\n", + "\n", + " #2. space delete\n", + "\n", + " string_list = list(map(lambda x : x.replace(\" \",\"\"),string_list))\n", + "\n", + " # koita character\n", + "\n", + " number_of_character = list(map(lambda x : len(x),string_list))\n", + "\n", + " # total character\n", + " total_number_of_characters = reduce(lambda x,y : x+y ,number_of_character)\n", + "\n", + "\n", + "\n", + "with open(\"./sample_data/counter_of_string.txt\",\"w\") as file:\n", + " file.write(f\"total line: {total_lines}\\ntotal number of words: {total_number_of_words}\\ntotal number of char: {total_number_of_characters}\")\n", + "\n" + ], + "metadata": { + "id": "E4rAEhMoCqW9" + }, + "execution_count": 16, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "with open(\"./sample_data/writte_read.txt\",\"w+\") as file:\n", + " file.write(\"hyeeee\")\n", + "\n", + " print(file.tell)\n", + " print(file.seek(0))\n", + "\n", + " print(file.read())\n", + "\n", + " file.truncate(5)\n", + " file.seek(0)\n", + " print(file.read())" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "vD64QA1PDMDM", + "outputId": "949d7575-2557-4309-a971-c1306f9fc238" + }, + "execution_count": 21, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\n", + "0\n", + "hyeeee\n", + "hyeee\n" + ] + } + ] + } + ] +} \ No newline at end of file From 15f54db44f69cb4ff33077a917986a26ceaf2366 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Wed, 29 Oct 2025 19:10:45 +0600 Subject: [PATCH 47/78] Testing forked repo contribution --- test_contribution.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 test_contribution.txt diff --git a/test_contribution.txt b/test_contribution.txt new file mode 100644 index 0000000..200f2df --- /dev/null +++ b/test_contribution.txt @@ -0,0 +1 @@ +Test contribution From 01eb7c4e4059bdcd7cfe9784a10c6c0f2786baec Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Wed, 29 Oct 2025 22:24:17 +0600 Subject: [PATCH 48/78] Mod_* --- Python_For_ML/Week_2/Mod_8/.idea/.gitignore | 8 + Python_For_ML/Week_2/Mod_8/.idea/Mod_8.iml | 8 + .../inspectionProfiles/profiles_settings.xml | 6 + Python_For_ML/Week_2/Mod_8/.idea/misc.xml | 7 + Python_For_ML/Week_2/Mod_8/.idea/modules.xml | 8 + Python_For_ML/Week_2/Mod_8/.idea/vcs.xml | 6 + .../8_3_Class_and_Object_implementation.ipynb | 120 ++++++++++++++ .../Week_2/Mod_8/8_4_OOP_Inheritance.ipynb | 154 ++++++++++++++++++ .../Week_2/Mod_8/8_5_OOP_Polymorphism.ipynb | 94 +++++++++++ .../Week_2/Mod_8/8_6_OOP_Encapsulation.ipynb | 70 ++++++++ 10 files changed, 481 insertions(+) create mode 100644 Python_For_ML/Week_2/Mod_8/.idea/.gitignore create mode 100644 Python_For_ML/Week_2/Mod_8/.idea/Mod_8.iml create mode 100644 Python_For_ML/Week_2/Mod_8/.idea/inspectionProfiles/profiles_settings.xml create mode 100644 Python_For_ML/Week_2/Mod_8/.idea/misc.xml create mode 100644 Python_For_ML/Week_2/Mod_8/.idea/modules.xml create mode 100644 Python_For_ML/Week_2/Mod_8/.idea/vcs.xml create mode 100644 Python_For_ML/Week_2/Mod_8/8_3_Class_and_Object_implementation.ipynb create mode 100644 Python_For_ML/Week_2/Mod_8/8_4_OOP_Inheritance.ipynb create mode 100644 Python_For_ML/Week_2/Mod_8/8_5_OOP_Polymorphism.ipynb create mode 100644 Python_For_ML/Week_2/Mod_8/8_6_OOP_Encapsulation.ipynb diff --git a/Python_For_ML/Week_2/Mod_8/.idea/.gitignore b/Python_For_ML/Week_2/Mod_8/.idea/.gitignore new file mode 100644 index 0000000..1c2fda5 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_8/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Python_For_ML/Week_2/Mod_8/.idea/Mod_8.iml b/Python_For_ML/Week_2/Mod_8/.idea/Mod_8.iml new file mode 100644 index 0000000..a80cbb1 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_8/.idea/Mod_8.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_2/Mod_8/.idea/inspectionProfiles/profiles_settings.xml b/Python_For_ML/Week_2/Mod_8/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/Python_For_ML/Week_2/Mod_8/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_2/Mod_8/.idea/misc.xml b/Python_For_ML/Week_2/Mod_8/.idea/misc.xml new file mode 100644 index 0000000..f8a22e9 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_8/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_2/Mod_8/.idea/modules.xml b/Python_For_ML/Week_2/Mod_8/.idea/modules.xml new file mode 100644 index 0000000..edd82ac --- /dev/null +++ b/Python_For_ML/Week_2/Mod_8/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_2/Mod_8/.idea/vcs.xml b/Python_For_ML/Week_2/Mod_8/.idea/vcs.xml new file mode 100644 index 0000000..17fbd1b --- /dev/null +++ b/Python_For_ML/Week_2/Mod_8/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_2/Mod_8/8_3_Class_and_Object_implementation.ipynb b/Python_For_ML/Week_2/Mod_8/8_3_Class_and_Object_implementation.ipynb new file mode 100644 index 0000000..da45c43 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_8/8_3_Class_and_Object_implementation.ipynb @@ -0,0 +1,120 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "22gWCKFuWLgk", + "outputId": "b519e21b-b8a2-43c5-b44e-aefdbd057687" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "I am making a call\n", + "I am playing a game\n" + ] + } + ], + "source": [ + "class phone:\n", + " def make_call(self):\n", + " print(\"I am making a call\")\n", + "\n", + " def play_game(self):\n", + " print(\"I am playing a game\")\n", + "\n", + "p1 = phone()\n", + "p1.make_call()\n", + "p1.play_game()" + ] + }, + { + "cell_type": "code", + "source": [ + "class phone:\n", + " catagory = \"elec\"\n", + "\n", + " def __init__(self,model, battery, camera):\n", + " self.model = model\n", + " self.battery = battery\n", + " self.camera = camera\n", + "\n", + "\n", + " apple = phone(\"nm\", 200,3)\n", + " bluberry = phone(\"nm2\", 300,40)\n", + " motorola = phone(\"nm4\",555,7)\n", + "\n", + " print(motorola.model)" + ], + "metadata": { + "id": "BmqeIrVHZ2no" + }, + "execution_count": 6, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "# base class / parent class\n", + "class Phone:\n", + " category = \"Electronics\"\n", + "\n", + " # constructor\n", + "\n", + " def __init__(self,model , battery , camera,battery_percentage=100):\n", + " self.model = model\n", + " self.battery = battery\n", + " self.camera = camera\n", + " self.battery_percentage = battery_percentage\n", + "\n", + " # methods\n", + " def charge(self,hour):\n", + " print(f\"charge completed by {hour}\")\n", + "\n", + " def capture(self,photo):\n", + " if(self.battery_percentage)<=0:\n", + " print(\"No charge\")\n", + " else:\n", + " self.battery_percentage-=photo\n", + " print(f\"photo captured in {self.model}\")\n", + "\n", + "\n", + "\n", + "class Cooling_Mechanism:\n", + " def __init__(self,cooling_method):\n", + " self.cooling_method= cooling_method\n", + "\n", + "\n", + " #methods\n", + " def cooling_on(self):\n", + " print(f\"the system is being cool by {self.cooling_method}\")\n", + "\n", + "\n" + ], + "metadata": { + "id": "0Ke1hq4Fc4W2" + }, + "execution_count": null, + "outputs": [] + } + ] +} \ No newline at end of file diff --git a/Python_For_ML/Week_2/Mod_8/8_4_OOP_Inheritance.ipynb b/Python_For_ML/Week_2/Mod_8/8_4_OOP_Inheritance.ipynb new file mode 100644 index 0000000..cc99a26 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_8/8_4_OOP_Inheritance.ipynb @@ -0,0 +1,154 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "id": "ehP0PNjwdZ4y" + }, + "outputs": [], + "source": [ + "# base class / parent class\n", + "class Phone:\n", + " category = \"Electronics\"\n", + "\n", + " # constructor\n", + "\n", + " def __init__(self,model , battery , camera,battery_percentage=100):\n", + " self.model = model\n", + " self.battery = battery\n", + " self.camera = camera\n", + " self.battery_percentage = battery_percentage\n", + "\n", + " # methods\n", + " def charge(self,hour):\n", + " print(f\"charge completed by {hour}\")\n", + "\n", + " def capture(self,photo):\n", + " if(self.battery_percentage)<=0:\n", + " print(\"No charge\")\n", + " else:\n", + " self.battery_percentage-=photo\n", + " print(f\"photo captured in {self.model}\")\n", + "\n", + "\n", + "\n", + "class Cooling_Mechanism:\n", + " def __init__(self,cooling_method):\n", + " self.cooling_method= cooling_method\n", + "\n", + "\n", + " #methods\n", + " def cooling_on(self):\n", + " print(f\"the system is being cool by {self.cooling_method}\")\n", + "\n" + ] + }, + { + "cell_type": "code", + "source": [ + "apple = Phone(\"Iphone17\",3000,40)\n", + "blueberry = Phone(\"B-17\",4000,30)\n", + "motorola = Phone(\"M-17\",3500,35)\n", + "apple.capture(10)\n", + "print(motorola.battery_percentage)\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "E1JCN9WFgLBa", + "outputId": "2c806d02-4ca8-4cb5-cc2a-1108ef7c3b16" + }, + "execution_count": 6, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "photo captured in Iphone17\n", + "100\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "# child / derived class\n", + "class SmartPhone(Phone):\n", + " def __init__(self,model , battery , camera,processor):\n", + " super().__init__(model,battery,camera)\n", + " self.processor = processor\n", + "\n", + " ## modified method\n", + " def charge(self,hour):\n", + " print(\"fast charging in process\")\n", + " super().charge(hour)" + ], + "metadata": { + "id": "XNPQMOoAgV9C" + }, + "execution_count": 7, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "class SmartPhone_CoolingMode(SmartPhone,Cooling_Mechanism):\n", + " def __init__(self,model , battery , camera,processor,cooling_method):\n", + " SmartPhone.__init__(self,model,battery,camera,processor)\n", + " Cooling_Mechanism.__init__(self,cooling_method)\n", + "\n", + "\n", + "\n", + "\n", + "pro_cooling = SmartPhone_CoolingMode(\"Y\",5000,100,\"SD\",\"Nitrogen\")\n", + "\n", + "print(pro_cooling.processor) # SmartPhone class theke\n", + "print(pro_cooling.battery) # Phone class theke\n", + "print(pro_cooling.cooling_method) # Cooling_Mechanism class theke\n", + "print(pro_cooling.cooling_on()) # Cooling_Mechanism class er method\n", + "print(pro_cooling.charge(1)) # SmartPhone er modified charge jeta Phone class theke inherited" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "ktTClB7-f5H7", + "outputId": "8acd2288-384c-483a-85ac-f56ee1360c60" + }, + "execution_count": 8, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "SD\n", + "5000\n", + "Nitrogen\n", + "the system is being cool by Nitrogen\n", + "None\n", + "fast charging in process\n", + "charge completed by 1\n", + "None\n" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Python_For_ML/Week_2/Mod_8/8_5_OOP_Polymorphism.ipynb b/Python_For_ML/Week_2/Mod_8/8_5_OOP_Polymorphism.ipynb new file mode 100644 index 0000000..b1f2a83 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_8/8_5_OOP_Polymorphism.ipynb @@ -0,0 +1,94 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3 (ipykernel)", + "language": "python" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "code", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "fqWWT34jhKqY", + "outputId": "86757bd7-ad90-43de-d700-d55d3878f99a", + "ExecuteTime": { + "end_time": "2025-10-29T16:10:47.553405Z", + "start_time": "2025-10-29T16:10:47.547215Z" + } + }, + "source": [ + "class Camera:\n", + " def __init__(self , name):\n", + " self.name = name\n", + "\n", + " # method\n", + " def capture(self):\n", + " print(\"a photo is captured\")\n", + "\n", + "\n", + "class Smart_Phone(Camera):\n", + " def __init__(self,name,resolution):\n", + " super().__init__(name)\n", + " self.resolution = resolution\n", + "\n", + " #method overriding\n", + " def capture(self):\n", + " print(\"Photo is captured by a Phone\")\n", + "\n", + "\n", + "class DSLR(Camera):\n", + " def __init__(self,name,resolution):\n", + " super().__init__(name)\n", + " self.resolution = resolution\n", + "\n", + " def capture(self):\n", + " print(\"Photo is captured by DSLR\")\n", + "\n", + "\n", + "\n", + "class Drone(Camera):\n", + " def __init__(self,name,resolution):\n", + " super().__init__(name)\n", + " self.resolution = resolution\n", + "\n", + " def capture(self):\n", + " print(\"Photo is captured by Drone\")\n", + "\n", + "\n", + "\n", + "phone = Smart_Phone(\"Phone\",30)\n", + "dslr = DSLR (\"DSLR\",200)\n", + "drone = Drone(\"Drone\",150)\n", + "\n", + "\n", + "phone.capture()\n", + "dslr.capture()\n", + "drone.capture()\n" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Photo is captured by a Phone\n", + "Photo is captured by DSLR\n", + "Photo is captured by Drone\n" + ] + } + ], + "execution_count": 1 + } + ] +} diff --git a/Python_For_ML/Week_2/Mod_8/8_6_OOP_Encapsulation.ipynb b/Python_For_ML/Week_2/Mod_8/8_6_OOP_Encapsulation.ipynb new file mode 100644 index 0000000..4ccc7c8 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_8/8_6_OOP_Encapsulation.ipynb @@ -0,0 +1,70 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "xJ7GCCrQjBtF" + }, + "outputs": [], + "source": [ + "# design\n", + "class Mobile:\n", + " def __init__(self,name,model,imei):\n", + " self.__name = name\n", + " self.__model = model\n", + " self.__imei = imei # private\n", + "\n", + " def charge(self):\n", + " print(\"phone is charging\")\n", + "\n", + " # method imei ta paite pari\n", + " def imei_getter(self):\n", + " return self.__imei\n", + " def model_getter(self):\n", + " return self.__model\n", + "\n", + "\n", + "\n", + " def name_getter(self):\n", + " return self.__name\n", + "\n", + "\n", + " def name_setter(self,name):\n", + " self.__name = name\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "#outside world ( user )\n", + "\n", + "# registration\n", + "iphone = Mobile(\"Phone\",\"17\",\"1xkaf1\")\n", + "\n", + "print(iphone.name_getter())\n", + "\n", + "iphone.name_setter(\"Phitron\")\n", + "\n", + "\n", + "print(iphone.name_getter())\n" + ] + } + ] +} \ No newline at end of file From d7811d83c34c2f780f49ae37d5cac5958bd11d77 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Thu, 30 Oct 2025 14:05:12 +0600 Subject: [PATCH 49/78] CodeForce --- ...r.py_f74c57447b3c0881d08af4c4e118c2e3.prob | 1 + ...d.py_88a0e0c01f726cfd0f596b03ea47c684.prob | 1 + ...s.py_f0324f1f9aff5ef40385c974476287ae.prob | 1 + ...x.py_ab051aff45073ea62d5b0e017ef9b7a1.prob | 1 + ...d.py_9892a28033e432bdf31c8518c6d89b4f.prob | 1 + Python_For_ML/Week_2/E_Lowest_Number.py | 8 +++ Python_For_ML/Week_2/H_Good_or_Bad.py | 9 +++ Python_For_ML/Week_2/K_Sum_Digits.py | 9 +++ Python_For_ML/Week_2/M_Replace_MinMax.py | 13 +++++ ...7_6_Exceptions_and_why_handling_them.ipynb | 29 ++++++++++ ..._Try_Except_,_Else_and_Finally_Block.ipynb | 54 ++++++++++++++++++ .../Mod_8/.idea/CodeEpiphany/challenges.db | Bin 0 -> 151552 bytes .../Week_2/Mod_8/8_7_OOP_Abstraction.ipynb | 47 +++++++++++++++ Python_For_ML/Week_2/V_Replace_Word.py | 4 ++ 14 files changed, 178 insertions(+) create mode 100644 Python_For_ML/Week_2/.cph/.E_Lowest_Number.py_f74c57447b3c0881d08af4c4e118c2e3.prob create mode 100644 Python_For_ML/Week_2/.cph/.H_Good_or_Bad.py_88a0e0c01f726cfd0f596b03ea47c684.prob create mode 100644 Python_For_ML/Week_2/.cph/.K_Sum_Digits.py_f0324f1f9aff5ef40385c974476287ae.prob create mode 100644 Python_For_ML/Week_2/.cph/.M_Replace_MinMax.py_ab051aff45073ea62d5b0e017ef9b7a1.prob create mode 100644 Python_For_ML/Week_2/.cph/.V_Replace_Word.py_9892a28033e432bdf31c8518c6d89b4f.prob create mode 100644 Python_For_ML/Week_2/E_Lowest_Number.py create mode 100644 Python_For_ML/Week_2/H_Good_or_Bad.py create mode 100644 Python_For_ML/Week_2/K_Sum_Digits.py create mode 100644 Python_For_ML/Week_2/M_Replace_MinMax.py create mode 100644 Python_For_ML/Week_2/Mod_7/7_6_Exceptions_and_why_handling_them.ipynb create mode 100644 Python_For_ML/Week_2/Mod_7/7_7_Try_Except_,_Else_and_Finally_Block.ipynb create mode 100644 Python_For_ML/Week_2/Mod_8/.idea/CodeEpiphany/challenges.db create mode 100644 Python_For_ML/Week_2/Mod_8/8_7_OOP_Abstraction.ipynb create mode 100644 Python_For_ML/Week_2/V_Replace_Word.py diff --git a/Python_For_ML/Week_2/.cph/.E_Lowest_Number.py_f74c57447b3c0881d08af4c4e118c2e3.prob b/Python_For_ML/Week_2/.cph/.E_Lowest_Number.py_f74c57447b3c0881d08af4c4e118c2e3.prob new file mode 100644 index 0000000..2bee1eb --- /dev/null +++ b/Python_For_ML/Week_2/.cph/.E_Lowest_Number.py_f74c57447b3c0881d08af4c4e118c2e3.prob @@ -0,0 +1 @@ +{"name":"E. Lowest Number","group":"Codeforces - Sheet #3 (Arrays)","url":"https://codeforces.com/group/MWSDmqGsZm/contest/219774/problem/E","interactive":false,"memoryLimit":256,"timeLimit":1000,"tests":[{"input":"3\n1 2 3\n","output":"1 1\n","id":1761806538524},{"id":1761806538525,"input":"5\n5 6 2 3 2\n","output":"2 3\n"}],"testType":"single","input":{"type":"stdin"},"output":{"type":"stdout"},"languages":{"java":{"mainClass":"Main","taskClass":"ELowestNumber"}},"batch":{"id":"c6963b1b-00a2-43dc-aad4-d7469ba38712","size":1},"srcPath":"c:\\Users\\evan\\Documents\\GitHub\\Python-for-ML\\Python_For_ML\\Week_2\\E_Lowest_Number.py"} \ No newline at end of file diff --git a/Python_For_ML/Week_2/.cph/.H_Good_or_Bad.py_88a0e0c01f726cfd0f596b03ea47c684.prob b/Python_For_ML/Week_2/.cph/.H_Good_or_Bad.py_88a0e0c01f726cfd0f596b03ea47c684.prob new file mode 100644 index 0000000..d3642a8 --- /dev/null +++ b/Python_For_ML/Week_2/.cph/.H_Good_or_Bad.py_88a0e0c01f726cfd0f596b03ea47c684.prob @@ -0,0 +1 @@ +{"name":"H. Good or Bad","group":"Codeforces - Sheet #4 (Strings)","url":"https://codeforces.com/group/MWSDmqGsZm/contest/219856/problem/H","interactive":false,"memoryLimit":64,"timeLimit":2000,"tests":[{"id":1761808233352,"input":"2\n11111110\n10101010101010\n","output":"Bad\nGood\n"}],"testType":"single","input":{"type":"stdin"},"output":{"type":"stdout"},"languages":{"java":{"mainClass":"Main","taskClass":"HGoodOrBad"}},"batch":{"id":"af2f86b0-2fa6-4c4a-b5a0-05e4227859b3","size":1},"srcPath":"c:\\Users\\evan\\Documents\\GitHub\\Python-for-ML\\Python_For_ML\\Week_2\\H_Good_or_Bad.py"} \ No newline at end of file diff --git a/Python_For_ML/Week_2/.cph/.K_Sum_Digits.py_f0324f1f9aff5ef40385c974476287ae.prob b/Python_For_ML/Week_2/.cph/.K_Sum_Digits.py_f0324f1f9aff5ef40385c974476287ae.prob new file mode 100644 index 0000000..4713a13 --- /dev/null +++ b/Python_For_ML/Week_2/.cph/.K_Sum_Digits.py_f0324f1f9aff5ef40385c974476287ae.prob @@ -0,0 +1 @@ +{"name":"K. Sum Digits","group":"Codeforces - Sheet #3 (Arrays)","url":"https://codeforces.com/group/MWSDmqGsZm/contest/219774/problem/K","interactive":false,"memoryLimit":256,"timeLimit":2000,"tests":[{"id":1761809019557,"input":"5\n13305\n","output":"12\n"}],"testType":"single","input":{"type":"stdin"},"output":{"type":"stdout"},"languages":{"java":{"mainClass":"Main","taskClass":"KSumDigits"}},"batch":{"id":"a4b6c85e-edf2-40fd-a114-9ec6d26347f8","size":1},"srcPath":"c:\\Users\\evan\\Documents\\GitHub\\Python-for-ML\\Python_For_ML\\Week_2\\K_Sum_Digits.py"} \ No newline at end of file diff --git a/Python_For_ML/Week_2/.cph/.M_Replace_MinMax.py_ab051aff45073ea62d5b0e017ef9b7a1.prob b/Python_For_ML/Week_2/.cph/.M_Replace_MinMax.py_ab051aff45073ea62d5b0e017ef9b7a1.prob new file mode 100644 index 0000000..e75e4db --- /dev/null +++ b/Python_For_ML/Week_2/.cph/.M_Replace_MinMax.py_ab051aff45073ea62d5b0e017ef9b7a1.prob @@ -0,0 +1 @@ +{"name":"M. Replace MinMax","group":"Codeforces - Sheet #3 (Arrays)","url":"https://codeforces.com/group/MWSDmqGsZm/contest/219774/problem/M","interactive":false,"memoryLimit":256,"timeLimit":1000,"tests":[{"id":1761807345068,"input":"5\n4 1 3 10 8\n","output":"4 10 3 1 8\n"}],"testType":"single","input":{"type":"stdin"},"output":{"type":"stdout"},"languages":{"java":{"mainClass":"Main","taskClass":"MReplaceMinMax"}},"batch":{"id":"f766bddc-5db7-4e69-bf20-a7eb7ffd2aeb","size":1},"srcPath":"c:\\Users\\evan\\Documents\\GitHub\\Python-for-ML\\Python_For_ML\\Week_2\\M_Replace_MinMax.py"} \ No newline at end of file diff --git a/Python_For_ML/Week_2/.cph/.V_Replace_Word.py_9892a28033e432bdf31c8518c6d89b4f.prob b/Python_For_ML/Week_2/.cph/.V_Replace_Word.py_9892a28033e432bdf31c8518c6d89b4f.prob new file mode 100644 index 0000000..7234ef3 --- /dev/null +++ b/Python_For_ML/Week_2/.cph/.V_Replace_Word.py_9892a28033e432bdf31c8518c6d89b4f.prob @@ -0,0 +1 @@ +{"name":"V. Replace Word","group":"Codeforces - Sheet #4 (Strings)","url":"https://codeforces.com/group/MWSDmqGsZm/contest/219856/problem/V","interactive":false,"memoryLimit":256,"timeLimit":1000,"tests":[{"input":"BRITISHEGYPTGHANA\n","output":"BRITISH GHANA\n","id":1761807969897},{"id":1761807969898,"input":"ITALYKOREAEGYPTEGYPTALGERIAEGYPTZ\n","output":"ITALYKOREA ALGERIA Z\n"}],"testType":"single","input":{"type":"stdin"},"output":{"type":"stdout"},"languages":{"java":{"mainClass":"Main","taskClass":"VReplaceWord"}},"batch":{"id":"c1cf33c8-5043-45d9-b0df-2ba32c5e83f5","size":1},"srcPath":"c:\\Users\\evan\\Documents\\GitHub\\Python-for-ML\\Python_For_ML\\Week_2\\V_Replace_Word.py"} \ No newline at end of file diff --git a/Python_For_ML/Week_2/E_Lowest_Number.py b/Python_For_ML/Week_2/E_Lowest_Number.py new file mode 100644 index 0000000..cdfa6fa --- /dev/null +++ b/Python_For_ML/Week_2/E_Lowest_Number.py @@ -0,0 +1,8 @@ +n = int(input()) +arr = list(map(int, input().split())) + +lowest = min(arr) + +position = arr.index(lowest) + 1 + +print(lowest, position) \ No newline at end of file diff --git a/Python_For_ML/Week_2/H_Good_or_Bad.py b/Python_For_ML/Week_2/H_Good_or_Bad.py new file mode 100644 index 0000000..619a09c --- /dev/null +++ b/Python_For_ML/Week_2/H_Good_or_Bad.py @@ -0,0 +1,9 @@ +t = int(input()) + +for _ in range(t): + s = input().strip() + + if "010" in s or "101" in s: + print("Good") + else: + print("Bad") \ No newline at end of file diff --git a/Python_For_ML/Week_2/K_Sum_Digits.py b/Python_For_ML/Week_2/K_Sum_Digits.py new file mode 100644 index 0000000..a2b0d90 --- /dev/null +++ b/Python_For_ML/Week_2/K_Sum_Digits.py @@ -0,0 +1,9 @@ + +n = int(input()) +digits = input().strip() + + +total = sum(int(d) for d in digits) + + +print(total) diff --git a/Python_For_ML/Week_2/M_Replace_MinMax.py b/Python_For_ML/Week_2/M_Replace_MinMax.py new file mode 100644 index 0000000..bb7b445 --- /dev/null +++ b/Python_For_ML/Week_2/M_Replace_MinMax.py @@ -0,0 +1,13 @@ + +n = int(input()) +arr = list(map(int, input().split())) + +min_val = min(arr) +max_val = max(arr) + +min_index = arr.index(min_val) +max_index = arr.index(max_val) + +arr[min_index], arr[max_index] = arr[max_index], arr[min_index] + +print(*arr) \ No newline at end of file diff --git a/Python_For_ML/Week_2/Mod_7/7_6_Exceptions_and_why_handling_them.ipynb b/Python_For_ML/Week_2/Mod_7/7_6_Exceptions_and_why_handling_them.ipynb new file mode 100644 index 0000000..f5c9e63 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_7/7_6_Exceptions_and_why_handling_them.ipynb @@ -0,0 +1,29 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "WWAtgErWGQGA" + }, + "outputs": [], + "source": [ + "#theory class" + ] + } + ] +} \ No newline at end of file diff --git a/Python_For_ML/Week_2/Mod_7/7_7_Try_Except_,_Else_and_Finally_Block.ipynb b/Python_For_ML/Week_2/Mod_7/7_7_Try_Except_,_Else_and_Finally_Block.ipynb new file mode 100644 index 0000000..00d2e56 --- /dev/null +++ b/Python_For_ML/Week_2/Mod_7/7_7_Try_Except_,_Else_and_Finally_Block.ipynb @@ -0,0 +1,54 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "D0HnYrDaQBhu", + "outputId": "81357d35-1691-4641-9bca-b7252b36d4b9" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\n", + "Gpu is stopped\n" + ] + } + ], + "source": [ + " #model train\n", + "\n", + "\n", + "try:\n", + " file = open(\"./sample_data/data1.txt\",\"r\")\n", + "except Exception as e:\n", + " print(e)\n", + "else:\n", + " # model train\n", + " print(file.read())\n", + "finally:\n", + " print(\"Gpu is stopped\")\n", + "\n" + ] + } + ] +} \ No newline at end of file diff --git a/Python_For_ML/Week_2/Mod_8/.idea/CodeEpiphany/challenges.db b/Python_For_ML/Week_2/Mod_8/.idea/CodeEpiphany/challenges.db new file mode 100644 index 0000000000000000000000000000000000000000..c68dc8d7ebcca4ffe6c1a18a450b4c408dc25984 GIT binary patch literal 151552 zcmeI5-)|e)b;miPY)X`6?Z!!%tmDlADh13fvMM?d(s-{w@Y4W#B z{=`-!J2Xvfir5+RJ)JuDho_Daf$4>xQnBTQUoZUk!hbFNbf$OwSJR)QKb>kQ|E$a{ z{Blek|6f^y)%i@WT2%(`dD?ErXxh3#urv*~(Q|B)&~**ZZM4XrsXrK>JHKA5l zUcRzfQS;-4^99#vn|ew045wRCdu_`usqfUPH_ElU>h;RqXm+uvzFVzd+uo_Gwe5GS z8-p_^GPmBH#^I_sLJjnRWX)RmGs$?T-?rc@JHY#^28zq*~ zv@OqYy{gWCx_0NDp|9J0%Nv&LXs)-@Bi%JN$Y0&;8p9Hf=8^VzMLpZJJa<@P$+UFi z!4em-w64MTyn~*<7pPOEf_|>ncKu2N=i3U(vJ#eeIl;5?yreJHaP0f0emQUI`D}6U zW;T;EE-3?pX_de+(5S(r_@`WU&bJQ(tjc8?()ySwY%8IRS_lf2R3BmS@wM4Z?$RaY z<8O^|C%F#Um~$t{1P(*}Cb|hfw`@v_Q`>yP9*L z?i&XYD^X{pxqS0m{w>Te ze#avN4YhTn+v|`6D3us5O%B$v%_k6~iMj*bqs~8y!BNN(=mHqU}Mr`T*8YSMQAHrf5#vP>wT^tO(lMCGM&k-UsMLKGe2l`4(@9Q z4Y#>RBpZ9C>)8(ZNiPwkS<}9Oc%)jA%JAY#>h_i@7g$mYOK!hOg0{O1hD0iOM^mw`R>`}?%8EsUB33l@{Ko^TlrGnvhU}M zqVvWBquHlk*q{aC7=7i0Vbv?!+nbg0R)8g2tWF)zy?0SbG0$_q*CAK#4Xy8ys}6GA z(2yFru^J|m3u!e^K5{RUj~Bm6J{IQZ$!B_DIkoWj3tjSs4Fo^{1V8`;KmY_l00ck) z1V8`;zPJS5PR}W)PM>;xdj3siHodZPLG$QcP3P9l&D-Qxqv8KPN3O~L>38=&Ilpp# z?dUX9{J&UIj6QIxkas7XU4UDdV00@8p2!H?xfB*=900@8p2!H?~fam{k z0}ucK5C8!X009sH0T2KI5C8!XIQj%|{eSdrj2?mj2!H?xfB*=900@8p2!H?xfB>%l z;R7H50w4eaAOHd&00JNY0w4eaAaL{v;QIgQ+Za6r0T2KI5C8!X009sH0T2KI5C8$p z{|6rc0T2KI5C8!X009sH0T2KI5CDOrPk=uEpIZ1?YT?)90~-i{00@8p2!H?xfB*=9 z00@8p2!Oy*AdtQ=pSwNg{xsa0>3Yj@S_mAfU?efYfV zr(W6IzET{l&S!Gfsxo-*Fp8%BUO194-{8sOYTq@jwo067EnCQ{ zWFvOp*{W`BRPIzZN-U*mTb|*1Rh|EI?an`t>e;5{xx*4mrllJXmbi$ebq&7f9rXOYK%FWT^mDbg>sJ~Kk*%OCD`9z;6Z}5U zOZrj`$G&gsm-D8c&lU%7W-~eCk}@!uRtX#fjT%gff68U&eETrKs$8Zat&f?)wi3#y zg`iML^$`{yUz^S3E?rVS{?-_GlIxI-xqO05;4sv0qMHaDmhGulztds5Qvsr+>p2>+ zdqO`Nz5PI#7U(%3ed8cvCF+bcmv4S+JU{B4vV4h)#>#UC6;-qESibMHQ2`QK zH+kbe_-JOma;Hvz3lv3>`f|E!pA+ z-b^O9wx&Fp8+N7Up4RCYRy%qW3eski+$fL;qfS(*r*xp8wlVG#xRu-o!z#i(Q*X55 z?&ugT!!ay!ELHGx$D;_IbF~^O+J+Q*#yZx5i?jqzzn35&k}Y!c5|N}h#xt}Gr84O<)a1e zIwO4uNCv&i#IzXA_njul@S}kbU25r(RtY)ZaT}A_IjELem;~ZJJJ6}*WQ@f)nxq>Y z!!v>;Zhc`Y;orji;&(hUQ2W%4Zm&ZQpj2YKG&xwuHlIL{Ch87!k2-(Qf1%-+(G%~= zZNqU*(qE<=IXl(*9Z${YgCIu^oKwd#xyqt4I6LIHy8XUg)ybLb`*vfRCg7)ih32}5xsKacv%qB6}LFis_J#@ouI%dxcY)qPr zOL&o^2yKPy?-=A@z0dWdsl*RXrZc(qi^|}2<_E3L!F}zZ;Wqb(WMj{CJ=-Ba$q0NP z&6@TN#C>5&D#ME}soPtsTwqBpEV=zA3EJ*b@zI`=$z8mtd}uSDkk%+ooQnBMVoS^? z$$5b5(deQ#9L?HaqE}Mt);9Uu+1!j?3~+2q_xN~PQg4@Q>(|P)!rDsF&x)8L%s#)e zQViyJwemb@|#G%QxOwZskjP%f6p4iq0DkjAoyDVS^TkWAv31 zhE=a@Z*Nx0TLG4Au{w1;_ufS%#XQgbUdQx|hSvAURR_6lXh@CRSd}KH$rb$!y{f10 z|0@f>NRfZoKmY_l00ck)1V8`;KmY_l00ck)1db4ax%6qpzd>oIAUWf zeM)%a>k2srPm3mdY!C-S-22#5GR^GJ!Xpk!#>aP0 zv8UCK@3QeB>zOR=ONSavVyDk+rsT&(GS`;r8*#|VY$5ov_jzv7hfPU%nM4BJkB)yS zbNa1IGe27N9J5WHawj}f*81`cLAh4FO5ZM%3z0kZ41?Ap?@{^BT3G^p-Y0z{F1t(K zyRw)Jc@AMX9zAH;3BvRdHhECL(ldkLsSUWO_K5B5vss3u-~DviEIQu1GI;xCAl z#A{6K4JP*TQczKqy|+Y z^keD1l5F4ClBp%T*+Bg0)FA`WlzaMw z1JPvGRNW3>FtMx$SN8Iu1J_N`_6}J#CroLj_(CvE$Ge%6WzP!hY<%2ld|2tIwa0m&)<~ z|DU&e9MA^@KmY_l00ck)1V8`;KmY_l00f>r0bKt-d#0!n1V8`;KmY_l00ck)1V8`; zKmY`uHv+i+f8HzteLw&NKmY_l00ck)1V8`;KmY_l;Mo(v_5ZVHiW)%x1V8`;KmY_l z00ck)1V8`;K;U^Jfb0L~%_7hT1V8`;KmY_l00ck)1V8`;KmY`uJ%RbTOln5?acXAn z*gvK(C_g^=m-E_*e><@{_ZM^XCw32M@Ax;4Gl>trb2^hddscbeW|J{$Z0>ePtorQ^ z|9&Yp)#B1{_L4s*buf1*o3&XoEjFM0nXF6cc$J>r+`C0qY_@bUvp>((`*iwR+w${* zdH;Ft(1iA*GjDS-QiZX;M;0g+lf#dh7=Du3vxj>;ZeH`^qmwUXa<9LxJh>i+E0%~2 zDiaAa33x@m;2WFM{;AX!HI36-7>$@jERa5;>1UkoTaPUF8n<@LW#lt~`_m4yDTxy% z3y*ola4p&5lVe}c`-)>hP4d zk!aKi7QKknI(AxiNdZ29x<;2Qiz{4$e*6CB4@0taZD-wf9HZ%Rq0#I*S)QRumS%pbgXGd9D{J!WsmX>WRwxv!W1P7{hy^7D)qSX5+1$QT94x+^$z8sz3~nYfGW7>ieMtH@CeVe5QaQWNdoYQmyB7Lsfg$Qhuq^pHVA+K2!H?xfB*=900@8p2!H?x903Bj{yzdn zL>E8+1V8`;KmY_l00ck)1V8`;K;RGpxc)x`5VAo41V8`;KmY_l00ck)1V8`;K;Q@v zpx6IX3qMOO{F;1V0|5{K0T2KI5C8!X009sH0T2KI5I711ve|U%CBGwSC7n8vr9WOc z3SC1VKmY_l00ck)1V8`;KmY_l00ck)1d<5g{r@B~NCyEB009sH0T2KI5C8!X009sH zfulo!KL1x1evu;ouz>&wfB*=900@8p2!H?xfB*=900$AOHd&00JNY0w4eaAOHd&00IdF==J|>x}TapmhPYU&+PBdemc7~^A9uMoc^lL+Lt6sfYsj0)+ zq(oLFo7VCSM>Q?ia6Fb^TO+dBU88MUESC!sdCwjZYqUJK;Mn&~y`<7V-E6hYX20Vd zlvH2QDoJkImS?yg+4cA8rq?k-5lc57lvGRWk~EKHv6iW_V>frtc4)=7`nz4zrT3ah z6HixkJy1;*we1ivRO^=Jj#MrZeVNJHYMIWEjw(xvw9S5thF!ZuZk?^$eakDd7Vc@C zzTv6`%ea5eB$`FPqsVExz&@B)Gr9G3W$=op5r+}Z;2XfDmTQn7Eweo)>t*3m3Yj@S_mAfVNUQvCwTEDivQ&(%-?^ZVkFD_Wpn#V@uQP@HpqT-HF1#XqR(R7iS`o*na)hc z2bpek49{Q*zu_PoR)gBFq&}meH<=qhqwyJxvxxgoGV~@>(jT;9C_S^Gm*=L;msGo> zvq2dBjt)YaE(RePtMsQo=txkB{PJU9RGh~_n!;GedQ4L#v5_VVda*Fb8WuSb)X@Th z5>1muyAcJ3=(2L7!7WH0YBm<+m>!Wp_h#0x^uhdZ$%2*`dy=3f$$Cu;(Rk33NKO#6 zmSsUJR@G3@lI6WRfkqPtt-<1JncU^e%HU=!kjC0I^#`(m(IDwd6X-(3@&%Wi0TBNs z=L%hNq;6YwDH=qh*~Q^dKlf@T_tsm(p+2S|iL07aMVj%-1Ugc=`;+k_oDP*Rpu(PvO-P)+!sci7m zkw|=C55&Xt6T1d+rB zVnJl2@NhVh3MAJ}i_0~SoK+3i>Dl{+MNT{}=jnNXqjmEUyI9`k;KWC`a6G@k4#Su8 zrk>9hKYZbpOz!MiK(%a7wfdb7a|ulM!?F)G?~%&z7fsQbpju%ps!fAi0wxJ2N(BA0&GD|hPjTj&zOM^F1{me|IM zGMA4^#@nRsFLD#wq~jtG5j*lW*}xGZ;#)2%22E^W#jps8&@)Mmv@+fUk?p%CZ!OH0 zjVf{K$}8|CV%10LkB=$8Gm-j7Mimi>=^wu!kyj8?o`{6?N5__5R;5>r)IqaF%>R!Y z8Xy1yAOHd&00JNY0w4eaAOHd&aO4PJ{{JIqQgjFeKmY_l00ck)1V8`;KmY_l00a&v zfdBu0I3q}a00@8p2!H?xfB*=900@8p2!O!nodD+l|GZle`hx%nfB*=900@8p2!H?x zfB*=9fSkba{QpzO&!tZMIr+c_0w4eaAOHeV0zZ7e$R=g{)9)uv%Ge*CCrM1AlsGA4 zpG|wjCuQvS$lPI=lrcJ&QRxdkDPwewMn35pot#iiboIral#$Nngc*P%(+huoW&rjl z3MSLR`I9fx>4E)U+|AiU!f`*RGJK*}y2qwS;}ejHX}xH&n9VF6LZUgrJY{^cVo`w4 zAjZ=qbDoX16r0z~FE>1wStNO=+1P}mOugX=M={N|u Date: Fri, 31 Oct 2025 15:22:19 +0600 Subject: [PATCH 50/78] Friday --- .idea/.gitignore | 8 + .idea/Python-for-ML.iml | 8 + .../inspectionProfiles/profiles_settings.xml | 6 + .idea/misc.xml | 4 + .idea/modules.xml | 8 + .idea/vcs.xml | 7 + Python_For_ML/.idea/.gitignore | 8 + Python_For_ML/.idea/Python_For_ML.iml | 8 + .../inspectionProfiles/profiles_settings.xml | 6 + Python_For_ML/.idea/misc.xml | 7 + Python_For_ML/.idea/modules.xml | 8 + Python_For_ML/.idea/vcs.xml | 6 + Python_For_ML/Assignment_1.ipynb | 233 ++++++++++ ...s.py_178566f03b3691bd41e424db21cc2dcb.prob | 1 + ...s.py_9f2910e828ae435619ac53fffdc6d810.prob | 1 + .../Conceptual Session 01/.idea/.gitignore | 8 + .../.idea/Conceptual Session 01.iml | 8 + .../inspectionProfiles/profiles_settings.xml | 6 + .../Conceptual Session 01/.idea/misc.xml | 7 + .../Conceptual Session 01/.idea/modules.xml | 8 + .../Conceptual Session 01/.idea/vcs.xml | 6 + .../Conceptual Session 01/Session 01.ipynb | 130 ++++++ Python_For_ML/Week_2/J_Count_Letters.py | 15 + Python_For_ML/Week_2/Tuples.py | 7 + .../10.2 ndarray and its attributes.ipynb | 37 ++ Python_For_ML/extra_class.ipynb | 411 ++++++++++++++++++ 26 files changed, 962 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/Python-for-ML.iml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 Python_For_ML/.idea/.gitignore create mode 100644 Python_For_ML/.idea/Python_For_ML.iml create mode 100644 Python_For_ML/.idea/inspectionProfiles/profiles_settings.xml create mode 100644 Python_For_ML/.idea/misc.xml create mode 100644 Python_For_ML/.idea/modules.xml create mode 100644 Python_For_ML/.idea/vcs.xml create mode 100644 Python_For_ML/Assignment_1.ipynb create mode 100644 Python_For_ML/Week_2/.cph/.J_Count_Letters.py_178566f03b3691bd41e424db21cc2dcb.prob create mode 100644 Python_For_ML/Week_2/.cph/.Tuples.py_9f2910e828ae435619ac53fffdc6d810.prob create mode 100644 Python_For_ML/Week_2/Conceptual Session 01/.idea/.gitignore create mode 100644 Python_For_ML/Week_2/Conceptual Session 01/.idea/Conceptual Session 01.iml create mode 100644 Python_For_ML/Week_2/Conceptual Session 01/.idea/inspectionProfiles/profiles_settings.xml create mode 100644 Python_For_ML/Week_2/Conceptual Session 01/.idea/misc.xml create mode 100644 Python_For_ML/Week_2/Conceptual Session 01/.idea/modules.xml create mode 100644 Python_For_ML/Week_2/Conceptual Session 01/.idea/vcs.xml create mode 100644 Python_For_ML/Week_2/Conceptual Session 01/Session 01.ipynb create mode 100644 Python_For_ML/Week_2/J_Count_Letters.py create mode 100644 Python_For_ML/Week_2/Tuples.py create mode 100644 Python_For_ML/Week_3/Mod_10/10.2 ndarray and its attributes.ipynb create mode 100644 Python_For_ML/extra_class.ipynb diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..1c2fda5 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/Python-for-ML.iml b/.idea/Python-for-ML.iml new file mode 100644 index 0000000..a80cbb1 --- /dev/null +++ b/.idea/Python-for-ML.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..5403b9e --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..5fda5ab --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..6a392ba --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/.idea/.gitignore b/Python_For_ML/.idea/.gitignore new file mode 100644 index 0000000..1c2fda5 --- /dev/null +++ b/Python_For_ML/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Python_For_ML/.idea/Python_For_ML.iml b/Python_For_ML/.idea/Python_For_ML.iml new file mode 100644 index 0000000..a80cbb1 --- /dev/null +++ b/Python_For_ML/.idea/Python_For_ML.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/.idea/inspectionProfiles/profiles_settings.xml b/Python_For_ML/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/Python_For_ML/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/Python_For_ML/.idea/misc.xml b/Python_For_ML/.idea/misc.xml new file mode 100644 index 0000000..f8a22e9 --- /dev/null +++ b/Python_For_ML/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/.idea/modules.xml b/Python_For_ML/.idea/modules.xml new file mode 100644 index 0000000..43a0bb3 --- /dev/null +++ b/Python_For_ML/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/.idea/vcs.xml b/Python_For_ML/.idea/vcs.xml new file mode 100644 index 0000000..2e3f692 --- /dev/null +++ b/Python_For_ML/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Assignment_1.ipynb b/Python_For_ML/Assignment_1.ipynb new file mode 100644 index 0000000..e684849 --- /dev/null +++ b/Python_For_ML/Assignment_1.ipynb @@ -0,0 +1,233 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-10-30T13:14:39.962846Z", + "start_time": "2025-10-30T13:14:28.132959Z" + } + }, + "source": [ + "#1\n", + "\n", + "\n", + "array = list(map(int, input().split()))\n", + "\n", + "even_nums = list(filter(lambda x: x % 2 == 0, array))\n", + "\n", + "print(\"Only Even Numbers\",even_nums)\n" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Only Even Numbers [6, 8, 10]\n" + ] + } + ], + "execution_count": 6 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "", + "id": "6a360131ffc927a4" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T13:15:59.017919Z", + "start_time": "2025-10-30T13:15:54.337753Z" + } + }, + "cell_type": "code", + "source": [ + "#2\n", + "def safe_divide(a, b):\n", + " try:\n", + " result = a / b\n", + " return result\n", + " except ZeroDivisionError:\n", + " return \"Division by zero\"\n", + "\n", + "\n", + "a, b = map(int, input().split())\n", + "\n", + "\n", + "print(safe_divide(a, b))\n" + ], + "id": "99cb683689bdbb56", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Division by zero\n" + ] + } + ], + "execution_count": 7 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T14:39:34.269634Z", + "start_time": "2025-10-30T14:39:29.832975Z" + } + }, + "cell_type": "code", + "source": [ + "import math\n", + "\n", + "class Shape:\n", + " def area(self):\n", + " return 0\n", + "\n", + "class Rectangle(Shape):\n", + " def __init__(self, w, h):\n", + " self.w = w\n", + " self.h = h\n", + "\n", + " def area(self):\n", + " return self.w * self.h\n", + "\n", + "class Circle(Shape):\n", + " def __init__(self, r):\n", + " self.r = r\n", + "\n", + " def area(self):\n", + " return math.pi * self.r * self.r\n", + "\n", + "\n", + "data = input().split()\n", + "shape_type = data[0]\n", + "\n", + "if shape_type == \"Rectangle\":\n", + " w = float(data[1])\n", + " h = float(data[2])\n", + " obj = Rectangle(w, h)\n", + "\n", + "\n", + " print(\"The rectangle area of given data:{:.2f}\".format(obj.area()))\n", + "\n", + "elif shape_type == \"Circle\":\n", + " r = float(data[1])\n", + " obj = Circle(r)\n", + "\n", + "\n", + " print(\" The circle area of given data: {:.2f}\".format(obj.area()))\n", + "\n", + "else:\n", + " print(\"Unknown Shape\")\n" + ], + "id": "7dd1c5255eee6d4d", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The rectangle area of given data:50.00\n" + ] + } + ], + "execution_count": 29 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T14:12:25.090600Z", + "start_time": "2025-10-30T14:12:17.168443Z" + } + }, + "cell_type": "code", + "source": [ + "\n", + "sentence = input().split()\n", + "\n", + "longest = sentence[0]\n", + "\n", + "\n", + "for word in sentence:\n", + " if len(word) > len(longest):\n", + " longest = word\n", + "\n", + "print(longest)\n" + ], + "id": "6ba8ea1347d539af", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "tie\n" + ] + } + ], + "execution_count": 16 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T14:38:18.645881Z", + "start_time": "2025-10-30T14:38:14.815180Z" + } + }, + "cell_type": "code", + "source": [ + "import math\n", + "\n", + "\n", + "my_number = int(input().strip())\n", + "original = my_number\n", + "\n", + "def is_strong(number):\n", + " digit_sum = 0\n", + " for digit in str(number):\n", + " digit_sum += math.factorial(int(digit))\n", + " return digit_sum == original\n", + "\n", + "\n", + "if is_strong(my_number):\n", + " print(\"Strong Number\")\n", + "else:\n", + " print(\"Not Strong Number\")\n" + ], + "id": "f8d51c72a722274f", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Not Strong Number\n" + ] + } + ], + "execution_count": 26 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_2/.cph/.J_Count_Letters.py_178566f03b3691bd41e424db21cc2dcb.prob b/Python_For_ML/Week_2/.cph/.J_Count_Letters.py_178566f03b3691bd41e424db21cc2dcb.prob new file mode 100644 index 0000000..ccbfa4c --- /dev/null +++ b/Python_For_ML/Week_2/.cph/.J_Count_Letters.py_178566f03b3691bd41e424db21cc2dcb.prob @@ -0,0 +1 @@ +{"name":"J. Count Letters","group":"Codeforces - Sheet #4 (Strings)","url":"https://codeforces.com/group/MWSDmqGsZm/contest/219856/problem/J","interactive":false,"memoryLimit":64,"timeLimit":2000,"tests":[{"input":"aaabbc\n","output":"a : 3\nb : 2\nc : 1\n","id":1761838113430},{"id":1761838113431,"input":"regff\n","output":"e : 1\nf : 2\ng : 1\nr : 1\n"}],"testType":"single","input":{"type":"stdin"},"output":{"type":"stdout"},"languages":{"java":{"mainClass":"Main","taskClass":"JCountLetters"}},"batch":{"id":"50922d79-8488-4d3d-9920-7257987cd567","size":1},"srcPath":"c:\\Users\\evan\\Documents\\GitHub\\Python-for-ML\\Python_For_ML\\Week_2\\J_Count_Letters.py"} \ No newline at end of file diff --git a/Python_For_ML/Week_2/.cph/.Tuples.py_9f2910e828ae435619ac53fffdc6d810.prob b/Python_For_ML/Week_2/.cph/.Tuples.py_9f2910e828ae435619ac53fffdc6d810.prob new file mode 100644 index 0000000..63f5464 --- /dev/null +++ b/Python_For_ML/Week_2/.cph/.Tuples.py_9f2910e828ae435619ac53fffdc6d810.prob @@ -0,0 +1 @@ +{"name":"Tuples","group":"HackerRank - Python - Basic Data Types","url":"https://www.hackerrank.com/challenges/python-tuples/problem","interactive":false,"memoryLimit":512,"timeLimit":4000,"tests":[{"id":1761888571670,"input":"2\n1 2\n","output":"3713081631934410656\n"}],"testType":"single","input":{"type":"stdin"},"output":{"type":"stdout"},"languages":{"java":{"mainClass":"Main","taskClass":"Tuples"}},"batch":{"id":"45211a38-aff7-4b86-8392-0bef24df6335","size":1},"srcPath":"c:\\Users\\evan\\Documents\\GitHub\\Python-for-ML\\Python_For_ML\\Week_2\\Tuples.py"} \ No newline at end of file diff --git a/Python_For_ML/Week_2/Conceptual Session 01/.idea/.gitignore b/Python_For_ML/Week_2/Conceptual Session 01/.idea/.gitignore new file mode 100644 index 0000000..1c2fda5 --- /dev/null +++ b/Python_For_ML/Week_2/Conceptual Session 01/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Python_For_ML/Week_2/Conceptual Session 01/.idea/Conceptual Session 01.iml b/Python_For_ML/Week_2/Conceptual Session 01/.idea/Conceptual Session 01.iml new file mode 100644 index 0000000..a80cbb1 --- /dev/null +++ b/Python_For_ML/Week_2/Conceptual Session 01/.idea/Conceptual Session 01.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_2/Conceptual Session 01/.idea/inspectionProfiles/profiles_settings.xml b/Python_For_ML/Week_2/Conceptual Session 01/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/Python_For_ML/Week_2/Conceptual Session 01/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_2/Conceptual Session 01/.idea/misc.xml b/Python_For_ML/Week_2/Conceptual Session 01/.idea/misc.xml new file mode 100644 index 0000000..f8a22e9 --- /dev/null +++ b/Python_For_ML/Week_2/Conceptual Session 01/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_2/Conceptual Session 01/.idea/modules.xml b/Python_For_ML/Week_2/Conceptual Session 01/.idea/modules.xml new file mode 100644 index 0000000..625d41f --- /dev/null +++ b/Python_For_ML/Week_2/Conceptual Session 01/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_2/Conceptual Session 01/.idea/vcs.xml b/Python_For_ML/Week_2/Conceptual Session 01/.idea/vcs.xml new file mode 100644 index 0000000..17fbd1b --- /dev/null +++ b/Python_For_ML/Week_2/Conceptual Session 01/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_2/Conceptual Session 01/Session 01.ipynb b/Python_For_ML/Week_2/Conceptual Session 01/Session 01.ipynb new file mode 100644 index 0000000..1d1b260 --- /dev/null +++ b/Python_For_ML/Week_2/Conceptual Session 01/Session 01.ipynb @@ -0,0 +1,130 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-10-31T06:09:15.107782Z", + "start_time": "2025-10-31T06:09:15.104390Z" + } + }, + "source": [ + "#Function\n", + "\n", + "def greeting(name1, name2):\n", + " print(\"\",name1,name2)\n", + "\n", + "greeting(\"Name:Imran\",\"No name\")" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Name:Imran No name\n" + ] + } + ], + "execution_count": 9 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-31T06:16:36.810191Z", + "start_time": "2025-10-31T06:16:36.806839Z" + } + }, + "cell_type": "code", + "source": [ + "def info(name, age, country=\"Bangladesh\"):\n", + " print(f\"{name}, {age}, {country}\")\n", + "\n", + "info(name=\"Imran\", age=33)" + ], + "id": "acaeed1d9b68052e", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Imran,33,Bangladesh\n" + ] + } + ], + "execution_count": 16 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "def add(*a):\n", + " print(type(a))\n", + " print(a)\n", + "\n", + "add(1,2,3,4,5,6,7,8)\n" + ], + "id": "7fe23e1992acb36" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-31T06:31:38.857863Z", + "start_time": "2025-10-31T06:31:38.853608Z" + } + }, + "cell_type": "code", + "source": [ + "def info(**k):\n", + " print(type(k))\n", + " print(f\"{k['name']}, {k['age']}, {k['country']}\")\n", + "\n", + "info(name=\"Imran\", age=33, country=\"Bangladesh\")" + ], + "id": "8813dd2b2692de1c", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Imran, 33, Bangladesh\n" + ] + } + ], + "execution_count": 20 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "#14 min", + "id": "f11fc85f47b55ae" + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_2/J_Count_Letters.py b/Python_For_ML/Week_2/J_Count_Letters.py new file mode 100644 index 0000000..a905996 --- /dev/null +++ b/Python_For_ML/Week_2/J_Count_Letters.py @@ -0,0 +1,15 @@ + +s = input().strip() + + +freq = {} + +for ch in s: + if ch in freq: + freq[ch] += 1 + else: + freq[ch] = 1 + + +for ch in sorted(freq.keys()): + print(f"{ch} : {freq[ch]}") diff --git a/Python_For_ML/Week_2/Tuples.py b/Python_For_ML/Week_2/Tuples.py new file mode 100644 index 0000000..3136470 --- /dev/null +++ b/Python_For_ML/Week_2/Tuples.py @@ -0,0 +1,7 @@ +if __name__ == '__main__': + n = int(raw_input().strip()) + integer_list = map(int, raw_input().split()) + print hash(tuple(integer_list)) + + +#it works in python 2 \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_10/10.2 ndarray and its attributes.ipynb b/Python_For_ML/Week_3/Mod_10/10.2 ndarray and its attributes.ipynb new file mode 100644 index 0000000..54f657b --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/10.2 ndarray and its attributes.ipynb @@ -0,0 +1,37 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "initial_id", + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/extra_class.ipynb b/Python_For_ML/extra_class.ipynb new file mode 100644 index 0000000..179a741 --- /dev/null +++ b/Python_For_ML/extra_class.ipynb @@ -0,0 +1,411 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-10-30T11:19:54.475894Z", + "start_time": "2025-10-30T11:19:47.322831Z" + } + }, + "source": [ + "n= int(input())\n", + "print(type(n))\n", + "\n", + "arr = list(map(lambda x: int(x), input().split() ))\n", + "\n", + "print(arr)" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "[1, 2, 3, 4, 5]\n" + ] + } + ], + "execution_count": 6 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T11:21:54.779075Z", + "start_time": "2025-10-30T11:21:48.382373Z" + } + }, + "cell_type": "code", + "source": [ + "n= int(input())\n", + "print(type(n))\n", + "\n", + "arr = list(map( int, input().split() ))\n", + "\n", + "print(arr)" + ], + "id": "1a400c68bc6ec73a", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "[1, 2, 3, 4, 5]\n" + ] + } + ], + "execution_count": 7 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T11:38:19.888914Z", + "start_time": "2025-10-30T11:38:17.675282Z" + } + }, + "cell_type": "code", + "source": [ + "row = input() # \"35\"\n", + "x = int(row[0]) # 3\n", + "y = int(row[1]) # 5\n", + "print(x, y)" + ], + "id": "47f6836b172b7672", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3 3\n" + ] + } + ], + "execution_count": 27 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T11:36:38.785198Z", + "start_time": "2025-10-30T11:36:35.124991Z" + } + }, + "cell_type": "code", + "source": [ + "# Example input you should type:\n", + "# 3 7\n", + "row, col = input().split() # splits \"3 7\" → ['3', '7']\n", + "row = int(row) # → 3\n", + "col = int(col) # → 7\n", + "print(row, col) # 3 7" + ], + "id": "c09964d13fbeb4e3", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2 3\n" + ] + } + ], + "execution_count": 18 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T11:43:07.080041Z", + "start_time": "2025-10-30T11:42:45.004298Z" + } + }, + "cell_type": "code", + "source": [ + "row, col = map(int, input().split())\n", + "\n", + "matrix = []\n", + "for _ in range(row):\n", + " arr = list(map(int, input().split()))\n", + " matrix.append(arr)\n", + " print(matrix)\n" + ], + "id": "413bb65bebc8b7c5", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1, 2, 3]]\n", + "[[1, 2, 3], [4, 5, 6]]\n", + "[[1, 2, 3], [4, 5, 6], [7, 8, 9]]\n" + ] + } + ], + "execution_count": 30 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T11:48:33.831111Z", + "start_time": "2025-10-30T11:48:15.099694Z" + } + }, + "cell_type": "code", + "source": [ + "str = input().split()\n", + "print(str)\n", + "\n", + "if str[0] == 'Student':\n", + " print(\"Type:\", str[0])\n", + " print(\"Name:\", str[1])\n", + " print(\"Roll:\", str[2])\n", + " print(\"Class:\", str[3])\n", + "else:\n", + " print(\"Type:\", str[0])\n", + " print(\"Name:\", str[1])\n", + " print(\"Teaching Class:\", str[2])" + ], + "id": "794c1af7e1488462", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Teacher', 'Imran', 'CSE']\n", + "Type: Teacher\n", + "Name: Imran\n", + "Teaching Class: CSE\n" + ] + } + ], + "execution_count": 32 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "section 1", + "id": "b37d37f496ae8aaa" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T11:51:29.982778Z", + "start_time": "2025-10-30T11:51:22.074367Z" + } + }, + "cell_type": "code", + "source": [ + "#1\n", + "str = input().split()\n", + "\n", + "for s in str:\n", + " print(s,\"lengths are:\", len(s))" + ], + "id": "ae293a94010bfd81", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ert\n" + ] + } + ], + "execution_count": 33 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T11:56:53.613821Z", + "start_time": "2025-10-30T11:56:38.526862Z" + } + }, + "cell_type": "code", + "source": [ + "#2\n", + "str = input().split()\n", + "\n", + "ans = len(str[0])\n", + "for s in str:\n", + " if ans > len(s):\n", + " ans = len(s)\n", + "print(ans)" + ], + "id": "45e621e1459333d3", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4\n" + ] + } + ], + "execution_count": 38 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T11:58:39.517494Z", + "start_time": "2025-10-30T11:58:27.679901Z" + } + }, + "cell_type": "code", + "source": [ + "#3\n", + "str = input().split()\n", + "\n", + "for s in str:\n", + " if s[0].isupper() and len(s)>=5:\n", + " print(s)\n" + ], + "id": "b8609bd329a991f5", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Word\n", + "Bord\n" + ] + } + ], + "execution_count": 39 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "section 2", + "id": "bf521896f0c9e43c" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T12:11:40.971708Z", + "start_time": "2025-10-30T12:11:34.950774Z" + } + }, + "cell_type": "code", + "source": [ + "num = int(input())\n", + "ans = 1\n", + "\n", + "while(num!=0):\n", + " r = num%10\n", + " num = int(num/10)\n", + " ans = ans * r\n", + "print(ans)" + ], + "id": "39ca39985115dedc", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15\n" + ] + } + ], + "execution_count": 46 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "section 3", + "id": "c4ca75920446b382" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-30T12:41:57.982331Z", + "start_time": "2025-10-30T12:41:49.252023Z" + } + }, + "cell_type": "code", + "source": [ + "# Base class\n", + "class Calculator:\n", + " def __init__(self, a, b):\n", + " self.a = a\n", + " self.b = b\n", + "\n", + " def compute(self):\n", + " print(\"Not choosing the calculation type\")\n", + "\n", + "\n", + "class Addition(Calculator):\n", + " def __init__(self, a, b):\n", + " super().__init__(a, b)\n", + "\n", + " def compute(self):\n", + " return self.a + self.b\n", + "\n", + "\n", + "class Multiplication(Calculator):\n", + " def __init__(self, a, b):\n", + " super().__init__(a, b)\n", + "\n", + " def compute(self):\n", + " if self.a < 0 or self.b <0:\n", + " raise ValueError(\"The Multiplication not possible with negative value!\")\n", + " return self.a * self.b\n", + "\n", + "\n", + "str = input().split()\n", + "\n", + "print(str)\n", + "\n", + "try:\n", + " if str[0]=='Addition':\n", + " a = int(str[1])\n", + " b = int(str[2])\n", + " obj = Addition(a, b)\n", + " print(\"The Addition is:\", obj.compute())\n", + "\n", + " elif str[0]=='Multiplication':\n", + " a = int(str[1])\n", + " b = int(str[2])\n", + " obj = Multiplication(a, b)\n", + " print(\"The Multiplication is:\", obj.compute())\n", + " else:\n", + " a = int(str[0])\n", + " b = int(str[1])\n", + " # Calculator(a, b).compute()\n", + " obj = Calculator(a,b)\n", + " obj.compute()\n", + "\n", + "except ValueError as e:\n", + " print(f\"Error: {e}\")\n", + "\n", + "\n", + "\n", + "print(\"hello wordl\")" + ], + "id": "4bee17e755a75959", + "outputs": [], + "execution_count": 47 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 9307fa486a2de8267d56e0173d936f7218a52b70 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Fri, 31 Oct 2025 15:27:53 +0600 Subject: [PATCH 51/78] Test commit on master --- test.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 test.txt diff --git a/test.txt b/test.txt new file mode 100644 index 0000000..ce01362 --- /dev/null +++ b/test.txt @@ -0,0 +1 @@ +hello From b41ff7ee1416ecd559f1d335e29ee09ad14df646 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Fri, 31 Oct 2025 16:41:58 +0600 Subject: [PATCH 52/78] 10.2 ndarray and its attributes.ipynb --- Python_For_ML/Week_3/Mod_10/.idea/.gitignore | 8 + Python_For_ML/Week_3/Mod_10/.idea/Mod_10.iml | 8 + .../inspectionProfiles/profiles_settings.xml | 6 + Python_For_ML/Week_3/Mod_10/.idea/misc.xml | 7 + Python_For_ML/Week_3/Mod_10/.idea/modules.xml | 8 + Python_For_ML/Week_3/Mod_10/.idea/vcs.xml | 6 + .../10.2 ndarray and its attributes.ipynb | 229 +++++++++++++++++- 7 files changed, 267 insertions(+), 5 deletions(-) create mode 100644 Python_For_ML/Week_3/Mod_10/.idea/.gitignore create mode 100644 Python_For_ML/Week_3/Mod_10/.idea/Mod_10.iml create mode 100644 Python_For_ML/Week_3/Mod_10/.idea/inspectionProfiles/profiles_settings.xml create mode 100644 Python_For_ML/Week_3/Mod_10/.idea/misc.xml create mode 100644 Python_For_ML/Week_3/Mod_10/.idea/modules.xml create mode 100644 Python_For_ML/Week_3/Mod_10/.idea/vcs.xml diff --git a/Python_For_ML/Week_3/Mod_10/.idea/.gitignore b/Python_For_ML/Week_3/Mod_10/.idea/.gitignore new file mode 100644 index 0000000..1c2fda5 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Python_For_ML/Week_3/Mod_10/.idea/Mod_10.iml b/Python_For_ML/Week_3/Mod_10/.idea/Mod_10.iml new file mode 100644 index 0000000..a80cbb1 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/.idea/Mod_10.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_10/.idea/inspectionProfiles/profiles_settings.xml b/Python_For_ML/Week_3/Mod_10/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_10/.idea/misc.xml b/Python_For_ML/Week_3/Mod_10/.idea/misc.xml new file mode 100644 index 0000000..f8a22e9 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_10/.idea/modules.xml b/Python_For_ML/Week_3/Mod_10/.idea/modules.xml new file mode 100644 index 0000000..d4f29ff --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_10/.idea/vcs.xml b/Python_For_ML/Week_3/Mod_10/.idea/vcs.xml new file mode 100644 index 0000000..17fbd1b --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_10/10.2 ndarray and its attributes.ipynb b/Python_For_ML/Week_3/Mod_10/10.2 ndarray and its attributes.ipynb index 54f657b..edfb63a 100644 --- a/Python_For_ML/Week_3/Mod_10/10.2 ndarray and its attributes.ipynb +++ b/Python_For_ML/Week_3/Mod_10/10.2 ndarray and its attributes.ipynb @@ -2,15 +2,234 @@ "cells": [ { "cell_type": "code", - "execution_count": null, "id": "initial_id", "metadata": { - "collapsed": true + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-10-31T09:32:22.102554Z", + "start_time": "2025-10-31T09:32:22.094694Z" + } }, - "outputs": [], "source": [ - "" - ] + "from numpy.conftest import dtype\n", + "\n", + "arr = [1,2,3]\n", + "\n", + "print(arr * 5)\n", + "\n", + "arr = [x*5 for x in arr]\n", + "print(arr)\n" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3]\n" + ] + } + ], + "execution_count": 1 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-31T09:53:41.229420Z", + "start_time": "2025-10-31T09:53:41.120287Z" + } + }, + "cell_type": "code", + "source": [ + "import numpy as np\n", + "\n", + "arr = np.array([1,2,3])\n", + "arr = arr*5\n", + "print(arr)\n" + ], + "id": "8936b7f74042081d", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 5 10 15]\n" + ] + } + ], + "execution_count": 2 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-31T10:24:04.666556Z", + "start_time": "2025-10-31T10:24:04.656323Z" + } + }, + "cell_type": "code", + "source": [ + "#Ndarray\n", + "\n", + "arr1 = np.array([1,2,3,4,5])\n", + "#print(type(arr1))\n", + "print(arr1.ndim)\n", + "\n", + "\n", + "#2d array\n", + "\n", + "arr2 = np.array([[1,2,3],\n", + " [4,5,6]])\n", + "\n", + "print(arr2.ndim)\n", + "\n", + "\n", + "#3d array\n", + "\n", + "arr3 = np.array([\n", + " [ [1,2,3],\n", + " [4,5,6] ],\n", + "\n", + " [ [1,2,3],\n", + " [4,5,6] ]\n", + "\n", + "])\n", + "\n", + "print(arr3.ndim)" + ], + "id": "11829fa847ca67af", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "2\n", + "3\n" + ] + } + ], + "execution_count": 7 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-31T10:36:34.345036Z", + "start_time": "2025-10-31T10:36:34.340935Z" + } + }, + "cell_type": "code", + "source": [ + "print(arr1.ndim)\n", + "print(arr2.ndim)\n", + "print(arr3.ndim)\n", + "\n", + "#shape\n", + "print(arr1.shape)\n", + "print(arr2.shape)\n", + "print(arr3.shape)\n", + "\n", + "#data type\n", + "print(arr1.dtype)\n", + "print(arr2.dtype)\n", + "print(arr3.dtype)\n", + "\n", + "#size\n", + "print(arr1.size)\n", + "print(arr2.size)\n", + "print(arr3.size)\n", + "\n" + ], + "id": "264915590a0b7a53", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "2\n", + "3\n", + "(5,)\n", + "(2, 3)\n", + "(2, 2, 3)\n", + "int64\n", + "int64\n", + "int64\n", + "5\n", + "6\n", + "12\n" + ] + } + ], + "execution_count": 11 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-10-31T10:37:06.628045Z", + "start_time": "2025-10-31T10:37:06.621496Z" + } + }, + "cell_type": "code", + "source": [ + "#Grok\n", + "\n", + "import numpy as np\n", + "\n", + "# 1D Array\n", + "arr1 = np.array([1, 2, 3, 4, 5])\n", + "print(\"arr1 (1D):\")\n", + "print(\" ndim :\", arr1.ndim) # 1\n", + "print(\" shape:\", arr1.shape) # (5,)\n", + "print(\" dtype:\", arr1.dtype) # int64\n", + "print(\" size :\", arr1.size) # 5\n", + "print()\n", + "\n", + "# 2D Array\n", + "arr2 = np.array([[1, 2, 3], [4, 5, 6]])\n", + "print(\"arr2 (2D):\")\n", + "print(\" ndim :\", arr2.ndim) # 2\n", + "print(\" shape:\", arr2.shape) # (2, 3)\n", + "print(\" dtype:\", arr2.dtype) # int64\n", + "print(\" size :\", arr2.size) # 6\n", + "print()\n", + "\n", + "# 3D Array\n", + "arr3 = np.array([\n", + " [[1, 2, 3], [4, 5, 6]],\n", + " [[1, 2, 3], [4, 5, 6]]\n", + "])\n", + "print(\"arr3 (3D):\")\n", + "print(\" ndim :\", arr3.ndim) # 3\n", + "print(\" shape:\", arr3.shape) # (2, 2, 3)\n", + "print(\" dtype:\", arr3.dtype) # int64\n", + "print(\" size :\", arr3.size) # 12" + ], + "id": "d7060e437b98fd7", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "arr1 (1D):\n", + " ndim : 1\n", + " shape: (5,)\n", + " dtype: int64\n", + " size : 5\n", + "\n", + "arr2 (2D):\n", + " ndim : 2\n", + " shape: (2, 3)\n", + " dtype: int64\n", + " size : 6\n", + "\n", + "arr3 (3D):\n", + " ndim : 3\n", + " shape: (2, 2, 3)\n", + " dtype: int64\n", + " size : 12\n" + ] + } + ], + "execution_count": 12 } ], "metadata": { From e3ede5f54f4fe206f6a673a02a38ef8c1d025d95 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Fri, 31 Oct 2025 17:23:43 +0600 Subject: [PATCH 53/78] min_max --- ...N.py_55c06ed1d217854514cf2642a4d45c58.prob | 1 + Python_For_ML/Week_2/G_Max_and_MIN.py | 17 +++++++++ .../Mod_10/10.3 Ndarray Data Type.ipynb | 37 +++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 Python_For_ML/Week_2/.cph/.G_Max_and_MIN.py_55c06ed1d217854514cf2642a4d45c58.prob create mode 100644 Python_For_ML/Week_2/G_Max_and_MIN.py create mode 100644 Python_For_ML/Week_3/Mod_10/10.3 Ndarray Data Type.ipynb diff --git a/Python_For_ML/Week_2/.cph/.G_Max_and_MIN.py_55c06ed1d217854514cf2642a4d45c58.prob b/Python_For_ML/Week_2/.cph/.G_Max_and_MIN.py_55c06ed1d217854514cf2642a4d45c58.prob new file mode 100644 index 0000000..d6429d3 --- /dev/null +++ b/Python_For_ML/Week_2/.cph/.G_Max_and_MIN.py_55c06ed1d217854514cf2642a4d45c58.prob @@ -0,0 +1 @@ +{"name":"G. Max and MIN","group":"Codeforces - Sheet #5 (Functions)","url":"https://codeforces.com/group/MWSDmqGsZm/contest/223205/problem/G","interactive":false,"memoryLimit":64,"timeLimit":1000,"tests":[{"id":1761909051180,"input":"5\n10 13 95 1 3\n","output":"1 95\n"}],"testType":"single","input":{"type":"stdin"},"output":{"type":"stdout"},"languages":{"java":{"mainClass":"Main","taskClass":"GMaxAndMIN"}},"batch":{"id":"eca208dc-a866-485f-881a-b2e0334cc390","size":1},"srcPath":"c:\\Users\\evan\\Documents\\GitHub\\Python-for-ML\\Python_For_ML\\Week_2\\G_Max_and_MIN.py"} \ No newline at end of file diff --git a/Python_For_ML/Week_2/G_Max_and_MIN.py b/Python_For_ML/Week_2/G_Max_and_MIN.py new file mode 100644 index 0000000..c7735f9 --- /dev/null +++ b/Python_For_ML/Week_2/G_Max_and_MIN.py @@ -0,0 +1,17 @@ +def find_min_max(arr): + min_val = arr[0] + max_val = arr[0] + + for x in arr: + if x < min_val: + min_val = x + if x > max_val: + max_val = x + + return min_val, max_val + +n = int(input()) +A = list(map(int, input().split())) + +mn, mx = find_min_max(A) +print(mn,mx) diff --git a/Python_For_ML/Week_3/Mod_10/10.3 Ndarray Data Type.ipynb b/Python_For_ML/Week_3/Mod_10/10.3 Ndarray Data Type.ipynb new file mode 100644 index 0000000..54f657b --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/10.3 Ndarray Data Type.ipynb @@ -0,0 +1,37 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "initial_id", + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 51a60898029a44d75c3288b9654a035f4168f30e Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Sat, 1 Nov 2025 07:38:39 +0600 Subject: [PATCH 54/78] 10.3 Ndarray Data Type --- .../Mod_10/10.3 Ndarray Data Type.ipynb | 42 ++++++++++++++++--- 1 file changed, 37 insertions(+), 5 deletions(-) diff --git a/Python_For_ML/Week_3/Mod_10/10.3 Ndarray Data Type.ipynb b/Python_For_ML/Week_3/Mod_10/10.3 Ndarray Data Type.ipynb index 54f657b..3927eca 100644 --- a/Python_For_ML/Week_3/Mod_10/10.3 Ndarray Data Type.ipynb +++ b/Python_For_ML/Week_3/Mod_10/10.3 Ndarray Data Type.ipynb @@ -2,15 +2,47 @@ "cells": [ { "cell_type": "code", - "execution_count": null, "id": "initial_id", "metadata": { - "collapsed": true + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-01T01:30:05.336239Z", + "start_time": "2025-11-01T01:30:05.329649Z" + } }, - "outputs": [], "source": [ - "" - ] + "import numpy as np\n", + "\n", + "arr = np.array([1,2,3])\n", + "\n", + "print(arr.dtype)\n", + "\n", + "arr = np.array([1,2,3,4,5.6])\n", + "print(arr.dtype)\n", + "\n", + "arr = np.array([1,2,3,4,5.6,'3'])\n", + "print(arr.dtype)" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "int64\n", + "float64\n", + " Date: Sat, 1 Nov 2025 09:29:22 +0600 Subject: [PATCH 55/78] 10.4 ndarray creation from Existing data.ipynb --- ... ndarray creation from Existing data.ipynb | 435 ++++++++++++++++++ 1 file changed, 435 insertions(+) create mode 100644 Python_For_ML/Week_3/Mod_10/10.4 ndarray creation from Existing data.ipynb diff --git a/Python_For_ML/Week_3/Mod_10/10.4 ndarray creation from Existing data.ipynb b/Python_For_ML/Week_3/Mod_10/10.4 ndarray creation from Existing data.ipynb new file mode 100644 index 0000000..2734f74 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/10.4 ndarray creation from Existing data.ipynb @@ -0,0 +1,435 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-01T02:27:21.049718Z", + "start_time": "2025-11-01T02:27:21.045974Z" + } + }, + "source": [ + "import numpy as np\n", + "\n", + "lst =[12,37,67,87,55.5,'True']\n", + "arr = np.array(lst,dtype=np.int32)\n", + "\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr.dtype)" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[12 37 67 87 55]\n", + "\n", + "int32\n" + ] + } + ], + "execution_count": 4 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T02:28:27.047780Z", + "start_time": "2025-11-01T02:28:27.044538Z" + } + }, + "cell_type": "code", + "source": [ + "lst_mixd =[12,37,67,87,55.5,'True',33]\n", + "arr = np.array(lst_mixd)\n", + "\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr.dtype)" + ], + "id": "663d40c899ec4054", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['12' '37' '67' '87' '55.5' 'True' '33']\n", + "\n", + "\n", + "int64\n" + ] + } + ], + "execution_count": 8 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "", + "id": "5e0106dc4aed67a9" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T02:50:07.541948Z", + "start_time": "2025-11-01T02:50:07.535186Z" + } + }, + "cell_type": "code", + "source": [ + "tpl = (12,55)\n", + "\n", + "arr = np.array(tpl,dtype=np.int32)\n", + "print(arr.dtype)\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr.shape)\n", + "print(arr.ndim)" + ], + "id": "b626dc02e1437870", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "int32\n", + "[12 55]\n", + "\n", + "(2,)\n", + "1\n" + ] + } + ], + "execution_count": 9 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T03:10:53.733407Z", + "start_time": "2025-11-01T03:10:53.729999Z" + } + }, + "cell_type": "code", + "source": [ + "st = (12,55,77)\n", + "print(st)\n", + "arr3 = np.array(list(st))\n", + "print(arr3.dtype)\n", + "\n", + "print(type(arr3))\n", + "print(arr3.shape)\n", + "print(arr3.ndim)" + ], + "id": "8826ca153a758777", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(12, 55, 77)\n", + "int64\n", + "\n", + "(3,)\n", + "1\n" + ] + } + ], + "execution_count": 14 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T03:22:37.347749Z", + "start_time": "2025-11-01T03:22:37.343267Z" + } + }, + "cell_type": "code", + "source": [ + "dc = {'a':10, 'b':20, 'c':30}\n", + "\n", + "#keys to ndarray\n", + "keys = dc.keys()\n", + "values = dc.values()\n", + "items = dc.items()\n", + "arr = np.array(list(keys))\n", + "print(arr)\n", + "print(keys)\n", + "print(values)\n", + "print(items)\n", + "print(dc)\n", + "print(type(arr))\n", + "print(arr.shape)\n", + "print(arr.ndim)\n" + ], + "id": "558d114e029d8818", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['a' 'b' 'c']\n", + "dict_keys(['a', 'b', 'c'])\n", + "dict_values([10, 20, 30])\n", + "dict_items([('a', 10), ('b', 20), ('c', 30)])\n", + "{'a': 10, 'b': 20, 'c': 30}\n", + "\n", + "(3,)\n", + "1\n" + ] + } + ], + "execution_count": 18 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "_### **from the source file**_", + "id": "9a1c2ad792ea0f37" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T03:29:19.248026Z", + "start_time": "2025-11-01T03:29:19.243034Z" + } + }, + "cell_type": "code", + "source": [ + "#list\n", + "\n", + "lst = [10,20,30,40 , 40.5]\n", + "\n", + "arr = np.array(lst, dtype=np.int32)\n", + "\n", + "# print(arr)\n", + "# print(type(arr))\n", + "# print(arr.dtype)\n", + "\n", + "\n", + "mixed_lst = [10, True , 'Hello' ]\n", + "\n", + "arr = np.array(mixed_lst)\n", + "\n", + "# print(arr)\n", + "# print(type(arr))\n", + "# print(arr.dtype)\n", + "\n", + "\n", + "matrix = [ [1,2,3], # row1\n", + " [4,5,6] #row2\n", + " ]\n", + "\n", + "arr = np.array(matrix)\n", + "\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)" + ], + "id": "f02c888cdef0284", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1 2 3]\n", + " [4 5 6]]\n", + "\n", + "int64\n", + "(2, 3)\n", + "2\n" + ] + } + ], + "execution_count": 19 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T03:29:36.601590Z", + "start_time": "2025-11-01T03:29:36.597765Z" + } + }, + "cell_type": "code", + "source": [ + "#tuple\n", + "\n", + "tpl = (10,20,30)\n", + "\n", + "arr = np.array(tpl,dtype=np.int32)\n", + "print(arr.dtype)\n", + "arr = arr.astype(np.int16)\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)" + ], + "id": "5735939fb03e6d8c", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "int32\n", + "[10 20 30]\n", + "\n", + "int16\n", + "(3,)\n", + "1\n" + ] + } + ], + "execution_count": 21 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "#set\n", + "\n", + "st = { 1, 2, 3 }\n", + "\n", + "arr = np.array(list(st))\n", + "# print(arr.dtype)\n", + "arr = arr.astype(np.int16)\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)" + ], + "id": "6f209b6d0a9dd198" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "# dictionary\n", + "\n", + "dc = { 'a' : 10 , 'b' : 20 , 'c' :30 }\n", + "\n", + "keys = dc.keys()\n", + "values = dc.values()\n", + "items = dc.items()" + ], + "id": "40ef676f9c38f4bd" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "#keys to ndarray\n", + "arr = np.array(list(keys))\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)\n", + "print(arr.size)" + ], + "id": "bb4a97ec33b73825" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "#values to ndarray\n", + "arr = np.array(list(values))\n", + "print(arr)\n", + "arr = arr.astype(np.int16)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)\n", + "print(arr.size)" + ], + "id": "c2a68c6a363a9038" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "#items to ndarray\n", + "arr = np.array(list(items))\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)\n", + "print(arr.size)" + ], + "id": "bdc35bd11cc83b58" + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 35d67716277f25a79ebdf8e6697ff11fdd65dd9d Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Sat, 1 Nov 2025 10:49:54 +0600 Subject: [PATCH 56/78] 10.5 ndarray creation from scratch.ipynb --- .../10.5 ndarray creation from scratch.ipynb | 422 ++++++++++++++++++ 1 file changed, 422 insertions(+) create mode 100644 Python_For_ML/Week_3/Mod_10/10.5 ndarray creation from scratch.ipynb diff --git a/Python_For_ML/Week_3/Mod_10/10.5 ndarray creation from scratch.ipynb b/Python_For_ML/Week_3/Mod_10/10.5 ndarray creation from scratch.ipynb new file mode 100644 index 0000000..1117fb1 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/10.5 ndarray creation from scratch.ipynb @@ -0,0 +1,422 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-01T03:43:44.757524Z", + "start_time": "2025-11-01T03:43:44.752101Z" + } + }, + "source": [ + "import numpy as np\n", + "arr = np.zeros((2,3),dtype=np.int8)\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)\n", + "print(arr.size)" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[0 0 0]\n", + " [0 0 0]]\n", + "\n", + "int8\n", + "(2, 3)\n", + "2\n", + "6\n" + ] + } + ], + "execution_count": 7 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T03:57:12.229844Z", + "start_time": "2025-11-01T03:57:12.224739Z" + } + }, + "cell_type": "code", + "source": [ + "arw = np.ones((4,3),dtype=np.int8)\n", + "print(arw)\n", + "print(arw)\n", + "print(type(arw))\n", + "print(arw.dtype)\n", + "print(arw.shape)\n", + "print(arw.ndim)\n", + "print(arw.size)\n", + "\n" + ], + "id": "666bc434bc607e87", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]]\n", + "[[1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]]\n", + "\n", + "int8\n", + "(4, 3)\n", + "2\n", + "12\n" + ] + } + ], + "execution_count": 10 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T03:59:21.500509Z", + "start_time": "2025-11-01T03:59:21.496741Z" + } + }, + "cell_type": "code", + "source": [ + "arw = np.ones((3,4,3),dtype=np.int8)\n", + "\n", + "print(arw)\n", + "print(arw)\n", + "print(type(arw))\n", + "print(arw.dtype)\n", + "print(arw.shape)\n", + "print(arw.ndim)\n", + "print(arw.size)\n", + "\n" + ], + "id": "4c1fe8583525d2b8", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[[1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]]\n", + "\n", + " [[1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]]\n", + "\n", + " [[1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]]]\n", + "[[[1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]]\n", + "\n", + " [[1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]]\n", + "\n", + " [[1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]]]\n", + "\n", + "int8\n", + "(3, 4, 3)\n", + "3\n", + "36\n" + ] + } + ], + "execution_count": 11 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T04:01:25.178593Z", + "start_time": "2025-11-01T04:01:25.173800Z" + } + }, + "cell_type": "code", + "source": [ + "arr = np.zeros_like(arw)\n", + "print(arr)\n", + "print(arr.shape)" + ], + "id": "db6648b310601edf", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[[0 0 0]\n", + " [0 0 0]\n", + " [0 0 0]\n", + " [0 0 0]]\n", + "\n", + " [[0 0 0]\n", + " [0 0 0]\n", + " [0 0 0]\n", + " [0 0 0]]\n", + "\n", + " [[0 0 0]\n", + " [0 0 0]\n", + " [0 0 0]\n", + " [0 0 0]]]\n", + "(3, 4, 3)\n" + ] + } + ], + "execution_count": 12 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T04:01:58.689103Z", + "start_time": "2025-11-01T04:01:58.685832Z" + } + }, + "cell_type": "code", + "source": [ + "arr = np.ones_like(arw)\n", + "print(arr)\n", + "print(arr.shape)" + ], + "id": "c1bbc4aa278c817f", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[[1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]]\n", + "\n", + " [[1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]]\n", + "\n", + " [[1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]]]\n", + "(3, 4, 3)\n" + ] + } + ], + "execution_count": 13 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T04:39:13.452221Z", + "start_time": "2025-11-01T04:39:13.448216Z" + } + }, + "cell_type": "code", + "source": [ + "arw = np.empty((4,3),dtype=np.int8)\n", + "\n", + "print(arw)\n", + "print(arw)\n", + "print(type(arw))\n", + "print(arw.dtype)\n", + "print(arw.shape)\n", + "print(arw.ndim)\n", + "print(arw.size)" + ], + "id": "cefdba8f78aa032d", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]]\n", + "[[1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]\n", + " [1 1 1]]\n", + "\n", + "int8\n", + "(4, 3)\n", + "2\n", + "12\n" + ] + } + ], + "execution_count": 16 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "", + "id": "c662e1a7ce6112c4" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T04:42:15.525917Z", + "start_time": "2025-11-01T04:42:15.522621Z" + } + }, + "cell_type": "code", + "source": [ + "arr3 = np.empty_like(arw) ## arr3 shape same\n", + "print(arr3)\n", + "print(arr3.shape)" + ], + "id": "47da5b029d7638bd", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 64 -84 117]\n", + " [ 70 -119 2]\n", + " [ 0 0 0]\n", + " [ 0 0 0]]\n", + "(4, 3)\n" + ] + } + ], + "execution_count": 18 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "", + "id": "d46cac488d612e96" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T04:42:20.643309Z", + "start_time": "2025-11-01T04:42:20.637793Z" + } + }, + "cell_type": "code", + "source": [ + "arr = np.full((4,3),np.inf)\n", + "\n", + "# print(arr)\n", + "# print(type(arr))\n", + "# print(arr.dtype)\n", + "# print(arr.shape)\n", + "# print(arr.ndim)\n", + "# print(arr.size)\n", + "\n", + "\n", + "arr = np.full_like(arr3,np.inf,dtype=np.float64)\n", + "\n", + "print(arr)\n", + "print(arr.shape)\n", + "print(arr.dtype)" + ], + "id": "2786e938855dc6b1", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[inf inf inf]\n", + " [inf inf inf]\n", + " [inf inf inf]\n", + " [inf inf inf]]\n", + "(4, 3)\n", + "float64\n" + ] + } + ], + "execution_count": 19 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-01T04:45:50.060460Z", + "start_time": "2025-11-01T04:45:50.056504Z" + } + }, + "cell_type": "code", + "source": [ + "arr4 = np.full((4,3),True)\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr4.dtype)\n", + "print(arr4.shape)\n", + "print(arr4.ndim)\n", + "print(arr4.size)" + ], + "id": "1d73851ce8c98a2", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[inf inf inf]\n", + " [inf inf inf]\n", + " [inf inf inf]\n", + " [inf inf inf]]\n", + "\n", + "bool\n", + "(4, 3)\n", + "2\n", + "12\n" + ] + } + ], + "execution_count": 22 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "", + "id": "34a5b7c609ce2f0d" + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From af7eb83e8da9cff112c8f533d3f5f90adb59ef9c Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Mon, 3 Nov 2025 00:56:39 +0600 Subject: [PATCH 57/78] Mod 10 done --- ...Copy Advanced Indexing and Iteration.ipynb | 179 ++++++++++++++ ...darray generation with random values.ipynb | 169 +++++++++++++ .../10.7 ndarray creation from range.ipynb | 167 +++++++++++++ ...reating diagonal and identity matrix.ipynb | 125 ++++++++++ .../10.9 ndarray Indexing and Slicing.ipynb | 225 ++++++++++++++++++ Python_For_ML/Week_3/Mod_10/Quize.ipynb | 200 ++++++++++++++++ 6 files changed, 1065 insertions(+) create mode 100644 Python_For_ML/Week_3/Mod_10/10.10 Ndarray Copy Advanced Indexing and Iteration.ipynb create mode 100644 Python_For_ML/Week_3/Mod_10/10.6 ndarray generation with random values.ipynb create mode 100644 Python_For_ML/Week_3/Mod_10/10.7 ndarray creation from range.ipynb create mode 100644 Python_For_ML/Week_3/Mod_10/10.8 creating diagonal and identity matrix.ipynb create mode 100644 Python_For_ML/Week_3/Mod_10/10.9 ndarray Indexing and Slicing.ipynb create mode 100644 Python_For_ML/Week_3/Mod_10/Quize.ipynb diff --git a/Python_For_ML/Week_3/Mod_10/10.10 Ndarray Copy Advanced Indexing and Iteration.ipynb b/Python_For_ML/Week_3/Mod_10/10.10 Ndarray Copy Advanced Indexing and Iteration.ipynb new file mode 100644 index 0000000..e07804b --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/10.10 Ndarray Copy Advanced Indexing and Iteration.ipynb @@ -0,0 +1,179 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true + }, + "source": [ + "import numpy as np\n", + "\n", + "arr1 = np.array([1,2,100,4,5] )\n", + "\n", + "arr2 = np.array([[1,2,3] ,\n", + " [4,5,6] ] )\n", + "print(arr1)\n", + "print(arr2)\n", + "arr1_mod = arr1[1:4]\n", + "arr1_mod[0] =100\n", + "print(arr1_mod)" + ], + "outputs": [], + "execution_count": null + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T18:31:48.767839Z", + "start_time": "2025-11-02T18:31:48.764477Z" + } + }, + "cell_type": "code", + "source": [ + "lst = np.array([10, 20, 30, 40])\n", + "values = lst[[0,3]]\n", + "print(values)" + ], + "id": "c417ed19fcef9719", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[10 40]\n" + ] + } + ], + "execution_count": 3 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T18:35:48.771278Z", + "start_time": "2025-11-02T18:35:48.767478Z" + } + }, + "cell_type": "code", + "source": [ + "print(arr2[[0,1], [1,2]])\n", + "print(arr2)\n", + "\n", + "\n", + "print(arr2[arr2<2])\n", + "arr2[arr2>2] =0\n", + "print(arr2)" + ], + "id": "d184c8c0970a083a", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2 6]\n", + "[[1 2 3]\n", + " [4 5 6]]\n", + "[1]\n", + "[[1 2 0]\n", + " [0 0 0]]\n" + ] + } + ], + "execution_count": 7 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T18:38:35.847915Z", + "start_time": "2025-11-02T18:38:35.842198Z" + } + }, + "cell_type": "code", + "source": [ + "arr =np.array([[10,20,30], [100,200,300]])\n", + "\n", + "for i in arr:\n", + " print(i)\n", + " for j in i:\n", + " print(j)\n", + "\n", + "\n", + "\n" + ], + "id": "afdbf2f400ea27f1", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[10 20 30]\n", + "10\n", + "20\n", + "30\n", + "[100 200 300]\n", + "100\n", + "200\n", + "300\n", + "10\n", + "20\n", + "30\n", + "100\n", + "200\n", + "300\n" + ] + } + ], + "execution_count": 10 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T18:38:55.022218Z", + "start_time": "2025-11-02T18:38:55.019332Z" + } + }, + "cell_type": "code", + "source": [ + "for i in np.nditer(arr):\n", + " print(i)" + ], + "id": "5f614385bdfc12a7", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n", + "20\n", + "30\n", + "100\n", + "200\n", + "300\n" + ] + } + ], + "execution_count": 11 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_3/Mod_10/10.6 ndarray generation with random values.ipynb b/Python_For_ML/Week_3/Mod_10/10.6 ndarray generation with random values.ipynb new file mode 100644 index 0000000..5545107 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/10.6 ndarray generation with random values.ipynb @@ -0,0 +1,169 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-02T02:35:17.862550Z", + "start_time": "2025-11-02T02:35:17.500723Z" + } + }, + "source": [ + "import numpy as np\n", + "\n", + "arr = np.random.rand(2,3)\n", + "\n", + "print(arr)\n", + "arr = arr.astype(np.int16)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)\n", + "print(arr.size)" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[0.3604758 0.52273163 0.58254057]\n", + " [0.04033738 0.68946937 0.94107908]]\n", + "\n", + "int16\n", + "(2, 3)\n", + "2\n", + "6\n" + ] + } + ], + "execution_count": 2 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T02:55:06.538252Z", + "start_time": "2025-11-02T02:55:06.533654Z" + } + }, + "cell_type": "code", + "source": [ + "import numpy as np\n", + "\n", + "arr = np.random.randint(1,30 ,(10,10))\n", + "\n", + "print(arr)\n", + "arr = arr.astype(np.int16)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)\n", + "print(arr.size)" + ], + "id": "6663d7942737dd8a", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[20 29 5 4 22 10 18 9 27 1]\n", + " [29 15 11 28 15 21 29 29 21 10]\n", + " [ 6 5 19 9 16 26 5 15 24 10]\n", + " [11 14 17 10 11 2 10 10 10 28]\n", + " [12 23 1 27 21 4 6 16 7 1]\n", + " [19 3 26 1 6 14 13 7 16 4]\n", + " [26 12 27 26 2 4 21 6 25 28]\n", + " [17 28 24 13 18 25 17 24 8 14]\n", + " [18 19 1 15 2 27 11 12 6 20]\n", + " [ 7 12 23 7 14 16 27 7 2 6]]\n", + "\n", + "int16\n", + "(10, 10)\n", + "2\n", + "100\n" + ] + } + ], + "execution_count": 6 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T02:57:00.869435Z", + "start_time": "2025-11-02T02:57:00.859690Z" + } + }, + "cell_type": "code", + "source": [ + "import numpy as np\n", + "\n", + "arr = np.random.uniform(1,30 ,(10,10))\n", + "\n", + "print(arr)\n", + "arr = arr.astype(np.int16)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)\n", + "print(arr.size)" + ], + "id": "6c744421644922d2", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[28.15278583 5.39410209 22.87926883 8.76250934 26.36147161 27.29798235\n", + " 3.43057255 23.49499933 14.54109401 9.15328155]\n", + " [19.03026481 8.66065721 1.33382284 15.1756241 9.17430694 11.66066468\n", + " 27.42273574 7.62276877 10.04847083 13.70535368]\n", + " [ 3.55174833 14.45368665 13.6962107 10.19102407 7.20094485 23.40973912\n", + " 7.19716914 4.71102695 9.53557205 7.80051059]\n", + " [19.82710345 20.44755578 5.08972836 7.4212903 19.36497667 20.75548242\n", + " 4.26729148 4.32989515 7.04622001 16.65083952]\n", + " [18.15031233 1.31254688 11.5564398 9.00187795 4.30991842 26.03392933\n", + " 6.34854229 29.87541702 23.66141295 1.09079161]\n", + " [22.12874296 24.02253085 24.97401026 2.75808072 19.68465222 16.85838722\n", + " 20.28140781 5.29791687 20.53258849 2.81008668]\n", + " [14.08284658 14.84097553 4.3078665 18.98241272 4.34665128 2.54618649\n", + " 10.42321433 19.17365937 24.97116442 6.26856779]\n", + " [25.73839875 17.40818674 21.213551 11.91557706 24.39350976 5.20880353\n", + " 10.29096001 23.75636019 18.35274826 9.56696328]\n", + " [11.30980012 10.24676672 4.63776095 21.26671403 28.81208479 7.87287809\n", + " 8.45737626 27.97261376 23.68279986 7.4665352 ]\n", + " [10.46635787 9.78888737 3.87984041 13.1516174 2.47780784 16.81194495\n", + " 21.0440261 12.33271297 17.61419339 20.28431205]]\n", + "\n", + "int16\n", + "(10, 10)\n", + "2\n", + "100\n" + ] + } + ], + "execution_count": 7 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_3/Mod_10/10.7 ndarray creation from range.ipynb b/Python_For_ML/Week_3/Mod_10/10.7 ndarray creation from range.ipynb new file mode 100644 index 0000000..1628293 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/10.7 ndarray creation from range.ipynb @@ -0,0 +1,167 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-02T03:10:10.533869Z", + "start_time": "2025-11-02T03:10:10.527927Z" + } + }, + "source": [ + "import numpy as np\n", + "\n", + "arr = np.arange(1 , 10,1).reshape(3,3)\n", + "\n", + "print(arr)\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)\n", + "print(arr.size)" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1 2 3]\n", + " [4 5 6]\n", + " [7 8 9]]\n", + "[[1 2 3]\n", + " [4 5 6]\n", + " [7 8 9]]\n", + "\n", + "int64\n", + "(3, 3)\n", + "2\n", + "9\n" + ] + } + ], + "execution_count": 4 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T03:20:52.128590Z", + "start_time": "2025-11-02T03:20:52.120435Z" + } + }, + "cell_type": "code", + "source": [ + "import numpy as np\n", + "\n", + "arr = np.linspace(1 , 10,15)\n", + "\n", + "print(arr)\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)\n", + "print(arr.size)" + ], + "id": "27f5e116a5b8bc40", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 1. 1.64285714 2.28571429 2.92857143 3.57142857 4.21428571\n", + " 4.85714286 5.5 6.14285714 6.78571429 7.42857143 8.07142857\n", + " 8.71428571 9.35714286 10. ]\n", + "[ 1. 1.64285714 2.28571429 2.92857143 3.57142857 4.21428571\n", + " 4.85714286 5.5 6.14285714 6.78571429 7.42857143 8.07142857\n", + " 8.71428571 9.35714286 10. ]\n", + "\n", + "float64\n", + "(15,)\n", + "1\n", + "15\n" + ] + } + ], + "execution_count": 6 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "arr = np.logspace(1 , 10,15)\n", + "\n", + "print(arr)\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)\n", + "print(arr.size)" + ], + "id": "14d8286bac201661" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T04:56:04.962336Z", + "start_time": "2025-11-02T04:56:04.954317Z" + } + }, + "cell_type": "code", + "source": [ + "arr = np.logspace(0,4,6, base =2)\n", + "\n", + "print(arr)\n", + "print(arr)\n", + "print(type(arr))\n", + "print(arr.dtype)\n", + "print(arr.shape)\n", + "print(arr.ndim)\n", + "print(arr.size)" + ], + "id": "1b808fb4d1b3f3d3", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 1. 1.74110113 3.03143313 5.27803164 9.18958684 16. ]\n", + "[ 1. 1.74110113 3.03143313 5.27803164 9.18958684 16. ]\n", + "\n", + "float64\n", + "(6,)\n", + "1\n", + "6\n" + ] + } + ], + "execution_count": 7 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_3/Mod_10/10.8 creating diagonal and identity matrix.ipynb b/Python_For_ML/Week_3/Mod_10/10.8 creating diagonal and identity matrix.ipynb new file mode 100644 index 0000000..147676d --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/10.8 creating diagonal and identity matrix.ipynb @@ -0,0 +1,125 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-02T05:33:48.981982Z", + "start_time": "2025-11-02T05:33:48.772313Z" + } + }, + "source": [ + "import numpy as np\n", + "\n", + "diagonal_matrix = np.diag([1,2,3,4])\n", + "\n", + "print(diagonal_matrix)\n", + "print(diagonal_matrix.shape)" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1 0 0 0]\n", + " [0 2 0 0]\n", + " [0 0 3 0]\n", + " [0 0 0 4]]\n", + "(4, 4)\n" + ] + } + ], + "execution_count": 1 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T05:41:57.043030Z", + "start_time": "2025-11-02T05:41:57.039578Z" + } + }, + "cell_type": "code", + "source": [ + "# identity matrix\n", + "\n", + "identity_mat = np.eye(4)\n", + "print(identity_mat)\n", + "print(identity_mat.shape)\n", + "\n" + ], + "id": "387312acf26e32b2", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1. 0. 0. 0.]\n", + " [0. 1. 0. 0.]\n", + " [0. 0. 1. 0.]\n", + " [0. 0. 0. 1.]]\n", + "(4, 4)\n" + ] + } + ], + "execution_count": 3 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T06:45:48.454484Z", + "start_time": "2025-11-02T06:45:48.449037Z" + } + }, + "cell_type": "code", + "source": [ + "\n", + "# np.eye(row , column,k)\n", + "\n", + "mat = np.eye(3,4)\n", + "print(mat)\n", + "\n", + "mat = np.eye(3,4,1)\n", + "print(mat)" + ], + "id": "2d537d1bf0b97bf6", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1. 0. 0. 0.]\n", + " [0. 1. 0. 0.]\n", + " [0. 0. 1. 0.]]\n", + "[[0. 1. 0. 0.]\n", + " [0. 0. 1. 0.]\n", + " [0. 0. 0. 1.]]\n" + ] + } + ], + "execution_count": 5 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_3/Mod_10/10.9 ndarray Indexing and Slicing.ipynb b/Python_For_ML/Week_3/Mod_10/10.9 ndarray Indexing and Slicing.ipynb new file mode 100644 index 0000000..8edcd21 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/10.9 ndarray Indexing and Slicing.ipynb @@ -0,0 +1,225 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-02T07:47:55.414211Z", + "start_time": "2025-11-02T07:47:55.409974Z" + } + }, + "source": [ + "import numpy as np\n", + "\n", + "arr1 = np.array([1,2,3,4,5] )\n", + "\n", + "arr2 = np.array([[1,2,3] ,\n", + " [4,5,6] ] )\n", + "\n", + "\n", + "\n", + "print(arr1)\n", + "print()\n", + "print(arr2)" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1 2 3 4 5]\n", + "\n", + "[[1 2 3]\n", + " [4 5 6]]\n" + ] + } + ], + "execution_count": 22 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T07:45:18.160417Z", + "start_time": "2025-11-02T07:45:18.157324Z" + } + }, + "cell_type": "code", + "source": [ + "#print(arr1[2])\n", + "#arr1[2] = 100\n", + "#print(arr1[2])" + ], + "id": "c11ef1a5584cead0", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "100\n", + "100\n" + ] + } + ], + "execution_count": 19 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T06:54:40.841565Z", + "start_time": "2025-11-02T06:54:40.838662Z" + } + }, + "cell_type": "code", + "source": [ + "print(arr2)\n", + "\n", + "print(arr2[0][1])" + ], + "id": "86a8d229a80ffc6b", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 10 20 30]\n", + " [100 200 300]]\n", + "20\n" + ] + } + ], + "execution_count": 8 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T07:14:59.150271Z", + "start_time": "2025-11-02T07:14:59.146546Z" + } + }, + "cell_type": "code", + "source": [ + "#slicing\n", + "#1d = arr[start:end:step]\n", + "\n", + "\n", + "arr1_MOD = arr1[1:4]\n", + "print(arr1_MOD)" + ], + "id": "22b1e367faa188f1", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 2 100 4]\n" + ] + } + ], + "execution_count": 9 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T07:48:00.686727Z", + "start_time": "2025-11-02T07:48:00.682736Z" + } + }, + "cell_type": "code", + "source": [ + "#2d slicing\n", + "# arr[ row_start : row_end : step , column_start : column_end : step ]\n", + "\n", + "# print(arr2)\n", + "\n", + "#getting a row\n", + "\n", + "row_0 = arr2[0:1 ,]\n", + "\n", + "row_1= arr2[1: , ]\n", + "\n", + "# print(row_0)\n", + "# print(row_1)\n", + "\n", + "\n", + "#getting a column\n", + "\n", + "col_0 = arr2[:: ,0:1]\n", + "col_1 = arr2[::,1:2]\n", + "\n", + "print(col_0)\n", + "print(col_1)\n", + "\n", + "#getting a portion\n", + "\n", + "\n", + "portion = arr2[:: , 0:2]\n", + "\n", + "print(portion)" + ], + "id": "590b23f40d752bfa", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1]\n", + " [4]]\n", + "[[2]\n", + " [5]]\n", + "[[1 2]\n", + " [4 5]]\n" + ] + } + ], + "execution_count": 23 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T07:42:41.176232Z", + "start_time": "2025-11-02T07:42:41.170131Z" + } + }, + "cell_type": "code", + "source": [ + "col_0 = arr2[:: ,0:1]\n", + "print(col_0)" + ], + "id": "ba05b95e31976e5f", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 10]\n", + " [100]]\n" + ] + } + ], + "execution_count": 14 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_3/Mod_10/Quize.ipynb b/Python_For_ML/Week_3/Mod_10/Quize.ipynb new file mode 100644 index 0000000..a394f2a --- /dev/null +++ b/Python_For_ML/Week_3/Mod_10/Quize.ipynb @@ -0,0 +1,200 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-02T18:45:44.757402Z", + "start_time": "2025-11-02T18:45:44.665131Z" + } + }, + "source": [ + "import numpy as np\n", + "\n", + "arr = np.array([1,2,3])\n", + "print(arr.ndim)" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n" + ] + } + ], + "execution_count": 1 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T18:47:27.147451Z", + "start_time": "2025-11-02T18:47:27.144395Z" + } + }, + "cell_type": "code", + "source": [ + "arr = np.array([1, 2.5, 3])\n", + "print(arr.dtype)" + ], + "id": "cbbc7c0d9459da0d", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "float64\n" + ] + } + ], + "execution_count": 2 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T18:47:59.315018Z", + "start_time": "2025-11-02T18:47:59.309124Z" + } + }, + "cell_type": "code", + "source": "np.linspace(0,10,5)", + "id": "96434e463efac56d", + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0. , 2.5, 5. , 7.5, 10. ])" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 3 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T18:49:24.152745Z", + "start_time": "2025-11-02T18:49:24.149834Z" + } + }, + "cell_type": "code", + "source": [ + "arr2 = np.full((2,2), np.inf)\n", + "print(arr2)" + ], + "id": "505dc46bb2650ca", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[inf inf]\n", + " [inf inf]]\n" + ] + } + ], + "execution_count": 4 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T18:50:50.930162Z", + "start_time": "2025-11-02T18:50:50.926563Z" + } + }, + "cell_type": "code", + "source": [ + "arr3 = np.array([[10,20,30],[40,50,60]])\n", + "print(arr3[:,1])" + ], + "id": "76224c5058a54b6a", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[20 50]\n" + ] + } + ], + "execution_count": 5 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T18:52:39.113027Z", + "start_time": "2025-11-02T18:52:39.092982Z" + } + }, + "cell_type": "code", + "source": [ + "import numpy as np\n", + "arr = np.random.rand(2, 3)\n", + "print(arr)" + ], + "id": "e08e15a6b9fc7c95", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[0.38123901 0.47303471 0.79894741]\n", + " [0.76994739 0.24178974 0.77724551]]\n" + ] + } + ], + "execution_count": 6 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-02T18:53:53.857299Z", + "start_time": "2025-11-02T18:53:53.853524Z" + } + }, + "cell_type": "code", + "source": [ + "arr5 = np.array([1,2,3,4,5])\n", + "arr5[1:4] = 0\n", + "print(arr5)" + ], + "id": "bd23ea5f1168e01c", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1 0 0 0 5]\n" + ] + } + ], + "execution_count": 7 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From b8a5d1909f1c5590aaba1830eea12b27b0a1ba33 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 4 Nov 2025 10:32:53 +0600 Subject: [PATCH 58/78] 11.4 Numpy Broadcasting --- Python_For_ML/.idea/dictionaries/project.xml | 7 + .../Mod_11/11.1 ndarray Manipulation -1.ipynb | 525 ++++++++++++++++++ 2 files changed, 532 insertions(+) create mode 100644 Python_For_ML/.idea/dictionaries/project.xml create mode 100644 Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb diff --git a/Python_For_ML/.idea/dictionaries/project.xml b/Python_For_ML/.idea/dictionaries/project.xml new file mode 100644 index 0000000..6f119c3 --- /dev/null +++ b/Python_For_ML/.idea/dictionaries/project.xml @@ -0,0 +1,7 @@ + + + + splitted + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb b/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb new file mode 100644 index 0000000..298ba72 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb @@ -0,0 +1,525 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-03T13:27:42.237788Z", + "start_time": "2025-11-03T13:27:42.233843Z" + } + }, + "source": [ + "from math import remainder\n", + "from signal import pthread_sigmask\n", + "\n", + "import numpy as np\n", + "\n", + "from extra_class import matrix\n", + "\n", + "arr = np.random.randint(1, 100, size=(10, 5))\n", + "arr.shape" + ], + "outputs": [ + { + "data": { + "text/plain": [ + "(10, 5)" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 2 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-03T13:45:58.807795Z", + "start_time": "2025-11-03T13:45:58.802862Z" + } + }, + "cell_type": "code", + "source": [ + "b = arr.reshape(5,10)\n", + "b.shape\n", + "b.ndim\n", + "b" + ], + "id": "c9869b690f4021db", + "outputs": [ + { + "data": { + "text/plain": [ + "array([[62, 45, 35, 38, 38, 76, 91, 99, 11, 9],\n", + " [56, 68, 72, 58, 67, 2, 7, 79, 68, 69],\n", + " [56, 46, 81, 95, 50, 41, 95, 37, 75, 85],\n", + " [87, 7, 12, 93, 69, 26, 56, 8, 85, 91],\n", + " [19, 60, 81, 53, 60, 1, 13, 83, 39, 18]], dtype=int32)" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 5 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-03T13:53:37.862135Z", + "start_time": "2025-11-03T13:53:37.857524Z" + } + }, + "cell_type": "code", + "source": [ + "flatten = b.flatten()\n", + "\n", + "print(flatten.ndim)\n", + "flatten\n", + "\n", + "column_wise_flattening = np.ravel(b, order='F')\n", + "print(column_wise_flattening)" + ], + "id": "25fe121cabb52c04", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "[62 56 56 87 19 45 68 46 7 60 35 72 81 12 81 38 58 95 93 53 38 67 50 69\n", + " 60 76 2 41 26 1 91 7 95 56 13 99 79 37 8 83 11 68 75 85 39 9 69 85\n", + " 91 18]\n" + ] + } + ], + "execution_count": 7 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-03T13:59:37.808219Z", + "start_time": "2025-11-03T13:59:37.805103Z" + } + }, + "cell_type": "code", + "source": [ + "a = np.random.randint(1, 10, size =(2,3))\n", + "b = np.random.randint(20, 30, size =(2,3))\n", + "\n" + ], + "id": "2ae38398d29d8bd", + "outputs": [], + "execution_count": 9 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-03T14:04:40.296859Z", + "start_time": "2025-11-03T14:04:40.293582Z" + } + }, + "cell_type": "code", + "source": [ + "con = np.concatenate((a, b), axis=0)\n", + "print(con)" + ], + "id": "1341e4d8abcf5973", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 1 5 4]\n", + " [ 4 4 6]\n", + " [26 26 20]\n", + " [29 23 21]]\n" + ] + } + ], + "execution_count": 11 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-03T14:06:06.369547Z", + "start_time": "2025-11-03T14:06:06.364710Z" + } + }, + "cell_type": "code", + "source": [ + "con_row = np.concatenate((a, b), axis=0)\n", + "print(con_row)\n", + "print()\n", + "con_col = np.concatenate((a, b), axis=1)\n", + "print(con_col)" + ], + "id": "d6d317b4ad3a8f9b", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 1 5 4]\n", + " [ 4 4 6]\n", + " [26 26 20]\n", + " [29 23 21]]\n", + "\n", + "[[ 1 5 4 26 26 20]\n", + " [ 4 4 6 29 23 21]]\n" + ] + } + ], + "execution_count": 12 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-03T14:16:02.086974Z", + "start_time": "2025-11-03T14:16:02.083418Z" + } + }, + "cell_type": "code", + "source": [ + "x = np.random.randint(1, 10, size=(2,3))\n", + "y = np.random.randint(1, 10, size=(2,3))\n", + "\n", + "r = np.concatenate((x, y), axis=0)\n", + "print(r)\n", + "print()\n", + "#print(x)\n", + "#print(y)" + ], + "id": "fbe9515e2da13c54", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[2 8 4]\n", + " [8 2 7]\n", + " [5 5 7]\n", + " [9 4 9]]\n", + "\n" + ] + } + ], + "execution_count": 14 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": [ + "\n", + "# **11.2 ndarray Manipulation - 2**" + ], + "id": "e55b1ba16d9856cf" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-03T16:52:41.393720Z", + "start_time": "2025-11-03T16:52:41.389468Z" + } + }, + "cell_type": "code", + "source": [ + "import numpy as np\n", + "\n", + "mat = np.array([[10, 20, 30],\n", + " [30, 40, 50]])\n", + "\n", + "transpose = mat.T\n", + "print(transpose)\n", + "print()\n", + "print(mat.shape) # (2, 3)\n", + "print(transpose.shape) # (3, 2) ← উল্টে গেছে!" + ], + "id": "c27fbf11419416fd", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[10 30]\n", + " [20 40]\n", + " [30 50]]\n", + "\n", + "(2, 3)\n", + "(3, 2)\n" + ] + } + ], + "execution_count": 4 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-03T17:02:21.729320Z", + "start_time": "2025-11-03T17:02:21.724869Z" + } + }, + "cell_type": "code", + "source": [ + "a = np.random.randint(1 ,10 , size =(9,))\n", + "print(a)\n", + "splitted_array = np.split(a,3)\n", + "print(splitted_array)\n", + "print()\n", + "splitted_array = np.split(a,3)\n", + "print(splitted_array)" + ], + "id": "8728f583eafb32ca", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[3 3 6 8 7 4 6 3 2]\n", + "[array([3, 3, 6], dtype=int32), array([8, 7, 4], dtype=int32), array([6, 3, 2], dtype=int32)]\n", + "\n", + "[array([3, 3, 6], dtype=int32), array([8, 7, 4], dtype=int32), array([6, 3, 2], dtype=int32)]\n" + ] + } + ], + "execution_count": 11 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": [ + "\n", + "# **11.3 ndarray Arithmetic Operators and Mathematical function**" + ], + "id": "66ab1b27067277bf" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T03:30:05.618940Z", + "start_time": "2025-11-04T03:30:05.608988Z" + } + }, + "cell_type": "code", + "source": [ + "import numpy as np\n", + "\n", + "x1 = np.array([ 10, 20, 30, 100])\n", + "y1 = np.array ([2, 3, 4, 5])\n", + "\n", + "add = x1+y1\n", + "print(add)\n", + "\n", + "sub = x1-y1\n", + "print(sub)\n", + "\n", + "div = x1/y1\n", + "print(div)\n", + "\n", + "remainder = x1 % y1\n", + "print(remainder)" + ], + "id": "2bd7ba6b72ee5a35", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[12 23 34 45]\n", + "[ 8 17 26 35]\n", + "[5. 6.66666667 7.5 8. ]\n", + "[0 2 2 0]\n" + ] + } + ], + "execution_count": 6 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T03:36:17.270916Z", + "start_time": "2025-11-04T03:36:17.267147Z" + } + }, + "cell_type": "code", + "source": [ + "sin_val = np.sin(x1)\n", + "print(sin_val)\n", + "\n", + "cos_val = np.cos(x1)\n", + "print(cos_val)\n", + "print()\n", + "base_10_log = np.log10(x1)\n", + "print(base_10_log)" + ], + "id": "c7d85821dee3eab8", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[-0.54402111 0.91294525 -0.98803162 0.74511316]\n", + "[-0.83907153 0.40808206 0.15425145 -0.66693806]\n", + "\n", + "[1. 1.30103 1.47712125 1.60205999]\n" + ] + } + ], + "execution_count": 15 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T03:53:38.652553Z", + "start_time": "2025-11-04T03:53:38.648791Z" + } + }, + "cell_type": "code", + "source": [ + "ase_10_log = np.log2(x1)\n", + "print(base_10_log)" + ], + "id": "683366275794e20e", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1. 1.30103 1.47712125 1.60205999]\n" + ] + } + ], + "execution_count": 17 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T03:55:03.492823Z", + "start_time": "2025-11-04T03:55:03.489690Z" + } + }, + "cell_type": "code", + "source": [ + "sqr = np.sqrt(x1)\n", + "print(sqr)" + ], + "id": "b8c07b17b572a753", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[3.16227766 4.47213595 5.47722558 6.32455532]\n" + ] + } + ], + "execution_count": 19 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T04:13:25.111077Z", + "start_time": "2025-11-04T04:13:25.104133Z" + } + }, + "cell_type": "code", + "source": [ + "s = np.sum(x1)\n", + "print(s)\n", + "cumul =np.cumulative_sum(x1)\n", + "print(cumul)" + ], + "id": "97f63195c73fe5b3", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "100\n", + "[ 10 30 60 100]\n" + ] + } + ], + "execution_count": 20 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": [ + "\n", + "# **11.4 Numpy Broadcasting**" + ], + "id": "6061ba2c212b390c" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T04:31:55.826954Z", + "start_time": "2025-11-04T04:31:55.823037Z" + } + }, + "cell_type": "code", + "source": [ + "x = np.array([10, 8 , 16 , 100])\n", + "\n", + "result = x ** 2\n", + "#print(result)\n", + "\n", + "mat = np.array([[10, 20, 30],\n", + " [30, 40, 50]])\n", + "\n", + "result = mat +2\n", + "\n", + "vector = np.array([1, 2, 3])\n", + "result = mat +vector\n", + "print(result)" + ], + "id": "1556f3456a0ed6e9", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[11 22 33]\n", + " [31 42 53]]\n" + ] + } + ], + "execution_count": 26 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "", + "id": "b300a04da4ba2597" + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 3ba74988782fefb435219245d6601283b03f44e4 Mon Sep 17 00:00:00 2001 From: Minhajul Abedin Adil <64237828+minhajadil@users.noreply.github.com> Date: Sat, 1 Nov 2025 18:08:54 +0600 Subject: [PATCH 59/78] added Module 14 --- Module_14.ipynb | 15556 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 15556 insertions(+) create mode 100644 Module_14.ipynb diff --git a/Module_14.ipynb b/Module_14.ipynb new file mode 100644 index 0000000..656a7fc --- /dev/null +++ b/Module_14.ipynb @@ -0,0 +1,15556 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 11, + "id": "3ba416e9-ed96-498c-aced-9c5b59315499", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "data = {\n", + " \"Name\": [\"Alice\", \"Bob\", \"Charlie\", \"David\", \"Eve\", \"Frank\", \"Grace\", \"Hannah\",\"Sakib\"],\n", + " \"City\": [\"New York\", \"Los Angeles\", \"Newark\", \"Boston\", \"New Delhi\", \"Chicago\", \"New Orleans\", \"Houston\",\"H Los Ang\"],\n", + " \"Department\": [\"HR\", \"IT\", \"Finance\", \"IT\", \"HR\", \"Marketing\", \"Finance\", \"HR\", \"HR\"],\n", + " \"Salary\": [50000, 60000, 55000, 70000, 52000, 58000, 62000, 51000,70000]\n", + "}\n", + "\n", + "df = pd.DataFrame(data)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "8a3ea843-a934-4f03-bdb7-00137fe1b47e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityDepartmentSalary
0AliceNew YorkHR50000
1BobLos AngelesIT60000
2CharlieNewarkFinance55000
3DavidBostonIT70000
4EveNew DelhiHR52000
5FrankChicagoMarketing58000
6GraceNew OrleansFinance62000
7HannahHoustonHR51000
8SakibH Los AngHR70000
\n", + "
" + ], + "text/plain": [ + " Name City Department Salary\n", + "0 Alice New York HR 50000\n", + "1 Bob Los Angeles IT 60000\n", + "2 Charlie Newark Finance 55000\n", + "3 David Boston IT 70000\n", + "4 Eve New Delhi HR 52000\n", + "5 Frank Chicago Marketing 58000\n", + "6 Grace New Orleans Finance 62000\n", + "7 Hannah Houston HR 51000\n", + "8 Sakib H Los Ang HR 70000" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "ad2cc257-bbb3-4c5f-a85e-92d4bc9a8607", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityDepartmentSalary
0AliceNew YorkHR50000
2CharlieNewarkFinance55000
4EveNew DelhiHR52000
6GraceNew OrleansFinance62000
\n", + "
" + ], + "text/plain": [ + " Name City Department Salary\n", + "0 Alice New York HR 50000\n", + "2 Charlie Newark Finance 55000\n", + "4 Eve New Delhi HR 52000\n", + "6 Grace New Orleans Finance 62000" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[df['City'].str.contains(\"New\")] " + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "94e579e3-ada3-4f7f-96d9-1d618a4fcc8e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityDepartmentSalary
0AliceNew YorkHR50000
2CharlieNewarkFinance55000
4EveNew DelhiHR52000
6GraceNew OrleansFinance62000
\n", + "
" + ], + "text/plain": [ + " Name City Department Salary\n", + "0 Alice New York HR 50000\n", + "2 Charlie Newark Finance 55000\n", + "4 Eve New Delhi HR 52000\n", + "6 Grace New Orleans Finance 62000" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[df['City'].str.contains(\"new\",case=False)]" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "72b8372e-a14e-4a04-b269-ca79cea3a4f8", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityDepartmentSalary
1BobLos AngelesIT60000
8SakibH Los AngHR70000
\n", + "
" + ], + "text/plain": [ + " Name City Department Salary\n", + "1 Bob Los Angeles IT 60000\n", + "8 Sakib H Los Ang HR 70000" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# starts with Los\n", + "\n", + "df.loc[df['City'].str.contains(r\"^Los\")]" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "f0b2d7e9-2798-4e4e-84cc-3646e5a644b6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityDepartmentSalary
0AliceNew YorkHR50000
2CharlieNewarkFinance55000
\n", + "
" + ], + "text/plain": [ + " Name City Department Salary\n", + "0 Alice New York HR 50000\n", + "2 Charlie Newark Finance 55000" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#end with rk\n", + "\n", + "df.loc[df['City'].str.contains(r\"rk$\")]" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "1e953025-5399-4fbb-b241-3e1929246741", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityDepartmentSalary
0AliceNew YorkHR50000
4EveNew DelhiHR52000
\n", + "
" + ], + "text/plain": [ + " Name City Department Salary\n", + "0 Alice New York HR 50000\n", + "4 Eve New Delhi HR 52000" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# name starts with a vowel \n", + "\n", + "df.loc[df['Name'].str.contains(r\"^[AEIOU]\")]" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "3ef59fed-fb80-435c-bff9-600c33394f7f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityDepartmentSalary
0AliceNew YorkHR50000
1BobLos AngelesIT60000
2CharlieNewarkFinance55000
4EveNew DelhiHR52000
6GraceNew OrleansFinance62000
8SakibH Los AngHR70000
\n", + "
" + ], + "text/plain": [ + " Name City Department Salary\n", + "0 Alice New York HR 50000\n", + "1 Bob Los Angeles IT 60000\n", + "2 Charlie Newark Finance 55000\n", + "4 Eve New Delhi HR 52000\n", + "6 Grace New Orleans Finance 62000\n", + "8 Sakib H Los Ang HR 70000" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# string contains New or Los\n", + "\n", + "df.loc[df['City'].str.contains(r\"New|Los\")]" + ] + }, + { + "cell_type": "markdown", + "id": "162685f3-0767-48c8-80b0-9b372a6fd540", + "metadata": {}, + "source": [ + "# Adding New Colums" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "6af11931-5395-45fc-8450-8d4c3b1583c2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka " + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv('student_data.csv')\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "c3543006-a525-4902-a43a-c67d2a6cbfa5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationCountry
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhakaBangladesh
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogramBangladesh
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhakaBangladesh
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhetBangladesh
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogramBangladesh
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahiBangladesh
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhakaBangladesh
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogramBangladesh
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhakaBangladesh
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhetBangladesh
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulnaBangladesh
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogramBangladesh
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhakaBangladesh
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahiBangladesh
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhakaBangladesh
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogramBangladesh
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhakaBangladesh
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhetBangladesh
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogramBangladesh
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhakaBangladesh
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "\n", + " Country \n", + "0 Bangladesh \n", + "1 Bangladesh \n", + "2 Bangladesh \n", + "3 Bangladesh \n", + "4 Bangladesh \n", + "5 Bangladesh \n", + "6 Bangladesh \n", + "7 Bangladesh \n", + "8 Bangladesh \n", + "9 Bangladesh \n", + "10 Bangladesh \n", + "11 Bangladesh \n", + "12 Bangladesh \n", + "13 Bangladesh \n", + "14 Bangladesh \n", + "15 Bangladesh \n", + "16 Bangladesh \n", + "17 Bangladesh \n", + "18 Bangladesh \n", + "19 Bangladesh " + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# adding a column with constant value \n", + "\n", + "df['Country'] = 'Bangladesh'\n", + "\n", + "df \n" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "a8e12f7f-82d7-4bb6-bb05-911cd4451578", + "metadata": {}, + "outputs": [], + "source": [ + "df['Total Marks'] = df['Data Structure Marks'] + df['Python Marks'] + df['Algorithm Marks']" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "701996a5-c0a6-41c4-94a3-dd4f118c5b80", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationCountryTotal Marks
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhakaBangladesh258.0
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogramBangladeshNaN
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhakaBangladesh261.0
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhetBangladesh238.0
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogramBangladeshNaN
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahiBangladesh228.0
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhakaBangladeshNaN
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogramBangladesh247.0
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhakaBangladesh220.0
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhetBangladesh266.0
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulnaBangladeshNaN
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogramBangladesh257.0
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhakaBangladesh229.0
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahiBangladeshNaN
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhakaBangladesh256.0
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogramBangladeshNaN
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhakaBangladesh273.0
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhetBangladesh261.0
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogramBangladeshNaN
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhakaBangladesh261.0
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "\n", + " Country Total Marks \n", + "0 Bangladesh 258.0 \n", + "1 Bangladesh NaN \n", + "2 Bangladesh 261.0 \n", + "3 Bangladesh 238.0 \n", + "4 Bangladesh NaN \n", + "5 Bangladesh 228.0 \n", + "6 Bangladesh NaN \n", + "7 Bangladesh 247.0 \n", + "8 Bangladesh 220.0 \n", + "9 Bangladesh 266.0 \n", + "10 Bangladesh NaN \n", + "11 Bangladesh 257.0 \n", + "12 Bangladesh 229.0 \n", + "13 Bangladesh NaN \n", + "14 Bangladesh 256.0 \n", + "15 Bangladesh NaN \n", + "16 Bangladesh 273.0 \n", + "17 Bangladesh 261.0 \n", + "18 Bangladesh NaN \n", + "19 Bangladesh 261.0 " + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "cc30bfa7-91c7-4470-b911-d268cef9cc37", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationCountryTotal MarksA+ in DS
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhakaBangladesh258.0A
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogramBangladeshNaNA+
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhakaBangladesh261.0A
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhetBangladesh238.0A
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogramBangladeshNaNA
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahiBangladesh228.0A
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhakaBangladeshNaNA
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogramBangladesh247.0A
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhakaBangladesh220.0A
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhetBangladesh266.0A
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulnaBangladeshNaNA
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogramBangladesh257.0A
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhakaBangladesh229.0A
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahiBangladeshNaNA
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhakaBangladesh256.0A
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogramBangladeshNaNA+
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhakaBangladesh273.0A
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhetBangladesh261.0A
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogramBangladeshNaNA
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhakaBangladesh261.0A
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "\n", + " Country Total Marks A+ in DS \n", + "0 Bangladesh 258.0 A \n", + "1 Bangladesh NaN A+ \n", + "2 Bangladesh 261.0 A \n", + "3 Bangladesh 238.0 A \n", + "4 Bangladesh NaN A \n", + "5 Bangladesh 228.0 A \n", + "6 Bangladesh NaN A \n", + "7 Bangladesh 247.0 A \n", + "8 Bangladesh 220.0 A \n", + "9 Bangladesh 266.0 A \n", + "10 Bangladesh NaN A \n", + "11 Bangladesh 257.0 A \n", + "12 Bangladesh 229.0 A \n", + "13 Bangladesh NaN A \n", + "14 Bangladesh 256.0 A \n", + "15 Bangladesh NaN A+ \n", + "16 Bangladesh 273.0 A \n", + "17 Bangladesh 261.0 A \n", + "18 Bangladesh NaN A \n", + "19 Bangladesh 261.0 A " + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import numpy as np \n", + "\n", + "df['A+ in DS'] = np.where(df['Data Structure Marks']>90, 'A+' , 'A')\n", + "\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "553862eb-b395-4b43-874c-d24487c6c29e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationCountryTotal MarksA+ in DSPassed in DS
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhakaBangladesh258.0ATrue
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogramBangladeshNaNA+True
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhakaBangladesh261.0ATrue
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhetBangladesh238.0ATrue
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogramBangladeshNaNAFalse
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahiBangladesh228.0ATrue
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhakaBangladeshNaNATrue
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogramBangladesh247.0ATrue
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhakaBangladesh220.0ATrue
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhetBangladesh266.0ATrue
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulnaBangladeshNaNAFalse
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogramBangladesh257.0ATrue
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhakaBangladesh229.0ATrue
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahiBangladeshNaNAFalse
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhakaBangladesh256.0ATrue
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogramBangladeshNaNA+True
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhakaBangladesh273.0ATrue
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhetBangladesh261.0ATrue
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogramBangladeshNaNAFalse
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhakaBangladesh261.0ATrue
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "\n", + " Country Total Marks A+ in DS Passed in DS \n", + "0 Bangladesh 258.0 A True \n", + "1 Bangladesh NaN A+ True \n", + "2 Bangladesh 261.0 A True \n", + "3 Bangladesh 238.0 A True \n", + "4 Bangladesh NaN A False \n", + "5 Bangladesh 228.0 A True \n", + "6 Bangladesh NaN A True \n", + "7 Bangladesh 247.0 A True \n", + "8 Bangladesh 220.0 A True \n", + "9 Bangladesh 266.0 A True \n", + "10 Bangladesh NaN A False \n", + "11 Bangladesh 257.0 A True \n", + "12 Bangladesh 229.0 A True \n", + "13 Bangladesh NaN A False \n", + "14 Bangladesh 256.0 A True \n", + "15 Bangladesh NaN A+ True \n", + "16 Bangladesh 273.0 A True \n", + "17 Bangladesh 261.0 A True \n", + "18 Bangladesh NaN A False \n", + "19 Bangladesh 261.0 A True " + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['Passed in DS'] = df['Data Structure Marks'] >70\n", + "\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "063da9b9-fbd7-4450-985e-4f5bb219531a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationCountryTotal MarksA+ in DSPassed in DSFirst Name
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhakaBangladesh258.0ATrueAlif
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogramBangladeshNaNA+TrueFatima
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhakaBangladesh261.0ATrueImran
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhetBangladesh238.0ATrueJannatul
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogramBangladeshNaNAFalseKamal
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahiBangladesh228.0ATrueLaila
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhakaBangladeshNaNATrueMahmudul
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogramBangladesh247.0ATrueNadia
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhakaBangladesh220.0ATrueOmar
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhetBangladesh266.0ATruePriya
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulnaBangladeshNaNAFalseRahim
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogramBangladesh257.0ATrueSadia
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhakaBangladesh229.0ATrueTanvir
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahiBangladeshNaNAFalseUrmi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhakaBangladesh256.0ATrueWahiduzzaman
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogramBangladeshNaNA+TrueZiaur
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhakaBangladesh273.0ATrueAfsana
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhetBangladesh261.0ATrueBabul
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogramBangladeshNaNAFalseFaria
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhakaBangladesh261.0ATrueNasir
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "\n", + " Country Total Marks A+ in DS Passed in DS First Name \n", + "0 Bangladesh 258.0 A True Alif \n", + "1 Bangladesh NaN A+ True Fatima \n", + "2 Bangladesh 261.0 A True Imran \n", + "3 Bangladesh 238.0 A True Jannatul \n", + "4 Bangladesh NaN A False Kamal \n", + "5 Bangladesh 228.0 A True Laila \n", + "6 Bangladesh NaN A True Mahmudul \n", + "7 Bangladesh 247.0 A True Nadia \n", + "8 Bangladesh 220.0 A True Omar \n", + "9 Bangladesh 266.0 A True Priya \n", + "10 Bangladesh NaN A False Rahim \n", + "11 Bangladesh 257.0 A True Sadia \n", + "12 Bangladesh 229.0 A True Tanvir \n", + "13 Bangladesh NaN A False Urmi \n", + "14 Bangladesh 256.0 A True Wahiduzzaman \n", + "15 Bangladesh NaN A+ True Ziaur \n", + "16 Bangladesh 273.0 A True Afsana \n", + "17 Bangladesh 261.0 A True Babul \n", + "18 Bangladesh NaN A False Faria \n", + "19 Bangladesh 261.0 A True Nasir " + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['First Name'] = df['FullName'].str.split(' ').str[0]\n", + "\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "0ab95a50-3faf-4b58-ba6d-08165f5c2ac7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationCountryTotal MarksA+ in DSPassed in DSFirst Name
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhakaBangladesh258.0ATrueAlif
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogramBangladeshNaNA+TrueFatima
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhakaBangladesh261.0ATrueImran
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhetBangladesh238.0ATrueJannatul
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogramBangladeshNaNAFalseKamal
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahiBangladesh228.0ATrueLaila
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhakaBangladeshNaNATrueMahmudul
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogramBangladesh247.0ATrueNadia
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhakaBangladesh220.0ATrueOmar
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhetBangladesh266.0ATruePriya
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulnaBangladeshNaNAFalseRahim
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogramBangladesh257.0ATrueSadia
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhakaBangladesh229.0ATrueTanvir
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahiBangladeshNaNAFalseUrmi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhakaBangladesh256.0ATrueWahiduzzaman
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogramBangladeshNaNA+TrueZiaur
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhakaBangladesh273.0ATrueAfsana
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhetBangladesh261.0ATrueBabul
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogramBangladeshNaNAFalseFaria
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhakaBangladesh261.0ATrueNasir
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "\n", + " Country Total Marks A+ in DS Passed in DS First Name \n", + "0 Bangladesh 258.0 A True Alif \n", + "1 Bangladesh NaN A+ True Fatima \n", + "2 Bangladesh 261.0 A True Imran \n", + "3 Bangladesh 238.0 A True Jannatul \n", + "4 Bangladesh NaN A False Kamal \n", + "5 Bangladesh 228.0 A True Laila \n", + "6 Bangladesh NaN A True Mahmudul \n", + "7 Bangladesh 247.0 A True Nadia \n", + "8 Bangladesh 220.0 A True Omar \n", + "9 Bangladesh 266.0 A True Priya \n", + "10 Bangladesh NaN A False Rahim \n", + "11 Bangladesh 257.0 A True Sadia \n", + "12 Bangladesh 229.0 A True Tanvir \n", + "13 Bangladesh NaN A False Urmi \n", + "14 Bangladesh 256.0 A True Wahiduzzaman \n", + "15 Bangladesh NaN A+ True Ziaur \n", + "16 Bangladesh 273.0 A True Afsana \n", + "17 Bangladesh 261.0 A True Babul \n", + "18 Bangladesh NaN A False Faria \n", + "19 Bangladesh 261.0 A True Nasir " + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "aea801eb-8524-4cc0-90be-ae8f0a844380", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka " + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df1 = pd.read_csv('student_data.csv')\n", + "df1" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "9173f381-015e-4f46-93cf-508afa8d5bc0", + "metadata": {}, + "outputs": [], + "source": [ + "df.to_csv('new_data.csv')" + ] + }, + { + "cell_type": "markdown", + "id": "536f90ab-0c57-45c1-bb9b-615c6d8755dc", + "metadata": {}, + "source": [ + "# Unique and nunique " + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "0dba9b8a-3231-4a55-a1f2-8a8465e07472", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
0AliceNew York85
1BobLondon90
2CharlieParis78
3AliceNew York85
4DavidTokyo95
5BobLondon90
\n", + "
" + ], + "text/plain": [ + " Name City Score\n", + "0 Alice New York 85\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "3 Alice New York 85\n", + "4 David Tokyo 95\n", + "5 Bob London 90" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = {\n", + " \"Name\": [\"Alice\", \"Bob\", \"Charlie\", \"Alice\", \"David\", \"Bob\"],\n", + " \"City\": [\"New York\", \"London\", \"Paris\", \"New York\", \"Tokyo\", \"London\"],\n", + " \"Score\": [85, 90, 78, 85, 95, 90]\n", + "}\n", + "\n", + "df = pd.DataFrame(data)\n", + "df \n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "4895adfc-54f2-4080-a7f2-acda3fa87be4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['Alice', 'Bob', 'Charlie', 'David'], dtype=object)" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# unique works on only series \n", + "df['Name'].unique()\n", + "\n", + "df['Name'].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "id": "cad35f97-1f6b-405d-988f-de66e5fdd81a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka " + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df1 = pd.read_csv('student_data.csv')\n", + "\n", + "\n", + "df1" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "id": "fa94d47e-4700-4bae-9a24-696f58d04007", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "12" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(df1['Data Structure Marks'].unique())\n", + "\n", + "df1['Data Structure Marks'].nunique()" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "id": "24361d68-1138-48bd-befe-e8c8db997759", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Name 4\n", + "City 4\n", + "Score 4\n", + "dtype: int64" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.nunique()" + ] + }, + { + "cell_type": "markdown", + "id": "b1e184e2-0bbc-4f2d-b805-d2404e291328", + "metadata": {}, + "source": [ + "# Check null " + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "ae542f36-a399-4263-8515-ea09498275c0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0FalseFalseFalseFalseFalseFalseFalseFalseFalse
1FalseFalseFalseFalseTrueFalseFalseFalseFalse
2FalseFalseFalseFalseFalseFalseFalseFalseFalse
3FalseFalseFalseFalseFalseFalseFalseFalseFalse
4FalseFalseTrueTrueFalseFalseFalseFalseFalse
5FalseFalseFalseFalseFalseFalseFalseFalseFalse
6FalseFalseFalseFalseTrueFalseFalseFalseFalse
7FalseFalseFalseFalseFalseFalseFalseFalseFalse
8FalseFalseFalseFalseFalseFalseFalseFalseFalse
9FalseFalseFalseFalseFalseFalseFalseFalseFalse
10FalseFalseTrueTrueFalseFalseFalseFalseFalse
11FalseFalseFalseFalseFalseFalseFalseFalseFalse
12FalseFalseFalseFalseFalseFalseFalseFalseFalse
13FalseFalseTrueTrueTrueFalseFalseFalseFalse
14FalseFalseFalseFalseFalseFalseFalseFalseFalse
15FalseFalseFalseFalseTrueFalseFalseFalseFalse
16FalseFalseFalseFalseFalseFalseFalseFalseFalse
17FalseFalseFalseFalseFalseFalseFalseFalseFalse
18FalseFalseTrueTrueTrueFalseFalseFalseFalse
19FalseFalseFalseFalseFalseFalseFalseFalseFalse
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks Python Marks \\\n", + "0 False False False False False \n", + "1 False False False False True \n", + "2 False False False False False \n", + "3 False False False False False \n", + "4 False False True True False \n", + "5 False False False False False \n", + "6 False False False False True \n", + "7 False False False False False \n", + "8 False False False False False \n", + "9 False False False False False \n", + "10 False False True True False \n", + "11 False False False False False \n", + "12 False False False False False \n", + "13 False False True True True \n", + "14 False False False False False \n", + "15 False False False False True \n", + "16 False False False False False \n", + "17 False False False False False \n", + "18 False False True True True \n", + "19 False False False False False \n", + "\n", + " CompletionStatus EnrollmentDate Instructor Location \n", + "0 False False False False \n", + "1 False False False False \n", + "2 False False False False \n", + "3 False False False False \n", + "4 False False False False \n", + "5 False False False False \n", + "6 False False False False \n", + "7 False False False False \n", + "8 False False False False \n", + "9 False False False False \n", + "10 False False False False \n", + "11 False False False False \n", + "12 False False False False \n", + "13 False False False False \n", + "14 False False False False \n", + "15 False False False False \n", + "16 False False False False \n", + "17 False False False False \n", + "18 False False False False \n", + "19 False False False False " + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df1.isnull()" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "d5bda96b-6ffe-4890-8692-cc368234467a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 False\n", + "1 False\n", + "2 False\n", + "3 False\n", + "4 True\n", + "5 False\n", + "6 False\n", + "7 False\n", + "8 False\n", + "9 False\n", + "10 True\n", + "11 False\n", + "12 False\n", + "13 True\n", + "14 False\n", + "15 False\n", + "16 False\n", + "17 False\n", + "18 True\n", + "19 False\n", + "Name: Data Structure Marks, dtype: bool" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df1['Data Structure Marks'].isnull()" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "id": "89dbe727-56be-4645-b9c9-ab2bd0aa32f2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 True\n", + "1 True\n", + "2 True\n", + "3 True\n", + "4 False\n", + "5 True\n", + "6 True\n", + "7 True\n", + "8 True\n", + "9 True\n", + "10 False\n", + "11 True\n", + "12 True\n", + "13 False\n", + "14 True\n", + "15 True\n", + "16 True\n", + "17 True\n", + "18 False\n", + "19 True\n", + "Name: Data Structure Marks, dtype: bool" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df1['Data Structure Marks'].notnull()" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "id": "68309b85-5b06-4e91-83be-2efcdeb581f2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 65, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df1['Data Structure Marks'].hasnans" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "id": "5546a6a1-a293-423b-8b2c-738d223b6cd9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 66, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df1['StudentID'].hasnans" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "c2af08ff-928e-4796-af7b-8b9d1fce4413", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FullNameStudentID
0Alif RahmanPH1001
1Fatima AkhterPH1002
2Imran HossainPH1003
3Jannatul FerdousPH1004
4Kamal UddinPH1005
5Laila BegumPH1006
6Mahmudul HasanPH1007
7Nadia IslamPH1008
8Omar FaruqPH1009
9Priya SharmaPH1010
10Rahim SheikhPH1011
11Sadia ChowdhuryPH1012
12Tanvir AhmedPH1013
13Urmi AkterPH1014
14WahiduzzamanPH1015
15Ziaur RahmanPH1016
16Afsana MimiPH1017
17Babul AhmedPH1018
18Faria RahmanPH1019
19Nasir KhanPH1020
\n", + "
" + ], + "text/plain": [ + " FullName StudentID\n", + "0 Alif Rahman PH1001\n", + "1 Fatima Akhter PH1002\n", + "2 Imran Hossain PH1003\n", + "3 Jannatul Ferdous PH1004\n", + "4 Kamal Uddin PH1005\n", + "5 Laila Begum PH1006\n", + "6 Mahmudul Hasan PH1007\n", + "7 Nadia Islam PH1008\n", + "8 Omar Faruq PH1009\n", + "9 Priya Sharma PH1010\n", + "10 Rahim Sheikh PH1011\n", + "11 Sadia Chowdhury PH1012\n", + "12 Tanvir Ahmed PH1013\n", + "13 Urmi Akter PH1014\n", + "14 Wahiduzzaman PH1015\n", + "15 Ziaur Rahman PH1016\n", + "16 Afsana Mimi PH1017\n", + "17 Babul Ahmed PH1018\n", + "18 Faria Rahman PH1019\n", + "19 Nasir Khan PH1020" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df1[['FullName','StudentID']]" + ] + }, + { + "cell_type": "markdown", + "id": "c6d1321d-bfec-4e4f-a764-b5ed3dee6155", + "metadata": {}, + "source": [ + "# Handling Duplicates Values" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "599e152e-5224-413d-8a84-ee0aad98ace9", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
0AliceNew York85
1BobLondon90
2CharlieParis78
3AliceNew York70
4DavidTokyo95
5BobLondon90
\n", + "
" + ], + "text/plain": [ + " Name City Score\n", + "0 Alice New York 85\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "3 Alice New York 70\n", + "4 David Tokyo 95\n", + "5 Bob London 90" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "data = {\n", + " \"Name\": [\"Alice\", \"Bob\", \"Charlie\", \"Alice\", \"David\", \"Bob\"],\n", + " \"City\": [\"New York\", \"London\", \"Paris\", \"New York\", \"Tokyo\", \"London\"],\n", + " \"Score\": [85, 90, 78, 70, 95, 90]\n", + "}\n", + "\n", + "df = pd.DataFrame(data)\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "5400d69d-5998-411d-97a2-d21ce92ab5d7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "np.int64(1)" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.duplicated().sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "cbd5dd8b-568f-4181-b401-c2061ed3a5a9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
0AliceNew York85
1BobLondon90
2CharlieParis78
3AliceNew York70
4DavidTokyo95
\n", + "
" + ], + "text/plain": [ + " Name City Score\n", + "0 Alice New York 85\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "3 Alice New York 70\n", + "4 David Tokyo 95" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# delelting duplicates values \n", + "\n", + "df.drop_duplicates() \n" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "8f09a99e-2de5-4f3c-83d8-a88a13251038", + "metadata": {}, + "outputs": [], + "source": [ + "# permanent \n", + "\n", + "df.drop_duplicates(inplace= True) " + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "c7610164-3214-4a52-aa96-9d450267e69b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
0AliceNew York85
1BobLondon90
2CharlieParis78
3AliceNew York70
4DavidTokyo95
\n", + "
" + ], + "text/plain": [ + " Name City Score\n", + "0 Alice New York 85\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "3 Alice New York 70\n", + "4 David Tokyo 95" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "a03c0476-2024-42b1-bf4d-2796418da72f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
0AliceNew York85
1BobLondon90
2CharlieParis78
4DavidTokyo95
\n", + "
" + ], + "text/plain": [ + " Name City Score\n", + "0 Alice New York 85\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "4 David Tokyo 95" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# name er basis e duplicate deletion \n", + "\n", + "df.drop_duplicates(subset=['Name']) \n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9866115a-fa2d-474e-9737-6758c2d01076", + "metadata": {}, + "outputs": [], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "47acbf6d-32ce-4447-9d00-fffb88087798", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
0AliceNew York85
1BobLondon90
2CharlieParis78
4DavidTokyo95
\n", + "
" + ], + "text/plain": [ + " Name City Score\n", + "0 Alice New York 85\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "4 David Tokyo 95" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# city\n", + "df.drop_duplicates(subset=['City']) " + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "63d9e5a1-7d58-4aaf-b818-c4f72f45800e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
1BobLondon90
2CharlieParis78
3AliceNew York70
4DavidTokyo95
\n", + "
" + ], + "text/plain": [ + " Name City Score\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "3 Alice New York 70\n", + "4 David Tokyo 95" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.drop_duplicates(subset=['Name'],keep='last') " + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "28b47312-31af-4b84-b6a8-834811f8519b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
0AliceNew York85
1BobLondon90
2CharlieParis78
4DavidTokyo95
\n", + "
" + ], + "text/plain": [ + " Name City Score\n", + "0 Alice New York 85\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "4 David Tokyo 95" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.drop_duplicates(subset=['Name'],keep='first') " + ] + }, + { + "cell_type": "markdown", + "id": "9aade5b7-786b-49b1-910f-6d0def982b88", + "metadata": {}, + "source": [ + "# Handling Null values " + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "fb6d04e6-66db-4d38-a9a7-5e835e8beb9c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
20NaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN " + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv('student_data.csv')\n", + "\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "508f5960-e1da-4e89-9f26-7ac26c2e616e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka " + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.dropna() " + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "836d231c-fbe0-49a0-8d60-268b45c88ba6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
20NaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN " + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "909bd77a-a79a-49b3-ace1-159baa0fa562", + "metadata": {}, + "outputs": [], + "source": [ + "df.dropna(how='all',inplace = True) " + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "6ec22101-819e-48e0-89f5-1d9c74ef7dd1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka " + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df " + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "fe111b0b-f29d-465d-8976-a5c912c504f3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka " + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.dropna(subset=['Python Marks']) " + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "561c2b2d-b785-4d1e-ba7b-b2a597e635c5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka " + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.dropna(subset=['Python Marks','Algorithm Marks']) " + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "7678e132-1426-4b4d-8021-f9a69083cb48", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka " + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "fc68b447-7f5d-42de-808c-fdff9eefd218", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.00.0In Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal Uddin0.00.095.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.00.0In Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim Sheikh0.00.091.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi Akter0.00.00.0Not Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.00.0In Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria Rahman0.00.00.0Not Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin 0.0 0.0 \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh 0.0 0.0 \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter 0.0 0.0 \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman 0.0 0.0 \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 0.0 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 0.0 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 0.0 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 0.0 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 0.0 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka " + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.fillna(0) " + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "92062d84-9faa-4b0d-a297-e7f797297b1a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
20NaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN " + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv('student_data.csv')\n", + "\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "527669ef-5a3c-46e1-9593-02960a333cc4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.00.0In Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal Uddin0.00.095.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.00.0In Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim Sheikh0.00.091.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi Akter0.00.00.0Not Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.00.0In Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria Rahman0.00.00.0Not Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
20000.00.00.00000
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin 0.0 0.0 \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh 0.0 0.0 \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter 0.0 0.0 \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman 0.0 0.0 \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 0 0 0.0 0.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 0.0 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 0.0 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 0.0 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 0.0 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 0.0 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 0.0 0 0 0 0 " + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.fillna(0)" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "3b1588d5-b766-4b51-b6e4-d4e2ff86d944", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 Alif Rahman\n", + "1 Fatima Akhter\n", + "2 Imran Hossain\n", + "3 Jannatul Ferdous\n", + "4 Kamal Uddin\n", + "5 Laila Begum\n", + "6 Mahmudul Hasan\n", + "7 Nadia Islam\n", + "8 Omar Faruq\n", + "9 Priya Sharma\n", + "10 Rahim Sheikh\n", + "11 Sadia Chowdhury\n", + "12 Tanvir Ahmed\n", + "13 Urmi Akter\n", + "14 Wahiduzzaman\n", + "15 Ziaur Rahman\n", + "16 Afsana Mimi\n", + "17 Babul Ahmed\n", + "18 Faria Rahman\n", + "19 Nasir Khan\n", + "20 unknown\n", + "Name: FullName, dtype: object" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['FullName'].fillna('unknown') " + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "id": "652cfef8-75c5-4bf1-8faf-66326e54b8a9", + "metadata": {}, + "outputs": [], + "source": [ + "df['Python Marks'].fillna(df['Python Marks'].mean(),inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "id": "29635133-f18c-4226-b9d0-3cb4149f966a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka
20NaNNaNNaNNaN85.666667NaNNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 85.666667 NaN NaN NaN NaN " + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "markdown", + "id": "983b10f6-dfae-483e-b191-b8daada58aca", + "metadata": {}, + "source": [ + "# Statistical Functions" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "id": "432823de-7bdb-4e2f-9565-957455f150ef", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka
20NaNNaNNaNNaN85.666667NaNNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 85.666667 NaN NaN NaN NaN " + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "id": "11d80945-179b-46f4-b841-38cdc57e78f3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka " + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.dropna() " + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "id": "4452262b-6a10-4227-8b93-db69afc781be", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(1344.0)" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# sum\n", + "df['Data Structure Marks'].sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "614d0f08-2bae-49dd-8a8b-9dca005b0e43", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "72.0\n" + ] + }, + { + "data": { + "text/plain": [ + "94.0" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# max and min \n", + "print(df['Data Structure Marks'].min())\n", + "df['Data Structure Marks'].max()" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "id": "8f625725-6ae1-401f-b87a-311f655ce4d9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(84.0)" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#mean -> average \n", + "\n", + "df['Data Structure Marks'].mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "fd24f7ae-96fa-44a0-9f17-d026d7262a21", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "85.5" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#median \n", + "df['Data Structure Marks'].median()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "id": "72b3052b-6283-4671-8dbb-4376e2a3e2b9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 75.0\n", + "1 85.0\n", + "2 86.0\n", + "3 88.0\n", + "Name: Data Structure Marks, dtype: float64" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# mode -> highest frequency er number \n", + "\n", + "df['Data Structure Marks'].mode()" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "id": "77633923-5583-403b-b653-ff600fe99c8f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "6.501281924871945" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# standard deviation -> std \n", + "df['Data Structure Marks'].std()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "id": "d3dc69f0-81d4-4860-9812-cb7ee9209ff9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Data Structure MarksPython Marks
Data Structure Marks1.0000000.776845
Python Marks0.7768451.000000
\n", + "
" + ], + "text/plain": [ + " Data Structure Marks Python Marks\n", + "Data Structure Marks 1.000000 0.776845\n", + "Python Marks 0.776845 1.000000" + ] + }, + "execution_count": 66, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# correlation matrix \n", + "\n", + "df[['Data Structure Marks','Python Marks']].corr() \n" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "3195a120-983b-44ea-9bef-d345f380fd4c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 173.000000\n", + "1 177.666667\n", + "2 173.000000\n", + "3 160.000000\n", + "4 95.000000\n", + "5 153.000000\n", + "6 165.666667\n", + "7 166.000000\n", + "8 148.000000\n", + "9 177.000000\n", + "10 91.000000\n", + "11 172.000000\n", + "12 154.000000\n", + "13 85.666667\n", + "14 170.000000\n", + "15 179.666667\n", + "16 183.000000\n", + "17 173.000000\n", + "18 85.666667\n", + "19 175.000000\n", + "20 85.666667\n", + "dtype: float64" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# sum in different columns row wise\n", + "df[['Data Structure Marks','Python Marks']].sum(axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "id": "7d70f56b-eb5c-4da8-8bd4-8a8cd809e2d3", + "metadata": {}, + "outputs": [], + "source": [ + "df['Total Marks'] = df.iloc[::,2:5].sum(axis=1) " + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "id": "92d00ccb-52df-4e9b-9ee7-c3688275536f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal Marks
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka258.000000
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram269.666667
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka261.000000
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet238.000000
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram95.000000
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi228.000000
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka245.666667
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram247.000000
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka220.000000
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet266.000000
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna91.000000
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram257.000000
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka229.000000
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi85.666667
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka256.000000
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram273.666667
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka273.000000
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet261.000000
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram85.666667
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka261.000000
20NaNNaNNaNNaN85.666667NaNNaNNaNNaN85.666667
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 85.666667 NaN NaN NaN NaN \n", + "\n", + " Total Marks \n", + "0 258.000000 \n", + "1 269.666667 \n", + "2 261.000000 \n", + "3 238.000000 \n", + "4 95.000000 \n", + "5 228.000000 \n", + "6 245.666667 \n", + "7 247.000000 \n", + "8 220.000000 \n", + "9 266.000000 \n", + "10 91.000000 \n", + "11 257.000000 \n", + "12 229.000000 \n", + "13 85.666667 \n", + "14 256.000000 \n", + "15 273.666667 \n", + "16 273.000000 \n", + "17 261.000000 \n", + "18 85.666667 \n", + "19 261.000000 \n", + "20 85.666667 " + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "id": "bc317e07-affc-4d6b-91f7-4e555da8a3ac", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Data Structure MarksAlgorithm MarksPython MarksTotal Marks
count16.00000016.00000021.00000021.000000
mean84.00000084.00000085.666667213.666667
std6.5012826.5012824.51294473.089215
min72.00000072.00000076.00000085.666667
25%79.50000079.50000085.000000220.000000
50%85.50000085.50000085.666667247.000000
75%88.25000088.25000088.000000261.000000
max94.00000094.00000095.000000273.666667
\n", + "
" + ], + "text/plain": [ + " Data Structure Marks Algorithm Marks Python Marks Total Marks\n", + "count 16.000000 16.000000 21.000000 21.000000\n", + "mean 84.000000 84.000000 85.666667 213.666667\n", + "std 6.501282 6.501282 4.512944 73.089215\n", + "min 72.000000 72.000000 76.000000 85.666667\n", + "25% 79.500000 79.500000 85.000000 220.000000\n", + "50% 85.500000 85.500000 85.666667 247.000000\n", + "75% 88.250000 88.250000 88.000000 261.000000\n", + "max 94.000000 94.000000 95.000000 273.666667" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "id": "276e4368-6dde-4fde-a885-0bfe8c4186de", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal Marks
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka258.000000
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram269.666667
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka261.000000
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet238.000000
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram95.000000
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi228.000000
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka245.666667
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram247.000000
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka220.000000
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet266.000000
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna91.000000
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram257.000000
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka229.000000
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi85.666667
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka256.000000
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram273.666667
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka273.000000
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet261.000000
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram85.666667
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka261.000000
20NaNNaNNaNNaN85.666667NaNNaNNaNNaN85.666667
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 85.666667 NaN NaN NaN NaN \n", + "\n", + " Total Marks \n", + "0 258.000000 \n", + "1 269.666667 \n", + "2 261.000000 \n", + "3 238.000000 \n", + "4 95.000000 \n", + "5 228.000000 \n", + "6 245.666667 \n", + "7 247.000000 \n", + "8 220.000000 \n", + "9 266.000000 \n", + "10 91.000000 \n", + "11 257.000000 \n", + "12 229.000000 \n", + "13 85.666667 \n", + "14 256.000000 \n", + "15 273.666667 \n", + "16 273.000000 \n", + "17 261.000000 \n", + "18 85.666667 \n", + "19 261.000000 \n", + "20 85.666667 " + ] + }, + "execution_count": 73, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "markdown", + "id": "e6c104f3-b4fc-494b-abe9-f74ed3148ec7", + "metadata": {}, + "source": [ + "# apply function on df" + ] + }, + { + "cell_type": "code", + "execution_count": 91, + "id": "1fa5bab1-ad97-40a8-9133-62af4e60fe57", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal Marks
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka258.000000
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram269.666667
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka261.000000
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet238.000000
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram95.000000
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi228.000000
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka245.666667
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram247.000000
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka220.000000
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet266.000000
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna91.000000
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram257.000000
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka229.000000
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi85.666667
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka256.000000
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram273.666667
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka273.000000
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet261.000000
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram85.666667
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka261.000000
20NaNNaNNaNNaN85.666667NaNNaNNaNNaN85.666667
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 85.666667 NaN NaN NaN NaN \n", + "\n", + " Total Marks \n", + "0 258.000000 \n", + "1 269.666667 \n", + "2 261.000000 \n", + "3 238.000000 \n", + "4 95.000000 \n", + "5 228.000000 \n", + "6 245.666667 \n", + "7 247.000000 \n", + "8 220.000000 \n", + "9 266.000000 \n", + "10 91.000000 \n", + "11 257.000000 \n", + "12 229.000000 \n", + "13 85.666667 \n", + "14 256.000000 \n", + "15 273.666667 \n", + "16 273.000000 \n", + "17 261.000000 \n", + "18 85.666667 \n", + "19 261.000000 \n", + "20 85.666667 " + ] + }, + "execution_count": 91, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "id": "6b874b24-167e-4162-8e4e-530e53f62984", + "metadata": {}, + "outputs": [], + "source": [ + "#min max scaling \n", + "\n", + "mn = df['Total Marks'].min() \n", + "mx = df['Total Marks'].max() \n", + "\n", + "\n", + "df['Scaled Marks'] = df['Total Marks'].apply(lambda x : (x-mn)/(mx-mn))" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "id": "9bdbd48d-dd6d-40a6-9642-c679b4bfc25e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal MarksScaled Marks
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka258.0000000.916667
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram269.6666670.978723
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka261.0000000.932624
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet238.0000000.810284
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram95.0000000.049645
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi228.0000000.757092
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka245.6666670.851064
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram247.0000000.858156
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka220.0000000.714539
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet266.0000000.959220
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna91.0000000.028369
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram257.0000000.911348
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka229.0000000.762411
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi85.6666670.000000
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka256.0000000.906028
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram273.6666671.000000
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka273.0000000.996454
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet261.0000000.932624
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram85.6666670.000000
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka261.0000000.932624
20NaNNaNNaNNaN85.666667NaNNaNNaNNaN85.6666670.000000
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 85.666667 NaN NaN NaN NaN \n", + "\n", + " Total Marks Scaled Marks \n", + "0 258.000000 0.916667 \n", + "1 269.666667 0.978723 \n", + "2 261.000000 0.932624 \n", + "3 238.000000 0.810284 \n", + "4 95.000000 0.049645 \n", + "5 228.000000 0.757092 \n", + "6 245.666667 0.851064 \n", + "7 247.000000 0.858156 \n", + "8 220.000000 0.714539 \n", + "9 266.000000 0.959220 \n", + "10 91.000000 0.028369 \n", + "11 257.000000 0.911348 \n", + "12 229.000000 0.762411 \n", + "13 85.666667 0.000000 \n", + "14 256.000000 0.906028 \n", + "15 273.666667 1.000000 \n", + "16 273.000000 0.996454 \n", + "17 261.000000 0.932624 \n", + "18 85.666667 0.000000 \n", + "19 261.000000 0.932624 \n", + "20 85.666667 0.000000 " + ] + }, + "execution_count": 93, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "id": "0e1830e3-7232-4ed7-903f-21dc35d8013e", + "metadata": {}, + "outputs": [], + "source": [ + "# custom built function \n", + "\n", + "def grading_system(marks):\n", + "\n", + " if marks >=260:\n", + " return 'A+' \n", + " elif marks>=250:\n", + " return 'A' \n", + " else:\n", + " return 'A-'\n", + "\n", + "\n", + "df['Grade'] = df['Total Marks'].apply(grading_system) \n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "id": "7385fd62-0ea6-47f4-8e35-2c330dce735d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal MarksScaled MarksGrade
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka258.0000000.916667A
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram269.6666670.978723A+
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka261.0000000.932624A+
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet238.0000000.810284A-
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram95.0000000.049645A-
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi228.0000000.757092A-
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka245.6666670.851064A-
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram247.0000000.858156A-
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka220.0000000.714539A-
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet266.0000000.959220A+
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna91.0000000.028369A-
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram257.0000000.911348A
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka229.0000000.762411A-
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi85.6666670.000000A-
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka256.0000000.906028A
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram273.6666671.000000A+
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka273.0000000.996454A+
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet261.0000000.932624A+
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram85.6666670.000000A-
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka261.0000000.932624A+
20NaNNaNNaNNaN85.666667NaNNaNNaNNaN85.6666670.000000A-
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 85.666667 NaN NaN NaN NaN \n", + "\n", + " Total Marks Scaled Marks Grade \n", + "0 258.000000 0.916667 A \n", + "1 269.666667 0.978723 A+ \n", + "2 261.000000 0.932624 A+ \n", + "3 238.000000 0.810284 A- \n", + "4 95.000000 0.049645 A- \n", + "5 228.000000 0.757092 A- \n", + "6 245.666667 0.851064 A- \n", + "7 247.000000 0.858156 A- \n", + "8 220.000000 0.714539 A- \n", + "9 266.000000 0.959220 A+ \n", + "10 91.000000 0.028369 A- \n", + "11 257.000000 0.911348 A \n", + "12 229.000000 0.762411 A- \n", + "13 85.666667 0.000000 A- \n", + "14 256.000000 0.906028 A \n", + "15 273.666667 1.000000 A+ \n", + "16 273.000000 0.996454 A+ \n", + "17 261.000000 0.932624 A+ \n", + "18 85.666667 0.000000 A- \n", + "19 261.000000 0.932624 A+ \n", + "20 85.666667 0.000000 A- " + ] + }, + "execution_count": 95, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 96, + "id": "572611a8-3f3f-473e-9139-63bbc6bfaf4d", + "metadata": {}, + "outputs": [], + "source": [ + "def marking_system(df): \n", + " a = df['Data Structure Marks'] * 2 \n", + " b = df['Python Marks'] * 3 \n", + " c = df['Algorithm Marks'] * 4\n", + "\n", + " return a+b+c \n", + "\n", + "\n", + "\n", + "df['Exceptional Marks'] = df.apply(marking_system,axis=1) \n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 97, + "id": "748250c4-3d9c-4f7e-bb33-a8069d645f10", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal MarksScaled MarksGradeExceptional Marks
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka258.0000000.916667A774.0
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram269.6666670.978723A+809.0
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka261.0000000.932624A+783.0
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet238.0000000.810284A-714.0
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram95.0000000.049645A-NaN
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi228.0000000.757092A-684.0
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka245.6666670.851064A-737.0
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram247.0000000.858156A-741.0
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka220.0000000.714539A-660.0
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet266.0000000.959220A+798.0
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna91.0000000.028369A-NaN
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram257.0000000.911348A771.0
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka229.0000000.762411A-687.0
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi85.6666670.000000A-NaN
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka256.0000000.906028A768.0
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram273.6666671.000000A+821.0
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka273.0000000.996454A+819.0
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet261.0000000.932624A+783.0
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram85.6666670.000000A-NaN
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka261.0000000.932624A+783.0
20NaNNaNNaNNaN85.666667NaNNaNNaNNaN85.6666670.000000A-NaN
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 85.666667 NaN NaN NaN NaN \n", + "\n", + " Total Marks Scaled Marks Grade Exceptional Marks \n", + "0 258.000000 0.916667 A 774.0 \n", + "1 269.666667 0.978723 A+ 809.0 \n", + "2 261.000000 0.932624 A+ 783.0 \n", + "3 238.000000 0.810284 A- 714.0 \n", + "4 95.000000 0.049645 A- NaN \n", + "5 228.000000 0.757092 A- 684.0 \n", + "6 245.666667 0.851064 A- 737.0 \n", + "7 247.000000 0.858156 A- 741.0 \n", + "8 220.000000 0.714539 A- 660.0 \n", + "9 266.000000 0.959220 A+ 798.0 \n", + "10 91.000000 0.028369 A- NaN \n", + "11 257.000000 0.911348 A 771.0 \n", + "12 229.000000 0.762411 A- 687.0 \n", + "13 85.666667 0.000000 A- NaN \n", + "14 256.000000 0.906028 A 768.0 \n", + "15 273.666667 1.000000 A+ 821.0 \n", + "16 273.000000 0.996454 A+ 819.0 \n", + "17 261.000000 0.932624 A+ 783.0 \n", + "18 85.666667 0.000000 A- NaN \n", + "19 261.000000 0.932624 A+ 783.0 \n", + "20 85.666667 0.000000 A- NaN " + ] + }, + "execution_count": 97, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "markdown", + "id": "aee121e5-9d3d-4ec3-9864-2aab154f2b3c", + "metadata": {}, + "source": [ + "# datetime and time delta " + ] + }, + { + "cell_type": "code", + "execution_count": 101, + "id": "9b07edb3-3362-4283-9235-5102a6298afe", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusEnrollmentDateFinishedDateInstructorLocationTotal Marks
0PH0001Alif RahmanCompleted2024-09-012024-12-23Ms. SalmaKhulna300
1PH0002Fatima AkhterCompleted2024-08-112024-11-07Mr. KarimDhaka271
2PH0003Imran HossainCompleted2024-05-082024-08-08Ms. SalmaDhaka269
3PH0004Jannatul FerdousCompleted2024-07-052024-09-23Mr. KarimKhulna270
4PH0005Kamal UddinCompleted2024-02-012024-04-17Mr. DavidSylhet254
5PH0006Laila BegumCompleted2024-09-072024-12-31Mr. DavidKhulna272
6PH0007Mahmudul HasanCompleted2024-06-072024-07-20Mr. DavidChattogram249
7PH0008Nadia IslamCompleted2024-03-222024-05-01Ms. SalmaKhulna246
8PH0009Omar FaruqCompleted2024-02-122024-06-08Mr. KarimDhaka291
9PH0010Priya SharmaCompleted2024-06-192024-08-19Mr. DavidDhaka286
10PH0011Rahim SheikhCompleted2024-03-142024-06-11Mr. KarimSylhet283
11PH0012Sadia ChowdhuryCompleted2024-08-042024-10-25Mr. KarimSylhet266
12PH0013Tanvir AhmedCompleted2024-06-072024-08-03Mr. DavidDhaka248
13PH0014Urmi AkterCompleted2024-01-042024-03-23Mr. DavidSylhet285
14PH0015WahiduzzamanCompleted2024-02-222024-05-16Mr. DavidRajshahi291
15PH0016Ziaur RahmanCompleted2024-03-232024-06-21Ms. SalmaRajshahi234
16PH0017Afsana MimiCompleted2024-01-182024-03-16Mr. DavidKhulna236
17PH0018Babul AhmedCompleted2024-06-232024-09-20Mr. DavidDhaka278
18PH0019Faria RahmanCompleted2024-04-192024-08-17Mr. KarimSylhet277
19PH0020Tariq HasanCompleted2024-07-212024-10-11Mr. KarimKhulna253
\n", + "
" + ], + "text/plain": [ + " StudentID FullName CompletionStatus EnrollmentDate FinishedDate \\\n", + "0 PH0001 Alif Rahman Completed 2024-09-01 2024-12-23 \n", + "1 PH0002 Fatima Akhter Completed 2024-08-11 2024-11-07 \n", + "2 PH0003 Imran Hossain Completed 2024-05-08 2024-08-08 \n", + "3 PH0004 Jannatul Ferdous Completed 2024-07-05 2024-09-23 \n", + "4 PH0005 Kamal Uddin Completed 2024-02-01 2024-04-17 \n", + "5 PH0006 Laila Begum Completed 2024-09-07 2024-12-31 \n", + "6 PH0007 Mahmudul Hasan Completed 2024-06-07 2024-07-20 \n", + "7 PH0008 Nadia Islam Completed 2024-03-22 2024-05-01 \n", + "8 PH0009 Omar Faruq Completed 2024-02-12 2024-06-08 \n", + "9 PH0010 Priya Sharma Completed 2024-06-19 2024-08-19 \n", + "10 PH0011 Rahim Sheikh Completed 2024-03-14 2024-06-11 \n", + "11 PH0012 Sadia Chowdhury Completed 2024-08-04 2024-10-25 \n", + "12 PH0013 Tanvir Ahmed Completed 2024-06-07 2024-08-03 \n", + "13 PH0014 Urmi Akter Completed 2024-01-04 2024-03-23 \n", + "14 PH0015 Wahiduzzaman Completed 2024-02-22 2024-05-16 \n", + "15 PH0016 Ziaur Rahman Completed 2024-03-23 2024-06-21 \n", + "16 PH0017 Afsana Mimi Completed 2024-01-18 2024-03-16 \n", + "17 PH0018 Babul Ahmed Completed 2024-06-23 2024-09-20 \n", + "18 PH0019 Faria Rahman Completed 2024-04-19 2024-08-17 \n", + "19 PH0020 Tariq Hasan Completed 2024-07-21 2024-10-11 \n", + "\n", + " Instructor Location Total Marks \n", + "0 Ms. Salma Khulna 300 \n", + "1 Mr. Karim Dhaka 271 \n", + "2 Ms. Salma Dhaka 269 \n", + "3 Mr. Karim Khulna 270 \n", + "4 Mr. David Sylhet 254 \n", + "5 Mr. David Khulna 272 \n", + "6 Mr. David Chattogram 249 \n", + "7 Ms. Salma Khulna 246 \n", + "8 Mr. Karim Dhaka 291 \n", + "9 Mr. David Dhaka 286 \n", + "10 Mr. Karim Sylhet 283 \n", + "11 Mr. Karim Sylhet 266 \n", + "12 Mr. David Dhaka 248 \n", + "13 Mr. David Sylhet 285 \n", + "14 Mr. David Rajshahi 291 \n", + "15 Ms. Salma Rajshahi 234 \n", + "16 Mr. David Khulna 236 \n", + "17 Mr. David Dhaka 278 \n", + "18 Mr. Karim Sylhet 277 \n", + "19 Mr. Karim Khulna 253 " + ] + }, + "execution_count": 101, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv('student_completed_data.csv')\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 102, + "id": "b84033a5-b492-4f67-8315-05682f6b8baa", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 2024-09-01\n", + "1 2024-08-11\n", + "2 2024-05-08\n", + "3 2024-07-05\n", + "4 2024-02-01\n", + "5 2024-09-07\n", + "6 2024-06-07\n", + "7 2024-03-22\n", + "8 2024-02-12\n", + "9 2024-06-19\n", + "10 2024-03-14\n", + "11 2024-08-04\n", + "12 2024-06-07\n", + "13 2024-01-04\n", + "14 2024-02-22\n", + "15 2024-03-23\n", + "16 2024-01-18\n", + "17 2024-06-23\n", + "18 2024-04-19\n", + "19 2024-07-21\n", + "Name: EnrollmentDate, dtype: object" + ] + }, + "execution_count": 102, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['EnrollmentDate']" + ] + }, + { + "cell_type": "code", + "execution_count": 103, + "id": "974d67fa-de37-4357-a14a-2cef843850e9", + "metadata": {}, + "outputs": [], + "source": [ + "df['EnrollmentDate'] = pd.to_datetime(df['EnrollmentDate']) " + ] + }, + { + "cell_type": "code", + "execution_count": 104, + "id": "a2f134f0-f4df-4618-8b95-da46bedc8cd9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 2024-09-01\n", + "1 2024-08-11\n", + "2 2024-05-08\n", + "3 2024-07-05\n", + "4 2024-02-01\n", + "5 2024-09-07\n", + "6 2024-06-07\n", + "7 2024-03-22\n", + "8 2024-02-12\n", + "9 2024-06-19\n", + "10 2024-03-14\n", + "11 2024-08-04\n", + "12 2024-06-07\n", + "13 2024-01-04\n", + "14 2024-02-22\n", + "15 2024-03-23\n", + "16 2024-01-18\n", + "17 2024-06-23\n", + "18 2024-04-19\n", + "19 2024-07-21\n", + "Name: EnrollmentDate, dtype: datetime64[ns]" + ] + }, + "execution_count": 104, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['EnrollmentDate'] " + ] + }, + { + "cell_type": "code", + "execution_count": 105, + "id": "896dca69-c5e2-4d4c-88f4-9961e6d5e223", + "metadata": {}, + "outputs": [], + "source": [ + "df['Enrollment Year'] = df['EnrollmentDate'].dt.year " + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "id": "3edc66bf-61f7-461e-aaf9-b9c6d9fcacc6", + "metadata": {}, + "outputs": [], + "source": [ + "df['Enrollment Date'] = df['EnrollmentDate'].dt.day" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "id": "a8247b17-8bc3-4297-a8e4-fd40a4034e17", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusEnrollmentDateFinishedDateInstructorLocationTotal MarksEnrollment YearEnrollment Date
0PH0001Alif RahmanCompleted2024-09-012024-12-23Ms. SalmaKhulna30020241
1PH0002Fatima AkhterCompleted2024-08-112024-11-07Mr. KarimDhaka271202411
2PH0003Imran HossainCompleted2024-05-082024-08-08Ms. SalmaDhaka26920248
3PH0004Jannatul FerdousCompleted2024-07-052024-09-23Mr. KarimKhulna27020245
4PH0005Kamal UddinCompleted2024-02-012024-04-17Mr. DavidSylhet25420241
5PH0006Laila BegumCompleted2024-09-072024-12-31Mr. DavidKhulna27220247
6PH0007Mahmudul HasanCompleted2024-06-072024-07-20Mr. DavidChattogram24920247
7PH0008Nadia IslamCompleted2024-03-222024-05-01Ms. SalmaKhulna246202422
8PH0009Omar FaruqCompleted2024-02-122024-06-08Mr. KarimDhaka291202412
9PH0010Priya SharmaCompleted2024-06-192024-08-19Mr. DavidDhaka286202419
10PH0011Rahim SheikhCompleted2024-03-142024-06-11Mr. KarimSylhet283202414
11PH0012Sadia ChowdhuryCompleted2024-08-042024-10-25Mr. KarimSylhet26620244
12PH0013Tanvir AhmedCompleted2024-06-072024-08-03Mr. DavidDhaka24820247
13PH0014Urmi AkterCompleted2024-01-042024-03-23Mr. DavidSylhet28520244
14PH0015WahiduzzamanCompleted2024-02-222024-05-16Mr. DavidRajshahi291202422
15PH0016Ziaur RahmanCompleted2024-03-232024-06-21Ms. SalmaRajshahi234202423
16PH0017Afsana MimiCompleted2024-01-182024-03-16Mr. DavidKhulna236202418
17PH0018Babul AhmedCompleted2024-06-232024-09-20Mr. DavidDhaka278202423
18PH0019Faria RahmanCompleted2024-04-192024-08-17Mr. KarimSylhet277202419
19PH0020Tariq HasanCompleted2024-07-212024-10-11Mr. KarimKhulna253202421
\n", + "
" + ], + "text/plain": [ + " StudentID FullName CompletionStatus EnrollmentDate FinishedDate \\\n", + "0 PH0001 Alif Rahman Completed 2024-09-01 2024-12-23 \n", + "1 PH0002 Fatima Akhter Completed 2024-08-11 2024-11-07 \n", + "2 PH0003 Imran Hossain Completed 2024-05-08 2024-08-08 \n", + "3 PH0004 Jannatul Ferdous Completed 2024-07-05 2024-09-23 \n", + "4 PH0005 Kamal Uddin Completed 2024-02-01 2024-04-17 \n", + "5 PH0006 Laila Begum Completed 2024-09-07 2024-12-31 \n", + "6 PH0007 Mahmudul Hasan Completed 2024-06-07 2024-07-20 \n", + "7 PH0008 Nadia Islam Completed 2024-03-22 2024-05-01 \n", + "8 PH0009 Omar Faruq Completed 2024-02-12 2024-06-08 \n", + "9 PH0010 Priya Sharma Completed 2024-06-19 2024-08-19 \n", + "10 PH0011 Rahim Sheikh Completed 2024-03-14 2024-06-11 \n", + "11 PH0012 Sadia Chowdhury Completed 2024-08-04 2024-10-25 \n", + "12 PH0013 Tanvir Ahmed Completed 2024-06-07 2024-08-03 \n", + "13 PH0014 Urmi Akter Completed 2024-01-04 2024-03-23 \n", + "14 PH0015 Wahiduzzaman Completed 2024-02-22 2024-05-16 \n", + "15 PH0016 Ziaur Rahman Completed 2024-03-23 2024-06-21 \n", + "16 PH0017 Afsana Mimi Completed 2024-01-18 2024-03-16 \n", + "17 PH0018 Babul Ahmed Completed 2024-06-23 2024-09-20 \n", + "18 PH0019 Faria Rahman Completed 2024-04-19 2024-08-17 \n", + "19 PH0020 Tariq Hasan Completed 2024-07-21 2024-10-11 \n", + "\n", + " Instructor Location Total Marks Enrollment Year Enrollment Date \n", + "0 Ms. Salma Khulna 300 2024 1 \n", + "1 Mr. Karim Dhaka 271 2024 11 \n", + "2 Ms. Salma Dhaka 269 2024 8 \n", + "3 Mr. Karim Khulna 270 2024 5 \n", + "4 Mr. David Sylhet 254 2024 1 \n", + "5 Mr. David Khulna 272 2024 7 \n", + "6 Mr. David Chattogram 249 2024 7 \n", + "7 Ms. Salma Khulna 246 2024 22 \n", + "8 Mr. Karim Dhaka 291 2024 12 \n", + "9 Mr. David Dhaka 286 2024 19 \n", + "10 Mr. Karim Sylhet 283 2024 14 \n", + "11 Mr. Karim Sylhet 266 2024 4 \n", + "12 Mr. David Dhaka 248 2024 7 \n", + "13 Mr. David Sylhet 285 2024 4 \n", + "14 Mr. David Rajshahi 291 2024 22 \n", + "15 Ms. Salma Rajshahi 234 2024 23 \n", + "16 Mr. David Khulna 236 2024 18 \n", + "17 Mr. David Dhaka 278 2024 23 \n", + "18 Mr. Karim Sylhet 277 2024 19 \n", + "19 Mr. Karim Khulna 253 2024 21 " + ] + }, + "execution_count": 108, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "id": "1081a84c-8807-4b03-92e3-adc479ed549c", + "metadata": {}, + "outputs": [], + "source": [ + "df['FinishedDate'] = pd.to_datetime(df['FinishedDate']) " + ] + }, + { + "cell_type": "code", + "execution_count": 111, + "id": "9229dfff-7a09-4485-a959-8f85861c8e77", + "metadata": {}, + "outputs": [], + "source": [ + "df['Total time taken to finish']= df['FinishedDate'] - df['EnrollmentDate']" + ] + }, + { + "cell_type": "code", + "execution_count": 112, + "id": "a0fbf580-84b5-419e-8839-2e10f61ba873", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusEnrollmentDateFinishedDateInstructorLocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
0PH0001Alif RahmanCompleted2024-09-012024-12-23Ms. SalmaKhulna30020241113 days
1PH0002Fatima AkhterCompleted2024-08-112024-11-07Mr. KarimDhaka27120241188 days
2PH0003Imran HossainCompleted2024-05-082024-08-08Ms. SalmaDhaka2692024892 days
3PH0004Jannatul FerdousCompleted2024-07-052024-09-23Mr. KarimKhulna2702024580 days
4PH0005Kamal UddinCompleted2024-02-012024-04-17Mr. DavidSylhet2542024176 days
5PH0006Laila BegumCompleted2024-09-072024-12-31Mr. DavidKhulna27220247115 days
6PH0007Mahmudul HasanCompleted2024-06-072024-07-20Mr. DavidChattogram2492024743 days
7PH0008Nadia IslamCompleted2024-03-222024-05-01Ms. SalmaKhulna24620242240 days
8PH0009Omar FaruqCompleted2024-02-122024-06-08Mr. KarimDhaka291202412117 days
9PH0010Priya SharmaCompleted2024-06-192024-08-19Mr. DavidDhaka28620241961 days
10PH0011Rahim SheikhCompleted2024-03-142024-06-11Mr. KarimSylhet28320241489 days
11PH0012Sadia ChowdhuryCompleted2024-08-042024-10-25Mr. KarimSylhet2662024482 days
12PH0013Tanvir AhmedCompleted2024-06-072024-08-03Mr. DavidDhaka2482024757 days
13PH0014Urmi AkterCompleted2024-01-042024-03-23Mr. DavidSylhet2852024479 days
14PH0015WahiduzzamanCompleted2024-02-222024-05-16Mr. DavidRajshahi29120242284 days
15PH0016Ziaur RahmanCompleted2024-03-232024-06-21Ms. SalmaRajshahi23420242390 days
16PH0017Afsana MimiCompleted2024-01-182024-03-16Mr. DavidKhulna23620241858 days
17PH0018Babul AhmedCompleted2024-06-232024-09-20Mr. DavidDhaka27820242389 days
18PH0019Faria RahmanCompleted2024-04-192024-08-17Mr. KarimSylhet277202419120 days
19PH0020Tariq HasanCompleted2024-07-212024-10-11Mr. KarimKhulna25320242182 days
\n", + "
" + ], + "text/plain": [ + " StudentID FullName CompletionStatus EnrollmentDate FinishedDate \\\n", + "0 PH0001 Alif Rahman Completed 2024-09-01 2024-12-23 \n", + "1 PH0002 Fatima Akhter Completed 2024-08-11 2024-11-07 \n", + "2 PH0003 Imran Hossain Completed 2024-05-08 2024-08-08 \n", + "3 PH0004 Jannatul Ferdous Completed 2024-07-05 2024-09-23 \n", + "4 PH0005 Kamal Uddin Completed 2024-02-01 2024-04-17 \n", + "5 PH0006 Laila Begum Completed 2024-09-07 2024-12-31 \n", + "6 PH0007 Mahmudul Hasan Completed 2024-06-07 2024-07-20 \n", + "7 PH0008 Nadia Islam Completed 2024-03-22 2024-05-01 \n", + "8 PH0009 Omar Faruq Completed 2024-02-12 2024-06-08 \n", + "9 PH0010 Priya Sharma Completed 2024-06-19 2024-08-19 \n", + "10 PH0011 Rahim Sheikh Completed 2024-03-14 2024-06-11 \n", + "11 PH0012 Sadia Chowdhury Completed 2024-08-04 2024-10-25 \n", + "12 PH0013 Tanvir Ahmed Completed 2024-06-07 2024-08-03 \n", + "13 PH0014 Urmi Akter Completed 2024-01-04 2024-03-23 \n", + "14 PH0015 Wahiduzzaman Completed 2024-02-22 2024-05-16 \n", + "15 PH0016 Ziaur Rahman Completed 2024-03-23 2024-06-21 \n", + "16 PH0017 Afsana Mimi Completed 2024-01-18 2024-03-16 \n", + "17 PH0018 Babul Ahmed Completed 2024-06-23 2024-09-20 \n", + "18 PH0019 Faria Rahman Completed 2024-04-19 2024-08-17 \n", + "19 PH0020 Tariq Hasan Completed 2024-07-21 2024-10-11 \n", + "\n", + " Instructor Location Total Marks Enrollment Year Enrollment Date \\\n", + "0 Ms. Salma Khulna 300 2024 1 \n", + "1 Mr. Karim Dhaka 271 2024 11 \n", + "2 Ms. Salma Dhaka 269 2024 8 \n", + "3 Mr. Karim Khulna 270 2024 5 \n", + "4 Mr. David Sylhet 254 2024 1 \n", + "5 Mr. David Khulna 272 2024 7 \n", + "6 Mr. David Chattogram 249 2024 7 \n", + "7 Ms. Salma Khulna 246 2024 22 \n", + "8 Mr. Karim Dhaka 291 2024 12 \n", + "9 Mr. David Dhaka 286 2024 19 \n", + "10 Mr. Karim Sylhet 283 2024 14 \n", + "11 Mr. Karim Sylhet 266 2024 4 \n", + "12 Mr. David Dhaka 248 2024 7 \n", + "13 Mr. David Sylhet 285 2024 4 \n", + "14 Mr. David Rajshahi 291 2024 22 \n", + "15 Ms. Salma Rajshahi 234 2024 23 \n", + "16 Mr. David Khulna 236 2024 18 \n", + "17 Mr. David Dhaka 278 2024 23 \n", + "18 Mr. Karim Sylhet 277 2024 19 \n", + "19 Mr. Karim Khulna 253 2024 21 \n", + "\n", + " Total time taken to finish \n", + "0 113 days \n", + "1 88 days \n", + "2 92 days \n", + "3 80 days \n", + "4 76 days \n", + "5 115 days \n", + "6 43 days \n", + "7 40 days \n", + "8 117 days \n", + "9 61 days \n", + "10 89 days \n", + "11 82 days \n", + "12 57 days \n", + "13 79 days \n", + "14 84 days \n", + "15 90 days \n", + "16 58 days \n", + "17 89 days \n", + "18 120 days \n", + "19 82 days " + ] + }, + "execution_count": 112, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "markdown", + "id": "826ef2d9-9805-438c-a732-8fe1d4bdaf0f", + "metadata": {}, + "source": [ + "# Groupby" + ] + }, + { + "cell_type": "code", + "execution_count": 115, + "id": "f41c9f3f-3126-4329-b577-6dc024694dee", + "metadata": {}, + "outputs": [], + "source": [ + "group = df.groupby('Instructor') " + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "id": "679fefc6-281d-439d-99db-9503ed36645d", + "metadata": {}, + "outputs": [], + "source": [ + "df.drop(columns=['StudentID','FullName','CompletionStatus'],inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 123, + "id": "32f7952c-410d-4449-b871-fae6f339d0c4", + "metadata": {}, + "outputs": [], + "source": [ + "group = df.groupby('Instructor') " + ] + }, + { + "cell_type": "code", + "execution_count": 124, + "id": "cabd654b-869c-4168-ad6c-6d1d18097ea9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
LocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
Instructor
Mr. DavidSylhetKhulnaChattogramDhakaDhakaSylhetRajshahi...239918216108662 days
Mr. KarimDhakaKhulnaDhakaSylhetSylhetSylhetKhulna19111416886658 days
Ms. SalmaKhulnaDhakaKhulnaRajshahi1049809654335 days
\n", + "
" + ], + "text/plain": [ + " Location Total Marks \\\n", + "Instructor \n", + "Mr. David SylhetKhulnaChattogramDhakaDhakaSylhetRajshahi... 2399 \n", + "Mr. Karim DhakaKhulnaDhakaSylhetSylhetSylhetKhulna 1911 \n", + "Ms. Salma KhulnaDhakaKhulnaRajshahi 1049 \n", + "\n", + " Enrollment Year Enrollment Date Total time taken to finish \n", + "Instructor \n", + "Mr. David 18216 108 662 days \n", + "Mr. Karim 14168 86 658 days \n", + "Ms. Salma 8096 54 335 days " + ] + }, + "execution_count": 124, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "group.sum() " + ] + }, + { + "cell_type": "code", + "execution_count": 125, + "id": "14c887cb-77da-484a-814a-2203cd49e440", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
LocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
Instructor
Mr. DavidChattogram2362024143 days
Mr. KarimDhaka2532024480 days
Ms. SalmaDhaka2342024140 days
\n", + "
" + ], + "text/plain": [ + " Location Total Marks Enrollment Year Enrollment Date \\\n", + "Instructor \n", + "Mr. David Chattogram 236 2024 1 \n", + "Mr. Karim Dhaka 253 2024 4 \n", + "Ms. Salma Dhaka 234 2024 1 \n", + "\n", + " Total time taken to finish \n", + "Instructor \n", + "Mr. David 43 days \n", + "Mr. Karim 80 days \n", + "Ms. Salma 40 days " + ] + }, + "execution_count": 125, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "group.min() " + ] + }, + { + "cell_type": "code", + "execution_count": 126, + "id": "2776fa87-41e3-4c97-ac74-d74b71cc4948", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
LocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
Instructor
Mr. DavidSylhet291202423115 days
Mr. KarimSylhet291202421120 days
Ms. SalmaRajshahi300202423113 days
\n", + "
" + ], + "text/plain": [ + " Location Total Marks Enrollment Year Enrollment Date \\\n", + "Instructor \n", + "Mr. David Sylhet 291 2024 23 \n", + "Mr. Karim Sylhet 291 2024 21 \n", + "Ms. Salma Rajshahi 300 2024 23 \n", + "\n", + " Total time taken to finish \n", + "Instructor \n", + "Mr. David 115 days \n", + "Mr. Karim 120 days \n", + "Ms. Salma 113 days " + ] + }, + "execution_count": 126, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "group.max() " + ] + }, + { + "cell_type": "code", + "execution_count": 127, + "id": "2a40349f-2074-4c01-800b-2a4441a17bc4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
LocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
Instructor
Mr. DavidSylhet2542024176 days
Mr. KarimDhaka27120241188 days
Ms. SalmaKhulna30020241113 days
\n", + "
" + ], + "text/plain": [ + " Location Total Marks Enrollment Year Enrollment Date \\\n", + "Instructor \n", + "Mr. David Sylhet 254 2024 1 \n", + "Mr. Karim Dhaka 271 2024 11 \n", + "Ms. Salma Khulna 300 2024 1 \n", + "\n", + " Total time taken to finish \n", + "Instructor \n", + "Mr. David 76 days \n", + "Mr. Karim 88 days \n", + "Ms. Salma 113 days " + ] + }, + "execution_count": 127, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "group.first() " + ] + }, + { + "cell_type": "code", + "execution_count": 128, + "id": "ddae3690-0e04-4d2b-b8db-8ba913cd0ec7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
LocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
Instructor
Mr. DavidDhaka27820242389 days
Mr. KarimKhulna25320242182 days
Ms. SalmaRajshahi23420242390 days
\n", + "
" + ], + "text/plain": [ + " Location Total Marks Enrollment Year Enrollment Date \\\n", + "Instructor \n", + "Mr. David Dhaka 278 2024 23 \n", + "Mr. Karim Khulna 253 2024 21 \n", + "Ms. Salma Rajshahi 234 2024 23 \n", + "\n", + " Total time taken to finish \n", + "Instructor \n", + "Mr. David 89 days \n", + "Mr. Karim 82 days \n", + "Ms. Salma 90 days " + ] + }, + "execution_count": 128, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "group.last() " + ] + }, + { + "cell_type": "code", + "execution_count": 129, + "id": "81b589ce-cf8e-4783-ad29-3451429864a7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
InstructorLocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
0Ms. SalmaKhulna30020241113 days
1Mr. KarimDhaka27120241188 days
2Ms. SalmaDhaka2692024892 days
3Mr. KarimKhulna2702024580 days
4Mr. DavidSylhet2542024176 days
5Mr. DavidKhulna27220247115 days
6Mr. DavidChattogram2492024743 days
7Ms. SalmaKhulna24620242240 days
8Mr. KarimDhaka291202412117 days
9Mr. DavidDhaka28620241961 days
10Mr. KarimSylhet28320241489 days
11Mr. KarimSylhet2662024482 days
12Mr. DavidDhaka2482024757 days
13Mr. DavidSylhet2852024479 days
14Mr. DavidRajshahi29120242284 days
15Ms. SalmaRajshahi23420242390 days
16Mr. DavidKhulna23620241858 days
17Mr. DavidDhaka27820242389 days
18Mr. KarimSylhet277202419120 days
19Mr. KarimKhulna25320242182 days
\n", + "
" + ], + "text/plain": [ + " Instructor Location Total Marks Enrollment Year Enrollment Date \\\n", + "0 Ms. Salma Khulna 300 2024 1 \n", + "1 Mr. Karim Dhaka 271 2024 11 \n", + "2 Ms. Salma Dhaka 269 2024 8 \n", + "3 Mr. Karim Khulna 270 2024 5 \n", + "4 Mr. David Sylhet 254 2024 1 \n", + "5 Mr. David Khulna 272 2024 7 \n", + "6 Mr. David Chattogram 249 2024 7 \n", + "7 Ms. Salma Khulna 246 2024 22 \n", + "8 Mr. Karim Dhaka 291 2024 12 \n", + "9 Mr. David Dhaka 286 2024 19 \n", + "10 Mr. Karim Sylhet 283 2024 14 \n", + "11 Mr. Karim Sylhet 266 2024 4 \n", + "12 Mr. David Dhaka 248 2024 7 \n", + "13 Mr. David Sylhet 285 2024 4 \n", + "14 Mr. David Rajshahi 291 2024 22 \n", + "15 Ms. Salma Rajshahi 234 2024 23 \n", + "16 Mr. David Khulna 236 2024 18 \n", + "17 Mr. David Dhaka 278 2024 23 \n", + "18 Mr. Karim Sylhet 277 2024 19 \n", + "19 Mr. Karim Khulna 253 2024 21 \n", + "\n", + " Total time taken to finish \n", + "0 113 days \n", + "1 88 days \n", + "2 92 days \n", + "3 80 days \n", + "4 76 days \n", + "5 115 days \n", + "6 43 days \n", + "7 40 days \n", + "8 117 days \n", + "9 61 days \n", + "10 89 days \n", + "11 82 days \n", + "12 57 days \n", + "13 79 days \n", + "14 84 days \n", + "15 90 days \n", + "16 58 days \n", + "17 89 days \n", + "18 120 days \n", + "19 82 days " + ] + }, + "execution_count": 129, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 132, + "id": "6f6fe2e1-6776-4670-a16c-210d4d8b857c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
InstructorLocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
0Ms. SalmaKhulna30020241113 days
8Mr. KarimDhaka291202412117 days
14Mr. DavidRajshahi29120242284 days
9Mr. DavidDhaka28620241961 days
13Mr. DavidSylhet2852024479 days
10Mr. KarimSylhet28320241489 days
17Mr. DavidDhaka27820242389 days
18Mr. KarimSylhet277202419120 days
5Mr. DavidKhulna27220247115 days
1Mr. KarimDhaka27120241188 days
3Mr. KarimKhulna2702024580 days
2Ms. SalmaDhaka2692024892 days
7Ms. SalmaKhulna24620242240 days
15Ms. SalmaRajshahi23420242390 days
\n", + "
" + ], + "text/plain": [ + " Instructor Location Total Marks Enrollment Year Enrollment Date \\\n", + "0 Ms. Salma Khulna 300 2024 1 \n", + "8 Mr. Karim Dhaka 291 2024 12 \n", + "14 Mr. David Rajshahi 291 2024 22 \n", + "9 Mr. David Dhaka 286 2024 19 \n", + "13 Mr. David Sylhet 285 2024 4 \n", + "10 Mr. Karim Sylhet 283 2024 14 \n", + "17 Mr. David Dhaka 278 2024 23 \n", + "18 Mr. Karim Sylhet 277 2024 19 \n", + "5 Mr. David Khulna 272 2024 7 \n", + "1 Mr. Karim Dhaka 271 2024 11 \n", + "3 Mr. Karim Khulna 270 2024 5 \n", + "2 Ms. Salma Dhaka 269 2024 8 \n", + "7 Ms. Salma Khulna 246 2024 22 \n", + "15 Ms. Salma Rajshahi 234 2024 23 \n", + "\n", + " Total time taken to finish \n", + "0 113 days \n", + "8 117 days \n", + "14 84 days \n", + "9 61 days \n", + "13 79 days \n", + "10 89 days \n", + "17 89 days \n", + "18 120 days \n", + "5 115 days \n", + "1 88 days \n", + "3 80 days \n", + "2 92 days \n", + "7 40 days \n", + "15 90 days " + ] + }, + "execution_count": 132, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.sort_values('Total Marks', ascending=False).groupby('Instructor').head(5)" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "f2dff332-dbff-490f-8eb1-f7346029c0f2", + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'df' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[1;32mIn[1], line 1\u001b[0m\n\u001b[1;32m----> 1\u001b[0m df\n", + "\u001b[1;31mNameError\u001b[0m: name 'df' is not defined" + ] + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "28c540ea-7bd6-4641-b010-1ef3fbc5bbbb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusEnrollmentDateFinishedDateInstructorLocationTotal Marks
0PH0001Alif RahmanCompleted2024-09-012024-12-23Ms. SalmaKhulna300
1PH0002Fatima AkhterCompleted2024-08-112024-11-07Mr. KarimDhaka271
2PH0003Imran HossainCompleted2024-05-082024-08-08Ms. SalmaDhaka269
3PH0004Jannatul FerdousCompleted2024-07-052024-09-23Mr. KarimKhulna270
4PH0005Kamal UddinCompleted2024-02-012024-04-17Mr. DavidSylhet254
5PH0006Laila BegumCompleted2024-09-072024-12-31Mr. DavidKhulna272
6PH0007Mahmudul HasanCompleted2024-06-072024-07-20Mr. DavidChattogram249
7PH0008Nadia IslamCompleted2024-03-222024-05-01Ms. SalmaKhulna246
8PH0009Omar FaruqCompleted2024-02-122024-06-08Mr. KarimDhaka291
9PH0010Priya SharmaCompleted2024-06-192024-08-19Mr. DavidDhaka286
10PH0011Rahim SheikhCompleted2024-03-142024-06-11Mr. KarimSylhet283
11PH0012Sadia ChowdhuryCompleted2024-08-042024-10-25Mr. KarimSylhet266
12PH0013Tanvir AhmedCompleted2024-06-072024-08-03Mr. DavidDhaka248
13PH0014Urmi AkterCompleted2024-01-042024-03-23Mr. DavidSylhet285
14PH0015WahiduzzamanCompleted2024-02-222024-05-16Mr. DavidRajshahi291
15PH0016Ziaur RahmanCompleted2024-03-232024-06-21Ms. SalmaRajshahi234
16PH0017Afsana MimiCompleted2024-01-182024-03-16Mr. DavidKhulna236
17PH0018Babul AhmedCompleted2024-06-232024-09-20Mr. DavidDhaka278
18PH0019Faria RahmanCompleted2024-04-192024-08-17Mr. KarimSylhet277
19PH0020Tariq HasanCompleted2024-07-212024-10-11Mr. KarimKhulna253
\n", + "
" + ], + "text/plain": [ + " StudentID FullName CompletionStatus EnrollmentDate FinishedDate \\\n", + "0 PH0001 Alif Rahman Completed 2024-09-01 2024-12-23 \n", + "1 PH0002 Fatima Akhter Completed 2024-08-11 2024-11-07 \n", + "2 PH0003 Imran Hossain Completed 2024-05-08 2024-08-08 \n", + "3 PH0004 Jannatul Ferdous Completed 2024-07-05 2024-09-23 \n", + "4 PH0005 Kamal Uddin Completed 2024-02-01 2024-04-17 \n", + "5 PH0006 Laila Begum Completed 2024-09-07 2024-12-31 \n", + "6 PH0007 Mahmudul Hasan Completed 2024-06-07 2024-07-20 \n", + "7 PH0008 Nadia Islam Completed 2024-03-22 2024-05-01 \n", + "8 PH0009 Omar Faruq Completed 2024-02-12 2024-06-08 \n", + "9 PH0010 Priya Sharma Completed 2024-06-19 2024-08-19 \n", + "10 PH0011 Rahim Sheikh Completed 2024-03-14 2024-06-11 \n", + "11 PH0012 Sadia Chowdhury Completed 2024-08-04 2024-10-25 \n", + "12 PH0013 Tanvir Ahmed Completed 2024-06-07 2024-08-03 \n", + "13 PH0014 Urmi Akter Completed 2024-01-04 2024-03-23 \n", + "14 PH0015 Wahiduzzaman Completed 2024-02-22 2024-05-16 \n", + "15 PH0016 Ziaur Rahman Completed 2024-03-23 2024-06-21 \n", + "16 PH0017 Afsana Mimi Completed 2024-01-18 2024-03-16 \n", + "17 PH0018 Babul Ahmed Completed 2024-06-23 2024-09-20 \n", + "18 PH0019 Faria Rahman Completed 2024-04-19 2024-08-17 \n", + "19 PH0020 Tariq Hasan Completed 2024-07-21 2024-10-11 \n", + "\n", + " Instructor Location Total Marks \n", + "0 Ms. Salma Khulna 300 \n", + "1 Mr. Karim Dhaka 271 \n", + "2 Ms. Salma Dhaka 269 \n", + "3 Mr. Karim Khulna 270 \n", + "4 Mr. David Sylhet 254 \n", + "5 Mr. David Khulna 272 \n", + "6 Mr. David Chattogram 249 \n", + "7 Ms. Salma Khulna 246 \n", + "8 Mr. Karim Dhaka 291 \n", + "9 Mr. David Dhaka 286 \n", + "10 Mr. Karim Sylhet 283 \n", + "11 Mr. Karim Sylhet 266 \n", + "12 Mr. David Dhaka 248 \n", + "13 Mr. David Sylhet 285 \n", + "14 Mr. David Rajshahi 291 \n", + "15 Ms. Salma Rajshahi 234 \n", + "16 Mr. David Khulna 236 \n", + "17 Mr. David Dhaka 278 \n", + "18 Mr. Karim Sylhet 277 \n", + "19 Mr. Karim Khulna 253 " + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "df = pd.read_csv('student_completed_data.csv')\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "04c76f4d-27d2-4433-bffc-6bcf90781435", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 True\n", + "1 True\n", + "2 True\n", + "3 True\n", + "4 True\n", + "5 True\n", + "6 False\n", + "7 False\n", + "8 True\n", + "9 True\n", + "10 True\n", + "11 True\n", + "12 False\n", + "13 True\n", + "14 True\n", + "15 False\n", + "16 False\n", + "17 True\n", + "18 True\n", + "19 True\n", + "Name: Total Marks, dtype: bool" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['Total Marks']>250" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "3c4201f5-6aa1-4a6c-85d5-2e13295f5c81", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "np.int64(15)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "(df['Total Marks']>250).sum() " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d8f8cfda-7890-4103-9dcb-eba90e30ca33", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 2a38b4e234c7b12b51fba056bb214d47ef9f5115 Mon Sep 17 00:00:00 2001 From: Minhajul Abedin Adil <64237828+minhajadil@users.noreply.github.com> Date: Sun, 2 Nov 2025 00:23:07 +0600 Subject: [PATCH 60/78] Add files via upload --- student_completed_data.csv | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 student_completed_data.csv diff --git a/student_completed_data.csv b/student_completed_data.csv new file mode 100644 index 0000000..23c9bea --- /dev/null +++ b/student_completed_data.csv @@ -0,0 +1,21 @@ +StudentID,FullName,CompletionStatus,EnrollmentDate,FinishedDate,Instructor,Location,Total Marks +PH0001,Alif Rahman,Completed,2024-09-01,2024-12-23,Ms. Salma,Khulna,300 +PH0002,Fatima Akhter,Completed,2024-08-11,2024-11-07,Mr. Karim,Dhaka,271 +PH0003,Imran Hossain,Completed,2024-05-08,2024-08-08,Ms. Salma,Dhaka,269 +PH0004,Jannatul Ferdous,Completed,2024-07-05,2024-09-23,Mr. Karim,Khulna,270 +PH0005,Kamal Uddin,Completed,2024-02-01,2024-04-17,Mr. David,Sylhet,254 +PH0006,Laila Begum,Completed,2024-09-07,2024-12-31,Mr. David,Khulna,272 +PH0007,Mahmudul Hasan,Completed,2024-06-07,2024-07-20,Mr. David,Chattogram,249 +PH0008,Nadia Islam,Completed,2024-03-22,2024-05-01,Ms. Salma,Khulna,246 +PH0009,Omar Faruq,Completed,2024-02-12,2024-06-08,Mr. Karim,Dhaka,291 +PH0010,Priya Sharma,Completed,2024-06-19,2024-08-19,Mr. David,Dhaka,286 +PH0011,Rahim Sheikh,Completed,2024-03-14,2024-06-11,Mr. Karim,Sylhet,283 +PH0012,Sadia Chowdhury,Completed,2024-08-04,2024-10-25,Mr. Karim,Sylhet,266 +PH0013,Tanvir Ahmed,Completed,2024-06-07,2024-08-03,Mr. David,Dhaka,248 +PH0014,Urmi Akter,Completed,2024-01-04,2024-03-23,Mr. David,Sylhet,285 +PH0015,Wahiduzzaman,Completed,2024-02-22,2024-05-16,Mr. David,Rajshahi,291 +PH0016,Ziaur Rahman,Completed,2024-03-23,2024-06-21,Ms. Salma,Rajshahi,234 +PH0017,Afsana Mimi,Completed,2024-01-18,2024-03-16,Mr. David,Khulna,236 +PH0018,Babul Ahmed,Completed,2024-06-23,2024-09-20,Mr. David,Dhaka,278 +PH0019,Faria Rahman,Completed,2024-04-19,2024-08-17,Mr. Karim,Sylhet,277 +PH0020,Tariq Hasan,Completed,2024-07-21,2024-10-11,Mr. Karim,Khulna,253 From be53e4f950d371be46a21a7f6d9e7e9a4e297751 Mon Sep 17 00:00:00 2001 From: Minhajul Abedin Adil <64237828+minhajadil@users.noreply.github.com> Date: Sun, 2 Nov 2025 16:47:32 +0600 Subject: [PATCH 61/78] Add files via upload --- student_data (2).csv | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 student_data (2).csv diff --git a/student_data (2).csv b/student_data (2).csv new file mode 100644 index 0000000..2779c8f --- /dev/null +++ b/student_data (2).csv @@ -0,0 +1,22 @@ +StudentID,FullName,Data Structure Marks,Algorithm Marks,Python Marks,CompletionStatus,EnrollmentDate,Instructor,Location +PH1001,Alif Rahman,85,85,88,Completed,2024-01-15,Mr. Karim,Dhaka +PH1002,Fatima Akhter,92,92,,In Progress,2024-01-20,Ms. Salma,Chattogram +PH1003,Imran Hossain,88,88,85,Completed,2024-02-10,Mr. Karim,Dhaka +PH1004,Jannatul Ferdous,78,78,82,Completed,2024-02-12,Ms. Salma,Sylhet +PH1005,Kamal Uddin,,,95,In Progress,2024-03-05,Mr. Karim,Chattogram +PH1006,Laila Begum,75,75,78,Completed,2024-03-08,Ms. Salma,Rajshahi +PH1007,Mahmudul Hasan,80,80,,In Progress,2024-04-01,Mr. Karim,Dhaka +PH1008,Nadia Islam,81,81,85,Completed,2024-04-22,Ms. Salma,Chattogram +PH1009,Omar Faruq,72,72,76,Completed,2024-05-16,Mr. David,Dhaka +PH1010,Priya Sharma,89,89,88,Completed,2024-05-20,Ms. Salma,Sylhet +PH1011,Rahim Sheikh,,,91,In Progress,2024-06-11,Mr. Karim,Khulna +PH1012,Sadia Chowdhury,85,85,87,Completed,2024-06-14,Ms. Salma,Chattogram +PH1013,Tanvir Ahmed,75,75,79,Completed,2024-07-02,Mr. David,Dhaka +PH1014,Urmi Akter,,,,Not Started,2024-07-09,Ms. Salma,Rajshahi +PH1015,Wahiduzzaman,86,86,84,Completed,2024-08-18,Mr. Karim,Dhaka +PH1016,Ziaur Rahman,94,94,,In Progress,2024-08-21,Ms. Salma,Chattogram +PH1017,Afsana Mimi,90,90,93,Completed,2025-09-01,Mr. Karim,Dhaka +PH1018,Babul Ahmed,88,88,85,Completed,2025-09-05,Ms. Salma,Sylhet +PH1019,Faria Rahman,,,,Not Started,2025-09-15,Mr. David,Chattogram +PH1020,Nasir Khan,86,86,89,Completed,2025-10-02,Ms. Salma,Dhaka +,,,,,,,, \ No newline at end of file From 44bd72f95cbaf906e0ce31074a10d2a80cbce207 Mon Sep 17 00:00:00 2001 From: Minhajul Abedin Adil <64237828+minhajadil@users.noreply.github.com> Date: Sun, 2 Nov 2025 18:14:18 +0600 Subject: [PATCH 62/78] Added files of Module 15 --- Module_15.ipynb | 1726 +++++++++++++++++++++++++++++++++++++++++++ enrollment_data.csv | 11 + student_IQdata.csv | 39 + 3 files changed, 1776 insertions(+) create mode 100644 Module_15.ipynb create mode 100644 enrollment_data.csv create mode 100644 student_IQdata.csv diff --git a/Module_15.ipynb b/Module_15.ipynb new file mode 100644 index 0000000..a850fb4 --- /dev/null +++ b/Module_15.ipynb @@ -0,0 +1,1726 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "20124b8f-a4cc-42e7-915f-b0e833daf2b8", + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np \n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt " + ] + }, + { + "cell_type": "markdown", + "id": "1326e461-90e7-412d-be56-a5aa9080e2f2", + "metadata": {}, + "source": [ + "# 2D line plot" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ca8dd9cd-ea32-4c73-b430-2faf801f2671", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "hours = [2 , 3 , 4, 1 , 5 , 7 ,3] \n", + "days = [1 ,2 , 3 ,4 ,5 ,6 ,7] \n", + "\n", + "plt.plot(days,hours)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "d21e83f3-9503-4a7e-8526-7dc796a352d2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAioAAAHFCAYAAADcytJ5AAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjAsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvlHJYcgAAAAlwSFlzAAAPYQAAD2EBqD+naQAAaZJJREFUeJzt3Xd8U+X+B/BP2jTp3nTRyV5t2Vj2ktWCyHKALHGCgF71d/VeFa+joteFCipKBVHZIFC2DMuU3VI2tLR00z3TNnl+f7TJpbJaaHtOks/79crrRU5Pkk8ObfPt8z3PcxRCCAEiIiIiGbKQOgARERHRnbBQISIiItlioUJERESyxUKFiIiIZIuFChEREckWCxUiIiKSLRYqREREJFssVIiIiEi2WKgQERGRbLFQMXEKhaJWt71790qac968eVAoFPX6nF999RVatGgBlUoFhUKBvLy8en3+2kpNTcW8efNw6tSpen/uxMREKBQK/PTTT/X+3DdbuHBhvb6GMR2TgwcPYt68ebf9/unfvz/69+9fL69Dxuenn36CQqHAsWPHpI5i0pRSB6CGdejQoRr333vvPezZswe7d++usb1du3aNGavBnTp1CrNnz8aMGTMwZcoUKJVKODg4SJIlNTUV7777LgIDA9GxY0dJMjyohQsXwt3dHVOnTq2X5zOmY3Lw4EG8++67mDp1KpydnWt8beHChdKEIjIjLFRM3EMPPVTjfpMmTWBhYXHL9r8rKSmBra1tQ0ZrUPHx8QCAZ555Bt27d5c4DZkqUyvw65NWq0VlZSXUarXUUcjIsfVD6N+/Pzp06IA///wTPXv2hK2tLaZPnw4AKCgowKuvvoqgoCCoVCo0bdoUc+fORXFxcY3nUCgUmDVrFn7++We0bdsWtra2CA0NxebNm295vejoaHTs2BFqtRpBQUH473//W6e8S5YsQWhoKKytreHq6opHH30U586dq/F+Jk2aBADo0aMHFArFXUcCLl++jGnTpqFly5awtbVF06ZNMXLkSMTFxdUqz+rVq9GjRw84OTnB1tYWzZo1Mxy/vXv3olu3bgCAadOmGVpt8+bNM2S9Xetg6tSpCAwMrLEtNTUVEyZMgIODA5ycnPDYY48hPT39tpmOHTuGUaNGwdXVFdbW1ujUqRNWrVpVYx/9sPWePXvwwgsvwN3dHW5ubhgzZgxSU1MN+wUGBiI+Ph779u0z5P97Njkfk59//hkKheKW0UUA+M9//gMrK6sa7/dm8+bNw2uvvQYACAoKuqVV+ves+rbTJ598gvnz5yMwMBA2Njbo378/Ll68iIqKCvzzn/+Ej48PnJyc8OijjyIzM/OW1125ciXCwsJgZ2cHe3t7DB06FCdPnrxtxr87c+YMHnnkEbi4uMDa2hodO3bE0qVLDV/PysqCSqXCW2+9dctjz58/D4VCgQULFhi2paen47nnnoOvry9UKhWCgoLw7rvvorKy8pb3/fHHH+P9999HUFAQ1Go19uzZc8ec33zzDfr27QsPDw/Y2dkhODgYH3/8MSoqKu76/uLj46FQKLB69WrDtuPHj0OhUKB9+/Y19h01ahS6dOlSY1ttj21tfoZuJy0tDV26dEHLli1x6dKle+5PtSDIrEyZMkXY2dnV2NavXz/h6uoq/Pz8xFdffSX27Nkj9u3bJ4qLi0XHjh2Fu7u7+Oyzz8SuXbvEl19+KZycnMTAgQOFTqczPAcAERgYKLp37y5WrVoltmzZIvr37y+USqW4cuWKYb9du3YJS0tL0bt3b7Fu3TqxevVq0a1bN+Hv7y9q8+344YcfCgDiiSeeENHR0WLZsmWiWbNmwsnJSVy8eFEIIUR8fLz497//LQCIqKgocejQIXH58uU7Pue+ffvEP/7xD7FmzRqxb98+sX79ejF69GhhY2Mjzp8/f9c8Bw8eFAqFQjz++ONiy5YtYvfu3SIqKko89dRTQggh8vPzRVRUlAAg/v3vf4tDhw6JQ4cOieTkZMOx79ev3y3PO2XKFBEQEGC4X1JSItq2bSucnJzEV199JbZv3y5mz55tOG5RUVGGfXfv3i1UKpXo06ePWLlypdi2bZuYOnXqLfvpczVr1ky89NJLYvv27eKHH34QLi4uYsCAAYb9Tpw4IZo1ayY6depkyH/ixAmjOSYajUZ4eXmJiRMn1ni+iooK4ePjI8aPH3/H95KcnCxeeuklAUCsW7fOkDU/P/+2WRMSEgQAERAQIEaOHCk2b94sli9fLjw9PUWrVq3EU089JaZPny62bt0qvv32W2Fvby9GjhxZ4zU/+OADoVAoxPTp08XmzZvFunXrRFhYmLCzsxPx8fF3zCqEEOfPnxcODg6iefPmYtmyZSI6Olo88cQTAoCYP3++Yb9HH31U+Pn5Ca1WW+Pxr7/+ulCpVOLGjRtCCCHS0tKEn5+fCAgIEN99953YtWuXeO+994RarRZTp0695X03bdpUDBgwQKxZs0bs2LFDJCQk3DHryy+/LBYtWiS2bdsmdu/eLT7//HPh7u4upk2bdtf3KIQQ3t7e4tlnnzXc/+ijj4SNjY0AIFJSUoQQVf+/jo6O4vXXX6/zsa3rz9DRo0eFEELExcUJPz8/ERYWJrKysu75Pqh2WKiYmTsVKgDEH3/8UWN7ZGSksLCwMPwQ6q1Zs0YAEFu2bDFsAyA8PT1FQUGBYVt6erqwsLAQkZGRhm09evQQPj4+orS01LCtoKBAuLq63rNQyc3NFTY2NmLEiBE1ticlJQm1Wi2efPJJw7a//wKpi8rKSlFeXi5atmwpXn755bvu+9///lcAEHl5eXfc5+jRo7f8gtOr7YfyokWLBADx+++/19jvmWeeueW527RpIzp16iQqKipq7BsRESG8vb0NH076Y/Tiiy/W2O/jjz8WAERaWpphW/v27W+b83bkeEzeeecdoVKpREZGhmHbypUrBQCxb9++u76fTz75RAC47YfunQqV0NDQGkXAF198IQCIUaNG1Xj83LlzBQBD4ZOUlCSUSqV46aWXauxXWFgovLy8xIQJE+6a9fHHHxdqtVokJSXV2D58+HBha2tr+D/ZuHGjACB27Nhh2KeyslL4+PiIsWPHGrY999xzwt7eXly7dq3G8+n/j/Uf7vr33bx5c1FeXn7XjLej1WpFRUWFWLZsmbC0tBQ5OTl33X/SpEmiWbNmhvuDBw8WzzzzjHBxcRFLly4VQghx4MCBGu+xLse2rj9DR48eFTt37hSOjo5i3LhxNX6/0YNj64cAAC4uLhg4cGCNbZs3b0aHDh3QsWNHVFZWGm5Dhw697UyhAQMG1Dhh1dPTEx4eHrh27RoAoLi4GEePHsWYMWNgbW1t2M/BwQEjR468Z8ZDhw6htLT0ljaOn58fBg4ciD/++KOO77pKZWUlPvzwQ7Rr1w4qlQpKpRIqlQqXLl2q0VK6HX0LY8KECVi1ahVSUlLuK8O97NmzBw4ODhg1alSN7U8++WSN+5cvX8b58+cxceJEAKjx/zZixAikpaXhwoULNR7z9+cMCQkBAMP/W13J7ZgAwAsvvAAAWLx4sWHb119/jeDgYPTt27fes40YMQIWFv/79dq2bVsAQHh4eI399NuTkpIAANu3b0dlZSUmT55c4//O2toa/fr1u+fsvN27d2PQoEHw8/OrsX3q1KkoKSkxtL+GDx8OLy8vREVFGfbZvn07UlNTDS06oOp3wIABA+Dj41Mjz/DhwwEA+/btq/E6o0aNgpWV1T2PDwCcPHkSo0aNgpubGywtLWFlZYXJkydDq9Xi4sWLd33soEGDcPXqVSQkJKCsrAz79+/HsGHDMGDAAOzcuRMAsGvXLqjVavTu3dvw/mpzbO/nZ2jp0qUYMWIEZsyYgVWrVtX4/UYPjoUKAQC8vb1v2ZaRkYHY2FhYWVnVuDk4OEAIgRs3btTY383N7ZbnUKvVKC0tBQDk5uZCp9PBy8vrlv1ut+3vsrOz75jVx8fH8PW6euWVV/DWW29h9OjR2LRpE44cOYKjR48iNDTUkP1O+vbtiw0bNhh+Afr6+qJDhw747bff7ivLnWRnZ8PT0/OW7X8/bhkZGQCAV1999Zb/txdffBEA7vn/pj/58V7v/U7kdkyAqqL5sccew3fffQetVovY2FjExMRg1qxZ9ZpJz9XVtcZ9lUp11+1lZWUA/vf/161bt1v+/1auXHnL/93fZWdn3/HnQ/91AFAqlXjqqaewfv16w7Trn376Cd7e3hg6dKjhcRkZGdi0adMtWfTngvw9z+1e+3aSkpLQp08fpKSk4Msvv0RMTAyOHj2Kb775BsC9v/cGDx4MoKoY2b9/PyoqKjBw4EAMHjzY8AfLrl270KtXL9jY2BjeC3DvY3s/P0MrVqyAjY0NZsyYUe/LLBBn/VC12/1wubu7w8bGBkuWLLntY9zd3ev0Gi4uLlAoFLc9AfROJ4XeTP+BmpaWdsvXUlNT65xHb/ny5Zg8eTI+/PDDGttv3Lhxy3TU23nkkUfwyCOPQKPR4PDhw4iMjMSTTz6JwMBAhIWF3fWx1tbWyM/Pv2X77YqJv/7665b9/n7c9MfgjTfewJgxY277mq1bt75rpvogp2OiN2fOHPz888/4/fffsW3bNjg7Oxv+apYL/f/fmjVrEBAQUOfHu7m53fHn4+bnB6pOZP7kk0+wYsUKPPbYY9i4cSPmzp0LS0vLGnlCQkLwwQcf3Pb19AWQXm0/pDds2IDi4mKsW7euxvus7bo6vr6+aNWqFXbt2oXAwEB07doVzs7OGDRoEF588UUcOXIEhw8fxrvvvlvjvQD3Prb38zP0yy+/4K233kK/fv2wY8cO2U+5NzYsVOiOIiIi8OGHH8LNzQ1BQUEP/Hx2dnbo3r071q1bh08++cQwPFpYWIhNmzbd8/FhYWGwsbHB8uXLMX78eMP269evY/fu3Rg3btx95VIoFLdMoYyOjkZKSgpatGhR6+dRq9Xo168fnJ2dsX37dpw8eRJhYWF3HaEIDAzE6tWrodFoDPtlZ2fj4MGDcHR0NOw3YMAArFq1Chs3bqzR6vj1119rPF/r1q3RsmVLnD59+pbC60HcPDJW18dJfUz0unTpgp49e2L+/Pk4c+YMnn32WdjZ2dXqPdwpa30bOnQolEolrly5grFjx9b58YMGDcL69euRmppao4hYtmwZbG1tayxL0LZtW/To0QNRUVHQarXQaDSYNm1ajeeLiIjAli1b0Lx5c7i4uNz/G/sbfUFz88+dEKJGa+5eBg8ejFWrVsHPz8/QUmvVqhX8/f3x9ttvo6KiwjDyAtT+2N7Pz5Crqyt27dqFiIgIDBgwAFu3br3nEhBUeyxU6I7mzp2LtWvXom/fvnj55ZcREhICnU6HpKQk7NixA//4xz/Qo0ePOj3ne++9h2HDhuHhhx/GP/7xD2i1WsyfPx92dnbIycm562OdnZ3x1ltv4c0338TkyZPxxBNPIDs7G++++y6sra3xzjvv3Nf7jIiIwE8//YQ2bdogJCQEx48fxyeffAJfX997Pvbtt9/G9evXMWjQIPj6+iIvLw9ffvklrKys0K9fPwBA8+bNYWNjg19++QVt27aFvb09fHx84OPjg6eeegrfffcdJk2ahGeeeQbZ2dn4+OOPa3wgA8DkyZPx+eefY/Lkyfjggw/QsmVLbNmyBdu3b78l03fffYfhw4dj6NChmDp1Kpo2bYqcnBycO3cOJ06cqDGts7aCg4OxYsUKrFy5Es2aNYO1tTWCg4ON5pjozZkzB4899hgUCoVhGL827x0AvvzyS0yZMgVWVlZo3bp1gywgGBgYiP/85z/417/+hatXr2LYsGFwcXFBRkYG/vrrL9jZ2dUYJfi7d955x3Beydtvvw1XV1f88ssviI6OxscffwwnJ6ca+0+fPh3PPfccUlNT0bNnz1tGCv7zn/9g586d6NmzJ2bPno3WrVujrKwMiYmJ2LJlC7799tta/Zz83cMPPwyVSoUnnngCr7/+OsrKyrBo0SLk5ubW+jkGDRqEhQsX4saNG/jiiy9qbI+KioKLi0uNqcl1Obb38zPk4OCAbdu2YcyYMXj44YexceNGDBgwoM7Hhm5D6rN5qXHdadZP+/btb7t/UVGR+Pe//y1at24tVCqVcHJyEsHBweLll18W6enphv0AiJkzZ97y+ICAADFlypQa2zZu3ChCQkKESqUS/v7+4qOPPhLvvPNOraYnCyHEDz/8YHi8k5OTeOSRR26ZtlmXWT+5ubni6aefFh4eHsLW1lb07t1bxMTE3HH2yc02b94shg8fLpo2bSpUKpXw8PAQI0aMEDExMTX2++2330SbNm2ElZWVACDeeecdw9eWLl0q2rZtK6ytrUW7du3EypUrb5nhIoQQ169fF2PHjhX29vbCwcFBjB07Vhw8ePC2s2dOnz4tJkyYIDw8PISVlZXw8vISAwcOFN9+++09j9GePXsEALFnzx7DtsTERDFkyBDh4OBgmH5rbMdEiKqpymq1WgwbNuyO+W/njTfeED4+PsLCwqLGsbnTrJ9PPvmkxuP1x3T16tU1tt/p/2DDhg1iwIABwtHRUajVahEQECDGjRsndu3adc+scXFxYuTIkcLJyUmoVCoRGhp622MhRNVUcf203sWLF992n6ysLDF79mwRFBQkrKyshKurq+jSpYv417/+JYqKiu76vu9m06ZNIjQ0VFhbW4umTZuK1157TWzduvWW7707yc3NFRYWFsLOzq7GTKNffvlFABBjxoy57eNqe2zv92dIo9GIsWPHCmtraxEdHV3r40F3phBCiEaujYiIJLFp0yaMGjUK0dHRGDFihNRxiKgWWKgQkck7e/Ysrl27hjlz5sDOzg4nTpzg7AwiI8HpyURk8l588UWMGjUKLi4u+O2331ikEBkRjqgQERGRbHFEhYiIiGSLhQoRERHJFgsVIiIiki2jXvBNp9MhNTUVDg4OPDmOiIjISAghUFhYCB8fnxoX8Lwdoy5UUlNTb7lKKBERERmH5OTke65ubNSFin4J6+Tk5FuW1yYiIiJ5KigogJ+fX60uRWHUhYq+3ePo6MhChYiIyMjU5rQNnkxLREREssVChYiIiGSLhQoRERHJFgsVIiIiki0WKkRERCRbLFSIiIhItlioEBERkWyxUCEiIiLZYqFCREREssVChYiIiGRL0kIlMDAQCoXiltvMmTOljEVEREQyIem1fo4e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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.xlabel('Days')\n", + "plt.ylabel('Study Hours') \n", + "plt.title('Trend of a student study time over a week')\n", + "\n", + "plt.plot(days,hours)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "29b64c30-ddf2-41ac-bb87-cb899ecd5066", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "hours_1 = [2 , 3 , 4, 1 , 5 , 7 , 3] \n", + "hours_2 = [ 1 , 4 , 3 , 5 ,7 ,2 ,1]\n", + "days = [1 ,2 , 3 ,4 ,5 ,6 ,7] \n", + "\n", + "plt.xlabel('Days')\n", + "plt.ylabel('Study Hours') \n", + "plt.title('Trend of a student study time over a week')\n", + "\n", + "plt.plot(days,hours_1)\n", + "plt.plot(days,hours_2) " + ] + }, + { + "cell_type": "markdown", + "id": "d65f1a59-3bde-4e13-8001-4646e46d2f8b", + "metadata": {}, + "source": [ + "# 2D line plot from pandas data" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "ac176905-822e-4240-9013-2264e7cc7f1c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
YearProgrammingDigital Marketing
02015589734
12016862963
2201710851157
3201811501404
4201914391497
5202017151579
6202117851948
7202219952073
8202322362310
9202424422338
\n", + "
" + ], + "text/plain": [ + " Year Programming Digital Marketing\n", + "0 2015 589 734\n", + "1 2016 862 963\n", + "2 2017 1085 1157\n", + "3 2018 1150 1404\n", + "4 2019 1439 1497\n", + "5 2020 1715 1579\n", + "6 2021 1785 1948\n", + "7 2022 1995 2073\n", + "8 2023 2236 2310\n", + "9 2024 2442 2338" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv('enrollment_data.csv') \n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "dd912e80-b69c-4d10-826d-fea94410ecb7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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dkzjvaytrTFr1ix8+eWXGD9+PF599VUkJSUhNDS01Cmz6dOn4/fff8eLL76Id999F61bt4ZKpcLNmzexb98+zJw5U+PLpzy8vLwAAN9//z1GjRoFY2NjuLu7P/WiedHR0WVemLFly5alTn09q5EjR+LHH3/EqFGjkJiYCC8vLxw7dgxz585Fv3790KtXr0p5n/LS9udvYGCABQsWYMSIEQgMDMSbb76JwsJCfP3118jOzsb8+fM12terVw+DBw/GmjVrkJ2djVmzZmmMPQKAZcuWoW/fvujduzdGjx6NBg0aIDMzExcvXkRMTIzG9PaKGDNmDBYuXIihQ4fik08+gbu7O65fv465c+fCwsICb731Vrm2M2nSJCxYsADR0dFYsWJFqfXff/89unbtihdeeAFvv/02XF1dkZOTg6tXr2L37t04ePAggPthdtu2bZg0aRJeeeUVJCUl4YsvvoCjoyPi4+PLVcuECRNgbm6OLl26wNHRESkpKZg3bx6kUik6dOhQ/g+HajYtD+omqlZbt24VQUFBolmzZqJu3brC2NhYNGrUSAQHB4sLFy5otE1MTBQBAQHC0tJSABAuLi7qdVeuXBEBAQHCyspK1K9fX0ydOlX88ccfpabdq1QqMW/ePOHs7CxMTExE69atxe7du0W3bt1KzWDLzc0Vn3zyiXB3dxcmJibqKcfvvvuuSElJUbcDICZPnlyqb4/OxhJCiNmzZwsnJydhYGBQqrZHPWmWGQARHh4uhPhvltfXX39dahsAREhIiPr5qFGjhIWFRZnvl5GRId566y3h6OgojIyMhIuLi5g9e7YoKCh4Yr+eNMssPT1d47WPe/9u3bqJVq1aaSzT9ucvhBA7duwQvr6+wszMTFhYWIiePXuKf/75p8y2+/btU++bK1eulNnmzJkzYtiwYUImkwljY2Ph4OAgevToIZYuXapu82CW2aMz7J4kPj5eBAcHC1dXV2FqaioaNWokXnvtNXH+/Plyb0MIIfz9/YWNjY24d+9emesTEhLE2LFjRYMGDYSxsbGoX7++6Ny5s/jyyy812s2fP19di4eHh1i+fLn6Z+Jhj9t3a9euFd27dxf29vbCxMREODk5iWHDhomzZ89WqD9Us0mEEKI6AxgREVFaWhpcXFwwdepUXiWedAJPmRERUbW5desWrl+/jq+//hoGBgYap6mJtInT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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.xlabel('Years') \n", + "plt.ylabel('Count of Enrollment')\n", + "plt.title('Student Enrollment over 8 years')\n", + "\n", + "plt.plot(df['Year'] ,df['Programming']) " + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "cb9b2074-d3be-41a5-8932-3a86078bd73a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAkQAAAHFCAYAAAAT5Oa6AAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjAsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvlHJYcgAAAAlwSFlzAAAPYQAAD2EBqD+naQAAgYxJREFUeJzt3XdcleX/x/HXYQ/xKCJLEXEPcC+0nOXIUWrucKaVK1MbttTqq2W/pmaZmZq74Swzt2aKIop7C04QZIPsc/3+OHn0BCrIgcP4PB8PHnHf93Vf53NzhPPuvq/rvjVKKYUQQgghRClmYe4ChBBCCCHMTQKREEIIIUo9CURCCCGEKPUkEAkhhBCi1JNAJIQQQohSTwKREEIIIUo9CURCCCGEKPUkEAkhhBCi1JNAJIQQQohSTwKRKHUOHjxI7969qVKlCra2tri5ueHv78+UKVOM2s2fP58lS5YUSA3t27enffv2BdL3Xfv372fGjBnExcXlqv2MGTPQaDQP/AoLCyvQeh+katWqDB8+3LAcFhaGRqMpsPfGVPL68y9OIiIiGD9+PNWqVcPe3h5vb29GjRrF1atXzV2aEI/NytwFCFGY/vjjD3r16kX79u2ZM2cOHh4ehIeHc/jwYVavXs1nn31maDt//nxcXFyMPoyLk/379zNz5kyGDx9OuXLlcr3fli1b0Gq12dZ7eHiYsLqS73F//kVdWloabdu2JTY2lpkzZ1KvXj3OnTvH9OnT+euvvzhz5gxOTk7mLlOIPJNAJEqVOXPm4OPjw19//YWV1b1//gMHDmTOnDlmrKzoaNq0KS4uLgXW/507d3BwcCiw/kX+paSkYGdnh0ajybbt77//5sKFC/zwww+MGjUK0J/xLFu2LIMHD2b79u307t27sEt+LEopUlNTsbe3N3cpogiQS2aiVImOjsbFxcUoDN1lYXHv16Fq1aqcOnWKPXv2GC4ZVa1aFYAlS5bkeAlp9+7daDQadu/ebVinlGLOnDl4e3tjZ2dHkyZN+PPPP3OsLSEhgalTp+Lj44ONjQ2VKlVi0qRJJCcnG7XTaDSMHz+eZcuWUbduXRwcHGjYsCG///67oc2MGTN4/fXXAfDx8TEcw/21Pa67l6z+7//+j88//xwfHx/KlCmDv78/gYGBRm2HDx9OmTJlOHHiBJ07d8bJyYlOnToBEBMTw9ixY6lUqRI2NjZUq1aNd955h7S0tDzXdPdy3/Hjx+nXrx9arRZnZ2cmT55MZmYm586do2vXrjg5OVG1atUcw29R+Plv3LgRf39/HBwccHJy4umnn+bAgQOG7evXr0ej0bBjx45s+3777beGn8Fdhw8fplevXjg7O2NnZ0fjxo35+eefjfa7++9569atjBw5kooVK+Lg4PDA98Ha2hog21nEu2fB7OzsHnh8YWFhWFlZMXv27Gzb9u7di0aj4ZdffjGsu3DhAoMHD8bV1RVbW1vq1q3LN998Y7RfamoqU6ZMoVGjRob33d/fnw0bNmR7jbvv3XfffUfdunWxtbVl6dKlgP7n17BhQ8qUKYOTkxN16tTh7bfffuCxiBJICVGKvPjiiwpQEyZMUIGBgSo9PT3HdkeOHFHVqlVTjRs3VgcOHFAHDhxQR44cUUoptXjxYgWo0NBQo3127dqlALVr1y7DuunTpytAjRo1Sv3555/q+++/V5UqVVLu7u6qXbt2hnbJycmqUaNGysXFRX3++edq+/bt6quvvlJarVZ17NhR6XQ6Q1tAVa1aVbVo0UL9/PPPavPmzap9+/bKyspKXbp0SSml1LVr19SECRMUoNauXWs4hvj4+Af+bO7WGhERoTIyMoy+MjMzDe1CQ0MNNXTt2lWtX79erV+/Xvn5+any5curuLg4Q9thw4Ypa2trVbVqVTV79my1Y8cO9ddff6mUlBTVoEED5ejoqP7v//5Pbd26Vb333nvKyspKPfPMM0Z1eXt7q2HDhmV7/cWLF2ervXbt2urDDz9U27ZtU2+88YYC1Pjx41WdOnXU119/rbZt26ZGjBihAPXbb78VqZ//ihUrFKA6d+6s1q9fr9asWaOaNm2qbGxs1N9//62UUiojI0O5urqqIUOGZNu/RYsWqkmTJoblnTt3KhsbG/Xkk0+qNWvWqC1btqjhw4dn+9nd/fdcqVIlNWbMGPXnn3+qX3/91eg9v19GRoZq2rSpql+/vjp06JBKTExUwcHBqlGjRqpJkyYP/J26q3fv3qpKlSrZ+u/Xr5/y9PRUGRkZSimlTp06pbRarfLz81M//fST2rp1q5oyZYqysLBQM2bMMOwXFxenhg8frpYtW6Z27typtmzZoqZOnaosLCzU0qVLjV7j7nE2aNBArVy5Uu3cuVOdPHlSrVq1yvB3YevWrWr79u3qu+++UxMnTnzosYiSRQKRKFVu376tnnjiCQUoQFlbW6vWrVur2bNnq8TERKO29evXNwotd+U2EMXGxio7OzvVu3dvo3b//POPAoz6nj17trKwsFBBQUFGbX/99VcFqM2bNxvWAcrNzU0lJCQY1kVERCgLCws1e/Zsw7pPP/00xzof5G6oyOmrevXqhnZ3A4mfn5/Rh9qhQ4cUoFatWmVYN2zYMAWoH3/80ei1vvvuOwWon3/+2Wj9J598ogC1detWw7q8BKLPPvvMqL9GjRoZQsldGRkZqmLFiqpPnz6Gdeb++WdlZSlPT0/l5+ensrKyDOsTExOVq6urat26tWHd5MmTlb29vVHwPH36tALU3LlzDevq1KmjGjdubAgYd/Xo0UN5eHgYXufuv+ehQ4c+ss67EhISVM+ePY3+jbRv315FR0c/ct+7vyfr1q0zrLtx44aysrJSM2fONKzr0qWLqly5crYQOX78eGVnZ6diYmJy7D8zM1NlZGSoUaNGqcaNGxttA5RWq8227/jx41W5cuUeWbso2eSSmShVKlSowN9//01QUBAff/wxzz77LOfPn2fatGn4+flx+/Ztk73WgQMHSE1NZciQIUbrW7dujbe3t9G633//HV9fXxo1akRmZqbhq0uXLjleaunQoYPRwFU3NzdcXV25cuVKvuvevn07QUFBRl/r16/P1q579+5YWloalhs0aACQYw19+/Y1Wt65cyeOjo48//zzRuvvDmDP6ZJQbvTo0cNouW7dumg0Grp162ZYZ2VlRY0aNYzqNPfP/9y5c9y8eZOAgACjS7dlypShb9++BAYGcufOHQBGjhxJSkoKa9asMbRbvHgxtra2DB48GICLFy9y9uxZw7+9+4/pmWeeITw8nHPnzhnV8N/36EEyMjIYMGAAISEhLFy4kL1797J06VJu3LjB008/TXx8/EP3b9++PQ0bNjS69PXdd9+h0WgYM2YMoL8MtmPHDnr37o2Dg0O2+lNTU40uz/7yyy+0adOGMmXKYGVlhbW1NYsWLeLMmTPZXr9jx46UL1/eaF2LFi2Ii4tj0KBBbNiwwaR/B0TxIYFIlErNmjXjzTff5JdffuHmzZu89tprhIWFmXRgdXR0NADu7u7Ztv133a1btzh+/DjW1tZGX05OTiilsv2BrlChQrY+bW1tSUlJyXfdDRs2pFmzZkZfvr6+2dr9twZbW1uAbDU4ODhQtmxZo3XR0dG4u7tnG7Tr6uqKlZWV4WeXV87OzkbLNjY2ODg4ZBvXYmNjQ2pqqmHZ3D//u8eb00w+T09PdDodsbGxANSvX5/mzZuzePFiALKysli+fDnPPvus4fhv3boFwNSpU7Md09ixYwGyHVNuZxEuWrSIP//8k7Vr1/Liiy/y5JNPMnToULZs2cKRI0f48ssvH9nHxIkT2bFjB+fOnSMjI4OFCxfy/PPPG34voqOjyczMZO7cudnqf+aZZ4zqX7t2Lf3796dSpUosX76cAwcOEBQUxMiRI43e44cdZ0BAAD/++CNXrlyhb9++uLq60rJlS7Zt25arn4koGWSWmSj1rK2tmT59Ol988QUnT558ZPu7H67/HXT6oA/NiIiIbH1EREQYBmkDuLi4YG9vz48//pjjaxbkrK+CltNMpQoVKnDw4EGUUkbbIyMjyczMLPTjNffP/+6/lfDw8Gzbbt68iYWFhdFZjREjRjB27FjOnDnD5cuXCQ8PZ8SIEdnqnTZtGn369MnxNWvXrm20nNP7lJOQkBAsLS1p0qSJ0fpq1apRoUKFXP0ODR48mDfffJNvvvmGVq1aERERwbhx4wzby5cvj6WlJQEBAUbr7+fj4wPA8uXL8fHxYc2aNUbH8KBB4Q86zhEjRjBixAiSk5PZu3cv06dPp0ePHpw/fz7bGV1RMkkgEqVKeHh4jv+HePfUuqenp2Hdg/6P/26QOX78uNGHysaNG43atWrVCjs7O1asWGF0OWL//v1cuXLFKBD16NGDWbNmUaFCBcMf+vx60BmboqBTp078/PPPrF+/3miK9k8//WTYXpjM/fOvXbs2lSpVYuXKlUydOtXwoZ2cnMxvv/1mmHl216BBg5g8eTJLlizh8uXLVKpUic6dOxv1V7NmTY4dO8asWbNMcjx3eXp6kpWVRVBQEC1btjSsP3/+PNHR0VSuXPmRfdjZ2TFmzBjmzZvH/v37adSoEW3atDFsd3BwoEOHDhw9epQGDRpgY2PzwL40Gg02NjZGQSciIiLHWWa54ejoSLdu3UhPT+e5557j1KlTEohKCQlEolTp0qULlStXpmfPntSpUwedTkdISAifffYZZcqU4dVXXzW09fPzY/Xq1axZs4Zq1aphZ2eHn58fzZs3p3bt2kydOpXMzEzKly/PunXr2Ldvn9FrlS9fnqlTp/LRRx/x4osv0q9fP65du8aMGTOyXTKbNGkSv/32G23btuW1116jQYMG6HQ6rl69ytatW5kyZYrRh09u+Pn5AfDVV18xbNgwrK2tqV279iNvmhccHJzjjRnr1auX7dLX4xo6dCjffPMNw4YNIywsDD8/P/bt28esWbN45plneOqpp0zyOrll7p+/hYUFc+bMYciQIfTo0YOXXnqJtLQ0Pv30U+Li4vj444+N2pcrV47evXuzZMkS4uLimDp1qtHYI4AFCxbQrVs3unTpwvDhw6lUqRIxMTGcOXOGI0eOGE1vz4sRI0bwxRdf0LdvX959911q167N5cuXmTVrFo6Ojrz88su56mfs2LHMmTOH4OBgfvjhh2zbv/rqK5544gmefPJJXnnlFapWrUpiYiIXL15k06ZN7Ny5E9CH2bVr1zJ27Fief/55rl27xocffoiHhwcXLlzIVS2jR4/G3t6eNm3a4OHhQUREBLNnz0ar1dK8efPc/3BE8WbmQd1CFKo1a9aowYMHq5o1a6oyZcooa2trVaVKFRUQEKBOnz5t1DYsLEx17txZOTk5KUB5e3sbtp0/f1517txZlS1bVlWsWFFNmDBB/fHHH9mm3et0OjV79mzl5eWlbGxsVIMGDdSmTZtUu3btss1gS0pKUu+++66qXbu2srGxMUw5fu2111RERIShHaDGjRuX7dj+OxtLKaWmTZumPD09lYWFRbba/uths8wAtW3bNqXUvVlen376abY+ADV9+nTD8rBhw5Sjo2OOrxcdHa1efvll5eHhoaysrJS3t7eaNm2aSk1NfehxPWyWWVRUlNG+D3r9du3aqfr16xutM/fPXyml1q9fr1q2bKns7OyUo6Oj6tSpk/rnn39ybLt161bDe3P+/Pkc2xw7dkz1799fubq6Kmtra+Xu7q46duyovvvuO0Obu7PM/jvD7mEuXLigAgICVNWqVZWtra2qUqWKGjBggDp16lSu+1BKqfbt2ytnZ2d1586dHLeHhoaqkSNHqkqVKilra2tVsWJF1bp1a/XRRx8Ztfv4448NtdStW1ctXLjQ8G/ifg9675YuXao6dOig3NzclI2NjfL09FT9+/dXx48fz9PxiOJNo5RShRnAhBBCiMjISLy9vZkwYYLcJV4UCXLJTAghRKG5fv06ly9f5tNPP8XCwsLoMrUQ5iTT7oUQQhSaH374gfbt23Pq1ClWrFhBpUqVzF2SEADIJTMhhBBClHpyhkgIIYQQpZ4EIiGEEEKUehKIhBBCCFHqySyzXNLpdNy8eRMnJ6dc3+JeCCGEEOallCIxMRFPT89sNzC9nwSiXLp58yZeXl7mLkMIIYQQj+HatWsPfbSMBKJcunu7/WvXrpns8QVCCCGEKFgJCQl4eXk98rFFZg1Es2fPZu3atZw9exZ7e3tat27NJ598YvTAzOHDh7N06VKj/Vq2bElgYKBhOS0tjalTp7Jq1SpSUlLo1KkT8+fPN0qCsbGxTJw40fAAzl69ejF37lzKlSuXq1rvXiYrW7asBCIhhBCimHnUcBezDqres2cP48aNIzAwkG3btpGZmUnnzp1JTk42ate1a1fCw8MNX5s3bzbaPmnSJNatW8fq1avZt28fSUlJ9OjRg6ysLEObwYMHExISwpYtW9iyZQshISEEBAQUynEKIYQQomgrUjdmjIqKwtXVlT179tC2bVtAf4YoLi6O9evX57hPfHw8FStWZNmyZQwYMAC4N95n8+bNdOnShTNnzlCvXj0CAwMNT6wODAzE39+fs2fPGp2RepCEhAS0Wi3x8fFyhkgIIYQoJnL7+V2kpt3Hx8cD4OzsbLR+9+7duLq6UqtWLUaPHk1kZKRhW3BwMBkZGXTu3NmwztPTE19fX/bv3w/AgQMH0Gq1hjAE0KpVK7RaraHNf6WlpZGQkGD0JYQQQoiSqcgEIqUUkydP5oknnsDX19ewvlu3bqxYsYKdO3fy2WefERQURMeOHUlLSwMgIiICGxsbypcvb9Sfm5sbERERhjaurq7ZXtPV1dXQ5r9mz56NVqs1fMkMMyGEEKLkKjKzzMaPH8/x48fZt2+f0fq7l8EAfH19adasGd7e3vzxxx/06dPngf0ppYwGUOU0mOq/be43bdo0Jk+ebFi+O0pdCCGEECVPkThDNGHCBDZu3MiuXbseeo8AAA8PD7y9vblw4QIA7u7upKenExsba9QuMjISNzc3Q5tbt25l6ysqKsrQ5r9sbW0NM8pkZpkQQghRspk1ECmlGD9+PGvXrmXnzp34+Pg8cp/o6GiuXbuGh4cHAE2bNsXa2ppt27YZ2oSHh3Py5Elat24NgL+/P/Hx8Rw6dMjQ5uDBg8THxxvaCCGEEKL0Musss7Fjx7Jy5Uo2bNhgNNNLq9Vib29PUlISM2bMoG/fvnh4eBAWFsbbb7/N1atXOXPmjOEmS6+88gq///47S5YswdnZmalTpxIdHU1wcDCWlpaAfizSzZs3WbBgAQBjxozB29ubTZs25apWmWUmhBBCFD+5/fw2ayB60PidxYsXM3z4cFJSUnjuuec4evQocXFxeHh40KFDBz788EOj8Typqam8/vrrrFy50ujGjPe3iYmJyXZjxnnz5uX6xowSiIQQQojip1gEouJEApEQQghR/BTL+xAJIYQQQpiDBCIhhBBClHoSiIQQQghhVqkZWew9H2XWGiQQCSGEEMJsQm8n0/fb/YxYEkRQWIzZ6igyd6oWQgghROmy8dhNpv12nOT0LJwdbUjL0JmtFglEQgghhChUqRlZzNx0mlWHrgLQwseZrwc2xl1rZ7aaJBAJIYQQotBcjExi/MojnI1IRKOB8R1q8GqnmlhZmncUjwQiIYQQQhSKtUeu8+76k9xJz8KljA1fDmjMEzVdzF0WIIFICCGEEAUsJT2L9zec5Jfg6wC0rl6BLwc0wrWs+S6R/ZcEIiGEEEIUmPO3Ehm34ggXIpOw0MCrnWoxvmMNLC1yfnyXuUggEkIIIYTJKaX4Jfg67284SWqGjopOtnw9sDH+1SuYu7QcSSASQgghhEklp2Xy3vqTrD16A4Ana7rwxYBGuJSxNXNlDyaBSAghhBAmcyY8gXErj3A5KhkLDUzpXJtX2lXHoohdIvsvCURCCCGEyDelFKsOXWPmplOkZepwL2vH14Ma08LH2dyl5YoEIiGEEELkS2JqBm+vO8mmYzcB6FC7Ip/1b4Szo42ZK8s9CURCCCGEeGwnb8QzfuURwqLvYGmh4Y0utRn9ZLUif4nsvyQQCSGEECLPlFIsD7zCh7+fIT1LR6Vy9nw9qDFNvcubu7THIoFICCGEEHmSkJrBW78dZ/OJCACequvG//VrQDmH4nOJ7L8kEAkhhBAi145fj2PcyiNci0nB2lLDm13rMOoJHzSa4nWJ7L8kEAkhhBDikZRSLP4njNl/niEjS1G5vD3zBjehkVc5c5dmEhKIhBBCCPFQ8XcyeP3XY2w9fQuArvXd+eT5Bmjtrc1cmelIIBJCCCHEAx29Gsv4lUe5EZeCjaUF73Svy1B/b9NcItNlQfJtSIqAxAjwagH25hmULYFICCGEENnodIpF+0L5ZMtZMnUK7woOfDO4Cb6VtI/eWSm4EwOJ4fqg86D/Jt0ClXVvv2G/g8+TBXdQDyGBSAghhBBGYpPTmfLLMXaejQSgewMPPu7jh5OtFaTEPiDk3PeVFAFZ6bl7MY0FOLqCk3sBHtGjSSASQgghSjulIC0REiM4d/ECK3ccpEZKJE/axNHRU0eV1AQ0C/4NPpmpue/XwQWcPPRhx8n9vu/v+69jRbA0fxwxfwVCCCGEKDjpyfedvcnprM6/32ckA1AbmAlwd7x0RA592pfPOdzc/19HV7AqPvclkkAkhBBCFFcZKRB+7OGXr9Lic91dgnLgliqProwb1arVwFrrmf3sThl3sLYrwIMyDwlEQgghRHF06xSsHADx1x7d1trh30CT/fLV6SRH3tt5m9OJDihrB2b2qk//Zl7F/kaLeSWBSAghhChuLmyHX4ZDeiI4VACXWjlftirzb/ixdYL/BJwsnWL+rot8sf08OuVMDdcyfDO4CbXdncxzTGYmgUgIIYQoToIWwebX9dPVqz4J/X8CB+c8dRGVmMakNUf552I0AM83rcwHz9bHwab0xoLSe+RCCCFEcaLTwbb34MA8/XLDwdDzqzwPXP7n4m1eXR3C7aQ07K0t+eg5X/o2rVwABRcvEoiEEEKIoi79DqwdDWd/1y93eBfaTs12GexhsnSKr3ZcYO7OCygFtd2c+GZIY2q4ls5LZP8lgUgIIYQoyhJvwaoBcPMoWNrAc9+C3/N56uJWQiqvrj5K4OUYAAY292J6z/rY21gWRMXFkgQiIYQQoqi6dRpW9tfPJLN3hkGroEqrPHWx93wUr60JITo5HUcbS2b18ePZRpUKqODiy8KcLz579myaN2+Ok5MTrq6uPPfcc5w7d86wPSMjgzfffBM/Pz8cHR3x9PRk6NCh3Lx506if9u3bo9FojL4GDhxo1CY2NpaAgAC0Wi1arZaAgADi4uIK4zCFEEKIvLu4HRZ11oehCjXgxe15CkOZWTrmbDnL0B8PEZ2cTl2Psmya8ISEoQcwayDas2cP48aNIzAwkG3btpGZmUnnzp1JTtbfLfPOnTscOXKE9957jyNHjrB27VrOnz9Pr169svU1evRowsPDDV8LFiww2j548GBCQkLYsmULW7ZsISQkhICAgEI5TiGEECJPDv8IK/rrp9V7PwGjtkGF6rnePTw+hUELA5m/+xIAL7SqwrqxralWsUxBVVzsaZRSytxF3BUVFYWrqyt79uyhbdu2ObYJCgqiRYsWXLlyhSpVqgD6M0SNGjXiyy+/zHGfM2fOUK9ePQIDA2nZsiUAgYGB+Pv7c/bsWWrXrv3I2hISEtBqtcTHx1O2bNnHO0AhhBDiYXQ62P4+7J+rX244CHp+naeZZLvORjL55xBi72RQxtaKj/v60aOBZwEVXPTl9vPbrGeI/is+Xn97cWfnB99PIT4+Ho1GQ7ly5YzWr1ixAhcXF+rXr8/UqVNJTEw0bDtw4ABardYQhgBatWqFVqtl//79pj0IIYQQ4nGk34GfA+6FoQ7v6AdQ5zIMZWTpmL35DCOWBBF7JwO/Slr+mPhEqQ5DeVFkBlUrpZg8eTJPPPEEvr6+ObZJTU3lrbfeYvDgwUYpb8iQIfj4+ODu7s7JkyeZNm0ax44dY9u2bQBERETg6uqarT9XV1ciInJ6ah2kpaWRlpZmWE5ISMjP4QkhhBAPlngLVg2Em0f0M8menQ8N+uV69+uxd5iw6ihHr8YBMLx1VaY9UwdbK5lFlltFJhCNHz+e48ePs2/fvhy3Z2RkMHDgQHQ6HfPnzzfaNnr0aMP3vr6+1KxZk2bNmnHkyBGaNGkCkOMzWZRSD3xWy+zZs5k5c+bjHo4QQgiRO/+dSTZwJXj753r3racieP3X48SnZOBkZ8Wnzzegq69HARZcMhWJS2YTJkxg48aN7Nq1i8qVs98tMyMjg/79+xMaGsq2bdseOYanSZMmWFtbc+HCBQDc3d25detWtnZRUVG4ubnl2Me0adOIj483fF27louH5wkhhBB5cWkn/NhFH4acq+tnkuUyDGXpFLM2n2HMsmDiUzJo6FWOzROflDD0mMx6hkgpxYQJE1i3bh27d+/Gx8cnW5u7YejChQvs2rWLChUqPLLfU6dOkZGRgYeH/h+Fv78/8fHxHDp0iBYtWgBw8OBB4uPjad26dY592NraYmtrm4+jE0IIIR4ieAn8Pln/TDLvNjBgea6fSZaSnsWkNUf565T+f/ZffMKHN7rWwcaqSJznKJbMOsts7NixrFy5kg0bNhjN9NJqtdjb25OZmUnfvn05cuQIv//+u9HZHGdnZ2xsbLh06RIrVqzgmWeewcXFhdOnTzNlyhTs7e0JCgrC0lJ//bRbt27cvHnTMB1/zJgxeHt7s2nTplzVKrPMhBBCmIROB9unw/6v9csNBkKvr8Eqd/8TfjspjReXHibkWhw2lhZ81r8hPRvKwOkHye3nt1kD0YPG7yxevJjhw4cTFhaW41kjgF27dtG+fXuuXbvGCy+8wMmTJ0lKSsLLy4vu3bszffp0o9lqMTExTJw4kY0bNwLQq1cv5s2bl2222oNIIBJCCJFv6Xdg3UtwRv9ZRPu3od0buX4m2eWoJIYvDuJqzB209tYsHNqMFj55e9J9aVMsAlFxIoFICCFEviTegtWD4EbwvzPJvoEG/XO9++GwGF786TBxdzLwcrZnyYgWVJcbLT5Sbj+/i8wsMyGEEKLEijyjv/N0/FWwL//vTLKcx7Dm5I/j4bz2cwjpmToaepVj0bBmuJSRca6mJIFICCGEKEiXdsLPwyAtQT+TbMgvuX4Mh1KK7/deZvafZwF4up4bXw9sLE+pLwASiIQQQoiCcv9MsiqtYeCKXM8ky8zSMXPTaZYFXgH0N1t8r0c9LC1yN95I5I0EIiGEEMLUdDrYMRP++VK/3GAA9Jqb65lkd9IzmbDyKDvORqLRwLvd6zHqiZwnGQnTkEAkhBBCmFJGin4m2ekN+uX206Ddm7meSRaZmMqoJYc5cSMeWysLvhrYSG62WAgkEAkhhBCmkhQJqwbBjcP6mWS95kHDAbne/WJkIsN+DOJGXArOjjYsHNqMpt7lC7BgcZcEIiGEEMIUIs/Cyn4Q9+9MsgEroGqbXO8eeDmaMT8dJiE1Ex8XRxYPb05VF8cCLFjcTwKREEIIkV+Xdv07kywenKvBkF9zPZMMYP3RG7z+6zEyshRNvcuzcGgznB1tCrBg8V8SiIQQQoj8CF4Kf0wGXSZU8dffYyiXM8mUUszffYlP/zoHwDN+7nzevxF21jKtvrBJIBJCCCEeh04HOz+AfV/ol/36w7Pzcj2TLCNLx3vrT7I66BoAY9pW462udbCQafVmIYFICCGEyKuMFFj3Mpxer19u9xa0fyvXM8mS0jIZu+IIe89HYaGBGb3qM9S/aoGVKx5NApEQQgiRF0lRsGqgfiaZhbX+rFDDgbnePSI+lZFLgjgdnoC9tSVzBzXmqXpuBViwyA0JREIIIURu5XMm2dmIBEYsDiI8PhWXMjb8OLw5DSqXK7h6Ra5JIBJCCCFy4/JuWDP03kyywb+AS41c777vwm1eWR5MYlom1Ss6smREC7ycHQquXpEnEoiEEEKIRzmyDH6fdG8m2YAV4Fgh17v/cvga09aeIFOnaOHjzPcBTSnnINPqixIJREIIIcSD6HSw80PY97l+2a8fPPtNrmeSKaX4cvsFvtpxAYBeDT35tF8DbK1kWn1RI4FICCGEyEm2mWRv6p9LlsuZZOmZOqatPcFvR64DMLZ9daZ2ri3T6osoCURCCCHEfyVFwepBcD1IP5Os11xoNCjXuyekZvDK8mD+uRiNpYWGD5/1ZXDLKgVYsMgvCURCCCHE/aLOwYp+EHcF7MrBwBVQ9Ylc734zLoURi4M4dysRBxtLvhnShA61XQuuXmESEoiEEEKIuy7vgTUB+plk5X1gyC/gUjPXu5+8Ec/IJUFEJqbh6mTLj8Ob41tJW4AFC1ORQCSEEEKA8Uwyr1b6Z5LlYSbZrnORjF9xhOT0LGq5lWHxiBZUKmdfcPUKk5JAJIQQonTT6WDXR/D3Z/pl3+f1M8ms7XLdxapDV3l3/UmydIrW1Svw7QtN0dpbF1DBoiBIIBJCCFF6ZaTA+rFwaq1+ue0b0OHtXM8kU0rxf1vP8c2uSwD0aVKJj/s0wMbKoqAqFgVEApEQQojSKfk2rBoE1w891kyytMws3vj1OBtCbgLwaqeaTHqqJppchilRtEggEkIIUfpEndc/kyw2TD+TbMBy8Hky17vH38lgzLLDHAyNwcpCw6w+fvRv5lVg5YqCJ4FICCFE6XHrNByYB8d/Bl0GlK8KQ37N00yyazF3GL74EJeikilja8V3LzTliZouBVezKBQSiIQQQpRsSukfzHpgHlzcfm99tQ7Q9wdwzH2YOX49jpFLgridlI6H1o7FI5pTx72s6WsWhU4CkRBCiJIpKwNOroX9c+HWCf06jQXU7Qn+E8CreZ662376FhNWHSUlI4u6HmVZPLw57trcz0QTRZsEIiGEECVLajwEL4WD30HCDf06awdoHACtXgFnnzx3+dOBMGZsPIVOQdtaFflmcGOc7GRafUkigUgIIUTJEHdNH4KCl0J6on6doyu0fAmajQQH5zx3qdMpPt5ylu/3XgZgYHMvPnzOF2tLmVZf0kggEkIIUbzdDNGPDzq5FlSWfl3FOtB6Avj1Ayvbx+o2NSOLKT8f448T4QBM7VyLcR1qyLT6EkoCkRBCiOJHKf0A6f1fQ+jee+t92kLriVDjqVzfXDEnMcnpjP7pMMFXYrG21PDp8w15rnElExQuiioJREIIIYqPzDT9lPkD8yDqrH6dxhJ8+0Lr8eDRMN8vcSU6meGLgwi9nUxZOysWBDTDv3run2kmiicJREIIIYq+OzFw+Ec49D0k3dKvs3GCpsOg5ctQzjQ3RTxyNZYXlx4mJjmdSuXsWTKiOTXdnEzStyjaJBAJIYQoumJCIXA+HF0OGXf068pW0s8WazIU7LQme6ktJ8N5dXUIaZk6/CppWTS8Ga5OMq2+tDDrMPnZs2fTvHlznJyccHV15bnnnuPcuXNGbZRSzJgxA09PT+zt7Wnfvj2nTp0yapOWlsaECRNwcXHB0dGRXr16cf36daM2sbGxBAQEoNVq0Wq1BAQEEBcXV9CHKIQQ4nFcPww/D4W5TfRnhTLugLsf9FkIrx7TD5g2YRhatC+UV1YcIS1TR6c6rqwe00rCUClj1kC0Z88exo0bR2BgINu2bSMzM5POnTuTnJxsaDNnzhw+//xz5s2bR1BQEO7u7jz99NMkJiYa2kyaNIl169axevVq9u3bR1JSEj169CArK8vQZvDgwYSEhLBlyxa2bNlCSEgIAQEBhXq8QgghHkKng7N/wI9d4YdOcHoDKJ1+gPTQDfDS39CgP1ia7v4/WTrFjI2n+PD30ygFL7SqwoKApjjaygWU0kajlFLmLuKuqKgoXF1d2bNnD23btkUphaenJ5MmTeLNN98E9GeD3Nzc+OSTT3jppZeIj4+nYsWKLFu2jAEDBgBw8+ZNvLy82Lx5M126dOHMmTPUq1ePwMBAWrZsCUBgYCD+/v6cPXuW2rVrP7K2hIQEtFot8fHxlC0rt2kXQgiTyUiBkJVw4BuIuaRfZ2ENDQaA/zhwq1cgL5uSnsWrq4+y9bR+TNK0bnUY07aaTKsvYXL7+V2kInB8fDwAzs76m2eFhoYSERFB586dDW1sbW1p164d+/fv56WXXiI4OJiMjAyjNp6envj6+rJ//366dOnCgQMH0Gq1hjAE0KpVK7RaLfv3788xEKWlpZGWlmZYTkhIMPnxCiFEqZYUBUE/QNBCuBOtX2enhWajoMUYKOtRYC99OymNUUsPc+xaHDZWFnzevyE9GngW2OuJoq/IBCKlFJMnT+aJJ57A19cXgIiICADc3NyM2rq5uXHlyhVDGxsbG8qXL5+tzd39IyIicHV1zfaarq6uhjb/NXv2bGbOnJm/gxJCCJHd7Qv6afPHVkNmqn5duSrQahw0fgFsyxToyx+/HsfYFUe4HptCOQdrFg5tRvOqeb+LtShZikwgGj9+PMePH2ffvn3Ztv339KVS6pGnNP/bJqf2D+tn2rRpTJ482bCckJCAl5dppnUKIUSpoxRcPaB/0Oq5zffWezaBNhOhTk+wLNiPJKUUywOv8OHvZ0jP0lHF2YHFI5pTvWLBBjBRPBSJQDRhwgQ2btzI3r17qVy5smG9u7s7oD/D4+Fx79RpZGSk4ayRu7s76enpxMbGGp0lioyMpHXr1oY2t27dyva6UVFR2c4+3WVra4ut7ePd7l0IIcS/sjLhzEb9GaEbwf+u1EDtZ/Q3Uqzin687SudWUlom09aeYNOxmwB0rufGp/0aorWXB7QKPbPOMlNKMX78eNauXcvOnTvx8TF+ArGPjw/u7u5s27bNsC49PZ09e/YYwk7Tpk2xtrY2ahMeHs7JkycNbfz9/YmPj+fQoUOGNgcPHiQ+Pt7QRgghhAmlJUHgdzC3Mfw6Qh+GrOyg6QgYHwSDVoJ360IJQ2cjEug1bx+bjt3EykLDu93rsiCgqYQhYcSsZ4jGjRvHypUr2bBhA05OTobxPFqtFnt7ezQaDZMmTWLWrFnUrFmTmjVrMmvWLBwcHBg8eLCh7ahRo5gyZQoVKlTA2dmZqVOn4ufnx1NPPQVA3bp16dq1K6NHj2bBggUAjBkzhh49euRqhpkQQohcSoyAgwvg8CJI1U+UwaECNB8NzV+EMhULtZxfDl/jvQ0nSc3Q4V7Wjm+GNKapt4wXEtmZNRB9++23ALRv395o/eLFixk+fDgAb7zxBikpKYwdO5bY2FhatmzJ1q1bcXK6dyv1L774AisrK/r3709KSgqdOnViyZIlWFpaGtqsWLGCiRMnGmaj9erVi3nz5hXsAQohRGlx67R+2vzxNaDL0K9zrq6/LNZwEFjbF2o5KelZTN94kp8P62/S27ZWRb7o35AKZWQohMhZkboPUVEm9yESQoj/UApC9+gHSl/cfm99FX/9naRrdQOLwh+ZcTkqibErjnA2IhELDbz2VC3GdaiBhYXcX6g0Kpb3IRJCCFEMZGXAybVwYC5EnNCv01hA3V76IFS5mdlK+/34Td789TjJ6Vm4lLHh64GNaV3DxWz1iOJDApEQQojcC1oEf38GCTf0y9YO0DhA/7BVZ5+H71uA0jKzmPXHGZYe0N+jroWPM/MGNca1rDyPTOSOBCIhhBC5c3QF/PHv/dkcXaHlS9BsJDiYd5DytZg7jF95hGPX9YO4x7avzuSna2FladaJ1KKYkUAkhBDi0SLPwB9T9N+3eRU6vANW5h+gvOPMLSb/fIz4lAy09tZ8MaAhHevkfH85IR5GApEQQoiHS0+Gn4dBZgpU7widZphlsPT9MrN0fLr1HAv2XAagoVc5vhncmMrlHcxalyi+JBAJIYR4uM2vw+1zUMYden9v9jB0KyGVCSuPcigsBoDhravy9jN1sbGSS2Ti8UkgEkII8WBHV0DICv0ssucXFfqNFf9r34XbvLr6KNHJ6ZSxtWLO8w14xs/j0TsK8QgSiIQQQuTs/nFDHd6Gqk+YrZQsnWLezot8ueM8SkFdj7LMH9IEHxdHs9UkShYJREIIIbJLT4ZfhuvHDVXrAE9MMVsp0UlpTFoTwt8XbgMwsLkXM3rVx87a8hF7CpF7EoiEEEJkt/kNiDqrHzfUZ6HZxg0FhcUwYeVRIhJSsbe25KPnfOnbtLJZahElmwQiIYQQxkJWQshy/bihvj+YZdyQUoqFf1/mky3nyNIpqld05NsXmlLLzenROwvxGCQQCSGEuCfy7L1xQ+2ngc+ThV5C/J0Mpv56jG2nbwHQq6Ens/v44WgrH1mi4Mi/LiGEEHrpd/TjhjLuQLX28GThjxs6cT2esSuDuRaTgo2lBe/3rMeQllXQaOTBrKJg5fmi8MiRI0lMTMy2Pjk5mZEjR5qkKCGEEGbw5+sQdQbKuP07bqjwBi0rpVh2IIy+3+7nWkwKXs72rB3bmhdaeUsYEoVCo5RSednB0tKS8PBwXF1djdbfvn0bd3d3MjMzTVpgUZGQkIBWqyU+Pp6yZcuauxwhhDCtY6th3Uv6cUNDN4BP20J76aS0TKatPcGmYzcB6FzPjU/7NURrb11oNYiSK7ef37m+ZJaQkIBSCqUUiYmJ2Nnde4JwVlYWmzdvzhaShBBCFANR5+D31/Tft3urUMPQuYhEXlkRzOWoZKwsNLzVrQ6jnvCRs0Ki0OU6EJUrVw6NRoNGo6FWrVrZtms0GmbOnGnS4oQQQhSw+8cN+bSDtlML7aV/Db7Ou+tPkJqhw72sHd8MaUxTb+dCe30h7pfrQLRr1y6UUnTs2JHffvsNZ+d7/2htbGzw9vbG09OzQIoUQghRQP58AyJPg6Orfop9IYwbSs3IYvqGU6w5fA2AtrUq8kX/hlQoY1vgry3Eg+Q6ELVr1w6A0NBQvLy8sDDzw/2EEELk07E1cHQZoPn3fkMFP+zhclQSY1cc4WxEIhYaeO2pWozrUAMLC7lEJswrz9Puvb29iYuL49ChQ0RGRqLT6Yy2Dx061GTFCSGEKCBR5++NG2r/FlRrV+Av+cfxcN787ThJaZm4lLHh64GNaV3DpcBfV4jcyHMg2rRpE0OGDCE5ORknJyejgW8ajUYCkRBCFHUZKf+OG0rWD6Bu+3qBvlxaZhaz/jjD0gNXAGjh48y8QY1xLWv3iD2FKDx5DkRTpkxh5MiRzJo1CwcHh4KoSQghREH6802IPKUfN9SnYMcNXY+9w7gVRzh2PR6Ase2rM/npWlhZyrALUbTkORDduHGDiRMnShgSQoji6PjPcGQp+nFDC8HJrcBeaseZW0z++RjxKRlo7a35YkBDOtYpuNcTIj/yHIi6dOnC4cOHqVatWkHUI4QQoqDcvgCbJum/b/em/vEcBSAzS8f/bT3Pd3suAdDQqxzfDG5M5fLyP9Ki6MpzIOrevTuvv/46p0+fxs/PD2tr4zuJ9urVy2TFCSGEMJH7xw1VfRLavVEgL3MrIZUJK49yKCwGgOGtq/L2M3WxsZJLZKJoy/OjOx423V6j0ZCVlZXvoooieXSHEKJY2/QqBC8Bx4rw8j5wcjf5S+y7cJtXVx8lOjmdMrZWzHm+Ac/4eZj8dYTIC5M/uuOu/06zF0IIUcSd+FUfhtDoH9pq4jCk0ynm7rzIlzvOoxTU9SjL/CFN8HFxNOnrCFGQ8hyI7peammr0TDMhhBBFzO2L+rNDoJ9eX72DSbuPTkpj0poQ/r5wG4CBzb2Y0as+dtYFf8drIUwpzxd1s7Ky+PDDD6lUqRJlypTh8uXLALz33nssWrTI5AUKIYR4THfHDaUn6ccNtX/LpN0fDouh+9f7+PvCbeytLfmsX0M+7ttAwpAolvIciP73v/+xZMkS5syZg42NjWG9n58fP/zwg0mLE0IIkQ9bpsGtE/pxQyZ8TplSioV7LzPg+0AiElKpXtGRDePb0LdpZZP0L4Q55DkQ/fTTT3z//fcMGTIES8t7v1wNGjTg7NmzJi1OCCHEYzrxKwQvRj9u6HuTjRuKv5PBmGXB/G/zGbJ0il4NPdk4/glquTmZpH8hzOWxbsxYo0aNbOt1Oh0ZGRkmKUoIIUQ+RF+6b9zQVKje8bG7Ukpx+XYyBy5Fc+ByNPsv3ib2TgY2lha837MeQ1pWMXqEkxDFVZ4DUf369fn777/x9vY2Wv/LL7/QuHFjkxUmhBDiMWSkws/D9OOGvJ+AdnkbN6SU4kr0HQ5cjubApWgCL0cTmZhm1KaKswPfDG6CX2WtKSsXwqzyHIimT59OQEAAN27cQKfTsXbtWs6dO8dPP/3E77//XhA1CiGEyK2/3taPG3Jw0Y8bsnz0n/lrMXcM4efA5WjC41ONtttYWdC0Snn8q1fAv3oFGnmVw1qeRSZKmDz/i+7Zsydr1qxh8+bNaDQa3n//fc6cOcOmTZt4+umn89TX3r176dmzJ56enmg0GtavX2+0XaPR5Pj16aefGtq0b98+2/aBAwca9RMbG0tAQABarRatVktAQABxcXF5PXQhhCjaTv4GhxdhGDdUNuebIt6MS+G34OtM/eUYbT7eyZNzdvHGb8dZe/QG4fGp2Fha0MLHmVc71WTV6FYcn96ZVWNaMbFTTZpXdZYwJEqkx7oPUZcuXejSpUu+Xzw5OZmGDRsyYsQI+vbtm217eHi40fKff/7JqFGjsrUdPXo0H3zwgWHZ3t7eaPvgwYO5fv06W7ZsAWDMmDEEBASwadOmfB+DEEIUCdGXYOO/44aenAI1Ohk23UpI1Y8BuhRNYGg0V6LvGO1qZaGhoVc5/KvpzwA1qVIeexuZOi9Kl3zdmDEpKSnbnavz8liLbt260a1btwdud3c3nhWxYcMGOnTokO3Bsg4ODtna3nXmzBm2bNlCYGAgLVu2BGDhwoX4+/tz7tw5ateunet6hRCiSMpI/fd+Q4ng3YaoZpMJPHaTA5ejCbwUzeXbyUbNLS00+FXS0urfANTMuzyOtvn6OBCi2Mvzb0BoaCjjx49n9+7dpKbeu86slCrQZ5ndunWLP/74g6VLl2bbtmLFCpYvX46bmxvdunVj+vTpODnpp4AeOHAArVZrCEMArVq1QqvVsn///gcGorS0NNLS7g0kTEhIMPERCSGEaaT+8RZ2EcdJtizHyOgXOTh7t9F2Cw3U99TqxwBVq0CzquVxsrPOuTMhSqk8B6IhQ4YA8OOPP+Lm5lZo0y2XLl2Kk5MTffr0yVaPj48P7u7unDx5kmnTpnHs2DG2bdsGQEREBK6urtn6c3V1JSIi4oGvN3v2bGbOnGnagxBCCBOIu5POwdAYDlyKxvrset65sxiAV1Je4mCyLRoN1HUvi3/1CrSqVoEWPs5o7SUACfEweQ5Ex48fJzg4uNAvNf34448MGTIk27PTRo8ebfje19eXmjVr0qxZM44cOUKTJk0Acgxtd89oPci0adOYPHmyYTkhIQEvL6/8HoYQQuRZQmoGhy7HGKbCn4lIQCnw1kTwu81c0MAq235Ua/Isg6tVoFU1Z8o52Dy6YyGEQZ4DUfPmzbl27VqhBqK///6bc+fOsWbNmke2bdKkCdbW1ly4cIEmTZrg7u7OrVu3srWLiorCzc3tgf3Y2tpia2ubr7qFEOJxJKVlEhQaY5gGf/JGPDpl3KZuRRsWZX6HU0oKGZVbMWjEd7maYi+EyFmef3t++OEHXn75ZW7cuIGvry/W1sanYRs0aGCy4u5atGgRTZs2pWHDho9se+rUKTIyMvDw0E839ff3Jz4+nkOHDtGiRQsADh48SHx8PK1btzZ5rUIIkVd30jM5HBZrOAN04kY8Wf9JQD4ujoZB0K2qOeO6910IOg8OFbDu96OEISHyKc+/QVFRUVy6dIkRI0YY1mk0mscaVJ2UlMTFixcNy6GhoYSEhODs7EyVKlUA/aWqX375hc8++yzb/pcuXWLFihU888wzuLi4cPr0aaZMmULjxo1p06YNAHXr1qVr166MHj2aBQsWAPpp9z169JAZZkIIs0jNyCL4Sqz+DNClaI5djyMjyzgAVXF2wL9aBVpVd8a/mgvu2vuGC5xaD0EL9d/3/h60lQqveCFKqDwHopEjR9K4cWNWrVqV70HVhw8fpkOHDoblu2N2hg0bxpIlSwBYvXo1SikGDRqUbX8bGxt27NjBV199RVJSEl5eXnTv3p3p06cbPXh2xYoVTJw4kc6dOwPQq1cv5s2b99h1CyFEXp28Ec+207c4cDmakKtxpGcZ37KkUjl7wxkg/+oVqFTOPueOYi7Dxgn675+YDDWfKuDKhSgdNEop9ehm9zg6OnLs2LEcH/BakiUkJKDVaomPj8/TvZaEEGJ54BXeXX/SaJ17WTvD5S//ai54Ods/+n8wM9Ng0dMQfgyq+MOw3+VSmRCPkNvP7zz/JnXs2LFUBiIhhHgc94ehjnVceaquG/7VK1C1gkPez7BvfVcfhuydoe8iCUNCmFCef5t69uzJa6+9xokTJ/Dz88s2qLpXr14mK04IIYqz+8PQ6Cd9ePuZuo8/zOD0Bjj0vf77PjJuSAhTy/MlMwuLBz/UryDvVG1ucslMCJEXywKv8J6pwlBMKCxoC2kJ0GYSPC03jRUitwrsktl/n10mhBDCmEnDUGaa/jllaQng1Qo6vmu6QoUQBnIBWgghTOj+MDSmbTWmdauTv0ccbXsfwkP044aeXwSW8ggOIQpCrgLR119/nesOJ06c+NjFCCFEcWbyMHR6Ixz8Tv997wWgrWyCKoUQOcnVGCIfH5/cdabRcPny5XwXVRTJGCIhxMMsOxDGextOASYKQzGhsKAdpMVDm1fh6Q9MVKkQpYtJxxCFhoaarDAhhChp7g9DL7Wtxlv5DUOZ6fDrSH0Y8moJHd8zUaVCiAd58JQxIYQQj2TyMAT6cUM3j4B9eXj+Rxk3JEQhyNUZoruP1MiNzz///LGLEUKI4uSnA2G8b+owdGYTHPxW//1z38m4ISEKSa4C0dGjR3PVWb7/EAghRDFRIGEoNgw2jNN/33oi1O6av/6EELmWq0C0a9eugq5DCCGKDaMw1K4ab3U1QRjKTIdfRkBqPFRuAZ3eN0GlQojcytcYouvXr3Pjxg1T1SKEEEVegYQhgO3T9eOG7MrJuCEhzCDPgUin0/HBBx+g1Wrx9vamSpUqlCtXjg8//FDuYi2EKNEKLAyd/QMC5+u/7/0dlPPKf59CiDzJ852q33nnHRYtWsTHH39MmzZtUErxzz//MGPGDFJTU/nf//5XEHUKIYRZ3R+GXm5XnTe71jZNGIq9Autf0X/fegLU7pb/PoUQeZbnh7t6enry3XffZXuq/YYNGxg7dmyJvYQmN2YUovQqsDCUmQ6Lu8KNYKjcHEb8KZfKhDCx3H5+5/mSWUxMDHXq1Mm2vk6dOsTExOS1OyGEKNKW7i+gMASwY6Y+DMm4ISHMLs+BqGHDhsybNy/b+nnz5tGwYUOTFCWEEEXB0v1hTN9YQGHo7B9w4N+/pb2/g3JVTNOvEOKx5HkM0Zw5c+jevTvbt2/H398fjUbD/v37uXbtGps3by6IGoUQotDdH4ZeaV+dN7qYMAzFXb03bsh/vIwbEqIIyPMZonbt2nH+/Hl69+5NXFwcMTEx9OnTh3PnzvHkk08WRI1CCFGoCjQM3X+/oUrNoNN00/QrhMiXPJ0hysjIoHPnzixYsEBmkwkhSqQl/4QyY9NpoADCEPw7bugw2Gmh32KwsjFd30KIx5anM0TW1tacPHlSHtEhhCiRCjwMnfvz3rih576VcUNCFCF5vmQ2dOhQFi1aVBC1CCGE2dwfhsYWRBiKuwbrXtZ/32oc1Oluur6FEPmW50HV6enp/PDDD2zbto1mzZrh6OhotF2edi+EKG7+G4ZeN2UYykiFsL9h50eQGgeVmsJTM0zTtxDCZPIciE6ePEmTJk0AOH/+vNE2uZQmhChuFv8TykxTh6GEm3BhK5z/Cy7vhow7+vV2Wnhexg0JURTlORDJk++FECXF/WFoXIfqTO38mGFIp4Pwo/oAdH4LhB8z3l62EtTqAs1HQ3lvE1QuhDC1PAciIYQoCfIdhtIS4dIuuPAXnN8KyZH3bdRA5Wb6EFSrK7j5gpxBF6JIy3MgSk5O5uOPP2bHjh1ERkZme8L95cuXTVacEEIUhB/3hfLB748RhmJC750FCtsHuox722ycoEZHfQCq8TSUqVhA1QshCkKeA9GLL77Inj17CAgIwMPDQ8YNCSGKlTyFoaxMuHZQH4DO/wW3zxlvL++jv8t0rS5QpbWMDRKiGMtzIPrzzz/5448/aNOmTUHUI4QQBeb+MDS+Qw2mdK6VPQzdiYGLO/Qh6OJ2/cywuzSW4N363qWwCjXkUpgQJUSeA1H58uVxdnYuiFqEEKLAPDAMKQVR5+6dBboWCOq+oQD2zlCzsz4EVe8I9uXMcwBCiAKV50D04Ycf8v7777N06VIcHBwKoiYhhDCpRftC+fD+MNTRG82lnffGA8VdMd7Btf69s0CVm4GFpRmqFkIUJo1SSuVlh8aNG3Pp0iWUUlStWhVra2uj7UeOHDFpgUVFQkICWq2W+Ph4ypYta+5yhBC5dDcMVSSOj+rfpLN1CJpLuyAj+V4jS1vwaftvCOoij9QQogTJ7ed3ns8QPffcc/mpSwghCodSrP/zT+L/+Y31NkdoZHEZLt23vYz7vbNA1dqBjeMDuxJClHx5PkNkSnv37uXTTz8lODiY8PBw1q1bZxS4hg8fztKlS432admyJYGBgYbltLQ0pk6dyqpVq0hJSaFTp07Mnz+fypUrG9rExsYyceJENm7cCECvXr2YO3cu5cqVy3WtcoZIiGIgPRku74HzW0g+tRnHtCjj7Z5N9AGoVhdwbwAWeX6coxCimDH5GaJDhw7RtGlTLC3119KVUkazM9LS0tiwYQP9+/fPdZHJyck0bNiQESNG0Ldv3xzbdO3alcWLFxuWbWyMp7VOmjSJTZs2sXr1aipUqMCUKVPo0aMHwcHBhloHDx7M9evX2bJlCwBjxowhICCATZs25bpWIUQRFXf137FAf0HoXshKA8ARSFa23KzgT40n+qKp2QWc3MxbqxCiyMr1GSJLS0vCw8NxdXUFoGzZsoSEhFCtWjUAbt26haenJ1lZWY9XiEaT4xmiuLg41q9fn+M+8fHxVKxYkWXLljFgwAAAbt68iZeXF5s3b6ZLly6cOXOGevXqERgYSMuWLQEIDAzE39+fs2fPUrt27VzVJ2eIhCgidFlw/fC9WWGRp4w2J9p58muSHzt1jWnWtgcTu/jK/dKEKMVMfobov7kppxxVEFffdu/ejaurK+XKlaNdu3b873//M4Sy4OBgMjIy6Ny5s6G9p6cnvr6+7N+/ny5dunDgwAG0Wq0hDAG0atUKrVbL/v37cx2IhBBmlBIHd2eFXdgKKTH3tmkswKsV1OrCr4n1mbonDdAwsWMNJj6dw32GhBAiByZ9lpmp//B069aNfv364e3tTWhoKO+99x4dO3YkODgYW1tbIiIisLGxoXz58kb7ubm5ERERAUBERIQhQN3P1dXV0CYnaWlppKWlGZYTEhJMdFRCiFxJioQzG+H0BriyH3SZ97bZafWPx6jVFWp0Agdnfvj7Mh/tOcPdMPSahCEhRB4U6Ye73r0MBuDr60uzZs3w9vbmjz/+oE+fPg/c77/jm3L6o/jfNv81e/ZsZs6c+ZiVCyEeS/JtOLMJTq3VPyvs/hskutS+NyvMqyVY3vvz9cPfl/nojzMATOxUk9eeqilhSAiRJ3kKRKdPnzacVVFKcfbsWZKSkgC4ffu26av7Dw8PD7y9vblw4QIA7u7upKenExsba3SWKDIyktatWxva3Lp1K1tfUVFRuLk9eIDltGnTmDx5smE5ISEBLy8vUx2KEOKuOzH/hqB1+kHR6r5xiJWaQv3eUKc7OFfLcXcJQ0IIU8hTIOrUqZPROKEePXoA+jMwjzrjYgrR0dFcu3YNDw8PAJo2bYq1tTXbtm0zzG4LDw/n5MmTzJkzBwB/f3/i4+M5dOgQLVq0AODgwYPEx8cbQlNObG1tsbW1LdDjEaLUSomFM7/rQ9Dl3cYhyKORPgTVfw7KV31oNwv3XuZ/myUMCSHyL9eBKDQ01OQvnpSUxMWLF41eIyQkBGdnZ5ydnZkxYwZ9+/bFw8ODsLAw3n77bVxcXOjduzcAWq2WUaNGMWXKFCpUqICzszNTp07Fz8+Pp556CoC6devStWtXRo8ezYIFCwD9tPsePXrIgGohClNKHJzbrA9Bl3aBLuPeNvcG90LQA84E/ZeEISGEKeU6EHl7e5v8xQ8fPkyHDh0My3cvUQ0bNoxvv/2WEydO8NNPPxEXF4eHhwcdOnRgzZo1ODk5Gfb54osvsLKyon///oYbMy5ZssRwDyKAFStWMHHiRMNstF69ejFv3jyTH48Q4j9S4+Hcn/oQdHGHcQhy89UHoHq9waVGnrq9Pwy92qkmrz1dy4RFCyFKI7Peqbo4kfsQCZFLaYlwbsu/IWgbZKXf2+ZaT38mqN5zUPHxQoyEISFEXhTYs8yEECKbtCT9jRJPrYML2wx3iwbApRbU76MPQq518vUy3++9xKzNZwEJQ0II05JAJIR4POnJ+psknloH57dCZsq9bRVq3BeC6oIJxvZIGBJCFKRcBaKNGzfSrVs3rK2tC7oeIURRln5Hfxns1Dr9XaMz7tzb5lzt34HRfcCtvklC0F0ShoQQBS1Xgah3795ERERQsWLFbM80E0KUcBmpcHG7/maJ57ZARvK9beWr/huCeutnihXALC8JQ0KIwpCrQFSxYkUCAwPp2bNnodxvSAhhZplp+llhp9bpZ4mlJ97bVq7KvRDk0ahAQtBdP+4LlTAkhCgUuQpEL7/8Ms8++ywajQaNRoO7u/sD2z7u0+6FEGaWma5/gOqpdfr7BaXd9/y+spX1U+Tr94FKTQo0BN216tBVPvj9NPDvfYYkDAkhClCuAtGMGTMYOHAgFy9epFevXixevJhy5coVcGlCiAKXmQ6he/Qh6MzvkBZ/b5uT530hqClYWBRaWeuOXuftdScAeKltNV57qmahvbYQonTK9SyzOnXqUKdOHaZPn06/fv1wcHAoyLqEEAUlK8M4BKXG3dtWxv3fENQbKrco1BB015aT4Uz95ThKwVB/b97qVkcu0wshCtxj35gxKiqKc+fOodFoqFWrFhUrVjR1bUWK3JhRFGtZmRD2978haBOkxNzb5ugK9Z4F3z7g1cosIeiuXeciGfPTYTKyFM83rcycvg2wsJAwJIR4fAV2Y8Y7d+4wfvx4li1bZhgvZGlpydChQ5k7d66cORKiqNBlQdi+f0PQRrgTfW+bg4s+BNXvDd6twcLywf0UkgOXonl5WTAZWYruDTz4RMKQEKIQ5TkQvfbaa+zZs4eNGzfSpk0bAPbt28fEiROZMmUK3377rcmLFELk0cUdsH4sJEXcW2fvDPV66ccEebcBy6JzX9bgK7GMWhpEWqaOp+q68uWARlhKGBJCFKI8XzJzcXHh119/pX379kbrd+3aRf/+/YmKijJlfUWGXDITxcax1bBhHOgywb481O2pPxNUtW2RCkF3nbwRz6CFgSSmZvJkTRcWDm2GnbX5z1gJIUqGAr1k5ubmlm29q6srd+7cyWEPIUShUAr++RK2z9Av+/WDZ78BK1tzVvVQF24lMvTHQySmZtK8ankWBDSVMCSEMIs8j5709/dn+vTppKamGtalpKQwc+ZM/P39TVqcECKXdFnw5xv3wlDrCdD7+yIdhsJuJzPkh4PEJKfToLKWH4c3x8Gm6J3BEkKUDnn+6/PVV1/RtWtXKleuTMOGDdFoNISEhGBnZ8dff/1VEDUKIR4mIxXWjYHTGwANdJkF/mPNXdVDXY+9w5AfDhKZmEYddyd+GtkCJzt5VqIQwnzyHIh8fX25cOECy5cv5+zZsyilGDhwIEOGDMHe3r4gahRCPEhKLKweAlf+AUsb6L1AP32+CItMSOWFHw5yIy6FahUdWTaqJeUcbMxdlhCilHus89P29vaMHj3a1LUIIfIi/gYs7wtRZ8C2LAxcAT5tzV3VQ8UkpzPkh4OERd+hcnl7VrzYkopORfeynhCi9JAL9kIUR7dOw4rnIeEGOHnAkF/B3dfcVT1UfEoGAYsOciEyCfeydqx8sRUeWjmrLIQoGiQQCVHchP0DqwdBajy41IYXfoNyXuau6qGS0zIZsfgQp24mUMHRhuUvtqRKBbmJqxCi6JBAJERxcnoD/DYastL0j9kYtAocnM1d1UOlZmTx4tLDHLkah9bemuUvtqSGaxlzlyWEEEYkEAlRXBz8Xj+1HgV1ekDfH8C6aF9ySs/U8fLyYA5cjqaMrRU/jWxBXQ+5sakQoujJ832IqlWrRnR0dLb1cXFxVKtWzSRFCSHuo5T+/kJ/vg4oaDYK+v9U5MNQZpaOV1cfZfe5KOysLfhxeHMaepUzd1lCCJGjPJ8hCgsLMzzU9X5paWncuHHDJEUJIf6VlQEbJ8CxVfrlju/Ck1NBU7Sf86XTKV7/9Th/nozAxtKChUOb0cKnaF/aE0KUbrkORBs3bjR8/9dff6HVag3LWVlZ7Nixg6pVq5q0OCFKtbRE+HkoXNoJGkvo9TU0fsHcVT2SUop31p9k3dEbWFlo+GZIE56sWdHcZQkhxEPlOhA999xzAGg0GoYNG2a0zdramqpVq/LZZ5+ZtDghSq2kSFjRD8JDwNpBf4ms5tPmruqRlFJ8+PsZVh26ioUGvhjQiKfrZX/2oRBCFDW5DkQ6nQ4AHx8fgoKCcHFxKbCihCjVoi/B8j4QGwYOLjDkZ6jU1NxV5crn287z4z+hAHzctwE9G3qauSIhhMidPI8hCg0NLYg6hBAA14NhZT+4Ew3lq8ILa6FCdXNXlSvzd19k7s6LAHzwbH36Nyva90YSQoj7Pda0+x07drBjxw4iIyMNZ47u+vHHH01SmBClzvmt8MswyLgDHo1gyC9QxtXcVeXK4n9CmbPlHABvdavDUP+q5i1ICCHyKM+BaObMmXzwwQc0a9YMDw8PNEV8tosQxcLR5bBxIqgsqN5JP2bItnjcvHBN0FVmbjoNwMRONXm5XfE4oyWEEPfLcyD67rvvWLJkCQEBAQVRjxCli1Kw9/9g10f65YaDoNdcsLQ2b125tCHkBm+tPQHA6Cd9eO2pmmauSAghHk+eA1F6ejqtW7cuiFqEKF10WbD5dTi8SL/8xGTo9H6Rv8fQXX+dimDyz8dQCoa0rMLbz9SVM8ZCiGIrz3eqfvHFF1m5cmVB1CJE6ZGRor/H0OFFgAa6fQpPTS82YWjP+SgmrDxKlk7Rp0klPnzWV8KQEKJYy/MZotTUVL7//nu2b99OgwYNsLY2PrX/+eefm6w4IUqkOzGwaiBcOwiWttB3IdR71txV5Vrg5WjG/HSY9Cwd3f08mNO3ARYWEoaEEMVbngPR8ePHadSoEQAnT5402ib/hyjEI8RdheV94fZ5sNPCoNXgXXwuQR+9GsuoJUGkZeroWMeVLwY0wsoyzyeahRCiyMlzINq1a1dB1CFEyRdxElY8D4nhULYSvPAbuNY1d1W5dupmPMN+PERyehatq1dg/pAm2FhJGBJClAxm/Wu2d+9eevbsiaenJxqNhvXr1xu2ZWRk8Oabb+Ln54ejoyOenp4MHTqUmzdvGvXRvn17NBqN0dfAgQON2sTGxhIQEIBWq0Wr1RIQEEBcXFwhHKEQ/wrdC4u76cNQxbowamuxCkMXIxMJWHSIhNRMmnqXZ+HQZthZW5q7LCGEMJk8nyHq0KHDQy+N7dy5M9d9JScn07BhQ0aMGEHfvn2Ntt25c4cjR47w3nvv0bBhQ2JjY5k0aRK9evXi8OHDRm1Hjx7NBx98YFi2t7c32j548GCuX7/Oli1bABgzZgwBAQFs2rQp17UK8dhO/gbrXoasdPBuAwNXgn05c1eVa1eikxm88CAxyen4VdKyeERzHG0f656uQghRZOX5r9rd8UN3ZWRkEBISwsmTJ7M99PVRunXrRrdu3XLcptVq2bZtm9G6uXPn0qJFC65evUqVKlUM6x0cHHB3d8+xnzNnzrBlyxYCAwNp2bIlAAsXLsTf359z585Ru3btPNUsRJ4cmA9/TdN/X7cX9FkI1nbmrSkPbsalMHjhQSIT06jt5sRPI1tQ1q543CNJCCHyIs+B6Isvvshx/YwZM0hKSsp3QQ8THx+PRqOhXLlyRutXrFjB8uXLcXNzo1u3bkyfPh0nJycADhw4gFarNYQhgFatWqHVatm/f/8DA1FaWhppaWmG5YSEBNMfkCi5dDrY/j7sn6tfbjEGun4MFsXnMlNkYipDfjjIjbgUfFwcWfZiC8o72pi7LCGEKBAmG0P0wgsvFOhzzFJTU3nrrbcYPHgwZcuWNawfMmQIq1atYvfu3bz33nv89ttv9OnTx7A9IiICV9fsz4NydXUlIiLiga83e/Zsw5gjrVaLl5c8qFLkUmY6rBtzLww9NQO6zSlWYSg2OZ2AHw4RejuZSuXsWfFiS1ydis+ZLSGEyCuTDQQ4cOAAdnYF8wczIyODgQMHotPpmD9/vtG20aNHG7739fWlZs2aNGvWjCNHjtCkSRMg59sBKKUeOhZq2rRpTJ482bCckJAgoUg8WmoCrHkBQveAhRU8+w00HPjo/YqQhNQMhv54iHO3EnEra8vK0S3xLGf/6B2FEKIYy3Mguv/sC+iDRXh4OIcPH+a9994zWWF3ZWRk0L9/f0JDQ9m5c6fR2aGcNGnSBGtray5cuECTJk1wd3fn1q1b2dpFRUXh5ub2wH5sbW2xtbXNd/2iFEmM0E+rjzgB1o4wYBnU6GTuqvIkOS2TEYuDOHEjHmdHG1a82BLvCo7mLksIIQpcngORVqs1WrawsKB27dp88MEHdO7c2WSFwb0wdOHCBXbt2kWFChUeuc+pU6fIyMjAw8MDAH9/f+Lj4zl06BAtWrQA4ODBg8THx8sz2YTp3L4Ay/vob7zoWBGG/AKejc1dVZ6kZmQx+qfDBF+JpaydFctGtaCGq5O5yxJCiEKR50C0ePFik714UlISFy9eNCyHhoYSEhKCs7Mznp6ePP/88xw5coTff/+drKwsw5gfZ2dnbGxsuHTpEitWrOCZZ57BxcWF06dPM2XKFBo3bkybNm0AqFu3Ll27dmX06NEsWLAA0E+779Gjh8wwE6ZxLQhW9oeUGHCuBi+sBWcfc1eVJ+mZOsauOML+S9E42liydGQL6ntqH72jEEKUEBqllHqcHYODgzlz5gwajYZ69erRuHHe/2949+7ddOjQIdv6YcOGMWPGDHx8cv5Q2bVrF+3bt+fatWu88MILnDx5kqSkJLy8vOjevTvTp0/H2dnZ0D4mJoaJEyeyceNGAHr16sW8efOyzVZ7mISEBLRaLfHx8Y+8bCdKkXN/wi8jIDMFPJvozww5upi7qjzJzNIxcfVRNp+IwM7agiUjWtCq2qPPxgohRHGQ28/vPAeiyMhIBg4cyO7duylXrhxKKeLj4+nQoQOrV6+mYsWK+S6+KJJAJLIJXgK/vwZKBzU7Q78lYFO8xtvodIqpvxxj7dEbWFtq+GFYc9rVKpm/w0KI0im3n995nnY/YcIEEhISOHXqFDExMcTGxnLy5EkSEhKYOHFivooWolhQCnbNhk2v6sNQ4xf0d58uZmFIKcV7G06y9ugNLC00zBvcRMKQEKLUyvMYoi1btrB9+3bq1r33HKZ69erxzTffmHxQtRBFTlYm/DEZjizVL7d9HTq8Aw+5hUNRpJRi1uYzrDh4FY0GPu/fkC71c77buxBClAZ5DkQ6nQ5r6+y37re2tkan05mkKCGKpPQ78OtIOP8naCzgmf+D5qPMXdVj+WL7BRb+HQrAx338eLZRJTNXJIQQ5pXnS2YdO3bk1VdfNXrq/I0bN3jttdfo1Kl43XNFiFxLjoafeunDkJUd9F9WbMPQd3su8fWOCwDM6FmPAc2rPGIPIYQo+fIciObNm0diYiJVq1alevXq1KhRAx8fHxITE5k7d25B1CiEecWGwY+d4XoQ2JWDoRugbg9zV/VYfjoQxsd/ngXgja61Gd6meN0eQAghCkqeL5l5eXlx5MgRtm3bxtmzZ1FKUa9ePZ566qmCqE8I8wo/Biv6QdIt0HrBC79BxeJ5/6qfD1/j/Q2nABjfoQZj29cwc0VCCFF0PPZ9iEobmXZfCl3aBWsCID0R3HxhyK9Q1sPcVT2WTcdu8urqo+gUjGzjw3s96j70WX5CCFFSmHza/c6dO6lXrx4JCQnZtsXHx1O/fn3+/vvvx6tWiKLm+M/6M0PpiVD1SRixudiGoW2nb/HamhB0Cga1qCJhSAghcpDrQPTll18yevToHNOVVqvlpZde4vPPPzdpcUIUOqXgn69h7WjQZUD9PvrLZHbF8zEWe89HMW7FETJ1it6NK/G/53wlDAkhRA5yHYiOHTtG165dH7i9c+fOBAcHm6QoIcwiNR7WvQzb3tMvtxoHfReBla1563pMh0JjGLPsMOlZOrrWd+fT5xtgYSFhSAghcpLrQdW3bt3K8f5Dho6srIiKijJJUUIUuiv7Ye1LEH9Vf4+hpz+A1hPMXVWeKKW4En2HoLAYDofF8vvxm6Rm6GhfuyJfD2qMlWWeJ5UKIUSpketAVKlSJU6cOEGNGjnPTDl+/DgeHsVzjIUoxTLTYfds2PcFoKCcN/T5Hqq0Mndlj5SZpeNMeKI+AF2JISgslqjENKM2/tUq8N0LTbGxkjAkhBAPk+tA9Mwzz/D+++/TrVs37OzsjLalpKQwffp0evQonvdmEaVU1Dn9WKHwY/rlRkOg68dgVzRnEd5JzyTkahxBYbEEhcVw5Gosd9KzjNrYWFrQoLKWZlWdaeFTnrY1K8qZISGEyIVcT7u/desWTZo0wdLSkvHjx1O7dm00Gg1nzpzhm2++ISsriyNHjuDm5lbQNZuFTLsvQZSCoB9g67uQmQr25aHHl1D/OXNXZuR2UhqH/w0/h8NiOHkzgSyd8a+rk50VzbzL/xuAnPGrpMXO2tJMFQshRNGT28/vXJ8hcnNzY//+/bzyyitMmzaNuzlKo9HQpUsX5s+fX2LDkChBEm/BhnFwcZt+uVoHeO5bs0+pvzv+59C/4edwWCyXbydna+ehtaN5VWeaVy1Pcx9nark6yUBpIYQwgTzdqdrb25vNmzcTGxvLxYsXUUpRs2ZNypcvX1D1CWE6ZzbBxomQEgOWtvqB0y3GgEXhX1K6O/7nbgAKCovldlJatna13ZxoVrU8LXycaVbVmUrl7Au9ViGEKA3y/OgOgPLly9O8eXNT1yJEwUhLgi1vwdFl+mU3P+i7EFzrFloJd8f/HPr37E9uxv80qVKecg42hVajEEKUZo8ViIQoNq4dgrVjIDYU0ECbidDhnQK/t5B+/I/+zI+M/xFCiKJPApEombIyYO+n+i+lg7KVofd34POkyV9KKUWY4f4/Mv5HCCGKIwlEouSJvqSfTn/j3zun+/WDZ/4P7MuZpPvMLB2nwxMMZ38eNf6neVVnmvvI+B8hhCjKJBCJkkMpOLIUtkyDjDtgq4Uen4Pf8/nq9k56JkevxhnuAP2o8T/Nq5anqbeM/xFCiOJEApEoGZKiYNNEOLdZv1z1Sf10+nJeee4qr+N/mld1pkFlGf8jhBDFmQQiUfyd/0t/b6HkKLC0gU7v6x/Mmsfp9Fk6xad/nWPB3kv893al94//aVbVmdpuMv5HCCFKEglEovhKv6O/2/ThRfrlinX10+nd/fLcVfydDCauPsqe8/oHFMv4HyGEKF0kEIni6cYR/cDp6Iv65VZjodN0sLZ7+H45OH8rkTE/HSYs+g521hZ80rcBzzaqZOKChRBCFGUSiETxosuCfZ/D7o9BlwlOHvqxQtU7PFZ3f52KYPKaEJLTs6hUzp4FAU3xraQ1cdFCCCGKOglEoviIDYO1L8G1QP1yvWf1D2V1cM5zVzqd4qsdF/hqxwUAWvo4M39IEyqUKdgbNgohhCiaJBCJok8pOLYKNr8B6Ylg4wTPfAoNB4Im7wObk9IymbwmhK2nbwEwvHVV3uleF2vLwn+mmRBCiKJBApEo2u7EwKZX4cxG/XIVf+i9AMp7P1Z3YbeTGf3TYS5EJmFjacFHvX3p3yzvU/OFEEKULBKIRNF1cQesHwtJEWBhBR3ehjaTwOLx7vez+1wkE1cdJSE1E1cnW74LaEqTKuVNW7MQQohiSQKRKHoyUmD7DDj4nX7ZpRb0+R48Gz9Wd0opFuy9zJwtZ9EpaFylHAteaIpr2bzPSBNCCFEySSASRUv4cf10+qiz+uXmo+HpD8DG4bG6S0nP4o3fjrPp2E0ABjTz4oPn6mNrJXeVFkIIcY8EIlE06LLgwDzY8SHoMsDRFZ79Bmp1fuwur8Xc4aVlwZwOT8DKQsP0nvV4oZU3mscYiC2EEKJkk0AkzC/uGqx7Ga7s0y/X7g69vgZHl8fu8sClaMatPEJMcjoVHG2YP6QJLatVMFHBQgghShqzzjPeu3cvPXv2xNPTE41Gw/r16422K6WYMWMGnp6e2Nvb0759e06dOmXUJi0tjQkTJuDi4oKjoyO9evXi+vXrRm1iY2MJCAhAq9Wi1WoJCAggLi6ugI9O5MrxX+DbNvowZO0IvebCwBWPHYaUUiz5J5QXFh0kJjkd30pl2TjhCQlDQgghHsqsgSg5OZmGDRsyb968HLfPmTOHzz//nHnz5hEUFIS7uztPP/00iYmJhjaTJk1i3bp1rF69mn379pGUlESPHj3IysoytBk8eDAhISFs2bKFLVu2EBISQkBAQIEfn3iIlFj4dRSsfRHS4qFyc3j5b2gy9LHuLQSQmpHFG78eZ8am02TpFM828uSXl1rLc8iEEEI8kkap/z7X2zw0Gg3r1q3jueeeA/T/p+/p6cmkSZN48803Af3ZIDc3Nz755BNeeukl4uPjqVixIsuWLWPAgAEA3Lx5Ey8vLzZv3kyXLl04c+YM9erVIzAwkJYtWwIQGBiIv78/Z8+epXbt2rmqLyEhAa1WS3x8PGXLljX9D6A0Cd0L616BhOugsYR2b8KTU8Dy8a/gRsSn8tLyYI5di8NCA9O61eXFJ31kvJAQQpRyuf38LrK35g0NDSUiIoLOne8NqrW1taVdu3bs378fgODgYDIyMozaeHp64uvra2hz4MABtFqtIQwBtGrVCq1Wa2iTk7S0NBISEoy+RD5lpumfTr+0lz4MOVeDUVuh/Zv5CkPBV2LoOW8fx67FobW3ZsmIFoxuW03CkBBCiFwrsoOqIyIiAHBzczNa7+bmxpUrVwxtbGxsKF++fLY2d/ePiIjA1dU1W/+urq6GNjmZPXs2M2fOzNcxiPvcOq2fTn/rpH65yTDoMgtsy+Sr29WHrvLehpNkZClquznx/dCmeFdwNEHBQgghSpMie4borv/+X75S6pH/5//fNjm1f1Q/06ZNIz4+3vB17dq1PFYuANDp4MB8+L69Pgw5VICBq/SzyPIRhtIzdby3/iRvrT1BRpaia3131o5tLWFICCHEYymyZ4jc3d0B/RkeDw8Pw/rIyEjDWSN3d3fS09OJjY01OksUGRlJ69atDW1u3bqVrf+oqKhsZ5/uZ2tri62tPPk8XxJuwvpX4PJu/XLNztBrHjg9+OeeG7eT0hi7/AiHwmIAmPJ0LcZ1qIGFhVwiE0II8XiK7BkiHx8f3N3d2bZtm2Fdeno6e/bsMYSdpk2bYm1tbdQmPDyckydPGtr4+/sTHx/PoUOHDG0OHjxIfHy8oY0oAKfWw3x/fRiysofun8Pgn/Mdhk5cj6fX3H0cCouhjK0VPwxtxoRONSUMCSGEyBezniFKSkri4sWLhuXQ0FBCQkJwdnamSpUqTJo0iVmzZlGzZk1q1qzJrFmzcHBwYPDgwQBotVpGjRrFlClTqFChAs7OzkydOhU/Pz+eeuopAOrWrUvXrl0ZPXo0CxYsAGDMmDH06NEj1zPMRB6kJsCfb8CxVfplj0bQ9wdwqZnvrtcfvcGbvx0nLVOHj4sjC4c2pYarU777FUIIIcwaiA4fPkyHDh0My5MnTwZg2LBhLFmyhDfeeIOUlBTGjh1LbGwsLVu2ZOvWrTg53fsQ/OKLL7CysqJ///6kpKTQqVMnlixZgqXlvWdVrVixgokTJxpmo/Xq1euB9z4S+XDlAKwbA3FXQWMBT0yG9m+BpXW+us3M0vHxn2f5YV8oAB1qV+TLgY3R2uevXyGEEOKuInMfoqJO7kP0EErB3/8Hu2aB0kE5b/3T6au0ynfXcXfSmbDqKH9fuA3AuA7Vmfx0bSzlEpkQQohcyO3nd5EdVC2KiYwU2DAOTv6mX244GLp9Anb5D41nIxIY81MwV2PuYG9tyf/1a0j3Bh6P3lEIIYTIIwlE4vEl3ITVg+HmUbCwgmf+D5qNMEnXf54IZ8ovx7iTnkXl8vZ8H9CMep5yZk4IIUTBkEAkHs+NYFg1GJIiwN4ZBiyDqk/ku1udTvH5tvPM26UfbN+6egW+GdyE8o42+e5bCCGEeBAJRCLvTvyqv0yWmQoV68KgVeDsk+9uE1IzeG11CDvORgIw6gkfpnWrg5Vlkb07hBBCiBJCApHIPZ0Ods+CvZ/ql2t20U+pN8F4oUtRSYz+6TCXo5KxsbJgdm8/+jatnO9+hRBCiNyQQCRyJz0Z1r0EZzbpl1tPhKdmgIXlQ3fLjZ1nb/HqqhAS0zLx0NqxIKApDSqXy3e/QgghRG5JIBKPFncNVg2CWyfA0gZ6fgWNBue7W6UU83df4v+2nkMpaOZdnm9faEpFJ3lkihBCiMIlgUg83NWDsGYIJEeBY0UYsAKqtMx3t8lpmbz+6zE2n4gAYHDLKszoWR8bKxkvJIQQovBJIBIPFrISNr0KWeng5qcfPF3OK9/dXo2+w5hlhzkbkYi1pYYZveozpKW3CQoWQgghHo8EIpGdLgu2z4D9X+uX6/SA3gvAtky+u9534TbjVx0h7k4GLmVs+faFJjSv6pzvfoUQQoj8kEAkjKUmwG8vwoW/9Mtt34D208Aif5eylFIs2hfKrM1n0CloWFnLdwFN8dDam6BoIYQQIn8kEIl7YkL1g6ejzoCVHTz7Dfg9n+9uUzOyeHvtCdYevQFAnyaVmNXbDzvr/M9QE0IIIUxBApHQC9sHawIgJQbKuMOglVCpab67vRmXwsvLgzl+PR5LCw3vPFOXEW2qotHIw1mFEEIUHRKIBAQvgT+mgC4TPBvDwJVQ1jPf3QaFxfDK8mBuJ6VTzsGabwY3oU0Nl/zXK4QQQpiYBKLSLCsTtr4DB7/TL9fvo79MZuOQ766XB15hxsZTZOoUddydWDi0GV7O+e9XCCGEKAgSiEqrlFj4ZQRc3qVf7vAutJ0K+byUlZ6pY/rGU6w6dBWA7g08+PT5BjjYyD81IYQQRZd8SpVGty/CqgEQfRGsHfRT6uv1yne3kYmpvLL8CMFXYtFo4PUutXmlXXUZLySEEKLIk0BU2lzaCb8Mh9R4KFtZf7NFjwb57vbkjXheXHqYiIRUnOys+HpgYzrUcc1/vUIIIUQhkEBUWigFhxbClrdAZUHlFjBwBZTJf2gJuRZHwKKDJKZmUr2iIwuHNqNaxfzfxFEIIYQoLBKISoOsDNj8OgQv1i83HKR/QKtV/h+ieuRqLMMWHSIxLZNm3uX5cURzytpZ57tfIYQQojBJICrp7sTAz0Mh7G9AA0/PhNYT8z14GiD4SgzDfgwiKS2TFlWd+XFEc8rYyj8pIYQQxY98epVkkWf1g6djw8CmDPRdBLW7mqTroLAYhv94iOT0LFr6OPPj8OY4ShgSQghRTMknWEl1fiv8OhLSE6GcNwxaDW71TNL1wcvRjFgSxJ30LPyrVWDR8GYyrV4IIUSxJp9iJY1ScGAebH0PUODdBvovA8cKJun+wKVoRi4JIiUjiydquLBwaDPsbeSZZEIIIYo3CUQlSWYa/P4ahKzQLzcZCs98BlY2Jul+/8XbjFwaRGqGjidr6sOQPKBVCCFESSCBqKRIioI1Q+DaQdBYQJfZ0PIlkwyeBth34TajlgaRlqmjfe2KfPdCUwlDQgghSgwJRCVBxAlYNQjir4GtFvothhqdTNb93vNRjP7pMGmZOjrWceXbF5pgayVhSAghRMkhgai4O/M7rB0DGcngXA0GrYGKtUzW/e5zkYxZFkx6po6n6rryzRAJQ0IIIUoeCUTFlVLw92ew80P9sk876LcEHJxN9hI7z97i5WVHSM/S0bmeG/MGN8HGysJk/QshhBBFhQSi4igjBTaMh5O/6pdbjIEus8DSdHeI3n76Fq+sCCYjS9G1vjtzBzfG2lLCkBBCiJJJAlFxkxAOqwfDzSNgYQXd5kDzUSZ9ib9ORTB+5REyshTd/Tz4cmAjCUNCCCFKNAlExcmNI/owlBgO9uWh/0/g09akL/HniXAmrDpKpk7Rs6EnX/RviJWEISGEECWcBKLi4uRaWD8WMlPApTYMXq0fRG1CfxwPZ+Lqo2TpFM828uSzfhKGhBBClA4SiIo6nQ72fAx7PtEv1+wMfX8AO61JX2bTsZtMWhNClk7Rp3ElPu3XEEsL09zDSAghhCjqivz//letWhWNRpPta9y4cQAMHz4827ZWrVoZ9ZGWlsaECRNwcXHB0dGRXr16cf36dXMcTt6kJ8Mvw+6FIf/x+meSmTgMbQi5wav/nhl6vmllCUNCCCFKnSIfiIKCgggPDzd8bdu2DYB+/foZ2nTt2tWozebNm436mDRpEuvWrWP16tXs27ePpKQkevToQVZWVqEeS57EX4cfu8CZjWBhDc9+A13+BxamvQfQuqPXeW1NCDoF/ZtVZk7fBhKGhBBClDpF/pJZxYoVjZY//vhjqlevTrt27QzrbG1tcXd3z3H/+Ph4Fi1axLJly3jqqacAWL58OV5eXmzfvp0uXboUXPGP69ohWD0EkiPBwQUGLAdvf5O/zK/B13n912MoBYNaePG/5/ywkDAkhBCiFCryZ4jul56ezvLlyxk5ciSa+57RtXv3blxdXalVqxajR48mMjLSsC04OJiMjAw6d+5sWOfp6Ymvry/79+8v1Ppz5dhqWNJdH4Zc68PonQUShn4OumYIQ0NaVpEwJIQQolQr8meI7rd+/Xri4uIYPny4YV23bt3o168f3t7ehIaG8t5779GxY0eCg4OxtbUlIiICGxsbypcvb9SXm5sbERERD3yttLQ00tLSDMsJCQkmPx4juizY8QH886V+uXZ36PM92JYx+UutPnSVt9aeACCglTcfPFvfKGAKIYQQpU2xCkSLFi2iW7dueHp6GtYNGDDA8L2vry/NmjXD29ubP/74gz59+jywL6XUQ0PA7NmzmTlzpmkKf5S0RPhtNJz/U7/85BTo8C5YmP4E3oqDV3hn3UkAhreuyvSe9SQMCSGEKPWKzSWzK1eusH37dl588cWHtvPw8MDb25sLFy4A4O7uTnp6OrGxsUbtIiMjcXNze2A/06ZNIz4+3vB17dq1/B9ETmLDYFFnfRiytIU+P0Cn9wskDC07EGYIQ6Oe8JEwJIQQQvyr2ASixYsX4+rqSvfu3R/aLjo6mmvXruHh4QFA06ZNsba2NsxOAwgPD+fkyZO0bt36gf3Y2tpStmxZoy+Ty0yHpT0h8jSUcYMRm6FBv0fv9xiW/BPKextOATCmbTXe7V5XwpAQQgjxr2IRiHQ6HYsXL2bYsGFYWd27ypeUlMTUqVM5cOAAYWFh7N69m549e+Li4kLv3r0B0Gq1jBo1iilTprBjxw6OHj3KCy+8gJ+fn2HWmdlY2UDn/4FnYxi9Cyo3K5CXWbQvlBmbTgPwcrvqTOtWR8KQEEIIcZ9iMYZo+/btXL16lZEjRxqtt7S05MSJE/z000/ExcXh4eFBhw4dWLNmDU5OToZ2X3zxBVZWVvTv35+UlBQ6derEkiVLsLQ07T19Hku9XlCnu8nvL3TXwr2X+d/mMwCM61CdqZ1rSxgSQggh/kOjlFLmLqI4SEhIQKvVEh8fXzCXzwrAd3su8fGfZwGY2LEGrz1dS8KQEEKIUiW3n9/F4gyRyLtvdl3k07/OATDpqZpMeqqWmSsSQgghii4JRCXQ3B0X+GzbeQAmP12LiZ1qmrkiIYQQomiTQFTCfLn9PF9u199y4PUutRnXoYaZKxJCCCGKPglEJYRSii+2X+DrHfow9Fa3OrzcrrqZqxJCCCGKBwlEJYBSis+2nmferosAvPNMXUa3rWbmqoQQQojiQwJRMaeUYs5f5/h29yUA3u1elxeflDAkhBBC5IUEomJMKcXHf55lwd7LAEzvWY8RbXzMXJUQQghR/EggKqaUUvzvjzP8sC8UgA+erc9Q/6rmLUoIIYQopiQQFUNKKT74/TSL/wkD4KPnfHmhlbd5ixJCCCGKMQlExYxSihkbT7H0wBUAZvX2Y3DLKmauSgghhCjeJBAVIzqd4v2NJ1keeBWNBj7p04D+zb3MXZYQQghR7EkgKiZ0OsU760+y6pA+DH36fEOeb1rZ3GUJIYQQJYIEomJAp1O8ve4Eq4OuYaGB/+vXkD5NJAwJIYQQpiKBqIjL0ine+u04vwRfx0IDXwxoxLONKpm7LCGEEKJEkUBUhGXpFK//eoy1R25gaaHhiwGN6NXQ09xlCSGEECWOBKIiKkunmPrLMdYd1Yehrwc2pnsDD3OXJYQQQpRIEoiKoMwsHZN/PsbGYzexstAwd1BjuvlJGBJCCCEKigSiIiYzS8ekNSH8fjwcKwsN8wY3oauvu7nLEkIIIUo0CURFSEaWjldXH2XziQisLTXMH9KUp+u5mbssIYQQosSTQFREpGfqmLDqCH+duoWNpQXfBTShYx0JQ0IIIURhkEBUBKRn6hi38gjbTt/CxsqCBQFN6VDb1dxlCSGEEKWGBCIzS8vMYuzyI+w4G4mtlQXfD21Gu1oVzV2WEEIIUapIIDKj9EwdLy8LZte5KGytLFg0rDlP1HQxd1lCCCFEqWNh7gJKM2tLDd4VHLGztmDxcAlDQgghhLlolFLK3EUUBwkJCWi1WuLj4ylbtqzJ+lVKcSkqmRquZUzWpxBCCCH0cvv5LWeIzEyj0UgYEkIIIcxMApEQQgghSj0JREIIIYQo9SQQCSGEEKLUk0AkhBBCiFJPApEQQgghSj0JREIIIYQo9SQQCSGEEKLUk0AkhBBCiFJPApEQQgghSr0iHYhmzJiBRqMx+nJ3dzdsV0oxY8YMPD09sbe3p3379pw6dcqoj7S0NCZMmICLiwuOjo706tWL69evF/ahCCGEEKIIK9KBCKB+/fqEh4cbvk6cOGHYNmfOHD7//HPmzZtHUFAQ7u7uPP300yQmJhraTJo0iXXr1rF69Wr27dtHUlISPXr0ICsryxyHI4QQQogiyMrcBTyKlZWV0Vmhu5RSfPnll7zzzjv06dMHgKVLl+Lm5sbKlSt56aWXiI+PZ9GiRSxbtoynnnoKgOXLl+Pl5cX27dvp0qVLoR6LEEIIIYqmIn+G6MKFC3h6euLj48PAgQO5fPkyAKGhoURERNC5c2dDW1tbW9q1a8f+/fsBCA4OJiMjw6iNp6cnvr6+hjYPkpaWRkJCgtGXEEIIIUqmIn2GqGXLlvz000/UqlWLW7du8dFHH9G6dWtOnTpFREQEAG5ubkb7uLm5ceXKFQAiIiKwsbGhfPny2drc3f9BZs+ezcyZM7Otl2AkhBBCFB93P7eVUg9tV6QDUbdu3Qzf+/n54e/vT/Xq1Vm6dCmtWrUCQKPRGO2jlMq27r9y02batGlMnjzZsHzjxg3q1auHl5dXXg9DCCGEEGaWmJiIVqt94PYiHYj+y9HRET8/Py5cuMBzzz0H6M8CeXh4GNpERkYazhq5u7uTnp5ObGys0VmiyMhIWrdu/dDXsrW1xdbW1rBcpkwZrl27hpOT0yPDVGmUkJCAl5cX165do2zZsuYuRyDvSVEj70fRIu9H0VKQ74dSisTERDw9PR/arlgForS0NM6cOcOTTz6Jj48P7u7ubNu2jcaNGwOQnp7Onj17+OSTTwBo2rQp1tbWbNu2jf79+wMQHh7OyZMnmTNnTp5e28LCgsqVK5v2gEqgsmXLyh+XIkbek6JF3o+iRd6PoqWg3o+HnRm6q0gHoqlTp9KzZ0+qVKlCZGQkH330EQkJCQwbNgyNRsOkSZOYNWsWNWvWpGbNmsyaNQsHBwcGDx4M6H8Ao0aNYsqUKVSoUAFnZ2emTp2Kn5+fYdaZEEIIIUSRDkTXr19n0KBB3L59m4oVK9KqVSsCAwPx9vYG4I033iAlJYWxY8cSGxtLy5Yt2bp1K05OToY+vvjiC6ysrOjfvz8pKSl06tSJJUuWYGlpaa7DEkIIIUQRU6QD0erVqx+6XaPRMGPGDGbMmPHANnZ2dsydO5e5c+eauDpxP1tbW6ZPn2407kqYl7wnRYu8H0WLvB9FS1F4PzTqUfPQhBBCCCFKuCJ/Y0YhhBBCiIImgUgIIYQQpZ4EIiGEEEKUehKIhBBCCFHqSSASBrNnz6Z58+Y4OTnh6urKc889x7lz54zaKKWYMWMGnp6e2Nvb0759e06dOmXU5vvvv6d9+/aULVsWjUZDXFxcjq/3xx9/0LJlS+zt7XFxcaFPnz4FdWjFUmG+H+fPn+fZZ5/FxcWFsmXL0qZNG3bt2lWQh1fsmOL9iImJYcKECdSuXRsHBweqVKnCxIkTiY+PN+onNjaWgIAAtFotWq2WgICAB/4elVaF9X6EhYUxatQofHx8sLe3p3r16kyfPp309PRCO9bioDB/P+5KS0ujUaNGaDQaQkJC8n0MEoiEwZ49exg3bhyBgYFs27aNzMxMOnfuTHJysqHNnDlz+Pzzz5k3bx5BQUG4u7vz9NNPk5iYaGhz584dunbtyttvv/3A1/rtt98ICAhgxIgRHDt2jH/++cdwQ02hV5jvR/fu3cnMzGTnzp0EBwfTqFEjevTo8ciHIJcmpng/bt68yc2bN/m///s/Tpw4wZIlS9iyZQujRo0yeq3BgwcTEhLCli1b2LJlCyEhIQQEBBTq8RZ1hfV+nD17Fp1Ox4IFCzh16hRffPEF33333UN/n0qjwvz9uOuNN9545OM48kQJ8QCRkZEKUHv27FFKKaXT6ZS7u7v6+OOPDW1SU1OVVqtV3333Xbb9d+3apQAVGxtrtD4jI0NVqlRJ/fDDDwVaf0lTUO9HVFSUAtTevXsN6xISEhSgtm/fXjAHUwLk9/246+eff1Y2NjYqIyNDKaXU6dOnFaACAwMNbQ4cOKAAdfbs2QI6muKvoN6PnMyZM0f5+PiYrvgSqKDfj82bN6s6deqoU6dOKUAdPXo03zXLGSLxQHdPUzo7OwMQGhpKREQEnTt3NrSxtbWlXbt27N+/P9f9HjlyhBs3bmBhYUHjxo3x8PCgW7du2S71CGMF9X5UqFCBunXr8tNPP5GcnExmZiYLFizAzc2Npk2bmvYgShBTvR/x8fGULVsWKyv9fXIPHDiAVqulZcuWhjatWrVCq9Xm6X0tbQrq/XhQm7uvI3JWkO/HrVu3GD16NMuWLcPBwcFkNUsgEjlSSjF58mSeeOIJfH19AQyXT9zc3Izaurm55enSyuXLlwGYMWMG7777Lr///jvly5enXbt2xMTEmOgISpaCfD80Gg3btm3j6NGjODk5YWdnxxdffMGWLVsoV66cyY6hJDHV+xEdHc2HH37ISy+9ZFgXERGBq6trtraurq5yCfMBCvL9+K9Lly4xd+5cXn75ZRNVX/IU5PuhlGL48OG8/PLLNGvWzKR1F+lHdwjzGT9+PMePH2ffvn3Ztmk0GqNlpVS2dQ+j0+kAeOedd+jbty8AixcvpnLlyvzyyy8P/WNUWhXk+6GUYuzYsbi6uvL3339jb2/PDz/8QI8ePQgKCsLDwyPf9Zc0png/EhIS6N69O/Xq1WP69OkP7eNh/YiCfz/uunnzJl27dqVfv368+OKLpim+BCrI92Pu3LkkJCQwbdo0k9ctZ4hENhMmTGDjxo3s2rWLypUrG9a7u7sDZEvzkZGR2VL/w9z9gK1Xr55hna2tLdWqVePq1av5Kb1EKuj3Y+fOnfz++++sXr2aNm3a0KRJE+bPn4+9vT1Lly41zUGUIKZ4PxITE+natStlypRh3bp1WFtbG/Vz69atbK8bFRWVp/e1tCjo9+Oumzdv0qFDB/z9/fn+++8L4EhKhoJ+P3bu3ElgYCC2trZYWVlRo0YNAJo1a8awYcPyVbsEImGglGL8+PGsXbuWnTt34uPjY7Tdx8cHd3d3tm3bZliXnp7Onj17aN26da5fp2nTptja2hpNyczIyCAsLAxvb+/8H0gJUVjvx507dwCwsDD+c2BhYWE4mydM934kJCTQuXNnbGxs2LhxI3Z2dkb9+Pv7Ex8fz6FDhwzrDh48SHx8fJ7e15KusN4PgBs3btC+fXuaNGnC4sWLs/2uiMJ7P77++muOHTtGSEgIISEhbN68GYA1a9bwv//9L98HIYRSSqlXXnlFabVatXv3bhUeHm74unPnjqHNxx9/rLRarVq7dq06ceKEGjRokPLw8FAJCQmGNuHh4ero0aNq4cKFhtlLR48eVdHR0YY2r776qqpUqZL666+/1NmzZ9WoUaOUq6uriomJKdRjLsoK6/2IiopSFSpUUH369FEhISHq3LlzaurUqcra2lqFhIQU+nEXVaZ4PxISElTLli2Vn5+funjxolE/mZmZhn66du2qGjRooA4cOKAOHDig/Pz8VI8ePQr9mIuywno/bty4oWrUqKE6duyorl+/btRG3FOYvx/3Cw0NNdksMwlEwgDI8Wvx4sWGNjqdTk2fPl25u7srW1tb1bZtW3XixAmjfqZPn/7IftLT09WUKVOUq6urcnJyUk899ZQ6efJkIR1p8VCY70dQUJDq3LmzcnZ2Vk5OTqpVq1Zq8+bNhXSkxYMp3o+7tz7I6Ss0NNTQLjo6Wg0ZMkQ5OTkpJycnNWTIkGy3SyjtCuv9WLx48QPbiHsK8/fjfqYMRJp/D0QIIYQQotSSC6FCCCGEKPUkEAkhhBCi1JNAJIQQQohSTwKREEIIIUo9CURCCCGEKPUkEAkhhBCi1JNAJIQQQohSTwKREEIIIUo9CURCiGJLKcVTTz1Fly5dsm2bP38+Wq1WHhgshMgVCURCiGJLo9GwePFiDh48yIIFCwzrQ0NDefPNN/nqq6+oUqWKSV8zIyPDpP0JIYoGCURCiGLNy8uLr776iqlTpxIaGopSilGjRtGpUydatGjBM888Q5kyZXBzcyMgIIDbt28b9t2yZQtPPPEE5cqVo0KFCvTo0YNLly4ZtoeFhaHRaPj5559p3749dnZ2LF++nCtXrtCzZ0/Kly+Po6Mj9evXNzx1WwhRPMmzzIQQJcJzzz1HXFwcffv25cMPPyQoKIhmzZoxevRohg4dSkpKCm+++SaZmZns3LkTgN9++w2NRoOfnx/Jycm8//77hIWFERISgoWFBWFhYfj4+FC1alU+++wzGjdujK2tLWPGjCE9PZ3PPvsMR0dHTp8+TdmyZWnbtq2ZfwpCiMclgUgIUSJERkbi6+tLdHQ0v/76K0ePHuXgwYP89ddfhjbXr1/Hy8uLc+fOUatWrWx9REVF4erqyokTJ/D19TUEoi+//JJXX33V0K5Bgwb07duX6dOnF8qxCSEKnlwyE0KUCK6urowZM4a6devSu3dvgoOD2bVrF2XKlDF81alTB8BwWezSpUsMHjyYatWqUbZsWXx8fACyDcRu1qyZ0fLEiRP56KOPaNOmDdOnT+f48eOFcIRCiIIkgUgIUWJYWVlhZWUFgE6no2fPnoSEhBh9XbhwwXBpq2fPnkRHR7Nw4UIOHjzIwYMHAUhPTzfq19HR0Wj5xRdf5PLlywQEBHDixAmaNWvG3LlzC+EIhRAFRQKREKJEatKkCadOnaJq1arUqFHD6MvR0ZHo6GjOnDnDu+++S6dOnahbty6xsbG57t/Ly4uXX36ZtWvXMmXKFBYuXFiARyOEKGgSiIQQJdK4ceOIiYlh0KBBHDp0iMuXL7N161ZGjhxJVlYW5cuXp0KFCnz//fdcvHiRnTt3Mnny5Fz1PWnSJP766y9CQ0M5cuQIO3fupG7dugV8REKIgiSBSAhRInl6evLPP/+QlZVFly5d8PX15dVXX0Wr1WJhYYGFhQWrV68mODgYX19fXnvtNT799NNc9Z2VlcW4ceOoW7cuXbt2pXbt2syfP7+Aj0gIUZBklpkQQgghSj05QySEEEKIUk8CkRBCCCFKPQlEQgghhCj1JBAJIYQQotSTQCSEEEKIUk8CkRBCCCFKPQlEQgghhCj1JBAJIYQQotSTQCSEEEKIUk8CkRBCCCFKPQlEQgghhCj1JBAJIYQQotT7f4FYJSC2FlgPAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.xlabel('Years') \n", + "plt.ylabel('Count of Enrollment')\n", + "plt.title('Student Enrollment over 8 years')\n", + "\n", + "plt.plot(df['Year'] ,df['Programming'])\n", + "plt.plot(df['Year'] ,df['Digital Marketing'])\n" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "82ce7843-e08b-4d4c-8a46-11f60a23d286", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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s2bNUkaOHPnM1yJeLRKIRKFy//595bXXXlMABVDMzc2V+vXrK1OmTFFiY2P19q1cubJeaMmQ3UAUGRmpWFlZKZ07d9bb799//1UAvbanTJmimJiYKEePHtXbd9WqVQqgbNq0SbcOUFxdXZWYmBjduvDwcMXExESZMmWKbt13332XZZ1PkxEqsvoqXbq0br+MQOLr66v3oXbkyBEFUJYtW6Zb169fPwVQ5s2bp3euWbNmKYDy559/6q3/9ttvFUDZtm2bbl1OAtEPP/yg1161atV0oSRDamqq4uzsrHTp0kW3ztjvf3p6uuLh4aH4+voq6enpuvWxsbGKi4uLUr9+fd26MWPGKNbW1nrB89y5cwqgzJgxQ7euQoUKSvXq1XUBI0P79u0Vd3d33Xkyfp779u373DozxMTEKB06dND7GWncuLHy4MGD5x6b8e9kzZo1unW3b99WzMzMlEmTJunWtWrVSilRokSmEDl8+HDFyspKefjwYZbtp6WlKampqcqgQYOU6tWr620DFLVanenY4cOHK/b29s+tXbza5JaZKFQcHR35559/OHr0KFOnTuWNN97g4sWLjB8/Hl9fX+7fv2+wcx08eJCkpCT69Omjt75+/fp4eXnprdu4cSNVqlShWrVqpKWl6b5atWqV5a2WJk2a6HVcdXV1xcXFhevXr+e67h07dnD06FG9r7Vr12bar127dpiamuqWq1atCpBlDV27dtVb3rVrF7a2trz55pt66zM6sGd1Syg72rdvr7dcsWJFVCoVbdq00a0zMzOjTJkyenUa+/2/cOECd+7cISAgQO/WbZEiRejatSuHDh0iISEBgIEDB5KYmMiKFSt0+82fPx9LS0t69+4NwOXLlzl//rzuZ+/x19S2bVvCwsK4cOGCXg1P/h09TWpqKj169CA4OJg5c+awb98+Fi5cyO3bt2nRogXR0dHPPL5x48b4+fnp3fqaNWsWKpWKoUOHAtrbYDt37qRz587Y2Nhkqj8pKUnv9uzKlStp0KABRYoUwczMDHNzc+bOnUtISEim8zdt2pRixYrpratTpw5RUVH06tWLdevWGfT3gCg4JBCJQqlWrVp89NFHrFy5kjt37jB69GiuXbtm0I7VDx48AMDNzS3TtifX3b17l1OnTmFubq73ZWdnh6IomX5BOzo6ZmrT0tKSxMTEXNft5+dHrVq19L6q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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# adding labels using plt.legend() \n", + "plt.xlabel('Years') \n", + "plt.ylabel('Count of Enrollment')\n", + "plt.title('Student Enrollment over 8 years')\n", + "\n", + "plt.plot(df['Year'] ,df['Programming'],label = 'Programming')\n", + "plt.plot(df['Year'] ,df['Digital Marketing'], label= 'Digital Marketing')\n", + "\n", + "plt.legend(loc='best') " + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "da467ea0-58c6-46f9-8bb0-57ff51616721", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# adding some visualization \n", + "\n", + "plt.xlabel('Years') \n", + "plt.ylabel('Count of Enrollment')\n", + "plt.title('Student Enrollment over 8 years')\n", + "\n", + "plt.plot(df['Year'] ,df['Programming'],label = 'Programming', color ='#11b86f',linewidth=3,linestyle='dashed',marker='o',markersize=7)\n", + "plt.plot(df['Year'] ,df['Digital Marketing'], label= 'Digital Marketing', color='black',linewidth=3,linestyle='dashed' )\n", + "\n", + "plt.legend() \n" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "a7eb3ab7-e968-479d-b56a-df8f66485cd0", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.xlabel('Years') \n", + "plt.ylabel('Count of Enrollment')\n", + "plt.title('Student Enrollment over 8 years')\n", + "\n", + "plt.plot(df['Year'] ,df['Programming'],label = 'Programming', color ='#11b86f',linewidth=3,linestyle='dashed',marker='o',markersize=7)\n", + "plt.plot(df['Year'] ,df['Digital Marketing'], label= 'Digital Marketing', color='black',linewidth=3,linestyle='dashed' )\n", + "\n", + "plt.legend() \n", + "plt.grid() \n", + "\n", + "plt.show() " + ] + }, + { + "cell_type": "markdown", + "id": "4bea52db-b8ab-47c0-957f-38adf38c5126", + "metadata": {}, + "source": [ + "# Scatter Plot" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "3b515d06-dcc3-4a81-b0a9-77fda30d516a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Shoe_SizeStudy_HourChilling_HoursIQ_Score
013.52.017.772
18.018.05.075
26.47.222.778
36.98.76.6110
410.58.65.8104
56.84.818.176
65.57.924.380
79.612.615.7109
89.15.624.373
96.714.613.1110
109.714.220.998
1110.413.714.0109
127.711.923.295
1312.58.313.395
147.69.416.895
1511.44.67.996
165.612.212.9107
178.412.324.387
1812.16.417.377
196.42.723.270
2013.75.420.678
2113.65.310.087
2218.010.015.098
236.32.222.870
2411.62.45.190
255.44.97.789
269.52.035.0145
2710.410.625.486
2813.714.827.788
298.31.619.070
306.53.020.970
315.210.326.686
327.63.724.070
338.913.527.277
3410.513.98.0116
3512.81.56.993
366.63.612.884
3710.36.05.6102
\n", + "
" + ], + "text/plain": [ + " Shoe_Size Study_Hour Chilling_Hours IQ_Score\n", + "0 13.5 2.0 17.7 72\n", + "1 8.0 18.0 5.0 75\n", + "2 6.4 7.2 22.7 78\n", + "3 6.9 8.7 6.6 110\n", + "4 10.5 8.6 5.8 104\n", + "5 6.8 4.8 18.1 76\n", + "6 5.5 7.9 24.3 80\n", + "7 9.6 12.6 15.7 109\n", + "8 9.1 5.6 24.3 73\n", + "9 6.7 14.6 13.1 110\n", + "10 9.7 14.2 20.9 98\n", + "11 10.4 13.7 14.0 109\n", + "12 7.7 11.9 23.2 95\n", + "13 12.5 8.3 13.3 95\n", + "14 7.6 9.4 16.8 95\n", + "15 11.4 4.6 7.9 96\n", + "16 5.6 12.2 12.9 107\n", + "17 8.4 12.3 24.3 87\n", + "18 12.1 6.4 17.3 77\n", + "19 6.4 2.7 23.2 70\n", + "20 13.7 5.4 20.6 78\n", + "21 13.6 5.3 10.0 87\n", + "22 18.0 10.0 15.0 98\n", + "23 6.3 2.2 22.8 70\n", + "24 11.6 2.4 5.1 90\n", + "25 5.4 4.9 7.7 89\n", + "26 9.5 2.0 35.0 145\n", + "27 10.4 10.6 25.4 86\n", + "28 13.7 14.8 27.7 88\n", + "29 8.3 1.6 19.0 70\n", + "30 6.5 3.0 20.9 70\n", + "31 5.2 10.3 26.6 86\n", + "32 7.6 3.7 24.0 70\n", + "33 8.9 13.5 27.2 77\n", + "34 10.5 13.9 8.0 116\n", + "35 12.8 1.5 6.9 93\n", + "36 6.6 3.6 12.8 84\n", + "37 10.3 6.0 5.6 102" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "students = pd.read_csv('student_IQdata.csv')\n", + "\n", + "students" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d66ebf4a-1db0-4732-962f-be0629acc42b", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "67c5193d-4774-4245-977a-d8fe535b0fdc", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#Relation between Study Hours and IQ Score - postive correlation\n", + "\n", + "plt.xlabel('Study Hours') \n", + "plt.ylabel('IQ Score') \n", + "plt.title('Relation between Study Hours and IQ Score') \n", + "\n", + "plt.scatter(students['Study_Hour'] , students['IQ_Score']) \n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "id": "bd0b4c96-724f-4645-8286-3e60b4f3865b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAHFCAYAAAAUpjivAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjAsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvlHJYcgAAAAlwSFlzAAAPYQAAD2EBqD+naQAAUxJJREFUeJzt3XlcVPX+P/DXsA37xCIMo6BoKiq4lZpoLiFgKtZ1S03FpXsr08ItoyykUsPK9GpqlmnJNf2aiss1FE0xw3ILu6i5XTQVCFMaQNmc+fz+8MdcB2bYhFkOr+fjMY+Hc85nzrznzDjz5pz3eX9kQggBIiIiIomyMXcARERERA2JyQ4RERFJGpMdIiIikjQmO0RERCRpTHaIiIhI0pjsEBERkaQx2SEiIiJJY7JDREREksZkh4iIiCSNyQ7V2fr16yGTyXQ3Ozs7+Pn5YfTo0bh48WKdtnno0CHIZDIcOnSo1o89e/Ys5s+fjytXrlRaN3HiRLRo0aJOMT2MK1euQCaT4aOPPqq3bWZlZWH+/PlIT0+vt21aGiEENm3ahCeffBI+Pj5wdHREs2bNEBkZiS+++EI3riH278O6c+cOEhIS0KlTJ7i7u8PNzQ2tWrXCqFGjkJqaqhv3MJ91azB//nzIZLJqx02cOBGurq6VlpeVlWHVqlXo2bMnFAoFnJyc0L59e7z55pvIy8urcRx79+5FREQEVCoV5HI5VCoV+vXrhw8++KBWr4esG5Mdemjr1q3D0aNHsX//fkybNg07d+5E7969a/WFVB/Onj2L+Ph4g8nO22+/je3bt5s0noaSlZWF+Ph4SSc7sbGxGDNmDNq1a4cvvvgC3333Hd5//334+vpix44d5g7PKI1Gg4iICCxYsAAjRozAli1b8O2332LGjBlQq9X44YcfdGO7du2Ko0ePomvXrmaM2DLdvXsX4eHhmD59Orp06YJvvvkGe/bswbhx47B69Wp07doVly9frnY7q1evxsCBA+Hu7o4VK1Zg7969SEhIQLt27fDtt9+a4JWQpbAzdwBk/YKDg/H4448DAPr16weNRoO4uDgkJSVh0qRJZo7uvlatWpk7BKqhoqIiLF26FBMmTMCaNWv01k2cOBFardZMkVXv8OHDSEtLw5dffqn32Y+MjMS0adP0Ynd3d8cTTzxhjjAt3owZM5CamopNmzbhueee0y3v378/RowYge7du2PEiBE4efIkbGyM/82+aNEi9OnTp1JiM378eJN/ju7evQtnZ2eTPif9D4/sUL0rT3z++OMPveUnTpzA0KFD4enpCUdHR3Tp0gX/93//V+32Tpw4gdGjR6NFixZwcnJCixYtMGbMGFy9elU3Zv369Rg5ciSA+1+I5afW1q9fD8Dwaazi4mLExsYiMDAQDg4OaNq0KV555RX89ddfeuNatGiBIUOGIDk5GV27doWTkxOCgoLw5Zdf1nifaLVaLFiwAAEBAXB0dMTjjz+OAwcOVBp38eJFjB07Fj4+PpDL5WjXrh0+/fRT3fpDhw6hW7duAIBJkybpXuf8+fPx73//GzKZDMePH9eN37p1K2QyGQYPHqz3PB07dsTw4cN194UQWLlyJTp37gwnJyd4eHhgxIgR+O9//1spxv379yMsLAzu7u5wdnZGr169Kr2W8lMYZ86cwZgxY6BQKODr64vJkydDrVZXua/u3LmDkpIS+Pn5GVxv7MdtyZIlCAwMhKurK3r27Imffvqp0pidO3eiZ8+ecHZ2hpubG8LDw3H06NFK46p7H4y5desWANQo9oqnscpPyRm7Pagm74EhxcXFmDVrFjp37gyFQgFPT0/07NnT4NEymUyGadOmYcOGDWjXrh2cnZ3RqVMn7N69u9LYf//73+jcuTPkcjkCAwMf6rRiTk4OvvzyS0RGRuolOuXatGmDuXPnIj093WAsD7p161aNP0darRbLly/X/R945JFH8MQTT2Dnzp16YxYvXoygoCDI5XL4+PhgwoQJuH79ut62+vXrh+DgYBw+fBihoaFwdnbG5MmTAQD5+fmYPXu23vdOTEwM7ty5U6P9Q3UkiOpo3bp1AoA4fvy43vIVK1YIAGLr1q26Zd9//71wcHAQTz75pNi8ebNITk4WEydOFADEunXrdOMOHjwoAIiDBw/qlm3ZskW88847Yvv27SI1NVVs2rRJ9O3bVzRp0kTcvHlTCCFEbm6uWLhwoQAgPv30U3H06FFx9OhRkZubK4QQIjo6WjRv3ly3Ta1WKyIjI4WdnZ14++23xb59+8RHH30kXFxcRJcuXURxcbFubPPmzUWzZs1E+/btxddffy327t0rRo4cKQCI1NTUKvdRZmamACD8/f1F7969xdatW8WWLVtEt27dhL29vUhLS9ONPXPmjFAoFCIkJER8/fXXYt++fWLWrFnCxsZGzJ8/XwghhFqt1u33efPm6V7ntWvXREFBgbC3txcLFy7UbfOll14STk5OwsXFRZSWlgohhPjjjz+ETCYTK1eu1I37+9//Luzt7cWsWbNEcnKy2LhxowgKChK+vr4iJydHN27Dhg1CJpOJZ599Vmzbtk3s2rVLDBkyRNja2or9+/frxsXFxQkAom3btuKdd94RKSkpYsmSJUIul4tJkyZVuc+EEOLRRx8Vbm5u4uOPPxbnzp0TWq22yv3bokULMXDgQJGUlCSSkpJESEiI8PDwEH/99Zdu7L/+9S8BQERERIikpCSxefNm8dhjjwkHBwfxww8/1Op9MCYzM1PY29uLNm3aiMTERJGVlWV0bMXPenFxse79LL/t3LlTuLu7i3bt2ukeV9P3wJC//vpLTJw4UWzYsEF8//33Ijk5WcyePVvY2NiIr776Sm9s+X7t3r27+L//+z+xZ88e0a9fP2FnZycuX76sG7d//35ha2srevfuLbZt26b7fAcEBIia/MRER0cLFxcX3f2NGzcKAGLVqlVGH3P27FkBQEydOrXKbQ8YMEDY2dmJuLg4kZ6eLu7du2d07Pjx44VMJhMvvPCC2LFjh/juu+/EggULxLJly3Rj/vGPfwgAYtq0aSI5OVmsXr1aNGnSRPj7++u+i4QQom/fvsLT01P4+/uL5cuXi4MHD4rU1FRx584d0blzZ+Ht7S2WLFki9u/fL5YtWyYUCoV46qmnjH7O6eEx2aE6K//R/emnn0RZWZkoKCgQycnJQqlUij59+oiysjLd2KCgINGlSxe9ZUIIMWTIEOHn5yc0Go0QwnCyU9G9e/dEYWGhcHFx0fsi2rJli9HHVkx2kpOTBQCxePFivXGbN28WAMSaNWt0y5o3by4cHR3F1atXdcuKioqEp6enePHFF6vcR+U/xiqVShQVFemW5+fnC09PTzFgwADdssjISNGsWTOhVqv1tjFt2jTh6Ogobt++LYQQ4vjx45WSxHK9e/cWTz31lO7+o48+KubMmSNsbGx0iVn5j/6FCxeEEEIcPXpUABAff/yx3rauXbsmnJycxOuvvy6EEOLOnTvC09NTREVF6Y3TaDSiU6dOonv37rpl5clOxf07depU4ejoWO2X+rFjx3Q/lgCEm5ubGDJkiPj666/1Hlu+f0NCQvR+yI4dOyYAiG+++UYXo0qlEiEhIbrPmhBCFBQUCB8fHxEaGqpbVtP3wZi1a9cKV1dXXex+fn5iwoQJ4vDhw3rjqvus37lzR3Tv3l34+fmJK1eu6JbV9D2oiXv37omysjIxZcoU0aVLF711AISvr6/Iz8/XLcvJyRE2NjZi0aJFumU9evQw+vmuS7LzwQcfCAAiOTnZ6GOKiooEADF48OAqt33p0iURHBysey+cnJxEWFiYWLFihS75F0KIw4cPCwDirbfeMrqtc+fOGUywfv75ZwFAvPnmm7plffv2FQDEgQMH9MYuWrRI2NjYVPoD8dtvvxUAxJ49e6p8PVR3PI1FD+2JJ56Avb093NzcMHDgQHh4eGDHjh2ws7tfEnbp0iX89ttveP755wEA9+7d090GDRqE7OxsnD9/3uj2CwsLMXfuXDz66KOws7ODnZ0dXF1dcefOHZw7d65OMX///fcA7p/eetDIkSPh4uJS6ZRA586dERAQoLvv6OiINm3a6J1Kq8qwYcPg6Oiou+/m5oaoqCgcPnwYGo0GxcXFOHDgAP72t7/B2dm50j4qLi42eFqmorCwMPz4448oKirC1atXcenSJYwePRqdO3dGSkoKgPunQAICAtC6dWsAwO7duyGTyTBu3Di951UqlejUqZPuNEtaWhpu376N6OhovXFarRYDBw7E8ePHKx2KHzp0qN79jh07ori4GLm5uVW+jm7duuHSpUtITk7Gm2++iZ49e+LAgQOYMGEChg4dCiGE3vjBgwfD1tZW73kA6N6f8+fPIysrC+PHj9c7feHq6orhw4fjp59+wt27d+vlfZg8eTKuX7+OjRs34tVXX4W/vz8SExPRt29ffPjhh1U+tpxGo8Fzzz2Hc+fOYc+ePWjevDmAur0HFW3ZsgW9evWCq6sr7OzsYG9vj7Vr1xr8v9S/f3+4ubnp7vv6+sLHx0e3X+/cuYPjx48b/Xw3tOqu9mrVqhVOnz6N1NRUxMfHY8CAATh+/DimTZuGnj17ori4GADw3XffAQBeeeUVo9s6ePAggMrfGd27d0e7du0qfWd4eHjgqaee0lu2e/duBAcHo3PnznrvX2RkpKSvzLMELFCmh/b111+jXbt2KCgowObNm/HZZ59hzJgxui+Q8tqd2bNnY/bs2Qa38eeffxrd/tixY3HgwAG8/fbb6NatG9zd3SGTyTBo0CAUFRXVKeZbt27Bzs4OTZo00Vsuk8mgVCp1tRflvLy8Km1DLpfX+PmVSqXBZaWlpSgsLERhYSHu3buH5cuXY/ny5Qa3UdU+KjdgwADEx8fjyJEjuHr1Kry9vdGlSxcMGDAA+/fvx3vvvYcDBw5gwIABusf88ccfEELA19fX4DZbtmypGwcAI0aMMPr8t2/fhouLi+5+xf0ml8sBoEb7zd7eHpGRkYiMjARw/z0bMWIEdu/eje+++w6DBg2q8fNUVUujUqmg1Wp1Vw/Wx/ugUCgwZswYjBkzBgBw5swZDBgwAG+99Rb+/ve/45FHHqny8S+99BKSk5N1tTDl6vIePGjbtm0YNWoURo4ciTlz5kCpVMLOzg6rVq0yWINW3ec+Ly8PWq3W6Oe7Lsr/qMjMzDQ6pnydv79/tduzsbFBnz590KdPHwD3E7QpU6Zg8+bN+PLLLzF16lTcvHkTtra2VcZc3Weo4h8+hsb98ccfuHTpEuzt7Q0+R00+W1Q3THboobVr105XlNy/f39oNBp88cUX+PbbbzFixAh4e3sDuH858bBhwwxuo23btgaXq9Vq7N69G3FxcXjjjTd0y0tKSnD79u06x+zl5YV79+7h5s2begmPEAI5OTm6IuD6kpOTY3CZg4MDXF1dYW9vD1tbW4wfP97oX5eBgYHVPk+PHj3g6uqK/fv348qVKwgLC4NMJkNYWBg+/vhjHD9+HL///rtesuPt7Q2ZTIYffvhBlyQ8qHxZ+fu4fPlyo1cRGUuY6oOXlxdiYmJw6NAhZGRk6CU7NXksAGRnZ1dal5WVBRsbG3h4eABAvbwPFXXo0AGjR4/G0qVLceHCBXTv3t3o2Pnz5+OLL77AunXrEBERobfuYd+DxMREBAYGYvPmzXpHRUpKSmrzcnQ8PDwgk8mMfr7ron///rCzs0NSUhJeeuklg2OSkpIAoNKRk5pwcXFBbGwsNm/ejIyMDABAkyZNoNFokJOTY7Sg+cHPULNmzfTWZWVl6d6bcoaOOnl7e8PJycnoxQ0Vt0H1h8kO1bvFixdj69ateOeddzBs2DC0bdsWrVu3xunTp7Fw4cJabUsmk0EIUelH+IsvvoBGo9FbVpujBmFhYVi8eDESExMxY8YM3fKtW7fizp07CAsLq1Wc1dm2bRs+/PBD3aH+goIC7Nq1C08++SRsbW3h7OyM/v3745dffkHHjh3h4OBgdFtVvU57e3v06dMHKSkpuHbtmq5x2pNPPgk7OzvMmzdPl/yUGzJkCD744APcuHEDo0aNMvq8vXr1wiOPPIKzZ89i2rRpddoPNVFWVob8/HyDRxXKT7WoVKpabbNt27Zo2rQpNm7ciNmzZ+t+iO7cuYOtW7fqrtACUOP3wZBbt27Bzc3N4ON+++23amNfu3Yt4uPj8e6771Y6XQI8/Hsgk8ng4OCg90Ock5NT595FLi4u6N69u9HPd10olUpMmTIFn332GTZv3lzpiqwLFy4gISEBgYGBeOaZZ6rcVnZ2tsHkpeLn6Omnn8aiRYuwatUqvPvuuwa3VZ5YJSYm6v0xdPz4cZw7dw5vvfVWta9tyJAhWLhwIby8vOqUNFPdMdmheufh4YHY2Fi8/vrr2LhxI8aNG4fPPvsMTz/9NCIjIzFx4kQ0bdoUt2/fxrlz53Dq1Cls2bLF4Lbc3d3Rp08ffPjhh/D29kaLFi2QmpqKtWvXVjoVEBwcDABYs2YN3Nzc4OjoiMDAQIM/muHh4YiMjMTcuXORn5+PXr164ddff0VcXBy6dOmC8ePH1+s+sbW1RXh4OGbOnAmtVouEhATk5+cjPj5eN2bZsmXo3bs3nnzySbz88sto0aIFCgoKcOnSJezatUtXZ9SqVSs4OTnhX//6F9q1awdXV1eoVCrdF3dYWBhmzZoFALojOE5OTggNDcW+ffvQsWNH+Pj46J63V69e+Mc//oFJkybhxIkT6NOnD1xcXJCdnY0jR44gJCQEL7/8MlxdXbF8+XJER0fj9u3bGDFiBHx8fHDz5k2cPn0aN2/exKpVqx56X6nVarRo0QIjR47EgAED4O/vj8LCQhw6dAjLli1Du3btjB4hNMbGxgaLFy/G888/jyFDhuDFF19ESUkJPvzwQ/z111963XRr+j4YcvDgQbz22mt4/vnnERoaCi8vL+Tm5uKbb75BcnIyJkyYUOmoQLmjR4/ipZdeQq9evRAeHl6pNuiJJ5546PdgyJAh2LZtG6ZOnYoRI0bg2rVreO+99+Dn51fnrufvvfceBg4ciPDwcMyaNQsajQYJCQlwcXGp89HXJUuW4LfffsO4ceNw+PBhREVFQS6X46efftJd1p6UlGT0dFC5Dh06ICwsDE8//TRatWqF4uJi/Pzzz/j444/h6+uLKVOmALj/x8D48ePx/vvv448//sCQIUMgl8vxyy+/wNnZGdOnT0fbtm3xj3/8A8uXL4eNjQ2efvppXLlyBW+//Tb8/f31/mgyJiYmBlu3bkWfPn0wY8YMdOzYEVqtFr///jv27duHWbNmoUePHnXaZ1QN89ZHkzUzdum5EPevlggICBCtW7fWXSVz+vRpMWrUKOHj4yPs7e2FUqkUTz31lFi9erXucYauULl+/boYPny48PDwEG5ubmLgwIEiIyNDNG/eXERHR+s979KlS0VgYKCwtbXVu2Kp4tVY5THOnTtXNG/eXNjb2ws/Pz/x8ssvi7y8PL1xzZs3N3jVR9++fUXfvn2r3EflVwslJCSI+Ph40axZM+Hg4CC6dOki9u7da3D85MmTRdOmTYW9vb1o0qSJCA0NFe+//77euG+++UYEBQUJe3t7AUDExcXp1p0+fVoAEK1bt9Z7zIIFCwQAMXPmTIOxfvnll6JHjx7CxcVFODk5iVatWokJEyaIEydO6I1LTU0VgwcPFp6ensLe3l40bdpUDB48WGzZskU3pvxqrAcvxxXif5+ZzMxMo/uspKREfPTRR+Lpp58WAQEBQi6XC0dHR9GuXTvx+uuvi1u3blXavx9++GGl7VTcL0IIkZSUJHr06CEcHR2Fi4uLCAsLEz/++GOlx9b0fajo2rVrYt68eaJXr15CqVQKOzs74ebmJnr06CGWL1+ud8VYxc96+b4xdntQTd4DYz744APRokULIZfLRbt27cTnn3+ue78q7r9XXnml0uMN/b/buXOn6Nixo3BwcBABAQHigw8+MLhNQypejVWutLRULF++XPTo0UPv6rbQ0FBx/fr1arcrhBCfffaZGDZsmGjZsqVwdnYWDg4OolWrVuKll14S165d0xur0WjEJ598IoKDg4WDg4NQKBSiZ8+eYteuXXpjEhISRJs2bYS9vb3w9vYW48aNq7Stvn37ig4dOhiMqbCwUMybN0+0bdtW9zwhISFixowZem0eqH7JhKhwWQMREZGFKSsrQ1RUFNLS0pCSksIjIFQrTHaIiMgqFBYWon///rh8+TIOHjyITp06mTskshJMdoiIiEjS2FSQiIiIJI3JDhEREUkakx0iIiKSNCY7REREJGlsKghAq9UiKysLbm5u1U4sR0RERJZBCIGCggKoVCq9SX4rYrKD+/Oa1GRCOSIiIrI8165dM9qdHGCyAwBwc3MDcH9nubu7mzkaIiIiqon8/Hz4+/vrfseNYbKD/81O6+7uzmSHiIjIylRXgsICZSIiIpI0JjtEREQkaUx2iIiISNKY7BAREZGkMdkhIiIiSWOyQ0RERJLGZIeIiIgkjckOERERSRqTHSIiIpI0dlAmskIarcCxzNvILSiGj5sjugd6wtaGk9gSERnCZIfIyiRnZCN+11lkq4t1y/wUjoiLao+BwX5mjIyIyDLxNBaRFUnOyMbLiaf0Eh0AyFEX4+XEU0jOyDZTZERElovJDpGV0GgF4nedhTCwrnxZ/K6z0GgNjSAiaryY7BBZiWOZtysd0XmQAJCtLsaxzNumC4qIyAow2SGyErkFxhOduowjImosmOwQWQkfN8d6HUdE1Fgw2SGyEt0DPeGncISxC8xluH9VVvdAT1OGRURk8ZjsEFkJWxsZ4qLaA0ClhKf8flxUe/bbISKqgMkOkRUZGOyHVeO6QqnQP1WlVDhi1biu7LNDRGQAmwoSWZmBwX4Ib69kB2UiohpiskNkhWxtZOjZysvcYRARWQWexiIiIiJJY7JDREREksZkh4iIiCSNyQ4RERFJGpMdIiIikjQmO0RERCRpTHaIiIhI0pjsEBERkaQx2SEiIiJJY7JDREREksZkh4iIiCTNrMnO4cOHERUVBZVKBZlMhqSkJKNjX3zxRchkMixdulRveUlJCaZPnw5vb2+4uLhg6NChuH79esMGTkRERFbDrMnOnTt30KlTJ6xYsaLKcUlJSfj555+hUqkqrYuJicH27duxadMmHDlyBIWFhRgyZAg0Gk1DhU1ERERWxKyznj/99NN4+umnqxxz48YNTJs2DXv37sXgwYP11qnVaqxduxYbNmzAgAEDAACJiYnw9/fH/v37ERkZ2WCxExERkXWw6JodrVaL8ePHY86cOejQoUOl9SdPnkRZWRkiIiJ0y1QqFYKDg5GWlmZ0uyUlJcjPz9e7ERERkTRZdLKTkJAAOzs7vPrqqwbX5+TkwMHBAR4eHnrLfX19kZOTY3S7ixYtgkKh0N38/f3rNW4iIiKyHBab7Jw8eRLLli3D+vXrIZPJavVYIUSVj4mNjYVardbdrl279rDhEhERkYWy2GTnhx9+QG5uLgICAmBnZwc7OztcvXoVs2bNQosWLQAASqUSpaWlyMvL03tsbm4ufH19jW5bLpfD3d1d70ZERETSZLHJzvjx4/Hrr78iPT1dd1OpVJgzZw727t0LAHjsscdgb2+PlJQU3eOys7ORkZGB0NBQc4VOREREFsSsV2MVFhbi0qVLuvuZmZlIT0+Hp6cnAgIC4OXlpTfe3t4eSqUSbdu2BQAoFApMmTIFs2bNgpeXFzw9PTF79myEhITors4iIiKixs2syc6JEyfQv39/3f2ZM2cCAKKjo7F+/foabeOTTz6BnZ0dRo0ahaKiIoSFhWH9+vWwtbVtiJCJiIjIysiEEMLcQZhbfn4+FAoF1Go163eIiIisRE1/vy22ZoeIiIioPjDZISIiIkljskNERESSxmSHiIiIJI3JDhEREUkakx0iIiKSNCY7REREJGlMdoiIiEjSmOwQERGRpDHZISIiIkljskNERESSxmSHiIiIJI3JDhEREUkakx0iIiKSNCY7REREJGlMdoiIiEjSmOwQERGRpDHZISIiIkljskNERESSxmSHiIiIJI3JDhEREUkakx0iIiKSNCY7REREJGlMdoiIiEjSmOwQERGRpDHZISIiIkljskNERESSxmSHiIiIJI3JDhEREUkakx0iIiKSNCY7REREJGlMdoiIiEjSmOwQERGRpDHZISIiIkkza7Jz+PBhREVFQaVSQSaTISkpSW/9/PnzERQUBBcXF3h4eGDAgAH4+eef9caUlJRg+vTp8Pb2houLC4YOHYrr16+b8FUQERGRJTNrsnPnzh106tQJK1asMLi+TZs2WLFiBf7zn//gyJEjaNGiBSIiInDz5k3dmJiYGGzfvh2bNm3CkSNHUFhYiCFDhkCj0ZjqZRAREZEFkwkhhLmDAACZTIbt27fj2WefNTomPz8fCoUC+/fvR1hYGNRqNZo0aYINGzbgueeeAwBkZWXB398fe/bsQWRkZI2eu3y7arUa7u7u9fFyiIiIqIHV9Pfbamp2SktLsWbNGigUCnTq1AkAcPLkSZSVlSEiIkI3TqVSITg4GGlpaUa3VVJSgvz8fL0bERERSZPFJzu7d++Gq6srHB0d8cknnyAlJQXe3t4AgJycHDg4OMDDw0PvMb6+vsjJyTG6zUWLFkGhUOhu/v7+DfoaiIiIyHwsPtnp378/0tPTkZaWhoEDB2LUqFHIzc2t8jFCCMhkMqPrY2NjoVardbdr167Vd9hERERkISw+2XFxccGjjz6KJ554AmvXroWdnR3Wrl0LAFAqlSgtLUVeXp7eY3Jzc+Hr62t0m3K5HO7u7no3IiIikiaLT3YqEkKgpKQEAPDYY4/B3t4eKSkpuvXZ2dnIyMhAaGiouUIkIiIiC2JnzicvLCzEpUuXdPczMzORnp4OT09PeHl5YcGCBRg6dCj8/Pxw69YtrFy5EtevX8fIkSMBAAqFAlOmTMGsWbPg5eUFT09PzJ49GyEhIRgwYIC5XhYRERFZELMmOydOnED//v1192fOnAkAiI6OxurVq/Hbb7/hq6++wp9//gkvLy9069YNP/zwAzp06KB7zCeffAI7OzuMGjUKRUVFCAsLw/r162Fra2vy10NERESWx2L67JgT++wQERFZH8n12SEiIiKqCyY7REREJGlMdoiIiEjSmOwQERGRpDHZISIiIkljskNERESSxmSHiIiIJI3JDhEREUkakx0iIiKSNCY7REREJGlMdoiIiEjSmOwQERGRpDHZISIiIkljskNERESSxmSHiIiIJI3JDhEREUkakx0iIiKSNCY7REREJGlMdoiIiEjSmOwQERGRpDHZISIiIkljskNERESSxmSHiIiIJI3JDhEREUkakx0iIiKSNCY7REREJGlMdoiIiEjSmOwQERGRpDHZISIiIkljskNERESSxmSHiIiIJI3JDhEREUkakx0iIiKSNCY7REREJGlmTXYOHz6MqKgoqFQqyGQyJCUl6daVlZVh7ty5CAkJgYuLC1QqFSZMmICsrCy9bZSUlGD69Onw9vaGi4sLhg4diuvXr5v4lRAREZGlMmuyc+fOHXTq1AkrVqyotO7u3bs4deoU3n77bZw6dQrbtm3DhQsXMHToUL1xMTEx2L59OzZt2oQjR46gsLAQQ4YMgUajMdXLICIiIgsmE0IIcwcBADKZDNu3b8ezzz5rdMzx48fRvXt3XL16FQEBAVCr1WjSpAk2bNiA5557DgCQlZUFf39/7NmzB5GRkTV67vz8fCgUCqjVari7u9fHyyEiIqIGVtPfb6uq2VGr1ZDJZHjkkUcAACdPnkRZWRkiIiJ0Y1QqFYKDg5GWlmZ0OyUlJcjPz9e7ERERkTRZTbJTXFyMN954A2PHjtVlbzk5OXBwcICHh4feWF9fX+Tk5Bjd1qJFi6BQKHQ3f3//Bo2diIiIzMcqkp2ysjKMHj0aWq0WK1eurHa8EAIymczo+tjYWKjVat3t2rVr9RkuERERWRCLT3bKysowatQoZGZmIiUlRe+cnFKpRGlpKfLy8vQek5ubC19fX6PblMvlcHd317sRERGRNFl0slOe6Fy8eBH79++Hl5eX3vrHHnsM9vb2SElJ0S3Lzs5GRkYGQkNDTR0uERERWSA7cz55YWEhLl26pLufmZmJ9PR0eHp6QqVSYcSIETh16hR2794NjUajq8Px9PSEg4MDFAoFpkyZglmzZsHLywuenp6YPXs2QkJCMGDAAHO9LCIiIrIgZr30/NChQ+jfv3+l5dHR0Zg/fz4CAwMNPu7gwYPo168fgPuFy3PmzMHGjRtRVFSEsLAwrFy5slZFx7z0nIiIyPrU9PfbYvrsmBOTHSIiIusjyT47RERERLXFZIeIiIgkjckOERERSRqTHSIiIpI0JjtEREQkaUx2iIiISNLM2lSQiKyfRitwLPM2cguK4ePmiO6BnrC1MT43HRGRqTHZIaI6S87IRvyus8hWF+uW+SkcERfVHgOD/cwYGRHR//A0FhHVSXJGNl5OPKWX6ABAjroYLyeeQnJGtpkiIyLSx2SHiGpNoxWI33UWhtqvly+L33UWGm2jb9BORBaAyQ4R1dqxzNuVjug8SADIVhfjWOZt0wVFRGQEkx0iqrXcAuOJTl3GERE1JCY7RFRrPm6O9TqOiKghMdkholrrHugJP4UjjF1gLsP9q7K6B3qaMiwiIoOY7BBRrdnayBAX1R4AKiU85ffjotqz3w4RWQQmO0RUJwOD/bBqXFcoFfqnqpQKR6wa15V9dojIYrCpIBHV2cBgP4S3V7KDMhFZNCY7RPRQbG1k6NnKy9xhEBEZxdNYREREJGlMdoiIiEjSmOwQERGRpNU52bl37x7279+Pzz77DAUFBQCArKwsFBYW1ltwRERERA+rTgXKV69excCBA/H777+jpKQE4eHhcHNzw+LFi1FcXIzVq1fXd5xEREREdVKnIzuvvfYaHn/8ceTl5cHJyUm3/G9/+xsOHDhQb8ERERERPaw6Hdk5cuQIfvzxRzg4OOgtb968OW7cuFEvgRERERHVhzod2dFqtdBoNJWWX79+HW5ubg8dFBEREVF9qVOyEx4ejqVLl+ruy2QyFBYWIi4uDoMGDaqv2IiIiIgemkwIIWr7oBs3buCpp56Cra0tLl68iMcffxwXL16Et7c3Dh8+DB8fn4aItcHk5+dDoVBArVbD3d3d3OEQERFRDdT097tONTtNmzZFeno6Nm3ahJMnT0Kr1WLKlCl4/vnn9QqWiYiIiMyt1kd2ysrK0LZtW+zevRvt27dvqLhMikd2iIiIrE9Nf79rXbNjb2+PkpISyGSc1ZiIiIgsX50KlKdPn46EhATcu3evvuMhIiIiqld1qtn5+eefceDAAezbtw8hISFwcXHRW79t27Z6CY6IiIjoYdXpyM4jjzyC4cOHIzIyEiqVCgqFQu9WU4cPH0ZUVBRUKhVkMhmSkpL01m/btg2RkZHw9vaGTCZDenp6pW2UlJRg+vTp8Pb2houLC4YOHYrr16/X5WVRNTRagaOXb2FH+g0cvXwLGq2o0ToiIiJzqtORnXXr1tXLk9+5cwedOnXCpEmTMHz4cIPre/XqhZEjR+Lvf/+7wW3ExMRg165d2LRpE7y8vDBr1iwMGTIEJ0+ehK2tbb3ESUByRjbid51FtrpYt8xP4Yi4qPtF6sbWDQz2M3msRERED6pTn51yN2/exPnz5yGTydCmTRs0adKk7oHIZNi+fTueffbZSuuuXLmCwMBA/PLLL+jcubNuuVqtRpMmTbBhwwY899xzAO7PvO7v7489e/YgMjKyRs/Nq7GqlpyRjZcTT6HiB0UGVFr24DoAWDWuKxMeIiJqEA12NRZw/4jL5MmT4efnhz59+uDJJ5+ESqXClClTcPfu3ToHXVsnT55EWVkZIiIidMtUKhWCg4ORlpZmsjikTKMViN911mBSU1WWXL4uftdZntIiIiKzqlOyM3PmTKSmpmLXrl3466+/8Ndff2HHjh1ITU3FrFmz6jtGo3JycuDg4AAPDw+95b6+vsjJyTH6uJKSEuTn5+vdyLBjmbf1Tk/VhgCQrS7Gsczb9RsU6TFHvRRrtIjImtSpZmfr1q349ttv0a9fP92yQYMGwcnJCaNGjcKqVavqK746EUJU2Qdo0aJFiI+PN2FE1iu3oG6JTn1vgwyrqpaqoU4fmuM5iYgeRp2O7Ny9exe+vr6Vlvv4+Jj0NJZSqURpaSny8vL0lufm5hqMr1xsbCzUarXudu3atYYO1Wr5uDlaxDaosvJaqopH3nLUxXg58RSSM7Il8ZxERA+rTslOz549ERcXh+Li/33hFRUVIT4+Hj179qy34Krz2GOPwd7eHikpKbpl2dnZyMjIQGhoqNHHyeVyuLu7693IsO6BnvBTOKIu/bJluP8Xf/dAz/oOq9GrSS1VfddLmeM5iYjqQ51OYy1btgwDBw5Es2bN0KlTJ10PHEdHR+zdu7fG2yksLMSlS5d09zMzM5Geng5PT08EBATg9u3b+P3335GVlQUAOH/+PID7R3SUSiUUCgWmTJmCWbNmwcvLC56enpg9ezZCQkIwYMCAurw0qsDWRoa4qPZ4OfFUpauvHrxvaB0AxEW1h60Npxapb9XVUj1YL9WzlZfVPicRUX2oU7ITHByMixcvIjExEb/99huEEBg9enStZz0/ceIE+vfvr7s/c+ZMAEB0dDTWr1+PnTt3YtKkSbr1o0ePBgDExcVh/vz5AIBPPvkEdnZ2GDVqFIqKihAWFob169ezx049Ghjsh1Xjulaq01BW0WdHyRqOBlXTOqj6rJcyx3MSEdWHh+qzIxXss1MzGq3AsczbyC0oho/b/dNT5UdtqlpH9e/o5VsY8/lP1Y775u9P1NtRFnM8JxFRVWr6+12nIzuLFi2Cr68vJk+erLf8yy+/xM2bNzF37ty6bJYsnK2NzOiPWFXrqP6V11LlqIsN1tDIcP/oWn3WS5njOYmI6kOdCpQ/++wzBAUFVVreoUMHrF69+qGDIqKqlddSAahUPN5Q9VLmeE4iovpQp2QnJycHfn6VazGaNGmC7Gxeevqw2LCNaqK8lkqp0L+0X6lwbLBpOszxnERED6tOp7H8/f3x448/IjAwUG/5jz/+CJVKVS+BNVZs2Ea1MTDYD+HtlSatlzLHcxIRPYw6JTsvvPACYmJiUFZWhqeeegoAcODAAbz++usmnS5CaoxNuFnesI1/OZMh5qiXYo0WEVmTOiU7r7/+Om7fvo2pU6eitLQUAODo6Ii5c+ciNja2XgNsLKpr2CbD/cu7w9sr+Rc0ERFRLTzUpeeFhYU4d+4cnJyc0Lp1a8jl8vqMzWQs4dJzXtZLRERUOzX9/a5TgXI5V1dXdOvWDW5ubrh8+TK0Wu3DbK5RY8M2IiKihlGrZOerr77C0qVL9Zb94x//QMuWLRESEoLg4GBOqllHNZ0sk5NqEhER1U6tkp3Vq1dDoVDo7icnJ2PdunX4+uuvcfz4cTzyyCOIj4+v9yAbg+om3OSkmkRERHVTq2TnwoULePzxx3X3d+zYgaFDh+L5559H165dsXDhQhw4cKDeg2wM2LCNiIioYdQq2SkqKtIrAEpLS0OfPn1091u2bImcnJz6i66RYcM2IiKi+lerS8+bN2+OkydPonnz5vjzzz9x5swZ9O7dW7c+JydH7zQX1R4bthEREdWvWiU7EyZMwCuvvIIzZ87g+++/R1BQEB577DHd+rS0NAQHB9d7kI0NG7YRERHVn1olO3PnzsXdu3exbds2KJVKbNmyRW/9jz/+iDFjxtRrgEREREQP46GaCkqFJTQVJCIiotqp6e93naaLICIqp9EK1pgRkUVjskNEdZackY34XWeRrf5fZ28/hSPiotrz6kEishgPNV0EETVeyRnZeDnxlF6iAwA56mK8nHgKyRnZZoqMiEgfkx0iqjWNViB+11kYKvgrXxa/6yw02kZfEkhEFuChkp0///wT+fn59RULEVmJY5m3Kx3ReZAAkK0uxrHM26YLiojIiFonO3/99RdeeeUVeHt7w9fXFx4eHlAqlYiNjcXdu3cbIkYisjC5BcYTnbqMIyJqSLUqUL59+zZ69uyJGzdu4Pnnn0e7du0ghMC5c+ewfPlypKSk4MiRIzh9+jR+/vlnvPrqqw0VNxGZkY+bY/WDajGOiKgh1SrZeffdd+Hg4IDLly/D19e30rqIiAiMHz8e+/btwz//+c96DZSILEf3QE/4KRyRoy42WLcjw/053boHepo6NCKiSmp1GispKQkfffRRpUQHAJRKJRYvXoytW7di5syZiI6Orrcgiciy2NrIEBfVHsD9xOZB5ffjotqz3w4RWYRadVCWy+W4fPkymjVrZnD99evX0aJFC9y7d6/eAjQFdlAmqpqxxoHss0NE5tQgHZS9vb1x5coVo8lOZmYmfHx8ahcpEVm06hKa8PZKdlAmIotWqyM7U6ZMwaVLl5CSkgIHBwe9dSUlJYiMjETLli3x5Zdf1nugDYlHdogMK28cWPFLojyVWTWuK4/gEJHZ1PT3u1bJzvXr1/H4449DLpfjlVdeQVBQEADg7NmzWLlyJUpKSnD8+HEEBAQ8/CswISY7RJVptAK9E7432k+nvAj5yNyneCSHiMyiQU5jNWvWDEePHsXUqVMRGxuL8jxJJpMhPDwcK1assLpEh4gMq03jwJ6tvEwXGBFRLdV6ItDAwEB89913yMvLw8WLFwEAjz76KDw9eYkpkZSwcSARSUWdZz338PBA9+7d6zMWIrIgbBxIRFJRq2Rn2LBhNRq3bdu2OgVDRJaDjQOJSCpqlewoFIqGioOILEx548CXE09BBuglPGwcSETWpFZXY9W3w4cP48MPP8TJkyeRnZ2N7du349lnn9WtF0IgPj4ea9asQV5eHnr06IFPP/0UHTp00I0pKSnB7Nmz8c0336CoqAhhYWFYuXKl0V5AhvBqLCLj2DiQiCxVg1yNVd/u3LmDTp06YdKkSRg+fHil9YsXL8aSJUuwfv16tGnTBu+//z7Cw8Nx/vx5uLm5AQBiYmKwa9cubNq0CV5eXpg1axaGDBmCkydPwtbW1tQviUhy2DiQiKydWY/sPEgmk+kd2RFCQKVSISYmBnPnzgVw/yiOr68vEhIS8OKLL0KtVqNJkybYsGEDnnvuOQBAVlYW/P39sWfPHkRGRtbouXlkh4iIyPrU9Pe7VhOBmlJmZiZycnIQERGhWyaXy9G3b1+kpaUBAE6ePImysjK9MSqVCsHBwboxRERE1LiZ9TRWVXJycgCg0gzrvr6+uHr1qm6Mg4MDPDw8Ko0pf7whJSUlKCkp0d3Pz8+vr7CJiIjIwljskZ1yMpl+XYAQotKyiqobs2jRIigUCt3N39+/XmIlIiIiy2OxyY5SqQSASkdocnNzdUd7lEolSktLkZeXZ3SMIbGxsVCr1brbtWvX6jl6IiIishQWm+wEBgZCqVQiJSVFt6y0tBSpqakIDQ0FADz22GOwt7fXG5OdnY2MjAzdGEPkcjnc3d31bkRERCRNZq3ZKSwsxKVLl3T3MzMzkZ6eDk9PTwQEBCAmJgYLFy5E69at0bp1ayxcuBDOzs4YO3YsgPtNDqdMmYJZs2bBy8sLnp6emD17NkJCQjBgwABzvSwis9JoBS8TJyKLYCnfR2ZNdk6cOIH+/fvr7s+cORMAEB0djfXr1+P1119HUVERpk6dqmsquG/fPl2PHQD45JNPYGdnh1GjRumaCq5fv549dqhRYgNAIrIUlvR9ZDF9dsyJfXZICpIzsvFy4qlK81iV/w21alxXJjxEZBKm+j6y+j47RFRzGq1A/K6zBifsLF8Wv+ssNNpG/7cNETUwS/w+YrJDJAHHMm/rHSquSADIVhfjWOZt0wVFRI2SJX4fMdkhkoDcAuNfLHUZR0RUV5b4fcRkh0gCfNwc63UcEVFdWeL3EZMdIgnoHugJP4UjjF3QKcP9qyC6B3qaMiwiaoQs8fuIyQ6RBNjayBAX1R4AKn3BlN+Pi2rPfjtE1OAs8fuIyQ6RRAwM9sOqcV2hVOgfGlYqHCV92blGK3D08i3sSL+Bo5dv8YozIgtgad9H7LMD9tkhabGUjqWmYElNy4iosob+Pqrp7zeTHTDZIbJGbKJIRGwqSESSZYlNy4jIcjHZISKrY4lNy4jIcpl1IlCi2qh47vex5h44eTWvUdSmkD5LbFpmSGOqnyKyZEx2yCoYKkS1kQEPnqVgYWrjYYlNyypi8TSR5eBpLLJ45YWoFU9bVCzHyFEX4+XEU0jOyDZhdGQOlti07EHGPrP8jBKZB5MdsmhVFaJWxMLUxsMSm5aVY/E0keVhskMWrbpC1IpYmNp4WFrTsnIsniayPKzZIYtW1wJTcxemkmkMDPZDeHulRRUBW0vxNFFjwmSHLFpdC0w5u3fjYWsjQ89WXuYOQ8caiqeJGhuexiKLVl0hakXmLkwlsvTiaaLGiMkOWbSqClErMndhKhFg2cXTRI0Vkx2yeMYKUSv+Vpi7MJWoXG2LpzlzO1HD4kSg4ESg1oIdlMna1KSDMpsPEtUdZz2vBSY7RGQOnLmd6OFw1nMiIgvG5oNEpsNkh4jIDNh8kMh0mOwQEZkBmw8SmQ6THSIiM2DzQSLTYbJDRGQGbD5IZDpMdoiIzIDNB4lMh8kOEZGZWOrM7URSw4lAiYjMyBJnbieSGiY7RERmZmkztxNJDU9jERERkaTxyA4RSVZN5qYiIumz+CM7BQUFiImJQfPmzeHk5ITQ0FAcP35ct14Igfnz50OlUsHJyQn9+vXDmTNnzBgxEVmC5Ixs9E74HmM+/wmvbUrHmM9/Qu+E75GckW3u0IjIxCw+2XnhhReQkpKCDRs24D//+Q8iIiIwYMAA3LhxAwCwePFiLFmyBCtWrMDx48ehVCoRHh6OgoICM0dOROZSPsFmxekYctTFeDnxFBMeokbGomc9LyoqgpubG3bs2IHBgwfrlnfu3BlDhgzBe++9B5VKhZiYGMydOxcAUFJSAl9fXyQkJODFF1+s0fNw1nMi6dBoBXonfG903ikZ7l/afWTuUzylRWTlJDHr+b1796DRaODoqN+DwsnJCUeOHEFmZiZycnIQERGhWyeXy9G3b1+kpaUZ3W5JSQny8/P1bkQkDZxgk4gqsuhkx83NDT179sR7772HrKwsaDQaJCYm4ueff0Z2djZycnIAAL6+vnqP8/X11a0zZNGiRVAoFLqbv79/g76OijRagaOXb2FH+g0cvXwLGq3FHlwjsjqcYJOIKrL4q7E2bNiAyZMno2nTprC1tUXXrl0xduxYnDp1SjdGJtM/FC2EqLTsQbGxsZg5c6bufn5+vskSnuSMbMTvOqv3l6efwhFxUe3ZLZWoHnCCTSKqyKKP7ABAq1atkJqaisLCQly7dg3Hjh1DWVkZAgMDoVQqAaDSUZzc3NxKR3seJJfL4e7urnczBRZNEjU8TrBJRBVZfLJTzsXFBX5+fsjLy8PevXvxzDPP6BKelJQU3bjS0lKkpqYiNDTUjNFWptEKxO86C0MnrMqXxe86y1NaRA+JE2wSUUUWn+zs3bsXycnJyMzMREpKCvr374+2bdti0qRJkMlkiImJwcKFC7F9+3ZkZGRg4sSJcHZ2xtixY80duh4WTRKZDifYrB3WEZLUWXzNjlqtRmxsLK5fvw5PT08MHz4cCxYsgL29PQDg9ddfR1FREaZOnYq8vDz06NED+/btg5ubm5kj18eiSSLT4gSbNcM6QmoMLLrPjqmYos/O0cu3MObzn6od983fn+CEgERkEuV1hBV/BMrTQR4FI0sniT47UsKiSSKyJKwjpMaEyY6JsGiSiCwJ6wipMWGyY0IsmrQuLNokqdJoBX689GeNxrKOkKTA4guUpYZFk9aBRZskVYY+21Vh80WSAiY7ZmBrI2MRsgUzVrRZ3vyRR+HIWhn7bBtSPmEq6whJCngai+gBLNokqarqs10R6whJanhkp4FotIKnqqxQbYo2G/PROX6+rU91n+0HKXnKliSGyU4DYL2H9WLzx+rx822davqZnda/FWaEt2XySpLC01j1jJN9WjfOmF01fr6tV00/s70ebcJEhySHyU49Yr2H9WPzR+P4+bZu/GxTY8Zkpx6xSZf1Y/NH4/j5tm78bFNjxmSnHrHeQxrY/NEwfr6tHz/b1FixQLkesd5DOtj8sTJ+vqWBn21qjJjs1KPyc+I56mKDdQ1s0mVd2PxRHz/f0sHPNjU2PI1Vj3hOnKSMn28islZMduqZ1M6JczJMepDUPt9E1DjIhBCN/tcrPz8fCoUCarUa7u7u9bJNKXSYZfM4MkYKn28isn41/f1msoOGSXasnbEJA8t/zvhXPBERmVtNf795GosqYfM4IiKSEiY7VAmbxxERkZQw2aFK2DyOiIikhMkOVcLmcUREJCVMdqgSThhIRERSwmSHKmHzOCIikhImO2QQm8cREZFUcG4sMooTBhIRkRQw2aEqccJAIiKydjyNRURERJLGZIeIiIgkjckOERERSRqTHSIiIpI0JjtEREQkaUx2iIiISNJ46bkF0GgFe9kQERE1EIs+snPv3j3MmzcPgYGBcHJyQsuWLfHuu+9Cq9XqxgghMH/+fKhUKjg5OaFfv344c+aMGaOuneSMbPRO+B5jPv8Jr21Kx5jPf0LvhO+RnJFt7tCIiIgkwaKTnYSEBKxevRorVqzAuXPnsHjxYnz44YdYvny5bszixYuxZMkSrFixAsePH4dSqUR4eDgKCgrMGHnNJGdk4+XEU8hWF+stz1EX4+XEU0x4iIiI6oFFJztHjx7FM888g8GDB6NFixYYMWIEIiIicOLECQD3j+osXboUb731FoYNG4bg4GB89dVXuHv3LjZu3Gjm6Kum0QrE7zoLYWBd+bL4XWeh0RoaQURERDVl0clO7969ceDAAVy4cAEAcPr0aRw5cgSDBg0CAGRmZiInJwcRERG6x8jlcvTt2xdpaWlGt1tSUoL8/Hy9m6kdy7xd6YjOgwSAbHUxjmXeNl1QREREEmTRBcpz586FWq1GUFAQbG1todFosGDBAowZMwYAkJOTAwDw9fXVe5yvry+uXr1qdLuLFi1CfHx8wwVeA7kFxhOduowjIiIiwyz6yM7mzZuRmJiIjRs34tSpU/jqq6/w0Ucf4auvvtIbJ5PpX7kkhKi07EGxsbFQq9W627Vr1xok/qr4uDnW6zgiIiIyzKKP7MyZMwdvvPEGRo8eDQAICQnB1atXsWjRIkRHR0OpVAK4f4THz89P97jc3NxKR3seJJfLIZfLGzb4anQP9ISfwhE56mKDdTsyAErF/cvQiYiIqO4s+sjO3bt3YWOjH6Ktra3u0vPAwEAolUqkpKTo1peWliI1NRWhoaEmjbW2bG1kiItqD+B+YvOg8vtxUe3Zb4eIiOghWfSRnaioKCxYsAABAQHo0KEDfvnlFyxZsgSTJ08GcP/0VUxMDBYuXIjWrVujdevWWLhwIZydnTF27FgzR1+9gcF+WDWuK+J3ndUrVlYqHBEX1R4Dg/2qeHT9YVNDosaN3wEkdTIhhMVe21xQUIC3334b27dvR25uLlQqFcaMGYN33nkHDg4OAO7X58THx+Ozzz5DXl4eevTogU8//RTBwcE1fp78/HwoFAqo1Wq4u7s31MsxypxfNMkZ2ZWSLT8TJ1tEZD78DiBrVtPfb4tOdkzF3MmOuZQ3Naz4AShPs1aN68ovOyIJ43cAWbua/n5bdM0ONRw2NSRq3PgdQI0Jk51Gik0NiRo3fgdQY2LRBcrUcNjU0HRY/Gn9pPge8juAGhMmO40UmxqaBos/rZ9U30N+B1BjwtNYjVR5U0Njf5vKcP8LnU0N646z2ls/Kb+H/A6gxoTJTiPFpoYNi8Wf1k/q7yG/A6gxYbLTiJU3NVQq9A9TKxWONbrkVKMVOHr5Fnak38DRy7es9ku/IbD40/o1hvfwYb8DiKwFa3YauYHBfghvr6x18aVU6xjqC4s/rV9jeQ/r+h1AZE2Y7BBsbWTo2cqrxuONNSIrr2PgX4Qs/pSCxvQe1vY7gMja8DQW1YrU6xjqC4s/rR/fQyLpYLJDtdIY6hjqA4s/rR/fQyLpYLJDtWKNdQzmKqRm8af143tIJA2s2aFasbY6BnMXUrP40/rxPSSyfkx2qFbK6xhy1MUG63ZkuP9XryXUMVhKITWLP60f30Mi68bTWFQr1lLHwEJqIiIqx2SHas0a6hhYSE1EROV4GovqxNLrGKyxkJqIiBoGkx2qM0uuY7C2QmoiImo4PI1FksSGcEREVI7JDkmSNRVSczJVIqKGxdNYJFnlhdQV++woLWTCUnP3ACIiaixkQohG/6dkfn4+FAoF1Go13N3dzR0O1TONVlhcIbWxHkDlUVnKVW1ERJaspr/fPLJDkmdphdTV9QCS4X4PoPD2SrMnZUREUsCaHSITYw8gIiLT4pEdIhNjDyAyB0s8nUtkKkx2iEyMPYDI1FgMT40dT2MRmRh7AJEplRfDVzx1Wj4hbnJGtpkiIzIdJjtEJmYtPYDI+nFCXKL7mOwQmYE1TKZK1o/F8ET3sWaHyEwsfTJVsn4shie6j8kOkRlZWg8gkhYWwxPdx9NYREQSxWJ4ovuY7BARSRSL4Ynu42msRqhic7HHmnvg5NU85BYUw9tFDsiAPwtLLK6GxBRN0dh4jaTG0ifEJTIFi092WrRogatXr1ZaPnXqVHz66acQQiA+Ph5r1qxBXl4eevTogU8//RQdOnQwQ7SWz1BzMRsZYOzKU0tpPGaKpmhsvEZSxWJ4auwsftbzmzdvQqPR6O5nZGQgPDwcBw8eRL9+/ZCQkIAFCxZg/fr1aNOmDd5//30cPnwY58+fh5ubW42eo7HMem5spu2qWMIs3KaYIZyzkBMRWZ+a/n5bfM1OkyZNoFQqdbfdu3ejVatW6Nu3L4QQWLp0Kd566y0MGzYMwcHB+Oqrr3D37l1s3LjR3KFblKqai1XF3I3HTNEUjY3XiIikzeKTnQeVlpYiMTERkydPhkwmQ2ZmJnJychAREaEbI5fL0bdvX6SlpRndTklJCfLz8/VuUlddc7GqmLPxmCmaorHxGhGRtFlVspOUlIS//voLEydOBADk5OQAAHx9ffXG+fr66tYZsmjRIigUCt3N39+/wWK2FPXRNMwcjcdM0RSNjdeIiKTNqpKdtWvX4umnn4ZKpdJbLpPpF9kJISote1BsbCzUarXudu3atQaJ15LUR9MwczQeM0VTNDZeIyKSNqtJdq5evYr9+/fjhRde0C1TKpUAUOkoTm5ubqWjPQ+Sy+Vwd3fXu0lddc3FqmLOxmOmaIrGxmtERNJmNcnOunXr4OPjg8GDB+uWBQYGQqlUIiUlRbestLQUqampCA0NNUeYFquq5mJVMXfjMVM0RWPjNSIiabOKZEer1WLdunWIjo6Gnd3/WgPJZDLExMRg4cKF2L59OzIyMjBx4kQ4Oztj7NixZozYMhmbabuq33BLmIXbFDOEcxZyIiLpsvg+OwCwb98+REZG4vz582jTpo3euvKmgp999pleU8Hg4OAab7+x9Nkpxw7K5n0OIiKqHzX9/baKZKehNbZkh4iISAok01SQiIiI6GEw2SEiIiJJY7JDREREksZkh4iIiCSNyQ4RERFJGpMdIiIikjQmO0RERCRpTHaIiIhI0pjsEBERkaTZVT9E+sqbSOfn55s5EiIiIqqp8t/t6iaDYLIDoKCgAADg7+9v5kiIiIiotgoKCqBQKIyu59xYuD+relZWFtzc3CCTWfekj/n5+fD398e1a9c4z9cDuF+M474xjPvFMO4X47hvDGvI/SKEQEFBAVQqFWxsjFfm8MgOABsbGzRr1szcYdQrd3d3/mczgPvFOO4bw7hfDON+MY77xrCG2i9VHdEpxwJlIiIikjQmO0RERCRpTHYkRi6XIy4uDnK53NyhWBTuF+O4bwzjfjGM+8U47hvDLGG/sECZiIiIJI1HdoiIiEjSmOwQERGRpDHZISIiIkljskNERESSxmRHIm7cuIFx48bBy8sLzs7O6Ny5M06ePGnusMzu3r17mDdvHgIDA+Hk5ISWLVvi3XffhVarNXdoJnX48GFERUVBpVJBJpMhKSlJb70QAvPnz4dKpYKTkxP69euHM2fOmCdYE6tq35SVlWHu3LkICQmBi4sLVCoVJkyYgKysLPMFbCLVfWYe9OKLL0Imk2Hp0qUmi8+carJvzp07h6FDh0KhUMDNzQ1PPPEEfv/9d9MHa0LV7ZfCwkJMmzYNzZo1g5OTE9q1a4dVq1aZJDYmOxKQl5eHXr16wd7eHt999x3Onj2Ljz/+GI888oi5QzO7hIQErF69GitWrMC5c+ewePFifPjhh1i+fLm5QzOpO3fuoFOnTlixYoXB9YsXL8aSJUuwYsUKHD9+HEqlEuHh4bp546Ssqn1z9+5dnDp1Cm+//TZOnTqFbdu24cKFCxg6dKgZIjWt6j4z5ZKSkvDzzz9DpVKZKDLzq27fXL58Gb1790ZQUBAOHTqE06dP4+2334ajo6OJIzWt6vbLjBkzkJycjMTERJw7dw4zZszA9OnTsWPHjoYPTpDVmzt3rujdu7e5w7BIgwcPFpMnT9ZbNmzYMDFu3DgzRWR+AMT27dt197VarVAqleKDDz7QLSsuLhYKhUKsXr3aDBGaT8V9Y8ixY8cEAHH16lXTBGUBjO2X69evi6ZNm4qMjAzRvHlz8cknn5g8NnMztG+ee+65Rv0dI4Th/dKhQwfx7rvv6i3r2rWrmDdvXoPHwyM7ErBz5048/vjjGDlyJHx8fNClSxd8/vnn5g7LIvTu3RsHDhzAhQsXAACnT5/GkSNHMGjQIDNHZjkyMzORk5ODiIgI3TK5XI6+ffsiLS3NjJFZJrVaDZlM1uiPnGq1WowfPx5z5sxBhw4dzB2OxdBqtfj3v/+NNm3aIDIyEj4+PujRo0eVpwEbi969e2Pnzp24ceMGhBA4ePAgLly4gMjIyAZ/biY7EvDf//4Xq1atQuvWrbF371689NJLePXVV/H111+bOzSzmzt3LsaMGYOgoCDY29ujS5cuiImJwZgxY8wdmsXIyckBAPj6+uot9/X11a2j+4qLi/HGG29g7NixjX6ix4SEBNjZ2eHVV181dygWJTc3F4WFhfjggw8wcOBA7Nu3D3/7298wbNgwpKammjs8s/rnP/+J9u3bo1mzZnBwcMDAgQOxcuVK9O7du8Gfm7OeS4BWq8Xjjz+OhQsXAgC6dOmCM2fOYNWqVZgwYYKZozOvzZs3IzExERs3bkSHDh2Qnp6OmJgYqFQqREdHmzs8iyKTyfTuCyEqLWvMysrKMHr0aGi1WqxcudLc4ZjVyZMnsWzZMpw6dYqfkQrKL3545plnMGPGDABA586dkZaWhtWrV6Nv377mDM+s/vnPf+Knn37Czp070bx5cxw+fBhTp06Fn58fBgwY0KDPzWRHAvz8/NC+fXu9Ze3atcPWrVvNFJHlmDNnDt544w2MHj0aABASEoKrV69i0aJFTHb+P6VSCeD+ER4/Pz/d8tzc3EpHexqrsrIyjBo1CpmZmfj+++8b/VGdH374Abm5uQgICNAt02g0mDVrFpYuXYorV66YLzgz8/b2hp2dncHv5CNHjpgpKvMrKirCm2++ie3bt2Pw4MEAgI4dOyI9PR0fffRRgyc7PI0lAb169cL58+f1ll24cAHNmzc3U0SW4+7du7Cx0f+Y29raNrpLz6sSGBgIpVKJlJQU3bLS0lKkpqYiNDTUjJFZhvJE5+LFi9i/fz+8vLzMHZLZjR8/Hr/++ivS09N1N5VKhTlz5mDv3r3mDs+sHBwc0K1bN34nV1BWVoaysjKzfR/zyI4EzJgxA6GhoVi4cCFGjRqFY8eOYc2aNVizZo25QzO7qKgoLFiwAAEBAejQoQN++eUXLFmyBJMnTzZ3aCZVWFiIS5cu6e5nZmYiPT0dnp6eCAgIQExMDBYuXIjWrVujdevWWLhwIZydnTF27FgzRm0aVe0blUqFESNG4NSpU9i9ezc0Go2ujsnT0xMODg7mCrvBVfeZqZj02dvbQ6lUom3btqYO1eSq2zdz5szBc889hz59+qB///5ITk7Grl27cOjQIfMFbQLV7Ze+fftizpw5cHJyQvPmzZGamoqvv/4aS5YsafjgGvx6LzKJXbt2ieDgYCGXy0VQUJBYs2aNuUOyCPn5+eK1114TAQEBwtHRUbRs2VK89dZboqSkxNyhmdTBgwcFgEq36OhoIcT9y8/j4uKEUqkUcrlc9OnTR/znP/8xb9AmUtW+yczMNLgOgDh48KC5Q29Q1X1mKmpMl57XZN+sXbtWPProo8LR0VF06tRJJCUlmS9gE6luv2RnZ4uJEycKlUolHB0dRdu2bcXHH38stFptg8cmE0KIhk+piIiIiMyDNTtEREQkaUx2iIiISNKY7BAREZGkMdkhIiIiSWOyQ0RERJLGZIeIiIgkjckOERERSRqTHSIyO5lMhqSkJHOHUcmVK1cgk8mQnp5u7lCI6CEw2SGiBpWbm4sXX3wRAQEBkMvlUCqViIyMxNGjR80dGv773/9izJgxUKlUcHR0RLNmzfDMM8/gwoULAAB/f39kZ2cjODjYzJES0cPg3FhE1KCGDx+OsrIyfPXVV2jZsiX++OMPHDhwALdv3zZrXKWlpQgPD0dQUBC2bdsGPz8/XL9+HXv27IFarQZwf5LC8lnhiciKNfiEFETUaOXl5QkA4tChQ1WOAyA+//xz8eyzzwonJyfx6KOPih07duiNOXTokOjWrZtwcHAQSqVSzJ07V5SVlenWa7VakZCQIAIDA4Wjo6Po2LGj2LJli9Hn/OWXXwQAceXKFaNjyufG+uWXX4QQQkRHR1c5T1ZJSYmYM2eOUKlUwtnZWXTv3l3yc2gRWQOexiKiBuPq6gpXV1ckJSWhpKSkyrHx8fEYNWoUfv31VwwaNAjPP/+87ujPjRs3MGjQIHTr1g2nT5/GqlWrsHbtWrz//vu6x8+bNw/r1q3DqlWrcObMGcyYMQPjxo1Damqqwedr0qQJbGxs8O2330Kj0dTo9SxbtgzZ2dm622uvvQYfHx8EBQUBACZNmoQff/wRmzZtwq+//oqRI0di4MCBuHjxYo22T0QNxNzZFhFJ27fffis8PDyEo6OjCA0NFbGxseL06dN6YwCIefPm6e4XFhYKmUwmvvvuOyGEEG+++aZo27at3uzIn376qXB1dRUajUYUFhYKR0dHkZaWprfdKVOmiDFjxhiNbcWKFcLZ2Vm4ubmJ/v37i3fffVdcvnxZt77ikZ0Hbd26VcjlcvHDDz8IIYS4dOmSkMlk4saNG3rjwsLCRGxsbDV7iYgaEo/sEFGDGj58OLKysrBz505ERkbi0KFD6Nq1K9avX683rmPHjrp/u7i4wM3NDbm5uQCAc+fOoWfPnpDJZLoxvXr1QmFhIa5fv46zZ8+iuLgY4eHhuqNJrq6u+Prrr3H58mWjsb3yyivIyclBYmIievbsiS1btqBDhw5ISUmp8jX98ssvmDBhAj799FP07t0bAHDq1CkIIdCmTRu9GFJTU6uMgYgaHguUiajBOTo6Ijw8HOHh4XjnnXfwwgsvIC4uDhMnTtSNsbe313uMTCaDVqsFAAgh9BKd8mUVx/373/9G06ZN9cbJ5fIqY3Nzc8PQoUMxdOhQvP/++4iMjMT777+P8PBwg+NzcnIwdOhQTJkyBVOmTNEt12q1sLW1xcmTJ2Fra6v3GFdX1ypjIKKGxWSHiEyuffv2teqr0759e2zdulUv6UlLS4ObmxuaNm2KRx55BHK5HL///jv69u1b57hkMhmCgoKQlpZmcH1xcTGeeeYZBAUFYcmSJXrrunTpAo1Gg9zcXDz55JN1joGI6h+THSJqMLdu3cLIkSMxefJkdOzYEW5ubjhx4gQWL16MZ555psbbmTp1KpYuXYrp06dj2rRpOH/+POLi4jBz5kzY2NjAzc0Ns2fPxowZM6DVatG7d2/k5+cjLS0Nrq6uiI6OrrTN9PR0xMXFYfz48Wjfvj0cHByQmpqKL7/8EnPnzjUYx4svvohr167hwIEDuHnzpm65p6cn2rRpg+effx4TJkzAxx9/jC5duuDPP//E999/j5CQEAwaNKj2O5CI6od5S4aISMqKi4vFG2+8Ibp27SoUCoVwdnYWbdu2FfPmzRN3797VjQMgtm/frvdYhUIh1q1bp7tfk0vPly1bJtq2bSvs7e1FkyZNRGRkpEhNTTUY282bN8Wrr74qgoODhaurq3BzcxMhISHio48+EhqNRghRuUC5efPmVV56XlpaKt555x3RokULYW9vL5RKpfjb3/4mfv3114ffmURUZzIh/v+JbyIiIiIJ4tVYREREJGlMdoiIiEjSmOwQERGRpDHZISIiIkljskNERESSxmSHiIiIJI3JDhEREUkakx0iIiKSNCY7REREJGlMdoiIiEjSmOwQERGRpDHZISIiIkn7f4P47GNcsTJEAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#Relation between Shoe size and IQ Score - > no correlation\n", + "\n", + "plt.xlabel('Shoe Size') \n", + "plt.ylabel('IQ Score') \n", + "plt.title('Relation between Shoe Size and IQ Score') \n", + "\n", + "plt.scatter(students['Shoe_Size'] , students['IQ_Score']) \n" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "id": "49e8f9a0-c74f-4386-8bcf-4907cdc6b41f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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8eKLLyInJ6fM1wghIJPJSl0eHx8PlUqlf2RmZlq62URERGQn7D7Y8fDwQMOGDfHss89i9erVqFmzJlavXg0AUCgUePDgAe7cuWPwmpycHMjl8lLX6erqCm9vb4MHERERSZPdBzuPE0JArVYDANq2bQtnZ2ekpKTol2dlZeHMmTOIiIiwVROJiIjIjtS05cbz8/Nx6dIl/fOMjAycOHECfn5+8Pf3x9y5czFgwAAEBgbir7/+wvLly3Ht2jW88MILAAAfHx+MHTsW06ZNg7+/P/z8/DB9+nS0aNECPXr0sNVuERERkR2xabBz9OhRREZG6p9PnToVABAbG4sVK1bg/PnzWLduHf7880/4+/vj6aefxt69e9G8eXP9az755BPUrFkTL774IgoLC9G9e3esXbsWTk5OVb4/REREZH/sZpwdW+I4O0RERI5HcuPsEBEREVUEgx0iIiKSNAY7REREJGkMdoiIiEjSGOwQERGRpDHYISIiIkljsENERESSxmCHiIiIJI3BDhEREUkagx0iIiKSNAY7REREJGkMdoiIiEjSGOwQERGRpDHYISIiIkljsENERESSxmCHiIiIJI3BDhEREUkagx0iIiKSNAY7REREJGkMdoiIiEjSGOwQERGRpDHYISIiIkljsENERESSxmCHiIiIJI3BDhEREUkagx0iIiKSNAY7REREJGkMdoiIiEjSGOwQERGRpDHYISIiIkljsENERESSxmCHiIiIJI3BDhEREUkagx0iIiKSNJsGO3v27EH//v2hVCohk8mwadMm/bKioiLMmjULLVq0gIeHB5RKJUaOHIkbN24YrEOtVuP1119HQEAAPDw8MGDAAFy7dq2K94SIiIjslU2DnYKCArRq1QpLly4tsezevXs4fvw43nnnHRw/fhxJSUn4448/MGDAAIN6cXFxSE5OxoYNG7Bv3z7k5+cjOjoaGo2mqnaDiIiI7JhMCCFs3QgAkMlkSE5OxqBBg0qtk56ejmeeeQZXrlxBSEgIVCoV6tSpg/Xr12Po0KEAgBs3biA4OBi//voroqKiTNp2bm4ufHx8oFKp4O3tbYndISIiIisz9ffboXJ2VCoVZDIZateuDQA4duwYioqK0KtXL30dpVKJ8PBwHDhwoNT1qNVq5ObmGjyIiIhImhwm2Ll//z7efPNNjBgxQh+9ZWdnw8XFBb6+vgZ1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aJH47bffxJUrV4QQQnzwwQfCx8dHJCUlidOnT4vhw4eLwMBAkZuba+OWV72y+iovL09MmzZNHDhwQGRkZIjdu3eLDh06iHr16lXLvpowYYLw8fERqampIisrS/+4d++evg6PLa3y+orH1t/i4+PFnj17REZGhjh16pR46623RI0aNcT27duFEDymHldWf9n6uGKwYwVDhw4VgYGBwtnZWSiVShETEyPOnj1r62bZhd27dwsAJR6xsbFCCO0twgkJCUKhUAhXV1fRuXNncfr0ads22kbK6qt79+6JXr16iTp16ghnZ2cREhIiYmNjxdWrV23dbJsw1k8AxJo1a/R1eGxplddXPLb+NmbMGFG/fn3h4uIi6tSpI7p3764PdITgMfW4svrL1seVTAghrH/+iIiIiMg2mLNDREREksZgh4iIiCSNwQ4RERFJGoMdIiIikjQGO0RERCRpDHaIiIhI0hjsEBERkaQx2CEiq5HJZNi0aVOpy1NTUyGTyXD37l0AwNq1a1G7dm398tmzZ+Opp57SPx81ahQGDRpklbaa4/F2EZF9Y7BDRBWSnZ2N119/HU888QRcXV0RHByM/v37Y+fOnSavIyIiAllZWfDx8TGp/pIlS7B27doKttg0MpmszMeoUaMwffp0s/aTiGyrpq0bQESO5/Lly3juuedQu3ZtLFy4EC1btkRRURG2bduGSZMm4fz58yatx8XFRT97tClMDYoqIysrS///77//Hu+++y4uXLigL3N3d4enpyc8PT2t3hYisgye2SEis02cOBEymQxHjhzBkCFD0LhxYzRv3hxTp07FoUOHDOr++eefeP7551GrVi00atQIP/30k37Z45exyvP4ZayuXbtiypQpmDlzJvz8/KBQKDB79myD15w/fx4dO3aEm5sbnnzySezYsaPMy2sKhUL/8PHxgUwmK1FW2uW1efPmQS6Xo3bt2khMTMTDhw8xY8YM+Pn5ISgoCF9++aXBtq5fv46hQ4fC19cX/v7+GDhwIC5fvmxSXxCR6RjsEJFZbt++ja1bt2LSpEnw8PAosfzRnBsASExMxIsvvohTp06hb9++eOmll3D79m2LtWfdunXw8PDA4cOHsXDhQsyZMwcpKSkAgOLiYgwaNAi1atXC4cOHsXLlSvzrX/+y2LYftWvXLty4cQN79uzBokWLMHv2bERHR8PX1xeHDx/Ga6+9htdeew2ZmZkAgHv37iEyMhKenp7Ys2cP9u3bB09PT/Tu3RsPHjywShuJqisGO0RklkuXLkEIgaZNm5pUf9SoURg+fDgaNmyIefPmoaCgAEeOHLFYe1q2bImEhAQ0atQII0eORLt27fT5NNu3b8d///tffPXVV2jVqhU6duyIuXPnWmzbj/Lz88Onn36KJk2aYMyYMWjSpAnu3buHt956C40aNUJ8fDxcXFywf/9+AMCGDRtQo0YNrFq1Ci1atECzZs2wZs0aXL16FampqVZpI1F1xZwdIjKLEAKANpHXFC1bttT/38PDA15eXsjJybFYex5dPwAEBgbq13/hwgUEBwcb5AU988wzFtv2o5o3b44aNf7++1EulyM8PFz/3MnJCf7+/vq2HTt2DJcuXYKXl5fBeu7fv4///ve/VmkjUXXFYIeIzNKoUSPIZDKcO3fOpNvAnZ2dDZ7LZDIUFxdbrD1lrV8IYXJQZo12lNW24uJitG3bFt98802JddWpU8d6DSWqhngZi4jM4ufnh6ioKCxbtgwFBQUllpuabFwVmjZtiqtXr+LmzZv6svT0dBu26G9t2rTBxYsXUbduXTRs2NDgURV3nRFVJwx2iMhsy5cvh0ajwTPPPIONGzfi4sWLOHfuHD799FN06NDB1s3T69mzJxo0aIDY2FicOnUK+/fv1ycoV9UZn9K89NJLCAgIwMCBA7F3715kZGQgLS0Nb7zxBq5du2bTthFJDYMdIjJbWFgYjh8/jsjISEybNg3h4eHo2bMndu7cic8//9zWzdNzcnLCpk2bkJ+fj6effhrjxo3D22+/DQBwc3Ozadtq1aqFPXv2ICQkBDExMWjWrBnGjBmDwsJCeHt727RtRFIjE7psQyKiamD//v3o2LEjLl26hAYNGti6OURUBRjsEJGkJScnw9PTE40aNcKlS5fwxhtvwNfXF/v27bN104ioivBuLCKStLy8PMycOROZmZkICAhAjx498PHHH9u6WURUhXhmh4iIiCSNCcpEREQkaQx2iIiISNIY7BAREZGkMdghIiIiSWOwQ0RERJLGYIeIiIgkjcEOERERSRqDHSIiIpI0BjtEREQkaf8PkYWOlTTVZF0AAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#Relation between Chilling hour and IQ Score - > negative correlation\n", + "plt.xlabel('Chilling Time') \n", + "plt.ylabel('IQ Score') \n", + "plt.title('Relation between Chilling hours and IQ Score') \n", + "\n", + "plt.scatter(students['Chilling_Hours'] , students['IQ_Score'],marker='o',color='red') " + ] + }, + { + "cell_type": "markdown", + "id": "74c839e1-0274-4ec5-aa5c-589ccf0afe1e", + "metadata": {}, + "source": [ + "# Histogram" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "id": "b1d1b43e-6cf9-4b27-abbb-72ac5577395d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0, 0.5, 'Frequency of Students')" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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HwAAwA2ZLjPXNGjQQA0aNHBnFgAAANNcKjMjR450+QWTkpJuOgwAAIBZLpWZPXv2OC3v2rVLxcXFaty4sSTp8OHD8vPzU6tWrdyfEAAA4AZcKjPr1693/HtSUpLCwsK0YMECVatWTZJ09uxZDRw4UA888IBnUgIAAJTC9N1Ms2bNUmJioqPISFK1atU0depUzZo1y63hAAAAymK6zOTl5em3334rsT47O1vnz593SygAAABXmb6bqWvXrho4cKBmzZqle++9V5K0detWjRkzRt26dXN7QECSMjIylJOT4+0YphQVFSkoKMjbMUyJiIhQTEyMt2MAgCmmy8zcuXM1evRo9enTR5cvX776Iv7+Gjx4sGbOnOn2gEBGRobiGzdWQWGht6OY4iep2NshTAqpWFHphw5RaABYiukyExISojlz5mjmzJk6evSoDMNQw4YNFRoa6ol8gHJyclRQWKhFkuK9HcZF30qaKFkqc7qkPoWFysnJocwAsJSb/tC80NBQ3X777e7MAtxQvKS7vB3CRen/908rZQYAqzJdZhISEmSz2Urdvm7dur8UCAAAwAzTZeaOO+5wWr58+bLS0tJ04MAB9e/f3125AAAAXGK6zLz77rvXXT958mTl5+f/5UAAAABmmP6cmdL06dNHn3zyibteDgAAwCVuKzM//PCDKlas6K6XAwAAcInp00x//mA8wzCUlZWlnTt3auLEiW4LBgAA4ArTZaZy5cpOdzNVqFBBjRs31pQpU9ShQwe3hgMAACiL6TIzf/58D8QAAAC4Oaavmalfv75Onz5dYv25c+dUv359t4QCAABwleky88svv6i4uOQ3zhQVFenkyZNuCQUAAOAql08zff31145/X7VqlapUqeJYLi4u1tq1a1WvXj23hgMAACiLy2XmqaeekiTZbLYSn/QbEBCgevXqadasWW4NBwAAUBaXy4zdbpckxcbGaseOHYqIiPBYKAAAAFeZvpvp2LFjnsgBAABwU1y+AHjbtm1asWKF07qFCxcqNjZWNWvW1AsvvKCioiK3BwQAALgRl8vM5MmTtW/fPsfy/v37NXjwYLVr107jxo3TN998o8TERI+EBAAAKI3LZSYtLU2PPPKIY3np0qW655579M9//lMjR47UP/7xD3322WceCQkAAFAal8vM2bNnVatWLcfyhg0b1LFjR8dy69atlZmZ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O8CNXLp0Sbt27dK4ceOc1nfo0EHff//9dZ9TVFSkoqIix3Jubq4kKS8vz+358vPzJUm7JOW7/dU9I/3//klmzyLzrUHmW+PQ//1z165djv/vWUGFChVkt9u9HcNlhw5d/Ulb8XcjPz/f7X/OXns9wzDK3tkox06ePGlIMrZs2eK0ftq0aUajRo2u+5xJkyYZknjw4MGDBw8ePvDIzMwssy+U6yMz19hsNqdlwzBKrLtm/PjxGjlypGPZbrfrzJkzCg8PL/U5NysvL0/R0dHKzMxU5cqV3fra5RHz+jbm9W3M69t8cV7DMHT+/HlFRUWVuW+5LjMRERHy8/PTqVOnnNZnZ2erVq1a131OUFCQgoKCnNZVrVrVUxElSZUrV/aZXx5XMK9vY17fxry+zdfmrVKlikv7lesLgAMDA9WqVSulpqY6rU9NTVWbNm28lAoAAJQn5frIjCSNHDlSffv21d1336377rtPH330kTIyMvTSSy95OxoAACgHyn2Z6dGjh06fPq0pU6YoKytLzZs317fffqu6det6O5qCgoI0adKkEqe1fBXz+jbm9W3M69v+0+b9M5thuHLPEwAAQPlUrq+ZAQAAKAtlBgAAWBplBgAAWBplBgAAWBplpgz16tWTzWYr8Rg6dKikq59QOHnyZEVFRSk4OFgPP/ywDh486OXUN+/KlSt6/fXXFRsbq+DgYNWvX19Tpkxx+n4TX5v5/PnzGj58uOrWravg4GC1adNGO3bscGy38rwbN25U586dFRUVJZvNpq+++sppuyuzFRUV6ZVXXlFERIRCQ0P15JNP6sSJE7dwCteVNe8XX3yhRx99VBEREbLZbEpLSyvxGr4y7+XLlzV27Fi1aNFCoaGhioqKUr9+/fTrr786vYaV5pXK/m88efJkNWnSRKGhoapWrZratWunbdu2Oe1jpZnLmvePXnzxRdlsNs2ePdtpvZXmvVmUmTLs2LFDWVlZjse1D/B75plnJElvv/22kpKSlJycrB07digyMlLt27fX+fPnvRn7ps2YMUNz585VcnKy0tPT9fbbb2vmzJl6//33Hfv42szPPfecUlNT9a9//Uv79+9Xhw4d1K5dO508eVKStee9cOGCWrZsqeTk5Otud2W24cOH68svv9TSpUu1efNm5efn64knnlBxcfGtGsNlZc174cIF3X///XrrrbdKfQ1fmbegoEC7d+/WxIkTtXv3bn3xxRc6fPiwnnzySaf9rDSvVPZ/40aNGik5OVn79+/X5s2bVa9ePXXo0EG///67Yx8rzVzWvNd89dVX2rZt23U/+t9K8960v/RNkP+Bhg0bZjRo0MCw2+2G3W43IiMjjbfeesuxvbCw0KhSpYoxd+5cL6a8eY8//rgxaNAgp3XdunUz+vTpYxiG4XMzFxQUGH5+fsby5cud1rds2dKYMGGCT80ryfjyyy8dy67Mdu7cOSMgIMBYunSpY5+TJ08aFSpUMFauXHnLst+MP8/7R8eOHTMkGXv27HFa76vzXrN9+3ZDknH8+HHDMKw9r2G4NnNubq4hyVizZo1hGNaeubR5T5w4YdSpU8c4cOCAUbduXePdd991bLPyvGZwZMaES5cuadGiRRo0aJBsNpuOHTumU6dOqUOHDo59goKC9NBDD+n777/3YtKb17ZtW61du1aHDx+WJO3du1ebN2/WY489Jkk+N/OVK1dUXFysihUrOq0PDg7W5s2bfW7eP3Jltl27duny5ctO+0RFRal58+aWn/96fH3e3Nxc2Ww2x/fV+fq8ly5d0kcffaQqVaqoZcuWknxvZrvdrr59+2rMmDFq1qxZie2+Nm9pyv0nAJcnX331lc6dO6cBAwZIkuMLMP/8pZe1atXS8ePHb3U8txg7dqxyc3PVpEkT+fn5qbi4WNOmTdOzzz4ryfdmDgsL03333ae///3vio+PV61atbRkyRJt27ZNcXFxPjfvH7ky26lTpxQYGKhq1aqV2OfPXwDrC3x53sLCQo0bN069evVyfBGhr867fPly9ezZUwUFBapdu7ZSU1MVEREhyfdmnjFjhvz9/fXqq69ed7uvzVsajsyYMG/ePHXq1KnEOUmbzea0bBhGiXVWsWzZMi1atEiLFy/W7t27tWDBAr3zzjtasGCB036+NPO//vUvGYahOnXqKCgoSP/4xz/Uq1cv+fn5OfbxpXn/7GZm86X5XWH1eS9fvqyePXvKbrdrzpw5Ze5v9XkTEhKUlpam77//Xh07dlT37t2VnZ19w+dYceZdu3bpvffe0/z5801nt+K8N0KZcdHx48e1Zs0aPffcc451kZGRklSi3WZnZ5f4265VjBkzRuPGjVPPnj3VokUL9e3bVyNGjFBiYqIk35y5QYMG2rBhg/Lz85WZmant27fr8uXLio2N9cl5r3FltsjISF26dElnz54tdR9f4ovzXr58Wd27d9exY8eUmprqOCoj+ea8khQaGqqGDRvq3nvv1bx58+Tv76958+ZJ8q2ZN23apOzsbMXExMjf31/+/v46fvy4Ro0apXr16knyrXlvhDLjopSUFNWsWVOPP/64Y921P+yu3eEkXT1Hu2HDBrVp08YbMf+ygoICVajg/Gvh5+fnuDXbF2e+JjQ0VLVr19bZs2e1atUqdenSxafndWW2Vq1aKSAgwGmfrKwsHThwwPLzX4+vzXutyBw5ckRr1qxReHi403Zfm7c0hmGoqKhIkm/N3LdvX+3bt09paWmOR1RUlMaMGaNVq1ZJ8q15b4RrZlxgt9uVkpKi/v37y9/////IbDabhg8frunTpysuLk5xcXGaPn26QkJC1KtXLy8mvnmdO3fWtGnTFBMTo2bNmmnPnj1KSkrSoEGDJPnmzKtWrZJhGGrcuLF++uknjRkzRo0bN9bAgQMtP29+fr5++uknx/KxY8eUlpam6tWrKyYmpszZqlSposGDB2vUqFEKDw9X9erVNXr0aLVo0ULt2rXz1lilKmveM2fOKCMjw/FZK4cOHZJ09W+vkZGRPjVvVFSUnn76ae3evVvLly9XcXGx4yhc9erVFRgYaLl5pRvPHB4ermnTpunJJ59U7dq1dfr0ac2ZM0cnTpxwfJyG1WYu63f6zwU1ICBAkZGRaty4sSTrzXvTvHMTlbWsWrXKkGQcOnSoxDa73W5MmjTJiIyMNIKCgowHH3zQ2L9/vxdSukdeXp4xbNgwIyYmxqhYsaJRv359Y8KECUZRUZFjH1+bedmyZUb9+vWNwMBAIzIy0hg6dKhx7tw5x3Yrz7t+/XpDUolH//79DcNwbbaLFy8aL7/8slG9enUjODjYeOKJJ4yMjAwvTFO2suZNSUm57vZJkyY5XsNX5r12+/n1HuvXr3e8hpXmNYwbz3zx4kWja9euRlRUlBEYGGjUrl3bePLJJ43t27c7vYaVZi7rd/rP/nxrtmFYa96bZTMMw/BoWwIAAPAgrpkBAACWRpkBAACWRpkBAACWRpkBAACWRpkBAACWRpkBAACWRpkBAACWRpkBAACWRpkBAACWRpkB4FYDBgzQU0895bQuMzNTgwcPVlRUlAIDA1W3bl0NGzZMp0+fvuFrFRcXKzExUU2aNFFwcLCqV6+ue++9VykpKR6cAIDV8EWTADzq559/1n333adGjRppyZIlio2N1cGDBzVmzBitWLFCW7duVfXq1a/73MmTJ+ujjz5ScnKy7r77buXl5Wnnzp06e/asx/JeunRJgYGBHnt9AO7HkRkAHjV06FAFBgZq9erVeuihhxQTE6NOnTppzZo1OnnypCZMmFDqc7/55hsNGTJEzzzzjGJjY9WyZUsNHjxYI0eOdOxjt9s1Y8YMNWzYUEFBQYqJidG0adMc2/fv36+//e1vCg4OVnh4uF544QXl5+c7tl87kpSYmKioqCg1atRIknTy5En16NFD1apVU3h4uLp06aJffvnF/T8gAH8ZZQaAx5w5c0arVq3SkCFDFBwc7LQtMjJSvXv31rJly1Ta991GRkZq3bp1+v3330t9j/Hjx2vGjBmaOHGifvzxRy1evFi1atWSJBUUFKhjx46qVq2aduzYoc8//1xr1qzRyy+/7PQaa9euVXp6ulJTU7V8+XIVFBQoISFBlSpV0saNG7V582ZVqlRJHTt21KVLl/7iTwWAu3GaCYDHHDlyRIZhKD4+/rrb4+PjdfbsWf3++++qWbNmie1JSUl6+umnFRkZqWbNmqlNmzbq0qWLOnXqJEk6f/683nvvPSUnJ6t///6SpAYNGqht27aSpE8//VQXL17UwoULFRoaKklKTk5W586dNWPGDEfpCQ0N1ccff+w4vfTJJ5+oQoUK+vjjj2Wz2SRJKSkpqlq1qr777jt16NDBjT8lAH8VR2YAeM21IzKlXaPStGlTHThwQFu3btXAgQP122+/qXPnznruueckSenp6SoqKtIjjzxy3eenp6erZcuWjiIjSffff7/sdrsOHTrkWNeiRQunDLt27dJPP/2ksLAwVapUSZUqVVL16tVVWFioo0eP/uW5AbgXR2YAeEzDhg1ls9n0448/lrjDSZL+93//VzVq1FDVqlVLfY0KFSqodevWat26tUaMGKFFixapb9++mjBhQolTV39mGIbjyMqf/XH9H8uOdPU6nFatWunTTz8t8bwaNWrc8D0B3HocmQHgMeHh4Wrfvr3mzJmjixcvOm07deqUPv30Uw0YMMDUazZt2lSSdOHCBcXFxSk4OFhr164tdd+0tDRduHDBsW7Lli2qUKGC40Lf67nrrrt05MgR1axZUw0bNnR6VKlSxVReAJ5HmQHgUcnJySoqKtKjjz6qjRs3KjMzUytXrlT79u3VqFEjvfHGG6U+9+mnn9a7776rbdu26fjx4/ruu+80dOhQNWrUSE2aNFHFihU1duxYvfbaa1q4cKGOHj2qrVu3at68eZKk3r17q2LFiurfv78OHDig9evX65VXXlHfvn0d18tcT+/evRUREaEuXbpo06ZNOnbsmDZs2KBhw4bpxIkTbv8ZAfhrKDMAPCouLk47duxQ/fr11b17d9WtW1edOnVSo0aNtGXLFlWqVKnU5z766KP65ptv1LlzZzVq1Ej9+/dXkyZNtHr1avn7Xz1LPnHiRI0aNUpvvPGG4uPj1aNHD2VnZ0uSQkJCtGrVKp05c0atW7fW008/rUceeUTJyck3zBwSEqKNGzcqJiZG3bp1U3x8vAYNGqSLFy+qcuXK7vvhAHALm1HaPZEA4CGTJk1SUlKSVq9erfvuu8/bcQBYHGUGgFekpKQoNzdXr776qipU4CAxgJtHmQEAAJbGX4cAAIClUWYAAIClUWYAAIClUWYAAIClUWYAAIClUWYAAIClUWYAAIClUWYAAIClUWYAAICl/T/P4trBlVz3xQAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#based on iq \n", + "\n", + "plt.hist(students['IQ_Score'],color='Red',edgecolor='black')\n", + "plt.xlabel('IQ Score') \n", + "plt.ylabel('Frequency of Students') " + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "id": "cf5dd9b4-9c1c-4dc0-9d4a-d207e460e475", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0, 0.5, 'Frequency of Students')" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAioAAAGwCAYAAACHJU4LAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjAsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvlHJYcgAAAAlwSFlzAAAPYQAAD2EBqD+naQAAMGRJREFUeJzt3Xl8T3e+x/H3j2wSsdSaEBFb7FrLENRalGqVLrRFkJrOrdYS2jIdtYxOLEPNXNfSjga3rbZqubqgaqu9lqS0zQ1jiyWYKCLc/ERy7h+9fre/JsiJ33L4vZ6Px+9R55zv+X4/5+SQd8/2sxmGYQgAAMCCinm7AAAAgFshqAAAAMsiqAAAAMsiqAAAAMsiqAAAAMsiqAAAAMsiqAAAAMvy83YBdyMvL09nzpxRaGiobDabt8sBAACFYBiGrly5ovDwcBUrdvtzJvd0UDlz5owiIiK8XQYAACiCkydPqmrVqrdtc08HldDQUEm/bGipUqW8XA0AACiMzMxMRUREOH6P3849HVRuXu4pVaoUQQUAgHtMYW7b4GZaAABgWQQVAABgWQQVAABgWQQVAABgWQQVAABgWQQVAABgWQQVAABgWQQVAABgWQQVAABgWQQVAABgWQQVAABgWV4PKqdPn1b//v1Vrlw5BQcH68EHH9S+ffu8XRYAALAAr34p4cWLF9WmTRt17NhRa9asUcWKFXXkyBGVKVPGm2UBAACL8GpQmTZtmiIiIpSYmOiYV716de8VBAAALMWrQWX16tXq1q2bnnnmGW3ZskVVqlTRyy+/rKFDhxbY3m63y263O6YzMzPdWl9aWpoyMjLcOkZBypcvr2rVqnl8XAAArMarQeXo0aOaN2+e4uPj9cc//lHfffedhg8frsDAQA0cODBf+4SEBE2aNMkjtaWlpaledLSuZWd7ZLxfCw4KUkpqKmEFAODzbIZhGN4aPCAgQM2bN9eOHTsc84YPH649e/Zo586d+doXdEYlIiJCly9fVqlSpVxa2/79+9WsWTN9IKmeS3u+vRRJ/SXt27dPTZs29eDIAAB4RmZmpkqXLl2o399ePaMSFham+vXrO82rV6+eli9fXmD7wMBABQYGeqK0/69HEnEBAADv8OrjyW3atFFqaqrTvEOHDikyMtJLFQEAACvxalAZNWqUdu3apb/85S/65z//qY8++kjvvvuuhg0b5s2yAACARXg1qLRo0UIrV67U0qVL1bBhQ/35z3/W7Nmz9cILL3izLAAAYBFevUdFknr27KmePXt6uwwAAGBBXn+FPgAAwK0QVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGURVAAAgGV5NahMnDhRNpvN6VO5cmVvlgQAACzEz9sFNGjQQN98841junjx4l6sBgAAWInXg4qfn1+hz6LY7XbZ7XbHdGZmprvKAgAAFuD1e1QOHz6s8PBwRUVFqV+/fjp69Ogt2yYkJKh06dKOT0REhAcrBQAAnubVoNKyZUstWbJE69at03vvvaezZ8+qdevWunDhQoHtx40bp8uXLzs+J0+e9HDFAADAk7x66ad79+6OPzdq1EgxMTGqWbOmFi9erPj4+HztAwMDFRgY6MkSAQCAF3n90s+vhYSEqFGjRjp8+LC3SwEAABZgqaBit9uVkpKisLAwb5cCAAAswKtBZcyYMdqyZYuOHTum3bt36+mnn1ZmZqZiY2O9WRYAALAIr96jcurUKT333HPKyMhQhQoV1KpVK+3atUuRkZHeLAsAAFiEV4PKxx9/7M3hAQCAxVnqHhUAAIBfI6gAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLIqgAAADLcklQuXTpkiu6AQAAcGI6qEybNk2ffPKJY/rZZ59VuXLlVKVKFX3//fcuLQ4AAPg200FlwYIFioiIkCStX79e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OAAA4NtM36Py9ddfa926dapatarT/Nq1a+vEiRMuKwwAAMD0GZWrV686nUm5KSMjQ4GBgS4pCgAAQCpCUGnXrp2WLFnimLbZbMrLy9OMGTPUsWNHU30lJCSoRYsWCg0NVcWKFfXkk08qNTXVbEkAAOA+ZfrSz4wZM9ShQwft3btX169f1+uvv64ff/xRP//8s7Zv326qry1btmjYsGFq0aKFbty4oTfffFNdu3bVTz/9xOPOAADAfFCpX7++Dhw4oHnz5ql48eK6evWq+vTpo2HDhiksLMxUX7+9+TYxMVEVK1bUvn371K5du3zt7Xa77Ha7YzozM9Ns+YCTlJQUj49pt9s9fpnUG9vp7fHZz/ffePBNpoJKTk6OunbtqgULFmjSpEkuL+by5cuSpAceeKDA5QkJCW4ZF74nXb9c9+zfv7/Hxy4uKdfjo3oH+9kzvLmfAXczFVT8/f31ww8/yGazubwQwzAUHx+vtm3bqmHDhgW2GTdunOLj4x3TmZmZioiIcHktuP9dkpQn6QNJ9Tw47leSxntxXE+7JPazJ1ySd/cz4E6mL/0MHDhQCxcu1NSpU11ayCuvvKIDBw5o27Ztt2wTGBjIk0VwqXqSmnpwvJsnyr01rrewnz3D17YXvsF0ULl+/br+8Y9/aP369WrevHm+m15nzZpluohXX31Vq1ev1rfffpvv/SwAAMB3mQ4qP/zwg5o2/SWzHzp0yGmZ2UtChmHo1Vdf1cqVK7V582ZFRUWZLQcAANzHCh1Ujh49qqioKG3atMllgw8bNkwfffSR/uu//kuhoaE6e/asJKl06dIqUaKEy8YBAAD3pkK/8K127dr617/+5Zju27evzp07d1eDz5s3T5cvX1aHDh0UFhbm+HzyySd31S8AALg/FDqoGIbhNP3VV1/p6tWrdzW4YRgFfgYNGnRX/QIAgPuD6VfoAwAAeEqhg4rNZst3s6w73qcCAABwU6Fvpr15Sebme0yys7P1hz/8Id/jyStWrHBthQAAwGcVOqjExsY6TfOqZgAA4G6FDiqJiYnurAMAACAfbqYFAACWRVABAACWRVABAACWRVABAACWRVABAACWRVABAACWRVABAACWRVABAACWRVABAACWRVABAACWRVABAACWRVABAACWRVABAACWRVABAACWRVABAACWRVABAACWRVABAACWRVABAACW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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# based on study hour \n", + "\n", + "plt.hist(students['Study_Hour'],bins=15,color='Red',edgecolor='black')\n", + "plt.xlabel('Study Hours') \n", + "plt.ylabel('Frequency of Students') \n" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "id": "f29302ef-182c-4546-9545-8027ad77ba1c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0, 0.5, 'Frequency of Students')" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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Cn3pJy0tTX/5y188y8uWLVOrVq309ttvS5JiY2M1fvx4TZgwodA7f/fddwufFAAABJxCn1G5cOGCKleu7FnevHmzHnjgAc9yy5YtlZmZ6dt0AAAgoBW6qFSuXNkzkfbatWvavXu314PZLl++rJCQEN8nBAAAAavQReWBBx7Q6NGj9cUXX2jMmDEqXbq02rZt63l/7969qlWrll9CAgCAwFToOSqTJ09W79691b59e0VERGjx4sUKDQ31vP/Xv/5VXbt29UtIAAAQmApdVCpVqqQvvvhCly5dUkREhIKCgrze//DDDxUREeHzgAAAIHDZfuDbD7/j54fKly//q8MAAAD8UKHnqAAAABQ3igoAADAWRQUAABirUEWlWbNmunDhgiRp0qRJunLlil9DAQAASIUsKunp6crNzZUkTZw4UTk5OX4NBQAAIBXyrp+77rpLiYmJatOmjSzL0n/8x3/85K3Ir7/+uk8DAgCAwFWoorJo0SKNHz9en3zyiVwul9asWaPg4IIfdblcFBUAAOAzhSoq9erV07JlyyRJJUqU0Pr16xUdHe3XYAAAALYf+Jafn++PHAAAAAXYLiqSdOTIEc2ePVvp6elyuVxq0KCBhg0bxpcSAgAAn7L9HJVPP/1UDRs21Ndff62mTZuqcePG2rFjhxo1aqR169b5IyMAAAhQts+ojB49Wi+++KKmTp1aYHzUqFHq0qWLz8IBAIDAZvuMSnp6ugYPHlxgfNCgQfrmm298EgoAAEAqQlGpVKmS0tLSCoynpaVxJxAAAPAp25d+hgwZoj/+8Y86evSoWrduLZfLpa1bt2ratGl66aWX/JERAAAEKNtFZdy4cYqMjNTMmTM1ZswYSVJMTIwmTJigF154wecBAQBA4LJdVFwul1588UW9+OKLunz5siQpMjLS58EAAACK9ByVWygoAADAn2xPpgUAACguFBUAAGAsigoAADCW7aLy7bff+iMHAABAAbaLSu3atdWxY0e99957unr1qj8yAQAASCpCUdmzZ4/uvvtuvfTSS6pSpYqeffZZff311/7IBgAAApztotK4cWPNmjVLJ0+eVHJysk6fPq02bdqoUaNGmjVrlr777jt/5AQAAAGoyJNpg4OD1atXL/3973/XtGnTdOTIEY0cOVLVqlVT//79lZWV5cucAAAgABW5qOzatUvPPfecqlatqlmz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9eoll8vlWR44cKAefvhhr+0NHz5cHTp08Czn5uaqf//+ioiIUNWqVTVz5kyv9SdNmqQmTZoUyNW8eXO9/vrrv/r4Lly4oP79+6tcuXIqXbq0unXrpsOHD3venzBhgu666y6vz8yePdtzjNL/H2dSUpJiYmJUt25dSdLcuXNVp04dlSxZUpUrV9ajjz76q/MC+GkUFSAARUREKCIiQitXrpTb7b7tOjt37pQkJScnKysry7NcGC+//LI2btyoFStW6LPPPtOmTZuUkpLieX/QoEH65ptvvLa5d+9epaamauDAgUU7qB8YOHCgdu3apVWrVmn79u2yLEvdu3fX9evXbW1n/fr1Sk9P17p16/TJJ59o165deuGFFzRp0iQdPHhQa9euVbt27X51XgA/jUs/QAAKDg7WokWLNGTIEM2fP1/NmjVT+/bt1bdvXzVt2lSSVKlSJUlS2bJlVaVKlUJvOycnR++++66WLFmiLl26SJIWL16satWqedapVq2a7r//fiUnJ6tly5aSbhai9u3bq2bNmj+7/datW6tECe+/Y/3P//yP5wzJ4cOHtWrVKm3btk2tW7eWJL3//vuKjY3VypUr9dhjjxX6WMLDw/XOO+94LvksX75c4eHheuihhxQZGan4+Hjdfffdhd4eAPs4owIEqEceeUSnTp3SqlWrdP/992vTpk1q1qyZFi1a9Ku2e+TIEV27dk0JCQmesfLly6tevXpe6w0ZMkRLly7V1atXdf36db3//vsaNGjQL27/gw8+UFpamterRYsWnvfT09MVHBysVq1aecYqVKigevXqKT093daxNGnSxGteSpcuXRQfH6+aNWvq6aef1vvvv68rV67Y2iYAeygqQAArWbKkunTpotdff11ffvmlBg4cqPHjx//sZ0qUKCHLsrzGfnhJ5cfv/ZQePXooLCxMK1as0Mcffyy3261HHnnkFz8XGxur2rVre71KlSr1i/u3LEsul6tQx3BLeHi413JkZKR2796tpUuXqmrVqnr99dd155136uLFi7+YG0DRUFQAeDRs2FC5ubme5ZCQEOXl5XmtU6lSJWVlZXmN/fCW4dq1ayskJERfffWVZ+zChQs6dOiQ12eCg4M1YMAAJScnKzk5WX379lXp0qV9cgw3btzQjh07PGPnz5/XoUOH1KBBA88xnD592qus3O6259sJDg5W586dNX36dO3du1fHjh3Thg0bfnVuALfHHBUgAJ0/f16PPfaYBg0apKZNmyoyMlK7du3S9OnT1bNnT8961atX1/r163XvvfcqLCxM5cqV03333acZM2ZoyZIlSkhI0Hvvvaf9+/d75mpERERo8ODBevnll1WhQgVVrlxZY8eOLTCvRJKeeeYZT3nYtm2bT46tTp066tmzp4YMGaIFCxYoMjJSo0eP1h133OE5tg4dOui7777T9OnT9eijj2rt2rVas2aNypQp87Pb/uSTT3T06FG1a9dO5cqV0+rVq5Wfn1/gshYA3+GMChCAIiIi1KpVK7355ptq166dGjdurHHjxmnIkCGaM2eOZ72ZM2dq3bp1io2N9RSR+++/X+PGjdMrr7yili1b6vLly+rfv7/X9mfMmKF27drp3/7t39S5c2e1adNGzZs3L5CjTp06at26terVq+c1p+TXSk5OVvPmzfXQQw8pISFBlmVp9erVCgkJkSQ1aNBAc+fO1X/+53/qzjvv1Ndff62RI0f+4nbLli2r5cuX67777lODBg00f/58LV26VI0aNfJZdgDeXFZhLygDgI9ZlqX69evr2Wef1YgRI5yOA8BAXPoB4IizZ8/qv/7rv3Ty5EklJiY6HQeAoSgqABxRuXJlVaxYUQsXLlS5cuWcjgPAUBQVAI7gqjOAwmAyLQAAMBZFBQAAGIuiAgAAjEVRAQAAxqKoAAAAY1FUAACAsSgqAADAWBQVAABgrP8Fb31eSt4s5doAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.hist(students['Study_Hour'],bins=[1,2,3,4,5,6,7,8],color='Red',edgecolor='black')\n", + "plt.xlabel('Study Hours') \n", + "plt.ylabel('Frequency of Students') " + ] + }, + { + "cell_type": "markdown", + "id": "bbc15675-d8cb-4f14-8daf-eabc6e62a174", + "metadata": {}, + "source": [ + "\n", + "\n", + "# Bar Chart\n" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "id": "1e0dde6f-212a-4d6f-8ff4-820c3fa1d659", + "metadata": {}, + "outputs": [], + "source": [ + "data = {\n", + " 'Student': [ 'B', 'C', 'D', 'E', 'F', 'G', 'H'],\n", + " 'Gender': [ 'Male', 'Female', 'Male', 'Female', 'Male', 'Female', 'Male'],\n", + " 'StudyHours': [ 2, 5, 3, 7, 4, 8, 1],\n", + " 'Attendance': [ 60, 88, 70, 95, 80, 98, 55],\n", + " 'Grade': [ 'Fail', 'Pass', 'Fail', 'Pass', 'Pass', 'Pass', 'Fail']\n", + "}\n", + "\n", + "df = pd.DataFrame(data)" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "id": "59567ea6-83fd-46cd-bdf3-a8039ee9768a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentGenderStudyHoursAttendanceGrade
0AFemale692Pass
1BMale260Fail
2CFemale588Pass
3DMale370Fail
4EFemale795Pass
5FMale480Pass
6GFemale898Pass
7HMale155Fail
\n", + "
" + ], + "text/plain": [ + " Student Gender StudyHours Attendance Grade\n", + "0 A Female 6 92 Pass\n", + "1 B Male 2 60 Fail\n", + "2 C Female 5 88 Pass\n", + "3 D Male 3 70 Fail\n", + "4 E Female 7 95 Pass\n", + "5 F Male 4 80 Pass\n", + "6 G Female 8 98 Pass\n", + "7 H Male 1 55 Fail" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "35714968-d579-4062-85a7-9181206350a4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([3, 4])" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# gender wise \n", + "\n", + "gender_group = df.groupby('Gender').size() \n", + "\n", + "gender_group.index\n", + "gender_group.values\n" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "id": "5297865a-fb32-4726-bbe2-502f7a81c7dd", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0.5, 1.0, 'Bar Chart of Gender among students')" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjcAAAHFCAYAAAAOmtghAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjAsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvlHJYcgAAAAlwSFlzAAAPYQAAD2EBqD+naQAAP6JJREFUeJzt3XlclWX+//H3kd0FVFQ8KAhmEW6p2CROblGYpFk502K5ZMuYpiWZDbYobbSYaZNruWSLOg1mueSSijWJvwTRslFLR4MUMjXBjaPA9fujL2c6gQsIHLh7PR+P+5HXdV/3fX/um3M47+7lYDPGGAEAAFhELXcXAAAAUJEINwAAwFIINwAAwFIINwAAwFIINwAAwFIINwAAwFIINwAAwFIINwAAwFIINwAAwFIIN6hS8+fPl81mc5kaN26snj17avny5VVez7Jly9SvXz8FBQXJ29tbDRs2VExMjN5//32dPXtWkrR//37ZbDZNmjSpSmratGmTJk6cqGPHjlX4uhcvXqw2bdrIz89PNptN27ZtO+/4ffv2afTo0YqMjFSdOnXk6+ursLAw3XPPPdqwYYPc9QXnPXv2VM+ePd2ybfzPwYMHNXHixAu+jsqj+H03f/78Cl/3b02fPr3St4GqR7iBW8ybN0+pqanatGmTZs+eLQ8PD/Xr10/Lli2rku0bY3Tvvffq5ptvVlFRkSZPnqzPPvtM77zzjq666iqNGDFC06dPr5Jafm/Tpk1KTEys8HDz888/a9CgQbrsssu0atUqpaam6oorrjjn+E8++UTt2rXTJ598oiFDhuijjz7S6tWr9fTTT+vIkSO67rrrtH79+gqtETXLwYMHlZiYWCnhpqoQbqzJ090F4I+pbdu26ty5s7N94403qkGDBlq4cKH69etXIds4ffq0/Pz8Sp336quvav78+UpMTNQzzzzjMq9fv34aN26c9uzZUyF1XKzTp0/L19e30tb/3Xff6ezZs7rnnnvUo0eP847du3ev7rrrLrVp00afffaZ/P39nfN69Oih++67TykpKWrQoEGl1VtVjDHKz88/52sFQM3DmRtUC76+vvL29paXl5dLf2Jioq655ho1bNhQ/v7+6tSpk+bMmVPickhYWJj69u2rJUuWqGPHjvL19VViYmKp2zp79qxefvllXXnllXr66adLHdO0aVNde+21JfonT56s8PBw1a1bV9HR0dq8ebPL/LS0NN15550KCwuTn5+fwsLCdNddd+mHH35wGVd8eW7NmjUaNmyYGjdurNq1ayshIUGPP/64JCk8PNx56S4lJeW8x++TTz5RdHS0ateurXr16umGG25Qamqqc/7QoUOd+3PHHXfIZrOd97LO5MmTderUKU2fPt0l2PxWz549ddVVV7n0ff/99xo4cKCaNGkiHx8fRUZGatq0aS5jUlJSZLPZtHDhQj355JMKDg6Wv7+/rr/+eu3evdtlrDFGr7zyilq0aCFfX1916tRJn376aan15OXlaezYsQoPD5e3t7eaNWumRx99VCdPnnQZZ7PZ9PDDD2vmzJmKjIyUj4+P3nnnnXMei8WLFys2NlZ2u11+fn6KjIzU3//+9xLrHTp0qOrWratdu3apd+/eqlOnjux2u1566SVJ0ubNm3XttdeqTp06uuKKK0rd5o4dO9S/f381aNBAvr6+6tChQ4lxZT1+L774ovP4de7cWWvXrr3oy3offvihrrnmGgUEBKh27dpq2bKlhg0b5qzj6quvliTde++9ztfqxIkTJZ370uHQoUMVFhbm0nfw4EHdfvvtqlevngICAnTHHXcoJyen1JrS0tJ08803q2HDhvL19VXHjh31z3/+02VM8ftrw4YNeuihh9SoUSMFBgbqtttu08GDB53jwsLC9O2332rjxo3O+otrKyoq0vPPP6+IiAj5+fmpfv36at++vaZOnXrB44ZqwABVaN68eUaS2bx5szl79qw5c+aMycrKMqNHjza1atUyq1atchk/dOhQM2fOHLN27Vqzdu1a89xzzxk/Pz+TmJjoMq5FixbGbrebli1bmrlz55oNGzaYr776qtQaNm3aZCSZJ5544qJq3rdvn5FkwsLCzI033miWLl1qli5datq1a2caNGhgjh075hz74YcfmmeeecZ89NFHZuPGjWbRokWmR48epnHjxubnn38ucRyaNWtmHnzwQfPpp5+af/3rX2b//v1m1KhRRpJZsmSJSU1NNampqSY3N/ec9b3//vtGkomNjTVLly41ixcvNlFRUcbb29t88cUXxhhj9uzZY6ZNm2YkmRdffNGkpqaab7/99pzrvPzyy43dbr+o41Ps22+/NQEBAaZdu3ZmwYIFZs2aNeaxxx4ztWrVMhMnTnSO27Bhg/N43n333WbFihVm4cKFJjQ01Fx++eWmoKDAOXbChAlGkrnvvvvMp59+ambPnm2aNWtmmjZtanr06OEcd/LkSdOhQwfTqFEjM3nyZPPZZ5+ZqVOnmoCAAHPdddeZoqIi59ji496+fXvzwQcfmPXr15sdO3acc7+ee+458/rrr5sVK1aYlJQUM3PmTBMeHm569erlMm7IkCHG29vbREZGmqlTp5q1a9eae++910gyCQkJ5oorrjBz5swxq1evNn379jWSTFpamnP5Xbt2mXr16pnLLrvMLFiwwKxYscLcddddRpJ5+eWXy3X8EhISjCTz4IMPmlWrVpm33nrLhIaGGrvd7nL8SrNp0yZjs9nMnXfeaVauXGnWr19v5s2bZwYNGmSMMSY3N9f5On7qqaecr9WsrCxjjDE9evQodRtDhgwxLVq0cLZPnTplIiMjTUBAgPnHP/5hVq9ebUaPHm1CQ0ONJDNv3jzn2PXr1xtvb2/TrVs3s3jxYrNq1SozdOjQEuOK62rZsqUZNWqUWb16tXn77bdNgwYNXH5uW7duNS1btjQdO3Z01r9161ZjjDFJSUnGw8PDTJgwwaxbt86sWrXKTJkyxeW1jOqLcIMqVfxL5/eTj4+PmT59+nmXLSwsNGfPnjXPPvusCQwMdPnAatGihfHw8DC7d+++YA2LFi0ykszMmTMvqubicNOuXTuXD46vvvrKSDILFy4857IFBQXmxIkTpk6dOmbq1KnO/uLjMHjw4BLLvPrqq0aS2bdv3wVrKywsNMHBwaZdu3amsLDQ2X/8+HHTpEkT07VrV2df8Yfihx9+eMH1+vr6mi5dupS6vbNnzzqn326zd+/epnnz5iWC2MMPP2x8fX3N0aNHXeqIi4tzGffPf/7TSDKpqanGGGN++eUX4+vra2699VaXcV9++aWR5PLBmZSUZGrVqmW2bNniMvZf//qXkWRWrlzp7JNkAgICnPWURVFRkTl79qzZuHGjkWS2b9/unDdkyBAjySQnJzv7zp49axo3bmwkOT80jTHmyJEjxsPDw8THxzv77rzzTuPj42MyMzNdttmnTx9Tu3ZtZ4i+2ON39OhR4+PjY+644w6XcampqSWOX2kmTZpkJLmE99/bsmVLiWBR7GLDzYwZM4wk8/HHH7uMe+CBB0qs+8orrzQdO3Y0Z8+edRnbt29fY7fbna/H4vfXiBEjXMa98sorRpLJzs529rVp06bUOvv27Ws6dOhwjj1HdcdlKbjFggULtGXLFm3ZskWffvqphgwZopEjR+rNN990Gbd+/Xpdf/31CggIkIeHh7y8vPTMM8/oyJEjOnTokMvY9u3bn/cG2Ut10003ycPDw2V7klwuOZ04cUJPPPGEWrVqJU9PT3l6eqpu3bo6efKkdu7cWWKdAwYMuKSadu/erYMHD2rQoEGqVet/b+e6detqwIAB2rx5s06dOnVJ2/it2267TV5eXs5p9OjRkqT8/HytW7dOt956q2rXrq2CggLnFBcXp/z8/BKX8G6++WaX9u+PZ2pqqvLz83X33Xe7jOvatatatGjh0rd8+XK1bdtWHTp0cNl27969S72sd9111130/UL//e9/NXDgQDVt2tT5Giy+Z+n3P1Obzaa4uDhn29PTU61atZLdblfHjh2d/Q0bNlSTJk1cXjvr169XTEyMQkJCXNY5dOhQnTp1yuUyo3Th47d582Y5HA7dfvvtLuO6dOlS4rJQaYovOd1+++365z//qQMHDlxwmfLYsGGD6tWrV2J/Bg4c6NLes2ePdu3a5Xw9/P41lp2dXeKy3IWO0fn86U9/0vbt2zVixAitXr1aeXl5Zd43uA/hBm4RGRmpzp07q3Pnzrrxxhs1a9YsxcbGaty4cc6nhL766ivFxsZKkt566y19+eWX2rJli5588klJv96A+1t2u/2ith0aGirp18ecyyIwMNCl7ePjU6KOgQMH6s0339T999+v1atX66uvvtKWLVvUuHHjEvWWpeZzOXLkyDnXExwcrKKiIv3yyy9lXm9oaGipHwCvvfaaM5T+vo6CggL94x//cAk/Xl5ezg/7w4cPuyxzoeNZvG9NmzYtUcfv+3766Sd9/fXXJbZdr149GWNKbPtij/uJEyfUrVs3/b//9//0/PPPKyUlRVu2bNGSJUtcai1Wu3btEjeFF3/FwO95e3srPz/f2T5y5Mg5f47F83/rYo9fUFBQiXWW1vd73bt319KlS1VQUKDBgwerefPmatu2rRYuXHjBZcviyJEjpdZT2s9YksaOHVvi5zxixAhJZX+NnU9CQoImTZqkzZs3q0+fPgoMDFRMTIzS0tIufufgNjwthWqjffv2Wr16tb777jv96U9/0qJFi+Tl5aXly5e7fGAsXbq01OVtNttFbadz585q2LChPv74YyUlJV30cheS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KSQkpFz1AQCAmqFc4ea6667TI488ooMHDzr7Dhw4oDFjxigmJqbM6xs1apQ++eQTbdiwQc2bNz/v2KZNmyonJ8el79ChQ/L09FRgYGCJ8QkJCcrNzXVOWVlZZa4PAADUHOW6LPXmm2+qf//+CgsLU0hIiGw2mzIzM9WuXTu99957F70eY4xGjRqljz76SCkpKQoPD7/gMtHR0Vq2bJlL35o1a9S5c+dSzyb5+PjIx8fnomsCAAA1W7nCTUhIiLZu3aq1a9dq165dMsaodevWuv7668u0npEjR+qDDz7Qxx9/rHr16jnPyAQEBMjPz0/Sr2deDhw4oAULFkiShg8frjfffFPx8fF64IEHlJqaqjlz5lzU5SwAAGB9ZbostX79erVu3dp5U+4NN9ygUaNGafTo0br66qvVpk0bffHFFxe9vhkzZig3N1c9e/aU3W53TosXL3aOyc7OVmZmprMdHh6ulStXKiUlRR06dNBzzz2nN954g8fAAQCApDKeuZkyZYoeeOAB+fv7l5gXEBCgv/3tb5o8ebK6det2UesrvhH4fObPn1+ir0ePHtq6detFbQMAAPyxlOnMzfbt23XjjTeec35sbKzS09MvuSgAAIDyKlO4+emnn0q9abeYp6enfv7550suCgAAoLzKFG6aNWumb7755pzzv/766xJfogcAAFCVyhRu4uLi9Mwzzyg/P7/EvNOnT2vChAnq27dvhRUHAABQVmW6ofipp57SkiVLdMUVV+jhhx9WRESEbDabdu7cqWnTpqmwsFBPPvlkZdUKAABwQWUKN0FBQdq0aZMeeughJSQkuPzZg969e2v69Okl/u4TAABAVSrzl/i1aNFCK1eu1C+//KI9e/bIGKPLL79cDRo0qIz6AAAAyqRc31AsSQ0aNNDVV19dkbUAAABcsnL94UwAAIDqinADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAshXADAAAsxa3h5vPPP1e/fv0UHBwsm82mpUuXnnd8SkqKbDZbiWnXrl1VUzAAAKj2PN258ZMnT+qqq67Svffe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a+fOnZo7d67mzJmjsWPHumsXAABANePWe27uuOMOHTlyRM8++6yys7PVtm1brVy5Ui1atJAkZWdnu3znTXh4uFauXKkxY8Zo2rRpCg4O1htvvKEBAwa4axcAAEA1YzMXc9sxUAM5HA4lJSUpISGhxKVJANbBex2/R7gBAACW4va/LQUAAFCRCDcAAMBSCDcAAMBSCDfA74SFhWnKlCnuLgPAJdi/f79sNpu2bdvm7lLgBoQbuNXQoUNls9lKTHv27HF3aQCqWPHvg+LvOvutESNGyGazaejQoVVfGGocwg3c7sYbb1R2drbLFB4e7u6yALhBSEiIFi1apNOnTzv78vPztXDhQoWGhrqxMtQkhBu4nY+Pj5o2beoyeXh4aNmyZYqKipKvr69atmypxMREFRQUOJez2WyaNWuW+vbtq9q1aysyMlKpqanas2ePevbsqTp16ig6Olp79+51LrN37171799fQUFBqlu3rq6++mp99tln560vNzdXDz74oJo0aSJ/f39dd9112r59e6UdD+CPrFOnTgoNDdWSJUucfUuWLFFISIg6duzo7Fu1apWuvfZa1a9fX4GBgerbt6/Le700//nPfxQXF6e6desqKChIgwYN0uHDhyttX+A+hBtUS6tXr9Y999yj0aNH6z//+Y9mzZql+fPn64UXXnAZ99xzz2nw4MHatm2brrzySg0cOFB/+9vflJCQoLS0NEnSww8/7Bx/4sQJxcXF6bPPPlNGRoZ69+6tfv36uXwT9m8ZY3TTTTcpJydHK1euVHp6ujp16qSYmBgdPXq08g4A8Ad27733at68ec723LlzNWzYMJcxJ0+eVHx8vLZs2aJ169apVq1auvXWW1VUVFTqOrOzs9WjRw916NBBaWlpWrVqlX766SfdfvvtlbovcBMDuNGQIUOMh4eHqVOnjnP6y1/+Yrp162ZefPFFl7HvvvuusdvtzrYk89RTTznbqampRpKZM2eOs2/hwoXG19f3vDW0bt3a/OMf/3C2W7RoYV5//XVjjDHr1q0z/v7+Jj8/32WZyy67zMyaNavM+wvg3IYMGWL69+9vfv75Z+Pj42P27dtn9u/fb3x9fc3PP/9s+vfvb4YMGVLqsocOHTKSzDfffGOMMWbfvn1GksnIyDDGGPP000+b2NhYl2WysrKMJLN79+7K3C24gVv/thQgSb169dKMGTOc7Tp16qhVq1basmWLy5mawsJC5efn69SpU6pdu7YkqX379s75QUFBkqR27dq59OXn5ysvL0/+/v46efKkEhMTtXz5ch08eFAFBQU6ffr0Oc/cpKen68SJEwoMDHTpP3369AVPgQMon0aNGummm27SO++84zx72qhRI5cxe/fu1dNPP63Nmzfr8OHDzjM2mZmZatu2bYl1pqena8OGDapbt26JeXv37tUVV1xROTsDtyDcwO2Kw8xvFRUVKTExUbfddluJ8b6+vs5/e3l5Of9ts9nO2Vf8i+/xxx/X6tWrNWnSJLVq1Up+fn76y1/+ojNnzpRaW1FRkex2u1JSUkrMq1+//sXtIIAyGzZsmPOS8rRp00rM79evn0JCQvTWW28pODhYRUVFatu27Xnfy/369dPLL79cYp7dbq/Y4uF2hBtUS506ddLu3btLhJ5L9cUXX2jo0KG69dZbJf16D87+/fvPW0dOTo48PT0VFhZWobUAOLcbb7zRGVR69+7tMu/IkSPauXOnZs2apW7dukmS/v3vf593fZ06dVJycrLCwsLk6clHn9VxQzGqpWeeeUYLFizQxIkT9e2332rnzp1avHixnnrqqUtab6tWrbRkyRJt27ZN27dv18CBA895A6IkXX/99YqOjtYtt9yi1atXa//+/dq0aZOeeuop5w3LACqeh4eHdu7cqZ07d8rDw8NlXoMGDRQYGKjZs2drz549Wr9+veLj48+7vpEjR+ro0aO666679NVXX+m///2v1qxZo2HDhqmwsLAydwVuQLhBtdS7d28tX75ca9eu1dVXX60uXbpo8uTJatGixSWt9/XXX1eDBg3UtWtX9evXT71791anTp3OOd5ms2nlypXq3r27hg0bpiuuuEJ33nmn9u/f77zHB0Dl8Pf3l7+/f4n+WrVqadGiRUpPT1fbtm01ZswYvfrqq+ddV3BwsL788ksVFhaqd+/eatu2rR555BEFBASoVi0+Cq3GZowx7i4CAACgohBXAQCApRBuAACApRBuAACApRBuAACApRBuAACApRBuAACApRBuAACApRBuAPzh9OzZU48++qi7ywBQSQg3ANwiJydHjzzyiFq1aiVfX18FBQXp2muv1cyZM3Xq1Cl3lwegBuOvhwGocv/973/15z//WfXr19eLL76odu3aqaCgQN99953mzp2r4OBg3Xzzze4u85wKCwtls9n42n6gmuKdCaDKjRgxQp6enkpLS9Ptt9+uyMhItWvXTgMGDNCKFSvUr18/SVJubq4efPBBNWnSRP7+/rruuuu0fft253omTpyoDh066N1331VYWJgCAgJ055136vjx484xJ0+e1ODBg1W3bl3Z7Xa99tprJeo5c+aMxo0bp2bNmqlOnTq65pprlJKS4pw/f/581a9fX8uXL1fr1q3l4+OjH374ofIOEIBLQrgBUKWOHDmiNWvWaOTIkapTp06pY2w2m4wxuummm5STk6OVK1cqPT1dnTp1UkxMjI4ePeocu3fvXi1dulTLly/X8uXLtXHjRr300kvO+Y8//rg2bNigjz76SGvWrFFKSorS09Ndtnfvvffqyy+/1KJFi/T111/rr3/9q2688UZ9//33zjGnTp1SUlKS3n77bX377bdq0qRJBR8ZABXGAEAV2rx5s5FklixZ4tIfGBho6tSpY+rUqWPGjRtn1q1bZ/z9/U1+fr7LuMsuu8zMmjXLGGPMhAkTTO3atU1eXp5z/uOPP26uueYaY4wxx48fN97e3mbRokXO+UeOHDF+fn7mkUceMcYYs2fPHmOz2cyBAwdcthMTE2MSEhKMMcbMmzfPSDLbtm2rmIMAoFJxzw0At7DZbC7tr776SkVFRbr77rvlcDiUnp6uEydOKDAw0GXc6dOntXfvXmc7LCxM9erVc7btdrsOHTok6dezOmfOnFF0dLRzfsOGDRUREeFsb926VcYYXXHFFS7bcTgcLtv29vZW+/btL2GPAVQVwg2AKtWqVSvZbDbt2rXLpb9ly5aSJD8/P0lSUVGR7Ha7y70vxerXr+/8t5eXl8s8m82moqIiSZIx5oL1FBUVycPDQ+np6fLw8HCZV7duXee//fz8SgQyANUT4QZAlQoMDNQNN9ygN998U6NGjTrnfTedOnVSTk6OPD09FRYWVq5ttWrVSl5eXtq8ebNCQ0MlSb/88ou+++479ejRQ5LUsWNHFRYW6tChQ+rWrVu5tgOgeuGGYgBVbvr06SooKFDnzp21ePFi7dy5U7t379Z7772nXbt2ycPDQ9dff72io6N1yy23aPXq1dq/f782bdqkp556SmlpaRe1nbp16+q+++7T448/rnXr1mnHjh0aOnSoyyPcV1xxhe6++24NHjxYS5Ys0b59+7Rlyxa9/PLLWrlyZWUdAgCViDM3AKrcZZddpoyMDL344otKSEjQjz/+KB8fH7Vu3Vpjx47ViBEjZLPZtHLlSj355JMaNmyYfv75ZzVt2lTdu3dXUFDQRW/r1Vdf1YkTJ3TzzTerXr16euyxx5Sbm+syZt68eXr++ef12GOP6cCBAwoMDFR0dLTi4uIqetcBVAGbuZiL0gAAADUEl6UAAIClEG4AAIClEG4AAIClEG4AAIClEG4AAIClEG4AAIClEG4AAIClEG4AAIClEG4AAIClEG4AAIClEG4AAIClEG4AAICl/H+SIdlLs3x1MAAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.bar(gender_group.index,gender_group.values,color=['orange','red'],edgecolor='black')\n", + "\n", + "plt.xlabel('Gender') \n", + "plt.ylabel('Count') \n", + "plt.title('Bar Chart of Gender among students')" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "id": "74e9dcef-355d-4e96-a1fe-c86fdcb3656b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
20NaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN " + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Bar chart on real data \n", + "\n", + "df = pd.read_csv('student_data.csv') \n", + "\n", + "df\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 76, + "id": "b6140c59-bf32-42f7-8f3e-45e8fab3f016", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjMAAAHFCAYAAAAHcXhbAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjAsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvlHJYcgAAAAlwSFlzAAAPYQAAD2EBqD+naQAAQypJREFUeJzt3XlcVmX+//H3LcLNDuKGKALmikpqLqlNaqnkQmo15a41mblWNtXYaKJTMaKZ5dbY5DJjajVaY065hFul5q5lKGoglJqCCmqKCtfvj37cX28BcUFvjr6ej8f90HOd65zzOTeHm/d9nXPu22aMMQIAALCoUq4uAAAA4EYQZgAAgKURZgAAgKURZgAAgKURZgAAgKURZgAAgKURZgAAgKURZgAAgKURZgAAgKURZmBZc+bMkc1mc3qUL19erVu31tKlS295PZ9//rliYmJUsWJFeXh4KCgoSA8++KA+/PBDXbhwQZKUkpIim82miRMn3pKa1q9fr9jYWJ08ebLY1/3RRx+pbt268vLyks1m044dO67Y/6efftLQoUNVs2ZNeXl5ydvbW3Xr1tWoUaP0yy+/FHt9uDGtW7dW69atr2vZ6dOna86cOfna847/guYBN4IwA8ubPXu2NmzYoPXr12vmzJlyc3NTTEyMPv/881uyfWOMnnzyST388MPKzc3VpEmT9NVXX2nu3Lm6++67NXjwYE2fPv2W1HK59evXa+zYscUeZo4dO6Y+ffrorrvu0rJly7RhwwbVrFmz0P5Lly5VVFSUli5dqmeeeUZLly51/P/zzz9X586di7U+uFZhYaZSpUrasGGDOnXqdOuLwm2ttKsLAG5UvXr11LhxY8f0Qw89pDJlymjBggWKiYkplm2cPXtWXl5eBc6bMGGC5syZo7Fjx+q1115zmhcTE6OXX35Z+/fvL5Y6rtbZs2fl6el509aflJSkCxcuqHfv3mrVqtUV+yYnJ6t79+6qWbOmVq9erYCAAMe8Bx54QMOHD9enn35602otSE5Oji5evCi73X5Lt3uns9vtuvfee11dBm5DjMzgtuPp6SkPDw+5u7s7tY8dO1bNmjVTUFCQ/P391ahRI33wwQe6/LtWw8PD1blzZy1evFgNGzaUp6enxo4dW+C2Lly4oPHjx6t27doaPXp0gX2Cg4N133335WufNGmSIiIi5Ovrq+bNm2vjxo1O87ds2aLu3bsrPDxcXl5eCg8PV48ePXTw4EGnfnmn21asWKGnnnpK5cuXl7e3t0aOHKmXXnpJkhQREeE4FbdmzZorPn9LlixR8+bN5e3tLT8/P7Vr104bNmxwzO/fv79jf5544gnZbLYrno6YNGmSzpw5o+nTpzsFmTw2m02PPPKIU9usWbN09913y9PTU0FBQerWrZsSExOd+hR2GqR///4KDw93TOed2oiPj9frr7+uiIgI2e12rV69Wrm5uXr99ddVq1YteXl5KTAwUFFRUXrnnXec1rlv3z717NlTFSpUkN1uV506dTRt2rRC9/lSubm5mjJliho0aODYxr333qslS5Y49YmPj1ft2rVlt9tVoUIF9e3bVz///HO+fa5Xr542bNigFi1aOI6L2bNnS5L+97//qVGjRvL29lb9+vW1bNkyp+VjY2Nls9m0fft2PfLII/L391dAQIB69+6tY8eOFbkv58+f1+uvv+6os3z58nryySedlg0PD9fu3bu1du1axzGX9/Mo7DTTN998owcffFB+fn7y9vZWixYt9L///c+pT95xvnr1ag0aNEjlypVT2bJl9cgjj+jQoUNF1o7bGyMzsLy8d9nGGP3666+aMGGCzpw5o549ezr1S0lJ0cCBA1W1alVJ0saNGzVs2DD98ssv+UZUtm3bpsTERI0aNUoRERHy8fEpcNtbtmzR8ePHNWDAANlstquuedq0aapdu7YmT54sSRo9erQ6duyo5ORkxx/8lJQU1apVS927d1dQUJAOHz6sGTNmqEmTJvrxxx9Vrlw5p3U+9dRT6tSpk/7973/rzJkzaty4sX777TdNmTJFixcvVqVKlSRJkZGRhdY1f/589erVS+3bt9eCBQuUnZ2t+Ph4tW7dWgkJCbrvvvs0evRoNW3aVEOGDNGbb76pNm3ayN/fv9B1rlixQhUrVrzqd+RxcXF69dVX1aNHD8XFxSkjI0OxsbFq3ry5Nm/erBo1alzVei737rvvqmbNmpo4caL8/f1Vo0YNxcfHKzY2VqNGjdL999+vCxcuaM+ePU6n5X788Ue1aNFCVatW1VtvvaXg4GAtX75cw4cPV3p6usaMGXPF7fbv31/z5s3Tn/70J40bN04eHh7atm2bUlJSHH0GDRqkmTNnaujQoercubNSUlI0evRorVmzRtu2bXP6WR85ckRPPvmkXn75ZVWpUkVTpkzRU089pbS0NP3nP//Rq6++qoCAAI0bN05du3bVTz/9pJCQEKeaunXrpscff1zPPvusdu/erdGjR+vHH3/Ud999l+9NQJ7c3Fx16dJFX3/9tV5++WW1aNFCBw8e1JgxY9S6dWtt2bJFXl5e+vTTT/XYY48pICDAcXr1SiNga9euVbt27RQVFaUPPvhAdrtd06dPV0xMjBYsWKAnnnjCqf/TTz+tTp06af78+UpLS9NLL72k3r17a9WqVVf8OeA2ZwCLmj17tpGU72G328306dOvuGxOTo65cOGCGTdunClbtqzJzc11zAsLCzNubm5m7969RdawcOFCI8m89957V1VzcnKykWTq169vLl686GjftGmTkWQWLFhQ6LIXL140p0+fNj4+Puadd95xtOc9D3379s23zIQJE4wkk5ycXGRtOTk5JiQkxNSvX9/k5OQ42k+dOmUqVKhgWrRo4WhbvXq1kWQ++eSTItfr6elp7r333iL7GWPMiRMnjJeXl+nYsaNTe2pqqrHb7aZnz56OtlatWplWrVrlW0e/fv1MWFiYYzrvOb/rrrvM+fPnnfp27tzZNGjQ4Io1RUdHmypVqpjMzEyn9qFDhxpPT09z/PjxQpddt26dkWT++te/FtonMTHRSDKDBw92av/uu++MJPPqq6862lq1amUkmS1btjjaMjIyjJubm/Hy8jK//PKLo33Hjh1Gknn33XcdbWPGjDGSzAsvvOC0rQ8//NBIMvPmzXPa1qXP74IFC4wks2jRIqdlN2/ebCQ5/c7VrVu3wJ9N3s9i9uzZjrZ7773XVKhQwZw6dcrRdvHiRVOvXj1TpUoVx+9m3nF++fMUHx9vJJnDhw/n2x7uHJxmguX961//0ubNm7V582Z9+eWX6tevn4YMGaKpU6c69Vu1apXatm2rgIAAubm5yd3dXa+99poyMjJ09OhRp75RUVFXvKD1RnXq1Elubm5O25PkdArp9OnTeuWVV1S9enWVLl1apUuXlq+vr86cOZPvlIskPfroozdU0969e3Xo0CH16dNHpUr930uDr6+vHn30UW3cuFG//fbbDW2jKBs2bNDZs2fVv39/p/bQ0FA98MADSkhIuO51P/zww/lGHZo2baqdO3dq8ODBWr58ubKyspzmnzt3TgkJCerWrZu8vb118eJFx6Njx446d+5cvtODl/ryyy8lSUOGDCm0z+rVqyUp3z43bdpUderUybfPlSpV0j333OOYDgoKUoUKFdSgQQOnEZg6depIUr7TkpLUq1cvp+nHH39cpUuXdtRSkKVLlyowMFAxMTFOz0ODBg0UHBxc5OnLgpw5c0bfffedHnvsMfn6+jra3dzc1KdPH/3888/au3ev0zIPP/yw03RBvzu483CaCZZXp06dfBcAHzx4UC+//LJ69+6twMBAbdq0Se3bt1fr1q31/vvvq0qVKvLw8NBnn32mN954Q2fPnnVaZ94pmaLknbJKTk6+pprLli3rNJ03DH9pHT179lRCQoJGjx6tJk2ayN/fXzabTR07dsxX77XUXJiMjIxC1xMSEqLc3FydOHFC3t7e17TeqlWrXvXzU1QNK1euvKZtX6qgdY4cOVI+Pj6aN2+e3nvvPbm5uen+++/X+PHj1bhxY2VkZOjixYuaMmWKpkyZUuB609PTC93msWPH5ObmpuDg4EL7FLXPl/+RDgoKytcv76MALm+Tfg9kl7u8ntKlS6ts2bKOWgry66+/6uTJk471Xu5Kz0NhTpw4IWNMofsuKV9NV/O7gzsPYQa3paioKC1fvlxJSUlq2rSpFi5cKHd3dy1dutTpLp/PPvuswOWv9vqXxo0bKygoSP/9738VFxd3TdfNXElmZqaWLl2qMWPG6C9/+YujPTs7W8ePH7+hmguT90fi8OHD+eYdOnRIpUqVUpkyZa55vdHR0ZoyZYo2btxY5HUzRdVw6bUjnp6eyszMzNevsD+qBT0/pUuX1ogRIzRixAidPHlSX331lV599VVFR0crLS1NZcqUcYwSFDa6EhERUej+lC9fXjk5OTpy5EihYfPSfa5SpYrTvMv3ubgcOXJElStXdkxfvHhRGRkZ+YLCpfIuuL38ouI8fn5+11xHmTJlVKpUqUJ/3nnbBYrCaSbclvI+wK18+fKSfv9DVrp0aadTO2fPntW///3vG9qOu7u7XnnlFe3Zs0d/+9vfCuxz9OhRffvtt9e0XpvNJmNMvgsn//nPfyonJ+eq13Mt71pr1aqlypUra/78+U53eJ05c0aLFi1y3OF0rV544QX5+Pho8ODBBYYPY4zj1uzmzZvLy8tL8+bNc+rz888/a9WqVXrwwQcdbeHh4UpKSlJ2drajLSMjQ+vXr7/mGiUpMDBQjz32mIYMGaLjx48rJSVF3t7eatOmjbZv366oqCg1btw43+NKAaBDhw6SpBkzZhTa54EHHpCkfPu8efNmJSYmOu1zcfnwww+dpj/++GNdvHjxinelde7cWRkZGcrJySnweahVq5ajr91uv6pjzsfHR82aNdPixYud+ufm5mrevHmqUqXKTT3di9sHIzOwvB9++EEXL16U9Psfs8WLF2vlypXq1q2b411zp06dNGnSJPXs2VPPPPOMMjIyNHHixGL5nJGXXnpJiYmJGjNmjDZt2qSePXsqNDRUmZmZWrdunWbOnKmxY8eqZcuWV71Of39/3X///ZowYYLKlSun8PBwrV27Vh988IECAwOvej3169eXJL3zzjvq16+f3N3dVatWrQLfRZcqVUrx8fHq1auXOnfurIEDByo7O1sTJkzQyZMn9fe///2qt3upiIgILVy4UE888YQaNGigoUOHqmHDhpJ+v1No1qxZMsaoW7duCgwM1OjRo/Xqq6+qb9++6tGjhzIyMjR27Fh5eno63TnUp08f/eMf/1Dv3r01YMAAZWRkKD4+/op3Vl0uJibG8TlF5cuX18GDBzV58mSFhYU57pp65513dN999+kPf/iDBg0apPDwcJ06dUr79+/X559/fsW7aP7whz+oT58+ev311/Xrr7+qc+fOstvt2r59u7y9vTVs2DDVqlVLzzzzjKZMmaJSpUqpQ4cOjruZQkND9cILL1zX834lixcvVunSpdWuXTvH3Ux33323Hn/88UKX6d69uz788EN17NhRzz33nJo2bSp3d3f9/PPPWr16tbp06aJu3bpJ+v24W7hwoT766CNVq1ZNnp6ejmPxcnFxcWrXrp3atGmjP//5z/Lw8ND06dP1ww8/aMGCBcU22onbnEsvPwZuQEF3MwUEBJgGDRqYSZMmmXPnzjn1nzVrlqlVq5ax2+2mWrVqJi4uznzwwQf57vYJCwsznTp1uuZ6/vvf/5pOnTqZ8uXLm9KlS5syZcqYNm3amPfee89kZ2cbY/7vbo4JEybkW16SGTNmjGP6559/No8++qgpU6aM8fPzMw899JD54YcfTFhYmOnXr1++52Hz5s0F1jVy5EgTEhJiSpUqZSSZ1atXX3E/PvvsM9OsWTPj6elpfHx8zIMPPmi+/fZbpz7XcjdTngMHDpjBgweb6tWrG7vdbry8vExkZKQZMWJEvrut/vnPf5qo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AAAsjTADAAAsjTADAAAsjTADAAAsjTADAAAsjTADAAAszVJhJi4uTjabTc8//7yrSwEAACWEZcLM5s2bNXPmTEVFRbm6FAAAUIJYIsycPn1avXr10vvvv68yZcq4uhwAAFCCWCLMDBkyRJ06dVLbtm2L7Judna2srCynBwAAuH2VdnUBRVm4cKG2bdumzZs3X1X/uLg4jR079iZXBQAASooSPTKTlpam5557TvPmzZOnp+dVLTNy5EhlZmY6HmlpaTe5SgAA4EolemRm69atOnr0qO655x5HW05OjtatW6epU6cqOztbbm5uTsvY7XbZ7fZbXSoAAHCREh1mHnzwQX3//fdObU8++aRq166tV155JV+QAQAAd54SHWb8/PxUr149pzYfHx+VLVs2XzsAALgzlehrZgAAAIpSokdmCrJmzRpXlwAAAEoQRmYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAIClEWYAAICllegwExcXpyZNmsjPz08VKlRQ165dtXfvXleXBQAASpASHWbWrl2rIUOGaOPGjVq5cqUuXryo9u3b68yZM64uDQAAlBClXV3AlSxbtsxpevbs2apQoYK2bt2q+++/30VVAQCAkqREj8xcLjMzU5IUFBTk4koAAEBJUaJHZi5ljNGIESN03333qV69eoX2y87OVnZ2tmM6KyvrVpQHAHes1NRUpaenu7oMuEi5cuVUtWpVl9ZgmTAzdOhQ7dq1S998880V+8XFxWns2LG3qCoAuLOlpqaqTq1a+u3cOVeXAhfx9vRU4t69Lg00lggzw4YN05IlS7Ru3TpVqVLlin1HjhypESNGOKazsrIUGhp6s0sEgDtSenq6fjt3TvMk1XF1MbjlEiX1PndO6enphJnCGGM0bNgwffrp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zNxkBYWZ++67z6lPkyZNzCuvvFLoOi4PM4mJiaZ69eqmadOmxhhjZs+ebSQ5woIxxiQlJRlJ5ttvv3W0paenGy8vL/Pxxx8bY4x54oknTKdOnZy21atXr3xhxt3d3Rw9etTRlpCQYPz9/c25c+eclr3rrrvMP/7xD2OMMX5+fmbOnDkF7k/9+vVNbGxsofuL4nHpsXfvvfeap556yhiTP8z07NnTtGvXzmnZl156yURGRjqmw8LCzNtvv13kNl999VVTunRpExQUZB566CETHx9vjhw54pi/evVqI8mcOHHiius5evSokWS+//57Y8z/vVZOnjzZqd/s2bPzBZD9+/cbm81mfvnlF6f2Bx980IwcOdIYY0yPHj3MQw895DT/iSeeuKPCDKeZLMT8/w9rvtLFbomJiQoNDVVoaKijLTIyUoGBgUpMTHS0hYeHy8/PzzFdsWJFRUZGqlSpUk5tR48edVp/8+bN801fut5Lbd26VatXr5avr6/jUbt2bUlyGnK91uUOHDig8+fPO9USFBSkWrVqFbpO3DxRUVFO05UqVcp33Fzu+++/l6+vr7y8vBQZGanQ0FB9+OGHjvkeHh5O601MTFTp0qXVrFkzR1vZsmVVq1Ytx/G3d+9eNW3a1Gk7l09LUlhYmMqXL++Y3rp1q06fPq2yZcs6HXPJycmO43TEiBF6+umn1bZtW/397393On6HDx+u119/XS1bttSYMWO0a9euK+47btz48eM1d+5c/fjjj/nmJSYmqmXLlk5tLVu21L59+5STk3NN23njjTd05MgRvffee4qMjNR7772n2rVr6/vvv7/icgcOHFDPnj1VrVo1+fv7KyIiQtLvlwBcqnHjxkXWsG3bNhljVLNmTafjc+3atY7jMDExscDX5juJJb6bCb+rUaOGbDabEhMTC72jxBhTYNi5vN3d3d1pvs1mK7Dtai68LCxc5ebmKiYmRuPHj883r1KlSoWur6jlLr9OAq51PcdNrVq1tGTJErm5uSkkJCTf99p4eXk5HVemkG9dufS4LujYL2g5Hx8fp+nc3FxVqlQp3zUIkhzX28TGxqpnz5763//+py+//FJjxozRwoUL1a1bNz399NOKjo7W//73P61YsUJxcXF66623NGzYsCs+B7h+999/v6Kjo/Xqq686rlPJc7XHwdUqW7as/vjHP+qPf/yj4uLi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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "status = df.groupby('CompletionStatus').size() \n", + "\n", + "plt.bar(status.index,status.values,color=['green','orange','red'],edgecolor='black')\n", + "\n", + "plt.xlabel('Completion Status') \n", + "plt.ylabel('Count') \n", + "plt.title('Bar Chart of Course completion')\n", + "plt.show() " + ] + }, + { + "cell_type": "code", + "execution_count": 77, + "id": "b59d85b4-3fbf-420a-8266-57b0f900736e", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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f9k6L2f69Onq3r274uLi9NZbb+n48eMaPny4XC6XihT5v79tMzMzFRcXpzVr1mjgwIFq2rSpDh48qISEBDVr1kybNm3yqPOHH37Qs88+qxdeeEFlypTR+++/r0cffVSVKlXSHXfcoTZt2ui1117TkCFDNG7cONWvX1+SdPPNN+vUqVNq0aKFKlSooHHjxqlMmTI6cuSIVq5cqRMnTuR7XVFIGMAC06ZNM5KyDU6n04wfP/6yr83IyDDnzp0zI0eONCEhISYzM9M9LTIy0nh5eZldu3b9bQ1z5swxkszEiRNzVfP+/fuNJFOrVi1z/vx5d/uGDRuMJDN79uxLvvb8+fPm5MmTplixYuadd95xt2dth0ceeSTba9544w0jyezfv/9va8vIyDDh4eGmVq1aJiMjw91+4sQJExoaapo2bepuW7lypZFkPvroo7+db276du7c2TidTpOcnOzR3rp1a+Pv72+OHTtmjDFm5MiRRpL56quv/na5F67XpfZ1jRo1zJ133pntNVn7adq0ae62W265xYSGhpoTJ064286fP29q1qxpypUr555v1v7o06ePxzxHjx5tJJmUlJTL1no19sHZs2dN+/bt3f9HvLy8TL169cyLL75ojh496tG3TZs2JjIyMts8spa3cuVKj/aLt1XWOtSvX99jWx84cMD4+Ph4zHv27NlGkvnkk0885rlx40YjyeP/cWRkpPH19TUHDx50t505c8aULFnS9O7d29320Ucf5Vjnpk2bjCSzYMGCy20qXKe49ANLffDBB9q4caM2btyoL774QvHx8erbt6/ee+89j34rVqzQ3XffreDgYHl5ecnHx0fDhg1TWlqajh496tG3du3aV/Xm0DZt2sjLy8tjeZI8LuucPHlSgwYNUqVKleTt7S1vb28FBATo1KlTSkpKyjbPDh06XFFNu3bt0uHDh/Xwww97/NUbEBCgDh06aP369Tp9+vQVLeNSVqxYoebNmysiIsKjvVu3bjp9+rT7sscXX3yhKlWq6O677/7b+eV2X+fGqVOn9N1336ljx44el0+8vLz08MMP6+eff9auXbs8XvOPf/zDYzynfXyxq7UPnE6n5s+frx07dujtt99W586d9dtvv+nVV19VtWrVstV+JbLWoUuXLh5nGSMjI9W0aVOPvosXL1bx4sXVrl07nT9/3j3UrVtXZcuWzXaZ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s/IJuTrLuF6cSzuktMVvKTU1laACAChQlgaVW2+9Vbt27fJo2717tyIjI3Ps73Q65XQ6r0Vpbj4hEXKWrXRNlwkAAP5i6c20zzzzjNavX6/XXntNe/fu1axZszRp0iT17dvXyrIAAIBNWBpUGjZsqPnz52v27NmqWbOmXn75ZY0dO1Zdu3a1siwAAGATll76kaS2bduqbdu2VpcBAABsyPKv0AcAALgUggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtS4PK8OHD5XA4PIayZctaWRIAALARb6sLqFGjhpYtW+Ye9/LysrAaAABgJ5YHFW9vb86iAACAHFl+j8qePXsUHh6uChUqqHPnzvrpp5+sLgkAANiEpWdUGjdurA8++EBVqlTRr7/+qldeeUVNmzbVjz/+qJCQkGz9XS6XXC6Xezw9Pf1algsAAK4xS8+otG7dWh06dFCtWrV0991367PPPpMkzZgxI8f+o0aNUnBwsHuIiIi4luUCAIBrzPJLPxcqVqyYatWqpT179uQ4ffDgwTp+/Lh7OHTo0DWuEAAAXEuW30x7IZfLpaSkJN1+++05Tnc6nXI6nde4KgAAYBVLz6g899xzWr16tfbv36/vvvtOHTt2VHp6uuLj460sCwAA2ISlZ1R+/vlnPfjgg0pNTVXp0qV1yy23aP369YqMjLSyLAAAYBOWBpU5c+ZYuXgAAGBztrqZFgAA4EIEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFv5CioVK1ZUWlpatvZjx46pYsWKV1wUAACAlM+gcuDAAWVkZGRrd7lc+uWXX664KAAAACmPv568aNEi97+XLl2q4OBg93hGRoaWL1+uqKioAisOAADc2PIUVNq3by9Jcjgcio+P95jm4+OjqKgovfXWWwVWHAAAuLHlKahkZmZKkipUqKCN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2lqyZIlatGhhZVkAAMAmLA0qU6ZMsXLxAADA5vitHwAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFsEFQAAYFuWBpVRo0apYcOGCgwMVGhoqNq3b69du3ZZWRIAALARS4PK6tWr1bdvX61fv15fffWVzp8/r5YtW+rUqVNWlgUAAGzC28qFL1myxGN82rRpCg0N1ebNm3XHHXdYVBUAALALW92jcvz4cUlSyZIlLa4EAADYgaVnVC5kjNGAAQN02223qWbNmjn2cblccrlc7vH09PRrVR4AXBXJyclKTU21uoxCoVSpUipfvrzVZeAas01QefLJJ7V161Z98803l+wzatQojRgx4hpWBQBXT3JysqKrVtPZM6etLqVQ8PXz166dSYSVG4wtgkq/fv20aNEiff311ypXrtwl+w0ePFgDBgxwj6enpysiIuJalAgABS41NVVnz5xWSNtn5RPCe9nlnEs7pLTFbyk1NZWgcoOxNKgYY9SvXz/Nnz9fq1atUoUKFS7b3+l0yul0XqPqAODa8AmJkLNsJavLAGzJ0qDSt29fzZo1SwsXLlRgYKCOHDkiSQoODpafn5+VpQEAABuw9KmfCRMm6Pjx42rWrJnCwsLcw9y5c60sCwAA2ITll34AAAAuxVbfowIAAHAhggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtggoAALAtS4PK119/rXbt2ik8PFwOh0MLFiywshwAAGAzlgaVU6dOqU6dOnrvvfesLAMAANiUt5ULb926tVq3bm1lCQAAwMa4RwUAANiWpWdU8srlcsnlcrnH09PTLawGuL4kJycrNTXV6jIKhVKlSql8+fJWlwHcEApVUBk1apRGjBhhdRnAdSc5OVnRVavp7JnTVpdSKPj6+WvXziTCCnANFKqgMnjwYA0YMMA9np6eroiICAsrAq4PqampOnvmtELaPiufEP5PXc65tENKW/yWUlNTCSrANVCogorT6ZTT6bS6DOC65RMSIWfZSlaXAQBulgaVkydPau/eve7x/fv3KzExUSVLluQvFQAAYG1Q2bRpk2JjY93jWZd14uPjNX36dIuqAgAAdmFpUGnWrJmMMVaWAAAAbIzvUQEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZFUAEAALZleVAZP368KlSoIF9fXzVo0EBr1qyxuiQAAGATlgaVuXPn6umnn9aLL76o77//Xrfffrtat26t5ORkK8sCAAA2YWlQGTNmjB599FH17NlT1apV09ixYxUREaEJEyZYWRYAALAJy4LKn3/+qc2bN6tly5Ye7S1bttTatWstqgoAANiJt1ULTk1NVUZGhsqUKePRXqZMGR05ciTH17hcLrlcLvf48ePHJUnp6ekFXt/Jkyf/WuaRvcr882yBz/96cu73nyX9tc2udF+w3XOP7W4Ntrs1Cmq7s83zpiCP9wtlzcsY8/edjUV++eUXI8msXbvWo/2VV14x0dHROb4mISHBSGJgYGBgYGC4DoZDhw79bV6w7IxKqVKl5OXlle3sydGjR7OdZckyePBgDRgwwD2emZmp33//XSEhIXI4HFe1XjtIT09XRESEDh06pKCgIKvLuWGw3a3BdrcG290aN9p2N8boxIkTCg8P/9u+lgWVokWLqkGDBvrqq6903333udu/+uorxcXF5fgap9Mpp9Pp0Va8ePGrWaYtBQUF3RAHst2w3a3BdrcG290aN9J2Dw4OzlU/y4KKJA0YMEAPP/ywYmJi1KRJE02aNEnJycl6/PHHrSwLAADYhKVBpVOnTkpLS9PIkSOVkpKimjVr6vPPP1dkZKSVZQEAAJuwNKhIUp8+fdSnTx+ryygUnE6nEhISsl3+wtXFdrcG290abHdrsN0vzWFMbp4NAgAAuPYs/60fAACASyGoAAAA2yKoAAAA2yKo5IPD4dCCBQusLgNXqCD2Y7du3dS+ffsCqed6VhDb6cCBA3I4HEpMTCyQmm40w4cPV926dQu876XkZn9Nnz79hvwurCzNmjXT008/7R6PiorS2LFjLavHrggqOThy5Ij69eunihUryul0KiIiQu3atdPy5csLbBk5vXHzRlwwunXrJofDIYfDIR8fH5UpU0YtWrTQ1KlTlZmZaXV516WcjuePP/5Yvr6+Gj16tDVFXUcuPKa9vb1Vvnx5PfHEE/rjjz9yPY/nnnuuQN/DCkKnTp20e/duq8vIt6NHj6p3794qX768nE6nypYtq3vuuUfr1q2zrKbr8Y8ngspFDhw4oAYNGmjFihUaPXq0tm3bpiVLlig2NlZ9+/a1urwCY4zR+fPnrS7jqmnVqpVSUlJ04MABffHFF4qNjVX//v3Vtm3b63q97eL9999X165d9d5772ngwIFWl3NduPCYfv/99/Xpp5/m6asdAgICFBISchUrzDs/Pz+FhoZaXUa+dejQQT/88INmzJih3bt3a9GiRWrWrJl+//13q0u7rhBULtKnTx85HA5t2LBBHTt2VJUqVVSjRg0NGDBA69evd/dLTU3VfffdJ39/f1WuXFmLFi1yT8vIyNCjjz6qChUqyM/PT9HR0XrnnXfc04cPH64ZM2Zo4cKF7r+SVq1apQoVKkiS6tWrJ4fDoWbNmkn66zeNRo4cqXLlysnpdKpu3bpasmSJR91r165V3bp15evrq5iYGC1YsMDj7MyqVavkcDi0dOlSxcTEyOl0as2aNdq3b5/i4uJUpkwZBQQEqGHDhlq2bJnHvKOiovTKK6/okUceUUBAgCIjI7Vw4UL99ttviouLU0BAgGrVqqVNmzYV5K64Ill/3dx0002qX7++hgwZooULF+qLL77Q9OnT3f2uZD/mZPPmzQoNDdWrr74qSVqyZIluu+02FS9eXCEhIWrbtq327dt3VdbZLkaPHq0nn3xSs2bNUs+ePT2mvfnmmwoLC1NISIj69u2rc+fOuafldCmuePHiHvvrQlnH9PLlyxUTEyN/f381bdpUu3btcvfJzfFdWGQd0+XKlVPLli3VqVMnffnll5Jyd6xefDln1apVatSokYoVK6bixYvr1ltv1cGDBz1e89///ldRUVEKDg5W586ddeLECfe03B7bP/30k2JjY+Xv7686dep4nG0ozJd+jh07pm+++Uavv/66YmNjFRkZqUaNGmnw4MFq06aNevToobZt23q85vz58ypbtqymTp16yfmePn1aPXr0UGBgoMqXL69JkyZ5TP/ll1/UqVMnlShRQiEhIYqLi9OBAwckXfqzpdC74p9Bvo6kpaUZh8NhXnvttcv2k2TKlStnZs2aZfbs2WOeeuopExAQYNLS0owxxvz5559m2LBhZsOGDeann34yM2fONP7+/mbu3LnGGGNOnDhh/vnPf5pWrVqZlJQUk5KSYlwul9mwYYORZJYtW2ZSUlLc8xszZowJCgoys2fPNjt37jQDBw40Pj4+Zvfu3cYYY9LT003JkiXNQw89ZH788Ufz+eefmypVqhhJ5vvvvzfGGLNy5UojydSuXdt8+eWXZu/evSY1NdUkJiaaiRMnmq1bt5rdu3ebF1980fj6+pqDBw+61zcyMtKULFnSTJw40ezevds88cQTJjAw0LRq1cr873//M7t27TLt27c31apVM5mZmQW9W/IsPj7exMXF5TitTp06pnXr1saYK9+PFy9r5cqVJjg42IwfP949/eOPPzaffPKJ2b17t/n+++9Nu3btTK1atUxGRsbVWXmLZG2HQYMGmYCAAPPVV19lmx4UFGQef/xxk5SUZD799FPj7+9vJk2a5O4jycyfP9/jdcHBwWbatGnGGGP279+f4zHduHFjs2rVKvPjjz+a22+/3TRt2tT9+twc34XBxcf0vn37TPXq1U2ZMmWMMbk7VhMSEkydOnWMMcacO3fOBAcHm+eee87s3bvX7Nixw0yfPt29XRISEkxAQIC5//77zbZt28zXX39typYta4YMGeKe398d21n7q2rVqmbx4sVm165dpmPHjiYyMtKcO3fOGGPMtGnTTHBw8FXcclfPuXPnTEBAgHn66afN2bNns03/9ttvjZeXlzl8+LC7beHChaZYsWLmxIkTxhhj7rzzTtO/f3/39Kz32nHjxpk9e/aYUaNGmSJFipikpCRjjDGnTp0ylStXNj16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4MGDtW7dOh08eFBffvmldu/e7f7j5+/cqMf2hdLS0nTXXXdp5syZ2rp1q/bv36+PPvpIo0ePVlxcnLtfz549NWPGDCUlJSk+Pv6Kltm1a1eVKlVKcXFxWrNmjfbv36/Vq1erf//++vnnnyXl/NlS2BFULlKhQgVt2bJFsbGxevbZZ1WzZk21aNFCy5cv14QJE3I1j8cff1z333+/OnXqpMaNGystLS3b9x306tVL0dHR7mvK3377rby9vfXuu+/qP//5j8LDw90H+1NPPaVnn31Wzz77rGrVqqUlS5Zo0aJFqly5sqS/zrp8+umnSkxMVN26dfXiiy9q2LBhkuRx30pO3n77bZUoUUJNmzZVu3btdM8996h+/fp53Wy2s2TJEoWFhSkqKkqtWrXSypUr9e6772rhwoUe90lcTm7244XKli3rPmvTtWtXGWM0Z84cbd68WTVr1tQzzzyjN954o6BW0dayLgMdO3ZMLVq0yNXZyLfeeksRERG644471KVLFz333HPy9/e/ojqu1+M7y4ABAzR58mS1b98+T8eqv7+/du7cqQ4dOqhKlSp67LHH9OSTT6p37965Wm6RIkVu2GM7S0BAgBo3bqy3335bd9xxh2rWrKmhQ4eqV69eeu+999z97r77boWFhemee+5ReHj4FS3T399fX3/9tcqXL6/7779f1apVU48ePXTmzBkFBQVJyvmzpbBzmEvdzIBC7cMPP1T37t11/Phx+fn5WV0OAIsNHjxYa9asyXYZGVfX6dOnFR4erqlTp+r++++3upxCydvqAlAwPvjgA1WsWFE33XSTfvjhBw0aNEj//Oc/CSnADc4Yo59++knLly9XvXr1rC7nhpGZmakjR47orbfeUnBwsP7xj39YXVKhRVC5Thw5ckTDhg3TkSNHFBYWpgceeMD97agAblzHjx9X9erV1bBhQw0ZMsTqcm4YycnJqlChgsqVK6fp06fL25uP2/zi0g8AALAtbqYFAAC2RVABAAC2RVABAAC2RVABAAC2RVABUKg5HA4tWLDA6jIAXCUEFQC51q1bN7Vv396SZQ8fPlx169bN1p6SkqLWrVtf+4IAXBM82A2gUCtbtqzVJQC4ijijAqBArF69Wo0aNZLT6VRYWJheeOEFnT9/3j09MzNTr7/+uipVqiSn06ny5ct7fCnhoEGDVKVKFfn7+6tixYoaOnSo+wfVpk+frhEjRuiHH36Qw+GQw+HQ9OnTJWW/9LNt2zbddddd8vPzU0hIiB577DGdPHnSPT3rrNCbb76psLAwhYSEqG/fvtfFj7cB1yPOqAC4Yr/88ovuvfdedevWTR988IF27typXr16ydfXV8OHD5f012/NTJ48WW+//bZuu+02paSkaOfOne55BAYGavr06QoPD9e2bdvUq1cvBQYGauDAgerUqZO2b9+uJUuWaNmyZZLk/ln7C50+fVqtWrXSLbfcoo0bN+ro0aPq2bOnnnzySXewkaSVK1cqLCxMK1eu1N69e9WpUyfVrVtXvXr1uqrbCUA+GADIpfj4eBMXF5etfciQISY6OtpkZma628aNG2cCAgJMRkaGSU9PN06n00yePDnXyxo9erRp0KCBezwhIcHUqVMnWz9JZv78+cYYYyZNmmRKlChhTp486Z7+2WefmSJFipgjR4641yEyMtKcP3/e3eeBBx4wnTp1ynVtAK4dzqgAuGJJSUlq0qSJHA6Hu+3WW2/VyZMn9fPPP+vIkSNyuVxq3rz5Jefx8ccfa+zYsdq7d69Onjyp8+fPu3+6Pi911KlTR8WKFfOoIzMzU7t27VKZMmUkSTVq1JCXl5e7T1hYmLZt25anZQG4NrhHBcAVM8Z4hJSsNumve0j+7le8169fr86dO6t169ZavHixvv/+e7344ov6888/r7iOLBe2+/j4ZJuWmZmZp2UBuDYIKgCuWPXq1bV27Vp3OJGktWvXKjAwUDfddJMqV64sPz8/LV++PMfXf/vtt4qMjNSLL76omJgYVa5cWQcPHvToU7RoUWVkZPxtHYmJiTp16pTHvIsUKaIqVapcwRoCsApBBUCeHD9+XImJiR7DY489pkOHDqlfv37auXOnFi5cqISEBA0YMEBFihSRr6+vBg0apIEDB+qDDz7Qvn37tH79ek2ZMkWSVKlSJSUnJ2vOnDnat2+f3n33Xc2fP99juVFRUdq/f78SExOVmpoql8uVrbauXbvK19dX8fHx2r59u1auXKl+/frp4Ycfdl/2AVC4cI8KgDxZtWqV6tWr59EWHx+vzz//XM8//7zq1KmjkiVL6tFHH9VLL73k7jN06FB5e3tr2LBhOnz4sMLCwvT4449LkuLi4vTMM8/oySeflMvlUps2bTR06FD3E0OS1KFDB82bN0+xsbE6duyYpk2bpm7dunnU4e/vr6VLl6p///5q2LCh/P391aFDB40ZM+aqbQ8AV5fDXHiuFgAAwEa49AMAAGyLoAIAAGyLoAIAAGyLoAIAAGyLoAIAAGyLoAIAAGyLoAIAAGyLoAIAAGyLoAIAAGyLoAIAAGyLoAIAAGyLoAIAAGzr/wHb9/TDdrm0GAAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# location \n", + "\n", + "status = df.groupby('Location').size() \n", + "\n", + "plt.bar(status.index,status.values,edgecolor='black')\n", + "\n", + "plt.xlabel('Location') \n", + "plt.ylabel('Count') \n", + "plt.title('Bar Chart of Location of Students')\n", + "plt.show() " + ] + }, + { + "cell_type": "markdown", + "id": "1e639dce-47ea-48ea-afb3-b3ece483a092", + "metadata": {}, + "source": [ + "# pie chart " + ] + }, + { + "cell_type": "code", + "execution_count": 88, + "id": "9f7ef815-9eee-44fa-8890-caabd869d118", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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jerq6t4pUogA599zq4UQxzRixAi+++473G4327dv59Zbb6W0tJSvv/66y3PdRybL9MVOAU6nE72XPUWF6GsychPCx8455xzuuecefv3rXxMbG0tycjKPPvroCY/T6XQkJyfTr18/LrroIu655x6++eYbrFYrb775JtHR0SxatIjs7GyMRiOFhYXU19ezYMECYmJiCA8P5/zzz+fgwYOdXveVV14hPT2d8PBwLrvsMp555hmio6M7Hn/00UcZO3Ysr7/+OoMGDcJoNKKqKo2NjfziF78gMTGRyMhIZs2axY4dOzqO27FjBzNnziQiIoLIyEgmTJjAli1bACgsLOTiiy8mJiYGs9nMiBEjWLx4ca98fkVoknATwg+89dZbmM1mNm7cyFNPPcXjjz/Ot99+69VrhIWF4fF4cB1Zd9fW1sbf/vY3Xn31Vfbs2UNiYiI333wzW7ZsYeHChaxfvx5VVbngggtwOp0ArF27ljvuuINf/epX5OTkMGfOHP7yl790ea9Dhw7x4Ycf8sknn5CTkwPAhRdeSEVFBYsXL2br1q2MHz+e2bNnU1fXviv79ddfT1paGps3b2br1q385je/6Rjx3XXXXdjtdlavXs2uXbt48sknsVikW4s4BaoQ4rS66aab1Pnz53fcPvvss9Uzzjij03MmTZqkPvzww8d8jT/+8Y/qmDFjOm7n5uaqmZmZ6uTJk1VVVdU33nhDBdScnJyO5xw4cEAF1LVr13bcV1NTo4aFhakffvihqqqqes0116gXXnhhp/e6/vrr1aioqE7vrdfr1aqqqo77li1bpkZGRqo2m63TsYMHD1b/9a9/qaqqqhEREeqbb77Z7cczatQo9dFHHz3mxyuEt2TkJoQfGD16dKfbKSkpVFVVHfeYXbt2YbFYCAsLIzs7m/T0dN55552Oxw0GQ6fXzc3NRafTMWXKlI774uLiGDp0KLm5uQDs37+fyZMnd3qfn94GGDBgAAkJCR23t27dSktLC3FxcVgslo4/+fn55OXlAXD//fdz2223ce655/LEE0903A9wzz338Oc//5kZM2bwxz/+kZ07dx73YxfiRCTchPADP52QoSgKHo/nuMcMHTqUnJwc9u7di9VqZfny5WRmZnY8HhYW1qlbi3qMJa3qke4tP/338Y4zm82dbns8HlJSUsjJyen0Z//+/Tz00ENA+7W6PXv2cOGFF7J8+XKys7P57LPPALjttts4fPgwN954I7t27WLixIk8//zzx/34hTgeCTchApTBYCAzM5OBAwdiNBpP+Pzs7GxcLhcbN27suK+2tpYDBw4wfPhwAIYNG8amTZs6HffDpI/jGT9+PBUVFeh0OjIzMzv9iY+P73heVlYW9913H9988w2XX345b7zxRsdj6enp3HHHHXz66ac88MADvPLKKyd8XyGORcJNiBAxZMgQ5s+fz+23387333/Pjh07uOGGG+jXrx/z588H4O6772bx4sU888wzHDx4kH/96198/fXXJ2xIfe655zJt2jQuvfRSli5dSkFBAevWreP3v/89W7ZswWq18stf/pKVK1dSWFjI2rVr2bx5c0eo3nvvvSxdupT8/Hy2bdvG8uXLOx4Toick3IQIIW+88QYTJkzgoosuYtq0aaiqyuLFiztOi86YMYOXX36ZZ555hjFjxrBkyRLuu+8+TKbjb5qqKAqLFy/mrLPO4pZbbiErK4uf/exnFBQUkJSUhFarpba2lgULFpCVlcXVV1/N+eefz2OPPQa0r8O76667GD58OPPmzWPo0KG8+OKLff75EMFLeksKIY7r9ttvZ9++faxZs8bXpQhx0qRDiRCik7///e/MmTMHs9nM119/zVtvvSWjKBFwZOQmhOjk6quvZuXKlTQ3NzNo0CDuvvtu7rjjDl+XJYRXJNyEEEIEHZlQIoQQIuhIuAkhhAg6Em5CCCGCjoSbEEKIoCPhJoQQIuhIuAkhhAg6Em5CCCGCjoSbEEKIoCPhJoQQIuhIuAkhhAg6Em5CCCGCjoSbEEKIoCPhJoQQIuhIuAkhhAg6Em5CCCGCjoSbEEKIoCPhJoQQIuhIuAkhhAg6Em5CCCGCjoSbEEKIoCPhJoQQIuhIuAkhhAg6Em5CCCGCjoSbEEKIoCPhJoQQIuhIuAkhhAg6/x9II+oFZSxH5wAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "status = df.groupby('CompletionStatus').size() \n", + "plt.pie(status,labels=status.index,autopct='%1.1f%%',explode = (0.1,0,0),shadow=True) \n", + "plt.show() " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c65ef1d7-0344-4723-a6a1-70bd3197f3a9", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/enrollment_data.csv b/enrollment_data.csv new file mode 100644 index 0000000..2ad3315 --- /dev/null +++ b/enrollment_data.csv @@ -0,0 +1,11 @@ +Year,Programming,Digital Marketing +2015,589,734 +2016,862,963 +2017,1085,1157 +2018,1150,1404 +2019,1439,1497 +2020,1715,1579 +2021,1785,1948 +2022,1995,2073 +2023,2236,2310 +2024,2442,2338 \ No newline at end of file diff --git a/student_IQdata.csv b/student_IQdata.csv new file mode 100644 index 0000000..1a7c656 --- /dev/null +++ b/student_IQdata.csv @@ -0,0 +1,39 @@ +Shoe_Size,Study_Hour,Chilling_Hours,IQ_Score +13.5,2.0,17.7,72 +8.0,18.0,5.0,75 +6.4,7.2,22.7,78 +6.9,8.7,6.6,110 +10.5,8.6,5.8,104 +6.8,4.8,18.1,76 +5.5,7.9,24.3,80 +9.6,12.6,15.7,109 +9.1,5.6,24.3,73 +6.7,14.6,13.1,110 +9.7,14.2,20.9,98 +10.4,13.7,14.0,109 +7.7,11.9,23.2,95 +12.5,8.3,13.3,95 +7.6,9.4,16.8,95 +11.4,4.6,7.9,96 +5.6,12.2,12.9,107 +8.4,12.3,24.3,87 +12.1,6.4,17.3,77 +6.4,2.7,23.2,70 +13.7,5.4,20.6,78 +13.6,5.3,10.0,87 +18.0,10.0,15.0,98 +6.3,2.2,22.8,70 +11.6,2.4,5.1,90 +5.4,4.9,7.7,89 +9.5,2.0,35.0,145 +10.4,10.6,25.4,86 +13.7,14.8,27.7,88 +8.3,1.6,19.0,70 +6.5,3.0,20.9,70 +5.2,10.3,26.6,86 +7.6,3.7,24.0,70 +8.9,13.5,27.2,77 +10.5,13.9,8.0,116 +12.8,1.5,6.9,93 +6.6,3.6,12.8,84 +10.3,6.0,5.6,102 \ No newline at end of file From 8737b41dc87f95f5c757e1feea9d2244d3f144d8 Mon Sep 17 00:00:00 2001 From: Minhajul Abedin Adil <64237828+minhajadil@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:49:27 +0600 Subject: [PATCH 63/78] Add files via upload --- Practice Day.csv | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Practice Day.csv diff --git a/Practice Day.csv b/Practice Day.csv new file mode 100644 index 0000000..e69de29 From ccfada6141202e36dc97b75d59890aca9195a965 Mon Sep 17 00:00:00 2001 From: Minhajul Abedin Adil <64237828+minhajadil@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:49:56 +0600 Subject: [PATCH 64/78] Delete Practice Day.csv --- Practice Day.csv | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 Practice Day.csv diff --git a/Practice Day.csv b/Practice Day.csv deleted file mode 100644 index e69de29..0000000 From bbf9c1e1d10bb76752b717a25e4bc331d4c27965 Mon Sep 17 00:00:00 2001 From: Minhajul Abedin Adil <64237828+minhajadil@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:50:24 +0600 Subject: [PATCH 65/78] Add files via upload --- Practice Day (1).csv | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Practice Day (1).csv diff --git a/Practice Day (1).csv b/Practice Day (1).csv new file mode 100644 index 0000000..1516dfd --- /dev/null +++ b/Practice Day (1).csv @@ -0,0 +1,12 @@ +EmployeeID,EmployeeName,Age,Salary,Price,Marks1,Marks2,Marks3 +E101,Alice,25,50000,1200,85,90,88 +E102,Bob,30,,60000,1500,78,82,80 +E103,Charlie,22,52000,1100,92,95,90 +E101,Alice,25,50000,1200,85,90,88 +E104,David,45,80000,2500,88,85,89 +E105,Eve,29,58000,1300,76,79,81 +E106,Frank,,75000,2200,90,91,92 +E107,Grace,34,,1900,81,83,80 +E108,Heidi,38,,1800,84,86,88 +E109,Ivan,26,53000,1400,95,92,94 +E102,Bob,30,,60000,1500,78,82,80 \ No newline at end of file From 74e580d24687d50b450ef361e5d52d88008d4b10 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 4 Nov 2025 11:24:16 +0600 Subject: [PATCH 66/78] 11.6 ndarray Sorting --- Python_For_ML/Week_3/Mod_11/.idea/.gitignore | 8 + Python_For_ML/Week_3/Mod_11/.idea/Mod_11.iml | 8 + .../inspectionProfiles/Project_Default.xml | 12 ++ .../inspectionProfiles/profiles_settings.xml | 6 + Python_For_ML/Week_3/Mod_11/.idea/misc.xml | 7 + Python_For_ML/Week_3/Mod_11/.idea/modules.xml | 8 + Python_For_ML/Week_3/Mod_11/.idea/vcs.xml | 6 + .../Mod_11/11.1 ndarray Manipulation -1.ipynb | 141 ++++++++++++++++++ 8 files changed, 196 insertions(+) create mode 100644 Python_For_ML/Week_3/Mod_11/.idea/.gitignore create mode 100644 Python_For_ML/Week_3/Mod_11/.idea/Mod_11.iml create mode 100644 Python_For_ML/Week_3/Mod_11/.idea/inspectionProfiles/Project_Default.xml create mode 100644 Python_For_ML/Week_3/Mod_11/.idea/inspectionProfiles/profiles_settings.xml create mode 100644 Python_For_ML/Week_3/Mod_11/.idea/misc.xml create mode 100644 Python_For_ML/Week_3/Mod_11/.idea/modules.xml create mode 100644 Python_For_ML/Week_3/Mod_11/.idea/vcs.xml diff --git a/Python_For_ML/Week_3/Mod_11/.idea/.gitignore b/Python_For_ML/Week_3/Mod_11/.idea/.gitignore new file mode 100644 index 0000000..1c2fda5 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_11/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Python_For_ML/Week_3/Mod_11/.idea/Mod_11.iml b/Python_For_ML/Week_3/Mod_11/.idea/Mod_11.iml new file mode 100644 index 0000000..a80cbb1 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_11/.idea/Mod_11.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_11/.idea/inspectionProfiles/Project_Default.xml b/Python_For_ML/Week_3/Mod_11/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..d9b8305 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_11/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,12 @@ + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_11/.idea/inspectionProfiles/profiles_settings.xml b/Python_For_ML/Week_3/Mod_11/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/Python_For_ML/Week_3/Mod_11/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_11/.idea/misc.xml b/Python_For_ML/Week_3/Mod_11/.idea/misc.xml new file mode 100644 index 0000000..f8a22e9 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_11/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_11/.idea/modules.xml b/Python_For_ML/Week_3/Mod_11/.idea/modules.xml new file mode 100644 index 0000000..ad8150f --- /dev/null +++ b/Python_For_ML/Week_3/Mod_11/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_11/.idea/vcs.xml b/Python_For_ML/Week_3/Mod_11/.idea/vcs.xml new file mode 100644 index 0000000..17fbd1b --- /dev/null +++ b/Python_For_ML/Week_3/Mod_11/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb b/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb index 298ba72..aef83df 100644 --- a/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb +++ b/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb @@ -499,6 +499,147 @@ "execution_count": null, "source": "", "id": "b300a04da4ba2597" + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# _**11.5 Numpy Logical Functions**_", + "id": "8a1489b1292b0c27" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T04:50:52.678740Z", + "start_time": "2025-11-04T04:50:52.666099Z" + } + }, + "cell_type": "code", + "source": [ + "x = np.array([10, 8 , 16 , 100])\n", + "y = np.array([2,3,4,5])\n", + "\n", + "greater_than = x >y\n", + "print(greater_than)\n", + "\n", + "equal = x==y\n", + "print(equal)" + ], + "id": "1bb24bd8857b065c", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ True True True True]\n", + "[False False False False]\n" + ] + } + ], + "execution_count": 27 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "", + "id": "1850719e5e5c1413" + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_11.6 ndarray Sorting_**", + "id": "8315fd87fd003369" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T05:15:49.147347Z", + "start_time": "2025-11-04T05:15:49.134986Z" + } + }, + "cell_type": "code", + "source": [ + "import numpy as np\n", + "\n", + "x = np.array([10, 8 , 16 , 100])\n", + "\n", + "z = x.copy()\n", + "print(z)\n", + "\n", + "z.sort()\n", + "print(z)\n" + ], + "id": "e496e800e2b85d39", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 10 8 16 100]\n", + "[ 8 10 16 100]\n" + ] + } + ], + "execution_count": 6 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T05:17:33.455011Z", + "start_time": "2025-11-04T05:17:33.451534Z" + } + }, + "cell_type": "code", + "source": [ + "print(x)\n", + "sort_arr = np.sort(x)\n", + "print(sort_arr)\n", + "print(x)" + ], + "id": "d1ef7da0620df723", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 10 8 16 100]\n", + "[ 8 10 16 100]\n", + "[ 10 8 16 100]\n" + ] + } + ], + "execution_count": 7 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T05:23:27.375339Z", + "start_time": "2025-11-04T05:23:27.371860Z" + } + }, + "cell_type": "code", + "source": [ + "mat = np.array([[10, 3, 5],[8, 4, 9]])\n", + "\n", + "horz_sort = np.sort(mat)\n", + "print(horz_sort)\n", + "\n", + "vert_sort = np.sort(mat, axis=0)\n", + "print(vert_sort)\n" + ], + "id": "92f57baef78b9c5b", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 3 5 10]\n", + " [ 4 8 9]]\n", + "[[ 8 3 5]\n", + " [10 4 9]]\n" + ] + } + ], + "execution_count": 11 } ], "metadata": { From 4aa3d669f1c4c8b51795f17ddc27c4b3b34986d1 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 4 Nov 2025 11:50:39 +0600 Subject: [PATCH 67/78] 11.7 ndarray Searching --- .../Mod_11/11.1 ndarray Manipulation -1.ipynb | 122 ++++++++++++++++++ 1 file changed, 122 insertions(+) diff --git a/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb b/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb index aef83df..e5a3549 100644 --- a/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb +++ b/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb @@ -17,6 +17,7 @@ "import numpy as np\n", "\n", "from extra_class import matrix\n", + "from numpy.ma.core import max_val\n", "\n", "arr = np.random.randint(1, 100, size=(10, 5))\n", "arr.shape" @@ -640,6 +641,127 @@ } ], "execution_count": 11 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_11.7 ndarray Searching_**", + "id": "ef91d5250e6e732a" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T05:37:55.490269Z", + "start_time": "2025-11-04T05:37:55.485166Z" + } + }, + "cell_type": "code", + "source": "print(x)", + "id": "3d1cf8ec1a89cb66", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 10 8 16 100]\n" + ] + } + ], + "execution_count": 12 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T05:40:30.198947Z", + "start_time": "2025-11-04T05:40:30.195026Z" + } + }, + "cell_type": "code", + "source": [ + "index = np.where(x==8)\n", + "print(index)\n", + "index = np.where(x>8)\n", + "print(index)\n", + "index = np.where(x>8,x,0)\n", + "print(index)\n" + ], + "id": "f39fe2a23d60e7c2", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(array([1]),)\n", + "(array([0, 2, 3]),)\n", + "[ 10 0 16 100]\n" + ] + } + ], + "execution_count": 16 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T05:44:32.180598Z", + "start_time": "2025-11-04T05:44:32.175688Z" + } + }, + "cell_type": "code", + "source": [ + "index= np.where(mat>8)\n", + "print(index)\n", + "arr = np.where(mat>8,mat,0)\n", + "print(arr)\n" + ], + "id": "6bc4f2b39cd77a3d", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(array([0, 1]), array([0, 2]))\n", + "[[10 0 0]\n", + " [ 0 0 9]]\n" + ] + } + ], + "execution_count": 18 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T05:50:15.810922Z", + "start_time": "2025-11-04T05:50:15.806779Z" + } + }, + "cell_type": "code", + "source": [ + "x = np.array([10,100, 8 , 16 , 100])\n", + "max_val = np.argmax(x)\n", + "min_value = np.argmin(x)\n", + "print(min_value)\n", + "print(max_val)\n" + ], + "id": "9f0b590cb35f6f46", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2\n", + "1\n" + ] + } + ], + "execution_count": 20 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "source": "", + "id": "c120f855685a5f09", + "execution_count": null } ], "metadata": { From 86470e7a7baa1c2647149ea566c9b11700fbf1e0 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Tue, 4 Nov 2025 22:19:57 +0600 Subject: [PATCH 68/78] Mod_11 done --- .../Mod_11/11.1 ndarray Manipulation -1.ipynb | 338 +++++++++++++++++- Python_For_ML/Week_3/Mod_11/quize.ipynb | 177 +++++++++ .../Week_3/Mod_11/student_scores.csv | 21 ++ 3 files changed, 534 insertions(+), 2 deletions(-) create mode 100644 Python_For_ML/Week_3/Mod_11/quize.ipynb create mode 100644 Python_For_ML/Week_3/Mod_11/student_scores.csv diff --git a/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb b/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb index e5a3549..c54a3b1 100644 --- a/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb +++ b/Python_For_ML/Week_3/Mod_11/11.1 ndarray Manipulation -1.ipynb @@ -757,11 +757,345 @@ }, { "metadata": {}, + "cell_type": "markdown", + "source": "# **_11.8 ndarray Counting_**", + "id": "b22f5bba48f5c0eb" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T05:53:05.420260Z", + "start_time": "2025-11-04T05:53:05.341782Z" + } + }, + "cell_type": "code", + "source": [ + "a = np.random.randint(1,100, size=(100,))\n", + "print(a)" + ], + "id": "71625ae9a68a985b", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[73 77 80 31 39 51 86 79 79 50 14 37 47 72 85 34 94 85 3 35 92 57 46 58\n", + " 32 3 31 54 67 81 80 63 81 23 72 37 57 62 76 20 35 83 83 57 6 37 40 89\n", + " 62 24 96 87 24 27 24 73 6 95 49 55 2 50 65 81 4 47 63 79 90 69 80 15\n", + " 20 71 56 25 83 14 36 10 66 85 15 5 59 3 66 95 12 57 76 52 71 93 2 43\n", + " 10 27 56 66]\n" + ] + } + ], + "execution_count": 21 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T05:56:58.016342Z", + "start_time": "2025-11-04T05:56:58.013199Z" + } + }, + "cell_type": "code", + "source": [ + "val_grt_thn_60 = np.count_nonzero(a>10)\n", + "print(val_grt_thn_60)" + ], + "id": "ab4ad17d063941a9", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "89\n" + ] + } + ], + "execution_count": 29 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T05:57:30.954900Z", + "start_time": "2025-11-04T05:57:30.923941Z" + } + }, "cell_type": "code", + "source": [ + "unique_val = np.unique((a))\n", + "print(unique_val)" + ], + "id": "b5bf3f42d1bd91b0", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 2 3 4 5 6 10 12 14 15 20 23 24 25 27 31 32 34 35 36 37 39 40 43 46\n", + " 47 49 50 51 52 54 55 56 57 58 59 62 63 65 66 67 69 71 72 73 76 77 79 80\n", + " 81 83 85 86 87 89 90 92 93 94 95 96]\n" + ] + } + ], + "execution_count": 30 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T06:01:13.451677Z", + "start_time": "2025-11-04T06:01:13.443744Z" + } + }, + "cell_type": "code", + "source": [ + "unique_val = np.unique(a,return_counts=True)\n", + "print(unique_val)" + ], + "id": "3f82a4d19f798a34", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(array([ 2, 3, 4, 5, 6, 10, 12, 14, 15, 20, 23, 24, 25, 27, 31, 32, 34,\n", + " 35, 36, 37, 39, 40, 43, 46, 47, 49, 50, 51, 52, 54, 55, 56, 57, 58,\n", + " 59, 62, 63, 65, 66, 67, 69, 71, 72, 73, 76, 77, 79, 80, 81, 83, 85,\n", + " 86, 87, 89, 90, 92, 93, 94, 95, 96], dtype=int32), array([2, 3, 1, 1, 2, 2, 1, 2, 2, 2, 1, 3, 1, 2, 2, 1, 1, 2, 1, 3, 1, 1,\n", + " 1, 1, 2, 1, 2, 1, 1, 1, 1, 2, 4, 1, 1, 2, 2, 1, 3, 1, 1, 2, 2, 2,\n", + " 2, 1, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 2, 1]))\n" + ] + } + ], + "execution_count": 33 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T06:00:39.613862Z", + "start_time": "2025-11-04T06:00:39.610600Z" + } + }, + "cell_type": "code", + "source": [ + "unique_val = np.count_nonzero((a==30))\n", + "print(unique_val)" + ], + "id": "55a048f12dd904d0", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n" + ] + } + ], + "execution_count": 31 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_11.9 Statistical function_**", + "id": "b737e85c2e7cdab9" + }, + { + "metadata": {}, + "cell_type": "code", + "source": [ + "data = np.genfromtxt('student_scores.csv', delimiter=',',skip_header=1)\n", + "print(data)" + ], + "id": "8211c8192dab6f31", "outputs": [], - "source": "", - "id": "c120f855685a5f09", "execution_count": null + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T07:19:14.324888Z", + "start_time": "2025-11-04T07:19:14.112079Z" + } + }, + "cell_type": "code", + "source": [ + "\n", + "math_marks = data[::,:1]\n", + "\n", + "print(math_marks.T)\n", + "\n", + "max_math_Marks = np.max(math_marks)\n", + "print(max_math_Marks)\n", + "\n", + "min_math_Marks = np.min(math_marks)\n", + "print(min_math_Marks)\n", + "\n", + "average_math_marks = np.mean(math_marks)\n", + "print(average_math_marks)\n", + "\n", + "median_math_marks = np.median(math_marks)\n", + "print(median_math_marks)" + ], + "id": "646367b787bf9d6", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[78. 56. 89. 45. 70. 92. 61. 55. 88. 74. 66. 80. 59. 73. 91. 68. 77. 84.\n", + " 62. 95.]]\n", + "95.0\n", + "45.0\n", + "73.15\n", + "73.5\n" + ] + } + ], + "execution_count": 41 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_11.10 Linear Algebra with NumPy_**", + "id": "3b4013d80accda68" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T07:29:18.309247Z", + "start_time": "2025-11-04T07:29:18.293042Z" + } + }, + "cell_type": "code", + "source": [ + "study_hours = np.array([2,4,5,7,8])\n", + "exam_scores = np.array([65,75,78,88,93])\n", + "\n", + "data = np.array([study_hours, exam_scores])\n", + "correlation = np.corrcoef(data)\n", + "print(correlation)" + ], + "id": "3fbccfaeb743e071", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1. 0.99855739]\n", + " [0.99855739 1. ]]\n" + ] + } + ], + "execution_count": 43 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T07:37:14.331319Z", + "start_time": "2025-11-04T07:37:14.326920Z" + } + }, + "cell_type": "code", + "source": [ + "A = np.array([\n", + " [1, 2, 3],\n", + " [4, 5, 6]\n", + "])\n", + "\n", + "B = np.array([\n", + " [7, 8],\n", + " [9, 10],\n", + " [11, 12]\n", + "])\n", + "\n", + "# a er column and b er row same length hote hobe\n", + "dot_product = np.dot(A,B)\n", + "print(dot_product)\n", + "\n", + "\n", + "# trace\n", + "print(np.trace(B))" + ], + "id": "376e361cfa383ea6", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 58 64]\n", + " [139 154]]\n", + "17\n" + ] + } + ], + "execution_count": 44 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T07:38:54.415237Z", + "start_time": "2025-11-04T07:38:54.387614Z" + } + }, + "cell_type": "code", + "source": [ + "sq_mat = np.array([[1,2,3],\n", + " [4,5,6],\n", + " [7,8,9]\n", + " ])\n", + "\n", + "det_of_sq = np.linalg.det(sq_mat)\n", + "\n", + "rank_sq = np.linalg.matrix_rank(sq_mat)\n", + "\n", + "print(det_of_sq)\n", + "\n", + "print(rank_sq)" + ], + "id": "a22bed8f52f538b0", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.0\n", + "2\n" + ] + } + ], + "execution_count": 45 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T07:40:21.702179Z", + "start_time": "2025-11-04T07:40:21.698811Z" + } + }, + "cell_type": "code", + "source": [ + "A = np.array([[1, 2], [3, 4]])\n", + "B = np.array([[5, 6], [7, 8]])\n", + "\n", + "print(np.dot(A,B))" + ], + "id": "c8d454075c9a5aed", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[19 22]\n", + " [43 50]]\n" + ] + } + ], + "execution_count": 46 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_11.11 Problem Solving -1_**", + "id": "203ae82c136edd7e" } ], "metadata": { diff --git a/Python_For_ML/Week_3/Mod_11/quize.ipynb b/Python_For_ML/Week_3/Mod_11/quize.ipynb new file mode 100644 index 0000000..baccd2d --- /dev/null +++ b/Python_For_ML/Week_3/Mod_11/quize.ipynb @@ -0,0 +1,177 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-04T11:54:05.717085Z", + "start_time": "2025-11-04T11:54:05.713803Z" + } + }, + "source": [ + "import numpy as np\n", + "\n", + "a = np.array([1,2,3,4,5,6])\n", + "b = a.reshape(2,3)\n", + "print(b.shape)\n" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(2, 3)\n" + ] + } + ], + "execution_count": 3 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T11:54:41.593461Z", + "start_time": "2025-11-04T11:54:41.590525Z" + } + }, + "cell_type": "code", + "source": [ + "va = np.sin(np.pi/2)\n", + "print(va)" + ], + "id": "abec791a289703d3", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1.0\n" + ] + } + ], + "execution_count": 4 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T11:56:21.668201Z", + "start_time": "2025-11-04T11:56:21.664989Z" + } + }, + "cell_type": "code", + "source": [ + "a = np.array([1,2,3])\n", + "b = np.array([4,5,6])\n", + "print(a+b)" + ], + "id": "22329addaf1dc7e1", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[5 7 9]\n" + ] + } + ], + "execution_count": 11 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T11:58:14.548876Z", + "start_time": "2025-11-04T11:58:14.545853Z" + } + }, + "cell_type": "code", + "source": [ + "a = np.array([3,2,1])\n", + "print(np.sort(a))" + ], + "id": "48c5650fa592c005", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1 2 3]\n" + ] + } + ], + "execution_count": 13 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-04T11:59:19.883726Z", + "start_time": "2025-11-04T11:59:19.878926Z" + } + }, + "cell_type": "code", + "source": [ + "import numpy as np\n", + "\n", + "# Define the matrices\n", + "A = np.array([[1, 2],\n", + " [3, 4]])\n", + "\n", + "B = np.array([[5, 6],\n", + " [7, 8]])\n", + "\n", + "# Perform matrix multiplication\n", + "result = np.dot(A, B)\n", + "\n", + "# Print the result\n", + "print(\"Matrix A:\")\n", + "print(A)\n", + "print(\"\\nMatrix B:\")\n", + "print(B)\n", + "print(\"\\nResult of dot(A, B):\")\n", + "print(result)" + ], + "id": "fcd1acb7364be793", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Matrix A:\n", + "[[1 2]\n", + " [3 4]]\n", + "\n", + "Matrix B:\n", + "[[5 6]\n", + " [7 8]]\n", + "\n", + "Result of dot(A, B):\n", + "[[19 22]\n", + " [43 50]]\n" + ] + } + ], + "execution_count": 14 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_3/Mod_11/student_scores.csv b/Python_For_ML/Week_3/Mod_11/student_scores.csv new file mode 100644 index 0000000..c0e7b95 --- /dev/null +++ b/Python_For_ML/Week_3/Mod_11/student_scores.csv @@ -0,0 +1,21 @@ +Math,Science,English +78,85,82 +56,67,72 +89,92,88 +45,52,58 +70,75,80 +92,90,91 +61,60,62 +55,57,54 +88,89,87 +74,70,76 +66,69,68 +80,82,81 +59,64,60 +73,78,74 +91,93,90 +68,71,69 +77,79,78 +84,86,85 +62,63,65 +95,97,96 From 1bb9031e34591dc82c222db0989f257737084231 Mon Sep 17 00:00:00 2001 From: Mofazzal-Hossain-Evan Date: Thu, 6 Nov 2025 01:02:12 +0600 Subject: [PATCH 69/78] Mod_12 --- Python_For_ML/Week_3/.idea/.gitignore | 8 + Python_For_ML/Week_3/.idea/Week_3.iml | 8 + .../inspectionProfiles/Project_Default.xml | 12 + .../inspectionProfiles/profiles_settings.xml | 6 + Python_For_ML/Week_3/.idea/misc.xml | 7 + Python_For_ML/Week_3/.idea/modules.xml | 8 + Python_For_ML/Week_3/.idea/vcs.xml | 6 + .../12.2 Pandas DataFrame and Series.ipynb | 4333 +++++++++++++++++ .../Week_3/Mod_12/enrollment_data.parquet | Bin 0 -> 1377 bytes Python_For_ML/Week_3/Mod_12/student_data.csv | 22 + Python_For_ML/Week_3/Mod_12/student_data.xlsx | Bin 0 -> 7013 bytes 11 files changed, 4410 insertions(+) create mode 100644 Python_For_ML/Week_3/.idea/.gitignore create mode 100644 Python_For_ML/Week_3/.idea/Week_3.iml create mode 100644 Python_For_ML/Week_3/.idea/inspectionProfiles/Project_Default.xml create mode 100644 Python_For_ML/Week_3/.idea/inspectionProfiles/profiles_settings.xml create mode 100644 Python_For_ML/Week_3/.idea/misc.xml create mode 100644 Python_For_ML/Week_3/.idea/modules.xml create mode 100644 Python_For_ML/Week_3/.idea/vcs.xml create mode 100644 Python_For_ML/Week_3/Mod_12/12.2 Pandas DataFrame and Series.ipynb create mode 100644 Python_For_ML/Week_3/Mod_12/enrollment_data.parquet create mode 100644 Python_For_ML/Week_3/Mod_12/student_data.csv create mode 100644 Python_For_ML/Week_3/Mod_12/student_data.xlsx diff --git a/Python_For_ML/Week_3/.idea/.gitignore b/Python_For_ML/Week_3/.idea/.gitignore new file mode 100644 index 0000000..1c2fda5 --- /dev/null +++ b/Python_For_ML/Week_3/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Python_For_ML/Week_3/.idea/Week_3.iml b/Python_For_ML/Week_3/.idea/Week_3.iml new file mode 100644 index 0000000..a80cbb1 --- /dev/null +++ b/Python_For_ML/Week_3/.idea/Week_3.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/.idea/inspectionProfiles/Project_Default.xml b/Python_For_ML/Week_3/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..d9b8305 --- /dev/null +++ b/Python_For_ML/Week_3/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,12 @@ + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/.idea/inspectionProfiles/profiles_settings.xml b/Python_For_ML/Week_3/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/Python_For_ML/Week_3/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/.idea/misc.xml b/Python_For_ML/Week_3/.idea/misc.xml new file mode 100644 index 0000000..f8a22e9 --- /dev/null +++ b/Python_For_ML/Week_3/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/.idea/modules.xml b/Python_For_ML/Week_3/.idea/modules.xml new file mode 100644 index 0000000..02685ec --- /dev/null +++ b/Python_For_ML/Week_3/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/.idea/vcs.xml b/Python_For_ML/Week_3/.idea/vcs.xml new file mode 100644 index 0000000..c8ade07 --- /dev/null +++ b/Python_For_ML/Week_3/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_12/12.2 Pandas DataFrame and Series.ipynb b/Python_For_ML/Week_3/Mod_12/12.2 Pandas DataFrame and Series.ipynb new file mode 100644 index 0000000..7b4114d --- /dev/null +++ b/Python_For_ML/Week_3/Mod_12/12.2 Pandas DataFrame and Series.ipynb @@ -0,0 +1,4333 @@ +{ + "cells": [ + { + "metadata": {}, + "cell_type": "markdown", + "source": [ + "\n", + "# **12.2 Pandas DataFrame and Series**\n", + "\n" + ], + "id": "2dcf75ef5bf08615" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "import pandas as pd\n", + "\n", + "\n", + "df = pd.read_csv('student_data .csv')\n", + "print(df)" + ], + "id": "544437fde2999324" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T11:56:10.375027Z", + "start_time": "2025-11-05T11:56:10.371Z" + } + }, + "cell_type": "code", + "source": [ + "student_id = df['StudentID']\n", + "print(student_id)" + ], + "id": "457040ce5802e42b", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0 PH1001\n", + "1 PH1002\n", + "2 PH1003\n", + "3 PH1004\n", + "4 PH1005\n", + "5 PH1006\n", + "6 PH1007\n", + "7 PH1008\n", + "8 PH1009\n", + "9 PH1010\n", + "10 PH1011\n", + "11 PH1012\n", + "12 PH1013\n", + "13 PH1014\n", + "14 PH1015\n", + "15 PH1016\n", + "16 PH1017\n", + "17 PH1018\n", + "18 PH1019\n", + "19 PH1020\n", + "20 NaN\n", + "Name: StudentID, dtype: object\n" + ] + } + ], + "execution_count": 3 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_12.3 Working with Different file types in Pandas_**", + "id": "66c9b14f29b59ae1" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T12:17:44.155277Z", + "start_time": "2025-11-05T12:17:44.140399Z" + } + }, + "cell_type": "code", + "source": [ + "csv_data = pd.read_csv('student_data .csv')\n", + "print(csv_data.head())\n", + "print(csv_data.tail())\n", + "print()\n", + "print(csv_data)" + ], + "id": "f53e869645e2ffb3", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN \n", + "\n", + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN \n" + ] + } + ], + "execution_count": 6 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T12:48:51.273669Z", + "start_time": "2025-11-05T12:48:51.233671Z" + } + }, + "cell_type": "code", + "source": [ + "import pandas as pd\n", + "\n", + "df = pd.read_excel('student_data.xlsx')\n", + "\n", + "print(df)" + ], + "id": "be589c6747ffdca2", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n" + ] + } + ], + "execution_count": 28 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T13:03:06.610824Z", + "start_time": "2025-11-05T13:03:06.093421Z" + } + }, + "cell_type": "code", + "source": [ + "import pandas as pd\n", + "\n", + "parquet_file = pd.read_parquet('enrollment_data.parquet')\n", + "print(parquet_file)" + ], + "id": "3dfab45358825366", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Year Programming Digital Marketing\n", + "0 2015 589 734\n", + "1 2016 862 963\n", + "2 2017 1085 1157\n", + "3 2018 1150 1404\n", + "4 2019 1439 1497\n", + "5 2020 1715 1579\n", + "6 2021 1785 1948\n", + "7 2022 1995 2073\n", + "8 2023 2236 2310\n", + "9 2024 2442 2338\n" + ] + } + ], + "execution_count": 2 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_12.4 Pandas Basic Functionalities_**", + "id": "42e9b5afd728c772" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T13:14:29.792585Z", + "start_time": "2025-11-05T13:14:29.777486Z" + } + }, + "cell_type": "code", + "source": [ + "df = pd.read_csv('student_data.csv')\n", + "#print(df)\n", + "df.head(5)" + ], + "id": "cc424b3ea97893f4", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
\n", + "
" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 6 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T13:20:53.220369Z", + "start_time": "2025-11-05T13:20:53.214254Z" + } + }, + "cell_type": "code", + "source": "df.columns", + "id": "4a903b06cb74fac2", + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['StudentID', 'FullName', 'Data Structure Marks', 'Algorithm Marks',\n", + " 'Python Marks', 'CompletionStatus', 'EnrollmentDate', 'Instructor',\n", + " 'Location'],\n", + " dtype='object')" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 7 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T13:35:38.119772Z", + "start_time": "2025-11-05T13:35:38.115142Z" + } + }, + "cell_type": "code", + "source": [ + "import numpy as np\n", + "\n", + "df.columns\n", + "col = np.array(df.columns)\n", + "print(col.dtype)" + ], + "id": "ae0df941cc25f752", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "object\n" + ] + } + ], + "execution_count": 8 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T13:37:41.006550Z", + "start_time": "2025-11-05T13:37:41.000940Z" + } + }, + "cell_type": "code", + "source": [ + "df.index\n", + "ind = np.array(df.index)\n", + "print(ind)" + ], + "id": "b1be7fa3b1bbd661", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20]\n" + ] + } + ], + "execution_count": 9 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T13:39:15.061914Z", + "start_time": "2025-11-05T13:39:15.014253Z" + } + }, + "cell_type": "code", + "source": "df.info()", + "id": "785fa2cba0190fe", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 21 entries, 0 to 20\n", + "Data columns (total 9 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 StudentID 20 non-null object \n", + " 1 FullName 20 non-null object \n", + " 2 Data Structure Marks 16 non-null float64\n", + " 3 Algorithm Marks 16 non-null float64\n", + " 4 Python Marks 15 non-null float64\n", + " 5 CompletionStatus 20 non-null object \n", + " 6 EnrollmentDate 20 non-null object \n", + " 7 Instructor 20 non-null object \n", + " 8 Location 20 non-null object \n", + "dtypes: float64(3), object(6)\n", + "memory usage: 1.6+ KB\n" + ] + } + ], + "execution_count": 11 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T13:42:55.344416Z", + "start_time": "2025-11-05T13:42:55.331234Z" + } + }, + "cell_type": "code", + "source": "df.sample(10)", + "id": "68ffea045f062fb1", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
\n", + "
" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 14 + }, + { + "metadata": {}, + "cell_type": "code", + "source": "df.describe()", + "id": "675dcf6b3d5b536b", + "outputs": [], + "execution_count": null + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **12.5 Dataframe from Inbuilt Data with Column and Indexes**", + "id": "7bc1680666b6cc6f" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T13:55:28.086127Z", + "start_time": "2025-11-05T13:55:28.071076Z" + } + }, + "cell_type": "code", + "source": [ + "my_list = [['Alice', 25], ['Bob', 30], ['Charlie', 28]]\n", + "\n", + "list_df = pd.DataFrame(my_list,columns=['Name','Age'],index=[1,2,3])\n", + "\n", + "print(type(list_df))\n", + "\n", + "list_df\n", + "\n", + "\n", + "\n" + ], + "id": "d3c0a30bc7a05f1f", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "data": { + "text/plain": [ + " Name Age\n", + "1 Alice 25\n", + "2 Bob 30\n", + "3 Charlie 28" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAge
1Alice25
2Bob30
3Charlie28
\n", + "
" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 17 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T14:00:10.372597Z", + "start_time": "2025-11-05T14:00:10.365185Z" + } + }, + "cell_type": "code", + "source": [ + "my_tuple = (('Alice', 25), ('Bob', 30), ('Charlie', 28))\n", + "\n", + "tuple_df = pd.DataFrame(my_tuple)\n", + "tuple_df" + ], + "id": "a51136c6c8641969", + "outputs": [ + { + "data": { + "text/plain": [ + " 0 1\n", + "0 Alice 25\n", + "1 Bob 30\n", + "2 Charlie 28" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
01
0Alice25
1Bob30
2Charlie28
\n", + "
" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 18 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T14:12:02.087500Z", + "start_time": "2025-11-05T14:12:02.081064Z" + } + }, + "cell_type": "code", + "source": [ + "my_dict = {\n", + " 'Name': ['Alice', 'Bob', 'Charlie'],\n", + " 'Age': [25, 29,28]\n", + "}\n", + "\n", + "dict_df = pd.DataFrame(my_dict)\n", + "\n", + "dict_df" + ], + "id": "176c41daa4b5f82", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age\n", + "0 Alice 25\n", + "1 Bob 29\n", + "2 Charlie 28" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAge
0Alice25
1Bob29
2Charlie28
\n", + "
" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 19 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_# 12.6 Accessing Data with Index and Column_**", + "id": "f6cb511c138ec2ac" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T14:20:19.201166Z", + "start_time": "2025-11-05T14:20:19.189146Z" + } + }, + "cell_type": "code", + "source": [ + "df['FullName']\n", + "#type(df['FullName'])\n", + "\n", + "df.loc[[0,2,3,19]]" + ], + "id": "549e7f71c3fd7044", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 26 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T14:21:05.934491Z", + "start_time": "2025-11-05T14:21:05.923703Z" + } + }, + "cell_type": "code", + "source": [ + "#range\n", + "\n", + "df.loc[3:7]" + ], + "id": "40b005353d9fe762", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
\n", + "
" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 27 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T14:23:46.609162Z", + "start_time": "2025-11-05T14:23:46.586087Z" + } + }, + "cell_type": "code", + "source": [ + "# single column\n", + "\n", + "df.loc[:,'Python Marks']\n", + "\n", + "type(df.loc[:,['Python Marks','Algorithm Marks']])" + ], + "id": "eb3a59011d19b819", + "outputs": [ + { + "data": { + "text/plain": [ + "pandas.core.frame.DataFrame" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 30 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T14:25:09.782866Z", + "start_time": "2025-11-05T14:25:09.778442Z" + } + }, + "cell_type": "code", + "source": "df.loc[3:7,'CompletionStatus']", + "id": "49e1fd67af452a39", + "outputs": [ + { + "data": { + "text/plain": [ + "3 Completed\n", + "4 In Progress\n", + "5 Completed\n", + "6 In Progress\n", + "7 Completed\n", + "Name: CompletionStatus, dtype: object" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 31 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_12.7 Changing Index and Columns and iloc_**", + "id": "d1c7b89588e59d6d" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T15:20:05.232212Z", + "start_time": "2025-11-05T15:20:05.222723Z" + } + }, + "cell_type": "code", + "source": [ + "df = pd.read_csv('student_data.csv')\n", + "\n", + "df_index= df.set_index('StudentID', inplace=True)\n", + "print(df_index)" + ], + "id": "72dce73915b9359", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "None\n" + ] + } + ], + "execution_count": 36 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T15:47:29.803459Z", + "start_time": "2025-11-05T15:47:29.782959Z" + } + }, + "cell_type": "code", + "source": "df_index.iloc[:,0:5]", + "id": "c3a2e586c0abcf2c", + "outputs": [ + { + "ename": "AttributeError", + "evalue": "'NoneType' object has no attribute 'iloc'", + "output_type": "error", + "traceback": [ + "\u001B[31m---------------------------------------------------------------------------\u001B[39m", + "\u001B[31mAttributeError\u001B[39m Traceback (most recent call last)", + "\u001B[36mCell\u001B[39m\u001B[36m \u001B[39m\u001B[32mIn[47]\u001B[39m\u001B[32m, line 1\u001B[39m\n\u001B[32m----> \u001B[39m\u001B[32m1\u001B[39m \u001B[43mdf_index\u001B[49m\u001B[43m.\u001B[49m\u001B[43miloc\u001B[49m[:,\u001B[32m0\u001B[39m:\u001B[32m5\u001B[39m]\n", + "\u001B[31mAttributeError\u001B[39m: 'NoneType' object has no attribute 'iloc'" + ] + } + ], + "execution_count": 47 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T15:25:15.019184Z", + "start_time": "2025-11-05T15:25:15.007129Z" + } + }, + "cell_type": "code", + "source": [ + "df.rename(columns={'FullName':'Full Name','Algorithm Marks' :'Algo Marks'},inplace=True)\n", + "\n", + "df" + ], + "id": "980ce3059671a01e", + "outputs": [ + { + "data": { + "text/plain": [ + " Full Name Data Structure Marks Algo Marks Python Marks \\\n", + "StudentID \n", + "PH1001 Alif Rahman 85.0 85.0 88.0 \n", + "PH1002 Fatima Akhter 92.0 92.0 NaN \n", + "PH1003 Imran Hossain 88.0 88.0 85.0 \n", + "PH1004 Jannatul Ferdous 78.0 78.0 82.0 \n", + "PH1005 Kamal Uddin NaN NaN 95.0 \n", + "PH1006 Laila Begum 75.0 75.0 78.0 \n", + "PH1007 Mahmudul Hasan 80.0 80.0 NaN \n", + "PH1008 Nadia Islam 81.0 81.0 85.0 \n", + "PH1009 Omar Faruq 72.0 72.0 76.0 \n", + "PH1010 Priya Sharma 89.0 89.0 88.0 \n", + "PH1011 Rahim Sheikh NaN NaN 91.0 \n", + "PH1012 Sadia Chowdhury 85.0 85.0 87.0 \n", + "PH1013 Tanvir Ahmed 75.0 75.0 79.0 \n", + "PH1014 Urmi Akter NaN NaN NaN \n", + "PH1015 Wahiduzzaman 86.0 86.0 84.0 \n", + "PH1016 Ziaur Rahman 94.0 94.0 NaN \n", + "PH1017 Afsana Mimi 90.0 90.0 93.0 \n", + "PH1018 Babul Ahmed 88.0 88.0 85.0 \n", + "PH1019 Faria Rahman NaN NaN NaN \n", + "PH1020 Nasir Khan 86.0 86.0 89.0 \n", + "NaN NaN NaN NaN NaN \n", + "\n", + " CompletionStatus EnrollmentDate Instructor Location \n", + "StudentID \n", + "PH1001 Completed 2024-01-15 Mr. Karim Dhaka \n", + "PH1002 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "PH1003 Completed 2024-02-10 Mr. Karim Dhaka \n", + "PH1004 Completed 2024-02-12 Ms. Salma Sylhet \n", + "PH1005 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "PH1006 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "PH1007 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "PH1008 Completed 2024-04-22 Ms. Salma Chattogram \n", + "PH1009 Completed 2024-05-16 Mr. David Dhaka \n", + "PH1010 Completed 2024-05-20 Ms. Salma Sylhet \n", + "PH1011 In Progress 2024-06-11 Mr. Karim Khulna \n", + "PH1012 Completed 2024-06-14 Ms. Salma Chattogram \n", + "PH1013 Completed 2024-07-02 Mr. David Dhaka \n", + "PH1014 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "PH1015 Completed 2024-08-18 Mr. Karim Dhaka \n", + "PH1016 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "PH1017 Completed 2025-09-01 Mr. Karim Dhaka \n", + "PH1018 Completed 2025-09-05 Ms. Salma Sylhet \n", + "PH1019 Not Started 2025-09-15 Mr. David Chattogram \n", + "PH1020 Completed 2025-10-02 Ms. Salma Dhaka \n", + "NaN NaN NaN NaN NaN " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Full NameData Structure MarksAlgo MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
StudentID
PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
NaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "
" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 37 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_12.8 Dropping rows and columns,Assigning values and Iteration_**\n", + "id": "ab259f192d2fc8aa" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T15:36:23.530718Z", + "start_time": "2025-11-05T15:36:23.519050Z" + } + }, + "cell_type": "code", + "source": "df", + "id": "25591c3fd638a35d", + "outputs": [ + { + "data": { + "text/plain": [ + " Full Name Data Structure Marks Algo Marks Python Marks \\\n", + "StudentID \n", + "PH1001 Alif Rahman 85.0 85.0 88.0 \n", + "PH1002 Fatima Akhter 92.0 92.0 NaN \n", + "PH1003 Imran Hossain 88.0 88.0 85.0 \n", + "PH1004 Jannatul Ferdous 78.0 78.0 82.0 \n", + "PH1005 Kamal Uddin NaN NaN 95.0 \n", + "PH1006 Laila Begum 75.0 75.0 78.0 \n", + "PH1007 Mahmudul Hasan 80.0 80.0 NaN \n", + "PH1008 Nadia Islam 81.0 81.0 85.0 \n", + "PH1009 Omar Faruq 72.0 72.0 76.0 \n", + "PH1010 Priya Sharma 89.0 89.0 88.0 \n", + "PH1011 Rahim Sheikh NaN NaN 91.0 \n", + "PH1012 Sadia Chowdhury 85.0 85.0 87.0 \n", + "PH1013 Tanvir Ahmed 75.0 75.0 79.0 \n", + "PH1014 Urmi Akter NaN NaN NaN \n", + "PH1015 Wahiduzzaman 86.0 86.0 84.0 \n", + "PH1016 Ziaur Rahman 94.0 94.0 NaN \n", + "PH1017 Afsana Mimi 90.0 90.0 93.0 \n", + "PH1018 Babul Ahmed 88.0 88.0 85.0 \n", + "PH1019 Faria Rahman NaN NaN NaN \n", + "PH1020 Nasir Khan 86.0 86.0 89.0 \n", + "NaN NaN NaN NaN NaN \n", + "\n", + " CompletionStatus EnrollmentDate Instructor Location \n", + "StudentID \n", + "PH1001 Completed 2024-01-15 Mr. Karim Dhaka \n", + "PH1002 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "PH1003 Completed 2024-02-10 Mr. Karim Dhaka \n", + "PH1004 Completed 2024-02-12 Ms. Salma Sylhet \n", + "PH1005 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "PH1006 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "PH1007 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "PH1008 Completed 2024-04-22 Ms. Salma Chattogram \n", + "PH1009 Completed 2024-05-16 Mr. David Dhaka \n", + "PH1010 Completed 2024-05-20 Ms. Salma Sylhet \n", + "PH1011 In Progress 2024-06-11 Mr. Karim Khulna \n", + "PH1012 Completed 2024-06-14 Ms. Salma Chattogram \n", + "PH1013 Completed 2024-07-02 Mr. David Dhaka \n", + "PH1014 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "PH1015 Completed 2024-08-18 Mr. Karim Dhaka \n", + "PH1016 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "PH1017 Completed 2025-09-01 Mr. Karim Dhaka \n", + "PH1018 Completed 2025-09-05 Ms. Salma Sylhet \n", + "PH1019 Not Started 2025-09-15 Mr. David Chattogram \n", + "PH1020 Completed 2025-10-02 Ms. Salma Dhaka \n", + "NaN NaN NaN NaN NaN " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Full NameData Structure MarksAlgo MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
StudentID
PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
NaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "
" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 41 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T15:46:29.111858Z", + "start_time": "2025-11-05T15:46:29.034635Z" + } + }, + "cell_type": "code", + "source": [ + "# row deletion\n", + "df.drop(0, inplace=True)\n", + "\n", + "df" + ], + "id": "3f4394e9835a1f98", + "outputs": [ + { + "ename": "KeyError", + "evalue": "'[0] not found in axis'", + "output_type": "error", + "traceback": [ + "\u001B[31m---------------------------------------------------------------------------\u001B[39m", + "\u001B[31mKeyError\u001B[39m Traceback (most recent call last)", + "\u001B[36mCell\u001B[39m\u001B[36m \u001B[39m\u001B[32mIn[45]\u001B[39m\u001B[32m, line 2\u001B[39m\n\u001B[32m 1\u001B[39m \u001B[38;5;66;03m# row deletion\u001B[39;00m\n\u001B[32m----> \u001B[39m\u001B[32m2\u001B[39m \u001B[43mdf\u001B[49m\u001B[43m.\u001B[49m\u001B[43mdrop\u001B[49m\u001B[43m(\u001B[49m\u001B[32;43m0\u001B[39;49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43minplace\u001B[49m\u001B[43m=\u001B[49m\u001B[38;5;28;43;01mTrue\u001B[39;49;00m\u001B[43m)\u001B[49m\n\u001B[32m 4\u001B[39m df\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\frame.py:5603\u001B[39m, in \u001B[36mDataFrame.drop\u001B[39m\u001B[34m(self, labels, axis, index, columns, level, inplace, errors)\u001B[39m\n\u001B[32m 5455\u001B[39m \u001B[38;5;28;01mdef\u001B[39;00m\u001B[38;5;250m \u001B[39m\u001B[34mdrop\u001B[39m(\n\u001B[32m 5456\u001B[39m \u001B[38;5;28mself\u001B[39m,\n\u001B[32m 5457\u001B[39m labels: IndexLabel | \u001B[38;5;28;01mNone\u001B[39;00m = \u001B[38;5;28;01mNone\u001B[39;00m,\n\u001B[32m (...)\u001B[39m\u001B[32m 5464\u001B[39m errors: IgnoreRaise = \u001B[33m\"\u001B[39m\u001B[33mraise\u001B[39m\u001B[33m\"\u001B[39m,\n\u001B[32m 5465\u001B[39m ) -> DataFrame | \u001B[38;5;28;01mNone\u001B[39;00m:\n\u001B[32m 5466\u001B[39m \u001B[38;5;250m \u001B[39m\u001B[33;03m\"\"\"\u001B[39;00m\n\u001B[32m 5467\u001B[39m \u001B[33;03m Drop specified labels from rows or columns.\u001B[39;00m\n\u001B[32m 5468\u001B[39m \n\u001B[32m (...)\u001B[39m\u001B[32m 5601\u001B[39m \u001B[33;03m weight 1.0 0.8\u001B[39;00m\n\u001B[32m 5602\u001B[39m \u001B[33;03m \"\"\"\u001B[39;00m\n\u001B[32m-> \u001B[39m\u001B[32m5603\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43msuper\u001B[39;49m\u001B[43m(\u001B[49m\u001B[43m)\u001B[49m\u001B[43m.\u001B[49m\u001B[43mdrop\u001B[49m\u001B[43m(\u001B[49m\n\u001B[32m 5604\u001B[39m \u001B[43m \u001B[49m\u001B[43mlabels\u001B[49m\u001B[43m=\u001B[49m\u001B[43mlabels\u001B[49m\u001B[43m,\u001B[49m\n\u001B[32m 5605\u001B[39m \u001B[43m \u001B[49m\u001B[43maxis\u001B[49m\u001B[43m=\u001B[49m\u001B[43maxis\u001B[49m\u001B[43m,\u001B[49m\n\u001B[32m 5606\u001B[39m \u001B[43m \u001B[49m\u001B[43mindex\u001B[49m\u001B[43m=\u001B[49m\u001B[43mindex\u001B[49m\u001B[43m,\u001B[49m\n\u001B[32m 5607\u001B[39m \u001B[43m \u001B[49m\u001B[43mcolumns\u001B[49m\u001B[43m=\u001B[49m\u001B[43mcolumns\u001B[49m\u001B[43m,\u001B[49m\n\u001B[32m 5608\u001B[39m \u001B[43m \u001B[49m\u001B[43mlevel\u001B[49m\u001B[43m=\u001B[49m\u001B[43mlevel\u001B[49m\u001B[43m,\u001B[49m\n\u001B[32m 5609\u001B[39m \u001B[43m \u001B[49m\u001B[43minplace\u001B[49m\u001B[43m=\u001B[49m\u001B[43minplace\u001B[49m\u001B[43m,\u001B[49m\n\u001B[32m 5610\u001B[39m \u001B[43m \u001B[49m\u001B[43merrors\u001B[49m\u001B[43m=\u001B[49m\u001B[43merrors\u001B[49m\u001B[43m,\u001B[49m\n\u001B[32m 5611\u001B[39m \u001B[43m \u001B[49m\u001B[43m)\u001B[49m\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\generic.py:4810\u001B[39m, in \u001B[36mNDFrame.drop\u001B[39m\u001B[34m(self, labels, axis, index, columns, level, inplace, errors)\u001B[39m\n\u001B[32m 4808\u001B[39m \u001B[38;5;28;01mfor\u001B[39;00m axis, labels \u001B[38;5;129;01min\u001B[39;00m axes.items():\n\u001B[32m 4809\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m labels \u001B[38;5;129;01mis\u001B[39;00m \u001B[38;5;129;01mnot\u001B[39;00m \u001B[38;5;28;01mNone\u001B[39;00m:\n\u001B[32m-> \u001B[39m\u001B[32m4810\u001B[39m obj = \u001B[43mobj\u001B[49m\u001B[43m.\u001B[49m\u001B[43m_drop_axis\u001B[49m\u001B[43m(\u001B[49m\u001B[43mlabels\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43maxis\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mlevel\u001B[49m\u001B[43m=\u001B[49m\u001B[43mlevel\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43merrors\u001B[49m\u001B[43m=\u001B[49m\u001B[43merrors\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 4812\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m inplace:\n\u001B[32m 4813\u001B[39m \u001B[38;5;28mself\u001B[39m._update_inplace(obj)\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\generic.py:4852\u001B[39m, in \u001B[36mNDFrame._drop_axis\u001B[39m\u001B[34m(self, labels, axis, level, errors, only_slice)\u001B[39m\n\u001B[32m 4850\u001B[39m new_axis = axis.drop(labels, level=level, errors=errors)\n\u001B[32m 4851\u001B[39m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[32m-> \u001B[39m\u001B[32m4852\u001B[39m new_axis = \u001B[43maxis\u001B[49m\u001B[43m.\u001B[49m\u001B[43mdrop\u001B[49m\u001B[43m(\u001B[49m\u001B[43mlabels\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43merrors\u001B[49m\u001B[43m=\u001B[49m\u001B[43merrors\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 4853\u001B[39m indexer = axis.get_indexer(new_axis)\n\u001B[32m 4855\u001B[39m \u001B[38;5;66;03m# Case for non-unique axis\u001B[39;00m\n\u001B[32m 4856\u001B[39m \u001B[38;5;28;01melse\u001B[39;00m:\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\indexes\\base.py:7136\u001B[39m, in \u001B[36mIndex.drop\u001B[39m\u001B[34m(self, labels, errors)\u001B[39m\n\u001B[32m 7134\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m mask.any():\n\u001B[32m 7135\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m errors != \u001B[33m\"\u001B[39m\u001B[33mignore\u001B[39m\u001B[33m\"\u001B[39m:\n\u001B[32m-> \u001B[39m\u001B[32m7136\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mKeyError\u001B[39;00m(\u001B[33mf\u001B[39m\u001B[33m\"\u001B[39m\u001B[38;5;132;01m{\u001B[39;00mlabels[mask].tolist()\u001B[38;5;132;01m}\u001B[39;00m\u001B[33m not found in axis\u001B[39m\u001B[33m\"\u001B[39m)\n\u001B[32m 7137\u001B[39m indexer = indexer[~mask]\n\u001B[32m 7138\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28mself\u001B[39m.delete(indexer)\n", + "\u001B[31mKeyError\u001B[39m: '[0] not found in axis'" + ] + } + ], + "execution_count": 45 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T15:47:56.171442Z", + "start_time": "2025-11-05T15:47:56.157795Z" + } + }, + "cell_type": "code", + "source": [ + "# column deletion\n", + "\n", + "df.drop('Instructor',axis=1, inplace=True)\n", + "\n", + "df" + ], + "id": "5b1736cdb4342f24", + "outputs": [ + { + "data": { + "text/plain": [ + " Full Name Data Structure Marks Algo Marks Python Marks \\\n", + "StudentID \n", + "PH1001 Alif Rahman 85.0 85.0 88.0 \n", + "PH1002 Fatima Akhter 92.0 92.0 NaN \n", + "PH1003 Imran Hossain 88.0 88.0 85.0 \n", + "PH1004 Jannatul Ferdous 78.0 78.0 82.0 \n", + "PH1005 Kamal Uddin NaN NaN 95.0 \n", + "PH1006 Laila Begum 75.0 75.0 78.0 \n", + "PH1007 Mahmudul Hasan 80.0 80.0 NaN \n", + "PH1008 Nadia Islam 81.0 81.0 85.0 \n", + "PH1009 Omar Faruq 72.0 72.0 76.0 \n", + "PH1010 Priya Sharma 89.0 89.0 88.0 \n", + "PH1011 Rahim Sheikh NaN NaN 91.0 \n", + "PH1012 Sadia Chowdhury 85.0 85.0 87.0 \n", + "PH1013 Tanvir Ahmed 75.0 75.0 79.0 \n", + "PH1014 Urmi Akter NaN NaN NaN \n", + "PH1015 Wahiduzzaman 86.0 86.0 84.0 \n", + "PH1016 Ziaur Rahman 94.0 94.0 NaN \n", + "PH1017 Afsana Mimi 90.0 90.0 93.0 \n", + "PH1018 Babul Ahmed 88.0 88.0 85.0 \n", + "PH1019 Faria Rahman NaN NaN NaN \n", + "PH1020 Nasir Khan 86.0 86.0 89.0 \n", + "NaN NaN NaN NaN NaN \n", + "\n", + " CompletionStatus EnrollmentDate Location \n", + "StudentID \n", + "PH1001 Completed 2024-01-15 Dhaka \n", + "PH1002 In Progress 2024-01-20 Chattogram \n", + "PH1003 Completed 2024-02-10 Dhaka \n", + "PH1004 Completed 2024-02-12 Sylhet \n", + "PH1005 In Progress 2024-03-05 Chattogram \n", + "PH1006 Completed 2024-03-08 Rajshahi \n", + "PH1007 In Progress 2024-04-01 Dhaka \n", + "PH1008 Completed 2024-04-22 Chattogram \n", + "PH1009 Completed 2024-05-16 Dhaka \n", + "PH1010 Completed 2024-05-20 Sylhet \n", + "PH1011 In Progress 2024-06-11 Khulna \n", + "PH1012 Completed 2024-06-14 Chattogram \n", + "PH1013 Completed 2024-07-02 Dhaka \n", + "PH1014 Not Started 2024-07-09 Rajshahi \n", + "PH1015 Completed 2024-08-18 Dhaka \n", + "PH1016 In Progress 2024-08-21 Chattogram \n", + "PH1017 Completed 2025-09-01 Dhaka \n", + "PH1018 Completed 2025-09-05 Sylhet \n", + "PH1019 Not Started 2025-09-15 Chattogram \n", + "PH1020 Completed 2025-10-02 Dhaka \n", + "NaN NaN NaN NaN " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Full NameData Structure MarksAlgo MarksPython MarksCompletionStatusEnrollmentDateLocation
StudentID
PH1001Alif Rahman85.085.088.0Completed2024-01-15Dhaka
PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Chattogram
PH1003Imran Hossain88.088.085.0Completed2024-02-10Dhaka
PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Sylhet
PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Chattogram
PH1006Laila Begum75.075.078.0Completed2024-03-08Rajshahi
PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Dhaka
PH1008Nadia Islam81.081.085.0Completed2024-04-22Chattogram
PH1009Omar Faruq72.072.076.0Completed2024-05-16Dhaka
PH1010Priya Sharma89.089.088.0Completed2024-05-20Sylhet
PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Khulna
PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Chattogram
PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Dhaka
PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Rajshahi
PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Dhaka
PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Chattogram
PH1017Afsana Mimi90.090.093.0Completed2025-09-01Dhaka
PH1018Babul Ahmed88.088.085.0Completed2025-09-05Sylhet
PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Chattogram
PH1020Nasir Khan86.086.089.0Completed2025-10-02Dhaka
NaNNaNNaNNaNNaNNaNNaNNaN
\n", + "
" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 48 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T15:51:21.777780Z", + "start_time": "2025-11-05T15:51:21.767689Z" + } + }, + "cell_type": "code", + "source": [ + "df.loc[1,'Pyhon Marks'] = 90\n", + "df.head(5)\n", + "df.loc[1,'CompletionStatus'] = 'Completed'\n", + "df.head(5)" + ], + "id": "33ab3df01c9f3efd", + "outputs": [ + { + "data": { + "text/plain": [ + " Full Name Data Structure Marks Algo Marks Python Marks \\\n", + "StudentID \n", + "PH1001 Alif Rahman 85.0 85.0 88.0 \n", + "PH1002 Fatima Akhter 92.0 92.0 NaN \n", + "PH1003 Imran Hossain 88.0 88.0 85.0 \n", + "PH1004 Jannatul Ferdous 78.0 78.0 82.0 \n", + "PH1005 Kamal Uddin NaN NaN 95.0 \n", + "\n", + " CompletionStatus EnrollmentDate Location Pyhon Marks \n", + "StudentID \n", + "PH1001 Completed 2024-01-15 Dhaka NaN \n", + "PH1002 In Progress 2024-01-20 Chattogram NaN \n", + "PH1003 Completed 2024-02-10 Dhaka NaN \n", + "PH1004 Completed 2024-02-12 Sylhet NaN \n", + "PH1005 In Progress 2024-03-05 Chattogram NaN " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Full NameData Structure MarksAlgo MarksPython MarksCompletionStatusEnrollmentDateLocationPyhon Marks
StudentID
PH1001Alif Rahman85.085.088.0Completed2024-01-15DhakaNaN
PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20ChattogramNaN
PH1003Imran Hossain88.088.085.0Completed2024-02-10DhakaNaN
PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12SylhetNaN
PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05ChattogramNaN
\n", + "
" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 51 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T16:11:10.311531Z", + "start_time": "2025-11-05T16:11:10.305162Z" + } + }, + "cell_type": "code", + "source": [ + "# ধাপ ১: প্রথমে দেখি কী আছে\n", + "print(\"Columns:\", df.columns.tolist())\n", + "print(\"Index:\", df.index.tolist())\n", + "print(df.head())" + ], + "id": "3f82792f87c30356", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Columns: ['Full Name', 'Data Structure Marks', 'Algo Marks', 'Python Marks', 'CompletionStatus', 'EnrollmentDate', 'Location', 'Pyhon Marks']\n", + "Index: ['PH1001', 'PH1002', 'PH1003', 'PH1004', 'PH1005', 'PH1006', 'PH1007', 'PH1008', 'PH1009', 'PH1010', 'PH1011', 'PH1012', 'PH1013', 'PH1014', 'PH1015', 'PH1016', 'PH1017', 'PH1018', 'PH1019', 'PH1020', nan, 1]\n", + " Full Name Data Structure Marks Algo Marks Python Marks \\\n", + "StudentID \n", + "PH1001 Alif Rahman 85.0 85.0 88.0 \n", + "PH1002 Fatima Akhter 92.0 92.0 NaN \n", + "PH1003 Imran Hossain 88.0 88.0 85.0 \n", + "PH1004 Jannatul Ferdous 78.0 78.0 82.0 \n", + "PH1005 Kamal Uddin NaN NaN 95.0 \n", + "\n", + " CompletionStatus EnrollmentDate Location Pyhon Marks \n", + "StudentID \n", + "PH1001 Completed 2024-01-15 Dhaka NaN \n", + "PH1002 In Progress 2024-01-20 Chattogram NaN \n", + "PH1003 Completed 2024-02-10 Dhaka NaN \n", + "PH1004 Completed 2024-02-12 Sylhet NaN \n", + "PH1005 In Progress 2024-03-05 Chattogram NaN \n" + ] + } + ], + "execution_count": 58 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T17:14:27.004581Z", + "start_time": "2025-11-05T17:14:26.678108Z" + } + }, + "cell_type": "code", + "source": [ + "#df.loc[:3, 'Python Marks'] += 2\n", + "\n", + "#df.head()\n", + "\n", + "df.loc[df.index[1:4], 'Python Marks'] += 2\n", + "df.head()" + ], + "id": "862ad023d477d95d", + "outputs": [ + { + "data": { + "text/plain": [ + " Full Name Data Structure Marks Algo Marks Python Marks \\\n", + "StudentID \n", + "PH1001 Alif Rahman 85.0 85.0 88.0 \n", + "PH1002 Fatima Akhter 92.0 92.0 NaN \n", + "PH1003 Imran Hossain 88.0 88.0 87.0 \n", + "PH1004 Jannatul Ferdous 78.0 78.0 84.0 \n", + "PH1005 Kamal Uddin NaN NaN 95.0 \n", + "\n", + " CompletionStatus EnrollmentDate Location Pyhon Marks \n", + "StudentID \n", + "PH1001 Completed 2024-01-15 Dhaka NaN \n", + "PH1002 In Progress 2024-01-20 Chattogram NaN \n", + "PH1003 Completed 2024-02-10 Dhaka NaN \n", + "PH1004 Completed 2024-02-12 Sylhet NaN \n", + "PH1005 In Progress 2024-03-05 Chattogram NaN " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Full NameData Structure MarksAlgo MarksPython MarksCompletionStatusEnrollmentDateLocationPyhon Marks
StudentID
PH1001Alif Rahman85.085.088.0Completed2024-01-15DhakaNaN
PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20ChattogramNaN
PH1003Imran Hossain88.088.087.0Completed2024-02-10DhakaNaN
PH1004Jannatul Ferdous78.078.084.0Completed2024-02-12SylhetNaN
PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05ChattogramNaN
\n", + "
" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 61 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T17:17:25.956796Z", + "start_time": "2025-11-05T17:17:25.940915Z" + } + }, + "cell_type": "code", + "source": [ + "for i,series in df.iterrows():\n", + " print(f\"{i} : {series}\")" + ], + "id": "e9e8e804816ee605", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "PH1001 : Full Name Alif Rahman\n", + "Data Structure Marks 85.0\n", + "Algo Marks 85.0\n", + "Python Marks 88.0\n", + "CompletionStatus Completed\n", + "EnrollmentDate 2024-01-15\n", + "Location Dhaka\n", + "Pyhon Marks NaN\n", + "Name: PH1001, dtype: object\n", + "PH1002 : Full Name Fatima Akhter\n", + "Data Structure Marks 92.0\n", + "Algo Marks 92.0\n", + "Python Marks NaN\n", + "CompletionStatus In Progress\n", + "EnrollmentDate 2024-01-20\n", + "Location Chattogram\n", + "Pyhon Marks NaN\n", + "Name: PH1002, dtype: object\n", + "PH1003 : Full Name Imran Hossain\n", + "Data Structure Marks 88.0\n", + "Algo Marks 88.0\n", + "Python Marks 87.0\n", + "CompletionStatus Completed\n", + "EnrollmentDate 2024-02-10\n", + "Location Dhaka\n", + "Pyhon Marks NaN\n", + "Name: PH1003, dtype: object\n", + "PH1004 : Full Name Jannatul Ferdous\n", + "Data Structure Marks 78.0\n", + "Algo Marks 78.0\n", + "Python Marks 84.0\n", + "CompletionStatus Completed\n", + "EnrollmentDate 2024-02-12\n", + "Location Sylhet\n", + "Pyhon Marks NaN\n", + "Name: PH1004, dtype: object\n", + "PH1005 : Full Name Kamal Uddin\n", + "Data Structure Marks NaN\n", + "Algo Marks NaN\n", + "Python Marks 95.0\n", + "CompletionStatus In Progress\n", + "EnrollmentDate 2024-03-05\n", + "Location Chattogram\n", + "Pyhon Marks NaN\n", + "Name: PH1005, dtype: object\n", + "PH1006 : Full Name Laila Begum\n", + "Data Structure Marks 75.0\n", + "Algo Marks 75.0\n", + "Python Marks 78.0\n", + "CompletionStatus Completed\n", + "EnrollmentDate 2024-03-08\n", + "Location Rajshahi\n", + "Pyhon Marks NaN\n", + "Name: PH1006, dtype: object\n", + "PH1007 : Full Name Mahmudul Hasan\n", + "Data Structure Marks 80.0\n", + "Algo Marks 80.0\n", + "Python Marks NaN\n", + "CompletionStatus In Progress\n", + "EnrollmentDate 2024-04-01\n", + "Location Dhaka\n", + "Pyhon Marks NaN\n", + "Name: PH1007, dtype: object\n", + "PH1008 : Full Name Nadia Islam\n", + "Data Structure Marks 81.0\n", + "Algo Marks 81.0\n", + "Python Marks 85.0\n", + "CompletionStatus Completed\n", + "EnrollmentDate 2024-04-22\n", + "Location Chattogram\n", + "Pyhon Marks NaN\n", + "Name: PH1008, dtype: object\n", + "PH1009 : Full Name Omar Faruq\n", + "Data Structure Marks 72.0\n", + "Algo Marks 72.0\n", + "Python Marks 76.0\n", + "CompletionStatus Completed\n", + "EnrollmentDate 2024-05-16\n", + "Location Dhaka\n", + "Pyhon Marks NaN\n", + "Name: PH1009, dtype: object\n", + "PH1010 : Full Name Priya Sharma\n", + "Data Structure Marks 89.0\n", + "Algo Marks 89.0\n", + "Python Marks 88.0\n", + "CompletionStatus Completed\n", + "EnrollmentDate 2024-05-20\n", + "Location Sylhet\n", + "Pyhon Marks NaN\n", + "Name: PH1010, dtype: object\n", + "PH1011 : Full Name Rahim Sheikh\n", + "Data Structure Marks NaN\n", + "Algo Marks NaN\n", + "Python Marks 91.0\n", + "CompletionStatus In Progress\n", + "EnrollmentDate 2024-06-11\n", + "Location Khulna\n", + "Pyhon Marks NaN\n", + "Name: PH1011, dtype: object\n", + "PH1012 : Full Name Sadia Chowdhury\n", + "Data Structure Marks 85.0\n", + "Algo Marks 85.0\n", + "Python Marks 87.0\n", + "CompletionStatus Completed\n", + "EnrollmentDate 2024-06-14\n", + "Location Chattogram\n", + "Pyhon Marks NaN\n", + "Name: PH1012, dtype: object\n", + "PH1013 : Full Name Tanvir Ahmed\n", + "Data Structure Marks 75.0\n", + "Algo Marks 75.0\n", + "Python Marks 79.0\n", + "CompletionStatus Completed\n", + "EnrollmentDate 2024-07-02\n", + "Location Dhaka\n", + "Pyhon Marks NaN\n", + "Name: PH1013, dtype: object\n", + "PH1014 : Full Name Urmi Akter\n", + "Data Structure Marks NaN\n", + "Algo Marks NaN\n", + "Python Marks NaN\n", + "CompletionStatus Not Started\n", + "EnrollmentDate 2024-07-09\n", + "Location Rajshahi\n", + "Pyhon Marks NaN\n", + "Name: PH1014, dtype: object\n", + "PH1015 : Full Name Wahiduzzaman\n", + "Data Structure Marks 86.0\n", + "Algo Marks 86.0\n", + "Python Marks 84.0\n", + "CompletionStatus Completed\n", + "EnrollmentDate 2024-08-18\n", + "Location Dhaka\n", + "Pyhon Marks NaN\n", + "Name: PH1015, dtype: object\n", + "PH1016 : Full Name Ziaur Rahman\n", + "Data Structure Marks 94.0\n", + "Algo Marks 94.0\n", + "Python Marks NaN\n", + "CompletionStatus In Progress\n", + "EnrollmentDate 2024-08-21\n", + "Location Chattogram\n", + "Pyhon Marks NaN\n", + "Name: PH1016, dtype: object\n", + "PH1017 : Full Name Afsana Mimi\n", + "Data Structure Marks 90.0\n", + "Algo Marks 90.0\n", + "Python Marks 93.0\n", + "CompletionStatus Completed\n", + "EnrollmentDate 2025-09-01\n", + "Location Dhaka\n", + "Pyhon Marks NaN\n", + "Name: PH1017, dtype: object\n", + "PH1018 : Full Name Babul Ahmed\n", + "Data Structure Marks 88.0\n", + "Algo Marks 88.0\n", + "Python Marks 85.0\n", + "CompletionStatus Completed\n", + "EnrollmentDate 2025-09-05\n", + "Location Sylhet\n", + "Pyhon Marks NaN\n", + "Name: PH1018, dtype: object\n", + "PH1019 : Full Name Faria Rahman\n", + "Data Structure Marks NaN\n", + "Algo Marks NaN\n", + "Python Marks NaN\n", + "CompletionStatus Not Started\n", + "EnrollmentDate 2025-09-15\n", + "Location Chattogram\n", + "Pyhon Marks NaN\n", + "Name: PH1019, dtype: object\n", + "PH1020 : Full Name Nasir Khan\n", + "Data Structure Marks 86.0\n", + "Algo Marks 86.0\n", + "Python Marks 89.0\n", + "CompletionStatus Completed\n", + "EnrollmentDate 2025-10-02\n", + "Location Dhaka\n", + "Pyhon Marks NaN\n", + "Name: PH1020, dtype: object\n", + "nan : Full Name NaN\n", + "Data Structure Marks NaN\n", + "Algo Marks NaN\n", + "Python Marks NaN\n", + "CompletionStatus NaN\n", + "EnrollmentDate NaN\n", + "Location NaN\n", + "Pyhon Marks NaN\n", + "Name: nan, dtype: object\n", + "1 : Full Name NaN\n", + "Data Structure Marks NaN\n", + "Algo Marks NaN\n", + "Python Marks NaN\n", + "CompletionStatus Completed\n", + "EnrollmentDate NaN\n", + "Location NaN\n", + "Pyhon Marks 92.0\n", + "Name: 1, dtype: object\n" + ] + } + ], + "execution_count": 62 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T17:49:47.841099Z", + "start_time": "2025-11-05T17:49:47.836750Z" + } + }, + "cell_type": "code", + "source": [ + "for i in df.itertuples(index=True):\n", + " print(i)" + ], + "id": "e7c01cdc321204c5", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Pandas(Index='PH1001', _1='Alif Rahman', _2=85.0, _3=85.0, _4=88.0, CompletionStatus='Completed', EnrollmentDate='2024-01-15', Location='Dhaka', _8=nan)\n", + "Pandas(Index='PH1002', _1='Fatima Akhter', _2=92.0, _3=92.0, _4=nan, CompletionStatus='In Progress', EnrollmentDate='2024-01-20', Location='Chattogram', _8=nan)\n", + "Pandas(Index='PH1003', _1='Imran Hossain', _2=88.0, _3=88.0, _4=87.0, CompletionStatus='Completed', EnrollmentDate='2024-02-10', Location='Dhaka', _8=nan)\n", + "Pandas(Index='PH1004', _1='Jannatul Ferdous', _2=78.0, _3=78.0, _4=84.0, CompletionStatus='Completed', EnrollmentDate='2024-02-12', Location='Sylhet', _8=nan)\n", + "Pandas(Index='PH1005', _1='Kamal Uddin', _2=nan, _3=nan, _4=95.0, CompletionStatus='In Progress', EnrollmentDate='2024-03-05', Location='Chattogram', _8=nan)\n", + "Pandas(Index='PH1006', _1='Laila Begum', _2=75.0, _3=75.0, _4=78.0, CompletionStatus='Completed', EnrollmentDate='2024-03-08', Location='Rajshahi', _8=nan)\n", + "Pandas(Index='PH1007', _1='Mahmudul Hasan', _2=80.0, _3=80.0, _4=nan, CompletionStatus='In Progress', EnrollmentDate='2024-04-01', Location='Dhaka', _8=nan)\n", + "Pandas(Index='PH1008', _1='Nadia Islam', _2=81.0, _3=81.0, _4=85.0, CompletionStatus='Completed', EnrollmentDate='2024-04-22', Location='Chattogram', _8=nan)\n", + "Pandas(Index='PH1009', _1='Omar Faruq', _2=72.0, _3=72.0, _4=76.0, CompletionStatus='Completed', EnrollmentDate='2024-05-16', Location='Dhaka', _8=nan)\n", + "Pandas(Index='PH1010', _1='Priya Sharma', _2=89.0, _3=89.0, _4=88.0, CompletionStatus='Completed', EnrollmentDate='2024-05-20', Location='Sylhet', _8=nan)\n", + "Pandas(Index='PH1011', _1='Rahim Sheikh', _2=nan, _3=nan, _4=91.0, CompletionStatus='In Progress', EnrollmentDate='2024-06-11', Location='Khulna', _8=nan)\n", + "Pandas(Index='PH1012', _1='Sadia Chowdhury', _2=85.0, _3=85.0, _4=87.0, CompletionStatus='Completed', EnrollmentDate='2024-06-14', Location='Chattogram', _8=nan)\n", + "Pandas(Index='PH1013', _1='Tanvir Ahmed', _2=75.0, _3=75.0, _4=79.0, CompletionStatus='Completed', EnrollmentDate='2024-07-02', Location='Dhaka', _8=nan)\n", + "Pandas(Index='PH1014', _1='Urmi Akter', _2=nan, _3=nan, _4=nan, CompletionStatus='Not Started', EnrollmentDate='2024-07-09', Location='Rajshahi', _8=nan)\n", + "Pandas(Index='PH1015', _1='Wahiduzzaman', _2=86.0, _3=86.0, _4=84.0, CompletionStatus='Completed', EnrollmentDate='2024-08-18', Location='Dhaka', _8=nan)\n", + "Pandas(Index='PH1016', _1='Ziaur Rahman', _2=94.0, _3=94.0, _4=nan, CompletionStatus='In Progress', EnrollmentDate='2024-08-21', Location='Chattogram', _8=nan)\n", + "Pandas(Index='PH1017', _1='Afsana Mimi', _2=90.0, _3=90.0, _4=93.0, CompletionStatus='Completed', EnrollmentDate='2025-09-01', Location='Dhaka', _8=nan)\n", + "Pandas(Index='PH1018', _1='Babul Ahmed', _2=88.0, _3=88.0, _4=85.0, CompletionStatus='Completed', EnrollmentDate='2025-09-05', Location='Sylhet', _8=nan)\n", + "Pandas(Index='PH1019', _1='Faria Rahman', _2=nan, _3=nan, _4=nan, CompletionStatus='Not Started', EnrollmentDate='2025-09-15', Location='Chattogram', _8=nan)\n", + "Pandas(Index='PH1020', _1='Nasir Khan', _2=86.0, _3=86.0, _4=89.0, CompletionStatus='Completed', EnrollmentDate='2025-10-02', Location='Dhaka', _8=nan)\n", + "Pandas(Index=nan, _1=nan, _2=nan, _3=nan, _4=nan, CompletionStatus=nan, EnrollmentDate=nan, Location=nan, _8=nan)\n", + "Pandas(Index=1, _1=nan, _2=nan, _3=nan, _4=nan, CompletionStatus='Completed', EnrollmentDate=nan, Location=nan, _8=92.0)\n" + ] + } + ], + "execution_count": 65 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_12.9 Sorting a DF_**", + "id": "583433aa69b5800e" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T17:57:36.102032Z", + "start_time": "2025-11-05T17:57:36.064130Z" + } + }, + "cell_type": "code", + "source": [ + "copy = df.sort_values(['Data Structure Marks','Algo Marks'], ascending=False)\n", + "\n", + "copy" + ], + "id": "2875f774efa1d90f", + "outputs": [ + { + "data": { + "text/plain": [ + " Full Name Data Structure Marks Algo Marks Python Marks \\\n", + "StudentID \n", + "PH1016 Ziaur Rahman 94.0 94.0 NaN \n", + "PH1002 Fatima Akhter 92.0 92.0 NaN \n", + "PH1017 Afsana Mimi 90.0 90.0 93.0 \n", + "PH1010 Priya Sharma 89.0 89.0 88.0 \n", + "PH1003 Imran Hossain 88.0 88.0 87.0 \n", + "PH1018 Babul Ahmed 88.0 88.0 85.0 \n", + "PH1015 Wahiduzzaman 86.0 86.0 84.0 \n", + "PH1020 Nasir Khan 86.0 86.0 89.0 \n", + "PH1001 Alif Rahman 85.0 85.0 88.0 \n", + "PH1012 Sadia Chowdhury 85.0 85.0 87.0 \n", + "PH1008 Nadia Islam 81.0 81.0 85.0 \n", + "PH1007 Mahmudul Hasan 80.0 80.0 NaN \n", + "PH1004 Jannatul Ferdous 78.0 78.0 84.0 \n", + "PH1006 Laila Begum 75.0 75.0 78.0 \n", + "PH1013 Tanvir Ahmed 75.0 75.0 79.0 \n", + "PH1009 Omar Faruq 72.0 72.0 76.0 \n", + "PH1005 Kamal Uddin NaN NaN 95.0 \n", + "PH1011 Rahim Sheikh NaN NaN 91.0 \n", + "PH1014 Urmi Akter NaN NaN NaN \n", + "PH1019 Faria Rahman NaN NaN NaN \n", + "NaN NaN NaN NaN NaN \n", + "1 NaN NaN NaN NaN \n", + "\n", + " CompletionStatus EnrollmentDate Location Pyhon Marks \n", + "StudentID \n", + "PH1016 In Progress 2024-08-21 Chattogram NaN \n", + "PH1002 In Progress 2024-01-20 Chattogram NaN \n", + "PH1017 Completed 2025-09-01 Dhaka NaN \n", + "PH1010 Completed 2024-05-20 Sylhet NaN \n", + "PH1003 Completed 2024-02-10 Dhaka NaN \n", + "PH1018 Completed 2025-09-05 Sylhet NaN \n", + "PH1015 Completed 2024-08-18 Dhaka NaN \n", + "PH1020 Completed 2025-10-02 Dhaka NaN \n", + "PH1001 Completed 2024-01-15 Dhaka NaN \n", + "PH1012 Completed 2024-06-14 Chattogram NaN \n", + "PH1008 Completed 2024-04-22 Chattogram NaN \n", + "PH1007 In Progress 2024-04-01 Dhaka NaN \n", + "PH1004 Completed 2024-02-12 Sylhet NaN \n", + "PH1006 Completed 2024-03-08 Rajshahi NaN \n", + "PH1013 Completed 2024-07-02 Dhaka NaN \n", + "PH1009 Completed 2024-05-16 Dhaka NaN \n", + "PH1005 In Progress 2024-03-05 Chattogram NaN \n", + "PH1011 In Progress 2024-06-11 Khulna NaN \n", + "PH1014 Not Started 2024-07-09 Rajshahi NaN \n", + "PH1019 Not Started 2025-09-15 Chattogram NaN \n", + "NaN NaN NaN NaN NaN \n", + "1 Completed NaN NaN 92.0 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Full NameData Structure MarksAlgo MarksPython MarksCompletionStatusEnrollmentDateLocationPyhon Marks
StudentID
PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21ChattogramNaN
PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20ChattogramNaN
PH1017Afsana Mimi90.090.093.0Completed2025-09-01DhakaNaN
PH1010Priya Sharma89.089.088.0Completed2024-05-20SylhetNaN
PH1003Imran Hossain88.088.087.0Completed2024-02-10DhakaNaN
PH1018Babul Ahmed88.088.085.0Completed2025-09-05SylhetNaN
PH1015Wahiduzzaman86.086.084.0Completed2024-08-18DhakaNaN
PH1020Nasir Khan86.086.089.0Completed2025-10-02DhakaNaN
PH1001Alif Rahman85.085.088.0Completed2024-01-15DhakaNaN
PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14ChattogramNaN
PH1008Nadia Islam81.081.085.0Completed2024-04-22ChattogramNaN
PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01DhakaNaN
PH1004Jannatul Ferdous78.078.084.0Completed2024-02-12SylhetNaN
PH1006Laila Begum75.075.078.0Completed2024-03-08RajshahiNaN
PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02DhakaNaN
PH1009Omar Faruq72.072.076.0Completed2024-05-16DhakaNaN
PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05ChattogramNaN
PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11KhulnaNaN
PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09RajshahiNaN
PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15ChattogramNaN
NaNNaNNaNNaNNaNNaNNaNNaNNaN
1NaNNaNNaNNaNCompletedNaNNaN92.0
\n", + "
" + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 70 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T18:01:27.696160Z", + "start_time": "2025-11-05T18:01:27.680751Z" + } + }, + "cell_type": "code", + "source": [ + "copy = df.sort_values(['Data Structure Marks','Python Marks'], ascending=[False, True])\n", + "\n", + "copy" + ], + "id": "d4feff88baeef237", + "outputs": [ + { + "data": { + "text/plain": [ + " Full Name Data Structure Marks Algo Marks Python Marks \\\n", + "StudentID \n", + "PH1016 Ziaur Rahman 94.0 94.0 NaN \n", + "PH1002 Fatima Akhter 92.0 92.0 NaN \n", + "PH1017 Afsana Mimi 90.0 90.0 93.0 \n", + "PH1010 Priya Sharma 89.0 89.0 88.0 \n", + "PH1018 Babul Ahmed 88.0 88.0 85.0 \n", + "PH1003 Imran Hossain 88.0 88.0 87.0 \n", + "PH1015 Wahiduzzaman 86.0 86.0 84.0 \n", + "PH1020 Nasir Khan 86.0 86.0 89.0 \n", + "PH1012 Sadia Chowdhury 85.0 85.0 87.0 \n", + "PH1001 Alif Rahman 85.0 85.0 88.0 \n", + "PH1008 Nadia Islam 81.0 81.0 85.0 \n", + "PH1007 Mahmudul Hasan 80.0 80.0 NaN \n", + "PH1004 Jannatul Ferdous 78.0 78.0 84.0 \n", + "PH1006 Laila Begum 75.0 75.0 78.0 \n", + "PH1013 Tanvir Ahmed 75.0 75.0 79.0 \n", + "PH1009 Omar Faruq 72.0 72.0 76.0 \n", + "PH1011 Rahim Sheikh NaN NaN 91.0 \n", + "PH1005 Kamal Uddin NaN NaN 95.0 \n", + "PH1014 Urmi Akter NaN NaN NaN \n", + "PH1019 Faria Rahman NaN NaN NaN \n", + "NaN NaN NaN NaN NaN \n", + "1 NaN NaN NaN NaN \n", + "\n", + " CompletionStatus EnrollmentDate Location Pyhon Marks \n", + "StudentID \n", + "PH1016 In Progress 2024-08-21 Chattogram NaN \n", + "PH1002 In Progress 2024-01-20 Chattogram NaN \n", + "PH1017 Completed 2025-09-01 Dhaka NaN \n", + "PH1010 Completed 2024-05-20 Sylhet NaN \n", + "PH1018 Completed 2025-09-05 Sylhet NaN \n", + "PH1003 Completed 2024-02-10 Dhaka NaN \n", + "PH1015 Completed 2024-08-18 Dhaka NaN \n", + "PH1020 Completed 2025-10-02 Dhaka NaN \n", + "PH1012 Completed 2024-06-14 Chattogram NaN \n", + "PH1001 Completed 2024-01-15 Dhaka NaN \n", + "PH1008 Completed 2024-04-22 Chattogram NaN \n", + "PH1007 In Progress 2024-04-01 Dhaka NaN \n", + "PH1004 Completed 2024-02-12 Sylhet NaN \n", + "PH1006 Completed 2024-03-08 Rajshahi NaN \n", + "PH1013 Completed 2024-07-02 Dhaka NaN \n", + "PH1009 Completed 2024-05-16 Dhaka NaN \n", + "PH1011 In Progress 2024-06-11 Khulna NaN \n", + "PH1005 In Progress 2024-03-05 Chattogram NaN \n", + "PH1014 Not Started 2024-07-09 Rajshahi NaN \n", + "PH1019 Not Started 2025-09-15 Chattogram NaN \n", + "NaN NaN NaN NaN NaN \n", + "1 Completed NaN NaN 92.0 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Full NameData Structure MarksAlgo MarksPython MarksCompletionStatusEnrollmentDateLocationPyhon Marks
StudentID
PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21ChattogramNaN
PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20ChattogramNaN
PH1017Afsana Mimi90.090.093.0Completed2025-09-01DhakaNaN
PH1010Priya Sharma89.089.088.0Completed2024-05-20SylhetNaN
PH1018Babul Ahmed88.088.085.0Completed2025-09-05SylhetNaN
PH1003Imran Hossain88.088.087.0Completed2024-02-10DhakaNaN
PH1015Wahiduzzaman86.086.084.0Completed2024-08-18DhakaNaN
PH1020Nasir Khan86.086.089.0Completed2025-10-02DhakaNaN
PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14ChattogramNaN
PH1001Alif Rahman85.085.088.0Completed2024-01-15DhakaNaN
PH1008Nadia Islam81.081.085.0Completed2024-04-22ChattogramNaN
PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01DhakaNaN
PH1004Jannatul Ferdous78.078.084.0Completed2024-02-12SylhetNaN
PH1006Laila Begum75.075.078.0Completed2024-03-08RajshahiNaN
PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02DhakaNaN
PH1009Omar Faruq72.072.076.0Completed2024-05-16DhakaNaN
PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11KhulnaNaN
PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05ChattogramNaN
PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09RajshahiNaN
PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15ChattogramNaN
NaNNaNNaNNaNNaNNaNNaNNaNNaN
1NaNNaNNaNNaNCompletedNaNNaN92.0
\n", + "
" + ] + }, + "execution_count": 73, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 73 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_12.10 Filtering Data based on condition_**", + "id": "70f45bfa91528e86" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T18:02:17.734203Z", + "start_time": "2025-11-05T18:02:17.716758Z" + } + }, + "cell_type": "code", + "source": "df\n", + "id": "634d202e02faea9a", + "outputs": [ + { + "data": { + "text/plain": [ + " Full Name Data Structure Marks Algo Marks Python Marks \\\n", + "StudentID \n", + "PH1001 Alif Rahman 85.0 85.0 88.0 \n", + "PH1002 Fatima Akhter 92.0 92.0 NaN \n", + "PH1003 Imran Hossain 88.0 88.0 87.0 \n", + "PH1004 Jannatul Ferdous 78.0 78.0 84.0 \n", + "PH1005 Kamal Uddin NaN NaN 95.0 \n", + "PH1006 Laila Begum 75.0 75.0 78.0 \n", + "PH1007 Mahmudul Hasan 80.0 80.0 NaN \n", + "PH1008 Nadia Islam 81.0 81.0 85.0 \n", + "PH1009 Omar Faruq 72.0 72.0 76.0 \n", + "PH1010 Priya Sharma 89.0 89.0 88.0 \n", + "PH1011 Rahim Sheikh NaN NaN 91.0 \n", + "PH1012 Sadia Chowdhury 85.0 85.0 87.0 \n", + "PH1013 Tanvir Ahmed 75.0 75.0 79.0 \n", + "PH1014 Urmi Akter NaN NaN NaN \n", + "PH1015 Wahiduzzaman 86.0 86.0 84.0 \n", + "PH1016 Ziaur Rahman 94.0 94.0 NaN \n", + "PH1017 Afsana Mimi 90.0 90.0 93.0 \n", + "PH1018 Babul Ahmed 88.0 88.0 85.0 \n", + "PH1019 Faria Rahman NaN NaN NaN \n", + "PH1020 Nasir Khan 86.0 86.0 89.0 \n", + "NaN NaN NaN NaN NaN \n", + "1 NaN NaN NaN NaN \n", + "\n", + " CompletionStatus EnrollmentDate Location Pyhon Marks \n", + "StudentID \n", + "PH1001 Completed 2024-01-15 Dhaka NaN \n", + "PH1002 In Progress 2024-01-20 Chattogram NaN \n", + "PH1003 Completed 2024-02-10 Dhaka NaN \n", + "PH1004 Completed 2024-02-12 Sylhet NaN \n", + "PH1005 In Progress 2024-03-05 Chattogram NaN \n", + "PH1006 Completed 2024-03-08 Rajshahi NaN \n", + "PH1007 In Progress 2024-04-01 Dhaka NaN \n", + "PH1008 Completed 2024-04-22 Chattogram NaN \n", + "PH1009 Completed 2024-05-16 Dhaka NaN \n", + "PH1010 Completed 2024-05-20 Sylhet NaN \n", + "PH1011 In Progress 2024-06-11 Khulna NaN \n", + "PH1012 Completed 2024-06-14 Chattogram NaN \n", + "PH1013 Completed 2024-07-02 Dhaka NaN \n", + "PH1014 Not Started 2024-07-09 Rajshahi NaN \n", + "PH1015 Completed 2024-08-18 Dhaka NaN \n", + "PH1016 In Progress 2024-08-21 Chattogram NaN \n", + "PH1017 Completed 2025-09-01 Dhaka NaN \n", + "PH1018 Completed 2025-09-05 Sylhet NaN \n", + "PH1019 Not Started 2025-09-15 Chattogram NaN \n", + "PH1020 Completed 2025-10-02 Dhaka NaN \n", + "NaN NaN NaN NaN NaN \n", + "1 Completed NaN NaN 92.0 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Full NameData Structure MarksAlgo MarksPython MarksCompletionStatusEnrollmentDateLocationPyhon Marks
StudentID
PH1001Alif Rahman85.085.088.0Completed2024-01-15DhakaNaN
PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20ChattogramNaN
PH1003Imran Hossain88.088.087.0Completed2024-02-10DhakaNaN
PH1004Jannatul Ferdous78.078.084.0Completed2024-02-12SylhetNaN
PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05ChattogramNaN
PH1006Laila Begum75.075.078.0Completed2024-03-08RajshahiNaN
PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01DhakaNaN
PH1008Nadia Islam81.081.085.0Completed2024-04-22ChattogramNaN
PH1009Omar Faruq72.072.076.0Completed2024-05-16DhakaNaN
PH1010Priya Sharma89.089.088.0Completed2024-05-20SylhetNaN
PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11KhulnaNaN
PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14ChattogramNaN
PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02DhakaNaN
PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09RajshahiNaN
PH1015Wahiduzzaman86.086.084.0Completed2024-08-18DhakaNaN
PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21ChattogramNaN
PH1017Afsana Mimi90.090.093.0Completed2025-09-01DhakaNaN
PH1018Babul Ahmed88.088.085.0Completed2025-09-05SylhetNaN
PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15ChattogramNaN
PH1020Nasir Khan86.086.089.0Completed2025-10-02DhakaNaN
NaNNaNNaNNaNNaNNaNNaNNaNNaN
1NaNNaNNaNNaNCompletedNaNNaN92.0
\n", + "
" + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 74 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T18:04:04.439842Z", + "start_time": "2025-11-05T18:04:04.420909Z" + } + }, + "cell_type": "code", + "source": [ + "not_started = df.loc[df['CompletionStatus'] == 'Not Started']\n", + "not_started" + ], + "id": "414e9843ea28427b", + "outputs": [ + { + "data": { + "text/plain": [ + " Full Name Data Structure Marks Algo Marks Python Marks \\\n", + "StudentID \n", + "PH1014 Urmi Akter NaN NaN NaN \n", + "PH1019 Faria Rahman NaN NaN NaN \n", + "\n", + " CompletionStatus EnrollmentDate Location Pyhon Marks \n", + "StudentID \n", + "PH1014 Not Started 2024-07-09 Rajshahi NaN \n", + "PH1019 Not Started 2025-09-15 Chattogram NaN " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Full NameData Structure MarksAlgo MarksPython MarksCompletionStatusEnrollmentDateLocationPyhon Marks
StudentID
PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09RajshahiNaN
PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15ChattogramNaN
\n", + "
" + ] + }, + "execution_count": 75, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 75 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-05T18:06:12.200867Z", + "start_time": "2025-11-05T18:06:12.188600Z" + } + }, + "cell_type": "code", + "source": [ + "# completed and ds marks is greater or equal 90\n", + "completed_ds90 = df.loc[(df['CompletionStatus']=='Completed') & (df['Data Structure Marks']>=90)]\n", + "completed_ds90" + ], + "id": "a9e934aaa56fcfa", + "outputs": [ + { + "data": { + "text/plain": [ + " Full Name Data Structure Marks Algo Marks Python Marks \\\n", + "StudentID \n", + "PH1017 Afsana Mimi 90.0 90.0 93.0 \n", + "\n", + " CompletionStatus EnrollmentDate Location Pyhon Marks \n", + "StudentID \n", + "PH1017 Completed 2025-09-01 Dhaka NaN " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Full NameData Structure MarksAlgo MarksPython MarksCompletionStatusEnrollmentDateLocationPyhon Marks
StudentID
PH1017Afsana Mimi90.090.093.0Completed2025-09-01DhakaNaN
\n", + "
" + ] + }, + "execution_count": 76, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 76 + } + ], + "metadata": { + "kernelspec": { + "name": "python3", + "language": "python", + "display_name": "Python 3 (ipykernel)" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_3/Mod_12/enrollment_data.parquet b/Python_For_ML/Week_3/Mod_12/enrollment_data.parquet new file mode 100644 index 0000000000000000000000000000000000000000..639b136f8687963645b355d77d5757a4b6742276 GIT binary patch literal 1377 zcmchXO=uHQ5XWcVeq`6CC4qged)4HfkD!-akZxK}7NBV`Hr5w7qZ|=$-MtNY;M)y?U-^Z-c;$uQ78xpbY?=+h8{Hg) zC8Y(SD_NMz6jJ$ob~4jsu}s)9vFft*Q$!eEiN6YW!l-n@m=R$8ErCT5E=q7-hBv#F zx{s@hwzC~apJDh<9aXN0Yfm1rhk}j6JQnuiaElBTd;Z4ZjcyLd*KI8v!Nb{1wv@_+ zMpA`|bg2!>3bE!jt7dPASICCqjiS5@g$D_5Z7{m-T2tT*z)8Dji)oj8d)l29)2`M= z+GJIME(q8NxXJ2r%b(XaeBAoPuu>d9o6e`Gf*ZSwI2XWi+tObBEaX zZfdZnemVfwmhLB;=|Q1#w=MJ^PM+PdRd4$nvO)n bv2cGl7LD!Sn=2K0+yrnQn8Q1e#GmUgm8atb literal 0 HcmV?d00001 diff --git a/Python_For_ML/Week_3/Mod_12/student_data.csv b/Python_For_ML/Week_3/Mod_12/student_data.csv new file mode 100644 index 0000000..2779c8f --- /dev/null +++ b/Python_For_ML/Week_3/Mod_12/student_data.csv @@ -0,0 +1,22 @@ +StudentID,FullName,Data Structure Marks,Algorithm Marks,Python Marks,CompletionStatus,EnrollmentDate,Instructor,Location +PH1001,Alif Rahman,85,85,88,Completed,2024-01-15,Mr. Karim,Dhaka +PH1002,Fatima Akhter,92,92,,In Progress,2024-01-20,Ms. Salma,Chattogram +PH1003,Imran Hossain,88,88,85,Completed,2024-02-10,Mr. Karim,Dhaka +PH1004,Jannatul Ferdous,78,78,82,Completed,2024-02-12,Ms. Salma,Sylhet +PH1005,Kamal Uddin,,,95,In Progress,2024-03-05,Mr. Karim,Chattogram +PH1006,Laila Begum,75,75,78,Completed,2024-03-08,Ms. Salma,Rajshahi +PH1007,Mahmudul Hasan,80,80,,In Progress,2024-04-01,Mr. Karim,Dhaka +PH1008,Nadia Islam,81,81,85,Completed,2024-04-22,Ms. Salma,Chattogram +PH1009,Omar Faruq,72,72,76,Completed,2024-05-16,Mr. David,Dhaka +PH1010,Priya Sharma,89,89,88,Completed,2024-05-20,Ms. Salma,Sylhet +PH1011,Rahim Sheikh,,,91,In Progress,2024-06-11,Mr. Karim,Khulna +PH1012,Sadia Chowdhury,85,85,87,Completed,2024-06-14,Ms. Salma,Chattogram +PH1013,Tanvir Ahmed,75,75,79,Completed,2024-07-02,Mr. David,Dhaka +PH1014,Urmi Akter,,,,Not Started,2024-07-09,Ms. Salma,Rajshahi +PH1015,Wahiduzzaman,86,86,84,Completed,2024-08-18,Mr. Karim,Dhaka +PH1016,Ziaur Rahman,94,94,,In Progress,2024-08-21,Ms. Salma,Chattogram +PH1017,Afsana Mimi,90,90,93,Completed,2025-09-01,Mr. Karim,Dhaka +PH1018,Babul Ahmed,88,88,85,Completed,2025-09-05,Ms. Salma,Sylhet +PH1019,Faria Rahman,,,,Not Started,2025-09-15,Mr. David,Chattogram +PH1020,Nasir Khan,86,86,89,Completed,2025-10-02,Ms. Salma,Dhaka +,,,,,,,, \ No newline at end of file diff --git a/Python_For_ML/Week_3/Mod_12/student_data.xlsx b/Python_For_ML/Week_3/Mod_12/student_data.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..f65bbc44d22009cc77fc97c1fe5291db4ff9cafc GIT binary patch literal 7013 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 Date: Sat, 8 Nov 2025 09:04:07 +0600 Subject: [PATCH 70/78] Conceptual Session 01 --- .../Conceptual Session 01/Session 01.ipynb | 868 +++++++++++++++++- .../Conceptual Session 01/d2/student.csv | 1 + .../Conceptual Session 01/data2/student.csv | 4 + Python_For_ML/mid_assignment.ipynb | 37 + 4 files changed, 903 insertions(+), 7 deletions(-) create mode 100644 Python_For_ML/Week_2/Conceptual Session 01/d2/student.csv create mode 100644 Python_For_ML/Week_2/Conceptual Session 01/data2/student.csv create mode 100644 Python_For_ML/mid_assignment.ipynb diff --git a/Python_For_ML/Week_2/Conceptual Session 01/Session 01.ipynb b/Python_For_ML/Week_2/Conceptual Session 01/Session 01.ipynb index 1d1b260..401f52b 100644 --- a/Python_For_ML/Week_2/Conceptual Session 01/Session 01.ipynb +++ b/Python_For_ML/Week_2/Conceptual Session 01/Session 01.ipynb @@ -6,8 +6,8 @@ "metadata": { "collapsed": true, "ExecuteTime": { - "end_time": "2025-10-31T06:09:15.107782Z", - "start_time": "2025-10-31T06:09:15.104390Z" + "end_time": "2025-11-06T07:58:39.981467Z", + "start_time": "2025-11-06T07:58:39.977322Z" } }, "source": [ @@ -27,7 +27,7 @@ ] } ], - "execution_count": 9 + "execution_count": 1 }, { "metadata": { @@ -97,13 +97,867 @@ ], "execution_count": 20 }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-06T12:19:58.723838Z", + "start_time": "2025-11-06T12:19:58.720826Z" + } + }, + "cell_type": "code", + "source": [ + "def func() ->str:\n", + " return 10\n", + "\n", + "print(func())" + ], + "id": "f11fc85f47b55ae", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n" + ] + } + ], + "execution_count": 2 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-06T12:20:25.846751Z", + "start_time": "2025-11-06T12:20:25.842465Z" + } + }, + "cell_type": "code", + "source": [ + "def func() ->float:\n", + " return 10\n", + "\n", + "print(func())" + ], + "id": "f05ea5a110d87c7c", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n" + ] + } + ], + "execution_count": 3 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-06T12:44:54.245692Z", + "start_time": "2025-11-06T12:44:54.240794Z" + } + }, + "cell_type": "code", + "source": [ + "# Dictionary Return\n", + "def get_student():\n", + " student = {\n", + " \"name\": \"Rakib\",\n", + " \"age\": 21,\n", + " \"city\": \"Dhaka\"\n", + " }\n", + " student2 = {\n", + " \"name\": \"Rakib_jr\",\n", + " \"age\": 2,\n", + " \"city\": \"Dhaka\"\n", + " }\n", + " return (student, student2)\n", + "\n", + "print(get_student())\n", + "\n", + "x,y = get_student()\n", + "print(x)\n", + "print(y)\n", + "print()\n", + "l = list(get_student())\n", + "print(l)\n", + "print(type(l))\n" + ], + "id": "731440a4aeeed4e0", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "({'name': 'Rakib', 'age': 21, 'city': 'Dhaka'}, {'name': 'Rakib_jr', 'age': 2, 'city': 'Dhaka'})\n", + "{'name': 'Rakib', 'age': 21, 'city': 'Dhaka'}\n", + "{'name': 'Rakib_jr', 'age': 2, 'city': 'Dhaka'}\n", + "\n", + "[{'name': 'Rakib', 'age': 21, 'city': 'Dhaka'}, {'name': 'Rakib_jr', 'age': 2, 'city': 'Dhaka'}]\n", + "\n" + ] + } + ], + "execution_count": 11 + }, { "metadata": {}, + "cell_type": "markdown", + "source": "# **Iterator**", + "id": "dbed7d4a1cee9bf0" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-06T13:04:05.130491Z", + "start_time": "2025-11-06T13:04:05.127537Z" + } + }, "cell_type": "code", - "outputs": [], - "execution_count": null, - "source": "#14 min", - "id": "f11fc85f47b55ae" + "source": [ + "arr = [0,1,2,3,4,5,6,7,8]\n", + "itr = iter(arr)\n", + "print(next(itr))\n", + "print(next(itr))" + ], + "id": "9f9c571eff615209", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "1\n" + ] + } + ], + "execution_count": 13 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-06T13:06:35.137833Z", + "start_time": "2025-11-06T13:06:35.134551Z" + } + }, + "cell_type": "code", + "source": [ + "student = {'name': 'Alice', 'age': 20, 'city': 'Dhaka'}\n", + "\n", + "itr = iter(student.items())\n", + "print(next(itr))\n", + "print(next(itr))\n", + "print()\n", + "for a in student.keys(), student.values():\n", + " print(a)\n" + ], + "id": "4dc7e7ed0c3ee921", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('name', 'Alice')\n", + "('age', 20)\n", + "\n", + "dict_keys(['name', 'age', 'city'])\n", + "dict_values(['Alice', 20, 'Dhaka'])\n" + ] + } + ], + "execution_count": 18 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **Generator**", + "id": "5bf206748746622d" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-06T13:09:39.328598Z", + "start_time": "2025-11-06T13:09:39.325538Z" + } + }, + "cell_type": "code", + "source": [ + "def fun():\n", + " result = []\n", + " for i in range(10):\n", + " result.append(i)\n", + " return result\n", + "\n", + "print(fun())" + ], + "id": "63bd5e454a86c9de", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]\n" + ] + } + ], + "execution_count": 20 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:08:04.068293Z", + "start_time": "2025-11-08T00:08:04.063897Z" + } + }, + "cell_type": "code", + "source": [ + "def fun():\n", + " result = []\n", + " for i in range(5):\n", + " yield i\n", + "gen = fun()\n", + "print(next(fun()))\n", + "print(gen)" + ], + "id": "14a38c74ae605817", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "\n" + ] + } + ], + "execution_count": 6 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:11:32.650082Z", + "start_time": "2025-11-08T00:11:32.646645Z" + } + }, + "cell_type": "code", + "source": [ + "def fun():\n", + " for i in range(4):\n", + " print(\"starting\")\n", + " yield i\n", + "itr = fun()\n", + "print(next(itr))\n", + "print(\"hlw\")\n", + "print(next(itr))" + ], + "id": "587b4b5304242633", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "starting\n", + "0\n", + "hlw\n", + "starting\n", + "1\n" + ] + } + ], + "execution_count": 7 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "## **List Comprehension**", + "id": "fa0fb1b2a7f62f58" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:14:16.802667Z", + "start_time": "2025-11-08T00:14:16.799120Z" + } + }, + "cell_type": "code", + "source": [ + "numbers = [1, 2, 3, 4, 5]\n", + "squared = []\n", + "\n", + "for num in numbers:\n", + " squared.append(num * num)\n", + "\n", + "print(squared)" + ], + "id": "9c82f477a2ee3473", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 4, 9, 16, 25]\n" + ] + } + ], + "execution_count": 8 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:16:46.223202Z", + "start_time": "2025-11-08T00:16:46.220273Z" + } + }, + "cell_type": "code", + "source": [ + "numbers = [1, 2, 3, 4, 5]\n", + "squared = [f\"raku{\"n\"}\" for n in numbers]\n", + "print(squared)" + ], + "id": "2a62b72869f17f58", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['rakun', 'rakun', 'rakun', 'rakun', 'rakun']\n" + ] + } + ], + "execution_count": 9 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:18:18.007125Z", + "start_time": "2025-11-08T00:18:18.003768Z" + } + }, + "cell_type": "code", + "source": [ + "numbers = [1, 2, 3, 4, 5]\n", + "squared = [n for n in numbers if n%2==1]\n", + "print(squared)" + ], + "id": "3ea893e0aaccf7bf", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 3, 5]\n" + ] + } + ], + "execution_count": 12 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:20:00.679016Z", + "start_time": "2025-11-08T00:20:00.675732Z" + } + }, + "cell_type": "code", + "source": [ + "numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]\n", + "\n", + "squared = [n*n if(n*n >30) else 0 for n in numbers if n%2==1]\n", + "\n", + "print(squared)" + ], + "id": "fb70e128cec5156f", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0, 0, 0, 49, 81]\n" + ] + } + ], + "execution_count": 13 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:23:28.814509Z", + "start_time": "2025-11-08T00:23:28.811115Z" + } + }, + "cell_type": "code", + "source": [ + "scores = [85,42,76,91,35]\n", + "grades = [f'Pass {s}' if s >=50 else f'Fail {s}' for s in scores]\n", + "print(grades)" + ], + "id": "ae84ed1bde7e0394", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Pass 85', 'Fail 42', 'Pass 76', 'Pass 91', 'Fail 35']\n" + ] + } + ], + "execution_count": 14 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:28:46.908702Z", + "start_time": "2025-11-08T00:28:46.905386Z" + } + }, + "cell_type": "code", + "source": [ + "matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]\n", + "f = [j for i in matrix for j in i]\n", + "\n", + "print(f)" + ], + "id": "8d954d03faefca98", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 2, 3, 4, 5, 6, 7, 8, 9]\n" + ] + } + ], + "execution_count": 15 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:31:39.050410Z", + "start_time": "2025-11-08T00:31:39.046991Z" + } + }, + "cell_type": "code", + "source": [ + "students = [\n", + " {'name': 'Alice', 'age': 20},\n", + " {'name': 'Bob', 'age': 22},\n", + " {'name': 'Charlie', 'age': 19}\n", + "]\n", + "\n", + "names = [s['name'] for s in students]\n", + "print(names)" + ], + "id": "b4f9f580a8d10d52", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Alice', 'Bob', 'Charlie']\n" + ] + } + ], + "execution_count": 16 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:34:59.053577Z", + "start_time": "2025-11-08T00:34:59.050183Z" + } + }, + "cell_type": "code", + "source": [ + "# CSV data cleaning\n", + "raw_data = [' 25 ', '30 ', ' 42', 'abc', '50']\n", + "\n", + "clean = [int(r.strip()) for r in raw_data if r.strip().isdigit()]\n", + "print(clean)" + ], + "id": "eac50ec1ca8eee22", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[25, 30, 42, 50]\n" + ] + } + ], + "execution_count": 18 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:37:31.091519Z", + "start_time": "2025-11-08T00:37:31.088140Z" + } + }, + "cell_type": "code", + "source": [ + "d = [[[1,3], [4,5]], [[6,7],[8,9]]]\n", + "\n", + "a = [k for i in d for j in i for k in j]\n", + "print(a)" + ], + "id": "54811f4cba4c5e", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 3, 4, 5, 6, 7, 8, 9]\n" + ] + } + ], + "execution_count": 19 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_lambda , map , filter , reduce function_**", + "id": "199bdf936dc78773" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:43:12.041623Z", + "start_time": "2025-11-08T00:43:12.038587Z" + } + }, + "cell_type": "code", + "source": [ + "def greet():\n", + " print('hlw world')\n", + "greet()" + ], + "id": "9fa2384e60874abb", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "hlw world\n" + ] + } + ], + "execution_count": 20 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:45:55.411870Z", + "start_time": "2025-11-08T00:45:55.408706Z" + } + }, + "cell_type": "code", + "source": [ + "greet = lambda name: print(\"hlw\", name)\n", + "\n", + "greet(\"roku\")" + ], + "id": "61e29bdcfc429178", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "hlw roku\n" + ] + } + ], + "execution_count": 27 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# _Map_", + "id": "6bfd0ebf8b4433cc" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:52:28.779625Z", + "start_time": "2025-11-08T00:52:28.776394Z" + } + }, + "cell_type": "code", + "source": [ + "arr = [1,2,3,4,5,6,7,8,9,10]\n", + "\n", + "arr2 = list((map(lambda x: x*x, arr)))\n", + "print(arr2)\n" + ], + "id": "a3f56a4595060013", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]\n" + ] + } + ], + "execution_count": 30 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:53:46.969944Z", + "start_time": "2025-11-08T00:53:46.963073Z" + } + }, + "cell_type": "code", + "source": [ + "scores = [85, 92, 78, 65, 45]\n", + "\n", + "def grade(x):\n", + " if x >=80 : return f\"Score is {x} and A+\"\n", + " if x >=70 : return f\"Score is {x} and A\"\n", + " if x >=60 : return f\"Score is {x} and A-\"\n", + " else : return f\"Score is {x} and F-\"\n", + "\n", + "grades = list(map(grade,scores))\n", + "print(grades)" + ], + "id": "654ef2234d5fdc8", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Score is 85 and A+', 'Score is 92 and A+', 'Score is 78 and A', 'Score is 65 and A-', 'Score is 45 and F-']\n" + ] + } + ], + "execution_count": 31 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_Filter_**", + "id": "7798e85ee7c550a" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T00:57:48.978673Z", + "start_time": "2025-11-08T00:57:48.975294Z" + } + }, + "cell_type": "code", + "source": [ + "scores = [88,76,90,87,45,67]\n", + "select = list(filter(lambda x: x>80, scores))\n", + "print(select)" + ], + "id": "830dd4a647cce840", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[88, 90, 87]\n" + ] + } + ], + "execution_count": 33 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T01:00:45.327387Z", + "start_time": "2025-11-08T01:00:45.324187Z" + } + }, + "cell_type": "code", + "source": [ + "# Valid Email Filter\n", + "emails = [\"user@mail.com\", \"invalid\", \"test@gmail.com\", \"no@\", \"admin@site.org\"]\n", + "\n", + "selected = list(filter(lambda e: '@' in e and '.' in e, emails))\n", + "print(selected)" + ], + "id": "ae9578f6155aabf4", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['user@mail.com', 'test@gmail.com', 'admin@site.org']\n" + ] + } + ], + "execution_count": 34 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "from functools import reduce\n", + "arr = [1,2,3,4,5,6,7,8,9,10]\n", + "sum = reduce(lambda x, y: x + y, arr)" + ], + "id": "8c7be103910dad79" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T02:20:24.654680Z", + "start_time": "2025-11-08T02:20:24.648767Z" + } + }, + "cell_type": "code", + "source": [ + "from functools import reduce\n", + "sentences = [\"I love Python\", \"Machine Learning is fun\", \"AI is the future\"]\n", + "\n", + "def count_vowel(text):\n", + " sum=0\n", + " for ch in text.lower():\n", + " if ch in 'aeiou':\n", + " sum+=1\n", + " return sum\n", + "total = reduce(lambda x,y: x+ count_vowel(y), sentences,0)\n", + "print(total)" + ], + "id": "cb172842e98bbd8d", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "19\n" + ] + } + ], + "execution_count": 1 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **Write and Read CSV File**", + "id": "1ba68b250ce8cb67" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T02:50:44.327074Z", + "start_time": "2025-11-08T02:50:44.321248Z" + } + }, + "cell_type": "code", + "source": [ + "from pathlib import Path\n", + "import csv\n", + "\n", + "Data_Path = Path('data2')\n", + "Data_Path.mkdir(exist_ok=True)\n", + "csv_path = Data_Path / \"student.csv\"\n", + "\n", + "# Write\n", + "with csv_path.open('w', newline=\"\",encoding=\"utf-8\") as f:\n", + " writer = csv.writer(f)\n", + " writer.writerow([\"Name\", \"Age\"])\n", + " writer.writerow([\"Rakib\", 20])\n", + " writer.writerow([\"Takib\", 40])\n", + " writer.writerow([\"Yakib\", 25])\n", + "\n", + "# Read\n", + "with csv_path.open('r',encoding=\"utf-8\") as f:\n", + " reader = csv.reader(f)\n", + " print(list(reader))\n" + ], + "id": "5b3e54a5f0f44221", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[['Name', 'Age'], ['Rakib', '20'], ['Takib', '40'], ['Yakib', '25']]\n" + ] + } + ], + "execution_count": 8 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **Error Handling**", + "id": "b7136a01b58840fc" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T02:59:18.571398Z", + "start_time": "2025-11-08T02:59:18.568075Z" + } + }, + "cell_type": "code", + "source": [ + "def to_int(s):\n", + " try:\n", + " return int(s)\n", + " except ValueError as e:\n", + " print(\"ValueError:\" , e)\n", + " return None\n", + "print(to_int(\"Abc\"))\n", + "print(to_int(232))" + ], + "id": "c9a5d7bd426b0645", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ValueError: invalid literal for int() with base 10: 'Abc'\n", + "None\n", + "232\n" + ] + } + ], + "execution_count": 13 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-08T03:03:02.953564Z", + "start_time": "2025-11-08T03:03:02.949765Z" + } + }, + "cell_type": "code", + "source": [ + "# --- DEMO: raising custom errors ---\n", + "def require_positive(n):\n", + " if n <= 0:\n", + " raise ValueError(\"n must be > 0\")\n", + " return n\n", + "\n", + "def dividedbyn(n):\n", + " if n==0:\n", + " raise ZeroDivisionError(\"0 diye vag kora jabe nah\")\n", + " return 100/n;\n", + "\n", + "try:\n", + " # print(require_positive(-1))\n", + " print(dividedbyn(0))\n", + "except ZeroDivisionError as e:\n", + " print(e)\n", + "except ValueError as e:\n", + " print(\"Caught:\", e)" + ], + "id": "a5dc263c771c7b1f", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0 diye vag kora jabe nah\n" + ] + } + ], + "execution_count": 14 } ], "metadata": { diff --git a/Python_For_ML/Week_2/Conceptual Session 01/d2/student.csv b/Python_For_ML/Week_2/Conceptual Session 01/d2/student.csv new file mode 100644 index 0000000..6036677 --- /dev/null +++ b/Python_For_ML/Week_2/Conceptual Session 01/d2/student.csv @@ -0,0 +1 @@ +Name,Age diff --git a/Python_For_ML/Week_2/Conceptual Session 01/data2/student.csv b/Python_For_ML/Week_2/Conceptual Session 01/data2/student.csv new file mode 100644 index 0000000..57639a2 --- /dev/null +++ b/Python_For_ML/Week_2/Conceptual Session 01/data2/student.csv @@ -0,0 +1,4 @@ +Name,Age +Rakib,20 +Takib,40 +Yakib,25 diff --git a/Python_For_ML/mid_assignment.ipynb b/Python_For_ML/mid_assignment.ipynb new file mode 100644 index 0000000..54f657b --- /dev/null +++ b/Python_For_ML/mid_assignment.ipynb @@ -0,0 +1,37 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "initial_id", + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From a393610a69a897b9eeca5720631317cd4bc42972 Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Mon, 10 Nov 2025 20:36:47 +0600 Subject: [PATCH 71/78] 14.1 Filtering Based on String --- ...e.py_35bf55bd2406dee60399afea5208a2a6.prob | 1 + ...y.py_5d3834c4499ba9890bc0e97f4d9115bc.prob | 1 + Python_For_ML/J_Average.py | 12 + Python_For_ML/L_New_Array.py | 9 + .../Conceptual Session 01/Session 01.ipynb | 6 +- .../Conceptual Session 02.ipynb | 81 +++ .../14.1 Filtering Based on String.ipynb | 519 ++++++++++++++++++ .../Week_4/Mod_14/student_completed_data.csv | 21 + Python_For_ML/employees.csv | 11 + Python_For_ML/mid_assignment.ipynb | 311 ++++++++++- 10 files changed, 965 insertions(+), 7 deletions(-) create mode 100644 Python_For_ML/.cph/.J_Average.py_35bf55bd2406dee60399afea5208a2a6.prob create mode 100644 Python_For_ML/.cph/.L_New_Array.py_5d3834c4499ba9890bc0e97f4d9115bc.prob create mode 100644 Python_For_ML/J_Average.py create mode 100644 Python_For_ML/L_New_Array.py create mode 100644 Python_For_ML/Week_2/Conceptual Session 02/Conceptual Session 02.ipynb create mode 100644 Python_For_ML/Week_4/Mod_14/14.1 Filtering Based on String.ipynb create mode 100644 Python_For_ML/Week_4/Mod_14/student_completed_data.csv create mode 100644 Python_For_ML/employees.csv diff --git a/Python_For_ML/.cph/.J_Average.py_35bf55bd2406dee60399afea5208a2a6.prob b/Python_For_ML/.cph/.J_Average.py_35bf55bd2406dee60399afea5208a2a6.prob new file mode 100644 index 0000000..f1b900e --- /dev/null +++ b/Python_For_ML/.cph/.J_Average.py_35bf55bd2406dee60399afea5208a2a6.prob @@ -0,0 +1 @@ +{"name":"J. Average","group":"Codeforces - Sheet #5 (Functions)","url":"https://codeforces.com/group/MWSDmqGsZm/contest/223205/problem/J","interactive":false,"memoryLimit":256,"timeLimit":1000,"tests":[{"input":"3\n1.0 2.0 5.0\n","output":"2.6666667\n","id":1762592354387},{"id":1762592354388,"input":"4\n1.0 7.0 4.0 9.0\n","output":"5.2500000\n"}],"testType":"single","input":{"type":"stdin"},"output":{"type":"stdout"},"languages":{"java":{"mainClass":"Main","taskClass":"JAverage"}},"batch":{"id":"cc64f10e-50cf-4453-a7fc-969c1ef5b06c","size":1},"srcPath":"c:\\Users\\evan\\Documents\\GitHub\\Python-for-ML\\Python_For_ML\\J_Average.py"} \ No newline at end of file diff --git a/Python_For_ML/.cph/.L_New_Array.py_5d3834c4499ba9890bc0e97f4d9115bc.prob b/Python_For_ML/.cph/.L_New_Array.py_5d3834c4499ba9890bc0e97f4d9115bc.prob new file mode 100644 index 0000000..0df413c --- /dev/null +++ b/Python_For_ML/.cph/.L_New_Array.py_5d3834c4499ba9890bc0e97f4d9115bc.prob @@ -0,0 +1 @@ +{"name":"L. New Array","group":"Codeforces - Sheet #5 (Functions)","url":"https://codeforces.com/group/MWSDmqGsZm/contest/223205/problem/L","interactive":false,"memoryLimit":256,"timeLimit":1000,"tests":[{"input":"2\n1 2\n3 4\n","output":"3 4 1 2\n","id":1762595272645}],"testType":"single","input":{"type":"stdin"},"output":{"type":"stdout"},"languages":{"java":{"mainClass":"Main","taskClass":"LNewArray"}},"batch":{"id":"a1ab4f10-761a-4c80-acb0-2698c2312322","size":1},"srcPath":"c:\\Users\\evan\\Documents\\GitHub\\Python-for-ML\\Python_For_ML\\L_New_Array.py"} \ No newline at end of file diff --git a/Python_For_ML/J_Average.py b/Python_For_ML/J_Average.py new file mode 100644 index 0000000..751d656 --- /dev/null +++ b/Python_For_ML/J_Average.py @@ -0,0 +1,12 @@ +from functools import reduce + +def find_average(arr): + total = reduce(lambda x, y: x+y, arr) + return total / len(arr) + +n = int(input()) +A = list(map(float, input().split())) + +average = find_average(A) + +print(f"{average:.7f}") \ No newline at end of file diff --git a/Python_For_ML/L_New_Array.py b/Python_For_ML/L_New_Array.py new file mode 100644 index 0000000..6e70a2c --- /dev/null +++ b/Python_For_ML/L_New_Array.py @@ -0,0 +1,9 @@ +def new_array(A, B): + return B +A +n = int(input()) +A = list(map(int, input().split())) +B = list(map(int, input().split())) + +C= new_array(A , B) + +print(*C) \ No newline at end of file diff --git a/Python_For_ML/Week_2/Conceptual Session 01/Session 01.ipynb b/Python_For_ML/Week_2/Conceptual Session 01/Session 01.ipynb index 401f52b..6e0277b 100644 --- a/Python_For_ML/Week_2/Conceptual Session 01/Session 01.ipynb +++ b/Python_For_ML/Week_2/Conceptual Session 01/Session 01.ipynb @@ -922,8 +922,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2025-11-08T03:03:02.953564Z", - "start_time": "2025-11-08T03:03:02.949765Z" + "end_time": "2025-11-09T00:41:57.838146Z", + "start_time": "2025-11-09T00:41:57.829519Z" } }, "cell_type": "code", @@ -957,7 +957,7 @@ ] } ], - "execution_count": 14 + "execution_count": 1 } ], "metadata": { diff --git a/Python_For_ML/Week_2/Conceptual Session 02/Conceptual Session 02.ipynb b/Python_For_ML/Week_2/Conceptual Session 02/Conceptual Session 02.ipynb new file mode 100644 index 0000000..32f55a9 --- /dev/null +++ b/Python_For_ML/Week_2/Conceptual Session 02/Conceptual Session 02.ipynb @@ -0,0 +1,81 @@ +{ + "cells": [ + { + "metadata": {}, + "cell_type": "markdown", + "source": "# Class, object and instance", + "id": "bc54e0f4263c0da5" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-09T01:23:12.318579Z", + "start_time": "2025-11-09T01:23:12.314024Z" + } + }, + "cell_type": "code", + "source": [ + "class Dog():\n", + " food = \"asdfsadf\" # class attribute\n", + "\n", + " def __init__(self, name, age):\n", + " self.name = name # instance attribute\n", + " self.age = age # instance attribute\n", + "\n", + "\n", + " def speak(self):\n", + " print(\"Dog speaking\", {self.name}, {self.food})\n", + "\n", + " # instance method\n", + " def work(self):\n", + " print(\"hello , dog \", {self.name}, {self.food})\n", + "\n", + " @classmethod\n", + " def info(cls):\n", + " print(\"Food \", cls.age)\n", + "\n", + "dog1 = Dog('ABC', 20)\n", + "\n", + "print(dog1.name)\n", + "print(dog1.food)\n", + "print(dog1.speak())\n", + "\n" + ], + "id": "d6f8a3f582ef57fd", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ABC\n", + "asdfsadf\n", + "Dog speaking {'ABC'} {'asdfsadf'}\n", + "None\n" + ] + } + ], + "execution_count": 16 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_4/Mod_14/14.1 Filtering Based on String.ipynb b/Python_For_ML/Week_4/Mod_14/14.1 Filtering Based on String.ipynb new file mode 100644 index 0000000..be15a99 --- /dev/null +++ b/Python_For_ML/Week_4/Mod_14/14.1 Filtering Based on String.ipynb @@ -0,0 +1,519 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-10T12:43:50.300394Z", + "start_time": "2025-11-10T12:43:50.293154Z" + } + }, + "source": [ + "import pandas as pd\n", + "\n", + "data = {\n", + "\"Name\": [\"Alice\", \"Bob\", \"Charlie\", \"David\", \"Eve\", \"Frank\", \"Grace\", \"Hannah\",\"Sakib\"],\n", + " \"City\": [\"New York\", \"Los Angeles\", \"Newark\", \"Boston\", \"New Delhi\", \"Chicago\", \"New Orleans\", \"Houston\",\"H Los Ang\"],\n", + " \"Department\": [\"HR\", \"IT\", \"Finance\", \"IT\", \"HR\", \"Marketing\", \"Finance\", \"HR\", \"HR\"],\n", + " \"Salary\": [50000, 60000, 55000, 70000, 52000, 58000, 62000, 51000,70000]\n", + "}\n", + "df= pd.DataFrame(data)\n", + "print(df)" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Name City Department Salary\n", + "0 Alice New York HR 50000\n", + "1 Bob Los Angeles IT 60000\n", + "2 Charlie Newark Finance 55000\n", + "3 David Boston IT 70000\n", + "4 Eve New Delhi HR 52000\n", + "5 Frank Chicago Marketing 58000\n", + "6 Grace New Orleans Finance 62000\n", + "7 Hannah Houston HR 51000\n", + "8 Sakib H Los Ang HR 70000\n" + ] + } + ], + "execution_count": 2 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-10T14:25:23.384188Z", + "start_time": "2025-11-10T14:25:23.369007Z" + } + }, + "cell_type": "code", + "source": "df.loc[df['City'].str.contains(\"New\", case=False)]", + "id": "3d5c0ae090858674", + "outputs": [ + { + "data": { + "text/plain": [ + " Name City Department Salary\n", + "0 Alice New York HR 50000\n", + "2 Charlie Newark Finance 55000\n", + "4 Eve New Delhi HR 52000\n", + "6 Grace New Orleans Finance 62000" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityDepartmentSalary
0AliceNew YorkHR50000
2CharlieNewarkFinance55000
4EveNew DelhiHR52000
6GraceNew OrleansFinance62000
\n", + "
" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 5 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-10T14:27:30.726934Z", + "start_time": "2025-11-10T14:27:30.719059Z" + } + }, + "cell_type": "code", + "source": "df.loc[df['City'].str.contains(r\"^Los\", case=False)]", + "id": "59c68bbfb48673cb", + "outputs": [ + { + "data": { + "text/plain": [ + " Name City Department Salary\n", + "1 Bob Los Angeles IT 60000" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityDepartmentSalary
1BobLos AngelesIT60000
\n", + "
" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 8 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-10T14:29:56.275274Z", + "start_time": "2025-11-10T14:29:56.268963Z" + } + }, + "cell_type": "code", + "source": "df.loc[df['City'].str.contains(r\"^Los\")]", + "id": "3b6d8bcdc5ec9bec", + "outputs": [ + { + "data": { + "text/plain": [ + " Name City Department Salary\n", + "1 Bob Los Angeles IT 60000" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityDepartmentSalary
1BobLos AngelesIT60000
\n", + "
" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 10 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-10T14:30:54.391013Z", + "start_time": "2025-11-10T14:30:54.381242Z" + } + }, + "cell_type": "code", + "source": "df.loc[df['City'].str.contains(r\"rk$\")]", + "id": "64fca10c48898676", + "outputs": [ + { + "data": { + "text/plain": [ + " Name City Department Salary\n", + "0 Alice New York HR 50000\n", + "2 Charlie Newark Finance 55000" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityDepartmentSalary
0AliceNew YorkHR50000
2CharlieNewarkFinance55000
\n", + "
" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 11 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-10T14:33:00.609429Z", + "start_time": "2025-11-10T14:33:00.602675Z" + } + }, + "cell_type": "code", + "source": "df.loc[df['Name'].str.contains(r\"^[AEIOU]\")]\n", + "id": "9bae74470de14230", + "outputs": [ + { + "data": { + "text/plain": [ + " Name City Department Salary\n", + "0 Alice New York HR 50000\n", + "4 Eve New Delhi HR 52000" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityDepartmentSalary
0AliceNew YorkHR50000
4EveNew DelhiHR52000
\n", + "
" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 12 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-10T14:34:49.825323Z", + "start_time": "2025-11-10T14:34:49.811671Z" + } + }, + "cell_type": "code", + "source": "df.loc[df['City'].str.contains(r\"New|Los\")]", + "id": "6e78921f84e02c34", + "outputs": [ + { + "data": { + "text/plain": [ + " Name City Department Salary\n", + "0 Alice New York HR 50000\n", + "1 Bob Los Angeles IT 60000\n", + "2 Charlie Newark Finance 55000\n", + "4 Eve New Delhi HR 52000\n", + "6 Grace New Orleans Finance 62000\n", + "8 Sakib H Los Ang HR 70000" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityDepartmentSalary
0AliceNew YorkHR50000
1BobLos AngelesIT60000
2CharlieNewarkFinance55000
4EveNew DelhiHR52000
6GraceNew OrleansFinance62000
8SakibH Los AngHR70000
\n", + "
" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 13 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_4/Mod_14/student_completed_data.csv b/Python_For_ML/Week_4/Mod_14/student_completed_data.csv new file mode 100644 index 0000000..23c9bea --- /dev/null +++ b/Python_For_ML/Week_4/Mod_14/student_completed_data.csv @@ -0,0 +1,21 @@ +StudentID,FullName,CompletionStatus,EnrollmentDate,FinishedDate,Instructor,Location,Total Marks +PH0001,Alif Rahman,Completed,2024-09-01,2024-12-23,Ms. Salma,Khulna,300 +PH0002,Fatima Akhter,Completed,2024-08-11,2024-11-07,Mr. Karim,Dhaka,271 +PH0003,Imran Hossain,Completed,2024-05-08,2024-08-08,Ms. Salma,Dhaka,269 +PH0004,Jannatul Ferdous,Completed,2024-07-05,2024-09-23,Mr. Karim,Khulna,270 +PH0005,Kamal Uddin,Completed,2024-02-01,2024-04-17,Mr. David,Sylhet,254 +PH0006,Laila Begum,Completed,2024-09-07,2024-12-31,Mr. David,Khulna,272 +PH0007,Mahmudul Hasan,Completed,2024-06-07,2024-07-20,Mr. David,Chattogram,249 +PH0008,Nadia Islam,Completed,2024-03-22,2024-05-01,Ms. Salma,Khulna,246 +PH0009,Omar Faruq,Completed,2024-02-12,2024-06-08,Mr. Karim,Dhaka,291 +PH0010,Priya Sharma,Completed,2024-06-19,2024-08-19,Mr. David,Dhaka,286 +PH0011,Rahim Sheikh,Completed,2024-03-14,2024-06-11,Mr. Karim,Sylhet,283 +PH0012,Sadia Chowdhury,Completed,2024-08-04,2024-10-25,Mr. Karim,Sylhet,266 +PH0013,Tanvir Ahmed,Completed,2024-06-07,2024-08-03,Mr. David,Dhaka,248 +PH0014,Urmi Akter,Completed,2024-01-04,2024-03-23,Mr. David,Sylhet,285 +PH0015,Wahiduzzaman,Completed,2024-02-22,2024-05-16,Mr. David,Rajshahi,291 +PH0016,Ziaur Rahman,Completed,2024-03-23,2024-06-21,Ms. Salma,Rajshahi,234 +PH0017,Afsana Mimi,Completed,2024-01-18,2024-03-16,Mr. David,Khulna,236 +PH0018,Babul Ahmed,Completed,2024-06-23,2024-09-20,Mr. David,Dhaka,278 +PH0019,Faria Rahman,Completed,2024-04-19,2024-08-17,Mr. Karim,Sylhet,277 +PH0020,Tariq Hasan,Completed,2024-07-21,2024-10-11,Mr. Karim,Khulna,253 diff --git a/Python_For_ML/employees.csv b/Python_For_ML/employees.csv new file mode 100644 index 0000000..44d3988 --- /dev/null +++ b/Python_For_ML/employees.csv @@ -0,0 +1,11 @@ +id,age,salary,dept +1,56,77191,HR +2,46,74131,IT +3,32,46023,Finance +4,25,71090,IT +5,38,31685,HR +6,56,30769,Sales +7,36,89735,Finance +8,40,86101,IT +9,28,32433,Sales +10,28,35311,HR diff --git a/Python_For_ML/mid_assignment.ipynb b/Python_For_ML/mid_assignment.ipynb index 54f657b..c99395e 100644 --- a/Python_For_ML/mid_assignment.ipynb +++ b/Python_For_ML/mid_assignment.ipynb @@ -2,15 +2,318 @@ "cells": [ { "cell_type": "code", - "execution_count": null, "id": "initial_id", "metadata": { - "collapsed": true + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-06T07:59:42.075057Z", + "start_time": "2025-11-06T07:59:39.518261Z" + } + }, + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "\n", + "np.random.seed(42)\n", + "\n", + "ids = np.arange(1, 11)\n", + "ages = np.random.randint(18, 60, 10)\n", + "salaries = np.random.randint(30000, 90000, 10)\n", + "departments = np.array([\"HR\", \"IT\", \"Finance\", \"IT\", \"HR\",\n", + " \"Sales\", \"Finance\", \"IT\", \"Sales\", \"HR\"])\n", + "\n", + "DF = pd.DataFrame({\n", + " \"id\": ids,\n", + " \"age\": ages,\n", + " \"salary\": salaries,\n", + " \"dept\": departments\n", + "})\n", + "\n", + "DF.to_csv(\"employees.csv\", index=False)\n", + "print(\"Sample Data Created and Saved as employees.csv\")\n", + "print(\"\\n--- Data preview ---\")\n", + "print(DF)\n", + "print()" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sample Data Created and Saved as employees.csv\n", + "\n", + "--- Data preview ---\n", + " id age salary dept\n", + "0 1 56 77191 HR\n", + "1 2 46 74131 IT\n", + "2 3 32 46023 Finance\n", + "3 4 25 71090 IT\n", + "4 5 38 31685 HR\n", + "5 6 56 30769 Sales\n", + "6 7 36 89735 Finance\n", + "7 8 40 86101 IT\n", + "8 9 28 32433 Sales\n", + "9 10 28 35311 HR\n", + "\n" + ] + } + ], + "execution_count": 1 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-06T08:01:22.699792Z", + "start_time": "2025-11-06T08:01:22.695100Z" + } + }, + "cell_type": "code", + "source": [ + "# Q1 ------------------------------------------------------------\n", + "age_arr = np.array(ages)\n", + "sal_arr = np.array(salaries)\n", + "\n", + "print(\"Q1 – NumPy arrays\")\n", + "print(\"ages :\", age_arr)\n", + "print(\"salaries:\", sal_arr)\n", + "print(\"dtype :\", age_arr.dtype, sal_arr.dtype)\n", + "print(\"ndim :\", age_arr.ndim, sal_arr.ndim)\n", + "print(\"shape :\", age_arr.shape, sal_arr.shape)\n", + "print(\"size :\", age_arr.size, sal_arr.size)\n", + "print()" + ], + "id": "b88ff4503c9bc255", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Q1 – NumPy arrays\n", + "ages : [56 46 32 25 38 56 36 40 28 28]\n", + "salaries: [77191 74131 46023 71090 31685 30769 89735 86101 32433 35311]\n", + "dtype : int32 int32\n", + "ndim : 1 1\n", + "shape : (10,) (10,)\n", + "size : 10 10\n", + "\n" + ] + } + ], + "execution_count": 2 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-06T08:01:47.152043Z", + "start_time": "2025-11-06T08:01:47.133324Z" + } + }, + "cell_type": "code", + "source": [ + "# Q2 ------------------------------------------------------------\n", + "max_sal = np.max(sal_arr)\n", + "min_sal = np.min(sal_arr)\n", + "avg_sal = np.mean(sal_arr)\n", + "avg_age = np.mean(age_arr)\n", + "\n", + "print(\"Q2 – Salary & Age statistics\")\n", + "print(f\"Highest salary : {max_sal}\")\n", + "print(f\"Lowest salary : {min_sal}\")\n", + "print(f\"Average salary : {avg_sal:.2f}\")\n", + "print(f\"Average age : {avg_age:.2f}\")\n", + "print()" + ], + "id": "bbb9fa39a6fe44b5", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Q2 – Salary & Age statistics\n", + "Highest salary : 89735\n", + "Lowest salary : 30769\n", + "Average salary : 57446.90\n", + "Average age : 38.50\n", + "\n" + ] + } + ], + "execution_count": 3 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-06T08:04:11.027976Z", + "start_time": "2025-11-06T08:04:11.024410Z" + } }, + "cell_type": "code", + "source": [ + "# Q3 ------------------------------------------------------------\n", + "older_than_30 = age_arr > 30\n", + "print(\"Q3 – Ages > 30\")\n", + "print(\"Mask :\", older_than_30)\n", + "print(\"Ages >30 :\", age_arr[older_than_30])\n", + "print(f\"Count : {np.sum(older_than_30)}\")\n", + "print()" + ], + "id": "1baec88dce28f679", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Q3 – Ages > 30\n", + "Mask : [ True True True False True True True True False False]\n", + "Ages >30 : [56 46 32 38 56 36 40]\n", + "Count : 7\n", + "\n" + ] + } + ], + "execution_count": 6 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "# Q4 ------------------------------------------------------------\n", + "updated_ages = age_arr + 5 # does NOT modify original\n", + "print(\"Q4 – Ages + 5 years\")\n", + "print(\"Original :\", age_arr)\n", + "print(\"Updated :\", updated_ages)\n", + "print()" + ], + "id": "cf6f08680b01d770" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "# Q5 ------------------------------------------------------------\n", + "total_expense = np.sum(sal_arr)\n", + "salary_range = max_sal - min_sal\n", + "\n", + "print(\"Q5 – Salary totals\")\n", + "print(f\"Total salary expense : {total_expense}\")\n", + "print(f\"Max – Min difference : {salary_range}\")\n", + "print()" + ], + "id": "36ab6e8d6aa7a06" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "# --------------------------------------------------------------\n", + "# 2) Pandas – 5 Questions\n", + "# --------------------------------------------------------------\n", + "\n", + "# Q6 ------------------------------------------------------------\n", + "df = pd.read_csv(\"employees.csv\")\n", + "\n", + "print(\"Q6 – Load & inspect\")\n", + "print(df.head())\n", + "print(\"\\n--- info() ---\")\n", + "df.info()\n", + "print(\"\\n--- describe() ---\")\n", + "print(df.describe())\n", + "print()" + ], + "id": "e6b22040b3c6b08a" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "# Q7 ------------------------------------------------------------\n", + "print(\"Q7 – Selected columns & last rows\")\n", + "print(df[[\"id\", \"age\", \"salary\"]])\n", + "print(\"\\nLast 3 rows:\")\n", + "print(df.tail(3))\n", + "print()" + ], + "id": "1f7f7753bf412451" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "# Q8 ------------------------------------------------------------\n", + "it_emp = df[df[\"dept\"] == \"IT\"]\n", + "print(\"Q8 – IT department only\")\n", + "print(it_emp)\n", + "print(f\"Number of IT employees: {len(it_emp)}\")\n", + "print()" + ], + "id": "2e9c22851b0a0233" + }, + { + "metadata": {}, + "cell_type": "code", "outputs": [], + "execution_count": null, + "source": [ + "# Q9 ------------------------------------------------------------\n", + "top3 = df.sort_values(\"salary\", ascending=False).head(3)\n", + "print(\"Q9 – Top 3 highest-paid\")\n", + "print(top3[[\"id\", \"age\", \"salary\", \"dept\"]])\n", + "print()" + ], + "id": "b15ee57f2cba0904" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-06T08:05:01.269604Z", + "start_time": "2025-11-06T08:05:01.248774Z" + } + }, + "cell_type": "code", "source": [ - "" - ] + "# Q10 -----------------------------------------------------------\n", + "\n", + "df = pd.read_csv(\"employees.csv\")\n", + "df.loc[df[\"salary\"] > 80000, \"salary\"] = 80000\n", + "new_avg = df[\"salary\"].mean()\n", + "\n", + "print(\"Q10 – After capping salaries > 80000\")\n", + "print(df)\n", + "print(f\"New average salary: {new_avg:.2f}\")" + ], + "id": "77ba42fc593c6897", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Q10 – After capping salaries > 80000\n", + " id age salary dept\n", + "0 1 56 77191 HR\n", + "1 2 46 74131 IT\n", + "2 3 32 46023 Finance\n", + "3 4 25 71090 IT\n", + "4 5 38 31685 HR\n", + "5 6 56 30769 Sales\n", + "6 7 36 80000 Finance\n", + "7 8 40 80000 IT\n", + "8 9 28 32433 Sales\n", + "9 10 28 35311 HR\n", + "New average salary: 55863.30\n" + ] + } + ], + "execution_count": 7 } ], "metadata": { From 96b52e623273739265d515fc227e4f151ad36c7b Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Wed, 12 Nov 2025 11:57:20 +0600 Subject: [PATCH 72/78] Mod 14 --- .../14.1 Filtering Based on String.ipynb | 11227 +++++++++++++++- Python_For_ML/Week_4/Mod_14/new_data,csv | 22 + Python_For_ML/Week_4/Mod_14/quize.ipynb | 342 + Python_For_ML/Week_4/Mod_14/student_data.csv | 22 + 4 files changed, 11586 insertions(+), 27 deletions(-) create mode 100644 Python_For_ML/Week_4/Mod_14/new_data,csv create mode 100644 Python_For_ML/Week_4/Mod_14/quize.ipynb create mode 100644 Python_For_ML/Week_4/Mod_14/student_data.csv diff --git a/Python_For_ML/Week_4/Mod_14/14.1 Filtering Based on String.ipynb b/Python_For_ML/Week_4/Mod_14/14.1 Filtering Based on String.ipynb index be15a99..52e3512 100644 --- a/Python_For_ML/Week_4/Mod_14/14.1 Filtering Based on String.ipynb +++ b/Python_For_ML/Week_4/Mod_14/14.1 Filtering Based on String.ipynb @@ -6,12 +6,17 @@ "metadata": { "collapsed": true, "ExecuteTime": { - "end_time": "2025-11-10T12:43:50.300394Z", - "start_time": "2025-11-10T12:43:50.293154Z" + "end_time": "2025-11-12T00:41:41.163658Z", + "start_time": "2025-11-12T00:41:38.463044Z" } }, "source": [ + "from unittest.mock import inplace\n", + "\n", "import pandas as pd\n", + "from adodbapi.is64bit import Python\n", + "\n", + "from J_Average import average\n", "\n", "data = {\n", "\"Name\": [\"Alice\", \"Bob\", \"Charlie\", \"David\", \"Eve\", \"Frank\", \"Grace\", \"Hannah\",\"Sakib\"],\n", @@ -27,6 +32,16 @@ "name": "stdout", "output_type": "stream", "text": [ + " Name City Department Salary\n", + "0 Alice New York HR 50000\n", + "1 Bob Los Angeles IT 60000\n", + "2 Charlie Newark Finance 55000\n", + "3 David Boston IT 70000\n", + "4 Eve New Delhi HR 52000\n", + "5 Frank Chicago Marketing 58000\n", + "6 Grace New Orleans Finance 62000\n", + "7 Hannah Houston HR 51000\n", + "8 Sakib H Los Ang HR 70000\n", " Name City Department Salary\n", "0 Alice New York HR 50000\n", "1 Bob Los Angeles IT 60000\n", @@ -40,13 +55,13 @@ ] } ], - "execution_count": 2 + "execution_count": 1 }, { "metadata": { "ExecuteTime": { - "end_time": "2025-11-10T14:25:23.384188Z", - "start_time": "2025-11-10T14:25:23.369007Z" + "end_time": "2025-11-12T00:41:41.225701Z", + "start_time": "2025-11-12T00:41:41.200055Z" } }, "cell_type": "code", @@ -121,18 +136,18 @@ "" ] }, - "execution_count": 5, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], - "execution_count": 5 + "execution_count": 2 }, { "metadata": { "ExecuteTime": { - "end_time": "2025-11-10T14:27:30.726934Z", - "start_time": "2025-11-10T14:27:30.719059Z" + "end_time": "2025-11-12T00:41:41.305925Z", + "start_time": "2025-11-12T00:41:41.299264Z" } }, "cell_type": "code", @@ -183,18 +198,18 @@ "" ] }, - "execution_count": 8, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], - "execution_count": 8 + "execution_count": 3 }, { "metadata": { "ExecuteTime": { - "end_time": "2025-11-10T14:29:56.275274Z", - "start_time": "2025-11-10T14:29:56.268963Z" + "end_time": "2025-11-12T00:41:41.530151Z", + "start_time": "2025-11-12T00:41:41.520602Z" } }, "cell_type": "code", @@ -245,18 +260,18 @@ "" ] }, - "execution_count": 10, + "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], - "execution_count": 10 + "execution_count": 4 }, { "metadata": { "ExecuteTime": { - "end_time": "2025-11-10T14:30:54.391013Z", - "start_time": "2025-11-10T14:30:54.381242Z" + "end_time": "2025-11-12T00:41:42.181602Z", + "start_time": "2025-11-12T00:41:42.172211Z" } }, "cell_type": "code", @@ -315,18 +330,18 @@ "" ] }, - "execution_count": 11, + "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], - "execution_count": 11 + "execution_count": 5 }, { "metadata": { "ExecuteTime": { - "end_time": "2025-11-10T14:33:00.609429Z", - "start_time": "2025-11-10T14:33:00.602675Z" + "end_time": "2025-11-12T00:41:42.473182Z", + "start_time": "2025-11-12T00:41:42.466579Z" } }, "cell_type": "code", @@ -385,18 +400,18 @@ "" ] }, - "execution_count": 12, + "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], - "execution_count": 12 + "execution_count": 6 }, { "metadata": { "ExecuteTime": { - "end_time": "2025-11-10T14:34:49.825323Z", - "start_time": "2025-11-10T14:34:49.811671Z" + "end_time": "2025-11-12T00:41:42.856733Z", + "start_time": "2025-11-12T00:41:42.849558Z" } }, "cell_type": "code", @@ -487,12 +502,11170 @@ "" ] }, - "execution_count": 13, + "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], - "execution_count": 13 + "execution_count": 7 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **14.2 Adding new Column and Saving the File**\n", + "id": "8e2cda8f0523b09b" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:43.093404Z", + "start_time": "2025-11-12T00:41:43.069297Z" + } + }, + "cell_type": "code", + "source": [ + "df = pd.read_csv('student_completed_data.csv')\n", + "df" + ], + "id": "a9d1436b63fcf91e", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName CompletionStatus EnrollmentDate FinishedDate \\\n", + "0 PH0001 Alif Rahman Completed 2024-09-01 2024-12-23 \n", + "1 PH0002 Fatima Akhter Completed 2024-08-11 2024-11-07 \n", + "2 PH0003 Imran Hossain Completed 2024-05-08 2024-08-08 \n", + "3 PH0004 Jannatul Ferdous Completed 2024-07-05 2024-09-23 \n", + "4 PH0005 Kamal Uddin Completed 2024-02-01 2024-04-17 \n", + "5 PH0006 Laila Begum Completed 2024-09-07 2024-12-31 \n", + "6 PH0007 Mahmudul Hasan Completed 2024-06-07 2024-07-20 \n", + "7 PH0008 Nadia Islam Completed 2024-03-22 2024-05-01 \n", + "8 PH0009 Omar Faruq Completed 2024-02-12 2024-06-08 \n", + "9 PH0010 Priya Sharma Completed 2024-06-19 2024-08-19 \n", + "10 PH0011 Rahim Sheikh Completed 2024-03-14 2024-06-11 \n", + "11 PH0012 Sadia Chowdhury Completed 2024-08-04 2024-10-25 \n", + "12 PH0013 Tanvir Ahmed Completed 2024-06-07 2024-08-03 \n", + "13 PH0014 Urmi Akter Completed 2024-01-04 2024-03-23 \n", + "14 PH0015 Wahiduzzaman Completed 2024-02-22 2024-05-16 \n", + "15 PH0016 Ziaur Rahman Completed 2024-03-23 2024-06-21 \n", + "16 PH0017 Afsana Mimi Completed 2024-01-18 2024-03-16 \n", + "17 PH0018 Babul Ahmed Completed 2024-06-23 2024-09-20 \n", + "18 PH0019 Faria Rahman Completed 2024-04-19 2024-08-17 \n", + "19 PH0020 Tariq Hasan Completed 2024-07-21 2024-10-11 \n", + "\n", + " Instructor Location Total Marks \n", + "0 Ms. Salma Khulna 300 \n", + "1 Mr. Karim Dhaka 271 \n", + "2 Ms. Salma Dhaka 269 \n", + "3 Mr. Karim Khulna 270 \n", + "4 Mr. David Sylhet 254 \n", + "5 Mr. David Khulna 272 \n", + "6 Mr. David Chattogram 249 \n", + "7 Ms. Salma Khulna 246 \n", + "8 Mr. Karim Dhaka 291 \n", + "9 Mr. David Dhaka 286 \n", + "10 Mr. Karim Sylhet 283 \n", + "11 Mr. Karim Sylhet 266 \n", + "12 Mr. David Dhaka 248 \n", + "13 Mr. David Sylhet 285 \n", + "14 Mr. David Rajshahi 291 \n", + "15 Ms. Salma Rajshahi 234 \n", + "16 Mr. David Khulna 236 \n", + "17 Mr. David Dhaka 278 \n", + "18 Mr. Karim Sylhet 277 \n", + "19 Mr. Karim Khulna 253 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusEnrollmentDateFinishedDateInstructorLocationTotal Marks
0PH0001Alif RahmanCompleted2024-09-012024-12-23Ms. SalmaKhulna300
1PH0002Fatima AkhterCompleted2024-08-112024-11-07Mr. KarimDhaka271
2PH0003Imran HossainCompleted2024-05-082024-08-08Ms. SalmaDhaka269
3PH0004Jannatul FerdousCompleted2024-07-052024-09-23Mr. KarimKhulna270
4PH0005Kamal UddinCompleted2024-02-012024-04-17Mr. DavidSylhet254
5PH0006Laila BegumCompleted2024-09-072024-12-31Mr. DavidKhulna272
6PH0007Mahmudul HasanCompleted2024-06-072024-07-20Mr. DavidChattogram249
7PH0008Nadia IslamCompleted2024-03-222024-05-01Ms. SalmaKhulna246
8PH0009Omar FaruqCompleted2024-02-122024-06-08Mr. KarimDhaka291
9PH0010Priya SharmaCompleted2024-06-192024-08-19Mr. DavidDhaka286
10PH0011Rahim SheikhCompleted2024-03-142024-06-11Mr. KarimSylhet283
11PH0012Sadia ChowdhuryCompleted2024-08-042024-10-25Mr. KarimSylhet266
12PH0013Tanvir AhmedCompleted2024-06-072024-08-03Mr. DavidDhaka248
13PH0014Urmi AkterCompleted2024-01-042024-03-23Mr. DavidSylhet285
14PH0015WahiduzzamanCompleted2024-02-222024-05-16Mr. DavidRajshahi291
15PH0016Ziaur RahmanCompleted2024-03-232024-06-21Ms. SalmaRajshahi234
16PH0017Afsana MimiCompleted2024-01-182024-03-16Mr. DavidKhulna236
17PH0018Babul AhmedCompleted2024-06-232024-09-20Mr. DavidDhaka278
18PH0019Faria RahmanCompleted2024-04-192024-08-17Mr. KarimSylhet277
19PH0020Tariq HasanCompleted2024-07-212024-10-11Mr. KarimKhulna253
\n", + "
" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 8 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:43.449474Z", + "start_time": "2025-11-12T00:41:43.435425Z" + } + }, + "cell_type": "code", + "source": [ + "df['Country'] = 'Bangladesh'\n", + "df" + ], + "id": "99379a3fb75a9402", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName CompletionStatus EnrollmentDate FinishedDate \\\n", + "0 PH0001 Alif Rahman Completed 2024-09-01 2024-12-23 \n", + "1 PH0002 Fatima Akhter Completed 2024-08-11 2024-11-07 \n", + "2 PH0003 Imran Hossain Completed 2024-05-08 2024-08-08 \n", + "3 PH0004 Jannatul Ferdous Completed 2024-07-05 2024-09-23 \n", + "4 PH0005 Kamal Uddin Completed 2024-02-01 2024-04-17 \n", + "5 PH0006 Laila Begum Completed 2024-09-07 2024-12-31 \n", + "6 PH0007 Mahmudul Hasan Completed 2024-06-07 2024-07-20 \n", + "7 PH0008 Nadia Islam Completed 2024-03-22 2024-05-01 \n", + "8 PH0009 Omar Faruq Completed 2024-02-12 2024-06-08 \n", + "9 PH0010 Priya Sharma Completed 2024-06-19 2024-08-19 \n", + "10 PH0011 Rahim Sheikh Completed 2024-03-14 2024-06-11 \n", + "11 PH0012 Sadia Chowdhury Completed 2024-08-04 2024-10-25 \n", + "12 PH0013 Tanvir Ahmed Completed 2024-06-07 2024-08-03 \n", + "13 PH0014 Urmi Akter Completed 2024-01-04 2024-03-23 \n", + "14 PH0015 Wahiduzzaman Completed 2024-02-22 2024-05-16 \n", + "15 PH0016 Ziaur Rahman Completed 2024-03-23 2024-06-21 \n", + "16 PH0017 Afsana Mimi Completed 2024-01-18 2024-03-16 \n", + "17 PH0018 Babul Ahmed Completed 2024-06-23 2024-09-20 \n", + "18 PH0019 Faria Rahman Completed 2024-04-19 2024-08-17 \n", + "19 PH0020 Tariq Hasan Completed 2024-07-21 2024-10-11 \n", + "\n", + " Instructor Location Total Marks Country \n", + "0 Ms. Salma Khulna 300 Bangladesh \n", + "1 Mr. Karim Dhaka 271 Bangladesh \n", + "2 Ms. Salma Dhaka 269 Bangladesh \n", + "3 Mr. Karim Khulna 270 Bangladesh \n", + "4 Mr. David Sylhet 254 Bangladesh \n", + "5 Mr. David Khulna 272 Bangladesh \n", + "6 Mr. David Chattogram 249 Bangladesh \n", + "7 Ms. Salma Khulna 246 Bangladesh \n", + "8 Mr. Karim Dhaka 291 Bangladesh \n", + "9 Mr. David Dhaka 286 Bangladesh \n", + "10 Mr. Karim Sylhet 283 Bangladesh \n", + "11 Mr. Karim Sylhet 266 Bangladesh \n", + "12 Mr. David Dhaka 248 Bangladesh \n", + "13 Mr. David Sylhet 285 Bangladesh \n", + "14 Mr. David Rajshahi 291 Bangladesh \n", + "15 Ms. Salma Rajshahi 234 Bangladesh \n", + "16 Mr. David Khulna 236 Bangladesh \n", + "17 Mr. David Dhaka 278 Bangladesh \n", + "18 Mr. Karim Sylhet 277 Bangladesh \n", + "19 Mr. Karim Khulna 253 Bangladesh " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusEnrollmentDateFinishedDateInstructorLocationTotal MarksCountry
0PH0001Alif RahmanCompleted2024-09-012024-12-23Ms. SalmaKhulna300Bangladesh
1PH0002Fatima AkhterCompleted2024-08-112024-11-07Mr. KarimDhaka271Bangladesh
2PH0003Imran HossainCompleted2024-05-082024-08-08Ms. SalmaDhaka269Bangladesh
3PH0004Jannatul FerdousCompleted2024-07-052024-09-23Mr. KarimKhulna270Bangladesh
4PH0005Kamal UddinCompleted2024-02-012024-04-17Mr. DavidSylhet254Bangladesh
5PH0006Laila BegumCompleted2024-09-072024-12-31Mr. DavidKhulna272Bangladesh
6PH0007Mahmudul HasanCompleted2024-06-072024-07-20Mr. DavidChattogram249Bangladesh
7PH0008Nadia IslamCompleted2024-03-222024-05-01Ms. SalmaKhulna246Bangladesh
8PH0009Omar FaruqCompleted2024-02-122024-06-08Mr. KarimDhaka291Bangladesh
9PH0010Priya SharmaCompleted2024-06-192024-08-19Mr. DavidDhaka286Bangladesh
10PH0011Rahim SheikhCompleted2024-03-142024-06-11Mr. KarimSylhet283Bangladesh
11PH0012Sadia ChowdhuryCompleted2024-08-042024-10-25Mr. KarimSylhet266Bangladesh
12PH0013Tanvir AhmedCompleted2024-06-072024-08-03Mr. DavidDhaka248Bangladesh
13PH0014Urmi AkterCompleted2024-01-042024-03-23Mr. DavidSylhet285Bangladesh
14PH0015WahiduzzamanCompleted2024-02-222024-05-16Mr. DavidRajshahi291Bangladesh
15PH0016Ziaur RahmanCompleted2024-03-232024-06-21Ms. SalmaRajshahi234Bangladesh
16PH0017Afsana MimiCompleted2024-01-182024-03-16Mr. DavidKhulna236Bangladesh
17PH0018Babul AhmedCompleted2024-06-232024-09-20Mr. DavidDhaka278Bangladesh
18PH0019Faria RahmanCompleted2024-04-192024-08-17Mr. KarimSylhet277Bangladesh
19PH0020Tariq HasanCompleted2024-07-212024-10-11Mr. KarimKhulna253Bangladesh
\n", + "
" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 9 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:43.698696Z", + "start_time": "2025-11-12T00:41:43.686827Z" + } + }, + "cell_type": "code", + "source": "df = pd.read_csv('student_data.csv')", + "id": "4553846dd70c2b61", + "outputs": [], + "execution_count": 10 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:43.933685Z", + "start_time": "2025-11-12T00:41:43.909878Z" + } + }, + "cell_type": "code", + "source": [ + "df['Total Marks'] = df['Data Structure Marks'] + df['Python Marks'] + df['Algorithm Marks']\n", + "df" + ], + "id": "9fc0b2cec670f0ed", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN \n", + "\n", + " Total Marks \n", + "0 258.0 \n", + "1 NaN \n", + "2 261.0 \n", + "3 238.0 \n", + "4 NaN \n", + "5 228.0 \n", + "6 NaN \n", + "7 247.0 \n", + "8 220.0 \n", + "9 266.0 \n", + "10 NaN \n", + "11 257.0 \n", + "12 229.0 \n", + "13 NaN \n", + "14 256.0 \n", + "15 NaN \n", + "16 273.0 \n", + "17 261.0 \n", + "18 NaN \n", + "19 261.0 \n", + "20 NaN " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal Marks
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka258.0
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogramNaN
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka261.0
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet238.0
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogramNaN
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi228.0
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhakaNaN
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram247.0
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka220.0
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet266.0
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulnaNaN
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram257.0
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka229.0
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahiNaN
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka256.0
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogramNaN
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka273.0
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet261.0
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogramNaN
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka261.0
20NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "
" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 11 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:44.152120Z", + "start_time": "2025-11-12T00:41:44.131254Z" + } + }, + "cell_type": "code", + "source": [ + "import numpy as np\n", + "df['A+ in DS'] = np.where(df['Data Structure Marks'] > 90, 'A+', 'A')\n", + "df" + ], + "id": "942021a6c6220cf3", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN \n", + "\n", + " Total Marks A+ in DS \n", + "0 258.0 A \n", + "1 NaN A+ \n", + "2 261.0 A \n", + "3 238.0 A \n", + "4 NaN A \n", + "5 228.0 A \n", + "6 NaN A \n", + "7 247.0 A \n", + "8 220.0 A \n", + "9 266.0 A \n", + "10 NaN A \n", + "11 257.0 A \n", + "12 229.0 A \n", + "13 NaN A \n", + "14 256.0 A \n", + "15 NaN A+ \n", + "16 273.0 A \n", + "17 261.0 A \n", + "18 NaN A \n", + "19 261.0 A \n", + "20 NaN A " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal MarksA+ in DS
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka258.0A
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogramNaNA+
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka261.0A
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet238.0A
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogramNaNA
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi228.0A
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhakaNaNA
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram247.0A
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka220.0A
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet266.0A
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulnaNaNA
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram257.0A
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka229.0A
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahiNaNA
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka256.0A
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogramNaNA+
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka273.0A
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet261.0A
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogramNaNA
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka261.0A
20NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNA
\n", + "
" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 12 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:44.525725Z", + "start_time": "2025-11-12T00:41:44.507594Z" + } + }, + "cell_type": "code", + "source": [ + "df['A+ in DS'] = df['Data Structure Marks'] > 70\n", + "df" + ], + "id": "c80074387b7cc53e", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN \n", + "\n", + " Total Marks A+ in DS \n", + "0 258.0 True \n", + "1 NaN True \n", + "2 261.0 True \n", + "3 238.0 True \n", + "4 NaN False \n", + "5 228.0 True \n", + "6 NaN True \n", + "7 247.0 True \n", + "8 220.0 True \n", + "9 266.0 True \n", + "10 NaN False \n", + "11 257.0 True \n", + "12 229.0 True \n", + "13 NaN False \n", + "14 256.0 True \n", + "15 NaN True \n", + "16 273.0 True \n", + "17 261.0 True \n", + "18 NaN False \n", + "19 261.0 True \n", + "20 NaN False " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal MarksA+ in DS
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka258.0True
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogramNaNTrue
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka261.0True
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet238.0True
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogramNaNFalse
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi228.0True
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhakaNaNTrue
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram247.0True
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka220.0True
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet266.0True
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulnaNaNFalse
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram257.0True
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka229.0True
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahiNaNFalse
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka256.0True
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogramNaNTrue
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka273.0True
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet261.0True
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogramNaNFalse
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka261.0True
20NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNFalse
\n", + "
" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 13 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:44.770334Z", + "start_time": "2025-11-12T00:41:44.749246Z" + } + }, + "cell_type": "code", + "source": [ + "df['First Name'] = df['FullName'].str.split(' ').str[0]\n", + "\n", + "df" + ], + "id": "5749176c47ea17f9", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN \n", + "\n", + " Total Marks A+ in DS First Name \n", + "0 258.0 True Alif \n", + "1 NaN True Fatima \n", + "2 261.0 True Imran \n", + "3 238.0 True Jannatul \n", + "4 NaN False Kamal \n", + "5 228.0 True Laila \n", + "6 NaN True Mahmudul \n", + "7 247.0 True Nadia \n", + "8 220.0 True Omar \n", + "9 266.0 True Priya \n", + "10 NaN False Rahim \n", + "11 257.0 True Sadia \n", + "12 229.0 True Tanvir \n", + "13 NaN False Urmi \n", + "14 256.0 True Wahiduzzaman \n", + "15 NaN True Ziaur \n", + "16 273.0 True Afsana \n", + "17 261.0 True Babul \n", + "18 NaN False Faria \n", + "19 261.0 True Nasir \n", + "20 NaN False NaN " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal MarksA+ in DSFirst Name
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka258.0TrueAlif
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogramNaNTrueFatima
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka261.0TrueImran
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet238.0TrueJannatul
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogramNaNFalseKamal
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi228.0TrueLaila
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhakaNaNTrueMahmudul
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram247.0TrueNadia
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka220.0TrueOmar
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet266.0TruePriya
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulnaNaNFalseRahim
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram257.0TrueSadia
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka229.0TrueTanvir
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahiNaNFalseUrmi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka256.0TrueWahiduzzaman
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogramNaNTrueZiaur
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka273.0TrueAfsana
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet261.0TrueBabul
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogramNaNFalseFaria
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka261.0TrueNasir
20NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNFalseNaN
\n", + "
" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 14 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:45.153247Z", + "start_time": "2025-11-12T00:41:45.136188Z" + } + }, + "cell_type": "code", + "source": [ + "df1 = pd.read_csv('student_data.csv')\n", + "df1" + ], + "id": "4e134d88212ea0ea", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
20NaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "
" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 15 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:45.393714Z", + "start_time": "2025-11-12T00:41:45.375913Z" + } + }, + "cell_type": "code", + "source": "df.to_csv('new_data,csv')", + "id": "6718ef4f921ec87d", + "outputs": [], + "execution_count": 16 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **14.3 Checking Duplicates and Null Values in DF**", + "id": "d256640924347817" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:45.633628Z", + "start_time": "2025-11-12T00:41:45.624721Z" + } + }, + "cell_type": "code", + "source": [ + "data = {\n", + " \"Name\": [\"Alice\", \"Bob\", \"Charlie\", \"Alice\", \"David\", \"Bob\"],\n", + " \"City\": [\"New York\", \"London\", \"Paris\", \"New York\", \"Tokyo\", \"London\"],\n", + " \"Score\": [85, 90, 78, 85, 95, 90]\n", + "}\n", + "df = pd.DataFrame(data)\n", + "df" + ], + "id": "7f15be492e5ab163", + "outputs": [ + { + "data": { + "text/plain": [ + " Name City Score\n", + "0 Alice New York 85\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "3 Alice New York 85\n", + "4 David Tokyo 95\n", + "5 Bob London 90" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
0AliceNew York85
1BobLondon90
2CharlieParis78
3AliceNew York85
4DavidTokyo95
5BobLondon90
\n", + "
" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 17 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:45.887378Z", + "start_time": "2025-11-12T00:41:45.873408Z" + } + }, + "cell_type": "code", + "source": [ + "df['Name'].unique()\n", + "len(df['Name'].unique())" + ], + "id": "765f7f8c819e482b", + "outputs": [ + { + "data": { + "text/plain": [ + "4" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 18 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:46.111812Z", + "start_time": "2025-11-12T00:41:46.099741Z" + } + }, + "cell_type": "code", + "source": [ + "len(df1['Data Structure Marks'].unique())\n", + "#len(df1)" + ], + "id": "b424b0679ee4805b", + "outputs": [ + { + "data": { + "text/plain": [ + "13" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 19 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:46.280890Z", + "start_time": "2025-11-12T00:41:46.263729Z" + } + }, + "cell_type": "code", + "source": [ + "df1['Data Structure Marks'].nunique()\n", + "df1" + ], + "id": "7c6bff7c632d635f", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
20NaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "
" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 20 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:46.456692Z", + "start_time": "2025-11-12T00:41:46.388365Z" + } + }, + "cell_type": "code", + "source": "df.nunique()", + "id": "9ef1e7cdfa2fe5de", + "outputs": [ + { + "data": { + "text/plain": [ + "Name 4\n", + "City 4\n", + "Score 4\n", + "dtype: int64" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 21 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:41:46.802967Z", + "start_time": "2025-11-12T00:41:46.789583Z" + } + }, + "cell_type": "code", + "source": "df1.isnull()\n", + "id": "2b263b303fb080d", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks Python Marks \\\n", + "0 False False False False False \n", + "1 False False False False True \n", + "2 False False False False False \n", + "3 False False False False False \n", + "4 False False True True False \n", + "5 False False False False False \n", + "6 False False False False True \n", + "7 False False False False False \n", + "8 False False False False False \n", + "9 False False False False False \n", + "10 False False True True False \n", + "11 False False False False False \n", + "12 False False False False False \n", + "13 False False True True True \n", + "14 False False False False False \n", + "15 False False False False True \n", + "16 False False False False False \n", + "17 False False False False False \n", + "18 False False True True True \n", + "19 False False False False False \n", + "20 True True True True True \n", + "\n", + " CompletionStatus EnrollmentDate Instructor Location \n", + "0 False False False False \n", + "1 False False False False \n", + "2 False False False False \n", + "3 False False False False \n", + "4 False False False False \n", + "5 False False False False \n", + "6 False False False False \n", + "7 False False False False \n", + "8 False False False False \n", + "9 False False False False \n", + "10 False False False False \n", + "11 False False False False \n", + "12 False False False False \n", + "13 False False False False \n", + "14 False False False False \n", + "15 False False False False \n", + "16 False False False False \n", + "17 False False False False \n", + "18 False False False False \n", + "19 False False False False \n", + "20 True True True True " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0FalseFalseFalseFalseFalseFalseFalseFalseFalse
1FalseFalseFalseFalseTrueFalseFalseFalseFalse
2FalseFalseFalseFalseFalseFalseFalseFalseFalse
3FalseFalseFalseFalseFalseFalseFalseFalseFalse
4FalseFalseTrueTrueFalseFalseFalseFalseFalse
5FalseFalseFalseFalseFalseFalseFalseFalseFalse
6FalseFalseFalseFalseTrueFalseFalseFalseFalse
7FalseFalseFalseFalseFalseFalseFalseFalseFalse
8FalseFalseFalseFalseFalseFalseFalseFalseFalse
9FalseFalseFalseFalseFalseFalseFalseFalseFalse
10FalseFalseTrueTrueFalseFalseFalseFalseFalse
11FalseFalseFalseFalseFalseFalseFalseFalseFalse
12FalseFalseFalseFalseFalseFalseFalseFalseFalse
13FalseFalseTrueTrueTrueFalseFalseFalseFalse
14FalseFalseFalseFalseFalseFalseFalseFalseFalse
15FalseFalseFalseFalseTrueFalseFalseFalseFalse
16FalseFalseFalseFalseFalseFalseFalseFalseFalse
17FalseFalseFalseFalseFalseFalseFalseFalseFalse
18FalseFalseTrueTrueTrueFalseFalseFalseFalse
19FalseFalseFalseFalseFalseFalseFalseFalseFalse
20TrueTrueTrueTrueTrueTrueTrueTrueTrue
\n", + "
" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 22 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-11T13:49:58.667600Z", + "start_time": "2025-11-11T13:49:58.662959Z" + } + }, + "cell_type": "code", + "source": "df1['Data Structure Marks'].notnull()", + "id": "58d3b4aecef3d584", + "outputs": [ + { + "data": { + "text/plain": [ + "0 True\n", + "1 True\n", + "2 True\n", + "3 True\n", + "4 False\n", + "5 True\n", + "6 True\n", + "7 True\n", + "8 True\n", + "9 True\n", + "10 False\n", + "11 True\n", + "12 True\n", + "13 False\n", + "14 True\n", + "15 True\n", + "16 True\n", + "17 True\n", + "18 False\n", + "19 True\n", + "20 False\n", + "Name: Data Structure Marks, dtype: bool" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 31 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-11T13:51:04.178402Z", + "start_time": "2025-11-11T13:51:04.171132Z" + } + }, + "cell_type": "code", + "source": "df1['Data Structure Marks'].hasnans", + "id": "3948778378f256e6", + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 32 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-11T13:51:29.946564Z", + "start_time": "2025-11-11T13:51:29.942027Z" + } + }, + "cell_type": "code", + "source": "df1['StudentID'].hasnans", + "id": "10b3affcd4e9532d", + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 33 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_14.4 Handling Duplicates Values_**", + "id": "287e3f5dcafe67fb" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-11T14:10:48.044515Z", + "start_time": "2025-11-11T14:10:48.034964Z" + } + }, + "cell_type": "code", + "source": [ + "data = {\n", + " \"Name\": [\"Alice\", \"Bob\", \"Charlie\", \"Alice\", \"David\", \"Bob\"],\n", + " \"City\": [\"New York\", \"London\", \"Paris\", \"New York\", \"Tokyo\", \"London\"],\n", + " \"Score\": [85, 90, 78, 85, 95, 90]\n", + "}\n", + "\n", + "df2=pd.DataFrame(data)\n", + "df" + ], + "id": "664964dc90ff40c1", + "outputs": [ + { + "data": { + "text/plain": [ + " Name City Score\n", + "0 Alice New York 85\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "3 Alice New York 85\n", + "4 David Tokyo 95\n", + "5 Bob London 90" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
0AliceNew York85
1BobLondon90
2CharlieParis78
3AliceNew York85
4DavidTokyo95
5BobLondon90
\n", + "
" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 34 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-11T14:12:32.965019Z", + "start_time": "2025-11-11T14:12:32.960418Z" + } + }, + "cell_type": "code", + "source": "df2.duplicated().sum()\n", + "id": "26d6cff08655e5bc", + "outputs": [ + { + "data": { + "text/plain": [ + "np.int64(2)" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 36 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-11T14:13:00.900685Z", + "start_time": "2025-11-11T14:13:00.891761Z" + } + }, + "cell_type": "code", + "source": "df2.drop_duplicates()\n", + "id": "dcc01cc4ee256f42", + "outputs": [ + { + "data": { + "text/plain": [ + " Name City Score\n", + "0 Alice New York 85\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "4 David Tokyo 95" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
0AliceNew York85
1BobLondon90
2CharlieParis78
4DavidTokyo95
\n", + "
" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 37 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-11T14:14:03.775881Z", + "start_time": "2025-11-11T14:14:03.764405Z" + } + }, + "cell_type": "code", + "source": [ + "df2.drop_duplicates(inplace=True)\n", + "df2" + ], + "id": "803536ff59d8aff4", + "outputs": [ + { + "data": { + "text/plain": [ + " Name City Score\n", + "0 Alice New York 85\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "4 David Tokyo 95" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
0AliceNew York85
1BobLondon90
2CharlieParis78
4DavidTokyo95
\n", + "
" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 39 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-11T14:17:43.265768Z", + "start_time": "2025-11-11T14:17:43.258478Z" + } + }, + "cell_type": "code", + "source": "df.drop_duplicates(subset='Name')", + "id": "a97b9b27877a3a84", + "outputs": [ + { + "data": { + "text/plain": [ + " Name City Score\n", + "0 Alice New York 85\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "4 David Tokyo 95" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
0AliceNew York85
1BobLondon90
2CharlieParis78
4DavidTokyo95
\n", + "
" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 40 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-11T14:28:42.567181Z", + "start_time": "2025-11-11T14:28:42.560568Z" + } + }, + "cell_type": "code", + "source": "df.drop_duplicates(subset=['Name'], keep='first')", + "id": "9b7f86e0d66d360a", + "outputs": [ + { + "data": { + "text/plain": [ + " Name City Score\n", + "0 Alice New York 85\n", + "1 Bob London 90\n", + "2 Charlie Paris 78\n", + "4 David Tokyo 95" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityScore
0AliceNew York85
1BobLondon90
2CharlieParis78
4DavidTokyo95
\n", + "
" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 43 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **14.5 Handling Null Values**", + "id": "49585213dc4c9e2" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:48:36.893029Z", + "start_time": "2025-11-12T00:48:36.878329Z" + } + }, + "cell_type": "code", + "source": [ + "df = pd.read_csv('student_data.csv')\n", + "\n", + "df" + ], + "id": "aa6a28d39378fc89", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
20NaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "
" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 31 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:48:50.305909Z", + "start_time": "2025-11-12T00:48:50.293171Z" + } + }, + "cell_type": "code", + "source": [ + "df.dropna(how='all', inplace=True)\n", + "df" + ], + "id": "996d84bc947b4e84", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 33 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:48:52.567949Z", + "start_time": "2025-11-12T00:48:52.556640Z" + } + }, + "cell_type": "code", + "source": "df.dropna(subset=['Python Marks', 'Algorithm Marks'])", + "id": "50aa697da677d06d", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 34 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:57:41.658440Z", + "start_time": "2025-11-12T00:57:41.645459Z" + } + }, + "cell_type": "code", + "source": "df.fillna(0)\n", + "id": "e31f3236050869d8", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin 0.0 0.0 \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh 0.0 0.0 \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter 0.0 0.0 \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman 0.0 0.0 \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal Uddin0.00.095.000000In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim Sheikh0.00.091.000000In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi Akter0.00.085.666667Not Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria Rahman0.00.085.666667Not Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 39 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T00:57:44.151824Z", + "start_time": "2025-11-12T00:57:44.146651Z" + } + }, + "cell_type": "code", + "source": "df['FullName'].fillna('unknown')", + "id": "99ade46133b319c0", + "outputs": [ + { + "data": { + "text/plain": [ + "0 Alif Rahman\n", + "1 Fatima Akhter\n", + "2 Imran Hossain\n", + "3 Jannatul Ferdous\n", + "4 Kamal Uddin\n", + "5 Laila Begum\n", + "6 Mahmudul Hasan\n", + "7 Nadia Islam\n", + "8 Omar Faruq\n", + "9 Priya Sharma\n", + "10 Rahim Sheikh\n", + "11 Sadia Chowdhury\n", + "12 Tanvir Ahmed\n", + "13 Urmi Akter\n", + "14 Wahiduzzaman\n", + "15 Ziaur Rahman\n", + "16 Afsana Mimi\n", + "17 Babul Ahmed\n", + "18 Faria Rahman\n", + "19 Nasir Khan\n", + "Name: FullName, dtype: object" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 40 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:05:43.631303Z", + "start_time": "2025-11-12T01:05:43.618256Z" + } + }, + "cell_type": "code", + "source": [ + "df['Python Marks'].fillna(df['Python Marks'].mean(),inplace=True)\n", + "df" + ], + "id": "3dd4b7a9d60e64ef", + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\evan\\AppData\\Local\\Temp\\ipykernel_10292\\2954150572.py:1: FutureWarning: A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.\n", + "The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.\n", + "\n", + "For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.\n", + "\n", + "\n", + " df['Python Marks'].fillna(df['Python Marks'].mean(),inplace=True)\n" + ] + }, + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 55 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_14.6 Statistical Functions in Pandas_**\n", + "id": "a4fcc7df3b1135ab" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:02:12.713705Z", + "start_time": "2025-11-12T01:02:12.703405Z" + } + }, + "cell_type": "code", + "source": "df.dropna()", + "id": "cf61e9c2f43b39d", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka
\n", + "
" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 46 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:02:34.033406Z", + "start_time": "2025-11-12T01:02:34.029541Z" + } + }, + "cell_type": "code", + "source": "df['Data Structure Marks'].sum()", + "id": "795dd55aa4da81c4", + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(1344.0)" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 48 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:03:32.225016Z", + "start_time": "2025-11-12T01:03:32.220881Z" + } + }, + "cell_type": "code", + "source": [ + "print(df['Data Structure Marks'].min())\n", + "df['Data Structure Marks'].max()" + ], + "id": "a01ae5ca0be5bbcd", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "72.0\n" + ] + }, + { + "data": { + "text/plain": [ + "np.float64(94.0)" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 49 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:04:33.930732Z", + "start_time": "2025-11-12T01:04:33.924657Z" + } + }, + "cell_type": "code", + "source": "df['Data Structure Marks'].mean()", + "id": "e68b11c04fcf24", + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(84.0)" + ] + }, + "execution_count": 50, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 50 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:04:35.285803Z", + "start_time": "2025-11-12T01:04:35.274067Z" + } + }, + "cell_type": "code", + "source": "df['Data Structure Marks'].median()", + "id": "7096bf7c67ab19ad", + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(85.5)" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 51 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:04:45.328767Z", + "start_time": "2025-11-12T01:04:45.316666Z" + } + }, + "cell_type": "code", + "source": "df['Data Structure Marks'].mode()", + "id": "f2ecf8c3d5fe79f6", + "outputs": [ + { + "data": { + "text/plain": [ + "0 75.0\n", + "1 85.0\n", + "2 86.0\n", + "3 88.0\n", + "Name: Data Structure Marks, dtype: float64" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 53 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:05:34.824846Z", + "start_time": "2025-11-12T01:05:34.820591Z" + } + }, + "cell_type": "code", + "source": "df['Data Structure Marks'].std()", + "id": "c7bb31e405919644", + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(6.501281924871945)" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 54 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:06:46.023276Z", + "start_time": "2025-11-12T01:06:46.012364Z" + } + }, + "cell_type": "code", + "source": "df[['Data Structure Marks', 'Algorithm Marks']].corr()", + "id": "162318c5dabc3070", + "outputs": [ + { + "data": { + "text/plain": [ + " Data Structure Marks Algorithm Marks\n", + "Data Structure Marks 1.0 1.0\n", + "Algorithm Marks 1.0 1.0" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Data Structure MarksAlgorithm Marks
Data Structure Marks1.01.0
Algorithm Marks1.01.0
\n", + "
" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 56 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:08:46.581415Z", + "start_time": "2025-11-12T01:08:46.575545Z" + } + }, + "cell_type": "code", + "source": "df[['Python Marks', 'Algorithm Marks']].sum()", + "id": "e4fedbf030ed8b29", + "outputs": [ + { + "data": { + "text/plain": [ + "Python Marks 1713.333333\n", + "Algorithm Marks 1344.000000\n", + "dtype: float64" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 57 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:10:56.868680Z", + "start_time": "2025-11-12T01:10:56.863232Z" + } + }, + "cell_type": "code", + "source": "df[['Python Marks', 'Algorithm Marks']].sum(axis=1)", + "id": "fcc8e66b2616f1", + "outputs": [ + { + "data": { + "text/plain": [ + "0 173.000000\n", + "1 177.666667\n", + "2 173.000000\n", + "3 160.000000\n", + "4 95.000000\n", + "5 153.000000\n", + "6 165.666667\n", + "7 166.000000\n", + "8 148.000000\n", + "9 177.000000\n", + "10 91.000000\n", + "11 172.000000\n", + "12 154.000000\n", + "13 85.666667\n", + "14 170.000000\n", + "15 179.666667\n", + "16 183.000000\n", + "17 173.000000\n", + "18 85.666667\n", + "19 175.000000\n", + "dtype: float64" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 58 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:14:09.679321Z", + "start_time": "2025-11-12T01:14:09.665311Z" + } + }, + "cell_type": "code", + "source": [ + "df['Total Marks'] = df.iloc[::,2:5].sum(axis=1)\n", + "df" + ], + "id": "33b8715d0efb4066", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka \n", + "\n", + " Total Marks \n", + "0 258.000000 \n", + "1 269.666667 \n", + "2 261.000000 \n", + "3 238.000000 \n", + "4 95.000000 \n", + "5 228.000000 \n", + "6 245.666667 \n", + "7 247.000000 \n", + "8 220.000000 \n", + "9 266.000000 \n", + "10 91.000000 \n", + "11 257.000000 \n", + "12 229.000000 \n", + "13 85.666667 \n", + "14 256.000000 \n", + "15 273.666667 \n", + "16 273.000000 \n", + "17 261.000000 \n", + "18 85.666667 \n", + "19 261.000000 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal Marks
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka258.000000
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram269.666667
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka261.000000
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet238.000000
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram95.000000
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi228.000000
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka245.666667
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram247.000000
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka220.000000
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet266.000000
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna91.000000
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram257.000000
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka229.000000
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi85.666667
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka256.000000
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram273.666667
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka273.000000
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet261.000000
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram85.666667
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka261.000000
\n", + "
" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 59 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:14:55.312697Z", + "start_time": "2025-11-12T01:14:55.299128Z" + } + }, + "cell_type": "code", + "source": "df.describe()", + "id": "1dcc75eb7e345bde", + "outputs": [ + { + "data": { + "text/plain": [ + " Data Structure Marks Algorithm Marks Python Marks Total Marks\n", + "count 16.000000 16.000000 20.000000 20.000000\n", + "mean 84.000000 84.000000 85.666667 220.066667\n", + "std 6.501282 6.501282 4.630183 68.685962\n", + "min 72.000000 72.000000 76.000000 85.666667\n", + "25% 79.500000 79.500000 84.750000 226.000000\n", + "50% 85.500000 85.500000 85.666667 251.500000\n", + "75% 88.250000 88.250000 88.000000 261.000000\n", + "max 94.000000 94.000000 95.000000 273.666667" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Data Structure MarksAlgorithm MarksPython MarksTotal Marks
count16.00000016.00000020.00000020.000000
mean84.00000084.00000085.666667220.066667
std6.5012826.5012824.63018368.685962
min72.00000072.00000076.00000085.666667
25%79.50000079.50000084.750000226.000000
50%85.50000085.50000085.666667251.500000
75%88.25000088.25000088.000000261.000000
max94.00000094.00000095.000000273.666667
\n", + "
" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 60 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_14.7 Apply Function in DF_**\n", + "id": "32aa4ab92988daa3" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:16:46.929184Z", + "start_time": "2025-11-12T01:16:46.916052Z" + } + }, + "cell_type": "code", + "source": "df", + "id": "f1ab96c9349aac2f", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka \n", + "\n", + " Total Marks \n", + "0 258.000000 \n", + "1 269.666667 \n", + "2 261.000000 \n", + "3 238.000000 \n", + "4 95.000000 \n", + "5 228.000000 \n", + "6 245.666667 \n", + "7 247.000000 \n", + "8 220.000000 \n", + "9 266.000000 \n", + "10 91.000000 \n", + "11 257.000000 \n", + "12 229.000000 \n", + "13 85.666667 \n", + "14 256.000000 \n", + "15 273.666667 \n", + "16 273.000000 \n", + "17 261.000000 \n", + "18 85.666667 \n", + "19 261.000000 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal Marks
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka258.000000
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram269.666667
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka261.000000
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet238.000000
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram95.000000
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi228.000000
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka245.666667
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram247.000000
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka220.000000
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet266.000000
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna91.000000
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram257.000000
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka229.000000
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi85.666667
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka256.000000
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram273.666667
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka273.000000
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet261.000000
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram85.666667
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka261.000000
\n", + "
" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 61 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:18:31.647270Z", + "start_time": "2025-11-12T01:18:31.641362Z" + } + }, + "cell_type": "code", + "source": [ + "mn = df['Total Marks'].min()\n", + "mx = df['Total Marks'].max()\n", + "df['Scaled Marks'] = df['Total Marks'].apply(lambda x: (x - mn) / (mx - mn))" + ], + "id": "c6eb46aeb139594d", + "outputs": [], + "execution_count": 63 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:20:16.922957Z", + "start_time": "2025-11-12T01:20:16.906905Z" + } + }, + "cell_type": "code", + "source": "df", + "id": "54b9fdc67a2ef625", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka \n", + "\n", + " Total Marks Scaled Marks \n", + "0 258.000000 0.916667 \n", + "1 269.666667 0.978723 \n", + "2 261.000000 0.932624 \n", + "3 238.000000 0.810284 \n", + "4 95.000000 0.049645 \n", + "5 228.000000 0.757092 \n", + "6 245.666667 0.851064 \n", + "7 247.000000 0.858156 \n", + "8 220.000000 0.714539 \n", + "9 266.000000 0.959220 \n", + "10 91.000000 0.028369 \n", + "11 257.000000 0.911348 \n", + "12 229.000000 0.762411 \n", + "13 85.666667 0.000000 \n", + "14 256.000000 0.906028 \n", + "15 273.666667 1.000000 \n", + "16 273.000000 0.996454 \n", + "17 261.000000 0.932624 \n", + "18 85.666667 0.000000 \n", + "19 261.000000 0.932624 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal MarksScaled Marks
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka258.0000000.916667
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram269.6666670.978723
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka261.0000000.932624
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet238.0000000.810284
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram95.0000000.049645
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi228.0000000.757092
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka245.6666670.851064
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram247.0000000.858156
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka220.0000000.714539
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet266.0000000.959220
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna91.0000000.028369
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram257.0000000.911348
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka229.0000000.762411
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi85.6666670.000000
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka256.0000000.906028
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram273.6666671.000000
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka273.0000000.996454
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet261.0000000.932624
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram85.6666670.000000
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka261.0000000.932624
\n", + "
" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 64 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:28:07.101835Z", + "start_time": "2025-11-12T01:28:07.084425Z" + } + }, + "cell_type": "code", + "source": [ + "def grading_system(marks):\n", + " if marks >=260:\n", + " return 'A+'\n", + " elif marks >=250:\n", + " return 'A'\n", + " else:\n", + " return 'A-'\n", + "\n", + "df['Grade'] = df['Total Marks'].apply(grading_system)\n", + "df\n" + ], + "id": "6225377b9c4685e5", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka \n", + "\n", + " Total Marks Scaled Marks Grade \n", + "0 258.000000 0.916667 A \n", + "1 269.666667 0.978723 A+ \n", + "2 261.000000 0.932624 A+ \n", + "3 238.000000 0.810284 A- \n", + "4 95.000000 0.049645 A- \n", + "5 228.000000 0.757092 A- \n", + "6 245.666667 0.851064 A- \n", + "7 247.000000 0.858156 A- \n", + "8 220.000000 0.714539 A- \n", + "9 266.000000 0.959220 A+ \n", + "10 91.000000 0.028369 A- \n", + "11 257.000000 0.911348 A \n", + "12 229.000000 0.762411 A- \n", + "13 85.666667 0.000000 A- \n", + "14 256.000000 0.906028 A \n", + "15 273.666667 1.000000 A+ \n", + "16 273.000000 0.996454 A+ \n", + "17 261.000000 0.932624 A+ \n", + "18 85.666667 0.000000 A- \n", + "19 261.000000 0.932624 A+ " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal MarksScaled MarksGrade
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka258.0000000.916667A
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram269.6666670.978723A+
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka261.0000000.932624A+
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet238.0000000.810284A-
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram95.0000000.049645A-
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi228.0000000.757092A-
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka245.6666670.851064A-
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram247.0000000.858156A-
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka220.0000000.714539A-
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet266.0000000.959220A+
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna91.0000000.028369A-
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram257.0000000.911348A
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka229.0000000.762411A-
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi85.6666670.000000A-
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka256.0000000.906028A
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram273.6666671.000000A+
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka273.0000000.996454A+
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet261.0000000.932624A+
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram85.6666670.000000A-
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka261.0000000.932624A+
\n", + "
" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 68 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "", + "id": "c4ce68b2cdf2c68" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:31:42.844684Z", + "start_time": "2025-11-12T01:31:42.825388Z" + } + }, + "cell_type": "code", + "source": [ + "def marking_system(df):\n", + " a = df['Data Structure Marks'] * 2\n", + " b = df['Python Marks'] * 3\n", + " c = df['Algorithm Marks'] * 4\n", + "\n", + " return a+b+c\n", + "\n", + "\n", + "\n", + "df['Exceptional Marks'] = df.apply(marking_system,axis=1)\n", + "df" + ], + "id": "2555b6424a44b341", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \\\n", + "0 88.000000 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 85.666667 In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.000000 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.000000 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.000000 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.000000 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 85.666667 In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.000000 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.000000 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.000000 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.000000 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.000000 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.000000 Completed 2024-07-02 Mr. David Dhaka \n", + "13 85.666667 Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.000000 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 85.666667 In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.000000 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.000000 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 85.666667 Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.000000 Completed 2025-10-02 Ms. Salma Dhaka \n", + "\n", + " Total Marks Scaled Marks Grade Exceptional Marks \n", + "0 258.000000 0.916667 A 774.0 \n", + "1 269.666667 0.978723 A+ 809.0 \n", + "2 261.000000 0.932624 A+ 783.0 \n", + "3 238.000000 0.810284 A- 714.0 \n", + "4 95.000000 0.049645 A- NaN \n", + "5 228.000000 0.757092 A- 684.0 \n", + "6 245.666667 0.851064 A- 737.0 \n", + "7 247.000000 0.858156 A- 741.0 \n", + "8 220.000000 0.714539 A- 660.0 \n", + "9 266.000000 0.959220 A+ 798.0 \n", + "10 91.000000 0.028369 A- NaN \n", + "11 257.000000 0.911348 A 771.0 \n", + "12 229.000000 0.762411 A- 687.0 \n", + "13 85.666667 0.000000 A- NaN \n", + "14 256.000000 0.906028 A 768.0 \n", + "15 273.666667 1.000000 A+ 821.0 \n", + "16 273.000000 0.996454 A+ 819.0 \n", + "17 261.000000 0.932624 A+ 783.0 \n", + "18 85.666667 0.000000 A- NaN \n", + "19 261.000000 0.932624 A+ 783.0 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocationTotal MarksScaled MarksGradeExceptional Marks
0PH1001Alif Rahman85.085.088.000000Completed2024-01-15Mr. KarimDhaka258.0000000.916667A774.0
1PH1002Fatima Akhter92.092.085.666667In Progress2024-01-20Ms. SalmaChattogram269.6666670.978723A+809.0
2PH1003Imran Hossain88.088.085.000000Completed2024-02-10Mr. KarimDhaka261.0000000.932624A+783.0
3PH1004Jannatul Ferdous78.078.082.000000Completed2024-02-12Ms. SalmaSylhet238.0000000.810284A-714.0
4PH1005Kamal UddinNaNNaN95.000000In Progress2024-03-05Mr. KarimChattogram95.0000000.049645A-NaN
5PH1006Laila Begum75.075.078.000000Completed2024-03-08Ms. SalmaRajshahi228.0000000.757092A-684.0
6PH1007Mahmudul Hasan80.080.085.666667In Progress2024-04-01Mr. KarimDhaka245.6666670.851064A-737.0
7PH1008Nadia Islam81.081.085.000000Completed2024-04-22Ms. SalmaChattogram247.0000000.858156A-741.0
8PH1009Omar Faruq72.072.076.000000Completed2024-05-16Mr. DavidDhaka220.0000000.714539A-660.0
9PH1010Priya Sharma89.089.088.000000Completed2024-05-20Ms. SalmaSylhet266.0000000.959220A+798.0
10PH1011Rahim SheikhNaNNaN91.000000In Progress2024-06-11Mr. KarimKhulna91.0000000.028369A-NaN
11PH1012Sadia Chowdhury85.085.087.000000Completed2024-06-14Ms. SalmaChattogram257.0000000.911348A771.0
12PH1013Tanvir Ahmed75.075.079.000000Completed2024-07-02Mr. DavidDhaka229.0000000.762411A-687.0
13PH1014Urmi AkterNaNNaN85.666667Not Started2024-07-09Ms. SalmaRajshahi85.6666670.000000A-NaN
14PH1015Wahiduzzaman86.086.084.000000Completed2024-08-18Mr. KarimDhaka256.0000000.906028A768.0
15PH1016Ziaur Rahman94.094.085.666667In Progress2024-08-21Ms. SalmaChattogram273.6666671.000000A+821.0
16PH1017Afsana Mimi90.090.093.000000Completed2025-09-01Mr. KarimDhaka273.0000000.996454A+819.0
17PH1018Babul Ahmed88.088.085.000000Completed2025-09-05Ms. SalmaSylhet261.0000000.932624A+783.0
18PH1019Faria RahmanNaNNaN85.666667Not Started2025-09-15Mr. DavidChattogram85.6666670.000000A-NaN
19PH1020Nasir Khan86.086.089.000000Completed2025-10-02Ms. SalmaDhaka261.0000000.932624A+783.0
\n", + "
" + ] + }, + "execution_count": 69, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 69 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_14.8 DateTime and Timedelta_**", + "id": "7557f5adcdd2a35b" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T01:33:24.452532Z", + "start_time": "2025-11-12T01:33:24.440769Z" + } + }, + "cell_type": "code", + "source": [ + "df = pd.read_csv('student_completed_data.csv')\n", + "df" + ], + "id": "be60b05c6374b013", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName CompletionStatus EnrollmentDate FinishedDate \\\n", + "0 PH0001 Alif Rahman Completed 2024-09-01 2024-12-23 \n", + "1 PH0002 Fatima Akhter Completed 2024-08-11 2024-11-07 \n", + "2 PH0003 Imran Hossain Completed 2024-05-08 2024-08-08 \n", + "3 PH0004 Jannatul Ferdous Completed 2024-07-05 2024-09-23 \n", + "4 PH0005 Kamal Uddin Completed 2024-02-01 2024-04-17 \n", + "5 PH0006 Laila Begum Completed 2024-09-07 2024-12-31 \n", + "6 PH0007 Mahmudul Hasan Completed 2024-06-07 2024-07-20 \n", + "7 PH0008 Nadia Islam Completed 2024-03-22 2024-05-01 \n", + "8 PH0009 Omar Faruq Completed 2024-02-12 2024-06-08 \n", + "9 PH0010 Priya Sharma Completed 2024-06-19 2024-08-19 \n", + "10 PH0011 Rahim Sheikh Completed 2024-03-14 2024-06-11 \n", + "11 PH0012 Sadia Chowdhury Completed 2024-08-04 2024-10-25 \n", + "12 PH0013 Tanvir Ahmed Completed 2024-06-07 2024-08-03 \n", + "13 PH0014 Urmi Akter Completed 2024-01-04 2024-03-23 \n", + "14 PH0015 Wahiduzzaman Completed 2024-02-22 2024-05-16 \n", + "15 PH0016 Ziaur Rahman Completed 2024-03-23 2024-06-21 \n", + "16 PH0017 Afsana Mimi Completed 2024-01-18 2024-03-16 \n", + "17 PH0018 Babul Ahmed Completed 2024-06-23 2024-09-20 \n", + "18 PH0019 Faria Rahman Completed 2024-04-19 2024-08-17 \n", + "19 PH0020 Tariq Hasan Completed 2024-07-21 2024-10-11 \n", + "\n", + " Instructor Location Total Marks \n", + "0 Ms. Salma Khulna 300 \n", + "1 Mr. Karim Dhaka 271 \n", + "2 Ms. Salma Dhaka 269 \n", + "3 Mr. Karim Khulna 270 \n", + "4 Mr. David Sylhet 254 \n", + "5 Mr. David Khulna 272 \n", + "6 Mr. David Chattogram 249 \n", + "7 Ms. Salma Khulna 246 \n", + "8 Mr. Karim Dhaka 291 \n", + "9 Mr. David Dhaka 286 \n", + "10 Mr. Karim Sylhet 283 \n", + "11 Mr. Karim Sylhet 266 \n", + "12 Mr. David Dhaka 248 \n", + "13 Mr. David Sylhet 285 \n", + "14 Mr. David Rajshahi 291 \n", + "15 Ms. Salma Rajshahi 234 \n", + "16 Mr. David Khulna 236 \n", + "17 Mr. David Dhaka 278 \n", + "18 Mr. Karim Sylhet 277 \n", + "19 Mr. Karim Khulna 253 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusEnrollmentDateFinishedDateInstructorLocationTotal Marks
0PH0001Alif RahmanCompleted2024-09-012024-12-23Ms. SalmaKhulna300
1PH0002Fatima AkhterCompleted2024-08-112024-11-07Mr. KarimDhaka271
2PH0003Imran HossainCompleted2024-05-082024-08-08Ms. SalmaDhaka269
3PH0004Jannatul FerdousCompleted2024-07-052024-09-23Mr. KarimKhulna270
4PH0005Kamal UddinCompleted2024-02-012024-04-17Mr. DavidSylhet254
5PH0006Laila BegumCompleted2024-09-072024-12-31Mr. DavidKhulna272
6PH0007Mahmudul HasanCompleted2024-06-072024-07-20Mr. DavidChattogram249
7PH0008Nadia IslamCompleted2024-03-222024-05-01Ms. SalmaKhulna246
8PH0009Omar FaruqCompleted2024-02-122024-06-08Mr. KarimDhaka291
9PH0010Priya SharmaCompleted2024-06-192024-08-19Mr. DavidDhaka286
10PH0011Rahim SheikhCompleted2024-03-142024-06-11Mr. KarimSylhet283
11PH0012Sadia ChowdhuryCompleted2024-08-042024-10-25Mr. KarimSylhet266
12PH0013Tanvir AhmedCompleted2024-06-072024-08-03Mr. DavidDhaka248
13PH0014Urmi AkterCompleted2024-01-042024-03-23Mr. DavidSylhet285
14PH0015WahiduzzamanCompleted2024-02-222024-05-16Mr. DavidRajshahi291
15PH0016Ziaur RahmanCompleted2024-03-232024-06-21Ms. SalmaRajshahi234
16PH0017Afsana MimiCompleted2024-01-182024-03-16Mr. DavidKhulna236
17PH0018Babul AhmedCompleted2024-06-232024-09-20Mr. DavidDhaka278
18PH0019Faria RahmanCompleted2024-04-192024-08-17Mr. KarimSylhet277
19PH0020Tariq HasanCompleted2024-07-212024-10-11Mr. KarimKhulna253
\n", + "
" + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 70 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T02:36:04.144873Z", + "start_time": "2025-11-12T02:36:04.125251Z" + } + }, + "cell_type": "code", + "source": "df['EnrollmentDate'] = pd.to_datetime(df['EnrollmentDate'])", + "id": "f1e405f032c95fb", + "outputs": [], + "execution_count": 71 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T02:36:21.012610Z", + "start_time": "2025-11-12T02:36:21.005386Z" + } + }, + "cell_type": "code", + "source": "df['EnrollmentDate']", + "id": "17b745b8493e1127", + "outputs": [ + { + "data": { + "text/plain": [ + "0 2024-09-01\n", + "1 2024-08-11\n", + "2 2024-05-08\n", + "3 2024-07-05\n", + "4 2024-02-01\n", + "5 2024-09-07\n", + "6 2024-06-07\n", + "7 2024-03-22\n", + "8 2024-02-12\n", + "9 2024-06-19\n", + "10 2024-03-14\n", + "11 2024-08-04\n", + "12 2024-06-07\n", + "13 2024-01-04\n", + "14 2024-02-22\n", + "15 2024-03-23\n", + "16 2024-01-18\n", + "17 2024-06-23\n", + "18 2024-04-19\n", + "19 2024-07-21\n", + "Name: EnrollmentDate, dtype: datetime64[ns]" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 72 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T02:38:05.830293Z", + "start_time": "2025-11-12T02:38:05.816379Z" + } + }, + "cell_type": "code", + "source": [ + "df['Enrollment Year'] = df['EnrollmentDate'].dt.year\n", + "df" + ], + "id": "5f38470ff654e24c", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName CompletionStatus EnrollmentDate FinishedDate \\\n", + "0 PH0001 Alif Rahman Completed 2024-09-01 2024-12-23 \n", + "1 PH0002 Fatima Akhter Completed 2024-08-11 2024-11-07 \n", + "2 PH0003 Imran Hossain Completed 2024-05-08 2024-08-08 \n", + "3 PH0004 Jannatul Ferdous Completed 2024-07-05 2024-09-23 \n", + "4 PH0005 Kamal Uddin Completed 2024-02-01 2024-04-17 \n", + "5 PH0006 Laila Begum Completed 2024-09-07 2024-12-31 \n", + "6 PH0007 Mahmudul Hasan Completed 2024-06-07 2024-07-20 \n", + "7 PH0008 Nadia Islam Completed 2024-03-22 2024-05-01 \n", + "8 PH0009 Omar Faruq Completed 2024-02-12 2024-06-08 \n", + "9 PH0010 Priya Sharma Completed 2024-06-19 2024-08-19 \n", + "10 PH0011 Rahim Sheikh Completed 2024-03-14 2024-06-11 \n", + "11 PH0012 Sadia Chowdhury Completed 2024-08-04 2024-10-25 \n", + "12 PH0013 Tanvir Ahmed Completed 2024-06-07 2024-08-03 \n", + "13 PH0014 Urmi Akter Completed 2024-01-04 2024-03-23 \n", + "14 PH0015 Wahiduzzaman Completed 2024-02-22 2024-05-16 \n", + "15 PH0016 Ziaur Rahman Completed 2024-03-23 2024-06-21 \n", + "16 PH0017 Afsana Mimi Completed 2024-01-18 2024-03-16 \n", + "17 PH0018 Babul Ahmed Completed 2024-06-23 2024-09-20 \n", + "18 PH0019 Faria Rahman Completed 2024-04-19 2024-08-17 \n", + "19 PH0020 Tariq Hasan Completed 2024-07-21 2024-10-11 \n", + "\n", + " Instructor Location Total Marks Enrollment Year \n", + "0 Ms. Salma Khulna 300 2024 \n", + "1 Mr. Karim Dhaka 271 2024 \n", + "2 Ms. Salma Dhaka 269 2024 \n", + "3 Mr. Karim Khulna 270 2024 \n", + "4 Mr. David Sylhet 254 2024 \n", + "5 Mr. David Khulna 272 2024 \n", + "6 Mr. David Chattogram 249 2024 \n", + "7 Ms. Salma Khulna 246 2024 \n", + "8 Mr. Karim Dhaka 291 2024 \n", + "9 Mr. David Dhaka 286 2024 \n", + "10 Mr. Karim Sylhet 283 2024 \n", + "11 Mr. Karim Sylhet 266 2024 \n", + "12 Mr. David Dhaka 248 2024 \n", + "13 Mr. David Sylhet 285 2024 \n", + "14 Mr. David Rajshahi 291 2024 \n", + "15 Ms. Salma Rajshahi 234 2024 \n", + "16 Mr. David Khulna 236 2024 \n", + "17 Mr. David Dhaka 278 2024 \n", + "18 Mr. Karim Sylhet 277 2024 \n", + "19 Mr. Karim Khulna 253 2024 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusEnrollmentDateFinishedDateInstructorLocationTotal MarksEnrollment Year
0PH0001Alif RahmanCompleted2024-09-012024-12-23Ms. SalmaKhulna3002024
1PH0002Fatima AkhterCompleted2024-08-112024-11-07Mr. KarimDhaka2712024
2PH0003Imran HossainCompleted2024-05-082024-08-08Ms. SalmaDhaka2692024
3PH0004Jannatul FerdousCompleted2024-07-052024-09-23Mr. KarimKhulna2702024
4PH0005Kamal UddinCompleted2024-02-012024-04-17Mr. DavidSylhet2542024
5PH0006Laila BegumCompleted2024-09-072024-12-31Mr. DavidKhulna2722024
6PH0007Mahmudul HasanCompleted2024-06-072024-07-20Mr. DavidChattogram2492024
7PH0008Nadia IslamCompleted2024-03-222024-05-01Ms. SalmaKhulna2462024
8PH0009Omar FaruqCompleted2024-02-122024-06-08Mr. KarimDhaka2912024
9PH0010Priya SharmaCompleted2024-06-192024-08-19Mr. DavidDhaka2862024
10PH0011Rahim SheikhCompleted2024-03-142024-06-11Mr. KarimSylhet2832024
11PH0012Sadia ChowdhuryCompleted2024-08-042024-10-25Mr. KarimSylhet2662024
12PH0013Tanvir AhmedCompleted2024-06-072024-08-03Mr. DavidDhaka2482024
13PH0014Urmi AkterCompleted2024-01-042024-03-23Mr. DavidSylhet2852024
14PH0015WahiduzzamanCompleted2024-02-222024-05-16Mr. DavidRajshahi2912024
15PH0016Ziaur RahmanCompleted2024-03-232024-06-21Ms. SalmaRajshahi2342024
16PH0017Afsana MimiCompleted2024-01-182024-03-16Mr. DavidKhulna2362024
17PH0018Babul AhmedCompleted2024-06-232024-09-20Mr. DavidDhaka2782024
18PH0019Faria RahmanCompleted2024-04-192024-08-17Mr. KarimSylhet2772024
19PH0020Tariq HasanCompleted2024-07-212024-10-11Mr. KarimKhulna2532024
\n", + "
" + ] + }, + "execution_count": 73, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 73 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T02:39:30.372595Z", + "start_time": "2025-11-12T02:39:30.363076Z" + } + }, + "cell_type": "code", + "source": [ + "df['Enrollment Date'] = df['EnrollmentDate'].dt.day\n", + "df" + ], + "id": "bac343d69ef158ee", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName CompletionStatus EnrollmentDate FinishedDate \\\n", + "0 PH0001 Alif Rahman Completed 2024-09-01 2024-12-23 \n", + "1 PH0002 Fatima Akhter Completed 2024-08-11 2024-11-07 \n", + "2 PH0003 Imran Hossain Completed 2024-05-08 2024-08-08 \n", + "3 PH0004 Jannatul Ferdous Completed 2024-07-05 2024-09-23 \n", + "4 PH0005 Kamal Uddin Completed 2024-02-01 2024-04-17 \n", + "5 PH0006 Laila Begum Completed 2024-09-07 2024-12-31 \n", + "6 PH0007 Mahmudul Hasan Completed 2024-06-07 2024-07-20 \n", + "7 PH0008 Nadia Islam Completed 2024-03-22 2024-05-01 \n", + "8 PH0009 Omar Faruq Completed 2024-02-12 2024-06-08 \n", + "9 PH0010 Priya Sharma Completed 2024-06-19 2024-08-19 \n", + "10 PH0011 Rahim Sheikh Completed 2024-03-14 2024-06-11 \n", + "11 PH0012 Sadia Chowdhury Completed 2024-08-04 2024-10-25 \n", + "12 PH0013 Tanvir Ahmed Completed 2024-06-07 2024-08-03 \n", + "13 PH0014 Urmi Akter Completed 2024-01-04 2024-03-23 \n", + "14 PH0015 Wahiduzzaman Completed 2024-02-22 2024-05-16 \n", + "15 PH0016 Ziaur Rahman Completed 2024-03-23 2024-06-21 \n", + "16 PH0017 Afsana Mimi Completed 2024-01-18 2024-03-16 \n", + "17 PH0018 Babul Ahmed Completed 2024-06-23 2024-09-20 \n", + "18 PH0019 Faria Rahman Completed 2024-04-19 2024-08-17 \n", + "19 PH0020 Tariq Hasan Completed 2024-07-21 2024-10-11 \n", + "\n", + " Instructor Location Total Marks Enrollment Year Enrollment Date \n", + "0 Ms. Salma Khulna 300 2024 1 \n", + "1 Mr. Karim Dhaka 271 2024 11 \n", + "2 Ms. Salma Dhaka 269 2024 8 \n", + "3 Mr. Karim Khulna 270 2024 5 \n", + "4 Mr. David Sylhet 254 2024 1 \n", + "5 Mr. David Khulna 272 2024 7 \n", + "6 Mr. David Chattogram 249 2024 7 \n", + "7 Ms. Salma Khulna 246 2024 22 \n", + "8 Mr. Karim Dhaka 291 2024 12 \n", + "9 Mr. David Dhaka 286 2024 19 \n", + "10 Mr. Karim Sylhet 283 2024 14 \n", + "11 Mr. Karim Sylhet 266 2024 4 \n", + "12 Mr. David Dhaka 248 2024 7 \n", + "13 Mr. David Sylhet 285 2024 4 \n", + "14 Mr. David Rajshahi 291 2024 22 \n", + "15 Ms. Salma Rajshahi 234 2024 23 \n", + "16 Mr. David Khulna 236 2024 18 \n", + "17 Mr. David Dhaka 278 2024 23 \n", + "18 Mr. Karim Sylhet 277 2024 19 \n", + "19 Mr. Karim Khulna 253 2024 21 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusEnrollmentDateFinishedDateInstructorLocationTotal MarksEnrollment YearEnrollment Date
0PH0001Alif RahmanCompleted2024-09-012024-12-23Ms. SalmaKhulna30020241
1PH0002Fatima AkhterCompleted2024-08-112024-11-07Mr. KarimDhaka271202411
2PH0003Imran HossainCompleted2024-05-082024-08-08Ms. SalmaDhaka26920248
3PH0004Jannatul FerdousCompleted2024-07-052024-09-23Mr. KarimKhulna27020245
4PH0005Kamal UddinCompleted2024-02-012024-04-17Mr. DavidSylhet25420241
5PH0006Laila BegumCompleted2024-09-072024-12-31Mr. DavidKhulna27220247
6PH0007Mahmudul HasanCompleted2024-06-072024-07-20Mr. DavidChattogram24920247
7PH0008Nadia IslamCompleted2024-03-222024-05-01Ms. SalmaKhulna246202422
8PH0009Omar FaruqCompleted2024-02-122024-06-08Mr. KarimDhaka291202412
9PH0010Priya SharmaCompleted2024-06-192024-08-19Mr. DavidDhaka286202419
10PH0011Rahim SheikhCompleted2024-03-142024-06-11Mr. KarimSylhet283202414
11PH0012Sadia ChowdhuryCompleted2024-08-042024-10-25Mr. KarimSylhet26620244
12PH0013Tanvir AhmedCompleted2024-06-072024-08-03Mr. DavidDhaka24820247
13PH0014Urmi AkterCompleted2024-01-042024-03-23Mr. DavidSylhet28520244
14PH0015WahiduzzamanCompleted2024-02-222024-05-16Mr. DavidRajshahi291202422
15PH0016Ziaur RahmanCompleted2024-03-232024-06-21Ms. SalmaRajshahi234202423
16PH0017Afsana MimiCompleted2024-01-182024-03-16Mr. DavidKhulna236202418
17PH0018Babul AhmedCompleted2024-06-232024-09-20Mr. DavidDhaka278202423
18PH0019Faria RahmanCompleted2024-04-192024-08-17Mr. KarimSylhet277202419
19PH0020Tariq HasanCompleted2024-07-212024-10-11Mr. KarimKhulna253202421
\n", + "
" + ] + }, + "execution_count": 76, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 76 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T02:46:43.936163Z", + "start_time": "2025-11-12T02:46:43.916284Z" + } + }, + "cell_type": "code", + "source": [ + "df['FinishedDate'] = pd.to_datetime(df['FinishedDate'])\n", + "df['Total time taken to finish']= df['FinishedDate'] - df['EnrollmentDate']\n", + "df" + ], + "id": "c73de1c3e4d6b1a6", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName CompletionStatus EnrollmentDate FinishedDate \\\n", + "0 PH0001 Alif Rahman Completed 2024-09-01 2024-12-23 \n", + "1 PH0002 Fatima Akhter Completed 2024-08-11 2024-11-07 \n", + "2 PH0003 Imran Hossain Completed 2024-05-08 2024-08-08 \n", + "3 PH0004 Jannatul Ferdous Completed 2024-07-05 2024-09-23 \n", + "4 PH0005 Kamal Uddin Completed 2024-02-01 2024-04-17 \n", + "5 PH0006 Laila Begum Completed 2024-09-07 2024-12-31 \n", + "6 PH0007 Mahmudul Hasan Completed 2024-06-07 2024-07-20 \n", + "7 PH0008 Nadia Islam Completed 2024-03-22 2024-05-01 \n", + "8 PH0009 Omar Faruq Completed 2024-02-12 2024-06-08 \n", + "9 PH0010 Priya Sharma Completed 2024-06-19 2024-08-19 \n", + "10 PH0011 Rahim Sheikh Completed 2024-03-14 2024-06-11 \n", + "11 PH0012 Sadia Chowdhury Completed 2024-08-04 2024-10-25 \n", + "12 PH0013 Tanvir Ahmed Completed 2024-06-07 2024-08-03 \n", + "13 PH0014 Urmi Akter Completed 2024-01-04 2024-03-23 \n", + "14 PH0015 Wahiduzzaman Completed 2024-02-22 2024-05-16 \n", + "15 PH0016 Ziaur Rahman Completed 2024-03-23 2024-06-21 \n", + "16 PH0017 Afsana Mimi Completed 2024-01-18 2024-03-16 \n", + "17 PH0018 Babul Ahmed Completed 2024-06-23 2024-09-20 \n", + "18 PH0019 Faria Rahman Completed 2024-04-19 2024-08-17 \n", + "19 PH0020 Tariq Hasan Completed 2024-07-21 2024-10-11 \n", + "\n", + " Instructor Location Total Marks Enrollment Year Enrollment Date \\\n", + "0 Ms. Salma Khulna 300 2024 1 \n", + "1 Mr. Karim Dhaka 271 2024 11 \n", + "2 Ms. Salma Dhaka 269 2024 8 \n", + "3 Mr. Karim Khulna 270 2024 5 \n", + "4 Mr. David Sylhet 254 2024 1 \n", + "5 Mr. David Khulna 272 2024 7 \n", + "6 Mr. David Chattogram 249 2024 7 \n", + "7 Ms. Salma Khulna 246 2024 22 \n", + "8 Mr. Karim Dhaka 291 2024 12 \n", + "9 Mr. David Dhaka 286 2024 19 \n", + "10 Mr. Karim Sylhet 283 2024 14 \n", + "11 Mr. Karim Sylhet 266 2024 4 \n", + "12 Mr. David Dhaka 248 2024 7 \n", + "13 Mr. David Sylhet 285 2024 4 \n", + "14 Mr. David Rajshahi 291 2024 22 \n", + "15 Ms. Salma Rajshahi 234 2024 23 \n", + "16 Mr. David Khulna 236 2024 18 \n", + "17 Mr. David Dhaka 278 2024 23 \n", + "18 Mr. Karim Sylhet 277 2024 19 \n", + "19 Mr. Karim Khulna 253 2024 21 \n", + "\n", + " Total time taken to finish \n", + "0 113 days \n", + "1 88 days \n", + "2 92 days \n", + "3 80 days \n", + "4 76 days \n", + "5 115 days \n", + "6 43 days \n", + "7 40 days \n", + "8 117 days \n", + "9 61 days \n", + "10 89 days \n", + "11 82 days \n", + "12 57 days \n", + "13 79 days \n", + "14 84 days \n", + "15 90 days \n", + "16 58 days \n", + "17 89 days \n", + "18 120 days \n", + "19 82 days " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusEnrollmentDateFinishedDateInstructorLocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
0PH0001Alif RahmanCompleted2024-09-012024-12-23Ms. SalmaKhulna30020241113 days
1PH0002Fatima AkhterCompleted2024-08-112024-11-07Mr. KarimDhaka27120241188 days
2PH0003Imran HossainCompleted2024-05-082024-08-08Ms. SalmaDhaka2692024892 days
3PH0004Jannatul FerdousCompleted2024-07-052024-09-23Mr. KarimKhulna2702024580 days
4PH0005Kamal UddinCompleted2024-02-012024-04-17Mr. DavidSylhet2542024176 days
5PH0006Laila BegumCompleted2024-09-072024-12-31Mr. DavidKhulna27220247115 days
6PH0007Mahmudul HasanCompleted2024-06-072024-07-20Mr. DavidChattogram2492024743 days
7PH0008Nadia IslamCompleted2024-03-222024-05-01Ms. SalmaKhulna24620242240 days
8PH0009Omar FaruqCompleted2024-02-122024-06-08Mr. KarimDhaka291202412117 days
9PH0010Priya SharmaCompleted2024-06-192024-08-19Mr. DavidDhaka28620241961 days
10PH0011Rahim SheikhCompleted2024-03-142024-06-11Mr. KarimSylhet28320241489 days
11PH0012Sadia ChowdhuryCompleted2024-08-042024-10-25Mr. KarimSylhet2662024482 days
12PH0013Tanvir AhmedCompleted2024-06-072024-08-03Mr. DavidDhaka2482024757 days
13PH0014Urmi AkterCompleted2024-01-042024-03-23Mr. DavidSylhet2852024479 days
14PH0015WahiduzzamanCompleted2024-02-222024-05-16Mr. DavidRajshahi29120242284 days
15PH0016Ziaur RahmanCompleted2024-03-232024-06-21Ms. SalmaRajshahi23420242390 days
16PH0017Afsana MimiCompleted2024-01-182024-03-16Mr. DavidKhulna23620241858 days
17PH0018Babul AhmedCompleted2024-06-232024-09-20Mr. DavidDhaka27820242389 days
18PH0019Faria RahmanCompleted2024-04-192024-08-17Mr. KarimSylhet277202419120 days
19PH0020Tariq HasanCompleted2024-07-212024-10-11Mr. KarimKhulna25320242182 days
\n", + "
" + ] + }, + "execution_count": 77, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 77 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_14.9 Group by in DF._**", + "id": "553c254dfead706d" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T04:05:10.137510Z", + "start_time": "2025-11-12T04:05:10.135060Z" + } + }, + "cell_type": "code", + "source": "group =df.groupby('Instructor')", + "id": "92762cec346a155c", + "outputs": [], + "execution_count": 86 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T04:07:01.263625Z", + "start_time": "2025-11-12T04:07:01.259751Z" + } + }, + "cell_type": "code", + "source": "df.drop(columns=['StudentID','CompletionStatus'], inplace=True)", + "id": "22f5ca685708c20d", + "outputs": [], + "execution_count": 91 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T04:05:30.553249Z", + "start_time": "2025-11-12T04:05:30.550490Z" + } + }, + "cell_type": "code", + "source": "group =df.groupby('Instructor')", + "id": "5e299c19decf253c", + "outputs": [], + "execution_count": 88 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T04:07:03.944630Z", + "start_time": "2025-11-12T04:07:03.934303Z" + } + }, + "cell_type": "code", + "source": "group.sum()", + "id": "1778be11f92ef00c", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID \\\n", + "Instructor \n", + "Mr. David PH0005PH0006PH0007PH0010PH0013PH0014PH0015PH00... \n", + "Mr. Karim PH0002PH0004PH0009PH0011PH0012PH0019PH0020 \n", + "Ms. Salma PH0001PH0003PH0008PH0016 \n", + "\n", + " FullName \\\n", + "Instructor \n", + "Mr. David Kamal UddinLaila BegumMahmudul HasanPriya Shar... \n", + "Mr. Karim Fatima AkhterJannatul FerdousOmar FaruqRahim S... \n", + "Ms. Salma Alif RahmanImran HossainNadia IslamZiaur Rahman \n", + "\n", + " CompletionStatus \\\n", + "Instructor \n", + "Mr. David CompletedCompletedCompletedCompletedCompletedC... \n", + "Mr. Karim CompletedCompletedCompletedCompletedCompletedC... \n", + "Ms. Salma CompletedCompletedCompletedCompleted \n", + "\n", + " Location Total Marks \\\n", + "Instructor \n", + "Mr. David SylhetKhulnaChattogramDhakaDhakaSylhetRajshahi... 2399 \n", + "Mr. Karim DhakaKhulnaDhakaSylhetSylhetSylhetKhulna 1911 \n", + "Ms. Salma KhulnaDhakaKhulnaRajshahi 1049 \n", + "\n", + " Enrollment Year Enrollment Date Total time taken to finish \n", + "Instructor \n", + "Mr. David 18216 108 662 days \n", + "Mr. Karim 14168 86 658 days \n", + "Ms. Salma 8096 54 335 days " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusLocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
Instructor
Mr. DavidPH0005PH0006PH0007PH0010PH0013PH0014PH0015PH00...Kamal UddinLaila BegumMahmudul HasanPriya Shar...CompletedCompletedCompletedCompletedCompletedC...SylhetKhulnaChattogramDhakaDhakaSylhetRajshahi...239918216108662 days
Mr. KarimPH0002PH0004PH0009PH0011PH0012PH0019PH0020Fatima AkhterJannatul FerdousOmar FaruqRahim S...CompletedCompletedCompletedCompletedCompletedC...DhakaKhulnaDhakaSylhetSylhetSylhetKhulna19111416886658 days
Ms. SalmaPH0001PH0003PH0008PH0016Alif RahmanImran HossainNadia IslamZiaur RahmanCompletedCompletedCompletedCompletedKhulnaDhakaKhulnaRajshahi1049809654335 days
\n", + "
" + ] + }, + "execution_count": 92, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 92 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T04:10:00.149307Z", + "start_time": "2025-11-12T04:10:00.121737Z" + } + }, + "cell_type": "code", + "source": "group.min()", + "id": "e35cc6cbf46f2a6b", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName CompletionStatus Location Total Marks \\\n", + "Instructor \n", + "Mr. David PH0005 Afsana Mimi Completed Chattogram 236 \n", + "Mr. Karim PH0002 Faria Rahman Completed Dhaka 253 \n", + "Ms. Salma PH0001 Alif Rahman Completed Dhaka 234 \n", + "\n", + " Enrollment Year Enrollment Date Total time taken to finish \n", + "Instructor \n", + "Mr. David 2024 1 43 days \n", + "Mr. Karim 2024 4 80 days \n", + "Ms. Salma 2024 1 40 days " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusLocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
Instructor
Mr. DavidPH0005Afsana MimiCompletedChattogram2362024143 days
Mr. KarimPH0002Faria RahmanCompletedDhaka2532024480 days
Ms. SalmaPH0001Alif RahmanCompletedDhaka2342024140 days
\n", + "
" + ] + }, + "execution_count": 93, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 93 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T04:10:40.717136Z", + "start_time": "2025-11-12T04:10:40.702979Z" + } + }, + "cell_type": "code", + "source": "group.max()", + "id": "4e4e2325d6359fe0", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName CompletionStatus Location Total Marks \\\n", + "Instructor \n", + "Mr. David PH0018 Wahiduzzaman Completed Sylhet 291 \n", + "Mr. Karim PH0020 Tariq Hasan Completed Sylhet 291 \n", + "Ms. Salma PH0016 Ziaur Rahman Completed Rajshahi 300 \n", + "\n", + " Enrollment Year Enrollment Date Total time taken to finish \n", + "Instructor \n", + "Mr. David 2024 23 115 days \n", + "Mr. Karim 2024 21 120 days \n", + "Ms. Salma 2024 23 113 days " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusLocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
Instructor
Mr. DavidPH0018WahiduzzamanCompletedSylhet291202423115 days
Mr. KarimPH0020Tariq HasanCompletedSylhet291202421120 days
Ms. SalmaPH0016Ziaur RahmanCompletedRajshahi300202423113 days
\n", + "
" + ] + }, + "execution_count": 94, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 94 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T04:11:18.563325Z", + "start_time": "2025-11-12T04:11:18.538683Z" + } + }, + "cell_type": "code", + "source": "group.first()", + "id": "c2dfe1977140e116", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName CompletionStatus Location Total Marks \\\n", + "Instructor \n", + "Mr. David PH0005 Kamal Uddin Completed Sylhet 254 \n", + "Mr. Karim PH0002 Fatima Akhter Completed Dhaka 271 \n", + "Ms. Salma PH0001 Alif Rahman Completed Khulna 300 \n", + "\n", + " Enrollment Year Enrollment Date Total time taken to finish \n", + "Instructor \n", + "Mr. David 2024 1 76 days \n", + "Mr. Karim 2024 11 88 days \n", + "Ms. Salma 2024 1 113 days " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusLocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
Instructor
Mr. DavidPH0005Kamal UddinCompletedSylhet2542024176 days
Mr. KarimPH0002Fatima AkhterCompletedDhaka27120241188 days
Ms. SalmaPH0001Alif RahmanCompletedKhulna30020241113 days
\n", + "
" + ] + }, + "execution_count": 95, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 95 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T04:11:51.298425Z", + "start_time": "2025-11-12T04:11:51.286138Z" + } + }, + "cell_type": "code", + "source": "group.last()", + "id": "3b77b54712abfbc2", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName CompletionStatus Location Total Marks \\\n", + "Instructor \n", + "Mr. David PH0018 Babul Ahmed Completed Dhaka 278 \n", + "Mr. Karim PH0020 Tariq Hasan Completed Khulna 253 \n", + "Ms. Salma PH0016 Ziaur Rahman Completed Rajshahi 234 \n", + "\n", + " Enrollment Year Enrollment Date Total time taken to finish \n", + "Instructor \n", + "Mr. David 2024 23 89 days \n", + "Mr. Karim 2024 21 82 days \n", + "Ms. Salma 2024 23 90 days " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameCompletionStatusLocationTotal MarksEnrollment YearEnrollment DateTotal time taken to finish
Instructor
Mr. DavidPH0018Babul AhmedCompletedDhaka27820242389 days
Mr. KarimPH0020Tariq HasanCompletedKhulna25320242182 days
Ms. SalmaPH0016Ziaur RahmanCompletedRajshahi23420242390 days
\n", + "
" + ] + }, + "execution_count": 96, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 96 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T04:25:38.273635Z", + "start_time": "2025-11-12T04:25:38.270395Z" + } + }, + "cell_type": "code", + "source": [ + "#14.10 Problem Solving-1\n", + "\n", + "import pandas as pd\n", + "def delete_duplicate_emails(person: pd.DataFrame) -> None:\n", + " person.sort_values('id', inplace=True)\n", + " person.drop_duplicates(subset=['email'], inplace=True)" + ], + "id": "5e1cb710baf05017", + "outputs": [], + "execution_count": 98 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T05:12:38.795869Z", + "start_time": "2025-11-12T05:12:38.790355Z" + } + }, + "cell_type": "code", + "source": [ + "#14.11 Problem Solving-2\n", + "\n", + "df['Total Marks'] > 250\n", + "\n", + "\n", + "import pandas as pd\n", + "def count_salary_categories(accounts: pd.DataFrame) -> pd.DataFrame:\n", + " low_salary = (accounts['Income']<2000).sum()\n", + " average_salary = (accounts['Income']>20000 & accounts['Income']>50000).sum()\n", + " high_salary = (accounts['income']>50000).sum()\n", + " data = [('Low Salary',low_salary)]\n", + "\n", + " df = pd.DataFrame([low_salary,average_salary,high_salary])\n" + ], + "id": "835f975ab2d2c4ef", + "outputs": [ + { + "data": { + "text/plain": [ + "0 True\n", + "1 True\n", + "2 True\n", + "3 True\n", + "4 True\n", + "5 True\n", + "6 False\n", + "7 False\n", + "8 True\n", + "9 True\n", + "10 True\n", + "11 True\n", + "12 False\n", + "13 True\n", + "14 True\n", + "15 False\n", + "16 False\n", + "17 True\n", + "18 True\n", + "19 True\n", + "Name: Total Marks, dtype: bool" + ] + }, + "execution_count": 99, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 99 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "", + "id": "f31b14fbeec362a0" + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "### **quize**", + "id": "b436c96efbc0108" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T05:36:42.592313Z", + "start_time": "2025-11-12T05:36:42.586209Z" + } + }, + "cell_type": "code", + "source": "", + "id": "36db1887387dc2a4", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Name City\n", + "0 Alice New York\n", + "2 Charlie Newark\n" + ] + } + ], + "execution_count": 103 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T05:36:13.610078Z", + "start_time": "2025-11-12T05:36:13.604557Z" + } + }, + "cell_type": "code", + "source": "", + "id": "6bc33b27870e37c4", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Name Data Structure Marks Grade\n", + "0 A 95 A+\n", + "1 B 85 A\n", + "2 C 91 A+\n" + ] + } + ], + "execution_count": 102 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T05:39:33.932768Z", + "start_time": "2025-11-12T05:39:33.927581Z" + } + }, + "cell_type": "code", + "source": "", + "id": "f36ec2178938ef05", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Name Data Structure Marks Passed in DS\n", + "0 A 85 True\n", + "1 B 65 False\n", + "2 C 72 True\n", + "\n", + "Data type: bool\n" + ] + } + ], + "execution_count": 104 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T05:42:53.232983Z", + "start_time": "2025-11-12T05:42:53.226900Z" + } + }, + "cell_type": "code", + "source": "", + "id": "27ba420d168c20f0", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "unique():\n", + " ['Dhaka' 'Chattogram' 'Sylhet']\n", + "\n", + "Type: \n", + "\n", + "Count from unique(): 3\n", + "\n", + "nunique(): 3\n", + "Type: \n" + ] + } + ], + "execution_count": 105 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T05:45:25.139991Z", + "start_time": "2025-11-12T05:45:25.127673Z" + } + }, + "cell_type": "code", + "source": "", + "id": "f6dad6ee42c20dee", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "আগে:\n", + " Name Age City\n", + "0 A 25.0 NY\n", + "1 B 30.0 NaN\n", + "2 None NaN LA\n", + "3 D 40.0 None\n", + "\n", + "পরে (df.dropna()):\n", + " Name Age City\n", + "0 A 25.0 NY\n" + ] + } + ], + "execution_count": 106 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T05:48:32.055696Z", + "start_time": "2025-11-12T05:48:32.047463Z" + } + }, + "cell_type": "code", + "source": "", + "id": "16dfbbc135307009", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " A B Sum\n", + "0 1 10 11\n", + "1 2 20 22\n", + "2 3 30 33\n" + ] + } + ], + "execution_count": 108 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T05:51:04.833967Z", + "start_time": "2025-11-12T05:51:04.824475Z" + } + }, + "cell_type": "code", + "source": "", + "id": "b2ff32b7793d8b8", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Name EnrollmentDate Year\n", + "0 Alice 2024-01-15 2024\n", + "1 Bob 2023-06-20 2023\n" + ] + } + ], + "execution_count": 109 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T05:53:26.297540Z", + "start_time": "2025-11-12T05:53:26.288663Z" + } + }, + "cell_type": "code", + "source": "", + "id": "b5e6143228fb8d85", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "আগে:\n", + " Name Python Marks\n", + "0 A 85.0\n", + "1 B NaN\n", + "2 C 92.0\n", + "3 D NaN\n", + "\n", + "পরে:\n", + " Name Python Marks\n", + "0 A 85.0\n", + "1 B 88.5\n", + "2 C 92.0\n", + "3 D 88.5\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\evan\\AppData\\Local\\Temp\\ipykernel_10292\\2644274979.py:13: FutureWarning: A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.\n", + "The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.\n", + "\n", + "For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.\n", + "\n", + "\n", + " df['Python Marks'].fillna(df['Python Marks'].mean(), inplace=True)\n" + ] + } + ], + "execution_count": 110 } ], "metadata": { diff --git a/Python_For_ML/Week_4/Mod_14/new_data,csv b/Python_For_ML/Week_4/Mod_14/new_data,csv new file mode 100644 index 0000000..1804a89 --- /dev/null +++ b/Python_For_ML/Week_4/Mod_14/new_data,csv @@ -0,0 +1,22 @@ +,StudentID,FullName,Data Structure Marks,Algorithm Marks,Python Marks,CompletionStatus,EnrollmentDate,Instructor,Location,Total Marks,A+ in DS,First Name +0,PH1001,Alif Rahman,85.0,85.0,88.0,Completed,2024-01-15,Mr. Karim,Dhaka,258.0,True,Alif +1,PH1002,Fatima Akhter,92.0,92.0,,In Progress,2024-01-20,Ms. Salma,Chattogram,,True,Fatima +2,PH1003,Imran Hossain,88.0,88.0,85.0,Completed,2024-02-10,Mr. Karim,Dhaka,261.0,True,Imran +3,PH1004,Jannatul Ferdous,78.0,78.0,82.0,Completed,2024-02-12,Ms. Salma,Sylhet,238.0,True,Jannatul +4,PH1005,Kamal Uddin,,,95.0,In Progress,2024-03-05,Mr. Karim,Chattogram,,False,Kamal +5,PH1006,Laila Begum,75.0,75.0,78.0,Completed,2024-03-08,Ms. Salma,Rajshahi,228.0,True,Laila +6,PH1007,Mahmudul Hasan,80.0,80.0,,In Progress,2024-04-01,Mr. Karim,Dhaka,,True,Mahmudul +7,PH1008,Nadia Islam,81.0,81.0,85.0,Completed,2024-04-22,Ms. Salma,Chattogram,247.0,True,Nadia +8,PH1009,Omar Faruq,72.0,72.0,76.0,Completed,2024-05-16,Mr. David,Dhaka,220.0,True,Omar +9,PH1010,Priya Sharma,89.0,89.0,88.0,Completed,2024-05-20,Ms. Salma,Sylhet,266.0,True,Priya +10,PH1011,Rahim Sheikh,,,91.0,In Progress,2024-06-11,Mr. Karim,Khulna,,False,Rahim +11,PH1012,Sadia Chowdhury,85.0,85.0,87.0,Completed,2024-06-14,Ms. Salma,Chattogram,257.0,True,Sadia +12,PH1013,Tanvir Ahmed,75.0,75.0,79.0,Completed,2024-07-02,Mr. David,Dhaka,229.0,True,Tanvir +13,PH1014,Urmi Akter,,,,Not Started,2024-07-09,Ms. Salma,Rajshahi,,False,Urmi +14,PH1015,Wahiduzzaman,86.0,86.0,84.0,Completed,2024-08-18,Mr. Karim,Dhaka,256.0,True,Wahiduzzaman +15,PH1016,Ziaur Rahman,94.0,94.0,,In Progress,2024-08-21,Ms. Salma,Chattogram,,True,Ziaur +16,PH1017,Afsana Mimi,90.0,90.0,93.0,Completed,2025-09-01,Mr. Karim,Dhaka,273.0,True,Afsana +17,PH1018,Babul Ahmed,88.0,88.0,85.0,Completed,2025-09-05,Ms. Salma,Sylhet,261.0,True,Babul +18,PH1019,Faria Rahman,,,,Not Started,2025-09-15,Mr. David,Chattogram,,False,Faria +19,PH1020,Nasir Khan,86.0,86.0,89.0,Completed,2025-10-02,Ms. Salma,Dhaka,261.0,True,Nasir +20,,,,,,,,,,,False, diff --git a/Python_For_ML/Week_4/Mod_14/quize.ipynb b/Python_For_ML/Week_4/Mod_14/quize.ipynb new file mode 100644 index 0000000..9cb11e3 --- /dev/null +++ b/Python_For_ML/Week_4/Mod_14/quize.ipynb @@ -0,0 +1,342 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-12T05:28:43.621691Z", + "start_time": "2025-11-12T05:28:43.613527Z" + } + }, + "source": [ + "import pandas as pd\n", + "\n", + "data = {\n", + " \"Name\": [\"A\", \"B\", \"C\"],\n", + " \"Age\" : [25,30,35],\n", + " \"City\" : [\"NY\", \"L\",\"P\"]\n", + "}\n", + "df = pd.DataFrame(data)\n", + "print(df)\n", + "df.shape" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Name Age City\n", + "0 A 25 NY\n", + "1 B 30 L\n", + "2 C 35 P\n" + ] + }, + { + "data": { + "text/plain": [ + "(3, 3)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 4 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T05:31:32.622881Z", + "start_time": "2025-11-12T05:31:32.613454Z" + } + }, + "cell_type": "code", + "source": "df.loc[df['City'].str.contains(\"New\")]\n", + "id": "1f6d948c8cfedbe4", + "outputs": [ + { + "data": { + "text/plain": [ + "Empty DataFrame\n", + "Columns: [Name, Age, City]\n", + "Index: []" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
\n", + "
" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 5 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "#2\n", + "import pandas as pd\n", + "\n", + "df = pd.DataFrame({\n", + " \"Name\": [\"Alice\", \"Bob\", \"Charlie\", \"David\"],\n", + " \"City\": [\"New York\", \"Los Angeles\", \"Newark\", \"Paris\"]\n", + "})\n", + "\n", + "print(df.loc[df['City'].str.contains(\"New\")])" + ], + "id": "80f03836bbd14da9" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "#3\n", + "import pandas as pd\n", + "import numpy as np\n", + "\n", + "df = pd.DataFrame({\n", + " \"Name\": [\"A\", \"B\", \"C\"],\n", + " \"Data Structure Marks\": [95, 85, 91]\n", + "})\n", + "\n", + "df['Grade'] = np.where(df['Data Structure Marks'] > 90, 'A+', 'A')\n", + "print(df)" + ], + "id": "d0d5011cf599d68d" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "# 4\n", + "import pandas as pd\n", + "\n", + "df = pd.DataFrame({\n", + " \"Name\": [\"A\", \"B\", \"C\"],\n", + " \"Data Structure Marks\": [85, 65, 72]\n", + "})\n", + "\n", + "df['Passed in DS'] = df['Data Structure Marks'] > 70\n", + "print(df)\n", + "print(\"\\nData type:\", df['Passed in DS'].dtype)" + ], + "id": "e1e9e498b997c6c2" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "#5\n", + "import pandas as pd\n", + "\n", + "df = pd.DataFrame({\n", + " \"City\": [\"Dhaka\", \"Chattogram\", \"Dhaka\", \"Sylhet\", \"Chattogram\"]\n", + "})\n", + "\n", + "print(\"unique():\\n\", df['City'].unique())\n", + "print(\"\\nType:\", type(df['City'].unique()))\n", + "print(\"\\nCount from unique():\", len(df['City'].unique()))\n", + "\n", + "print(\"\\nnunique():\", df['City'].nunique())\n", + "print(\"Type:\", type(df['City'].nunique()))" + ], + "id": "51bff0fceaca5f49" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "#6\n", + "import pandas as pd\n", + "import numpy as np\n", + "\n", + "df = pd.DataFrame({\n", + " \"Name\": [\"A\", \"B\", None, \"D\"],\n", + " \"Age\": [25, 30, np.nan, 40],\n", + " \"City\": [\"NY\", np.nan, \"LA\", None]\n", + "})\n", + "\n", + "print(\"আগে:\")\n", + "print(df)\n", + "\n", + "print(\"\\nপরে (df.dropna()):\")\n", + "print(df.dropna())" + ], + "id": "e1af867e3527bbd6" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "#7\n", + "import pandas as pd\n", + "\n", + "df = pd.DataFrame({\n", + " \"A\": [1, 2, 3],\n", + " \"B\": [10, 20, 30]\n", + "})\n", + "\n", + "# প্রতি রো-তে যোগফল বের করি\n", + "df['Sum'] = df.apply(lambda row: row['A'] + row['B'], axis=1)\n", + "\n", + "print(df)\n", + "\n", + "# প্রতি রো-তে \"A > B?\" চেক করি\n", + "df['A_gt_B'] = df.apply(lambda row: row['A'] > row['B'], axis=1)\n", + "# আউটপুট: [False, False, False]" + ], + "id": "f2b5c59e5052e6ee" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "#8\n", + "import pandas as pd\n", + "\n", + "df = pd.DataFrame({\n", + " \"Name\": [\"Alice\", \"Bob\"],\n", + " \"EnrollmentDate\": [\"2024-01-15\", \"2023-06-20\"]\n", + "})\n", + "\n", + "# প্রথমে datetime-এ কনভার্ট করতে হবে\n", + "df['EnrollmentDate'] = pd.to_datetime(df['EnrollmentDate'])\n", + "\n", + "# এখন .dt.year ব্যবহার করি\n", + "df['Year'] = df['EnrollmentDate'].dt.year\n", + "\n", + "print(df)" + ], + "id": "d9d393c4a2ca7022" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-12T05:55:03.038708Z", + "start_time": "2025-11-12T05:55:03.029577Z" + } + }, + "cell_type": "code", + "source": [ + "#9\n", + "import pandas as pd\n", + "import numpy as np\n", + "\n", + "df = pd.DataFrame({\n", + " \"Name\": [\"A\", \"B\", \"C\", \"D\"],\n", + " \"Python Marks\": [85, np.nan, 92, np.nan]\n", + "})\n", + "\n", + "print(\"আগে:\")\n", + "print(df)\n", + "\n", + "df['Python Marks'].fillna(df['Python Marks'].mean(), inplace=True)\n", + "\n", + "print(\"\\nপরে:\")\n", + "print(df)" + ], + "id": "58b2521a0a5445", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "আগে:\n", + " Name Python Marks\n", + "0 A 85.0\n", + "1 B NaN\n", + "2 C 92.0\n", + "3 D NaN\n", + "\n", + "পরে:\n", + " Name Python Marks\n", + "0 A 85.0\n", + "1 B 88.5\n", + "2 C 92.0\n", + "3 D 88.5\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\evan\\AppData\\Local\\Temp\\ipykernel_15380\\2644274979.py:13: FutureWarning: A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.\n", + "The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.\n", + "\n", + "For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.\n", + "\n", + "\n", + " df['Python Marks'].fillna(df['Python Marks'].mean(), inplace=True)\n" + ] + } + ], + "execution_count": 6 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_4/Mod_14/student_data.csv b/Python_For_ML/Week_4/Mod_14/student_data.csv new file mode 100644 index 0000000..2779c8f --- /dev/null +++ b/Python_For_ML/Week_4/Mod_14/student_data.csv @@ -0,0 +1,22 @@ +StudentID,FullName,Data Structure Marks,Algorithm Marks,Python Marks,CompletionStatus,EnrollmentDate,Instructor,Location +PH1001,Alif Rahman,85,85,88,Completed,2024-01-15,Mr. Karim,Dhaka +PH1002,Fatima Akhter,92,92,,In Progress,2024-01-20,Ms. Salma,Chattogram +PH1003,Imran Hossain,88,88,85,Completed,2024-02-10,Mr. Karim,Dhaka +PH1004,Jannatul Ferdous,78,78,82,Completed,2024-02-12,Ms. Salma,Sylhet +PH1005,Kamal Uddin,,,95,In Progress,2024-03-05,Mr. Karim,Chattogram +PH1006,Laila Begum,75,75,78,Completed,2024-03-08,Ms. Salma,Rajshahi +PH1007,Mahmudul Hasan,80,80,,In Progress,2024-04-01,Mr. Karim,Dhaka +PH1008,Nadia Islam,81,81,85,Completed,2024-04-22,Ms. Salma,Chattogram +PH1009,Omar Faruq,72,72,76,Completed,2024-05-16,Mr. David,Dhaka +PH1010,Priya Sharma,89,89,88,Completed,2024-05-20,Ms. Salma,Sylhet +PH1011,Rahim Sheikh,,,91,In Progress,2024-06-11,Mr. Karim,Khulna +PH1012,Sadia Chowdhury,85,85,87,Completed,2024-06-14,Ms. Salma,Chattogram +PH1013,Tanvir Ahmed,75,75,79,Completed,2024-07-02,Mr. David,Dhaka +PH1014,Urmi Akter,,,,Not Started,2024-07-09,Ms. Salma,Rajshahi +PH1015,Wahiduzzaman,86,86,84,Completed,2024-08-18,Mr. Karim,Dhaka +PH1016,Ziaur Rahman,94,94,,In Progress,2024-08-21,Ms. Salma,Chattogram +PH1017,Afsana Mimi,90,90,93,Completed,2025-09-01,Mr. Karim,Dhaka +PH1018,Babul Ahmed,88,88,85,Completed,2025-09-05,Ms. Salma,Sylhet +PH1019,Faria Rahman,,,,Not Started,2025-09-15,Mr. David,Chattogram +PH1020,Nasir Khan,86,86,89,Completed,2025-10-02,Ms. Salma,Dhaka +,,,,,,,, \ No newline at end of file From b24f40316f4a8d25425eb4f63d23a8437a21d66b Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:44:24 +0600 Subject: [PATCH 73/78] Mod_15 --- .../Mod_15/15.2 2D Line Plot Basics.ipynb | 2114 +++++++++++++++++ .../Week_4/Mod_15/enrollment_data.csv | 11 + .../Week_4/Mod_15/student_IQdata.csv | 39 + Python_For_ML/Week_4/Mod_15/student_data.csv | 23 + 4 files changed, 2187 insertions(+) create mode 100644 Python_For_ML/Week_4/Mod_15/15.2 2D Line Plot Basics.ipynb create mode 100644 Python_For_ML/Week_4/Mod_15/enrollment_data.csv create mode 100644 Python_For_ML/Week_4/Mod_15/student_IQdata.csv create mode 100644 Python_For_ML/Week_4/Mod_15/student_data.csv diff --git a/Python_For_ML/Week_4/Mod_15/15.2 2D Line Plot Basics.ipynb b/Python_For_ML/Week_4/Mod_15/15.2 2D Line Plot Basics.ipynb new file mode 100644 index 0000000..9f79f6c --- /dev/null +++ b/Python_For_ML/Week_4/Mod_15/15.2 2D Line Plot Basics.ipynb @@ -0,0 +1,2114 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-13T03:01:12.275920Z", + "start_time": "2025-11-13T03:01:07.513273Z" + } + }, + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "from pygments.styles.dracula import background\n", + "\n", + "from Week_1.Mod_3.quize_3 import colors\n", + "\n" + ], + "outputs": [], + "execution_count": 5 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T03:01:14.903704Z", + "start_time": "2025-11-13T03:01:14.692306Z" + } + }, + "cell_type": "code", + "source": [ + "hours = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]\n", + "days = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]\n", + "\n", + "\n", + "plt.xlabel('Days')\n", + "plt.ylabel('hours')\n", + "plt.title('Line Plot')\n", + "plt.plot(days,hours)" + ], + "id": "460714ad7e1eeee0", + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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AAAuiyADAABcFkEGAAC4LIIMAABwWQQZFzN27Fi1aNHCnFRcrVo1de3aVVu2bJGnevHFF82JzUOGDJEn2b9/v+68805VrlxZQUFBiouL06pVq+QJioqKNGrUKEVHR5vvvV69enruuef+8nosrmzJkiXq1KmTOeHUer3PnTv3rMet7/2pp55SjRo1zJi0a9dO27Ztkyd8/wUFBXrsscfMv4Hg4GDzPnfffbc50d2TXgO/99BDD5n3mTBhgjwBQcbF/PDDD+rfv7+WLVumb7/91vwjbt++vbKzs+VpVq5cqbfeekvNmjWTJzlx4oSuu+46+fn5af78+dq4caNeffVVVapUSZ5g3LhxeuONNzRlyhRt2rTJtF966SVNnjxZ7sr69x0fH6+pU6ee83Hr+580aZLefPNNLV++3PxCv+WWW5Sbmyt3//5zcnKUnJxswq31dvbs2eaPu86dO8uTXgOnzZkzx/x+sAKPx7C2X8N1paWlWX+G2n/44Qe7J8nMzLTHxMTYv/32W/uNN95oHzx4sN1TPPbYY/ZWrVrZPVXHjh3t999//1n3devWzd6vXz+7J7D+vc+ZM+dM22az2atXr25/+eWXz9x38uRJe0BAgH369Ol2d//+z2XFihXm/Xbv3m13R+cbg3379tlr1qxpX79+vb127dr21157ze4JmJFxcenp6eZtWFiYPIk1K9WxY0czhe5pPv/8c1155ZXq0aOHKS8mJCTonXfekado2bKlvvvuO23dutW016xZox9//FG33nqrPNHOnTt16NChs/4tWNenufrqq/XLL7/IU38uWqWVihUrylPYbDbdddddGj58uJo0aSJP4vYXjXT3F661NsQqMzRt2lSeYsaMGWYK2SoteaIdO3aY0sqwYcM0cuRIMw6DBg2Sv7+/7rnnHrm7xx9/3FzxODY2Vj4+PmbNzAsvvKB+/frJE1khxhIeHn7W/Vb79GOexCqnWWtm+vTp45YXUTyfcePGydfX1/ws8DQEGReflVi/fr35a9RTWJeqHzx4sFkfFBgYKE8NsNaMzJgxY0zbmpGxXgfW+ghPCDIff/yxpk2bpqSkJPOXZ2pqqgn01poAT/j+cX7WmsGePXuaxc9W2PcUq1ev1sSJE80feNZMlKehtOSiBgwYoHnz5mnRokWqVauWPOkfbFpamhITE81fH9bNWgBtLXS0/t/6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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 6 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T03:04:30.360259Z", + "start_time": "2025-11-13T03:04:30.228884Z" + } + }, + "cell_type": "code", + "source": [ + "hours_1 = [2 , 3 , 4, 1 , 5 , 7 , 3]\n", + "hours_2 = [ 1 , 4 , 3 , 5 ,7 ,2 ,1]\n", + "days = [1 ,2 , 3 ,4 ,5 ,6 ,7]\n", + "\n", + "plt.xlabel('Days')\n", + "plt.ylabel('Study Hours')\n", + "plt.title('Trend of a student study time over a week')\n", + "\n", + "plt.plot(days,hours_1)\n", + "plt.plot(days,hours_2)" + ], + "id": "d8fc01954ecce863", + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 7 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_15.3 2D Line from Pandas DF_**\n", + "id": "ec13745e2f9af391" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T03:08:33.718627Z", + "start_time": "2025-11-13T03:08:33.659144Z" + } + }, + "cell_type": "code", + "source": [ + "\n", + "df = pd.read_csv('enrollment_data.csv')\n", + "df\n" + ], + "id": "ed89417beb92fade", + "outputs": [ + { + "data": { + "text/plain": [ + " Year Programming Digital Marketing\n", + "0 2015 589 734\n", + "1 2016 862 963\n", + "2 2017 1085 1157\n", + "3 2018 1150 1404\n", + "4 2019 1439 1497\n", + "5 2020 1715 1579\n", + "6 2021 1785 1948\n", + "7 2022 1995 2073\n", + "8 2023 2236 2310\n", + "9 2024 2442 2338" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
YearProgrammingDigital Marketing
02015589734
12016862963
2201710851157
3201811501404
4201914391497
5202017151579
6202117851948
7202219952073
8202322362310
9202424422338
\n", + "
" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 8 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T03:12:38.290363Z", + "start_time": "2025-11-13T03:12:38.152195Z" + } + }, + "cell_type": "code", + "source": [ + "plt.xlabel('Years')\n", + "plt.ylabel('Count of Enrollment')\n", + "plt.title('Student Enrollment over 8 years')\n", + "plt.plot(df['Year'], df['Programming'])" + ], + "id": "2217f8feb6c410f", + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 9 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T03:31:34.900366Z", + "start_time": "2025-11-13T03:31:34.728556Z" + } + }, + "cell_type": "code", + "source": [ + "# adding labels using plt.legend()\n", + "plt.xlabel('Years')\n", + "plt.ylabel('Count of Enrollment')\n", + "plt.title('Student Enrollment over 8 years')\n", + "\n", + "plt.plot(df['Year'] ,df['Programming'],label = 'Programming')\n", + "plt.plot(df['Year'] ,df['Digital Marketing'], label= 'Digital Marketing')\n", + "\n", + "plt.legend(loc='best')" + ], + "id": "456f1be53bf7ffcc", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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hBNbh9L//dBfW1O696V1O2GXJqXP+yF/rB0/flwVtMvz6P7IlpHL8rkiLd0yOCTFjFKJRBYvLi5OM2jQIE2uXLk0//3330u36wriVq1aFX+dFEYnt4B369at6jHXrl2Lv+706dPquitXrhj1NVm69HpPhg8frqlatarBdffv31f7+ffff432eiydsd6P8+fPa7y9vTWff/55os8jRdWlS5c2uK5Dhw4sqjbR+yGWLFmicXZ21qxZs+aV97F2cenwfsjAj3PnzhlcBgwYoClWrJj6PiQkJFWvgYGIFPmhcnd31+zZs0fz4MGD+EtYWFj8Gerfv78mX758ml27dmmOHz+uqVGjhrrou3r1qubUqVOafv36aYoWLaq+l0tkZGT8D3TFihU1tWrV0pw8eVLtp1q1apoPPviA74SJ3pOdO3eqEWUyakZ+kZ04cUJ9+ObPn9/guaydMd4P+aWdPXt2TefOnQ32ISNydG7cuKFxcXFRHwgyCue3337T2NnZabZs2ZLur9mcpdf7sXjxYjUKU94H/fvIBzyl//uRkDFHmTEQkfYHAUj0Mn/+/PgzFB4eroZAZs2aVf3Cbtmypfph1Ve7du1E93Pz5s34+9y7d0/TqlUrTebMmTU+Pj6a7t27a54+fcp3woTvydKlSzUVKlTQuLq6ql9IzZs3Vx/GZNz3Q355J7YPCZ/6du/erSlfvrzG0dFRU6hQIYPnoPR9P171/6dbt258K0z0/yOtApHN8xdCREREZLU4DxERERFZPQYiIiIisnoMRERERGT1GIiIiIjI6jEQERERkdVjICIiIiKrx0BEREREVo+BiIiIiKweAxERWSyZV1YW2mzQoMFLt82YMUMtInn37l2THBsRWRYGIiKyWDY2Npg/fz6OHDmCWbNmxV9/8+ZNfPHFF/j1118NVtw2hujoaKPuj4jMAwMREVm0vHnzYurUqfjss89UEJJWo169eqF+/fqoUKECGjVqhMyZM8PHxwddunTBkydP4h+7ZcsWvPPOO6olKVu2bGjatCmuX78ef/utW7dU6Fq+fDlq164NZ2dnLF68GLdv30azZs2QNWtWuLq6olSpUti0aZOJzgARGQPXMiOiDKFFixYIDAxEq1atMH78eFy4cEEFld69e6Nr164IDw/HiBEjEBMTg127dqnH/P333yrwlC1bFiEhIRg1apQKQadPn4atra36vmDBgihQoAB+/PFHFbAkFPXp0wdRUVHqOglEFy9ehJubG2rVqmXq00BEKcRAREQZgp+fnwpA/v7+KuicP38e+/fvx9atW+PvI/VE0qJ05coVFC1a9KV9SOtR9uzZce7cOZQuXTo+EP3yyy/4+OOP4+8nAap169YYPXp0ur0+Ikpb7DIjogzB29sb/fr1Q4kSJVRr0ZkzZ7B7927VXaa7FC9eXN1X1y129epVdOjQAYUKFVItPNISJO7cuWOw78qVKxtsDx06FN9++y1q1qypQtHZs2fT7XUSUdpgICKiDMPe3l5dhHSBSZ2PdH/pXyQE6bq25HZpUZozZ44qzJaLkO4wfdItpk+64W7cuKFqkqQ1SQKTFHATkeXS/uYgIspgKlasqLrOpNVHF5L0PX36VHWdSRh699131XUHDhxI8v6l661///7qMnLkSLWfIUOGGPU1EFH6YQsREWVIgwYNUq0/0iV27Ngx1U0m9UQ9evRAbGysGiEmI8tmz56Na9euqULr4cOHJ2nfn3zyidqXjGo7efKk6pqTrjoislwMRESUIeXKlQv//vuvCj8yBL9MmTIqyMgQexlBJpdly5bhxIkTqoB62LBhmDJlSpL2LfuUwCUhqGHDhqpAWyaCJCLLxVFmREREZPXYQkRERERWj4GIiIiIrB4DEREREVk9BiIiIiKyegxEREREZPUYiIiIiMjqMRARERGR1WMgIiIiIqvHQERERERWj4GIiIiIrB4DEREREVk9BiIiIiKCtfs/PeVOq5HkGxkAAAAASUVORK5CYII=" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 12 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_15.4 Customizing Line plot ( color,linestyle,marker) and Grid_**\n", + "id": "89c4e33fb13c6be" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T08:27:05.920252Z", + "start_time": "2025-11-13T08:27:05.793597Z" + } + }, + "cell_type": "code", + "source": [ + "# adding some visualization\n", + "\n", + "plt.xlabel('Years')\n", + "plt.ylabel('Count of Enrollment')\n", + "plt.title('Student Enrollment over 8 years')\n", + "\n", + "plt.plot(df['Year'] ,df['Programming'],label = 'Programming', color ='#11b86f',linewidth=3,linestyle='dashed',marker='o',markersize=7)\n", + "plt.plot(df['Year'] ,df['Digital Marketing'], label= 'Digital Marketing', color='black',linewidth=3,linestyle='dashed' )\n", + "\n", + "plt.legend()\n", + "plt.grid(True)\n", + "plt.show()\n", + "\n" + ], + "id": "293cfe9155ae4b05", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 15 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **15.5 Usage of Scatter Plots**", + "id": "4604dfd228d71660" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "", + "id": "5ec276793dbff595" + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_15.6 Scatter Plots_**", + "id": "2df4590cce7f2322" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T12:04:43.811657Z", + "start_time": "2025-11-13T12:04:43.796733Z" + } + }, + "cell_type": "code", + "source": [ + "students = pd.read_csv('student_IQdata.csv')\n", + "students" + ], + "id": "36613d24edc16de4", + "outputs": [ + { + "data": { + "text/plain": [ + " Shoe_Size Study_Hour Chilling_Hours IQ_Score\n", + "0 13.5 2.0 17.7 72\n", + "1 8.0 18.0 5.0 75\n", + "2 6.4 7.2 22.7 78\n", + "3 6.9 8.7 6.6 110\n", + "4 10.5 8.6 5.8 104\n", + "5 6.8 4.8 18.1 76\n", + "6 5.5 7.9 24.3 80\n", + "7 9.6 12.6 15.7 109\n", + "8 9.1 5.6 24.3 73\n", + "9 6.7 14.6 13.1 110\n", + "10 9.7 14.2 20.9 98\n", + "11 10.4 13.7 14.0 109\n", + "12 7.7 11.9 23.2 95\n", + "13 12.5 8.3 13.3 95\n", + "14 7.6 9.4 16.8 95\n", + "15 11.4 4.6 7.9 96\n", + "16 5.6 12.2 12.9 107\n", + "17 8.4 12.3 24.3 87\n", + "18 12.1 6.4 17.3 77\n", + "19 6.4 2.7 23.2 70\n", + "20 13.7 5.4 20.6 78\n", + "21 13.6 5.3 10.0 87\n", + "22 18.0 10.0 15.0 98\n", + "23 6.3 2.2 22.8 70\n", + "24 11.6 2.4 5.1 90\n", + "25 5.4 4.9 7.7 89\n", + "26 9.5 2.0 35.0 145\n", + "27 10.4 10.6 25.4 86\n", + "28 13.7 14.8 27.7 88\n", + "29 8.3 1.6 19.0 70\n", + "30 6.5 3.0 20.9 70\n", + "31 5.2 10.3 26.6 86\n", + "32 7.6 3.7 24.0 70\n", + "33 8.9 13.5 27.2 77\n", + "34 10.5 13.9 8.0 116\n", + "35 12.8 1.5 6.9 93\n", + "36 6.6 3.6 12.8 84\n", + "37 10.3 6.0 5.6 102" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Shoe_SizeStudy_HourChilling_HoursIQ_Score
013.52.017.772
18.018.05.075
26.47.222.778
36.98.76.6110
410.58.65.8104
56.84.818.176
65.57.924.380
79.612.615.7109
89.15.624.373
96.714.613.1110
109.714.220.998
1110.413.714.0109
127.711.923.295
1312.58.313.395
147.69.416.895
1511.44.67.996
165.612.212.9107
178.412.324.387
1812.16.417.377
196.42.723.270
2013.75.420.678
2113.65.310.087
2218.010.015.098
236.32.222.870
2411.62.45.190
255.44.97.789
269.52.035.0145
2710.410.625.486
2813.714.827.788
298.31.619.070
306.53.020.970
315.210.326.686
327.63.724.070
338.913.527.277
3410.513.98.0116
3512.81.56.993
366.63.612.884
3710.36.05.6102
\n", + "
" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 19 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T12:35:24.221826Z", + "start_time": "2025-11-13T12:35:24.081018Z" + } + }, + "cell_type": "code", + "source": [ + "#Relation between Study Hours and IQ Score - postive correlation\n", + "\n", + "plt.xlabel('Study Hours')\n", + "plt.ylabel('IQ Score')\n", + "plt.title('Relation between Study Hours and IQ Score')\n", + "\n", + "plt.scatter(students['Study_Hour'] , students['IQ_Score'])" + ], + "id": "26c9d1feebd9a4cf", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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rWNEvyMFyzrmFKAV9ph46qmn3G9B34WOKX2GghRdzPUdFNZrr73m/irQiEVVUfruta9VhaoALN5xKTrnaHsVKMazY8cO9xtTaZJuDlq3bu2+dwUhOm+p9FuBlY4rBXv6PWn/6b0VlClQuummm6LeU79JlcTpWFewo/1RnPMq4ggBuUyaNEnFBaE5c+aEvv/++9C6detCf//730NHHnlkqEKFCu65p0OHDqGWLVuGdu/eHZ528ODB0Omnnx467rjjwtPefvtt957669m1a1eefT9mzJhQRkZGaO3ateFp119/vXttLJo+atSo8POePXuGypcvH1q9enV42oYNG0JVq1YNnXXWWXm2sWPHjm59PX/4wx9Chx12WGjLli35Hhd9+/Z1r7/hhhuitrt79+7u87XfZMGCBW655557Lur1s2bNyjO9RYsWobPPPjvPZ2n769SpE34+dOhQty21a9cOjR8/3k378ccf3X57+OGHw+ui/d+lS5eo7dM+b9y4cahTp07haf379w/VrVs39MMPP0R9bu/evUOZmZnh78n7Dps1axbas2dPeDl9pqZ/9tln+e6zt956y+1bPbKzs0O33npr6M033wzt3bs3z7KVK1d2+zg3TTv66KPzTNcxEHmMLF++3D2/7rrropb7zW9+k+eYGT58uDuuI7/zzZs3h8qWLRu1XCzePsnvoW2JfF8dH507dw4dOHAgPP3RRx91yz799NPhadrOWPtAx0jkceKtwzHHHJPnN9WqVSt3TBaWfs+R6ydr1qxx++nOO+/M89mHOib0Het4Pemkk6KWmzhxolsu1nGfm/ZH5Lbot67X/vzzz3FfM3XqVLfMuHHj8n3vq666yi13xBFHhC6++OLQ/fffH1qxYkWe5UaOHOmW0/vm5v3OHnroIbfMlClTwvO0/Trmq1SpEtq2bVt4f2q5atWqueMiUkHPqyg4qrEQl+48dZevuy4Vp+ruQncwKrYVlSzobln5O96drR4//vijq9pZuXJlvq23VJTtUbWFXqu7PsUwKvUoLJW0vPXWW+7uR0mFnrp167o7PJWI6M42ku6mIqs/dNem91m7dm2BPlN3bh6vZGTv3r02Z84cN013dKpC0l20t3/0UGmLSnFUjXIoWifdWasEQFQqc9ZZZ7npXjWAtk37zSvZWb58udv/2m59H97naj/rDlclRape02t0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LvR7qMj1s88+c01vg0b5J6tXr467bSrFUPF0JJ3cI0s3gmDSpEku56B79+6Fel2Qjw3R70UXoMhjYNu2ba5VVrxjoHz58tamTZuo16i6T8+DcNx4gY7yKxQg16xZM+G/u1SmKl3l7MTbtqAfH7lLi7WtarmVssdIsjOkUTCDBg1yrWfeeeed0MaNG8OPXbt2hZe58sorQ7fffnv4+ejRo0NvvvlmaPXq1aGlS5eGevfuHapYsWLoiy++SPndPmzYMLcv1qxZE3rvvfdCHTt2DNWqVcu1Uou1L7RM2bJlQ/fff39oxYoVrsVAuXLlQp999lkoKNQSpGHDhqHbbrstz7x0ODa2b98e+vjjj91Dp7YHHnjA/d9rXfTnP/85VL169dCMGTNCn376qWtZ0rhx49Avv/wSfg+1NHnkkUfCz1988UXXYmvy5MmhL7/8MjRw4ED3Hjk5OaFU3h979+4NXXjhhaH69euHli9fHnVO2bNnT9z9cajfXaruD827+eabQ4sWLXLbNmfOnFDr1q1Dxx13XGj37t2BPD4K8puRrVu3hg4//PDQ+PHjQ7GkyjFCsJMidCDGeqgJsefss892zSc9Q4YMcRe/8uXLh+rUqRPq1q1baNmyZaEg+PWvfx2qW7eu27ajjjrKPV+1alXcfSEvv/xy6Pjjj3evadGiRej1118PBYmCFx0TX3/9dZ556XBsvP322zF/I952q/n5iBEj3PbqAtWhQ4c8++roo492gXAknci9faWmxh988EEo1feHLkTxzil6Xbz9cajfXaruD900du7cOXTkkUe6myBt94ABA/IELUE6Pgrym5EnnngiVKlSJddVQyypcoxk6J/kli0BAACUHHJ2AABAoBHsAACAQCPYAQAAgUawAwAAAo1gBwAABBrBDgAACDSCHQAAEGgEOwBSxjnnnGNDhgxJ9moASDEEOwCK7Pvvv7dBgwZZw4YNrUKFCm78qS5duth7770XXiYjI8OmT5/ui738zTffuPVZvnx5nnkEUkBwlU32CgBIXb169bK9e/faM88840aJ1ojPGghRAygiL+0rDSAJoHRRsgOgSLZs2WILFiywsWPH2rnnnmtHH320nXrqqTZ8+HC78MIL3TKNGjVyfy+++GJXouI9v/rqq61nz55R76fqKZWueHbu3GlXXXWVValSxY2Y/Je//CVq+TvvvNNOPPHEPOt10kkn2YgRI4r9rf7888/u84844gg7/PDD7fzzz3cjhHvuuOMO91mRHnroofA2Rm7nPffcY/Xq1bMTTjjBTX/88cftuOOOs4oVK1qdOnXs0ksvLfb6AoiPYAdAkSgI0UNVVHv27Im5zJIlS9zfSZMm2caNG8PPC+KWW26xd99912bMmGFvvfWWvfPOO7Zs2bLw/H79+tmKFSui3vPjjz+2Tz/91K655ppif6sKVD766CN79dVXbdGiRRo02bp162b79u0r1PuopOvrr7+22bNn28yZM9173njjjS5Y0/RZs2bZWWedVez1BRAf1VgAiqRs2bI2efJkGzBggE2YMMFat25tZ599tvXu3dt+9atfuWWOPPJI97d69eoun6egduzYYU899ZRNmTLFOnTo4Kapqqx+/frhZfR/5QcpkDrllFPcNP1f66AqtfycfvrpVqZM9L3eL7/8Ei6pUQmOghzlHmlZee6556xBgwYuuLvssssKvC2VK1e2v/71r+Hqq6lTp7ppF1xwgVWtWtWViJ188skFfj8AhUfJDoBi5exs2LDBBQZdu3Z1pS8KehQEFcfq1atdfku7du3C02rUqBGuBvIo0HrhhRds9+7dbvnnn3/elfgcyksvveSSlCMfbdu2Dc9XiZGCucjPr1mzpvt8zSuMli1bRuXpdOrUyQU4CsiuvPJKF0Tt2rWrUO8JoHAIdgAUi/JOdAFXnsz777/vqn9GjRqV/4mnTBlXLRSpsNVD0qNHD9cKbNq0afbaa6+59yhI/otKaI499tioR6VKlQr12QXdBpXiRFJpjqrjFKQpF2nkyJHWqlUrlwMFoGQQ7ABIqObNm7vkYk+5cuXswIEDUcuoeks5PJEim4M3adLEvW7x4sVRCcP/+te/ol6j0pe+ffu66is9VIVW2KAllmbNmtn+/fujPl8tzJRjo+3ztiEnJycq4InVpD0WrXfHjh3t3nvvdTlGahI/b968Yq83gNjI2QFQJLr4K3dF1UbK0VGJhZJvdQG/6KKLwsupdZKSdM844wxXCqPWTeedd57dd9999uyzz1p2drbLzfn888/DuStKfO7fv79LUlb1Ue3ate2Pf/xjnjwbufbaa11wIpH9+xSHWkppG1RN9sQTT7htu/322+2oo44Kb5tajqmfIW2vSpOUaPzGG29YtWrV8n1vJSn/+9//dknJ2hf//Oc/7eDBg3mq6AAkDiU7AIpEAYlyWh588EF34VYzcFVlKUB49NFHw8upybhaIqnqyAtmlFisZW+99VaXXLx9+3bXzDuSgqEzzzzTVVWpFKR9+/bWpk2bmIGJkoibNm0alWNTXCop0ucpkVgBmUpwFJioxEkUYKkJ+WOPPeaqoT788EO7+eabD/m+StZWkrICPr2HkrtVpdWiRYuErTuAaBmh3JXOAJBCdApTwHPdddfZ0KFDk706AHyIaiwAKUvVSC+++KLLnUlE3zoAgolgB0DKUi5PrVq1bOLEiS7/BQBiIdgBkLKohQdQECQoAwCAQCPYAQAAgUawAwAAAo1gBwAABBrBDgAACDSCHQAAEGgEOwAAINAIdgAAQKAR7AAAAAuy/w9pWlRTSz0MwQAAAABJRU5ErkJggg==" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 24 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T12:35:44.772963Z", + "start_time": "2025-11-13T12:35:44.638491Z" + } + }, + "cell_type": "code", + "source": [ + "#Relation between Shoe size and IQ Score - > no correlation\n", + "\n", + "plt.xlabel('Shoe Size')\n", + "plt.ylabel('IQ Score')\n", + "plt.title('Relation between Shoe Size and IQ Score')\n", + "\n", + "plt.scatter(students['Shoe_Size'] , students['IQ_Score'])" + ], + "id": "569e8b9a5b1581da", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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a9cuLEjIjRkzZri/ynGKREGCqghfeuklF9DUr18/232hqi+dd7KrwtZ5Q8e4glzl86h6S/v/zTffdMeDSmV07KvqS8/1+9JxpXW46qqr3HKZz1+PPPKIe52O/YMHD7r/5/R3hgLgASfgxRdfVHGBN2fOHG/Hjh3exo0bvTfffNM7+eSTvZIlS7rnvssvv9xr0qSJl56enjHt6NGj3oUXXuidfvrpGdM++OAD95766ztw4MAxnz18+HAvKSnJW79+fca02267zb02Ek0fOnRoxvPOnTt7JUqU8NauXZsxbcuWLV65cuW8iy+++Jjv2KZNG7e+vrvuussrWrSot3v37my3Uc+ePd3rb7/99rDvfeWVV7rP13aTjz/+2C03efLksNfPmjXrmOmNGzf2LrnkkmM+S9+/WrVqGc8HDhzovkvVqlW98ePHu2k//fST226jRo3KWBdt//bt24d9P23zunXrem3bts2Y1qdPH6969erejz/+GPa53bp18ypUqJCxn/x92LBhQ+/gwYMZy+kzNf2rr77Kdpu9//77btvqkZKS4t17773ee++95/3yyy/HLKv303Zcs2ZNxrQVK1a46WPGjMn1/n7kkUe8MmXKeN9//33Y59x3331ufTZs2JDtut90003usytVquRdc8013ogRI7yVK1ces1yk4zzUzz//7DVv3tyrUaOGt3XrVjfthx9+cOvw2GOPhS2r7VmsWLFjpmcW6Xe0aNEitx4vv/xyro/57du3u22qYzl0ufvvv9+9Xsf+8Wg5Hbe+c845xx1L2Rk5cqR73fTp07NcRuuj34iW02+ie/fu3rhx48LOF6H7rEiRIt6SJUsivo8MGDDAvZd+p769e/e630idOnW8I0eOhO3XevXqhW3v3PzOkP+oxkK+aNOmjbvLV7G/qqlUaqPqKd09ikoWdFeju9G9e/e66hU91OJCVTurV6/OtvWWitx9+/fvd6/VXZbOlbqbzS2VtLz//vuuVElJo77q1avbH/7wB1dS4Bc7+3THF1otplICvY/uvnMitMWJXzKiu985c+ZklAborlUtjvzto4fuAlWK88EHHxz3M7ROugNVgqfoblF3/Jqu/4u+m7abX7KzfPlyt/31vbU//M/VdlY1j0qKVH2j16gErlOnTu7/oeuofaiSG93Vh1IJVWgCrv+Zqg7IjraBSnZ017xixQpX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TigZOT+XA4BEQbADxAm1usrP5QAgURDsAHFCzcvV6iqrBuaarvlaDgDwPwQ7QJxQPzpqXi6ZAx7/uebT3w4AhCPYAeKI+tEZf0MzS64QXlWl55pOPzsAcCw6FQTijAKato2S6UEZAHKIYAeIQ6qqSqlfJdqrAQBxgWosAAAQaAQ7AAAg0Ah2AABAoBHsAACAQCPYAQAAgUawAwAAAo1gBwAABBrBDgAACDSCHQAAEGgEOwAAINAIdgAAQKBFNdiZP3++derUyWrUqGFJSUk2bdq0LJf985//7JZ55plnwqbv3LnTevToYeXLl7eKFStanz59bN++fYWw9gAAIB5ENdjZv3+/NW3a1MaNG5ftclOnTrVPP/3UBUWZKdD55ptvbPbs2TZz5kwXQPXr168A1xoAAMSTqI56fsUVV7hHdjZv3my33367vffee3bllVeGzVu5cqXNmjXLlixZYi1atHDTxowZYx07drQRI0ZEDI4AAEBiiemcnaNHj9qNN95o99xzjzVu3PiY+YsWLXJVV36gI23atLEiRYrY4sWLs3zfgwcP2p49e8IeAAAgmGI62HniiSesWLFidscdd0Scn5qaalWrVg2bpuUrV67s5mVl+PDhVqFChYxHzZo1833dAQBAbIjZYGfp0qU2atQomzRpkktMzk9DhgyxtLS0jMfGjRvz9f0BAEDsiNlg5+OPP7bt27dbrVq1XGmNHuvXr7dBgwZZnTp13DLJyclumVCHDx92LbQ0LyslS5Z0rbdCHwAAIJiimqCcHeXqKP8mVPv27d30Xr16uecpKSm2e/duVwrUvHlzN23evHku16dly5ZRWW8AABBbohrsqD+cNWvWZDxft26dLV++3OXcqESnSpUqYcsXL17cldiceeaZ7nnDhg2tQ4cO1rdvX5swYYIdOnTI+vfvb926daMlFgAAiH411ueff27nnnuue8jAgQPd/x988MEcv8fkyZOtQYMGdvnll7sm561atbKJEycW4FoDAIB4kuR5nmcJTk3P1SpLycrk7wAAEKzrd8wmKAMAAOQHgh0AABBoBDsAACDQCHYAAECgEewAAIBAI9gBAACBRrADAAACjWAHAAAEGsEOAAAINIIdAAAQaAQ7AAAg0Ah2AABAoBHsAACAQCPYAQAAgUawAwAAAo1gBwAABBrBDgAACDSCHQAAEGgEOwAAINAI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GjTwJk6cyJb3PG/Pnj3enXfe6dWqVcsrVaqUV69ePdfM8eDBgwm1fT744APXFDTzo2fPnhnNzx944AGvWrVq7hi6/PLLvVWrVnmJvm3WrVsXcZ4eel0iHzOZJUrT85xsl+eff9477bTT3DmnadOm3rRp07xE8MFxts3WrVu9m2++2atRo4bbNmeeeab31FNPufNPQUvSPwUfUgEAAEQHOTsAACDQCHYAAECgEewAAIBAI9gBAACBRrADAAACjWAHAAAEGsEOAAAINIIdAFGnwSSnTZtmseaHH35w66ZeYAHEL4IdAAVqx44ddsstt7ju4kuWLOmGFGjfvr198sknUd/y6s7+D3/4gxsao1SpUnbqqae6Eau/++47N79mzZq2detWO+uss6K9qgBOAGNjAShQXbp0sV9++cVeeuklq1evnhtNXYOO/vTTT1Hd8hqUsG3btm4spylTprhxsDZt2mTvvvuu7d69O2OQQkZ+BwKgwAekAJCwdu3a5cbG+fDDD7NdTss899xzXufOnb3SpUu7cYXefvvtsGX0Huedd55XokQJLzk52Rs8eLB36NChjPlHjhzxHn/8ca9OnTpu3J2zzz7be+ONN7L8zGXLlrnP/eGHH7Jcxh8bS8uKxvjJbpys9PR0b9CgQW7sn9/85jfe+eefH/gxtIB4QDUWgAJTtmxZ91A+zsGDB7NddtiwYda1a1f78ssvrWPHjtajRw/buXOnm7d582Y37bzzzrMVK1bY+PHj7fnnn3cjtfuGDx/uRlCeMGGCffPNN3bXXXfZDTfc4EZWjuTkk0+2IkWK2JtvvulGM8+JUaNGuWot/3HnnXda1apVrUGDBm5+//79bdGiRfb666+773H99ddbhw4dbPXq1bnYagDyXbSjLQDB9uabb3qVKlVypS0XXnihN2TIEG/FihVhy+hU9Ne//jXj+b59+9y0d9991z2///773QjJoaMjjxs3zitbtqwr0VGJikpSFi5cGPa+ffr08bp3757luo0dO9a9rly5cl7r1q29hx9+2Fu7dm2WJTuh3nrrLfedFixY4J6vX7/eK1q0qLd58+aw5TSCvL4zgOihZAdAgefsbNmyxaZPn+5KOT788ENr1qyZTZo0KWy5s88+O+P/ZcqUsfLly9v27dvd85UrV1pKSoprGeW76KKLbN++fS7PZs2aNXbgwAGXg+OXJumhkp61a9dmuW633Xabpaam2uTJk937v/HGG9a4cWObPXt2tt9p2bJlduONN9rYsWPdeshXX33lSojOOOOMsHVQyVJ26wCg4JGgDKDAqaWTAhE9HnjgAfvjH/9oQ4cOtZtvvjljmeLFi4e9RoHN0aNHc/T+CnrknXfesVNOOSVsnlqAZadcuXLWqVMn91C1mFqK6a/WNRIFR1dddZX7Dn369AlbByU0L1261P0NpaAHQPQQ7AAodI0aNcpVvzoNGza0t956S9XuGaU7arquQEXNxStVquSCmg0bNtgll1yS5/XSeyv/ZuHChRHnp6enu6bpWmbkyJFh884991xXsqPSqN/+9rd5XgcA+Y9gB0CBUfNyJen27t3bVVMpOPn888/tySefdEFDTt166632zDPP2O233+6SgFetWuVKhgYOHOiSjPW+d999t0tKVmlQq1atLC0tzQVEqg7r2bPnMe+pjgL1HqqOUvBVokQJV+X0wgsv2ODBgyOux5/+9CfbuHGjazqv/oN8lStXdtVXSqq+6aab7KmnnnLBj5bRsvruV155ZR63IoATFsV8IQABp8Th++67z2vWrJlXoUIFlwysRGMlIx84cCBjOZ2Kpk6dGvZaLf/iiy/muOm5kpefeeYZ9/7Fixf3Tj75ZK99+/beRx99FHHdduzY4d1xxx3eWWed5RKdlaTcpEkTb8SIES7pOVKCcu3atbNtev7LL794Dz74oGv+rnWoXr26d80113hffvllPm9ZALmRpH9OPGQCAACITbTGAgAAgUawAwAAAo1gBwAABBrBDgAACDSCHQAAEGgEOwAAINAIdgAAQKAR7AAAgEAj2AEAAIFGsAMAAAKNYAcAAAQawQ4AALAg+//ohnaOKWNgfgAAAABJRU5ErkJggg==" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 25 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T12:38:31.021475Z", + "start_time": "2025-11-13T12:38:30.865560Z" + } + }, + "cell_type": "code", + "source": [ + "#Relation between Chilling hour and IQ Score - > negative correlation\n", + "plt.xlabel('Chilling Time')\n", + "plt.ylabel('IQ Score')\n", + "plt.title('Relation between Chilling hours and IQ Score')\n", + "\n", + "plt.scatter(students['Chilling_Hours'] , students['IQ_Score'],marker='o',color='red')" + ], + "id": "bb92c6f445415ca9", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAHHCAYAAABZbpmkAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjcsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvTLEjVAAAAAlwSFlzAAAPYQAAD2EBqD+naQAAR3ZJREFUeJzt3QmYFNXZ9vFnWEWQXfbVFUTECIooGhBkMwiCGpBPERHigoLgRhJEjYaIJi+gCMEY0Cgmkc2IryibAooEUVwIIhhkX1Rk36G/6z7zVtvd0zPTM9Mz3V39/11XO3ZV0bV0ddVT5zznnIxAIBAwAAAAnyqW6A0AAAAoTAQ7AADA1wh2AACArxHsAAAAXyPYAQAAvkawAwAAfI1gBwAA+BrBDgAA8DWCHQAA4GsEO4ir9957zzIyMtzfeNJnPvroo1bUbr31VitXrlyRrzed6LsdNGhQrstNmTLFLfvtt98Gp7Vp08a9PJqnZbSsR+eNpiWCtu38889PyLpTWbTvESgIgp005t08vFeJEiWsdu3a7ga/ZcuWIt+e//3f/01IQFPUnn/++bS4iH/zzTf2q1/9ys444ww75ZRTrHz58nb55Zfb2LFj7dChQ4nePPjo4WratGlZ5q1atcr+3//7f+6aVrp0aatVq5Z7/5///Cfmz//uu+9s8ODB1qhRIytTpoxVq1bNLrnkEnvooYds//79cd4bFKYShfrpSAmPP/64NWzY0A4fPmwfffSRuxEvWbLEvvzyS3eTKspgZ/z48VEDHt0cFYz5JdipWrWqCyr96q233rIbbrjB3WRuueUWV7px9OhRd1498MAD7kY0adKkPH3mzTffbL169XKfmRe//e1v7eGHH87jHiCVzZgxw3r37m2VK1e2/v37u+ubSotefPFFFxj94x//sG7duuX4Gbt27bIWLVrY3r177bbbbnMBzw8//GCff/65TZgwwe68805KfVOIP+4eKJDOnTu7H7Xcfvvt7kb81FNP2b/+9S+78cYbk+LoFmXQhYJZv369C0rq169vCxYssJo1awbn3X333bZu3ToXDOVV8eLF3SuvFCT7JVAuqAMHDljZsmXN7yWKCoxVorho0SI7/fTTg/NUSnPFFVe4Eh4FLQqCsqPAaOPGjfbBBx/YZZddFjZPAVCpUqWsqKTD91bYqMZCFroYeBeNUF999ZVdf/317mlJwYcCJAVEuVm8eLF7yq9Xr557Kq9bt67dd999YVUZKuVQqY6EVq3llLPz6aefukBN1SPKq2nXrp0rmYpWVacL1tChQ92FTxeN6667zhVRx+q///2vdezY0f1bFYerNCwQCIQtc/LkSRszZow1adLEHZ/q1au7apwff/wxuEyDBg1cqcb7778f3EfldezevdvdyMeNGxdc9vvvv7dixYpZlSpVwtalJ8oaNWqErXvZsmXWqVMnq1Chgp166qn285//3O1zJFVP6ilV26bvQtv617/+NWrVwD//+U978sknrU6dOm5/dHwVqORm9OjRrohfN4vQQMdz1llnuZtOpFmzZrkSIG+75syZk2vOTiyi5ex4eUK5rdM7HjrXdQzOPPNM+/Of/5znPCBVnbRt29Z9N6pW0TGKtHPnTlcKoe9G62rWrJm99NJLMeXERctx8fLN9Dvu0qWLnXbaadanTx83b+3atdazZ093Hmld+o4VoO7Zs6fAv+XQdet86969u/t//fbuv/9+O3HiRNiyOve1vM7dihUrWt++fd20/Hr66aft4MGDruQwNNARPcjp+9P5qeVyouOm3+Sll16aZZ6uOZEPYPoN6jhXqlTJXScuuOACV2UbSsG/rq+ar31V6dLq1avDlvHOLZ0zN910k/u81q1bB+e/8sor1rx5c1etpmuxvrdNmzbl6RilIx53kIV3M9GPzKMbtPItdKFWlYB+rLoZ6kI2ffp0Fzxk5/XXX3cXH92kdeP+97//bc8++6xt3rzZzRMFBVu3brW5c+fa3/72t1y/FW2PLhq66Dz44INWsmRJdxFT4KBAomXLlmHL33PPPW5/Ro4c6fZPQYludirOzo0uzgokdNHTTUo3RH3O8ePHXdDj0T7oZtOvXz+79957XQnHc88954IyBR7aRq1X26KL/29+8xv373Rz04VPN109ierfiqp8dNFTcboufLoZezccLyD1LqAK+nQB1HYpQJo8ebJdddVVblnlGMiOHTvcPng3et0I3n77bXeD1ZPqkCFDwvb7D3/4g/ss3aB0E9S+62api3pO3nzzTfdUHfk0nBPtq6oe7rrrLndTVtCnm7GerHXOFIZY1qnvTt+9grbHHnvMnQv6ziNvojlRsKvP6NGjhyspVTWKcj6aNm3qvjdRsKBzV8GkvhuVOOi3oSBAN/5owWEsdI4qSNfN8plnnnHBlqoTNe3IkSPuXFTAo6Bk9uzZbl0KOgryW/boWGk9+i1q3fPmzbM//vGPLmDUvxcF8brh67u44447rHHjxjZz5kwX8OSXzj89VIT+RkJdeeWVbr6WU5VydlQyqX3Q9Si37dF16xe/+IU7T/Rd6ZgqiNEx9b477b++b/02FNDoO9ex03X1k08+cdsUSkHl2Wefbb///e+DDzt6+BgxYoQ7j1QKrwc2fYb2SeeqriPIRgBpa/LkyfoFBebNmxf47rvvAps2bQpMmzYtcPrppwdKly7t3nvatWsXaNq0aeDw4cPBaSdPngxcdtllgbPPPjs4beHChe4z9ddz8ODBLOseNWpUICMjI7Bhw4bgtLvvvtv922g0feTIkcH33bt3D5QqVSrwzTffBKdt3bo1cNpppwWuvPLKLPvYvn17t72e++67L1C8ePHA7t27czxGffv2df/+nnvuCdvva665xq1fx00WL17slnv11VfD/v2cOXOyTG/SpEng5z//eZZ1af+rV68efD906FC3L9WqVQtMmDDBTfvhhx/ccRs7dmxwW3T8O3bsGLZ/OuYNGzYMXH311cFp/fv3D9SsWTPw/fffh623V69egQoVKgS/J+87bNy4ceDIkSPB5bROTf/iiy+yPV579uxxy3Tr1i0QKy2vY7lu3brgtM8++8xNf/bZZ7N8l+vXrw9O03EMPZaap2W0rEfnTeR5Fes6u3btGjj11FMDW7ZsCU5bu3ZtoESJEtmeq6G0bVru5ZdfDk7TMa1Ro0agZ8+ewWljxoxxy73yyivBaUePHg20atUqUK5cucDevXuz/X1lt9/eufvwww+HLfvpp5+66a+//nogr2L9LXvrfvzxx8OW/dnPfhZo3rx58P2sWbPccqNHjw5OO378eOCKK67Isj/ReMfD2xf9nmM5/6699lq3nHdco9m+fbu7Fmq5Ro0aBe64447A1KlTs1wztL36rdWvXz/w448/hs0L/U1eeOGF7res33DoOVesWLHALbfckuV87d27d9hnffvtt+6a9eSTT4ZN1+9R52PkdISjGgvWvn1796SqImlVU6nURtVTKtoWlSyo9EBPE/v27XPVK3opWU9PbioSz6n1lopbQ+ue9W/11K97jp5G8kpPW++++64rVdJTkkdPVSr21VOiSipCDRw4MKzaQU99+pwNGzbEtM7QptFeyYiekPW0Jnqq1RPx1VdfHTw+eqm0RaU4CxcuzHUd2iaVvqxZs8a9V6mMntg0Xf8v2jcdN++pdeXKle74a7/1fXjr1XFWtZNKilS9pn+jEriuXbu6/w/dRn2HKrnR02UolVCF5iV461SVXna8466Skryeg3ri96gKQKV2Oa2roHJbp84Pfb86z1R1GVoN55XIxELfv3JEPDqmKm0L3Tcl56s0QEm1HpUEqpRPVS4qrcwvrxTF45XcvPPOO66UJi/y+ltWaU0onUOR+618qtBtVNWRSpzyQ9enWM4/b763fDQqcf3ss8/cPqh0buLEie53phZZv/vd74KlLdpvleKqZDSyZMW75mzbts39VlVSp6qn0HNO1wwdh9yOnUoh9VvWdTj096vzRiVAsVxj0hnVWHC5Muecc4674Sl/QzfI0BYvKlrXD1vFp3pFo3wDVXFFo2qBRx55xAVQofkrkluOQDQqutVF+txzz80yT8XguiCoDtur9hHlGITyqugitycaVeWEBlWi4xVa5aeAQ/uiC2F2xyc3XjChwEaBpi6iTzzxhAtEVQ3gzdMNWfkc3nolp2J2bdexY8dcFYXyGLJrBRW5jfk5Ztq23G4i0USuy1tfLN9PfuW2Th0PVTUouIkUbVp29F1G5vdoPUqQ9Sjo1g1L51rk+ezNzw8FEt5Di0dVZMpf+9Of/mSvvvqqO++uvfZaF5DlVIWV19+ycloiq/siv1Ptlx5SIvuyivbbjkUsQYw3X9+Jcnhyom1TyytVd+m3pgBRjTd0DDRPVUlebmNO/Sl531921yx9bmQScmTytNav67DOk2gUHCN7BDtwT5leayw9xap+X08wKmHQRUjBgyh3Q6UA0WR38dfTsZ5cVDqkPAU139QPWiVBesrxPruwZdeKJzLJOL+0Hwp0dPOIJpYcD5Ue6AKnYFP199q2Vq1auX+ren9dMBXs6Enauyl6x0/JlhdeeGHUz9V3qFIf0Q0tu8BIT5kFPWYKdrQf6rYgmb6fRK4znuvJLik6MunXo4eWyABKlDuj398bb7zhSklVgjRq1CiX4B8ZHOX3t5yflnMFpWBN519oIBmN5ms/Y21RpeOuBxy9rrnmGhdw6LeuYKewhJaiiY6vtkN5dtGOLZ2f5oxgB2H0I9JFTy1HlFyrZGSvVENPDir6z4svvvjCvv76a9eqRP2thCb0RYq1dYtu/kq09Kp7IluM6eKuKrl40UVGRe9eaY5on8RLKlR1iKo8lGwYeZHKy37qKVvBjoIeBS96UlUpji7iSoxWVZMSZT1eNYyCjJy+Gx0zfZZuWHn9DvNKiZoqPVq6dKkL1lKVgleVTkRrgRZLq7S8UDKsbsA610KDE53P3vzQ0rXI1kr5KflRgrRe6ofoww8/dOeuqmpUmljQ33KstF/z5893VXWhN+tov+1YqapWjRVU5RvaismjBwaVyKp0Kz90PdT3oKqp0N+gAvzsflve95fdNUslTLk1Ldd6FCDr2hB6LUJsyNlBFmoVotIetRxSR4O66GuaLiDeDzxUTk24vSeQ0KdY/X9kk0zxfuy5NTvVZ3bo0ME9lYY2Q1a+y9SpU90FzqtOiRcFfqHbr/cK/pQXI6pHVyChuvxoLWJC90n7md0+KtjRPqmVmFetpZufSnNU7aDqqNBWJsoJ0kVQ1VzRenT1vhsdM7U0Ut5OtFKXvDTDz41ax2kf9dSr7ySSiv2jff/JRsdMNy81T1dLwdBAR0/X8aQmy9u3bw9rHajzRi1tFASoKwHvpqntUkAcKqdWRdHyqvTZoRT06DxTC614/Jbzst/aFlUVefQ70n7nl0qg9TCk1pFeiaZHpVLKhdH1IbchStTqUFVLkdQCTZ/rVUlddNFFLgDR9TLyd+0dK1V56eFFgWLoMvotqmRNxyE3as2n70APO5Glgnofua8IR8kOolIvt2r6qKbUujgor0dBhC6KAwYMcE83upHp6V3NTpXIF42KunUz1gVIxd26yOiGGy0XQzduUZG6qsv0w1YfEtHo6VNPlNomNR1WboKCMV2so/VhUhB6ulepiqp/1IxWNzp1ivfrX/86WD2lm5EurioVUyKigjEFQ6pnV/KybghK/vb2Uxd37YOq/xRMqpm4eIGMngDV5NSjRGWtV9USF198cXC6blB/+ctfXMKscpSUVKzcKR1rJSzqeKuJrdeUXNO0D/oOzzvvPHfxV2mRSqX0//Gg71tB5y9/+UuXjxDag7JKELwm1alATYR1M1Kph5JodSNWoKv90fccL0qg1/mr47JixQpXYqgm6uqyQDdRLxdFJXz6XSoYUAmhjrWaN8eSE+ZRYwPd6PU5KiFQsKHm1V5AnJ28/JbzUgqjY6sSZAX5OieViJufXD6PflMvv/yyS/bW9SqyB2Vt79///vccOxQUHRNVValbDf1mVeWl5uTKa9Q1Qb9/7zeo37P2RQGNfoMKblRioy4ylI/jVTXrd6rSTm2T1/Rc32ksw+To2OuaMXz4cLcvSjnQeaHkaDXX1zmk7wbZiGidhTTiNeVdvnx5lnknTpwInHnmme6lppWiZt5qIqlmsyVLlgzUrl078Itf/MI1V/dEaxr7n//8xzX9VhPaqlWrBgYMGBBs5hvatFTrURNvNfdUU9bQ0zOy6bl88sknrsm1PlfNg9u2bRv48MMPY9rH7JrwRlIT2rJly7p979Chg1uPmodrW3SMIk2aNMk1rS1TpoxrBq/m+g8++KBrFh/apFVN1zVf2xDZDF3NUzV9x44dwWlLlixx09QkNxo1J+7Ro0egSpUqrtsANYO98cYbA/Pnzw9bTp+pJu5169Z136G+S3UroO2OPDaRTZOjNW/Oyddff+2+6wYNGrhm3trfyy+/3DXtDu3CQJ+pbYqkfdDxL6ym57GsU3QM1WRa+6Dfw1/+8pfAsGHDAqecckqux0Dbpq4GImkdWlfkd9OvXz/3G9G6dO5EO9bq7kDN1nUuVqpUKfCrX/0q8OWXX0Zteq5zN9J///vfwG233eb2RftQuXJl99tRFxS5ifW3nN26o30Xaop98803B8qXL++6QND/e83j89r0PLJJ9k033eTOcTXv1nLa31WrVgVi8fnnnwceeOCBwEUXXeSOkZp3q+uGG264wV17Iuk3qq4edJ5r3y+44IKwbgxEx1i/AV0ftL/q2kDHNNox8rq1iDR9+vRA69at3Tr0UrN4nctr1qyJab/SVYb+k10gBADISk/Vemr3WsMh+am0RyVnStLX/yO9UI0FADlQdUNo0rkCHPWLUpBeflH0VJ2qnENVmaklVmg1MfyPkh0AyIHyL1QioDw1tXpSfoZyw9QPUnZ9ngBILpTsAEAONK7Va6+95lpLKUFcCaYqFSDQAVIHJTsAAMDX6GcHAAD4GsEOAADwNXJ2/m84APWQqg6aYh2yAAAAJJZ6z9HArhoTLdo4cB6CHTMX6MRzLCUAAFB0Nm3alO0gtkKwYxbsil0HK95jKgEAgMKhsd5UWOHdx7NDsBMyCrUCHYIdAABSS24pKCQoAwAAXyPYAQAAvkawAwAAfI1gBwAA+BrBDgAA8DWCHQAA4GsEOwAAwNcIdgAAgK8R7AAAAF+jB2UAAFA4TpwwW7zYbNs2s5o1za64wqx4cStqBDsAACD+ZswwGzzYbPPmn6ZpsM6xY8169LCiRDUWAACIf6Bz/fXhgY5s2ZI5XfOLEMEOAACIb9WVSnQCgazzvGlDhmQuV0QIdgAAQPwoRyeyRCcy4Nm0KXO5IkKwAwAA4kfJyPFcLg4IdgAAQPyo1VU8l4sDgh0AABA/al6uVlcZGdHna3rdupnLFRGCHQAAED/qR0fNyyUy4PHejxlTpP3tEOwAAID4Uj8606aZ1a4dPl0lPppexP3s0KkgAACIPwU03brRgzIAAPCx4sXN2rRJ9FZQjQUAAPyNnB0AAOBrBDsAAMDXCHYAAICvEewAAABfI9gBAAC+RrADAAB8jWAHAAD4GsEOAADwNYIdAADgawQ7AADA1xIa7CxatMi6du1qtWrVsoyMDJs1a1a2y95xxx1umTEaFj7Erl27rE+fPla+fHmrWLGi9e/f3/bv318EWw8AAFJBQoOdAwcOWLNmzWz8+PE5Ljdz5kz76KOPXFAUSYHOqlWrbO7cuTZ79mwXQA0cOLAQtxoAAKSSEolceefOnd0rJ1u2bLF77rnH3nnnHbvmmmvC5q1evdrmzJljy5cvtxYtWrhpzz77rHXp0sWeeeaZqMERAABIL0mds3Py5Em7+eab7YEHHrAmTZpkmb906VJXdeUFOtK+fXsrVqyYLVu2LNvPPXLkiO3duzfsBQAA/Cmpg52nnnrKSpQoYffee2/U+du3b7dq1aqFTdPylStXdvOyM2rUKKtQoULwVbdu3bhvOwAASA5JG+ysWLHCxo4da1OmTHGJyfE0fPhw27NnT/C1adOmuH4+AABIHkkb7CxevNh27txp9erVc6U1em3YsMGGDRtmDRo0cMvUqFHDLRPq+PHjroWW5mWndOnSrvVW6AsAAPhTQhOUc6JcHeXfhOrYsaOb3q9fP/e+VatWtnv3blcK1Lx5czdtwYIFLtenZcuWCdluAACQXBIa7Kg/nHXr1gXfr1+/3lauXOlyblSiU6VKlbDlS5Ys6Upszj33XPe+cePG1qlTJxswYIBNnDjRjh07ZoMGDbJevXrREgsAACS+Guvjjz+2n/3sZ+4lQ4cOdf//yCOPxPwZr776qjVq1MjatWvnmpy3bt3aJk2aVIhbDQAAUklGIBAIWJpT03O1ylKyMvk7AAD46/6dtAnKAAAA8UCwAwAAfI1gBwAA+BrBDgAA8DWCHQAA4GsEOwAAwNcIdgAAgK8R7AAAAF8j2AEAAL5GsAMAAHyNYAcAAPgawQ4AAPA1gh0AAOBrBDsAAMDXCHYAAICvEewAAABfI9gBAAC+RrADAAB8jWAHAAD4GsEOAADwNYIdAADgawQ7AADA1wh2AACArxHsAAAAXyPYAQAAvkawAwAAfI1gBwAA+BrBDgAA8DWCHQAA4GsEOwAAwNcIdgAAgK8R7AAAAF8j2AEAAL5GsAMAAHwtocHOokWLrGvXrlarVi3LyMiwWbNmhc1/9NFHrVGjRla2bFmrVKmStW/f3pYtWxa2zK5du6xPnz5Wvnx5q1ixovXv39/2799fxHsCAACSVUKDnQMHDlizZs1s/PjxUeefc8459txzz9kXX3xhS5YssQYNGliHDh3su+++Cy6jQGfVqlU2d+5cmz17tgugBg4cWIR7AQAAkllGIBAIWBJQyc7MmTOte/fu2S6zd+9eq1Chgs2bN8/atWtnq1evtvPOO8+WL19uLVq0cMvMmTPHunTpYps3b3YlRrHwPnfPnj2uhAgAACS/WO/fKZOzc/ToUZs0aZLbKZUGydKlS13VlRfoiKq6ihUrlqW6K9SRI0fcAQp9AQAAf0r6YEdVU+XKlbNTTjnF/ud//sdVV1WtWtXN2759u1WrVi1s+RIlSljlypXdvOyMGjXKBU3eq27duoW+HwAAIDGSPthp27atrVy50j788EPr1KmT3XjjjbZz584Cfebw4cNdkZf32rRpU9y2FwAAJJekD3bUEuuss86ySy+91F588UVXcqO/UqNGjSyBz/Hjx10LLc3LTunSpV3dXugLAAD4U9IHO5FOnjzpcm6kVatWtnv3bluxYkVw/oIFC9wyLVu2TOBWAgCAZFEikStXfzjr1q0Lvl+/fr2rslLOTZUqVezJJ5+0a6+91mrWrGnff/+9a6K+ZcsWu+GGG9zyjRs3dlVbAwYMsIkTJ9qxY8ds0KBB1qtXr5hbYgEAAH9LaLDz8ccfu5wcz9ChQ93fvn37uuDlq6++spdeeskFOgp+Lr74Ylu8eLE1adIk+G9effVVF+CoKbpaYfXs2dPGjRuXkP0BAADJJ2n62Ukk+tkBACD1+K6fHQAAgPwg2AEAAL5GsAMAAHyNYAcAAPgawQ4AAPA1gh0AAOBrBDsAAMDXCHYAAICvEewAAABfI9gBAAC+RrADAAB8jWAHAAD4GsEOAADwNYIdAADgawQ7AADA1wh2AACArxHsAAAAXyPYAQAAvkawAwAAfI1gBwAA+BrBDgAA8DWCHQAA4GsEOwAAwNcIdgAAgK8R7AAAAF8j2AEAAL5GsAMAAHyNYAcAAPgawQ4AAPA1gh0AAOBrBDsAAMDXCHYAAICvEewAAABfI9gBAAC+ltBgZ9GiRda1a1erVauWZWRk2KxZs4Lzjh07Zg899JA1bdrUypYt65a55ZZbbOvWrWGfsWvXLuvTp4+VL1/eKlasaP3797f9+/cnYG8AAEAySmiwc+DAAWvWrJmNHz8+y7yDBw/aJ598YiNGjHB/Z8yYYWvWrLFrr702bDkFOqtWrbK5c+fa7NmzXQA1cODAItwLAACQzDICgUDAkoBKdmbOnGndu3fPdpnly5fbJZdcYhs2bLB69erZ6tWr7bzzznPTW7Ro4ZaZM2eOdenSxTZv3uxKg2Kxd+9eq1Chgu3Zs8eVEAEAgOQX6/07pXJ2tDMKilRdJUuXLnX/7wU60r59eytWrJgtW7Ys2885cuSIO0ChLwAA4E8pE+wcPnzY5fD07t07GL1t377dqlWrFrZciRIlrHLlym5edkaNGuUiQe9Vt27dQt9+AACQGCkR7ChZ+cYbbzTVuE2YMKHAnzd8+HBXSuS9Nm3aFJftBAAAyaeEpUigozydBQsWhNXJ1ahRw3bu3Bm2/PHjx10LLc3LTunSpd0LAAD4X7FUCHTWrl1r8+bNsypVqoTNb9Wqle3evdtWrFgRnKaA6OTJk9ayZcsEbDEAAEg2CS3ZUX8469atC75fv369rVy50uXc1KxZ066//nrX7FxNyk+cOBHMw9H8UqVKWePGja1Tp042YMAAmzhxoguOBg0aZL169Yq5JRYAAPC3hDY9f++996xt27ZZpvft29ceffRRa9iwYdR/t3DhQmvTpo37f1VZKcB58803XSusnj172rhx46xcuXIxbwdNzwEASD2x3r+Tpp+dRCLYAQAg9fiynx0AAIC8ItgBAAC+RrADAAB8jWAHAAD4GsEOAADwNYIdAADga0k/XASK0IkTZosXm23bZlazptkVV5gVL85XAABIaQQ7yDRjhtngwWabN/90ROrUMRs71qxHD44SACBlUY2FzEDn+uvDAx3ZsiVzuuYDAJCiCHbSnaquVKITrSNtb9qQIZnLAQCQggh20p1ydCJLdCIDnk2bMpcDACAFEeykOyUjx3M5AACSDMFOulOrq3guBwBAkiHYSXdqXq5WVxkZ0edret26mcsBAJCCCHbSnfrRUfNyiQx4vPdjxtDfDgAgZRHsILMfnWnTzGrXDj8aKvHRdPrZAQCkMDoVRCYFNN260YMyAMB3CHYQXqXVpg1HBADgK1RjAQAAXyPYAQAAvkawAwAAfC3fwc7x48dt3rx59uc//9n27dvnpm3dutX2798fz+0DAAAo+gTlDRs2WKdOnWzjxo125MgRu/rqq+20006zp556yr2fOHFiwbYKAAAgkSU7gwcPthYtWtiPP/5oZcqUCU6/7rrrbP78+fHaNgAAgMSU7CxevNg+/PBDK1WqVNj0Bg0a2JYtWwq+VQAAAIks2Tl58qSdOHEiy/TNmze76iwAAICUDnY6dOhgYzRe0v/JyMhwickjR460Ll26xHP7AAAACiQjEAgE8vqPNm3a5BKU9U/Xrl3r8nf0t2rVqrZo0SKrVq2apZK9e/dahQoVbM+ePVa+fPlEbw4AAIjj/TtfwY7X9Pwf//iHffbZZ65U56KLLrI+ffqEJSynCoIdAABST6EFO8eOHbNGjRrZ7NmzrXHjxuYHBDsAAPj3/p3nnJ2SJUva4cOHC7p9AAAAyZugfPfdd7sOBFWVBQAA4Lt+dpYvX+46D3z33XetadOmVrZs2bD5M2bMiNf2AQAAFH3JTsWKFa1nz57WsWNHq1WrlqsvC33FSi23unbt6j5DzddnzZqVJWhSM/cqVaq4+StXrszyGapSU0mTlilXrpzbrh07dpjvqZ+j994ze+21zL9R+j0C3wMAIJ8lO5MnT47LsTtw4IA1a9bMbrvtNuvRo0fU+a1bt7Ybb7zRBgwYEPUz7rvvPnvrrbfs9ddfd4HWoEGD3Gd98MEH5lsqORs8WL04/jStTh2zsWPNohxH8D0AQDrLd9Nz+e6772zNmjXu/88991w7/fTT878hGRk2c+ZM6969e5Z53377rTVs2NA+/fRTu/DCC4PTlX2tdU6dOtWuv/56N+2rr75yrcSWLl1ql156qf9aYynQ0b5Gfm0ZGZl/p00j4OF7AIC0sLewWmN5JS4qjalZs6ZdeeWV7qWqqP79+9vBgwetqKxYscI1hW/fvn1wmprF16tXzwU7vqOqKpXoRItPvWlDhlClxfcAAChosDN06FB7//337c0337Tdu3e71xtvvOGmDRs2zIrK9u3b3WCkyiEKVb16dTcvO0eOHHHRYOgrJSxeHF51FS3g2bQpczkk9/dQFDlX5HUBQP6DnenTp9uLL75onTt3dsVGemlMrBdeeMGmqRolyY0aNSosobpu3bqWErZti+9ySMz3oKrIBg3M2rY1u+mmzL96H89WjEWxDgDwc7CjqiqVnkTSmFhFWY1Vo0YNO3r0qCtZCqXWWJqXneHDh7v6Pe+lsb5SQs2a8V0ORf89eDlXkSVDW7ZkTo9HMFIU6wAAvwc7rVq1ciOch/akfOjQIXvsscfcvKLSvHlz16Oz+vzxKGF648aNOW5H6dKlgyVS3islXHFFZqsrLxk5kqarlErLIfm+h6LIuSKvCwDi0/R87Nixro+dOnXquKbjogFBTznlFHvnnXdi/hwNILpu3brg+/Xr17u+dCpXruySjHft2uUCl61bt7r5XssvldropSooJUUrh0j/RkHLPffc4wKdWFtipZTixTObl+vpXDfU0Jumd+MdMyZzOSTf95CXXJ82bfK3bUWxDgBINYF8OnDgQGDSpEmBoUOHutcLL7wQOHjwYJ4+Y+HChbpLZHn17dvXzZ88eXLU+SNHjgx+xqFDhwJ33XVXoFKlSoFTTz01cN111wW2bduWp+3Ys2eP+1z9TQnTpwcCderotvXTq27dzOlI3u9h6tTwZbN7abn8Kop1AECSiPX+XaB+dvwipfrZCa2u0NO5kmCVG6IqE0p0kvt7UKsrJQrnZuHC/Je6FMU6ACDF7t/5CnbUmkkJyuprJ9Rf//pX19HgQw89ZKkkJYMdpGZgpBZRShSO9rNTFZhygdavz3/gWhTrAIB06FTwz3/+s+u8L1KTJk1s4sSJ+flIIH1yfSQyuTleOVdFsQ4ASDH5CnbUYZ96T46koRu20ccL/K4gnfVp7DL1RVW7dvh0lbbEa6iPolgHAKSQfLXGUid8GmhT41WF0jQNGwH4VjwGYdVy3boVbs5VUawDAPwc7GgE8iFDhrhxqa666io3TX3dPPjgg0U6XASQFIOwep315aXUREFHYScIF8U6ACAF5CtBWf/k4YcftnHjxrkejEV97Cgx+ZFHHrFUQ4IyYk78za4PGxJ/AcBfrbFCOwVcvXq1lSlTxs4++2zXM3EqIthBrmjSDQDp1RrLU65cObv44ovttNNOs2+++cZOnjxZkI8DkheDsAJAyspTsKN+dP70pz+FTRs4cKCdccYZ1rRpUzv//PNTZ1BNIC8YhBUA0iPYmTRpklWqVCn4fs6cOTZ58mR7+eWXbfny5VaxYkU3GCjgOwzCCgDpEeysXbvWWrRoEXz/xhtvWLdu3axPnz520UUX2e9///uwEcgB36CzPgBIj2Dn0KFDYQlAH374oV155ZXB96rOUoeDgC/RWR8A+L+fnfr169uKFSvc3++//95WrVpll19+eXC+Ah1lRQO+RWd9AODvYKdv37529913uyBnwYIFbnys5s2bh5X0KEkZ8DU66wMA/wY76iH54MGDNmPGDKtRo4a9/vrrWYaL6N27d7y3EQAAIN8K1KmgX9CpIAAA/r1/52tsLBTScAQM2ggAQNwR7PhlJG0AABD/4SIQx5G0IweY9EbS1nwAAJBvBDuJrrpSiU60tClv2pAhmcsBAICiD3bU146Sg5BPytGJLNGJDHg01piWAwAARRPs7N692/W1U7VqVatevbobK0vN0IcPH+6apSMPGEkbAIDkSlDetWuXtWrVyrZs2eLGw2rcuLGb/p///MeeffZZmzt3ri1ZssQ+//xz++ijj+zee+8trO32B0bSBgAguYKdxx9/3EqVKmXffPONK9WJnNehQwe7+eab7d1337Vx48bFe1v9O5K2kpGj5e1kZGTO13IAAKDwq7FmzZplzzzzTJZAR1SVNXr0aJs+fboNHTrUDS2BXDCSNgAAyRXsbNu2zZo0aZLtfI2LVaxYMRs5cmQ8ts3/1MqqcuXMFllVqoTPU4nOtGn0swMAQFFWYykp+dtvv7U6uhFHsX79eqtWrVpBtyl9OxI8/XSzPn3MunXLrLpSyQ8AACi6kp2OHTvab37zGzt69GiWeUeOHLERI0ZYp06dCrZF6dyR4PffZ/aavGsXgQ4AAIkYCHTz5s3WokULK126tGt+3qhRI9M/X716tT3//PMu4Fm+fLnVq1fPUkmRDgSqqqsGDbLvX8dLSl6/noAHAICiHghU1VdLly61u+66y/Wr48VJGRkZdvXVV9tzzz2XcoFOUnck2KZNUW4ZAAC+lOeBQBs2bGhvv/22/fjjj7Z27Vo37ayzzrLKSrRF7uhIEACA1Bj1XD0nX3LJJfHdmnRAR4IAACRvsNOjR4+YlpvBSN3ZoyNBAACSN9hREhDi1JGgWmMpGTk0P1zvZcwYkpMBAEhEa6x4W7RokT399NO2YsUK12HhzJkzrXv37sH52jR1UPjCCy+4AUgvv/xymzBhgp199tlh43Xdc8899uabb7oODXv27Gljx461cuXKJWdrrJz62albNzPQibEEDQCAdLY3xvt3nkc9j6cDBw5Ys2bNbPz48VHna/gJjbE1ceJEW7ZsmZUtW9b19XP48OHgMhqQdNWqVW4Q0tmzZ7sAauDAgZb0FNB8+63ZwoVmU6dm/lVzcwIdAAD8U7ITSs3XQ0t2tFm1atWyYcOG2f333++mKXLTuFxTpkyxXr16uf59zjvvPNe3j/r/kTlz5liXLl1cn0D690lbsgMAAPxfspMTDT2xfft2a9++fXCadqhly5aurx/R34oVKwYDHdHyqs5SSRAAAEC+m54XNgU6EjnCut578/Q3ciyuEiVKuD5/vGWiUU/PeoVGhgAAwJ+StmSnMI0aNcqVEnmvukoMBgAAvpS0wU6NGjXc3x07doRN13tvnv7u3LkzbP7x48ddCy1vmWg01IXq97zXJg3PAAAAfClpgx0NS6GAZf78+WHVTcrFadWqlXuvv2qSrqbrngULFtjJkyddbk92NJCpEplCXwAAwJ8SmrOzf/9+W7duXVhS8sqVK13OjQYUHTJkiD3xxBOuXx0FPyNGjHAtrLwWW40bN7ZOnTrZgAEDXPP0Y8eO2aBBg1xLrVhbYgEp58SJzIFiNc6ahh9Rr9zqrBIcXwDRBRJo4cKFavae5dW3b183/+TJk4ERI0YEqlevHihdunSgXbt2gTVr1oR9xg8//BDo3bt3oFy5coHy5csH+vXrF9i3b1+etmPPnj1uvfoLJLXp0wOBOnXUX8RPL73XdHB8gTSzJ8b7d9L0s5NI9LODlKBetzXMSORP1htmZNo0OqXk+AJpZW+M/ewQ7BDsIFWqrho0CB9eJDLgqVMnsxduqrQ4vkCa2JvqnQoCCKEcnewCHVFpj1oVajnkHccX8DWCHSAVKBk5nsuB4wukEYIdIBWo1VU8lwPHF0gjBDtAKlDzcuXkeMnIkTRdPYFrOXB8AYQh2AFSgZKOx47N/P/IgMd7P2YMyckcXwBREOzgp9Y+771n9tprmX/1HsmlR4/M5uW1a4dPV4kPzc45vgCyRdNzmp5n9t8yeHB4ax/dQFWSoBsskgs9KHN8ATj0s5MHad2pIB3VAQBSFP3sILYSApXoROtE25s2ZAhVWgCAlEbOTjqjIzUAQBpI6KjnSDA6qosvP+bS+HGfUgnHH4gLgp10Rkd18ePHJG8/7lMq4fgDcUNrrHROUPYGl9yyJXreDoNLpm+Stx/3KZVw/IGY0BorD9I22Am9qErojY2bWvqORu7HfUolHH8gZrTGQmzoqK5g/Jjk7cd9SiUcfyDuyNlBZsDTrRuJqPnhxyRvP+5TKuH4A3FHsINMqo5o04ajkVd+TPL24z6lEo4/EHf0swMUhB9HI/fjPqUSjj8QdwQ7QEH4cTRyP+5TKuH4A3FHsOMnjFyeGH5M8vbjPqUSjj8QV/Sz45em53RAlnh+7O3Wj/uUSjj+QI7oZyedgh06IAMApKG9Md6/qcZKdYxcDgBAjgh2Uh0dkAEAkCOCnVRHB2QAAOSIYCfV0QEZAAA5IthJdXRABgBAjgh2Uh0dkAEAkCOCHT+gAzIAALLFQKB+wcjlAABERbDjJ4xcDgBAFlRjAQAAX6Nkp7Axtg0AAAmV9CU7+/btsyFDhlj9+vWtTJkydtlll9ny5cuD8wOBgD3yyCNWs2ZNN799+/a2du1aS5oxqxo0MGvb1uymmzL/6r2mAwCAIpH0wc7tt99uc+fOtb/97W/2xRdfWIcOHVxAs2XLFjd/9OjRNm7cOJs4caItW7bMypYtax07drTDhw8nx+CcmzeHT9d2azoBDwAARSIjoKKRJHXo0CE77bTT7I033rBrrrkmOL158+bWuXNn+93vfme1atWyYcOG2f333+/maeTT6tWr25QpU6xXr16JGfVcVVcqwYkMdDwZGWZ16pitX5+ZVAwAANJz1PPjx4/biRMn7JRTTgmbruqqJUuW2Pr162379u2upMejnW7ZsqUtXbo02889cuSIO0Chr7hicE4AAJJGUgc7KtVp1aqVK8HZunWrC3xeeeUVF8hs27bNBTqikpxQeu/Ni2bUqFEuKPJedevWTc/BOVUC9d57Zq+9lvlX7wEA8JmkDnZEuTqqaatdu7aVLl3a5ef07t3bihXL/6YPHz7cFXl5r02bNqXf4JwkTwMA0kTSBztnnnmmvf/++7Z//34XlPz73/+2Y8eO2RlnnGE1atRwy+zYsSPs3+i9Ny8aBU2q2wt9pdXgnCRPAwDSSNIHOx61slLz8h9//NHeeecd69atmzVs2NAFNfPnzw8up/wbtcpS9VfCJPPgnKqqGjxYbfazzvOmDRlClRYAwDeSPthRYDNnzhyXjKwm6G3btrVGjRpZv379LCMjw/XB88QTT9i//vUv1zT9lltucS20unfvntgNT9bBOUmeBpCqyDOEX3tQVk6Ncmw2b95slStXtp49e9qTTz5pJUuWdPMffPBBO3DggA0cONB2795trVu3dsFRZAuuhEjGwTlTJXkaACKr31UqHdqlhx4eVYqeqIdHpIyk7menqMS9n51kplZX6sk5NwsXmrVpUxRbBACx5RlG3q68tIBElpYjoXzRzw4KQbInTwNAKPIMEQcEO+kmmZOnASASeYaIA4KddJRsydMkHQL8trJDniHSIUEZPk+eJukQ4LeV6p20IumRoJxuCcrJhKRDgN9WrAMrb9kSvX8wBlZOa3tJUEZSI+kQ4LcVC/IMEQfk7CAxSDoEUuO3Fa+cuoJ8TrLlGSLlkLODxCDpEEj+31a8curi8TnJkmeIlESwg8Qg6RBI7t9Wdjl1yp3R9FhLVOL1OaLAhs5OkQ8kKJOgnBgkHQLJ+9vyPiO76rBYk4Lj9TlANkhQRnIj6RBI3t9WvPJ+yM1DkiBBGYlD0iGQnL+teOX9kJuHJEHODhKLpEMg+X5b8cr7ITcPSYKcHXJ2AKBwcurIzUMhI2cHAJDYnDpy85AkyNkB8oJBS5Eu4pVTR24ekgDVWFRjIVYMWop0DfDj0ZFfvD4HyEc1FsEOwQ5iwaClAJB0yNkB4oVBSwEgpZGzA+SGjtEAIKUR7AC5oWM0AEhpBDtAbugYDQBSGsEOkBu1GlFz28j+RjyaXrdu5nIAgKRDsAPkho7RACClEewAsaBjNABIWQwECsSKQUsBICUR7AB5rdJq04ZjBgAphGosAADgawQ7AADA1wh2AACArxHsAAAAXyPYAQAAvkawAwAAfI2m5wDgVydOmC1enDmYrcZ405Am6j4BSDNJXbJz4sQJGzFihDVs2NDKlCljZ555pv3ud7+zQCAQXEb//8gjj1jNmjXdMu3bt7e1a9cmdLsBIOFmzDBr0MCsbVuzm27K/Kv3mg6kmaQOdp566imbMGGCPffcc7Z69Wr3fvTo0fbss88Gl9H7cePG2cSJE23ZsmVWtmxZ69ixox0+fDih2w4ACaOA5vrrzTZvDp++ZUvmdAIepJmMQGgxSZL5xS9+YdWrV7cXX3wxOK1nz56uBOeVV15xpTq1atWyYcOG2f333+/m79mzx/2bKVOmWK9evWJaz969e61ChQru35YvX77Q9gcAiqTqSiU4kYGOJyPDrE4ds/XrqdJCyov1/p3UJTuXXXaZzZ8/377++mv3/rPPPrMlS5ZY586d3fv169fb9u3bXdWVRzvdsmVLW7p0abafe+TIEXeAQl8A4AvK0cku0BE9327alLkckCaSOkH54YcfdoFIo0aNrHjx4i6H58knn7Q+ffq4+Qp0RCU5ofTemxfNqFGj7LHHHivkrQeABFAycjyXA3wgqUt2/vnPf9qrr75qU6dOtU8++cReeukle+aZZ9zfghg+fLgr8vJem/SUAwB+oFZX8VwO8IGkLtl54IEHXOmOl3vTtGlT27BhgyuZ6du3r9WoUcNN37Fjh2uN5dH7Cy+8MNvPLV26tHsBgO+oeblycpSMHC0l08vZ0XJAmkjqkp2DBw9asWLhm6jqrJMnT7r/V5N0BTzK6/Go2kutslq1alXk2wsACad+dMaO/SmwCeW9HzOG5GSklaQu2enatavL0alXr541adLEPv30U/vTn/5kt912m5ufkZFhQ4YMsSeeeMLOPvtsF/yoXx610OrevXuiNx9AKkhkx3uFte4ePcymTTMbPDg8WVklOgp0NB9II0nd9Hzfvn0ueJk5c6bt3LnTBTG9e/d2nQiWKlXKLaPNHzlypE2aNMl2795trVu3tueff97OOeecmNdD03MgTam/mWgBgUpGCjsgKIp104MyfG5vjE3PkzrYKSoEO0Aad7wXeQn0qnpUMlJYAU8i1w34CMFOIRwsAD6RyI736PQPiBtfdCoIAL7reI9O/4Ail9QJygCSWCrngySy4z06/fPnOYWkRrADILUSe1O94z06/fPnOYWkRoIyOTtA+iXXenkzuXW8V5g5O4lYd7LywzmFhCBnB0D86Uatp+9oN2lv2pAhmcsls0R2vEenf/48p5DUSFAGUDTJtbpZvfee2WuvZf5N9M3L63ivdu3w6SpVKeyShESuO9mQsI0iQM4OgMJPrk3WfAytu1u3xCTFJnLdyYSEbRQBgh0AhZtcm10+hnJWND3RJRkKLtq0Sb91JwsStlEESFAmQRkovORaOtBDvM8pIAQJygASn1xLPgbifU4B+UCCcmFJtmRMIBHJteRjIN7nFJAP5OwUhmRNxgSKOrmWfAzE+5wC8oGcnXjn7NA5FvAT8jEAFCJydhKBzrGAcORjAEgC5OzEE8mYQFbkYwBIMHJ24olkTCA68jEAJBDBTjyRjAlkjw70ACQI1VjxpJYDanUV2VeER9Pr1s1cDgAAFAmCnXgiGRNAMqG/L8Ah2Ik3kjEBJAN1g6FhGNq2Nbvppsy/eq/pQJqhn53CGhtLT1R0jgUgEejvC2lib4z3b4IdBgIF4CcMvoo0sjfGYIdqLADwE/r7ArKg6TmA+KIKN7Ho7wvIgmAHQPwwCG7i0d8XkAXVWADimxS7eXP49C1bMqfTCqho0N8XkAXBDoCCYxDc5EF/X0AWBDsACo6k2ORCf19AGHJ2ABQcSbHJh8FXgSCCHQAFR1JscmLwVcChGgtAwZEUCyCJEewAKDiSYgEkMaqxAMQ3KXbw4PDm53XqmI0Zkzk/FTopTESniNmtM6/bQoeOQHSBJFe/fv2ANjPyddddd7n5hw4dcv9fuXLlQNmyZQM9evQIbN++PU/r2LNnj/tM/QVQQMePBwILFwYCU6dm/tX7/Jo+PRCoUycQ0KXKe+m9pheGol5fTut84IG8bUsith1IsFjv30k/EOh3331nJ/S08n++/PJLu/rqq23hwoXWpk0bu/POO+2tt96yKVOmuMHABg0aZMWKFbMPPvggsaOeA0itkbsTMVJ4duvMTnbbwijnSFN7/Trq+ZAhQ2z27Nm2du1at5Onn366TZ061a7XBcPMvvrqK2vcuLEtXbrULr300pg+k2AHSPORuxMxUnhu68xO5LYwyjnS2F4/jnp+9OhRe+WVV+y2226zjIwMW7FihR07dszat28fXKZRo0ZWr149F+xk58iRI+4Ahb4ApHEnhYnoFDG3dca6LXToCOQqpYKdWbNm2e7du+3WW29177dv326lSpWyihUrhi1XvXp1Ny87o0aNcpGg96pbt26hbzuAJO6kMBGdIhb0s7x/T4eOgL+CnRdffNE6d+5stWrVKtDnDB8+3BV5ea9NekoCkL6dFCaiU8SCfpb37+nQEfBPsLNhwwabN2+e3X777cFpNWrUcFVbKu0JtWPHDjcvO6VLl3Z1e6EvAGncSWEiOkXMbZ3ZidwWOnQE/BPsTJ482apVq2bXXHNNcFrz5s2tZMmSNn/+/OC0NWvW2MaNG61Vq1YJ2lIAKddJYSI6RcxpndmJti106Aj4I9g5efKkC3b69u1rJUr81A+i8m369+9vQ4cOdU3RlbDcr18/F+jE2hILQJIq6pG7EzFSeHbrVMnNAw9krjuWbWGUcyBHKdH0/N1337WOHTu6UptzzjknbN7hw4dt2LBh9tprr7lWVlru+eefz7EaKxJNz4EkRg/K9KAMpFs/O4WBYAcAgNTjy352AAAA8opgBwAA+BrBDgAA8DWCHQAA4GsEOwAAwNcIdgAAgK8R7AAAAF8j2AEAAL5GsAMAAHztp4Gm0pjXibR6YgQAAKnBu2/nNhgEwY6Z7du3zx2Muhp8DwAApNx9XMNGZIexsf5vVPWtW7faaaedZhkZGXGNOBVAbdq0KccxO8Cx4twqPPwOOVacV/79DapER4FOrVq1rFix7DNzKNlR4lKxYlanTh0rLPpyCXY4VpxbicXvkGPFeeXP32BOJToeEpQBAICvEewAAABfI9gpRKVLl7aRI0e6v+BYcW4lBr9DjhXnVWIlw2+QBGUAAOBrlOwAAABfI9gBAAC+RrADAAB8jWAHAAD4GsFOIXj00UddT8yhr0aNGhXGqlLOokWLrGvXrq63Sx2XWbNmZekN85FHHrGaNWtamTJlrH379rZ27VpLR7kdq1tvvTXLedapUydLR6NGjbKLL77Y9YJerVo16969u61ZsyZsmcOHD9vdd99tVapUsXLlylnPnj1tx44dlm5iOVZt2rTJcm7dcccdlm4mTJhgF1xwQbAzvFatWtnbb78dnM85lbfjlcjzimCnkDRp0sS2bdsWfC1ZsqSwVpVSDhw4YM2aNbPx48dHnT969GgbN26cTZw40ZYtW2Zly5a1jh07uotKusntWImCm9Dz7LXXXrN09P7777tA5qOPPrK5c+fasWPHrEOHDu4Yeu677z5788037fXXX3fLa4iYHj16WLqJ5VjJgAEDws4t/TbTjXrW/8Mf/mArVqywjz/+2K666irr1q2brVq1ys3nnMrb8UroeRVA3I0cOTLQrFkzjmwudPrNnDkz+P7kyZOBGjVqBJ5++ungtN27dwdKly4deO2119L6eEYeK+nbt2+gW7duCdumZLZz5053zN5///3geVSyZMnA66+/Hlxm9erVbpmlS5cG0lnksZKf//zngcGDByd0u5JVpUqVAn/5y184p/J4vBJ9XlGyU0hU9aLqhzPOOMP69OljGzduLKxV+cb69ett+/btruoqdMyTli1b2tKlSxO6bcnqvffec1UR5557rt155532ww8/JHqTksKePXvc38qVK7u/etJUCUbouaWq5Xr16qX9uRV5rDyvvvqqVa1a1c4//3wbPny4HTx40NLZiRMn7O9//7srAVP1DOdU3o5Xos8rBgItBLo5T5kyxd2AVEz32GOP2RVXXGFffvmlqydHdAp0pHr16mHT9d6bh/AqLFXDNGzY0L755hv79a9/bZ07d3Y37+LFi6ftoTp58qQNGTLELr/8cndBFZ0/pUqVsooVK4Ytm+7nVrRjJTfddJPVr1/fPbB9/vnn9tBDD7m8nhkzZli6+eKLL9zNWlXpyvWaOXOmnXfeebZy5UrOqTwcr0SfVwQ7hUA3HI+StRT86Av+5z//af379y+MVSIN9erVK/j/TZs2defamWee6Up72rVrZ+lK+Sh6sCBPLv/HauDAgWHnlhoM6JxSUK1zLJ3ooVWBjUrApk2bZn379nV5T8jb8VLAk8jzimqsIqCnyXPOOcfWrVtXFKtLWTVq1HB/I1vI6L03D9lTlamKh9P5PBs0aJDNnj3bFi5c6JIlPTp/jh49art37w5bPp3PreyOVTR6YJN0PLdUInjWWWdZ8+bNXUs2NRoYO3Ys51Qej1eizyuCnSKwf/9+F7kqikX2VB2jG8/8+fOD0/bu3etaZYXW+SK6zZs3u5yddDzPlMOtm7eKzBcsWODOpVC68JYsWTLs3FLxuXLp0u3cyu1YRaMndUnHcyta1d+RI0c4p/J4vBJ9XlGNVQjuv/9+1z+Kqq7UvFWjvSqHonfv3pbuFPiFRvFKStYJr+RIJYsqf+CJJ56ws88+212ER4wY4ep31RdIusnpWOmlXDD1FaMAUcH0gw8+6J6o1FQ/Hatjpk6dam+88YbLi/PycJTgrv6a9FdVyEOHDnXHTn2A3HPPPS7QufTSSy2d5HasdC5pfpcuXVyfRMqtUBPrK6+80lWVphMl0CotQdemffv2ueOiauJ33nmHcyqPxyvh51VC2oD53C9/+ctAzZo1A6VKlQrUrl3bvV+3bl2iNyspLFy40DVzjXypGbXX/HzEiBGB6tWruybn7dq1C6xZsyaQjnI6VgcPHgx06NAhcPrpp7sm1fXr1w8MGDAgsH379kA6inac9Jo8eXJwmUOHDgXuuusu1xT21FNPDVx33XWBbdu2BdJNbsdq48aNgSuvvDJQuXJl9xs866yzAg888EBgz549gXRz2223ud+WruX6rel69O677wbnc07FfrwSfV5l6D+FH1IBAAAkBjk7AADA1wh2AACArxHsAAAAXyPYAQAAvkawAwAAfI1gBwAA+BrBDgAA8DWCHQCFJiMjw2bNmpXtfPWuqmW8MaumTJkSNjL5o48+ahdeeGHw/a233poUvWkny3YAiA3DRQDIFw0z8OSTT9pbb71lW7ZssWrVqrnAREN+xDrq+mWXXWbbtm1zXe/HQgMKFnY/qAq+cqLhX4piOwDED8EOgDz79ttv7fLLL3elME8//bQ1bdrUjh075sbA0dhLX331VcwjJOdl1PFYg6KCUPDl+cc//mGPPPKIGzTUU65cOfcCkDqoxgKQZ3fddZcrAfn3v//tBiM955xzrEmTJm6gzY8++ihs2e+//96uu+46O/XUU90Ar//617+yrcbKa/VRmzZt7N5773WDoGqATwVOqvoKpcCrdevWdsopp9h5551n8+bNy7F6TZ/hvRRcadnQaQp0om2HBhZVqValSpWsevXq9sILL9iBAwesX79+bsBNDdL69ttvh63ryy+/dAMn6jP1b26++WZ3vADEF8EOgDzZtWuXzZkzx5XglC1bNsv80Jwb0ejsN954oxvlWCMe9+nTx31GvLz00ktuO5YtW2ajR4+2xx9/3ObOnevmnThxwgUlCrQ0f9KkSfab3/wmbuuO3I6qVau6AFCBz5133mk33HCDq6r75JNPrEOHDi6YOXjwoFteAd5VV11lP/vZz+zjjz92x3THjh3uWAGIL4IdAHmybt06l6/SqFGjmJZXKUjv3r1dycbvf/97279/vwsI4uWCCy5weTQqNbrlllusRYsWNn/+fDdPQc8333xjL7/8sjVr1syV8CjPqDDo83/729+67Rg+fLgrSVLwM2DAADdN1WE//PCDC/rkueeec4GOjomOpf7/r3/9qy1cuNC+/vrrQtlGIF2RswMgT/KamKtgxKMSmPLly9vOnTvjdtRDP19q1qwZ/Hzl2tStWzcsL+iSSy6J27qz247ixYtblSpVXC6TR9VU4m3bZ5995gKbaPk/CtBUNQggPgh2AOSJSimUxxJrEnLJkiXD3uvfnjx5Mm5HvbA/vyDbETrNa+XlbZtKuLp27WpPPfVUls9SwAYgfqjGApAnSgTu2LGjjR8/3iXgRoo12bgonHvuubZp0yaXC+NZvny5JYOLLrrIVq1aZQ0aNHBVfKGvaLlQAPKPYAdAninQUfKvqoSmT59ua9eutdWrV9u4ceOsVatWSXNEr776ajvzzDOtb9++Llfmgw8+cHk1sfSnU9iU4K1EbeUzKQBT1ZWa7qv1lo4tgPgh2AGQZ2eccYZrYdS2bVsbNmyYnX/++S6wUGLwhAkTkuaIKndGTcxVZXTxxRfb7bffHmyNpQTiRKpVq5YLvhTYqKWW8nvUdF2t2YoV49IMxFNGgG5AAaQRBRhqlaVWZSr1AeB/BDsAfG3mzJmuxZMSqxXgDB482HX8t2TJkkRvGoAiQmssAL62b98+e+ihh2zjxo2u35v27dvbH//4x0RvFoAiRMkOAADwNbLgAACArxHsAAAAXyPYAQAAvkawAwAAfI1gBwAA+BrBDgAA8DWCHQAA4GsEOwAAwNcIdgAAgPnZ/wdXMLPYH/7YZAAAAABJRU5ErkJggg==" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 28 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_15.7 Histogram_**", + "id": "74b8d27435399283" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T15:26:54.316689Z", + "start_time": "2025-11-13T15:26:54.171813Z" + } + }, + "cell_type": "code", + "source": [ + "#based on iq\n", + "\n", + "plt.hist(students['IQ_Score'],color='Red',edgecolor='black')\n", + "plt.xlabel('IQ Score')\n", + "plt.ylabel('Frequency of Students')" + ], + "id": "4db2a5e5cc16b58", + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0, 0.5, 'Frequency of Students')" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 29 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T15:27:21.220614Z", + "start_time": "2025-11-13T15:27:21.078086Z" + } + }, + "cell_type": "code", + "source": [ + "# based on study hour\n", + "\n", + "plt.hist(students['Study_Hour'],bins=15,color='Red',edgecolor='black')\n", + "plt.xlabel('Study Hours')\n", + "plt.ylabel('Frequency of Students')" + ], + "id": "84781f985b843213", + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0, 0.5, 'Frequency of Students')" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 30 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T16:36:49.517604Z", + "start_time": "2025-11-13T16:36:49.394733Z" + } + }, + "cell_type": "code", + "source": [ + "plt.hist(students['Study_Hour'],bins=[1,2,3,4,5,6,7,8],color='Red',edgecolor='black')\n", + "plt.xlabel('Study Hours')\n", + "plt.ylabel('Frequency of Students')" + ], + "id": "e2a4e5801386c6f7", + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0, 0.5, 'Frequency of Students')" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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S5dkw4YNMmHCBGnVqpVZKfj+++83q0f/6U9/MtcpX768+dq5c2fTk5FyuXfv3vL444+nOZ4O6WivRorLly9Lr169JF++fFKyZEmZOHFimuu/9tprGa7GXLduXRk1atRt37+LFy+a2y9UqJCEhISYFbEPHz7s/fmYMWPMbaU2efJk731MfT91FdlSpUpJeHi42f/+++9LlSpVJDg4WO655x75y1/+ctvtBXBzBBXAhTRA6KbDOklJSRleZ/v27earLnUfExPjvZwZw4YNk3Xr1slXX30l3377raxdu1aioqK8P9fl4g8cOJDmmLqU/N69e6VPnz5yuzRk7NixQ5YuXSpbtmzRVeKlQ4cO8ttvv/l0HO1hOnjwoKxcuVKWLVtmjjlgwAATtHT/8uXLpXnz5rfdXgA3x9AP4EKBgYEyd+5c6d+/v0yfPl3q168vLVq0kG7duknt2rXNdYoVK2a+FixY0NSvZFZCQoLMmjVLFixYIK1btzb7dHipTJky3uvo91oPoyGoYcOGZp9+r23QYajf06RJE8mRI+1nrP/85z/eHhLtOdGAorU2el310UcfSVhYmAlmTzzxRKbvS968eeXDDz/0DvksXrzY7HvsscckNDTU9ETVq1cv08cD4Dt6VAAX16icPn3avKk/8sgjptdDA4sGmNsRHR1t6jkaNWrk3Ve4cGHv0EkKDUmffPKJJCYmmut//PHHpqfljyxatMgU1Kbe7rvvPu/PtadGg1jq2y9SpIi5ff2ZL2rVqpWmLqVt27YmnGiYevrpp00AunLlik/HBOAbggrgYlpnoW++WheyefNmM2QyevTo3/0d7c3QoZTUfB1SUR07djRnGy1ZskS+/vprc4zM1Htoz0jlypXTbHny5PHptjN7H7T3JDXtRdEhLA1YWnvz6quvSp06dUzND4CsQVAB4FW9enVTCJsiV65ccv369TSPkA4Jac1KaqlPGa5UqZL5ve+//z5NceuhQ4fS/I72ekRERJghH9102MnXwJGRe++9V65du5bm9vVMJq0p0fuXch/OnDmTJqxkdNpzRrTdbdq0kbffftvU1Ohp0999991ttxtAxqhRAVxI37i1VkOHWrQmRXsKtFBU33w7derkvZ6eBaMFpQ8++KDp/dCzaB566CF55513ZP78+dK4cWNTi7J//35vrYYW6fbr188U1OqQS/HixeWVV15JV1ei/vrXv5pgoVLP33I79IwcvQ86tDRjxgxz30aMGCGlS5f23jc9Q0nnkdH7q704WhQbGRkp+fPn/91ja0Ht0aNHTQGtPhbffPONJCcnpxvWAuA/9KgALqRhQms43n33XfOmq6cK6/CPvrlPnTrVez09rVjPeNHhlpQgokWwet2XX37ZFMLGx8ebU4FT0yDTrFkzM7yjvQ9NmzaVBg0aZBgqtOC1WrVqaWpKbpf20OjtadGrhintOdFQoT09SsORnmb83nvvmaGbbdu2ydChQ//wuFpYrAW1Gtb0GFqIrMNANWrU8FvbAaQV4LlxoBYAsom+/GhYee6552TIkCE87gDSYegHgCN06GXhwoWmVsQfc6cAuDsRVAA4QmtXihYtKh988IGp9wCAjBBUADiCUWcAmUExLQAAsBZBBQAAWIugAgAArEVQAQAA1iKoAAAAaxFUAACAtQgqAADAWgQVAAAgtvo/2ucp03sK20sAAAAASUVORK5CYII=" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 37 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_15.8 Bar Chart_**", + "id": "6d5c5fe9a06fc327" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T16:43:40.743629Z", + "start_time": "2025-11-13T16:43:40.732447Z" + } + }, + "cell_type": "code", + "source": [ + "data = {\n", + " 'Student': [ 'B', 'C', 'D', 'E', 'F', 'G', 'H'],\n", + " 'Gender': [ 'Male', 'Female', 'Male', 'Female', 'Male', 'Female', 'Male'],\n", + " 'StudyHours': [ 2, 5, 3, 7, 4, 8, 1],\n", + " 'Attendance': [ 60, 88, 70, 95, 80, 98, 55],\n", + " 'Grade': [ 'Fail', 'Pass', 'Fail', 'Pass', 'Pass', 'Pass', 'Fail']\n", + "}\n", + "\n", + "df = pd.DataFrame(data)\n", + "df" + ], + "id": "332cfc321ef05939", + "outputs": [ + { + "data": { + "text/plain": [ + " Student Gender StudyHours Attendance Grade\n", + "0 B Male 2 60 Fail\n", + "1 C Female 5 88 Pass\n", + "2 D Male 3 70 Fail\n", + "3 E Female 7 95 Pass\n", + "4 F Male 4 80 Pass\n", + "5 G Female 8 98 Pass\n", + "6 H Male 1 55 Fail" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentGenderStudyHoursAttendanceGrade
0BMale260Fail
1CFemale588Pass
2DMale370Fail
3EFemale795Pass
4FMale480Pass
5GFemale898Pass
6HMale155Fail
\n", + "
" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 39 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T16:51:17.523586Z", + "start_time": "2025-11-13T16:51:17.516630Z" + } + }, + "cell_type": "code", + "source": [ + "gender_group = df.groupby('Gender').size()\n", + "gender_group.index\n", + "gender_group.values" + ], + "id": "66d5c77de934764d", + "outputs": [ + { + "data": { + "text/plain": [ + "array([3, 4])" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 41 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T16:53:24.740264Z", + "start_time": "2025-11-13T16:53:24.619348Z" + } + }, + "cell_type": "code", + "source": [ + "plt.bar(gender_group.index,gender_group.values,color=['orange','red'],edgecolor='black')\n", + "\n", + "plt.xlabel('Gender')\n", + "plt.ylabel('Count')\n", + "plt.title('Bar Chart of Gender among students')" + ], + "id": "d1052c6919128c21", + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0.5, 1.0, 'Bar Chart of Gender among students')" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjcAAAHHCAYAAABDUnkqAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjcsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvTLEjVAAAAAlwSFlzAAAPYQAAD2EBqD+naQAAOLRJREFUeJzt3Ql0FFXa//EnbAlbInvYQUBW2RWCCsiOqPA6ojI6QQcYnREHRHEmysimRl9kexVZRiEqfwRRFkcRRCCKJqiEoICCMgKJTEIAgZBIgob6n+ee0z3dSSckkKQ7l+/nnIJ0dXX1rerq7l/fpSrIcRxHAAAALFHO3wUAAAAoToQbAABgFcINAACwCuEGAABYhXADAACsQrgBAABWIdwAAACrEG4AAIBVCDcAAMAqhBugEGJiYiQoKEh27txZpvfXb7/9Jk888YQ0btxYypUrJyNGjJCyKDY21rwe+j/s1axZM7n//vv9XQyUQYQb+C0oeE5169aVm2++WT788MNSL8/atWtl6NChUrt2balUqZI0aNBA7rrrLtm6dav4yyuvvGL2U3FbunSpzJo1S+688055/fXX5dFHH73oY/71r3/JbbfdJvXq1TP7p2bNmtK7d2+ZPXu2pKenF3sZUbaU1LFaWjZs2CDTpk3zdzFQzCoU9wqBwpoxY4Y0b95c9PJmx44dMx+Qt9xyi/kyvfXWW0t8R+rz/vGPfzTP26VLF5k0aZKEh4dLSkqKCTz9+/eXzz//XHr16iX++MLQsFXcv1o1sDVs2FDmzp170WUvXLggY8aMMfvn2muvlb/85S+mxufs2bMSHx8vU6ZMMV8MW7ZsKdYyomwpqWO1tOgxvGDBAgKOZQg38ButLenevbv7tn6Rau3AW2+9VSzhRr+cz58/LyEhIT7v15oH/eKeOHGizJkzx9QguTz11FPy5ptvSoUKpfsW+eWXX6RKlSoltv60tDS56qqrCrXs//7v/5r9o7U7uq8898+ECRNMCHzjjTfEBpmZmVK1alV/FwNAcdGrggOladmyZXoleuerr77ymn/hwgUnNDTUiYyM9Jo/a9YsJyIiwqlZs6YTEhLidO3a1Vm9enWe9eo6H374YWf58uVOu3btnAoVKjhr1671WYZffvnFrK9NmzbOb7/9Vugyf/bZZ86jjz7q1K5d26lSpYozYsQIJy0tzWvZdevWObfccotTv359p1KlSs7VV1/tzJgxI8/z9OnTx2nfvr2zc+dO56abbnIqV67sTJgwwWnatKl5Ls9Jly1IRkaGM2nSJKdRo0bmOa+55hqz33SfqkOHDuVZp07btm3zub7MzEznqquuMuUrzP7x9Oabb5rXSF+rGjVqOHfffbeTlJTkc9v37dvn9O3b12x7gwYNnBdeeCHP+pKTk53hw4eb/V2nTh1n4sSJzsaNG32Wf8eOHc7gwYPNcaTr7N27t3nNPE2dOtU8Vp971KhRZjs7d+6c7/acPHnSeeyxx5wOHTo4VatWdapXr+4MGTLE2b17t9dyWhZd76pVq5xp06aZ7alWrZrzu9/9zjl9+rSTlZVlXl/dBl3P/fffb+Z5+vXXX82xoseMvo56LERFReVZTucPGzbM2b59u3Pdddc5wcHBTvPmzZ3XX389T/m//vprsx/09WjYsKEzc+ZMZ+nSpaaselwUJCUlxZRTH6flCQ8Pd26//Xb34wo6Vl37Ob/3kudz63Gq5dLn0ddNj4m9e/ea9Y8ePdrr8adOnTL70XWst2jRwnn++eednJwc9zKu413fA4sXL3bvz+7duztffvmlezldt6/3hctbb71ljmV9HfV112Ng3rx5Be4zBAZqbuA3Z86ckRMnTpjmIa1ReOmllyQjI0Puu+8+r+Xmz58vt99+u9x7772mJmblypUycuRIef/992XYsGF5ml3efvttGT9+vKkq1w6Jvnz22Wfy888/m1qb8uXLF7rMjzzyiNSoUUOmTp0qhw8flnnz5pnnWrVqlXsZre2oVq2aaebS/7VMTz/9tOmfov1dPJ08edLUYN1zzz1mu7Xmqm/fvuZ59LFag6R0fn50/+n+2bZtm6n96ty5s2zatEkmT54sR48eNU1QderUMTVRzz77rNnH0dHR5rFt27bNd/+cPn1aHn/88SLtH13/P/7xD9NnaezYsXL8+HHzumofncTERK9ao1OnTsmQIUPkjjvuMMu/88478re//c00gek+UefOnTPNg0lJSfLXv/7V9IfS7fDVH0rn6eO6detmXh/tML1s2TLp16+fbN++Xa6//nqv5fUYatWqlTz33HNmH+bnxx9/lHXr1pnltRlVm1AXL14sffr0kW+//daUyZPu28qVK8vf//53OXjwoNn+ihUrmvLoNmv/jh07dpjjRNenx4aL7jPt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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 43 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T16:54:58.494455Z", + "start_time": "2025-11-13T16:54:58.473019Z" + } + }, + "cell_type": "code", + "source": [ + "# Bar chart on real data\n", + "\n", + "df = pd.read_csv('student_data.csv')\n", + "\n", + "df" + ], + "id": "a49477a9fd7dbb0b", + "outputs": [ + { + "data": { + "text/plain": [ + " StudentID FullName Data Structure Marks Algorithm Marks \\\n", + "0 PH1001 Alif Rahman 85.0 85.0 \n", + "1 PH1002 Fatima Akhter 92.0 92.0 \n", + "2 PH1003 Imran Hossain 88.0 88.0 \n", + "3 PH1004 Jannatul Ferdous 78.0 78.0 \n", + "4 PH1005 Kamal Uddin NaN NaN \n", + "5 PH1006 Laila Begum 75.0 75.0 \n", + "6 PH1007 Mahmudul Hasan 80.0 80.0 \n", + "7 PH1008 Nadia Islam 81.0 81.0 \n", + "8 PH1009 Omar Faruq 72.0 72.0 \n", + "9 PH1010 Priya Sharma 89.0 89.0 \n", + "10 PH1011 Rahim Sheikh NaN NaN \n", + "11 PH1012 Sadia Chowdhury 85.0 85.0 \n", + "12 PH1013 Tanvir Ahmed 75.0 75.0 \n", + "13 PH1014 Urmi Akter NaN NaN \n", + "14 PH1015 Wahiduzzaman 86.0 86.0 \n", + "15 PH1016 Ziaur Rahman 94.0 94.0 \n", + "16 PH1017 Afsana Mimi 90.0 90.0 \n", + "17 PH1018 Babul Ahmed 88.0 88.0 \n", + "18 PH1019 Faria Rahman NaN NaN \n", + "19 PH1020 Nasir Khan 86.0 86.0 \n", + "20 NaN NaN NaN NaN \n", + "\n", + " Python Marks CompletionStatus EnrollmentDate Instructor Location \n", + "0 88.0 Completed 2024-01-15 Mr. Karim Dhaka \n", + "1 NaN In Progress 2024-01-20 Ms. Salma Chattogram \n", + "2 85.0 Completed 2024-02-10 Mr. Karim Dhaka \n", + "3 82.0 Completed 2024-02-12 Ms. Salma Sylhet \n", + "4 95.0 In Progress 2024-03-05 Mr. Karim Chattogram \n", + "5 78.0 Completed 2024-03-08 Ms. Salma Rajshahi \n", + "6 NaN In Progress 2024-04-01 Mr. Karim Dhaka \n", + "7 85.0 Completed 2024-04-22 Ms. Salma Chattogram \n", + "8 76.0 Completed 2024-05-16 Mr. David Dhaka \n", + "9 88.0 Completed 2024-05-20 Ms. Salma Sylhet \n", + "10 91.0 In Progress 2024-06-11 Mr. Karim Khulna \n", + "11 87.0 Completed 2024-06-14 Ms. Salma Chattogram \n", + "12 79.0 Completed 2024-07-02 Mr. David Dhaka \n", + "13 NaN Not Started 2024-07-09 Ms. Salma Rajshahi \n", + "14 84.0 Completed 2024-08-18 Mr. Karim Dhaka \n", + "15 NaN In Progress 2024-08-21 Ms. Salma Chattogram \n", + "16 93.0 Completed 2025-09-01 Mr. Karim Dhaka \n", + "17 85.0 Completed 2025-09-05 Ms. Salma Sylhet \n", + "18 NaN Not Started 2025-09-15 Mr. David Chattogram \n", + "19 89.0 Completed 2025-10-02 Ms. Salma Dhaka \n", + "20 NaN NaN NaN NaN NaN " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StudentIDFullNameData Structure MarksAlgorithm MarksPython MarksCompletionStatusEnrollmentDateInstructorLocation
0PH1001Alif Rahman85.085.088.0Completed2024-01-15Mr. KarimDhaka
1PH1002Fatima Akhter92.092.0NaNIn Progress2024-01-20Ms. SalmaChattogram
2PH1003Imran Hossain88.088.085.0Completed2024-02-10Mr. KarimDhaka
3PH1004Jannatul Ferdous78.078.082.0Completed2024-02-12Ms. SalmaSylhet
4PH1005Kamal UddinNaNNaN95.0In Progress2024-03-05Mr. KarimChattogram
5PH1006Laila Begum75.075.078.0Completed2024-03-08Ms. SalmaRajshahi
6PH1007Mahmudul Hasan80.080.0NaNIn Progress2024-04-01Mr. KarimDhaka
7PH1008Nadia Islam81.081.085.0Completed2024-04-22Ms. SalmaChattogram
8PH1009Omar Faruq72.072.076.0Completed2024-05-16Mr. DavidDhaka
9PH1010Priya Sharma89.089.088.0Completed2024-05-20Ms. SalmaSylhet
10PH1011Rahim SheikhNaNNaN91.0In Progress2024-06-11Mr. KarimKhulna
11PH1012Sadia Chowdhury85.085.087.0Completed2024-06-14Ms. SalmaChattogram
12PH1013Tanvir Ahmed75.075.079.0Completed2024-07-02Mr. DavidDhaka
13PH1014Urmi AkterNaNNaNNaNNot Started2024-07-09Ms. SalmaRajshahi
14PH1015Wahiduzzaman86.086.084.0Completed2024-08-18Mr. KarimDhaka
15PH1016Ziaur Rahman94.094.0NaNIn Progress2024-08-21Ms. SalmaChattogram
16PH1017Afsana Mimi90.090.093.0Completed2025-09-01Mr. KarimDhaka
17PH1018Babul Ahmed88.088.085.0Completed2025-09-05Ms. SalmaSylhet
18PH1019Faria RahmanNaNNaNNaNNot Started2025-09-15Mr. DavidChattogram
19PH1020Nasir Khan86.086.089.0Completed2025-10-02Ms. SalmaDhaka
20NaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "
" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 45 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T16:59:42.746723Z", + "start_time": "2025-11-13T16:59:42.656667Z" + } + }, + "cell_type": "code", + "source": [ + "status = df.groupby('CompletionStatus').size()\n", + "plt.bar(status.index,status.values,color=['green','orange','red'],edgecolor='black')\n", + "plt.xlabel('Completion Status')\n", + "plt.ylabel('Count')\n", + "plt.title('Bar Chart of Course completion')\n", + "plt.show()" + ], + "id": "ee14d30b10e5b8ae", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjIAAAHHCAYAAACle7JuAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjcsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvTLEjVAAAAAlwSFlzAAAPYQAAD2EBqD+naQAAOINJREFUeJzt3QucjOX///HLcRexziI2KmdRKoq+ouSQlM6SSAcdHJJSbd+QQ+1XB1RE9S06iRQ6fCupSEWESJJDYTeSQ9jQLtb9f7yv32PmP7M7s3bX7s5c9vV8PCbNPffc9zX33Dvzns99XfddxPM8zwAAADioaKQbAAAAkFsEGQAA4CyCDAAAcBZBBgAAOIsgAwAAnEWQAQAAziLIAAAAZxFkAACAswgyAADAWQQZoABNnTrVFClSxCxbtszp7X7kyBHz4IMPmlq1apmiRYuabt26RbpJyEOPPfaY3U/z0ubNm+0y9TcA5CWCDJwPBYG3qlWrmnbt2plPPvmkwNsze/Zs07lzZ1O5cmVTsmRJU6NGDXP99debL7/80kTKCy+8kC9fHK+++qp56qmnzLXXXmtee+01c9999zm5fZD3pk2bZsaPH8+mRYEpXnCrAvLHyJEjTZ06dYwuG/bnn3/aL+7LLrvMfPjhh+byyy/P982u9d566612vWeffbYZPHiwOfnkk80ff/xhv7wvueQS8+2335pWrVqZSAQZBYdbbrklT5er8HHKKaeYcePGOb19kD9B5qeffjKDBg0Kmn7qqaeaf/75x5QoUYLNjjxFkIHz9Cv/3HPP9d+/7bbbTLVq1czbb7+dJ0Hm6NGj5tChQyY2Njbk488884z9ktYH99ixY4NK8v/+97/NG2+8YYoXL9g/tYMHD5rSpUvn2/J37Nhhypcvn615C+P2QWZ638P9DQHHRVe/Blw0ZcoUXbnd+/7774OmHz161CtXrpzXq1evoOlPPfWUd8EFF3gVK1b0YmNjvebNm3szZ87MtFwts1+/ft6bb77pNWrUyCtevLg3e/bskG04ePCgXV6DBg28I0eOZLvN33zzjXffffd5lStX9kqXLu1169bN27FjR9C8c+bM8S677DKvevXqXsmSJb3TTjvNGzlyZKb1XHTRRV7jxo29ZcuWef/617+8UqVKeffee6936qmn2nUF3jRvVvbv3+8NHjzYq1mzpl1nvXr17HbTNpVNmzZlWqZu8+fPz5PtI7/++qt37bXXehUqVLCvpWXLlt5HH30UcjuqPYHUjoztCbd9RPtOhw4dvEqVKtl9onbt2l6fPn2Clpmenu6NGzfO7gsxMTFe1apVvb59+3p//fVXtl7P2rVrveuuu86+11qHtukjjzwSNM+KFSu8Tp06eWXLlvXKlCnjXXzxxd7ixYtDvuavv/7aGzBggF1eXFycbUtaWpq3Z88e7+abb/bKly9vb0OGDPG/b4Hvnd7PsWPHevHx8bY9bdq08VavXh20ruHDh9t5M3rjjTfs342ep/fnhhtu8JKSkoK2dcZ9Q/th4Pr1OgJ98cUX3oUXXmj/DvR6rrjiCu/nn38O2Z4NGzZ4vXv3tvPpb/yWW27xDhw4kK33AScuKjJw3r59+8yuXbvsIQxVCp5//nmzf/9+07Nnz6D5nn32WXPFFVeYm266yVZYpk+fbq677jrz0UcfmS5dumQ6dPLOO++Y/v3720MztWvXDrnub775xvz111+22lCsWLFst3nAgAGmQoUKZvjw4bYTpPoUaF0zZszwz6MqxkknnWQPxehftWnYsGEmJSXF9k8JtHv3bluZ6t69u33dqki1bdvWrkfPVeVDND0cbT9tn/nz59uq1llnnWXmzp1rhgwZYrZu3WoPI1WpUsVWUB5//HG7jRMTE+1zGzZsmCfbR4cGdYhJFZOBAweaSpUq2T44ate7775rrrrqqmxv42NtH+0rHTp0sK/p4YcfthUmvRezZs0Keu6dd95p34s+ffrYNm3atMlMmDDB/PDDD/aQWFaHSn788Ufzr3/9y87Tt29fux/9+uuv9rCntqGsWbPGzlOuXDnbgVrzvvjii/b9++qrr0zLli2Dlqn3VIfmRowYYb777jvz0ksv2bYvWrTIxMfHmyeeeMJ8/PHHdh9p0qSJ6dWrV9DzX3/9dfP333+bfv36mdTUVPt3cfHFF5vVq1dnuX+ovUOHDrX9mm6//Xazc+dO+7fWpk0buy3UBu1n+nv8/fff/Ycdtf+F8/nnn9v35bTTTrMdjHXoScts3bq1WbFiRaa/O61bh5G13+nx//73v7Zf3JgxY8KuA4VApJMUkFu+X6gZb/rVPHXq1JDVgUCHDh3ymjRpYn/9BtIyihYt6q1Zs+aYbXj22Wft/OEqNuHa3L59+6Bfy6rOFCtWzNu7d2/Y9sqdd95pf7mmpqZm+hU8efLkTPOrEnGsKkxgBUjLGT16dNB0VUeKFCnibdy4MWidWnZeb59Bgwb5qw4+f//9t1enTh1bLVF1JDcVmVDbR20KVdELpHZonrfeeito+qeffhpyekaqdqjKsmXLlqDpge+9qnGqfqkS5bNt2zb7PD3fx/eaO3bsGPR8VRn1/tx1113+aap+qaoW+N77KiKqSP3+++/+6UuWLLHTtQ+Gq8hs3rzZ7p+PP/540OtQJUcVy8DpXbp08VdhAoWqyJx11lm2wrV7927/tFWrVtm/v8CKqq89t956a9Ayr7rqKltNQ+HGqCU4b+LEiWbevHn29uabb9pRS/rFmPGXdalSpfz/v2fPHvvLUb+E9csuo4suusg0atTomOtWdUTKli2bozbr13lgXxG1Iz093WzZsiVke/ULWlUnzadqxS+//BK0vJiYGFsxOB76Fa+qiaoOge6//35brcnNSLCcbh+1oUWLFubCCy/0T9Mvem0vVUt+/vlnkxuhto+vj48qcocPHw75vJkzZ5q4uDhz6aWX2u3vu51zzjm2XapehaOKxcKFC21HZ1VKAvnee73nn332mR2+rqqET/Xq1U2PHj1sRcu3DX1ULQvcd1Sx0fuj6T56H9Vv7LfffsvULq1LHbV9tL21DG37cPS3pL5iqogEbgdVhurWrZvldghHnb1XrlxpO6JXrFjRP71p06Z2e4dqz1133RV0X38PqrZl3EYoXAgycJ4+iNu3b29vOmz0v//9z4YQHarRISQffWGdf/75tsOhPjh1SGHSpEk20GSk8nV26HCAL2jkRMYvNh1m8gUsHx1y0KEUfZFqPWqv73BZxjbri0lDmo+HQpSGRGcMHb7DRoEhK7tyun20jvr162eafjxtCLd9FFavueYae4hGhw+vvPJKM2XKFJOWluafZ8OGDXZb6/CFtn/gTYfWdHgqHF+I0OGdrMKOgmm416zwkJycnOW+o/1DdE6fjNMD9ycfBY+M6tWrZ4NiONoOCkt6bsbtsHbt2iy3Qzi+9zLca1dQOnDgQI7/blD40EcGJxydoE1VGR371wdw48aNzddff237Weh4voYk6xev+iLoi0vDRTMKrIZkpUGDBvZf9S/IyUnhwvUX+b8jW8bs3bvXftEqCGh4+emnn24DmKpHDz30kP2Cy017C1put8+xhDtZmyocoYTaPlqG+t2on4n6rKg/kKonGmWlaaq4aDsrxLz11lshl6sv8oIWbt8JNd23Px0vbQdtL1XlQq0nq34weelYfzconAgyOCHpzLOiX83y3nvv2SCgLysdZvBRkDkeOgSiX4Ua6v3II4/kqMNvVhYsWGBL5irpK3z5qKNpTuTk7Kw6z4c6X6p6EliV8R3G0uP5vX20jnXr1mWanrENvl/iCnyBclOxUZVON3VmVahVVU8dwXV4UgFS20SdT3MaFn2HinROlXAUhDQMPNxrVijPWGk5Xgr3Ga1fvz5sh3bRdlBYUKVS1Zu82Od872W4164qWZkyZbK1LBRuHFrCCUf9HdTvQIcSfIck9AWqD9jAX+wqpc+ZM+e41qUvIVVIVF7Xv6F+GarfztKlS3O0XN8XfuDydJhM1aSc0BdBxi/7cHQSQW0fjcgJpNEn2nYaXZLf20dt0P8vXrzY/7gOL2hkjr5off2W9MUq6oPio7ZrvuzS4YiM7dFILfEdXlKfEC131KhRIcNyVttWIUUhVGdBTkpKCnrMt169zxo59f777wcd2tHoLYUqBUHf4bm8on1eo9B8tL2XLFmS5ft79dVX27bqMFzGbab7Ct2B+1yow7UZqSqq7a1RaYHbUcFPf7/aF4DsoCID56nc7fvFrmP1+gLQr04NqfV9CWh4tU7G1qlTJ9uJUvOpk/AZZ5xhh8geDw1PVn8WHZJQp0edtl+dILdv326/NPRFoaGxOaEhyKo69O7d23a+VZDQsOecltDVKVX9gEaPHm1fqw6TaKhtKF27drWH5DSEVl+qzZo1s18o+pLV8GlfeMjP7aP3TNUbfanqdasvk77oVIlSVU0VCtHhQlVREhIS7PBuzacqiq8Slx1aroKh+iHptakS9fLLL9t9xvclqsN7Gn6t4b7qmKrQoUOS2r/UEViHL/V6wnnuuedsGGnevLntsKyKhrat+nFpeaL3Rh3VNd8999xjTw6o4dcKU08++aTJa9oPtK67777brkND/zXMXUO/w9H2UTu1vdV+HSZU1U7vi87OrNf2wAMP+Pc5nUZApw0477zz7GEn7VuhaIi43usLLrjAdlb2Db9W/x4NxwayJdLDpoC8HH6tE3VpSOekSZOChqjKK6+84tWtW9cOz9YJ2vT8UCf+8p0QL6feffdde3I1nQBOQ1J1IjudMGzBggWZ2pxxyG+oYcPffvutd/7559vhsjVq1PAefPBBb+7cuWFP+BbK9u3b7XBYDeXNzgnxNNRZw3C1vhIlStjtFXhCvOys83i2T+AJ8XRSN72fLVq0yHRCPN98Gsau97NatWr2JHPz5s3L9vbRSehuvPFGe2I434nuLr/8cnvivIxeeukl75xzzrHvhbblmWeead8PDZM+lp9++skOE/a9nvr163tDhw7N1BYNqz7ppJPs8Pp27dp5ixYtCpon3L7j24d37twZNF0njtPJ9UKdEO+ZZ57xatWqZV+3ThKoIc+hlpnRe++9Z09ep+Xqpr8j/a2sW7cu6KSKPXr0sK83OyfE+/zzz73WrVvbbauT3HXt2jXsCfEyvsZww/BRuBTRf7IXeQAArlIlRRUhVUF81RPgREAfGQAA4CyCDAAAcBZBBgAAOIs+MgAAwFlUZAAAgLMIMgAAwFkn/AnxdI2Qbdu22ZM35eR07QAAIHJ0dhidqFIXs/WdDLNQBhmFmLy+VgkAACgYugJ8zZo1C2+Q8V38Thsir69ZAgAA8kdKSootRARexLZQBhnf4SSFGIIMAABuOVa3EDr7AgAAZxFkAACAswgyAADAWQQZAADgLIIMAABwFkEGAAA4iyADAACcRZABAADOIsgAAABnEWQAAICzCDIAAMBZBBkAAOAsggwAAHAWQQYAADireKQb4LKkpCSza9euSDcDEVS5cmUTHx/PewAAEUKQOY4QU79BfZP6T2reviNwSmypWLPul3WEGQCIEIJMLqkSY0PM1fpZnrdvChyxy5jUWal2X6AqAwCRQZA5XgoxNfLkvQAAADlEZ18AAOAsggwAAHAWQQYAADiLIAMAAJxFkAEAAM4iyAAAAGcRZAAAgLMIMgAAwFkEGQAA4CyCDAAAcBZBBgAAOIsgAwAAnEWQAQAAziLIAAAAZxFkAACAswgyAADAWQQZAADgLIIMAABwFkEGAAA4iyADAACcFdEgs3DhQtO1a1dTo0YNU6RIETNnzhz/Y4cPHzYPPfSQOfPMM02ZMmXsPL169TLbtm2LZJMBAEAUiWiQOXDggGnWrJmZOHFipscOHjxoVqxYYYYOHWr/nTVrllm3bp254oorItJWAAAQfYpHcuWdO3e2t1Di4uLMvHnzgqZNmDDBtGjRwiQlJZn4+PgCaiUAAIhWEQ0yObVv3z57CKp8+fJh50lLS7M3n5SUlAJqHQAAKGjOdPZNTU21fWZuvPFGU65cubDzJSYm2mqO71arVq0CbScAACg4TgQZdfy9/vrrjed5ZtKkSVnOm5CQYCs3vltycnKBtRMAABSs4q6EmC1btpgvv/wyy2qMxMTE2BsAADjxFXchxGzYsMHMnz/fVKpUKdJNAgAAUSSiQWb//v1m48aN/vubNm0yK1euNBUrVjTVq1c31157rR16/dFHH5n09HSzfft2O58eL1myZARbDgAATGEPMsuWLTPt2rXz3x88eLD9t3fv3uaxxx4zH3zwgb1/1llnBT1P1Zm2bdsWcGsBAEC0iWiQURhRB95wsnoMAADAiVFLAAAAoRBkAACAswgyAADAWQQZAADgLIIMAABwFkEGAAA4iyADAACcRZABAADOIsgAAABnEWQAAICzCDIAAMBZBBkAAOAsggwAAHAWQQYAADiLIAMAAJxFkAEAAM4iyAAAAGcRZAAAgLMIMgAAwFkEGQAA4CyCDAAAcBZBBgAAOIsgAwAAnEWQAQAAziLIAAAAZxFkAACAswgyAADAWQQZAADgLIIMAABwFkEGAAA4iyADAACcRZABAADOIsgAAABnEWQAAICzCDIAAMBZBBkAAOAsggwAAHAWQQYAADiLIAMAAJxFkAEAAM4iyAAAAGcRZAAAgLMIMgAAwFkRDTILFy40Xbt2NTVq1DBFihQxc+bMCXrc8zwzbNgwU716dVOqVCnTvn17s2HDhoi1FwAARJeIBpkDBw6YZs2amYkTJ4Z8/MknnzTPPfecmTx5slmyZIkpU6aM6dixo0lNTS3wtgIAgOhTPJIr79y5s72FomrM+PHjzaOPPmquvPJKO+3111831apVs5Wb7t27F3BrAQBAtInaPjKbNm0y27dvt4eTfOLi4kzLli3N4sWLwz4vLS3NpKSkBN0AAMCJKWqDjEKMqAITSPd9j4WSmJhoA4/vVqtWrXxvKwAAiIyoDTK5lZCQYPbt2+e/JScnR7pJAACgsAWZk08+2f77559/Bk3Xfd9jocTExJhy5coF3QAAwIkpaoNMnTp1bGD54osv/NPU30Wjly644IKItg0AAESHiI5a2r9/v9m4cWNQB9+VK1eaihUrmvj4eDNo0CAzevRoU7duXRtshg4das85061bt0g2GwAARImIBplly5aZdu3a+e8PHjzY/tu7d28zdepU8+CDD9pzzfTt29fs3bvXXHjhhebTTz81sbGxEWw1AACIFhENMm3btrXniwlHZ/sdOXKkvQEAADjTRwYAAOBYCDIAAMBZBBkAAOAsggwAAHAWQQYAADiLIAMAAJxFkAEAAM4iyAAAAGcRZAAAgLMIMgAAwFkEGQAA4CyCDAAAcBZBBgAAOIsgAwAAnEWQAQAAziLIAAAAZxFkAACAswgyAADAWQQZAADgLIIMAABwFkEGAAA4iyADAACcRZABAADOIsgAAABnEWQAAICzCDIAAMBZBBkAAOAsggwAAHAWQQYAADiLIAMAAJxFkAEAAM4iyAAAAGcRZAAAgLMIMgAAwFkEGQAA4CyCDAAAcBZBBgAAOIsgAwAAnEWQAQAAziLIAAAAZxFkAACAswgyAADAWQQZAADgrKgOMunp6Wbo0KGmTp06plSpUub00083o0aNMp7nRbppAAAgChQ3UWzMmDFm0qRJ5rXXXjONGzc2y5YtM3369DFxcXFm4MCBkW4eAACIsKgOMosWLTJXXnml6dKli71fu3Zt8/bbb5ulS5dGumkAACAKRPWhpVatWpkvvvjCrF+/3t5ftWqV+eabb0znzp3DPictLc2kpKQE3QAAwIkpqisyDz/8sA0iDRo0MMWKFbN9Zh5//HFz0003hX1OYmKiGTFiRIG2EwAAREZUV2Teeecd89Zbb5lp06aZFStW2L4yTz/9tP03nISEBLNv3z7/LTk5uUDbDAAACk5UV2SGDBliqzLdu3e3988880yzZcsWW3Xp3bt3yOfExMTYGwAAOPFFdUXm4MGDpmjR4CbqENPRo0cj1iYAABA9oroi07VrV9snJj4+3g6//uGHH8zYsWPNrbfeGummAQCAKBDVQeb555+3J8S75557zI4dO0yNGjXMnXfeaYYNGxbppgEAgCgQ1UGmbNmyZvz48fYGAADgVB8ZAACArBBkAACAswgyAADAWQQZAADgLIIMAABwFkEGAAA4iyADAAAKV5A57bTTzO7duzNN37t3r30MAAAgaoPM5s2bTXp6eqbpaWlpZuvWrXnRLgAAgLw9s+8HH3zg//+5c+eauLg4/30Fmy+++MLUrl07J4sEAAAomCDTrVs3+2+RIkVM7969gx4rUaKEDTHPPPNM7lsDAACQX0Hm6NGj9t86deqY77//3lSuXDknTwcAAIj8RSM3bdrE2wAAANy9+rX6w+i2Y8cOf6XG59VXX82LtgEAAOR9kBkxYoQZOXKkOffcc0316tVtnxkAAAAngszkyZPN1KlTzc0335z3LQIAAMjP88gcOnTItGrVKjdPBQAAiGyQuf322820adPyrhUAAAAFdWgpNTXVvPTSS+bzzz83TZs2teeQCTR27NjcLBYAACD/g8yPP/5ozjrrLPv/P/30U9BjdPwFAABRHWTmz5+f9y0BAAAoiD4yAAAAzlZk2rVrl+UhpC+//PJ42gQAAJB/QcbXP8bn8OHDZuXKlba/TMaLSQIAAERVkBk3blzI6Y899pjZv3//8bYJAACg4PvI9OzZk+ssAQAAN4PM4sWLTWxsbF4uEgAAIG8PLV199dVB9z3PM3/88YdZtmyZGTp0aG4WCQAAUDBBJi4uLuh+0aJFTf369e0VsTt06JCbRQIAABRMkJkyZUpungYAABD5IOOzfPlys3btWvv/jRs3NmeffXZetQsAACB/gsyOHTtM9+7dzYIFC0z58uXttL1799oT5U2fPt1UqVIlN4sFAADI/1FLAwYMMH///bdZs2aN+euvv+xNJ8NLSUkxAwcOzM0iAQAACqYi8+mnn5rPP//cNGzY0D+tUaNGZuLEiXT2BQAA0V2ROXr0qClRokSm6ZqmxwAAAKI2yFx88cXm3nvvNdu2bfNP27p1q7nvvvvMJZdckpftAwAAyNsgM2HCBNsfpnbt2ub000+3tzp16thpzz//fG4WCQAAUDB9ZGrVqmVWrFhh+8n88ssvdpr6y7Rv3z43iwMAAMj/isyXX35pO/Wq8lKkSBFz6aWX2hFMup133nn2XDJff/117loCAACQn0Fm/Pjx5o477jDlypULedmCO++804wdOzanbQAAAMj/ILNq1SrTqVOnsI/rOks62y8AAEDUBZk///wz5LBrn+LFi5udO3fmRbsAAADyNsiccsop9gy+4fz444+mevXqOVkkAABAwQSZyy67zAwdOtSkpqZmeuyff/4xw4cPN5dffrnJSzo/Tc+ePU2lSpVMqVKlzJlnnmmWLVuWp+sAAACFYPj1o48+ambNmmXq1atn+vfvb+rXr2+nawi2Lk+Qnp5u/v3vf+dZ4/bs2WNat25tL0b5ySef2ItRbtiwwVSoUCHP1gEAAApJkKlWrZpZtGiRufvuu01CQoLxPM9O11Dsjh072jCjefLKmDFj7DlrpkyZ4p+mE+8BAADk6oR4p556qvn4449ttWTjxo02zNStWzdfqiQffPCBDUjXXXed+eqrr2wfnXvuuccOAQ8nLS3N3nx0zhsAAHBiytUlCkTBRSfBa9GiRb4d6vntt9/MpEmTbFCaO3eurQQNHDjQvPbaa2Gfk5iYaM9p47upogMAAE5MuQ4yBUFX0m7evLl54oknzNlnn2369u1rqzGTJ08O+xwd8tq3b5//lpycXKBtBgAABSeqg4yGcuuSCIF0TaekpKSwz4mJibFnHg68AQCAE1NUBxmNWFq3bl3QtPXr19t+OgAAAFEdZO677z7z3Xff2UNL6lg8bdo089JLL5l+/fpFumkAACAKRHWQUWfi2bNnm7fffts0adLEjBo1yl648qabbop00wAAgIvDrwuazhSc12cLBgAAJ4aorsgAAABkhSADAACcRZABAADOIsgAAABnEWQAAICzCDIAAMBZBBkAAOAsggwAAHAWQQYAADiLIAMAAJxFkAEAAM4iyAAAAGcRZAAAgLMIMgAAwFkEGQAA4CyCDAAAcBZBBgAAOIsgAwAAnEWQAQAAzioe6QYAyL2kpCSza9cuNmEhVrlyZRMfHx/pZgARQ5ABHA4xDRvUNwf/SY10UxBBpUvFmrW/rCPMoNAiyACOUiVGIebNe4xpWCPSrUEkrN1mTM8XUu2+QFUGhRVBBnCcQkzzOpFuBQBEBp19AQCAswgyAADAWQQZAADgLIIMAABwFkEGAAA4iyADAACcRZABAADOIsgAAABnEWQAAICzCDIAAMBZBBkAAOAsggwAAHAWQQYAADiLIAMAAJxFkAEAAM4iyAAAAGcRZAAAgLMIMgAAwFkEGQAA4CyCDAAAcJZTQeY///mPKVKkiBk0aFCkmwIAAKKAM0Hm+++/Ny+++KJp2rRppJsCAACihBNBZv/+/eamm24yL7/8sqlQoUKkmwMAAKKEE0GmX79+pkuXLqZ9+/bHnDctLc2kpKQE3QAAwImpuIly06dPNytWrLCHlrIjMTHRjBgxIt/bBQAAIi+qKzLJycnm3nvvNW+99ZaJjY3N1nMSEhLMvn37/DctAwAAnJiiuiKzfPlys2PHDtO8eXP/tPT0dLNw4UIzYcIEexipWLFiQc+JiYmxNwAAcOKL6iBzySWXmNWrVwdN69Onj2nQoIF56KGHMoUYAABQuER1kClbtqxp0qRJ0LQyZcqYSpUqZZoOAAAKn6juIwMAAOBsRSaUBQsWRLoJAAAgSlCRAQAAziLIAAAAZxFkAACAswgyAADAWQQZAADgLIIMAABwFkEGAAA4iyADAACcRZABAADOIsgAAABnEWQAAICzCDIAAMBZBBkAAOAsggwAAHAWQQYAADiLIAMAAJxFkAEAAM4iyAAAAGcRZAAAgLMIMgAAwFkEGQAA4CyCDAAAcBZBBgAAOIsgAwAAnEWQAQAAziLIAAAAZxFkAACAswgyAADAWQQZAADgLIIMAABwFkEGAAA4iyADAACcRZABAADOIsgAAABnEWQAAICzCDIAAMBZBBkAAOAsggwAAHAWQQYAADiLIAMAAJxFkAEAAM4iyAAAAGcRZAAAgLOiOsgkJiaa8847z5QtW9ZUrVrVdOvWzaxbty7SzQIAAFEiqoPMV199Zfr162e+++47M2/ePHP48GHToUMHc+DAgUg3DQAARIHiJop9+umnQfenTp1qKzPLly83bdq0iVi7AABAdIjqikxG+/bts/9WrFgx0k0BAABRIKorMoGOHj1qBg0aZFq3bm2aNGkSdr60tDR780lJSSmgFgJA4ZSUlGR27doV6WYgQipXrmzi4+MjtXp3goz6yvz000/mm2++OWYH4REjRhRYuwCgsIeYhvXrm4OpqZFuCiKkdGysWbtuXcTCjBNBpn///uajjz4yCxcuNDVr1sxy3oSEBDN48OCgikytWrUKoJUAUPioEqMQ86YxpmGkG4MCt9YY0zM11e4HBJkQPM8zAwYMMLNnzzYLFiwwderUOeZGjYmJsTcAQMFRiGnOBkcEFI/2w0nTpk0z77//vj2XzPbt2+30uLg4U6pUqUg3DwAARFhUj1qaNGmSHanUtm1bU716df9txowZkW4aAACIAlF/aAkAAMDJigwAAEBWCDIAAMBZBBkAAOAsggwAAHAWQQYAADiLIAMAAJxFkAEAAM4iyAAAAGcRZAAAgLMIMgAAwFkEGQAA4CyCDAAAcBZBBgAAOIsgAwAAnEWQAQAAziLIAAAAZxFkAACAswgyAADAWQQZAADgLIIMAABwFkEGAAA4iyADAACcRZABAADOIsgAAABnEWQAAICzCDIAAMBZBBkAAOAsggwAAHAWQQYAADiLIAMAAJxFkAEAAM4iyAAAAGcRZAAAgLMIMgAAwFkEGQAA4CyCDAAAcBZBBgAAOIsgAwAAnEWQAQAAziLIAAAAZxFkAACAswgyAADAWQQZAADgLCeCzMSJE03t2rVNbGysadmypVm6dGmkmwQAAKJA1AeZGTNmmMGDB5vhw4ebFStWmGbNmpmOHTuaHTt2RLppAAAgwqI+yIwdO9bccccdpk+fPqZRo0Zm8uTJpnTp0ubVV1+NdNMAAECERXWQOXTokFm+fLlp3769f1rRokXt/cWLF0e0bQAAIPKKmyi2a9cuk56ebqpVqxY0Xfd/+eWXkM9JS0uzN599+/bZf1NSUvK0bfv37/+///lDiStPFw1X7P7/+0Je71852QeXbzZmf2qBrx5RYN32yO6DvnXLcv1/RFqASFpn8m8f9C3P8zx3g0xuJCYmmhEjRmSaXqtWrfxZ4Yf5s1i446KLLoro+vv+N6KrRxSI9D4ofSPdAJyw++Dff/9t4uLi3AwylStXNsWKFTN//vln0HTdP/nkk0M+JyEhwXYO9jl69Kj566+/TKVKlUyRIkXyvc2FidKyAmJycrIpV65cpJuDQoh9EJHGPph/VIlRiKlRo0aW80V1kClZsqQ555xzzBdffGG6devmDya6379//5DPiYmJsbdA5cuXL5D2FlYKMQQZsA+iMONzMH9kVYlxIsiIqiu9e/c25557rmnRooUZP368OXDggB3FBAAACreoDzI33HCD2blzpxk2bJjZvn27Oeuss8ynn36aqQMwAAAofKI+yIgOI4U7lITI0SE8nagw46E8gH0QhQWfg5FXxDvWuCYAAIAoFdUnxAMAAMgKQQYAADiLIAMAAJxFkEGe2bx5sz3p4MqVKyOyVdu2bWsGDRoUkXUDQDSZOnVqoTmHGkHGQRqGPmDAAHPaaafZHvM6u27Xrl3tiQJdQ/hwyy233OI/OWVuPfbYYzbw6la8eHFTu3Ztc9999/3/65cBYfY97TP/+c9/gqbPmTMnx2dt1z6nc5Idy6pVq8wVV1xhqlatamJjY+3zdEqQHTt22McXLFhg17137948ec8KU/jISwQZB6seOtvxl19+aZ566imzevVqe16ddu3amX79+kW6eUC2NG7c2Pzxxx92fx4zZox56aWXzP333x9y3kOH8u+qrPm5bOQ9hQntL3v27Mn3zavzl11yySWmYsWKZu7cuWbt2rVmypQp9nT5OilrXjt8+HCeL7PQ0PBruKNz587eKaec4u3fvz/TY3v27LH/btmyxbviiiu8MmXKeGXLlvWuu+46b/v27f75hg8f7jVr1sx75ZVXvFq1atn57r77bu/IkSPemDFjvGrVqnlVqlTxRo8eHbR87S4vvPCC16lTJy82NtarU6eON3PmTP/jmzZtsvP88MMP/mmrV6+282sdVatW9Xr27Ont3LnTPta7d287f+BNyzjW80Sv/+abb7aPn3zyyd7TTz/tXXTRRd69996bp9sbwfSeXXnllf772uYDBgzwhgwZ4lWoUMHuO9q/suLb/wLdcccd9n0MfPzll1/2ateu7RUpUiRb+7WMGjXK7rsnnXSSd9ttt3kPPfRQ0Lp87de+Xb16dbt8SUpKssuLi4uzr0Pr8e2LMn/+fO+8887zSpcubedp1aqVt3nzZvvYypUrvbZt29p1ql3Nmzf3vv/+e3adPKb37vLLL/caNGhg9zef2bNn28+OQO+++67XqFEjr2TJkt6pp55qPx8C99mMnzuhaLnFixf3Dh8+HPJx3+dd4E1tlE8++cRr3bq13VcqVqzodenSxdu4cWOm506fPt1r06aNFxMT402ZMiXT8nx/S6mpqd7999/v1ahRw+6DLVq0sPtkoClTptjP81KlSnndunWzr1nrLwyoyDhEF79U9UWVlzJlymR6XCVJXYvqyiuvtPN+9dVXZt68eea3336z5dBAv/76q/nkk0/s8t5++23zyiuvmC5dupjff//dPk+/eh599FGzZMmSoOcNHTrUXHPNNbbketNNN5nu3bvbXyqhqNx68cUXm7PPPtssW7bMrksX/Lz++uvt488++6y54IILzB133GF/neumw2THep4MGTLEtvP99983n332mS3xrlixIo+2NHLitddes/uj9pUnn3zSjBw50u53OVGqVKmg6sjGjRvNe++9Z2bNmmX7XGVnv37rrbfM448/bvfd5cuXm/j4eDNp0qRM69Ih2HXr1tllfPTRR/aXcMeOHU3ZsmXN119/bb799ltz0kknmU6dOtk2HTlyxB5O09V9f/zxR7N48WLTt29f/+EM/R3UrFnTfP/993a9Dz/8sClRogQ7UT7QRYSfeOIJ8/zzz9vPqlD0HuizQp9NqljrUKY+t3TYRrRP6f3Sfur73AlFFybWez979mx78cKM9FmlfVS0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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 50 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T17:00:46.031812Z", + "start_time": "2025-11-13T17:00:45.938698Z" + } + }, + "cell_type": "code", + "source": [ + "# location\n", + "\n", + "status = df.groupby('Location').size()\n", + "\n", + "plt.bar(status.index,status.values,edgecolor='black')\n", + "\n", + "plt.xlabel('Location')\n", + "plt.ylabel('Count')\n", + "plt.title('Bar Chart of Location of Students')\n", + "plt.show()" + ], + "id": "b92397af1fcca133", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 51 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_15.9 Pie Chart_**", + "id": "6409da5c2c4a9f08" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T17:12:32.438951Z", + "start_time": "2025-11-13T17:12:32.378978Z" + } + }, + "cell_type": "code", + "source": [ + "status = df.groupby('CompletionStatus').size()\n", + "plt.pie(status,labels=status.index,autopct='%1.1f%%',explode=(0.1,0,0), shadow=True)\n", + "plt.show()" + ], + "id": "f3e2697c09b139d3", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 55 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "", + "id": "cfc77fda6a2af179" + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_quize_**", + "id": "fca87fb8f8ce5573" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T17:22:04.692888Z", + "start_time": "2025-11-13T17:22:04.599933Z" + } + }, + "cell_type": "code", + "source": [ + "import matplotlib.pyplot as plt\n", + "\n", + "x = [1, 2, 3, 4]\n", + "y = [10, 20, 25, 30]\n", + "\n", + "plt.plot(x, y) # লাইন গ্রাফ আঁকে\n", + "plt.show() # দেখায়" + ], + "id": "93c09e7fea5a5836", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 56 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T17:23:28.411061Z", + "start_time": "2025-11-13T17:23:28.322351Z" + } + }, + "cell_type": "code", + "source": [ + "import matplotlib.pyplot as plt\n", + "\n", + "x = [1, 2, 3, 4, 5]\n", + "y = [10, 20, 25, 15, 30]\n", + "\n", + "plt.scatter(x, y) # স্ক্যাটার প্লট (বিন্দু)\n", + "plt.show()" + ], + "id": "4887dd8b74b7c77e", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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EhMTTfgBqkNDycRV+yW3wPPPUF5BsdlOaAEA/+JytHmjmn744QfT0qLB5N5775WCggJp1aqVrF69Wh5++GFzzLfffiu33nqr7N69W+66666rrqE/PiYmRqZNmybTp0832/Q6bdq0kdTUVBk1atQ176OwsFAiIiLMeeHh4dUtDgKoG0hbUiqGFTftEIqKCJVdz99H9xAA1CNfPr9vaNCt/gAVGRlpXvft22daXbRLx61r167Srl07E1i8ycnJkby8PI9z9Obj4+MrPaekpMQUsvwCuOmYlcrCitKErvv1OACAf6h2YCktLZUpU6bI3XffLT169DDbNHg0adJEWrRo4XGstpboPm/c2/WY6z1Hx9JoqHEvsbGx1S0GApAOsK3J4wAAfhxYdCzLoUOHZM2aNVLXZs6caVp33MuJEyfq/B5gL50NVJPHAQD8NLBMnjxZNm7cKNu3b5e2bduWbY+KipJLly5Jfn6+x/E6S0j3eePeXnEmUVXnhISEmL6u8gvgplOXoyNCzVgVb3S77tfjAAABGFh0gKyGlbS0NNm2bZvExcV57O/du7c0btxYtm7dWrZNpz0fP35c+vbt6/Waeg0NJuXP0TEpOluosnOAquhzVmYP62beVwwt7nXdz/NYACBAA4t2A61atcrMAtJnsegYE10uXrxo9ut4kgkTJsjUqVNN64sOwn3sscdM8Cg/Q0gH4mroUS6Xy4yFmT9/vmzYsEEOHjwoY8eONTOH9DkvQHUM6REtKY/eYWYDlafrul33AwAC9Em3KSkp5rV///4e21esWCHjx4837xctWiRBQUHmgXE6m0efp/L66697HK+tLu4ZRmrGjBnmWS5PPvmk6U7q16+fpKenS2goYwxQfRpKBnWL4km3ANDQn8NiC57DAgCA/6mz57AAAADUBQILAACwHoEFAABYj8ACAACsR2ABAADWI7AAAADrEVgAAID1CCwAAMB6BBYAAGA9AgsAALAegQUAAFiPwAIAAKxHYAEAANYjsAAAAOsRWAAAgPUILAAAwHoEFgAAYD0CCwAAsB6BBQAAWI/AAgAArEdgAQAA1iOwAAAA6xFYAACA9QgsAADAegQWAABgPQILAACwHoEFAABYj8ACAACsR2ABAADWI7AAAADrEVgAAEDgBZadO3fKsGHDJCYmRlwul6xfv95jv27ztrzyyiuVXnPOnDlX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BR8I9edL+fyt/nQw8ZkzZzxaYLXrS/+sLlmyxLTUBgcH+20dVqd8/laHFbVo0UI6d+5c6f3WV/0xhsVHmpq3bt3qsU2Td1X90f5O/2WoXUU20rHE+mGuTezbtm2TuLi4gKrD6pSvIv3LVbskbK3Dyrq/9IPA3+uvOuXzt/pLSEgw96d/T7gX7VLWcRD63tuHuT/VYXXK52916G38jbasV3a/9VZ/TgOnI7+//PJLs+ivY+HCheb9999/b/a/8MILzu9///uy47/77jvnpptucp577jnnm2++cZYuXeoEBwc76enpTiCUb9GiRc769eudI0eOOAcPHjQj4YOCgpwtW7Y4Npo4caIZjb9jxw4nNze3bPnpp5/KjtHyaTndPv30U6dRo0bOq6++aupQR8g3btzYlDcQyjd37lzn448/drKzs519+/Y5o0aNckJDQ52vvvrKsZHeu856ysnJcQ4cOGDWXS6X89///tfv66865fO3+vOm4iwaf69DX8vnb3U4bdo083eM/hnVuhk4cKDTsmVLMyvRpvpr8IHFPY234jJu3DjzC9JX/cNZ8ZxevXo5TZo0cTp06GCmsAVK+V5++WWnY8eO5n+uyMhIp3///s62bdscW3krmy7l60TL5y6v23vvved07tzZ1KFOU//oo4+cQCnflClTnHbt2pmytWnTxvntb3/r7N+/37HVH/7wB6d9+/bmflu1auUkJCSUfZj7e/1Vp3z+Vn/X84Hu73Xoa/n8rQ5HjhzpREdHm/v9+c9/btaPHj1qXf259D+124YDAABwYxjDAgAArEdgAQAA1iOwAAAA6xFYAACA9QgsAADAegQWAABgPQILAACwHoEFAABYj8ACAACsR2ABAADWI7AAAADrEVgAAIDY7v8AndzL6q1aO6oAAAAASUVORK5CYII=" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 57 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T17:24:11.541679Z", + "start_time": "2025-11-13T17:24:11.474163Z" + } + }, + "cell_type": "code", + "source": [ + "import matplotlib.pyplot as plt\n", + "\n", + "categories = ['A', 'B', 'C', 'D']\n", + "values = [10, 20, 15, 30]\n", + "\n", + "plt.bar(categories, values) # বার চার্ট\n", + "plt.show()" + ], + "id": "be990d56d04590a3", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 58 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T17:25:01.607238Z", + "start_time": "2025-11-13T17:25:01.500704Z" + } + }, + "cell_type": "code", + "source": [ + "import matplotlib.pyplot as plt\n", + "\n", + "data = [22, 25, 25, 27, 28, 30, 30, 30, 32, 35]\n", + "\n", + "plt.hist(data, bins=5, edgecolor='black') # হিস্টোগ্রাম\n", + "plt.xlabel(\"Age\")\n", + "plt.ylabel(\"Frequency\")\n", + "plt.title(\"Age Distribution\")\n", + "plt.show()" + ], + "id": "7f9029ac611d5b48", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 59 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T17:26:31.987599Z", + "start_time": "2025-11-13T17:26:31.916107Z" + } + }, + "cell_type": "code", + "source": [ + "import matplotlib.pyplot as plt\n", + "\n", + "# ডেটা\n", + "sizes = [30, 25, 20, 15, 10]\n", + "labels = ['A', 'B', 'C', 'D', 'E']\n", + "colors = ['#ff9999', '#66b3ff', '#99ff99', '#ffcc99', '#c2c2f0']\n", + "\n", + "plt.pie(sizes, labels=labels, colors=colors, autopct='%1.1f%%', startangle=90)\n", + "plt.title(\"Data Distribution\")\n", + "plt.axis('equal') # গোল করে\n", + "plt.show()" + ], + "id": "d6b91bb8e79228c6", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 60 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T17:26:48.954064Z", + "start_time": "2025-11-13T17:26:48.865905Z" + } + }, + "cell_type": "code", + "source": [ + "plt.plot([1,2,3], [4,5,6])\n", + "# কিছুই দেখাবে না! (শুধু মেমরিতে থাকবে)\n", + "\n", + "plt.plot([1,2,3], [4,5,6])\n", + "plt.show() # এখন দেখাবে!" + ], + "id": "4b0a89103336604b", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiwAAAGdCAYAAAAxCSikAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjcsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvTLEjVAAAAAlwSFlzAAAPYQAAD2EBqD+naQAATJtJREFUeJzt3QlYVdX+PvD3ME8CzgxO4CwqiHDOwazs6tXKX1cbLL0qDqBlNpiZZTdN065mVmaWEwg4lGWWdis1tcxKJkUUcAIcAAVxAgRk3v9nrfuHCyoKCJyB9/M8u9z7rHNYe2/gvKzv2vuoFEVRQERERKTHTHTdASIiIqJ7YWAhIiIivcfAQkRERHqPgYWIiIj0HgMLERER6T0GFiIiItJ7DCxERESk9xhYiIiISO+ZwQiUlZXh4sWLaNasGVQqla67Q0RERDUg7l1748YNuLi4wMTExPgDiwgr7du313U3iIiIqA5SU1PRrl074w8sYmSlfIft7e113R0iIiKqgZycHDngUP4+bvSBpbwMJMIKAwsREZFhqcl0Dk66JSIiIr3HwEJERER6j4GFiIiI9B4DCxEREek9BhYiIiLSewwsREREpPcYWIiIiEjvMbAQERGR3mNgISIiIuMLLBcuXMC4cePQsmVLWFtbo0+fPjh06NBdn7N//354e3vD0tISXbp0QWho6G1tPv/8c3Tq1AlWVlbQaDSIioqqbdeIiIjISNUqsFy/fh0PPPAAzM3NsXPnThw/fhwfffQRmjdvXu1zzp49i+HDh+ORRx5BbGwsZsyYgcDAQOzevbuizddff42ZM2fi3XffRUxMDDw9PTFs2DBkZmbe394RERGRUVAp4rOda+itt97CX3/9hT/++KPGX+DNN9/ETz/9hPj4+Ipto0ePRlZWFnbt2iXXxYiKr68vVq5cKdfLysrkhyG9/PLL8mvW5MOTHBwckJ2dzc8SIiIiMhC1ef+u1QjLDz/8AB8fH4waNQpt2rRBv379sG7durs+Jzw8HEOGDKmyTYyeiO1CUVERDh8+XKWNiYmJXC9vc6vCwkK5k5UXIiIiqn+lJSWICJqJ8JA3oUu1CixnzpzBqlWr0LVrV1nSmTZtGl555RWEhYVV+5yMjAy0bdu2yjaxLkLGzZs3ceXKFZSWlt6xjXjunSxevFgmsvJFjMYQERFR/bp88RxOLh0EbVow1OfW4PypWBhEYBGlGjF59t///rccXZk6dSqmTJmC1atXozHNmTNHDh+VL6mpqY369YmIiIzdsf3bYLb2QXgUxSFPscIR36Xo2N1LZ/0xq01jZ2dn9OrVq8q2nj17Ytu2bdU+x8nJCZcuXaqyTayLWpW4ysjU1FQud2ojnnsn4mojsRAREVH9KikuQnTI6/C7uEGuJ5u6w2J0KHy6ekKXajXCIq4QOnXqVJVtp0+fRseOHat9jp+fH/bt21dl2549e+R2wcLCAv3796/SRozkiPXyNkRERNTwMlKTkLj04YqwEtnqKbjO+hPtdRxWah1YXnvtNURERMiSUFJSEr788kusXbsW06dPr1Ku8ff3r1h/4YUX5NyX2bNn4+TJk/jiiy/wzTffyNcqJy5pFpN3xVyYEydOyLkxeXl5mDRpUn3tJxEREd1F7L4tsAp+GD2Lj+OGYo3D6uXQvBQCK2tb6INalYTEpcfff/+9DCXvvfce3NzcsHz5cowdO7aiTXp6OlJSUirWRRtxWbMIKJ9++inatWuHoKAgeaVQueeeew6XL1/GvHnz5ERbLy8vecnzrRNxiYiIqH4VFRYgZv0MaC99JdcTTbvAZuwG9Hf3gMHeh0Vf8T4sREREtXfx3Cnc2DQe3Uv+O90jos2z6Df5U1ha2UDf3r9rNcJCRERExuHIL5vQ+eBsuCAPObBF8oCl0A4dB33FwEJERNSEFBbk40jwK9Be3irXT5l1R7NxG9GvU3foMwYWIiKiJuLCmQTkb/aHtjRJrke0HQPvycthYWkFfcfAQkRE1AQc/jkE3SLnwFV1E1mww7kHP4J28GgYCgYWIiIiI1ZwMw9Hg16E5up2QAWcMO+F5v4b4dW+CwwJAwsREZGRSk08iqItE6ApPSvXw10mwHfSMpiZW8DQMLAQEREZoUP/WYOeh+bBVlWAa7BH2qDl8Bv0NAwVAwsREZERuZl3A3FBL0B9/UdZAkqw6IM2Ezehr0snGDIGFiIiIiNx/mQMyr6ZCHXZeZQpKkR2CICv/2KDLAHdioGFiIjICERvXwmPI+/BRlWIK3BExpAV8HtwBIwFAwsREZEBy8/NRsK6qfDN3iVLQPGWXnCatBG9nTrAmDCwEBERGaizx6Nh8u0k+JalolRRIarT81CPfx+mZsb39m58e0RERGTklLIyRH+/An2PLYKVqhiZaIHLwz6H34DHYawYWIiIiAxIbs51nAwKhDpnrywBHbPyRbvJYfBo4wpjxsBCRERkIJLjImDx3ST4KBdRopgguvNL0IydDxNTUxg7BhYiIiIDKAFFffsRvBI+gKWqGJfQEtcfXw0/zVA0FQwsREREeiwn6yoSgyZDk7tfloBirbXoFBCGHq2c0JQwsBAREempxNg/YLMjAP2VSyhWTHG426vQjJkLlYkJmhoGFiIiIj0sAUV+vQTeJz+ChaoE6WiNnCfWQuvzNzRVDCxERER6JPvaZZwJnght3p+yBHTE5gG4B4bBuUVrNGUMLERERHri1KFf0eyn59FPyUSRYoqYHq9D89ycJlkCuhUDCxERkT6UgL5aiP6nP4W5qhQXVG2RPyII2n4P6bpreoOBhYiISIeyrmTgXPAEaG9GyBJQjN3D6BIYAlfHljwvlTCwEBER6cjJqD1w/PkFeOEKChVzxHq8CfUzr7MEdAcMLERERI2srLQUkZvnwzd5JcxUZUhVuaDoqWBo+g7guagGAwsREVEjupZ5AWnrJ8CvIFqWgA7ZD0GPwCDY2TfnebgLBhYiIqJGcjx8J1rtfhF9cQ0FijmO9X0Hvk++whJQDTCwEBERNbDSkhJEbfwX1OfWwFSl4LxJO5Q9Ewp1L18e+xpiYCEiImpAVzJSkREyDn6FsbIEFO3wKDymrIWNnQOPey0wsBARETWQ+D92wGnfK+iNLOQrlkjoNw++I1/i8a4DBhYiIqKGKAGFvQlNSjBMVArOmnSEyagQ+Pbsz2NdR7W61+/8+fOhUqmqLD169Ki2/aBBg25rL5bhw4dXtJk4ceJtjz/66KN13R8iIiKdunzxHE4ufQR+qUEyrEQ1/z84vf4XOjKsNO4Ii4eHB/bu3fu/FzCr/iW+++47FBUVVaxfvXoVnp6eGDVqVJV2IqCEhIRUrFtaWta2W0RERDp3bP82tNs/Ax7IQZ5ihRM+70H9xPO67lbTDCwioDg5OdWobYsWLaqsb9myBTY2NrcFFhFQavqaRERE+qakuAjRIbPgdzFMriebusFidBh8unrqumtGo9Yf/5iYmAgXFxe4u7tj7NixSElJqfFzg4ODMXr0aNja2lbZvn//frRp0wbdu3fHtGnT5EjM3RQWFiInJ6fKQkREpAuX0pKRuHRQRViJbDkSrrP+QnuGlXqlUhRFqWnjnTt3Ijc3VwaL9PR0LFiwABcuXEB8fDyaNWt21+dGRUVBo9EgMjISarX6tlEXNzc3JCcn4+2334adnR3Cw8Nhampa7Vwa8bVvlZ2dDXt7+5ruDhER0X05+usWdDgwC81xAzcUa5zWvI/+jwfwqNaQGHBwcHCo0ft3rQLLrbKystCxY0d8/PHHCAi4+wl6/vnnZQg5duzYXdudOXMGnTt3lvNkBg8eXO0Ii1gq73D79u0ZWIiIqFEUFxXi8PrXoM3YLNcTTbvAZuwGuLp78Aw0UGCpdUmoMkdHR3Tr1g1JSUl3bZeXlydHUu4VagRRamrVqtVdX1PMeRE7VnkhIiJqDOnnT+HM0gcrwkpE61Ho8MYfDCsN7L4CiygPiTKOs7PzXdtt3bpVjoiMGzfunq+ZlpYm57Dc6zWJiIga25FfNsE25BF0LzmFHNgixm8ltNODYGllw5OhT4Fl1qxZ+P3333Hu3DkcPHgQTz75pJxnMmbMGPm4v78/5syZc8fJtiNHjkTLli1vCzxvvPEGIiIi5Gvu27cPI0aMQJcuXTBs2LD73TciIqJ6UVRYgIgvpqDfwemwRx5Om3VD7sTf4D1sPI+wPl7WLEY/RDgRIyCtW7fGwIEDZdgQ/xbEFUMmJlUz0KlTp/Dnn3/il19+ue31RNgRc1rCwsLkfBhx9dHQoUOxcOFC3ouFiIj0woUzJ5D/5XhoSxLlekTbMfCevBwWlla67lqTcl+Tbg1x0g4REVFNxewMQdeIOWimuoks2OHcwGXwGvLfqgI17vs3P0uIiIjoFgU383A0+CVornwnP2H5hHkvNPffCK/2XXisdISBhYiIqJLUpDgUfeUPTekZuR7u4g+fictgbsGPjdElBhYiIqL/79CPa9Ezei5sVQW4DnukPvwJ/B55hsdHDzCwEBFRk1eQn4tjQS9Afe0/sgR03KIPWk3YiL6ubk3+2OgLBhYiImrSzp+KRdnX/lCXnUeZokJU+8nwmbAEZuYWuu4aVcLAQkRETVb09s/hcWQBbFSFuAJHpA9eAe1DI3TdLboDBhYiImpy8nOzkRD0PHyzdsoSULylF5wmbUQfpw667hpVg4GFiIialHMnDgFbJ8K3LBWlogTU6Xmox78PUzO+Jeoznh0iImoSlLIyRH+/An2OvQ9rVREuozkyh34OvweG67prVAMMLEREZPRyc67jZFAg1Dl7ZQnomFV/uE7aAI+27XTdNaohBhYiIjJqyXERsPhuEnyUiyhRTBDt/iI0496DiamprrtGtcDAQkRERlsCitr2Mbzil8BSVYxLaIlrj6+Cn2aYrrtGdcDAQkRERudG9jWcXjcJmtz9sgR01FqDjgEb0LOVk667RnXEwEJEREYlMfYPWO8IRH8lA8WKKQ53fQXqMXNZAjJwDCxERGQ0JaDIr5fA++RHsFCVIB2tkf3EGmh9Buu6a1QPGFiIiMjgZV+/guSgidDm/SFLQEdsHoB7YBicW7TWddeonjCwEBGRQTsdsx92/5kCbyUTRYopYnq8Ds1zc6AyMdF116geMbAQEZHhloC+Woj+pz+FuaoUF1RtkT8iCNp+D+m6a9QAGFiIiMjgZF+9hLPBE6DND5cloBi7h9AlMBSuji113TVqIAwsRERkUE5G7YHjzy/AC1dQqJgj1mM21M/MYgnIyDGwEBGRQSgrLUXU5vnwSV4JM1UZUlUuKHoqGJq+A3TdNWoEDCxERKT3rmVeQOr6CdAWRMsS0KFmg9FjSjDs7JvrumvUSBhYiIhIrx0P34lWu1+EJ66hQDHHsb7/gu+Tr7IE1MQwsBARkV4qLSlB1MZ/QX1uDUxVCs6btEPZ0+uh9tDoumukAwwsRESkd65kpCI9ZDz8Co/IElC0wzD0ClwL22aOuu4a6QgDCxER6ZX4P3+A096X0QdZyFcsEe81F+onX9Z1t0jHGFiIiEh/SkBhb0KTEgwTlYJzJh2gGhUKdc/+uu4a6QEGFiIi0rnLF88hM3Q8/IqOyRJQVPPh6BO4Bta2zXTdNdITDCxERKRTcb9/B9ffXoUHcmQJ6Hj/96D+xws8K1QFAwsREelESXERokPfgCYtTJaAkk3dYDE6DD5dPXlG6DYMLERE1OgupSXjWth4+BUnyBJQZMuR8Az8AlbWtjwbdEe1+uzt+fPnQ6VSVVl69OhRbfvQ0NDb2ltZWVVpoygK5s2bB2dnZ1hbW2PIkCFITEysTbeIiMiAHP31G1gEPYyexQnIVaxxWP0xNC+HMaxQ/Y6weHh4YO/evf97AbO7v4S9vT1OnTpVsS5CS2VLly7FihUrEBYWBjc3N8ydOxfDhg3D8ePHbws3RERkuIqLCnF4/WvQZmyW60mmnWE9diP6u3voumtkjIFFBBQnJ6catxcBpbr2YnRl+fLleOeddzBixAi5bcOGDWjbti22b9+O0aNH17Z7RESkh9LPn0LORn9oS07K9cjWz8Ar4DNYWtnoumtkjCUhQZRrXFxc4O7ujrFjxyIlJeWu7XNzc9GxY0e0b99ehpKEhISKx86ePYuMjAxZBirn4OAAjUaD8PDwal+zsLAQOTk5VRYiItJPR37ZBJuQR9C95CRyYIMjfiugmR7MsEINF1hEkBDzUnbt2oVVq1bJwPHggw/ixo0bd2zfvXt3rF+/Hjt27MCmTZtQVlaGAQMGIC0tTT4uwoogRlQqE+vlj93J4sWLZbApX0QYIiIi/VJUWICIL6ag38HpcEAeTpt1Q+6E39Bv2ARdd40MkEoRdZk6ysrKkqMnH3/8MQICAu7Zvri4GD179sSYMWOwcOFCHDx4EA888AAuXrwoJ92We/bZZ2Up6euvv652hEUs5cQIiwgt2dnZcs4MERHp1oUzJ5D/5Xh0LfnvRRQRbcfAe/JyWFhybiKhyvu3GHioyfv3fV3W7OjoiG7duiEpKalG7c3NzdGvX7+K9uVzWy5dulQlsIh1Ly+val/H0tJSLkREpH9idoWia/hbcFXdRDZscXbgR9AOGaPrblFTm8Ny6/yU5OTkKmHjbkpLSxEXF1fRXlwVJELLvn37qqStyMhI+Pn53U/XiIiokRXczEPkyknwjngVzVQ3cdK8F25O/h1eDCtUD2o1wjJr1iw88cQTsgwkyjjvvvsuTE1NZYlH8Pf3h6urq5xjIrz33nvQarXo0qWLLB99+OGHOH/+PAIDA+XjouwzY8YMLFq0CF27dq24rFlM6h05cmR97B8RETWC1KQ4FH41AZrSZLke7uwPn0nLYG7B0XDSQWARk2VFOLl69Spat26NgQMHIiIiQv5bEFcMmZj8b9Dm+vXrmDJlipxA27x5c/Tv31/OW+nVq1dFm9mzZyMvLw9Tp06VoUa8ppjUy3uwEBEZhkM/rUOPqLmwU93Eddgj9eFP4PfIM7ruFhmZ+5p0a4iTdoiIqH4U5OfiaNA0aK79INePW/RBqwkb0cbVjYeY9GvSLRERNU3nT8Wi7OsJ0JSdQ5miQmT7SfCd8AHMzC103TUyUgwsRERUK9E7voBHzHzYqApxFQ64OPgz+D3037uVEzUUBhYiIqqR/NxsxAe9AHXWz/ITluMtveA0YQP6uHTkEaQGx8BCRET3dO7EIWDrRKjLUlGqqBDVcSrU/v+G6T0+AJeovvA7jYiIqqWUleHQ9s/Q++giWKuKcBnNkTn0c/g9MJxHjRoVAwsREd1R3o0snFgXCN+cPbIEdMyqP1wnbYBH23Y8YtToGFiIiOg2Z+IjYb5tInyUiyhRTBDtPg2acQthYmrKo0U6wcBCRERVSkBR2z6GV/wSWKqKkYkWuPr4avhphvEokU4xsBARkXQj+xpOB02G5sZvsgR01FqDDpPD0LN1zT4vjqghMbAQERGSjv4Jq+2B6K+ko1gxxeGuL0M9Zh5LQKQ3GFiIiJp6CeibD9DvxDJYqEqQgdbIemINtD6Ddd01oioYWIiImqjs61eQHDQRmrw/ZAnoiM0AuAeEwqllW113jeg2DCxERE3Q6Zj9sPvPFHgrmShSTBHTfSY0o9+GysRE110juiMGFiKiJlYCivxqEbxPL4eFqhQXVW2R+4910Ho/rOuuEd0VAwsRURORffUSzgRPhDb/oCwBxdg+hM6BIXBp3krXXSO6JwYWIqIm4GT0Xjj+9Dz64QqKFDMc6TUb6lFvsAREBoOBhYjIiJWVliJq83z4JK+EmaoMaSpnFDwZDI3nA7ruGlGtMLAQERmp65fTkRI8HtqCaFkCOtRsMHpMCYadfXNdd42o1hhYiIiM0PGIXWi1axo8cQ0FijmO9Xkbvk/NYAmIDBYDCxGRkZWAIjf+C+qzq2GqUpBi4oqSp0Kg7q3RddeI7gsDCxGRkbiSkYr0EH/4FcbIElC0w1D0ClwH22aOuu4a0X1jYCEiMgLxf/4Ap70vow+ycFOxQJzXPKiffFnX3SKqNwwsREQGrLSkBFFhb0GTEgQTlYJzJh2gGhUKdc/+uu4aUb1iYCEiMlBXLp7HpdDx8Cs6KktAUY6Po8+UtbC2babrrhHVOwYWIiIDFHfge7j8+io8kI18xRLH+y+A+h/TdN0togbDwEJEZEBKiosQHTobmrRQWQI6Y9IJZqPD4NPNS9ddI2pQDCxERAbiUloyrob5w684XpaAIluOgGfAF7CysdN114gaHAMLEZEBOPrrN+hwYCZ64QZyFWucUi+CZnigrrtF1GgYWIiI9FhxUSEOr38N2ozNcj3JtDOsxmxA/y69dd01okbFwEJEpKcyUhKRtWE8tCUn5Hpk62fgFfAZLK1sdN01okbHwEJEpIdi93wJt79mwQl5yIENkv2WQDNsgq67RaQzJrVpPH/+fKhUqipLjx49qm2/bt06PPjgg2jevLlchgwZgqioqCptJk6ceNtrPvroo3XfIyIiA1ZUWICIL6bC669pcEAeTpt1Q+6E39CPYYWauFqPsHh4eGDv3r3/ewGz6l9i//79GDNmDAYMGAArKyt88MEHGDp0KBISEuDq6lrRTgSUkJCQinVLS8vadouIyOBdPHsSuZtFCei0XI9oOxrekz+FhaWVrrtGZHiBRQQUJyenGrXdvPm/k8TKBQUFYdu2bdi3bx/8/f2rBJSaviYRkTE6sjsMncPfggvykQ1bnH1gGbR//6euu0VkmCUhITExES4uLnB3d8fYsWORkpJS4+fm5+ejuLgYLVq0uG0kpk2bNujevTumTZuGq1ev3vV1CgsLkZOTU2UhIjJEBTfzELlyMvqFvwJ75OOkWU/cnPw7vBhWiKpQKYqioIZ27tyJ3NxcGSzS09OxYMECXLhwAfHx8WjW7N6fXfHiiy9i9+7dsiQkSkTCli1bYGNjAzc3NyQnJ+Ptt9+GnZ0dwsPDYWpqWu1cGvG1b5WdnQ17e/ua7g4RkU6lJcWj4Ct/dClNluvhzuPgM+ljmFuwLE5NQ05ODhwcHGr0/l2rwHKrrKwsdOzYER9//DECAgLu2nbJkiVYunSpHE3p27dvte3OnDmDzp07y3kygwcPrnaERSyVd7h9+/YMLERkMA7/FITuUe/ATnUT12GPlIc/hucjo3TdLSK9DSz3dVmzo6MjunXrhqSkpLu2W7ZsmQwsIoTcLawIotTUqlUr+ZrVBRYx54UTc4nIEBXk5+Jo8IvQXN0hb69/3Lw3Wk3cBE9XN113jci45rBUJspDoozj7OxcbRsxqrJw4ULs2rULPj4+93zNtLQ0OYflbq9JRGSIUk7H4uKyB2RYKVNUCG83Gd1m/4Y2DCtE9RtYZs2ahd9//x3nzp3DwYMH8eSTT8p5JuLSZUFc+TNnzpyK9uIy5rlz52L9+vXo1KkTMjIy5CKCjiD+/8YbbyAiIkK+prh6aMSIEejSpQuGDRtWm64REem1Qz+sQqvNQ+Fedg5X4YCEwSHwC/wEZuYWuu4akUGoVUlIjH6IcCJGQFq3bo2BAwfKsCH+LYgrhkxM/peBVq1ahaKiIjzzzDNVXufdd9+VE2dF2Dl27BjCwsLkfBhx9ZG4T4sYkWHJh4iMwc28G4hbNxXqrJ9lCSjBwhNtJ25EH5eOuu4akUG5r0m3hjhph4iosZw7cQjYOhGdylJlCSiy4xSo/RfD9C433CRqSnIaa9ItERHdTikrQ/SOlegTuxDWqiJcgSMyhq6E3wNP8HAR1REDCxFRPcq7kYXjQVOgzv5FloDiLL3hMnkjerdtx+NMdB8YWIiI6smZ+EiYfTcJvmUXUKqoEO32ItTjF8KkmptgElHNMbAQEdVDCShq2yfwjF8MK1UxMtECVx5bBa2WnzxPVF8YWIiI7sON7Gs4HRQAzY1fZQnoqJUvOgRsRK/WvJcUUX1iYCEiqqOko3/BansA+ivpKFZMcbjLS1D/812WgIgaAAMLEVFdSkBbl6Lf8Q9hoSpBBloj6/9WQ+s7hMeSqIEwsBAR1UL29StIDpoETd4BWQI6YjMA7gGhcGrZlseRqAExsBAR1dDpmN9h958p8FYuoUgxRUz316AZ/S+oKt3hm4gaBgMLEVENSkCRW96H96lPYKEqxUVVW+T+Yx203g/z2BE1EgYWIqK7yL56CWeCJ0Kbf1CWgGJsH0LnwBC4NG/F40bUiBhYiIiqcTJ6Lxx/egH9cBlFihmO9HoD6lGzWQIi0gEGFiKiW5SVliLqywXon7QS5qpSpKmcUPBkMDSeA3msiHSEgYWIqJLrl9ORst4f2ptRsgR0uNkj6Ba4Hu0cWvA4EekQAwsR0f93PGIXWu2aBk9cQ4FijqO950D99GssARHpAQYWImryZAlo41z4nF0FM1UZUkxcUfJUCDS9NU3+2BDpCwYWImrSrl5Kw4UQf2gLDssSULTDUPQKXAfbZo667hoRVcLAQkRNVvxf/4HTnpfQF1m4qVggzmsufEe8xBIQkR5iYCGiJqe0pARRG+ZAfX4dTFUKzpm0B0aFQt3TR9ddI6JqMLAQUZNy5eJ5ZIT5w68wVpaAohwfR58pa2Ft20zXXSOiu2BgIaImI+7A93D59VX0RjbyFUskeM+HesSLuu4WEdUAAwsRGb2S4iJEh86GJi0UJioFZ006weS5MPh299J114iohhhYiMioZV44iyuh4+BXHC9LQJEtR8Az4AtY2djpumtEVAsMLERktI7+thUdfp+JXshBrmKNk+qF0AyfoutuEVEdMLAQkdEpLirEoZCZ8EvfJNeTTDvDaswG+HTpreuuEVEdMbAQkVHJSElE1kZ/+BUfl+uRrZ6GZ8BnsLK21XXXiOg+MLAQkdGI3fMl3P6aBSfkIQc2SNIuhubRibruFhHVAwYWIjJ4RYUFiFn/KrSXtsj102bdYPvPDfB276nrrhFRPWFgISKDdvHsSeRuHg9tyWm5HtHmOXgHrICFpZWuu0ZE9YiBhYgM1pHdYegc/hZckI9s2OLsA8ug/fs/dd0tImoADCxEZHAKC/IRG/QSNFe2yfVTZj1gP34DvDp213XXiKiBmNSm8fz586FSqaosPXr0uOtztm7dKttYWVmhT58++Pnnn6s8rigK5s2bB2dnZ1hbW2PIkCFITEys294QkdFLS4pH6ocDK8JKuPM4uM8+AGeGFSKjVqvAInh4eCA9Pb1i+fPPP6tte/DgQYwZMwYBAQE4cuQIRo4cKZf4+PiKNkuXLsWKFSuwevVqREZGwtbWFsOGDUNBQUHd94qIjNLhn4PhuHEIupQm4zqa4ehD6+D3/Ocwt7DUddeIqIGpFDHEUYsRlu3btyM2NrZG7Z977jnk5eXhxx9/rNim1Wrh5eUlA4r40i4uLnj99dcxa9Ys+Xh2djbatm2L0NBQjB49ukZfJycnBw4ODvK59vb2Nd0dIjIQBfm5OBr8IjRXd8j1E+YeaDFhI9q266zrrhHRfajN+3etR1hEuUaEDHd3d4wdOxYpKSnVtg0PD5clnsrE6InYLpw9exYZGRlV2oiOazSaijZ3UlhYKHey8kJExinldCwuLntAhpUyRYVw10noOns/wwpRE1OrwCKChBj52LVrF1atWiUDx4MPPogbN27csb0II2K0pDKxLraXP16+rbo2d7J48WIZbMqX9u3b12Y3iMhAHPphFVptHgr3snO4BnskDA6B35TlMDO30HXXiEifrxJ67LHHKv7dt29fGWA6duyIb775Rs5TaSxz5szBzJkzK9bFCAtDC5HxuJl3A3HrpkKd9bP8hOUEC0+0mbgBfVw66bprRGSIlzU7OjqiW7duSEpKuuPjTk5OuHTpUpVtYl1sL3+8fJu4SqhyGzHPpTqWlpZyISLjc/7EYShbJ0JdliJLQJEdAqGesASmZrwLA1FTVus5LJXl5uYiOTm5StiozM/PD/v27auybc+ePXK74ObmJkNL5TZitERcLVTehoiajqjvP0ObLY+iU1kKrsARx/++AX4ByxhWiKh2IyziSp4nnnhCloEuXryId999F6ampvLSZcHf3x+urq5yjonw6quv4uGHH8ZHH32E4cOHY8uWLTh06BDWrl0rHxf3cZkxYwYWLVqErl27ygAzd+5cOalXXP5MRE1D3o0sHA+aCnX2blkCirP0hvOkDejtxPlpRFSHwJKWlibDydWrV9G6dWsMHDgQERER8t+CuGLIxOR/gzYDBgzAl19+iXfeeQdvv/22DCXisujevXtXtJk9e7a89Hnq1KnIysqSrykm9YobzRGR8TubEAmTbZPhW5aGUkWFKLcXoBn/PkxMTXXdNSIy1Puw6Cveh4XI8ChlZYj+bjn6xv0bVqpiZKIFrgz7Ar38/je5n4iMW04t7sPCWWxE1OhuZF/D6aAAqG/8KktAR6180X5yGHq1ceXZIKI7YmAhokaVdPQvWG0PQH8lHSWKCQ51eRnqf77LEhAR3RUDCxE1WgkoauuH6Hd8KSxUJchAK2T93xpofaveDZuI6E4YWIioweVkXUVS0ERocg/IEtARmwFwDwiFU8uqd7kmIqoOAwsRNajTMb/D7j9T4K1cQpFiiphuM6AZ8w5Ula4oJCK6FwYWImqwElDkln/D+9THsFCV4qKqDXL/sQ5a70E84kRUawwsRFTvsq9ewpngidDmH5QloBjbB9E5MBQuzVvxaBNRnTCwEFG9OnloHxx/fB79cBlFihmO9JwF9bNvsgRERPeFgYWI6kVZaSmivnoP/RM/g7mqFGkqJxQ8GQyN50AeYSK6bwwsRHTfrl9OR8r6CdDejJQloMPNHkG3wPVo59CCR5eI6gUDCxHdlxORu9Fi5zR44ioKFXPE9p4D9dOvsQRERPWKgYWI6lwCitw0F75nVsFMVYZUlQuKnwmFpreGR5SI6h0DCxHV2tVLabgQ4g+/gsOyBHTI/u/oOSUIts0ceTSJqEEwsBBRrST89RPa7JmOvriOm4oF4j3fgc/Il1kCIqIGxcBCRDVSWlKCqA1vQ31+LUxVCs6ZtAdGhcK3pw+PIBE1OAYWIrqnKxkpyAgZD7/CWFkCinJ8HL0DV8PGzoFHj4gaBQMLEd1V3IEdcPn1ZfRGNvIVSyR4z4d6xIs8akTUqBhYiOiOSoqLEB32JjSpITBRKThr0gkmz4XBt7sXjxgRNToGFiK6TeaFs7gSNh5+RXGyBBTZ4h/wDFwFKxs7Hi0i0gkGFiKq4thv36L976+hF3KQp1jhhHoRNMOn8CgRkU4xsBCRVFxUiEMhs+CXvkGuJ5u6w2LMBvh06cMjREQ6x8BCRMhITULWhvHwKz4uj0Zkq6fgGbASVta2PDpEpBcYWIiauNi9X6HTn7PQA7m4oVgjUbsYmscm6bpbRERVMLAQNVFFhQWIWT8D2ktfyfVEs66w+edGeLv31HXXiIhuw8BC1ARdPHsSuZvHQ1tyWq5HtHkO3gErYGFppeuuERHdEQMLURMTs3sjuoTPhgvykQNbJA9YCu3QcbruFhHRXTGwEDURhQX5iA1+GZrL38r1U2Y9YD9+A/p17K7rrhER3RMDC1ETcOFMAvI3+0NTmiTXI5zGov/kT2BuYanrrhER1QgDC5GRO/xzMLpH/guuqpu4jmZIeWgZtH8bretuERHVCgMLkZEquJmHo0EvQnN1u7y9/glzD7SYsBGe7TrrumtERLXGwEJkhFITj6JoywRoSs+iTFEhst0E+E78EGbmFrruGhFRnZjgPixZsgQqlQozZsyots2gQYNkm1uX4cOHV7SZOHHibY8/+uij99M1oibr0A+r0XLT39G59CyuwR4Jf1sPvymfMqwQUdMcYYmOjsaaNWvQt2/fu7b77rvvUFRUVLF+9epVeHp6YtSoUVXaiYASEhJSsW5pycmARLVxM+8G4oKeh/r6T7IElGDRF20mbkQfl048kETUNANLbm4uxo4di3Xr1mHRokV3bduiRYsq61u2bIGNjc1tgUUEFCcnp7p0h6jJO38yBmXfTIS67Px/S0AdAqGesASmZqz6ElETLglNnz5dlnSGDBlS6+cGBwdj9OjRsLWt+qFq+/fvR5s2bdC9e3dMmzZNjsRUp7CwEDk5OVUWoqYqevtKtP7qUbiVnccVOOL43zfAL2AZwwoRGZVa//klRkhiYmJkSai2oqKiEB8fL0PLreWgp556Cm5ubkhOTsbbb7+Nxx57DOHh4TA1Nb3tdRYvXowFCxbU+usTGZO8G1k4HjQVvtm7ZQkozrIfnCdtRG+n9rruGhFRvVMpiqLUtHFqaip8fHywZ8+eirkrYlKtl5cXli9ffs/nP//88zKEHDt27K7tzpw5g86dO2Pv3r0YPHjwHUdYxFJOjLC0b98e2dnZsLe3r+nuEBmsswmRMNk2GR3L0lCqqBDl9gLU4xZxVIWIDIp4/3ZwcKjR+3etRlgOHz6MzMxMeHt7V2wrLS3FgQMHsHLlShki7jQiIuTl5cnRmffee++eX8fd3R2tWrVCUlLSHQOLmO/CSbnUFCllZYj+/lP0PfY+rFTFyEQLXHn0C/j5PabrrhERNahaBRYRHuLi4qpsmzRpEnr06IE333yz2rAibN26VQaacePu/SFraWlpcg6Ls7NzbbpHZNRyc67j5LoAqG/skyWgY1a+aDc5DL3auOq6a0RE+hVYmjVrht69e1fZJibPtmzZsmK7v78/XF1d5TyTysS8lZEjR8q2t15xJOajPP300/IqITGHZfbs2ejSpQuGDRtW9z0jMiLJxw7C4vsA+CgXUaKY4FDnl6AeOx8md/kjgYjImNT7NY8pKSkwMal68dGpU6fw559/4pdffrmtvRiVEXNawsLCkJWVBRcXFwwdOhQLFy5k2YeaPFECivp2GbwSlsJSVYwMtELW8NXQqv/e5I8NETUttZp0awyTdogMRU7WVSQFTYJ37u9yPdbGD50mh8KxFe9XRETGocEm3RJR40g8cgA2PwTCW7mEYsUUh7vNgGbMO1DdMnpJRNRUMLAQ6VkJKPLrxfA++REsVKW4qGqD3H+sg9Z7kK67RkSkUwwsRHoi+9plnAmaAG3+X/IqoCO2A+EeGAaX5q103TUiIp1jYCHSA6cO/Qr7H6eiHy6jSDHDkZ6zoH72TZaAiIj+PwYWIh0qKy1F1FcL0T9xBcxVpUhTOeHmyCBovB7keSEiqoSBhUhHsq5k4HywP7Q3I2UJ6LDdIHQNXI92jlXvVURERAwsRDpxMvIXNN/5AjxxFYWKOWI93oT6mddZAiIiqgZHWIgauQQUuWkefM98ATNVGVJVLih6OgSaPlqeByKiu2BgIWokVy+l4ULIBPgVHJIloEP2Q9AjMAh29s15DoiI7oGBhagRJBz8GW1+eRF9cR03FQvEe74Dn5EvswRERFRDDCxEDai0pARRG/8F9bk1MFUpOG/SHmXPhMC3ly+POxFRLTCwEDWQKxkpyAgZD7/CWFkCinZ8DB6Ba2Bj58BjTkRUSwwsRA0g/o8dcNr3CnojC/mKJRL6vQvfkdN5rImI6oiBhagelRQX4VDYW1CnroeJSsFZk44weW4DfLt78TgTEd0HBhaienL54jlcDh0HbVGcLAFFtXgCfQNXw8rGjseYiOg+MbAQ1YNjv32L9r+/hl7IQZ5ihRO+C6H+v6k8tkRE9YSBheg+S0DRIa/D7+IGuZ5s6g6L0aHw6erJ40pEVI8YWIjqKCM1Cdc3jIdf8XG5HtnqKXgGrISVtS2PKRFRPWNgIaqD2H1b0OmP19ETubihWCNRuxiaxybxWBIRNRAGFqJaKCosQMz6GdBe+kquJ5p1hc0/N8LbvSePIxFRA2JgIaqhi+dO4cam8dCWnJLrEW2eRb/Jn8LSyobHkIiogTGwENXAkV82ofPB2XBBHnJgi+QBS6EdOo7HjoiokTCwEN1FYUE+jgS/Au3lrXL9lFl32I/fiH4du/O4ERE1IgYWompcOJOA/M3+0JYmyfUIp7HoP/kTmFtY8pgRETUyBhaiOzj8cwi6Rc6Bq+omsmCH8w99BO3fRvNYERHpCAMLUSUFN/NwNOhFaK5ul7fXP2HeC839N8KzfRceJyIiHWJgIfr/UhOPomjLBGhKz8r1cJcJ8J20DGbmFjxGREQ6xsBCBODQf9ag56F5sFUV4BrskTZoOfwGPc1jQ0SkJxhYqEm7mXcDcUEvQH39R1kCSrDoizYTN6KvSyddd42IiCphYKEm6/zJGJR9MxHqsvMoU1SI7BAA9YQPYGrGHwsiIn3D38zUJEVvXwmPI+/BRlWIK3BExpAV8HtwhK67RURE1TDBfViyZAlUKhVmzJhRbZvQ0FDZpvJiZWVVpY2iKJg3bx6cnZ1hbW2NIUOGIDEx8X66RnRH+bnZiP7kOfjG/kuGlXhLL+CFP9CbYYWIyDgDS3R0NNasWYO+ffves629vT3S09MrlvPnz1d5fOnSpVixYgVWr16NyMhI2NraYtiwYSgoKKhr94huc/Z4NC5//AB8s3ehVFEhvOML6PnGPrRy6sCjRURkjIElNzcXY8eOxbp169C8efN7thejKk5OThVL27Ztq4yuLF++HO+88w5GjBghA9CGDRtw8eJFbN++vS7dI6pCKStD1LZP4Pz1Y+hYlopMtMDJYV/CbxLnqxARGXVgmT59OoYPHy5LNzUNOB07dkT79u1lKElISKh47OzZs8jIyKjyWg4ODtBoNAgPD7/j6xUWFiInJ6fKQnTH772c6zi8fBTUcfNhpSrGMStfmL34JzwGPM4DRkRkzIFly5YtiImJweLFi2vUvnv37li/fj127NiBTZs2oaysDAMGDEBaWpp8XIQVofKoS/l6+WO3El9bhJryRQQholslHzuI658MgE/OXpQoJgh3fwW939iNFm1cebCIiIz5KqHU1FS8+uqr2LNnz20TZ6vj5+cnl3IirPTs2VPOf1m4cGHtewxgzpw5mDlzZsW6GGFhaKEqJaBvl8ErYSksVcW4hJa4/vhq+GmG8iARETWFwHL48GFkZmbC29u7YltpaSkOHDiAlStXylKNqanpXV/D3Nwc/fr1Q1LSfz8BV8xpES5duiSvEion1r28vO74GpaWlnIhulVO1lUkBk2GJne/vBFcrLUWnQLC0KPVf7/PiIioCZSEBg8ejLi4OMTGxlYsPj4+cgKu+Pe9wkp5wBGvUR5O3NzcZGjZt29flRETcbVQ5ZEZontJjP0DNz71Q//c/ShWTBHRdSY839gJR4YVIqKmNcLSrFkz9O7du8o2cQlyy5YtK7b7+/vD1dW1Yo7Le++9B61Wiy5duiArKwsffvihvKw5MDBQPl5+H5dFixaha9euMsDMnTsXLi4uGDlyZP3tKRl1CSjy6yXwPvkRLFQlSEdr5DyxFlqfv+m6a0REpK93uk1JSYGJyf8Gbq5fv44pU6bICbTiEuj+/fvj4MGD6NWrV0Wb2bNnIy8vD1OnTpWhZuDAgdi1a1eN58lQ05V97TLOBE+ENu9PWQI6YvMA3APD4Nyita67RkRE9UiliBuhGDhRQhJXC2VnZ8ub1FHTcOrQr2j20/NwUTJRpJghpsfr0Dz3FlSVAjMRERnH+zc/S4gMswT01UL0P/0pzFWluKBqi/yRwdB6PajrrhERUQNhYCGDknUlA+eCJ0B7M0KWgGLsHkaXwBC4OrbUddeIiKgBMbCQwTgZ+Qscd06DF66gUDFHrMebUD/zOktARERNAAML6b2y0lJEbpoH3zNfwExVhlSVC4qeCoam7wBdd42IiBoJAwvptWuZF5C2fgL8CqJlCeiQ/RD0CAyCnf29P3STiIiMBwML6a3j4TvRaveL6ItrKFDMcazvO/B98hWWgIiImiAGFtI7pSUliNr4L6jPrYGpSsF5k/YoeyYE6l6+uu4aERHpCAML6ZUrGanICBkHv8JYWQKKdngUHlPWwsbOQdddIyIiHWJgIb0R/8cOOO17Bb2RhXzFEgn95sF35Eu67hYREekBBhbSjxJQ2JvQpATDRKXgrElHmDwbCt8e//tUcCIiatoYWEinLl88h8zQ8fArOiZLQFHN/w99AlfD2rYZzwwREVVgYCGdObZ/G9rtnwEP5CBPscIJn/egfuJ5nhEiIroNAws1upLiIkSHvA6/ixvkerKpGyxGh8GnqyfPBhER3REDCzWqjNQkXN8wHn7Fx+V6ZMuR8Az8AlbWtjwTRERULQYWajRHf92CjgdeR0/k4oZijdOa96F5PIBngIiI7omBhRpccVEhDq9/DdqMzXI90bQLbMZuQH93Dx59IiKqEQYWalDp508hZ+N4aEtOyfWI1qPQL2AFLK1seOSJiKjGGFiowRz5ZRM6H5wNZ+QhB7ZIHrAU2qHjeMSJiKjWGFio3hUVFiAm+GVoM7+R66fMuqPZuI3o16k7jzYREdUJAwvVqwtnTiD/S1ECSpTrEW3HwHvyclhYWvFIExFRnTGwUL2J2RmCrhFz4Kq6iSzY4dyDH0E7eDSPMBER3TcGFrpvBTfzcDT4JWiufCdvr3/CvBea+2+EV/suPLpERFQvGFjovqQmxaHoK39oSs/I9XAXf/hMXAZzC0seWSIiqjcMLFRnh35ci57Rc2GrKsB12CP14U/g98gzPKJERFTvGFio1gryc3Es6AWor/1HloASLPqgzcRN6OvSiUeTiIgaBAML1cr5U7Eo+9of6rLzKFNUiGo/GT4TlsDM3IJHkoiIGgwDC9VY9PbP4XFkAWxUhbgCR6QPXgHtQyN4BImIqMExsNA95edmIyHoefhm7ZQloHhLLzhN2og+Th149IiIqFEwsNBdnTtxCNg6Eb5lqSgVJaBOz0M9/n2YmvFbh4iIGg/fdeiOlLIyRH+/An2OvQ9rVREuozkyh30BvwGP84gREVGjY2Ch2+TmXMfJoECoc/bKEtAxKx+4TgqDR9t2PFpERKQTJvfz5CVLlkClUmHGjBnVtlm3bh0efPBBNG/eXC5DhgxBVFRUlTYTJ06Ur1N5efTRR++na1RHyXERuP7JAPjk7EWJYoJwt5fQ+41f0JJhhYiIDHGEJTo6GmvWrEHfvn3v2m7//v0YM2YMBgwYACsrK3zwwQcYOnQoEhIS4OrqWtFOBJSQkJCKdUtL3im1sUtAUd9+BK+ED2CpKsYltMS1x1fBTzOsUftBRERUb4ElNzcXY8eOlaMnixYtumvbzZs3V1kPCgrCtm3bsG/fPvj7+1cJKE5OTnXpDt2nG9nXcHrdJGhy98sSUKy1Fp0CwtCzFc8HEREZcElo+vTpGD58uCzv1FZ+fj6Ki4vRokWL20Zi2rRpg+7du2PatGm4evVqta9RWFiInJycKgvVTWLsH8he7of+uftRrJgiostr8HxjJxwZVoiIyJBHWLZs2YKYmBhZEqqLN998Ey4uLlXCjigHPfXUU3Bzc0NycjLefvttPPbYYwgPD4epqeltr7F48WIsWLCgTl+f/lcCivx6CbxPfgQLVQnS0RrZT6yB1mcwDxEREekdlaIoSk0bp6amwsfHB3v27KmYuzJo0CB4eXlh+fLlNZqku3TpUjmacre5L2fOnEHnzp2xd+9eDB48+I4jLGIpJ0ZY2rdvj+zsbNjb29d0d5qs7OtXkBw0Ed55f8j1IzYPwD0wDA4tWuu6a0RE1ITk5OTAwcGhRu/ftRphOXz4MDIzM+Ht7V2xrbS0FAcOHMDKlStliLjTiIiwbNkyGVhECLnXRF13d3e0atUKSUlJdwwsYr4LJ+XWzemY/bD7zxR4K5koUkwR0+N1aJ6bA5XJfV0wRkRE1KBqFVhEeIiLi6uybdKkSejRo4cs9VQXVsSoyvvvv4/du3fLEZp7SUtLk3NYnJ2da9M9ulcJ6KuF6H/6U5irSnFB1Rb5I4Kg7fcQjxsRERlXYGnWrBl69+5dZZutrS1atmxZsV1c+SMuVxbzTARxGfO8efPw5ZdfolOnTsjIyJDb7ezs5CKuOBLzUZ5++ml5lZCYwzJ79mx06dIFw4bxktr6kH31Es4GT4A2P1xeBRRj9xC6BIbC1bFlvbw+ERFRQ6v3OkBKSgrS09Mr1letWoWioiI888wzcsSkfBElIkGMyhw7dgz/+Mc/0K1bNwQEBKB///74448/WPapByej9uDmZwPglR+OQsUckb3+hX4zd8CeYYWIiIx10q0xTNppKspKSxG1eT58klfCTFWGVJULip4MRue+A3TdNSIiooaddEuG4VrmBaSunwBtQbQsAR1qNhg9pgTDzr65rrtGRERUJwwsRuZ4+E602v0iPHENBYo5jvX9F3yffJVXARERkUFjYDESpSUliNr4L6jPrYGpSsF5k3Yoe3o91B4aXXeNiIjovjGwGIErGalIDxkPv8IjsgQU7fAoPKashY2dg667RkREVC8YWAxc/J8/wGnvy+iDLOQrlkjoNw++I1/SdbeIiIjqFQOLIZeAwt6EJiUYJioF50w6QDUqFL49++u6a0RERPWOgcUAXb54Dpmh4+FXdEyWgKKa/x/6BK6GtW0zXXeNiIioQTCwGJi437+D62+vwgM5yFOscMLnPaifeF7X3SIiImpQDCwGoqS4CNGhb0CTFiZLQMmmbrAYHQafrp667hoREVGDY2AxAJfSknEtbDz8ihNkCSiy5Uh4Bn4BK2tbXXeNiIioUTCw6Lmjv36DDgdmoiduIFexxinN+9A8HqDrbhERETUqBhY9VVxUiMPrX4M2Y7NcTzTtApuxG9Df3UPXXSMiImp0DCx6KP38KeRs9Ie25KRcj2z9DLwCPoOllY2uu0ZERKQTDCx65sgvm+B+cDackYcc2CLJ7wNoho3XdbeIiIh0ioFFTxQVFiAm+GVoM7+R66fNusFu3CZ4d+qu664RERHpHAOLHrhw5gTyvxwPbUmiXI9oOwbek5fDwtJK110jIiLSCwwsOhazKxRdw9+Cq+omsmCHcwOXQTtkjK67RUREpFcYWHSk4GYejga/BM2V7+S9VU6a94Lj+A3w6tBVV10iIiLSWwwsOpCaFIfCryZAU5os18Od/eEzaRnMLSx10R0iIiK9x8DSyA79tA49oubCTnUT12GP1Ic/gd8jzzR2N4iIiAwKA0sjKcjPxdGgadBc+0GWgI5b9EGrCRvR19WtsbpARERksBhYGsH5U7Eo+3oCNGXnUKaoENl+EnwnfAAzc4vG+PJEREQGj4GlgUXv+AIeMfNhoyrEFTgiffAK+D00oqG/LBERkVFhYGkg+bnZiA96Aeqsn2UJKN7SC06TNqKPU4eG+pJERERGi4GlAZw7cQjYOhHqslSUKipEdZwKtf+/YWrGw01ERFQXfAetR0pZGQ5t/wy9jy6CtaoIl9EcmUM/h98Dw+vzyxARETU5DCz1JO9GFk6sC4Rvzh5ZAjpm1R+ukzbAo227+voSRERETRYDSz04Ex8J820T4aNcRIligmj3adCMWwgTU9P6eHkiIqImj4HlPktAUds+hlf8EliqipGJFrj6+Gr4aYY1+W8sIiKi+sTAUkc3sq/hdNBkaG78JktAR6016DA5DD1bO9frCSIiIiIGljpJOvonrLYHor+SjmLFFIe7vgz1mHksARERETUQk/t58pIlS6BSqTBjxoy7ttu6dSt69OgBKysr9OnTBz///HOVxxVFwbx58+Ds7Axra2sMGTIEiYmJ0McSUOSWxejw3Qi0U9KRjtZIfmIrtOMWMKwQERHpY2CJjo7GmjVr0Ldv37u2O3jwIMaMGYOAgAAcOXIEI0eOlEt8fHxFm6VLl2LFihVYvXo1IiMjYWtri2HDhqGgoAD6Ivv6FRz56B/QnFwCC1UJjtgMgM0r4ejhM1jXXSMiIjJ6KkUMb9RSbm4uvL298cUXX2DRokXw8vLC8uXL79j2ueeeQ15eHn788ceKbVqtVj5HBBTx5V1cXPD6669j1qxZ8vHs7Gy0bdsWoaGhGD169D37k5OTAwcHB/k8e3t71LfTMfth958pcFEyUaSYIqb7TGhGvw2VyX0NUBERETVpObV4/67TO+706dMxfPhwWbq5l/Dw8NvaidETsV04e/YsMjIyqrQRnddoNBVtblVYWCh3svLSUCWgiM3vodOOp2RYuahqi3Mjvof2n+8wrBAREenzVUJbtmxBTEyMLAnVhAgjYrSkMrEutpc/Xr6tuja3Wrx4MRYsWIDGmFyrTfxIXgUUY/cQugSGwsWxZYN/XSIiIrqPwJKamopXX30Ve/bskRNodWXOnDmYOXNmxboYYWnfvn29f52u/R5C+JGpMLFtBfWoNziqQkREZAiB5fDhw8jMzJTzV8qVlpbiwIEDWLlypSzVmN5yd1cnJydcunSpyjaxLraXP16+TVwlVLmNmOdyJ5aWlnJpDH6TP2yUr0NERET1NIdl8ODBiIuLQ2xsbMXi4+ODsWPHyn/fGlYEPz8/7Nu3r8o2MUIjtgtubm4ytFRuI0ZMxNVC5W2IiIioaavVCEuzZs3Qu3fvKtvEJcgtW7as2O7v7w9XV1c5z0QQJaSHH34YH330kZyoK+bAHDp0CGvXrpWPl9/HRVxt1LVrVxlg5s6dK68cEpc/ExEREdX7rflTUlJgUuly3wEDBuDLL7/EO++8g7fffluGku3bt1cJPrNnz5aXPk+dOhVZWVkYOHAgdu3apdN5MkRERGTg92HRNw19HxYiIiIywPuwEBERETUmBhYiIiLSewwsREREpPcYWIiIiEjvMbAQERGR3mNgISIiIr3HwEJERER6j4GFiIiI9B4DCxERETW9W/PrQvnNesUd84iIiMgwlL9v1+Sm+0YRWG7cuCH/3759e113hYiIiOrwPi5u0W/0nyVUVlaGixcvyk+TFp/+XN/pTwSh1NRUo/ycImPfv6awj9w/w8dzaPh4DutGRBARVlxcXKp8cLLRjrCInWzXrl2Dfg3xRmeMb3ZNZf+awj5y/wwfz6Hh4zmsvXuNrJTjpFsiIiLSewwsREREpPcYWO7B0tIS7777rvy/MTL2/WsK+8j9M3w8h4aP57DhGcWkWyIiIjJuHGEhIiIivcfAQkRERHqPgYWIiIj0HgMLERER6b0mFVgOHDiAJ554Qt5RT9wRd/v27fd8zv79++Ht7S1ngHfp0gWhoaG3tfn888/RqVMnWFlZQaPRICoqCoayj9999x3+/ve/o3Xr1vKGR35+fti9e3eVNvPnz5evVXnp0aMHDGH/xPm7te9iycjI0MtzWNv9mzhx4h33z8PDQy/P3+LFi+Hr6yvvSt2mTRuMHDkSp06duufztm7dKvsszk+fPn3w888/V3lcXDswb948ODs7w9raGkOGDEFiYiIMZR/XrVuHBx98EM2bN5eL6P+t34N3OtePPvooDGH/xO/NW/suzqU+nsO67N+gQYPu+HM4fPhwvTt/wqpVq9C3b9+Km9yJ3/s7d+6Evv8MNqnAkpeXB09PT/nmVBNnz56V33CPPPIIYmNjMWPGDAQGBlZ5Q//6668xc+ZMedlsTEyMfP1hw4YhMzMThrCP4g1SBBbxzXf48GG5r+IN88iRI1XaiTfA9PT0iuXPP/+EIexfOfELp3L/xS8ifTyHtd2/Tz/9tMp+iY8faNGiBUaNGqWX5+/333/H9OnTERERgT179qC4uBhDhw6V+12dgwcPYsyYMQgICJDfl+INRCzx8fEVbZYuXYoVK1Zg9erViIyMhK2trTyHBQUFMIR9FMFa7ONvv/2G8PBw+VES4jkXLlyo0k68wVU+j1999RUMYf8E8cZYue/nz5+v8ri+nMO67J/4w6/yvonvTVNT09t+DvXh/AnizvBLliyRv/MPHTqEv/3tbxgxYgQSEhKg1z+DShMldv3777+/a5vZs2crHh4eVbY999xzyrBhwyrW1Wq1Mn369Ir10tJSxcXFRVm8eLFiCPt4J7169VIWLFhQsf7uu+8qnp6eir6pyf799ttvst3169erbaOv57Au50+0V6lUyrlz5/T+/AmZmZlyP3///fdq2zz77LPK8OHDq2zTaDTK888/L/9dVlamODk5KR9++GHF41lZWYqlpaXy1VdfKYawj7cqKSlRmjVrpoSFhVVsmzBhgjJixAhF39Rk/0JCQhQHB4dqH9fnc1iX8/fJJ5/I85ebm6v3569c8+bNlaCgIEWffwab1AhLbYm/dMSwVmUiMYrtQlFRkUyolduIzzUS6+VtDPGDJMUHUYm/0isTQ3uiTOHu7o6xY8ciJSUFhsTLy0sOVYrRpL/++qtiu7Gdw+DgYNn3jh07GsT5y87Olv+/9futNj+HYiRUlPgqtxGfTSJKe/pwDmuyj7fKz8+Xf9nf+hwxEiNGB7t3745p06bh6tWrMJT9y83Nld+XYvTo1r/m9fkc1uX8iZ/D0aNHy1EGfT9/paWl2LJlixxBEqUhff4ZZGC5C3EC2rZtW2WbWBefynnz5k1cuXJFnuw7tbl1joShWLZsmfzF8uyzz1ZsE990oga9a9cuWfsU35yi3i6Cjb4TIUUMUW7btk0u4pelqDeL0o9gTOdQfGK5qEOLsmVl+nr+RDgWZdYHHngAvXv3rvXPYfn5Kf+/Pp7Dmu7jrd58800ZMCu/AYhywoYNG7Bv3z588MEHsnTx2GOPye9ffd8/8Qa9fv167NixA5s2bZLPGzBgANLS0vT6HNbl/Im5R6JUcuvPob6dv7i4ONjZ2cn5mS+88AK+//579OrVS69/Bo3i05qpfnz55ZdYsGCB/KVSeY6H+KEqJyZqiTdA8ZfSN998I2ua+kz8ohRLOfFLMjk5GZ988gk2btwIYxIWFgZHR0dZW65MX8+fmCcgfrHraj6Nvu6jmFsg/uIVf41Xnpgq/mIvJyY9inPZuXNn2W7w4MHQ5/0Tf7lX/utd/Bz27NkTa9aswcKFC2FM50+Mrojzo1arq2zXt/PXvXt3OTdTjCB9++23mDBhggxR1YUWfcARlrtwcnLCpUuXqmwT62LymJgF3apVKzmx6k5txHMNifgFKf4iEG9itw793Uq8KXbr1g1JSUkwROIXSXnfjeUciikv4i/Y8ePHw8LCQu/P30svvYQff/xRTjIVEwDr8nNYfn7K/69v57A2+1h5hFMEll9++UW+od2NKO+J719dnce67F85c3Nz9OvXr6Lv+ngO67J/oqwifpfW5A8BXZ8/CwsLeeVr//795ZVRYrK/mMSvzz+DDCx3If4iEMN3lYlZ4+V/KYgTLk525TZiCFGsV1cL1EdipvqkSZPk/ytfhlcdUTISoxSi3GKIxF8V5X03lnMo/jISv/hq8otSl+dPBCvxRiCGn3/99Ve4ubnd98+heA3xS7FyG1G2FVcq6OIc1mUfy6+yEKMNonTn4+Nzz/ainCLmQDT2eazr/lUmyiCiJFHed306h/ezf+LS38LCQowbN05vz191xO890Xe9/hlUmpAbN24oR44ckYvY9Y8//lj++/z58/Lxt956Sxk/fnxF+zNnzig2NjbKG2+8oZw4cUL5/PPPFVNTU2XXrl0VbbZs2SJnQoeGhirHjx9Xpk6dqjg6OioZGRkGsY+bN29WzMzM5L6lp6dXLGKGd7nXX39d2b9/v3L27Fnlr7/+UoYMGaK0atVKzp7X9/0Ts/W3b9+uJCYmKnFxccqrr76qmJiYKHv37tXLc1jb/Ss3btw4OWv/TvTp/E2bNk1eLSL6U/n7LT8/v6KN2D+xn+VEn8X36LJly+TPobjqydzcXJ7PckuWLJHnbMeOHcqxY8fk1Rhubm7KzZs3DWIfRf8tLCyUb7/9tspzxPeDIP4/a9YsJTw8XJ5H8f3r7e2tdO3aVSkoKND7/RNXHe7evVtJTk5WDh8+rIwePVqxsrJSEhIS9O4c1mX/yg0cOFBeSXorfTp/gui7uOpJ9EUca7Euri785Zdf9PpnsEkFlvJLXG9dxOVmgvj/ww8/fNtzvLy85C8Td3d3eXnerT777DOlQ4cOso24RDYiIkIxlH0U/75be0H8ADo7O8v9c3V1letJSUkGsX8ffPCB0rlzZ/nLsUWLFsqgQYOUX3/9VW/PYV2+R0W4tLa2VtauXXvH19Sn83enfRNL5Z8rsX+Vv/+Eb775RunWrZvcB3GrgZ9++qnK4+Kyyrlz5ypt27aV4XPw4MHKqVOnFEPZx44dO97xOeKNQRBvlkOHDlVat24t3yhE+ylTpugkVNdl/2bMmFHx8yXO0eOPP67ExMTo5Tms6/foyZMnZbvyN/3K9On8CZMnT5Z9EOdD9Ekc68r91tefQZX4T/2N1xARERHVP85hISIiIr3HwEJERER6j4GFiIiI9B4DCxEREek9BhYiIiLSewwsREREpPcYWIiIiEjvMbAQERGR3mNgISIiIr3HwEJERER6j4GFiIiI9B4DCxEREUHf/T9vgcsOu35uzwAAAABJRU5ErkJggg==" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 61 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T17:27:54.907958Z", + "start_time": "2025-11-13T17:27:54.807745Z" + } + }, + "cell_type": "code", + "source": [ + "import matplotlib.pyplot as plt\n", + "\n", + "x = [1, 2, 3, 4]\n", + "y = [10, 20, 25, 30]\n", + "\n", + "plt.plot(x, y)\n", + "plt.title(\"Student Marks Over Time\") # এখানে টাইটেল যোগ হলো\n", + "plt.xlabel(\"Week\")\n", + "plt.ylabel(\"Marks\")\n", + "plt.show()" + ], + "id": "7dbd881385db8e1f", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAkAAAAHHCAYAAABXx+fLAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjcsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvTLEjVAAAAAlwSFlzAAAPYQAAD2EBqD+naQAAWkZJREFUeJzt3QdclWX/P/APew8FEVFUEBXcC800U3H7mJpl2nCWT+ZITS1tP1o2baiPthQrrczSntwrV04cOVGWKAooIHtzzv/1vfrDDxAMFDjr8369Tpz75j6H61ycPB+u63tft5lWq9WCiIiIyISY67oBRERERDWNAYiIiIhMDgMQERERmRwGICIiIjI5DEBERERkchiAiIiIyOQwABEREZHJYQAiIiIik8MARERERCaHAYjISJmZmeGtt97SdTP0xrhx4+Do6KjrZhiknj17qhuRMWEAIqoGZ8+exWOPPYZGjRrB1tYW9evXR9++fbFkyZISx7377rvYuHGjwf4O1q5di08//bTCxzdu3FgFsz59+pT5/a+++kp9X24hISEwNHJloe+++w49evSAq6sr7O3t0bp1a/znP/9BRkYG9MWVK1eK+vmfbnIskTGy1HUDiIzNoUOH0KtXLzRs2BDPPfccPD09ce3aNRw5cgSfffYZpk2bViIASVAaNmwYDDUAnTt3DjNmzKjwYyQQ/vHHH4iLi1N9U9yaNWvU97Ozs2FoCgoK8OSTT2LdunV46KGH1OibBKADBw7g7bffxs8//4xdu3ahbt26um4q6tSpo4JacR9//DFiYmLwySef3HHsjh07ariFRNWPAYioir3zzjtwcXHB8ePH1ShAcTdv3jT5/u7WrZvqm59++gkvvvhiUX/Ih6+EheHDh+OXX36psn6SkRcHB4dq7/cPPvhAhZ/Zs2fjww8/LNo/adIkjBw5UoVcmYbbunUralJmZqYKYsVJfzz99NMl9v3444+4ffv2HfuJjBWnwIiqWEREBFq2bHlH+BEeHh5F92V6QT6cV69eXTTdIB+QQr7KdFFpMqogxxWXk5ODmTNnqr/UnZyc8Mgjj6gwUZbr169jwoQJahTCxsZGtXPlypUljtm7d6/6GfJhLmGuQYMGalQmKCgI4eHhRcdJTcjmzZsRHR1d1P6y2lyaPNejjz6qRo+K++GHH1CrVi3079//jsecOXNG9Ymvr696vIwcyetITEwss38uXLigRmPk+bp3715uW06fPq36TV5Lenq62idTb9IGd3d32NnZwcfHR/2su8nKylKhp1mzZli0aNEd3x8yZAjGjh2Lbdu2qZFA8a9//Uu9nrJ07doVnTp1KrHv+++/R8eOHVWbateujVGjRqmRxeLkdbRq1QonTpxQ03ASfObPn4+qrgEq/h6R0S2Z4pX3noxmpqSkqPekjArK+13qrsaPH6/2lVaR10RUXTgCRFTFpO7n8OHDampIPozKI1MQzz77LDp37qxGCUSTJk0q/fPkOeSDRD7wH3zwQezZsweDBw++47j4+Hg88MAD6oNr6tSp6oNfRiMmTpyI1NTUO6ax3nvvPZibm6sRDflQkxGOp556CkePHlXff/XVV9X+4tMmFS0ylrb269dPhcXC1yyBSD5Arays7jh+586diIyMVB+kEn7Onz+PL7/8Un2VQFE6FD7++ONo2rSpmmKUupyyyCiUBB0JGr/99pv6EJYROmmX9M0rr7yiQqzUwPz66693fT0HDx5UoycyomVpWfY/q2PGjMGqVauwadMm9Xt44okn1D5pR2BgYNFxEijlNRUfRZIg+vrrr6uRJPl937p1S9WTScg5depUibAtoXDgwIEqTMhoTnVOuUnYk36TvpJwLG2S35+8b6Q/JJDKawkODlZB8o033rin10RULbREVKV27NihtbCwULeuXbtq586dq92+fbs2Nzf3jmMdHBy0Y8eOvWO/7GvUqNEd+9988035NC/aPn36tNp+4YUXShz35JNPqv1yfKGJEydq69Wrp01ISChx7KhRo7QuLi7azMxMtf3HH3+oxwYEBGhzcnKKjvvss8/U/rNnzxbtGzx4cJntLI8cK4/Jz8/Xenp6ahcsWKD2X7hwQT33vn37tKtWrVL3jx8/XvS4wrYV98MPP6jj9u/ff0f/jB49usw+lf4WBw8e1Do7O6u2ZGdnFx2zYcOGO352RXz66afqcfL48iQlJaljHn30UbWdkpKitbGx0b700ksljvvggw+0ZmZm2ujoaLV95coV9V565513ShwnvwdLS8sS+x9++GH1M1asWKGtrLv9LuV55Vao8D3SqlWrEu9r6Xdp+8CBA0s8Xv4/KP7clXlNRNWFU2BEVUzO9pIRIJmK+uuvv9TIiYw0yDTB//73vyr9WVu2bFFfp0+fXmJ/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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 62 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T17:29:54.559435Z", + "start_time": "2025-11-13T17:29:54.452968Z" + } + }, + "cell_type": "code", + "source": [ + "import matplotlib.pyplot as plt\n", + "\n", + "x = [1, 2, 3, 4]\n", + "y = [10, 20, 25, 30]\n", + "\n", + "plt.plot(x, y)\n", + "plt.xlabel(\"Time (days)\") # X-অক্ষের নাম\n", + "plt.ylabel(\"Sales (units)\") # Y-অক্ষের নাম\n", + "plt.title(\"Daily Sales\")\n", + "plt.show()" + ], + "id": "a9f6cdd5efa9ae08", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 63 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T17:32:36.712554Z", + "start_time": "2025-11-13T17:32:36.629648Z" + } + }, + "cell_type": "code", + "source": [ + "import matplotlib.pyplot as plt\n", + "\n", + "categories = ['Math', 'Science', 'English', 'History'] # categorical\n", + "marks = [85, 90, 78, 88] # numerical\n", + "\n", + "plt.bar(categories, marks)\n", + "plt.xlabel(\"Subjects\")\n", + "plt.ylabel(\"Marks\")\n", + "plt.title(\"Student Performance\")\n", + "plt.show()" + ], + "id": "85b9bb2432c25786", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 64 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-13T17:33:54.837426Z", + "start_time": "2025-11-13T17:33:54.731843Z" + } + }, + "cell_type": "code", + "source": [ + "import matplotlib.pyplot as plt\n", + "\n", + "# Continuous data: ছাত্রদের মার্কস\n", + "marks = [65, 72, 78, 85, 88, 90, 92, 95, 98, 99]\n", + "\n", + "plt.hist(marks, bins=5, edgecolor='black')\n", + "plt.title(\"Distribution of Marks\")\n", + "plt.xlabel(\"Marks\")\n", + "plt.ylabel(\"Number of Students\")\n", + "plt.show()" + ], + "id": "675fac7903cf97a", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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2bPH3P/pp59M09aSJUvc+zz66KMej9FApLUxGlQ0vLj07dtX2rVrl+Y1tm/fLvfdd58JSGPGjDG1QGrv3r2mBklre1SFChX4zABLULMDIGhoaGndurUZOaU1PHo7de3K77//Lh06dJBbbrlFChUq5A4lGlZScoWWlLQ/kNboaAgaO3asO+ioZ5991gSryMhIeeWVV2TFihU+e58A/IuwAyDomrI07Hz22WfmdmoPP/ywHDt2TD755BNZtWqVWdSFCxc89itQoECax2pzVYsWLSQ2Nlb279/vsa1Vq1amRunFF1+UP//8U5o3by4vv/yy198fAP8j7AAIKg888IAJLjqCKnVfm6NHj5pmqIEDB5owUr16ddOxOLO0f88XX3wh9evXl3vuuceEmtQ1S507d5bJkyebJq7x48d77X0BCBz67AAIKjlz5jQdhF23UypatKgZgaUhpHTp0qbpSjsiZ/X5dXSWNoXde++9pj9QRESEDB482ISgW2+91YzO0tofDVMAsj9qdgAEHe2Lo0t6NTPar2bt2rWmM7I2OY0YMSLLz58rVy6ZOnWqCTYaeA4dOiR58uQxnaNr164td999twlF+loAsr8wx3GcQBcCAADAV6jZAQAAViPsAAAAqxF2AACA1Qg7AADAaoQdAABgNcIOAACwGmEHAABYjbADAACsRtgBAABWI+wAAACrEXYAAIDVCDsAAEBs9v/934T61r3uQQAAAABJRU5ErkJggg==" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 65 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_4/Mod_15/enrollment_data.csv b/Python_For_ML/Week_4/Mod_15/enrollment_data.csv new file mode 100644 index 0000000..2ad3315 --- /dev/null +++ b/Python_For_ML/Week_4/Mod_15/enrollment_data.csv @@ -0,0 +1,11 @@ +Year,Programming,Digital Marketing +2015,589,734 +2016,862,963 +2017,1085,1157 +2018,1150,1404 +2019,1439,1497 +2020,1715,1579 +2021,1785,1948 +2022,1995,2073 +2023,2236,2310 +2024,2442,2338 \ No newline at end of file diff --git a/Python_For_ML/Week_4/Mod_15/student_IQdata.csv b/Python_For_ML/Week_4/Mod_15/student_IQdata.csv new file mode 100644 index 0000000..1a7c656 --- /dev/null +++ b/Python_For_ML/Week_4/Mod_15/student_IQdata.csv @@ -0,0 +1,39 @@ +Shoe_Size,Study_Hour,Chilling_Hours,IQ_Score +13.5,2.0,17.7,72 +8.0,18.0,5.0,75 +6.4,7.2,22.7,78 +6.9,8.7,6.6,110 +10.5,8.6,5.8,104 +6.8,4.8,18.1,76 +5.5,7.9,24.3,80 +9.6,12.6,15.7,109 +9.1,5.6,24.3,73 +6.7,14.6,13.1,110 +9.7,14.2,20.9,98 +10.4,13.7,14.0,109 +7.7,11.9,23.2,95 +12.5,8.3,13.3,95 +7.6,9.4,16.8,95 +11.4,4.6,7.9,96 +5.6,12.2,12.9,107 +8.4,12.3,24.3,87 +12.1,6.4,17.3,77 +6.4,2.7,23.2,70 +13.7,5.4,20.6,78 +13.6,5.3,10.0,87 +18.0,10.0,15.0,98 +6.3,2.2,22.8,70 +11.6,2.4,5.1,90 +5.4,4.9,7.7,89 +9.5,2.0,35.0,145 +10.4,10.6,25.4,86 +13.7,14.8,27.7,88 +8.3,1.6,19.0,70 +6.5,3.0,20.9,70 +5.2,10.3,26.6,86 +7.6,3.7,24.0,70 +8.9,13.5,27.2,77 +10.5,13.9,8.0,116 +12.8,1.5,6.9,93 +6.6,3.6,12.8,84 +10.3,6.0,5.6,102 \ No newline at end of file diff --git a/Python_For_ML/Week_4/Mod_15/student_data.csv b/Python_For_ML/Week_4/Mod_15/student_data.csv new file mode 100644 index 0000000..2732c73 --- /dev/null +++ b/Python_For_ML/Week_4/Mod_15/student_data.csv @@ -0,0 +1,23 @@ + +StudentID,FullName,Data Structure Marks,Algorithm Marks,Python Marks,CompletionStatus,EnrollmentDate,Instructor,Location +PH1001,Alif Rahman,85,85,88,Completed,2024-01-15,Mr. Karim,Dhaka +PH1002,Fatima Akhter,92,92,,In Progress,2024-01-20,Ms. Salma,Chattogram +PH1003,Imran Hossain,88,88,85,Completed,2024-02-10,Mr. Karim,Dhaka +PH1004,Jannatul Ferdous,78,78,82,Completed,2024-02-12,Ms. Salma,Sylhet +PH1005,Kamal Uddin,,,95,In Progress,2024-03-05,Mr. Karim,Chattogram +PH1006,Laila Begum,75,75,78,Completed,2024-03-08,Ms. Salma,Rajshahi +PH1007,Mahmudul Hasan,80,80,,In Progress,2024-04-01,Mr. Karim,Dhaka +PH1008,Nadia Islam,81,81,85,Completed,2024-04-22,Ms. Salma,Chattogram +PH1009,Omar Faruq,72,72,76,Completed,2024-05-16,Mr. David,Dhaka +PH1010,Priya Sharma,89,89,88,Completed,2024-05-20,Ms. Salma,Sylhet +PH1011,Rahim Sheikh,,,91,In Progress,2024-06-11,Mr. Karim,Khulna +PH1012,Sadia Chowdhury,85,85,87,Completed,2024-06-14,Ms. Salma,Chattogram +PH1013,Tanvir Ahmed,75,75,79,Completed,2024-07-02,Mr. David,Dhaka +PH1014,Urmi Akter,,,,Not Started,2024-07-09,Ms. Salma,Rajshahi +PH1015,Wahiduzzaman,86,86,84,Completed,2024-08-18,Mr. Karim,Dhaka +PH1016,Ziaur Rahman,94,94,,In Progress,2024-08-21,Ms. Salma,Chattogram +PH1017,Afsana Mimi,90,90,93,Completed,2025-09-01,Mr. Karim,Dhaka +PH1018,Babul Ahmed,88,88,85,Completed,2025-09-05,Ms. Salma,Sylhet +PH1019,Faria Rahman,,,,Not Started,2025-09-15,Mr. David,Chattogram +PH1020,Nasir Khan,86,86,89,Completed,2025-10-02,Ms. Salma,Dhaka +,,,,,,,, \ No newline at end of file From a03da8c1e94c89ce0cbd27de75cf2ff928910053 Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Fri, 14 Nov 2025 20:27:04 +0600 Subject: [PATCH 74/78] Mod_16 --- .../Mod_16/16.1 Lineplot using Seaborn.ipynb | 8102 +++++++++++++++++ Python_For_ML/Week_4/Mod_16/dg_mrkt_dt.html | 3888 ++++++++ .../Week_4/Mod_16/enrollment_data.csv | 11 + Python_For_ML/Week_4/Mod_16/quize.ipynb | 290 + Python_For_ML/Week_4/Mod_16/sns_data.csv | 96 + .../Mod_16/student_dataset_complete.csv | 101 + 6 files changed, 12488 insertions(+) create mode 100644 Python_For_ML/Week_4/Mod_16/16.1 Lineplot using Seaborn.ipynb create mode 100644 Python_For_ML/Week_4/Mod_16/dg_mrkt_dt.html create mode 100644 Python_For_ML/Week_4/Mod_16/enrollment_data.csv create mode 100644 Python_For_ML/Week_4/Mod_16/quize.ipynb create mode 100644 Python_For_ML/Week_4/Mod_16/sns_data.csv create mode 100644 Python_For_ML/Week_4/Mod_16/student_dataset_complete.csv diff --git a/Python_For_ML/Week_4/Mod_16/16.1 Lineplot using Seaborn.ipynb b/Python_For_ML/Week_4/Mod_16/16.1 Lineplot using Seaborn.ipynb new file mode 100644 index 0000000..eb7771a --- /dev/null +++ b/Python_For_ML/Week_4/Mod_16/16.1 Lineplot using Seaborn.ipynb @@ -0,0 +1,8102 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-14T04:20:51.991490Z", + "start_time": "2025-11-14T04:20:42.616944Z" + } + }, + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "import plotly.express as px\n", + "from matplotlib.pyplot import ylabel" + ], + "outputs": [], + "execution_count": 2 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_16.1 Lineplot using Seaborn_**", + "id": "a1ce43e99e6af48b" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T04:20:52.081774Z", + "start_time": "2025-11-14T04:20:52.000973Z" + } + }, + "cell_type": "code", + "source": [ + "student = pd.read_csv('sns_data.csv')\n", + "student.head()" + ], + "id": "f4b9459f9cfa5801", + "outputs": [ + { + "data": { + "text/plain": [ + " student_id class_level subject study_hours test_score week \\\n", + "0 1 Freshman Math 5 78 1 \n", + "1 2 Freshman Science 3 65 1 \n", + "2 3 Freshman History 4 70 1 \n", + "3 4 Freshman Language 2 60 1 \n", + "4 5 Sophomore Math 6 82 1 \n", + "\n", + " attendance_rate gender hostel Tshirt_size \n", + "0 90 Male True 30 \n", + "1 80 Female False 20 \n", + "2 85 Male True 20 \n", + "3 75 Female True 40 \n", + "4 92 Male True 20 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
student_idclass_levelsubjectstudy_hourstest_scoreweekattendance_rategenderhostelTshirt_size
01FreshmanMath578190MaleTrue30
12FreshmanScience365180FemaleFalse20
23FreshmanHistory470185MaleTrue20
34FreshmanLanguage260175FemaleTrue40
45SophomoreMath682192MaleTrue20
\n", + "
" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 3 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T04:26:27.915093Z", + "start_time": "2025-11-14T04:26:27.749332Z" + } + }, + "cell_type": "code", + "source": [ + "sns.lineplot(data=student, x ='week', y = 'attendance_rate',errorbar=None\n", + " ,hue='gender')" + ], + "id": "d9c56d9d5edd9823", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 7 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T04:30:53.519568Z", + "start_time": "2025-11-14T04:30:53.283984Z" + } + }, + "cell_type": "code", + "source": [ + "sns.relplot(kind='line',data=student, x ='week', y = 'attendance_rate',errorbar=None\n", + " ,hue='gender')" + ], + "id": "34a8f65ac474b68", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 9 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T04:32:11.995879Z", + "start_time": "2025-11-14T04:32:11.675555Z" + } + }, + "cell_type": "code", + "source": [ + "sns.relplot(kind='line',data=student, x ='week', y = 'attendance_rate',errorbar=None\n", + " ,hue='class_level')" + ], + "id": "46a3b12a667c9954", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 10 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_16.2 Scatterplot using Seaborn_**", + "id": "675b8b1512528cc3" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T04:44:55.609589Z", + "start_time": "2025-11-14T04:44:55.390955Z" + } + }, + "cell_type": "code", + "source": "sns.scatterplot(data=student, x='study_hours', y='test_score',hue ='gender',style='class_level', size='Tshirt_size')", + "id": "3371b19df0e2df91", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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VQp79uxRwZQcd3JyyvHjElEOFHi/bSLShH379unkn4gLFy6kOzZkyBBdjx49zPZt2rRJnR8WFmbcd+DAAbUvJCRE3R80aJCua9euZt83YMAAnY+Pj/H+zz//rPPz89PFx8cbr8POzs74GFkxXMOGDRuM+9asWaP2xcXFqfvNmjXTPfPMM2bf169fP+N1yc+R8+XaDeQ5yT55fNOfs2LFCrPH8fLy0i1YsOCB10lEeYcjMkSUoTp16qBdu3Zqaqlfv36YN28ewsLCHurVkpGLxo0bm+1r2rSp2X1JInZwcFAjJ4apKBm5kdGa7JLREYMSJUqor6GhocZraN68udn5cl/255RMX5kaM2YMRo4cqUaVZKTm3LlzOX5MIsoZBjJElCEJJv7++2+VB1K9enV8+umnKp8kJCQk439M7k37SOKrQVJSUo5fXclbefrpp9V0UmJiIpYsWWI2NZQdptM5kssisptfk5Pn4eHhYXb/3XffxbFjx9CtWzf8888/6nUzBGRElD8YyBBRpiQIkNGKKVOm4MCBAyrIkA9m+ZqSkmJ2bkBAgPoqOTMGpgmzolq1aipPxtTOnTvT/VwZ1diwYQO++OILtRpIcnPyilzDtm3bzPbJfQk6svs8slK5cmW89tprWL9+vbrutPk+RJS3HPP48YjISkjAsXHjRnTs2BHFihVT92/duqUCgfj4eKxbt06tBpLVTD4+PqhYsSKCg4PVqMT06dNx+vRplXBr6pVXXlGB0axZs9CjRw/1GH/99Ve6ny0/o0mTJnjzzTfVaIysmsorsupKkpXr1aunpoBWrVqF33//XQVOQn6W/GyZGipXrpyaknr77bcf+LhxcXHqsfv27au+78qVKyrpt0+fPnl27USUgTzMtyEiK3L8+HFdp06ddAEBAToXFxdd5cqVdZ9++qk6FhoaquvQoYPO09PTLAl269atulq1aulcXV11LVu21P36669myb7iu+++05UqVUrn5uame+yxx3SzZs0yS/Y1PU++d/fu3dm+5uwkHIsvvvhCV758eZ2Tk5N6XosWLUr33Js2baqusW7durr169dnmOxr+nMSEhJ0AwcO1AUHB+ucnZ11QUFBulGjRhmTjIkof9jJfzIKcIiILGnq1Kn49ddfcfjwYb4RRJQp5sgQUaESHR2t6rt89tlnePnlly19OURUyDGQIaJCRYrlSUXcNm3apFut9Pzzz8PT0zPDTY4Rke3h1BIRaYYk3kZGRmZ4TFoCSFIyEdkWBjJERESkWZxaIiIiIs1iIENERESaxUCGiIiINIuBDBEREWkWAxkiIiLSLAYyREREpFkMZIiIiEizGMgQERERtOr/qOe2KWCL6/EAAAAASUVORK5CYII=" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 15 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T04:47:05.942056Z", + "start_time": "2025-11-14T04:47:05.459467Z" + } + }, + "cell_type": "code", + "source": [ + "tips_data = sns.load_dataset(\"tips\")\n", + "\n", + "tips_data.head()" + ], + "id": "86c1256d3df7293d", + "outputs": [ + { + "data": { + "text/plain": [ + " total_bill tip sex smoker day time size\n", + "0 16.99 1.01 Female No Sun Dinner 2\n", + "1 10.34 1.66 Male No Sun Dinner 3\n", + "2 21.01 3.50 Male No Sun Dinner 3\n", + "3 23.68 3.31 Male No Sun Dinner 2\n", + "4 24.59 3.61 Female No Sun Dinner 4" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
total_billtipsexsmokerdaytimesize
016.991.01FemaleNoSunDinner2
110.341.66MaleNoSunDinner3
221.013.50MaleNoSunDinner3
323.683.31MaleNoSunDinner2
424.593.61FemaleNoSunDinner4
\n", + "
" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 16 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T04:50:17.871177Z", + "start_time": "2025-11-14T04:50:17.545003Z" + } + }, + "cell_type": "code", + "source": [ + "sns.relplot(kind='scatter', data =tips_data, x = 'total_bill', y = 'tip', hue='sex',\n", + " style='time',size='size')" + ], + "id": "8f3e10566369ff41", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 21 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_16.3 Facet Plot Using Seaborn_**", + "id": "1501f50c47b2f58e" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T04:57:47.940424Z", + "start_time": "2025-11-14T04:57:47.926742Z" + } + }, + "cell_type": "code", + "source": [ + "student = pd.read_csv('student_dataset_complete.csv')\n", + "student.head()" + ], + "id": "b9599948adf9d641", + "outputs": [ + { + "data": { + "text/plain": [ + " number_courses time_study Marks student_id class_level subject \\\n", + "0 3 4.508 19.202 1 10 Science \n", + "1 4 0.096 7.734 2 12 Math \n", + "2 4 3.133 13.811 3 11 Science \n", + "3 6 7.909 53.018 4 10 Science \n", + "4 8 7.811 55.299 5 11 English \n", + "\n", + " study_hours test_score week attendance_rate gender hostel Tshirt_size \\\n", + "0 4.508 19.202 2 0.89 F 0 2 \n", + "1 0.096 7.734 3 0.98 M 0 3 \n", + "2 3.133 13.811 5 0.83 F 0 3 \n", + "3 7.909 53.018 4 0.92 F 1 4 \n", + "4 7.811 55.299 3 0.80 M 1 4 \n", + "\n", + " class_name \n", + "0 Sophomore \n", + "1 Senior \n", + "2 Junior \n", + "3 Sophomore \n", + "4 Junior " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
number_coursestime_studyMarksstudent_idclass_levelsubjectstudy_hourstest_scoreweekattendance_rategenderhostelTshirt_sizeclass_name
034.50819.202110Science4.50819.20220.89F02Sophomore
140.0967.734212Math0.0967.73430.98M03Senior
243.13313.811311Science3.13313.81150.83F03Junior
367.90953.018410Science7.90953.01840.92F14Sophomore
487.81155.299511English7.81155.29930.80M14Junior
\n", + "
" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 23 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T05:00:04.823540Z", + "start_time": "2025-11-14T05:00:04.685020Z" + } + }, + "cell_type": "code", + "source": "sns.scatterplot(data= student, x = 'study_hours', y='test_score', hue='gender')", + "id": "b331d7e6d86eb723", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 25 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T05:03:08.111673Z", + "start_time": "2025-11-14T05:03:07.292207Z" + } + }, + "cell_type": "code", + "source": "sns.relplot(kind='scatter',data= student, x = 'study_hours', y='test_score', hue='gender', col='gender', row='hostel')", + "id": "30eaef8d07772274", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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YxBAANgvt9utX/3qV7r66qsZrf+pqalRbW2tbePx8ccfWy+O6o9//OMfjD0AhACuqR1/Te3cubNmzpzZ5NwLL7xgnQfQsQgggDYwF8dbbrlFaWlpysnJ0Z133tmkfePGjda+vYmJiUpOTtbZZ5+tvLy8hvZly5Zp9OjRSkpKstrNVjvffPONPvvsM02aNMna/7f+E+/6+66srNRNN91kXSQTEhJ01FFHWbfvSHfddZemTp2qQw891Kf3a95Yn3baaYqLi1PPnj318ssvq0ePHnrssccablNQUKBf//rXyszMtMbshBNOsMaxnhmnww47TC+++KL1uy6XS+eee66Ki4sbblNaWqqLL77Yel5yc3P18MMPN+vL/sa5/tO0//znPzrooIMUExNjPd92SU9Pt/6N1R/mcQFAKOGayjW1o66pl1xyiaZPn97knPnZnAfQsQgggDYwabl5c/rVV1/poYce0t13362PPvqo4YWUCR92796tuXPnWufXrl2rc845p+H3L7jgAnXp0kWLFi3S4sWL9bvf/U5RUVHW8gbzptu8wa7/xNu8GTauvfZaLVy4UK+88oqWL19uzUQ45ZRTtGrVqlb3++CDD7befHs7xo0b55d/ByYU2Lp1q/VG/1//+peeeeYZ7dixo8ltzOM159577z1rzI444gideOKJ1jjXW7Nmjd566y2988471mHG/4EHHmhov/nmm61z//73v/Xhhx9af2/JkiVN/k5rxrmsrEwPPvignnvuOX333XfKyspq8XHta6zNcdVVV/lwFAEgOHFN9S2uqd798pe/1J49ezR//nzrZ/PV/Hz66af7+FkAsF8eAK1y3HHHeUaNGtXk3JFHHun57W9/a33/4YcfepxOp2fjxo0N7d99953H/Gf29ddfWz8nJSV5ZsyY0eL9T58+3eNyuZqc27Bhg3WfW7ZsaXL+xBNP9Nx6661ef+/n1q9f71m1apXXY/Pmza0ag9b8rca3NWPmzQ8//GCNzaJFixrOmb6Yc48++qj18+eff+5JTk72VFRUNPnd3r17e55++mnr+zvuuMMTHx/vKSoqami/+eabPUcddZT1fXFxsSc6Otrz2muvNbTn5+d74uLiPNdff32bxtn0benSpft97Psaa3Pk5eV5/d1169ZZf8f0LyEhoeFYsmTJfv8uAAQLrqlcUzvymvrtt996brjhBs+kSZOs8+br1KlTrfOm3dwOwF6XXHKJ9d/Gzw/z31x7Re4/ogBQb9CgQU0Gw0znr//E/ocfflDXrl2to56ZVmim7Zu2I488UtOmTbOWE5jlAmPGjLE+Ze/du7fXAV6xYoW1LrJfv37NlguYKfqt1b1794B7EleuXGkVfzIzGur16dNHqampDT+bpRYlJSXNHmt5ebk166GeWXphlrW09LyY25n1tmZJRT2zhKZ///5tHufo6Ohm/wZaYh5He7366qsaOHBgw8+N/10BQCjgmuo7XFP377LLLrNmnN53332aNWuWNeuxurrah88CYJ9Nu8v0yqKN2ri7XN3S4nTukd3UNS3e1iE3M4F/vnTJLIluLwIIoA3MconGTK2GthRNMvUKzj//fM2ePdtaUnDHHXdYU/7PPPPMFm9v3nybys1m6YH52piZyt+WJRgbNmzw2n7MMcdY/Qk05vGbMKGlmheNd+No7/PS2nE2tSrMfe/P/p4bs6PFU089tc/bmMDBF0EGAAQqrqkdK5yvqYapYzVgwACdd955VsB/yCGHaOnSpfv9PcDfXl+8Wb/913LV1JpJCHWenrtWD0wcpLOGdLHt75raLKYOma8RQAA+Yi5mmzZtso76T6u///57q4iimQlRz3zKbg5T1NFcBE2yaAII8+m6+RS+scMPP9w6Zz7NNyHBgXr33XdVVVXltd28COhoZgaC+eTh22+/tYpxGqtXr7bWZNYzsyO2b99uzZQwsxwOhJlhYl5Mmbod3bp1s86Zv/HTTz/puOOO8+k419vfCxpT6wMA4B3X1Lbhmtr6WRDXXHONnnzySf7zQ9DMfPjtz8IHo7rWo9/9a7mO6plm+0wIXyOAAHzELKkw6bopNGkKSpo31+YiZ97kDh061Fo2YIohnnXWWdaOD5s3b7aKUU6cONH6ffMG23xqMGfOHA0ePFjx8fFWUGHuzxSWMjs3mDfKO3futG5jpq6aHSQ6YgmGqUxtij6ar+aNev0bbPMJfVtmYjRmPoUwY3bFFVdYLwRMSHDjjTc2+UTEtI8YMUJnnHGGVfTTjIcpWmlmkJjQxozr/pj+TZ482Rp7s5zCFI78/e9/r4iIvTV4fTXO9Zi5AADtwzW1bbimts7ll19uLX9tPOMDCGSvLNrYLHxoHEKY9pvHDrDlb5vC7o1f55ui9Wb5UnuxCwbgI+ZNs9llwdQwOPbYY60XT7169bLW8htmGmJ+fr71Jte84TVbdJr/kM0Wl4ZZl2h2RzC7Zpj1VeYNt2FmSJjfMW/OzScc5s24CS7qP83vCLfffrv1ptwsGTEhifneHGYL0fYwe3JnZ2db42UCBfPCwNRyiI2NbRhTM3vDtJttSs24mS02zXIS83ut9ec//9ma2WCqXZvnZdSoUQ2zLuoFwjgDAOpwTW07rqn7Z2ZUZmRkWF+BYLBxd/k+2zftp709Ro8ebX3oWH88/vjjPrlfh6lE6ZN7AoBGZsyYYR0trTX1xswKMctXPv74Y2urTQAAwDUVCFd//uBH/ePTvYXXf27K6N62zIC49NJLrWXkZpt7XyP+A+A3n3zyiTWjwixd2bZtm2655RZrKYqZ8QAAALimAuHs3CO7WQUnzXKLn4uMcFjtwYYlGAD8xhTGvO2226xdOswSDLP0xMyY+HkFbgAAwDUVCDdd0+Kt3S5M2NCY+fnBiYOCrgClwRIMALaoXy9mpnABAACuqQAOfDcMU3DS1HzomhZnzXywM3ywcwkGAQQAAAAAALAdSzAAAAAAAIDtQj6AMJt8FBUVWV8BAADXVwAA4B8hH0AUFxfL5XJZXwEAANdXAADgHyEfQAAAAAAAAP8jgAAAAAAAALYjgAAAAAAAALYjgAAAAAAAALYjgAAAAAAAALYjgAAAAAAAALYjgAAAAAAAALYjgAAAAAAAAJZLL71UDodDV111lX5uypQpVpu5zYEggAAAAAAAIFDtWS/NuVt6/bK6r+Znm3Xt2lWvvPKKysvLG85VVFTo5ZdfVrdu3Q74fiN91D8AAAAAAOBLS1+W/n2t5KnZe27BX6Vf/k067HzbxvqII47QmjVr9MYbb+iCCy6wzpnvTfjQs2fPA75fZkAAAAAAABBo9qxvHj4YtdXSf66zfSbEZZddpunTpzf8/M9//lOTJk1q130SQAAAAAAAEGiWzGwePjQOIUy7jS688ELNnz9fGzZssI4FCxZY59qDJRgAAAAAAASaPfuZ4bBng61/PjMzU6eddppmzJghj8djfZ+RkdGu+ySAAAAAAAAg0KT22E97d9u7YJZhXHvttdb3//jHP9p9fyzBAAAAAAAg0BxxsRThZc6AOW/abXbKKafI7XarqqpKY8eObff9MQMCAAAAABC8qt1S0RZpzSdS/mqp+9FSp8MkVxcF/QyIX/6truCkqfnQOHz45d/3P0PCB5xOp3744YeG79uLAAIAAAAAEJxqqqWNC6WXzpJq3HXnvnxCSu4kXTpbSuuloHbY+VL3kXUFJ03NB7Pswsx86IDwoV5ycrLP7svhMdUkQlhRUZFcLpcKCwt9OnAAAIQzrq8AgIBQsFF6YoTkLmne1uMY6Zz/J8Wl+KNnaAE1IAAAAAAAwWnX6pbDB2P951JZfkf3CPtAAAEAAAAACE4VBftur1+WgYBAAAEAAAAACE7ZB3tvS8ySYlwd2RvsBwEEAAAAACA4JWRKh5zVctvJ90lJOR3dI+wDAQQAAAAAIDjFp0mn3C+d9CcpPr3uXGZ/6fxZUt+TpQje8gYStuEEAAAAAAQvs9RixBTp0LOk2hopMqbuHAIOAQQAAAAAILhFOKXkTv7uBfaD+SgAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2kfb/CQAAsC/5pZXaXlih5ZsLlZEYrYG5ycpOilVUJJ8TAACA0EEAAQCAH+UVVWjaa0u1YHV+w7m4KKeev3SohnZPVXSkk+cHAACEBD5aAQDAT9zVNXp+/rom4YNRXlWjSdMXaXtRJc8NAAAIGQQQAAD4ya4St/7flxtabKusrtU363d3eJ8AAADsQgABAICfVNXUqsxd47V9a0F5h/YHAADATgQQAAD4ian10C0t3mv7Ed1SO7Q/AAAAdiKAAADAT7KSY/X70wa22NY7M0G9sxI7vE8AAAB2IYAAAMCPhvdK0+PnHa6c5FjrZ2eEQ6cemqMXLhum7P+dAwAACAVswwkAgB+54qJ1+qBcDeuRqpLKGkU7HUpLiFZibBTPCwAACCkEEAAA+JnD4VCOK87f3QAAALAVSzAAAAAAAIDtmAEBAAAAAAhsZbulikLJESHFp0kxSf7uEQ4AAQQAAAAAIDDVuKW876V3b5I2L6oLIPqPk076k5Te29+9QxsRQAAA0Ao1NbXKK65UcUW1YqMilJ4Qo8RYLqMAANgqf630/El1QYThqZV+nF0XRvx6jpTSjScgiPDKCQCA/dhT6tY7y7fq4Y9+UkFZlSIc0kkHZev2XxykzqnxjB8AAHaoLJXmPbQ3fGisZIf004fSsF8z9kGEIpQAAOxDba1HH3y/XX/893dW+GCd80gffJeny15YpB1FFYwfAAB2qCyS1n/uvf2n96QqrsPBhAACAIB9yCuu0MMf/NRi28rtJdq4u4zxAwDADhGRUnyG9/bEbKl8j+TmWhwsCCAAANiHcneNdpZUem3/bmsR4wcAgB0SM6WR13tvN8UonxghffV03S4ZCHgEEAAA7EN0ZIRiIr1fLrukxjF+AADYpc8J0iFnNT9/zE3ShgVSxR5pzp3SxoU8B0GAIpQAAOxDRmKMzh7aVS9+uaFZW1JMpAbksA85AAC2ScySTn1IGnWDtPK9ul0wOh8hff8f6dsX997u03ulrkdJCftYsgG/I4AAAGAfYqOcmjK6j9btKtH81fkN511xUZp52TDluJgBAQCAreLTpbg0acXr0uqPpbkP1gURje1eK1V7XzKJwEAAAQDAfuS4YvX4eYcrr6hSq/KKrVkRPTISlJMcqwizJycAALCXw1FXdDLvvy23Z/SXImN5FgIcAQQAAK2QlhBjHQNzkxkvAAD8of+p0qf3SO7S5m0n3i4lpPujV2gDilACAAAAAAKfq4t0yTtSSve952KSpF88JnUe4s+eIRgCiDvvvFMOh6PJMWDAgIb2iooKTZkyRenp6UpMTNTEiROVl5fnzy4DAAAAAPzBGVlXgHLyh9JVC6QrPpOuXigdfoEUl8JzEgT8vgTj4IMP1scff9zwc2Tk3i5NnTpVs2fP1qxZs+RyuXTttddqwoQJWrBggZ96CwAAAADwq6ScugNBx+8BhAkccnKa/+MpLCzU888/r5dfflknnHCCdW769OkaOHCgvvzySw0fPtwPvQUAAAAAAEFZA2LVqlXq1KmTevXqpQsuuEAbN260zi9evFhVVVUaM2ZMw23N8oxu3bpp4cKFXu+vsrJSRUVFTQ4AANqroqpGeUUVyi8Jzy2+uL4CAICgDiCOOuoozZgxQ++//76efPJJrVu3Tsccc4yKi4u1fft2RUdHKyWl6Vqe7Oxsq82b+++/31quUX907dq1Ax4JACBU1dR6tG5Xqf709vc68x8LdN6zX+q1RZu0o6hC4YTrKwAAaC+Hx+PxKEAUFBSoe/fueuSRRxQXF6dJkyZZn7g0NmzYMI0ePVoPPvhgi/dhbt/4d8wMCBNCmCUdyclsnQYAaJvVO0o0/u/zVequaXL++P6Z+stZg5WRFBMWQ8r1FQAABH0NiMbMbId+/fpp9erVOumkk+R2u61QovEsCLMLRks1I+rFxMRYBwAA7VVSWaWH3v+xWfhgfLZypzbsLgubAILrKwAACPoaEI2VlJRozZo1ys3N1ZAhQxQVFaU5c+Y0tK9cudKqETFixAi/9hMAEB6Kyqs158cdXtvfWb61Q/sDAAAQzPw6A+Kmm27S6aefbi272Lp1q+644w45nU6dd955Vv2GyZMna9q0aUpLS7OWT1x33XVW+MAOGACAjuBwSJERDqsOREtio5w8EQAAAMEQQGzevNkKG/Lz85WZmalRo0ZZW2ya741HH31UERERmjhxorX2dOzYsXriiSf82WUAQBhJjY/WhMM76/8WbWqx/fRBuR3eJwAAgGAVUEUo7WCKUJrZFBShBAAciM27y3T20wu1tbDprheTR/XUdaP7KCUhOiwHlusrAAAI6iKUAAAEmi5p8Zp11Uh9vmqnZq/YppS4KF0ysod6ZyaGbfgAAABwIJgBAQBAK5W7a+SMcCg6MqBqOPsFMyAAAEBbMQMCAIBWioum6CQAAMCB4iMcAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgOwIIAAAAAABgu0j7/wQAAMGjoqpGO4srVVBWpbjoCKUlxCgtIdrf3QIAAAh6BBAAAPzPrpJK/XP+Oj0/f50qq2utc4d3TdFj5x6m7ukJjBMAAEA7sAQDAABJ1TW1mvXNJj3x2ZqG8MH4dlOBLnr+a20vrGCcAAAA2oEAAgAASTuKK/Xk3DUtjsXG3WXakF/KOAEAALQDAQQAAJLK3TUqKq/2OhY/7ShmnAAAANqBAAIAAEmxURGKi3J6HYse1IAAAASiyhKpOE8qL/B3T4D9IoAAAEBSZlKMLhnZvcWxyEyMUZ/MRMYJABA43KXStmXSG1dIz50ovXK+tOZTqXyPv3sGeEUAAQCApOhIpy4b1VPjD+vUZDy6psXppcuPUm5KHOMEAAgMHo+0foH0zHHSytlS4SZpwwLpxTOkJS/WhRNAAHJ4POZfb+gqKiqSy+VSYWGhkpOT/d0dAECAKyqvUn5JpfKKKpUUF6mMxBhlJ8f6u1sBh+srAPhR0Vbp2ROk4m3N2yIipesWS6k9/NEzYJ8i990MAEB4SY6Lso6eLLkAAASq8t0thw9GbbWUv5YAAgGJJRgAAAAAEEwc3osmW5xRHdUToE0IIAAAAAAgmMSlSem9W26LipdSf1ZUuaKobqeMSraUhn8RQAAAAABAMEnKls58Ror8WY0ih0Ma/w8pMbvu5/JCacNC6bWLpOfHSK9fJm1eXLd1J+AH1IAAAAAAgGCTe5h09RfS0pekTV9L6X2kYZfX1X6IjJGqK6Xv35Le/s3e3ynYKK36UPrVDGnA6ZKTt4PoWPyLAwAAAIBgY8IDswzj+N9L1eV1oUPj2g8ledL7v235d9+ZKnU5UnJ16bDuAgZLMAAAAAAgWDmdUkxi88KTpuZDVXnLv1O+Ryrd1SHdAwIygHjggQfkcDh0ww03NJyrqKjQlClTlJ6ersTERE2cOFF5eXl+7ScAAAAABKSaaqksX6ooliL281YvYj87aXg8UlWFVFvr0y4ivAVEALFo0SI9/fTTGjRoUJPzU6dO1dtvv61Zs2Zp7ty52rp1qyZMmOC3fgIAAABAwDFhwe710mf3SzPHS6+cJzljpNiUlm+flCvFp7fcVlsj7V4nzX9EevUC6cM/SDtXSu4yWx8CwoPfa0CUlJToggsu0LPPPqt77rmn4XxhYaGef/55vfzyyzrhhBOsc9OnT9fAgQP15Zdfavjw4X7sNQAAAAAEiPzV0vMn1S2tqDd7mnTaw9Ibl0ueRrMYzFKNCc/WhRAt2b5CmnGq5C6t+3n1x9JXT0pnvyj1PVmKjLb5wSCU+X0GhFlicdppp2nMmDFNzi9evFhVVVVNzg8YMEDdunXTwoUL/dBTAAAAAAgwlcXSx3c2DR+MTV9J370pXTFXOvJyqccoacS10tULpa5H1W3Z+XMlO+oCi/rwoZ4JMN68QirZbu9jQcjz6wyIV155RUuWLLGWYPzc9u3bFR0drZSUptOGsrOzrTZvKisrraNeUVGRj3sNAED44foKAAGqvEBa+W7LbT++I+UMkk65X6qukCLj9r31ZtluaddPLbeZUGLPBimlm2/6jbDktxkQmzZt0vXXX6+XXnpJsbGxPrvf+++/Xy6Xq+Ho2rWrz+4bAIBwxfUVAAJYS7MZGs9eMMsuYpL2HT5Yt63ed3vN3g96gaAKIMwSix07duiII45QZGSkdZhCk48//rj1vZnp4Ha7VVBQ0OT3zC4YOTk5Xu/31ltvtepH1B8m6AAAAO3D9RUAAlRcqtT/VO/tA05rw32lSYnZ3nfNSOvT9v4BgbAE48QTT9SKFSuanJs0aZJV5+G3v/2tNXMhKipKc+bMsbbfNFauXKmNGzdqxIgRXu83JibGOgAAgO9wfQWAABWTKJ14p7R+fvM6EEdcIrm6tP6+EnOkXzwqvXJ+87bjficlZLS/vwhrfgsgkpKSdMghhzQ5l5CQoPT09IbzkydP1rRp05SWlqbk5GRdd911VvjADhgAAAAA8D/pvaUrPpOWviz99H7d9psjfyN1OkyKT2v9MEVESD2Pk349R/rkXilvueTqJh33W6nrsLqwAwjmbTj35dFHH1VERIQ1A8IUvxo7dqyeeOIJf3cLAAAAAAKrBkRqD+nYW6SjrpSc0XU1Hw6ECRm6DJXOniG5y6TImLaFGMA+ODwej0chzOyCYYpRmnoQZhYFAADg+goAAMKoCCUAAAAAAAgfBBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAMB2BBAAAAAAAIAAAgAAAAAABD9mQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAANsRQAAAAAAAgMANINxut1auXKnq6mrf9ggAAAAAAIScNgcQZWVlmjx5suLj43XwwQdr48aN1vnrrrtODzzwgB19BAAAAAAA4RZA3HrrrVq2bJk+++wzxcbGNpwfM2aMXn31VV/3DwAAAAAAhIDItv7CW2+9ZQUNw4cPl8PhaDhvZkOsWbPG1/0DAAAAAADhOANi586dysrKana+tLS0SSABAAAAAABwwAHE0KFDNXv27Iaf60OH5557TiNGjGjr3QEAAAAAgDDQ5iUY9913n8aNG6fvv//e2gHjr3/9q/X9F198oblz59rTSwAAAAAAEF4zIEaNGmUVoTThw6GHHqoPP/zQWpKxcOFCDRkyxJ5eAgAAAACA8JkBUVVVpSuvvFJ//OMf9eyzz9rXKwAAAAAAEL4zIKKiovSvf/3Lvt4AAAAAAICQ1OYlGGeccYa1FScAAAAAAIBtRSj79u2ru+++WwsWLLBqPiQkJDRp/81vftPWuwQAAAAAACHO4fF4PG35hZ49e3q/M4dDa9euVSApKiqSy+VSYWGhkpOT/d0dAABCAtdXAABg+wyIdevWtfmPAAAAAACA8NbmAKKx+skTZuYDAAAAAKCdamul4q1S0RapokhK6yUlZEixLoYW4VeE0pg5c6YOPfRQxcXFWcegQYP04osv+r53AAAAABAuaqqlrYulp4+Vnj9Zeuks6W9HSB/+QSrZ4e/eAR0/A+KRRx7RH//4R1177bU6+uijrXPz58/XVVddpV27dmnq1Knt7xUAAAAAhBsz62HmeMld2vT8kplSel9pxBQpwumv3gH+KUJ511136eKLL25y/oUXXtCdd94ZcDUiKJIFAADXVwAICstekd68suW2+HTpqvlScqeO7hXgvyUY27Zt08iRI5udN+dMGwAAAADgAOxc6b2tLF+qqWJYEV4BRJ8+ffTaa681O//qq6+qb9++vuoXAAAAAISXLkd6b0vpLkXGdGRvAP/XgDDLL8455xzNmzevoQbEggULNGfOnBaDCQAAAABAK+QOkpJypOLtzdtOvL2uDQinGRATJ07UV199pYyMDL311lvWYb7/+uuvdeaZZ9rTSwAAAAAIda4u0iWzpc5H7D0Xkyyd+mep9wn+7BngnyKUwYYilAAAcH0FgKBSml9X86G6QopLrZv54Izyd6+Ajl+C8e6778rpdGrs2LFNzn/wwQeqra3VuHHj2t8rAAAAAAhXCel1BxDuSzB+97vfqaamptl5M5HCtAEAAAAAALQ7gFi1apUOOuigZucHDBig1atXt/XuAAAAAABAGGjzEgyXy6W1a9eqR48eTc6b8CEhIcGXfQMA+FFReZV2Fldq4dp81Xo8Gtk7XZlJMXLFRfO8AAAAwP4AYvz48brhhhv05ptvqnfv3g3hw4033qhf/vKXbe8BACDg7Cl16/n56/T3T5vObLv8mJ665vjeSk1gH3IAAADYvATjoYcesmY6mCUXPXv2tI6BAwcqPT1df/nLX9p6dwCAdqiuqdW2wnJt2VOm3aWVPhvLlXnFzcIH49nP1+m/W4p89ncAAAAQPg5oCcYXX3yhjz76SMuWLVNcXJwGDRqkY4891p4eAgBalFdUoZe+2qgZX6xTUXm1Du6UrNt/cZAO6eRSQmyb//feoMxdrWfmrfHa/uTcNTqsW4qSYtkODAAAAK13QK9QHQ6HTj75ZOswCgoKDuRuAAAHaFdJpaa9tlQLVuc3nPtua5HOeeZLvTh5mI7pm3nAY+uurtXOYvc+/3ZVTe0B3z8AAADCU5uXYDz44IN69dVXG34+++yzreUXnTt3tmZEAADst7WgvEn40Nid//nOKh55oBJjInVs3wyv7Uf3ybBuAwAAANgaQDz11FPq2rWr9b1ZhmGO9957T+PGjdPNN9/c1rsDAByARev3eG1bs7NUJZXVBzyukc4InX1k1xZDhrgopy4Z0UPRkc4Dvn8AAACEpzYHENu3b28IIN555x1rBoRZinHLLbdo0aJFbbqvJ5980qofkZycbB0jRoywwox6FRUVmjJlijXDIjExURMnTlReXl5buwwAISc13nv9hcgIh3W0R9fUeP3r6pEa3iut4dyRPVL1xjUj1SU1rl33DQAAgPDU5jm0qamp2rRpkxVCvP/++7rnnnus8x6PRzU1NW26ry5duuiBBx5Q3759rd9/4YUXrG0+v/32Wx188MGaOnWqZs+erVmzZlnFL6+99lpNmDBBCxYsaGu3ASCkDO2eaoUM1bWeZm2nDcpVekJ0u+4/IsKh/jlJeurCISosr7LOueKilBLfvvsFAABA+HJ4zDv/NjAhgJn5YEIDExSsX7/emp3wyiuvWFt0LlmypF0dSktL05///GedddZZyszM1Msvv2x9b/z444/Wlp8LFy7U8OHDW3V/RUVFVnhRWFhozbIAgFBQUVWjT1fu0JSXlqhxBtEzI8EqQtklNd6f3UMY4PoKAABsnwHx6KOPqkePHtYsCBM4mPDB2LZtm6655hodKDN7wsx0KC0ttZZiLF68WFVVVRozZkzDbQYMGKBu3brtM4CorKy0jsYvkAAg1MRGOXV8/yx9cuPxmvNjnrYWVGhU3wwNzElSjoslEvA9rq8AAKDDA4ioqCjddNNNzc6b5RKNnXbaaXruueeUm5u7z/tbsWKFFTiYeg8mzHjzzTd10EEHaenSpYqOjlZKSkqT22dnZ1t1KLy5//77ddddd7X1YQFA0DEFIXtkJGjyqF7+7grCANdXAADQ4UUoW2vevHkqLy/f7+369+9vhQ1fffWVrr76al1yySX6/vvvD/jv3nrrrdZyi/rDzNQAAADtw/UVAAC0l983cjezHPr06WN9P2TIEGsnjb/+9a8655xz5Ha7VVBQ0GQWhNkFIycnx+v9xcTEWAcAAPAdrq8AACBgZ0AcqNraWmudqQkjzHKPOXPmNLStXLlSGzdutJZsAAAAAACA4BHp7+mc48aNswpLFhcXWztefPbZZ/rggw+snSsmT56sadOmWTtjmB0srrvuOit8aO0OGAAAAAAAIDD4NYDYsWOHLr74YmsHDRM4DBo0yAofTjrppIYdNyIiIjRx4kRrVsTYsWP1xBNP+LPLAAAAAADgADg8Hk+jHeR9JykpScuWLVOvXv6tzs4+5QAAcH0FAABBWAPC7G5RXV3d7Lw5Z9rq3XbbbdbSCQAAAAAAgDbPgHA6ndaSiaysrCbn8/PzrXM1NTUBNarMgAAAgOsrAAAIwhkQJq9wOBzNzpsAIiEhwVf9AgAAAAAA4ViEcsKECdZXEz5ceuml1n7g9cysh+XLl2vkyJH29BIAAAAAAIRHAGF2qaifAWEKTMbFxTW0RUdHW1tjXn755fb0EgAAAAAAhEcAMX36dOtrjx49dNNNN7HcAgAAAAAA2FcD4pZbbmlSA2LDhg167LHH9OGHH7b1rgAAAAAAQJhocwAxfvx4zZw50/q+oKBAw4YN08MPP2ydf/LJJ+3oIwAAAAAACLcAYsmSJTrmmGOs719//XXl5ORYsyBMKPH444/b0UcAAAAAaLvaWqlwi7T5G2nd59LudVJlCSMJBHoNiHplZWVWEUrDLLswu2NERERYRShNEAEAAAAAfldTLW35Rnr1Aql0V925CKc0fIp09PVSQoa/ewiEnTbPgOjTp4/eeustbdq0SR988IFOPvlk6/yOHTuUnJxsRx8BAAAAoG2KNkszx+8NH4zaGumLx6Wf3mc0gWAIIG6//XZrFwyzG4ap/zBixIiG2RCHH364HX0EAAAAgLZZ9ZFUXdFy29wHpeLtjCgQ6EswzjrrLI0aNUrbtm3T4MGDG86feOKJOvPMM33dPwAAAABou7z/396dwEdV3f0f/04mM5N1QhKyEpawCQqCsgtYF9S68ID4KO4oVO1Td9SqtVb5q9Xa2keL2qrlAZe61F1sRRFxQQUEUVYRNAhCIGzZ92T+r3OnBGISIDCTmbn5vF+vS5h7JjPnnpvMyf3dc35ndctlhRul+lpaFQj3ERCGSTxp8kDMnTtXFRUV1r4hQ4aoT58+ga4fAAAAALRe5yEtl3XsLTndex9XlUjF+Y2nawAIfQBi586d1miH3r1764wzzrBGQhhTpkzRTTfdFPgaAgAAAEBrdRslxSY3XzbmbikhXaqpkPKXS69eIT0xWnp2vLTqdalsO+0NhEMA4sYbb5TL5dLGjRsVFxfXsH/ixImaM4dkLgAAAADCQFJn6bJ/S2n7jNL2eKUzHpK6HOd/bFbJeOoE6dt3/EGHrSukly+TPnpQqigMWdUBu2p1DgiTbNKsfpGTk9Nof69evViGEwAAAIgkZTulyt2SHP7RAnEpsg2HQ8o4Upo0WyrfKdVVS7EpUmKm5HRJpduk2Tf4V8b4qcVPSkOvlGI7hKLmgG21OgBRVlbWaOTDHrt27ZLH4wlUvQAAAAAES22NVLDSfwGe/5V/X85QaezD/hEDUU77tL2ZamG2n6ooknaub/n7Ni+VOvYKatWA9qbVUzBGjx6tZ555puGxw+FQfX29HnzwQZ144omBrh8AAACAQCvcIP3faXuDD8aPi6UZp/pXiGgPDhRkiY5pq5oA7UarR0CYQINJQrlkyRJVV1fr17/+tVatWmWNgPj000+DU0sAAAAAgVFbKX32qFRb1bSsulRa9px0wu2Ss9WXCpHFTDnpPFzatLBpWVS0lD0wFLUCbK3VIyC8Xq/WrFmjUaNGady4cdaUjAkTJmjZsmVWckoAAAAAYayyWNq4nxuHeR/6AxF2Z/JdjH2k+ZUyxv5Fim9m2gaAw9LqsGZubq619OYdd9zRZHlOk5iyrq6ZJC4AAAAAwoOZWpCQKe1Y13x5YrYU3U5yu6UdIV35kfTNv6Tv5knJ3aTBk6UOXSV307x3ANo4AOHz+ZrdX1paqpgY5kkBAAAAYS3GK426UdrwSfPlx10ruWLVLpiVMpK7SiN+5Q88mNUx7JSAE4jUAMTUqVMbkk7+7ne/a7QShhn1sGjRIg0cyDwpAAAAIOxlDZRG3iB9+nDji/GT7mq/Kz+4uJkKhE0AwuR42DMCYsWKFXK73Q1l5v8DBgzQzTffHJxaAgAAAAic+FRp1FTpmIuljQv9d/07D/MvV+lJpKUBhDYAMX/+fOvr5ZdfrkceecRKRgkAAAAgQsUm+bf2OuIBQPjngJg5c2ZwagIAAAAAAGyr1ctwAgAAAAAAtBYBCAAAAAAAEHQEIAAAAAAAQNARgAAAAAAAAEFHAAIAAAAAAAQdAQgAAAAAABB+y3ACwE+VVdYqv7hS763aqu2lVTrpiHT1zkxUhjeGxgIAAABgIQAB4LCUVdXq7RVbdOurKxr2zfx0g/pkJmrm5UOUlRRLCwMAEArFW6SCNdLmpVJKDylnsOTtJDm5BAAQGnz6ADgs24orGwUf9vhma4me/Ph73X56H7mjnbQyAAAHo7ZaKt0mFW6U6qqk5FwpIV1yx7eu/XblSc+Mkwp/2LvPvMYlb0qdjpWi6JsBtD1yQAA4LO+v2dZi2YuLN2lHaTUtDADAwaipkL7/QHp8uDTrDOnZs6VHB0ufPyaV7zr4NqzYLc2+rnHwwaguk54/VyrJ53wACAkCEAAOy66ylgMMFTV1qvf5aGEAAA6GGfXw4oVSdeneffW10vz7pE2LDr4Ny3dKeR+30Dnvlnb/JDABAG2EAASAw3JC7/QWy47p0kHxHmZ6AQBwQCZgv+w5qb6u+fKP/nDwoyBqKvdfboIQABACBCAAHJbuafEakJPU9MPFId111pFKjnPTwgAAHEhdtbT9m5bLzXSK2gMEFvaITZJiOrRc3rEX5wNASBCAAHBY0r0xeuKSwfrlz7or4T+jHQZ3S9ZrvxqpPlleWhcAgIMR7ZG6HNdyeUY/yRV3cG2ZkCWd/Lvmy446W4pvefQiAASTw+ez9wTt4uJiJSUlqaioSF4vF0NAsNTU1VkJJ+t9UrzbqQ6MfABsjf4VCAKzcsXfRvqTRf7UlLlS56EH/1pmusb696V506SiH6WYJGnYL6XBk6XEzIBWGwAOFgEIAADQagQggCAw+R+2rpBe+4W0Y51/X3yadOafpR4nSZ6E1r+mWfHC5IRwuqSETMlJbiYAocMnEICgq6/3aVtxpXaVV8shKTXeo3SvRw6HeQQAACxRTil7oHTZv/0rWZgVMGJTpMQsKeoQZ06b7wWAMEEAAkBQlVfX6rPvduq2V5dbUzSMrKQY/e/EgTq2Swe5o52cAQAA9pWQ7t8AwGZIQgkgqPJ2lOmKZ5Y0BB+M/KJKXTJjkTbtqqD1AQAAgHaCAASAoCmvqtVjH6y3ljb/qZo6n55duMFKXgkAAGymrsY/hQQA9sEUDABBU1ZdqzVbS1osX/5jsSqq6+WKZRoGAAC2YJJebv5SWvacFB3jX3UjrY+UkBbqmgEIAwQgAARNjMupbqlx1jSM5vRMj7eeAwAAbKA4X3rxQmnLl3v3rXpNOuoc6fQHyGsBgCkYAIInMcala07q2WyZWQBj8shcuaOZCQYAQMQz8y1Xv9E4+LDHqlelgtWhqBWAMMNf/gCCqnd6oh44p79iXHs/bhI80Xr8wmPVJTWO1gcAwA7KtktLZrRcvvhJqbaqLWsEIAwxBQNAUCXGunT2wE4a1bOjtfpFlEPK9MYozeuR28n0CwAAbDMCYn8BhppKyVffljUCEIYIQAAIOo/LqZzkOGsDAAA2U1ftX/Wi9xnS4r81/5yBF0qu2LauGYAwwxQMAAAAAIc+8uHHJdKjg6Xep0rxHZs+J+0IqcsIWhgAIyAAAAAAHMaym69MlmorpH/fLJ39pLT6TenbOZLTLR17iTTwYimpE00MgAAEAAAAgENUtsMfhDB2fS89f57U5yzp+Jul+jqp+0kEHwA0IAcEAAAAgEPjq2v8uL7Wvxyn2Ywp79OyABoQgAAQMCWVNdpRWq3Nu8uVGONSutdjrXjhcDhoZQAA7Ciuo+TxSlXFTctccVJiRihqBSBMEYAAEBDbS6r05/fW6sUlm6x8VEZ6okczJg3RUdleRZn1NwEAgL0kZkpn/FF6/aqmZafeK8UTgACwF6tgADhsdXX1enXpJr3wxd7gg1FQUqULn1qoLUUVtDIAAHbkdElHnCFdPkfqNkpKSPeveDFpttTvHMnlCXUNAYQRRkAAOGwm0PC3j79vtqykqlZfbypUTnIcLQ0AgB3FeKWuI6SJ/5BqKiRXjBSbHOpaAQhDBCAAHLbqunoVlte0WL6+oJRWBgDA7mI7+DcAaAFTMAAcNk+000o22ZL+nZJoZQAAAKCdIwAB4LBleD2aemrvFsv6ZnlpZQAAAKCdIwAB4LCZZTbH9E3Xbaf3UZzb2WjkwwtXDFdWh1haGQAAAGjnyAEBICBS4j2aPLKbzjo6y8oH4XFFKTXebe0HAABhrnS7VFslRTmlhAwpivuUAAKPAASAgHFHO63VLnJIfA0AQGSoLJJ+XCq9d4dUsFqK7ygdd7109EQpMSPUtQNgM4Q2AQAAgPbI55O+my89d7Y/+GCU7ZDm3im9e7tUvivUNQRgMyENQNx///0aMmSIEhMTlZ6ervHjx2vt2rWNnlNZWamrr75aqampSkhI0DnnnKNt27aFrM4AAACALZTkS3Nubb5s5atSaUFb1wiAzYU0APHRRx9ZwYWFCxdq7ty5qqmp0amnnqqysrKG59x4442aPXu2Xn75Zev5W7Zs0YQJE0JZbQAAACDyVRZLJVtbLt+6vC1rA6AdCGkOiDlz5jR6PGvWLGskxNKlS3X88cerqKhIM2bM0PPPP6+TTjrJes7MmTPVt29fK2gxfPjwENUcsI/KmjptL6nSuoISVdf61CczUakJbiXGuEJdNQAAEExO9/7LYzrQ/gDsm4TSBByMlJQU66sJRJhREWPGjGl4Tp8+fdSlSxd9/vnnBCCAw1RWVav3V2/TLa8sV3VdvbXP4ZB+dUJPTRmVq5T4A/xhAgAAIldcipR7gpT3YdMyV5yU3icUtQJgY2GThLK+vl433HCDRo4cqX79+ln7tm7dKrfbrQ4dGkdfMzIyrLLmVFVVqbi4uNEGoHmbdpfr+pe+agg+7MlH9dj89Vq2cTfNBoD+FbCz2A7S2P+VvJ0a73e6pPP/ISVkhqpmAGwqbEZAmFwQK1eu1IIFCw47seW0adMCVi/Armrr6vXc5z+0WP6Xeet0bJdkJTMKAgD9K2BfKd2lKe9JW5ZJeZ9IqT2kXqf4gxLRjIQEYMMRENdcc43efvttzZ8/Xzk5OQ37MzMzVV1drcLCwkbPN6tgmLLm3H777dZUjj3bpk2bgl5/IBKZUQ8/7CpvmHbxU/lFlY1GRgBo3+hfARtLypH6jpXOeFAadpU/KBHtCXWtANhQSEdA+Hw+XXvttXr99df14YcfKjc3t1H5oEGD5HK5NG/ePGv5TcMs07lx40aNGDGi2df0eDzWBmD/YqKd+sWoXF0+Mlfl1bWKdTm1akuxnvr4e5VU1WpA5yTFe5w0IwD6VwAAEPkBCDPtwqxw8eabbyoxMbEhr0NSUpJiY2Otr1OmTNHUqVOtxJRer9cKWJjgAytgAIdna3Gl/v5Jnj5Zv6Nh39DcFE2/8Bhd/8Iy3XBybyV4WAkDAAAAQGA4fGYYQog4mhv3/Z+lNi+77DLr/5WVlbrpppv0wgsvWAkmTzvtND3++OMtTsH4KZOE0gQyzHQME8AAIBWWV+uGl77Sh2u3N2kOE4S4e+yRyu0Yr1h32KSJARBm6F8BAEDETcE4kJiYGD322GPWBiAwdpVVNxt8MBbn7ZI7OorgAwAAAAD7JaEE0LaKK2v3X16x/3IAAAAAaC0CEEA75I3Z/+Anbyy5HwAAAAAEFgEIoB3qmODRqUdmNFs2uldHdUxg3W8AAAAAgUUAAmiHzAiHaeOO0ilHpjfaf0LvND14ztHqEEcAAgAAAEBgkeIeaKeykmL10LkDtaO0ysoJYaZlpCa4lRRL8AEAAABA4BGAANr5SAjyPQAAAABoC0zBAAAAAAAAQccICLQ7O0qqVFVbJ2eUQ2mJMdZXAAAA26urkWoqpOgYKZoplwDaHgEItBvFFTX6cuNu3fuvNVpfUKqUeLeuOr67Jhybo7RET6irBwAAEBy1VVLhD9LiGdLWr6S0vtLQK6XkbpI7jlYH0GYcPp/PJxsrLi5WUlKSioqK5PV6Q10dhEh9vU9vr8jXdS8sa1I2dkCW7hnXj5UfAKAV6F+BCGH+1N/wifTs2VJ97d79jihp4nNSr9MkJ/ckAbQNckCgXdhWUql73l7dbNnsr/O1vaSqzesEAAAQdCX50mtXNA4+GL566Y3/8ZcDQBshAIF2oaSidr9BhjX5xW1aHwAAgDZRtkMq2dp8WWWRVLqNEwGgzRCAQLvgit7/j3pSnKvN6gIAANB2DjDb2oyEAIA2QgAC7YJJOHlcj9Rmy+LcTvVIS2jzOgEAAARdXKoUl9J8mStOSszkJABoMwQg0C4kxbr0+7P7KyspptF+tzNKT14yWBmJjfcDAADYQmKWNPYvkqOZZcdPf1BKyAhFrQC0U6yCgXZlS2GFVm4u0uK8XerWMV7H9+qozKQYuaOdoa4aAEQUVsEAAv1LlS/VVkpOl5SQGdiVKapKpZ3rpI//JBWsllJ6Sj+7RUrrI8WwShyAtkMAAgAAtBoBCCBAyndJ6+dJ86ZJRZukmA7S8P+RBl0W+OkRJhBRXSa54yRPYmBfGwAOAov+ArBU19Vpa2GVFqzfru93lGlItxT175Sk7A6xtBAAAMFQVyetfkN6+8a9+yoLpQ/vl7avlc76sxSbHLj38yT4NwAIEQIQAFRbV68vfyjUpP9brKpafzbsv3+SpwyvRy9eOUK5HeNpJQAAAq00X3p/WvNlq16TTrgtsAEIAAgxklAC0LbiSl3x9JKG4MMe24qrdNury1VYXk0rAQAQaBWF/hEPLdmxjjYHYCsEIABow85ylVTVNtsSi/J2aVcZAQgAAAIu+gCrcDH6AYDNEIAAoOKKmv22QnVd45ERAAAgAOJTpW6jWw4+JHelmQHYCgEIAOqV0XIm7NR4t5JiXLQSAACBZoIM/zVd6tCl8X53vHThP6XELNocgK2QhBIIgp2lVdpZWq3ymjolx7nUMcGjeE/4/rqlJbh19jHZen3ZliZld5zZVxneAwwRBQAAhyYlV5r8rlSwWvpxiZTaU8oZInk7SVFOWhWArYTvFREQoTbsKNPVz3+pVVuKrcfOKIcmDu6sG0/ppbTE8LyQT4pz6zdn9FXfrCQ98dF32llWrR5p8br9jL4a0i1ZUVGOUFcRAAD78mb7t55jQl0TAAgqAhBAgFeTuPT/FmvjrvKGfXX1Pj2/eKM6xLl0w5heckeH590MExyZMipX/zUgS7X1PsVEO9Ux0RPqagEAAACwCXJAAAFkAg/7Bh/2NeuzDSooqQrr9jajNTKTYpWTHEfwAQAAAEBAEYAAAihvR1mLZeXVdaqorqO9AQAAALRLBCCAAMpNjW+xLNbltDYAAAAAaI8IQAAB1DklTjnJsc2WXTqiq9JZTQIAAABAO0UAAgigzKQYPTtlmI7ISNz7S+aQzhucoymjc+WO5lcOAAAAQPvEKhhAgOV2jNc/rhimnaVVKquuU0qcW6kJbiXGuGhrAAAAAO0WAQggCDomeKwNAAAAAODHeHAAAAAAABB0BCAAAAAAAEDQEYAAAAAAAABBRwACAAAAAAAEHQEIAAAAAAAQdAQgAAAAAABA0BGAAAAAAAAAQRcd/LcAAACALVQUSRW7pPo6KSZJSkgLdY0AABGEAAQAAAAObMc66d+/lvLmSz6flN5XOvPPUvYxkiuWFgQAHBBTMAAAALB/hRulmT+Xvv/AH3wwCtZIT5/lD0wAAHAQCEAAAABg/9bPk8p2NN1vpmLMv0+qLKYFAQAHxBQMIIRq6+q1pbBSn6zbrm+3lWhQ12Rr65Qcx3kBAISHuhpp3bstl29aJFWXSjHetqwVACACEYAAQqSu3qdlmwp18d8Xqaq23tr39Oc/KDXerZeuGq6e6YmcGwBA6EVFS0ldWy6PT/M/BwCAA2AKBhAi24ordcUzSxqCD3vsLKvW9S9+pV1lVZwbAEDoORzSoEtbLh81VUpIb8saAQAiFAGIMFBf79OO0irtLK2Sb09iJ9heflGFCstrmi1btaVYO0ur27xOAAA0q0MX6b8elaKcjfcPuFDqeTKNBgA4KIyXC7EthRV666steuXLHxXlkC4Y2kU/75eprCSWs7K7sqq6/ZZX1zUeGQEAtlZdLpUV+FdUcERJqT39d9VZ3jE8eBKlfhOkbqOkTYul6jKp6wgpIVOKSw517QAAEYIARIiDDxc8tVA/7Cxv2Ddt9mq9+MVGzbp8KEEIm+uSEmeNam1u0Is3Nlod4tyhqBYAtL2KQunrF6T3fivV1/r3Od3SmQ9JR44nuWG4cMdLKbn+DQCAQ8AUjBBOu3h7+ZZGwYc91m4t1YJ1zSx1BVtJTXDr0uHNJ/W6/fS+ykj0tHmdACAkCtZIc27bG3ww6qqlt66Vdn3HSQEAwCYIQIRIYUWNXvtyc4vlL32xScUVzecHQGO7y6q1vqBEn3y7Xas2F6mgpDIimigxxqVrT+6le8f3U4bXH2zokRavJy8ZpNP7ZSraya8ngHagqkT65KGWyz+bLtVUtGWNAABAkDAFI0QcZnSpSfrQAlNmhudj/7YWVejWV5fro2/3jhjJ7RivGZMGq3taQtg3X8cEjy4a1kWnHJlhLcvpdkapIyMfALQnNZVS4Q8tl+/Ok2oryQUBAIANcIs1RJLj3bpwWJcWyy8d0dW6Q46WlVXV6oF3vmkUfDDydpRp0szF1jKXkcDhcCjDG6PsDrEEHwC0P54EqdOglstzhkru8A8oAwCAAyMAEUIn90lX/07eJvuHdkvR4G4pIalTJDFLl85ent9s2aZdFVaSTwBAmDOrXIy8XopqZlCmSUQ55BeSk4A8AAB2wBSMEMpMitVTlw7W4rzdemHxRmvKxSXDu+rYrsnWHXHsX3l1nTVtoSXbiqtoQgCIBMm50iVvSG9evXc6RmoPafxfpeTmk/UCAIDIQwAiDIIQ/zUwVif3TbMyQ8R7OCUHK8ETLU90lKpq65st75wSG8AzBQAIGleMlDtamvKeVLHbvy82RUrMoNEBALARpmCEiXiPi+BDK6UlejTpuG7NlpmpLYwiAYAIk5gppff1bwQfAACwHW63I2LFuJy6YnR31dTV6x8LN6q6zj8S4oQj0nTf+P7WChMAAAAAgPDg8Pl8LU+it4Hi4mIlJSWpqKhIXm/ThI+IfBXVtdpeWq2SihrFup1W4MEbS8IyAAgm+lcAANBajIBAxIt1R6tLCj/KAAAAABDOyAEBAAAAAACCjtvGwE/sLK3S5sIKffbdTiXFuDSiR6rSvR7Fufl1AQAAAIBDxRUVsI+C4krd8spyffTt9oZ9Dof0h3OO1pn9s1ipBAAAAAAOEVMwgP+or/fp9WWbGwUfDJOm9devLNeWwgraCgAAAAAOEQEIBI1ZHnPz7nKt2lKkddtKrKkN4aygpEozFuS1WP7W11vatD4AAAAAYCdMwUBQFJZX6+3l+frDO9+opKrW2ndkllePnD9QvTISw7LVzYq0u8qqWyxnBAQAAAAAHDpGQCAoFn6/S799Y2VD8MFYnV+siU8u1Obd4TmVIc7j1JBuyS2Wj+mb0ab1AQAAAAA7IQCBgNteUqU/zPmm2TIzwmDpxt1h2epJsW7dfkZfRTmaluUkx2pglw6hqBYAAAAA2EJIAxAff/yxxo4dq+zsbDkcDr3xxhtNhsT/7ne/U1ZWlmJjYzVmzBitW7cuZPXFwamurVfejrIWy7/8ITwDEIaZHvLPq0ZY00WM6CiHxg3M1gtXDFdWUmyoqwcAAAAAESukOSDKyso0YMAATZ48WRMmTGhS/uCDD+ovf/mLnn76aeXm5urOO+/UaaedptWrVysmJiYkdcaBmYv2DK9H24qbTzp5RGZ45oAwYl1ODe6WomenDFVpVa2cDodS4t2K85AuBQBgc9XlUl2V5PZKTmeoawMAsKGQXlWdfvrp1tYcM/rh4Ycf1m9/+1uNGzfO2vfMM88oIyPDGilx/vnnt3FtcbDSvR5de1IvKwfET8W4ojSyZ8ewb8zUBI+1AQBge+W7pO3fSJ9Nl0q3Sd1Pko65SOrQVYpiti4AIHDCtlfJy8vT1q1brWkXeyQlJWnYsGH6/PPPW/y+qqoqFRcXN9rQtsx0mp/3y9Rlx3VrlE8hOc6l56YMU3YSo1cAINLQv9pUZZG06Alp5unS2n9Lm5dKn/xReuJ4acfaUNcOAGAzYTuu3AQfDDPiYV/m8Z6y5tx///2aNm1a0OuH/euY4NFNp/a2ghCbdpUr3hOtzKQYZXpjFNVclkcAQFijf7Wp0gLpowea7q8qlv59izTxOSmWJMwAAJuPgDhUt99+u4qKihq2TZs2hbpK7VZijEvdOsZrdO80Hds1WdkdYgk+AECEapP+tbZG2v2DtOJl6ZM/SxsWSCX5gX8f7JX3ScutseETqSJ8E0cDACJP2I6AyMzMtL5u27bNWgVjD/N44MCBLX6fx+OxNgAAEDhB71/raqUfF0nPnSPVVu7dn9ZHuugVqUPn4L13u1Yf6goAANqRsB0BYVa9MEGIefPmNewz+RwWLVqkESNGhLRuAAAgwEq2SM+f1zj4YJjkiO/dKVWV0uTB0G10y2Wdh0kxSbQ7AMAeAYjS0lJ99dVX1rYn8aT5/8aNG61EhjfccIPuvfdevfXWW1qxYoUuvfRSZWdna/z48aGsNgAACLRtq6TqsubLvnlLKt/RftrcTDvZukrKXy4VbZbq64L3XgkZ0oirm+53xUlnPiTFpQTvvQEA7U5Ip2AsWbJEJ554YsPjqVOnWl8nTZqkWbNm6de//rXKysp05ZVXqrCwUKNGjdKcOXMUE8MqCgAA2Erp9pbLzAV4bZVsz+TAyF8mvTpFKtzo3xeXKp31v1KPkyVPQuDf0ySYHDVV6nGStOBhqaxAyj1eGvY//mU4AQAIIIfP5/PJxsy0DbN8p0mY5fV6Q10dAABsIeD9a/7X/qUfm5OYJV3xgeTNlq3t/E7664jmgy2/mCflDA7u+1cWS3VVkscrRZNPCwDQjnJAAACAdsTbScr9WfNlp9zjD0LYWX299NULLY/0mP97f4AgmGK8UnwawQcAQNAQgAAAAKEX31E6+wlp+K/8+QcMMwXg3KelXqdIDodsrbZC2ryk5fKC1VJNCzkyAACIEGG7DCcAAGhnvFnSmLv9QYj6Gn8gItG/LLftOWP8S45+P7/58uRuUnRsW9cKAICAYgQEIkp5da0qa2pDXQ0AQLCY3AMdOksp3dtP8MFwOqXBl0uOFv40O+E2f8JIAAAiGCMgEBG2FlVqUd5OvbzkR7mjo3TpiK46KturtERWRAEA2ESHLtL5z0uvXSlV/Sffg9MtjZkmZQ0Ide0AADhsrIKBsJdfVKHLZi7W2q2ljfafcmS6fn92f4IQABACtl1lqq5OKs33J4OMjvGPwohytuH710ol+f6trkZKypES0iUX0y8AAJGPERAIa/X1Pr25bEuT4IMxd3WBLh1eQgACABAYpQXSsmelz6ZLFbuluFTp+Jul/uf5k2S2BWe0fwqK2QAAsBlyQCCs7Syr1otfbGyx/NmFP6i6tr5N6wQAsKHKEunDB6R5/88ffDDKd0pzbpc+f1yqqQh1DQEAiHgEIBDWfD6faut9LZab4EO9jwAEAOAwlW+Xls5svuzz6VLpNpoYAIDDRAACYS053q2zjs5qsfy8IZ0V42ImEQAgANMvWgpo11VL5f8ZFQEAAA4ZAQiENZczShcP76r0RE+Tsn7ZXh3bNTkk9QIA2Iwr/gDlrLoEAMDh4tYxwl5Ocpxe+9VxenHxJr319RZrGc6Lh3XRz/tlKtPLH4QAgABISJOSu0m7NzQtyziq7ZJQAgBgYyzDiYhRW1evXeXVinI4lBrvlsPhCHWVAKDdsuUynNtWS0+f5U8+uYdZhnPSbKljb4Wt6nKpbLt/qog7XkrMkugjAQBhiBEQiBjRziilJzLiAQAQJBlHSld9LG1dKW3/xj/yIb2vlJQTvk1evFn64PfSin/6AxDebGnM/5N6jZFimaYIAAgvjIAAAACtZssREJGYOPP5idKWL5uWnTND6ncOIyEAAGGFJJQ4LKWVNdpSWKH8wgpV1NTSmgAAtJXCjc0HH4y5d0ol+ZwLAEBYYQoGDkl9vU95O8v0x3fXau7qbXI6HBo7IEvXj+mtLilxtCoAAMG2uYXgg1G8Raou4xwAAMIKAQgckk27yzX+0U9VUuUf9VAnn179crM+XrdDb/xqpDolx9KyAAAEk8n30BKn278BABBGmIKBVquurdMzn29oCD7sa3tJld5dtVU+n4+WBQAgmLKOllwtjDrsf56UkE77AwDCCgEItFpRRY3mrSlosfydlfkqbSY4AQAAAigxW7r41aZBiOxjpRN/I7kYjQgACC9MwUDrf2iiouSNdbVYnhTrksvpoGUBAAgmZ7SUM1T61SJp63J/0snsgVKHrox+AACEJQIQaLXkeLd+Mbq7rnthWbPlU0blKsbFjxYAAG0ShEju4t8AAAhzTMHAIRnRPUU/Pyqzyf5LhnfVEZmJtCoAAAAAoBGHz+bZAouLi5WUlKSioiJ5vd5QV8dWdpZWaeOucv1rRb5cziiddXSWspNirRESAAB7C1n/WlMuVRT6/x+fJjlbnhIIAADCC+PkcchSEzzWdkyXZFoRABBc9fXS7jzp4z9Ka2ZL0W5p4CXSsCulpBxaHwCACEAAAgAAhL/CDdJTJ0mV/xn9UC3ps0ektW9Ll86WkjqFuoYAAOAAyAEBAADCW22l9Nlje4MP+9r5nfTDp6GoFQAAaCUCEAAAILyZnA9r/9Vy+fKXpJrKtqwRAAA4BAQgAABAeHNESe74lsvdiVKUsy1rBAAADgEBCAAAEN7MahdDr2q53CSiZDUMAADCHgEIAAAQ3hwOqe9YqcuIpmWDLpc69g5FrQAAQCuxCgYAAAh/3izp3FlSwRrp6xckV5x0zCVScjcpPjXUtQMAAAeBAAQAAIgMiZn+rceJoa4JAAA4BEzBAAAAAAAAQUcAAgAAAAAABB0BCAAAAAAAEHQEIAAAAAAAQNARgAAAAAAAAEFHAAIAAAAAAAQdAQgAAAAAABB0BCAAAAAAAEDQEYAAAAAAAABBRwACAAAAAAAEHQEIAAAAAAAQdAQgAAAAAABA0BGAAAAAAAAAQUcAAgAAAAAABF20bM7n81lfi4uLQ10VAABCLjExUQ6H47Bfh/4VAIDA9692Z/sARElJifW1c+fOoa4KAAAhV1RUJK/Xe9ivQ/8KAEDg+1e7c/j23MKwqfr6em3ZsuWQIlJm1IQJXGzatMk2P0x2OyaOJ7zZ7fzY8Zg4nvZ3fgJ1h4b+1b6/R3Y8Jo4nvNnt/NjxmDieA2MExMGx/QiIqKgo5eTkHNZrmA8NO3xw2PmYOJ7wZrfzY8dj4njCWzieH/rXyDhPh8tux8TxhDe7nR87HhPHg8NFEkoAAAAAABB0BCAAAAAAAEDQEYDYD4/Ho7vuusv6ahd2OyaOJ7zZ7fzY8Zg4nvBmt/Nj1+Oy2/HY8Zg4nvBmt/Njx2PieBAotk9CCQAAAAAAQo8REAAAAAAAIOgIQAAAAAAAgKAjAAEAAAAAAIKOAMR+PPbYY+rWrZtiYmI0bNgwLV68WJHq448/1tixY5WdnS2Hw6E33nhDkez+++/XkCFDlJiYqPT0dI0fP15r165VpPrrX/+qo48+umFt5REjRuidd96RXTzwwAPWz90NN9ygSHT33Xdb9d9369OnjyLd5s2bdfHFFys1NVWxsbHq37+/lixZokhkPqt/eo7MdvXVVysS1dXV6c4771Rubq51bnr06KF77rlHdknbRP8anuzWtxr0r+HNjv2rnfpWg/4VgUYAogUvvfSSpk6damWv/fLLLzVgwACddtppKigoUCQqKyuzjsH80WcHH330kXVhsXDhQs2dO1c1NTU69dRTreOMRDk5OdZF+tKlS61O6qSTTtK4ceO0atUqRbovvvhCTzzxhBVgiWRHHXWU8vPzG7YFCxYoku3evVsjR46Uy+Wygl2rV6/WQw89pOTkZEXqz9m+58d8LhjnnnuuItEf/vAH68Lp0Ucf1Zo1a6zHDz74oKZPn65IR/8avuzWtxr0r+HPTv2r3fpWg/4VAWdWwUBTQ4cO9V199dUNj+vq6nzZ2dm++++/P+Kby5z2119/3WcnBQUF1nF99NFHPrtITk72/f3vf/dFspKSEl+vXr18c+fO9f3sZz/zXX/99b5IdNddd/kGDBjgs5Nbb73VN2rUKJ9dmZ+1Hj16+Orr632R6Mwzz/RNnjy50b4JEyb4LrroIl+ko3+NHHbsWw361/Bht/7V7n2rQf+Kw8UIiGZUV1dbd6LHjBnTsC8qKsp6/Pnnnwc+CoTDVlRUZH1NSUmJ+NY0Q69ffPFF646TmYoRycydtDPPPLPR71KkWrdunTWFqXv37rrooou0ceNGRbK33npLgwcPtkYImKHWxxxzjJ566inZ5TP8ueee0+TJk63hvJHouOOO07x58/Ttt99aj7/++mvrruDpp5+uSEb/Glns1Lca9K/hyU79q537VoP+FYEQHZBXsZkdO3ZYnVRGRkaj/ebxN998E7J6oXn19fVWbgEz5K1fv34R20wrVqywAg6VlZVKSEjQ66+/riOPPFKRygRRzPQlM3Qv0pkcMLNmzdIRRxxhDQ+dNm2aRo8erZUrV1pzpSPR999/bw3xN1PNfvOb31jn6brrrpPb7dakSZMUyUyOm8LCQl122WWKVLfddpuKi4utudBOp9Pqk+677z7rj/NIRv8aOezStxr0r+HLbv2rnftWg/4VgUAAAhHP3GU3HVUkzxk0TOf71VdfWXecXnnlFaujMvNxIzEIsWnTJl1//fXWHGKTxDXS7XvX2eSyMH8wde3aVf/85z81ZcoURerFhblL8/vf/956bO7SmN+jv/3tbxH/R9KMGTOsc2buqEUq87P1j3/8Q88//7w1P9p8NpiLQXNMkX5+EBns0rca9K/hy279q537VoP+FYFAAKIZHTt2tO44bdu2rdF+8zgzMzMgDY/AuOaaa/T2229bq3yYRFORzETHe/bsaf1/0KBBVtT8kUcesRI4RhozhckkbD322GMb9pk7uOY8maR6VVVV1u9YpOrQoYN69+6t9evXK1JlZWU1CW717dtXr776qiLZDz/8oPfff1+vvfaaItktt9xijYI4//zzrccmi7o5NrNKQST/EUv/Ghns1Lca9K+RI9L7V7v2rQb9KwKFHBAtdFTmAtDMv903omkeR/qcfLswuTTNH0hmmsIHH3xgLVVnN+ZnzlyoR6KTTz7ZGvJq7tru2cwdATN83Pw/koMPRmlpqb777jvrD41IZYZV/3R5PZNvwNx5imQzZ8605t2a3CORrLy83Mo9tC/ze2M+FyIZ/Wt4aw99q0H/Gr4ivX+1a99q0L8iUBgB0QIzd8vcZTIXTUOHDtXDDz9sJQW8/PLLFakf6PtGk/Py8qwLQZNYqkuXLorEoaFmaPKbb75pzRHcunWrtT8pKclacznS3H777dYwRHMuSkpKrGP78MMP9e677yoSmXPy0znD8fHx1prYkTiX+Oabb9bYsWOtPyC2bNliLc9rLgYvuOACRaobb7zRSnRohomed955Wrx4sZ588klri+SLCvMHkvnsjo6O7O7N/LyZnA/mM8FMwVi2bJn+/Oc/W4k1Ix39a/iyW99q0L+GN7v1r3bsWw36VwTUYa+jYWPTp0/3denSxed2u61lwxYuXOiLVPPnz7eW0vrpNmnSJF8kau5YzDZz5kxfJDLL7XXt2tX6WUtLS/OdfPLJvvfee89nJ5G8DOfEiRN9WVlZ1vnp1KmT9Xj9+vW+SDd79mxfv379fB6Px9enTx/fk08+6Ytk7777rvU5sHbtWl+kKy4utn5fTB8UExPj6969u++OO+7wVVVV+eyA/jU82a1vNehfw5sd+1e79a0G/SsCyWH+CWxIAwAAAAAAoDFyQAAAAAAAgKAjAAEAAAAAAIKOAAQAAAAAAAg6AhAAAAAAACDoCEAAAAAAAICgIwABAAAAAACCjgAEAAAAAAAIOgIQAAAAAAAg6AhAADgos2bNUocOHQLSWh9++KEcDocKCwtpfQBAu0b/CqA9IQAB2Nhll12m8ePHh7oaAADYCv0rABwaAhAA2g2fz6fa2tpQVwMAAFuhfwVwsAhAADbwyiuvqH///oqNjVVqaqrGjBmjW265RU8//bTefPNNa7qD2czUh+amP3z11VfWvg0bNjQaEtqlSxfFxcXp7LPP1s6dOxvKzPOioqK0ZMmSRvV4+OGH1bVrV9XX1x9UvZcuXarBgwdb73Hcccdp7dq1jcr/+te/qkePHnK73TriiCP07LPPNqqDqbOp+x7mmPYcp7HnWN955x0NGjRIHo9HCxYs0Ndff60TTzxRiYmJ8nq9VtlPjwUAAPpX+lcAgUUAAohw+fn5uuCCCzR58mStWbPGuuieMGGC7rrrLp133nn6+c9/bj3HbOYi/2AsWrRIU6ZM0TXXXGNd4JuL9XvvvbehvFu3blaQY+bMmY2+zzw2w1JNcOJg3HHHHXrooYesi//o6GjrGPZ4/fXXdf311+umm27SypUrddVVV+nyyy/X/Pnz1Vq33XabHnjgAat9jj76aF100UXKycnRF198YQVBTLnL5Wr16wIA7Iv+9cDoXwG0mg9ARFu6dKnP/Cpv2LChSdmkSZN848aNa7Rv/vz51vN3797dsG/ZsmXWvry8POvxBRdc4DvjjDMafd/EiRN9SUlJDY9feuklX3Jysq+ysrKhHg6Ho+E19mdPHd5///2Gff/617+sfRUVFdbj4447znfFFVc0+r5zzz23oV7mfczzTd33MMdk9pnX3/d93njjjUavk5iY6Js1a9YB6wkAaL/oX+lfAQQeIyCACDdgwACdfPLJ1hSMc889V0899ZR27959WK9pRgoMGzas0b4RI0Y0emySWzqdTmukwp4pG2akhBkdcbDMaIQ9srKyrK8FBQUNdRg5cmSj55vHZn9rmWke+5o6dap+8YtfWKM4zMiI7777rtWvCQCwN/rXA6N/BdBaBCCACGeCAHPnzrXyHBx55JGaPn26lS8hLy+v2efvmR5hEkbtUVNT0+r3NXkZLr30UmvaRXV1tZ5//vlGUygOxr7THkyuBuNg80e05jji4+MbPb777ru1atUqnXnmmfrggw+sdtsTSAEAwKB/pX8FEHgEIAAbMBfvZnTAtGnTtGzZMis4YC6ozde6urpGz01LS2uY27rHvokcjb59+1p5IPa1cOHCJu9rRhG8//77evzxx63VJUzuiUAxdfj0008b7TOPTbDgYI9jf3r37q0bb7xR7733nlXvn+azAACA/pX+FUBgRQf49QC0MRMomDdvnk499VSlp6dbj7dv325dwFdWVurdd9+1Vpcwq2MkJSWpZ8+e6ty5szUK4L777tO3335rJYLc13XXXWcFNP70pz9p3Lhx1mvMmTOnyXub9xg+fLhuvfVWa/SDWYUjUMwqHiaJ5jHHHGNNlZg9e7Zee+01K+BhmPcy722mUOTm5lpTN377298e8HUrKiqs1/7v//5v6/t+/PFHKxnlOeecE7C6AwAiH/0r/SuAIAhCXgkAbWj16tW+0047zZeWlubzeDy+3r17+6ZPn26VFRQU+E455RRfQkJCo+SMCxYs8PXv398XExPjGz16tO/ll19ulITSmDFjhi8nJ8cXGxvrGzt2rO9Pf/pToySU+z7PfO/ixYsPus4HkwjTePzxx33du3f3uVwu67ieeeaZJsc+YsQIq44DBw70vffee80modz3faqqqnznn3++r3Pnzj632+3Lzs72XXPNNQ3JLwEAoH+lfwUQHA7zTzACGwDah3vuuUcvv/yyli9fHuqqAABgG/SvAOyIHBAADklpaalWrlypRx99VNdeey2tCABAANC/ArAzAhAADsk111yjQYMG6YQTTmiy+sUvf/lLJSQkNLuZMgAAQP8KoP1hCgaAgDMJIYuLi5st83q9VrJMAABA/wqgfSEAAQAAAAAAgo4pGAAAAAAAIOgIQAAAAAAAgKAjAAEAAAAAAAhAAAAAAACAyMcICAAAAAAAEHQEIAAAAAAAQNARgAAAAAAAAEFHAAIAAAAAACjY/j+zmeq01L8/MwAAAABJRU5ErkJggg==" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 28 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T05:06:11.139928Z", + "start_time": "2025-11-14T05:06:09.697915Z" + } + }, + "cell_type": "code", + "source": "sns.relplot(kind='scatter',data= student, x = 'study_hours', y='test_score', hue='gender', col='week',col_wrap=2)", + "id": "771143bcb061c4f5", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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6ysAkPkMiFdeeWWtnwQAAAAY3Na6BsTKkskTazmBAgAAABiE1imAuPrqq2P77bePsrKy9Nhhhx3immuu2fCjAwAAAAbnEoyLLroovvSlL8Xpp58ee++9d9p23333xamnnhoLFiyIs846K4txAgAAAIOtCOX5558fJ510Urf2n/70p/GVr3yl39WIUCQLAFxfAYABuARj9uzZsddee63SnrQlfQAAAED/dPLJJ8cxxxwzMAKILbbYIn7xi1+s0n7DDTfEpEmTNtS4AAAAgMFcAyJZfnHCCSfEvffe21UD4v77748777xztcEEAAAAkBuSKg5tbW1RWFiY/QyI6dOnx8MPPxwjRoyIm2++OT2S7//617/Gscceu9YDAAAAgMFm6dKlceKJJ0ZFRUWMHTs2Lr744th///3jzDPPTPubmprinHPOiY033ji9zR577BF333131/2vuuqqGDJkSNx2222x9dZbR2VlZRx22GHdSiMkQcHZZ5+d3m748OHxhS98IQ0QVtbe3h4XXHBBWu8x2eVyxx13jF/+8pdd/clz5uXlxR//+MeYMmVKlJSUpBtRrIu1jywi0if92c9+tk5PCAAAAIPd2Wefna4m+O1vfxujR4+O8847Lx577LHYaaed0v5k58lnnnkmrr/++thoo43ipptuSgOGp556qqv8wbJly+J///d/45prron8/Pz4yEc+koYW1157bdr/7W9/Ow0qfvKTn6QhRfJz8jgHHnhg1ziS8CH5+/773/9++rjJaofkcUaOHBnvec97um73xS9+MX2uzTbbLIYOHdo7u2D84Q9/iIKCgjj00EO7tSepS5KcHH744dGf2AUDAFxfAaC/zX4YPnx4XHfddfH+978/bautrU2Dhk984hNpOJH8oT9z5sy0bYVp06bF7rvvHt/4xjfSYOFjH/tYvPjii7H55pun/Zdddll89atfjTlz5qQ/J/c966yz4vOf/3z6c2trazrTIZlUkKxmSGZZDBs2LP70pz/F1KlTu57n4x//eBpuJONLZkAccMAB6e2PPvro9fq913oGRJJ6XHjhhau0JzlG0tffAggAAADoT15++eVoaWlJw4QVampqYquttkq/T2Y5JMsnttxyy273SwKDJLhYoby8vCt8SCRLOebNm9cVaCTLMZKlGyskdRt23XXXrmUYSXiRBA0HH3xwt+dpbm6OnXfeuVtbcr/1tdYBxAsvvBDbbLPNKu2TJ09OBw8AAACsu/r6+nTlwaOPPpp+XVlS62GFoqKibn1JrYa1WeSQPE/i97//fVprYmVJrYeVJXUo1tdaF6FMUpkkrXm7JHzYEAMCAACAXLbZZpul4cEjjzzS1ZbMWHj++efT75PZB8kMiGQ2wxZbbNHtGDNmzLv+2z2ZEZFsIrFCsgQjCTVWSCYXJEFDstTj7c8zfvz42NDWegZEsuYjqcqZFK5YMdUjCR8+97nPxVFHHbXBBwgAAAC5pKqqKj760Y+mtRmSGgyjRo2KL3/5y2khyWQWQ7L0Itkh46STTkoLRyaBxPz58+POO++MHXbYIY444oh39Tyf/exn0xIKSXHJZNXCRRddFEuWLOk2jqRoZVInIqnpuM8++6RBSFIcs7q6Oh1jnwYQ3/rWt9LKm8ngx40bl7a9/vrrse+++6YVMQEAAIA1u+iii+LUU0+N973vfekf+8kWmbNmzYrS0tK0/8orr4yvfe1r6Yf9b7zxRowYMSL23HPP9PbvVnLfpA5EEiQk4cYpp5wSxx57bBoyrPA///M/6Y4XyW4YyWqHZMvOXXbZJf7zP/9zg7+Ea70LRiK5yx133BFPPvlkuk9oksDst99+0R/ZBQMAXF8BoL9raGhI6zAkMx5mzJjR18PJxFrPgEgkU0IOOeSQ9EisPIUDAAAAWLPHH388nn322XQnjGRGQrJ9ZmJ9t7rsz9a6COU3v/nNuOGGG7p+Pv7449NtQJKkJpkRAQAAALyz//3f/40dd9wxpk2bls6A+Mtf/pIutchVa70EY+LEiXHttdfGXnvtlS7DSAKIJJD4xS9+kVbOvP3226M/sQQDAFxfAYABOANizpw5Xdtx/O53v0sDiGQpRlIwY+UtRN6Nyy+/PK0fkRTcSI6pU6fGH//4x67+xsbGOO2009IZFslep9OnT4+5c+eu7ZABAACAgRZADB06NK3Mmbj11lvTqSKJZCJFsk/p2kh20Ui2BEn2If3b3/4WBx54YLre5emnn077k61AbrnllrjxxhvjnnvuiTfffDOOO+64tR0yAAAAMNCKUCYBwIc//OF0H9GFCxfG4Ycf3lVAY4sttlirxzryyCO7/fz1r389nRXx0EMPpeHEFVdcEdddd10aTKzYhmTrrbdO+5PtRwAAAIAcDSAuvvji2HTTTdNZEN/61rfSpRGJZG/RT3/60+s8kGT2RDLTISm8kSzFSGZFtLS0dM2wSEyePDkmTJgQDz74YI8BRFNTU3qsXAMCAFg/rq8AQK8HEEVFRXHOOees0p4sl1jZEUccET/+8Y9j7Nixa3y8p556Kg0cknoPSZhx0003xTbbbBNPPPFEFBcXx5AhQ7rdfvTo0Wkdip5ccMEFcf7556/trwUArIHrKwDQ6zUg3q177703li9f/o6322qrrdKw4eGHH45///d/j49+9KPxzDPPrPPznnvuuekeqiuOFfUqAIB15/oKAPT6DIgNLZnlsKJ2xJQpU9KdNC655JI44YQTorm5OZYsWdJtFkSyC8aYMWN6fLySkpL0AAA2HNdXAKDfzoBYV+3t7ek60ySMSJZ73HnnnV19zz33XMycOTNdsgEAAABsWCeffHLk5eWtcrz44osDewZEMp0z2UUjKSy5dOnSdMeLu+++O2677baoqamJGTNmxNlnnx3Dhg2L6urqOOOMM9LwwQ4YAAAADAazFi2L6x+ZGTMXLY8Jw8rig7tNiPHDyjN9zsMOOyzdhXJlI0eOHNgBxLx58+Kkk05Kd9BIAocddtghDR8OPvjgrh038vPzY/r06emsiEMPPTQuu+yyvhwyAAAA9IpfPvp6/Mev/h5t7R1dbT+45+W4cPoO8f4p4zJdermm0gcDMoC44oor1thfWloal156aXoAAADAYJr58B9vCx8Sre0d8cVf/T32mDgs85kQfV4DItndorW1dZX2pC3pW+E///M/06UTAAAAwNpJll28PXxYOYRI+rPyu9/9LiorK7uOD3zgA30zA+KAAw5Il0yMGjWqW3uy5WXS19bW1lXfAQAAAFh7Sc2HNZn1Dv3rI/nb/vLLL+/6uaKiom8CiI6OjrQC5tstXLhwgw0KAAAABrMJw8rW2D/+HfrXR/K3/RZbbLHBH/ddBxDHHXdc+jUJH5JtOZKiFCsksx7+/ve/x1577bXBBwgAAACDzQd3m5AWnEyWW7xdYX5e2j/QvOsAItmlYsUMiKqqqigreyttKS4uTrfG/MQnPpHNKAEAAGAQGT+sPN3tIik4uXIIkYQP35y+w4ArQLlWAcSKPUA33XTTOOeccyy3AAAAgAy9f8q4dLeLpOBkUvMhWXaRzHwYiOFDIq8jmdKwFpYvX57Ogigv7/yFX3vttbjppptim222iUMOOST6m7q6unT2RlIks7q6uq+HAwA5wfUVAMh8G86jjz46rr766vT7JUuWxO677x7f/va30/aVq2QCAAAArHMA8dhjj8W+++6bfv/LX/4yxowZk86CSEKJ7373u2v7cAAAAMAgsNYBxLJly9IilInbb7893R0jPz8/LUKZBBEAAAAA6x1AJHuB3nzzzTFr1qy47bbbuuo+zJs3T40FAAAAYMMEEOedd166C0ayG0ZS/2Hq1KldsyF23nnntX04AAAAYBBY610wEnPmzInZs2fHjjvumC6/SPz1r39NZ0BMnjw5+hNVugHA9RUAGIAzIBJJ4cmkDsQdd9yRbsuZ2G233fpd+AAAAAAM0ABi4cKFcdBBB8WWW24Z733ve9OZEIkZM2bE5z73uSzGCAAAAAy2AOKss86KoqKimDlzZpSXl3e1n3DCCXHrrbdu6PEBAAAAOaBwbe+QFJtMdr8YN25ct/ZJkybZhhMAAADYMDMgGhoaus18WGHRokVRUlKytg8HAAAA9BMnn3xy5OXlxamnnrpK32mnnZb2JbfplQBi3333jauvvrrr5+TJ29vb41vf+lYccMAB6zQIAAAAYDUWvxpx51cjfnlK59fk54yNHz8+rr/++q5NJxKNjY1x3XXXxYQJE3pvCUYSNCRFKP/2t79Fc3NzfOELX4inn346nQFx//33r/NAAAAAgJU8cV3Eb06P6Gh7q+3+SyKO+r+InT4cWdlll13ipZdeil//+tdx4oknpm3J90n4MHHixHV+3LWeAVFdXR3//Oc/Y5999omjjz46XZJx3HHHxeOPP54WpwQAAADW0+JXVw0fEu2tEb89I/OZEKecckpceeWVXT//5Cc/iY997GPr9ZhrPQMiSTuSrTf/67/+a5XtOZPClG1tbzs5AAAAwNp57OpVw4eVQ4ik/6DzIisf+chH4txzz+3abCJZ8ZAsy7j77rt7L4Do6OhYbXt9fX2Ulpau80AAAACAf3mnGQ6LO4OBrIwcOTKOOOKIuOqqq9IcIPl+xIgR6/WY7zqAOPvss7uKTp533nnddsJIZj08/PDDsdNOO63XYAAAAICIGLrpmk/D0E0yP03JMozTTz89/f7SSy9d78d71wFEUuMhkSQfTz31VBQXF3f1Jd/vuOOOcc4556z3gAAAAGDQ2+WkzoKTyXKLt8svjLQ/Y4cddli6+UQyEeHQQw/tvQDirrvuSr8mRScuueSStBglAAAAkNEMiKP+r7Pg5MohRBI+HPW9d54hsQEUFBSkm1Cs+H59rXUNiJWrYAIAAAAZ2enDEZvs1VlwMqn5kCy7SGY+9EL4sMKGnHyQ19FTVckcUVdXFzU1NVFbW2vWBgC4vgIAfSS/r54YAAAAGDwEEAAAAEDmBBAAAABA5gQQAAAAQOYEEAAAAEDm1nobToANaunsiGWLkk15IsqHRVSNcYIBACAHCSCAvtGyPGLWXyN+c1pE7azOtmGbRRzz/YiNd44oKPbKAABADrEEA+gbi16J+Nmxb4UPadvLET99X8Ti17wqAACQYwQQQN/MfrjvOxHtbav2tTVHPPLjiLYWrwwAAOQQAQTQ+5rqI2Y/1nP/649ENDf05ogAAICMCSCA3ldUGjFk0577h20eUVjamyMCAAAyJoAAel9JVcS+n+u5f6/TO0MKAAAgZwgggL4xauuIw74ZUVD0VlthScQxl3fuhgEAAOQU23ACfaNsSMQuJ0VsdVjEwpci8vI7g4fK0WY/AABADhJAAH2nuDyieNOIoWuoBwEAAOQESzAAAACAzAkgAAAAgMwJIAAAAIDMCSAAAACAzAkgAAAAgMwJIAAAAIDMCSAAAACAzAkgAAAgRyxe1pweAP1RYV8PAAAAWD9zapfHnc/Oi+v/Oiv9+fhdx8W0bUbH2Jqy3ju1yxZGtDRGFJZEVIzovecFBgwBBAAADGCza5fHKVc9Ev+cvbSr7ak3auOah16Ln35s9xg7JOMQYvmSiDcejfjz/0QseD5i2GYRB/x3xPjdI8qHZfvcwIBiCQYAAAxg9z4/v1v4sMLzc+vTWRGZamuJePqmiJ8dF/Hm4xHNDRFznor4+QkRT1wb0bI82+cHBhQBBAAADFC1y1vihkc6l12sTtKXaU2IpXMibv/v1fclMyLqMw5AgAFFAAEAADkqLy8iL8snaFgQ0Vy/+r7Wpoj6uVk+OzDACCAAAGCAqikrig/vPqHH/g/tPiGGlBdnN4CConfoz/C5gQFHAAEAAAPYPpNGxvYbV6/Svs3Yqjhgq1HZPnnF8Iia8avvqxwVUTky2+cHBhS7YAAAwAA2pqY0fnTSbnH/iwvi2odnRkRHOvNh30kj0r5MVY2N+MCVET89snvByWQrzg/8NKJybLbPDwwoeR0dHR2Rw+rq6qKmpiZqa2ujunrVZBgAcH2FXCpKuWJpRq9pa42onRXxz1siXn8kYqOdI7Y9pnNmxDst0QAGFTMgAAAgR/Rq8LBCQWHEsIkRe38mor09It8qb2D1/OsAAABsGMIHYA0EEAAAAEDmBBAAAABA5gQQAADA2mlpjGisi2hvc+aAd00RSgAA4N1Ztjhi4QsRD14WUT87YouDI7Z/f8SQTSLy8pxFYI0EEAAAwDtLZjw8+pOIO7/6VtvMhyIe+L+IGbdHjNzKWQTWyBIMAADgndXP7R4+rNC4JOIPX4hYvsRZBPpvAHHBBRfEbrvtFlVVVTFq1Kg45phj4rnnnut2m8bGxjjttNNi+PDhUVlZGdOnT4+5c+f22ZgBAGBQevW+nvteuTti+eLeHA0wAPVpAHHPPfek4cJDDz0Ud9xxR7S0tMQhhxwSDQ0NXbc566yz4pZbbokbb7wxvf2bb74Zxx13XF8OG3LSkobmWNTQFO3tHX09FACgP2pvfYcbeA8BrFleR0dHv/mXYv78+elMiCRo2G+//aK2tjZGjhwZ1113Xbz//e9Pb/Pss8/G1ltvHQ8++GDsueee7/iYdXV1UVNTkz5WdXV1L/wWMLDMrWuM+15YEFc/+GqUFBbEoduOjsO3HxsbDSnr66EB/ZjrKwxC856NuGyP1feN2y3iw7+IKB/W26MCBpB+VYQyCQkSw4Z1/sP16KOPprMipk2b1nWbyZMnx4QJE3oMIJqamtJj5TdIQM/hw+nXPRY7jCyMiw+uibKlr0QU1ceSOcujKCbEyCFVTh3g+kqfSz4vm1PXGHXLW6IwPz+GVhTHsIrivh7W4FM1OmL3T0b89Yfd2wtLI474tvABGDgBRHt7e5x55pmx9957x3bbbZe2zZkzJ4qLi2PIkCHdbjt69Oi0r6e6Eueff36vjBkGur+/Xhsf2Lo8Dm/4VVRd/72Ijva0fWxxZSw76kfRVrZ/FJSU9/UwgX7A9ZW+Ut/YEve9uCDO+83TMW9p54dMO4yrif/9wI4xaVRl5Nn6sfeUDY14z39EbH5gxH0XRTQsiNhk34i9z4gYsmkvDgQYqPrNLhhJLYh//OMfcf3116/X45x77rnpTIoVx6xZszbYGCGXNLW0xd3PzYsDS5+Lqr9+tyt8SDXXR/mvPxIdtf7/ATq5vtJXnpldF6f+7LGu8GFFgH78Dx6MN5Ys98L0tooREVsdHvHhGyNOuS3ivd+KGDEporDIawEMjADi9NNPj9/97ndx1113xbhx47rax4wZE83NzbFkSfctfZJdMJK+1SkpKUlrPax8AKuRF3HYxIIY8eh3Vn962tsi/6lfOHWA6yt9ZnFDc1x467Or7VuyrCWtYdRfNba0xdLGlmjL1eLOZUMiKkdFFJX29UiAAaSwr9fznXHGGXHTTTfF3XffHRMnTuzWP2XKlCgqKoo777wz3X4zkWzTOXPmzJg6dWofjRpyQ1JwctvR5RFrmOWQP//ZNIiI/II1PtaC+qaYtWhZ3P703Cgpyo/Dth0TY4eURU2ZT0MAWL8/4p9+o+d6XsnSjA/uPqFfneLFy5rjxXn1ccVfXkmvj/tvNTKO3mnjGDe0zHIRYNAr7OtlF8kOF7/5zW+iqqqqq65DsmtFWVlZ+nXGjBlx9tlnp4Upk9kMSWCRhA/vZgcMYM1KyiujffR2kT/zwdXfYNN93jF8mFfXGOf++qm489l5XW3f+dML8en9N49P7LdZDC1XJAyAdVNYkJfuyvTKgre2aF9ZUgOiP0mKZF553yvx3T+/2NX2t9cWx4/veyV+depesXk/Gy/AoFqCcfnll6d1Gvbff/8YO3Zs13HDDTd03ebiiy+O973vfekMiGRrzmTpxa9//eu+HDbkjIqaEdFx4JdX31lSHbHVe9/xMe56bl638GGFy+5+qcc3jADwboysKo3TD9hitX0F+Xlx5I4b9asTmdSpWDl8WHm5yNd+/0y6JANgMMvv6yUYqztOPvnkrtuUlpbGpZdeGosWLYqGhoY0fOip/gOw9grGbhdx/NWd6zhXGL1txMf+EFEzfo33TaaW/vgvr/TYf80Dr0Vr20rFLQFgLSVLGD661yax8mYXZUUF8aOTdo2Nh5T1q/N534vze+y7+/n5aRABMJj1m204gT5SUhUx+ciIcbtGLFscUVDUuY93xch3vGtSWKtuDZ/mLGxoitb29igs6Bf1bgEYgIZXlsQ5h2wVJ+81MZ6fuzTKiwti4oiKGFVdEsUFa14m2Nta23ouONnR0fnhG8BgJoAAIvLzI6o37jzWQnVpYew7aWT88tHXV9v/3u3HRmmRf2YAWD9VpUXpkQQP/dk+W4zosW+PiUMVZwYGPR9LAuusrLgwLTaZTIV9u7E1pbHflu88iwIAcsWYmtL44G6rLl8sLcqPrxy1XdQozAwMcnkdOT4XrK6uLt1NIyl2meyiAWxYSY2Hl+c3xAV//Ge6vrUoPz+O2mmj+OxBk2L8sHKnG3KU6yv0XB/psdcWx/fveSkWNTTH3puPiBn7TowJw8otSQQGPQEEsEEklb3rlremRcKGVhRFmaUXkNMEELBmS5Y1R0tbe1SXFUVJYf+qVQHQVyzOBjbo+lwAIGKI5RYAq1ADAgAAAMicGRAMKnNql8dzc5bG315bHJsMr4g9Jg6LMdWlUVQoi+s3WpZH1M+LWLYgorA0onxERNXovh4VAACwngQQDBozFy2LE3/8UMxatLyrraQwP66esXtMmTBUYaj+oGFhxCM/jrjv2xGtTZ1twzaLOP6aiNHbRlpgAgAAGJB87MugULe8Jf775n90Cx8STa3tMeOqv8XcusY+Gxsref7WiLu/8Vb4kFj0csRVR0TUznKqAABgABNAMCgk22D95YX5q+2rb2qNlxc09PqYeJulczrDh9VpXBIx62GnDAAABjABBINCc2t7dHT03L+4obk3hzM4NdVHLHol4tX7It54LKL2jYj29rf625ojal/v+f5vPtkrwwQAALKhBgSDQlVpYYyoLI4F9asPGiaPqe71MQ0qDfMj7v9uxEOXRrS3dbZVjor44HURY3eOKCiMKCiOqN44ou6N1T/G2O17dcgAAMCGZQYEg8Lo6tL4z/duvdq+w7YdHSOrS3p9TINGMvXk2T9EPPDdt8KHRLLTxU+Piqj716yHytER+5+7+scorYkYP7V3xgsAAGRCAMGgkJ+fFwdtPTq+/5FdYpPh5WlbdVlhnDltUnz16O1iaHlxXw8xd9XPjbj3W6vva1kW/7+9+4Cvq6z/B/5Nm9G0TdI9oC2zUPYeZclGRGTUgT/8K4L8UAFliaKC4gJcCCqICwRBBBQQ/MkWkD0KyN7SQielTbqStmn+r+fUhoY2pSOnN/fm/X69Lsk95+be55xLm57P/T7fJ167e9H3aYWLjQ+M2OP0iO4V7z6mzzoRn7k5om7YmhkvABTKklMTAUqQKRh0GXXVFfHBzYfGtiP6RuOChVHRrSwG1lRZfjNvzQuW39th0rPvft9rQMRuJ0dsc2TE7Lcjyqsieg2MqBmS+zABoGCVgjPGRbx8a8Tr90YM2Dhiq09E1A2PqKj2pgAlRQBBlzOotkehh9C1lFdE9N8gYtqry94/fPu29yt7RlSuG9F33TUyPAAoqCnPR1x64KIVnzI3Rdx/fsQnrozYYJ+IclWaQOkwBQPIV+rtsM+3lr2vum/ECL0dAOiiUrXfDZ9fInz4r9Qz6bqjI2ZNKtTIAHIhgADyt+7uER88L6Ky97vbBo6KOOr/FpWYAkBXNPediIlPtd8nadpra3pEALkyBQPIX89+ETscEzHqoIg50xaVk/YcsGgpTgDoqprnL39/CiEASogAAlgz0soWfYYvugEAi6YipkbLM5cx1SKtDpWqBQFKiCkYAABQCDVDIz70k2XvG33CopWgAEqIAAIAAAohVTmsv2fE0bcuasqceiWlqocxv4vY9aSIHjXeF6CkmIIBAACFUtU7YsTOEZ/8U8T8uRHdKiJ6q3wASpMAAgAAOkM/iHQDKGGmYAAAAAC5E0AAAAAAuRNAAAAAALnTA6JUNTYsWlP6pVsj5s2MGLl/RJ91NDUCAACgIAQQpWhufcQTV0Tc9o13t91zXsSG+0Uc8ouImiGFHB0AAABdkCkYpWjGuLbhw2Kv3B7x3N8iWloKMSoAAAC6MAFEKRr7h/b3PfTLiFlT1uRoAAAAQABRchY2R8ya1P7+Oe9ELFywJkcEAAAAAoiS0617xCYfaX//entE9KhdkyMCAAAAAURJWmeXiD4jlt7evTJir29EVNUUYlQAAAB0YXpAlKK6YRGfuTliq/+J6F6xaNs6u0Z87o6I/hsWenQAAAB0QWUtLaW9JEJDQ0PU1dVFfX191NZ2sakH8+f8t+dDc0RVbUTPvoUeEQAlokv/fgUAVkn5qv0YRaGiZ0Rdz0KPAgAAAEzBAAAAAPKnBwQAAACQOwEErKD6ufOzGwAAACtPDwh4H5PqG+O+l6fGVY+Mj4iW+MQOw2OPjQbG0Lpq5w4AAGAFCSDgfcKHYy9/NJ5+q6F129hxM2KToTVx6VE7xBAhBAAAwAoxBQOW4/5X3m4TPiz2/MSZcdcLUzvk3E2cMTceenVaXPf4m/HEuOkxZWaj9wQAACg5KiCgHQ1z58eVD49r9/z86ZFxceAWQ6Jvz8pVPocvTZ4Zn/rtwzFlZlPrto0G947fH7VDDOtrCVUAAKB0qICAdrS8z5lpSY94vwctx+SGxjj6skfbhA/JS5NnxRl/+XfUz53nvQEAAEqGAALaUVddEUfsOLzd83PEDiOib6/K1Qog3pw+d5n7/vXKtJg2SwABAACUDgEELMfuIwdkDSffK02T2GeTQat17qbPXn7AMHd+s/cGAAAoGXpAwHKkpTZTP4a7X5ya9XxoaYlsGc4UPqzuMpxr923/53tUdIvaHhXeGwAAoGQIIOB9pKDhkzuOiAM3H5K1fFidppNL6t+rKvbdZFDc8fyUpfZ9brf1Y1BtlfcGAAAoGQIIWEF9Oih4WCz1j/j+YVvEkNqX49rH34ymBQujpqo8jvvA+nHEjiOiqry79wZgJbS0tMSChS1R0d0M047wzuymrB/RnHnN0adnRfTvVRm9VecBsBrKWtJv6xLW0NAQdXV1UV9fH7W1tYUeDiylcX5zTJ3ZlH3tWVmeVT74xzPQ2XWm368NjfPjrelz408Pj4sJ9XNj300Hx+4bDlzuVDeW741ps+PEPz0R/36zPrvfrSziY9sNi1P33zgG1fZw+gBYJSogoMB6VHSP4f16FnoYAEVpduOC+NuTE+KbNzzTui1NbRtUUxXXHDc61h3Qq6DjK0ZplaajLn00Xn97duu2hS0Rf37szaiproivHLCxKj0AVokaRQCgaE2d1RRn3vhu+LDYlJlN8YP/ez5mNS4oyLiK2Vsz5rYJH5b0x4feiCkNTWt8TACUBgEEAFC0HnxtWrZC0bLc8fzkmD5n+Uses7Q3ps1p97Q0zl9omWgAVpkAAgAoWqlBYnvStIHm9B9WyojlTAusKu8W1RWaJAOwagQQAEDRGr1B/3b3bb52bdRWa3e1sob1rW43hEjLUg+ssUw0AKtGAAEAFK0htT3i4C2HLrW9vFtZfPeQzaNfLxfLK2twbY+4/OgdY5OhNa3bysoiDt9m7fjinhtkzZMBYFVYhhMAKOplONNSxv98cUpccs+r8fasebHTev3i5P02ivUH9IoqF8ur7O2ZTTFt9ryYPW9B9O1ZGQN6V0ZNj4qOfOsA6GIEEABAUQcQSwYRqedD7x7do3eVC2UA6GxMjAQASoLeBADQuQkg4D3entUU49+ZE/e9/HbU9qyIPUYOjEE1VdGryh8XAACAVeWKCpYwuaExTr3mqbjvlbfbNN76wWFbxMFbrRW9hRAAAACrxCoY8F9p3vD1Y99qEz4kLS0RZ/z16ZgwY65zBQAAsIoEELBEt+/f3f96u+fjb09OcK4AKLiZjfPj9bdnxVPjZ8SrU2fFjDnzCj0kAFghpmDAfy1saYnps9v/R9zEehUQABTWpPrG+O7Nz8X/PTMxq9BLdh85IM4bs2Ws1afa2wNAp6YCAv6rZ1V5tnZ8e/bbdIhzBUDBzGpcEOf83/Px96ffDR+Sf738dpx09RMxfXaTdweATk0AAf9VV10RXztwk+jerWypczKiX8/YanidcwVAwbw9uylu+veypwM+8p/p8fYsUzEA6NwKGkDce++9cfDBB8daa60VZWVlccMNN7TZ39LSEmeddVYMHTo0qqurY999942XX365YOOl9I0c3Duu+/zo2GLtRWFDRfeyGLPt2nHVsTvF0DqlrQAUzsy582PhEpUPy1pGGgA6s4L2gJg9e3ZstdVWcfTRR8fhhx++1P4f/vCHceGFF8Yf/vCHWG+99eLMM8+MAw44IJ577rno0aNHQcZMJ9A0M2Le7IiK6ogeHVuV0KOie2wzom/84egdYlZTc3Qvi+jXuzKqK7RLAaCweveoyJaGXnL6xZL69apc00MCgJVS0KuqAw88MLstS6p++NnPfhbf/OY345BDDsm2XX755TF48OCsUuKII45Yw6Ol4JpmRUx9MeKecyKmPB/Rb/2ID3wtYvBmEdV9OvSl+vWqin69OvQpAWC19O9VGftvOjhufXbyUvvSNMEBvaucYQA6tU7bA+L111+PSZMmZdMuFqurq4uddtopHnzwwXZ/rqmpKRoaGtrcKAELmyNeuSPit3tHvHx7RP2bEa/fG3HZhyKe+WvEfGWnAHny+7Xwaqsr4tsf2Sz23Ghgm+3bjOgTv/yfbaO/AAKATq7T1pWn8CFJFQ9LSvcX71uWc845J84+++zcx8caNnNixM0nLXvfbV+PGLlvRJ8Ra3pUAF2G36+dQ+pH9LMjto5ps+bF9DnzslBiQO/KrHIPADq7TlsBsarOOOOMqK+vb72NHz++0EOiI8yZFjF3+rL3zZ8b0TDReQbIkd+vnUefnpWxwaDesf26/WKjwTXCBwCKRqetgBgyZEj2dfLkydkqGIul+1tvvXW7P1dVVZXdKDFl75OVdeu+pkYC0CX5/QoAlGwFRFr1IoUQd955Z+u21M/h4YcfjtGjRxd0bBRAz/4RtWste19aCaOm7VQdAAAAOpeCVkDMmjUrXnnllTaNJ5988sno169fjBgxIk466aT43ve+FyNHjmxdhnOttdaKQw89tJDDphBqhkYc/tuIKw6NaJ7XtjLisF9H9H63SgYAitaCpohZkyOmvRaxcF5E/w0jeg2KqOpd6JEBQHEHEI899ljstdderfdPOeWU7OtnPvOZuOyyy+L000+P2bNnx//+7//GjBkzYrfddotbbrklevToUcBRUxBp4fNhO0R84cGIsX+ImPBExKBNI7Y/OqLvOhHdO+1sIgBYMfNmR7x8W8T1n49Y0PjuFMMPnBGxwzERPfs5kwAUtbKWlpaWKGFp2kZavjM1pKytrS30cOgIzc0RC+ZGlPcQPAAUiN+vOZjyfMTFoyOW9U+zI6+LGLlfHq8KAGtMp+0BAe3q3n1RKaqqBwBKKVx/9HfLDh+Se86LmPPOmh4VAHQoAQQAQKE1N0ZMe7cv1lLq34xoblqTIwKADieAAAAotPLqiBHLWeVr6FYRlRpRAlDcBBAAAIXWrVvElh+PqOi57EbMe54RUVWTy0s3zJ0fE+vnxpSZ/218CQA5sXQAAEBnUDc84rP/F3H9cRFTX1y0rXatiA9fEDFgZIe/3Jx5C+LlybPivFteiCfHz4iBNVXxhQ9sEPtuMjgG1FR1+OsBgFUwAICVZhWMHM2asqjhZEtzRHW/iJohi6ogOtgDr7wdR/7u4aX6Xh6+zdpx1sGbRp+elR3+mgB0baZgrGyH6vq3It55PaJhQvudqgEAVlXvQRGDRkUM3iyidmgu4UOabvHNG55Z5j9l/vrEWzFlpoaXAHQ8UzBW5tOIJ6+KuP9nEXOnR9QMjdjrGxEbfyiiV/8c3hoAgHzMbFwQr709u939Y8dNj40G59NzAoCuSwXEimhsiPjn9yPu+Nai8CGZOTHibydEjL08YoFPCQCA4lHebflVFb2rfEYFQMcTQKyI2VMjxv7h3fs96mLWjl+KiR/+Y0ytGBItaZ4mAECR6NuzMnYfOaDdcGLLtevW+JgAKH0CiBVR/2Zrv4d56+0TLxx2a5wy5UOx/02VMebeIXHl03NiSoOlqwCA4lBbXRFnf2SzGNi77WoXqd3Ejz+2VQys7VGwsQFQutTXrYjF627XDI0Xdvh+jLn89ZjfvCiQmNm0IL550wtx9yvvxHljtoz+7/lFDgDQGa0/sHfccPwu8cCr0+KfL06Jdfr1jMO3HRZr96mO6oruhR4eACVIALEi0vJXNUNj+rYnxLf++XZr+LCkO56fEm/NmCuAAACKxtp9e8bHtu8ZY7YdFt3epy8EAKwuUzBWRFrx4n/+HDMH7xhPjG9o92H3vjR1td8QAIA1TfgAwJqgAmJFpAmRg7eIbhUNUd7t7ViwcBmLZusYDQAAAO1SAbGiunWLfjW948DNh7T7kD02GrjCTwcAAABdiQBiJfSsKo+vfHBUDK1bujP0WQdvGoNqNKAEAACAZTEFYyWN6Ncz/vKFXeKh16bFrc9OiiG1PeITO46I4X2qo3ePipV9OgAAAOgSylpaWpbd0KBENDQ0RF1dXdTX10dtbW2HPnfzwoXRvZsiEgC6njx/vwIApcnV82oQPgAAAMCKEUAAAAAAuRNAAAAAALkTQAAAAAC5E0AAAAAAuRNAAAAAALkTQAAAAAC5E0AAAAAAuRNAAAAAALkTQAAAAAC5E0AAAAAAuRNAAAAAALkTQAAAAAC5E0AAAAAAuRNAAAAAALkTQAAAAAC5E0AAAAAAuRNAAAAAALkTQAAAAAC5E0AAAAAAuRNAAAAAALkTQAAAAAC5E0AAAAAAuRNAAAAAALkTQAAAAAC5E0AAAAAAuRNAAAAAALkrjxLX0tKSfW1oaCj0UACg4GpqaqKsrGy1n8fvVwDo+N+vpa7kA4iZM2dmX4cPH17ooQBAwdXX10dtbe1qP4/frwDQ8b9fS11Zy+KPMErUwoULY8KECauUSKWqiRRcjB8/vmT+Zyq1Y3I8nVupvT+leEyOp+u9Px31CY3fr6X756gUj8nxdG6l9v6U4jE5nvenAmLFlHwFRLdu3WLYsGGr9RzpL41S+IujlI/J8XRupfb+lOIxOZ7OrTO+P36/Fsf7tLpK7ZgcT+dWau9PKR6T42F1aUIJAAAA5E4AAQAAAOROALEcVVVV8a1vfSv7WipK7ZgcT+dWau9PKR6T4+ncSu39KdXjKrXjKcVjcjydW6m9P6V4TI6HjlLyTSgBAACAwlMBAQAAAOROAAEAAADkTgABAAAA5E4AAQAAAOROAAEArFG//OUvY911140ePXrETjvtFI888kjRvgP33ntvHHzwwbHWWmtFWVlZ3HDDDVGszjnnnNhhhx2ipqYmBg0aFIceemi8+OKLUcwuvvji2HLLLaO2tja7jR49Ov7xj39EqTj33HOz/+9OOumkKEbf/va3s/EveRs1alQUs7feeis+9alPRf/+/aO6ujq22GKLeOyxx6JYpb+r3/sepdvxxx8fxai5uTnOPPPMWG+99bL3Z4MNNojvfve7YV2GNUcAAQCsMX/+85/jlFNOyZanGzt2bGy11VZxwAEHxJQpU4ryXZg9e3Z2DClUKXb33HNPdlHx0EMPxe233x7z58+P/fffPzvGYjVs2LDsIv3xxx/PLgL33nvvOOSQQ+LZZ5+NYvfoo4/GJZdckgUsxWyzzTaLiRMntt7uu+++KFbTp0+PXXfdNSoqKrKg67nnnouf/OQn0bdv3yjm/8+WfH/S3w3Jxz72sShG5513XhZM/uIXv4jnn38+u//DH/4wfv7znxd6aF2GZTgBgDUmVTykT9nTP/6ShQsXxvDhw+PEE0+Mr33ta0X9TqRPBa+//vqscqAUTJ06NauESMHEHnvsEaWiX79+8aMf/SiOOeaYKFazZs2KbbfdNi666KL43ve+F1tvvXX87Gc/i2KsgEhVQ08++WSUgvR32P333x//+te/olSlapubb745Xn755ezvvGLz4Q9/OAYPHhy/+93vWreNGTMmq4b44x//WNCxdRUqIACANWLevHnZJ9H77rvvu/8Q6dYtu//ggw96FzqZ+vr61gv2UpBKr6+++uqsoiNNxShmqVLloIMOavNnqVilC9k0hWn99dePI488MsaNGxfF6m9/+1tsv/32WXVACu+22Wab+M1vfhOl9Hd4ukg/+uijizJ8SHbZZZe4884746WXXsruP/XUU1nVzYEHHljooXUZ5YUeAADQNbz99tvZRWD69GlJ6f4LL7xQsHGxtFSZkj7pTOXkm2++eVGfoqeffjoLHBobG6N3795Zlcqmm24axSqFKGn6UiqNL4WKqMsuuyw23njjrLz/7LPPjt133z2eeeaZrBdJsXnttdey8v40zezrX/969h596UtfisrKyvjMZz4TxS5Vq8yYMSOOOuqoKOYqlYaGhqzXSPfu3bPfSd///vez8Is1QwABAMBSn7Cni8Bino+/WLq4TSX+qaLjuuuuyy4E07SSYgwhxo8fH1/+8pezefipiWuxW/JT59TLIgUS66yzTlxzzTVFOUUmBXepAuIHP/hBdj9VQKQ/R7/61a9KIoBI0xbSe5YqVopV+n/ryiuvjKuuuirrP5L+bkhhazqmUniPioEAAgBYIwYMGJB94jR58uQ229P9IUOGeBc6iRNOOCGb451W+EhNHItd+vR5ww03zL7fbrvtsk+lL7jggqyBY7FJU5hSw9bU/2Gx9Alueq9SX5Wmpqbsz1ix6tOnT2y00UbxyiuvRDEaOnToUsHWJptsEn/5y1+i2L3xxhtxxx13xF//+tcoZl/5yleyKogjjjgiu59WKUnHllYBEkCsGXpAAABr7EIwXQCm+bdLfmKY7hf7nPxSkJahS+FDmqJw1113ZcvUlaL0/1y6UC9G++yzTzalJH1qu/iWPnFP5ePp+2IOHxY313z11VezC/lilKYsvXfp2tRrIFV1FLtLL70062uReo8Uszlz5mS9h5aU/tykvxdYM1RAAABrTJobnT5lShdNO+64Y9a5PzUF/OxnP1u0F0xLflr7+uuvZxeCqXHjiBEjotimXaSy5BtvvDGbfz9p0qRse11dXdYhvhidccYZWcl4ei9mzpyZHd/dd98dt956axSj9L68tydHr169on///kXZq+O0006Lgw8+OLtAnzBhQrY8b7oY/OQnPxnF6OSTT86aHKYpGB//+MfjkUceiV//+tfZrZili/MUQKS/u8vLi/vyMf3/lno+pL8T0hSMJ554In76059mjTVZMyzDCQCsUalUPC2DmC5w0/KBF154YTb3uxili9m99tprqe3pH+qpuV4xaa+rfbrwKNamc6mPQKqwSQ0OU5CS+gx89atfjf322y9KxZ577lm0y3CmMvg0fWTatGkxcODA2G233bKLww022CCKVZq+lIKvtLpHqiJKoeuxxx4bxey2226LAw44IKvuSFNkilkKIs8888ys0itNZ0q9H1LgddZZZ2VVeuRPAAEAAADkTg8IAAAAIHcCCAAAACB3AggAAAAgdwIIAAAAIHcCCAAAACB3AggAAAAgdwIIAAAAIHcCCAAAACB3AggAACiQyy67LPr06dMhz3X33XdHWVlZzJgxo0OeD6CjCSAAAGAlHHXUUXHooYc6ZwArSQABAACsspaWlliwYIEzCLwvAQQAACzDddddF1tssUVUV1dH//79Y999942vfOUr8Yc//CFuvPHGbLpDuqWpD8ua/vDkk09m2/7zn/+0mXIxYsSI6NmzZxx22GExbdq01n3pcd26dYvHHnuszTh+9rOfxTrrrBMLFy5coffp8ccfj+233z57jV122SVefPHFNvsvvvji2GCDDaKysjI23njjuOKKK9qMIY05jX2xdEyL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5E4AAQAAAOROAAEAAADkTgABAAAA5E4AAQAAAOROAAEAAADkTgABAAAAdN4AYt68efHiiy/GggULOnZEAAAAQMlZ6QBizpw5ccwxx0TPnj1js802i3HjxmXbTzzxxDj33HPzGCMAAADQ1QKIM844I5566qm4++67o0ePHq3b99133/jzn//c0eMDAAAASkD5yv7ADTfckAUNO++8c5SVlbVuT9UQr776akePDwAAAOiKFRBTp06NQYMGLbV99uzZbQIJAAAAgFUOILbffvv4+9//3np/cejw29/+NkaPHr2yTwcAAAB0ASs9BeMHP/hBHHjggfHcc89lK2BccMEF2fcPPPBA3HPPPfmMEgAAAOhaFRC77bZb1oQyhQ9bbLFF3HbbbdmUjAcffDC22267fEYJAAAAFLWylpaWlhV98Pz58+O4446LM888M9Zbb70oBg0NDVFXVxf19fVRW1tb6OEAAABAl7RSFRAVFRXxl7/8Jb/RAAAAACVppadgHHroodlSnAAAAAC5NaEcOXJkfOc734n7778/6/nQq1evNvu/9KUvrexTAgAAACVupXpAJMvr/ZCW5HzttdeiM9EDAgAAAIqwAuL111/PZyQAAABAyVrpAGJJi4snUuUDAF3Q7LcjZk+NmPNORK8BET0HRPTqX+hRAQBQCk0ok8svvzy22GKLqK6uzm5bbrllXHHFFR0/OgA6rxnjIv50RMRFO0dc9qGIX+4Ycc3/i6h/s9AjAwCgFAKIn/70p/GFL3whPvShD8U111yT3T74wQ/G5z//+Tj//PPzGSUAncucaRF/OTbizUfbbn/j/ogbT4yYO71QIwMAoJSaUJ599tnx6U9/us32P/zhD/Htb3+70/WI0IQSIAdTXoi4aKf295/wWMSAkU49AACrXgExceLE2GWXXZbanralfQB0AU0Nq7cfAIAuZ6UDiA033DCbdvFef/7zn2PkSJ92AXQJ1X3a35caE/dYzn4AALqklV4FI02/+MQnPhH33ntv7Lrrrtm2+++/P+68885lBhMAlKCeAyM23DfilTuW3jfq4EUrYgAAwOpUQIwZMyYefvjhGDBgQNxwww3ZLX3/yCOPxGGHHbayTwdAMerZN+IjP4/Y+KBFFQ9J+rrpYREHnhfRo67QIwQAoNibUBYbTSgBcjS3PmLO1IimmRFVtRG9Bkb0qHXKAQBY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bhm1tbXZbfTo0fGPf/wjSsW5556b/X930kknRTH69re/nY1/yduoUaOi2L311lvxqU99Kvr37x/V1dWxxRZbxGOPPRbFKP1d/d73KN2OP/74KEbNzc1x5plnxnrrrZe9NxtssEF897vfDW2bAIBiJoBox5///Oc45ZRTsu7jY8eOja222ioOOOCAmDJlShSj2bNnZ8eQQpVScM8992QXFg899FDcfvvtMX/+/Nh///2z4yxGw4YNyy7SH3/88ewCcO+9945DDjkknn322Sh2jz76aFxyySVZwFLMNttss5g4cWLr7b777otiNn369Nh1112joqIiC7uee+65+MlPfhJ9+/aNYv3/bMn3J/29kHzsYx+LYnTeeedlweQvfvGLeP7557P7P/zhD+PnP/95oYcGALDKrILRjlTxkD5hT//4SxYuXBjDhw+PE088Mb72ta9FMUufCl5//fVZ1UCpmDp1alYJkYKJPfbYI0pBv3794kc/+lEcc8wxUaxmzZoV2267bVx00UXxve99L7beeuv42c9+FsVYAZGqhp588skoFenvsfvvvz/+9a9/RSlK1TY333xzvPzyy9nfecXmwx/+cAwePDh+97vftW4bM2ZMVg3xxz/+saBjAwBYVSoglmHevHnZJ9H77rvvuyeqW7fs/oMPPrjKJ5v81NfXt160F7tUen311Vdn1RxpKkYxS1UqBx10UJs/S8UqXcimKUzrr79+HHnkkTFu3LgoZn/7299i++23zyoEUni3zTbbxG9+85solb/D00X60UcfXZThQ7LLLrvEnXfeGS+99FJ2/6mnnsqqbg488MBCDw0AYJWVr/qPlq633347uwhMnz4tKd1/4YUXCjYuli1Vp6RPO1M5+eabb160p+npp5/OAofGxsbo3bt3VqWy6aabRrFKIUqavpRK40uhIuqyyy6LjTfeOCvvP/vss2P33XePZ555JutDUoxee+21rMQ/TTX7+te/nr1PX/rSl6KysjI+85nPRDFL1SozZsyIo446Koq5QqWhoSHrNdK9e/fsd9L3v//9LPwCAChWAgiKXvqUPV0IFvuc/HRxm0r8UzXHddddl10EpiklxRhCjB8/Pr785S9n8/BTE9dit+SnzqmXRQok1llnnbjmmmuKdopMCu5SBcQPfvCD7H6qgEh/jn71q18VfQCRpi2k9yxVrBSr9P/WlVdeGVdddVXWfyT93ZCC1nRMxf7+AABdlwBiGQYMGJB94jR58uQ229P9IUOGrKn3hhVwwgknZPO80yofqZFjMUufPG+44YbZ99ttt132ifQFF1yQNXAsNmkKU2rYmvo/LJY+wU3vU+qr0tTUlP0ZK1Z9+vSJjTbaKF555ZUoVkOHDl0q3Npkk03iL3/5SxSzN954I+64447461//GsXsK1/5SlYFccQRR2T30wol6djSCkACCACgWOkB0c6FYLoATPNvl/y0MN0v9jn5pSItRZfChzRN4a677sqWqis16f+5dKFejPbZZ59sSkn61HbxLX3ansrH0/fFHD4sbq756quvZhfxxSpNWXrv0rWp30Cq7Chml156adbTIvUeKWZz5szJeg8tKf25SX8vAAAUKxUQ7UjzotOnTOmiaccdd8w696emgJ/97GejWC+Ylvy09vXXX88uBFPTxhEjRkQxTrtIpck33nhjNgd/0qRJ2fa6urqsS3yxOeOMM7KS8fRezJw5Mzu2u+++O2699dYoRuk9eW8/jl69ekX//v2Lsk/HaaedFgcffHB2cT5hwoRsed50MfjJT34yitXJJ5+cNTpMUzA+/vGPxyOPPBK//vWvs1uxShfnKYBIf3eXlxf3r7f0/1vq+ZD+TkhTMJ544on46U9/mjXWBAAoVpbhXI5UKp6WQUwXt2n5wAsvvDCb+12M0sXsXnvttdT29A/11Fyv2LTX2T5dfBRj47nURyBV2KQGhylESX0GvvrVr8Z+++0XpWLPPfcs2mU4Uxl8mj4ybdq0GDhwYOy2227ZxeEGG2wQxSxNX0rhV1rhI1URpeD12GOPjWJ12223xQEHHJBVdqQpMsUsBZFnnnlmVuWVpjOl3g8p8DrrrLOyKj0AgGIkgAAAAABypwcEAAAAkDsBBAAAAJA7AQQAAACQOwEEAAAAkDsBBAAAAJA7AQQAAACQOwEEAAAAkDsBBAAAAJA7AQSwQi677LLo06dPh5ytu+++O8rKymLGjBnOPgAAdBECCChhRx11VBx66KGFHgYAAIAAAug6WlpaYsGCBYUeBgAAdEkqIKAEXHfddbHFFltEdXV19O/fP/bdd9/4yle+En/4wx/ixhtvzKY7pFua+rCs6Q9PPvlktu0///lPmykXI0aMiJ49e8Zhhx0W06ZNa92XHtetW7d47LHH2ozjZz/7WayzzjqxcOHCFRr3448/Httvv332Grvssku8+OKLbfZffPHFscEGG0RlZWVsvPHGccUVV7QZQxpzGvti6ZgWH2ey+Fj/8Y9/xHbbbRdVVVVx3333xVNPPRV77bVX1NTURG1tbbbvvccCAAB0LAEEFLmJEyfGJz/5yTj66KPj+eefzy66Dz/88PjWt74VH//4x+ODH/xg9ph0Sxf5K+Lhhx+OY445Jk444YTsAj9drH/ve99r3b/uuutmIcell17a5ufS/TTtI4UTK+Ib3/hG/OQnP8ku/svLy7NjWOz666+PL3/5y3HqqafGM888E8cdd1x89rOfjX/+85+xsr72ta/Fueeem52fLbfcMo488sgYNmxYPProo1kIkvZXVFSs9PMCAAArrnwlHgt0QilYSNMKUuiQqg+SVA2RpIqIpqamGDJkyEo95wUXXJAFF6effnp2f6ONNooHHnggbrnlltbHfO5zn4vPf/7z8dOf/jSrLBg7dmw8/fTTWcXFivr+978fH/jAB7LvUwhw0EEHRWNjY/To0SN+/OMfZ2HGF7/4xWz/KaecEg899FC2PQUiK+M73/lO7Lfffq33x40bl1WIjBo1Krs/cuTIlXo+AABg5amAgCK31VZbxT777JOFDh/72MfiN7/5TUyfPn21njNVCuy0005tto0ePbrN/dTcsnv37lmlwuIpGykYSNURKypVIyw2dOjQ7OuUKVNax7Drrru2eXy6n7avrDTNY0kpzEgBSqriSJURr7766ko/JwAAsHIEEFDkUghw++23Z30ONt100/j5z3+e9Ut4/fXXl/n4xdMjUkPGxebPn7/Sr5v6Mnz605/Opl3MmzcvrrrqqjZTKFbEktMeUq+GZEX7R6zMcfTq1avN/W9/+9vx7LPPZhUXd911V3beFgcpAABAPgQQUALSxXuqDjj77LPjiSeeyMKBdEGdvjY3N7d57MCBA1unbiy2ZCPHZJNNNsn6QCwpTX94r1RFcMcdd8RFF13UOg2ko6Qx3H///W22pfspLFjR41ieNK3k5JNPjttuuy0b93v7WQAAAB1LDwgocikouPPOO2P//fePQYMGZfenTp2aXcCnfgq33nprtrpEWh2jrq4uNtxwwxg+fHhWBZB6MLz00ktZI8glfelLX8oCjdRv4ZBDDsmeY8n+D4ul19h5553jq1/9alb9kHpOdJTUoyE10dxmm22yqRI33XRT/PWvf80CjyS9VnrtNIVivfXWy6ZufPOb33zf5507d2723B/96Eezn3vzzTezZpRjxozpsLEDAABLUwEBRS4tI3nvvffGhz70oexT/XQRngKFAw88MI499thsOkbqgZAqBlIFQZr28Kc//SleeOGFrAfDeeed12aFiyRd2KdeEqkZZeoxkaoE2ru4T6tlpCkYKzv94v2kHhPp9VMIstlmm8Ull1ySVSnsueeerY/5/e9/n1VepGU0TzrppKWOo70pK2lJ0TR9JJ2vFHKkc5WqRwAAgPyUtSw5gRpgJX33u9+Na6+9Nv797387dwAAQLtUQACrZNasWfHMM8/EL37xizjxxBOdRQAAYLkEEMAqOeGEE7KpD2lKxHunX3z+85+P3r17L/OW9gEAAF2PKRhAh0sNIRsaGtrtWZGaZQIAAF2LAAIAAADInSkYAAAAQO4EEAAAAEDuBBAAAABA7gQQAAAAQO4EEAAAAEDuBBAAAABA7gQQAAAAQO4EEAAAAEDk7f8DG5HqK4kT/w8AAAAASUVORK5CYII=" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 30 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_16.4 Histogram using Seaborn_**\n", + "id": "2b4440136bedeb79" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T06:09:06.530587Z", + "start_time": "2025-11-14T06:09:06.399441Z" + } + }, + "cell_type": "code", + "source": [ + "# axes level\n", + "sns.histplot(data = student , x ='attendance_rate',hue='gender',bins=15,element='step')" + ], + "id": "1532bdd469bc635c", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 36 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T06:14:10.381673Z", + "start_time": "2025-11-14T06:14:10.027059Z" + } + }, + "cell_type": "code", + "source": "sns.displot(kind='hist', data = student, x = 'study_hours',col='gender',element='step')", + "id": "7f7ec13ff49ee517", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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VKkUuFO3bKBymUgNAAAAMhG6AQAAIBOhGwAAADIRugEAACAToRsAAAAyEboBAAAgE6EbAAAAMhG6AQAAIBOhGwAAADIRugEAACAToRsAAAAyEboBAAAgE6EbAAAAMhG6AQAAIBOhGwAAADIRugEAACAToRsAAAAyEboBAAAgE6EbAAAAMhG6AQAAIBOhGwAAADIRugEAACAToRsAAAAyEboBAAAgE6EbAAAAOmPoXrFiRUycODEGDx4cvXr1ih133DHOOeecKJVKHV00AAAAWKtuUcG+9a1vxcUXXxw//OEPY88994z7778/jjvuuGhsbIyTTz65o4sHAAAA1Ru6//CHP8SIESPiyCOPLNYHDRoUP/vZz+K+++7r6KIBAABAdYfuQw45JC699NJ4/PHHY5dddomHHnoo7r777rjgggvW+Jzm5uZiadXU1FT2ci14cUksaX49akVDfbcYvFVD1IJaOTfzFy7u6CIAbNS6FYDKVSvfTRs6KPdUdOg+44wziop9t912i65duxZjvL/xjW/EqFGj1vicyZMnx6RJk7KGumFTZkWtmXnq0KoP3rV4brp0qevoIgBkr1sBqOzvouOunhu1YmYH5J6KDt0///nP46c//WlceeWVxZjuuXPnxrhx46J///4xevTo1T5nwoQJMX78+Lb1FNoHDBhQtjK1tqLu1LchevXoGtXutWUrYv4LtdE6XGvnJn3I9epe/ccBVL/cdSsAlSl9Fx0yoDFaWqp/IuvXOjD3VHToPu2004rW7mOOOaZY33vvvePpp58ufnFfU+iur68vltxSqEvdE6g8zg1AeW2suhWAyqMRqMYvGfbqq69Gly7ti5i6mbe0tHRYmQAAAGBdVXRT7VFHHVWM4R44cGDRvfzBBx8sJlE7/vjjO7poAAAAUN2h+8ILL4yJEyfGf//3f8fChQuLsdxf+MIX4utf/3pHFw0AAACqO3T37t07pk6dWiwAAABQbSp6TDcAAABUM6EbAAAAMhG6AQAAIBOhGwAAADIRugEAACAToRsAAAAyEboBAAAgE6EbAAAAMhG6AQAAIBOhGwAAADIRugEAACAToRsAAAAyEboBAAAgE6EbAAAAMhG6AQAAIBOhGwAAADIRugEAACAToRsAAAAyEboBAAAgE6EbAAAAMhG6AQAAIBOhGwAAAIRuAAAAqC5augEAACCTbrl2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AACATIRuAAAAyEToBgAAgEyEbgAAAMhE6AYAAIBMhG4AAADIROgGAACATIRuAAAAyEToBgAAgM4YuidPnhzveMc7onfv3rH11lvHyJEjY968eR1dLAAAAKj+0H3nnXfGiSeeGPfee2/ceuutsXz58jj88MNjyZIlHV00AAAAWKtuUcFuvvnmduvTp08vWrznzJkT73nPezqsXAAAAFD1Ld1v9PLLLxe3W265ZUcXBQAAAKq7pXtlLS0tMW7cuDj00ENjr732WuPjmpubi6VVU1PTRiohANQmdSuwscxfuLjq3+xaOAY6aehOY7sfeeSRuPvuu9c6+dqkSZM2WrkAoNapW4HcunSpK27HXT235o4JqiJ0jxkzJm688ca46667YrvttnvTx06YMCHGjx/frqV7wIABG6GUAFCb1K1Abr26d40hAxqjpaVUM4E7HRNUfOgulUpx0kknxYwZM2LWrFkxePDgtT6nvr6+WACA8lC3AhuDkEqt6lbpXcqvvPLKuP7664trdT///PPF9sbGxujVq1dHFw8AAACqd/byiy++uJixfOjQodGvX7+25eqrr+7oogEAAED1dy8HAACAalXRLd0AAABQzYRuAAAAyEToBgAAgEyEbgAAAMhE6AYAAIBMhG4AAADIROgGAACATIRuAAAAyEToBgAAgEyEbgAAAMhE6AYAAIBMhG4AAADIROgGAACATIRuAAAAyEToBgAAgEyEbgAAAMhE6AYAAIBMhG4AAADIROgGAACATIRuAAAAyEToBgAAgEyEbgAAAMhE6AYAAIBMhG4AAADIROgGAACATLrl2jEAALVj/sLFUe1q4RiA6iN0AwCwRl261BW3466eW3PHBLAxCN0AAKxRr+5dY8iAxmhpKdXEu5QCdzomgI1F6AYA4E0JqQAbzkRqAAAAkInQDQAAAJkI3QAAAJCJ0A0AAACZCN0AAACQidANAAAAmQjdAAAAkInQDQAAAJkI3QAAAJCJ0A0AAACZCN0AAACQidANAAAAmQjdAAAAkInQDQAAAJkI3QAAAJCJ0A0AAACZCN0AAACQidANAAAAmQjdAAAAkInQDQAAAJkI3QAAAJCJ0A0AAACZCN0AAACQidANAAAAmQjdAAAA0JlD97Rp02LQoEHRs2fPOOigg+K+++7r6CIBAABA9Yfuq6++OsaPHx9nnnlmPPDAAzFkyJA44ogjYuHChR1dNAAAAKju0H3BBRfE5z//+TjuuONijz32iEsuuSQ22WSTuPzyyzu6aAAAAFC9oXvZsmUxZ86cGD58eNu2Ll26FOv33HNPh5YNAAAA1qZbVLAXX3wxVqxYEdtss0277Wn9scceW+1zmpubi6XVyy+/XNw2NTWVpUyLX2mKluZX45WmiOXdu5ZlnwCwsqXLVxR1Tapzmprqyvrm9O7dO+rq1m+fuevWRP0KQK3WrRUdujfE5MmTY9KkSatsHzBgQFlf55my7g0AVnXw1PK/Kykwb7bZZhVZtybqVwBqrW6tK5VKpajg7uVp/PY111wTI0eObNs+evToWLRoUVx//fVr/TW+paUl/v3vf0efPn3W+5f99At++kLxzDPPrPcXlEpVa8fkeCpbrZ2fWjwmx9P5zk85WrrfSt2a+LurbLV2fmrxmBxPZXN+Ot856l3NLd09evSI/fffP26//fa20J0q+rQ+ZsyY1T6nvr6+WFa2+eabv6VypBNRCx/QtXxMjqey1dr5qcVjcjyVraPPT466tRKOq9wcT+Vzjiqb81PZau38bMxjqujQnaTLhaWW7QMOOCAOPPDAmDp1aixZsqSYzRwAAAAqWcWH7k9+8pPxwgsvxNe//vV4/vnnY999942bb755lcnVAAAAoNJUfOhOUlfyNXUnzyl1pTvzzDNX6VJXzWrtmBxPZau181OLx+R4KlutnZ9aPS7HU/mco8rm/FS2Wjs/HXFMFT2RGgAAAFSzLh1dAAAAAKhVQjcAAABkInQDAABAJkL3m5g2bVoMGjQoevbsGQcddFDcd999Ua3uuuuuOOqoo6J///7Fhduvu+66qFaTJ0+Od7zjHcVF6LfeeuviGu7z5s2LanbxxRfHPvvs03atwIMPPjhuuummqBXnnXde8Xc3bty4qEZnnXVWUf6Vl9122y2q2bPPPhuf+tSnok+fPtGrV6/Ye++94/77749qlT6r33iO0nLiiSdGNVqxYkVMnDgxBg8eXJyfHXfcMc4555yohWlY1K2Vq9bqV3Vr5VO/VjZ1a/kI3Wtw9dVXF9cIT7PaPfDAAzFkyJA44ogjYuHChVGN0rXN0zGkLzvV7s477yy+SN97771x6623xvLly+Pwww8vjrFabbfddkUwnTNnThF83ve+98WIESPi0UcfjWo3e/bs+P73v1/8qFDN9txzz3juuefalrvvvjuq1UsvvRSHHnpodO/evfhx589//nOcf/75scUWW0Q1/52tfH7SZ0Ny9NFHRzX61re+VQSGiy66KP7yl78U69/+9rfjwgsvjGqmbq1stVa/qlurg/q1cqlbyyjNXs6qDjzwwNKJJ57Ytr5ixYpS//79S5MnT676tyud9hkzZpRqxcKFC4tjuvPOO0u1ZIsttij97//+b6mavfLKK6Wdd965dOutt5be+973lsaOHVuqRmeeeWZpyJAhpVpx+umnl971rneValn6W9txxx1LLS0tpWp05JFHlo4//vh22z72sY+VRo0aVapm6tbqUov1q7q1sqhfq4u6dcNp6V6NZcuWFS2Ow4cPb9vWpUuXYv2ee+4p528elMHLL79c3G655ZY18X6mbqVXXXVV0bKQuplXs9RicuSRR7b7f6laPfHEE8XwjB122CFGjRoVf/vb36Ja3XDDDXHAAQcUrcCpC+l+++0Xl112WdTSZ/hPfvKTOP7444su5tXokEMOidtvvz0ef/zxYv2hhx4qeld88IMfjGqlbq0+tVS/qlsrl/q1Oqhb35pub/H5NenFF18sPpy32WabdtvT+mOPPdZh5WJVLS0txTjh1FV2r732quq36E9/+lMRspcuXRqbbrppzJgxI/bYY4+oVumHgzQ0I3VNqnZpTofp06fHrrvuWnRdnjRpUrz73e+ORx55pBj7WG2efPLJoutyGkLzla98pThHJ598cvTo0SNGjx4d1S7NWbFo0aL47Gc/G9XqjDPOiKampmLugK5duxZ10je+8Y3iB59qpW6tLrVSv6pbK5v6tXqoW98aoZuqb0lNwaeax9e2SoFu7ty5RcvCNddcU4SfNL6uGoP3M888E2PHji3GBKaJCKvdyq2LaWx6+pKw/fbbx89//vM44YQTohq/TKeW7m9+85vFemrpTv8fXXLJJTURun/wgx8U5yz1TKhW6W/rpz/9aVx55ZXFeMf02ZACUDqmWjhHVL5aqV/VrZVN/Vo91K1vjdC9GltttVXRsvDPf/6z3fa0/ra3ve0tvuWUy5gxY+LGG28sZmZPk6VUu9TKuNNOOxX/3n///YvWx//5n/8pJiGrNml4Rpp08O1vf3vbttRSl85Vmhiqubm5+H+sWm2++eaxyy67xPz586Ma9evXb5Ufc3bffff45S9/GdXu6aef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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 38 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_16.5 KDE plot using Seaborn_**", + "id": "e21f4f7ae0a04c6d" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T06:20:39.025033Z", + "start_time": "2025-11-14T06:20:38.841737Z" + } + }, + "cell_type": "code", + "source": "sns.displot(kind='hist', data = tips_data, x = 'total_bill', bins=20)", + "id": "ed37fc43d4e84228", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 39 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T06:22:23.044716Z", + "start_time": "2025-11-14T06:22:22.662543Z" + } + }, + "cell_type": "code", + "source": "sns.displot(kind='hist', data = tips_data, x = 'tip', bins=20)", + "id": "88846bff4edcbc4a", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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fCSmTZsWO3bsKPfQAKB3R3rhwoVx4403xuc+97k4++yz4/77749BgwbFkiVLyj00AOi9J47t378/1q1bF3Pnzu2Y17dv35g6dWqsXr36kH+mpaWlmNo1NTUVH5ubm7s9nt27dxcf3/g/m+JAy95uLat56//5f+N77aXo369Pt8dWyuX1hmXlPLbesKycx9a8raH4mH73tP8/31WbNm0q2e+MUo+t/ffpwYMHu72cUn6fpf4eNx2FsaVxlaIpyQknnBB9+rzPz2xbxl577bW2NMRnn3220/wvfvGLbRdccMEh/8y8efOKP2OyDvwM+BnwM+BnIDJfB01NTe/bway3pLsibXWnY9jt0r8S33jjjTjppJPe/18rFSb9K2/06NGxefPmqKmpKfdwKoJ1ar32FH5We856TVvS7yfrSKfbrx133HGxffv2TvPT65EjRx7yzwwcOLCY3mno0KHRW6UfJJG2TnsCP6vWaU9Rcwx/r2Z94tiAAQNiwoQJsXLlyk5bxun15MmTyzo2ADjast6STtKu6+uuuy5+/dd/PS644IK466674q233irO9gaASpZ9pD/96U/HL37xi7j99ttj27ZtMX78+FixYkWMGDGi3EPLWtrln64tf/euf6zT3PhZtU57ioFl+L3aJ509dsz+awBAZRyTBoDeTKQBIFMiDQCZEmkAyJRIV5AFCxbE+eefX9zB5pRTTokrr7yy4761lM4dd9xR3L1u1qxZVms3vPbaazFjxoziboDV1dXxa7/2a/H8889bp93w9ttvx2233RZjx44t1umHPvSh+Ku/+qt0+2fr9Qg8/fTTccUVV8Spp55a/L/+6KOPdno/rc90xdGoUaOK9ZyeJ/HSSy/F0SDSFWTVqlVx0003xZo1a+Lxxx+P1tbWuPTSS4vryimN5557Lr773e/GeeedZ5V2w5tvvhkXXnhh9O/fP/7lX/4l/vM//zO+9a1vxYknnmi9dsM3vvGNuO++++Kee+6J+vr64vU3v/nN+M53vmO9HoH0OzM9FnnRokWHfD+t07vvvrt4KuPatWvj+OOPLx6hvG/fvii5Uj4Qg7zs2LGjuIH7qlWryj2UirBr1662M888s+3xxx9v+83f/M22W265pdxD6rFuvfXWtosuuqjcw6g4l19+edv111/fad706dPbrr322rKNqaeLiLZHHnmk4/XBgwfbRo4c2fY3f/M3HfN27tzZNnDgwLZ/+Id/KPl/35Z0BWt/TOewYcPKPZSKkPZSXH755cWuLbrnscceK+4i+Lu/+7vFoZmPfvSj8b3vfc9q7aaPf/zjxW2T/+u//qt4/dOf/jSeeeaZuOyyy6zbEnnllVeKG2u98/fAkCFDYuLEiYd9hHJF33GMrkn3OE/HTNMuxXPPPddq7KaHHnooXnjhhWJ3N933P//zP8Vu2XTb37/8y78s1uvnP//54n796TbAdM1f/MVfFE9qqqurKx5OlI5Rf/3rX49rr73WKi2RFOjk3Xe9TK/b3yslka7grb4NGzYU/4qme9Jj6W655ZbiOH9VVZXVWaJ/RKYt6b/+678uXqct6fTzmo7xiXTX/fCHP4y///u/jwcffDDOOeecePHFF4t/rKcToKzXnsnu7gp08803x49//ON48skn47TTTiv3cHq8devWxY4dO+JjH/tY9OvXr5jSSXrpxJH0edpa4ciks2LPPvvsTvPGjRsXDQ0NVmU3fPGLXyy2pq+++uribPnPfOYzMXv27OLKD0qj/THJR/II5e4Q6QqSznFIgX7kkUfiiSeeKC7DoPsuueSSWL9+fbFV0j6lrcC0CzF9nnYrcmTSYZh3Xx6YjqOefvrpVmU37NmzJ/r27fxrPf18pj0XlEb6vZpi/M5HKKdDDOks76PxCGW7uytsF3fazfWjH/2ouFa6/fhIOqkhXctH16R1+e7j+umSi3R9r+P9XZO27tJJTml39+/93u/FT37yk1i8eHEx0XXp2t50DLq2trbY3f0f//EfsXDhwrj++uut1iOwe/fuePnllzudLJb+QZ5Owk3rNh1C+NrXvhZnnnlmEe10bXo6pJDuTVFyJT9fnLJJf52HmpYuXepvpcRcgtV9y5cvbzv33HOLS1fq6uraFi9eXIKl9m7Nzc3FpYG1tbVtVVVVbWeccUbbl770pbaWlpZyD61HefLJJw/5u/S6667ruAzrtttuaxsxYkTx83vJJZe0bdq06aiMxaMqASBTjkkDQKZEGgAyJdIAkCmRBoBMiTQAZEqkASBTIg0AmRJpAMiUSAPv66mnnoo+ffrEzp07rSk4xtxxDOjk4osvjvHjx8ddd91VvN6/f3+88cYbxfNyU6yBY8cDNoD3NWDAgKPyCD7gl7O7G+jw2c9+tnhW9re//e1iqzlNy5Yt67S7O70eOnRoPProo8VTgKqqqmLatGmxefNmaxJKTKSBDinO6Zm4N954Y2zdurWYRo8efcjnFqdHIn7/+9+Pf//3fy8CfvXVV1uTUGJ2dwMd0rPH0+7tQYMGdezi3rhx43vWUGtra9xzzz0xceLE4vXf/d3fxbhx44rnQl9wwQXWKJSILWngiPXr1y/OP//8jtd1dXXFLvD6+nprE0pIpAEgUyINdJJ2d7/99tvvu1YOHDgQzz//fMfrTZs2Fcel0y5voHREGuhkzJgxsXbt2nj11VejsbExDh48+J411L9//5g5c2bxdevWrSvOCp80aZLj0VBiIg108oUvfCGOO+64OPvss+Pkk0+OhoaG96yhdGLZrbfeGtdcc01ceOGFMXjw4PjBD35gTUKJueMYcETSddKzZs1ym1A4BmxJA0CmRBoAMmV3NwBkypY0AGRKpAEgUyINAJkSaQDIlEgDQKZEGgAyJdIAkCmRBoDI0/8Fi12z6nwCR9wAAAAASUVORK5CYII=" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 40 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T08:50:32.261429Z", + "start_time": "2025-11-14T08:50:32.104961Z" + } + }, + "cell_type": "code", + "source": [ + "# axes level\n", + "sns.kdeplot(data = student , x ='attendance_rate')" + ], + "id": "c4557a57dd919054", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 41 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T09:08:33.509489Z", + "start_time": "2025-11-14T09:08:33.348591Z" + } + }, + "cell_type": "code", + "source": "sns.kdeplot(data= tips_data, x ='tip', hue='sex', fill=True)", + "id": "2c3a58ab3a994c15", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAkgAAAGwCAYAAABSN5pGAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjcsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvTLEjVAAAAAlwSFlzAAAPYQAAD2EBqD+naQAAcvxJREFUeJzt3Qd4VGXWB/B/Mum9NwgptFBC74KosGDvihVEF10/u+susLuCrqtYERVW1FVh14YiYkfp0kPvhJpCeiG9J/M95x0Sk5BAEmbmTvn/nr0bZubO3JubmDnzvuec10Gv1+tBRERERA0cf/8nERERETFAIiIiImoBR5CIiIiImmGARERERNQMAyQiIiKiZhggERERETXDAImIiIioGafmd1Db1NXVIT09Hd7e3nBwcOBlIyIisgLS/rG4uBgRERFwdGx9nIgBUgdJcBQZGdnRpxMREZGGUlNT0blz51YfZ4DUQTJyVH+BfXx8OvoyREREZEZFRUVqgKP+fbw1DJA6qH5aTYIjBkhERETW5ULpMUzSJiIiImqGARIRERFRMwyQiIiIiJphDhIREZERW8BUVVXxemrI2dkZOp3uol+HARIREZERSGB06tQpFSSRtvz8/BAWFnZRfQoZIBERERmh+WBGRoYauZAS8vM1ICTT/hzKysqQnZ2tboeHh3f4tRggERERXaSamhr1xizdmT08PHg9NeTu7q6+SpAUEhLS4ek2iwhxFyxYgOjoaLi5uWH48OFISEhodd8PPvgAY8aMgb+/v9rGjx9/zv4SQc6aNUtFjnKhZJ9jx4412Sc/Px9333236mEkQ3EPPPAASkpKTPY9EhGR7aqtrVVfXVxctD4VAhqC1Orq6g5fD80DpCVLluDpp5/G7NmzsWvXLvTv3x8TJ05sGB5rbt26dbjzzjuxdu1abNmyRQ1lTpgwAWlpaQ37vPrqq3j77bexcOFCbNu2DZ6enuo1KyoqGvaR4OjgwYNYuXIlfvjhB/z222948MEHzfI9ExGRbeLanDb0c9BrbNiwYfpHHnmk4XZtba0+IiJCP2fOnDY9v6amRu/t7a1fvHixul1XV6cPCwvTv/baaw37FBQU6F1dXfWff/65un3o0CG9fOvbt29v2Ofnn3/WOzg46NPS0tp03MLCQvUa8pWIiOxbeXm5em+Rr2TZP4+2vn87ap3xv3PnTjUFVk8S2+S2jA61hcz5yhBaQECAui0VBJmZmU1e09fXV03d1b+mfJVptSFDhjTsI/vLsWXEqSWVlZVq/ZbGGxEREdkmTQOk3NxcNW8bGhra5H65LUFOW0yfPl0lxdUHRPXPO99ryldJ3GrMyclJBVmtHXfOnDkq0KrfZGqPiIiIbJPmOUgX4+WXX8YXX3yBb775RiV4m9LMmTNRWFjYsKWmppr0eERERKQdTcv8g4KCVPldVlZWk/vltjR4Op/XX39dBUirVq1Cv379Gu6vf568RuP+B3J7wIABDfs0TwKXEk2pbGvtuK6urmojIiIi26fpCJKUQw4ePBirV69uuE86kMrtkSNHtvo8qVJ74YUXsGLFiiZ5RCImJkYFOY1fU/KFJLeo/jXla0FBgcp/qrdmzRp1bMlVImouNb8MnyekYO2RbFRUG8p5iYisydKlSxEfH6/a3wQGBqrUlNLSUvXYf/7zH/Tq1UvNxsTFxeHf//53w/Puv/9+NRAhubj1+cMDBw7E5MmTYdP0Gvviiy9UhdmiRYtUxvmDDz6o9/Pz02dmZqrH7733Xv2MGTMa9n/55Zf1Li4u+qVLl+ozMjIatuLi4ib7yGt8++23+n379ulvuOEGfUxMTJNs9iuvvFI/cOBA/bZt2/QbN27Ud+/eXX/nnXe2+bxZxWYfjmQU6Se8uV4fNf0HffT0H9TXnn//ST/j6736ssoarU+PiCyEpVexpaen652cnPRz587Vnzp1Sr03LliwQL13fvLJJ/rw8HD9119/rT958qT6GhAQoN6XhewTGxurf/LJJ9XtZ555Rh8dHW3RVdzGqGLTPEAS77zzjr5Lly4q8JGy/61btzY8NnbsWP2UKVMabkdFRalvrPk2e/bshn2k1P/ZZ5/Vh4aGquBr3Lhx+sTExCbHzMvLUwGRl5eX3sfHRz916tQmQdaFMECyfQfSCvT9n/9Ff+mra/TzVh7VrzqUqf9qR6r+r0v36nv8/Sf9xDfX65NyS7Q+TSKyAJYeIO3cuVO9VyYlJZ3zWNeuXfWfffZZk/teeOEF/ciRIxtub968We/s7KzeWyXQ2rBhg96SGSNAcpD/03oUyxrJtJ1Us0nCtnTjJttyJLMIt7+3BcFerphxZS94uTVN10vJL8Obq46ivKoWXz88Ct1CvDQ7VyLSnjQiljYzkuZh6qKhjpCKcWmYLCtPyFdpsHzrrbeqVBcvLy817dZ4/biamhr1Htc4R/hvf/ubquiW6nHJAbbWn0db37+tuoqNyBTkM8OMr/fD180ZM686NzgSXQI88MINfeHt5oT7Pk5AXolhbp6IyBJJQZSsHPHzzz+jd+/eeOedd9CzZ08cOHCgYRmvPXv2NGwHDhzA1q1bG54vObqbNm1Sr3P8+HHYAwZIRM18uycde1ILcN+oaHi6tl7o6eXqhL9OjENJRQ0eWLyDydtEZPHLb1xyySV4/vnnsXv3bjV6JEGP9BI8efIkunXr1mSLiYlpeO5rr72GI0eOYP369apA6uOPP4at07TMn8jSlFbW4KWfDmN4TAB6R/hecP9gb1c8M7En/vn9Ibz88xE8d30fs5wnEVF7SCW3VHfL1Jo0SpbbOTk5qnJNAqbHH39cTTtdeeWVqlptx44dOHPmjForVYIpWQBequAkwJo7dy6eeOIJjB07FrGxsTb7g2CARNTIe+tP4ExZFf4xvFebr0vXYC/cOawLFm1OwmU9g3FZz6Zd2omItCa5NrIo+7x581QOTlRUFN544w1cddVV6nEPDw81SvSXv/xFLfAeHx+PJ598UuXy3HPPPbjvvvtw3XXXqX1lYfcff/wR9957r3pNmXazRUzS7iAmadueyppaDH9pNUbGBmLyyOh2PbdOr8erK44graAcvz41FgGeLiY7TyKyPJaepG1vKpikTWQ8vx7MQkFZNcb1arqOX1s4OjjgobFdUVlTh9nfGpIeiYjIejFJm+gs6ZQdF+aNTn7uHbom/h4uuHdEFL7fl4F1iU2XsiEiIuvCAIkIQHJeKTafyMPlF5k/NLpbEPp19sXfvzmAsqoaXlsiIivFAIkIwJLtqfB00WF4bMBFl9Hef0kMcoor8daqY7y2RERWigES2b3aOj2+2nkao7oFwdXp4qsxQn3ccNOgTvjPhlM4mlVs99eXiMgaMUAiu7f3dIEa8RkVG2i0a3FtfDhCfd3w7PIDqjM3ERFZFwZIZPfWHM6Gt6sTuod6G+1aOOkcMWVkFLadysd3e9Pt/hoTEVkbBkhk91YdzkK/SD/oHB2Mei36dfZTHbn/9eNhFFdU2/11JiKyJuykTXYtvaAcRzKL8dgV7e991BZS9v/nr/aqhO1/XNvbJMcgIsslzWPPlFaZ7Xj+ni4dblVysZKSklSjTFmaZMCAAbB2DJDIrq05kg0ZOJLRHlMI9HLFTQM74eNNSbhtSCR6hhlvGo+ILD84GvfGOlRU15ntmG7Ojlj958vaHCTJEiKLFy/GQw89hIULFzZ57JFHHsG///1vTJkyBYsWLYK9YYBEdm314Sz0CveBl6vp/lO4Jj4cvx3NwaxvD+CLB0eoVgBEZPtk5EiCo0cu72aWUR0JyBasPa6O257jRUZG4osvvsCbb74Jd3f3hqU6PvvsM3Tp0gX2ijlIZLfKq2pVc8gBkaYZPWqSsD0qWiVsf7uHCdtE9kaClZggT5NvHQ3CBg0apIKkZcuWNdy3bNkyFRwNHDiw4b4VK1Zg9OjR8PPzQ2BgIK699lqcOHHivK994MABtSCul5cXQkND1QK3ubm5sAYMkMhubTuVp9ZOGxjpb/JjyRTeiNgAvPDDIRSWM2GbiCzL/fffj48//rjh9kcffYSpU6c22ae0tBRPP/00duzYgdWrV8PR0RE33XQT6upankIsKCjAFVdcoYIseY4EWFlZWbj99tthDRggkd3anpQPP3dnRPiZZ+Xte0dEo6yqFq//kmiW4xERtdU999yDjRs3Ijk5WW2bNm1S9zV2yy234Oabb0a3bt1UErYEUfv378ehQ4dafM358+er4Oill15CXFyc+rc8Z+3atTh69KjF/3AYIJHdSjiVjx5h3mbLCQrwdMFtQzrjk63J2JNaYJZjEhG1RXBwMK655hqVjC0jSddccw2CgoKa7HPs2DHceeediI2NhY+PD6Kjo9X9KSkpLb7m3r17VTAk02v1mwRK4kJTc5aASdpklyprarE3tRB3DIs063En9A7DhmO5mPH1Pnz/2Gg46/gZhYgsZ5rt0UcfVf9esGDBOY9fd911iIqKwgcffICIiAg1tda3b19UVbXcxqCkpEQ955VXXjnnsfDwcFg6Bkhkl/adLkRVbR16GrF7dltIM8ppY2Lxj+X78f5vJ1V1CxGRJbjyyitVsCOj6hMnTmzyWF5eHhITE1VwNGbMGHWfTMldKPn766+/ViNNTk7WF27w4yvZ7fSau7MOUYGeZj+2VJtI6b80jzyRU2L24xMRtUSn0+Hw4cMqp0ina7pwt7+/v6pce//993H8+HGsWbNGJWyfj/RRys/PV9Ny27dvV9Nqv/zyi0r+rq2ttfgfgvWFdERGCpC6h3oZfXmRtrplcGdsTzqD6Uv34cuHRsJRo/MgIpilP5G1HEdyi1ri6OioeiU9/vjjalqtZ8+eePvtt3HZZZe1+loyDSfJ3tOnT8eECRNQWVmppuhkpEpez9IxQCK7U1unx87kM7iqb5hm5+DqpMO0MTF44cfD+HhzEh4YHaPZuRCR6Zb9kM7W0rzRXOR4cty2ulCH7OXLlzf8e/z48edUrOn1+oZ/y1Ra49uie/fuTforWRMGSGR3jmQWoaSyBnHhLX9SMpfeEb6Y2CcMr644gst6BqNrsJem50NExiWNG2XZD3tZi83WMEAiu7Mj6QycHB3QzQICkjuGRmLv6QL8+cu9WPqnkarrNhHZDglWGLBYJ/41JruzN7UA0UGecHHS/tffzVmHh8d2xb7TBVi43vL7ghAR2Qvt3yGIzExGbKSSzFL0CPXG9f0j8OaqYypQIiIi7TFAIrtSWlmDkzmlFhUgiVsGdUZUoAce/2I3yqpqtD4dIiK7xwCJ7MqhjCJIjUWshQVIknv0f5d1Q0ZBBf7142GtT4eIyO4xQCK766DtrHNAJ3/Lq/KQRM57RkThs20p+OVgptanQ0Rk1xggkV05kFaI6EBPOFlok7JxcSEYEuWP6V/vQ1ZRhdanQ0RktyzzXYLIRCQJWirYLJWsgTTt0lg4OjjgqSV7UFfXtOkaERHZSYAkKwZL9003NzcMHz4cCQkJre578OBB3HLLLWp/eSOZN2/eOfvUP9Z8kzVh6klr9OaP/+lPfzLZ90iWocRCE7Sb83FzVqX/m0/k4aNNp7Q+HSK6GAWpQPoe821yPCsXHR3d4vu7XTWKXLJkiVrsbuHChSo4kgsiKwjLisEhISHn7F9WVobY2FjcdttteOqpp1p8TVkQr/EieAcOHMAf/vAH9ZzGpk2bhn/+858Ntz08PIz6vZHlOZRumQnaLenbyRdXx4fjlRVHMKprEHpHaNv1m4g6QIKVBUOBavOsxaY4uwOPbAf8Itu0+3333YfFixefc/+xY8fQrVs32DNNA6S5c+eqQEVW9hUSKP3444/46KOPMGPGjHP2Hzp0qNpES4+L4ODgJrdffvlldO3aFWPHjm1yvwREYWFtX4tLFtmTrV5RUVGbn0uWM73monNEZ3/rCIYnDYlUOVNPfLEbPzw+Wq3fRkRWpCzPEByN+TPg27aA5aIUpgIb3jAct40BkpDFYz/++OPzvpfaI82m2KqqqrBz5061+F3DyTg6qttbtmwx2jE++eQT3H///WoarbFPP/0UQUFBalXimTNnqtGp85kzZw58fX0btshIM/yyk1FJsCG9hnSOTX8XLJV0+n7k8m44lVuKeauOaX06RNRREhwFdjP91sEgzNXVVQ0YNN50Oh2+/fZbDBo0SKXAyOzN888/j5qa3/u0yfvqe++9h2uvvVYNOvTq1Uu9fx8/flylsnh6emLUqFE4ceL3VQLk3zfccANCQ0Ph5eWlBj1WrVp13vMrKCjAH//4RxW0+fj44IorrsDevXthswFSbm6umgqTi9SY3M7MNE6Js6xCLBdWhhAbu+uuu1TgtHbtWhUc/e9//8M999xz3teS/QoLCxu21FTrn+e1NwfSihAVaPnTa411CfBQTSTfW38Cu1POaH06RGQnNmzYgMmTJ+OJJ57AoUOHVCC0aNEivPjii032e+GFF9R+e/bsQVxcnHp/feihh9R75o4dO6DX6/Hoo4827F9SUoKrr74aq1evxu7du9Xo1XXXXYeUlJRWz0VSZLKzs/Hzzz+rgRUJ2saNG4f8/HyTXgObXqz2ww8/xFVXXYWIiIgm9z/44IMN/46Pj0d4eLi62BLZynRcaxG2bGSdKmtqkZRXikt7BMHaXNc/AjuS8/H0l3vx8xNj1PptRETG8sMPP6jRnHryvnnmzBmVyjJlyhR1n4wgSTD017/+FbNnz27YV1Jkbr/9dvXv6dOnY+TIkXj22WdVPrGQAKs+jUb0799fbfXkNb/55ht89913TQKpehs3blTFWxIg1b8Hv/7662oAZOnSpU3ez41NswBJprdkCC8rK6vJ/XK7PblBrUlOTlbDdsuWLbvgvpIgLmRYsLUAiaybVK/V1OkRGWAd+UeNyZTgn8Z2xd++2Y8Fa4/jzxN6an1KRGRDLr/8crz77rsNt2VqrF+/fti0aVOTESOZ9amoqFApKfWFTbJfvfoZIRl4aHyfPEfydmV6TEaQnnvuOZVvnJGRoabsysvLWx1Bkqk0eU5gYGCT++U5jafubCpAcnFxweDBg9Uw24033qjuq6urU7dbiiLbSxLOpBLummuuueC+MjQoZCSJbNPRrGL11VoStJuT876uXwTeXXcCNwyIQLcQb61PiYhshAREzSvWSkpKVM7RzTfffM7+kpNUz9nZueHf9bm+Ld0n7+/imWeewcqVK9UokBzT3d0dt956q8oZbomch7w3r1u37pzH/Pz8YLNTbFLiL8N3Q4YMwbBhw1SZf2lpacNwnMxrdurUSSVIC7mAMhda/++0tDQV3MjQYOMfrvwgJECS13ZyavotSsT52WefqTlQiUj37dunWgZceumlTSJhsi1HMosR6OUCL1frnVW+YUAnbD6Zh78tO4AlD404p/CAiMhYBg0apFruGLvUX0alJC/4pptuagiAkpKSznsekpcs7+XSH8mcNH23mDRpEnJycjBr1ix1AQYMGIAVK1Y0DNPJkJtUttVLT0/HwIEDG25LBCqblPA3ji5lak2eK9VrLY1cyeP1wZhUo0nzyX/84x8m/35JO4kZRYi00tGjxlVt918Sg5d+Ooyvd6Xh1sGdtT4lIrJRs2bNUtVpXbp0USM88l4s013SW/Bf//pXh1+3e/fuKvVFErPlQ57kK9WPLrVEKtslr0lmml599VX06NFDxQIyRSdBlgywmIrmH6dlOq21KbXmQ2oSPUpG/IVMmDCh1f0kIFq/fn0Hz5as1ZGsYgzq4g9rF9/JFyNiA1QDyavjw+Dhovl/wkTUlv5EVnaciRMnquRtaaj8yiuvqGkzqVKTcvuL7X8ogxdS/i+5yJLYfb6+ghJE/fTTT/j73/+uZpdkUEXylGXWp3kVvLE56NsScdA55Acq/ZCk5F8Sz8hyFVdUI/65X/F/l3XFmO7W3/wsu6gCzyzdq3okPTm+h9anQ0SASkQ+deoUYmJifs/RsYJO2nb182jn+zc/fpLdJGhbYwVbS0J83HBlnzAsXH8CdwztgjDfpv/xE5GFkCBFghXpbG0uHoF2HxwZCwMksnmJmSWQ5tkRvu6wFTcO7IT1R3Pwxq+JeO2233uKEJEFBkl2PppjrTTrpE1kLomZRQj3dVdJzrZCco8kSFq2Kw1JuaVanw4Rkc2xnXcMovOU+Hf2t53Ro3rj4kLh4+6E+Wu5ThsRkbExQCKbJjUIiZnFNpN/1JiMiF3fPwLf7ErnKBKRhWDdk+38HBggkU3LLalCQXm1TY4giSs4ikRkEWTpLNFaR2gyL1kOpXlX7/ZikjbZtBM5JeprJz/bDJBkFEkWs/10a4oq+bfWpVSIrJ10epb1yaRPj7wpN25yTOYdOZLgSBa3laVI6gPXjmCARDYfIEkFW5iP7ZbCX94zRCVrL96chL9f01vr0yGyS9LQUNYMk947slg6aUuCo4td+J4BEtm0E9mlqk+Qk852P825OetwRVwIPk9IxePjusPbreNDykTUcbKUlSylwWk2bckI3sWMHNVjgEQ2P4IkJf62bmKfMPy4PwNf7jiNB0bHaH06RHZLptaad24m62S7H6uJABzPLkGEHXSaDvB0wcjYQHy08RRqaltf+JGIiNqGARLZrPKqWqQXlCPCRhO0m7s6PhxpBeVYdThb61MhIrJ6DJDIZp3KLYV0wrCXACkmyBPdQ7zweUKK1qdCRGT1GCCRzZf429IabG2paPvtaA5OnzH0ACEioo5hgEQ2nX/k5+4MLzf7qUUY2TVQVbV9uT1V61MhIrJqDJDItivY/Gw/QbsxCY5GdQ3EF9tTmaxNRHQRGCCRjVew2c/0Wr1xvUKRXVyJtYk5Wp8KEZHVYoBENqmuTq+StO0lQbt5srZsX+/kNBsRUUcxQCKbJOXulTV1dhkgidHdgrD6SDYKy6q1PhUiIqvEAIlsvILNvnKQGidr19bp8dOBDK1PhYjIKjFAIpsk02tOOgcEebnCHvl7uKBvhC+W707T+lSIiKwSAySyScl5ZQjzcYOjowPs1SXdgrDtVL6abiQiovZhgEQ2O4IU6mOf02v1hkYHwNXJEd/u4SgSEVF7MUAimw2QZATJnrm76DA4yh/f7k7X+lSIiKwOAySyOdW1dUg7U44wO03QbmxETCASs4px8mzSOhERtQ0DJLI5qfllqNXr7X4ESfSL9FXTbD8fyNT6x0JEZFUYIJHNScorVV85ggS4OukwsIsfft7Pcn8iovZggEQ2Jym3DC46RwR4umh9KhZhWHQADqQXqZE1IiJqGwZIZJMjSKG+rnB0sN8S/8YGRPrDWeeAFZxmIyJqMwZIZHNYwXZuNVv/zn74kdNsRERtxgCJbA57IJ1rWEwA9qQWIKuoQoOfCBGR9WGARDalqqYO6QUs8W9uQKQfpKn46sPZmvxciIisjeYB0oIFCxAdHQ03NzcMHz4cCQkJre578OBB3HLLLWp/BwcHzJs375x9nnvuOfVY4y0uLq7JPhUVFXjkkUcQGBgILy8v9ZpZWVkm+f7IvFLPlKFOD4TbeZPI5rzdnNEz1BurDvP3nIjI4gOkJUuW4Omnn8bs2bOxa9cu9O/fHxMnTkR2dsufcsvKyhAbG4uXX34ZYWFhrb5unz59kJGR0bBt3LixyeNPPfUUvv/+e3z11VdYv3490tPTcfPNNxv9+yPzS8o1lPjb+zIjLRnYxR+bjueivKpW61MhIrJ4mgZIc+fOxbRp0zB16lT07t0bCxcuhIeHBz766KMW9x86dChee+013HHHHXB1bX2VdicnJxVA1W9BQUENjxUWFuLDDz9Ux77iiiswePBgfPzxx9i8eTO2bt1qku+TzJt/JI0R/Vnif45BUf6orKnD5hO5/JUkIrLUAKmqqgo7d+7E+PHjfz8ZR0d1e8uWLRf12seOHUNERIQabbr77ruRkpLS8Jgcs7q6uslxZQquS5cu5z1uZWUlioqKmmxkeZLzylQHbZb4nyvC1w3hvm5YxTwkIiLLDZByc3NRW1uL0NDQJvfL7czMji+LIHlMixYtwooVK/Duu+/i1KlTGDNmDIqLi9Xj8touLi7w8/Nr13HnzJkDX1/fhi0yMrLD50imk5xXihCf1kcX7Znk40my9urDWdDr9VqfDhGRRdM8SdvYrrrqKtx2223o16+fymf66aefUFBQgC+//PKiXnfmzJlqeq5+S01NNdo5k/Ek5ZUh2Jv5R60Z1MUf2cWVOJDGEVAiIosMkCQvSKfTnVM9JrfPl4DdXjJS1KNHDxw/flzdlteW6T0JmtpzXMl58vHxabKRZamt06sS/1COILUqLtwbHi46rEtkuT8RkUUGSDLNJQnSq1evbrivrq5O3R45cqTRjlNSUoITJ04gPDxc3ZZjOjs7NzluYmKiylMy5nHJ/CQ4qqnTI5QjSK1ycnREnwgfrDuaY84fDRGR1XHS8uBS4j9lyhQMGTIEw4YNU32NSktLVVWbmDx5Mjp16qTyf4SM/Bw6dKjh32lpadizZ4/qZdStWzd1/zPPPIPrrrsOUVFRqnxfWgjISNWdd96pHpf8oQceeEAdOyAgQI0EPfbYYyo4GjFihGbXgi5eytnFWJmDdH6y7MhHm06hsKwavh7O/NUjIrK0AGnSpEnIycnBrFmzVIL0gAEDVHJ1feK2jOpIZVs9CXgGDhzYcPv1119X29ixY7Fu3Tp13+nTp1UwlJeXh+DgYIwePVqV78u/67355pvqdaVBpFSnSa7Sv//9b7N+72SaAEm6RQd7MUn7fPp19lPNNDedyMXV8YaRVSIiaspBz3KWDpEyfxmNkoRt5iNZhpd/PoJlu07jrTt+D6KpZX9ZuheXdA3CK7f24yUiIrtS1Mb3b5urYiP7lZpfhhBvjh61Rb9Ovlh3NJvl/kRErWCARDYjSfVAYol/W/SP9ENWUSWOZZeY/OdCRGSNGCCRTZCZ4pS8MoRyBKlN4sJ81JIsLPcnImoZAySyCYXl1SiurOEIUhu5ODmiV7g3NhzjumxERC1hgEQ2swabCOUUW5v1ifDF9lP5qKiuNd0PhojISjFAItvqgcQptjaL7+SLipo67Eo5Y7ofDBGRlWKARDYTIHm7OcHTVdPWXlYlMsADvu7O2Hw8T+tTISKyOAyQyCYk55VyDbZ2cnRwUMuObDjOZUeIiJpjgEQ2k4MU7MUS/47kIe0/XaiS3ImI6HcMkMhmpti4Blv7xXfyUcuObD3JaTYiosYYIJHVq6qpQ2ZhBUK8OYLUXsHebgjzccOm4yz3JyJqjAESWb30gnLoWcHWYSoPif2QiIiaYIBEVi/1jKHEP5gl/h3OQzqVW4qsogrj/mCIiKwYAySyeqn55XB0AAK9XLQ+FavUO8KwmjXzkIiIfscAiWxiBCnIyxVOjvx17gjphRTp785+SEREjfAdhaxean4Zp9cuUq9wH2w+wURtIqJ6DJDIJkr8g71ctT4Nq89DSj1TjrSCcq1PhYjIIjBAIqvHEaSL1yvcGw4AtpxgPyQiIsEAiaxaaWUNzpRVI8SHPZAuhrebM6KDPBggERGdxQCJbKLEP4Ql/hetV5ghD0mvl65SRET2jQESWX2Jv2APpIvXO8IXGYUVDdeUiMieMUAiq88/ctE5ws/dWetTsXpxYYY8pK2nmIdERMQAiax+ik0WqXVwkLd2uhierk4qD2nbyXxeSCKyewyQyPor2FjibzQ9w3zYUZuIiFNsZO2S89gk0ph6h/uoXkinzya/ExHZK44gkdWSaqvTZ8qZoG3kPCTBaTYisncMkMhq5ZdWoby6FiHe7IFkzH5IXQI8sI2J2kRk5xggkdWS0SPBEn/jjyJtZaI2Edk5Bkhk9U0iGSAZPw9J1rfLLKww8isTEVkPBkhk1SNIni46eLk6aX0qNiUu3Ed95TQbEdkzBkhktaTSiqNHxufr7ozO/u5IOMV+SERkvxggkdWSJTGC2APJJHqGerOSjYjsGgMksu4mkVyk1mTTbMdzSlSlIBGRPWKARFbbA0kaGjJAMo1eZ/shbU/iNBsR2SfNA6QFCxYgOjoabm5uGD58OBISElrd9+DBg7jlllvU/rL21rx5887ZZ86cORg6dCi8vb0REhKCG2+8EYmJiU32ueyyy9TzG29/+tOfTPL9kWnklFSisqaOy4yYSKCXqwo+mYdERPZK0wBpyZIlePrppzF79mzs2rUL/fv3x8SJE5Gdnd3i/mVlZYiNjcXLL7+MsLCwFvdZv349HnnkEWzduhUrV65EdXU1JkyYgNLS0ib7TZs2DRkZGQ3bq6++apLvkUyDPZBML07lIeWZ4UhERJZH0/rouXPnqkBl6tSp6vbChQvx448/4qOPPsKMGTPO2V9GhmQTLT0uVqxY0eT2okWL1EjSzp07cemllzbc7+Hh0WqQ1ZLKykq11SsqKmrzc8n4GCCZJw/pw40nUVxRrTpsExHZE81GkKqqqlTQMn78+N9PxtFR3d6yZYvRjlNYWKi+BgQENLn/008/RVBQEPr27YuZM2eq0anzkak7X1/fhi0yMtJo50gdS9CW/kceLuyBZMo8pDo9sDP5jMmOQURkqTQLkHJzc1FbW4vQ0NAm98vtzMxMoxyjrq4OTz75JC655BIVCNW766678Mknn2Dt2rUqOPrf//6He+6557yvJftJsFW/paamGuUcqeMjSCGsYDOpMF831ROJeUhEZI9s+uO35CIdOHAAGzdubHL/gw8+2PDv+Ph4hIeHY9y4cThx4gS6du3a4mu5urqqjSxnBIk9kExLihdkXTYGSERkjzQbQZLpLZ1Oh6ysrCb3y+325Aa15tFHH8UPP/ygRok6d+583n2lek4cP378oo9L5luHLYgjSCYnAdLe0wWoqK41/cGIiCyIZgGSi4sLBg8ejNWrVzeZEpPbI0eOvKj+OBIcffPNN1izZg1iYmIu+Jw9e/aorzKSRJavrk6P9AJOsZlDzzAfVNfqsTe1wCzHIyKyFJpOsUmJ/5QpUzBkyBAMGzZM9TWScvz6qrbJkyejU6dOKkG6PrH70KFDDf9OS0tTwY2Xlxe6devWMK322Wef4dtvv1W9kOrzmSSx2t3dXU2jyeNXX301AgMDsW/fPjz11FOqwq1fv36aXQtqu+ziSvWmHcxlRkwuKsADHi461TByeGyg6Q9IRGQhNA2QJk2ahJycHMyaNUsFMgMGDFBl+vWJ2ykpKaqyrV56ejoGDhzYcPv1119X29ixY7Fu3Tp137vvvtvQDLKxjz/+GPfdd58auVq1alVDMCbVaNJ88h//+IeZvmsyxiK1gl20Tc/R0QE9QpmHRET2R/MkbZkOk60l9UFPPemgLVNo53OhxyUgkmaSZL3YA8m8eoZ544e96ait00Pn6GDmoxMR2elSI0QdGUHycXOCm7OOF88MeoX5oLSqFocz2ByViOwHAySyyhEkTq+ZT2ywJ5x1Diz3JyK7wgCJrLPEnwnaZuOsc0S3EC8knOK6bERkPxggkdVJzecIkrn1DPVBQtKZC+b4ERHZCgZIZJU9kFjib169wr2RX1qFk7mlZj4yEZE2GCCR1fVAqqnTs4u2mXUP8YYUsG0/lW/uQxMR2WeZP1GHeiBZYg5SbRWQfQjIPQoUpgHl+UBNlSxqBrh4AV6hgF8XILQ34CvL31hPyby7iw4xQZ5ISMrHHcO6aH06RESWGSCdPHkSsbGxxj8bIqvrgaQHMg8AiT8DqVuBmkrAyQ3wCgFcvQGdC6CvA8rygLxjwOF8w215POZSoOdVgNfFrz1oDtIwcttJjiARkX3oUIAky3pI9+oHHngAt956K9zc3Ix/ZkSW3gMpNxHY8ZEhQPIKBmIvA4LjDMGPQyuz1zUVwJkUIPsgkPgTcGAZEDMWGDTZ8DwLFhfmg58PZCKjsBzhvu5anw4RkeXlIO3atUutWyZrqYWFheGhhx5CQkKC8c+OyBJ7IMlU2vb/AD8+A5TmAYOmAJc8ZQiQvMNaD46EjC4F9wD63ARcOh3odS2QtgP45kHgwNeAvhaWKi7MW31NYB4SEdmBDgVIsmbaW2+9pdZG++ijj5CRkYHRo0ejb9++mDt3rlpfjcgmeyDJVNmKGcDh74EeE4CRjwIhcYY8o/ZycgG6jATGPA10Hgbs+Bj45Vmg0jI7Vvu4O6OTn7tauJaIyNZdVBWbk5MTbr75Znz11Vd45ZVXcPz4cTzzzDNqvbPJkyerwInIZnogFacDPz4NFGcAwx40TI01Wky5w2RUSUaShj4A5B8Hvn/SkORtoeuyMQ+JiOzBRf1137FjB/7v//4P4eHhauRIgqMTJ05g5cqVanTphhtuMN6Zkt3TtAeSBEc/TTeMFA3/P8Av0vjHCOwKjHzE8O8V04HCFFjiNNux7BKcKa3S+lSIiCwvQJJgKD4+HqNGjVKB0H//+18kJyfjX//6F2JiYjBmzBgsWrRI5SoRWX0PpIpCYOVsw2jR0GmAu6/pjuXuDwz9o2FUacVMoCQTlpaoLXYkn9H6VIiILC9Aevfdd3HXXXepoGj58uW49tpr4dhsqiEkJAQffvihsc6TSJseSHU1wNoXgYoiYNB9htJ9U3P1AobcDzg4GQIzC8pJkulNuf5cl42IbF2HAiSZQps+fbqaWmtM1mlKSTFMC7i4uGDKlCnGOUsirXog7f4fkHMYGHgP4BlovuNKkCTVceVngN9eN/ROshA9mIdERHagQwFS165dkZube879+fn5aoqNyCZ6IKXtBPYvBbpfCfhHwey8goD424G0XcD+L2EpeoV542B6EUora7Q+FSIiywqQWlvRu6SkhE0jyTZ6IFWVApvfBoK6A9GXQDPSM6nrZcDuT4GcRFiCuHAf1Or12JXCPCQisl3t6qQtjSGFg4MDZs2aBQ8Pj4bHamtrsW3bNtUjicgUUvLN2ANp5yKgovhsLpDGazp3HQ/kHgM2vglc/7Zh+RINRfi6wdfdWTWMHNM9WNNzISKyiABp9+7dDSNI+/fvV3lG9eTf/fv3V6X+RKYaQerX2YQVZPVksVlZW016E0lVmdakAKLvrcCW+cDezw25SRqSD0jSD2nryTxNz4OIyGICpLVr16qvU6dOVZ20fXwMJb9EplZ7tgfSuDhTr1emB7a9D3iHApEjYDHkfGLHGtZukxEl306a90P6IiEVFdW1lrEuHhGRkXVo7uDjjz9mcERmlV1cYZ4eSKc2GKrW4q4xTpdsY5LO3W4+QMJCQyCncT+kqto67DtdqOl5EBFpPoIkS4pI80cZNZJ/n8+yZcuMcW5E55T4h5gyQKqrNZT1B/cCArtZ3tXXOQM9rzGco1S2dRqs2alEBXjAw0WHbSfzMCwmQLPzICLSPEDy9fVVuQf1/yYyp9R8Q5NIkyZpn1gNFKUDo26FxQrpBQTEADs/BiIGapZA7ujogJ6h3th2Kh+PaXIGREQWEiDJtFpL/yYy1wiSVE6ZLN9FOmbv/QwI6wv4NG2AalHkQ0r3icC2hcDJ9UDXyzUt91++Ow3VtXVw1lnYdCQR0UXq0F+18vJylJUZPtELWXJk3rx5+PXXXy/2fIhabRIZ7G3C8nYJNkpygK7jLP8nIE0rQ3obAjp9rWan0TvcG+XVtdifxjwkIrI9HQqQbrjhBrVArSgoKMCwYcPwxhtvqPtlnTYiY0vNL0egp4mm12QZj/1fAcFxgHcYrELXKwzTgZJUrpHoIE+4OTuy3J+IbFKHAqRdu3ZhzJgx6t9Lly5FWFiYGkWSoOntt9829jkSnR1BMlGAdHo7UJhqqBKzFlLmLwHd3i80W6fNydHRkId0Ml+T4xMRWVyAJNNr3t6GVc1lWk2q2hwdHTFixAgVKBEZuwdSRmGF6SrYDi4H/KKAgGhYFck/ksAudaumeUjbk/JRU2s5i+kSEWkWIHXr1g3Lly9HamoqfvnlF0yYMEHdn52dzf5IZHSZRYYeSCYZQTqTBGTuA6JGwur4dTEEddI8UiO9w31QVlWrFq8lIoK9B0iyDpssKRIdHY3hw4dj5MiRDaNJAwcONPY5kp07fbbEP9jLzfgvfuQHQ/PF0L6wSlGjgezDQM4RTQ4fG+QJVydHbDvFZUeIyLZ0KEC69dZbkZKSgh07dmDFihUN948bNw5vvvmmMc+PqKFJZJCxq9iqSoATa4DOwwBHK10uQ5paegYBB7/R5PBOOkf0CJV12ZiHRER2vBZbY5KYLVtjUs1GZIoAyc/dGa5ORg5iTq0HaquBzkNhtWQ5lC4jgSM/AmW5gEeQJuuy/XwgU+UhScBERGQLOvTXrLS0FM8++yxGjRql8pFiY2ObbO2xYMECNVXn5uampusSEhJa3ffgwYO45ZZb1P7S1Vt6L3XkNSsqKvDII48gMDAQXl5e6jWzsrLadd5kAxVsiSsMlWAyxWbNIgYBjs7A0d9Hc82pT4QvSiprcCiDeUhEZOcjSH/84x+xfv163HvvvQgPD29YgqS9lixZgqeffhoLFy5UgYwEPBMnTkRiYiJCQkJarJ6TAOy2227DU0891eHXlOf++OOP+Oqrr9SyKY8++qiqxNu0aVOHvg8yrZT8MuMvMZJ3HMg/CQyaAqvn7AZEDDAEfPGTDGu2mVHXYEMe0pYTeejX2c+sxyYiMhUHvV7f7mXB/fz8VIBxySWXXNTBJYAZOnQo5s+fr27X1dUhMjISjz32GGbMmHHe58oI0ZNPPqm29rxmYWEhgoOD8dlnn6lcKnHkyBH06tULW7ZsUa0K2qKoqEgFV/J6soAvmc4lL6/BoC5+uGt4lPFedMsCIHkTcOlfDdNU1q44E9j0FnDZDCDa0KPMnOb8fBj+Hi5YfD+n2YnIsrX1/btD7wz+/v4ICLi4Fbyrqqqwc+dOjB8//veTcXRUtyVQMdVryuPV1dVN9omLi0OXLl3Oe9zKykp1URtvZHqS15JZWIFgbyNWsNVWGfKPZLFXWwiOhHQAl15OR3/VrNxf+iHJumxERLagQ+8OL7zwgir1b7weW3vl5uaitrYWoaGhTe6X25mZmSZ7Tfnq4uKiRsHac9w5c+aoiLN+k1EpMj1pEFmr1xu3SaR0zq4qNQRItqTzECB9N1DSsf9+jNEPieuyEZFdB0iy7po0iJSgIj4+HoMGDWqy2aKZM2eq4bj6TZpkkumlnjEE4UYNkKS03zcS8Do3z82qhfUDnFyB46vMfuiYYE+4O+tUHhIRkd0mad94440XfeCgoCDodLpzqsfkdvP2AcZ8TfkqU3GyyG7jUaQLHdfV1VVtZF6n8+t7IBnp2lcWAad3AD2vgs1xcgHC+wHHVgL97wIcHM27LluYtwqQHrm8m9mOS0RkUQHS7NmzL/rAMs01ePBgrF69uiHgkoRquS1VZaZ6TXnc2dlZ3Sfl/UIq3KTxZX1HcLKsEaQATxc4G6u/TtImw+KuMtpii6TkPzXBsHxK+ACzT7Mt23UaVTV1cHGykdwuIrJbHf4rJiMw//nPf9TUU36+oYvurl27kJaW1ubXkHL8Dz74AIsXL8bhw4fx8MMPqx5LU6dOVY9PnjxZvX49GfnZs2eP2uTfciz59/Hjx9v8mpI/9MADD6j91q5dq5K25TEJjtpawUbmk5pv5B5Ip34DArsCrl6wSbI+m3TWPr7a7Ifu28kXFTV12J1yxuzHJiKyiBGkffv2qSowCTaSkpIwbdo0VdW2bNkyNRLz3//+t02vM2nSJOTk5KiEb0mQHjBggFq6pD7JWl5LqtDqpaenN1nr7fXXX1fb2LFjsW7duja9ppDlUOR1ZQRJqtOkT9K///3vjlwKMkMPpGBj9UAqzwcy9wN9b4bNkp5kMookVXojHgacPcx26KhAD3i7OWHTiTwMjw0023GJiCymD5IER5KM/eqrr8Lb2xt79+5VDRw3b96Mu+66SwVNto59kMxj2IurMLpbEG4bYoSqwUPfATv+A1z2d8DFHTarvABY/yow+kmg2+/tLMzhzVVHVWuGZf93cT3SiIissg/S9u3b8dBDD51zf6dOnTpcok/UXEV1LbKLK403xZYk02s9bDs4Eu5+QEAMcNIwqmpOfSN8se90oVp6hIjImnUoQJJqrpYaJR49elR1qSYyhrQCQwWbUQKksjwg+zAQ1hd2Ibw/kLHXMK1oRn07+aCmTo+EUyz3JyI7DJCuv/56/POf/1QdqYWsxSb5QtOnT2+oDCMyRoK20XogpWwxdM0O7mUfP5jQvoZ8JElKN6MwHzcEeblg03EGSERkp40iS0pK1GhReXm5SpLu1q2bykd68cUXjX+WZJdSz5TD0QEI8HQ1Tnl/QDfbn16r5+IBBPUETqw162Hlw1KfCF9sOJZj1uMSEVlEFZskN61cuRKbNm1SCdoSLEnSduP1zYgu1ukzhhJ/nURJF6OiEMg6APS+wb5+KBH9gT2fA8XpgHeEWcv91x/NQW5JJYKMVYFIRGTpAZI0Xly0aJEq6ZdqNfnEGBMTo7pQS0Gc3CYyVhdto5T4p24DpFgzpDfsSlAcoHMBkjYC8beb7bB9IwxVIZuO5+KGAZ3MdlwiIs2m2CQAkvyjP/7xj6pJo6zD1qdPHyQnJ+O+++7DTTfdZNSTI/uWnF9mnBEIyT8KiLLd5pDnW3pEcq6kJ5IZ+Xm4qJ5Ivx3NNetxiYg0G0GSkaPffvtNLdNx+eWXN3lszZo1ankPaRIpHbCJLtbp/DL0CvO+uBepKTescN/tD/b5AwmLB/Z8AhSeBnw7m+2w8Z188duxHI4qE5F9jCB9/vnn+Nvf/nZOcCSuuOIKzJgxA59++qkxz4/slPTRKSivRoiP28W9UPoeoLYaCLGT6rXmgnsATm7AqQ1mPWy/zn7IKa5EYlaxWY9LRKRJgCRLjFx55ZWtPn7VVVeppG0iiynxT9kKeIUa1iezRzpnICQOSN5o1sP2DPWGq5MjfjvKajYisoMASRalbbymWXPy2JkzXKiSLCRA0tcaVra319Gjxj2RziQZptnMxMXJEb3CvZmHRET2ESDV1tbCyan1tCWdToeaGi4xQMZZpFZGIHzdnTv+IjmJQGUREBxn3z+SIJlmczVUs5lRfCc/JJzKR3lVrVmPS0Rk9iRtqWKTajVZaqQllZWVRjkpIhlBCvFxvbi2EanbARdPwNcIC91a+zSbBIlJG4D+d5jtsP06++J/W5Ox7VQeLusZYrbjEhGZPUCaMmXKBfdhBRsZawQpxOsiE7RPJwDBPQ1LjNi70LPVbEVpgI95ehN18nNXy45I00gGSERk0wHSxx9/bLozIWokOa8MPUIvosS/JMuQdxM1itdVBHU3jCQlbwbibzPLNZHRv/6d/bD2SDZmX9eHPwcisir8aE0Wp65Oj9NnytUUW4ed3m4YOQrsbsxTs/KmkT2B5E1mPeyASD8k5ZUhKbfUrMclIrpYDJDI4uSUVKKqtg4h3hcxxXZ6B+AXAzhf5DSdLQnpA+QeA0qyzboum7POAWsTzXdMIiJjYIBEFpl/dFEl/rWVQMZew4gJ/U4StR2dgJTNZrsqbs469ArzwZojDJCIyLowQCKLk5J3NkDq6BRb5gGgtooBUnMymhbYDUjeAnMa0MUPW0/moayKLUCIyHowQCKLHEHy93CGq5Ou4/lH7v6AZ7CxT836hfYBsg8B5QVmzUOqrtVj0/E8sx2TiOhiMUAiy+yBdFH5R9sNzREvpoeSrarvKp66zWyHDPd1R7ivG/OQiMiqMEAii5OcX4bgjuYfSZ+f4kwgiPlHLZLGmf5RhnJ/M5JRpNWHs1SzWSIia8AAiSyzSWRH84/SdwOOOiAwxtinZVvVbJl7gSrzld4PifJHVlEl9qcVmu2YREQXgwESWRRZtyunuLLjFWyqvD8acGJ5/3nzkGqrgbQdMJeeYT7wdnPCrwezzHZMIqKLwQCJLMrpM/Ul/h0IcKRyLXMfEMzmkOfl7gf4dgJStsJcdI4Oaprt10OZZjsmEdHFYIBEttMDSaqzaiqBwB7GPzFbE9zLkMwuQaWZDIkKwNGsEiTnsas2EVk+BkhkcQGSk84B/p4u7X9y2i7A1QfwDjPFqdneNFt1uaGhppn062zoqr3yEKfZiMjyMUAii1ukNtTbDY4dKdFP3wkEdWN5f1t4hQKeQUDKFrN21Y7v5Ms8JCKyCgyQyKLI9EtoRyrYyvOB/CQuTttWEoCG9DbkIelrYS6DowKwIzkfeSWVZjsmEVFHMEAiiyIrv4f4dCBBO32P4asspUFtIwFSRSGQfcSs5f7iF1azEZGFY4BEFqO2Tq+6aId1KEDaZajMcvUyxanZJr9IwNXbrNNsPu7O6BPhix/2pZvtmEREHcEAiSxGRmE5aur07Z9i09cZErQDOHrULg6OhqVHVIBkvg7Xw2MC1OK1nGYjIkvGAIksKkFbhLZ3BOlMkmGqKIj9jzrUVVuWZpFraCZDowPUV06zEZElY4BEFhUgOToAwV6u7V9eROcM+EWZ6tRsV0As4OwGJG81+zTbj/s5zUZElssiAqQFCxYgOjoabm5uGD58OBISEs67/1dffYW4uDi1f3x8PH766acmjzs4OLS4vfbaaw37yPGaP/7yyy+b7HukC0vOL1WL1DrpHNsfIAXEADonXub2kmsmC/umbDLrtRsm02wnWM1GRJZL8wBpyZIlePrppzF79mzs2rUL/fv3x8SJE5Gdnd3i/ps3b8add96JBx54ALt378aNN96otgMHDjTsk5GR0WT76KOPVAB0yy23NHmtf/7zn032e+yxx0z+/VLrknPL2r/EiHSCzjrA/KOLEdobyD8FlJhvGZBh0QHQQ4+fDnDpESKyTJoHSHPnzsW0adMwdepU9O7dGwsXLoSHh4cKalry1ltv4corr8Rf/vIX9OrVCy+88AIGDRqE+fPnN+wTFhbWZPv2229x+eWXIzY2tslreXt7N9nP09Oz1fOsrKxEUVFRk42MK6kjPZCyDhoWXmX+UccF9QAcncy6NptMs/Xr7Iflu9PMdkwiIqsJkKqqqrBz506MHz/+9xNydFS3t2xpufRY7m+8v5ARp9b2z8rKwo8//qhGnJqTKbXAwEAMHDhQTb/V1NS0eq5z5syBr69vwxYZGdmO75QuRK/XG7potzdBO2O3YXkR6QxNHePkZugflWy+cn8xulsQdiafQcrZ5HwiIkuiaYCUm5uL2tpahIY2fXOT25mZLQ+9y/3t2X/x4sVqpOjmm29ucv/jjz+OL774AmvXrsVDDz2El156CX/9619bPdeZM2eisLCwYUtNTW3Hd0oXkltShfLq2vYHSGm7gcCuXF7EGGuzyWK/5QUwl8FR/nBzdsS3eziKRESWx+azWmWq7u6771YJ3Y1J3lO9fv36wcXFRQVKMlLk6nruNI/c19L9ZBz1K7y3K0CS0v78k0D8bfwxXCzph3TwGyB1G9BjotnWZhsaFYBlu9Pw6BXdVJ4gEZGl0HQEKSgoCDqdTk2DNSa3JSeoJXJ/W/ffsGEDEhMT8cc//vGC5yLVczLFlpRkvn4wdG4PpBDvdgSh9SvRB3TlpbxYLp6AfzSQvNms13J09yCcyi3F/rRCsx6XiMiiAyQZtRk8eDBWr17dcF9dXZ26PXLkyBafI/c33l+sXLmyxf0//PBD9fpSGXche/bsUflPISEhHfpe6OJHkAI8nNWoQptl7DHkHrn78vIba5otcy9QZRjNMwfph+Tv4YxluzjNRkSWRfMqNpnq+uCDD1Su0OHDh/Hwww+jtLRUVbWJyZMnq/yfek888QRWrFiBN954A0eOHMFzzz2HHTt24NFHH23yulJlJv2SWho9koTuefPmYe/evTh58iQ+/fRTPPXUU7jnnnvg729YTJPMKzm/DKG+7ck/0hvWX5P8IzLe4rVSEZi2w2xXVOfooJK1l+0+jYrqWrMdl4jI4gOkSZMm4fXXX8esWbMwYMAANZIjAVB9InZKSorqUVRv1KhR+Oyzz/D++++rkaGlS5di+fLl6Nu3b5PXlQRsqYySnknNSS6RPD527Fj06dMHL774ogqQ5DVJGydzStvXA6koHSjJMVRfkXG4+wG+kUCyeZtGXtYzBEXlNfjlIHsiEZHlcNBLFEHtJiNUUu4vFW0+Pj68ghdBfgX7Pf8rrokPxw0DOrXtSYk/AVvfBcY9ayhTJ+M4uc6w3fGZWa/rP78/CH9PF3w2bYTZjklE9qmoje/fmo8gEeWXVqG4ogZh7ZliS98D+HVhcGRsIX2BmkrD9KWZR5E2n8hjTyQishgMkMgiOmiLcF/3tj1BX2tI0Gb+kfF5BQHeYUCSeavZhscGwMNFhy93sL8YEVkGBkhkEflHos3LjOSdMFRasbzfNEL7Aqe3Gda5MxNXJx1GdQ3Ekh2pqKqpM9txiYhawwCJLGIEKcjLRb1JtomMHulcDQnFZJoAqarMcJ3N6A+9w5BTXMlkbSKyCAyQSHPSKDDMp535RwHRgM7mG8FrwyvEsCWZt5qtS4AHeof7YNFmNmslIu0xQCKLmGJrc4J2baVhzbAAlvebjCz5IU0jU7YY+iKZ0YQ+oWoB2wPsrE1EGmOARJqqq9OrKbYwnzYmaGcfNrxpBzFAMqnQeEOel3TWNqMhUQFquvW/WziKRETaYoBEmsoqrkBFdR3C2zqCJNNrrt6GJUbIdKSSzSsYOLXRrFdZOmuP6xWKb/ekI6+k0qzHJiJqjAESaZ5/JNo8xSaJwwGxhmkgMvE0W18gZbPZp9nGxRnWQ/zvlmSzHpeIqDEGSKR5gOToAIR4t6HEv6oYyD3O5UXMJayfYZotYzfMydvNWTWOlGTtsqoasx6biKgeAyTSVFJuKUJ93OCka8OvYsY+wyK1XH/NPGQaU7Yk806ziWviw1BcUY0vt7NxJBFpgwESaerk2QCpzflHnkGGRVXJPNNsYX3PVrOZr2mkCPZ2w8iugXh/w0nU1LJxJBGZHwMk0tSp9pT4q+VFWL1m/mm2MiBth3mPC+C6fhFIL6jA9/vSzX5sIiIGSKQZGRlIyS9DeFtGkEqygaJ09j8yN2kY6RMBnFxv9kNHBXpiUBc/vLX6GEeRiMjsGCCRZlLPlKOmTo8Ivzb0QFL9eBwMFWxkXuH9gNRtQHWZ2a/8LYM6Iym3DN/t5SgSEZkXAyTSzPHsEvW1TQGS5B/5dgZc2thQkownrL+h1D9lm9mvamywF4ZE+XMUiYjMjgESaeZETgncnXXw93C+wJ56IH03R4+0Iknx/tHAyTWaHP7mQZ2RnFeG5Xs4ikRE5sMAiTRzIrsEnfzc4HChpo9nkoCKQiCou7lOjZoLH2AYxSs/Y/ZrExPkiaHR/nhz5VFU1tTyZ0NEZsEAiTRzPKcE4b5tnF7TOQN+XcxxWtSSsHhD2f+pDZpcn0lDuiCjsBz/Y3dtIjITBkikCb1er3KQIvzbEiDtNkzxSJBE2nDxAIJ6ajbN1snfXXXXfmfNcRRVmHfpEyKyTwyQSBO5JVUorqhBpwuNIElycNYBILCruU6NWhMxAMg9BhRq091aKtoqqmuxcN0JTY5PRPaFARJplqDdpgq2nCNATSX7H1mC4F6GkaTjqzU5fICnC66OD8eHG08hNd/8LQeIyL4wQCLNAiRZpDbUx/XC3bNdPAGfcHOdGrVG52TorH1iDaDXJln6+v4R8HR1wks/Hdbk+ERkPxggkSYk/0gStC+4SG36LiCgK+DAX1WLEDEIKMszJM5rwM1ZhzuGRuLnA5nYfCJXk3MgIvvAdx3SrMQ//EJrsFWVALnHmX9kSaRZpyw/cnyVZqcwulsQeoR64fnvDnEJEiIyGQZIpFmJ/wXzjzL3Afo69j+yJFLq32kIkLIFqCzS6BQcMHlkNI5mFeO/LPsnIhNhgERmV15Vq1Zpj/C7wAiSTON4BgHu/uY6NWqLiIGGHCQNFrCt1zXYC+N7h+L1XxORWVih2XkQke1igETaVbBdqMRfLS/C8n6L4+oFhPQGjq0wLAOjkUlDIuGic8Tz3x/U7ByIyHYxQCKzO5Zd3ND8r1UlmUBROhDI5UUskkyz5ScBOUc1OwWpZrtnRJRK2F57JFuz8yAi28QAiczuaFYJgrxc4OHidP7pNalcC4w156lRW0ngKlOfR3/W9JqN6hqIfp188fdv9qOkskbTcyEi28IAicwuMbMYnf09Ljy9JhVTzm1YioTMz9ER6DzMkIck1YYakYTtB0bHIK+0Cq//kqjZeRCR7WGARBoFSOcJfCQBWEaQAruZ87SovToPBvQ1wHFt1merF+LjhtuHRGLx5iTsTD6j6bkQke1ggERmVVpZg7SC8vOPIOWdMIxKMP/Isrl6AyF9gMQfDO0YNHRlnzB0DfHCX5fuVeu1ERHZRIC0YMECREdHw83NDcOHD0dCQsJ59//qq68QFxen9o+Pj8dPP/3U5PH77rtPDb033q688som++Tn5+Puu++Gj48P/Pz88MADD6CkRLupAntxLNtwjSPPN4Ik02tOroBfpPlOjDqmyyigMM3wM9OQo6MDHhwTi5T8Mry1+pim50JEtkHzAGnJkiV4+umnMXv2bOzatQv9+/fHxIkTkZ3dclXK5s2bceedd6qAZvfu3bjxxhvVduDAgSb7SUCUkZHRsH3++edNHpfg6ODBg1i5ciV++OEH/Pbbb3jwwQdN+r0ScDSzGA4XqmBTy4vEAo46XjJL5x8F+EQAh7/X+kwQGeCBmwd2xnvrT2BvaoHWp0NEVk7zAGnu3LmYNm0apk6dit69e2PhwoXw8PDARx991OL+b731lgp+/vKXv6BXr1544YUXMGjQIMyfP7/Jfq6urggLC2vY/P1/bzZ4+PBhrFixAv/5z3/UiNXo0aPxzjvv4IsvvkB6errJv2d7Jt2PQ33c4OrUSvBTXQZkHwGCepj71KijnbW7jARO7wCK0jS/htf1j0B0kCf+/BWn2ojIigOkqqoq7Ny5E+PHj//9hBwd1e0tW7a0+By5v/H+Qkacmu+/bt06hISEoGfPnnj44YeRl5fX5DVkWm3IkCEN98lryrG3bdvW4nErKytRVFTUZKP2S8y6QIJ25n6grob5R9YkvL+heeShb7U+E+gcHfCnS7siOa8Ub67SrkcTEVk/TQOk3Nxc1NbWIjQ0tMn9cjszM7PF58j9F9pfRpj++9//YvXq1XjllVewfv16XHXVVepY9a8hwVNjTk5OCAgIaPW4c+bMga+vb8MWGcn8GJNUsEkui0cg4BHQodcnDeicgcjhwLGVQEWhRUy13TKoMz747SSr2ojIeqfYTOGOO+7A9ddfrxK4JT9Jcoy2b9+uRpU6aubMmSgsLGzYUlNTjXrO9qCwrBrZxZXnr2BL2wkEdjVM3ZD16DLCsOzIkaYFE1q5tl+EWq/tz1/uUWv/ERFZVYAUFBQEnU6HrKysJvfLbckbaonc3579RWxsrDrW8ePHG16jeRJ4TU2Nqmxr7XUkp0kq3hpv1D5Hzy4xIp/wz7+8CPOPrI6LJ9BpMHD4W6Cm3DKm2sZ2VYsiv7LiiNanQ0RWSNMAycXFBYMHD1ZTYfXq6urU7ZEjR7b4HLm/8f5CKtFa21+cPn1a5SCFh4c3vEZBQYHKf6q3Zs0adWxJ2ibTTa85OgDhvm4t75C26+zyIlyg1irFjAWqS4Gjv8ASRPi5485hkVi0OQmbjudqfTpEZGU0n2KTEv8PPvgAixcvVtVlklBdWlqqqtrE5MmT1fRWvSeeeEJVoL3xxhs4cuQInnvuOezYsQOPPvqoelx6GUmF29atW5GUlKSCqRtuuAHdunVTydxCqt8kT0mq56Tn0qZNm9TzZWouIiJCoythHwFSJz93OOscW59ek7Jx51YCKLJs7n5A+EBg/9dAbRUswYQ+YegT4YNnvtqLoopqrU+HiKyI5gHSpEmT8Prrr2PWrFkYMGAA9uzZowKg+kTslJQU1ceo3qhRo/DZZ5/h/fffVz2Tli5diuXLl6Nv377qcZmy27dvn8pB6tGjh+qXJKNUGzZsUNNk9T799FPVbHLcuHG4+uqrVam/vCaZzsH0QnRpbXpNKtcy9rJ6zRZGkSoKgGO/whI4OjjgoUu7oqCsGs9/d1Dr0yEiK+Kg1+v1Wp+ENZIyf6lmk4Rt5iNdWF2dHn1m/4KbBnZSvWpaLO9fMQMY+YhhkVqyXvu/AvJPAbd+COh+/1CipfVHs7Fw/Um8d+9gTOzTer4iEdm+oja+f2s+gkT2ITm/DOXVtYgK9Gg9/0gSfaUrM1m32CsM5f5HfoSluLR7MIZE+WPmsv3ILanU+nSIyAowQCKzOJxhaKwZFejZ8g5pO4Cg7oYkbbJunoGGirZ9XxoWHbYAsh7jH8fEorZOj5lf7wcHzonoQvhuRGZxKL0IAR7O8HV3PvfB8nwg/ySXF7El3cYDNZXA/i9hKeR374FLYrDycBaW7jyt9ekQkYVjgERmcUgStFsdPdoln/EZINkSNx8gZgxw6DtDfysLMTQmAJf2CMJz3x1Ean6Z1qdDRBaMARKZxcGMovPkH+0wJGZLDhLZjugxgLM7kPAfWJIpI6Ph4aJTpf9SPEBE1BIGSGRy+aVVyCqqRFRACwFQXa1hBEnyj8i2OLkCPa8GUrYYelxZCA8XJ9VlO+FUPj7adErr0yEiC8UAicyYoN3CCFJuIlBVCgTH8Sdhi8L6AQFdga3/BmoqYCl6R/jiqvhwvLoiEUezDEvgEBE1xgCJzJKg7erkiDCfFjpkp24/W97fiT8JWySLDve+ESjLA3Z/AksyaUgkQnxc8cQXu1FVU6f16RCRhWGARCZ36Gz+kaMsxNZcWoIhOduRv4o2yyvIUNV26Fsg+xAshYuTI/7vsm44mlWCeauOan06RGRh+K5EJrf/dCtLjJTmAPlJQHBP/hRsXdRowDcS+O01i+mNJGKCPHHroM5YuP4Etifla306RGRBGCCRSZVU1uBETglig73OfVASd6UxZCATtG2ejBD2nwRUFAFb5gOwnOoxWfqme4g3nlqyR/2+EhEJBkhkUgfSCtVbYdeWAqTT2wH/LoBLK+X/ZFvc/YG+NwOnNgAHv4Gl0Dk64OHLuqolSP75PRe0JSIDBkhkUntTC1SCdic/96YP1FYB6btZvWZvwuKBmLHAjo8tqvQ/1McNk0dE48sdp7HigOU0tiQi7TBAIpPad7pQ5XnIp/QmMvcZlqII7sWfgL3pPgEI6gmsfQnISYSluKxnMIZG+2PGsn3ILrKclgREpA0GSGRSe1ILEBvUQoPI1ATAIxDwDOZPwB7zkQbcAXiFAqtmA/knYEkL2koozy7bRMQAiUwmr6QSaQXlLSRo64HUbYbqNemTQ/ZH5wIMmgy4+QIrZlrMSJKPmzMeurQrfjuWi0Wbk7Q+HSLSEAMkMpl9aYXq6zkJ2vmngNJc5h/ZO0nOH/KAYRRxxXQgaQMsQf9IP1zVNwxzfj7c0AWeiOwPAyQymX2phfBydUKoj2vTB1K2Ac5ugH8Mr769k9+DIfcDIb2BdS8D2/8D1FZrfVa4Y2gXRPi547HPd6O8qlbr0yEiDTBAIpPZe9qQfyS5HU2kbgECewI6J159AnTOQL9JQM9rgMPfAT8+BeQe1bzL9iOXdUNqfhle+NFyun8TkfkwQCKT0Ov1hgAp2PPc7tl5J4AQLk5LjUgQHTMaGP6wobrxxz8DW94Bys9odpkiAzxw78gofLYtBT/uy+CPi8jOMEAikzh9phx5JVXoGtIs/+h0gqGKScq8iZrz7QSM+D+g59XAqd+Arx8wTLuVa7MMyBU9QzAiNgAzvt6nRpOIyH4wQCKT2Jls+OTfI9S76QPJWw25Ry7NGkcSNfxV0gHRlwCj/wxEjQISfwaW3g9smgecOWXW6yTTw9PGxMLDVYdHPt2FyhrmIxHZCwZIZBKy8Kd0z5ay6QaySGnmXkNCLlFbqtykqeTYvwLdxhl6Z337KPDL34C0HWZbz83DxQmPXdEdhzOLMOenI2Y5JhFpjwESmSxA6hHabHotdTtQVwuE9OFVp7ZzdjcsT3LpX4B+dwBl+cDK2YZgSVoD6OtMfjWlVcU9w6NUbyTmIxHZBwZIZHSF5dU4llVy7vRaymbANxJw9+VVp45NvUX0B0Y8DAybZmg2Ka0Bvn/CsHSNif2hdyhGxgbiL0v34nh2scmPR0TaYoBERrcr5Yya/OgZ1ihAqq00LE4ayuk1MkLFW0AsMGQqMOwhoK7G0I37t9eACkNzUlPlIz14aSwCPF3w4P92orhC+35NRGQ6DJDI6HYmnYGvuzPCfNx+vzNtl6F8m9NrZEwB0cDwPwHxtxkqJJc/DKTvMtk1dnPW4anxPZBZWMH12ohsHAMkMln+UZMGkUmbAO9wwIuL05KRye9Zp0HAJU8aFsD9dRaw9wuTJXFLh+2HL+uKXw5m4e01x0xyDCLSHgMkMqqqmjrsTS1omn9UWwWkbgVCmZxNJuTqDQyeYqh42/0/YONcky1bMiQqALcPicS8Vcfw8342kSSyRVzrgYzqYHohKmrq0LNxgJS+B6guB8LiebXJtBwcDQGSRxBwYClQWQpcNsOQ0G1kNw6IUM0jn/pyj+q63bcTiw+IbAlHkMiotpzMg5uzI2KCGi0xkrzRMPXhFcKrTeYh1W4D7zXkI619yZDIbWQyhfzQ2Fh09vfA1EXbkVZQbvRjEJF2GCCRUW06nou4MB846Rx/n15L2QKE9eWVJvMK7gEMOBskbXzTJP2SXJ10+PMfekCy7aZ+nIAiVrYR2QwGSGQ0FdW12JF0Bn0jGk01SGl/VRkQ1o9XmswvuDvQbxJwcj2wa7FJDuHn4YK/ToxTI0jTFu9Q/x0QkfVjgERGsyv5DCpr6tC3k8/vd8qCo94RnF4j7UjuW8+rgP1LgeOrTHKITv7ueGZCT+xOKcATX+xGbZ15lkEhIhsPkBYsWIDo6Gi4ublh+PDhSEhIOO/+X331FeLi4tT+8fHx+Omnnxoeq66uxvTp09X9np6eiIiIwOTJk5Gent7kNeR4kkPQeHv55ZdN9j3ag00ncuHj5qQSVpWaciB1GxDO5GzSWPRooPNQYMt8IM80pfkytfz4uO5YeSgLM5ftQx2DJCKrpnmAtGTJEjz99NOYPXs2du3ahf79+2PixInIzs5ucf/NmzfjzjvvxAMPPIDdu3fjxhtvVNuBAwfU42VlZep1nn32WfV12bJlSExMxPXXX3/Oa/3zn/9ERkZGw/bYY4+Z/Pu1ZRuP56JPhC8c6/sfyeKi0hwylAESaUx+J3tdbygWkKTtyiKTHGZwlD/+NLYrvtpxGrO/Owi9niNJRNbKQa/xf8EyYjR06FDMnz9f3a6rq0NkZKQKVmbMmHHO/pMmTUJpaSl++OGHhvtGjBiBAQMGYOHChS0eY/v27Rg2bBiSk5PRpUuXhhGkJ598Um1tUVlZqbZ6RUVF6jwLCwvh49NoSslOSXLqgOd/xf2jYzAuLtRw56rngJJsYMSftD49IoPyM4ZRpPABwOV/kz+BJrkya45k44MNJ/HA6Bj845peTZumEpGm5P3b19f3gu/fmo4gVVVVYefOnRg/fvzvJ+ToqG5v2bKlxefI/Y33FzLi1Nr+Qi6C/IHy8/Nrcr9MqQUGBmLgwIF47bXXUFPTeinwnDlz1AWt3yQ4ot9tPZEHmVFoSNCWNbEkQTtiAC8TWQ53f6D3zUDyZuDoLyY7zBVxIZh6STQ+3HgKz39/iNNtRFZI00aRubm5qK2tRWjo2RGHs+T2kSNHWnxOZmZmi/vL/S2pqKhQOUkyLdc4Unz88ccxaNAgBAQEqGm7mTNnqmm2uXPntvg68rhMBTYfQaLfp9dCvF0RWr/+miRny4dmNockSxPWB4gcBiS8b/j99OlkksNM6B2mppslSJLKtpduioejI0eSiKyFTXfSloTt22+/XeUBvPvuu00eaxzs9OvXDy4uLnjooYfUSJGrq+s5ryX3tXQ/QV3fVYezMCCy0QjdyTVAYA/ApVHDSCJL0fNqIO8ksOFN4OpXAAedSQ4zvlconHWOeP+3EyiuqMHcSf1V7yQisnyaTrEFBQVBp9MhKyuryf1yOywsrMXnyP1t2b8+OJK8o5UrV14wT0hyoWSKLSkpqcPfj71KzCpGekEFBnXxN9xRmALkHDUsIEpkiZxcgb63ADlHgIPLTXqosT2C8eS4Hvj1UCbu+2g7itlMksgqaBogyajN4MGDsXr16ob7JElbbo8cObLF58j9jfcXEgA13r8+ODp27BhWrVql8owuZM+ePSr/KSSEy2G01+rD2XB31qF3xNkgVHrNyMhRcK92vxaR2QREA9GXGBa2LUwz6aGGxgRg5lW9sO90AW59dwvSuSwJkcXTvMxfpro++OADLF68GIcPH8bDDz+sqtSmTp2qHpceRpL/U++JJ57AihUr8MYbb6g8peeeew47duzAo48+2hAc3Xrrreq+Tz/9VOU4SX6SbJIULiShe968edi7dy9Onjyp9nvqqadwzz33wN//7CgItZl8Mo7v7KumElBXCxxfY+icrbPpGVyyBd3/ALj6ApvmmWQpksZ6hftg9nV9kF9Whevnb1LBEhFZLs0DJCnbf/311zFr1ixVqi8jORIA1Sdip6SkqOTpeqNGjcJnn32G999/X/VMWrp0KZYvX46+fQ1rfaWlpeG7777D6dOn1euFh4c3bJKMLSSX6IsvvsDYsWPRp08fvPjiiypAktek9skprsS+1MLfp9fSdxpKqTsN5qUky6dzAfreBGQfAo6uMPnhpInqP6/vA38PZ9y2cAu+2X3a5MckIivtg2TrfRRs3ZfbUzH9631YeM9g+Lg7A2teAApTgRGPGJrzEVmDA8uA7IPAjQsBjwtPyV+sqpo6fLjpJH47mqt6Jc24Ks4wAktEJmcVfZDI+kn1Wo9Qb0NwVJZr6J7daSiDI7IuPa40VLJte88sh3NxcsSfLu2KKSOjsWhzEia9twUZheVmOTYRtQ0DJOqwksoarD+ao5ZXUI6tAhydgPD+vKpkXVw8gLhrgORNhvUDzUCa117ZNwyzru2N5LwyXPXWBqw50rRCl4i0wwCJOuzXg5morKnDyK6BhuTsoz8bGu85n20WSWRNpLAgqAew9d9AtflGc2QE9qWb4xEb5In7F+3Ac98dVI0liUhbDJCow77dk464MG8EebkCpxOA0lygS8vtGYgsnuTM9b7BsEzOnk/NemgfN2c8M6GnmnL7dFsyrp+/EQfTC816DkTUFAMk6pD80iq1vIgaPRKHvgf8ogBf0yzbQGQWHgFA1yuAQ98C+cfNetHrp9z+dWO8SuK+Yf4mzF9zDDW1pm0/QEQtY4BEHfLT/gy1xMiImECgIAXI3At0GcGrSdYvegzgFQJsegfQm3+qq4u0ArihL67pF465K4/ixgWbkJhZbPbzILJ3DJCoQ77bk45+nX0N1WuHlgOuPkCooRcVkVVz1AG9bwTyTgCHf9TkFKTk/46hXfD89X1RUF6Na97egDdXHkVlDXOTiMyFARK1W2p+GRKS8jEyNsjQFPLEGiBqJDtnk+3wjwK6DAd2LwZKczQ7jW4hXnjppnhc3z8C89cexzVvb8SOpHzNzofInjBAonb7PCEFni46DIsJAI7IJ2xHoPNwXkmyLd0nAjpXYMsCANr105XRpNuGRKpASVqv3rpwC2Yu24/CsmrNzonIHjBAonaR5NEl21Mxunsw3FAFHP4e6DwYcHHnlSTbIu0qet0AnN4OnFyv9dmo3KTnruuDqZdE49s9abjijXVYtuu0ygUkIuNjgETt8svBTOSVVmFcXAiQ+BNQU25IaiWyRaG9gLD+wLaFhulkjTk6OmBC7zC8dmt/1T/p6S/34o73t+JoFpO4iYyNARK1yydbk9Er3BuRPo7Aga+BiEGAux+vItmu3tcBMkqj8VRbYwGeLnh8XHfMvCpO5QRKF+4XfzykutsTkXEwQKI2O55djG2n8jEuLtSw8nllMRB7Ga8g2TYXT0MDyZQtwIm1sCT9Ovvh5Vv64dbBnfHfLcm4/PV1WL47jdNuREbAAIna7P3fTsLfwxnDOrsB+5YYRo+ksR6RrQvrC0QMBLa9C5RY1nppksR944BOeP22/mq5kieX7FGJ3AfS2Imb6GIwQKI2SSsox9e70nB1fDicj3wPVJUB3cbx6pH96HW9oartt9cNaw9aGFny58nxPfD3q3shu6gC172zETO+3oec4kqtT43IKjFAojZ5b/0JeDjrMD7aDTj4taFHDHOPyN6q2uJvB3KOmH2ttvbo28kXc27uhymjovHDvgxc9tpavLvuBBfAJWonBkh0QdnFFfgiIVWtE+V24BPDnbGX88qR/QmIBrr/Adj3JZC2E5ZK5+iAiX3C8ObtA1RLjtd+OaLaAny3N535SURtxACJLui99SfhpHPAxIhy4OivQLfxhsRVInsUcykQ3BNY/wpQlAZL5uXmhPtGRau2ABG+7nj8891qEdytJ/O0PjUii8cAic7rVG4pFm9OwjXxYfDcudCwiGcku2aTHXNwBPrdDrh4AKtfAKpKYOki/Nzx5wk98ey1vVFaVaN6J035KAEH05nITdQaBkh0XtJbRSrXrnXbZ8i9kHJnWcyTyJ45uwMD7gXK84E1/wJqq2ANeof74IUb+uLxK7rjWFaxWtvtkU93qRYeRNQUAyRq1YZjOVh1OBt39veHy55FQOehQEAMrxiR8AoGBtxj+OBgoZVtLXFwcMDIroF49db+mDYmFgmn8vCHub/hic93q6CJiAwc9FzIp0OKiorg6+uLwsJC+Pj4wNZUVNfimrc3wEXniGedPoVDYRIw6gmuuUbUXPZhYM8nQNQYYMzTgKOTVV2jmto6rE3MwXd705BbUoUr+4Ti/y7vpppQEtnz+zdHkKhFr/2SiJT8MkwNPQmHrL1A/K0MjohaEtIL6HcnkLzBMN1WU2FV18lJ54g/9A5VFW8PjonFntRCXD9/k8pTWnskG3V1lrG8CpG5cQSpg2x5BGnT8Vzc/Z9tuLevK64+NhvoMhKIu0br0yKybDlHDf2R/LoAV/wD8AyGNZKAaHtSPn7Yn4Hj2SWIDvLAfSOjcfPgzvBxc9b69IjM9v7NAMnEF9ja5JdW4eq3NiDYwxEzSl+Do4cPMOSPTMwmaovCNEOQpK8zTLd1GmK1102yL45ll+DnAxnYnnQGzjoHtaTJpKGRGBDpp3KZiKwRAyQLucDWpLKmFnd9sA3Hs4rxovdSBFYkAyMeAdxs4/sjMovKEuDAV4YRpe4TgMH3AW6+Vn3xz5RVqem2tYnZKk+pe4gXbhncGTcMiEC4r7vWp0fULgyQTMzWAiT5tPjkF3vw04EMPBu8Gd0LNwDDHgJ8wrU+NSLro9cDqQnAsV8MfZP63gzEXWf1DVZl+u1AeiHWJeZgZ/IZVNfWYVhMAK7tF44r+4Yj2NtV61MkuiAGSCZmSwGSBEcv/HAYH206hcdD92Fk4U/AwHuBoO5anxqR9Y8mnVgNnN4B6JyA2CuA2MsMid0SOFmxsqoalau05UQe9qcVqphwUJQ/JvYJxRVxIega7MVpOLJIDJAs5AJbuto6Pf6xfD8+T0jF1IADmFD6PTDwbiA4TutTI7Id5YVA2nZDoFRRaJhyCx9gCJQCuxoSu128YK2KKqqxK/mMGlXad7oQVbV16OzvjrE9gjGmexBGxgbB14MJ3mQZGCBZyAW2ZMUV1fjL0n349WAmHvTejLHVm4CB9xj+YBOR8Uny9pkUIDcRyDsBFKf/3mDS1RvwDAE8AwF3f8DNz5D/J8GU69mv7nKfv0UXTUgu48H0IuxOKVBLmWQUVkDSuePCvTE8JhCDo/zVSFOEr5vFjzBV1dSp4K+kogYllYatvKpW9YmrqKlVj1fV6lFdU6c+bNbU6VGn16t/y1cZVasn36qjgwMcHQzNOp0cHdSiws46R7W5OjnC1dkR7s46uLvo4OXqpDYfd2f4ujurfcg4GCCZmLUHSIczivDwJzuRVViGh3XfYahbqqErMHOOiMyntgYozQFKsg3LlpSfASqLgKrSs1sJUFvd7EkOhkDJMwjwCgW8wwGfCMC3s0WOROUUV6iASf7mJGaVIKvI0CcqwNMF8Z180TvCBz1DvdEtxAsxQZ7wdHUyaQ5VQXk1sosrkFNc2WTLK61Cbkkl8kqqkF9WhYKyKlRU113wNSXIcTq7OUrQ4+CggiEH+TkZ/qeoWEkPFTgZNsMIfk1dHaprL9xrytNFh0AvVwR5uSDUx01tEX5u6OzvoUbrogI8OUrXRgyQTMxaAyT59LNg7XG899sJdHIqxhO1ixAWGg70vcWw+CYRWRZZ562qzBAsyVZRbAiiyguAijNAmQRWBfVvwYbASZYECugGBHYDgnsA7gGwFBJ4HM8pUQthy5aaX6Yq4+pJoncnP3d08ndHsJeruu3n4QxvN2d4uerg6qRToymGIAQquJBk8fLqWpUXJaM9heXVapOgJ7+kCjkllQ3Bj4zyNA88ZPpPRmnkGD5uTmeP5QRPVx08XZzg4aKDm4zsOOvg6qxTKwy4ODnCSScjQg5GyQOVYEmmJmVUSgIzGaGSv9eyuHBpZQ2KK2pQdPb7KiirVkGcfE+Ngzj5HiTIlPwvCTil2rBHqLcKoCR4IwMGSCZmbQGSDHsv25WGd1YfRU5ROa7TbcUNLjvgEjcBiBhoGP8lIusko0yluUBJFlCcARRnAkVphlEo4RFoyCsM7mnYJHBycoOlkAAgo7BcTcdlFlWoQCavpLIh0JGprbY29JYRHRXcuOgMgY6bkwoc/M5OVfl5uKiAy+/svyXQsVYSWMm1yS6uRHaRXLvKhuuYXlCOsirD9K2bsyN6hHirac64MJ+GrzKKZ4+KrKlR5IIFC/Daa68hMzMT/fv3xzvvvINhw4a1uv9XX32FZ599FklJSejevTteeeUVXH311Q2Py7c0e/ZsfPDBBygoKMAll1yCd999V+1bLz8/H4899hi+//57ODo64pZbbsFbb70FLy8vmwqQUvLKsGz3aXy65SRyS2swTHcUd+jWIqxLD6DrFRw1IrJV8qddEsILU4HC02e/phlGpKSCzj/qbLDUAwjqBvhFWew6cvI3XUZKZJRI1o6rro+W9LJUiiGXRwIdNzW6JFNc/MAn1+xMWbUaoTt9phwp+aXqq2wyUiVkdC4uzFtNcfYI81ajTTLyJAGmLbOaAGnJkiWYPHkyFi5ciOHDh2PevHkqAEpMTERISMg5+2/evBmXXnop5syZg2uvvRafffaZCpB27dqFvn37qn3ktjy+ePFixMTEqGBq//79OHToENzcDJ+arrrqKmRkZOC9995DdXU1pk6diqFDh6rXs+YASZIHpeR2Q2IW1h1Ixr6cWrg7VGEEDuBat72IiOwKRI1i80cie1RXZxhlkmCpIBUoOm3If5LkcZ0z4NsFCIgFAqIB30hDXpMsmWLlLQnodzKVJ6N08uE59UyZCqBSz5SrEaj6YCDM1w1dgw1TdTJlFxXogS4BnmqqTqYarZ3VBEgSFElgMn/+fHW7rq4OkZGRanRnxowZ5+w/adIklJaW4ocffmi4b8SIERgwYIAKsuTbiYiIwJ///Gc888wz6nG5CKGhoVi0aBHuuOMOHD58GL1798b27dsxZIhhKYAVK1aoUajTp0+r51tygCTTZbIkSGZBBdJy8pCcmY0TGQU4kluJo0VOqNE7wgvliHc8gcHOyRgSDLhG9AaCehp6sRAR1aupMkzLyZRcUYYhgCrJ/D05XAInrzDAJwzwDDXkOHk0q7STCjydfU7X2Ar5cJ1WUK6m5uRrRkEFMorKkVlY0SSJPNDLRXVP7+TnhhBv2VwR5O2qpusCPQ3Tl1J5J+v2WWow1db3b03fLauqqrBz507MnDmz4T6Z7ho/fjy2bNnS4nPk/qeffrrJfRMnTsTy5cvVv0+dOqWm6uQ16smFkEBMnisBknz18/NrCI6E7C/H3rZtG2666aZzjltZWam2enJh6y+0sX2yNQkv/5zYoecGIA+xDhno7FQARxdfnHbpitNFjkCR/LE7YPRzJSJbIUUa0uKjKyCxTnWFIYepsgworgIy5E0y8+xmJDJa1XmoRbctsEcyQRnhKZsb9GFuKCivQnaRJLlXIq+gEDl5BdhnhvOQlhCv3tIPob7GzZerf9++0PiQpgFSbm4uamtr1ehOY3L7yJEjLT5Hgp+W9pf76x+vv+98+zSfvnNyckJAQEDDPs3JlN3zzz9/zv0y2mVJUgHs1fokiIiIjPB+tvwpmExxcbEaQGkN51vaSEa5Go9cyVSgJHoHBgZaTUKgRM0S0KWmplpU3pSl4XXideLvEv+bszT8u2S86yQjRxIcXSidRtMAKSgoCDqdDllZWU3ul9thYWEtPkfuP9/+9V/lvvDw3xdalduSp1S/T3Z2dpPXqKmpUQFPa8d1dXVVW2MyTWeN5JeGARKvE3+f+N+cpeHfJl4jc/0unW/kqJ6mpQkuLi4YPHgwVq9e3WRkRm6PHDmyxefI/Y33FytXrmzYX6rWJMhpvI9ElJJbVL+PfJXyf8l/qrdmzRp1bMlVIiIiIvum+RSbTFtNmTJFJUxL7yMp85cqNSm7F9ICoFOnTioHSDzxxBMYO3Ys3njjDVxzzTX44osvsGPHDrz//vvqcZnuevLJJ/Gvf/1L9T2qL/OXobQbb7xR7dOrVy9ceeWVmDZtmqp8kzL/Rx99VCVwt6WCjYiIiGyb5gGSlO3n5ORg1qxZKkFapsGk5L4+yTolJUVVl9UbNWqU6lX0j3/8A3/7299UECQVbPU9kMRf//pXFWQ9+OCDaqRo9OjR6jXreyCJTz/9VAVF48aNa2gU+fbbb8OWyRShNNBsPlVIvE78feJ/c1ri3yZeI0v8XdK8DxIRERGRpWF7VCIiIqJmGCARERERNcMAiYiIiKgZBkhEREREzTBAsiMLFixAdHS0quaTfk8JCQlan5JFkVYSsnCyt7e3WopG2kIkJnZsTTx78fLLLze01qCm0tLScM8996hu++7u7oiPj1ctSchAlpmSFizSikWuT9euXfHCCy9ccH0sW/fbb7/huuuuUy1n5L+t+nVG68n1kapvaYQs103WET127BjszW/nuU7Sumf69OnqvzlPT0+1j7QMSk9Pb9cxGCDZiSVLlqieU1L+uGvXLvTv318t8tu8o7g9W79+PR555BFs3bpVNR+V/8gmTJigWkbQubZv34733nsP/fr14+Vp5syZM7jkkkvg7OyMn3/+GYcOHVK92/z9/XmtznrllVfw7rvvYv78+Th8+LC6/eqrr+Kdd96x62skf2/k77N8oG2JXCNpSSM9/KQBsgQA8re8oqIC9qT0PNeprKxMvc9JAC5fly1bpj7sXn/99e07iJT5k+0bNmyY/pFHHmm4XVtbq4+IiNDPmTNH0/OyZNnZ2fJRVr9+/XqtT8XiFBcX67t3765fuXKlfuzYsfonnnhC61OyKNOnT9ePHj1a69OwaNdcc43+/vvvb3LfzTffrL/77rs1OydLI39/vvnmm4bbdXV1+rCwMP1rr73WcF9BQYHe1dVV//nnn+vtFZpdp5YkJCSo/ZKTk9v8uhxBsgNVVVVqWRUZiq0nzTHl9pYtWzQ9N0tWWFiovgYEBGh9KhZHRtqkk33j3yn63XfffadWB7jtttvUdO3AgQPxwQcf8BI1Ik1/ZUmoo0ePqtt79+7Fxo0bcdVVV/E6teLUqVOqoXLj/+5kTTFJmeDf8gv/PZepuPasoap5J20yvdzcXDXfX9+dvJ7cPnLkCH8ELZB1+SSvRqZJGndpJ6jlfWTYWqbYqGUnT55U00cyrS0d/+VaPf7442r9SVlaiYAZM2aodTLj4uLUouXyN+rFF1/E3XffzcvTCgmO6v92N/9bXv8YnUumHyUn6c4772zXQu0MkIhaGSE5cOCA+kRLv0tNTVXrIUqOVuOle+jcAFtGkF566SV1W0aQ5PdJ8kYYIBl8+eWXasknWTqqT58+2LNnj/pQIgm1vEZkLJJLevvtt6vkdvnQ0h6cYrMDQUFB6hNaVlZWk/vldlhYmGbnZalkjb4ffvgBa9euRefOnbU+HYsiU7WS2D9o0CA4OTmpTZLbJWlU/i2jAARVYdS7d+8ml0IWyZa1JcngL3/5ixpFkkXCpdro3nvvxVNPPdWwMDmdq/7vNf+Wty84Sk5OVh/q2jN6JBgg2QEZ1h88eLCa72/8CVdujxw5UtNzsyTyCUOCo2+++QZr1qxR5cfUlCzuvH//fvVpv36TkRKZFpF/SyBOUFOzzVtESK5NVFQUL0+jSqPGC5EL+f2Rv03UMvmbJEFS47/lMk0p1Wz8W95ycCQtEFatWqXabbQXp9jshORCyLC1vJkNGzYM8+bNU2WSU6dO1frULGpaTYb7v/32W9ULqX5OX5Igpd8IQV2X5jlZUmYsf3yYq/U7GQmRJGSZYpM/0tJz7P3331cbGUgPG8k56tKli5pi2717N+bOnYv777/fri9RSUkJjh8/3iQxWz58SLGIXCuZhvzXv/6F7t27q4BJStllWlL6ttmTkvNcJxnBvfXWW1WupMwGyMh2/d9zeVwGDdrECBV2ZCXeeecdfZcuXfQuLi6q7H/r1q1an5JFkf8cWto+/vhjrU/NorHMv2Xff/+9vm/fvqoEOy4uTv/++++b+Sdj2YqKilR7CPmb5Obmpo+NjdX//e9/11dWVurt2dq1a1v8OzRlypSGUv9nn31WHxoaqn63xo0bp09MTNTbm7XnuU6nTp1q9e+5PK+tHOT/TBXhEREREVkj5iARERERNcMAiYiIiKgZBkhEREREzTBAIiIiImqGARIRERFRMwyQiIiIiJphgERERETUDAMkIiIiomYYIBERAVi3bh0cHBxQUFDA60FEYCdtIrJLl112GQYMGKDWJRRVVVXIz89HaGioCpSIyL5xsVoiIkAtYCkrpRMRCU6xEZHdue+++7B+/Xq89dZbarRItkWLFjWZYpPbfn5+WL58uVo53c3NDRMnTkRqaqrWp09EZsAAiYjsjgRGI0eOxLRp05CRkaG2yMjIc/YrKyvDiy++iP/+97/YtGmTCp7uuOMOTc6ZiMyLU2xEZHd8fX3VlJqHh0fDtNqRI0fO2a+6uhrz58/H8OHD1e3FixejV69eSEhIwLBhw8x+3kRkPhxBIiJqhZOTE4YOHdpwOy4uTk27HT58mNeMyMYxQCIiIiJqhgESEdklmWKrra097z41NTXYsWNHw+3ExESVhyTTbERk2xggEZFdio6OxrZt25CUlITc3FzU1dWds4+zszMee+wxtd/OnTtV9duIESOYf0RkBxggEZFdeuaZZ6DT6dC7d28EBwcjJSXlnH0kiXv69Om46667cMkll8DLywtLlizR5HyJyLzYSZuIqAXSB+nJJ5/k0iNEdoojSERERETNMEAiIiIiaoZTbERERETNcASJiIiIqBkGSERERETNMEAiIiIiaoYBEhEREVEzDJCIiIiImmGARERERNQMAyQiIiKiZhggEREREaGp/wez4vx3pw8fhAAAAABJRU5ErkJggg==" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 42 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_16.6 Count Plot and Bar Plot using Seaborn_**\n", + "id": "e58dc59f69a85545" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T09:11:59.033800Z", + "start_time": "2025-11-14T09:11:58.941826Z" + } + }, + "cell_type": "code", + "source": "sns.countplot(data=student, x ='gender')", + "id": "9fc467cad3c2302c", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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SZMmMWXKlHwDAPhaIfPKK68UHmdXFu18GXR2H5gFCxbEvvvu+7+8JQDA3gmZI488MsrKyvJtV6eQmjZtGr///e93fzQAALUVMm+//XZUVVXF/vvvH88991y0a9euxmXU7du3j/r16/8vbwkAsHdCZr/99itcIg0AkOzl18uXL4/HHnssv/Lo02FzzTXX7ImxAQDs+ZC58847848TaNu2bX5JdLZmplr2WMgAACUbMtdff33ccMMNcdVVV+35EQEA1OYN8f773//GWWedtTtfCgBQ3JDJIuaRRx7Zc6MAANhbp5ayT6u++uqrY8mSJXHEEUfkH+64s5/97Ge787YAALUfMn/4wx+iefPmsWjRonzbWbbYV8gAACUbMtmN8QAAklwjAwCQ7IzMhRde+IXHZ8yYsbvjAQCo3ZDJLr/e2fbt2+O1116LioqKXX6YJABAyYTMvHnzPrMv+5iC7G6/BxxwwJ4YFwDA3lsjU69evRg/fnxMnjx5T70lAMDeW+z71ltvxccff7wn3xIAYM+eWspmXnZWVVUVa9asiQcffDBGjhy5O28JALB3Quall176zGmldu3axc033/ylVzQBABQ1ZB577LE9NgAAgL0aMtXee++9WLZsWf74kEMOyWdlAABKerHv5s2b81NInTp1igEDBuRb586dY9SoUfHhhx/u+VECAOypkMkW+2YfFjl//vz8JnjZdv/99+f7Lrvsst15SwCAvXNq6S9/+Uvcc889MXDgwMK+73//+9G0adP44Q9/GFOnTt2dtwUAqP0Zmez0UYcOHT6zv3379k4tAQClHTL9+/ePiRMnxpYtWwr7Pvroo7j22mvzYwAAJXtq6dZbb41TTjklunTpEr179873/f3vf4/GjRvHI488sqfHCACw50LmiCOOiOXLl8fdd98db775Zr7vnHPOiREjRuTrZAAASjZkJk2alK+Rueiii2rsnzFjRn5vmauuumpPjQ8AYM+ukbnjjjuiR48en9l/2GGHxbRp03bnLQEA9k7IrF27Nr8Z3qdld/bNPjwSAKBkQ6Zr167x9NNPf2Z/ti+7wy8AQMmukcnWxowdOza2b98egwYNyvctXLgwrrzySnf2BQBKO2SuuOKKeP/99+OnP/1pbNu2Ld/XpEmTfJHvhAkT9vQYAQD2XMiUlZXFb37zm7j66qvjjTfeyC+5Puigg/L7yAAAlHTIVGvevHkce+yxe240AAC1vdgXAKAUCBkAIFlCBgBIlpABAJIlZACAZAkZACBZQgYASJaQAQCSJWQAgGQJGQAgWUIGAEiWkAEAkiVkAIBkCRkAIFlCBgBIlpABAJIlZACAZAkZACBZQgYASJaQAQCSJWQAgGQVNWQmTZoUxx57bLRo0SLat28fZ555ZixbtqzGa7Zs2RKjR4+ONm3aRPPmzWP48OGxbt26oo0ZACgdRQ2ZRYsW5ZGyZMmSePTRR2P79u3xve99LzZv3lx4zbhx42L+/Pkxd+7c/PWrV6+OYcOGFXPYAECJaFDMb75gwYIaz2fNmpXPzCxdujQGDBgQGzZsiOnTp8fs2bNj0KBB+WtmzpwZPXv2zOOnX79+RRo5AFAKSmqNTBYumdatW+d/ZkGTzdIMHjy48JoePXpEt27dYvHixbt8j61bt0ZlZWWNDQCom0omZHbs2BFjx46N73znO3H44Yfn+9auXRuNGjWKVq1a1Xhthw4d8mOft+6mZcuWha1r1657ZfwAwDc4ZLK1Mq+99lrMmTPna73PhAkT8pmd6m3VqlV7bIwAQGkp6hqZapdcckk88MAD8cQTT0SXLl0K+zt27Bjbtm2LioqKGrMy2VVL2bFdady4cb4BAHVfUWdkqqqq8oiZN29e/O1vf4vu3bvXON6nT59o2LBhLFy4sLAvuzx75cqV0b9//yKMGAAoJQ2KfTopuyLp/vvvz+8lU73uJVvb0rRp0/zPUaNGxfjx4/MFwOXl5TFmzJg8YlyxBAAUNWSmTp2a/zlw4MAa+7NLrM8///z88eTJk6NevXr5jfCyK5KGDBkSt99+e1HGCwCUlgbFPrX0ZZo0aRJTpkzJNwCAkrxqCQDgfyVkAIBkCRkAIFlCBgBIlpABAJIlZACAZAkZACBZQgYASJaQAQCSJWQAgGQJGQAgWUIGAEiWkAEAkiVkAIBkCRkAIFlCBgBIlpABAJIlZACAZAkZACBZQgYASJaQAQCSJWQAgGQJGQAgWUIGAEiWkAEAkiVkAIBkCRkAIFlCBgBIlpABAJIlZACAZAkZACBZQgYASJaQAQCSJWQAgGQJGQAgWUIGAEiWkAEAkiVkAIBkCRkAIFlCBgBIlpABAJIlZACAZAkZACBZQgYASJaQAQCSJWQAgGQJGQAgWUIGAEiWkAEAkiVkAIBkCRkAIFlCBgBIlpABAJIlZACAZAkZACBZQgYASJaQAQCSJWQAgGQVNWSeeOKJOOOMM6Jz585RVlYW9913X43jVVVVcc0110SnTp2iadOmMXjw4Fi+fHnRxgsAlJaihszmzZujd+/eMWXKlF0ev+mmm+K2226LadOmxbPPPhvNmjWLIUOGxJYtW/b6WAGA0tOgmN/81FNPzbddyWZjbr311vjlL38ZQ4cOzffddddd0aFDh3zm5kc/+tFeHi0AUGpKdo3M22+/HWvXrs1PJ1Vr2bJl9O3bNxYvXvy5X7d169aorKyssQEAdVPJhkwWMZlsBmZn2fPqY7syadKkPHiqt65du9b6WAGA4ijZkNldEyZMiA0bNhS2VatWFXtIAMA3LWQ6duyY/7lu3boa+7Pn1cd2pXHjxlFeXl5jAwDqppINme7du+fBsnDhwsK+bL1LdvVS//79izo2AKA0FPWqpU2bNsWKFStqLPB9+eWXo3Xr1tGtW7cYO3ZsXH/99XHQQQflYXP11Vfn95w588wzizlsAKBEFDVkXnjhhTjxxBMLz8ePH5//OXLkyJg1a1ZceeWV+b1mfvzjH0dFRUUcf/zxsWDBgmjSpEkRRw0AlIqihszAgQPz+8V8nuxuv9ddd12+AQAks0YGAODLCBkAIFlCBgBIlpABAJIlZACAZAkZACBZQgYASJaQAQCSJWQAgGQJGQAgWUIGAEiWkAEAkiVkAIBkCRkAIFlCBgBIlpABAJIlZACAZAkZACBZQgYASJaQAQCSJWQAgGQJGQAgWUIGAEiWkAEAkiVkAIBkCRkAIFlCBgBIlpABAJIlZACAZAkZACBZQgYASJaQAQCSJWQAgGQJGQAgWUIGAEiWkAEAkiVkAIBkCRkAIFlCBgBIlpABAJIlZACAZAkZACBZQgYASJaQAQCSJWQAgGQJGQAgWUIGAEiWkAEAkiVkAIBkCRkAIFlCBgBIlpABAJIlZACAZAkZACBZQgYASJaQAQCSJWQAgGQJGQAgWUmEzJQpU+Lb3/52NGnSJPr27RvPPfdcsYcEAJSAkg+ZP/3pTzF+/PiYOHFivPjii9G7d+8YMmRIrF+/vthDAwCKrORD5pZbbomLLrooLrjggjj00ENj2rRpsc8++8SMGTOKPTQAoMgaRAnbtm1bLF26NCZMmFDYV69evRg8eHAsXrx4l1+zdevWfKu2YcOG/M/KyspaHesnWz+q1feHFNX2793e4vcb9v7vd/X7V1VVpRsy//nPf+KTTz6JDh061NifPX/zzTd3+TWTJk2Ka6+99jP7u3btWmvjBHat5e8v9qOBOqrlXvr93rhxY7Rs2TLNkNkd2exNtqam2o4dO+KDDz6INm3aRFlZWVHHRu3LCj6L1lWrVkV5ebkfOdQhfr+/WaqqqvKI6dy58xe+rqRDpm3btlG/fv1Yt25djf3Z844dO+7yaxo3bpxvO2vVqlWtjpPSk0WMkIG6ye/3N0fLL5iJSWKxb6NGjaJPnz6xcOHCGjMs2fP+/fsXdWwAQPGV9IxMJjtNNHLkyDjmmGPiuOOOi1tvvTU2b96cX8UEAHyzlXzInH322fHee+/FNddcE2vXro0jjzwyFixY8JkFwJDJTitm9xz69OlFIH1+v9mVsqovu64JAKBElfQaGQCALyJkAIBkCRkAIFlCBgBIlpChTjj//PPzOzd/eluxYkWxhwZ8zd/riy/+7K3wR48enR/LXsM3m5ChzjjllFNizZo1Nbbu3bsXe1jA15B95MicOXPio4/+/wfzbtmyJWbPnh3dunXzs0XIULfuMZF9dMXOW/YRF0C6jj766Dxm7r333sK+7HEWMUcddVRRx0ZpMCMDQEm78MILY+bMmYXnM2bMcHd3CoQMdcYDDzwQzZs3L2xnnXVWsYcE7AHnnntuPPXUU/HOO+/k29NPP53vgyQ+ogC+qhNPPDGmTp1aeN6sWTM/PKgD2rVrF6eddlrMmjUrspvRZ4/btm1b7GFRIoQMdUYWLgceeGCxhwHU0umlSy65JH88ZcoUP2MKhAwASVyVuG3btvyS6yFDhhR7OJQQIQNAycuuQHzjjTcKj6GakAEgCeXl5cUeAiWorCpbOQUAkCCXXwMAyRIyAECyhAwAkCwhAwAkS8gAAMkSMgBAsoQMAJAsIQMAJEvIAHXW+eefH2eeeWaxhwHUIiEDACRLyAB8juwTXD7++GM/HyhhQgaodRs3bowRI0ZEs2bNolOnTjF58uQYOHBgjB07Nj++devWuPzyy2PffffNX9O3b994/PHHC18/a9asaNWqVTz88MPRs2fPaN68eZxyyimxZs2awms++eSTGD9+fP66Nm3axJVXXpmHyM527NgRkyZNiu7du0fTpk2jd+/ecc899xSOZ9+zrKwsHnrooejTp080btw4nnrqKf+GQAkTMkCtywLj6aefjr/+9a/x6KOPxpNPPhkvvvhi4fgll1wSixcvjjlz5sQrr7wSZ511Vh4qy5cvL7zmww8/jN/+9rfxxz/+MZ544olYuXJlHj/Vbr755jx4ZsyYkcfHBx98EPPmzasxjixi7rrrrpg2bVq8/vrrMW7cuDj33HNj0aJFNV7385//PG688cZ44403olevXrX6swG+puzTrwFqS2VlZVXDhg2r5s6dW9hXUVFRtc8++1RdeumlVe+8805V/fr1q959990aX3fSSSdVTZgwIX88c+bMbGqlasWKFYXjU6ZMqerQoUPheadOnapuuummwvPt27dXdenSpWro0KH58y1btuTf85lnnqnxfUaNGlV1zjnn5I8fe+yx/Pvcd999e/znANSOBl83hAC+yL/+9a/Yvn17HHfccYV9LVu2jEMOOSR//Oqrr+anhQ4++OAaX5edbspOEVXbZ5994oADDig8z05RrV+/Pn+8YcOG/DRTdkqqWoMGDeKYY44pnF5asWJFPqtz8skn1/g+27Zti6OOOqrGvuzrgDQIGaCoNm3aFPXr14+lS5fmf+4sWwtTrWHDhjWOZWtZPr0G5su+T+bBBx/M1+LsLFsLs7NsnQ6QBiED1Kr9998/j5Dnn38+unXrVphB+ec//xkDBgzIZ0OyGZlsduWEE07Yre+RzfBkMzTPPvts/p6Z7GqjLI6OPvro/Pmhhx6aB0u2tua73/3uHvwbAsUkZIBa1aJFixg5cmRcccUV0bp162jfvn1MnDgx6tWrl8+qZKeUsiuazjvvvHzBbhY27733XixcuDBfaHvaaad9pe9z6aWX5gt0DzrooOjRo0fccsstUVFRUWMc2eLgbIFvdvXS8ccfnwdVtgi5vLw8HyOQHiED1LosKi6++OI4/fTT82jILo1etWpVNGnSJD8+c+bMuP766+Oyyy6Ld999N9q2bRv9+vXLX/9VZV+brZPJgiSLpAsvvDB+8IMf5LFS7de//nW0a9cuv3opW7uTXaqdzdj84he/qJW/N1D7yrIVv3vh+wAUbN68OV+nks3AjBo1yk8G2G1mZIBa99JLL8Wbb76ZX7mUzZBcd911+f6hQ4f66QNfi5AB9orsZnbLli2LRo0a5XfNzW6Kl51CAvg6nFoCAJLlIwoAgGQJGQAgWUIGAEiWkAEAkiVkAIBkCRkAIFlCBgBIlpABACJV/w9ECFjfoDvi0gAAAABJRU5ErkJggg==" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 44 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T09:17:45.980051Z", + "start_time": "2025-11-14T09:17:45.745417Z" + } + }, + "cell_type": "code", + "source": "sns.countplot(data=student, x ='subject', hue='gender')", + "id": "b61fde51391ed332", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 46 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T09:19:33.641955Z", + "start_time": "2025-11-14T09:19:33.543012Z" + } + }, + "cell_type": "code", + "source": "sns.barplot(data=student, x ='gender', y='Marks', errorbar=None)", + "id": "b53882a33b92e45d", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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HVU7YcKE/PHUqVOzXSu1S5YsKbw+efLk2u7duxee9+zZs3bixImF5x999FHtTjvtVHvyySfnz9evX59/56OPPlrve0aPHl07YsSI/PFDDz2Uf8+dd97Z4L8HoHG0+LIhBPBZXnnllfjoo4/ioIMOKqyrqKiIr371q/njZ555Jj8s1K9fv3rvyw43ZYeI6rRp0yZ23XXXwvPsENXbb7+dP169enV+mCk7JFWnRYsWccABBxQOLy1ZsiTfq3PMMcfU+54NGzbEfvvtV29d9j4gDUIGKKq1a9dG8+bNY9GiRfnPzWVzYerssMMO9V7L5rL85xyYz/uezL333pvPxdlcNhdmc9k8HSANQgZoVH379s0j5J///Gf07t27sAflxRdfjMGDB+d7Q7I9MtnelcMPP3yrviPbw5PtoXnsscfyz8xkZxtlcbT//vvnz/faa688WLK5Nd/4xjca8F8IFJOQARpV+/btY+TIkXHppZdGp06dolu3bnHllVdGs2bN8r0q2SGl7IymM888M5+wm4XNO++8E7Nnz84n2p544olf6HsuuuiifILu7rvvHnvssUdce+21sWrVqnrjyCYHZxN8s7OXDjvssDyosknIHTp0yMcIpEfIAI0ui4rzzjsvvvnNb+bRkJ0avWzZsmjVqlX++tSpU+Oaa66Jiy++ON58883o0qVLHHzwwfn2X1T23myeTBYkWSSdffbZMXz48DxW6vzsZz+Lrl275mcvZXN3slO1sz02P/nJTxrl3w00vrJsxu82+B6AgnXr1uXzVLI9MKNHj/abAbaaPTJAo3vyySfjhRdeyM9cyvaQXH311fn6k08+2W8f+FKEDLBNZBezW7x4cbRs2TK/am52UbzsEBLAl+HQEgCQLLcoAACSJWQAgGQJGQAgWUIGAEiWkAEAkiVkAIBkCRkAIFlCBgCIVP0/ASHSN4NOjAsAAAAASUVORK5CYII=" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 48 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T09:21:05.986583Z", + "start_time": "2025-11-14T09:21:05.903851Z" + } + }, + "cell_type": "code", + "source": "sns.barplot(data=student, x ='gender', y='Marks', errorbar=None, estimator=np.max)\n", + "id": "66c23b323de683f8", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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/p5+/frFE088Ufj+adOmRfv27eORRx6Jgw46KNq0aRMnnXRSLFu2rPCejz76KMaMGZO/r2PHjjF27Ng8RLa0efPmGD9+fPTo0SNatmwZhx12WPzxj38svJ79zLKysnjooYeib9++0bx585g7d67/hUAJEzJAvcsC46mnnoo///nP8eijj8bf/va3eP755wuvX3bZZTFv3ryYMWNG/POf/4wzzjgjD5XXX3+98J73338/fvGLX8Tvf//7ePLJJ2Px4sV5/NT45S9/mQfP7bffnsfHqlWr4t577601jixi7rjjjrj11lvj5ZdfjtGjR8e5554bc+bMqfW+H/7wh3HjjTfGK6+8Er169arX3w2wnbK7XwPUl8rKyuqmTZtWz5w5s7Bv9erV1a1ataq+/PLLq996663qxo0bV7/zzju1vu+EE06oHjduXP546tSp2dRK9aJFiwqvV1RUVHfu3LnwfM8996yeMGFC4fmmTZuqu3btWj1kyJD8+YYNG/Kf+fTTT9f6OSNGjKg+++yz88ePP/54/nPuu+++Hf57AOpHk+0NIYBP8sYbb8SmTZviiCOOKOxr165dHHjggfnjl156KT8sdMABB9T6vuxwU3aIqEarVq3ii1/8YuF5dohq5cqV+eM1a9bkh5myQ1I1mjRpEocffnjh8NKiRYvyWZ0TTzyx1s/ZuHFj9O7du9a+7PuANAgZoKjWrVsXjRs3jgULFuRft5SthanRtGnTWq9la1n+dw3Mp/2czIMPPpivxdlSthZmS9k6HSANQgaoV/vuu28eIc8++2x07969MIPy2muvxTHHHJPPhmQzMtnsytFHH12nn5HN8GQzNM8880z+mZnsbKMsjvr06ZM/P/jgg/NgydbWHHvssTvwXwgUk5AB6lXbtm1j+PDh8f3vfz86dOgQe+yxR1x77bXRqFGjfFYlO6SUndF03nnn5Qt2s7B59913Y/bs2flC21NOOeUz/ZzLL788X6C7//77R8+ePWPixImxevXqWuPIFgdnC3yzs5eOOuqoPKiyRcjl5eX5GIH0CBmg3mVRcfHFF8c3vvGNPBqyU6OXLFkSLVq0yF+fOnVq3HDDDXHllVfGO++8E506dYr+/fvn7/+ssu/N1slkQZJF0oUXXhinn356His1fvrTn8buu++en72Urd3JTtXOZmx+9KMf1cu/G6h/ZdmK353wcwAK1q9fn69TyWZgRowY4TcD1JkZGaDevfDCC/Hqq6/mZy5lMyTXX399vn/IkCF++8B2ETLATpFdzG7hwoXRrFmz/Kq52UXxskNIANvDoSUAIFluUQAAJEvIAADJEjIAQLKEDACQLCEDACRLyAAAyRIyAECyhAwAEKn6fz3ycktyHDseAAAAAElFTkSuQmCC" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 49 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_16.7 Regplot using seaborn_**\n", + "id": "f357ff0e5b8e8d5d" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T09:40:02.765483Z", + "start_time": "2025-11-14T09:40:02.541978Z" + } + }, + "cell_type": "code", + "source": "sns.regplot(data =student, x ='study_hours', y= 'test_score')\n", + "id": "439f5f6a4e555fea", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjIAAAGxCAYAAAB4AFyyAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjcsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvTLEjVAAAAAlwSFlzAAAPYQAAD2EBqD+naQAAeJZJREFUeJzt3Ql80/X9P/B37vS+gBZoOUpBQBAUuRQ8AGXOnz+dOp26qeicc97OHW6/zbnL/fxvunm7qajb2Dwm7jc3T0AQATlERUGg5SrQ0tL7StIc/8frU1LyTZM2SdPmej336GqOpklR8u7nfek8Ho9HiIiIiBKQPtZPgIiIiChSDGSIiIgoYTGQISIiooTFQIaIiIgSFgMZIiIiSlgMZIiIiChhMZAhIiKihMVAhoiIiBKWUZKc2+2Ww4cPS1ZWluh0ulg/HSIiIgoB5vW2tLTIiBEjRK/Xp24ggyCmpKQk1k+DiIiIIlBZWSnFxcWpG8jgJMb7g8jOzo710yEiIqIQNDc3q4MI7/t4ygYy3nQSghgGMkRERImlr7IQFvsSERFRwmIgQ0RERAmLgQwRERElLAYyRERElLAYyBAREVHCYiBDRERECYuBDBERESUsBjJERESUsBjIEBERUcJK+sm+REREFD632yOfH26W+naH5Keb5cQR2aLXx9/yZQYyREREpLGu/Kg8sbpCKmpapdPlEZNBJ+OGZcpNZ46T08qGSDxhaomIiIg0QcyPlm+THVXNkmExyrAsi/q8o6pFXY/b4wkDGSIiIupOJ+EkptXulKJsq1hNBpVOwueibIu02l3qdtwvXjCQISIiIgU1MUgn5aWbe2ydxuXcdJO6HfeLFwxkiIiISEFhL2pizIbA4YHFoJdOt0fdL16w2JeIiIgUdCehsNfhcotVbxB/dpdbTHqdul+8dDUxkCEiIiIFwQi6k1DYW5St16SXPB6PNLZ3yqThWdLU4ZBrlm6Mi64mppaIiIhIwYkKgpFMi0Gqm+3S0elSJy/4jMu4/ozxQ+R/XvssbrqaGMgQERFRN5yo/PorU9XJS7vdKTWtdvUZl3950RRZs/toXHU1MbVEREREPYKZOaUFPWpgwulqmlqcI4OBgQwREVEKcYdYpIvr/IORULqamga5q4mBDBERUYpY18/VA+F0NQ0W1sgQERGlwCnMXzbslztf+li2HWySdIshoiJdb1dTQ3un6mLy5e1qwu2432BhIENERJTE1pUflauf/VB+/q/tUtNsl1Z7p1Q32aW90xV2kS7STTeeUapOZSrr26Wx3SEut1vT1YTTncGcJ8PUEhERUZIvgGxsd4jb4xGTUSf4n63TJYcaOmRkXppkWowhF+ni8Z5as0ccTpcKhNC9hKAl22qSySOyYzJHhoEMERFRki+AzEkzS6u9Q/QIY3Q60RlEnC6P1LbYJcNiCKlI1xsU4fHyMyxSmGWVFrtTmjqcYjbq1UnNYAcxwNQSERFREvrcp1XaZMCUXhFv4ginMga9TuxOl9gc7j6LdANtxTYY9JKbbpZR+WmqcBgnNbHYis1AhoiIKAnV+7RKW016sRj14nR7uot0VWDjEel0ufos0o3nrdgMZIiIiJJQvk+rNIKNoVlWMeh0ans16mW6Tk880mRz9lmkG89bsRnIEBERJaET/VqlUdSL4t40k14FMgg8DHq9TBmRo1YS9Fbf4hsUBRKL+TFeDGSIiIhSZAFkuskghdlWyTAbZVimRX7yX5Plhetm9VmkG4/zY7wYyBAREaXQAsgOh0umjMyWWxeOl5L8dFXXEsr8mL62Yg/2/Bgvncc/tEoyzc3NkpOTI01NTZKdPfiRIhERUTztV6qsb5c3P6uWPbXhrynQrDhwe1Q6KZwVBwPx/s1AhoiIKEWWQa7zmQWDDiQU76LuBSkjnKr0VSsT6vcZzECGA/GIiIhSYBmk228WjLeNGssfi7L1KkWE22eNyZcd1S1BA5VAW7FjiYEMERFRAlsX5JTFuwzSe8oSbBaMRzxi63SL2aCTTw82yaVPrpeaFltE27FjgcW+RERECcodYOIuTkwCLYMMNAsGX7fvaLvsr2+T6iabNHV0yrbDjSrQiWQ7diwwkCEiIkpQn4cxcdd/FgyCGCyOxAJJvU7Xvb7A4xa1gymS7dixwECGiIgoQdWHMXHXdxaM2+NWwQoG4xkNOjULBiEKQiFsyMb1uB3XxnoFQV8YyBARESWo/DAm7vrOgjnUaBNbp1NQw4shLNjBBEa9TvQ6vWahZKxXEPSFgQwREVGCOjHMibveAXkjc9MEsUvXh0csRoPgUMfbneRdKOl0u2O+giCuA5mf/exn6sjK92PixIndt9tsNrn55puloKBAMjMz5ZJLLpEjR47E8ikTERHFDX0EE3e9wUx+hlkV9I7Oz5DSIemSZjJ0b8dGEINgxqjXx3wFQdyfyJx44olSVVXV/bF27dru2+68807517/+JS+//LKsXr1aDh8+LBdffHFMny8REVG8ryFotzvV5WAD7qaOzJFJw7PF4fKI1aQXvV7vsx3bLU4X2rH1GJsb8xUEcT9Hxmg0SlFRUY/rMcnvmWeekWXLlsmCBQvUdUuXLpVJkybJhg0bZM6cOTF4tkRERPFnTmmBapX++ECjeHQiJ5fkqmAlWODhPclBWzUCFRTzYqHkkCxzVxEw3p8Nemm3u1RAFM9zZGIeyOzevVtGjBghVqtV5s6dK/fff7+MGjVKtmzZIp2dnbJo0aLu+yLthNvWr1/PQIaIiEhCm+rb20mO92ubju1Omj02X740ZbhaKDmQKwiSIpCZPXu2PPfcc3LCCSeotNJ9990n8+fPl88++0yqq6vFbDZLbm6u5msKCwvVbcHY7Xb14burgYiIKJWn+gaD23CaMxi7k5IykDnvvPO6//mkk05Sgc3o0aPlpZdekrS0tIgeEyc6CIiIiIiSWai7k+aUFvQamMTb7qSEK/b1hdOXCRMmSHl5uaqbcTgc0tjYqLkPupYC1dR43XPPPaq+xvtRWVk5CM+ciIgofqf6JrO4CmRaW1uloqJChg8fLjNmzBCTySQrVqzovn3nzp1y4MABVUsTjMViUeu+fT+IiIhSeapvMotpaunuu++WCy64QKWT0Fp97733isFgkCuuuEJycnLk+uuvl7vuukvy8/NVQHLrrbeqIIYdS0RElOp8p/pa9YYet8fzELukCWQOHjyogpa6ujoZOnSozJs3T7VW45/hoYceUr3tGISHAt7FixfL448/HsunTEREFFdTfXdUtaiaGN/0kneIHVqn43GIXTTpPP4zjZMMupZwuoN6GaaZiIgoObuWXKomBukknMQgiMEQu766lpLh/TuuamSIiIhoYKf6JpuYD8QjIiKiyJ2WBLNg+oOBDBERUYLTJ/gsmP5gaomIiIjC1lVQ7FAD+WKJgQwRERGFxe50yaHGDqlvc6iAJpaYWiIiIqKQeNu6Gzs6Yx7AeDGQISIioj7ZOl1ytNUuDqdb4gkDGSIiIup1OSW6oZo7OiUeMZAhIiKigNodTjna4hCnO75OYXwxkCEiIiINl9sjda32mHckhYKBDBERUZyndgZz2F2r3amCGAQziYCBDBERURzvUnpidYVU1LRKp8ujtl1jUeRNZ46L+voBl9ujinnbEuAUxhfnyBAREcXxQsgdVc2SYTHKsCyL+oxt17get0dLi61TDja0RxTEIPiJZSs2AxkiIqI4TCfhJAZpnqJsq1hNBpVOwueibIvado3b3f1M/3S63FLV1CG1LeGnkpwut7y4qVLOf3itvPrRIYkVppaIiIjiDGpikE7KSzeLTqeth8Hl3HSTuv3zw80R71hqau9UdTeRnKZ8tL9BHllZLvvr29Xl+9/4Qs45sVCyrSYZbAxkiIiI4gwCDNTEmA2BEycWg16ajs13iWS9AE5gIhlsh6974r0KeW9XreZ6tGfvPtIiM0bny2BjIENERBRn0J2Ewl6Hyy1WvaHH7XaXW0x6nbpfqHDygt1ITREMtkMK6pUtB+XPG/aLrfN4AISzoq+eWiz3nDdJ8jJCfy7RxECGiIgozqDFGt1JKOwtytZr0kvefUeThmep+4Wiw9G1XgABSbg27atXaaSDDR2a6/H9b1swXuaNHyJZMUgpeTGQISIiijMo7EWLNbqTqpvtqiYG6SScxCCIybQY1O36PubJqMF2bXZptYXfjXSk2abSSGt2a7ujctJMcsP8sfKlKUWi96vfiQUGMkRERHEIc2J+/ZWp3XNkUBODdBJOQkKZI9Ni61SppHC7kVA78/KWSvnLhgNi96mjQcx0wUkjZMnpYyQ7LXYnMP4YyBAREcUpBCtzSgvCmuzb6XKrNBLSSeHauLdeHl3VM400eXi23L6wTMYXZkm8YSBDREQUxxC0hNpi3RRhS3V1k00ee69cPiiv01yfl26Sb51RKudMLoyLNFIgDGSIiIgSnN2JYl6H2DtdYaeR/r7pgCzbWKlpx8aBz0XTR8q1p42RTGt8hwrx/eyIiIgoKI/HIw3tnaqlOtxTmA176lQ3UlWTTXP91JHZctvC8TJuaGZC/OQZyBARESUgW6dLapptsv1wizTZHJJjNUtZYUafKaDDjR2qDmbDnvoeaaRvnzlOFk0a1mOacDxjIENERJRAsF8JdTCrd9aolFBlXZt0HutoKinIkCtnlcjJo/K67uvxSPmRNhXopBmNsml/nfx9U6WaGuybRrr4lJFyzdwxaillokm8Z0xERJSi2h1OOdrikE376uTBd3ZJu8Ol9htlG3QqONlT26quv+ucCer+CHQOHG2V9k63dHS6xL8Te1pxjkojjR2SIYmKgQwREVGcU4PtWu1qGzZOWRCgIIgZkmkWnVoUIGIx6tRlFP0+dWxzNrZkY82B71oByLYa5dYFZbJgYmKlkQJhIENERBTHmm2d0uAz2A6pIqSTcBKjOxbEeOFyltUoe462qVoZnNL4lwBbjHopHZopZ0cpiIl1WzYDGSIiojiEdmgMtkNRry/Uu6AmBukkf+hcarO7pKuTWhvCpJkMMizLoq493NCuAqIJRZF3JllMBjWgL83cc6nlYGIgQ0REFGca2x2qrTpQSzW6k1DYi9MWi1GnCXxqWu0q5eTLqNfJ0EyzZFqM6gQGqakWj0cFRJEwGfRq0zUeLx7Ex7MgIiKikAbbocUa3Uko7B2SaRbEOnVtXYGPP7RUF6SbNSsNHC6PmHQ6FRCFw6DXSW66WdXXxFNdjT7WT4CIiCjV4eQFCx4PN9r6nM6LmhS0WKeZ9Or+e+vaewQx6Sa9CjgQ6PgGMaiYwTJJBEIIiEKB75eXbpaSvHS1+TqeghjgiQwREVEMoQamtsWulj2GKj/DLBkWkxxusmuuNxkQ5IxS03kfene3Ot3JsprEbNCpkxgEMelmgwqE+irSRcCC9BFOdYyG+D33YCBDREQpMUQunA3Sg/WckBJCcBHOHJkX1u+Xf3x0qLuLyZv2OWdSody8YJxkmLve2jFLxjswDzUxSCehW8l3YF4wGIyHUxizMX4DGC8GMkRElNTWlR+VJ1ZXSEVNqyqQxanFuGGZctOZ4+S0siExeU5tdqfUtTrE6XaHnHpatbNWvQ58na9ZY/PllrPHSXFeuuZ6BCvTSnK7J/uGssLAik6kDLP6nCgYyBARUVIHMT9avk0Nh1MnDAa9GhC3o6pFXf/rr0wd1GDG6XKrUxgEMqHae7RNHlm5Wz6ubNJcX5RtlZvPHienjSsIWreCoCWUFmt0IhVkmiX92GlOIkm8Z0xERBRi6gYnGAhi8KbvfbO36g1SlK2X6ma7un1OacGgpJkw2K6+1aHan0OBYKcrjXRQs1oAJ0rnTCqS08ryZUiGVc2FifTZG/V6yc0wqeF6iYqBDBERJSXUxCCdhJMY/xMLXM5NN6nbcb+pxTkD9jxQxIvBdh1+8116SyO9u6NGnlqzR3Uy+Zo8PEudsmzeVyfr9xwNuCgyFPpjrz8eu5DCxUCGiIiSEgp7URODdFIgFoNemo5tkh4ICEiaOjqDDrYLpKK2VR5eUS7bDmnTSMNzrPLlKUXy5ufVvS6KPLmPYAZBC9qyMQ8GBcLJgIEMERElJXQnIQ2Dmhikk/zZXW51ooH7DURLNU5hMG03FM0dnSqAeW9XjSaNhK4hnLZcdmqJ/OSfn/e6KHLZxkpV3BusmDfT2tWJhHqYZMJAhoiIkhJarNGdhMJe1MT4plDcnq50z8jcNFWzgnqaaNTJeAfb4SQmFPjeT7+/R17ZckicvhHMsef/oy9PlOE5abKrurWPRZEmdXug/Uko4M3LMInFmDidSOFIrrCMiIjoGAQmaLHOtBhUYW9Hp0sFLAg0dh1plRabUw7Wd8hNf9ki1yzdqDqc+gM1MAcbOkIOYsprWuWbz2+Wv286qAlisBsJzxn7lqqbbJpFkThhCsSMNJPf/iQsdUQQVJRjTdogBhjIEBFR0kJrNVqsJw3Pkna7Uw42dkh1c1dwUJRtkeK8NDX8zduOHUkwg8F0mMxb1dQR0nReDMD7w4rd8u2/bJF9de3d1yNEKcgwy5iCdFUTgzQS0kU4tfFdFBmIw2d/ElJHw7Kt6rQp1pupBwNTS0RElPTBDFqsUUD74+Xb5GBDu3qT1+v1/W7HRmt3XatdM2U3GAQkb31WLX98f2+PUxucwAzNtGjqV3zTRf6LIn3TS55j+5PGDc2UOaX5kpOe+J1I4WAgQ0RESQ+BCYpgkVYammXtDmJ6a8fuba1BuIPtdh1pUacwOPnRPC9d18lQpsUUMF3UcixdpNd1rRZAd1Kg/UmZFqPcsWi85GZEv3A53jGQISKilBBOO3Zvaw2mFOeEPNgOJy/Prt0rr39apQbXeVmNevnSlOHywe4aMRkMfaaLAK3V/vuTzHq9CrC+c1ZZzNYtxBoDGSIiSgmhtmNX1rerTiL/tQbbDzfL91/5RO4MYV4LUk1vfFYlT7+/V5pt2lObMycMlZvOLJUhWRapbGjvNV2EJY9IK/nvTzpQ1yEuj0dNLI6HBZixxECGiIgk1dux0Tbd2N4pE4sy5c3PqjVrDXAbOonyM0whzWvZUdWsZsLsPKJNI43OT5dbF5TJKaOPB0G9pYvSzQZ1u+/3QQ0NljqWDcsakJ9RIoqbrqXf/OY36l+YO+64o/s6m80mN998sxQUFEhmZqZccsklcuTIkZg+TyIiig3UrGw72CSrd9Wqz7gczv2CtWN3dHZ1MyHjNLU4V52QeNca4GQFqSV89p/X4q+pvVN++/ZOuWXZVk0QYzHq5Yb5Y+WPV8/QBDG+6SKcvNgcTqlrd6jPuOw7qRfBTEHG8S4rOi4ufhqbNm2Sp556Sk466STN9Xfeeaf8+9//lpdffllycnLklltukYsvvlg++OCDmD1XIiIafL3VrPjWhvR1P287tvc+tQ6XmsKLchePW+TFjQekxe4Uo0GnRvj7B0u+BbheCHJQA/PsB3vVbBpf+P6ZZoN8dKBRJhZlBUxJedNFCI7wuKiJQTrJexKD4AmnMMmyUiDadJ5QF0AMkNbWVjnllFPk8ccfl1/+8pcyffp0+f3vfy9NTU0ydOhQWbZsmVx66aXqvl988YVMmjRJ1q9fL3PmzAnp8Zubm1UQhMfLzs4e4FdDRETRhuAEM178a1awwwinKwhMEKCEej9AgLJs4wF5ZMVusTsx9t+ihsZhQzWG2iFmGJ6bJukmbS2NzelWJyY/v3CqmqCLuhl0I+2uadXcD1+Pduosq1EFVM3HUkWh7EPywgwYBDDJPMwuGu/fMU8tIXV0/vnny6JFizTXb9myRTo7OzXXT5w4UUaNGqUCGSIiSn4IOHB64q1ZsZoMKkWEz2hbbrW71O1Opzuk+/mesLz1ebUqmC3OS5c0s1FNpEszGcRq0gvmzmE+DIpu/QtwMc+lIMskD7y5U27521ZNEIMAJs2kl9Ih6WqzNE5VkFpCMa/vgLveoA4G03gxlTdVg5iESS39/e9/l48++killvxVV1eL2WyW3NxczfWFhYXqtmDsdrv68I3oiIgoMWGOC1JA3pqVYLNf/vVpVUj3886I8X1c71wYBDVQkGmR6qYOsXW6VaoIM1q8BbgIUkblp8mSpZtV0ORr9ph8Ka9pkUwrAhh9WPuQAKkjbKXGdupUGmjXXzE7kamsrJTbb79d/vrXv4rVao3a495///3qKMr7UVJSErXHJiKi+Jv9gh1EhxrbQ7ofHs/3cdGN5C3m9R6+IJ00LMuqin8RzHgLcHEdQpLlWw9rgpjSIRny0OXT5OIZIwULCsLZh3Q80DJLSV7XKQ6DmAQJZJA6qqmpUfUxRqNRfaxevVoefvhh9c84eXE4HNLY2Kj5OnQtFRUVBX3ce+65R+XTvB8ImIiIKPFnvwTinf0yMjc9pPvh8SBXpX1EpXsClYoaDXrJSzPJTWeNk5vPGqe6iNCJdPjYEkfIMBvklrPHyVPfmCHTinPD2ofklWk1SklemqqFSeVZMAmZWlq4cKFs27ZNc92SJUtUHcwPfvADdZJiMplkxYoVqu0adu7cKQcOHJC5c+cGfVyLxaI+iIgoNWa/YCHkBScNl1e3Huzzfni8dodTnXwU56f3Ooxu7JAMNZn3+XX7pM3h0jyvxScWyg3zS1UA4hXKPiTvgLtUL+RNikAmKytLpkyZorkuIyNDzYzxXn/99dfLXXfdJfn5+api+dZbb1VBTKgdS0RElNi8s1/QjYTZL6h1QZoIJyyNx7qRcLvRqO/zfjfOL5WjbXZpPdYi3dswOtSrVDXZ5PH3KjTPp2xopty2sEymjMzp+Vx1uj4H3H1jzihVxMtZMEk2RyaYhx56SC32wokMCngXL16s2rSJiCg5BVrU6D/7BfuQkMLBCYvvHJne7nft3DFSUpDeHcQE212k93TVrCAQ8YWC3+tOHyMXTBvR6zyXQI+JdBI2U3/rjFI5Z3Iha2CSbY7MQOMcGSKixAhYNuyp63WYXW/bqIM9do7VJMOyLGJzalNDmvt7PLKzqlX+89lhWbGjRs2K8XXelCL55vyx3R1OIb0+j+fYgLtOGZFjlTmlBWIyxnziSVK+fzOQISKiQRVo+m5BpllqWuyqe6ivYXahQn1LQ1vfW6o/rmyUh1fsln117Zrrxw/LlNsXjpfJIyIbpppuNqo6GDMDmAENZOI6tURERMkl0PRdu8slX1S3qCBmVH66GmIH2FCNwl3UvCDwwalGKJ09Dqdbjrba1eqB3tS22OXJ1RWyamet5npM471+3lg5f+rwiNYCIHDBXiQU9NLAYyBDREQxmdLb3Vnk7NowjUsIQFCP4r0t0DC7YLzdSY0dnQFbqr06XW75x5aD8sKG/WpOjBe+45enDpdvzhsrOemmsF8fgp68DAy0C/9rKXIMZIiIKKZTep1uBBM6MRhE7Nhl1OnWnGag+6jJZ5hdIDh9QRCE05jefLS/QR5eWS4H6rVppBOKsuS2BWUyaXj4aSS8FrRzq9k0nAUz6BjIEBFRTKf0GvWY+6KGragt1F2BjSHoMDv/Ux48bnNHZ6/fu6bZJk+s3iOrd2nTSFgH8M35pfLlqUXd26bDgYF2eF4YoEexwUCGiIgGfUov6l+8rGa9GgzX4XCqEw0ENsGG2flqszulrtVxLPAJnkZ6efNB+cuHPdNIaKVGS3V2WvipIA60ix8MZIiIKKZTejEBF5NwD9Q7u6fg4qTFf+idN22DBY91bQ4VyPRm0756eWRluRxs6NBcP3l4lty2cLxMKMwK+zWwkDf+MJAhIqKYT+lttbvUvJehWRZ1ytJscwYcetfU3ikN7b23VFcjjfRehby/+6jmetSw3DB/rCyeEn4aCadEeRkmNa2X4gsDGSIiGjR9TelFi3WgoXd2J4p5HWLvpaUahb4vbq6UZR8eUEXDXjjI+e9pI2TJ6WPCDkQQ8CDg4lbq+MVAhoiIBj2Y8Q9YJhVlyY7qFnm//Ki6PL9siApgUCNT3+ZQw+16a6n+cG+dPLqyQg41atNI44ZmyPcWnxB2GglpLxQC56abI5olQ4OHgQwREQ06BCnemTAYkrfk+U09VhOgELdsWJYq2A2mqqlDHltVIesq6rSPrxM1WK+53SF/en+vWuaIPUihwBwbzIMxsRMpIXBFARERxdekX6dL6ts6Jc2sVwsYAwUgSDH9fVOl/G1TZY/ZMRajXoZlWsRi0qvAqPnY5ulgj+XbiYTn4J0sTLHFFQVERJRwk36xpgCnNQWZJlUTgy3S00pyNcW56yvq5NFV5VLVZNM8XtdEYJGibIvqhAKLsasjKthjAU5esOsJu5Eo8fBPjYiIYj7pF5BCQnDje7KC27GReuGkYSpweWxVuWzYU695HCxmvHDaCHn9k0OSbjF1BzFeuIwi38q6NrWRekJRZncnUm6GiSsFEhwDGSIiigkU+iItlGUVNSQPk32hvdMl9ehQcroEcc1jK3fLc+v2qSWPTp9AB3Uwl5xSLFfPHS3bq5rltY9xuhK4MNds0EmLxyNNNgdXCiQZBjJERBQT6SaDYIgvJu7i9MUbxBxpsnXPiUFY0upwSbNd23Y9vSRHbl0wXsYOyVCXc6xm1caNmhikk/w5UESs08nw7DQpyUvjSoEkwkCGiIgGFepg6lrtasBcSX6G7KltVXUsgJMYBDEoY+mu4fXpusaJy/cXnyALJg7TLJ4sK8yQkoLjj+WbXsKk4BabU030nTe+q62bkge3XBER0aDBPJjK+nZV4IuiW7RFo6MIxbgINrDFGtmjQEuss6xGybEapSQvQxPEgP9j2ZxuFRBhajA6oHLSjHLz2WUMYpIQAxkiIhpwqHfBsDqcxPiuF0A7NNqikSLCWgLEL54AKajR+elSmGURJJhQ5xKI97FKh2aKzeGUho5OcXS6ZPKIbDVN2LvmgJILU0tERDRgMI23ob2z18m8BZkWlUpqd2jrYIx6nQzNtKilkTiBwSkL6lxQDxPMKaPz5cwJw1TQ1NjRqVlzQMmJgQwREQ2IDgf2I9mDTubF7X/esF9e2XJQ040EeekmKUg3dwcgXXUuneq0BfUwgWRajSpwMRr0MiTLMgCviOIRAxkiIop+MW+bXVptzoC342Rm9a5aeeK9PVLbatfcNqEwUxrbHar7yOH2iFnX1XGEIAb1L6iD8R9oh4m8mCVjMXIibypiIENERFGDIl7UwSCYCWRfXZs8srJcth5o1Fw/LMsi3zl7nFoW+XFlo5rCiwF2mP2CdBJOYvz3JZmNehXAcCJvamMgQ0RE/eZ0uaWuzSFt9sCnMO0Opzy/br+8uvWQJshBO/Vlp5bIVbNHde84QrCCVQKYwovCXtTEIJ3kPYnhRF7yxUCGiIj6BUsZvfNfAqWRVn5RI0+u3qMCHV+zxubLLWePk+K89B5fh6DFu0rA97qcNJP6YPEueTGQISKiiGC9AIp5MfslkL1H2+ThFbvlk4NNmuuxIPLms8fJaeMKesyDCQa7kpBGMrD7iPwwkCEiorDglAXt1GirDtRSjTqZ59ftk+VbD6nhdr5ppCtmjpIrZpWI5VgaqS+of0EAg3oYokAYyBARUchw+oJTGJzG+ENQ886OGnlqdYUKcnzNKc1Xk3VH5qaF9H1MaKHOtKiOJKLeMJAhIqI+ud0eta26uUMboHhV1LaqNNK2Q82a64fnWOWWs8tk7riCkH7KSB3lppsl22oMOe1EqY2BDBER9QqdSHWtDnG6e57CYFbM0nX75J8fa9NISAWhXfprM0eFnBbKTjNJXjrrYCg8DGSIiCjslmp0KL39+RH50/t7eqSRTh9XoGbCDM8JLY2EtuuCTA60o8gwkCEiooDFvI3tnQFbqncfaZE/rCiX7VXaNBLqX25dUKbaqkN6A9LrJT/TLJkWvhVR5PhvDxERhVTMizUBz67dJ//69LAmjWQx6uXrc0bJV2eUhJRGwjyY3PSueTCsg6H+YiBDRERq2m59m0MFK/5wKvPmZ9Xyp/f3qpMaX2eMHyI3nTVOCrOtff4UEbRkWY2sg6GoYiBDRJTiELwgiAm0H2mXSiPtlh1VLZrri/O60kgzx4SWRkL6KC/DrNqqiaKJgQwRUYpC+ghbqjscPSfz4uTl2bV75fVPq8Q3vLGqNNJouXRGcUhpJMyBQSeSd4/SQLaHf364WbWI56eb5cQR2VxjkCIiDmQcDofs3btXxo0bJ0Yj4yEiokQq5kUhb2NHz8m8OJV547Nqefr9PdJs03YrnTVhqEojDc2y9Pk9EOQUZAzOQLt15UflidUVUlHTKp0uj5ogPG5Yptx05jg5rWzIgH9/iq2wI5D29na59dZb5fnnn1eXd+3aJaWlpeq6kSNHyg9/+MOBeJ5ERBQFOH1BMW+nq2cx746qZnl4RbnsPKJNI43OT1dppFNG54XUiZSXYVK7kQYDgpgfLd+m1iLg5Mds0IvD5VapMFz/669MZTCT5MJOVt5zzz3yySefyHvvvSdW6/HirkWLFsmLL74Y7edHRERRgJOWmhabVDV19Ahimto75bdv75Rblm3VBDFpJoPceEap/PHqGX0GMehEQiBRkp82aEEM0kk4iUEQg0WUSF9hKzY+F2VbpNXuUrfjfpS8wj6Ree2111TAMmfOHE3b3IknnigVFRXRfn5ERDRAxby4jBqYZz/YKy1+aaSFE4fJjWeWqn1Hfcm0GlVdinGQC3lRE4N0EgIo/zZu3bEWb9yO+00tzhnU50ZxHMjU1tbKsGHDelzf1tbGeQBERHEEJy9IIwUq5t1+uFl1I+2uadVcP3ZIhty2oEymleTG/UReFPaiJgbppEAsBr00HdsRRckr7EDm1FNPlX//+9+qJga8UfDTTz8tc+fOjf4zJCKiiCbzYnWAfzFvQ7tD/rRmr7z5ebXm+nSzQa49bYxcNH1EnycraKFGK3WsJ/LiFAiFvaiJsep7BlN2l1tMep26HyWvsP8t/PWvfy3nnXeebN++XZxOp/zhD39Q/7xu3TpZvXr1wDxLIiLq12RepJH++fFhWbpur7TZtSc050wuVLUw+RnmuJ3IG6i9Gh/oTkJhb1G2XvOcvJ1Zk4ZnqftR8go7kJk3b54q9r3//vtl6tSp8vbbb8spp5wi69evV5eJiGjw4Y2+Lshk3m0Hm+ThlbulorZNc33p0K400knFuXE9kbe39mp8oDuputmugiykk3ASgyAm02JQt6MAmJKXzuN/7tiLzs5OufHGG+UnP/mJjB07VhJBc3Oz5OTkSFNTk2RnMyonotQp5sV1T63ZI+9sP6K5PsNikCWnjZULp4/oMzBJNxvVSU0ow+8GKoi5Z/k21VmF9FdXZ5JIY7tTBSpor4buQMftUekkzpFJfKG+f4cVyAAe9OOPP2YgQ0QUB2kknMLYO7WpIgQ0y7cekufX7ZM2v0LfxScWyg3z+04jDeZAu95OmS58bK18Ud1yrNZHJ8geobh4SKZZtVcjdfT8klnq/pzsm5qBTNippYsuuki1YN955539fY5ERBQBBCpYLdDq1zINnxxsVEPt9h7VppHKhmbKbQvLZMrInD4H2uVmmCQ7hFkwA70WYNnGA7IdO548HlWAjCAG8QwCuMONNjVh2Le9mi3WqSnsQGb8+PHy85//XD744AOZMWOGZGRkaG6/7bbbovn8iIjIh+pGanOojdS+UOD71Oo9suKLGs316Cy6ft4Y+a+Tek8joQ4GRby5aaaQgpGBXguAIOnvGw+o12k26FShcdfzFNEZRJwuFPM6VOqL7dWpLezUUm+1MfgPYc+ePRJPWCNDRMmcRnK63CqN9Ny6/dLhd9t5U4rkhvljJbeP9mMEO0g1hTrQLthaALR7e+tW+hvMoEB5yXMbVdEuAjBvIOOFAMfldkteukWevXYmT2OS0ICllrAokoiIBgdOJnDi0NzRsxtp64EGeXhlueyva9dcP6EwU25fOF4mDe+9wcGCgXYZ4W2m9l8L4G15xhwXtECjewi3zykt6FeaSZ2yeFAPoxebE/Ngjs8t64JARmRYtoXt1SmuX2XoOMwJ80BH44knnpCTTjpJRVr4wEC9N954o/t2m80mN998sxQUFEhmZqZccsklcuSItvqeiChZtdmdcrCho0cQU9til1+8vl2++/KnmiAGLdJ3Lhovj115Sq9BDOpgUF8yMjctrCAm3LUA4UKQhJOY1btqpb7VoQqO8XgGnU51I7mPvefgM1JLCJSumDWK7dUpLqKxjC+88IL8v//3/2T37t3q8oQJE+R73/uefOMb3wjrcYqLi+U3v/mNqrvBv5zYqH3hhRfK1q1b1e4mFBRjivDLL7+sjpduueUWufjii1V9DhFRskK6CGkkBDL+Kwf+seWgvLBhv9g6jw+8Qzjx5anD5ZvzxkpOevAiXRVooA4mPfKBdgO1FsC/5gbd3h1Ot3pvGJFrVTVAdnW5q04GQczEoiy5ctaoiF4HpXAg8+CDD6o5MggqTj/9dHXd2rVr5dvf/rYcPXo0rG6mCy64QHP5V7/6lTql2bBhgwpynnnmGVm2bJksWLBA3b506VKZNGmSuh1LK4mIUqWYd/O+enlkZblUNnRorsebObqRJhb1nkbKOFYHg/UC8bYWIFjNTVuzXdpV+7hDCrOtKohBHRB2R+WkGeWe8ybxNIbCD2QeeeQRFWxcffXV3df993//tzpB+dnPfhZxW7bL5VInL1g+iRTTli1b1AC+RYsWdd9n4sSJMmrUKDVFOFggY7fb1YdvsRARUbyzO7FaoGcxb02zTR5fXSFrdh3VXJ9tNap5MOdNLepRCOsLgQs2WEdrHky01wL0VnMzKj9NDtR3qBMYBC/eYXdos45WdxSlYCBTVVUlp512Wo/rcR1uC9e2bdtU4IJ6GNTBLF++XCZPnqyG7pnNZsnN1Y7OLiwslOpq7bIzX1idcN9994X9PIiIYgFv5FjkiJMYX9iV9MqWg/IXpJF89ibhbf6CaSPkutPHSHZa72mkvAHYi4SUTjTXAvRVc4Ni3jZbp3xv8UTJzzQPyLwaSmxhnzGWlZXJSy+91OP6F198UdW6hOuEE05QQcuHH34oN910k1xzzTVqCWWk7rnnHtWq5f2orKyM+LGIiAajmNc/iNm0r16++cJmeXrtXk0QM3l4ljzx9VPkjkXjew1iMq1GKclLU23XA7HcESchaLHGyUu73Sk1rXb1GZfDbb0OpebG6REVxJw5Yag6jWEQQ/06kcFpx+WXXy5r1qzprpFB8e2KFSsCBjh9wakLgiPAgL1Nmzapjdr4Hg6HQxobGzWnMuhaKioqCvp4FotFfRARJVoxbzXSSKsqZG25No2EAt0bzihV6wV6SyNF0k4dKQQraLHu72Tfgai5odQSdiCDFmicnjz00ENqVQGgAHfjxo1y8skn9/sJud1uVeOCoMZkMqkACd8Tdu7cKQcOHFCpKCKiZCnmRRrpxc2VsuzDA6ozxwsxwYXTR8qS08aoU5be2qlxYoHBdoMJQUt/1wJEu+aGUk9E/9YjyPjLX/7S72+ONNB5552nCnhbWlpUh9J7770nb731lmq3vv766+Wuu+6S/Px8NWfm1ltvVUEMO5aIKFmKeTfsqZNHV5Wr3UG+pozIltsWjpeyYZlBHxOnM7kDUAczmKJdc0OpJ+xA5j//+Y8YDAZZvHix5noEHzhNQWASqpqaGtX9hCJhBC4YjofHOeecc9TtOPXR6/XqRAanNPiejz/+eLhPmYgo7ibzVjV1yGOrKmRdRZ3mehTo3nhGqZwzubDX4AQ1MiiQ7W1/UqLw1tx458hgDg3SSTiJYXcSRX3XEoINDLH78pe/rLn+zTfflB/84AfyySefSDzhriUiitnfP7auNBK2VXvhRObvmyrlb5sqVUrJC/HIV04eKdcgjdRLighLEjEPBlNvk81Ab9OmxDJgu5YwzRft0f4w46W8vDz8Z0pElIRppLpWh1r06IXfGXH68vh7FVLVpE0jjR2SIV+fNVrOnDgkaDEv5sEUZJpVIJOsolFzQ6kn7P8iEB1hw/WYMWM01yOIycjIiOZzIyJKKAhW6tsc0mxzavbQHWrokMfeK5cNe+o190e3TppRLw1tdnlqTbn85/MquXJWiZw8Kq/7Pkgd5aaZJTvNmLB1MEQDKeyzSexCuuOOO6SiokITxHz3u99VE36JiFJRu+P4TBhvEIMTmWc/2CvXPb9JE8QgW4Ii1gyzQfIyLMcm7xplT22rPPjOLrXVGkELiniL89LV/iQGMURRqpFBrupLX/qSbN68We1DgoMHD8r8+fPl1Vdf7TGJN9ZYI0NEAwl1LjiFQSDjhb9W15YjjVQuR5qPr0yB6SU54nB6VLHvkEyz6NSs3mNfJx7V2TShMEteuG6WmgszGFibQilVI4MHXbdunbzzzjuqsDctLU0VAJ9xxhn9fc5ERAm3WsA/jVRZ3y6PrSqXjfsaNPdH0IIOnBE5aXLv/30m2VaTJogBvU4veRlm9Ri7jrQOSr2I/9ZppLsw14XdQpQoIqoawxHnueeeqz4A03eJiFK5Gwlbmf+6Yb+8vOWgCgh8a1y+OqNYvjFntFrciPUDWH6YbfAJYnRdQ+1wX6NbJy02p+rcGWjBtk5jOB2uD3fdAFFC1Mj87//+r9qr5HXZZZdJQUGBjBw5Mu5ar4mIot2NdKixQ4622LuDGJzGrNlVK0uWbpJlGys1QcyMUbnyzNWnyrfOKO3ePp1jNasZKep+uq5ABwGEdx7MYI3k9986jbUG6BrC56Jsi7TaXep23I8oqQKZJ598UkpKStQ/I72EjzfeeEMNwvve9743EM+RiCim8GZ+tNWuuo98J/MeqGuX77/yqfzsX9ulpuV4LcywLIvce8FkeeDSk2RUQbrmscoKM6SkIEOlpIw4gTEcH8vvHcmP1M5Aj+Tva+s0JuzidtzP+zPYdrBJVu+qVZ8Z4FDCppaqq6u7A5nXX39dncggxYR27NmzZw/EcyQiihmcWNS3OsTpPj68rsPhkj9v2C+vbDkoTp8TCwQml51aLFchjRSkUNdiNMjNZ42Tn7+O4McRs5H8oWydxoRd3I91NJRUgUxeXp5UVlaqYAbTfH/5y192/ybhcml3iBARJQr/zp2yYRnS0N7ZY6jdeztrVcoF3UW+Zo7Jk1vOLpOSfO0JjOaUI82kAhfcBymcWI7kD3XrNAqPn35/D+toKHkCmYsvvliuvPJKGT9+vNTV1XXvVtq6dauUlZUNxHMkIhpQvicOaKdGvQqCjSt8htPtPdomj6wsl48rtc0NhdkWufmsMjm9rCDorBesHMBaAaSRvBCszCktiNlI/lC2Tk8sypI3P6vqrqPx3geBD74GSx7xc8Pr4CoBSphABosckUbCqcwDDzwgmZldm1mx+PE73/nOQDxHIqJB6dxBS3SG2ahOKSqODaf7zlnj5OPKJnl16yFNlxJOM742s0SumDVKna4EgjkwBRnmoLfHciR/KFunvzSlSB5fVR5SHQ1XC1DCDMQL1fnnny9PP/20DB8+XGKJA/GIqLd00jVLN8r2w01SkGHR3uZxS1WTXQU1vp1IMHtsvkojjcxLC/i4ONHBCUyW1RT3P3xN/cuxFJd3jgwu3/3SJ6p4OdCJC35+Na12+e1Xp8mZE4bG5PlT8hqwgXihWrNmjXR0dAzUwxMR9dunB5tkV3WLZFpMPdqs0YXU0Xm8wBeG51jl5rPHydzS4Gmk7DSTShMlSqqltxQXupNCqaMZ6FZxot4k7xpVIqJeYCfSrpoW9SadZe36qxCpo7o2hzR2dGrui26kq2aPUqmkYGsDcD2m96IrKdEES3GFUkeDAuWBbhUn6g0DGSJKKehCwkwYFPVmW0zqRAH/jI9av2m9YDbo5Cfnnyinjy8I+HiYyJuXYUqINNJA1NEMRqs4UW8YyBBRSnC6upY7oqjXdzhdQZZF7TXyD2CQUrEY9XJCUbbMLcvv8Xje7dRoqU7mN3KknrCqIJat4kS9YSBDREkNKRCkkXCC4PbpbWi1OeXZD/bKF1Ut4hvC6I7VuejEIxkWo1w5q0T0fvUwgdqpk1msW8WJesNAhogSdmhdX2+mmMCLNFKn63jRLoKZtz4/In9as6dHLYwFpzBmg/pcUpCpghjvHJlQ2qmTWSxbxYmiGsigG+m0004To1H7pU6nU9atWydnnHGGuvyjH/1I8vN7HscSEUUinDH5gdJIsOtIizy8Yrdsr2rRXF+cl6a6kfLSLNJkc6jFjkg7eU9ikrkOhijl5sgYDAY1/G7YsGGa6zHlF9fF25oCzpEhSq6hdRjOhv1A6DZqOFZwihoOBDPB0kjNHZ3y7Af75F+fHNakkaxGvXx9zmi5dEaxmI36lK2DIUqpOTL4iyLQ/AQEMhkZGeE/UyKiPtJJOInpa0z+ScU5KrDxTyO9sa1anl67VwU4vs6YMESd5hRmWwN+3zQz0kiWgAEOEcUPYzg7lgB/iVx77bVisRyfgolTmE8//VSlnIiIomnboSbZUdWsTmFsnW6xmo7PM+k6MTGqoXZrd9fJhKKulSmws7pF/rBit3xR3dJjN9Jd50yQmWMCp76RRirINKtCXyKKfyH/l4rjHe+JTFZWlqSlHR/NbTabZc6cOXLDDTcMzLMkopQs6l1bflRe3lKp6l1Qr6LT2VVL9NAsq2SYDeLCCbGIONxuVdsCOHl5Zu1e+fenVZo0EiA7ZHM45aXNB9WQO99CXm8aKS/dFHRqLxElcCCzdOlS9RkLI++++26mkYhoQIt6sf8IqSKUuiAg0es8otfp1dqAg/XtUphjlXSTQRwo/NXpJMtsUjUwCGKabdoiXzDouh6nzeFSLddYCImTGQQzTCMRpVCxL/Yn4UvS09PV5f3798vy5ctl8uTJcu6550q8YbEvUeIV9bbYOqXD4Ra7yyUGnU51KeEvKgxiw6kKlhmiUHdEbppaKYA6F9TDYLCdL92xD6NRJ/gf/u5yuj3qVAerBMoKM+XZa2aquTHJ0G5OlEwGrNj3wgsvVPUy3/72t6WxsVFmzZqlUktHjx6VBx98UG666ab+PnciSvGi3tw0szTb2lW9ClJKHo9bBS9qO7NBJ5hDZ3diO7VNBTj+dTB4q0c3U7vDpd748T91va7ra1EQjO6nQ/Xtsr+uPS7no4TTbk6UysIux//oo49k/vz56p9feeUVKSoqUqcyL7zwgjz88MMD8RyJKAXg5AFv2ggwUPuCs2KEHzhFQTDibR5CwON0ibg8Ih2dLhWs+JpekiPZVqNkHlsE6V/ugofBY5sMenF6RJ12xOvJFIqcUXQ8LMuiPmN5I67H7UQUYSDT3t6uin3h7bffVqczer1eFfsioCEiigQCCpw8oDsJJzGoaEG6yJv7RjCDOhcEKYZj6RXf9Uhjh2TIQ5dNk2+fUaZSRyoQQl2MR5tmwpV4LARLSFUhZRPP7eaYIozni89F2RZptbvU7bgfEUUQyJSVlclrr70mlZWV8tZbb3XXxdTU1PSawyIi6g0CCqRP7E6XGA3YOq1X9SzeMj68ceO9u6HDqa73Sjcb5KsziuWG+WMlzWSUcUMzpKQgQ6WecOrS9YZ/fP4VvhaPjfUFSNWg7iReT6b8u6dwGRuocTvuR0QR1Mj89Kc/lSuvvFLuvPNOWbBggcydO7f7dObkk0/mz5SIIoKAYsyQDJU+GZJpkvxMixxpsqlTGp2uK4jxd+roPDXhd/XOGnl3xxF1woIgZuboPKlu6hCX2y0OJ1YWID3lVic8qLkx6PWSZTWqepN4K571PZkKxGLQqw3U8ZgSI0qIE5lLL71UDhw4IJs3b1YnMl4LFy6Uhx56KNrPj4hSgMPplpoWu1xyykhJN+vlaGvX3BhvN5F/EDMix6p2I1U1dUhlfbukmY1qmSM+76ltlde3VcnVc0bLtJI8yU03q2AFJzPqMa1GmVaS073WIF5PphCgBWJ3ueMyJUYUKxGNrkSBb2trq7zzzjtqSSSG482cOZNDpIgoLAguGtodau4LUkiY6YLZLs+v36+m9dqc2jfzNJNBrp83Ri6YNkJ+tPwzVeg7JNPc3ZWEqb8YlFfT6pC1FXWy9JqZsqO6Repa7WomTW6GSYZkWAa9jTmcNmrchpQXTqawgsE3vYSfEfZITRqeFXcpMaKECWSwU+myyy6TVatWqf/Adu/eLaWlpXL99ddLXl6e/O53vxuYZ0pESQWzYhraOsXpPh6suNweqahtk/Ka1h5BzOITC+VbZ5Sq2pFd1a1SWdcm2VZTVxCjE1UAjJkzvnUkCGJi3Vodbhs1Ahzchu4k7JHCa0E6CScxCGLQVh6PKTGihEktoTbGZDKp9JJ3KB5cfvnl8uabb0b7+RFRkkEx7+HGDqltsWuCmE8qG+Vbf94ij79XoWmpLhuWKY9cMV1+8KWJKogBrCPwzpTBG7q308l7eoE3/s44qCOJtI0aAQ5SXzh5abc7pabVrj7jcrymxIgS5kQGRb2ojSkuLtZcP378eLZfE1FQOG3BziScxPg62mqXJ1fvkZVf1GiuRzHudaePlf86aXh3u7VXjrWrjsQ7D8YXGrabbZ0qnVPf6uiqjYnB6UWoW7vnlBYEfH4IVnAbJ/sSRTmQaWtr05zEeNXX12s2YhMRees6mjucqhYGXUNeTpdb/vHRIXlh/X412M4Lb+nnTS2SG+aVSk56z9UBCAhOHZMnEwqz5IvqVrUnyRskIGioabapx0Pw88CbO+TVrQdjMg0XW7ux06l7a7dZr5kw7NtGHSz9hQAn1qkxoqRLLWGqL6b4euE/SLfbLQ888ICcffbZ0X5+RJTAMKvlYEOH1LXZNUHMRwca5IYXtshTa/ZogpgTCrPk0StPlrvPPSFgEIOgZWRumgzJssh3zipT9SI42cBj4BQGHUxISyGIGZGTJplWU0ym4eJ7/Xj5NvW6jzTbZH99m+w72q4CLa94SX8RpdyJDAIWtFqj/drhcMj3v/99+fzzz9WJzAcffDAwz5KIEgp2GSGN1Obzxg2oi3nivQp5b1et5nq0RH9z/lg5b0rPNBKg/iU/0yyZFmOPOhJvIW1ta1ewhAF5w7Kt3fcNJY0zEHUxje1dLeQYUoyTGFunSw41dMjIvDT13NhGTRSjQAbTe3fs2CFPPPGEWlWANmysKbj55puls1Ob+yai1Esjoc25qaOzeyKvN7B5ZctB+fOG/SrN4oWQAjUw180bKzkBNlDjxBdBDop8e6sj+efHh+UXr3+uCmnxOL4ty6GmcaJdF4OTo/317dLRibkvIkaDTg3mQzCHWTlsoyaKUSAzduxYqaqqkh//+Mc92rJRAOxyaRe4EVFqwJs3imt9O5Fg8756eWRluVQ2dGiuRwfObQvGywlFXbvb/GG3UEGmWSxGgwoQth1sCjiHBZ9xWoNpvaod239L5CBOw/VdL4AddEOzrOoUBikko14neMq2TqccarRJjtUoi08skvfLj/Y5W4aIohjI+P6W5QsnM1arNdyHI6IEh5QJ0kj47Au1IUgjrdmtrU3BiQn2In1pSpFKvQRKI+VlmCTLagp5DovvNFx0BfkbrDSO/3oBpJCQSqptsandT/jrE1OK8TPASdPjq8pDmi1DRFEIZO666y71Gb/tYN+Sb+cSTmE+/PBDmT59eqgPR0QJDl1HeONutTl7rBt4eUul/HXDAc1QOxw2XHDSCFly+pju1QN9pZG89SY47cH1CBAQrHgLeL0zVeJlGm6ggArBTIY5Q6XU2hxOVTeEn1FVk63X10REUQ5ktm7d2v2XwrZt28RsPv6bDf552rRpcvfdd4f6cESUoLyBQaNfHQxs3Fsvj64qV51KvhBA3LagTMYXBk4jpZuNkp9hFrNRH/EclniYhhssoMJnrE9oaHer54CaoUhmyxBRPwIZrCSAJUuWyB/+8AdV9EtEqQWnCUgj4Y3YV3WTTR5bVS4fVNRprs9LN6m1AudMLgyYRsIwO9TBIJDprd7Ev+4lUAGvfxcTamKQTsJJzGClbPoKqBCo4TQm1NdERANQI7N06dJwv4SIEhzefBHAtDt6ppH+vumALNtYqf7ZC4cJF00fKdeeNkYyrT3/mtEfe9P27zDqrd4klALeeJiG21tAddq4Anl27b6wXhMRDcD2ayJKze3UvtZX1Kk0Emo9fE0dmS23LRwv44ZmBnxMBDYIMIxB3sy9Ii3g7e803HA2VQf7GgRTgQIqXP7z+v0xL0omSiYMZIgoIEzKbWhzqB1JvrDw8bFVFbJ+jzaNhBqXG88olUWThgU8ZUFaZUimRbVVhyIWBbzhbqoO92vipSiZKKVXFBBRclMTaBs75GiLXRPE2Dtd8twH+2TJc5s0QQwOKy6dMVKeXzJT1cL4BzFIIxVkWqQ4Lz3kIMa33sR3DQFOPvAZl6NdwBvJpupwv2awXxNRKohpIHP//ffLzJkz1YTgYcOGyUUXXSQ7d+7U3Mdms6mpwQUFBZKZmSmXXHKJHDlyJGbPmShZIWipabGpExcELb4nBR+UH5Ulz22WFzbsV6cOXtOKc+RPV5+q9h7hDTxQGqkkPz3g1N5w6k1wStGOhZCtdvUZl6PZpuzfIYWAC8EEPhdlW6TV7lK34379+ZrBfE1EqSKmqaXVq1erIAXBjNPplB/96Edy7rnnyvbt2yUjI0Pd584775R///vf8vLLL0tOTo7ccsstaiUC9zoRRQ9WCmA3kH8aCVNpUQfz4d56zfUFGWb59pmlsmBi4DQSupFqmu1qmm9+ur1fBbeDUcAbbodUpF8zmK+JKFXENJB58803NZefe+45dTKzZcsWOeOMM6SpqUmeeeYZWbZsmSxYsKC7a2rSpEmyYcMGmTNnToyeOdHAiaTYtD9ppLo2h+YExnv9Xz88IC9trtScwGCh4yWnjJSr544O2DKNqby7j7TIc+v3SfmRFrVnCE99VEGG3H3uBJk3fmhEz7O/Bbx9iaRDKpKvGczXRJQq4qrYF4EL5Ofnq88IaLCIctGiRd33mThxoowaNUrWr18fMJCx2+3qw6u5uXlQnjtRrIpNI4GTF7RTt9i0i16RRsLun8dXVUhNy/H/jmB6Sa7ctrBMxhR0nZb2OIFIM8n2w03yi39vV4+NBYmYN4Om7E8PNso3X9gs3z1ngtxwxjiJtyAxkg6peFmLQJTq4iaQcbvdcscdd8jpp58uU6ZMUddVV1erqcG5ubma+xYWFqrbgtXd3HfffYPynImiKdRx/NFII6Ebye3XTn2gvl0eXVkum/c3aK4fkmlWgdRZJwwNmEbCyQyG2hl0OnlyzZ7uvUs4yMGiRLzFI5ixd7rld+/skknDsyM+mRmoIBFpnr66iSYWZamf2epdtSo4mVSUxQ4kojgQN4EMamU+++wzWbt2bb8e55577uneC+U9kSkpKYnCMyQaOOGO449EhwNpJLtmcJ33+j9v2C+vbDkoTp8aGQQhl84olm/MGS1pZkPANBK2TmOXEGA79e7qZvX4eBx8PZ4pXosB/2Rwq9t++/YuOW3ckJBeR7TSbKEEib1N5MXmhKYOh9z0ly2aIOiM8UOksr49pmsRiFJdXAQyKOB9/fXXZc2aNVJcXNx9fVFRkTgcDmlsbNScyqBrCbcFYrFY1AdRIulP4WikU3lx0rB611G1obq2VZtGmjE6T25dUCaj8o8vh/WFpY8ILHzfpNeWH5WjbZ3dwRDe8HU6BDR6VVuD++rcHvXGH8rriFaaLdQg8fklswJO5B2eY1FptkBLHvFarpo9Sm34jtVaBKJUF9NABn+R3nrrrbJ8+XJ57733ZOzYsZrbZ8yYISaTSVasWKHargHt2QcOHJC5c+fG6FkTRV9/C0eD1cFgKm9LgKm8++va5JGV5fLRgUbN9ZiD8p2zx8n8siFhDbVD0PHC+n2arif8E75t114mpGsQlIlKz/T1OqKZZgsnSPTvJkLdz/976wsVxAQLghDELL1mpuyobmEHElGqBTJIJ6Ej6Z///KeaJeOte0GbdVpamvp8/fXXq1QRCoCxqBKBD4IYdixRMolm4SiClq526s4edTA4lXlh/X75x0eHNEEHvvdlp5bIlbNHSVqAoXV4A88LshvJe+KBgMVi1IvN6VYpJfwfvj2+i9PddZ3ZaFCP39vriHaaLdwg0bebCOmyPbVtfQZBCGLYgUSUgoHME088oT6fddZZmuvRYn3ttdeqf37ooYdEr9erExl0Iy1evFgef/zxmDxfooESrdH16EJqUOkdbR0MHmPlF7Xy5JoKqWvVnobMGpMntywoU5N3A0F9TEGGRZ3G9HXikWU1yr66dhXA6PBxLJhBzGTUIZDpSg/19jqinWbrT5A4ECdlRJRkqaW+WK1Weeyxx9QHUbLyjq4PVmwaqHDUtxA2w2yQwiyrdPoFMLD3KNJIu+Xjyq7xBl6F2Ra55ewytZE5UBoJtS3oRgo0sTfYmz1STngeR1psKoBRxzHHmE16FZz0VQAb7eChP0EiW6yJ4l9cFPsS0fHR9f7FpoEKR72FsBg6Z3eioFakpCBDrpxVIiePylP3abN700gH1YmIF04nvjazRK6YNSrg7iO80SOFhFRSoACnrzf7oVkWSTPrpbrJrq5DsIBHmVCYLd9ffEKftS3RDh4iCRK9uOSRKP7pPKEciyQwtF+j1gbD9lBjQxTv+mo5RhBzz6ufSovdKVkWk3rTxwkGtlWnmw1y56LxUt/eKU+t3qOm9vqaU5ovN59dJiNz0wJ+b+9MGKwYCOf5XrN047ETD0t38OMRj3TYXXK01S5jh2bKKzfOFWOQ9FQoj6ce0+NRwQiCO3QZhdParOmCOhYkhtIFdbzw2BUwCOJ+JKLYvn8zkCGKs7UBfT2Prz/zodq2jEF1XZNapDtwONJsV6cvKJT1NTzHqtJIc8cVaB/P45HyI23S6nDK6Px01Xbdvzkt0XmzH6jgAT+/bYea5OMDjeLRiZxckitTR+b0+ZojDYKIKHIMZML8QRDFem1AX+xOl6wrr5MfvPKJpJmNqkPICx1IOH1p7NCuHECBLtJNX5s5qkex7tYDDfK3jZVysL5dzX7B7f15XdF+sx+I4KE/f5bxEswSpYpmnsiE94MgCmeeScMgphW882CaOzpl0756+c0bX6jt03qdTqVaMCemtq3n5urTxxWomTDDc3qmkRDEPPTOLunodEk+OpKi9Lqi/WYfzceLhz9LIor++zeLfYliuDagNwhSmm1OaWw/HqTkWM3qZAKnCR6PW2pa7WLr1HYqGXQi3z6zTC6ZMTLg4yIAeuWjg2reC4KccF5XX4FFtDc6h/p4fT2vWP9ZEtHAYSBDFIO1AX3B/iMUyXZNxT2urDBDhuelyRdV6FbS3oZnaDHp1VLGr5wyIuhqgUMNHbL/aHvYryteUmz+QnlesfyzJKKBFXprAlGKCWWeSWeUh6EhcDnSbJOqpo4eQQwKc9/6/Ih6w/UPYjAtF8PokHL6+uxR6tTFF+pfRuSmqfUCqKMJ93V50zIoMsZcGawywGfvygDcHguhPq9Y/FkS0eDgiQxREIM5DA2pDwQYWC0QaCLCriMt8vCK3bK9qqVHGgmTd9NNhh5zZAABDU4hstOM3ScR4b6uwUjLRFILE87z4mA7ouTFQIYoiMEahhZsrQCgwPeZD/bK659U+Q7JFatRL1fNGSXTi/OkvdOpameQdvI9icFMGLRoG/1OIcJ9Xf1JywQLUHyvxwbpNz+rUjuNwklZhfO8ONiOKHkxkKGUEMlv/P2ZCBsKW6dLtUzbO109n6/HI//ZVi1Pv79HFfz6OnPCULnpzFIZlm0N+Lh9rRYI93VFujIgWO3KGeOHqI3RuL7N4VInKvhWSAvhI9Qt1+E8r4H+sySi2GEgQ0mvP0Wq4awNCBVqXxraHD2G1nmh3uPhleWys1qbRhqVny63LihTQ+uCQTEvArW+3pDDeV2RpGWCtTp/Utkk6yvqJMPStcoAqTQsZcJZVG2LQ23HzrQYQ0pZhfu8BuLPkohij4EMJbVgb6ih/MbvhdvxZtrfeSZ91cE0tXfK02v3yn+2+aWRTHq5eu4YueSUkUFXB6CYF4W8gXYnBYPXhFObvqbchpuWCVa7YtHpxeV2q1Zyp2ofF/VngdQX7oFi29oWm2SYM0LqJIokXRStP0siih8MZChpRbNItb/zUfAc6lsdAetg8Mb+721V8szavWq4na8FE4fJjWeUqtOLQPCasNwRSx5DWfAYySlVuGmZYLUrmHfTFbh0naKgxRzBjE6P1nGdWnyJbizcDwXMfW25jjRdFO1ZN0QUW2y/pqQVTjHoQHE43aqVuqbZFjCI2X64Wb7z14/k9+/u1gQxowvS5c5FE2TxiYWqEBg1M/5QzFuclya5AV5fbyJppfamZXDC0W53qkF8+IzL/qdawWpX8PrxMhBX4DNeEZ6296XhFeCfvT+nULrCwnleRJSceCJDSSvSItVonQbhcRGcBEojYVrvn97fK298Vq25HturF00aJgcbOuSvG/Z17xjyba1GMW9+plnVkgzmKVWoaZlgtSt43vh2GFKMz3itFqNBFT3rDMcDG9wvnK4wpouIUhsDGUpasZod0qzaqXvuPgJc969PDsuzH+zrUeyLAAb7kVAn0+5wSbbVJNmGrnUEe2pb5cF3dslPzp8s555YFHFNR38n3IaSlglWu4JaHwSVeG0IYpA+QsoMk4Y7jw34Q40PtngjoAqnk4jpIqLUxdQSJS3vGyqWAvqfinh/48ft/Z0D44WThYMN7XK0xR4wiPnsUJPc9JePVEeSbxAzdkiGPHT5NPnheRPl9W3V6o0e81+w3RpzYfB5aKZF1Y78deOBfj3HwZhw661dQSCCgASLKXEShN1OBr1eDHqdqpPB68EgPwQzKljR4Xq9qp1haoiIQsUTmRQU7Q3F8WqwZoc4XW71s2z1K9T1qm9DGmmPWi/gK8NskGtPHyMXTR+p3tx3VbdKZV2bOolB8atyLNWC2/MyzP3eBzRYp1TBWp2nleRo5sh4r589tkC+NKVISvLTk/rfSSKKPgYyKSZeF/8NlIGcHYJTHbRSIygKVIyLU5l/fnxIlq7bJ2127dC7cycXyrfOKJX8jOMBQ5PNoU5DkE4CvJEb9brj7ctRqOkZzAm3vdWuXD+vNCWCaSIaeAxkUkg0ZqokooEoBm13OKWuFWmanp1I8MnBRnlkRbnsOdqmuX7c0Ay5feF4mTKy54kK1gwgyHK6Peq0xv/5ReO0ZLAn3AarXWFNCxFFCwOZFDEYi//iWbTeONFOjVQRAplA6lrt8tSaPfLujhrN9egwuu70MXLBtBEqTRQIdiWNHZop5TWtPTqSonlawgm3RJRMGMikiP52q6Q6BIIN7Q619yhQOzXqZJZvPSTPr9+vinV9nTelSL45f6z62QeDib0oesVpzWCclrBlmYiSBQOZFBHLmSqJrrd2avi4slEeXrFb9tW1a64fPyxTBSaTezlBQRCJqbyYzot/HszTEqZ3iCgZMJBJEbGaqZLI0AZc12ZX6aRAalvs8uTqClm1s1ZzfZYVaaSx8l8nDQ+aRgLMUSnIsKg9Sb54WkJEFDoGMiliMLtVEl1fdTAo8P3HR4fkz+v3qxkpXviJnje1SG6YVyo56aagj4/gBt1KWdbg9+FpCRFRaBjIpIjB7lZJRK5jdTDB1grAR/sb1EC7A/XaNNIJhVly28IymTS890AQwUtBhjlmP+dUmSFERKmDgUwKYbdKYAhamjucUt9ml53VrWqeC1qh0UWEybqApY9PrN4jq3dp00jZVqMq5D1vSu9pJG8xL0bwx0qqzRAiotSg8wT71TNJNDc3S05OjjQ1NUl2NtMmwN/Kj2uzI4BxyMa9dbJsY6WarOu7qPGyU0fK7iNt8pcN+9WIfS+ELKiBuW7eWFWsGwz+6zrSbFO1SaiHidUJSLAZQg3HTuOSdYYQESX/+zdPZFIQ6y9E7E6XCmBQ0Lv1QINayOi/qHFndbP8eHmjGlDnC7VE6EaaUJjV68/588NN8vdNlbK3ti2mJyCpPkOIiJIbAxlKKc5jpxAttk51GasFcBLjXdSIHUco5kW3UqvfWgGcvHxr/lhZPKWoO+UUCFJMu4+0yO/e3jVoU5R7O2XjDCEiSmYMZCgleDuzsBvJdy9S+ZG27kWNuBqBAE5q/POtZ00YKneeM77XTiPA7blpJvmf1z4btBOQvmpfOEOIiJJZ4OloREkEpy+V9R2qI8l/uaN3UaPD6ZL99e1S5xfEWI16NRcGbdW9BTEo5h2Rm6YKer+obgl5inK0al92VDVLhsUow7Is6rP35Ae3+84QCoQzhIgokfFEJg6LZlmMGx22Tgy0c4jdZ9aLv06nRxX8NrRrAxyDTidDM81iMurV16OLKZTJvDBYJyCh1r4svWYmZwgRUdJiIBNnraxske0/1LhgpQDe4INBcIJC3L9trBSHSxvEIDXUNetF5GirQ0qHZqpWbH8Wk0HV1ViMhphMUQ619mVHdQtnCBFR0mJqaYCO8+PpcVMFTihQ33KwoaPXIGZ9RZ1c9/xmteDRN91i1OvUyQaCE6SbEMSkmw1y5awSTXEvggS0Uo/MTesRxPhOUUZRsf90A2+tDm7v7xTlUE5+8DpwP+8MIXRctdudUtNqV59xma3XRJTIeCIzSK2swdJF3uuPttnlD+/uZotshFDE29gefLEjHG7skEdXlcuGPfWa6/HHhKAxy2KQpg6n1LW7xKTTqZMYBDEnj8rrvi8G2qEOBjUxsZ6iHO7JD3c4EVEyYiATpkhaWYOli84YP0TW7D6qrkf7L4pSzUaDtDlckmkx9vm4JGofUl0rTiYCF7J600hIIf1t0wH18/eVm2ZURbwITBFXXDlntAzPsfaY7IvPeRnmXoffDfYU5Uj2Z3GGEBElGwYyYQq3kDPYRNVPDzaqFAdSF4XZVvUbfovdqbpnDjV0yMi8NE0wE60C0WQaaNfQ1hl0saP3zfyD8jp5/L0KqW62aW5LM+nVKYw3NWQ16VUq6f3dR+V/L5mqSSVhS/WQzN5PYQIZ6BMQ7s8iImIgM6DH+cHSUBa9Xpwuj0qD4MNi1KsZJnh/0x1LN9W22CXDYlAD2vwfN5W5jtXBeAfaBXOwoV0eXVkuG/c1aK7Hzxg/Q98uI8DPGSczmCmD2TITijJD2lLdl4E+AeH+LCJKdTyRGcDj/GBpKJvDrQIh47GAyNbpVicCCGg6Ot1i0HWdOOB+OA0IliZIJfgZdNXBaAfa+evodMmyDw/IS5srNWkkBCXzygrkk8pGlabzTwuC2aCTFnwfm0OdhhVkWnpdBBlr3voqFPTefe4J6rrGjk5utSailMJAZgCP84OloZxutzqBwdUo7cBlnQ5FpFaVVnJ53IKpbA6XS6RTologmohwooV2av86GAQ0OD1B4JFtMUlVc4c8uXqP1LTYNfc7ZVSu3LqgTOydHtmBN34XTsF6/hzRho1Tr7EFmTIs2yrxrLc2fdZQEVEqYSAzgMf5wdJQRj1OcvBGjELersuAUwDUxlQ32VStTIvNKWkmT1QLRBNtoB3SSPjsD4sevduqsZUaJzH+hbxDMy1y01nj5MwJQ9QJDAIfbLTeU9vavVfJyyMeabU5ZfKILDl1zPEupXgUrO5qoPY4ERHFMwYyEQqlkDNYGspq1qs3H3QqodgXaSWvDLNBXXdCUZbcsXC8Sm9Es0A0URY74meKwCIQ77ZqTORFMNjsdz9M5b1sZrF8ffZolZrzQgEv2qnxtSjsRe0L0klIzeB7ZacZ5TtnlcX1z5qbrImItBjI9ENfhZy9paFQH4P6C4Ner04UfNNT2O3z/cUnpNxv1XiTRo0HamH8B8l138fjkb9+eED9nOxOtzj95sZgqB2CwOvnjQ24oRozYe46Z0L3aU6bp6s2ZvKI7Kiceg30eglusiYi0mIgE6M01EnFuZo5MgMxZySRNNs6pbGtU9UL9eb9XUdl26GmHmkkBDBIJSFArG22dXceBYJgZtbYAtUZhpb3aAUcg7FegpusiYi0GMjEKA01qShL7cAZPyxLjbLPzTDJkIzUSyOpgXYtDvWzQdGu/yA63/u9sH6/vLLloEoneeFeaKVGmzS+Bic2rQ6neqxAfAfbleSnJ1zdymDtcSIiShQMZGKQhsKb3pLnNwX8zT1VghiH060KeT8or+1O86BWBW/CKMj1rgZAimnlF7Xy5JoKNcHXF2qJhmVaxGzUazuPsJE6wLZqFFMj4DGGOdgunupWIpnmS0SUzLg0cpCl+mJIDLRDSgcD6xDEoPAWXURpZqPaOI3PuIzr/7OtSr778ifyq//s0AQxOO1AUfSIHG0Qg84jDMpDIOS7rRoTeYfnpKmW6mgHMeHWrfSXt+4K7fgIkNCthUAKn3E5ldv0iSg1xTSQWbNmjVxwwQUyYsQI9Rf+a6+9prkdv2H+9Kc/leHDh0taWposWrRIdu/eLYnK/zd3LCDEGw4+F2VbpNXuUrfjfsmm67TAIZX17SrYQAoIJzHo3EIrNIYBIu2Dz0gVoavot2/vko8rm7ofAydXV88ZLT+/cLIKDuraOlWhNB4Ln/23VePfKZzAFOelabqXoi2cLdTRwE3WRERxklpqa2uTadOmyXXXXScXX3xxj9sfeOABefjhh+X555+XsWPHyk9+8hNZvHixbN++XazW+B5YFkiqdpwEGmiHYlykk7Ktpu55Lgh2UHxb29pzi/Wc0ny5+ewyGZmbpi7fdY6+OyWFabz+26q9+5HQiv3ZoYHrIopV3Qo3WRMRxUEgc95556mPQPCm9vvf/17+53/+Ry688EJ13QsvvCCFhYXq5OZrX/uaJJpU6zjpbaAdinFxSpGNfQzHNlTXtCJVou1awonKd8+ZIHPHFWiuR7AyrSS3e7Kvt0gYaSTvfqTB6CKKZd0KN1kTEcVxjczevXulurpapZO8cnJyZPbs2bJ+/XpJRL6/uQeSLB0nGGhX02yTw40dAYMYQOCB12rvdKuVAvsbOjRBDEIB1MHcd8GJPYIYL6SP0GI9c0y++pydZpLivPTuIGawapFYt0JEFDtx27WEIAZwAuMLl723BWK329WHV3Nz/wssozUELdk7TkIZaOdVOixd0ixGOVDXjrVSGghgMCxwfGGWTBqR1ef3xYqHIVlmSTcbYzb9lluoiYhiI24DmUjdf//9ct999w3a9wsnfRHOwslEHGiHOhj/2pZAdh9pkT+sKJf9de2a6/Gzy00zq6F4vkW7vcEpDIJH359ZrGqRWLdCRDT44jaQKSoqUp+PHDmiupa8cHn69OlBv+6ee+6Ru+66S3MiU1JSMiDPMZIhaMn2m7saaNfaczN1oA3VRp1eVu+ukdc/rdIOtdOJpJsMYjKi7NejKdoNBrUwQ7MsquMrklqkRpdbthxoiHoRMOtWiIgGV9wGMuhSQjCzYsWK7sAFQcmHH34oN910U9Cvs1gs6mOg9Sd9kQy/uXsH2iGQ8Q9YvIW3n1Q2qs6iA0dbpa3TLR0OV480EtY03HhmqbR0uHqd7Ks5UUkzqVMV/9OWULuIGjoc0tzhlMdWlqvLA1UETERESR7ItLa2Snl515uJt8D3448/lvz8fBk1apTccccd8stf/lLGjx/f3X6NmTMXXXSRxFp/0xeJ+ps7CnmxUgGzYHy3UftP5+2a8+JQk3ZR0Otf4IzTlLvPnaAKdWF4CD8KtFQXZGiH4AXSWy0Snnd1k03V4OSkG8ViMAzIKgEiIkqBQGbz5s1y9tlnd1/2poSuueYaee655+T73/++mjXzrW99SxobG2XevHny5ptvxsUMmVRrpfYWI6OQF6cvvkEMpvBisB1mwqCdGqc1FbVt4rfXUUFMYTXq1ZC6GaODp458IejwtlSHIlgtks3pkkONHeo+mEeTZjIOeBEwERElcSBz1lln9drdgt+kf/7zn6uPeJNKy/uCbab2n86rKlywtNHuChjEYNfR0Eyzuu1QfXuvG6q9ELxgdUG4gUWgWiQ8N6SshuVYewRFyTyQkIgomcVtjUy8S/ZW6lAKef2n82LfD2bC2J3a+xv1OrWCwdsebcAEX48n6IZqQPoIk3kDFfOGWsOEYOW6eWNVEIa1B+iSenRVuaqxSYVTNCKiVMBAJkLx2kod6kyb3mCIXUO7QxXn9sY7nTdDJ1LdbJNmW1fhry9852E+M1762lCNgBBBR24/TrKCtcQvPrEoZU7RiIhSBQOZfgQLeBP/5vxSefOzarWxOdat1P0dyY+TFwQwrQECkkCyzCb1Nfvr2zXt1IDNA7gOMZTRJ2jwbqhGi7XvhmqwmAwyNLPvYt5IW+IP1LVJQaZZqprsSXuKRkSUahjIRCFYKB2aId85u0xK8tNj1kodyUybSCbyem0/3Cx/WLFb1cP4wvfFCQwe5XCjTRX3is6j6mlwEoMgxn/YXTROYUJtic9OE8mwGOLqFI2IiCLHQCYKwcIX1a1ysGGPChZiUSQa6UwbBC1IBzW2hzaRF3Bi86c1e+XNz3uuiUBgUJBuEqxMQsCSn9FVqIsgocXj7LGhOlqnMOG0xKPmB0HnW59XJ8VAQiKiVMdApp/BgkWnlxyrUWpbHfLAWzvllTH5YozCm/JAz7RpszvVQLtghbz+EOj83yeHZekH+9TPwNeMUbnqdKq6qUPqOzo1AUugDdU4iYnWKUwkLfE4OXt+yayEHkhIRERdGMj0I1jAG3pti0116eBAY9vBRrn0qfXy/cUnDOpv9uHMtEEhLwKYYFupA/nsUJNKI2E2jC+k1G5bUCYnFecGnOzrTR35t1hH8xQm0pb4RB1ISEREWgxkIgwWEMQcaugQl8ej2ov1Oo84XSJ7a1sHfUJsKG/gRsQUHtStdA2ECwUCnj+u2SNvbz+iuR41JktOGysXTh+hhtUBgpa+ZsKEegoTaedVKrTEExGRFgOZCIIFpJNwEoMgBr/h4w1TdejoRc0+abI5B3VCbG9v4G63W+pbHer0ZGSeNeQ00vKth+T5dfukza8Fe/GJhXLD/FI1aTccoZ7C9KfzKl5b4omIaOAMbjFHAvMGC9gzhPkqSCfhJAZBA1qK8eZvMRokzWLQ1KQMBu8bON6o8QaOwXQul1udGh1uskuaWS9X+HQJ9eaTg41y45+3yOPvVWiCmLKhmfLw16bLD740MawgxrvkEcHU+j11su1gkzpx6a2YekdVs2RYjDIsy6I+ezuvcHuoE31x8tJud0pNq119xmXuUSIiSj48kQmR72/7KOztmpGCtuKuEwwECViEiAm3sZgQ6zuSf/eRFtXqjHQSTmJ8u4SCOdpqV2mkd3fU9FgrcP28MfJfJx1PI4VzClNxpEV+unZvnycs/dkmHuhnkejbxYmIKDQMZCIIFtCdhMJe1MQgnYQx+ghi8KYfywmx00flyq8vmqrewOva7VJe3apG6x5tdYjL5REDptQF2Gb9qkoj7VcnOb6+PKVIrp8/VhU4h8NbC4NZMz/9v89Dmm3T323i/ljMS0SUGhjIhAlvvGixRncSCntRE4N0Ek5iol1UGmrRK7ZNozAXu5Hg48oG+evGA9Jmc4r7WP4QO4aumjVKLptZ0v11H1c2ysMrdsu+unbN42Ez9Ndnj5ZzThwWUjoqUC0M0m7hnLCk2jZxIiKKDgYykfzQjHrVYo1TBRT26vS6qBeVhlL0ipQWAhgMn/N6aVOl/On9PWrDNOpqcQiDYb0tNqe6Hs6eOEyeXF0hq3bWar4nUkfpJr202Ttl6Qd75N0vjoSUlgrUkYRamHBOWFJpmzgREUUPi30jNJBFpX0VvX6wu1ZN462sb9cEMUgf4SQGQQyWRhv0etHr9OozLuP6Z9ftk2uWbtQEMQgzsDYAAVh+hqXrlMlsVPujHnxnl2w90NDr800zG6Q4L03TVh3KCUunzwmLbzG1/5oE7ykXbmfrNBER+eKJTD+EWlQazlyUvopeDzfZ5KEVu+U3F0/tkfZZubNGpZNwEoMARsPTNUgGaShfE4uy1OcjzTYZkmnuTpFZjDp1GfU1yzZWqgm9/t8PJzjoYMqymnq8jnBPWNg6TUREkWAg0099FZWGOxclWNErAhyn26MKig8cbVNTdP0H0CEYQZjiW9OL0wx8nX/Hc7bVqObBjBuaKT/7v88k22rqDmK8cBlBSmVdz++H51GQaQnayRTJcDrfzivuQSIiolAwkImzjdT+KRmM/kctjHf2itmgkxaPR60C8FeYbVW5QmRm1GybY63h/k4elSv3/tdkyU4zyaZ99SrFkx2goynQ9zPq9TIkyyzp5t7/1Yn0hIWt00REFA7WyAwQ/xQRWrTxpo3PRdkWabW71O3+w+G8KRm706UWOnZij5PPfTAfBksZsc/I34IThkmG1SjIHuF+gYIY1MI8cPFJKogBPA5SPAieAvH9fvga1ML0FcT0t47Ie8p15oSh6jPnvxARUTA8kRkgkc5FmTw8S0YVpMvOarR2a9M9OGVBcS82S2Mpo7/aNrsMyTCrDqVgUevVc0Zr5sngcUoKMlRhr2+NjO/3KxuWKWdOGCJpx+bkhIMnLERENJB4IjNAwu3aga6VAjb56oxiSTfrVaGtTW3W9qjPuIwTFbRE+xbeooD3zxv2y5Klm2Sv30wYwD2zrEb51hmlmjkygMfB4+FxA30/1MLcsXB8REFM9/fgCQsREQ0QnsgMkHC6dmydLqlrc4j92GRdzG2565wJqlsIhbaoUUF6Bycx/nNdNuypU8PuDjfaNI8/ZUS2zBqb3107g7RToMm+wb6fWa+XySOy5eazygZtizcREVG4GMgMkFC6diYWZcrQTLMcbuwIGFyg5RndQii0RY0K0kDek5iqpg55bFWFrKuo03wdhtLdeOY4OWfSsB4prd54v9+e2ja11bs4N537iYiIKO4xkBkgvXXtNLR1pYi+cnKxtPvtN9I8hk7Xo8UapzZ/31Qpf9tUqZkJg+afr5w8Uq45bUz3zqdwoQV74aTCsJdDEhERxQoDmQEUaC4Ksjtjh2bIFTORIsoN6/HWVRxVpzBVTdo00knFOXLbgjKVeoqEyaA/Ns23ZwqMiIgonjGQGWDerp0t+xvkQEO7ZJiMmhRRKA41Io1ULhv21GuuL8gwy7fPLJUFE8NLI3nha3LSTCodFcnXExERxRoDmQHm3UxdkGlWH+FAEfDfNh5QqSTfOS9I/Vx88ki5eu5otYMpEthSjXZri5GnMERElLgYyAwQDKNraMdmamePJYh9wf0/KK+Tx94rlyPNds1t00ty5baFZTKmoOccmVDgJCgvw6xOYoiIiBIdA5koQxDS3OFUQQzmsYTrYEO7PLqyXDbu026cxmnOd84cJ2edMDTiNBCKgLHk0Rhktg0REVGiYSATRRhoh44krBYIV0enS5Z9eEBe2twzjXTpKSPlG3NHh7waIFAxLwKhSL+eiIgoXvGdLQo6HC41odc70C7cE5w1u4/KE+9VSE2LNo10yqhcuXVBmYyOMI2EkxtsucYpDIt5iYgoGTGQiUIhb7sj8G6jvhyoa5dHVpWrjiZfQzMtctNZ49R+o0gDEBbzEhFRKmAg0w9YqBhJEIMTHOxGemXLQXH6bKg26nVy2anFctWc0ZJmiqybiMW8RESUShjIDCKkkd7bWasG5GEho6+ZY/LklrPLpCQ/PeLHRys2ZsuwmJeIiFIFA5lBsq+uTR5ZWS5bDzRqrh+WZZGbzy6TeWUFEaeRjPquYt5IZ8oQERElKr7zDTCknp5ft19e3XpIzZbxwmbsy2eWyJWzRok1wjQSZKeZ1AZt7HYiIiJKNQxkBjCNtPKLGnly9R6pa9OmkWaPzVdppJF5aRE/vtnYtR+pP0EQERFRomMgMwD2Hm2Th1fslk8ONmmuL8q2ys1nj5PTxkWeRsLXYTcSJvOypZqIiFIdA5koD8R7ft0+Wb71kPhkkVQa6YpZo9TGa7RFRwqnLziFwWkMERERMZCJWhrpnR018sc1e9RcGV9zSwvUKcyI3MjTSGipzs80S7aV+5GIiIh88USmnypqWuXhlbtl26FmzfUjcq2qDmZOaUG/Hh/7kQoyLWpVAREREWkxkIlQU0enPPDWTnl5c6UmjYS0z1WzR8nlp5b0KwWE/UhII6WZWcxLREQUDAOZCLz9ebXc8+q2Ht1I88qGyHfOGidFOVbpj9x0syroZTEvERFR7xjIRDi7xTeIKc5LU8sdZ47Jl/7ACc7QLItYjDyFISIiCgUDmQig7uW/p42Qt7dXy9dnj5ZLZxT3K43ElmoiIqLI6DxouUlizc3NkpOTI01NTZKdnR21x61psUlNs13S+1nDghoY1MKgJoaIiIjCe//miUyEhmVZxaDTqaLfSLClmoiIqP8YyMQAt1QTERFFBwOZQcQt1URERNGVEIUZjz32mIwZM0asVqvMnj1bNm7cKIkmy2pS3U04jSEiIqIUCWRefPFFueuuu+Tee++Vjz76SKZNmyaLFy+WmpoaSQQo4h2ek6baqvWczktERJRagcyDDz4oN9xwgyxZskQmT54sTz75pKSnp8uzzz4r8Qwt1Rhsh1MYTuclIiJKwUDG4XDIli1bZNGiRd3X6fV6dXn9+vUSrzBTBruW8jPMnM5LREQ0gOK6YOPo0aPicrmksLBQcz0uf/HFFwG/xm63qw/fPvTBwsF2REREgyuuT2Qicf/996sBOt6PkpKSQfm+VpNBRuamqXQSdyQRERENjrgOZIYMGSIGg0GOHDmiuR6Xi4qKAn7NPffco6YAej8qKysH9DkiaCnIsMiI3LR+rSkgIiKi8MX1O6/ZbJYZM2bIihUruq9zu93q8ty5cwN+jcViUaOMfT8GisVkUMW8OemmAfseRERElKA1MoDW62uuuUZOPfVUmTVrlvz+97+XtrY21cUUa5mcCUNERBRTcR/IXH755VJbWys//elPpbq6WqZPny5vvvlmjwJgIiIiSj3cfk1EREQJu/06rmtkiIiIiHrDQIaIiIgSFgMZIiIiSlgMZIiIiChhMZAhIiKihMVAhoiIiBIWAxkiIiJKWAxkiIiIKGExkCEiIqKExUCGiIiIEhYDGSIiIkpYDGSIiIgoYTGQISIiooRllCTn8Xi6t2gSERFRYvC+b3vfx1M2kGlpaVGfS0pKYv1UiIiIKIL38ZycnKC36zx9hToJzu12y+HDhyUrK0t0Ol3EUSECocrKSsnOzpZklAqvMVVeJ19j8uCfZXJIhT/HgXidCE8QxIwYMUL0en3qnsjgxRcXF0flsfAHk8z/EqbKa0yV18nXmDz4Z5kcUuHPMdqvs7eTGC8W+xIREVHCYiBDRERECYuBTAgsFovce++96nOySoXXmCqvk68xefDPMjmkwp9jLF9n0hf7EhERUfLiiQwRERElLAYyRERElLAYyBAREVHCYiDTh8cee0zGjBkjVqtVZs+eLRs3bpRksmbNGrngggvUwCEMDHzttdck2dx///0yc+ZMNRRx2LBhctFFF8nOnTsl2TzxxBNy0kkndc9wmDt3rrzxxhuSzH7zm9+of2/vuOMOSRY/+9nP1Gvy/Zg4caIko0OHDsnXv/51KSgokLS0NJk6daps3rxZkgXeO/z/LPFx8803S7JwuVzyk5/8RMaOHav+DMeNGye/+MUv+lwrEE0MZHrx4osvyl133aWqsD/66COZNm2aLF68WGpqaiRZtLW1qdeFgC1ZrV69Wv3FsWHDBnnnnXeks7NTzj33XPXakwkGP+KNfcuWLerNYMGCBXLhhRfK559/Lslo06ZN8tRTT6ngLdmceOKJUlVV1f2xdu1aSTYNDQ1y+umni8lkUgH39u3b5Xe/+53k5eVJMv076vvniL9/4Ktf/aoki//93/9Vv0Q9+uijsmPHDnX5gQcekEceeWTwngS6liiwWbNmeW6++ebuyy6XyzNixAjP/fffn5Q/MvzrsHz5ck+yq6mpUa919erVnmSXl5fnefrppz3JpqWlxTN+/HjPO++84znzzDM9t99+uydZ3HvvvZ5p06Z5kt0PfvADz7x58zypBP+ejhs3zuN2uz3J4vzzz/dcd911musuvvhiz1VXXTVoz4EnMkE4HA71m+2iRYs06w5wef369YMVZ9IAaGpqUp/z8/OT9ueL496///3v6tQJKaZkgxO2888/X/PfZzLZvXu3SveWlpbKVVddJQcOHJBk83//939y6qmnqtMJpHxPPvlk+dOf/iTJ/J7yl7/8Ra677rqI9/7Fo9NOO01WrFghu3btUpc/+eQTdYJ43nnnDdpzSPpdS5E6evSoejMoLCzUXI/LX3zxRcyeF/V/iSjqKXCkPWXKlKT7cW7btk0FLjabTTIzM2X58uUyefJkSSYI0JDqxbF9MkIt3nPPPScnnHCCSkfcd999Mn/+fPnss89UnVey2LNnj0pJIH3/ox/9SP153nbbbWI2m+Waa66RZIP6w8bGRrn22mslmfzwhz9UyyJRx2UwGNT75q9+9SsVgA8WBjKUUvCbPN4QkrHmAPDm9/HHH6tTp1deeUW9IaBGKFmCGWzVvf3221WtAQrwk5Hvb7Ko/0FgM3r0aHnppZfk+uuvl2T6pQInMr/+9a/VZZzI4L/NJ598MikDmWeeeUb92eKkLZm89NJL8te//lWWLVumarvw9w9+WcTrHKw/RwYyQQwZMkRFl0eOHNFcj8tFRUWD8WdDUXbLLbfI66+/rjq1orURPd7gt9mysjL1zzNmzFC/5f7hD39QRbHJAOleFNufcsop3dfhN0D8maLY0G63q/9uk0lubq5MmDBBysvLJZkMHz68R4A9adIk+cc//iHJZv/+/fLuu+/Kq6++Ksnme9/7njqV+drXvqYuo/MMrxfdooMVyLBGppc3BLwRIPfn+xsELidjzUEyQx0zghikWVauXKnaBFMF/p3Fm3uyWLhwoUqf4bc+7wd+q8cxNv452YIYaG1tlYqKCvXGn0yQ3vUfg4A6C5w+JZulS5eqOiDUdSWb9vZ2VT/qC/8d4u+ewcITmV4gd4uIEn9Rzpo1S37/+9+r4sklS5ZIMv0l6fub3t69e9UbAgphR40aJcmSTsKx5z//+U9VY1BdXa2uz8nJUXMPksU999yjjq7x59bS0qJe83vvvSdvvfWWJAv8+fnXNmVkZKg5JMlS83T33Xer2U54Qz98+LAa/4A3hiuuuEKSyZ133qkKRZFauuyyy9SMrj/+8Y/qI5ngDR2BDN5LjMbke8u94IILVE0M/t5Bamnr1q3y4IMPqqLmQTNo/VEJ6pFHHvGMGjXKYzabVTv2hg0bPMlk1apVqhXZ/+Oaa67xJItArw8fS5cu9SQTtECOHj1a/bs6dOhQz8KFCz1vv/22J9klW/v15Zdf7hk+fLj6cxw5cqS6XF5e7klG//rXvzxTpkzxWCwWz8SJEz1//OMfPcnmrbfeUn/f7Ny505OMmpub1X9/eJ+0Wq2e0tJSz49//GOP3W4ftOfA7ddERESUsFgjQ0RERAmLgQwRERElLAYyRERElLAYyBAREVHCYiBDRERECYuBDBERESUsBjJERESUsBjIEBERUcJiIENEMfXcc8+pxYjRgJUMOp1OGhsbo/J4RBT/GMgQUdiuvfZaueiii/iTI6KYYyBDRNRPWOnldDr5cySKAQYyRBTUK6+8IlOnTlVbwrFhetGiRfK9731Pnn/+ebVNHGkcfCClEyitg03quG7fvn2aVBI25aanp8tXvvIVqaur674N99Pr9bJ582bN88DmeWyDxibhUGzZskVtrcf3wIblnTt3am5/4oknZNy4cWI2m+WEE06QP//5z5rngOeM5+6F1+R9neB9rW+88YbMmDFDLBaLrF27Vj755BM5++yz1Zbu7OxsdZv/ayGi6GIgQ0QBVVVVyRVXXCHXXXed7NixQ715X3zxxXLvvffKZZddJl/60pfUffCBYCEUH374oVx//fVyyy23qEABb/q//OUvu28fM2aMCpaWLl2q+TpcRjoLQU4ofvzjH8vvfvc7FUQYjUb1GryWL18ut99+u3z3u9+Vzz77TG688UZZsmSJrFq1Kux/E374wx/Kb37zG/XzOemkk+Sqq66S4uJi2bRpkwqmcLvJZAr7cYkoDIO2Z5uIEsqWLVs8+Cti3759PW675pprPBdeeKHmulWrVqn7NzQ0dF+3detWdd3evXvV5SuuuMLz5S9/WfN1l19+uScnJ6f78osvvujJy8vz2Gy27ueh0+m6H6M33ufw7rvvdl/373//W13X0dGhLp922mmeG264QfN1X/3qV7ufF74P7o/n7oXXhOvw+L7f57XXXtM8TlZWlue5557r83kSUfTwRIaIApo2bZosXLhQpZa++tWvyp/+9CdpaGjo108LJxezZ8/WXDd37lzNZRQRGwwGdXLiTUXh5AanNaHC6YjX8OHD1eeampru53D66adr7o/LuD5cSF/5uuuuu+Sb3/ymOlXCSU1FRUXYj0lE4WEgQ0QBIZh45513VB3I5MmT5ZFHHlH1JHv37g38l8mxtA8KX706OzvD/umibuXqq69W6SSHwyHLli3TpIZC4ZvOQS0LhFpfE87ryMjI0Fz+2c9+Jp9//rmcf/75snLlSvVz8wZkRDQwGMgQUVAIAnBacd9998nWrVtVkIE3Znx2uVya+w4dOlR9Rs2Ml2/BLEyaNEnVyfjasGFDj++LU413331XHn/8cdUNhNqcaMFz+OCDDzTX4TKCjlBfR28mTJggd955p7z99tvqefvX+xBRdBmj/HhElCQQcKxYsULOPfdcGTZsmLpcW1urAgGbzSZvvfWW6gZCN1NOTo6UlZVJSUmJOpX41a9+Jbt27VIFt75uu+02FRj99re/lQsvvFA9xptvvtnje+N7zJkzR37wgx+o0xh0TUULuq5QrHzyySerFNC//vUvefXVV1XgBPhe+N5IDY0dO1alpP7nf/6nz8ft6OhQj33ppZeqrzt48KAq+r3kkkui9tyJKIAo1tsQURLZvn27Z/HixZ6hQ4d6LBaLZ8KECZ5HHnlE3VZTU+M555xzPJmZmZoi2LVr13qmTp3qsVqtnvnz53tefvllTbEvPPPMM57i4mJPWlqa54ILLvD89re/1RT7+t4PX7tx48aQn3MoBcfw+OOPe0pLSz0mk0m9rhdeeKHHa587d656jtOnT/e8/fbbAYt9fb+P3W73fO1rX/OUlJR4zGazZ8SIEZ5bbrmlu8iYiAaGDv8XKMAhIoqlX/ziF/Lyyy/Lp59+yj8IIgqKNTJEFFdaW1vVfJdHH31Ubr311lg/HSKKcwxkiCiuYFgeJuKeddZZPbqVvv3tb0tmZmbAD9xGRKmHqSUiShgovG1ubg54G1YCoCiZiFILAxkiIiJKWEwtERERUcJiIENEREQJi4EMERERJSwGMkRERJSwGMgQERFRwmIgQ0RERAmLgQwRERElLAYyREREJInq/wMBFDi+rgCk5gAAAABJRU5ErkJggg==" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 51 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T09:42:17.180550Z", + "start_time": "2025-11-14T09:42:16.725030Z" + } + }, + "cell_type": "code", + "source": "sns.lmplot(data =student, x ='study_hours', y= 'test_score', hue='gender')\n", + "id": "fbc1f146d5dcaaaa", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAigAAAHpCAYAAACoUccJAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjcsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvTLEjVAAAAAlwSFlzAAAPYQAAD2EBqD+naQAApPxJREFUeJzsnQd4W+XZ/u9zjvayZXln70BIAoSVkBAIYX1AoUAn/Mtq2SMJtGXPMkpLoQtoSwu0wEcLX6EtLZSdsEeAACEEMiDTe2hLZ/2v55UtS7bsyI6HbD8/Ll/H5z1H0pFMpFvPuB/JNE0TDMMwDMMwBYQ81BfAMAzDMAzTGRYoDMMwDMMUHCxQGIZhGIYpOFigMAzDMAxTcLBAYRiGYRim4GCBwjAMwzBMwcEChWEYhmGYgmPECxSyeQkGg2LLMAzDMMzwYMQLlFAohKKiIrFlGIZhGGZ4MOIFCsMwDMMwww8WKAzDMAzDFBwsUBiGYRiGKThYoDAMwzAMU3CwQGEYhmEYpuBggcIwDMMwTMHBAoVhGIZhmIKDBQrDMAzDMAUHCxSGYRiGYQoOFigMwzAMwxQcLFAYhmEYhik4WKAwDMMwDFNwsEBhGIZhGKbgsAz1BTAMwzBMwWAYQM0aINoIuAJA5VxA5u/yQwELFIZhGIYhNq0EXrsLaPgCMFRAtgKl04CFy4HJi/k1GmRYFjIMwzAMiZOnlwG1awGbG/BUpLa0T+t0nBlUWKAwDMMwoxtK61DkJBEGvFWA1QlIcmpL+7ROx+k8ZtBggcIwDMOMbqjmhNI6Tj8gSdnHaJ/W6TidxwwaLFAYhmGY0Q0VxFLNicWe+zit03E6jxk0WKAwDMMwoxvq1qGCWC2R+zit03E6jxk0WKAwDMMwoxtqJaZunVgzYJrZx2if1kunwaiYg4+3tWLl5/ViaxidzmX6FW4zZhiGYUY35HNCrcTUrRPamao5obQORU5InNi9+GTyWfjpg+9hY10Yqm7CqkiYUu7B+YunYMHU0qF+BiMSyTQ7y8WRRTAYRFFREVpbW+Hz+Yb6chiGYZhh5oNC4uSiN70IJzT4XTbYFBlJ3UBzVIXHruDWr89mkTIAsEBhGIZhmG6cZCmtc/qD72HdziAqfQ5IGV0+9P2+JpjAHlVePHTmAZDlTh1AzG7BKR6GYRiGyUz3VO+T3l27rVWkdShykilOCNovdlnF8bU7gpg9tohfx36Ei2QZhmEYphuaoklRc0JpnVzYFRmqYYrzmP6FBQrDMAzDdEOJyyYKYqnmJBcJ3YBVlsR5TP/CAoVhGIYZNVBrcG9ahWdV+0S3DhXEdu4pof2WqCqO03lM/8I1KAzDMMyoKHz9dMNm/O/aCF5qrkTSkPJqFabCVzp+1ZMfi4JYqjmhtA5FTlraunjoOBfI9j/cxcMwDMOM+NbhRM16hGNRJE0Ltitj8X/Ob+A9eXZercIUZXn0nS3433e2oC6YcptlH5SBhwUKwzAMM3LFydPLYCbC2JZwIKzJcMk6vGYIMcmFezwXYY1lTo+twm9saMC9KzeKTp2kZgASRLvxtw8Yj+8eMJ4jJwMI16AwDMMwIzOtQ6ZriTBijnKEdSsU2YKkZEejFIDTjOKU2OOQYWa1CncWJ5TaIQ8Ut92CCp9DtBuToLn/1U14axMPDxxIWKAwDMMwIw8yWyNHWKcfupkaqZO2MZEkhCQvxujbMFnfmLNVmNI6FDkh91iKmDisioiW0LbSZ0c4oYvjPI9n4GCBwjAMw4w8yAmW7OotdiiyJMRJZhOOCisspgafEczZKkzRlHwN2piBgQUKwzAMM/JwBVKzdLQEnFYFdosMLaOl2AoVmmRBq+TL2SrMBm1DDwsUhmEYZuRROVcM+qNpxJJpotxLkRQIV1hKy1Ch7BZpDN6IjMnZKswGbUMPCxSGYRhmZM7UWbgcsHuA0E54ZBVjiuzwWVQEzEaETScekr+OmdVFOVuM2aBt6OE2Y4ZhGGbE+6CIgllDhSlbEfZOwqYZ50CevFgIke5M1tq7eKggNpdBW0/eKczuwwKFYRiGGRVOsqJwlmpTKP1DEZY8yPRBoU4fKqbdlfss0z+wQGEYhmFGD30QK1SzQt06VDhLtSk9RV2Y/oNn8TAMwzAjgl0KiU7pHtHlQ4W0VKsyeXG390v3MXts0eA8CSYNR1AYhmGYYU9WKkY3u87KabO9J2dZMm8jfxRqQaYuH1FIe9zdPYoUZvBhgcIwDMMMazqKWTVhrGZTZCR1o2MQ4ImzsODNc4DatYC3KsNSFin3ttBOoGIWcPi1KcHSyzoVZmDgFA/DMAwzbOlsSd/u+uqQyZJeFnNznnnhv5gf+wISRU46ucJCiwGmAXz1OvDot1PH80z9MAMLy0OGYRhm2JKPJX24qRaamkilddpJhoHGjUDTJiDaAOhJINYK2NypH4q2UEqIUkPMkMAChWEYhhm25GNJ32B6oUuWVM1Juzhp2dIRPWnH1IDWbYCpp1JBVK9CRbXU+cMMOixQGIZhmGFLPpb0m+TJUP1TU/UlouakNiVMJKVDoEhyKrVD+3ScojGUEqKOH2pLZgYdFigMwzDMsCUfS/rJFT64l1ye6tZp3QqosZQgoUiJgOpOLAC1JMsKoMUBNZpKCVE7MnmmMIMOCxSGYRhm2EIeJdRKTN06VBAbU3VROEtb2k8PApxyaKqVuGgcldZmpHbaxYnSfo8kbQBDT6WEKKpCXT3MoMMChWEYhhnWkM8JzcXZo8qLaEJDXTghtrSfNS+HOnKOvwtwlQKeSsA/CbC6U4IkHX0h4SKlIiyUEqJuHmo5ZgYdbjNmGIZhhj0kQg6aHNi1JX3VPinPE+rSociItyKV9jG0VE0KbRU7EG8F7N5UqzH7oYy+CMoNN9wg2sAyf2bOnJk+Ho/HceGFFyIQCMDj8eDkk09GbW3tUF4ywzAMU6C0W9Ivnl4mtjnn5ZDYINFB9Shk0EbpHd9YQLGl6k0IajMmEXPcXeyDMpojKLNmzcILL7yQ3rdYOi5p+fLl+Pe//43HH38cRUVFuOiii3DSSSfh9ddfH6KrZRiGYYY9lOqhepTMuTwOP+CrAmYeB1C9CjvJDjlDLlBIkFRWVnZZb21txR//+Ec8+uijWLJkiVh74IEHsMcee+Ctt97CQQcdlPP+EomE+GknGAwO4NUzDMMwhUKvpg6TSJm4qNeTjZlRJFC++OILVFdXw+FwYP78+bjtttswfvx4rF69GqqqYunSpelzKf1Dx958881uBQrd/sYbbxzEZ8AwDMMU/LDAXJAYqd5nsC+VyZMhlYoHHnggHnzwQTz77LO49957sXnzZixatAihUAg1NTWw2WwoLi7Ouk1FRYU41h1XXnmliL60/2zdunUQngnDMAwz1MMC1+0Mwm23oNxrF9t1O0NinY4zw48hjaAcc8wx6d/nzJkjBMuECRPwt7/9DU6ns0/3abfbxQ/DMAwz8slnWCAdpw6fbtM9TEFSUMk2ipZMnz4dGzZsEHUpyWQSLS0tWedQF0+umhWGYRhm9JHPsEA6Tuf1BwlNRzSp9ct9McNIoITDYWzcuBFVVVWYN28erFYrXnzxxfTx9evXY8uWLaJWhWEYhmHyGRaoGqY4b3eJqzp2tsShGdmW+swITPFcfvnlOP7440VaZ8eOHbj++uuhKAq+853viLbis88+GytWrEBJSQl8Ph8uvvhiIU66K5BlGIZhRu+wQErr5BoWaJUlcd7uQCmk+lCiy7wfZoQKlG3btgkx0tjYiLKyMixcuFC0ENPvxF133QVZloVBG7UOH3XUUbjnnnuG8pIZhmGYAhwWSAWxVHOSmeZpHxZIlvd0Xl9pjaloDHfYVzCDg2SOcDlIPigUjaGOHorCMAzDMCOziyec0EXNCaV1KHJC4oSGBWbN4+klJExIoGRS6rXD57D209Uzw6IGhWEYhmEGbFhgL6Dv7nXBeBdxwowiozaGYRiGGbRhgXm2LteG4ogldf7DDCEsUBiGYZgRNSxwd9B0AzXBOJKa0W/XxfQNFigMwzAMAwhRUhuMQ9VZnBQCLFAYhmGYUQ95nJA40dnjpGBggcIwDMOMaiJUWMseJwUHCxSGYRhm1NKtxwk5cHSyzmcGF24zZhiGYUYlJEy6iBPThBKpg6SzMdtQwwKFYRiGGVV063Fi6FDCOyCroaG6NCYDTvEwDMMwowYqgqViWCqKzT6QhCVSA8lgY7ZCgQUKwzAMMyqg9uGa1q5txJIag0LiBNxeXEiwQGEYhmFGbRuxlAxBidZDwogeSzcsYYHCMAzDFD6GAdSsAaKNgCsAVM4l69i8bhpNaqgLJmB0mo0rx5ugxJsH6IKZ3YUFCsMwDFPYbFoJvHYX0PAFQDUishUonQYsXA5MXtzjTYNxFQ2hHJ060Xouhi1wuIuHYRiGKWxx8vQyoHYtYHMDnorUlvZpnY53A7UQdxUnBpTIzj6Lk/pQAssf+xB1oXifbs/kDwsUhmEYpnDTOhQ5SYQBbxVgdQKSnNrSPq3TcTovnzZiXYUltB2yFuvT5azZ2oLzHl6NFz+rw0WPfMAzewYYFigMwzBMYUI1J5TWcfq7urrSPq3TcTqvDSqC3dkaRzihZZ+uxWEJb4dkJHt9GSR4/u/9bbjs8TVojqZEzztfNuHZT2r6+syYPOAaFIZhGKYwoYJYqjmx2HMfp/V4S+q8HqYR706nDnX//OL5z/HCurr0mlWR8JMT98Lxc6t7fX9M/rBAYRiGYQoT6tahglgtkUrrdIbW6bgr0G0bsRxrgpLoW6cOeaZc94+12FAfTq+Veey4+9t74+CppX26TyZ/WKAwDMMwhQm1ElO3DhXEWhzZaR5qGY41AxWzEC6ZhfrWuEjFZBfD1kLWon166Pe+asXNz25AMN6RKpo7tgjXHb8nplV4d+tpMfnBNSgMwzBMYUI+J9RKbPcAoZ2AGhPCQ2xp3+5FeP+LURdKZosTQ4MltKNP4oTu55U330bZf86EGu+InJy87xj87JQ58Lts/fXsmF0gmVl/1ZFHMBhEUVERWltb4fP5hvpyGIZhmH7wQTFLp6F13kVoKj+oSzEsRU4kM7tINh+iCR3v/PdRfCv4J9gkHU/pC/Bj82KsOGIGjtizIn1eqdcOn8PKf8cBhlM8DMMwTGFDZmwTF6WdZA1HAHWeGYiqnYthI1CitX0qht3WFELov7fj/xmvAm2ZpGOVd1B+pBuV0zrECTN4sEBhGIZhhke6p3ofUQRbE4wj0WkasRxvhhJv6tNdr1m/EdPevR7zpS3ptUY5gIb/+T0qJ8zb7Utn+gYLFIZhGGb4TiOmYthoHWQ10uv7o9k8r696AcdtvRM+qaNeZZNzL0gn3Q9r8bj+unSmD7BAYRiGYQqenG3E5AxL9SZGJzv7PAjFVax75nf4bvRv6ZQOsbb6ZPgWXwjNU9ZPV870FRYoDMMwTEGTaxqxpMXaimGzUz35sLW2EdKLN+Fk84OOx4AdX+7zI/j2PKLfrpvZPVigMAzDMAULzdOhoX/95Qy75uOPsPeaGzFWqk+v7VCqETv8FnjLpvTLNTP9AwsUhmEYpiAhYdJ54F8uZ1jK+nzVEEUoocJrt2JCqQtyp9E9mmHivZf+juNr7oFD6rjPdd75cB99LWw2z8A+GabXsEBhGIZhCgoxjTiUQCRz4J9pthXDdpinEZ/uCOJfH+1ETUsMqmHCKkuoLHbi+DlV2LPKC2vT5wi1NmPze8/iG+pL6XoT3ZTw8aQzEVhwetdBhExBwAKFYRiGKRhythEbWsq2Xo93EScPvP4lYqoOj90CtyJB001sbYri7Vf/i3neV1EbVoFEBEfKX6Zv1wIvts+/DoEpBw7mU2N6CQsUhmEYpiDIOY1YT8ASruniDEtpHYqckDjxu6yQ2kIjNkXCAvsmnBb/X3zQMB77ylsQkEPp231pVkE+6Bz4WJwUPDyLh2EYhhlyYkkdOyhNkyFOyBmWZurksq2nmhNK61DkpF2ciNvAwJHx5/ChPhmHyR8iIHWIk7XSdIyxxVD21b9TwwaZgoYFCsMwDDOkUK0JpXUy24jleAss0RohOHJBBbFUc2JRsutHxqpfIqZLwqbeIqVumzAtWGfbC9OKJZjOIliCW0RtClPYcIqHYRiGGTKCcRUNoUR2MWysAXIy2OPtqFuHCmKp5oTSOoQnWYfTEw9jirIzfV6t6YfqrsYUe1vnjmITbcpyonWAnhHTX7BAYRiGYYaElmgSTZFktm19pAayFtvlbamVmLp1qCCWalCmxD7Gcv0BeOSOQtq1xkSMK7bDr2SkiPQkTNkCw17U78+H6V84xcMwDMMMOg3hRLY4Idv60I68xAlBPifUSuxUgMOC/8S1xr3wSB3i5D1jGsa4JTiUzFuZkBNBaL7xUEum9+OzYQYCjqAwDMMwg4ZhpDxOyL6+HUmLt9nWdy2G7YlKRwI/0n+PfZW16bWQ6cT/2b6GUyyr4DDiMHSfSOtQ5ITEiWF1IzjrVPY+GQawQGEYhmEGBY2mEQfjop04s1NHidb22rb+y88+xLTVN6ASTem1TdI4bNzvOhw2fQYitQdBWfuIKIilmhNK66j+KUKcJCvn9evzYgYGFigMwzAMhTaAmjVAtBFwBYDKuYDcf1UACU1HbWsCGj1ORqeOEm/s1f2YhoEvXn0ci7beB5vUYea22n0I/MdchZl2l9gnEdJQsa/o1qGCWKo5EWkddo0dNrBAYRiGGe1sWgm8dhfQ8AVgqIBsBUqnAQuXA5MX9/804jw7dTqTiMdQ98ztODz6ctqyXjUVvD3++5iw6LtdxYckQQ3M6PX1mhTPkbhEc6hhgcIwDDPaxcnTy4BEGHD6AYsd0BJA7drU+nF375ZI6TKNuBedOpk01myF56WrscDssKxvQDE27n8dJszYD/2FKVuhu8pTdSvMkMIChWEYZrRC6RaKnJA48VZ1RCCsTsDiAEI7U8cnLupTuqfLNGLq1InUQDIyunfyYMtHq7DXR7ehSIqk1z5VZmLbftdAdRQhUR/NOcG4txhWD3RXGcDRk4KABQrDMMxohWpOKK1DkZMc6RGxTsfpvOp9drNTJ9bWqZMxBHAXmIaOr168HwfXPgpZ6iiifcH1P3jKfjxq3muCajRmTzCu9uV9/+nHgQTdWQrT3vvbMgMHJ9kYhmFGK1QQSzUnlNbJBa3TcTqvF506O1pj2eIkGYYS3tkrcRIPt6Lp75djUd0jaXESNe34e+Vy3K/9D7a2JGG3Kih2WcWWDNtosjFNOO4NhuKA5h3L4qQAYYHCMAwzWqFuHSqIpZqTXNA6Hafz8iCu6tjeEstqI5bjTbD0so24YetncP3z+9g7sTq9thWVWHPwr/GSumd6grFNkSFDElvap3WacEyTjvNBt/uhe6q53qRAYYHCMAwzWqFWYurWiTV3ne6bjADhWsBbCVTMzmvg387WOHQjo1MnUgsl3tyrS9r27r8wc+VFGGPWptfes+6H0PF/gOoZn3OCMUH7brtFHKdJxz1hShZo7moYzpJetx3LUkoQMQMPv8oMwzCjFSp8pVZiuydVEKvGgEQQqP8caNwIJEJA85fAI6ekun26gQpha4NxmO0ix9CghHdAVsN5X4qhJVHzj+sx//OfwSmlimgNU8IrygJUL/wOvL6ibicYt2NVJKimKc7r9nGs7lRKhwqBe4nTpmCs3wmHNcs/nxkgWKAwDMOMZqiFmFqJK2YB0Sag+StAjwNWB1A8IZXeaW85ziFSaJ5OVhuxnoAltB0y3UeexFvrkHjiPOwffjm91mK68Y51Pyy0rEPZu3fBVrM6a4JxLlTdhFWSxHm5CmE1Zxl0dyUgK72OmgQ8dlQVOWHh6MmgwQKFYRhmtEMi5dQnAP8EwOYBSqYAgWmAw5dqOaYWZGpFppbjNidYipbUheJiInGmbT0N/OvNTJ2mjatR8vTZmK5vSK99bo5FvXsm9vUGYbjKIKkR+NY+ggkBh+jWCSc0mJ1qWmif0kx0nFqO+6sQlqIlY/xOFDm7ih5mYGGBwjAMwwC1HwOhmlTNic2dXZvRqeWY2ohrgwmE41qWbb0lWgMJHQWyPWKaqHn9Ycx68zIE0JpeftXcG4GiYkywt6eHJBh2n5ipY2/+IjXB2KqgOaoioRswYIot7dM6HW/3QxHtw46+FcJKFDVx21Fd7ISVoyZDAvugMAzDMPm1HMdboIcbxcC/hKr32bbeSETQ+t9bsX/o1bRlfcK0YJVyEBZ56yB3dlxTbGLgH83U2bN6Bs48eKLo1qGC2EgyldYZV+LK8kExZZswXTPJcK6XUNtymccOm4W/ww8lLFAYhmGY7JbjXAWkWkLYwNcb7pQ4MQ3Y6tbA2rIJpsWZ9yC+WP1mOF+8GnP0bem1nWYAX1kmYLF7KyDnEBR6UkwjpoF/BImQmVU+0a1DBbFUc5LpJGvYfNCdgV47wlLUhNqVi11sc18IsEBhGIZhOlqOqSCWog6ZYsM0YcaaES+ZiWjJLDi2vYbi1b8Wk4IlQxXCRfONR3DWqWKKcHc0rX0ZUz+8HW50zOFZLe8FfcmNmPvJbZCbqeaEIjiZQseEnAhC9U9JiaA2SIxMKsuuNTElJeUIS3U0vYSiJeVeB0dNCgiOXzEMwzC5W45NQ2yN0E5oFjea970Qju1voOzlH8FW/6mInBgkCCxOWJs3ouTtO0W3TRcMDY0v/QZzP7w+S5z82/11eE66G1UVZULcmFY35Gh9qouIaln0uNin1mA63lOEJl0I20txkoqa2DCm2MnipMCQzHTj+sgkGAyiqKgIra2t8Pl4zgLDMAxBha5rdwTRFE2ixGXDrGpfqvaDWompW4cKYg0VhmxBvGgKWva9EPExC1D51Ddha/xMdNd0iXRE60Wko2HJnWkxYUSbkXz2OkyLrUmfGTKdeGHCcsxbeJQQCO2QuKFuHSqIlQxNpHV2FZmhQljD4Rc/vYWKX8u8dvY1KVBYoDAMw4w0qBWYBvxR4SvVllD6JmMa8RsbGnDvyo3YWBdOeYcoEqaUe3D+4ilYMLU0fftwcy1azFREghxhLa2bRWqHIiZQctWKxMVQwMZDboEamIHY9rXwr7wWZWZD+pSNZjW+nHUBpu+9KHdExDRF6ogKYqnmpKfaFkot6a7yPhXC+pxWBNy2LIHEFBYFk+K5/fbbxf8oy5YtS6/F43FceOGFCAQC8Hg8OPnkk1Fb22F/zDAMw3SCIiAPnwQ8dhrw1AWpLe23mayROLnqyY+xbmdQWMOXe+1iu25nSKzTcRIzDb49EUwCJW//FBXPfB9lL1wC/9s/hxJrAvRufE6o28bQhLhoff9JTHzl4ixx8qoxGxarHYd8+SuUvnRZ7nSQJAlxk6g+QGy7EyeG1ZtK6fRSnFhkWRiulXrsLE4KnIIQKO+++y5+97vfYc6cOVnry5cvx7/+9S88/vjjWLlyJXbs2IGTTjppyK6TYRimoCERQo6vVOhKXiaeitS2zQnW2PiKiJyQ0VmlzyFSG5TWoW2lz45wQsc9r2wQ7bvJL15G2StXpGpNFDsMZ0DYw9NEYvI7gRrJ3W0jKWh8/x/Ya91dsCElZDRTxlPGIsz1RVDltey6ZqUHTMjQXBXQ3eW97tLxOCzCqp4s65nCZ8gFSjgcxqmnnoo//OEP8Ps7cohUM/LHP/4Rv/jFL7BkyRLMmzcPDzzwAN544w289dZbQ3rNDMMwBQelZah2hBxfyfmVWoXpAzzDCTby0s+xqTYoikI7pzZov8hpwRe1YXy4pRnF7/8WUiKYGqinUGeNDNPmg2FJiRQl1ijkQgcmtFgINTEFe7S+ml5tMH14TpqPY0pq4bCSG6ss0kOZDrFdBhX2VAjrG9frQlhFllDhc4gunS4eK0zBMuQChVI4xx57LJYuXZq1vnr1aqiqmrU+c+ZMjB8/Hm+++Wa395dIJERhbOYPwzDMiIdqTqiwlRxfO6dF2pxgrc0bMFnflHMaL/VLyJCQNAzI5G/S9DkMIQQy74ucWUvENGCatUPmae3dNi3BVmjJGMahJn32R+ZUfGmdiqW+bTnSKR0OsfRYPZF2hPWOAeTeuWNQ+mqs3yW2zPBiSAXKY489hvfffx+33XZbl2M1NTWw2WwoLi7OWq+oqBDHuoPui7p22n/GjRs3INfOMAwz3JxgFVNDqRxCUs+2ozdMUxTLkmU8xTgqEtsg6Ync9vA0DdhVIVI5VBArRxuwM2ygVKuDT+poIf6X9WgoB52DvS2bu7eZz6hZ6Q5RCOuphuEoyfeVSN21LKHc5xCRE/qdGX4MmUDZunUrLr30UjzyyCNwOHpfgd0dV155pUgPtf/Q4zAMw4wqJ9hcaAlRoOopqRBza9odJlLixIBhGojG4tjHH0V5iU8IA6opyYliERGNltnfxxZlPCYYWyFLqfuLm1b8JXAp9jz5SgT8/p7vp5NDbH8VwrpsFuFr4uGoybBmyAQKpXDq6uqw7777wmKxiB8qhP3Vr34lfqdISTKZREtLS9btqIunsrKy2/u12+3C7yTzh2EYZtQ4wcaau9Z00H6sGVLpNByz9Ch47Apqggkx/Zds6+OqgWAojEnWJpw0OwAtMEP4j5CDa3adibgzsR51VsH48BFMjnb4m2w1y/CPWXfh0KNPhk2RRIvwru6Hjmc6xO5OIawsSSj12lFZ5ICFB/wNe4ZMoBx++OH4+OOP8eGHH6Z/9ttvP1Ew2/671WrFiy++mL7N+vXrsWXLFsyfP3+oLpthGGbYOcGKfbtXHF8wrRy3fn02ppW7EY6raIwmISdC2L8khu8fPD41bE+SenR2bTQ8sDd9hnJtZ/rhX8M+WH/Y77Bgn4xuzF3cTy6H2L46wlJnzhi/Ez4HJamYkUBBGbUdeuih2HvvvXH33XeL/fPPPx//+c9/8OCDD4pIyMUXXyzWqZMnX9hJlmGYUUUnJ1iR9qHIComXyYvFKU2RJJoiCWyojSAWrENAimQN2+vW2VVSsFP3YXxyY/ocw5TwV8cp2PN/zkOJK7c4yNchltJGva01oeLbErcNRU4WJiONgi5rvuuuuyDLsjBoo+6co446Cvfcc89QXxbDMEzhOsaSCJm4KKeTLH0fbQgnEYqr1DSMPbxhyA76jpo9dK8dEg8NFfuKLhuldSsSHzyG8cmOjptW04Unqi7HksMOh6WHQtTM+8nlEJtyhC1LOdT2ArtVQZnHzjN0RigFFUEZCDiCwjDMSJyfM67lXUz67PeQeoiUZEJv9bXBBKJJDdBVWCK1kIxuCmo733bnGvheuQ7FRnN6bZ05AR/tfT0W7DV1956T1SPESW9qTVID/qwodnXTHcSMCFigMAzDDAMy5+fMVT/CVcbv4JXjsHkCcLlcqe4dKpClGpTj7s4SKbphoiYYFwWx1BqskDgx9V0/KHX4rHkc49feCws6zn9GWgTn0h9jSnnfmxCoEFZ3lcK0eXt1O5slNeDPbmE32JFOQad4GIZhmI75OWRRX+K04Af6U3AbMewwSqCETYyxGPDYnQC141JBLNWgUJpHlkULcU1rXGzJWE2J1kPq0lHTFRIy2ku3Y3L9y+m1pKngIfdZmH/0d4TrbF+hQlga8gcl/7qRlNOtVUROeMDf6IAFCsMwTIGndTLn50zVN2CssR0h2QurRALERF0oIZxSxQc3OclS2qdmDRLlc1DbmoBG7rCxRiiJbNuG7pCDW2F57mqMTXyZXqsx/Xhq/FU4euEBu2V8ptupEDaH220PWJVU1IRmBjGjBxYoDMMwBQzVnFBap31+js8IwmJqUKVU9IHEQkIzEFN1uOgDnJxk4y1IBOux0xaHYegipSNr0fwe8MvXUPzGT+A2O85/x9wDX+5/HY6dMabPz4Ps8cnXpLeFsBQ1oS4djpqMPligMAzDFDBUEEtRkvb5OUHZB02ywAoVSdhFa7BupupMBFoChmxBg+GFQcWw4Zr8imENHca7f8SEDQ9nLf+vfBzGHHkJ5gccu1cI6ywF5PwjIBw1YVigMAzDFDAlLhusiiTm5zhkBZuUKdiujMUEbTMaYYMBSYzzE2kX04QRa0a8ZCaSxVNgCW3LqxhWzMJ54QaMa1mdXouYdtxfdDGOPOo4eGxy3wthnQGY9t4V03odVgTcNp48PMoZ8mnGDMMwTPfMqvZhSrknPT/HlGQ84fwGYpILAbMRFiMOhwI4kYQe3AnN4kbr7LOgRGryEidKw3o4nzobYzLEyUajCg9NuQsnHnd8n8VJyhF2TK/ECYkssqmnehOZB/yNerjNmGEYZth08egodllhV2TskfgAp0SfwCRpO/x2CYrVhkTxFARn/T+ogRl53a/02dMoX30XbFDTa8+b+6N1wZU4cHLpoBbCUpFvqcfOk4eZNCxQGIZhhpkPimqYsMoSppa5sHyvOMY5YohbiqC7yyBrsV3fmZ6E/NpdGLPt3x1LpoT7rd/F7KPOxLhiW98LYV3lMK3OXg34C3hsIq3DMJmwQGEYhhmGTrJUmzKt3IP6cAKqmsy7GJY6eizPX4PyyPr0WoPpw58Cl+GEpYvhsvYxpWN1Q3eW9aoQlgb8kVU9Tx5mcsFFsgzDMMMEqsuYPbZI/B5Pqmje+A4soZ2wmCY0/5RdplQsO1bDu/J6eIxgeu1DYwrennQBvr1gHiSaiNxLTEiiQ6c3tSZiwJ/LhqJuhgsyjPj/hGfxMAzDDC9i61+C+dpdYviepCfEsL1c04HTmCaUjx5BxSf3Q4GRXn5cPwTl1gQWODb3fPtuMGU7NDc5wuafEiKzNao1Ict6hukJFigMwzDDiPC6F2F/9jJIiSAMmyclDqimJBGEaXWj6cDLskSGpEZgeeUWVNa9ll5LmFbco5+AE4q+wFhbtMfbd4duL4bhKMm7EJajJkxvYQnLMAwzTGgIxSC/fhekRCsMZwBQyDxNFlvDVSbEiG/tIyJiQlhav4T7Hz/IEidbjTL82jgFZ5d+irG2eI+3764QVnNXpx4/T3FityoYU+zklA7TK7gGhWEYZhgUx9K8HW3LeyhqWg9DTADuLA4kGHYfLMEtIvWD4Hb437wddpNESIpVxhxsUcbjYs8bkCRHj7fP1arc20JYjpowuwMLFIZhmAJGo2nEwTjUeBTu5i8gGSpMJVUo2w7FO5KaDt1Q4Ewmoax5GGU7V2ad8wd8HeP3Xoxvf34jDEs3HieKTUw8Fs6yu1kIS1ET6tDhWhOmr7BAYRiGKVASmi6mEevxIJRonag5oYJYqhlJpXeAmKqhJaZB03XYEYdhalniJGi68AvXJfjaUUehOr4B5obs22ehJ2HKFhj2oj4XwlLUxO+yotjVNy8VhmmHBQrDMEwBEkvqqA3GgWgjLIlmsaaWTBfdNtbmjTBcdjHBuCGchAkTdjOBYoThkTpSOuuMcXh87NX4f4fsAZsiQXVl3z47TWSKQlnVP0U8Tl8KYTlqwvQnXCTLMAxTYITiKmpaY5DCO6G0iROBJIlWYOq2kaP1iESjJCPgM8OoQmOWOHlKX4DrnFfj9EP3FOIk1+2h0/mG2NI+1ZiI49S23ItCWFFr4raJQlhO6TD9BbcZMwzDFBDNkSSaw9EenWFtNath/eDP0Jo2w2ZqKJbC6WOqqeB2/VS8Y58PO1Rccvh0TCpzdbk9detQQaxkaCKt0+6DEh+7SNjV51sIy1ETZqDgFA/DMEwBQJOKKV0TDodgidRCMrVuzyWfkrVTXJjSeB3KpZb0eq1ZjB/pF0HzjkWJbKAlZiKUUHPevqFiX9GtQwWxVHOSLJkBw1WaVX+ST61JkdMqfmeY/oYFCsMwTIG0EcfCzVCi9ZBEX0732Le9iYNW3wSXFEmvvW3MxC3yefD77LBJJhK6CaskwWvvxk5ektKtxL0thKU0TpnXDrsl/7k7DNNbWKAwDMMUQBuxFmpIF8N2i2nAueZBlKx9CHKGiPmjdgyetJ+AMkdqjYpmIwkN40pcmFCand7pTG8KYSlSUuykDh2OmjADDwsUhmGYoWwjbo7CDNdA0ajgtXukRAjuVTfBX/d2ei1q2nG1djY+scxCmVWHAQmqnhInTquC4+dUQZa6d4TVXWUwrT0LmHY4asIMNixQGIZhhqqNuLkVcrgGstG1TiQTa/MGeF66Gp74zvTaJqMSvyn+MRbOngL1s1rUtMQQSabSOhQ5IXGyZ3VuYzXD4sq7EJajJsxQwQKFYRhmkAnGVTQ1NUGO1JHBfI/nOjc9i6K3fg6rmUyvPafPw1vTf4hLDqiCIkvYb0IxvmqIioJYqjmhtE6uyAk5wlLrcL6FsBw1YYYSFigMwzCDSGM4gVBTbba/SS50Fe53f42SjU+llwxTwi+NbyKw8HScOdmTXicx0rmVuDOmbGsrhCWDtp7hqAlTCLBAYRiGGaxOnWAMiebtu6w3oU4ez8vXwNeyLr3WZHpws/VSfP3IJZjkt/busW0+MUsnn0JYjpowhQILFIZhmAEmqRmobQ7CDO6EbHSkanJhr/0A3pXXw6l2+Jt8ZEzC/aU/xnlLZsJrz98A3IScKoS1dURbeoLm55C3CfuaMIUACxSGYZgBLoata2iAtKt6E9OE+9O/oujD+6BknPeYdig2zroEl80LQO6FIZqhOKC7KwB512/zViXla+Kwsq8JUziwQGEYhhkggrEkmut3Qk50RENyIalReN+4HUXbXkmvJUwLbjXPwB6HfQPfG+/s1ePqdj8MZ0le53LUhClUWKAwDMMMAE2hGEL1WyCLgXw9vAkHt8D30lVwR7ak17aZpbjZvgKnH3kgxhXlX2+S8jYph2ndtaDhqAlT6LBAYRiG6eeZOvXNQcSbtkHuYZ4O4dyyEr7Xb4XNiKXXXtX3wl+rfogViyfAZcu/3qQ33iYcNWGGAyxQGIZh+gndMFHb0AitdWfP9SaGBu+H96N43aNZy/dqX0Nw7+/jR3OK8i5UFd4mjhIYjuJdnstRE2Y4wQKFYRimnzp16ut2wog0oCdpIcdb4Ft1Pbz1H6TXgqYT1+ICLF56FI4b48j7MXvjbUJTh0vcNu7QYYYNLFAYhmF2k1hCQ0PNFiAZ6vE8W8On8L1yLZyJ+vTaemMsbnP9EOcfORvVXksvvU0CgNRzGoijJsxwhQUKwzDMbhCMxtBSuwWSFu+5hXjDv1D07t1QMupS/qUfhOfGXoqrD6mCw5JfvYkpKcJ0LR9vE5/TigBHTZhhCgsUhmGYPtLUGkS4fiukHophJS0B3zu/gG/zM+k1zZRxm34qPPO+hR/O8uaddsnX24Tm85R67HDb+S2eGb7w/70MwzB96NRpaGhArIWKYc1uz1PCO1H8yjVwtX6RXqs3i3CFtAwnHrkQe1ftunakHV0Uwvp3eZ7TpqDMY4dFyb8DiGEKERYoDMMwvZ2pU7cdaqixx2JYx453UPTqjbBpHXUpq41puMv7Q6w4YhrK3Er+3ibucpiWnr1NKApT4rKhyNW7OT0MU6iwQGEYhskTVdNQv+Mr6Ilw9yeZBryf/AVFH/0pK7ryoHYk1kw+BzcuKINNyTOlY3FCd1FKp2cxY7emoiY06G/Xd2oANWuAaCPgCgCVcwGZoy1M4cEChWEYJg/i8Rgadn4FU0t0e46UDMH/+i1w73gjvRYzbbhG/z4mH3gcVsz09MLbxL/LlA5FTYqdVhTnO+Bv00rgtbuAhi8AQwVkK1A6DVi4HJi8OK9rY5jBQjIpmTqCCQaDKCoqQmtrK3w+31BfDsMww5BouAVNNdtgmnq351ibN6L4lavhiO5Ir31llONK5TJ8b+m+mFWeX72JKVtTE4h3kdLpVdSkXZw8vQyg6I/TD1jsAImtWDNg9wDH3c0ihSkoOILCMAzTA8HGWrQ21fT4Grk2P4eit34Gi9ERXXlB3wd/8l+KHy+dgBJnfvUmhtUjxElP3iZ9qjWhtA5FTkiceKvoTlLrNLPH4gBCO1PHJy7idA9TMLBAYRiGyYFp6Gis3YpYuLX710dXUfz+b+H9/O/pJcOUcJd2Mmqmn4ZbDvLDIkt5pXSEt4m95yivg6ImXrswX+sVVHNCaR2KnHROBdE+rdNxOq96n97dN8MMECxQGIZhOqGrCTTs+BLJZPfma3KsAf5V18HV8El6rcV043L9Qhy08DB8c6o7r9fVlO1tdvW2HqMmfhfVmnR/To9QQSzVnFBaJxe0Hm9JnccwBQILFIZhmAyS0RAaa7ZA07s3X7PVrYF/1fWwJZrSa58YE3Gt9TJcdPQemF6an5DQbUUwhF1991EWqjGhqIndkl+aKCfUrUMFsVRzQmmdztA6HafzGKZAYIHCMAzTRqy1AY11O2B2Z75mmvCsfwJF798DOaNg9nHtEDxZdh5uWlKFYoeSp119GUxbz1EWiphQ5CRfp9luW4krZqe6dWrXpmpOMu+P+iSoULZiVqrlmGEKBBYoDMMwhoFw03Y0NzeLipBcSFoM/rfugPurF9NrSVPBjdrpwJ4n4tb9ioTFfH/Y1e/WgL/uWomnLAFavkoVxHbp4vGmWo3ZD4UpIFigMAwzutFVtNZuQTDSvfmaJbgV/pXXwBHcnF7bYZZgub4cxy7eH4dNcuX3UMLbpGSXA/6oS0fOQ+zk3UpMkRMSJ/POBDa+lBIvVHNC4oUiJ+yDwowkgZJMJrF582ZMmTIFFgvrHIZhhh9mIoymum2Ixrs3X3NsfRX+N26FRYuk197Q98StjuX40RGTMclv7Re7eosso9Rrg8vWx/fTtlZiek4xRzl0A1A0E06rE1J7KzGJk1OfAGo/ZidZpuDp9b+EaDSKiy++GA899JDY//zzzzF58mSxNmbMGFxxxRUDcZ0MwzD9ih5uREP9TiS1bszXDF3Y1fvW/iVr+T7teLxW+T3ccWgZvPZdt/saVreoN+nJrt5jtyDgseeVIuqWmjVI1KxHXdKBcDQmSkuo1MRukVHutcPT3kpM4oRbiZlhQK8HMFx55ZVYs2YNXnnlFTgcjvT60qVL8de//rW/r49hGKZ/MXQkm7ahrnZHt+JEjreg9OUfZomTsOnAecllqJt9Lm45snyX4qTd20R3V3YRJ4Zp4vOaMN77qhn1oQRKd1ecAPh0w2aEY1GENRmKJMGqSGIbVw1sb4khrCupmhRuJWZGagTlqaeeEkLkoIMOyqosnzVrFjZu3Njf18cwDNN/aAnEmrahsTXSbaeOtXE9SlZdA1u0Nr22wajGMnMFTjt8Ng4e37MF/a68TT7Y0oxH39mKbU1R6IYp2oinlHtw/uIpWDC1tM8Tlv93bQQXmBa4ZB1JKfXWTm/RJFRU3URLKAw3dQRxKzEzUiMo9fX1KC8v77IeiUR63wrHMAwzWCRCCNV+iYbWcLfixL3x3yh77oIscfJv/QBc7LwNV56wT17iRLcXQ/OO6Vac/OL5z7G5ISyKYSt8DrjtFqzbGcJVT36MNzY09Omprd0RxEvNldiujIXXDKVahzOg4ckOLYiwdxK3EjMjV6Dst99++Pe//53ebxcl999/P+bPn9+/V8cwDNMPmOF6Yb7WEu3GGVZPwP/2z1Dy1k+hUBqElkwJt6jfxePVV+Dur03A+CLrLgthNXd1t8ZrlNb567tbEVd1VBc5RQsxderQttJnRzih496VG0U0pLc0RZNIGhL+z/kNxCQXAmYjbGYCkmmIbRkaEYUTm2acw63EzMhN8dx666045phj8Omnn0LTNPzyl78Uv7/xxhtYuXLlwFwlwzBMXzB06MGdaGhu6bbeRInUIrDqGtib1qfXGkwfLlEvxpx95+OmOd5dRofFkD9nabeFsLIkoTaYwLbmGErc9i73R/vFLis21oVFNGT22KJePU1qS6ZUznvybNzjuQinxB7HGH0bvGYYmmTBJnkiHpK/jnMmL+7V/TLMsIqgLFy4UBTJkjiZPXs2nnvuOZHyefPNNzFv3rxe3de9996LOXPmwOfziR+KwDzzzDPp4/F4HBdeeCECgQA8Hg9OPvlk1NZ2hF4ZhmG6RY0j0fgV6hqbuxUn9p3vofw/Z2eJkw+MqfgObsMpRy7GqXN9PYoTcoTVXBVtxmu5xQlFSMb4nUjqhqgFsXUz6M+uyFANU0RD8m4r3vEBsOEFzMImTC1zoTmqYo1lDq733oRbvVfjbs9y3OK5GufjarRUzses6p6HETLMsI2gqKqKc889F9deey3+8Ic/7PaDjx07FrfffjumTZsG0zRF6/IJJ5yADz74QBTdLl++XKSTHn/8cRQVFeGiiy7CSSedhNdff323H5thmBFMPIhYy040hhK5601ME95PH0HRh/dDgpFe/ou2FP/rPQs/OaIS1V7LbjnCiqiI0wq/25YV5SCh4sghZhK6AassifN66xYry1b80jURN1mOxKvBWSIa84UyFQnTQEtUhcehiCLcPpm/McwQIZmkDHoBCYUPP/wQkyZNGpALKikpwc9+9jOccsopKCsrw6OPPip+Jz777DPsscceIlpDXUT5EAwGxTW3traKKA3DMCMYejuLNCDU0oCWWO5IhJQMo+TN2+Da9mp6LW5acbV6NkKTjsYPFxbDYek5uKzb/TCcJb2yqqfaktMfeEcUxFLNSWZkht6Ga4IJ7FHlxUNnHtCzkOjOLTbWjJjsxN2OC/Cv4DQRjSHBs7sdQgwzbGpQTjzxRNFqTNGN/kTXdREpoW4gSvWsXr1aRGzIX6WdmTNnYvz48T0KlEQiIX4yBQrDMKMAXYMZ2omm1iCiydyTiC0tm0W9iS20Nb22xSjDhdpyLDlgLk7e07OLlI4FuqscZq6JwG14HVYE3F2t6mmfhAJ165AYoSgHpXUociKiHPY8ohxtbrFCnHirOopx6XosDjhDO3GF91kc97VvoSmmiWgMpXU4csKMCoFC6ZibbrpJpFmo5sTtzp7Geckll/Tq/j7++GMhSKjehOpMnnzySey5554iSmOz2VBcXJx1fkVFBWpqarq9v9tuuw033nhjL58VwzDDGjWeKoYNRrqtN3F++SL81KWjd3TyvKzPxQ3Kxbj86AnYu8re40MYFid0V/e1JmS0RlGTnqzqKYpx69dni24dKohtbYtyUOQkrygHTSimtA5FTjoLKdp3+iE1fIHZypfA9H16vi+GGWkC5Y9//KMQDRThoJ9M6JtHbwXKjBkzhBihFMwTTzyB008/fbe6gcjpdsWKFVkRlHHjxvX5/hiGKXDirUgGa0W9iUYRhs4YGoo/uA/ez/6WtXy3dhKeK/4WfrG0DOVuy26ldMjLJF83WBIhB00OiG4dKojtVZSDXGCpDZrSOrmgdRoCyG6xzGgUKDQgsD+hKMnUqVPF7xSReffdd0Xr8re+9S0xkLClpSUrikJdPJWVld3en91uFz8Mw4yGepN6RINNaIokcxbDyrEmBF67Ho66Nem1VtOF5eoFcE1dhF8vKIaNXMy6ewhJaUvpuLptHw54bCKt0xtIjPS2lVhALrA0gZhqTnKlmWidjrNbLDMa24wzocKuXtbY7hLDMEQNCYkVq9WKF198MX1s/fr12LJlCxvCMcxoR9eA1m1obW5EYyR3p46t/mNUPPP9LHGyzhiPk9RbMG/+Evx4kb9HcUJdOpp3bLfixGlTMNbv7LU42S0q5wKl00RBbGe3WLFP63SczmOY0ShQ/vznPwsPFKfTKX7Iy+Qvf8me+JlvOmbVqlX48ssvRS0K7dMQwlNPPVV03px99tkiXfPyyy+LdNKZZ54pxEm+HTwMw4xA1BiMlq1oaA0iGM/RqWOa8Kz/O8qevxSWWId1/N/1hfiB8hP88Ni98LWZnl2mdHSyq8/RQkypbJo8XFXkhKUbT5MBQ5aBhcsBuwcI7RSvBUwjtaV9uzd1nM5jmNGW4vnFL34hfFDIk+Tggw8Wa6+99hrOO+88NDQ09Kq7p66uDt/73vewc+dOIUhI6Pz3v//FEUccIY7fddddkGVZGLRRVOWoo47CPffc09tLZhhmpBBrQTJUj8ZQPGe9iaTF4X/753B/+Vx6TTUV3KydhjWB4/DbpaUoceYucs2nS8duVVDmsYsBf0MGucEed3eHDwrVnFBap2JWSpywWywzWn1QyP+EumRIWGRCJms33HBDv9eo7C7sg8IwIwB6mwrXIRZuRmM4d72JEtqOUmohbumYql5j+nFB8lJM3mNfXHhgESw9FKIaFpcQJ7m6dChq4ndZUZyPidpgQQKNunqoIJZqTiitw5ETZjRHUCjasWDBgi7rtEbHGIZh+hVdFemL1lAkd0qH7OS3vYGSN26GokbSa28bM7FcvwRnHTIJR03NtkPIxCQvWUcJDEe2pUE7FC2h9mG7pfvIy5BAYqSaW4mZkUuv45TUcfO3v2W36xF//etfhUcKwzBMv5GMwmjeivqWUDf1JgZ8H/0JZSuvyBIn92vH4BL5apy3cDyOmNKDOJGt0D3VOcVJKmpiw5hiZ+GJE4YZBfQ6gkLpHWoBpuLW9hoUMm2jbptcwoVhGKZPxJqRDNaJlE6uehM5ERRRE+eOt9NrEdOOH6vnYBXmYRya8c/3mvHOBieOn1OFPTsNyusppVOwUROGGUX0ugaFoI4aKmBdt26d2Kf5OJdddhn22afwwo1cg8Iww7PeJBJqFv4mlITpjLXpcwRWXQtrpCOtvNGownnqcrQoJZjmTsBqkaDpJsIJDU6rgjMPnpgWKbrDL9I6uaImRTTgz2Xt0fKeYZgCFSjDCRYoDDPM/E1CO3qsN3FtelZ06shGx/H/6vvhR9q5KLZqmOSlqpKMQXww0RxVMa7EhcuP3gOmuyKnt0muAX95wwWrDDP0KZ7//Oc/UBRFtPxmQu3BZLJ2zDHH9Of1MQwzWlBjMIM70RSO5R72pyfhX/0beL54qmPJlPAz7Vt40n4CxlqaUGwHpE6ldSRWyIr+qxYN66N+TCt29W/UhKYLt7f8kg09tfySWRq3/DLM4BbJXnHFFWLycGcoEEPHGIZhek2sBXrLdtSHojnFiRKtQ/nzl2SJk0bTi++pV+Cj6m/i8oPcsECDpRtn2KTiwTYzgJak0aXWpLrYgRK3re/i5OllQO1awOYGPBWpLe3TOh1nGGZwIihffPGFmDbcmZkzZ2LDhg19uwqGYUZ1vUky2orGcO5hf/aa9xF47QYoiZb02hpjMs5PLsNR+0zCGfv48FVDTEwFppqTTPt6Sva0yMVo0h2wyhqKHCkfExIjxU7yNdmNWhO6VoqcJMKAt6pjujCZvFkcKWdXOj5xEfuTMMxgRFDI8XXTpk1d1kmcuN3dt/MxDMPkmqcTDTWjLpjDGdY04f30f1H24ooscfKotgRnmNfjkiNm4Kx9i8TAvgmlLlQWO0VBbLuJmy4pqJfLEJGcCMVVjAu4MbXCnY6a+PsaNWmHTNIoreP0d4iTdmif1uk4nccwzMALlBNOOAHLli3Dxo0bs8QJdfF87Wtf6/0VMAwz+qDZMa1b0BoK5xz2J6lRBF69DsUf3Es2amItYVrxQ/Uc/N5zHn57wlgcPL7Djp4MYqmVmLp1qCC2RbdjJ8oQ0hU0hJNw2RR894Bx/etrQg6uVHNi6WZ6Oq3TcXGeAez4ANjwQmqbI1LEMIXKGWecgRNPPLHwUzx33HEHjj76aJHSGTt2rFjbtm0bFi1ahJ///OcDcY0Mw4wkYi0wwg1oiiYQy1FvYmn9CqWrroY1uCW9ts0sFSmdwIRZ+N0hfrisXb9bUQvxmQdPwiOfRPBZswxV1WCVJEwu8+C0A8fj6L2qxATifoPs5akgVkuk0jqdoXU63vwV8PBJXETLMAMtUCjF88Ybb+D555/HmjVr0tOMDznkkN7eFcMwo7HeJNKM1i0fw4y1wGovgloyPZ0icW55BSVv3gZZi6VvtkqfjeXahfjGvLH47hxvt2kZU7Zh2ow9cN0eNmyojaA1nhQ1J3uPK0KZzwGlhzk8fYJm31C3DhXEUs1J5nXRc401A75q4I1fA8lIKuVDURUSLu1FtDT0j4f7MSMc0zRFc43F0jvJ0aeRnPQGceSRR+KHP/yhmGpMAoVhGKbHeTqtW5FY/xyMpy5E8StXoeTNWxBYdTVKX7oMth3voOj9e1H66nVZ4uQ32gm4RL4SVx81GafO9XUrTnRbETTvWECxi5qU6ZUeHDgpgIOnBURtSr+Lk/ZZONRKbPekCmIpbWUaqS3t0zpB4oSKaCnKIsmpLe1TcS0V0XK6h8mTUCiEU089VdR7VlVVCcPUQw89VJRdEIlEApdffjnGjBkjzjnwwAPxyiuvpG//4IMPori4WNiCkMGqx+MRGZHMOXokJFasWCHOCwQC+NGPfiQERiZkKXLbbbeJ4cEUpJg7dy6eeOKJ9HF6TPq3+swzz2DevHmw2+147bXXev9PrLc3+OlPfyrm7rTzzW9+UzwJekEoosIwDJNFIgS0bEF4/UrIr9wOS/NGmBYnDGep2FqbvkDZqqvhW/e/6ZsETSd+kFyBf/hOw+9OqMT+Yxw5X1QTMjRXJQxXaVYEg8zWxvid8DqsA/vHoOgHRUEqZqWESLg2taX9+RcBkQYuomX6jRUrVojRMv/85z9FFuPVV1/F+++/nz5OAYM333wTjz32GD766CN84xvfEAKEum/biUajohzjL3/5ixhZs2XLFiFq2rnzzjuFkPnTn/4kREVTUxOefPLJrOsgcfLnP/8Z9913H9auXYvly5fjtNNOw8qV2W31ZD1y++23C9f5vgQyeu0kS4rpkUceEdOL6QUigUKChebw0BN97rnnUEiwkyzDDBEUGYjUw4gH0RSJw/3sMlibN8JwlQn7NELSYrCEd0AyO2pR1htjhWX9tMlT8MOFxXBYcn+PMmU7NHcFoHSIEPrWVuKyocg1wMIkHyfZTS8BT12Q8kahyEmXJ2CkBM2J9wBTlw7u9TLDMnoSCATw6KOP4pRTThFrra2tqK6uxg9+8AMhXiZPniw+h2mtnaVLl+KAAw7ArbfeKoTHmWeeKRpbpkyZIo7fc889uOmmm1BTUyP26bYkOChDQmiaJj73KRLy1FNPiShNSUkJXnjhBcyfPz/9ON///veF+KHrowjKYYcdJs6nxppBq0GhJzFu3Djx+9NPPy0ECqV7Jk6cKMJJDMMwos4iVANVTQh/E9StgyW4BYadZuFIokZDTrYIA7bM5Ms/9fm4SvsBzj6wAifv6ek2pWPYfNCd2VETu1VBmccu2ogHHUr3VO/TtyJaOo9hdsGmTZugqqoQG5k1oTNmzBC/f/zxxyI9M3369KzbkaAgYZP+39LlSosTglJFdXV1acFD6Z7Mz3KqG9lvv/3SaR4SNyREjjjiiKzHSSaTXebx0e12h14LFL/fj61btwqR8uyzz+InP/lJVhEMwzCjnHhQRE7iSU20EBumCXuiFZKhwlSKRORAidZCSQbTN1FNBbdq38U/lCNw6zFV2KfK3m1KR3eVwbR5sqImZFNf7EqZsBUM+RTRUiqIzmOY3SQcDosxNDTMl7aZUK1JO1ZrdnSR/v30JpFCj0P8+9//FqUdmVCtSSa7643Wa4Fy0kkn4bvf/S6mTZuGxsbG9OydDz74AFOnTt2ti2EYZhhDb3KReiFQQgkVLVE1PYnYsBfBpGiBGoEl1ghZT6RvVmcW48LkJUjITjx4WBL+bsSJoTigu8qzUjoULaEBf/3iazJQRbTUrUNFs5ldPCRO7N7UcTqPYXbB5MmThbh49913MX78+HTE4/PPPxddtBS9oCABRUPI9qMvUESGIipvv/12ujOXUjwkevbdd1+xT07yJEQolbR48eIB/bv1WqBQ1TClcyiKQp4o7cqMwkIXXHDBQFwjwzDDoUsnVANTi6M5oiKSJHHSAbUSk0ixNW+AlGHK9q4xHRckL8Vh1k9xdfV7CI65I/fd24thOEqyohAUMenzgL/Bor2Itn2YYLwlldahyAkPE2R6gdfrxemnny5qQ6gGpLy8HNdffz1kWRb/Bii1Qx0+3/ve90ShKwmW+vp6vPjii6JA9dhjj83rcS699FJR2EpBCPI7+8UvfoGWlpas66CiWqpToW6ehQsXCqFExbs+n09c45AJFFJwmRW/7dDFZkIvxv333y/UGMMwI5i27hX69kYpnYTaKdVrGvB98pcu4uQB7Sgxifgq59/xTfeHaN7rsi6W8TRLJ5XS8abXrEoqakKdOsMCEik0j6dzES1HTphe8otf/ALnnXcejjvuOCEGqAWYggUOR6rL7YEHHhBlF+Tsvn37dpSWluKggw4S5+cL3ZYCDiQ0SPycddZZ+PrXvy5ESDs333wzysrKRDcP1cZQSzJFWK666qp+/Zv2uosnX0hlUdsxhaWGEu7iYZgBJNokfpK6kXPYn5QMIfDGLXBufyO9FjNtuEL9Pt4y98KvvQ9gdomJ4KxTkaycl3VbU7JAd1fApPqNNoqc1r5PHmaYEUYkEhF1IBQxOfvsszHS6HUEhWGY0YVhmFi7I4imaFK08M6q9kGm+TjC8yOKmKqhMZzsMk+HWooDq66BNbw9vbbZqMD56nI4Ssbgwbn18PvOQUOGk2xWvQm1EMuW4Rk1YZgB4IMPPsBnn30mOnkookHtwcTutPIWMixQGIbpljc2NODelRuxsS4MVTdhVSTMKLPhov08mDfW21YMm+xyO9fm5+B/+2dZxbDP6/viMvV8HLlnBS48sAgWeQKyK1VytxB7HBaUuu2QB8INlmGGGT//+c+xfv162Gw24U1CZm2UyhmJcIqHYZhuxclVT36McEITU4BtigxFC0OONsBtBc5ZNAWTyzu1Eeoqit//Lbyf/z29ZJgS7tS+gfvxNfxwYQBHTc3dekj1JoYzIIppCbKnL/XY4bbz9yiGGY3wv3yGYXKmdShyQuKk0ucQZmo+MwiPEobhtqAulMTj72/DD4+agfbABgkXmqVjb/gkfT/NpgeXqBfhC9c++O3hAcwoze1VYkpKW71JytCMpg6T6ZpF4RZchhmtsEBhGKYLVHNCaR2KnFigo8RoghWqMF3TDcBtV1DTEsNXDVFMKnPBXvshAq/dACXelL6Pj42Jot6ksmos7j+sBEWO3PUjnetN6DH97gIzXWMYZtDp9dcTGi5Exi2doTU61g61G1GvNsMww4+GSALRpA5FjcCX2AmLmRRRFU03hOsk1aKopolQPAnPur+h7MXlWeLkb9pinJK8AYdNLcLPjgx0L06sXuieaiFOKKVTVeRkccIwTN9qUMhCl3qkySQmE3KVpbVCs7vnNmOG6d3Au083bMYfV7fitTorPFJCeJfYLBKKnDY42hxbE7oBORnFL8qfRnlNxwTThGnB9doZYqbOHbb7cbRjHdSSqV3aiDvXm1B3TrmXUzoMw+xGiof0TC4PAhIou+u7zzDMELFppXA7TdSsR0U0gh9DxndtZXhUXYKPpGlIaCYaQkmUem2wW2QUx7fjWuUBlNfsTN/FdjMgXGFb4cbf7TdhhrQVpirD1vgZSt6+E00HXiZEiqg3cVXAbBugR46w5G3CMAzTJ4FCM3gIEidnnHFG1lAgipp89NFHWLBgQb53xzBMIYmTp5fBTIRRn7AhDg+cko7J2Inllidwt3YK1mAaDJhoiiSx2PIJluFRuPR4+i5e02fhEvVi7C1vxEOOX8AnxWCaFkiGBtM0ICUj8K19BPXVB0HLSOmUex2iIHZIPV24fZlhhrdAoSFC7REUcol1OjvGh1M/Ntnp/uAHPxiYq2QYZuDSOjQnJh5CzB5AIhKBIslQJQUtsKJYbsF3rC9hjToFsgmcjmfwXbyUdRf3aF8TbcQXWf6Bi63/hNweYaUpqbICSU/CsPtgCW6FTEPyfONF6zC1EJNIGUpPlynlHpy/eAoWTB2ZPhIMMyoECnn8EzQokGbxcDqHYUYANB+m/nMxWdcw9JQXrJQaTEy/RODGBKkeh7q24Hj9Ocwx16dvGjKduFw9F68bs3GP90Ecqb0iBEk2ElWbwJQtkPUkLIkWFHnt8DqyR74PhacL2fOv2xkS67d+fTaLFGZEYAxylJAyKg899FCX9S+++AJTp04d3BoUGk6UWVf71Vdf4cknnxQjmI888sjduhiGYQaZUA1Abq92DxSqLxPGaiZk8RugwQIbQrhYewA+hNM3+9wYg/PU5TA9lXhSvhUTLc0wtTZlk2PgH/0HxYrSiipYBlmcdPF0abs+h6yg0iejJpgQxw+aHOB0DzOseWOIooRHH310OojRDg0THPQ2Y/L8//Of/yx+pxHMNBOABhXR+r333rvbF8QwzCARDwKGBkgKDC0JRZKEMVrqC0jqS4gPQXgRyRInT+sH4sTkzRg/YQruO3EMxvpdkLQ4TNkKKXNYIGkVqkGxOCBrcShl02Gp3ntIPV06F/jTfrHLKo7TeQwzXHmjLUq4bmdQpFCpK4627VFCOj5QUE1qZWVl1g91/A66QHn//fexaNEi8fsTTzwhLoSiKCRafvWrX+32BTEMM8CQAAnXA+E6oHQG1KIJMGItQlEUOy2ppIxpIGA2oATBtlgKoJkyfqKeiku0S3D8Hn6cMl1BbWsCwT1PhWl1A7ICUwIkXQUMHZKhpmpQFAsUpw/SwuWAPPjOsBTqpm+TlNbJhV2RoRqmOI9hhiNGpyghte1TWoe2lT47wgldHKfzhhO9TvFEo1FRJEs899xzortHlmVRJEtChWGYAkbXgHANoMahmyYaI0mYe3xHtAHL0Xo47T6UOQFHrA62jFF+9aYPFyUvxSeWPbF/cRQbtzTisy9NWGUJlcUenD71fOxV8ySszRsgJ8PCO0XUoziKIFfOBkicTF48JE+Z8vAU6qaaE0rrdIY8Xeh50HkMMxxZ24so4eyxqYaX/uTpp5+Gx+NJ7x9zzDF4/PHHB1+gUNHLU089ha9//ev473//i+XLl4v1uro6+Hy+3b4ghmEGCDWWqjkxdPFh3RhOQKOUTOU84VFCbcAkMLyJViEw2lltTBP+JjZvKaaZTYhHVXjsFrgVCZpuYmtTFHeGinDGwTdhL78KJRmEQ22Fr6QcirccqJw7JJGTdqhIkPLwFOqmmpPMN3BKZ7VEVexR5RXnMcxwpCmPKGHrAEYJDzvssKwSj/5qoum1QLnuuuvw3e9+VwiTJUuWYP78+eloyj777NMvF8UwTD9D7b3RJpHeiakaGsNJinGkDycr9kGiYS0cNauzxMlD2hH4ifb/cOgUHyzReuxoUeF3WVNFr2QxoEhif2dUxh/XGrjtlHkocdvFN7Zcho4D5X6LaCPgCuQUQxTqpiJBysNTQSxdG71hU+SExInHrojj7IfCDFdKhjhKSIJkdzt2+kWgnHLKKVi4cKGwu587d256/fDDDxdRFYZhCgj6AA/XAsmI2A3GVbTGsr9FSckwSt68Fa5tr6XXYqYNV6ln45/mIlx0UBH2LZPx65diInLSLk7aiUhexJxeNDfF0RxRMbU8lQIeLPdbNHwBGCogW4HSaTnTSdTBQK3E7R0O9G2S3rApcsI+KMxwZ9YIjRL2aZoxFcaGw2E8//zzOOSQQ4Rp2/777z8435gYhskPLQGEdoq6E2odpvBuLJk96NPasgmBVdfAGtqWXvvKKBctxDX2Sbh7SQB7V9nx0bZWUUhKaZ12TElCs1SMmOSCQwYoehxV9UF1v0UiDDj9gMWeer61a1Prx92dU6RQKzE7yTIjDXmERgl7LVBo5s43v/lNvPzyy0KQkBnL5MmTcfbZZ8Pv94uWY4ZhCqCFOFIvUjpZ9SYZOL98ESVv/RRyhmX9S/reWKZegLFlJbj/8BKUu1NvEV67VUQcqOaE0jq6pKBBCkCTrMINlsQL5b8HpdC03f2WxIm3qsN3hWb7WBwpUUbHJy7Kme4ZiCJBhhlqFozAKGGvBQrVnlitVmzZsgV77LFHev1b3/oWVqxYwQKFYYa6hTjSAMRbxW40qYn5OZn1JuR9UvzBvfB+1lFlb5gSfqmdhF/pX8ex071YvqBYCJF2JpS6UFnsFAWxLrcHzVIJDFmBRZaQUA00hBOYVObBHpWDkN6hmhNK61DkpHPUlvZpnY7TedVcF8eMHhYMQZTwwQcfLByBQsWw1L0zduzYrPVp06ZxmzHDDCWGnooeqKmISEtMRSieXW8ixxoRePV6OOo/Sq+1mi5cql6I17EPLj+4GF+b2dEumL6dBBw/pwq/eqMen0U98DklmLqO+lASCS2V1tnaFMGZD7078N/WqCBWTwKmA0iEhP8KrK6O45TuibekzmOYUYY8gqKEvRYokUgELlfGm0EbTU1NWROOGYYZREiUkDgx9DZ/kwQSnepBbHUfo/S166DEOj64PzUm4Fx1GeLOavz68BLMKs/9b5js6qdPnYqzPBPx1/e2YkNtGK0xVcRlHBYFZV47bBZ5cGbbNH+VihBRV5L4YiilUjveCsDmSdWiUMEsdfUwDDNs6bU5AbnItlvdE1SHYhgG7rjjDtELzTDMIEMusMHtQpxQNKO2NZ4tTkwTns+eQPkLl2SJk//TF+Kk5A0oKR+H+08s716cyFZo3jEwbV4smVmBR88+COMDbmGjPSngxuQyN3xO6+C4VlJx7Bu/BkyjzUvfkqoz0WJAy5ZURIVaqqmbh1qOGYYZPREUEiLUUvzee+8hmUyK4YFr164VEZTXX399YK6SYZjcxaJUCEsfyjT3L66KtE77HB1C0mLwv/1zuL98Pr2WNBXcpH0PD+tLccqeXlx4YJGoJcmFYXFBd5WLujOKkpAI+XhbK+qCcVS0WWoPmmtle3EstUwXjQOC2wAzNUtICBVqNW7dkjo2RLb6DMMMoUAht9h169YJ1ziyvKd2Y7K7v/DCC6GqHdbYDMMMcEqHLOt7aCG2hLaJFmJby6b0Wo3pF66wn8jTcc1iP46a2r3jo2r34/NWGxKtYUwMuDGm2Dm0rpWZxbHUsSONS80T0qjmpn2KsgzjoIuw1rY3mj6vH5QiQYZhCkSgTJo0SZi0XX311V3aj6lwVtcHyQeBYUYrGa6wSV0XrrCdW4gd215H4I1bIKsdU4jfMvbARclLYPGU4N7DA5hemrsl2JQUvN9oxcPvb8O25ih0A1lj24fMtZKKXilKQkWwhN3bVnMSa5vKLCMZbsHd78TxVOi9QR03zzBM/9PrGGhqFHtXKJLicDj645oYhumuSye4A4g0CnESTqqoDXbyNzF0+Nb8EWUrr8wSJ7/TjsWpyaswsbocfzihvHtxItvxXrMLP395GzY3hOF1WLuMbScnWvrQb46qXd4P2l0r6Xi/u1ZS0SsVv1IRbDsUNaEOHrsPURVoTgIfNSuDPm6eYZghjKCQx0l7jpnm8WR28lDU5O2338bee+89AJfIMIyouyDLesMQniYkDiKJ7JSqnAii5PWb4Nz5TnotbDrwQ/VcPGMciO/O9uAH+/VQb2L1QnWW4q8vrEVM1VFV5Ey7Q1OkhCy0yaXyd6s24dxDJuOapz4ZXNdKKnql4ldyi6WunU523slwIzab49Dq2yMd2cm8bircJY8ITvcwzAgTKB988EH6jeDjjz+GzdbxDYx+p7k8l19++cBcJcOMVihCQakN6tQh93rDQGMkiWSb90g71qbPUbrqGlgiNem1jUYVzlFXYIcyFjcd6sdhk1y5HwISDGcAkrMYzcGEMGOjgX89jW0vctoG37WSil6p+JWs7KmlOsPiXos0IWQ48H+ub6R8UQZ53DzDMEMoUMjanjjzzDPxy1/+UhTLMgwzgOgqEKpJpzSohZjqTXTRYtuBa+Mz8L97J2QyL2vjGX1/ETkp9vlw3+EBTC6xdltvorsrYHN6UOG148vGaN4FsIunlw3+bBuar0NzdtqHBJIhm2xFqGg6bk0cgS32fXLmrQd63DzDMAVQg/LAAw+wOGGYgYZah8nXo02chBIq6kKJbHGiJ0ULceCt29LiRDcl3KZ+B+eryzB7XAl+/7Xy7sWJbIfmHQuf14fqIgcsbbN02gtgc15WpwLYdtdKEiu0HZT0CYmU0/4OfPth4MR7xHb7sY9gjXVO3tfNMCMWwwB2fABseCG17VRA39+cccYZIkp53nnndTlG3b10jM4ZtGnGDMMM5Cyd+tSwP5F+McUsHZqpk4kSqUXg1etgb1yXXms0vbhIvQRvGrNw5j5enLGPD3I3E8YNqxumuwLlPic8dsvgj22nN01qG6b0FRW/Un1Jd74l3Z2bMWdnlmGOyHHzDNNrI8P26CJ1vFFROdVtUWq003Tv/mTcuHF47LHHcNddd8HpTNkRxONxPProoxg/fnyf75cFCsMUCloyVVtBqR0yVNMNNEUSUDtFBew1qxF47QYoidRAQOJDYwrOTy5D0FqK2w8vwcHjU28SudDtfiieUpT77LBblMEf296bN9E8zx2p4+YZJm/o3wrVZ9GU74z6LFFUTuuUGh0gkbLvvvti48aN+Pvf/45TTz1VrNHvJE7ImqSvsNUiwxQCFDFp3ZoWJ5GkJtxas8SJacK79lGUvXRZljh5VFuCbyavg724Ar8/obxbcULFsJqrHPaiMlQXO7uIk85j2yniEE1oqAsnxJb2d3vGTvubKL1p2tyAh+bnuDveROl4X84d6OtmmELGaHNZJnHirWozMpRTW9qndTo+gOmes846S5SAtPOnP/1J1KzuDhxBYZgCS+nkaiGW1AhK3rwNrq2r0msJ04prtDPxuH4oFk904qpFfrhsub9zmJJFFMP6vF6UuG1dOnQGZWx75zfR9mugN1FqG6boER2fuCi1nu+5GamhoRg3zzBDTk2Gy3Lnf9u0T+t0nM7LSI32J6eddhquvPJKfPXVV2KfRt9Q2ueVV14ZngLltttuE2Ggzz77TOStFixYgJ/+9KeYMWNG+hzKY1122WXiiSYSCRx11FG45557UFFRMZSXzjD91KWzM5XaIWt5g1I6XVuILa1fonTl1bCGtqbXtpmlODe5HOswCefu58Opc7xZooPm9H3VEBXFtW6XB+MmTEB5sVsYrw3Z2PbevIkSfXzDHUnj5hmmTy7LnaF16nij8waIsrIyHHvssXjwwQdF3Rf9Xlq6e1HLIRUoK1euFFW++++/PzRNw1VXXYUjjzwSn376Kdzu1IyQ5cuX49///jcef/xxFBUV4aKLLhKzf3gwITOsocgAGa+1ObFSEWxzNCnm6mTi/OpllLx1O2Syc29jlT4bl6gXwbAX4WeHluCAsdkOzp/uCOJfH+1ETUsMrYYDrYof0yqSuPCwqUOb5ujtm+gQv+EyzLAh02WZooydoXU6TucNIJTmoc9o4re//e1u39+QCpRnn302a5+UV3l5OVavXo1DDjkEra2t+OMf/ygqgZcsWSLOoRzXHnvsgbfeegsHHXTQEF05M1oxDHP30wdkVU/zdNpSOlTEGe6U0qHZMsUf3AfvZ3/LWv6l9nX8UjsZU0rs+MnSAKq9li7i5IHXvxROsKa9GNOVRniN7dhW48bVf4/glpPmDp1I6e2baAG84TLMsKCye5dl8SWI3m8qZqXOG0COPvpoJJNJEc2lbMfuUlA1KCRIiJKSErEloUITkpcuXZo+Z+bMmaIy+M0338wpUCgNRD/tBIOp3D7D7C40y6XdObVPg+h0LTWBmCYR9+AKK8eaRJeOo+7Djv+PTReWq+fjRWMejpjiwo8WFsNhya43obQORU5iqoHZjnp8XX0A45LbYTE1aJIFm6LVePm/38VBk88dlJqMLmKuag7k3ryJFsAbLsMMC+TuXZbFvxUarEnHu2vl7ycURcG6devSv48YgWIYBpYtW4aDDz4Ye+21l1irqakRNvrFxcVZ51L9CR3rrq7lxhtvHJRrZkaXOKEW1nBCg99lE06r1AbcPohul10iaizlCksD/3pwhbXVfyL8TSyxjsF264xxOE9djm2oxCUHFuGUWZ6cRa5Uc7K9JYFp1nqcn/gTXGYUQckLVbLCChXT8BXG1N+NL98bj8kH/A+GQsz9eMZZ2Kvl+pxvoqbdg80zz8HWDY0pQXPwMsj/Xj6kb7gMM2yYnNtlWQj5AfZByaQ/XeYls7vxxIPM+eefj2eeeQavvfYaxo4dK9YotUNtSpkREeKAAw7AYYcdJgpq84mgkIkMRWfYnp/payTg9AfewbqdQVT6HF1MwMh3g1pZHzrzgNyRiWhT6kO17Z9aMK6KicBZmCY8XzyF4tW/hmR0mLI9pS/Aler34XC4cOOSAPap6qYmg7xQdsRw08uNuEe+A5ONL9EgdRqMZ5rwG42QK2eh5Jyne/xw351UVndirrnNj+Q380PYa9OfsrxNml0TcZ9+PP4VnNZJ0NR2OXcwjKcYZthi9MIEscApiAgKFdU8/fTTWLVqVVqcEJWVlSKf1dLSkhVFqa2tFcdyYbfbxQ/D9Bf0QU2RAPqw7WmAXpdBdBQtoULYZFTs6mbKFTauZrvCSloc/nfuhHvzf9NrqqngJ9ppeEg/EnuU2fCTwwMod3f/z5WcYb9UHRijvodqy1Y0mm4kYUA2JFgUSTjKGpAQhAdjQ5t7bDfcnVQWCRu6LYmTTDGXOVX4p+sr8NAZ/we59iPxJrqmUcGylQZCSQN+lyUrOnVRkxe3nvh7LHBvHxFvuAwz4MjZLsvDmSH9V07fPkmcPPnkk3jppZe6OM7NmzcPVqsVL774Ynpt/fr12LJlC+bPnz8EV8yMRiiKsKsBemrnQXSU0qFZOm3ihFI6ta3xLuJECe1A+XMXZImTOrMY30lejYf0o3DcdA9+c2x5j+KEnGE/aXXh8fe3wy+FYIUGVbIIcUBdQUnNFFvdMCFZ7LBKerfdL+3RD4oWue0WlHvtYtueyqLj/SLmdobFm6gx+XD8/BOXECckaBxWRURqaFvpsyOc0HHvqs0wKvcGpi5NvfGyOGGYUcGQRlCoxZjSOP/4xz/g9XrTdSXUTky+KLQ9++yzsWLFClE4Symaiy++WIgT7uBhBovMAXoUCdjlILpOKR3yIqFOHerZycSx/U0E3rgZcjKcXnvHmIELk5egWfbjhwuK8bWZnm6vi5xhdVcZfEUleOz5DxFN6rB6SqHFLLCaGpKSImpLzTaRYrXIqHBJkJC7+yWf6AcdJyO07tI9+Yi5zKnCfY5OMQwz4hlSgXLvvfeK7aGHHpq1Tq3E7dMPafiQLMs4+eSTs4zaGGawyHuAXqUbCO5IR026G/QH04Dv44fg+/hBSBmi5Y/aMbhN+w6KXTb85vAAZpV3n6okZ1jDU4kyfxE210fSH/I1lhnYro7DRG0zakwyZUtdK11zmdsGl97YbfdLf4iF3oq53goahmFGD0MqUPKpz3U4HMLwpT9MXximL+QziO7Cg8dADm5Nd+mQK2xjuOugPykRElET54630mtR044fqz/Av4wFmFNhw01LAgi4um/RMxQHJG8VKovdIhWS+SFvShKecn8TF4R/g2qjBSHJgySsUMwkPGoQcBV12/3SH2Kht9OQex2dYhhm1MCVZgyTB90Ooqv04I5jxuCg0nhanESSKt7e1IjVXzVjc31U+JMQ1qYvUPnsD7LEySajEicmbxLi5KQ93bj7mLKexYnVA4t/HKpLPEKcdP6QJz6yzsU9nouwxToJLimBAFrgRhzJwB7AcXd12/3S+X76IhbaxRyJNhJzZBhHqSPa0n7nqcLtgoY6fDp/YWkXNHS8XdAwDDN6KJg244GC2oyploXbjJn+IKv91iFhljcKWe+IKKz6og5/e2+bsJmnwln6QK8sduKc8nXY6/PfZJ37nD4Pl6nnI6G48MOD/Th6Wmq8Q0/FsJ6SCgQ6DfvraIOmqIU9fUwyDUzSNkIPN8BfVokbz/ku5B7Mk7q7n7zbqbvrBGp7HbrrBOpoS9ZzRqd4EjHDjE5YoDBMX0iEgHBduhCWWohXrq/D71dtEtECj90i2ntNTcW3E4/jf/Ba+qa6KeFO7Zu4Vz8eFR6raCGeUWrrsRjWdJejNFAqOmpy0V8f8v0pFnrjpdIbQcMwzOiABQrD9AYSJJEGIJ4ay9DeQlwfSuD2Zz/D1qYo/C4rqFem2GjBhYnfY6qxOX1uk+nBJerFeM2Yjf2q7bj+sBIUO5QuE4i9dismlLogyQosRVUoK/HD2k1tSH9/yA+VWOiXOUcMw4wYWKAwI44B+6DrNEuHCCdVNEdU0Unzqxc/h92qiCLTGfrnOD9+P4oQSp/7kTEJ5yeXYTvK8N3ZHvxgvyJY2q4rcwJxuygo83txwsJ5OGru+JzW9gP53PvlfkaQoyXDMKPUSZZhCmagX56zdKiFmIQJFcQSFPUgYeGWgSPVF/DN5JNQ0FFs+ph2KK7XzoCp2HDjISVYMtmVcwIxpYbcioSIbsW7TS6se34TfB533tdOIqI//EJ2+342reyYCcIW9QzD9AH+OsOMGHbXBbVbyHitdXtWC3FdKJEWJwSlZLxSEufH/4jvJP8vLU4SpkW0EF+hnQNICm5Y5MsSJx0TiHWRGqLoS0L2IOasFG3Ewkl15UYR0Rg2kDihqao0idjmBjwVqS3t0zodZxiG2QUcQWFGBP3hgppPSodM18h8jSIomUyxNeBn0i9Qpe9Mr20zS3FB8lJ8ZE6BV05gQYWGgydnt8tSzQmldShyQnUrIbkIcatPzM4hcpmjFUStRnfpG1qnyEkiDHiryOEtdb7VCVgcqcnEdHziIk73MAzTIyxQmBFBv1um0wdspC71gdue0omqiCQ6oibtOLesRMmbt0HWUw6yxKv6XrhEvQjN8KHCEsFEZwIn7T0RnXVEOjWkyGixlEBV3FnX39kcbcBSWP2VvnH4UutOf4c4aYf2aZ2O9zCskGEYhmCBwowI+s0yXXTp1APxYHqpO1dYGBqK1twP36ePZi3/VvuaaCMmptqDmFmq4Pg5E7FnDrMxSg3JsoKdCMBucbcZ0+c2R+toAdaEEMuc+kvrg+IX0p6+IQFHYsNiB7RER/pm3++lRAut54LW4y3dDitkGIZphwUKMyLoF8t0+qClQli9I0oSU1MpHZoGnIkcb0HgtRvgqH0/vRYynbhMPQ/PGftjjFfB2XMdmFpSKtqFu8vATKjww1U+CVvr46i0m91aw+9R6cWZD73bvyms3nba5JO+Wfc0IFlSryWt53qN5dzDChmGYTJhgcKMCHo7A6YLsbZv9RlCpDWmIhjvGnGxNXyKwKvXwhKtT699bozBueoKbDarsHiiE1ct8sNl67kGXbJ7UVE5HhceXtrjnB9K36yrCfVfCqtdlGx8BfjsaSC4EzC17FRNLjt8us2u0jck8HxVQMuWlGjJPI9eW5ry3M2wQoZhmExYoDCFSy++3ecz0C9zBkzWY4RrgWQkvUSusBQ1iaudpxCbcG/4F/zv/RISpTHaeFo/CD9Sz0FccuDc/Xw4dY53l74lircc5WUVsChyes5Pe20JpaIo2kOCqr22ZOXn9X1KYXUpqE18APn1u4GaT4BYk6iuEULCUwko1o5UzXF3dxUp9HfIJ30z8zjggz+nIiqZaSASJ3Zvt8MKGYZhMmGBwhQmffDRyOeDPgvqzqEuHerWyXCFJXGitRXHtiNpCRS/dxc8G/+TXtNMGbdqp+JP+tHw2mT87LAADhjr6PFpmZDhCFSjzF+SJWLo2ig90113Tl9SWJ0Lag+SPsHV5u9QYknCprUV9NLrSvOBgtuAonGp1E13nTYkEun8XaVvphwKjNm34+9HooXWKXLSw9+PYRgmExYoTOGxq0LMXN/u8/ygT0Pf5snfJCOl0+4KK6IKGSjhnSh99VrYmj5Pr9WbPlyUvBRvm3tgaokVtywNoNrb8z8nU7bCWzoO/iLvgKewOhfU2mXg9NCTsOgR7NA8GC+3QlYsgCQDpiQKfsVsoRJP9502FMEikUh/h12lb0jYkMBhJ1mGYfoICxSmsOgHH40eXVDJbI0+iDNSOlQA2xxNCo+Tzjh2vIOS12+Ckuzo6lltTBP+JrUowRFTXPjRwmI4LD2nLEyLA/6KCfC6ckdYdtU+3JsUVi5PmCnaFxhvbkdE9kE2NBiGAUkm75W2+hGKymhxQIulXudcnTb0elMEhERiPukb2nIrMcMwfYQTwUxhkU8hZvu3+95CKZ3WrVniJKnrqA3Gu4oT04Dv44dQ+vIPs8TJg9qR+HbyWjRIJbj4wCJcu9i/S3Ei2Twoq57SozjJxwG3PYVFkZJoQkNdOCG2tJ/ZYpzLE8ZnBGExNaiwwpSV1IRkMzONReeZqUhKT502FLmiCBZFSuh1bK/fof3j7uL0DcMw/QZHUJjCIt9CzN74aLSnH+gnI6UTiqtoiXVN6UjJEAJv3ALn9jfSazHThivV7+MpYyGKHTLO39eNsV4DXzbEemwjlp3FKK8a1+0k4t464OaTwsrlCROUfdAkC6xQkZQcSMAKF73OlOIRN6XXQBJ2/LvstCGRwukbhmEGGBYoTGGRbyFmvj4aWjL1LZ9ut6suHcokNW9E4NVrYA1tT699ZZTjPHU51pkTMLFIxhRnGM+vqUtPHa4sduL4OVVdjNis3lKUl1f36EvSFwfcXQ3yy1VQu0mZgu3KWEzQNqPetKFJ8sMlNaTEoKhD0QHFnmq3JjfYXXXacPqGYZgBhlM8TGHRXojZKdqRFQmh4/n4aNC5lNLJECdxVUdtazynOHF9+QLK/3t+ljh5Ud8Hxyd/IsTJwrFWlBsNaGiNwG5VUnUgVgVbm6JiGjFNJU7fl78KlZVjdmmalo8DrpqPA26Oglqy5qcCWsKUZDzh/AZikgsBs1EUyEpFYwDZlupiotOsLqByL07VMAxTELBAYQqL9kJMuydViKnGRD2I2NJ+Pj4a9IFL04cjHcZrNEuH0jn14Th0s6tlffF7v0Tg9Zsg66nBgIYp4U71FHxfvQxR2YPLFhSj2GwRbcjtU4dlSGJL+zSNmKYS09BhX+k4BErL83q6mdGOXOTlgNvlJUwV1FLhLKWI6NoolfQ29sLNOAeb5Ykos2mQ1CjgKkm1BB9+LXDaE8Bpf+c6EoZhCgJO8TCFR3shZl98NGiGDs3SyYi+kKdJYySJpKZ3OV2ONaD01ethr/84vdZiunGpehFWGnNR6pJx85IA3LKOlWs6pg5nQvtU1LqjJY56lGKCv2TwHHC7oTtPmMiYBVAPORV29/b87O0ZhmGGCBYoI4nezFUpdHpbiEnPnaYPU3tyBtSdQy3EnWfpELa6NUKcKHFyVE3xiTER56nLsM0sx5wKG25aEkDApeCjba1tU4dzp2wsigU1qhcR5B/p2C0H3DzouaA2vwgPwzDMUMECZRQ7rxY8+RZiUiEspX8yhvyJlE5URTjRsdZx0IRn/RMofv8eSFQc2sYT+iG4Wj0LCdhw0p5uXHRAsUi/tE8dpgiEJupFssWCLltQa5IniNyrVEyfHXB7wa4KahmGYQoVFiij3Hl12JMIpYzX8kzpSFoM/rd+BvdXL6TXkqaCG7Qz8Ki+RIiPqw/24+hp7qzbUSsxdetQQSzVnLSneVTZhlYlgMawjj2qPL1OxfTaAZdhGGaUwAJluNMPzqvDEhIklPqhttgMYqomWohzpXQswa0IrLoGttbN6bWdZgnOTy7Dh+ZUVLgVYVk/o7RrFIR0ArUSU7cOdcdQzYlhcaPeLEZrWN+tVEz6MTjawTAMk4YFymhyXh0ptuPUpUND/sgZNoPWmIpgPHc7rmPba8J8TVY7XGTf0PfExerFaEQR5lXbccNhJSh2dB3E1w75nJx58ETRrfNFqwVNuhdW2eiXVAzDMAyTDQuU4c5AOK8WMqLduCY1UyePlA6d5/voTyha+5es5fu04/Ez7ZvQoeA7sz04Z78iWPKIfuw5phgHzdkDWyJWTsUwDMMMICxQhjv97bxayOSYQNxTSkdOtIpBf86d76bXwqYDl6vn4VnjADgsEq5b5MeSya68Hl6WFQSqJsDh8mK2v5+eE8MwDJMTFigjxXmVCmKp5iQzzdPuvNrTXJXhUmfTPpQuny4dKsFpXI/SV6+FJVKTXttgVONcdTk2mmMwxqvg1qWlmFxizesSFIsdpdUTYbPnHvjHMAzD9C8sUEaK8yp161BBbGYXD4mTfJxXCxmqM6F6E6o7ySelA8C94Wn4370bktFRj/Jv/QD8SD0XEThx0FgHrju0BF57fq+J1eFGWdVEKJb+/edC7q7ctcMwDJMbyWwf1jFCCQaDKCoqQmtrK3y+vrWADgtGog9KjpQOzdJpjCRypnSgJ+B/95fwbHy6Y8mUcLv2HfxBP1Z4vp6xjxdn7uOD3LmguBvsbj9KK8ZC7mZWTl95Y0ND2veEZvGQ3wo5ynKxLcMwTAoWKCOJkeIkSwWwIqUTzVoOxlW0xjK6dEwT1qbPRa2JmKfz8QOwNa1PH24wfaJL501jFtxWCdcsLsHCCTnqdLrBWVyJ0rIK9DckTsg5NpzQxBRjmudDs3iofZnalcm0jTuCGIYZ7XCKZySRr/NqIUN1JiROSGy1oRqGKITNTOnYalbDt/YRWIJbIKtR0T4siZG8KT4wpuL85KWoQQATii249fAAxhfnrjehAX9fNUQRSqjCMXZCmRu+svHwFxf3+9OjtA5FTkicVPoc6dk7DlkRs3jI7p6Ok2kbm7QxDDOaYYHCFAaUsok0APHWrOVwUkVLRBVFsZnipOTtOyElw5S1gayGs8b3/UVbipu1/4ckrFg80YmrFvnhsuWOJH26Iyh8TWpaYmLWDqXGvOXjcMHh1VjQ//pE1JxQWociJ5mDAQnap1k8dJzOY4t6hmFGMyxQmKGHZulQISxt29BNUwz5iyU7imMFpikiJyROZFODTCKljbhpxdXq2fg/4xDh/HruPB9OnePtIgQyxQk5w8ZUcoK1wKI40IASbK9PihTM7qZachXB0u9Uc0JpnVzQoECaxUPnMQzDjGZYoDBDC1nVU81MRtFrQtPRGE5CNzvSPO1QzYmlZRMULQzJ6BAvW4wynK8ux1pzIoqkCG6ar2DfPcZ2+7AULKHICYkTmq0TlT2IWErglCU47OZup1q6K4I9alal+J1qTiit0xmaYkyDAvsydJBhGGYkwQKFKRhvk13Z1RPOLSthiTdlpXRe1udimXohWuHBTMtO3Ou8D+6ic5Ho4eGp5oTSOm67FS2KH6rFm+7s2d1US3dFsOt2hrClKYqAx4adrQlRc5IZ3aGGOvJ2Iev8vg4dZBiGGSmwQBmiTplR7YHRB28T0aXzwX3wfva3rOVfaifhbu0kmJDxNcdHuNn7BFx6EI32nkUFFcQmDAkxSxkki7NL23FfUy35FMH6HBa4banfSQjRY1HkhMRJfwwdZBiGGQmwQBkCr5FR7YGRw9skmtREvUlObxNqToo1IvDaDXDUrUmvtZouETV52dgHCgxc4XsW33O9BSXWCNU/BWrJ9B4vw+N0oUEph1uywZmjRqWvqZZ8imApfXXBYVPx37U14lwSQvRYPHSQYRimAxYovREn5NaaCGe7tZLFPK0fd3deIqWn8H9/FGYW9gTi2tSwvzaoM4e8PyLd2NUTtvqPEXj1elhiDem1dcZ4YVm/xaxAQArhl/7HcYDlC8ixIAyrG8FZp3ad7JyBoTgwddpkTPlEw2c1YTisSr+lWvItgh1X4sJDZx4weqNoDMMwu4AFSr5pHYqckDjxVnV8+NFwPpp/QxbzdHziom7TPRT6/3h7K275zzrx4TfG74AsyaPDA4Net0hdlrcJibKmSAKq3rUQVmCa8Hz+JIrf/01WMezf9YW4Sj0bcdgxx7YTv3Hdh2qjEaZmEZETEifJynndXoph9cJVUo1Srx0XHDpViML+TLWQ0Mi3CJbum1uJGYZhcsMCJR+o5oTSOhQ56fzNnPZpnY7TedX7dKkvIffT363ahHU7g8JwjD7zvmo0Uea1i/bWEeuB0Qtvk0wkLQ7/O3fCvfm/6TXVVHCT9v/wF/0IYVk/zqXinIOnwub+EZoSrTDsRam0Tg+RE93uR3FpJYrb0jYUqaKIVXu6rT9SLRQFoXQdRcS4CJZhGKbvsEDJByqIpZoTSuvkfBXtQDzVLtu5voTqKiJJTYT8SYxQMSYJFJops705hjF+Z1qkjCgPjBzeJvRaUK0J1Zx0hxLajtJV18DWsjG9VmP6cUHyUrxvThdusZOdEXjMKB5+OwTrwROxZ/WMXV6O4SpDWWk53G2vdTskQihi1V+pFrodiZv+jswwDMOMNlig5AN161BBLNWcUFqnM7QuW7GmUcFVqzrqSyjUv7khioRqiKgKCRH6gk/REosMaLqJ+lACbrsCCdLI8cCIB4FIfRdvE4oeUbdOdzi2vYHAGz8RzrDtvG3MxEXJS1CPYtgkA3t5oyiy6jBhFfUr5GUys4qG/+W+T5Makj0VqCgtFbUmuejvVMtARGYYhmFGGyxQ8oFaialbhwpiqeYkM41AH8KxZpgVs3Dnxw6EE+F0e2ksqYsPZBIqupny+LApEuJa6gNLkSXxwR1PGnBY5eHvgUHig2pNqOaky5A/KoTtZnC2ocP3yUMo+vjBrOU/aP+Dn2rfhgYLiiwaZnmjsMup+yBBR9EQ8jIhT5NJZa4ud0utx5K3ChWlJbCRIhxE+jsywzAMM9pggZIPVPhKrcTUrUMFsZldPNQ2a/di88xzsOHFaFZ7KYkT0i+KIkEyU4WhVHeihpJi7gs1elBkhVIeLTFzeIf/afKwGPLX4WNCz58+nBOq3v1Lmwii5PWb4dz5dnotYtrxY/UcPG3MF/vVjgSmueJdoiQk/CJJU3iadMaULJB8VagKFMPSTUfNQDCq/W0YhmH6ERYo+UItxNRK3O6DQjUnlPapmCXEy1ZtT6j6mqz2UotMTqGpIAt9RNGWjlPdSX0ojrhqiJgC1aoM2/A/PSnyNSGhlgHV3bT04G1CVvMNmz7CHh/eBGe8Lr2+0ajCeepyfGGOhVUGxlhCGOPQ0h1PmQgPGUkSE4izLkm2wVI8BhV+r4hSDRaj2t+GYRimn2GB0luRQq3EOZxkS7a1dmkvddhk2C2KKIilIAyJFRItTpsCl9WF7S1xjPU7ccvXZ2P2mKLh9027j4WwNKSv7p3/wzcjD8OOjujHf/X9cLl6HkJwodKj4OYlAfxjdQRbm6imxyrSOu1QB1AkoQk/kQmlHekdw+KEs2QsynzObocEDgSj1t+GYRhmgGCB0ltIaVTvk1d7Kf1HKZ1tTVGomimKNKkGhQbUUb0JdXhc9T97YO64YoyEIX9JPTXkr6dC2HXbGiG/eif+n/Faek03JfxM+xbu048X1SXzqu244bASFDsUGHOqxMRhKoilmhMSgRSdIHHitCo4fk5VOvVDHife0jEo8XTTbTVA5GNvPyL9bRiGYQaQwa0cHMG0t5dSHQl9IJEIoQ8uSjG47ArsVhkum4z6SBLRhCZSOsPyWzXVmAR3pPxNMsQJeZvUBhM9ihMpUodpr6/AERnipNH04nvqFbhP/5oQJ5M9SdxxZKkQJ8Se1T6cefBEESlJkrCLqWJL+7ROx8VlOUrgrxyXlzgRpnnbWrHy83qxpf3dIR97+3Z/G4ZhGCY/OILSj3TXXjpnbDHOPWQyipy24V08SZOHRSGs0auUDmGveR/Fq66HTeswbfvQmIwLksuwA6WQYWKqKwKfGcf2plhWVw6JEGolpm4dKoilmhNK69DLR23EprscZaWlcNksQ1Inkq+9/Yjwt2EYhhkkWKAMcHtpsTNVwEnf/IlFU0uHnzDpxhE2H28Tuq133WMo+vB3kMyO8x7VluBG7XtIwAanrAt/E5eFIiS5u3LoJevcStzRRuwXtT5DVSfSG3t7hmEYJj9YoAwA7cZf9IH48+fWD++uDmqlDtUAuppVoEo1NOEMIUFZks4RDkWLouSt2+Ha8kr6vIRpxTXamXhcP1Tsl1hV7OmJio6dRDddObkwZSvkompU+n15tREPZJ0I29szDMP0PyxQBogR0dVBrcPUQrwLR1jqyiFHVzJNI38XihbM9bRgufp7uKLb0udtM0txXnIZPjEni/2JzjgmOhOpVuxuunK6m0Zs849BRZE7bzHRmzqR3rrKsr09wzBM/8MCZQAY9l0dupaqNVFjORxhs+soSJxQlw0VBZOVv1uRsE/yfZzb+hc4kUift0qfjUvUi9ACLxSYGGcLotpuwJQoNZK7KycXhtUDZ0k1yrwdr2sh1ImwvT3DMEz/wgJlABjIb+tDVQjbGEkirmYXwlJahyInJE7Ip0QxDZycfAr/oz6fdd6vtRNxl3YKDMiYUGzBWbPteHdTVERcyAmW0joUOSFx0t6Vkwvd4UdRSSX8bltB1omwvT3DMMwIESirVq3Cz372M6xevRo7d+7Ek08+iRNPPDF93DRNXH/99fjDH/6AlpYWHHzwwbj33nsxbdo0FDLDsqujD4WwVHNCIoMiJz4zhPPjf8Qexufp4yHTiRXq+Xje2E/sL57oxFWL/KLd+tBp/pxdOTkvDRIMdzlKSgLwOXZdnzKUdSL9PXiQYRhmtDKkPiiRSARz587Fb3/725zH77jjDvzqV7/Cfffdh7fffhtutxtHHXUU4vE4CpnMb+u5KLiuDnKCbd2aJU6oJoQG/NWFuvc2IXFBNSfT8SVuiN2eJU7WG2PxteRPhDghKXDufj7cvKREiJPMrpw5Y4vENkucmCasjeth3/EOLE1fwPRUory0tM/ipCefGtrS/rCeg8QwDDMCkUz6+lgA0DfazAgKXVZ1dTUuu+wyXH755WKttbUVFRUVePDBB/Htb387r/sNBoMoKioSt/X5BmdKMH3wnf7AO23f1u1dvq3TByJ9W3/ozAOG/gMxEQLCdV0cYSlqonYjsNrZXBfBZy88gLPM/4MFHQMB/6nPx4/VHyAGBxQYWH6QDyfMys8t11azGr61j8AS3ALJ0ADFAal8OpRFK1KjBnaTLB+UtoLeYddZxTAMMwoo2BqUzZs3o6amBkuXLk2vkdA48MAD8eabb3YrUBKJhPjJFCiDzbDo6hApnXogHsyKmgRjmiiGpb2ekLQE9t34KxxiPpNeU00Ft2rfxQP60cIV1iFpmF+exPF7js9bnJS8fSckNQLDUQTT6oYFGuS6T1OTpGlY426KFK4TYRiGGR4UrEAhcUJQxCQT2m8/lovbbrsNN95448BeHKU8cgwMHDZdHTmG/FE6ihxhk1pHJKQ7lPAOlK66FrbmL9Jr9WYRLkheinfNmWK/WIljmiuKb+87sceunDSmKSInJE50dwUkxQqrRYEEK2BxAKGdqUnSNKyx02vdW7hOhGEYpvApWIHSV6688kqsWLEiK4Iybty4/nuATStTH5QNXwCGCshWoHQasHB5l2/3BfltnepMOs3RCcXVNqfbXWf7HDveRsnrN0FJhtJr7xrTcWHyUtTBL+5jnC2COaUSvja3Y1bOrrA2fS7SOobDD9lqh0XOmF1MKTKnP/WakzDMMayRYRiGGVkUrECprKwU29raWlRVVaXXaX/vvffu9nZ2u138DAgkTijVkAinPjAt9pTTau3ablMQBfNtnYb8Ua0JtRG3oRqGqDXJJ2pCty9+9254NvyTpt+klx/QjsKt2qlQYYHXJuGsuU7Mqwr02JWTCzkRhGTqkOxuIU66QK81GcdtfafHyBXDMAwzMihYgTJp0iQhUl588cW0IKFoCHXznH/++YN/QZTWocgJiRNvVepbPWF19nsKYmC8TepSIiVj+nBLRBV1J12gLpqmzyEnWmHYiyBH6hB45w4oiY4un7hpw4/V7+MfxkKxv0eZFT85PIByd+//lzIlBUn/FMgWB2QjCSjOrieRoy1Ff1b9PPXa9xC5YhiGYYY/QypQwuEwNmzYkN6nwtgPP/wQJSUlGD9+PJYtW4af/OQnwveEBMu1114rOnsyvVIGDUotUIqBIiedHUwLNQVBoooKYalTpw1qGW6Oql1M13J30aiApkHRQh3pFvI/McpxrroCn5mp4tdjp7uwfD4N7Ot96opm6uieKgTGTof84fRUNIoEX+ZrTIW8JABJ+OUZuWIYhmGGN0MqUN577z0cdthh6f322pHTTz9dtBL/6Ec/El4p55xzjjBqW7hwIZ599lk4HI7Bv1hKK9AHNn045oLW4y2p8wqBZLTNEbYjahJNaqIQlpxhd9lFY/dB0iQoWnOWOHlB3wcr1AsQhBtWaLg68DKWHHw6pD7U1dBMHYpGVRW74bAqqWgICQ4SI+1CRI2nPFqIovGpiNVwiVwxDMMww98HZaDoNx+UHR8Aj50G2NwdH5KZ0NwaSqV8++GhjaDQn5NEUqwlvUSChNqbI0m1x9uVvnQZrM0bYThLocTqoSQy70PCXdrJ+I1+IkzIKJeD+HXRI9hXWo/GQ26BGpjRq8s0rG7I3ipUFDlhs8jdFyHT86HUjqc8VXdSqK87wzAMMzpqUAoOKsikmodcKQj6EKUCzopZqfMKqH24J6v6nF00Vhcsoa2Q9Q633lbThUvUi7HSSD23fa1b8Gv/31CmhCDFNFGr0ht0ezGsvnIxSFHpHHmhVA1FQ9rbuBs3pupOKKIyHCJXDMMwTL/AAiVfKH2QKwVBtRAkTuze1PGhSjPE2j6k2wJivTFdI0hkSFoUFjUmumna+diYiPPVZdhmlov90xyv44ril2CTDEBPwpQtopA2X3RnKRzeAMq99pzt1uTCu3ZHCE3RsShxTcasMQHIii31OueKXNE6Fczmiq4wDMMwwxYWKL2Bvt1TQWZ7CoK+udOHI0VOBqObJJdBHEG1Jhntw70xXROYJhw734GSDGfVm/xNW4xrtTORgA12JPET64M4wbcZkKgGyBStwap/CtSS6bt+CMjCgM3jLUKpp+uU5y429Lop5hlNLXPhl66J8Ic+L9zIFcMwDNPvsEDprTiguojDr6XeWCDeNHh+HLkM4komA/ucBoyZlzXAj+pN8omaEJIaRcnbd8D11UvptaSp4HrtDPyvvkRY1ldLDfid9RfY07oTujIO0ONCnFAdSXDWqV27mjphShZonkr4vV743bkHJJI4odEA4YQGv8smJkGT0Pq0JoKbLEfiVutWOAsxcsUwDMMMCFwk28/usYNmEEddOrEmwOYCDrsaWvV+wq02oer5q9PgVpSuugbW1s3ptRrTj3OTy7HGnCr251s34Fe2exAwm0R9CiRZpHU033ghTpKVHeIoF6Zsh+6tQqnPBW8304g7hisGRV1KruGKJ/s34Arvs5CG6m/AMAzDDCosUPrqHiu+vXsG3oODIjcPn5QqziWDOLGmAVQnQkGSSB20kqmoPfTn6LkMNhvH1lcRePNWyGpHauh1fRYuVi9GE1LdTj+wP48VrmeAorEI7vldmDZv2rxNpHV2ETmhCIvprhSdOk6b0u15H29rxbl/eQ9uuyXVbtyJmKojmtDwu9P2xWzlS3aSZRiGGQVwiqeX7rGkCWKwQbeVwRGrg+W1uyANpAdHpkEcPbrekb6hLJNm8wHNX0JpXA8jn1ZfQ0fRR3+Eb+3DWcv3acfjZ9o3oUOBwyLhmn1iOLJ0FlrtC/ISI7k6dWR3GSqL7LBbuhcnBEV+qOaE0jq5oEnQNGyxKaYB07mVmGEYZjTAAqUX7rFUH1EXSiChGaI+0wE7fF99gu3vrsTcAzsM5wbEIE5WssSJTlrFMEWqQzbya/WV4y0IvH4THDXvpdcicGJF8lz81zhA7I/xKrh1aSkml1iR6MPlmpBEp47FVYyqIgcs3YiOTGiIIhXEUs2Jg55nJxK6ISZB03kMwzDM6IAFSp7usSROtrfEhCiwyDKVYkA3bIAexsMvfYBIYLaYXtzvOKiFV0oZklnsQp5oBmCSOCHybPW1Na5DYNV1sERr02sbzDE4N7kMG80xYv+gsQ5cd2gJvPa+RYNopo7uqoDD7UGFxwa5tlPHUTdRJprwPKXcg3U7Q6j0yV1qUKjod48qrziPYRiGGR2wQOkJ+mCVrTC1BOpChhAn1oyIgE1SYUhW7NTcoj32oMmBnN4efYZSS44SoHgC0PgFdFeZiJx0NOjk1+rr3vA0/O/elZqt08bT+oH4kXouokiNDTh9by/O2tcHuZepnPSVyFZo7kp4XC6UNbwF6R93511UTK/Z+YuniC4eKogtdllFWociJyROPHZFHO/X15ZhGIYpaLg3Mw/3WC3SJLpjKHKSxjThNUPYroxFrWu68O5YuyPYf7UvoVogVCNEiDHvdGgWF0yaSKyRwyuZpMUhR+t7bvXVE/C/9VPRRtwuTnTI+Il6Ki5SLxHixGWVcOvSAL4/r6jP4oRm6mieMSj2elDe8Dakp5eninppLICnIrVtH+xHRcc5oOjTrV+fLSIlVBBbF06ILe3T+oBEpxiGYZiChSMoebjHqk9ejDI0IQIvVNMKK1QhTmKSC084vwGbYkFLPCGKPXcbSuWQ8ZqemjYcUzU0e+dAOeCyjinDyZBI61DkpLtWXyVcg9JXr4WtaX16rQlFuCB5Md4y9hT7E4otuPXwAMYX527/7Qxllb5qiAqvFa/digmlLsDuEzUnAa8DRXalS1Fxbwb7kQihKBQJPXotqeaE0jocOWEYhhl9sEDZFZMXo2bR7ah/5nZMNHfAizA0yYKvLJOEOPnIOldEV3a7iLPTkD8a8EdusDSBmNAr56GhYl8xM2dXrb72ne+KYlglo3D2A2Mazk9eghqkLOEXT3TiqkV+uGz5BdE+3RHEvz7aiZqWGFRKdckSXCWVOOGgAI7eyylahMVAxYyi4ixon9bpOBUfdzPYj8TI7LH5W+czDMMwIxMWKHkwcb9jcMNHfhg7P8JkZwxBpQiblCkwybSsP4o4qTuH0jnkr9IeNYmo0M1OziaSlJoabJpCqJAQyRIqpgHv2kdQtOZ+pBqiU/xZOwI3a/8PKizCyv6c/Xw4dY43p918d+Lkgde/FH4kHrsFLkVBnVGEjY0yvnzxc9GtI1IwGUXFOeHBfgzDMEyesEDJA/pWf96h03DVk3F8FtdTRZymJCYF73YRZyIEI1SHL2qDImKiQEJ5kR3d3ZWtZjW8nzwMuWVLyrCNOniKxyM882R4Nv4Hrm2vddw1bLgyeRb+bhwi9r02CTccFsABY1OFsfmmdShyQuLE77LCkCxolAIwLTZUO4DaULKjQLitqJgH+zEMwzC7CwuUPGkv4mwfZtfaluagyAmJk14XcVJKJ9KA9z//Ev/7zhZ82RiBqlELM1BZ7MTxc6qwZ6eIDIkT9xt3QI2FEYQLSbhgg4bi2s9QWnct5IwpxNtRjh8kluFTc6LYH+OVseIAL/Ybk784IajmhNI6FDnRJBsaSJzIFuFbQhEYEmvtBcKzq1NFxaIglgf7MQzDMLsBC5Re0G9FnJTKCdXg/c11uPO5zxBJ6KKGw2WToOkmtjZFRUrlzIMndogU04Ty/kNQYyE0oliIA3pUm6nBjShkEjxtvGLsjUuSFyAIj9gvUeIoUUP437fq8PJnucVPd1BBLNWcKIoTLVIJJEURwqw9PZR2eaUC4baiYtGtw4P9GIZhmN2A24x7+4K1FXEunl4mtr0WJzTDp3UbDC2Jh9/6CuFEKmVENu8yJLGlVAqlVCi10u7HZmlcD7nlK4TghiJJkE0gYLagAo2Q2+pN6Ny71JNxZvLyNnFiotoaxkxPDCVuK+xWJS1+qK4kH6hbJyG7UWOWQCZxomQbqXVxeSWfE5pPVDELSEZSHUm0pf3j7uLBfgzDMExecASlvyEPk5ocDqrUNhypE1OIddPE+182Y0tjRKROUrGQDmifIiqUWqEUy6QyFxrq6zDG1EDxEotpoBwNcGSY0YdMhxj094qR6o6xySbGWVoxzkv3l9KhNkUS4qc5qgrxM7OKjNl6fjpjx46Fu9REXUMEXkf2/y7dFgiTSKFW4lyvA8MwDMPkAQuU/oRMyMjno7OD6oHnAmUzhHiJJDW0RJOoC8dF6sSt5FYIVOMRSZoixUK0Si5UwAI3IgggCAs66k3WG2PxffUybDUrxP7kYgWeRD28dpI68i7FTy5MyNDdFZBsblyw2Iab//1p71xeSYx000rMMAzDMLuCBUp/ihOqvSCTMvL7oJZaNQ7s/Aj4z+XQF1+F5sDeiLX5mlDqhFIjVHNCkY3O0HRfqySJ8wjDPwNJWDEGdVnxlif1g3Gl+n3EkWrtXTzehq9Pt+GB13VYFGte4qczpmSB5qmEbHGgwufApFI3nDal/wqEGYZhGGYXsEDpr7ROZwdV8jChybzuMhiROqjv/AmxJXemDczIhZW6dagmhNIumWkeEyYiCQ3jSlziPEmLYd8Nd8ODuvQ5minjBu10PKwvFXERCzQc6t2Gaw4/GFsaY70SP5mYsl2IE4vFhsoiB2zUVsQurwzDMMwgwwKlP6Bai3YHVYLqTUwtNXnYBEyrF0pwizBXE0ZrlAGRILppqGCVakIo7UKRDRIPJE6cVkUct4W3IbDqGthaNqUfrsH04ZzkCrxvpgYEliCIBc6vcPzCg6HIUq/ETyaGxSXSOjarBZU+BywZgxHFNbPLK8MwDDNIcNVif9DuoEopFXKFNTUxdZjEhkmtNYoNkqEJi/pMqNWXWolJLCRVHS0xVWxpn9b3NT5GxTPnZImTd8w9cXTip2lxUiqHMa9CwfGHHpxuHW4XPyRySPxQvYgBU2xpv138ZJaN6LYi6J4qOO1WVBc5u4gThmEYhhlMOILSH1CXiqSIdlrTYodmUIanw5cEelKYm5EtfWdIVFA3TdYQvhI7ij95AEWf/Dnr3N9rx+Kn2rehQxH7i8dbcfqccZhS7u7SjdMuftrn51DNCaV1SPx09kHRHQEYjmJ4HBaUeex5W+AzDMMwzEDBAmV3oXSOMwAUjYPZ+AVUBxWMZn7Am5ATQTF5WMzMyQGJi/ZuGoqylKy8Ds6d76SPxyUHlifOxTPGgWLfpgCXH+zHMdPcPV5aTvFT6kqLGRMSdFcFTJsbfpcNfvduDDtkGIZhmH6EBcruEA8CkXqYpoHw7NPgePWnkKP1MOw+kdahyAmJE8PqRnDWqTknD2dibVqP0lXXwhKpSa9tkapxZnw5NppjxH6FW8EtSwOYUZqfmMgUP5mYkgLdXQlYnSj12OBz5O74YRiGYZihQDLJbWsEEwwGUVRUhNbWVvh8fZw23BlDF8KEunZoYGBTJAnNMMSsHN/aR2AJbhE1J5TW0XzjhThJVs7r8S7dG/8D/zu/gGQk02vPmwdgeeIchJESGPOq7bjhsBIUO1Ipnr5iyjZobmojtqHcZ4fLxjqVYRiGKSz4k6m3JKPCvt00NARjGoJx8hJJaTwSIQ0V+4puHUrVUM2JSOv0FDnRk/C/9yt4NvwzvWRAxh3qt3Cfflw6XfSd2R6cs18RLH2ZmJyBoThE5MRisaKiyA67ZffEDsMwDMMMBCxQ+tSxo4tumEguozNJSrcS7wolUovAq9fB3rguvRaUfDgvcRHeMPYS+06LhCsW+bFkcm7H195gWD3QXeWwWhThcUJzdRiGYRimEGGB0kd2NzNmr1mNwGs3QMloPf5UmoqzY5diJwJif4xXwa1LSzG5ZPfrQ3R7MQxnAA6rItxhyS+FYRiGYQoVFiiDjWnC++mjKFrzB0jkNtvGY8bhuC75PWFnTxw01oHrDi2B1777UQ7dWSrSTTSYsMzLbcQMwzBM4cMCZRCR1AhK3rwNrq2r0muqZMVVyTPxuH5oeu2Mfbw4cx+aNLx7UY72gX+m1YUipxUBT2peD8MwDMMUOixQBuuFbv0SpauugTW4Jb1WJ5fhzNgyrDUniX2XVcI1i0uwaIJztx+vfeAfFDsCbjuKXNxGzDAMwwwfWKAMAs6vXkbJW7dD1mLptbekuTgvegFa4BX7E4osuHVpAOOLd19ItA/8kxQryr12MeeHYRiGYYYT/Mk1kBgaij78PXzrHsta/q1+Eu5UTxLtxMTiiU5ctcgPl233603aB/4pSqoYlopiGYZhGGa4wQJlgJBjTQi8fiMctR+k12KyGxfFz8OLRsq0jSpMfrCfD6fN8fbL/BvD5hMFsdRGTOLEZuE2YoZhGGZ4wgJlALA1rEVg1XWwxOrTa18q43F6dBm+MivFvtcm4frDAjhwrKNfHlN3lMBw+GG3KqjkNmKGYRhmmMMCpT8xTXi+eArFq38trO7beVY6GMsjZyOGlBiZWmLFLYcHUO3b/Zc/NfCvHKbNIyzrqeZEZo8ThmEYZpjDAqWfkLQ4/O/cCffm/6bXdEnBrdpp+KN6ZNqy/ogpTvxooR+Ofki/pAb+VcC0OOF1WIXHCcMwDMOMBFig9ANKaAdKX70WtuYv0mutih9nRS/BajNle69IwPkHFOGbszz9Um9iylYx8I+mJvtdNvjd+U03ZhiGYZjhAAuU3cSx/U0E3rgZcjKcXlurzMQZkYtRD7/YL3bIuGlJCfap6p96k/aBf5AVlHrt8DnY44RhGIYZWbBA6SumAd9HD8D38YOQ2qYZE4/gGFwf+Q60tpd2j1Irbj48gApP/7zU7QP/JFkWKR2yr2cYhmGYkQZ/uvWFeBDeF66Cbdub6SVVtuOHiR/gKX1Beu3Y6S4sn++H3dI/g/naB/6RBT61ETtt7HHCMAzDjExYoPSWus+Apy+FLbi9Y8lShf8XuRTrzfGpF1UGls0vxtdmuPul3iRz4B9NIWYDNoZhGGakwwKlN6x5DPjnJYCeSC+9qeyHc8PnIgi32C91ybh5SQB7VfRPR03mwD+LLKOyiA3YGIZhmJEPC5R8eeYK4O17s/xHfo1v4q7I8UJEEHMqbLhpSQABV/+kXjIH/lkVGVVFDlgUdodlGIZhRj4sUPKlOJW+IeIWH86JXoBVxpz02kl7unHRAcWwUj9xP9A+8A+yhd1hGYZhmFEHC5R8Oeh8YPt72LnxI5zSfBG2o0wsU53q5Qf7ccy0VIqnPzAszlQbsSSzOyzDMAwzKmGBki9U7Pq1XyOyeTNaHt4CqCYq3ApuWRrAjNL+M0kzrF7orjLxeNRCTK3E/VVoyzAMwzDDBS5o6A02N6ZWFOHnx1ThgDEO/OGE8n4VJ7rDD91dLsSJz2lFuc/B4oRhGIYZlXAEpQ8cM92L/autiKl6v/wRUgP/ymDavGKfresZhmGY0Q4LlD7SX2mXVBtxJUyrU+wHPHYUOdm6nmEYhhndsEAZQjIH/pHgYet6hmEYhknBAmWIyBz4x9b1DMMwDJMNC5QhwLC6obsqRDEsW9czDMMwTFdYoAwyuq0Ihqs09eKzdT3DMAzD5IQFyiCiOwIwHMXid7auZxiGYZhh7oPy29/+FhMnToTD4cCBBx6Id955B8MJaiPWXJVpcWK3KqgudvJcHYZhGIYZrgLlr3/9K1asWIHrr78e77//PubOnYujjjoKdXV1GA6YkgLdUw3TlrLCd9ksqC5yiNoThmEYhmFyI5mmaaKAoYjJ/vvvj9/85jdi3zAMjBs3DhdffDGuuOKKLucnEgnx004wGBTnt7a2wufz7f4FtWwFtAQaIwlEk1qPp5qyra2NOOVr4nVYRSsxwzAMwzDDOIKSTCaxevVqLF26NL0my7LYf/PNN3Pe5rbbbkNRUVH6h8TJUEAD/zTvmLQ4IXdYFicMwzAMMwIESkNDA3RdR0VFRdY67dfU1OS8zZVXXimiJe0/W7duxWBj2HzQ3VViGjEZsJV67fC7+29mD8MwDMOMdEZcF4/dbhc/hdCpQwZs5T67qDthGIZhGCZ/CvqTs7S0FIqioLa2Nmud9isrK1FIpGbqVMC0utIeJxVFdtgtylBfGsMwDMMMOwo6xWOz2TBv3jy8+OKL6TUqkqX9+fPno6Bm6nir0+JEeJwUO1icMAzDMMxIjKAQ1GJ8+umnY7/99sMBBxyAu+++G5FIBGeeeSYKbaYO4bAqqPBxGzHDMAzDjGiB8q1vfQv19fW47rrrRGHs3nvvjWeffbZL4exQYFi90F1lYqYO4bFbRKcOFcYyDMMwDDOCfVB2F/JBoXbj/vZBqTfcCEne9HKR04qAhz1OGIZhGGZURFAKDkkGfFUwEwoQTxm1Bdx2FLlSficMwzAMw+w+LFB6i7et3iQRF6mccq8dbju/jAzDMAzTn/Ana29pK4ZVJAlVRQ5RFMswDMMwTP/CAqWPlLhtXAzLMAzDMKPRB6WQ4U4dhmEYhhk4WKAwDMMwDFNwsEBhGIZhGKbgYIHCMAzDMEzBwQKFYRiGYZiCgwUKwzAMwzAFBwsUhmEYhmEKDhYoDMMwDMMUHCxQGIZhGIYpOFigMAzDMAxTcLBAYRiGYRim4GCBwjAMwzBMwcEChWEYhmGYgoMFCsMwDMMwBQcLFIZhGIZhCg4WKAzDMAzDFBwsUBiGYRiGKThYoDAMwzAMU3BYMMIxTVNsg8HgUF8KwzAMw+TE6/VCkiR+dUaTQAmFQmI7bty4ob4UhmEYhslJa2srfD4fvzoZSGZ7iGGEYhgGduzY0Wt1ShEXEjVbt24d1v/TjITnwc+hMOC/Q2HAf4eR+bfgCMoojKDIsoyxY8f2+fb0P91w/WAfac+Dn0NhwH+HwoD/DoXDSPhbFCJcJMswDMMwTMHBAoVhGIZhmIKDBUo32O12XH/99WI7nBkJz4OfQ2HAf4fCgP8OhcNI+FsUMiO+SJZhGIZhmOEHR1AYhmEYhik4WKAwDMMwDFNwsEBhGIZhGKbgYIHCMAzDMEzBwQKlG377299i4sSJcDgcOPDAA/HOO+9gOLFq1Socf/zxqK6uFg66Tz31FIYTt912G/bff3/hrlheXo4TTzwR69evx3Dj3nvvxZw5c9JGTvPnz8czzzyD4crtt98u/n9atmwZhhM33HCDuO7Mn5kzZ2K4sX37dpx22mkIBAJwOp2YPXs23nvvPQwX6D2189+Bfi688EIMF3Rdx7XXXotJkyaJv8GUKVNw8803p+e+Mf0HC5Qc/PWvf8WKFStE+9j777+PuXPn4qijjkJdXR2GC5FIRFw3Ca3hyMqVK8Wb1ltvvYXnn38eqqriyCOPFM9rOEEuxvShvnr1avFBsmTJEpxwwglYu3Ythhvvvvsufve73wnBNRyZNWsWdu7cmf557bXXMJxobm7GwQcfDKvVKkTup59+ijvvvBN+vx/D6f+hzL8B/dsmvvGNb2C48NOf/lR88fjNb36DdevWif077rgDv/71r4f60kYe1GbMZHPAAQeYF154YXpf13WzurravO2224blS0V/5ieffNIcztTV1YnnsXLlSnO44/f7zfvvv98cToRCIXPatGnm888/by5evNi89NJLzeHE9ddfb86dO9cczvz4xz82Fy5caI4k6P+jKVOmmIZhmMOFY4891jzrrLOy1k466STz1FNPHbJrGqlwBKUTyWRSfNtdunRp1jwf2n/zzTcHWz8yGZM+iZKSkmH7mlBo+LHHHhNRIEr1DCcomnXsscdm/bsYbnzxxRci5Tl58mSceuqp2LJlC4YT//znP7HffvuJaAOlPffZZx/84Q9/wHB+r3344Ydx1lln9WqQ61CzYMECvPjii/j888/F/po1a0Q07phjjhnqSxtxjPhhgb2loaFBfJBUVFRkrdP+Z599NmTXNZqhidRU80Dh7b322gvDjY8//lgIkng8Do/HgyeffBJ77rknhgskqijVSeH54QrVkT344IOYMWOGSC3ceOONWLRoET755BNR5zQc2LRpk0gtUPr5qquuEn+PSy65BDabDaeffjqGG1QX19LSgjPOOAPDiSuuuEJMMaYaJkVRxOfFLbfcIkQv07+wQGGGxbd3+iAZbjUD7dCH4ocffiiiQE888YT4MKEam+EgUmiM/KWXXipqBahgfLiS+e2WamhIsEyYMAF/+9vfcPbZZ2O4CHWKoNx6661inyIo9O/ivv/f3r2HRLV9cQBfko6WlgVNZKmVyZSRvYTKIijsRRH28jEEmVTUH1ZYSYVBRQX9YVEYdjFEKxLCssKiNNP+MLCHDEUPDGUMoocRhkk6Pdg/1oKZ5qj0U+7cO2d3vx8Y9TzmnH3m4Vln77XP/usvLQOUoqIieV+4Vksn/Jm5ePEilZaWSl4Tf7f5AoqPQ8f3wcwQoHQzfPhwiYo/fPhgmM/TI0eO/DffGyCirKwsunHjhvRK4oRTHfEVbmxsrPydkJAgV76nTp2ShFOz4+ZOTg6fMWOGZx5fMfL7wUmCLpdLvi+6GTp0KNlsNmpqaiJdRERE9Ahq4+Li6MqVK6Sb169fU3V1NZWXl5NucnJypBYlPT1dprknFR8P9zxEgOJbyEHp5WTCJxFuY/S+cuFp3fIGdMa5vRyccHNITU2NdOn7U/DniU/sOkhKSpImKr5KdD/4Kp6rs/lvHYMT1tHRQc3NzXLS1wU3cXbvas95EFwTpJvi4mLJo+G8Jt18/fpV8hK98feAv9fgW6hB6QW38XIkzP+IZ86cSSdPnpTExszMTNLpH7D31aHT6ZQTCieZRkdHkw7NOlyFev36dckReP/+vcwPDw+Xew/oYt++fVKNza/5ly9f5Jju3btHlZWVpAN+7bvn/YSGhsp9OHTKB9q9e7fcF4hP5m/fvpVbCPBJxW63ky6ys7MlQZObeFJTU+XeTIWFhfLQCZ/IOUDh/7GBgfqdgvhzxDkn/J3mJh6Hw0EnTpyQZF/wMX93IzKr/Px8FR0drSwWi3Q7rq+vVzqpra2VbrndHxkZGUoHvZWdH8XFxUon3B1xzJgx8jmyWq0qKSlJVVVVKZ3p2M04LS1NRUREyPswevRomW5qalK6qaioUJMnT1bBwcFq4sSJqrCwUOmmsrJSvsuNjY1KR+3t7fL55/NDSEiIiomJUbm5ucrlcvm7aH+cAP7h66AHAAAA4O9ADgoAAACYDgIUAAAAMB0EKAAAAGA6CFAAAADAdBCgAAAAgOkgQAEAAADTQYACAAAApoMABQAAAEwHAQrAf1BJSYkMmOcLfOv+gIAA+vz5s0+2BwDAEKAAaGLDhg20cuVKfxcDAOBfgQAFALTEo3T8+PHD38UAgH8IAhQAk7l8+TLFx8fLqM08avDChQspJyeHzp07J6M7c3MKP7hppbfmFR61mue1tLQYmnR49NVBgwbRqlWr6NOnT55lvB4PH//48WNDOXgUbx79t6/DyDc0NMgI4LwPHnW3sbHRsPzMmTM0fvx4slgsNGHCBLpw4YKhDFxmLrsbH5P7OJn7WG/dukUJCQkUHBxMdXV19OTJE1qwYIGMvDxkyBBZ1v1YAEA/CFAATOTdu3dkt9tl6PaXL1/KSXn16tV04MABSk1NpaVLl8o6/OAgoC8ePHhAGzdupKysLAkA+GR+5MgRz/KxY8dKEFRcXGx4Hk9zsxIHL32Rm5tLx48fl+AgMDDQMPz81atXaceOHbRr1y569uwZbdmyhTIzM6m2tpb6a+/evXTs2DF5faZMmULr1q2jyMhIevTokQRJvDwoKKjf2wUAk/H3cMoA8EtDQ4MMRd/S0tLjZcnIyFDJycmGebW1tbJ+W1ubZ57D4ZB5TqdTpu12u1q2bJnheWlpaSo8PNwzfenSJTVs2DDV1dXlKUdAQIBnG7/jLkN1dbVn3s2bN2VeZ2enTM+ZM0dt3rzZ8LyUlBRPuXg/vD6X3Y2Piefx9r33c+3aNcN2Bg8erEpKSvAxAvjDoAYFwESmTp1KSUlJ0sSTkpJCZ8+epba2tr+1Ta5pmDVrlmFeYmKiYZqTbwcMGCA1He4mIa5p4dqVvuLaDLeIiAj53dra6inD3LlzDevzNM/vL25G8rZz507atGmT1AJxzUpzc3O/twkA5oMABcBEOEi4c+eO5FlMmjSJ8vPzJV/D6XT2ur67+YUTRt2+f//e7/1yXsj69eulWefbt29UWlpqaKLpC+9mFc4VYX3NX+nPcYSGhhqmDx48SM+fP6fly5dTTU2NvG7uQAsA9IUABcBk+OTOtQuHDh0ih8MhwQOfcPn3z58/DetarVb5zTkpbt6JpiwuLk7yULzV19f32C/XQlRXV1NBQYH0juHcF1/hMty/f98wj6c5mOjrcfyOzWaj7OxsqqqqknJ3z6cBAP0E+rsAAPALBxJ3796lxYsX04gRI2T648ePcoLv6uqiyspK6R3DvXvCw8MpNjaWoqKipBbh6NGj9OrVK0lU9bZ9+3YJePLy8ig5OVm2cfv27R4vO+9j9uzZtGfPHqk94V5EvsK9kDjJd/r06dIUU1FRQeXl5RIQMd4X75ubaMaNGydNQ/v37/+/2+3s7JRtr127Vp735s0bSZZds2aNz8oOAH7i7yQYAPjlxYsXasmSJcpqtarg4GBls9lUfn6+LGttbVWLFi1SYWFhhuTRuro6FR8fr0JCQtS8efNUWVmZIUmWFRUVqcjISDVw4EC1YsUKlZeXZ0iS9V6Pn/vw4cM+vy19SdRlBQUFKiYmRgUFBclxnT9/vsexJyYmShmnTZumqqqqek2S9d6Py+VS6enpKioqSlksFjVq1CiVlZXlSc4FAH0F8A9/BUcAYC6HDx+msrIyevr0qb+LAgD/cchBAQDq6OiQ+5OcPn2atm3bhlcEAPwOAQoAyE3c+A6s8+fP79F7Z+vWrRQWFtbrg5cBAPwT0MQDAL/FCavt7e29LuNby3MyLwCAryFAAQAAANNBEw8AAACYDgIUAAAAMB0EKAAAAGA6CFAAAADAdBCgAAAAgOkgQAEAAADTQYACAAAAZDb/Awl9EdEVzC1WAAAAAElFTkSuQmCC" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 54 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_16.8 Pairplot and Jointplot using Seaborn_**", + "id": "45ffbc9618e23fb9" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T10:22:51.132173Z", + "start_time": "2025-11-14T10:22:51.117253Z" + } + }, + "cell_type": "code", + "source": [ + "student_marks = student[['Marks','study_hours','attendance_rate','gender']]\n", + "student_marks" + ], + "id": "fcc24a5cf21ea938", + "outputs": [ + { + "data": { + "text/plain": [ + " Marks study_hours attendance_rate gender\n", + "0 19.202 4.508 0.89 F\n", + "1 7.734 0.096 0.98 M\n", + "2 13.811 3.133 0.83 F\n", + "3 53.018 7.909 0.92 F\n", + "4 55.299 7.811 0.80 M\n", + ".. ... ... ... ...\n", + "95 19.128 3.561 0.94 F\n", + "96 5.609 0.301 0.83 M\n", + "97 41.444 7.163 0.97 M\n", + "98 12.027 0.309 0.98 F\n", + "99 32.357 6.335 0.95 M\n", + "\n", + "[100 rows x 4 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Marksstudy_hoursattendance_rategender
019.2024.5080.89F
17.7340.0960.98M
213.8113.1330.83F
353.0187.9090.92F
455.2997.8110.80M
...............
9519.1283.5610.94F
965.6090.3010.83M
9741.4447.1630.97M
9812.0270.3090.98F
9932.3576.3350.95M
\n", + "

100 rows × 4 columns

\n", + "
" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 55 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T10:24:58.559412Z", + "start_time": "2025-11-14T10:24:57.552991Z" + } + }, + "cell_type": "code", + "source": "sns.pairplot(data=student_marks)", + "id": "4db0077b270d9331", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 56 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T10:26:35.754992Z", + "start_time": "2025-11-14T10:26:34.809002Z" + } + }, + "cell_type": "code", + "source": "sns.pairplot(data=student_marks,kind='hist')", + "id": "585b4c4fa8aa968d", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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iYke+1euXCkZGRke+xMSEiQ+Pl6WLl0agJoCAAAAuReU50KdPn26rFq1ygxxOdOuXbukUKFCUrx4cY/95cqVM9flJD093WxZ0tKcPb00ANofEGi89wH2Croe9O3bt0ufPn1k6tSpEhUV5ZMyR4wYIcWKFXNvcXFxPikXAO0PsBXvfYC9gi6g6xCWPXv2yFVXXSUFChQwm04Eff31183v2lN+8uRJOXTokMff6Sou5cuXz7HMQYMGmbHrWZt+CADgH7Q/IDBoe4C9gm6Iy4033ijr1q3z2NetWzczznzAgAGm97tgwYKyYMECs7yi2rhxoyQnJ0uTJk1yLDMyMtJsAPyP9gcEBm0PsFfQBfSYmBipXbu2x74iRYqYNc+z9t9///3Sr18/KVmypMTGxspjjz1mwnnjxo0DVGsAAAAgRAN6brz22muSL18+04Ouk2BatWol48aNC3S1AAAAgPAI6IsWLfK4rJNHx44dazYAAAAgmATdJFEAAAAglBHQAQAAAIsQ0AEAAACLENABAAAAixDQAQAAAIsQ0AEAAACLENABAAAAi4TEOugAAOTV/np3OXrQXrutiISq/okxEszqTj7oaPn9HS1dZE3XEhLM6k4+4Wj5/YP89anoQQcAAAAsQkAHAAAALEJABwAAACxCQAcAAAAsQkAHAAAALEJABwAAACxCQAcAAADCNaC///778vXXX7sv9+/fX4oXLy5NmzaVv/76y59VAQAAAKzk14D+0ksvSXR0tPl96dKlMnbsWBk5cqSULl1a+vbt68+qAAAAAFby65lEt2/fLtWrVze/f/bZZ9K+fXt58MEHpVmzZnLdddf5syoAAACAlfzag160aFHZv3+/+f3bb7+Vm266yfweFRUlx48f92dVAAAAACv5tQddA/kDDzwg9evXlz/++ENat25t9v/2229SpUoVf1YFAAAAsJJfe9B1zHmTJk1k79698umnn0qpUqXM/pUrV8q9997rz6oAAAAAVvJrD3qRIkXkzTffPGv/0KFDZd++ff6sCpArycnJjr42dYJ0fHw8zwYAAAhMQL/nnnvkk08+kYiICI/9u3fvlhtvvFHWr1/vz+oAFwznCQk15fjxY44dqejowrJhQxIhHQAABCaga+DRMejvvfeee9+uXbvk+uuvl1q1avG0wCrac67hvFH3IRJbwfdzJNJStsnyif/9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0Y6WvjYtuI9/KD83TqsTe8rx+3D69dVp1nEJZqHc/gAEcQ86AAAAgLwhoAMAAAAWIaADAAAAFnF0gJyexKhgwYJO3gUAAEBYSU5ONutwB/OZMuFQQD906JB88skn8ueff8pTTz0lJUuWNGcQLVeunFxyySXmNuvXr/e2eAAAAOQQzhMSasrx48eC+kyZcCCgr127VhITE6VYsWKybds26dGjhwnos2bNMi+cDz74wJtiAQAAcB7ac67hvFH3IRJboUrQnikTDgT0fv36SdeuXWXkyJESExPj3t+6dWvp0KGDN0UCAAAglzScB/OZMuHAJNGff/7ZnCX0TDq0ZdeuXd4UCQAAAMDbgB4ZGSlpaWefQeePP/6QMmXKcGABAAAAfwb022+/XV544QXJyMgwlyMiIszY8wEDBkj79u29rQsAAAAQ9rwK6K+++qocOXJEypYtK8ePH5drr71WqlevbsajDx8+POwPKgAAAODXSaK6esu8efPkxx9/lDVr1piwftVVV5mVXQAAAAAE6ERFzZo1MxsAAACAAA5x6d27t7z++utn7X/zzTfl8ccf90W9AAAAgLDkVUD/9NNPc+w5b9q0qTm7KAAAAAA/BvT9+/ebcehnio2NNWeeAgAAAODHgK4rtsydO/es/f/5z3+kWrVqXlYFAAAAgFeTRPv16ye9evWSvXv3yg033GD2LViwwCy/OHr0aI4qAAAA4M+A3r17d0lPTzdrng8bNszsq1KliowfP146d+7sbV0AAACAsOfVEBf1yCOPyI4dO2T37t2SlpYmW7Zs8Tqcjx071gT8qKgoadSokaxYseKct9Wzl+pZTC+99FJz+7p16+Y43CYvZQIAAABBH9CzlClTRooWLer138+YMcMMmRkyZIisWrXKBO5WrVrJnj17crz9s88+K2+99Za88cYb8vvvv8vDDz8sbdu2ldWrV3tdJgAAABDUAV17ze+77z6pWLGiFChQQPLnz++x5cWoUaOkR48e0q1bN7niiitkwoQJUrhwYZk4cWKOt//www/l6aefltatW5sJqdqTr7/r+HdvywQAAACCegx6165dJTk5WZ577jmpUKGCREREeHXnJ0+elJUrV8qgQYPc+/LlyyeJiYmydOnSHP9Gx77rsJXsoqOj5YcffvC6TAAAACCoA7qG4e+//17q1at3UXeua6afPn1aypUr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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 57 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T10:28:35.059375Z", + "start_time": "2025-11-14T10:28:34.769846Z" + } + }, + "cell_type": "code", + "source": "sns.jointplot(data=student_marks, x='study_hours', y='Marks')", + "id": "1c22704f48f561f", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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LRW3OHz4sDlvDXtutmzZMvM/zNWrV8vixYultrZWLrvsMvP83EIXM9VAsWbNGvMmNmzYMLnyyivlk08+Ebf64IMP5A9/+IMJf27Up08f2bNnT91lxYoV4iYHDhyQwYMHS1pamgncn376qfz2t7+Vtm3bitt+j0JfB/0bV9dcc424yYMPPmj+MTRz5kzZuHGjuf7QQw/JjBkz7D41NJfObkN95513XuCWW26pu378+PFAly5dAtOnT3flj0pf5kWLFgW8oLS01DyfZcuWBdysbdu2gf/5n/8JuNGhQ4cCPXv2DCxevDhw0UUXBW699daAm9xzzz2Bfv36BdzszjvvDAwZMiTgNfq7dNpppwVOnDgRcJPLL788MH78+Hq3XX311YHrr7/etnNCfDCS1EBNTY35F/+IESPqbW2i11etWtXsUIrmb/io2rVr58ofpQ7LP/fcc2YkTMtubqQje5dffnm9vxG32bJliylFn3rqqXL99ddLSUmJuMmrr74q5557rhlx0TL0gAED5MknnxS3/7/36aeflvHjx0e9X5ndLrzwQlmyZIl89tln5vrHH39sRidHjRpl96mhmTy/d1u0ysrKzBtZx44d692u1zdt2mTbeeGrzYq1/0XLDGeddZarfiTr1683oaiqqkpycnJk0aJFcuaZZ4rbaMDTErSWSdxKewznz58vZ5xxhinxTJs2TYYOHSobNmwwvW9u8Pnnn5vyjrYF/Nd//Zd5PSZPnizp6ekyduxYcSPtmzx48KCMGzdO3Oauu+4ym9tqb1vLli3Ne8j9999vAjjcjZAEV41g6BuZ2/pHlL4hr1271oyEvfDCC+aNTPut3BSUdGfzW2+91fSN6IQGtwr91732VGlo6tatmzz//PMyYcIEccs/GHQk6de//rW5riNJ+rfx+OOPuzYkzZkzx7w2OsLnNvq788wzz8iCBQtMv5v+res/6PS5uPX1wFcISQ0UFBSYfwns27ev3u16vVOnTg3vjiSZOHGi/OUvfzGz9rQR2m30X/g9evQwn59zzjnmX/6///3vTfOzW2gZWicvDBw4sO42/RezvibasFpdXW3+dtymTZs2cvrpp8vWrVvFLTp37nxSwO7du7e8+OKL4kY7d+6Ut99+W1566SVxo5/+9KdmNOm6664z13WmoT4nnZ1LSHI3epIs3sz0TUzry6H/atPrbu0hcTPtO9eApOWppUuXmim2XqC/Uxoq3GT48OGmbKj/Sg5edDRDSwr6uRsDkqqsrJRt27aZ4OEWWnJuuBSG9sPoiJgbzZs3z/RWaa+bGx05csT0robSvwf9O4e7MZJkQev8mv71DeC8886TRx55xDTa3nTTTeKm//GH/st4+/bt5o1MG54LCwvFTSU2HcJ+5ZVXTL/I3r17ze15eXlmPRI3mDp1qikj6M/90KFD5vm8++678uabb4qb6M+/YS9Yq1atzDo9buoR+8lPfmLWENNAsXv3brPUh76hjRkzRtzi9ttvN83CWm679tprzTpuTzzxhLm4jQYJDUn6/9zUVHe+Jenvk/Yg6d+4ltuKi4vld7/7nWlCh8vFaZac58yYMSNQWFgYSE9PN0sCrF69OuAm77zzjpkq3/AyduzYgJtYPQe9zJs3L+AWOjW4W7du5nepffv2geHDhwfeeuutgBe4cQmA7373u4HOnTub1+Nf/uVfzPWtW7cG3Oa1114LnHXWWYGMjIxAr169Ak888UTAjd58803zN7158+aAW1VUVJi/A33PyMzMDJx66qmBn/3sZ4Hq6mq7Tw3NlKL/sTuoAQAAOA09SQAAABYISQAAABYISQAAABYISQAAABYISQAAABYISQAAABYISQAAABYISQAAABYISYCPzZ8/32zwGg+61UpKSoocPHgwLo8HAHYjJAEuM27cOLnqqqvsPg0A8DxCEgBX052Vjh07ZvdpAPAgQhLgUC+88IKcffbZkpWVJfn5+TJixAj56U9/Kk899ZS88sorprSlFy1zWZW61q5da27bsWNHvfKa7lSenZ0t3/nOd2T//v11x/R+LVq0kA8//LDeeTzyyCPSrVs3s1t7JNasWSPnnnuu+R66U/3mzZvrHX/sscfktNNOk/T0dDnjjDPkT3/6U71z0HPWcw/S5xR8nir4XP/617/KOeecIxkZGbJixQr5+OOP5ZJLLpHWrVtLbm6uOdbwuQBANAhJgAPt2bNHxowZI+PHj5eNGzeaYHD11VfLPffcI9dee63867/+q7mPXjSIROL999+XCRMmyMSJE00I0UBx33331R3v3r27CWLz5s2r93V6XUt8GqAi8bOf/Ux++9vfmoCSmppqnkPQokWL5NZbb5Uf//jHsmHDBvnP//xPuemmm+Sdd96RaN11113ywAMPmJ9P37595frrr5dTTjlFPvjgAxPU9HhaWlrUjwsAdQIAHGfNmjUB/fPcsWPHScfGjh0buPLKK+vd9s4775j7HzhwoO624uJic9v27dvN9TFjxgS+9a1v1fu67373u4G8vLy663/+858Dbdu2DVRVVdWdR0pKSt1jNCV4Dm+//Xbdba+//rq57ejRo+b6hRdeGPj+979f7+uuueaauvPS76P313MP0uekt+njh36fl19+ud7jtG7dOjB//vyw5wkAkWIkCXCgfv36yfDhw0257ZprrpEnn3xSDhw40KzH1BGX888/v95tgwYNqnddG8JbtmxpRnyC5TkdcdJRpkjpqE5Q586dzcfS0tK6cxg8eHC9++t1vT1aWtILNWXKFPne975nRsN0hGnbtm1RPyYAhCIkAQ6kQWXx4sWm7+bMM8+UGTNmmP6d7du3W94/WArTJuag2traqL+v9gndeOONpsRWU1MjCxYsqFcui0RoiUt7h1Sk/UzRPI9WrVrVu37vvffKJ598IpdffrksXbrU/NyCYQ8AYkFIAhxKA4aOskybNk2Ki4tNgNE3ff14/Pjxevdt3769+ag9SkGhzc+qd+/epi8p1OrVq0/6vjoa8/bbb8vs2bPNrDHthYoXPYeVK1fWu02va6CJ9Hk05fTTT5fbb79d3nrrLXPeDfurACAaqVHdG0BSaJhZsmSJXHbZZdKhQwdz/YsvvjAho6qqSt58800za0xnveXl5UmPHj2ka9euZjTl/vvvl88++8w0T4eaPHmyCV2/+c1v5MorrzSP8cYbb5z0vfV7XHDBBXLnnXeaUSSdXRcvOjtPG88HDBhgymKvvfaavPTSSyaUKf1e+r21XFZUVGTKdHfffXfYxz169Kh57H//9383X/ePf/zDNHCPHj06bucOwIci7l4CkDSffvppYOTIkYH27dsHMjIyAqeffnpgxowZ5lhpaWng0ksvDeTk5NRraF6xYkXg7LPPDmRmZgaGDh0aWLhwYb3GbTVnzpzAKaecEsjKygpcccUVgd/85jf1GrdD76df+/e//z3ic46keVzNnj07cOqppwbS0tLM8/rjH/940nMfNGiQOcf+/fsH3nrrLcvG7dDvU11dHbjuuusCXbt2DaSnpwe6dOkSmDhxYl3DOADEIkX/Y3dQA+Asv/rVr2ThwoWybt06u08FAGxDTxKAOpWVlWb9opkzZ8qkSZP4yQDwNUISgDq60KSuVH3xxRefNKvthz/8oeTk5Fhe9BgAeA3lNgAR0SbqiooKy2O6DYg2mAOAlxCSAAAALFBuAwAAsEBIAgAAsEBIAgAAsEBIAgAAsEBIAgAAsEBIAgAAsEBIAgAAsEBIAgAAkJP9HzgXLDHU0RNpAAAAAElFTkSuQmCC" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 58 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T10:29:52.557922Z", + "start_time": "2025-11-14T10:29:52.051046Z" + } + }, + "cell_type": "code", + "source": "sns.jointplot(data=student_marks, x='study_hours', y='Marks', kind='kde')", + "id": "788167526da243fc", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 59 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T10:31:16.817761Z", + "start_time": "2025-11-14T10:31:16.537663Z" + } + }, + "cell_type": "code", + "source": "sns.jointplot(data=student_marks, x='study_hours', y='Marks', hue='gender')", + "id": "1d312dbf7119600c", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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AgpvvU8C75dn4fPlWfh8EbUMSykTEREROcEgiYiIiMhXgySdToennnpK+uotvPE+CbxfnoXPl2fh80V0Zrw+cZuIiIioNXxiJomIiIjoTDFIIiIiInKCQRIRERGREwySiIiIiJxgkERERETkbkGSzWbDk08+iZSUFPj5+aFbt2743//+J7USqSO+/89//oPY2FjpOpMmTcKBAwdcOWwiIiLyAS4Nkl566SW89957eOedd7Bv3z7p/Msvv4y33367/jri/FtvvYX3338fGzZsgMFgwOTJk2E0Gl05dCIiIvJyLq2TdPHFFyM6OhqffPJJ/WVXXXWVNGP05ZdfSrNIcXFxePjhh/HII4/Ud0UWPzNnzhxMmzbttL9D3EZlZSUbBRIRkdfje54XzSSNGTMGS5cuRXp6unR+x44dWL16NS644ALp/OHDh5GXlyctsdUJDg7GyJEjsW7dOqe3aTKZpE7Xdafs7GzpZ0SgRERE5E34ntex1HChxx9/XApkUlNToVKppByl5557DjfccIN0XARIgpg5akicrzt2shdeeAFPP/10J4yeiIjItfie58UzSd988w2++uorzJ07F1u3bsVnn32GV155RfraWk888YS0JFd3ysrKatcxExERuQu+53nxTNKjjz4qzSbV5Rb1798fR48elSLjm266CTExMdLl+fn50u62OuL8oEGDmm3g6G1NX4mIiJzhe54XzyTV1NRAqWw8BLHsZrfbpe9FaQARKIm8pTpieU7schs9enSnj5eIiIh8h0tnki655BIpBykxMRF9+/bFtm3b8Nprr+GWW26RjisUCjzwwAN49tln0aNHDyloEnWVxI63yy+/3JVDJyIiIi/n0iBJ1EMSQc8999yDgoICKfi58847peKRdR577DFUV1fjjjvuQFlZGcaNG4fFixdDr9e7cuhERNTOxOYdi8Xi9Y+rRqORVk3I/bm0TlJnEMtzogSASOIOCgpy9XCIiOgk4m1I7FgWH4R9RUhIiJROIlZM2hPf87xoJomIiKguQIqKioK/v3+7Bw7uFhCKfFyxeiI03JRE7odBEhERuXSJrS5ACg8P94lnQnSVEESgJO43l97cl0t3txERkW+ry0ESM0i+pO7++kIOlidjkERERC7nzUtszvja/fVUDJKIiIiInGCQRERE5MTNN9/Mmnw+jkESERERkRMMkoiI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ooztSNoBgyQiIiIvE66oBAKYk9RWDJKIiIi8TKjGAqi1rh6Gx2OQRERE5GVCdKyP1B4YJBEREXmZYD/OIrUHBklEREReJtBP5+oheAUGSURERF4m0E/v6iF4BQZJREREXsbf39/VQ/AKDJKIiIi8jIFBUrtgkERERORl9AyS2gWDJCIiIi/j5x/o6iF4BQZJREREXkbvx5yk9sAgiYiIyMvo/QyuHoJXYJBERETkZZS6AFcPwSswSCIiIvI2atZJag8MkoiIiLyNhjlJ7YFBEhERkbdRs3dbe2CQRERE5G00fq4egVdgkERERORtVJxJag8MkoiIiLyNQuHqEXgFBklERERETjBIIiIiInKCQRIRERGREwySiIiIiJxgkERERETkBIMkIiIiIicYJBERERE5wSCJiIiIyAkGSUREREROMEgiIiIicoJBEhEREZETDJKIiIiInGCQREREROQEgyQiIiIiJxgkERERETnBIImIiIjICQZJRERERE4wSCIiIiJygkESERERkRMMkoiIiIicYJBERERE5ASDJCIiIiInGCQREREROcEgiYiIiMgJBklERERETjBIIiIiInKCQRIRERGRE2p4OYfDIX2tqKhw9VCIiIhaLDAwEAqFgo+YC3l9kFRZWSl9TUhIcPVQiIiIWqy8vBxBQUF8xFxI4aibavFSdrsdaWlp6NOnD7KysrzmP5yYGROBnzfdJ4H3y7Pw+fIsfL68fyZJvKWLyQHOQrUPr59JUiqV6NKli/S9CCa8KaDw1vsk8H55Fj5fnoXPl/cSQZU3vie4ChO3iYiIiJxgkERERETkq0GSTqfDU089JX31Ft54nwTeL8/C58uz8PkiOjNen7hNRERE1Bo+MZNEREREdKYYJBERERE5wSCJiIiIyAmfDZJMJhMGDRok1ZTYvn07PNmRI0dw6623IiUlBX5+fujWrZuU1G02m+FpZs2aheTkZOj1eowcORIbN26EJ3vhhRcwfPhwqbBbVFQULr/8cqm4qTd58cUXpb+jBx54AJ4uOzsb06dPR3h4uPS31L9/f2zevBmezGaz4cknn2z0+vC///2vvmWTp1i1ahUuueQSxMXFSf/fFixY0Oi4uD//+c9/EBsbK93PSZMm4cCBAy4bL3kHnw2SHnvsMemPzRvs379fqiz+wQcfYM+ePXj99dfx/vvv45///Cc8yfz58/HQQw9JAd7WrVsxcOBATJ48GQUFBfBUK1euxL333ov169djyZIlsFgsOP/881FdXQ1vsGnTJun/3YABA+DpSktLMXbsWGg0Gvz222/Yu3cvXn31VYSGhsKTvfTSS3jvvffwzjvvYN++fdL5l19+GW+//TY8ifibEa8J4oOUM+I+vfXWW9Jr34YNG2AwGKTXD6PR2OljJS/i8EG//vqrIzU11bFnzx7xUcqxbds2h7d5+eWXHSkpKQ5PMmLECMe9995bf95mszni4uIcL7zwgsNbFBQUSP/nVq5c6fB0lZWVjh49ejiWLFnimDBhgmPmzJkOT/aPf/zDMW7cOIe3ueiiixy33HJLo8uuvPJKxw033ODwVOJv6Mcff6w/b7fbHTExMY7/+7//q7+srKzModPpHF9//bWLRknewOdmkvLz83H77bfjiy++gL+/P7y5MWJYWBg8hVga3LJlizRF3rCljDi/bt06eNPzInjSc9McMUN20UUXNXrOPNnPP/+MYcOGYerUqdLS6ODBg/HRRx/B040ZMwZLly5Fenq6dH7Hjh1YvXo1LrjgAniLw4cPIy8vr9H/xeDgYGnJ3pteP6jzeX3vtobEB5Cbb74Zd911l/RiKHJ5vFFGRoY0lf7KK6/AUxQVFUm5E9HR0Y0uF+fFcqI3EEuiIm9HLOn069cPnmzevHnSkqhYbvMWhw4dkpalxJKvWKoW9+3vf/87tFotbrrpJniqxx9/XGpsm5qaCpVKJf2dPffcc7jhhhvgLUSAJDh7/ag7RtQaXjGTJF4ERCLfqU7ijVYEDqI78hNPPAFvul8nJ55OmTJF+jQsZszIvWZedu/eLQUYniwrKwszZ87EV199JSXYewsRxA4ZMgTPP/+8NIt0xx13SH9DIsfFk33zzTfSczV37lwpsP3ss8+kD1DiKxH5wEzSww8/LM0QnUrXrl2xbNkyaer15FYeYlZJfKpytxeNlt6vOjk5OTjnnHOk6fUPP/wQniQiIkL6lCuWQxsS52NiYuDp7rvvPixatEjaoRMfHw9PJpZFRTK9CCjqiNkJcd9EcrDYOSqeS08jdkX16dOn0WW9e/fG999/D0/26KOPSh+4pk2bJp0XO/aOHj0q7bz05BmyhupeI8TrhXge64jzYhczkU8HSZGRkdLpdMTOh2effbZRUCF2P4hdVWLt2lPvV90MkgiQhg4ditmzZ0v5PJ5ELGmIsYvcCbFNvu6TvTgvAgxPXuK9//778eOPP2LFihXSNmxPN3HiROzatavRZTNmzJCWc/7xj394ZIAkiGXQk8sziDyepKQkeLKampomrwfiORJ/X95C/F2JQEm8XtQFRWKJUexyu/vuu109PPJgXhEktVRiYmKj8wEBAdJXUTfEkz/diwDp7LPPll7MxTR6YWFh/TFPmoURuSDik62Y2RsxYgTeeOMNaduveAP25CU2sczx008/SbWS6vIjRFKpqOXiicT9ODmnSmy3FrWFPDnX6sEHH5RmYcVy2zXXXCPV6BIzsp42K3syUVtI5CCJ17++ffti27ZteO2113DLLbfAk1RVVUn5lg2TtUWNO7EJQtw3ke8nPgT36NFDCppEbShR5qXuQxdRqzh82OHDh72iBMDs2bOl++Hs5GnefvttR2JiokOr1UolAdavX+/wZM09L+I58ybeUAJAWLhwoaNfv37S1nFRJuTDDz90eLqKigrpuRF/V3q93tG1a1fHv/71L4fJZHJ4kuXLlzv9W7rpppvqywA8+eSTjujoaOn5mzhxoiMtLc3VwyYPpxD/tC68IiIiIvJenpW4QkRERNRJGCQREREROcEgiYiIiMgJBklERERETjBIIiIiInKCQRIRERGREwySiIiIiJxgkERERETkBIMkIh82Z84chISEtMttid50CoUCZWVl7XJ7RESuxiCJyMPcfPPN7EdFRNQJGCQRkUcTnZWsVqurh0FEXohBEpGb+u6779C/f3/4+fkhPDwckyZNwqOPPorPPvsMP/30k7S0JU5imcvZUpfokC4uO3LkSKPlNdEx3d///9u7v5AmvzAO4I+lLn9uihcKykZaoRikRoJuIhShhSHLf+UQDP+EXVhRXigoVKjQxQRB0QuRIkGIQQoRpam7UbBsjMQ/KIheBIISQghORU88B/ayN0dt/SRHfT8wxznvec+fgfhwzvPO/6igoIC+fv2qXON2x44do0+fPqnm0d7eTidPnqT9/X2f5u1wOCg9PV2OYTKZaGFhQXW9u7ubTp8+TaGhoZSUlER9fX2qOfCcee5uvCb3Opl7rW/fvqULFy6QRqOh8fFx+vz5M126dIl0Oh1FRETIaz+uBQDAHwiSAALQ6uoqWSwWqqyspPn5eRkYFBYW0qNHj+jGjRt09epV2YZfHIj44sOHD1RVVUW1tbUyCOGAoqWlRbkeHx8vA7Fnz56p7uMyH/FxAOWLxsZGamtrkwFKcHCwXIPbwMAA3b9/n+rq6mhmZoZqamqooqKC7HY7+auhoYGePn0qP5+UlBQqKysjvV5PU1NTMlDj6yEhIX73CwCgEAAQcBwOh+Bfz5WVlQPXbt26Jcxms6rObrfL9hsbG0qd0+mUdcvLy7JssVhEXl6e6r6bN2+KyMhIpfzy5UsRFRUlXC6XMo+goCClj59xz2FkZESpe/Pmjazb2tqSZZPJJG7fvq26r6SkRJkXj8Ptee5uvCau4/49xxkcHFT1o9PpxPPnz385TwAAX2EnCSAApaam0uXLl+VxW0lJCfX09NDGxsb/6pN3XDIyMlR1RqNRVb5+/TodP35c7vi4j+d4x4l3mXzFuzpusbGx8n1tbU2ZQ1ZWlqo9l7neX3yk5+nhw4dUXV0td8N4h2lpacnvPgEAPCFIAghAHKi8f/9e5t2cPXuWOjo6ZP7O8vKy1/buozBOYnbb3d31e1zOEyovL5dHbDs7O9Tf3686LvOF5xEX5w4xX/OZ/FlHeHi4qvz48WOanZ2la9eu0djYmPzc3MEeAMDvQJAEEKA4wOBdlidPnpDT6ZQBDP/R5/e9vT1V2+joaPnOOUpunsnPLDk5WeYleZqcnDwwLu/GjIyMUFdXl3xqjHOhDgvPYWJiQlXHZQ5ofF3HzyQmJtKDBw9oeHhYzvvH/CoAAH8E+9UaAP4IDmZGR0cpNzeXYmJiZHl9fV0GGS6Xi4aGhuRTY/zUW2RkJJ05c4YMBoPcTWltbaXFxUWZPO3p3r17MuiyWq1kNptlH+/evTswNo+RmZlJ9fX1cheJn647LPx0Hieenz9/Xh6LvX79ml69eiWDMsZj8dh8XJaQkCCP6Zqamn7Z79bWluy7uLhY3vflyxeZwF1UVHRocweAf5DP2UsA8MfMzc2JK1euiOjoaKHRaERiYqLo6OiQ19bW1kROTo7QarWqhObx8XFx7tw5ceLECZGdnS1sNpsqcZv19vYKvV4vwsLCRH5+vrBararEbc92fO/Hjx99nrMvyeOsq6tLnDp1SoSEhMh1vXjx4sDajUajnGNaWpoYHh72mrjtOc729rYoLS0VBoNBhIaGiri4OFFbW6skjAMA/I4g/nHUgRoABJbm5may2Ww0PT191FMBADgyyEkCAMXm5qb8/qLOzk66e/cuPhkA+KchSAIABX/RJH9T9cWLFw881Xbnzh3SarVeX3wNAOBvg+M2APAJJ1F/+/bN6zX+NyCcYA4A8DdBkAQAAADgBY7bAAAAALxAkAQAAADgBYIkAAAAAC8QJAEAAAB4gSAJAAAAwAsESQAAAABeIEgCAAAA8AJBEgAAAAAd9B1xa2zs76W1bAAAAABJRU5ErkJggg==" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 60 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_16.9 ScatterPlot with plotly_**", + "id": "8cc292b934bc88b0" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T10:33:39.468763Z", + "start_time": "2025-11-14T10:33:39.451809Z" + } + }, + "cell_type": "code", + "source": "student", + "id": "21a675b37e66f769", + "outputs": [ + { + "data": { + "text/plain": [ + " number_courses time_study Marks student_id class_level subject \\\n", + "0 3 4.508 19.202 1 10 Science \n", + "1 4 0.096 7.734 2 12 Math \n", + "2 4 3.133 13.811 3 11 Science \n", + "3 6 7.909 53.018 4 10 Science \n", + "4 8 7.811 55.299 5 11 English \n", + ".. ... ... ... ... ... ... \n", + "95 6 3.561 19.128 96 11 English \n", + "96 3 0.301 5.609 97 10 Science \n", + "97 4 7.163 41.444 98 11 Math \n", + "98 7 0.309 12.027 99 12 Math \n", + "99 3 6.335 32.357 100 12 Science \n", + "\n", + " study_hours test_score week attendance_rate gender hostel \\\n", + "0 4.508 19.202 2 0.89 F 0 \n", + "1 0.096 7.734 3 0.98 M 0 \n", + "2 3.133 13.811 5 0.83 F 0 \n", + "3 7.909 53.018 4 0.92 F 1 \n", + "4 7.811 55.299 3 0.80 M 1 \n", + ".. ... ... ... ... ... ... \n", + "95 3.561 19.128 4 0.94 F 1 \n", + "96 0.301 5.609 2 0.83 M 1 \n", + "97 7.163 41.444 3 0.97 M 0 \n", + "98 0.309 12.027 1 0.98 F 0 \n", + "99 6.335 32.357 5 0.95 M 1 \n", + "\n", + " Tshirt_size class_name \n", + "0 2 Sophomore \n", + "1 3 Senior \n", + "2 3 Junior \n", + "3 4 Sophomore \n", + "4 4 Junior \n", + ".. ... ... \n", + "95 3 Junior \n", + "96 3 Sophomore \n", + "97 1 Junior \n", + "98 1 Senior \n", + "99 2 Senior \n", + "\n", + "[100 rows x 14 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
number_coursestime_studyMarksstudent_idclass_levelsubjectstudy_hourstest_scoreweekattendance_rategenderhostelTshirt_sizeclass_name
034.50819.202110Science4.50819.20220.89F02Sophomore
140.0967.734212Math0.0967.73430.98M03Senior
243.13313.811311Science3.13313.81150.83F03Junior
367.90953.018410Science7.90953.01840.92F14Sophomore
487.81155.299511English7.81155.29930.80M14Junior
.............................................
9563.56119.1289611English3.56119.12840.94F13Junior
9630.3015.6099710Science0.3015.60920.83M13Sophomore
9747.16341.4449811Math7.16341.44430.97M01Junior
9870.30912.0279912Math0.30912.02710.98F01Senior
9936.33532.35710012Science6.33532.35750.95M12Senior
\n", + "

100 rows × 14 columns

\n", + "
" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 61 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T10:34:29.564227Z", + "start_time": "2025-11-14T10:34:26.869684Z" + } + }, + "cell_type": "code", + "source": [ + "fig = px.scatter(student, x='time_study', y='Marks')\n", + "fig.show()" + ], + "id": "73c109691a1f5552", + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "data": [ + { + "hovertemplate": "time_study=%{x}
Marks=%{y}", + "legendgroup": "", + "marker": { + "color": "#636efa", + "symbol": "circle" + }, + "mode": "markers", + "name": "", + "orientation": "v", + "showlegend": false, + "x": { + "dtype": "f8", + "bdata": "1XjpJjEIEkD6fmq8dJO4P6rx0k1iEAlAiUFg5dCiH0BYObTIdj4fQOOlm8QgsAlAjZduEoNAGEDn+6nx0k0LQKRwPQrXoxFA/tR46SaxGEC28/3UeGkdQN9PjZduEts/rBxaZDvfEEB/arx0kxgRQN0kBoGVQwdACtejcD0KEUDHSzeJQeAWQFK4HoXrURhA8tJNYhDYHkA3iUFg5dAPQDvfT42X7hJAGy/dJAaBGECcxCCwcmgAQAAAAAAAgBNAFK5H4XoUDUBQjZduEoP2P6jGSzeJQeA/UI2XbhKDEUArhxbZzvfDP2IQWDm0yPQ/tvP91HjpDkD4U+Olm8T+P23n+6nx0u0/x0s3iUFgGkCiRbbz/VQQQHnpJjEILB5A7nw/NV66B0BvEoPAyiEdQG8Sg8DKIRpAmpmZmZkZH0DsUbgehevBP9V46SYxCAZA7nw/NV66DEC28/3UeOn4P90kBoGVQ/8/sHJoke18AEDHSzeJQWAOQARWDi2yHRNACtejcD2KFkDn+6nx0k0PQB1aZDvfzxpAhetRuB6FEEB56SYxCKzoPxkEVg4tMhhAd76fGi9dHkDn+6nx0k0HQKrx0k1ikB5Af2q8dJOYHkCYbhKDwMoYQKwcWmQ73x1AqvHSTWIQ2D8bL90kBoEDQAwCK4cW2QxAYOXQItt5E0CkcD0K16PAP4lBYOXQIgFAMQisHFrkFUCamZmZmZnhP1K4HoXrUfY/L90kBoGVD0AX2c73U+MNQL6fGi/dJARA1XjpJjGIEkCq8dJNYhD6PzeJQWDl0BtAGQRWDi2y6T9qvHSTGIQZQHE9Ctej8BdA5/up8dLNHUDD9Shcj8LpP4cW2c730x9Af2q8dJMYAkCkcD0K16MdQPp+arx0kwlAg8DKoUW2/z/n+6nx0s0YQPhT46WbRBBAukkMAiuH8D8MAiuHFtn8Pxsv3SQGgRlA7nw/NV66EEDXo3A9CtcFQM/3U+OlGxRA/Knx0k3iGUAnMQisHFoPQLByaJHtfAxA3SQGgZVD0z/0/dR46aYcQC2yne+nxtM/16NwPQpXGUA=" + }, + "xaxis": "x", + "y": { + "dtype": "f8", + "bdata": "wcqhRbYzM0BWDi2yne8eQKwcWmQ7nytA/Knx0k2CSkCDwMqhRaZLQN9PjZdu0jFA3SQGgZXjPUDdJAaBlUMxQAwCK4cWWTRA6SYxCKzcPkD4U+OlmwRFQN0kBoGVQyhAxSCwcmhROEB56SYxCKwxQCUGgZVDyyZAnu+nxkt3M0A/NV66SYw+QB+F61G4PkNAke18PzV+SUA1XrpJDCI5QKabxCCwEjZA1XjpJjH4QUBeukkMAmsoQF66SQwCCzxAMQisHFqEMEDLoUW2830aQCUGgZVDSylA1XjpJjGIOkDRItv5fqoiQAaBlUOLrCFAeekmMQgsOEAzMzMzMzMgQPp+arx0Ey5A7FG4HoX7Q0Cyne+nxisxQHe+nxov/UVAsHJoke08KkBEi2zn+zlHQOf7qfHSrURAGQRWDi2SSUDy0k1iEFgdQDMzMzMzcy9ATDeJQWDFM0DP91PjpdskQJZDi2zneyNADAIrhxbZIUCHFtnO97MwQPp+arx0szZAbxKDwMrhOkBCYOXQIhszQJMYBFYOTURAyXa+nxovNkDFILByaJEfQN0kBoGVU0JATmIQWDmUSkCwcmiR7TwyQMuhRbbzrUpAtMh2vp/KSUAj2/l+ajw/QJZDi2znq0lAJQaBlUMLJUDjpZvEILAlQNejcD0KlzNAGy/dJAZhNUA730+Nly4pQDm0yHa+HytAi2zn+6mRO0A9CtejcL0YQNejcD0K1yFAZmZmZmZmNUBCYOXQIpswQKJFtvP91CpA2c73U+NlNEB1kxgEVg4cQGDl0CLb+UNAke18PzXeGEBzaJHtfF9CQN0kBoGVI0NAEoPAyqHFSEBMN4lBYGUZQAwCK4cWKUtAFK5H4Xq0MUDpJjEIrAxGQEJg5dAiGzBAvHSTGAR2MEDRItv5fvpDQKAaL90kJjdAg8DKoUU2GECoxks3iYEmQFCNl24SA0RAvp8aL91kOECq8dJNYpAzQNEi2/l+6jdASgwCK4c2RUD6fmq8dHM4QFTjpZvEIDNAVg4tsp1vFkBGtvP91LhEQOf7qfHSDShABFYOLbItQEA=" + }, + "yaxis": "y", + "type": "scatter" + } + ], + "layout": { + "template": { + "data": { + "histogram2dcontour": [ + { + "type": "histogram2dcontour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "choropleth": [ + { + "type": "choropleth", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "histogram2d": [ + { + "type": "histogram2d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmap": [ + { + "type": "heatmap", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "contourcarpet": [ + { + "type": "contourcarpet", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "contour": [ + { + "type": "contour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "surface": [ + { + "type": "surface", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "mesh3d": [ + { + "type": "mesh3d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "parcoords": [ + { + "type": "parcoords", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolargl": [ + { + "type": "scatterpolargl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "scattergeo": [ + { + "type": "scattergeo", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolar": [ + { + "type": "scatterpolar", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "scattergl": [ + { + "type": "scattergl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatter3d": [ + { + "type": "scatter3d", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermap": [ + { + "type": "scattermap", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermapbox": [ + { + "type": "scattermapbox", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterternary": [ + { + "type": "scatterternary", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattercarpet": [ + { + "type": "scattercarpet", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ] + }, + "layout": { + "autotypenumbers": "strict", + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "hovermode": "closest", + "hoverlabel": { + "align": "left" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "bgcolor": "#E5ECF6", + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "ternary": { + "bgcolor": "#E5ECF6", + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "sequential": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ] + }, + "xaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "yaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "geo": { + "bgcolor": "white", + "landcolor": "#E5ECF6", + "subunitcolor": "white", + "showland": true, + "showlakes": true, + "lakecolor": "white" + }, + "title": { + "x": 0.05 + }, + "mapbox": { + "style": "light" + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "time_study" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "Marks" + } + }, + "legend": { + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + } + }, + "config": { + "plotlyServerURL": "https://plot.ly" + } + } + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 62 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T10:36:26.834420Z", + "start_time": "2025-11-14T10:36:26.785236Z" + } + }, + "cell_type": "code", + "source": [ + "fig = px.scatter(student, x='time_study', y='Marks', color='gender')\n", + "fig.show()" + ], + "id": "f05bdcbd347481b5", + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "data": [ + { + "hovertemplate": "gender=F
time_study=%{x}
Marks=%{y}", + "legendgroup": "F", + "marker": { + "color": "#636efa", + "symbol": "circle" + }, + "mode": "markers", + "name": "F", + "orientation": "v", + "showlegend": true, + "x": { + "dtype": "f8", + "bdata": "1XjpJjEIEkCq8dJNYhAJQIlBYOXQoh9A46WbxCCwCUDn+6nx0k0LQP7UeOkmsRhAtvP91HhpHUDfT42XbhLbP90kBoGVQwdACtejcD0KEUDHSzeJQeAWQDeJQWDl0A9AGy/dJAaBGECcxCCwcmgAQAAAAAAAgBNAFK5H4XoUDUBQjZduEoP2P6jGSzeJQeA/+FPjpZvE/j/ufD81XroHQOxRuB6F68E/1XjpJjEIBkDufD81XroMQLbz/dR46fg/5/up8dJND0CF61G4HoUQQOf7qfHSTQdAqvHSTWKQHkCsHFpkO98dQKrx0k1iENg/Gy/dJAaBA0Bg5dAi23kTQJqZmZmZmeE/L90kBoGVD0C+nxov3SQEQBkEVg4tsuk/cT0K16PwF0Dn+6nx0s0dQIcW2c730x9Af2q8dJMYAkCkcD0K16MdQPp+arx0kwlA+FPjpZtEEEC6SQwCK4fwPwwCK4cW2fw/Gy/dJAaBGUDXo3A9CtcFQM/3U+OlGxRAJzEIrBxaD0CwcmiR7XwMQC2yne+nxtM/" + }, + "xaxis": "x", + "y": { + "dtype": "f8", + "bdata": "wcqhRbYzM0CsHFpkO58rQPyp8dJNgkpA30+Nl27SMUDdJAaBlUMxQOkmMQis3D5A+FPjpZsERUDdJAaBlUMoQCUGgZVDyyZAnu+nxkt3M0A/NV66SYw+QDVeukkMIjlA1XjpJjH4QUBeukkMAmsoQF66SQwCCzxAMQisHFqEMEDLoUW2830aQCUGgZVDSylAMzMzMzMzIECwcmiR7TwqQPLSTWIQWB1AMzMzMzNzL0BMN4lBYMUzQM/3U+Ol2yRAQmDl0CIbM0DJdr6fGi82QLByaJHtPDJAy6FFtvOtSkCWQ4ts56tJQCUGgZVDCyVA46WbxCCwJUAbL90kBmE1QD0K16NwvRhAZmZmZmZmNUCiRbbz/dQqQJHtfD813hhA3SQGgZUjQ0ASg8DKocVIQAwCK4cWKUtAFK5H4Xq0MUDpJjEIrAxGQEJg5dAiGzBAoBov3SQmN0CDwMqhRTYYQKjGSzeJgSZAUI2XbhIDRECq8dJNYpAzQNEi2/l+6jdA+n5qvHRzOEBU46WbxCAzQOf7qfHSDShA" + }, + "yaxis": "y", + "type": "scatter" + }, + { + "hovertemplate": "gender=M
time_study=%{x}
Marks=%{y}", + "legendgroup": "M", + "marker": { + "color": "#EF553B", + "symbol": "circle" + }, + "mode": "markers", + "name": "M", + "orientation": "v", + "showlegend": true, + "x": { + "dtype": "f8", + "bdata": "+n5qvHSTuD9YObTIdj4fQI2XbhKDQBhApHA9CtejEUCsHFpkO98QQH9qvHSTGBFAUrgehetRGEDy0k1iENgeQDvfT42X7hJAUI2XbhKDEUArhxbZzvfDP2IQWDm0yPQ/tvP91HjpDkBt5/up8dLtP8dLN4lBYBpAokW28/1UEEB56SYxCCweQG8Sg8DKIR1AbxKDwMohGkCamZmZmRkfQN0kBoGVQ/8/sHJoke18AEDHSzeJQWAOQARWDi2yHRNACtejcD2KFkAdWmQ7388aQHnpJjEIrOg/GQRWDi0yGEB3vp8aL10eQH9qvHSTmB5AmG4Sg8DKGEAMAiuHFtkMQKRwPQrXo8A/iUFg5dAiAUAxCKwcWuQVQFK4HoXrUfY/F9nO91PjDUDVeOkmMYgSQKrx0k1iEPo/N4lBYOXQG0BqvHSTGIQZQMP1KFyPwuk/g8DKoUW2/z/n+6nx0s0YQO58PzVeuhBA/Knx0k3iGUDdJAaBlUPTP/T91HjpphxA16NwPQpXGUA=" + }, + "xaxis": "x", + "y": { + "dtype": "f8", + "bdata": "Vg4tsp3vHkCDwMqhRaZLQN0kBoGV4z1ADAIrhxZZNEDFILByaFE4QHnpJjEIrDFAH4XrUbg+Q0CR7Xw/NX5JQKabxCCwEjZA1XjpJjGIOkDRItv5fqoiQAaBlUOLrCFAeekmMQgsOED6fmq8dBMuQOxRuB6F+0NAsp3vp8YrMUB3vp8aL/1FQESLbOf7OUdA5/up8dKtREAZBFYOLZJJQJZDi2zneyNADAIrhxbZIUCHFtnO97MwQPp+arx0szZAbxKDwMrhOkCTGARWDk1EQMUgsHJokR9A3SQGgZVTQkBOYhBYOZRKQLTIdr6fyklAI9v5fmo8P0DXo3A9CpczQDvfT42XLilAObTIdr4fK0CLbOf7qZE7QNejcD0K1yFAQmDl0CKbMEDZzvdT42U0QHWTGARWDhxAYOXQItv5Q0BzaJHtfF9CQEw3iUFgZRlAvHSTGAR2MEDRItv5fvpDQL6fGi/dZDhASgwCK4c2RUBWDi2ynW8WQEa28/3UuERABFYOLbItQEA=" + }, + "yaxis": "y", + "type": "scatter" + } + ], + "layout": { + "template": { + "data": { + "histogram2dcontour": [ + { + "type": "histogram2dcontour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "choropleth": [ + { + "type": "choropleth", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "histogram2d": [ + { + "type": "histogram2d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmap": [ + { + "type": "heatmap", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "contourcarpet": [ + { + "type": "contourcarpet", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "contour": [ + { + "type": "contour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "surface": [ + { + "type": "surface", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "mesh3d": [ + { + "type": "mesh3d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "parcoords": [ + { + "type": "parcoords", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolargl": [ + { + "type": "scatterpolargl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "scattergeo": [ + { + "type": "scattergeo", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolar": [ + { + "type": "scatterpolar", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "scattergl": [ + { + "type": "scattergl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatter3d": [ + { + "type": "scatter3d", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermap": [ + { + "type": "scattermap", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermapbox": [ + { + "type": "scattermapbox", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterternary": [ + { + "type": "scatterternary", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattercarpet": [ + { + "type": "scattercarpet", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ] + }, + "layout": { + "autotypenumbers": "strict", + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "hovermode": "closest", + "hoverlabel": { + "align": "left" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "bgcolor": "#E5ECF6", + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "ternary": { + "bgcolor": "#E5ECF6", + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "sequential": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ] + }, + "xaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "yaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "geo": { + "bgcolor": "white", + "landcolor": "#E5ECF6", + "subunitcolor": "white", + "showland": true, + "showlakes": true, + "lakecolor": "white" + }, + "title": { + "x": 0.05 + }, + "mapbox": { + "style": "light" + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "time_study" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "Marks" + } + }, + "legend": { + "title": { + "text": "gender" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + } + }, + "config": { + "plotlyServerURL": "https://plot.ly" + } + } + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 63 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T10:54:50.876929Z", + "start_time": "2025-11-14T10:54:50.829992Z" + } + }, + "cell_type": "code", + "source": [ + "fig= px.scatter(student, x='time_study', y='Marks', color='gender', size= 'Tshirt_size')\n", + "\n", + "fig.show()" + ], + "id": "c2f9d14a74ce8e9e", + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "data": [ + { + "hovertemplate": "gender=F
time_study=%{x}
Marks=%{y}
Tshirt_size=%{marker.size}", + "legendgroup": "F", + "marker": { + "color": "#636efa", + "size": { + "dtype": "i1", + "bdata": "AgMEAwMCAwEDAQIBAgMCBAQCAwQBAQMDBAICAgECAQQDBAMCAQECAwIBAwMEAgIBAwMB" + }, + "sizemode": "area", + "sizeref": 0.01, + "symbol": "circle" + }, + "mode": "markers", + "name": "F", + "orientation": "v", + "showlegend": true, + "x": { + "dtype": "f8", + "bdata": "1XjpJjEIEkCq8dJNYhAJQIlBYOXQoh9A46WbxCCwCUDn+6nx0k0LQP7UeOkmsRhAtvP91HhpHUDfT42XbhLbP90kBoGVQwdACtejcD0KEUDHSzeJQeAWQDeJQWDl0A9AGy/dJAaBGECcxCCwcmgAQAAAAAAAgBNAFK5H4XoUDUBQjZduEoP2P6jGSzeJQeA/+FPjpZvE/j/ufD81XroHQOxRuB6F68E/1XjpJjEIBkDufD81XroMQLbz/dR46fg/5/up8dJND0CF61G4HoUQQOf7qfHSTQdAqvHSTWKQHkCsHFpkO98dQKrx0k1iENg/Gy/dJAaBA0Bg5dAi23kTQJqZmZmZmeE/L90kBoGVD0C+nxov3SQEQBkEVg4tsuk/cT0K16PwF0Dn+6nx0s0dQIcW2c730x9Af2q8dJMYAkCkcD0K16MdQPp+arx0kwlA+FPjpZtEEEC6SQwCK4fwPwwCK4cW2fw/Gy/dJAaBGUDXo3A9CtcFQM/3U+OlGxRAJzEIrBxaD0CwcmiR7XwMQC2yne+nxtM/" + }, + "xaxis": "x", + "y": { + "dtype": "f8", + "bdata": "wcqhRbYzM0CsHFpkO58rQPyp8dJNgkpA30+Nl27SMUDdJAaBlUMxQOkmMQis3D5A+FPjpZsERUDdJAaBlUMoQCUGgZVDyyZAnu+nxkt3M0A/NV66SYw+QDVeukkMIjlA1XjpJjH4QUBeukkMAmsoQF66SQwCCzxAMQisHFqEMEDLoUW2830aQCUGgZVDSylAMzMzMzMzIECwcmiR7TwqQPLSTWIQWB1AMzMzMzNzL0BMN4lBYMUzQM/3U+Ol2yRAQmDl0CIbM0DJdr6fGi82QLByaJHtPDJAy6FFtvOtSkCWQ4ts56tJQCUGgZVDCyVA46WbxCCwJUAbL90kBmE1QD0K16NwvRhAZmZmZmZmNUCiRbbz/dQqQJHtfD813hhA3SQGgZUjQ0ASg8DKocVIQAwCK4cWKUtAFK5H4Xq0MUDpJjEIrAxGQEJg5dAiGzBAoBov3SQmN0CDwMqhRTYYQKjGSzeJgSZAUI2XbhIDRECq8dJNYpAzQNEi2/l+6jdA+n5qvHRzOEBU46WbxCAzQOf7qfHSDShA" + }, + "yaxis": "y", + "type": "scatter" + }, + { + "hovertemplate": "gender=M
time_study=%{x}
Marks=%{y}
Tshirt_size=%{marker.size}", + "legendgroup": "M", + "marker": { + "color": "#EF553B", + "size": { + "dtype": "i1", + "bdata": "AwQEBAQCAQMCAgEBBAMDAwEDAwMCBAMEAQQBAQIDAwIBAgMBAwIBAgEEAgQCAwMBAg==" + }, + "sizemode": "area", + "sizeref": 0.01, + "symbol": "circle" + }, + "mode": "markers", + "name": "M", + "orientation": "v", + "showlegend": true, + "x": { + "dtype": "f8", + "bdata": "+n5qvHSTuD9YObTIdj4fQI2XbhKDQBhApHA9CtejEUCsHFpkO98QQH9qvHSTGBFAUrgehetRGEDy0k1iENgeQDvfT42X7hJAUI2XbhKDEUArhxbZzvfDP2IQWDm0yPQ/tvP91HjpDkBt5/up8dLtP8dLN4lBYBpAokW28/1UEEB56SYxCCweQG8Sg8DKIR1AbxKDwMohGkCamZmZmRkfQN0kBoGVQ/8/sHJoke18AEDHSzeJQWAOQARWDi2yHRNACtejcD2KFkAdWmQ7388aQHnpJjEIrOg/GQRWDi0yGEB3vp8aL10eQH9qvHSTmB5AmG4Sg8DKGEAMAiuHFtkMQKRwPQrXo8A/iUFg5dAiAUAxCKwcWuQVQFK4HoXrUfY/F9nO91PjDUDVeOkmMYgSQKrx0k1iEPo/N4lBYOXQG0BqvHSTGIQZQMP1KFyPwuk/g8DKoUW2/z/n+6nx0s0YQO58PzVeuhBA/Knx0k3iGUDdJAaBlUPTP/T91HjpphxA16NwPQpXGUA=" + }, + "xaxis": "x", + "y": { + "dtype": "f8", + "bdata": "Vg4tsp3vHkCDwMqhRaZLQN0kBoGV4z1ADAIrhxZZNEDFILByaFE4QHnpJjEIrDFAH4XrUbg+Q0CR7Xw/NX5JQKabxCCwEjZA1XjpJjGIOkDRItv5fqoiQAaBlUOLrCFAeekmMQgsOED6fmq8dBMuQOxRuB6F+0NAsp3vp8YrMUB3vp8aL/1FQESLbOf7OUdA5/up8dKtREAZBFYOLZJJQJZDi2zneyNADAIrhxbZIUCHFtnO97MwQPp+arx0szZAbxKDwMrhOkCTGARWDk1EQMUgsHJokR9A3SQGgZVTQkBOYhBYOZRKQLTIdr6fyklAI9v5fmo8P0DXo3A9CpczQDvfT42XLilAObTIdr4fK0CLbOf7qZE7QNejcD0K1yFAQmDl0CKbMEDZzvdT42U0QHWTGARWDhxAYOXQItv5Q0BzaJHtfF9CQEw3iUFgZRlAvHSTGAR2MEDRItv5fvpDQL6fGi/dZDhASgwCK4c2RUBWDi2ynW8WQEa28/3UuERABFYOLbItQEA=" + }, + "yaxis": "y", + "type": "scatter" + } + ], + "layout": { + "template": { + "data": { + "histogram2dcontour": [ + { + "type": "histogram2dcontour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "choropleth": [ + { + "type": "choropleth", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "histogram2d": [ + { + "type": "histogram2d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmap": [ + { + "type": "heatmap", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "contourcarpet": [ + { + "type": "contourcarpet", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "contour": [ + { + "type": "contour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "surface": [ + { + "type": "surface", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "mesh3d": [ + { + "type": "mesh3d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "parcoords": [ + { + "type": "parcoords", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolargl": [ + { + "type": "scatterpolargl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "scattergeo": [ + { + "type": "scattergeo", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolar": [ + { + "type": "scatterpolar", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "scattergl": [ + { + "type": "scattergl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatter3d": [ + { + "type": "scatter3d", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermap": [ + { + "type": "scattermap", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermapbox": [ + { + "type": "scattermapbox", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterternary": [ + { + "type": "scatterternary", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattercarpet": [ + { + "type": "scattercarpet", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ] + }, + "layout": { + "autotypenumbers": "strict", + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "hovermode": "closest", + "hoverlabel": { + "align": "left" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "bgcolor": "#E5ECF6", + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "ternary": { + "bgcolor": "#E5ECF6", + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "sequential": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ] + }, + "xaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "yaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "geo": { + "bgcolor": "white", + "landcolor": "#E5ECF6", + "subunitcolor": "white", + "showland": true, + "showlakes": true, + "lakecolor": "white" + }, + "title": { + "x": 0.05 + }, + "mapbox": { + "style": "light" + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "time_study" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "Marks" + } + }, + "legend": { + "title": { + "text": "gender" + }, + "tracegroupgap": 0, + "itemsizing": "constant" + }, + "margin": { + "t": 60 + } + }, + "config": { + "plotlyServerURL": "https://plot.ly" + } + } + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 64 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T10:57:08.638358Z", + "start_time": "2025-11-14T10:57:08.586401Z" + } + }, + "cell_type": "code", + "source": [ + "fig= px.scatter(student, x='time_study', y='Marks', color='gender', size= 'Tshirt_size',\n", + " hover_data=['time_study', 'Marks', 'hostel'])\n", + "\n", + "fig.show()" + ], + "id": "d11a3e2137604ab2", + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "data": [ + { + "customdata": { + "dtype": "i1", + "bdata": "AAABAAABAQAAAAEAAAEAAQEBAQEAAQEBAAAAAAEAAQAAAQAAAAEAAQAAAQAAAAAAAQEA", + "shape": "51, 1" + }, + "hovertemplate": "gender=F
time_study=%{x}
Marks=%{y}
Tshirt_size=%{marker.size}
hostel=%{customdata[0]}", + "legendgroup": "F", + "marker": { + "color": "#636efa", + "size": { + "dtype": "i1", + "bdata": "AgMEAwMCAwEDAQIBAgMCBAQCAwQBAQMDBAICAgECAQQDBAMCAQECAwIBAwMEAgIBAwMB" + }, + "sizemode": "area", + "sizeref": 0.01, + "symbol": "circle" + }, + "mode": "markers", + "name": "F", + "orientation": "v", + "showlegend": true, + "x": { + "dtype": "f8", + "bdata": "1XjpJjEIEkCq8dJNYhAJQIlBYOXQoh9A46WbxCCwCUDn+6nx0k0LQP7UeOkmsRhAtvP91HhpHUDfT42XbhLbP90kBoGVQwdACtejcD0KEUDHSzeJQeAWQDeJQWDl0A9AGy/dJAaBGECcxCCwcmgAQAAAAAAAgBNAFK5H4XoUDUBQjZduEoP2P6jGSzeJQeA/+FPjpZvE/j/ufD81XroHQOxRuB6F68E/1XjpJjEIBkDufD81XroMQLbz/dR46fg/5/up8dJND0CF61G4HoUQQOf7qfHSTQdAqvHSTWKQHkCsHFpkO98dQKrx0k1iENg/Gy/dJAaBA0Bg5dAi23kTQJqZmZmZmeE/L90kBoGVD0C+nxov3SQEQBkEVg4tsuk/cT0K16PwF0Dn+6nx0s0dQIcW2c730x9Af2q8dJMYAkCkcD0K16MdQPp+arx0kwlA+FPjpZtEEEC6SQwCK4fwPwwCK4cW2fw/Gy/dJAaBGUDXo3A9CtcFQM/3U+OlGxRAJzEIrBxaD0CwcmiR7XwMQC2yne+nxtM/" + }, + "xaxis": "x", + "y": { + "dtype": "f8", + "bdata": "wcqhRbYzM0CsHFpkO58rQPyp8dJNgkpA30+Nl27SMUDdJAaBlUMxQOkmMQis3D5A+FPjpZsERUDdJAaBlUMoQCUGgZVDyyZAnu+nxkt3M0A/NV66SYw+QDVeukkMIjlA1XjpJjH4QUBeukkMAmsoQF66SQwCCzxAMQisHFqEMEDLoUW2830aQCUGgZVDSylAMzMzMzMzIECwcmiR7TwqQPLSTWIQWB1AMzMzMzNzL0BMN4lBYMUzQM/3U+Ol2yRAQmDl0CIbM0DJdr6fGi82QLByaJHtPDJAy6FFtvOtSkCWQ4ts56tJQCUGgZVDCyVA46WbxCCwJUAbL90kBmE1QD0K16NwvRhAZmZmZmZmNUCiRbbz/dQqQJHtfD813hhA3SQGgZUjQ0ASg8DKocVIQAwCK4cWKUtAFK5H4Xq0MUDpJjEIrAxGQEJg5dAiGzBAoBov3SQmN0CDwMqhRTYYQKjGSzeJgSZAUI2XbhIDRECq8dJNYpAzQNEi2/l+6jdA+n5qvHRzOEBU46WbxCAzQOf7qfHSDShA" + }, + "yaxis": "y", + "type": "scatter" + }, + { + "customdata": { + "dtype": "i1", + "bdata": "AAEAAQEBAAEBAQEAAQABAAAAAQABAAEBAQEBAAABAAABAQEBAAABAQAAAAAAAAEAAQ==", + "shape": "49, 1" + }, + "hovertemplate": "gender=M
time_study=%{x}
Marks=%{y}
Tshirt_size=%{marker.size}
hostel=%{customdata[0]}", + "legendgroup": "M", + "marker": { + "color": "#EF553B", + "size": { + "dtype": "i1", + "bdata": "AwQEBAQCAQMCAgEBBAMDAwEDAwMCBAMEAQQBAQIDAwIBAgMBAwIBAgEEAgQCAwMBAg==" + }, + "sizemode": "area", + "sizeref": 0.01, + "symbol": "circle" + }, + "mode": "markers", + "name": "M", + "orientation": "v", + "showlegend": true, + "x": { + "dtype": "f8", + "bdata": "+n5qvHSTuD9YObTIdj4fQI2XbhKDQBhApHA9CtejEUCsHFpkO98QQH9qvHSTGBFAUrgehetRGEDy0k1iENgeQDvfT42X7hJAUI2XbhKDEUArhxbZzvfDP2IQWDm0yPQ/tvP91HjpDkBt5/up8dLtP8dLN4lBYBpAokW28/1UEEB56SYxCCweQG8Sg8DKIR1AbxKDwMohGkCamZmZmRkfQN0kBoGVQ/8/sHJoke18AEDHSzeJQWAOQARWDi2yHRNACtejcD2KFkAdWmQ7388aQHnpJjEIrOg/GQRWDi0yGEB3vp8aL10eQH9qvHSTmB5AmG4Sg8DKGEAMAiuHFtkMQKRwPQrXo8A/iUFg5dAiAUAxCKwcWuQVQFK4HoXrUfY/F9nO91PjDUDVeOkmMYgSQKrx0k1iEPo/N4lBYOXQG0BqvHSTGIQZQMP1KFyPwuk/g8DKoUW2/z/n+6nx0s0YQO58PzVeuhBA/Knx0k3iGUDdJAaBlUPTP/T91HjpphxA16NwPQpXGUA=" + }, + "xaxis": "x", + "y": { + "dtype": "f8", + "bdata": "Vg4tsp3vHkCDwMqhRaZLQN0kBoGV4z1ADAIrhxZZNEDFILByaFE4QHnpJjEIrDFAH4XrUbg+Q0CR7Xw/NX5JQKabxCCwEjZA1XjpJjGIOkDRItv5fqoiQAaBlUOLrCFAeekmMQgsOED6fmq8dBMuQOxRuB6F+0NAsp3vp8YrMUB3vp8aL/1FQESLbOf7OUdA5/up8dKtREAZBFYOLZJJQJZDi2zneyNADAIrhxbZIUCHFtnO97MwQPp+arx0szZAbxKDwMrhOkCTGARWDk1EQMUgsHJokR9A3SQGgZVTQkBOYhBYOZRKQLTIdr6fyklAI9v5fmo8P0DXo3A9CpczQDvfT42XLilAObTIdr4fK0CLbOf7qZE7QNejcD0K1yFAQmDl0CKbMEDZzvdT42U0QHWTGARWDhxAYOXQItv5Q0BzaJHtfF9CQEw3iUFgZRlAvHSTGAR2MEDRItv5fvpDQL6fGi/dZDhASgwCK4c2RUBWDi2ynW8WQEa28/3UuERABFYOLbItQEA=" + }, + "yaxis": "y", + "type": "scatter" + } + ], + "layout": { + "template": { + "data": { + "histogram2dcontour": [ + { + "type": "histogram2dcontour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "choropleth": [ + { + "type": "choropleth", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "histogram2d": [ + { + "type": "histogram2d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmap": [ + { + "type": "heatmap", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "contourcarpet": [ + { + "type": "contourcarpet", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "contour": [ + { + "type": "contour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "surface": [ + { + "type": "surface", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "mesh3d": [ + { + "type": "mesh3d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "parcoords": [ + { + "type": "parcoords", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolargl": [ + { + "type": "scatterpolargl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "scattergeo": [ + { + "type": "scattergeo", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolar": [ + { + "type": "scatterpolar", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "scattergl": [ + { + "type": "scattergl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatter3d": [ + { + "type": "scatter3d", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermap": [ + { + "type": "scattermap", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermapbox": [ + { + "type": "scattermapbox", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterternary": [ + { + "type": "scatterternary", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattercarpet": [ + { + "type": "scattercarpet", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ] + }, + "layout": { + "autotypenumbers": "strict", + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "hovermode": "closest", + "hoverlabel": { + "align": "left" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "bgcolor": "#E5ECF6", + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "ternary": { + "bgcolor": "#E5ECF6", + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "sequential": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ] + }, + "xaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "yaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "geo": { + "bgcolor": "white", + "landcolor": "#E5ECF6", + "subunitcolor": "white", + "showland": true, + "showlakes": true, + "lakecolor": "white" + }, + "title": { + "x": 0.05 + }, + "mapbox": { + "style": "light" + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "time_study" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "Marks" + } + }, + "legend": { + "title": { + "text": "gender" + }, + "tracegroupgap": 0, + "itemsizing": "constant" + }, + "margin": { + "t": 60 + } + }, + "config": { + "plotlyServerURL": "https://plot.ly" + } + } + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 65 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_16.10 Lineplot with plotly_**\n", + "id": "4328488e26f5bc67" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T11:02:32.559456Z", + "start_time": "2025-11-14T11:02:32.524392Z" + } + }, + "cell_type": "code", + "source": [ + "enrollment = pd.read_csv('enrollment_data.csv')\n", + "\n", + "fig = px.line(enrollment , x = 'Year' , y = 'Programming')\n", + "\n", + "fig.show()" + ], + "id": "fc5babb9a1b37740", + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "data": [ + { + "hovertemplate": "Year=%{x}
Programming=%{y}", + "legendgroup": "", + "line": { + "color": "#636efa", + "dash": "solid" + }, + "marker": { + "symbol": "circle" + }, + "mode": "lines", + "name": "", + "orientation": "v", + "showlegend": false, + "x": { + "dtype": "i2", + "bdata": "3wfgB+EH4gfjB+QH5QfmB+cH6Ac=" + }, + "xaxis": "x", + "y": { + "dtype": "i2", + "bdata": "TQJeAz0EfgSfBbMG+QbLB7wIigk=" + }, + "yaxis": "y", + "type": "scatter" + } + ], + "layout": { + "template": { + "data": { + "histogram2dcontour": [ + { + "type": "histogram2dcontour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "choropleth": [ + { + "type": "choropleth", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "histogram2d": [ + { + "type": "histogram2d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmap": [ + { + "type": "heatmap", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "contourcarpet": [ + { + "type": "contourcarpet", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "contour": [ + { + "type": "contour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "surface": [ + { + "type": "surface", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "mesh3d": [ + { + "type": "mesh3d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "parcoords": [ + { + "type": "parcoords", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolargl": [ + { + "type": "scatterpolargl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "scattergeo": [ + { + "type": "scattergeo", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolar": [ + { + "type": "scatterpolar", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "scattergl": [ + { + "type": "scattergl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatter3d": [ + { + "type": "scatter3d", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermap": [ + { + "type": "scattermap", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermapbox": [ + { + "type": "scattermapbox", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterternary": [ + { + "type": "scatterternary", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattercarpet": [ + { + "type": "scattercarpet", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ] + }, + "layout": { + "autotypenumbers": "strict", + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "hovermode": "closest", + "hoverlabel": { + "align": "left" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "bgcolor": "#E5ECF6", + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "ternary": { + "bgcolor": "#E5ECF6", + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "sequential": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ] + }, + "xaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "yaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "geo": { + "bgcolor": "white", + "landcolor": "#E5ECF6", + "subunitcolor": "white", + "showland": true, + "showlakes": true, + "lakecolor": "white" + }, + "title": { + "x": 0.05 + }, + "mapbox": { + "style": "light" + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "Year" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "Programming" + } + }, + "legend": { + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + } + }, + "config": { + "plotlyServerURL": "https://plot.ly" + } + } + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 73 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T11:05:35.377299Z", + "start_time": "2025-11-14T11:05:34.435914Z" + } + }, + "cell_type": "code", + "source": "fig.write_html('dg_mrkt_dt.html')", + "id": "f84c06560f16e670", + "outputs": [], + "execution_count": 74 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# **_16.11 Histogram using plotly_**\n", + "id": "6b5d4d471673dd1d" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T11:14:04.282326Z", + "start_time": "2025-11-14T11:14:04.221028Z" + } + }, + "cell_type": "code", + "source": [ + "fig= px.histogram(student_marks, x='attendance_rate')\n", + "fig.show()" + ], + "id": "b2dfc55f9ceff694", + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "data": [ + { + "bingroup": "x", + "hovertemplate": "attendance_rate=%{x}
count=%{y}", + "legendgroup": "", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "", + "orientation": "v", + "showlegend": false, + "x": { + "dtype": "f8", + "bdata": "exSuR+F67D9cj8L1KFzvP4/C9Shcj+o/cT0K16Nw7T+amZmZmZnpPxSuR+F6FO4/ZmZmZmZm7j8K16NwPQrvP+F6FK5H4eo/CtejcD0K7z+amZmZmZnpP3E9CtejcO0/w/UoXI/C7T/hehSuR+HqPxSuR+F6FO4/rkfhehSu7z/Xo3A9CtfrP7gehetRuO4/ZmZmZmZm7j+uR+F6FK7vP3E9CtejcO0/ZmZmZmZm7j9cj8L1KFzvP3sUrkfheuw/MzMzMzMz6z8pXI/C9SjsPz0K16NwPeo/7FG4HoXr6T/NzMzMzMzsPwAAAAAAAPA/CtejcD0K7z8zMzMzMzPrP4XrUbgehes/rkfhehSu7z9mZmZmZmbuPwAAAAAAAPA/cT0K16Nw7T+4HoXrUbjuP7gehetRuO4/CtejcD0K7z+PwvUoXI/qP9ejcD0K1+s/AAAAAAAA8D8pXI/C9SjsP4/C9Shcj+o/j8L1KFyP6j8pXI/C9SjsP+F6FK5H4eo/XI/C9Shc7z/Xo3A9CtfrPx+F61G4Hu0/rkfhehSu7z+uR+F6FK7vP9ejcD0K1+s/CtejcD0K7z9cj8L1KFzvPwrXo3A9Cu8/CtejcD0K7z/Xo3A9CtfrP8P1KFyPwu0/H4XrUbge7T+PwvUoXI/qP5qZmZmZmek/cT0K16Nw7T8pXI/C9SjsPwrXo3A9Cu8/cT0K16Nw7T8UrkfhehTuPzMzMzMzM+s/H4XrUbge7T9mZmZmZmbuP+F6FK5H4eo/7FG4HoXr6T89CtejcD3qP8P1KFyPwu0/rkfhehSu7z8UrkfhehTuPx+F61G4Hu0/uB6F61G47j8UrkfhehTuP3E9CtejcO0/hetRuB6F6z8zMzMzMzPrP2ZmZmZmZu4/PQrXo3A96j+PwvUoXI/qP4XrUbgehes/uB6F61G47j+PwvUoXI/qP4XrUbgehes/4XoUrkfh6j/sUbgehevpPz0K16NwPeo/H4XrUbge7T89CtejcD3qPxSuR+F6FO4/j8L1KFyP6j8K16NwPQrvP1yPwvUoXO8/ZmZmZmZm7j8=" + }, + "xaxis": "x", + "yaxis": "y", + "type": "histogram" + } + ], + "layout": { + "template": { + "data": { + "histogram2dcontour": [ + { + "type": "histogram2dcontour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "choropleth": [ + { + "type": "choropleth", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "histogram2d": [ + { + "type": "histogram2d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmap": [ + { + "type": "heatmap", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "contourcarpet": [ + { + "type": "contourcarpet", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "contour": [ + { + "type": "contour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "surface": [ + { + "type": "surface", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "mesh3d": [ + { + "type": "mesh3d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "parcoords": [ + { + "type": "parcoords", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolargl": [ + { + "type": "scatterpolargl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "scattergeo": [ + { + "type": "scattergeo", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolar": [ + { + "type": "scatterpolar", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "scattergl": [ + { + "type": "scattergl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatter3d": [ + { + "type": "scatter3d", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermap": [ + { + "type": "scattermap", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermapbox": [ + { + "type": "scattermapbox", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterternary": [ + { + "type": "scatterternary", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattercarpet": [ + { + "type": "scattercarpet", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ] + }, + "layout": { + "autotypenumbers": "strict", + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "hovermode": "closest", + "hoverlabel": { + "align": "left" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "bgcolor": "#E5ECF6", + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "ternary": { + "bgcolor": "#E5ECF6", + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "sequential": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ] + }, + "xaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "yaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "geo": { + "bgcolor": "white", + "landcolor": "#E5ECF6", + "subunitcolor": "white", + "showland": true, + "showlakes": true, + "lakecolor": "white" + }, + "title": { + "x": 0.05 + }, + "mapbox": { + "style": "light" + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "attendance_rate" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "count" + } + }, + "legend": { + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "barmode": "relative" + }, + "config": { + "plotlyServerURL": "https://plot.ly" + } + } + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 75 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T11:17:15.311555Z", + "start_time": "2025-11-14T11:17:15.265052Z" + } + }, + "cell_type": "code", + "source": [ + "fig= px.histogram(student_marks, x='attendance_rate',\n", + " color='gender', nbins=20)\n", + "fig.show()" + ], + "id": "66584363f686428a", + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "data": [ + { + "bingroup": "x", + "hovertemplate": "gender=F
attendance_rate=%{x}
count=%{y}", + "legendgroup": "F", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "F", + "nbinsx": 20, + "orientation": "v", + "showlegend": true, + "x": { + "dtype": "f8", + "bdata": "exSuR+F67D+PwvUoXI/qP3E9CtejcO0/FK5H4XoU7j8K16NwPQrvPwrXo3A9Cu8/mpmZmZmZ6T9xPQrXo3DtPxSuR+F6FO4/rkfhehSu7z/Xo3A9CtfrP65H4XoUru8/ZmZmZmZm7j9cj8L1KFzvP3sUrkfheuw/MzMzMzMz6z8pXI/C9SjsPz0K16NwPeo/MzMzMzMz6z9xPQrXo3DtP4/C9Shcj+o/16NwPQrX6z8AAAAAAADwPylcj8L1KOw/16NwPQrX6z+uR+F6FK7vP1yPwvUoXO8/CtejcD0K7z/D9Shcj8LtPx+F61G4Hu0/j8L1KFyP6j9xPQrXo3DtPxSuR+F6FO4/H4XrUbge7T/hehSuR+HqP65H4XoUru8/H4XrUbge7T+4HoXrUbjuP3E9CtejcO0/hetRuB6F6z8zMzMzMzPrP2ZmZmZmZu4/hetRuB6F6z+4HoXrUbjuP4/C9Shcj+o/hetRuB6F6z/sUbgehevpPz0K16NwPeo/PQrXo3A96j8UrkfhehTuP1yPwvUoXO8/" + }, + "xaxis": "x", + "yaxis": "y", + "type": "histogram" + }, + { + "bingroup": "x", + "hovertemplate": "gender=M
attendance_rate=%{x}
count=%{y}", + "legendgroup": "M", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "M", + "nbinsx": 20, + "orientation": "v", + "showlegend": true, + "x": { + "dtype": "f8", + "bdata": "XI/C9Shc7z+amZmZmZnpP2ZmZmZmZu4/4XoUrkfh6j/D9Shcj8LtP+F6FK5H4eo/uB6F61G47j9mZmZmZmbuP3E9CtejcO0/7FG4HoXr6T/NzMzMzMzsPwAAAAAAAPA/CtejcD0K7z+F61G4HoXrP65H4XoUru8/ZmZmZmZm7j8AAAAAAADwP7gehetRuO4/uB6F61G47j8K16NwPQrvP4/C9Shcj+o/j8L1KFyP6j8pXI/C9SjsP+F6FK5H4eo/XI/C9Shc7z8fhetRuB7tP65H4XoUru8/16NwPQrX6z8K16NwPQrvPwrXo3A9Cu8/16NwPQrX6z+amZmZmZnpPylcj8L1KOw/CtejcD0K7z9xPQrXo3DtPzMzMzMzM+s/ZmZmZmZm7j/sUbgehevpPz0K16NwPeo/w/UoXI/C7T8UrkfhehTuPxSuR+F6FO4/PQrXo3A96j+PwvUoXI/qP+F6FK5H4eo/H4XrUbge7T+PwvUoXI/qPwrXo3A9Cu8/ZmZmZmZm7j8=" + }, + "xaxis": "x", + "yaxis": "y", + "type": "histogram" + } + ], + "layout": { + "template": { + "data": { + "histogram2dcontour": [ + { + "type": "histogram2dcontour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "choropleth": [ + { + "type": "choropleth", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "histogram2d": [ + { + "type": "histogram2d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmap": [ + { + "type": "heatmap", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "contourcarpet": [ + { + "type": "contourcarpet", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "contour": [ + { + "type": "contour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "surface": [ + { + "type": "surface", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "mesh3d": [ + { + "type": "mesh3d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "parcoords": [ + { + "type": "parcoords", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolargl": [ + { + "type": "scatterpolargl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "scattergeo": [ + { + "type": "scattergeo", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolar": [ + { + "type": "scatterpolar", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "scattergl": [ + { + "type": "scattergl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatter3d": [ + { + "type": "scatter3d", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermap": [ + { + "type": "scattermap", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermapbox": [ + { + "type": "scattermapbox", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterternary": [ + { + "type": "scatterternary", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattercarpet": [ + { + "type": "scattercarpet", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ] + }, + "layout": { + "autotypenumbers": "strict", + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "hovermode": "closest", + "hoverlabel": { + "align": "left" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "bgcolor": "#E5ECF6", + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "ternary": { + "bgcolor": "#E5ECF6", + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "sequential": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ] + }, + "xaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "yaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "automargin": true, + "zerolinewidth": 2 + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white", + "gridwidth": 2 + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "geo": { + "bgcolor": "white", + "landcolor": "#E5ECF6", + "subunitcolor": "white", + "showland": true, + "showlakes": true, + "lakecolor": "white" + }, + "title": { + "x": 0.05 + }, + "mapbox": { + "style": "light" + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "attendance_rate" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "count" + } + }, + "legend": { + "title": { + "text": "gender" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "barmode": "relative" + }, + "config": { + "plotlyServerURL": "https://plot.ly" + } + } + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 77 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_4/Mod_16/dg_mrkt_dt.html b/Python_For_ML/Week_4/Mod_16/dg_mrkt_dt.html new file mode 100644 index 0000000..d8e6d50 --- /dev/null +++ b/Python_For_ML/Week_4/Mod_16/dg_mrkt_dt.html @@ -0,0 +1,3888 @@ + + + +
+
+ + \ No newline at end of file diff --git a/Python_For_ML/Week_4/Mod_16/enrollment_data.csv b/Python_For_ML/Week_4/Mod_16/enrollment_data.csv new file mode 100644 index 0000000..2ad3315 --- /dev/null +++ b/Python_For_ML/Week_4/Mod_16/enrollment_data.csv @@ -0,0 +1,11 @@ +Year,Programming,Digital Marketing +2015,589,734 +2016,862,963 +2017,1085,1157 +2018,1150,1404 +2019,1439,1497 +2020,1715,1579 +2021,1785,1948 +2022,1995,2073 +2023,2236,2310 +2024,2442,2338 \ No newline at end of file diff --git a/Python_For_ML/Week_4/Mod_16/quize.ipynb b/Python_For_ML/Week_4/Mod_16/quize.ipynb new file mode 100644 index 0000000..5bfca74 --- /dev/null +++ b/Python_For_ML/Week_4/Mod_16/quize.ipynb @@ -0,0 +1,290 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-14T11:20:35.390270Z", + "start_time": "2025-11-14T11:20:35.202579Z" + } + }, + "source": [ + "import seaborn as sns\n", + "import pandas as pd\n", + "\n", + "# Load data\n", + "student = pd.read_csv('sns_data.csv')\n", + "\n", + "# Create line plot\n", + "sns.lineplot(data=student, x='week', y='attendance_rate', hue='gender', errorbar=None)" + ], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 1 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T11:21:20.034114Z", + "start_time": "2025-11-14T11:21:19.852805Z" + } + }, + "cell_type": "code", + "source": [ + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Using the student dataset\n", + "sns.scatterplot(data=student, x='study_hours', y='test_score', hue='gender', size='attendance_rate')\n", + "\n", + "plt.title(\"Relationship: Study Hours vs Test Score\")\n", + "plt.xlabel(\"Study Hours\")\n", + "plt.ylabel(\"Test Score\")\n", + "plt.show()" + ], + "id": "a1f2579c00a76bc6", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 2 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-14T11:22:05.294200Z", + "start_time": "2025-11-14T11:22:05.053361Z" + } + }, + "cell_type": "code", + "source": [ + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Load data\n", + "student = pd.read_csv('sns_data.csv')\n", + "\n", + "# Create scatter plot\n", + "sns.scatterplot(\n", + " data=student,\n", + " x='study_hours',\n", + " y='test_score',\n", + " hue='gender',\n", + " style='class_level',\n", + " size='attendance_rate',\n", + " alpha=0.7\n", + ")\n", + "\n", + "# Customize\n", + "plt.title(\"Study Hours vs Test Score\")\n", + "plt.xlabel(\"Study Hours\")\n", + "plt.ylabel(\"Test Score\")\n", + "plt.legend(bbox_to_anchor=(1.05, 1), loc='upper left')\n", + "plt.tight_layout()\n", + "plt.show()" + ], + "id": "4d2fcb7ff3324119", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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EDRo0CD5+eefxVb6gadvfAUKFJAPPvhATp8+LS+88ILkyZNHhg0bJrZJTU01QahmzZqyYsUKE+YGDhwoJUuWlNatW4utVq9eLRs2bJB27dqJzfbv3y/33XefjB07Nn1dUFCQ2GjcuHHmwGjOnDkSFxcnAwYMkBtuuEE6deoktmnRooU5OPK6cOGCdO3a1RyA2Kh///5mX2oQ0tfE4MGDpXTp0iYc2fge1rdvX/PeMH/+fHNAqu9doaGh0qRJk9xuHmAteuCyoW96Dz/8sPz6669is4MHD8quXbtMr1vlypXNEawGulWrVomN/vzzT7nllltk9OjRctNNN0nDhg2lfv36EhUVJbaKjY2ViRMnmtBpuwMHDsjNN98sxYsXT1803Nu4T5ctW2aC5q233mpeA926dZPdu3eLjfLmzZtpn37yyScmeGgwso0exOl7Qu/evc3/WOPGjU343Lx5s9jo+++/l507d8rrr78u1apVMwcg3bt3N8EeQPYIcNnYunWrhIeHy5IlS8Rm+mGiJchixYplWn/u3DmxUYkSJWTKlCnm6Fo/ADW4bdu2zZR/bfXaa69J27ZtpVKlSuJCgNMPbdvp311fAxn/7tozqwcittPw+e6775re+cDAQLExbAYHB5vet+TkZHOQt2PHDnPgZKMjR45IkSJFpGzZsunrtDytwU7bDyBrBLhsPPbYY6YUqW+ENtPelYylHS1DLFy4UO644w6xnY7N0f2sY+GaNm0qNtJei+3bt0ufPn3EdhqIDx06JJs2bTL7U3teJk+ebMaa2fihrSW9lStXSrNmzaRRo0YyY8YM8/q13aJFi8yBiLbbRloyHzlypDn4vO2226R58+Zyzz33SMeOHcVGevB59uxZiY+PT1937NgxU6bW9QCyRoC7xkyaNEn27t1rxhPZbtq0afL222/Lvn37rOx50TGQo0aNMh+G2qthu5iYGPMhqL1C2sup44giIiJM+dc258+fN+MfFy9ebP722tYFCxZYP9heQ/LHH38sTzzxhNjeE6ulSA1xun/XrFljyr420pCpgVjL6d7Xxdy5c81t9MAB2WMSwzUW3t5//3158803zTgo23nHlGlQ0rFEQ4cOtaokNX36dKlRo0amHk6baY+WTgooWLCgeDweUzLTHq0hQ4bI888/L35+fmILf39/U+bXcU/abm8A1d4tHQtnqz179phB9i1bthRbaa/x0qVLzaQbPfDQ/zNt86xZs6RNmzZiY4+hHnDoxIvatWtL0aJFzRg4DZ5aZgeQNQLcNUKPXvXDT0OcreVI7yQGHWCt5T0vHVumR9r6ga5jYWyaeart1RKv8pYiIyMjzaBrGxUqVCjTzxUrVjQBWQe227RvdeymfnB7w5sqX768Of2FzTZu3GgmCmlItpWOHStXrlymXmOdHKC93bbSiSzr1q2TEydOSOHCheXrr782X0NCQnK7aYC1KKFeA7SnSEtReh4tm3sG1NGjR+WZZ54xPQIZP3A0XNgUMJSW9LQEqeO0dNExe7ro97aGC514k3EskZanNdTZtm+1bKbBUsfseelg+4yBzkbfffedObeazbQcqWXIjGMfdd+WKVNGbJ0U8uijj8qpU6dMsNfe2fXr11s9sQmwAQHOcTrWZebMmfL000+b8oMewXoXG2k5p3r16maCiJ6qRcs82mvYq1cvsY2GCe3J8C7aG6CLfm8j7SnUXq0RI0aYD2zdtzr+TctRtqlQoYI5h5qWdqOjo034fOedd8wHuc30nJC2z0bWg4yAgADzOtCArD1b2vvWuXNnsZEeYOjYN30f0MktOsZQTzFj4+sWsAklVMetXbtWUlJSzPgWXTL68ccfxTY6DksDp5Z8H3nkETPLVz9YunTpkttNc56OF9JzZ40fP17at29vwqaeFNfWD0KdIauvAw1t+jp4/PHHrQ0ZXlpSt/G8ehnlz5/fTAZ55ZVXpEOHDqb3Vc8Jp/9vttJxuzphSE/mrT2FU6dONWVVANnzpNl67RoAAABkiRIqAACAYwhwAAAAjiHAAQAAOIYABwAA4BgCHAAAgGMIcAAAAI4hwAEAADiGAAcAAOAYAhzgo+TkZHnrrbekUaNGUqNGDXOJqAkTJsi5c+fS73Py5En59NNP//NjDB8+3Cw5tXz5cnNppazoer0dAOAeLqUFXIFLQn3zzTcybtw4KVu2rLmeo17GSC8orteg9N5HL3rSvHlz9jcAwGf0wAE+WrFihTz33HNSv359cx1H/Tp69Gj58ssv5Y8//jD34Yp1AIAriQAH+Mjj8ci3334rqamp6evCwsJk9erVUrhwYVNe1ZCni7ecWaVKFdmyZUu2pc7t27fLgw8+aC7oreEwPj7erE9ISJBatWrJZ599lqmEGx4eLps3b/bpeWgbtIdQH/Ohhx6Sbdu2ZVtu1bbrc1BHjx4138+YMUPq1q0rY8aMkTNnzsizzz4rderUMesGDx6cqaQMAPANAQ7wUZcuXWTBggUm5IwaNUoiIyNN0KpUqZIEBARIt27dTDDSZenSpf+6vb/++kt69uwpDRo0kJUrV5rtrFmzxtyWN29eady4sXkMLy3f+vv7S7169f7zc9BwNnbsWPO4+pj62D169JDjx49f9jZ27Nghy5YtM/tj2rRpcuLECVm0aJHMnz9foqOjZebMmf+5fQCAzBgDB/iob9++Zuzbhx9+KB999JEsXrxYQkJC5MUXX5T27dub7zV4qSJFivzr9nSyg95vyJAhpndPe7I2bNiQfnvLli1lwIABkpiYKEFBQSbcNWvWTPz8/LLcXkxMjOkRvJi3V09pAO3cubPp9VPaY6Y9cAsXLpRBgwZd1n7o2rWr3Hjjjeb73377zTxvLSkHBwfL1KlTL2sbAIDLQ4ADroA2bdqY5dSpU7Jp0yYTfDTAaWlRZ6bmxP79+6Vq1aomvHnVrFkzPXDdeeedEhgYKBs3bpSGDRvKF198kT5ZIislSpQwAe1iGti8Dhw4YIJoRrfffrtZf7lKly6d/r32wvXp08eMB9SladOm0rp168veFgDg0iihAj7Q0uCrr76a/rOOedOgooGpVKlSZmzc5UhJScn088WTHrQU66XlUg1EWkbV8mloaKgZF5cdvX+5cuX+seh6L+3Jy6pNGcf1Xaq9F29DQ5v2GmpJWcPmyJEjZdiwYdm2EQCQMwQ4wAcaZObOnSt79+7NtF5Di5ZNvSXTjL1p3kAWFxeX/rOeesSrcuXKZnsZQ9K+ffsy/b6GxK+++krWrVtnyqcXbz+nypcvL7t37860Tn/W9f/W3qzMmzdPfvjhB2nXrp0pn+p58TJOvAAA+IYAB/igevXq5sS9Wi6MiIgwMzJ37dplep6SkpKkSZMm5n46DkzHhXknBWhJVMusv/zyi6xduzbTDE8d46blUj2X3MGDB2X27NkSFRWV6XFr165ttqkzW/X+vnryySdNe3QCw6FDh8x567R3sUOHDunt1QkYP/30k5mB+t57711ye8eOHTOzUXVf6HPU3sJq1ar53E4AwN8IcICPpkyZIm3btpXp06ebmaY6k1NPmaGBSMubSm/XYKTj5LQ8+tJLL0lsbKy0atXKBLR+/fqlb69gwYJm3Z49e8zvaZlUv2akPW7a86Zl2pyOsctKixYtzMQInT2qbdy6dasJaRUrVjS39+/fXwoUKGBOL6LBUk9tcil6u5Z1e/fubdp+/vx5mTRpks/tBAD8zZPGGUYBJ+nsUB3LljH8AQCuD8xCBRyjZUkdX6al11WrVuV2cwAAuYAABzhGTx+i5U0teep51gAA1x9KqAAAAI5hEgMAAIBjCHAAAACOIcABAAA4hgAHAADgGAIcAACAYwhwAAAAjiHAAQAAOIYABwAA4BgCHAAAgLjlf7DCi6F+CObxAAAAAElFTkSuQmCC" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 3 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Histogram of test scores\n", + "sns.histplot(data=student, x='test_score', bins=15, kde=True, color='skyblue')\n", + "\n", + "plt.title(\"Distribution of Test Scores\")\n", + "plt.xlabel(\"Test Score\")\n", + "plt.ylabel(\"Count\")\n", + "plt.show()" + ], + "id": "83e3a85c3390c9ac" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Load data\n", + "student = pd.read_csv('sns_data.csv')\n", + "\n", + "# Create histogram\n", + "sns.histplot(\n", + " data=student,\n", + " x='test_score',\n", + " bins=20,\n", + " kde=True, # Adds smooth density curve\n", + " color='lightgreen',\n", + " alpha=0.7\n", + ")\n", + "\n", + "# Customize\n", + "plt.title(\"Distribution of Test Scores\")\n", + "plt.xlabel(\"Test Score\")\n", + "plt.ylabel(\"Frequency\")\n", + "plt.show()" + ], + "id": "f2aca47fd563d4ca" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# KDE plot of test scores\n", + "sns.kdeplot(data=student, x='test_score', hue='gender', fill=True, alpha=0.5)\n", + "\n", + "plt.title(\"KDE: Distribution of Test Scores by Gender\")\n", + "plt.xlabel(\"Test Score\")\n", + "plt.ylabel(\"Density\")\n", + "plt.show()" + ], + "id": "5dfd0d90c4f14a9" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Load data\n", + "student = pd.read_csv('sns_data.csv')\n", + "\n", + "# Create KDE plot\n", + "sns.kdeplot(\n", + " data=student,\n", + " x='test_score',\n", + " hue='gender',\n", + " fill=True, # Fill under the curve\n", + " alpha=0.6,\n", + " linewidth=2\n", + ")\n", + "\n", + "# Customize\n", + "plt.title(\"KDE Plot: Test Score Distribution by Gender\")\n", + "plt.xlabel(\"Test Score\")\n", + "plt.ylabel(\"Density\")\n", + "plt.legend(title=\"Gender\")\n", + "plt.show()" + ], + "id": "ce99fdbc4540a3e3" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# Load data\n", + "student = pd.read_csv('sns_data.csv')\n", + "\n", + "# Scatter plot with regression line\n", + "sns.regplot(\n", + " data=student,\n", + " x='study_hours',\n", + " y='test_score',\n", + " scatter_kws={'alpha': 0.6, 'color': 'blue'},\n", + " line_kws={'color': 'red', 'linewidth': 2}\n", + ")\n", + "\n", + "# Customize\n", + "plt.title(\"Study Hours vs Test Score (with Regression Line)\")\n", + "plt.xlabel(\"Study Hours\")\n", + "plt.ylabel(\"Test Score\")\n", + "plt.show()" + ], + "id": "13bbd615351e37ed" + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_4/Mod_16/sns_data.csv b/Python_For_ML/Week_4/Mod_16/sns_data.csv new file mode 100644 index 0000000..26cf466 --- /dev/null +++ b/Python_For_ML/Week_4/Mod_16/sns_data.csv @@ -0,0 +1,96 @@ +student_id,class_level,subject,study_hours,test_score,week,attendance_rate,gender,hostel,Tshirt_size +1,Freshman,Math,5,78,1,90,Male,True,30 +2,Freshman,Science,3,65,1,80,Female,False,20 +3,Freshman,History,4,70,1,85,Male,True,20 +4,Freshman,Language,2,60,1,75,Female,True,40 +5,Sophomore,Math,6,82,1,92,Male,True,20 +6,Sophomore,Science,4,68,1,88,Female,False,20 +7,Sophomore,History,5,72,1,90,Male,True,20 +8,Sophomore,Language,3,66,1,85,Female,True,40 +9,Junior,Math,8,88,1,95,Male,True,20 +10,Junior,Science,7,78,1,89,Female,False,30 +11,Junior,History,6,74,1,87,Male,True,40 +12,Junior,Language,5,75,1,86,Female,True,30 +13,Senior,Math,7,85,1,93,Male,True,40 +14,Senior,Science,6,80,1,90,Female,True,20 +15,Senior,History,7,83,1,91,Male,False,30 +16,Senior,Language,4,73,1,84,Female,True,40 +17,Freshman,Math,4,75,2,88,Male,False,10 +18,Freshman,Science,2,62,2,78,Female,False,20 +19,Freshman,History,3,68,2,82,Male,False,40 +20,Freshman,Language,3,64,2,80,Female,True,10 +21,Sophomore,Math,7,84,2,94,Male,False,40 +22,Sophomore,Science,5,70,2,89,Female,True,10 +23,Sophomore,History,6,76,2,91,Male,False,20 +24,Sophomore,Language,4,69,2,86,Female,False,30 +25,Junior,Math,9,92,2,96,Male,False,10 +26,Junior,Science,8,81,2,90,Female,False,40 +27,Junior,History,7,77,2,88,Male,False,20 +28,Junior,Language,6,79,2,87,Female,False,10 +29,Senior,Math,8,88,2,94,Male,False,40 +30,Senior,Science,7,82,2,91,Female,False,40 +31,Senior,History,6,78,2,88,Male,True,40 +32,Senior,Language,5,74,2,85,Female,True,10 +33,Freshman,Math,3,72,3,80,Male,False,10 +34,Freshman,Science,2,60,3,75,Female,False,10 +35,Freshman,History,3,66,3,78,Male,False,30 +36,Freshman,Language,1,58,3,70,Female,True,10 +37,Sophomore,Math,5,80,3,90,Male,False,10 +38,Sophomore,Science,3,67,3,83,Female,True,10 +39,Sophomore,History,4,71,3,85,Male,True,30 +40,Sophomore,Language,2,63,3,76,Female,True,10 +41,Junior,Math,8,89,3,95,Male,True,40 +42,Junior,Science,7,79,3,88,Female,True,10 +43,Junior,History,5,73,3,82,Male,False,40 +44,Junior,Language,4,70,3,81,Female,False,40 +45,Senior,Math,7,86,3,92,Male,False,40 +46,Senior,Science,6,81,3,89,Female,False,30 +47,Senior,History,5,75,3,84,Male,False,30 +48,Senior,Language,3,68,3,80,Female,True,30 +49,Senior,Math,9,90,4,97,Male,False,10 +50,Senior,Science,8,84,4,93,Female,False,40 +51,Freshman,Math,4,74,4,85,Male,True,30 +52,Freshman,Science,3,63,4,77,Female,False,30 +53,Freshman,History,4,69,4,82,Male,True,10 +54,Freshman,Language,2,61,4,72,Female,False,30 +55,Sophomore,Math,6,83,4,93,Male,True,10 +56,Sophomore,Science,4,69,4,88,Female,False,20 +57,Sophomore,History,5,73,4,89,Male,False,30 +58,Sophomore,Language,3,67,4,80,Female,True,20 +59,Junior,Math,9,91,4,97,Male,True,10 +60,Junior,Science,8,83,4,91,Female,True,40 +61,Junior,History,7,76,4,88,Male,True,30 +62,Junior,Language,6,78,4,89,Female,True,10 +63,Senior,Math,8,89,4,95,Male,True,40 +64,Senior,Science,7,83,4,90,Female,True,40 +65,Senior,History,6,79,4,88,Male,True,20 +66,Senior,Language,5,72,4,85,Female,False,10 +67,Freshman,Math,3,70,5,80,Male,False,40 +68,Freshman,Science,2,59,5,72,Female,True,30 +69,Freshman,History,3,65,5,75,Male,False,30 +70,Freshman,Language,1,57,5,68,Female,False,20 +71,Sophomore,Math,5,78,5,90,Male,False,40 +72,Sophomore,Science,3,65,5,82,Female,False,10 +73,Sophomore,History,4,70,5,83,Male,True,30 +74,Sophomore,Language,2,62,5,75,Female,False,40 +75,Junior,Math,8,88,5,96,Male,True,40 +76,Junior,Science,7,80,5,89,Female,False,20 +77,Junior,History,6,74,5,87,Male,False,30 +78,Junior,Language,5,71,5,84,Female,False,30 +79,Senior,Math,7,87,5,93,Male,True,10 +80,Senior,Science,6,82,5,90,Female,False,30 +81,Senior,History,5,76,5,88,Male,True,10 +82,Senior,Language,4,70,5,82,Female,False,30 +83,Freshman,Math,2,68,6,75,Male,True,20 +84,Freshman,Science,1,55,6,70,Female,False,30 +85,Freshman,History,2,63,6,73,Male,True,10 +86,Freshman,Language,1,54,6,65,Female,True,10 +87,Sophomore,Math,4,76,6,88,Male,False,20 +88,Sophomore,Science,2,64,6,79,Female,True,30 +89,Sophomore,History,3,68,6,82,Male,False,30 +90,Sophomore,Language,1,60,6,70,Female,False,20 +91,Junior,Math,7,85,6,94,Male,False,30 +92,Junior,Science,6,78,6,88,Female,False,30 +93,Junior,History,5,72,6,84,Male,False,10 +94,Junior,Language,4,68,6,80,Female,False,30 +95,Senior,Math,6,84,6,91,Male,False,30 \ No newline at end of file diff --git a/Python_For_ML/Week_4/Mod_16/student_dataset_complete.csv b/Python_For_ML/Week_4/Mod_16/student_dataset_complete.csv new file mode 100644 index 0000000..2b66f16 --- /dev/null +++ b/Python_For_ML/Week_4/Mod_16/student_dataset_complete.csv @@ -0,0 +1,101 @@ +number_courses,time_study,Marks,student_id,class_level,subject,study_hours,test_score,week,attendance_rate,gender,hostel,Tshirt_size,class_name +3,4.508,19.202,1,10,Science,4.508,19.202,2,0.89,F,0,2,Sophomore +4,0.096,7.734,2,12,Math,0.096,7.734,3,0.98,M,0,3,Senior +4,3.133,13.811,3,11,Science,3.133,13.811,5,0.83,F,0,3,Junior +6,7.909,53.018,4,10,Science,7.909,53.018,4,0.92,F,1,4,Sophomore +8,7.811,55.299,5,11,English,7.811,55.299,3,0.8,M,1,4,Junior +6,3.211,17.822,6,10,English,3.211,17.822,2,0.94,F,0,3,Sophomore +3,6.063,29.889,7,11,Math,6.063,29.889,5,0.95,M,0,4,Junior +5,3.413,17.264,8,11,Science,3.413,17.264,2,0.97,F,0,3,Junior +4,4.41,20.348,9,10,English,4.41,20.348,1,0.84,M,1,4,Sophomore +3,6.173,30.862,10,10,Math,6.173,30.862,2,0.97,F,1,2,Sophomore +3,7.353,42.036,11,10,English,7.353,42.036,4,0.8,F,1,3,Sophomore +7,0.423,12.132,12,12,Math,0.423,12.132,4,0.92,F,0,1,Senior +7,4.218,24.318,13,12,Math,4.218,24.318,1,0.93,M,1,4,Senior +3,4.274,17.672,14,11,Science,4.274,17.672,3,0.84,M,1,2,Junior +3,2.908,11.397,15,11,Science,2.908,11.397,2,0.94,F,0,3,Junior +4,4.26,19.466,16,12,Math,4.26,19.466,1,0.99,F,0,1,Senior +5,5.719,30.548,17,11,Math,5.719,30.548,5,0.87,F,1,2,Junior +8,6.08,38.49,18,10,Math,6.08,38.49,1,0.96,M,0,1,Sophomore +6,7.711,50.986,19,11,English,7.711,50.986,4,0.95,M,1,3,Junior +8,3.977,25.133,20,10,Math,3.977,25.133,2,0.99,F,0,1,Sophomore +4,4.733,22.073,21,10,Science,4.733,22.073,4,0.92,M,1,2,Sophomore +6,6.126,35.939,22,11,Math,6.126,35.939,3,0.95,F,0,2,Junior +5,2.051,12.209,23,11,Math,2.051,12.209,4,0.98,F,1,3,Junior +7,4.875,28.043,24,11,Science,4.875,28.043,1,0.89,F,0,2,Junior +4,3.635,16.517,25,11,Science,3.635,16.517,2,0.85,F,1,4,Junior +3,1.407,6.623,26,12,Science,1.407,6.623,2,0.88,F,1,4,Senior +7,0.508,12.647,27,11,English,0.508,12.647,5,0.82,F,1,2,Junior +8,4.378,26.532,28,12,Math,4.378,26.532,2,0.81,M,1,2,Senior +5,0.156,9.333,29,11,English,0.156,9.333,5,0.9,M,1,1,Junior +4,1.299,8.837,30,10,Science,1.299,8.837,5,1.0,M,0,1,Sophomore +8,3.864,24.172,31,12,Math,3.864,24.172,5,0.97,M,1,4,Senior +3,1.923,8.1,32,12,Math,1.923,8.1,4,0.85,F,1,3,Senior +8,0.932,15.038,33,10,English,0.932,15.038,3,0.86,M,0,3,Sophomore +6,6.594,39.965,34,11,Science,6.594,39.965,5,0.99,M,1,3,Junior +3,4.083,17.171,35,12,Science,4.083,17.171,3,0.95,M,0,3,Senior +3,7.543,43.978,36,11,Math,7.543,43.978,2,1.0,M,0,1,Junior +4,2.966,13.119,37,10,English,2.966,13.119,3,0.92,F,1,4,Sophomore +6,7.283,46.453,38,12,Science,7.283,46.453,2,0.96,M,0,3,Senior +7,6.533,41.358,39,10,Math,6.533,41.358,1,0.96,M,1,3,Sophomore +6,7.775,51.142,40,11,Science,7.775,51.142,5,0.97,M,0,3,Junior +4,0.14,7.336,41,10,Science,0.14,7.336,3,0.83,F,0,1,Sophomore +6,2.754,15.725,42,10,Science,2.754,15.725,5,0.87,F,1,1,Sophomore +6,3.591,19.771,43,11,English,3.591,19.771,3,1.0,F,1,3,Junior +5,1.557,10.429,44,10,Math,1.557,10.429,4,0.88,F,1,3,Sophomore +4,1.954,9.742,45,10,English,1.954,9.742,3,0.83,M,1,2,Sophomore +3,2.061,8.924,46,11,Science,2.061,8.924,5,0.83,M,0,4,Junior +4,3.797,16.703,47,11,Math,3.797,16.703,4,0.88,M,1,3,Junior +4,4.779,22.701,48,12,English,4.779,22.701,5,0.84,M,1,4,Senior +3,5.635,26.882,49,10,Math,5.635,26.882,1,0.98,M,1,1,Sophomore +5,3.913,19.106,50,11,English,3.913,19.106,3,0.87,F,0,4,Junior +6,6.703,40.602,51,12,Math,6.703,40.602,2,0.91,M,1,4,Senior +6,4.13,22.184,52,10,English,4.13,22.184,4,0.99,F,0,2,Sophomore +4,0.771,7.892,53,11,Math,0.771,7.892,1,0.99,M,1,1,Junior +7,6.049,36.653,54,12,Math,6.049,36.653,4,0.87,M,0,1,Senior +8,7.591,53.158,55,12,Math,7.591,53.158,1,0.97,M,0,2,Senior +7,2.913,18.238,56,11,Math,2.913,18.238,5,0.98,F,0,2,Junior +8,7.641,53.359,57,10,Science,7.641,53.359,2,0.97,F,0,2,Sophomore +7,7.649,51.583,58,12,English,7.649,51.583,5,0.97,M,1,3,Senior +3,6.198,31.236,59,10,Science,6.198,31.236,5,0.87,M,0,3,Sophomore +8,7.468,51.343,60,11,Science,7.468,51.343,5,0.93,F,1,1,Junior +6,0.376,10.522,61,12,Math,0.376,10.522,5,0.91,F,0,2,Senior +4,2.438,10.844,62,12,English,2.438,10.844,3,0.83,F,1,1,Senior +6,3.606,19.59,63,10,Science,3.606,19.59,3,0.8,M,0,2,Sophomore +3,4.869,21.379,64,12,Science,4.869,21.379,1,0.92,F,0,4,Senior +7,0.13,12.591,65,12,Math,0.13,12.591,2,0.88,M,1,1,Senior +6,2.142,13.562,66,10,English,2.142,13.562,1,0.97,M,1,2,Sophomore +4,5.473,27.569,67,10,Science,5.473,27.569,1,0.92,M,1,3,Sophomore +3,0.55,6.185,68,11,Math,0.55,6.185,5,0.94,F,0,3,Junior +4,1.395,8.92,69,11,Math,1.395,8.92,4,0.85,M,1,1,Junior +6,3.948,21.4,70,12,Science,3.948,21.4,2,0.91,F,1,4,Senior +4,3.736,16.606,71,12,Math,3.736,16.606,2,0.95,M,0,3,Senior +5,2.518,13.416,72,10,Science,2.518,13.416,3,0.84,F,0,3,Sophomore +3,4.633,20.398,73,11,Math,4.633,20.398,4,0.81,M,0,2,Junior +3,1.629,7.014,74,12,Science,1.629,7.014,5,0.82,M,1,1,Senior +4,6.954,39.952,75,10,Math,6.954,39.952,4,0.93,M,1,2,Sophomore +3,0.803,6.217,76,10,English,0.803,6.217,1,0.99,F,0,2,Sophomore +5,6.379,36.746,77,10,English,6.379,36.746,1,0.94,M,0,1,Sophomore +8,5.985,38.278,78,11,Science,5.985,38.278,5,0.91,F,0,1,Junior +7,7.451,49.544,79,12,Math,7.451,49.544,4,0.96,F,1,1,Senior +3,0.805,6.349,80,11,English,0.805,6.349,1,0.94,M,0,4,Junior +7,7.957,54.321,81,10,Math,7.957,54.321,4,0.92,F,0,2,Sophomore +8,2.262,17.705,82,11,English,2.262,17.705,3,0.86,F,1,3,Junior +4,7.41,44.099,83,10,Math,7.41,44.099,2,0.85,F,0,2,Sophomore +5,3.197,16.106,84,12,Math,3.197,16.106,5,0.95,F,0,1,Senior +8,1.982,16.461,85,11,Science,1.982,16.461,2,0.82,M,0,2,Junior +8,6.201,39.957,86,10,Science,6.201,39.957,1,0.83,M,0,4,Sophomore +7,4.067,23.149,87,12,Science,4.067,23.149,1,0.86,F,1,3,Senior +3,1.033,6.053,88,12,Math,1.033,6.053,5,0.96,F,0,3,Senior +5,1.803,11.253,89,11,Math,1.803,11.253,2,0.83,F,0,4,Junior +7,6.376,40.024,90,12,Science,6.376,40.024,4,0.86,F,0,2,Senior +7,4.182,24.394,91,11,English,4.182,24.394,3,0.84,M,0,2,Junior +8,2.73,19.564,92,10,Math,2.73,19.564,4,0.81,F,0,2,Sophomore +4,5.027,23.916,93,12,Science,5.027,23.916,1,0.82,F,0,1,Senior +8,6.471,42.426,94,12,Science,6.471,42.426,2,0.91,M,0,3,Senior +8,3.919,24.451,95,11,English,3.919,24.451,1,0.82,F,1,3,Junior +6,3.561,19.128,96,11,English,3.561,19.128,4,0.94,F,1,3,Junior +3,0.301,5.609,97,10,Science,0.301,5.609,2,0.83,M,1,3,Sophomore +4,7.163,41.444,98,11,Math,7.163,41.444,3,0.97,M,0,1,Junior +7,0.309,12.027,99,12,Math,0.309,12.027,1,0.98,F,0,1,Senior +3,6.335,32.357,100,12,Science,6.335,32.357,5,0.95,M,1,2,Senior From b58c2ea967cb8fc1be51336b76987f04546f22e3 Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:08:48 +0600 Subject: [PATCH 75/78] s1 --- .../Conceptual Session/.idea/.gitignore | 8 + .../.idea/Conceptual Session.iml | 8 + .../inspectionProfiles/Project_Default.xml | 12 + .../inspectionProfiles/profiles_settings.xml | 6 + .../Week_3/Conceptual Session/.idea/misc.xml | 7 + .../Conceptual Session/.idea/modules.xml | 8 + .../Week_3/Conceptual Session/.idea/vcs.xml | 6 + .../Week_3/Conceptual Session/s1.ipynb | 948 ++++++++++++++++++ 8 files changed, 1003 insertions(+) create mode 100644 Python_For_ML/Week_3/Conceptual Session/.idea/.gitignore create mode 100644 Python_For_ML/Week_3/Conceptual Session/.idea/Conceptual Session.iml create mode 100644 Python_For_ML/Week_3/Conceptual Session/.idea/inspectionProfiles/Project_Default.xml create mode 100644 Python_For_ML/Week_3/Conceptual Session/.idea/inspectionProfiles/profiles_settings.xml create mode 100644 Python_For_ML/Week_3/Conceptual Session/.idea/misc.xml create mode 100644 Python_For_ML/Week_3/Conceptual Session/.idea/modules.xml create mode 100644 Python_For_ML/Week_3/Conceptual Session/.idea/vcs.xml create mode 100644 Python_For_ML/Week_3/Conceptual Session/s1.ipynb diff --git a/Python_For_ML/Week_3/Conceptual Session/.idea/.gitignore b/Python_For_ML/Week_3/Conceptual Session/.idea/.gitignore new file mode 100644 index 0000000..1c2fda5 --- /dev/null +++ b/Python_For_ML/Week_3/Conceptual Session/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Python_For_ML/Week_3/Conceptual Session/.idea/Conceptual Session.iml b/Python_For_ML/Week_3/Conceptual Session/.idea/Conceptual Session.iml new file mode 100644 index 0000000..a80cbb1 --- /dev/null +++ b/Python_For_ML/Week_3/Conceptual Session/.idea/Conceptual Session.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Conceptual Session/.idea/inspectionProfiles/Project_Default.xml b/Python_For_ML/Week_3/Conceptual Session/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..d9b8305 --- /dev/null +++ b/Python_For_ML/Week_3/Conceptual Session/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,12 @@ + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Conceptual Session/.idea/inspectionProfiles/profiles_settings.xml b/Python_For_ML/Week_3/Conceptual Session/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/Python_For_ML/Week_3/Conceptual Session/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Conceptual Session/.idea/misc.xml b/Python_For_ML/Week_3/Conceptual Session/.idea/misc.xml new file mode 100644 index 0000000..f8a22e9 --- /dev/null +++ b/Python_For_ML/Week_3/Conceptual Session/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Conceptual Session/.idea/modules.xml b/Python_For_ML/Week_3/Conceptual Session/.idea/modules.xml new file mode 100644 index 0000000..d95e712 --- /dev/null +++ b/Python_For_ML/Week_3/Conceptual Session/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Conceptual Session/.idea/vcs.xml b/Python_For_ML/Week_3/Conceptual Session/.idea/vcs.xml new file mode 100644 index 0000000..17fbd1b --- /dev/null +++ b/Python_For_ML/Week_3/Conceptual Session/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_3/Conceptual Session/s1.ipynb b/Python_For_ML/Week_3/Conceptual Session/s1.ipynb new file mode 100644 index 0000000..2a42944 --- /dev/null +++ b/Python_For_ML/Week_3/Conceptual Session/s1.ipynb @@ -0,0 +1,948 @@ +{ + "cells": [ + { + "metadata": {}, + "cell_type": "markdown", + "source": [ + "\n", + "# Module covered topic\n", + "\n", + "_Numpy - Nd Array Object.\n", + "Numpy - Data Types.\n", + "Numpy - Array Attributes.\n", + "Numpy - Array Creation Routines.\n", + "Numpy - Array From Existing.\n", + "Data Array From Numerical Ranges.\n", + "Numpy - Indexing & Slicing.\n", + "Numpy - Advanced Indexing.\n", + "Numpy - Broadcasting.\n", + "Numpy - Iterating Over Array\n", + "Numpy - Array Manipulation.\n", + "Numpy - Conditional operations with all and any\n", + "Numpy - String Functions.\n", + "Numpy - Mathematical Functions.\n", + "Numpy - Arithmetic Operations.\n", + "Numpy - Statistical Functions.\n", + "Sort, Search & Counting Functions.\n", + "Numpy - Linear Algebra_" + ], + "id": "80e48c11fc997d30" + }, + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.105704Z", + "start_time": "2025-11-17T02:47:28.804193Z" + } + }, + "source": [ + "import numpy as np\n", + "from fontTools.misc.cython import returns\n", + "from setuptools.namespaces import flatten\n", + "\n", + "A = np.array([\n", + " [1, 2, 3],\n", + " [4, 5, 6]\n", + "])\n", + "\n", + "B = np.array([\n", + " [7, 8],\n", + " [9, 10],\n", + " [11, 12]\n", + "])\n", + "\n", + "d = np.dot(A, B)\n", + "print(d)" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 58 64]\n", + " [139 154]]\n" + ] + } + ], + "execution_count": 3 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.136651Z", + "start_time": "2025-11-17T02:47:29.118742Z" + } + }, + "cell_type": "code", + "source": [ + "d1 =np.linalg.inv(d)\n", + "print(d1)" + ], + "id": "879ab5b2ce753d56", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 4.27777778 -1.77777778]\n", + " [-3.86111111 1.61111111]]\n" + ] + } + ], + "execution_count": 4 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.166701Z", + "start_time": "2025-11-17T02:47:29.159943Z" + } + }, + "cell_type": "code", + "source": [ + "d2 = np.linalg.matrix_transpose(d1)\n", + "print(d2)" + ], + "id": "6f966a60a7f52074", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 4.27777778 -3.86111111]\n", + " [-1.77777778 1.61111111]]\n" + ] + } + ], + "execution_count": 5 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.267816Z", + "start_time": "2025-11-17T02:47:29.190026Z" + } + }, + "cell_type": "code", + "source": [ + "#`1\n", + "arr = np.random.randint(1,21, size=(5,5))\n", + "print(arr)\n", + "\n" + ], + "id": "5d60fd6fcbee6664", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 3 5 3 1 9]\n", + " [ 1 14 1 6 16]\n", + " [15 8 16 19 11]\n", + " [12 8 4 13 12]\n", + " [12 7 4 1 16]]\n" + ] + } + ], + "execution_count": 6 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.282481Z", + "start_time": "2025-11-17T02:47:29.275913Z" + } + }, + "cell_type": "code", + "source": [ + "arr[:, 1]=1\n", + "print(arr)" + ], + "id": "2a9f7eef62a8064a", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 3 1 3 1 9]\n", + " [ 1 1 1 6 16]\n", + " [15 1 16 19 11]\n", + " [12 1 4 13 12]\n", + " [12 1 4 1 16]]\n" + ] + } + ], + "execution_count": 7 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.302375Z", + "start_time": "2025-11-17T02:47:29.298541Z" + } + }, + "cell_type": "code", + "source": [ + "#2\n", + "\n", + "arr = np.random.randint(1,17, size=(4,4))\n", + "print(arr)" + ], + "id": "5e4090f1c0cdcfca", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[14 10 4 1]\n", + " [ 4 7 11 4]\n", + " [ 3 14 11 15]\n", + " [ 5 3 6 2]]\n" + ] + } + ], + "execution_count": 8 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.322675Z", + "start_time": "2025-11-17T02:47:29.319852Z" + } + }, + "cell_type": "code", + "source": [ + "np.fill_diagonal(arr,0)\n", + "print(arr)" + ], + "id": "787a5f13c3ee6e6b", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 10 4 1]\n", + " [ 4 0 11 4]\n", + " [ 3 14 0 15]\n", + " [ 5 3 6 0]]\n" + ] + } + ], + "execution_count": 9 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.341952Z", + "start_time": "2025-11-17T02:47:29.338562Z" + } + }, + "cell_type": "code", + "source": [ + "arr[:, 2] = 1\n", + "print(arr)\n", + "print()\n", + "arr[2, :] = 1\n", + "print(arr)" + ], + "id": "c47ed8a5aa044e89", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 10 1 1]\n", + " [ 4 0 1 4]\n", + " [ 3 14 1 15]\n", + " [ 5 3 1 0]]\n", + "\n", + "[[ 0 10 1 1]\n", + " [ 4 0 1 4]\n", + " [ 1 1 1 1]\n", + " [ 5 3 1 0]]\n" + ] + } + ], + "execution_count": 10 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.365634Z", + "start_time": "2025-11-17T02:47:29.359944Z" + } + }, + "cell_type": "code", + "source": [ + "#3\n", + "arr = np.random.randint(1,36, size=(5,5))\n", + "print(arr)" + ], + "id": "2c5dc2043e966644", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[18 2 24 1 27]\n", + " [23 7 9 23 34]\n", + " [27 9 32 30 24]\n", + " [27 28 16 33 21]\n", + " [33 6 25 28 1]]\n" + ] + } + ], + "execution_count": 11 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.392213Z", + "start_time": "2025-11-17T02:47:29.389140Z" + } + }, + "cell_type": "code", + "source": "print(arr[2:5, 1:4])\n", + "id": "e95f5176285049ed", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 9 32 30]\n", + " [28 16 33]\n", + " [ 6 25 28]]\n" + ] + } + ], + "execution_count": 12 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.415188Z", + "start_time": "2025-11-17T02:47:29.409005Z" + } + }, + "cell_type": "code", + "source": [ + "#3\n", + "arr = np.random.randint(1, 36, size=(5, 5))\n", + "print(arr)" + ], + "id": "e800846489a09477", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[10 9 17 17 17]\n", + " [33 11 17 9 11]\n", + " [35 14 16 29 13]\n", + " [12 14 16 13 11]\n", + " [15 30 16 18 3]]\n" + ] + } + ], + "execution_count": 13 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.438118Z", + "start_time": "2025-11-17T02:47:29.434399Z" + } + }, + "cell_type": "code", + "source": [ + "print(arr[0,:])\n", + "print(arr[4, :])\n", + "print(arr[1:4, 0])\n", + "print(arr[1:4, -1])\n" + ], + "id": "f894597a80386603", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[10 9 17 17 17]\n", + "[15 30 16 18 3]\n", + "[33 35 12]\n", + "[11 13 11]\n" + ] + } + ], + "execution_count": 14 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.456151Z", + "start_time": "2025-11-17T02:47:29.451920Z" + } + }, + "cell_type": "code", + "source": [ + "print(arr[0, :])\n", + "print(arr[4, :])\n", + "print(arr[1:4, 0])\n", + "print(arr[1:4, -1])\n", + "print()\n", + "arr3 = np.concatenate((arr[0, :],arr[-1, :],arr[1:4, 0],arr[1:4, -1] ))\n", + "print(arr3)" + ], + "id": "5a68532efcf87760", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[10 9 17 17 17]\n", + "[15 30 16 18 3]\n", + "[33 35 12]\n", + "[11 13 11]\n", + "\n", + "[10 9 17 17 17 15 30 16 18 3 33 35 12 11 13 11]\n" + ] + } + ], + "execution_count": 15 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.481276Z", + "start_time": "2025-11-17T02:47:29.475393Z" + } + }, + "cell_type": "code", + "source": [ + "arr1 = np.random.randint(1, 36, size=(3, 4))\n", + "arr2 = np.random.randint(1, 36, size=(3, 4))\n", + "\n", + "print(arr1)\n", + "print()\n", + "print(arr2)\n", + "\n", + "print()\n" + ], + "id": "b578cb5f05a047e6", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[32 12 2 12]\n", + " [23 18 11 7]\n", + " [34 29 2 12]]\n", + "\n", + "[[23 30 31 22]\n", + " [18 14 27 4]\n", + " [31 21 29 4]]\n", + "\n" + ] + } + ], + "execution_count": 16 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:47:29.538344Z", + "start_time": "2025-11-17T02:47:29.533332Z" + } + }, + "cell_type": "code", + "source": [ + "# 1\n", + "arr1 = np.random.randint(1, 36, size=(3, 4))\n", + "arr2 = np.random.randint(1, 36, size=(3, 4))\n", + "print(arr1)\n", + "print(arr2)\n", + "print()\n", + "print(arr1+arr2)\n", + "print(arr1-arr2)\n", + "print(arr1*arr2)\n", + "print(arr1/arr2)\n" + ], + "id": "f3eb79719f79a226", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[32 19 6 7]\n", + " [ 3 26 5 23]\n", + " [14 11 24 4]]\n", + "[[17 30 10 24]\n", + " [30 24 32 10]\n", + " [23 28 29 24]]\n", + "\n", + "[[49 49 16 31]\n", + " [33 50 37 33]\n", + " [37 39 53 28]]\n", + "[[ 15 -11 -4 -17]\n", + " [-27 2 -27 13]\n", + " [ -9 -17 -5 -20]]\n", + "[[544 570 60 168]\n", + " [ 90 624 160 230]\n", + " [322 308 696 96]]\n", + "[[1.88235294 0.63333333 0.6 0.29166667]\n", + " [0.1 1.08333333 0.15625 2.3 ]\n", + " [0.60869565 0.39285714 0.82758621 0.16666667]]\n" + ] + } + ], + "execution_count": 17 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:48:33.099034Z", + "start_time": "2025-11-17T02:48:33.095089Z" + } + }, + "cell_type": "code", + "source": [ + "#44min\n", + "row_sum = np.sum(arr, axis=1)\n", + "print(row_sum)\n", + "print()\n", + "col_sum = np.sum(arr, axis=0)\n", + "print(col_sum)\n" + ], + "id": "b1f3f812beafe464", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 70 81 107 66 82]\n", + "\n", + "[105 78 82 86 55]\n" + ] + } + ], + "execution_count": 19 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T02:54:19.856624Z", + "start_time": "2025-11-17T02:54:19.851350Z" + } + }, + "cell_type": "code", + "source": [ + "arr = np.random.randint(1,25, size=(4,4))\n", + "print(arr)\n", + "print(\"Mean =\", np.mean(arr))\n", + "print(\"Median =\", np.median(arr))\n", + "print(\"Standard Deviation =\", np.std(arr))\n", + "print(\"Variance =\", np.var(arr))\n", + "print(dir(arr))" + ], + "id": "115065cde7f7adde", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 1 19 17 24]\n", + " [14 1 14 18]\n", + " [13 1 6 19]\n", + " [19 7 20 1]]\n", + "Mean = 12.125\n", + "Median = 14.0\n", + "Standard Deviation = 7.7852023095100105\n", + "Variance = 60.609375\n", + "['T', '__abs__', '__add__', '__and__', '__array__', '__array_finalize__', '__array_function__', '__array_interface__', '__array_namespace__', '__array_priority__', '__array_struct__', '__array_ufunc__', '__array_wrap__', '__bool__', '__buffer__', '__class__', '__class_getitem__', '__complex__', '__contains__', '__copy__', '__deepcopy__', '__delattr__', '__delitem__', '__dir__', '__divmod__', '__dlpack__', '__dlpack_device__', '__doc__', '__eq__', '__float__', '__floordiv__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getstate__', '__gt__', '__hash__', '__iadd__', '__iand__', '__ifloordiv__', '__ilshift__', '__imatmul__', '__imod__', '__imul__', '__index__', '__init__', '__init_subclass__', '__int__', '__invert__', '__ior__', '__ipow__', '__irshift__', '__isub__', '__iter__', '__itruediv__', '__ixor__', '__le__', '__len__', '__lshift__', '__lt__', '__matmul__', '__mod__', '__mul__', '__ne__', '__neg__', '__new__', '__or__', '__pos__', '__pow__', '__radd__', '__rand__', '__rdivmod__', '__reduce__', '__reduce_ex__', '__repr__', '__rfloordiv__', '__rlshift__', '__rmatmul__', '__rmod__', '__rmul__', '__ror__', '__rpow__', '__rrshift__', '__rshift__', '__rsub__', '__rtruediv__', '__rxor__', '__setattr__', '__setitem__', '__setstate__', '__sizeof__', '__str__', '__sub__', '__subclasshook__', '__truediv__', '__xor__', 'all', 'any', 'argmax', 'argmin', 'argpartition', 'argsort', 'astype', 'base', 'byteswap', 'choose', 'clip', 'compress', 'conj', 'conjugate', 'copy', 'ctypes', 'cumprod', 'cumsum', 'data', 'device', 'diagonal', 'dot', 'dtype', 'dump', 'dumps', 'fill', 'flags', 'flat', 'flatten', 'getfield', 'imag', 'item', 'itemset', 'itemsize', 'mT', 'max', 'mean', 'min', 'nbytes', 'ndim', 'newbyteorder', 'nonzero', 'partition', 'prod', 'ptp', 'put', 'ravel', 'real', 'repeat', 'reshape', 'resize', 'round', 'searchsorted', 'setfield', 'setflags', 'shape', 'size', 'sort', 'squeeze', 'std', 'strides', 'sum', 'swapaxes', 'take', 'to_device', 'tobytes', 'tofile', 'tolist', 'trace', 'transpose', 'var', 'view']\n" + ] + } + ], + "execution_count": 21 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T03:49:33.555916Z", + "start_time": "2025-11-17T03:49:33.551320Z" + } + }, + "cell_type": "code", + "source": [ + "# 1\n", + "arr = np.random.randint(1, 25, size=(3, 3))\n", + "arr1 = np.random.randint(1, 25, size=(3,))\n", + "\n", + "print(arr)\n", + "print(arr1)\n", + "print(arr+arr1)" + ], + "id": "b0e77cbb4507912e", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 1 17 14]\n", + " [ 5 5 14]\n", + " [19 14 15]]\n", + "[23 21 5]\n", + "[[24 38 19]\n", + " [28 26 19]\n", + " [42 35 20]]\n" + ] + } + ], + "execution_count": 22 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T03:57:01.984830Z", + "start_time": "2025-11-17T03:57:01.979340Z" + } + }, + "cell_type": "code", + "source": [ + "print(arr1[:, np.newaxis])\n", + "print()\n", + "print(arr1[np.newaxis, :])\n", + "print()\n", + "print(arr1[:,np.newaxis])\n", + "print()\n", + "print(arr1) # 3\n", + "print()\n", + "arr1.shape\n", + "arr2 = arr1.reshape(3, 1) # row =3, col = 1\n", + "\n", + "print(arr - arr2)" + ], + "id": "f53bf0f7f2bc5825", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[23]\n", + " [21]\n", + " [ 5]]\n", + "\n", + "[[23 21 5]]\n", + "\n", + "[[23]\n", + " [21]\n", + " [ 5]]\n", + "\n", + "[23 21 5]\n", + "\n", + "[[-22 -6 -9]\n", + " [-16 -16 -7]\n", + " [ 14 9 10]]\n" + ] + } + ], + "execution_count": 24 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T04:16:09.931623Z", + "start_time": "2025-11-17T04:16:09.925839Z" + } + }, + "cell_type": "code", + "source": [ + "arr = np.random.randint(1,10 , size=(3,3))\n", + "print(arr)\n", + "\n", + "print(arr.reshape(1,9))\n", + "print()\n", + "print(arr.reshape(9,1))\n" + ], + "id": "b716b2f5decbab52", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[9 6 4]\n", + " [5 1 5]\n", + " [3 8 6]]\n", + "[[9 6 4 5 1 5 3 8 6]]\n", + "\n", + "[[9]\n", + " [6]\n", + " [4]\n", + " [5]\n", + " [1]\n", + " [5]\n", + " [3]\n", + " [8]\n", + " [6]]\n" + ] + } + ], + "execution_count": 27 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T04:26:59.806623Z", + "start_time": "2025-11-17T04:26:59.803018Z" + } + }, + "cell_type": "code", + "source": [ + "A = np.array([\n", + " [1, 2, 3],\n", + " [4, 5, 6]\n", + "])\n", + "\n", + "B = np.array([\n", + " [7, 8],\n", + " [9, 10],\n", + " [11, 12]\n", + "])\n", + "print(np.dot(A, B))" + ], + "id": "fb935976c44f687b", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 58 64]\n", + " [139 154]]\n" + ] + } + ], + "execution_count": 29 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T04:28:38.730791Z", + "start_time": "2025-11-17T04:28:38.726337Z" + } + }, + "cell_type": "code", + "source": [ + "arr = np.random.randint(1, 10, size=(5, 5))\n", + "print(arr)\n", + "flatten_arr = arr.flatten()\n", + "print(flatten_arr)\n", + "arr2 = flatten_arr.reshape(5,5)\n", + "print(arr2)" + ], + "id": "341103d1614b437", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[8 1 8 3 2]\n", + " [6 9 8 7 9]\n", + " [6 6 7 4 8]\n", + " [5 5 9 6 9]\n", + " [7 7 5 4 7]]\n", + "[8 1 8 3 2 6 9 8 7 9 6 6 7 4 8 5 5 9 6 9 7 7 5 4 7]\n", + "[[8 1 8 3 2]\n", + " [6 9 8 7 9]\n", + " [6 6 7 4 8]\n", + " [5 5 9 6 9]\n", + " [7 7 5 4 7]]\n" + ] + } + ], + "execution_count": 32 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T04:27:28.809857Z", + "start_time": "2025-11-17T04:27:28.805790Z" + } + }, + "cell_type": "code", + "source": [ + "# 1\n", + "arr = np.random.randint(1, 10, size=(3, 3))\n", + "print(arr)\n", + "\n", + "print(arr.reshape(1, 9))\n", + "print(arr.reshape(9, 1)) # row = 9 , col = 1" + ], + "id": "41055d5479fa123", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[5 8 1]\n", + " [7 9 9]\n", + " [7 7 8]]\n", + "[[5 8 1 7 9 9 7 7 8]]\n", + "[[5]\n", + " [8]\n", + " [1]\n", + " [7]\n", + " [9]\n", + " [9]\n", + " [7]\n", + " [7]\n", + " [8]]\n" + ] + } + ], + "execution_count": 30 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T04:36:34.168100Z", + "start_time": "2025-11-17T04:36:34.162816Z" + } + }, + "cell_type": "code", + "source": [ + "arr = np.random.randint(1,100, size=(5,5))\n", + "\n", + "print(arr)\n" + ], + "id": "4eba8e820f4e06fb", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[38 35 15 10 29]\n", + " [63 41 65 48 43]\n", + " [72 7 62 13 93]\n", + " [67 4 40 48 15]\n", + " [ 3 15 47 90 47]]\n" + ] + } + ], + "execution_count": 33 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T04:37:10.058197Z", + "start_time": "2025-11-17T04:37:10.053686Z" + } + }, + "cell_type": "code", + "source": [ + "print((arr[arr>10]))\n", + "arr[arr>10] = 10\n", + "print(arr)" + ], + "id": "1ffec1499d916309", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[]\n", + "[[10 10 10 10 10]\n", + " [10 10 10 10 10]\n", + " [10 7 10 10 10]\n", + " [10 4 10 10 10]\n", + " [ 3 10 10 10 10]]\n" + ] + } + ], + "execution_count": 36 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T04:51:07.811225Z", + "start_time": "2025-11-17T04:51:07.807982Z" + } + }, + "cell_type": "code", + "source": [ + "import numpy as np\n", + "\n", + "def reshape_matrix(a: list[list[int | float]], new_shape: tuple[int, int]) -> list[list[int | float]]:\n", + " # Write your code here and return a python list after reshaping by using numpy's tolist() method\n", + " arr = np.array(a)\n", + "\n", + " # Check if total elements match\n", + " if arr.size != new_shape[0] * new_shape[1]:\n", + " return []\n", + "\n", + " # Reshape and return as list\n", + " arr = arr.reshape(new_shape[0], new_shape[1])\n", + " return arr.tolist()\n" + ], + "id": "37c36caaea1ff79", + "outputs": [], + "execution_count": 40 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-17T04:58:30.793608Z", + "start_time": "2025-11-17T04:58:30.790373Z" + } + }, + "cell_type": "code", + "source": [ + "import numpy as np\n", + "def scalar_multiply(matrix: list[list[int|float]], scalar: int|float) -> list[list[int|float]]:\n", + " arr = np.array(matrix)\n", + " arr = arr * scalar\n", + " return arr.tolist()" + ], + "id": "464cd8c133f1c1cc", + "outputs": [], + "execution_count": 45 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": [ + "def vector_sum(a: list[int | float], b: list[int | float]) -> list[int | float] | int:\n", + " # Check if vectors have the same length\n", + " if len(a) != len(b):\n", + " return -1\n", + "\n", + " # Compute element-wise sum\n", + " return [a[i] + b[i] for i in range(len(a))]\n" + ], + "id": "9af9786e6c98a17" + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 9a130b3f39728cb49aeb4239cca3c283e6a085e7 Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Wed, 19 Nov 2025 09:47:14 +0600 Subject: [PATCH 76/78] CS02 --- .../Week_3_Conceptual_Session_2.ipynb | 7080 +++++++++++++++++ .../Week_3/Conceptual Session/data.csv | 51 + .../Week_3/Conceptual Session/s2.ipynb | 2566 ++++++ 3 files changed, 9697 insertions(+) create mode 100644 Python_For_ML/Week_3/Conceptual Session/Week_3_Conceptual_Session_2.ipynb create mode 100644 Python_For_ML/Week_3/Conceptual Session/data.csv create mode 100644 Python_For_ML/Week_3/Conceptual Session/s2.ipynb diff --git a/Python_For_ML/Week_3/Conceptual Session/Week_3_Conceptual_Session_2.ipynb b/Python_For_ML/Week_3/Conceptual Session/Week_3_Conceptual_Session_2.ipynb new file mode 100644 index 0000000..e5fec5e --- /dev/null +++ b/Python_For_ML/Week_3/Conceptual Session/Week_3_Conceptual_Session_2.ipynb @@ -0,0 +1,7080 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [], + "toc_visible": true + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3 (ipykernel)", + "language": "python" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Pandas Basic\n" + ], + "metadata": { + "id": "W-nRBoGfBWbm" + } + }, + { + "cell_type": "code", + "source": [ + "import pandas as pd" + ], + "metadata": { + "id": "ZnXRIhZ4Qhjk", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:20.364341Z", + "start_time": "2025-11-19T02:30:19.518802Z" + } + }, + "outputs": [], + "execution_count": 1 + }, + { + "cell_type": "code", + "source": [ + "data = [10,20,30,40]\n", + "sr = pd.Series(data, index=['x','y','z','zz'])\n", + "print(sr)\n", + "print(sr.loc['x'])\n", + "print(sr.iloc[0])" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "hK4fJPxQQqWl", + "outputId": "eb66bc27-7d98-4af4-c1a2-bb98f2a5c6d4", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:20.379266Z", + "start_time": "2025-11-19T02:30:20.372434Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "x 10\n", + "y 20\n", + "z 30\n", + "zz 40\n", + "dtype: int64\n", + "10\n", + "10\n" + ] + } + ], + "execution_count": 2 + }, + { + "cell_type": "code", + "source": [ + "print(sr['x'])" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "-gz2lq7URm0k", + "outputId": "07adea53-c24e-46ca-9506-1c3ccfbcb90e", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:20.396119Z", + "start_time": "2025-11-19T02:30:20.392783Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n" + ] + } + ], + "execution_count": 3 + }, + { + "cell_type": "code", + "source": [ + "data = {'a': 10, 'b':20, 'c': 30}\n", + "sr = pd.Series(data)\n", + "sr" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 178 + }, + "id": "g4bttckrRGaz", + "outputId": "919f277b-b47c-45f6-9d58-3786b851cda0", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:20.442069Z", + "start_time": "2025-11-19T02:30:20.435514Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "a 10\n", + "b 20\n", + "c 30\n", + "dtype: int64" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 4 + }, + { + "cell_type": "code", + "source": [ + "print(sr['a'])\n", + "print(sr[1])\n", + "print(sr[['a', 'c']])" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "xwhsvwT3RaF6", + "outputId": "034db7df-0a87-422e-f16c-f6a20de37040", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:20.500826Z", + "start_time": "2025-11-19T02:30:20.496302Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n", + "20\n", + "a 10\n", + "c 30\n", + "dtype: int64\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\evan\\AppData\\Local\\Temp\\ipykernel_14108\\3249592217.py:2: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " print(sr[1])\n" + ] + } + ], + "execution_count": 5 + }, + { + "cell_type": "code", + "source": [ + "print(sr.loc[['a', 'c']])\n", + "print(sr.loc['a'])" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "bQnzBuXlSBkG", + "outputId": "215303bb-312b-49b7-b127-bb4a596c5683", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:20.656289Z", + "start_time": "2025-11-19T02:30:20.652832Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "a 10\n", + "c 30\n", + "dtype: int64\n", + "10\n" + ] + } + ], + "execution_count": 6 + }, + { + "cell_type": "code", + "source": [ + "print(sr.iloc[1])" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "-PGaNCpaSX-W", + "outputId": "705926d6-6b3d-4bea-c444-362f9aeceba5", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:20.731747Z", + "start_time": "2025-11-19T02:30:20.728576Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "20\n" + ] + } + ], + "execution_count": 7 + }, + { + "cell_type": "code", + "source": [ + "sr" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 209 + }, + "id": "OeaedlbeTRzx", + "outputId": "5b34ed6e-7c4b-44c1-bff0-1c4a9249beed", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:20.758366Z", + "start_time": "2025-11-19T02:30:20.754467Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "a 10\n", + "b 20\n", + "c 30\n", + "dtype: int64" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 8 + }, + { + "cell_type": "code", + "source": [ + "print(sr['x':'z']) # loc = Last tao nibe\n", + "print(sr[0:2]) # iloc = Last er ager ta porjonto nibe" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "qhs1cycjTXg7", + "outputId": "9f438bb7-1aa3-47ae-f4ff-554be54c38cb", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:20.833Z", + "start_time": "2025-11-19T02:30:20.828614Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Series([], dtype: int64)\n", + "a 10\n", + "b 20\n", + "dtype: int64\n" + ] + } + ], + "execution_count": 9 + }, + { + "cell_type": "code", + "source": [ + "print(sr.loc['x':'z'])\n", + "print(sr.iloc[0:2])" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "CAbbVm_TUEsz", + "outputId": "f2d43e35-c4d1-4ffd-b915-50f3d42b4c4e", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:20.937671Z", + "start_time": "2025-11-19T02:30:20.934034Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Series([], dtype: int64)\n", + "a 10\n", + "b 20\n", + "dtype: int64\n" + ] + } + ], + "execution_count": 10 + }, + { + "cell_type": "code", + "source": [ + "print(sr.get('x'))\n", + "print(sr.get('a',50))" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "pEWuVsy0UYZ4", + "outputId": "5cf483f4-1cf9-4b8a-e721-387869b01de2", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:20.999704Z", + "start_time": "2025-11-19T02:30:20.996226Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "None\n", + "10\n" + ] + } + ], + "execution_count": 11 + }, + { + "cell_type": "code", + "source": [ + "## Dataframe\n", + "series1 = pd.Series([10,20,30,40], index=[2, 3,4,5])\n", + "series2 = pd.Series(['A','B','C','D'], index=[5, 4, 3, 2])\n", + "\n", + "df = pd.DataFrame({'Numbers': series1, 'Letter':series2})\n", + "df" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 174 + }, + "id": "iPF3xfuPUs19", + "outputId": "285299f7-0ccb-4ed5-b417-9779ac3acc7e", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:21.053793Z", + "start_time": "2025-11-19T02:30:21.042314Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Numbers Letter\n", + "2 10 D\n", + "3 20 C\n", + "4 30 B\n", + "5 40 A" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NumbersLetter
210D
320C
430B
540A
\n", + "
" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 12 + }, + { + "cell_type": "code", + "source": [ + "## Dataframa 2 Dictionary of list\n", + "\n", + "data1 = {\n", + " 'Name': ['Rakib', 'Tamim', 'Yasin'],\n", + " 'Age': [25, 24, 27],\n", + " 'City': ['Chittagong', 'Dhaka', 'Barishal']\n", + "}\n", + "df = pd.DataFrame(data1)\n", + "df" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 143 + }, + "id": "6Y1IoXoaWC96", + "outputId": "89b2866e-2b77-45cf-fb9c-8f883ac5c1a1", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:21.144040Z", + "start_time": "2025-11-19T02:30:21.137046Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "0 Rakib 25 Chittagong\n", + "1 Tamim 24 Dhaka\n", + "2 Yasin 27 Barishal" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
0Rakib25Chittagong
1Tamim24Dhaka
2Yasin27Barishal
\n", + "
" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 13 + }, + { + "cell_type": "code", + "source": [ + "## Dataframa 3 List of dictionary\n", + "data3 = [\n", + " {'Name': 'Rakib', 'Age': 25, 'City': \"Chittagong\"},\n", + " {'Name': 'Rakib2', 'Age': 25, 'City': \"Chittagong\"},\n", + " {'Name': 'Rakib3', 'Age': 25, 'City': \"Chittagong\"},\n", + " {'Name': 'Rakib3', 'Age': 25, 'City': \"Chittagong\"},\n", + "]\n", + "df2 = pd.DataFrame(data3, index=['a','b','c','d'])\n", + "df2\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 174 + }, + "id": "MMIGAdMnWnU0", + "outputId": "dff8ae3e-7dc6-4039-fa43-b214431135ec", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:21.334647Z", + "start_time": "2025-11-19T02:30:21.325635Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "a Rakib 25 Chittagong\n", + "b Rakib2 25 Chittagong\n", + "c Rakib3 25 Chittagong\n", + "d Rakib3 25 Chittagong" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
aRakib25Chittagong
bRakib225Chittagong
cRakib325Chittagong
dRakib325Chittagong
\n", + "
" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 14 + }, + { + "cell_type": "code", + "source": [ + "print(df2.loc['a'])" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "Qb3xZNOtXR9m", + "outputId": "7954fc0a-e064-45a5-e4f4-ac29408b3f6e", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:21.426079Z", + "start_time": "2025-11-19T02:30:21.422147Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Name Rakib\n", + "Age 25\n", + "City Chittagong\n", + "Name: a, dtype: object\n" + ] + } + ], + "execution_count": 15 + }, + { + "cell_type": "code", + "source": [ + "print(df2.iloc[1])" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "MT0IF1mHYJxS", + "outputId": "f29e2259-ec30-4827-8346-6f61e21c8815", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:21.589776Z", + "start_time": "2025-11-19T02:30:21.586335Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Name Rakib2\n", + "Age 25\n", + "City Chittagong\n", + "Name: b, dtype: object\n" + ] + } + ], + "execution_count": 16 + }, + { + "cell_type": "code", + "source": [ + "print(df2.iloc[0:3])\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "H9NQcJW7YSOs", + "outputId": "76105c54-c1de-4d55-d388-365602352b50", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:21.645350Z", + "start_time": "2025-11-19T02:30:21.640504Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Name Age City\n", + "a Rakib 25 Chittagong\n", + "b Rakib2 25 Chittagong\n", + "c Rakib3 25 Chittagong\n" + ] + } + ], + "execution_count": 17 + }, + { + "cell_type": "code", + "source": [ + "print(df2.loc['a':'c'])" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "CreYpqfyYZUC", + "outputId": "f584bedb-f55d-4af5-ab0d-6935e7ca8b27", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:21.674751Z", + "start_time": "2025-11-19T02:30:21.670618Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Name Age City\n", + "a Rakib 25 Chittagong\n", + "b Rakib2 25 Chittagong\n", + "c Rakib3 25 Chittagong\n" + ] + } + ], + "execution_count": 18 + }, + { + "cell_type": "code", + "source": [ + "print(df2.iat[1,0])" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "IXWA_HLBYo8f", + "outputId": "15794be5-bedd-433c-d961-c2f9a15eb531", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:21.690466Z", + "start_time": "2025-11-19T02:30:21.687217Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Rakib2\n" + ] + } + ], + "execution_count": 19 + }, + { + "cell_type": "code", + "source": [ + "## Add a Column\n", + "df2['Salary']=[1000,2500,5000,4500]\n", + "df2" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 174 + }, + "id": "L-EJ91VWY3gT", + "outputId": "51acbe00-5dd6-4780-bb8b-d106bd9ae18a", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:21.734093Z", + "start_time": "2025-11-19T02:30:21.725386Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City Salary\n", + "a Rakib 25 Chittagong 1000\n", + "b Rakib2 25 Chittagong 2500\n", + "c Rakib3 25 Chittagong 5000\n", + "d Rakib3 25 Chittagong 4500" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCitySalary
aRakib25Chittagong1000
bRakib225Chittagong2500
cRakib325Chittagong5000
dRakib325Chittagong4500
\n", + "
" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 20 + }, + { + "cell_type": "code", + "source": [ + "df2['Salary']" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 209 + }, + "id": "x0F0xM5IZF8n", + "outputId": "5f9a574d-a004-4eec-b197-73c8a6f2fa66", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:21.791997Z", + "start_time": "2025-11-19T02:30:21.787618Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "a 1000\n", + "b 2500\n", + "c 5000\n", + "d 4500\n", + "Name: Salary, dtype: int64" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 21 + }, + { + "cell_type": "code", + "source": [ + "df2" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 174 + }, + "id": "8S-BIGtqZMGh", + "outputId": "38712d1f-2a9e-4c5b-e7f3-f7158f1f98ce", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:22.002969Z", + "start_time": "2025-11-19T02:30:21.997011Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City Salary\n", + "a Rakib 25 Chittagong 1000\n", + "b Rakib2 25 Chittagong 2500\n", + "c Rakib3 25 Chittagong 5000\n", + "d Rakib3 25 Chittagong 4500" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCitySalary
aRakib25Chittagong1000
bRakib225Chittagong2500
cRakib325Chittagong5000
dRakib325Chittagong4500
\n", + "
" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 22 + }, + { + "cell_type": "markdown", + "source": [ + "axis : {0 or 'index', 1 or 'columns'}, default 0\n", + " Whether to drop labels from the index (0 or 'index') or\n", + "columns (1 or 'columns')." + ], + "metadata": { + "id": "l19zlAD1ZXwc" + } + }, + { + "cell_type": "code", + "source": [ + "df2.drop('Salary', axis=1, inplace=True)" + ], + "metadata": { + "id": "nXFC3HrDZPFT", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:22.095839Z", + "start_time": "2025-11-19T02:30:22.085414Z" + } + }, + "outputs": [], + "execution_count": 23 + }, + { + "cell_type": "code", + "source": [ + "df2" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 174 + }, + "id": "ELpax-elaCTY", + "outputId": "82e5e734-9849-4f89-fedb-9c3c9107048e", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:22.190594Z", + "start_time": "2025-11-19T02:30:22.184416Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "a Rakib 25 Chittagong\n", + "b Rakib2 25 Chittagong\n", + "c Rakib3 25 Chittagong\n", + "d Rakib3 25 Chittagong" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
aRakib25Chittagong
bRakib225Chittagong
cRakib325Chittagong
dRakib325Chittagong
\n", + "
" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 24 + }, + { + "cell_type": "code", + "source": [ + "df2.drop('a', axis=0)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 143 + }, + "id": "tSYMcAyWaRbY", + "outputId": "97b383b3-756b-4cb2-8a38-eb0320648768", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:22.268073Z", + "start_time": "2025-11-19T02:30:22.260664Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "b Rakib2 25 Chittagong\n", + "c Rakib3 25 Chittagong\n", + "d Rakib3 25 Chittagong" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
bRakib225Chittagong
cRakib325Chittagong
dRakib325Chittagong
\n", + "
" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 25 + }, + { + "cell_type": "code", + "source": [ + "df2" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 174 + }, + "id": "BbBXL_b3aeq4", + "outputId": "4507eba4-b5e3-4d9a-ade4-9c58802e0ff9", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:22.420482Z", + "start_time": "2025-11-19T02:30:22.414627Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "a Rakib 25 Chittagong\n", + "b Rakib2 25 Chittagong\n", + "c Rakib3 25 Chittagong\n", + "d Rakib3 25 Chittagong" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
aRakib25Chittagong
bRakib225Chittagong
cRakib325Chittagong
dRakib325Chittagong
\n", + "
" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 26 + }, + { + "cell_type": "code", + "source": [ + "df2['Age'] = df2['Age']+10" + ], + "metadata": { + "id": "UV1iSXWsasvX", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:22.610193Z", + "start_time": "2025-11-19T02:30:22.607198Z" + } + }, + "outputs": [], + "execution_count": 27 + }, + { + "cell_type": "code", + "source": [ + "df2" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 174 + }, + "id": "62AnQfSXawpa", + "outputId": "f4acdf34-259f-4326-8d59-85dbb4e92fde", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:22.674998Z", + "start_time": "2025-11-19T02:30:22.669353Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "a Rakib 35 Chittagong\n", + "b Rakib2 35 Chittagong\n", + "c Rakib3 35 Chittagong\n", + "d Rakib3 35 Chittagong" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
aRakib35Chittagong
bRakib235Chittagong
cRakib335Chittagong
dRakib335Chittagong
\n", + "
" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 28 + }, + { + "cell_type": "markdown", + "source": [ + "# Read from csv\n", + "Download link https://drive.google.com/file/d/1_MS71FKXVYlOyY25KUqPhV8Wro4Btl4y/view?usp=sharing" + ], + "metadata": { + "id": "W-ReYtpQB4R7" + } + }, + { + "cell_type": "code", + "source": [ + "df = pd.read_csv('data.csv')" + ], + "metadata": { + "id": "x8pocx9sb20o", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:22.739368Z", + "start_time": "2025-11-19T02:30:22.733385Z" + } + }, + "outputs": [], + "execution_count": 29 + }, + { + "cell_type": "code", + "source": [ + "df" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "id": "xFsL_q2ZcGcm", + "outputId": "e9dfe83c-c05c-448a-d00f-2f9478fa8bc2", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:22.844209Z", + "start_time": "2025-11-19T02:30:22.829019Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region\n", + "0 2023-01-01 A 28.0 Product1 754.0 East\n", + "1 2023-01-02 B 39.0 Product3 110.0 North\n", + "2 2023-01-03 C 32.0 Product2 398.0 East\n", + "3 2023-01-04 B 8.0 Product1 522.0 East\n", + "4 2023-01-05 B 26.0 Product3 869.0 North\n", + "5 2023-01-06 B 54.0 Product3 192.0 West\n", + "6 2023-01-07 A 16.0 Product1 936.0 East\n", + "7 2023-01-08 C 89.0 Product1 488.0 West\n", + "8 2023-01-09 C 37.0 Product3 772.0 West\n", + "9 2023-01-10 A 22.0 Product2 834.0 West\n", + "10 2023-01-11 B 7.0 Product1 842.0 North\n", + "11 2023-01-12 B 60.0 Product2 NaN West\n", + "12 2023-01-13 A 70.0 Product3 628.0 South\n", + "13 2023-01-14 A 69.0 Product1 423.0 East\n", + "14 2023-01-15 A 47.0 Product2 893.0 West\n", + "15 2023-01-16 C NaN Product1 895.0 North\n", + "16 2023-01-17 C 93.0 Product2 511.0 South\n", + "17 2023-01-18 C NaN Product1 108.0 West\n", + "18 2023-01-19 A 31.0 Product2 578.0 West\n", + "19 2023-01-20 A 59.0 Product1 736.0 East\n", + "20 2023-01-21 C 82.0 Product3 606.0 South\n", + "21 2023-01-22 C 37.0 Product2 992.0 South\n", + "22 2023-01-23 B 62.0 Product3 942.0 North\n", + "23 2023-01-24 C 92.0 Product2 342.0 West\n", + "24 2023-01-25 A 24.0 Product2 458.0 East\n", + "25 2023-01-26 C 95.0 Product1 584.0 West\n", + "26 2023-01-27 C 71.0 Product2 619.0 North\n", + "27 2023-01-28 C 56.0 Product2 224.0 North\n", + "28 2023-01-29 B NaN Product3 617.0 North\n", + "29 2023-01-30 C 51.0 Product2 737.0 South\n", + "30 2023-01-31 B 50.0 Product3 735.0 West\n", + "31 2023-02-01 A 17.0 Product2 189.0 West\n", + "32 2023-02-02 B 63.0 Product3 338.0 South\n", + "33 2023-02-03 C 27.0 Product3 NaN East\n", + "34 2023-02-04 C 70.0 Product3 669.0 West\n", + "35 2023-02-05 B 60.0 Product2 NaN West\n", + "36 2023-02-06 C 36.0 Product3 177.0 East\n", + "37 2023-02-07 C 2.0 Product1 NaN North\n", + "38 2023-02-08 C 94.0 Product1 408.0 South\n", + "39 2023-02-09 A 62.0 Product1 155.0 West\n", + "40 2023-02-10 B 15.0 Product1 578.0 East\n", + "41 2023-02-11 C 97.0 Product1 256.0 East\n", + "42 2023-02-12 A 93.0 Product3 164.0 West\n", + "43 2023-02-13 A 43.0 Product3 949.0 East\n", + "44 2023-02-14 A 96.0 Product3 830.0 East\n", + "45 2023-02-15 B 99.0 Product2 599.0 West\n", + "46 2023-02-16 B 6.0 Product1 938.0 South\n", + "47 2023-02-17 B 69.0 Product3 143.0 West\n", + "48 2023-02-18 C 65.0 Product3 182.0 North\n", + "49 2023-02-19 C 11.0 Product3 708.0 North" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegion
02023-01-01A28.0Product1754.0East
12023-01-02B39.0Product3110.0North
22023-01-03C32.0Product2398.0East
32023-01-04B8.0Product1522.0East
42023-01-05B26.0Product3869.0North
52023-01-06B54.0Product3192.0West
62023-01-07A16.0Product1936.0East
72023-01-08C89.0Product1488.0West
82023-01-09C37.0Product3772.0West
92023-01-10A22.0Product2834.0West
102023-01-11B7.0Product1842.0North
112023-01-12B60.0Product2NaNWest
122023-01-13A70.0Product3628.0South
132023-01-14A69.0Product1423.0East
142023-01-15A47.0Product2893.0West
152023-01-16CNaNProduct1895.0North
162023-01-17C93.0Product2511.0South
172023-01-18CNaNProduct1108.0West
182023-01-19A31.0Product2578.0West
192023-01-20A59.0Product1736.0East
202023-01-21C82.0Product3606.0South
212023-01-22C37.0Product2992.0South
222023-01-23B62.0Product3942.0North
232023-01-24C92.0Product2342.0West
242023-01-25A24.0Product2458.0East
252023-01-26C95.0Product1584.0West
262023-01-27C71.0Product2619.0North
272023-01-28C56.0Product2224.0North
282023-01-29BNaNProduct3617.0North
292023-01-30C51.0Product2737.0South
302023-01-31B50.0Product3735.0West
312023-02-01A17.0Product2189.0West
322023-02-02B63.0Product3338.0South
332023-02-03C27.0Product3NaNEast
342023-02-04C70.0Product3669.0West
352023-02-05B60.0Product2NaNWest
362023-02-06C36.0Product3177.0East
372023-02-07C2.0Product1NaNNorth
382023-02-08C94.0Product1408.0South
392023-02-09A62.0Product1155.0West
402023-02-10B15.0Product1578.0East
412023-02-11C97.0Product1256.0East
422023-02-12A93.0Product3164.0West
432023-02-13A43.0Product3949.0East
442023-02-14A96.0Product3830.0East
452023-02-15B99.0Product2599.0West
462023-02-16B6.0Product1938.0South
472023-02-17B69.0Product3143.0West
482023-02-18C65.0Product3182.0North
492023-02-19C11.0Product3708.0North
\n", + "
" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 30 + }, + { + "cell_type": "code", + "source": [ + "df.head()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 206 + }, + "id": "Y0rpWgEfcKTq", + "outputId": "1bdf0ac1-999d-49e1-dc6a-b9cf14be63f7", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:22.926844Z", + "start_time": "2025-11-19T02:30:22.918421Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region\n", + "0 2023-01-01 A 28.0 Product1 754.0 East\n", + "1 2023-01-02 B 39.0 Product3 110.0 North\n", + "2 2023-01-03 C 32.0 Product2 398.0 East\n", + "3 2023-01-04 B 8.0 Product1 522.0 East\n", + "4 2023-01-05 B 26.0 Product3 869.0 North" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegion
02023-01-01A28.0Product1754.0East
12023-01-02B39.0Product3110.0North
22023-01-03C32.0Product2398.0East
32023-01-04B8.0Product1522.0East
42023-01-05B26.0Product3869.0North
\n", + "
" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 31 + }, + { + "cell_type": "code", + "source": [ + "df.tail()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 206 + }, + "id": "m1gCg2UycMYu", + "outputId": "cb71960c-3b7b-44b6-ee79-ca94ff21cd95", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:23.122324Z", + "start_time": "2025-11-19T02:30:23.114777Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region\n", + "45 2023-02-15 B 99.0 Product2 599.0 West\n", + "46 2023-02-16 B 6.0 Product1 938.0 South\n", + "47 2023-02-17 B 69.0 Product3 143.0 West\n", + "48 2023-02-18 C 65.0 Product3 182.0 North\n", + "49 2023-02-19 C 11.0 Product3 708.0 North" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegion
452023-02-15B99.0Product2599.0West
462023-02-16B6.0Product1938.0South
472023-02-17B69.0Product3143.0West
482023-02-18C65.0Product3182.0North
492023-02-19C11.0Product3708.0North
\n", + "
" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 32 + }, + { + "cell_type": "code", + "source": [ + "df.describe()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 300 + }, + "id": "eTcvD6cDcQt3", + "outputId": "e966dcb4-e5f8-43dd-8d18-9d5a56262e9b", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:23.351845Z", + "start_time": "2025-11-19T02:30:23.338009Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Value Sales\n", + "count 47.000000 46.000000\n", + "mean 51.744681 557.130435\n", + "std 29.050532 274.598584\n", + "min 2.000000 108.000000\n", + "25% 27.500000 339.000000\n", + "50% 54.000000 591.500000\n", + "75% 70.000000 767.500000\n", + "max 99.000000 992.000000" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ValueSales
count47.00000046.000000
mean51.744681557.130435
std29.050532274.598584
min2.000000108.000000
25%27.500000339.000000
50%54.000000591.500000
75%70.000000767.500000
max99.000000992.000000
\n", + "
" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 33 + }, + { + "cell_type": "code", + "source": [ + "df.dtypes" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 272 + }, + "id": "DahL9LzgcwbA", + "outputId": "9eee581d-805d-4420-c165-8e479a91b7c6", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:23.473468Z", + "start_time": "2025-11-19T02:30:23.468378Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Date object\n", + "Category object\n", + "Value float64\n", + "Product object\n", + "Sales float64\n", + "Region object\n", + "dtype: object" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 34 + }, + { + "cell_type": "code", + "source": [ + "df.isnull()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "id": "_Lv2nWOzdAE4", + "outputId": "b103840e-8671-408f-bac0-aa97da2c5930", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:23.638663Z", + "start_time": "2025-11-19T02:30:23.622169Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region\n", + "0 False False False False False False\n", + "1 False False False False False False\n", + "2 False False False False False False\n", + "3 False False False False False False\n", + "4 False False False False False False\n", + "5 False False False False False False\n", + "6 False False False False False False\n", + "7 False False False False False False\n", + "8 False False False False False False\n", + "9 False False False False False False\n", + "10 False False False False False False\n", + "11 False False False False True False\n", + "12 False False False False False False\n", + "13 False False False False False False\n", + "14 False False False False False False\n", + "15 False False True False False False\n", + "16 False False False False False False\n", + "17 False False True False False False\n", + "18 False False False False False False\n", + "19 False False False False False False\n", + "20 False False False False False False\n", + "21 False False False False False False\n", + "22 False False False False False False\n", + "23 False False False False False False\n", + "24 False False False False False False\n", + "25 False False False False False False\n", + "26 False False False False False False\n", + "27 False False False False False False\n", + "28 False False True False False False\n", + "29 False False False False False False\n", + "30 False False False False False False\n", + "31 False False False False False False\n", + "32 False False False False False False\n", + "33 False False False False True False\n", + "34 False False False False False False\n", + "35 False False False False True False\n", + "36 False False False False False False\n", + "37 False False False False True False\n", + "38 False False False False False False\n", + "39 False False False False False False\n", + "40 False False False False False False\n", + "41 False False False False False False\n", + "42 False False False False False False\n", + "43 False False False False False False\n", + "44 False False False False False False\n", + "45 False False False False False False\n", + "46 False False False False False False\n", + "47 False False False False False False\n", + "48 False False False False False False\n", + "49 False False False False False False" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegion
0FalseFalseFalseFalseFalseFalse
1FalseFalseFalseFalseFalseFalse
2FalseFalseFalseFalseFalseFalse
3FalseFalseFalseFalseFalseFalse
4FalseFalseFalseFalseFalseFalse
5FalseFalseFalseFalseFalseFalse
6FalseFalseFalseFalseFalseFalse
7FalseFalseFalseFalseFalseFalse
8FalseFalseFalseFalseFalseFalse
9FalseFalseFalseFalseFalseFalse
10FalseFalseFalseFalseFalseFalse
11FalseFalseFalseFalseTrueFalse
12FalseFalseFalseFalseFalseFalse
13FalseFalseFalseFalseFalseFalse
14FalseFalseFalseFalseFalseFalse
15FalseFalseTrueFalseFalseFalse
16FalseFalseFalseFalseFalseFalse
17FalseFalseTrueFalseFalseFalse
18FalseFalseFalseFalseFalseFalse
19FalseFalseFalseFalseFalseFalse
20FalseFalseFalseFalseFalseFalse
21FalseFalseFalseFalseFalseFalse
22FalseFalseFalseFalseFalseFalse
23FalseFalseFalseFalseFalseFalse
24FalseFalseFalseFalseFalseFalse
25FalseFalseFalseFalseFalseFalse
26FalseFalseFalseFalseFalseFalse
27FalseFalseFalseFalseFalseFalse
28FalseFalseTrueFalseFalseFalse
29FalseFalseFalseFalseFalseFalse
30FalseFalseFalseFalseFalseFalse
31FalseFalseFalseFalseFalseFalse
32FalseFalseFalseFalseFalseFalse
33FalseFalseFalseFalseTrueFalse
34FalseFalseFalseFalseFalseFalse
35FalseFalseFalseFalseTrueFalse
36FalseFalseFalseFalseFalseFalse
37FalseFalseFalseFalseTrueFalse
38FalseFalseFalseFalseFalseFalse
39FalseFalseFalseFalseFalseFalse
40FalseFalseFalseFalseFalseFalse
41FalseFalseFalseFalseFalseFalse
42FalseFalseFalseFalseFalseFalse
43FalseFalseFalseFalseFalseFalse
44FalseFalseFalseFalseFalseFalse
45FalseFalseFalseFalseFalseFalse
46FalseFalseFalseFalseFalseFalse
47FalseFalseFalseFalseFalseFalse
48FalseFalseFalseFalseFalseFalse
49FalseFalseFalseFalseFalseFalse
\n", + "
" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 35 + }, + { + "cell_type": "code", + "source": [ + "df.isnull().sum()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 272 + }, + "id": "y49bc83IdWJR", + "outputId": "d8999e9b-3612-430c-ff5f-0ae3c1c034d5", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:23.869292Z", + "start_time": "2025-11-19T02:30:23.862060Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Date 0\n", + "Category 0\n", + "Value 3\n", + "Product 0\n", + "Sales 4\n", + "Region 0\n", + "dtype: int64" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 36 + }, + { + "cell_type": "code", + "source": [ + "df.fillna(0)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "id": "lb31wAXbd52w", + "outputId": "9fd29905-54db-4096-f5c9-b3eae514ce22", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:24.143604Z", + "start_time": "2025-11-19T02:30:24.126597Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region\n", + "0 2023-01-01 A 28.0 Product1 754.0 East\n", + "1 2023-01-02 B 39.0 Product3 110.0 North\n", + "2 2023-01-03 C 32.0 Product2 398.0 East\n", + "3 2023-01-04 B 8.0 Product1 522.0 East\n", + "4 2023-01-05 B 26.0 Product3 869.0 North\n", + "5 2023-01-06 B 54.0 Product3 192.0 West\n", + "6 2023-01-07 A 16.0 Product1 936.0 East\n", + "7 2023-01-08 C 89.0 Product1 488.0 West\n", + "8 2023-01-09 C 37.0 Product3 772.0 West\n", + "9 2023-01-10 A 22.0 Product2 834.0 West\n", + "10 2023-01-11 B 7.0 Product1 842.0 North\n", + "11 2023-01-12 B 60.0 Product2 0.0 West\n", + "12 2023-01-13 A 70.0 Product3 628.0 South\n", + "13 2023-01-14 A 69.0 Product1 423.0 East\n", + "14 2023-01-15 A 47.0 Product2 893.0 West\n", + "15 2023-01-16 C 0.0 Product1 895.0 North\n", + "16 2023-01-17 C 93.0 Product2 511.0 South\n", + "17 2023-01-18 C 0.0 Product1 108.0 West\n", + "18 2023-01-19 A 31.0 Product2 578.0 West\n", + "19 2023-01-20 A 59.0 Product1 736.0 East\n", + "20 2023-01-21 C 82.0 Product3 606.0 South\n", + "21 2023-01-22 C 37.0 Product2 992.0 South\n", + "22 2023-01-23 B 62.0 Product3 942.0 North\n", + "23 2023-01-24 C 92.0 Product2 342.0 West\n", + "24 2023-01-25 A 24.0 Product2 458.0 East\n", + "25 2023-01-26 C 95.0 Product1 584.0 West\n", + "26 2023-01-27 C 71.0 Product2 619.0 North\n", + "27 2023-01-28 C 56.0 Product2 224.0 North\n", + "28 2023-01-29 B 0.0 Product3 617.0 North\n", + "29 2023-01-30 C 51.0 Product2 737.0 South\n", + "30 2023-01-31 B 50.0 Product3 735.0 West\n", + "31 2023-02-01 A 17.0 Product2 189.0 West\n", + "32 2023-02-02 B 63.0 Product3 338.0 South\n", + "33 2023-02-03 C 27.0 Product3 0.0 East\n", + "34 2023-02-04 C 70.0 Product3 669.0 West\n", + "35 2023-02-05 B 60.0 Product2 0.0 West\n", + "36 2023-02-06 C 36.0 Product3 177.0 East\n", + "37 2023-02-07 C 2.0 Product1 0.0 North\n", + "38 2023-02-08 C 94.0 Product1 408.0 South\n", + "39 2023-02-09 A 62.0 Product1 155.0 West\n", + "40 2023-02-10 B 15.0 Product1 578.0 East\n", + "41 2023-02-11 C 97.0 Product1 256.0 East\n", + "42 2023-02-12 A 93.0 Product3 164.0 West\n", + "43 2023-02-13 A 43.0 Product3 949.0 East\n", + "44 2023-02-14 A 96.0 Product3 830.0 East\n", + "45 2023-02-15 B 99.0 Product2 599.0 West\n", + "46 2023-02-16 B 6.0 Product1 938.0 South\n", + "47 2023-02-17 B 69.0 Product3 143.0 West\n", + "48 2023-02-18 C 65.0 Product3 182.0 North\n", + "49 2023-02-19 C 11.0 Product3 708.0 North" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegion
02023-01-01A28.0Product1754.0East
12023-01-02B39.0Product3110.0North
22023-01-03C32.0Product2398.0East
32023-01-04B8.0Product1522.0East
42023-01-05B26.0Product3869.0North
52023-01-06B54.0Product3192.0West
62023-01-07A16.0Product1936.0East
72023-01-08C89.0Product1488.0West
82023-01-09C37.0Product3772.0West
92023-01-10A22.0Product2834.0West
102023-01-11B7.0Product1842.0North
112023-01-12B60.0Product20.0West
122023-01-13A70.0Product3628.0South
132023-01-14A69.0Product1423.0East
142023-01-15A47.0Product2893.0West
152023-01-16C0.0Product1895.0North
162023-01-17C93.0Product2511.0South
172023-01-18C0.0Product1108.0West
182023-01-19A31.0Product2578.0West
192023-01-20A59.0Product1736.0East
202023-01-21C82.0Product3606.0South
212023-01-22C37.0Product2992.0South
222023-01-23B62.0Product3942.0North
232023-01-24C92.0Product2342.0West
242023-01-25A24.0Product2458.0East
252023-01-26C95.0Product1584.0West
262023-01-27C71.0Product2619.0North
272023-01-28C56.0Product2224.0North
282023-01-29B0.0Product3617.0North
292023-01-30C51.0Product2737.0South
302023-01-31B50.0Product3735.0West
312023-02-01A17.0Product2189.0West
322023-02-02B63.0Product3338.0South
332023-02-03C27.0Product30.0East
342023-02-04C70.0Product3669.0West
352023-02-05B60.0Product20.0West
362023-02-06C36.0Product3177.0East
372023-02-07C2.0Product10.0North
382023-02-08C94.0Product1408.0South
392023-02-09A62.0Product1155.0West
402023-02-10B15.0Product1578.0East
412023-02-11C97.0Product1256.0East
422023-02-12A93.0Product3164.0West
432023-02-13A43.0Product3949.0East
442023-02-14A96.0Product3830.0East
452023-02-15B99.0Product2599.0West
462023-02-16B6.0Product1938.0South
472023-02-17B69.0Product3143.0West
482023-02-18C65.0Product3182.0North
492023-02-19C11.0Product3708.0North
\n", + "
" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 37 + }, + { + "cell_type": "code", + "source": [ + "df['Sales_NOT_NAN'] = df['Sales'].fillna(df['Sales'].mean())\n", + "df" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "id": "eJW-BEnCeB32", + "outputId": "a54dc01e-7948-41d3-f1b4-257b9a6a325f", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:24.337208Z", + "start_time": "2025-11-19T02:30:24.319079Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region Sales_NOT_NAN\n", + "0 2023-01-01 A 28.0 Product1 754.0 East 754.000000\n", + "1 2023-01-02 B 39.0 Product3 110.0 North 110.000000\n", + "2 2023-01-03 C 32.0 Product2 398.0 East 398.000000\n", + "3 2023-01-04 B 8.0 Product1 522.0 East 522.000000\n", + "4 2023-01-05 B 26.0 Product3 869.0 North 869.000000\n", + "5 2023-01-06 B 54.0 Product3 192.0 West 192.000000\n", + "6 2023-01-07 A 16.0 Product1 936.0 East 936.000000\n", + "7 2023-01-08 C 89.0 Product1 488.0 West 488.000000\n", + "8 2023-01-09 C 37.0 Product3 772.0 West 772.000000\n", + "9 2023-01-10 A 22.0 Product2 834.0 West 834.000000\n", + "10 2023-01-11 B 7.0 Product1 842.0 North 842.000000\n", + "11 2023-01-12 B 60.0 Product2 NaN West 557.130435\n", + "12 2023-01-13 A 70.0 Product3 628.0 South 628.000000\n", + "13 2023-01-14 A 69.0 Product1 423.0 East 423.000000\n", + "14 2023-01-15 A 47.0 Product2 893.0 West 893.000000\n", + "15 2023-01-16 C NaN Product1 895.0 North 895.000000\n", + "16 2023-01-17 C 93.0 Product2 511.0 South 511.000000\n", + "17 2023-01-18 C NaN Product1 108.0 West 108.000000\n", + "18 2023-01-19 A 31.0 Product2 578.0 West 578.000000\n", + "19 2023-01-20 A 59.0 Product1 736.0 East 736.000000\n", + "20 2023-01-21 C 82.0 Product3 606.0 South 606.000000\n", + "21 2023-01-22 C 37.0 Product2 992.0 South 992.000000\n", + "22 2023-01-23 B 62.0 Product3 942.0 North 942.000000\n", + "23 2023-01-24 C 92.0 Product2 342.0 West 342.000000\n", + "24 2023-01-25 A 24.0 Product2 458.0 East 458.000000\n", + "25 2023-01-26 C 95.0 Product1 584.0 West 584.000000\n", + "26 2023-01-27 C 71.0 Product2 619.0 North 619.000000\n", + "27 2023-01-28 C 56.0 Product2 224.0 North 224.000000\n", + "28 2023-01-29 B NaN Product3 617.0 North 617.000000\n", + "29 2023-01-30 C 51.0 Product2 737.0 South 737.000000\n", + "30 2023-01-31 B 50.0 Product3 735.0 West 735.000000\n", + "31 2023-02-01 A 17.0 Product2 189.0 West 189.000000\n", + "32 2023-02-02 B 63.0 Product3 338.0 South 338.000000\n", + "33 2023-02-03 C 27.0 Product3 NaN East 557.130435\n", + "34 2023-02-04 C 70.0 Product3 669.0 West 669.000000\n", + "35 2023-02-05 B 60.0 Product2 NaN West 557.130435\n", + "36 2023-02-06 C 36.0 Product3 177.0 East 177.000000\n", + "37 2023-02-07 C 2.0 Product1 NaN North 557.130435\n", + "38 2023-02-08 C 94.0 Product1 408.0 South 408.000000\n", + "39 2023-02-09 A 62.0 Product1 155.0 West 155.000000\n", + "40 2023-02-10 B 15.0 Product1 578.0 East 578.000000\n", + "41 2023-02-11 C 97.0 Product1 256.0 East 256.000000\n", + "42 2023-02-12 A 93.0 Product3 164.0 West 164.000000\n", + "43 2023-02-13 A 43.0 Product3 949.0 East 949.000000\n", + "44 2023-02-14 A 96.0 Product3 830.0 East 830.000000\n", + "45 2023-02-15 B 99.0 Product2 599.0 West 599.000000\n", + "46 2023-02-16 B 6.0 Product1 938.0 South 938.000000\n", + "47 2023-02-17 B 69.0 Product3 143.0 West 143.000000\n", + "48 2023-02-18 C 65.0 Product3 182.0 North 182.000000\n", + "49 2023-02-19 C 11.0 Product3 708.0 North 708.000000" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegionSales_NOT_NAN
02023-01-01A28.0Product1754.0East754.000000
12023-01-02B39.0Product3110.0North110.000000
22023-01-03C32.0Product2398.0East398.000000
32023-01-04B8.0Product1522.0East522.000000
42023-01-05B26.0Product3869.0North869.000000
52023-01-06B54.0Product3192.0West192.000000
62023-01-07A16.0Product1936.0East936.000000
72023-01-08C89.0Product1488.0West488.000000
82023-01-09C37.0Product3772.0West772.000000
92023-01-10A22.0Product2834.0West834.000000
102023-01-11B7.0Product1842.0North842.000000
112023-01-12B60.0Product2NaNWest557.130435
122023-01-13A70.0Product3628.0South628.000000
132023-01-14A69.0Product1423.0East423.000000
142023-01-15A47.0Product2893.0West893.000000
152023-01-16CNaNProduct1895.0North895.000000
162023-01-17C93.0Product2511.0South511.000000
172023-01-18CNaNProduct1108.0West108.000000
182023-01-19A31.0Product2578.0West578.000000
192023-01-20A59.0Product1736.0East736.000000
202023-01-21C82.0Product3606.0South606.000000
212023-01-22C37.0Product2992.0South992.000000
222023-01-23B62.0Product3942.0North942.000000
232023-01-24C92.0Product2342.0West342.000000
242023-01-25A24.0Product2458.0East458.000000
252023-01-26C95.0Product1584.0West584.000000
262023-01-27C71.0Product2619.0North619.000000
272023-01-28C56.0Product2224.0North224.000000
282023-01-29BNaNProduct3617.0North617.000000
292023-01-30C51.0Product2737.0South737.000000
302023-01-31B50.0Product3735.0West735.000000
312023-02-01A17.0Product2189.0West189.000000
322023-02-02B63.0Product3338.0South338.000000
332023-02-03C27.0Product3NaNEast557.130435
342023-02-04C70.0Product3669.0West669.000000
352023-02-05B60.0Product2NaNWest557.130435
362023-02-06C36.0Product3177.0East177.000000
372023-02-07C2.0Product1NaNNorth557.130435
382023-02-08C94.0Product1408.0South408.000000
392023-02-09A62.0Product1155.0West155.000000
402023-02-10B15.0Product1578.0East578.000000
412023-02-11C97.0Product1256.0East256.000000
422023-02-12A93.0Product3164.0West164.000000
432023-02-13A43.0Product3949.0East949.000000
442023-02-14A96.0Product3830.0East830.000000
452023-02-15B99.0Product2599.0West599.000000
462023-02-16B6.0Product1938.0South938.000000
472023-02-17B69.0Product3143.0West143.000000
482023-02-18C65.0Product3182.0North182.000000
492023-02-19C11.0Product3708.0North708.000000
\n", + "
" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 38 + }, + { + "cell_type": "code", + "source": [ + "df = df.rename(columns={'Sales_NOT_NAN':'New_Sales'})\n", + "df" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "id": "-PwH_ECDev6q", + "outputId": "9351aed8-108f-4b42-e73d-6a1ff07dc83c", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:24.559611Z", + "start_time": "2025-11-19T02:30:24.542599Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region New_Sales\n", + "0 2023-01-01 A 28.0 Product1 754.0 East 754.000000\n", + "1 2023-01-02 B 39.0 Product3 110.0 North 110.000000\n", + "2 2023-01-03 C 32.0 Product2 398.0 East 398.000000\n", + "3 2023-01-04 B 8.0 Product1 522.0 East 522.000000\n", + "4 2023-01-05 B 26.0 Product3 869.0 North 869.000000\n", + "5 2023-01-06 B 54.0 Product3 192.0 West 192.000000\n", + "6 2023-01-07 A 16.0 Product1 936.0 East 936.000000\n", + "7 2023-01-08 C 89.0 Product1 488.0 West 488.000000\n", + "8 2023-01-09 C 37.0 Product3 772.0 West 772.000000\n", + "9 2023-01-10 A 22.0 Product2 834.0 West 834.000000\n", + "10 2023-01-11 B 7.0 Product1 842.0 North 842.000000\n", + "11 2023-01-12 B 60.0 Product2 NaN West 557.130435\n", + "12 2023-01-13 A 70.0 Product3 628.0 South 628.000000\n", + "13 2023-01-14 A 69.0 Product1 423.0 East 423.000000\n", + "14 2023-01-15 A 47.0 Product2 893.0 West 893.000000\n", + "15 2023-01-16 C NaN Product1 895.0 North 895.000000\n", + "16 2023-01-17 C 93.0 Product2 511.0 South 511.000000\n", + "17 2023-01-18 C NaN Product1 108.0 West 108.000000\n", + "18 2023-01-19 A 31.0 Product2 578.0 West 578.000000\n", + "19 2023-01-20 A 59.0 Product1 736.0 East 736.000000\n", + "20 2023-01-21 C 82.0 Product3 606.0 South 606.000000\n", + "21 2023-01-22 C 37.0 Product2 992.0 South 992.000000\n", + "22 2023-01-23 B 62.0 Product3 942.0 North 942.000000\n", + "23 2023-01-24 C 92.0 Product2 342.0 West 342.000000\n", + "24 2023-01-25 A 24.0 Product2 458.0 East 458.000000\n", + "25 2023-01-26 C 95.0 Product1 584.0 West 584.000000\n", + "26 2023-01-27 C 71.0 Product2 619.0 North 619.000000\n", + "27 2023-01-28 C 56.0 Product2 224.0 North 224.000000\n", + "28 2023-01-29 B NaN Product3 617.0 North 617.000000\n", + "29 2023-01-30 C 51.0 Product2 737.0 South 737.000000\n", + "30 2023-01-31 B 50.0 Product3 735.0 West 735.000000\n", + "31 2023-02-01 A 17.0 Product2 189.0 West 189.000000\n", + "32 2023-02-02 B 63.0 Product3 338.0 South 338.000000\n", + "33 2023-02-03 C 27.0 Product3 NaN East 557.130435\n", + "34 2023-02-04 C 70.0 Product3 669.0 West 669.000000\n", + "35 2023-02-05 B 60.0 Product2 NaN West 557.130435\n", + "36 2023-02-06 C 36.0 Product3 177.0 East 177.000000\n", + "37 2023-02-07 C 2.0 Product1 NaN North 557.130435\n", + "38 2023-02-08 C 94.0 Product1 408.0 South 408.000000\n", + "39 2023-02-09 A 62.0 Product1 155.0 West 155.000000\n", + "40 2023-02-10 B 15.0 Product1 578.0 East 578.000000\n", + "41 2023-02-11 C 97.0 Product1 256.0 East 256.000000\n", + "42 2023-02-12 A 93.0 Product3 164.0 West 164.000000\n", + "43 2023-02-13 A 43.0 Product3 949.0 East 949.000000\n", + "44 2023-02-14 A 96.0 Product3 830.0 East 830.000000\n", + "45 2023-02-15 B 99.0 Product2 599.0 West 599.000000\n", + "46 2023-02-16 B 6.0 Product1 938.0 South 938.000000\n", + "47 2023-02-17 B 69.0 Product3 143.0 West 143.000000\n", + "48 2023-02-18 C 65.0 Product3 182.0 North 182.000000\n", + "49 2023-02-19 C 11.0 Product3 708.0 North 708.000000" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegionNew_Sales
02023-01-01A28.0Product1754.0East754.000000
12023-01-02B39.0Product3110.0North110.000000
22023-01-03C32.0Product2398.0East398.000000
32023-01-04B8.0Product1522.0East522.000000
42023-01-05B26.0Product3869.0North869.000000
52023-01-06B54.0Product3192.0West192.000000
62023-01-07A16.0Product1936.0East936.000000
72023-01-08C89.0Product1488.0West488.000000
82023-01-09C37.0Product3772.0West772.000000
92023-01-10A22.0Product2834.0West834.000000
102023-01-11B7.0Product1842.0North842.000000
112023-01-12B60.0Product2NaNWest557.130435
122023-01-13A70.0Product3628.0South628.000000
132023-01-14A69.0Product1423.0East423.000000
142023-01-15A47.0Product2893.0West893.000000
152023-01-16CNaNProduct1895.0North895.000000
162023-01-17C93.0Product2511.0South511.000000
172023-01-18CNaNProduct1108.0West108.000000
182023-01-19A31.0Product2578.0West578.000000
192023-01-20A59.0Product1736.0East736.000000
202023-01-21C82.0Product3606.0South606.000000
212023-01-22C37.0Product2992.0South992.000000
222023-01-23B62.0Product3942.0North942.000000
232023-01-24C92.0Product2342.0West342.000000
242023-01-25A24.0Product2458.0East458.000000
252023-01-26C95.0Product1584.0West584.000000
262023-01-27C71.0Product2619.0North619.000000
272023-01-28C56.0Product2224.0North224.000000
282023-01-29BNaNProduct3617.0North617.000000
292023-01-30C51.0Product2737.0South737.000000
302023-01-31B50.0Product3735.0West735.000000
312023-02-01A17.0Product2189.0West189.000000
322023-02-02B63.0Product3338.0South338.000000
332023-02-03C27.0Product3NaNEast557.130435
342023-02-04C70.0Product3669.0West669.000000
352023-02-05B60.0Product2NaNWest557.130435
362023-02-06C36.0Product3177.0East177.000000
372023-02-07C2.0Product1NaNNorth557.130435
382023-02-08C94.0Product1408.0South408.000000
392023-02-09A62.0Product1155.0West155.000000
402023-02-10B15.0Product1578.0East578.000000
412023-02-11C97.0Product1256.0East256.000000
422023-02-12A93.0Product3164.0West164.000000
432023-02-13A43.0Product3949.0East949.000000
442023-02-14A96.0Product3830.0East830.000000
452023-02-15B99.0Product2599.0West599.000000
462023-02-16B6.0Product1938.0South938.000000
472023-02-17B69.0Product3143.0West143.000000
482023-02-18C65.0Product3182.0North182.000000
492023-02-19C11.0Product3708.0North708.000000
\n", + "
" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 39 + }, + { + "cell_type": "code", + "source": [ + "df['Value_2x']= df['Value'].apply(lambda x: x*2)\n", + "df" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "id": "m8H1Uv4OfKeZ", + "outputId": "00cb49a8-139c-46e8-8902-1d199fcbdf58", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:24.718155Z", + "start_time": "2025-11-19T02:30:24.694410Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region New_Sales Value_2x\n", + "0 2023-01-01 A 28.0 Product1 754.0 East 754.000000 56.0\n", + "1 2023-01-02 B 39.0 Product3 110.0 North 110.000000 78.0\n", + "2 2023-01-03 C 32.0 Product2 398.0 East 398.000000 64.0\n", + "3 2023-01-04 B 8.0 Product1 522.0 East 522.000000 16.0\n", + "4 2023-01-05 B 26.0 Product3 869.0 North 869.000000 52.0\n", + "5 2023-01-06 B 54.0 Product3 192.0 West 192.000000 108.0\n", + "6 2023-01-07 A 16.0 Product1 936.0 East 936.000000 32.0\n", + "7 2023-01-08 C 89.0 Product1 488.0 West 488.000000 178.0\n", + "8 2023-01-09 C 37.0 Product3 772.0 West 772.000000 74.0\n", + "9 2023-01-10 A 22.0 Product2 834.0 West 834.000000 44.0\n", + "10 2023-01-11 B 7.0 Product1 842.0 North 842.000000 14.0\n", + "11 2023-01-12 B 60.0 Product2 NaN West 557.130435 120.0\n", + "12 2023-01-13 A 70.0 Product3 628.0 South 628.000000 140.0\n", + "13 2023-01-14 A 69.0 Product1 423.0 East 423.000000 138.0\n", + "14 2023-01-15 A 47.0 Product2 893.0 West 893.000000 94.0\n", + "15 2023-01-16 C NaN Product1 895.0 North 895.000000 NaN\n", + "16 2023-01-17 C 93.0 Product2 511.0 South 511.000000 186.0\n", + "17 2023-01-18 C NaN Product1 108.0 West 108.000000 NaN\n", + "18 2023-01-19 A 31.0 Product2 578.0 West 578.000000 62.0\n", + "19 2023-01-20 A 59.0 Product1 736.0 East 736.000000 118.0\n", + "20 2023-01-21 C 82.0 Product3 606.0 South 606.000000 164.0\n", + "21 2023-01-22 C 37.0 Product2 992.0 South 992.000000 74.0\n", + "22 2023-01-23 B 62.0 Product3 942.0 North 942.000000 124.0\n", + "23 2023-01-24 C 92.0 Product2 342.0 West 342.000000 184.0\n", + "24 2023-01-25 A 24.0 Product2 458.0 East 458.000000 48.0\n", + "25 2023-01-26 C 95.0 Product1 584.0 West 584.000000 190.0\n", + "26 2023-01-27 C 71.0 Product2 619.0 North 619.000000 142.0\n", + "27 2023-01-28 C 56.0 Product2 224.0 North 224.000000 112.0\n", + "28 2023-01-29 B NaN Product3 617.0 North 617.000000 NaN\n", + "29 2023-01-30 C 51.0 Product2 737.0 South 737.000000 102.0\n", + "30 2023-01-31 B 50.0 Product3 735.0 West 735.000000 100.0\n", + "31 2023-02-01 A 17.0 Product2 189.0 West 189.000000 34.0\n", + "32 2023-02-02 B 63.0 Product3 338.0 South 338.000000 126.0\n", + "33 2023-02-03 C 27.0 Product3 NaN East 557.130435 54.0\n", + "34 2023-02-04 C 70.0 Product3 669.0 West 669.000000 140.0\n", + "35 2023-02-05 B 60.0 Product2 NaN West 557.130435 120.0\n", + "36 2023-02-06 C 36.0 Product3 177.0 East 177.000000 72.0\n", + "37 2023-02-07 C 2.0 Product1 NaN North 557.130435 4.0\n", + "38 2023-02-08 C 94.0 Product1 408.0 South 408.000000 188.0\n", + "39 2023-02-09 A 62.0 Product1 155.0 West 155.000000 124.0\n", + "40 2023-02-10 B 15.0 Product1 578.0 East 578.000000 30.0\n", + "41 2023-02-11 C 97.0 Product1 256.0 East 256.000000 194.0\n", + "42 2023-02-12 A 93.0 Product3 164.0 West 164.000000 186.0\n", + "43 2023-02-13 A 43.0 Product3 949.0 East 949.000000 86.0\n", + "44 2023-02-14 A 96.0 Product3 830.0 East 830.000000 192.0\n", + "45 2023-02-15 B 99.0 Product2 599.0 West 599.000000 198.0\n", + "46 2023-02-16 B 6.0 Product1 938.0 South 938.000000 12.0\n", + "47 2023-02-17 B 69.0 Product3 143.0 West 143.000000 138.0\n", + "48 2023-02-18 C 65.0 Product3 182.0 North 182.000000 130.0\n", + "49 2023-02-19 C 11.0 Product3 708.0 North 708.000000 22.0" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegionNew_SalesValue_2x
02023-01-01A28.0Product1754.0East754.00000056.0
12023-01-02B39.0Product3110.0North110.00000078.0
22023-01-03C32.0Product2398.0East398.00000064.0
32023-01-04B8.0Product1522.0East522.00000016.0
42023-01-05B26.0Product3869.0North869.00000052.0
52023-01-06B54.0Product3192.0West192.000000108.0
62023-01-07A16.0Product1936.0East936.00000032.0
72023-01-08C89.0Product1488.0West488.000000178.0
82023-01-09C37.0Product3772.0West772.00000074.0
92023-01-10A22.0Product2834.0West834.00000044.0
102023-01-11B7.0Product1842.0North842.00000014.0
112023-01-12B60.0Product2NaNWest557.130435120.0
122023-01-13A70.0Product3628.0South628.000000140.0
132023-01-14A69.0Product1423.0East423.000000138.0
142023-01-15A47.0Product2893.0West893.00000094.0
152023-01-16CNaNProduct1895.0North895.000000NaN
162023-01-17C93.0Product2511.0South511.000000186.0
172023-01-18CNaNProduct1108.0West108.000000NaN
182023-01-19A31.0Product2578.0West578.00000062.0
192023-01-20A59.0Product1736.0East736.000000118.0
202023-01-21C82.0Product3606.0South606.000000164.0
212023-01-22C37.0Product2992.0South992.00000074.0
222023-01-23B62.0Product3942.0North942.000000124.0
232023-01-24C92.0Product2342.0West342.000000184.0
242023-01-25A24.0Product2458.0East458.00000048.0
252023-01-26C95.0Product1584.0West584.000000190.0
262023-01-27C71.0Product2619.0North619.000000142.0
272023-01-28C56.0Product2224.0North224.000000112.0
282023-01-29BNaNProduct3617.0North617.000000NaN
292023-01-30C51.0Product2737.0South737.000000102.0
302023-01-31B50.0Product3735.0West735.000000100.0
312023-02-01A17.0Product2189.0West189.00000034.0
322023-02-02B63.0Product3338.0South338.000000126.0
332023-02-03C27.0Product3NaNEast557.13043554.0
342023-02-04C70.0Product3669.0West669.000000140.0
352023-02-05B60.0Product2NaNWest557.130435120.0
362023-02-06C36.0Product3177.0East177.00000072.0
372023-02-07C2.0Product1NaNNorth557.1304354.0
382023-02-08C94.0Product1408.0South408.000000188.0
392023-02-09A62.0Product1155.0West155.000000124.0
402023-02-10B15.0Product1578.0East578.00000030.0
412023-02-11C97.0Product1256.0East256.000000194.0
422023-02-12A93.0Product3164.0West164.000000186.0
432023-02-13A43.0Product3949.0East949.00000086.0
442023-02-14A96.0Product3830.0East830.000000192.0
452023-02-15B99.0Product2599.0West599.000000198.0
462023-02-16B6.0Product1938.0South938.00000012.0
472023-02-17B69.0Product3143.0West143.000000138.0
482023-02-18C65.0Product3182.0North182.000000130.0
492023-02-19C11.0Product3708.0North708.00000022.0
\n", + "
" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 40 + }, + { + "cell_type": "code", + "source": [ + "df = df.sort_values(['Value_2x', 'Sales'], ascending=True)\n", + "df" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "id": "wARNDyLGfuWj", + "outputId": "8d07c616-f7c3-4d4e-ad76-7f5d40ddda14", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:25.531250Z", + "start_time": "2025-11-19T02:30:24.958428Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region New_Sales Value_2x\n", + "37 2023-02-07 C 2.0 Product1 NaN North 557.130435 4.0\n", + "46 2023-02-16 B 6.0 Product1 938.0 South 938.000000 12.0\n", + "10 2023-01-11 B 7.0 Product1 842.0 North 842.000000 14.0\n", + "3 2023-01-04 B 8.0 Product1 522.0 East 522.000000 16.0\n", + "49 2023-02-19 C 11.0 Product3 708.0 North 708.000000 22.0\n", + "40 2023-02-10 B 15.0 Product1 578.0 East 578.000000 30.0\n", + "6 2023-01-07 A 16.0 Product1 936.0 East 936.000000 32.0\n", + "31 2023-02-01 A 17.0 Product2 189.0 West 189.000000 34.0\n", + "9 2023-01-10 A 22.0 Product2 834.0 West 834.000000 44.0\n", + "24 2023-01-25 A 24.0 Product2 458.0 East 458.000000 48.0\n", + "4 2023-01-05 B 26.0 Product3 869.0 North 869.000000 52.0\n", + "33 2023-02-03 C 27.0 Product3 NaN East 557.130435 54.0\n", + "0 2023-01-01 A 28.0 Product1 754.0 East 754.000000 56.0\n", + "18 2023-01-19 A 31.0 Product2 578.0 West 578.000000 62.0\n", + "2 2023-01-03 C 32.0 Product2 398.0 East 398.000000 64.0\n", + "36 2023-02-06 C 36.0 Product3 177.0 East 177.000000 72.0\n", + "8 2023-01-09 C 37.0 Product3 772.0 West 772.000000 74.0\n", + "21 2023-01-22 C 37.0 Product2 992.0 South 992.000000 74.0\n", + "1 2023-01-02 B 39.0 Product3 110.0 North 110.000000 78.0\n", + "43 2023-02-13 A 43.0 Product3 949.0 East 949.000000 86.0\n", + "14 2023-01-15 A 47.0 Product2 893.0 West 893.000000 94.0\n", + "30 2023-01-31 B 50.0 Product3 735.0 West 735.000000 100.0\n", + "29 2023-01-30 C 51.0 Product2 737.0 South 737.000000 102.0\n", + "5 2023-01-06 B 54.0 Product3 192.0 West 192.000000 108.0\n", + "27 2023-01-28 C 56.0 Product2 224.0 North 224.000000 112.0\n", + "19 2023-01-20 A 59.0 Product1 736.0 East 736.000000 118.0\n", + "11 2023-01-12 B 60.0 Product2 NaN West 557.130435 120.0\n", + "35 2023-02-05 B 60.0 Product2 NaN West 557.130435 120.0\n", + "39 2023-02-09 A 62.0 Product1 155.0 West 155.000000 124.0\n", + "22 2023-01-23 B 62.0 Product3 942.0 North 942.000000 124.0\n", + "32 2023-02-02 B 63.0 Product3 338.0 South 338.000000 126.0\n", + "48 2023-02-18 C 65.0 Product3 182.0 North 182.000000 130.0\n", + "47 2023-02-17 B 69.0 Product3 143.0 West 143.000000 138.0\n", + "13 2023-01-14 A 69.0 Product1 423.0 East 423.000000 138.0\n", + "12 2023-01-13 A 70.0 Product3 628.0 South 628.000000 140.0\n", + "34 2023-02-04 C 70.0 Product3 669.0 West 669.000000 140.0\n", + "26 2023-01-27 C 71.0 Product2 619.0 North 619.000000 142.0\n", + "20 2023-01-21 C 82.0 Product3 606.0 South 606.000000 164.0\n", + "7 2023-01-08 C 89.0 Product1 488.0 West 488.000000 178.0\n", + "23 2023-01-24 C 92.0 Product2 342.0 West 342.000000 184.0\n", + "42 2023-02-12 A 93.0 Product3 164.0 West 164.000000 186.0\n", + "16 2023-01-17 C 93.0 Product2 511.0 South 511.000000 186.0\n", + "38 2023-02-08 C 94.0 Product1 408.0 South 408.000000 188.0\n", + "25 2023-01-26 C 95.0 Product1 584.0 West 584.000000 190.0\n", + "44 2023-02-14 A 96.0 Product3 830.0 East 830.000000 192.0\n", + "41 2023-02-11 C 97.0 Product1 256.0 East 256.000000 194.0\n", + "45 2023-02-15 B 99.0 Product2 599.0 West 599.000000 198.0\n", + "17 2023-01-18 C NaN Product1 108.0 West 108.000000 NaN\n", + "28 2023-01-29 B NaN Product3 617.0 North 617.000000 NaN\n", + "15 2023-01-16 C NaN Product1 895.0 North 895.000000 NaN" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegionNew_SalesValue_2x
372023-02-07C2.0Product1NaNNorth557.1304354.0
462023-02-16B6.0Product1938.0South938.00000012.0
102023-01-11B7.0Product1842.0North842.00000014.0
32023-01-04B8.0Product1522.0East522.00000016.0
492023-02-19C11.0Product3708.0North708.00000022.0
402023-02-10B15.0Product1578.0East578.00000030.0
62023-01-07A16.0Product1936.0East936.00000032.0
312023-02-01A17.0Product2189.0West189.00000034.0
92023-01-10A22.0Product2834.0West834.00000044.0
242023-01-25A24.0Product2458.0East458.00000048.0
42023-01-05B26.0Product3869.0North869.00000052.0
332023-02-03C27.0Product3NaNEast557.13043554.0
02023-01-01A28.0Product1754.0East754.00000056.0
182023-01-19A31.0Product2578.0West578.00000062.0
22023-01-03C32.0Product2398.0East398.00000064.0
362023-02-06C36.0Product3177.0East177.00000072.0
82023-01-09C37.0Product3772.0West772.00000074.0
212023-01-22C37.0Product2992.0South992.00000074.0
12023-01-02B39.0Product3110.0North110.00000078.0
432023-02-13A43.0Product3949.0East949.00000086.0
142023-01-15A47.0Product2893.0West893.00000094.0
302023-01-31B50.0Product3735.0West735.000000100.0
292023-01-30C51.0Product2737.0South737.000000102.0
52023-01-06B54.0Product3192.0West192.000000108.0
272023-01-28C56.0Product2224.0North224.000000112.0
192023-01-20A59.0Product1736.0East736.000000118.0
112023-01-12B60.0Product2NaNWest557.130435120.0
352023-02-05B60.0Product2NaNWest557.130435120.0
392023-02-09A62.0Product1155.0West155.000000124.0
222023-01-23B62.0Product3942.0North942.000000124.0
322023-02-02B63.0Product3338.0South338.000000126.0
482023-02-18C65.0Product3182.0North182.000000130.0
472023-02-17B69.0Product3143.0West143.000000138.0
132023-01-14A69.0Product1423.0East423.000000138.0
122023-01-13A70.0Product3628.0South628.000000140.0
342023-02-04C70.0Product3669.0West669.000000140.0
262023-01-27C71.0Product2619.0North619.000000142.0
202023-01-21C82.0Product3606.0South606.000000164.0
72023-01-08C89.0Product1488.0West488.000000178.0
232023-01-24C92.0Product2342.0West342.000000184.0
422023-02-12A93.0Product3164.0West164.000000186.0
162023-01-17C93.0Product2511.0South511.000000186.0
382023-02-08C94.0Product1408.0South408.000000188.0
252023-01-26C95.0Product1584.0West584.000000190.0
442023-02-14A96.0Product3830.0East830.000000192.0
412023-02-11C97.0Product1256.0East256.000000194.0
452023-02-15B99.0Product2599.0West599.000000198.0
172023-01-18CNaNProduct1108.0West108.000000NaN
282023-01-29BNaNProduct3617.0North617.000000NaN
152023-01-16CNaNProduct1895.0North895.000000NaN
\n", + "
" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 41 + }, + { + "cell_type": "code", + "source": [ + "df[ (df['Category']=='A') & (df['Region']=='East')]" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 269 + }, + "id": "ZQQLex3KgryO", + "outputId": "c5ffe814-7d84-4127-c4fc-c0b9e19a6820", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:25.904868Z", + "start_time": "2025-11-19T02:30:25.888512Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region New_Sales Value_2x\n", + "6 2023-01-07 A 16.0 Product1 936.0 East 936.0 32.0\n", + "24 2023-01-25 A 24.0 Product2 458.0 East 458.0 48.0\n", + "0 2023-01-01 A 28.0 Product1 754.0 East 754.0 56.0\n", + "43 2023-02-13 A 43.0 Product3 949.0 East 949.0 86.0\n", + "19 2023-01-20 A 59.0 Product1 736.0 East 736.0 118.0\n", + "13 2023-01-14 A 69.0 Product1 423.0 East 423.0 138.0\n", + "44 2023-02-14 A 96.0 Product3 830.0 East 830.0 192.0" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegionNew_SalesValue_2x
62023-01-07A16.0Product1936.0East936.032.0
242023-01-25A24.0Product2458.0East458.048.0
02023-01-01A28.0Product1754.0East754.056.0
432023-02-13A43.0Product3949.0East949.086.0
192023-01-20A59.0Product1736.0East736.0118.0
132023-01-14A69.0Product1423.0East423.0138.0
442023-02-14A96.0Product3830.0East830.0192.0
\n", + "
" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 42 + }, + { + "cell_type": "code", + "source": [ + "df[ ~(df['Category']=='A')]" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "id": "dN5dnj3VhLjh", + "outputId": "6cd8c018-61b9-4070-d7cb-563d0bd79699", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:26.021599Z", + "start_time": "2025-11-19T02:30:26.001653Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region New_Sales Value_2x\n", + "37 2023-02-07 C 2.0 Product1 NaN North 557.130435 4.0\n", + "46 2023-02-16 B 6.0 Product1 938.0 South 938.000000 12.0\n", + "10 2023-01-11 B 7.0 Product1 842.0 North 842.000000 14.0\n", + "3 2023-01-04 B 8.0 Product1 522.0 East 522.000000 16.0\n", + "49 2023-02-19 C 11.0 Product3 708.0 North 708.000000 22.0\n", + "40 2023-02-10 B 15.0 Product1 578.0 East 578.000000 30.0\n", + "4 2023-01-05 B 26.0 Product3 869.0 North 869.000000 52.0\n", + "33 2023-02-03 C 27.0 Product3 NaN East 557.130435 54.0\n", + "2 2023-01-03 C 32.0 Product2 398.0 East 398.000000 64.0\n", + "36 2023-02-06 C 36.0 Product3 177.0 East 177.000000 72.0\n", + "8 2023-01-09 C 37.0 Product3 772.0 West 772.000000 74.0\n", + "21 2023-01-22 C 37.0 Product2 992.0 South 992.000000 74.0\n", + "1 2023-01-02 B 39.0 Product3 110.0 North 110.000000 78.0\n", + "30 2023-01-31 B 50.0 Product3 735.0 West 735.000000 100.0\n", + "29 2023-01-30 C 51.0 Product2 737.0 South 737.000000 102.0\n", + "5 2023-01-06 B 54.0 Product3 192.0 West 192.000000 108.0\n", + "27 2023-01-28 C 56.0 Product2 224.0 North 224.000000 112.0\n", + "11 2023-01-12 B 60.0 Product2 NaN West 557.130435 120.0\n", + "35 2023-02-05 B 60.0 Product2 NaN West 557.130435 120.0\n", + "22 2023-01-23 B 62.0 Product3 942.0 North 942.000000 124.0\n", + "32 2023-02-02 B 63.0 Product3 338.0 South 338.000000 126.0\n", + "48 2023-02-18 C 65.0 Product3 182.0 North 182.000000 130.0\n", + "47 2023-02-17 B 69.0 Product3 143.0 West 143.000000 138.0\n", + "34 2023-02-04 C 70.0 Product3 669.0 West 669.000000 140.0\n", + "26 2023-01-27 C 71.0 Product2 619.0 North 619.000000 142.0\n", + "20 2023-01-21 C 82.0 Product3 606.0 South 606.000000 164.0\n", + "7 2023-01-08 C 89.0 Product1 488.0 West 488.000000 178.0\n", + "23 2023-01-24 C 92.0 Product2 342.0 West 342.000000 184.0\n", + "16 2023-01-17 C 93.0 Product2 511.0 South 511.000000 186.0\n", + "38 2023-02-08 C 94.0 Product1 408.0 South 408.000000 188.0\n", + "25 2023-01-26 C 95.0 Product1 584.0 West 584.000000 190.0\n", + "41 2023-02-11 C 97.0 Product1 256.0 East 256.000000 194.0\n", + "45 2023-02-15 B 99.0 Product2 599.0 West 599.000000 198.0\n", + "17 2023-01-18 C NaN Product1 108.0 West 108.000000 NaN\n", + "28 2023-01-29 B NaN Product3 617.0 North 617.000000 NaN\n", + "15 2023-01-16 C NaN Product1 895.0 North 895.000000 NaN" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegionNew_SalesValue_2x
372023-02-07C2.0Product1NaNNorth557.1304354.0
462023-02-16B6.0Product1938.0South938.00000012.0
102023-01-11B7.0Product1842.0North842.00000014.0
32023-01-04B8.0Product1522.0East522.00000016.0
492023-02-19C11.0Product3708.0North708.00000022.0
402023-02-10B15.0Product1578.0East578.00000030.0
42023-01-05B26.0Product3869.0North869.00000052.0
332023-02-03C27.0Product3NaNEast557.13043554.0
22023-01-03C32.0Product2398.0East398.00000064.0
362023-02-06C36.0Product3177.0East177.00000072.0
82023-01-09C37.0Product3772.0West772.00000074.0
212023-01-22C37.0Product2992.0South992.00000074.0
12023-01-02B39.0Product3110.0North110.00000078.0
302023-01-31B50.0Product3735.0West735.000000100.0
292023-01-30C51.0Product2737.0South737.000000102.0
52023-01-06B54.0Product3192.0West192.000000108.0
272023-01-28C56.0Product2224.0North224.000000112.0
112023-01-12B60.0Product2NaNWest557.130435120.0
352023-02-05B60.0Product2NaNWest557.130435120.0
222023-01-23B62.0Product3942.0North942.000000124.0
322023-02-02B63.0Product3338.0South338.000000126.0
482023-02-18C65.0Product3182.0North182.000000130.0
472023-02-17B69.0Product3143.0West143.000000138.0
342023-02-04C70.0Product3669.0West669.000000140.0
262023-01-27C71.0Product2619.0North619.000000142.0
202023-01-21C82.0Product3606.0South606.000000164.0
72023-01-08C89.0Product1488.0West488.000000178.0
232023-01-24C92.0Product2342.0West342.000000184.0
162023-01-17C93.0Product2511.0South511.000000186.0
382023-02-08C94.0Product1408.0South408.000000188.0
252023-01-26C95.0Product1584.0West584.000000190.0
412023-02-11C97.0Product1256.0East256.000000194.0
452023-02-15B99.0Product2599.0West599.000000198.0
172023-01-18CNaNProduct1108.0West108.000000NaN
282023-01-29BNaNProduct3617.0North617.000000NaN
152023-01-16CNaNProduct1895.0North895.000000NaN
\n", + "
" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 43 + }, + { + "cell_type": "code", + "source": [ + "arr = df[ df['Category']=='B']\n", + "print(arr)\n", + "print(type(arr))\n", + "arr = arr['Value'].unique()\n", + "print(arr)\n", + "print(type(arr))" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "QgRep-KhhjlT", + "outputId": "08c33634-aefb-4557-b0a6-cc0d4d9b49bf", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:26.257396Z", + "start_time": "2025-11-19T02:30:26.248766Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Date Category Value Product Sales Region New_Sales Value_2x\n", + "46 2023-02-16 B 6.0 Product1 938.0 South 938.000000 12.0\n", + "10 2023-01-11 B 7.0 Product1 842.0 North 842.000000 14.0\n", + "3 2023-01-04 B 8.0 Product1 522.0 East 522.000000 16.0\n", + "40 2023-02-10 B 15.0 Product1 578.0 East 578.000000 30.0\n", + "4 2023-01-05 B 26.0 Product3 869.0 North 869.000000 52.0\n", + "1 2023-01-02 B 39.0 Product3 110.0 North 110.000000 78.0\n", + "30 2023-01-31 B 50.0 Product3 735.0 West 735.000000 100.0\n", + "5 2023-01-06 B 54.0 Product3 192.0 West 192.000000 108.0\n", + "11 2023-01-12 B 60.0 Product2 NaN West 557.130435 120.0\n", + "35 2023-02-05 B 60.0 Product2 NaN West 557.130435 120.0\n", + "22 2023-01-23 B 62.0 Product3 942.0 North 942.000000 124.0\n", + "32 2023-02-02 B 63.0 Product3 338.0 South 338.000000 126.0\n", + "47 2023-02-17 B 69.0 Product3 143.0 West 143.000000 138.0\n", + "45 2023-02-15 B 99.0 Product2 599.0 West 599.000000 198.0\n", + "28 2023-01-29 B NaN Product3 617.0 North 617.000000 NaN\n", + "\n", + "[ 6. 7. 8. 15. 26. 39. 50. 54. 60. 62. 63. 69. 99. nan]\n", + "\n" + ] + } + ], + "execution_count": 44 + }, + { + "cell_type": "code", + "source": [ + "arr = df[ df['Category']=='B']\n", + "arr.drop_duplicates(subset=['Value'])\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 488 + }, + "id": "qUgdblBviXPk", + "outputId": "6e3c803f-ba5e-4e77-ac62-42710607e8d8", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:26.388057Z", + "start_time": "2025-11-19T02:30:26.371551Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region New_Sales Value_2x\n", + "46 2023-02-16 B 6.0 Product1 938.0 South 938.000000 12.0\n", + "10 2023-01-11 B 7.0 Product1 842.0 North 842.000000 14.0\n", + "3 2023-01-04 B 8.0 Product1 522.0 East 522.000000 16.0\n", + "40 2023-02-10 B 15.0 Product1 578.0 East 578.000000 30.0\n", + "4 2023-01-05 B 26.0 Product3 869.0 North 869.000000 52.0\n", + "1 2023-01-02 B 39.0 Product3 110.0 North 110.000000 78.0\n", + "30 2023-01-31 B 50.0 Product3 735.0 West 735.000000 100.0\n", + "5 2023-01-06 B 54.0 Product3 192.0 West 192.000000 108.0\n", + "11 2023-01-12 B 60.0 Product2 NaN West 557.130435 120.0\n", + "22 2023-01-23 B 62.0 Product3 942.0 North 942.000000 124.0\n", + "32 2023-02-02 B 63.0 Product3 338.0 South 338.000000 126.0\n", + "47 2023-02-17 B 69.0 Product3 143.0 West 143.000000 138.0\n", + "45 2023-02-15 B 99.0 Product2 599.0 West 599.000000 198.0\n", + "28 2023-01-29 B NaN Product3 617.0 North 617.000000 NaN" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegionNew_SalesValue_2x
462023-02-16B6.0Product1938.0South938.00000012.0
102023-01-11B7.0Product1842.0North842.00000014.0
32023-01-04B8.0Product1522.0East522.00000016.0
402023-02-10B15.0Product1578.0East578.00000030.0
42023-01-05B26.0Product3869.0North869.00000052.0
12023-01-02B39.0Product3110.0North110.00000078.0
302023-01-31B50.0Product3735.0West735.000000100.0
52023-01-06B54.0Product3192.0West192.000000108.0
112023-01-12B60.0Product2NaNWest557.130435120.0
222023-01-23B62.0Product3942.0North942.000000124.0
322023-02-02B63.0Product3338.0South338.000000126.0
472023-02-17B69.0Product3143.0West143.000000138.0
452023-02-15B99.0Product2599.0West599.000000198.0
282023-01-29BNaNProduct3617.0North617.000000NaN
\n", + "
" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 45 + }, + { + "cell_type": "markdown", + "source": [ + "# Problem Solving (LeetCode)" + ], + "metadata": { + "id": "qoNe_olqBZV9" + } + }, + { + "cell_type": "markdown", + "source": [ + "https://leetcode.com/problems/customers-who-never-order/description/?envType=study-plan-v2&envId=30-days-of-pandas&lang=pythondata" + ], + "metadata": { + "id": "eF-VNr4EBjcc" + } + }, + { + "cell_type": "code", + "source": [ + "import pandas as pd\n", + "\n", + "def find_customers(customers: pd.DataFrame, orders: pd.DataFrame) -> pd.DataFrame:\n", + " arr = customers[ ~customers['id'].isin(orders['customerId'])]\n", + " arr2 = arr[['name']].rename(columns={'name':'Customers'})\n", + " return arr2" + ], + "metadata": { + "id": "MQN7jEkhm86Z", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:29.764318Z", + "start_time": "2025-11-19T02:30:29.761326Z" + } + }, + "outputs": [], + "execution_count": 46 + }, + { + "cell_type": "markdown", + "source": [ + "https://leetcode.com/problems/article-views-i/?envType=study-plan-v2&envId=30-days-of-pandas&lang=pythondata\n" + ], + "metadata": { + "id": "9mmwtswGBkKE" + } + }, + { + "cell_type": "code", + "source": [ + "import pandas as pd\n", + "\n", + "def article_views(views: pd.DataFrame) -> pd.DataFrame:\n", + " arr = views[ views['author_id']==views['viewer_id'] ]\n", + "\n", + " arr2 = arr['author_id'].unique()\n", + " arr2 = sorted(arr2)\n", + "\n", + " return pd.DataFrame({'id':arr2})" + ], + "metadata": { + "id": "CdT5Xl6Mm9tz", + "ExecuteTime": { + "end_time": "2025-11-19T02:30:30.100875Z", + "start_time": "2025-11-19T02:30:30.097168Z" + } + }, + "outputs": [], + "execution_count": 47 + } + ] +} diff --git a/Python_For_ML/Week_3/Conceptual Session/data.csv b/Python_For_ML/Week_3/Conceptual Session/data.csv new file mode 100644 index 0000000..a670b6d --- /dev/null +++ b/Python_For_ML/Week_3/Conceptual Session/data.csv @@ -0,0 +1,51 @@ +Date,Category,Value,Product,Sales,Region +2023-01-01,A,28.0,Product1,754.0,East +2023-01-02,B,39.0,Product3,110.0,North +2023-01-03,C,32.0,Product2,398.0,East +2023-01-04,B,8.0,Product1,522.0,East +2023-01-05,B,26.0,Product3,869.0,North +2023-01-06,B,54.0,Product3,192.0,West +2023-01-07,A,16.0,Product1,936.0,East +2023-01-08,C,89.0,Product1,488.0,West +2023-01-09,C,37.0,Product3,772.0,West +2023-01-10,A,22.0,Product2,834.0,West +2023-01-11,B,7.0,Product1,842.0,North +2023-01-12,B,60.0,Product2,,West +2023-01-13,A,70.0,Product3,628.0,South +2023-01-14,A,69.0,Product1,423.0,East +2023-01-15,A,47.0,Product2,893.0,West +2023-01-16,C,,Product1,895.0,North +2023-01-17,C,93.0,Product2,511.0,South +2023-01-18,C,,Product1,108.0,West +2023-01-19,A,31.0,Product2,578.0,West +2023-01-20,A,59.0,Product1,736.0,East +2023-01-21,C,82.0,Product3,606.0,South +2023-01-22,C,37.0,Product2,992.0,South +2023-01-23,B,62.0,Product3,942.0,North +2023-01-24,C,92.0,Product2,342.0,West +2023-01-25,A,24.0,Product2,458.0,East +2023-01-26,C,95.0,Product1,584.0,West +2023-01-27,C,71.0,Product2,619.0,North +2023-01-28,C,56.0,Product2,224.0,North +2023-01-29,B,,Product3,617.0,North +2023-01-30,C,51.0,Product2,737.0,South +2023-01-31,B,50.0,Product3,735.0,West +2023-02-01,A,17.0,Product2,189.0,West +2023-02-02,B,63.0,Product3,338.0,South +2023-02-03,C,27.0,Product3,,East +2023-02-04,C,70.0,Product3,669.0,West +2023-02-05,B,60.0,Product2,,West +2023-02-06,C,36.0,Product3,177.0,East +2023-02-07,C,2.0,Product1,,North +2023-02-08,C,94.0,Product1,408.0,South +2023-02-09,A,62.0,Product1,155.0,West +2023-02-10,B,15.0,Product1,578.0,East +2023-02-11,C,97.0,Product1,256.0,East +2023-02-12,A,93.0,Product3,164.0,West +2023-02-13,A,43.0,Product3,949.0,East +2023-02-14,A,96.0,Product3,830.0,East +2023-02-15,B,99.0,Product2,599.0,West +2023-02-16,B,6.0,Product1,938.0,South +2023-02-17,B,69.0,Product3,143.0,West +2023-02-18,C,65.0,Product3,182.0,North +2023-02-19,C,11.0,Product3,708.0,North diff --git a/Python_For_ML/Week_3/Conceptual Session/s2.ipynb b/Python_For_ML/Week_3/Conceptual Session/s2.ipynb new file mode 100644 index 0000000..bf002ef --- /dev/null +++ b/Python_For_ML/Week_3/Conceptual Session/s2.ipynb @@ -0,0 +1,2566 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-19T02:27:16.496497Z", + "start_time": "2025-11-19T02:27:16.493967Z" + } + }, + "source": "import pandas as pd", + "outputs": [], + "execution_count": 85 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:16.514200Z", + "start_time": "2025-11-19T02:27:16.506472Z" + } + }, + "cell_type": "code", + "source": [ + "data = [10,20,30,40]\n", + "sr = pd.Series(data, index=['x','y','z','zz'])\n", + "print(sr)\n", + "print(sr.loc['x'])\n", + "print(sr.iloc[0])" + ], + "id": "c0c5314c261a3d22", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "x 10\n", + "y 20\n", + "z 30\n", + "zz 40\n", + "dtype: int64\n", + "10\n", + "10\n" + ] + } + ], + "execution_count": 86 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:16.534380Z", + "start_time": "2025-11-19T02:27:16.529429Z" + } + }, + "cell_type": "code", + "source": [ + "data = {'a': 10, 'b': 20, 'c': 30}\n", + "sr = pd.Series(data)\n", + "sr" + ], + "id": "b7b414a2641b3bd7", + "outputs": [ + { + "data": { + "text/plain": [ + "a 10\n", + "b 20\n", + "c 30\n", + "dtype: int64" + ] + }, + "execution_count": 87, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 87 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:16.579930Z", + "start_time": "2025-11-19T02:27:16.576904Z" + } + }, + "cell_type": "code", + "source": "print(sr['a'])", + "id": "b427e454f2436473", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n" + ] + } + ], + "execution_count": 88 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:16.645240Z", + "start_time": "2025-11-19T02:27:16.641443Z" + } + }, + "cell_type": "code", + "source": [ + "print(sr.loc[['a', 'c']])\n", + "print(sr.loc['a'])" + ], + "id": "2a1d40adebfa239f", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "a 10\n", + "c 30\n", + "dtype: int64\n", + "10\n" + ] + } + ], + "execution_count": 89 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:16.691461Z", + "start_time": "2025-11-19T02:27:16.686756Z" + } + }, + "cell_type": "code", + "source": [ + "print(sr.loc[['a', 'c']])\n", + "print(sr.loc['a'])\n", + "print()\n" + ], + "id": "c574d6ac4c3e93d9", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "a 10\n", + "c 30\n", + "dtype: int64\n", + "10\n", + "\n" + ] + } + ], + "execution_count": 90 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:16.729711Z", + "start_time": "2025-11-19T02:27:16.726903Z" + } + }, + "cell_type": "code", + "source": "print(sr.iloc[1])", + "id": "1f73a31711e84317", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "20\n" + ] + } + ], + "execution_count": 91 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:16.767865Z", + "start_time": "2025-11-19T02:27:16.763047Z" + } + }, + "cell_type": "code", + "source": [ + "print(sr['x':'z']) # loc = Last tao nibe\n", + "print(sr[0:2]) # iloc = Last er ager ta porjonto nibe" + ], + "id": "a1cf77343ea97a19", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Series([], dtype: int64)\n", + "a 10\n", + "b 20\n", + "dtype: int64\n" + ] + } + ], + "execution_count": 92 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:16.797959Z", + "start_time": "2025-11-19T02:27:16.793918Z" + } + }, + "cell_type": "code", + "source": [ + "print(sr.get('x'))\n", + "print(sr.get('a',50))" + ], + "id": "39457dd63ab18298", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "None\n", + "10\n" + ] + } + ], + "execution_count": 93 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:16.827263Z", + "start_time": "2025-11-19T02:27:16.820203Z" + } + }, + "cell_type": "code", + "source": [ + "## Dataframe\n", + "series1 = pd.Series([10,20,30,40], index=[2, 3,4,5])\n", + "series2 = pd.Series(['A','B','C','D'], index=[5, 4, 3, 2])\n", + "\n", + "df = pd.DataFrame({'Numbers': series1, 'Letter':series2})\n", + "df" + ], + "id": "30997c486236358e", + "outputs": [ + { + "data": { + "text/plain": [ + " Numbers Letter\n", + "2 10 D\n", + "3 20 C\n", + "4 30 B\n", + "5 40 A" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NumbersLetter
210D
320C
430B
540A
\n", + "
" + ] + }, + "execution_count": 94, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 94 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:16.875741Z", + "start_time": "2025-11-19T02:27:16.870552Z" + } + }, + "cell_type": "code", + "source": [ + "data1 = {\n", + " 'Name': ['Rakib','Tamim','Yasin'],\n", + " 'Age': [23,44,55],\n", + " 'City':['Chit','Dhk','Brishl']\n", + "}\n", + "df = pd.DataFrame(data1)\n", + "print(df)" + ], + "id": "91c2bb3e55af87dd", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Name Age City\n", + "0 Rakib 23 Chit\n", + "1 Tamim 44 Dhk\n", + "2 Yasin 55 Brishl\n" + ] + } + ], + "execution_count": 95 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:16.966026Z", + "start_time": "2025-11-19T02:27:16.958530Z" + } + }, + "cell_type": "code", + "source": [ + "data2 = [\n", + " {'Name': 'Rakib', 'Age': 25, 'City': \"Chittagong\"},\n", + " {'Name': 'Rakib2', 'Age': 25, 'City': \"Chittagong\"},\n", + " {'Name': 'Rakib3', 'Age': 25, 'City': \"Chittagong\"},\n", + " {'Name': 'Rakib3', 'Age': 25, 'City': \"Chittagong\"},\n", + "]\n", + "df2 = pd.DataFrame(data2)\n", + "df2" + ], + "id": "2e8ffafefe7055a2", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "0 Rakib 25 Chittagong\n", + "1 Rakib2 25 Chittagong\n", + "2 Rakib3 25 Chittagong\n", + "3 Rakib3 25 Chittagong" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
0Rakib25Chittagong
1Rakib225Chittagong
2Rakib325Chittagong
3Rakib325Chittagong
\n", + "
" + ] + }, + "execution_count": 96, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 96 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:28:47.751970Z", + "start_time": "2025-11-19T02:28:47.667747Z" + } + }, + "cell_type": "code", + "source": "print(df2.loc['a'])", + "id": "7a67df65be38e907", + "outputs": [ + { + "ename": "KeyError", + "evalue": "'a'", + "output_type": "error", + "traceback": [ + "\u001B[31m---------------------------------------------------------------------------\u001B[39m", + "\u001B[31mKeyError\u001B[39m Traceback (most recent call last)", + "\u001B[36mCell\u001B[39m\u001B[36m \u001B[39m\u001B[32mIn[102]\u001B[39m\u001B[32m, line 1\u001B[39m\n\u001B[32m----> \u001B[39m\u001B[32m1\u001B[39m \u001B[38;5;28mprint\u001B[39m(\u001B[43mdf2\u001B[49m\u001B[43m.\u001B[49m\u001B[43mloc\u001B[49m\u001B[43m[\u001B[49m\u001B[33;43m'\u001B[39;49m\u001B[33;43ma\u001B[39;49m\u001B[33;43m'\u001B[39;49m\u001B[43m]\u001B[49m)\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\indexing.py:1192\u001B[39m, in \u001B[36m_LocationIndexer.__getitem__\u001B[39m\u001B[34m(self, key)\u001B[39m\n\u001B[32m 1190\u001B[39m maybe_callable = com.apply_if_callable(key, \u001B[38;5;28mself\u001B[39m.obj)\n\u001B[32m 1191\u001B[39m maybe_callable = \u001B[38;5;28mself\u001B[39m._check_deprecated_callable_usage(key, maybe_callable)\n\u001B[32m-> \u001B[39m\u001B[32m1192\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43m_getitem_axis\u001B[49m\u001B[43m(\u001B[49m\u001B[43mmaybe_callable\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43maxis\u001B[49m\u001B[43m=\u001B[49m\u001B[43maxis\u001B[49m\u001B[43m)\u001B[49m\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\indexing.py:1432\u001B[39m, in \u001B[36m_LocIndexer._getitem_axis\u001B[39m\u001B[34m(self, key, axis)\u001B[39m\n\u001B[32m 1430\u001B[39m \u001B[38;5;66;03m# fall thru to straight lookup\u001B[39;00m\n\u001B[32m 1431\u001B[39m \u001B[38;5;28mself\u001B[39m._validate_key(key, axis)\n\u001B[32m-> \u001B[39m\u001B[32m1432\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43m_get_label\u001B[49m\u001B[43m(\u001B[49m\u001B[43mkey\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43maxis\u001B[49m\u001B[43m=\u001B[49m\u001B[43maxis\u001B[49m\u001B[43m)\u001B[49m\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\indexing.py:1382\u001B[39m, in \u001B[36m_LocIndexer._get_label\u001B[39m\u001B[34m(self, label, axis)\u001B[39m\n\u001B[32m 1380\u001B[39m \u001B[38;5;28;01mdef\u001B[39;00m\u001B[38;5;250m \u001B[39m\u001B[34m_get_label\u001B[39m(\u001B[38;5;28mself\u001B[39m, label, axis: AxisInt):\n\u001B[32m 1381\u001B[39m \u001B[38;5;66;03m# GH#5567 this will fail if the label is not present in the axis.\u001B[39;00m\n\u001B[32m-> \u001B[39m\u001B[32m1382\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43mobj\u001B[49m\u001B[43m.\u001B[49m\u001B[43mxs\u001B[49m\u001B[43m(\u001B[49m\u001B[43mlabel\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43maxis\u001B[49m\u001B[43m=\u001B[49m\u001B[43maxis\u001B[49m\u001B[43m)\u001B[49m\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\generic.py:4323\u001B[39m, in \u001B[36mNDFrame.xs\u001B[39m\u001B[34m(self, key, axis, level, drop_level)\u001B[39m\n\u001B[32m 4321\u001B[39m new_index = index[loc]\n\u001B[32m 4322\u001B[39m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[32m-> \u001B[39m\u001B[32m4323\u001B[39m loc = \u001B[43mindex\u001B[49m\u001B[43m.\u001B[49m\u001B[43mget_loc\u001B[49m\u001B[43m(\u001B[49m\u001B[43mkey\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 4325\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(loc, np.ndarray):\n\u001B[32m 4326\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m loc.dtype == np.bool_:\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\indexes\\range.py:417\u001B[39m, in \u001B[36mRangeIndex.get_loc\u001B[39m\u001B[34m(self, key)\u001B[39m\n\u001B[32m 415\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mKeyError\u001B[39;00m(key) \u001B[38;5;28;01mfrom\u001B[39;00m\u001B[38;5;250m \u001B[39m\u001B[34;01merr\u001B[39;00m\n\u001B[32m 416\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(key, Hashable):\n\u001B[32m--> \u001B[39m\u001B[32m417\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mKeyError\u001B[39;00m(key)\n\u001B[32m 418\u001B[39m \u001B[38;5;28mself\u001B[39m._check_indexing_error(key)\n\u001B[32m 419\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mKeyError\u001B[39;00m(key)\n", + "\u001B[31mKeyError\u001B[39m: 'a'" + ] + } + ], + "execution_count": 102 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.120331400Z", + "start_time": "2025-11-18T07:22:38.315494Z" + } + }, + "cell_type": "code", + "source": [ + "## Dataframa 3 List of dictionary\n", + "data3 = [\n", + " {'Name': 'Rakib', 'Age': 25, 'City': \"Chittagong\"},\n", + " {'Name': 'Rakib2', 'Age': 25, 'City': \"Chittagong\"},\n", + " {'Name': 'Rakib3', 'Age': 25, 'City': \"Chittagong\"},\n", + " {'Name': 'Rakib3', 'Age': 25, 'City': \"Chittagong\"},\n", + "]\n", + "df3 = pd.DataFrame(data3, index=['a','b','c','d'])\n", + "df3" + ], + "id": "9229adadc373cfa7", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "a Rakib 25 Chittagong\n", + "b Rakib2 25 Chittagong\n", + "c Rakib3 25 Chittagong\n", + "d Rakib3 25 Chittagong" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
aRakib25Chittagong
bRakib225Chittagong
cRakib325Chittagong
dRakib325Chittagong
\n", + "
" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 40 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.127467600Z", + "start_time": "2025-11-18T07:22:40.400317Z" + } + }, + "cell_type": "code", + "source": "print(df3.loc['a'])", + "id": "5f383e37196dc851", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Name Rakib\n", + "Age 25\n", + "City Chittagong\n", + "Name: a, dtype: object\n" + ] + } + ], + "execution_count": 41 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.128468500Z", + "start_time": "2025-11-18T12:17:47.168819Z" + } + }, + "cell_type": "code", + "source": "print(df3.loc['a':'c'])", + "id": "c8019c59400269c7", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Name Age City\n", + "a Rakib 25 Chittagong\n", + "b Rakib2 25 Chittagong\n", + "c Rakib3 25 Chittagong\n" + ] + } + ], + "execution_count": 57 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "print(df2.loc['a':'c'])", + "id": "fe33414c3d22e3d8" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "", + "id": "756e09106e093f75" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.134011100Z", + "start_time": "2025-11-18T12:19:06.297251Z" + } + }, + "cell_type": "code", + "source": [ + "## Add a Column\n", + "df3['Salary']=[1000,2500,5000,4500]\n", + "df3" + ], + "id": "254d676c401c3237", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City Salary\n", + "a Rakib 25 Chittagong 1000\n", + "b Rakib2 25 Chittagong 2500\n", + "c Rakib3 25 Chittagong 5000\n", + "d Rakib3 25 Chittagong 4500" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCitySalary
aRakib25Chittagong1000
bRakib225Chittagong2500
cRakib325Chittagong5000
dRakib325Chittagong4500
\n", + "
" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 60 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.134011100Z", + "start_time": "2025-11-18T12:20:30.078583Z" + } + }, + "cell_type": "code", + "source": "df3['Salary']\n", + "id": "7f51ac9be1255018", + "outputs": [ + { + "data": { + "text/plain": [ + "a 1000\n", + "b 2500\n", + "c 5000\n", + "d 4500\n", + "Name: Salary, dtype: int64" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 61 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.135040700Z", + "start_time": "2025-11-18T13:28:46.661228Z" + } + }, + "cell_type": "code", + "source": "df2", + "id": "dac644b5124ddfe8", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City Salary\n", + "0 Rakib 25 Chittagong 1000\n", + "1 Rakib2 25 Chittagong 2500\n", + "2 Rakib3 25 Chittagong 5000\n", + "3 Rakib3 25 Chittagong 4500" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCitySalary
0Rakib25Chittagong1000
1Rakib225Chittagong2500
2Rakib325Chittagong5000
3Rakib325Chittagong4500
\n", + "
" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 62 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.135040700Z", + "start_time": "2025-11-18T13:34:04.249467Z" + } + }, + "cell_type": "code", + "source": "df2.drop('Salary',axis=1)", + "id": "3324c8d17fc31a4c", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "0 Rakib 25 Chittagong\n", + "1 Rakib2 25 Chittagong\n", + "2 Rakib3 25 Chittagong\n", + "3 Rakib3 25 Chittagong" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
0Rakib25Chittagong
1Rakib225Chittagong
2Rakib325Chittagong
3Rakib325Chittagong
\n", + "
" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 63 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.136040600Z", + "start_time": "2025-11-18T13:34:37.827360Z" + } + }, + "cell_type": "code", + "source": "df2", + "id": "f9182deb00bee4cf", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City Salary\n", + "0 Rakib 25 Chittagong 1000\n", + "1 Rakib2 25 Chittagong 2500\n", + "2 Rakib3 25 Chittagong 5000\n", + "3 Rakib3 25 Chittagong 4500" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCitySalary
0Rakib25Chittagong1000
1Rakib225Chittagong2500
2Rakib325Chittagong5000
3Rakib325Chittagong4500
\n", + "
" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 64 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.136040600Z", + "start_time": "2025-11-18T13:39:40.003211Z" + } + }, + "cell_type": "code", + "source": "df3", + "id": "797196dabb3a14cc", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City Salary\n", + "a Rakib 25 Chittagong 1000\n", + "b Rakib2 25 Chittagong 2500\n", + "c Rakib3 25 Chittagong 5000\n", + "d Rakib3 25 Chittagong 4500" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCitySalary
aRakib25Chittagong1000
bRakib225Chittagong2500
cRakib325Chittagong5000
dRakib325Chittagong4500
\n", + "
" + ] + }, + "execution_count": 67, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 67 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.137010900Z", + "start_time": "2025-11-18T13:41:18.140834Z" + } + }, + "cell_type": "code", + "source": "df3.drop('a', axis=0)", + "id": "914ba6ab56a5f1d4", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "b Rakib2 25 Chittagong\n", + "c Rakib3 25 Chittagong\n", + "d Rakib3 25 Chittagong" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
bRakib225Chittagong
cRakib325Chittagong
dRakib325Chittagong
\n", + "
" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 71 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.137010900Z", + "start_time": "2025-11-18T13:41:30.717028Z" + } + }, + "cell_type": "code", + "source": "df3", + "id": "da983578907aa48d", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "a Rakib 25 Chittagong\n", + "b Rakib2 25 Chittagong\n", + "c Rakib3 25 Chittagong\n", + "d Rakib3 25 Chittagong" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
aRakib25Chittagong
bRakib225Chittagong
cRakib325Chittagong
dRakib325Chittagong
\n", + "
" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 72 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.138012600Z", + "start_time": "2025-11-18T13:43:25.801607Z" + } + }, + "cell_type": "code", + "source": "df3", + "id": "dde24f650185c9d9", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "a Rakib 25 Chittagong\n", + "b Rakib2 25 Chittagong\n", + "c Rakib3 25 Chittagong\n", + "d Rakib3 25 Chittagong" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
aRakib25Chittagong
bRakib225Chittagong
cRakib325Chittagong
dRakib325Chittagong
\n", + "
" + ] + }, + "execution_count": 73, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 73 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.138012600Z", + "start_time": "2025-11-18T13:43:52.038053Z" + } + }, + "cell_type": "code", + "source": "df2['Age'] = df2['Age']+10", + "id": "4355089f87d05b22", + "outputs": [], + "execution_count": 79 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.139014600Z", + "start_time": "2025-11-18T13:43:53.677954Z" + } + }, + "cell_type": "code", + "source": "df2", + "id": "5a843add7db430f3", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City Salary\n", + "0 Rakib 55 Chittagong 1000\n", + "1 Rakib2 55 Chittagong 2500\n", + "2 Rakib3 55 Chittagong 5000\n", + "3 Rakib3 55 Chittagong 4500" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCitySalary
0Rakib55Chittagong1000
1Rakib255Chittagong2500
2Rakib355Chittagong5000
3Rakib355Chittagong4500
\n", + "
" + ] + }, + "execution_count": 80, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 80 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.140012100Z", + "start_time": "2025-11-19T00:47:40.472410Z" + } + }, + "cell_type": "code", + "source": [ + "#54\n", + "df = pd.read_csv('data.csv')" + ], + "id": "c67936d8cf491129", + "outputs": [], + "execution_count": 14 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.140012100Z", + "start_time": "2025-11-19T00:47:50.666297Z" + } + }, + "cell_type": "code", + "source": "df", + "id": "9bd9bbc7e987c1e0", + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region\n", + "0 2023-01-01 A 28.0 Product1 754.0 East\n", + "1 2023-01-02 B 39.0 Product3 110.0 North\n", + "2 2023-01-03 C 32.0 Product2 398.0 East\n", + "3 2023-01-04 B 8.0 Product1 522.0 East\n", + "4 2023-01-05 B 26.0 Product3 869.0 North\n", + "5 2023-01-06 B 54.0 Product3 192.0 West\n", + "6 2023-01-07 A 16.0 Product1 936.0 East\n", + "7 2023-01-08 C 89.0 Product1 488.0 West\n", + "8 2023-01-09 C 37.0 Product3 772.0 West\n", + "9 2023-01-10 A 22.0 Product2 834.0 West\n", + "10 2023-01-11 B 7.0 Product1 842.0 North\n", + "11 2023-01-12 B 60.0 Product2 NaN West\n", + "12 2023-01-13 A 70.0 Product3 628.0 South\n", + "13 2023-01-14 A 69.0 Product1 423.0 East\n", + "14 2023-01-15 A 47.0 Product2 893.0 West\n", + "15 2023-01-16 C NaN Product1 895.0 North\n", + "16 2023-01-17 C 93.0 Product2 511.0 South\n", + "17 2023-01-18 C NaN Product1 108.0 West\n", + "18 2023-01-19 A 31.0 Product2 578.0 West\n", + "19 2023-01-20 A 59.0 Product1 736.0 East\n", + "20 2023-01-21 C 82.0 Product3 606.0 South\n", + "21 2023-01-22 C 37.0 Product2 992.0 South\n", + "22 2023-01-23 B 62.0 Product3 942.0 North\n", + "23 2023-01-24 C 92.0 Product2 342.0 West\n", + "24 2023-01-25 A 24.0 Product2 458.0 East\n", + "25 2023-01-26 C 95.0 Product1 584.0 West\n", + "26 2023-01-27 C 71.0 Product2 619.0 North\n", + "27 2023-01-28 C 56.0 Product2 224.0 North\n", + "28 2023-01-29 B NaN Product3 617.0 North\n", + "29 2023-01-30 C 51.0 Product2 737.0 South\n", + "30 2023-01-31 B 50.0 Product3 735.0 West\n", + "31 2023-02-01 A 17.0 Product2 189.0 West\n", + "32 2023-02-02 B 63.0 Product3 338.0 South\n", + "33 2023-02-03 C 27.0 Product3 NaN East\n", + "34 2023-02-04 C 70.0 Product3 669.0 West\n", + "35 2023-02-05 B 60.0 Product2 NaN West\n", + "36 2023-02-06 C 36.0 Product3 177.0 East\n", + "37 2023-02-07 C 2.0 Product1 NaN North\n", + "38 2023-02-08 C 94.0 Product1 408.0 South\n", + "39 2023-02-09 A 62.0 Product1 155.0 West\n", + "40 2023-02-10 B 15.0 Product1 578.0 East\n", + "41 2023-02-11 C 97.0 Product1 256.0 East\n", + "42 2023-02-12 A 93.0 Product3 164.0 West\n", + "43 2023-02-13 A 43.0 Product3 949.0 East\n", + "44 2023-02-14 A 96.0 Product3 830.0 East\n", + "45 2023-02-15 B 99.0 Product2 599.0 West\n", + "46 2023-02-16 B 6.0 Product1 938.0 South\n", + "47 2023-02-17 B 69.0 Product3 143.0 West\n", + "48 2023-02-18 C 65.0 Product3 182.0 North\n", + "49 2023-02-19 C 11.0 Product3 708.0 North" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegion
02023-01-01A28.0Product1754.0East
12023-01-02B39.0Product3110.0North
22023-01-03C32.0Product2398.0East
32023-01-04B8.0Product1522.0East
42023-01-05B26.0Product3869.0North
52023-01-06B54.0Product3192.0West
62023-01-07A16.0Product1936.0East
72023-01-08C89.0Product1488.0West
82023-01-09C37.0Product3772.0West
92023-01-10A22.0Product2834.0West
102023-01-11B7.0Product1842.0North
112023-01-12B60.0Product2NaNWest
122023-01-13A70.0Product3628.0South
132023-01-14A69.0Product1423.0East
142023-01-15A47.0Product2893.0West
152023-01-16CNaNProduct1895.0North
162023-01-17C93.0Product2511.0South
172023-01-18CNaNProduct1108.0West
182023-01-19A31.0Product2578.0West
192023-01-20A59.0Product1736.0East
202023-01-21C82.0Product3606.0South
212023-01-22C37.0Product2992.0South
222023-01-23B62.0Product3942.0North
232023-01-24C92.0Product2342.0West
242023-01-25A24.0Product2458.0East
252023-01-26C95.0Product1584.0West
262023-01-27C71.0Product2619.0North
272023-01-28C56.0Product2224.0North
282023-01-29BNaNProduct3617.0North
292023-01-30C51.0Product2737.0South
302023-01-31B50.0Product3735.0West
312023-02-01A17.0Product2189.0West
322023-02-02B63.0Product3338.0South
332023-02-03C27.0Product3NaNEast
342023-02-04C70.0Product3669.0West
352023-02-05B60.0Product2NaNWest
362023-02-06C36.0Product3177.0East
372023-02-07C2.0Product1NaNNorth
382023-02-08C94.0Product1408.0South
392023-02-09A62.0Product1155.0West
402023-02-10B15.0Product1578.0East
412023-02-11C97.0Product1256.0East
422023-02-12A93.0Product3164.0West
432023-02-13A43.0Product3949.0East
442023-02-14A96.0Product3830.0East
452023-02-15B99.0Product2599.0West
462023-02-16B6.0Product1938.0South
472023-02-17B69.0Product3143.0West
482023-02-18C65.0Product3182.0North
492023-02-19C11.0Product3708.0North
\n", + "
" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 15 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.141013700Z", + "start_time": "2025-11-19T00:48:19.780682Z" + } + }, + "cell_type": "code", + "source": "df.tail()", + "id": "2db8fc98518ad4cc", + "outputs": [ + { + "data": { + "text/plain": [ + " Date Category Value Product Sales Region\n", + "45 2023-02-15 B 99.0 Product2 599.0 West\n", + "46 2023-02-16 B 6.0 Product1 938.0 South\n", + "47 2023-02-17 B 69.0 Product3 143.0 West\n", + "48 2023-02-18 C 65.0 Product3 182.0 North\n", + "49 2023-02-19 C 11.0 Product3 708.0 North" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCategoryValueProductSalesRegion
452023-02-15B99.0Product2599.0West
462023-02-16B6.0Product1938.0South
472023-02-17B69.0Product3143.0West
482023-02-18C65.0Product3182.0North
492023-02-19C11.0Product3708.0North
\n", + "
" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 16 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.141523300Z", + "start_time": "2025-11-19T00:57:46.595724Z" + } + }, + "cell_type": "code", + "source": "df.describe()", + "id": "2c7eafec5dfd5b7e", + "outputs": [ + { + "data": { + "text/plain": [ + " Value Sales\n", + "count 47.000000 46.000000\n", + "mean 51.744681 557.130435\n", + "std 29.050532 274.598584\n", + "min 2.000000 108.000000\n", + "25% 27.500000 339.000000\n", + "50% 54.000000 591.500000\n", + "75% 70.000000 767.500000\n", + "max 99.000000 992.000000" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ValueSales
count47.00000046.000000
mean51.744681557.130435
std29.050532274.598584
min2.000000108.000000
25%27.500000339.000000
50%54.000000591.500000
75%70.000000767.500000
max99.000000992.000000
\n", + "
" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 17 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:27:17.142532200Z", + "start_time": "2025-11-19T00:58:08.336613Z" + } + }, + "cell_type": "code", + "source": "df.dtypes", + "id": "125cc5e40cbdbd93", + "outputs": [ + { + "data": { + "text/plain": [ + "Date object\n", + "Category object\n", + "Value float64\n", + "Product object\n", + "Sales float64\n", + "Region object\n", + "dtype: object" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 18 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:29:11.581616Z", + "start_time": "2025-11-19T02:29:11.576749Z" + } + }, + "cell_type": "code", + "source": "df.isnull().sum()", + "id": "ad0dcdfce25792ba", + "outputs": [ + { + "data": { + "text/plain": [ + "Name 0\n", + "Age 0\n", + "City 0\n", + "dtype: int64" + ] + }, + "execution_count": 104, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 104 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:29:14.695262Z", + "start_time": "2025-11-19T02:29:14.689586Z" + } + }, + "cell_type": "code", + "source": "df.fillna(0)", + "id": "3e60a4ce1ae21ca2", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "0 Rakib 23 Chit\n", + "1 Tamim 44 Dhk\n", + "2 Yasin 55 Brishl" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
0Rakib23Chit
1Tamim44Dhk
2Yasin55Brishl
\n", + "
" + ] + }, + "execution_count": 105, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 105 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:29:16.239435Z", + "start_time": "2025-11-19T02:29:16.168152Z" + } + }, + "cell_type": "code", + "source": [ + "df['Sales_NOT_NAN'] = df['Sales'].fillna(df['Sales'].mean())\n", + "df" + ], + "id": "c91eccced688e4d4", + "outputs": [ + { + "ename": "KeyError", + "evalue": "'Sales'", + "output_type": "error", + "traceback": [ + "\u001B[31m---------------------------------------------------------------------------\u001B[39m", + "\u001B[31mKeyError\u001B[39m Traceback (most recent call last)", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\indexes\\base.py:3812\u001B[39m, in \u001B[36mIndex.get_loc\u001B[39m\u001B[34m(self, key)\u001B[39m\n\u001B[32m 3811\u001B[39m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[32m-> \u001B[39m\u001B[32m3812\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43m_engine\u001B[49m\u001B[43m.\u001B[49m\u001B[43mget_loc\u001B[49m\u001B[43m(\u001B[49m\u001B[43mcasted_key\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 3813\u001B[39m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mKeyError\u001B[39;00m \u001B[38;5;28;01mas\u001B[39;00m err:\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/index.pyx:167\u001B[39m, in \u001B[36mpandas._libs.index.IndexEngine.get_loc\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/index.pyx:196\u001B[39m, in \u001B[36mpandas._libs.index.IndexEngine.get_loc\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/hashtable_class_helper.pxi:7088\u001B[39m, in \u001B[36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/hashtable_class_helper.pxi:7096\u001B[39m, in \u001B[36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[31mKeyError\u001B[39m: 'Sales'", + "\nThe above exception was the direct cause of the following exception:\n", + "\u001B[31mKeyError\u001B[39m Traceback (most recent call last)", + "\u001B[36mCell\u001B[39m\u001B[36m \u001B[39m\u001B[32mIn[106]\u001B[39m\u001B[32m, line 1\u001B[39m\n\u001B[32m----> \u001B[39m\u001B[32m1\u001B[39m df[\u001B[33m'\u001B[39m\u001B[33mSales_NOT_NAN\u001B[39m\u001B[33m'\u001B[39m] = \u001B[43mdf\u001B[49m\u001B[43m[\u001B[49m\u001B[33;43m'\u001B[39;49m\u001B[33;43mSales\u001B[39;49m\u001B[33;43m'\u001B[39;49m\u001B[43m]\u001B[49m.fillna(df[\u001B[33m'\u001B[39m\u001B[33mSales\u001B[39m\u001B[33m'\u001B[39m].mean())\n\u001B[32m 2\u001B[39m df\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\frame.py:4113\u001B[39m, in \u001B[36mDataFrame.__getitem__\u001B[39m\u001B[34m(self, key)\u001B[39m\n\u001B[32m 4111\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28mself\u001B[39m.columns.nlevels > \u001B[32m1\u001B[39m:\n\u001B[32m 4112\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28mself\u001B[39m._getitem_multilevel(key)\n\u001B[32m-> \u001B[39m\u001B[32m4113\u001B[39m indexer = \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43mcolumns\u001B[49m\u001B[43m.\u001B[49m\u001B[43mget_loc\u001B[49m\u001B[43m(\u001B[49m\u001B[43mkey\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 4114\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m is_integer(indexer):\n\u001B[32m 4115\u001B[39m indexer = [indexer]\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\indexes\\base.py:3819\u001B[39m, in \u001B[36mIndex.get_loc\u001B[39m\u001B[34m(self, key)\u001B[39m\n\u001B[32m 3814\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(casted_key, \u001B[38;5;28mslice\u001B[39m) \u001B[38;5;129;01mor\u001B[39;00m (\n\u001B[32m 3815\u001B[39m \u001B[38;5;28misinstance\u001B[39m(casted_key, abc.Iterable)\n\u001B[32m 3816\u001B[39m \u001B[38;5;129;01mand\u001B[39;00m \u001B[38;5;28many\u001B[39m(\u001B[38;5;28misinstance\u001B[39m(x, \u001B[38;5;28mslice\u001B[39m) \u001B[38;5;28;01mfor\u001B[39;00m x \u001B[38;5;129;01min\u001B[39;00m casted_key)\n\u001B[32m 3817\u001B[39m ):\n\u001B[32m 3818\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m InvalidIndexError(key)\n\u001B[32m-> \u001B[39m\u001B[32m3819\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mKeyError\u001B[39;00m(key) \u001B[38;5;28;01mfrom\u001B[39;00m\u001B[38;5;250m \u001B[39m\u001B[34;01merr\u001B[39;00m\n\u001B[32m 3820\u001B[39m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mTypeError\u001B[39;00m:\n\u001B[32m 3821\u001B[39m \u001B[38;5;66;03m# If we have a listlike key, _check_indexing_error will raise\u001B[39;00m\n\u001B[32m 3822\u001B[39m \u001B[38;5;66;03m# InvalidIndexError. Otherwise we fall through and re-raise\u001B[39;00m\n\u001B[32m 3823\u001B[39m \u001B[38;5;66;03m# the TypeError.\u001B[39;00m\n\u001B[32m 3824\u001B[39m \u001B[38;5;28mself\u001B[39m._check_indexing_error(key)\n", + "\u001B[31mKeyError\u001B[39m: 'Sales'" + ] + } + ], + "execution_count": 106 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:29:20.519354Z", + "start_time": "2025-11-19T02:29:20.513169Z" + } + }, + "cell_type": "code", + "source": [ + "df = df.rename(columns={'Sales_NOT_NAN':'New_Sales'})\n", + "df" + ], + "id": "6bdd8854e50bb599", + "outputs": [ + { + "data": { + "text/plain": [ + " Name Age City\n", + "0 Rakib 23 Chit\n", + "1 Tamim 44 Dhk\n", + "2 Yasin 55 Brishl" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameAgeCity
0Rakib23Chit
1Tamim44Dhk
2Yasin55Brishl
\n", + "
" + ] + }, + "execution_count": 107, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 107 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:29:23.756281Z", + "start_time": "2025-11-19T02:29:23.688819Z" + } + }, + "cell_type": "code", + "source": [ + "df['Value_2x']= df['Value'].apply(lambda x: x*2)\n", + "\n", + "df" + ], + "id": "49dc882eb7db511b", + "outputs": [ + { + "ename": "KeyError", + "evalue": "'Value'", + "output_type": "error", + "traceback": [ + "\u001B[31m---------------------------------------------------------------------------\u001B[39m", + "\u001B[31mKeyError\u001B[39m Traceback (most recent call last)", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\indexes\\base.py:3812\u001B[39m, in \u001B[36mIndex.get_loc\u001B[39m\u001B[34m(self, key)\u001B[39m\n\u001B[32m 3811\u001B[39m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[32m-> \u001B[39m\u001B[32m3812\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43m_engine\u001B[49m\u001B[43m.\u001B[49m\u001B[43mget_loc\u001B[49m\u001B[43m(\u001B[49m\u001B[43mcasted_key\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 3813\u001B[39m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mKeyError\u001B[39;00m \u001B[38;5;28;01mas\u001B[39;00m err:\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/index.pyx:167\u001B[39m, in \u001B[36mpandas._libs.index.IndexEngine.get_loc\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/index.pyx:196\u001B[39m, in \u001B[36mpandas._libs.index.IndexEngine.get_loc\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/hashtable_class_helper.pxi:7088\u001B[39m, in \u001B[36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/hashtable_class_helper.pxi:7096\u001B[39m, in \u001B[36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[31mKeyError\u001B[39m: 'Value'", + "\nThe above exception was the direct cause of the following exception:\n", + "\u001B[31mKeyError\u001B[39m Traceback (most recent call last)", + "\u001B[36mCell\u001B[39m\u001B[36m \u001B[39m\u001B[32mIn[108]\u001B[39m\u001B[32m, line 1\u001B[39m\n\u001B[32m----> \u001B[39m\u001B[32m1\u001B[39m df[\u001B[33m'\u001B[39m\u001B[33mValue_2x\u001B[39m\u001B[33m'\u001B[39m]= \u001B[43mdf\u001B[49m\u001B[43m[\u001B[49m\u001B[33;43m'\u001B[39;49m\u001B[33;43mValue\u001B[39;49m\u001B[33;43m'\u001B[39;49m\u001B[43m]\u001B[49m.apply(\u001B[38;5;28;01mlambda\u001B[39;00m x: x*\u001B[32m2\u001B[39m)\n\u001B[32m 3\u001B[39m df\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\frame.py:4113\u001B[39m, in \u001B[36mDataFrame.__getitem__\u001B[39m\u001B[34m(self, key)\u001B[39m\n\u001B[32m 4111\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28mself\u001B[39m.columns.nlevels > \u001B[32m1\u001B[39m:\n\u001B[32m 4112\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28mself\u001B[39m._getitem_multilevel(key)\n\u001B[32m-> \u001B[39m\u001B[32m4113\u001B[39m indexer = \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43mcolumns\u001B[49m\u001B[43m.\u001B[49m\u001B[43mget_loc\u001B[49m\u001B[43m(\u001B[49m\u001B[43mkey\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 4114\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m is_integer(indexer):\n\u001B[32m 4115\u001B[39m indexer = [indexer]\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\indexes\\base.py:3819\u001B[39m, in \u001B[36mIndex.get_loc\u001B[39m\u001B[34m(self, key)\u001B[39m\n\u001B[32m 3814\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(casted_key, \u001B[38;5;28mslice\u001B[39m) \u001B[38;5;129;01mor\u001B[39;00m (\n\u001B[32m 3815\u001B[39m \u001B[38;5;28misinstance\u001B[39m(casted_key, abc.Iterable)\n\u001B[32m 3816\u001B[39m \u001B[38;5;129;01mand\u001B[39;00m \u001B[38;5;28many\u001B[39m(\u001B[38;5;28misinstance\u001B[39m(x, \u001B[38;5;28mslice\u001B[39m) \u001B[38;5;28;01mfor\u001B[39;00m x \u001B[38;5;129;01min\u001B[39;00m casted_key)\n\u001B[32m 3817\u001B[39m ):\n\u001B[32m 3818\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m InvalidIndexError(key)\n\u001B[32m-> \u001B[39m\u001B[32m3819\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mKeyError\u001B[39;00m(key) \u001B[38;5;28;01mfrom\u001B[39;00m\u001B[38;5;250m \u001B[39m\u001B[34;01merr\u001B[39;00m\n\u001B[32m 3820\u001B[39m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mTypeError\u001B[39;00m:\n\u001B[32m 3821\u001B[39m \u001B[38;5;66;03m# If we have a listlike key, _check_indexing_error will raise\u001B[39;00m\n\u001B[32m 3822\u001B[39m \u001B[38;5;66;03m# InvalidIndexError. Otherwise we fall through and re-raise\u001B[39;00m\n\u001B[32m 3823\u001B[39m \u001B[38;5;66;03m# the TypeError.\u001B[39;00m\n\u001B[32m 3824\u001B[39m \u001B[38;5;28mself\u001B[39m._check_indexing_error(key)\n", + "\u001B[31mKeyError\u001B[39m: 'Value'" + ] + } + ], + "execution_count": 108 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:29:26.969233Z", + "start_time": "2025-11-19T02:29:26.951888Z" + } + }, + "cell_type": "code", + "source": [ + "df = df.sort_values(['Value_2x', 'Sales'], ascending=True)\n", + "df" + ], + "id": "344780f38ab51779", + "outputs": [ + { + "ename": "KeyError", + "evalue": "'Value_2x'", + "output_type": "error", + "traceback": [ + "\u001B[31m---------------------------------------------------------------------------\u001B[39m", + "\u001B[31mKeyError\u001B[39m Traceback (most recent call last)", + "\u001B[32m~\\AppData\\Local\\Temp\\ipykernel_6836\\2840705066.py\u001B[39m in \u001B[36m?\u001B[39m\u001B[34m()\u001B[39m\n\u001B[32m----> \u001B[39m\u001B[32m1\u001B[39m df = df.sort_values([\u001B[33m'Value_2x'\u001B[39m, \u001B[33m'Sales'\u001B[39m], ascending=\u001B[38;5;28;01mTrue\u001B[39;00m)\n\u001B[32m 2\u001B[39m df\n", + "\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\frame.py\u001B[39m in \u001B[36m?\u001B[39m\u001B[34m(self, by, axis, ascending, inplace, kind, na_position, ignore_index, key)\u001B[39m\n\u001B[32m 7190\u001B[39m f\"Length of ascending ({len(ascending)})\" \u001B[38;5;66;03m# type: ignore[arg-type]\u001B[39;00m\n\u001B[32m 7191\u001B[39m f\" != length of by ({len(by)})\"\n\u001B[32m 7192\u001B[39m )\n\u001B[32m 7193\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m len(by) > \u001B[32m1\u001B[39m:\n\u001B[32m-> \u001B[39m\u001B[32m7194\u001B[39m keys = [self._get_label_or_level_values(x, axis=axis) \u001B[38;5;28;01mfor\u001B[39;00m x \u001B[38;5;28;01min\u001B[39;00m by]\n\u001B[32m 7195\u001B[39m \n\u001B[32m 7196\u001B[39m \u001B[38;5;66;03m# need to rewrap columns in Series to apply key function\u001B[39;00m\n\u001B[32m 7197\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m key \u001B[38;5;28;01mis\u001B[39;00m \u001B[38;5;28;01mnot\u001B[39;00m \u001B[38;5;28;01mNone\u001B[39;00m:\n", + "\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\generic.py\u001B[39m in \u001B[36m?\u001B[39m\u001B[34m(self, key, axis)\u001B[39m\n\u001B[32m 1910\u001B[39m values = self.xs(key, axis=other_axes[\u001B[32m0\u001B[39m])._values\n\u001B[32m 1911\u001B[39m \u001B[38;5;28;01melif\u001B[39;00m self._is_level_reference(key, axis=axis):\n\u001B[32m 1912\u001B[39m values = self.axes[axis].get_level_values(key)._values\n\u001B[32m 1913\u001B[39m \u001B[38;5;28;01melse\u001B[39;00m:\n\u001B[32m-> \u001B[39m\u001B[32m1914\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m KeyError(key)\n\u001B[32m 1915\u001B[39m \n\u001B[32m 1916\u001B[39m \u001B[38;5;66;03m# Check for duplicates\u001B[39;00m\n\u001B[32m 1917\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m values.ndim > \u001B[32m1\u001B[39m:\n", + "\u001B[31mKeyError\u001B[39m: 'Value_2x'" + ] + } + ], + "execution_count": 109 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-19T02:29:29.171349Z", + "start_time": "2025-11-19T02:29:29.100320Z" + } + }, + "cell_type": "code", + "source": [ + "df[ (df['Category']=='A') & (df['Region']=='East')]\n", + "df" + ], + "id": "772ee1f392760976", + "outputs": [ + { + "ename": "KeyError", + "evalue": "'Category'", + "output_type": "error", + "traceback": [ + "\u001B[31m---------------------------------------------------------------------------\u001B[39m", + "\u001B[31mKeyError\u001B[39m Traceback (most recent call last)", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\indexes\\base.py:3812\u001B[39m, in \u001B[36mIndex.get_loc\u001B[39m\u001B[34m(self, key)\u001B[39m\n\u001B[32m 3811\u001B[39m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[32m-> \u001B[39m\u001B[32m3812\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43m_engine\u001B[49m\u001B[43m.\u001B[49m\u001B[43mget_loc\u001B[49m\u001B[43m(\u001B[49m\u001B[43mcasted_key\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 3813\u001B[39m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mKeyError\u001B[39;00m \u001B[38;5;28;01mas\u001B[39;00m err:\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/index.pyx:167\u001B[39m, in \u001B[36mpandas._libs.index.IndexEngine.get_loc\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/index.pyx:196\u001B[39m, in \u001B[36mpandas._libs.index.IndexEngine.get_loc\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/hashtable_class_helper.pxi:7088\u001B[39m, in \u001B[36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/hashtable_class_helper.pxi:7096\u001B[39m, in \u001B[36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[31mKeyError\u001B[39m: 'Category'", + "\nThe above exception was the direct cause of the following exception:\n", + "\u001B[31mKeyError\u001B[39m Traceback (most recent call last)", + "\u001B[36mCell\u001B[39m\u001B[36m \u001B[39m\u001B[32mIn[110]\u001B[39m\u001B[32m, line 1\u001B[39m\n\u001B[32m----> \u001B[39m\u001B[32m1\u001B[39m df[ (\u001B[43mdf\u001B[49m\u001B[43m[\u001B[49m\u001B[33;43m'\u001B[39;49m\u001B[33;43mCategory\u001B[39;49m\u001B[33;43m'\u001B[39;49m\u001B[43m]\u001B[49m==\u001B[33m'\u001B[39m\u001B[33mA\u001B[39m\u001B[33m'\u001B[39m) & (df[\u001B[33m'\u001B[39m\u001B[33mRegion\u001B[39m\u001B[33m'\u001B[39m]==\u001B[33m'\u001B[39m\u001B[33mEast\u001B[39m\u001B[33m'\u001B[39m)]\n\u001B[32m 2\u001B[39m df\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\frame.py:4113\u001B[39m, in \u001B[36mDataFrame.__getitem__\u001B[39m\u001B[34m(self, key)\u001B[39m\n\u001B[32m 4111\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28mself\u001B[39m.columns.nlevels > \u001B[32m1\u001B[39m:\n\u001B[32m 4112\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28mself\u001B[39m._getitem_multilevel(key)\n\u001B[32m-> \u001B[39m\u001B[32m4113\u001B[39m indexer = \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43mcolumns\u001B[49m\u001B[43m.\u001B[49m\u001B[43mget_loc\u001B[49m\u001B[43m(\u001B[49m\u001B[43mkey\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 4114\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m is_integer(indexer):\n\u001B[32m 4115\u001B[39m indexer = [indexer]\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\core\\indexes\\base.py:3819\u001B[39m, in \u001B[36mIndex.get_loc\u001B[39m\u001B[34m(self, key)\u001B[39m\n\u001B[32m 3814\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28misinstance\u001B[39m(casted_key, \u001B[38;5;28mslice\u001B[39m) \u001B[38;5;129;01mor\u001B[39;00m (\n\u001B[32m 3815\u001B[39m \u001B[38;5;28misinstance\u001B[39m(casted_key, abc.Iterable)\n\u001B[32m 3816\u001B[39m \u001B[38;5;129;01mand\u001B[39;00m \u001B[38;5;28many\u001B[39m(\u001B[38;5;28misinstance\u001B[39m(x, \u001B[38;5;28mslice\u001B[39m) \u001B[38;5;28;01mfor\u001B[39;00m x \u001B[38;5;129;01min\u001B[39;00m casted_key)\n\u001B[32m 3817\u001B[39m ):\n\u001B[32m 3818\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m InvalidIndexError(key)\n\u001B[32m-> \u001B[39m\u001B[32m3819\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mKeyError\u001B[39;00m(key) \u001B[38;5;28;01mfrom\u001B[39;00m\u001B[38;5;250m \u001B[39m\u001B[34;01merr\u001B[39;00m\n\u001B[32m 3820\u001B[39m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mTypeError\u001B[39;00m:\n\u001B[32m 3821\u001B[39m \u001B[38;5;66;03m# If we have a listlike key, _check_indexing_error will raise\u001B[39;00m\n\u001B[32m 3822\u001B[39m \u001B[38;5;66;03m# InvalidIndexError. Otherwise we fall through and re-raise\u001B[39;00m\n\u001B[32m 3823\u001B[39m \u001B[38;5;66;03m# the TypeError.\u001B[39;00m\n\u001B[32m 3824\u001B[39m \u001B[38;5;28mself\u001B[39m._check_indexing_error(key)\n", + "\u001B[31mKeyError\u001B[39m: 'Category'" + ] + } + ], + "execution_count": 110 + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From c9d7740a3cbd755b8675a883236e873e1577c14f Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Fri, 21 Nov 2025 22:23:38 +0600 Subject: [PATCH 77/78] Conceptual Session 01 --- Python_For_ML/Week_4/.idea/.gitignore | 8 + Python_For_ML/Week_4/.idea/Week_4.iml | 8 + .../inspectionProfiles/Project_Default.xml | 12 + .../inspectionProfiles/profiles_settings.xml | 6 + Python_For_ML/Week_4/.idea/misc.xml | 7 + Python_For_ML/Week_4/.idea/modules.xml | 8 + Python_For_ML/Week_4/.idea/vcs.xml | 6 + .../CS-1/Financial_Sample.xlsx | Bin 0 -> 82910 bytes ...ML (Week-04) Conceptual Session - 01.ipynb | 26115 + .../Week_4/Conceptual Session/CS-1/book.csv | 6 + .../CS-1/cricket_matches.csv | 817 + .../Week_4/Conceptual Session/CS-1/movie.tsv | 617 + .../Week_4/Conceptual Session/CS-1/test.csv | 6 + .../Week_4/Conceptual Session/CS-1/train.csv | 19159 + .../Week_4/Conceptual Session/CS-1/train.json | 666921 +++++++++++++++ .../Week_4/Conceptual Session/CS-1/zomato.csv | 9552 + .../Week_4/Conceptual Session/Posts.html | 713 + .../Week_4/Conceptual Session/cricket.json | 1 + .../Conceptual Session/post-comment.xlsx | Bin 0 -> 69213 bytes .../Conceptual Session/posts-excel.xlsx | Bin 0 -> 14323 bytes .../Week_4/Conceptual Session/posts.csv | 401 + .../Week_4/Conceptual Session/posts.xlsx | Bin 0 -> 14323 bytes .../Week_4/Conceptual Session/s1.ipynb | 4514 + 23 files changed, 728877 insertions(+) create mode 100644 Python_For_ML/Week_4/.idea/.gitignore create mode 100644 Python_For_ML/Week_4/.idea/Week_4.iml create mode 100644 Python_For_ML/Week_4/.idea/inspectionProfiles/Project_Default.xml create mode 100644 Python_For_ML/Week_4/.idea/inspectionProfiles/profiles_settings.xml create mode 100644 Python_For_ML/Week_4/.idea/misc.xml create mode 100644 Python_For_ML/Week_4/.idea/modules.xml create mode 100644 Python_For_ML/Week_4/.idea/vcs.xml create mode 100644 Python_For_ML/Week_4/Conceptual Session/CS-1/Financial_Sample.xlsx create mode 100644 Python_For_ML/Week_4/Conceptual Session/CS-1/Python For ML (Week-04) Conceptual Session - 01.ipynb create mode 100644 Python_For_ML/Week_4/Conceptual Session/CS-1/book.csv create mode 100644 Python_For_ML/Week_4/Conceptual Session/CS-1/cricket_matches.csv create mode 100644 Python_For_ML/Week_4/Conceptual Session/CS-1/movie.tsv create mode 100644 Python_For_ML/Week_4/Conceptual Session/CS-1/test.csv create mode 100644 Python_For_ML/Week_4/Conceptual Session/CS-1/train.csv create mode 100644 Python_For_ML/Week_4/Conceptual Session/CS-1/train.json create mode 100644 Python_For_ML/Week_4/Conceptual Session/CS-1/zomato.csv create mode 100644 Python_For_ML/Week_4/Conceptual Session/Posts.html create mode 100644 Python_For_ML/Week_4/Conceptual Session/cricket.json create mode 100644 Python_For_ML/Week_4/Conceptual Session/post-comment.xlsx create mode 100644 Python_For_ML/Week_4/Conceptual Session/posts-excel.xlsx create mode 100644 Python_For_ML/Week_4/Conceptual Session/posts.csv create mode 100644 Python_For_ML/Week_4/Conceptual Session/posts.xlsx create mode 100644 Python_For_ML/Week_4/Conceptual Session/s1.ipynb diff --git a/Python_For_ML/Week_4/.idea/.gitignore b/Python_For_ML/Week_4/.idea/.gitignore new file mode 100644 index 0000000..1c2fda5 --- /dev/null +++ b/Python_For_ML/Week_4/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Python_For_ML/Week_4/.idea/Week_4.iml b/Python_For_ML/Week_4/.idea/Week_4.iml new file mode 100644 index 0000000..a80cbb1 --- /dev/null +++ b/Python_For_ML/Week_4/.idea/Week_4.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_4/.idea/inspectionProfiles/Project_Default.xml b/Python_For_ML/Week_4/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..d9b8305 --- /dev/null +++ b/Python_For_ML/Week_4/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,12 @@ + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_4/.idea/inspectionProfiles/profiles_settings.xml b/Python_For_ML/Week_4/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/Python_For_ML/Week_4/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_4/.idea/misc.xml b/Python_For_ML/Week_4/.idea/misc.xml new file mode 100644 index 0000000..f8a22e9 --- /dev/null +++ b/Python_For_ML/Week_4/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_4/.idea/modules.xml b/Python_For_ML/Week_4/.idea/modules.xml new file mode 100644 index 0000000..6e93296 --- /dev/null +++ b/Python_For_ML/Week_4/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_4/.idea/vcs.xml b/Python_For_ML/Week_4/.idea/vcs.xml new file mode 100644 index 0000000..c8ade07 --- /dev/null +++ b/Python_For_ML/Week_4/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Python_For_ML/Week_4/Conceptual Session/CS-1/Financial_Sample.xlsx b/Python_For_ML/Week_4/Conceptual Session/CS-1/Financial_Sample.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..6d9ac2fd460874132c413a398c65e73db0e78162 GIT binary patch literal 82910 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 NaN NaN 1 \n", + "1 STEM 15 50-99 Pvt Ltd >4 \n", + "2 STEM 5 NaN NaN never \n", + "3 Business Degree <1 NaN Pvt Ltd never \n", + "4 STEM >20 50-99 Funded Startup 4 \n", + "... ... ... ... ... ... \n", + "19153 Humanities 14 NaN NaN 1 \n", + "19154 STEM 14 NaN NaN 4 \n", + "19155 STEM >20 50-99 Pvt Ltd 4 \n", + "19156 NaN <1 500-999 Pvt Ltd 2 \n", + "19157 NaN 2 NaN NaN 1 \n", + "\n", + " training_hours target \n", + "0 36 1.0 \n", + "1 47 0.0 \n", + "2 83 0.0 \n", + "3 52 1.0 \n", + "4 8 0.0 \n", + "... ... ... \n", + "19153 42 1.0 \n", + "19154 52 1.0 \n", + "19155 44 0.0 \n", + "19156 97 0.0 \n", + "19157 127 0.0 \n", + "\n", + "[19158 rows x 14 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
enrollee_idcitycity_development_indexgenderrelevent_experienceenrolled_universityeducation_levelmajor_disciplineexperiencecompany_sizecompany_typelast_new_jobtraining_hourstarget
08949city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM>20NaNNaN1361.0
129725city_400.776MaleNo relevent experienceno_enrollmentGraduateSTEM1550-99Pvt Ltd>4470.0
211561city_210.624NaNNo relevent experienceFull time courseGraduateSTEM5NaNNaNnever830.0
333241city_1150.789NaNNo relevent experienceNaNGraduateBusiness Degree<1NaNPvt Ltdnever521.0
4666city_1620.767MaleHas relevent experienceno_enrollmentMastersSTEM>2050-99Funded Startup480.0
.............................................
191537386city_1730.878MaleNo relevent experienceno_enrollmentGraduateHumanities14NaNNaN1421.0
1915431398city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM14NaNNaN4521.0
1915524576city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM>2050-99Pvt Ltd4440.0
191565756city_650.802MaleHas relevent experienceno_enrollmentHigh SchoolNaN<1500-999Pvt Ltd2970.0
1915723834city_670.855NaNNo relevent experienceno_enrollmentPrimary SchoolNaN2NaNNaN11270.0
\n", + "

19158 rows × 14 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + " \n", + " \n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "variable_name": "df", + "summary": "{\n \"name\": \"df\",\n \"rows\": 19158,\n \"fields\": [\n {\n \"column\": \"enrollee_id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 9616,\n \"min\": 1,\n \"max\": 33380,\n \"num_unique_values\": 19158,\n \"samples\": [\n 6992,\n 8637,\n 24729\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"city\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 123,\n \"samples\": [\n \"city_64\",\n \"city_70\",\n \"city_94\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"city_development_index\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.12336175686055084,\n \"min\": 0.4479999999999999,\n \"max\": 0.949,\n \"num_unique_values\": 93,\n \"samples\": [\n 0.775,\n 0.939,\n 0.738\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"gender\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"Male\",\n \"Female\",\n \"Other\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"relevent_experience\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 2,\n \"samples\": [\n \"No relevent experience\",\n \"Has relevent experience\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"enrolled_university\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"no_enrollment\",\n \"Full time course\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"education_level\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 5,\n \"samples\": [\n \"Masters\",\n \"Primary School\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"major_discipline\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 6,\n \"samples\": [\n \"STEM\",\n \"Business Degree\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"experience\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 22,\n \"samples\": [\n \">20\",\n \"14\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"company_size\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 8,\n \"samples\": [\n \"<10\",\n \"10/49\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"company_type\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 6,\n \"samples\": [\n \"Pvt Ltd\",\n \"Funded Startup\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"last_new_job\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 6,\n \"samples\": [\n \"1\",\n \">4\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"training_hours\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 60,\n \"min\": 1,\n \"max\": 336,\n \"num_unique_values\": 241,\n \"samples\": [\n 40,\n 18\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"target\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.4326466344563381,\n \"min\": 0.0,\n \"max\": 1.0,\n \"num_unique_values\": 2,\n \"samples\": [\n 0.0,\n 1.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 4 + } + ] + }, + { + "cell_type": "code", + "source": [ + "import requests\n", + "from io import StringIO\n", + "\n", + "res = requests.get('https://gist.githubusercontent.com/kevin336/acbb2271e66c10a5b73aacf82ca82784/raw/e38afe62e088394d61ed30884dd50a6826eee0a8/employees.csv')\n", + "\n", + "pd.read_csv(StringIO(res.text))\n", + "\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "id": "6kmMPUpxEJKd", + "executionInfo": { + "status": "ok", + "timestamp": 1762179441609, + "user_tz": -360, + "elapsed": 218, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "75366428-f748-460c-a484-6e5255ab4a4e" + }, + "execution_count": 8, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " EMPLOYEE_ID FIRST_NAME LAST_NAME EMAIL PHONE_NUMBER HIRE_DATE \\\n", + "0 198 Donald OConnell DOCONNEL 650.507.9833 21-JUN-07 \n", + "1 199 Douglas Grant DGRANT 650.507.9844 13-JAN-08 \n", + "2 200 Jennifer Whalen JWHALEN 515.123.4444 17-SEP-03 \n", + "3 201 Michael Hartstein MHARTSTE 515.123.5555 17-FEB-04 \n", + "4 202 Pat Fay PFAY 603.123.6666 17-AUG-05 \n", + "5 203 Susan Mavris SMAVRIS 515.123.7777 07-JUN-02 \n", + "6 204 Hermann Baer HBAER 515.123.8888 07-JUN-02 \n", + "7 205 Shelley Higgins SHIGGINS 515.123.8080 07-JUN-02 \n", + "8 206 William Gietz WGIETZ 515.123.8181 07-JUN-02 \n", + "9 100 Steven King SKING 515.123.4567 17-JUN-03 \n", + "10 101 Neena Kochhar NKOCHHAR 515.123.4568 21-SEP-05 \n", + "11 102 Lex De Haan LDEHAAN 515.123.4569 13-JAN-01 \n", + "12 103 Alexander Hunold AHUNOLD 590.423.4567 03-JAN-06 \n", + "13 104 Bruce Ernst BERNST 590.423.4568 21-MAY-07 \n", + "14 105 David Austin DAUSTIN 590.423.4569 25-JUN-05 \n", + "15 106 Valli Pataballa VPATABAL 590.423.4560 05-FEB-06 \n", + "16 107 Diana Lorentz DLORENTZ 590.423.5567 07-FEB-07 \n", + "17 108 Nancy Greenberg NGREENBE 515.124.4569 17-AUG-02 \n", + "18 109 Daniel Faviet DFAVIET 515.124.4169 16-AUG-02 \n", + "19 110 John Chen JCHEN 515.124.4269 28-SEP-05 \n", + "20 111 Ismael Sciarra ISCIARRA 515.124.4369 30-SEP-05 \n", + "21 112 Jose Manuel Urman JMURMAN 515.124.4469 07-MAR-06 \n", + "22 113 Luis Popp LPOPP 515.124.4567 07-DEC-07 \n", + "23 114 Den Raphaely DRAPHEAL 515.127.4561 07-DEC-02 \n", + "24 115 Alexander Khoo AKHOO 515.127.4562 18-MAY-03 \n", + "25 116 Shelli Baida SBAIDA 515.127.4563 24-DEC-05 \n", + "26 117 Sigal Tobias STOBIAS 515.127.4564 24-JUL-05 \n", + "27 118 Guy Himuro GHIMURO 515.127.4565 15-NOV-06 \n", + "28 119 Karen Colmenares KCOLMENA 515.127.4566 10-AUG-07 \n", + "29 120 Matthew Weiss MWEISS 650.123.1234 18-JUL-04 \n", + "30 121 Adam Fripp AFRIPP 650.123.2234 10-APR-05 \n", + "31 122 Payam Kaufling PKAUFLIN 650.123.3234 01-MAY-03 \n", + "32 123 Shanta Vollman SVOLLMAN 650.123.4234 10-OCT-05 \n", + "33 124 Kevin Mourgos KMOURGOS 650.123.5234 16-NOV-07 \n", + "34 125 Julia Nayer JNAYER 650.124.1214 16-JUL-05 \n", + "35 126 Irene Mikkilineni IMIKKILI 650.124.1224 28-SEP-06 \n", + "36 127 James Landry JLANDRY 650.124.1334 14-JAN-07 \n", + "37 128 Steven Markle SMARKLE 650.124.1434 08-MAR-08 \n", + "38 129 Laura Bissot LBISSOT 650.124.5234 20-AUG-05 \n", + "39 130 Mozhe Atkinson MATKINSO 650.124.6234 30-OCT-05 \n", + "40 131 James Marlow JAMRLOW 650.124.7234 16-FEB-05 \n", + "41 132 TJ Olson TJOLSON 650.124.8234 10-APR-07 \n", + "42 133 Jason Mallin JMALLIN 650.127.1934 14-JUN-04 \n", + "43 134 Michael Rogers MROGERS 650.127.1834 26-AUG-06 \n", + "44 135 Ki Gee KGEE 650.127.1734 12-DEC-07 \n", + "45 136 Hazel Philtanker HPHILTAN 650.127.1634 06-FEB-08 \n", + "46 137 Renske Ladwig RLADWIG 650.121.1234 14-JUL-03 \n", + "47 138 Stephen Stiles SSTILES 650.121.2034 26-OCT-05 \n", + "48 139 John Seo JSEO 650.121.2019 12-FEB-06 \n", + "49 140 Joshua Patel JPATEL 650.121.1834 06-APR-06 \n", + "\n", + " JOB_ID SALARY COMMISSION_PCT MANAGER_ID DEPARTMENT_ID \n", + "0 SH_CLERK 2600 - 124 50 \n", + "1 SH_CLERK 2600 - 124 50 \n", + "2 AD_ASST 4400 - 101 10 \n", + "3 MK_MAN 13000 - 100 20 \n", + "4 MK_REP 6000 - 201 20 \n", + "5 HR_REP 6500 - 101 40 \n", + "6 PR_REP 10000 - 101 70 \n", + "7 AC_MGR 12008 - 101 110 \n", + "8 AC_ACCOUNT 8300 - 205 110 \n", + "9 AD_PRES 24000 - - 90 \n", + "10 AD_VP 17000 - 100 90 \n", + "11 AD_VP 17000 - 100 90 \n", + "12 IT_PROG 9000 - 102 60 \n", + "13 IT_PROG 6000 - 103 60 \n", + "14 IT_PROG 4800 - 103 60 \n", + "15 IT_PROG 4800 - 103 60 \n", + "16 IT_PROG 4200 - 103 60 \n", + "17 FI_MGR 12008 - 101 100 \n", + "18 FI_ACCOUNT 9000 - 108 100 \n", + "19 FI_ACCOUNT 8200 - 108 100 \n", + "20 FI_ACCOUNT 7700 - 108 100 \n", + "21 FI_ACCOUNT 7800 - 108 100 \n", + "22 FI_ACCOUNT 6900 - 108 100 \n", + "23 PU_MAN 11000 - 100 30 \n", + "24 PU_CLERK 3100 - 114 30 \n", + "25 PU_CLERK 2900 - 114 30 \n", + "26 PU_CLERK 2800 - 114 30 \n", + "27 PU_CLERK 2600 - 114 30 \n", + "28 PU_CLERK 2500 - 114 30 \n", + "29 ST_MAN 8000 - 100 50 \n", + "30 ST_MAN 8200 - 100 50 \n", + "31 ST_MAN 7900 - 100 50 \n", + "32 ST_MAN 6500 - 100 50 \n", + "33 ST_MAN 5800 - 100 50 \n", + "34 ST_CLERK 3200 - 120 50 \n", + "35 ST_CLERK 2700 - 120 50 \n", + "36 ST_CLERK 2400 - 120 50 \n", + "37 ST_CLERK 2200 - 120 50 \n", + "38 ST_CLERK 3300 - 121 50 \n", + "39 ST_CLERK 2800 - 121 50 \n", + "40 ST_CLERK 2500 - 121 50 \n", + "41 ST_CLERK 2100 - 121 50 \n", + "42 ST_CLERK 3300 - 122 50 \n", + "43 ST_CLERK 2900 - 122 50 \n", + "44 ST_CLERK 2400 - 122 50 \n", + "45 ST_CLERK 2200 - 122 50 \n", + "46 ST_CLERK 3600 - 123 50 \n", + "47 ST_CLERK 3200 - 123 50 \n", + "48 ST_CLERK 2700 - 123 50 \n", + "49 ST_CLERK 2500 - 123 50 " + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
EMPLOYEE_IDFIRST_NAMELAST_NAMEEMAILPHONE_NUMBERHIRE_DATEJOB_IDSALARYCOMMISSION_PCTMANAGER_IDDEPARTMENT_ID
0198DonaldOConnellDOCONNEL650.507.983321-JUN-07SH_CLERK2600-12450
1199DouglasGrantDGRANT650.507.984413-JAN-08SH_CLERK2600-12450
2200JenniferWhalenJWHALEN515.123.444417-SEP-03AD_ASST4400-10110
3201MichaelHartsteinMHARTSTE515.123.555517-FEB-04MK_MAN13000-10020
4202PatFayPFAY603.123.666617-AUG-05MK_REP6000-20120
5203SusanMavrisSMAVRIS515.123.777707-JUN-02HR_REP6500-10140
6204HermannBaerHBAER515.123.888807-JUN-02PR_REP10000-10170
7205ShelleyHigginsSHIGGINS515.123.808007-JUN-02AC_MGR12008-101110
8206WilliamGietzWGIETZ515.123.818107-JUN-02AC_ACCOUNT8300-205110
9100StevenKingSKING515.123.456717-JUN-03AD_PRES24000--90
10101NeenaKochharNKOCHHAR515.123.456821-SEP-05AD_VP17000-10090
11102LexDe HaanLDEHAAN515.123.456913-JAN-01AD_VP17000-10090
12103AlexanderHunoldAHUNOLD590.423.456703-JAN-06IT_PROG9000-10260
13104BruceErnstBERNST590.423.456821-MAY-07IT_PROG6000-10360
14105DavidAustinDAUSTIN590.423.456925-JUN-05IT_PROG4800-10360
15106ValliPataballaVPATABAL590.423.456005-FEB-06IT_PROG4800-10360
16107DianaLorentzDLORENTZ590.423.556707-FEB-07IT_PROG4200-10360
17108NancyGreenbergNGREENBE515.124.456917-AUG-02FI_MGR12008-101100
18109DanielFavietDFAVIET515.124.416916-AUG-02FI_ACCOUNT9000-108100
19110JohnChenJCHEN515.124.426928-SEP-05FI_ACCOUNT8200-108100
20111IsmaelSciarraISCIARRA515.124.436930-SEP-05FI_ACCOUNT7700-108100
21112Jose ManuelUrmanJMURMAN515.124.446907-MAR-06FI_ACCOUNT7800-108100
22113LuisPoppLPOPP515.124.456707-DEC-07FI_ACCOUNT6900-108100
23114DenRaphaelyDRAPHEAL515.127.456107-DEC-02PU_MAN11000-10030
24115AlexanderKhooAKHOO515.127.456218-MAY-03PU_CLERK3100-11430
25116ShelliBaidaSBAIDA515.127.456324-DEC-05PU_CLERK2900-11430
26117SigalTobiasSTOBIAS515.127.456424-JUL-05PU_CLERK2800-11430
27118GuyHimuroGHIMURO515.127.456515-NOV-06PU_CLERK2600-11430
28119KarenColmenaresKCOLMENA515.127.456610-AUG-07PU_CLERK2500-11430
29120MatthewWeissMWEISS650.123.123418-JUL-04ST_MAN8000-10050
30121AdamFrippAFRIPP650.123.223410-APR-05ST_MAN8200-10050
31122PayamKauflingPKAUFLIN650.123.323401-MAY-03ST_MAN7900-10050
32123ShantaVollmanSVOLLMAN650.123.423410-OCT-05ST_MAN6500-10050
33124KevinMourgosKMOURGOS650.123.523416-NOV-07ST_MAN5800-10050
34125JuliaNayerJNAYER650.124.121416-JUL-05ST_CLERK3200-12050
35126IreneMikkilineniIMIKKILI650.124.122428-SEP-06ST_CLERK2700-12050
36127JamesLandryJLANDRY650.124.133414-JAN-07ST_CLERK2400-12050
37128StevenMarkleSMARKLE650.124.143408-MAR-08ST_CLERK2200-12050
38129LauraBissotLBISSOT650.124.523420-AUG-05ST_CLERK3300-12150
39130MozheAtkinsonMATKINSO650.124.623430-OCT-05ST_CLERK2800-12150
40131JamesMarlowJAMRLOW650.124.723416-FEB-05ST_CLERK2500-12150
41132TJOlsonTJOLSON650.124.823410-APR-07ST_CLERK2100-12150
42133JasonMallinJMALLIN650.127.193414-JUN-04ST_CLERK3300-12250
43134MichaelRogersMROGERS650.127.183426-AUG-06ST_CLERK2900-12250
44135KiGeeKGEE650.127.173412-DEC-07ST_CLERK2400-12250
45136HazelPhiltankerHPHILTAN650.127.163406-FEB-08ST_CLERK2200-12250
46137RenskeLadwigRLADWIG650.121.123414-JUL-03ST_CLERK3600-12350
47138StephenStilesSSTILES650.121.203426-OCT-05ST_CLERK3200-12350
48139JohnSeoJSEO650.121.201912-FEB-06ST_CLERK2700-12350
49140JoshuaPatelJPATEL650.121.183406-APR-06ST_CLERK2500-12350
\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 50,\n \"fields\": [\n {\n \"column\": \"EMPLOYEE_ID\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 33,\n \"min\": 100,\n \"max\": 206,\n \"num_unique_values\": 50,\n \"samples\": [\n 104,\n 130,\n 121\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"FIRST_NAME\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 45,\n \"samples\": [\n \"Jason\",\n \"Sigal\",\n \"Guy\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"LAST_NAME\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 50,\n \"samples\": [\n \"Ernst\",\n \"Atkinson\",\n \"Fripp\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"EMAIL\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 50,\n \"samples\": [\n \"BERNST\",\n \"MATKINSO\",\n \"AFRIPP\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"PHONE_NUMBER\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 50,\n \"samples\": [\n \"590.423.4568\",\n \"650.124.6234\",\n \"650.123.2234\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"HIRE_DATE\",\n \"properties\": {\n \"dtype\": \"object\",\n \"num_unique_values\": 47,\n \"samples\": [\n \"10-APR-05\",\n \"14-JUN-04\",\n \"18-JUL-04\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"JOB_ID\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 17,\n \"samples\": [\n \"SH_CLERK\",\n \"AD_ASST\",\n \"PR_REP\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"SALARY\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 4586,\n \"min\": 2100,\n \"max\": 24000,\n \"num_unique_values\": 32,\n \"samples\": [\n 3300,\n 7800,\n 5800\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"COMMISSION_PCT\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 1,\n \"samples\": [\n \" - \"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"MANAGER_ID\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 14,\n \"samples\": [\n \"114\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"DEPARTMENT_ID\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 25,\n \"min\": 10,\n \"max\": 110,\n \"num_unique_values\": 10,\n \"samples\": [\n 100\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 8 + } + ] + }, + { + "cell_type": "code", + "source": [ + "pd.read_csv('movie.tsv', sep=\"\\t\")" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 423 + }, + "id": "zWWAQ4oqFw7H", + "executionInfo": { + "status": "ok", + "timestamp": 1762179698907, + "user_tz": -360, + "elapsed": 293, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "e43a51f9-66e1-4e23-ad12-d969cd0d5078" + }, + "execution_count": 10, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " m0 10 things i hate about you 1999 6.90 62847 \\\n", + "0 m1 1492: conquest of paradise 1992 6.2 10421.0 \n", + "1 m2 15 minutes 2001 6.1 25854.0 \n", + "2 m3 2001: a space odyssey 1968 8.4 163227.0 \n", + "3 m4 48 hrs. 1982 6.9 22289.0 \n", + "4 m5 the fifth element 1997 7.5 133756.0 \n", + ".. ... ... ... ... ... \n", + "611 m612 watchmen 2009 7.8 135229.0 \n", + "612 m613 xxx 2002 5.6 53505.0 \n", + "613 m614 x-men 2000 7.4 122149.0 \n", + "614 m615 young frankenstein 1974 8.0 57618.0 \n", + "615 m616 zulu dawn 1979 6.4 1911.0 \n", + "\n", + " ['comedy' 'romance'] \n", + "0 ['adventure' 'biography' 'drama' 'history'] \n", + "1 ['action' 'crime' 'drama' 'thriller'] \n", + "2 ['adventure' 'mystery' 'sci-fi'] \n", + "3 ['action' 'comedy' 'crime' 'drama' 'thriller'] \n", + "4 ['action' 'adventure' 'romance' 'sci-fi' 'thri... \n", + ".. ... \n", + "611 ['action' 'crime' 'fantasy' 'mystery' 'sci-fi'... \n", + "612 ['action' 'adventure' 'crime'] \n", + "613 ['action' 'sci-fi'] \n", + "614 ['comedy' 'sci-fi'] \n", + "615 ['action' 'adventure' 'drama' 'history' 'war'] \n", + "\n", + "[616 rows x 6 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
m010 things i hate about you19996.9062847['comedy' 'romance']
0m11492: conquest of paradise19926.210421.0['adventure' 'biography' 'drama' 'history']
1m215 minutes20016.125854.0['action' 'crime' 'drama' 'thriller']
2m32001: a space odyssey19688.4163227.0['adventure' 'mystery' 'sci-fi']
3m448 hrs.19826.922289.0['action' 'comedy' 'crime' 'drama' 'thriller']
4m5the fifth element19977.5133756.0['action' 'adventure' 'romance' 'sci-fi' 'thri...
.....................
611m612watchmen20097.8135229.0['action' 'crime' 'fantasy' 'mystery' 'sci-fi'...
612m613xxx20025.653505.0['action' 'adventure' 'crime']
613m614x-men20007.4122149.0['action' 'sci-fi']
614m615young frankenstein19748.057618.0['comedy' 'sci-fi']
615m616zulu dawn19796.41911.0['action' 'adventure' 'drama' 'history' 'war']
\n", + "

616 rows × 6 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 616,\n \"fields\": [\n {\n \"column\": \"m0\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 616,\n \"samples\": [\n \"m79\",\n \"m209\",\n \"m571\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"10 things i hate about you\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 615,\n \"samples\": [\n \"as good as it gets\",\n \"the getaway\",\n \"the matrix\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"1999\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 88,\n \"samples\": [\n \"2002/I\",\n \"1992\",\n \"1990\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"6.90\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 1.2164515619993284,\n \"min\": 2.5,\n \"max\": 9.3,\n \"num_unique_values\": 62,\n \"samples\": [\n 3.8,\n 4.6,\n 6.2\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"62847\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 61946.54616775846,\n \"min\": 9.0,\n \"max\": 419312.0,\n \"num_unique_values\": 612,\n \"samples\": [\n 144.0,\n 6662.0,\n 3947.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"['comedy' 'romance']\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 289,\n \"samples\": [\n \"['drama' 'romance' 'sci-fi']\",\n \"['comedy' 'family']\",\n \"['animation' 'adventure' 'comedy' 'family' 'fantasy']\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 10 + } + ] + }, + { + "cell_type": "code", + "source": [ + "pd.read_csv('train.csv', index_col=\"enrollee_id\")" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 561 + }, + "id": "O8e3LeMZGJMT", + "executionInfo": { + "status": "ok", + "timestamp": 1762179764374, + "user_tz": -360, + "elapsed": 177, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "6686c26d-5c36-40f0-8e6a-782bf87aa3fe" + }, + "execution_count": 12, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " city city_development_index gender relevent_experience \\\n", + "enrollee_id \n", + "8949 city_103 0.920 Male Has relevent experience \n", + "29725 city_40 0.776 Male No relevent experience \n", + "11561 city_21 0.624 NaN No relevent experience \n", + "33241 city_115 0.789 NaN No relevent experience \n", + "666 city_162 0.767 Male Has relevent experience \n", + "... ... ... ... ... \n", + "7386 city_173 0.878 Male No relevent experience \n", + "31398 city_103 0.920 Male Has relevent experience \n", + "24576 city_103 0.920 Male Has relevent experience \n", + "5756 city_65 0.802 Male Has relevent experience \n", + "23834 city_67 0.855 NaN No relevent experience \n", + "\n", + " enrolled_university education_level major_discipline experience \\\n", + "enrollee_id \n", + "8949 no_enrollment Graduate STEM >20 \n", + "29725 no_enrollment Graduate STEM 15 \n", + "11561 Full time course Graduate STEM 5 \n", + "33241 NaN Graduate Business Degree <1 \n", + "666 no_enrollment Masters STEM >20 \n", + "... ... ... ... ... \n", + "7386 no_enrollment Graduate Humanities 14 \n", + "31398 no_enrollment Graduate STEM 14 \n", + "24576 no_enrollment Graduate STEM >20 \n", + "5756 no_enrollment High School NaN <1 \n", + "23834 no_enrollment Primary School NaN 2 \n", + "\n", + " company_size company_type last_new_job training_hours target \n", + "enrollee_id \n", + "8949 NaN NaN 1 36 1.0 \n", + "29725 50-99 Pvt Ltd >4 47 0.0 \n", + "11561 NaN NaN never 83 0.0 \n", + "33241 NaN Pvt Ltd never 52 1.0 \n", + "666 50-99 Funded Startup 4 8 0.0 \n", + "... ... ... ... ... ... \n", + "7386 NaN NaN 1 42 1.0 \n", + "31398 NaN NaN 4 52 1.0 \n", + "24576 50-99 Pvt Ltd 4 44 0.0 \n", + "5756 500-999 Pvt Ltd 2 97 0.0 \n", + "23834 NaN NaN 1 127 0.0 \n", + "\n", + "[19158 rows x 13 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
citycity_development_indexgenderrelevent_experienceenrolled_universityeducation_levelmajor_disciplineexperiencecompany_sizecompany_typelast_new_jobtraining_hourstarget
enrollee_id
8949city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM>20NaNNaN1361.0
29725city_400.776MaleNo relevent experienceno_enrollmentGraduateSTEM1550-99Pvt Ltd>4470.0
11561city_210.624NaNNo relevent experienceFull time courseGraduateSTEM5NaNNaNnever830.0
33241city_1150.789NaNNo relevent experienceNaNGraduateBusiness Degree<1NaNPvt Ltdnever521.0
666city_1620.767MaleHas relevent experienceno_enrollmentMastersSTEM>2050-99Funded Startup480.0
..........................................
7386city_1730.878MaleNo relevent experienceno_enrollmentGraduateHumanities14NaNNaN1421.0
31398city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM14NaNNaN4521.0
24576city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM>2050-99Pvt Ltd4440.0
5756city_650.802MaleHas relevent experienceno_enrollmentHigh SchoolNaN<1500-999Pvt Ltd2970.0
23834city_670.855NaNNo relevent experienceno_enrollmentPrimary SchoolNaN2NaNNaN11270.0
\n", + "

19158 rows × 13 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 19158,\n \"fields\": [\n {\n \"column\": \"enrollee_id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 9616,\n \"min\": 1,\n \"max\": 33380,\n \"num_unique_values\": 19158,\n \"samples\": [\n 6992,\n 8637,\n 24729\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"city\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 123,\n \"samples\": [\n \"city_64\",\n \"city_70\",\n \"city_94\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"city_development_index\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.12336175686055084,\n \"min\": 0.4479999999999999,\n \"max\": 0.949,\n \"num_unique_values\": 93,\n \"samples\": [\n 0.775,\n 0.939,\n 0.738\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"gender\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"Male\",\n \"Female\",\n \"Other\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"relevent_experience\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 2,\n \"samples\": [\n \"No relevent experience\",\n \"Has relevent experience\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"enrolled_university\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"no_enrollment\",\n \"Full time course\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"education_level\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 5,\n \"samples\": [\n \"Masters\",\n \"Primary School\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"major_discipline\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 6,\n \"samples\": [\n \"STEM\",\n \"Business Degree\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"experience\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 22,\n \"samples\": [\n \">20\",\n \"14\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"company_size\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 8,\n \"samples\": [\n \"<10\",\n \"10/49\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"company_type\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 6,\n \"samples\": [\n \"Pvt Ltd\",\n \"Funded Startup\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"last_new_job\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 6,\n \"samples\": [\n \"1\",\n \">4\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"training_hours\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 60,\n \"min\": 1,\n \"max\": 336,\n \"num_unique_values\": 241,\n \"samples\": [\n 40,\n 18\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"target\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.4326466344563381,\n \"min\": 0.0,\n \"max\": 1.0,\n \"num_unique_values\": 2,\n \"samples\": [\n 0.0,\n 1.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 12 + } + ] + }, + { + "cell_type": "code", + "source": [ + "pd.read_csv('test.csv', header=1)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 212 + }, + "id": "Nenn1d1RGcRs", + "executionInfo": { + "status": "ok", + "timestamp": 1762179936050, + "user_tz": -360, + "elapsed": 87, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "cb2b3465-b395-4f9f-ebfe-5379adb9c936" + }, + "execution_count": 14, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " 0 enrollee_id city city_development_index gender \\\n", + "0 1 29725 city_40 0.776 Male \n", + "1 2 11561 city_21 0.624 NaN \n", + "2 3 33241 city_115 0.789 NaN \n", + "3 4 666 city_162 0.767 Male \n", + "\n", + " relevent_experience enrolled_university education_level \\\n", + "0 No relevent experience no_enrollment Graduate \n", + "1 No relevent experience Full time course Graduate \n", + "2 No relevent experience NaN Graduate \n", + "3 Has relevent experience no_enrollment Masters \n", + "\n", + " major_discipline experience company_size company_type last_new_job \\\n", + "0 STEM 15 50-99 Pvt Ltd >4 \n", + "1 STEM 5 NaN NaN never \n", + "2 Business Degree <1 NaN Pvt Ltd never \n", + "3 STEM >20 50-99 Funded Startup 4 \n", + "\n", + " training_hours target \n", + "0 47 0 \n", + "1 83 0 \n", + "2 52 1 \n", + "3 8 0 " + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0enrollee_idcitycity_development_indexgenderrelevent_experienceenrolled_universityeducation_levelmajor_disciplineexperiencecompany_sizecompany_typelast_new_jobtraining_hourstarget
0129725city_400.776MaleNo relevent experienceno_enrollmentGraduateSTEM1550-99Pvt Ltd>4470
1211561city_210.624NaNNo relevent experienceFull time courseGraduateSTEM5NaNNaNnever830
2333241city_1150.789NaNNo relevent experienceNaNGraduateBusiness Degree<1NaNPvt Ltdnever521
34666city_1620.767MaleHas relevent experienceno_enrollmentMastersSTEM>2050-99Funded Startup480
\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 4,\n \"fields\": [\n {\n \"column\": \"0\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 1,\n \"min\": 1,\n \"max\": 4,\n \"num_unique_values\": 4,\n \"samples\": [\n 2,\n 4,\n 1\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"enrollee_id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 15374,\n \"min\": 666,\n \"max\": 33241,\n \"num_unique_values\": 4,\n \"samples\": [\n 11561,\n 666,\n 29725\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"city\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 4,\n \"samples\": [\n \"city_21\",\n \"city_162\",\n \"city_40\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"city_development_index\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.07719671841039187,\n \"min\": 0.624,\n \"max\": 0.789,\n \"num_unique_values\": 4,\n \"samples\": [\n 0.624,\n 0.767,\n 0.776\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"gender\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 1,\n \"samples\": [\n \"Male\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"relevent_experience\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 2,\n \"samples\": [\n \"Has relevent experience\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"enrolled_university\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 2,\n \"samples\": [\n \"Full time course\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"education_level\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 2,\n \"samples\": [\n \"Masters\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"major_discipline\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 2,\n \"samples\": [\n \"Business Degree\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"experience\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 4,\n \"samples\": [\n \"5\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"company_size\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 1,\n \"samples\": [\n \"50-99\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"company_type\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 2,\n \"samples\": [\n \"Funded Startup\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"last_new_job\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 3,\n \"samples\": [\n \">4\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"training_hours\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 30,\n \"min\": 8,\n \"max\": 83,\n \"num_unique_values\": 4,\n \"samples\": [\n 83\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"target\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0,\n \"min\": 0,\n \"max\": 1,\n \"num_unique_values\": 2,\n \"samples\": [\n 1\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 14 + } + ] + }, + { + "cell_type": "code", + "source": "pd.read_csv('train.csv', usecols=['enrollee_id', 'city', 'enrolled_university'])", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 423 + }, + "id": "_sptXejVHDZN", + "executionInfo": { + "status": "ok", + "timestamp": 1762180012484, + "user_tz": -360, + "elapsed": 78, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "0a350c5d-b457-4d64-9111-b51deb20e30a" + }, + "execution_count": 16, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " enrollee_id city enrolled_university\n", + "0 8949 city_103 no_enrollment\n", + "1 29725 city_40 no_enrollment\n", + "2 11561 city_21 Full time course\n", + "3 33241 city_115 NaN\n", + "4 666 city_162 no_enrollment\n", + "... ... ... ...\n", + "19153 7386 city_173 no_enrollment\n", + "19154 31398 city_103 no_enrollment\n", + "19155 24576 city_103 no_enrollment\n", + "19156 5756 city_65 no_enrollment\n", + "19157 23834 city_67 no_enrollment\n", + "\n", + "[19158 rows x 3 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
enrollee_idcityenrolled_university
08949city_103no_enrollment
129725city_40no_enrollment
211561city_21Full time course
333241city_115NaN
4666city_162no_enrollment
............
191537386city_173no_enrollment
1915431398city_103no_enrollment
1915524576city_103no_enrollment
191565756city_65no_enrollment
1915723834city_67no_enrollment
\n", + "

19158 rows × 3 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 19158,\n \"fields\": [\n {\n \"column\": \"enrollee_id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 9616,\n \"min\": 1,\n \"max\": 33380,\n \"num_unique_values\": 19158,\n \"samples\": [\n 6992,\n 8637,\n 24729\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"city\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 123,\n \"samples\": [\n \"city_64\",\n \"city_70\",\n \"city_94\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"enrolled_university\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"no_enrollment\",\n \"Full time course\",\n \"Part time course\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 16 + } + ] + }, + { + "cell_type": "code", + "source": "pd.read_csv('train.csv', skiprows=[1, 3])", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 547 + }, + "id": "gNAo2SY3HV0L", + "executionInfo": { + "status": "ok", + "timestamp": 1762180107172, + "user_tz": -360, + "elapsed": 213, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "aca7139d-8650-41b2-fab9-5f2f0d2c0a9d" + }, + "execution_count": 20, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " enrollee_id city city_development_index gender \\\n", + "0 29725 city_40 0.776 Male \n", + "1 33241 city_115 0.789 NaN \n", + "2 666 city_162 0.767 Male \n", + "3 21651 city_176 0.764 NaN \n", + "4 28806 city_160 0.920 Male \n", + "... ... ... ... ... \n", + "19151 7386 city_173 0.878 Male \n", + "19152 31398 city_103 0.920 Male \n", + "19153 24576 city_103 0.920 Male \n", + "19154 5756 city_65 0.802 Male \n", + "19155 23834 city_67 0.855 NaN \n", + "\n", + " relevent_experience enrolled_university education_level \\\n", + "0 No relevent experience no_enrollment Graduate \n", + "1 No relevent experience NaN Graduate \n", + "2 Has relevent experience no_enrollment Masters \n", + "3 Has relevent experience Part time course Graduate \n", + "4 Has relevent experience no_enrollment High School \n", + "... ... ... ... \n", + "19151 No relevent experience no_enrollment Graduate \n", + "19152 Has relevent experience no_enrollment Graduate \n", + "19153 Has relevent experience no_enrollment Graduate \n", + "19154 Has relevent experience no_enrollment High School \n", + "19155 No relevent experience no_enrollment Primary School \n", + "\n", + " major_discipline experience company_size company_type last_new_job \\\n", + "0 STEM 15 50-99 Pvt Ltd >4 \n", + "1 Business Degree <1 NaN Pvt Ltd never \n", + "2 STEM >20 50-99 Funded Startup 4 \n", + "3 STEM 11 NaN NaN 1 \n", + "4 NaN 5 50-99 Funded Startup 1 \n", + "... ... ... ... ... ... \n", + "19151 Humanities 14 NaN NaN 1 \n", + "19152 STEM 14 NaN NaN 4 \n", + "19153 STEM >20 50-99 Pvt Ltd 4 \n", + "19154 NaN <1 500-999 Pvt Ltd 2 \n", + "19155 NaN 2 NaN NaN 1 \n", + "\n", + " training_hours target \n", + "0 47 0.0 \n", + "1 52 1.0 \n", + "2 8 0.0 \n", + "3 24 1.0 \n", + "4 24 0.0 \n", + "... ... ... \n", + "19151 42 1.0 \n", + "19152 52 1.0 \n", + "19153 44 0.0 \n", + "19154 97 0.0 \n", + "19155 127 0.0 \n", + "\n", + "[19156 rows x 14 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
enrollee_idcitycity_development_indexgenderrelevent_experienceenrolled_universityeducation_levelmajor_disciplineexperiencecompany_sizecompany_typelast_new_jobtraining_hourstarget
029725city_400.776MaleNo relevent experienceno_enrollmentGraduateSTEM1550-99Pvt Ltd>4470.0
133241city_1150.789NaNNo relevent experienceNaNGraduateBusiness Degree<1NaNPvt Ltdnever521.0
2666city_1620.767MaleHas relevent experienceno_enrollmentMastersSTEM>2050-99Funded Startup480.0
321651city_1760.764NaNHas relevent experiencePart time courseGraduateSTEM11NaNNaN1241.0
428806city_1600.920MaleHas relevent experienceno_enrollmentHigh SchoolNaN550-99Funded Startup1240.0
.............................................
191517386city_1730.878MaleNo relevent experienceno_enrollmentGraduateHumanities14NaNNaN1421.0
1915231398city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM14NaNNaN4521.0
1915324576city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM>2050-99Pvt Ltd4440.0
191545756city_650.802MaleHas relevent experienceno_enrollmentHigh SchoolNaN<1500-999Pvt Ltd2970.0
1915523834city_670.855NaNNo relevent experienceno_enrollmentPrimary SchoolNaN2NaNNaN11270.0
\n", + "

19156 rows × 14 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 19156,\n \"fields\": [\n {\n \"column\": \"enrollee_id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 9616,\n \"min\": 1,\n \"max\": 33380,\n \"num_unique_values\": 19156,\n \"samples\": [\n 9666,\n 888,\n 32652\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"city\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 123,\n \"samples\": [\n \"city_64\",\n \"city_70\",\n \"city_94\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"city_development_index\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.12335755961062837,\n \"min\": 0.4479999999999999,\n \"max\": 0.949,\n \"num_unique_values\": 93,\n \"samples\": [\n 0.775,\n 0.939,\n 0.738\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"gender\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"Male\",\n \"Female\",\n \"Other\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"relevent_experience\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 2,\n \"samples\": [\n \"Has relevent experience\",\n \"No relevent experience\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"enrolled_university\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"no_enrollment\",\n \"Part time course\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"education_level\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 5,\n \"samples\": [\n \"Masters\",\n \"Primary School\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"major_discipline\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 6,\n \"samples\": [\n \"STEM\",\n \"Business Degree\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"experience\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 22,\n \"samples\": [\n \"15\",\n \"14\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"company_size\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 8,\n \"samples\": [\n \"<10\",\n \"10/49\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"company_type\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 6,\n \"samples\": [\n \"Pvt Ltd\",\n \"Funded Startup\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"last_new_job\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 6,\n \"samples\": [\n \">4\",\n \"never\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"training_hours\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 60,\n \"min\": 1,\n \"max\": 336,\n \"num_unique_values\": 241,\n \"samples\": [\n 82,\n 123\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"target\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.4326314725085694,\n \"min\": 0.0,\n \"max\": 1.0,\n \"num_unique_values\": 2,\n \"samples\": [\n 1.0,\n 0.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 20 + } + ] + }, + { + "cell_type": "code", + "source": [ + "pd.read_csv('train.csv', nrows=100)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 530 + }, + "id": "dGUsrRwuHu7t", + "executionInfo": { + "status": "ok", + "timestamp": 1762180176485, + "user_tz": -360, + "elapsed": 98, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "9c063253-9bfc-4cc0-ee34-1faeb0aaa185" + }, + "execution_count": 22, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " enrollee_id city city_development_index gender \\\n", + "0 8949 city_103 0.920 Male \n", + "1 29725 city_40 0.776 Male \n", + "2 11561 city_21 0.624 NaN \n", + "3 33241 city_115 0.789 NaN \n", + "4 666 city_162 0.767 Male \n", + ".. ... ... ... ... \n", + "95 12081 city_65 0.802 Male \n", + "96 7364 city_160 0.920 NaN \n", + "97 11184 city_74 0.579 NaN \n", + "98 7016 city_65 0.802 Male \n", + "99 8695 city_11 0.550 Male \n", + "\n", + " relevent_experience enrolled_university education_level \\\n", + "0 Has relevent experience no_enrollment Graduate \n", + "1 No relevent experience no_enrollment Graduate \n", + "2 No relevent experience Full time course Graduate \n", + "3 No relevent experience NaN Graduate \n", + "4 Has relevent experience no_enrollment Masters \n", + ".. ... ... ... \n", + "95 Has relevent experience Full time course Graduate \n", + "96 No relevent experience Full time course High School \n", + "97 No relevent experience Full time course Graduate \n", + "98 Has relevent experience no_enrollment Graduate \n", + "99 Has relevent experience no_enrollment Graduate \n", + "\n", + " major_discipline experience company_size company_type last_new_job \\\n", + "0 STEM >20 NaN NaN 1 \n", + "1 STEM 15 50-99 Pvt Ltd >4 \n", + "2 STEM 5 NaN NaN never \n", + "3 Business Degree <1 NaN Pvt Ltd never \n", + "4 STEM >20 50-99 Funded Startup 4 \n", + ".. ... ... ... ... ... \n", + "95 STEM 9 50-99 Pvt Ltd 1 \n", + "96 NaN 2 100-500 Pvt Ltd 1 \n", + "97 STEM 2 100-500 Pvt Ltd 1 \n", + "98 STEM 6 50-99 Pvt Ltd 2 \n", + "99 STEM 6 10/49 Pvt Ltd 2 \n", + "\n", + " training_hours target \n", + "0 36 1.0 \n", + "1 47 0.0 \n", + "2 83 0.0 \n", + "3 52 1.0 \n", + "4 8 0.0 \n", + ".. ... ... \n", + "95 33 0.0 \n", + "96 142 0.0 \n", + "97 34 0.0 \n", + "98 14 1.0 \n", + "99 27 1.0 \n", + "\n", + "[100 rows x 14 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
enrollee_idcitycity_development_indexgenderrelevent_experienceenrolled_universityeducation_levelmajor_disciplineexperiencecompany_sizecompany_typelast_new_jobtraining_hourstarget
08949city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM>20NaNNaN1361.0
129725city_400.776MaleNo relevent experienceno_enrollmentGraduateSTEM1550-99Pvt Ltd>4470.0
211561city_210.624NaNNo relevent experienceFull time courseGraduateSTEM5NaNNaNnever830.0
333241city_1150.789NaNNo relevent experienceNaNGraduateBusiness Degree<1NaNPvt Ltdnever521.0
4666city_1620.767MaleHas relevent experienceno_enrollmentMastersSTEM>2050-99Funded Startup480.0
.............................................
9512081city_650.802MaleHas relevent experienceFull time courseGraduateSTEM950-99Pvt Ltd1330.0
967364city_1600.920NaNNo relevent experienceFull time courseHigh SchoolNaN2100-500Pvt Ltd11420.0
9711184city_740.579NaNNo relevent experienceFull time courseGraduateSTEM2100-500Pvt Ltd1340.0
987016city_650.802MaleHas relevent experienceno_enrollmentGraduateSTEM650-99Pvt Ltd2141.0
998695city_110.550MaleHas relevent experienceno_enrollmentGraduateSTEM610/49Pvt Ltd2271.0
\n", + "

100 rows × 14 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 100,\n \"fields\": [\n {\n \"column\": \"enrollee_id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 9836,\n \"min\": 402,\n \"max\": 33241,\n \"num_unique_values\": 100,\n \"samples\": [\n 25413,\n 28512,\n 20970\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"city\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 35,\n \"samples\": [\n \"city_93\",\n \"city_67\",\n \"city_41\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"city_development_index\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.12732781004996988,\n \"min\": 0.55,\n \"max\": 0.939,\n \"num_unique_values\": 32,\n \"samples\": [\n 0.682,\n 0.884,\n 0.865\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"gender\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"Male\",\n \"Female\",\n \"Other\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"relevent_experience\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 2,\n \"samples\": [\n \"No relevent experience\",\n \"Has relevent experience\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"enrolled_university\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"no_enrollment\",\n \"Full time course\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"education_level\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 4,\n \"samples\": [\n \"Masters\",\n \"Phd\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"major_discipline\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 5,\n \"samples\": [\n \"Business Degree\",\n \"No Major\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"experience\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 20,\n \"samples\": [\n \">20\",\n \"3\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"company_size\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 8,\n \"samples\": [\n \"<10\",\n \"10/49\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"company_type\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 6,\n \"samples\": [\n \"Pvt Ltd\",\n \"Funded Startup\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"last_new_job\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 6,\n \"samples\": [\n \"1\",\n \">4\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"training_hours\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 56,\n \"min\": 4,\n \"max\": 332,\n \"num_unique_values\": 64,\n \"samples\": [\n 4,\n 332\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"target\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.4512608598542126,\n \"min\": 0.0,\n \"max\": 1.0,\n \"num_unique_values\": 2,\n \"samples\": [\n 0.0,\n 1.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 22 + } + ] + }, + { + "cell_type": "code", + "source": [ + "pd.read_csv('zomato.csv', encoding='latin-1')" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "id": "PQ_zWZ73H9ls", + "executionInfo": { + "status": "ok", + "timestamp": 1762180313017, + "user_tz": -360, + "elapsed": 163, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "38322e69-fdab-46da-d77b-9bed64808063" + }, + "execution_count": 24, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " Restaurant ID Restaurant Name Country Code City \\\n", + "0 6317637 Le Petit Souffle 162 Makati City \n", + "1 6304287 Izakaya Kikufuji 162 Makati City \n", + "2 6300002 Heat - Edsa Shangri-La 162 Mandaluyong City \n", + "3 6318506 Ooma 162 Mandaluyong City \n", + "4 6314302 Sambo Kojin 162 Mandaluyong City \n", + "... ... ... ... ... \n", + "9546 5915730 NamlÛ± Gurme 208 ÛÁstanbul \n", + "9547 5908749 Ceviz AÛôacÛ± 208 ÛÁstanbul \n", + "9548 5915807 Huqqa 208 ÛÁstanbul \n", + "9549 5916112 Aôôk Kahve 208 ÛÁstanbul \n", + "9550 5927402 Walter's Coffee Roastery 208 ÛÁstanbul \n", + "\n", + " Address \\\n", + "0 Third Floor, Century City Mall, Kalayaan Avenu... \n", + "1 Little Tokyo, 2277 Chino Roces Avenue, Legaspi... \n", + "2 Edsa Shangri-La, 1 Garden Way, Ortigas, Mandal... \n", + "3 Third Floor, Mega Fashion Hall, SM Megamall, O... \n", + "4 Third Floor, Mega Atrium, SM Megamall, Ortigas... \n", + "... ... \n", + "9546 Kemankeô Karamustafa Paôa Mahallesi, RÛ±htÛ±... \n", + "9547 Koôuyolu Mahallesi, Muhittin íìstí_ndaÛô Cadd... \n", + "9548 Kuruí_eôme Mahallesi, Muallim Naci Caddesi, N... \n", + "9549 Kuruí_eôme Mahallesi, Muallim Naci Caddesi, N... \n", + "9550 CafeaÛôa Mahallesi, BademaltÛ± Sokak, No 21/B,... \n", + "\n", + " Locality \\\n", + "0 Century City Mall, Poblacion, Makati City \n", + "1 Little Tokyo, Legaspi Village, Makati City \n", + "2 Edsa Shangri-La, Ortigas, Mandaluyong City \n", + "3 SM Megamall, Ortigas, Mandaluyong City \n", + "4 SM Megamall, Ortigas, Mandaluyong City \n", + "... ... \n", + "9546 Karakí_y \n", + "9547 Koôuyolu \n", + "9548 Kuruí_eôme \n", + "9549 Kuruí_eôme \n", + "9550 Moda \n", + "\n", + " Locality Verbose Longitude \\\n", + "0 Century City Mall, Poblacion, Makati City, Mak... 121.027535 \n", + "1 Little Tokyo, Legaspi Village, Makati City, Ma... 121.014101 \n", + "2 Edsa Shangri-La, Ortigas, Mandaluyong City, Ma... 121.056831 \n", + "3 SM Megamall, Ortigas, Mandaluyong City, Mandal... 121.056475 \n", + "4 SM Megamall, Ortigas, Mandaluyong City, Mandal... 121.057508 \n", + "... ... ... \n", + "9546 Karakí_y, ÛÁstanbul 28.977392 \n", + "9547 Koôuyolu, ÛÁstanbul 29.041297 \n", + "9548 Kuruí_eôme, ÛÁstanbul 29.034640 \n", + "9549 Kuruí_eôme, ÛÁstanbul 29.036019 \n", + "9550 Moda, ÛÁstanbul 29.026016 \n", + "\n", + " Latitude Cuisines ... Currency \\\n", + "0 14.565443 French, Japanese, Desserts ... Botswana Pula(P) \n", + "1 14.553708 Japanese ... Botswana Pula(P) \n", + "2 14.581404 Seafood, Asian, Filipino, Indian ... Botswana Pula(P) \n", + "3 14.585318 Japanese, Sushi ... Botswana Pula(P) \n", + "4 14.584450 Japanese, Korean ... Botswana Pula(P) \n", + "... ... ... ... ... \n", + "9546 41.022793 Turkish ... Turkish Lira(TL) \n", + "9547 41.009847 World Cuisine, Patisserie, Cafe ... Turkish Lira(TL) \n", + "9548 41.055817 Italian, World Cuisine ... Turkish Lira(TL) \n", + "9549 41.057979 Restaurant Cafe ... Turkish Lira(TL) \n", + "9550 40.984776 Cafe ... Turkish Lira(TL) \n", + "\n", + " Has Table booking Has Online delivery Is delivering now \\\n", + "0 Yes No No \n", + "1 Yes No No \n", + "2 Yes No No \n", + "3 No No No \n", + "4 Yes No No \n", + "... ... ... ... \n", + "9546 No No No \n", + "9547 No No No \n", + "9548 No No No \n", + "9549 No No No \n", + "9550 No No No \n", + "\n", + " Switch to order menu Price range Aggregate rating Rating color \\\n", + "0 No 3 4.8 Dark Green \n", + "1 No 3 4.5 Dark Green \n", + "2 No 4 4.4 Green \n", + "3 No 4 4.9 Dark Green \n", + "4 No 4 4.8 Dark Green \n", + "... ... ... ... ... \n", + "9546 No 3 4.1 Green \n", + "9547 No 3 4.2 Green \n", + "9548 No 4 3.7 Yellow \n", + "9549 No 4 4.0 Green \n", + "9550 No 2 4.0 Green \n", + "\n", + " Rating text Votes \n", + "0 Excellent 314 \n", + "1 Excellent 591 \n", + "2 Very Good 270 \n", + "3 Excellent 365 \n", + "4 Excellent 229 \n", + "... ... ... \n", + "9546 Very Good 788 \n", + "9547 Very Good 1034 \n", + "9548 Good 661 \n", + "9549 Very Good 901 \n", + "9550 Very Good 591 \n", + "\n", + "[9551 rows x 21 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Restaurant IDRestaurant NameCountry CodeCityAddressLocalityLocality VerboseLongitudeLatitudeCuisines...CurrencyHas Table bookingHas Online deliveryIs delivering nowSwitch to order menuPrice rangeAggregate ratingRating colorRating textVotes
06317637Le Petit Souffle162Makati CityThird Floor, Century City Mall, Kalayaan Avenu...Century City Mall, Poblacion, Makati CityCentury City Mall, Poblacion, Makati City, Mak...121.02753514.565443French, Japanese, Desserts...Botswana Pula(P)YesNoNoNo34.8Dark GreenExcellent314
16304287Izakaya Kikufuji162Makati CityLittle Tokyo, 2277 Chino Roces Avenue, Legaspi...Little Tokyo, Legaspi Village, Makati CityLittle Tokyo, Legaspi Village, Makati City, Ma...121.01410114.553708Japanese...Botswana Pula(P)YesNoNoNo34.5Dark GreenExcellent591
26300002Heat - Edsa Shangri-La162Mandaluyong CityEdsa Shangri-La, 1 Garden Way, Ortigas, Mandal...Edsa Shangri-La, Ortigas, Mandaluyong CityEdsa Shangri-La, Ortigas, Mandaluyong City, Ma...121.05683114.581404Seafood, Asian, Filipino, Indian...Botswana Pula(P)YesNoNoNo44.4GreenVery Good270
36318506Ooma162Mandaluyong CityThird Floor, Mega Fashion Hall, SM Megamall, O...SM Megamall, Ortigas, Mandaluyong CitySM Megamall, Ortigas, Mandaluyong City, Mandal...121.05647514.585318Japanese, Sushi...Botswana Pula(P)NoNoNoNo44.9Dark GreenExcellent365
46314302Sambo Kojin162Mandaluyong CityThird Floor, Mega Atrium, SM Megamall, Ortigas...SM Megamall, Ortigas, Mandaluyong CitySM Megamall, Ortigas, Mandaluyong City, Mandal...121.05750814.584450Japanese, Korean...Botswana Pula(P)YesNoNoNo44.8Dark GreenExcellent229
..................................................................
95465915730NamlÛ± Gurme208ÛÁstanbulKemankeô Karamustafa Paôa Mahallesi, RÛ±htÛ±...Karakí_yKarakí_y, ÛÁstanbul28.97739241.022793Turkish...Turkish Lira(TL)NoNoNoNo34.1GreenVery Good788
95475908749Ceviz AÛôacÛ±208ÛÁstanbulKoôuyolu Mahallesi, Muhittin íìstí_ndaÛô Cadd...KoôuyoluKoôuyolu, ÛÁstanbul29.04129741.009847World Cuisine, Patisserie, Cafe...Turkish Lira(TL)NoNoNoNo34.2GreenVery Good1034
95485915807Huqqa208ÛÁstanbulKuruí_eôme Mahallesi, Muallim Naci Caddesi, N...Kuruí_eômeKuruí_eôme, ÛÁstanbul29.03464041.055817Italian, World Cuisine...Turkish Lira(TL)NoNoNoNo43.7YellowGood661
95495916112Aôôk Kahve208ÛÁstanbulKuruí_eôme Mahallesi, Muallim Naci Caddesi, N...Kuruí_eômeKuruí_eôme, ÛÁstanbul29.03601941.057979Restaurant Cafe...Turkish Lira(TL)NoNoNoNo44.0GreenVery Good901
95505927402Walter's Coffee Roastery208ÛÁstanbulCafeaÛôa Mahallesi, BademaltÛ± Sokak, No 21/B,...ModaModa, ÛÁstanbul29.02601640.984776Cafe...Turkish Lira(TL)NoNoNoNo24.0GreenVery Good591
\n", + "

9551 rows × 21 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe" + } + }, + "metadata": {}, + "execution_count": 24 + } + ] + }, + { + "cell_type": "code", + "source": [ + "pd.read_csv('book.csv', on_bad_lines='skip')" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 143 + }, + "id": "kQjnXn6mIkmq", + "executionInfo": { + "status": "ok", + "timestamp": 1762180542644, + "user_tz": -360, + "elapsed": 35, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "3f7dcf69-e375-42dd-bbe3-34273be91c68" + }, + "execution_count": 28, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " title author isbn\n", + "0 Deep Work Cal Newport 9781455586691\n", + "1 The Innovator's Dilemma Clayton Christensen 9781633691780\n", + "2 Zero to One Peter Thiel 9780804139298" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titleauthorisbn
0Deep WorkCal Newport9781455586691
1The Innovator's DilemmaClayton Christensen9781633691780
2Zero to OnePeter Thiel9780804139298
\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 3,\n \"fields\": [\n {\n \"column\": \"title\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"Deep Work\",\n \"The Innovator's Dilemma\",\n \"Zero to One\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"author\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"Cal Newport\",\n \"Clayton Christensen\",\n \"Peter Thiel\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"isbn\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 436704028,\n \"min\": 9780804139298,\n \"max\": 9781633691780,\n \"num_unique_values\": 3,\n \"samples\": [\n 9781455586691,\n 9781633691780,\n 9780804139298\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 28 + } + ] + }, + { + "cell_type": "code", + "source": [ + "pd.read_csv('cricket_matches.csv', parse_dates=['date']).info()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "pU8lzAAPJYkX", + "executionInfo": { + "status": "ok", + "timestamp": 1762180658680, + "user_tz": -360, + "elapsed": 53, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "e0a112fe-ca87-483e-95d7-f252fea689f8" + }, + "execution_count": 31, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\n", + "RangeIndex: 816 entries, 0 to 815\n", + "Data columns (total 17 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 id 816 non-null int64 \n", + " 1 city 803 non-null object \n", + " 2 date 816 non-null datetime64[ns]\n", + " 3 player_of_match 812 non-null object \n", + " 4 venue 816 non-null object \n", + " 5 neutral_venue 816 non-null int64 \n", + " 6 team1 816 non-null object \n", + " 7 team2 816 non-null object \n", + " 8 toss_winner 816 non-null object \n", + " 9 toss_decision 816 non-null object \n", + " 10 winner 812 non-null object \n", + " 11 result 812 non-null object \n", + " 12 result_margin 799 non-null float64 \n", + " 13 eliminator 812 non-null object \n", + " 14 method 19 non-null object \n", + " 15 umpire1 816 non-null object \n", + " 16 umpire2 816 non-null object \n", + "dtypes: datetime64[ns](1), float64(1), int64(2), object(13)\n", + "memory usage: 108.5+ KB\n" + ] + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "## Converters" + ], + "metadata": { + "id": "OUrlrS3wJ-WR" + } + }, + { + "cell_type": "code", + "source": [ + "def rename(name):\n", + " if name == 'Royal Challengers Bangalore':\n", + " return 'RCB'\n", + " else :\n", + " return name\n", + "\n", + "rename(\"Royal Challengers Bangalore\")" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 36 + }, + "id": "vyMnVRe_J2bc", + "executionInfo": { + "status": "ok", + "timestamp": 1762180804565, + "user_tz": -360, + "elapsed": 38, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "a636c538-790a-4a11-80e8-331f43bc7897" + }, + "execution_count": 34, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "'RCB'" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "string" + } + }, + "metadata": {}, + "execution_count": 34 + } + ] + }, + { + "cell_type": "code", + "source": [ + "pd.read_csv('cricket_matches.csv', converters={'team1':rename})" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 825 + }, + "id": "y0_eqfWmKBdD", + "executionInfo": { + "status": "ok", + "timestamp": 1762180869977, + "user_tz": -360, + "elapsed": 116, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "56d54367-f01b-464d-fba0-7e3eb3cea22e" + }, + "execution_count": 35, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " id city date player_of_match \\\n", + "0 335982 Bangalore 2008-04-18 BB McCullum \n", + "1 335983 Chandigarh 2008-04-19 MEK Hussey \n", + "2 335984 Delhi 2008-04-19 MF Maharoof \n", + "3 335985 Mumbai 2008-04-20 MV Boucher \n", + "4 335986 Kolkata 2008-04-20 DJ Hussey \n", + ".. ... ... ... ... \n", + "811 1216547 Dubai 2020-09-28 AB de Villiers \n", + "812 1237177 Dubai 2020-11-05 JJ Bumrah \n", + "813 1237178 Abu Dhabi 2020-11-06 KS Williamson \n", + "814 1237180 Abu Dhabi 2020-11-08 MP Stoinis \n", + "815 1237181 Dubai 2020-11-10 TA Boult \n", + "\n", + " venue neutral_venue \\\n", + "0 M Chinnaswamy Stadium 0 \n", + "1 Punjab Cricket Association Stadium, Mohali 0 \n", + "2 Feroz Shah Kotla 0 \n", + "3 Wankhede Stadium 0 \n", + "4 Eden Gardens 0 \n", + ".. ... ... \n", + "811 Dubai International Cricket Stadium 0 \n", + "812 Dubai International Cricket Stadium 0 \n", + "813 Sheikh Zayed Stadium 0 \n", + "814 Sheikh Zayed Stadium 0 \n", + "815 Dubai International Cricket Stadium 0 \n", + "\n", + " team1 team2 \\\n", + "0 RCB Kolkata Knight Riders \n", + "1 Kings XI Punjab Chennai Super Kings \n", + "2 Delhi Daredevils Rajasthan Royals \n", + "3 Mumbai Indians Royal Challengers Bangalore \n", + "4 Kolkata Knight Riders Deccan Chargers \n", + ".. ... ... \n", + "811 RCB Mumbai Indians \n", + "812 Mumbai Indians Delhi Capitals \n", + "813 RCB Sunrisers Hyderabad \n", + "814 Delhi Capitals Sunrisers Hyderabad \n", + "815 Delhi Capitals Mumbai Indians \n", + "\n", + " toss_winner toss_decision winner \\\n", + "0 Royal Challengers Bangalore field Kolkata Knight Riders \n", + "1 Chennai Super Kings bat Chennai Super Kings \n", + "2 Rajasthan Royals bat Delhi Daredevils \n", + "3 Mumbai Indians bat Royal Challengers Bangalore \n", + "4 Deccan Chargers bat Kolkata Knight Riders \n", + ".. ... ... ... \n", + "811 Mumbai Indians field Royal Challengers Bangalore \n", + "812 Delhi Capitals field Mumbai Indians \n", + "813 Sunrisers Hyderabad field Sunrisers Hyderabad \n", + "814 Delhi Capitals bat Delhi Capitals \n", + "815 Delhi Capitals bat Mumbai Indians \n", + "\n", + " result result_margin eliminator method umpire1 umpire2 \n", + "0 runs 140.0 N NaN Asad Rauf RE Koertzen \n", + "1 runs 33.0 N NaN MR Benson SL Shastri \n", + "2 wickets 9.0 N NaN Aleem Dar GA Pratapkumar \n", + "3 wickets 5.0 N NaN SJ Davis DJ Harper \n", + "4 wickets 5.0 N NaN BF Bowden K Hariharan \n", + ".. ... ... ... ... ... ... \n", + "811 tie NaN Y NaN Nitin Menon PR Reiffel \n", + "812 runs 57.0 N NaN CB Gaffaney Nitin Menon \n", + "813 wickets 6.0 N NaN PR Reiffel S Ravi \n", + "814 runs 17.0 N NaN PR Reiffel S Ravi \n", + "815 wickets 5.0 N NaN CB Gaffaney Nitin Menon \n", + "\n", + "[816 rows x 17 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idcitydateplayer_of_matchvenueneutral_venueteam1team2toss_winnertoss_decisionwinnerresultresult_margineliminatormethodumpire1umpire2
0335982Bangalore2008-04-18BB McCullumM Chinnaswamy Stadium0RCBKolkata Knight RidersRoyal Challengers BangalorefieldKolkata Knight Ridersruns140.0NNaNAsad RaufRE Koertzen
1335983Chandigarh2008-04-19MEK HusseyPunjab Cricket Association Stadium, Mohali0Kings XI PunjabChennai Super KingsChennai Super KingsbatChennai Super Kingsruns33.0NNaNMR BensonSL Shastri
2335984Delhi2008-04-19MF MaharoofFeroz Shah Kotla0Delhi DaredevilsRajasthan RoyalsRajasthan RoyalsbatDelhi Daredevilswickets9.0NNaNAleem DarGA Pratapkumar
3335985Mumbai2008-04-20MV BoucherWankhede Stadium0Mumbai IndiansRoyal Challengers BangaloreMumbai IndiansbatRoyal Challengers Bangalorewickets5.0NNaNSJ DavisDJ Harper
4335986Kolkata2008-04-20DJ HusseyEden Gardens0Kolkata Knight RidersDeccan ChargersDeccan ChargersbatKolkata Knight Riderswickets5.0NNaNBF BowdenK Hariharan
......................................................
8111216547Dubai2020-09-28AB de VilliersDubai International Cricket Stadium0RCBMumbai IndiansMumbai IndiansfieldRoyal Challengers BangaloretieNaNYNaNNitin MenonPR Reiffel
8121237177Dubai2020-11-05JJ BumrahDubai International Cricket Stadium0Mumbai IndiansDelhi CapitalsDelhi CapitalsfieldMumbai Indiansruns57.0NNaNCB GaffaneyNitin Menon
8131237178Abu Dhabi2020-11-06KS WilliamsonSheikh Zayed Stadium0RCBSunrisers HyderabadSunrisers HyderabadfieldSunrisers Hyderabadwickets6.0NNaNPR ReiffelS Ravi
8141237180Abu Dhabi2020-11-08MP StoinisSheikh Zayed Stadium0Delhi CapitalsSunrisers HyderabadDelhi CapitalsbatDelhi Capitalsruns17.0NNaNPR ReiffelS Ravi
8151237181Dubai2020-11-10TA BoultDubai International Cricket Stadium0Delhi CapitalsMumbai IndiansDelhi CapitalsbatMumbai Indianswickets5.0NNaNCB GaffaneyNitin Menon
\n", + "

816 rows × 17 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 816,\n \"fields\": [\n {\n \"column\": \"id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 305894,\n \"min\": 335982,\n \"max\": 1237181,\n \"num_unique_values\": 816,\n \"samples\": [\n 501220,\n 548359,\n 1178424\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"city\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 32,\n \"samples\": [\n \"Bengaluru\",\n \"Bloemfontein\",\n \"Raipur\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"date\",\n \"properties\": {\n \"dtype\": \"object\",\n \"num_unique_values\": 596,\n \"samples\": [\n \"2012-05-10\",\n \"2013-04-18\",\n \"2018-04-19\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"player_of_match\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 233,\n \"samples\": [\n \"PD Collingwood\",\n \"AS Joseph\",\n \"PK Garg\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"venue\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 36,\n \"samples\": [\n \"M.Chinnaswamy Stadium\",\n \"Buffalo Park\",\n \"Shaheed Veer Narayan Singh International Stadium\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"neutral_venue\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0,\n \"min\": 0,\n \"max\": 1,\n \"num_unique_values\": 2,\n \"samples\": [\n 1,\n 0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"team1\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 15,\n \"samples\": [\n \"Pune Warriors\",\n \"Gujarat Lions\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"team2\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 15,\n \"samples\": [\n \"Pune Warriors\",\n \"Rising Pune Supergiants\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"toss_winner\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 15,\n \"samples\": [\n \"Pune Warriors\",\n \"Gujarat Lions\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"toss_decision\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 2,\n \"samples\": [\n \"bat\",\n \"field\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"winner\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 15,\n \"samples\": [\n \"Kochi Tuskers Kerala\",\n \"Rising Pune Supergiants\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"result\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"runs\",\n \"wickets\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"result_margin\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 22.068426720518378,\n \"min\": 1.0,\n \"max\": 146.0,\n \"num_unique_values\": 91,\n \"samples\": [\n 17.0,\n 105.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"eliminator\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 2,\n \"samples\": [\n \"Y\",\n \"N\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"method\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 1,\n \"samples\": [\n \"D/L\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"umpire1\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 48,\n \"samples\": [\n \"BNJ Oxenford\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"umpire2\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 47,\n \"samples\": [\n \"BNJ Oxenford\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 35 + } + ] + }, + { + "cell_type": "code", + "source": [ + "pd.read_csv('cricket_matches.csv', na_values=['Dubai'])" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 842 + }, + "id": "bVSXsOIxKyB2", + "executionInfo": { + "status": "ok", + "timestamp": 1762181005159, + "user_tz": -360, + "elapsed": 117, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "340f2bc8-ca9f-4932-dc8f-364d49257865" + }, + "execution_count": 37, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " id city date player_of_match \\\n", + "0 335982 Bangalore 2008-04-18 BB McCullum \n", + "1 335983 Chandigarh 2008-04-19 MEK Hussey \n", + "2 335984 Delhi 2008-04-19 MF Maharoof \n", + "3 335985 Mumbai 2008-04-20 MV Boucher \n", + "4 335986 Kolkata 2008-04-20 DJ Hussey \n", + ".. ... ... ... ... \n", + "811 1216547 NaN 2020-09-28 AB de Villiers \n", + "812 1237177 NaN 2020-11-05 JJ Bumrah \n", + "813 1237178 Abu Dhabi 2020-11-06 KS Williamson \n", + "814 1237180 Abu Dhabi 2020-11-08 MP Stoinis \n", + "815 1237181 NaN 2020-11-10 TA Boult \n", + "\n", + " venue neutral_venue \\\n", + "0 M Chinnaswamy Stadium 0 \n", + "1 Punjab Cricket Association Stadium, Mohali 0 \n", + "2 Feroz Shah Kotla 0 \n", + "3 Wankhede Stadium 0 \n", + "4 Eden Gardens 0 \n", + ".. ... ... \n", + "811 Dubai International Cricket Stadium 0 \n", + "812 Dubai International Cricket Stadium 0 \n", + "813 Sheikh Zayed Stadium 0 \n", + "814 Sheikh Zayed Stadium 0 \n", + "815 Dubai International Cricket Stadium 0 \n", + "\n", + " team1 team2 \\\n", + "0 Royal Challengers Bangalore Kolkata Knight Riders \n", + "1 Kings XI Punjab Chennai Super Kings \n", + "2 Delhi Daredevils Rajasthan Royals \n", + "3 Mumbai Indians Royal Challengers Bangalore \n", + "4 Kolkata Knight Riders Deccan Chargers \n", + ".. ... ... \n", + "811 Royal Challengers Bangalore Mumbai Indians \n", + "812 Mumbai Indians Delhi Capitals \n", + "813 Royal Challengers Bangalore Sunrisers Hyderabad \n", + "814 Delhi Capitals Sunrisers Hyderabad \n", + "815 Delhi Capitals Mumbai Indians \n", + "\n", + " toss_winner toss_decision winner \\\n", + "0 Royal Challengers Bangalore field Kolkata Knight Riders \n", + "1 Chennai Super Kings bat Chennai Super Kings \n", + "2 Rajasthan Royals bat Delhi Daredevils \n", + "3 Mumbai Indians bat Royal Challengers Bangalore \n", + "4 Deccan Chargers bat Kolkata Knight Riders \n", + ".. ... ... ... \n", + "811 Mumbai Indians field Royal Challengers Bangalore \n", + "812 Delhi Capitals field Mumbai Indians \n", + "813 Sunrisers Hyderabad field Sunrisers Hyderabad \n", + "814 Delhi Capitals bat Delhi Capitals \n", + "815 Delhi Capitals bat Mumbai Indians \n", + "\n", + " result result_margin eliminator method umpire1 umpire2 \n", + "0 runs 140.0 N NaN Asad Rauf RE Koertzen \n", + "1 runs 33.0 N NaN MR Benson SL Shastri \n", + "2 wickets 9.0 N NaN Aleem Dar GA Pratapkumar \n", + "3 wickets 5.0 N NaN SJ Davis DJ Harper \n", + "4 wickets 5.0 N NaN BF Bowden K Hariharan \n", + ".. ... ... ... ... ... ... \n", + "811 tie NaN Y NaN Nitin Menon PR Reiffel \n", + "812 runs 57.0 N NaN CB Gaffaney Nitin Menon \n", + "813 wickets 6.0 N NaN PR Reiffel S Ravi \n", + "814 runs 17.0 N NaN PR Reiffel S Ravi \n", + "815 wickets 5.0 N NaN CB Gaffaney Nitin Menon \n", + "\n", + "[816 rows x 17 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idcitydateplayer_of_matchvenueneutral_venueteam1team2toss_winnertoss_decisionwinnerresultresult_margineliminatormethodumpire1umpire2
0335982Bangalore2008-04-18BB McCullumM Chinnaswamy Stadium0Royal Challengers BangaloreKolkata Knight RidersRoyal Challengers BangalorefieldKolkata Knight Ridersruns140.0NNaNAsad RaufRE Koertzen
1335983Chandigarh2008-04-19MEK HusseyPunjab Cricket Association Stadium, Mohali0Kings XI PunjabChennai Super KingsChennai Super KingsbatChennai Super Kingsruns33.0NNaNMR BensonSL Shastri
2335984Delhi2008-04-19MF MaharoofFeroz Shah Kotla0Delhi DaredevilsRajasthan RoyalsRajasthan RoyalsbatDelhi Daredevilswickets9.0NNaNAleem DarGA Pratapkumar
3335985Mumbai2008-04-20MV BoucherWankhede Stadium0Mumbai IndiansRoyal Challengers BangaloreMumbai IndiansbatRoyal Challengers Bangalorewickets5.0NNaNSJ DavisDJ Harper
4335986Kolkata2008-04-20DJ HusseyEden Gardens0Kolkata Knight RidersDeccan ChargersDeccan ChargersbatKolkata Knight Riderswickets5.0NNaNBF BowdenK Hariharan
......................................................
8111216547NaN2020-09-28AB de VilliersDubai International Cricket Stadium0Royal Challengers BangaloreMumbai IndiansMumbai IndiansfieldRoyal Challengers BangaloretieNaNYNaNNitin MenonPR Reiffel
8121237177NaN2020-11-05JJ BumrahDubai International Cricket Stadium0Mumbai IndiansDelhi CapitalsDelhi CapitalsfieldMumbai Indiansruns57.0NNaNCB GaffaneyNitin Menon
8131237178Abu Dhabi2020-11-06KS WilliamsonSheikh Zayed Stadium0Royal Challengers BangaloreSunrisers HyderabadSunrisers HyderabadfieldSunrisers Hyderabadwickets6.0NNaNPR ReiffelS Ravi
8141237180Abu Dhabi2020-11-08MP StoinisSheikh Zayed Stadium0Delhi CapitalsSunrisers HyderabadDelhi CapitalsbatDelhi Capitalsruns17.0NNaNPR ReiffelS Ravi
8151237181NaN2020-11-10TA BoultDubai International Cricket Stadium0Delhi CapitalsMumbai IndiansDelhi CapitalsbatMumbai Indianswickets5.0NNaNCB GaffaneyNitin Menon
\n", + "

816 rows × 17 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 816,\n \"fields\": [\n {\n \"column\": \"id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 305894,\n \"min\": 335982,\n \"max\": 1237181,\n \"num_unique_values\": 816,\n \"samples\": [\n 501220,\n 548359,\n 1178424\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"city\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 31,\n \"samples\": [\n \"Rajkot\",\n \"Bloemfontein\",\n \"Pune\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"date\",\n \"properties\": {\n \"dtype\": \"object\",\n \"num_unique_values\": 596,\n \"samples\": [\n \"2012-05-10\",\n \"2013-04-18\",\n \"2018-04-19\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"player_of_match\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 233,\n \"samples\": [\n \"PD Collingwood\",\n \"AS Joseph\",\n \"PK Garg\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"venue\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 36,\n \"samples\": [\n \"M.Chinnaswamy Stadium\",\n \"Buffalo Park\",\n \"Shaheed Veer Narayan Singh International Stadium\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"neutral_venue\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0,\n \"min\": 0,\n \"max\": 1,\n \"num_unique_values\": 2,\n \"samples\": [\n 1,\n 0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"team1\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 15,\n \"samples\": [\n \"Pune Warriors\",\n \"Gujarat Lions\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"team2\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 15,\n \"samples\": [\n \"Pune Warriors\",\n \"Rising Pune Supergiants\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"toss_winner\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 15,\n \"samples\": [\n \"Pune Warriors\",\n \"Gujarat Lions\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"toss_decision\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 2,\n \"samples\": [\n \"bat\",\n \"field\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"winner\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 15,\n \"samples\": [\n \"Kochi Tuskers Kerala\",\n \"Rising Pune Supergiants\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"result\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"runs\",\n \"wickets\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"result_margin\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 22.068426720518378,\n \"min\": 1.0,\n \"max\": 146.0,\n \"num_unique_values\": 91,\n \"samples\": [\n 17.0,\n 105.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"eliminator\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 2,\n \"samples\": [\n \"Y\",\n \"N\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"method\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 1,\n \"samples\": [\n \"D/L\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"umpire1\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 48,\n \"samples\": [\n \"BNJ Oxenford\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"umpire2\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 47,\n \"samples\": [\n \"BNJ Oxenford\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 37 + } + ] + }, + { + "cell_type": "code", + "source": [ + "Chunks = pd.read_csv('train.csv', chunksize=1000)" + ], + "metadata": { + "id": "owPDotIpLZUE", + "executionInfo": { + "status": "ok", + "timestamp": 1762181176732, + "user_tz": -360, + "elapsed": 43, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 44, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "for d in Chunks:\n", + " print(d.shape)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "7WNxP3QjLlyU", + "executionInfo": { + "status": "ok", + "timestamp": 1762181179272, + "user_tz": -360, + "elapsed": 110, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "9a7f4cd3-1442-44d9-b19c-4fba4daa24b3" + }, + "execution_count": 45, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(158, 14)\n" + ] + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "# **Reading From JSON**" + ], + "metadata": { + "id": "eOBuuspmm8wf" + } + }, + { + "cell_type": "markdown", + "source": [], + "metadata": { + "id": "riYd_z3VENK7" + } + }, + { + "cell_type": "code", + "source": [ + "pd.read_json('train.json')" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 423 + }, + "id": "GczTKHMIMAIV", + "executionInfo": { + "status": "ok", + "timestamp": 1762181263807, + "user_tz": -360, + "elapsed": 372, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "e9207534-0879-4e5f-d5c6-f20c14e5bdca" + }, + "execution_count": 46, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " id cuisine ingredients\n", + "0 10259 greek [romaine lettuce, black olives, grape tomatoes...\n", + "1 25693 southern_us [plain flour, ground pepper, salt, tomatoes, g...\n", + "2 20130 filipino [eggs, pepper, salt, mayonaise, cooking oil, g...\n", + "3 22213 indian [water, vegetable oil, wheat, salt]\n", + "4 13162 indian [black pepper, shallots, cornflour, cayenne pe...\n", + "... ... ... ...\n", + "39769 29109 irish [light brown sugar, granulated sugar, butter, ...\n", + "39770 11462 italian [KRAFT Zesty Italian Dressing, purple onion, b...\n", + "39771 2238 irish [eggs, citrus fruit, raisins, sourdough starte...\n", + "39772 41882 chinese [boneless chicken skinless thigh, minced garli...\n", + "39773 2362 mexican [green chile, jalapeno chilies, onions, ground...\n", + "\n", + "[39774 rows x 3 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idcuisineingredients
010259greek[romaine lettuce, black olives, grape tomatoes...
125693southern_us[plain flour, ground pepper, salt, tomatoes, g...
220130filipino[eggs, pepper, salt, mayonaise, cooking oil, g...
322213indian[water, vegetable oil, wheat, salt]
413162indian[black pepper, shallots, cornflour, cayenne pe...
............
3976929109irish[light brown sugar, granulated sugar, butter, ...
3977011462italian[KRAFT Zesty Italian Dressing, purple onion, b...
397712238irish[eggs, citrus fruit, raisins, sourdough starte...
3977241882chinese[boneless chicken skinless thigh, minced garli...
397732362mexican[green chile, jalapeno chilies, onions, ground...
\n", + "

39774 rows × 3 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 39774,\n \"fields\": [\n {\n \"column\": \"id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 14360,\n \"min\": 0,\n \"max\": 49717,\n \"num_unique_values\": 39774,\n \"samples\": [\n 7958,\n 36179,\n 8331\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"cuisine\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 20,\n \"samples\": [\n \"greek\",\n \"korean\",\n \"japanese\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"ingredients\",\n \"properties\": {\n \"dtype\": \"object\",\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 46 + } + ] + }, + { + "cell_type": "code", + "source": [ + "pd.read_json('https://jsonplaceholder.typicode.com/posts')" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 423 + }, + "id": "LY2s7r6JMEJY", + "executionInfo": { + "status": "ok", + "timestamp": 1762181329099, + "user_tz": -360, + "elapsed": 125, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "b86cee72-3c64-4179-e94c-222e38f546c6" + }, + "execution_count": 47, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " userId id title \\\n", + "0 1 1 sunt aut facere repellat provident occaecati e... \n", + "1 1 2 qui est esse \n", + "2 1 3 ea molestias quasi exercitationem repellat qui... \n", + "3 1 4 eum et est occaecati \n", + "4 1 5 nesciunt quas odio \n", + ".. ... ... ... \n", + "95 10 96 quaerat velit veniam amet cupiditate aut numqu... \n", + "96 10 97 quas fugiat ut perspiciatis vero provident \n", + "97 10 98 laboriosam dolor voluptates \n", + "98 10 99 temporibus sit alias delectus eligendi possimu... \n", + "99 10 100 at nam consequatur ea labore ea harum \n", + "\n", + " body \n", + "0 quia et suscipit\\nsuscipit recusandae consequu... \n", + "1 est rerum tempore vitae\\nsequi sint nihil repr... \n", + "2 et iusto sed quo iure\\nvoluptatem occaecati om... \n", + "3 ullam et saepe reiciendis voluptatem adipisci\\... \n", + "4 repudiandae veniam quaerat sunt sed\\nalias aut... \n", + ".. ... \n", + "95 in non odio excepturi sint eum\\nlabore volupta... \n", + "96 eum non blanditiis soluta porro quibusdam volu... \n", + "97 doloremque ex facilis sit sint culpa\\nsoluta a... \n", + "98 quo deleniti praesentium dicta non quod\\naut e... \n", + "99 cupiditate quo est a modi nesciunt soluta\\nips... \n", + "\n", + "[100 rows x 4 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
userIdidtitlebody
011sunt aut facere repellat provident occaecati e...quia et suscipit\\nsuscipit recusandae consequu...
112qui est esseest rerum tempore vitae\\nsequi sint nihil repr...
213ea molestias quasi exercitationem repellat qui...et iusto sed quo iure\\nvoluptatem occaecati om...
314eum et est occaecatiullam et saepe reiciendis voluptatem adipisci\\...
415nesciunt quas odiorepudiandae veniam quaerat sunt sed\\nalias aut...
...............
951096quaerat velit veniam amet cupiditate aut numqu...in non odio excepturi sint eum\\nlabore volupta...
961097quas fugiat ut perspiciatis vero providenteum non blanditiis soluta porro quibusdam volu...
971098laboriosam dolor voluptatesdoloremque ex facilis sit sint culpa\\nsoluta a...
981099temporibus sit alias delectus eligendi possimu...quo deleniti praesentium dicta non quod\\naut e...
9910100at nam consequatur ea labore ea harumcupiditate quo est a modi nesciunt soluta\\nips...
\n", + "

100 rows × 4 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 100,\n \"fields\": [\n {\n \"column\": \"userId\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 2,\n \"min\": 1,\n \"max\": 10,\n \"num_unique_values\": 10,\n \"samples\": [\n 9,\n 2,\n 6\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 29,\n \"min\": 1,\n \"max\": 100,\n \"num_unique_values\": 100,\n \"samples\": [\n 84,\n 54,\n 71\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"title\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 100,\n \"samples\": [\n \"optio ipsam molestias necessitatibus occaecati facilis veritatis dolores aut\",\n \"sit asperiores ipsam eveniet odio non quia\",\n \"et iusto veniam et illum aut fuga\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"body\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 100,\n \"samples\": [\n \"sint molestiae magni a et quos\\neaque et quasi\\nut rerum debitis similique veniam\\nrecusandae dignissimos dolor incidunt consequatur odio\",\n \"totam corporis dignissimos\\nvitae dolorem ut occaecati accusamus\\nex velit deserunt\\net exercitationem vero incidunt corrupti mollitia\",\n \"occaecati a doloribus\\niste saepe consectetur placeat eum voluptate dolorem et\\nqui quo quia voluptas\\nrerum ut id enim velit est perferendis\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 47 + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "# **Reading From EXCEL**" + ], + "metadata": { + "id": "ldQAlaDxnAou" + } + }, + { + "cell_type": "code", + "source": [ + "pd.read_excel('Financial_Sample.xlsx')" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 652 + }, + "id": "3_K_Yp3IMYFn", + "executionInfo": { + "status": "ok", + "timestamp": 1762181374453, + "user_tz": -360, + "elapsed": 1416, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "1e425478-921c-414b-b86a-d99f2894e02f" + }, + "execution_count": 48, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " Segment Country Product Discount Band \\\n", + "0 Government Canada Carretera NaN \n", + "1 Government Germany Carretera NaN \n", + "2 Midmarket France Carretera NaN \n", + "3 Midmarket Germany Carretera NaN \n", + "4 Midmarket Mexico Carretera NaN \n", + ".. ... ... ... ... \n", + "695 Small Business France Amarilla High \n", + "696 Small Business Mexico Amarilla High \n", + "697 Government Mexico Montana High \n", + "698 Government Canada Paseo High \n", + "699 Channel Partners United States of America VTT High \n", + "\n", + " Units Sold Manufacturing Price Sale Price Gross Sales Discounts \\\n", + "0 1618.5 3 20 32370.0 0.00 \n", + "1 1321.0 3 20 26420.0 0.00 \n", + "2 2178.0 3 15 32670.0 0.00 \n", + "3 888.0 3 15 13320.0 0.00 \n", + "4 2470.0 3 15 37050.0 0.00 \n", + ".. ... ... ... ... ... \n", + "695 2475.0 260 300 742500.0 111375.00 \n", + "696 546.0 260 300 163800.0 24570.00 \n", + "697 1368.0 5 7 9576.0 1436.40 \n", + "698 723.0 10 7 5061.0 759.15 \n", + "699 1806.0 250 12 21672.0 3250.80 \n", + "\n", + " Sales COGS Profit Date Month Number Month Name Year \n", + "0 32370.00 16185.0 16185.00 2014-01-01 1 January 2014 \n", + "1 26420.00 13210.0 13210.00 2014-01-01 1 January 2014 \n", + "2 32670.00 21780.0 10890.00 2014-06-01 6 June 2014 \n", + "3 13320.00 8880.0 4440.00 2014-06-01 6 June 2014 \n", + "4 37050.00 24700.0 12350.00 2014-06-01 6 June 2014 \n", + ".. ... ... ... ... ... ... ... \n", + "695 631125.00 618750.0 12375.00 2014-03-01 3 March 2014 \n", + "696 139230.00 136500.0 2730.00 2014-10-01 10 October 2014 \n", + "697 8139.60 6840.0 1299.60 2014-02-01 2 February 2014 \n", + "698 4301.85 3615.0 686.85 2014-04-01 4 April 2014 \n", + "699 18421.20 5418.0 13003.20 2014-05-01 5 May 2014 \n", + "\n", + "[700 rows x 16 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
SegmentCountryProductDiscount BandUnits SoldManufacturing PriceSale PriceGross SalesDiscountsSalesCOGSProfitDateMonth NumberMonth NameYear
0GovernmentCanadaCarreteraNaN1618.532032370.00.0032370.0016185.016185.002014-01-011January2014
1GovernmentGermanyCarreteraNaN1321.032026420.00.0026420.0013210.013210.002014-01-011January2014
2MidmarketFranceCarreteraNaN2178.031532670.00.0032670.0021780.010890.002014-06-016June2014
3MidmarketGermanyCarreteraNaN888.031513320.00.0013320.008880.04440.002014-06-016June2014
4MidmarketMexicoCarreteraNaN2470.031537050.00.0037050.0024700.012350.002014-06-016June2014
...................................................
695Small BusinessFranceAmarillaHigh2475.0260300742500.0111375.00631125.00618750.012375.002014-03-013March2014
696Small BusinessMexicoAmarillaHigh546.0260300163800.024570.00139230.00136500.02730.002014-10-0110October2014
697GovernmentMexicoMontanaHigh1368.0579576.01436.408139.606840.01299.602014-02-012February2014
698GovernmentCanadaPaseoHigh723.01075061.0759.154301.853615.0686.852014-04-014April2014
699Channel PartnersUnited States of AmericaVTTHigh1806.02501221672.03250.8018421.205418.013003.202014-05-015May2014
\n", + "

700 rows × 16 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 700,\n \"fields\": [\n {\n \"column\": \"Segment\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 5,\n \"samples\": [\n \"Midmarket\",\n \"Small Business\",\n \"Channel Partners\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Country\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 5,\n \"samples\": [\n \"Germany\",\n \"United States of America\",\n \"France\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Product\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 6,\n \"samples\": [\n \"Carretera\",\n \"Montana\",\n \"Amarilla\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Discount Band\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"Low\",\n \"Medium\",\n \"High\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Units Sold\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 867.4278590570522,\n \"min\": 200.0,\n \"max\": 4492.5,\n \"num_unique_values\": 510,\n \"samples\": [\n 1922.0,\n 1013.0,\n 2914.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Manufacturing Price\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 108,\n \"min\": 3,\n \"max\": 260,\n \"num_unique_values\": 6,\n \"samples\": [\n 3,\n 5,\n 260\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Sale Price\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 136,\n \"min\": 7,\n \"max\": 350,\n \"num_unique_values\": 7,\n \"samples\": [\n 20,\n 15,\n 300\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Gross Sales\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 254262.28437834256,\n \"min\": 1799.0,\n \"max\": 1207500.0,\n \"num_unique_values\": 550,\n \"samples\": [\n 36040.0,\n 92812.5,\n 4920.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Discounts\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 22962.928774797878,\n \"min\": 0.0,\n \"max\": 149677.5,\n \"num_unique_values\": 515,\n \"samples\": [\n 3049.2,\n 112927.5,\n 101595.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \" Sales\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 236726.34690976143,\n \"min\": 1655.08,\n \"max\": 1159200.0,\n \"num_unique_values\": 559,\n \"samples\": [\n 731472.0,\n 51143.399999999994,\n 746707.5\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"COGS\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 203865.506118476,\n \"min\": 918.0,\n \"max\": 950625.0,\n \"num_unique_values\": 545,\n \"samples\": [\n 80500.0,\n 5967.0,\n 19540.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Profit\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 42760.626563318605,\n \"min\": -40617.5,\n \"max\": 262200.0,\n \"num_unique_values\": 557,\n \"samples\": [\n 26524.0,\n -23870.0,\n 186407.5\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Date\",\n \"properties\": {\n \"dtype\": \"date\",\n \"min\": \"2013-09-01 00:00:00\",\n \"max\": \"2014-12-01 00:00:00\",\n \"num_unique_values\": 16,\n \"samples\": [\n \"2014-01-01 00:00:00\",\n \"2014-06-01 00:00:00\",\n \"2014-08-01 00:00:00\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Month Number\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 3,\n \"min\": 1,\n \"max\": 12,\n \"num_unique_values\": 12,\n \"samples\": [\n 4,\n 11,\n 1\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Month Name\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 12,\n \"samples\": [\n \"April\",\n \"November\",\n \"January\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Year\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0,\n \"min\": 2013,\n \"max\": 2014,\n \"num_unique_values\": 2,\n \"samples\": [\n 2013,\n 2014\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 48 + } + ] + }, + { + "cell_type": "code", + "source": [ + "pd.read_excel('Financial_Sample.xlsx', sheet_name='Summary 2')" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 423 + }, + "id": "N-HjUPssMx09", + "executionInfo": { + "status": "ok", + "timestamp": 1762181479028, + "user_tz": -360, + "elapsed": 287, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "c5e9eceb-034f-4330-e82e-0a8933e20ac2" + }, + "execution_count": 49, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " Segment Country Year\n", + "0 Government Canada 2014\n", + "1 Government Germany 2014\n", + "2 Midmarket France 2014\n", + "3 Midmarket Germany 2014\n", + "4 Midmarket Mexico 2014\n", + ".. ... ... ...\n", + "695 Small Business France 2014\n", + "696 Small Business Mexico 2014\n", + "697 Government Mexico 2014\n", + "698 Government Canada 2014\n", + "699 Channel Partners United States of America 2014\n", + "\n", + "[700 rows x 3 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
SegmentCountryYear
0GovernmentCanada2014
1GovernmentGermany2014
2MidmarketFrance2014
3MidmarketGermany2014
4MidmarketMexico2014
............
695Small BusinessFrance2014
696Small BusinessMexico2014
697GovernmentMexico2014
698GovernmentCanada2014
699Channel PartnersUnited States of America2014
\n", + "

700 rows × 3 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 700,\n \"fields\": [\n {\n \"column\": \"Segment\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 5,\n \"samples\": [\n \"Midmarket\",\n \"Small Business\",\n \"Channel Partners\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Country\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 5,\n \"samples\": [\n \"Germany\",\n \"United States of America\",\n \"France\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Year\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0,\n \"min\": 2013,\n \"max\": 2014,\n \"num_unique_values\": 2,\n \"samples\": [\n 2013,\n 2014\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 49 + } + ] + }, + { + "cell_type": "code", + "source": [], + "metadata": { + "id": "L4EU81oXM8VQ" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "# **Export to CSV**" + ], + "metadata": { + "id": "bYSPjAe5nFVu" + } + }, + { + "cell_type": "code", + "source": [ + "df1 = pd.read_json('https://jsonplaceholder.typicode.com/posts')\n", + "df1.to_csv('posts.csv')" + ], + "metadata": { + "id": "GbsZT5y6M-0L", + "executionInfo": { + "status": "ok", + "timestamp": 1762181558805, + "user_tz": -360, + "elapsed": 84, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 50, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "# **Export to EXCEL**" + ], + "metadata": { + "id": "oXt1D1q3nMCx" + } + }, + { + "cell_type": "code", + "source": [ + "df1.to_excel('posts-excel.xlsx')" + ], + "metadata": { + "id": "XuZOSZ3yNV-H", + "executionInfo": { + "status": "ok", + "timestamp": 1762181625877, + "user_tz": -360, + "elapsed": 60, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 51, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "df2 = pd.read_json('https://jsonplaceholder.typicode.com/comments')" + ], + "metadata": { + "id": "iVASPrPSNk48", + "executionInfo": { + "status": "ok", + "timestamp": 1762181707912, + "user_tz": -360, + "elapsed": 102, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 52, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "with pd.ExcelWriter('post-comment.xlsx') as writer:\n", + " df1.to_excel(writer, sheet_name='Posts')\n", + " df2.to_excel(writer, sheet_name='Comments')" + ], + "metadata": { + "id": "zgIOWpHSNvyA", + "executionInfo": { + "status": "ok", + "timestamp": 1762181845277, + "user_tz": -360, + "elapsed": 135, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 53, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "# **Export to HTML**" + ], + "metadata": { + "id": "t0i85yNwnPEn" + } + }, + { + "cell_type": "code", + "source": [ + "df1.to_html('Posts.html')" + ], + "metadata": { + "id": "Iee6pypeOeqY", + "executionInfo": { + "status": "ok", + "timestamp": 1762181915350, + "user_tz": -360, + "elapsed": 4, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 54, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "# **Export to JSON**" + ], + "metadata": { + "id": "hhprb-TynTnW" + } + }, + { + "cell_type": "code", + "source": [ + "df = pd.read_csv('cricket_matches.csv')\n", + "df.to_json('cricket.json')" + ], + "metadata": { + "id": "bpVFnfKdOtzp", + "executionInfo": { + "status": "ok", + "timestamp": 1762182012313, + "user_tz": -360, + "elapsed": 67, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 57, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "# **API to DataFrame**" + ], + "metadata": { + "id": "hmG8ZkkOnVfv" + } + }, + { + "cell_type": "code", + "source": [ + "import requests" + ], + "metadata": { + "id": "5WWjOzfkQFUZ", + "executionInfo": { + "status": "ok", + "timestamp": 1762182331295, + "user_tz": -360, + "elapsed": 22, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 58, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "res = requests.get('https://jsonplaceholder.typicode.com/users')\n", + "res" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "0_3XSm8HQH7b", + "executionInfo": { + "status": "ok", + "timestamp": 1762182364925, + "user_tz": -360, + "elapsed": 107, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "d7084caa-d128-4dcb-8957-640ca3ad3b59" + }, + "execution_count": 59, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "" + ] + }, + "metadata": {}, + "execution_count": 59 + } + ] + }, + { + "cell_type": "code", + "source": [ + "res.json()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "tyFUMifdQQrv", + "executionInfo": { + "status": "ok", + "timestamp": 1762182376511, + "user_tz": -360, + "elapsed": 41, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "3ed10bf2-286d-4bae-bdde-37b2c57b648b" + }, + "execution_count": 60, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "[{'id': 1,\n", + " 'name': 'Leanne Graham',\n", + " 'username': 'Bret',\n", + " 'email': 'Sincere@april.biz',\n", + " 'address': {'street': 'Kulas Light',\n", + " 'suite': 'Apt. 556',\n", + " 'city': 'Gwenborough',\n", + " 'zipcode': '92998-3874',\n", + " 'geo': {'lat': '-37.3159', 'lng': '81.1496'}},\n", + " 'phone': '1-770-736-8031 x56442',\n", + " 'website': 'hildegard.org',\n", + " 'company': {'name': 'Romaguera-Crona',\n", + " 'catchPhrase': 'Multi-layered client-server neural-net',\n", + " 'bs': 'harness real-time e-markets'}},\n", + " {'id': 2,\n", + " 'name': 'Ervin Howell',\n", + " 'username': 'Antonette',\n", + " 'email': 'Shanna@melissa.tv',\n", + " 'address': {'street': 'Victor Plains',\n", + " 'suite': 'Suite 879',\n", + " 'city': 'Wisokyburgh',\n", + " 'zipcode': '90566-7771',\n", + " 'geo': {'lat': '-43.9509', 'lng': '-34.4618'}},\n", + " 'phone': '010-692-6593 x09125',\n", + " 'website': 'anastasia.net',\n", + " 'company': {'name': 'Deckow-Crist',\n", + " 'catchPhrase': 'Proactive didactic contingency',\n", + " 'bs': 'synergize scalable supply-chains'}},\n", + " {'id': 3,\n", + " 'name': 'Clementine Bauch',\n", + " 'username': 'Samantha',\n", + " 'email': 'Nathan@yesenia.net',\n", + " 'address': {'street': 'Douglas Extension',\n", + " 'suite': 'Suite 847',\n", + " 'city': 'McKenziehaven',\n", + " 'zipcode': '59590-4157',\n", + " 'geo': {'lat': '-68.6102', 'lng': '-47.0653'}},\n", + " 'phone': '1-463-123-4447',\n", + " 'website': 'ramiro.info',\n", + " 'company': {'name': 'Romaguera-Jacobson',\n", + " 'catchPhrase': 'Face to face bifurcated interface',\n", + " 'bs': 'e-enable strategic applications'}},\n", + " {'id': 4,\n", + " 'name': 'Patricia Lebsack',\n", + " 'username': 'Karianne',\n", + " 'email': 'Julianne.OConner@kory.org',\n", + " 'address': {'street': 'Hoeger Mall',\n", + " 'suite': 'Apt. 692',\n", + " 'city': 'South Elvis',\n", + " 'zipcode': '53919-4257',\n", + " 'geo': {'lat': '29.4572', 'lng': '-164.2990'}},\n", + " 'phone': '493-170-9623 x156',\n", + " 'website': 'kale.biz',\n", + " 'company': {'name': 'Robel-Corkery',\n", + " 'catchPhrase': 'Multi-tiered zero tolerance productivity',\n", + " 'bs': 'transition cutting-edge web services'}},\n", + " {'id': 5,\n", + " 'name': 'Chelsey Dietrich',\n", + " 'username': 'Kamren',\n", + " 'email': 'Lucio_Hettinger@annie.ca',\n", + " 'address': {'street': 'Skiles Walks',\n", + " 'suite': 'Suite 351',\n", + " 'city': 'Roscoeview',\n", + " 'zipcode': '33263',\n", + " 'geo': {'lat': '-31.8129', 'lng': '62.5342'}},\n", + " 'phone': '(254)954-1289',\n", + " 'website': 'demarco.info',\n", + " 'company': {'name': 'Keebler LLC',\n", + " 'catchPhrase': 'User-centric fault-tolerant solution',\n", + " 'bs': 'revolutionize end-to-end systems'}},\n", + " {'id': 6,\n", + " 'name': 'Mrs. Dennis Schulist',\n", + " 'username': 'Leopoldo_Corkery',\n", + " 'email': 'Karley_Dach@jasper.info',\n", + " 'address': {'street': 'Norberto Crossing',\n", + " 'suite': 'Apt. 950',\n", + " 'city': 'South Christy',\n", + " 'zipcode': '23505-1337',\n", + " 'geo': {'lat': '-71.4197', 'lng': '71.7478'}},\n", + " 'phone': '1-477-935-8478 x6430',\n", + " 'website': 'ola.org',\n", + " 'company': {'name': 'Considine-Lockman',\n", + " 'catchPhrase': 'Synchronised bottom-line interface',\n", + " 'bs': 'e-enable innovative applications'}},\n", + " {'id': 7,\n", + " 'name': 'Kurtis Weissnat',\n", + " 'username': 'Elwyn.Skiles',\n", + " 'email': 'Telly.Hoeger@billy.biz',\n", + " 'address': {'street': 'Rex Trail',\n", + " 'suite': 'Suite 280',\n", + " 'city': 'Howemouth',\n", + " 'zipcode': '58804-1099',\n", + " 'geo': {'lat': '24.8918', 'lng': '21.8984'}},\n", + " 'phone': '210.067.6132',\n", + " 'website': 'elvis.io',\n", + " 'company': {'name': 'Johns Group',\n", + " 'catchPhrase': 'Configurable multimedia task-force',\n", + " 'bs': 'generate enterprise e-tailers'}},\n", + " {'id': 8,\n", + " 'name': 'Nicholas Runolfsdottir V',\n", + " 'username': 'Maxime_Nienow',\n", + " 'email': 'Sherwood@rosamond.me',\n", + " 'address': {'street': 'Ellsworth Summit',\n", + " 'suite': 'Suite 729',\n", + " 'city': 'Aliyaview',\n", + " 'zipcode': '45169',\n", + " 'geo': {'lat': '-14.3990', 'lng': '-120.7677'}},\n", + " 'phone': '586.493.6943 x140',\n", + " 'website': 'jacynthe.com',\n", + " 'company': {'name': 'Abernathy Group',\n", + " 'catchPhrase': 'Implemented secondary concept',\n", + " 'bs': 'e-enable extensible e-tailers'}},\n", + " {'id': 9,\n", + " 'name': 'Glenna Reichert',\n", + " 'username': 'Delphine',\n", + " 'email': 'Chaim_McDermott@dana.io',\n", + " 'address': {'street': 'Dayna Park',\n", + " 'suite': 'Suite 449',\n", + " 'city': 'Bartholomebury',\n", + " 'zipcode': '76495-3109',\n", + " 'geo': {'lat': '24.6463', 'lng': '-168.8889'}},\n", + " 'phone': '(775)976-6794 x41206',\n", + " 'website': 'conrad.com',\n", + " 'company': {'name': 'Yost and Sons',\n", + " 'catchPhrase': 'Switchable contextually-based project',\n", + " 'bs': 'aggregate real-time technologies'}},\n", + " {'id': 10,\n", + " 'name': 'Clementina DuBuque',\n", + " 'username': 'Moriah.Stanton',\n", + " 'email': 'Rey.Padberg@karina.biz',\n", + " 'address': {'street': 'Kattie Turnpike',\n", + " 'suite': 'Suite 198',\n", + " 'city': 'Lebsackbury',\n", + " 'zipcode': '31428-2261',\n", + " 'geo': {'lat': '-38.2386', 'lng': '57.2232'}},\n", + " 'phone': '024-648-3804',\n", + " 'website': 'ambrose.net',\n", + " 'company': {'name': 'Hoeger LLC',\n", + " 'catchPhrase': 'Centralized empowering task-force',\n", + " 'bs': 'target end-to-end models'}}]" + ] + }, + "metadata": {}, + "execution_count": 60 + } + ] + }, + { + "cell_type": "code", + "source": [ + "pd.DataFrame(res.json())" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 658 + }, + "id": "E7ttiVosQWrY", + "executionInfo": { + "status": "ok", + "timestamp": 1762182411941, + "user_tz": -360, + "elapsed": 75, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "570d5b07-5688-476f-f85b-5da6fb9b2426" + }, + "execution_count": 61, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " id name username email \\\n", + "0 1 Leanne Graham Bret Sincere@april.biz \n", + "1 2 Ervin Howell Antonette Shanna@melissa.tv \n", + "2 3 Clementine Bauch Samantha Nathan@yesenia.net \n", + "3 4 Patricia Lebsack Karianne Julianne.OConner@kory.org \n", + "4 5 Chelsey Dietrich Kamren Lucio_Hettinger@annie.ca \n", + "5 6 Mrs. Dennis Schulist Leopoldo_Corkery Karley_Dach@jasper.info \n", + "6 7 Kurtis Weissnat Elwyn.Skiles Telly.Hoeger@billy.biz \n", + "7 8 Nicholas Runolfsdottir V Maxime_Nienow Sherwood@rosamond.me \n", + "8 9 Glenna Reichert Delphine Chaim_McDermott@dana.io \n", + "9 10 Clementina DuBuque Moriah.Stanton Rey.Padberg@karina.biz \n", + "\n", + " address phone \\\n", + "0 {'street': 'Kulas Light', 'suite': 'Apt. 556',... 1-770-736-8031 x56442 \n", + "1 {'street': 'Victor Plains', 'suite': 'Suite 87... 010-692-6593 x09125 \n", + "2 {'street': 'Douglas Extension', 'suite': 'Suit... 1-463-123-4447 \n", + "3 {'street': 'Hoeger Mall', 'suite': 'Apt. 692',... 493-170-9623 x156 \n", + "4 {'street': 'Skiles Walks', 'suite': 'Suite 351... (254)954-1289 \n", + "5 {'street': 'Norberto Crossing', 'suite': 'Apt.... 1-477-935-8478 x6430 \n", + "6 {'street': 'Rex Trail', 'suite': 'Suite 280', ... 210.067.6132 \n", + "7 {'street': 'Ellsworth Summit', 'suite': 'Suite... 586.493.6943 x140 \n", + "8 {'street': 'Dayna Park', 'suite': 'Suite 449',... (775)976-6794 x41206 \n", + "9 {'street': 'Kattie Turnpike', 'suite': 'Suite ... 024-648-3804 \n", + "\n", + " website company \n", + "0 hildegard.org {'name': 'Romaguera-Crona', 'catchPhrase': 'Mu... \n", + "1 anastasia.net {'name': 'Deckow-Crist', 'catchPhrase': 'Proac... \n", + "2 ramiro.info {'name': 'Romaguera-Jacobson', 'catchPhrase': ... \n", + "3 kale.biz {'name': 'Robel-Corkery', 'catchPhrase': 'Mult... \n", + "4 demarco.info {'name': 'Keebler LLC', 'catchPhrase': 'User-c... \n", + "5 ola.org {'name': 'Considine-Lockman', 'catchPhrase': '... \n", + "6 elvis.io {'name': 'Johns Group', 'catchPhrase': 'Config... \n", + "7 jacynthe.com {'name': 'Abernathy Group', 'catchPhrase': 'Im... \n", + "8 conrad.com {'name': 'Yost and Sons', 'catchPhrase': 'Swit... \n", + "9 ambrose.net {'name': 'Hoeger LLC', 'catchPhrase': 'Central... " + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idnameusernameemailaddressphonewebsitecompany
01Leanne GrahamBretSincere@april.biz{'street': 'Kulas Light', 'suite': 'Apt. 556',...1-770-736-8031 x56442hildegard.org{'name': 'Romaguera-Crona', 'catchPhrase': 'Mu...
12Ervin HowellAntonetteShanna@melissa.tv{'street': 'Victor Plains', 'suite': 'Suite 87...010-692-6593 x09125anastasia.net{'name': 'Deckow-Crist', 'catchPhrase': 'Proac...
23Clementine BauchSamanthaNathan@yesenia.net{'street': 'Douglas Extension', 'suite': 'Suit...1-463-123-4447ramiro.info{'name': 'Romaguera-Jacobson', 'catchPhrase': ...
34Patricia LebsackKarianneJulianne.OConner@kory.org{'street': 'Hoeger Mall', 'suite': 'Apt. 692',...493-170-9623 x156kale.biz{'name': 'Robel-Corkery', 'catchPhrase': 'Mult...
45Chelsey DietrichKamrenLucio_Hettinger@annie.ca{'street': 'Skiles Walks', 'suite': 'Suite 351...(254)954-1289demarco.info{'name': 'Keebler LLC', 'catchPhrase': 'User-c...
56Mrs. Dennis SchulistLeopoldo_CorkeryKarley_Dach@jasper.info{'street': 'Norberto Crossing', 'suite': 'Apt....1-477-935-8478 x6430ola.org{'name': 'Considine-Lockman', 'catchPhrase': '...
67Kurtis WeissnatElwyn.SkilesTelly.Hoeger@billy.biz{'street': 'Rex Trail', 'suite': 'Suite 280', ...210.067.6132elvis.io{'name': 'Johns Group', 'catchPhrase': 'Config...
78Nicholas Runolfsdottir VMaxime_NienowSherwood@rosamond.me{'street': 'Ellsworth Summit', 'suite': 'Suite...586.493.6943 x140jacynthe.com{'name': 'Abernathy Group', 'catchPhrase': 'Im...
89Glenna ReichertDelphineChaim_McDermott@dana.io{'street': 'Dayna Park', 'suite': 'Suite 449',...(775)976-6794 x41206conrad.com{'name': 'Yost and Sons', 'catchPhrase': 'Swit...
910Clementina DuBuqueMoriah.StantonRey.Padberg@karina.biz{'street': 'Kattie Turnpike', 'suite': 'Suite ...024-648-3804ambrose.net{'name': 'Hoeger LLC', 'catchPhrase': 'Central...
\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"pd\",\n \"rows\": 10,\n \"fields\": [\n {\n \"column\": \"id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 3,\n \"min\": 1,\n \"max\": 10,\n \"num_unique_values\": 10,\n \"samples\": [\n 9,\n 2,\n 6\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"name\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 10,\n \"samples\": [\n \"Glenna Reichert\",\n \"Ervin Howell\",\n \"Mrs. Dennis Schulist\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"username\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 10,\n \"samples\": [\n \"Delphine\",\n \"Antonette\",\n \"Leopoldo_Corkery\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"email\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 10,\n \"samples\": [\n \"Chaim_McDermott@dana.io\",\n \"Shanna@melissa.tv\",\n \"Karley_Dach@jasper.info\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"address\",\n \"properties\": {\n \"dtype\": \"object\",\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"phone\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 10,\n \"samples\": [\n \"(775)976-6794 x41206\",\n \"010-692-6593 x09125\",\n \"1-477-935-8478 x6430\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"website\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 10,\n \"samples\": [\n \"conrad.com\",\n \"anastasia.net\",\n \"ola.org\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"company\",\n \"properties\": {\n \"dtype\": \"object\",\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 61 + } + ] + }, + { + "cell_type": "code", + "source": [ + "temp_df = pd.DataFrame(res.json())" + ], + "metadata": { + "id": "n8yvxy-ZQgnT", + "executionInfo": { + "status": "ok", + "timestamp": 1762182439418, + "user_tz": -360, + "elapsed": 26, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 62, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "temp_df['address']" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 397 + }, + "id": "EZqACVJLQio6", + "executionInfo": { + "status": "ok", + "timestamp": 1762182484628, + "user_tz": -360, + "elapsed": 21, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "619437b3-94ab-4eb9-d5ff-750cfcc46543" + }, + "execution_count": 63, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "0 {'street': 'Kulas Light', 'suite': 'Apt. 556',...\n", + "1 {'street': 'Victor Plains', 'suite': 'Suite 87...\n", + "2 {'street': 'Douglas Extension', 'suite': 'Suit...\n", + "3 {'street': 'Hoeger Mall', 'suite': 'Apt. 692',...\n", + "4 {'street': 'Skiles Walks', 'suite': 'Suite 351...\n", + "5 {'street': 'Norberto Crossing', 'suite': 'Apt....\n", + "6 {'street': 'Rex Trail', 'suite': 'Suite 280', ...\n", + "7 {'street': 'Ellsworth Summit', 'suite': 'Suite...\n", + "8 {'street': 'Dayna Park', 'suite': 'Suite 449',...\n", + "9 {'street': 'Kattie Turnpike', 'suite': 'Suite ...\n", + "Name: address, dtype: object" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
address
0{'street': 'Kulas Light', 'suite': 'Apt. 556',...
1{'street': 'Victor Plains', 'suite': 'Suite 87...
2{'street': 'Douglas Extension', 'suite': 'Suit...
3{'street': 'Hoeger Mall', 'suite': 'Apt. 692',...
4{'street': 'Skiles Walks', 'suite': 'Suite 351...
5{'street': 'Norberto Crossing', 'suite': 'Apt....
6{'street': 'Rex Trail', 'suite': 'Suite 280', ...
7{'street': 'Ellsworth Summit', 'suite': 'Suite...
8{'street': 'Dayna Park', 'suite': 'Suite 449',...
9{'street': 'Kattie Turnpike', 'suite': 'Suite ...
\n", + "

" + ] + }, + "metadata": {}, + "execution_count": 63 + } + ] + }, + { + "cell_type": "code", + "source": [ + "temp_df['address'][0]['street']" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 36 + }, + "id": "PILPSh09Qugz", + "executionInfo": { + "status": "ok", + "timestamp": 1762182640831, + "user_tz": -360, + "elapsed": 53, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "94eb756d-f6ab-4f76-90b7-44a15bec6d1e" + }, + "execution_count": 68, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "'Kulas Light'" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "string" + } + }, + "metadata": {}, + "execution_count": 68 + } + ] + }, + { + "cell_type": "code", + "source": [ + "temp_df['address'].apply(lambda x: x['street'])" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 397 + }, + "id": "YIt1HpMdRY-S", + "executionInfo": { + "status": "ok", + "timestamp": 1762182671856, + "user_tz": -360, + "elapsed": 65, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "765bd120-5a97-43a0-c577-d0f22d509db6" + }, + "execution_count": 70, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "0 Kulas Light\n", + "1 Victor Plains\n", + "2 Douglas Extension\n", + "3 Hoeger Mall\n", + "4 Skiles Walks\n", + "5 Norberto Crossing\n", + "6 Rex Trail\n", + "7 Ellsworth Summit\n", + "8 Dayna Park\n", + "9 Kattie Turnpike\n", + "Name: address, dtype: object" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
address
0Kulas Light
1Victor Plains
2Douglas Extension
3Hoeger Mall
4Skiles Walks
5Norberto Crossing
6Rex Trail
7Ellsworth Summit
8Dayna Park
9Kattie Turnpike
\n", + "

" + ] + }, + "metadata": {}, + "execution_count": 70 + } + ] + }, + { + "cell_type": "code", + "source": [ + "temp_df['Street'] = temp_df['address'].apply(lambda x: x['street'])" + ], + "metadata": { + "id": "EKJ_eMKLQ53j", + "executionInfo": { + "status": "ok", + "timestamp": 1762182685069, + "user_tz": -360, + "elapsed": 37, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 71, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "temp_df" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 796 + }, + "id": "3YUJKPpOReq7", + "executionInfo": { + "status": "ok", + "timestamp": 1762182697661, + "user_tz": -360, + "elapsed": 1297, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "338dc645-ed97-4f66-f0be-2517f20807e2" + }, + "execution_count": 72, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " id name username email \\\n", + "0 1 Leanne Graham Bret Sincere@april.biz \n", + "1 2 Ervin Howell Antonette Shanna@melissa.tv \n", + "2 3 Clementine Bauch Samantha Nathan@yesenia.net \n", + "3 4 Patricia Lebsack Karianne Julianne.OConner@kory.org \n", + "4 5 Chelsey Dietrich Kamren Lucio_Hettinger@annie.ca \n", + "5 6 Mrs. Dennis Schulist Leopoldo_Corkery Karley_Dach@jasper.info \n", + "6 7 Kurtis Weissnat Elwyn.Skiles Telly.Hoeger@billy.biz \n", + "7 8 Nicholas Runolfsdottir V Maxime_Nienow Sherwood@rosamond.me \n", + "8 9 Glenna Reichert Delphine Chaim_McDermott@dana.io \n", + "9 10 Clementina DuBuque Moriah.Stanton Rey.Padberg@karina.biz \n", + "\n", + " address phone \\\n", + "0 {'street': 'Kulas Light', 'suite': 'Apt. 556',... 1-770-736-8031 x56442 \n", + "1 {'street': 'Victor Plains', 'suite': 'Suite 87... 010-692-6593 x09125 \n", + "2 {'street': 'Douglas Extension', 'suite': 'Suit... 1-463-123-4447 \n", + "3 {'street': 'Hoeger Mall', 'suite': 'Apt. 692',... 493-170-9623 x156 \n", + "4 {'street': 'Skiles Walks', 'suite': 'Suite 351... (254)954-1289 \n", + "5 {'street': 'Norberto Crossing', 'suite': 'Apt.... 1-477-935-8478 x6430 \n", + "6 {'street': 'Rex Trail', 'suite': 'Suite 280', ... 210.067.6132 \n", + "7 {'street': 'Ellsworth Summit', 'suite': 'Suite... 586.493.6943 x140 \n", + "8 {'street': 'Dayna Park', 'suite': 'Suite 449',... (775)976-6794 x41206 \n", + "9 {'street': 'Kattie Turnpike', 'suite': 'Suite ... 024-648-3804 \n", + "\n", + " website company \\\n", + "0 hildegard.org {'name': 'Romaguera-Crona', 'catchPhrase': 'Mu... \n", + "1 anastasia.net {'name': 'Deckow-Crist', 'catchPhrase': 'Proac... \n", + "2 ramiro.info {'name': 'Romaguera-Jacobson', 'catchPhrase': ... \n", + "3 kale.biz {'name': 'Robel-Corkery', 'catchPhrase': 'Mult... \n", + "4 demarco.info {'name': 'Keebler LLC', 'catchPhrase': 'User-c... \n", + "5 ola.org {'name': 'Considine-Lockman', 'catchPhrase': '... \n", + "6 elvis.io {'name': 'Johns Group', 'catchPhrase': 'Config... \n", + "7 jacynthe.com {'name': 'Abernathy Group', 'catchPhrase': 'Im... \n", + "8 conrad.com {'name': 'Yost and Sons', 'catchPhrase': 'Swit... \n", + "9 ambrose.net {'name': 'Hoeger LLC', 'catchPhrase': 'Central... \n", + "\n", + " Street \n", + "0 Kulas Light \n", + "1 Victor Plains \n", + "2 Douglas Extension \n", + "3 Hoeger Mall \n", + "4 Skiles Walks \n", + "5 Norberto Crossing \n", + "6 Rex Trail \n", + "7 Ellsworth Summit \n", + "8 Dayna Park \n", + "9 Kattie Turnpike " + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idnameusernameemailaddressphonewebsitecompanyStreet
01Leanne GrahamBretSincere@april.biz{'street': 'Kulas Light', 'suite': 'Apt. 556',...1-770-736-8031 x56442hildegard.org{'name': 'Romaguera-Crona', 'catchPhrase': 'Mu...Kulas Light
12Ervin HowellAntonetteShanna@melissa.tv{'street': 'Victor Plains', 'suite': 'Suite 87...010-692-6593 x09125anastasia.net{'name': 'Deckow-Crist', 'catchPhrase': 'Proac...Victor Plains
23Clementine BauchSamanthaNathan@yesenia.net{'street': 'Douglas Extension', 'suite': 'Suit...1-463-123-4447ramiro.info{'name': 'Romaguera-Jacobson', 'catchPhrase': ...Douglas Extension
34Patricia LebsackKarianneJulianne.OConner@kory.org{'street': 'Hoeger Mall', 'suite': 'Apt. 692',...493-170-9623 x156kale.biz{'name': 'Robel-Corkery', 'catchPhrase': 'Mult...Hoeger Mall
45Chelsey DietrichKamrenLucio_Hettinger@annie.ca{'street': 'Skiles Walks', 'suite': 'Suite 351...(254)954-1289demarco.info{'name': 'Keebler LLC', 'catchPhrase': 'User-c...Skiles Walks
56Mrs. Dennis SchulistLeopoldo_CorkeryKarley_Dach@jasper.info{'street': 'Norberto Crossing', 'suite': 'Apt....1-477-935-8478 x6430ola.org{'name': 'Considine-Lockman', 'catchPhrase': '...Norberto Crossing
67Kurtis WeissnatElwyn.SkilesTelly.Hoeger@billy.biz{'street': 'Rex Trail', 'suite': 'Suite 280', ...210.067.6132elvis.io{'name': 'Johns Group', 'catchPhrase': 'Config...Rex Trail
78Nicholas Runolfsdottir VMaxime_NienowSherwood@rosamond.me{'street': 'Ellsworth Summit', 'suite': 'Suite...586.493.6943 x140jacynthe.com{'name': 'Abernathy Group', 'catchPhrase': 'Im...Ellsworth Summit
89Glenna ReichertDelphineChaim_McDermott@dana.io{'street': 'Dayna Park', 'suite': 'Suite 449',...(775)976-6794 x41206conrad.com{'name': 'Yost and Sons', 'catchPhrase': 'Swit...Dayna Park
910Clementina DuBuqueMoriah.StantonRey.Padberg@karina.biz{'street': 'Kattie Turnpike', 'suite': 'Suite ...024-648-3804ambrose.net{'name': 'Hoeger LLC', 'catchPhrase': 'Central...Kattie Turnpike
\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + " \n", + " \n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "variable_name": "temp_df", + "summary": "{\n \"name\": \"temp_df\",\n \"rows\": 10,\n \"fields\": [\n {\n \"column\": \"id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 3,\n \"min\": 1,\n \"max\": 10,\n \"num_unique_values\": 10,\n \"samples\": [\n 9,\n 2,\n 6\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"name\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 10,\n \"samples\": [\n \"Glenna Reichert\",\n \"Ervin Howell\",\n \"Mrs. Dennis Schulist\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"username\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 10,\n \"samples\": [\n \"Delphine\",\n \"Antonette\",\n \"Leopoldo_Corkery\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"email\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 10,\n \"samples\": [\n \"Chaim_McDermott@dana.io\",\n \"Shanna@melissa.tv\",\n \"Karley_Dach@jasper.info\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"address\",\n \"properties\": {\n \"dtype\": \"object\",\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"phone\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 10,\n \"samples\": [\n \"(775)976-6794 x41206\",\n \"010-692-6593 x09125\",\n \"1-477-935-8478 x6430\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"website\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 10,\n \"samples\": [\n \"conrad.com\",\n \"anastasia.net\",\n \"ola.org\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"company\",\n \"properties\": {\n \"dtype\": \"object\",\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Street\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 10,\n \"samples\": [\n \"Dayna Park\",\n \"Victor Plains\",\n \"Norberto Crossing\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 72 + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "# **Web Scraping demo**" + ], + "metadata": { + "id": "-j-zUX4fnZkG" + } + }, + { + "cell_type": "code", + "source": [ + "import pandas as pd\n", + "import requests\n", + "import numpy as np\n", + "from bs4 import BeautifulSoup" + ], + "metadata": { + "id": "HoboQ3OGR6pl", + "executionInfo": { + "status": "ok", + "timestamp": 1762183222511, + "user_tz": -360, + "elapsed": 349, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 73, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "headers = {\n", + " \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36\"\n", + "}\n", + "\n", + "res = requests.get('https://en.wikipedia.org/wiki/List_of_companies_of_Bangladesh',headers=headers).text\n" + ], + "metadata": { + "collapsed": true, + "id": "J4W4AsDwThyL", + "executionInfo": { + "status": "ok", + "timestamp": 1762183495023, + "user_tz": -360, + "elapsed": 135, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 82, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "soup = BeautifulSoup(res, 'lxml')" + ], + "metadata": { + "id": "v_H3qKs7UGi0", + "executionInfo": { + "status": "ok", + "timestamp": 1762183496924, + "user_tz": -360, + "elapsed": 103, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 83, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "print(soup.prettify())" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "CYLBOgdWUWJ_", + "executionInfo": { + "status": "ok", + "timestamp": 1762183543173, + "user_tz": -360, + "elapsed": 866, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "b4bb042e-f6ec-4579-c4b5-006c89341049" + }, + "execution_count": 85, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\n", + "\n", + " \n", + " \n", + " \n", + " List of companies of Bangladesh - Wikipedia\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " Jump to content\n", + " \n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " \"\"\n", + " \n", + " \"Wikipedia\"\n", + " \"The\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " Search\n", + " \n", + " \n", + "
\n", + " \n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

\n", + " \n", + " List of companies of Bangladesh\n", + " \n", + "

\n", + "
\n", + " \n", + " \n", + "
\n", + "
\n", + " \n", + "
\n", + " \n", + " \n", + " Edit links\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " From Wikipedia, the free encyclopedia\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " Companies of Bangladesh\n", + "
\n", + "

\n", + " Small, medium and large family owned\n", + " \n", + " conglomerates\n", + " \n", + " dominate over\n", + " \n", + " Bangladesh's economy\n", + " \n", + " .\n", + " \n", + " \n", + " \n", + " [\n", + " \n", + " 1\n", + " \n", + " ]\n", + " \n", + " \n", + " \n", + " Most of these businesses in Bangladesh are grouped as conglomerates unlike other countries.\n", + " \n", + " \n", + " \n", + " [\n", + " \n", + " 2\n", + " \n", + " ]\n", + " \n", + " \n", + " \n", + "

\n", + " \n", + "
\n", + "

\n", + " Notable firms\n", + "

\n", + " \n", + " \n", + " [\n", + " \n", + " \n", + " \n", + " edit\n", + " \n", + " \n", + " \n", + " ]\n", + " \n", + " \n", + "
\n", + "

\n", + " This list includes notable\n", + " \n", + " companies\n", + " \n", + " with primary\n", + " \n", + " headquarters\n", + " \n", + " located in the country. The industry and sector follow the\n", + " \n", + " Industry Classification Benchmark\n", + " \n", + " taxonomy. Organizations, which have ceased operations are included and noted as defunct.\n", + "

\n", + "
\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
\n", + " Notable companies\n", + "
\n", + " \n", + " Status: P=Private, S=State; A=Active, D=Defunct\n", + " \n", + "
\n", + " Name\n", + " \n", + " Industry\n", + " \n", + " Sector\n", + " \n", + " Headquarters\n", + " \n", + " Founded\n", + " \n", + " Notes\n", + " \n", + " Status\n", + "
\n", + " \n", + "
\n", + " \n", + " A K Khan & Company\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1945\n", + " \n", + " Textiles, logistics, water, financial services, telecoms, agriculture\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Aarong\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Personal & household goods\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1978\n", + " \n", + " General retail\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Abul Khair Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Chattogram\n", + " \n", + " \n", + " 1953\n", + " \n", + " Steel, cement, tobacco, food & beverage, consumer product, automobile\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Adamjee Jute Mills\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " \n", + " Narayanganj\n", + " \n", + " \n", + " 1951\n", + " \n", + " Jute mill, defunct 2002\n", + " \n", + " P\n", + " \n", + " D\n", + "
\n", + " \n", + " Advanced Chemical Industries (ACI)\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1968\n", + " \n", + " Chemicals, foods, pharma, consumer products, logistics, consumer electronics, automobile services, communication\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Agamee Prakashani\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1986\n", + " \n", + " Publishing\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Agrani Bank\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1972\n", + " \n", + " State-owned bank\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Airtel Bangladesh\n", + " \n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2007\n", + " \n", + " 4G cellular, part of\n", + " \n", + " Axiata\n", + " \n", + " (Malaysia)\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Akij\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1940\n", + " \n", + " Textiles, tobacco, food & beverage, cement, ceramics, printing, pharma, consumer products, automobile, hospital\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Alim Industries Limited\n", + " \n", + " \n", + " Industrials\n", + " \n", + " -\n", + " \n", + " \n", + " Sylhet\n", + " \n", + " \n", + " 1990\n", + " \n", + " Agricultural machinery\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " Amar Desh\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2004\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Adamjee Jute Mills\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " \n", + " Narayanganj\n", + " \n", + " \n", + " 1951\n", + " \n", + " Jute mill, defunct 2002\n", + " \n", + " P\n", + " \n", + " D\n", + "
\n", + " \n", + " Asian TV\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2013\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " ATN Bangla\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1997\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " ATN News\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2010\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Bangladesh Bank\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1971\n", + " \n", + " State bank\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Bangladesh Betar\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1939\n", + " \n", + " state-owned radio broadcaster\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Bangladesh Machine Tools Factory\n", + " \n", + " \n", + " Industrials\n", + " \n", + " Defense\n", + " \n", + " \n", + " Gazipur City\n", + " \n", + " \n", + " 1979\n", + " \n", + " Defense vehicles\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Bangladesh Petroleum Corporation\n", + " \n", + " \n", + " Oil & gas\n", + " \n", + " Exploration & production\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1976\n", + " \n", + " State-owned petrochemical\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " Bangladesh Pratidin\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2010\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Bangladesh Railway\n", + " \n", + " \n", + " Industrials\n", + " \n", + " Railroads\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1862\n", + " \n", + " Railroads\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Bangladesh Shipping Corporation\n", + " \n", + " \n", + " Industrials\n", + " \n", + " Marine transportation\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1972\n", + " \n", + " State-owned shipping\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Bangladesh Telecommunications Company Limited\n", + " \n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1971\n", + " \n", + " State-owned mobile telecommunications\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Bangladesh Television\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1964\n", + " \n", + " State-owned TV broadcaster\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Banglalink\n", + " \n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1996\n", + " \n", + " \n", + " 4G\n", + " \n", + " cellular\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Banglalion\n", + " \n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2008\n", + " \n", + " \n", + " 4G LTE\n", + " \n", + " wireless broadband\n", + " \n", + " P\n", + " \n", + " D\n", + "
\n", + " \n", + " Banglavision\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2006\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Bashundhara Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " Real estate, media, manufacturing, retail, and construction\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1987\n", + " \n", + " Property development, cement, paper, steel, food, media\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Bengal Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1969\n", + " \n", + " Consumer goods, construction and development, feed, plastics, cement, food, media\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Best Air\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2007\n", + " \n", + " Private airline, defunct 2009\n", + " \n", + " P\n", + " \n", + " D\n", + "
\n", + " \n", + " Beximco Pharma\n", + " \n", + " \n", + " Health care\n", + " \n", + " Pharmaceuticals\n", + " \n", + " \n", + " Gazipur City\n", + " \n", + " \n", + " 1980\n", + " \n", + " Pharmaceuticals, part of\n", + " \n", + " Beximco\n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Beximco\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1972\n", + " \n", + " Pharmaceuticals, textiles, ceramics, aviation, media, finance, real estate, construction\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " Bhorer Kagoj\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1992\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Bikroy.com\n", + " \n", + " \n", + " Technology\n", + " \n", + " Software\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2012\n", + " \n", + " E-commerce\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Biman Bangladesh Airlines\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1972\n", + " \n", + " \n", + " Flag carrier\n", + " \n", + " airline\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Bismillah Airlines\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1998\n", + " \n", + " Airline\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Bismillah Group\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1988\n", + " \n", + " Textiles and towels\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " BRAC Bank Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2001\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " BSRM\n", + " \n", + " \n", + " Basic materials\n", + " \n", + " Iron & steel\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1952\n", + " \n", + " Steel products\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " BTCL\n", + " \n", + " \n", + " Telecommunications\n", + " \n", + " Fixed line telecommunications\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1971\n", + " \n", + " Fixed line, broadband Internet\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Building Technology & Ideas\n", + " \n", + " \n", + " Financials\n", + " \n", + " Real estate holding & development\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1984\n", + " \n", + " Financial services, real estate\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Channel 9\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2011\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Channel 24\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2012\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Channel i\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1999\n", + " \n", + " Private television network\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " City Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1972\n", + " \n", + " Consumer goods, foods, steel, printing & packaging, shipping, power & energy, financials\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Citycell\n", + " \n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1989\n", + " \n", + " \n", + " CDMA\n", + " \n", + " mobile communications\n", + " \n", + " P\n", + " \n", + " D\n", + "
\n", + " \n", + " Concord Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " Construction and real estate\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1973\n", + " \n", + " Construction, real estate, architecture & design, communication, entertainment, hospitality, garments\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Confidence Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " Engineering and power generation\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1991\n", + " \n", + " Engineering, concrete, energy, paints\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Cooper's\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Food & beverage\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1984\n", + " \n", + " Bakery\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Credit Rating Information and Services Limited\n", + " \n", + " (CRISL)\n", + " \n", + " Financials\n", + " \n", + " Consumer finance\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1992\n", + " \n", + " Credit ratings\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " Daily Inqilab\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1986\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " DBC News\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2016\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " DBL Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1991\n", + " \n", + " Textiles, pharmaceuticals, ICT, semiconductors\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Deepto TV\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2015\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Delta Brac Housing Finance Corporation\n", + " \n", + " \n", + " Financials\n", + " \n", + " Consumer finance\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1996\n", + " \n", + " Financial services\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Desh TV\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2009\n", + " \n", + " Television network\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Dhaka Bank Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1995\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Dragon Group\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1980\n", + " \n", + " Clothing\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Dutch Bangla Bank\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1995\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Eastern Bank Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1992\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Eastern Housing Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Real estate holding & development\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1965\n", + " \n", + " Real estate\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Ekattor TV\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2012\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Ekushey Television\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2000\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Eskayef Bangladesh\n", + " \n", + " \n", + " Health care\n", + " \n", + " Pharmaceuticals\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1990\n", + " \n", + " Pharmaceuticals\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " EXIM Bank\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1999\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " FMC Dockyard Limited\n", + " \n", + " \n", + " Industrials\n", + " \n", + " Commercial vehicles & trucks\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1998\n", + " \n", + " Shipyard\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Gazi Group\n", + " \n", + " \n", + " Conglometates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1974\n", + " \n", + " Tyres, plastic products, water tanks\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " General Pharma\n", + " \n", + " \n", + " Health care\n", + " \n", + " Pharmaceuticals\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1984\n", + " \n", + " Pharmaceuticals\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Globe Janakantha Shilpa Paribar\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1969\n", + " \n", + " Construction, engineering, electrical cables, information technology, printing, media\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " GMG Airlines\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1997\n", + " \n", + " Airline, defunct 2012\n", + " \n", + " P\n", + " \n", + " D\n", + "
\n", + " \n", + " Grameen Bank\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1983\n", + " \n", + " Microfinance\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Grameenphone\n", + " \n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1997\n", + " \n", + " \n", + " 4G\n", + " \n", + " cellular\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " GTV\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2011\n", + " \n", + " Private television network\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Habib Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1947\n", + " \n", + " Aviation, cement, paper, energy, steel, textile\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Ha-meem Group\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1984\n", + " \n", + " \n", + " \n", + " [\n", + " \n", + " 3\n", + " \n", + " ]\n", + " \n", + " \n", + " \n", + " \n", + " Textiles, leather, jute mill\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Hatil\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Furnishings\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1989\n", + " \n", + " Furniture\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " HRC Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1991\n", + " \n", + " Shipping, media, real estate, agri-products, IT\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " IDLC Asset Management Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Nonequity investment instruments\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2016\n", + " \n", + " Mutual funds\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " IDLC Finance Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Specialty finance\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1985\n", + " \n", + " Loans, deposits, commercial financials\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " IDLC Investments Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Specialty finance\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2010\n", + " \n", + " Merchant bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " IDLC Securities Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Specialty finance\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2006\n", + " \n", + " Stockbroker\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " IFIC Bank\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1976\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Impress Group\n", + " \n", + " \n", + " Conglomerate\n", + " \n", + " Pharmaceuticals\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1999\n", + " \n", + " Pharmaceuticals\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Independent Television\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2010\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Investment Corporation of Bangladesh\n", + " \n", + " (ICB)\n", + " \n", + " Financials\n", + " \n", + " Investment services\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1976\n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Islami Bank Bangladesh Ltd\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1983\n", + " \n", + " Private bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Jaaz Multimedia\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2011\n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " Jaijaidin\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2006\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Jamuna Bank\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2001\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Jamuna Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1974\n", + " \n", + " Textiles, chemicals, construction, leather, engineering, beverages, media, advertisement\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Jamuna Oil Company\n", + " \n", + " \n", + " Oil & gas\n", + " \n", + " Exploration & production\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1964\n", + " \n", + " Secondary oil products, part of\n", + " \n", + " Bangladesh Petroleum Corporation\n", + " \n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Jamuna Television\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2014\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " Janakantha\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1993\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Janata Bank\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1971\n", + " \n", + " State-owned bank\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Jiban Bima Corporation\n", + " \n", + " \n", + " Financials\n", + " \n", + " Life insurance\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1973\n", + " \n", + " State-owned life insurance company\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " Jugantor\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2000\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " Kaler Kantho\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2010\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Kallol Group of Companies\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1972\n", + " \n", + " Foods and beverage, hygiene, fabric care, watch and instruments\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Karnaphuli Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1954\n", + " \n", + " Automobiles, retails, media, ports, shipping, real estate\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Kazi Farms Group\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Food products\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1996\n", + " \n", + " Poultry\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " KDS Group\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1983\n", + " \n", + " Textiles\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Khulna Shipyard\n", + " \n", + " \n", + " Industrials\n", + " \n", + " Commercial vehicles & trucks\n", + " \n", + " \n", + " Khulna\n", + " \n", + " \n", + " 1957\n", + " \n", + " State-owned shipyard\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " M. M. Ispahani Limited\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1820\n", + " \n", + " Tea, textiles, jute, shipping, real estate, food\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Maasranga Television\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2011\n", + " \n", + " Private television Network\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " Manab Zamin\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1998\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Mask Associates\n", + " \n", + " \n", + " Private limited\n", + " \n", + " Jute\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1982\n", + " \n", + " Jute manufacturing and export\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Meghna Group of Industries\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1976\n", + " \n", + " \n", + " \n", + " [\n", + " \n", + " 4\n", + " \n", + " ]\n", + " \n", + " \n", + " \n", + " \n", + " Chemicals, foods and beverages, printing and packaging, shipping, insurance\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Meghna Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1989\n", + " \n", + " Automobile, engineering (bicycle), cement, packaging, textile\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Mohona TV\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2010\n", + " \n", + " Private television network\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Monsoon Films\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2010\n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Nasir Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1977\n", + " \n", + " Glass, melamine, printing and packaging, light bulbs\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Nassa Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1990\n", + " \n", + " Textiles, banking, real estate, financial services, travel, education\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " National Bank Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1983\n", + " \n", + " Public limited bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Navana Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1964\n", + " \n", + " Marketing, construction, real estate\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " New Age\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2003\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " News24\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2016\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Novoair\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2007\n", + " \n", + " Private airline\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " NTV\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2003\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " One Bank Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1999\n", + " \n", + " Commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Orion Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1985\n", + " \n", + " \n", + " \n", + " [\n", + " \n", + " 5\n", + " \n", + " ]\n", + " \n", + " \n", + " \n", + " \n", + " Pharmaceuticals, real estate, construction, power, hospitality, textiles, aviation\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Otobi\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Furnishings\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1975\n", + " \n", + " Furniture\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Padma Oil Company\n", + " \n", + " \n", + " Oil & gas\n", + " \n", + " Exploration & production\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1965\n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Paradise Group of Industries\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Narayanganj\n", + " \n", + " \n", + " 1985\n", + " \n", + " Electrical cable, textiles, engineering, real estate\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Partex Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1959\n", + " \n", + " Food & beverages, steel, real estate, furniture, plastics, paper, power & energy, jute, agribusiness, shipyards, shipping, textiles, construction, IT, cabling, aviation, garments, PVC, ceramics, telecommunication, Oil\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Petrobangla\n", + " \n", + " \n", + " Oil & gas\n", + " \n", + " Exploration & production\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1972\n", + " \n", + " National oil company\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Power Grid Company of Bangladesh\n", + " \n", + " \n", + " Utilities\n", + " \n", + " Conventional electricity\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1996\n", + " \n", + " \n", + " \n", + " [\n", + " \n", + " 6\n", + " \n", + " ]\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Pragoti\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Automobiles\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1966\n", + " \n", + " Automobiles\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " PRAN-RFL Group\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Pran Food and Beverage & RFL Plastic and Home Appliance\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1981\n", + " \n", + " Food and beverage, plastic products, home appliance\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Pride Group\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1958\n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Prime Bank Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1995\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " Prothom Alo\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1998\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Pubali Bank\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1959\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Radio Foorti\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2006\n", + " \n", + " Radio\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Radio Today\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2006\n", + " \n", + " Radio\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Rahimafrooz\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1954\n", + " \n", + " Retail, electronics, automotive, oil & gas\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Rajshahi Krishi Unnayan Bank\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Rajshahi\n", + " \n", + " \n", + " 1986\n", + " \n", + " State-owned bank\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Rangs Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1979\n", + " \n", + " Automobile, electronics, real estate, shipping\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " RanksTel\n", + " \n", + " \n", + " Telecommunications\n", + " \n", + " Fixed line telecommunications\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2004\n", + " \n", + " Fixed line\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Regent Airways\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2010\n", + " \n", + " Private airline, part of\n", + " \n", + " Habib Group\n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Regent Power Limited\n", + " \n", + " \n", + " Utilities\n", + " \n", + " Conventional electricity\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 2007\n", + " \n", + " Part of\n", + " \n", + " Habib Group\n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Renata Limited\n", + " \n", + " \n", + " Health care\n", + " \n", + " Pharmaceuticals\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1993\n", + " \n", + " Pharmaceuticals\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Robi\n", + " \n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1997\n", + " \n", + " \n", + " 4G\n", + " \n", + " cellular\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " RTV\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2005\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Runner automobiles Ltd.\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Automobiles\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2000\n", + " \n", + " Automobiles\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Rupali Bank\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1972\n", + " \n", + " State-owned bank\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Sadharan Bima Corporation\n", + " \n", + " \n", + " Financials\n", + " \n", + " Full line insurance\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1973\n", + " \n", + " State-owned non-life insurance company\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Sajeeb Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1982\n", + " \n", + " Food & beverage, basic materials, construction, oil & gas, industrial transportation, real estate\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " SA TV\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2013\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " Samakal\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2005\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " S. Alam Group of Industries\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1985\n", + " \n", + " Food & beverage, basic materials, construction, oil & gas, industrial transportation, real estate\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Sheltech\n", + " \n", + " \n", + " Financials\n", + " \n", + " Real estate holding & development\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1988\n", + " \n", + " Real estate\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Shyampur Sugar Mills\n", + " \n", + " \n", + " Consumer goods\n", + " \n", + " Food products\n", + " \n", + " \n", + " Rangpur City\n", + " \n", + " \n", + " 1967\n", + " \n", + " Sugar; falls under the\n", + " \n", + " Bangladesh Sugar and Food Industries Corporation\n", + " \n", + " \n", + " \n", + " \n", + " [\n", + " \n", + " 7\n", + " \n", + " ]\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " [\n", + " \n", + " 8\n", + " \n", + " ]\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " [\n", + " \n", + " 9\n", + " \n", + " ]\n", + " \n", + " \n", + " \n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Sikder Group\n", + " \n", + " \n", + " Conglomerate\n", + " \n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1950\n", + " \n", + " Textiles, power, real estate, healthcare, banking, insurance, aviation\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Somoy TV\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2010\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Sonali Bank\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1972\n", + " \n", + " State-owned bank\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Southeast Bank Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1995\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Square Group\n", + " \n", + " \n", + " Health care\n", + " \n", + " Pharmaceuticals\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1958\n", + " \n", + " Pharmaceuticals\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " STS Group\n", + " \n", + " \n", + " Health care\n", + " \n", + " Conglomerates\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1997\n", + " \n", + " Education and healthcare\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Summit Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1985\n", + " \n", + " Telecommunications, oil & gas, industrial transportation\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " T K Group of Industries\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 1972\n", + " \n", + " Consumer goods, edible oil, paper, steel, tea, basic materials, industrial transportation, financials\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " The ACME Laboratories Ltd\n", + " \n", + " \n", + " Health care\n", + " \n", + " Pharmaceuticals\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1954\n", + " \n", + " Pharmaceuticals\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " The Daily Ittefaq\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1953\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " The Daily Star\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1991\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " \n", + " The Sangbad\n", + " \n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1951\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Titas Gas\n", + " \n", + " \n", + " Oil & gas\n", + " \n", + " Exploration & production\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1964\n", + " \n", + " Natural gas distributor\n", + " \n", + " S\n", + " \n", + " A\n", + "
\n", + " \n", + " Transcom Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1985\n", + " \n", + " Beverage, pharma, newspaper, radio, electronics, foods\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Trust Bank Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1999\n", + " \n", + " Commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " United Airways\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2005\n", + " \n", + " Private airline, defunct 2016\n", + " \n", + " \n", + " \n", + " [\n", + " \n", + " 10\n", + " \n", + " ]\n", + " \n", + " \n", + " \n", + " \n", + " P\n", + " \n", + " D\n", + "
\n", + " \n", + " United Finance\n", + " \n", + " \n", + " Financials\n", + " \n", + " Financial services\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1989\n", + " \n", + " Financial services\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " United Group\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1978\n", + " \n", + " Power, manufacturing, healthcare, education, real estate, shipping, retail services\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " US-Bangla Airlines\n", + " \n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 2013\n", + " \n", + " Private airline\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Uttara Bank Limited\n", + " \n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1965\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Walton\n", + " \n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " \n", + " Dhaka\n", + " \n", + " \n", + " 1977\n", + " \n", + " Automobiles, consumer electronics, household goods, technology hardware, electronic equipment\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + " \n", + " Western Marine Shipyard\n", + " \n", + " \n", + " Industrials\n", + " \n", + " Commercial vehicles & trucks\n", + " \n", + " \n", + " Chittagong\n", + " \n", + " \n", + " 2000\n", + " \n", + " Shipyard\n", + " \n", + " P\n", + " \n", + " A\n", + "
\n", + "
\n", + "

\n", + " See also\n", + "

\n", + " \n", + " \n", + " [\n", + " \n", + " \n", + " \n", + " edit\n", + " \n", + " \n", + " \n", + " ]\n", + " \n", + " \n", + "
\n", + " \n", + "
\n", + "

\n", + " References\n", + "

\n", + " \n", + " \n", + " [\n", + " \n", + " \n", + " \n", + " edit\n", + " \n", + " \n", + " \n", + " ]\n", + " \n", + " \n", + "
\n", + " \n", + "
\n", + "
    \n", + "
  1. \n", + " \n", + " \n", + " \n", + " ^\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \"Towards Accelerated, Inclusive and Sustainable Growth in Bangladesh\"\n", + " \n", + " .\n", + " \n", + " worldbank.org\n", + " \n", + " \n", + " . Retrieved\n", + " \n", + " 19 November\n", + " \n", + " 2015\n", + " \n", + " .\n", + " \n", + " \n", + " \n", + " \n", + "
  2. \n", + "
  3. \n", + " \n", + " \n", + " \n", + " ^\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \"The Financial Express\"\n", + " \n", + " .\n", + " \n", + " \n", + " \n", + " \n", + "
  4. \n", + "
  5. \n", + " \n", + " \n", + " \n", + " ^\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \"About Us | Leading wholesale clothing manufacturer in Bangladesh\"\n", + " \n", + " . Hameemgroup.net\n", + " \n", + " . Retrieved\n", + " \n", + " 2017-12-20\n", + " \n", + " \n", + " .\n", + " \n", + " \n", + " \n", + " \n", + "
  6. \n", + "
  7. \n", + " \n", + " \n", + " \n", + " ^\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \"Meghna Group of Industries\"\n", + " \n", + " . Meghnagroup.biz\n", + " \n", + " . Retrieved\n", + " \n", + " 2017-12-20\n", + " \n", + " \n", + " .\n", + " \n", + " \n", + " \n", + " \n", + "
  8. \n", + "
  9. \n", + " \n", + " \n", + " \n", + " ^\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \"Orion Group: Private Company Information\"\n", + " \n", + " . Bloomberg\n", + " \n", + " . Retrieved\n", + " \n", + " 2017-12-20\n", + " \n", + " \n", + " .\n", + " \n", + " \n", + " \n", + " \n", + "
  10. \n", + "
  11. \n", + " \n", + " \n", + " \n", + " ^\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \"Power Grid Company of Bangladesh Limited\"\n", + " \n", + " . PGCB\n", + " \n", + " . Retrieved\n", + " \n", + " 2017-12-20\n", + " \n", + " \n", + " .\n", + " \n", + " \n", + " \n", + " \n", + "
  12. \n", + "
  13. \n", + " \n", + " \n", + " \n", + " ^\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \"Regulator asks DSE to explain technical failure\"\n", + " \n", + " .\n", + " \n", + " The Daily Star\n", + " \n", + " . 2015-05-26\n", + " \n", + " . Retrieved\n", + " \n", + " 2017-12-24\n", + " \n", + " \n", + " .\n", + " \n", + " \n", + " \n", + " \n", + "
  14. \n", + "
  15. \n", + " \n", + " \n", + " \n", + " ^\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \"Huge quantity of sugar lying unsold at Rangpur mills\"\n", + " \n", + " .\n", + " \n", + " The Daily Star\n", + " \n", + " . 2013-04-04\n", + " \n", + " . Retrieved\n", + " \n", + " 2017-12-24\n", + " \n", + " \n", + " .\n", + " \n", + " \n", + " \n", + " \n", + "
  16. \n", + "
  17. \n", + " \n", + " \n", + " \n", + " ^\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \"Rangpur sugar producers fear losses\"\n", + " \n", + " .\n", + " \n", + " The Daily Star\n", + " \n", + " . 2011-11-21\n", + " \n", + " . Retrieved\n", + " \n", + " 2017-12-24\n", + " \n", + " \n", + " .\n", + " \n", + " \n", + " \n", + " \n", + "
  18. \n", + "
  19. \n", + " \n", + " \n", + " \n", + " ^\n", + " \n", + " \n", + " \n", + " \n", + " \"\n", + " \n", + " [1]\n", + " \n", + " .\" CAPA. Retrieved on August 25, 2018. \"United Airways Profile.\"\n", + " \n", + "
  20. \n", + "
\n", + "
\n", + "
\n", + "

\n", + " External links\n", + "

\n", + " \n", + " \n", + " [\n", + " \n", + " \n", + " \n", + " edit\n", + " \n", + " \n", + " \n", + " ]\n", + " \n", + " \n", + "
\n", + " \n", + " \n", + "
\n", + " \n", + " \n", + " Portals\n", + " \n", + " :\n", + " \n", + " \n", + "
\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
\n", + "
\n", + " \n", + " \n", + "
\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
\n", + " \n", + " \n", + " \n", + "
\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + " \n", + " Categories\n", + " \n", + " :\n", + " \n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + " \n", + " List of companies of Bangladesh\n", + " \n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
    \n", + "
\n", + "
\n", + " \n", + " \n", + " \n", + "\n", + "\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "table = soup.find('table')" + ], + "metadata": { + "id": "foK0AJfMU4hj", + "executionInfo": { + "status": "ok", + "timestamp": 1762183726317, + "user_tz": -360, + "elapsed": 37, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 86, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "table" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "m3XhHYiRVckX", + "executionInfo": { + "status": "ok", + "timestamp": 1762183731627, + "user_tz": -360, + "elapsed": 455, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "3768f60c-754a-4c84-84ce-a6951eec6bad" + }, + "execution_count": 87, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
Notable companies
\n", + "Status: P=Private, S=State; A=Active, D=Defunct\n", + "
Name\n", + "Industry\n", + "Sector\n", + "Headquarters\n", + "Founded\n", + "Notes\n", + "Status\n", + "
 \n", + " \n", + "
A K Khan & Company\n", + "Conglomerates\n", + "-\n", + "Chittagong\n", + "1945\n", + "Textiles, logistics, water, financial services, telecoms, agriculture\n", + "P\n", + "A\n", + "
Aarong\n", + "Consumer goods\n", + "Personal & household goods\n", + "Dhaka\n", + "1978\n", + "General retail\n", + "P\n", + "A\n", + "
Abul Khair Group\n", + "Conglomerates\n", + "-\n", + "Chattogram\n", + "1953\n", + "Steel, cement, tobacco, food & beverage, consumer product, automobile\n", + "P\n", + "A\n", + "
Adamjee Jute Mills\n", + "Consumer goods\n", + "Clothing & accessories\n", + "Narayanganj\n", + "1951\n", + "Jute mill, defunct 2002\n", + "P\n", + "D\n", + "
Advanced Chemical Industries (ACI)\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1968\n", + "Chemicals, foods, pharma, consumer products, logistics, consumer electronics, automobile services, communication\n", + "P\n", + "A\n", + "
Agamee Prakashani\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "1986\n", + "Publishing\n", + "P\n", + "A\n", + "
Agrani Bank\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1972\n", + "State-owned bank\n", + "S\n", + "A\n", + "
Airtel Bangladesh\n", + "Telecommunications\n", + "Mobile telecommunications\n", + "Dhaka\n", + "2007\n", + "4G cellular, part of Axiata (Malaysia)\n", + "P\n", + "A\n", + "
Akij\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1940\n", + "Textiles, tobacco, food & beverage, cement, ceramics, printing, pharma, consumer products, automobile, hospital\n", + "P\n", + "A\n", + "
Alim Industries Limited\n", + "Industrials\n", + "-\n", + "Sylhet\n", + "1990\n", + "Agricultural machinery\n", + "P\n", + "A\n", + "
Amar Desh\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "2004\n", + "Newspaper\n", + "P\n", + "A\n", + "
Adamjee Jute Mills\n", + "Consumer goods\n", + "Clothing & accessories\n", + "Narayanganj\n", + "1951\n", + "Jute mill, defunct 2002\n", + "P\n", + "D\n", + "
Asian TV\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2013\n", + "Satellite TV channel\n", + "P\n", + "A\n", + "
ATN Bangla\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "1997\n", + "Satellite TV channel\n", + "P\n", + "A\n", + "
ATN News\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2010\n", + "24-hour news channel\n", + "P\n", + "A\n", + "
Bangladesh Bank\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1971\n", + "State bank\n", + "S\n", + "A\n", + "
Bangladesh Betar\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "1939\n", + "state-owned radio broadcaster\n", + "S\n", + "A\n", + "
Bangladesh Machine Tools Factory\n", + "Industrials\n", + "Defense\n", + "Gazipur City\n", + "1979\n", + "Defense vehicles\n", + "S\n", + "A\n", + "
Bangladesh Petroleum Corporation\n", + "Oil & gas\n", + "Exploration & production\n", + "Dhaka\n", + "1976\n", + "State-owned petrochemical\n", + "S\n", + "A\n", + "
Bangladesh Pratidin\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "2010\n", + "Newspaper\n", + "P\n", + "A\n", + "
Bangladesh Railway\n", + "Industrials\n", + "Railroads\n", + "Dhaka\n", + "1862\n", + "Railroads\n", + "S\n", + "A\n", + "
Bangladesh Shipping Corporation\n", + "Industrials\n", + "Marine transportation\n", + "Chittagong\n", + "1972\n", + "State-owned shipping\n", + "S\n", + "A\n", + "
Bangladesh Telecommunications Company Limited\n", + "Telecommunications\n", + "Mobile telecommunications\n", + "Dhaka\n", + "1971\n", + "State-owned mobile telecommunications\n", + "S\n", + "A\n", + "
Bangladesh Television\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "1964\n", + "State-owned TV broadcaster\n", + "S\n", + "A\n", + "
Banglalink\n", + "Telecommunications\n", + "Mobile telecommunications\n", + "Dhaka\n", + "1996\n", + "4G cellular\n", + "P\n", + "A\n", + "
Banglalion\n", + "Telecommunications\n", + "Mobile telecommunications\n", + "Dhaka\n", + "2008\n", + "4G LTE wireless broadband\n", + "P\n", + "D\n", + "
Banglavision\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2006\n", + "Satellite TV channel\n", + "P\n", + "A\n", + "
Bashundhara Group\n", + "Conglomerates\n", + "Real estate, media, manufacturing, retail, and construction\n", + "Dhaka\n", + "1987\n", + "Property development, cement, paper, steel, food, media\n", + "P\n", + "A\n", + "
Bengal Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1969\n", + "Consumer goods, construction and development, feed, plastics, cement, food, media\n", + "P\n", + "A\n", + "
Best Air\n", + "Consumer services\n", + "Airlines\n", + "Dhaka\n", + "2007\n", + "Private airline, defunct 2009\n", + "P\n", + "D\n", + "
Beximco Pharma\n", + "Health care\n", + "Pharmaceuticals\n", + "Gazipur City\n", + "1980\n", + "Pharmaceuticals, part of Beximco\n", + "P\n", + "A\n", + "
Beximco\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1972\n", + "Pharmaceuticals, textiles, ceramics, aviation, media, finance, real estate, construction\n", + "P\n", + "A\n", + "
Bhorer Kagoj\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "1992\n", + "Newspaper\n", + "P\n", + "A\n", + "
Bikroy.com\n", + "Technology\n", + "Software\n", + "Dhaka\n", + "2012\n", + "E-commerce\n", + "P\n", + "A\n", + "
Biman Bangladesh Airlines\n", + "Consumer services\n", + "Airlines\n", + "Dhaka\n", + "1972\n", + "Flag carrier airline\n", + "P\n", + "A\n", + "
Bismillah Airlines\n", + "Consumer services\n", + "Airlines\n", + "Dhaka\n", + "1998\n", + "Airline\n", + "P\n", + "A\n", + "
Bismillah Group\n", + "Consumer goods\n", + "Clothing & accessories\n", + "Dhaka\n", + "1988\n", + "Textiles and towels\n", + "P\n", + "A\n", + "
BRAC Bank Limited\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "2001\n", + "Private commercial bank\n", + "P\n", + "A\n", + "
BSRM\n", + "Basic materials\n", + "Iron & steel\n", + "Chittagong\n", + "1952\n", + "Steel products\n", + "P\n", + "A\n", + "
BTCL\n", + "Telecommunications\n", + "Fixed line telecommunications\n", + "Dhaka\n", + "1971\n", + "Fixed line, broadband Internet\n", + "P\n", + "A\n", + "
Building Technology & Ideas\n", + "Financials\n", + "Real estate holding & development\n", + "Dhaka\n", + "1984\n", + "Financial services, real estate\n", + "P\n", + "A\n", + "
Channel 9\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2011\n", + "Satellite TV channel\n", + "P\n", + "A\n", + "
Channel 24\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2012\n", + "24-hour news channel\n", + "P\n", + "A\n", + "
Channel i\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "1999\n", + "Private television network\n", + "P\n", + "A\n", + "
City Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1972\n", + "Consumer goods, foods, steel, printing & packaging, shipping, power & energy, financials\n", + "P\n", + "A\n", + "
Citycell\n", + "Telecommunications\n", + "Mobile telecommunications\n", + "Dhaka\n", + "1989\n", + "CDMA mobile communications\n", + "P\n", + "D\n", + "
Concord Group\n", + "Conglomerates\n", + "Construction and real estate\n", + "Dhaka\n", + "1973\n", + "Construction, real estate, architecture & design, communication, entertainment, hospitality, garments\n", + "P\n", + "A\n", + "
Confidence Group\n", + "Conglomerates\n", + "Engineering and power generation\n", + "Dhaka\n", + "1991\n", + "Engineering, concrete, energy, paints\n", + "P\n", + "A\n", + "
Cooper's\n", + "Consumer goods\n", + "Food & beverage\n", + "Dhaka\n", + "1984\n", + "Bakery\n", + "P\n", + "A\n", + "
Credit Rating Information and Services Limited (CRISL)\n", + "Financials\n", + "Consumer finance\n", + "Dhaka\n", + "1992\n", + "Credit ratings\n", + "P\n", + "A\n", + "
Daily Inqilab\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "1986\n", + "Newspaper\n", + "P\n", + "A\n", + "
DBC News\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2016\n", + "24-hour news channel\n", + "P\n", + "A\n", + "
DBL Group\n", + "Conglomerates\n", + "\n", + "Dhaka\n", + "1991\n", + "Textiles, pharmaceuticals, ICT, semiconductors\n", + "P\n", + "A\n", + "
Deepto TV\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2015\n", + "Satellite TV channel\n", + "P\n", + "A\n", + "
Delta Brac Housing Finance Corporation\n", + "Financials\n", + "Consumer finance\n", + "Dhaka\n", + "1996\n", + "Financial services\n", + "P\n", + "A\n", + "
Desh TV\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2009\n", + "Television network\n", + "P\n", + "A\n", + "
Dhaka Bank Limited\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1995\n", + "Private commercial bank\n", + "P\n", + "A\n", + "
Dragon Group\n", + "Consumer goods\n", + "Clothing & accessories\n", + "Dhaka\n", + "1980\n", + "Clothing\n", + "P\n", + "A\n", + "
Dutch Bangla Bank\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1995\n", + "Private commercial bank\n", + "P\n", + "A\n", + "
Eastern Bank Limited\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1992\n", + "Private commercial bank\n", + "P\n", + "A\n", + "
Eastern Housing Limited\n", + "Financials\n", + "Real estate holding & development\n", + "Dhaka\n", + "1965\n", + "Real estate\n", + "P\n", + "A\n", + "
Ekattor TV\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2012\n", + "24-hour news channel\n", + "P\n", + "A\n", + "
Ekushey Television\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2000\n", + "Satellite TV channel\n", + "P\n", + "A\n", + "
Eskayef Bangladesh\n", + "Health care\n", + "Pharmaceuticals\n", + "Dhaka\n", + "1990\n", + "Pharmaceuticals\n", + "P\n", + "A\n", + "
EXIM Bank\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1999\n", + "Private commercial bank\n", + "P\n", + "A\n", + "
FMC Dockyard Limited\n", + "Industrials\n", + "Commercial vehicles & trucks\n", + "Chittagong\n", + "1998\n", + "Shipyard\n", + "P\n", + "A\n", + "
Gazi Group\n", + "Conglometates\n", + "-\n", + "Dhaka\n", + "1974\n", + "Tyres, plastic products, water tanks\n", + "P\n", + "A\n", + "
General Pharma\n", + "Health care\n", + "Pharmaceuticals\n", + "Dhaka\n", + "1984\n", + "Pharmaceuticals\n", + "P\n", + "A\n", + "
Globe Janakantha Shilpa Paribar\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1969\n", + "Construction, engineering, electrical cables, information technology, printing, media\n", + "P\n", + "A\n", + "
GMG Airlines\n", + "Consumer services\n", + "Airlines\n", + "Dhaka\n", + "1997\n", + "Airline, defunct 2012\n", + "P\n", + "D\n", + "
Grameen Bank\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1983\n", + "Microfinance\n", + "P\n", + "A\n", + "
Grameenphone\n", + "Telecommunications\n", + "Mobile telecommunications\n", + "Dhaka\n", + "1997\n", + "4G cellular\n", + "P\n", + "A\n", + "
GTV\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2011\n", + "Private television network\n", + "P\n", + "A\n", + "
Habib Group\n", + "Conglomerates\n", + "-\n", + "Chittagong\n", + "1947\n", + "Aviation, cement, paper, energy, steel, textile\n", + "P\n", + "A\n", + "
Ha-meem Group\n", + "Consumer goods\n", + "Clothing & accessories\n", + "Dhaka\n", + "1984[3]\n", + "Textiles, leather, jute mill\n", + "P\n", + "A\n", + "
Hatil\n", + "Consumer goods\n", + "Furnishings\n", + "Dhaka\n", + "1989\n", + "Furniture\n", + "P\n", + "A\n", + "
HRC Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1991\n", + "Shipping, media, real estate, agri-products, IT\n", + "P\n", + "A\n", + "
IDLC Asset Management Limited\n", + "Financials\n", + "Nonequity investment instruments\n", + "Dhaka\n", + "2016\n", + "Mutual funds\n", + "P\n", + "A\n", + "
IDLC Finance Limited\n", + "Financials\n", + "Specialty finance\n", + "Dhaka\n", + "1985\n", + "Loans, deposits, commercial financials\n", + "P\n", + "A\n", + "
IDLC Investments Limited\n", + "Financials\n", + "Specialty finance\n", + "Dhaka\n", + "2010\n", + "Merchant bank\n", + "P\n", + "A\n", + "
IDLC Securities Limited\n", + "Financials\n", + "Specialty finance\n", + "Dhaka\n", + "2006\n", + "Stockbroker\n", + "P\n", + "A\n", + "
IFIC Bank\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1976\n", + "Private commercial bank\n", + "P\n", + "A\n", + "
Impress Group\n", + "Conglomerate\n", + "Pharmaceuticals\n", + "Dhaka\n", + "1999\n", + "Pharmaceuticals\n", + "P\n", + "A\n", + "
Independent Television\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2010\n", + "24-hour news channel\n", + "P\n", + "A\n", + "
Investment Corporation of Bangladesh (ICB)\n", + "Financials\n", + "Investment services\n", + "Dhaka\n", + "1976\n", + "\n", + "P\n", + "A\n", + "
Islami Bank Bangladesh Ltd\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1983\n", + "Private bank\n", + "P\n", + "A\n", + "
Jaaz Multimedia\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2011\n", + "\n", + "P\n", + "A\n", + "
Jaijaidin\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "2006\n", + "Newspaper\n", + "P\n", + "A\n", + "
Jamuna Bank\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "2001\n", + "Private commercial bank\n", + "P\n", + "A\n", + "
Jamuna Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1974\n", + "Textiles, chemicals, construction, leather, engineering, beverages, media, advertisement\n", + "P\n", + "A\n", + "
Jamuna Oil Company\n", + "Oil & gas\n", + "Exploration & production\n", + "Chittagong\n", + "1964\n", + "Secondary oil products, part of Bangladesh Petroleum Corporation\n", + "S\n", + "A\n", + "
Jamuna Television\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2014\n", + "24-hour news channel\n", + "P\n", + "A\n", + "
Janakantha\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "1993\n", + "Newspaper\n", + "P\n", + "A\n", + "
Janata Bank\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1971\n", + "State-owned bank\n", + "S\n", + "A\n", + "
Jiban Bima Corporation\n", + "Financials\n", + "Life insurance\n", + "Dhaka\n", + "1973\n", + "State-owned life insurance company\n", + "S\n", + "A\n", + "
Jugantor\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "2000\n", + "Newspaper\n", + "P\n", + "A\n", + "
Kaler Kantho\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "2010\n", + "Newspaper\n", + "P\n", + "A\n", + "
Kallol Group of Companies\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1972\n", + "Foods and beverage, hygiene, fabric care, watch and instruments\n", + "P\n", + "A\n", + "
Karnaphuli Group\n", + "Conglomerates\n", + "\n", + "Chittagong\n", + "1954\n", + "Automobiles, retails, media, ports, shipping, real estate\n", + "P\n", + "A\n", + "
Kazi Farms Group\n", + "Consumer goods\n", + "Food products\n", + "Dhaka\n", + "1996\n", + "Poultry\n", + "P\n", + "A\n", + "
KDS Group\n", + "Consumer goods\n", + "Clothing & accessories\n", + "Chittagong\n", + "1983\n", + "Textiles\n", + "P\n", + "A\n", + "
Khulna Shipyard\n", + "Industrials\n", + "Commercial vehicles & trucks\n", + "Khulna\n", + "1957\n", + "State-owned shipyard\n", + "S\n", + "A\n", + "
M. M. Ispahani Limited\n", + "Conglomerates\n", + "-\n", + "Chittagong\n", + "1820\n", + "Tea, textiles, jute, shipping, real estate, food\n", + "P\n", + "A\n", + "
Maasranga Television\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2011\n", + "Private television Network\n", + "P\n", + "A\n", + "
Manab Zamin\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "1998\n", + "Newspaper\n", + "P\n", + "A\n", + "
Mask Associates\n", + "Private limited\n", + "Jute\n", + "Chittagong\n", + "1982\n", + "Jute manufacturing and export\n", + "P\n", + "A\n", + "
Meghna Group of Industries\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1976[4]\n", + "Chemicals, foods and beverages, printing and packaging, shipping, insurance\n", + "P\n", + "A\n", + "
Meghna Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1989\n", + "Automobile, engineering (bicycle), cement, packaging, textile\n", + "P\n", + "A\n", + "
Mohona TV\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2010\n", + "Private television network\n", + "P\n", + "A\n", + "
Monsoon Films\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2010\n", + "\n", + "P\n", + "A\n", + "
Nasir Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1977\n", + "Glass, melamine, printing and packaging, light bulbs\n", + "P\n", + "A\n", + "
Nassa Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1990\n", + "Textiles, banking, real estate, financial services, travel, education\n", + "P\n", + "A\n", + "
National Bank Limited\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1983\n", + "Public limited bank\n", + "P\n", + "A\n", + "
Navana Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1964\n", + "Marketing, construction, real estate\n", + "P\n", + "A\n", + "
New Age\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "2003\n", + "Newspaper\n", + "P\n", + "A\n", + "
News24\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2016\n", + "24-hour news channel\n", + "P\n", + "A\n", + "
Novoair\n", + "Consumer services\n", + "Airlines\n", + "Dhaka\n", + "2007\n", + "Private airline\n", + "P\n", + "A\n", + "
NTV\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2003\n", + "Satellite TV channel\n", + "P\n", + "A\n", + "
One Bank Limited\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1999\n", + "Commercial bank\n", + "P\n", + "A\n", + "
Orion Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1985[5]\n", + "Pharmaceuticals, real estate, construction, power, hospitality, textiles, aviation\n", + "P\n", + "A\n", + "
Otobi\n", + "Consumer goods\n", + "Furnishings\n", + "Dhaka\n", + "1975\n", + "Furniture\n", + "P\n", + "A\n", + "
Padma Oil Company\n", + "Oil & gas\n", + "Exploration & production\n", + "Dhaka\n", + "1965\n", + "\n", + "P\n", + "A\n", + "
Paradise Group of Industries\n", + "Conglomerates\n", + "-\n", + "Narayanganj\n", + "1985\n", + "Electrical cable, textiles, engineering, real estate\n", + "P\n", + "A\n", + "
Partex Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1959\n", + "Food & beverages, steel, real estate, furniture, plastics, paper, power & energy, jute, agribusiness, shipyards, shipping, textiles, construction, IT, cabling, aviation, garments, PVC, ceramics, telecommunication, Oil\n", + "P\n", + "A\n", + "
Petrobangla\n", + "Oil & gas\n", + "Exploration & production\n", + "Dhaka\n", + "1972\n", + "National oil company\n", + "P\n", + "A\n", + "
Power Grid Company of Bangladesh\n", + "Utilities\n", + "Conventional electricity\n", + "Dhaka\n", + "1996[6]\n", + "\n", + "P\n", + "A\n", + "
Pragoti\n", + "Consumer goods\n", + "Automobiles\n", + "Chittagong\n", + "1966\n", + "Automobiles\n", + "S\n", + "A\n", + "
PRAN-RFL Group\n", + "Consumer goods\n", + "Pran Food and Beverage & RFL Plastic and Home Appliance\n", + "Dhaka\n", + "1981\n", + "Food and beverage, plastic products, home appliance\n", + "P\n", + "A\n", + "
Pride Group\n", + "Consumer goods\n", + "Clothing & accessories\n", + "Dhaka\n", + "1958\n", + "\n", + "P\n", + "A\n", + "
Prime Bank Limited\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1995\n", + "Private commercial bank\n", + "P\n", + "A\n", + "
Prothom Alo\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "1998\n", + "Newspaper\n", + "P\n", + "A\n", + "
Pubali Bank\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1959\n", + "Private commercial bank\n", + "P\n", + "A\n", + "
Radio Foorti\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2006\n", + "Radio\n", + "P\n", + "A\n", + "
Radio Today\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2006\n", + "Radio\n", + "P\n", + "A\n", + "
Rahimafrooz\n", + "Conglomerates\n", + "-\n", + "Chittagong\n", + "1954\n", + "Retail, electronics, automotive, oil & gas\n", + "P\n", + "A\n", + "
Rajshahi Krishi Unnayan Bank\n", + "Financials\n", + "Banks\n", + "Rajshahi\n", + "1986\n", + "State-owned bank\n", + "S\n", + "A\n", + "
Rangs Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1979\n", + "Automobile, electronics, real estate, shipping\n", + "P\n", + "A\n", + "
RanksTel\n", + "Telecommunications\n", + "Fixed line telecommunications\n", + "Dhaka\n", + "2004\n", + "Fixed line\n", + "P\n", + "A\n", + "
Regent Airways\n", + "Consumer services\n", + "Airlines\n", + "Dhaka\n", + "2010\n", + "Private airline, part of Habib Group\n", + "P\n", + "A\n", + "
Regent Power Limited\n", + "Utilities\n", + "Conventional electricity\n", + "Chittagong\n", + "2007\n", + "Part of Habib Group\n", + "P\n", + "A\n", + "
Renata Limited\n", + "Health care\n", + "Pharmaceuticals\n", + "Dhaka\n", + "1993\n", + "Pharmaceuticals\n", + "P\n", + "A\n", + "
Robi\n", + "Telecommunications\n", + "Mobile telecommunications\n", + "Dhaka\n", + "1997\n", + "4G cellular\n", + "P\n", + "A\n", + "
RTV\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2005\n", + "Satellite TV channel\n", + "P\n", + "A\n", + "
Runner automobiles Ltd.\n", + "Consumer goods\n", + "Automobiles\n", + "Dhaka\n", + "2000\n", + "Automobiles\n", + "P\n", + "A\n", + "
Rupali Bank\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1972\n", + "State-owned bank\n", + "S\n", + "A\n", + "
Sadharan Bima Corporation\n", + "Financials\n", + "Full line insurance\n", + "Dhaka\n", + "1973\n", + "State-owned non-life insurance company\n", + "S\n", + "A\n", + "
Sajeeb Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1982\n", + "Food & beverage, basic materials, construction, oil & gas, industrial transportation, real estate\n", + "P\n", + "A\n", + "
SA TV\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2013\n", + "Satellite TV channel\n", + "P\n", + "A\n", + "
Samakal\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "2005\n", + "Newspaper\n", + "P\n", + "A\n", + "
S. Alam Group of Industries\n", + "Conglomerates\n", + "-\n", + "Chittagong\n", + "1985\n", + "Food & beverage, basic materials, construction, oil & gas, industrial transportation, real estate\n", + "P\n", + "A\n", + "
Sheltech\n", + "Financials\n", + "Real estate holding & development\n", + "Dhaka\n", + "1988\n", + "Real estate\n", + "P\n", + "A\n", + "
Shyampur Sugar Mills\n", + "Consumer goods\n", + "Food products\n", + "Rangpur City\n", + "1967\n", + "Sugar; falls under the Bangladesh Sugar and Food Industries Corporation[7][8][9]\n", + "S\n", + "A\n", + "
Sikder Group\n", + "Conglomerate\n", + "\n", + "Dhaka\n", + "1950\n", + "Textiles, power, real estate, healthcare, banking, insurance, aviation\n", + "P\n", + "A\n", + "
Somoy TV\n", + "Consumer services\n", + "Broadcasting & entertainment\n", + "Dhaka\n", + "2010\n", + "24-hour news channel\n", + "P\n", + "A\n", + "
Sonali Bank\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1972\n", + "State-owned bank\n", + "S\n", + "A\n", + "
Southeast Bank Limited\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1995\n", + "Private commercial bank\n", + "P\n", + "A\n", + "
Square Group\n", + "Health care\n", + "Pharmaceuticals\n", + "Dhaka\n", + "1958\n", + "Pharmaceuticals\n", + "P\n", + "A\n", + "
STS Group\n", + "Health care\n", + "Conglomerates\n", + "Dhaka\n", + "1997\n", + "Education and healthcare\n", + "P\n", + "A\n", + "
Summit Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1985\n", + "Telecommunications, oil & gas, industrial transportation\n", + "P\n", + "A\n", + "
T K Group of Industries\n", + "Conglomerates\n", + "-\n", + "Chittagong\n", + "1972\n", + "Consumer goods, edible oil, paper, steel, tea, basic materials, industrial transportation, financials\n", + "P\n", + "A\n", + "
The ACME Laboratories Ltd\n", + "Health care\n", + "Pharmaceuticals\n", + "Dhaka\n", + "1954\n", + "Pharmaceuticals\n", + "P\n", + "A\n", + "
The Daily Ittefaq\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "1953\n", + "Newspaper\n", + "P\n", + "A\n", + "
The Daily Star\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "1991\n", + "Newspaper\n", + "P\n", + "A\n", + "
The Sangbad\n", + "Consumer services\n", + "Publishing\n", + "Dhaka\n", + "1951\n", + "Newspaper\n", + "P\n", + "A\n", + "
Titas Gas\n", + "Oil & gas\n", + "Exploration & production\n", + "Dhaka\n", + "1964\n", + "Natural gas distributor\n", + "S\n", + "A\n", + "
Transcom Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1985\n", + "Beverage, pharma, newspaper, radio, electronics, foods\n", + "P\n", + "A\n", + "
Trust Bank Limited\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1999\n", + "Commercial bank\n", + "P\n", + "A\n", + "
United Airways\n", + "Consumer services\n", + "Airlines\n", + "Dhaka\n", + "2005\n", + "Private airline, defunct 2016[10]\n", + "P\n", + "D\n", + "
United Finance\n", + "Financials\n", + "Financial services\n", + "Dhaka\n", + "1989\n", + "Financial services\n", + "P\n", + "A\n", + "
United Group\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1978\n", + "Power, manufacturing, healthcare, education, real estate, shipping, retail services\n", + "P\n", + "A\n", + "
US-Bangla Airlines\n", + "Consumer services\n", + "Airlines\n", + "Dhaka\n", + "2013\n", + "Private airline\n", + "P\n", + "A\n", + "
Uttara Bank Limited\n", + "Financials\n", + "Banks\n", + "Dhaka\n", + "1965\n", + "Private commercial bank\n", + "P\n", + "A\n", + "
Walton\n", + "Conglomerates\n", + "-\n", + "Dhaka\n", + "1977\n", + "Automobiles, consumer electronics, household goods, technology hardware, electronic equipment\n", + "P\n", + "A\n", + "
Western Marine Shipyard\n", + "Industrials\n", + "Commercial vehicles & trucks\n", + "Chittagong\n", + "2000\n", + "Shipyard\n", + "P\n", + "A\n", + "
" + ] + }, + "metadata": {}, + "execution_count": 87 + } + ] + }, + { + "cell_type": "code", + "source": [ + "tr = table.find_all('tr')\n", + "tr" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "3L7AVrvwWAcQ", + "executionInfo": { + "status": "ok", + "timestamp": 1762183923089, + "user_tz": -360, + "elapsed": 113, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "d10e9239-26f5-4a26-bbd4-6f9ac34b2638" + }, + "execution_count": 90, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "[\n", + " Name\n", + " \n", + " Industry\n", + " \n", + " Sector\n", + " \n", + " Headquarters\n", + " \n", + " Founded\n", + " \n", + " Notes\n", + " \n", + " Status\n", + " ,\n", + " \n", + "  \n", + " \n", + "  \n", + " ,\n", + " \n", + " A K Khan & Company\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Chittagong\n", + " \n", + " 1945\n", + " \n", + " Textiles, logistics, water, financial services, telecoms, agriculture\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Aarong\n", + " \n", + " Consumer goods\n", + " \n", + " Personal & household goods\n", + " \n", + " Dhaka\n", + " \n", + " 1978\n", + " \n", + " General retail\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Abul Khair Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Chattogram\n", + " \n", + " 1953\n", + " \n", + " Steel, cement, tobacco, food & beverage, consumer product, automobile\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Adamjee Jute Mills\n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " Narayanganj\n", + " \n", + " 1951\n", + " \n", + " Jute mill, defunct 2002\n", + " \n", + " P\n", + " \n", + " D\n", + " ,\n", + " \n", + " Advanced Chemical Industries (ACI)\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1968\n", + " \n", + " Chemicals, foods, pharma, consumer products, logistics, consumer electronics, automobile services, communication\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Agamee Prakashani\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 1986\n", + " \n", + " Publishing\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Agrani Bank\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1972\n", + " \n", + " State-owned bank\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Airtel Bangladesh\n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " Dhaka\n", + " \n", + " 2007\n", + " \n", + " 4G cellular, part of Axiata (Malaysia)\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Akij\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1940\n", + " \n", + " Textiles, tobacco, food & beverage, cement, ceramics, printing, pharma, consumer products, automobile, hospital\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Alim Industries Limited\n", + " \n", + " Industrials\n", + " \n", + " -\n", + " \n", + " Sylhet\n", + " \n", + " 1990\n", + " \n", + " Agricultural machinery\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Amar Desh\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 2004\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Adamjee Jute Mills\n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " Narayanganj\n", + " \n", + " 1951\n", + " \n", + " Jute mill, defunct 2002\n", + " \n", + " P\n", + " \n", + " D\n", + " ,\n", + " \n", + " Asian TV\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2013\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " ATN Bangla\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 1997\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " ATN News\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2010\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bangladesh Bank\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1971\n", + " \n", + " State bank\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bangladesh Betar\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 1939\n", + " \n", + " state-owned radio broadcaster\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bangladesh Machine Tools Factory\n", + " \n", + " Industrials\n", + " \n", + " Defense\n", + " \n", + " Gazipur City\n", + " \n", + " 1979\n", + " \n", + " Defense vehicles\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bangladesh Petroleum Corporation\n", + " \n", + " Oil & gas\n", + " \n", + " Exploration & production\n", + " \n", + " Dhaka\n", + " \n", + " 1976\n", + " \n", + " State-owned petrochemical\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bangladesh Pratidin\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 2010\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bangladesh Railway\n", + " \n", + " Industrials\n", + " \n", + " Railroads\n", + " \n", + " Dhaka\n", + " \n", + " 1862\n", + " \n", + " Railroads\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bangladesh Shipping Corporation\n", + " \n", + " Industrials\n", + " \n", + " Marine transportation\n", + " \n", + " Chittagong\n", + " \n", + " 1972\n", + " \n", + " State-owned shipping\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bangladesh Telecommunications Company Limited\n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " Dhaka\n", + " \n", + " 1971\n", + " \n", + " State-owned mobile telecommunications\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bangladesh Television\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 1964\n", + " \n", + " State-owned TV broadcaster\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Banglalink\n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " Dhaka\n", + " \n", + " 1996\n", + " \n", + " 4G cellular\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Banglalion\n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " Dhaka\n", + " \n", + " 2008\n", + " \n", + " 4G LTE wireless broadband\n", + " \n", + " P\n", + " \n", + " D\n", + " ,\n", + " \n", + " Banglavision\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2006\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bashundhara Group\n", + " \n", + " Conglomerates\n", + " \n", + " Real estate, media, manufacturing, retail, and construction\n", + " \n", + " Dhaka\n", + " \n", + " 1987\n", + " \n", + " Property development, cement, paper, steel, food, media\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bengal Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1969\n", + " \n", + " Consumer goods, construction and development, feed, plastics, cement, food, media\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Best Air\n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " Dhaka\n", + " \n", + " 2007\n", + " \n", + " Private airline, defunct 2009\n", + " \n", + " P\n", + " \n", + " D\n", + " ,\n", + " \n", + " Beximco Pharma\n", + " \n", + " Health care\n", + " \n", + " Pharmaceuticals\n", + " \n", + " Gazipur City\n", + " \n", + " 1980\n", + " \n", + " Pharmaceuticals, part of Beximco\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Beximco\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1972\n", + " \n", + " Pharmaceuticals, textiles, ceramics, aviation, media, finance, real estate, construction\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bhorer Kagoj\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 1992\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bikroy.com\n", + " \n", + " Technology\n", + " \n", + " Software\n", + " \n", + " Dhaka\n", + " \n", + " 2012\n", + " \n", + " E-commerce\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Biman Bangladesh Airlines\n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " Dhaka\n", + " \n", + " 1972\n", + " \n", + " Flag carrier airline\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bismillah Airlines\n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " Dhaka\n", + " \n", + " 1998\n", + " \n", + " Airline\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Bismillah Group\n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " Dhaka\n", + " \n", + " 1988\n", + " \n", + " Textiles and towels\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " BRAC Bank Limited\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 2001\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " BSRM\n", + " \n", + " Basic materials\n", + " \n", + " Iron & steel\n", + " \n", + " Chittagong\n", + " \n", + " 1952\n", + " \n", + " Steel products\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " BTCL\n", + " \n", + " Telecommunications\n", + " \n", + " Fixed line telecommunications\n", + " \n", + " Dhaka\n", + " \n", + " 1971\n", + " \n", + " Fixed line, broadband Internet\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Building Technology & Ideas\n", + " \n", + " Financials\n", + " \n", + " Real estate holding & development\n", + " \n", + " Dhaka\n", + " \n", + " 1984\n", + " \n", + " Financial services, real estate\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Channel 9\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2011\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Channel 24\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2012\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Channel i\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 1999\n", + " \n", + " Private television network\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " City Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1972\n", + " \n", + " Consumer goods, foods, steel, printing & packaging, shipping, power & energy, financials\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Citycell\n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " Dhaka\n", + " \n", + " 1989\n", + " \n", + " CDMA mobile communications\n", + " \n", + " P\n", + " \n", + " D\n", + " ,\n", + " \n", + " Concord Group\n", + " \n", + " Conglomerates\n", + " \n", + " Construction and real estate\n", + " \n", + " Dhaka\n", + " \n", + " 1973\n", + " \n", + " Construction, real estate, architecture & design, communication, entertainment, hospitality, garments\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Confidence Group\n", + " \n", + " Conglomerates\n", + " \n", + " Engineering and power generation\n", + " \n", + " Dhaka\n", + " \n", + " 1991\n", + " \n", + " Engineering, concrete, energy, paints\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Cooper's\n", + " \n", + " Consumer goods\n", + " \n", + " Food & beverage\n", + " \n", + " Dhaka\n", + " \n", + " 1984\n", + " \n", + " Bakery\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Credit Rating Information and Services Limited (CRISL)\n", + " \n", + " Financials\n", + " \n", + " Consumer finance\n", + " \n", + " Dhaka\n", + " \n", + " 1992\n", + " \n", + " Credit ratings\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Daily Inqilab\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 1986\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " DBC News\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2016\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " DBL Group\n", + " \n", + " Conglomerates\n", + " \n", + " \n", + " \n", + " Dhaka\n", + " \n", + " 1991\n", + " \n", + " Textiles, pharmaceuticals, ICT, semiconductors\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Deepto TV\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2015\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Delta Brac Housing Finance Corporation\n", + " \n", + " Financials\n", + " \n", + " Consumer finance\n", + " \n", + " Dhaka\n", + " \n", + " 1996\n", + " \n", + " Financial services\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Desh TV\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2009\n", + " \n", + " Television network\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Dhaka Bank Limited\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1995\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Dragon Group\n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " Dhaka\n", + " \n", + " 1980\n", + " \n", + " Clothing\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Dutch Bangla Bank\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1995\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Eastern Bank Limited\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1992\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Eastern Housing Limited\n", + " \n", + " Financials\n", + " \n", + " Real estate holding & development\n", + " \n", + " Dhaka\n", + " \n", + " 1965\n", + " \n", + " Real estate\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Ekattor TV\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2012\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Ekushey Television\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2000\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Eskayef Bangladesh\n", + " \n", + " Health care\n", + " \n", + " Pharmaceuticals\n", + " \n", + " Dhaka\n", + " \n", + " 1990\n", + " \n", + " Pharmaceuticals\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " EXIM Bank\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1999\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " FMC Dockyard Limited\n", + " \n", + " Industrials\n", + " \n", + " Commercial vehicles & trucks\n", + " \n", + " Chittagong\n", + " \n", + " 1998\n", + " \n", + " Shipyard\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Gazi Group\n", + " \n", + " Conglometates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1974\n", + " \n", + " Tyres, plastic products, water tanks\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " General Pharma\n", + " \n", + " Health care\n", + " \n", + " Pharmaceuticals\n", + " \n", + " Dhaka\n", + " \n", + " 1984\n", + " \n", + " Pharmaceuticals\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Globe Janakantha Shilpa Paribar\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1969\n", + " \n", + " Construction, engineering, electrical cables, information technology, printing, media\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " GMG Airlines\n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " Dhaka\n", + " \n", + " 1997\n", + " \n", + " Airline, defunct 2012\n", + " \n", + " P\n", + " \n", + " D\n", + " ,\n", + " \n", + " Grameen Bank\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1983\n", + " \n", + " Microfinance\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Grameenphone\n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " Dhaka\n", + " \n", + " 1997\n", + " \n", + " 4G cellular\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " GTV\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2011\n", + " \n", + " Private television network\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Habib Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Chittagong\n", + " \n", + " 1947\n", + " \n", + " Aviation, cement, paper, energy, steel, textile\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Ha-meem Group\n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " Dhaka\n", + " \n", + " 1984[3]\n", + " \n", + " Textiles, leather, jute mill\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Hatil\n", + " \n", + " Consumer goods\n", + " \n", + " Furnishings\n", + " \n", + " Dhaka\n", + " \n", + " 1989\n", + " \n", + " Furniture\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " HRC Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1991\n", + " \n", + " Shipping, media, real estate, agri-products, IT\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " IDLC Asset Management Limited\n", + " \n", + " Financials\n", + " \n", + " Nonequity investment instruments\n", + " \n", + " Dhaka\n", + " \n", + " 2016\n", + " \n", + " Mutual funds\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " IDLC Finance Limited\n", + " \n", + " Financials\n", + " \n", + " Specialty finance\n", + " \n", + " Dhaka\n", + " \n", + " 1985\n", + " \n", + " Loans, deposits, commercial financials\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " IDLC Investments Limited\n", + " \n", + " Financials\n", + " \n", + " Specialty finance\n", + " \n", + " Dhaka\n", + " \n", + " 2010\n", + " \n", + " Merchant bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " IDLC Securities Limited\n", + " \n", + " Financials\n", + " \n", + " Specialty finance\n", + " \n", + " Dhaka\n", + " \n", + " 2006\n", + " \n", + " Stockbroker\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " IFIC Bank\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1976\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Impress Group\n", + " \n", + " Conglomerate\n", + " \n", + " Pharmaceuticals\n", + " \n", + " Dhaka\n", + " \n", + " 1999\n", + " \n", + " Pharmaceuticals\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Independent Television\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2010\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Investment Corporation of Bangladesh (ICB)\n", + " \n", + " Financials\n", + " \n", + " Investment services\n", + " \n", + " Dhaka\n", + " \n", + " 1976\n", + " \n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Islami Bank Bangladesh Ltd\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1983\n", + " \n", + " Private bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Jaaz Multimedia\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2011\n", + " \n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Jaijaidin\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 2006\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Jamuna Bank\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 2001\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Jamuna Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1974\n", + " \n", + " Textiles, chemicals, construction, leather, engineering, beverages, media, advertisement\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Jamuna Oil Company\n", + " \n", + " Oil & gas\n", + " \n", + " Exploration & production\n", + " \n", + " Chittagong\n", + " \n", + " 1964\n", + " \n", + " Secondary oil products, part of Bangladesh Petroleum Corporation\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Jamuna Television\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2014\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Janakantha\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 1993\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Janata Bank\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1971\n", + " \n", + " State-owned bank\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Jiban Bima Corporation\n", + " \n", + " Financials\n", + " \n", + " Life insurance\n", + " \n", + " Dhaka\n", + " \n", + " 1973\n", + " \n", + " State-owned life insurance company\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Jugantor\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 2000\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Kaler Kantho\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 2010\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Kallol Group of Companies\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1972\n", + " \n", + " Foods and beverage, hygiene, fabric care, watch and instruments\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Karnaphuli Group\n", + " \n", + " Conglomerates\n", + " \n", + " \n", + " \n", + " Chittagong\n", + " \n", + " 1954\n", + " \n", + " Automobiles, retails, media, ports, shipping, real estate\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Kazi Farms Group\n", + " \n", + " Consumer goods\n", + " \n", + " Food products\n", + " \n", + " Dhaka\n", + " \n", + " 1996\n", + " \n", + " Poultry\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " KDS Group\n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " Chittagong\n", + " \n", + " 1983\n", + " \n", + " Textiles\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Khulna Shipyard\n", + " \n", + " Industrials\n", + " \n", + " Commercial vehicles & trucks\n", + " \n", + " Khulna\n", + " \n", + " 1957\n", + " \n", + " State-owned shipyard\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " M. M. Ispahani Limited\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Chittagong\n", + " \n", + " 1820\n", + " \n", + " Tea, textiles, jute, shipping, real estate, food\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Maasranga Television\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2011\n", + " \n", + " Private television Network\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Manab Zamin\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 1998\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Mask Associates\n", + " \n", + " Private limited\n", + " \n", + " Jute\n", + " \n", + " Chittagong\n", + " \n", + " 1982\n", + " \n", + " Jute manufacturing and export\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Meghna Group of Industries\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1976[4]\n", + " \n", + " Chemicals, foods and beverages, printing and packaging, shipping, insurance\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Meghna Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1989\n", + " \n", + " Automobile, engineering (bicycle), cement, packaging, textile\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Mohona TV\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2010\n", + " \n", + " Private television network\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Monsoon Films\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2010\n", + " \n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Nasir Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1977\n", + " \n", + " Glass, melamine, printing and packaging, light bulbs\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Nassa Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1990\n", + " \n", + " Textiles, banking, real estate, financial services, travel, education\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " National Bank Limited\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1983\n", + " \n", + " Public limited bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Navana Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1964\n", + " \n", + " Marketing, construction, real estate\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " New Age\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 2003\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " News24\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2016\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Novoair\n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " Dhaka\n", + " \n", + " 2007\n", + " \n", + " Private airline\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " NTV\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2003\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " One Bank Limited\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1999\n", + " \n", + " Commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Orion Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1985[5]\n", + " \n", + " Pharmaceuticals, real estate, construction, power, hospitality, textiles, aviation\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Otobi\n", + " \n", + " Consumer goods\n", + " \n", + " Furnishings\n", + " \n", + " Dhaka\n", + " \n", + " 1975\n", + " \n", + " Furniture\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Padma Oil Company\n", + " \n", + " Oil & gas\n", + " \n", + " Exploration & production\n", + " \n", + " Dhaka\n", + " \n", + " 1965\n", + " \n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Paradise Group of Industries\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Narayanganj\n", + " \n", + " 1985\n", + " \n", + " Electrical cable, textiles, engineering, real estate\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Partex Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1959\n", + " \n", + " Food & beverages, steel, real estate, furniture, plastics, paper, power & energy, jute, agribusiness, shipyards, shipping, textiles, construction, IT, cabling, aviation, garments, PVC, ceramics, telecommunication, Oil\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Petrobangla\n", + " \n", + " Oil & gas\n", + " \n", + " Exploration & production\n", + " \n", + " Dhaka\n", + " \n", + " 1972\n", + " \n", + " National oil company\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Power Grid Company of Bangladesh\n", + " \n", + " Utilities\n", + " \n", + " Conventional electricity\n", + " \n", + " Dhaka\n", + " \n", + " 1996[6]\n", + " \n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Pragoti\n", + " \n", + " Consumer goods\n", + " \n", + " Automobiles\n", + " \n", + " Chittagong\n", + " \n", + " 1966\n", + " \n", + " Automobiles\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " PRAN-RFL Group\n", + " \n", + " Consumer goods\n", + " \n", + " Pran Food and Beverage & RFL Plastic and Home Appliance\n", + " \n", + " Dhaka\n", + " \n", + " 1981\n", + " \n", + " Food and beverage, plastic products, home appliance\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Pride Group\n", + " \n", + " Consumer goods\n", + " \n", + " Clothing & accessories\n", + " \n", + " Dhaka\n", + " \n", + " 1958\n", + " \n", + " \n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Prime Bank Limited\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1995\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Prothom Alo\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 1998\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Pubali Bank\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1959\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Radio Foorti\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2006\n", + " \n", + " Radio\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Radio Today\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2006\n", + " \n", + " Radio\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Rahimafrooz\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Chittagong\n", + " \n", + " 1954\n", + " \n", + " Retail, electronics, automotive, oil & gas\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Rajshahi Krishi Unnayan Bank\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Rajshahi\n", + " \n", + " 1986\n", + " \n", + " State-owned bank\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Rangs Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1979\n", + " \n", + " Automobile, electronics, real estate, shipping\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " RanksTel\n", + " \n", + " Telecommunications\n", + " \n", + " Fixed line telecommunications\n", + " \n", + " Dhaka\n", + " \n", + " 2004\n", + " \n", + " Fixed line\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Regent Airways\n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " Dhaka\n", + " \n", + " 2010\n", + " \n", + " Private airline, part of Habib Group\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Regent Power Limited\n", + " \n", + " Utilities\n", + " \n", + " Conventional electricity\n", + " \n", + " Chittagong\n", + " \n", + " 2007\n", + " \n", + " Part of Habib Group\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Renata Limited\n", + " \n", + " Health care\n", + " \n", + " Pharmaceuticals\n", + " \n", + " Dhaka\n", + " \n", + " 1993\n", + " \n", + " Pharmaceuticals\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Robi\n", + " \n", + " Telecommunications\n", + " \n", + " Mobile telecommunications\n", + " \n", + " Dhaka\n", + " \n", + " 1997\n", + " \n", + " 4G cellular\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " RTV\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2005\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Runner automobiles Ltd.\n", + " \n", + " Consumer goods\n", + " \n", + " Automobiles\n", + " \n", + " Dhaka\n", + " \n", + " 2000\n", + " \n", + " Automobiles\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Rupali Bank\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1972\n", + " \n", + " State-owned bank\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Sadharan Bima Corporation\n", + " \n", + " Financials\n", + " \n", + " Full line insurance\n", + " \n", + " Dhaka\n", + " \n", + " 1973\n", + " \n", + " State-owned non-life insurance company\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Sajeeb Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1982\n", + " \n", + " Food & beverage, basic materials, construction, oil & gas, industrial transportation, real estate\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " SA TV\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2013\n", + " \n", + " Satellite TV channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Samakal\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 2005\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " S. Alam Group of Industries\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Chittagong\n", + " \n", + " 1985\n", + " \n", + " Food & beverage, basic materials, construction, oil & gas, industrial transportation, real estate\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Sheltech\n", + " \n", + " Financials\n", + " \n", + " Real estate holding & development\n", + " \n", + " Dhaka\n", + " \n", + " 1988\n", + " \n", + " Real estate\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Shyampur Sugar Mills\n", + " \n", + " Consumer goods\n", + " \n", + " Food products\n", + " \n", + " Rangpur City\n", + " \n", + " 1967\n", + " \n", + " Sugar; falls under the Bangladesh Sugar and Food Industries Corporation[7][8][9]\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Sikder Group\n", + " \n", + " Conglomerate\n", + " \n", + " \n", + " \n", + " Dhaka\n", + " \n", + " 1950\n", + " \n", + " Textiles, power, real estate, healthcare, banking, insurance, aviation\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Somoy TV\n", + " \n", + " Consumer services\n", + " \n", + " Broadcasting & entertainment\n", + " \n", + " Dhaka\n", + " \n", + " 2010\n", + " \n", + " 24-hour news channel\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Sonali Bank\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1972\n", + " \n", + " State-owned bank\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Southeast Bank Limited\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1995\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Square Group\n", + " \n", + " Health care\n", + " \n", + " Pharmaceuticals\n", + " \n", + " Dhaka\n", + " \n", + " 1958\n", + " \n", + " Pharmaceuticals\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " STS Group\n", + " \n", + " Health care\n", + " \n", + " Conglomerates\n", + " \n", + " Dhaka\n", + " \n", + " 1997\n", + " \n", + " Education and healthcare\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Summit Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1985\n", + " \n", + " Telecommunications, oil & gas, industrial transportation\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " T K Group of Industries\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Chittagong\n", + " \n", + " 1972\n", + " \n", + " Consumer goods, edible oil, paper, steel, tea, basic materials, industrial transportation, financials\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " The ACME Laboratories Ltd\n", + " \n", + " Health care\n", + " \n", + " Pharmaceuticals\n", + " \n", + " Dhaka\n", + " \n", + " 1954\n", + " \n", + " Pharmaceuticals\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " The Daily Ittefaq\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 1953\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " The Daily Star\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 1991\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " The Sangbad\n", + " \n", + " Consumer services\n", + " \n", + " Publishing\n", + " \n", + " Dhaka\n", + " \n", + " 1951\n", + " \n", + " Newspaper\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Titas Gas\n", + " \n", + " Oil & gas\n", + " \n", + " Exploration & production\n", + " \n", + " Dhaka\n", + " \n", + " 1964\n", + " \n", + " Natural gas distributor\n", + " \n", + " S\n", + " \n", + " A\n", + " ,\n", + " \n", + " Transcom Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1985\n", + " \n", + " Beverage, pharma, newspaper, radio, electronics, foods\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Trust Bank Limited\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1999\n", + " \n", + " Commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " United Airways\n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " Dhaka\n", + " \n", + " 2005\n", + " \n", + " Private airline, defunct 2016[10]\n", + " \n", + " P\n", + " \n", + " D\n", + " ,\n", + " \n", + " United Finance\n", + " \n", + " Financials\n", + " \n", + " Financial services\n", + " \n", + " Dhaka\n", + " \n", + " 1989\n", + " \n", + " Financial services\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " United Group\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1978\n", + " \n", + " Power, manufacturing, healthcare, education, real estate, shipping, retail services\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " US-Bangla Airlines\n", + " \n", + " Consumer services\n", + " \n", + " Airlines\n", + " \n", + " Dhaka\n", + " \n", + " 2013\n", + " \n", + " Private airline\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Uttara Bank Limited\n", + " \n", + " Financials\n", + " \n", + " Banks\n", + " \n", + " Dhaka\n", + " \n", + " 1965\n", + " \n", + " Private commercial bank\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Walton\n", + " \n", + " Conglomerates\n", + " \n", + " -\n", + " \n", + " Dhaka\n", + " \n", + " 1977\n", + " \n", + " Automobiles, consumer electronics, household goods, technology hardware, electronic equipment\n", + " \n", + " P\n", + " \n", + " A\n", + " ,\n", + " \n", + " Western Marine Shipyard\n", + " \n", + " Industrials\n", + " \n", + " Commercial vehicles & trucks\n", + " \n", + " Chittagong\n", + " \n", + " 2000\n", + " \n", + " Shipyard\n", + " \n", + " P\n", + " \n", + " A\n", + " ]" + ] + }, + "metadata": {}, + "execution_count": 90 + } + ] + }, + { + "cell_type": "code", + "source": [ + "tr[2]" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "K2oGnMvnWSrX", + "executionInfo": { + "status": "ok", + "timestamp": 1762184040067, + "user_tz": -360, + "elapsed": 36, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "d6400e24-f760-4100-ccd3-158009d7b9ea" + }, + "execution_count": 93, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "\n", + "A K Khan & Company\n", + "\n", + "Conglomerates\n", + "\n", + "-\n", + "\n", + "Chittagong\n", + "\n", + "1945\n", + "\n", + "Textiles, logistics, water, financial services, telecoms, agriculture\n", + "\n", + "P\n", + "\n", + "A\n", + "" + ] + }, + "metadata": {}, + "execution_count": 93 + } + ] + }, + { + "cell_type": "code", + "source": [ + "company = []\n", + "industry = []\n", + "headquaters = []\n", + "founded = []\n", + "for t in tr[2:]:\n", + " td = t.find_all('td')\n", + " company.append(td[0].text.strip())\n", + " industry.append(td[1].text.strip())\n", + " headquaters.append(td[3].text.strip())\n", + " founded.append(td[4].text.strip())\n", + "\n", + "\n", + "print(company)\n", + "print(industry)\n", + "print(headquaters)\n", + "print(founded)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "OzoUciQ0WxHB", + "executionInfo": { + "status": "ok", + "timestamp": 1762184499636, + "user_tz": -360, + "elapsed": 70, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "14728e38-30bb-462e-f92a-5a026e27bc0c" + }, + "execution_count": 113, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "['A K Khan & Company', 'Aarong', 'Abul Khair Group', 'Adamjee Jute Mills', 'Advanced Chemical Industries (ACI)', 'Agamee Prakashani', 'Agrani Bank', 'Airtel Bangladesh', 'Akij', 'Alim Industries Limited', 'Amar Desh', 'Adamjee Jute Mills', 'Asian TV', 'ATN Bangla', 'ATN News', 'Bangladesh Bank', 'Bangladesh Betar', 'Bangladesh Machine Tools Factory', 'Bangladesh Petroleum Corporation', 'Bangladesh Pratidin', 'Bangladesh Railway', 'Bangladesh Shipping Corporation', 'Bangladesh Telecommunications Company Limited', 'Bangladesh Television', 'Banglalink', 'Banglalion', 'Banglavision', 'Bashundhara Group', 'Bengal Group', 'Best Air', 'Beximco Pharma', 'Beximco', 'Bhorer Kagoj', 'Bikroy.com', 'Biman Bangladesh Airlines', 'Bismillah Airlines', 'Bismillah Group', 'BRAC Bank Limited', 'BSRM', 'BTCL', 'Building Technology & Ideas', 'Channel 9', 'Channel 24', 'Channel i', 'City Group', 'Citycell', 'Concord Group', 'Confidence Group', \"Cooper's\", 'Credit Rating Information and Services Limited (CRISL)', 'Daily Inqilab', 'DBC News', 'DBL Group', 'Deepto TV', 'Delta Brac Housing Finance Corporation', 'Desh TV', 'Dhaka Bank Limited', 'Dragon Group', 'Dutch Bangla Bank', 'Eastern Bank Limited', 'Eastern Housing Limited', 'Ekattor TV', 'Ekushey Television', 'Eskayef Bangladesh', 'EXIM Bank', 'FMC Dockyard Limited', 'Gazi Group', 'General Pharma', 'Globe Janakantha Shilpa Paribar', 'GMG Airlines', 'Grameen Bank', 'Grameenphone', 'GTV', 'Habib Group', 'Ha-meem Group', 'Hatil', 'HRC Group', 'IDLC Asset Management Limited', 'IDLC Finance Limited', 'IDLC Investments Limited', 'IDLC Securities Limited', 'IFIC Bank', 'Impress Group', 'Independent Television', 'Investment Corporation of Bangladesh (ICB)', 'Islami Bank Bangladesh Ltd', 'Jaaz Multimedia', 'Jaijaidin', 'Jamuna Bank', 'Jamuna Group', 'Jamuna Oil Company', 'Jamuna Television', 'Janakantha', 'Janata Bank', 'Jiban Bima Corporation', 'Jugantor', 'Kaler Kantho', 'Kallol Group of Companies', 'Karnaphuli Group', 'Kazi Farms Group', 'KDS Group', 'Khulna Shipyard', 'M. M. Ispahani Limited', 'Maasranga Television', 'Manab Zamin', 'Mask Associates', 'Meghna Group of Industries', 'Meghna Group', 'Mohona TV', 'Monsoon Films', 'Nasir Group', 'Nassa Group', 'National Bank Limited', 'Navana Group', 'New Age', 'News24', 'Novoair', 'NTV', 'One Bank Limited', 'Orion Group', 'Otobi', 'Padma Oil Company', 'Paradise Group of Industries', 'Partex Group', 'Petrobangla', 'Power Grid Company of Bangladesh', 'Pragoti', 'PRAN-RFL Group', 'Pride Group', 'Prime Bank Limited', 'Prothom Alo', 'Pubali Bank', 'Radio Foorti', 'Radio Today', 'Rahimafrooz', 'Rajshahi Krishi Unnayan Bank', 'Rangs Group', 'RanksTel', 'Regent Airways', 'Regent Power Limited', 'Renata Limited', 'Robi', 'RTV', 'Runner automobiles Ltd.', 'Rupali Bank', 'Sadharan Bima Corporation', 'Sajeeb Group', 'SA TV', 'Samakal', 'S. Alam Group of Industries', 'Sheltech', 'Shyampur Sugar Mills', 'Sikder Group', 'Somoy TV', 'Sonali Bank', 'Southeast Bank Limited', 'Square Group', 'STS Group', 'Summit Group', 'T K Group of Industries', 'The ACME Laboratories Ltd', 'The Daily Ittefaq', 'The Daily Star', 'The Sangbad', 'Titas Gas', 'Transcom Group', 'Trust Bank Limited', 'United Airways', 'United Finance', 'United Group', 'US-Bangla Airlines', 'Uttara Bank Limited', 'Walton', 'Western Marine Shipyard']\n", + "['Conglomerates', 'Consumer goods', 'Conglomerates', 'Consumer goods', 'Conglomerates', 'Consumer services', 'Financials', 'Telecommunications', 'Conglomerates', 'Industrials', 'Consumer services', 'Consumer goods', 'Consumer services', 'Consumer services', 'Consumer services', 'Financials', 'Consumer services', 'Industrials', 'Oil & gas', 'Consumer services', 'Industrials', 'Industrials', 'Telecommunications', 'Consumer services', 'Telecommunications', 'Telecommunications', 'Consumer services', 'Conglomerates', 'Conglomerates', 'Consumer services', 'Health care', 'Conglomerates', 'Consumer services', 'Technology', 'Consumer services', 'Consumer services', 'Consumer goods', 'Financials', 'Basic materials', 'Telecommunications', 'Financials', 'Consumer services', 'Consumer services', 'Consumer services', 'Conglomerates', 'Telecommunications', 'Conglomerates', 'Conglomerates', 'Consumer goods', 'Financials', 'Consumer services', 'Consumer services', 'Conglomerates', 'Consumer services', 'Financials', 'Consumer services', 'Financials', 'Consumer goods', 'Financials', 'Financials', 'Financials', 'Consumer services', 'Consumer services', 'Health care', 'Financials', 'Industrials', 'Conglometates', 'Health care', 'Conglomerates', 'Consumer services', 'Financials', 'Telecommunications', 'Consumer services', 'Conglomerates', 'Consumer goods', 'Consumer goods', 'Conglomerates', 'Financials', 'Financials', 'Financials', 'Financials', 'Financials', 'Conglomerate', 'Consumer services', 'Financials', 'Financials', 'Consumer services', 'Consumer services', 'Financials', 'Conglomerates', 'Oil & gas', 'Consumer services', 'Consumer services', 'Financials', 'Financials', 'Consumer services', 'Consumer services', 'Conglomerates', 'Conglomerates', 'Consumer goods', 'Consumer goods', 'Industrials', 'Conglomerates', 'Consumer services', 'Consumer services', 'Private limited', 'Conglomerates', 'Conglomerates', 'Consumer services', 'Consumer services', 'Conglomerates', 'Conglomerates', 'Financials', 'Conglomerates', 'Consumer services', 'Consumer services', 'Consumer services', 'Consumer services', 'Financials', 'Conglomerates', 'Consumer goods', 'Oil & gas', 'Conglomerates', 'Conglomerates', 'Oil & gas', 'Utilities', 'Consumer goods', 'Consumer goods', 'Consumer goods', 'Financials', 'Consumer services', 'Financials', 'Consumer services', 'Consumer services', 'Conglomerates', 'Financials', 'Conglomerates', 'Telecommunications', 'Consumer services', 'Utilities', 'Health care', 'Telecommunications', 'Consumer services', 'Consumer goods', 'Financials', 'Financials', 'Conglomerates', 'Consumer services', 'Consumer services', 'Conglomerates', 'Financials', 'Consumer goods', 'Conglomerate', 'Consumer services', 'Financials', 'Financials', 'Health care', 'Health care', 'Conglomerates', 'Conglomerates', 'Health care', 'Consumer services', 'Consumer services', 'Consumer services', 'Oil & gas', 'Conglomerates', 'Financials', 'Consumer services', 'Financials', 'Conglomerates', 'Consumer services', 'Financials', 'Conglomerates', 'Industrials']\n", + "['Chittagong', 'Dhaka', 'Chattogram', 'Narayanganj', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Sylhet', 'Dhaka', 'Narayanganj', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Gazipur City', 'Dhaka', 'Dhaka', 'Dhaka', 'Chittagong', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Gazipur City', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Chittagong', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Chittagong', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Chittagong', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Chittagong', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Chittagong', 'Dhaka', 'Chittagong', 'Khulna', 'Chittagong', 'Dhaka', 'Dhaka', 'Chittagong', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Narayanganj', 'Dhaka', 'Dhaka', 'Dhaka', 'Chittagong', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Chittagong', 'Rajshahi', 'Dhaka', 'Dhaka', 'Dhaka', 'Chittagong', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Chittagong', 'Dhaka', 'Rangpur City', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Chittagong', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Dhaka', 'Chittagong']\n", + "['1945', '1978', '1953', '1951', '1968', '1986', '1972', '2007', '1940', '1990', '2004', '1951', '2013', '1997', '2010', '1971', '1939', '1979', '1976', '2010', '1862', '1972', '1971', '1964', '1996', '2008', '2006', '1987', '1969', '2007', '1980', '1972', '1992', '2012', '1972', '1998', '1988', '2001', '1952', '1971', '1984', '2011', '2012', '1999', '1972', '1989', '1973', '1991', '1984', '1992', '1986', '2016', '1991', '2015', '1996', '2009', '1995', '1980', '1995', '1992', '1965', '2012', '2000', '1990', '1999', '1998', '1974', '1984', '1969', '1997', '1983', '1997', '2011', '1947', '1984[3]', '1989', '1991', '2016', '1985', '2010', '2006', '1976', '1999', '2010', '1976', '1983', '2011', '2006', '2001', '1974', '1964', '2014', '1993', '1971', '1973', '2000', '2010', '1972', '1954', '1996', '1983', '1957', '1820', '2011', '1998', '1982', '1976[4]', '1989', '2010', '2010', '1977', '1990', '1983', '1964', '2003', '2016', '2007', '2003', '1999', '1985[5]', '1975', '1965', '1985', '1959', '1972', '1996[6]', '1966', '1981', '1958', '1995', '1998', '1959', '2006', '2006', '1954', '1986', '1979', '2004', '2010', '2007', '1993', '1997', '2005', '2000', '1972', '1973', '1982', '2013', '2005', '1985', '1988', '1967', '1950', '2010', '1972', '1995', '1958', '1997', '1985', '1972', '1954', '1953', '1991', '1951', '1964', '1985', '1999', '2005', '1989', '1978', '2013', '1965', '1977', '2000']\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "df = pd.DataFrame(\n", + " {\n", + " 'company': company,\n", + " 'industry':industry,\n", + " 'headquaters':headquaters,\n", + " 'founded':founded\n", + " }\n", + ")" + ], + "metadata": { + "id": "MAieF5z1Ydby", + "executionInfo": { + "status": "ok", + "timestamp": 1762184573294, + "user_tz": -360, + "elapsed": 11, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + } + }, + "execution_count": 114, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "df" + ], + "metadata": { + "id": "qSxxGtDuYraD", + "executionInfo": { + "status": "ok", + "timestamp": 1762184577110, + "user_tz": -360, + "elapsed": 92, + "user": { + "displayName": "CS Instructor", + "userId": "11250517478662131773" + } + }, + "outputId": "8e99b3bd-3141-44bb-8fb3-f32d5c2d4b6c", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 423 + } + }, + "execution_count": 115, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " company industry headquaters \\\n", + "0 A K Khan & Company Conglomerates Chittagong \n", + "1 Aarong Consumer goods Dhaka \n", + "2 Abul Khair Group Conglomerates Chattogram \n", + "3 Adamjee Jute Mills Consumer goods Narayanganj \n", + "4 Advanced Chemical Industries (ACI) Conglomerates Dhaka \n", + ".. ... ... ... \n", + "169 United Group Conglomerates Dhaka \n", + "170 US-Bangla Airlines Consumer services Dhaka \n", + "171 Uttara Bank Limited Financials Dhaka \n", + "172 Walton Conglomerates Dhaka \n", + "173 Western Marine Shipyard Industrials Chittagong \n", + "\n", + " founded \n", + "0 1945 \n", + "1 1978 \n", + "2 1953 \n", + "3 1951 \n", + "4 1968 \n", + ".. ... \n", + "169 1978 \n", + "170 2013 \n", + "171 1965 \n", + "172 1977 \n", + "173 2000 \n", + "\n", + "[174 rows x 4 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
companyindustryheadquatersfounded
0A K Khan & CompanyConglomeratesChittagong1945
1AarongConsumer goodsDhaka1978
2Abul Khair GroupConglomeratesChattogram1953
3Adamjee Jute MillsConsumer goodsNarayanganj1951
4Advanced Chemical Industries (ACI)ConglomeratesDhaka1968
...............
169United GroupConglomeratesDhaka1978
170US-Bangla AirlinesConsumer servicesDhaka2013
171Uttara Bank LimitedFinancialsDhaka1965
172WaltonConglomeratesDhaka1977
173Western Marine ShipyardIndustrialsChittagong2000
\n", + "

174 rows × 4 columns

\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + " \n", + " \n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "variable_name": "df", + "summary": "{\n \"name\": \"df\",\n \"rows\": 174,\n \"fields\": [\n {\n \"column\": \"company\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 173,\n \"samples\": [\n \"The Sangbad\",\n \"Channel i\",\n \"Jamuna Television\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"industry\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 14,\n \"samples\": [\n \"Basic materials\",\n \"Conglomerate\",\n \"Conglomerates\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"headquaters\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 9,\n \"samples\": [\n \"Rajshahi\",\n \"Dhaka\",\n \"Gazipur City\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"founded\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 68,\n \"samples\": [\n \"1947\",\n \"1979\",\n \"1968\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 115 + } + ] + } + ] +} diff --git a/Python_For_ML/Week_4/Conceptual Session/CS-1/book.csv b/Python_For_ML/Week_4/Conceptual Session/CS-1/book.csv new file mode 100644 index 0000000..ae044c9 --- /dev/null +++ b/Python_For_ML/Week_4/Conceptual Session/CS-1/book.csv @@ -0,0 +1,6 @@ +title,author,isbn +Deep Work,Cal Newport,9781455586691 +The Mom Test,Rob Fitzpatrick,9781492180746, Bangladesh +The Innovator's Dilemma,Clayton Christensen,9781633691780 +The Lean Startup,Eric Ries,9780307887894, Bangladesh +Zero to One,Peter Thiel,9780804139298 diff --git a/Python_For_ML/Week_4/Conceptual Session/CS-1/cricket_matches.csv b/Python_For_ML/Week_4/Conceptual Session/CS-1/cricket_matches.csv new file mode 100644 index 0000000..a1a9414 --- /dev/null +++ b/Python_For_ML/Week_4/Conceptual Session/CS-1/cricket_matches.csv @@ -0,0 +1,817 @@ +id,city,date,player_of_match,venue,neutral_venue,team1,team2,toss_winner,toss_decision,winner,result,result_margin,eliminator,method,umpire1,umpire2 +335982,Bangalore,2008-04-18,BB McCullum,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kolkata Knight Riders,Royal Challengers Bangalore,field,Kolkata Knight Riders,runs,140,N,NA,Asad Rauf,RE Koertzen +335983,Chandigarh,2008-04-19,MEK Hussey,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Chennai Super Kings,Chennai Super Kings,bat,Chennai Super Kings,runs,33,N,NA,MR Benson,SL Shastri +335984,Delhi,2008-04-19,MF Maharoof,Feroz Shah Kotla,0,Delhi Daredevils,Rajasthan Royals,Rajasthan Royals,bat,Delhi Daredevils,wickets,9,N,NA,Aleem Dar,GA Pratapkumar +335985,Mumbai,2008-04-20,MV Boucher,Wankhede Stadium,0,Mumbai Indians,Royal Challengers Bangalore,Mumbai Indians,bat,Royal Challengers Bangalore,wickets,5,N,NA,SJ Davis,DJ Harper +335986,Kolkata,2008-04-20,DJ Hussey,Eden Gardens,0,Kolkata Knight Riders,Deccan Chargers,Deccan Chargers,bat,Kolkata Knight Riders,wickets,5,N,NA,BF Bowden,K Hariharan +335987,Jaipur,2008-04-21,SR Watson,Sawai Mansingh Stadium,0,Rajasthan Royals,Kings XI Punjab,Kings XI Punjab,bat,Rajasthan Royals,wickets,6,N,NA,Aleem Dar,RB Tiffin +335988,Hyderabad,2008-04-22,V Sehwag,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Delhi Daredevils,Deccan Chargers,bat,Delhi Daredevils,wickets,9,N,NA,IL Howell,AM Saheba +335989,Chennai,2008-04-23,ML Hayden,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Mumbai Indians,Mumbai Indians,field,Chennai Super Kings,runs,6,N,NA,DJ Harper,GA Pratapkumar +335990,Hyderabad,2008-04-24,YK Pathan,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,3,N,NA,Asad Rauf,MR Benson +335991,Chandigarh,2008-04-25,KC Sangakkara,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Mumbai Indians,Mumbai Indians,field,Kings XI Punjab,runs,66,N,NA,Aleem Dar,AM Saheba +335992,Bangalore,2008-04-26,SR Watson,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,7,N,NA,MR Benson,IL Howell +335993,Chennai,2008-04-26,JDP Oram,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kolkata Knight Riders,Kolkata Knight Riders,bat,Chennai Super Kings,wickets,9,N,NA,BF Bowden,AV Jayaprakash +335994,Mumbai,2008-04-27,AC Gilchrist,Dr DY Patil Sports Academy,0,Mumbai Indians,Deccan Chargers,Deccan Chargers,field,Deccan Chargers,wickets,10,N,NA,Asad Rauf,SL Shastri +335995,Chandigarh,2008-04-27,SM Katich,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Delhi Daredevils,Delhi Daredevils,bat,Kings XI Punjab,wickets,4,N,NA,RE Koertzen,I Shivram +335996,Bangalore,2008-04-28,MS Dhoni,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Chennai Super Kings,Chennai Super Kings,bat,Chennai Super Kings,runs,13,N,NA,BR Doctrove,RB Tiffin +335997,Kolkata,2008-04-29,ST Jayasuriya,Eden Gardens,0,Kolkata Knight Riders,Mumbai Indians,Kolkata Knight Riders,bat,Mumbai Indians,wickets,7,N,NA,BF Bowden,AV Jayaprakash +335998,Delhi,2008-04-30,GD McGrath,Feroz Shah Kotla,0,Delhi Daredevils,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Delhi Daredevils,runs,10,N,NA,Aleem Dar,I Shivram +335999,Hyderabad,2008-05-01,SE Marsh,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,7,N,NA,BR Doctrove,RB Tiffin +336000,Jaipur,2008-05-01,SA Asnodkar,Sawai Mansingh Stadium,0,Rajasthan Royals,Kolkata Knight Riders,Rajasthan Royals,bat,Rajasthan Royals,runs,45,N,NA,RE Koertzen,GA Pratapkumar +336001,Chennai,2008-05-02,V Sehwag,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Delhi Daredevils,Chennai Super Kings,bat,Delhi Daredevils,wickets,8,N,NA,BF Bowden,K Hariharan +336002,Hyderabad,2008-05-25,R Vinay Kumar,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Royal Challengers Bangalore,Deccan Chargers,bat,Royal Challengers Bangalore,wickets,5,N,NA,Asad Rauf,RE Koertzen +336003,Chandigarh,2008-05-03,IK Pathan,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Kolkata Knight Riders,Kings XI Punjab,bat,Kings XI Punjab,runs,9,N,NA,DJ Harper,I Shivram +336004,Mumbai,2008-05-04,SM Pollock,Dr DY Patil Sports Academy,0,Mumbai Indians,Delhi Daredevils,Delhi Daredevils,field,Mumbai Indians,runs,29,N,NA,IL Howell,RE Koertzen +336005,Jaipur,2008-05-04,Sohail Tanvir,Sawai Mansingh Stadium,0,Rajasthan Royals,Chennai Super Kings,Chennai Super Kings,bat,Rajasthan Royals,wickets,8,N,NA,Asad Rauf,AV Jayaprakash +336006,Bangalore,2008-05-05,S Sreesanth,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,6,N,NA,SJ Davis,BR Doctrove +336007,Chennai,2008-05-06,AC Gilchrist,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Deccan Chargers,Deccan Chargers,field,Deccan Chargers,wickets,7,N,NA,MR Benson,RB Tiffin +336008,Mumbai,2008-05-07,A Nehra,Dr DY Patil Sports Academy,0,Mumbai Indians,Rajasthan Royals,Mumbai Indians,field,Mumbai Indians,wickets,7,N,NA,DJ Harper,RE Koertzen +336009,Delhi,2008-05-08,MS Dhoni,Feroz Shah Kotla,0,Delhi Daredevils,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,4,N,NA,Aleem Dar,RB Tiffin +336010,Kolkata,2008-05-08,SC Ganguly,Eden Gardens,0,Kolkata Knight Riders,Royal Challengers Bangalore,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,5,N,NA,Asad Rauf,IL Howell +336011,Jaipur,2008-05-09,YK Pathan,Sawai Mansingh Stadium,0,Rajasthan Royals,Deccan Chargers,Rajasthan Royals,field,Rajasthan Royals,wickets,8,N,NA,MR Benson,AM Saheba +336012,Bangalore,2008-05-28,CRD Fernando,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,9,N,NA,BF Bowden,AV Jayaprakash +336013,Chennai,2008-05-10,L Balaji,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kings XI Punjab,Kings XI Punjab,field,Chennai Super Kings,runs,18,N,NA,AV Jayaprakash,BG Jerling +336014,Hyderabad,2008-05-11,SC Ganguly,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Kolkata Knight Riders,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,23,N,NA,IL Howell,AM Saheba +336015,Jaipur,2008-05-11,SR Watson,Sawai Mansingh Stadium,0,Rajasthan Royals,Delhi Daredevils,Rajasthan Royals,field,Rajasthan Royals,wickets,3,N,NA,SJ Davis,RE Koertzen +336016,Chandigarh,2008-05-12,SE Marsh,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Royal Challengers Bangalore,Royal Challengers Bangalore,bat,Kings XI Punjab,wickets,9,N,NA,BR Doctrove,I Shivram +336017,Kolkata,2008-05-13,Shoaib Akhtar,Eden Gardens,0,Kolkata Knight Riders,Delhi Daredevils,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,23,N,NA,Asad Rauf,IL Howell +336018,Mumbai,2008-05-14,ST Jayasuriya,Wankhede Stadium,0,Mumbai Indians,Chennai Super Kings,Mumbai Indians,field,Mumbai Indians,wickets,9,N,NA,BR Doctrove,AM Saheba +336019,Chandigarh,2008-05-28,SE Marsh,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Rajasthan Royals,Rajasthan Royals,field,Kings XI Punjab,runs,41,N,NA,SJ Davis,K Hariharan +336020,Delhi,2008-05-15,A Mishra,Feroz Shah Kotla,0,Delhi Daredevils,Deccan Chargers,Deccan Chargers,field,Delhi Daredevils,runs,12,N,NA,BG Jerling,GA Pratapkumar +336021,Mumbai,2008-05-16,SM Pollock,Wankhede Stadium,0,Mumbai Indians,Kolkata Knight Riders,Mumbai Indians,field,Mumbai Indians,wickets,8,N,NA,BR Doctrove,DJ Harper +336022,Delhi,2008-05-17,DPMD Jayawardene,Feroz Shah Kotla,0,Delhi Daredevils,Kings XI Punjab,Delhi Daredevils,bat,Kings XI Punjab,runs,6,N,D/L,AV Jayaprakash,RE Koertzen +336023,Jaipur,2008-05-17,GC Smith,Sawai Mansingh Stadium,0,Rajasthan Royals,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Rajasthan Royals,runs,65,N,NA,BF Bowden,SL Shastri +336024,Hyderabad,2008-05-18,DJ Bravo,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Mumbai Indians,Deccan Chargers,field,Mumbai Indians,runs,25,N,NA,BR Doctrove,DJ Harper +336025,Kolkata,2008-05-18,M Ntini,Eden Gardens,0,Kolkata Knight Riders,Chennai Super Kings,Kolkata Knight Riders,bat,Chennai Super Kings,runs,3,N,D/L,Asad Rauf,K Hariharan +336026,Bangalore,2008-05-19,SP Goswami,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,5,N,NA,SJ Davis,GA Pratapkumar +336027,Kolkata,2008-05-20,YK Pathan,Eden Gardens,0,Kolkata Knight Riders,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,6,N,NA,BG Jerling,RE Koertzen +336028,Mumbai,2008-05-21,SE Marsh,Wankhede Stadium,0,Mumbai Indians,Kings XI Punjab,Mumbai Indians,field,Kings XI Punjab,runs,1,N,NA,BF Bowden,GA Pratapkumar +336029,Chennai,2008-05-21,A Kumble,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Royal Challengers Bangalore,Royal Challengers Bangalore,bat,Royal Challengers Bangalore,runs,14,N,NA,DJ Harper,I Shivram +336031,Chandigarh,2008-05-23,SE Marsh,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Deccan Chargers,Kings XI Punjab,field,Kings XI Punjab,wickets,6,N,NA,Asad Rauf,SJ Davis +336032,Delhi,2008-05-24,KD Karthik,Feroz Shah Kotla,0,Delhi Daredevils,Mumbai Indians,Delhi Daredevils,field,Delhi Daredevils,wickets,5,N,NA,BF Bowden,K Hariharan +336033,Chennai,2008-05-24,JA Morkel,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Rajasthan Royals,Rajasthan Royals,bat,Rajasthan Royals,runs,10,N,NA,DJ Harper,SL Shastri +336034,Bangalore,2008-05-03,P Kumar,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Deccan Chargers,Deccan Chargers,field,Royal Challengers Bangalore,runs,3,N,NA,BR Doctrove,SL Shastri +336035,Kolkata,2008-05-25,Umar Gul,Eden Gardens,0,Kolkata Knight Riders,Kings XI Punjab,Kings XI Punjab,bat,Kolkata Knight Riders,wickets,3,N,NA,SJ Davis,I Shivram +336036,Jaipur,2008-05-26,Sohail Tanvir,Sawai Mansingh Stadium,0,Rajasthan Royals,Mumbai Indians,Rajasthan Royals,field,Rajasthan Royals,wickets,5,N,NA,BF Bowden,K Hariharan +336037,Hyderabad,2008-05-27,SK Raina,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Chennai Super Kings,Deccan Chargers,bat,Chennai Super Kings,wickets,7,N,NA,BG Jerling,AM Saheba +336038,Mumbai,2008-05-30,SR Watson,Wankhede Stadium,0,Delhi Daredevils,Rajasthan Royals,Delhi Daredevils,field,Rajasthan Royals,runs,105,N,NA,BF Bowden,RE Koertzen +336039,Mumbai,2008-05-31,M Ntini,Wankhede Stadium,0,Chennai Super Kings,Kings XI Punjab,Kings XI Punjab,bat,Chennai Super Kings,wickets,9,N,NA,Asad Rauf,DJ Harper +336040,Mumbai,2008-06-01,YK Pathan,Dr DY Patil Sports Academy,0,Chennai Super Kings,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,3,N,NA,BF Bowden,RE Koertzen +392181,Cape Town,2009-04-18,SR Tendulkar,Newlands,1,Chennai Super Kings,Mumbai Indians,Chennai Super Kings,field,Mumbai Indians,runs,19,N,NA,BR Doctrove,K Hariharan +392182,Cape Town,2009-04-18,R Dravid,Newlands,1,Royal Challengers Bangalore,Rajasthan Royals,Royal Challengers Bangalore,bat,Royal Challengers Bangalore,runs,75,N,NA,BR Doctrove,RB Tiffin +392183,Cape Town,2009-04-19,DL Vettori,Newlands,1,Delhi Daredevils,Kings XI Punjab,Delhi Daredevils,field,Delhi Daredevils,wickets,10,N,D/L,MR Benson,SD Ranade +392184,Cape Town,2009-04-19,RP Singh,Newlands,1,Deccan Chargers,Kolkata Knight Riders,Kolkata Knight Riders,bat,Deccan Chargers,wickets,8,N,NA,MR Benson,BR Doctrove +392185,Port Elizabeth,2009-04-20,M Muralitharan,St George's Park,1,Royal Challengers Bangalore,Chennai Super Kings,Chennai Super Kings,bat,Chennai Super Kings,runs,92,N,NA,BG Jerling,SJA Taufel +392186,Durban,2009-04-21,CH Gayle,Kingsmead,1,Kings XI Punjab,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,runs,11,N,D/L,DJ Harper,SD Ranade +392188,Cape Town,2009-04-22,AC Gilchrist,Newlands,1,Royal Challengers Bangalore,Deccan Chargers,Deccan Chargers,bat,Deccan Chargers,runs,24,N,NA,M Erasmus,AM Saheba +392189,Durban,2009-04-23,AB de Villiers,Kingsmead,1,Chennai Super Kings,Delhi Daredevils,Delhi Daredevils,bat,Delhi Daredevils,runs,9,N,NA,BR Doctrove,SJA Taufel +392190,Cape Town,2009-04-23,YK Pathan,Newlands,1,Kolkata Knight Riders,Rajasthan Royals,Kolkata Knight Riders,field,Rajasthan Royals,tie,NA,Y,NA,MR Benson,M Erasmus +392191,Durban,2009-04-24,RS Bopara,Kingsmead,1,Royal Challengers Bangalore,Kings XI Punjab,Royal Challengers Bangalore,bat,Kings XI Punjab,wickets,7,N,NA,BR Doctrove,TH Wijewardene +392192,Durban,2009-04-25,PP Ojha,Kingsmead,1,Deccan Chargers,Mumbai Indians,Deccan Chargers,bat,Deccan Chargers,runs,12,N,NA,HDPK Dharmasena,SJA Taufel +392194,Port Elizabeth,2009-04-26,TM Dilshan,St George's Park,1,Royal Challengers Bangalore,Delhi Daredevils,Royal Challengers Bangalore,bat,Delhi Daredevils,wickets,6,N,NA,S Asnani,BG Jerling +392195,Cape Town,2009-04-26,KC Sangakkara,Newlands,1,Kings XI Punjab,Rajasthan Royals,Kings XI Punjab,bat,Kings XI Punjab,runs,27,N,NA,M Erasmus,K Hariharan +392196,Durban,2009-04-27,HH Gibbs,Kingsmead,1,Chennai Super Kings,Deccan Chargers,Deccan Chargers,field,Deccan Chargers,wickets,6,N,NA,IL Howell,TH Wijewardene +392197,Port Elizabeth,2009-04-27,SR Tendulkar,St George's Park,1,Kolkata Knight Riders,Mumbai Indians,Mumbai Indians,bat,Mumbai Indians,runs,92,N,NA,BG Jerling,RB Tiffin +392198,Centurion,2009-04-28,YK Pathan,SuperSport Park,1,Delhi Daredevils,Rajasthan Royals,Delhi Daredevils,bat,Rajasthan Royals,wickets,5,N,NA,GAV Baxter,RE Koertzen +392199,Durban,2009-04-29,MV Boucher,Kingsmead,1,Royal Challengers Bangalore,Kolkata Knight Riders,Kolkata Knight Riders,bat,Royal Challengers Bangalore,wickets,5,N,NA,MR Benson,TH Wijewardene +392200,Durban,2009-04-29,KC Sangakkara,Kingsmead,1,Kings XI Punjab,Mumbai Indians,Kings XI Punjab,bat,Kings XI Punjab,runs,3,N,NA,MR Benson,SL Shastri +392201,Centurion,2009-04-30,DP Nannes,SuperSport Park,1,Deccan Chargers,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,6,N,NA,GAV Baxter,AM Saheba +392202,Centurion,2009-04-30,SK Raina,SuperSport Park,1,Chennai Super Kings,Rajasthan Royals,Rajasthan Royals,field,Chennai Super Kings,runs,38,N,NA,GAV Baxter,RE Koertzen +392203,East London,2009-05-01,JP Duminy,Buffalo Park,1,Kolkata Knight Riders,Mumbai Indians,Mumbai Indians,bat,Mumbai Indians,runs,9,N,NA,M Erasmus,SK Tarapore +392204,Durban,2009-05-01,Yuvraj Singh,Kingsmead,1,Royal Challengers Bangalore,Kings XI Punjab,Royal Challengers Bangalore,bat,Royal Challengers Bangalore,runs,8,N,NA,HDPK Dharmasena,S Ravi +392205,Port Elizabeth,2009-05-02,YK Pathan,St George's Park,1,Deccan Chargers,Rajasthan Royals,Deccan Chargers,bat,Rajasthan Royals,wickets,3,N,NA,S Asnani,BG Jerling +392206,Johannesburg,2009-05-02,SB Jakati,New Wanderers Stadium,1,Chennai Super Kings,Delhi Daredevils,Delhi Daredevils,field,Chennai Super Kings,runs,18,N,NA,DJ Harper,RE Koertzen +392207,Port Elizabeth,2009-05-03,DPMD Jayawardene,St George's Park,1,Kings XI Punjab,Kolkata Knight Riders,Kolkata Knight Riders,bat,Kings XI Punjab,wickets,6,N,NA,S Asnani,MR Benson +392208,Johannesburg,2009-05-03,JH Kallis,New Wanderers Stadium,1,Royal Challengers Bangalore,Mumbai Indians,Mumbai Indians,bat,Royal Challengers Bangalore,wickets,9,N,NA,RE Koertzen,TH Wijewardene +392209,East London,2009-05-04,MS Dhoni,Buffalo Park,1,Chennai Super Kings,Deccan Chargers,Chennai Super Kings,bat,Chennai Super Kings,runs,78,N,NA,BR Doctrove,M Erasmus +392210,Durban,2009-05-05,GC Smith,Kingsmead,1,Kings XI Punjab,Rajasthan Royals,Kings XI Punjab,field,Rajasthan Royals,runs,78,N,NA,SS Hazare,IL Howell +392211,Durban,2009-05-05,G Gambhir,Kingsmead,1,Delhi Daredevils,Kolkata Knight Riders,Kolkata Knight Riders,bat,Delhi Daredevils,wickets,9,N,NA,GAV Baxter,IL Howell +392212,Centurion,2009-05-06,RG Sharma,SuperSport Park,1,Deccan Chargers,Mumbai Indians,Deccan Chargers,bat,Deccan Chargers,runs,19,N,NA,MR Benson,HDPK Dharmasena +392213,Centurion,2009-05-07,A Singh,SuperSport Park,1,Royal Challengers Bangalore,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,7,N,NA,K Hariharan,DJ Harper +392214,Centurion,2009-05-07,ML Hayden,SuperSport Park,1,Chennai Super Kings,Kings XI Punjab,Chennai Super Kings,bat,Chennai Super Kings,runs,12,N,D/L,DJ Harper,TH Wijewardene +392215,East London,2009-05-08,A Nehra,Buffalo Park,1,Delhi Daredevils,Mumbai Indians,Mumbai Indians,bat,Delhi Daredevils,wickets,7,N,NA,M Erasmus,SK Tarapore +392216,Kimberley,2009-05-09,DPMD Jayawardene,De Beers Diamond Oval,1,Deccan Chargers,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,3,N,NA,GAV Baxter,AM Saheba +392217,Kimberley,2009-05-09,S Badrinath,De Beers Diamond Oval,1,Chennai Super Kings,Rajasthan Royals,Rajasthan Royals,bat,Chennai Super Kings,wickets,7,N,NA,GAV Baxter,HDPK Dharmasena +392218,Port Elizabeth,2009-05-10,JP Duminy,St George's Park,1,Royal Challengers Bangalore,Mumbai Indians,Mumbai Indians,bat,Mumbai Indians,runs,16,N,NA,BR Doctrove,BG Jerling +392219,Johannesburg,2009-05-10,A Mishra,New Wanderers Stadium,1,Delhi Daredevils,Kolkata Knight Riders,Delhi Daredevils,field,Delhi Daredevils,wickets,7,N,NA,SL Shastri,RB Tiffin +392220,Kimberley,2009-05-11,DR Smith,De Beers Diamond Oval,1,Deccan Chargers,Rajasthan Royals,Deccan Chargers,bat,Deccan Chargers,runs,53,N,NA,GAV Baxter,HDPK Dharmasena +392221,Centurion,2009-05-12,LRPL Taylor,SuperSport Park,1,Royal Challengers Bangalore,Kolkata Knight Riders,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,6,N,NA,M Erasmus,SS Hazare +392222,Centurion,2009-05-12,Harbhajan Singh,SuperSport Park,1,Kings XI Punjab,Mumbai Indians,Kings XI Punjab,bat,Mumbai Indians,wickets,8,N,NA,SS Hazare,RE Koertzen +392223,Durban,2009-05-13,R Bhatia,Kingsmead,1,Deccan Chargers,Delhi Daredevils,Deccan Chargers,field,Delhi Daredevils,runs,12,N,NA,DJ Harper,SL Shastri +392224,Durban,2009-05-14,LRPL Taylor,Kingsmead,1,Royal Challengers Bangalore,Chennai Super Kings,Chennai Super Kings,bat,Royal Challengers Bangalore,wickets,2,N,NA,BR Doctrove,DJ Harper +392225,Durban,2009-05-14,SK Warne,Kingsmead,1,Mumbai Indians,Rajasthan Royals,Rajasthan Royals,bat,Rajasthan Royals,runs,2,N,NA,BR Doctrove,DJ Harper +392226,Bloemfontein,2009-05-15,B Lee,OUTsurance Oval,1,Delhi Daredevils,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,6,N,NA,HDPK Dharmasena,IL Howell +392227,Port Elizabeth,2009-05-16,ML Hayden,St George's Park,1,Chennai Super Kings,Mumbai Indians,Mumbai Indians,bat,Chennai Super Kings,wickets,7,N,NA,SK Tarapore,SJA Taufel +392228,Johannesburg,2009-05-16,RG Sharma,New Wanderers Stadium,1,Deccan Chargers,Kolkata Knight Riders,Deccan Chargers,field,Deccan Chargers,wickets,6,N,NA,RE Koertzen,S Ravi +392229,Johannesburg,2009-05-17,Yuvraj Singh,New Wanderers Stadium,1,Deccan Chargers,Kings XI Punjab,Deccan Chargers,field,Kings XI Punjab,runs,1,N,NA,S Ravi,RB Tiffin +392230,Bloemfontein,2009-05-17,AB de Villiers,OUTsurance Oval,1,Delhi Daredevils,Rajasthan Royals,Delhi Daredevils,bat,Delhi Daredevils,runs,14,N,NA,SS Hazare,IL Howell +392231,Centurion,2009-05-18,BJ Hodge,SuperSport Park,1,Chennai Super Kings,Kolkata Knight Riders,Chennai Super Kings,bat,Kolkata Knight Riders,wickets,7,N,NA,SJA Taufel,RB Tiffin +392232,Johannesburg,2009-05-19,JH Kallis,New Wanderers Stadium,1,Royal Challengers Bangalore,Delhi Daredevils,Delhi Daredevils,bat,Royal Challengers Bangalore,wickets,7,N,NA,IL Howell,RB Tiffin +392233,Durban,2009-05-20,LR Shukla,Kingsmead,1,Kolkata Knight Riders,Rajasthan Royals,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,4,N,NA,BG Jerling,SJA Taufel +392234,Durban,2009-05-20,M Muralitharan,Kingsmead,1,Chennai Super Kings,Kings XI Punjab,Chennai Super Kings,bat,Chennai Super Kings,runs,24,N,NA,BG Jerling,SJA Taufel +392235,Centurion,2009-05-21,V Sehwag,SuperSport Park,1,Delhi Daredevils,Mumbai Indians,Delhi Daredevils,field,Delhi Daredevils,wickets,4,N,NA,IL Howell,S Ravi +392236,Centurion,2009-05-21,MK Pandey,SuperSport Park,1,Royal Challengers Bangalore,Deccan Chargers,Royal Challengers Bangalore,bat,Royal Challengers Bangalore,runs,12,N,NA,IL Howell,S Ravi +392237,Centurion,2009-05-22,AC Gilchrist,SuperSport Park,1,Delhi Daredevils,Deccan Chargers,Deccan Chargers,field,Deccan Chargers,wickets,6,N,NA,BR Doctrove,DJ Harper +392238,Johannesburg,2009-05-23,MK Pandey,New Wanderers Stadium,1,Royal Challengers Bangalore,Chennai Super Kings,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,6,N,NA,RE Koertzen,SJA Taufel +392239,Johannesburg,2009-05-24,A Kumble,New Wanderers Stadium,1,Royal Challengers Bangalore,Deccan Chargers,Royal Challengers Bangalore,field,Deccan Chargers,runs,6,N,NA,RE Koertzen,SJA Taufel +419106,Mumbai,2010-03-12,AD Mathews,Dr DY Patil Sports Academy,0,Deccan Chargers,Kolkata Knight Riders,Deccan Chargers,field,Kolkata Knight Riders,runs,11,N,NA,RE Koertzen,RB Tiffin +419107,Mumbai,2010-03-13,YK Pathan,Brabourne Stadium,0,Mumbai Indians,Rajasthan Royals,Mumbai Indians,bat,Mumbai Indians,runs,4,N,NA,RE Koertzen,RB Tiffin +419108,Chandigarh,2010-03-13,G Gambhir,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,5,N,NA,BR Doctrove,S Ravi +419109,Kolkata,2010-03-14,MK Tiwary,Eden Gardens,0,Kolkata Knight Riders,Royal Challengers Bangalore,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,7,N,NA,HDPK Dharmasena,AM Saheba +419110,Chennai,2010-03-14,WPUJC Vaas,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Deccan Chargers,Deccan Chargers,bat,Deccan Chargers,runs,31,N,NA,K Hariharan,DJ Harper +419111,Ahmedabad,2010-03-15,V Sehwag,"Sardar Patel Stadium, Motera",0,Rajasthan Royals,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,6,N,NA,BG Jerling,RE Koertzen +419112,Bangalore,2010-03-16,JH Kallis,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kings XI Punjab,Kings XI Punjab,bat,Royal Challengers Bangalore,wickets,8,N,NA,S Das,DJ Harper +419113,Kolkata,2010-03-16,MS Dhoni,Eden Gardens,0,Kolkata Knight Riders,Chennai Super Kings,Chennai Super Kings,bat,Chennai Super Kings,runs,55,N,NA,HDPK Dharmasena,AM Saheba +419114,Delhi,2010-03-17,SR Tendulkar,Feroz Shah Kotla,0,Delhi Daredevils,Mumbai Indians,Delhi Daredevils,field,Mumbai Indians,runs,98,N,NA,BR Doctrove,SK Tarapore +419115,Bangalore,2010-03-18,JH Kallis,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Rajasthan Royals,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,10,N,NA,K Hariharan,DJ Harper +419116,Delhi,2010-03-19,ML Hayden,Feroz Shah Kotla,0,Delhi Daredevils,Chennai Super Kings,Delhi Daredevils,bat,Chennai Super Kings,wickets,5,N,NA,BR Doctrove,SK Tarapore +419117,Cuttack,2010-03-19,A Symonds,Barabati Stadium,0,Deccan Chargers,Kings XI Punjab,Kings XI Punjab,field,Deccan Chargers,runs,6,N,NA,BF Bowden,M Erasmus +419118,Ahmedabad,2010-03-20,AA Jhunjhunwala,"Sardar Patel Stadium, Motera",0,Rajasthan Royals,Kolkata Knight Riders,Rajasthan Royals,bat,Rajasthan Royals,runs,34,N,NA,RE Koertzen,RB Tiffin +419119,Mumbai,2010-03-20,JH Kallis,Brabourne Stadium,0,Mumbai Indians,Royal Challengers Bangalore,Mumbai Indians,bat,Royal Challengers Bangalore,wickets,7,N,NA,HDPK Dharmasena,SS Hazare +419120,Cuttack,2010-03-21,A Symonds,Barabati Stadium,0,Deccan Chargers,Delhi Daredevils,Deccan Chargers,bat,Deccan Chargers,runs,10,N,NA,BF Bowden,M Erasmus +419121,Chennai,2010-03-21,J Theron,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kings XI Punjab,Chennai Super Kings,field,Kings XI Punjab,tie,NA,Y,NA,K Hariharan,DJ Harper +419122,Mumbai,2010-03-22,SR Tendulkar,Brabourne Stadium,0,Mumbai Indians,Kolkata Knight Riders,Kolkata Knight Riders,bat,Mumbai Indians,wickets,7,N,NA,SS Hazare,SJA Taufel +419123,Bangalore,2010-03-23,RV Uthappa,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Chennai Super Kings,Chennai Super Kings,field,Royal Challengers Bangalore,runs,36,N,NA,RE Koertzen,RB Tiffin +419124,Chandigarh,2010-03-24,AC Voges,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Rajasthan Royals,Kings XI Punjab,field,Rajasthan Royals,runs,31,N,NA,BR Doctrove,SK Tarapore +419125,Mumbai,2010-03-25,SR Tendulkar,Brabourne Stadium,0,Mumbai Indians,Chennai Super Kings,Mumbai Indians,field,Mumbai Indians,wickets,5,N,NA,BF Bowden,AM Saheba +419126,Ahmedabad,2010-03-26,YK Pathan,"Sardar Patel Stadium, Motera",0,Rajasthan Royals,Deccan Chargers,Deccan Chargers,bat,Rajasthan Royals,wickets,8,N,NA,HDPK Dharmasena,SJA Taufel +419127,Chandigarh,2010-03-27,MK Tiwary,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Kolkata Knight Riders,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,39,N,NA,BR Doctrove,S Ravi +419128,Bangalore,2010-03-25,KM Jadhav,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Delhi Daredevils,Royal Challengers Bangalore,field,Delhi Daredevils,runs,17,N,NA,BG Jerling,RE Koertzen +419129,Ahmedabad,2010-03-28,NV Ojha,"Sardar Patel Stadium, Motera",0,Rajasthan Royals,Chennai Super Kings,Rajasthan Royals,bat,Rajasthan Royals,runs,17,N,NA,SS Hazare,SJA Taufel +419130,Mumbai,2010-03-28,Harbhajan Singh,Dr DY Patil Sports Academy,0,Deccan Chargers,Mumbai Indians,Deccan Chargers,field,Mumbai Indians,runs,41,N,NA,S Das,K Hariharan +419131,Delhi,2010-03-29,DA Warner,Feroz Shah Kotla,0,Delhi Daredevils,Kolkata Knight Riders,Delhi Daredevils,bat,Delhi Daredevils,runs,40,N,NA,SS Hazare,SJA Taufel +419132,Mumbai,2010-03-30,SL Malinga,Brabourne Stadium,0,Mumbai Indians,Kings XI Punjab,Mumbai Indians,field,Mumbai Indians,wickets,4,N,NA,BR Doctrove,SK Tarapore +419133,Chennai,2010-03-31,M Vijay,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Royal Challengers Bangalore,Royal Challengers Bangalore,bat,Chennai Super Kings,wickets,5,N,NA,BG Jerling,RE Koertzen +419134,Delhi,2010-03-31,KD Karthik,Feroz Shah Kotla,0,Delhi Daredevils,Rajasthan Royals,Delhi Daredevils,bat,Delhi Daredevils,runs,67,N,NA,HDPK Dharmasena,SJA Taufel +419135,Kolkata,2010-04-01,SC Ganguly,Eden Gardens,0,Kolkata Knight Riders,Deccan Chargers,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,24,N,NA,K Hariharan,DJ Harper +419136,Chandigarh,2010-04-02,KP Pietersen,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Royal Challengers Bangalore,Kings XI Punjab,bat,Royal Challengers Bangalore,wickets,6,N,NA,BF Bowden,M Erasmus +419137,Chennai,2010-04-03,M Vijay,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Rajasthan Royals,Chennai Super Kings,bat,Chennai Super Kings,runs,23,N,NA,RE Koertzen,RB Tiffin +419138,Mumbai,2010-04-03,AT Rayudu,Brabourne Stadium,0,Mumbai Indians,Deccan Chargers,Mumbai Indians,bat,Mumbai Indians,runs,63,N,NA,BR Doctrove,S Ravi +419139,Kolkata,2010-04-04,DPMD Jayawardene,Eden Gardens,0,Kolkata Knight Riders,Kings XI Punjab,Kolkata Knight Riders,bat,Kings XI Punjab,wickets,8,N,NA,S Asnani,DJ Harper +419140,Delhi,2010-04-04,PD Collingwood,Feroz Shah Kotla,0,Delhi Daredevils,Royal Challengers Bangalore,Delhi Daredevils,bat,Delhi Daredevils,runs,37,N,NA,BF Bowden,M Erasmus +419141,Nagpur,2010-04-05,SK Warne,"Vidarbha Cricket Association Stadium, Jamtha",0,Deccan Chargers,Rajasthan Royals,Rajasthan Royals,bat,Rajasthan Royals,runs,2,N,NA,HDPK Dharmasena,SJA Taufel +419142,Chennai,2010-04-06,SK Raina,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Mumbai Indians,Chennai Super Kings,bat,Chennai Super Kings,runs,24,N,NA,S Asnani,DJ Harper +419143,Jaipur,2010-04-07,MJ Lumb,Sawai Mansingh Stadium,0,Rajasthan Royals,Kings XI Punjab,Kings XI Punjab,bat,Rajasthan Royals,wickets,9,N,NA,S Ravi,SK Tarapore +419144,Kolkata,2010-04-07,SC Ganguly,Eden Gardens,0,Kolkata Knight Riders,Delhi Daredevils,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,14,N,NA,BG Jerling,RE Koertzen +419145,Bangalore,2010-04-08,TL Suman,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Deccan Chargers,Deccan Chargers,field,Deccan Chargers,wickets,7,N,NA,S Asnani,DJ Harper +419146,Chandigarh,2010-04-09,KC Sangakkara,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Mumbai Indians,Mumbai Indians,bat,Kings XI Punjab,wickets,6,N,NA,M Erasmus,AM Saheba +419147,Nagpur,2010-04-10,RJ Harris,"Vidarbha Cricket Association Stadium, Jamtha",0,Deccan Chargers,Chennai Super Kings,Chennai Super Kings,bat,Deccan Chargers,wickets,6,N,NA,HDPK Dharmasena,SJA Taufel +419148,Bangalore,2010-04-10,R Vinay Kumar,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kolkata Knight Riders,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,7,N,NA,K Hariharan,DJ Harper +419149,Delhi,2010-04-11,PP Chawla,Feroz Shah Kotla,0,Delhi Daredevils,Kings XI Punjab,Delhi Daredevils,bat,Kings XI Punjab,wickets,7,N,NA,BF Bowden,AM Saheba +419150,Jaipur,2010-04-11,SR Tendulkar,Sawai Mansingh Stadium,0,Rajasthan Royals,Mumbai Indians,Rajasthan Royals,field,Mumbai Indians,runs,37,N,NA,BR Doctrove,SK Tarapore +419151,Nagpur,2010-04-12,Harmeet Singh,"Vidarbha Cricket Association Stadium, Jamtha",0,Deccan Chargers,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Deccan Chargers,runs,13,N,NA,RE Koertzen,RB Tiffin +419152,Mumbai,2010-04-13,KA Pollard,Brabourne Stadium,0,Mumbai Indians,Delhi Daredevils,Mumbai Indians,bat,Mumbai Indians,runs,39,N,NA,S Asnani,DJ Harper +419153,Chennai,2010-04-13,R Ashwin,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kolkata Knight Riders,Kolkata Knight Riders,bat,Chennai Super Kings,wickets,9,N,NA,SS Hazare,SJA Taufel +419154,Jaipur,2010-04-14,KP Pietersen,Sawai Mansingh Stadium,0,Rajasthan Royals,Royal Challengers Bangalore,Rajasthan Royals,bat,Royal Challengers Bangalore,wickets,5,N,NA,BR Doctrove,S Ravi +419155,Chennai,2010-04-15,G Gambhir,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Delhi Daredevils,Chennai Super Kings,bat,Delhi Daredevils,wickets,6,N,NA,HDPK Dharmasena,SS Hazare +419156,Dharamsala,2010-04-16,RG Sharma,Himachal Pradesh Cricket Association Stadium,0,Kings XI Punjab,Deccan Chargers,Deccan Chargers,field,Deccan Chargers,wickets,5,N,NA,M Erasmus,AM Saheba +419157,Bangalore,2010-04-17,R McLaren,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Mumbai Indians,Royal Challengers Bangalore,field,Mumbai Indians,runs,57,N,NA,HDPK Dharmasena,SJA Taufel +419158,Kolkata,2010-04-17,JD Unadkat,Eden Gardens,0,Kolkata Knight Riders,Rajasthan Royals,Rajasthan Royals,bat,Kolkata Knight Riders,wickets,8,N,NA,BG Jerling,RB Tiffin +419159,Dharamsala,2010-04-18,MS Dhoni,Himachal Pradesh Cricket Association Stadium,0,Kings XI Punjab,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,6,N,NA,BF Bowden,AM Saheba +419160,Delhi,2010-04-18,A Symonds,Feroz Shah Kotla,0,Delhi Daredevils,Deccan Chargers,Deccan Chargers,bat,Deccan Chargers,runs,11,N,NA,BR Doctrove,SK Tarapore +419161,Kolkata,2010-04-19,M Kartik,Eden Gardens,0,Kolkata Knight Riders,Mumbai Indians,Mumbai Indians,bat,Kolkata Knight Riders,wickets,9,N,NA,BG Jerling,RE Koertzen +419162,Mumbai,2010-04-21,KA Pollard,Dr DY Patil Sports Academy,0,Royal Challengers Bangalore,Mumbai Indians,Mumbai Indians,bat,Mumbai Indians,runs,35,N,NA,BR Doctrove,RB Tiffin +419163,Mumbai,2010-04-22,DE Bollinger,Dr DY Patil Sports Academy,0,Chennai Super Kings,Deccan Chargers,Chennai Super Kings,bat,Chennai Super Kings,runs,38,N,NA,BR Doctrove,RB Tiffin +419164,Mumbai,2010-04-24,A Kumble,Dr DY Patil Sports Academy,0,Royal Challengers Bangalore,Deccan Chargers,Deccan Chargers,bat,Royal Challengers Bangalore,wickets,9,N,NA,RE Koertzen,SJA Taufel +419165,Mumbai,2010-04-25,SK Raina,Dr DY Patil Sports Academy,0,Chennai Super Kings,Mumbai Indians,Chennai Super Kings,bat,Chennai Super Kings,runs,22,N,NA,RE Koertzen,SJA Taufel +501198,Chennai,2011-04-08,S Anirudha,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kolkata Knight Riders,Chennai Super Kings,bat,Chennai Super Kings,runs,2,N,NA,BR Doctrove,PR Reiffel +501199,Hyderabad,2011-04-09,SK Trivedi,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,8,N,NA,RE Koertzen,SK Tarapore +501200,Kochi,2011-04-09,AB de Villiers,Nehru Stadium,0,Kochi Tuskers Kerala,Royal Challengers Bangalore,Kochi Tuskers Kerala,bat,Royal Challengers Bangalore,wickets,6,N,NA,HDPK Dharmasena,K Hariharan +501201,Delhi,2011-04-10,SL Malinga,Feroz Shah Kotla,0,Delhi Daredevils,Mumbai Indians,Delhi Daredevils,bat,Mumbai Indians,wickets,8,N,NA,AM Saheba,RB Tiffin +501202,Mumbai,2011-04-10,SB Wagh,Dr DY Patil Sports Academy,0,Pune Warriors,Kings XI Punjab,Kings XI Punjab,bat,Pune Warriors,wickets,7,N,NA,BR Doctrove,PR Reiffel +501203,Kolkata,2011-04-11,JH Kallis,Eden Gardens,0,Kolkata Knight Riders,Deccan Chargers,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,9,N,NA,RE Koertzen,SK Tarapore +501204,Jaipur,2011-04-12,SK Warne,Sawai Mansingh Stadium,0,Rajasthan Royals,Delhi Daredevils,Delhi Daredevils,bat,Rajasthan Royals,wickets,6,N,NA,Aleem Dar,RB Tiffin +501205,Bangalore,2011-04-12,SR Tendulkar,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,9,N,NA,HDPK Dharmasena,AL Hill +501206,Chandigarh,2011-04-13,PC Valthaty,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Chennai Super Kings,Kings XI Punjab,field,Kings XI Punjab,wickets,6,N,NA,Asad Rauf,SL Shastri +501207,Mumbai,2011-04-13,MD Mishra,Dr DY Patil Sports Academy,0,Pune Warriors,Kochi Tuskers Kerala,Kochi Tuskers Kerala,bat,Pune Warriors,wickets,4,N,NA,S Asnani,PR Reiffel +501208,Hyderabad,2011-04-14,DW Steyn,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Deccan Chargers,runs,33,N,NA,RE Koertzen,S Ravi +501209,Jaipur,2011-04-15,G Gambhir,Sawai Mansingh Stadium,0,Rajasthan Royals,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,9,N,NA,Aleem Dar,SS Hazare +501210,Mumbai,2011-04-15,BB McCullum,Wankhede Stadium,0,Mumbai Indians,Kochi Tuskers Kerala,Kochi Tuskers Kerala,field,Kochi Tuskers Kerala,wickets,8,N,NA,BR Doctrove,PR Reiffel +501211,Chennai,2011-04-16,MEK Hussey,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Royal Challengers Bangalore,Chennai Super Kings,bat,Chennai Super Kings,runs,21,N,NA,HDPK Dharmasena,AL Hill +501212,Hyderabad,2011-04-16,PC Valthaty,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,8,N,NA,RE Koertzen,S Ravi +501213,Mumbai,2011-04-17,Yuvraj Singh,Dr DY Patil Sports Academy,0,Pune Warriors,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,3,N,NA,Asad Rauf,AM Saheba +501214,Kolkata,2011-04-17,L Balaji,Eden Gardens,0,Kolkata Knight Riders,Rajasthan Royals,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,8,N,NA,Aleem Dar,RB Tiffin +501215,Kochi,2011-04-18,BB McCullum,Nehru Stadium,0,Kochi Tuskers Kerala,Chennai Super Kings,Kochi Tuskers Kerala,field,Kochi Tuskers Kerala,wickets,7,N,D/L,K Hariharan,AL Hill +501216,Delhi,2011-04-19,S Sohal,Feroz Shah Kotla,0,Delhi Daredevils,Deccan Chargers,Deccan Chargers,bat,Deccan Chargers,runs,16,N,NA,PR Reiffel,RJ Tucker +501218,Mumbai,2011-04-20,MM Patel,Wankhede Stadium,0,Mumbai Indians,Pune Warriors,Pune Warriors,bat,Mumbai Indians,wickets,7,N,NA,Asad Rauf,AM Saheba +501219,Kolkata,2011-04-20,DPMD Jayawardene,Eden Gardens,0,Kolkata Knight Riders,Kochi Tuskers Kerala,Kolkata Knight Riders,field,Kochi Tuskers Kerala,runs,6,N,NA,Aleem Dar,RB Tiffin +501220,Chandigarh,2011-04-21,SE Marsh,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Rajasthan Royals,Rajasthan Royals,field,Kings XI Punjab,runs,48,N,NA,S Asnani,PR Reiffel +501221,Mumbai,2011-04-22,Harbhajan Singh,Wankhede Stadium,0,Mumbai Indians,Chennai Super Kings,Chennai Super Kings,field,Mumbai Indians,runs,8,N,NA,Asad Rauf,AM Saheba +501222,Kolkata,2011-04-22,CH Gayle,Eden Gardens,0,Kolkata Knight Riders,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,9,N,NA,SS Hazare,RB Tiffin +501223,Delhi,2011-04-23,DA Warner,Feroz Shah Kotla,0,Delhi Daredevils,Kings XI Punjab,Kings XI Punjab,field,Delhi Daredevils,runs,29,N,NA,S Asnani,RE Koertzen +501224,Hyderabad,2011-04-24,SL Malinga,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Mumbai Indians,Deccan Chargers,field,Mumbai Indians,runs,37,N,NA,HDPK Dharmasena,AL Hill +501225,Jaipur,2011-04-24,SK Warne,Sawai Mansingh Stadium,0,Rajasthan Royals,Kochi Tuskers Kerala,Rajasthan Royals,field,Rajasthan Royals,wickets,8,N,NA,BR Doctrove,SK Tarapore +501226,Chennai,2011-04-25,MEK Hussey,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Pune Warriors,Pune Warriors,field,Chennai Super Kings,runs,25,N,NA,Aleem Dar,RB Tiffin +501227,Delhi,2011-04-26,V Kohli,Feroz Shah Kotla,0,Delhi Daredevils,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,3,N,NA,S Asnani,RJ Tucker +501228,Mumbai,2011-04-27,DE Bollinger,Dr DY Patil Sports Academy,0,Pune Warriors,Chennai Super Kings,Pune Warriors,bat,Chennai Super Kings,wickets,8,N,NA,Asad Rauf,SL Shastri +501229,Kochi,2011-04-27,I Sharma,Nehru Stadium,0,Kochi Tuskers Kerala,Deccan Chargers,Kochi Tuskers Kerala,field,Deccan Chargers,runs,55,N,NA,HDPK Dharmasena,AL Hill +501230,Delhi,2011-04-28,MK Tiwary,Feroz Shah Kotla,0,Delhi Daredevils,Kolkata Knight Riders,Delhi Daredevils,field,Kolkata Knight Riders,runs,17,N,NA,PR Reiffel,RJ Tucker +501231,Jaipur,2011-04-29,J Botha,Sawai Mansingh Stadium,0,Rajasthan Royals,Mumbai Indians,Rajasthan Royals,field,Rajasthan Royals,wickets,7,N,NA,Asad Rauf,SK Tarapore +501232,Bangalore,2011-04-29,V Kohli,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Pune Warriors,Pune Warriors,field,Royal Challengers Bangalore,runs,26,N,NA,Aleem Dar,SS Hazare +501233,Kochi,2011-04-30,V Sehwag,Nehru Stadium,0,Kochi Tuskers Kerala,Delhi Daredevils,Delhi Daredevils,bat,Delhi Daredevils,runs,38,N,NA,HDPK Dharmasena,AL Hill +501234,Kolkata,2011-04-30,Iqbal Abdulla,Eden Gardens,0,Kolkata Knight Riders,Kings XI Punjab,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,8,N,NA,AM Saheba,SL Shastri +501235,Jaipur,2011-05-01,LRPL Taylor,Sawai Mansingh Stadium,0,Rajasthan Royals,Pune Warriors,Rajasthan Royals,field,Rajasthan Royals,wickets,6,N,NA,SK Tarapore,SJA Taufel +501236,Chennai,2011-05-01,JA Morkel,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Deccan Chargers,Chennai Super Kings,bat,Chennai Super Kings,runs,19,N,NA,Aleem Dar,RB Tiffin +501237,Mumbai,2011-05-02,KA Pollard,Wankhede Stadium,0,Mumbai Indians,Kings XI Punjab,Kings XI Punjab,field,Mumbai Indians,runs,23,N,NA,HDPK Dharmasena,PR Reiffel +501238,Delhi,2011-05-02,P Parameswaran,Feroz Shah Kotla,0,Delhi Daredevils,Kochi Tuskers Kerala,Kochi Tuskers Kerala,field,Kochi Tuskers Kerala,wickets,7,N,NA,Asad Rauf,SL Shastri +501239,Hyderabad,2011-05-03,YK Pathan,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Kolkata Knight Riders,Deccan Chargers,field,Kolkata Knight Riders,runs,20,N,NA,S Asnani,RJ Tucker +501240,Chennai,2011-05-04,MEK Hussey,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Rajasthan Royals,Rajasthan Royals,bat,Chennai Super Kings,wickets,8,N,NA,SS Hazare,RB Tiffin +501241,Mumbai,2011-05-04,R Sharma,Dr DY Patil Sports Academy,0,Pune Warriors,Mumbai Indians,Pune Warriors,field,Mumbai Indians,runs,21,N,NA,HDPK Dharmasena,SJA Taufel +501242,Kochi,2011-05-05,BJ Hodge,Nehru Stadium,0,Kochi Tuskers Kerala,Kolkata Knight Riders,Kolkata Knight Riders,field,Kochi Tuskers Kerala,runs,17,N,NA,S Ravi,RJ Tucker +501243,Hyderabad,2011-05-05,V Sehwag,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,4,N,NA,Asad Rauf,AM Saheba +501244,Bangalore,2011-05-06,CH Gayle,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kings XI Punjab,Kings XI Punjab,field,Royal Challengers Bangalore,runs,85,N,NA,Aleem Dar,RB Tiffin +501245,Kolkata,2011-05-07,Iqbal Abdulla,Eden Gardens,0,Kolkata Knight Riders,Chennai Super Kings,Chennai Super Kings,bat,Kolkata Knight Riders,runs,10,N,D/L,Asad Rauf,PR Reiffel +501246,Mumbai,2011-05-07,AT Rayudu,Wankhede Stadium,0,Mumbai Indians,Delhi Daredevils,Delhi Daredevils,field,Mumbai Indians,runs,32,N,NA,K Hariharan,SJA Taufel +501247,Bangalore,2011-05-08,CH Gayle,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kochi Tuskers Kerala,Kochi Tuskers Kerala,bat,Royal Challengers Bangalore,wickets,9,N,NA,Aleem Dar,SS Hazare +501248,Chandigarh,2011-05-08,R Sharma,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Pune Warriors,Kings XI Punjab,bat,Pune Warriors,wickets,5,N,NA,SK Tarapore,RJ Tucker +501249,Jaipur,2011-05-09,M Vijay,Sawai Mansingh Stadium,0,Rajasthan Royals,Chennai Super Kings,Rajasthan Royals,field,Chennai Super Kings,runs,63,N,NA,K Hariharan,SJA Taufel +501250,Hyderabad,2011-05-10,MR Marsh,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Pune Warriors,Deccan Chargers,bat,Pune Warriors,wickets,6,N,NA,Asad Rauf,AM Saheba +501251,Chandigarh,2011-05-10,BA Bhatt,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Mumbai Indians,Mumbai Indians,field,Kings XI Punjab,runs,76,N,NA,SK Tarapore,RJ Tucker +501252,Jaipur,2011-05-11,S Aravind,Sawai Mansingh Stadium,0,Rajasthan Royals,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,9,N,NA,HDPK Dharmasena,K Hariharan +501253,Chennai,2011-05-12,MS Dhoni,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Delhi Daredevils,Chennai Super Kings,bat,Chennai Super Kings,runs,18,N,NA,AM Saheba,SL Shastri +501254,Indore,2011-05-13,KD Karthik,Holkar Cricket Stadium,0,Kochi Tuskers Kerala,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,6,N,NA,S Asnani,RJ Tucker +501255,Bangalore,2011-05-14,CH Gayle,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kolkata Knight Riders,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,4,N,D/L,RE Koertzen,RB Tiffin +501256,Mumbai,2011-05-14,A Mishra,Wankhede Stadium,0,Mumbai Indians,Deccan Chargers,Deccan Chargers,bat,Deccan Chargers,runs,10,N,NA,S Ravi,SK Tarapore +501257,Dharamsala,2011-05-15,PP Chawla,Himachal Pradesh Cricket Association Stadium,0,Kings XI Punjab,Delhi Daredevils,Delhi Daredevils,field,Kings XI Punjab,runs,29,N,NA,Asad Rauf,SL Shastri +501258,Indore,2011-05-15,BJ Hodge,Holkar Cricket Stadium,0,Kochi Tuskers Kerala,Rajasthan Royals,Kochi Tuskers Kerala,field,Kochi Tuskers Kerala,wickets,8,N,NA,PR Reiffel,RJ Tucker +501259,Mumbai,2011-05-16,A Mishra,Dr DY Patil Sports Academy,0,Pune Warriors,Deccan Chargers,Deccan Chargers,field,Deccan Chargers,wickets,6,N,NA,S Ravi,SK Tarapore +501260,Dharamsala,2011-05-17,AC Gilchrist,Himachal Pradesh Cricket Association Stadium,0,Kings XI Punjab,Royal Challengers Bangalore,Kings XI Punjab,bat,Kings XI Punjab,runs,111,N,NA,Asad Rauf,AM Saheba +501261,Chennai,2011-05-18,WP Saha,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kochi Tuskers Kerala,Chennai Super Kings,bat,Chennai Super Kings,runs,11,N,NA,HDPK Dharmasena,RE Koertzen +501262,Mumbai,2011-05-19,YK Pathan,Dr DY Patil Sports Academy,0,Pune Warriors,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,7,N,NA,S Ravi,SJA Taufel +501263,Mumbai,2011-05-20,SR Watson,Wankhede Stadium,0,Mumbai Indians,Rajasthan Royals,Mumbai Indians,bat,Rajasthan Royals,wickets,10,N,NA,RE Koertzen,PR Reiffel +501264,Dharamsala,2011-05-21,S Dhawan,Himachal Pradesh Cricket Association Stadium,0,Kings XI Punjab,Deccan Chargers,Kings XI Punjab,field,Deccan Chargers,runs,82,N,NA,Asad Rauf,AM Saheba +501265,Delhi,2011-05-21,NA,Feroz Shah Kotla,0,Delhi Daredevils,Pune Warriors,Delhi Daredevils,bat,NA,NA,NA,NA,NA,SS Hazare,RJ Tucker +501266,Bangalore,2011-05-22,CH Gayle,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Chennai Super Kings,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,8,N,NA,K Hariharan,RE Koertzen +501267,Kolkata,2011-05-22,JEC Franklin,Eden Gardens,0,Kolkata Knight Riders,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,5,N,NA,SK Tarapore,SJA Taufel +501268,Mumbai,2011-05-24,SK Raina,Wankhede Stadium,0,Royal Challengers Bangalore,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,6,N,NA,Asad Rauf,SJA Taufel +501269,Mumbai,2011-05-25,MM Patel,Wankhede Stadium,0,Mumbai Indians,Kolkata Knight Riders,Mumbai Indians,field,Mumbai Indians,wickets,4,N,NA,Asad Rauf,SJA Taufel +501270,Chennai,2011-05-27,CH Gayle,"MA Chidambaram Stadium, Chepauk",0,Royal Challengers Bangalore,Mumbai Indians,Mumbai Indians,field,Royal Challengers Bangalore,runs,43,N,NA,Asad Rauf,SJA Taufel +501271,Chennai,2011-05-28,M Vijay,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Royal Challengers Bangalore,Chennai Super Kings,bat,Chennai Super Kings,runs,58,N,NA,Asad Rauf,SJA Taufel +548306,Chennai,2012-04-04,RE Levi,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,8,N,NA,JD Cloete,SJA Taufel +548307,Kolkata,2012-04-05,IK Pathan,Eden Gardens,0,Kolkata Knight Riders,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,8,N,NA,S Asnani,HDPK Dharmasena +548308,Mumbai,2012-04-06,SPD Smith,Wankhede Stadium,0,Mumbai Indians,Pune Warriors,Mumbai Indians,field,Pune Warriors,runs,28,N,NA,AK Chaudhary,SJA Taufel +548309,Jaipur,2012-04-06,AM Rahane,Sawai Mansingh Stadium,0,Rajasthan Royals,Kings XI Punjab,Kings XI Punjab,field,Rajasthan Royals,runs,31,N,NA,BF Bowden,SK Tarapore +548310,Bangalore,2012-04-07,AB de Villiers,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Delhi Daredevils,Delhi Daredevils,field,Royal Challengers Bangalore,runs,20,N,NA,S Asnani,S Ravi +548311,Visakhapatnam,2012-04-07,RA Jadeja,Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium,0,Deccan Chargers,Chennai Super Kings,Deccan Chargers,field,Chennai Super Kings,runs,74,N,NA,JD Cloete,HDPK Dharmasena +548312,Jaipur,2012-04-08,BJ Hodge,Sawai Mansingh Stadium,0,Rajasthan Royals,Kolkata Knight Riders,Kolkata Knight Riders,field,Rajasthan Royals,runs,22,N,NA,BF Bowden,VA Kulkarni +548313,Pune,2012-04-08,MN Samuels,Subrata Roy Sahara Stadium,0,Pune Warriors,Kings XI Punjab,Pune Warriors,bat,Pune Warriors,runs,22,N,NA,S Das,SJA Taufel +548314,Visakhapatnam,2012-04-09,RG Sharma,Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium,0,Deccan Chargers,Mumbai Indians,Deccan Chargers,bat,Mumbai Indians,wickets,5,N,NA,AK Chaudhary,JD Cloete +548315,Bangalore,2012-04-10,L Balaji,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kolkata Knight Riders,Royal Challengers Bangalore,field,Kolkata Knight Riders,runs,42,N,NA,S Ravi,RJ Tucker +548316,Delhi,2012-04-10,M Morkel,Feroz Shah Kotla,0,Delhi Daredevils,Chennai Super Kings,Delhi Daredevils,field,Delhi Daredevils,wickets,8,N,NA,Asad Rauf,SK Tarapore +548317,Mumbai,2012-04-11,KA Pollard,Wankhede Stadium,0,Mumbai Indians,Rajasthan Royals,Rajasthan Royals,field,Mumbai Indians,runs,27,N,NA,Aleem Dar,BNJ Oxenford +548318,Chennai,2012-04-12,F du Plessis,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Royal Challengers Bangalore,Royal Challengers Bangalore,bat,Chennai Super Kings,wickets,5,N,NA,HDPK Dharmasena,RJ Tucker +548319,Chandigarh,2012-04-12,AD Mascarenhas,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Pune Warriors,Kings XI Punjab,field,Kings XI Punjab,wickets,7,N,NA,VA Kulkarni,SK Tarapore +548320,Kolkata,2012-04-13,Shakib Al Hasan,Eden Gardens,0,Kolkata Knight Riders,Rajasthan Royals,Rajasthan Royals,bat,Kolkata Knight Riders,wickets,5,N,NA,Asad Rauf,S Asnani +548321,Delhi,2012-04-19,KP Pietersen,Feroz Shah Kotla,0,Delhi Daredevils,Deccan Chargers,Deccan Chargers,bat,Delhi Daredevils,wickets,5,N,NA,BF Bowden,SK Tarapore +548322,Pune,2012-04-14,JD Ryder,Subrata Roy Sahara Stadium,0,Pune Warriors,Chennai Super Kings,Chennai Super Kings,bat,Pune Warriors,wickets,7,N,NA,Aleem Dar,BNJ Oxenford +548323,Kolkata,2012-04-15,SP Narine,Eden Gardens,0,Kolkata Knight Riders,Kings XI Punjab,Kolkata Knight Riders,field,Kings XI Punjab,runs,2,N,NA,Asad Rauf,S Asnani +548324,Bangalore,2012-04-15,AM Rahane,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Rajasthan Royals,Rajasthan Royals,bat,Rajasthan Royals,runs,59,N,NA,JD Cloete,RJ Tucker +548325,Mumbai,2012-04-16,S Nadeem,Wankhede Stadium,0,Mumbai Indians,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,7,N,NA,BF Bowden,SK Tarapore +548326,Jaipur,2012-04-17,BJ Hodge,Sawai Mansingh Stadium,0,Rajasthan Royals,Deccan Chargers,Deccan Chargers,bat,Rajasthan Royals,wickets,5,N,NA,Aleem Dar,BNJ Oxenford +548327,Bangalore,2012-04-17,CH Gayle,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Pune Warriors,Pune Warriors,bat,Royal Challengers Bangalore,wickets,6,N,NA,S Asnani,S Das +548328,Chandigarh,2012-04-18,G Gambhir,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Kolkata Knight Riders,Kings XI Punjab,bat,Kolkata Knight Riders,wickets,8,N,NA,JD Cloete,RJ Tucker +548329,Hyderabad,2012-05-10,DA Warner,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Delhi Daredevils,Deccan Chargers,bat,Delhi Daredevils,wickets,9,N,NA,JD Cloete,SJA Taufel +548330,Chennai,2012-04-19,KMDN Kulasekara,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Pune Warriors,Pune Warriors,field,Chennai Super Kings,runs,13,N,NA,Asad Rauf,S Das +548331,Chandigarh,2012-04-20,CH Gayle,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,5,N,NA,S Ravi,RJ Tucker +548332,Chennai,2012-04-21,F du Plessis,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Rajasthan Royals,Rajasthan Royals,bat,Chennai Super Kings,wickets,7,N,NA,Aleem Dar,BNJ Oxenford +548333,Delhi,2012-04-21,SC Ganguly,Feroz Shah Kotla,0,Delhi Daredevils,Pune Warriors,Delhi Daredevils,field,Pune Warriors,runs,20,N,NA,Asad Rauf,S Das +548334,Mumbai,2012-04-22,SE Marsh,Wankhede Stadium,0,Mumbai Indians,Kings XI Punjab,Mumbai Indians,bat,Kings XI Punjab,wickets,6,N,NA,S Ravi,RJ Tucker +548335,Cuttack,2012-04-22,B Lee,Barabati Stadium,0,Deccan Chargers,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,5,N,NA,BF Bowden,SK Tarapore +548336,Jaipur,2012-04-23,AB de Villiers,Sawai Mansingh Stadium,0,Rajasthan Royals,Royal Challengers Bangalore,Rajasthan Royals,field,Royal Challengers Bangalore,runs,46,N,NA,Asad Rauf,S Asnani +548337,Pune,2012-04-24,V Sehwag,Subrata Roy Sahara Stadium,0,Pune Warriors,Delhi Daredevils,Pune Warriors,bat,Delhi Daredevils,wickets,8,N,NA,S Ravi,RJ Tucker +548339,Chandigarh,2012-04-25,AT Rayudu,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Mumbai Indians,Kings XI Punjab,bat,Mumbai Indians,wickets,4,N,NA,Aleem Dar,BNJ Oxenford +548341,Pune,2012-04-26,CL White,Subrata Roy Sahara Stadium,0,Pune Warriors,Deccan Chargers,Deccan Chargers,bat,Deccan Chargers,runs,18,N,NA,S Ravi,RJ Tucker +548342,Delhi,2012-04-27,V Sehwag,Feroz Shah Kotla,0,Delhi Daredevils,Mumbai Indians,Mumbai Indians,field,Delhi Daredevils,runs,37,N,NA,Aleem Dar,BNJ Oxenford +548343,Chennai,2012-04-28,Mandeep Singh,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kings XI Punjab,Kings XI Punjab,bat,Kings XI Punjab,runs,7,N,NA,BF Bowden,SK Tarapore +548344,Kolkata,2012-04-28,G Gambhir,Eden Gardens,0,Kolkata Knight Riders,Royal Challengers Bangalore,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,47,N,NA,Asad Rauf,BR Doctrove +548345,Delhi,2012-04-29,V Sehwag,Feroz Shah Kotla,0,Delhi Daredevils,Rajasthan Royals,Delhi Daredevils,bat,Delhi Daredevils,runs,1,N,NA,S Ravi,RJ Tucker +548346,Mumbai,2012-04-29,DW Steyn,Wankhede Stadium,0,Mumbai Indians,Deccan Chargers,Mumbai Indians,field,Mumbai Indians,wickets,5,N,NA,AK Chaudhary,BNJ Oxenford +548347,Chennai,2012-04-30,G Gambhir,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kolkata Knight Riders,Chennai Super Kings,bat,Kolkata Knight Riders,wickets,5,N,NA,BF Bowden,C Shamshuddin +548348,Cuttack,2012-05-01,KC Sangakkara,Barabati Stadium,0,Deccan Chargers,Pune Warriors,Deccan Chargers,bat,Deccan Chargers,runs,13,N,NA,Aleem Dar,AK Chaudhary +548349,Jaipur,2012-05-01,P Negi,Sawai Mansingh Stadium,0,Rajasthan Royals,Delhi Daredevils,Rajasthan Royals,bat,Delhi Daredevils,wickets,6,N,NA,JD Cloete,SJA Taufel +548350,Bangalore,2012-05-02,Azhar Mahmood,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,4,N,NA,BF Bowden,C Shamshuddin +548351,Pune,2012-05-03,SL Malinga,Subrata Roy Sahara Stadium,0,Pune Warriors,Mumbai Indians,Mumbai Indians,bat,Mumbai Indians,runs,1,N,NA,Asad Rauf,S Asnani +548352,Chennai,2012-05-04,SK Raina,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Deccan Chargers,Chennai Super Kings,bat,Chennai Super Kings,runs,10,N,NA,HDPK Dharmasena,BNJ Oxenford +548353,Kolkata,2012-05-05,SP Narine,Eden Gardens,0,Kolkata Knight Riders,Pune Warriors,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,7,N,NA,BF Bowden,SK Tarapore +548354,Chandigarh,2012-05-05,SR Watson,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Rajasthan Royals,Rajasthan Royals,bat,Rajasthan Royals,runs,43,N,NA,JD Cloete,SJA Taufel +548355,Mumbai,2012-05-06,DR Smith,Wankhede Stadium,0,Mumbai Indians,Chennai Super Kings,Mumbai Indians,field,Mumbai Indians,wickets,2,N,NA,Asad Rauf,S Asnani +548356,Bangalore,2012-05-06,AB de Villiers,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Deccan Chargers,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,5,N,NA,HDPK Dharmasena,BNJ Oxenford +548357,Delhi,2012-05-07,JH Kallis,Feroz Shah Kotla,0,Delhi Daredevils,Kolkata Knight Riders,Delhi Daredevils,bat,Kolkata Knight Riders,wickets,6,N,NA,JD Cloete,S Ravi +548358,Pune,2012-05-08,SR Watson,Subrata Roy Sahara Stadium,0,Pune Warriors,Rajasthan Royals,Pune Warriors,bat,Rajasthan Royals,wickets,7,N,NA,Asad Rauf,BR Doctrove +548359,Hyderabad,2012-05-08,Mandeep Singh,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Kings XI Punjab,Deccan Chargers,field,Kings XI Punjab,runs,25,N,NA,HDPK Dharmasena,BNJ Oxenford +548360,Mumbai,2012-05-09,CH Gayle,Wankhede Stadium,0,Mumbai Indians,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,9,N,NA,BF Bowden,VA Kulkarni +548361,Jaipur,2012-05-10,BW Hilfenhaus,Sawai Mansingh Stadium,0,Rajasthan Royals,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,4,N,NA,BNJ Oxenford,C Shamshuddin +548362,Pune,2012-05-11,CH Gayle,Subrata Roy Sahara Stadium,0,Pune Warriors,Royal Challengers Bangalore,Pune Warriors,field,Royal Challengers Bangalore,runs,35,N,NA,BF Bowden,SK Tarapore +548363,Kolkata,2012-05-12,RG Sharma,Eden Gardens,0,Kolkata Knight Riders,Mumbai Indians,Mumbai Indians,bat,Mumbai Indians,runs,27,N,NA,S Ravi,SJA Taufel +548364,Chennai,2012-05-12,BW Hilfenhaus,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Delhi Daredevils,Chennai Super Kings,field,Chennai Super Kings,wickets,9,N,NA,S Das,BR Doctrove +548365,Jaipur,2012-05-13,A Chandila,Sawai Mansingh Stadium,0,Rajasthan Royals,Pune Warriors,Rajasthan Royals,bat,Rajasthan Royals,runs,45,N,NA,BF Bowden,SK Tarapore +548366,Chandigarh,2012-05-13,DJ Hussey,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Deccan Chargers,Deccan Chargers,bat,Kings XI Punjab,wickets,4,N,NA,HDPK Dharmasena,BNJ Oxenford +548367,Bangalore,2012-05-14,AT Rayudu,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,5,N,NA,S Das,BR Doctrove +548368,Kolkata,2012-05-14,MEK Hussey,Eden Gardens,0,Kolkata Knight Riders,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,5,N,NA,JD Cloete,SJA Taufel +548369,Delhi,2012-05-15,UT Yadav,Feroz Shah Kotla,0,Delhi Daredevils,Kings XI Punjab,Kings XI Punjab,bat,Delhi Daredevils,wickets,5,N,NA,HDPK Dharmasena,BNJ Oxenford +548370,Mumbai,2012-05-16,SP Narine,Wankhede Stadium,0,Mumbai Indians,Kolkata Knight Riders,Mumbai Indians,field,Kolkata Knight Riders,runs,32,N,NA,S Das,BR Doctrove +548371,Dharamsala,2012-05-17,AC Gilchrist,Himachal Pradesh Cricket Association Stadium,0,Kings XI Punjab,Chennai Super Kings,Kings XI Punjab,field,Kings XI Punjab,wickets,6,N,NA,VA Kulkarni,SK Tarapore +548372,Delhi,2012-05-17,CH Gayle,Feroz Shah Kotla,0,Delhi Daredevils,Royal Challengers Bangalore,Delhi Daredevils,field,Royal Challengers Bangalore,runs,21,N,NA,HDPK Dharmasena,C Shamshuddin +548373,Hyderabad,2012-05-18,DW Steyn,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Rajasthan Royals,Rajasthan Royals,bat,Deccan Chargers,wickets,5,N,NA,S Ravi,SJA Taufel +548374,Dharamsala,2012-05-19,UT Yadav,Himachal Pradesh Cricket Association Stadium,0,Kings XI Punjab,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,6,N,NA,BF Bowden,VA Kulkarni +548375,Pune,2012-05-19,Shakib Al Hasan,Subrata Roy Sahara Stadium,0,Pune Warriors,Kolkata Knight Riders,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,34,N,NA,S Asnani,BR Doctrove +548376,Hyderabad,2012-05-20,DW Steyn,"Rajiv Gandhi International Stadium, Uppal",0,Deccan Chargers,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Deccan Chargers,runs,9,N,NA,S Ravi,SJA Taufel +548377,Jaipur,2012-05-20,DR Smith,Sawai Mansingh Stadium,0,Rajasthan Royals,Mumbai Indians,Rajasthan Royals,bat,Mumbai Indians,wickets,10,N,NA,HDPK Dharmasena,C Shamshuddin +548378,Pune,2012-05-22,YK Pathan,Subrata Roy Sahara Stadium,0,Delhi Daredevils,Kolkata Knight Riders,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,18,N,NA,BR Doctrove,SJA Taufel +548379,Bangalore,2012-05-23,MS Dhoni,M Chinnaswamy Stadium,0,Chennai Super Kings,Mumbai Indians,Mumbai Indians,field,Chennai Super Kings,runs,38,N,NA,BF Bowden,HDPK Dharmasena +548380,Chennai,2012-05-25,M Vijay,"MA Chidambaram Stadium, Chepauk",0,Delhi Daredevils,Chennai Super Kings,Delhi Daredevils,field,Chennai Super Kings,runs,86,N,NA,BR Doctrove,SJA Taufel +548381,Chennai,2012-05-27,MS Bisla,"MA Chidambaram Stadium, Chepauk",0,Kolkata Knight Riders,Chennai Super Kings,Chennai Super Kings,bat,Kolkata Knight Riders,wickets,5,N,NA,BF Bowden,SJA Taufel +597998,Kolkata,2013-04-03,SP Narine,Eden Gardens,0,Kolkata Knight Riders,Delhi Daredevils,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,6,N,NA,S Ravi,SJA Taufel +597999,Bangalore,2013-04-04,CH Gayle,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Mumbai Indians,Mumbai Indians,field,Royal Challengers Bangalore,runs,2,N,NA,VA Kulkarni,C Shamshuddin +598000,Hyderabad,2013-04-05,A Mishra,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Pune Warriors,Pune Warriors,field,Sunrisers Hyderabad,runs,22,N,NA,S Ravi,SJA Taufel +598001,Delhi,2013-04-06,R Dravid,Feroz Shah Kotla,0,Delhi Daredevils,Rajasthan Royals,Rajasthan Royals,bat,Rajasthan Royals,runs,5,N,NA,S Das,C Shamshuddin +598002,Chennai,2013-04-06,KA Pollard,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Mumbai Indians,Mumbai Indians,bat,Mumbai Indians,runs,9,N,NA,M Erasmus,VA Kulkarni +598003,Pune,2013-04-07,M Vohra,Subrata Roy Sahara Stadium,0,Pune Warriors,Kings XI Punjab,Pune Warriors,bat,Kings XI Punjab,wickets,8,N,NA,S Asnani,SJA Taufel +598004,Hyderabad,2013-04-07,GH Vihari,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Royal Challengers Bangalore,Royal Challengers Bangalore,bat,Sunrisers Hyderabad,tie,NA,Y,NA,AK Chaudhary,S Ravi +598005,Jaipur,2013-04-08,SK Trivedi,Sawai Mansingh Stadium,0,Rajasthan Royals,Kolkata Knight Riders,Kolkata Knight Riders,field,Rajasthan Royals,runs,19,N,NA,Aleem Dar,S Das +598006,Mumbai,2013-04-09,KD Karthik,Wankhede Stadium,0,Mumbai Indians,Delhi Daredevils,Mumbai Indians,bat,Mumbai Indians,runs,44,N,NA,M Erasmus,VA Kulkarni +598007,Chandigarh,2013-04-10,MEK Hussey,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,10,N,NA,Aleem Dar,C Shamshuddin +598008,Bangalore,2013-04-11,CH Gayle,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kolkata Knight Riders,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,8,N,NA,Asad Rauf,AK Chaudhary +598009,Pune,2013-04-11,AJ Finch,Subrata Roy Sahara Stadium,0,Pune Warriors,Rajasthan Royals,Rajasthan Royals,bat,Pune Warriors,wickets,7,N,NA,M Erasmus,K Srinath +598010,Delhi,2013-04-12,A Mishra,Feroz Shah Kotla,0,Delhi Daredevils,Sunrisers Hyderabad,Delhi Daredevils,bat,Sunrisers Hyderabad,wickets,3,N,NA,Aleem Dar,Subroto Das +598011,Mumbai,2013-04-13,RG Sharma,Wankhede Stadium,0,Mumbai Indians,Pune Warriors,Mumbai Indians,bat,Mumbai Indians,runs,41,N,NA,S Ravi,SJA Taufel +598012,Chennai,2013-04-13,RA Jadeja,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Royal Challengers Bangalore,Chennai Super Kings,field,Chennai Super Kings,wickets,4,N,NA,Asad Rauf,AK Chaudhary +598013,Kolkata,2013-04-14,G Gambhir,Eden Gardens,0,Kolkata Knight Riders,Sunrisers Hyderabad,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,48,N,NA,M Erasmus,VA Kulkarni +598014,Jaipur,2013-04-14,JP Faulkner,Sawai Mansingh Stadium,0,Rajasthan Royals,Kings XI Punjab,Rajasthan Royals,field,Rajasthan Royals,wickets,6,N,NA,Aleem Dar,C Shamshuddin +598015,Chennai,2013-04-15,SPD Smith,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Pune Warriors,Pune Warriors,bat,Pune Warriors,runs,24,N,NA,Asad Rauf,AK Chaudhary +598016,Chandigarh,2013-04-16,MS Gony,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Kolkata Knight Riders,Kolkata Knight Riders,field,Kings XI Punjab,runs,4,N,NA,CK Nandan,SJA Taufel +598017,Bangalore,2013-04-16,V Kohli,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Delhi Daredevils,Royal Challengers Bangalore,field,Royal Challengers Bangalore,tie,NA,Y,NA,M Erasmus,VA Kulkarni +598018,Pune,2013-04-17,A Mishra,Subrata Roy Sahara Stadium,0,Pune Warriors,Sunrisers Hyderabad,Pune Warriors,field,Sunrisers Hyderabad,runs,11,N,NA,Asad Rauf,AK Chaudhary +598019,Jaipur,2013-04-17,AM Rahane,Sawai Mansingh Stadium,0,Rajasthan Royals,Mumbai Indians,Rajasthan Royals,bat,Rajasthan Royals,runs,87,N,NA,Aleem Dar,C Shamshuddin +598020,Delhi,2013-04-18,MEK Hussey,Feroz Shah Kotla,0,Delhi Daredevils,Chennai Super Kings,Chennai Super Kings,bat,Chennai Super Kings,runs,86,N,NA,M Erasmus,VA Kulkarni +598021,Hyderabad,2013-04-19,GH Vihari,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Kings XI Punjab,Kings XI Punjab,bat,Sunrisers Hyderabad,wickets,5,N,NA,HDPK Dharmasena,CK Nandan +598022,Kolkata,2013-04-20,RA Jadeja,Eden Gardens,0,Kolkata Knight Riders,Chennai Super Kings,Kolkata Knight Riders,bat,Chennai Super Kings,wickets,4,N,NA,Asad Rauf,AK Chaudhary +598023,Bangalore,2013-04-20,R Vinay Kumar,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Rajasthan Royals,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,7,N,NA,Aleem Dar,C Shamshuddin +598024,Delhi,2013-04-21,V Sehwag,Feroz Shah Kotla,0,Delhi Daredevils,Mumbai Indians,Mumbai Indians,bat,Delhi Daredevils,wickets,9,N,NA,HDPK Dharmasena,S Ravi +598025,Chandigarh,2013-04-21,DA Miller,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Pune Warriors,Kings XI Punjab,field,Kings XI Punjab,wickets,7,N,NA,M Erasmus,K Srinath +598026,Chennai,2013-04-22,MEK Hussey,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Rajasthan Royals,Rajasthan Royals,bat,Chennai Super Kings,wickets,5,N,NA,S Asnani,AK Chaudhary +598027,Bangalore,2013-04-23,CH Gayle,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Pune Warriors,Pune Warriors,field,Royal Challengers Bangalore,runs,130,N,NA,Aleem Dar,C Shamshuddin +598028,Dharamsala,2013-05-16,DA Miller,Himachal Pradesh Cricket Association Stadium,0,Kings XI Punjab,Delhi Daredevils,Delhi Daredevils,field,Kings XI Punjab,runs,7,N,NA,HDPK Dharmasena,S Ravi +598029,Kolkata,2013-04-24,DR Smith,Eden Gardens,0,Kolkata Knight Riders,Mumbai Indians,Kolkata Knight Riders,bat,Mumbai Indians,wickets,5,N,NA,HDPK Dharmasena,S Ravi +598030,Chennai,2013-04-25,MS Dhoni,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Sunrisers Hyderabad,Sunrisers Hyderabad,bat,Chennai Super Kings,wickets,5,N,NA,Aleem Dar,S Das +598031,Kolkata,2013-04-26,JH Kallis,Eden Gardens,0,Kolkata Knight Riders,Kings XI Punjab,Kings XI Punjab,bat,Kolkata Knight Riders,wickets,6,N,NA,CK Nandan,S Ravi +598032,Jaipur,2013-04-27,JP Faulkner,Sawai Mansingh Stadium,0,Rajasthan Royals,Sunrisers Hyderabad,Sunrisers Hyderabad,bat,Rajasthan Royals,wickets,8,N,NA,VA Kulkarni,K Srinath +598033,Mumbai,2013-04-27,DR Smith,Wankhede Stadium,0,Mumbai Indians,Royal Challengers Bangalore,Mumbai Indians,bat,Mumbai Indians,runs,58,N,NA,Asad Rauf,S Asnani +598034,Chennai,2013-04-28,MEK Hussey,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kolkata Knight Riders,Kolkata Knight Riders,field,Chennai Super Kings,runs,14,N,NA,Aleem Dar,SJA Taufel +598035,Raipur,2013-04-28,DA Warner,Shaheed Veer Narayan Singh International Stadium,0,Delhi Daredevils,Pune Warriors,Pune Warriors,field,Delhi Daredevils,runs,15,N,NA,CK Nandan,S Ravi +598036,Jaipur,2013-04-29,SV Samson,Sawai Mansingh Stadium,0,Rajasthan Royals,Royal Challengers Bangalore,Rajasthan Royals,field,Rajasthan Royals,wickets,4,N,NA,M Erasmus,K Srinath +598037,Mumbai,2013-04-29,RG Sharma,Wankhede Stadium,0,Mumbai Indians,Kings XI Punjab,Mumbai Indians,bat,Mumbai Indians,runs,4,N,NA,Asad Rauf,AK Chaudhary +598038,Pune,2013-04-30,MS Dhoni,Subrata Roy Sahara Stadium,0,Pune Warriors,Chennai Super Kings,Chennai Super Kings,bat,Chennai Super Kings,runs,37,N,NA,S Das,SJA Taufel +598039,Hyderabad,2013-05-01,I Sharma,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Mumbai Indians,Mumbai Indians,bat,Sunrisers Hyderabad,wickets,7,N,NA,Asad Rauf,S Asnani +598040,Raipur,2013-05-01,DA Warner,Shaheed Veer Narayan Singh International Stadium,0,Delhi Daredevils,Kolkata Knight Riders,Kolkata Knight Riders,bat,Delhi Daredevils,wickets,7,N,NA,HDPK Dharmasena,CK Nandan +598041,Chennai,2013-05-02,SK Raina,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kings XI Punjab,Chennai Super Kings,bat,Chennai Super Kings,runs,15,N,NA,M Erasmus,VA Kulkarni +598042,Pune,2013-05-02,AB de Villiers,Subrata Roy Sahara Stadium,0,Pune Warriors,Royal Challengers Bangalore,Royal Challengers Bangalore,bat,Royal Challengers Bangalore,runs,17,N,NA,Aleem Dar,C Shamshuddin +598043,Kolkata,2013-05-03,YK Pathan,Eden Gardens,0,Kolkata Knight Riders,Rajasthan Royals,Rajasthan Royals,bat,Kolkata Knight Riders,wickets,8,N,NA,HDPK Dharmasena,CK Nandan +598044,Hyderabad,2013-05-04,DJG Sammy,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Delhi Daredevils,Delhi Daredevils,bat,Sunrisers Hyderabad,wickets,6,N,NA,Asad Rauf,S Asnani +598045,Bangalore,2013-05-14,AC Gilchrist,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,7,N,NA,HDPK Dharmasena,S Ravi +598046,Mumbai,2013-05-05,MG Johnson,Wankhede Stadium,0,Mumbai Indians,Chennai Super Kings,Mumbai Indians,bat,Mumbai Indians,runs,60,N,NA,HDPK Dharmasena,CK Nandan +598047,Jaipur,2013-05-05,AM Rahane,Sawai Mansingh Stadium,0,Rajasthan Royals,Pune Warriors,Pune Warriors,bat,Rajasthan Royals,wickets,5,N,NA,C Shamshuddin,RJ Tucker +598048,Bangalore,2013-04-09,V Kohli,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Sunrisers Hyderabad,Sunrisers Hyderabad,bat,Royal Challengers Bangalore,wickets,7,N,NA,S Ravi,SJA Taufel +598049,Jaipur,2013-05-07,AM Rahane,Sawai Mansingh Stadium,0,Rajasthan Royals,Delhi Daredevils,Delhi Daredevils,bat,Rajasthan Royals,wickets,9,N,NA,Aleem Dar,RJ Tucker +598050,Mumbai,2013-05-07,SR Tendulkar,Wankhede Stadium,0,Mumbai Indians,Kolkata Knight Riders,Mumbai Indians,bat,Mumbai Indians,runs,65,N,NA,HDPK Dharmasena,S Ravi +598051,Hyderabad,2013-05-08,SK Raina,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Chennai Super Kings,Sunrisers Hyderabad,field,Chennai Super Kings,runs,77,N,NA,S Das,NJ Llong +598052,Chandigarh,2013-05-09,KK Cooper,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,8,N,NA,HDPK Dharmasena,S Ravi +598053,Pune,2013-05-09,G Gambhir,Subrata Roy Sahara Stadium,0,Pune Warriors,Kolkata Knight Riders,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,46,N,NA,Asad Rauf,S Asnani +598054,Delhi,2013-05-10,JD Unadkat,Feroz Shah Kotla,0,Delhi Daredevils,Royal Challengers Bangalore,Delhi Daredevils,field,Royal Challengers Bangalore,runs,4,N,NA,NJ Llong,K Srinath +598055,Pune,2013-05-11,MG Johnson,Subrata Roy Sahara Stadium,0,Pune Warriors,Mumbai Indians,Pune Warriors,bat,Mumbai Indians,wickets,5,N,NA,Asad Rauf,AK Chaudhary +598056,Chandigarh,2013-05-11,PA Patel,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Sunrisers Hyderabad,Kings XI Punjab,field,Sunrisers Hyderabad,runs,30,N,NA,S Das,RJ Tucker +598057,Ranchi,2013-05-12,JH Kallis,JSCA International Stadium Complex,0,Kolkata Knight Riders,Royal Challengers Bangalore,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,5,N,NA,NJ Llong,K Srinath +598058,Jaipur,2013-05-12,SR Watson,Sawai Mansingh Stadium,0,Rajasthan Royals,Chennai Super Kings,Rajasthan Royals,field,Rajasthan Royals,wickets,5,N,NA,HDPK Dharmasena,CK Nandan +598059,Delhi,2013-04-23,Harmeet Singh,Feroz Shah Kotla,0,Delhi Daredevils,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,5,N,NA,VA Kulkarni,K Srinath +598060,Mumbai,2013-05-13,KA Pollard,Wankhede Stadium,0,Mumbai Indians,Sunrisers Hyderabad,Sunrisers Hyderabad,bat,Mumbai Indians,wickets,7,N,NA,AK Chaudhary,SJA Taufel +598061,Ranchi,2013-05-15,MK Pandey,JSCA International Stadium Complex,0,Kolkata Knight Riders,Pune Warriors,Kolkata Knight Riders,field,Pune Warriors,runs,7,N,NA,NJ Llong,K Srinath +598062,Chennai,2013-05-14,MS Dhoni,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Delhi Daredevils,Chennai Super Kings,bat,Chennai Super Kings,runs,33,N,NA,C Shamshuddin,RJ Tucker +598063,Mumbai,2013-05-15,AP Tare,Wankhede Stadium,0,Mumbai Indians,Rajasthan Royals,Rajasthan Royals,field,Mumbai Indians,runs,14,N,NA,Asad Rauf,S Asnani +598064,Chandigarh,2013-05-06,DA Miller,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Royal Challengers Bangalore,Kings XI Punjab,field,Kings XI Punjab,wickets,6,N,NA,VA Kulkarni,NJ Llong +598065,Hyderabad,2013-05-17,A Mishra,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Rajasthan Royals,Sunrisers Hyderabad,bat,Sunrisers Hyderabad,runs,23,N,NA,Asad Rauf,AK Chaudhary +598066,Dharamsala,2013-05-18,Azhar Mahmood,Himachal Pradesh Cricket Association Stadium,0,Kings XI Punjab,Mumbai Indians,Mumbai Indians,field,Kings XI Punjab,runs,50,N,NA,HDPK Dharmasena,CK Nandan +598067,Pune,2013-05-19,LJ Wright,Subrata Roy Sahara Stadium,0,Pune Warriors,Delhi Daredevils,Pune Warriors,bat,Pune Warriors,runs,38,N,NA,NJ Llong,SJA Taufel +598068,Bangalore,2013-05-18,V Kohli,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Chennai Super Kings,Chennai Super Kings,field,Royal Challengers Bangalore,runs,24,N,NA,C Shamshuddin,RJ Tucker +598069,Hyderabad,2013-05-19,PA Patel,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Kolkata Knight Riders,Kolkata Knight Riders,bat,Sunrisers Hyderabad,wickets,5,N,NA,Asad Rauf,S Asnani +598070,Delhi,2013-05-21,MEK Hussey,Feroz Shah Kotla,0,Chennai Super Kings,Mumbai Indians,Chennai Super Kings,bat,Chennai Super Kings,runs,48,N,NA,NJ Llong,RJ Tucker +598071,Delhi,2013-05-22,BJ Hodge,Feroz Shah Kotla,0,Rajasthan Royals,Sunrisers Hyderabad,Sunrisers Hyderabad,bat,Rajasthan Royals,wickets,4,N,NA,S Ravi,RJ Tucker +598072,Kolkata,2013-05-24,Harbhajan Singh,Eden Gardens,0,Mumbai Indians,Rajasthan Royals,Rajasthan Royals,bat,Mumbai Indians,wickets,4,N,NA,C Shamshuddin,SJA Taufel +598073,Kolkata,2013-05-26,KA Pollard,Eden Gardens,0,Chennai Super Kings,Mumbai Indians,Mumbai Indians,bat,Mumbai Indians,runs,23,N,NA,HDPK Dharmasena,SJA Taufel +729279,Abu Dhabi,2014-04-16,JH Kallis,Sheikh Zayed Stadium,1,Mumbai Indians,Kolkata Knight Riders,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,41,N,NA,M Erasmus,RK Illingworth +729281,NA,2014-04-17,YS Chahal,Sharjah Cricket Stadium,1,Delhi Daredevils,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,8,N,NA,Aleem Dar,S Ravi +729283,Abu Dhabi,2014-04-18,GJ Maxwell,Sheikh Zayed Stadium,1,Chennai Super Kings,Kings XI Punjab,Chennai Super Kings,bat,Kings XI Punjab,wickets,6,N,NA,RK Illingworth,C Shamshuddin +729285,Abu Dhabi,2014-04-18,AM Rahane,Sheikh Zayed Stadium,1,Sunrisers Hyderabad,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,4,N,NA,BF Bowden,RK Illingworth +729287,NA,2014-04-19,PA Patel,Dubai International Cricket Stadium,1,Royal Challengers Bangalore,Mumbai Indians,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,7,N,NA,Aleem Dar,AK Chaudhary +729289,NA,2014-04-19,JP Duminy,Dubai International Cricket Stadium,1,Kolkata Knight Riders,Delhi Daredevils,Kolkata Knight Riders,bat,Delhi Daredevils,wickets,4,N,NA,Aleem Dar,VA Kulkarni +729291,NA,2014-04-20,GJ Maxwell,Sharjah Cricket Stadium,1,Rajasthan Royals,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,7,N,NA,BF Bowden,M Erasmus +729293,Abu Dhabi,2014-04-21,SK Raina,Sheikh Zayed Stadium,1,Chennai Super Kings,Delhi Daredevils,Chennai Super Kings,bat,Chennai Super Kings,runs,93,N,NA,RK Illingworth,C Shamshuddin +729295,NA,2014-04-22,GJ Maxwell,Sharjah Cricket Stadium,1,Kings XI Punjab,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Kings XI Punjab,runs,72,N,NA,M Erasmus,S Ravi +729297,NA,2014-04-23,RA Jadeja,Dubai International Cricket Stadium,1,Rajasthan Royals,Chennai Super Kings,Rajasthan Royals,field,Chennai Super Kings,runs,7,N,NA,HDPK Dharmasena,RK Illingworth +729299,NA,2014-04-24,CA Lynn,Sharjah Cricket Stadium,1,Royal Challengers Bangalore,Kolkata Knight Riders,Royal Challengers Bangalore,field,Kolkata Knight Riders,runs,2,N,NA,Aleem Dar,VA Kulkarni +729301,NA,2014-04-25,AJ Finch,Dubai International Cricket Stadium,1,Sunrisers Hyderabad,Delhi Daredevils,Sunrisers Hyderabad,bat,Sunrisers Hyderabad,runs,4,N,NA,M Erasmus,S Ravi +729303,NA,2014-04-25,MM Sharma,Dubai International Cricket Stadium,1,Chennai Super Kings,Mumbai Indians,Mumbai Indians,bat,Chennai Super Kings,wickets,7,N,NA,BF Bowden,M Erasmus +729305,Abu Dhabi,2014-04-26,PV Tambe,Sheikh Zayed Stadium,1,Rajasthan Royals,Royal Challengers Bangalore,Rajasthan Royals,field,Rajasthan Royals,wickets,6,N,NA,HDPK Dharmasena,C Shamshuddin +729307,Abu Dhabi,2014-04-26,Sandeep Sharma,Sheikh Zayed Stadium,1,Kolkata Knight Riders,Kings XI Punjab,Kolkata Knight Riders,field,Kings XI Punjab,runs,23,N,NA,HDPK Dharmasena,RK Illingworth +729309,NA,2014-04-27,M Vijay,Sharjah Cricket Stadium,1,Delhi Daredevils,Mumbai Indians,Mumbai Indians,bat,Delhi Daredevils,wickets,6,N,NA,Aleem Dar,VA Kulkarni +729311,NA,2014-04-27,DR Smith,Sharjah Cricket Stadium,1,Sunrisers Hyderabad,Chennai Super Kings,Sunrisers Hyderabad,bat,Chennai Super Kings,wickets,5,N,NA,AK Chaudhary,VA Kulkarni +729313,NA,2014-04-28,Sandeep Sharma,Dubai International Cricket Stadium,1,Kings XI Punjab,Royal Challengers Bangalore,Kings XI Punjab,field,Kings XI Punjab,wickets,5,N,NA,BF Bowden,S Ravi +729315,Abu Dhabi,2014-04-29,JP Faulkner,Sheikh Zayed Stadium,1,Kolkata Knight Riders,Rajasthan Royals,Rajasthan Royals,bat,Rajasthan Royals,tie,NA,Y,NA,Aleem Dar,AK Chaudhary +729317,NA,2014-04-30,B Kumar,Dubai International Cricket Stadium,1,Mumbai Indians,Sunrisers Hyderabad,Mumbai Indians,field,Sunrisers Hyderabad,runs,15,N,NA,HDPK Dharmasena,M Erasmus +733971,Ranchi,2014-05-02,RA Jadeja,JSCA International Stadium Complex,0,Chennai Super Kings,Kolkata Knight Riders,Chennai Super Kings,bat,Chennai Super Kings,runs,34,N,NA,AK Chaudhary,NJ Llong +733973,Mumbai,2014-05-03,CJ Anderson,Wankhede Stadium,0,Mumbai Indians,Kings XI Punjab,Kings XI Punjab,bat,Mumbai Indians,wickets,5,N,NA,BNJ Oxenford,C Shamshuddin +733975,Delhi,2014-05-03,KK Nair,Feroz Shah Kotla,0,Delhi Daredevils,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,7,N,NA,SS Hazare,S Ravi +733977,Bangalore,2014-05-04,AB de Villiers,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Sunrisers Hyderabad,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,4,N,NA,HDPK Dharmasena,VA Kulkarni +733979,Ahmedabad,2014-05-05,PV Tambe,"Sardar Patel Stadium, Motera",0,Rajasthan Royals,Kolkata Knight Riders,Kolkata Knight Riders,field,Rajasthan Royals,runs,10,N,NA,NJ Llong,CK Nandan +733981,Delhi,2014-05-05,DR Smith,Feroz Shah Kotla,0,Delhi Daredevils,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,8,N,NA,RM Deshpande,BNJ Oxenford +733983,Mumbai,2014-05-06,RG Sharma,Wankhede Stadium,0,Mumbai Indians,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Mumbai Indians,runs,19,N,NA,S Ravi,K Srinath +733985,Delhi,2014-05-07,G Gambhir,Feroz Shah Kotla,0,Delhi Daredevils,Kolkata Knight Riders,Delhi Daredevils,bat,Kolkata Knight Riders,wickets,8,N,NA,BNJ Oxenford,C Shamshuddin +733987,Cuttack,2014-05-07,GJ Maxwell,Barabati Stadium,0,Kings XI Punjab,Chennai Super Kings,Chennai Super Kings,field,Kings XI Punjab,runs,44,N,NA,HDPK Dharmasena,PG Pathak +733989,Ahmedabad,2014-05-08,B Kumar,"Sardar Patel Stadium, Motera",0,Rajasthan Royals,Sunrisers Hyderabad,Rajasthan Royals,field,Sunrisers Hyderabad,runs,32,N,NA,AK Chaudhary,NJ Llong +733991,Bangalore,2014-05-09,Sandeep Sharma,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kings XI Punjab,Royal Challengers Bangalore,field,Kings XI Punjab,runs,32,N,NA,S Ravi,K Srinath +733993,Delhi,2014-05-10,DW Steyn,Feroz Shah Kotla,0,Delhi Daredevils,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,8,N,D/L,RM Deshpande,BNJ Oxenford +733995,Mumbai,2014-05-10,DR Smith,Wankhede Stadium,0,Mumbai Indians,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,4,N,NA,HDPK Dharmasena,VA Kulkarni +733997,Cuttack,2014-05-11,G Gambhir,Barabati Stadium,0,Kings XI Punjab,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,9,N,NA,NJ Llong,CK Nandan +733999,Bangalore,2014-05-11,JP Faulkner,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Rajasthan Royals,Royal Challengers Bangalore,bat,Rajasthan Royals,wickets,5,N,NA,S Ravi,RJ Tucker +734001,Hyderabad,2014-05-12,AT Rayudu,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Mumbai Indians,Sunrisers Hyderabad,bat,Mumbai Indians,wickets,7,N,NA,HDPK Dharmasena,VA Kulkarni +734003,Ranchi,2014-05-13,RA Jadeja,JSCA International Stadium Complex,0,Chennai Super Kings,Rajasthan Royals,Rajasthan Royals,bat,Chennai Super Kings,wickets,5,N,NA,BNJ Oxenford,C Shamshuddin +734005,Bangalore,2014-05-13,Yuvraj Singh,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Delhi Daredevils,Delhi Daredevils,field,Royal Challengers Bangalore,runs,16,N,NA,K Srinath,RJ Tucker +734007,Hyderabad,2014-05-14,WP Saha,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,6,N,NA,VA Kulkarni,PG Pathak +734009,Cuttack,2014-05-14,RV Uthappa,Barabati Stadium,0,Kolkata Knight Riders,Mumbai Indians,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,6,N,NA,AK Chaudhary,NJ Llong +734011,Ahmedabad,2014-05-15,AM Rahane,"Sardar Patel Stadium, Motera",0,Rajasthan Royals,Delhi Daredevils,Delhi Daredevils,field,Rajasthan Royals,runs,62,N,NA,S Ravi,RJ Tucker +734013,Ranchi,2014-05-18,AB de Villiers,JSCA International Stadium Complex,0,Chennai Super Kings,Royal Challengers Bangalore,Chennai Super Kings,bat,Royal Challengers Bangalore,wickets,5,N,NA,BNJ Oxenford,C Shamshuddin +734015,Hyderabad,2014-05-18,UT Yadav,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Kolkata Knight Riders,Sunrisers Hyderabad,bat,Kolkata Knight Riders,wickets,7,N,NA,NJ Llong,CK Nandan +734017,Ahmedabad,2014-05-19,MEK Hussey,"Sardar Patel Stadium, Motera",0,Rajasthan Royals,Mumbai Indians,Mumbai Indians,bat,Mumbai Indians,runs,25,N,NA,S Ravi,RJ Tucker +734019,Delhi,2014-05-19,AR Patel,Feroz Shah Kotla,0,Delhi Daredevils,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,4,N,NA,HDPK Dharmasena,PG Pathak +734021,Hyderabad,2014-05-20,DA Warner,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Royal Challengers Bangalore,Royal Challengers Bangalore,bat,Sunrisers Hyderabad,wickets,7,N,NA,AK Chaudhary,NJ Llong +734023,Kolkata,2014-05-20,RV Uthappa,Eden Gardens,0,Kolkata Knight Riders,Chennai Super Kings,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,8,N,NA,RM Deshpande,C Shamshuddin +734025,Chandigarh,2014-05-21,LMP Simmons,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,7,N,NA,HDPK Dharmasena,VA Kulkarni +734027,Kolkata,2014-05-22,RV Uthappa,Eden Gardens,0,Kolkata Knight Riders,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Kolkata Knight Riders,runs,30,N,NA,AK Chaudhary,CK Nandan +734029,Ranchi,2014-05-22,DA Warner,JSCA International Stadium Complex,0,Chennai Super Kings,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,6,N,NA,BNJ Oxenford,C Shamshuddin +734031,Mumbai,2014-05-23,MEK Hussey,Wankhede Stadium,0,Mumbai Indians,Delhi Daredevils,Delhi Daredevils,field,Mumbai Indians,runs,15,N,NA,S Ravi,RJ Tucker +734033,Chandigarh,2014-05-23,SE Marsh,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Rajasthan Royals,Rajasthan Royals,field,Kings XI Punjab,runs,16,N,NA,HDPK Dharmasena,PG Pathak +734035,Bangalore,2014-05-24,MS Dhoni,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,8,N,NA,AK Chaudhary,NJ Llong +734037,Kolkata,2014-05-24,YK Pathan,Eden Gardens,0,Kolkata Knight Riders,Sunrisers Hyderabad,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,4,N,NA,RM Deshpande,BNJ Oxenford +734039,Chandigarh,2014-05-25,M Vohra,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Delhi Daredevils,Kings XI Punjab,field,Kings XI Punjab,wickets,7,N,NA,HDPK Dharmasena,VA Kulkarni +734041,Mumbai,2014-05-25,CJ Anderson,Wankhede Stadium,0,Mumbai Indians,Rajasthan Royals,Mumbai Indians,field,Mumbai Indians,wickets,5,N,NA,K Srinath,RJ Tucker +734043,Kolkata,2014-05-27,UT Yadav,Eden Gardens,0,Kings XI Punjab,Kolkata Knight Riders,Kings XI Punjab,field,Kolkata Knight Riders,runs,28,N,NA,NJ Llong,S Ravi +734045,Mumbai,2014-05-28,SK Raina,Brabourne Stadium,0,Chennai Super Kings,Mumbai Indians,Chennai Super Kings,field,Chennai Super Kings,wickets,7,N,NA,VA Kulkarni,BNJ Oxenford +734047,Mumbai,2014-05-30,V Sehwag,Wankhede Stadium,0,Chennai Super Kings,Kings XI Punjab,Chennai Super Kings,field,Kings XI Punjab,runs,24,N,NA,HDPK Dharmasena,RJ Tucker +734049,Bangalore,2014-06-01,MK Pandey,M Chinnaswamy Stadium,0,Kolkata Knight Riders,Kings XI Punjab,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,3,N,NA,HDPK Dharmasena,BNJ Oxenford +829705,Kolkata,2015-04-08,M Morkel,Eden Gardens,0,Kolkata Knight Riders,Mumbai Indians,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,7,N,NA,S Ravi,C Shamshuddin +829707,Chennai,2015-04-09,A Nehra,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Delhi Daredevils,Delhi Daredevils,field,Chennai Super Kings,runs,1,N,NA,RK Illingworth,VA Kulkarni +829709,Pune,2015-04-10,JP Faulkner,Maharashtra Cricket Association Stadium,0,Kings XI Punjab,Rajasthan Royals,Kings XI Punjab,field,Rajasthan Royals,runs,26,N,NA,SD Fry,CB Gaffaney +829711,Chennai,2015-04-11,BB McCullum,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Sunrisers Hyderabad,Chennai Super Kings,bat,Chennai Super Kings,runs,45,N,NA,RK Illingworth,VA Kulkarni +829713,Kolkata,2015-04-11,CH Gayle,Eden Gardens,0,Kolkata Knight Riders,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,3,N,NA,S Ravi,C Shamshuddin +829715,Delhi,2015-04-12,DJ Hooda,Feroz Shah Kotla,0,Delhi Daredevils,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,3,N,NA,SD Fry,CB Gaffaney +829717,Mumbai,2015-04-12,GJ Bailey,Wankhede Stadium,0,Mumbai Indians,Kings XI Punjab,Mumbai Indians,field,Kings XI Punjab,runs,18,N,NA,AK Chaudhary,K Srinivasan +829719,Bangalore,2015-04-13,DA Warner,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,8,N,NA,RM Deshpande,RK Illingworth +829721,Ahmedabad,2015-04-14,SPD Smith,"Sardar Patel Stadium, Motera",0,Rajasthan Royals,Mumbai Indians,Mumbai Indians,bat,Rajasthan Royals,wickets,7,N,NA,AK Chaudhary,SD Fry +829723,Kolkata,2015-04-30,AD Russell,Eden Gardens,0,Kolkata Knight Riders,Chennai Super Kings,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,7,N,NA,AK Chaudhary,M Erasmus +829725,Pune,2015-04-15,MA Agarwal,Maharashtra Cricket Association Stadium,0,Kings XI Punjab,Delhi Daredevils,Kings XI Punjab,bat,Delhi Daredevils,wickets,5,N,NA,CB Gaffaney,K Srinath +829727,Visakhapatnam,2015-04-16,AM Rahane,Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium,0,Sunrisers Hyderabad,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,6,N,NA,PG Pathak,S Ravi +829729,Mumbai,2015-04-17,A Nehra,Wankhede Stadium,0,Mumbai Indians,Chennai Super Kings,Mumbai Indians,bat,Chennai Super Kings,wickets,6,N,NA,AK Chaudhary,M Erasmus +829731,Visakhapatnam,2015-04-18,JP Duminy,Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium,0,Sunrisers Hyderabad,Delhi Daredevils,Delhi Daredevils,bat,Delhi Daredevils,runs,4,N,NA,PG Pathak,S Ravi +829733,Pune,2015-04-18,AD Russell,Maharashtra Cricket Association Stadium,0,Kings XI Punjab,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,4,N,NA,SD Fry,CK Nandan +829735,Ahmedabad,2015-04-19,AM Rahane,"Sardar Patel Stadium, Motera",0,Rajasthan Royals,Chennai Super Kings,Chennai Super Kings,bat,Rajasthan Royals,wickets,8,N,NA,AK Chaudhary,M Erasmus +829737,Bangalore,2015-04-19,Harbhajan Singh,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Mumbai Indians,Royal Challengers Bangalore,field,Mumbai Indians,runs,18,N,NA,RK Illingworth,VA Kulkarni +829739,Delhi,2015-04-20,UT Yadav,Feroz Shah Kotla,0,Delhi Daredevils,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,6,N,NA,SD Fry,CB Gaffaney +829741,Ahmedabad,2015-04-21,SE Marsh,"Sardar Patel Stadium, Motera",0,Rajasthan Royals,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,tie,NA,Y,NA,M Erasmus,S Ravi +829743,Visakhapatnam,2015-04-22,DA Warner,Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium,0,Sunrisers Hyderabad,Kolkata Knight Riders,Kolkata Knight Riders,field,Sunrisers Hyderabad,runs,16,N,D/L,RK Illingworth,VA Kulkarni +829745,Bangalore,2015-04-22,SK Raina,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Chennai Super Kings,Royal Challengers Bangalore,field,Chennai Super Kings,runs,27,N,NA,JD Cloete,C Shamshuddin +829747,Delhi,2015-04-23,SS Iyer,Feroz Shah Kotla,0,Delhi Daredevils,Mumbai Indians,Mumbai Indians,field,Delhi Daredevils,runs,37,N,NA,SD Fry,CK Nandan +829749,Ahmedabad,2015-04-24,MA Starc,"Sardar Patel Stadium, Motera",0,Rajasthan Royals,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,9,N,NA,M Erasmus,S Ravi +829751,Mumbai,2015-04-25,SL Malinga,Wankhede Stadium,0,Mumbai Indians,Sunrisers Hyderabad,Mumbai Indians,bat,Mumbai Indians,runs,20,N,NA,HDPK Dharmasena,CB Gaffaney +829753,Chennai,2015-04-25,BB McCullum,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kings XI Punjab,Chennai Super Kings,bat,Chennai Super Kings,runs,97,N,NA,JD Cloete,C Shamshuddin +829757,Delhi,2015-04-26,VR Aaron,Feroz Shah Kotla,0,Delhi Daredevils,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,10,N,NA,M Erasmus,S Ravi +829759,Chandigarh,2015-04-27,TA Boult,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Sunrisers Hyderabad,Kings XI Punjab,field,Sunrisers Hyderabad,runs,20,N,NA,HDPK Dharmasena,CB Gaffaney +829761,Kolkata,2015-05-07,PP Chawla,Eden Gardens,0,Kolkata Knight Riders,Delhi Daredevils,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,13,N,NA,AK Chaudhary,M Erasmus +829763,Bangalore,2015-04-29,NA,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Rajasthan Royals,Rajasthan Royals,field,NA,NA,NA,NA,NA,JD Cloete,PG Pathak +829765,Chennai,2015-04-28,DJ Bravo,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kolkata Knight Riders,Kolkata Knight Riders,field,Chennai Super Kings,runs,2,N,NA,RM Deshpande,VA Kulkarni +829767,Delhi,2015-05-01,NM Coulter-Nile,Feroz Shah Kotla,0,Delhi Daredevils,Kings XI Punjab,Delhi Daredevils,field,Delhi Daredevils,wickets,9,N,NA,RK Illingworth,S Ravi +829769,Mumbai,2015-05-01,AT Rayudu,Wankhede Stadium,0,Mumbai Indians,Rajasthan Royals,Rajasthan Royals,field,Mumbai Indians,runs,8,N,NA,HDPK Dharmasena,CK Nandan +829771,Bangalore,2015-05-02,Mandeep Singh,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kolkata Knight Riders,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,7,N,NA,JD Cloete,PG Pathak +829773,Hyderabad,2015-05-02,DA Warner,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Chennai Super Kings,Chennai Super Kings,field,Sunrisers Hyderabad,runs,22,N,NA,AK Chaudhary,K Srinivasan +829775,Chandigarh,2015-05-03,LMP Simmons,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Mumbai Indians,Mumbai Indians,bat,Mumbai Indians,runs,23,N,NA,RK Illingworth,VA Kulkarni +829777,Mumbai,2015-05-03,AM Rahane,Brabourne Stadium,0,Rajasthan Royals,Delhi Daredevils,Delhi Daredevils,field,Rajasthan Royals,runs,14,N,NA,HDPK Dharmasena,CB Gaffaney +829779,Chennai,2015-05-04,SK Raina,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Royal Challengers Bangalore,Chennai Super Kings,bat,Chennai Super Kings,runs,24,N,NA,C Shamshuddin,K Srinath +829781,Kolkata,2015-05-04,UT Yadav,Eden Gardens,0,Kolkata Knight Riders,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Kolkata Knight Riders,runs,35,N,NA,AK Chaudhary,M Erasmus +829783,Mumbai,2015-05-05,Harbhajan Singh,Wankhede Stadium,0,Mumbai Indians,Delhi Daredevils,Delhi Daredevils,bat,Mumbai Indians,wickets,5,N,NA,HDPK Dharmasena,CB Gaffaney +829785,Bangalore,2015-05-06,CH Gayle,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kings XI Punjab,Kings XI Punjab,field,Royal Challengers Bangalore,runs,138,N,NA,RK Illingworth,VA Kulkarni +829787,Mumbai,2015-05-07,EJG Morgan,Brabourne Stadium,0,Rajasthan Royals,Sunrisers Hyderabad,Rajasthan Royals,field,Sunrisers Hyderabad,runs,7,N,NA,JD Cloete,C Shamshuddin +829789,Chennai,2015-05-08,HH Pandya,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Mumbai Indians,Chennai Super Kings,bat,Mumbai Indians,wickets,6,N,NA,CB Gaffaney,CK Nandan +829791,Kolkata,2015-05-09,AD Russell,Eden Gardens,0,Kolkata Knight Riders,Kings XI Punjab,Kings XI Punjab,bat,Kolkata Knight Riders,wickets,1,N,NA,AK Chaudhary,HDPK Dharmasena +829793,Raipur,2015-05-09,MC Henriques,Shaheed Veer Narayan Singh International Stadium,0,Delhi Daredevils,Sunrisers Hyderabad,Sunrisers Hyderabad,bat,Sunrisers Hyderabad,runs,6,N,NA,VA Kulkarni,S Ravi +829795,Mumbai,2015-05-10,AB de Villiers,Wankhede Stadium,0,Mumbai Indians,Royal Challengers Bangalore,Royal Challengers Bangalore,bat,Royal Challengers Bangalore,runs,39,N,NA,JD Cloete,C Shamshuddin +829797,Chennai,2015-05-10,RA Jadeja,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Rajasthan Royals,Chennai Super Kings,bat,Chennai Super Kings,runs,12,N,NA,M Erasmus,CK Nandan +829799,Hyderabad,2015-05-11,DA Warner,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Kings XI Punjab,Sunrisers Hyderabad,bat,Sunrisers Hyderabad,runs,5,N,NA,AK Chaudhary,HDPK Dharmasena +829801,Raipur,2015-05-12,Z Khan,Shaheed Veer Narayan Singh International Stadium,0,Delhi Daredevils,Chennai Super Kings,Chennai Super Kings,bat,Delhi Daredevils,wickets,6,N,NA,RK Illingworth,VA Kulkarni +829803,Chandigarh,2015-05-13,AR Patel,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Kings XI Punjab,runs,22,N,NA,JD Cloete,C Shamshuddin +829805,Mumbai,2015-05-14,HH Pandya,Wankhede Stadium,0,Mumbai Indians,Kolkata Knight Riders,Kolkata Knight Riders,field,Mumbai Indians,runs,5,N,NA,RK Illingworth,VA Kulkarni +829807,Hyderabad,2015-05-15,V Kohli,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Royal Challengers Bangalore,Sunrisers Hyderabad,bat,Royal Challengers Bangalore,wickets,6,N,D/L,AK Chaudhary,HDPK Dharmasena +829809,Chandigarh,2015-05-16,P Negi,"Punjab Cricket Association Stadium, Mohali",0,Kings XI Punjab,Chennai Super Kings,Kings XI Punjab,bat,Chennai Super Kings,wickets,7,N,NA,CK Nandan,C Shamshuddin +829811,Mumbai,2015-05-16,SR Watson,Brabourne Stadium,0,Rajasthan Royals,Kolkata Knight Riders,Rajasthan Royals,bat,Rajasthan Royals,runs,9,N,NA,RM Deshpande,RK Illingworth +829813,Bangalore,2015-05-17,NA,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Delhi Daredevils,Royal Challengers Bangalore,field,NA,NA,NA,NA,NA,HDPK Dharmasena,K Srinivasan +829815,Hyderabad,2015-05-17,MJ McClenaghan,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Mumbai Indians,Sunrisers Hyderabad,bat,Mumbai Indians,wickets,9,N,NA,CB Gaffaney,K Srinath +829817,Mumbai,2015-05-19,KA Pollard,Wankhede Stadium,0,Chennai Super Kings,Mumbai Indians,Mumbai Indians,bat,Mumbai Indians,runs,25,N,NA,HDPK Dharmasena,RK Illingworth +829819,Pune,2015-05-20,AB de Villiers,Maharashtra Cricket Association Stadium,0,Royal Challengers Bangalore,Rajasthan Royals,Royal Challengers Bangalore,bat,Royal Challengers Bangalore,runs,71,N,NA,AK Chaudhary,C Shamshuddin +829821,Ranchi,2015-05-22,A Nehra,JSCA International Stadium Complex,0,Chennai Super Kings,Royal Challengers Bangalore,Chennai Super Kings,field,Chennai Super Kings,wickets,3,N,NA,AK Chaudhary,CB Gaffaney +829823,Kolkata,2015-05-24,RG Sharma,Eden Gardens,0,Mumbai Indians,Chennai Super Kings,Chennai Super Kings,field,Mumbai Indians,runs,41,N,NA,HDPK Dharmasena,RK Illingworth +980901,Mumbai,2016-04-09,AM Rahane,Wankhede Stadium,0,Mumbai Indians,Rising Pune Supergiants,Mumbai Indians,bat,Rising Pune Supergiants,wickets,9,N,NA,HDPK Dharmasena,CK Nandan +980903,Kolkata,2016-04-10,AD Russell,Eden Gardens,0,Kolkata Knight Riders,Delhi Daredevils,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,9,N,NA,S Ravi,C Shamshuddin +980905,Chandigarh,2016-04-11,AJ Finch,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Gujarat Lions,Gujarat Lions,field,Gujarat Lions,wickets,5,N,NA,AK Chaudhary,VA Kulkarni +980907,Bangalore,2016-04-12,AB de Villiers,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Royal Challengers Bangalore,runs,45,N,NA,HDPK Dharmasena,VK Sharma +980909,Kolkata,2016-04-13,RG Sharma,Eden Gardens,0,Kolkata Knight Riders,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,6,N,NA,Nitin Menon,S Ravi +980911,Rajkot,2016-04-14,AJ Finch,Saurashtra Cricket Association Stadium,0,Gujarat Lions,Rising Pune Supergiants,Rising Pune Supergiants,bat,Gujarat Lions,wickets,7,N,NA,VA Kulkarni,CK Nandan +980913,Delhi,2016-04-15,A Mishra,Feroz Shah Kotla,0,Delhi Daredevils,Kings XI Punjab,Delhi Daredevils,field,Delhi Daredevils,wickets,8,N,NA,S Ravi,C Shamshuddin +980915,Hyderabad,2016-04-16,G Gambhir,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Kolkata Knight Riders,Sunrisers Hyderabad,bat,Kolkata Knight Riders,wickets,8,N,NA,AK Chaudhary,CK Nandan +980917,Mumbai,2016-04-16,AJ Finch,Wankhede Stadium,0,Mumbai Indians,Gujarat Lions,Gujarat Lions,field,Gujarat Lions,wickets,3,N,NA,HDPK Dharmasena,VK Sharma +980919,Chandigarh,2016-04-17,M Vohra,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Rising Pune Supergiants,Rising Pune Supergiants,bat,Kings XI Punjab,wickets,6,N,NA,S Ravi,C Shamshuddin +980921,Bangalore,2016-04-17,Q de Kock,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,7,N,NA,VA Kulkarni,A Nand Kishore +980923,Hyderabad,2016-04-18,DA Warner,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Mumbai Indians,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,7,N,NA,HDPK Dharmasena,VK Sharma +980925,Chandigarh,2016-04-19,RV Uthappa,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,6,N,NA,S Ravi,C Shamshuddin +980927,Mumbai,2016-04-20,RG Sharma,Wankhede Stadium,0,Mumbai Indians,Royal Challengers Bangalore,Mumbai Indians,field,Mumbai Indians,wickets,6,N,NA,AK Chaudhary,CK Nandan +980929,Rajkot,2016-04-21,B Kumar,Saurashtra Cricket Association Stadium,0,Gujarat Lions,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,10,N,NA,K Bharatan,HDPK Dharmasena +980931,Pune,2016-04-22,AB de Villiers,Maharashtra Cricket Association Stadium,0,Rising Pune Supergiants,Royal Challengers Bangalore,Rising Pune Supergiants,field,Royal Challengers Bangalore,runs,13,N,NA,CB Gaffaney,VK Sharma +980933,Delhi,2016-04-23,SV Samson,Feroz Shah Kotla,0,Delhi Daredevils,Mumbai Indians,Mumbai Indians,field,Delhi Daredevils,runs,10,N,NA,S Ravi,C Shamshuddin +980935,Hyderabad,2016-04-23,Mustafizur Rahman,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Kings XI Punjab,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,5,N,NA,AK Chaudhary,CK Nandan +980937,Rajkot,2016-04-24,V Kohli,Saurashtra Cricket Association Stadium,0,Gujarat Lions,Royal Challengers Bangalore,Royal Challengers Bangalore,bat,Gujarat Lions,wickets,6,N,NA,K Bharatan,BNJ Oxenford +980939,Pune,2016-04-24,SA Yadav,Maharashtra Cricket Association Stadium,0,Rising Pune Supergiants,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,2,N,NA,CB Gaffaney,A Nand Kishore +980941,Chandigarh,2016-04-25,PA Patel,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Mumbai Indians,Kings XI Punjab,field,Mumbai Indians,runs,25,N,NA,Nitin Menon,RJ Tucker +980943,Hyderabad,2016-04-26,AB Dinda,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Rising Pune Supergiants,Rising Pune Supergiants,field,Rising Pune Supergiants,runs,34,N,D/L,AY Dandekar,CK Nandan +980945,Delhi,2016-04-27,CH Morris,Feroz Shah Kotla,0,Delhi Daredevils,Gujarat Lions,Delhi Daredevils,field,Gujarat Lions,runs,1,N,NA,M Erasmus,S Ravi +980947,Mumbai,2016-04-28,RG Sharma,Wankhede Stadium,0,Mumbai Indians,Kolkata Knight Riders,Mumbai Indians,field,Mumbai Indians,wickets,6,N,NA,Nitin Menon,RJ Tucker +980949,Pune,2016-04-29,DR Smith,Maharashtra Cricket Association Stadium,0,Rising Pune Supergiants,Gujarat Lions,Gujarat Lions,field,Gujarat Lions,wickets,3,N,NA,CB Gaffaney,BNJ Oxenford +980951,Delhi,2016-04-30,CR Brathwaite,Feroz Shah Kotla,0,Delhi Daredevils,Kolkata Knight Riders,Kolkata Knight Riders,field,Delhi Daredevils,runs,27,N,NA,KN Ananthapadmanabhan,M Erasmus +980953,Hyderabad,2016-04-30,DA Warner,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Sunrisers Hyderabad,runs,15,N,NA,AK Chaudhary,HDPK Dharmasena +980955,Rajkot,2016-05-01,AR Patel,Saurashtra Cricket Association Stadium,0,Gujarat Lions,Kings XI Punjab,Gujarat Lions,field,Kings XI Punjab,runs,23,N,NA,BNJ Oxenford,VK Sharma +980957,Pune,2016-05-01,RG Sharma,Maharashtra Cricket Association Stadium,0,Rising Pune Supergiants,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,8,N,NA,AY Dandekar,RJ Tucker +980959,Bangalore,2016-05-02,AD Russell,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,5,N,NA,M Erasmus,S Ravi +980961,Rajkot,2016-05-03,RR Pant,Saurashtra Cricket Association Stadium,0,Gujarat Lions,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,8,N,NA,CB Gaffaney,BNJ Oxenford +980963,Kolkata,2016-05-04,AD Russell,Eden Gardens,0,Kolkata Knight Riders,Kings XI Punjab,Kings XI Punjab,field,Kolkata Knight Riders,runs,7,N,NA,AK Chaudhary,HDPK Dharmasena +980965,Delhi,2016-05-05,AM Rahane,Feroz Shah Kotla,0,Delhi Daredevils,Rising Pune Supergiants,Rising Pune Supergiants,field,Rising Pune Supergiants,wickets,7,N,NA,C Shamshuddin,RJ Tucker +980967,Hyderabad,2016-05-06,B Kumar,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Gujarat Lions,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,5,N,NA,M Erasmus,S Ravi +980969,Bangalore,2016-05-07,V Kohli,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Rising Pune Supergiants,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,7,N,NA,CB Gaffaney,BNJ Oxenford +980971,Chandigarh,2016-05-07,MP Stoinis,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Delhi Daredevils,Delhi Daredevils,field,Kings XI Punjab,runs,9,N,NA,HDPK Dharmasena,CK Nandan +980973,Visakhapatnam,2016-05-08,A Nehra,Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium,0,Mumbai Indians,Sunrisers Hyderabad,Mumbai Indians,field,Sunrisers Hyderabad,runs,85,N,NA,S Ravi,C Shamshuddin +980975,Kolkata,2016-05-08,P Kumar,Eden Gardens,0,Kolkata Knight Riders,Gujarat Lions,Gujarat Lions,field,Gujarat Lions,wickets,5,N,NA,M Erasmus,RJ Tucker +980977,Chandigarh,2016-05-09,SR Watson,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Royal Challengers Bangalore,Kings XI Punjab,field,Royal Challengers Bangalore,runs,1,N,NA,AK Chaudhary,HDPK Dharmasena +980979,Visakhapatnam,2016-05-10,A Zampa,Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium,0,Rising Pune Supergiants,Sunrisers Hyderabad,Sunrisers Hyderabad,bat,Sunrisers Hyderabad,runs,4,N,NA,CB Gaffaney,VK Sharma +980981,Bangalore,2016-05-11,KH Pandya,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,6,N,NA,AY Dandekar,C Shamshuddin +980983,Hyderabad,2016-05-12,CH Morris,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,7,N,NA,K Bharatan,M Erasmus +980985,Visakhapatnam,2016-05-13,MP Stoinis,Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium,0,Mumbai Indians,Kings XI Punjab,Mumbai Indians,bat,Kings XI Punjab,wickets,7,N,NA,HDPK Dharmasena,CK Nandan +980987,Bangalore,2016-05-14,AB de Villiers,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Gujarat Lions,Gujarat Lions,field,Royal Challengers Bangalore,runs,144,N,NA,AY Dandekar,VK Sharma +980989,Kolkata,2016-05-14,YK Pathan,Eden Gardens,0,Kolkata Knight Riders,Rising Pune Supergiants,Rising Pune Supergiants,bat,Kolkata Knight Riders,wickets,8,N,D/L,A Nand Kishore,BNJ Oxenford +980991,Chandigarh,2016-05-15,HM Amla,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Sunrisers Hyderabad,Kings XI Punjab,bat,Sunrisers Hyderabad,wickets,7,N,NA,KN Ananthapadmanabhan,M Erasmus +980993,Visakhapatnam,2016-05-15,KH Pandya,Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium,0,Mumbai Indians,Delhi Daredevils,Delhi Daredevils,field,Mumbai Indians,runs,80,N,NA,Nitin Menon,CK Nandan +980995,Kolkata,2016-05-16,V Kohli,Eden Gardens,0,Kolkata Knight Riders,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,9,N,NA,CB Gaffaney,A Nand Kishore +980997,Visakhapatnam,2016-05-17,AB Dinda,Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium,0,Rising Pune Supergiants,Delhi Daredevils,Rising Pune Supergiants,field,Rising Pune Supergiants,runs,19,N,D/L,Nitin Menon,C Shamshuddin +980999,Bangalore,2016-05-18,V Kohli,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kings XI Punjab,Kings XI Punjab,field,Royal Challengers Bangalore,runs,82,N,D/L,KN Ananthapadmanabhan,M Erasmus +981001,Kanpur,2016-05-19,DR Smith,Green Park,0,Gujarat Lions,Kolkata Knight Riders,Gujarat Lions,field,Gujarat Lions,wickets,6,N,NA,AK Chaudhary,CK Nandan +981003,Raipur,2016-05-20,KK Nair,Shaheed Veer Narayan Singh International Stadium,0,Delhi Daredevils,Sunrisers Hyderabad,Delhi Daredevils,field,Delhi Daredevils,wickets,6,N,NA,A Nand Kishore,BNJ Oxenford +981005,Visakhapatnam,2016-05-21,MS Dhoni,Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium,0,Rising Pune Supergiants,Kings XI Punjab,Kings XI Punjab,bat,Rising Pune Supergiants,wickets,4,N,NA,HDPK Dharmasena,Nitin Menon +981007,Kanpur,2016-05-21,SK Raina,Green Park,0,Gujarat Lions,Mumbai Indians,Gujarat Lions,field,Gujarat Lions,wickets,6,N,NA,AK Chaudhary,CK Nandan +981009,Kolkata,2016-05-22,YK Pathan,Eden Gardens,0,Kolkata Knight Riders,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Kolkata Knight Riders,runs,22,N,NA,KN Ananthapadmanabhan,M Erasmus +981011,Raipur,2016-05-22,V Kohli,Shaheed Veer Narayan Singh International Stadium,0,Delhi Daredevils,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,6,N,NA,A Nand Kishore,BNJ Oxenford +981013,Bangalore,2016-05-24,AB de Villiers,M Chinnaswamy Stadium,0,Gujarat Lions,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,4,N,NA,AK Chaudhary,HDPK Dharmasena +981015,Delhi,2016-05-25,MC Henriques,Feroz Shah Kotla,0,Sunrisers Hyderabad,Kolkata Knight Riders,Kolkata Knight Riders,field,Sunrisers Hyderabad,runs,22,N,NA,M Erasmus,C Shamshuddin +981017,Delhi,2016-05-27,DA Warner,Feroz Shah Kotla,0,Gujarat Lions,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,4,N,NA,M Erasmus,CK Nandan +981019,Bangalore,2016-05-29,BCJ Cutting,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Sunrisers Hyderabad,Sunrisers Hyderabad,bat,Sunrisers Hyderabad,runs,8,N,NA,HDPK Dharmasena,BNJ Oxenford +1082591,Hyderabad,2017-04-05,Yuvraj Singh,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Sunrisers Hyderabad,runs,35,N,NA,AY Dandekar,NJ Llong +1082592,Pune,2017-04-06,SPD Smith,Maharashtra Cricket Association Stadium,0,Rising Pune Supergiant,Mumbai Indians,Rising Pune Supergiant,field,Rising Pune Supergiant,wickets,7,N,NA,A Nand Kishore,S Ravi +1082593,Rajkot,2017-04-07,CA Lynn,Saurashtra Cricket Association Stadium,0,Gujarat Lions,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,10,N,NA,Nitin Menon,CK Nandan +1082594,Indore,2017-04-08,GJ Maxwell,Holkar Cricket Stadium,0,Kings XI Punjab,Rising Pune Supergiant,Kings XI Punjab,field,Kings XI Punjab,wickets,6,N,NA,AK Chaudhary,C Shamshuddin +1082595,Bengaluru,2017-04-08,KM Jadhav,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Delhi Daredevils,Royal Challengers Bangalore,bat,Royal Challengers Bangalore,runs,15,N,NA,S Ravi,VK Sharma +1082596,Hyderabad,2017-04-09,Rashid Khan,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Gujarat Lions,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,9,N,NA,A Deshmukh,NJ Llong +1082597,Mumbai,2017-04-09,N Rana,Wankhede Stadium,0,Mumbai Indians,Kolkata Knight Riders,Mumbai Indians,field,Mumbai Indians,wickets,4,N,NA,Nitin Menon,CK Nandan +1082598,Indore,2017-04-10,AR Patel,Holkar Cricket Stadium,0,Kings XI Punjab,Royal Challengers Bangalore,Royal Challengers Bangalore,bat,Kings XI Punjab,wickets,8,N,NA,AK Chaudhary,C Shamshuddin +1082599,Pune,2017-04-11,SV Samson,Maharashtra Cricket Association Stadium,0,Rising Pune Supergiant,Delhi Daredevils,Rising Pune Supergiant,field,Delhi Daredevils,runs,97,N,NA,AY Dandekar,S Ravi +1082600,Mumbai,2017-04-12,JJ Bumrah,Wankhede Stadium,0,Mumbai Indians,Sunrisers Hyderabad,Mumbai Indians,field,Mumbai Indians,wickets,4,N,NA,Nitin Menon,CK Nandan +1082601,Kolkata,2017-04-13,SP Narine,Eden Gardens,0,Kolkata Knight Riders,Kings XI Punjab,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,8,N,NA,A Deshmukh,NJ Llong +1082602,Bangalore,2017-04-14,KA Pollard,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,4,N,NA,KN Ananthapadmanabhan,AK Chaudhary +1082603,Rajkot,2017-04-14,AJ Tye,Saurashtra Cricket Association Stadium,0,Gujarat Lions,Rising Pune Supergiant,Gujarat Lions,field,Gujarat Lions,wickets,7,N,NA,A Nand Kishore,S Ravi +1082604,Kolkata,2017-04-15,RV Uthappa,Eden Gardens,0,Kolkata Knight Riders,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Kolkata Knight Riders,runs,17,N,NA,AY Dandekar,NJ Llong +1082605,Delhi,2017-04-15,CJ Anderson,Feroz Shah Kotla,0,Delhi Daredevils,Kings XI Punjab,Delhi Daredevils,bat,Delhi Daredevils,runs,51,N,NA,YC Barde,Nitin Menon +1082606,Mumbai,2017-04-16,N Rana,Wankhede Stadium,0,Mumbai Indians,Gujarat Lions,Mumbai Indians,field,Mumbai Indians,wickets,6,N,NA,A Nand Kishore,S Ravi +1082607,Bangalore,2017-04-16,BA Stokes,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Rising Pune Supergiant,Royal Challengers Bangalore,field,Rising Pune Supergiant,runs,27,N,NA,KN Ananthapadmanabhan,C Shamshuddin +1082608,Delhi,2017-04-17,NM Coulter-Nile,Feroz Shah Kotla,0,Delhi Daredevils,Kolkata Knight Riders,Delhi Daredevils,bat,Kolkata Knight Riders,wickets,4,N,NA,Nitin Menon,CK Nandan +1082609,Hyderabad,2017-04-17,B Kumar,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Kings XI Punjab,Kings XI Punjab,field,Sunrisers Hyderabad,runs,5,N,NA,AY Dandekar,A Deshmukh +1082610,Rajkot,2017-04-18,CH Gayle,Saurashtra Cricket Association Stadium,0,Gujarat Lions,Royal Challengers Bangalore,Gujarat Lions,field,Royal Challengers Bangalore,runs,21,N,NA,S Ravi,VK Sharma +1082611,Hyderabad,2017-04-19,KS Williamson,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Delhi Daredevils,Sunrisers Hyderabad,bat,Sunrisers Hyderabad,runs,15,N,NA,CB Gaffaney,NJ Llong +1082612,Indore,2017-04-20,JC Buttler,Holkar Cricket Stadium,0,Kings XI Punjab,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,8,N,NA,M Erasmus,C Shamshuddin +1082613,Kolkata,2017-04-21,SK Raina,Eden Gardens,0,Kolkata Knight Riders,Gujarat Lions,Gujarat Lions,field,Gujarat Lions,wickets,4,N,NA,CB Gaffaney,Nitin Menon +1082614,Mumbai,2017-04-22,MJ McClenaghan,Wankhede Stadium,0,Mumbai Indians,Delhi Daredevils,Delhi Daredevils,field,Mumbai Indians,runs,14,N,NA,A Nand Kishore,S Ravi +1082615,Pune,2017-04-22,MS Dhoni,Maharashtra Cricket Association Stadium,0,Rising Pune Supergiant,Sunrisers Hyderabad,Rising Pune Supergiant,field,Rising Pune Supergiant,wickets,6,N,NA,AY Dandekar,A Deshmukh +1082616,Rajkot,2017-04-23,HM Amla,Saurashtra Cricket Association Stadium,0,Gujarat Lions,Kings XI Punjab,Gujarat Lions,field,Kings XI Punjab,runs,26,N,NA,AK Chaudhary,M Erasmus +1082617,Kolkata,2017-04-23,NM Coulter-Nile,Eden Gardens,0,Kolkata Knight Riders,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Kolkata Knight Riders,runs,82,N,NA,CB Gaffaney,CK Nandan +1082618,Mumbai,2017-04-24,BA Stokes,Wankhede Stadium,0,Mumbai Indians,Rising Pune Supergiant,Mumbai Indians,field,Rising Pune Supergiant,runs,3,N,NA,A Nand Kishore,S Ravi +1082620,Pune,2017-04-26,RV Uthappa,Maharashtra Cricket Association Stadium,0,Rising Pune Supergiant,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,7,N,NA,AY Dandekar,NJ Llong +1082621,Bangalore,2017-04-27,AJ Tye,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Gujarat Lions,Gujarat Lions,field,Gujarat Lions,wickets,7,N,NA,AK Chaudhary,C Shamshuddin +1082622,Kolkata,2017-04-28,G Gambhir,Eden Gardens,0,Kolkata Knight Riders,Delhi Daredevils,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,7,N,NA,NJ Llong,S Ravi +1082623,Chandigarh,2017-04-28,Rashid Khan,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Sunrisers Hyderabad,Kings XI Punjab,field,Sunrisers Hyderabad,runs,26,N,NA,Nitin Menon,CK Nandan +1082624,Pune,2017-04-29,LH Ferguson,Maharashtra Cricket Association Stadium,0,Rising Pune Supergiant,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Rising Pune Supergiant,runs,61,N,NA,KN Ananthapadmanabhan,M Erasmus +1082625,Rajkot,2017-04-29,KH Pandya,Saurashtra Cricket Association Stadium,0,Gujarat Lions,Mumbai Indians,Gujarat Lions,bat,Mumbai Indians,tie,NA,Y,NA,AK Chaudhary,CB Gaffaney +1082626,Chandigarh,2017-04-30,Sandeep Sharma,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Delhi Daredevils,Kings XI Punjab,field,Kings XI Punjab,wickets,10,N,NA,YC Barde,CK Nandan +1082627,Hyderabad,2017-04-30,DA Warner,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Kolkata Knight Riders,Kolkata Knight Riders,field,Sunrisers Hyderabad,runs,48,N,NA,AY Dandekar,S Ravi +1082628,Mumbai,2017-05-01,RG Sharma,Wankhede Stadium,0,Mumbai Indians,Royal Challengers Bangalore,Royal Challengers Bangalore,bat,Mumbai Indians,wickets,5,N,NA,AK Chaudhary,CB Gaffaney +1082629,Pune,2017-05-01,BA Stokes,Maharashtra Cricket Association Stadium,0,Rising Pune Supergiant,Gujarat Lions,Rising Pune Supergiant,field,Rising Pune Supergiant,wickets,5,N,NA,M Erasmus,C Shamshuddin +1082630,Delhi,2017-05-02,Mohammed Shami,Feroz Shah Kotla,0,Delhi Daredevils,Sunrisers Hyderabad,Delhi Daredevils,field,Delhi Daredevils,wickets,6,N,NA,YC Barde,Nitin Menon +1082631,Kolkata,2017-05-03,RA Tripathi,Eden Gardens,0,Kolkata Knight Riders,Rising Pune Supergiant,Rising Pune Supergiant,field,Rising Pune Supergiant,wickets,4,N,NA,KN Ananthapadmanabhan,A Nand Kishore +1082632,Delhi,2017-05-04,RR Pant,Feroz Shah Kotla,0,Delhi Daredevils,Gujarat Lions,Delhi Daredevils,field,Delhi Daredevils,wickets,7,N,NA,M Erasmus,Nitin Menon +1082633,Bangalore,2017-05-05,Sandeep Sharma,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kings XI Punjab,Royal Challengers Bangalore,field,Kings XI Punjab,runs,19,N,NA,CB Gaffaney,C Shamshuddin +1082634,Hyderabad,2017-05-06,JD Unadkat,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Rising Pune Supergiant,Sunrisers Hyderabad,field,Rising Pune Supergiant,runs,12,N,NA,KN Ananthapadmanabhan,AK Chaudhary +1082635,Delhi,2017-05-06,LMP Simmons,Feroz Shah Kotla,0,Delhi Daredevils,Mumbai Indians,Delhi Daredevils,field,Mumbai Indians,runs,146,N,NA,Nitin Menon,CK Nandan +1082636,Bangalore,2017-05-07,SP Narine,M Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,6,N,NA,AY Dandekar,C Shamshuddin +1082637,Chandigarh,2017-05-07,DR Smith,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Gujarat Lions,Gujarat Lions,field,Gujarat Lions,wickets,6,N,NA,A Nand Kishore,VK Sharma +1082638,Hyderabad,2017-05-08,S Dhawan,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Mumbai Indians,Mumbai Indians,bat,Sunrisers Hyderabad,wickets,7,N,NA,KN Ananthapadmanabhan,M Erasmus +1082639,Chandigarh,2017-05-09,MM Sharma,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Kolkata Knight Riders,Kolkata Knight Riders,field,Kings XI Punjab,runs,14,N,NA,A Nand Kishore,S Ravi +1082640,Kanpur,2017-05-10,SS Iyer,Green Park,0,Gujarat Lions,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,2,N,NA,YC Barde,AK Chaudhary +1082641,Mumbai,2017-05-11,WP Saha,Wankhede Stadium,0,Mumbai Indians,Kings XI Punjab,Mumbai Indians,field,Kings XI Punjab,runs,7,N,NA,A Deshmukh,A Nand Kishore +1082642,Delhi,2017-05-12,KK Nair,Feroz Shah Kotla,0,Delhi Daredevils,Rising Pune Supergiant,Delhi Daredevils,bat,Delhi Daredevils,runs,7,N,NA,KN Ananthapadmanabhan,CK Nandan +1082643,Kanpur,2017-05-13,Mohammed Siraj,Green Park,0,Gujarat Lions,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,8,N,NA,AK Chaudhary,Nitin Menon +1082644,Kolkata,2017-05-13,AT Rayudu,Eden Gardens,0,Kolkata Knight Riders,Mumbai Indians,Kolkata Knight Riders,field,Mumbai Indians,runs,9,N,NA,A Nand Kishore,S Ravi +1082645,Pune,2017-05-14,JD Unadkat,Maharashtra Cricket Association Stadium,0,Rising Pune Supergiant,Kings XI Punjab,Rising Pune Supergiant,field,Rising Pune Supergiant,wickets,9,N,NA,AY Dandekar,A Deshmukh +1082646,Delhi,2017-05-14,HV Patel,Feroz Shah Kotla,0,Delhi Daredevils,Royal Challengers Bangalore,Royal Challengers Bangalore,bat,Royal Challengers Bangalore,runs,10,N,NA,CK Nandan,C Shamshuddin +1082647,Mumbai,2017-05-16,Washington Sundar,Wankhede Stadium,0,Mumbai Indians,Rising Pune Supergiant,Mumbai Indians,field,Rising Pune Supergiant,runs,20,N,NA,S Ravi,C Shamshuddin +1082648,Bangalore,2017-05-17,NM Coulter-Nile,M Chinnaswamy Stadium,0,Sunrisers Hyderabad,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,7,N,D/L,AK Chaudhary,Nitin Menon +1082649,Bangalore,2017-05-19,KV Sharma,M Chinnaswamy Stadium,0,Mumbai Indians,Kolkata Knight Riders,Mumbai Indians,field,Mumbai Indians,wickets,6,N,NA,NJ Llong,Nitin Menon +1082650,Hyderabad,2017-05-21,KH Pandya,"Rajiv Gandhi International Stadium, Uppal",0,Mumbai Indians,Rising Pune Supergiant,Mumbai Indians,bat,Mumbai Indians,runs,1,N,NA,NJ Llong,S Ravi +1136561,Mumbai,2018-04-07,DJ Bravo,Wankhede Stadium,0,Mumbai Indians,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,1,N,NA,CB Gaffaney,A Nand Kishore +1136562,Chandigarh,2018-04-08,KL Rahul,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Delhi Daredevils,Kings XI Punjab,field,Kings XI Punjab,wickets,6,N,NA,KN Ananthapadmanabhan,RJ Tucker +1136563,Kolkata,2018-04-08,SP Narine,Eden Gardens,0,Kolkata Knight Riders,Royal Challengers Bangalore,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,4,N,NA,C Shamshuddin,A Deshmukh +1136564,Hyderabad,2018-04-09,S Dhawan,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Rajasthan Royals,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,9,N,NA,VA Kulkarni,NJ Llong +1136565,Chennai,2018-04-10,SW Billings,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kolkata Knight Riders,Chennai Super Kings,field,Chennai Super Kings,wickets,5,N,NA,CB Gaffaney,AK Chaudhary +1136566,Jaipur,2018-04-11,SV Samson,Sawai Mansingh Stadium,0,Rajasthan Royals,Delhi Daredevils,Delhi Daredevils,field,Rajasthan Royals,runs,10,N,D/L,KN Ananthapadmanabhan,Nitin Menon +1136567,Hyderabad,2018-04-12,Rashid Khan,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Mumbai Indians,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,1,N,NA,NJ Llong,CK Nandan +1136568,Bengaluru,2018-04-13,UT Yadav,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kings XI Punjab,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,4,N,NA,A Deshmukh,S Ravi +1136569,Mumbai,2018-04-14,JJ Roy,Wankhede Stadium,0,Mumbai Indians,Delhi Daredevils,Delhi Daredevils,field,Delhi Daredevils,wickets,7,N,NA,KN Ananthapadmanabhan,Nitin Menon +1136570,Kolkata,2018-04-14,B Stanlake,Eden Gardens,0,Kolkata Knight Riders,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,5,N,NA,AK Chaudhary,A Nand Kishore +1136571,Bengaluru,2018-04-15,SV Samson,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Rajasthan Royals,Royal Challengers Bangalore,field,Rajasthan Royals,runs,19,N,NA,C Shamshuddin,S Ravi +1136572,Chandigarh,2018-04-15,CH Gayle,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Chennai Super Kings,Chennai Super Kings,field,Kings XI Punjab,runs,4,N,NA,VA Kulkarni,CK Nandan +1136573,Kolkata,2018-04-16,N Rana,Eden Gardens,0,Kolkata Knight Riders,Delhi Daredevils,Delhi Daredevils,field,Kolkata Knight Riders,runs,71,N,NA,AK Chaudhary,A Nand Kishore +1136574,Mumbai,2018-04-17,RG Sharma,Wankhede Stadium,0,Mumbai Indians,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Mumbai Indians,runs,46,N,NA,RJ Tucker,Nitin Menon +1136575,Jaipur,2018-04-18,N Rana,Sawai Mansingh Stadium,0,Rajasthan Royals,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,7,N,NA,A Deshmukh,S Ravi +1136576,Chandigarh,2018-04-19,CH Gayle,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Sunrisers Hyderabad,Kings XI Punjab,bat,Kings XI Punjab,runs,15,N,NA,NJ Llong,AK Chaudhary +1136577,Pune,2018-04-20,SR Watson,Maharashtra Cricket Association Stadium,0,Chennai Super Kings,Rajasthan Royals,Rajasthan Royals,field,Chennai Super Kings,runs,64,N,NA,KN Ananthapadmanabhan,Nitin Menon +1136578,Kolkata,2018-04-21,KL Rahul,Eden Gardens,0,Kolkata Knight Riders,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,9,N,D/L,C Shamshuddin,A Deshmukh +1136579,Bengaluru,2018-04-21,AB de Villiers,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Delhi Daredevils,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,6,N,NA,CB Gaffaney,CK Nandan +1136580,Hyderabad,2018-04-22,AT Rayudu,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Chennai Super Kings,Sunrisers Hyderabad,field,Chennai Super Kings,runs,4,N,NA,VA Kulkarni,AK Chaudhary +1136581,Jaipur,2018-04-22,JC Archer,Sawai Mansingh Stadium,0,Rajasthan Royals,Mumbai Indians,Mumbai Indians,bat,Rajasthan Royals,wickets,3,N,NA,KN Ananthapadmanabhan,RJ Tucker +1136582,Delhi,2018-04-23,AS Rajpoot,Feroz Shah Kotla,0,Delhi Daredevils,Kings XI Punjab,Delhi Daredevils,field,Kings XI Punjab,runs,4,N,NA,A Nand Kishore,CK Nandan +1136583,Mumbai,2018-04-24,Rashid Khan,Wankhede Stadium,0,Mumbai Indians,Sunrisers Hyderabad,Mumbai Indians,field,Sunrisers Hyderabad,runs,31,N,NA,C Shamshuddin,S Ravi +1136584,Bengaluru,2018-04-25,MS Dhoni,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,5,N,NA,NJ Llong,VK Sharma +1136585,Hyderabad,2018-04-26,AS Rajpoot,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Kings XI Punjab,Kings XI Punjab,field,Sunrisers Hyderabad,runs,13,N,NA,YC Barde,CK Nandan +1136586,Delhi,2018-04-27,SS Iyer,Feroz Shah Kotla,0,Delhi Daredevils,Kolkata Knight Riders,Kolkata Knight Riders,field,Delhi Daredevils,runs,55,N,NA,C Shamshuddin,S Ravi +1136587,Pune,2018-04-28,RG Sharma,Maharashtra Cricket Association Stadium,0,Chennai Super Kings,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,8,N,NA,CB Gaffaney,Nitin Menon +1136588,Jaipur,2018-04-29,KS Williamson,Sawai Mansingh Stadium,0,Rajasthan Royals,Sunrisers Hyderabad,Sunrisers Hyderabad,bat,Sunrisers Hyderabad,runs,11,N,NA,BNJ Oxenford,A Nand Kishore +1136589,Bengaluru,2018-04-29,CA Lynn,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,6,N,NA,NJ Llong,AK Chaudhary +1136590,Pune,2018-04-30,SR Watson,Maharashtra Cricket Association Stadium,0,Chennai Super Kings,Delhi Daredevils,Delhi Daredevils,field,Chennai Super Kings,runs,13,N,NA,AY Dandekar,C Shamshuddin +1136591,Bengaluru,2018-05-01,TG Southee,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Mumbai Indians,Mumbai Indians,field,Royal Challengers Bangalore,runs,14,N,NA,M Erasmus,Nitin Menon +1136592,Delhi,2018-05-02,RR Pant,Feroz Shah Kotla,0,Delhi Daredevils,Rajasthan Royals,Rajasthan Royals,field,Delhi Daredevils,runs,4,N,D/L,VK Sharma,CK Nandan +1136593,Kolkata,2018-05-03,SP Narine,Eden Gardens,0,Kolkata Knight Riders,Chennai Super Kings,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,6,N,NA,HDPK Dharmasena,A Deshmukh +1136594,Indore,2018-05-04,SA Yadav,Holkar Cricket Stadium,0,Kings XI Punjab,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,6,N,NA,AY Dandekar,S Ravi +1136595,Pune,2018-05-05,RA Jadeja,Maharashtra Cricket Association Stadium,0,Chennai Super Kings,Royal Challengers Bangalore,Chennai Super Kings,field,Chennai Super Kings,wickets,6,N,NA,Nitin Menon,YC Barde +1136596,Hyderabad,2018-05-05,Rashid Khan,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Delhi Daredevils,Delhi Daredevils,bat,Sunrisers Hyderabad,wickets,7,N,NA,BNJ Oxenford,CK Nandan +1136597,Mumbai,2018-05-06,HH Pandya,Wankhede Stadium,0,Mumbai Indians,Kolkata Knight Riders,Kolkata Knight Riders,field,Mumbai Indians,runs,13,N,NA,HDPK Dharmasena,A Deshmukh +1136598,Indore,2018-05-06,Mujeeb Ur Rahman,Holkar Cricket Stadium,0,Kings XI Punjab,Rajasthan Royals,Kings XI Punjab,field,Kings XI Punjab,wickets,6,N,NA,C Shamshuddin,S Ravi +1136599,Hyderabad,2018-05-07,KS Williamson,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Sunrisers Hyderabad,runs,5,N,NA,BNJ Oxenford,VK Sharma +1136600,Jaipur,2018-05-08,JC Buttler,Sawai Mansingh Stadium,0,Rajasthan Royals,Kings XI Punjab,Rajasthan Royals,bat,Rajasthan Royals,runs,15,N,NA,M Erasmus,Nitin Menon +1136601,Kolkata,2018-05-09,Ishan Kishan,Eden Gardens,0,Kolkata Knight Riders,Mumbai Indians,Kolkata Knight Riders,field,Mumbai Indians,runs,102,N,NA,KN Ananthapadmanabhan,AK Chaudhary +1136602,Delhi,2018-05-10,S Dhawan,Feroz Shah Kotla,0,Delhi Daredevils,Sunrisers Hyderabad,Delhi Daredevils,bat,Sunrisers Hyderabad,wickets,9,N,NA,AY Dandekar,C Shamshuddin +1136603,Jaipur,2018-05-11,JC Buttler,Sawai Mansingh Stadium,0,Rajasthan Royals,Chennai Super Kings,Chennai Super Kings,bat,Rajasthan Royals,wickets,4,N,NA,M Erasmus,YC Barde +1136604,Indore,2018-05-12,SP Narine,Holkar Cricket Stadium,0,Kings XI Punjab,Kolkata Knight Riders,Kings XI Punjab,field,Kolkata Knight Riders,runs,31,N,NA,VK Sharma,CK Nandan +1136605,Delhi,2018-05-12,AB de Villiers,Feroz Shah Kotla,0,Delhi Daredevils,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,5,N,NA,KN Ananthapadmanabhan,HDPK Dharmasena +1136606,Pune,2018-05-13,AT Rayudu,Maharashtra Cricket Association Stadium,0,Chennai Super Kings,Sunrisers Hyderabad,Chennai Super Kings,field,Chennai Super Kings,wickets,8,N,NA,M Erasmus,YC Barde +1136607,Mumbai,2018-05-13,JC Buttler,Wankhede Stadium,0,Mumbai Indians,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,7,N,NA,Nitin Menon,S Ravi +1136608,Indore,2018-05-14,UT Yadav,Holkar Cricket Stadium,0,Kings XI Punjab,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,10,N,NA,BNJ Oxenford,VK Sharma +1136609,Kolkata,2018-05-15,Kuldeep Yadav,Eden Gardens,0,Kolkata Knight Riders,Rajasthan Royals,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,6,N,NA,HDPK Dharmasena,AK Chaudhary +1136610,Mumbai,2018-05-16,JJ Bumrah,Wankhede Stadium,0,Mumbai Indians,Kings XI Punjab,Kings XI Punjab,field,Mumbai Indians,runs,3,N,NA,M Erasmus,Nitin Menon +1136611,Bengaluru,2018-05-17,AB de Villiers,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Royal Challengers Bangalore,runs,14,N,NA,AY Dandekar,S Ravi +1136612,Delhi,2018-05-18,HV Patel,Feroz Shah Kotla,0,Delhi Daredevils,Chennai Super Kings,Chennai Super Kings,field,Delhi Daredevils,runs,34,N,NA,VA Kulkarni,HDPK Dharmasena +1136613,Jaipur,2018-05-19,S Gopal,Sawai Mansingh Stadium,0,Rajasthan Royals,Royal Challengers Bangalore,Rajasthan Royals,bat,Rajasthan Royals,runs,30,N,NA,BNJ Oxenford,VK Sharma +1136614,Hyderabad,2018-05-19,CA Lynn,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Kolkata Knight Riders,Sunrisers Hyderabad,bat,Kolkata Knight Riders,wickets,5,N,NA,AK Chaudhary,S Ravi +1136615,Delhi,2018-05-20,A Mishra,Feroz Shah Kotla,0,Delhi Daredevils,Mumbai Indians,Delhi Daredevils,bat,Delhi Daredevils,runs,11,N,NA,HDPK Dharmasena,CK Nandan +1136616,Pune,2018-05-20,L Ngidi,Maharashtra Cricket Association Stadium,0,Chennai Super Kings,Kings XI Punjab,Chennai Super Kings,field,Chennai Super Kings,wickets,5,N,NA,Nitin Menon,YC Barde +1136617,Mumbai,2018-05-22,F du Plessis,Wankhede Stadium,0,Sunrisers Hyderabad,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,2,N,NA,C Shamshuddin,M Erasmus +1136618,Kolkata,2018-05-23,AD Russell,Eden Gardens,0,Kolkata Knight Riders,Rajasthan Royals,Rajasthan Royals,field,Kolkata Knight Riders,runs,25,N,NA,AK Chaudhary,Nitin Menon +1136619,Kolkata,2018-05-25,Rashid Khan,Eden Gardens,0,Kolkata Knight Riders,Sunrisers Hyderabad,Kolkata Knight Riders,field,Sunrisers Hyderabad,runs,14,N,NA,HDPK Dharmasena,Nitin Menon +1136620,Mumbai,2018-05-27,SR Watson,Wankhede Stadium,0,Chennai Super Kings,Sunrisers Hyderabad,Chennai Super Kings,field,Chennai Super Kings,wickets,8,N,NA,M Erasmus,S Ravi +1175356,Chennai,2019-03-23,Harbhajan Singh,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Royal Challengers Bangalore,Chennai Super Kings,field,Chennai Super Kings,wickets,7,N,NA,AY Dandekar,BNJ Oxenford +1175357,Kolkata,2019-03-24,AD Russell,Eden Gardens,0,Kolkata Knight Riders,Sunrisers Hyderabad,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,6,N,NA,CB Gaffaney,AK Chaudhary +1175358,Mumbai,2019-03-24,RR Pant,Wankhede Stadium,0,Mumbai Indians,Delhi Capitals,Mumbai Indians,field,Delhi Capitals,runs,37,N,NA,YC Barde,S Ravi +1175359,Jaipur,2019-03-25,CH Gayle,Sawai Mansingh Stadium,0,Rajasthan Royals,Kings XI Punjab,Rajasthan Royals,field,Kings XI Punjab,runs,14,N,NA,KN Ananthapadmanabhan,C Shamshuddin +1175360,Delhi,2019-03-26,SR Watson,Feroz Shah Kotla,0,Delhi Capitals,Chennai Super Kings,Delhi Capitals,bat,Chennai Super Kings,wickets,6,N,NA,M Erasmus,Nitin Menon +1175361,Kolkata,2019-03-27,AD Russell,Eden Gardens,0,Kolkata Knight Riders,Kings XI Punjab,Kings XI Punjab,field,Kolkata Knight Riders,runs,28,N,NA,VA Kulkarni,AK Chaudhary +1175362,Bengaluru,2019-03-28,JJ Bumrah,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Mumbai Indians,Royal Challengers Bangalore,field,Mumbai Indians,runs,6,N,NA,CK Nandan,S Ravi +1175363,Hyderabad,2019-03-29,Rashid Khan,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Rajasthan Royals,Rajasthan Royals,bat,Sunrisers Hyderabad,wickets,5,N,NA,C Shamshuddin,BNJ Oxenford +1175364,Chandigarh,2019-03-30,MA Agarwal,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Mumbai Indians,Kings XI Punjab,field,Kings XI Punjab,wickets,8,N,NA,VA Kulkarni,CB Gaffaney +1175365,Delhi,2019-03-30,PP Shaw,Feroz Shah Kotla,0,Delhi Capitals,Kolkata Knight Riders,Delhi Capitals,field,Delhi Capitals,tie,NA,Y,NA,AY Dandekar,Nitin Menon +1175366,Hyderabad,2019-03-31,JM Bairstow,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Sunrisers Hyderabad,runs,118,N,NA,KN Ananthapadmanabhan,S Ravi +1175367,Chennai,2019-03-31,MS Dhoni,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Rajasthan Royals,Rajasthan Royals,field,Chennai Super Kings,runs,8,N,NA,YC Barde,CK Nandan +1175368,Chandigarh,2019-04-01,SM Curran,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Delhi Capitals,Delhi Capitals,field,Kings XI Punjab,runs,14,N,NA,CB Gaffaney,AK Chaudhary +1175369,Jaipur,2019-04-02,S Gopal,Sawai Mansingh Stadium,0,Rajasthan Royals,Royal Challengers Bangalore,Rajasthan Royals,field,Rajasthan Royals,wickets,7,N,NA,AY Dandekar,M Erasmus +1175370,Mumbai,2019-04-03,HH Pandya,Wankhede Stadium,0,Mumbai Indians,Chennai Super Kings,Chennai Super Kings,field,Mumbai Indians,runs,37,N,NA,RJ Tucker,BNJ Oxenford +1175371,Delhi,2019-04-04,JM Bairstow,Feroz Shah Kotla,0,Delhi Capitals,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,5,N,NA,KN Ananthapadmanabhan,C Shamshuddin +1175372,Bengaluru,2019-04-05,AD Russell,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,5,N,NA,CB Gaffaney,AK Chaudhary +1178393,Chennai,2019-04-06,Harbhajan Singh,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kings XI Punjab,Chennai Super Kings,bat,Chennai Super Kings,runs,22,N,NA,KN Ananthapadmanabhan,RJ Tucker +1178394,Hyderabad,2019-04-06,AS Joseph,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Mumbai Indians,Sunrisers Hyderabad,field,Mumbai Indians,runs,40,N,NA,AY Dandekar,Nitin Menon +1178395,Bengaluru,2019-04-07,K Rabada,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Delhi Capitals,Delhi Capitals,field,Delhi Capitals,wickets,4,N,NA,YC Barde,S Ravi +1178396,Jaipur,2019-04-07,HF Gurney,Sawai Mansingh Stadium,0,Rajasthan Royals,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,8,N,NA,CB Gaffaney,AK Chaudhary +1178397,Chandigarh,2019-04-08,KL Rahul,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Sunrisers Hyderabad,Kings XI Punjab,field,Kings XI Punjab,wickets,6,N,NA,AY Dandekar,M Erasmus +1178398,Chennai,2019-04-09,DL Chahar,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Kolkata Knight Riders,Chennai Super Kings,field,Chennai Super Kings,wickets,7,N,NA,RJ Tucker,C Shamshuddin +1178399,Mumbai,2019-04-10,KA Pollard,Wankhede Stadium,0,Mumbai Indians,Kings XI Punjab,Mumbai Indians,field,Mumbai Indians,wickets,3,N,NA,YC Barde,S Ravi +1178400,Jaipur,2019-04-11,MS Dhoni,Sawai Mansingh Stadium,0,Rajasthan Royals,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,4,N,NA,UV Gandhe,BNJ Oxenford +1178401,Kolkata,2019-04-12,S Dhawan,Eden Gardens,0,Kolkata Knight Riders,Delhi Capitals,Delhi Capitals,field,Delhi Capitals,wickets,7,N,NA,YC Barde,CK Nandan +1178402,Mumbai,2019-04-13,JC Buttler,Wankhede Stadium,0,Mumbai Indians,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,4,N,NA,Nitin Menon,A Nand Kishore +1178403,Chandigarh,2019-04-13,AB de Villiers,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,8,N,NA,UV Gandhe,S Ravi +1178404,Kolkata,2019-04-14,Imran Tahir,Eden Gardens,0,Kolkata Knight Riders,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,5,N,NA,RJ Tucker,CK Nandan +1178405,Hyderabad,2019-04-14,KMA Paul,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Delhi Capitals,Sunrisers Hyderabad,field,Delhi Capitals,runs,39,N,NA,BNJ Oxenford,AK Chaudhary +1178406,Mumbai,2019-04-15,SL Malinga,Wankhede Stadium,0,Mumbai Indians,Royal Challengers Bangalore,Mumbai Indians,field,Mumbai Indians,wickets,5,N,NA,M Erasmus,Nitin Menon +1178407,Chandigarh,2019-04-16,R Ashwin,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Rajasthan Royals,Rajasthan Royals,field,Kings XI Punjab,runs,12,N,NA,VA Kulkarni,AK Chaudhary +1178408,Hyderabad,2019-04-17,DA Warner,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Chennai Super Kings,Chennai Super Kings,bat,Sunrisers Hyderabad,wickets,6,N,NA,UV Gandhe,IJ Gould +1178409,Delhi,2019-04-18,HH Pandya,Feroz Shah Kotla,0,Delhi Capitals,Mumbai Indians,Mumbai Indians,bat,Mumbai Indians,runs,40,N,NA,BNJ Oxenford,NJ Llong +1178410,Kolkata,2019-04-19,V Kohli,Eden Gardens,0,Kolkata Knight Riders,Royal Challengers Bangalore,Kolkata Knight Riders,field,Royal Challengers Bangalore,runs,10,N,NA,IJ Gould,Nitin Menon +1178411,Jaipur,2019-04-20,SPD Smith,Sawai Mansingh Stadium,0,Rajasthan Royals,Mumbai Indians,Rajasthan Royals,field,Rajasthan Royals,wickets,5,N,NA,YC Barde,S Ravi +1178412,Delhi,2019-04-20,SS Iyer,Feroz Shah Kotla,0,Delhi Capitals,Kings XI Punjab,Delhi Capitals,field,Delhi Capitals,wickets,5,N,NA,UV Gandhe,C Shamshuddin +1178413,Hyderabad,2019-04-21,KK Ahmed,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Kolkata Knight Riders,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,9,N,NA,NJ Llong,Nitin Menon +1178414,Bengaluru,2019-04-21,PA Patel,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Chennai Super Kings,Chennai Super Kings,field,Royal Challengers Bangalore,runs,1,N,NA,RJ Tucker,VA Kulkarni +1178415,Jaipur,2019-04-22,RR Pant,Sawai Mansingh Stadium,0,Rajasthan Royals,Delhi Capitals,Delhi Capitals,field,Delhi Capitals,wickets,6,N,NA,A Nand Kishore,S Ravi +1178416,Chennai,2019-04-23,SR Watson,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Sunrisers Hyderabad,Chennai Super Kings,field,Chennai Super Kings,wickets,6,N,NA,NJ Llong,AK Chaudhary +1178417,Bengaluru,2019-04-24,AB de Villiers,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Kings XI Punjab,Kings XI Punjab,field,Royal Challengers Bangalore,runs,17,N,NA,C Shamshuddin,BNJ Oxenford +1178418,Kolkata,2019-04-25,VR Aaron,Eden Gardens,0,Kolkata Knight Riders,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,3,N,NA,AY Dandekar,IJ Gould +1178419,Chennai,2019-04-26,RG Sharma,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Mumbai Indians,Chennai Super Kings,field,Mumbai Indians,runs,46,N,NA,NJ Llong,AK Chaudhary +1178420,Jaipur,2019-04-27,JD Unadkat,Sawai Mansingh Stadium,0,Rajasthan Royals,Sunrisers Hyderabad,Rajasthan Royals,field,Rajasthan Royals,wickets,7,N,NA,YC Barde,A Nand Kishore +1178421,Delhi,2019-04-28,S Dhawan,Feroz Shah Kotla,0,Delhi Capitals,Royal Challengers Bangalore,Delhi Capitals,bat,Delhi Capitals,runs,16,N,NA,KN Ananthapadmanabhan,BNJ Oxenford +1178422,Kolkata,2019-04-28,AD Russell,Eden Gardens,0,Kolkata Knight Riders,Mumbai Indians,Mumbai Indians,field,Kolkata Knight Riders,runs,34,N,NA,IJ Gould,Nitin Menon +1178423,Hyderabad,2019-04-29,DA Warner,"Rajiv Gandhi International Stadium, Uppal",0,Sunrisers Hyderabad,Kings XI Punjab,Kings XI Punjab,field,Sunrisers Hyderabad,runs,45,N,NA,CK Nandan,S Ravi +1178424,Bengaluru,2019-04-30,NA,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Rajasthan Royals,Rajasthan Royals,field,NA,NA,NA,NA,NA,UV Gandhe,NJ Llong +1178425,Chennai,2019-05-01,MS Dhoni,"MA Chidambaram Stadium, Chepauk",0,Chennai Super Kings,Delhi Capitals,Delhi Capitals,field,Chennai Super Kings,runs,80,N,NA,AY Dandekar,Nitin Menon +1178426,Mumbai,2019-05-02,JJ Bumrah,Wankhede Stadium,0,Mumbai Indians,Sunrisers Hyderabad,Mumbai Indians,bat,Mumbai Indians,tie,NA,Y,NA,CK Nandan,S Ravi +1178427,Chandigarh,2019-05-03,Shubman Gill,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Kolkata Knight Riders,Kolkata Knight Riders,field,Kolkata Knight Riders,wickets,7,N,NA,C Shamshuddin,BNJ Oxenford +1178428,Delhi,2019-05-04,A Mishra,Feroz Shah Kotla,0,Delhi Capitals,Rajasthan Royals,Rajasthan Royals,bat,Delhi Capitals,wickets,5,N,NA,AY Dandekar,IJ Gould +1178429,Bengaluru,2019-05-04,SO Hetmyer,M.Chinnaswamy Stadium,0,Royal Challengers Bangalore,Sunrisers Hyderabad,Royal Challengers Bangalore,field,Royal Challengers Bangalore,wickets,4,N,NA,NJ Llong,AK Chaudhary +1178430,Chandigarh,2019-05-05,KL Rahul,"Punjab Cricket Association IS Bindra Stadium, Mohali",0,Kings XI Punjab,Chennai Super Kings,Kings XI Punjab,field,Kings XI Punjab,wickets,6,N,NA,KN Ananthapadmanabhan,C Shamshuddin +1178431,Mumbai,2019-05-05,HH Pandya,Wankhede Stadium,0,Mumbai Indians,Kolkata Knight Riders,Mumbai Indians,field,Mumbai Indians,wickets,9,N,NA,A Nand Kishore,CK Nandan +1181764,Chennai,2019-05-07,SA Yadav,"MA Chidambaram Stadium, Chepauk",0,Mumbai Indians,Chennai Super Kings,Chennai Super Kings,bat,Mumbai Indians,wickets,6,N,NA,NJ Llong,Nitin Menon +1181766,Visakhapatnam,2019-05-08,RR Pant,Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium,0,Delhi Capitals,Sunrisers Hyderabad,Delhi Capitals,field,Delhi Capitals,wickets,2,N,NA,BNJ Oxenford,S Ravi +1181767,Visakhapatnam,2019-05-10,F du Plessis,Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium,0,Chennai Super Kings,Delhi Capitals,Chennai Super Kings,field,Chennai Super Kings,wickets,6,N,NA,BNJ Oxenford,S Ravi +1181768,Hyderabad,2019-05-12,JJ Bumrah,"Rajiv Gandhi International Stadium, Uppal",0,Mumbai Indians,Chennai Super Kings,Mumbai Indians,bat,Mumbai Indians,runs,1,N,NA,IJ Gould,Nitin Menon +1216492,Abu Dhabi,2020-09-19,AT Rayudu,Sheikh Zayed Stadium,0,Mumbai Indians,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,5,N,NA,CB Gaffaney,VK Sharma +1216493,Dubai,2020-09-20,MP Stoinis,Dubai International Cricket Stadium,0,Delhi Capitals,Kings XI Punjab,Kings XI Punjab,field,Delhi Capitals,tie,NA,Y,NA,AK Chaudhary,Nitin Menon +1216494,Abu Dhabi,2020-10-21,Mohammed Siraj,Sheikh Zayed Stadium,0,Kolkata Knight Riders,Royal Challengers Bangalore,Kolkata Knight Riders,bat,Royal Challengers Bangalore,wickets,8,N,NA,VK Sharma,S Ravi +1216495,Sharjah,2020-11-03,S Nadeem,Sharjah Cricket Stadium,0,Mumbai Indians,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,10,N,NA,C Shamshuddin,RK Illingworth +1216496,Sharjah,2020-09-22,SV Samson,Sharjah Cricket Stadium,0,Rajasthan Royals,Chennai Super Kings,Chennai Super Kings,field,Rajasthan Royals,runs,16,N,NA,C Shamshuddin,VA Kulkarni +1216497,Abu Dhabi,2020-10-24,CV Varun,Sheikh Zayed Stadium,0,Kolkata Knight Riders,Delhi Capitals,Delhi Capitals,field,Kolkata Knight Riders,runs,59,N,NA,CB Gaffaney,PG Pathak +1216498,Dubai,2020-10-24,CJ Jordan,Dubai International Cricket Stadium,0,Kings XI Punjab,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Kings XI Punjab,runs,12,N,NA,AY Dandekar,PR Reiffel +1216499,Abu Dhabi,2020-10-28,SA Yadav,Sheikh Zayed Stadium,0,Royal Challengers Bangalore,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,5,N,NA,UV Gandhe,CB Gaffaney +1216500,Sharjah,2020-10-09,R Ashwin,Sharjah Cricket Stadium,0,Delhi Capitals,Rajasthan Royals,Rajasthan Royals,field,Delhi Capitals,runs,46,N,NA,KN Ananthapadmanabhan,C Shamshuddin +1216501,Abu Dhabi,2020-10-07,RA Tripathi,Sheikh Zayed Stadium,0,Kolkata Knight Riders,Chennai Super Kings,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,10,N,NA,KN Ananthapadmanabhan,RK Illingworth +1216502,Sharjah,2020-10-31,Sandeep Sharma,Sharjah Cricket Stadium,0,Royal Challengers Bangalore,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,5,N,NA,KN Ananthapadmanabhan,K Srinivasan +1216503,Abu Dhabi,2020-10-01,KA Pollard,Sheikh Zayed Stadium,0,Mumbai Indians,Kings XI Punjab,Kings XI Punjab,field,Mumbai Indians,runs,48,N,NA,VK Sharma,S Ravi +1216504,Dubai,2020-09-30,Shivam Mavi,Dubai International Cricket Stadium,0,Kolkata Knight Riders,Rajasthan Royals,Rajasthan Royals,field,Kolkata Knight Riders,runs,37,N,NA,KN Ananthapadmanabhan,C Shamshuddin +1216505,Abu Dhabi,2020-11-02,A Nortje,Sheikh Zayed Stadium,0,Royal Challengers Bangalore,Delhi Capitals,Delhi Capitals,field,Delhi Capitals,wickets,6,N,NA,CB Gaffaney,S Ravi +1216506,Abu Dhabi,2020-11-01,RD Gaikwad,Sheikh Zayed Stadium,0,Kings XI Punjab,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,9,N,NA,PG Pathak,VK Sharma +1216507,Dubai,2020-10-11,R Tewatia,Dubai International Cricket Stadium,0,Sunrisers Hyderabad,Rajasthan Royals,Sunrisers Hyderabad,bat,Rajasthan Royals,wickets,5,N,NA,YC Barde,PR Reiffel +1216508,Abu Dhabi,2020-09-23,RG Sharma,Sheikh Zayed Stadium,0,Mumbai Indians,Kolkata Knight Riders,Kolkata Knight Riders,field,Mumbai Indians,runs,49,N,NA,CB Gaffaney,S Ravi +1216509,Sharjah,2020-10-17,S Dhawan,Sharjah Cricket Stadium,0,Chennai Super Kings,Delhi Capitals,Chennai Super Kings,bat,Delhi Capitals,wickets,5,N,NA,KN Ananthapadmanabhan,RK Illingworth +1216510,Dubai,2020-09-24,KL Rahul,Dubai International Cricket Stadium,0,Kings XI Punjab,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Kings XI Punjab,runs,97,N,NA,AK Chaudhary,PR Reiffel +1216511,Abu Dhabi,2020-10-06,SA Yadav,Sheikh Zayed Stadium,0,Mumbai Indians,Rajasthan Royals,Mumbai Indians,bat,Mumbai Indians,runs,57,N,NA,VK Sharma,S Ravi +1216512,Abu Dhabi,2020-10-18,LH Ferguson,Sheikh Zayed Stadium,0,Kolkata Knight Riders,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Kolkata Knight Riders,tie,NA,Y,NA,PG Pathak,S Ravi +1216513,Dubai,2020-10-04,SR Watson,Dubai International Cricket Stadium,0,Kings XI Punjab,Chennai Super Kings,Kings XI Punjab,bat,Chennai Super Kings,wickets,10,N,NA,AY Dandekar,Nitin Menon +1216514,Abu Dhabi,2020-10-03,YS Chahal,Sheikh Zayed Stadium,0,Rajasthan Royals,Royal Challengers Bangalore,Rajasthan Royals,bat,Royal Challengers Bangalore,wickets,8,N,NA,CB Gaffaney,S Ravi +1216515,Sharjah,2020-10-03,SS Iyer,Sharjah Cricket Stadium,0,Delhi Capitals,Kolkata Knight Riders,Kolkata Knight Riders,field,Delhi Capitals,runs,18,N,NA,VA Kulkarni,RK Illingworth +1216516,Dubai,2020-10-02,PK Garg,Dubai International Cricket Stadium,0,Sunrisers Hyderabad,Chennai Super Kings,Sunrisers Hyderabad,bat,Sunrisers Hyderabad,runs,7,N,NA,AK Chaudhary,PR Reiffel +1216517,Dubai,2020-10-18,KL Rahul,Dubai International Cricket Stadium,0,Mumbai Indians,Kings XI Punjab,Mumbai Indians,bat,Kings XI Punjab,tie,NA,Y,NA,Nitin Menon,PR Reiffel +1216518,Dubai,2020-10-22,MK Pandey,Dubai International Cricket Stadium,0,Rajasthan Royals,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,8,N,NA,Nitin Menon,PR Reiffel +1216519,Dubai,2020-10-05,AR Patel,Dubai International Cricket Stadium,0,Delhi Capitals,Royal Challengers Bangalore,Royal Challengers Bangalore,field,Delhi Capitals,runs,59,N,NA,Nitin Menon,YC Barde +1216520,Sharjah,2020-10-26,CH Gayle,Sharjah Cricket Stadium,0,Kolkata Knight Riders,Kings XI Punjab,Kings XI Punjab,field,Kings XI Punjab,wickets,8,N,NA,KN Ananthapadmanabhan,RK Illingworth +1216521,Sharjah,2020-10-23,TA Boult,Sharjah Cricket Stadium,0,Chennai Super Kings,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,10,N,NA,C Shamshuddin,VA Kulkarni +1216522,Dubai,2020-10-17,AB de Villiers,Dubai International Cricket Stadium,0,Rajasthan Royals,Royal Challengers Bangalore,Rajasthan Royals,bat,Royal Challengers Bangalore,wickets,7,N,NA,AK Chaudhary,Nitin Menon +1216523,Abu Dhabi,2020-10-10,KD Karthik,Sheikh Zayed Stadium,0,Kolkata Knight Riders,Kings XI Punjab,Kolkata Knight Riders,bat,Kolkata Knight Riders,runs,2,N,NA,UV Gandhe,CB Gaffaney +1216524,Dubai,2020-10-27,WP Saha,Dubai International Cricket Stadium,0,Sunrisers Hyderabad,Delhi Capitals,Delhi Capitals,field,Sunrisers Hyderabad,runs,88,N,NA,AK Chaudhary,Nitin Menon +1216525,Dubai,2020-10-10,V Kohli,Dubai International Cricket Stadium,0,Royal Challengers Bangalore,Chennai Super Kings,Royal Challengers Bangalore,bat,Royal Challengers Bangalore,runs,37,N,NA,AK Chaudhary,PR Reiffel +1216526,Abu Dhabi,2020-10-16,Q de Kock,Sheikh Zayed Stadium,0,Kolkata Knight Riders,Mumbai Indians,Kolkata Knight Riders,bat,Mumbai Indians,wickets,8,N,NA,CB Gaffaney,VK Sharma +1216527,Sharjah,2020-09-27,SV Samson,Sharjah Cricket Stadium,0,Kings XI Punjab,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,4,N,NA,RK Illingworth,K Srinivasan +1216528,Dubai,2020-10-13,RA Jadeja,Dubai International Cricket Stadium,0,Chennai Super Kings,Sunrisers Hyderabad,Chennai Super Kings,bat,Chennai Super Kings,runs,20,N,NA,AK Chaudhary,PR Reiffel +1216529,Abu Dhabi,2020-10-11,Q de Kock,Sheikh Zayed Stadium,0,Delhi Capitals,Mumbai Indians,Delhi Capitals,bat,Mumbai Indians,wickets,5,N,NA,CB Gaffaney,S Ravi +1216530,Dubai,2020-11-01,PJ Cummins,Dubai International Cricket Stadium,0,Kolkata Knight Riders,Rajasthan Royals,Rajasthan Royals,field,Kolkata Knight Riders,runs,60,N,NA,Nitin Menon,PR Reiffel +1216531,Sharjah,2020-10-15,KL Rahul,Sharjah Cricket Stadium,0,Royal Challengers Bangalore,Kings XI Punjab,Royal Challengers Bangalore,bat,Kings XI Punjab,wickets,8,N,NA,KN Ananthapadmanabhan,C Shamshuddin +1216532,Abu Dhabi,2020-09-29,Rashid Khan,Sheikh Zayed Stadium,0,Sunrisers Hyderabad,Delhi Capitals,Delhi Capitals,field,Sunrisers Hyderabad,runs,15,N,NA,VK Sharma,S Ravi +1216533,Abu Dhabi,2020-10-19,JC Buttler,Sheikh Zayed Stadium,0,Chennai Super Kings,Rajasthan Royals,Chennai Super Kings,bat,Rajasthan Royals,wickets,7,N,NA,CB Gaffaney,VK Sharma +1216534,Dubai,2020-09-21,YS Chahal,Dubai International Cricket Stadium,0,Royal Challengers Bangalore,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Royal Challengers Bangalore,runs,10,N,NA,AY Dandekar,Nitin Menon +1216535,Dubai,2020-10-31,Ishan Kishan,Dubai International Cricket Stadium,0,Delhi Capitals,Mumbai Indians,Mumbai Indians,field,Mumbai Indians,wickets,9,N,NA,YC Barde,PR Reiffel +1216536,Dubai,2020-10-29,RD Gaikwad,Dubai International Cricket Stadium,0,Kolkata Knight Riders,Chennai Super Kings,Chennai Super Kings,field,Chennai Super Kings,wickets,6,N,NA,C Shamshuddin,RK Illingworth +1216537,Abu Dhabi,2020-10-30,BA Stokes,Sheikh Zayed Stadium,0,Kings XI Punjab,Rajasthan Royals,Rajasthan Royals,field,Rajasthan Royals,wickets,7,N,NA,CB Gaffaney,S Ravi +1216538,Sharjah,2020-10-04,TA Boult,Sharjah Cricket Stadium,0,Mumbai Indians,Sunrisers Hyderabad,Mumbai Indians,bat,Mumbai Indians,runs,34,N,NA,KN Ananthapadmanabhan,RK Illingworth +1216539,Dubai,2020-09-25,PP Shaw,Dubai International Cricket Stadium,0,Delhi Capitals,Chennai Super Kings,Chennai Super Kings,field,Delhi Capitals,runs,44,N,NA,KN Ananthapadmanabhan,RK Illingworth +1216540,Sharjah,2020-10-12,AB de Villiers,Sharjah Cricket Stadium,0,Royal Challengers Bangalore,Kolkata Knight Riders,Royal Challengers Bangalore,bat,Royal Challengers Bangalore,runs,82,N,NA,RK Illingworth,K Srinivasan +1216541,Abu Dhabi,2020-10-25,BA Stokes,Sheikh Zayed Stadium,0,Mumbai Indians,Rajasthan Royals,Mumbai Indians,bat,Rajasthan Royals,wickets,8,N,NA,UV Gandhe,VK Sharma +1216542,Dubai,2020-10-08,JM Bairstow,Dubai International Cricket Stadium,0,Sunrisers Hyderabad,Kings XI Punjab,Sunrisers Hyderabad,bat,Sunrisers Hyderabad,runs,69,N,NA,AK Chaudhary,Nitin Menon +1216543,Dubai,2020-10-14,A Nortje,Dubai International Cricket Stadium,0,Delhi Capitals,Rajasthan Royals,Delhi Capitals,bat,Delhi Capitals,runs,13,N,NA,AK Chaudhary,Nitin Menon +1216544,Dubai,2020-10-25,RD Gaikwad,Dubai International Cricket Stadium,0,Royal Challengers Bangalore,Chennai Super Kings,Royal Challengers Bangalore,bat,Chennai Super Kings,wickets,8,N,NA,C Shamshuddin,RK Illingworth +1216545,Abu Dhabi,2020-09-26,Shubman Gill,Sheikh Zayed Stadium,0,Sunrisers Hyderabad,Kolkata Knight Riders,Sunrisers Hyderabad,bat,Kolkata Knight Riders,wickets,7,N,NA,CB Gaffaney,VK Sharma +1216546,Dubai,2020-10-20,S Dhawan,Dubai International Cricket Stadium,0,Delhi Capitals,Kings XI Punjab,Delhi Capitals,bat,Kings XI Punjab,wickets,5,N,NA,C Shamshuddin,RK Illingworth +1216547,Dubai,2020-09-28,AB de Villiers,Dubai International Cricket Stadium,0,Royal Challengers Bangalore,Mumbai Indians,Mumbai Indians,field,Royal Challengers Bangalore,tie,NA,Y,NA,Nitin Menon,PR Reiffel +1237177,Dubai,2020-11-05,JJ Bumrah,Dubai International Cricket Stadium,0,Mumbai Indians,Delhi Capitals,Delhi Capitals,field,Mumbai Indians,runs,57,N,NA,CB Gaffaney,Nitin Menon +1237178,Abu Dhabi,2020-11-06,KS Williamson,Sheikh Zayed Stadium,0,Royal Challengers Bangalore,Sunrisers Hyderabad,Sunrisers Hyderabad,field,Sunrisers Hyderabad,wickets,6,N,NA,PR Reiffel,S Ravi +1237180,Abu Dhabi,2020-11-08,MP Stoinis,Sheikh Zayed Stadium,0,Delhi Capitals,Sunrisers Hyderabad,Delhi Capitals,bat,Delhi Capitals,runs,17,N,NA,PR Reiffel,S Ravi +1237181,Dubai,2020-11-10,TA Boult,Dubai International Cricket Stadium,0,Delhi Capitals,Mumbai Indians,Delhi Capitals,bat,Mumbai Indians,wickets,5,N,NA,CB Gaffaney,Nitin Menon diff --git a/Python_For_ML/Week_4/Conceptual Session/CS-1/movie.tsv b/Python_For_ML/Week_4/Conceptual Session/CS-1/movie.tsv new file mode 100644 index 0000000..61c8c17 --- /dev/null +++ b/Python_For_ML/Week_4/Conceptual Session/CS-1/movie.tsv @@ -0,0 +1,617 @@ +m0 10 things i hate about you 1999 6.90 62847 ['comedy' 'romance'] +m1 1492: conquest of paradise 1992 6.20 10421 ['adventure' 'biography' 'drama' 'history'] +m2 15 minutes 2001 6.10 25854 ['action' 'crime' 'drama' 'thriller'] +m3 2001: a space odyssey 1968 8.40 163227 ['adventure' 'mystery' 'sci-fi'] +m4 48 hrs. 1982 6.90 22289 ['action' 'comedy' 'crime' 'drama' 'thriller'] +m5 the fifth element 1997 7.50 133756 ['action' 'adventure' 'romance' 'sci-fi' 'thriller'] +m6 8mm 1999 6.30 48212 ['crime' 'mystery' 'thriller'] +m7 a nightmare on elm street 4: the dream master 1988 5.20 13590 ['fantasy' 'horror' 'thriller'] +m8 a nightmare on elm street: the dream child 1989 4.70 11092 ['fantasy' 'horror' 'thriller'] +m9 the atomic submarine 1959 4.90 513 ['sci-fi' 'thriller'] +m10 affliction 1997 6.90 7252 ['drama' 'mystery' 'thriller'] +m11 air force one 1997 6.30 61978 ['action' 'drama' 'thriller'] +m12 airplane ii: the sequel 1982 5.80 15210 ['comedy' 'romance' 'sci-fi'] +m13 airplane! 1980 7.80 57692 ['comedy' 'romance'] +m14 alien nation 1988 6.10 5590 ['crime' 'drama' 'sci-fi' 'thriller'] +m15 aliens 1986 8.50 173518 ['action' 'sci-fi' 'thriller'] +m16 amadeus 1984 8.40 99138 ['biography' 'drama' 'music'] +m17 an american werewolf in london 1981 7.50 24443 ['horror' 'romance'] +m18 american madness 1932 7.40 702 ['drama'] +m19 american outlaws 2001 5.70 7425 ['action' 'western'] +m20 american psycho 2000 7.40 101357 ['drama' 'thriller'] +m21 antitrust 2001 6.00 16453 ['drama' 'thriller'] +m22 austin powers: international man of mystery 1997 7.10 75240 ['action' 'adventure' 'comedy' 'crime'] +m23 the avengers 1998 3.40 21519 ['action' 'adventure' 'thriller'] +m24 bachelor party 1984 5.90 14050 ['comedy' 'romance'] +m25 backdraft 1991 6.60 28541 ['action' 'crime' 'drama' 'mystery' 'thriller'] +m26 bad lieutenant 1992 6.90 13908 ['crime' 'drama'] +m27 bamboozled 2000 6.30 5995 ['comedy' 'drama' 'music'] +m28 barry lyndon 1975 8.10 40622 ['drama' 'romance' 'war'] +m29 basic 2003 6.30 26295 ['crime' 'drama' 'mystery' 'thriller'] +m30 big fish 2003 8.10 144264 ['adventure' 'drama' 'fantasy'] +m31 birthday girl 2001 6.00 13497 ['comedy' 'crime' 'romance' 'thriller'] +m32 black snake moan 2006 7.10 28509 ['drama'] +m33 black rain 1989/I 6.40 16249 ['action' 'crime' 'drama' 'thriller'] +m34 blade runner 1982 8.30 188735 ['drama' 'sci-fi' 'thriller'] +m35 blast from the past 1999 6.40 23489 ['comedy' 'drama' 'romance'] +m36 blue velvet 1986 7.80 54576 ['crime' 'mystery' 'thriller'] +m37 the boondock saints 1999 7.80 87895 ['action' 'crime' 'drama' 'thriller'] +m38 bottle rocket 1996 7.20 22303 ['comedy' 'crime'] +m39 the bourne supremacy 2004 7.60 106349 ['action' 'adventure' 'mystery' 'thriller'] +m40 braveheart 1995 8.40 245652 ['action' 'biography' 'drama' 'history' 'war'] +m41 the butterfly effect 2004 7.80 104917 ['drama' 'mystery' 'sci-fi' 'thriller'] +m42 casablanca 1942 8.80 170874 ['drama' 'romance' 'war'] +m43 cast away 2000 7.50 104477 ['adventure' 'drama'] +m44 the cider house rules 1999 7.50 38836 ['drama' 'romance'] +m45 confidence 2003 6.80 17235 ['crime' 'thriller'] +m46 croupier 1998 7.20 9060 ['crime' 'drama'] +m47 dark star 1974 6.50 8303 ['comedy' 'sci-fi' 'thriller'] +m48 dark angel 1990 5.30 3452 ['action' 'crime' 'drama' 'horror' 'sci-fi' 'thriller'] +m49 detroit rock city 1999 6.50 14666 ['comedy' 'music'] +m50 donnie darko 2001 8.30 215194 ['drama' 'mystery' 'sci-fi'] +m51 drop dead gorgeous 1999 6.30 16417 ['comedy' 'adult'] +m52 duck soup 1933 8.10 27112 ['comedy' 'musical'] +m53 the elephant man 1980 8.40 59625 ['biography' 'drama' 'history'] +m54 erik the viking 1989 5.90 5889 ['comedy' 'adventure' 'fantasy'] +m55 eternal sunshine of the spotless mind 2004 8.50 224838 ['drama' 'romance' 'sci-fi'] +m56 even cowgirls get the blues 1993 4.00 3947 ['comedy' 'drama' 'romance' 'western'] +m57 event horizon 1997 6.40 45497 ['horror' 'mystery' 'mystery' 'sci-fi' 'sci-fi'] +m58 fantastic four 2005 5.70 72581 ['action' 'adventure' 'fantasy' 'sci-fi' 'fantasy'] +m59 fast times at ridgemont high 1982 7.20 31710 ['comedy' 'drama' 'romance'] +m60 fear and loathing in las vegas 1998 7.60 82748 ['drama' 'fantasy'] +m61 feast 2005 6.40 12248 ['action' 'comedy' 'horror' 'thriller'] +m62 frances 1982 7.20 2756 ['biography' 'drama'] +m63 frankenstein 1931 8.00 23522 ['drama' 'horror' 'sci-fi'] +m64 friday the 13th 2009 5.60 27499 ['horror'] +m65 from dusk till dawn 1996 7.10 81559 ['action' 'crime' 'horror' 'thriller'] +m66 g.i. jane 1997 5.60 24068 ['action' 'drama'] +m67 godzilla 1998 4.90 60310 ['action' 'horror' 'sci-fi' 'thriller'] +m68 galaxy quest 1999 7.20 53004 ['action' 'adventure' 'comedy' 'sci-fi'] +m69 george washington 2000 7.50 3142 ['drama'] +m70 get shorty 1995 6.90 33588 ['comedy' 'crime' 'thriller'] +m71 ghost ship 2002 5.30 26413 ['horror' 'mystery' 'thriller'] +m72 ghost world 2001 7.70 43550 ['comedy' 'drama'] +m73 the ghost and the darkness 1996 6.60 19954 ['adventure' 'drama' 'thriller'] +m74 ghostbusters ii 1989 6.10 45450 ['action' 'adventure' 'comedy' 'fantasy' 'sci-fi' 'action' 'adventure' 'comedy' 'sci-fi'] +m75 ghostbusters 1986 6.90 237 ['animation' 'comedy' 'fantasy' 'sci-fi' 'horror'] +m76 gladiator 2000 8.40 286067 ['action' 'adventure' 'drama'] +m77 the graduate 1967 8.20 79677 ['comedy' 'drama' 'romance'] +m78 grand hotel 1932 7.70 6088 ['drama' 'romance'] +m79 the grifters 1990 7.00 11481 ['crime' 'drama' 'thriller'] +m80 halloween h20: 20 years later 1998 5.40 22353 ['drama' 'horror' 'thriller'] +m81 halloween: the curse of michael myers 1995 4.50 8743 ['horror' 'thriller'] +m82 happy birthday wanda june 1971 5.80 144 ['comedy' 'drama'] +m83 hardcore 1979 6.70 2455 ['drama'] +m84 harold and maude 1971 8.10 28689 ['comedy' 'romance'] +m85 hellbound: hellraiser ii 1988 6.20 11273 ['drama' 'horror' 'thriller'] +m86 hellboy 2004 6.80 68619 ['action' 'adventure' 'fantasy'] +m87 hellraiser 1987 7.00 22922 ['horror'] +m88 high fidelity 2000 7.60 70464 ['comedy' 'drama' 'music' 'romance'] +m89 highlander 1986 7.20 41243 ['action' 'fantasy'] +m90 his girl friday 1940 8.10 20870 ['comedy' 'drama' 'romance'] +m91 hope and glory 1987 7.40 4965 ['drama' 'war'] +m92 house of 1000 corpses 2003 5.60 27033 ['horror'] +m93 human nature 2001 6.30 10017 ['comedy' 'drama'] +m94 the hustler 1961 8.20 25871 ['drama' 'romance' 'sport'] +m95 i am legend 2007 7.10 156084 ['drama' 'sci-fi' 'thriller'] +m96 invaders from mars 1953 6.40 2115 ['horror' 'sci-fi'] +m97 independence day 1996 6.60 151698 ['action' 'adventure' 'sci-fi' 'thriller'] +m98 indiana jones and the last crusade 1989 8.30 174947 ['action' 'adventure' 'thriller' 'action' 'adventure' 'fantasy'] +m99 indiana jones and the temple of doom 1984 7.50 112054 ['action' 'adventure'] +m100 innerspace 1987 6.50 16854 ['action' 'adventure' 'comedy' 'crime' 'sci-fi'] +m101 the insider 1999 8.00 69660 ['biography' 'drama' 'thriller'] +m102 intolerable cruelty 2003 6.40 36739 ['comedy' 'romance' 'crime'] +m103 it happened one night 1934 8.30 25577 ['comedy' 'romance'] +m104 jfk 1991 8.00 60406 ['biography' 'drama' 'history' 'mystery' 'thriller'] +m105 jackie brown 1997 7.60 85496 ['crime' 'drama' 'thriller'] +m106 jacob's ladder 1990/I 7.50 29182 ['drama' 'mystery' 'thriller'] +m107 jason x 2001 4.40 18199 ['horror' 'sci-fi'] +m108 jaws 1975 8.30 140982 ['thriller'] +m109 juno 2007 7.90 152436 ['comedy' 'drama'] +m110 kalifornia 1993 6.70 21830 ['crime' 'drama' 'thriller'] +m111 kids 1995 6.80 26546 ['crime' 'drama'] +m112 knight moves 1992 5.80 3272 ['mystery' 'thriller'] +m113 krull 1983 5.90 8246 ['fantasy' 'action' 'adventure' 'sci-fi'] +m114 léon 1994 8.60 204901 ['crime' 'drama' 'thriller'] +m115 labor of love 1998 4.50 45 [] +m116 leaving las vegas 1995 7.60 42919 ['drama' 'romance'] +m117 legally blonde 2001 6.20 44558 ['comedy'] +m118 legend 1985 6.20 20907 ['fantasy' 'adventure' 'romance'] +m119 life as a house 2001 7.50 19468 ['drama' 'romance'] +m120 the life of david gale 2003 7.30 38237 ['drama' 'crime' 'thriller'] +m121 little nicky 2000 5.00 35489 ['fantasy' 'comedy' 'romance' 'animation' 'comedy' 'fantasy' 'horror'] +m122 logan's run 1976 6.70 15152 ['action' 'sci-fi'] +m123 lost highway 1997 7.60 42998 ['drama' 'horror' 'mystery' 'thriller'] +m124 lost horizon 1937 7.80 5509 ['adventure' 'drama' 'fantasy' 'mystery'] +m125 men in black 1997 7.00 121719 ['action' 'adventure' 'comedy' 'sci-fi'] +m126 minority report 2002 7.70 137009 ['action' 'crime' 'mystery' 'sci-fi' 'thriller' 'action' 'animation' 'drama' 'mystery' 'sci-fi' 'thriller'] +m127 made 2001 6.40 9774 ['comedy' 'crime' 'drama' 'thriller'] +m128 malcolm x 1992 7.70 23317 ['biography' 'drama' 'history'] +m129 man on fire 2004 7.70 76517 ['action' 'crime' 'drama' 'thriller'] +m130 marty 1955 7.70 6379 ['drama' 'romance'] +m131 mash 1970 7.80 29358 ['comedy' 'war' 'drama'] +m132 meet john doe 1941 7.70 4841 ['comedy' 'drama' 'romance'] +m133 metro 1997 5.30 9601 ['action' 'comedy' 'crime' 'drama' 'thriller'] +m134 metropolis 1927 8.40 40730 ['adventure' 'drama' 'sci-fi'] +m135 mighty morphin power rangers 1994 8.20 35 ['action' 'family'] +m136 mobsters 1991 5.50 3574 ['crime' 'drama'] +m137 monkeybone 2001 4.50 8258 ['animation' 'comedy' 'fantasy' 'romance'] +m138 my mother dreams the satan's disciples in new york 1998 6.70 70 ['short'] +m139 mr. smith goes to washington 1939 8.40 33984 ['drama'] +m140 mr. deeds goes to town 1936 8.00 7594 ['comedy' 'romance'] +m141 mumford 1999 6.80 6333 ['comedy' 'drama'] +m142 the mummy 1999 6.90 96736 ['action' 'adventure' 'fantasy'] +m143 mystery men 1999 5.90 31817 ['action' 'comedy' 'fantasy'] +m144 napoleon 1995 5.50 486 ['family' 'adventure'] +m145 next friday 2000 5.40 10267 ['comedy'] +m146 nick of time 1995 6.20 15945 ['crime' 'drama' 'thriller'] +m147 the night of the hunter 1955 8.20 26211 ['drama' 'film-noir' 'thriller'] +m148 a nightmare on elm street 1984 7.40 47161 ['horror'] +m149 ninotchka 1939 7.90 6951 ['comedy' 'romance'] +m150 nixon 1995 7.10 13878 ['biography' 'drama'] +m151 no country for old men 2007 8.30 202649 ['crime' 'drama' 'mystery' 'thriller' 'western'] +m152 nurse betty 2000 6.40 20473 ['comedy' 'crime' 'romance' 'thriller'] +m153 o brother where art thou? 2000 7.80 95628 ['comedy' 'adventure' 'crime' 'music'] +m154 an officer and a gentleman 1982 6.80 16883 ['drama' 'romance'] +m155 panic room 2002 6.90 69824 ['thriller'] +m156 panther 1995/I 5.90 1129 ['drama'] +m157 the patriot 2000 6.90 79207 ['action' 'drama' 'war'] +m158 pet sematary 1989 6.30 19851 ['drama' 'fantasy' 'horror' 'mystery' 'thriller'] +m159 pirates of the caribbean 2003 7.20 329 ['adventure' 'fantasy' 'horror'] +m160 plastic man 1999 6.70 29 ['drama'] +m161 platinum blonde 1931 6.90 1119 ['comedy' 'romance'] +m162 pleasantville 1998 7.50 49669 ['comedy' 'drama' 'fantasy'] +m163 punch-drunk love 2002 7.40 50312 ['comedy' 'drama' 'romance'] +m164 quills 2000 7.30 22657 ['biography' 'drama' 'history' 'romance'] +m165 rko 281 1999 7.10 3543 ['biography' 'drama'] +m166 raging bull 1980 8.40 91851 ['biography' 'drama' 'sport'] +m167 rear window 1954 8.70 121165 ['crime' 'mystery' 'romance' 'thriller'] +m168 rebel without a cause 1955 7.90 27791 ['drama' 'romance'] +m169 reindeer games 2000 5.50 16951 ['action' 'crime' 'drama' 'thriller'] +m170 reservoir dogs 1992 8.40 217185 ['crime' 'mystery' 'thriller'] +m171 roughshod 1949 6.90 115 ['action' 'drama' 'romance' 'western'] +m172 scary movie 2 2001 4.70 44511 ['comedy'] +m173 serial mom 1994 6.40 11077 ['comedy' 'thriller'] +m174 the seventh victim 1943 6.90 1596 ['drama' 'horror' 'thriller'] +m175 sex lies and videotape 1989 7.10 18505 ['drama'] +m176 shivers 1975 6.50 4940 ['horror' 'sci-fi'] +m177 shock treatment 1981 5.40 1884 ['comedy' 'musical'] +m178 sideways 2004 7.80 70349 ['comedy' 'drama' 'romance'] +m179 signs 2002 6.90 113119 ['drama' 'mystery' 'sci-fi' 'thriller'] +m180 silverado 1985 7.00 14355 ['action' 'western'] +m181 simone 2010 8.30 9 ['short' 'drama' 'horror' 'thriller'] +m182 the sixth sense 1999 8.20 244162 ['drama' 'mystery' 'thriller'] +m183 slash 2002 4.20 899 ['comedy' 'horror' 'thriller'] +m184 slither 2006 6.60 26497 ['comedy' 'horror' 'sci-fi'] +m185 smokey and the bandit 1977 6.60 14147 ['action' 'comedy' 'crime' 'romance'] +m186 smokin' aces 2006 6.60 58048 ['action' 'crime' 'drama' 'thriller'] +m187 solaris 2002 6.20 33541 ['drama' 'mystery' 'romance' 'sci-fi'] +m188 someone to watch over me 1987 6.10 3909 ['action' 'crime' 'drama' 'romance' 'thriller'] +m189 spider-man 2002 7.40 169898 ['action' 'adventure' 'fantasy' 'sci-fi' 'action' 'adventure' 'sci-fi' 'thriller'] +m190 stalag 17 1953 8.20 21182 ['drama' 'war'] +m191 star trek: generations 1994 6.50 26662 ['action' 'mystery' 'sci-fi' 'thriller'] +m192 star trek iii: the search for spock 1984 6.50 22466 ['action' 'adventure' 'sci-fi' 'thriller'] +m193 star trek: the wrath of khan 1982 7.80 36503 ['action' 'adventure' 'sci-fi' 'thriller'] +m194 star trek iv: the voyage home 1986 7.30 26423 ['adventure' 'comedy' 'sci-fi'] +m195 star trek: insurrection 1998 6.30 26728 ['action' 'adventure' 'sci-fi' 'thriller'] +m196 star trek: first contact 1996 7.60 45429 ['action' 'adventure' 'sci-fi' 'thriller'] +m197 star trek vi: the undiscovered country 1991 7.20 23751 ['action' 'mystery' 'sci-fi' 'thriller'] +m198 star trek: nemesis 2002 6.40 28682 ['action' 'sci-fi' 'thriller'] +m199 starman 1984 6.90 14204 ['adventure' 'drama' 'romance' 'sci-fi'] +m200 strange days 1995 7.10 27744 ['action' 'crime' 'drama' 'fantasy' 'music' 'mystery' 'sci-fi' 'thriller'] +m201 suspect zero 2004 5.80 9914 ['crime' 'horror' 'sci-fi' 'thriller'] +m202 swingers 1996 7.60 32427 ['comedy' 'drama'] +m203 the godfather 1972 9.20 419312 ['crime' 'drama' 'thriller'] +m204 the talented mr. ripley 1999 7.20 64055 ['crime' 'drama' 'thriller'] +m205 taxi driver 1976 8.60 159525 ['drama' 'thriller'] +m206 the rock 1996 7.30 109533 ['action' 'adventure' 'thriller'] +m207 the majestic 2001 6.80 25057 ['drama' 'romance'] +m208 the birds 1963 7.90 53233 ['horror' 'romance' 'thriller'] +m209 the body snatcher 1945 7.40 2927 ['drama' 'horror' 'thriller'] +m210 the crow: salvation 2000 4.70 4566 ['action' 'crime' 'fantasy' 'mystery' 'thriller'] +m211 the day the earth stood still 2008 5.50 52489 ['drama' 'sci-fi' 'thriller'] +m212 the lost boys 1987 7.00 34826 ['comedy' 'fantasy' 'horror' 'thriller'] +m213 the thing 1982 8.20 80904 ['horror' 'mystery' 'sci-fi' 'thriller'] +m214 the time machine 2002 5.70 32900 ['sci-fi' 'adventure' 'action'] +m215 the jacket 2005 7.10 36581 ['drama' 'fantasy' 'mystery' 'sci-fi' 'thriller'] +m216 thelma & louise 1991 7.30 44372 ['crime' 'drama' 'thriller'] +m217 there's something about mary 1998 7.20 97546 ['comedy' 'romance'] +m218 thirteen days 2000 7.30 23732 ['drama' 'history' 'thriller'] +m219 thunderheart 1992 6.60 6662 ['crime' 'mystery' 'thriller' 'western'] +m220 top gun 1986 6.50 81087 ['action' 'drama' 'romance'] +m221 total recall 1990 7.40 71383 ['action' 'adventure' 'sci-fi' 'thriller'] +m222 tremors 1990 7.10 30553 ['action' 'comedy' 'horror' 'thriller'] +m223 true believer 1989 6.70 1801 ['drama' 'crime'] +m224 twin peaks: fire walk with me 1992 7.00 21274 ['drama' 'horror' 'mystery' 'thriller'] +m225 the verdict 1982 7.70 10991 ['drama'] +m226 the war of the worlds 1953 7.10 12239 ['action' 'horror' 'sci-fi' 'thriller'] +m227 new nightmare 1994 6.30 14975 ['fantasy' 'horror' 'mystery' 'thriller'] +m228 white squall 1996 6.40 8465 ['adventure' 'drama'] +m229 wild at heart 1990 7.20 29388 ['crime' 'romance' 'thriller'] +m230 wonder boys 2000 7.50 31853 ['drama' 'comedy'] +m231 the woodsman 2004 7.40 16090 ['drama'] +m232 the abyss 1989 7.60 51699 ['action' 'adventure' 'drama' 'sci-fi' 'thriller'] +m233 l'avventura 1960 7.90 6963 ['drama' 'mystery'] +m234 agnes of god 1985 6.50 3490 ['drama' 'mystery' 'thriller'] +m235 a hard day's night 1964 7.60 15431 ['comedy' 'music'] +m236 alien 1979 8.50 184471 ['adventure' 'horror' 'sci-fi' 'thriller'] +m237 alien vs. predator 1993 7.80 116 ['action' 'adventure' 'sci-fi'] +m238 all about eve 1950 8.50 35597 ['drama'] +m239 all the president's men 1976 8.00 32717 ['drama' 'history' 'thriller'] +m240 american pie 1999 6.90 107961 ['comedy' 'romance'] +m241 an american werewolf in paris 1997 4.90 10158 ['horror' 'romance' 'thriller' 'comedy'] +m242 anastasia 1997 6.60 16844 ['animation' 'adventure' 'drama' 'family' 'musical' 'animation' 'family'] +m243 annie hall 1977 8.30 66781 ['comedy' 'drama' 'romance'] +m244 the anniversary party 2001 6.20 5809 ['drama' 'comedy'] +m245 antz 1998 6.80 37825 ['animation' 'adventure' 'comedy' 'family'] +m246 the apartment 1960 8.40 37301 ['romance' 'comedy' 'drama'] +m247 apocalypse now 1979 8.60 176465 ['drama' 'war'] +m248 arctic blue 1993 4.80 464 ['action' 'thriller'] +m249 as good as it gets 1997 7.80 93201 ['comedy' 'drama' 'romance'] +m250 assassins 1995 6.00 23681 ['action' 'thriller' 'crime'] +m251 asylum 2005 6.10 2395 ['drama' 'romance' 'thriller'] +m252 a walk to remember 2002 7.10 38751 ['drama' 'romance'] +m253 back to the future 1985 8.40 207376 ['adventure' 'family' 'sci-fi'] +m254 badlands 1973 7.90 16753 ['crime' 'drama' 'romance' 'thriller'] +m255 the adventures of buckaroo banzai across the 8th dimension 1984 6.00 10046 ['adventure' 'romance' 'comedy' 'sci-fi'] +m256 barton fink 1991 7.80 33119 ['drama' 'mystery' 'thriller'] +m257 basic instinct 1992 6.90 57615 ['mystery' 'romance' 'thriller'] +m258 basquiat 1996 6.70 8016 ['biography' 'drama'] +m259 batman returns 1992 6.90 79770 ['action' 'crime' 'fantasy' 'thriller' 'animation' 'crime' 'fantasy' 'action' 'thriller'] +m260 batman and robin 1949 6.50 443 ['action' 'adventure' 'crime' 'drama' 'sci-fi'] +m261 batman forever 1995 5.40 77223 ['action' 'crime' 'fantasy' 'thriller'] +m262 batman 1989 7.60 112731 ['crime' 'drama' 'thriller' 'action' 'adventure' 'crime'] +m263 bean 1997 5.80 27131 ['comedy' 'family'] +m264 beavis and butt-head do america 1996 6.60 23149 ['animation' 'adventure' 'comedy' 'crime'] +m265 beetle juice 1988 7.30 62164 ['comedy' 'fantasy'] +m266 being there 1979 8.00 25085 ['drama' 'comedy'] +m267 being john malkovich 1999 7.90 115008 ['comedy' 'drama' 'fantasy' 'romance'] +m268 beloved 1998/I 5.60 4014 ['drama' 'mystery'] +m269 the big lebowski 1998 8.20 182170 ['comedy' 'crime' 'mystery'] +m270 the black dahlia 2006 5.60 35706 ['crime' 'drama' 'history' 'mystery' 'thriller'] +m271 blade ii 2002 6.60 51826 ['action' 'fantasy' 'horror' 'thriller' 'action' 'adventure' 'horror'] +m272 blade 1998 7.00 65885 ['action' 'adventure' 'fantasy' 'horror' 'thriller'] +m273 book of shadows: blair witch 2 2000 4.10 16285 ['crime' 'horror' 'mystery' 'thriller'] +m274 blood simple. 1984 7.80 28901 ['crime' 'drama' 'thriller'] +m275 bloodmoon 1997 4.50 269 ['action' 'thriller'] +m276 blow 2001 7.40 71334 ['biography' 'crime' 'drama'] +m277 la battaglia di algeri 1966 8.20 14339 ['drama' 'history' 'war'] +m278 body of evidence 1993 4.10 6052 ['drama' 'romance' 'thriller'] +m279 the bridges of madison county 1995 7.20 22252 ['drama' 'romance'] +m280 bones 2001 4.00 3525 ['crime' 'horror'] +m281 bound 1996 7.50 23772 ['crime' 'drama' 'thriller'] +m282 the bourne identity 2002 7.70 124918 ['action' 'adventure' 'mystery' 'thriller'] +m283 brazil 1985 8.00 77350 ['drama' 'fantasy' 'sci-fi'] +m284 bringing out the dead 1999 6.80 31285 ['drama' 'thriller'] +m285 broadcast news 1987 7.10 10559 ['comedy' 'drama' 'romance'] +m286 a bucket of blood 1959 6.80 1892 ['comedy' 'horror'] +m287 buffy the vampire slayer 1992 5.30 16206 ['horror' 'comedy' 'action'] +m288 bull durham 1988 7.00 18941 ['comedy' 'romance' 'sport'] +m289 casino 1995 8.10 111223 ['biography' 'crime' 'drama'] +m290 catwoman 2004 3.20 35065 ['action' 'crime' 'fantasy'] +m291 cellular 2004 6.50 32920 ['action' 'crime' 'thriller'] +m292 the crying game 1992 7.30 21394 ['drama' 'thriller'] +m293 charade 1963 8.00 22815 ['comedy' 'mystery' 'romance' 'thriller'] +m294 cherry falls 2000 4.80 5669 ['horror' 'mystery' 'thriller'] +m295 chill factor 1999 4.90 5381 ['action' 'adventure' 'comedy' 'thriller'] +m296 chinatown 1974 8.50 80698 ['crime' 'drama' 'mystery' 'thriller'] +m297 nuovo cinema paradiso 1988 8.50 46801 ['comedy' 'drama' 'romance'] +m298 citizen kane 1941 8.60 140517 ['drama' 'mystery'] +m299 clerks. 1994 8.00 90972 ['comedy'] +m300 cliffhanger 1993 6.20 34880 ['action' 'adventure' 'thriller'] +m301 a clockwork orange 1971 8.50 197372 ['crime' 'drama' 'sci-fi'] +m302 collateral 2004 7.80 106866 ['crime' 'drama' 'thriller'] +m303 conspiracy theory 1997 6.50 36045 ['action' 'crime' 'mystery' 'romance' 'thriller'] +m304 contact 1997 7.40 75043 ['drama' 'mystery' 'sci-fi' 'thriller'] +m305 cool hand luke 1967 8.30 46514 ['crime' 'drama'] +m306 copycat 1995 6.50 17335 ['crime' 'mystery' 'thriller'] +m307 crash 2004/I 8.00 174003 ['crime' 'drama'] +m308 crazy love 2007/I 7.00 944 ['documentary'] +m309 crime spree 2003 6.40 3129 ['action' 'comedy' 'crime'] +m310 crouching tiger hidden dragon 2003 8.00 1091 ['action'] +m311 the crow 1994 7.60 55886 ['action' 'crime' 'fantasy' 'thriller'] +m312 cruel intentions 1999 6.70 67532 ['drama' 'romance' 'thriller'] +m313 the curse of the cat people 1944 6.90 2067 ['drama' 'fantasy' 'horror'] +m314 the curse 1987 4.50 627 ['sci-fi' 'horror'] +m315 dark city 1998 7.80 64262 ['mystery' 'sci-fi' 'thriller'] +m316 dave 1993 6.80 20807 ['comedy' 'romance'] +m317 day of the dead 1985 7.00 22746 ['horror' 'sci-fi'] +m318 dead poets society 1989 7.80 90842 ['drama'] +m319 deep rising 1998 5.70 12638 ['action' 'horror' 'sci-fi' 'thriller'] +m320 the deer hunter 1978 8.20 89841 ['drama' 'war'] +m321 demolition man 1993 6.30 46318 ['action' 'crime' 'sci-fi'] +m322 the devil and daniel webster 2004 5.70 1824 ['comedy' 'drama' 'fantasy'] +m323 die hard 1988 8.30 185430 ['action' 'crime' 'thriller'] +m324 dog day afternoon 1975 8.20 61120 ['crime' 'drama'] +m325 domino 2005 5.90 32949 ['action' 'crime' 'drama' 'thriller'] +m326 do the right thing 1989 7.90 27164 ['drama'] +m327 dumb and dumberer: when harry met lloyd 2003 3.30 14984 ['comedy'] +m328 dune 1984 6.50 38954 ['action' 'adventure' 'sci-fi'] +m329 ed wood 1994 8.10 75704 ['biography' 'comedy' 'drama'] +m330 edtv 1999 6.10 21865 ['comedy'] +m331 election 1999 7.40 37868 ['comedy' 'drama'] +m332 l.a. confidential 1997 8.40 168009 ['crime' 'drama' 'mystery' 'thriller'] +m333 enemy of the state 1998 7.20 67504 ['action' 'drama' 'thriller'] +m334 the english patient 1996 7.30 55247 ['romance' 'drama' 'war'] +m335 entrapment 1999 6.10 41120 ['action' 'crime' 'romance' 'thriller'] +m336 erin brockovich 2000 7.20 55641 ['biography' 'drama' 'romance'] +m337 star wars: the empire strikes back 1982 8.00 42 ['animation' 'adventure' 'action' 'fantasy'] +m338 escape from the planet of the apes 1971 6.10 7754 ['sci-fi' 'thriller'] +m339 escape from l.a. 1996 5.30 23551 ['action' 'adventure' 'sci-fi' 'thriller'] +m340 excalibur 1981 7.40 24550 ['adventure' 'drama' 'fantasy'] +m341 the exorcist 1973 8.10 106383 ['horror' 'thriller'] +m342 the fabulous baker boys 1989 6.70 9433 ['drama' 'music' 'romance'] +m343 face/off 1997 7.30 103386 ['action' 'crime' 'drama' 'sci-fi' 'thriller'] +m344 the family man 2000 6.60 34509 ['comedy' 'fantasy' 'drama' 'romance'] +m345 the fantastic four 1994 3.80 1472 ['action' 'adventure' 'sci-fi' 'fantasy'] +m346 fantastic voyage 1966 6.80 5231 ['adventure' 'sci-fi'] +m347 fargo 1996 8.30 168176 ['crime' 'drama' 'thriller'] +m348 fight club 1999 8.80 391697 ['crime' 'drama' 'mystery' 'thriller'] +m349 final destination 2 2003 6.40 36312 ['horror' 'thriller'] +m350 final destination 2000 6.80 53422 ['horror' 'thriller'] +m351 rambo: first blood part ii 1985 5.80 39147 ['action' 'adventure' 'thriller'] +m352 the fisher king 1991 7.50 28310 ['comedy' 'drama' 'romance'] +m353 five easy pieces 1970 7.50 11969 ['drama'] +m354 five feet high and rising 2000 6.50 326 ['short'] +m355 fletch 1985 6.70 17336 ['comedy' 'crime' 'mystery'] +m356 the adventures of ford fairlane 1990 5.60 9051 ['action' 'adventure' 'comedy' 'music'] +m357 the french connection 1971 7.90 34062 ['action' 'crime' 'thriller'] +m358 frequency 2000 7.30 36396 ['crime' 'drama' 'sci-fi' 'thriller'] +m359 friday the 13th part iii 1982 5.10 11718 ['horror'] +m360 jason lives: friday the 13th part vi 1986 5.30 9919 ['comedy' 'horror' 'thriller'] +m361 jason goes to hell: the final friday 1993 4.10 8894 ['horror' 'thriller'] +m362 friday the 13th part viii: jason takes manhattan 1989 3.90 10288 ['horror'] +m363 game 6 2005 6.00 1414 ['comedy' 'drama' 'sport'] +m364 gandhi 1982 8.20 52160 ['biography' 'drama' 'history'] +m365 gattaca 1997 7.80 72063 ['drama' 'romance' 'sci-fi' 'thriller'] +m366 the getaway 1972 7.50 10151 ['action' 'adventure' 'crime' 'thriller'] +m367 get carter 2000 4.80 14319 ['action' 'crime' 'drama' 'thriller'] +m368 glengarry glen ross 1992 7.90 32882 ['drama'] +m369 the godfather: part ii 1974 9.00 251290 ['crime' 'drama' 'thriller'] +m370 gods and monsters 1998 7.50 16063 ['biography' 'drama'] +m371 gone in sixty seconds 2000 6.00 74474 ['action' 'crime' 'thriller'] +m372 goodfellas 1990 8.80 234582 ['crime' 'drama' 'thriller'] +m373 good will hunting 1997 8.10 154419 ['drama'] +m374 the grapes of wrath 1940 8.30 23850 ['drama'] +m375 grosse pointe blank 1997 7.40 41877 ['comedy' 'crime' 'romance' 'thriller'] +m376 the horse whisperer 1998 6.40 15953 ['drama' 'romance' 'western'] +m377 hackers 1995 5.80 27009 ['action' 'crime' 'drama' 'thriller'] +m378 halloween 4: the return of michael myers 1988 5.60 11315 ['horror' 'thriller'] +m379 halloween 1978 7.90 64690 ['horror' 'thriller'] +m380 hannah and her sisters 1986 7.90 21088 ['comedy' 'drama' 'romance'] +m381 hannibal 2001 6.40 75788 ['crime' 'thriller'] +m382 happy campers 2001 5.40 1785 ['comedy'] +m383 heathers 1989 7.30 25236 ['comedy' 'crime'] +m384 heavenly creatures 1994 7.60 27211 ['crime' 'drama' 'fantasy' 'thriller'] +m385 hellraiser: hellseeker 2002 4.90 3400 ['horror' 'mystery' 'thriller'] +m386 hero 1992/I 6.30 10573 ['comedy' 'drama'] +m387 hider in the house 1989 5.60 394 ['thriller'] +m388 highlander iii: the sorcerer 1994 3.90 7831 ['fantasy' 'sci-fi' 'action'] +m389 hostage 2005/I 6.60 37868 ['action' 'crime' 'drama' 'thriller'] +m390 hotel rwanda 2004 8.30 94404 ['adventure' 'drama' 'history' 'thriller' 'war'] +m391 house on haunted hill 1999 5.30 23127 ['horror' 'mystery' 'thriller'] +m392 house of the damned 1996 4.30 216 ['action' 'horror' 'thriller'] +m393 hellraiser iii: hell on earth 1992 5.10 7716 ['horror'] +m394 hudson hawk 1991 5.40 22116 ['action' 'adventure' 'comedy' 'action' 'adventure' 'comedy' 'crime'] +m395 the hudsucker proxy 1994 7.40 32691 ['comedy' 'drama' 'fantasy' 'romance'] +m396 i walked with a zombie 1943 7.30 3420 ['horror'] +m397 the ice storm 1997 7.50 27724 ['drama'] +m398 insomnia 2002/I 7.30 69635 ['crime' 'drama' 'mystery' 'thriller'] +m399 interview with the vampire: the vampire chronicles 1994 7.40 80077 ['drama' 'fantasy'] +m400 i still know what you did last summer 1998 4.10 23543 ['horror' 'mystery' 'thriller'] +m401 isle of the dead 1945 6.60 1405 ['drama' 'horror' 'mystery' 'thriller'] +m402 it's a wonderful life 1946 8.70 103290 ['drama' 'fantasy' 'romance'] +m403 jaws 2 1978 5.60 18995 ['thriller'] +m404 jaws 3-d 1983 3.30 12839 ['thriller'] +m405 jaws: the revenge 1987 2.60 15727 ['thriller'] +m406 the jazz singer 1927 6.80 3252 ['drama' 'music' 'romance'] +m407 jennifer eight 1992 6.20 6224 ['thriller' 'mystery'] +m408 jerry maguire 1996 7.30 79706 ['comedy' 'drama' 'romance' 'sport'] +m409 jurassic park iii 2001 5.70 62564 ['action' 'adventure' 'sci-fi' 'thriller'] +m410 the lost world: jurassic park 1997 6.00 78169 ['action' 'adventure' 'sci-fi' 'thriller' 'action' 'adventure' 'animation' 'horror' 'sci-fi' 'thriller'] +m411 jurassic park 1993 7.90 153737 ['action' 'adventure' 'family' 'sci-fi' 'action' 'adventure' 'fantasy' 'sci-fi'] +m412 freddy vs. jason 2003 5.80 39850 ['horror' 'thriller'] +m413 kafka 1991 6.90 4467 ['comedy' 'drama' 'mystery' 'sci-fi' 'thriller'] +m414 king kong 2005 7.60 134187 ['adventure' 'drama' 'romance'] +m415 klute 1971 7.20 6901 ['mystery' 'romance' 'thriller'] +m416 kramer vs. kramer 1979 7.70 25836 ['drama'] +m417 kundun 1997 7.10 10378 ['biography' 'drama' 'history' 'war'] +m418 lake placid 1999 5.40 19621 ['action' 'comedy' 'horror' 'thriller'] +m419 the silence of the lambs 1991 8.70 251237 ['crime' 'thriller'] +m420 last of the mohicans 1977 7.30 71 ['action' 'adventure' 'war'] +m421 leviathan 1989 5.30 4751 ['adventure' 'horror' 'mystery' 'sci-fi' 'thriller'] +m422 lock stock and two smoking barrels 1998 8.20 129117 ['crime' 'thriller'] +m423 lone star 1996 7.60 14666 ['drama' 'mystery' 'romance' 'western'] +m424 lord of illusions 1995 5.60 5031 ['fantasy' 'horror' 'mystery' 'thriller'] +m425 lost in translation 2003 7.90 132645 ['drama' 'romance'] +m426 lost souls 2000 4.60 6663 ['drama' 'horror' 'thriller' 'romance'] +m427 love & basketball 2000 6.70 5907 ['drama' 'romance' 'sport'] +m428 magnolia 1999 8.00 123476 ['drama'] +m429 the man in the iron mask 1998/I 6.10 36684 ['action' 'adventure' 'drama' 'history'] +m430 manhunt 2003 8.70 736 ['action' 'adventure' 'crime' 'horror' 'thriller'] +m431 manhunter 1986 7.20 21649 ['crime' 'thriller'] +m432 man on the moon 1999 7.40 49915 ['biography' 'comedy' 'drama'] +m433 the matrix 1999 8.70 389480 ['action' 'adventure' 'adventure' 'adventure' 'sci-fi'] +m434 halloween iii: season of the witch 1982 3.80 13037 ['horror' 'mystery' 'sci-fi'] +m435 meet joe black 1998 6.90 56839 ['drama' 'fantasy' 'mystery' 'romance'] +m436 memento 2000 8.70 281027 ['crime' 'drama' 'mystery' 'thriller'] +m437 miami vice 2006 6.00 52448 ['action' 'crime' 'drama' 'thriller'] +m438 midnight cowboy 1969 8.00 34405 ['drama'] +m439 midnight express 1978 7.60 24103 ['biography' 'crime' 'drama' 'thriller'] +m440 mimic 1997 5.70 14916 ['drama' 'horror' 'sci-fi'] +m441 misery 1990 7.80 41563 ['thriller'] +m442 mission: impossible ii 2000 5.70 86452 ['action' 'adventure' 'thriller'] +m443 mission: impossible 1996 6.90 87677 ['action' 'adventure' 'thriller'] +m444 moonstruck 1987 7.10 15879 ['comedy' 'romance' 'drama'] +m445 monty python and the holy grail 1975 8.40 157683 ['adventure' 'comedy'] +m446 mrs brown 1997 7.20 5701 ['biography' 'drama' 'history' 'romance'] +m447 arcade 1993 4.60 668 ['sci-fi'] +m448 mulholland dr. 2001 8.00 105859 ['drama' 'mystery' 'thriller'] +"m449 ""murderland"" 2009 5.80 88 ['crime' 'drama' 'mystery']" +m450 my girl 2 1994 4.80 5689 ['comedy' 'drama' 'family' 'romance'] +m451 my girl 1991 6.40 17967 ['comedy' 'drama' 'family' 'romance'] +m452 my best friend's wedding 1997 6.20 37682 ['comedy' 'romance'] +m453 nashville 1975 7.70 9315 ['drama' 'music'] +m454 natural born killers 1994 7.10 73047 ['action' 'crime' 'drama' 'romance' 'thriller'] +m455 nothing but a man 1964 7.80 448 ['drama' 'romance'] +m456 the negotiator 1998 7.20 46983 ['action' 'crime' 'drama' 'mystery' 'thriller'] +m457 neuromancer 1988 9.30 48 ['action' 'adventure' 'animation' 'sci-fi'] +m458 never been kissed 1999 5.70 27409 ['comedy' 'drama' 'romance'] +m459 the nightmare before christmas 1993 8.00 81753 ['animation' 'family' 'fantasy' 'musical'] +m460 a nightmare on elm street part 2: freddy's revenge 1985 4.90 16582 ['fantasy' 'horror' 'thriller'] +m461 a nightmare on elm street 3: dream warriors 1987 6.30 17734 ['fantasy' 'horror' 'thriller'] +m462 notting hill 1999 6.90 67217 ['comedy' 'romance'] +m463 one flew over the cuckoo's nest 1975 8.90 219739 ['drama'] +m464 only you 1994 6.20 6620 ['comedy' 'romance'] +m465 on the waterfront 1954 8.40 42010 ['crime' 'drama' 'romance'] +m466 orgy of the dead 1965 2.50 1395 ['fantasy' 'horror'] +m467 out of sight 1998 7.20 38595 ['comedy' 'crime' 'romance' 'thriller'] +m468 pearl harbor 2001 5.40 97519 ['action' 'drama' 'romance' 'war'] +m469 peggy sue got married 1986 6.30 12574 ['comedy' 'drama' 'fantasy' 'romance'] +m470 pet sematary ii 1992 4.20 6014 ['action' 'horror' 'thriller'] +m471 philadelphia 1993 7.60 54221 ['drama'] +m472 pitch black 2000 7.00 55982 ['action' 'sci-fi' 'thriller'] +m473 planet of the apes 2001 5.50 73596 ['action' 'adventure' 'sci-fi' 'thriller' 'animation' 'action' 'adventure' 'sci-fi'] +m474 platoon 1986 8.20 110867 ['action' 'drama' 'war'] +m475 playback 1996 3.60 164 ['thriller'] +m476 the ploughman's lunch 1983 6.80 154 ['drama'] +m477 point break 1991 6.90 37722 ['action' 'adventure' 'crime' 'drama' 'sport' 'thriller'] +m478 predator 1987 7.80 90730 ['action' 'adventure' 'sci-fi' 'thriller'] +m479 pretty woman 1990 6.70 61642 ['comedy' 'romance'] +m480 the princess bride 1987 8.10 125281 ['adventure' 'comedy' 'family' 'fantasy' 'romance'] +m481 the producers 1968 7.70 19432 ['comedy'] +m482 psycho 1960 8.70 146915 ['drama' 'horror' 'mystery' 'thriller' 'thriller'] +m483 maniac 1980 6.20 3382 ['drama' 'horror' 'thriller'] +m484 vampyr 1932 7.60 4005 ['fantasy' 'horror'] +m485 mystery of the wax museum 1933 6.80 1740 ['horror' 'mystery' 'thriller'] +m486 quantum project 2000 4.80 47 ['short' 'adventure' 'drama' 'romance'] +m487 rambling rose 1991 6.60 2631 ['drama'] +m488 red white black & blue 2006 6.30 37 ['documentary'] +m489 star wars: episode vi - return of the jedi 1983 8.30 215058 ['action' 'adventure' 'fantasy' 'sci-fi'] +m490 the rocky horror picture show 1975 7.10 42713 ['comedy' 'musical'] +m491 rocky 1976 8.10 100022 ['drama' 'romance' 'sport'] +m492 who framed roger rabbit 1988 7.60 54375 ['animation' 'comedy' 'crime' 'family' 'fantasy' 'mystery' 'animation' 'adventure' 'action' 'fantasy'] +m493 romeo and juliet 1968/I 7.80 12360 ['drama' 'romance'] +m494 ronin 1998 7.20 58201 ['action' 'crime' 'thriller'] +m495 route 9 1998 6.00 557 ['crime' 'drama'] +m496 rush hour 2 2001 6.50 52716 ['action' 'comedy' 'crime' 'thriller'] +m497 rush hour 1998 6.80 56376 ['action' 'comedy' 'thriller' 'crime'] +m498 runaway bride 1999 5.20 28793 ['comedy' 'romance'] +m499 sleepless in seattle 1993 6.60 44179 ['comedy' 'romance' 'drama'] +m500 salt of the earth 1954 7.60 1085 ['drama' 'history'] +m501 the salton sea 2002 7.10 16669 ['crime' 'drama' 'mystery' 'thriller'] +m502 saving private ryan 1998 8.50 275666 ['action' 'drama' 'history' 'war'] +m503 say anything... 1989 7.50 25220 ['comedy' 'drama' 'romance'] +m504 schindler's list 1993 8.90 282473 ['biography' 'drama' 'history' 'war'] +m505 scream 2 1997 5.90 48988 ['horror' 'mystery' 'thriller'] +m506 scream 3 2000 5.30 38870 ['horror' 'mystery' 'thriller'] +m507 scream 1996/I 7.20 92543 ['crime' 'horror' 'mystery' 'thriller'] +m508 seven 1979 6.10 259 ['action' 'drama'] +m509 the searchers 1956 8.10 30138 ['adventure' 'drama' 'western'] +m510 seven days to live 2000 5.20 1150 ['drama' 'horror' 'thriller'] +m511 shakespeare in love 1998 7.40 78654 ['comedy' 'drama' 'romance'] +m512 shallow grave 1994 7.40 21611 ['comedy' 'crime' 'drama' 'thriller'] +m513 shampoo 1975 6.20 4406 ['drama' 'romance'] +m514 the shining 1980 8.50 182077 ['horror' 'mystery' 'thriller'] +m515 silver bullet 1985 5.90 6498 ['adventure' 'drama' 'horror' 'mystery' 'thriller'] +m516 sister act 1992 5.90 25196 ['comedy' 'crime' 'music'] +m517 sleepy hollow 1999 7.50 108951 ['fantasy' 'mystery' 'thriller'] +m518 sling blade 1996 8.00 42087 ['drama'] +m519 smoke 1995 7.50 15482 ['comedy' 'drama'] +m520 snow falling on cedars 1999 6.70 8483 ['drama' 'mystery' 'romance' 'thriller'] +m521 soldier 1998/I 5.60 16446 ['action' 'drama' 'sci-fi'] +m522 some like it hot 1959 8.40 68749 ['comedy'] +m523 the wedding date 2005 5.50 12340 ['comedy' 'romance'] +m524 sounder 1972 7.80 1298 ['drama'] +m525 south park: bigger longer & uncut 1999 7.80 80257 ['animation' 'comedy' 'musical'] +m526 spacejacked 1997 2.90 105 ['action' 'sci-fi'] +m527 spare me 1992 5.80 26 ['thriller'] +m528 sphere 1998 5.60 31924 ['drama' 'horror' 'mystery' 'sci-fi' 'thriller'] +m529 star wars 1977 8.80 326619 ['action' 'adventure' 'fantasy' 'sci-fi'] +m530 starship troopers 1997 7.10 84874 ['action' 'adventure' 'sci-fi' 'thriller'] +m531 star trek: the motion picture 1979 6.20 25723 ['adventure' 'fantasy' 'mystery' 'sci-fi'] +m532 state and main 2000 6.80 13163 ['comedy' 'drama'] +m533 stepmom 1998 6.20 18714 ['comedy' 'drama'] +m534 storytelling 2001 6.70 9677 ['comedy' 'drama'] +m535 stranglehold 2007 8.60 907 ['action' 'adventure' 'crime'] +m536 dr. strangelove or: how i learned to stop worrying and love the bomb 1964 8.60 158529 ['comedy' 'drama'] +m537 suburbia 1996 6.50 4552 ['comedy' 'drama'] +m538 sugar & spice 2001 5.20 6981 ['comedy' 'crime'] +m539 sunset blvd. 1950 8.70 55994 ['drama' 'film-noir'] +m540 supergirl 1984 4.10 6576 ['action' 'adventure' 'sci-fi'] +m541 superman iii 1983 4.70 18340 ['action' 'adventure' 'comedy' 'fantasy' 'sci-fi'] +m542 superman ii 1980 6.70 29941 ['action' 'adventure' 'fantasy' 'romance' 'sci-fi'] +m543 superman iv: the quest for peace 1987 3.40 15332 ['action' 'adventure' 'family' 'fantasy' 'sci-fi'] +m544 superman 1978 7.30 51172 ['action' 'family' 'sci-fi'] +m545 the sweet hereafter 1997 7.80 16463 ['drama'] +m546 sweet smell of success 1957 8.20 9014 ['drama' 'film-noir'] +m547 terminator 2: judgment day 1991 8.50 243230 ['action' 'sci-fi' 'thriller'] +m548 taking sides 2001 7.20 1950 ['drama' 'music' 'war'] +m549 the terminator 1984 8.10 183538 ['action' 'sci-fi' 'thriller'] +m550 the game 1997 7.70 75861 ['drama' 'mystery' 'thriller'] +m551 the haunting 1999 4.60 32086 ['horror' 'thriller' 'mystery'] +m552 the limey 1999 7.00 15465 ['crime' 'drama' 'mystery' 'thriller'] +m553 the man who wasn't there 2001 7.70 41452 ['crime' 'drama'] +m554 the relic 1997 5.40 10340 ['horror' 'mystery' 'thriller'] +m555 the truman show 1998 8.00 160825 ['drama'] +m556 the x files 1998 6.80 39090 ['crime' 'horror' 'mystery' 'sci-fi' 'thriller'] +m557 the cell 2000 6.20 37417 ['drama' 'fantasy' 'horror' 'sci-fi' 'thriller'] +m558 the third man 1949 8.50 51872 ['film-noir' 'mystery' 'thriller'] +m559 the beach 2000/I 6.30 55734 ['adventure' 'drama' 'romance' 'thriller'] +m560 the believer 2001 7.30 11345 ['drama'] +m561 le grand bleu 1988 7.40 18313 ['adventure' 'drama' 'romance'] +m562 the hebrew hammer 2003 6.20 2900 ['comedy'] +m563 the leopard man 1943 6.90 1518 ['drama' 'horror' 'mystery' 'thriller'] +m564 the lost son 1999 6.50 911 ['crime' 'drama' 'romance' 'thriller'] +m565 the messenger 2009/I 7.40 9224 ['drama' 'romance' 'war'] +m566 the pianist 2002 8.50 138080 ['biography' 'drama' 'war'] +m567 the piano 1993 7.50 28525 ['drama' 'romance'] +m568 the sting 1973 8.40 67231 ['comedy' 'crime' 'drama'] +m569 the thin man 1934 8.10 11936 ['comedy' 'crime' 'drama' 'mystery' 'romance'] +m570 three kings 1999 7.30 69757 ['action' 'adventure' 'comedy' 'drama' 'war'] +m571 thx 1138 1971 6.80 15741 ['drama' 'mystery' 'sci-fi' 'thriller'] +m572 ticker 2001 3.30 3933 ['action' 'thriller' 'crime'] +m573 trouble in paradise 1932 8.20 4781 ['comedy' 'crime' 'romance'] +m574 titanic 1997 7.40 244771 ['drama' 'history' 'romance'] +m575 transatlantic merry-go-round 1934 6.90 53 ['comedy' 'musical' 'mystery' 'romance'] +m576 tombstone 1993 7.70 44204 ['action' 'drama' 'history' 'romance' 'western'] +m577 tomorrow never dies 1997 6.40 47198 ['action' 'adventure' 'thriller'] +m578 to sleep with anger 1990 6.80 490 ['drama'] +m579 toy story 1995 8.20 156231 ['animation' 'adventure' 'comedy' 'family' 'fantasy'] +m580 the magic toyshop 1987 6.20 90 ['fantasy'] +m581 traffic 2000 7.80 86662 ['crime' 'drama' 'thriller'] +m582 trainspotting 1996 8.20 153782 ['crime' 'drama'] +m583 star trek v: the final frontier 1989 5.00 20749 ['action' 'adventure' 'sci-fi' 'thriller'] +m584 tron 1982 6.70 25903 ['action' 'adventure' 'sci-fi' 'thriller' 'sci-fi'] +m585 true lies 1994 7.20 81801 ['action' 'thriller'] +m586 true romance 1993 7.90 74762 ['crime' 'romance' 'thriller'] +m587 twelve monkeys 1995 8.10 173320 ['mystery' 'sci-fi' 'thriller'] +m588 u-turn 1973 5.80 37 ['drama'] +m589 u turn 1997 6.70 25388 ['crime' 'drama' 'thriller'] +m590 unbreakable 2000 7.30 98767 ['drama' 'fantasy' 'mystery' 'thriller'] +m591 unforgiven 1992 8.30 101270 ['drama' 'western'] +m592 the usual suspects 1995 8.70 272137 ['crime' 'mystery' 'thriller'] +m593 verdict 1974 5.70 135 ['drama'] +m594 vertigo 1958 8.60 93524 ['crime' 'mystery' 'romance' 'thriller'] +m595 very bad things 1998 6.00 22977 ['comedy' 'crime' 'thriller'] +m596 viridiana 1961 8.20 6288 ['drama'] +m597 virtuosity 1995 5.30 11191 ['action' 'crime' 'sci-fi' 'thriller'] +m598 wag the dog 1997 7.10 36448 ['comedy' 'drama'] +m599 wall street 1987 7.30 39082 ['crime' 'drama'] +m600 waxwork 1988 6.00 2596 ['comedy' 'fantasy' 'horror'] +m601 what lies beneath 2000 6.50 46195 ['drama' 'horror' 'mystery' 'thriller'] +m602 what women want 2000 6.30 55269 ['comedy' 'fantasy' 'romance'] +m603 the witching hour 1996 6.50 69 ['documentary' 'short'] +m604 white angel 1994 4.40 99 ['drama' 'thriller'] +m605 who's your daddy? 2003/I 4.50 2267 ['comedy'] +m606 wild things 1998 6.60 40523 ['crime' 'mystery' 'thriller'] +m607 wild wild west 1999 4.30 54943 ['action' 'western' 'comedy' 'sci-fi'] +m608 willow 1988 7.10 33506 ['action' 'adventure' 'drama' 'fantasy' 'romance'] +m609 witness 1985 7.60 30705 ['drama' 'romance' 'thriller'] +m610 the wizard of oz 1939 8.30 104873 ['adventure' 'family' 'fantasy' 'musical'] +m611 the world is not enough 1999 6.30 60047 ['action' 'adventure' 'thriller'] +m612 watchmen 2009 7.80 135229 ['action' 'crime' 'fantasy' 'mystery' 'sci-fi' 'thriller'] +m613 xxx 2002 5.60 53505 ['action' 'adventure' 'crime'] +m614 x-men 2000 7.40 122149 ['action' 'sci-fi'] +m615 young frankenstein 1974 8.00 57618 ['comedy' 'sci-fi'] +m616 zulu dawn 1979 6.40 1911 ['action' 'adventure' 'drama' 'history' 'war'] diff --git a/Python_For_ML/Week_4/Conceptual Session/CS-1/test.csv b/Python_For_ML/Week_4/Conceptual Session/CS-1/test.csv new file mode 100644 index 0000000..1cb4059 --- /dev/null +++ b/Python_For_ML/Week_4/Conceptual Session/CS-1/test.csv @@ -0,0 +1,6 @@ +,,,,,,,,,,,,,, +0,enrollee_id,city,city_development_index,gender,relevent_experience,enrolled_university,education_level,major_discipline,experience,company_size,company_type,last_new_job,training_hours,target +1,29725,city_40,0.776,Male,No relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,47,0 +2,11561,city_21,0.624,NaN,No relevent experience,Full time course,Graduate,STEM,5,NaN,NaN,never,83,0 +3,33241,city_115,0.789,NaN,No relevent experience,NaN,Graduate,Business Degree,<1,NaN,Pvt Ltd,never,52,1 +4,666,city_162,0.767,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,4,8,0 \ No newline at end of file diff --git a/Python_For_ML/Week_4/Conceptual Session/CS-1/train.csv b/Python_For_ML/Week_4/Conceptual Session/CS-1/train.csv new file mode 100644 index 0000000..3167c4b --- /dev/null +++ b/Python_For_ML/Week_4/Conceptual Session/CS-1/train.csv @@ -0,0 +1,19159 @@ +enrollee_id,city,city_development_index,gender,relevent_experience,enrolled_university,education_level,major_discipline,experience,company_size,company_type,last_new_job,training_hours,target +8949,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,36,1.0 +29725,city_40,0.7759999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,47,0.0 +11561,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,5,,,never,83,0.0 +33241,city_115,0.789,,No relevent experience,,Graduate,Business Degree,<1,,Pvt Ltd,never,52,1.0 +666,city_162,0.767,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,4,8,0.0 +21651,city_176,0.764,,Has relevent experience,Part time course,Graduate,STEM,11,,,1,24,1.0 +28806,city_160,0.92,Male,Has relevent experience,no_enrollment,High School,,5,50-99,Funded Startup,1,24,0.0 +402,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Pvt Ltd,>4,18,1.0 +27107,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,46,1.0 +699,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,>4,123,0.0 +29452,city_21,0.624,,No relevent experience,Full time course,High School,,2,,,never,32,1.0 +23853,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,Pvt Ltd,1,108,0.0 +25619,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,3,23,0.0 +5826,city_21,0.624,Male,No relevent experience,,,,2,,,never,24,0.0 +8722,city_21,0.624,,No relevent experience,Full time course,High School,,5,,,never,26,0.0 +6588,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,>4,18,0.0 +4167,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,never,106,0.0 +5764,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,5000-9999,Pvt Ltd,2,7,0.0 +2156,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,never,23,1.0 +11399,city_13,0.8270000000000001,Female,Has relevent experience,no_enrollment,Graduate,Arts,4,,,1,132,1.0 +31972,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,1,68,0.0 +19061,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,2,50,0.0 +6491,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,48,0.0 +7041,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,<1,1000-4999,Pvt Ltd,1,65,0.0 +22767,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,13,0.0 +14505,city_67,0.855,,No relevent experience,no_enrollment,High School,,4,,,never,22,0.0 +17139,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,14,500-999,Pvt Ltd,1,148,1.0 +28476,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,5,,,2,72,0.0 +21538,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,11,<10,Pvt Ltd,1,8,1.0 +10408,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Funded Startup,2,68,1.0 +14928,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,40,0.0 +22293,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,19,5000-9999,Pvt Ltd,>4,141,0.0 +4324,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,5,,,1,24,0.0 +26966,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,82,0.0 +26494,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,12,5000-9999,Pvt Ltd,3,145,0.0 +4866,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Early Stage Startup,2,206,0.0 +12726,city_114,0.9259999999999999,Male,No relevent experience,Part time course,High School,,1,10000+,Other,1,152,0.0 +10164,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,4,42,1.0 +8612,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,12,,,4,50,0.0 +24659,city_71,0.884,Male,No relevent experience,no_enrollment,,,3,,,never,106,0.0 +2547,city_114,0.9259999999999999,Female,Has relevent experience,Full time course,Masters,STEM,16,1000-4999,Public Sector,2,14,0.0 +13854,city_104,0.924,Male,Has relevent experience,no_enrollment,High School,,4,10/49,Pvt Ltd,2,36,0.0 +31654,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Early Stage Startup,1,112,1.0 +13643,city_64,0.6659999999999999,,No relevent experience,no_enrollment,Graduate,No Major,9,50-99,Pvt Ltd,never,108,0.0 +5590,city_21,0.624,Male,Has relevent experience,Part time course,Masters,STEM,9,5000-9999,Pvt Ltd,3,7,1.0 +22452,city_21,0.624,Female,No relevent experience,Full time course,Masters,STEM,5,,,never,26,1.0 +9006,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,never,87,1.0 +25987,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Public Sector,4,52,1.0 +4476,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,No Major,15,,,>4,20,1.0 +25103,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,1,21,0.0 +5568,city_101,0.5579999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,1,92,1.0 +2195,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,2,102,0.0 +30533,city_105,0.794,Male,No relevent experience,no_enrollment,Graduate,Humanities,5,10000+,Pvt Ltd,>4,26,0.0 +28512,city_104,0.924,,Has relevent experience,no_enrollment,Masters,STEM,3,<10,Early Stage Startup,2,7,0.0 +1023,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,4,10000+,Pvt Ltd,1,43,0.0 +12253,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,45,0.0 +25296,city_73,0.754,Male,Has relevent experience,Full time course,Graduate,STEM,2,50-99,Early Stage Startup,2,52,0.0 +13238,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,19,0.0 +13478,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Funded Startup,,32,1.0 +18578,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,100-500,Pvt Ltd,>4,26,1.0 +29975,city_67,0.855,Male,Has relevent experience,Part time course,Graduate,STEM,6,,,1,90,0.0 +26516,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,3,25,0.0 +24690,city_41,0.8270000000000001,,Has relevent experience,,Masters,STEM,13,<10,,1,15,0.0 +8433,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,100-500,Pvt Ltd,>4,48,0.0 +9572,city_11,0.55,,No relevent experience,Full time course,High School,,3,,,,98,0.0 +5878,city_93,0.865,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,2,142,1.0 +25695,city_67,0.855,Other,No relevent experience,no_enrollment,Masters,Humanities,4,10000+,Pvt Ltd,4,13,0.0 +9645,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,>4,47,0.0 +12730,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,Humanities,14,500-999,Public Sector,1,28,0.0 +4830,city_90,0.698,,No relevent experience,,,,2,,Pvt Ltd,never,228,1.0 +20970,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,22,0.0 +17271,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,18,1.0 +12731,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,1,29,0.0 +10908,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,,1,46,0.0 +29117,city_11,0.55,,No relevent experience,Full time course,Graduate,STEM,<1,,,never,12,0.0 +3686,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,2,17,0.0 +22683,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,2,65,0.0 +22134,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,3,100-500,Pvt Ltd,1,35,0.0 +31765,city_67,0.855,Male,No relevent experience,Full time course,Graduate,STEM,9,10000+,Pvt Ltd,3,14,0.0 +31449,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,2,<10,Early Stage Startup,1,4,0.0 +5987,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,12,0.0 +21762,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,108,0.0 +22070,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,136,0.0 +25413,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,,1,27,0.0 +5902,city_20,0.7959999999999999,,Has relevent experience,Part time course,Masters,STEM,4,50-99,Funded Startup,1,74,0.0 +28403,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Early Stage Startup,1,86,0.0 +30937,city_57,0.866,Female,No relevent experience,Part time course,Graduate,STEM,<1,10/49,Pvt Ltd,2,83,0.0 +28751,city_103,0.92,,No relevent experience,Full time course,High School,,4,,,3,75,0.0 +29290,city_152,0.698,Male,No relevent experience,Full time course,Masters,STEM,11,,Public Sector,2,42,0.0 +32401,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,,1,332,0.0 +19128,city_61,0.9129999999999999,Male,No relevent experience,Full time course,Graduate,STEM,4,,,,140,0.0 +29036,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,3,,,never,182,0.0 +16869,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,3,100-500,Pvt Ltd,1,13,1.0 +10497,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,2,172,1.0 +18099,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,NGO,1,48,0.0 +12081,city_65,0.802,Male,Has relevent experience,Full time course,Graduate,STEM,9,50-99,Pvt Ltd,1,33,0.0 +7364,city_160,0.92,,No relevent experience,Full time course,High School,,2,100-500,Pvt Ltd,1,142,0.0 +11184,city_74,0.579,,No relevent experience,Full time course,Graduate,STEM,2,100-500,Pvt Ltd,1,34,0.0 +7016,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,2,14,1.0 +8695,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,2,27,1.0 +6172,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,24,1.0 +14672,city_173,0.878,,No relevent experience,no_enrollment,Masters,STEM,>20,,,1,150,0.0 +18257,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,500-999,NGO,>4,20,0.0 +24493,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,,1,140,0.0 +1180,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,5000-9999,Pvt Ltd,1,52,0.0 +28627,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,160,0.0 +8168,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,5000-9999,Pvt Ltd,2,3,0.0 +10473,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,2,2,1.0 +25349,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,28,0.0 +5220,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,,,4,46,0.0 +4789,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,210,0.0 +11338,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,1,36,0.0 +27963,city_98,0.9490000000000001,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,160,1.0 +8571,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,10/49,NGO,2,101,0.0 +16303,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,,1,46,0.0 +20576,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,19,0.0 +32966,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,2,26,1.0 +21199,city_90,0.698,,Has relevent experience,Full time course,Graduate,STEM,7,<10,NGO,1,90,0.0 +18819,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,4,59,0.0 +14199,city_160,0.92,Male,Has relevent experience,Part time course,Graduate,Business Degree,10,50-99,Funded Startup,1,260,0.0 +7666,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,>4,74,0.0 +13915,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,2,20,1.0 +10555,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,2,8,0.0 +16040,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,131,0.0 +32826,city_138,0.836,Male,Has relevent experience,Full time course,Masters,STEM,7,,,1,45,0.0 +13253,city_82,0.693,Male,Has relevent experience,Full time course,Graduate,STEM,11,10/49,Pvt Ltd,2,109,0.0 +15637,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,100-500,Pvt Ltd,1,70,0.0 +28074,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,NGO,>4,17,0.0 +23012,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,1,51,0.0 +16110,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,3,60,1.0 +3921,city_36,0.893,,No relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Public Sector,>4,4,0.0 +24530,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,>4,7,0.0 +1924,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,3,164,0.0 +32776,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,,,4,290,0.0 +1907,city_102,0.804,Male,No relevent experience,no_enrollment,High School,,2,<10,NGO,never,145,0.0 +23947,city_103,0.92,,No relevent experience,no_enrollment,Phd,STEM,,,,,70,0.0 +3116,city_21,0.624,Male,No relevent experience,no_enrollment,,,3,,,1,24,0.0 +24829,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Humanities,3,10000+,Pvt Ltd,1,133,1.0 +30488,city_11,0.55,,No relevent experience,Full time course,Graduate,STEM,2,,,1,20,0.0 +1265,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Funded Startup,1,76,0.0 +22098,city_90,0.698,Female,No relevent experience,Full time course,Masters,STEM,5,,,4,21,1.0 +13342,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,Other,8,5000-9999,Pvt Ltd,2,34,0.0 +24608,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,2,15,0.0 +20081,city_57,0.866,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,156,0.0 +24796,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,15,0.0 +7777,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,never,120,0.0 +22718,city_157,0.769,,Has relevent experience,no_enrollment,Graduate,No Major,14,10000+,,>4,47,0.0 +1261,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,2,100,1.0 +3396,city_67,0.855,Male,Has relevent experience,Part time course,Graduate,STEM,6,500-999,Pvt Ltd,never,102,0.0 +4283,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,4,,,never,52,0.0 +18998,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,9,10/49,,4,39,0.0 +2003,city_103,0.92,Male,Has relevent experience,Full time course,High School,,4,,,1,112,1.0 +31786,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,>4,14,0.0 +8241,city_16,0.91,,Has relevent experience,no_enrollment,,,11,,,1,4,0.0 +12154,city_16,0.91,,Has relevent experience,no_enrollment,Masters,Arts,>20,1000-4999,NGO,>4,55,0.0 +23455,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,4,49,1.0 +19882,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,>4,72,0.0 +28817,city_89,0.925,Male,Has relevent experience,Full time course,Graduate,STEM,14,5000-9999,Pvt Ltd,3,141,1.0 +4656,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,6,,Pvt Ltd,never,28,0.0 +7280,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,1,6,0.0 +16903,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,17,5000-9999,Pvt Ltd,1,125,0.0 +13333,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,never,326,0.0 +26241,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,100-500,Pvt Ltd,2,33,0.0 +12381,city_102,0.804,,No relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,>4,40,0.0 +4064,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,18,,,1,198,1.0 +32092,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,>4,55,0.0 +3766,city_150,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,32,0.0 +30496,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,100-500,Pvt Ltd,>4,11,0.0 +7189,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,41,0.0 +29497,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Public Sector,>4,87,1.0 +31593,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,4,114,0.0 +12384,city_70,0.698,,Has relevent experience,,,,>20,,,>4,33,0.0 +11986,city_90,0.698,Male,Has relevent experience,Part time course,Masters,STEM,5,<10,Early Stage Startup,1,15,0.0 +31033,city_16,0.91,,No relevent experience,Full time course,High School,,3,,,1,8,0.0 +14835,city_173,0.878,Female,Has relevent experience,Part time course,High School,,2,100-500,NGO,1,22,0.0 +3728,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,4,13,0.0 +3024,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Public Sector,1,246,0.0 +23508,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,Pvt Ltd,1,22,0.0 +29457,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Funded Startup,1,81,0.0 +12297,city_175,0.7759999999999999,,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Funded Startup,1,11,0.0 +27708,city_94,0.698,Male,No relevent experience,Full time course,Graduate,STEM,5,5000-9999,,,24,1.0 +3065,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,1,50,0.0 +29226,city_104,0.924,Male,No relevent experience,Full time course,High School,,6,,,never,15,0.0 +5493,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,31,0.0 +2891,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,never,84,0.0 +32509,city_136,0.897,Male,Has relevent experience,Part time course,Graduate,STEM,4,10000+,Pvt Ltd,1,42,0.0 +31841,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,>4,105,1.0 +907,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,72,0.0 +29526,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Pvt Ltd,>4,42,1.0 +10956,city_94,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Early Stage Startup,1,152,0.0 +26099,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,1,60,0.0 +26163,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,2,,,never,8,0.0 +4120,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,13,,,3,17,1.0 +7335,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,High School,,1,,,1,33,0.0 +706,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,Funded Startup,never,38,0.0 +9890,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,14,<10,Early Stage Startup,2,178,0.0 +32683,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,11,0.0 +27104,city_36,0.893,Male,Has relevent experience,no_enrollment,High School,,>20,,,never,87,0.0 +7731,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,never,84,0.0 +31943,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Early Stage Startup,2,32,0.0 +22899,city_100,0.887,,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,1,31,1.0 +33339,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,2,500-999,Public Sector,1,39,0.0 +20866,city_59,0.775,,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,1,12,0.0 +21634,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,1,50,0.0 +29529,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,55,1.0 +4478,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,,7,1.0 +32095,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,2,50-99,Early Stage Startup,1,104,0.0 +18272,city_160,0.92,,Has relevent experience,Full time course,Graduate,Business Degree,>20,,,>4,90,1.0 +30098,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Other,>20,100-500,Pvt Ltd,>4,8,0.0 +23825,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,102,0.0 +7672,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,<1,10/49,Pvt Ltd,1,202,1.0 +5633,city_145,0.555,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,22,0.0 +30695,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,Pvt Ltd,never,42,0.0 +5573,city_160,0.92,,No relevent experience,no_enrollment,Primary School,,4,,Pvt Ltd,never,50,0.0 +24936,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Funded Startup,1,88,0.0 +397,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,4,81,0.0 +31602,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,7,0.0 +5278,city_21,0.624,Male,No relevent experience,no_enrollment,,,3,,Pvt Ltd,never,218,0.0 +16814,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,62,0.0 +19249,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,83,0.0 +9475,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,>4,11,0.0 +4865,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Phd,STEM,>20,50-99,,>4,10,0.0 +20881,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Pvt Ltd,1,114,0.0 +21563,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Pvt Ltd,1,36,0.0 +25114,city_102,0.804,,No relevent experience,,Masters,STEM,6,10/49,Pvt Ltd,1,17,0.0 +26002,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,80,1.0 +8528,city_160,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,>20,50-99,Public Sector,>4,108,0.0 +6141,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,2,45,0.0 +27667,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,77,0.0 +2821,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,2,8,0.0 +21216,city_173,0.878,,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,28,0.0 +25495,city_142,0.727,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Funded Startup,>4,37,0.0 +20791,city_16,0.91,,No relevent experience,Full time course,Graduate,STEM,2,,,2,108,1.0 +28015,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,500-999,Pvt Ltd,2,162,0.0 +10685,city_73,0.754,,Has relevent experience,Full time course,High School,,9,,,>4,41,0.0 +405,city_165,0.903,Male,Has relevent experience,no_enrollment,Masters,STEM,19,100-500,Pvt Ltd,4,4,0.0 +13891,city_71,0.884,Female,No relevent experience,no_enrollment,Phd,STEM,3,1000-4999,Public Sector,1,41,0.0 +33050,city_165,0.903,,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,2,12,0.0 +399,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,190,0.0 +8202,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,>4,29,1.0 +8751,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Public Sector,1,11,0.0 +20744,city_103,0.92,Male,No relevent experience,Full time course,High School,,3,10000+,Pvt Ltd,1,30,0.0 +25380,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,,>4,39,0.0 +24617,city_102,0.804,Male,Has relevent experience,Full time course,High School,,9,,,1,16,0.0 +12509,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,5,0.0 +25473,city_26,0.698,Male,No relevent experience,Full time course,High School,,8,,,never,39,0.0 +13083,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,>4,29,0.0 +12454,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,4,50-99,NGO,2,210,0.0 +3500,city_103,0.92,Other,No relevent experience,Part time course,High School,,6,50-99,Funded Startup,1,54,0.0 +15922,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,3,44,0.0 +6685,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,>4,47,0.0 +28838,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,NGO,>4,74,0.0 +24082,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10/49,Pvt Ltd,1,8,1.0 +24846,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,7,,,never,20,1.0 +1020,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,1,162,0.0 +6189,city_36,0.893,,No relevent experience,no_enrollment,Graduate,Business Degree,2,50-99,Pvt Ltd,1,110,0.0 +16994,city_46,0.762,Other,Has relevent experience,Part time course,High School,,3,10/49,Pvt Ltd,1,262,0.0 +13135,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,14,,,1,6,0.0 +14578,city_64,0.6659999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,9,10/49,Pvt Ltd,1,19,1.0 +20732,city_64,0.6659999999999999,Other,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,23,1.0 +16496,city_21,0.624,Male,No relevent experience,,Graduate,STEM,<1,,,1,107,1.0 +16537,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,,>4,134,0.0 +17358,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10/49,Early Stage Startup,1,40,0.0 +21933,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,11,0.0 +7342,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,3,102,0.0 +5630,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,100,0.0 +24152,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,3,10000+,Pvt Ltd,never,30,0.0 +17762,city_103,0.92,,No relevent experience,no_enrollment,High School,,5,,,1,20,1.0 +4310,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,3,4,0.0 +5142,city_16,0.91,,No relevent experience,no_enrollment,Primary School,,5,,,never,15,0.0 +22319,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,1,14,1.0 +30912,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Primary School,,1,,Pvt Ltd,never,103,0.0 +20976,city_160,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,5,1000-4999,Public Sector,2,40,0.0 +13150,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,2,27,0.0 +12206,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,10,100-500,Pvt Ltd,>4,46,0.0 +9407,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,7,50-99,Pvt Ltd,>4,110,0.0 +13152,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Funded Startup,1,96,0.0 +1069,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,57,0.0 +25418,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,6,,,1,240,0.0 +22689,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Funded Startup,4,42,0.0 +5104,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,7,,,1,16,1.0 +13994,city_12,0.64,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,never,40,1.0 +27064,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Funded Startup,2,94,0.0 +14598,city_37,0.794,,No relevent experience,no_enrollment,Graduate,STEM,9,5000-9999,Pvt Ltd,1,160,0.0 +9571,city_173,0.878,Male,No relevent experience,Part time course,Graduate,STEM,10,10/49,Early Stage Startup,1,25,0.0 +30854,city_43,0.516,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Early Stage Startup,1,11,0.0 +25290,city_173,0.878,,Has relevent experience,no_enrollment,High School,,<1,100-500,Pvt Ltd,1,29,0.0 +29640,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,23,0.0 +17519,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,2,113,0.0 +12111,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,15,,,2,56,0.0 +6085,city_104,0.924,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,39,1.0 +27277,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,2,1000-4999,Pvt Ltd,1,20,0.0 +31692,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,>20,10000+,Pvt Ltd,1,40,0.0 +6052,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,56,0.0 +18161,city_145,0.555,,No relevent experience,Full time course,Graduate,STEM,4,,,1,106,0.0 +12934,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,19,500-999,Pvt Ltd,2,64,0.0 +30400,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,51,0.0 +26419,city_67,0.855,Female,Has relevent experience,Full time course,Graduate,STEM,6,1000-4999,Pvt Ltd,2,41,0.0 +4188,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,20,100-500,Pvt Ltd,>4,150,0.0 +12117,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,320,0.0 +28847,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,,,never,20,0.0 +30472,city_21,0.624,Male,No relevent experience,Full time course,,,4,1000-4999,Pvt Ltd,1,9,1.0 +32534,city_102,0.804,Male,Has relevent experience,Full time course,Graduate,STEM,9,5000-9999,Pvt Ltd,1,74,0.0 +22395,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,,Public Sector,1,129,1.0 +4876,city_67,0.855,Female,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,42,0.0 +25182,city_61,0.9129999999999999,,No relevent experience,no_enrollment,High School,,2,100-500,Pvt Ltd,never,58,0.0 +26135,city_103,0.92,Male,No relevent experience,Full time course,High School,,3,,,1,126,1.0 +7517,city_103,0.92,,No relevent experience,no_enrollment,High School,,4,,,1,45,1.0 +2793,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,166,0.0 +25174,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,110,0.0 +5593,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,>20,,,1,37,0.0 +14003,city_102,0.804,Female,Has relevent experience,Part time course,Graduate,STEM,2,,,1,95,1.0 +33057,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,29,1.0 +30484,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,31,0.0 +14688,city_116,0.743,Male,No relevent experience,Full time course,Masters,STEM,11,50-99,Pvt Ltd,>4,97,0.0 +25459,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,16,0.0 +23657,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,4,,,never,14,0.0 +20322,city_102,0.804,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,>4,206,0.0 +22194,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Funded Startup,1,204,0.0 +31401,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10000+,Pvt Ltd,2,116,0.0 +14914,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,4,161,0.0 +20376,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,25,1.0 +27530,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,18,500-999,Pvt Ltd,>4,94,0.0 +24701,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,16,0.0 +6790,city_90,0.698,Male,Has relevent experience,Full time course,Masters,STEM,15,,,1,100,0.0 +10102,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,10000+,Pvt Ltd,never,107,0.0 +10338,city_157,0.769,Male,Has relevent experience,Part time course,Masters,STEM,11,,,1,17,0.0 +15701,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,1,140,0.0 +21218,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,10000+,Pvt Ltd,2,75,0.0 +1586,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,High School,,6,,,1,59,0.0 +9189,city_23,0.899,,Has relevent experience,no_enrollment,High School,,6,50-99,,1,146,0.0 +13788,city_93,0.865,,No relevent experience,no_enrollment,,,3,,,never,302,0.0 +10752,city_67,0.855,Female,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,2,42,1.0 +28406,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,No Major,14,,Pvt Ltd,1,131,0.0 +26320,city_94,0.698,,Has relevent experience,Part time course,High School,,9,,,4,74,0.0 +17460,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,22,0.0 +18657,city_102,0.804,,No relevent experience,no_enrollment,Graduate,STEM,3,,,never,53,1.0 +9384,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,143,0.0 +4269,city_67,0.855,Female,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,2,72,0.0 +14935,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,11,500-999,Pvt Ltd,1,7,0.0 +28033,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,3,50-99,Early Stage Startup,1,182,0.0 +1568,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,4,50,0.0 +15465,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,2,50-99,Public Sector,1,82,0.0 +26233,city_16,0.91,Male,Has relevent experience,,Graduate,STEM,2,10000+,Pvt Ltd,1,58,0.0 +24729,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,94,0.0 +29440,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,,2,60,1.0 +32652,city_65,0.802,Male,Has relevent experience,Full time course,Masters,STEM,5,100-500,Pvt Ltd,4,124,0.0 +28556,city_149,0.6890000000000001,,No relevent experience,no_enrollment,Primary School,,2,,,2,46,0.0 +12875,city_152,0.698,Male,No relevent experience,Full time course,Masters,STEM,3,,NGO,2,57,1.0 +21078,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,17,0.0 +30331,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,5000-9999,Pvt Ltd,>4,101,0.0 +5899,city_150,0.698,Male,No relevent experience,no_enrollment,Primary School,,3,,Pvt Ltd,never,31,0.0 +22787,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,36,0.0 +27435,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,STEM,15,,,4,198,0.0 +2855,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,never,31,0.0 +18385,city_11,0.55,,Has relevent experience,,Masters,STEM,9,50-99,Pvt Ltd,1,12,0.0 +27866,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,31,0.0 +7328,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,,,>4,26,1.0 +24807,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,55,0.0 +27113,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,>4,8,1.0 +6008,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,>20,100-500,Pvt Ltd,>4,38,0.0 +760,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,Humanities,16,,,2,8,0.0 +2990,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,3,32,1.0 +28229,city_40,0.7759999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,18,100-500,Funded Startup,>4,51,0.0 +4162,city_102,0.804,Male,Has relevent experience,Full time course,Graduate,STEM,9,5000-9999,Pvt Ltd,2,22,0.0 +27326,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,7,,,1,17,0.0 +604,city_16,0.91,Male,No relevent experience,,,,3,,,never,24,0.0 +2194,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Funded Startup,1,19,0.0 +21564,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,9,50-99,Pvt Ltd,2,46,1.0 +17432,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,>4,15,0.0 +13952,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,23,1.0 +1988,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,38,0.0 +23691,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,4,,,never,46,1.0 +10481,city_102,0.804,,No relevent experience,Full time course,Graduate,Business Degree,<1,,,never,214,0.0 +8540,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,>4,52,0.0 +8806,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,<1,,,never,22,1.0 +15468,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,2,65,0.0 +32747,city_160,0.92,,Has relevent experience,Full time course,Graduate,No Major,14,50-99,Pvt Ltd,1,64,0.0 +1297,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,4,86,0.0 +4075,city_100,0.887,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,52,1.0 +12772,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,14,,,>4,21,0.0 +22517,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Public Sector,1,86,0.0 +26388,city_136,0.897,Male,No relevent experience,Full time course,Masters,STEM,5,,,4,288,1.0 +30676,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,53,0.0 +18376,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,,1,60,0.0 +10970,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,18,,,>4,178,0.0 +29961,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,2,166,0.0 +5136,city_104,0.924,Male,Has relevent experience,no_enrollment,Phd,Humanities,>20,,,1,62,0.0 +20369,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,7,10000+,,1,35,0.0 +23505,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,>4,106,0.0 +11751,city_138,0.836,Male,No relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,never,58,0.0 +12038,city_90,0.698,Male,Has relevent experience,Full time course,Masters,,,,,,44,1.0 +28590,city_16,0.91,Male,Has relevent experience,,Masters,STEM,6,50-99,Funded Startup,1,72,0.0 +32699,city_103,0.92,,Has relevent experience,no_enrollment,High School,,18,10000+,Pvt Ltd,1,80,0.0 +10370,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,16,5000-9999,NGO,2,166,0.0 +4095,city_10,0.895,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,25,0.0 +5340,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,10000+,Pvt Ltd,never,109,0.0 +9217,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,<10,Early Stage Startup,1,37,0.0 +15294,city_11,0.55,,No relevent experience,Full time course,Graduate,STEM,4,,,never,55,1.0 +23901,city_103,0.92,Male,No relevent experience,,,,3,,,never,32,0.0 +5673,city_45,0.89,Male,No relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,3,51,0.0 +25421,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Funded Startup,1,84,0.0 +20698,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,NGO,1,72,0.0 +41,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,>20,100-500,Pvt Ltd,1,47,0.0 +23636,city_67,0.855,Male,No relevent experience,Full time course,Graduate,STEM,12,,,4,47,0.0 +9387,city_73,0.754,Male,Has relevent experience,,High School,,6,<10,Funded Startup,2,20,0.0 +21466,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,198,1.0 +9515,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Other,2,1000-4999,Public Sector,1,64,0.0 +20743,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,>4,23,1.0 +25766,city_71,0.884,Male,No relevent experience,Full time course,Masters,STEM,14,100-500,Public Sector,3,96,0.0 +4626,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,2,,Pvt Ltd,never,306,0.0 +4642,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,NGO,1,8,0.0 +16178,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,48,0.0 +1829,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,1,98,1.0 +2377,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Phd,STEM,7,500-999,NGO,never,46,0.0 +8287,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,1,,,1,53,1.0 +10529,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,<10,Pvt Ltd,1,102,0.0 +30608,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,4,,,1,76,0.0 +27546,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,1,,,never,43,0.0 +32324,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,32,0.0 +8442,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,54,0.0 +8151,city_162,0.767,,Has relevent experience,Full time course,Masters,STEM,8,10/49,Pvt Ltd,1,7,0.0 +15796,city_71,0.884,Female,Has relevent experience,no_enrollment,Masters,STEM,3,,,2,322,1.0 +9420,city_80,0.847,,Has relevent experience,no_enrollment,,,>20,500-999,,never,96,0.0 +17083,city_160,0.92,Female,Has relevent experience,Full time course,Graduate,STEM,4,5000-9999,Pvt Ltd,1,7,0.0 +16414,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,1,53,0.0 +32340,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Funded Startup,1,161,0.0 +18462,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,8,10/49,Pvt Ltd,1,11,0.0 +7996,city_41,0.8270000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Public Sector,2,6,0.0 +30636,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,1,50-99,,1,72,1.0 +29982,city_105,0.794,Female,Has relevent experience,no_enrollment,Masters,Humanities,6,50-99,Pvt Ltd,1,182,0.0 +29217,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,67,0.0 +18454,city_128,0.527,Female,No relevent experience,no_enrollment,Graduate,STEM,1,,,1,50,0.0 +22508,city_71,0.884,Female,No relevent experience,Part time course,Graduate,STEM,5,100-500,Pvt Ltd,1,16,0.0 +25969,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,38,0.0 +28080,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,Arts,5,10/49,Early Stage Startup,1,98,0.0 +21134,city_70,0.698,Male,No relevent experience,Part time course,Graduate,STEM,4,,,2,7,1.0 +30925,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,88,0.0 +29000,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,Pvt Ltd,2,112,0.0 +26925,city_158,0.7659999999999999,Other,Has relevent experience,Full time course,Graduate,STEM,15,5000-9999,,never,30,1.0 +7696,city_123,0.738,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Funded Startup,1,9,0.0 +25525,city_67,0.855,Other,No relevent experience,Full time course,High School,,4,10000+,Pvt Ltd,1,36,0.0 +21989,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,4,24,0.0 +10984,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,2,10000+,NGO,1,28,0.0 +26543,city_173,0.878,Male,Has relevent experience,Part time course,Graduate,STEM,10,50-99,Public Sector,1,166,0.0 +32043,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,10,50-99,Pvt Ltd,2,61,1.0 +15343,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Public Sector,3,24,0.0 +30967,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,10,,,1,8,1.0 +30191,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,133,0.0 +13537,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,>4,143,0.0 +23185,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,29,0.0 +1434,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,53,0.0 +9600,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Public Sector,>4,11,1.0 +25963,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,,1,7,0.0 +5141,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,>4,87,0.0 +657,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Funded Startup,1,18,0.0 +29991,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,Arts,9,1000-4999,Pvt Ltd,1,76,1.0 +18759,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,114,0.0 +23081,city_103,0.92,,No relevent experience,Full time course,High School,,5,,,,56,0.0 +5731,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,,>4,30,0.0 +20135,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,80,0.0 +18620,city_40,0.7759999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,14,1000-4999,Pvt Ltd,never,52,0.0 +24226,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,13,0.0 +10092,city_162,0.767,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Public Sector,never,42,0.0 +1950,city_162,0.767,,Has relevent experience,Part time course,Masters,STEM,6,50-99,Pvt Ltd,1,56,1.0 +7909,city_21,0.624,Male,No relevent experience,no_enrollment,Primary School,,2,,,never,12,1.0 +11966,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,Humanities,2,100-500,Pvt Ltd,1,36,0.0 +10017,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,67,0.0 +28391,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,13,1.0 +361,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,Pvt Ltd,1,100,0.0 +20797,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,15,10000+,Pvt Ltd,1,58,0.0 +25041,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,18,1.0 +18476,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,2,10000+,Pvt Ltd,2,90,1.0 +26668,city_12,0.64,,No relevent experience,no_enrollment,Masters,STEM,6,10000+,,1,59,0.0 +18586,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,2,10000+,Pvt Ltd,2,35,0.0 +17783,city_65,0.802,Male,Has relevent experience,Full time course,Graduate,STEM,<1,10000+,Pvt Ltd,2,11,0.0 +13256,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,2,15,1.0 +6283,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,10,50-99,Pvt Ltd,>4,206,0.0 +2586,city_7,0.647,,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,1,130,0.0 +15279,city_103,0.92,,No relevent experience,,,,1,,,never,30,0.0 +28468,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,88,0.0 +17941,city_21,0.624,,No relevent experience,no_enrollment,Masters,Business Degree,<1,10000+,Pvt Ltd,1,18,0.0 +23384,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,1,41,0.0 +4978,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Masters,STEM,14,10000+,Pvt Ltd,2,16,0.0 +28641,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,95,0.0 +28915,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,6,,Public Sector,1,53,0.0 +33367,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,220,1.0 +14999,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,21,0.0 +3999,city_72,0.795,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Public Sector,>4,94,0.0 +9860,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,17,10/49,Pvt Ltd,3,20,0.0 +31153,city_101,0.5579999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,8,,,never,47,1.0 +26616,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,60,0.0 +24366,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,4,78,1.0 +19986,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,4,10000+,Public Sector,1,5,0.0 +17786,city_105,0.794,Male,Has relevent experience,no_enrollment,,,6,50-99,,1,20,0.0 +1396,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,3,2,0.0 +22954,city_105,0.794,Female,Has relevent experience,Full time course,Graduate,STEM,9,100-500,Pvt Ltd,>4,206,0.0 +14775,city_67,0.855,Male,No relevent experience,no_enrollment,High School,,12,,,1,90,0.0 +1563,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,3,25,0.0 +29612,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Pvt Ltd,1,8,1.0 +23856,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,2,22,0.0 +30441,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,19,100-500,Pvt Ltd,>4,90,0.0 +22742,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Early Stage Startup,1,56,0.0 +30265,city_103,0.92,Male,Has relevent experience,Full time course,High School,,10,,,2,81,1.0 +11545,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,1,120,0.0 +2404,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,never,18,1.0 +7243,city_100,0.887,,Has relevent experience,no_enrollment,High School,,>20,50-99,Pvt Ltd,never,19,0.0 +19555,city_65,0.802,Male,Has relevent experience,Full time course,Graduate,STEM,8,5000-9999,Pvt Ltd,2,314,0.0 +20486,city_75,0.9390000000000001,,No relevent experience,no_enrollment,Graduate,STEM,>20,,,2,15,0.0 +17400,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,10,0.0 +22005,city_73,0.754,,Has relevent experience,Part time course,Graduate,STEM,3,50-99,Pvt Ltd,>4,39,0.0 +10612,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,,,1,25,1.0 +23365,city_101,0.5579999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,<10,Early Stage Startup,1,146,1.0 +13288,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,1,26,0.0 +23430,city_20,0.7959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,>4,25,0.0 +30404,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,50,1.0 +8930,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,>4,30,0.0 +3920,city_106,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10000+,Pvt Ltd,4,39,0.0 +29841,city_21,0.624,,No relevent experience,Full time course,High School,,<1,,,never,56,1.0 +16289,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,,1,82,1.0 +19889,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,2,32,0.0 +11780,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,43,1.0 +8489,city_11,0.55,Male,Has relevent experience,no_enrollment,,,15,100-500,Pvt Ltd,>4,15,1.0 +32581,city_143,0.74,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,1,21,1.0 +22420,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,Humanities,9,10000+,Pvt Ltd,2,226,0.0 +28415,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,60,0.0 +32260,city_78,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,9,0.0 +21603,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,50,0.0 +19702,city_73,0.754,Male,No relevent experience,Part time course,High School,,4,1000-4999,Pvt Ltd,1,280,1.0 +17665,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,,2,91,0.0 +19612,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,1,15,1.0 +18905,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,5,100-500,Pvt Ltd,2,14,0.0 +824,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,1,74,0.0 +27275,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,,,2,43,1.0 +14217,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,500-999,Pvt Ltd,1,52,0.0 +13209,city_75,0.9390000000000001,,No relevent experience,no_enrollment,,,1,,,1,75,0.0 +9414,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,54,1.0 +33242,city_73,0.754,Male,No relevent experience,Part time course,Graduate,STEM,8,<10,Early Stage Startup,1,50,0.0 +24224,city_150,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,Pvt Ltd,never,100,0.0 +9684,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,STEM,17,<10,Early Stage Startup,1,42,0.0 +8584,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,4,11,0.0 +27003,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,2,74,0.0 +17840,city_65,0.802,Male,Has relevent experience,Full time course,High School,,7,50-99,Pvt Ltd,1,17,0.0 +29723,city_45,0.89,Male,Has relevent experience,Full time course,Graduate,STEM,9,50-99,Pvt Ltd,>4,90,0.0 +33181,city_67,0.855,Male,No relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,234,0.0 +29288,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,3,11,1.0 +3004,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,Humanities,7,<10,Pvt Ltd,1,163,0.0 +5828,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,4,9,0.0 +22211,city_67,0.855,Male,No relevent experience,no_enrollment,Graduate,Other,5,,,never,36,0.0 +28193,city_13,0.8270000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Public Sector,1,6,0.0 +26291,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,>4,72,0.0 +11739,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,18,100-500,NGO,3,84,0.0 +20878,city_150,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Public Sector,>4,24,0.0 +31156,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,10/49,Pvt Ltd,1,77,0.0 +21878,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Other,20,10000+,Pvt Ltd,>4,56,0.0 +7009,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,1,22,0.0 +31013,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,17,50-99,Funded Startup,2,8,0.0 +7145,city_93,0.865,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,8,0.0 +2690,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,55,0.0 +28829,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,9,100-500,Pvt Ltd,1,74,1.0 +28477,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,3,,,1,57,1.0 +17107,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,<10,,1,36,0.0 +17125,city_103,0.92,,No relevent experience,,,,2,,,never,146,0.0 +5911,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,151,0.0 +24069,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,4,0.0 +20803,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,Other,2,100-500,,2,102,0.0 +3752,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,3,29,0.0 +32925,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,78,0.0 +27494,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Pvt Ltd,>4,84,0.0 +19818,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,<10,Pvt Ltd,2,141,1.0 +22581,city_104,0.924,Male,Has relevent experience,Full time course,High School,,8,100-500,Public Sector,1,41,1.0 +2629,city_123,0.738,Male,Has relevent experience,Full time course,Graduate,STEM,5,,Pvt Ltd,1,13,0.0 +20143,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,Pvt Ltd,1,30,0.0 +2478,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,2,104,1.0 +25957,city_109,0.701,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,108,0.0 +24981,city_45,0.89,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,,62,0.0 +27624,city_16,0.91,,No relevent experience,no_enrollment,Primary School,,8,50-99,Pvt Ltd,2,21,0.0 +32355,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,Early Stage Startup,1,98,0.0 +12140,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,Humanities,5,,Public Sector,1,57,0.0 +9743,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,44,1.0 +3827,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,9,0.0 +9338,city_65,0.802,,Has relevent experience,Full time course,Graduate,STEM,8,100-500,NGO,1,4,0.0 +10386,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Early Stage Startup,3,53,0.0 +14901,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,108,0.0 +6909,city_24,0.698,Female,No relevent experience,no_enrollment,Masters,STEM,7,,,1,98,1.0 +20751,city_36,0.893,,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Early Stage Startup,1,112,0.0 +13597,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10000+,Pvt Ltd,1,107,0.0 +4498,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,28,1.0 +29508,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,24,0.0 +5205,city_162,0.767,,Has relevent experience,,Graduate,STEM,>20,500-999,Public Sector,never,28,1.0 +32947,city_43,0.516,,Has relevent experience,Full time course,Graduate,STEM,4,,,1,15,1.0 +4766,city_90,0.698,,No relevent experience,no_enrollment,High School,,2,,,never,76,0.0 +428,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,>4,80,0.0 +16219,city_19,0.682,,No relevent experience,Full time course,Graduate,STEM,3,,,,32,1.0 +21843,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,96,0.0 +17162,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,11,1.0 +15259,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Pvt Ltd,>4,46,0.0 +14487,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,Other,5,100-500,Pvt Ltd,1,20,0.0 +8055,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,,4,46,0.0 +4922,city_103,0.92,Male,Has relevent experience,no_enrollment,Primary School,,10,<10,Pvt Ltd,1,14,0.0 +20653,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,1,44,0.0 +707,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,27,0.0 +1131,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,>4,34,0.0 +22219,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,3,17,0.0 +10454,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,3,100-500,Pvt Ltd,3,40,0.0 +14740,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,3,,,1,20,1.0 +12183,city_28,0.9390000000000001,Male,No relevent experience,Full time course,Graduate,STEM,7,,,2,31,1.0 +22052,city_46,0.762,Male,Has relevent experience,no_enrollment,Masters,STEM,8,1000-4999,Public Sector,1,45,0.0 +8677,city_67,0.855,Male,No relevent experience,no_enrollment,High School,,11,,Pvt Ltd,1,32,0.0 +29432,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,2,85,0.0 +6812,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,110,0.0 +14890,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,Business Degree,11,,,2,35,0.0 +9569,city_46,0.762,Male,Has relevent experience,Full time course,Graduate,STEM,12,100-500,Pvt Ltd,3,6,0.0 +6389,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,15,1000-4999,Pvt Ltd,4,11,0.0 +14622,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,61,1.0 +24586,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10/49,Early Stage Startup,1,91,0.0 +9463,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,<10,Pvt Ltd,2,28,0.0 +6379,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,18,0.0 +30514,city_105,0.794,Male,Has relevent experience,Part time course,Graduate,STEM,7,100-500,,1,50,0.0 +12349,city_19,0.682,Male,No relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,,1,204,0.0 +6995,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,5,50-99,Pvt Ltd,2,256,0.0 +13311,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,6,5000-9999,Pvt Ltd,2,26,0.0 +26275,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,5,10000+,Pvt Ltd,4,168,1.0 +30814,city_46,0.762,Male,No relevent experience,no_enrollment,Graduate,Other,2,1000-4999,Pvt Ltd,never,26,0.0 +20823,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,>4,37,0.0 +18810,city_162,0.767,Male,No relevent experience,Full time course,High School,,4,,,2,17,1.0 +79,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,42,1.0 +16177,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,10,,,never,67,0.0 +16141,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,13,,,>4,40,0.0 +5417,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,>4,14,0.0 +24280,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,1,218,0.0 +9393,city_94,0.698,Male,Has relevent experience,,High School,,3,,,1,22,1.0 +22112,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Funded Startup,1,8,0.0 +11003,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,8,10/49,Funded Startup,1,38,0.0 +12631,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,1,<10,,1,29,0.0 +6326,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,2,26,0.0 +24870,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,13,10000+,Pvt Ltd,2,22,0.0 +18170,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,50,0.0 +33254,city_160,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,120,1.0 +11821,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Funded Startup,1,100,0.0 +24937,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,4,198,1.0 +15837,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Other,3,<10,Pvt Ltd,2,18,1.0 +31083,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,4,80,1.0 +15436,city_65,0.802,Female,No relevent experience,Part time course,Graduate,STEM,3,50-99,Pvt Ltd,1,144,1.0 +13102,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,41,0.0 +30277,city_103,0.92,,Has relevent experience,Full time course,Masters,STEM,9,10/49,Pvt Ltd,1,54,0.0 +4475,city_90,0.698,Male,Has relevent experience,Full time course,Masters,STEM,>20,10000+,Public Sector,1,28,0.0 +4072,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,10000+,Public Sector,1,20,0.0 +11085,city_173,0.878,Male,No relevent experience,no_enrollment,Graduate,No Major,14,50-99,NGO,3,45,0.0 +3878,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,6,10000+,Pvt Ltd,3,55,0.0 +33104,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,3,28,0.0 +17304,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,Pvt Ltd,1,96,0.0 +23719,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,1,,,never,18,1.0 +22348,city_19,0.682,Male,No relevent experience,Full time course,Graduate,STEM,9,,,1,42,0.0 +18320,city_149,0.6890000000000001,,Has relevent experience,,Graduate,STEM,4,50-99,Pvt Ltd,3,31,1.0 +27959,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,47,1.0 +11655,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,66,0.0 +26713,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,2,8,0.0 +3248,city_102,0.804,Male,No relevent experience,no_enrollment,High School,,4,,Pvt Ltd,never,94,0.0 +32877,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,40,1.0 +25363,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,,1,15,0.0 +22573,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Pvt Ltd,never,53,0.0 +440,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,42,0.0 +27697,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,7,5000-9999,Public Sector,4,8,0.0 +10792,city_102,0.804,,Has relevent experience,,Graduate,STEM,12,5000-9999,Pvt Ltd,1,182,0.0 +30509,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,8,100-500,NGO,1,128,0.0 +28149,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,2,25,1.0 +24708,city_11,0.55,Male,Has relevent experience,Full time course,Masters,STEM,4,100-500,NGO,2,37,1.0 +32836,city_134,0.698,Male,No relevent experience,no_enrollment,,,>20,,,1,85,0.0 +16372,city_114,0.9259999999999999,,Has relevent experience,Full time course,Masters,STEM,9,50-99,Pvt Ltd,1,88,0.0 +33292,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,never,21,1.0 +32619,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,4,100-500,Pvt Ltd,1,90,0.0 +29606,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,High School,,3,100-500,Pvt Ltd,>4,10,0.0 +11430,city_103,0.92,Male,Has relevent experience,no_enrollment,Primary School,,12,,,1,70,1.0 +10967,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,6,1000-4999,Public Sector,1,106,1.0 +17375,city_157,0.769,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,NGO,>4,35,1.0 +26025,city_102,0.804,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,73,1.0 +19795,city_104,0.924,Male,No relevent experience,Full time course,Graduate,STEM,13,,,3,41,1.0 +10554,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,4,22,0.0 +8311,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,12,1000-4999,Pvt Ltd,1,82,0.0 +5801,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,High School,,8,100-500,NGO,1,20,0.0 +6010,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,2,44,0.0 +31210,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,107,0.0 +24714,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,,,1,19,1.0 +5203,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,10/49,Pvt Ltd,>4,116,1.0 +7193,city_103,0.92,Male,No relevent experience,Full time course,High School,,5,10000+,Pvt Ltd,1,55,0.0 +1695,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,1,42,0.0 +16625,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,<10,Early Stage Startup,1,78,1.0 +23714,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,114,0.0 +21967,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,56,0.0 +33342,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,Pvt Ltd,never,6,0.0 +29737,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,>4,15,0.0 +9846,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,6,100-500,NGO,1,54,0.0 +3965,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Funded Startup,2,114,0.0 +15430,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,1,29,0.0 +20911,city_48,0.493,,No relevent experience,Full time course,Graduate,STEM,2,,,1,33,1.0 +6724,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,4,23,0.0 +21442,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Funded Startup,1,206,1.0 +12716,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,Humanities,6,50-99,Pvt Ltd,1,76,0.0 +18,city_23,0.899,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,24,0.0 +26402,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Pvt Ltd,2,101,0.0 +26214,city_173,0.878,Male,No relevent experience,Full time course,Masters,Humanities,9,100-500,Public Sector,2,56,0.0 +21033,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,1,21,0.0 +19073,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,77,0.0 +6775,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,4,50-99,Pvt Ltd,1,14,0.0 +26126,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,13,50-99,Pvt Ltd,1,326,0.0 +28673,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,20,1.0 +15012,city_144,0.84,Male,Has relevent experience,Full time course,Graduate,STEM,9,10/49,Other,1,34,0.0 +10930,city_67,0.855,Male,Has relevent experience,no_enrollment,,,>20,5000-9999,Public Sector,>4,17,0.0 +7610,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,2,31,1.0 +12931,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,5,,,4,52,0.0 +6502,city_102,0.804,,Has relevent experience,Part time course,Graduate,STEM,5,100-500,NGO,1,326,0.0 +29945,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,19,0.0 +14523,city_145,0.555,,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,124,1.0 +15470,city_157,0.769,Male,No relevent experience,no_enrollment,Graduate,STEM,11,,,2,18,1.0 +2485,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,4,0.0 +24355,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Phd,STEM,18,1000-4999,Pvt Ltd,4,122,0.0 +6407,city_114,0.9259999999999999,,Has relevent experience,Full time course,High School,,7,,,2,82,0.0 +14425,city_21,0.624,Male,No relevent experience,,Graduate,STEM,5,,,never,24,1.0 +20116,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,11,,,,11,1.0 +27786,city_100,0.887,Male,No relevent experience,no_enrollment,High School,,4,,,never,37,0.0 +15868,city_102,0.804,Male,No relevent experience,Full time course,Graduate,STEM,2,,,2,116,1.0 +26755,city_149,0.6890000000000001,,No relevent experience,Full time course,High School,,1,,,never,27,0.0 +10285,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Funded Startup,4,42,0.0 +18289,city_37,0.794,,No relevent experience,Full time course,Masters,STEM,15,1000-4999,Pvt Ltd,1,33,0.0 +13687,city_24,0.698,Male,No relevent experience,Full time course,High School,,7,,,never,28,0.0 +27535,city_16,0.91,Male,No relevent experience,Full time course,High School,,12,,,never,42,0.0 +25850,city_67,0.855,Female,No relevent experience,Full time course,Graduate,STEM,3,,,2,17,1.0 +12830,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,1,163,0.0 +17967,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,58,0.0 +12217,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,10,50-99,Pvt Ltd,4,206,0.0 +19215,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,10,10000+,Pvt Ltd,1,57,0.0 +27139,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,1,40,1.0 +32862,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,4,,,1,28,1.0 +24887,city_75,0.9390000000000001,,Has relevent experience,Full time course,High School,,2,<10,Pvt Ltd,1,30,0.0 +19378,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,1,34,0.0 +29769,city_21,0.624,,No relevent experience,Full time course,High School,,3,1000-4999,NGO,never,44,0.0 +18907,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,1,10000+,Pvt Ltd,1,28,0.0 +23572,city_57,0.866,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,never,154,0.0 +7991,city_173,0.878,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,26,1.0 +6448,city_165,0.903,Male,Has relevent experience,Part time course,Graduate,STEM,>20,10000+,Pvt Ltd,>4,6,0.0 +30878,city_91,0.691,Male,No relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,32,0.0 +4606,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,1,,,never,96,0.0 +4367,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,70,1.0 +27114,city_21,0.624,Male,No relevent experience,Full time course,High School,,7,,,never,4,0.0 +8023,city_90,0.698,,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,,4,86,0.0 +3708,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,>4,290,0.0 +25403,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,2,100-500,Pvt Ltd,1,168,0.0 +20140,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,55,1.0 +26455,city_146,0.735,,Has relevent experience,Full time course,Graduate,STEM,6,,,1,42,0.0 +19618,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,11,,,1,34,0.0 +18497,city_90,0.698,,No relevent experience,Part time course,High School,,2,50-99,Pvt Ltd,1,16,0.0 +31798,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,1,8,0.0 +30076,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,4,,,never,63,0.0 +32953,city_144,0.84,Other,No relevent experience,,,,2,,,never,8,0.0 +4302,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,21,0.0 +4980,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,2,123,0.0 +7951,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,No Major,10,100-500,,4,292,0.0 +15106,city_11,0.55,Male,No relevent experience,no_enrollment,Graduate,STEM,1,,,1,7,0.0 +15211,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,23,1.0 +4635,city_136,0.897,Male,No relevent experience,,,,1,,,never,24,0.0 +17529,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,3,48,1.0 +8852,city_133,0.742,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,4,10/49,Pvt Ltd,1,188,0.0 +1794,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Public Sector,2,42,0.0 +13720,city_36,0.893,Male,Has relevent experience,no_enrollment,High School,,16,10/49,Pvt Ltd,>4,73,0.0 +11292,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,156,1.0 +24062,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Funded Startup,1,103,1.0 +33188,city_105,0.794,Other,No relevent experience,no_enrollment,Masters,STEM,1,,,1,15,0.0 +22896,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,6,50-99,Early Stage Startup,3,74,1.0 +17781,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,1,39,0.0 +10602,city_16,0.91,,Has relevent experience,Full time course,Masters,STEM,5,50-99,,,92,0.0 +28433,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,12,500-999,Pvt Ltd,1,96,0.0 +27490,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,70,0.0 +31489,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,never,4,0.0 +15297,city_103,0.92,,No relevent experience,Full time course,,,<1,,,never,34,0.0 +21585,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,Other,3,50-99,Pvt Ltd,3,51,0.0 +11651,city_23,0.899,,Has relevent experience,,High School,,3,,,3,21,0.0 +26674,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10000+,Pvt Ltd,2,6,0.0 +13870,city_36,0.893,Male,Has relevent experience,Full time course,High School,,9,,,2,68,0.0 +24222,city_16,0.91,Male,No relevent experience,no_enrollment,Phd,STEM,9,1000-4999,Public Sector,>4,90,0.0 +24054,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,1,71,1.0 +15241,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,Other,9,100-500,,2,4,0.0 +14204,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Early Stage Startup,1,145,0.0 +18130,city_67,0.855,Female,No relevent experience,no_enrollment,Masters,Humanities,3,50-99,Pvt Ltd,2,9,0.0 +28603,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,4,26,0.0 +23984,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,4,10000+,Public Sector,2,42,0.0 +26129,city_103,0.92,Other,Has relevent experience,no_enrollment,Masters,STEM,18,,,1,45,1.0 +16438,city_136,0.897,,No relevent experience,no_enrollment,Phd,STEM,12,,,2,53,0.0 +18892,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,15,50-99,Pvt Ltd,2,166,0.0 +3498,city_41,0.8270000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,>20,100-500,Pvt Ltd,>4,72,0.0 +32720,city_145,0.555,Female,Has relevent experience,Part time course,Masters,STEM,>20,10000+,NGO,3,135,1.0 +4828,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,6,500-999,NGO,>4,138,1.0 +29201,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,>4,31,0.0 +33126,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,25,0.0 +11950,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Masters,STEM,2,10000+,Pvt Ltd,1,28,0.0 +24127,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,8,0.0 +13149,city_103,0.92,Male,No relevent experience,,,,1,,,never,12,0.0 +23157,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,32,0.0 +18791,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,77,1.0 +2181,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,Pvt Ltd,1,162,0.0 +23931,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,10,,,never,53,0.0 +16466,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,13,10/49,Early Stage Startup,1,12,0.0 +33358,city_159,0.843,Female,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,1,6,1.0 +17268,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,1,31,0.0 +31935,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,,1,5,0.0 +24091,city_123,0.738,Male,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,Public Sector,>4,66,1.0 +6060,city_103,0.92,,Has relevent experience,no_enrollment,Phd,STEM,>20,500-999,NGO,>4,184,0.0 +9337,city_126,0.479,,Has relevent experience,Full time course,Graduate,STEM,5,,Public Sector,1,4,0.0 +15998,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,,,17,,,never,182,0.0 +21129,city_160,0.92,,No relevent experience,no_enrollment,Masters,STEM,8,5000-9999,Pvt Ltd,1,113,0.0 +3223,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,never,94,0.0 +28211,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,Humanities,10,100-500,Pvt Ltd,3,39,0.0 +18999,city_83,0.9229999999999999,,No relevent experience,Full time course,Graduate,STEM,2,100-500,NGO,1,61,0.0 +21176,city_175,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,Pvt Ltd,2,103,0.0 +32958,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,20,10000+,Pvt Ltd,1,7,0.0 +23835,city_103,0.92,,No relevent experience,no_enrollment,Graduate,No Major,3,10000+,Pvt Ltd,2,28,0.0 +25327,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,never,80,0.0 +27678,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,3,10000+,Pvt Ltd,2,11,0.0 +23741,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,2,89,1.0 +28820,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,Pvt Ltd,1,32,1.0 +17500,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,19,0.0 +14295,city_160,0.92,Male,Has relevent experience,no_enrollment,Primary School,,9,<10,NGO,2,157,0.0 +32617,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,never,110,0.0 +893,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,20,1000-4999,Pvt Ltd,>4,90,0.0 +17725,city_103,0.92,,Has relevent experience,Full time course,Masters,STEM,8,10000+,Pvt Ltd,1,80,0.0 +28991,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,,1,17,1.0 +10175,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,20,0.0 +1783,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,1,56,0.0 +14496,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,109,0.0 +9147,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,2,118,0.0 +17370,city_19,0.682,,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,72,1.0 +22997,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,3,9,0.0 +31011,city_73,0.754,,No relevent experience,no_enrollment,Graduate,STEM,9,10000+,Public Sector,>4,15,0.0 +20828,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,3,,,1,28,0.0 +2991,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,never,48,0.0 +30340,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Early Stage Startup,1,9,0.0 +7160,city_103,0.92,Male,No relevent experience,Full time course,High School,,4,,,1,111,1.0 +9448,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,28,0.0 +12062,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,17,1.0 +18498,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,109,0.0 +9485,city_104,0.924,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,3,35,0.0 +25817,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Funded Startup,1,3,0.0 +25834,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,1,,,never,192,0.0 +22816,city_98,0.9490000000000001,Male,No relevent experience,no_enrollment,Masters,Arts,>20,<10,Pvt Ltd,>4,136,0.0 +27753,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,never,34,0.0 +15597,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,9,,,>4,48,0.0 +23247,city_100,0.887,Male,Has relevent experience,Part time course,Graduate,STEM,4,50-99,Funded Startup,4,94,0.0 +4124,city_67,0.855,Male,No relevent experience,,High School,,7,,,never,18,0.0 +9598,city_118,0.722,,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,,1,12,1.0 +19454,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Funded Startup,1,172,1.0 +14642,city_36,0.893,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,166,0.0 +3438,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,2,28,1.0 +12474,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,Other,15,100-500,Pvt Ltd,4,42,0.0 +10669,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,<1,,,never,18,1.0 +23609,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,3,18,0.0 +32614,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,>4,9,0.0 +4568,city_13,0.8270000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,1,62,0.0 +12469,city_45,0.89,Male,Has relevent experience,no_enrollment,Primary School,,7,10/49,Pvt Ltd,2,20,0.0 +13864,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,1,51,0.0 +365,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,16,0.0 +6525,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,5,,,never,16,0.0 +26682,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,108,0.0 +19560,city_134,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,326,1.0 +33255,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,10,1.0 +32882,city_103,0.92,Male,No relevent experience,Full time course,High School,,5,,,never,53,0.0 +21225,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,1,17,0.0 +18441,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,56,1.0 +33049,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,20,0.0 +7710,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Pvt Ltd,>4,14,0.0 +11323,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,7,,,4,16,0.0 +32733,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,61,1.0 +25690,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,1,57,1.0 +12503,city_9,0.743,Female,No relevent experience,Full time course,High School,,4,,,never,22,0.0 +12310,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,2,500-999,,1,10,0.0 +15250,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,4,5000-9999,Pvt Ltd,1,127,0.0 +13277,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,26,0.0 +30041,city_149,0.6890000000000001,Male,No relevent experience,Full time course,High School,,1,,,1,30,1.0 +22238,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,>4,27,0.0 +9180,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,STEM,7,1000-4999,Pvt Ltd,1,34,0.0 +2015,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,48,1.0 +3758,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,,1,10,0.0 +31014,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,5000-9999,Pvt Ltd,4,62,0.0 +2311,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,17,0.0 +16796,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Pvt Ltd,1,54,0.0 +26094,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,8,,,never,9,0.0 +13138,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,144,0.0 +32165,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,>20,50-99,Pvt Ltd,3,42,0.0 +13547,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,4,100-500,Pvt Ltd,1,44,0.0 +10756,city_61,0.9129999999999999,,Has relevent experience,Part time course,Graduate,STEM,8,50-99,Pvt Ltd,1,28,0.0 +13583,city_36,0.893,,No relevent experience,no_enrollment,High School,,15,<10,Pvt Ltd,2,46,0.0 +23623,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,>4,25,0.0 +9001,city_146,0.735,,Has relevent experience,Full time course,Graduate,STEM,3,100-500,,,18,0.0 +16787,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,>4,154,0.0 +5775,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,2,25,0.0 +20785,city_28,0.9390000000000001,Male,No relevent experience,Full time course,High School,,3,50-99,Public Sector,1,30,0.0 +28699,city_16,0.91,Male,Has relevent experience,no_enrollment,,,4,100-500,Pvt Ltd,1,48,0.0 +24337,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,never,68,0.0 +22966,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,>4,84,0.0 +3133,city_157,0.769,,Has relevent experience,Full time course,Graduate,STEM,5,,,1,19,0.0 +32482,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,166,0.0 +29879,city_46,0.762,Male,Has relevent experience,,Phd,STEM,15,<10,Funded Startup,>4,19,0.0 +10209,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,2,145,0.0 +1926,city_123,0.738,,No relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,,44,0.0 +28490,city_167,0.9209999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,35,0.0 +8093,city_45,0.89,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,1,22,0.0 +7452,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,6,,,never,45,0.0 +17465,city_10,0.895,Female,No relevent experience,Full time course,Graduate,STEM,7,,NGO,1,21,1.0 +30817,city_160,0.92,,No relevent experience,Full time course,High School,,4,10000+,Pvt Ltd,1,4,0.0 +23295,city_123,0.738,Male,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,1,216,0.0 +12104,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,9,5000-9999,Pvt Ltd,,14,0.0 +5989,city_162,0.767,,No relevent experience,Full time course,Primary School,,3,,,1,50,1.0 +11542,city_27,0.848,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,4,139,0.0 +30339,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,Pvt Ltd,never,11,0.0 +11696,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,,NGO,1,77,0.0 +6449,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,never,8,0.0 +18824,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,Other,>20,10000+,Pvt Ltd,never,52,0.0 +23056,city_84,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,4,39,0.0 +299,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Public Sector,>4,32,0.0 +26304,city_54,0.856,Male,Has relevent experience,no_enrollment,Graduate,No Major,5,50-99,Pvt Ltd,1,83,0.0 +31586,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,1,4,0.0 +28453,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,1,18,0.0 +18859,city_162,0.767,Male,No relevent experience,Full time course,High School,,3,,,never,49,0.0 +23001,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,1,166,0.0 +16784,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10/49,Pvt Ltd,1,32,0.0 +22595,city_100,0.887,Male,Has relevent experience,no_enrollment,Primary School,,4,10/49,Pvt Ltd,1,14,0.0 +730,city_103,0.92,,Has relevent experience,no_enrollment,High School,,5,100-500,NGO,1,140,0.0 +12757,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Funded Startup,2,20,1.0 +32758,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,13,500-999,Pvt Ltd,3,23,0.0 +5306,city_103,0.92,,Has relevent experience,,,,10,<10,Funded Startup,3,14,0.0 +23328,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,45,1.0 +28336,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,52,0.0 +6304,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,19,1000-4999,Public Sector,>4,142,0.0 +32427,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,9,1000-4999,Public Sector,1,131,0.0 +31368,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,314,0.0 +13273,city_103,0.92,,No relevent experience,Full time course,Graduate,Humanities,<1,50-99,Public Sector,1,196,1.0 +31023,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Early Stage Startup,1,27,0.0 +16948,city_21,0.624,,No relevent experience,Full time course,,,2,,,never,61,0.0 +1161,city_103,0.92,Other,No relevent experience,Full time course,Graduate,STEM,6,,,2,82,0.0 +27629,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,>4,21,1.0 +21443,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,2,94,1.0 +13383,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,78,0.0 +10293,city_103,0.92,Male,No relevent experience,Part time course,,,9,,,2,77,1.0 +11265,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,105,0.0 +1973,city_126,0.479,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Public Sector,1,22,0.0 +14800,city_16,0.91,Female,Has relevent experience,no_enrollment,High School,,9,10/49,Pvt Ltd,2,12,0.0 +32820,city_126,0.479,Female,No relevent experience,Part time course,Masters,STEM,9,,,1,99,1.0 +30794,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,,4,76,0.0 +32341,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,,Pvt Ltd,never,9,1.0 +9499,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,4,100-500,Funded Startup,3,162,0.0 +23511,city_100,0.887,Male,No relevent experience,Part time course,Graduate,STEM,5,,,3,54,0.0 +20167,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,never,78,0.0 +16791,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,,,>4,140,1.0 +22494,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Funded Startup,1,5,1.0 +31405,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,8,,,3,110,1.0 +29916,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,>4,13,1.0 +12101,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,37,0.0 +12770,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,never,3,0.0 +22723,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,7,50-99,Pvt Ltd,1,85,0.0 +6025,city_64,0.6659999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,,1,14,0.0 +21276,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,94,0.0 +1943,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,3,,,1,9,1.0 +26974,city_103,0.92,Male,Has relevent experience,Full time course,High School,,6,100-500,Funded Startup,3,167,0.0 +30205,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,1,14,0.0 +10668,city_102,0.804,Male,No relevent experience,Full time course,High School,,3,1000-4999,Pvt Ltd,1,4,0.0 +7515,city_159,0.843,,No relevent experience,no_enrollment,Phd,STEM,9,10000+,Pvt Ltd,1,87,0.0 +27419,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,never,17,0.0 +1102,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,NGO,1,23,0.0 +23981,city_160,0.92,,No relevent experience,no_enrollment,Phd,Humanities,>20,1000-4999,Public Sector,>4,19,0.0 +6277,city_46,0.762,,No relevent experience,no_enrollment,Masters,Arts,9,10000+,Pvt Ltd,>4,10,0.0 +13345,city_165,0.903,,No relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Pvt Ltd,>4,92,0.0 +23325,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,4,,,never,43,1.0 +31769,city_36,0.893,Male,No relevent experience,no_enrollment,Masters,STEM,8,50-99,NGO,2,68,0.0 +18478,city_102,0.804,,No relevent experience,Full time course,Graduate,STEM,4,,,never,33,0.0 +20302,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,11,,,2,154,1.0 +16067,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,2,51,0.0 +6426,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,45,0.0 +1343,city_103,0.92,Other,Has relevent experience,no_enrollment,High School,,4,,,never,56,0.0 +28531,city_126,0.479,Male,No relevent experience,Full time course,Masters,Other,1,10/49,Other,,23,1.0 +13173,city_12,0.64,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,>4,30,0.0 +12256,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,1,50,1.0 +7612,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,4,,,2,14,0.0 +28866,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,NGO,2,12,0.0 +33128,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,163,0.0 +20747,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,never,17,0.0 +10240,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,,1,29,0.0 +15160,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,1,52,0.0 +12284,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Early Stage Startup,1,120,0.0 +25888,city_21,0.624,Male,No relevent experience,Full time course,High School,,6,,,never,44,1.0 +1427,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,67,0.0 +22403,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,Pvt Ltd,4,151,1.0 +21667,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,1,256,1.0 +25916,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,2,14,0.0 +12121,city_144,0.84,Male,No relevent experience,no_enrollment,High School,,3,,,never,14,0.0 +28320,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,3,81,1.0 +14522,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,2,100-500,,,37,1.0 +28500,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,<1,500-999,Pvt Ltd,1,22,0.0 +10371,city_103,0.92,Female,No relevent experience,no_enrollment,Phd,STEM,7,500-999,Public Sector,4,28,0.0 +10028,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,1,42,0.0 +29671,city_40,0.7759999999999999,Male,No relevent experience,Full time course,Graduate,STEM,9,,,1,50,0.0 +4482,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Funded Startup,1,105,0.0 +23392,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,never,162,1.0 +5879,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,4,6,0.0 +8861,city_160,0.92,,No relevent experience,no_enrollment,Masters,Humanities,2,<10,Early Stage Startup,1,43,0.0 +21196,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,2,41,0.0 +10724,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,1,40,0.0 +12657,city_138,0.836,,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,2,50,0.0 +2150,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,1,21,0.0 +24763,city_90,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,3,,,1,83,1.0 +21813,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,Pvt Ltd,1,14,0.0 +6480,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,1,26,0.0 +29174,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,90,0.0 +8007,city_16,0.91,Female,No relevent experience,Full time course,Graduate,STEM,2,<10,Pvt Ltd,2,122,0.0 +8388,city_23,0.899,Male,No relevent experience,Full time course,High School,,<1,,,never,37,0.0 +32631,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Public Sector,>4,5,1.0 +10116,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Funded Startup,1,78,0.0 +1708,city_36,0.893,Male,Has relevent experience,Full time course,High School,,5,,,2,36,1.0 +13487,city_67,0.855,Female,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Funded Startup,1,156,0.0 +24199,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,20,1000-4999,Pvt Ltd,2,14,0.0 +14341,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,24,0.0 +16990,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,97,1.0 +24834,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Public Sector,2,19,0.0 +16105,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,1,57,1.0 +10758,city_13,0.8270000000000001,Male,No relevent experience,Full time course,Graduate,STEM,12,,,never,3,0.0 +17702,city_162,0.767,Male,No relevent experience,Full time course,Masters,STEM,9,100-500,NGO,>4,24,1.0 +3144,city_160,0.92,Male,No relevent experience,no_enrollment,Masters,Other,>20,100-500,Public Sector,>4,34,0.0 +20359,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,50-99,Funded Startup,1,18,0.0 +30558,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,7,100-500,Funded Startup,2,53,1.0 +32546,city_160,0.92,Male,No relevent experience,no_enrollment,High School,,1,,Pvt Ltd,never,40,0.0 +20555,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,84,0.0 +12190,city_160,0.92,Male,Has relevent experience,Full time course,High School,,4,,,1,154,0.0 +30511,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,,,2,35,0.0 +16333,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,19,,,>4,14,1.0 +19605,city_126,0.479,,No relevent experience,,Graduate,STEM,1,100-500,Pvt Ltd,1,110,1.0 +14171,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,97,1.0 +10933,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,1,75,0.0 +14379,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,39,0.0 +11388,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,7,,,never,109,1.0 +28042,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Graduate,STEM,5,10000+,Pvt Ltd,1,58,0.0 +23013,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,35,1.0 +30970,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,5,100-500,Pvt Ltd,2,22,0.0 +9052,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,85,0.0 +5832,city_21,0.624,Male,Has relevent experience,Full time course,Primary School,,2,100-500,Public Sector,2,50,1.0 +26270,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,4,500-999,Funded Startup,3,127,1.0 +29151,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,276,0.0 +7545,city_165,0.903,,Has relevent experience,no_enrollment,Graduate,Arts,17,1000-4999,,3,47,0.0 +28589,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,2,16,0.0 +1709,city_165,0.903,Male,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,1,14,0.0 +21227,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,2,,,,26,1.0 +10205,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Funded Startup,2,64,0.0 +17483,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,5,,,1,10,1.0 +5710,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,13,5000-9999,Public Sector,2,88,0.0 +30916,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,5,500-999,Pvt Ltd,>4,46,0.0 +2832,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,4,29,0.0 +25810,city_116,0.743,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,,,2,31,0.0 +33068,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,9,0.0 +16735,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,2,28,1.0 +9930,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,2,121,0.0 +24345,city_28,0.9390000000000001,,No relevent experience,no_enrollment,High School,,1,1000-4999,Pvt Ltd,1,83,1.0 +700,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,500-999,Pvt Ltd,>4,23,0.0 +29600,city_21,0.624,Male,Has relevent experience,Full time course,High School,,9,100-500,Pvt Ltd,1,28,0.0 +19438,city_39,0.898,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,47,0.0 +19266,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,,1,141,0.0 +18670,city_54,0.856,Female,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,Funded Startup,1,162,0.0 +12660,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,1,45,0.0 +12129,city_173,0.878,Male,No relevent experience,no_enrollment,Primary School,,2,,,never,47,0.0 +13955,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,2,32,0.0 +18667,city_21,0.624,,Has relevent experience,Full time course,,,2,100-500,Pvt Ltd,1,12,0.0 +33153,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,Pvt Ltd,1,84,0.0 +14151,city_11,0.55,Male,Has relevent experience,Full time course,Graduate,STEM,4,<10,,1,69,1.0 +4046,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,24,0.0 +25432,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,6,,,1,3,1.0 +5978,city_21,0.624,Male,No relevent experience,Full time course,High School,,4,,Pvt Ltd,never,58,0.0 +32799,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,NGO,1,28,0.0 +273,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,,never,18,0.0 +10238,city_79,0.698,,Has relevent experience,Part time course,Graduate,STEM,5,,,1,17,0.0 +264,city_67,0.855,,No relevent experience,no_enrollment,High School,,8,,,1,80,0.0 +17510,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,8,,,never,124,0.0 +24901,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,,,3,,,never,47,0.0 +33318,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,5,100-500,Pvt Ltd,>4,91,1.0 +12800,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,16,10/49,Pvt Ltd,1,46,1.0 +17237,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,19,,,>4,13,1.0 +13992,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,4,136,0.0 +15125,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,>4,3,1.0 +15213,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,1,94,1.0 +889,city_159,0.843,,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Funded Startup,1,70,1.0 +28843,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,4,60,0.0 +25273,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,65,1.0 +29598,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,65,1.0 +21642,city_128,0.527,Male,Has relevent experience,Part time course,Masters,STEM,8,50-99,Pvt Ltd,>4,37,0.0 +25912,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,57,1.0 +29086,city_114,0.9259999999999999,Female,No relevent experience,Part time course,Graduate,STEM,5,10000+,Pvt Ltd,1,10,0.0 +6021,city_103,0.92,,Has relevent experience,,Masters,No Major,>20,100-500,Pvt Ltd,never,29,0.0 +25285,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Graduate,Humanities,<1,<10,NGO,1,18,1.0 +5180,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,11,1.0 +19649,city_21,0.624,Male,No relevent experience,no_enrollment,,,7,,,never,46,1.0 +31008,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,9,,,never,20,0.0 +9412,city_16,0.91,,No relevent experience,no_enrollment,High School,,5,,Pvt Ltd,1,70,0.0 +4133,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,<10,Pvt Ltd,never,144,0.0 +5875,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,5,<10,Early Stage Startup,never,152,0.0 +4536,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,No Major,10,,,4,13,0.0 +27046,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,42,0.0 +16041,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,4,,,never,55,0.0 +19718,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,17,500-999,,1,162,0.0 +4118,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,,1,44,0.0 +3867,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Early Stage Startup,1,24,0.0 +27539,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,14,10/49,Other,>4,188,0.0 +7765,city_90,0.698,Female,No relevent experience,Full time course,Graduate,STEM,2,,,never,18,1.0 +32605,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,3,155,0.0 +20048,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,316,0.0 +29460,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,,,1,55,1.0 +15004,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Early Stage Startup,2,130,0.0 +18404,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,,3,7,0.0 +4318,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,10,0.0 +674,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Early Stage Startup,>4,46,0.0 +32802,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,38,0.0 +11248,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Pvt Ltd,4,22,1.0 +13649,city_11,0.55,,No relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,1,156,1.0 +17132,city_103,0.92,Male,No relevent experience,Full time course,High School,,4,,,1,28,1.0 +8836,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Business Degree,5,1000-4999,Pvt Ltd,1,99,0.0 +1101,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,2,72,0.0 +8606,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,1,20,0.0 +14793,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,3,178,0.0 +10938,city_136,0.897,Male,No relevent experience,Full time course,Phd,STEM,14,10/49,Public Sector,1,12,1.0 +31862,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,NGO,4,50,0.0 +33330,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,500-999,Pvt Ltd,1,32,0.0 +28774,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,2,6,0.0 +31370,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,1000-4999,Pvt Ltd,4,6,0.0 +31628,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,<1,,,>4,125,1.0 +11275,city_150,0.698,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,150,0.0 +1866,city_70,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,1,47,1.0 +23958,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Funded Startup,1,48,0.0 +17281,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,2,55,1.0 +7739,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Pvt Ltd,1,28,0.0 +7155,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,>4,20,0.0 +6482,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Public Sector,1,10,0.0 +21474,city_159,0.843,,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Pvt Ltd,>4,22,0.0 +628,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,>4,4,1.0 +28931,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,No Major,16,,Pvt Ltd,1,104,0.0 +24975,city_57,0.866,,No relevent experience,no_enrollment,High School,,2,500-999,Pvt Ltd,never,148,0.0 +14107,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,15,0.0 +1471,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,Humanities,11,,,>4,166,0.0 +24191,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,Humanities,>20,,,4,163,0.0 +18127,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,1,12,1.0 +15336,city_76,0.698,,No relevent experience,no_enrollment,Masters,STEM,2,<10,Funded Startup,2,113,0.0 +1742,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,NGO,1,12,0.0 +21691,city_21,0.624,Female,No relevent experience,Full time course,High School,,3,,,never,242,0.0 +15753,city_11,0.55,Male,Has relevent experience,,Graduate,STEM,2,10/49,Pvt Ltd,1,3,1.0 +12402,city_157,0.769,Male,No relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,1,50,0.0 +30354,city_19,0.682,Male,No relevent experience,Full time course,Primary School,,3,,,never,73,0.0 +16447,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,6,0.0 +11933,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,46,1.0 +28214,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,12,0.0 +26261,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Public Sector,>4,7,1.0 +22946,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,1,63,0.0 +23366,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,2,54,0.0 +23311,city_90,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,13,10/49,NGO,3,50,0.0 +11964,city_101,0.5579999999999999,Male,No relevent experience,Full time course,Graduate,Other,4,,,1,43,1.0 +20012,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,70,0.0 +2549,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,140,0.0 +11673,city_67,0.855,Male,Has relevent experience,Part time course,Masters,STEM,1,10000+,Pvt Ltd,1,47,0.0 +22196,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,8,0.0 +21236,city_160,0.92,,No relevent experience,no_enrollment,Masters,STEM,11,1000-4999,Public Sector,1,98,0.0 +9385,city_136,0.897,,No relevent experience,no_enrollment,Masters,STEM,7,500-999,Pvt Ltd,1,27,0.0 +31873,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,3,88,0.0 +24850,city_149,0.6890000000000001,,No relevent experience,no_enrollment,,,3,,,never,43,0.0 +27373,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,1,88,0.0 +25179,city_21,0.624,,No relevent experience,,High School,,3,,,,145,0.0 +7786,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,48,1.0 +29672,city_84,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,24,1.0 +2108,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,78,0.0 +5991,city_162,0.767,,Has relevent experience,Part time course,Graduate,STEM,12,,,never,94,0.0 +27153,city_21,0.624,,No relevent experience,Full time course,High School,,6,,,never,196,0.0 +32082,city_100,0.887,Female,No relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,1,218,0.0 +15222,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,1,155,1.0 +31579,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,500-999,Pvt Ltd,>4,61,0.0 +32485,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,18,,,1,12,1.0 +26551,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,101,0.0 +7726,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,10/49,Early Stage Startup,1,202,1.0 +22372,city_21,0.624,,No relevent experience,Full time course,,,2,,,never,15,1.0 +20065,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,>4,90,0.0 +26582,city_128,0.527,Male,No relevent experience,Full time course,High School,,2,,,1,9,0.0 +23831,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,7,,,never,136,1.0 +3052,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,50-99,Funded Startup,1,26,1.0 +16437,city_100,0.887,,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,never,54,0.0 +14361,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,4,,,never,21,0.0 +3060,city_67,0.855,Male,No relevent experience,Part time course,Graduate,STEM,10,,,2,11,0.0 +22797,city_10,0.895,,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,109,0.0 +9067,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,,,57,0.0 +18803,city_136,0.897,Female,No relevent experience,Full time course,Graduate,STEM,4,,,never,146,0.0 +24456,city_21,0.624,Male,No relevent experience,Full time course,High School,,7,,,never,88,1.0 +14203,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,15,,,never,21,0.0 +31211,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,4,,Pvt Ltd,never,104,0.0 +26423,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,6,,,4,4,0.0 +14582,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,3,60,0.0 +6511,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,304,1.0 +8978,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,78,0.0 +9634,city_77,0.83,Male,Has relevent experience,no_enrollment,High School,,5,50-99,Pvt Ltd,never,162,0.0 +2780,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,2,3,0.0 +3048,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Graduate,Business Degree,2,50-99,Pvt Ltd,1,15,0.0 +15051,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,116,0.0 +17357,city_160,0.92,,No relevent experience,no_enrollment,Primary School,,<1,,,,166,0.0 +12504,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Funded Startup,2,83,1.0 +29357,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,1000-4999,NGO,>4,74,0.0 +15818,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Early Stage Startup,2,82,0.0 +26132,city_81,0.73,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Public Sector,>4,21,0.0 +3918,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,99,0.0 +19030,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,4,10/49,Pvt Ltd,2,45,0.0 +5734,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Early Stage Startup,2,3,1.0 +14847,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,34,1.0 +11713,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,111,1.0 +3846,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,16,50-99,Funded Startup,1,70,0.0 +29556,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,82,1.0 +8667,city_176,0.764,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,48,0.0 +11045,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,,,1,284,1.0 +9739,city_94,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,>4,24,1.0 +16711,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,8,10000+,Pvt Ltd,1,6,1.0 +29918,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,>20,,,1,8,1.0 +31713,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,2,1.0 +29486,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,8,,,1,9,1.0 +15264,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,10,,,never,278,0.0 +1075,city_98,0.9490000000000001,Male,No relevent experience,Part time course,Graduate,STEM,5,100-500,Pvt Ltd,2,76,0.0 +328,city_131,0.68,Male,No relevent experience,no_enrollment,Graduate,Business Degree,10,10/49,Pvt Ltd,never,22,0.0 +29628,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,36,0.0 +27370,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,,1,56,0.0 +18754,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,123,0.0 +12225,city_94,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,15,<10,Pvt Ltd,1,36,0.0 +30653,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,3,43,0.0 +9162,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Early Stage Startup,1,24,0.0 +27115,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,94,0.0 +3932,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Funded Startup,1,20,0.0 +25102,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,1,,,never,22,1.0 +15912,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,4,,Pvt Ltd,2,166,0.0 +33340,city_75,0.9390000000000001,Male,No relevent experience,Full time course,Graduate,STEM,5,,Pvt Ltd,never,48,0.0 +27462,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,10000+,Pvt Ltd,1,85,0.0 +4505,city_160,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Funded Startup,>4,15,0.0 +32415,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,NGO,never,24,0.0 +28509,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,1,34,1.0 +1641,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,never,17,0.0 +33245,city_145,0.555,Male,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,25,1.0 +10406,city_149,0.6890000000000001,,No relevent experience,Full time course,Primary School,,4,,,1,42,1.0 +1613,city_72,0.795,,Has relevent experience,,Graduate,STEM,10,,Pvt Ltd,never,54,0.0 +20608,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,5,,,never,24,1.0 +27880,city_90,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,60,1.0 +26398,city_100,0.887,,No relevent experience,no_enrollment,High School,,4,,,1,72,1.0 +7159,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Pvt Ltd,>4,26,0.0 +18281,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,Arts,16,,,1,28,0.0 +31967,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Early Stage Startup,never,102,0.0 +26955,city_16,0.91,Male,Has relevent experience,,Graduate,STEM,10,,,>4,13,0.0 +19290,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,18,0.0 +6838,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10/49,Pvt Ltd,1,284,0.0 +2353,city_21,0.624,Male,No relevent experience,Full time course,,,2,,,1,31,1.0 +26351,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,5000-9999,Public Sector,>4,28,1.0 +31075,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,1000-4999,Pvt Ltd,2,13,0.0 +10002,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,Public Sector,never,82,1.0 +12048,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,30,0.0 +19068,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,5,500-999,Pvt Ltd,1,30,0.0 +2501,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Other,6,100-500,Funded Startup,1,38,0.0 +20741,city_73,0.754,Male,Has relevent experience,Full time course,High School,,7,,,1,76,1.0 +10893,city_144,0.84,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,2,7,0.0 +31767,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Pvt Ltd,1,77,1.0 +27709,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,3,10/49,Early Stage Startup,1,21,0.0 +31782,city_16,0.91,,No relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,52,0.0 +28653,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,>4,29,1.0 +867,city_128,0.527,Male,No relevent experience,Full time course,High School,,4,,Pvt Ltd,never,56,1.0 +29820,city_103,0.92,Male,Has relevent experience,Full time course,High School,,8,10000+,Pvt Ltd,1,39,0.0 +31248,city_67,0.855,,No relevent experience,Full time course,Masters,Business Degree,1,500-999,Pvt Ltd,never,11,0.0 +32697,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,11,0.0 +26854,city_90,0.698,,No relevent experience,no_enrollment,High School,,1,,,never,98,0.0 +14848,city_101,0.5579999999999999,Male,No relevent experience,Part time course,Graduate,STEM,2,10/49,Pvt Ltd,never,71,1.0 +9503,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,22,0.0 +33304,city_106,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,8,,,1,23,1.0 +10653,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,1,332,0.0 +9094,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,81,0.0 +23715,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,5,,,1,62,0.0 +10885,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,11,1000-4999,Pvt Ltd,4,31,0.0 +28459,city_167,0.9209999999999999,Male,Has relevent experience,no_enrollment,High School,,14,100-500,Pvt Ltd,1,26,0.0 +6593,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,Other,>20,,,never,21,0.0 +14381,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,19,1.0 +13010,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Funded Startup,2,19,0.0 +6990,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,2,44,0.0 +21696,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,4,20,0.0 +18572,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,98,0.0 +9110,city_36,0.893,Male,Has relevent experience,Full time course,Graduate,STEM,9,,,4,178,0.0 +2800,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Funded Startup,2,62,0.0 +5366,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,81,0.0 +15705,city_162,0.767,Male,Has relevent experience,Full time course,Graduate,STEM,3,<10,Funded Startup,2,71,1.0 +13484,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,>4,72,0.0 +11347,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,45,0.0 +24895,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,NGO,2,17,1.0 +13858,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,146,0.0 +10611,city_71,0.884,Female,No relevent experience,no_enrollment,Phd,STEM,>20,50-99,Public Sector,>4,27,0.0 +19645,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,1,23,1.0 +17585,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,2,8,0.0 +32241,city_103,0.92,Male,Has relevent experience,,Graduate,STEM,8,10000+,Public Sector,never,36,0.0 +12794,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Pvt Ltd,>4,72,0.0 +21596,city_16,0.91,Male,No relevent experience,Part time course,Graduate,STEM,3,<10,Pvt Ltd,never,44,0.0 +6665,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,50,1.0 +7194,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,16,0.0 +2929,city_73,0.754,Male,Has relevent experience,Full time course,Graduate,STEM,10,,,2,31,1.0 +33054,city_103,0.92,Male,No relevent experience,Full time course,High School,,2,,,1,9,0.0 +8585,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Other,1,14,0.0 +15942,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,7,,Public Sector,2,310,0.0 +16470,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,94,0.0 +21956,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,3,9,1.0 +21692,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Funded Startup,1,88,0.0 +32945,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,<1,,,2,26,1.0 +11530,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,5,500-999,Pvt Ltd,1,11,0.0 +21105,city_41,0.8270000000000001,,No relevent experience,no_enrollment,Masters,Business Degree,2,1000-4999,Pvt Ltd,1,36,0.0 +17639,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,44,0.0 +22181,city_44,0.725,,No relevent experience,Full time course,Graduate,Other,7,,,never,112,1.0 +5176,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Funded Startup,2,46,1.0 +17931,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,28,1.0 +10923,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,20,10/49,Early Stage Startup,1,22,0.0 +18686,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,44,0.0 +16404,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,6,500-999,Pvt Ltd,3,32,0.0 +3353,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,19,100-500,Public Sector,>4,23,0.0 +24107,city_160,0.92,Male,Has relevent experience,,Graduate,STEM,13,,,>4,47,1.0 +3029,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Pvt Ltd,2,78,0.0 +24377,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,Other,7,1000-4999,Pvt Ltd,never,57,0.0 +11709,city_24,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,69,0.0 +6278,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,10000+,Public Sector,>4,69,0.0 +6157,city_104,0.924,Male,Has relevent experience,no_enrollment,Phd,STEM,12,<10,Funded Startup,1,51,0.0 +4487,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,1,84,0.0 +8111,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,,,42,0.0 +19832,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,11,50-99,Pvt Ltd,1,9,0.0 +30630,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,10,,,>4,6,1.0 +18835,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,No Major,3,,,1,33,1.0 +23987,city_152,0.698,Male,No relevent experience,Full time course,Graduate,STEM,3,10/49,,1,55,1.0 +24671,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Humanities,20,100-500,NGO,4,35,0.0 +17679,city_36,0.893,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,never,222,0.0 +21192,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,7,,,2,212,0.0 +4029,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,never,250,0.0 +28907,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,3,36,0.0 +7826,city_36,0.893,Male,Has relevent experience,no_enrollment,High School,,12,,,2,4,0.0 +20728,city_11,0.55,Male,Has relevent experience,no_enrollment,Masters,STEM,8,,,2,80,0.0 +15217,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,7,,,never,44,1.0 +19737,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,33,0.0 +10333,city_115,0.789,Male,No relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,1,46,0.0 +31422,city_123,0.738,Male,Has relevent experience,Full time course,Graduate,STEM,6,100-500,Pvt Ltd,1,39,0.0 +5763,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Primary School,,16,,,>4,154,0.0 +10648,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,never,111,0.0 +1922,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,>4,88,1.0 +8237,city_50,0.8959999999999999,,No relevent experience,Full time course,High School,,2,,,1,20,1.0 +26505,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,1,8,0.0 +4198,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,2,42,0.0 +12512,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,2,74,1.0 +6866,city_103,0.92,Male,No relevent experience,no_enrollment,,,4,,,never,154,0.0 +19120,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,116,0.0 +13759,city_67,0.855,Male,Has relevent experience,no_enrollment,High School,,7,5000-9999,Pvt Ltd,2,57,0.0 +3436,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,>4,12,0.0 +9290,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,>4,23,0.0 +10515,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,2,7,1.0 +20766,city_145,0.555,,Has relevent experience,no_enrollment,,,3,50-99,Pvt Ltd,2,5,1.0 +10364,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,11,10000+,Other,>4,107,0.0 +8906,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Pvt Ltd,2,11,0.0 +4182,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,85,0.0 +28141,city_21,0.624,,No relevent experience,no_enrollment,,,2,,,never,72,0.0 +12943,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,4,50,0.0 +26762,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,17,500-999,Pvt Ltd,2,73,0.0 +22100,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,9,100-500,Pvt Ltd,2,156,0.0 +5549,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,1000-4999,NGO,>4,172,0.0 +8001,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,74,0.0 +14176,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,,,2,4,1.0 +20988,city_103,0.92,Male,No relevent experience,Part time course,High School,,3,,,1,24,1.0 +10096,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,>4,99,0.0 +18688,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,,Pvt Ltd,1,2,1.0 +32990,city_21,0.624,,Has relevent experience,Full time course,,,3,,Early Stage Startup,>4,132,1.0 +18908,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,10,1000-4999,Public Sector,2,37,0.0 +8739,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,19,500-999,Early Stage Startup,>4,94,0.0 +29900,city_11,0.55,,No relevent experience,Full time course,Graduate,STEM,3,,,never,14,1.0 +6372,city_13,0.8270000000000001,Male,No relevent experience,no_enrollment,Masters,STEM,7,<10,,1,44,0.0 +15178,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,10000+,Pvt Ltd,>4,80,0.0 +9226,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,Other,1,<10,,,24,1.0 +819,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,27,1.0 +6014,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,1,154,0.0 +7537,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,11,,,1,55,0.0 +30685,city_103,0.92,,Has relevent experience,,,,6,,,,156,0.0 +31595,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,58,0.0 +23812,city_28,0.9390000000000001,Male,Has relevent experience,Full time course,High School,,8,,,never,180,0.0 +16712,city_74,0.579,Male,Has relevent experience,no_enrollment,Masters,Humanities,10,,,never,27,0.0 +7174,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,NGO,2,246,0.0 +28081,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,>20,100-500,Pvt Ltd,1,4,0.0 +1218,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,4,128,0.0 +8899,city_160,0.92,,No relevent experience,no_enrollment,Primary School,,<1,,,never,53,0.0 +5181,city_101,0.5579999999999999,Male,No relevent experience,no_enrollment,Primary School,,4,,,1,40,1.0 +840,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Early Stage Startup,1,102,0.0 +2935,city_67,0.855,Male,No relevent experience,Full time course,High School,,7,,,1,55,1.0 +5107,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,143,0.0 +4822,city_91,0.691,,Has relevent experience,Full time course,Graduate,STEM,4,,NGO,,34,1.0 +31920,city_83,0.9229999999999999,Male,No relevent experience,Full time course,Masters,STEM,4,,,1,83,0.0 +29220,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,3,,,never,9,0.0 +21501,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Pvt Ltd,2,81,1.0 +13500,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,1,62,1.0 +5210,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,12,0.0 +10443,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,2,41,0.0 +11068,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,,never,100,1.0 +27205,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,9,,,never,75,1.0 +9921,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,,Public Sector,4,86,0.0 +10186,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,17,1000-4999,Pvt Ltd,3,54,0.0 +28508,city_21,0.624,,No relevent experience,Full time course,High School,,3,,,never,145,0.0 +24021,city_165,0.903,Male,Has relevent experience,no_enrollment,Phd,STEM,4,5000-9999,Public Sector,2,21,1.0 +31611,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,44,1.0 +16681,city_138,0.836,Female,Has relevent experience,no_enrollment,Phd,Humanities,18,50-99,Pvt Ltd,>4,23,0.0 +12895,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,High School,,15,50-99,Pvt Ltd,3,72,0.0 +19356,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,4,65,0.0 +27663,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,24,0.0 +25779,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,17,,Public Sector,4,20,0.0 +24349,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Pvt Ltd,3,8,0.0 +25613,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,2,104,0.0 +27310,city_21,0.624,Male,No relevent experience,Full time course,High School,,4,,,never,44,0.0 +16109,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,>4,74,1.0 +30452,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,>4,8,0.0 +9378,city_28,0.9390000000000001,Other,No relevent experience,Full time course,Graduate,No Major,2,50-99,Pvt Ltd,1,45,0.0 +2688,city_73,0.754,Male,Has relevent experience,Full time course,Graduate,STEM,4,,,never,7,1.0 +21183,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,68,0.0 +8221,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,4,24,0.0 +4266,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,1,65,0.0 +15775,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,Arts,4,50-99,Funded Startup,1,31,0.0 +6604,city_173,0.878,,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,2,4,0.0 +31510,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,1,86,0.0 +19544,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,2,258,1.0 +10321,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,42,0.0 +5464,city_117,0.698,,Has relevent experience,Full time course,,,1,<10,Early Stage Startup,1,112,0.0 +17611,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,,,2,47,1.0 +11664,city_50,0.8959999999999999,,No relevent experience,no_enrollment,High School,,2,100-500,Pvt Ltd,2,27,0.0 +15407,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,6,1.0 +21266,city_103,0.92,,Has relevent experience,Full time course,Graduate,STEM,4,,,1,55,1.0 +25555,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,Public Sector,2,107,1.0 +32348,city_128,0.527,Male,No relevent experience,no_enrollment,Masters,STEM,4,,,3,48,0.0 +3858,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,4,1.0 +29955,city_155,0.556,,Has relevent experience,,Graduate,STEM,3,50-99,Pvt Ltd,1,50,1.0 +19583,city_160,0.92,Male,Has relevent experience,Full time course,High School,,15,10/49,Funded Startup,2,33,0.0 +12785,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,1,11,0.0 +21361,city_19,0.682,,No relevent experience,no_enrollment,Graduate,STEM,4,,,1,34,1.0 +11823,city_134,0.698,Male,No relevent experience,,,,3,,,never,37,0.0 +28681,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,1,,,1,23,1.0 +5030,city_24,0.698,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,11,0.0 +17170,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10/49,Pvt Ltd,>4,57,0.0 +16653,city_70,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,2,1000-4999,Other,1,140,1.0 +16347,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,1,,,never,16,0.0 +25439,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,32,0.0 +12595,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,,39,0.0 +11985,city_20,0.7959999999999999,,No relevent experience,no_enrollment,,,1,100-500,,,88,0.0 +20813,city_150,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,20,0.0 +24516,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,18,0.0 +17887,city_11,0.55,Male,Has relevent experience,,,,3,,,,28,1.0 +18968,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Arts,12,50-99,Pvt Ltd,3,28,0.0 +13347,city_21,0.624,,Has relevent experience,,,,9,10/49,Early Stage Startup,1,2,1.0 +3163,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,116,0.0 +22439,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,4,500-999,Pvt Ltd,1,24,0.0 +1323,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Funded Startup,1,26,0.0 +32115,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,24,0.0 +28992,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,330,0.0 +5703,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,,,never,44,0.0 +382,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Pvt Ltd,>4,107,0.0 +2075,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,1,11,1.0 +32708,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,1,107,0.0 +5562,city_73,0.754,,No relevent experience,no_enrollment,Primary School,,2,,Pvt Ltd,never,102,0.0 +24662,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,5000-9999,Pvt Ltd,2,158,0.0 +8887,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Funded Startup,1,59,1.0 +8769,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,74,0.0 +15599,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,60,1.0 +23446,city_138,0.836,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,12,1.0 +21751,city_100,0.887,,No relevent experience,no_enrollment,Masters,STEM,8,,,2,88,1.0 +15579,city_26,0.698,Male,Has relevent experience,Full time course,High School,,6,10/49,,1,78,0.0 +31529,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,50,0.0 +10730,city_16,0.91,Male,No relevent experience,Full time course,High School,,2,,,never,16,0.0 +29811,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,18,1000-4999,Pvt Ltd,1,111,0.0 +22534,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,7,5000-9999,Pvt Ltd,2,62,0.0 +11435,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,108,0.0 +9305,city_118,0.722,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,1,91,0.0 +14761,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Funded Startup,2,71,1.0 +20683,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,102,1.0 +3205,city_143,0.74,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,141,1.0 +10501,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,1,167,1.0 +11015,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,STEM,14,10/49,Pvt Ltd,>4,17,0.0 +20928,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,No Major,>20,,,>4,148,0.0 +20583,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,3,50-99,Funded Startup,2,60,0.0 +31675,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,never,12,0.0 +23684,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,NGO,1,166,0.0 +933,city_36,0.893,Male,No relevent experience,Part time course,High School,,5,50-99,Pvt Ltd,1,32,0.0 +33144,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,2,74,0.0 +3126,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,1,13,0.0 +9108,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,12,0.0 +18726,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,>4,41,0.0 +7772,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,,never,11,0.0 +27493,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,NGO,2,5,0.0 +31691,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,>4,32,0.0 +21156,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,78,1.0 +7968,city_16,0.91,,No relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,18,0.0 +9973,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,156,0.0 +18189,city_90,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,4,15,0.0 +12362,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Pvt Ltd,,28,1.0 +8547,city_16,0.91,Other,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,82,0.0 +2691,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,222,0.0 +13824,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,17,10000+,Pvt Ltd,>4,22,0.0 +9370,city_104,0.924,Male,Has relevent experience,no_enrollment,High School,,11,50-99,Pvt Ltd,1,36,0.0 +24630,city_90,0.698,,Has relevent experience,Full time course,Masters,STEM,9,100-500,Pvt Ltd,3,30,1.0 +28165,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,2,168,0.0 +25301,city_136,0.897,Male,No relevent experience,Part time course,Masters,STEM,3,50-99,Public Sector,3,156,0.0 +7828,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,29,1.0 +26339,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,,1,37,0.0 +20296,city_160,0.92,Female,Has relevent experience,Full time course,Graduate,STEM,5,,,4,41,1.0 +6355,city_152,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,12,1000-4999,Pvt Ltd,1,146,0.0 +22609,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,>4,37,0.0 +4730,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,>4,24,0.0 +28200,city_93,0.865,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Early Stage Startup,4,7,1.0 +20806,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,,,never,15,0.0 +16667,city_136,0.897,Male,Has relevent experience,,Graduate,STEM,7,50-99,Pvt Ltd,1,21,0.0 +24034,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,never,216,1.0 +27659,city_28,0.9390000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,8,10000+,Pvt Ltd,1,114,0.0 +28881,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,,Pvt Ltd,1,41,1.0 +22113,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,220,0.0 +2021,city_21,0.624,,No relevent experience,Full time course,High School,,4,<10,Early Stage Startup,,4,0.0 +16586,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,Pvt Ltd,4,34,0.0 +14728,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,>20,100-500,Pvt Ltd,1,26,0.0 +7713,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,>4,126,0.0 +32980,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,1,28,1.0 +26251,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Public Sector,2,135,0.0 +21255,city_99,0.915,Male,Has relevent experience,no_enrollment,High School,,>20,1000-4999,Pvt Ltd,2,26,0.0 +26830,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,2,10000+,Other,1,80,0.0 +6529,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Pvt Ltd,2,113,0.0 +9884,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,13,<10,Pvt Ltd,4,30,1.0 +8238,city_33,0.44799999999999995,,Has relevent experience,Part time course,Graduate,STEM,10,50-99,NGO,>4,48,1.0 +13251,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,8,,,never,110,0.0 +8086,city_90,0.698,Male,No relevent experience,Part time course,Masters,STEM,3,50-99,Pvt Ltd,3,149,0.0 +10607,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,39,1.0 +1719,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,4,7,0.0 +12133,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10000+,Pvt Ltd,2,18,0.0 +25630,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,Public Sector,2,16,0.0 +6079,city_67,0.855,Female,Has relevent experience,no_enrollment,Masters,STEM,12,,,never,50,0.0 +28767,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,30,1.0 +11164,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,3,47,0.0 +6849,city_143,0.74,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,never,31,0.0 +16729,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,43,0.0 +23197,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,3,69,0.0 +31519,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,4,,,never,37,1.0 +19450,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,20,0.0 +29499,city_19,0.682,Other,No relevent experience,Full time course,Graduate,Other,13,,,2,42,0.0 +3716,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Early Stage Startup,1,23,0.0 +23519,city_103,0.92,Female,No relevent experience,Part time course,Graduate,STEM,3,,,never,45,0.0 +29485,city_99,0.915,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,48,1.0 +25346,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,14,1.0 +28853,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Humanities,4,,,2,76,1.0 +9687,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Public Sector,>4,140,0.0 +14943,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,12,1000-4999,Pvt Ltd,>4,36,1.0 +3746,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Funded Startup,never,55,0.0 +8270,city_45,0.89,,No relevent experience,Full time course,High School,,4,,,never,326,1.0 +24427,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,7,0.0 +28474,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,4,19,0.0 +28418,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,33,0.0 +26477,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Pvt Ltd,1,240,0.0 +32559,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,21,0.0 +20681,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,4,15,0.0 +26015,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,2,45,0.0 +30569,city_141,0.763,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,Pvt Ltd,2,50,0.0 +1735,city_149,0.6890000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Funded Startup,1,63,0.0 +27272,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,6,50-99,NGO,1,39,0.0 +19059,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,5,,,1,18,0.0 +9111,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Early Stage Startup,1,165,0.0 +12477,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,<10,Pvt Ltd,>4,62,0.0 +1616,city_76,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,7,100-500,Pvt Ltd,1,27,0.0 +24564,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,72,0.0 +13922,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,3,50-99,Pvt Ltd,1,62,0.0 +2029,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,50-99,Funded Startup,2,4,0.0 +17030,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Public Sector,>4,3,0.0 +20529,city_101,0.5579999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,1,100,1.0 +25583,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,10,,,1,79,1.0 +6958,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,139,0.0 +20341,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,3,10000+,Pvt Ltd,1,47,0.0 +15199,city_103,0.92,,Has relevent experience,Part time course,Graduate,Business Degree,14,<10,Pvt Ltd,1,9,1.0 +25388,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,3,10000+,Pvt Ltd,1,22,1.0 +2602,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,222,0.0 +3729,city_103,0.92,Male,Has relevent experience,Full time course,High School,,5,1000-4999,Pvt Ltd,1,34,0.0 +28089,city_28,0.9390000000000001,Female,No relevent experience,Part time course,Graduate,STEM,4,50-99,Pvt Ltd,1,24,0.0 +21471,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,43,1.0 +8251,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,,1,194,0.0 +28157,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,3,7,0.0 +1294,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,10,100-500,Other,never,40,1.0 +31964,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,16,<10,Funded Startup,1,57,0.0 +33081,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,16,100-500,Pvt Ltd,1,105,0.0 +13016,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,,2,61,0.0 +15949,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,,,2,18,0.0 +26687,city_114,0.9259999999999999,Female,No relevent experience,no_enrollment,Masters,STEM,6,<10,Public Sector,>4,4,0.0 +4653,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,7,,Pvt Ltd,never,22,0.0 +6800,city_123,0.738,,Has relevent experience,Full time course,Graduate,STEM,13,100-500,,,73,0.0 +21215,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,43,0.0 +11037,city_71,0.884,Male,Has relevent experience,no_enrollment,High School,,10,,,1,96,0.0 +9597,city_16,0.91,,No relevent experience,Full time course,Graduate,STEM,1,,,1,26,1.0 +17642,city_134,0.698,,No relevent experience,no_enrollment,,,,,,never,33,0.0 +7590,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,176,0.0 +10631,city_21,0.624,Male,No relevent experience,Full time course,Masters,Other,1,50-99,Pvt Ltd,never,20,1.0 +19448,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,2,314,1.0 +21608,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,13,500-999,Pvt Ltd,>4,5,0.0 +31953,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,3,<10,Pvt Ltd,2,74,0.0 +3961,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,<1,100-500,Funded Startup,1,103,0.0 +7451,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,33,1.0 +2384,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,9,500-999,Pvt Ltd,>4,108,0.0 +24511,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,NGO,1,72,0.0 +31932,city_83,0.9229999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,56,1.0 +10365,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,118,0.0 +26853,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,3,<10,NGO,1,72,1.0 +19495,city_104,0.924,,No relevent experience,Full time course,,,2,<10,Early Stage Startup,never,84,0.0 +15017,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,4,,,2,25,0.0 +28860,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Funded Startup,1,90,0.0 +20171,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,1,29,0.0 +2975,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,20,10/49,Pvt Ltd,1,13,0.0 +31553,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,,2,64,0.0 +16892,city_142,0.727,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,3,94,1.0 +26849,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,97,1.0 +26067,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,5,1000-4999,Pvt Ltd,>4,14,1.0 +14073,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,11,10/49,Funded Startup,1,90,0.0 +5250,city_103,0.92,,Has relevent experience,,Phd,STEM,3,,Pvt Ltd,never,94,0.0 +2994,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,1,6,0.0 +7167,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10/49,,1,8,0.0 +30284,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,15,0.0 +18309,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,10,,,never,56,1.0 +18951,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,3,100,0.0 +14133,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,9,50-99,Funded Startup,2,22,0.0 +32615,city_160,0.92,Male,No relevent experience,no_enrollment,Primary School,,<1,1000-4999,Public Sector,2,85,0.0 +29968,city_115,0.789,Female,No relevent experience,Full time course,Graduate,STEM,3,,,1,75,1.0 +27421,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,43,1.0 +17508,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,2,0.0 +19407,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Pvt Ltd,4,43,0.0 +7721,city_98,0.9490000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Funded Startup,2,35,0.0 +11577,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,4,100-500,Pvt Ltd,3,29,0.0 +11498,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,,Early Stage Startup,never,48,1.0 +7278,city_74,0.579,,No relevent experience,Part time course,High School,,3,,,,21,1.0 +27202,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,1,50,1.0 +4016,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Public Sector,2,78,0.0 +24248,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Primary School,,3,50-99,Pvt Ltd,never,86,0.0 +7412,city_104,0.924,Male,No relevent experience,Full time course,High School,,1,50-99,Pvt Ltd,1,39,0.0 +1874,city_123,0.738,,No relevent experience,Full time course,Graduate,STEM,4,,,,9,1.0 +3145,city_93,0.865,Male,Has relevent experience,no_enrollment,High School,,16,500-999,Pvt Ltd,1,104,0.0 +2939,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,3,100,0.0 +14043,city_158,0.7659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,97,1.0 +26891,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,4,68,0.0 +23391,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,Pvt Ltd,never,31,0.0 +12375,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,<1,50-99,,2,36,1.0 +23903,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,83,1.0 +10615,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,2,29,1.0 +31171,city_101,0.5579999999999999,Male,No relevent experience,Part time course,Graduate,STEM,1,10/49,,1,5,0.0 +23083,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,,3,108,0.0 +33131,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,3,143,0.0 +3674,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Public Sector,2,202,0.0 +17093,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,53,0.0 +31987,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,2,500-999,,1,4,0.0 +6696,city_89,0.925,,No relevent experience,Full time course,Masters,STEM,15,<10,Pvt Ltd,2,83,0.0 +20301,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,102,0.0 +24874,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,3,10000+,,3,210,0.0 +29819,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Funded Startup,1,34,0.0 +11499,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,2,76,0.0 +30715,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,4,0.0 +18813,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,5,,,1,140,1.0 +20220,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,136,1.0 +3581,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,8,,,1,79,0.0 +28587,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,NGO,2,8,0.0 +1671,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,<1,,,never,105,0.0 +28977,city_83,0.9229999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,,,4,33,0.0 +16222,city_103,0.92,Male,No relevent experience,Part time course,High School,,5,,,1,96,0.0 +15399,city_116,0.743,Female,Has relevent experience,no_enrollment,Masters,Other,9,100-500,Pvt Ltd,4,9,0.0 +14830,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,17,0.0 +16330,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,3,5000-9999,Pvt Ltd,1,63,1.0 +33380,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,2,168,0.0 +977,city_103,0.92,Male,Has relevent experience,Full time course,High School,,5,,,1,54,0.0 +681,city_65,0.802,Male,Has relevent experience,Part time course,Graduate,No Major,9,10000+,Pvt Ltd,1,13,0.0 +7495,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,110,1.0 +30418,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,2,71,0.0 +16969,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,No Major,>20,5000-9999,Pvt Ltd,>4,12,0.0 +18480,city_138,0.836,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,never,43,0.0 +22044,city_46,0.762,,Has relevent experience,,Graduate,STEM,7,,,never,35,0.0 +9203,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,43,0.0 +15897,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Public Sector,1,30,0.0 +13624,city_138,0.836,,Has relevent experience,Part time course,Masters,STEM,5,10/49,Pvt Ltd,1,150,0.0 +20062,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,4,124,0.0 +9855,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,57,0.0 +26006,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,5,0.0 +8782,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,7,10/49,Pvt Ltd,>4,50,0.0 +19931,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,3,,,2,122,1.0 +13007,city_103,0.92,Male,No relevent experience,Part time course,Masters,STEM,3,100-500,Pvt Ltd,1,28,0.0 +10219,city_98,0.9490000000000001,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,111,0.0 +27783,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,16,50-99,Pvt Ltd,1,66,0.0 +19131,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,2,10000+,Pvt Ltd,1,6,0.0 +7956,city_102,0.804,Male,No relevent experience,,Masters,STEM,6,,,,174,0.0 +3845,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,>4,106,0.0 +28624,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Masters,STEM,17,10/49,Pvt Ltd,1,14,0.0 +19669,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,7,10/49,Pvt Ltd,1,28,0.0 +27715,city_104,0.924,Male,No relevent experience,no_enrollment,High School,,>20,<10,Pvt Ltd,>4,35,0.0 +7190,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,,3,168,0.0 +28075,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,,1,112,0.0 +32502,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,312,0.0 +28517,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,12,10/49,Funded Startup,2,14,0.0 +2572,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,never,95,0.0 +8634,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,50,0.0 +24281,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,6,50-99,Pvt Ltd,2,103,0.0 +16479,city_100,0.887,Male,No relevent experience,no_enrollment,High School,,6,100-500,Pvt Ltd,1,4,1.0 +29705,city_21,0.624,Other,Has relevent experience,Part time course,,,<1,10/49,Pvt Ltd,1,200,1.0 +5311,city_100,0.887,,No relevent experience,Part time course,Graduate,STEM,>20,,,2,12,1.0 +32590,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,56,1.0 +13575,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,53,0.0 +19782,city_21,0.624,Female,Has relevent experience,Full time course,Graduate,STEM,6,50-99,Pvt Ltd,3,59,0.0 +14336,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,NGO,2,14,0.0 +4335,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Pvt Ltd,>4,142,0.0 +26182,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,>4,17,0.0 +31612,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,2,14,0.0 +23175,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Arts,5,100-500,Pvt Ltd,,80,0.0 +15041,city_103,0.92,Other,No relevent experience,no_enrollment,Graduate,STEM,13,10000+,Public Sector,>4,13,0.0 +26416,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,never,3,0.0 +26048,city_103,0.92,Male,No relevent experience,Full time course,High School,,6,,,1,73,0.0 +3162,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,500-999,Pvt Ltd,4,48,0.0 +4880,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,>4,50,0.0 +23144,city_175,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,6,10/49,Pvt Ltd,>4,14,0.0 +10996,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,96,0.0 +22619,city_76,0.698,,No relevent experience,Full time course,Graduate,STEM,4,,Pvt Ltd,1,156,1.0 +15968,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,3,0.0 +33150,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,never,4,1.0 +33056,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Funded Startup,1,12,1.0 +9264,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10000+,Pvt Ltd,4,17,0.0 +28291,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Other,1,63,0.0 +4392,city_70,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,2,10000+,Pvt Ltd,1,22,0.0 +3300,city_144,0.84,,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Pvt Ltd,3,52,0.0 +30825,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,2,10000+,,never,34,0.0 +30500,city_104,0.924,Male,Has relevent experience,Full time course,High School,,10,,,1,79,0.0 +22662,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,107,0.0 +10417,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,18,50-99,Pvt Ltd,1,92,1.0 +6777,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,6,1000-4999,Pvt Ltd,2,14,0.0 +12333,city_143,0.74,,No relevent experience,no_enrollment,Graduate,STEM,3,,,,46,1.0 +11021,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,4,16,0.0 +241,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,4,196,0.0 +30935,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,100-500,Pvt Ltd,1,42,0.0 +29164,city_103,0.92,Male,Has relevent experience,Part time course,Masters,Business Degree,11,10000+,Public Sector,3,60,0.0 +19711,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,138,1.0 +4775,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,68,0.0 +26429,city_45,0.89,Male,No relevent experience,Full time course,Masters,Humanities,2,,,1,6,0.0 +8464,city_74,0.579,,Has relevent experience,no_enrollment,Graduate,STEM,2,,,,62,1.0 +21021,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Funded Startup,1,107,0.0 +29504,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Public Sector,>4,55,0.0 +898,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,High School,,15,10/49,Pvt Ltd,2,32,1.0 +10524,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,174,0.0 +22051,city_46,0.762,Male,Has relevent experience,no_enrollment,Masters,STEM,4,,Pvt Ltd,3,34,1.0 +28245,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,>4,3,0.0 +28221,city_160,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,2,,,1,20,1.0 +9917,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,,94,0.0 +24567,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,>4,20,1.0 +14526,city_152,0.698,Male,Has relevent experience,Full time course,Masters,STEM,14,50-99,Pvt Ltd,2,6,0.0 +32662,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,3,112,1.0 +9853,city_176,0.764,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Funded Startup,1,45,0.0 +20176,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,2,,,never,12,0.0 +29611,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Pvt Ltd,>4,134,1.0 +27473,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,9,1.0 +5237,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,No Major,6,1000-4999,Pvt Ltd,>4,48,0.0 +1331,city_41,0.8270000000000001,Male,Has relevent experience,Full time course,Masters,STEM,7,500-999,Funded Startup,2,92,0.0 +19844,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Public Sector,2,160,0.0 +6700,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,>4,40,0.0 +21080,city_94,0.698,,Has relevent experience,Part time course,Graduate,STEM,4,,,1,105,1.0 +10257,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,160,0.0 +26844,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,50-99,Pvt Ltd,1,103,0.0 +31093,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,16,,,>4,78,1.0 +15688,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,2,9,0.0 +24563,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Early Stage Startup,1,40,1.0 +26780,city_136,0.897,Male,Has relevent experience,Full time course,Masters,STEM,<1,,,2,14,0.0 +25317,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,3,198,1.0 +33374,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,,,10,,,2,3,0.0 +5396,city_102,0.804,Male,No relevent experience,Full time course,High School,,5,,,1,17,0.0 +23642,city_11,0.55,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,never,37,1.0 +2283,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,2,16,0.0 +29822,city_118,0.722,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,13,0.0 +5555,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,20,10000+,Public Sector,1,14,0.0 +29851,city_57,0.866,Male,Has relevent experience,Full time course,High School,,3,,,1,155,0.0 +20294,city_20,0.7959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,3,77,0.0 +24562,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,36,0.0 +1485,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,,15,50-99,Pvt Ltd,>4,42,0.0 +7471,city_76,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,11,<10,Pvt Ltd,2,10,0.0 +10243,city_16,0.91,Male,No relevent experience,Full time course,High School,,4,,,1,14,0.0 +1051,city_99,0.915,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,16,1.0 +27955,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,>4,116,1.0 +5490,city_103,0.92,Male,No relevent experience,Full time course,High School,,4,,Pvt Ltd,never,310,0.0 +16583,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,<1,,,never,53,1.0 +32032,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,NGO,1,70,0.0 +5454,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,15,50-99,Early Stage Startup,1,22,0.0 +3058,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,17,500-999,Pvt Ltd,1,41,0.0 +4705,city_67,0.855,Female,Has relevent experience,no_enrollment,Graduate,Humanities,3,50-99,Pvt Ltd,3,66,0.0 +14732,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Phd,STEM,4,,Public Sector,1,13,0.0 +26569,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,47,0.0 +33256,city_70,0.698,Male,No relevent experience,Full time course,Graduate,STEM,2,,,2,106,0.0 +5789,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,1,24,1.0 +28019,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,No Major,2,,,2,11,1.0 +21908,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,>4,146,0.0 +16494,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,50-99,Early Stage Startup,3,40,0.0 +21446,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,2,50-99,Funded Startup,1,19,1.0 +12707,city_27,0.848,Male,Has relevent experience,Full time course,Graduate,STEM,>20,,,3,34,0.0 +14283,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,1,16,0.0 +15959,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,,4,51,0.0 +29154,city_103,0.92,Male,No relevent experience,,Masters,Humanities,12,,,1,142,1.0 +11379,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,7,,,never,88,0.0 +9401,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Funded Startup,2,76,0.0 +22256,city_26,0.698,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,59,0.0 +12452,city_102,0.804,,No relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,43,0.0 +7723,city_90,0.698,Female,Has relevent experience,no_enrollment,Masters,STEM,16,10/49,Funded Startup,1,22,0.0 +20075,city_16,0.91,,No relevent experience,no_enrollment,Graduate,Humanities,<1,<10,Early Stage Startup,1,131,0.0 +8999,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Early Stage Startup,1,3,1.0 +28690,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,16,0.0 +16770,city_16,0.91,Female,No relevent experience,no_enrollment,Masters,STEM,3,<10,Early Stage Startup,1,59,1.0 +3329,city_21,0.624,Female,No relevent experience,Full time course,High School,,5,,Pvt Ltd,never,110,1.0 +1553,city_123,0.738,,Has relevent experience,Full time course,Masters,STEM,8,10000+,Pvt Ltd,,34,0.0 +8773,city_73,0.754,Male,Has relevent experience,no_enrollment,,,10,10/49,Pvt Ltd,1,16,0.0 +1162,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,3,100,0.0 +32989,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Humanities,3,1000-4999,NGO,1,19,0.0 +30888,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,34,0.0 +27188,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,43,0.0 +20136,city_36,0.893,Male,Has relevent experience,Full time course,Graduate,STEM,>20,10/49,Pvt Ltd,1,48,0.0 +2836,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,3,12,0.0 +861,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,2,262,0.0 +31506,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,2,21,0.0 +21960,city_102,0.804,Female,No relevent experience,no_enrollment,Graduate,Humanities,1,,,1,190,0.0 +6385,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Funded Startup,2,41,0.0 +26170,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,100-500,Pvt Ltd,1,222,1.0 +32328,city_143,0.74,Female,No relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,91,0.0 +27935,city_65,0.802,Male,No relevent experience,Full time course,Graduate,STEM,9,100-500,Pvt Ltd,never,14,0.0 +13265,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,3,98,0.0 +27763,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,19,0.0 +18895,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,,2,18,0.0 +8661,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,3,3,0.0 +5139,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,never,80,0.0 +9801,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,2,87,0.0 +19670,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,1,56,1.0 +13713,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,10000+,Public Sector,1,328,0.0 +22355,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,>4,17,0.0 +20277,city_103,0.92,,No relevent experience,Part time course,Graduate,STEM,<1,100-500,,never,74,0.0 +17076,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,1,37,0.0 +11496,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Primary School,,5,,,never,52,0.0 +20258,city_46,0.762,,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Funded Startup,1,21,0.0 +21784,city_16,0.91,Male,Has relevent experience,no_enrollment,,,>20,,,2,300,0.0 +16644,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10/49,Pvt Ltd,2,92,0.0 +14396,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,13,0.0 +29130,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,161,1.0 +11557,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Pvt Ltd,never,34,0.0 +23230,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,8,0.0 +24420,city_136,0.897,Male,Has relevent experience,no_enrollment,Phd,STEM,10,100-500,Pvt Ltd,>4,226,0.0 +32391,city_74,0.579,Male,No relevent experience,Part time course,High School,,3,,Pvt Ltd,never,65,0.0 +3301,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,146,0.0 +22944,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,34,0.0 +8776,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,NGO,1,21,0.0 +26043,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,84,0.0 +32512,city_64,0.6659999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Pvt Ltd,1,45,0.0 +9168,city_16,0.91,,No relevent experience,no_enrollment,,,2,,,never,36,0.0 +27993,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,4,113,1.0 +5061,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,9,,,never,150,0.0 +19716,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,Pvt Ltd,1,6,0.0 +32221,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,15,100-500,Pvt Ltd,3,4,0.0 +13378,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Funded Startup,1,198,0.0 +24146,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,135,0.0 +10170,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,9,100-500,Funded Startup,1,40,0.0 +19805,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,6,1.0 +7542,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,58,0.0 +7256,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,4,,,1,88,1.0 +19374,city_11,0.55,,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Early Stage Startup,1,29,0.0 +30694,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,>4,168,0.0 +12107,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,never,16,0.0 +6608,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Pvt Ltd,1,192,0.0 +27482,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,2,36,1.0 +9366,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,never,35,1.0 +24172,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,>4,53,1.0 +25410,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,1,74,1.0 +32351,city_98,0.9490000000000001,Other,No relevent experience,no_enrollment,Masters,STEM,9,50-99,,1,88,0.0 +23481,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,43,1.0 +6494,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,41,1.0 +14572,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Public Sector,4,33,1.0 +6220,city_77,0.83,,No relevent experience,no_enrollment,High School,,2,,,never,2,0.0 +23388,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,9,,,2,25,1.0 +18543,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,10,,Public Sector,1,22,0.0 +31280,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,8,0.0 +12671,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,1,,,1,42,1.0 +11676,city_117,0.698,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,72,1.0 +33238,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,149,0.0 +32215,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,49,0.0 +2904,city_102,0.804,Male,Has relevent experience,no_enrollment,High School,,5,,,1,82,0.0 +17398,city_162,0.767,,Has relevent experience,,Graduate,STEM,9,,,1,50,1.0 +1338,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,11,<10,Pvt Ltd,never,62,0.0 +7580,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,212,1.0 +19749,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Pvt Ltd,>4,176,0.0 +28748,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,14,500-999,Public Sector,1,8,0.0 +17073,city_78,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Early Stage Startup,never,24,1.0 +17226,city_21,0.624,Male,No relevent experience,no_enrollment,,,1,,,never,31,0.0 +32846,city_19,0.682,Male,No relevent experience,Full time course,Graduate,STEM,2,,,2,8,1.0 +16388,city_102,0.804,,Has relevent experience,Full time course,High School,,6,,,1,99,0.0 +27875,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Early Stage Startup,>4,89,0.0 +32968,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,50-99,,1,32,0.0 +1652,city_115,0.789,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,156,1.0 +20060,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,12,,Public Sector,,35,0.0 +10992,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,Humanities,1,1000-4999,Pvt Ltd,1,26,0.0 +18654,city_74,0.579,Female,No relevent experience,no_enrollment,High School,,3,,,never,218,0.0 +6627,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,1,6,0.0 +15800,city_114,0.9259999999999999,,Has relevent experience,Full time course,Graduate,STEM,3,,,1,54,0.0 +30730,city_136,0.897,,No relevent experience,Full time course,High School,,4,,,2,14,0.0 +19049,city_44,0.725,,No relevent experience,Full time course,Masters,STEM,8,,,1,27,0.0 +21403,city_101,0.5579999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,4,<10,,2,19,0.0 +25998,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,2,47,0.0 +23807,city_118,0.722,,No relevent experience,no_enrollment,Masters,STEM,12,,,>4,98,0.0 +30378,city_104,0.924,,Has relevent experience,no_enrollment,Masters,STEM,8,,,never,40,0.0 +11092,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,2,39,0.0 +4657,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,,,>20,,,never,52,0.0 +9316,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,,2,28,1.0 +31771,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,182,0.0 +17742,city_150,0.698,,No relevent experience,Full time course,Graduate,STEM,7,100-500,Pvt Ltd,2,44,0.0 +26947,city_23,0.899,Male,No relevent experience,no_enrollment,Masters,Other,16,,,never,35,0.0 +4708,city_20,0.7959999999999999,Male,Has relevent experience,Full time course,Graduate,Arts,9,,Funded Startup,1,29,0.0 +30391,city_16,0.91,Male,No relevent experience,Full time course,High School,,4,,,1,78,0.0 +16095,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,7,<10,Pvt Ltd,>4,125,0.0 +21031,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,1,,,1,35,1.0 +24770,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,4,69,0.0 +11892,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Early Stage Startup,1,52,0.0 +15315,city_89,0.925,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,1,90,0.0 +31497,city_67,0.855,Male,Has relevent experience,no_enrollment,High School,,17,,,1,56,0.0 +18134,city_175,0.7759999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,,,1,153,0.0 +21701,city_123,0.738,,Has relevent experience,Full time course,Graduate,STEM,5,100-500,Pvt Ltd,never,40,0.0 +3742,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,11,10/49,Pvt Ltd,>4,47,0.0 +2198,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,6,1000-4999,Pvt Ltd,1,17,1.0 +31698,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,51,1.0 +364,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,>4,23,0.0 +5815,city_104,0.924,Male,Has relevent experience,no_enrollment,High School,,>20,,,>4,80,0.0 +24632,city_160,0.92,,No relevent experience,no_enrollment,Phd,STEM,>20,5000-9999,Public Sector,>4,19,0.0 +31830,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,Other,10,5000-9999,Public Sector,1,7,0.0 +19277,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,2,100,1.0 +9394,city_128,0.527,Male,No relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,15,0.0 +14380,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,9,50-99,Pvt Ltd,1,9,0.0 +28067,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Public Sector,>4,36,0.0 +28108,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,1,72,1.0 +27662,city_136,0.897,Male,Has relevent experience,Full time course,Masters,STEM,7,,,1,6,1.0 +24805,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,25,0.0 +27079,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,19,<10,Funded Startup,1,41,0.0 +15813,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,9,,,1,42,0.0 +30499,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,190,0.0 +22287,city_176,0.764,Male,Has relevent experience,,Masters,STEM,14,100-500,NGO,1,51,0.0 +1912,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,1,,,never,162,1.0 +16545,city_28,0.9390000000000001,Male,No relevent experience,Full time course,High School,,2,,,never,46,0.0 +18973,city_36,0.893,,Has relevent experience,no_enrollment,High School,,>20,10000+,Pvt Ltd,>4,35,0.0 +3692,city_46,0.762,Male,Has relevent experience,Part time course,Graduate,STEM,12,500-999,Pvt Ltd,2,70,0.0 +16292,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,never,50,1.0 +19090,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,>4,16,0.0 +32807,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,5,50-99,Pvt Ltd,4,6,0.0 +2713,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,9,0.0 +21486,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,2,34,0.0 +27986,city_45,0.89,Female,Has relevent experience,no_enrollment,High School,,16,1000-4999,Pvt Ltd,3,48,0.0 +27288,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,5,<10,Early Stage Startup,1,98,1.0 +32562,city_126,0.479,,Has relevent experience,no_enrollment,,,18,,,never,61,1.0 +33235,city_21,0.624,Male,No relevent experience,Full time course,High School,,4,,,never,74,1.0 +25059,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Phd,STEM,>20,<10,Early Stage Startup,>4,17,0.0 +10154,city_67,0.855,Female,No relevent experience,Full time course,Graduate,STEM,14,,,1,156,0.0 +28567,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,5,,,>4,8,0.0 +27480,city_104,0.924,Male,Has relevent experience,Full time course,Graduate,STEM,6,,,1,45,0.0 +33013,city_102,0.804,Male,No relevent experience,Full time course,High School,,6,10/49,Early Stage Startup,1,43,0.0 +14763,city_102,0.804,Male,Has relevent experience,no_enrollment,Primary School,,11,,,>4,78,0.0 +15612,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,never,28,0.0 +15052,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,1,44,0.0 +15045,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,,3,100,0.0 +1606,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Funded Startup,1,116,0.0 +19973,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,1,48,0.0 +12198,city_128,0.527,Male,No relevent experience,no_enrollment,Graduate,STEM,3,500-999,Funded Startup,1,30,0.0 +27791,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,5,<10,Early Stage Startup,1,17,1.0 +23321,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,10/49,Pvt Ltd,1,53,1.0 +14129,city_173,0.878,Male,Has relevent experience,no_enrollment,High School,,17,,,1,34,0.0 +11302,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,21,0.0 +26669,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,2,148,0.0 +2482,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,2,<10,Early Stage Startup,,54,0.0 +32974,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,6,1000-4999,,1,26,0.0 +19833,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,6,<10,Pvt Ltd,1,44,0.0 +22626,city_104,0.924,Male,Has relevent experience,Full time course,Graduate,STEM,6,50-99,Pvt Ltd,1,86,0.0 +30349,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,>4,32,0.0 +27738,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,35,0.0 +5666,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,1,23,1.0 +27821,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,7,0.0 +4277,city_71,0.884,Male,Has relevent experience,Part time course,Graduate,STEM,>20,,,2,6,1.0 +16130,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Other,5,10000+,,2,83,0.0 +19635,city_24,0.698,Male,No relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,1,24,0.0 +32223,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,Arts,2,500-999,,1,96,0.0 +9092,city_104,0.924,,No relevent experience,no_enrollment,Graduate,STEM,7,,,4,90,0.0 +12485,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,89,0.0 +19536,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,500-999,Pvt Ltd,1,10,1.0 +8777,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,14,,,never,3,0.0 +1902,city_162,0.767,,Has relevent experience,Full time course,Graduate,STEM,6,500-999,NGO,1,155,0.0 +17774,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,4,,,1,16,0.0 +15078,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,11,,,1,35,1.0 +11176,city_103,0.92,,No relevent experience,no_enrollment,Masters,Humanities,3,10000+,Other,,131,0.0 +25455,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,2,160,0.0 +25053,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,4,47,1.0 +16781,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,30,0.0 +25922,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,,1,68,0.0 +6607,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,<10,Early Stage Startup,never,57,1.0 +29062,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,,never,47,1.0 +10203,city_46,0.762,Male,No relevent experience,Part time course,Graduate,STEM,5,,,1,32,1.0 +24835,city_115,0.789,Male,Has relevent experience,Full time course,Graduate,STEM,15,,,1,108,1.0 +31237,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,4,50-99,Pvt Ltd,1,151,1.0 +28398,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,>4,53,0.0 +6007,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,8,0.0 +3479,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,4,,Public Sector,1,15,0.0 +9099,city_21,0.624,Male,No relevent experience,Part time course,Graduate,STEM,2,,,never,77,1.0 +15756,city_104,0.924,,No relevent experience,Full time course,High School,,2,10/49,Early Stage Startup,1,74,0.0 +29971,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Public Sector,1,14,1.0 +3702,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,6,10/49,Pvt Ltd,>4,62,0.0 +26024,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,500-999,Pvt Ltd,>4,164,0.0 +20706,city_90,0.698,,Has relevent experience,Full time course,,,4,100-500,Pvt Ltd,2,26,1.0 +2905,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,1,29,0.0 +18076,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Funded Startup,3,73,0.0 +30287,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,12,1.0 +11450,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,19,1000-4999,Public Sector,>4,48,0.0 +29675,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,4,138,0.0 +4779,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,Other,17,,,,73,0.0 +14765,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10/49,Pvt Ltd,2,64,0.0 +28791,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Graduate,STEM,5,10000+,Public Sector,>4,54,1.0 +30634,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,10,,,3,78,1.0 +2052,city_97,0.925,Male,Has relevent experience,Part time course,Masters,STEM,9,50-99,Pvt Ltd,4,52,0.0 +13577,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,3,18,1.0 +10087,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,17,5000-9999,Pvt Ltd,>4,67,0.0 +24915,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Pvt Ltd,1,232,1.0 +33069,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,1,,,1,13,0.0 +9300,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Pvt Ltd,>4,29,0.0 +32572,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,No Major,9,10/49,Pvt Ltd,2,38,0.0 +31287,city_176,0.764,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,1,12,0.0 +33360,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,17,,,>4,65,1.0 +25971,city_162,0.767,,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,never,14,0.0 +62,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,3,,,1,49,0.0 +31051,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,25,0.0 +5620,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,4,100-500,Pvt Ltd,1,82,1.0 +8608,city_28,0.9390000000000001,Female,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,NGO,>4,77,1.0 +9034,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,2,6,1.0 +6655,city_67,0.855,,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Early Stage Startup,3,81,0.0 +21468,city_21,0.624,,Has relevent experience,Part time course,Masters,STEM,5,10/49,Early Stage Startup,3,6,1.0 +27374,city_20,0.7959999999999999,Male,No relevent experience,Full time course,High School,,4,1000-4999,,1,53,0.0 +20325,city_46,0.762,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,15,0.0 +2953,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,3,28,0.0 +11343,city_126,0.479,,No relevent experience,Full time course,Graduate,Other,3,,,3,11,1.0 +27137,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,24,0.0 +27485,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,4,39,0.0 +26540,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,53,0.0 +20225,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,2,84,1.0 +29843,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,STEM,4,,,4,29,1.0 +20182,city_100,0.887,Male,No relevent experience,no_enrollment,Phd,Business Degree,>20,10000+,Public Sector,,14,0.0 +19948,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,5,10000+,Pvt Ltd,1,28,0.0 +17369,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,never,75,0.0 +22369,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,1,30,0.0 +25641,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,13,10000+,Pvt Ltd,4,154,0.0 +16539,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,4,85,0.0 +21754,city_71,0.884,,No relevent experience,no_enrollment,Graduate,Arts,>20,500-999,,2,54,0.0 +24201,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,5,,,never,11,1.0 +24320,city_73,0.754,Male,No relevent experience,Full time course,Graduate,STEM,6,1000-4999,Pvt Ltd,3,8,0.0 +6428,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,Other,12,50-99,Funded Startup,1,11,0.0 +19315,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Other,2,100-500,Pvt Ltd,1,162,0.0 +25018,city_67,0.855,,Has relevent experience,Part time course,Graduate,STEM,7,50-99,Pvt Ltd,1,63,0.0 +14865,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,2,,,1,29,1.0 +25927,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,4,,,1,64,1.0 +7406,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,2,8,0.0 +29698,city_21,0.624,,No relevent experience,Full time course,High School,,3,,,never,280,1.0 +27355,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,6,,,2,18,0.0 +33192,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,5,,,1,32,1.0 +17819,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,5,,,1,69,0.0 +6410,city_160,0.92,,No relevent experience,no_enrollment,Primary School,,3,50-99,Pvt Ltd,1,336,0.0 +3465,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,3,<10,Pvt Ltd,3,13,0.0 +1780,city_103,0.92,Male,No relevent experience,no_enrollment,,,5,,,1,41,0.0 +1034,city_104,0.924,Male,No relevent experience,no_enrollment,High School,,6,,Pvt Ltd,never,20,0.0 +10058,city_100,0.887,Male,Has relevent experience,Part time course,Graduate,STEM,7,,,,33,0.0 +814,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,4,60,0.0 +14058,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,Humanities,10,<10,Pvt Ltd,>4,14,0.0 +29673,city_71,0.884,Male,No relevent experience,Part time course,Masters,STEM,3,<10,Public Sector,never,22,0.0 +23711,city_90,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,19,,,>4,24,0.0 +3536,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,14,100-500,Pvt Ltd,2,40,0.0 +13541,city_64,0.6659999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,64,1.0 +10059,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,56,0.0 +758,city_65,0.802,,Has relevent experience,Full time course,Masters,STEM,16,500-999,Pvt Ltd,4,46,0.0 +7819,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,6,,,never,12,0.0 +12564,city_100,0.887,,No relevent experience,no_enrollment,Graduate,Other,15,,,>4,12,0.0 +19483,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,2,50-99,Pvt Ltd,1,45,0.0 +8365,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,<10,Early Stage Startup,2,144,1.0 +32018,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Public Sector,>4,50,1.0 +31631,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,29,0.0 +10888,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,Humanities,14,500-999,Public Sector,4,112,0.0 +9864,city_11,0.55,Male,No relevent experience,no_enrollment,High School,,7,,,never,86,1.0 +29349,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Other,>20,10000+,Pvt Ltd,1,22,0.0 +32326,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,Pvt Ltd,4,148,0.0 +15604,city_101,0.5579999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,1,100-500,,1,92,0.0 +12900,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,5,0.0 +4964,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Other,1,112,0.0 +27449,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,>4,94,0.0 +16938,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,1,114,0.0 +19735,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,17,0.0 +7221,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,4,100-500,Early Stage Startup,4,11,0.0 +29512,city_104,0.924,Male,No relevent experience,Full time course,Graduate,Arts,5,,,never,55,0.0 +24656,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,3,10000+,Pvt Ltd,1,26,0.0 +6513,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,High School,,6,<10,Pvt Ltd,1,30,0.0 +11160,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,16,1000-4999,Pvt Ltd,1,192,0.0 +14608,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,,,never,30,0.0 +569,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,>4,24,0.0 +7068,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,17,0.0 +32792,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,28,0.0 +21708,city_73,0.754,,Has relevent experience,Full time course,Masters,STEM,4,50-99,Pvt Ltd,4,82,0.0 +14490,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,NGO,>4,30,0.0 +22182,city_176,0.764,,Has relevent experience,Part time course,Masters,STEM,3,,,3,43,1.0 +12571,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,70,0.0 +19531,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,50,0.0 +6858,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,3,125,0.0 +24041,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,7,1000-4999,Pvt Ltd,>4,17,1.0 +27333,city_97,0.925,,Has relevent experience,no_enrollment,Primary School,,7,<10,Pvt Ltd,1,34,0.0 +23591,city_23,0.899,Male,Has relevent experience,Part time course,Graduate,STEM,>20,100-500,Pvt Ltd,2,83,1.0 +27556,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,2,6,0.0 +15328,city_115,0.789,,No relevent experience,Full time course,Graduate,STEM,1,10000+,Pvt Ltd,1,3,0.0 +5740,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,Humanities,15,<10,Pvt Ltd,>4,45,0.0 +14472,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,19,,,,46,1.0 +22585,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,2,1000-4999,Pvt Ltd,1,17,0.0 +9738,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,13,,,3,77,1.0 +27567,city_160,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,<10,Pvt Ltd,3,67,0.0 +19292,city_150,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,4,100-500,Public Sector,1,25,0.0 +17419,city_65,0.802,Female,Has relevent experience,Part time course,Graduate,STEM,11,1000-4999,Pvt Ltd,1,174,0.0 +23754,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,,,never,308,1.0 +22927,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,3,9,1.0 +26797,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,42,1.0 +30503,city_21,0.624,Male,No relevent experience,Part time course,High School,,2,,,never,100,1.0 +21294,city_90,0.698,,No relevent experience,Part time course,Graduate,STEM,2,<10,Pvt Ltd,1,98,1.0 +4853,city_158,0.7659999999999999,Male,No relevent experience,Full time course,Graduate,STEM,4,,,2,168,1.0 +13121,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,,90,0.0 +26112,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,143,0.0 +3813,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,3,,Pvt Ltd,never,74,0.0 +8223,city_84,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,89,0.0 +964,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,1,64,1.0 +16182,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,16,0.0 +1548,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Early Stage Startup,never,61,1.0 +20748,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,1,27,0.0 +15151,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,<1,1000-4999,Pvt Ltd,1,33,0.0 +269,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,31,1.0 +2078,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,3,107,1.0 +12714,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,134,0.0 +783,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,84,0.0 +31474,city_127,0.745,Male,No relevent experience,Full time course,Graduate,STEM,3,,Pvt Ltd,never,91,0.0 +29382,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,112,1.0 +29386,city_142,0.727,Male,No relevent experience,Part time course,Graduate,STEM,4,,,1,44,1.0 +26906,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,>4,59,0.0 +16582,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,161,0.0 +14417,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,10000+,Pvt Ltd,4,72,0.0 +23690,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,,1,39,0.0 +13146,city_57,0.866,,No relevent experience,no_enrollment,Masters,STEM,5,500-999,Public Sector,1,103,1.0 +23848,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,,Public Sector,never,39,0.0 +30741,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,NGO,1,84,0.0 +13912,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,27,0.0 +5901,city_158,0.7659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,2,33,0.0 +20124,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,28,0.0 +10937,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,>4,33,0.0 +24764,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,92,0.0 +13463,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,6,,,1,17,1.0 +14878,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,1,51,0.0 +19192,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,35,1.0 +4156,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,,Pvt Ltd,never,28,0.0 +12153,city_114,0.9259999999999999,Female,No relevent experience,no_enrollment,High School,,2,,,2,23,0.0 +31239,city_114,0.9259999999999999,,Has relevent experience,Part time course,Graduate,STEM,19,10000+,Pvt Ltd,>4,41,0.0 +23902,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,18,<10,Pvt Ltd,1,21,0.0 +4893,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,4,50-99,Pvt Ltd,1,35,1.0 +21179,city_162,0.767,Male,No relevent experience,no_enrollment,Graduate,STEM,10,,,never,52,0.0 +11911,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,19,1000-4999,Pvt Ltd,1,68,0.0 +12615,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,228,1.0 +19040,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,4,,,1,50,0.0 +10183,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,11,500-999,Pvt Ltd,3,122,0.0 +30042,city_103,0.92,Female,No relevent experience,Full time course,Masters,STEM,11,,,1,58,0.0 +14370,city_103,0.92,Other,No relevent experience,no_enrollment,,,4,,,1,176,0.0 +5792,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,9,<10,Funded Startup,1,3,0.0 +8720,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,3,147,0.0 +17042,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,,2,39,1.0 +23696,city_21,0.624,,Has relevent experience,Full time course,Graduate,Other,>20,50-99,Pvt Ltd,>4,47,0.0 +19443,city_46,0.762,,No relevent experience,Full time course,Graduate,STEM,5,,,3,49,0.0 +15676,city_10,0.895,,Has relevent experience,Full time course,Masters,STEM,4,50-99,Funded Startup,2,13,1.0 +24351,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,never,298,1.0 +751,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Pvt Ltd,1,37,0.0 +2577,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,5,,Pvt Ltd,never,40,0.0 +3538,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,10000+,Pvt Ltd,>4,86,0.0 +22590,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,Humanities,7,,,>4,36,1.0 +3887,city_103,0.92,Female,Has relevent experience,no_enrollment,Phd,STEM,13,5000-9999,Pvt Ltd,1,11,0.0 +12122,city_24,0.698,,Has relevent experience,Full time course,High School,,3,50-99,Public Sector,2,53,0.0 +16535,city_105,0.794,Male,Has relevent experience,,Graduate,STEM,5,100-500,,1,84,0.0 +17916,city_73,0.754,Male,Has relevent experience,Full time course,Graduate,STEM,4,<10,Pvt Ltd,1,15,0.0 +32811,city_128,0.527,,Has relevent experience,Full time course,Graduate,STEM,4,,,1,104,0.0 +31539,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,>4,19,0.0 +19507,city_152,0.698,Male,No relevent experience,no_enrollment,High School,,3,,,never,96,0.0 +20061,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,Other,8,,,>4,54,0.0 +7244,city_41,0.8270000000000001,Male,Has relevent experience,Part time course,High School,,3,100-500,NGO,>4,116,0.0 +2720,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Early Stage Startup,1,4,0.0 +6066,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,96,0.0 +9662,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,67,0.0 +4179,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Arts,17,10000+,Pvt Ltd,4,59,0.0 +29249,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,2,214,0.0 +13391,city_144,0.84,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,,never,63,0.0 +14834,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,2,<10,Pvt Ltd,1,33,0.0 +32114,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,9,,,>4,55,1.0 +14580,city_28,0.9390000000000001,Other,No relevent experience,Full time course,High School,,3,100-500,Pvt Ltd,3,17,0.0 +26803,city_26,0.698,Male,No relevent experience,,Primary School,,1,,,never,34,0.0 +8415,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,,,101,0.0 +3794,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,>20,<10,Funded Startup,>4,50,0.0 +30176,city_91,0.691,Male,Has relevent experience,Full time course,Graduate,STEM,9,500-999,Pvt Ltd,2,96,0.0 +14303,city_114,0.9259999999999999,,Has relevent experience,Part time course,Graduate,STEM,11,,,4,61,1.0 +25708,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,6,50-99,NGO,1,51,1.0 +252,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,1,26,0.0 +33197,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,Pvt Ltd,never,22,1.0 +4344,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Pvt Ltd,1,14,0.0 +3759,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,2,18,0.0 +2731,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Pvt Ltd,,38,1.0 +12575,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,1,99,0.0 +20879,city_28,0.9390000000000001,,No relevent experience,Part time course,High School,,4,100-500,,never,7,0.0 +9541,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,15,,,1,154,0.0 +22654,city_138,0.836,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,8,0.0 +24068,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Public Sector,1,7,1.0 +18671,city_21,0.624,,No relevent experience,no_enrollment,Primary School,,4,,,never,6,1.0 +19581,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,100-500,Pvt Ltd,1,242,0.0 +1975,city_70,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,109,0.0 +26169,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,50,1.0 +30426,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,,Pvt Ltd,never,106,1.0 +25707,city_104,0.924,Male,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,1,9,0.0 +20351,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,1,48,0.0 +4468,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,22,0.0 +9657,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Funded Startup,1,22,0.0 +9033,city_115,0.789,Female,No relevent experience,no_enrollment,Graduate,STEM,<1,,,1,43,1.0 +25396,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Pvt Ltd,1,23,0.0 +30079,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,5000-9999,Pvt Ltd,2,92,0.0 +32292,city_73,0.754,Female,Has relevent experience,Part time course,Graduate,STEM,8,,,3,57,1.0 +16121,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,4,50-99,Pvt Ltd,1,163,1.0 +19861,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,5,,,never,48,0.0 +13328,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,14,10000+,Pvt Ltd,1,78,1.0 +543,city_36,0.893,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,2,11,0.0 +10295,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,1000-4999,Pvt Ltd,3,46,0.0 +24561,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,91,0.0 +27461,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,18,50-99,Funded Startup,>4,59,0.0 +31399,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,4,51,0.0 +12032,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,63,0.0 +10031,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Early Stage Startup,1,90,0.0 +21660,city_13,0.8270000000000001,,Has relevent experience,Full time course,High School,,7,1000-4999,Pvt Ltd,1,77,0.0 +3155,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,126,0.0 +27038,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,20,,,>4,56,1.0 +5431,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,never,34,0.0 +13433,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Business Degree,7,1000-4999,Pvt Ltd,4,34,0.0 +16929,city_103,0.92,,Has relevent experience,no_enrollment,Masters,Other,15,1000-4999,Pvt Ltd,4,43,0.0 +12499,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,>4,70,0.0 +31842,city_24,0.698,Female,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,Pvt Ltd,3,6,0.0 +15547,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,4,42,0.0 +20398,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,1,150,0.0 +12821,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,2,102,1.0 +3853,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,4,,,1,39,1.0 +12556,city_114,0.9259999999999999,Female,No relevent experience,Full time course,Masters,STEM,10,,Public Sector,1,196,0.0 +26177,city_65,0.802,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,316,0.0 +8067,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Pvt Ltd,>4,27,0.0 +9403,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,16,50-99,Pvt Ltd,3,8,0.0 +13112,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Primary School,,>20,50-99,Pvt Ltd,1,18,0.0 +12486,city_162,0.767,Female,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Pvt Ltd,3,29,1.0 +8796,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,1,21,0.0 +7687,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,86,0.0 +6559,city_162,0.767,Male,No relevent experience,Part time course,Masters,STEM,4,,,2,74,1.0 +3352,city_62,0.645,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,,2,11,0.0 +17940,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,13,,,never,6,0.0 +32321,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,<1,50-99,NGO,1,13,0.0 +14165,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,Other,9,10/49,Early Stage Startup,1,52,0.0 +27889,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,16,50-99,Pvt Ltd,>4,3,0.0 +28017,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,>4,128,0.0 +30377,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Other,1,88,1.0 +9748,city_103,0.92,Male,Has relevent experience,Part time course,Phd,STEM,>20,100-500,Pvt Ltd,>4,52,0.0 +29692,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,79,0.0 +25448,city_142,0.727,Male,Has relevent experience,Full time course,Graduate,STEM,7,,,>4,24,0.0 +28345,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,2,292,0.0 +16375,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,<1,10/49,Pvt Ltd,1,4,0.0 +607,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,4,42,0.0 +5952,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,20,10000+,Pvt Ltd,>4,54,1.0 +25604,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Business Degree,11,,,2,78,1.0 +18993,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,50-99,Funded Startup,1,316,1.0 +9984,city_90,0.698,Male,No relevent experience,no_enrollment,High School,,3,50-99,Pvt Ltd,1,13,0.0 +142,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,100-500,Pvt Ltd,3,106,0.0 +4747,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,75,1.0 +33244,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,8,1000-4999,Pvt Ltd,4,85,0.0 +32209,city_16,0.91,Male,No relevent experience,no_enrollment,Phd,STEM,5,1000-4999,Public Sector,1,128,0.0 +3005,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Early Stage Startup,1,20,1.0 +24322,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,2,135,0.0 +26705,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Public Sector,2,21,0.0 +12487,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,Humanities,3,500-999,Pvt Ltd,2,3,0.0 +19175,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,7,,,1,224,0.0 +33357,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,18,0.0 +22119,city_46,0.762,,Has relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,2,83,0.0 +29990,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Funded Startup,2,74,0.0 +15370,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,,2,112,0.0 +17937,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,,never,165,0.0 +23613,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,>4,78,1.0 +4216,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,28,0.0 +25530,city_64,0.6659999999999999,Male,No relevent experience,no_enrollment,Phd,Business Degree,>20,,,>4,112,0.0 +7235,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,19,50-99,Funded Startup,3,19,0.0 +14976,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,10,,,never,9,1.0 +15502,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,>4,23,0.0 +2069,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,Humanities,>20,<10,Pvt Ltd,>4,66,0.0 +33139,city_134,0.698,Male,No relevent experience,no_enrollment,Masters,STEM,5,,,1,46,1.0 +9468,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Arts,4,50-99,NGO,4,54,0.0 +25820,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,19,10000+,Pvt Ltd,1,145,1.0 +18401,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,3,29,1.0 +28970,city_103,0.92,Male,No relevent experience,Full time course,High School,,5,,,1,106,1.0 +50,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,1,79,1.0 +21591,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,,>4,55,0.0 +7715,city_74,0.579,Male,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Pvt Ltd,2,83,1.0 +26617,city_102,0.804,,Has relevent experience,Full time course,Masters,STEM,10,10/49,Pvt Ltd,1,43,0.0 +936,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,4,81,0.0 +8894,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Pvt Ltd,>4,21,0.0 +22180,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,100-500,Pvt Ltd,2,18,0.0 +3120,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,,>4,77,0.0 +11906,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,27,0.0 +7222,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Pvt Ltd,1,9,0.0 +6111,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Masters,STEM,>20,<10,Funded Startup,1,15,0.0 +29172,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,15,1000-4999,Pvt Ltd,2,94,0.0 +18229,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,High School,,10,,,1,18,0.0 +22239,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,5,1000-4999,Pvt Ltd,3,105,0.0 +19129,city_67,0.855,,No relevent experience,no_enrollment,Masters,Business Degree,19,1000-4999,Pvt Ltd,2,15,0.0 +17040,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,2,3,0.0 +24259,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,Pvt Ltd,2,57,1.0 +19834,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,5000-9999,Pvt Ltd,never,7,1.0 +23101,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,10,,,1,104,0.0 +21628,city_67,0.855,Male,Has relevent experience,Full time course,High School,,4,100-500,,never,2,0.0 +10679,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Pvt Ltd,1,17,0.0 +20845,city_9,0.743,,No relevent experience,Part time course,Primary School,,2,50-99,Funded Startup,1,44,1.0 +31429,city_41,0.8270000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,5,100-500,NGO,1,94,0.0 +23841,city_144,0.84,,Has relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Pvt Ltd,1,210,1.0 +32378,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,10,50-99,Pvt Ltd,4,121,0.0 +20618,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,2,86,0.0 +13231,city_142,0.727,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,4,254,0.0 +4379,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,5000-9999,NGO,>4,90,0.0 +16015,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,5,,Pvt Ltd,>4,56,0.0 +5954,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,1,18,0.0 +26134,city_83,0.9229999999999999,Male,No relevent experience,Full time course,High School,,2,,,never,52,0.0 +29814,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Other,16,10000+,Pvt Ltd,>4,43,0.0 +27621,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,100-500,Pvt Ltd,1,43,0.0 +3755,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,3,27,0.0 +14521,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,1,43,1.0 +29642,city_76,0.698,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,19,1.0 +17778,city_74,0.579,,Has relevent experience,no_enrollment,High School,,<1,,,never,160,1.0 +8812,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,>4,15,0.0 +5277,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,3,,,1,15,0.0 +2762,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,No Major,1,<10,Pvt Ltd,1,156,0.0 +4259,city_67,0.855,Male,No relevent experience,Full time course,Masters,STEM,17,,,2,18,0.0 +23721,city_103,0.92,Male,No relevent experience,,High School,,1,,,never,61,1.0 +33130,city_103,0.92,,Has relevent experience,,Graduate,Humanities,>20,,,1,258,0.0 +21508,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,1,96,1.0 +29733,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,19,500-999,NGO,1,14,0.0 +22146,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,5000-9999,Pvt Ltd,2,62,0.0 +8936,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Business Degree,4,50-99,Pvt Ltd,1,12,0.0 +25520,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,42,0.0 +30301,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,1,5000-9999,Pvt Ltd,1,92,0.0 +4792,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,20,0.0 +15864,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,7,10000+,Pvt Ltd,1,34,0.0 +14235,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,47,0.0 +6074,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,4,61,0.0 +5565,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,17,1000-4999,Pvt Ltd,>4,168,1.0 +22567,city_152,0.698,,Has relevent experience,Full time course,Graduate,STEM,11,10/49,Pvt Ltd,1,50,1.0 +22197,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,,,19,1000-4999,Pvt Ltd,>4,23,1.0 +23633,city_150,0.698,Male,No relevent experience,Full time course,Phd,STEM,>20,10000+,Public Sector,>4,3,0.0 +5983,city_100,0.887,,Has relevent experience,no_enrollment,High School,,6,50-99,Pvt Ltd,1,30,0.0 +9985,city_53,0.74,Female,Has relevent experience,Full time course,Graduate,STEM,11,10/49,Pvt Ltd,never,73,0.0 +14351,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,37,1.0 +28359,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,No Major,>20,,,>4,8,0.0 +6774,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,2,70,0.0 +5384,city_136,0.897,,Has relevent experience,no_enrollment,Phd,STEM,16,<10,Funded Startup,,5,0.0 +16762,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,>4,7,0.0 +13784,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,10,<10,Pvt Ltd,3,86,0.0 +8409,city_90,0.698,,Has relevent experience,Full time course,Graduate,STEM,14,<10,Pvt Ltd,1,12,1.0 +9512,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,Humanities,<1,50-99,Funded Startup,1,56,0.0 +1640,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,4,,,never,30,0.0 +7089,city_65,0.802,Male,No relevent experience,Full time course,High School,,2,10/49,Early Stage Startup,1,34,1.0 +3989,city_141,0.763,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Funded Startup,1,86,0.0 +2756,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,232,0.0 +28672,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,19,1000-4999,Pvt Ltd,1,90,0.0 +110,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,6,0.0 +31114,city_162,0.767,,No relevent experience,,High School,,5,,,1,32,1.0 +22981,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,18,100-500,Pvt Ltd,4,22,0.0 +18468,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,Business Degree,2,50-99,Pvt Ltd,1,66,1.0 +10672,city_16,0.91,Female,No relevent experience,no_enrollment,Graduate,STEM,<1,50-99,NGO,3,48,0.0 +25954,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,130,0.0 +28980,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,8,,,1,100,1.0 +19517,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Other,2,64,0.0 +15613,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,2,500-999,Funded Startup,never,28,0.0 +5149,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,never,64,1.0 +4065,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,3,21,1.0 +16509,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Pvt Ltd,3,24,0.0 +18360,city_103,0.92,,No relevent experience,no_enrollment,High School,,<1,,,never,94,0.0 +19695,city_54,0.856,Male,No relevent experience,no_enrollment,Phd,STEM,17,,,1,50,0.0 +6765,city_100,0.887,,Has relevent experience,no_enrollment,High School,,8,50-99,Pvt Ltd,1,92,0.0 +20041,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,2,,,never,40,0.0 +18313,city_21,0.624,,No relevent experience,Full time course,High School,,2,,,never,15,1.0 +30926,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,<10,Pvt Ltd,>4,18,0.0 +30328,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,94,1.0 +9177,city_57,0.866,Male,Has relevent experience,Full time course,Graduate,STEM,8,10/49,Pvt Ltd,1,44,0.0 +31020,city_21,0.624,Male,No relevent experience,Full time course,High School,,4,,,1,105,1.0 +2009,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,Humanities,15,1000-4999,Pvt Ltd,4,12,0.0 +3188,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,NGO,never,9,1.0 +28914,city_103,0.92,Male,No relevent experience,no_enrollment,,,<1,,,never,79,0.0 +1199,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,12,100-500,NGO,1,70,0.0 +10538,city_149,0.6890000000000001,Male,Has relevent experience,Full time course,Masters,STEM,17,50-99,NGO,>4,105,0.0 +1792,city_74,0.579,Male,No relevent experience,Full time course,High School,,3,,Pvt Ltd,never,78,0.0 +25276,city_16,0.91,,Has relevent experience,Full time course,Graduate,Other,8,,,1,6,0.0 +4907,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,Pvt Ltd,2,27,0.0 +19759,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,,1,174,1.0 +294,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,500-999,Pvt Ltd,2,212,0.0 +28153,city_46,0.762,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,,>4,13,0.0 +28338,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Public Sector,1,41,0.0 +19327,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,4,0.0 +6069,city_116,0.743,,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Pvt Ltd,>4,112,0.0 +25306,city_94,0.698,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,88,0.0 +12113,city_11,0.55,Male,Has relevent experience,Part time course,Graduate,STEM,3,,,1,13,0.0 +4592,city_24,0.698,Male,No relevent experience,Full time course,High School,,2,,,,18,0.0 +14104,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,3,85,0.0 +446,city_74,0.579,,No relevent experience,Full time course,High School,,1,,,,102,1.0 +23452,city_16,0.91,,No relevent experience,no_enrollment,High School,,5,,,,42,0.0 +12043,city_50,0.8959999999999999,,No relevent experience,Full time course,Graduate,STEM,3,,,never,35,1.0 +2135,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,1,,,never,42,1.0 +33127,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,4,2,0.0 +24439,city_97,0.925,Male,No relevent experience,no_enrollment,Masters,Humanities,>20,,,>4,5,0.0 +33113,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,19,50-99,Funded Startup,1,130,0.0 +30128,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,47,1.0 +31322,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,19,10000+,Pvt Ltd,1,332,0.0 +4366,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,85,0.0 +21890,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,68,1.0 +14160,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,113,0.0 +16126,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,3,10000+,Pvt Ltd,2,24,0.0 +27616,city_116,0.743,,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,1,107,0.0 +24307,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,500-999,Pvt Ltd,1,26,1.0 +18147,city_23,0.899,Male,Has relevent experience,no_enrollment,High School,,7,100-500,Pvt Ltd,never,30,0.0 +4145,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,500-999,Pvt Ltd,>4,21,0.0 +29837,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,248,0.0 +24744,city_57,0.866,,No relevent experience,Full time course,High School,,<1,,,never,64,0.0 +1710,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,47,0.0 +31119,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,155,1.0 +19160,city_67,0.855,Female,No relevent experience,Full time course,Masters,STEM,11,,,>4,78,0.0 +23343,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,,,,18,1.0 +9323,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Funded Startup,4,44,0.0 +744,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,1,80,0.0 +9916,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,55,0.0 +5307,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,,1,9,0.0 +30874,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,91,0.0 +32300,city_65,0.802,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,4,80,0.0 +25901,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,43,1.0 +9376,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,never,109,0.0 +18978,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,19,100-500,Pvt Ltd,1,111,0.0 +6988,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,3,75,0.0 +19762,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,7,0.0 +28270,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,6,1000-4999,Pvt Ltd,1,88,0.0 +4900,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,10,,,4,140,1.0 +10269,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,23,0.0 +6854,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,12,<10,Funded Startup,2,26,0.0 +19252,city_16,0.91,Male,No relevent experience,Full time course,High School,,6,,,never,20,0.0 +26642,city_19,0.682,Male,Has relevent experience,Full time course,Graduate,STEM,1,,,1,45,1.0 +33071,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,76,0.0 +18148,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,2,,,1,43,0.0 +6852,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,42,0.0 +14507,city_67,0.855,Male,No relevent experience,no_enrollment,Masters,STEM,3,10000+,Pvt Ltd,1,6,0.0 +23327,city_123,0.738,,Has relevent experience,,Graduate,STEM,6,100-500,,3,134,0.0 +6104,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,1,67,0.0 +29309,city_11,0.55,Male,Has relevent experience,no_enrollment,Masters,STEM,2,50-99,NGO,1,6,0.0 +28537,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,9,100-500,Pvt Ltd,4,68,0.0 +754,city_11,0.55,Male,No relevent experience,Full time course,Graduate,Humanities,2,,,1,33,1.0 +27015,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,5000-9999,Pvt Ltd,1,107,0.0 +30434,city_21,0.624,Male,No relevent experience,Full time course,High School,,9,,,1,8,0.0 +26028,city_75,0.9390000000000001,,No relevent experience,Full time course,High School,,3,1000-4999,Pvt Ltd,1,52,0.0 +9804,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,>4,10,0.0 +6387,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,Business Degree,9,,,never,34,0.0 +11158,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,2,,,never,31,0.0 +7552,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,128,0.0 +1562,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,>4,23,1.0 +9583,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,17,5000-9999,Pvt Ltd,>4,67,1.0 +15600,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,5000-9999,Pvt Ltd,>4,43,0.0 +28097,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,2,320,0.0 +27633,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,3,81,0.0 +15066,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,4,5000-9999,Pvt Ltd,1,19,0.0 +1564,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,56,1.0 +19767,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,66,0.0 +1355,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,50-99,Other,1,127,0.0 +9022,city_103,0.92,Female,No relevent experience,Full time course,Graduate,Humanities,1,,,1,42,1.0 +5125,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,10,,,>4,31,1.0 +29495,city_152,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,65,0.0 +4717,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,13,,,1,28,0.0 +16720,city_21,0.624,Male,No relevent experience,Full time course,High School,,10,,,never,68,0.0 +6137,city_67,0.855,Male,Has relevent experience,no_enrollment,High School,,2,<10,Pvt Ltd,1,62,0.0 +1285,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,never,3,0.0 +24839,city_25,0.698,,No relevent experience,Full time course,Graduate,STEM,2,,,never,112,1.0 +4359,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Other,>4,13,0.0 +13734,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,16,<10,Pvt Ltd,1,11,0.0 +17219,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,1,50-99,Pvt Ltd,1,260,1.0 +2096,city_36,0.893,,Has relevent experience,Part time course,Graduate,STEM,10,50-99,Pvt Ltd,3,54,0.0 +16112,city_46,0.762,,Has relevent experience,no_enrollment,Masters,STEM,4,1000-4999,Pvt Ltd,2,42,0.0 +23913,city_136,0.897,Male,Has relevent experience,Part time course,Masters,STEM,6,50-99,Pvt Ltd,1,44,0.0 +11507,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,10,5000-9999,Pvt Ltd,1,65,0.0 +15321,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,2,16,0.0 +23678,city_165,0.903,,Has relevent experience,no_enrollment,,,>20,10/49,,,50,0.0 +27950,city_19,0.682,Female,Has relevent experience,Full time course,Graduate,STEM,3,,,2,101,1.0 +15295,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,64,0.0 +18537,city_173,0.878,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,15,0.0 +6863,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,3,<10,Early Stage Startup,,320,0.0 +28047,city_149,0.6890000000000001,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Funded Startup,1,11,0.0 +26708,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,8,50-99,Pvt Ltd,1,36,1.0 +17990,city_100,0.887,Male,No relevent experience,no_enrollment,High School,,2,,,never,10,0.0 +9035,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,3,,,never,81,0.0 +10801,city_83,0.9229999999999999,Female,Has relevent experience,no_enrollment,Masters,Humanities,4,100-500,Public Sector,2,48,0.0 +17320,city_21,0.624,,No relevent experience,Full time course,High School,,4,,,1,12,0.0 +624,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,26,0.0 +22000,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,51,0.0 +30555,city_149,0.6890000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,4,,,1,18,1.0 +16862,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,6,100-500,Pvt Ltd,1,106,0.0 +25649,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,>4,58,0.0 +1384,city_83,0.9229999999999999,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,236,0.0 +10605,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,1,113,0.0 +10887,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,80,0.0 +28870,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,14,,Public Sector,1,47,0.0 +17270,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,153,0.0 +5816,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,4,28,1.0 +23568,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,61,0.0 +25042,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,1000-4999,Pvt Ltd,2,48,0.0 +15662,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,96,0.0 +3551,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,54,0.0 +20595,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,34,0.0 +17776,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,190,0.0 +1551,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,1,6,0.0 +27183,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,15,10/49,Funded Startup,1,114,0.0 +32503,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,Arts,15,50-99,Pvt Ltd,2,37,0.0 +1761,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,64,0.0 +30920,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,20,100-500,Pvt Ltd,2,17,0.0 +15655,city_136,0.897,,No relevent experience,,,,4,,,,222,0.0 +30238,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,226,1.0 +3394,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,2,101,0.0 +3464,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,2,100-500,Pvt Ltd,1,22,1.0 +13189,city_103,0.92,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,500-999,NGO,>4,170,0.0 +18056,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,276,0.0 +15047,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Other,1,51,0.0 +32870,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,1,50-99,Pvt Ltd,1,95,0.0 +26065,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,74,0.0 +25989,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Early Stage Startup,2,96,0.0 +107,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,14,100-500,Funded Startup,1,17,0.0 +8395,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Funded Startup,1,81,0.0 +23353,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,1,500-999,,never,46,0.0 +26225,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,,>4,102,0.0 +22258,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,Other,5,10/49,Pvt Ltd,2,70,0.0 +26916,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,89,0.0 +24430,city_136,0.897,Male,No relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,>4,58,0.0 +1585,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,16,1000-4999,Pvt Ltd,2,104,0.0 +3797,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,4,45,0.0 +23050,city_16,0.91,,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Pvt Ltd,1,109,0.0 +5409,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,100-500,Pvt Ltd,>4,109,0.0 +8405,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,1,10000+,,1,12,1.0 +8838,city_78,0.579,,No relevent experience,no_enrollment,High School,,2,,,1,20,1.0 +28659,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,1,3,0.0 +17865,city_102,0.804,Male,Has relevent experience,Part time course,Masters,STEM,10,100-500,Pvt Ltd,2,44,0.0 +7331,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,10,,,>4,7,1.0 +9405,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,<1,,,1,12,0.0 +27404,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,96,0.0 +20288,city_103,0.92,Male,Has relevent experience,no_enrollment,,,6,,,2,62,0.0 +18472,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,100-500,,1,84,1.0 +22448,city_43,0.516,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Early Stage Startup,>4,36,1.0 +23068,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,NGO,1,21,0.0 +9603,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Early Stage Startup,1,48,0.0 +1984,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,1,11,1.0 +3247,city_100,0.887,,Has relevent experience,no_enrollment,Masters,STEM,19,1000-4999,Pvt Ltd,,104,1.0 +5778,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,2,36,1.0 +27741,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,13,1000-4999,Pvt Ltd,1,70,0.0 +30601,city_16,0.91,Male,No relevent experience,no_enrollment,Primary School,,2,,Pvt Ltd,never,18,0.0 +1223,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,134,1.0 +5535,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,53,1.0 +5481,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,>4,34,0.0 +32175,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,38,0.0 +20979,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,18,0.0 +20957,city_90,0.698,Male,No relevent experience,Part time course,High School,,2,<10,Early Stage Startup,1,69,0.0 +20981,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,2,3,1.0 +25519,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,1,,,never,55,0.0 +22649,city_16,0.91,,No relevent experience,no_enrollment,High School,,<1,,,never,143,0.0 +29482,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,NGO,4,40,0.0 +7309,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,100,1.0 +20854,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,11,0.0 +29842,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,2,86,1.0 +26834,city_21,0.624,Male,No relevent experience,Full time course,High School,,<1,,,never,11,0.0 +10980,city_36,0.893,Male,Has relevent experience,Full time course,Graduate,STEM,9,<10,Pvt Ltd,1,114,0.0 +6128,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,19,0.0 +1270,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Funded Startup,1,100,0.0 +21492,city_158,0.7659999999999999,Male,Has relevent experience,Part time course,Graduate,Business Degree,9,1000-4999,Pvt Ltd,>4,112,0.0 +27023,city_136,0.897,Male,No relevent experience,Part time course,Graduate,STEM,2,<10,,1,85,0.0 +27085,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,Funded Startup,1,74,0.0 +31071,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Funded Startup,2,31,0.0 +22838,city_21,0.624,Male,No relevent experience,Full time course,High School,,<1,,,never,15,1.0 +30811,city_73,0.754,Male,No relevent experience,Full time course,High School,,4,,,never,163,0.0 +24774,city_16,0.91,Male,Has relevent experience,,,,18,,,>4,56,1.0 +29620,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,2,,,never,141,0.0 +1982,city_99,0.915,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,12,0.0 +19572,city_102,0.804,Male,No relevent experience,no_enrollment,Masters,Business Degree,7,50-99,Pvt Ltd,1,20,0.0 +22382,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,31,0.0 +5537,city_83,0.9229999999999999,Other,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,4,30,0.0 +13612,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,109,1.0 +1535,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,5000-9999,Pvt Ltd,4,160,0.0 +27061,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,>4,31,0.0 +16163,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,70,0.0 +26787,city_16,0.91,,No relevent experience,no_enrollment,,,20,,,2,68,0.0 +15761,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,,2,43,0.0 +16009,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,118,0.0 +4020,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,54,0.0 +20522,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10/49,Pvt Ltd,2,8,1.0 +22918,city_41,0.8270000000000001,,Has relevent experience,Full time course,Graduate,STEM,4,500-999,,1,140,0.0 +13377,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,,,1,66,1.0 +6107,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,3,148,0.0 +16143,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,10,1.0 +10599,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,never,108,0.0 +19360,city_103,0.92,Male,Has relevent experience,Part time course,High School,,8,,Public Sector,2,134,1.0 +8496,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,63,0.0 +22440,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,,1,58,0.0 +23363,city_123,0.738,Male,No relevent experience,Full time course,Graduate,Other,5,100-500,Pvt Ltd,1,8,0.0 +12781,city_160,0.92,Male,Has relevent experience,,Graduate,STEM,>20,,,1,122,0.0 +24106,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,4,72,0.0 +30487,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,100-500,Pvt Ltd,1,50,1.0 +19330,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,20,1.0 +2355,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,NGO,4,4,0.0 +2909,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,3,280,0.0 +18037,city_19,0.682,Female,No relevent experience,Full time course,Graduate,No Major,1,,,never,140,1.0 +12962,city_16,0.91,Male,No relevent experience,Full time course,High School,,1,,,never,204,0.0 +23350,city_27,0.848,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,38,0.0 +32262,city_158,0.7659999999999999,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,210,1.0 +28421,city_36,0.893,Male,Has relevent experience,no_enrollment,,,5,10/49,Pvt Ltd,1,114,0.0 +9054,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,>4,167,0.0 +17244,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,>4,56,0.0 +31069,city_103,0.92,,No relevent experience,no_enrollment,Masters,Other,15,,,2,21,0.0 +25324,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,6,0.0 +7682,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Masters,STEM,6,5000-9999,NGO,1,9,0.0 +20368,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,2,316,0.0 +18371,city_102,0.804,,No relevent experience,,Graduate,STEM,9,10000+,Pvt Ltd,1,37,0.0 +6896,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,18,,,>4,88,1.0 +8975,city_103,0.92,Other,No relevent experience,Full time course,Graduate,Other,5,<10,NGO,1,2,0.0 +1883,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,1,102,0.0 +31394,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Public Sector,1,33,0.0 +26123,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,2,25,0.0 +2770,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,77,0.0 +25139,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,9,10000+,NGO,2,18,0.0 +26140,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,5000-9999,,1,206,0.0 +746,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,7,0.0 +24695,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,4,4,0.0 +33265,city_114,0.9259999999999999,Male,No relevent experience,Full time course,,,7,10/49,Pvt Ltd,1,45,0.0 +1495,city_103,0.92,Male,No relevent experience,Full time course,Masters,Other,15,,Pvt Ltd,never,188,0.0 +22950,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,56,0.0 +14579,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,never,99,0.0 +24631,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,16,0.0 +32490,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Funded Startup,1,64,0.0 +27936,city_16,0.91,,Has relevent experience,no_enrollment,,,5,,,1,102,0.0 +5338,city_160,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,4,100-500,NGO,1,54,0.0 +15303,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,4,,,never,53,1.0 +30678,city_102,0.804,Male,No relevent experience,Full time course,Graduate,STEM,1,,,1,29,0.0 +156,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Funded Startup,2,56,0.0 +26038,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,47,1.0 +21916,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,108,0.0 +1999,city_165,0.903,Male,No relevent experience,Full time course,High School,,2,,Funded Startup,1,28,0.0 +757,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,No Major,>20,50-99,Pvt Ltd,2,79,0.0 +10268,city_61,0.9129999999999999,Male,No relevent experience,Full time course,High School,,2,500-999,Public Sector,2,26,1.0 +6420,city_21,0.624,Male,No relevent experience,Full time course,High School,,<1,,,never,96,0.0 +14230,city_160,0.92,Male,No relevent experience,Full time course,Masters,STEM,4,,,2,29,1.0 +18349,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,Other,3,10000+,Pvt Ltd,2,13,1.0 +17238,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,24,0.0 +6675,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,11,100-500,Pvt Ltd,2,58,0.0 +7628,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Funded Startup,1,25,0.0 +24181,city_7,0.647,Male,Has relevent experience,Part time course,Masters,STEM,11,10/49,,never,24,0.0 +2114,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,,1,166,0.0 +2664,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,8,0.0 +2290,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,2,5,0.0 +23546,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,14,0.0 +5682,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,328,0.0 +6171,city_83,0.9229999999999999,Male,Has relevent experience,Part time course,Masters,Humanities,2,10000+,Pvt Ltd,1,52,0.0 +11396,city_103,0.92,Male,No relevent experience,no_enrollment,,,4,,,never,190,0.0 +21043,city_73,0.754,,Has relevent experience,no_enrollment,High School,,>20,10000+,Public Sector,2,116,0.0 +19797,city_21,0.624,Female,Has relevent experience,Full time course,Masters,STEM,13,100-500,Pvt Ltd,>4,8,1.0 +3350,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,never,7,1.0 +27620,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,1,69,0.0 +13441,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,No Major,9,<10,Pvt Ltd,3,31,0.0 +22538,city_90,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,39,0.0 +14098,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,11,10/49,Funded Startup,1,45,0.0 +12776,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,,>4,76,0.0 +5494,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,59,1.0 +19098,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,33,0.0 +8355,city_45,0.89,,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,254,0.0 +14758,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,1,17,0.0 +3379,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,56,0.0 +32791,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,2,82,0.0 +20941,city_72,0.795,,Has relevent experience,Full time course,Primary School,,4,50-99,Pvt Ltd,1,30,0.0 +6623,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,16,1000-4999,Pvt Ltd,4,15,0.0 +22147,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,2,,Public Sector,1,28,0.0 +32539,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,1,160,0.0 +17525,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,12,100-500,Pvt Ltd,3,17,0.0 +9241,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,3,10,0.0 +25368,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,4,166,0.0 +8171,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,3,5000-9999,Pvt Ltd,1,78,0.0 +12102,city_19,0.682,Male,Has relevent experience,,Masters,STEM,4,50-99,Pvt Ltd,1,68,1.0 +5713,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,500-999,Pvt Ltd,1,23,0.0 +28969,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,64,0.0 +19382,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,3,3,1.0 +29790,city_173,0.878,Male,No relevent experience,Full time course,Graduate,STEM,9,,,1,21,1.0 +3509,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,12,,,2,64,0.0 +2573,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,69,1.0 +29125,city_20,0.7959999999999999,Male,Has relevent experience,no_enrollment,Primary School,,7,,,2,96,0.0 +14431,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,3,62,0.0 +7251,city_67,0.855,Male,No relevent experience,no_enrollment,Masters,STEM,6,<10,Pvt Ltd,>4,246,0.0 +31559,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,44,0.0 +4040,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,1,154,0.0 +31189,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Public Sector,1,42,1.0 +11199,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,4,56,1.0 +10963,city_67,0.855,Male,No relevent experience,Full time course,High School,,11,,,1,20,1.0 +3288,city_2,0.7879999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,2,222,0.0 +4797,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,18,1.0 +12177,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Funded Startup,1,81,0.0 +18600,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Pvt Ltd,never,25,0.0 +24494,city_150,0.698,Male,Has relevent experience,Full time course,Masters,STEM,4,,,2,138,1.0 +18181,city_24,0.698,,Has relevent experience,Full time course,High School,,5,,,1,43,1.0 +638,city_102,0.804,Male,Has relevent experience,Full time course,Graduate,Business Degree,1,<10,Pvt Ltd,1,52,1.0 +31623,city_23,0.899,Male,Has relevent experience,Full time course,Graduate,STEM,12,10000+,Pvt Ltd,2,69,0.0 +32199,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,7,,,2,48,0.0 +23882,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,67,0.0 +12434,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,74,0.0 +25976,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,1,246,1.0 +15444,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,278,0.0 +6869,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,1,51,0.0 +11592,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,14,50-99,NGO,1,50,0.0 +21831,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,>4,72,1.0 +10300,city_102,0.804,Male,No relevent experience,no_enrollment,Masters,Business Degree,10,10000+,Public Sector,2,52,0.0 +19420,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,3,79,0.0 +17812,city_76,0.698,Male,Has relevent experience,Part time course,Masters,STEM,7,,,3,56,1.0 +14315,city_165,0.903,,No relevent experience,Full time course,High School,,1,,,never,122,0.0 +14076,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,80,0.0 +11797,city_116,0.743,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,18,0.0 +3909,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,1,1000-4999,NGO,1,48,0.0 +13877,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,5000-9999,Pvt Ltd,2,42,0.0 +29549,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,Pvt Ltd,1,113,0.0 +433,city_152,0.698,Male,No relevent experience,Full time course,Graduate,STEM,5,,Pvt Ltd,never,12,1.0 +10753,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,16,100-500,NGO,1,22,0.0 +11509,city_21,0.624,,Has relevent experience,,Graduate,STEM,4,100-500,Pvt Ltd,4,26,1.0 +17591,city_103,0.92,,No relevent experience,,,,3,,,never,174,0.0 +14965,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,,,,,70,0.0 +14722,city_69,0.856,,Has relevent experience,no_enrollment,Masters,Other,7,50-99,Pvt Ltd,1,95,0.0 +1469,city_159,0.843,,No relevent experience,Full time course,Graduate,STEM,4,,,,28,0.0 +5853,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Pvt Ltd,>4,48,0.0 +4675,city_11,0.55,Male,No relevent experience,Full time course,High School,,4,,,never,23,0.0 +23985,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,3,0.0 +22717,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,,,19,1.0 +27817,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,,never,73,1.0 +19397,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,4,168,1.0 +24903,city_21,0.624,,No relevent experience,Part time course,High School,,<1,,,never,50,0.0 +30872,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,>4,17,0.0 +16376,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,6,5000-9999,NGO,never,31,0.0 +1895,city_36,0.893,Female,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Pvt Ltd,1,38,0.0 +20848,city_10,0.895,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,94,0.0 +1993,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,1,50-99,Pvt Ltd,1,7,1.0 +18768,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,100-500,Pvt Ltd,2,55,0.0 +22006,city_102,0.804,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,54,0.0 +18323,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,5,,,never,105,0.0 +32661,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,10000+,Pvt Ltd,1,10,0.0 +33258,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,STEM,9,10/49,Pvt Ltd,4,111,1.0 +24296,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,1,16,1.0 +21781,city_11,0.55,Male,No relevent experience,Full time course,High School,,2,,,1,10,1.0 +20248,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,4,50,0.0 +3506,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,>4,15,0.0 +7061,city_65,0.802,,Has relevent experience,Full time course,Graduate,STEM,6,,,,100,0.0 +12272,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,9,100-500,,1,20,0.0 +32542,city_64,0.6659999999999999,Other,Has relevent experience,no_enrollment,High School,,>20,<10,Pvt Ltd,never,76,0.0 +18834,city_73,0.754,Female,Has relevent experience,Part time course,Graduate,STEM,5,10/49,Pvt Ltd,3,49,0.0 +6744,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,12,0.0 +13339,city_21,0.624,Male,No relevent experience,Part time course,Graduate,Other,<1,10/49,Pvt Ltd,1,10,1.0 +20712,city_71,0.884,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,>4,98,0.0 +25805,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,1,10000+,Pvt Ltd,1,25,0.0 +19387,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,1,34,0.0 +28471,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,36,0.0 +17306,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,4,,,2,34,1.0 +692,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,1,2,0.0 +7493,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,2,84,0.0 +30723,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,1000-4999,NGO,1,15,0.0 +32470,city_77,0.83,Male,Has relevent experience,Full time course,Graduate,STEM,11,<10,Pvt Ltd,1,15,0.0 +22164,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Funded Startup,>4,113,0.0 +12331,city_79,0.698,,No relevent experience,Part time course,,,2,,,,28,1.0 +31165,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,,,never,114,0.0 +30395,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,15,50-99,Pvt Ltd,>4,64,0.0 +5500,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,5,,,>4,15,0.0 +12611,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,5,,,1,24,1.0 +2244,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,3,64,0.0 +3986,city_23,0.899,Male,Has relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,2,10,0.0 +29198,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,>4,52,0.0 +23080,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,1,46,0.0 +30412,city_104,0.924,Male,No relevent experience,Full time course,,,3,,,>4,264,0.0 +28378,city_21,0.624,Male,No relevent experience,Part time course,Masters,STEM,8,1000-4999,Pvt Ltd,1,28,0.0 +6475,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Primary School,,2,,,never,204,0.0 +663,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,212,0.0 +5591,city_117,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,3,14,0.0 +15552,city_116,0.743,,Has relevent experience,Full time course,Graduate,STEM,2,5000-9999,Pvt Ltd,,8,0.0 +13313,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,110,0.0 +30832,city_149,0.6890000000000001,Other,No relevent experience,,Graduate,STEM,1,,,1,116,1.0 +31166,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,never,31,0.0 +7695,city_150,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,NGO,1,66,0.0 +4395,city_120,0.78,Male,No relevent experience,no_enrollment,Masters,Humanities,6,500-999,Public Sector,>4,20,0.0 +8245,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,>4,17,0.0 +10452,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,>4,308,0.0 +3640,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,18,500-999,Pvt Ltd,>4,26,0.0 +27673,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,,,1,19,0.0 +30356,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,2,17,1.0 +20701,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Early Stage Startup,never,20,0.0 +18307,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,1,44,1.0 +13799,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,No Major,9,50-99,Pvt Ltd,2,212,0.0 +12369,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,1,87,1.0 +14279,city_176,0.764,Male,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,2,12,0.0 +29761,city_160,0.92,Male,No relevent experience,Full time course,Graduate,Other,3,,,never,13,1.0 +27320,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,102,1.0 +17687,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,30,1.0 +18685,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,1,94,0.0 +18224,city_128,0.527,Male,Has relevent experience,Full time course,High School,,1,,,never,25,1.0 +15972,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,500-999,Pvt Ltd,3,24,0.0 +30585,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Pvt Ltd,3,10,0.0 +16884,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,40,0.0 +28688,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,500-999,Pvt Ltd,>4,116,0.0 +16068,city_141,0.763,,Has relevent experience,,Masters,STEM,19,,,never,28,0.0 +10634,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,166,1.0 +4933,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,152,0.0 +12622,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,4,50-99,Pvt Ltd,never,10,0.0 +22001,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,>4,83,0.0 +22882,city_114,0.9259999999999999,,Has relevent experience,Full time course,Phd,STEM,14,50-99,Pvt Ltd,>4,61,0.0 +17364,city_128,0.527,Male,No relevent experience,no_enrollment,Graduate,Other,5,,,1,17,1.0 +8254,city_102,0.804,Female,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,>4,41,0.0 +23966,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,17,0.0 +12771,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,STEM,2,<10,Funded Startup,2,46,0.0 +29007,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Funded Startup,1,131,0.0 +11107,city_90,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,7,100-500,Pvt Ltd,1,55,0.0 +7294,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,2,12,0.0 +23085,city_162,0.767,Male,Has relevent experience,Full time course,Graduate,STEM,15,50-99,Pvt Ltd,3,84,0.0 +6945,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Public Sector,>4,94,0.0 +12710,city_116,0.743,,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,1,20,0.0 +6340,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,3,76,0.0 +29985,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,124,0.0 +20889,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,68,0.0 +13885,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10000+,Pvt Ltd,1,22,0.0 +30927,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,5,,,2,54,1.0 +22249,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,1,12,0.0 +2138,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,1,23,0.0 +6318,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,1,15,0.0 +2391,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,2,32,0.0 +30848,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,2,,,never,17,0.0 +12892,city_100,0.887,Male,Has relevent experience,Full time course,Graduate,STEM,10,100-500,,never,10,0.0 +24030,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,High School,,6,50-99,Pvt Ltd,>4,162,0.0 +4394,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,46,0.0 +262,city_21,0.624,Male,No relevent experience,Full time course,High School,,8,,Pvt Ltd,never,328,0.0 +25550,city_111,0.698,Male,No relevent experience,no_enrollment,High School,,8,<10,Pvt Ltd,>4,20,0.0 +21515,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,4,0.0 +12435,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,2,0.0 +2395,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Early Stage Startup,1,46,0.0 +31395,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,26,0.0 +30802,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,88,0.0 +22895,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,20,0.0 +18087,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,83,0.0 +3007,city_21,0.624,,Has relevent experience,Part time course,Phd,Other,4,50-99,Pvt Ltd,,8,1.0 +1644,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,14,,,never,40,1.0 +15175,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,NGO,>4,37,0.0 +899,city_159,0.843,Male,Has relevent experience,no_enrollment,High School,,>20,,,>4,44,0.0 +13489,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,50-99,,1,49,0.0 +25265,city_91,0.691,Male,No relevent experience,no_enrollment,High School,,3,,,2,8,0.0 +13034,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,72,0.0 +14818,city_89,0.925,Male,No relevent experience,Full time course,Graduate,STEM,1,,,1,102,1.0 +6782,city_93,0.865,,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,1,30,0.0 +455,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Funded Startup,2,52,0.0 +21694,city_71,0.884,Female,Has relevent experience,Part time course,Graduate,STEM,>20,10000+,Pvt Ltd,>4,99,0.0 +28208,city_21,0.624,,No relevent experience,Full time course,High School,,5,,,never,91,1.0 +23534,city_103,0.92,Male,No relevent experience,Full time course,High School,,6,50-99,Public Sector,2,111,1.0 +16891,city_23,0.899,Male,Has relevent experience,Part time course,Graduate,STEM,16,10000+,Pvt Ltd,3,9,0.0 +30677,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,1,41,0.0 +24875,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,,10/49,,1,41,1.0 +4418,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,77,1.0 +29425,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,63,1.0 +29893,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Funded Startup,>4,262,0.0 +910,city_9,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Funded Startup,1,17,1.0 +19529,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,1000-4999,Pvt Ltd,1,10,1.0 +671,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,20,0.0 +324,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,4,78,0.0 +6131,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,never,37,0.0 +9374,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,55,0.0 +15270,city_160,0.92,Male,No relevent experience,no_enrollment,Primary School,,4,,,never,41,0.0 +21539,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,3,88,0.0 +26308,city_138,0.836,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,73,0.0 +14106,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,<1,,,1,31,1.0 +12263,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,,,>4,2,0.0 +31455,city_167,0.9209999999999999,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,76,1.0 +19445,city_117,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,8,5000-9999,Pvt Ltd,4,8,1.0 +9260,city_21,0.624,Male,Has relevent experience,Part time course,Masters,STEM,3,100-500,Pvt Ltd,2,25,0.0 +5955,city_102,0.804,Female,Has relevent experience,no_enrollment,Masters,STEM,10,,Pvt Ltd,2,24,0.0 +12876,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,2,57,1.0 +295,city_102,0.804,Male,No relevent experience,Full time course,High School,,4,,,never,66,0.0 +27013,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Graduate,Humanities,17,,,>4,33,0.0 +32208,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,1,78,0.0 +27152,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,,2,90,1.0 +9986,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Funded Startup,3,34,0.0 +1660,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,No Major,8,,,1,58,1.0 +6629,city_116,0.743,Male,Has relevent experience,Full time course,High School,,10,1000-4999,Pvt Ltd,1,50,0.0 +24282,city_23,0.899,Female,Has relevent experience,no_enrollment,Masters,STEM,20,500-999,Pvt Ltd,>4,10,0.0 +30394,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,1,9,0.0 +28743,city_100,0.887,Male,No relevent experience,no_enrollment,High School,,1,,,1,51,0.0 +23692,city_91,0.691,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,45,0.0 +22470,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,>4,126,0.0 +28559,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,22,0.0 +31082,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,13,10000+,Public Sector,4,90,1.0 +20636,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,,45,0.0 +14584,city_157,0.769,,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Public Sector,1,20,0.0 +27871,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,>4,108,0.0 +29770,city_83,0.9229999999999999,Female,No relevent experience,Full time course,Graduate,STEM,4,10000+,,1,206,0.0 +26620,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,2,28,1.0 +18424,city_98,0.9490000000000001,Male,No relevent experience,no_enrollment,Masters,No Major,>20,5000-9999,Public Sector,3,22,0.0 +24161,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,never,52,1.0 +2342,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,Other,>20,50-99,Pvt Ltd,1,65,0.0 +28805,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,NGO,1,21,0.0 +13329,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,>4,4,0.0 +18995,city_67,0.855,,No relevent experience,Part time course,High School,,2,,,never,112,0.0 +2869,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,>4,58,0.0 +24574,city_143,0.74,Male,No relevent experience,no_enrollment,High School,,<1,,,never,312,0.0 +5316,city_152,0.698,,No relevent experience,no_enrollment,High School,,3,,Pvt Ltd,never,202,0.0 +22614,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Early Stage Startup,1,68,1.0 +12549,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,,1,70,1.0 +438,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,>4,77,0.0 +15908,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Funded Startup,2,2,0.0 +15170,city_114,0.9259999999999999,Other,No relevent experience,Full time course,High School,,<1,,,never,13,0.0 +13556,city_16,0.91,,No relevent experience,Full time course,High School,,1,,,never,69,0.0 +16429,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,STEM,2,10/49,Pvt Ltd,1,42,0.0 +9025,city_67,0.855,,Has relevent experience,,Masters,STEM,11,100-500,Pvt Ltd,>4,10,0.0 +27720,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Funded Startup,2,83,0.0 +21646,city_40,0.7759999999999999,Male,No relevent experience,Full time course,High School,,5,,,never,56,1.0 +11962,city_39,0.898,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,1,31,0.0 +2157,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,<10,Pvt Ltd,>4,82,0.0 +7815,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,>4,87,0.0 +28986,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,>20,100-500,Pvt Ltd,1,220,0.0 +4753,city_67,0.855,,No relevent experience,Full time course,High School,,2,,Pvt Ltd,never,198,0.0 +22453,city_76,0.698,,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,NGO,2,119,1.0 +24154,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Arts,7,50-99,Funded Startup,1,103,0.0 +11418,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,16,,,1,28,0.0 +25589,city_75,0.9390000000000001,Male,No relevent experience,Full time course,High School,,7,5000-9999,Pvt Ltd,2,48,0.0 +11439,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,184,0.0 +8729,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,21,0.0 +18828,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,3,10/49,Pvt Ltd,1,248,0.0 +19552,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,Other,>20,500-999,Pvt Ltd,2,14,0.0 +6520,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,74,1.0 +1930,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,Humanities,5,50-99,Pvt Ltd,1,13,0.0 +11306,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,2,3,1.0 +18837,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,STEM,5,,,2,86,0.0 +28678,city_53,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,2,292,0.0 +189,city_71,0.884,,Has relevent experience,Part time course,Masters,STEM,13,500-999,Pvt Ltd,1,40,0.0 +5642,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,1,31,0.0 +13320,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,15,,,>4,174,1.0 +24312,city_48,0.493,Male,Has relevent experience,no_enrollment,High School,,4,,,1,105,1.0 +17879,city_141,0.763,Male,No relevent experience,Part time course,Graduate,STEM,2,,,2,25,0.0 +23960,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,70,0.0 +10671,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Other,8,10000+,Pvt Ltd,3,17,0.0 +4338,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,103,0.0 +6313,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,18,50-99,Pvt Ltd,4,109,0.0 +25482,city_12,0.64,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,>4,48,0.0 +26022,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,11,50-99,Public Sector,1,26,0.0 +28481,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,18,,Pvt Ltd,>4,116,0.0 +27611,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,100-500,Pvt Ltd,>4,22,0.0 +31931,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,Humanities,2,50-99,Pvt Ltd,never,57,0.0 +7465,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,2,62,0.0 +14121,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,3,100-500,NGO,1,109,1.0 +10567,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,89,0.0 +21921,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,2,146,0.0 +10020,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,16,500-999,Pvt Ltd,1,53,0.0 +7755,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,114,0.0 +26835,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,1,10/49,Pvt Ltd,never,21,1.0 +20172,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,>4,52,0.0 +23107,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,216,0.0 +26378,city_145,0.555,Male,No relevent experience,Full time course,High School,,2,,,never,34,1.0 +5358,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,Humanities,2,500-999,Pvt Ltd,1,30,0.0 +22496,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,2,5000-9999,Pvt Ltd,never,43,0.0 +8203,city_21,0.624,Male,Has relevent experience,,Masters,STEM,5,<10,Early Stage Startup,,107,1.0 +29559,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,2,55,0.0 +25151,city_173,0.878,Male,No relevent experience,Full time course,Graduate,STEM,3,,,3,112,1.0 +2957,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,42,0.0 +182,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,Pvt Ltd,1,28,0.0 +22578,city_21,0.624,Male,Has relevent experience,no_enrollment,,,2,,,1,27,0.0 +5379,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,2,5,1.0 +18274,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Funded Startup,1,70,0.0 +32824,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,1,50-99,Pvt Ltd,1,48,1.0 +21804,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,,,<1,,,never,76,0.0 +24426,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,164,0.0 +33090,city_71,0.884,Male,Has relevent experience,Part time course,Graduate,STEM,12,10000+,,1,77,0.0 +15453,city_20,0.7959999999999999,,Has relevent experience,no_enrollment,Masters,STEM,7,,,1,109,0.0 +24436,city_21,0.624,Male,Has relevent experience,no_enrollment,High School,,14,10/49,Pvt Ltd,>4,3,1.0 +11252,city_100,0.887,Male,No relevent experience,no_enrollment,Graduate,STEM,14,,,1,18,0.0 +27747,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,2,13,0.0 +31084,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,24,0.0 +13711,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,11,<10,Early Stage Startup,1,79,0.0 +23429,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,>4,19,1.0 +8247,city_61,0.9129999999999999,,No relevent experience,Full time course,High School,,6,,,never,22,0.0 +23573,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,7,,,1,94,0.0 +12327,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,18,0.0 +15514,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,1,6,0.0 +8266,city_30,0.698,,Has relevent experience,no_enrollment,High School,,8,<10,Early Stage Startup,1,166,0.0 +22204,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,10,500-999,Public Sector,1,40,1.0 +18334,city_103,0.92,Male,No relevent experience,Full time course,High School,,<1,,,never,12,0.0 +10826,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10000+,Public Sector,>4,83,0.0 +5746,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,27,0.0 +6806,city_16,0.91,,Has relevent experience,no_enrollment,Masters,Humanities,4,100-500,Pvt Ltd,2,154,0.0 +25445,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,3,50-99,Pvt Ltd,1,47,0.0 +18732,city_50,0.8959999999999999,Male,No relevent experience,Full time course,Masters,STEM,7,50-99,Public Sector,1,54,0.0 +16108,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,26,0.0 +25158,city_128,0.527,,Has relevent experience,no_enrollment,Graduate,Business Degree,17,,,>4,26,0.0 +16313,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,,1,206,0.0 +23297,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,10/49,Other,1,138,0.0 +24946,city_67,0.855,Female,Has relevent experience,Full time course,Masters,STEM,16,100-500,Pvt Ltd,3,168,0.0 +31048,city_136,0.897,Male,Has relevent experience,Part time course,Graduate,STEM,10,<10,Pvt Ltd,1,48,0.0 +20490,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,6,1000-4999,Pvt Ltd,3,15,1.0 +28560,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,16,10/49,,1,54,0.0 +18980,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,2,59,0.0 +29039,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,32,0.0 +15786,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,9,0.0 +19439,city_21,0.624,,No relevent experience,Full time course,,,<1,,,1,37,1.0 +21298,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,14,10000+,Public Sector,2,52,1.0 +21161,city_160,0.92,,No relevent experience,no_enrollment,Phd,STEM,19,100-500,Pvt Ltd,>4,152,0.0 +32128,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,>20,100-500,Pvt Ltd,2,136,0.0 +6245,city_65,0.802,Male,No relevent experience,Part time course,Graduate,STEM,1,,,never,29,1.0 +14163,city_103,0.92,,Has relevent experience,no_enrollment,High School,,15,10000+,Pvt Ltd,>4,45,0.0 +26726,city_16,0.91,,Has relevent experience,Full time course,Graduate,STEM,7,,,never,16,0.0 +27941,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,2,36,0.0 +33350,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,3,7,1.0 +18617,city_16,0.91,Other,Has relevent experience,no_enrollment,Graduate,STEM,11,5000-9999,Pvt Ltd,1,33,0.0 +10939,city_16,0.91,Female,Has relevent experience,Full time course,Masters,STEM,12,100-500,Pvt Ltd,1,44,1.0 +15423,city_10,0.895,,Has relevent experience,Part time course,Masters,STEM,6,10/49,NGO,>4,22,1.0 +27562,city_1,0.847,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,7,1.0 +19664,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,30,0.0 +20727,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,3,125,0.0 +30594,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Other,>4,30,0.0 +16211,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,11,,,4,82,1.0 +7592,city_103,0.92,,No relevent experience,Full time course,Masters,STEM,6,,,never,117,1.0 +14298,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,Business Degree,7,100-500,Pvt Ltd,2,15,0.0 +16022,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,1,84,0.0 +3337,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,4,100-500,Pvt Ltd,3,52,0.0 +25548,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,2,28,0.0 +27560,city_123,0.738,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,1,53,0.0 +23929,city_71,0.884,Male,No relevent experience,no_enrollment,Graduate,STEM,18,,,>4,18,0.0 +22315,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Funded Startup,2,6,0.0 +8508,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,Pvt Ltd,1,18,0.0 +31752,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Early Stage Startup,1,158,0.0 +14548,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,STEM,3,,,2,36,1.0 +4412,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,never,74,0.0 +5495,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,5,,,1,25,1.0 +8452,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,11,50-99,Funded Startup,1,113,0.0 +12430,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,74,1.0 +5373,city_140,0.856,Male,No relevent experience,no_enrollment,High School,,1,,Pvt Ltd,never,26,0.0 +451,city_162,0.767,Male,Has relevent experience,Part time course,Graduate,STEM,10,50-99,Pvt Ltd,2,308,0.0 +23099,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,No Major,19,50-99,Pvt Ltd,4,72,0.0 +14317,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,STEM,7,1000-4999,Pvt Ltd,2,22,0.0 +31225,city_103,0.92,Female,No relevent experience,Full time course,Masters,Humanities,7,,,1,35,1.0 +26877,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,500-999,Pvt Ltd,1,184,0.0 +11281,city_75,0.9390000000000001,Female,No relevent experience,no_enrollment,Primary School,,3,,,never,11,0.0 +31573,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,19,1.0 +15026,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,<1,,,1,50,0.0 +9018,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,91,1.0 +18022,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,500-999,Pvt Ltd,4,46,0.0 +3737,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,11,50-99,Pvt Ltd,2,54,0.0 +1445,city_72,0.795,Male,Has relevent experience,no_enrollment,High School,,3,,,never,45,0.0 +7847,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,24,0.0 +9151,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,7,,,1,18,0.0 +21769,city_118,0.722,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,70,1.0 +12031,city_24,0.698,Other,Has relevent experience,no_enrollment,Graduate,Business Degree,5,,,1,21,0.0 +31056,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,3,52,1.0 +19386,city_80,0.847,Male,No relevent experience,Part time course,Graduate,STEM,9,500-999,Pvt Ltd,>4,29,0.0 +19366,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,Pvt Ltd,1,92,1.0 +12877,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,>4,88,0.0 +28342,city_103,0.92,,Has relevent experience,Part time course,Masters,STEM,15,1000-4999,Pvt Ltd,2,17,0.0 +12675,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,Funded Startup,1,51,0.0 +29087,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,16,0.0 +30281,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,2,34,0.0 +10077,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,10,<10,Early Stage Startup,1,48,0.0 +21915,city_16,0.91,,Has relevent experience,no_enrollment,Phd,STEM,11,10000+,Pvt Ltd,>4,23,0.0 +11662,city_65,0.802,Male,No relevent experience,Full time course,High School,,5,1000-4999,,1,2,0.0 +1426,city_16,0.91,,No relevent experience,no_enrollment,Graduate,Humanities,<1,50-99,Pvt Ltd,1,72,0.0 +17313,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,6,,,4,76,1.0 +21525,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,never,30,0.0 +32933,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,>4,34,0.0 +5097,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,<1,,,1,30,0.0 +31140,city_16,0.91,Male,No relevent experience,no_enrollment,Primary School,,<1,,,never,31,0.0 +19268,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,1,113,0.0 +5920,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,4,196,0.0 +25795,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,NGO,4,75,0.0 +8867,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,10,<10,Pvt Ltd,2,58,0.0 +4624,city_100,0.887,Male,No relevent experience,Full time course,Graduate,STEM,3,,Pvt Ltd,never,54,0.0 +17757,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,,1,16,1.0 +6259,city_45,0.89,Male,Has relevent experience,,Masters,STEM,15,50-99,Pvt Ltd,>4,26,0.0 +20915,city_21,0.624,,No relevent experience,Full time course,High School,,2,,,never,302,0.0 +9008,city_160,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,77,1.0 +13516,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Early Stage Startup,>4,50,0.0 +23234,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,2,29,0.0 +29796,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,NGO,1,109,0.0 +28454,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,33,0.0 +29450,city_90,0.698,Male,No relevent experience,Full time course,High School,,2,<10,Early Stage Startup,never,43,0.0 +24557,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,>4,39,0.0 +13615,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,,4,1.0 +16642,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Funded Startup,2,112,0.0 +19706,city_11,0.55,,Has relevent experience,Full time course,Primary School,,,<10,Early Stage Startup,,62,1.0 +3653,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,>4,52,0.0 +29987,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,70,0.0 +20542,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,>4,30,0.0 +2236,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,8,,,1,52,1.0 +13965,city_136,0.897,,Has relevent experience,Part time course,Graduate,STEM,4,,,1,106,0.0 +18308,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,4,10/49,,1,22,0.0 +31060,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,58,1.0 +23783,city_90,0.698,,No relevent experience,Full time course,Graduate,STEM,2,100-500,Pvt Ltd,,145,0.0 +12350,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,No Major,>20,50-99,Pvt Ltd,1,9,0.0 +22871,city_131,0.68,Male,No relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Pvt Ltd,2,32,0.0 +4985,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,4,,Public Sector,1,184,0.0 +23395,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10/49,Funded Startup,never,4,0.0 +24733,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,>4,298,0.0 +5515,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,>4,57,0.0 +7191,city_11,0.55,Male,Has relevent experience,Full time course,Graduate,STEM,9,10/49,Pvt Ltd,>4,14,0.0 +5023,city_141,0.763,Male,Has relevent experience,Full time course,Masters,STEM,2,50-99,Pvt Ltd,never,55,0.0 +22827,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,14,500-999,Public Sector,1,46,0.0 +8920,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,1,43,1.0 +28611,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,61,1.0 +21749,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,2,26,0.0 +29359,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,2,37,0.0 +17355,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,4,100-500,Pvt Ltd,1,60,0.0 +14706,city_24,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,,>4,96,0.0 +5707,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,2,53,0.0 +24866,city_21,0.624,,No relevent experience,Full time course,,,4,,,never,41,1.0 +21329,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,never,242,0.0 +32367,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,102,0.0 +32657,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,1,18,0.0 +15737,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,50,1.0 +11378,city_46,0.762,,No relevent experience,no_enrollment,Graduate,STEM,4,,,never,51,1.0 +20705,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,3,28,0.0 +5598,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,2,<10,Pvt Ltd,1,11,1.0 +13926,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,7,1000-4999,Pvt Ltd,4,33,0.0 +2701,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,70,0.0 +33016,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,2,51,0.0 +4570,city_11,0.55,Male,No relevent experience,Full time course,High School,,2,,,1,10,0.0 +5884,city_90,0.698,Male,No relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,3,8,0.0 +24182,city_89,0.925,Female,Has relevent experience,no_enrollment,Masters,STEM,19,10000+,Pvt Ltd,never,24,0.0 +31755,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,3,20,0.0 +22499,city_45,0.89,,Has relevent experience,Full time course,High School,,6,50-99,Pvt Ltd,1,36,0.0 +14519,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,2,56,0.0 +10697,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,,17,0.0 +28006,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,18,,,1,59,0.0 +23054,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,19,,,1,56,0.0 +20290,city_159,0.843,,No relevent experience,Full time course,Graduate,STEM,5,,,never,13,1.0 +8657,city_16,0.91,,No relevent experience,Full time course,Graduate,STEM,2,,,1,42,1.0 +20181,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,1,10,1.0 +4550,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,130,0.0 +581,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,3,108,0.0 +18561,city_136,0.897,Male,No relevent experience,Full time course,Masters,Business Degree,5,,,1,21,0.0 +16334,city_90,0.698,,Has relevent experience,Full time course,Graduate,STEM,4,,,1,26,1.0 +1805,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Funded Startup,1,81,1.0 +9347,city_91,0.691,,Has relevent experience,Full time course,Graduate,STEM,3,100-500,Public Sector,2,26,0.0 +9062,city_155,0.556,Male,Has relevent experience,Full time course,Graduate,STEM,1,500-999,Pvt Ltd,never,46,0.0 +2639,city_67,0.855,Other,Has relevent experience,Full time course,Masters,STEM,7,,,1,24,0.0 +18922,city_21,0.624,,No relevent experience,,Graduate,STEM,4,,,never,7,0.0 +32363,city_73,0.754,Male,Has relevent experience,no_enrollment,High School,,<1,,Pvt Ltd,never,23,0.0 +25487,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,8,1000-4999,Public Sector,3,57,0.0 +28297,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,77,0.0 +14455,city_123,0.738,Male,Has relevent experience,Full time course,Graduate,STEM,3,10000+,Pvt Ltd,1,24,0.0 +18342,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,1,50-99,Pvt Ltd,1,8,1.0 +24336,city_16,0.91,,No relevent experience,no_enrollment,Primary School,,3,,,never,48,0.0 +30851,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,1000-4999,Public Sector,1,46,0.0 +30182,city_103,0.92,,Has relevent experience,Full time course,High School,,6,,,2,8,1.0 +2601,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,152,1.0 +2314,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,Other,7,10000+,Pvt Ltd,1,19,0.0 +16919,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,4,21,0.0 +19497,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,5,10000+,Pvt Ltd,never,210,0.0 +19884,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,28,0.0 +26789,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,10,1.0 +6029,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Arts,>20,,,1,170,1.0 +1428,city_102,0.804,Female,No relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,>4,72,0.0 +20601,city_64,0.6659999999999999,,No relevent experience,no_enrollment,Graduate,STEM,3,,,3,44,0.0 +16949,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,20,1000-4999,NGO,>4,69,0.0 +17511,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,22,0.0 +24623,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,1,36,0.0 +1804,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,never,22,1.0 +5201,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,89,1.0 +27705,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,never,57,0.0 +8675,city_104,0.924,Male,No relevent experience,no_enrollment,Phd,STEM,16,100-500,Pvt Ltd,1,332,1.0 +9647,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Early Stage Startup,1,88,0.0 +16967,city_142,0.727,Male,No relevent experience,Full time course,Primary School,,7,,,1,22,1.0 +8760,city_45,0.89,,No relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,never,29,0.0 +4433,city_160,0.92,Female,Has relevent experience,Full time course,Graduate,STEM,5,100-500,Pvt Ltd,2,23,0.0 +6011,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Early Stage Startup,2,51,1.0 +25161,city_10,0.895,Male,Has relevent experience,Part time course,High School,,6,1000-4999,Pvt Ltd,4,22,0.0 +30896,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,4,35,0.0 +4590,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,,2,15,0.0 +25045,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,27,0.0 +4022,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Early Stage Startup,never,314,0.0 +28769,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,Arts,>20,50-99,Pvt Ltd,4,54,0.0 +7978,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,14,1.0 +33095,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,19,50-99,Pvt Ltd,1,25,0.0 +21799,city_97,0.925,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Funded Startup,2,28,0.0 +31781,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Funded Startup,1,57,0.0 +31256,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,19,<10,Pvt Ltd,1,334,0.0 +27696,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,56,0.0 +2385,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,>4,114,0.0 +8954,city_74,0.579,,Has relevent experience,Part time course,Graduate,STEM,3,<10,Pvt Ltd,1,20,1.0 +9325,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,32,0.0 +16469,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,7,0.0 +15377,city_65,0.802,Male,Has relevent experience,Full time course,Graduate,Other,3,,,1,25,0.0 +30183,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,86,1.0 +33199,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Funded Startup,4,99,0.0 +30855,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,8,10000+,Pvt Ltd,2,20,1.0 +29273,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,8,10000+,Pvt Ltd,>4,188,1.0 +27891,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,2,110,0.0 +13445,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,,3,57,1.0 +31912,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Public Sector,1,38,1.0 +8786,city_20,0.7959999999999999,,Has relevent experience,Part time course,Graduate,STEM,6,50-99,Funded Startup,1,18,0.0 +17063,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,4,5000-9999,Pvt Ltd,1,28,0.0 +17946,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,11,1000-4999,Pvt Ltd,2,8,0.0 +13496,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,<1,10/49,,1,100,1.0 +29415,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,1,8,0.0 +25804,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,2,26,0.0 +20077,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,,2,55,0.0 +32402,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,5,50-99,Public Sector,2,163,0.0 +27668,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,4,51,0.0 +25565,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,15,100-500,Public Sector,1,106,0.0 +17058,city_36,0.893,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,45,1.0 +16323,city_138,0.836,,No relevent experience,Full time course,Masters,STEM,4,,,1,15,1.0 +26860,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,9,,,1,28,0.0 +15624,city_67,0.855,Male,No relevent experience,Part time course,Graduate,STEM,17,,,2,19,0.0 +24788,city_103,0.92,Female,No relevent experience,Full time course,Masters,STEM,5,,Public Sector,1,86,1.0 +7457,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,>4,140,0.0 +8152,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,2,26,1.0 +2828,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,5000-9999,Pvt Ltd,1,141,0.0 +4385,city_79,0.698,,No relevent experience,Part time course,Graduate,STEM,4,,,,46,1.0 +24912,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,17,0.0 +23351,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,2,50-99,Pvt Ltd,,48,1.0 +8888,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Early Stage Startup,1,324,0.0 +31653,city_173,0.878,Male,No relevent experience,,,,6,,,1,60,0.0 +1648,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,89,1.0 +17984,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,134,0.0 +5470,city_53,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,4,84,0.0 +8910,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,1,9,1.0 +49,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,10000+,Pvt Ltd,2,36,0.0 +24794,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,2,31,0.0 +8712,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,1,,Other,never,26,0.0 +27580,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,10,0.0 +16982,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,4,210,0.0 +13551,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,7,10/49,Pvt Ltd,2,136,1.0 +8853,city_103,0.92,Female,No relevent experience,Part time course,Masters,Humanities,>20,10000+,Pvt Ltd,>4,9,0.0 +31137,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,20,1.0 +24188,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,86,0.0 +19632,city_78,0.579,,No relevent experience,Full time course,Graduate,Humanities,1,,,never,118,0.0 +5887,city_78,0.579,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,11,,,4,52,0.0 +23000,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,66,1.0 +7175,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,5,0.0 +14709,city_136,0.897,,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,56,0.0 +7513,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10000+,Pvt Ltd,1,57,0.0 +23431,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,1,,,never,85,0.0 +972,city_100,0.887,Male,No relevent experience,Full time course,Graduate,STEM,3,<10,Funded Startup,1,10,1.0 +845,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,86,0.0 +22126,city_1,0.847,Male,Has relevent experience,Full time course,Masters,STEM,6,10/49,,1,3,0.0 +32220,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,Other,18,10000+,,1,44,0.0 +8230,city_138,0.836,Male,No relevent experience,no_enrollment,Primary School,,1,,,never,34,0.0 +7067,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Arts,15,100-500,Pvt Ltd,1,84,0.0 +11941,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,,2,91,0.0 +3634,city_83,0.9229999999999999,Male,Has relevent experience,Full time course,High School,,9,,,1,56,0.0 +13326,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,,1,15,0.0 +7245,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,NGO,1,44,1.0 +10292,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,9,0.0 +18987,city_21,0.624,,No relevent experience,Full time course,High School,,1,,,never,104,1.0 +12897,city_84,0.698,Male,No relevent experience,Full time course,Graduate,STEM,1,,,1,81,1.0 +8240,city_97,0.925,Male,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Pvt Ltd,1,118,1.0 +16337,city_21,0.624,Female,No relevent experience,Full time course,Masters,STEM,3,,,never,94,1.0 +859,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,14,0.0 +615,city_67,0.855,Male,Has relevent experience,Part time course,Graduate,STEM,4,<10,Pvt Ltd,1,141,0.0 +24537,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,4,334,0.0 +19283,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,7,1000-4999,Pvt Ltd,1,148,1.0 +32905,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,10,,,>4,81,1.0 +16209,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,>20,10000+,Pvt Ltd,4,14,0.0 +11103,city_105,0.794,Male,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Pvt Ltd,never,62,0.0 +9627,city_11,0.55,Female,No relevent experience,Full time course,Graduate,STEM,4,,,never,25,0.0 +5053,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Public Sector,1,26,0.0 +29219,city_67,0.855,Male,No relevent experience,no_enrollment,High School,,3,,,never,12,1.0 +9581,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,84,1.0 +16263,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,2,,,never,20,1.0 +8697,city_54,0.856,Male,Has relevent experience,Full time course,Graduate,STEM,15,<10,Pvt Ltd,3,332,0.0 +15099,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,2,97,1.0 +7130,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,11,,,4,130,1.0 +24239,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,2,124,0.0 +14352,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Pvt Ltd,>4,258,0.0 +2460,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,Pvt Ltd,never,26,1.0 +8229,city_149,0.6890000000000001,,No relevent experience,no_enrollment,,,2,,,never,21,0.0 +3222,city_150,0.698,Male,Has relevent experience,no_enrollment,,,11,,,1,190,0.0 +1997,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Public Sector,1,5,1.0 +17025,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,1,3,0.0 +12441,city_99,0.915,Male,No relevent experience,Full time course,High School,,4,,,1,192,0.0 +26329,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,7,,,2,53,0.0 +8412,city_116,0.743,,Has relevent experience,Full time course,Masters,STEM,2,50-99,Pvt Ltd,1,4,0.0 +14857,city_40,0.7759999999999999,,Has relevent experience,no_enrollment,Masters,STEM,8,500-999,Pvt Ltd,never,101,0.0 +14146,city_116,0.743,,No relevent experience,no_enrollment,Masters,Humanities,2,,,1,198,1.0 +31289,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,66,1.0 +28682,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,2,224,1.0 +9912,city_77,0.83,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Pvt Ltd,1,45,0.0 +16445,city_71,0.884,Male,No relevent experience,no_enrollment,Masters,STEM,1,,,1,206,0.0 +13310,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,264,0.0 +9723,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,,,6,50-99,Public Sector,2,23,0.0 +516,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,,,>4,48,1.0 +21008,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,2,66,0.0 +5114,city_103,0.92,,Has relevent experience,,Graduate,STEM,3,50-99,Funded Startup,1,52,0.0 +14846,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,2,35,0.0 +20995,city_36,0.893,,No relevent experience,Full time course,Primary School,,3,,,1,22,0.0 +7625,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,22,1.0 +28352,city_131,0.68,Male,Has relevent experience,no_enrollment,Masters,STEM,12,1000-4999,Pvt Ltd,1,21,0.0 +14055,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,1,89,0.0 +6005,city_21,0.624,,No relevent experience,Part time course,Graduate,STEM,7,5000-9999,Pvt Ltd,2,109,0.0 +12625,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,9,10000+,Pvt Ltd,>4,91,1.0 +18278,city_160,0.92,Female,No relevent experience,Full time course,Graduate,STEM,3,500-999,Pvt Ltd,2,61,0.0 +17202,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,>20,100-500,Pvt Ltd,>4,146,0.0 +9447,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,2,202,0.0 +23194,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,16,<10,Pvt Ltd,>4,39,0.0 +8851,city_46,0.762,Male,No relevent experience,Part time course,High School,,3,,,never,72,0.0 +26602,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,5,<10,Funded Startup,1,60,0.0 +16243,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,11,1000-4999,Pvt Ltd,1,134,0.0 +7035,city_100,0.887,Male,Has relevent experience,Part time course,Masters,Humanities,9,<10,,1,24,0.0 +28906,city_39,0.898,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,500-999,Pvt Ltd,1,220,0.0 +8386,city_36,0.893,,Has relevent experience,Full time course,Graduate,STEM,<1,500-999,Pvt Ltd,1,50,0.0 +20617,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,6,<10,Pvt Ltd,>4,14,0.0 +27956,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,17,10000+,Pvt Ltd,1,12,0.0 +16980,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,5,,,never,66,0.0 +1767,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,,,2,41,0.0 +6932,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,never,80,1.0 +809,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,NGO,>4,90,0.0 +9697,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Public Sector,1,142,0.0 +12637,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Pvt Ltd,1,151,1.0 +15878,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Early Stage Startup,1,82,0.0 +4874,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,>4,28,0.0 +30799,city_46,0.762,,Has relevent experience,no_enrollment,Masters,STEM,18,1000-4999,Other,4,51,0.0 +5835,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,1,59,0.0 +24572,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Pvt Ltd,2,155,0.0 +75,city_105,0.794,Male,No relevent experience,no_enrollment,High School,,3,,Pvt Ltd,never,14,0.0 +12344,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,2,26,0.0 +13270,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,23,1.0 +5686,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,107,0.0 +9900,city_160,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,2,,,1,40,0.0 +5446,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,>4,111,1.0 +12224,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,59,1.0 +3657,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,2,17,0.0 +9439,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,6,10000+,Pvt Ltd,1,16,0.0 +3431,city_83,0.9229999999999999,Other,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Pvt Ltd,3,89,0.0 +17459,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,48,1.0 +11062,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,75,0.0 +26136,city_67,0.855,Male,Has relevent experience,Part time course,Graduate,Business Degree,2,5000-9999,Pvt Ltd,2,42,0.0 +31443,city_179,0.512,Female,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,>4,75,0.0 +19891,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,42,1.0 +21624,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,28,0.0 +3857,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Pvt Ltd,1,32,0.0 +7662,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,2,,,1,224,1.0 +2834,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,Humanities,<1,100-500,Pvt Ltd,1,78,0.0 +18621,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,2,86,0.0 +24301,city_128,0.527,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,111,0.0 +27322,city_128,0.527,Female,No relevent experience,Part time course,Graduate,STEM,1,,,never,86,0.0 +4898,city_114,0.9259999999999999,Male,No relevent experience,,High School,,6,,,1,18,0.0 +18714,city_10,0.895,Male,Has relevent experience,no_enrollment,Primary School,,>20,,,3,300,0.0 +16546,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,Other,4,1000-4999,Pvt Ltd,2,6,0.0 +8783,city_91,0.691,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,>4,18,0.0 +27387,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,1,38,1.0 +7725,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,5,1000-4999,Pvt Ltd,never,56,0.0 +11636,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,STEM,11,,,never,18,1.0 +14820,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,3,112,0.0 +18872,city_16,0.91,,Has relevent experience,Full time course,Graduate,STEM,10,10000+,Pvt Ltd,2,17,0.0 +33377,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,Other,10,100-500,Pvt Ltd,2,27,0.0 +31344,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Public Sector,>4,39,0.0 +22968,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,9,<10,Funded Startup,3,24,0.0 +22171,city_138,0.836,Male,Has relevent experience,Part time course,Graduate,STEM,19,100-500,Public Sector,1,4,0.0 +20927,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,18,,,,10,0.0 +11820,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,3,136,0.0 +6195,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,2,73,0.0 +30129,city_16,0.91,Male,No relevent experience,Full time course,High School,,5,,,1,34,1.0 +13654,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,2,42,0.0 +2523,city_173,0.878,,No relevent experience,no_enrollment,,,11,1000-4999,Pvt Ltd,>4,73,0.0 +23979,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,9,,,2,11,0.0 +30080,city_103,0.92,Male,Has relevent experience,no_enrollment,,,6,,,never,25,0.0 +9620,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,15,100-500,Funded Startup,>4,102,0.0 +32665,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,53,1.0 +16716,city_100,0.887,,No relevent experience,Part time course,Graduate,STEM,5,<10,Pvt Ltd,3,20,0.0 +4237,city_160,0.92,,No relevent experience,Part time course,Graduate,STEM,15,,,2,20,0.0 +23117,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,47,0.0 +17317,city_102,0.804,Male,Has relevent experience,Full time course,Graduate,STEM,6,50-99,Pvt Ltd,1,102,1.0 +18708,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,5,,,never,178,0.0 +9969,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,12,,,1,1,1.0 +9141,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,6,1.0 +3958,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,>4,166,1.0 +12783,city_67,0.855,Male,Has relevent experience,Full time course,Masters,STEM,8,100-500,Pvt Ltd,>4,204,0.0 +7850,city_64,0.6659999999999999,Male,Has relevent experience,Full time course,Masters,STEM,>20,<10,Pvt Ltd,never,98,0.0 +19392,city_158,0.7659999999999999,,No relevent experience,Part time course,Graduate,STEM,4,10/49,Pvt Ltd,1,9,0.0 +7073,city_101,0.5579999999999999,Male,No relevent experience,Full time course,Graduate,STEM,3,10/49,Pvt Ltd,1,67,1.0 +33118,city_103,0.92,Female,Has relevent experience,Part time course,Graduate,STEM,8,10000+,Pvt Ltd,1,43,0.0 +7274,city_24,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,12,500-999,,1,11,0.0 +4221,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,7,,Pvt Ltd,never,28,0.0 +9474,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,39,0.0 +22331,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,9,,,never,42,0.0 +3384,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,17,0.0 +21095,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,1,,,never,12,1.0 +11749,city_50,0.8959999999999999,Male,No relevent experience,Full time course,High School,,2,,,never,54,0.0 +2849,city_104,0.924,Male,No relevent experience,Full time course,High School,,3,50-99,Funded Startup,1,17,0.0 +32436,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,3,,Public Sector,never,26,0.0 +19399,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,500-999,Pvt Ltd,1,10,1.0 +11175,city_12,0.64,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,1,148,0.0 +12743,city_100,0.887,,Has relevent experience,no_enrollment,High School,,9,50-99,Pvt Ltd,never,5,0.0 +7594,city_71,0.884,,No relevent experience,Part time course,Graduate,STEM,15,,,1,13,1.0 +26012,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,10/49,Early Stage Startup,1,151,0.0 +4553,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,<1,,Pvt Ltd,never,15,1.0 +26884,city_1,0.847,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,,3,35,0.0 +4117,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,>4,130,0.0 +32785,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,,never,46,1.0 +30661,city_54,0.856,Male,No relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,1,119,0.0 +27047,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,2,43,0.0 +30116,city_19,0.682,Male,Has relevent experience,,Graduate,STEM,7,50-99,Pvt Ltd,1,39,0.0 +23942,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Funded Startup,4,21,0.0 +30610,city_94,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,5,<10,Early Stage Startup,2,238,0.0 +27364,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Funded Startup,1,21,0.0 +18017,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,1,<10,NGO,never,53,0.0 +1920,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Public Sector,2,38,1.0 +7166,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,18,10000+,Pvt Ltd,>4,32,0.0 +5022,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,4,,,never,38,1.0 +20835,city_136,0.897,Male,No relevent experience,Part time course,Masters,STEM,4,1000-4999,,1,17,0.0 +18025,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,20,0.0 +15758,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,17,<10,Pvt Ltd,>4,81,0.0 +31748,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,7,10000+,Public Sector,1,82,1.0 +31005,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,54,1.0 +20858,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10/49,Pvt Ltd,2,170,0.0 +27548,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,3,,,never,7,0.0 +21132,city_71,0.884,Male,No relevent experience,Full time course,High School,,8,,,1,113,0.0 +2169,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,4,10/49,Early Stage Startup,1,39,0.0 +21693,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,Pvt Ltd,>4,36,0.0 +11354,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,25,0.0 +13566,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,,2,14,1.0 +14102,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,,4,40,0.0 +21574,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,15,0.0 +33046,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,57,0.0 +12859,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,5,50-99,Funded Startup,1,129,0.0 +3508,city_173,0.878,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,>4,98,0.0 +4469,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,2,11,1.0 +8503,city_74,0.579,Male,No relevent experience,Full time course,High School,,2,,,never,158,0.0 +202,city_67,0.855,Male,No relevent experience,no_enrollment,Masters,STEM,>20,10/49,Funded Startup,>4,78,0.0 +32926,city_104,0.924,Female,No relevent experience,Part time course,Graduate,STEM,19,10000+,Pvt Ltd,4,81,0.0 +5234,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Funded Startup,1,11,1.0 +5221,city_10,0.895,Male,Has relevent experience,,,,>20,,,>4,146,0.0 +25382,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Other,10,10000+,Pvt Ltd,4,45,1.0 +19960,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,6,0.0 +14527,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,<1,<10,Early Stage Startup,1,5,1.0 +21069,city_149,0.6890000000000001,,No relevent experience,Full time course,High School,,3,,,,26,1.0 +20193,city_103,0.92,Male,No relevent experience,Full time course,High School,,10,,,1,32,1.0 +11980,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,15,,,1,46,1.0 +30243,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,never,43,1.0 +14986,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,>20,10/49,Pvt Ltd,never,69,0.0 +17222,city_102,0.804,Male,Has relevent experience,no_enrollment,High School,,12,,Pvt Ltd,1,20,0.0 +13731,city_162,0.767,Male,Has relevent experience,Part time course,Graduate,STEM,7,10/49,,1,99,0.0 +13439,city_100,0.887,Male,Has relevent experience,,Graduate,STEM,>20,500-999,Pvt Ltd,>4,4,0.0 +22923,city_104,0.924,Male,No relevent experience,Full time course,,,6,,,2,21,0.0 +1356,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,15,1.0 +23551,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,9,,,1,48,0.0 +6110,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,74,1.0 +11738,city_100,0.887,Male,Has relevent experience,Full time course,High School,,10,,,1,78,0.0 +2102,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,100-500,Early Stage Startup,2,44,0.0 +12176,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,114,0.0 +32124,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,High School,,19,<10,Pvt Ltd,1,26,0.0 +1516,city_41,0.8270000000000001,,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,,1,56,0.0 +9631,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,never,62,1.0 +3522,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,2,106,0.0 +15084,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,67,0.0 +32528,city_128,0.527,,No relevent experience,no_enrollment,High School,,3,,,never,34,0.0 +11337,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,9,,,never,37,0.0 +28301,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,161,0.0 +4229,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,1,30,0.0 +8541,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,NGO,,77,0.0 +23178,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,4,10000+,Pvt Ltd,1,100,0.0 +20643,city_64,0.6659999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,4,10000+,Pvt Ltd,never,22,0.0 +10666,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,No Major,19,10000+,Pvt Ltd,never,18,0.0 +6336,city_159,0.843,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,23,0.0 +19510,city_36,0.893,,Has relevent experience,Part time course,Graduate,STEM,11,,,1,52,0.0 +2733,city_16,0.91,,No relevent experience,no_enrollment,,,2,,Pvt Ltd,never,30,0.0 +27264,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,80,0.0 +7676,city_149,0.6890000000000001,,No relevent experience,no_enrollment,Graduate,STEM,3,10/49,Funded Startup,3,84,0.0 +12466,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Funded Startup,2,64,0.0 +8301,city_43,0.516,,Has relevent experience,Full time course,Graduate,STEM,3,500-999,Pvt Ltd,1,32,0.0 +10991,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,15,1.0 +7252,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Business Degree,2,,,1,42,1.0 +18303,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,3,,,,22,1.0 +7675,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,2,96,1.0 +8898,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,4,31,0.0 +22735,city_126,0.479,,Has relevent experience,Full time course,Phd,STEM,>20,10000+,Pvt Ltd,>4,44,0.0 +3093,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,Arts,>20,,,>4,157,0.0 +11259,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,4,23,0.0 +733,city_53,0.74,Male,Has relevent experience,Part time course,Graduate,STEM,14,,Pvt Ltd,>4,12,0.0 +27932,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,52,0.0 +7153,city_23,0.899,Male,Has relevent experience,Part time course,Graduate,STEM,8,10/49,Early Stage Startup,1,19,0.0 +10870,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,25,1.0 +16114,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,1,7,0.0 +32158,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,3,81,0.0 +22048,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,4,105,0.0 +14707,city_64,0.6659999999999999,Male,No relevent experience,Full time course,Graduate,STEM,3,10/49,Pvt Ltd,1,18,0.0 +4678,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,Other,>20,<10,Early Stage Startup,2,28,0.0 +10070,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,3,12,0.0 +18571,city_21,0.624,Female,Has relevent experience,,Masters,STEM,7,50-99,Pvt Ltd,1,12,1.0 +16340,city_65,0.802,,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,never,64,0.0 +18026,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,Primary School,,7,,,never,50,0.0 +10541,city_21,0.624,,Has relevent experience,,Graduate,STEM,2,,,2,43,1.0 +10036,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,10,,Public Sector,>4,112,1.0 +2792,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,44,0.0 +162,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,3,28,0.0 +5070,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,15,0.0 +10530,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,1,88,0.0 +22378,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,,,>20,,,never,94,0.0 +20865,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,56,0.0 +7344,city_104,0.924,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,314,0.0 +6789,city_141,0.763,Male,No relevent experience,Full time course,Graduate,STEM,5,500-999,Pvt Ltd,1,44,0.0 +12839,city_64,0.6659999999999999,Male,No relevent experience,no_enrollment,Primary School,,<1,,,never,7,0.0 +30306,city_74,0.579,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,9,0.0 +16274,city_160,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,>4,88,1.0 +13694,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Early Stage Startup,1,105,0.0 +12232,city_26,0.698,Male,Has relevent experience,,Graduate,STEM,14,50-99,Pvt Ltd,2,32,0.0 +5154,city_160,0.92,Other,No relevent experience,no_enrollment,Masters,STEM,4,100-500,Pvt Ltd,2,29,0.0 +1272,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,50,0.0 +26890,city_36,0.893,Male,Has relevent experience,Full time course,Graduate,STEM,5,500-999,Pvt Ltd,1,20,0.0 +15515,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,NGO,1,114,0.0 +11301,city_67,0.855,Female,No relevent experience,Full time course,Masters,STEM,10,,NGO,3,98,0.0 +16516,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,2,94,1.0 +32632,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,never,83,0.0 +16778,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,1,500-999,Pvt Ltd,1,218,0.0 +7423,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,34,1.0 +2649,city_104,0.924,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,50,1.0 +8063,city_24,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,11,0.0 +3936,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,3,32,1.0 +17750,city_103,0.92,,No relevent experience,Full time course,,,5,10/49,,4,48,0.0 +29305,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,High School,,14,<10,Pvt Ltd,>4,14,0.0 +4190,city_75,0.9390000000000001,Male,Has relevent experience,Part time course,Masters,No Major,>20,,,>4,80,0.0 +8775,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,1,328,0.0 +29702,city_116,0.743,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,7,0.0 +23171,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,Public Sector,2,52,1.0 +32035,city_13,0.8270000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,2,38,0.0 +11765,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,14,0.0 +22347,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,19,5000-9999,Pvt Ltd,1,44,0.0 +19548,city_105,0.794,,Has relevent experience,no_enrollment,Graduate,Other,1,100-500,NGO,1,21,0.0 +21037,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,14,,,2,76,1.0 +3201,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,>20,50-99,NGO,>4,54,0.0 +17150,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,,never,56,0.0 +23683,city_90,0.698,Female,No relevent experience,no_enrollment,Masters,STEM,4,10000+,Pvt Ltd,1,51,0.0 +27331,city_44,0.725,Male,No relevent experience,no_enrollment,Masters,STEM,8,,,2,10,1.0 +21562,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,15,50-99,Funded Startup,2,40,0.0 +6960,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,5000-9999,Pvt Ltd,>4,33,0.0 +21720,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,>20,,Pvt Ltd,2,30,0.0 +24059,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,1,39,0.0 +19226,city_160,0.92,Male,No relevent experience,Full time course,High School,,2,50-99,,never,25,1.0 +4083,city_103,0.92,Male,Has relevent experience,no_enrollment,Primary School,,9,<10,Pvt Ltd,>4,46,0.0 +32154,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,100-500,Pvt Ltd,>4,14,0.0 +14600,city_71,0.884,Other,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,>4,141,0.0 +2636,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,3,,,1,70,1.0 +10987,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,6,500-999,Pvt Ltd,2,62,0.0 +9286,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,never,43,0.0 +31724,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Other,>20,50-99,Pvt Ltd,>4,135,0.0 +27742,city_159,0.843,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,30,1.0 +29059,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,,1,104,1.0 +25451,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,3,134,0.0 +32644,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Pvt Ltd,>4,85,0.0 +16755,city_36,0.893,,No relevent experience,Full time course,Graduate,STEM,7,,,never,39,0.0 +23051,city_73,0.754,Male,Has relevent experience,Full time course,High School,,4,10000+,Pvt Ltd,1,158,0.0 +26905,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,102,0.0 +3290,city_79,0.698,Female,No relevent experience,,High School,,<1,,,>4,67,0.0 +10409,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,>4,84,0.0 +24679,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,<10,Public Sector,1,43,1.0 +7290,city_28,0.9390000000000001,,No relevent experience,Full time course,Graduate,STEM,2,,,1,94,0.0 +622,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,59,0.0 +5468,city_16,0.91,Female,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,47,0.0 +19809,city_100,0.887,Male,Has relevent experience,Full time course,Graduate,STEM,>20,50-99,Pvt Ltd,1,23,0.0 +15492,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Early Stage Startup,1,12,0.0 +19828,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,96,1.0 +15389,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,7,50-99,Pvt Ltd,1,74,0.0 +16133,city_16,0.91,,No relevent experience,Full time course,Graduate,STEM,9,,,1,22,0.0 +26522,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,Other,3,,,2,151,1.0 +25240,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,NGO,1,59,0.0 +28899,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,>4,40,0.0 +8,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,13,100-500,Funded Startup,2,12,0.0 +15273,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,,,,,34,0.0 +1005,city_73,0.754,Female,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Funded Startup,2,47,0.0 +19199,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,6,1.0 +18623,city_128,0.527,Male,No relevent experience,Part time course,Graduate,Business Degree,4,,,1,35,0.0 +11436,city_160,0.92,Male,No relevent experience,Full time course,,,11,,,1,46,0.0 +12679,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,10000+,Pvt Ltd,>4,57,0.0 +8046,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,>4,24,1.0 +240,city_10,0.895,Male,No relevent experience,no_enrollment,High School,,7,,,>4,86,0.0 +31302,city_173,0.878,Male,No relevent experience,Full time course,High School,,12,,,4,10,0.0 +5860,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Funded Startup,3,30,0.0 +32707,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,,1,28,0.0 +9293,city_165,0.903,,Has relevent experience,Full time course,Masters,STEM,15,10000+,Pvt Ltd,1,224,0.0 +5122,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,7,,,2,46,1.0 +24520,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,,1,192,0.0 +21184,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,1,9,0.0 +5310,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,34,1.0 +7241,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,15,100-500,Pvt Ltd,2,18,0.0 +8664,city_45,0.89,Male,Has relevent experience,no_enrollment,High School,,>20,500-999,Pvt Ltd,>4,43,0.0 +24686,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,13,,,never,256,0.0 +28612,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,,1,59,0.0 +31754,city_16,0.91,Other,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,1,33,0.0 +22415,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,<1,10/49,Pvt Ltd,never,66,1.0 +10797,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,3,82,0.0 +10926,city_136,0.897,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,246,0.0 +3934,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,10,100-500,Pvt Ltd,3,50,0.0 +13331,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,3,85,0.0 +25666,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,,1,2,0.0 +17280,city_24,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,1,18,1.0 +32569,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,2,17,0.0 +26081,city_45,0.89,Male,No relevent experience,Full time course,Graduate,STEM,7,,,1,152,1.0 +16958,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,2,22,0.0 +31667,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,1,,,1,24,1.0 +27671,city_97,0.925,Male,Has relevent experience,no_enrollment,High School,,9,100-500,Pvt Ltd,1,68,0.0 +890,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,57,1.0 +25500,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,NGO,3,266,0.0 +29697,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Business Degree,>20,1000-4999,Pvt Ltd,1,48,0.0 +6397,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,>4,43,0.0 +4081,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,2,5,1.0 +17682,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,47,0.0 +29774,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,65,0.0 +10018,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,12,10000+,Pvt Ltd,4,44,0.0 +28242,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,31,0.0 +22447,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Other,19,,,1,15,0.0 +26880,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,3,105,0.0 +20839,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,50,0.0 +20626,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,Arts,7,50-99,Pvt Ltd,2,19,0.0 +2764,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,>4,6,0.0 +26362,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,6,,,never,14,1.0 +17628,city_116,0.743,,Has relevent experience,no_enrollment,High School,,1,1000-4999,Pvt Ltd,1,132,0.0 +21040,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,1,69,0.0 +5689,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,8,,,2,41,1.0 +12313,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,19,,,1,88,0.0 +20729,city_16,0.91,,No relevent experience,no_enrollment,High School,,7,1000-4999,Public Sector,>4,32,0.0 +23143,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,9,10/49,Pvt Ltd,1,91,0.0 +31770,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,58,1.0 +22651,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,13,,,2,166,0.0 +3779,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,3,52,0.0 +21926,city_116,0.743,Male,Has relevent experience,Part time course,Graduate,STEM,2,100-500,,1,16,0.0 +1544,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,2,83,0.0 +30323,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,18,,,1,88,0.0 +23285,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,16,,,1,282,0.0 +5905,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,<1,50-99,Pvt Ltd,1,94,1.0 +5752,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,8,0.0 +32724,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,21,0.0 +4831,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,never,102,0.0 +25424,city_91,0.691,Male,No relevent experience,Full time course,High School,,2,,,never,55,0.0 +23415,city_10,0.895,Male,Has relevent experience,Part time course,Masters,STEM,9,<10,Funded Startup,2,26,0.0 +505,city_150,0.698,Male,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,16,0.0 +8841,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Public Sector,1,314,0.0 +24354,city_21,0.624,,Has relevent experience,no_enrollment,,,19,,,never,58,1.0 +23502,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,42,0.0 +32138,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,>4,36,1.0 +10085,city_40,0.7759999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,10,1000-4999,Pvt Ltd,1,104,0.0 +9307,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,11,1000-4999,Pvt Ltd,2,158,0.0 +13973,city_55,0.7390000000000001,,No relevent experience,Full time course,Graduate,STEM,<1,,,,78,0.0 +25284,city_16,0.91,,No relevent experience,no_enrollment,Graduate,Arts,2,,,2,21,1.0 +28520,city_71,0.884,Other,Has relevent experience,Part time course,Masters,STEM,>20,10/49,Funded Startup,2,5,0.0 +12582,city_27,0.848,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Early Stage Startup,1,31,0.0 +30863,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,43,1.0 +12393,city_152,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Funded Startup,>4,4,0.0 +16127,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,1,114,0.0 +15703,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,Business Degree,12,,,>4,35,0.0 +668,city_11,0.55,Male,Has relevent experience,Part time course,Graduate,STEM,2,10/49,Early Stage Startup,1,41,0.0 +20613,city_37,0.794,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,36,0.0 +28455,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,10,10/49,Pvt Ltd,1,52,0.0 +214,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,never,170,0.0 +14087,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,1,204,0.0 +14134,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,157,0.0 +10784,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,2,7,0.0 +26641,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Pvt Ltd,4,192,1.0 +24274,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,5,,,1,39,0.0 +28463,city_28,0.9390000000000001,Male,No relevent experience,Full time course,Graduate,STEM,9,,,2,39,0.0 +24902,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,1,4,1.0 +22699,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,9,10000+,Pvt Ltd,never,74,0.0 +28369,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,500-999,Pvt Ltd,1,51,0.0 +24038,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,Other,6,,,1,58,1.0 +8577,city_173,0.878,,Has relevent experience,Part time course,Masters,STEM,17,1000-4999,Pvt Ltd,1,102,0.0 +13195,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,5,100-500,Public Sector,1,81,0.0 +13387,city_136,0.897,Male,Has relevent experience,no_enrollment,,,7,100-500,Pvt Ltd,>4,39,1.0 +32781,city_101,0.5579999999999999,Male,No relevent experience,Full time course,High School,,2,,,never,100,0.0 +26476,city_173,0.878,Male,Has relevent experience,no_enrollment,High School,,11,5000-9999,Pvt Ltd,3,178,0.0 +10857,city_11,0.55,,No relevent experience,Full time course,Graduate,STEM,1,,,1,101,1.0 +24407,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,7,,,1,65,0.0 +28935,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,44,0.0 +19048,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,High School,,3,10000+,Pvt Ltd,3,59,0.0 +235,city_16,0.91,,No relevent experience,Full time course,Graduate,STEM,6,,Pvt Ltd,1,35,0.0 +19363,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,>4,46,0.0 +8987,city_138,0.836,Male,Has relevent experience,Full time course,High School,,3,50-99,Pvt Ltd,1,10,0.0 +7717,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,>4,46,1.0 +14941,city_78,0.579,,No relevent experience,no_enrollment,,,3,,,1,21,1.0 +19465,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,16,10/49,Pvt Ltd,3,91,1.0 +6729,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,8,,,1,111,1.0 +22861,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Funded Startup,1,104,0.0 +3572,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,never,10,0.0 +1486,city_103,0.92,Male,No relevent experience,Full time course,High School,,6,,Pvt Ltd,never,48,0.0 +6594,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,Other,14,<10,Pvt Ltd,1,64,0.0 +32118,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,1,24,0.0 +28299,city_160,0.92,Male,No relevent experience,Full time course,High School,,4,1000-4999,Pvt Ltd,1,23,0.0 +21573,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,3,<10,Pvt Ltd,2,10,0.0 +12945,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,3,1000-4999,Pvt Ltd,1,26,0.0 +1099,city_138,0.836,Male,Has relevent experience,Part time course,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,29,0.0 +20428,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Funded Startup,1,11,1.0 +24032,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,>4,50,1.0 +31439,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,49,0.0 +6446,city_89,0.925,Male,No relevent experience,Full time course,Graduate,STEM,3,100-500,NGO,2,13,0.0 +9704,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,83,0.0 +32677,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,5000-9999,NGO,>4,148,0.0 +13428,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,<10,,2,44,0.0 +5434,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,2,,Pvt Ltd,never,67,0.0 +12324,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,5000-9999,Pvt Ltd,1,110,0.0 +31532,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,>4,41,0.0 +28212,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,1,90,0.0 +15362,city_160,0.92,Male,No relevent experience,Full time course,High School,,3,,,1,56,0.0 +21111,city_99,0.915,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,37,0.0 +14458,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,11,10/49,Public Sector,1,11,0.0 +9386,city_72,0.795,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Public Sector,>4,99,0.0 +31138,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,Other,5,<10,Pvt Ltd,1,28,0.0 +31143,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,500-999,Other,>4,28,0.0 +11203,city_16,0.91,Male,No relevent experience,Full time course,High School,,1,,,1,298,0.0 +32412,city_144,0.84,,No relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,1,33,1.0 +17745,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,2,64,0.0 +11080,city_138,0.836,Female,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Pvt Ltd,1,122,0.0 +10472,city_89,0.925,,No relevent experience,Full time course,High School,,9,,Pvt Ltd,1,24,0.0 +11657,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,4,1.0 +3298,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,>4,184,0.0 +21991,city_54,0.856,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,never,100,0.0 +24896,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,22,0.0 +33266,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,58,0.0 +10368,city_160,0.92,Male,No relevent experience,Full time course,High School,,11,,,4,8,0.0 +7732,city_23,0.899,Male,No relevent experience,Full time course,High School,,6,,,1,103,0.0 +5721,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Graduate,No Major,16,10000+,Public Sector,1,35,0.0 +31939,city_45,0.89,Male,Has relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,1,86,0.0 +27262,city_100,0.887,,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,17,0.0 +1722,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,5000-9999,Public Sector,1,44,0.0 +13063,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,1,23,0.0 +25031,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,STEM,18,50-99,Pvt Ltd,,21,0.0 +5499,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,8,50-99,Funded Startup,1,316,0.0 +13385,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Pvt Ltd,2,94,0.0 +19002,city_46,0.762,,Has relevent experience,Full time course,High School,,9,,,1,18,0.0 +19784,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Pvt Ltd,1,90,0.0 +23485,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,STEM,2,100-500,NGO,1,29,0.0 +13773,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Pvt Ltd,>4,17,0.0 +27112,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,24,1.0 +26396,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,Business Degree,10,,,never,290,1.0 +14476,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Pvt Ltd,>4,39,1.0 +23797,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,5,10/49,Early Stage Startup,1,21,0.0 +29387,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,never,21,0.0 +31942,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10/49,Funded Startup,2,45,0.0 +21990,city_126,0.479,,No relevent experience,Full time course,High School,,1,,,1,14,1.0 +8469,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,<1,,,never,63,1.0 +26115,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,65,1.0 +20850,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,>4,23,0.0 +24444,city_116,0.743,,Has relevent experience,Full time course,Masters,STEM,<1,50-99,,1,19,0.0 +19770,city_11,0.55,Male,No relevent experience,Full time course,Graduate,STEM,5,10/49,,1,102,1.0 +31057,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,6,10000+,Pvt Ltd,1,21,1.0 +11215,city_46,0.762,Male,Has relevent experience,Full time course,High School,,10,10000+,Other,1,43,0.0 +32159,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Funded Startup,1,12,0.0 +20354,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,8,,,1,39,1.0 +31999,city_91,0.691,Male,No relevent experience,Part time course,Graduate,STEM,1,,Pvt Ltd,never,25,0.0 +25437,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Pvt Ltd,1,46,0.0 +6163,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,NGO,1,37,0.0 +28804,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Public Sector,>4,84,0.0 +12623,city_83,0.9229999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,1,28,0.0 +30870,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,>4,36,0.0 +10375,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,>20,5000-9999,Pvt Ltd,2,55,1.0 +7007,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,1,7,0.0 +7404,city_104,0.924,Male,No relevent experience,Full time course,Graduate,STEM,10,1000-4999,Public Sector,1,11,0.0 +11851,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,,,2,26,0.0 +24370,city_30,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,9,10/49,Funded Startup,1,44,0.0 +11202,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,13,,,1,7,0.0 +25910,city_105,0.794,Male,Has relevent experience,Part time course,Graduate,STEM,5,<10,Pvt Ltd,1,41,0.0 +6546,city_150,0.698,,No relevent experience,no_enrollment,Masters,STEM,13,50-99,Public Sector,>4,18,0.0 +12508,city_100,0.887,Male,Has relevent experience,Part time course,Graduate,STEM,8,,,1,146,1.0 +28634,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,14,1.0 +2192,city_114,0.9259999999999999,,Has relevent experience,Full time course,Graduate,STEM,<1,50-99,Pvt Ltd,never,116,0.0 +7135,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,50-99,Pvt Ltd,>4,92,0.0 +21042,city_103,0.92,,Has relevent experience,Full time course,Graduate,STEM,,50-99,Funded Startup,>4,24,0.0 +15592,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,1,22,0.0 +26185,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Arts,2,50-99,Pvt Ltd,2,48,1.0 +9883,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,44,0.0 +20919,city_24,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,9,<10,Pvt Ltd,3,87,0.0 +4030,city_16,0.91,Male,Has relevent experience,Full time course,Masters,STEM,7,1000-4999,NGO,3,114,0.0 +29932,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,17,10000+,NGO,3,304,0.0 +12169,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,150,0.0 +12566,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10/49,Early Stage Startup,>4,36,0.0 +29167,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Other,>20,10000+,Pvt Ltd,2,96,0.0 +18838,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,16,500-999,Pvt Ltd,4,13,0.0 +10382,city_159,0.843,Male,Has relevent experience,Part time course,Graduate,STEM,18,10000+,Pvt Ltd,1,50,0.0 +9691,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,>4,94,0.0 +13315,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,9,10000+,Pvt Ltd,1,102,1.0 +32003,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,16,100-500,Funded Startup,1,101,0.0 +13766,city_144,0.84,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Pvt Ltd,1,9,0.0 +30560,city_74,0.579,,No relevent experience,Full time course,Graduate,Business Degree,3,,,never,11,0.0 +9924,city_16,0.91,Other,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,1,21,0.0 +17893,city_65,0.802,,No relevent experience,no_enrollment,High School,,2,,,never,13,0.0 +11647,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,37,0.0 +25733,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,15,10/49,Funded Startup,4,152,0.0 +29336,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,27,0.0 +18078,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,16,1.0 +2145,city_16,0.91,Male,No relevent experience,Full time course,High School,,6,,,never,96,0.0 +2984,city_24,0.698,,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,Pvt Ltd,2,60,0.0 +32030,city_12,0.64,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,47,0.0 +10871,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,3,100,0.0 +3613,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,14,<10,Funded Startup,1,42,0.0 +26253,city_16,0.91,Male,No relevent experience,Full time course,Masters,Humanities,>20,,,3,94,0.0 +2440,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,17,10000+,Pvt Ltd,1,32,0.0 +1772,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,4,17,1.0 +4711,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10/49,Funded Startup,1,192,0.0 +15513,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Pvt Ltd,2,96,0.0 +30827,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,2,84,1.0 +21090,city_103,0.92,,Has relevent experience,no_enrollment,Masters,Humanities,4,500-999,Pvt Ltd,2,23,0.0 +30390,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,1,19,0.0 +2946,city_21,0.624,,No relevent experience,Full time course,Graduate,,2,,Pvt Ltd,1,50,1.0 +23444,city_100,0.887,,No relevent experience,Full time course,Masters,STEM,8,,Public Sector,3,38,1.0 +13718,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,2,7,0.0 +15603,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,,2,140,0.0 +14570,city_100,0.887,Male,No relevent experience,Part time course,Graduate,STEM,2,,,never,36,0.0 +23094,city_53,0.74,Male,Has relevent experience,Full time course,Graduate,STEM,11,10000+,Pvt Ltd,>4,32,0.0 +315,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,16,10000+,NGO,1,276,0.0 +21512,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Pvt Ltd,>4,67,0.0 +24680,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,1000-4999,NGO,3,6,0.0 +32798,city_79,0.698,,Has relevent experience,Full time course,Masters,STEM,2,50-99,Pvt Ltd,,95,0.0 +2249,city_83,0.9229999999999999,Male,No relevent experience,Full time course,Graduate,STEM,2,100-500,Pvt Ltd,1,25,0.0 +17343,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,<1,,,1,28,1.0 +4408,city_90,0.698,Male,Has relevent experience,Part time course,Masters,STEM,7,,,1,65,1.0 +32076,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,40,1.0 +28137,city_21,0.624,Male,Has relevent experience,Part time course,Masters,STEM,6,,,4,30,0.0 +22387,city_70,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,,3,184,1.0 +2706,city_123,0.738,,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Early Stage Startup,2,166,0.0 +11373,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Humanities,6,,,1,46,0.0 +18656,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,5000-9999,Pvt Ltd,1,121,0.0 +5846,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,92,0.0 +24716,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,2,136,1.0 +30142,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,9,1000-4999,Pvt Ltd,3,77,0.0 +18390,city_54,0.856,,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,32,1.0 +2252,city_77,0.83,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,162,0.0 +29859,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,<1,100-500,,never,13,1.0 +13495,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,45,0.0 +29967,city_97,0.925,Female,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,,2,32,0.0 +11335,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,13,,,never,32,0.0 +16533,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,50,0.0 +14760,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,27,1.0 +24056,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,1,43,1.0 +17326,city_21,0.624,Male,Has relevent experience,Full time course,High School,,4,,,never,75,0.0 +7814,city_155,0.556,,Has relevent experience,no_enrollment,Graduate,Other,6,50-99,Pvt Ltd,1,34,1.0 +32084,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,17,10/49,Funded Startup,1,51,0.0 +30207,city_78,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,100,1.0 +20905,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,29,1.0 +1061,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Pvt Ltd,>4,34,0.0 +14502,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,>4,30,0.0 +31746,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,<1,,,1,44,1.0 +2059,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,15,10/49,Funded Startup,>4,76,0.0 +15039,city_103,0.92,,Has relevent experience,Part time course,Masters,Arts,10,50-99,NGO,2,146,0.0 +24954,city_90,0.698,,Has relevent experience,no_enrollment,Masters,STEM,14,,,>4,88,1.0 +20423,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,4,40,0.0 +30989,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Public Sector,2,47,0.0 +20953,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,2,,,never,84,0.0 +26013,city_65,0.802,Male,Has relevent experience,Part time course,Graduate,STEM,9,1000-4999,Pvt Ltd,1,149,0.0 +21761,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,10000+,Public Sector,1,73,0.0 +6723,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,82,0.0 +506,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,100-500,Pvt Ltd,>4,154,0.0 +23504,city_105,0.794,Male,No relevent experience,no_enrollment,High School,,4,,,,288,0.0 +11508,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Funded Startup,2,35,0.0 +14726,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,15,<10,Pvt Ltd,>4,83,1.0 +17033,city_103,0.92,Female,No relevent experience,,,,5,,,never,31,0.0 +23652,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Public Sector,3,100,0.0 +33264,city_157,0.769,Male,Has relevent experience,no_enrollment,Masters,STEM,10,5000-9999,Pvt Ltd,2,28,0.0 +1860,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,500-999,Pvt Ltd,1,56,1.0 +6324,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,,1,96,0.0 +32246,city_94,0.698,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,>4,7,0.0 +28932,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,15,500-999,Pvt Ltd,1,13,0.0 +24913,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,9,10000+,Pvt Ltd,1,58,1.0 +28385,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Funded Startup,1,16,1.0 +15000,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,>4,50,1.0 +27553,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,<10,Pvt Ltd,>4,47,0.0 +14995,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,2,,,1,5,0.0 +23165,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,1,48,0.0 +21982,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,3,50-99,Pvt Ltd,2,19,0.0 +17766,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,27,0.0 +22019,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,3,0.0 +30032,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,25,0.0 +18251,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,3,10000+,Pvt Ltd,2,45,0.0 +30318,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Masters,STEM,>20,50-99,Pvt Ltd,4,102,1.0 +4521,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,11,,Pvt Ltd,never,22,1.0 +23724,city_144,0.84,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,94,1.0 +22596,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,2,79,0.0 +17586,city_160,0.92,Male,No relevent experience,Part time course,Graduate,STEM,2,,,1,10,1.0 +562,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,5000-9999,Pvt Ltd,1,300,0.0 +18585,city_36,0.893,,No relevent experience,Full time course,Graduate,STEM,4,,,1,46,1.0 +5292,city_74,0.579,,No relevent experience,Full time course,Graduate,Other,6,,,never,63,1.0 +18613,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,2,13,0.0 +1068,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,4,0.0 +6219,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,88,1.0 +22020,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,5000-9999,Pvt Ltd,2,10,1.0 +30545,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,9,<10,Funded Startup,1,32,0.0 +12537,city_44,0.725,Female,No relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,2,52,0.0 +21,city_73,0.754,Male,Has relevent experience,Full time course,Graduate,STEM,8,,,2,90,0.0 +24278,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,never,66,0.0 +9932,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10/49,,2,9,1.0 +17671,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,3,46,0.0 +4458,city_123,0.738,,No relevent experience,,Graduate,STEM,1,,Pvt Ltd,never,110,0.0 +26528,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,10,0.0 +15736,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,1,,,never,83,0.0 +9223,city_21,0.624,Female,Has relevent experience,Full time course,Graduate,STEM,2,<10,Early Stage Startup,2,89,1.0 +10402,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,>4,134,1.0 +30662,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,1,28,0.0 +24313,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,4,,Public Sector,1,66,1.0 +18938,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,7,100-500,Pvt Ltd,3,54,0.0 +15354,city_74,0.579,,Has relevent experience,no_enrollment,Graduate,Humanities,6,<10,Other,2,85,1.0 +25320,city_16,0.91,Male,No relevent experience,Part time course,Graduate,Business Degree,19,<10,Pvt Ltd,>4,9,0.0 +28796,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,>20,,,2,36,0.0 +28186,city_74,0.579,,No relevent experience,,Graduate,STEM,6,100-500,Pvt Ltd,1,200,1.0 +12784,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,1,103,0.0 +15415,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,1000-4999,Pvt Ltd,1,53,0.0 +2974,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Other,2,38,1.0 +33331,city_94,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,4,,,1,28,1.0 +17741,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,19,100-500,Pvt Ltd,>4,48,1.0 +16241,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,Other,6,500-999,Public Sector,1,112,0.0 +27284,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,500-999,Funded Startup,4,7,1.0 +27856,city_98,0.9490000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,168,0.0 +11910,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,7,,,never,25,0.0 +31121,city_11,0.55,Male,No relevent experience,no_enrollment,Masters,STEM,10,10/49,Pvt Ltd,1,26,0.0 +8970,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,62,0.0 +30249,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Public Sector,3,40,0.0 +24698,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Early Stage Startup,1,3,0.0 +11604,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,STEM,<1,50-99,,1,23,0.0 +9188,city_64,0.6659999999999999,Female,No relevent experience,no_enrollment,Graduate,STEM,6,10/49,Funded Startup,never,70,0.0 +11249,city_103,0.92,Female,No relevent experience,no_enrollment,Primary School,,3,,,never,17,0.0 +10896,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,18,1.0 +19045,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,34,0.0 +20901,city_65,0.802,Male,No relevent experience,,Phd,STEM,4,,,1,57,0.0 +7970,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,65,0.0 +5262,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Funded Startup,1,192,1.0 +8265,city_160,0.92,Male,No relevent experience,no_enrollment,High School,,3,,,never,34,0.0 +13989,city_74,0.579,Male,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,1,268,1.0 +23160,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,4,,,never,33,0.0 +17156,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,2,0.0 +27448,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,1,6,0.0 +2769,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,Pvt Ltd,never,7,0.0 +22935,city_136,0.897,,No relevent experience,,Graduate,,3,,,,92,0.0 +25835,city_159,0.843,Male,Has relevent experience,no_enrollment,High School,,>20,,,>4,44,0.0 +24175,city_141,0.763,,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,4,36,0.0 +23368,city_21,0.624,Male,No relevent experience,Full time course,High School,,7,,,1,38,1.0 +12497,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Early Stage Startup,>4,6,0.0 +5748,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,1,41,0.0 +2868,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,4,50,0.0 +13111,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,2,180,0.0 +30588,city_162,0.767,Female,No relevent experience,Full time course,High School,,2,,,1,24,0.0 +8478,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,>4,163,0.0 +25499,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,500-999,Funded Startup,1,54,0.0 +17559,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Early Stage Startup,1,31,0.0 +1991,city_24,0.698,,Has relevent experience,Part time course,High School,,4,100-500,Pvt Ltd,2,44,0.0 +22361,city_149,0.6890000000000001,,No relevent experience,Full time course,,,<1,1000-4999,Public Sector,1,86,1.0 +24873,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,51,1.0 +10735,city_19,0.682,Male,No relevent experience,Full time course,High School,,6,,,never,106,0.0 +28226,city_21,0.624,Male,No relevent experience,Full time course,High School,,7,5000-9999,Pvt Ltd,1,167,1.0 +24333,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,>4,85,1.0 +31737,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,84,0.0 +27391,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,256,0.0 +18085,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,,,1,20,1.0 +6974,city_136,0.897,,No relevent experience,Full time course,Masters,STEM,8,,,1,51,0.0 +26239,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,202,1.0 +5352,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,No Major,2,10/49,Pvt Ltd,1,50,0.0 +15274,city_53,0.74,Male,No relevent experience,Full time course,High School,,3,,,never,160,0.0 +30711,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Funded Startup,1,22,0.0 +7981,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,2,69,0.0 +30659,city_46,0.762,Male,No relevent experience,Full time course,Graduate,STEM,3,,,>4,12,1.0 +12063,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,7,<10,Early Stage Startup,2,178,0.0 +27219,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,62,1.0 +27149,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Funded Startup,1,6,0.0 +18761,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Funded Startup,2,16,0.0 +18230,city_73,0.754,Male,No relevent experience,no_enrollment,Phd,STEM,15,,,1,41,0.0 +25974,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,1,28,0.0 +31509,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,8,,,1,111,1.0 +5268,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,10,500-999,Pvt Ltd,2,43,0.0 +22332,city_73,0.754,Male,No relevent experience,Full time course,High School,,2,,,never,49,0.0 +15412,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,7,10000+,Public Sector,2,36,0.0 +26328,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,2,0.0 +11798,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,1,,,never,19,0.0 +2947,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,1,10,0.0 +27565,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Funded Startup,1,27,0.0 +18587,city_90,0.698,,Has relevent experience,,Masters,STEM,10,1000-4999,NGO,2,30,1.0 +15067,city_136,0.897,,Has relevent experience,Full time course,Graduate,STEM,6,<10,Early Stage Startup,2,12,0.0 +14919,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Pvt Ltd,1,41,1.0 +534,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Funded Startup,1,124,0.0 +30792,city_46,0.762,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,4,20,0.0 +9171,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,276,0.0 +18562,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,500-999,Pvt Ltd,1,192,1.0 +29319,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,2,29,1.0 +25683,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Early Stage Startup,1,38,1.0 +4121,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,97,0.0 +11700,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Public Sector,>4,131,0.0 +4520,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,47,0.0 +17239,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,3,127,0.0 +785,city_23,0.899,Male,Has relevent experience,no_enrollment,High School,,15,100-500,Pvt Ltd,>4,94,0.0 +29646,city_11,0.55,Male,No relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,1,66,1.0 +29034,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,NGO,2,163,0.0 +17475,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,44,0.0 +18255,city_89,0.925,Male,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,3,182,0.0 +173,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,45,0.0 +29599,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,18,0.0 +21304,city_14,0.698,Male,No relevent experience,no_enrollment,Masters,STEM,8,1000-4999,Pvt Ltd,2,166,1.0 +13178,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Funded Startup,3,29,1.0 +6403,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,11,,,1,15,0.0 +6577,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Public Sector,2,30,0.0 +25238,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,108,0.0 +6589,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,5000-9999,Pvt Ltd,1,40,0.0 +23868,city_157,0.769,Male,Has relevent experience,Part time course,Graduate,STEM,3,<10,Funded Startup,1,48,0.0 +30733,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,55,0.0 +7838,city_77,0.83,Male,Has relevent experience,no_enrollment,Primary School,,12,100-500,Pvt Ltd,1,43,0.0 +4651,city_90,0.698,,No relevent experience,Full time course,Masters,STEM,7,,,2,158,0.0 +4212,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,>4,94,0.0 +13469,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,12,1000-4999,Pvt Ltd,1,167,0.0 +33187,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,5,500-999,Pvt Ltd,>4,68,0.0 +8601,city_160,0.92,Other,No relevent experience,Full time course,Graduate,STEM,4,,,1,114,1.0 +27511,city_103,0.92,,Has relevent experience,no_enrollment,Phd,Humanities,>20,,,>4,108,0.0 +9949,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,35,0.0 +28020,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,36,0.0 +22589,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,Other,13,<10,Early Stage Startup,1,6,0.0 +16736,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,,10000+,,,103,0.0 +12145,city_57,0.866,,No relevent experience,no_enrollment,High School,,<1,,,never,182,0.0 +9538,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,>4,320,0.0 +810,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,4,128,0.0 +13368,city_19,0.682,,Has relevent experience,,Graduate,STEM,>20,10000+,Pvt Ltd,1,86,0.0 +16275,city_76,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Pvt Ltd,3,39,1.0 +10376,city_126,0.479,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,500-999,Funded Startup,1,4,0.0 +30596,city_55,0.7390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,44,0.0 +5700,city_10,0.895,Male,Has relevent experience,Part time course,Graduate,STEM,12,10/49,Pvt Ltd,1,12,0.0 +5732,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,9,100-500,Pvt Ltd,1,18,0.0 +7587,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,NGO,1,17,0.0 +28414,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,>4,262,0.0 +22304,city_99,0.915,Male,No relevent experience,Full time course,High School,,2,100-500,,1,34,0.0 +18869,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,66,0.0 +16392,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,40,0.0 +3044,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,10,1.0 +21030,city_103,0.92,Male,No relevent experience,Full time course,Masters,Humanities,4,,,4,44,1.0 +26555,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,56,0.0 +10537,city_65,0.802,Female,Has relevent experience,no_enrollment,Masters,STEM,2,1000-4999,Pvt Ltd,1,108,0.0 +27594,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,,28,0.0 +11222,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Pvt Ltd,never,42,0.0 +11740,city_103,0.92,Male,Has relevent experience,no_enrollment,,,>20,500-999,Pvt Ltd,>4,6,0.0 +17053,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,206,0.0 +7670,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,9,,,1,28,1.0 +18739,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,never,106,0.0 +26967,city_103,0.92,,Has relevent experience,Full time course,Graduate,STEM,3,10000+,Pvt Ltd,1,51,0.0 +5719,city_28,0.9390000000000001,,No relevent experience,no_enrollment,High School,,2,5000-9999,,1,10,0.0 +25959,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,STEM,16,<10,Pvt Ltd,1,129,0.0 +19691,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,13,5000-9999,Public Sector,>4,52,1.0 +2540,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,2,23,0.0 +6232,city_103,0.92,Male,Has relevent experience,no_enrollment,,,2,50-99,,1,84,0.0 +17148,city_27,0.848,Male,Has relevent experience,Full time course,Graduate,STEM,6,500-999,Public Sector,1,11,0.0 +25428,city_104,0.924,,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,>4,4,0.0 +30127,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Early Stage Startup,1,326,0.0 +21197,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,>4,70,0.0 +3142,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,>4,122,0.0 +7192,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,17,500-999,Pvt Ltd,3,12,1.0 +15244,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,1,131,0.0 +32398,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,4,1000-4999,Pvt Ltd,1,6,0.0 +31970,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,9,0.0 +29028,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,2,98,0.0 +27757,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,Pvt Ltd,1,20,0.0 +15112,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,47,1.0 +13653,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,16,5000-9999,Pvt Ltd,4,92,0.0 +23526,city_90,0.698,Male,No relevent experience,no_enrollment,,,6,,,2,136,0.0 +18812,city_21,0.624,Male,Has relevent experience,Part time course,Masters,STEM,14,50-99,,1,112,1.0 +21314,city_74,0.579,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,145,1.0 +25401,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,4,96,0.0 +7681,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,>4,70,0.0 +16956,city_20,0.7959999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,6,,,1,121,0.0 +31906,city_73,0.754,Male,Has relevent experience,Full time course,Graduate,Other,7,,,4,78,0.0 +4569,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,7,,,1,6,1.0 +16304,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,1,56,1.0 +1519,city_136,0.897,,No relevent experience,Part time course,Masters,STEM,6,50-99,Funded Startup,1,66,0.0 +2162,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,Arts,20,50-99,Pvt Ltd,2,4,0.0 +25842,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,9,5000-9999,Pvt Ltd,1,62,0.0 +21013,city_65,0.802,Male,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Pvt Ltd,2,50,0.0 +2178,city_61,0.9129999999999999,Other,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,2,12,0.0 +9346,city_39,0.898,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,244,0.0 +24580,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,156,0.0 +3957,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,21,0.0 +15209,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,20,,Pvt Ltd,>4,66,0.0 +33138,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,60,0.0 +10763,city_136,0.897,Female,No relevent experience,Full time course,Masters,Humanities,5,,Public Sector,2,94,0.0 +3340,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Funded Startup,1,72,0.0 +1607,city_99,0.915,,No relevent experience,Part time course,Graduate,STEM,5,,,1,143,0.0 +11,city_103,0.92,Male,Has relevent experience,Part time course,Primary School,,11,,,4,20,0.0 +7292,city_10,0.895,Male,Has relevent experience,Part time course,Graduate,Arts,2,10/49,Pvt Ltd,1,2,0.0 +12181,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,2,82,0.0 +27515,city_117,0.698,,No relevent experience,Full time course,Graduate,STEM,1,,,1,47,0.0 +5256,city_83,0.9229999999999999,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,500-999,Pvt Ltd,>4,13,0.0 +14956,city_160,0.92,,No relevent experience,no_enrollment,Primary School,,<1,,,never,12,0.0 +8945,city_158,0.7659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,2,282,1.0 +25268,city_90,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,4,100-500,Pvt Ltd,2,72,0.0 +15127,city_103,0.92,,No relevent experience,no_enrollment,Masters,Other,20,,,2,30,1.0 +3015,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,91,0.0 +14632,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,13,,Public Sector,>4,7,0.0 +28228,city_97,0.925,Male,No relevent experience,no_enrollment,,,1,,,never,89,0.0 +8206,city_45,0.89,,Has relevent experience,Part time course,High School,,10,50-99,Pvt Ltd,1,86,1.0 +25091,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,1,26,0.0 +30353,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Public Sector,1,21,0.0 +20312,city_175,0.7759999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,10,<10,Pvt Ltd,1,31,1.0 +32103,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Funded Startup,1,17,0.0 +27230,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Funded Startup,1,54,0.0 +26424,city_100,0.887,Male,No relevent experience,no_enrollment,Masters,STEM,12,10000+,Pvt Ltd,4,23,1.0 +17704,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,,,never,90,0.0 +23617,city_103,0.92,Male,No relevent experience,Full time course,High School,,11,,,never,37,1.0 +30603,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,5,,,1,41,0.0 +28623,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,5000-9999,Pvt Ltd,1,160,0.0 +15082,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Funded Startup,1,84,0.0 +15393,city_117,0.698,Male,No relevent experience,Full time course,High School,,7,,,1,12,1.0 +21716,city_103,0.92,Male,No relevent experience,Part time course,Masters,STEM,9,10000+,Pvt Ltd,never,182,0.0 +10747,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,18,0.0 +10430,city_103,0.92,,No relevent experience,no_enrollment,Phd,STEM,>20,,,1,3,0.0 +511,city_28,0.9390000000000001,Other,Has relevent experience,Part time course,Graduate,STEM,10,10/49,Pvt Ltd,4,85,0.0 +18526,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Funded Startup,never,21,0.0 +884,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,5,,Public Sector,1,101,0.0 +13252,city_106,0.698,Male,Has relevent experience,Part time course,High School,,11,10/49,Pvt Ltd,1,32,0.0 +29287,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,38,0.0 +23821,city_133,0.742,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,NGO,>4,44,0.0 +16173,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,17,0.0 +32187,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,8,1000-4999,Pvt Ltd,2,51,0.0 +20562,city_78,0.579,Male,No relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,never,68,1.0 +21458,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,1,100-500,Pvt Ltd,1,133,1.0 +2879,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,52,0.0 +24624,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,20,1000-4999,Pvt Ltd,1,212,0.0 +10318,city_131,0.68,Male,Has relevent experience,Part time course,Graduate,STEM,4,,,1,46,1.0 +27470,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,4,16,0.0 +27467,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,14,1.0 +1226,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,1,8,0.0 +15986,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,2,21,0.0 +6371,city_75,0.9390000000000001,Other,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Early Stage Startup,1,37,0.0 +3100,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,5,,,,47,0.0 +9567,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Funded Startup,1,94,0.0 +14332,city_19,0.682,,No relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,336,0.0 +31835,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,<10,Early Stage Startup,1,7,1.0 +26478,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,1000-4999,,1,168,0.0 +4399,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,8,,,4,56,1.0 +3776,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,>20,50-99,Public Sector,>4,46,0.0 +19914,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,4,,,never,17,0.0 +31062,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,4,50-99,Pvt Ltd,1,82,0.0 +18075,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,44,0.0 +21074,city_103,0.92,Male,Has relevent experience,,Graduate,STEM,9,10000+,Pvt Ltd,1,50,0.0 +23049,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,39,0.0 +5822,city_16,0.91,Male,No relevent experience,no_enrollment,Primary School,,>20,,,1,41,0.0 +13384,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,>4,16,0.0 +29788,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,91,0.0 +16569,city_28,0.9390000000000001,Male,No relevent experience,Full time course,Graduate,STEM,14,10000+,Pvt Ltd,1,42,0.0 +25058,city_116,0.743,Female,Has relevent experience,no_enrollment,Masters,STEM,11,500-999,Pvt Ltd,>4,80,0.0 +14414,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,2,95,0.0 +32604,city_138,0.836,Male,No relevent experience,no_enrollment,Graduate,STEM,10,,,1,42,0.0 +5337,city_101,0.5579999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,2,89,0.0 +7040,city_103,0.92,,Has relevent experience,no_enrollment,Masters,Business Degree,5,100-500,Pvt Ltd,>4,28,0.0 +29145,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Pvt Ltd,4,136,0.0 +31503,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,1,2,0.0 +19161,city_41,0.8270000000000001,,Has relevent experience,Full time course,High School,,5,<10,,never,10,0.0 +28323,city_19,0.682,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,45,1.0 +30006,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,10,,,3,23,0.0 +17278,city_67,0.855,,No relevent experience,Part time course,Graduate,STEM,6,50-99,Pvt Ltd,1,166,0.0 +14424,city_74,0.579,Male,No relevent experience,Full time course,Graduate,STEM,4,100-500,Pvt Ltd,1,34,1.0 +24219,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,8,0.0 +15402,city_102,0.804,,Has relevent experience,Full time course,Graduate,STEM,15,100-500,Pvt Ltd,>4,6,0.0 +12034,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,18,,,never,21,1.0 +19456,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,5,50-99,Pvt Ltd,2,48,1.0 +514,city_114,0.9259999999999999,Female,Has relevent experience,,Graduate,STEM,17,,,>4,131,0.0 +26321,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,10,,,2,45,1.0 +29708,city_45,0.89,Male,Has relevent experience,Part time course,High School,,8,10/49,Pvt Ltd,1,52,0.0 +11782,city_73,0.754,Male,Has relevent experience,Part time course,Masters,STEM,2,100-500,Pvt Ltd,2,39,1.0 +16279,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,71,0.0 +5577,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,<1,10/49,,1,52,0.0 +9200,city_24,0.698,Male,Has relevent experience,no_enrollment,High School,,7,,,1,27,0.0 +28717,city_136,0.897,,Has relevent experience,no_enrollment,Graduate,STEM,11,5000-9999,Public Sector,2,12,0.0 +17618,city_90,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,124,1.0 +31106,city_160,0.92,,No relevent experience,no_enrollment,Graduate,Arts,3,50-99,Pvt Ltd,never,130,0.0 +8792,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,11,,,>4,62,0.0 +17752,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,210,1.0 +4595,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,90,0.0 +29094,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,30,0.0 +6943,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,1,126,0.0 +5692,city_71,0.884,Male,Has relevent experience,no_enrollment,High School,,10,50-99,Pvt Ltd,2,6,0.0 +18033,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,1,,,1,91,1.0 +6121,city_57,0.866,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,NGO,>4,116,1.0 +20222,city_104,0.924,Male,Has relevent experience,no_enrollment,High School,,6,,,1,82,1.0 +7146,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,16,10/49,Pvt Ltd,,64,0.0 +7150,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,17,0.0 +9326,city_104,0.924,Male,No relevent experience,Full time course,Graduate,STEM,6,50-99,,1,51,0.0 +25736,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,3,62,0.0 +19769,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,15,100-500,Pvt Ltd,never,28,0.0 +22515,city_103,0.92,Male,No relevent experience,Full time course,High School,,4,,,never,44,0.0 +24126,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,4,66,0.0 +14528,city_100,0.887,Other,No relevent experience,no_enrollment,High School,,2,,,never,11,0.0 +31788,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,3,18,1.0 +19859,city_100,0.887,Male,No relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Public Sector,>4,3,1.0 +6009,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,4,35,0.0 +3809,city_159,0.843,Male,No relevent experience,Full time course,High School,,3,,,never,35,0.0 +32214,city_142,0.727,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,85,0.0 +12367,city_152,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,2,0.0 +26040,city_73,0.754,,No relevent experience,no_enrollment,High School,,6,,,1,148,1.0 +4349,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,3,,Pvt Ltd,never,99,0.0 +13670,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,2,4,0.0 +1117,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,28,1.0 +25332,city_71,0.884,Male,Has relevent experience,Part time course,Masters,STEM,2,50-99,,1,15,0.0 +15866,city_50,0.8959999999999999,,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,>4,96,0.0 +7352,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,2,16,0.0 +7143,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,4,100-500,Pvt Ltd,1,17,0.0 +23239,city_27,0.848,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,never,18,0.0 +30075,city_11,0.55,Male,Has relevent experience,Full time course,Graduate,STEM,5,,,1,74,1.0 +3650,city_70,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,11,50-99,,1,17,0.0 +23397,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,,1,17,0.0 +2218,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,2,105,0.0 +5321,city_67,0.855,Male,No relevent experience,Full time course,High School,,2,,Pvt Ltd,never,12,0.0 +16696,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Early Stage Startup,2,9,0.0 +21354,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Pvt Ltd,2,9,0.0 +17770,city_19,0.682,,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,1,41,0.0 +27356,city_103,0.92,,No relevent experience,no_enrollment,High School,,5,,,never,48,1.0 +23342,city_90,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,8,50-99,Pvt Ltd,1,56,0.0 +447,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,1,101,1.0 +6042,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,1000-4999,NGO,>4,83,0.0 +22862,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,5000-9999,Pvt Ltd,>4,130,1.0 +26242,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,,2,91,0.0 +32481,city_165,0.903,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,25,1.0 +28129,city_104,0.924,Female,Has relevent experience,no_enrollment,Masters,Other,18,1000-4999,Pvt Ltd,>4,150,0.0 +6059,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,60,0.0 +28205,city_103,0.92,Female,Has relevent experience,Part time course,Graduate,STEM,10,50-99,Pvt Ltd,2,80,0.0 +9306,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,Business Degree,,,Pvt Ltd,>4,96,1.0 +3285,city_102,0.804,Male,Has relevent experience,Full time course,High School,,10,5000-9999,,1,69,0.0 +7651,city_149,0.6890000000000001,,No relevent experience,Full time course,High School,,6,,,1,11,0.0 +16191,city_91,0.691,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,>4,40,1.0 +12614,city_23,0.899,Female,No relevent experience,Full time course,Graduate,STEM,5,,,never,70,1.0 +1686,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,42,1.0 +22551,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,>4,5,0.0 +26356,city_103,0.92,Female,No relevent experience,no_enrollment,Phd,STEM,13,100-500,Public Sector,2,79,0.0 +17897,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,4,36,0.0 +9371,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,2,26,0.0 +12411,city_75,0.9390000000000001,Male,No relevent experience,Full time course,Graduate,STEM,13,,,1,145,0.0 +13190,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,3,84,0.0 +23372,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,129,0.0 +6811,city_145,0.555,,No relevent experience,no_enrollment,Graduate,Business Degree,<1,,,never,25,1.0 +25405,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,35,0.0 +23266,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,121,1.0 +22562,city_67,0.855,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,<10,Pvt Ltd,>4,92,0.0 +2450,city_21,0.624,,Has relevent experience,Full time course,,,3,100-500,Pvt Ltd,3,107,1.0 +20652,city_90,0.698,Male,Has relevent experience,no_enrollment,Phd,STEM,10,,,1,74,0.0 +8976,city_46,0.762,,Has relevent experience,Full time course,Graduate,STEM,5,10000+,NGO,never,58,0.0 +23148,city_160,0.92,,No relevent experience,Full time course,High School,,3,,,2,53,1.0 +29014,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,33,0.0 +17229,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,1,50-99,Pvt Ltd,1,3,1.0 +29657,city_103,0.92,,No relevent experience,Part time course,Graduate,Business Degree,<1,50-99,Pvt Ltd,1,15,0.0 +31599,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,49,1.0 +636,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,10,0.0 +25477,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Public Sector,1,17,0.0 +31933,city_149,0.6890000000000001,,No relevent experience,Full time course,Graduate,STEM,7,50-99,Pvt Ltd,never,300,0.0 +2229,city_102,0.804,Male,Has relevent experience,no_enrollment,Phd,STEM,7,500-999,Pvt Ltd,>4,7,1.0 +10794,city_21,0.624,Female,No relevent experience,no_enrollment,Masters,Humanities,3,,,>4,57,1.0 +14387,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,12,,,never,92,0.0 +12260,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,,1,216,0.0 +32467,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,Arts,4,10/49,Pvt Ltd,4,45,0.0 +31390,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,>4,266,0.0 +32178,city_54,0.856,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Funded Startup,4,73,0.0 +16709,city_91,0.691,Other,No relevent experience,Full time course,High School,,3,,,1,151,1.0 +12457,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10/49,NGO,>4,102,1.0 +1014,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,Humanities,7,,,4,166,0.0 +16190,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,3,38,0.0 +12907,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,52,0.0 +24374,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,<1,100-500,Pvt Ltd,1,30,1.0 +13186,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,4,89,1.0 +4164,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,500-999,Pvt Ltd,>4,100,0.0 +30552,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,56,1.0 +2603,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,High School,,3,50-99,Pvt Ltd,1,28,0.0 +16846,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Humanities,17,50-99,Pvt Ltd,>4,31,0.0 +1662,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,8,,,1,34,1.0 +6228,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,188,0.0 +26307,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,111,0.0 +27055,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,7,,,3,27,0.0 +28580,city_46,0.762,Female,Has relevent experience,Part time course,Masters,STEM,6,,,3,41,0.0 +12655,city_114,0.9259999999999999,Male,No relevent experience,Part time course,High School,,3,50-99,Pvt Ltd,3,108,0.0 +21385,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,1,10,0.0 +6345,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,never,16,0.0 +21893,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,1,26,0.0 +16341,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,50-99,,1,158,0.0 +30105,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,1,48,0.0 +30008,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Business Degree,3,1000-4999,Pvt Ltd,2,2,0.0 +4617,city_93,0.865,Male,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Early Stage Startup,4,92,0.0 +17314,city_11,0.55,,No relevent experience,no_enrollment,High School,,<1,,,never,29,1.0 +29756,city_173,0.878,Male,Has relevent experience,Full time course,Graduate,Business Degree,10,,,2,99,1.0 +32879,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,Business Degree,1,5000-9999,Pvt Ltd,1,48,1.0 +24072,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Funded Startup,1,55,0.0 +23597,city_75,0.9390000000000001,Male,Has relevent experience,Full time course,Phd,STEM,>20,,,>4,50,0.0 +15847,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,70,0.0 +20664,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,1,48,0.0 +23559,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,2,76,1.0 +5735,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Funded Startup,2,170,0.0 +4313,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,1,,,1,52,1.0 +31729,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Funded Startup,1,33,0.0 +26776,city_145,0.555,,No relevent experience,Part time course,Graduate,STEM,<1,,,1,58,0.0 +23520,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,12,1.0 +31657,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,40,1.0 +9761,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,,1,51,0.0 +9721,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Arts,>20,1000-4999,NGO,>4,50,1.0 +30895,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,,1,160,0.0 +6819,city_21,0.624,,No relevent experience,no_enrollment,High School,,1,,,never,52,0.0 +29372,city_30,0.698,Male,Has relevent experience,no_enrollment,,,8,,,1,15,0.0 +27132,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,3,8,1.0 +11005,city_152,0.698,Male,Has relevent experience,,Graduate,STEM,10,,,never,40,0.0 +1707,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,4,1000-4999,Pvt Ltd,1,42,0.0 +25034,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,2,1000-4999,Pvt Ltd,1,9,0.0 +22541,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,9,1000-4999,Public Sector,1,34,0.0 +27052,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Funded Startup,>4,96,0.0 +24454,city_21,0.624,,No relevent experience,Full time course,High School,,3,,,never,32,0.0 +24014,city_42,0.563,Male,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Pvt Ltd,1,103,1.0 +9555,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,,4,55,0.0 +17816,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,2,55,0.0 +10916,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,NGO,1,15,0.0 +9458,city_105,0.794,,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,3,34,0.0 +11987,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Early Stage Startup,4,27,0.0 +19959,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,5000-9999,Pvt Ltd,3,14,0.0 +28284,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,11,5000-9999,Pvt Ltd,1,76,0.0 +11464,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,1,13,1.0 +13459,city_30,0.698,,Has relevent experience,Part time course,Graduate,STEM,4,100-500,NGO,1,98,0.0 +5926,city_165,0.903,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,>4,12,0.0 +7975,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Business Degree,4,500-999,Pvt Ltd,1,206,0.0 +7882,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,1,58,1.0 +494,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Funded Startup,2,24,0.0 +12146,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,1,28,0.0 +5787,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,45,0.0 +14704,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,42,0.0 +3540,city_71,0.884,Male,Has relevent experience,Part time course,Graduate,STEM,8,50-99,Pvt Ltd,2,69,0.0 +27651,city_16,0.91,,No relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,196,0.0 +9253,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,7,,,,128,0.0 +16218,city_165,0.903,Male,No relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,3,18,0.0 +16062,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,Pvt Ltd,4,46,0.0 +15245,city_103,0.92,,Has relevent experience,no_enrollment,Phd,STEM,20,10000+,Pvt Ltd,1,22,0.0 +13109,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,1,40,1.0 +16620,city_24,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,>4,32,1.0 +5687,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,20,0.0 +27725,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,4,33,1.0 +7566,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,3,0.0 +10303,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,>20,,,1,139,0.0 +15810,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,29,0.0 +30548,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,62,1.0 +21509,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,1,72,1.0 +5460,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,2,52,0.0 +19998,city_91,0.691,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,2,31,0.0 +28273,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,14,10000+,Pvt Ltd,>4,25,0.0 +30257,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,>4,107,1.0 +31241,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,14,,,1,158,0.0 +20378,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,7,,,1,152,1.0 +29402,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,7,500-999,NGO,2,10,0.0 +23474,city_45,0.89,Male,No relevent experience,,High School,,2,,,never,21,0.0 +22548,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,Other,16,100-500,Other,never,174,1.0 +98,city_16,0.91,,No relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,>4,40,0.0 +6105,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,3,,,1,43,0.0 +23869,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,100-500,Pvt Ltd,2,13,1.0 +17123,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,,,,,32,0.0 +28409,city_103,0.92,,Has relevent experience,,Graduate,STEM,3,<10,Early Stage Startup,1,87,0.0 +25618,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,3,5000-9999,Pvt Ltd,1,102,0.0 +25048,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,,,,67,1.0 +32459,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,6,,Pvt Ltd,never,16,0.0 +16534,city_23,0.899,,No relevent experience,Part time course,High School,,1,,,,46,0.0 +33223,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,1,500-999,Pvt Ltd,1,20,1.0 +19824,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Pvt Ltd,>4,21,0.0 +11893,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,4,52,0.0 +28778,city_136,0.897,Male,No relevent experience,Part time course,Masters,STEM,2,50-99,Pvt Ltd,1,6,0.0 +4051,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,20,0.0 +16523,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,1,51,1.0 +1165,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Public Sector,>4,37,0.0 +10090,city_100,0.887,Male,No relevent experience,Full time course,High School,,4,,,1,82,0.0 +14711,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,500-999,Pvt Ltd,never,58,0.0 +18366,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,6,1000-4999,,never,74,0.0 +8293,city_67,0.855,Female,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,1,149,0.0 +21164,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,10,,,never,52,0.0 +6430,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,Pvt Ltd,1,81,0.0 +32463,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,3,10,0.0 +30477,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,never,25,0.0 +2707,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,2,50,0.0 +9167,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,4,,,4,68,1.0 +25083,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,4,96,0.0 +503,city_67,0.855,Male,Has relevent experience,Part time course,High School,,14,10000+,Pvt Ltd,4,53,0.0 +27607,city_20,0.7959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,25,0.0 +25915,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,40,0.0 +30308,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,1,28,0.0 +29607,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,Arts,10,10/49,Pvt Ltd,1,43,0.0 +21938,city_16,0.91,,No relevent experience,no_enrollment,High School,,5,,,never,57,0.0 +15076,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,88,0.0 +25278,city_134,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,1,35,1.0 +3531,city_100,0.887,,Has relevent experience,Full time course,High School,,>20,,,>4,161,0.0 +13796,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,86,0.0 +28272,city_150,0.698,Female,Has relevent experience,Full time course,,,>20,<10,Early Stage Startup,never,77,0.0 +26345,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,5000-9999,Pvt Ltd,>4,163,0.0 +5679,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,Pvt Ltd,3,248,1.0 +4435,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,31,0.0 +19920,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Pvt Ltd,1,38,0.0 +28644,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,Business Degree,18,,,2,83,0.0 +8481,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,6,,Pvt Ltd,2,28,0.0 +29166,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Funded Startup,1,69,0.0 +8040,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,57,0.0 +19085,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,9,0.0 +14948,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,19,0.0 +20158,city_149,0.6890000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,7,,,1,63,0.0 +10068,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Funded Startup,1,77,0.0 +15093,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,18,0.0 +16381,city_136,0.897,Male,Has relevent experience,Part time course,Graduate,STEM,3,10/49,Pvt Ltd,1,46,0.0 +24435,city_114,0.9259999999999999,,Has relevent experience,Part time course,Graduate,STEM,10,100-500,Public Sector,1,39,0.0 +3824,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,Public Sector,>4,26,0.0 +15858,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,4,82,0.0 +7249,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Funded Startup,3,29,0.0 +6596,city_102,0.804,,No relevent experience,no_enrollment,Graduate,STEM,15,,,>4,43,1.0 +27630,city_41,0.8270000000000001,Male,No relevent experience,Part time course,Graduate,STEM,9,,,3,8,1.0 +31058,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,15,1000-4999,Pvt Ltd,2,34,0.0 +12408,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,81,1.0 +32560,city_136,0.897,Male,Has relevent experience,no_enrollment,,,7,50-99,Funded Startup,3,180,0.0 +12987,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,8,1.0 +25022,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,17,<10,Pvt Ltd,1,50,0.0 +20547,city_134,0.698,,No relevent experience,Part time course,High School,,2,,,2,47,1.0 +27795,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,6,,,never,336,0.0 +29088,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,51,0.0 +14212,city_16,0.91,,No relevent experience,no_enrollment,Masters,Business Degree,2,,,2,312,0.0 +5538,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Humanities,10,,,2,67,1.0 +20713,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Pvt Ltd,1,88,1.0 +23877,city_20,0.7959999999999999,Male,No relevent experience,Full time course,High School,,6,,,never,41,0.0 +9693,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,17,0.0 +18146,city_100,0.887,Male,Has relevent experience,Part time course,Graduate,STEM,6,100-500,Pvt Ltd,3,79,0.0 +22883,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,never,89,0.0 +1461,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,18,,,1,43,0.0 +24448,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,19,1000-4999,Pvt Ltd,>4,56,0.0 +31735,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Early Stage Startup,1,222,0.0 +8080,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,3,10000+,Pvt Ltd,3,28,1.0 +26930,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,55,0.0 +11372,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,9,100-500,Pvt Ltd,1,17,0.0 +13937,city_100,0.887,,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,2,69,0.0 +24522,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Funded Startup,1,10,0.0 +6670,city_116,0.743,Male,Has relevent experience,Full time course,Masters,STEM,>20,1000-4999,Pvt Ltd,1,70,0.0 +25159,city_105,0.794,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,,4,0.0 +3263,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,22,1.0 +10035,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,2,155,0.0 +7390,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,18,0.0 +26544,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,14,<10,Early Stage Startup,1,28,1.0 +32322,city_102,0.804,,No relevent experience,Full time course,Graduate,STEM,7,,,never,5,1.0 +21083,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,42,0.0 +13254,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,4,0.0 +29267,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,90,0.0 +8129,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,18,50-99,Pvt Ltd,2,18,0.0 +18631,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,11,100-500,Pvt Ltd,4,7,1.0 +23833,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,2,45,1.0 +30841,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,63,0.0 +6656,city_21,0.624,,Has relevent experience,no_enrollment,Masters,Arts,6,10/49,Pvt Ltd,1,21,1.0 +14602,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,<1,100-500,NGO,1,156,1.0 +11891,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10/49,Pvt Ltd,2,77,0.0 +30379,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Funded Startup,2,122,0.0 +3136,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,>4,84,0.0 +13747,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,40,0.0 +29271,city_83,0.9229999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,5,1000-4999,Pvt Ltd,>4,70,1.0 +21325,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,19,500-999,Pvt Ltd,4,88,1.0 +8357,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,8,500-999,Pvt Ltd,2,153,0.0 +30948,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,5,50-99,Pvt Ltd,>4,160,0.0 +22531,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,,2,16,0.0 +5656,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,Public Sector,>4,224,0.0 +21085,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Pvt Ltd,>4,45,0.0 +20649,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Pvt Ltd,1,69,0.0 +19534,city_71,0.884,Male,No relevent experience,no_enrollment,Masters,STEM,6,10/49,Pvt Ltd,3,6,0.0 +25393,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,11,100-500,Pvt Ltd,>4,119,0.0 +2878,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Pvt Ltd,never,53,1.0 +24347,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,,Pvt Ltd,1,9,1.0 +32192,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,>4,54,0.0 +13058,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,Public Sector,1,116,1.0 +10613,city_13,0.8270000000000001,,Has relevent experience,no_enrollment,Masters,STEM,4,<10,Funded Startup,2,26,0.0 +20265,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,Masters,Humanities,<1,10/49,NGO,1,9,1.0 +24897,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,,1,78,0.0 +29152,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,4,100-500,Pvt Ltd,3,50,0.0 +21321,city_90,0.698,Male,No relevent experience,Full time course,Masters,STEM,5,,,2,20,0.0 +21411,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,1,47,0.0 +32170,city_103,0.92,Female,Has relevent experience,Full time course,Graduate,STEM,7,50-99,Pvt Ltd,1,56,0.0 +24678,city_16,0.91,,No relevent experience,no_enrollment,High School,,1,,,never,125,0.0 +29895,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Arts,15,500-999,,2,50,0.0 +5827,city_104,0.924,Female,Has relevent experience,no_enrollment,Masters,Humanities,2,50-99,Funded Startup,1,28,0.0 +18608,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,130,1.0 +9048,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,,,never,58,1.0 +2083,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,2,19,0.0 +3002,city_102,0.804,,No relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,1,47,0.0 +29856,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,13,1000-4999,Pvt Ltd,1,46,0.0 +22061,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,2,78,0.0 +2916,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Pvt Ltd,2,32,0.0 +23069,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,100-500,Pvt Ltd,1,62,1.0 +19057,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,96,0.0 +12885,city_78,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Funded Startup,2,20,1.0 +20052,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,13,,Pvt Ltd,never,34,0.0 +10264,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,1,30,0.0 +32430,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,13,50-99,Pvt Ltd,1,38,0.0 +348,city_13,0.8270000000000001,Female,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,4,26,0.0 +6130,city_138,0.836,Male,No relevent experience,no_enrollment,,,16,50-99,,never,156,0.0 +8636,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,3,162,0.0 +3045,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,Humanities,14,50-99,Pvt Ltd,1,29,0.0 +32763,city_16,0.91,Female,No relevent experience,Full time course,High School,,2,50-99,,1,32,0.0 +27509,city_136,0.897,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,>4,52,0.0 +20330,city_160,0.92,Male,No relevent experience,Full time course,High School,,6,,,never,21,0.0 +15077,city_83,0.9229999999999999,Female,Has relevent experience,no_enrollment,Graduate,Other,10,,,>4,160,1.0 +25511,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,50-99,Pvt Ltd,2,68,0.0 +6170,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,,2,31,0.0 +18044,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,<1,,,never,50,0.0 +5733,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,100-500,Pvt Ltd,2,13,1.0 +11571,city_136,0.897,,No relevent experience,,High School,,5,,,,55,0.0 +20129,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Funded Startup,1,109,1.0 +22416,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,>20,,,>4,6,1.0 +9724,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,54,0.0 +12813,city_136,0.897,,Has relevent experience,no_enrollment,Graduate,STEM,16,,,,152,0.0 +15764,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,5000-9999,Pvt Ltd,>4,182,0.0 +6003,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,11,100-500,Funded Startup,2,45,0.0 +11934,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,4,101,1.0 +14957,city_103,0.92,,No relevent experience,,,,2,,,never,68,0.0 +12658,city_70,0.698,Male,Has relevent experience,no_enrollment,,,6,,,>4,52,0.0 +4181,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Other,<1,500-999,Pvt Ltd,1,16,0.0 +30192,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,500-999,Pvt Ltd,1,4,0.0 +25068,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,3,50-99,Pvt Ltd,1,45,0.0 +22356,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,1,<10,Funded Startup,1,53,1.0 +19170,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,Pvt Ltd,1,45,0.0 +18778,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,never,66,0.0 +14242,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,never,160,0.0 +21856,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,1,138,0.0 +8222,city_45,0.89,Male,Has relevent experience,Full time course,Graduate,STEM,5,,,1,31,0.0 +17517,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Other,1,149,0.0 +6934,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,Funded Startup,1,15,1.0 +24762,city_103,0.92,Male,Has relevent experience,no_enrollment,Primary School,,5,1000-4999,Pvt Ltd,never,31,0.0 +20934,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,2,1.0 +25066,city_14,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,16,5000-9999,Pvt Ltd,2,72,0.0 +15567,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Graduate,Business Degree,<1,10000+,Pvt Ltd,2,14,0.0 +9784,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,9,0.0 +26517,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,3,,,1,58,1.0 +21598,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,,,>20,<10,Pvt Ltd,never,97,0.0 +4489,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,2,135,0.0 +2788,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,24,1.0 +18069,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,31,0.0 +17531,city_90,0.698,,Has relevent experience,Part time course,Masters,STEM,6,,,1,116,1.0 +22385,city_152,0.698,,Has relevent experience,Full time course,Masters,STEM,12,,,1,44,0.0 +13705,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,4,102,0.0 +32064,city_167,0.9209999999999999,Male,No relevent experience,Full time course,Graduate,STEM,10,1000-4999,Public Sector,1,48,0.0 +29865,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,>4,36,0.0 +28622,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,,,7,10/49,Pvt Ltd,1,122,0.0 +99,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,>4,56,1.0 +27549,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,5000-9999,Pvt Ltd,3,62,0.0 +31170,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Pvt Ltd,1,143,0.0 +21626,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,30,1.0 +30861,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,1,25,0.0 +16019,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,4,10,1.0 +11840,city_40,0.7759999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,1,9,0.0 +8902,city_103,0.92,Male,No relevent experience,no_enrollment,,,1,,,never,25,0.0 +5747,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,2,79,0.0 +16204,city_103,0.92,,Has relevent experience,no_enrollment,Masters,Business Degree,4,,,1,73,1.0 +5602,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,NGO,1,258,0.0 +18970,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,1,28,0.0 +7938,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,3,19,1.0 +24019,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,216,1.0 +10001,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,never,6,1.0 +1979,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,9,100-500,Pvt Ltd,never,5,1.0 +25994,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,,,>4,24,0.0 +11017,city_11,0.55,,Has relevent experience,Full time course,Graduate,STEM,4,100-500,Pvt Ltd,1,106,0.0 +9284,city_67,0.855,,No relevent experience,Full time course,Graduate,STEM,5,,,3,54,1.0 +1060,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,24,0.0 +6763,city_100,0.887,Male,Has relevent experience,Full time course,Graduate,STEM,10,100-500,Pvt Ltd,>4,116,0.0 +1964,city_134,0.698,,No relevent experience,Full time course,High School,,3,,Pvt Ltd,never,64,0.0 +6293,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,,1,106,0.0 +4710,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,51,0.0 +31323,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,40,0.0 +2807,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,26,0.0 +32255,city_23,0.899,,Has relevent experience,,Graduate,Business Degree,2,,,1,28,0.0 +19092,city_90,0.698,Female,Has relevent experience,no_enrollment,Masters,STEM,6,10/49,,1,178,0.0 +26193,city_145,0.555,Male,No relevent experience,Full time course,Graduate,STEM,7,10/49,Pvt Ltd,1,102,1.0 +4639,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,2,124,0.0 +12853,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,>4,34,0.0 +7247,city_97,0.925,,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Early Stage Startup,1,46,0.0 +7,city_136,0.897,Male,Has relevent experience,Full time course,Masters,STEM,13,,,1,18,0.0 +15575,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,16,0.0 +11163,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,NGO,2,158,0.0 +2527,city_104,0.924,Male,No relevent experience,Full time course,High School,,4,1000-4999,Pvt Ltd,1,102,1.0 +17797,city_23,0.899,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,1,37,0.0 +8892,city_7,0.647,,No relevent experience,no_enrollment,Graduate,STEM,1,,,never,33,0.0 +5163,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,3,1.0 +28889,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,,,7,500-999,Other,3,80,1.0 +1011,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,4,,,never,31,1.0 +4923,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,59,1.0 +21447,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,,,1,4,1.0 +31357,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,12,1000-4999,Pvt Ltd,>4,50,0.0 +12118,city_152,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,never,56,0.0 +33133,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,82,0.0 +6306,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,>4,90,0.0 +15204,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,Humanities,>20,<10,NGO,>4,88,0.0 +23532,city_103,0.92,,No relevent experience,no_enrollment,,,4,,,,46,0.0 +16300,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,4,50-99,Pvt Ltd,1,28,1.0 +15428,city_76,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,6,1000-4999,Pvt Ltd,2,56,0.0 +7407,city_55,0.7390000000000001,Male,No relevent experience,Full time course,Masters,STEM,5,,,1,50,1.0 +2204,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,29,0.0 +17455,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,>4,36,0.0 +26090,city_136,0.897,Male,Has relevent experience,Part time course,Masters,STEM,16,1000-4999,Pvt Ltd,1,19,0.0 +23124,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,2,100-500,,2,54,0.0 +1413,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,5,,,never,35,0.0 +30757,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,4,44,1.0 +4684,city_23,0.899,Male,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,28,0.0 +18772,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,55,0.0 +19902,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,2,,,1,148,1.0 +16301,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,2,19,0.0 +32428,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,20,50-99,,1,16,1.0 +25853,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,7,,,1,112,0.0 +19592,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,3,65,1.0 +1187,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,>4,10,0.0 +27645,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,76,1.0 +23530,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,68,1.0 +7010,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,1,4,0.0 +24963,city_21,0.624,Female,Has relevent experience,no_enrollment,,,5,,,1,39,0.0 +14902,city_54,0.856,Male,Has relevent experience,Full time course,Graduate,STEM,8,50-99,Pvt Ltd,>4,18,1.0 +28953,city_105,0.794,Male,No relevent experience,no_enrollment,Graduate,No Major,2,,,1,7,1.0 +12719,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,4,<10,Pvt Ltd,1,45,0.0 +8383,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,106,0.0 +28677,city_103,0.92,Male,Has relevent experience,,Graduate,Humanities,>20,100-500,NGO,1,2,0.0 +30954,city_57,0.866,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,87,0.0 +14148,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,92,0.0 +6766,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Funded Startup,>4,25,0.0 +16338,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,88,0.0 +13760,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,26,1.0 +19481,city_104,0.924,Male,No relevent experience,no_enrollment,Masters,STEM,11,100-500,,1,8,0.0 +17544,city_73,0.754,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,39,1.0 +19984,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,1000-4999,Pvt Ltd,3,157,1.0 +21776,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,72,0.0 +19910,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,7,,,1,290,1.0 +13290,city_142,0.727,Male,Has relevent experience,,Graduate,STEM,6,,,1,122,1.0 +9074,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,48,1.0 +28793,city_41,0.8270000000000001,Male,No relevent experience,Full time course,High School,,8,,,2,214,0.0 +19113,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Primary School,,5,,,never,19,0.0 +21437,city_123,0.738,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,,>4,50,1.0 +6543,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,1000-4999,Pvt Ltd,>4,28,0.0 +17507,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,9,,,1,49,1.0 +11843,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,107,0.0 +22782,city_36,0.893,Male,No relevent experience,Full time course,Masters,STEM,7,500-999,Public Sector,1,35,0.0 +21875,city_74,0.579,Male,No relevent experience,,,,1,,,1,4,0.0 +22664,city_102,0.804,,No relevent experience,,Graduate,STEM,8,100-500,Pvt Ltd,1,16,1.0 +28553,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Humanities,15,50-99,Funded Startup,2,8,0.0 +17362,city_11,0.55,Male,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,1,26,1.0 +2963,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,<1,,,never,23,0.0 +22543,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,10,50-99,Pvt Ltd,1,31,0.0 +17201,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,never,2,1.0 +33228,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,10,,,>4,43,0.0 +32050,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,1,100,0.0 +843,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,57,0.0 +31780,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Graduate,STEM,14,10/49,Pvt Ltd,1,198,0.0 +3457,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,NGO,>4,50,0.0 +16636,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,1,24,0.0 +20131,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,2,,,1,8,0.0 +27346,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,>20,50-99,Funded Startup,2,8,0.0 +1282,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,19,10000+,Pvt Ltd,>4,21,0.0 +33282,city_21,0.624,Male,Has relevent experience,no_enrollment,,,7,,,1,272,1.0 +17401,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,9,,,never,20,0.0 +5193,city_23,0.899,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Funded Startup,4,144,0.0 +11737,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,4,80,0.0 +1545,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,4,55,0.0 +4554,city_21,0.624,,No relevent experience,Part time course,Masters,STEM,1,5000-9999,Pvt Ltd,1,55,1.0 +12200,city_102,0.804,Other,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,3,37,1.0 +7830,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Pvt Ltd,>4,31,0.0 +19409,city_21,0.624,,Has relevent experience,,Graduate,STEM,14,,,>4,154,1.0 +24136,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,2,,,never,134,0.0 +4014,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,4,22,0.0 +24999,city_36,0.893,,No relevent experience,no_enrollment,Masters,Other,9,10000+,Pvt Ltd,4,14,0.0 +18168,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,30,0.0 +28241,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,50-99,Funded Startup,>4,77,0.0 +1901,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Funded Startup,1,40,1.0 +9477,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,2,10/49,Pvt Ltd,1,218,0.0 +5407,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,117,0.0 +21171,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Arts,>20,50-99,Pvt Ltd,2,11,1.0 +27048,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,41,0.0 +23517,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,4,,,never,21,0.0 +13752,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,1,15,0.0 +6214,city_65,0.802,,No relevent experience,no_enrollment,High School,,<1,,,never,35,0.0 +13636,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10/49,Early Stage Startup,1,16,0.0 +19206,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Public Sector,1,15,0.0 +14747,city_36,0.893,Male,No relevent experience,Full time course,High School,,2,100-500,Pvt Ltd,1,30,0.0 +24342,city_27,0.848,,No relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,1,60,0.0 +4772,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,3,14,0.0 +584,city_142,0.727,,Has relevent experience,no_enrollment,Graduate,STEM,8,,,3,168,1.0 +21676,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,8,0.0 +18807,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,18,5000-9999,NGO,3,65,0.0 +10101,city_136,0.897,,Has relevent experience,Part time course,Masters,STEM,4,<10,Funded Startup,1,105,0.0 +14535,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,1,43,0.0 +29235,city_41,0.8270000000000001,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,,>4,16,0.0 +22687,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,1,1000-4999,Pvt Ltd,,131,0.0 +23621,city_103,0.92,Male,No relevent experience,Full time course,High School,,9,,,never,55,1.0 +15142,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,11,,,2,33,1.0 +1505,city_149,0.6890000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,12,100-500,Pvt Ltd,3,30,0.0 +30988,city_53,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,28,0.0 +7870,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,2,19,0.0 +14020,city_1,0.847,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,59,0.0 +16443,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,10000+,Pvt Ltd,1,106,0.0 +17431,city_71,0.884,,Has relevent experience,Full time course,Graduate,STEM,8,,,,39,0.0 +29542,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,11,50-99,Pvt Ltd,>4,26,1.0 +32715,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,2,0.0 +15647,city_43,0.516,Female,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,46,1.0 +13493,city_89,0.925,Female,No relevent experience,Full time course,Graduate,STEM,4,,,never,19,1.0 +8957,city_42,0.563,,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Early Stage Startup,never,54,1.0 +12938,city_101,0.5579999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,1,10/49,Pvt Ltd,1,64,1.0 +968,city_160,0.92,,Has relevent experience,Full time course,Masters,STEM,8,,Public Sector,>4,35,0.0 +33149,city_145,0.555,Male,Has relevent experience,no_enrollment,Masters,STEM,12,<10,Pvt Ltd,1,25,0.0 +19126,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Funded Startup,2,14,0.0 +16305,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,,,never,74,0.0 +28162,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,2,100-500,Pvt Ltd,1,72,0.0 +2310,city_102,0.804,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,never,62,0.0 +13935,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,5,1.0 +19379,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,1000-4999,Pvt Ltd,>4,26,0.0 +10157,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,>4,74,0.0 +8143,city_21,0.624,Female,No relevent experience,Full time course,Graduate,STEM,<1,10000+,Pvt Ltd,4,66,1.0 +28417,city_103,0.92,Female,Has relevent experience,Full time course,Graduate,STEM,7,50-99,NGO,4,157,1.0 +12001,city_158,0.7659999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,1,112,0.0 +3257,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,88,1.0 +28046,city_59,0.775,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,3,96,1.0 +1534,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,8,,,1,19,1.0 +31961,city_16,0.91,Female,No relevent experience,no_enrollment,Masters,Business Degree,>20,,,1,63,1.0 +1337,city_104,0.924,Male,No relevent experience,Full time course,Graduate,STEM,7,50-99,Pvt Ltd,4,53,0.0 +9096,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,28,1.0 +32904,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,4,54,0.0 +19115,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,9,10000+,Pvt Ltd,2,106,0.0 +29998,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,1,16,0.0 +6120,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,2,45,0.0 +12727,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10/49,Pvt Ltd,1,2,0.0 +18066,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,8,<10,Early Stage Startup,1,166,0.0 +30193,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,Humanities,5,100-500,Pvt Ltd,2,96,0.0 +16159,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,2,112,0.0 +14930,city_10,0.895,Male,No relevent experience,Full time course,Masters,STEM,10,100-500,Public Sector,2,94,0.0 +4885,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,High School,,19,,,>4,56,0.0 +32111,city_102,0.804,Other,No relevent experience,Full time course,High School,,2,10000+,Pvt Ltd,2,15,0.0 +9686,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,1,15,0.0 +5207,city_21,0.624,,No relevent experience,Full time course,High School,,7,,,,76,0.0 +32310,city_160,0.92,Male,No relevent experience,no_enrollment,High School,,4,,,never,37,0.0 +31607,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,NGO,2,11,0.0 +9128,city_57,0.866,Male,No relevent experience,Full time course,Masters,STEM,5,10/49,Public Sector,1,31,0.0 +19778,city_67,0.855,Male,Has relevent experience,Full time course,Masters,STEM,14,10/49,Pvt Ltd,>4,30,0.0 +10965,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,3,<10,,1,56,0.0 +15606,city_138,0.836,,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,1,130,0.0 +22383,city_102,0.804,Male,No relevent experience,Full time course,High School,,8,,,1,64,0.0 +29988,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,,,2,62,0.0 +22370,city_101,0.5579999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,1,104,1.0 +15347,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,never,60,0.0 +4700,city_67,0.855,Male,No relevent experience,no_enrollment,,,2,,,1,130,0.0 +1889,city_76,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,3,48,0.0 +1306,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,>20,100-500,Pvt Ltd,1,68,1.0 +13820,city_100,0.887,,No relevent experience,Full time course,High School,,9,,,never,13,0.0 +24028,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,Humanities,2,100-500,Pvt Ltd,1,12,0.0 +6879,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,10/49,Pvt Ltd,1,18,1.0 +30955,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,3,100-500,NGO,1,39,1.0 +11801,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,3,100-500,Early Stage Startup,,109,0.0 +29464,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,12,,,never,57,1.0 +3025,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,18,100-500,Early Stage Startup,>4,166,0.0 +21846,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,5,,,1,188,1.0 +32594,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Funded Startup,2,152,0.0 +3158,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,4,86,0.0 +19402,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,,,1,162,1.0 +24499,city_90,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,,134,1.0 +29441,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,4,99,1.0 +29017,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Masters,Arts,4,500-999,Pvt Ltd,1,194,0.0 +10519,city_150,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,2,121,0.0 +3310,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,>4,9,1.0 +18662,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,56,1.0 +10985,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,High School,,6,50-99,Pvt Ltd,,2,0.0 +29348,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,100-500,NGO,2,56,0.0 +5452,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,>4,46,0.0 +31397,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,12,0.0 +2560,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,1,32,0.0 +30985,city_33,0.44799999999999995,,No relevent experience,Full time course,Graduate,STEM,2,,,never,43,1.0 +6487,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Pvt Ltd,3,42,1.0 +21414,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,,3,6,0.0 +32613,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,2,,Pvt Ltd,never,35,0.0 +29001,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,5000-9999,Pvt Ltd,1,117,0.0 +4864,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,52,1.0 +23772,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,4,6,0.0 +109,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,14,1000-4999,Pvt Ltd,>4,80,0.0 +26456,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,NGO,1,74,0.0 +23152,city_149,0.6890000000000001,,No relevent experience,,,,4,,,never,8,0.0 +25154,city_101,0.5579999999999999,Male,No relevent experience,,Graduate,STEM,3,100-500,Pvt Ltd,1,109,1.0 +15289,city_45,0.89,Male,Has relevent experience,Full time course,Graduate,STEM,6,100-500,,1,28,0.0 +33379,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,<10,Pvt Ltd,2,81,0.0 +3820,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,3,190,0.0 +21733,city_27,0.848,,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,51,0.0 +13122,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,68,1.0 +25331,city_24,0.698,,No relevent experience,no_enrollment,High School,,<1,,,1,42,1.0 +18762,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,3,6,1.0 +25727,city_103,0.92,,No relevent experience,no_enrollment,,,9,1000-4999,NGO,>4,13,0.0 +787,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Pvt Ltd,1,30,0.0 +19608,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Pvt Ltd,>4,85,0.0 +28049,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,5,50-99,Public Sector,1,6,0.0 +1853,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,never,51,1.0 +18055,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,2,50-99,Funded Startup,1,13,0.0 +26898,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Pvt Ltd,2,26,0.0 +5167,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,1,,,,69,1.0 +21001,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,1,4,0.0 +11556,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,Pvt Ltd,1,22,0.0 +32851,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,>20,,,1,83,1.0 +15283,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,77,0.0 +8624,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,,>4,106,0.0 +16374,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,9,50-99,,1,50,0.0 +29119,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,4,,,never,27,1.0 +26390,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,2,<10,Pvt Ltd,1,165,0.0 +19707,city_41,0.8270000000000001,Male,No relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,1,20,0.0 +5013,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,No Major,5,50-99,,1,288,0.0 +769,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,34,0.0 +5951,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,42,1.0 +32086,city_16,0.91,,No relevent experience,no_enrollment,High School,,2,,,never,43,1.0 +17347,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,7,0.0 +21721,city_176,0.764,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,78,1.0 +11894,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,15,500-999,Funded Startup,1,15,1.0 +2256,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,never,139,0.0 +27901,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,1,8,0.0 +14078,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Public Sector,2,80,0.0 +7271,city_142,0.727,,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,3,300,0.0 +10942,city_48,0.493,,No relevent experience,Part time course,Graduate,STEM,<1,,,1,92,1.0 +30300,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,33,0.0 +19845,city_98,0.9490000000000001,Female,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Public Sector,1,3,0.0 +30040,city_11,0.55,,No relevent experience,no_enrollment,Masters,Other,6,,,1,21,1.0 +28975,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,1,336,0.0 +8974,city_103,0.92,Female,No relevent experience,Full time course,High School,,5,5000-9999,,1,30,0.0 +10216,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,>4,50,0.0 +4875,city_90,0.698,Female,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,42,0.0 +27927,city_27,0.848,Male,No relevent experience,no_enrollment,Masters,STEM,12,,,2,17,1.0 +20969,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,2,46,1.0 +20898,city_11,0.55,Male,No relevent experience,Full time course,High School,,3,,,never,19,0.0 +27649,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,3,4,0.0 +24200,city_114,0.9259999999999999,Other,No relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,1,48,0.0 +24687,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Graduate,Arts,>20,,,3,24,0.0 +391,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,6,,,never,194,1.0 +24778,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Public Sector,2,130,0.0 +26080,city_21,0.624,,No relevent experience,no_enrollment,Graduate,No Major,<1,,,1,20,1.0 +32837,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,4,0.0 +10140,city_162,0.767,Male,No relevent experience,Full time course,High School,,<1,,,1,80,0.0 +22868,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,1000-4999,Pvt Ltd,>4,72,0.0 +16085,city_102,0.804,Male,No relevent experience,no_enrollment,Primary School,,<1,10000+,Pvt Ltd,>4,11,0.0 +308,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,2,89,0.0 +27252,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,,,2,112,0.0 +33370,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,6,,,1,264,0.0 +29782,city_45,0.89,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,19,0.0 +13637,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,never,122,0.0 +6470,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,34,0.0 +19070,city_16,0.91,Female,No relevent experience,,High School,,3,,,never,122,0.0 +19368,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,10,100-500,Pvt Ltd,>4,10,0.0 +29696,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,3,,,2,22,1.0 +22841,city_73,0.754,Male,No relevent experience,Full time course,Masters,STEM,14,,,>4,10,1.0 +32307,city_115,0.789,Male,No relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,1,80,0.0 +5942,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,16,0.0 +20191,city_16,0.91,Female,No relevent experience,Full time course,High School,,<1,50-99,Funded Startup,1,94,0.0 +9363,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,Other,13,10000+,Public Sector,1,166,0.0 +25744,city_16,0.91,,No relevent experience,no_enrollment,High School,,5,,,never,111,0.0 +14951,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Pvt Ltd,>4,24,0.0 +14543,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,6,<10,Funded Startup,2,182,0.0 +748,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,4,218,0.0 +13427,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,8,1000-4999,Pvt Ltd,4,103,0.0 +32886,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,12,10/49,Pvt Ltd,1,50,0.0 +15104,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,72,0.0 +20100,city_160,0.92,Male,No relevent experience,Part time course,Graduate,STEM,4,10/49,Pvt Ltd,1,57,0.0 +18858,city_57,0.866,Male,Has relevent experience,Full time course,Masters,STEM,13,100-500,,2,19,0.0 +24464,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,,1,166,0.0 +12082,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,13,500-999,Pvt Ltd,4,28,0.0 +13783,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10/49,NGO,2,13,0.0 +9492,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,6,,,2,12,1.0 +14072,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,2,4,0.0 +13700,city_24,0.698,Male,No relevent experience,Full time course,High School,,5,100-500,Pvt Ltd,1,46,0.0 +17036,city_94,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,>4,112,1.0 +321,city_20,0.7959999999999999,,No relevent experience,no_enrollment,Primary School,,8,,Pvt Ltd,never,79,0.0 +17681,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,7,,,1,26,0.0 +32023,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,3,,,>4,108,1.0 +19193,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,2,70,0.0 +15814,city_159,0.843,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,4,134,1.0 +26837,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,NGO,1,89,0.0 +28294,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,14,<10,Pvt Ltd,4,88,0.0 +13816,city_16,0.91,Male,No relevent experience,Part time course,Graduate,STEM,2,10000+,Public Sector,1,37,0.0 +8406,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,<1,1000-4999,Pvt Ltd,1,60,0.0 +375,city_20,0.7959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,2,26,0.0 +22435,city_100,0.887,Male,Has relevent experience,Full time course,High School,,13,500-999,,,49,0.0 +2890,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,>4,308,0.0 +16144,city_104,0.924,Male,Has relevent experience,Part time course,Graduate,STEM,7,100-500,Pvt Ltd,1,94,0.0 +26998,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,2,10000+,Pvt Ltd,2,11,0.0 +30034,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,196,0.0 +7043,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,1,44,0.0 +2117,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,Public Sector,3,46,0.0 +7624,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,7,,,1,47,1.0 +23075,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,,>20,1000-4999,Public Sector,>4,7,0.0 +9553,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,2,220,1.0 +23348,city_27,0.848,,No relevent experience,,Graduate,STEM,4,50-99,Pvt Ltd,3,58,0.0 +8134,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,140,0.0 +30420,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,1,10000+,Public Sector,1,17,0.0 +7895,city_116,0.743,Male,No relevent experience,no_enrollment,Masters,STEM,5,,,never,79,0.0 +18751,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,11,10/49,Pvt Ltd,1,120,0.0 +24487,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,50,0.0 +130,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Public Sector,>4,54,0.0 +1896,city_144,0.84,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,Pvt Ltd,4,69,0.0 +16779,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,16,<10,,1,45,0.0 +1831,city_98,0.9490000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,3,<10,Funded Startup,>4,43,0.0 +24441,city_40,0.7759999999999999,,Has relevent experience,,Masters,STEM,17,50-99,Funded Startup,1,37,0.0 +21062,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,>4,117,0.0 +13026,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,7,,,1,86,1.0 +19042,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,15,,,1,14,0.0 +1755,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,32,1.0 +30224,city_21,0.624,Male,No relevent experience,Full time course,Masters,Other,3,50-99,Pvt Ltd,2,80,1.0 +14213,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,5,<10,Funded Startup,2,60,0.0 +22128,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,70,0.0 +21305,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,32,0.0 +20177,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,16,0.0 +25262,city_16,0.91,Other,Has relevent experience,no_enrollment,Masters,No Major,10,<10,Pvt Ltd,1,105,0.0 +9146,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,300,0.0 +31116,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,Pvt Ltd,never,28,0.0 +24449,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,No Major,4,50-99,Early Stage Startup,1,74,1.0 +27126,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,3,,,1,100,1.0 +13287,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,7,,,never,45,1.0 +3405,city_21,0.624,Male,No relevent experience,,,,6,,Pvt Ltd,never,17,0.0 +18458,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Early Stage Startup,2,67,0.0 +24343,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Pvt Ltd,1,39,0.0 +11742,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,1,106,0.0 +9836,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,2,78,0.0 +13532,city_165,0.903,,No relevent experience,Part time course,Graduate,Humanities,10,50-99,Pvt Ltd,1,73,0.0 +19871,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,34,1.0 +26665,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,15,1.0 +19076,city_71,0.884,,No relevent experience,,Graduate,STEM,13,,,never,83,0.0 +12009,city_71,0.884,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,11,1.0 +23495,city_11,0.55,,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,>4,12,1.0 +6512,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,1,34,0.0 +8148,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,28,0.0 +6553,city_115,0.789,,No relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,4,79,0.0 +22755,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,19,100-500,Pvt Ltd,>4,74,0.0 +1340,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,218,0.0 +24383,city_114,0.9259999999999999,,No relevent experience,,High School,,3,100-500,Public Sector,2,65,0.0 +4527,city_160,0.92,Male,Has relevent experience,Full time course,,,5,10000+,Pvt Ltd,2,109,0.0 +32671,city_145,0.555,,No relevent experience,no_enrollment,Graduate,STEM,2,50-99,NGO,never,42,0.0 +10807,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,15,0.0 +25532,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,1,25,0.0 +15040,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,15,50-99,Pvt Ltd,1,23,0.0 +24348,city_7,0.647,Female,No relevent experience,Full time course,Graduate,STEM,2,,,never,55,0.0 +2154,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,17,10000+,Pvt Ltd,2,78,0.0 +5414,city_71,0.884,Male,Has relevent experience,Full time course,High School,,8,,,never,74,0.0 +32730,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Pvt Ltd,2,122,1.0 +1948,city_10,0.895,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,1,22,0.0 +15365,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,>4,143,0.0 +24500,city_16,0.91,,No relevent experience,no_enrollment,Graduate,STEM,11,,,1,103,1.0 +14982,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,22,0.0 +25911,city_136,0.897,Male,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Funded Startup,2,50,0.0 +27313,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,1000-4999,Pvt Ltd,3,280,1.0 +18466,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,High School,,14,,Pvt Ltd,1,14,0.0 +11537,city_42,0.563,,No relevent experience,Full time course,,,2,10/49,,1,20,1.0 +29134,city_104,0.924,,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,>4,43,0.0 +14141,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,1,18,0.0 +13835,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,70,1.0 +9568,city_7,0.647,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,30,1.0 +23201,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,1,174,0.0 +2843,city_105,0.794,Male,No relevent experience,no_enrollment,Graduate,STEM,1,10/49,Pvt Ltd,1,55,0.0 +26987,city_165,0.903,,No relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,90,0.0 +24365,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,1,<10,Early Stage Startup,,85,1.0 +11052,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,19,,,1,80,0.0 +3552,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,16,<10,Pvt Ltd,never,66,0.0 +24651,city_150,0.698,Male,Has relevent experience,no_enrollment,Graduate,Humanities,4,<10,Funded Startup,1,80,1.0 +4644,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,12,,,3,26,0.0 +3082,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,19,10000+,Pvt Ltd,1,37,0.0 +3886,city_160,0.92,Male,No relevent experience,Full time course,High School,,5,,Pvt Ltd,never,212,0.0 +15821,city_24,0.698,Male,Has relevent experience,Full time course,Masters,STEM,3,50-99,Public Sector,2,45,0.0 +10670,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,1,78,1.0 +20377,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,1,10/49,,1,29,0.0 +791,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,2,77,0.0 +11351,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,Pvt Ltd,1,22,0.0 +1460,city_165,0.903,,Has relevent experience,no_enrollment,Graduate,Arts,6,100-500,Pvt Ltd,never,20,0.0 +15778,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Pvt Ltd,1,15,0.0 +6870,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,>4,36,1.0 +32593,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,6,,,1,102,1.0 +21055,city_90,0.698,,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,1,20,0.0 +24090,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,15,1.0 +17690,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Arts,<1,1000-4999,Pvt Ltd,1,73,0.0 +13053,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,1,45,1.0 +12229,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,Masters,STEM,17,1000-4999,Pvt Ltd,1,22,0.0 +4485,city_21,0.624,,No relevent experience,Full time course,High School,,<1,,,never,166,1.0 +12791,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,17,100-500,Pvt Ltd,1,23,0.0 +6013,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Public Sector,3,55,0.0 +27263,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,,1,54,0.0 +13442,city_70,0.698,,Has relevent experience,Full time course,Graduate,STEM,5,500-999,Pvt Ltd,1,166,0.0 +10793,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,9,,,1,55,1.0 +30581,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,18,0.0 +23525,city_73,0.754,,No relevent experience,Full time course,High School,,1,,,1,63,0.0 +9421,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,>4,62,0.0 +14714,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,4,109,1.0 +1725,city_99,0.915,Male,Has relevent experience,no_enrollment,Masters,Humanities,16,,,4,60,0.0 +3154,city_67,0.855,Male,Has relevent experience,Part time course,Graduate,STEM,6,100-500,Pvt Ltd,1,98,0.0 +6688,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,82,0.0 +17332,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,3,100-500,Funded Startup,1,19,0.0 +15730,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,5,,Pvt Ltd,>4,48,0.0 +7099,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,282,0.0 +8183,city_45,0.89,,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,Pvt Ltd,1,4,0.0 +21524,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,Other,4,10000+,Pvt Ltd,2,102,1.0 +1524,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,2,23,0.0 +27737,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,,,>4,110,1.0 +27790,city_41,0.8270000000000001,Male,No relevent experience,Full time course,High School,,14,,,2,7,0.0 +11146,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,16,,,never,17,1.0 +31520,city_67,0.855,Male,No relevent experience,Full time course,High School,,2,10000+,Pvt Ltd,1,7,0.0 +12188,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Early Stage Startup,4,103,1.0 +31178,city_102,0.804,Male,Has relevent experience,Full time course,High School,,5,100-500,Pvt Ltd,1,79,0.0 +4712,city_67,0.855,Female,Has relevent experience,Part time course,Graduate,STEM,5,10/49,Early Stage Startup,1,48,0.0 +23483,city_23,0.899,Male,Has relevent experience,Part time course,,,2,500-999,Pvt Ltd,1,52,0.0 +30227,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,2,99,0.0 +8907,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,9,0.0 +15721,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,1,52,0.0 +25015,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,4,13,0.0 +1990,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Early Stage Startup,1,24,0.0 +30515,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,7,,,never,90,0.0 +26949,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,174,0.0 +31589,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10/49,Pvt Ltd,3,54,0.0 +31374,city_57,0.866,Male,Has relevent experience,Full time course,Graduate,STEM,9,<10,Pvt Ltd,3,44,0.0 +7705,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,2,21,0.0 +17146,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,30,1.0 +558,city_173,0.878,Male,No relevent experience,no_enrollment,Primary School,,3,10/49,Pvt Ltd,3,88,0.0 +1961,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,7,,Pvt Ltd,never,51,0.0 +26675,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,2,,,1,21,1.0 +33065,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,never,102,1.0 +16281,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,2,18,1.0 +16036,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,3,,,never,12,0.0 +20620,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,Business Degree,19,1000-4999,Pvt Ltd,2,70,0.0 +4196,city_160,0.92,,No relevent experience,Full time course,High School,,1,,,never,67,0.0 +7892,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,,1,114,1.0 +19768,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,64,1.0 +33180,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,>20,5000-9999,Pvt Ltd,>4,89,0.0 +13215,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,>4,20,1.0 +2386,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,5000-9999,Pvt Ltd,2,16,0.0 +18582,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,4,170,0.0 +25222,city_159,0.843,,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,1,107,0.0 +5697,city_61,0.9129999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,,1,9,0.0 +5172,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,38,1.0 +1815,city_27,0.848,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10000+,Pvt Ltd,>4,17,1.0 +18347,city_74,0.579,,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,1,72,0.0 +3907,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,16,5000-9999,NGO,>4,58,0.0 +372,city_45,0.89,Male,No relevent experience,Part time course,Graduate,No Major,3,<10,Pvt Ltd,1,24,0.0 +10580,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,16,100-500,Public Sector,2,28,0.0 +33376,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,Business Degree,8,1000-4999,Public Sector,4,74,0.0 +27970,city_33,0.44799999999999995,Male,No relevent experience,no_enrollment,Graduate,STEM,1,,,never,73,1.0 +20568,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,>4,160,0.0 +9059,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,1,26,0.0 +27233,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,7,50-99,Pvt Ltd,1,3,1.0 +30763,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,17,1.0 +12383,city_14,0.698,,Has relevent experience,no_enrollment,Graduate,Business Degree,13,<10,Pvt Ltd,1,278,0.0 +16428,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,5000-9999,,2,14,1.0 +3074,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Funded Startup,1,20,0.0 +18577,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,2,62,1.0 +26667,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,2,17,1.0 +16761,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,>4,60,0.0 +953,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,1,14,0.0 +22702,city_65,0.802,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,40,0.0 +20533,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,65,0.0 +26444,city_149,0.6890000000000001,,Has relevent experience,Full time course,Masters,STEM,3,10/49,Public Sector,>4,56,1.0 +6617,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,2,50-99,Pvt Ltd,1,8,1.0 +1664,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,5,,Public Sector,2,141,1.0 +13312,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,,,1,9,1.0 +5051,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,18,1.0 +27122,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,128,0.0 +13663,city_136,0.897,Male,No relevent experience,no_enrollment,Graduate,Business Degree,17,,,>4,51,0.0 +30803,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,18,1.0 +29610,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,4,,,1,45,1.0 +24856,city_160,0.92,Female,Has relevent experience,Part time course,Graduate,STEM,14,1000-4999,Pvt Ltd,>4,39,0.0 +27478,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,No Major,19,,,1,64,1.0 +24844,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,6,,,never,15,1.0 +13444,city_114,0.9259999999999999,Other,No relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,139,0.0 +20446,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Early Stage Startup,1,244,1.0 +4296,city_71,0.884,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10/49,Funded Startup,>4,58,0.0 +23167,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,3,,,1,147,0.0 +33297,city_126,0.479,,Has relevent experience,Full time course,,,>20,<10,Public Sector,>4,19,1.0 +32407,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,242,0.0 +32501,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,9,,Pvt Ltd,1,11,0.0 +18350,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,,50-99,Pvt Ltd,1,20,1.0 +26286,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Early Stage Startup,1,124,0.0 +2526,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,7,1000-4999,Pvt Ltd,1,72,0.0 +26269,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,47,0.0 +8862,city_89,0.925,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,>4,162,1.0 +19713,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,59,0.0 +4104,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,>4,96,0.0 +30230,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,258,1.0 +14437,city_152,0.698,,No relevent experience,Full time course,Graduate,STEM,4,,,,17,1.0 +396,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Funded Startup,4,12,0.0 +21730,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,9,5000-9999,,,64,0.0 +9720,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,4,96,0.0 +26319,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Public Sector,1,47,0.0 +11921,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,1,36,0.0 +12918,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,8,5000-9999,Public Sector,4,31,0.0 +13234,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Early Stage Startup,>4,25,1.0 +20788,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,2,24,1.0 +19380,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,>20,500-999,Public Sector,3,44,1.0 +5852,city_20,0.7959999999999999,,No relevent experience,no_enrollment,Graduate,Humanities,7,100-500,,1,114,0.0 +26206,city_160,0.92,,No relevent experience,no_enrollment,Graduate,Arts,12,100-500,,1,70,0.0 +8417,city_136,0.897,,No relevent experience,no_enrollment,High School,,8,,,,18,0.0 +4780,city_138,0.836,Other,No relevent experience,no_enrollment,Primary School,,<1,,Pvt Ltd,never,8,0.0 +12186,city_159,0.843,,No relevent experience,no_enrollment,Graduate,STEM,14,10/49,Public Sector,4,122,0.0 +29233,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,3,5,0.0 +18321,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,18,0.0 +25771,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,Other,8,10000+,Public Sector,4,134,0.0 +6514,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Funded Startup,1,19,0.0 +7763,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,3,,Pvt Ltd,,56,1.0 +901,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,4,11,0.0 +10267,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,STEM,>20,,,never,72,0.0 +2474,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,81,0.0 +10054,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,13,500-999,Funded Startup,4,52,0.0 +16767,city_69,0.856,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,1,124,0.0 +17256,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,High School,,6,10/49,Early Stage Startup,1,19,0.0 +20557,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,29,1.0 +18784,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,11,5000-9999,NGO,>4,90,0.0 +21160,city_13,0.8270000000000001,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,77,1.0 +24527,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,130,0.0 +16927,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Other,17,,,1,24,1.0 +19549,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,3,56,1.0 +15987,city_159,0.843,,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,Public Sector,1,4,0.0 +30597,city_9,0.743,Male,Has relevent experience,no_enrollment,Primary School,,3,<10,Other,1,4,0.0 +17580,city_44,0.725,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,61,0.0 +2206,city_136,0.897,Male,Has relevent experience,no_enrollment,Phd,STEM,11,100-500,Pvt Ltd,2,200,0.0 +10901,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,9,50-99,Pvt Ltd,4,162,0.0 +6286,city_116,0.743,,Has relevent experience,Part time course,Masters,STEM,2,<10,Pvt Ltd,1,58,0.0 +33168,city_21,0.624,Female,Has relevent experience,Full time course,Masters,STEM,<1,<10,Pvt Ltd,1,29,1.0 +28497,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,46,1.0 +931,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,NGO,1,6,0.0 +5579,city_89,0.925,Male,No relevent experience,no_enrollment,High School,,11,,Pvt Ltd,never,35,0.0 +22350,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,,1,210,0.0 +25365,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,14,,,>4,64,0.0 +27270,city_46,0.762,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,never,21,0.0 +30250,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Funded Startup,3,154,0.0 +6004,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,10,1.0 +9675,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,100-500,Pvt Ltd,1,154,0.0 +11141,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,49,0.0 +12143,city_104,0.924,Male,No relevent experience,Full time course,Masters,STEM,>20,500-999,NGO,2,24,0.0 +33190,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,3,10,0.0 +2129,city_28,0.9390000000000001,,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,,105,0.0 +4673,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,3,18,0.0 +2728,city_90,0.698,,Has relevent experience,Part time course,Graduate,STEM,5,100-500,Pvt Ltd,1,29,0.0 +18736,city_90,0.698,Male,Has relevent experience,Part time course,Masters,STEM,10,50-99,Funded Startup,1,37,0.0 +19772,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,,21,1.0 +29911,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,,,7,,,never,106,0.0 +18353,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,100-500,Pvt Ltd,1,37,0.0 +26857,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,46,0.0 +11590,city_136,0.897,Male,No relevent experience,Part time course,Graduate,Arts,2,1000-4999,Pvt Ltd,2,40,0.0 +8262,city_114,0.9259999999999999,Female,No relevent experience,Full time course,Graduate,STEM,8,,Public Sector,1,146,1.0 +14668,city_134,0.698,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,48,0.0 +17104,city_103,0.92,,Has relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Pvt Ltd,3,84,0.0 +764,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,56,0.0 +32234,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,2,,,2,36,1.0 +7149,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,61,0.0 +6119,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,35,0.0 +17974,city_24,0.698,,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,1,15,0.0 +29411,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,36,0.0 +17089,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,6,,,never,320,0.0 +4096,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,3,124,0.0 +29066,city_158,0.7659999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,1,,,never,19,1.0 +15456,city_136,0.897,,Has relevent experience,no_enrollment,Graduate,Humanities,2,<10,Early Stage Startup,1,75,0.0 +16139,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Arts,5,10/49,Pvt Ltd,4,11,0.0 +18243,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,15,,,1,78,0.0 +3935,city_162,0.767,Male,No relevent experience,no_enrollment,High School,,8,,Pvt Ltd,never,65,0.0 +18954,city_150,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,1,500-999,Public Sector,1,165,0.0 +20256,city_65,0.802,Male,No relevent experience,no_enrollment,Masters,Business Degree,3,1000-4999,Pvt Ltd,1,34,0.0 +30850,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,6,500-999,Pvt Ltd,1,65,0.0 +19893,city_106,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,1,98,1.0 +27518,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,1,6,0.0 +26297,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Early Stage Startup,2,54,1.0 +1160,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,18,10000+,Pvt Ltd,>4,45,0.0 +27014,city_16,0.91,,No relevent experience,no_enrollment,High School,,4,,,never,57,0.0 +8824,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Funded Startup,1,13,1.0 +29439,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,12,500-999,Funded Startup,1,121,0.0 +5068,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Funded Startup,1,55,0.0 +30554,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,118,0.0 +12255,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,1000-4999,Pvt Ltd,>4,40,0.0 +14554,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,3,50-99,Pvt Ltd,1,100,1.0 +24931,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,1,83,0.0 +23149,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,19,0.0 +23158,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,14,10000+,,2,94,0.0 +8156,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,,,never,8,0.0 +22015,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,36,0.0 +16237,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,10,,,1,138,1.0 +23067,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,2,41,0.0 +16502,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,6,,,never,36,0.0 +31714,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,,,1,51,0.0 +7260,city_37,0.794,,No relevent experience,no_enrollment,Graduate,STEM,5,,,,113,0.0 +15333,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,10,0.0 +2289,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,1,28,0.0 +19025,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,7,10000+,Public Sector,>4,6,1.0 +22223,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,NGO,>4,12,0.0 +4860,city_57,0.866,Male,Has relevent experience,no_enrollment,Phd,STEM,20,10000+,Pvt Ltd,>4,61,0.0 +7556,city_40,0.7759999999999999,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,330,0.0 +11501,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,2,29,1.0 +23920,city_103,0.92,,No relevent experience,Full time course,High School,,<1,,,,46,0.0 +17844,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,3,97,0.0 +1448,city_175,0.7759999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,17,,,>4,13,1.0 +7302,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,3,15,0.0 +6659,city_152,0.698,,Has relevent experience,no_enrollment,Graduate,Humanities,3,1000-4999,Pvt Ltd,2,24,0.0 +33278,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,6,<10,Pvt Ltd,never,236,0.0 +26167,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10/49,Early Stage Startup,1,83,0.0 +17057,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,6,500-999,Pvt Ltd,2,4,0.0 +12195,city_173,0.878,Male,No relevent experience,Part time course,Graduate,STEM,5,10000+,Pvt Ltd,1,77,0.0 +380,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,5000-9999,Pvt Ltd,1,110,0.0 +30615,city_14,0.698,Male,No relevent experience,Full time course,High School,,7,,Pvt Ltd,never,6,0.0 +10920,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Early Stage Startup,1,106,0.0 +21542,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,3,100-500,Funded Startup,1,59,0.0 +13298,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,2,140,0.0 +22627,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,1,10/49,Pvt Ltd,1,140,0.0 +9185,city_83,0.9229999999999999,Male,Has relevent experience,Full time course,High School,,4,,,2,42,0.0 +1149,city_46,0.762,,No relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,,2,83,0.0 +9349,city_136,0.897,Male,Has relevent experience,no_enrollment,Phd,STEM,14,50-99,Pvt Ltd,3,8,0.0 +2267,city_10,0.895,Male,Has relevent experience,Part time course,High School,,13,50-99,Pvt Ltd,2,172,0.0 +10490,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,26,1.0 +14475,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,,,>20,1000-4999,Pvt Ltd,never,123,0.0 +30465,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,9,,,3,174,0.0 +29532,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,4,33,0.0 +31327,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,,,1,130,0.0 +13522,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,78,1.0 +10531,city_71,0.884,,Has relevent experience,Part time course,Graduate,STEM,17,10000+,Pvt Ltd,1,184,0.0 +13013,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,4,65,0.0 +27849,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,1,134,1.0 +21743,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,<1,500-999,Pvt Ltd,4,45,0.0 +17530,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,500-999,Pvt Ltd,3,72,0.0 +5959,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,6,100-500,Pvt Ltd,,172,1.0 +16402,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,112,0.0 +16615,city_162,0.767,,Has relevent experience,no_enrollment,Graduate,,16,,,,43,0.0 +31134,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,278,0.0 +27600,city_57,0.866,Male,No relevent experience,Full time course,High School,,16,,,never,130,0.0 +13594,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,2,112,1.0 +10383,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,>4,66,0.0 +30363,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Public Sector,>4,94,0.0 +12004,city_45,0.89,Male,No relevent experience,Part time course,Graduate,STEM,8,100-500,Funded Startup,2,108,0.0 +8094,city_21,0.624,,No relevent experience,Full time course,High School,,<1,,,never,214,1.0 +5215,city_115,0.789,Male,Has relevent experience,Full time course,Graduate,STEM,14,10000+,Pvt Ltd,1,130,0.0 +10405,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,4,35,0.0 +25798,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,3,12,0.0 +19855,city_64,0.6659999999999999,Male,Has relevent experience,Part time course,,,5,50-99,Pvt Ltd,2,116,0.0 +20316,city_149,0.6890000000000001,Male,Has relevent experience,Full time course,Masters,STEM,10,5000-9999,Pvt Ltd,1,9,0.0 +8282,city_142,0.727,,Has relevent experience,Part time course,Masters,STEM,8,100-500,Pvt Ltd,>4,11,0.0 +14430,city_21,0.624,,Has relevent experience,no_enrollment,High School,,3,10/49,Early Stage Startup,,118,1.0 +19993,city_73,0.754,Male,No relevent experience,no_enrollment,High School,,6,100-500,Public Sector,never,100,0.0 +10236,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,5,0.0 +23720,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Pvt Ltd,2,90,0.0 +30818,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,9,,,never,122,0.0 +30163,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,25,0.0 +10094,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Public Sector,>4,24,0.0 +20008,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,>4,146,0.0 +9604,city_21,0.624,,No relevent experience,no_enrollment,,,1,,,never,10,1.0 +32500,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,18,5000-9999,NGO,4,80,1.0 +21879,city_28,0.9390000000000001,,No relevent experience,Part time course,Graduate,STEM,3,5000-9999,Pvt Ltd,2,72,0.0 +5869,city_64,0.6659999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,4,54,0.0 +28110,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,57,0.0 +25514,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,11,10/49,Funded Startup,1,75,0.0 +3008,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,10,,,1,16,1.0 +21289,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,No Major,5,10/49,Pvt Ltd,3,6,1.0 +8069,city_45,0.89,Male,Has relevent experience,no_enrollment,High School,,14,50-99,Pvt Ltd,2,39,0.0 +11538,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,<1,,,never,29,1.0 +21472,city_21,0.624,,Has relevent experience,no_enrollment,,,4,,,1,48,1.0 +26001,city_7,0.647,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,1,18,0.0 +1844,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,100,0.0 +29775,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,3,500-999,Pvt Ltd,1,50,0.0 +9951,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,16,1000-4999,NGO,1,152,0.0 +5336,city_73,0.754,Male,Has relevent experience,Part time course,High School,,5,10/49,Funded Startup,2,57,0.0 +14514,city_21,0.624,Male,No relevent experience,Full time course,High School,,8,,,never,111,0.0 +26983,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,78,1.0 +4833,city_67,0.855,Male,No relevent experience,Full time course,High School,,9,,,1,19,0.0 +24731,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,9,100-500,Pvt Ltd,2,75,0.0 +21114,city_103,0.92,,No relevent experience,Part time course,Graduate,STEM,1,,,never,99,1.0 +4406,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,4,51,1.0 +19539,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,500-999,Pvt Ltd,>4,9,0.0 +6535,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,1,100,1.0 +29993,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,56,1.0 +11665,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,25,0.0 +32410,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,1,86,0.0 +6634,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,78,0.0 +21068,city_1,0.847,Male,Has relevent experience,no_enrollment,,,19,10/49,Pvt Ltd,>4,30,0.0 +5975,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,7,1.0 +18211,city_73,0.754,,No relevent experience,no_enrollment,Graduate,STEM,8,,,3,69,1.0 +9336,city_165,0.903,,No relevent experience,Full time course,High School,,2,50-99,NGO,1,18,0.0 +989,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,,,>4,25,1.0 +30931,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,8,100-500,Pvt Ltd,2,192,1.0 +21561,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,13,50-99,,1,24,1.0 +23580,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,4,,,2,92,1.0 +31411,city_23,0.899,Other,Has relevent experience,no_enrollment,,,9,,,1,42,0.0 +18783,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,>4,102,1.0 +30364,city_21,0.624,,No relevent experience,,,,1,,,1,62,1.0 +8984,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,25,0.0 +169,city_98,0.9490000000000001,,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,,62,0.0 +17768,city_144,0.84,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,41,1.0 +29839,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,<1,,,1,42,1.0 +29020,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,72,1.0 +26326,city_103,0.92,Female,Has relevent experience,Part time course,Graduate,STEM,15,10000+,Other,>4,65,1.0 +25080,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,4,320,0.0 +12125,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,3,22,0.0 +16446,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,38,0.0 +21906,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,3,7,1.0 +14423,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,3,50-99,,1,70,1.0 +25667,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Other,>4,28,0.0 +27510,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,5,,,1,25,0.0 +596,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,60,0.0 +31194,city_33,0.44799999999999995,,No relevent experience,,High School,,5,,Pvt Ltd,never,86,1.0 +8847,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Public Sector,3,66,0.0 +7660,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,27,0.0 +23048,city_70,0.698,,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,1,22,1.0 +10983,city_16,0.91,,Has relevent experience,no_enrollment,,,5,5000-9999,Public Sector,4,214,0.0 +5690,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,4,109,1.0 +9192,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,3,10000+,Pvt Ltd,1,94,1.0 +7690,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,8,5000-9999,Pvt Ltd,>4,36,1.0 +3992,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,204,0.0 +6391,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,2,15,0.0 +4442,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,,>4,210,0.0 +17095,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,3,21,0.0 +19589,city_73,0.754,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,,1,222,0.0 +6190,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,16,0.0 +7868,city_90,0.698,Female,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,48,0.0 +436,city_11,0.55,,No relevent experience,Part time course,Graduate,STEM,4,,,,4,0.0 +2982,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,Pvt Ltd,1,61,0.0 +4378,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,3,113,0.0 +7403,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,1,31,0.0 +27940,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Early Stage Startup,2,148,0.0 +118,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,111,0.0 +27057,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,112,0.0 +568,city_160,0.92,,Has relevent experience,Part time course,Graduate,STEM,9,,,3,55,0.0 +27729,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Other,1,172,0.0 +30482,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,7,,,1,32,0.0 +31207,city_16,0.91,,No relevent experience,no_enrollment,High School,,<1,10000+,Pvt Ltd,3,39,0.0 +2088,city_89,0.925,,No relevent experience,Full time course,Graduate,STEM,9,,,never,34,0.0 +26044,city_99,0.915,Male,Has relevent experience,Full time course,High School,,10,10000+,Pvt Ltd,1,89,0.0 +9802,city_84,0.698,Male,No relevent experience,Full time course,High School,,5,,,1,4,0.0 +23023,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,20,0.0 +23625,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,,,never,2,0.0 +6176,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,never,326,0.0 +25624,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,161,0.0 +15780,city_59,0.775,,No relevent experience,Part time course,Graduate,STEM,5,,,1,46,1.0 +3983,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,168,0.0 +24242,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Humanities,2,,,2,266,0.0 +6825,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,No Major,6,1000-4999,,never,19,0.0 +6247,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,17,10/49,Pvt Ltd,1,18,0.0 +27207,city_71,0.884,Other,Has relevent experience,no_enrollment,Graduate,STEM,13,,,>4,30,0.0 +4960,city_150,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,18,500-999,Pvt Ltd,>4,69,0.0 +13181,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,>4,70,0.0 +5613,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Pvt Ltd,1,8,0.0 +29715,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,1,47,0.0 +9788,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Funded Startup,1,26,0.0 +32069,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,102,0.0 +20389,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,48,0.0 +28389,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,4,50-99,Funded Startup,1,23,0.0 +6567,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,1,56,0.0 +24841,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,7,,,never,3,1.0 +29847,city_45,0.89,Male,No relevent experience,Full time course,Graduate,STEM,7,,,1,106,1.0 +31745,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,100-500,Pvt Ltd,2,36,0.0 +28499,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,>4,38,0.0 +1681,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,10,,,1,105,0.0 +8790,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,3,50-99,Public Sector,2,46,0.0 +11244,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,20,5000-9999,Public Sector,2,15,0.0 +8599,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Funded Startup,2,11,0.0 +101,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,19,10/49,Funded Startup,3,12,0.0 +16561,city_16,0.91,,Has relevent experience,no_enrollment,High School,,4,,,never,56,0.0 +18902,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,6,10000+,Pvt Ltd,1,9,0.0 +10702,city_98,0.9490000000000001,Female,Has relevent experience,Full time course,Graduate,STEM,16,<10,Early Stage Startup,3,152,0.0 +213,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Early Stage Startup,1,22,1.0 +5420,city_90,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,>4,8,0.0 +18125,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,7,10000+,Pvt Ltd,1,20,0.0 +12421,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,17,10/49,Pvt Ltd,1,48,1.0 +3489,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,2,43,0.0 +20972,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,37,0.0 +6848,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,>4,22,1.0 +1415,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,<10,Early Stage Startup,2,26,0.0 +14645,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,6,1.0 +20686,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,STEM,2,1000-4999,Pvt Ltd,1,56,0.0 +31127,city_97,0.925,Male,Has relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,2,228,0.0 +28045,city_43,0.516,Male,No relevent experience,Full time course,,,5,50-99,Pvt Ltd,1,20,0.0 +22840,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,5,,,1,8,0.0 +24473,city_28,0.9390000000000001,,No relevent experience,Full time course,High School,,2,,,never,182,0.0 +15646,city_176,0.764,Male,Has relevent experience,Full time course,Masters,STEM,10,,,1,102,0.0 +1743,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,1000-4999,Pvt Ltd,never,133,0.0 +26355,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,Humanities,>20,,,1,47,0.0 +27231,city_104,0.924,Male,Has relevent experience,no_enrollment,High School,,9,,,never,246,0.0 +4915,city_57,0.866,Female,Has relevent experience,Full time course,Graduate,STEM,5,,Pvt Ltd,never,40,1.0 +25407,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,30,0.0 +30894,city_90,0.698,Male,No relevent experience,Full time course,Masters,STEM,3,,,never,108,1.0 +27218,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,1,166,0.0 +26194,city_127,0.745,Other,Has relevent experience,,Phd,STEM,>20,,,never,256,0.0 +20971,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,4,30,0.0 +25826,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,4,54,0.0 +5467,city_67,0.855,Male,No relevent experience,Full time course,High School,,3,1000-4999,Pvt Ltd,1,52,0.0 +25594,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,Pvt Ltd,never,80,0.0 +16827,city_73,0.754,Male,No relevent experience,no_enrollment,High School,,4,<10,Early Stage Startup,4,94,1.0 +32109,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,NGO,4,36,0.0 +7371,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,14,1000-4999,Pvt Ltd,1,15,0.0 +7920,city_84,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,2,96,1.0 +6223,city_160,0.92,,Has relevent experience,Full time course,Graduate,STEM,8,100-500,Pvt Ltd,,8,0.0 +3810,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,152,0.0 +21867,city_179,0.512,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,1,68,0.0 +19369,city_1,0.847,Male,Has relevent experience,Full time course,Masters,STEM,11,,,>4,13,0.0 +28094,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,1,50,1.0 +19511,city_10,0.895,Male,Has relevent experience,Part time course,Graduate,STEM,10,<10,Pvt Ltd,1,72,0.0 +5117,city_160,0.92,Male,No relevent experience,Part time course,Graduate,STEM,5,,Pvt Ltd,never,13,0.0 +27852,city_72,0.795,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,2,21,0.0 +6840,city_116,0.743,Male,Has relevent experience,Full time course,Graduate,STEM,8,,Pvt Ltd,1,145,0.0 +24907,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,4,66,0.0 +14061,city_103,0.92,Male,No relevent experience,Full time course,High School,,8,,,1,79,0.0 +17121,city_73,0.754,Male,No relevent experience,Full time course,High School,,11,50-99,Public Sector,>4,40,0.0 +15706,city_117,0.698,,No relevent experience,Part time course,Graduate,STEM,4,1000-4999,Pvt Ltd,2,136,0.0 +14196,city_136,0.897,Male,Has relevent experience,Part time course,Graduate,STEM,6,10000+,Public Sector,4,25,0.0 +13319,city_21,0.624,,No relevent experience,Full time course,High School,,<1,,,never,50,1.0 +30368,city_128,0.527,Male,Has relevent experience,Full time course,High School,,5,,,never,3,0.0 +20311,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,42,0.0 +6148,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,3,10000+,Pvt Ltd,1,78,1.0 +5241,city_162,0.767,,No relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,never,4,0.0 +10998,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10/49,Funded Startup,2,146,0.0 +25412,city_103,0.92,Male,No relevent experience,Full time course,High School,,6,,,1,196,0.0 +14805,city_16,0.91,,No relevent experience,no_enrollment,Graduate,STEM,2,,,never,50,1.0 +30623,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,>4,84,0.0 +5347,city_127,0.745,,No relevent experience,Full time course,Graduate,STEM,6,,Pvt Ltd,never,50,0.0 +21026,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Other,1,,,1,7,0.0 +29466,city_103,0.92,,No relevent experience,no_enrollment,High School,,2,,,never,37,0.0 +32723,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,4,50-99,Pvt Ltd,1,3,0.0 +19851,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,,4,67,0.0 +5024,city_116,0.743,Male,No relevent experience,,Masters,STEM,2,,,1,44,0.0 +15631,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,Other,<1,,,2,50,1.0 +1147,city_103,0.92,Other,No relevent experience,Full time course,Graduate,STEM,11,5000-9999,Pvt Ltd,1,16,0.0 +10415,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,,1,56,0.0 +24593,city_67,0.855,,Has relevent experience,Part time course,Graduate,STEM,6,1000-4999,Pvt Ltd,never,39,0.0 +6370,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,1,50-99,Funded Startup,1,117,0.0 +25935,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Early Stage Startup,2,57,1.0 +6532,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,8,500-999,Pvt Ltd,never,44,0.0 +5398,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,50,1.0 +12788,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,7,1000-4999,Pvt Ltd,>4,6,0.0 +280,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,2,34,1.0 +4643,city_21,0.624,,No relevent experience,no_enrollment,Primary School,,<1,,Pvt Ltd,never,150,1.0 +2328,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,1000-4999,Pvt Ltd,1,114,0.0 +23615,city_50,0.8959999999999999,Male,No relevent experience,Part time course,High School,,6,,,1,43,0.0 +4611,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,never,33,0.0 +6780,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,3,77,1.0 +2363,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,302,1.0 +6810,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,2,6,1.0 +27328,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,2,10000+,Pvt Ltd,1,55,0.0 +24750,city_102,0.804,,Has relevent experience,no_enrollment,Primary School,,>20,10000+,,1,55,0.0 +14486,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Early Stage Startup,1,294,0.0 +597,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,,1,39,0.0 +19879,city_114,0.9259999999999999,,Has relevent experience,Part time course,Graduate,STEM,4,10000+,,1,272,0.0 +15894,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Early Stage Startup,1,57,1.0 +30806,city_11,0.55,Male,Has relevent experience,Part time course,Graduate,STEM,7,,,2,310,0.0 +28407,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,9,,,never,92,1.0 +31124,city_77,0.83,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,19,0.0 +17344,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,>4,34,1.0 +158,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,Pvt Ltd,1,92,1.0 +2554,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,NGO,1,86,0.0 +30876,city_11,0.55,,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,,7,1.0 +24616,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,,1,4,0.0 +20560,city_162,0.767,,Has relevent experience,Full time course,Graduate,STEM,1,10/49,Pvt Ltd,never,149,0.0 +8021,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,2,45,1.0 +15632,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Funded Startup,1,58,0.0 +15087,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Funded Startup,1,57,0.0 +11951,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,10,,,1,50,0.0 +11747,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,88,0.0 +22586,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,Pvt Ltd,2,37,0.0 +12822,city_16,0.91,Male,Has relevent experience,Part time course,Phd,STEM,>20,1000-4999,Public Sector,>4,29,0.0 +28442,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,157,1.0 +27997,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,4,50-99,Funded Startup,1,162,0.0 +20252,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,<10,Pvt Ltd,1,28,0.0 +14130,city_138,0.836,Male,Has relevent experience,no_enrollment,High School,,10,50-99,Pvt Ltd,never,150,0.0 +4143,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,29,0.0 +16078,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,10000+,Other,>4,45,0.0 +8572,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Business Degree,2,50-99,Pvt Ltd,1,222,0.0 +17155,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,90,0.0 +3466,city_114,0.9259999999999999,,No relevent experience,,Graduate,STEM,<1,,,never,4,0.0 +25961,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,2,<10,Early Stage Startup,1,95,0.0 +10425,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,12,0.0 +4126,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,100-500,Pvt Ltd,>4,90,0.0 +28558,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,never,54,1.0 +29516,city_67,0.855,Female,No relevent experience,Full time course,High School,,3,,,never,14,0.0 +14461,city_155,0.556,Male,No relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,1,290,1.0 +30217,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,>4,6,0.0 +1506,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,176,0.0 +29943,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,7,,,1,70,0.0 +23005,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,15,500-999,Pvt Ltd,2,50,0.0 +4941,city_97,0.925,Male,No relevent experience,Full time course,Graduate,STEM,3,100-500,,never,21,0.0 +9355,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,11,,,1,156,1.0 +27147,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,4,18,0.0 +32863,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Other,>20,100-500,Funded Startup,3,23,0.0 +8725,city_82,0.693,Male,Has relevent experience,,Graduate,STEM,3,<10,Pvt Ltd,1,51,0.0 +11122,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,Graduate,Other,15,5000-9999,Pvt Ltd,1,17,0.0 +2264,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,2,108,0.0 +24046,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,22,0.0 +4661,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,2,66,0.0 +25044,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,10000+,Pvt Ltd,1,166,0.0 +7982,city_40,0.7759999999999999,,Has relevent experience,Part time course,Graduate,STEM,4,500-999,Pvt Ltd,1,44,0.0 +27734,city_73,0.754,Male,No relevent experience,no_enrollment,Graduate,STEM,6,,,never,134,1.0 +8294,city_83,0.9229999999999999,,No relevent experience,no_enrollment,Masters,Humanities,>20,,,>4,24,1.0 +29520,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,8,,,1,92,1.0 +3869,city_23,0.899,Male,Has relevent experience,no_enrollment,High School,,4,100-500,Pvt Ltd,2,111,0.0 +19217,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,38,0.0 +22339,city_74,0.579,Male,No relevent experience,Part time course,Graduate,STEM,3,,,never,47,1.0 +5335,city_90,0.698,Male,Has relevent experience,Part time course,High School,,12,,,4,31,0.0 +6979,city_65,0.802,,Has relevent experience,no_enrollment,High School,,11,,,1,85,0.0 +17646,city_73,0.754,,No relevent experience,no_enrollment,Graduate,STEM,1,,,1,120,1.0 +6542,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,17,1000-4999,NGO,1,13,0.0 +26970,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,14,<10,Pvt Ltd,2,77,0.0 +23369,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,>4,75,0.0 +5308,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,1,25,0.0 +26258,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,20,,,>4,20,1.0 +13558,city_67,0.855,,Has relevent experience,Full time course,Masters,STEM,10,10000+,Pvt Ltd,1,82,0.0 +19262,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Arts,4,10000+,Pvt Ltd,3,178,1.0 +10891,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,500-999,Pvt Ltd,>4,15,0.0 +26375,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,5,,,never,15,0.0 +20651,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,3,1000-4999,NGO,1,6,1.0 +20247,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,1,4,0.0 +6658,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Graduate,Business Degree,3,1000-4999,Pvt Ltd,1,51,0.0 +33307,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,4,45,0.0 +18691,city_149,0.6890000000000001,,Has relevent experience,no_enrollment,High School,,2,,,2,100,0.0 +5614,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,28,1.0 +20232,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,86,1.0 +10934,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Funded Startup,1,134,0.0 +6062,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,1,22,0.0 +12720,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,>20,1000-4999,Pvt Ltd,>4,200,1.0 +23912,city_67,0.855,Male,No relevent experience,no_enrollment,Masters,Other,<1,,,2,59,0.0 +8915,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,43,0.0 +12805,city_152,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10/49,Pvt Ltd,2,25,0.0 +28604,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Early Stage Startup,>4,39,0.0 +8303,city_13,0.8270000000000001,Female,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,Pvt Ltd,1,130,0.0 +29214,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Funded Startup,1,168,0.0 +24745,city_150,0.698,Female,Has relevent experience,Part time course,Graduate,STEM,<1,5000-9999,Public Sector,1,8,1.0 +16686,city_16,0.91,,Has relevent experience,Full time course,Graduate,STEM,14,10000+,Pvt Ltd,never,9,0.0 +14269,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,5,,,1,22,1.0 +3157,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,5,50-99,Pvt Ltd,1,198,0.0 +25032,city_54,0.856,,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,214,1.0 +2452,city_136,0.897,Female,No relevent experience,no_enrollment,Masters,STEM,6,500-999,Public Sector,4,72,0.0 +25009,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,40,0.0 +11172,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,138,0.0 +24640,city_73,0.754,Male,No relevent experience,Part time course,High School,,4,10000+,,1,328,0.0 +20417,city_102,0.804,Female,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,>4,26,0.0 +17616,city_103,0.92,,No relevent experience,no_enrollment,High School,,3,,,never,55,0.0 +7919,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,1,260,0.0 +15053,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,20,10/49,Pvt Ltd,1,334,0.0 +27274,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,96,1.0 +3626,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,3,1000-4999,,1,148,0.0 +12715,city_16,0.91,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,Public Sector,2,220,0.0 +7932,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,7,100-500,Pvt Ltd,2,17,0.0 +4444,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,2,102,0.0 +18599,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,4,10/49,Public Sector,4,40,1.0 +33213,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,37,0.0 +1120,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Funded Startup,1,65,0.0 +5558,city_152,0.698,,Has relevent experience,Full time course,Graduate,STEM,9,<10,Pvt Ltd,>4,9,0.0 +22471,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,7,100-500,Pvt Ltd,4,26,0.0 +15033,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,4,500-999,Public Sector,2,41,0.0 +8037,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,109,0.0 +27721,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,7,1000-4999,Pvt Ltd,2,34,1.0 +14653,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,16,,,1,18,0.0 +178,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,106,0.0 +22049,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,100-500,Pvt Ltd,>4,79,0.0 +17934,city_23,0.899,Male,No relevent experience,Full time course,Primary School,,3,,,2,58,0.0 +13081,city_46,0.762,Female,No relevent experience,Full time course,Graduate,STEM,3,,NGO,>4,122,1.0 +10122,city_162,0.767,,No relevent experience,Full time course,Graduate,STEM,3,,NGO,never,168,1.0 +11389,city_160,0.92,Male,No relevent experience,no_enrollment,Masters,Humanities,>20,50-99,Pvt Ltd,>4,118,0.0 +29169,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,1,56,0.0 +11944,city_70,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,2,72,0.0 +12798,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,14,50-99,Pvt Ltd,4,94,0.0 +2942,city_134,0.698,,Has relevent experience,no_enrollment,High School,,12,50-99,,1,48,1.0 +24532,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,>4,97,0.0 +14239,city_71,0.884,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,132,0.0 +13806,city_128,0.527,Male,No relevent experience,Full time course,High School,,4,,,1,14,1.0 +32999,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,3,10/49,Pvt Ltd,2,328,1.0 +30471,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,2,5000-9999,Pvt Ltd,1,170,0.0 +28339,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,STEM,12,5000-9999,Pvt Ltd,2,34,0.0 +5502,city_98,0.9490000000000001,Male,No relevent experience,no_enrollment,High School,,2,,Pvt Ltd,never,12,0.0 +32895,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,5000-9999,Pvt Ltd,2,66,0.0 +11881,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,>4,45,0.0 +26889,city_104,0.924,Male,No relevent experience,no_enrollment,Primary School,,<1,,,never,244,0.0 +747,city_160,0.92,Male,Has relevent experience,no_enrollment,High School,,10,50-99,Pvt Ltd,1,57,0.0 +4735,city_70,0.698,,No relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,1,170,0.0 +2955,city_67,0.855,Other,No relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,2,25,0.0 +25280,city_16,0.91,,No relevent experience,no_enrollment,Primary School,,3,,,never,141,0.0 +31290,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,19,<10,Early Stage Startup,1,18,0.0 +11996,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,36,0.0 +1799,city_102,0.804,Female,Has relevent experience,no_enrollment,Masters,STEM,14,<10,Pvt Ltd,>4,92,0.0 +18738,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,5000-9999,Pvt Ltd,>4,20,0.0 +21930,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,8,,,1,79,0.0 +26840,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Other,7,10000+,Pvt Ltd,2,18,0.0 +10786,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,18,5000-9999,Other,>4,52,0.0 +1207,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,13,100-500,Pvt Ltd,>4,118,0.0 +16707,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,17,0.0 +23750,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,64,0.0 +17890,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,,1,50,0.0 +18636,city_11,0.55,Male,Has relevent experience,no_enrollment,Masters,STEM,17,1000-4999,Public Sector,>4,107,0.0 +20704,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,,never,26,0.0 +14506,city_64,0.6659999999999999,,No relevent experience,Full time course,Graduate,STEM,5,,,1,38,1.0 +14386,city_21,0.624,Female,No relevent experience,Full time course,Graduate,STEM,4,,,never,102,1.0 +19041,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,22,0.0 +9870,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,,Public Sector,2,142,0.0 +6068,city_73,0.754,,Has relevent experience,Full time course,Graduate,STEM,4,50-99,,1,49,0.0 +8242,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,4,144,1.0 +15458,city_149,0.6890000000000001,,No relevent experience,Part time course,Primary School,,2,,,never,20,1.0 +4109,city_133,0.742,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,30,0.0 +5915,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,17,100-500,Pvt Ltd,>4,26,0.0 +28076,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,64,1.0 +8449,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,2,8,0.0 +9931,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,>20,1000-4999,Public Sector,>4,234,0.0 +21205,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,43,1.0 +18845,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Funded Startup,3,40,0.0 +6248,city_53,0.74,,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,>4,242,0.0 +598,city_33,0.44799999999999995,,Has relevent experience,Part time course,Masters,STEM,6,,,1,18,1.0 +21400,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,>4,28,0.0 +18984,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,1,8,0.0 +1380,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,,1,34,0.0 +28982,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,3,28,0.0 +18640,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,500-999,Pvt Ltd,4,12,1.0 +11428,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,15,,,1,322,0.0 +33336,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,3,,,1,43,0.0 +12084,city_28,0.9390000000000001,Male,No relevent experience,Full time course,High School,,2,10000+,,never,204,0.0 +8705,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Public Sector,3,52,1.0 +12044,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,12,,,>4,19,1.0 +12160,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,11,0.0 +5003,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,9,0.0 +19492,city_21,0.624,Female,No relevent experience,Full time course,Graduate,STEM,7,,,never,33,1.0 +22114,city_37,0.794,Male,Has relevent experience,Full time course,Graduate,STEM,14,,,1,100,0.0 +2711,city_57,0.866,Male,Has relevent experience,Full time course,Graduate,STEM,8,<10,Pvt Ltd,2,288,0.0 +717,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,>4,41,1.0 +25152,city_123,0.738,Male,Has relevent experience,Full time course,Graduate,STEM,12,,,4,91,1.0 +12464,city_67,0.855,,Has relevent experience,Full time course,Graduate,STEM,9,<10,Early Stage Startup,1,24,0.0 +10974,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,10,,,2,8,0.0 +22798,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,1,91,0.0 +4904,city_104,0.924,Male,No relevent experience,no_enrollment,High School,,>20,50-99,,1,15,0.0 +9194,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,123,0.0 +20896,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,1,84,0.0 +31288,city_84,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,15,0.0 +31731,city_100,0.887,Male,No relevent experience,Full time course,High School,,7,,,1,12,0.0 +17722,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,>4,57,0.0 +17142,city_160,0.92,Female,No relevent experience,Full time course,High School,,9,,,1,105,1.0 +9037,city_45,0.89,Male,Has relevent experience,Full time course,Graduate,STEM,6,50-99,Pvt Ltd,1,48,0.0 +21597,city_157,0.769,Male,Has relevent experience,no_enrollment,Masters,No Major,9,,,1,50,0.0 +14142,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,>4,7,0.0 +2202,city_24,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Pvt Ltd,>4,29,1.0 +716,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10/49,Pvt Ltd,>4,122,0.0 +19435,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Public Sector,,36,1.0 +14082,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,73,0.0 +14188,city_7,0.647,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,>4,110,0.0 +22111,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,130,0.0 +12686,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,1,58,0.0 +22344,city_21,0.624,Male,No relevent experience,Full time course,High School,,<1,,,never,61,1.0 +7039,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,79,0.0 +9036,city_21,0.624,Male,Has relevent experience,Full time course,Phd,STEM,4,10/49,NGO,2,17,0.0 +32184,city_136,0.897,Male,Has relevent experience,Part time course,Graduate,STEM,3,<10,Pvt Ltd,1,29,0.0 +8077,city_67,0.855,Male,Has relevent experience,no_enrollment,High School,,5,50-99,Pvt Ltd,3,57,0.0 +2121,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10000+,Pvt Ltd,1,42,0.0 +17261,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,8,1000-4999,Pvt Ltd,1,14,0.0 +9390,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,89,1.0 +30223,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,17,0.0 +26696,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Pvt Ltd,>4,23,0.0 +4308,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,10000+,Pvt Ltd,1,25,0.0 +2502,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,7,100-500,Pvt Ltd,1,154,0.0 +14359,city_74,0.579,,No relevent experience,Full time course,Graduate,STEM,4,<10,Public Sector,1,135,0.0 +25738,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,3,11,1.0 +28120,city_16,0.91,,Has relevent experience,no_enrollment,High School,,19,100-500,Pvt Ltd,2,20,0.0 +29818,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,1,,,never,48,1.0 +12955,city_103,0.92,,No relevent experience,no_enrollment,High School,,2,,,never,91,0.0 +30074,city_46,0.762,Male,No relevent experience,Full time course,High School,,8,,,1,36,0.0 +18763,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,1,46,1.0 +26851,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10000+,Pvt Ltd,2,36,0.0 +18467,city_40,0.7759999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,2,25,0.0 +28114,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Pvt Ltd,1,40,0.0 +13886,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,10/49,Early Stage Startup,1,30,0.0 +5844,city_91,0.691,Female,Has relevent experience,Full time course,Graduate,STEM,10,10/49,,1,64,0.0 +29850,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,2,15,1.0 +18399,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,1,96,0.0 +29679,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,5,<10,Pvt Ltd,1,76,0.0 +17381,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Funded Startup,1,39,0.0 +32405,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Other,2,,,1,72,0.0 +11931,city_103,0.92,,No relevent experience,Part time course,,,3,,,never,112,0.0 +25458,city_83,0.9229999999999999,Male,No relevent experience,Full time course,High School,,1,<10,Funded Startup,1,105,0.0 +28525,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,5000-9999,Pvt Ltd,>4,3,0.0 +15100,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,7,5000-9999,Public Sector,4,110,0.0 +21448,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,never,84,1.0 +929,city_138,0.836,Female,No relevent experience,no_enrollment,Masters,STEM,6,500-999,Funded Startup,1,22,0.0 +28154,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Public Sector,>4,17,0.0 +21412,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,never,42,0.0 +27505,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,2,100,0.0 +1225,city_10,0.895,Male,No relevent experience,no_enrollment,High School,,7,,,4,32,0.0 +29121,city_72,0.795,Male,Has relevent experience,no_enrollment,High School,,5,1000-4999,Pvt Ltd,1,49,0.0 +10751,city_118,0.722,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,324,0.0 +32884,city_19,0.682,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,1,21,1.0 +9576,city_145,0.555,,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,29,0.0 +4826,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,>4,25,0.0 +9133,city_67,0.855,Male,No relevent experience,Part time course,High School,,4,50-99,Pvt Ltd,2,96,0.0 +23649,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,13,0.0 +26485,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,6,,,1,34,0.0 +1728,city_16,0.91,Male,No relevent experience,Full time course,High School,,5,,,1,44,0.0 +3735,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,36,0.0 +30480,city_136,0.897,Other,No relevent experience,Part time course,Graduate,STEM,1,50-99,Funded Startup,1,45,1.0 +32291,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,4,50,0.0 +31821,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,21,0.0 +6477,city_99,0.915,,Has relevent experience,no_enrollment,Graduate,STEM,20,<10,Pvt Ltd,3,41,0.0 +4163,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,83,0.0 +10373,city_73,0.754,Male,No relevent experience,Full time course,High School,,4,,,4,43,1.0 +24602,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,NGO,1,17,0.0 +4058,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,32,1.0 +6828,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,9,50-99,Pvt Ltd,1,60,1.0 +30154,city_117,0.698,,No relevent experience,Full time course,High School,,1,,,1,67,0.0 +15519,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,15,0.0 +11714,city_100,0.887,,No relevent experience,Full time course,Graduate,STEM,6,,,never,42,1.0 +11303,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,20,1000-4999,Pvt Ltd,>4,54,0.0 +17594,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,4,50-99,Public Sector,1,36,0.0 +22633,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,6,,,1,22,0.0 +8973,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,4,,,never,25,1.0 +7907,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,,,Funded Startup,,27,0.0 +14467,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,50-99,,1,47,1.0 +12175,city_61,0.9129999999999999,Male,No relevent experience,Full time course,Graduate,STEM,1,,,never,30,1.0 +32361,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,,1,83,0.0 +20355,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,2,106,1.0 +2341,city_83,0.9229999999999999,Male,Has relevent experience,Part time course,High School,,1,50-99,Pvt Ltd,1,190,0.0 +4246,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Funded Startup,2,7,0.0 +13691,city_30,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,26,0.0 +26702,city_114,0.9259999999999999,Other,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Funded Startup,1,86,0.0 +16070,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,19,50-99,Pvt Ltd,>4,163,0.0 +4396,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,256,0.0 +3179,city_73,0.754,Female,Has relevent experience,Full time course,Masters,STEM,15,100-500,,2,32,0.0 +23361,city_23,0.899,Male,Has relevent experience,Part time course,Graduate,STEM,18,100-500,Pvt Ltd,>4,7,0.0 +659,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,178,1.0 +3570,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,,,14,500-999,Pvt Ltd,1,28,0.0 +13618,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,3,10/49,Pvt Ltd,1,198,0.0 +24326,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,24,0.0 +1720,city_115,0.789,Male,No relevent experience,Full time course,Graduate,STEM,1,100-500,NGO,1,35,0.0 +23611,city_78,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,74,1.0 +23811,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,Business Degree,11,,,1,17,1.0 +29177,city_114,0.9259999999999999,Other,No relevent experience,Part time course,High School,,2,10/49,Public Sector,2,13,0.0 +19148,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,1,41,0.0 +28918,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,<10,Pvt Ltd,2,88,0.0 +32284,city_16,0.91,Male,No relevent experience,Full time course,High School,,3,,,1,57,0.0 +18269,city_143,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,3,0.0 +9735,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,,1,12,0.0 +8482,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,<1,100-500,Pvt Ltd,1,22,0.0 +15896,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,3,52,0.0 +33136,city_103,0.92,Other,No relevent experience,Full time course,Graduate,STEM,3,,,3,15,1.0 +28038,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,2,18,0.0 +309,city_103,0.92,,No relevent experience,Full time course,Masters,STEM,5,,,3,26,1.0 +22959,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,102,1.0 +16737,city_116,0.743,Male,No relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,2,4,0.0 +23382,city_100,0.887,,No relevent experience,Full time course,Graduate,STEM,4,,,1,20,0.0 +16396,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,40,0.0 +3194,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,22,0.0 +24498,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,8,1.0 +32774,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,13,5000-9999,Pvt Ltd,1,98,0.0 +15437,city_76,0.698,,No relevent experience,Full time course,Graduate,STEM,7,,,2,54,1.0 +9829,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,<10,Pvt Ltd,never,154,0.0 +25757,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,1000-4999,Pvt Ltd,2,182,0.0 +30272,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,4,10000+,Public Sector,1,69,0.0 +32939,city_145,0.555,Male,Has relevent experience,no_enrollment,High School,,6,,,>4,85,0.0 +943,city_150,0.698,,Has relevent experience,no_enrollment,,,>20,,,1,83,1.0 +7049,city_16,0.91,Male,No relevent experience,Part time course,Graduate,STEM,7,50-99,Pvt Ltd,1,50,0.0 +22888,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Funded Startup,,12,0.0 +7945,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,,1,146,0.0 +13506,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,14,500-999,Funded Startup,4,18,0.0 +20145,city_142,0.727,,Has relevent experience,Full time course,Masters,STEM,7,50-99,Early Stage Startup,1,40,1.0 +11773,city_21,0.624,Male,No relevent experience,no_enrollment,Primary School,,<1,,,never,56,1.0 +1056,city_23,0.899,Male,Has relevent experience,no_enrollment,High School,,9,100-500,Funded Startup,1,134,0.0 +4423,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,18,5000-9999,Pvt Ltd,>4,109,0.0 +8531,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Pvt Ltd,1,28,0.0 +6476,city_1,0.847,Male,No relevent experience,Full time course,Graduate,STEM,11,,,3,194,0.0 +2381,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,2,89,0.0 +13024,city_45,0.89,Male,Has relevent experience,Full time course,High School,,8,50-99,Pvt Ltd,1,114,0.0 +32750,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,>4,134,0.0 +24111,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,3,0.0 +10323,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Funded Startup,2,40,0.0 +2674,city_134,0.698,Male,Has relevent experience,no_enrollment,Graduate,No Major,7,<10,Pvt Ltd,,47,0.0 +27280,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,500-999,Funded Startup,1,66,0.0 +2961,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Public Sector,2,102,0.0 +28325,city_84,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,1,96,0.0 +19524,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,,1,26,1.0 +20054,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,12,<10,Early Stage Startup,never,306,0.0 +6417,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,4,192,1.0 +14473,city_28,0.9390000000000001,Male,No relevent experience,Full time course,High School,,2,500-999,Pvt Ltd,1,54,0.0 +21767,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,4,92,1.0 +18525,city_90,0.698,Male,Has relevent experience,Full time course,,,9,,,>4,155,1.0 +31641,city_103,0.92,Female,No relevent experience,Full time course,Masters,STEM,>20,5000-9999,Public Sector,>4,4,0.0 +386,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,178,0.0 +3241,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Early Stage Startup,never,15,0.0 +4149,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,3,34,0.0 +13519,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,NGO,1,30,0.0 +10146,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,2,46,1.0 +431,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,never,166,0.0 +8692,city_28,0.9390000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,2,1000-4999,Pvt Ltd,1,37,0.0 +12863,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,>20,5000-9999,Other,4,108,1.0 +1012,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Masters,STEM,16,50-99,NGO,3,58,0.0 +16704,city_67,0.855,Female,No relevent experience,Full time course,Graduate,STEM,7,,,2,16,1.0 +24619,city_136,0.897,Male,No relevent experience,Full time course,High School,,7,,,never,60,0.0 +122,city_65,0.802,Male,No relevent experience,,High School,,3,,Pvt Ltd,never,102,0.0 +23256,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,>4,64,0.0 +1917,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,2,182,0.0 +2561,city_104,0.924,Female,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Funded Startup,3,75,0.0 +21665,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,18,0.0 +29409,city_160,0.92,,Has relevent experience,no_enrollment,High School,,>20,100-500,,1,8,0.0 +19989,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,2,,,,64,0.0 +23722,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,4,210,0.0 +7467,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,,,never,48,0.0 +11285,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,>4,10,0.0 +18054,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,2,11,0.0 +20214,city_103,0.92,Male,No relevent experience,Part time course,High School,,2,,,1,47,1.0 +9428,city_36,0.893,Male,No relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,2,47,0.0 +28708,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,1,68,0.0 +6622,city_165,0.903,,Has relevent experience,no_enrollment,Graduate,Business Degree,4,10/49,Funded Startup,1,80,0.0 +9777,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Funded Startup,2,74,0.0 +24229,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,STEM,11,1000-4999,Public Sector,1,13,0.0 +6920,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,5,,,never,81,0.0 +24232,city_50,0.8959999999999999,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,36,1.0 +9891,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,128,0.0 +31954,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,3,58,0.0 +7337,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,2,51,0.0 +8681,city_67,0.855,Male,Has relevent experience,Full time course,High School,,3,50-99,Pvt Ltd,never,104,0.0 +18190,city_162,0.767,,No relevent experience,Full time course,High School,,4,<10,Early Stage Startup,1,43,0.0 +4070,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,4,0.0 +12085,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,never,50,1.0 +10476,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,2,184,0.0 +17811,city_64,0.6659999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,14,10000+,Pvt Ltd,3,258,1.0 +18042,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,5,1000-4999,Pvt Ltd,2,18,0.0 +26920,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,4,<10,Pvt Ltd,2,21,0.0 +11877,city_73,0.754,Male,No relevent experience,Part time course,Masters,STEM,10,10000+,Public Sector,2,41,0.0 +25670,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,3,20,0.0 +12132,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,4,17,0.0 +32242,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,1,,,1,128,1.0 +23334,city_145,0.555,Male,Has relevent experience,no_enrollment,,,5,,,never,24,1.0 +1596,city_103,0.92,,No relevent experience,no_enrollment,Graduate,No Major,<1,50-99,Pvt Ltd,,180,0.0 +6493,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,68,0.0 +25788,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Other,>20,,,1,51,1.0 +16795,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,282,0.0 +1987,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,500-999,Pvt Ltd,1,22,0.0 +20013,city_16,0.91,Male,No relevent experience,no_enrollment,Primary School,,2,,,never,81,0.0 +10505,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,80,0.0 +23777,city_65,0.802,,No relevent experience,no_enrollment,High School,,4,,,,23,0.0 +19415,city_126,0.479,,Has relevent experience,no_enrollment,Phd,Humanities,>20,,,>4,79,1.0 +4165,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,Humanities,>20,1000-4999,Public Sector,2,83,0.0 +31214,city_59,0.775,Male,Has relevent experience,Part time course,Graduate,STEM,10,1000-4999,Pvt Ltd,>4,14,1.0 +11968,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Early Stage Startup,4,50,1.0 +32338,city_123,0.738,Male,No relevent experience,Full time course,Masters,Other,4,,Pvt Ltd,never,68,1.0 +16923,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,5,,Public Sector,1,112,1.0 +17852,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,12,50-99,Pvt Ltd,4,128,1.0 +24117,city_109,0.701,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10/49,Pvt Ltd,3,11,0.0 +31664,city_100,0.887,,No relevent experience,Full time course,High School,,9,,,2,67,0.0 +23052,city_16,0.91,Other,Has relevent experience,Part time course,Graduate,STEM,4,,,never,62,0.0 +31117,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,,,>4,268,0.0 +10851,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,26,1.0 +18953,city_103,0.92,Male,No relevent experience,Full time course,High School,,11,10/49,Public Sector,1,44,0.0 +4055,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,86,0.0 +21828,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,46,0.0 +11731,city_74,0.579,,No relevent experience,,Graduate,STEM,2,,,,178,1.0 +1672,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,49,0.0 +15710,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10/49,Pvt Ltd,1,15,0.0 +14524,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,,,3,0.0 +16228,city_55,0.7390000000000001,,No relevent experience,no_enrollment,High School,,3,,,never,29,0.0 +16448,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,8,1.0 +9369,city_100,0.887,Male,No relevent experience,Full time course,Graduate,STEM,9,,,1,44,0.0 +13629,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,1,27,1.0 +4434,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Early Stage Startup,,32,0.0 +20002,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,>4,23,0.0 +30749,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,2,0.0 +905,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,2,9,0.0 +11771,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,7,10000+,Pvt Ltd,3,87,1.0 +5552,city_89,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,2,500-999,Public Sector,2,13,0.0 +26133,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,76,0.0 +5369,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,15,,,1,18,1.0 +18259,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,Pvt Ltd,1,53,0.0 +4034,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,11,0.0 +30110,city_160,0.92,Male,Has relevent experience,Full time course,High School,,9,10000+,Pvt Ltd,2,45,0.0 +32526,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,2,5,0.0 +23937,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,5000-9999,Pvt Ltd,1,90,0.0 +313,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Pvt Ltd,2,4,0.0 +3714,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,3,10,0.0 +17798,city_23,0.899,Male,Has relevent experience,Part time course,Graduate,STEM,16,10000+,Pvt Ltd,1,82,0.0 +12583,city_100,0.887,Male,No relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,>4,26,0.0 +7086,city_16,0.91,Male,No relevent experience,no_enrollment,,,9,,,never,21,1.0 +19588,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,13,10000+,Pvt Ltd,1,107,1.0 +9042,city_26,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,11,<10,Pvt Ltd,2,29,1.0 +26881,city_57,0.866,Male,No relevent experience,no_enrollment,High School,,4,,,never,66,0.0 +27010,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,42,1.0 +12035,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,1,64,0.0 +29860,city_98,0.9490000000000001,,Has relevent experience,Part time course,High School,,5,<10,Early Stage Startup,1,61,0.0 +23922,city_36,0.893,,Has relevent experience,no_enrollment,Phd,Humanities,>20,10000+,Pvt Ltd,>4,11,0.0 +7648,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,3,222,1.0 +1673,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Other,9,,,never,83,1.0 +12431,city_73,0.754,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,19,1.0 +19178,city_90,0.698,Male,No relevent experience,Part time course,Graduate,STEM,18,10/49,Early Stage Startup,1,97,0.0 +15421,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,>4,36,1.0 +32305,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,,,1,69,0.0 +27431,city_128,0.527,Male,No relevent experience,Full time course,High School,,<1,100-500,NGO,2,57,1.0 +1342,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Public Sector,>4,166,0.0 +21363,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Pvt Ltd,>4,226,0.0 +3788,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Other,>4,46,0.0 +21130,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,never,42,0.0 +11177,city_24,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,7,,,1,70,0.0 +10546,city_70,0.698,Male,No relevent experience,Full time course,High School,,10,10/49,Early Stage Startup,1,102,1.0 +9063,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,5000-9999,Pvt Ltd,never,67,1.0 +30691,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,16,5000-9999,Pvt Ltd,never,194,0.0 +22743,city_107,0.518,Male,Has relevent experience,Part time course,Masters,STEM,<1,,,2,14,1.0 +1521,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,never,12,0.0 +4754,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,100,0.0 +24644,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,41,0.0 +9523,city_21,0.624,Female,Has relevent experience,Part time course,Graduate,STEM,4,,,1,56,0.0 +30423,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,1,151,0.0 +12795,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,5,50-99,Pvt Ltd,2,43,0.0 +23533,city_103,0.92,,No relevent experience,Full time course,High School,,2,500-999,Pvt Ltd,1,40,0.0 +15839,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,3,42,0.0 +4693,city_21,0.624,,No relevent experience,Part time course,Graduate,STEM,4,100-500,Pvt Ltd,never,70,1.0 +25858,city_101,0.5579999999999999,Male,Has relevent experience,Part time course,Masters,STEM,12,,,4,35,1.0 +9959,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,1,46,0.0 +24773,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,2,149,0.0 +14872,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,1,10,0.0 +25723,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,88,0.0 +10057,city_159,0.843,Male,Has relevent experience,Full time course,Masters,STEM,8,,,1,1,0.0 +19930,city_50,0.8959999999999999,,Has relevent experience,no_enrollment,High School,,6,<10,Funded Startup,2,8,0.0 +3206,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,2,23,0.0 +12588,city_11,0.55,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,72,1.0 +8035,city_93,0.865,Male,Has relevent experience,,High School,,5,50-99,Public Sector,3,50,0.0 +6115,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,116,0.0 +6705,city_21,0.624,,No relevent experience,no_enrollment,Primary School,,3,,,never,14,0.0 +17451,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,55,0.0 +58,city_21,0.624,Male,Has relevent experience,Full time course,High School,,3,,Pvt Ltd,never,53,1.0 +3402,city_21,0.624,Female,No relevent experience,Full time course,Graduate,STEM,5,10/49,Funded Startup,1,32,0.0 +6639,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,Pvt Ltd,1,94,0.0 +15544,city_21,0.624,,No relevent experience,Full time course,High School,,1,,,never,166,1.0 +28573,city_74,0.579,,Has relevent experience,,Graduate,STEM,6,50-99,Pvt Ltd,1,56,1.0 +12506,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,Business Degree,18,50-99,NGO,1,31,0.0 +12496,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,10/49,,,12,1.0 +7652,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,never,28,1.0 +28858,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,62,0.0 +19395,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,1,50-99,Pvt Ltd,1,126,0.0 +11192,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,3,165,1.0 +24767,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,79,0.0 +1819,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,NGO,>4,26,1.0 +13943,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,Humanities,7,100-500,NGO,1,14,0.0 +2865,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10/49,Pvt Ltd,1,144,0.0 +11805,city_104,0.924,Male,No relevent experience,no_enrollment,Masters,Arts,5,50-99,Pvt Ltd,2,116,0.0 +9815,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Funded Startup,4,14,1.0 +3533,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,7,<10,Funded Startup,1,46,0.0 +20305,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,,,never,29,0.0 +21497,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,never,11,1.0 +27628,city_75,0.9390000000000001,Male,No relevent experience,Part time course,High School,,3,,Public Sector,2,57,0.0 +28744,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Funded Startup,1,102,0.0 +9086,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,43,0.0 +14382,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,>4,25,0.0 +5671,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Early Stage Startup,2,38,0.0 +32972,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,180,0.0 +28875,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,2,,,1,13,1.0 +26666,city_16,0.91,Male,No relevent experience,Part time course,Graduate,STEM,6,10000+,Pvt Ltd,>4,24,0.0 +4888,city_67,0.855,Female,Has relevent experience,no_enrollment,Graduate,Other,3,100-500,Pvt Ltd,1,42,0.0 +7896,city_67,0.855,Female,Has relevent experience,no_enrollment,High School,,2,100-500,NGO,1,24,0.0 +3308,city_104,0.924,Female,Has relevent experience,no_enrollment,Masters,STEM,2,50-99,Pvt Ltd,1,60,0.0 +15037,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,Pvt Ltd,1,226,0.0 +18680,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,19,10/49,Pvt Ltd,>4,66,0.0 +15290,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,7,,,1,5,1.0 +28828,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,11,<10,Pvt Ltd,3,56,0.0 +27223,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,2,17,0.0 +26125,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Funded Startup,1,66,0.0 +21313,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,31,0.0 +19050,city_103,0.92,Male,No relevent experience,Part time course,Phd,STEM,3,1000-4999,Public Sector,2,14,0.0 +13005,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,4,28,0.0 +21760,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,STEM,6,<10,Pvt Ltd,1,19,0.0 +23827,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,,,3,222,1.0 +16248,city_103,0.92,Male,Has relevent experience,no_enrollment,Primary School,,8,50-99,,never,66,0.0 +15759,city_16,0.91,Female,Has relevent experience,Full time course,Graduate,Arts,12,100-500,Pvt Ltd,1,6,0.0 +16794,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,12,100-500,Pvt Ltd,1,46,0.0 +24747,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,62,0.0 +2755,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,6,0.0 +3993,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,80,0.0 +4419,city_65,0.802,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,48,1.0 +12608,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Graduate,STEM,5,100-500,Public Sector,2,28,0.0 +11732,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,11,<10,Pvt Ltd,1,133,0.0 +10510,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,11,500-999,Pvt Ltd,1,78,0.0 +28014,city_118,0.722,Male,Has relevent experience,Full time course,High School,,1,5000-9999,Public Sector,1,48,0.0 +7989,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Funded Startup,1,7,1.0 +16117,city_103,0.92,,No relevent experience,Full time course,Masters,STEM,7,<10,Early Stage Startup,1,80,0.0 +20717,city_131,0.68,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,2,45,0.0 +16739,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Early Stage Startup,4,19,1.0 +21829,city_102,0.804,Male,Has relevent experience,no_enrollment,High School,,>20,50-99,Funded Startup,1,110,0.0 +8034,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,57,0.0 +23648,city_103,0.92,Male,No relevent experience,no_enrollment,,,<1,,,never,21,0.0 +444,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,1,30,0.0 +29072,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,10,50-99,Pvt Ltd,1,58,0.0 +13070,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Other,>4,104,0.0 +33031,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,5,,,1,61,0.0 +28124,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,never,14,1.0 +17404,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,1,124,0.0 +9543,city_30,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,>4,17,0.0 +14882,city_173,0.878,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,500-999,Pvt Ltd,2,50,0.0 +3159,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Other,>4,48,1.0 +5581,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,500-999,Pvt Ltd,>4,56,0.0 +25631,city_128,0.527,Male,No relevent experience,no_enrollment,Graduate,STEM,2,50-99,Funded Startup,1,232,0.0 +18806,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,,150,0.0 +18382,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,1,31,0.0 +21251,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,88,1.0 +1529,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,18,0.0 +12844,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,>4,10,0.0 +22704,city_93,0.865,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,,1,39,0.0 +30638,city_16,0.91,Male,No relevent experience,no_enrollment,Primary School,,7,,Pvt Ltd,never,106,0.0 +2977,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,214,0.0 +14262,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,4,0.0 +20738,city_136,0.897,Male,Has relevent experience,Part time course,Graduate,STEM,7,100-500,Early Stage Startup,1,46,0.0 +29861,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,2,55,0.0 +13756,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,1,,,1,20,1.0 +2387,city_67,0.855,Male,Has relevent experience,,Graduate,STEM,14,50-99,Pvt Ltd,2,27,0.0 +10846,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,500-999,Pvt Ltd,1,76,0.0 +23394,city_73,0.754,Male,No relevent experience,Part time course,High School,,1,,,1,57,1.0 +15249,city_149,0.6890000000000001,Male,No relevent experience,Full time course,Graduate,Other,3,50-99,Pvt Ltd,1,34,0.0 +17820,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,11,10/49,Pvt Ltd,2,33,1.0 +32600,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Pvt Ltd,2,23,0.0 +10314,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,2,106,0.0 +15346,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,86,1.0 +9663,city_74,0.579,Female,Has relevent experience,no_enrollment,Graduate,STEM,1,10/49,Pvt Ltd,1,47,0.0 +22851,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,1,56,0.0 +18839,city_104,0.924,Male,Has relevent experience,no_enrollment,High School,,7,50-99,Pvt Ltd,>4,146,0.0 +25997,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,5,10000+,Pvt Ltd,1,72,0.0 +7799,city_80,0.847,,Has relevent experience,Full time course,,,5,10000+,Pvt Ltd,>4,35,0.0 +13017,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,1,30,0.0 +22750,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,3,50-99,Early Stage Startup,1,150,1.0 +22784,city_50,0.8959999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Public Sector,2,32,0.0 +18713,city_114,0.9259999999999999,,No relevent experience,Full time course,Masters,STEM,<1,50-99,Pvt Ltd,1,23,0.0 +15404,city_102,0.804,Male,Has relevent experience,Full time course,Masters,Humanities,1,50-99,,never,4,0.0 +17054,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,10000+,Pvt Ltd,>4,40,0.0 +22018,city_91,0.691,Male,Has relevent experience,Full time course,Graduate,STEM,6,,,1,60,1.0 +21836,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,13,0.0 +11417,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,<1,100-500,Pvt Ltd,>4,20,0.0 +22498,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,1,10,0.0 +6957,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,15,,,>4,60,0.0 +19258,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Funded Startup,1,5,0.0 +16321,city_21,0.624,,Has relevent experience,Full time course,Graduate,Other,3,500-999,Pvt Ltd,1,134,0.0 +12977,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,Humanities,3,1000-4999,Public Sector,1,148,0.0 +25189,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,19,10/49,Pvt Ltd,4,70,0.0 +10673,city_159,0.843,Female,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Pvt Ltd,4,44,1.0 +8144,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,9,10/49,Pvt Ltd,,51,0.0 +20517,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,Humanities,7,100-500,Pvt Ltd,3,37,0.0 +26823,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,32,1.0 +29855,city_91,0.691,Male,No relevent experience,no_enrollment,Graduate,STEM,11,,,4,4,0.0 +25271,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,21,0.0 +1721,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,1,80,1.0 +4421,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,11,<10,NGO,1,28,0.0 +16792,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,1,41,0.0 +3224,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Public Sector,3,158,0.0 +21931,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,84,0.0 +23278,city_90,0.698,Male,Has relevent experience,Full time course,Masters,STEM,14,<10,Pvt Ltd,4,28,0.0 +22553,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,1,135,1.0 +25467,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,4,56,0.0 +2543,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,12,0.0 +23890,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,2,112,0.0 +17151,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,2,87,0.0 +15335,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,,,>4,102,0.0 +22377,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,136,0.0 +14488,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,,1,34,0.0 +3618,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,5,,,1,90,0.0 +31495,city_165,0.903,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,38,0.0 +17330,city_90,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,15,,,1,19,1.0 +4820,city_16,0.91,Male,No relevent experience,Full time course,Phd,STEM,8,,,1,20,0.0 +11750,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Pvt Ltd,4,13,1.0 +8158,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,192,0.0 +23375,city_21,0.624,Male,No relevent experience,Full time course,High School,,4,,,never,78,1.0 +32148,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Arts,>20,1000-4999,Pvt Ltd,>4,51,0.0 +1557,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,31,0.0 +26384,city_83,0.9229999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,Pvt Ltd,1,54,0.0 +22811,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,,,4,56,0.0 +6164,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,No Major,>20,10000+,Pvt Ltd,3,112,0.0 +3289,city_105,0.794,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,37,0.0 +47,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,14,0.0 +20952,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,2,30,0.0 +12541,city_104,0.924,Other,Has relevent experience,no_enrollment,High School,,11,50-99,Pvt Ltd,1,54,0.0 +11147,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,4,100-500,Pvt Ltd,1,114,0.0 +22915,city_144,0.84,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,1,102,0.0 +28697,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,4,100-500,Pvt Ltd,1,33,0.0 +20892,city_90,0.698,,No relevent experience,Full time course,Graduate,STEM,1,,,never,10,0.0 +1278,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,11,,,>4,306,1.0 +22796,city_21,0.624,Male,No relevent experience,Full time course,High School,,4,,,never,64,1.0 +13521,city_152,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,,149,0.0 +31820,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,2,50-99,Early Stage Startup,1,10,1.0 +31985,city_114,0.9259999999999999,Other,Has relevent experience,Part time course,High School,,3,1000-4999,Pvt Ltd,never,34,0.0 +20138,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,never,55,0.0 +17913,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,NGO,1,62,0.0 +7929,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,STEM,6,10/49,Pvt Ltd,4,5,0.0 +22466,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,,1,334,0.0 +1903,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,17,10000+,Pvt Ltd,>4,158,0.0 +27528,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,3,8,0.0 +20439,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Funded Startup,2,17,0.0 +19512,city_67,0.855,Male,Has relevent experience,Part time course,High School,,16,10/49,Pvt Ltd,1,182,0.0 +8857,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Early Stage Startup,1,110,0.0 +8453,city_136,0.897,,No relevent experience,no_enrollment,Masters,STEM,18,100-500,Funded Startup,1,47,0.0 +7197,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,,1,22,0.0 +29534,city_27,0.848,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,57,0.0 +3740,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,1000-4999,Pvt Ltd,1,15,1.0 +1823,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,1,57,1.0 +72,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,1,10/49,Pvt Ltd,1,8,0.0 +2134,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,>4,29,0.0 +29320,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,147,0.0 +20022,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Arts,>20,50-99,Pvt Ltd,2,100,0.0 +16529,city_11,0.55,Female,No relevent experience,Full time course,Graduate,STEM,<1,,,2,63,1.0 +20584,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,53,0.0 +29838,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,6,100-500,,1,125,1.0 +1830,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,Pvt Ltd,never,58,1.0 +5158,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,13,0.0 +32842,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,16,10/49,Pvt Ltd,2,82,0.0 +22872,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,3,50-99,Pvt Ltd,1,56,0.0 +641,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,1,500-999,,1,154,0.0 +15003,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,11,1000-4999,Pvt Ltd,2,51,0.0 +16383,city_24,0.698,,Has relevent experience,no_enrollment,Masters,STEM,9,500-999,Pvt Ltd,>4,78,1.0 +22503,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,,,,72,0.0 +2839,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,STEM,16,5000-9999,Public Sector,2,8,0.0 +2948,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,2,52,0.0 +18743,city_69,0.856,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,1,58,0.0 +23264,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Public Sector,4,78,0.0 +2571,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,11,0.0 +7746,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,,2,20,0.0 +29170,city_103,0.92,Male,Has relevent experience,no_enrollment,,,16,1000-4999,Pvt Ltd,>4,22,0.0 +15260,city_73,0.754,Male,No relevent experience,no_enrollment,Primary School,,10,,,never,15,0.0 +30714,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,3,10000+,Pvt Ltd,1,64,0.0 +32332,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,,,>4,98,0.0 +3199,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Humanities,10,1000-4999,NGO,3,16,0.0 +4887,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,56,0.0 +10475,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,3,5000-9999,Pvt Ltd,1,114,0.0 +22059,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,1,43,0.0 +11979,city_157,0.769,Male,No relevent experience,no_enrollment,Graduate,STEM,7,,,2,104,1.0 +14007,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,NGO,1,17,1.0 +1156,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,never,25,0.0 +422,city_134,0.698,,No relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,>4,18,0.0 +29972,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,1,69,0.0 +20452,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Public Sector,4,10,0.0 +3860,city_23,0.899,Male,Has relevent experience,Part time course,Graduate,STEM,7,,,2,31,1.0 +12519,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,1000-4999,Pvt Ltd,1,44,0.0 +1801,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,65,0.0 +8017,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,1,26,0.0 +17889,city_21,0.624,,No relevent experience,Full time course,High School,,2,,,never,42,0.0 +16610,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,4,260,0.0 +28473,city_16,0.91,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,77,0.0 +18646,city_102,0.804,,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,155,0.0 +14954,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,,1,47,0.0 +26306,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,3,9,1.0 +4548,city_94,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,1,40,0.0 +29459,city_67,0.855,,Has relevent experience,no_enrollment,Masters,Other,5,1000-4999,Pvt Ltd,3,23,0.0 +10674,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,Arts,20,5000-9999,Pvt Ltd,1,26,0.0 +26793,city_16,0.91,,No relevent experience,no_enrollment,Graduate,STEM,2,50-99,,1,106,0.0 +25043,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,100-500,Pvt Ltd,4,95,0.0 +13746,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,4,10/49,Pvt Ltd,1,88,0.0 +29573,city_10,0.895,Male,No relevent experience,Full time course,Masters,Humanities,1,,,1,13,1.0 +6770,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,100-500,Pvt Ltd,2,20,0.0 +24592,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,19,10/49,Pvt Ltd,2,167,0.0 +28263,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,Pvt Ltd,1,147,1.0 +33018,city_176,0.764,Male,No relevent experience,Full time course,Graduate,STEM,2,10/49,Early Stage Startup,1,131,0.0 +14990,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,1,56,0.0 +27585,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,100-500,Pvt Ltd,1,112,0.0 +33183,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,62,0.0 +16878,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Pvt Ltd,1,90,0.0 +12429,city_114,0.9259999999999999,Female,No relevent experience,Full time course,Graduate,STEM,5,5000-9999,Public Sector,1,110,0.0 +13079,city_103,0.92,,No relevent experience,no_enrollment,Masters,Humanities,>20,10000+,Public Sector,4,154,0.0 +19433,city_21,0.624,Female,Has relevent experience,,Graduate,STEM,<1,500-999,,,79,1.0 +6497,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,13,0.0 +23378,city_21,0.624,Female,Has relevent experience,Full time course,Graduate,STEM,<1,50-99,Early Stage Startup,1,36,0.0 +14839,city_73,0.754,Male,No relevent experience,Part time course,Graduate,STEM,7,,Public Sector,1,9,1.0 +21752,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,92,0.0 +22411,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Public Sector,1,190,1.0 +18157,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,500-999,Pvt Ltd,2,15,0.0 +26409,city_78,0.579,Male,Has relevent experience,Full time course,High School,,3,,,1,244,1.0 +24450,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,No Major,14,1000-4999,Pvt Ltd,1,96,0.0 +27101,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,never,82,0.0 +1655,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,>4,22,0.0 +4534,city_21,0.624,Male,Has relevent experience,Full time course,High School,,2,,,never,32,1.0 +19740,city_90,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,18,0.0 +14390,city_74,0.579,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,80,0.0 +17635,city_103,0.92,Female,No relevent experience,no_enrollment,Phd,Humanities,7,,,2,43,1.0 +18564,city_33,0.44799999999999995,,No relevent experience,Full time course,Graduate,STEM,4,,Public Sector,4,32,1.0 +29462,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,5,<10,NGO,1,15,0.0 +15563,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,,,5,<10,Pvt Ltd,3,84,0.0 +29150,city_114,0.9259999999999999,Female,No relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,never,104,0.0 +25385,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,24,0.0 +26836,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,2,154,0.0 +512,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,1,3,0.0 +15114,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Pvt Ltd,1,21,0.0 +16384,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,9,<10,Pvt Ltd,2,14,0.0 +20875,city_160,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,,,2,11,0.0 +3378,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,,,>4,31,0.0 +17252,city_24,0.698,Male,No relevent experience,no_enrollment,High School,,6,,,never,24,0.0 +7593,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,5,,,never,25,0.0 +14221,city_150,0.698,Male,Has relevent experience,no_enrollment,Phd,STEM,18,100-500,Public Sector,1,22,0.0 +11309,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,3,84,0.0 +33286,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,2,500-999,Public Sector,1,75,1.0 +5618,city_11,0.55,Male,Has relevent experience,Full time course,Graduate,STEM,4,,,4,51,0.0 +21536,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,10,0.0 +23558,city_103,0.92,Male,No relevent experience,Full time course,High School,,2,,,1,25,1.0 +7418,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,94,1.0 +11370,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Arts,>20,10000+,Pvt Ltd,1,10,1.0 +32583,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,14,500-999,Pvt Ltd,1,23,0.0 +22592,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,NGO,1,48,0.0 +2143,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,3,77,1.0 +31299,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,,,2,36,0.0 +24872,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,21,1.0 +3870,city_117,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,6,<10,Pvt Ltd,1,59,0.0 +26994,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,126,0.0 +27532,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,4,,,never,29,0.0 +14013,city_103,0.92,,No relevent experience,Full time course,Masters,STEM,5,500-999,Public Sector,3,20,0.0 +9750,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Pvt Ltd,1,16,1.0 +19563,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,5,50-99,Pvt Ltd,1,11,0.0 +17216,city_65,0.802,Male,Has relevent experience,Full time course,Graduate,STEM,3,1000-4999,Pvt Ltd,1,92,0.0 +26538,city_162,0.767,,Has relevent experience,no_enrollment,Masters,STEM,<1,500-999,Pvt Ltd,1,89,0.0 +30473,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,1,48,1.0 +28516,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,3,100-500,NGO,2,34,1.0 +31638,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,44,0.0 +8845,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,14,0.0 +19698,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,6,10/49,Early Stage Startup,1,34,0.0 +1820,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,Pvt Ltd,>4,142,0.0 +15811,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,156,0.0 +24097,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,17,<10,Pvt Ltd,1,14,0.0 +7279,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,>4,89,1.0 +21086,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Public Sector,3,55,0.0 +3523,city_160,0.92,,No relevent experience,Full time course,High School,,7,,,2,12,0.0 +8088,city_75,0.9390000000000001,Female,No relevent experience,Part time course,Graduate,STEM,9,,,never,9,1.0 +384,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Other,9,1000-4999,Pvt Ltd,>4,102,0.0 +6483,city_18,0.8240000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Public Sector,1,24,0.0 +14367,city_128,0.527,,No relevent experience,no_enrollment,Graduate,STEM,4,,,3,66,0.0 +24052,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,3,100-500,Pvt Ltd,3,30,0.0 +6526,city_152,0.698,Male,No relevent experience,Full time course,High School,,6,,,never,33,0.0 +30115,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,5,100-500,Pvt Ltd,2,13,1.0 +29742,city_158,0.7659999999999999,,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Pvt Ltd,1,39,0.0 +6022,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,60,0.0 +3781,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,50,1.0 +12522,city_149,0.6890000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,,4,105,0.0 +23413,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,5,,,1,110,1.0 +7454,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,15,50-99,Pvt Ltd,>4,16,0.0 +22075,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,1,,,1,8,1.0 +28988,city_37,0.794,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,172,0.0 +19198,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,42,0.0 +32901,city_90,0.698,Male,Has relevent experience,Full time course,Masters,STEM,18,50-99,Pvt Ltd,>4,6,0.0 +27377,city_173,0.878,,No relevent experience,Part time course,Masters,STEM,>20,500-999,NGO,never,6,0.0 +14318,city_160,0.92,Female,No relevent experience,Full time course,High School,,2,,,2,19,1.0 +28771,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,Business Degree,1,100-500,Pvt Ltd,1,144,1.0 +10957,city_100,0.887,Female,No relevent experience,Full time course,Masters,STEM,2,,Public Sector,1,52,1.0 +27080,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,>4,104,0.0 +54,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,8,100-500,NGO,1,34,0.0 +27224,city_173,0.878,Other,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,2,9,0.0 +3956,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,100-500,Pvt Ltd,1,46,0.0 +13073,city_136,0.897,Male,No relevent experience,Part time course,Graduate,STEM,4,1000-4999,,1,37,0.0 +28134,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,18,500-999,Public Sector,1,20,0.0 +19329,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,15,,,>4,90,0.0 +23028,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,15,<10,Early Stage Startup,1,29,0.0 +9172,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,,,>20,50-99,Pvt Ltd,3,18,0.0 +28638,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,2,6,1.0 +20156,city_128,0.527,,Has relevent experience,no_enrollment,Graduate,STEM,9,,,>4,118,1.0 +18886,city_21,0.624,,No relevent experience,Full time course,High School,,2,,,never,126,0.0 +13390,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,10000+,Public Sector,,55,0.0 +20396,city_115,0.789,Female,Has relevent experience,Full time course,Phd,STEM,8,100-500,Pvt Ltd,>4,11,0.0 +21739,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,,,,9,1.0 +32493,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,18,1.0 +21274,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,145,1.0 +4340,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,4,68,0.0 +3654,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,High School,,9,,,1,51,0.0 +24627,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,2,82,1.0 +28894,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,Humanities,19,50-99,Pvt Ltd,1,128,0.0 +16513,city_103,0.92,Male,No relevent experience,,Graduate,STEM,10,,,never,10,1.0 +3645,city_173,0.878,,No relevent experience,Full time course,High School,,5,,,never,8,0.0 +12057,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,>4,107,0.0 +19287,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,,Funded Startup,1,55,1.0 +22431,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,NGO,>4,6,0.0 +22136,city_71,0.884,,No relevent experience,no_enrollment,Graduate,STEM,6,,,never,26,1.0 +17830,city_26,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,3,1000-4999,Pvt Ltd,1,42,0.0 +8581,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,No Major,7,,,4,24,1.0 +24479,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,never,142,0.0 +4598,city_41,0.8270000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,10,,,4,4,0.0 +29216,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,>4,61,0.0 +29755,city_21,0.624,Male,No relevent experience,Full time course,High School,,4,,,never,16,0.0 +31204,city_16,0.91,Male,No relevent experience,Part time course,Graduate,STEM,5,10/49,Pvt Ltd,1,30,1.0 +22764,city_30,0.698,,No relevent experience,no_enrollment,Graduate,STEM,2,100-500,Public Sector,1,73,1.0 +27260,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,1,95,1.0 +8925,city_98,0.9490000000000001,Other,Has relevent experience,no_enrollment,Graduate,STEM,11,,,2,15,1.0 +24035,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,9,,,never,10,0.0 +25563,city_75,0.9390000000000001,Other,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,69,0.0 +1044,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,42,0.0 +10514,city_21,0.624,,No relevent experience,no_enrollment,,,1,,,1,100,1.0 +4952,city_16,0.91,Male,No relevent experience,no_enrollment,Phd,Other,>20,,Public Sector,2,10,0.0 +32634,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,>4,61,0.0 +18900,city_16,0.91,Male,No relevent experience,Full time course,High School,,6,,,1,11,0.0 +2307,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,STEM,11,,,1,18,1.0 +11407,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Public Sector,2,42,1.0 +28679,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Arts,>20,,,1,36,1.0 +4347,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,3,,,1,109,0.0 +19640,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,55,0.0 +29519,city_67,0.855,,Has relevent experience,Part time course,High School,,9,,,1,77,0.0 +5426,city_45,0.89,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,35,1.0 +15583,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,9,500-999,Public Sector,1,32,0.0 +7604,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,1,100-500,NGO,1,81,0.0 +21994,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,8,50-99,Pvt Ltd,2,81,0.0 +24935,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,123,0.0 +9246,city_116,0.743,Male,Has relevent experience,Part time course,Graduate,STEM,5,50-99,,1,72,0.0 +10165,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Funded Startup,2,19,0.0 +10492,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,25,0.0 +19683,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,Arts,2,,,1,108,0.0 +10061,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,Pvt Ltd,>4,29,0.0 +30302,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,100-500,Pvt Ltd,4,163,0.0 +14854,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,Pvt Ltd,1,50,0.0 +13879,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,6,,,never,16,1.0 +32869,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Public Sector,>4,92,1.0 +15719,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,13,,,1,135,0.0 +30664,city_136,0.897,,No relevent experience,Part time course,Phd,STEM,5,10000+,Public Sector,2,7,1.0 +14234,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,19,100-500,NGO,1,14,0.0 +20271,city_99,0.915,,No relevent experience,Full time course,High School,,5,10/49,Pvt Ltd,1,72,0.0 +32174,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Pvt Ltd,1,70,0.0 +32213,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,50-99,Pvt Ltd,1,90,0.0 +13923,city_136,0.897,Male,Has relevent experience,no_enrollment,,,16,,Public Sector,3,166,1.0 +11096,city_102,0.804,,No relevent experience,no_enrollment,Primary School,,2,,,never,66,0.0 +26504,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,11,0.0 +16777,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,>4,47,0.0 +29627,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,,,2,87,0.0 +13098,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,,never,132,1.0 +9350,city_102,0.804,,No relevent experience,no_enrollment,Graduate,STEM,7,,,never,33,1.0 +32206,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,2,50-99,Pvt Ltd,2,43,0.0 +3017,city_104,0.924,Male,No relevent experience,Full time course,,,8,,,never,17,1.0 +13336,city_21,0.624,,No relevent experience,Full time course,Primary School,,2,,,,21,1.0 +19623,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,Other,13,50-99,Pvt Ltd,1,196,0.0 +12410,city_159,0.843,Other,No relevent experience,Full time course,High School,,1,,,never,6,0.0 +18964,city_77,0.83,Male,Has relevent experience,no_enrollment,High School,,6,,,2,56,0.0 +27251,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,7,0.0 +22919,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,<10,Early Stage Startup,4,10,0.0 +15183,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,3,36,0.0 +19142,city_100,0.887,Male,No relevent experience,no_enrollment,High School,,3,,,never,78,0.0 +12382,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,15,1000-4999,Public Sector,3,174,0.0 +17875,city_45,0.89,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,17,0.0 +26912,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,138,1.0 +25992,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Public Sector,>4,19,0.0 +18198,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,1,116,0.0 +7506,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,100-500,Pvt Ltd,>4,18,0.0 +8436,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Funded Startup,1,68,0.0 +21455,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,55,0.0 +28207,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,32,0.0 +21811,city_16,0.91,,Has relevent experience,Part time course,Masters,STEM,18,<10,Pvt Ltd,2,145,0.0 +17428,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,44,0.0 +19875,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,>4,88,1.0 +29930,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,58,0.0 +2704,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,4,67,0.0 +30234,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Arts,>20,500-999,Public Sector,>4,98,0.0 +5314,city_141,0.763,,No relevent experience,Full time course,Graduate,STEM,2,,,never,74,1.0 +10875,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,>4,88,0.0 +28781,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,70,0.0 +13196,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,31,0.0 +31427,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Funded Startup,3,174,0.0 +7037,city_41,0.8270000000000001,Male,Has relevent experience,Full time course,High School,,4,1000-4999,Pvt Ltd,1,64,0.0 +7368,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,1,39,1.0 +12099,city_76,0.698,Male,No relevent experience,Full time course,Masters,STEM,7,,,2,6,0.0 +6096,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,4,132,0.0 +30017,city_53,0.74,Male,Has relevent experience,,Graduate,STEM,2,,,2,78,1.0 +32080,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,2,46,0.0 +7867,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,50-99,,1,48,0.0 +26796,city_136,0.897,Male,Has relevent experience,no_enrollment,,,17,50-99,Early Stage Startup,3,58,0.0 +4694,city_98,0.9490000000000001,Male,No relevent experience,no_enrollment,High School,,1,,Pvt Ltd,never,32,0.0 +10563,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,3,100-500,Pvt Ltd,2,12,0.0 +1592,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,5000-9999,NGO,>4,48,0.0 +11162,city_45,0.89,Male,No relevent experience,no_enrollment,High School,,4,<10,Pvt Ltd,1,39,0.0 +18944,city_159,0.843,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,NGO,1,130,0.0 +19614,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Pvt Ltd,never,36,1.0 +1450,city_25,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,4,56,1.0 +11484,city_97,0.925,Male,Has relevent experience,no_enrollment,Primary School,,>20,,,2,111,0.0 +32592,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,100,0.0 +3417,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,1,45,1.0 +20574,city_79,0.698,,No relevent experience,no_enrollment,Masters,STEM,3,,,never,22,1.0 +11905,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,4,40,0.0 +31365,city_21,0.624,Male,Has relevent experience,no_enrollment,High School,,11,,,never,82,1.0 +31459,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,Humanities,4,100-500,Pvt Ltd,2,74,0.0 +32554,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,10/49,Public Sector,1,336,0.0 +10118,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,48,1.0 +17982,city_21,0.624,,No relevent experience,,,,16,,,never,40,1.0 +14838,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,1,133,0.0 +31089,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,7,,,2,21,1.0 +9873,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,4,180,0.0 +13798,city_71,0.884,,No relevent experience,Full time course,Graduate,STEM,5,,,1,147,0.0 +19196,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,2,10000+,Public Sector,1,38,0.0 +5389,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,High School,,1,10/49,Pvt Ltd,1,89,0.0 +28410,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,1,36,0.0 +31092,city_21,0.624,Female,No relevent experience,Full time course,High School,,5,,,never,111,1.0 +28739,city_16,0.91,Male,No relevent experience,Full time course,High School,,2,<10,Other,1,9,0.0 +8082,city_16,0.91,,Has relevent experience,no_enrollment,Masters,Other,,50-99,Pvt Ltd,2,40,0.0 +21286,city_21,0.624,Male,Has relevent experience,no_enrollment,High School,,12,,,2,135,0.0 +19373,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,2,50-99,NGO,1,35,0.0 +5791,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,1,30,0.0 +19179,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,23,0.0 +2030,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,1,26,0.0 +17691,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,13,0.0 +11652,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,>4,56,0.0 +15405,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,2,51,0.0 +11284,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,1,19,0.0 +30923,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,11,0.0 +811,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,9,1.0 +17959,city_173,0.878,Male,No relevent experience,Full time course,Masters,STEM,9,,,1,50,0.0 +21857,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,2,53,0.0 +1127,city_91,0.691,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,Pvt Ltd,never,8,1.0 +16063,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,3,192,0.0 +14971,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,,never,4,0.0 +29903,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,Pvt Ltd,2,51,0.0 +9077,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,7,100-500,Pvt Ltd,1,29,0.0 +11965,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,NGO,1,31,0.0 +12078,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,4,130,0.0 +31974,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,162,0.0 +4048,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,High School,,18,100-500,Pvt Ltd,1,13,0.0 +32874,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,>4,86,0.0 +13839,city_71,0.884,,No relevent experience,no_enrollment,Masters,STEM,1,,,1,45,1.0 +4303,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,43,0.0 +16721,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,16,,,never,13,0.0 +27828,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,2,30,0.0 +13474,city_21,0.624,Male,Has relevent experience,,Masters,STEM,14,1000-4999,Pvt Ltd,4,56,1.0 +20757,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,1,8,1.0 +20534,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Pvt Ltd,4,26,0.0 +24949,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,NGO,1,1,0.0 +13770,city_145,0.555,,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,25,0.0 +4275,city_71,0.884,Male,Has relevent experience,Full time course,Graduate,STEM,>20,10/49,Pvt Ltd,>4,218,0.0 +8195,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Funded Startup,1,84,0.0 +3537,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,Pvt Ltd,1,98,0.0 +14537,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,10/49,Early Stage Startup,1,32,0.0 +7316,city_65,0.802,Male,Has relevent experience,Full time course,Graduate,STEM,8,,,1,30,1.0 +2617,city_16,0.91,,No relevent experience,Full time course,Graduate,STEM,2,100-500,Pvt Ltd,1,28,0.0 +14145,city_162,0.767,Male,No relevent experience,no_enrollment,High School,,7,,,never,116,0.0 +11777,city_16,0.91,Female,No relevent experience,Full time course,Graduate,STEM,3,,,never,34,1.0 +10043,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,12,50-99,Pvt Ltd,>4,314,0.0 +11960,city_90,0.698,Male,No relevent experience,Part time course,Masters,STEM,7,,Pvt Ltd,1,24,1.0 +19633,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,5,100-500,,,28,1.0 +4341,city_101,0.5579999999999999,,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Public Sector,2,51,1.0 +20974,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,3,50-99,Funded Startup,2,24,0.0 +19375,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,10,,,1,34,1.0 +29471,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,19,,,>4,13,1.0 +18051,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,46,0.0 +14356,city_103,0.92,Female,Has relevent experience,no_enrollment,,,>20,,,>4,56,0.0 +32067,city_21,0.624,,No relevent experience,Part time course,Graduate,STEM,10,100-500,NGO,1,107,1.0 +11547,city_40,0.7759999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,1,15,0.0 +16071,city_128,0.527,Male,Has relevent experience,Part time course,Graduate,STEM,7,500-999,Pvt Ltd,1,20,1.0 +19912,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,Other,6,50-99,Funded Startup,1,134,0.0 +7757,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,3,,,1,198,0.0 +17784,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,1,204,0.0 +32872,city_53,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,102,0.0 +4733,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,>20,1000-4999,Pvt Ltd,4,96,0.0 +26879,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,12,,,3,150,1.0 +17640,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,19,5000-9999,Pvt Ltd,2,46,0.0 +20740,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,,2,64,1.0 +25588,city_165,0.903,Male,No relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Public Sector,>4,54,0.0 +12986,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,NGO,2,16,0.0 +2051,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,,41,1.0 +6646,city_136,0.897,Male,Has relevent experience,Part time course,Graduate,STEM,10,10000+,Pvt Ltd,1,26,0.0 +27157,city_10,0.895,Male,Has relevent experience,Full time course,High School,,7,,,1,36,0.0 +33172,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,7,,Pvt Ltd,2,65,0.0 +7460,city_141,0.763,,Has relevent experience,no_enrollment,Masters,STEM,8,<10,Pvt Ltd,1,56,0.0 +8830,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,>20,1000-4999,Pvt Ltd,1,30,0.0 +1877,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,45,0.0 +27315,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,NGO,1,68,0.0 +2874,city_41,0.8270000000000001,,Has relevent experience,Part time course,Masters,,18,10000+,Pvt Ltd,>4,49,1.0 +5287,city_107,0.518,,No relevent experience,Full time course,Masters,STEM,8,,Pvt Ltd,never,6,1.0 +28909,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,No Major,<1,100-500,Pvt Ltd,1,76,0.0 +14947,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,21,0.0 +3599,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,Public Sector,3,80,0.0 +7172,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Other,>20,,,>4,25,1.0 +17003,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,10000+,Pvt Ltd,>4,78,0.0 +10687,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,1,,,never,14,0.0 +6091,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,,,1,152,0.0 +786,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,94,1.0 +21180,city_99,0.915,Male,No relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Public Sector,never,28,0.0 +20458,city_36,0.893,,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Early Stage Startup,1,15,1.0 +21622,city_21,0.624,,Has relevent experience,,Graduate,STEM,3,100-500,Pvt Ltd,1,107,1.0 +31719,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,100-500,,2,100,0.0 +10838,city_93,0.865,Male,Has relevent experience,no_enrollment,Graduate,No Major,14,<10,Pvt Ltd,never,57,0.0 +18246,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,never,89,1.0 +11685,city_21,0.624,,No relevent experience,Full time course,High School,,2,,,1,40,0.0 +28480,city_71,0.884,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,56,0.0 +4031,city_67,0.855,Male,Has relevent experience,no_enrollment,High School,,18,50-99,Pvt Ltd,>4,66,0.0 +25120,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,never,12,0.0 +20149,city_103,0.92,,Has relevent experience,Full time course,Graduate,STEM,4,100-500,,,78,1.0 +3789,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,55,0.0 +27092,city_114,0.9259999999999999,Female,No relevent experience,Full time course,Graduate,STEM,10,1000-4999,Public Sector,4,28,0.0 +25299,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,64,0.0 +1659,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,4,,Pvt Ltd,never,32,0.0 +117,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,1,117,0.0 +1752,city_70,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Funded Startup,1,28,0.0 +726,city_98,0.9490000000000001,,Has relevent experience,no_enrollment,Masters,STEM,13,10/49,Pvt Ltd,4,35,0.0 +9653,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,66,0.0 +7326,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,8,1.0 +27197,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Humanities,>20,10000+,Pvt Ltd,>4,210,0.0 +25078,city_162,0.767,,Has relevent experience,Full time course,Graduate,STEM,10,1000-4999,Pvt Ltd,1,39,0.0 +11683,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,10,,Other,,12,0.0 +23586,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,37,0.0 +1958,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,4,114,1.0 +28104,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,11,50-99,Pvt Ltd,2,82,0.0 +1665,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,10/49,Early Stage Startup,1,110,0.0 +17649,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,28,0.0 +9220,city_36,0.893,Male,No relevent experience,no_enrollment,Graduate,Business Degree,19,1000-4999,Pvt Ltd,never,188,0.0 +6472,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,4,50-99,Pvt Ltd,1,109,1.0 +4140,city_93,0.865,Male,Has relevent experience,no_enrollment,High School,,>20,50-99,Pvt Ltd,never,156,0.0 +8870,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,,,never,96,0.0 +32903,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,>20,50-99,Public Sector,>4,15,0.0 +18548,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,<10,Early Stage Startup,never,98,0.0 +17569,city_162,0.767,Male,Has relevent experience,Full time course,Graduate,STEM,>20,,,4,38,0.0 +19255,city_48,0.493,Male,Has relevent experience,Full time course,Graduate,STEM,4,,,1,18,1.0 +23147,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,8,,,3,90,1.0 +26037,city_73,0.754,Female,Has relevent experience,Full time course,Graduate,STEM,6,,,1,25,1.0 +2920,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,1,153,0.0 +21551,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,1000-4999,Pvt Ltd,1,41,0.0 +1700,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,54,0.0 +17296,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,<1,10/49,Early Stage Startup,never,23,0.0 +31087,city_61,0.9129999999999999,Male,No relevent experience,Full time course,Graduate,STEM,6,10000+,Pvt Ltd,4,9,0.0 +16136,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,43,0.0 +7372,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,82,0.0 +16701,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,29,0.0 +30011,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,48,0.0 +3229,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,10,1.0 +5322,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,158,0.0 +28217,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,107,1.0 +14149,city_11,0.55,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,32,1.0 +1954,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,1,218,0.0 +4400,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,Pvt Ltd,2,43,0.0 +27803,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,NGO,1,40,0.0 +18765,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,10,100-500,Pvt Ltd,2,72,0.0 +28445,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,31,1.0 +4537,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,2,250,1.0 +17436,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,34,0.0 +29306,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,,2,14,0.0 +15512,city_21,0.624,,No relevent experience,no_enrollment,High School,,6,,,>4,17,1.0 +8678,city_134,0.698,,No relevent experience,Full time course,High School,,3,10000+,Public Sector,1,35,0.0 +16600,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,,>4,106,0.0 +17907,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,90,0.0 +15143,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Public Sector,1,18,0.0 +1277,city_28,0.9390000000000001,,No relevent experience,no_enrollment,High School,,4,,Pvt Ltd,never,43,0.0 +14135,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,,,,28,1.0 +26027,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Pvt Ltd,2,27,0.0 +20818,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,145,0.0 +484,city_40,0.7759999999999999,Male,No relevent experience,Full time course,High School,,3,,Pvt Ltd,never,22,0.0 +3108,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,4,43,0.0 +27020,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Arts,17,10000+,Pvt Ltd,>4,43,0.0 +13581,city_134,0.698,,Has relevent experience,no_enrollment,Masters,STEM,8,500-999,Pvt Ltd,3,52,0.0 +10849,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,167,0.0 +17273,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,3,18,0.0 +29602,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,9,50-99,Pvt Ltd,1,128,0.0 +26833,city_90,0.698,,No relevent experience,no_enrollment,Masters,STEM,1,10/49,Pvt Ltd,1,47,0.0 +21431,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,3,39,1.0 +14416,city_46,0.762,Male,Has relevent experience,Full time course,Graduate,STEM,<1,<10,Early Stage Startup,never,58,0.0 +27599,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,4,62,0.0 +6101,city_23,0.899,Male,Has relevent experience,Part time course,,,7,1000-4999,,1,42,0.0 +19886,city_162,0.767,,Has relevent experience,Full time course,Graduate,STEM,9,,,1,98,1.0 +31436,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,3,72,0.0 +28780,city_67,0.855,Male,No relevent experience,no_enrollment,Graduate,Humanities,20,,,1,17,0.0 +15186,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,never,218,0.0 +17242,city_128,0.527,,No relevent experience,no_enrollment,High School,,<1,,,never,55,0.0 +23093,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,Other,>20,,,>4,4,0.0 +33154,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,never,148,1.0 +2369,city_28,0.9390000000000001,Male,No relevent experience,Full time course,Masters,STEM,10,50-99,Public Sector,2,61,0.0 +27168,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,High School,,17,50-99,Funded Startup,1,71,0.0 +9658,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,19,1000-4999,Pvt Ltd,>4,122,0.0 +7992,city_143,0.74,Male,No relevent experience,no_enrollment,High School,,5,,,never,24,0.0 +3777,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,52,0.0 +27324,city_103,0.92,Female,Has relevent experience,,Graduate,STEM,13,,,4,52,1.0 +11318,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,1,8,0.0 +25692,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,>4,6,0.0 +20703,city_102,0.804,Male,Has relevent experience,no_enrollment,Phd,STEM,9,1000-4999,Pvt Ltd,1,80,0.0 +27452,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,10,,,1,21,1.0 +11034,city_152,0.698,Male,No relevent experience,no_enrollment,High School,,1,,,never,73,0.0 +17828,city_90,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,4,,,1,55,1.0 +29651,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,5,<10,Pvt Ltd,1,7,0.0 +3955,city_16,0.91,Male,No relevent experience,Full time course,High School,,4,,Pvt Ltd,never,108,0.0 +31029,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,1,34,0.0 +9817,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,never,21,0.0 +15163,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,2,28,0.0 +11718,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,6,<10,Pvt Ltd,3,72,0.0 +15526,city_116,0.743,Male,No relevent experience,no_enrollment,Graduate,STEM,15,500-999,,never,74,0.0 +20015,city_138,0.836,Male,Has relevent experience,Part time course,Graduate,STEM,13,50-99,Public Sector,2,21,0.0 +24203,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,>4,6,1.0 +26567,city_13,0.8270000000000001,Male,Has relevent experience,Part time course,High School,,9,100-500,Pvt Ltd,1,31,0.0 +18435,city_101,0.5579999999999999,Male,No relevent experience,no_enrollment,High School,,3,,,1,80,1.0 +190,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,3,,,1,38,0.0 +14006,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,56,1.0 +26156,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,3,102,0.0 +7607,city_101,0.5579999999999999,Male,Has relevent experience,Part time course,High School,,6,10/49,Pvt Ltd,1,50,1.0 +13849,city_46,0.762,,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,78,0.0 +1773,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Funded Startup,,35,0.0 +30897,city_90,0.698,,Has relevent experience,Part time course,Graduate,STEM,<1,50-99,NGO,4,104,0.0 +1475,city_21,0.624,,No relevent experience,Full time course,High School,,6,,Pvt Ltd,never,184,0.0 +6750,city_23,0.899,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Early Stage Startup,2,120,0.0 +17577,city_65,0.802,Male,Has relevent experience,,Graduate,STEM,8,50-99,Pvt Ltd,1,59,0.0 +28062,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,NGO,>4,20,0.0 +12187,city_114,0.9259999999999999,,Has relevent experience,Part time course,Masters,STEM,18,,,1,47,0.0 +23137,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Public Sector,2,24,1.0 +30747,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,16,,,1,32,1.0 +19345,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,11,,,2,7,1.0 +31829,city_100,0.887,Male,No relevent experience,no_enrollment,Masters,STEM,4,10/49,Pvt Ltd,1,77,0.0 +23531,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Early Stage Startup,1,190,0.0 +15690,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,62,0.0 +19362,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,7,,,1,26,0.0 +30822,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,64,0.0 +16776,city_16,0.91,,No relevent experience,,,,<1,,,2,111,0.0 +3387,city_46,0.762,Male,Has relevent experience,Full time course,High School,,2,<10,Funded Startup,2,36,0.0 +20908,city_61,0.9129999999999999,,No relevent experience,Full time course,Masters,STEM,13,5000-9999,Public Sector,2,6,0.0 +26091,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,184,0.0 +5948,city_74,0.579,,No relevent experience,Full time course,Graduate,STEM,>20,,,never,214,0.0 +32755,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,>4,59,1.0 +29229,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,7,,,1,61,1.0 +231,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,5000-9999,,1,52,1.0 +28357,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,4,,,never,28,0.0 +17799,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,,10000+,,,64,0.0 +14338,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,,,3,110,0.0 +26428,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,10/49,Early Stage Startup,never,20,0.0 +23479,city_89,0.925,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,132,1.0 +2414,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,never,45,1.0 +8340,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Funded Startup,1,91,0.0 +26814,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,>4,86,0.0 +13881,city_59,0.775,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,1,37,0.0 +18943,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,4,64,0.0 +4276,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Arts,2,10000+,Pvt Ltd,1,92,0.0 +6082,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,,1,52,0.0 +10876,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,never,67,0.0 +13389,city_138,0.836,,Has relevent experience,no_enrollment,Masters,No Major,7,50-99,Pvt Ltd,2,17,0.0 +30990,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,2,104,1.0 +16069,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,6,5000-9999,Public Sector,1,38,0.0 +13634,city_91,0.691,Male,No relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,2,86,0.0 +30144,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,158,0.0 +6423,city_150,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,42,0.0 +8518,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,2,,,1,39,0.0 +19429,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,never,6,0.0 +19250,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,7,500-999,Pvt Ltd,1,50,0.0 +27408,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,2,43,0.0 +5305,city_67,0.855,Male,No relevent experience,Part time course,Graduate,Humanities,14,,,>4,104,1.0 +5554,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,2,22,0.0 +22505,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,2,47,1.0 +14822,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,2,1000-4999,Pvt Ltd,never,35,0.0 +8060,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,1,50-99,,1,112,0.0 +3600,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,2,39,0.0 +458,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,>4,214,0.0 +24047,city_103,0.92,,No relevent experience,Full time course,High School,,3,50-99,Funded Startup,,314,0.0 +2105,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Pvt Ltd,2,101,1.0 +13990,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,3,100-500,Funded Startup,2,125,0.0 +25131,city_21,0.624,,Has relevent experience,,,,15,,,2,68,0.0 +10684,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Pvt Ltd,,48,0.0 +23916,city_98,0.9490000000000001,,No relevent experience,no_enrollment,Graduate,STEM,10,,,1,268,1.0 +30649,city_70,0.698,Female,Has relevent experience,Full time course,Graduate,STEM,9,50-99,Pvt Ltd,1,95,1.0 +17660,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,STEM,16,<10,Pvt Ltd,never,132,0.0 +22475,city_138,0.836,Male,Has relevent experience,no_enrollment,Primary School,,11,,,2,13,0.0 +30312,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,,1,12,1.0 +3107,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Business Degree,2,100-500,Pvt Ltd,2,33,0.0 +13133,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,>4,90,0.0 +28527,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,1,46,0.0 +3235,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,9,,Pvt Ltd,never,68,0.0 +32188,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,14,50-99,Pvt Ltd,2,107,0.0 +8135,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,,1,57,0.0 +8008,city_27,0.848,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,54,1.0 +18651,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,,,16,0.0 +26951,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,Masters,Other,9,,,1,38,0.0 +27759,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,56,0.0 +24717,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,50-99,Pvt Ltd,1,94,0.0 +23242,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,20,,,>4,152,1.0 +9341,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,22,0.0 +22703,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,13,500-999,,never,56,0.0 +24266,city_90,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,NGO,1,36,0.0 +13862,city_16,0.91,,Has relevent experience,Full time course,Graduate,STEM,13,50-99,Pvt Ltd,2,53,0.0 +21326,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,>4,110,1.0 +69,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,2,50-99,Pvt Ltd,1,23,1.0 +26684,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,152,0.0 +13560,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,1,80,0.0 +11197,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,41,0.0 +29881,city_109,0.701,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,46,1.0 +31091,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10000+,Pvt Ltd,1,101,0.0 +22790,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,38,0.0 +7277,city_90,0.698,,Has relevent experience,no_enrollment,High School,,5,50-99,Pvt Ltd,1,17,0.0 +26267,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,8,100-500,Funded Startup,1,112,0.0 +2779,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,4,53,0.0 +1555,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,10,,,1,39,0.0 +18311,city_21,0.624,Male,No relevent experience,Full time course,Masters,No Major,3,,,never,70,1.0 +24314,city_152,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,23,0.0 +9767,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,5000-9999,Pvt Ltd,1,106,0.0 +23571,city_97,0.925,,No relevent experience,Full time course,Graduate,STEM,7,,,never,55,0.0 +17337,city_11,0.55,,No relevent experience,,Primary School,,1,,,never,48,0.0 +5617,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,78,0.0 +15001,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,2,11,0.0 +29650,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,3,36,0.0 +7472,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,10,500-999,Public Sector,1,178,0.0 +6070,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Early Stage Startup,1,89,0.0 +8065,city_16,0.91,,No relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,1,28,0.0 +13638,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,Pvt Ltd,3,60,0.0 +14407,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,10,,,1,101,1.0 +13614,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,2,100-500,Pvt Ltd,2,160,0.0 +33083,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,never,27,0.0 +14483,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,2,31,0.0 +1048,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Public Sector,2,48,0.0 +27323,city_162,0.767,Male,Has relevent experience,Part time course,Graduate,STEM,5,,Pvt Ltd,1,43,0.0 +84,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,>4,92,0.0 +18420,city_53,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,111,1.0 +6976,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,84,0.0 +29688,city_160,0.92,Male,No relevent experience,Part time course,Graduate,STEM,3,50-99,Pvt Ltd,>4,23,0.0 +3997,city_16,0.91,Male,No relevent experience,no_enrollment,Primary School,,5,,Pvt Ltd,never,11,0.0 +13372,city_145,0.555,,Has relevent experience,no_enrollment,Graduate,STEM,2,500-999,NGO,1,17,1.0 +886,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,>4,32,1.0 +3244,city_82,0.693,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,4,116,0.0 +12131,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,3,10,0.0 +29133,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,2,55,0.0 +16397,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Funded Startup,1,6,0.0 +7219,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,1,112,0.0 +30106,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,5000-9999,Pvt Ltd,>4,12,0.0 +12652,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,never,33,0.0 +4512,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,10,<10,Pvt Ltd,>4,19,0.0 +29302,city_73,0.754,Male,No relevent experience,no_enrollment,Masters,STEM,10,,,1,157,0.0 +24287,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,8,<10,Early Stage Startup,never,31,1.0 +11262,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,19,100-500,Pvt Ltd,2,42,0.0 +21320,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,9,0.0 +10225,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,3,180,0.0 +8716,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10000+,Pvt Ltd,1,77,0.0 +2893,city_89,0.925,Male,No relevent experience,Full time course,High School,,7,,Pvt Ltd,never,47,0.0 +4382,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,180,1.0 +26546,city_45,0.89,Male,Has relevent experience,,Graduate,STEM,>20,1000-4999,Pvt Ltd,3,34,0.0 +31332,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,31,0.0 +5716,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Funded Startup,1,167,0.0 +25705,city_116,0.743,Male,No relevent experience,no_enrollment,,,2,,,never,118,0.0 +21764,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,STEM,12,,,,51,1.0 +23417,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Pvt Ltd,2,23,0.0 +3494,city_136,0.897,,Has relevent experience,no_enrollment,Graduate,Arts,10,50-99,Pvt Ltd,1,47,0.0 +27121,city_71,0.884,,No relevent experience,no_enrollment,Graduate,Business Degree,16,,,>4,80,0.0 +29815,city_109,0.701,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,Pvt Ltd,2,65,1.0 +33163,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,never,15,0.0 +5744,city_67,0.855,Male,Has relevent experience,Part time course,High School,,10,1000-4999,Public Sector,1,43,0.0 +16519,city_90,0.698,,No relevent experience,Part time course,Graduate,STEM,4,,,1,39,0.0 +24932,city_165,0.903,Male,No relevent experience,Full time course,Masters,Humanities,<1,,,never,112,1.0 +28676,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,1,126,0.0 +15070,city_1,0.847,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,152,0.0 +12360,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,7,0.0 +29472,city_27,0.848,,No relevent experience,no_enrollment,Masters,STEM,19,50-99,Pvt Ltd,1,105,0.0 +20676,city_16,0.91,Male,Has relevent experience,Part time course,High School,,14,,,1,15,1.0 +32854,city_10,0.895,,No relevent experience,Full time course,High School,,8,,,,110,0.0 +27994,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Funded Startup,1,64,0.0 +14510,city_36,0.893,,Has relevent experience,Full time course,Masters,STEM,>20,1000-4999,,>4,50,0.0 +9418,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Funded Startup,1,27,0.0 +13857,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Early Stage Startup,2,9,0.0 +2766,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,107,0.0 +15678,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,8,10/49,Pvt Ltd,2,58,1.0 +15424,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,13,,,never,63,1.0 +19143,city_138,0.836,Male,No relevent experience,Full time course,Graduate,STEM,8,50-99,Pvt Ltd,1,57,0.0 +15938,city_16,0.91,,Has relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,2,84,0.0 +25046,city_21,0.624,,Has relevent experience,,Graduate,STEM,<1,10/49,,,8,1.0 +3146,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,17,50-99,Pvt Ltd,4,26,0.0 +3919,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,8,,,1,9,1.0 +27583,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,4,10000+,Pvt Ltd,4,46,1.0 +7833,city_26,0.698,Male,Has relevent experience,no_enrollment,Masters,Humanities,13,50-99,Pvt Ltd,1,50,0.0 +15028,city_74,0.579,,No relevent experience,no_enrollment,Graduate,STEM,3,50-99,Funded Startup,never,97,0.0 +31227,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,298,1.0 +8688,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,44,0.0 +15740,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,>4,332,1.0 +2513,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,2,12,0.0 +1181,city_75,0.9390000000000001,,No relevent experience,Full time course,Masters,STEM,18,10000+,Pvt Ltd,4,12,0.0 +18436,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Other,10,10/49,Pvt Ltd,1,130,0.0 +14400,city_70,0.698,,Has relevent experience,,,,3,,,1,17,1.0 +20864,city_90,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,14,,,1,45,0.0 +11142,city_138,0.836,Male,Has relevent experience,Full time course,Graduate,STEM,2,100-500,Pvt Ltd,1,104,0.0 +24115,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,149,0.0 +30309,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Funded Startup,1,103,0.0 +27271,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,16,10/49,Pvt Ltd,1,80,0.0 +31792,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,,,>4,206,1.0 +14513,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,2,100-500,Public Sector,1,29,0.0 +942,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,1,84,0.0 +18749,city_55,0.7390000000000001,,No relevent experience,no_enrollment,Graduate,STEM,9,,,,2,1.0 +22965,city_139,0.48700000000000004,Male,Has relevent experience,no_enrollment,Masters,STEM,19,,,1,52,1.0 +25360,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Funded Startup,2,10,0.0 +19522,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,13,,Pvt Ltd,4,8,0.0 +23549,city_103,0.92,Male,No relevent experience,Part time course,High School,,<1,10000+,Pvt Ltd,1,56,0.0 +11224,city_24,0.698,Male,No relevent experience,,Graduate,STEM,3,,,never,3,0.0 +18144,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Masters,No Major,15,1000-4999,Pvt Ltd,>4,44,0.0 +7318,city_26,0.698,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,22,0.0 +15855,city_102,0.804,,No relevent experience,Part time course,Graduate,STEM,1,,,1,198,0.0 +509,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,2,8,0.0 +2405,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,Other,6,1000-4999,Pvt Ltd,1,4,0.0 +491,city_104,0.924,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,33,0.0 +27882,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,STEM,3,10/49,Funded Startup,1,14,0.0 +25839,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Other,10,50-99,Pvt Ltd,1,47,0.0 +25791,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,79,0.0 +25156,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,Arts,9,,,never,132,0.0 +9129,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,Funded Startup,1,82,0.0 +11098,city_53,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,170,0.0 +19317,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,>4,91,0.0 +2,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,15,10000+,NGO,3,128,1.0 +13243,city_73,0.754,Male,No relevent experience,Part time course,High School,,4,,,1,298,0.0 +33230,city_24,0.698,Male,No relevent experience,no_enrollment,High School,,4,,,never,37,0.0 +3412,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Public Sector,4,105,0.0 +28174,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,15,500-999,Public Sector,1,109,0.0 +20658,city_16,0.91,,Has relevent experience,no_enrollment,High School,,15,<10,Pvt Ltd,>4,38,0.0 +10918,city_103,0.92,Female,Has relevent experience,no_enrollment,Phd,Arts,15,1000-4999,,1,48,0.0 +20699,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,5000-9999,Pvt Ltd,3,48,0.0 +5695,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,1,152,0.0 +20346,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Arts,1,<10,Early Stage Startup,1,78,0.0 +22949,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Humanities,8,50-99,Pvt Ltd,1,182,0.0 +6649,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,17,<10,Pvt Ltd,3,15,0.0 +77,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,78,1.0 +32434,city_104,0.924,Male,No relevent experience,Full time course,High School,,5,,,2,25,0.0 +20095,city_90,0.698,Male,Has relevent experience,Full time course,Masters,STEM,18,50-99,Pvt Ltd,>4,48,1.0 +29463,city_20,0.7959999999999999,,No relevent experience,Part time course,Graduate,STEM,5,,,never,9,1.0 +8527,city_101,0.5579999999999999,,Has relevent experience,Full time course,,,1,<10,Early Stage Startup,never,198,0.0 +27711,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,17,,,4,21,1.0 +28037,city_102,0.804,Male,Has relevent experience,no_enrollment,Phd,STEM,19,500-999,Pvt Ltd,2,72,0.0 +25956,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,19,10000+,Pvt Ltd,2,91,0.0 +332,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,2,46,0.0 +6554,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Funded Startup,1,23,0.0 +16682,city_116,0.743,,No relevent experience,no_enrollment,Masters,Humanities,3,,,2,34,1.0 +8828,city_62,0.645,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Funded Startup,1,96,0.0 +15827,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,2,<10,Pvt Ltd,never,102,0.0 +25781,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Pvt Ltd,3,77,0.0 +8446,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,1,41,0.0 +14311,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,,1,27,0.0 +28658,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,never,83,0.0 +21537,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,never,62,1.0 +33328,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Pvt Ltd,1,97,0.0 +15446,city_114,0.9259999999999999,Male,No relevent experience,Part time course,High School,,6,50-99,Pvt Ltd,2,108,0.0 +1610,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Primary School,,6,,Pvt Ltd,never,99,0.0 +2104,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,100-500,Funded Startup,>4,32,0.0 +21602,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,91,0.0 +10755,city_11,0.55,,Has relevent experience,no_enrollment,Masters,STEM,18,,,1,268,1.0 +31889,city_160,0.92,Male,No relevent experience,no_enrollment,Primary School,,3,,,1,17,0.0 +22145,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Humanities,10,10/49,,3,11,0.0 +12651,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,>4,42,0.0 +24509,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,4,,,never,8,0.0 +27082,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Funded Startup,1,72,0.0 +27527,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Funded Startup,1,22,0.0 +26410,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,>4,112,0.0 +20632,city_145,0.555,Male,No relevent experience,Full time course,Graduate,STEM,2,,,2,120,0.0 +18826,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Pvt Ltd,1,3,0.0 +592,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,,never,43,0.0 +20397,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,,>4,62,0.0 +1194,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,19,100-500,Pvt Ltd,4,39,0.0 +12629,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,153,0.0 +5330,city_107,0.518,,No relevent experience,Full time course,Phd,STEM,7,,Public Sector,>4,46,1.0 +26365,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,,3,160,0.0 +8630,city_105,0.794,,No relevent experience,Part time course,Graduate,STEM,1,50-99,Pvt Ltd,1,9,0.0 +11242,city_28,0.9390000000000001,,No relevent experience,no_enrollment,High School,,3,,,never,48,0.0 +28929,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,8,,,never,110,0.0 +15406,city_18,0.8240000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Early Stage Startup,1,91,0.0 +30722,city_103,0.92,Male,No relevent experience,Full time course,High School,,5,,,1,108,0.0 +14466,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,2,43,1.0 +29709,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,113,0.0 +26205,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,12,10000+,Pvt Ltd,2,72,0.0 +2173,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,20,500-999,Pvt Ltd,1,60,0.0 +14401,city_123,0.738,,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,3,37,0.0 +27138,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,,>4,28,0.0 +17365,city_102,0.804,Male,Has relevent experience,Full time course,Graduate,STEM,4,,,,45,0.0 +30940,city_19,0.682,,No relevent experience,no_enrollment,Graduate,STEM,6,,,4,31,1.0 +24994,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,24,0.0 +2818,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,10,50-99,Pvt Ltd,2,25,1.0 +32173,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,140,1.0 +33066,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,>20,100-500,Pvt Ltd,>4,12,0.0 +16698,city_90,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,10,,,1,149,1.0 +64,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,3,188,0.0 +25187,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Funded Startup,1,20,1.0 +13631,city_102,0.804,,Has relevent experience,Part time course,Graduate,STEM,7,10/49,Funded Startup,3,146,0.0 +3949,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,<10,Pvt Ltd,3,80,0.0 +13523,city_160,0.92,Male,Has relevent experience,no_enrollment,High School,,12,100-500,Public Sector,4,88,0.0 +3258,city_16,0.91,,Has relevent experience,no_enrollment,High School,,5,10/49,Funded Startup,1,77,0.0 +4000,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Other,17,10/49,Pvt Ltd,1,26,0.0 +25267,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,<10,Pvt Ltd,1,23,0.0 +12495,city_104,0.924,Male,No relevent experience,no_enrollment,Graduate,STEM,8,5000-9999,Pvt Ltd,1,87,0.0 +28438,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,1000-4999,Pvt Ltd,>4,68,1.0 +11185,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,12,10/49,Pvt Ltd,>4,21,0.0 +32026,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,5,10/49,Pvt Ltd,>4,64,0.0 +31077,city_21,0.624,Other,Has relevent experience,Full time course,Graduate,STEM,5,,Pvt Ltd,never,50,1.0 +25626,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,112,0.0 +24113,city_116,0.743,Male,Has relevent experience,Full time course,Masters,STEM,>20,100-500,Pvt Ltd,>4,16,0.0 +18957,city_114,0.9259999999999999,,No relevent experience,,Masters,STEM,18,100-500,,3,147,0.0 +378,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,>4,18,0.0 +16200,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Early Stage Startup,3,27,0.0 +555,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,4,32,0.0 +31833,city_21,0.624,Male,No relevent experience,,Masters,STEM,8,50-99,NGO,1,18,0.0 +32191,city_162,0.767,Male,No relevent experience,Full time course,High School,,3,,,1,68,0.0 +22719,city_71,0.884,Male,Has relevent experience,Full time course,Graduate,STEM,13,100-500,NGO,1,100,0.0 +26212,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,124,0.0 +30146,city_28,0.9390000000000001,,No relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,>4,130,1.0 +26926,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Public Sector,3,6,0.0 +8525,city_9,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,2,17,0.0 +4526,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,>4,77,0.0 +11321,city_103,0.92,Female,Has relevent experience,Part time course,Graduate,STEM,18,100-500,Public Sector,>4,244,0.0 +13255,city_155,0.556,,No relevent experience,no_enrollment,Graduate,STEM,6,10/49,Public Sector,1,46,1.0 +21590,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,<10,Pvt Ltd,1,46,1.0 +12995,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,2,12,0.0 +13455,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,Other,11,50-99,Pvt Ltd,1,98,0.0 +26847,city_21,0.624,,No relevent experience,Full time course,High School,,4,,,never,28,0.0 +23501,city_21,0.624,Male,No relevent experience,Full time course,High School,,6,,,never,84,1.0 +33259,city_152,0.698,Male,No relevent experience,Full time course,Graduate,STEM,4,,Pvt Ltd,never,133,0.0 +12281,city_14,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,16,5000-9999,Pvt Ltd,3,135,0.0 +6434,city_76,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,10,,Pvt Ltd,never,45,0.0 +15520,city_73,0.754,Male,No relevent experience,Part time course,Graduate,STEM,7,,Public Sector,1,12,0.0 +24811,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,45,1.0 +18121,city_39,0.898,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,1,10,0.0 +26102,city_69,0.856,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,194,0.0 +11761,city_131,0.68,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,39,0.0 +23851,city_50,0.8959999999999999,,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,5,0.0 +11826,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,1,48,0.0 +616,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Pvt Ltd,4,16,0.0 +26272,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,1,33,0.0 +8882,city_146,0.735,Male,Has relevent experience,,Graduate,STEM,5,100-500,Pvt Ltd,2,42,1.0 +8916,city_149,0.6890000000000001,Male,No relevent experience,Full time course,Graduate,STEM,1,,,1,87,1.0 +31917,city_99,0.915,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,57,1.0 +24782,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,5,,,1,103,1.0 +15670,city_102,0.804,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,102,0.0 +10836,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Humanities,3,100-500,Public Sector,1,28,0.0 +3736,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,48,1.0 +5143,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,>4,124,1.0 +24469,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,,88,1.0 +25249,city_24,0.698,,Has relevent experience,no_enrollment,Masters,STEM,2,1000-4999,Pvt Ltd,1,10,0.0 +28501,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Primary School,,11,50-99,Funded Startup,1,81,1.0 +5195,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,74,0.0 +24705,city_50,0.8959999999999999,Female,No relevent experience,Part time course,High School,,<1,<10,,1,22,0.0 +18724,city_1,0.847,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,4,149,0.0 +570,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Pvt Ltd,>4,36,0.0 +7724,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,,1,38,0.0 +30998,city_103,0.92,,No relevent experience,Part time course,Graduate,STEM,18,10000+,Pvt Ltd,2,55,0.0 +13394,city_136,0.897,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,79,0.0 +23063,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,<1,,,1,109,0.0 +29275,city_165,0.903,,No relevent experience,Part time course,High School,,1,,,1,63,1.0 +19405,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,>4,42,1.0 +33156,city_160,0.92,Male,No relevent experience,no_enrollment,High School,,1,,,1,22,1.0 +1528,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,9,,,1,81,0.0 +20532,city_23,0.899,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Funded Startup,1,31,0.0 +30016,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,50-99,Pvt Ltd,>4,107,0.0 +590,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,14,,,1,12,0.0 +18319,city_21,0.624,,No relevent experience,,Graduate,STEM,<1,,,3,13,1.0 +5688,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,14,1.0 +7927,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,never,38,0.0 +563,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Early Stage Startup,1,9,0.0 +13673,city_11,0.55,,Has relevent experience,no_enrollment,Masters,STEM,2,100-500,,1,56,0.0 +15181,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,4,18,0.0 +17813,city_136,0.897,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,>4,52,0.0 +32204,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,1,32,0.0 +16646,city_71,0.884,Male,Has relevent experience,,Graduate,STEM,15,50-99,Pvt Ltd,4,36,0.0 +1035,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,>4,101,0.0 +8715,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,8,100-500,NGO,>4,52,0.0 +9783,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,>4,33,0.0 +13410,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,2,5000-9999,Public Sector,1,5,1.0 +13129,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,3,51,0.0 +14040,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,2,56,0.0 +16367,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,44,0.0 +31066,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,126,0.0 +23587,city_67,0.855,,No relevent experience,Full time course,Graduate,STEM,6,,,1,55,0.0 +28615,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,145,1.0 +4634,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,<10,Early Stage Startup,never,38,1.0 +17765,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,NGO,>4,246,0.0 +12873,city_103,0.92,,No relevent experience,,,,1,,,never,10,0.0 +15058,city_11,0.55,Male,No relevent experience,Part time course,Graduate,STEM,3,10/49,Pvt Ltd,1,322,0.0 +3565,city_116,0.743,Male,No relevent experience,Full time course,High School,,4,,,1,56,0.0 +18508,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,>4,7,1.0 +20183,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Arts,2,1000-4999,Pvt Ltd,2,80,1.0 +20548,city_136,0.897,,No relevent experience,Part time course,Graduate,STEM,5,,,,9,1.0 +1573,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,500-999,Funded Startup,3,22,1.0 +28976,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,,,>4,76,0.0 +19822,city_43,0.516,,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,21,0.0 +16575,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,71,0.0 +31505,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,80,0.0 +1025,city_57,0.866,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,18,0.0 +27395,city_50,0.8959999999999999,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,145,0.0 +14734,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Pvt Ltd,1,132,0.0 +7798,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,2,43,0.0 +27601,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,1000-4999,Pvt Ltd,2,112,0.0 +12304,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,2,26,1.0 +15846,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,1,29,0.0 +8913,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,18,,Public Sector,4,53,0.0 +28056,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,4,92,0.0 +16932,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,3,500-999,Pvt Ltd,1,67,0.0 +27414,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,9,0.0 +9101,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Public Sector,2,50,0.0 +6468,city_115,0.789,,Has relevent experience,no_enrollment,Graduate,STEM,14,500-999,Pvt Ltd,1,48,1.0 +7261,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Pvt Ltd,>4,20,0.0 +31665,city_103,0.92,Female,No relevent experience,Full time course,Masters,STEM,>20,,NGO,4,46,1.0 +6489,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,2,264,0.0 +26761,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,65,0.0 +9605,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,2,26,0.0 +30232,city_40,0.7759999999999999,,No relevent experience,no_enrollment,Masters,STEM,1,10/49,Pvt Ltd,1,108,0.0 +9823,city_102,0.804,,No relevent experience,no_enrollment,Graduate,STEM,10,100-500,Public Sector,3,39,0.0 +21238,city_103,0.92,,No relevent experience,no_enrollment,,,3,,,,147,0.0 +31125,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Humanities,3,10000+,Pvt Ltd,1,22,0.0 +17633,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,8,,,1,88,1.0 +2305,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,2,10000+,Pvt Ltd,1,23,0.0 +10961,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,Humanities,4,,,4,20,0.0 +20826,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,78,0.0 +2703,city_104,0.924,,No relevent experience,Full time course,Graduate,STEM,9,,,2,102,0.0 +265,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,50-99,Pvt Ltd,4,36,0.0 +26295,city_61,0.9129999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,5000-9999,,1,86,1.0 +24042,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,6,,,2,64,1.0 +538,city_24,0.698,,No relevent experience,no_enrollment,Masters,STEM,>20,,,2,45,1.0 +30439,city_78,0.579,,Has relevent experience,no_enrollment,Graduate,STEM,8,,,4,28,0.0 +4535,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,4,56,0.0 +9065,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,1,<10,Early Stage Startup,1,188,1.0 +21384,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,3,15,0.0 +23644,city_7,0.647,,No relevent experience,Full time course,Graduate,STEM,5,,,1,28,0.0 +16879,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Pvt Ltd,1,5,1.0 +32390,city_94,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,3,,,1,61,0.0 +18860,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Early Stage Startup,1,54,0.0 +8117,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,13,0.0 +16960,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Pvt Ltd,1,97,0.0 +23475,city_104,0.924,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,1,50,0.0 +1067,city_103,0.92,Male,Has relevent experience,Part time course,Masters,STEM,3,1000-4999,Pvt Ltd,2,28,0.0 +31416,city_160,0.92,Male,No relevent experience,no_enrollment,High School,,5,,Pvt Ltd,never,85,0.0 +33373,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,Public Sector,2,34,1.0 +30396,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Early Stage Startup,never,17,0.0 +32529,city_160,0.92,Male,No relevent experience,Full time course,High School,,2,5000-9999,,1,7,0.0 +9232,city_40,0.7759999999999999,,Has relevent experience,Part time course,Graduate,STEM,4,50-99,Pvt Ltd,1,8,0.0 +10609,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,>4,24,0.0 +23895,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,<1,,,never,55,0.0 +16549,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,18,,,2,47,1.0 +30812,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,94,0.0 +23222,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,15,,,>4,109,1.0 +16859,city_118,0.722,Male,Has relevent experience,no_enrollment,High School,,5,<10,Pvt Ltd,2,15,0.0 +22160,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,NGO,3,18,0.0 +26427,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,>4,52,0.0 +1190,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Public Sector,2,44,0.0 +4778,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,>4,85,0.0 +26619,city_12,0.64,Male,Has relevent experience,Full time course,High School,,3,100-500,,never,56,0.0 +14823,city_21,0.624,Male,No relevent experience,Part time course,Graduate,No Major,5,<10,Early Stage Startup,4,46,1.0 +20463,city_21,0.624,,No relevent experience,no_enrollment,,,3,,,,12,0.0 +15013,city_160,0.92,,Has relevent experience,no_enrollment,,,>20,,,2,56,1.0 +16940,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,16,500-999,Public Sector,4,12,0.0 +17262,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,1,50-99,Pvt Ltd,never,300,0.0 +13491,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,1,,,never,157,1.0 +29410,city_180,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,82,1.0 +6406,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,3,61,0.0 +24089,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,<1,10/49,Pvt Ltd,1,16,1.0 +14254,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,NGO,2,112,0.0 +19638,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,9,<10,Pvt Ltd,1,94,1.0 +8410,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,13,10/49,Pvt Ltd,2,32,0.0 +24458,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Funded Startup,>4,107,0.0 +32789,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,4,42,0.0 +25235,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,1,136,0.0 +10190,city_136,0.897,Male,No relevent experience,Part time course,Masters,STEM,3,50-99,,never,104,0.0 +9415,city_98,0.9490000000000001,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,70,0.0 +3769,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,Pvt Ltd,1,5,0.0 +22376,city_19,0.682,,No relevent experience,Full time course,Graduate,STEM,4,,,never,24,1.0 +16185,city_116,0.743,Male,Has relevent experience,no_enrollment,High School,,16,50-99,Pvt Ltd,2,156,0.0 +9182,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,2,92,0.0 +25711,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,28,0.0 +31216,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,1000-4999,Public Sector,1,22,1.0 +12371,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,1,94,0.0 +28361,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,10,1.0 +3669,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,44,0.0 +1318,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,500-999,NGO,2,25,0.0 +23252,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,>4,200,0.0 +14681,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,High School,,16,100-500,Funded Startup,>4,76,0.0 +20777,city_143,0.74,,No relevent experience,no_enrollment,Graduate,STEM,<1,,,,88,1.0 +13940,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,4,50-99,,1,46,0.0 +12397,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,1,50-99,Pvt Ltd,1,51,0.0 +792,city_23,0.899,Male,No relevent experience,Part time course,Graduate,STEM,5,10000+,Pvt Ltd,3,5,0.0 +30451,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,5,,,2,113,1.0 +26691,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,Business Degree,<1,,,2,34,1.0 +28296,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,500-999,Pvt Ltd,1,82,0.0 +11258,city_16,0.91,,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,45,0.0 +16137,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,Other,15,,Public Sector,3,95,1.0 +1262,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,17,,,2,12,0.0 +29574,city_41,0.8270000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,7,<10,Funded Startup,3,48,0.0 +31531,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,4,108,0.0 +13841,city_83,0.9229999999999999,Other,Has relevent experience,no_enrollment,Graduate,STEM,10,,,>4,196,1.0 +14759,city_136,0.897,,Has relevent experience,Part time course,Masters,STEM,4,,,2,160,0.0 +1145,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,3,6,0.0 +30513,city_61,0.9129999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,1,71,0.0 +16080,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,3,<10,Public Sector,2,37,1.0 +10863,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,never,12,0.0 +1221,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Pvt Ltd,1,32,0.0 +10910,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,19,,,1,320,0.0 +14544,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,Pvt Ltd,never,26,0.0 +17324,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,2,,,never,37,1.0 +20726,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,232,0.0 +19724,city_73,0.754,Male,No relevent experience,no_enrollment,Graduate,STEM,13,,,1,18,1.0 +2739,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,>4,105,0.0 +18603,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,102,0.0 +21953,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,3,,Pvt Ltd,1,11,0.0 +15955,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,2,74,0.0 +22358,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,100-500,Pvt Ltd,2,42,0.0 +23778,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,never,58,0.0 +13966,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,5000-9999,Pvt Ltd,1,124,0.0 +3687,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Business Degree,2,100-500,Pvt Ltd,1,43,0.0 +32182,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Early Stage Startup,1,31,0.0 +3837,city_103,0.92,Male,Has relevent experience,no_enrollment,,,1,100-500,Other,1,53,0.0 +19306,city_99,0.915,Female,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,,2,28,0.0 +32737,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,,1,9,0.0 +15943,city_74,0.579,Male,Has relevent experience,,Graduate,STEM,2,,Pvt Ltd,1,8,1.0 +381,city_145,0.555,,Has relevent experience,no_enrollment,Graduate,STEM,6,,,2,92,0.0 +18661,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,,,2,39,1.0 +1625,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,32,1.0 +23953,city_19,0.682,Female,Has relevent experience,no_enrollment,Graduate,Other,>20,,,2,63,0.0 +23240,city_73,0.754,Male,Has relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,1,7,0.0 +8467,city_160,0.92,Male,Has relevent experience,Full time course,High School,,5,100-500,Funded Startup,1,6,0.0 +2392,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Other,10,,,>4,116,0.0 +19280,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,6,,,1,280,0.0 +22552,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,<10,Pvt Ltd,1,49,1.0 +16930,city_114,0.9259999999999999,Male,Has relevent experience,,Masters,STEM,19,10000+,Pvt Ltd,1,294,0.0 +7972,city_28,0.9390000000000001,,No relevent experience,,Graduate,STEM,10,1000-4999,,1,22,0.0 +20395,city_19,0.682,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,1,23,1.0 +6874,city_70,0.698,,No relevent experience,no_enrollment,High School,,2,,,never,9,0.0 +2319,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,72,0.0 +33222,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,<1,,Pvt Ltd,never,35,0.0 +26360,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,1,29,0.0 +3129,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,8,0.0 +27613,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10/49,Pvt Ltd,4,156,0.0 +17992,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,62,1.0 +373,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Funded Startup,1,24,0.0 +1052,city_16,0.91,,No relevent experience,Full time course,Masters,STEM,15,,,>4,12,1.0 +2966,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,50,0.0 +31847,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,87,0.0 +14856,city_72,0.795,,No relevent experience,Full time course,High School,,3,50-99,Pvt Ltd,3,4,0.0 +3616,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Other,1,9,0.0 +29232,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,72,0.0 +27445,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,7,,,1,102,1.0 +18249,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Funded Startup,2,11,0.0 +4178,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,22,0.0 +12280,city_152,0.698,,No relevent experience,Full time course,Graduate,Business Degree,<1,100-500,Early Stage Startup,1,25,0.0 +869,city_23,0.899,Male,Has relevent experience,no_enrollment,,,14,1000-4999,Pvt Ltd,2,51,0.0 +16465,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,19,,Pvt Ltd,1,23,0.0 +9794,city_103,0.92,Male,Has relevent experience,Full time course,High School,,8,,,1,48,0.0 +7891,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,1,23,1.0 +18328,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,37,1.0 +23676,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,>20,,,>4,39,0.0 +17091,city_103,0.92,Male,No relevent experience,Full time course,High School,,1,,,1,45,0.0 +16906,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,,>4,16,0.0 +7578,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,Other,>20,<10,Pvt Ltd,>4,83,0.0 +10445,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,>4,14,0.0 +27788,city_16,0.91,Male,No relevent experience,no_enrollment,Primary School,,5,,,never,62,0.0 +17566,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,5000-9999,Pvt Ltd,1,77,0.0 +9935,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Funded Startup,2,56,0.0 +3792,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,2,24,1.0 +2017,city_165,0.903,Male,No relevent experience,no_enrollment,Masters,Humanities,>20,1000-4999,Pvt Ltd,>4,6,0.0 +15319,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,2,15,0.0 +24083,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,1,50,1.0 +8306,city_53,0.74,Male,No relevent experience,no_enrollment,Graduate,No Major,<1,1000-4999,Pvt Ltd,1,22,1.0 +30924,city_14,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,1,4,0.0 +27758,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,,<10,Pvt Ltd,>4,19,0.0 +23850,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10/49,,1,24,0.0 +10656,city_19,0.682,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,75,1.0 +19819,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,1,29,0.0 +5771,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,>4,89,0.0 +31438,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,Pvt Ltd,never,48,1.0 +16915,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Arts,,,Pvt Ltd,3,34,0.0 +8579,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,never,36,0.0 +23658,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,,,2,107,1.0 +198,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,66,0.0 +14560,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,,1,288,0.0 +27655,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,1,116,1.0 +33232,city_21,0.624,Other,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,never,51,0.0 +15464,city_19,0.682,Male,No relevent experience,no_enrollment,Graduate,STEM,1,,,never,284,1.0 +26155,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,17,1000-4999,Pvt Ltd,1,20,0.0 +30081,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,1,48,1.0 +9298,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,never,56,0.0 +25945,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,2,123,0.0 +31983,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,Humanities,18,50-99,Pvt Ltd,1,134,0.0 +13668,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,STEM,2,50-99,Funded Startup,1,33,0.0 +11812,city_23,0.899,Male,Has relevent experience,no_enrollment,Masters,Humanities,19,10/49,Pvt Ltd,2,150,0.0 +4265,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,3,51,1.0 +5647,city_26,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,>4,79,0.0 +4589,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,30,1.0 +10627,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,>4,102,0.0 +30288,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,1000-4999,Pvt Ltd,>4,8,0.0 +12511,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,9,500-999,Pvt Ltd,1,46,0.0 +21137,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,,,>4,110,0.0 +745,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,,2,306,1.0 +134,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Funded Startup,1,174,1.0 +21330,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,21,0.0 +27402,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,,,never,96,0.0 +6321,city_162,0.767,,Has relevent experience,no_enrollment,Masters,STEM,15,,,>4,46,1.0 +8345,city_158,0.7659999999999999,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,157,1.0 +24404,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,High School,,8,100-500,Pvt Ltd,1,21,0.0 +2348,city_159,0.843,,No relevent experience,Full time course,Graduate,STEM,7,,Public Sector,,28,1.0 +20642,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,never,17,0.0 +26749,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,200,0.0 +21272,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,22,0.0 +1972,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,2,162,0.0 +7374,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,2,50-99,Pvt Ltd,2,77,0.0 +12991,city_73,0.754,Male,No relevent experience,Part time course,Masters,STEM,14,,,1,3,1.0 +31067,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,1000-4999,Pvt Ltd,4,22,0.0 +5102,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,5,10000+,Public Sector,2,21,0.0 +10041,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,<1,,,2,336,1.0 +6779,city_74,0.579,Male,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Pvt Ltd,,21,1.0 +31524,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,,1,21,0.0 +565,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,19,,,>4,100,1.0 +3661,city_173,0.878,Male,No relevent experience,Full time course,High School,,4,,,1,90,0.0 +31887,city_71,0.884,Male,Has relevent experience,Part time course,Masters,STEM,5,,,4,22,0.0 +27573,city_75,0.9390000000000001,Male,No relevent experience,Full time course,High School,,3,<10,Pvt Ltd,1,4,0.0 +33221,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Business Degree,15,,,3,47,0.0 +29184,city_176,0.764,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,10,0.0 +21482,city_21,0.624,,Has relevent experience,,Graduate,STEM,3,50-99,,1,118,1.0 +3771,city_160,0.92,,No relevent experience,no_enrollment,Graduate,STEM,<1,100-500,Public Sector,1,38,0.0 +8690,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Early Stage Startup,>4,64,0.0 +15659,city_21,0.624,Male,No relevent experience,Full time course,High School,,1,,,never,108,1.0 +27045,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,7,,,4,62,1.0 +14912,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Other,2,258,0.0 +4111,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Funded Startup,4,95,0.0 +2081,city_67,0.855,Male,Has relevent experience,Part time course,Graduate,STEM,9,,Pvt Ltd,1,62,0.0 +8682,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,65,0.0 +16364,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,>4,36,1.0 +14446,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,never,55,1.0 +29631,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,>4,21,0.0 +6369,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,16,,,>4,54,1.0 +28639,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Funded Startup,4,42,0.0 +26547,city_102,0.804,,No relevent experience,no_enrollment,Masters,Business Degree,2,50-99,Pvt Ltd,1,60,0.0 +8802,city_76,0.698,Male,No relevent experience,no_enrollment,,,1,,,never,42,0.0 +23729,city_150,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,,>4,35,0.0 +32461,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,>4,135,0.0 +27056,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,48,0.0 +23762,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Funded Startup,1,58,1.0 +13976,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,15,,NGO,2,63,0.0 +8062,city_45,0.89,Male,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,2,100,0.0 +10781,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,1,12,1.0 +28119,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,1000-4999,Public Sector,1,55,0.0 +12268,city_7,0.647,,No relevent experience,Full time course,Graduate,STEM,15,,,2,23,1.0 +14305,city_72,0.795,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,1,16,0.0 +4816,city_100,0.887,,Has relevent experience,no_enrollment,Masters,STEM,8,,,3,82,0.0 +23066,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,4,,,1,99,0.0 +24360,city_173,0.878,,No relevent experience,no_enrollment,Masters,STEM,7,1000-4999,Pvt Ltd,3,40,0.0 +15501,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,16,,,never,39,0.0 +27566,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,10000+,Pvt Ltd,1,14,0.0 +31105,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,222,1.0 +21941,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,3,47,1.0 +17383,city_11,0.55,,Has relevent experience,Part time course,Primary School,,1,,,,9,1.0 +7026,city_100,0.887,Male,No relevent experience,Full time course,High School,,4,,,never,23,0.0 +6802,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,98,0.0 +8855,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,>4,106,0.0 +18077,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,13,,,>4,3,0.0 +18395,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Graduate,Other,4,50-99,Pvt Ltd,1,57,0.0 +2997,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Public Sector,4,74,0.0 +14960,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,1,95,0.0 +11819,city_45,0.89,Male,No relevent experience,no_enrollment,,,2,,,never,33,0.0 +30147,city_61,0.9129999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,7,,,1,10,0.0 +8338,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,12,,,,19,0.0 +22467,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Funded Startup,1,111,1.0 +425,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,2,12,0.0 +4584,city_176,0.764,,No relevent experience,Full time course,Graduate,STEM,2,,,2,58,1.0 +4903,city_67,0.855,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,13,0.0 +2480,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,Other,<1,,,1,41,1.0 +15445,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,41,0.0 +18906,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,54,0.0 +26054,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Funded Startup,4,58,1.0 +29718,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,>20,50-99,Pvt Ltd,>4,6,0.0 +24814,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,Early Stage Startup,1,34,0.0 +31919,city_45,0.89,Male,No relevent experience,Full time course,Graduate,STEM,5,,,3,89,1.0 +2338,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,High School,,6,10000+,Pvt Ltd,1,3,0.0 +19728,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,11,10000+,Pvt Ltd,4,52,0.0 +26878,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Funded Startup,2,9,1.0 +7898,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,20,0.0 +6756,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,>4,156,0.0 +32372,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,2,42,0.0 +14405,city_123,0.738,Female,No relevent experience,no_enrollment,Phd,STEM,2,5000-9999,Pvt Ltd,1,12,0.0 +26635,city_20,0.7959999999999999,,Has relevent experience,Part time course,Graduate,STEM,4,50-99,Pvt Ltd,1,11,0.0 +29050,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,500-999,Pvt Ltd,4,64,0.0 +16358,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,123,0.0 +21145,city_173,0.878,,No relevent experience,no_enrollment,High School,,3,,,never,85,0.0 +22563,city_136,0.897,,No relevent experience,,,,2,,,1,63,0.0 +30786,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Public Sector,3,88,1.0 +31097,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,1,19,0.0 +4918,city_103,0.92,Other,No relevent experience,Full time course,High School,,4,,Public Sector,3,27,1.0 +19598,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,24,0.0 +30804,city_104,0.924,Male,No relevent experience,no_enrollment,Graduate,Arts,>20,,,2,258,1.0 +31901,city_99,0.915,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,1,104,0.0 +33314,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,28,0.0 +16551,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,>20,100-500,Pvt Ltd,>4,9,1.0 +5906,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,14,0.0 +11930,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,67,0.0 +29239,city_103,0.92,Male,No relevent experience,Full time course,High School,,7,,,1,206,0.0 +28698,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Pvt Ltd,1,182,1.0 +27040,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,>4,97,0.0 +26484,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,1,57,0.0 +28204,city_28,0.9390000000000001,,Has relevent experience,Full time course,Masters,STEM,>20,100-500,Funded Startup,>4,76,0.0 +6926,city_21,0.624,Other,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,58,0.0 +14984,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,3,50-99,Pvt Ltd,2,80,0.0 +18373,city_138,0.836,Male,Has relevent experience,,Graduate,STEM,9,10/49,Pvt Ltd,1,166,1.0 +26262,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,500-999,Funded Startup,>4,22,0.0 +32704,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,15,0.0 +17288,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,3,<10,Funded Startup,2,34,1.0 +25815,city_90,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,12,,,1,146,1.0 +15390,city_74,0.579,Male,No relevent experience,,,,2,,,1,13,0.0 +14753,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,5,<10,Funded Startup,2,210,0.0 +27474,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,1,120,0.0 +21186,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,6,,,never,85,0.0 +22910,city_40,0.7759999999999999,,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,4,21,0.0 +18522,city_50,0.8959999999999999,,No relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,,100,0.0 +8313,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,11,<10,Pvt Ltd,3,40,0.0 +23578,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Funded Startup,2,29,0.0 +31787,city_103,0.92,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Funded Startup,1,61,0.0 +30494,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,1,82,0.0 +19241,city_24,0.698,Male,Has relevent experience,,Graduate,STEM,4,,,1,106,0.0 +11250,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,4,10000+,NGO,1,68,0.0 +20646,city_50,0.8959999999999999,,Has relevent experience,Full time course,Masters,STEM,8,1000-4999,,never,97,0.0 +15020,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,500-999,Pvt Ltd,>4,70,0.0 +15605,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,2,5,1.0 +23552,city_16,0.91,Male,No relevent experience,Full time course,High School,,3,<10,Pvt Ltd,1,50,0.0 +11387,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,23,0.0 +8774,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Funded Startup,1,304,0.0 +29451,city_67,0.855,Male,Has relevent experience,Part time course,High School,,9,100-500,Pvt Ltd,1,50,1.0 +25960,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,74,0.0 +8591,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,3,,,never,306,0.0 +31118,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,never,35,0.0 +11239,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,35,0.0 +21190,city_99,0.915,,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,,20,0.0 +26374,city_21,0.624,,No relevent experience,no_enrollment,Primary School,,<1,,,never,15,1.0 +16511,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,never,86,0.0 +8071,city_100,0.887,,No relevent experience,Full time course,High School,,4,,,never,10,0.0 +20466,city_13,0.8270000000000001,,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Pvt Ltd,>4,108,0.0 +11505,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,80,0.0 +15675,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,1,102,0.0 +22176,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,Pvt Ltd,2,20,0.0 +22203,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,Other,1,5,0.0 +13130,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,27,1.0 +4033,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,32,0.0 +23179,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,32,0.0 +3796,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,91,0.0 +26627,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,10000+,Pvt Ltd,3,6,0.0 +29266,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,Pvt Ltd,>4,28,0.0 +15783,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,,,never,27,1.0 +24652,city_46,0.762,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,46,0.0 +26990,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,17,1000-4999,Pvt Ltd,1,134,0.0 +26594,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,20,1000-4999,Public Sector,1,43,1.0 +15666,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,>4,22,0.0 +679,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Public Sector,1,24,0.0 +8210,city_97,0.925,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,16,0.0 +14569,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,2,68,1.0 +15110,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,5,,,2,111,0.0 +587,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,10,10000+,Pvt Ltd,>4,32,0.0 +20657,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,1,96,0.0 +16952,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,,Public Sector,1,48,1.0 +11438,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,12,0.0 +24589,city_71,0.884,Male,No relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,2,18,0.0 +9259,city_173,0.878,,No relevent experience,no_enrollment,Masters,Business Degree,15,100-500,Pvt Ltd,1,36,0.0 +12287,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,28,0.0 +18655,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,2,1.0 +7858,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Humanities,3,100-500,Pvt Ltd,3,61,0.0 +28431,city_160,0.92,,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,never,36,0.0 +5098,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,1,21,0.0 +19180,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,78,1.0 +19943,city_114,0.9259999999999999,Male,No relevent experience,,High School,,8,,,never,32,0.0 +4867,city_54,0.856,,Has relevent experience,no_enrollment,High School,,3,10/49,Pvt Ltd,1,134,0.0 +32794,city_159,0.843,Male,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,16,0.0 +32640,city_21,0.624,,Has relevent experience,Full time course,,,2,,,1,168,1.0 +18355,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,>4,102,1.0 +28159,city_61,0.9129999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,8,<10,Pvt Ltd,1,48,0.0 +15671,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,500-999,Pvt Ltd,1,38,1.0 +31468,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,35,0.0 +28863,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,326,0.0 +21378,city_76,0.698,Male,Has relevent experience,Part time course,Masters,STEM,10,50-99,Pvt Ltd,3,42,0.0 +8027,city_80,0.847,Male,Has relevent experience,,Graduate,STEM,6,50-99,Public Sector,4,87,0.0 +5161,city_76,0.698,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,107,1.0 +13774,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Other,3,10/49,Pvt Ltd,>4,17,0.0 +26341,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,16,10000+,,1,24,0.0 +21045,city_159,0.843,Male,Has relevent experience,Part time course,High School,,5,500-999,Public Sector,3,65,0.0 +15733,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,>4,14,0.0 +10344,city_103,0.92,,Has relevent experience,Full time course,Masters,STEM,7,,,1,38,0.0 +30901,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,6,100-500,Pvt Ltd,1,6,0.0 +8848,city_103,0.92,Male,No relevent experience,Full time course,High School,,6,,,1,14,0.0 +2351,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,4,22,0.0 +12754,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,4,10/49,Early Stage Startup,1,48,0.0 +1230,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,105,0.0 +7514,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,4,,,1,58,0.0 +14464,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,4,500-999,Public Sector,1,166,0.0 +25863,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,50,1.0 +10073,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,7,1.0 +30646,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,2,23,0.0 +24943,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,3,160,0.0 +12352,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,10000+,Pvt Ltd,>4,127,0.0 +24519,city_114,0.9259999999999999,,Has relevent experience,Full time course,Masters,STEM,10,,Public Sector,,31,0.0 +11088,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,6,10000+,Pvt Ltd,2,38,0.0 +31688,city_50,0.8959999999999999,Male,No relevent experience,Full time course,Masters,Humanities,<1,,,1,150,0.0 +31462,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Pvt Ltd,4,270,0.0 +33205,city_100,0.887,,No relevent experience,Full time course,Masters,STEM,>20,10000+,Public Sector,never,86,0.0 +28857,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,11,10/49,Pvt Ltd,2,25,1.0 +356,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,>4,20,0.0 +7669,city_103,0.92,Male,No relevent experience,Full time course,High School,,4,,,never,226,0.0 +16627,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,13,0.0 +3424,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,2,50-99,Other,1,8,0.0 +6910,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,7,1000-4999,Pvt Ltd,1,15,1.0 +5357,city_90,0.698,,Has relevent experience,Full time course,Graduate,STEM,3,10/49,Pvt Ltd,1,14,0.0 +22240,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,46,0.0 +31763,city_7,0.647,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,133,0.0 +2933,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,47,0.0 +14829,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,1,,,never,50,1.0 +30139,city_23,0.899,Male,Has relevent experience,no_enrollment,High School,,16,1000-4999,Pvt Ltd,1,52,0.0 +518,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,1,56,0.0 +27691,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,312,0.0 +12468,city_89,0.925,,No relevent experience,no_enrollment,Masters,STEM,3,,,never,97,0.0 +10657,city_100,0.887,,Has relevent experience,no_enrollment,High School,,9,50-99,Pvt Ltd,2,3,0.0 +6551,city_57,0.866,Male,Has relevent experience,Full time course,Graduate,STEM,15,1000-4999,Pvt Ltd,1,24,0.0 +29992,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,35,0.0 +8368,city_116,0.743,,Has relevent experience,no_enrollment,Graduate,No Major,7,,,,68,1.0 +16694,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,6,,,never,100,0.0 +20434,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,>4,145,0.0 +4576,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,240,0.0 +32293,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,14,1.0 +27823,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,25,0.0 +21996,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10/49,,2,55,0.0 +14091,city_160,0.92,,No relevent experience,no_enrollment,Primary School,,4,,,never,26,0.0 +6255,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,16,0.0 +20218,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,Early Stage Startup,never,11,0.0 +16262,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,65,1.0 +30155,city_136,0.897,Male,No relevent experience,Full time course,,,1,,,never,53,0.0 +27926,city_16,0.91,Female,No relevent experience,Full time course,Graduate,STEM,4,<10,Early Stage Startup,1,34,0.0 +20842,city_136,0.897,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,never,133,0.0 +26147,city_45,0.89,Male,Has relevent experience,no_enrollment,High School,,11,,,2,50,1.0 +25088,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,1,7,1.0 +17782,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,39,1.0 +7178,city_36,0.893,Female,No relevent experience,Full time course,High School,,3,50-99,Public Sector,1,146,0.0 +25049,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,24,0.0 +30522,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,76,0.0 +27730,city_46,0.762,,No relevent experience,no_enrollment,Masters,Humanities,1,10000+,,never,30,0.0 +14060,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,7,,,2,57,0.0 +6481,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,95,0.0 +8670,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,500-999,Pvt Ltd,2,20,0.0 +28942,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,34,0.0 +10305,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,6,,,1,46,1.0 +6905,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,4,22,0.0 +23891,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,,29,0.0 +22234,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,2,37,0.0 +21115,city_162,0.767,Male,Has relevent experience,no_enrollment,High School,,1,<10,Pvt Ltd,never,41,0.0 +868,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,3,330,0.0 +30527,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,1,139,0.0 +11839,city_104,0.924,Male,No relevent experience,,,,<1,,,never,21,0.0 +15641,city_123,0.738,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,never,51,1.0 +4247,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,118,0.0 +28003,city_162,0.767,Male,No relevent experience,Full time course,Graduate,Other,3,,,never,222,0.0 +23138,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,never,23,1.0 +23447,city_61,0.9129999999999999,,No relevent experience,,,,3,,,never,19,1.0 +22153,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,4,52,0.0 +8871,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,12,500-999,Pvt Ltd,2,58,0.0 +28569,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,<1,500-999,Pvt Ltd,>4,54,1.0 +11572,city_65,0.802,Male,Has relevent experience,Full time course,High School,,4,1000-4999,Pvt Ltd,1,27,0.0 +24689,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,46,0.0 +31021,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,20,0.0 +17555,city_21,0.624,Male,No relevent experience,Full time course,High School,,11,,,never,50,1.0 +32383,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,2,23,0.0 +19320,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,>4,22,0.0 +25996,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,Pvt Ltd,1,109,0.0 +25582,city_160,0.92,Male,No relevent experience,Full time course,High School,,5,,,1,60,0.0 +30179,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Public Sector,1,5,0.0 +2486,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,>4,29,0.0 +30669,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,76,0.0 +21945,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,Other,15,,,1,72,1.0 +33252,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,7,,,1,42,1.0 +15463,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,1,100-500,Pvt Ltd,1,162,1.0 +12245,city_65,0.802,,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,>4,47,0.0 +2589,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,6,1000-4999,Pvt Ltd,1,46,0.0 +20673,city_21,0.624,,No relevent experience,Full time course,High School,,2,,,never,8,1.0 +26063,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,2,500-999,Pvt Ltd,1,9,0.0 +24335,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10/49,Pvt Ltd,>4,51,0.0 +19674,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,3,0.0 +18402,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,2,11,0.0 +11717,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,19,10000+,Pvt Ltd,>4,44,0.0 +12659,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,>4,9,0.0 +6914,city_128,0.527,,No relevent experience,Full time course,Graduate,STEM,<1,,,1,12,1.0 +6097,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,3,10000+,Pvt Ltd,never,129,0.0 +29753,city_114,0.9259999999999999,Male,No relevent experience,,High School,,9,50-99,Pvt Ltd,never,46,0.0 +17849,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,High School,,15,100-500,Pvt Ltd,>4,26,0.0 +32965,city_73,0.754,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,13,0.0 +10973,city_57,0.866,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,,2,108,0.0 +26230,city_104,0.924,Male,Has relevent experience,no_enrollment,Phd,Other,>20,10000+,Pvt Ltd,>4,12,0.0 +11234,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,2,144,0.0 +19825,city_180,0.698,Male,Has relevent experience,no_enrollment,Graduate,Other,15,,,>4,31,1.0 +22492,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,>4,70,0.0 +14996,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,39,0.0 +26313,city_61,0.9129999999999999,Male,No relevent experience,Full time course,High School,,3,,,never,97,0.0 +5351,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,,,9,,,never,30,1.0 +17713,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Phd,Humanities,>20,,,1,48,0.0 +25710,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,100-500,Pvt Ltd,>4,34,0.0 +9762,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,4,,,1,39,0.0 +30380,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,58,0.0 +6457,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,49,1.0 +32256,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,82,0.0 +4321,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,2,66,0.0 +2047,city_14,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,never,44,0.0 +22461,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Funded Startup,2,30,1.0 +11887,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,1,42,0.0 +987,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Funded Startup,1,6,0.0 +2042,city_102,0.804,Male,Has relevent experience,Full time course,,,11,100-500,Pvt Ltd,2,125,0.0 +8185,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,156,0.0 +15571,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,>4,4,0.0 +6234,city_46,0.762,Male,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,,4,112,0.0 +7562,city_28,0.9390000000000001,Male,No relevent experience,Full time course,High School,,7,,,never,12,0.0 +22245,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,23,0.0 +11804,city_77,0.83,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10/49,Funded Startup,2,116,0.0 +5717,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,1,82,0.0 +2971,city_116,0.743,,Has relevent experience,no_enrollment,Graduate,STEM,9,,,2,98,0.0 +31309,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,32,0.0 +9775,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,5,100-500,Pvt Ltd,1,39,0.0 +30089,city_126,0.479,,No relevent experience,no_enrollment,,,>20,,,2,26,1.0 +6390,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,,,never,24,0.0 +5597,city_117,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,1,154,0.0 +15743,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,48,0.0 +11449,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Early Stage Startup,1,164,1.0 +9928,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,64,1.0 +8780,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,1,38,0.0 +16271,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Funded Startup,never,23,0.0 +33356,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,51,0.0 +18653,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,>4,10,0.0 +5737,city_69,0.856,,Has relevent experience,no_enrollment,High School,,>20,100-500,Pvt Ltd,,35,1.0 +14675,city_64,0.6659999999999999,Female,No relevent experience,no_enrollment,Phd,STEM,5,<10,NGO,1,18,0.0 +29148,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,16,1000-4999,Public Sector,1,292,0.0 +6235,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,8,0.0 +761,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,1,61,0.0 +19854,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,Business Degree,<1,100-500,Pvt Ltd,1,61,0.0 +9122,city_144,0.84,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,13,100-500,Public Sector,2,48,0.0 +8937,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,5,10000+,Public Sector,1,7,1.0 +17044,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,97,0.0 +17310,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,>4,14,0.0 +11815,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,31,0.0 +14389,city_149,0.6890000000000001,,Has relevent experience,,Graduate,STEM,6,<10,Pvt Ltd,2,25,0.0 +2842,city_102,0.804,Male,Has relevent experience,Full time course,Graduate,STEM,6,500-999,Pvt Ltd,1,86,0.0 +15687,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,Funded Startup,1,330,0.0 +5834,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,3,114,0.0 +22090,city_40,0.7759999999999999,,No relevent experience,no_enrollment,,,2,,,never,47,0.0 +13894,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,>4,176,0.0 +30256,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,8,100-500,Public Sector,3,39,0.0 +27069,city_115,0.789,,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,18,0.0 +9179,city_48,0.493,,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,23,0.0 +26305,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,<10,Pvt Ltd,>4,14,0.0 +16049,city_103,0.92,,Has relevent experience,Full time course,High School,,2,,,1,41,0.0 +5779,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,2,34,0.0 +18262,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,72,0.0 +11909,city_70,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,>4,37,0.0 +12385,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,10/49,Pvt Ltd,1,35,1.0 +9881,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,1,72,0.0 +12740,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,4,29,0.0 +31867,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,never,57,0.0 +23268,city_41,0.8270000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,17,50-99,Pvt Ltd,4,100,1.0 +32506,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,1,68,1.0 +5508,city_78,0.579,Male,Has relevent experience,,Graduate,STEM,6,,,never,29,0.0 +11198,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,41,0.0 +25150,city_16,0.91,Male,No relevent experience,no_enrollment,Phd,STEM,10,,,1,163,0.0 +15248,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,3,264,1.0 +22260,city_24,0.698,Male,No relevent experience,no_enrollment,Masters,STEM,10,,,never,28,1.0 +29199,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,5,<10,Pvt Ltd,1,20,0.0 +25274,city_90,0.698,Male,No relevent experience,Part time course,Graduate,STEM,3,10/49,Pvt Ltd,1,9,0.0 +21036,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,13,0.0 +6288,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,8,500-999,Pvt Ltd,1,12,0.0 +19426,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10/49,,1,105,1.0 +32538,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,1,90,0.0 +6947,city_16,0.91,,Has relevent experience,no_enrollment,High School,,16,50-99,Pvt Ltd,2,69,0.0 +31192,city_11,0.55,,Has relevent experience,no_enrollment,Masters,Business Degree,4,10/49,Pvt Ltd,1,97,0.0 +225,city_173,0.878,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,,19,0.0 +22604,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,High School,,13,1000-4999,Public Sector,2,59,0.0 +11648,city_36,0.893,Male,No relevent experience,Full time course,Graduate,STEM,13,,,1,28,0.0 +32,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,2,180,1.0 +26652,city_103,0.92,Male,Has relevent experience,Part time course,High School,,5,10/49,,1,122,0.0 +21419,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,1,56,0.0 +21282,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,3,100-500,Pvt Ltd,1,56,1.0 +20239,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,128,0.0 +7914,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,2,50-99,NGO,1,10,1.0 +5965,city_13,0.8270000000000001,,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,Pvt Ltd,1,11,0.0 +24920,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,72,0.0 +21621,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10/49,Pvt Ltd,1,130,0.0 +10227,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,1,44,0.0 +32801,city_103,0.92,Other,No relevent experience,no_enrollment,Primary School,,4,,,never,5,0.0 +3942,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,212,0.0 +13022,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,36,0.0 +31354,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,39,0.0 +11526,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,16,500-999,,3,7,0.0 +17186,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Other,18,,,>4,212,0.0 +6762,city_141,0.763,,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,1,26,0.0 +6384,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,No Major,20,,,>4,156,0.0 +22443,city_89,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,3,16,0.0 +27363,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,57,1.0 +1508,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,1,214,1.0 +31315,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,4,,Pvt Ltd,never,37,0.0 +13415,city_61,0.9129999999999999,,Has relevent experience,Part time course,Masters,STEM,7,10/49,Pvt Ltd,1,190,0.0 +18370,city_21,0.624,Male,Has relevent experience,Full time course,,,9,50-99,Pvt Ltd,1,27,0.0 +13450,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,41,0.0 +27203,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,21,1.0 +16310,city_28,0.9390000000000001,Male,No relevent experience,Part time course,Graduate,STEM,12,50-99,Pvt Ltd,>4,44,0.0 +3269,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,15,50-99,Pvt Ltd,1,111,0.0 +14994,city_136,0.897,,Has relevent experience,no_enrollment,Masters,Other,20,10000+,Pvt Ltd,1,70,0.0 +8353,city_71,0.884,,No relevent experience,no_enrollment,,,2,,,never,162,0.0 +16086,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,67,0.0 +31043,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,14,100-500,Pvt Ltd,2,52,0.0 +30858,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Funded Startup,1,16,0.0 +18368,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,17,10/49,Funded Startup,1,11,0.0 +33096,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,45,0.0 +25069,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,Other,3,1000-4999,Pvt Ltd,1,57,1.0 +23556,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Other,4,37,0.0 +10988,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,8,,Pvt Ltd,1,55,0.0 +15243,city_136,0.897,,Has relevent experience,Part time course,Graduate,Arts,4,<10,Funded Startup,3,66,0.0 +19731,city_114,0.9259999999999999,,Has relevent experience,Full time course,Graduate,STEM,6,<10,Pvt Ltd,1,128,0.0 +33352,city_16,0.91,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,1,91,0.0 +31678,city_160,0.92,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,149,0.0 +4501,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,2,42,0.0 +3036,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,4,41,0.0 +33348,city_21,0.624,Male,No relevent experience,Part time course,Masters,STEM,15,100-500,Pvt Ltd,never,9,0.0 +21151,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,2,16,0.0 +3113,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,,1000-4999,Pvt Ltd,1,94,0.0 +33231,city_21,0.624,Other,No relevent experience,Full time course,Graduate,STEM,3,,,never,64,0.0 +12138,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,114,1.0 +33261,city_160,0.92,Male,No relevent experience,Full time course,High School,,9,,,4,44,1.0 +30751,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,50,1.0 +4459,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,17,1000-4999,Pvt Ltd,>4,162,0.0 +8312,city_45,0.89,,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,2,78,0.0 +20101,city_102,0.804,,No relevent experience,Full time course,Primary School,,7,,,never,94,0.0 +9187,city_16,0.91,,No relevent experience,Part time course,Graduate,STEM,<1,,,never,35,0.0 +31880,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,4,9,1.0 +30964,city_65,0.802,Male,No relevent experience,Full time course,Graduate,STEM,4,,Pvt Ltd,never,114,1.0 +19091,city_41,0.8270000000000001,Male,Has relevent experience,Full time course,High School,,4,5000-9999,Pvt Ltd,1,6,1.0 +21554,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,36,0.0 +17728,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,61,1.0 +26160,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,4,,,1,106,1.0 +519,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,90,0.0 +27357,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,Arts,18,100-500,Public Sector,2,60,0.0 +8015,city_136,0.897,Female,No relevent experience,no_enrollment,Phd,STEM,9,50-99,Public Sector,4,222,0.0 +9755,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,1,14,1.0 +5469,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,>4,290,0.0 +32014,city_136,0.897,Male,Has relevent experience,Part time course,Masters,STEM,11,<10,Pvt Ltd,1,69,0.0 +16599,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,2,61,0.0 +19434,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,1,11,1.0 +8321,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,3,44,0.0 +31947,city_90,0.698,,No relevent experience,Full time course,Graduate,STEM,5,,,1,27,1.0 +21067,city_160,0.92,Male,No relevent experience,Full time course,Masters,Other,17,10000+,Public Sector,1,66,0.0 +8317,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,86,0.0 +11211,city_103,0.92,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Public Sector,2,24,0.0 +11030,city_83,0.9229999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,17,10000+,Pvt Ltd,4,200,1.0 +31642,city_42,0.563,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,56,0.0 +19571,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,8,1.0 +12424,city_105,0.794,Male,Has relevent experience,Part time course,High School,,2,10/49,Pvt Ltd,2,17,0.0 +1314,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,7,,,1,33,1.0 +15715,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,69,0.0 +3367,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,9,<10,Pvt Ltd,1,240,0.0 +18829,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,91,0.0 +27211,city_19,0.682,,No relevent experience,Full time course,Graduate,STEM,3,,,never,12,1.0 +32832,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,9,<10,Pvt Ltd,1,21,0.0 +140,city_72,0.795,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,1,4,0.0 +25452,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Early Stage Startup,1,94,0.0 +3124,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,No Major,2,<10,Pvt Ltd,1,91,0.0 +24727,city_136,0.897,,No relevent experience,Full time course,High School,,4,,,never,182,0.0 +8844,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,<10,Pvt Ltd,>4,20,0.0 +1252,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,35,0.0 +23875,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,6,<10,Pvt Ltd,2,15,1.0 +20897,city_136,0.897,,Has relevent experience,no_enrollment,High School,,3,,,1,12,0.0 +10848,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,19,10000+,Pvt Ltd,>4,53,0.0 +21658,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,4,96,1.0 +29605,city_105,0.794,Female,No relevent experience,no_enrollment,Graduate,Business Degree,<1,,,1,12,1.0 +29750,city_136,0.897,Male,Has relevent experience,no_enrollment,High School,,>20,,,4,76,0.0 +13266,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Early Stage Startup,1,32,0.0 +23955,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,4,,,1,89,0.0 +23357,city_136,0.897,Male,Has relevent experience,,,,13,,,never,57,0.0 +21873,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,4,82,0.0 +17203,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,4,63,0.0 +2429,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,Other,13,500-999,Pvt Ltd,2,111,0.0 +12014,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,8,10/49,Public Sector,1,21,0.0 +28506,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,>4,17,0.0 +28401,city_74,0.579,,Has relevent experience,Part time course,High School,,4,50-99,Pvt Ltd,2,43,0.0 +13617,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,190,0.0 +7531,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10/49,Pvt Ltd,4,102,0.0 +6241,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Pvt Ltd,1,56,0.0 +22917,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,5,100-500,NGO,1,61,0.0 +32203,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,,,2,45,0.0 +32433,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,Pvt Ltd,2,82,0.0 +10188,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,>4,18,0.0 +17869,city_61,0.9129999999999999,,No relevent experience,Full time course,Graduate,STEM,4,,,3,12,0.0 +23236,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,29,0.0 +2533,city_162,0.767,Male,Has relevent experience,Full time course,Graduate,STEM,4,500-999,Pvt Ltd,1,48,0.0 +24573,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,42,0.0 +1635,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,15,0.0 +2323,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,never,38,0.0 +4649,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,100-500,Pvt Ltd,never,50,1.0 +22579,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,7,50-99,,3,66,1.0 +30222,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,3,27,1.0 +17668,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,,,5,,,never,58,0.0 +2978,city_21,0.624,,Has relevent experience,Full time course,Graduate,Other,,10000+,Public Sector,,91,0.0 +30485,city_98,0.9490000000000001,Male,No relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,1,11,0.0 +7272,city_73,0.754,Male,No relevent experience,no_enrollment,Graduate,STEM,13,,,>4,42,0.0 +4494,city_71,0.884,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,20,0.0 +22243,city_159,0.843,Male,No relevent experience,no_enrollment,High School,,>20,,,>4,248,0.0 +24121,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,3,34,0.0 +4242,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,87,0.0 +11763,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,322,0.0 +19174,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,1,100,1.0 +7490,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,>4,40,0.0 +18528,city_21,0.624,Male,Has relevent experience,,Masters,STEM,1,10000+,Public Sector,1,54,1.0 +17354,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,9,500-999,Pvt Ltd,4,50,0.0 +10906,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,1000-4999,Pvt Ltd,1,91,0.0 +18861,city_24,0.698,,No relevent experience,no_enrollment,,,<1,,,,17,0.0 +17378,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,5000-9999,Pvt Ltd,2,95,0.0 +31090,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,48,0.0 +5759,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,1,15,0.0 +103,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,<10,Pvt Ltd,2,20,0.0 +21449,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,,>4,90,0.0 +5971,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,36,0.0 +385,city_21,0.624,,No relevent experience,no_enrollment,Primary School,,5,,Pvt Ltd,never,156,1.0 +4697,city_24,0.698,Male,No relevent experience,no_enrollment,,,1,,,1,96,0.0 +17613,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,5000-9999,Pvt Ltd,>4,10,0.0 +7217,city_28,0.9390000000000001,Male,No relevent experience,Full time course,Graduate,STEM,9,,,never,166,0.0 +21418,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,,never,114,0.0 +17190,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Funded Startup,1,13,1.0 +5491,city_103,0.92,Male,Has relevent experience,Full time course,Masters,Business Degree,>20,,,2,12,0.0 +18317,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,194,0.0 +2778,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,,5000-9999,,1,214,1.0 +27886,city_98,0.9490000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,1,92,0.0 +24559,city_127,0.745,Male,Has relevent experience,no_enrollment,Masters,STEM,15,<10,Pvt Ltd,>4,4,0.0 +26248,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,6,10000+,Pvt Ltd,2,96,0.0 +18744,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,,Pvt Ltd,1,45,0.0 +442,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,50-99,Pvt Ltd,4,24,0.0 +13531,city_136,0.897,,Has relevent experience,no_enrollment,,,11,<10,,2,88,0.0 +25226,city_136,0.897,Male,Has relevent experience,Full time course,Masters,STEM,16,1000-4999,,1,174,0.0 +27885,city_73,0.754,Male,Has relevent experience,Part time course,Masters,STEM,5,100-500,Pvt Ltd,2,8,0.0 +25453,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,72,0.0 +20400,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,<10,Pvt Ltd,2,50,0.0 +13361,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Pvt Ltd,>4,123,0.0 +4971,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Funded Startup,1,95,0.0 +32494,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,6,100-500,Pvt Ltd,3,166,1.0 +17071,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,No Major,4,,,1,2,0.0 +31710,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,Funded Startup,1,44,0.0 +22272,city_73,0.754,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,11,1.0 +21725,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,5,,,never,184,1.0 +24546,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,never,40,1.0 +11550,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,,1,31,0.0 +13593,city_83,0.9229999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,>20,50-99,Pvt Ltd,1,12,0.0 +6276,city_173,0.878,Male,No relevent experience,Full time course,High School,,7,,Public Sector,2,28,0.0 +15545,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,59,0.0 +22101,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,7,,,3,4,1.0 +30991,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,168,0.0 +12922,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,,,4,124,1.0 +16640,city_141,0.763,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,46,0.0 +15473,city_128,0.527,Male,Has relevent experience,Part time course,Masters,STEM,13,,,>4,20,1.0 +8592,city_67,0.855,Male,No relevent experience,Full time course,High School,,2,10/49,Early Stage Startup,1,54,0.0 +23087,city_90,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,20,1000-4999,Pvt Ltd,1,24,0.0 +24118,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,1,<10,,1,48,1.0 +18088,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Arts,1,<10,Early Stage Startup,1,5,0.0 +22186,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,16,,,>4,28,0.0 +1063,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,2,82,0.0 +9411,city_162,0.767,,Has relevent experience,Full time course,Graduate,STEM,7,50-99,,,17,0.0 +9015,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,34,1.0 +27589,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,12,,,1,12,0.0 +32909,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,50-99,Funded Startup,1,41,1.0 +4824,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Arts,17,<10,Pvt Ltd,2,41,0.0 +12204,city_45,0.89,,Has relevent experience,no_enrollment,Graduate,Humanities,>20,<10,Early Stage Startup,>4,57,0.0 +24020,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,20,0.0 +17575,city_65,0.802,Male,No relevent experience,no_enrollment,Graduate,Arts,11,50-99,Pvt Ltd,>4,48,0.0 +28029,city_77,0.83,Male,Has relevent experience,Full time course,Graduate,STEM,5,,,never,50,0.0 +1077,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,153,0.0 +15751,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,1,19,0.0 +26904,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,2,36,0.0 +16503,city_116,0.743,Male,Has relevent experience,Full time course,Masters,STEM,6,1000-4999,Pvt Ltd,1,102,0.0 +7611,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,10,10000+,Pvt Ltd,2,13,0.0 +22693,city_90,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,3,6,0.0 +17871,city_134,0.698,Other,No relevent experience,,,,,,,never,49,0.0 +25481,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Public Sector,1,160,0.0 +4326,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,6,1000-4999,Pvt Ltd,2,30,0.0 +25923,city_72,0.795,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,5000-9999,Pvt Ltd,>4,95,0.0 +23687,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,1,45,0.0 +29329,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,24,0.0 +21510,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,6,50-99,Pvt Ltd,1,95,1.0 +16060,city_27,0.848,Male,No relevent experience,Full time course,High School,,1,,,never,56,1.0 +13302,city_19,0.682,Male,Has relevent experience,Full time course,Graduate,STEM,3,,,1,156,1.0 +12306,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,4,,,never,38,1.0 +32298,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,never,64,0.0 +23307,city_74,0.579,Male,No relevent experience,Full time course,High School,,3,<10,Early Stage Startup,2,9,1.0 +31581,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,1,100-500,Pvt Ltd,1,100,0.0 +25183,city_102,0.804,,No relevent experience,,,,5,,,never,210,0.0 +30094,city_48,0.493,Male,Has relevent experience,no_enrollment,High School,,5,,,never,18,0.0 +29952,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,1,112,0.0 +17895,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,Other,,10000+,,never,204,1.0 +8087,city_159,0.843,Male,Has relevent experience,Part time course,Graduate,STEM,11,50-99,Pvt Ltd,2,38,0.0 +32462,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,1,196,0.0 +1001,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Public Sector,>4,36,0.0 +2608,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,116,1.0 +6267,city_93,0.865,Male,Has relevent experience,no_enrollment,High School,,15,50-99,Pvt Ltd,4,63,0.0 +15596,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,15,,,never,8,0.0 +26464,city_105,0.794,Male,Has relevent experience,Part time course,Graduate,STEM,9,,Pvt Ltd,1,11,0.0 +21810,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,,,never,50,1.0 +30953,city_21,0.624,,No relevent experience,no_enrollment,High School,,<1,,,never,15,0.0 +14194,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,>4,146,0.0 +23123,city_90,0.698,,Has relevent experience,no_enrollment,,,6,50-99,Pvt Ltd,1,18,0.0 +14853,city_128,0.527,,Has relevent experience,no_enrollment,Masters,STEM,5,500-999,Pvt Ltd,1,46,1.0 +24130,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,<10,Pvt Ltd,1,18,1.0 +5383,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,22,0.0 +21627,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,<10,Pvt Ltd,1,17,1.0 +26359,city_27,0.848,Male,Has relevent experience,Full time course,High School,,4,50-99,Early Stage Startup,2,78,0.0 +32231,city_57,0.866,Male,Has relevent experience,Full time course,Masters,STEM,8,,,2,61,0.0 +3694,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,114,0.0 +5011,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,never,67,0.0 +682,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,7,,,never,24,0.0 +27923,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,,1,24,0.0 +22373,city_42,0.563,,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,NGO,>4,108,0.0 +31179,city_33,0.44799999999999995,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,28,0.0 +8374,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Funded Startup,2,56,0.0 +27050,city_103,0.92,Male,No relevent experience,Full time course,High School,,6,50-99,NGO,4,27,0.0 +13074,city_150,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,24,1.0 +27249,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,1,19,0.0 +13343,city_115,0.789,Male,No relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,3,82,0.0 +17726,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Other,1,112,0.0 +17560,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,>4,100,1.0 +28710,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,2,56,1.0 +18627,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,Humanities,3,<10,Pvt Ltd,1,28,0.0 +32004,city_67,0.855,Female,No relevent experience,Full time course,High School,,3,10000+,,1,34,0.0 +28685,city_99,0.915,,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,53,0.0 +30283,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,never,129,1.0 +28823,city_89,0.925,,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,>4,292,1.0 +18918,city_16,0.91,,Has relevent experience,no_enrollment,Phd,STEM,>20,5000-9999,NGO,2,130,0.0 +29699,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,6,10000+,Public Sector,2,136,0.0 +9643,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Funded Startup,1,40,0.0 +19935,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,2,21,0.0 +7980,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,>4,67,0.0 +3811,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,2,,,never,69,0.0 +8302,city_142,0.727,Female,Has relevent experience,Part time course,Graduate,STEM,7,100-500,Pvt Ltd,2,127,0.0 +8228,city_67,0.855,Male,Has relevent experience,Part time course,Graduate,STEM,2,10000+,Pvt Ltd,1,73,1.0 +20575,city_21,0.624,,No relevent experience,,,,5,,,,98,0.0 +14186,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,74,0.0 +30285,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,3,,,1,28,1.0 +31843,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,4,108,0.0 +11680,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,2,38,0.0 +11492,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Funded Startup,1,54,0.0 +20468,city_149,0.6890000000000001,,No relevent experience,no_enrollment,Primary School,,<1,,,1,14,0.0 +3601,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,8,10000+,Pvt Ltd,2,8,0.0 +11591,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,9,,,never,63,0.0 +1470,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,15,,Pvt Ltd,never,20,1.0 +11127,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,4,0.0 +16872,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,STEM,19,10000+,NGO,>4,11,0.0 +27177,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,50-99,Funded Startup,>4,30,0.0 +7080,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Public Sector,2,48,0.0 +20448,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,8,,,never,36,0.0 +14252,city_103,0.92,Male,No relevent experience,Full time course,High School,,4,,,1,81,0.0 +9803,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,20,100-500,Pvt Ltd,>4,9,0.0 +19431,city_103,0.92,Male,No relevent experience,Full time course,High School,,12,,,3,8,1.0 +18682,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,,Pvt Ltd,2,12,1.0 +7890,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,10,100-500,Pvt Ltd,>4,94,0.0 +12334,city_59,0.775,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,3,12,0.0 +21229,city_159,0.843,Male,No relevent experience,Full time course,Graduate,No Major,<1,,,never,23,1.0 +11766,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Pvt Ltd,1,54,0.0 +31558,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,74,0.0 +24104,city_44,0.725,Male,Has relevent experience,Full time course,Graduate,STEM,6,50-99,,3,10,1.0 +4180,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,8,50-99,Pvt Ltd,1,11,1.0 +17406,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,27,0.0 +29368,city_71,0.884,Male,Has relevent experience,no_enrollment,Primary School,,11,1000-4999,Pvt Ltd,1,52,0.0 +32822,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,3,51,1.0 +5419,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Arts,4,,,1,6,1.0 +17598,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,56,1.0 +1849,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,9,10/49,Pvt Ltd,3,79,0.0 +26770,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,99,1.0 +12579,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,Pvt Ltd,>4,34,0.0 +9903,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,4,51,1.0 +4664,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,6,,,1,182,0.0 +3042,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,64,0.0 +23177,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,15,10/49,Pvt Ltd,1,6,0.0 +31813,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,6,,,1,6,1.0 +18532,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,1,45,1.0 +3819,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,No Major,16,10/49,Pvt Ltd,>4,8,0.0 +7854,city_16,0.91,,Has relevent experience,Part time course,Graduate,STEM,4,1000-4999,Pvt Ltd,4,56,0.0 +9016,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Early Stage Startup,never,85,0.0 +19400,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,1,36,1.0 +15360,city_115,0.789,Male,No relevent experience,,Graduate,STEM,5,,,2,214,0.0 +5876,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,,100-500,Pvt Ltd,,256,0.0 +31432,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,never,43,0.0 +3814,city_116,0.743,Male,Has relevent experience,no_enrollment,Phd,STEM,13,,,1,23,0.0 +4007,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,>4,119,0.0 +18001,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,,1,38,0.0 +18233,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Funded Startup,1,141,0.0 +19235,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Other,9,50-99,Pvt Ltd,4,4,0.0 +29351,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,>4,36,0.0 +16411,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,3,100-500,Pvt Ltd,1,46,0.0 +16939,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,43,1.0 +31076,city_97,0.925,Male,Has relevent experience,Part time course,Masters,STEM,9,50-99,Pvt Ltd,>4,23,0.0 +19427,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,1,48,0.0 +23996,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,Humanities,2,,,2,43,1.0 +30049,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,1,122,0.0 +14649,city_150,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Public Sector,1,35,0.0 +13689,city_69,0.856,,No relevent experience,Full time course,Graduate,STEM,<1,,,2,74,0.0 +9046,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,104,0.0 +14432,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,4,306,0.0 +16555,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,>4,105,0.0 +20780,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,3,34,0.0 +19201,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,50-99,Pvt Ltd,>4,21,0.0 +21285,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Early Stage Startup,2,78,0.0 +29747,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Public Sector,2,53,0.0 +16332,city_136,0.897,,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Public Sector,3,40,1.0 +3370,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,>4,56,0.0 +28855,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,,10,10000+,Pvt Ltd,3,14,0.0 +30457,city_160,0.92,Male,No relevent experience,no_enrollment,High School,,1,,Pvt Ltd,1,82,0.0 +2940,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,8,<10,Early Stage Startup,2,54,0.0 +6439,city_160,0.92,,No relevent experience,no_enrollment,High School,,<1,50-99,NGO,4,40,0.0 +24568,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,10,<10,NGO,1,46,0.0 +571,city_16,0.91,Other,No relevent experience,Full time course,Graduate,STEM,8,,,1,53,1.0 +1501,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Other,1,20,0.0 +14375,city_123,0.738,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,2,35,0.0 +26867,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,7,50-99,Pvt Ltd,2,21,0.0 +14447,city_45,0.89,Male,Has relevent experience,no_enrollment,High School,,16,<10,Pvt Ltd,>4,48,0.0 +14862,city_50,0.8959999999999999,,Has relevent experience,,Graduate,STEM,16,5000-9999,Public Sector,>4,50,0.0 +17705,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,>4,192,0.0 +29026,city_39,0.898,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,never,160,0.0 +1313,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,6,0.0 +14108,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,2,113,1.0 +21787,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,31,0.0 +3905,city_67,0.855,,Has relevent experience,Full time course,Graduate,STEM,3,,,1,2,0.0 +13322,city_103,0.92,,No relevent experience,no_enrollment,,,2,,,never,42,0.0 +1482,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,>4,52,0.0 +25561,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,17,0.0 +8554,city_134,0.698,Male,No relevent experience,Full time course,High School,,3,,,,51,0.0 +13669,city_100,0.887,Female,No relevent experience,Full time course,High School,,1,,,1,31,0.0 +14657,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,4,10/49,Pvt Ltd,,12,0.0 +8200,city_36,0.893,Male,No relevent experience,no_enrollment,Masters,STEM,4,100-500,NGO,1,88,0.0 +617,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Public Sector,1,55,0.0 +9457,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Other,20,,,>4,59,0.0 +12433,city_28,0.9390000000000001,Male,No relevent experience,Full time course,High School,,3,10000+,Pvt Ltd,3,36,0.0 +32218,city_126,0.479,Male,No relevent experience,,Primary School,,>20,,,never,222,0.0 +29950,city_41,0.8270000000000001,Male,No relevent experience,no_enrollment,High School,,3,,,never,28,0.0 +30797,city_21,0.624,Male,No relevent experience,Part time course,High School,,1,,Pvt Ltd,never,96,0.0 +2623,city_116,0.743,,Has relevent experience,no_enrollment,Masters,STEM,4,,,1,23,1.0 +18397,city_90,0.698,,No relevent experience,,Graduate,STEM,<1,<10,,,55,1.0 +29947,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Funded Startup,1,24,0.0 +17126,city_70,0.698,Male,No relevent experience,,Graduate,Humanities,3,,,1,113,0.0 +3472,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,>20,500-999,Pvt Ltd,>4,54,1.0 +14185,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10/49,Pvt Ltd,>4,64,0.0 +24518,city_73,0.754,Other,Has relevent experience,Part time course,High School,,10,10000+,,1,22,0.0 +2234,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,1,81,0.0 +12849,city_16,0.91,Male,No relevent experience,Full time course,High School,,3,,,never,51,0.0 +12864,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,1,136,0.0 +23650,city_12,0.64,Male,Has relevent experience,no_enrollment,Graduate,Arts,8,50-99,,1,6,0.0 +33102,city_61,0.9129999999999999,Male,No relevent experience,Full time course,Masters,STEM,4,,,1,23,1.0 +22850,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,2,18,0.0 +13325,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,2,107,0.0 +27109,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,NGO,>4,26,0.0 +28826,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,14,500-999,Pvt Ltd,1,28,1.0 +3984,city_103,0.92,Male,Has relevent experience,Full time course,High School,,8,100-500,Pvt Ltd,1,276,0.0 +27352,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,3,34,0.0 +26838,city_33,0.44799999999999995,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,>4,74,0.0 +25577,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,5,1000-4999,Pvt Ltd,1,54,0.0 +20549,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,<10,Public Sector,2,83,0.0 +27174,city_136,0.897,,No relevent experience,no_enrollment,Masters,Humanities,10,,,2,97,0.0 +16468,city_102,0.804,,Has relevent experience,Part time course,Graduate,Humanities,3,100-500,Funded Startup,1,56,0.0 +31522,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,Early Stage Startup,1,134,0.0 +22335,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Early Stage Startup,>4,34,0.0 +11697,city_115,0.789,Female,No relevent experience,no_enrollment,Graduate,STEM,17,,,>4,40,0.0 +10153,city_61,0.9129999999999999,Male,No relevent experience,Full time course,Graduate,STEM,11,,,1,77,1.0 +2871,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Public Sector,3,11,1.0 +12530,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,5,,,never,47,0.0 +4411,city_103,0.92,Female,No relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Pvt Ltd,1,26,0.0 +19514,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Early Stage Startup,2,110,1.0 +5584,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,10,0.0 +9297,city_11,0.55,,No relevent experience,Full time course,Masters,STEM,1,<10,Pvt Ltd,1,42,0.0 +36,city_10,0.895,Male,No relevent experience,no_enrollment,,,3,<10,Pvt Ltd,2,4,0.0 +16031,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,42,0.0 +21928,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,NGO,1,4,0.0 +16868,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Pvt Ltd,1,7,1.0 +15146,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,10/49,Pvt Ltd,1,158,1.0 +30798,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,2,88,0.0 +14550,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,<1,50-99,Early Stage Startup,1,50,1.0 +23619,city_116,0.743,Male,No relevent experience,Full time course,Graduate,STEM,7,,,3,33,1.0 +10644,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,<1,50-99,Pvt Ltd,1,26,1.0 +14442,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,91,0.0 +17345,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,11,50-99,Pvt Ltd,>4,26,1.0 +2334,city_83,0.9229999999999999,Female,No relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,1,10,0.0 +11938,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,11,,,1,87,1.0 +8948,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Public Sector,1,19,0.0 +6454,city_99,0.915,Male,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,1,17,0.0 +24036,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,9,,,never,78,1.0 +11587,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,,2,14,0.0 +23118,city_128,0.527,Male,No relevent experience,Full time course,High School,,<1,,,never,2,1.0 +16572,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,4,50-99,Pvt Ltd,never,42,0.0 +21880,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,14,<10,Pvt Ltd,1,138,0.0 +25625,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,15,,,2,54,0.0 +8804,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,7,,,never,10,0.0 +24207,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,11,1000-4999,Pvt Ltd,1,16,0.0 +28213,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,50,1.0 +27250,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,3,52,1.0 +26901,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,16,0.0 +18011,city_131,0.68,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,64,1.0 +9285,city_138,0.836,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,,2,35,0.0 +32588,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,216,1.0 +18634,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,10,500-999,Pvt Ltd,>4,50,0.0 +8569,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,14,1.0 +29935,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,17,0.0 +31500,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,1,31,0.0 +32217,city_16,0.91,Female,No relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,206,0.0 +26475,city_10,0.895,Other,No relevent experience,Full time course,Masters,STEM,3,,,2,105,0.0 +31989,city_118,0.722,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,36,0.0 +14374,city_149,0.6890000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,4,100-500,Public Sector,1,16,0.0 +29107,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Public Sector,1,107,1.0 +26729,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Pvt Ltd,1,14,0.0 +29060,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,>4,163,0.0 +11376,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Funded Startup,4,52,0.0 +30416,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,6,,,never,61,0.0 +28135,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,STEM,>20,,,never,224,0.0 +4966,city_71,0.884,Male,No relevent experience,,Primary School,,4,,,never,97,0.0 +10622,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,1,100-500,Public Sector,1,21,0.0 +11854,city_61,0.9129999999999999,Male,No relevent experience,Full time course,Graduate,Humanities,1,<10,NGO,1,25,0.0 +21175,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,129,0.0 +32253,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,4,129,0.0 +24541,city_145,0.555,Other,No relevent experience,Part time course,Graduate,STEM,3,50-99,Pvt Ltd,1,12,1.0 +5248,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,Pvt Ltd,never,53,0.0 +21678,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,154,0.0 +32121,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,52,0.0 +22242,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Public Sector,>4,56,1.0 +16946,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,14,100-500,Public Sector,2,105,0.0 +27397,city_57,0.866,Male,No relevent experience,Full time course,Graduate,STEM,8,,,never,111,0.0 +11978,city_149,0.6890000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,10,,,1,90,1.0 +16730,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,<10,Pvt Ltd,>4,62,0.0 +10785,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,56,1.0 +15888,city_16,0.91,,Has relevent experience,no_enrollment,Masters,Humanities,2,50-99,Pvt Ltd,2,82,0.0 +5223,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,NGO,1,136,0.0 +24150,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,4,5000-9999,Pvt Ltd,4,54,1.0 +32721,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,7,,Public Sector,,11,0.0 +891,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,never,26,0.0 +2899,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,4,,,4,114,1.0 +18297,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,6,10000+,,>4,56,1.0 +3801,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,5,5000-9999,Pvt Ltd,>4,69,0.0 +31235,city_101,0.5579999999999999,,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,46,0.0 +25,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,1,126,0.0 +20030,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,1,48,0.0 +12544,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,Funded Startup,1,212,1.0 +30325,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,Other,3,50-99,Pvt Ltd,never,32,0.0 +10533,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Other,3,11,0.0 +11543,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,STEM,14,500-999,Pvt Ltd,3,36,0.0 +12746,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,99,0.0 +19578,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,1,10/49,,1,2,0.0 +1579,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,102,0.0 +9210,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Early Stage Startup,1,21,0.0 +420,city_103,0.92,Male,No relevent experience,no_enrollment,,,7,,Pvt Ltd,never,108,0.0 +19613,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,4,76,0.0 +27273,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,1,104,0.0 +30062,city_16,0.91,Female,No relevent experience,Full time course,Masters,STEM,15,50-99,Public Sector,3,33,0.0 +1900,city_98,0.9490000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,14,,Pvt Ltd,never,70,0.0 +7003,city_144,0.84,,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Public Sector,1,78,1.0 +30425,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,19,<10,Pvt Ltd,1,108,0.0 +21357,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,never,30,1.0 +27477,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,1,75,0.0 +24713,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,3,43,0.0 +29144,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,1,36,1.0 +31168,city_114,0.9259999999999999,,Has relevent experience,Part time course,Graduate,STEM,9,50-99,Pvt Ltd,>4,77,0.0 +6676,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,9,5000-9999,Pvt Ltd,1,4,0.0 +27948,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,7,0.0 +10459,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,never,40,0.0 +27666,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Early Stage Startup,2,45,0.0 +11993,city_20,0.7959999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,2,54,0.0 +7634,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,145,0.0 +8516,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,46,1.0 +7841,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,,1,21,0.0 +2910,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Funded Startup,3,72,0.0 +6047,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,4,100-500,Pvt Ltd,2,76,0.0 +18755,city_10,0.895,,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,2,53,0.0 +31647,city_78,0.579,Male,Has relevent experience,Full time course,Graduate,STEM,5,,,2,28,0.0 +14088,city_114,0.9259999999999999,Male,No relevent experience,,High School,,4,,,never,46,0.0 +7694,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,39,0.0 +7444,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,7,,,2,19,1.0 +24752,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,6,1.0 +16771,city_126,0.479,,Has relevent experience,Full time course,,,2,100-500,Early Stage Startup,1,48,1.0 +23944,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,500-999,Pvt Ltd,1,18,0.0 +20230,city_40,0.7759999999999999,,Has relevent experience,Full time course,Masters,STEM,15,100-500,Funded Startup,2,39,0.0 +19712,city_100,0.887,,Has relevent experience,no_enrollment,Masters,STEM,15,,Public Sector,4,24,0.0 +7878,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,3,,,never,90,0.0 +23897,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,1,10,0.0 +11873,city_46,0.762,Male,No relevent experience,no_enrollment,Phd,STEM,14,100-500,Public Sector,never,188,0.0 +31080,city_10,0.895,Male,Has relevent experience,Full time course,Graduate,STEM,9,100-500,Pvt Ltd,2,10,1.0 +24578,city_116,0.743,,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,43,1.0 +325,city_36,0.893,Male,No relevent experience,Full time course,Graduate,STEM,10,,,never,29,0.0 +316,city_11,0.55,Male,Has relevent experience,Full time course,Graduate,STEM,3,,Pvt Ltd,never,56,1.0 +26293,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,16,5000-9999,Pvt Ltd,1,88,0.0 +25874,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,16,50-99,,2,13,0.0 +13069,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,9,5000-9999,Pvt Ltd,4,117,0.0 +18221,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,,2,158,1.0 +16147,city_103,0.92,,Has relevent experience,no_enrollment,,,20,1000-4999,Pvt Ltd,>4,74,0.0 +16315,city_104,0.924,,Has relevent experience,no_enrollment,,,>20,,,2,25,0.0 +11880,city_26,0.698,Male,No relevent experience,Full time course,High School,,2,,,1,15,1.0 +13260,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,2,18,0.0 +13613,city_116,0.743,,Has relevent experience,no_enrollment,High School,,4,<10,Early Stage Startup,1,14,0.0 +27680,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,1,188,0.0 +23312,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,Pvt Ltd,1,52,1.0 +31085,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Pvt Ltd,2,18,0.0 +15068,city_77,0.83,Male,No relevent experience,no_enrollment,Primary School,,2,,,1,7,0.0 +10148,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,4,74,0.0 +27992,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,>4,22,1.0 +27256,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Pvt Ltd,1,12,0.0 +1259,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Early Stage Startup,>4,35,0.0 +13262,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,No Major,10,,,never,104,0.0 +24408,city_21,0.624,Male,No relevent experience,Full time course,High School,,4,,,never,9,1.0 +25662,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,113,0.0 +10385,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,16,0.0 +16665,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,11,,,>4,53,0.0 +11157,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,3,110,0.0 +8030,city_104,0.924,,No relevent experience,Full time course,Graduate,Other,5,,,1,50,0.0 +25221,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,never,110,0.0 +1287,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,6,0.0 +7940,city_157,0.769,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,Pvt Ltd,1,86,0.0 +17060,city_61,0.9129999999999999,,No relevent experience,no_enrollment,Primary School,,1,,,never,160,0.0 +29555,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,,,16,,,4,118,1.0 +473,city_37,0.794,Male,No relevent experience,Full time course,,,2,,Pvt Ltd,never,178,0.0 +26124,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,4,4,0.0 +7083,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,3,157,0.0 +30246,city_41,0.8270000000000001,,No relevent experience,Full time course,Graduate,STEM,8,,,3,88,1.0 +27911,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,168,0.0 +11255,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,29,0.0 +30528,city_136,0.897,Male,Has relevent experience,Part time course,Graduate,STEM,3,5000-9999,Pvt Ltd,1,31,0.0 +25988,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,>4,7,0.0 +24409,city_40,0.7759999999999999,Female,No relevent experience,no_enrollment,Masters,STEM,1,,,1,49,1.0 +27111,city_16,0.91,Male,No relevent experience,Full time course,High School,,8,,,never,64,0.0 +12449,city_176,0.764,,Has relevent experience,,Masters,STEM,4,,,,24,0.0 +17051,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,34,1.0 +12518,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,1,81,0.0 +17266,city_75,0.9390000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,9,<10,Early Stage Startup,1,114,0.0 +6558,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,58,0.0 +9882,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,35,0.0 +5214,city_67,0.855,Female,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Funded Startup,1,45,0.0 +17260,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,<1,,,>4,70,0.0 +14415,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,2,,,never,14,1.0 +21745,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,1,100-500,Pvt Ltd,1,145,1.0 +9547,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,NGO,>4,65,1.0 +33333,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,Humanities,5,,,1,20,0.0 +27349,city_40,0.7759999999999999,Female,No relevent experience,no_enrollment,Masters,STEM,1,10/49,Pvt Ltd,never,19,1.0 +23522,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,,4,130,0.0 +26369,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,32,1.0 +9880,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Funded Startup,1,19,0.0 +11775,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,3,94,0.0 +26774,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Funded Startup,1,45,0.0 +21832,city_114,0.9259999999999999,,Has relevent experience,Full time course,Phd,STEM,2,10000+,Pvt Ltd,never,47,0.0 +17467,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,,Pvt Ltd,>4,61,0.0 +3166,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,36,0.0 +10361,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,<10,Pvt Ltd,never,172,0.0 +838,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,11,100-500,Pvt Ltd,>4,91,0.0 +25772,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,Arts,1,50-99,Funded Startup,1,62,1.0 +460,city_104,0.924,Male,No relevent experience,Full time course,High School,,3,,,3,99,0.0 +2831,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,304,1.0 +29751,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,10/49,Pvt Ltd,>4,168,0.0 +13692,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,79,0.0 +14959,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,13,,,2,84,1.0 +1369,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,232,0.0 +12286,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,68,0.0 +25674,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,4,14,0.0 +30210,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,2,100-500,Pvt Ltd,2,149,0.0 +31160,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,13,1.0 +15489,city_143,0.74,,Has relevent experience,no_enrollment,Graduate,STEM,14,,,,7,1.0 +11375,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,50,0.0 +17135,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,5,,,1,37,0.0 +19029,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,>4,7,0.0 +25040,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10/49,Pvt Ltd,2,13,1.0 +10091,city_50,0.8959999999999999,,No relevent experience,no_enrollment,Primary School,,5,,,never,9,0.0 +5071,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,17,,,1,77,0.0 +12418,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,55,0.0 +16754,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,57,0.0 +27012,city_13,0.8270000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,47,0.0 +28750,city_2,0.7879999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,126,0.0 +26371,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,3,136,1.0 +19835,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,5,50-99,Pvt Ltd,1,62,0.0 +4647,city_100,0.887,Male,No relevent experience,no_enrollment,High School,,3,,,never,12,0.0 +4724,city_77,0.83,Male,No relevent experience,Full time course,Primary School,,8,,Pvt Ltd,never,10,0.0 +25219,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,11,10/49,Pvt Ltd,>4,109,1.0 +16235,city_75,0.9390000000000001,Male,No relevent experience,Part time course,Graduate,STEM,11,10000+,Public Sector,1,26,0.0 +22621,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,5,,,1,31,0.0 +6142,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,Phd,STEM,>20,500-999,Pvt Ltd,>4,38,0.0 +32760,city_114,0.9259999999999999,Male,No relevent experience,Part time course,High School,,4,,,never,59,0.0 +15503,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,High School,,2,,,1,174,0.0 +5055,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,4,,Pvt Ltd,never,6,0.0 +2981,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,Humanities,17,50-99,Pvt Ltd,>4,26,0.0 +16543,city_114,0.9259999999999999,Other,Has relevent experience,no_enrollment,,,>20,,,never,154,0.0 +13179,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,122,0.0 +32628,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,7,,,1,87,1.0 +33250,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,34,0.0 +4127,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,2,101,0.0 +22454,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,2,23,1.0 +3265,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Humanities,14,,Public Sector,1,45,1.0 +773,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,15,1000-4999,Pvt Ltd,1,37,0.0 +5382,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,45,0.0 +7509,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,36,0.0 +22821,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Public Sector,3,37,0.0 +32991,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,47,0.0 +33296,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Other,10,<10,Pvt Ltd,1,39,0.0 +19414,city_97,0.925,,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,1,17,0.0 +22771,city_16,0.91,Male,No relevent experience,Part time course,High School,,6,,Pvt Ltd,1,250,0.0 +10491,city_157,0.769,,Has relevent experience,no_enrollment,Graduate,Humanities,8,50-99,Pvt Ltd,1,56,0.0 +14559,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,2,<10,Pvt Ltd,2,10,0.0 +16151,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,,,99,0.0 +28023,city_134,0.698,Male,No relevent experience,no_enrollment,Masters,STEM,12,500-999,NGO,1,157,0.0 +9632,city_103,0.92,Female,No relevent experience,no_enrollment,Phd,STEM,8,50-99,Public Sector,1,3,0.0 +31817,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,16,100-500,Pvt Ltd,3,53,0.0 +22419,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,,,>4,29,1.0 +8006,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,142,0.0 +16647,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,2,55,0.0 +31041,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,1,202,0.0 +2996,city_173,0.878,Male,No relevent experience,no_enrollment,Primary School,,6,<10,Pvt Ltd,3,12,0.0 +26772,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,,1,22,0.0 +3895,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,54,0.0 +22030,city_116,0.743,Male,No relevent experience,Full time course,Graduate,STEM,4,,,,128,0.0 +164,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Funded Startup,never,56,1.0 +6229,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,1,10/49,Funded Startup,1,139,1.0 +11298,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,6,,,1,118,0.0 +25813,city_99,0.915,Male,No relevent experience,no_enrollment,Graduate,STEM,2,100-500,Public Sector,1,31,0.0 +4738,city_75,0.9390000000000001,,No relevent experience,Full time course,Graduate,STEM,<1,,,,94,0.0 +26330,city_21,0.624,Male,Has relevent experience,no_enrollment,,,12,,,1,40,1.0 +4662,city_102,0.804,Male,No relevent experience,no_enrollment,Masters,STEM,18,,,1,149,0.0 +16581,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,2,14,0.0 +7658,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,1,80,0.0 +17349,city_21,0.624,Female,No relevent experience,Full time course,High School,,3,,,never,55,0.0 +20488,city_77,0.83,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,43,0.0 +18609,city_23,0.899,Male,Has relevent experience,Full time course,High School,,8,10/49,Pvt Ltd,4,63,0.0 +7254,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,4,500-999,Pvt Ltd,1,108,0.0 +15795,city_104,0.924,Male,Has relevent experience,no_enrollment,High School,,14,<10,Pvt Ltd,1,38,0.0 +24879,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,1000-4999,Pvt Ltd,1,110,0.0 +24620,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,1,86,1.0 +12753,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,1,44,0.0 +13380,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,21,0.0 +32729,city_16,0.91,,Has relevent experience,Part time course,Graduate,Humanities,6,10/49,Pvt Ltd,4,23,1.0 +20234,city_114,0.9259999999999999,,No relevent experience,,,,8,,,1,86,0.0 +30289,city_103,0.92,Male,Has relevent experience,Part time course,Masters,STEM,11,500-999,Public Sector,>4,102,0.0 +32317,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,NGO,1,31,0.0 +1357,city_73,0.754,Male,Has relevent experience,no_enrollment,High School,,7,100-500,Pvt Ltd,2,48,0.0 +30069,city_102,0.804,Male,No relevent experience,Part time course,Masters,STEM,7,,,>4,139,1.0 +27755,city_61,0.9129999999999999,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,15,1.0 +8640,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,9,1000-4999,NGO,,136,1.0 +29179,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,4,286,0.0 +17411,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,Other,6,,,1,106,1.0 +2632,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Phd,STEM,>20,<10,Pvt Ltd,>4,98,0.0 +20998,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,3,156,0.0 +6571,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,47,0.0 +19789,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,13,50-99,Pvt Ltd,>4,2,1.0 +31885,city_100,0.887,Male,No relevent experience,no_enrollment,Graduate,Humanities,15,100-500,Public Sector,>4,86,0.0 +15784,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,68,0.0 +8928,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10/49,Pvt Ltd,2,110,0.0 +19185,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Pvt Ltd,4,28,1.0 +21131,city_114,0.9259999999999999,,Has relevent experience,Full time course,Masters,STEM,4,10000+,,2,24,0.0 +13376,city_145,0.555,,Has relevent experience,no_enrollment,Masters,STEM,19,10000+,Pvt Ltd,2,57,1.0 +19304,city_138,0.836,,Has relevent experience,no_enrollment,Masters,STEM,11,,,never,144,0.0 +32408,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,5,,Pvt Ltd,never,25,0.0 +29721,city_165,0.903,Male,No relevent experience,no_enrollment,High School,,7,10/49,Pvt Ltd,1,41,0.0 +14084,city_100,0.887,,No relevent experience,Full time course,Masters,Humanities,6,,NGO,3,88,0.0 +15919,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,110,0.0 +2254,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,42,0.0 +4873,city_159,0.843,,No relevent experience,Full time course,Graduate,STEM,4,,Pvt Ltd,never,27,0.0 +28868,city_103,0.92,,No relevent experience,no_enrollment,,,3,,,1,17,1.0 +29980,city_11,0.55,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,1,23,0.0 +18641,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Other,2,26,0.0 +14313,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,134,1.0 +19106,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,68,0.0 +28519,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,1,34,1.0 +21895,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,12,10/49,Pvt Ltd,1,113,0.0 +22908,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,19,10/49,Pvt Ltd,1,16,1.0 +14117,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,6,,,1,24,1.0 +21393,city_114,0.9259999999999999,Female,Has relevent experience,Part time course,High School,,1,100-500,Pvt Ltd,1,35,0.0 +4094,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Funded Startup,1,54,0.0 +16976,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,3,,,2,28,0.0 +11715,city_176,0.764,Male,Has relevent experience,no_enrollment,High School,,4,10/49,Pvt Ltd,1,114,0.0 +23939,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,7,10/49,Public Sector,4,46,0.0 +31864,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,1,,,never,63,0.0 +2261,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,2,17,0.0 +17371,city_158,0.7659999999999999,Male,Has relevent experience,Full time course,High School,,6,,,1,131,0.0 +16650,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,NGO,1,20,0.0 +27129,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,500-999,Pvt Ltd,2,84,1.0 +12247,city_102,0.804,,Has relevent experience,no_enrollment,,,15,50-99,Pvt Ltd,>4,21,0.0 +26945,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,8,50-99,Pvt Ltd,1,41,0.0 +606,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10/49,Pvt Ltd,1,10,0.0 +17119,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,16,,,never,9,0.0 +23645,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,2,58,0.0 +18173,city_149,0.6890000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,16,<10,Early Stage Startup,4,51,0.0 +15387,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,500-999,Funded Startup,1,113,0.0 +29905,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,STEM,12,,,>4,35,0.0 +27359,city_11,0.55,Male,Has relevent experience,Part time course,Masters,STEM,9,50-99,Pvt Ltd,3,10,1.0 +23482,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,>4,56,0.0 +29523,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,NGO,1,67,0.0 +28164,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,11,0.0 +25765,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,17,100-500,,4,34,1.0 +188,city_160,0.92,,Has relevent experience,Full time course,Graduate,STEM,18,50-99,Public Sector,3,68,0.0 +897,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,2,102,0.0 +22397,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,70,0.0 +20947,city_136,0.897,Male,No relevent experience,no_enrollment,High School,,4,,,never,42,0.0 +22434,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,2,,,never,58,1.0 +32858,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10/49,Early Stage Startup,1,178,0.0 +6254,city_103,0.92,Male,No relevent experience,no_enrollment,,,5,,,never,94,0.0 +1128,city_100,0.887,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,12,1.0 +29315,city_61,0.9129999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,5,<10,Early Stage Startup,1,78,0.0 +11716,city_138,0.836,Male,Has relevent experience,Part time course,High School,,9,50-99,Pvt Ltd,2,8,0.0 +6395,city_67,0.855,Female,No relevent experience,Full time course,High School,,3,,,never,56,0.0 +23898,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,2,128,0.0 +6498,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Public Sector,>4,20,0.0 +18729,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,2,45,0.0 +23717,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,never,72,0.0 +30226,city_16,0.91,Female,Has relevent experience,no_enrollment,High School,,2,10/49,,1,25,0.0 +662,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Arts,10,50-99,NGO,2,188,0.0 +26707,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Funded Startup,1,54,0.0 +17468,city_118,0.722,Male,No relevent experience,Part time course,High School,,1,,,never,56,1.0 +30068,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,NGO,>4,70,0.0 +12761,city_57,0.866,,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Early Stage Startup,1,141,0.0 +7664,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Funded Startup,2,17,0.0 +2587,city_71,0.884,,Has relevent experience,Full time course,Primary School,,4,50-99,Early Stage Startup,1,46,0.0 +26079,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,1000-4999,Pvt Ltd,1,135,0.0 +7574,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Business Degree,4,100-500,Funded Startup,1,34,0.0 +19561,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,2,26,0.0 +8621,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,>4,46,0.0 +4557,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,never,34,0.0 +19573,city_93,0.865,Male,Has relevent experience,Full time course,Graduate,STEM,11,,,2,20,1.0 +272,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,6,,,2,30,0.0 +20238,city_104,0.924,Male,No relevent experience,no_enrollment,Masters,STEM,13,,,2,30,0.0 +32702,city_21,0.624,Male,No relevent experience,Full time course,High School,,<1,,,never,200,0.0 +1793,city_157,0.769,Male,Has relevent experience,Part time course,Graduate,STEM,5,10000+,Pvt Ltd,1,11,0.0 +10878,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,High School,,2,,,1,20,0.0 +18875,city_114,0.9259999999999999,,Has relevent experience,Part time course,Graduate,STEM,10,10/49,Early Stage Startup,1,4,0.0 +7134,city_103,0.92,Male,Has relevent experience,no_enrollment,Primary School,,8,50-99,,1,180,0.0 +30928,city_123,0.738,,Has relevent experience,Full time course,Graduate,STEM,10,,,1,102,1.0 +11254,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,2,,,1,74,1.0 +12942,city_90,0.698,,No relevent experience,no_enrollment,Graduate,STEM,8,,,never,200,0.0 +13802,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,28,0.0 +32686,city_21,0.624,Male,Has relevent experience,,Masters,STEM,8,,,2,68,1.0 +16450,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,1,50,0.0 +9769,city_103,0.92,Female,Has relevent experience,no_enrollment,Phd,STEM,5,50-99,Pvt Ltd,2,82,0.0 +23695,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,22,0.0 +4254,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,25,0.0 +16003,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,72,1.0 +23061,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,1,<10,Pvt Ltd,never,52,0.0 +16352,city_20,0.7959999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,3,20,0.0 +31242,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,141,1.0 +26685,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Funded Startup,1,8,0.0 +13417,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,1,11,1.0 +2647,city_176,0.764,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,Pvt Ltd,1,62,0.0 +27807,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,77,1.0 +28566,city_138,0.836,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,2,180,0.0 +2967,city_30,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,7,0.0 +21997,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,never,72,0.0 +20667,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Early Stage Startup,1,40,0.0 +27656,city_167,0.9209999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,>4,200,0.0 +32753,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,,,1,49,0.0 +15845,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,<1,10/49,Early Stage Startup,1,33,0.0 +6584,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,7,,,never,44,0.0 +12948,city_16,0.91,,No relevent experience,no_enrollment,High School,,2,,,never,157,0.0 +22276,city_106,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,3,51,0.0 +21612,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,1,38,0.0 +27007,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Arts,>20,,,1,13,1.0 +27070,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,15,0.0 +14825,city_2,0.7879999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,20,<10,Funded Startup,2,6,0.0 +32053,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,80,1.0 +18447,city_23,0.899,Male,Has relevent experience,no_enrollment,Masters,STEM,13,10/49,Funded Startup,2,28,0.0 +2856,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,4,108,0.0 +10520,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,61,0.0 +2203,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,4,10000+,Pvt Ltd,4,50,1.0 +13890,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,>4,50,0.0 +30693,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,High School,,16,500-999,Public Sector,>4,60,0.0 +11336,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,3,138,0.0 +18836,city_136,0.897,,No relevent experience,Full time course,Graduate,,3,,,never,37,0.0 +12650,city_114,0.9259999999999999,Male,No relevent experience,Part time course,High School,,3,100-500,Pvt Ltd,3,105,1.0 +3332,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,2,109,0.0 +12222,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,43,0.0 +14167,city_103,0.92,,No relevent experience,Full time course,High School,,3,,,1,16,1.0 +17408,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,12,0.0 +9946,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,>4,112,0.0 +19771,city_102,0.804,,No relevent experience,Full time course,Masters,STEM,9,100-500,Pvt Ltd,>4,92,0.0 +19736,city_28,0.9390000000000001,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,2,144,0.0 +11061,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,17,1.0 +2347,city_67,0.855,Male,Has relevent experience,Part time course,Graduate,STEM,10,50-99,Pvt Ltd,1,99,0.0 +8461,city_103,0.92,,Has relevent experience,Part time course,Masters,STEM,11,100-500,Funded Startup,2,100,0.0 +13465,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,11,,,2,178,0.0 +19838,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,22,0.0 +7795,city_70,0.698,,Has relevent experience,Full time course,Graduate,STEM,10,100-500,Pvt Ltd,2,7,1.0 +5054,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,>4,240,0.0 +16638,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,2,30,0.0 +5513,city_103,0.92,Male,No relevent experience,Full time course,High School,,4,10000+,Pvt Ltd,1,194,0.0 +15138,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,97,0.0 +2541,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,68,0.0 +1244,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,1,72,0.0 +28967,city_11,0.55,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,92,1.0 +21426,city_57,0.866,,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,Pvt Ltd,1,3,0.0 +22622,city_100,0.887,,Has relevent experience,no_enrollment,High School,,4,<10,Pvt Ltd,4,12,0.0 +413,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,1,10,0.0 +26739,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Public Sector,>4,157,0.0 +14573,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Masters,STEM,16,,Public Sector,never,10,1.0 +5045,city_103,0.92,,Has relevent experience,no_enrollment,Phd,STEM,16,100-500,Funded Startup,1,113,0.0 +7336,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,100-500,Funded Startup,2,26,0.0 +31231,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,124,0.0 +29080,city_21,0.624,Male,No relevent experience,Part time course,Graduate,No Major,9,,,never,34,0.0 +24267,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,1,25,0.0 +19933,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,12,0.0 +32952,city_176,0.764,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,2,36,1.0 +22645,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,4,28,0.0 +2638,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,91,0.0 +20859,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,4,26,0.0 +9472,city_7,0.647,Female,Has relevent experience,no_enrollment,Masters,STEM,3,10000+,,1,100,0.0 +25691,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Funded Startup,2,21,0.0 +1106,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,33,0.0 +22365,city_99,0.915,,No relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,25,0.0 +14251,city_142,0.727,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,2,21,0.0 +2497,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Funded Startup,>4,79,0.0 +31423,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,2,107,1.0 +3067,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,1,28,0.0 +4087,city_94,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,2,51,0.0 +8360,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,2,31,0.0 +10543,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,5,10/49,Funded Startup,1,11,0.0 +4023,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,NGO,1,85,0.0 +306,city_61,0.9129999999999999,Male,No relevent experience,Full time course,Graduate,STEM,2,,,2,84,0.0 +11290,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,1,48,0.0 +4238,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,1,60,1.0 +23191,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Funded Startup,1,48,0.0 +11981,city_74,0.579,,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,1,79,1.0 +13661,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,High School,,11,5000-9999,Pvt Ltd,1,26,1.0 +1353,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,150,1.0 +4668,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,19,100-500,Pvt Ltd,>4,34,0.0 +26597,city_16,0.91,Female,No relevent experience,Full time course,Graduate,STEM,9,,,>4,89,1.0 +27767,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,6,10000+,Pvt Ltd,1,26,0.0 +22832,city_21,0.624,,No relevent experience,Full time course,High School,,<1,,,never,24,0.0 +15979,city_67,0.855,,No relevent experience,Full time course,Graduate,Other,3,,,1,13,1.0 +10511,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,26,0.0 +28256,city_104,0.924,Male,No relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,1,28,0.0 +14993,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,4,0.0 +15985,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,2,45,0.0 +23161,city_103,0.92,Male,No relevent experience,Part time course,High School,,3,<10,Pvt Ltd,3,36,1.0 +17522,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,50-99,Funded Startup,1,9,1.0 +5830,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,,,1,116,1.0 +24749,city_142,0.727,,Has relevent experience,no_enrollment,Masters,STEM,7,,,1,50,1.0 +17857,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,Arts,4,,,never,51,1.0 +14459,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,4,113,0.0 +15852,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,2,50-99,Pvt Ltd,2,8,0.0 +18924,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,STEM,1,,,1,81,0.0 +18605,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,,28,0.0 +24863,city_73,0.754,Male,No relevent experience,Part time course,High School,,4,,,2,66,0.0 +26813,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,10000+,Pvt Ltd,1,29,0.0 +21098,city_45,0.89,,No relevent experience,Full time course,Graduate,STEM,4,,,1,107,1.0 +16505,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Other,7,100-500,Pvt Ltd,1,62,0.0 +9507,city_36,0.893,Male,Has relevent experience,no_enrollment,High School,,16,,,>4,35,0.0 +12294,city_123,0.738,,No relevent experience,no_enrollment,High School,,4,,,never,12,0.0 +11424,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,Pvt Ltd,1,10,1.0 +18704,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Funded Startup,2,288,0.0 +23092,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,,1,3,1.0 +12902,city_30,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,4,100-500,Pvt Ltd,1,33,0.0 +12547,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,18,,,2,17,0.0 +31164,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,84,1.0 +19265,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,7,,,1,41,1.0 +29397,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,NGO,2,17,0.0 +26064,city_71,0.884,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,500-999,NGO,2,132,0.0 +11320,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Business Degree,2,5000-9999,Pvt Ltd,1,148,0.0 +3864,city_10,0.895,Male,Has relevent experience,Part time course,Graduate,STEM,19,<10,Early Stage Startup,4,6,0.0 +22173,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Business Degree,5,5000-9999,Pvt Ltd,>4,141,0.0 +32368,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,10/49,Pvt Ltd,>4,63,0.0 +12803,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Public Sector,2,146,1.0 +11402,city_46,0.762,,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Pvt Ltd,2,11,0.0 +23205,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,19,10/49,Pvt Ltd,1,58,0.0 +17149,city_75,0.9390000000000001,Male,Has relevent experience,Full time course,High School,,3,10/49,Pvt Ltd,2,8,0.0 +7995,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,4,100-500,Pvt Ltd,2,66,0.0 +13120,city_11,0.55,Male,No relevent experience,Full time course,Primary School,,3,,,never,210,1.0 +31784,city_78,0.579,,No relevent experience,no_enrollment,Masters,STEM,1,100-500,Public Sector,1,62,1.0 +5315,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,1,,Pvt Ltd,never,94,0.0 +23065,city_46,0.762,Male,Has relevent experience,Full time course,Phd,STEM,7,,,1,24,1.0 +23753,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,52,0.0 +14097,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,16,5000-9999,Pvt Ltd,1,51,0.0 +9898,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Funded Startup,1,52,0.0 +29258,city_84,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Pvt Ltd,1,73,0.0 +19593,city_36,0.893,,No relevent experience,no_enrollment,Masters,Humanities,15,,,>4,9,0.0 +28052,city_133,0.742,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,2,238,0.0 +28947,city_173,0.878,Male,No relevent experience,Full time course,Graduate,STEM,16,,,never,139,0.0 +17024,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,3,5000-9999,Pvt Ltd,3,55,0.0 +8753,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,15,,,4,50,0.0 +3217,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,1,111,0.0 +21116,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,2,1000-4999,Pvt Ltd,1,160,0.0 +13554,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,96,0.0 +766,city_103,0.92,,Has relevent experience,no_enrollment,,,8,,,,92,0.0 +12683,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,Arts,<1,100-500,Funded Startup,1,36,0.0 +690,city_136,0.897,Male,No relevent experience,no_enrollment,High School,,4,,Pvt Ltd,never,24,0.0 +5394,city_152,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,42,1.0 +12172,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,6,,,1,86,0.0 +13810,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,1,,,never,58,0.0 +17867,city_71,0.884,Female,No relevent experience,no_enrollment,Graduate,Humanities,>20,,,never,7,0.0 +25192,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,Pvt Ltd,1,123,0.0 +7671,city_165,0.903,Male,No relevent experience,Full time course,Graduate,STEM,13,,,1,69,1.0 +21495,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,3,40,0.0 +6783,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,10,<10,Pvt Ltd,>4,53,1.0 +148,city_41,0.8270000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,1,52,0.0 +30754,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,312,0.0 +18576,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,25,0.0 +10986,city_146,0.735,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,56,0.0 +29926,city_103,0.92,,No relevent experience,Full time course,Graduate,Arts,3,,,,41,0.0 +1760,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,10,10000+,Pvt Ltd,2,31,0.0 +25067,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Pvt Ltd,>4,68,1.0 +13055,city_150,0.698,,No relevent experience,Part time course,Masters,STEM,<1,,,2,108,1.0 +7824,city_65,0.802,Male,Has relevent experience,no_enrollment,,,15,<10,,1,78,0.0 +16410,city_21,0.624,Male,No relevent experience,,Graduate,Other,2,10/49,NGO,2,48,1.0 +2504,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,172,0.0 +12494,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,112,0.0 +19088,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,2,20,0.0 +17749,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,,1,10,0.0 +23174,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,<1,,,,61,1.0 +9427,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,17,1000-4999,Pvt Ltd,>4,11,0.0 +2822,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Public Sector,2,32,0.0 +17868,city_144,0.84,Male,Has relevent experience,,Graduate,STEM,10,50-99,Pvt Ltd,>4,2,0.0 +32277,city_9,0.743,Male,No relevent experience,Part time course,Primary School,,2,<10,Early Stage Startup,never,48,0.0 +15002,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,Business Degree,2,10/49,Pvt Ltd,1,78,0.0 +21858,city_26,0.698,Male,No relevent experience,Full time course,Masters,STEM,4,,,1,66,1.0 +1715,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,never,58,0.0 +22738,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,4,13,0.0 +14463,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,3,69,1.0 +19906,city_71,0.884,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,31,1.0 +15435,city_90,0.698,,No relevent experience,Part time course,Graduate,STEM,6,50-99,NGO,2,135,1.0 +29887,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,18,0.0 +19720,city_16,0.91,,No relevent experience,no_enrollment,Masters,STEM,1,,,1,202,0.0 +26678,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,>4,264,0.0 +29412,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,2,156,0.0 +14017,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,15,0.0 +23324,city_75,0.9390000000000001,Male,Has relevent experience,Full time course,High School,,4,1000-4999,Pvt Ltd,1,106,1.0 +26725,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,never,40,0.0 +10111,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,8,100-500,Funded Startup,3,50,0.0 +9060,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,14,0.0 +5533,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,17,,,1,32,1.0 +12422,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,6,10/49,Pvt Ltd,1,18,1.0 +25111,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,500-999,Pvt Ltd,4,60,1.0 +18639,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,122,0.0 +20110,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,1,29,0.0 +7127,city_46,0.762,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,NGO,1,22,0.0 +23509,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,<10,Funded Startup,1,26,0.0 +19748,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,,1,17,0.0 +19837,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,11,0.0 +25873,city_97,0.925,Male,No relevent experience,Full time course,Graduate,STEM,3,<10,Pvt Ltd,1,62,0.0 +23276,city_41,0.8270000000000001,Male,No relevent experience,Full time course,High School,,9,,,never,152,0.0 +16356,city_162,0.767,Male,No relevent experience,no_enrollment,,,3,,,never,9,0.0 +24501,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,2,50-99,Early Stage Startup,1,8,1.0 +19513,city_143,0.74,Male,No relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,2,53,1.0 +10812,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10000+,Pvt Ltd,2,32,1.0 +20353,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Pvt Ltd,1,9,1.0 +9963,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,,3,156,0.0 +25929,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,102,0.0 +27081,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,9,10/49,Pvt Ltd,>4,5,0.0 +20195,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,100-500,Pvt Ltd,>4,136,0.0 +3362,city_67,0.855,,No relevent experience,Full time course,Graduate,STEM,5,,,never,158,0.0 +8470,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,,500-999,Pvt Ltd,,11,0.0 +30460,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,7,,,1,42,1.0 +14509,city_176,0.764,Male,Has relevent experience,Part time course,Graduate,STEM,5,,Pvt Ltd,>4,78,0.0 +4010,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,64,0.0 +25780,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,3,68,1.0 +12267,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Other,>20,50-99,Pvt Ltd,1,78,0.0 +9126,city_21,0.624,,No relevent experience,no_enrollment,Graduate,No Major,15,,,never,18,0.0 +27812,city_11,0.55,Male,No relevent experience,no_enrollment,Masters,Business Degree,4,,,4,39,1.0 +16296,city_149,0.6890000000000001,,No relevent experience,Full time course,High School,,4,,,never,11,0.0 +27341,city_160,0.92,,No relevent experience,Part time course,Graduate,STEM,5,,,never,78,1.0 +28022,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,1,10/49,Pvt Ltd,1,24,1.0 +1980,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,<1,<10,Pvt Ltd,,92,0.0 +27618,city_104,0.924,Male,No relevent experience,Full time course,Masters,STEM,9,100-500,Public Sector,1,45,1.0 +26480,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,110,0.0 +18876,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,82,0.0 +452,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,2,80,0.0 +28227,city_41,0.8270000000000001,,No relevent experience,no_enrollment,High School,,6,,,never,21,1.0 +30637,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,2,31,0.0 +26413,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Pvt Ltd,1,20,0.0 +21292,city_75,0.9390000000000001,,Has relevent experience,Part time course,Graduate,STEM,5,500-999,Public Sector,4,22,0.0 +6843,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,,1,149,1.0 +649,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,100-500,Funded Startup,2,236,0.0 +26442,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Public Sector,2,140,1.0 +11067,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,7,5000-9999,Public Sector,2,68,1.0 +22761,city_136,0.897,,No relevent experience,no_enrollment,Phd,STEM,15,5000-9999,Public Sector,3,111,1.0 +31172,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,19,1.0 +12010,city_64,0.6659999999999999,,No relevent experience,no_enrollment,Graduate,STEM,18,,,>4,18,1.0 +32195,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,4,9,0.0 +2927,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,,,1,67,1.0 +16926,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,5,500-999,Pvt Ltd,1,264,0.0 +13268,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,78,0.0 +9774,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,4,84,0.0 +23440,city_67,0.855,,No relevent experience,no_enrollment,High School,,1,,,never,96,0.0 +33312,city_44,0.725,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,never,160,0.0 +21674,city_70,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,57,1.0 +11524,city_105,0.794,Male,Has relevent experience,Full time course,Graduate,STEM,3,,,2,27,1.0 +25591,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,2,44,1.0 +6035,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,1,2,0.0 +28392,city_28,0.9390000000000001,Female,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,>4,48,0.0 +8988,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,STEM,5,,,2,22,0.0 +3481,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,5000-9999,Pvt Ltd,2,38,0.0 +20004,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,3,100-500,Public Sector,3,84,0.0 +2804,city_16,0.91,,No relevent experience,no_enrollment,High School,,3,,,never,9,0.0 +13393,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,,2,13,0.0 +10388,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,1,40,0.0 +14395,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,26,1.0 +11784,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Funded Startup,1,42,1.0 +20525,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,,,1,13,1.0 +10542,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,13,5000-9999,NGO,1,7,0.0 +26657,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,4,204,0.0 +19579,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,3,50-99,Pvt Ltd,1,15,1.0 +10181,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,107,1.0 +30681,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,5000-9999,Pvt Ltd,1,111,0.0 +7455,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,2,128,0.0 +28635,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,never,163,0.0 +20586,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,Humanities,2,,,1,29,1.0 +7262,city_28,0.9390000000000001,,No relevent experience,no_enrollment,Phd,STEM,6,,Public Sector,,13,0.0 +3649,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,Public Sector,>4,43,1.0 +21271,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,4,,,1,64,0.0 +24276,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,6,,,1,216,1.0 +17443,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,>4,110,0.0 +481,city_1,0.847,Male,No relevent experience,Full time course,High School,,9,,,1,60,0.0 +29505,city_160,0.92,Female,Has relevent experience,Full time course,Graduate,STEM,19,,,>4,48,1.0 +18137,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,>4,12,1.0 +20990,city_136,0.897,,Has relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,1,18,0.0 +6820,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Public Sector,2,7,0.0 +8090,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,>4,163,0.0 +24339,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,7,100-500,Pvt Ltd,1,23,0.0 +21382,city_102,0.804,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,3,92,0.0 +11727,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,4,,,1,131,1.0 +32751,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,<10,Pvt Ltd,never,14,0.0 +4843,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Early Stage Startup,1,15,0.0 +33344,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,53,1.0 +5072,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,1,,,,107,0.0 +25425,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,13,0.0 +21222,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,19,,,3,36,0.0 +30058,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,122,0.0 +4961,city_145,0.555,Male,No relevent experience,Full time course,High School,,2,,,never,17,0.0 +13033,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10/49,Funded Startup,2,77,0.0 +28760,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,5000-9999,Pvt Ltd,1,50,1.0 +10880,city_16,0.91,,No relevent experience,no_enrollment,High School,,2,,,never,59,1.0 +22648,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,>20,50-99,Pvt Ltd,,2,0.0 +22788,city_104,0.924,,No relevent experience,no_enrollment,Primary School,,1,,,never,14,0.0 +13360,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,16,,,>4,161,0.0 +5812,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,4,,,never,121,0.0 +9440,city_118,0.722,,No relevent experience,no_enrollment,High School,,2,,,,30,0.0 +6977,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,22,0.0 +12346,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,100-500,Pvt Ltd,never,18,1.0 +16473,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Early Stage Startup,2,21,0.0 +18331,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,,,never,28,0.0 +23159,city_11,0.55,,Has relevent experience,Part time course,Masters,STEM,8,,,1,150,1.0 +4466,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,3,<10,Early Stage Startup,,13,1.0 +10262,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,5,,,never,21,1.0 +27888,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,1,70,0.0 +32489,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,12,,,>4,4,0.0 +29821,city_118,0.722,Male,Has relevent experience,no_enrollment,Graduate,Other,13,50-99,Funded Startup,2,54,0.0 +493,city_83,0.9229999999999999,Male,No relevent experience,Full time course,High School,,2,,,never,8,0.0 +20581,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,1,10/49,Public Sector,1,48,1.0 +24905,city_21,0.624,,Has relevent experience,Part time course,Masters,STEM,4,50-99,Pvt Ltd,1,96,1.0 +20226,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,7,,,,47,0.0 +32196,city_16,0.91,Female,No relevent experience,no_enrollment,Phd,STEM,9,,Public Sector,>4,60,1.0 +8714,city_45,0.89,Male,No relevent experience,Full time course,Graduate,STEM,6,,,>4,29,0.0 +26098,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,NGO,>4,10,0.0 +17624,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,3,72,0.0 +28636,city_162,0.767,Male,Has relevent experience,Part time course,Graduate,STEM,11,100-500,Pvt Ltd,3,36,1.0 +24885,city_21,0.624,Female,Has relevent experience,,Graduate,STEM,3,100-500,Pvt Ltd,1,52,0.0 +6186,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,4,151,0.0 +8120,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,,2,160,0.0 +19472,city_152,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,95,1.0 +15932,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,126,0.0 +712,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Business Degree,3,,,3,25,1.0 +22093,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,57,0.0 +6906,city_89,0.925,,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,Public Sector,1,151,0.0 +6279,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,18,1000-4999,Public Sector,2,46,0.0 +28013,city_118,0.722,Male,Has relevent experience,Full time course,Graduate,STEM,5,50-99,,1,36,0.0 +11117,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,,,16,,,1,111,0.0 +19401,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,78,1.0 +4846,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,,42,0.0 +8662,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,2,50,1.0 +10458,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,4,0.0 +2945,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,NGO,1,67,0.0 +7905,city_45,0.89,,No relevent experience,Full time course,High School,,<1,,,never,21,0.0 +16278,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,12,0.0 +25539,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Public Sector,2,112,0.0 +5253,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,never,119,1.0 +27928,city_67,0.855,Male,Has relevent experience,Part time course,Graduate,STEM,6,50-99,Pvt Ltd,1,61,0.0 +10643,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,18,0.0 +25505,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,,Public Sector,2,29,0.0 +7022,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,2,50-99,Pvt Ltd,never,29,1.0 +1468,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,50-99,Other,2,20,0.0 +11333,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Public Sector,>4,80,0.0 +4529,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,STEM,6,,,1,14,1.0 +10178,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,NGO,1,84,0.0 +30689,city_28,0.9390000000000001,Male,Has relevent experience,Part time course,Masters,STEM,15,<10,Pvt Ltd,1,31,0.0 +13947,city_16,0.91,Male,No relevent experience,,,,6,,,,32,0.0 +7569,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,>20,,,>4,5,0.0 +940,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,>4,9,0.0 +10000,city_116,0.743,Male,Has relevent experience,Full time course,High School,,1,,Public Sector,1,3,0.0 +15815,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Funded Startup,1,42,0.0 +26738,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,1,172,0.0 +26220,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,3,26,0.0 +28756,city_134,0.698,,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,180,0.0 +5170,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,2,13,0.0 +20203,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,15,<10,Pvt Ltd,1,76,0.0 +28544,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,4,29,0.0 +12797,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,4,,,1,6,0.0 +28079,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,1,10/49,Pvt Ltd,1,18,0.0 +285,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,2,17,0.0 +5216,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,,,never,9,1.0 +8258,city_28,0.9390000000000001,Male,No relevent experience,Part time course,High School,,2,10000+,Pvt Ltd,never,180,0.0 +24984,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,3,134,0.0 +1649,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,>4,91,1.0 +30384,city_23,0.899,,No relevent experience,Full time course,High School,,12,10000+,Pvt Ltd,2,99,1.0 +10244,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,Other,4,<10,Pvt Ltd,1,108,0.0 +13341,city_145,0.555,,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,33,1.0 +27727,city_142,0.727,Male,Has relevent experience,no_enrollment,Masters,STEM,8,,,1,33,1.0 +8633,city_16,0.91,Male,No relevent experience,Full time course,High School,,5,,,1,67,1.0 +13715,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,9,10000+,,1,24,0.0 +6034,city_162,0.767,,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Public Sector,,55,0.0 +28315,city_21,0.624,Male,Has relevent experience,Part time course,Masters,STEM,7,50-99,Funded Startup,1,24,1.0 +31426,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,34,1.0 +9263,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,High School,,10,10/49,Pvt Ltd,4,30,0.0 +19500,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,1,24,0.0 +14162,city_90,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,11,,,2,108,0.0 +7571,city_103,0.92,,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,4,80,0.0 +9365,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,>4,36,0.0 +5218,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,1,96,0.0 +6185,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,,Pvt Ltd,>4,133,0.0 +31139,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,2,7,0.0 +9904,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,154,0.0 +19950,city_16,0.91,,Has relevent experience,no_enrollment,High School,,>20,50-99,Pvt Ltd,>4,8,0.0 +33003,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,7,0.0 +9218,city_48,0.493,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,50,1.0 +10291,city_1,0.847,Female,Has relevent experience,no_enrollment,Graduate,Other,14,<10,Pvt Ltd,2,20,0.0 +25392,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,102,0.0 +27178,city_173,0.878,Male,Has relevent experience,Full time course,High School,,7,50-99,Pvt Ltd,1,12,0.0 +15886,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,21,0.0 +31016,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Funded Startup,2,23,0.0 +8022,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,,,1,34,0.0 +10494,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,1,28,0.0 +32782,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,17,10000+,Other,1,26,1.0 +2449,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,3,14,0.0 +27195,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,>4,26,0.0 +29301,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Other,>4,24,0.0 +13263,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,1000-4999,Pvt Ltd,>4,11,0.0 +12733,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,10/49,Pvt Ltd,3,145,0.0 +2035,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,3,51,0.0 +7042,city_71,0.884,Male,No relevent experience,no_enrollment,Masters,STEM,8,<10,Early Stage Startup,2,50,0.0 +5667,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,2,50-99,Funded Startup,1,30,0.0 +32458,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,No Major,7,500-999,Pvt Ltd,2,72,1.0 +3778,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,No Major,14,50-99,Early Stage Startup,4,80,0.0 +15996,city_103,0.92,Male,Has relevent experience,,Graduate,STEM,>20,1000-4999,Public Sector,3,9,0.0 +14877,city_23,0.899,Female,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,>4,50,0.0 +23420,city_90,0.698,,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Other,2,41,1.0 +23263,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,4,,,never,22,1.0 +10084,city_10,0.895,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,156,1.0 +11947,city_21,0.624,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,>4,36,1.0 +19801,city_24,0.698,,No relevent experience,Full time course,High School,,9,,,2,23,1.0 +15475,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,never,322,0.0 +12870,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,2,1000-4999,Pvt Ltd,2,42,0.0 +14391,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,37,1.0 +11896,city_103,0.92,,No relevent experience,no_enrollment,High School,,7,,,1,40,1.0 +7310,city_167,0.9209999999999999,Male,No relevent experience,Full time course,High School,,4,,,3,21,1.0 +15523,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,5,10/49,Pvt Ltd,2,92,0.0 +25938,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,>4,61,0.0 +20630,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,>4,21,0.0 +9942,city_37,0.794,Male,No relevent experience,no_enrollment,Graduate,STEM,7,,,never,48,1.0 +10736,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,<1,,,>4,35,0.0 +3200,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,4,29,0.0 +4695,city_104,0.924,Male,Has relevent experience,Full time course,High School,,6,<10,,3,23,0.0 +7415,city_104,0.924,Male,No relevent experience,Full time course,Graduate,STEM,5,,,>4,8,0.0 +19047,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,11,<10,Pvt Ltd,1,36,0.0 +27555,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,47,0.0 +11214,city_16,0.91,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,1,106,1.0 +900,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,4,10/49,Pvt Ltd,3,75,0.0 +4175,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Public Sector,>4,164,1.0 +31113,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,7,,,1,4,1.0 +12285,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,never,28,1.0 +32226,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,12,1000-4999,Pvt Ltd,2,47,0.0 +2655,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,<1,<10,Early Stage Startup,1,68,0.0 +4565,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,9,,Pvt Ltd,never,31,0.0 +16427,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,161,1.0 +6323,city_150,0.698,,Has relevent experience,Full time course,,,3,1000-4999,,1,27,0.0 +1656,city_99,0.915,,No relevent experience,Full time course,High School,,10,10000+,Pvt Ltd,1,97,0.0 +13977,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,45,0.0 +19515,city_46,0.762,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,6,1.0 +25932,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,,1,90,0.0 +31924,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Pvt Ltd,1,75,1.0 +33257,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,>20,,,2,54,0.0 +23151,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,5,1000-4999,Other,1,52,0.0 +10294,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,100-500,Pvt Ltd,4,4,1.0 +25130,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,2,61,0.0 +31716,city_162,0.767,Male,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,62,1.0 +28892,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,2,92,0.0 +15642,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,124,0.0 +12326,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Funded Startup,1,10,0.0 +26292,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,20,0.0 +25913,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,2,54,0.0 +10745,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Funded Startup,3,160,1.0 +5760,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,220,0.0 +3937,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,10,10/49,Funded Startup,1,45,0.0 +26831,city_134,0.698,Male,No relevent experience,,High School,,3,,,never,57,1.0 +12929,city_103,0.92,Male,Has relevent experience,Part time course,High School,,2,<10,Pvt Ltd,1,112,0.0 +31523,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,1,25,0.0 +10962,city_136,0.897,,No relevent experience,no_enrollment,Phd,STEM,>20,10000+,NGO,>4,11,0.0 +16406,city_145,0.555,,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,1,78,0.0 +31424,city_160,0.92,,No relevent experience,Full time course,High School,,10,,,1,82,1.0 +414,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,50-99,Pvt Ltd,>4,47,0.0 +1740,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Funded Startup,4,26,0.0 +24802,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,18,10/49,Pvt Ltd,never,7,0.0 +24890,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,STEM,2,<10,NGO,1,26,0.0 +693,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,2,,Pvt Ltd,never,18,0.0 +26434,city_64,0.6659999999999999,Male,No relevent experience,Part time course,Graduate,STEM,3,,,1,53,0.0 +25830,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,36,0.0 +14265,city_103,0.92,,Has relevent experience,Full time course,Graduate,STEM,3,,,1,108,1.0 +12329,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,1,24,0.0 +27170,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,2,23,1.0 +19627,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,4,32,0.0 +11513,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,3,21,0.0 +31895,city_71,0.884,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,70,1.0 +11695,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,32,0.0 +25387,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,<1,,,,2,0.0 +19757,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,42,0.0 +15322,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,7,0.0 +9536,city_30,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,never,47,0.0 +7307,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,51,0.0 +22768,city_71,0.884,,Has relevent experience,no_enrollment,High School,,>20,100-500,Pvt Ltd,1,66,0.0 +5121,city_103,0.92,,No relevent experience,Full time course,Masters,STEM,5,,Public Sector,1,196,0.0 +16750,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,72,0.0 +25337,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,1,154,0.0 +1759,city_160,0.92,,No relevent experience,no_enrollment,High School,,2,10000+,Pvt Ltd,1,153,0.0 +20638,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,100-500,Pvt Ltd,1,40,1.0 +25470,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,>20,<10,Pvt Ltd,3,11,0.0 +26173,city_19,0.682,Male,No relevent experience,no_enrollment,High School,,<1,,,never,51,0.0 +9773,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Early Stage Startup,4,94,0.0 +10513,city_14,0.698,Male,No relevent experience,Full time course,Masters,STEM,2,,,2,9,0.0 +22916,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,3,27,0.0 +4496,city_99,0.915,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,74,0.0 +31176,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,>4,57,0.0 +2426,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,Arts,11,100-500,,>4,7,0.0 +24302,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10/49,Funded Startup,2,11,0.0 +23805,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,500-999,Pvt Ltd,2,19,0.0 +4827,city_9,0.743,Male,No relevent experience,no_enrollment,,,7,,Pvt Ltd,never,78,1.0 +33141,city_99,0.915,Male,Has relevent experience,no_enrollment,High School,,10,10/49,Pvt Ltd,2,140,0.0 +20531,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,18,5000-9999,Pvt Ltd,>4,41,0.0 +3178,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,>4,78,0.0 +33349,city_21,0.624,Male,No relevent experience,Part time course,Graduate,STEM,2,10/49,Early Stage Startup,2,20,0.0 +9589,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,>4,19,0.0 +489,city_106,0.698,,Has relevent experience,no_enrollment,Phd,STEM,>20,,,never,5,0.0 +26973,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,1,100,1.0 +8671,city_53,0.74,Male,Has relevent experience,no_enrollment,Masters,STEM,5,<10,,1,8,0.0 +2214,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,3,89,0.0 +6681,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,7,500-999,Pvt Ltd,1,80,1.0 +14154,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,14,5000-9999,Public Sector,>4,66,1.0 +19054,city_103,0.92,,No relevent experience,no_enrollment,High School,,8,<10,Pvt Ltd,1,46,0.0 +8520,city_36,0.893,,Has relevent experience,no_enrollment,High School,,14,,,2,51,0.0 +30772,city_180,0.698,Male,No relevent experience,no_enrollment,Masters,Other,9,,,>4,24,0.0 +19823,city_78,0.579,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,1,37,0.0 +18705,city_23,0.899,Male,Has relevent experience,no_enrollment,High School,,9,100-500,Pvt Ltd,2,100,0.0 +25534,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,140,0.0 +6192,city_65,0.802,Male,No relevent experience,Full time course,High School,,4,,,never,43,0.0 +12451,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,,1,67,0.0 +11967,city_37,0.794,,No relevent experience,Full time course,High School,,6,50-99,Pvt Ltd,1,74,0.0 +10023,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,3,6,0.0 +725,city_23,0.899,,No relevent experience,no_enrollment,High School,,1,,Pvt Ltd,never,47,1.0 +25333,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,5,5000-9999,Pvt Ltd,never,15,0.0 +2986,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,,>4,36,0.0 +24461,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Pvt Ltd,1,81,0.0 +18545,city_20,0.7959999999999999,Male,Has relevent experience,no_enrollment,Masters,Other,4,100-500,Public Sector,2,7,0.0 +6490,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,1,<10,NGO,,176,1.0 +9613,city_36,0.893,Male,Has relevent experience,Full time course,High School,,6,100-500,Pvt Ltd,2,81,0.0 +12602,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,2,68,0.0 +23251,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,2,10/49,NGO,,42,0.0 +32621,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,1,44,0.0 +8199,city_100,0.887,Male,No relevent experience,Part time course,Graduate,STEM,3,,,1,158,0.0 +24269,city_71,0.884,Male,Has relevent experience,no_enrollment,High School,,19,<10,Pvt Ltd,2,7,1.0 +30463,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,22,0.0 +19150,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,6,1.0 +25379,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,Humanities,2,100-500,Public Sector,2,30,1.0 +19101,city_16,0.91,,No relevent experience,no_enrollment,High School,,2,,,never,140,0.0 +23370,city_14,0.698,,No relevent experience,Full time course,Masters,STEM,4,,,never,17,1.0 +26701,city_77,0.83,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,5000-9999,Pvt Ltd,>4,106,0.0 +28300,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,117,1.0 +4413,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,31,0.0 +24300,city_84,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,2,20,0.0 +25633,city_128,0.527,Male,Has relevent experience,no_enrollment,High School,,2,100-500,,never,7,1.0 +22317,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Funded Startup,1,5,0.0 +32006,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,3,10000+,Pvt Ltd,1,52,0.0 +5798,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,2,6,0.0 +31761,city_74,0.579,,No relevent experience,Full time course,Graduate,STEM,6,,,1,145,0.0 +17199,city_23,0.899,,Has relevent experience,Part time course,Graduate,STEM,11,50-99,Pvt Ltd,2,151,0.0 +13754,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,,1,69,0.0 +1824,city_158,0.7659999999999999,Female,No relevent experience,Full time course,Graduate,STEM,5,,Pvt Ltd,never,100,0.0 +1487,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,3,15,0.0 +12098,city_21,0.624,,No relevent experience,no_enrollment,,,<1,,,never,10,0.0 +3953,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,1,42,0.0 +32900,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,10000+,Pvt Ltd,2,55,1.0 +17567,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,1,172,0.0 +11838,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,2,16,0.0 +689,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,>4,27,1.0 +26864,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,34,0.0 +4499,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,>20,100-500,NGO,2,70,0.0 +27811,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,5000-9999,Pvt Ltd,>4,136,0.0 +1636,city_75,0.9390000000000001,,No relevent experience,no_enrollment,,,7,,Public Sector,never,72,1.0 +29944,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,52,1.0 +7072,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,4,167,0.0 +1872,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,1,46,0.0 +28420,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,98,0.0 +18339,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,1,80,1.0 +31567,city_10,0.895,Male,Has relevent experience,no_enrollment,High School,,>20,,,>4,22,0.0 +21317,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Public Sector,>4,41,0.0 +8691,city_99,0.915,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,4,0.0 +8683,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,62,0.0 +28400,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,6,50-99,Pvt Ltd,>4,166,1.0 +1841,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,2,61,1.0 +23507,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Funded Startup,1,9,1.0 +8307,city_100,0.887,Male,No relevent experience,no_enrollment,Graduate,No Major,>20,100-500,Pvt Ltd,>4,21,0.0 +29934,city_98,0.9490000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,23,0.0 +31027,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,19,10/49,Pvt Ltd,>4,19,1.0 +9939,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,19,100-500,Pvt Ltd,>4,56,1.0 +8543,city_70,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,6,,,never,23,1.0 +3416,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,2,112,0.0 +25770,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,7,10000+,Pvt Ltd,never,82,0.0 +30121,city_20,0.7959999999999999,Male,No relevent experience,,Primary School,,2,,,never,94,0.0 +27826,city_115,0.789,,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,4,36,0.0 +26052,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,<1,100-500,Public Sector,1,7,0.0 +9155,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,8,10/49,Funded Startup,3,6,0.0 +14795,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,8,10/49,Early Stage Startup,1,162,0.0 +32722,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,>4,42,0.0 +9698,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,>4,143,0.0 +10105,city_45,0.89,Male,Has relevent experience,Full time course,Graduate,STEM,9,,,2,8,1.0 +15301,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,19,10000+,Pvt Ltd,2,192,0.0 +16500,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,84,1.0 +20604,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,10000+,Pvt Ltd,>4,142,0.0 +29237,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,100-500,Pvt Ltd,1,78,0.0 +33317,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,High School,,2,,,2,258,0.0 +5774,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,11,0.0 +8005,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,2,35,1.0 +26437,city_103,0.92,,Has relevent experience,Full time course,Graduate,STEM,6,,,1,139,1.0 +5293,city_19,0.682,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,151,1.0 +21595,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,10,,,>4,98,0.0 +24950,city_142,0.727,Male,No relevent experience,Part time course,Graduate,STEM,2,,,1,103,0.0 +30305,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,68,0.0 +26150,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Other,6,,,never,1,1.0 +12480,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,170,0.0 +11409,city_75,0.9390000000000001,,No relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,21,0.0 +32772,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,11,,,1,61,1.0 +755,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,5,5000-9999,Pvt Ltd,1,25,1.0 +32496,city_21,0.624,,No relevent experience,Full time course,,,1,,Pvt Ltd,never,45,1.0 +33368,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,3,154,0.0 +19335,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,35,0.0 +11174,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,78,0.0 +28444,city_50,0.8959999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Public Sector,>4,15,0.0 +20999,city_103,0.92,,No relevent experience,Part time course,Masters,Humanities,10,,,2,106,0.0 +27287,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Masters,Other,10,<10,Pvt Ltd,2,35,0.0 +527,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,32,0.0 +2053,city_67,0.855,Female,No relevent experience,no_enrollment,Masters,STEM,13,1000-4999,Pvt Ltd,>4,51,0.0 +24958,city_13,0.8270000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,139,0.0 +27664,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,1,18,0.0 +13749,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,<10,Pvt Ltd,4,26,1.0 +24545,city_128,0.527,Male,Has relevent experience,no_enrollment,High School,,3,10/49,Pvt Ltd,1,96,0.0 +6030,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,5,,Pvt Ltd,never,17,0.0 +24900,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,<1,,,never,55,0.0 +6450,city_75,0.9390000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,10,<10,Pvt Ltd,3,68,0.0 +17677,city_16,0.91,,Has relevent experience,Full time course,Graduate,STEM,3,10000+,Pvt Ltd,1,55,0.0 +17131,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,5,,,never,144,0.0 +18753,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Funded Startup,4,72,0.0 +31446,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,98,0.0 +12523,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,11,,,1,111,0.0 +25194,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,4,20,0.0 +10179,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Funded Startup,>4,14,0.0 +29793,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,1,48,0.0 +19031,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,,2,11,0.0 +1228,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,Funded Startup,>4,91,0.0 +32864,city_16,0.91,Male,No relevent experience,Part time course,Graduate,STEM,1,,,1,90,1.0 +12969,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,11,50-99,Pvt Ltd,3,37,0.0 +70,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,Pvt Ltd,1,36,0.0 +30591,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,152,1.0 +14743,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,Pvt Ltd,2,19,0.0 +11920,city_103,0.92,Female,Has relevent experience,Part time course,Graduate,STEM,13,10000+,Pvt Ltd,1,24,0.0 +5302,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,2,23,1.0 +15193,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Funded Startup,1,147,1.0 +12779,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,14,,,>4,34,0.0 +5240,city_24,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,2,25,0.0 +26431,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Business Degree,17,1000-4999,Pvt Ltd,>4,90,0.0 +32249,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,6,,,1,18,1.0 +10401,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,9,,,1,51,1.0 +2357,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,1,64,0.0 +11971,city_123,0.738,Male,Has relevent experience,Full time course,Graduate,STEM,12,1000-4999,Pvt Ltd,1,41,0.0 +3121,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,<1,<10,Early Stage Startup,1,40,1.0 +20920,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,>4,216,0.0 +10690,city_64,0.6659999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,13,500-999,Public Sector,>4,28,1.0 +8981,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,6,,Public Sector,2,96,1.0 +29854,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,75,0.0 +13679,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,1,206,0.0 +27972,city_162,0.767,,Has relevent experience,Full time course,Graduate,STEM,10,50-99,Pvt Ltd,2,90,0.0 +21020,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,134,0.0 +28005,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Funded Startup,1,134,0.0 +32522,city_30,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,10,500-999,Pvt Ltd,4,24,0.0 +23284,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,,3,60,1.0 +29419,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,2,244,0.0 +4080,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,10,1.0 +17707,city_70,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,15,,,2,44,0.0 +28727,city_36,0.893,Male,No relevent experience,Full time course,Primary School,,9,,,1,28,0.0 +22062,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,2,94,1.0 +15916,city_100,0.887,Male,Has relevent experience,no_enrollment,Phd,STEM,10,,,2,88,0.0 +12889,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Early Stage Startup,>4,67,1.0 +1833,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,1,131,0.0 +11674,city_136,0.897,,No relevent experience,no_enrollment,High School,,6,,,never,12,0.0 +13381,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,95,1.0 +6429,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,>4,105,0.0 +2361,city_104,0.924,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,1,140,0.0 +22739,city_97,0.925,,No relevent experience,,,,4,,,,53,0.0 +17084,city_73,0.754,Male,Has relevent experience,no_enrollment,High School,,6,,,2,32,0.0 +25518,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,>4,24,0.0 +27371,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,10,,,2,87,1.0 +31478,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,STEM,6,500-999,Pvt Ltd,2,63,0.0 +12456,city_134,0.698,Male,No relevent experience,no_enrollment,,,<1,100-500,Pvt Ltd,,50,1.0 +27824,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,1000-4999,Public Sector,>4,29,0.0 +12236,city_117,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,never,21,0.0 +31018,city_165,0.903,,Has relevent experience,Part time course,Graduate,STEM,13,,,4,47,1.0 +27617,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,never,90,0.0 +32288,city_103,0.92,,Has relevent experience,Full time course,High School,,9,,,4,56,0.0 +10892,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,8,50-99,NGO,3,28,0.0 +9821,city_100,0.887,Male,No relevent experience,Full time course,Graduate,No Major,4,,,never,22,0.0 +25466,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,22,0.0 +32788,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,1,97,0.0 +25169,city_28,0.9390000000000001,Other,No relevent experience,Part time course,High School,,2,1000-4999,Pvt Ltd,2,136,0.0 +7433,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Early Stage Startup,2,198,0.0 +19055,city_101,0.5579999999999999,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,,78,0.0 +9563,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,8,0.0 +4135,city_65,0.802,Male,Has relevent experience,no_enrollment,High School,,10,,,>4,117,1.0 +2751,city_71,0.884,Male,No relevent experience,no_enrollment,High School,,4,100-500,Public Sector,never,44,1.0 +27043,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,>4,33,0.0 +2354,city_10,0.895,Male,No relevent experience,no_enrollment,Phd,STEM,9,1000-4999,Public Sector,>4,210,0.0 +21029,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,22,0.0 +6719,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Primary School,,4,,,never,27,0.0 +2595,city_173,0.878,Male,Has relevent experience,Full time course,High School,,3,,,1,16,0.0 +23775,city_104,0.924,Male,No relevent experience,Full time course,High School,,3,,,never,142,0.0 +11382,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,10,10000+,Pvt Ltd,2,7,0.0 +2260,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,222,0.0 +6845,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,Pvt Ltd,1,64,0.0 +20795,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Public Sector,2,52,0.0 +22246,city_100,0.887,Other,Has relevent experience,,Graduate,Humanities,>20,,,1,37,0.0 +25233,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,<1,<10,Early Stage Startup,never,118,1.0 +35,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,1,15,0.0 +16348,city_21,0.624,,No relevent experience,Part time course,Masters,STEM,1,<10,Public Sector,,54,0.0 +26639,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,3,100-500,NGO,1,13,0.0 +30145,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,6,,Pvt Ltd,1,37,0.0 +12246,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,7,0.0 +28262,city_45,0.89,Male,Has relevent experience,Full time course,Graduate,STEM,7,50-99,Pvt Ltd,1,37,0.0 +20340,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,11,,Pvt Ltd,1,10,0.0 +32748,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,>4,28,0.0 +33158,city_50,0.8959999999999999,,Has relevent experience,Part time course,Masters,STEM,>20,,,4,31,0.0 +21741,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,,,2,322,0.0 +7157,city_67,0.855,Male,Has relevent experience,Full time course,Masters,STEM,18,,,4,110,0.0 +7158,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,14,,,4,91,0.0 +27867,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,66,0.0 +12705,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,14,,,>4,182,0.0 +345,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,6,100-500,Pvt Ltd,2,15,0.0 +25731,city_71,0.884,Male,No relevent experience,Part time course,Masters,No Major,3,,,1,15,0.0 +1326,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,No Major,4,10/49,Early Stage Startup,1,39,0.0 +21557,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,109,0.0 +26592,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,No Major,4,100-500,,4,56,0.0 +9373,city_150,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,2,10/49,Pvt Ltd,1,85,0.0 +14399,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,17,100-500,Funded Startup,>4,14,0.0 +24924,city_162,0.767,,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,1,59,0.0 +13805,city_67,0.855,Male,Has relevent experience,Part time course,Graduate,STEM,4,,,1,236,0.0 +23545,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,never,52,0.0 +28661,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,20,50-99,Pvt Ltd,1,64,0.0 +6886,city_104,0.924,,No relevent experience,Full time course,High School,,10,,,4,29,0.0 +2660,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,>4,6,0.0 +4464,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,Humanities,9,5000-9999,NGO,2,74,0.0 +14826,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,High School,,5,<10,Pvt Ltd,,22,0.0 +33289,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Pvt Ltd,3,18,0.0 +8215,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,3,20,0.0 +24457,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,16,10000+,Public Sector,2,15,0.0 +978,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,1000-4999,Pvt Ltd,>4,24,0.0 +13192,city_12,0.64,,No relevent experience,no_enrollment,High School,,<1,,,1,165,1.0 +19394,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,never,6,0.0 +17663,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,1,65,0.0 +17209,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,<1,1000-4999,Pvt Ltd,never,157,0.0 +23653,city_100,0.887,Male,No relevent experience,Full time course,Graduate,Other,14,,,never,35,0.0 +28908,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,3,250,0.0 +13697,city_94,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Public Sector,never,55,0.0 +22122,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,1,12,0.0 +10176,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,1,18,0.0 +6797,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,>4,98,0.0 +9007,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,7,50-99,Funded Startup,1,167,0.0 +227,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Public Sector,2,45,0.0 +2880,city_26,0.698,Male,Has relevent experience,no_enrollment,High School,,12,100-500,Pvt Ltd,1,2,0.0 +4172,city_99,0.915,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,,1,22,0.0 +16590,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,290,1.0 +2333,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,1,,,1,106,0.0 +22564,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,90,0.0 +3510,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,5000-9999,Pvt Ltd,1,22,0.0 +29957,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Public Sector,3,107,0.0 +5594,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,11,,Pvt Ltd,3,3,0.0 +7673,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,17,0.0 +3062,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,57,0.0 +12047,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,10,,,never,106,1.0 +21800,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,Pvt Ltd,>4,7,0.0 +116,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Public Sector,1,30,0.0 +14906,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,Masters,No Major,4,<10,Pvt Ltd,1,38,0.0 +20510,city_133,0.742,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10/49,Early Stage Startup,1,38,0.0 +18280,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,1000-4999,NGO,>4,11,0.0 +17446,city_30,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,Pvt Ltd,1,30,0.0 +23173,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,1,100,0.0 +5325,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,>4,3,0.0 +24197,city_36,0.893,Male,Has relevent experience,Part time course,High School,,16,10/49,Pvt Ltd,4,26,0.0 +16924,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Arts,7,1000-4999,Pvt Ltd,3,21,0.0 +14803,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,2,18,0.0 +24517,city_100,0.887,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,3,0.0 +24399,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,Pvt Ltd,1,107,0.0 +13559,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,8,,,3,17,0.0 +5442,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,180,0.0 +21535,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Humanities,5,50-99,Early Stage Startup,2,25,0.0 +15997,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,>4,110,0.0 +26096,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,9,0.0 +22486,city_90,0.698,,Has relevent experience,no_enrollment,Phd,Humanities,8,<10,Early Stage Startup,never,210,0.0 +15401,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,6,,,1,204,1.0 +15739,city_102,0.804,Male,No relevent experience,Full time course,Masters,STEM,1,50-99,Public Sector,1,45,0.0 +21556,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,1,51,1.0 +45,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,>4,26,0.0 +13451,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,7,<10,Pvt Ltd,4,19,0.0 +10135,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,>4,314,1.0 +22647,city_104,0.924,Male,No relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,1,26,0.0 +191,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,>4,48,0.0 +25789,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,19,0.0 +11808,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,3,22,0.0 +19087,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,,2,61,0.0 +12774,city_41,0.8270000000000001,Female,No relevent experience,no_enrollment,Graduate,STEM,18,,,>4,12,0.0 +32685,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10/49,Funded Startup,1,61,1.0 +4345,city_160,0.92,,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Public Sector,2,11,1.0 +126,city_67,0.855,,Has relevent experience,Full time course,High School,,3,50-99,Pvt Ltd,1,163,0.0 +10596,city_67,0.855,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,30,0.0 +13200,city_104,0.924,Male,No relevent experience,Full time course,High School,,7,,,4,148,1.0 +7861,city_74,0.579,,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,3,26,1.0 +1615,city_89,0.925,,No relevent experience,no_enrollment,High School,,<1,,Pvt Ltd,never,72,0.0 +31372,city_80,0.847,,No relevent experience,Full time course,Primary School,,19,10/49,Pvt Ltd,,15,0.0 +6205,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,>4,8,0.0 +10595,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,4,25,0.0 +6966,city_50,0.8959999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,>4,12,0.0 +5995,city_105,0.794,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,84,0.0 +26141,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,100,0.0 +17738,city_99,0.915,,No relevent experience,Full time course,Graduate,,5,,,1,18,1.0 +4965,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,48,0.0 +30405,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,126,0.0 +10989,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,NGO,>4,110,0.0 +32025,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,>4,24,0.0 +3071,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,No Major,7,10/49,NGO,>4,23,0.0 +26515,city_19,0.682,,No relevent experience,Full time course,Graduate,STEM,3,10/49,NGO,1,28,1.0 +1086,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,5000-9999,Pvt Ltd,1,122,0.0 +22632,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,,>4,11,0.0 +334,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,45,0.0 +3176,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,7,0.0 +12993,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,1,17,0.0 +11100,city_150,0.698,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,4,20,0.0 +18192,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Early Stage Startup,1,35,0.0 +21723,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,11,500-999,Funded Startup,1,22,0.0 +21616,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,Other,12,50-99,Pvt Ltd,>4,25,1.0 +17427,city_65,0.802,,Has relevent experience,no_enrollment,Masters,STEM,8,5000-9999,Pvt Ltd,1,102,0.0 +27426,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,184,1.0 +1231,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,51,0.0 +15610,city_26,0.698,,No relevent experience,Full time course,Graduate,STEM,4,<10,Public Sector,never,272,0.0 +22328,city_19,0.682,Male,No relevent experience,Part time course,Graduate,STEM,6,100-500,Public Sector,1,110,0.0 +16687,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,10/49,Pvt Ltd,>4,18,1.0 +4339,city_103,0.92,Male,Has relevent experience,no_enrollment,,,>20,5000-9999,Pvt Ltd,1,6,0.0 +577,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,2,29,0.0 +27643,city_37,0.794,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Pvt Ltd,1,29,0.0 +1394,city_10,0.895,Male,No relevent experience,Full time course,Graduate,STEM,7,<10,Funded Startup,4,22,0.0 +5406,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,never,34,0.0 +14798,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,21,0.0 +17678,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,198,1.0 +24432,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,Pvt Ltd,1,26,0.0 +19870,city_11,0.55,,Has relevent experience,Full time course,High School,,3,,,1,268,1.0 +7354,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,4,8,0.0 +30914,city_160,0.92,Other,Has relevent experience,Full time course,Masters,STEM,6,10/49,Pvt Ltd,1,21,0.0 +28066,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,1,116,0.0 +13161,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,1,52,0.0 +20465,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Funded Startup,2,30,0.0 +31552,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,2,8,0.0 +32804,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Early Stage Startup,1,84,0.0 +6903,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,3,18,0.0 +22831,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,17,500-999,Pvt Ltd,3,59,0.0 +27198,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,1,112,0.0 +27301,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Pvt Ltd,>4,49,1.0 +17947,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Primary School,,10,,,>4,23,0.0 +26659,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,2,70,0.0 +27075,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,2,9,0.0 +14335,city_42,0.563,Male,No relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,2,100,1.0 +10738,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,NGO,1,5,0.0 +27827,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,19,1.0 +22951,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,5000-9999,Pvt Ltd,2,20,0.0 +15313,city_99,0.915,Female,Has relevent experience,no_enrollment,Masters,STEM,20,100-500,Pvt Ltd,>4,19,0.0 +32469,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,3,30,0.0 +1782,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,20,0.0 +13408,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Pvt Ltd,1,26,0.0 +14454,city_21,0.624,Male,No relevent experience,Full time course,High School,,1,<10,Pvt Ltd,1,64,0.0 +32349,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,61,0.0 +26566,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,14,,,1,9,0.0 +33070,city_36,0.893,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,78,0.0 +21654,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,1,87,0.0 +5327,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10000+,Pvt Ltd,2,17,0.0 +2959,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,76,0.0 +23377,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Public Sector,3,24,0.0 +22386,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,18,,,never,72,1.0 +31718,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,<10,Pvt Ltd,4,40,0.0 +9661,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,1,51,0.0 +16006,city_134,0.698,,No relevent experience,Part time course,,,9,,,2,250,0.0 +15035,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,1,66,0.0 +4456,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,10,50-99,Early Stage Startup,1,32,1.0 +32754,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,500-999,Pvt Ltd,4,160,1.0 +10125,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Business Degree,2,100-500,NGO,1,7,0.0 +5423,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,25,1.0 +7093,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,3,78,0.0 +18989,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,never,62,0.0 +9539,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,1,37,0.0 +22327,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,1,,Public Sector,1,46,0.0 +9071,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,1,17,0.0 +1037,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,STEM,19,100-500,Pvt Ltd,2,14,0.0 +24985,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,154,0.0 +17462,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Public Sector,>4,20,0.0 +1758,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,3,,Pvt Ltd,never,30,0.0 +13184,city_7,0.647,Male,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,Pvt Ltd,1,54,0.0 +1383,city_16,0.91,Other,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,96,0.0 +15573,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,13,0.0 +12368,city_152,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,50-99,Funded Startup,>4,106,0.0 +18430,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Funded Startup,1,316,1.0 +19305,city_136,0.897,Male,No relevent experience,Full time course,Masters,STEM,4,50-99,Funded Startup,1,11,0.0 +29173,city_23,0.899,Male,Has relevent experience,Part time course,Graduate,STEM,4,10/49,Pvt Ltd,1,92,0.0 +33203,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,>4,40,0.0 +14228,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,4,0.0 +17986,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Pvt Ltd,1,86,0.0 +17602,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,,1,65,0.0 +10218,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,NGO,1,12,0.0 +20645,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,>4,52,0.0 +23818,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,3,48,0.0 +26586,city_74,0.579,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Public Sector,3,10,0.0 +53,city_16,0.91,,No relevent experience,Full time course,High School,,7,,Pvt Ltd,never,33,0.0 +12838,city_57,0.866,,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,Pvt Ltd,2,44,0.0 +4858,city_33,0.44799999999999995,,No relevent experience,Part time course,Masters,Other,2,<10,NGO,1,23,1.0 +16380,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,<1,<10,NGO,>4,18,1.0 +468,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,2,100,0.0 +8033,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,4,10/49,,1,126,1.0 +21950,city_100,0.887,Male,Has relevent experience,,,,17,500-999,Pvt Ltd,1,45,1.0 +16055,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,127,0.0 +2988,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,8,0.0 +30440,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,24,0.0 +8382,city_21,0.624,,Has relevent experience,no_enrollment,High School,,9,50-99,Pvt Ltd,>4,6,0.0 +24790,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,>4,42,1.0 +32814,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,3,22,0.0 +6466,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,39,0.0 +12080,city_102,0.804,,No relevent experience,Full time course,Graduate,STEM,7,,,never,11,1.0 +28954,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,1,,,1,39,1.0 +722,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,NGO,4,157,0.0 +23282,city_21,0.624,Male,No relevent experience,Full time course,High School,,1,,,never,9,1.0 +19337,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,2,46,1.0 +1996,city_165,0.903,Female,Has relevent experience,no_enrollment,Masters,Arts,7,500-999,,1,96,1.0 +18890,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,Other,1,,,1,78,1.0 +16643,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,1,82,0.0 +31825,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,Other,11,500-999,Pvt Ltd,3,34,0.0 +21695,city_45,0.89,,No relevent experience,Full time course,Graduate,STEM,4,,,2,86,1.0 +22041,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,NGO,4,22,0.0 +8912,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,4,73,0.0 +13540,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,>4,100,0.0 +19569,city_144,0.84,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,Pvt Ltd,1,6,1.0 +25147,city_160,0.92,,Has relevent experience,no_enrollment,,,4,50-99,Early Stage Startup,3,84,0.0 +15069,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,19,50-99,Funded Startup,1,7,1.0 +16726,city_67,0.855,,No relevent experience,no_enrollment,Masters,Humanities,14,100-500,Pvt Ltd,2,84,1.0 +21519,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,5,1000-4999,Pvt Ltd,,55,0.0 +3462,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,4,50-99,Pvt Ltd,1,7,1.0 +2475,city_65,0.802,,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Pvt Ltd,1,4,0.0 +19708,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Business Degree,3,10000+,,1,157,0.0 +17848,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,1,61,0.0 +30082,city_75,0.9390000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,8,1000-4999,Public Sector,4,43,1.0 +28720,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,2,10/49,Pvt Ltd,1,332,0.0 +11928,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,No Major,4,<10,Pvt Ltd,1,34,0.0 +13815,city_21,0.624,Male,Has relevent experience,no_enrollment,High School,,4,,,never,68,1.0 +19388,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,never,24,1.0 +26846,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Funded Startup,1,25,1.0 +24346,city_36,0.893,Male,No relevent experience,no_enrollment,Graduate,STEM,1,,,never,25,0.0 +32287,city_100,0.887,Male,No relevent experience,Full time course,Graduate,STEM,6,,Pvt Ltd,never,61,0.0 +7017,city_173,0.878,,Has relevent experience,Full time course,Masters,STEM,>20,,,,28,0.0 +14617,city_23,0.899,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,17,0.0 +3629,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,2,66,0.0 +4604,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,1,20,0.0 +13585,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,>4,35,0.0 +28919,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,1000-4999,Pvt Ltd,4,66,0.0 +11546,city_65,0.802,Male,Has relevent experience,Part time course,Graduate,STEM,6,10000+,Pvt Ltd,2,40,0.0 +6807,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,4,,,never,47,0.0 +28649,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,,,15,100-500,,>4,95,0.0 +11493,city_14,0.698,,No relevent experience,Full time course,High School,,2,,,never,6,0.0 +10358,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,10,1.0 +23195,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,10,10000+,Pvt Ltd,>4,124,0.0 +29470,city_136,0.897,Male,No relevent experience,Full time course,,,5,,,1,210,0.0 +30654,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,<10,Pvt Ltd,1,10,1.0 +15933,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,5,5000-9999,Pvt Ltd,1,77,0.0 +32185,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,1,168,1.0 +20364,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,9,0.0 +30929,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,,1,88,1.0 +2680,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,56,0.0 +6791,city_40,0.7759999999999999,,Has relevent experience,no_enrollment,Graduate,Humanities,9,<10,Pvt Ltd,1,155,0.0 +17458,city_101,0.5579999999999999,,No relevent experience,no_enrollment,Masters,Humanities,4,,,1,46,1.0 +7206,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,,,>4,32,1.0 +20122,city_103,0.92,,Has relevent experience,,Graduate,STEM,10,,,1,23,1.0 +24257,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,3,50-99,Pvt Ltd,>4,67,1.0 +4389,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,8,,,1,11,0.0 +22384,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,1,<10,Early Stage Startup,1,73,0.0 +13134,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Public Sector,1,46,0.0 +33092,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,84,0.0 +12244,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,1,51,1.0 +297,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,7,,,>4,135,0.0 +6202,city_103,0.92,,No relevent experience,,,,4,,,,138,0.0 +5919,city_16,0.91,,Has relevent experience,no_enrollment,Masters,Humanities,3,50-99,Pvt Ltd,2,139,1.0 +14744,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Masters,STEM,11,50-99,Pvt Ltd,1,77,0.0 +15509,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,10,100-500,Pvt Ltd,>4,46,0.0 +9299,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,Pvt Ltd,1,36,0.0 +31490,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,,1,101,0.0 +5331,city_136,0.897,Male,Has relevent experience,,,,>20,,,>4,22,0.0 +9294,city_133,0.742,,Has relevent experience,Part time course,Graduate,STEM,10,100-500,Pvt Ltd,1,7,0.0 +27292,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,3,<10,Public Sector,1,23,0.0 +25782,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Business Degree,3,,,1,58,0.0 +26944,city_16,0.91,Male,Has relevent experience,no_enrollment,,,>20,,,1,102,1.0 +31185,city_97,0.925,Male,No relevent experience,no_enrollment,Graduate,No Major,3,,,3,79,1.0 +23114,city_160,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,,2,92,0.0 +28105,city_107,0.518,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,NGO,1,19,0.0 +20284,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,54,0.0 +14656,city_70,0.698,,Has relevent experience,Full time course,Graduate,STEM,4,,,1,11,1.0 +16012,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,1,28,0.0 +26007,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,50-99,Public Sector,1,19,0.0 +3930,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,24,0.0 +32849,city_126,0.479,Male,No relevent experience,Full time course,Graduate,STEM,10,,,>4,35,1.0 +15007,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,12,0.0 +23506,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,57,1.0 +22334,city_89,0.925,,No relevent experience,Full time course,Graduate,STEM,6,1000-4999,Public Sector,1,4,0.0 +488,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,3,32,0.0 +31491,city_159,0.843,Male,No relevent experience,Full time course,Graduate,STEM,5,,,2,94,0.0 +21863,city_46,0.762,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,>4,97,0.0 +10133,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,2,74,0.0 +10346,city_103,0.92,,Has relevent experience,Full time course,Masters,STEM,>20,100-500,NGO,1,32,0.0 +11908,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Public Sector,3,110,1.0 +9529,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,4,,,never,98,1.0 +11586,city_176,0.764,Male,No relevent experience,Full time course,High School,,2,,,1,104,0.0 +6287,city_134,0.698,,No relevent experience,,,,1,,,never,23,0.0 +22847,city_100,0.887,Male,No relevent experience,no_enrollment,Graduate,STEM,10,100-500,NGO,1,160,0.0 +12930,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,4,83,1.0 +27325,city_16,0.91,Male,No relevent experience,Part time course,Graduate,STEM,1,5000-9999,Pvt Ltd,1,34,0.0 +18809,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,20,1.0 +16538,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,2,32,0.0 +18930,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,17,0.0 +23181,city_100,0.887,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,25,1.0 +11366,city_70,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,4,100-500,,2,124,0.0 +17727,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,48,0.0 +21109,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,>4,152,0.0 +3321,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,8,0.0 +30422,city_59,0.775,Male,Has relevent experience,Part time course,Graduate,STEM,>20,5000-9999,Public Sector,1,44,0.0 +7818,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,High School,,20,100-500,Pvt Ltd,>4,78,0.0 +18567,city_28,0.9390000000000001,Male,No relevent experience,Full time course,High School,,3,10000+,Pvt Ltd,1,41,0.0 +30762,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,1,<10,Early Stage Startup,1,182,1.0 +6683,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,>4,8,0.0 +15386,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,2,43,0.0 +4220,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,4,23,1.0 +12046,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,2,,,never,102,1.0 +4467,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Pvt Ltd,1,91,1.0 +28922,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,Other,9,100-500,Pvt Ltd,4,7,0.0 +14746,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,56,0.0 +28896,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,never,8,0.0 +5435,city_99,0.915,Male,No relevent experience,Full time course,High School,,4,,,1,113,0.0 +29802,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,95,0.0 +30059,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,2,155,0.0 +27316,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,2,0.0 +19874,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,2,500-999,Pvt Ltd,1,61,0.0 +31866,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,2,216,0.0 +4795,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,>20,10000+,Pvt Ltd,1,52,0.0 +32532,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Pvt Ltd,2,35,0.0 +14304,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,72,0.0 +33287,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,64,1.0 +26618,city_155,0.556,Male,Has relevent experience,Part time course,Masters,STEM,2,10000+,Pvt Ltd,1,69,1.0 +13765,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,1,26,0.0 +7889,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Other,>4,18,0.0 +25071,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,150,0.0 +20973,city_16,0.91,,No relevent experience,no_enrollment,High School,,<1,,,>4,57,1.0 +9511,city_72,0.795,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,8,0.0 +32040,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,79,1.0 +28809,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,never,64,0.0 +20588,city_79,0.698,,No relevent experience,Full time course,Masters,STEM,16,,,2,12,0.0 +29487,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Funded Startup,1,91,0.0 +33152,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,100-500,Pvt Ltd,1,11,0.0 +30322,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,29,0.0 +30097,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,26,0.0 +20246,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,36,0.0 +23115,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,104,1.0 +24526,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,,17,0.0 +1144,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,15,1.0 +6187,city_67,0.855,Male,Has relevent experience,Part time course,High School,,4,1000-4999,Pvt Ltd,1,22,0.0 +24438,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,>4,126,0.0 +21254,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,1,52,0.0 +27185,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,2,78,1.0 +1623,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,>4,204,0.0 +24906,city_123,0.738,Male,Has relevent experience,no_enrollment,Masters,STEM,19,50-99,Pvt Ltd,>4,18,0.0 +4342,city_99,0.915,Male,No relevent experience,no_enrollment,Graduate,Business Degree,2,<10,Pvt Ltd,1,202,0.0 +18324,city_11,0.55,,No relevent experience,Full time course,Graduate,STEM,3,,,1,16,0.0 +8096,city_173,0.878,Male,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,4,69,0.0 +7649,city_158,0.7659999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,2,92,1.0 +12103,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,18,1000-4999,Pvt Ltd,>4,25,0.0 +5723,city_64,0.6659999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,8,500-999,Pvt Ltd,1,85,0.0 +21212,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,1,,,never,81,1.0 +11551,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,Other,7,50-99,Pvt Ltd,2,268,0.0 +16800,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,2,,,1,55,1.0 +32127,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,2,10000+,Pvt Ltd,1,48,0.0 +30030,city_62,0.645,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,never,50,0.0 +29720,city_23,0.899,Male,Has relevent experience,Part time course,High School,,7,,Public Sector,2,48,0.0 +24588,city_7,0.647,Male,Has relevent experience,no_enrollment,Masters,STEM,3,10000+,Pvt Ltd,1,77,0.0 +2193,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,1,78,1.0 +15357,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,5,,,2,25,0.0 +14489,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,1,72,0.0 +23011,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,58,0.0 +13029,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,4,117,0.0 +17815,city_16,0.91,,Has relevent experience,no_enrollment,,,>20,<10,Pvt Ltd,2,163,1.0 +19877,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,1,28,0.0 +24603,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,4,,,1,24,0.0 +20209,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,6,<10,Pvt Ltd,2,151,0.0 +4043,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,3,26,0.0 +32063,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,100-500,Pvt Ltd,>4,18,0.0 +23743,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,1,94,0.0 +25335,city_103,0.92,Male,Has relevent experience,no_enrollment,Primary School,,>20,10000+,Pvt Ltd,1,102,0.0 +5264,city_100,0.887,Male,No relevent experience,no_enrollment,High School,,3,,,never,96,0.0 +12618,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,10,0.0 +16066,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,35,0.0 +12911,city_173,0.878,Male,Has relevent experience,Full time course,High School,,14,1000-4999,Pvt Ltd,2,61,0.0 +27378,city_16,0.91,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,48,0.0 +20049,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,>4,106,0.0 +5848,city_102,0.804,Male,Has relevent experience,no_enrollment,Phd,STEM,<1,100-500,Pvt Ltd,2,248,1.0 +9225,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,Arts,>20,,,1,31,0.0 +20982,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,35,0.0 +15854,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,>4,118,0.0 +564,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Early Stage Startup,1,111,1.0 +26610,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,4,104,0.0 +33,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,2,24,0.0 +28424,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,>4,158,0.0 +29443,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,1,32,0.0 +12950,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,1,11,0.0 +14498,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,,2,2,1.0 +20590,city_11,0.55,Male,Has relevent experience,Part time course,Graduate,STEM,3,,,1,58,1.0 +26820,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,33,0.0 +28428,city_73,0.754,,No relevent experience,Full time course,High School,,3,,,never,37,0.0 +6565,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,2,56,1.0 +26331,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,67,1.0 +15792,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,92,0.0 +245,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,>4,18,0.0 +20087,city_150,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,5,<10,Funded Startup,1,7,0.0 +27919,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,46,0.0 +15568,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,5,,NGO,>4,105,1.0 +13850,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,49,0.0 +24460,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,2,180,0.0 +14915,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,3,33,1.0 +4457,city_90,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,>4,40,0.0 +1848,city_21,0.624,Male,Has relevent experience,Part time course,Masters,STEM,9,10000+,Pvt Ltd,4,36,1.0 +28239,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,2,28,1.0 +21306,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,17,0.0 +24151,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,Humanities,20,10/49,,1,64,1.0 +1322,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Pvt Ltd,never,28,1.0 +23419,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,<10,Early Stage Startup,1,12,0.0 +25184,city_138,0.836,,No relevent experience,no_enrollment,Graduate,Business Degree,<1,,,1,31,1.0 +17955,city_100,0.887,Male,No relevent experience,no_enrollment,,,3,,,never,262,0.0 +30274,city_103,0.92,,Has relevent experience,Part time course,Graduate,Other,1,<10,NGO,never,156,0.0 +22800,city_41,0.8270000000000001,Male,Has relevent experience,Full time course,High School,,4,50-99,Early Stage Startup,1,18,1.0 +25809,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,1000-4999,Pvt Ltd,4,23,0.0 +21264,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,Pvt Ltd,>4,10,0.0 +13927,city_16,0.91,,No relevent experience,no_enrollment,High School,,1,,,never,9,0.0 +23399,city_57,0.866,Male,Has relevent experience,Full time course,Graduate,STEM,6,<10,Pvt Ltd,never,11,0.0 +23600,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Funded Startup,1,56,0.0 +11461,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,>4,26,0.0 +27968,city_41,0.8270000000000001,,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Early Stage Startup,4,16,0.0 +27499,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,4,500-999,Pvt Ltd,1,20,0.0 +6266,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,1,152,0.0 +11628,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,never,18,0.0 +5474,city_116,0.743,Male,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,192,0.0 +21569,city_64,0.6659999999999999,Other,Has relevent experience,Part time course,High School,,8,<10,Pvt Ltd,>4,192,0.0 +12448,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,,2,38,0.0 +28142,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,>4,12,0.0 +1939,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,19,,,>4,51,0.0 +1949,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10/49,Early Stage Startup,2,119,0.0 +1288,city_102,0.804,Male,Has relevent experience,Full time course,Graduate,STEM,2,100-500,Pvt Ltd,1,40,0.0 +5445,city_128,0.527,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,2,81,1.0 +9856,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,10,1.0 +21883,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,18,,,never,96,0.0 +2999,city_149,0.6890000000000001,,No relevent experience,Full time course,High School,,4,,Pvt Ltd,never,121,1.0 +9919,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,1,70,0.0 +17382,city_101,0.5579999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,4,,,1,202,1.0 +22004,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,12,0.0 +22574,city_116,0.743,Male,No relevent experience,,Graduate,STEM,3,,,never,16,1.0 +20518,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,10/49,Pvt Ltd,1,17,1.0 +32189,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,never,66,1.0 +11010,city_162,0.767,Male,No relevent experience,Full time course,Graduate,STEM,9,,,never,29,1.0 +6540,city_14,0.698,,No relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,1,3,0.0 +33101,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,>4,32,0.0 +30753,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,1,60,1.0 +5892,city_159,0.843,Male,Has relevent experience,Part time course,Graduate,STEM,6,<10,Pvt Ltd,1,24,1.0 +14911,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,2,10,0.0 +32275,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,Pvt Ltd,3,86,0.0 +2553,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,1,,Other,never,11,1.0 +13553,city_7,0.647,,No relevent experience,Full time course,Masters,STEM,5,,,never,7,1.0 +5356,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,6,<10,Pvt Ltd,1,144,0.0 +11799,city_16,0.91,,Has relevent experience,no_enrollment,Masters,Humanities,4,<10,Pvt Ltd,2,55,0.0 +14450,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,15,10000+,,2,96,1.0 +29522,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,,,4,103,1.0 +9709,city_103,0.92,Male,Has relevent experience,no_enrollment,,,10,100-500,,1,10,0.0 +14010,city_100,0.887,,No relevent experience,Part time course,Graduate,STEM,4,,,1,50,1.0 +9481,city_103,0.92,,Has relevent experience,Full time course,Graduate,STEM,9,10/49,Pvt Ltd,4,12,0.0 +9516,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,2,44,0.0 +27329,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,30,0.0 +30055,city_104,0.924,Male,No relevent experience,Part time course,Graduate,STEM,4,,,1,35,0.0 +30890,city_114,0.9259999999999999,Male,No relevent experience,,High School,,9,,Pvt Ltd,never,46,0.0 +26208,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,2,41,0.0 +30952,city_16,0.91,Male,No relevent experience,Part time course,Graduate,STEM,3,1000-4999,Public Sector,>4,84,0.0 +29280,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,,,1,108,0.0 +33274,city_150,0.698,,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,4,43,0.0 +9334,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,1,37,0.0 +17022,city_103,0.92,Male,Has relevent experience,no_enrollment,Primary School,,3,50-99,Pvt Ltd,1,7,0.0 +13351,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,11,<10,Early Stage Startup,1,226,0.0 +1913,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Public Sector,>4,20,0.0 +14385,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,1,10/49,Pvt Ltd,1,80,1.0 +20609,city_114,0.9259999999999999,,No relevent experience,Full time course,Masters,STEM,8,1000-4999,Public Sector,>4,19,0.0 +15126,city_67,0.855,Male,No relevent experience,no_enrollment,,,<1,,,never,62,0.0 +3013,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,8,,,never,16,1.0 +17627,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,>4,55,0.0 +30304,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,1,42,0.0 +23017,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,2,70,1.0 +1619,city_103,0.92,,No relevent experience,no_enrollment,High School,,1,,Pvt Ltd,1,12,1.0 +16412,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,9,100-500,Pvt Ltd,1,5,0.0 +23436,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,50,0.0 +16662,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,100,0.0 +18228,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Funded Startup,1,100,0.0 +29834,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,7,10000+,Pvt Ltd,3,204,1.0 +20749,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,2,68,0.0 +21053,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,11,0.0 +26234,city_114,0.9259999999999999,Female,No relevent experience,Part time course,High School,,3,10/49,Public Sector,1,28,1.0 +24824,city_99,0.915,Female,No relevent experience,no_enrollment,Phd,Humanities,10,1000-4999,NGO,2,41,0.0 +11056,city_11,0.55,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,40,1.0 +32009,city_173,0.878,Male,Has relevent experience,Full time course,Graduate,STEM,7,10/49,Pvt Ltd,1,37,1.0 +12717,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,No Major,4,1000-4999,Pvt Ltd,2,130,0.0 +6500,city_152,0.698,,No relevent experience,Full time course,Graduate,STEM,5,<10,Public Sector,1,108,0.0 +13099,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,2,26,1.0 +4540,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,2,152,0.0 +22670,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,1,87,0.0 +8994,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,4,100-500,Funded Startup,1,33,0.0 +20127,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,20,10000+,NGO,>4,28,0.0 +18887,city_69,0.856,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,never,62,0.0 +1462,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,27,0.0 +15935,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,41,0.0 +27087,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,1,42,0.0 +23293,city_21,0.624,Female,No relevent experience,Full time course,High School,,3,,,never,42,1.0 +27900,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,2,28,1.0 +29207,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,>4,51,0.0 +17207,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,never,84,1.0 +25513,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Arts,11,500-999,NGO,>4,161,0.0 +29362,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,90,0.0 +3261,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,NGO,1,31,0.0 +19447,city_30,0.698,,No relevent experience,no_enrollment,Graduate,STEM,8,,,>4,76,1.0 +22228,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,3,,Public Sector,1,102,1.0 +22092,city_104,0.924,Female,Has relevent experience,no_enrollment,High School,,14,,,>4,142,0.0 +13970,city_73,0.754,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,NGO,>4,109,0.0 +5896,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10/49,Pvt Ltd,1,11,0.0 +17101,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,23,0.0 +7502,city_61,0.9129999999999999,Male,No relevent experience,Full time course,High School,,2,,,never,22,0.0 +15197,city_100,0.887,,No relevent experience,Full time course,High School,,5,,,never,184,0.0 +31074,city_155,0.556,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,46,0.0 +459,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,1000-4999,Pvt Ltd,1,12,0.0 +6348,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,,,2,298,1.0 +11050,city_138,0.836,Male,Has relevent experience,Full time course,Graduate,Humanities,<1,100-500,Pvt Ltd,1,56,0.0 +8186,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,100-500,Other,2,163,1.0 +73,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,2,53,0.0 +12144,city_173,0.878,,Has relevent experience,no_enrollment,Masters,Arts,7,,,never,65,0.0 +11446,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,2,25,1.0 +22172,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,12,0.0 +4101,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,41,0.0 +30157,city_162,0.767,,Has relevent experience,Part time course,Masters,STEM,6,50-99,Pvt Ltd,2,79,0.0 +16021,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,121,0.0 +11769,city_103,0.92,Male,No relevent experience,Full time course,High School,,5,,,1,27,0.0 +26189,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,2,50,0.0 +32252,city_67,0.855,Male,No relevent experience,Full time course,High School,,4,,Pvt Ltd,1,4,0.0 +10675,city_101,0.5579999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,15,1.0 +22388,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,2,,,,48,1.0 +18619,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,92,0.0 +1398,city_103,0.92,Male,Has relevent experience,no_enrollment,,,8,,,1,12,0.0 +9660,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,1,8,0.0 +30307,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,>4,31,0.0 +16120,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,Humanities,4,50-99,Funded Startup,1,96,0.0 +28382,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,2,218,0.0 +29447,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Phd,STEM,>20,100-500,Public Sector,>4,46,0.0 +26412,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,20,10000+,Pvt Ltd,>4,76,0.0 +9193,city_21,0.624,,Has relevent experience,,Graduate,STEM,<1,500-999,Pvt Ltd,1,32,1.0 +13632,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,37,0.0 +5184,city_74,0.579,Male,No relevent experience,Part time course,Graduate,STEM,2,100-500,Pvt Ltd,1,16,1.0 +1065,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,NGO,1,34,1.0 +9988,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,500-999,Pvt Ltd,>4,30,1.0 +15966,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,NGO,2,20,0.0 +26777,city_102,0.804,Male,No relevent experience,Full time course,,,8,500-999,Pvt Ltd,>4,76,0.0 +1881,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,3,<10,Early Stage Startup,3,44,0.0 +9612,city_16,0.91,,No relevent experience,no_enrollment,High School,,2,,,never,5,1.0 +19228,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,5,10000+,Pvt Ltd,4,25,0.0 +27766,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,5,,,4,10,1.0 +21576,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,No Major,4,50-99,Pvt Ltd,4,11,0.0 +26023,city_16,0.91,,Has relevent experience,no_enrollment,High School,,10,<10,Funded Startup,1,94,0.0 +32890,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,1,53,0.0 +21123,city_162,0.767,,No relevent experience,Full time course,High School,,4,,,never,32,0.0 +18093,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,2,58,0.0 +27774,city_67,0.855,Female,No relevent experience,Full time course,High School,,3,,,never,63,1.0 +7952,city_21,0.624,Female,No relevent experience,Full time course,Graduate,STEM,6,10000+,Public Sector,1,15,1.0 +27243,city_78,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,2,97,1.0 +21051,city_90,0.698,Female,No relevent experience,Full time course,Graduate,STEM,9,,,never,224,0.0 +30241,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,18,1.0 +29898,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,500-999,Pvt Ltd,1,74,0.0 +24227,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,,3,45,1.0 +12149,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,11,,Pvt Ltd,3,48,0.0 +25968,city_155,0.556,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,57,1.0 +31213,city_73,0.754,Male,Has relevent experience,Full time course,High School,,4,,,1,52,1.0 +6285,city_160,0.92,Male,Has relevent experience,no_enrollment,High School,,5,50-99,,1,133,0.0 +30060,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Early Stage Startup,never,126,1.0 +28689,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,39,1.0 +33246,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,19,,,1,30,0.0 +33239,city_21,0.624,,No relevent experience,Full time course,,,7,,Pvt Ltd,never,48,1.0 +30984,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,34,0.0 +33041,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,4,,,2,28,0.0 +13778,city_100,0.887,,Has relevent experience,Full time course,High School,,7,,,never,117,0.0 +29685,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,4,22,0.0 +13165,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,14,50-99,Pvt Ltd,>4,22,0.0 +8952,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,1,23,1.0 +19775,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,2,76,0.0 +14093,city_104,0.924,Male,Has relevent experience,Part time course,Graduate,STEM,>20,,,>4,15,0.0 +26572,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,67,0.0 +5399,city_176,0.764,,Has relevent experience,no_enrollment,Masters,STEM,19,,,>4,4,0.0 +3985,city_16,0.91,,No relevent experience,no_enrollment,High School,,4,10/49,Pvt Ltd,1,13,0.0 +28840,city_162,0.767,Male,No relevent experience,Full time course,High School,,5,,,never,9,0.0 +23104,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,500-999,Public Sector,4,5,0.0 +1008,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Public Sector,1,7,0.0 +26910,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,1,24,1.0 +1561,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,79,1.0 +3209,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,2,62,0.0 +16617,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,2,50-99,Funded Startup,1,20,0.0 +10960,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,4,,,1,35,0.0 +24542,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Other,4,,,1,16,0.0 +13494,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,33,0.0 +32135,city_136,0.897,,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,>4,298,0.0 +2032,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,2,117,1.0 +18392,city_101,0.5579999999999999,Male,No relevent experience,Part time course,Graduate,Other,<1,,,2,304,1.0 +204,city_160,0.92,Male,Has relevent experience,Full time course,High School,,3,10000+,Pvt Ltd,1,23,0.0 +24007,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,76,0.0 +31621,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,High School,,4,,,never,41,0.0 +29958,city_165,0.903,Male,Has relevent experience,,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,86,0.0 +1590,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,25,0.0 +28790,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Humanities,14,10000+,Pvt Ltd,1,158,0.0 +500,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,1,33,0.0 +10929,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,9,50-99,Pvt Ltd,1,37,0.0 +2758,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,13,<10,Pvt Ltd,never,60,0.0 +5863,city_11,0.55,,Has relevent experience,no_enrollment,Masters,STEM,5,10/49,Early Stage Startup,4,9,1.0 +29227,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,No Major,6,,,1,26,1.0 +4409,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,11,0.0 +7561,city_75,0.9390000000000001,,No relevent experience,no_enrollment,Primary School,,3,,,never,70,0.0 +30616,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Funded Startup,1,127,0.0 +30823,city_50,0.8959999999999999,Female,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,1,23,0.0 +25640,city_104,0.924,Female,No relevent experience,Full time course,Graduate,STEM,6,,,4,11,1.0 +20257,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,39,1.0 +11943,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,2,18,1.0 +21680,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,57,1.0 +7857,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,23,1.0 +4483,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,1,68,0.0 +13490,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,19,10/49,Funded Startup,1,12,1.0 +9947,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,42,0.0 +28087,city_23,0.899,Male,Has relevent experience,Part time course,Graduate,STEM,7,<10,Early Stage Startup,1,63,0.0 +10768,city_104,0.924,Male,Has relevent experience,no_enrollment,High School,,>20,1000-4999,Pvt Ltd,1,44,0.0 +12708,city_74,0.579,Male,Has relevent experience,no_enrollment,,,5,,,1,4,1.0 +25759,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,40,0.0 +12427,city_21,0.624,Female,No relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,never,23,0.0 +6275,city_73,0.754,,No relevent experience,Part time course,Graduate,STEM,6,,,2,200,0.0 +16403,city_21,0.624,,Has relevent experience,Part time course,Masters,STEM,2,10/49,Pvt Ltd,1,24,0.0 +28768,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,2,29,0.0 +19622,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Funded Startup,>4,2,0.0 +13367,city_105,0.794,Male,Has relevent experience,no_enrollment,High School,,14,<10,Pvt Ltd,>4,33,0.0 +22598,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,1,6,0.0 +14927,city_128,0.527,Male,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Pvt Ltd,1,88,0.0 +31480,city_16,0.91,Female,No relevent experience,no_enrollment,Graduate,No Major,14,50-99,Pvt Ltd,3,56,0.0 +930,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,1,19,0.0 +21413,city_136,0.897,Male,Has relevent experience,no_enrollment,,,10,50-99,,1,17,0.0 +25887,city_76,0.698,Male,No relevent experience,no_enrollment,High School,,6,500-999,NGO,never,254,0.0 +17514,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,>4,6,0.0 +6907,city_21,0.624,,No relevent experience,,Graduate,STEM,<1,,,never,55,0.0 +13584,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,4,57,0.0 +27845,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,66,0.0 +22544,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,13,1.0 +12012,city_11,0.55,Male,Has relevent experience,Full time course,Masters,STEM,4,50-99,NGO,1,110,1.0 +16436,city_67,0.855,Other,Has relevent experience,no_enrollment,High School,,11,50-99,Funded Startup,4,78,1.0 +5378,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,,1,126,0.0 +3187,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,16,0.0 +6761,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,>4,168,1.0 +32171,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10/49,Pvt Ltd,2,47,0.0 +24665,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,24,0.0 +28983,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,67,0.0 +5036,city_71,0.884,Male,Has relevent experience,Part time course,Graduate,STEM,11,10/49,Early Stage Startup,1,138,0.0 +31671,city_24,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,30,0.0 +7434,city_75,0.9390000000000001,Female,Has relevent experience,Part time course,Graduate,STEM,15,500-999,Pvt Ltd,1,44,0.0 +8535,city_101,0.5579999999999999,,No relevent experience,no_enrollment,High School,,6,,,never,31,1.0 +28777,city_114,0.9259999999999999,,No relevent experience,Part time course,High School,,3,50-99,Early Stage Startup,2,134,0.0 +8950,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,163,0.0 +16813,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,2,37,0.0 +32575,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10/49,Early Stage Startup,1,45,0.0 +4193,city_100,0.887,Male,Has relevent experience,no_enrollment,Phd,STEM,10,10/49,Pvt Ltd,2,218,0.0 +5198,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10/49,Pvt Ltd,2,52,1.0 +13229,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,72,0.0 +2786,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,1,28,0.0 +12985,city_67,0.855,Other,No relevent experience,no_enrollment,Primary School,,1,,,never,17,1.0 +26785,city_138,0.836,Male,No relevent experience,Full time course,Graduate,STEM,11,50-99,Pvt Ltd,never,28,0.0 +7930,city_24,0.698,,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,never,6,0.0 +30292,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,8,0.0 +15034,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,44,0.0 +14047,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,12,,,2,48,0.0 +5903,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,5000-9999,Pvt Ltd,3,67,1.0 +27947,city_173,0.878,Male,No relevent experience,no_enrollment,High School,,10,,,1,17,1.0 +3105,city_116,0.743,Male,No relevent experience,Full time course,Graduate,STEM,3,,Pvt Ltd,never,47,1.0 +26323,city_103,0.92,Other,No relevent experience,no_enrollment,Graduate,Business Degree,<1,1000-4999,Pvt Ltd,>4,130,0.0 +29517,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,never,30,0.0 +27358,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,4,100-500,,never,85,1.0 +21374,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,1,50-99,Pvt Ltd,,124,1.0 +8476,city_101,0.5579999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,1,33,0.0 +24323,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Funded Startup,1,61,1.0 +19519,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,,,1,56,0.0 +12179,city_44,0.725,,Has relevent experience,no_enrollment,Graduate,STEM,7,,,never,80,0.0 +28429,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,35,0.0 +16186,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,2,50,0.0 +22667,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,64,0.0 +30919,city_143,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,65,0.0 +3682,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,Pvt Ltd,>4,85,0.0 +16056,city_55,0.7390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,1,119,0.0 +19565,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,8,100-500,Early Stage Startup,3,84,1.0 +24338,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,1000-4999,Pvt Ltd,1,74,0.0 +7180,city_21,0.624,,No relevent experience,no_enrollment,Primary School,,1,,,never,46,0.0 +13652,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,6,0.0 +23612,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Public Sector,1,53,0.0 +23248,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,2,90,0.0 +1580,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,1,,,never,4,0.0 +14613,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,3,10000+,Pvt Ltd,2,56,0.0 +17552,city_105,0.794,,Has relevent experience,Full time course,,,<1,,,,18,0.0 +24148,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,8,100-500,Pvt Ltd,1,52,1.0 +27162,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,65,0.0 +28926,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Business Degree,5,10000+,Pvt Ltd,>4,12,0.0 +18048,city_27,0.848,Male,Has relevent experience,Full time course,High School,,6,50-99,Pvt Ltd,2,67,0.0 +11525,city_11,0.55,,No relevent experience,Part time course,Graduate,STEM,<1,,,never,20,1.0 +8604,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,14,10000+,Pvt Ltd,>4,43,0.0 +8757,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,26,1.0 +23889,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,1,10000+,Pvt Ltd,1,72,0.0 +9080,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,,,1,65,0.0 +19484,city_136,0.897,Male,Has relevent experience,no_enrollment,High School,,2,10/49,Pvt Ltd,2,30,0.0 +5627,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,,,never,10,1.0 +832,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,>4,22,1.0 +6240,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,18,100-500,Pvt Ltd,>4,61,0.0 +44,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,1,145,0.0 +13527,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Arts,2,,,1,48,0.0 +27660,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,2,30,1.0 +25643,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,8,100-500,Pvt Ltd,1,96,0.0 +26913,city_57,0.866,Male,Has relevent experience,Full time course,Graduate,STEM,6,<10,,1,108,0.0 +6284,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,11,,,1,28,1.0 +15969,city_105,0.794,Male,Has relevent experience,Full time course,High School,,5,<10,Pvt Ltd,1,91,0.0 +32081,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,Humanities,18,50-99,Pvt Ltd,1,20,0.0 +17972,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,6,<10,Pvt Ltd,2,54,0.0 +5169,city_21,0.624,,Has relevent experience,Full time course,High School,,5,,,1,16,1.0 +30203,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,4,50-99,Pvt Ltd,1,22,0.0 +30978,city_167,0.9209999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,13,<10,Funded Startup,1,150,0.0 +23298,city_103,0.92,,No relevent experience,no_enrollment,High School,,6,,,never,35,0.0 +7479,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,32,0.0 +16452,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,87,0.0 +9901,city_166,0.649,Male,Has relevent experience,Part time course,Graduate,STEM,1,10/49,Early Stage Startup,never,19,0.0 +11411,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Masters,STEM,4,1000-4999,Pvt Ltd,2,44,0.0 +7790,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,9,0.0 +10733,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,3,1.0 +8438,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,7,5000-9999,Pvt Ltd,1,41,1.0 +3748,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,7,<10,Pvt Ltd,1,116,0.0 +1947,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,No Major,16,,,1,49,0.0 +7480,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,Humanities,>20,100-500,Pvt Ltd,1,64,0.0 +10399,city_103,0.92,Male,No relevent experience,no_enrollment,,,5,,,never,67,0.0 +23315,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,1,500-999,Public Sector,never,95,1.0 +28880,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,1,10000+,Pvt Ltd,1,42,0.0 +21571,city_90,0.698,,No relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,70,0.0 +16025,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,10,,,never,87,0.0 +17257,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,1,<10,,,43,0.0 +26204,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,5000-9999,Public Sector,>4,9,0.0 +26699,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,10,<10,Early Stage Startup,1,107,1.0 +5993,city_150,0.698,Male,Has relevent experience,no_enrollment,High School,,16,100-500,Public Sector,>4,74,0.0 +11656,city_21,0.624,Female,No relevent experience,no_enrollment,Masters,STEM,13,1000-4999,Pvt Ltd,>4,56,1.0 +24939,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,2,56,1.0 +3040,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,NGO,2,17,0.0 +18674,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,47,0.0 +16350,city_90,0.698,,No relevent experience,no_enrollment,High School,,1,,,never,6,0.0 +17739,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,<1,10/49,Pvt Ltd,1,22,0.0 +24758,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,>4,52,0.0 +20491,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,6,100-500,Pvt Ltd,1,16,1.0 +28749,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Funded Startup,1,82,0.0 +16837,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,,,1,162,1.0 +2881,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,6,500-999,Pvt Ltd,2,90,0.0 +2514,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Pvt Ltd,3,39,0.0 +31605,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,31,0.0 +3608,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,40,0.0 +8850,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,4,51,0.0 +11790,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,110,1.0 +336,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,4,10/49,Pvt Ltd,1,96,0.0 +7338,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,100-500,NGO,>4,82,0.0 +28107,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,1,155,0.0 +30734,city_145,0.555,Male,No relevent experience,no_enrollment,Graduate,Humanities,1,,,never,26,1.0 +9524,city_12,0.64,,Has relevent experience,Part time course,High School,,6,100-500,,1,10,0.0 +26392,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Funded Startup,1,24,0.0 +31766,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Early Stage Startup,1,34,1.0 +29670,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,,3,28,0.0 +27254,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Funded Startup,3,40,0.0 +30225,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,3,167,1.0 +1835,city_75,0.9390000000000001,Male,Has relevent experience,Full time course,High School,,19,50-99,Public Sector,2,26,0.0 +31695,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,81,0.0 +30704,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Other,>4,30,0.0 +17000,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,>4,101,0.0 +14378,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,<1,500-999,,1,22,1.0 +20289,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,7,1.0 +11194,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,2,314,0.0 +390,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,never,28,0.0 +11863,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,16,1000-4999,Pvt Ltd,1,30,0.0 +22002,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,2,110,0.0 +18687,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Other,13,1000-4999,NGO,>4,182,0.0 +9088,city_115,0.789,Female,No relevent experience,Full time course,Graduate,STEM,3,,,never,144,1.0 +23977,city_123,0.738,,Has relevent experience,Full time course,Graduate,STEM,17,,,3,13,1.0 +32738,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,<1,,Pvt Ltd,never,114,0.0 +22299,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,70,0.0 +25200,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,118,0.0 +1389,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,>4,55,0.0 +23738,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,34,0.0 +30160,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,never,168,0.0 +14813,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,7,,Pvt Ltd,1,21,1.0 +26558,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,3,68,1.0 +32237,city_67,0.855,Male,No relevent experience,no_enrollment,High School,,8,,,never,31,0.0 +31778,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,32,0.0 +15044,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,1000-4999,Pvt Ltd,2,14,0.0 +3705,city_157,0.769,Male,Has relevent experience,no_enrollment,Masters,STEM,14,5000-9999,Public Sector,2,36,0.0 +25652,city_102,0.804,,No relevent experience,no_enrollment,Masters,Business Degree,5,,,2,157,1.0 +31680,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,Humanities,11,50-99,Pvt Ltd,3,90,0.0 +29674,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,,,>4,27,0.0 +2142,city_76,0.698,,Has relevent experience,no_enrollment,High School,,5,<10,Funded Startup,1,44,0.0 +14745,city_21,0.624,Female,No relevent experience,Full time course,Masters,STEM,6,10/49,Pvt Ltd,1,29,0.0 +6887,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,24,0.0 +11834,city_114,0.9259999999999999,,Has relevent experience,Part time course,Graduate,STEM,15,10/49,Pvt Ltd,>4,73,0.0 +2037,city_149,0.6890000000000001,Male,No relevent experience,,Graduate,STEM,6,,,2,166,1.0 +29029,city_102,0.804,Male,Has relevent experience,Part time course,Graduate,STEM,2,100-500,Pvt Ltd,1,31,0.0 +29032,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,3,10,0.0 +23323,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,37,0.0 +4916,city_128,0.527,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,92,0.0 +12871,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,10,,,1,60,1.0 +7047,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Pvt Ltd,1,70,1.0 +31619,city_64,0.6659999999999999,Male,No relevent experience,Part time course,Masters,Humanities,2,,,2,81,0.0 +26734,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,Arts,8,10/49,Public Sector,1,23,0.0 +22833,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,5,50-99,Public Sector,1,95,0.0 +26507,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,4,6,0.0 +10744,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,4,80,0.0 +4854,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,20,,,>4,24,1.0 +13950,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,30,1.0 +30716,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10/49,Funded Startup,2,36,0.0 +3545,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,31,0.0 +28034,city_23,0.899,,Has relevent experience,Full time course,,,3,<10,Public Sector,1,8,0.0 +6053,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,98,0.0 +23661,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,5,,,>4,31,1.0 +28746,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,6,50-99,Pvt Ltd,1,45,0.0 +29384,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,94,0.0 +21262,city_158,0.7659999999999999,,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,1,158,0.0 +31104,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,2,48,0.0 +20161,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Other,5,,,1,54,0.0 +768,city_36,0.893,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,22,0.0 +29840,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,42,0.0 +26111,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,8,10000+,Pvt Ltd,1,21,0.0 +29292,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,16,0.0 +25831,city_173,0.878,Male,No relevent experience,Full time course,Graduate,STEM,14,,,2,8,1.0 +1458,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,>4,6,1.0 +17112,city_160,0.92,Male,No relevent experience,no_enrollment,Primary School,,1,,,never,60,1.0 +20197,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Funded Startup,1,83,0.0 +8025,city_45,0.89,,Has relevent experience,no_enrollment,Masters,STEM,12,1000-4999,Pvt Ltd,1,46,0.0 +13411,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,12,0.0 +20264,city_73,0.754,,No relevent experience,no_enrollment,High School,,1,,,never,59,0.0 +25878,city_57,0.866,Male,Has relevent experience,Full time course,Graduate,STEM,7,,,2,94,0.0 +430,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,3,46,1.0 +22953,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,10,10/49,Pvt Ltd,>4,150,0.0 +10841,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,54,0.0 +12861,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,11,1000-4999,,2,31,0.0 +31610,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,78,0.0 +5297,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,Humanities,>20,1000-4999,Pvt Ltd,1,96,0.0 +24859,city_102,0.804,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Public Sector,>4,28,1.0 +1785,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,20,1.0 +11690,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,1000-4999,Pvt Ltd,1,13,0.0 +2568,city_173,0.878,,No relevent experience,no_enrollment,Masters,Humanities,1,<10,Pvt Ltd,1,98,0.0 +12796,city_16,0.91,,No relevent experience,Full time course,High School,,<1,10/49,Pvt Ltd,2,58,0.0 +17,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,13,5000-9999,Pvt Ltd,4,38,0.0 +5773,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,55,0.0 +21178,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,15,0.0 +7667,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,4,100-500,NGO,2,68,0.0 +20025,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,>4,23,1.0 +3246,city_100,0.887,Male,Has relevent experience,Full time course,,,14,,,1,43,1.0 +1435,city_103,0.92,,No relevent experience,no_enrollment,High School,,,,,,4,0.0 +9960,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,>4,34,0.0 +3343,city_100,0.887,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,76,0.0 +28152,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,10/49,NGO,>4,278,0.0 +18554,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,86,0.0 +30402,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,1,20,0.0 +13285,city_41,0.8270000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,>20,50-99,Pvt Ltd,>4,118,0.0 +4510,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,High School,,3,,,never,9,0.0 +6860,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,7,10/49,Pvt Ltd,never,70,1.0 +15782,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,1,23,0.0 +7414,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,1,39,0.0 +11822,city_160,0.92,Male,No relevent experience,Full time course,High School,,4,,,1,153,1.0 +21824,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,16,,,,91,1.0 +14322,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,105,0.0 +33327,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,70,0.0 +8611,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,188,1.0 +22463,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,4,104,1.0 +9435,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,1,22,0.0 +694,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,8,10/49,,>4,29,0.0 +14095,city_64,0.6659999999999999,Male,Has relevent experience,Part time course,Graduate,Humanities,2,100-500,Pvt Ltd,2,14,1.0 +27285,city_55,0.7390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,12,0.0 +14652,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Primary School,,2,,,never,103,0.0 +1432,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,14,10000+,Pvt Ltd,1,54,0.0 +10286,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,10,100-500,Pvt Ltd,1,4,1.0 +16634,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,,3,32,0.0 +24070,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,8,50-99,Funded Startup,4,33,0.0 +24247,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,never,63,0.0 +17874,city_141,0.763,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,68,0.0 +2841,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,1,55,0.0 +337,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Business Degree,>20,1000-4999,Pvt Ltd,3,16,0.0 +3625,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,50-99,Pvt Ltd,1,30,0.0 +1789,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,100-500,Pvt Ltd,1,83,0.0 +22166,city_160,0.92,,Has relevent experience,no_enrollment,,,17,,,2,87,0.0 +12968,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,10,10/49,Pvt Ltd,2,80,0.0 +12237,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,3,27,0.0 +31971,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,500-999,Pvt Ltd,>4,16,0.0 +9398,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Public Sector,1,56,1.0 +7737,city_45,0.89,,Has relevent experience,no_enrollment,High School,,14,50-99,Pvt Ltd,1,24,0.0 +18771,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,4,53,0.0 +15190,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,13,,Public Sector,1,57,1.0 +17143,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,20,100-500,Pvt Ltd,>4,130,0.0 +10610,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,7,,,2,43,0.0 +574,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,9,,,1,198,1.0 +11998,city_128,0.527,,Has relevent experience,no_enrollment,Masters,STEM,9,,,never,29,1.0 +23788,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,46,0.0 +21284,city_75,0.9390000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,4,5000-9999,Pvt Ltd,1,109,0.0 +2447,city_102,0.804,Male,No relevent experience,Part time course,Masters,STEM,2,,,1,2,1.0 +6954,city_27,0.848,,Has relevent experience,Full time course,Graduate,STEM,9,50-99,Pvt Ltd,1,103,0.0 +17716,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,100-500,Pvt Ltd,>4,94,0.0 +29591,city_134,0.698,,Has relevent experience,Full time course,Graduate,STEM,<1,500-999,NGO,>4,6,0.0 +5711,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,162,0.0 +28830,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,21,1.0 +3496,city_103,0.92,Other,Has relevent experience,,Graduate,STEM,6,50-99,Pvt Ltd,never,48,0.0 +32048,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Funded Startup,2,118,0.0 +10056,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,Pvt Ltd,1,37,0.0 +22012,city_90,0.698,Male,No relevent experience,Part time course,Masters,STEM,16,,,3,70,0.0 +3355,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Public Sector,>4,12,0.0 +1301,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,NGO,1,117,0.0 +2753,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,1000-4999,Pvt Ltd,never,78,1.0 +13528,city_24,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,7,50-99,Funded Startup,3,51,0.0 +22389,city_103,0.92,Female,Has relevent experience,Full time course,Masters,STEM,10,1000-4999,Public Sector,1,20,1.0 +29048,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,<1,,,2,55,1.0 +3816,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,,500-999,,1,21,0.0 +19609,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,9,0.0 +26775,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,114,0.0 +21070,city_90,0.698,,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,96,1.0 +27128,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,9,,Public Sector,never,166,0.0 +8296,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,2,99,0.0 +18595,city_145,0.555,,No relevent experience,Full time course,Graduate,STEM,2,,,1,3,0.0 +31346,city_103,0.92,Female,No relevent experience,no_enrollment,Phd,Humanities,>20,1000-4999,NGO,4,214,1.0 +16847,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,7,5000-9999,Pvt Ltd,1,37,1.0 +25087,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,,2,60,0.0 +33176,city_7,0.647,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,74,0.0 +16899,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,4,,,,25,0.0 +24506,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,>4,26,0.0 +27454,city_67,0.855,Male,Has relevent experience,no_enrollment,High School,,10,<10,Pvt Ltd,1,145,0.0 +25832,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Funded Startup,1,70,0.0 +1472,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,102,0.0 +12178,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,168,1.0 +13828,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,83,0.0 +11341,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,13,10000+,Pvt Ltd,3,28,0.0 +4402,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,>4,7,0.0 +1300,city_160,0.92,,Has relevent experience,Full time course,High School,,4,10/49,Pvt Ltd,,108,0.0 +5680,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,17,,,1,9,0.0 +20106,city_73,0.754,,No relevent experience,no_enrollment,High School,,2,<10,Pvt Ltd,1,37,0.0 +5730,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,3,37,0.0 +4200,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,3,170,0.0 +33315,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,18,0.0 +3855,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,14,100-500,,never,147,0.0 +4837,city_114,0.9259999999999999,,No relevent experience,Full time course,Masters,STEM,8,10/49,Pvt Ltd,>4,9,1.0 +24159,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,7,100-500,Pvt Ltd,1,157,0.0 +28184,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,<1,100-500,Pvt Ltd,never,284,1.0 +17861,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,34,1.0 +16172,city_73,0.754,,Has relevent experience,no_enrollment,Primary School,,3,,,never,109,0.0 +30882,city_114,0.9259999999999999,Female,No relevent experience,Full time course,Graduate,STEM,9,<10,Pvt Ltd,1,56,0.0 +11326,city_103,0.92,Male,No relevent experience,no_enrollment,,,3,,,never,92,0.0 +24006,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,never,180,1.0 +22459,city_21,0.624,,Has relevent experience,Part time course,Masters,Other,4,100-500,Pvt Ltd,1,3,0.0 +11180,city_105,0.794,Male,Has relevent experience,no_enrollment,High School,,9,50-99,,>4,104,0.0 +7169,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,NGO,4,23,0.0 +33191,city_21,0.624,,Has relevent experience,,Graduate,STEM,2,,Pvt Ltd,never,8,0.0 +6682,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,3,86,1.0 +3495,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,13,<10,Pvt Ltd,>4,34,0.0 +6210,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,11,10000+,Pvt Ltd,>4,42,0.0 +32073,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,9,10000+,Pvt Ltd,2,74,0.0 +21365,city_90,0.698,,No relevent experience,no_enrollment,Graduate,STEM,4,,,never,23,1.0 +19528,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Public Sector,1,18,0.0 +26826,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,7,0.0 +3667,city_14,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,10,0.0 +24291,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Pvt Ltd,2,328,0.0 +5957,city_23,0.899,Male,Has relevent experience,Full time course,Graduate,STEM,15,10000+,Pvt Ltd,2,6,0.0 +25564,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,<1,50-99,,1,53,0.0 +12357,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,60,1.0 +6243,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Funded Startup,4,77,0.0 +276,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,10,,,1,51,0.0 +8951,city_103,0.92,Female,No relevent experience,Full time course,Graduate,Humanities,<1,,,3,37,1.0 +14291,city_103,0.92,,No relevent experience,Full time course,High School,,4,500-999,Pvt Ltd,1,21,0.0 +26403,city_11,0.55,,Has relevent experience,Part time course,,,16,50-99,Public Sector,2,146,1.0 +18802,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,Humanities,14,,,1,24,1.0 +327,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,2,500-999,Other,1,78,1.0 +11515,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,>20,,,1,40,0.0 +7997,city_11,0.55,,Has relevent experience,no_enrollment,,,6,10/49,Pvt Ltd,3,56,1.0 +28091,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,57,0.0 +16442,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,7,,,1,102,0.0 +15334,city_99,0.915,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Public Sector,2,68,1.0 +18167,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,3,20,0.0 +31341,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,94,0.0 +30518,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,10,500-999,,1,50,0.0 +22549,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,Pvt Ltd,3,38,0.0 +26766,city_61,0.9129999999999999,,Has relevent experience,Full time course,Graduate,STEM,13,50-99,Pvt Ltd,1,42,0.0 +6702,city_40,0.7759999999999999,Female,No relevent experience,Full time course,Graduate,Other,1,100-500,,1,34,0.0 +2584,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Early Stage Startup,2,8,0.0 +10306,city_103,0.92,,Has relevent experience,Full time course,Masters,STEM,6,50-99,Pvt Ltd,2,28,0.0 +5755,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,>4,10,0.0 +13457,city_10,0.895,,No relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,>4,74,0.0 +22291,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,,,>20,50-99,Pvt Ltd,1,15,0.0 +736,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,7,1.0 +24085,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,3,10/49,Pvt Ltd,1,11,1.0 +24043,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,never,28,1.0 +2237,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,100-500,Pvt Ltd,>4,25,0.0 +32759,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,Humanities,6,100-500,Funded Startup,2,70,1.0 +6753,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,500-999,Pvt Ltd,1,18,0.0 +16327,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,High School,,6,500-999,Pvt Ltd,never,23,0.0 +7429,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,3,86,0.0 +24964,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,2,1000-4999,Pvt Ltd,1,34,1.0 +24832,city_103,0.92,,Has relevent experience,no_enrollment,,,>20,10000+,Pvt Ltd,>4,50,0.0 +11736,city_21,0.624,,No relevent experience,Full time course,High School,,7,,,never,46,1.0 +71,city_103,0.92,Male,Has relevent experience,no_enrollment,Primary School,,>20,<10,Funded Startup,2,35,0.0 +21954,city_103,0.92,,No relevent experience,Full time course,Masters,STEM,10,100-500,Public Sector,>4,104,0.0 +5404,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,69,0.0 +16672,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,,,47,0.0 +21295,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,10,,,never,26,0.0 +18073,city_114,0.9259999999999999,,No relevent experience,,Graduate,STEM,>20,,,never,162,0.0 +8394,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,,>4,45,0.0 +19600,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10000+,Pvt Ltd,4,7,0.0 +25163,city_28,0.9390000000000001,Other,No relevent experience,no_enrollment,High School,,4,50-99,,2,12,0.0 +200,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,100-500,Pvt Ltd,3,11,1.0 +32068,city_126,0.479,,Has relevent experience,no_enrollment,Primary School,,19,,Pvt Ltd,never,62,1.0 +16047,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,9,5000-9999,Public Sector,1,37,0.0 +15828,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Early Stage Startup,4,50,0.0 +8246,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,14,500-999,Pvt Ltd,1,224,0.0 +5986,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,5,500-999,Pvt Ltd,2,62,0.0 +27785,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,Humanities,2,100-500,Pvt Ltd,1,20,0.0 +18969,city_36,0.893,,Has relevent experience,Part time course,High School,,5,<10,Early Stage Startup,1,23,0.0 +9893,city_7,0.647,,Has relevent experience,Full time course,Masters,STEM,4,,,1,26,1.0 +28160,city_21,0.624,,No relevent experience,Full time course,High School,,3,,,never,58,0.0 +14735,city_116,0.743,,Has relevent experience,Full time course,High School,,2,100-500,Pvt Ltd,,108,0.0 +12763,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,Arts,9,<10,Public Sector,3,28,0.0 +7963,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,5000-9999,Pvt Ltd,1,57,1.0 +30431,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,10,10000+,Pvt Ltd,>4,39,0.0 +18176,city_97,0.925,,No relevent experience,no_enrollment,Masters,Humanities,1,500-999,,never,13,0.0 +13896,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,Other,7,50-99,Pvt Ltd,2,83,0.0 +25441,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,16,10000+,Pvt Ltd,>4,90,0.0 +15344,city_74,0.579,Male,No relevent experience,no_enrollment,Masters,STEM,2,100-500,Pvt Ltd,2,32,0.0 +10312,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,10,10000+,Pvt Ltd,1,55,0.0 +21877,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,Pvt Ltd,2,83,0.0 +10725,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,1,92,0.0 +19181,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,3,100-500,NGO,1,74,0.0 +15275,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,9,,,>4,46,0.0 +18091,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Funded Startup,1,11,0.0 +4813,city_24,0.698,Male,Has relevent experience,no_enrollment,Primary School,,4,,,1,13,0.0 +16308,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,,5000-9999,Pvt Ltd,,216,0.0 +5269,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,Funded Startup,4,50,0.0 +19105,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,2,59,0.0 +30415,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,,,1,15,0.0 +31036,city_21,0.624,Female,No relevent experience,,Masters,STEM,2,,Funded Startup,1,7,0.0 +14663,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,<1,100-500,Pvt Ltd,2,22,1.0 +30540,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,6,,,never,56,0.0 +221,city_159,0.843,Male,No relevent experience,Full time course,Masters,STEM,15,,Pvt Ltd,never,12,0.0 +22333,city_89,0.925,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,,1,75,0.0 +13212,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,3,12,0.0 +26201,city_103,0.92,,Has relevent experience,no_enrollment,Masters,Humanities,13,500-999,Public Sector,>4,182,0.0 +28004,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,2,75,0.0 +10180,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,29,0.0 +13769,city_121,0.7809999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,1,21,0.0 +5998,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,,2,5,0.0 +20474,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,,1,4,0.0 +15516,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,,100-500,,,46,0.0 +30780,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,100-500,Funded Startup,1,17,1.0 +4567,city_105,0.794,Female,Has relevent experience,Part time course,Graduate,STEM,5,1000-4999,Pvt Ltd,1,65,0.0 +10761,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,,100-500,Pvt Ltd,1,52,0.0 +3026,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,75,0.0 +27017,city_73,0.754,Other,No relevent experience,no_enrollment,Graduate,STEM,<1,,,never,7,0.0 +7559,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,42,0.0 +12332,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,12,0.0 +3974,city_102,0.804,Male,Has relevent experience,Full time course,Masters,STEM,7,10000+,Public Sector,1,2,1.0 +13267,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,Pvt Ltd,1,40,0.0 +23427,city_24,0.698,,No relevent experience,,High School,,8,,,never,63,0.0 +17605,city_50,0.8959999999999999,,No relevent experience,no_enrollment,Graduate,STEM,>20,,,never,10,0.0 +20912,city_73,0.754,,No relevent experience,Full time course,Graduate,STEM,5,,,never,46,0.0 +13948,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,1,18,0.0 +15205,city_160,0.92,Male,No relevent experience,Full time course,High School,,7,100-500,Pvt Ltd,1,55,0.0 +15140,city_173,0.878,Male,Has relevent experience,Part time course,Primary School,,8,,,1,4,0.0 +21736,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Graduate,STEM,7,100-500,Pvt Ltd,1,324,1.0 +19800,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,26,0.0 +23755,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,>4,140,0.0 +12148,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,Humanities,>20,,,>4,158,0.0 +16451,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,6,100-500,,never,6,1.0 +27190,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,2,100-500,Pvt Ltd,1,80,1.0 +19370,city_19,0.682,,No relevent experience,Full time course,High School,,2,,,never,260,0.0 +20207,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,20,50-99,Pvt Ltd,>4,7,0.0 +4749,city_136,0.897,Male,No relevent experience,no_enrollment,High School,,<1,50-99,Pvt Ltd,1,64,0.0 +21338,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,,,never,22,0.0 +18506,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,1,50-99,Pvt Ltd,1,22,0.0 +19715,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,3,50-99,,2,34,0.0 +10550,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,never,44,1.0 +32681,city_44,0.725,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,50,0.0 +12075,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Early Stage Startup,>4,78,0.0 +10828,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,2,12,0.0 +17948,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,7,10000+,Pvt Ltd,3,28,0.0 +22514,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Pvt Ltd,>4,222,0.0 +4,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,9,50-99,Public Sector,>4,13,0.0 +18446,city_30,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Public Sector,3,7,0.0 +27469,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,3,33,0.0 +32443,city_149,0.6890000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,1,61,0.0 +14208,city_103,0.92,Male,Has relevent experience,no_enrollment,Primary School,,12,,,1,78,0.0 +28786,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,Arts,12,<10,Early Stage Startup,never,50,0.0 +16053,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,49,0.0 +9847,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,51,0.0 +114,city_16,0.91,Male,Has relevent experience,no_enrollment,,,>20,50-99,Funded Startup,1,82,0.0 +19839,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,8,100-500,Funded Startup,1,74,0.0 +12455,city_75,0.9390000000000001,,No relevent experience,Part time course,Graduate,STEM,2,,,never,36,0.0 +26933,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,7,0.0 +1370,city_11,0.55,Male,Has relevent experience,Full time course,Graduate,STEM,2,,,1,65,1.0 +20539,city_173,0.878,Male,No relevent experience,Part time course,High School,,>20,1000-4999,Pvt Ltd,>4,196,0.0 +8224,city_1,0.847,Male,Has relevent experience,no_enrollment,Masters,STEM,3,,,never,39,0.0 +10221,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,4,34,0.0 +6888,city_100,0.887,Male,No relevent experience,no_enrollment,High School,,5,,Pvt Ltd,2,106,0.0 +10821,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,4,15,0.0 +24952,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,never,86,0.0 +17227,city_80,0.847,Male,No relevent experience,no_enrollment,Graduate,STEM,20,10000+,Pvt Ltd,never,9,0.0 +24801,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Funded Startup,1,84,0.0 +29285,city_21,0.624,Male,No relevent experience,Full time course,High School,,7,,,2,25,0.0 +7399,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,10,,,2,4,0.0 +13647,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,140,0.0 +17212,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,>4,14,0.0 +30152,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,No Major,7,1000-4999,Public Sector,>4,22,0.0 +2232,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,1,83,0.0 +28813,city_75,0.9390000000000001,,No relevent experience,no_enrollment,Graduate,STEM,17,,,>4,194,0.0 +19526,city_21,0.624,Male,Has relevent experience,no_enrollment,,,10,100-500,Pvt Ltd,2,12,0.0 +7264,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,110,1.0 +31261,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,5000-9999,Pvt Ltd,1,70,0.0 +14686,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,1,105,0.0 +29065,city_150,0.698,Other,Has relevent experience,,Phd,Humanities,>20,,,1,9,1.0 +20440,city_138,0.836,Male,No relevent experience,Part time course,High School,,>20,50-99,Pvt Ltd,2,108,0.0 +10832,city_73,0.754,Male,No relevent experience,no_enrollment,Phd,STEM,>20,10000+,Public Sector,>4,26,0.0 +19219,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,70,0.0 +25732,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,Pvt Ltd,2,52,0.0 +13091,city_160,0.92,Male,No relevent experience,Part time course,Graduate,Other,6,10000+,Public Sector,3,55,0.0 +17922,city_123,0.738,Male,Has relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,1,55,1.0 +19479,city_114,0.9259999999999999,,No relevent experience,,,,>20,,,2,27,0.0 +32238,city_159,0.843,Male,No relevent experience,Full time course,Primary School,,8,,,1,162,0.0 +8104,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,Pvt Ltd,never,15,0.0 +27077,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,,1,80,0.0 +4093,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,2,48,0.0 +7325,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,,1,139,0.0 +11467,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,10,,,1,70,0.0 +15611,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,56,0.0 +24160,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,STEM,2,10/49,,never,59,1.0 +22381,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,63,0.0 +24452,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,106,0.0 +10592,city_77,0.83,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Pvt Ltd,2,16,0.0 +18103,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Public Sector,2,64,0.0 +13304,city_21,0.624,Male,Has relevent experience,Full time course,,,6,100-500,Pvt Ltd,1,51,0.0 +10773,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,No Major,2,50-99,Early Stage Startup,never,83,0.0 +17772,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,21,1.0 +20991,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,19,1.0 +7365,city_57,0.866,Male,No relevent experience,no_enrollment,Phd,STEM,9,100-500,Pvt Ltd,>4,53,0.0 +13076,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,146,1.0 +32852,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,<1,50-99,Pvt Ltd,1,59,0.0 +16749,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Masters,STEM,16,1000-4999,NGO,>4,101,0.0 +1414,city_101,0.5579999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Early Stage Startup,,141,0.0 +18453,city_65,0.802,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,2,22,1.0 +11443,city_74,0.579,Male,No relevent experience,no_enrollment,Graduate,Other,15,,,never,68,1.0 +29925,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,78,1.0 +25486,city_36,0.893,,No relevent experience,no_enrollment,High School,,5,,,1,10,0.0 +23126,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,100-500,Funded Startup,1,28,0.0 +13681,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,21,0.0 +20147,city_90,0.698,,No relevent experience,Full time course,Graduate,STEM,1,,,never,34,0.0 +21198,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,,>4,24,0.0 +17048,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,9,,,2,34,1.0 +4351,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,37,0.0 +8809,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,100-500,Pvt Ltd,>4,33,0.0 +6970,city_100,0.887,,No relevent experience,Part time course,High School,,3,10/49,Pvt Ltd,1,12,0.0 +22603,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,<1,<10,Pvt Ltd,1,114,0.0 +28169,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,4,69,0.0 +6113,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,139,0.0 +20966,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,,156,0.0 +4671,city_74,0.579,,No relevent experience,Full time course,Graduate,STEM,1,,,1,16,1.0 +12899,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,,,1,15,0.0 +9318,city_21,0.624,Male,No relevent experience,Full time course,Primary School,,4,,,never,25,1.0 +19318,city_103,0.92,Male,Has relevent experience,Full time course,High School,,2,10000+,Public Sector,never,34,0.0 +31978,city_67,0.855,Male,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,6,0.0 +11167,city_103,0.92,,No relevent experience,no_enrollment,High School,,5,,,2,27,1.0 +19244,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,83,0.0 +25784,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,3,26,0.0 +15247,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,Other,>20,,,>4,90,0.0 +29090,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,7,0.0 +23664,city_2,0.7879999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,100-500,Funded Startup,1,56,0.0 +17562,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,80,1.0 +14485,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,5,50-99,Pvt Ltd,2,23,0.0 +31383,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,3,,Pvt Ltd,never,11,0.0 +19326,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,11,0.0 +28923,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,1,48,0.0 +12833,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,100-500,Pvt Ltd,1,10,0.0 +13724,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,9,50-99,Public Sector,2,2,0.0 +3338,city_36,0.893,Male,Has relevent experience,no_enrollment,,,12,50-99,Pvt Ltd,4,11,0.0 +26843,city_91,0.691,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,96,0.0 +32951,city_16,0.91,,No relevent experience,Full time course,Graduate,STEM,1,,,1,6,1.0 +19273,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,7,,,2,10,0.0 +28206,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,36,1.0 +24075,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,50-99,Pvt Ltd,3,56,1.0 +25829,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,No Major,9,,,2,56,1.0 +7330,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,,,>4,32,1.0 +23490,city_23,0.899,Male,No relevent experience,Part time course,Graduate,STEM,4,,,never,18,1.0 +3174,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,Other,2,324,0.0 +21559,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,,2,184,0.0 +20274,city_103,0.92,,No relevent experience,Full time course,Masters,STEM,19,,Public Sector,4,36,0.0 +9759,city_67,0.855,Female,Has relevent experience,Full time course,Graduate,STEM,2,<10,Early Stage Startup,1,49,0.0 +10617,city_10,0.895,,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,1,56,0.0 +5028,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,98,0.0 +25245,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,6,0.0 +31747,city_146,0.735,Male,No relevent experience,no_enrollment,Graduate,STEM,15,,,>4,18,1.0 +10547,city_21,0.624,Female,No relevent experience,Part time course,Graduate,STEM,5,50-99,Pvt Ltd,1,32,0.0 +30087,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,1,1000-4999,Pvt Ltd,1,58,1.0 +25201,city_10,0.895,Male,No relevent experience,Full time course,Graduate,STEM,6,10/49,Pvt Ltd,2,73,0.0 +27210,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,21,0.0 +5231,city_23,0.899,Male,Has relevent experience,Full time course,Masters,STEM,13,500-999,Funded Startup,1,20,0.0 +13797,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,1,56,0.0 +24828,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Public Sector,>4,6,0.0 +25254,city_21,0.624,Female,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Pvt Ltd,1,4,1.0 +7843,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,1,54,1.0 +20208,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,57,0.0 +31032,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Masters,Business Degree,>20,1000-4999,Pvt Ltd,3,1,0.0 +31960,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Other,5,1000-4999,Public Sector,1,50,0.0 +30247,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,500-999,Pvt Ltd,>4,10,0.0 +19036,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,1,500-999,Pvt Ltd,1,46,0.0 +18408,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,20,100-500,Other,2,4,0.0 +32658,city_114,0.9259999999999999,Male,Has relevent experience,,,,15,50-99,Pvt Ltd,1,94,0.0 +27073,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,106,1.0 +1811,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,>4,96,1.0 +26975,city_50,0.8959999999999999,Male,No relevent experience,Full time course,High School,,4,,,never,89,0.0 +8059,city_61,0.9129999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,7,100-500,Pvt Ltd,1,18,0.0 +8176,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,4,1000-4999,Pvt Ltd,,64,1.0 +3272,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,39,0.0 +10484,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,1,15,0.0 +22820,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,,never,50,0.0 +21640,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,89,0.0 +32986,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,45,0.0 +7538,city_46,0.762,Male,No relevent experience,no_enrollment,Masters,STEM,10,5000-9999,Public Sector,1,122,0.0 +19084,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Funded Startup,1,87,0.0 +15716,city_104,0.924,,Has relevent experience,no_enrollment,Masters,Other,<1,100-500,Public Sector,1,40,0.0 +23733,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,13,1.0 +15499,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Other,19,<10,Funded Startup,1,130,0.0 +23355,city_109,0.701,Male,No relevent experience,no_enrollment,Primary School,,<1,,,never,72,0.0 +25195,city_21,0.624,,No relevent experience,Full time course,High School,,4,,,never,48,0.0 +3643,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,,,>20,<10,Public Sector,>4,3,0.0 +31670,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,10000+,Pvt Ltd,1,20,0.0 +111,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,3,25,0.0 +5895,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,never,50,0.0 +14435,city_158,0.7659999999999999,,No relevent experience,Full time course,Graduate,STEM,3,,,never,182,1.0 +20393,city_11,0.55,Male,Has relevent experience,Part time course,Graduate,No Major,6,500-999,Pvt Ltd,1,23,1.0 +20836,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,1,,,never,65,0.0 +18592,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,10,10000+,Pvt Ltd,never,44,0.0 +22583,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,2,9,1.0 +4984,city_21,0.624,Male,No relevent experience,Full time course,Graduate,Arts,1,,Pvt Ltd,never,42,0.0 +2930,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,8,,,,155,1.0 +8106,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,8,<10,Early Stage Startup,,12,0.0 +28704,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,13,10000+,Pvt Ltd,never,73,0.0 +24001,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,54,0.0 +2884,city_40,0.7759999999999999,,Has relevent experience,Full time course,Graduate,STEM,10,50-99,Pvt Ltd,1,33,1.0 +8347,city_160,0.92,Male,No relevent experience,no_enrollment,High School,,>20,,,>4,22,0.0 +3480,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,5,10000+,Public Sector,1,21,0.0 +31651,city_16,0.91,Male,No relevent experience,Full time course,Primary School,,9,,,never,29,0.0 +21427,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,2,242,0.0 +21395,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,2,30,1.0 +11959,city_27,0.848,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,1,19,0.0 +20994,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,3,162,0.0 +3514,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,8,0.0 +33125,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Funded Startup,1,24,0.0 +5148,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,STEM,20,,,1,29,1.0 +7831,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Public Sector,3,51,0.0 +2951,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,never,34,1.0 +1951,city_74,0.579,Male,No relevent experience,no_enrollment,Masters,STEM,5,50-99,NGO,1,89,1.0 +10067,city_136,0.897,Male,No relevent experience,Full time course,Masters,STEM,5,,,never,86,0.0 +872,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,18,0.0 +11348,city_16,0.91,,No relevent experience,,Graduate,STEM,5,,,never,88,1.0 +33338,city_103,0.92,,No relevent experience,Part time course,,,6,,,1,98,0.0 +24657,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,42,0.0 +20441,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,,1,67,0.0 +28196,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,13,10000+,Pvt Ltd,1,51,0.0 +19312,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,500-999,Pvt Ltd,>4,46,0.0 +4840,city_136,0.897,Male,No relevent experience,Part time course,High School,,4,,Pvt Ltd,never,157,0.0 +19007,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,31,0.0 +30845,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,2,102,1.0 +17421,city_111,0.698,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,9,0.0 +27931,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,,1,69,0.0 +4977,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,Pvt Ltd,never,48,1.0 +28706,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,No Major,5,,,1,118,1.0 +19212,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Pvt Ltd,1,118,0.0 +7941,city_97,0.925,,Has relevent experience,Part time course,Masters,STEM,16,50-99,Pvt Ltd,>4,206,0.0 +30279,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,42,0.0 +17050,city_70,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,<1,,,2,26,1.0 +25742,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,<10,Pvt Ltd,>4,14,0.0 +14179,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,5000-9999,Public Sector,2,78,1.0 +1597,city_103,0.92,Other,No relevent experience,no_enrollment,Primary School,,8,,,1,29,0.0 +17255,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,1,,,never,87,0.0 +11772,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,11,1000-4999,Pvt Ltd,1,15,1.0 +18386,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Public Sector,1,95,1.0 +4580,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,Early Stage Startup,1,79,1.0 +29376,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,2,19,1.0 +30266,city_84,0.698,Male,No relevent experience,Full time course,High School,,1,100-500,Pvt Ltd,never,15,0.0 +15495,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Pvt Ltd,1,62,0.0 +1854,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,14,0.0 +27631,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,8,10/49,Pvt Ltd,never,50,1.0 +21910,city_21,0.624,Male,No relevent experience,Full time course,High School,,1,,,never,37,0.0 +16616,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Funded Startup,1,82,0.0 +3315,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,STEM,16,<10,Pvt Ltd,1,31,0.0 +2785,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,2,,,never,30,0.0 +16221,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,168,0.0 +15749,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,4,5000-9999,Public Sector,1,130,0.0 +23759,city_21,0.624,,No relevent experience,,High School,,6,,,never,28,1.0 +24692,city_142,0.727,Male,Has relevent experience,Full time course,Graduate,STEM,5,1000-4999,Pvt Ltd,1,48,0.0 +32011,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,2,84,0.0 +20674,city_97,0.925,Male,No relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,116,0.0 +22852,city_57,0.866,Male,No relevent experience,no_enrollment,High School,,15,100-500,Pvt Ltd,3,14,0.0 +7934,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,76,0.0 +30625,city_74,0.579,Male,Has relevent experience,Full time course,Graduate,No Major,2,50-99,Pvt Ltd,1,4,1.0 +4233,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,50,0.0 +13038,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,68,0.0 +16378,city_138,0.836,Male,Has relevent experience,Full time course,High School,,5,10000+,Pvt Ltd,1,58,0.0 +15308,city_41,0.8270000000000001,Male,No relevent experience,,,,5,,,never,214,0.0 +26380,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,16,,,2,64,1.0 +8642,city_100,0.887,,No relevent experience,no_enrollment,High School,,1,,,never,45,0.0 +3988,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,72,0.0 +24186,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,1000-4999,NGO,never,128,1.0 +11455,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,3,53,1.0 +1875,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,Business Degree,16,<10,Pvt Ltd,1,30,1.0 +11286,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,1,,,1,20,1.0 +8165,city_69,0.856,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,2,22,0.0 +17951,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,15,500-999,Pvt Ltd,never,334,0.0 +27782,city_100,0.887,,No relevent experience,no_enrollment,,,2,,,never,69,0.0 +7507,city_103,0.92,Male,No relevent experience,Full time course,High School,,3,,,never,36,1.0 +12562,city_143,0.74,Male,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Funded Startup,2,136,1.0 +5783,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,Pvt Ltd,2,50,0.0 +1932,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,126,0.0 +13565,city_150,0.698,Male,No relevent experience,Full time course,Graduate,STEM,1,,,never,74,1.0 +2407,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,20,0.0 +14049,city_114,0.9259999999999999,Other,No relevent experience,Full time course,Masters,STEM,>20,,,2,50,0.0 +20394,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,3,42,0.0 +25646,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,37,1.0 +21641,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,>4,106,1.0 +15664,city_36,0.893,Male,Has relevent experience,no_enrollment,High School,,12,100-500,NGO,>4,109,0.0 +26316,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,14,5000-9999,Pvt Ltd,1,87,1.0 +25527,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,26,0.0 +8704,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,3,54,0.0 +11110,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,11,500-999,Pvt Ltd,1,20,0.0 +31913,city_160,0.92,,No relevent experience,no_enrollment,Primary School,,1,,Pvt Ltd,never,47,0.0 +3724,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,70,0.0 +22898,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,>4,19,0.0 +27839,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,2,62,0.0 +8194,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,2,24,0.0 +19936,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,Business Degree,10,,,1,10,1.0 +914,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,>4,87,0.0 +19506,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,STEM,11,5000-9999,Public Sector,1,22,0.0 +1766,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,>4,294,0.0 +26472,city_114,0.9259999999999999,,Has relevent experience,Full time course,Masters,STEM,12,100-500,Pvt Ltd,2,91,0.0 +5638,city_90,0.698,Male,No relevent experience,no_enrollment,Masters,STEM,13,50-99,Pvt Ltd,never,131,0.0 +9360,city_100,0.887,,No relevent experience,Full time course,Phd,STEM,7,1000-4999,Public Sector,>4,124,0.0 +9550,city_74,0.579,Male,Has relevent experience,Full time course,Graduate,STEM,8,,,1,21,0.0 +20190,city_65,0.802,Male,No relevent experience,no_enrollment,Phd,STEM,10,100-500,Public Sector,>4,73,0.0 +6350,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,1,46,0.0 +19308,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,2,65,0.0 +30140,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,7,1.0 +18624,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,10,5000-9999,Pvt Ltd,1,286,1.0 +7744,city_45,0.89,Male,Has relevent experience,Part time course,Graduate,STEM,7,50-99,Early Stage Startup,1,31,0.0 +14723,city_101,0.5579999999999999,Male,No relevent experience,Full time course,High School,,4,<10,Early Stage Startup,1,87,0.0 +2200,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,2,88,0.0 +18923,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,21,1.0 +31088,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,1,<10,Early Stage Startup,1,7,0.0 +13401,city_65,0.802,Male,Has relevent experience,Part time course,Graduate,STEM,6,1000-4999,Pvt Ltd,1,141,0.0 +19440,city_11,0.55,Male,Has relevent experience,Part time course,Graduate,STEM,2,50-99,Pvt Ltd,1,97,1.0 +22897,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,<1,,,2,8,1.0 +12603,city_11,0.55,Male,No relevent experience,no_enrollment,High School,,2,,,2,46,1.0 +19628,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Early Stage Startup,never,12,0.0 +10088,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,1,84,0.0 +3873,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,2,84,1.0 +15941,city_128,0.527,Male,No relevent experience,no_enrollment,Graduate,Other,3,,,never,28,0.0 +24840,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,4,4,0.0 +7917,city_102,0.804,Male,Has relevent experience,Part time course,Primary School,,5,,,1,13,0.0 +24719,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,42,1.0 +2901,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,,6,50-99,Pvt Ltd,1,12,0.0 +20414,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,500-999,Pvt Ltd,,39,1.0 +3719,city_114,0.9259999999999999,,No relevent experience,Part time course,Masters,STEM,4,50-99,Public Sector,2,12,0.0 +31846,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,7,10000+,Pvt Ltd,1,22,0.0 +7170,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,39,1.0 +17420,city_117,0.698,,No relevent experience,no_enrollment,Graduate,STEM,6,,,never,106,1.0 +2288,city_61,0.9129999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,Pvt Ltd,2,72,1.0 +6386,city_73,0.754,Male,No relevent experience,Full time course,High School,,4,,,4,80,1.0 +1359,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Funded Startup,2,308,0.0 +10194,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,,>4,52,0.0 +7984,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,never,42,0.0 +11074,city_103,0.92,,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Public Sector,3,36,0.0 +6437,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,4,5000-9999,Public Sector,2,6,0.0 +14256,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,2,10/49,Pvt Ltd,1,52,0.0 +9869,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,2,53,0.0 +30278,city_103,0.92,Other,No relevent experience,Full time course,Graduate,Arts,1,,,never,117,0.0 +30778,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,4,28,0.0 +24406,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,28,1.0 +9480,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,172,0.0 +11989,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,43,0.0 +25055,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,3,10000+,Pvt Ltd,2,14,0.0 +6973,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,19,500-999,Pvt Ltd,>4,31,0.0 +23744,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,102,0.0 +31350,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,10000+,Pvt Ltd,1,77,0.0 +27428,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,Humanities,10,,,2,80,0.0 +19940,city_70,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,9,50-99,Pvt Ltd,>4,20,0.0 +9995,city_11,0.55,Male,No relevent experience,Full time course,Graduate,Humanities,<1,,,never,43,0.0 +6075,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,3,50,0.0 +24137,city_21,0.624,,No relevent experience,,Graduate,STEM,,<10,,,36,1.0 +22011,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,15,<10,Pvt Ltd,>4,59,0.0 +16259,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,NGO,3,54,1.0 +2873,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,1,94,0.0 +30211,city_145,0.555,Male,No relevent experience,Part time course,Graduate,STEM,<1,,,1,42,0.0 +13271,city_100,0.887,,No relevent experience,,,,>20,,,,39,1.0 +27918,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,>4,22,0.0 +4861,city_179,0.512,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,1,51,1.0 +23062,city_104,0.924,,No relevent experience,Full time course,Graduate,STEM,7,1000-4999,Public Sector,never,19,0.0 +30599,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,18,50-99,Pvt Ltd,4,45,0.0 +22321,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,14,,,never,88,0.0 +32993,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,18,50-99,NGO,>4,52,0.0 +15872,city_103,0.92,Male,No relevent experience,Full time course,High School,,4,,,1,26,0.0 +4239,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,5,,Pvt Ltd,never,22,0.0 +17410,city_24,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,2,48,0.0 +7362,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,39,1.0 +10972,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10000+,Pvt Ltd,3,57,0.0 +13169,city_100,0.887,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,1,100,0.0 +1834,city_159,0.843,Male,No relevent experience,no_enrollment,Masters,STEM,7,,Pvt Ltd,never,15,0.0 +411,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,500-999,Pvt Ltd,>4,25,0.0 +2233,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,<1,<10,,1,104,1.0 +17473,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Pvt Ltd,2,96,0.0 +26952,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,5,500-999,Pvt Ltd,>4,6,0.0 +26745,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,,1,9,0.0 +28235,city_16,0.91,,No relevent experience,no_enrollment,High School,,1,,,1,118,1.0 +13625,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,,2,144,0.0 +9452,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,2,28,0.0 +8227,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Pvt Ltd,1,57,0.0 +18675,city_11,0.55,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,43,0.0 +27954,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,13,1000-4999,Pvt Ltd,1,178,0.0 +26459,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,Funded Startup,,35,0.0 +9118,city_123,0.738,Male,No relevent experience,Full time course,High School,,3,,,1,4,0.0 +29286,city_97,0.925,,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,,1,39,0.0 +13510,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Pvt Ltd,>4,2,0.0 +5385,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,10,0.0 +10914,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,2,39,0.0 +31120,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,4,0.0 +30828,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,,1,46,0.0 +8717,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,3,106,1.0 +10638,city_21,0.624,Female,No relevent experience,Full time course,High School,,2,,,never,79,1.0 +23681,city_103,0.92,Male,No relevent experience,Full time course,High School,,5,50-99,NGO,1,3,0.0 +16476,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,<1,50-99,Pvt Ltd,>4,78,1.0 +28557,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10/49,,1,23,0.0 +14079,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Funded Startup,2,34,1.0 +3946,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,18,10000+,Pvt Ltd,1,2,0.0 +11534,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,,Pvt Ltd,1,104,0.0 +7586,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,4,150,0.0 +12573,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,1,5,0.0 +5451,city_73,0.754,,Has relevent experience,Part time course,Graduate,STEM,6,10/49,Pvt Ltd,1,160,0.0 +19562,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,8,<10,Early Stage Startup,1,84,0.0 +17187,city_150,0.698,Male,No relevent experience,Full time course,Graduate,STEM,<1,100-500,NGO,1,56,0.0 +20399,city_158,0.7659999999999999,,No relevent experience,Full time course,Graduate,STEM,3,10000+,,,13,1.0 +5159,city_23,0.899,Male,Has relevent experience,no_enrollment,High School,,18,,,>4,108,0.0 +8275,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,>4,161,0.0 +21424,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,6,1000-4999,,1,68,1.0 +1109,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,72,0.0 +32358,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,60,0.0 +11487,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,2,262,0.0 +5914,city_159,0.843,,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,3,33,0.0 +23946,city_103,0.92,Male,No relevent experience,Full time course,High School,,2,50-99,Pvt Ltd,1,220,0.0 +20442,city_89,0.925,Female,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,1,20,0.0 +16674,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,3,80,0.0 +1919,city_90,0.698,,No relevent experience,Full time course,High School,,4,10/49,NGO,1,334,0.0 +3990,city_100,0.887,Male,No relevent experience,Full time course,High School,,11,,,1,50,0.0 +13588,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Funded Startup,1,10,0.0 +13620,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,No Major,<1,10/49,Pvt Ltd,4,146,0.0 +2276,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,1,94,0.0 +18380,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,>4,28,0.0 +29106,city_1,0.847,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,,,3,150,0.0 +19463,city_33,0.44799999999999995,Male,No relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,36,0.0 +6614,city_76,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,20,50-99,Pvt Ltd,2,132,0.0 +1587,city_100,0.887,Male,Has relevent experience,,,,8,,,1,62,0.0 +28637,city_134,0.698,Male,Has relevent experience,Full time course,Masters,STEM,7,,Pvt Ltd,never,42,1.0 +24636,city_73,0.754,,Has relevent experience,Part time course,High School,,2,100-500,,1,38,0.0 +5629,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,6,<10,Pvt Ltd,1,111,1.0 +33220,city_73,0.754,Male,Has relevent experience,Part time course,Masters,STEM,14,10000+,Public Sector,2,288,0.0 +20350,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,1,134,0.0 +20420,city_136,0.897,Female,No relevent experience,Full time course,Phd,STEM,6,100-500,Public Sector,1,158,0.0 +24002,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Funded Startup,1,52,0.0 +23022,city_97,0.925,Male,No relevent experience,Full time course,Graduate,STEM,6,,,2,6,1.0 +856,city_162,0.767,,Has relevent experience,no_enrollment,High School,,2,10/49,Early Stage Startup,1,36,0.0 +21521,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,1000-4999,Pvt Ltd,never,59,0.0 +19663,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,64,1.0 +7760,city_37,0.794,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,,2,7,0.0 +15149,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,3,50-99,,2,107,1.0 +25381,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,>4,98,0.0 +17505,city_16,0.91,,No relevent experience,Full time course,Graduate,STEM,6,,,,46,0.0 +7735,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,222,0.0 +25307,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,2,162,1.0 +29377,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,never,22,1.0 +26521,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,73,0.0 +33078,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,No Major,10,100-500,Funded Startup,1,22,1.0 +9779,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,5000-9999,NGO,>4,18,0.0 +5657,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,16,0.0 +29407,city_65,0.802,Male,Has relevent experience,,,,>20,1000-4999,Pvt Ltd,,6,0.0 +17196,city_65,0.802,Male,Has relevent experience,no_enrollment,High School,,8,1000-4999,Pvt Ltd,1,13,0.0 +22960,city_50,0.8959999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Funded Startup,never,77,0.0 +9117,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,never,28,1.0 +16456,city_21,0.624,Female,Has relevent experience,,Graduate,STEM,12,50-99,Pvt Ltd,never,10,0.0 +12269,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Funded Startup,1,65,0.0 +12161,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,50-99,,1,50,0.0 +4235,city_100,0.887,Male,Has relevent experience,no_enrollment,Phd,STEM,16,50-99,Funded Startup,1,212,1.0 +19469,city_103,0.92,,Has relevent experience,Full time course,Graduate,STEM,7,,,1,17,1.0 +23975,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,13,5000-9999,Public Sector,1,161,0.0 +28402,city_16,0.91,Other,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,1,53,0.0 +417,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Funded Startup,3,150,0.0 +19254,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,20,10000+,Pvt Ltd,>4,22,0.0 +28310,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,108,1.0 +6856,city_114,0.9259999999999999,Other,No relevent experience,Full time course,High School,,8,5000-9999,,1,210,0.0 +9454,city_16,0.91,,No relevent experience,no_enrollment,Primary School,,3,,,never,278,0.0 +33332,city_12,0.64,,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Funded Startup,2,176,0.0 +26935,city_21,0.624,Male,No relevent experience,Full time course,High School,,8,,,never,27,0.0 +10904,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,3,43,0.0 +23731,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,92,0.0 +26811,city_41,0.8270000000000001,Male,No relevent experience,no_enrollment,High School,,10,,,1,109,0.0 +23496,city_21,0.624,Male,No relevent experience,no_enrollment,Primary School,,4,,,never,15,0.0 +29405,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Funded Startup,1,15,0.0 +12959,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,,,never,218,1.0 +18919,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,1,28,0.0 +20937,city_104,0.924,Male,No relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,1,53,0.0 +17298,city_136,0.897,Female,No relevent experience,Full time course,Graduate,STEM,4,10000+,Public Sector,1,47,0.0 +3638,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,36,1.0 +12673,city_36,0.893,Male,Has relevent experience,no_enrollment,High School,,8,100-500,Pvt Ltd,>4,110,0.0 +4895,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,>4,42,0.0 +7655,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,42,1.0 +22285,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,11,0.0 +20040,city_62,0.645,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,>4,19,0.0 +1364,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,20,100-500,Pvt Ltd,3,39,0.0 +27466,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,16,50-99,Pvt Ltd,2,50,0.0 +21150,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,4,25,0.0 +30943,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,>4,18,0.0 +29666,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,4,15,0.0 +2918,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,13,500-999,Pvt Ltd,4,70,0.0 +11504,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,48,0.0 +21964,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,33,0.0 +20251,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,3,,,1,91,0.0 +293,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,,3,15,0.0 +22931,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,8,,,1,16,0.0 +4665,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,Humanities,5,50-99,NGO,1,61,0.0 +9669,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Other,16,,,2,52,0.0 +31002,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,>4,69,1.0 +30275,city_81,0.73,Male,No relevent experience,no_enrollment,Primary School,,1,,,never,63,0.0 +33184,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,75,0.0 +27369,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,16,0.0 +11871,city_91,0.691,Male,No relevent experience,Full time course,High School,,2,,,1,2,1.0 +15673,city_16,0.91,,No relevent experience,no_enrollment,High School,,6,5000-9999,,1,7,0.0 +6539,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,1000-4999,Pvt Ltd,,142,0.0 +8789,city_103,0.92,,No relevent experience,Full time course,Masters,STEM,>20,100-500,NGO,2,48,0.0 +24792,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,1,<10,Pvt Ltd,1,200,0.0 +30413,city_16,0.91,,No relevent experience,Full time course,Graduate,STEM,2,10000+,Pvt Ltd,never,58,0.0 +5233,city_83,0.9229999999999999,Female,Has relevent experience,Full time course,Masters,STEM,9,,,4,101,1.0 +2992,city_173,0.878,Male,Has relevent experience,Full time course,Masters,STEM,5,100-500,NGO,1,26,0.0 +16889,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,7,,,2,84,0.0 +33032,city_2,0.7879999999999999,,No relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,>4,48,0.0 +20868,city_104,0.924,Male,Has relevent experience,no_enrollment,Phd,STEM,9,100-500,Pvt Ltd,1,11,1.0 +5776,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Pvt Ltd,2,12,0.0 +31101,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,500-999,Pvt Ltd,1,10,0.0 +29986,city_69,0.856,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,2,94,0.0 +10502,city_77,0.83,,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,2,278,0.0 +12973,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,High School,,5,50-99,Funded Startup,2,51,0.0 +1594,city_152,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,>4,89,0.0 +23155,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,40,0.0 +23145,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,52,0.0 +4585,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,24,0.0 +18096,city_103,0.92,,Has relevent experience,no_enrollment,Masters,Humanities,2,<10,Public Sector,1,17,0.0 +6754,city_98,0.9490000000000001,Male,No relevent experience,no_enrollment,Phd,Humanities,6,1000-4999,Public Sector,>4,127,0.0 +25356,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,5,10000+,Pvt Ltd,1,198,0.0 +30516,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,>4,94,0.0 +15614,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,17,0.0 +9215,city_11,0.55,,No relevent experience,no_enrollment,Graduate,STEM,5,50-99,Public Sector,4,19,1.0 +28761,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,10,10/49,Pvt Ltd,3,52,0.0 +28667,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Arts,1,100-500,Pvt Ltd,1,55,0.0 +3104,city_94,0.698,Male,No relevent experience,Full time course,High School,,<1,,Pvt Ltd,never,18,0.0 +19808,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,29,0.0 +21806,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,>4,30,1.0 +2559,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Early Stage Startup,1,135,0.0 +27780,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,11,,,never,45,0.0 +20123,city_73,0.754,,Has relevent experience,no_enrollment,Masters,STEM,4,,,1,33,1.0 +2239,city_67,0.855,Male,No relevent experience,Full time course,High School,,<1,,,never,6,0.0 +5990,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Early Stage Startup,2,5,1.0 +30172,city_28,0.9390000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,10,5000-9999,Public Sector,2,11,0.0 +1311,city_67,0.855,,No relevent experience,Full time course,Graduate,STEM,3,,,1,78,1.0 +18279,city_19,0.682,Male,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,1,14,0.0 +3856,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,1,32,0.0 +3393,city_160,0.92,Male,Has relevent experience,Full time course,Masters,STEM,9,100-500,Pvt Ltd,2,47,0.0 +25907,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,4,100-500,Pvt Ltd,3,40,0.0 +12377,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,>4,66,0.0 +32806,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,2,78,1.0 +8118,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,,3,128,0.0 +29936,city_103,0.92,,No relevent experience,no_enrollment,Masters,Humanities,2,50-99,Pvt Ltd,2,33,0.0 +14565,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,1,105,0.0 +31890,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,4,50-99,Pvt Ltd,1,28,0.0 +21980,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,41,0.0 +15090,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,6,0.0 +26529,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,2,50-99,NGO,1,90,0.0 +12964,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,17,10000+,Pvt Ltd,3,134,1.0 +32940,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,,2,43,0.0 +5360,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,12,5000-9999,Pvt Ltd,2,13,0.0 +23945,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,224,0.0 +18045,city_57,0.866,Male,No relevent experience,,,,3,,,never,47,0.0 +21834,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,86,0.0 +19107,city_160,0.92,,No relevent experience,no_enrollment,Primary School,,6,,,never,4,0.0 +19594,city_136,0.897,Male,No relevent experience,Full time course,Masters,STEM,14,,,2,44,0.0 +13355,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,1,10000+,,1,17,0.0 +11209,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,2,17,0.0 +17391,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Funded Startup,2,89,0.0 +1084,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,222,0.0 +18644,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,>4,84,0.0 +33079,city_83,0.9229999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,11,1000-4999,Pvt Ltd,1,44,0.0 +600,city_103,0.92,Female,Has relevent experience,Full time course,Graduate,STEM,19,50-99,Pvt Ltd,1,292,0.0 +16842,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,NGO,1,52,0.0 +6198,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,,1,222,1.0 +24205,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,2,109,0.0 +31442,city_67,0.855,Male,No relevent experience,Full time course,High School,,2,,,1,43,0.0 +27907,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Pvt Ltd,1,20,0.0 +7546,city_103,0.92,Male,No relevent experience,,Graduate,STEM,5,,,never,178,1.0 +805,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,78,0.0 +7886,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,120,0.0 +13413,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,500-999,Pvt Ltd,3,4,0.0 +22198,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,22,1.0 +19675,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,1,17,1.0 +13242,city_11,0.55,Male,Has relevent experience,Full time course,Masters,Humanities,4,,,4,56,1.0 +5229,city_74,0.579,,No relevent experience,no_enrollment,Graduate,STEM,6,,,1,182,1.0 +22729,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,,1,24,0.0 +9981,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,1,,,never,8,0.0 +23004,city_103,0.92,,Has relevent experience,no_enrollment,Masters,Other,4,50-99,Funded Startup,2,125,0.0 +31221,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,92,1.0 +7943,city_69,0.856,,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,2,4,0.0 +28430,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,never,55,0.0 +20655,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,never,51,1.0 +11575,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,,>4,12,0.0 +9615,city_129,0.625,Male,Has relevent experience,no_enrollment,Masters,STEM,14,<10,Pvt Ltd,never,188,0.0 +22252,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,never,74,0.0 +17906,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,3,0.0 +11832,city_36,0.893,Female,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,1,34,0.0 +27258,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,never,180,0.0 +25975,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,74,0.0 +29901,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,4,42,0.0 +10249,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,3,,,,4,0.0 +31312,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,21,0.0 +14974,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,NGO,1,50,0.0 +29503,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,2,158,0.0 +4990,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,>4,65,0.0 +9342,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,19,,,1,62,0.0 +28264,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,1,5000-9999,Pvt Ltd,1,110,0.0 +29380,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,3,7,0.0 +33076,city_145,0.555,Male,No relevent experience,no_enrollment,Graduate,Business Degree,4,,,never,60,1.0 +20606,city_19,0.682,,No relevent experience,Full time course,Graduate,STEM,3,,,,78,0.0 +32927,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Public Sector,3,166,0.0 +13725,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,51,0.0 +9432,city_98,0.9490000000000001,Male,No relevent experience,no_enrollment,Masters,Business Degree,>20,1000-4999,Pvt Ltd,>4,165,0.0 +10713,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,7,10/49,Pvt Ltd,1,22,0.0 +4812,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,<10,Pvt Ltd,>4,128,0.0 +609,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,43,0.0 +4625,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,18,0.0 +14195,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,3,9,0.0 +806,city_16,0.91,,Has relevent experience,no_enrollment,,,10,100-500,Pvt Ltd,2,38,0.0 +10378,city_134,0.698,Male,No relevent experience,no_enrollment,,,5,,,never,9,0.0 +6184,city_21,0.624,,No relevent experience,no_enrollment,,,4,,,never,23,0.0 +5450,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,15,100-500,Pvt Ltd,1,47,0.0 +19270,city_106,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,64,0.0 +4982,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,46,0.0 +6125,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Arts,4,100-500,Pvt Ltd,1,22,0.0 +25734,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,>4,130,1.0 +13115,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,8,500-999,Pvt Ltd,1,14,0.0 +28725,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,19,0.0 +5761,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,1,109,0.0 +15643,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,17,10000+,Pvt Ltd,4,61,0.0 +19733,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,16,500-999,Pvt Ltd,>4,204,0.0 +20528,city_136,0.897,Male,Has relevent experience,Full time course,Masters,STEM,5,10000+,Pvt Ltd,1,134,0.0 +18520,city_138,0.836,Male,No relevent experience,Part time course,Masters,Humanities,19,10/49,Pvt Ltd,4,20,0.0 +28232,city_67,0.855,Male,Has relevent experience,Full time course,Masters,Other,16,,,>4,45,1.0 +24877,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,53,0.0 +18065,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,4,20,0.0 +10545,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,>4,112,0.0 +4612,city_16,0.91,,No relevent experience,Full time course,High School,,2,,,1,29,0.0 +5271,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,67,0.0 +13860,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Funded Startup,2,154,0.0 +17880,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,6,,,2,12,0.0 +20512,city_21,0.624,,No relevent experience,,,,<1,100-500,NGO,1,58,1.0 +32992,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,19,10/49,Pvt Ltd,2,74,0.0 +12984,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,154,0.0 +7389,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,10/49,,1,155,1.0 +19074,city_143,0.74,Male,No relevent experience,Full time course,Graduate,STEM,7,,,never,13,1.0 +13675,city_138,0.836,,Has relevent experience,no_enrollment,High School,,9,,,2,22,0.0 +11884,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Business Degree,<1,,,1,139,1.0 +13077,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,STEM,8,1000-4999,Pvt Ltd,>4,268,0.0 +17441,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,6,50-99,Pvt Ltd,2,104,0.0 +7944,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Early Stage Startup,1,48,1.0 +17014,city_67,0.855,Male,Has relevent experience,Full time course,Masters,STEM,10,10000+,Pvt Ltd,3,14,0.0 +31408,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,Pvt Ltd,>4,26,0.0 +11711,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Business Degree,>20,,,>4,50,0.0 +29428,city_103,0.92,Male,No relevent experience,Part time course,Graduate,Humanities,2,,,2,70,0.0 +20223,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,10000+,Pvt Ltd,never,10,1.0 +4640,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,15,<10,Early Stage Startup,3,58,0.0 +13701,city_16,0.91,Male,No relevent experience,Full time course,High School,,2,100-500,,1,66,0.0 +2265,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,5,0.0 +29188,city_41,0.8270000000000001,Other,No relevent experience,Full time course,Graduate,STEM,10,,Public Sector,1,50,1.0 +24285,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,16,1.0 +8490,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,70,0.0 +17116,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,14,0.0 +1925,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,,,>4,12,1.0 +15875,city_104,0.924,Male,No relevent experience,Full time course,Graduate,STEM,3,,,2,4,0.0 +9825,city_103,0.92,Other,No relevent experience,Full time course,Graduate,STEM,4,10000+,NGO,1,19,0.0 +1909,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,4,114,1.0 +28448,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,,,4,20,1.0 +16693,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Arts,15,10000+,Pvt Ltd,>4,33,0.0 +29178,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,51,1.0 +28994,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,never,152,0.0 +3861,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,2,98,0.0 +9391,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,7,10000+,Pvt Ltd,1,2,0.0 +18840,city_19,0.682,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,80,0.0 +31783,city_11,0.55,Male,No relevent experience,,Graduate,STEM,5,,,never,38,1.0 +20259,city_23,0.899,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,1,53,0.0 +10477,city_70,0.698,,Has relevent experience,Part time course,Graduate,STEM,6,500-999,Pvt Ltd,1,82,0.0 +29524,city_149,0.6890000000000001,,No relevent experience,no_enrollment,High School,,2,,,never,88,0.0 +1409,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,4,84,0.0 +2710,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,2,12,0.0 +2109,city_104,0.924,Other,Has relevent experience,Full time course,High School,,4,<10,Pvt Ltd,1,8,0.0 +11875,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Other,<1,,,>4,86,1.0 +12768,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,3,10/49,Pvt Ltd,,11,0.0 +8052,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,1,40,0.0 +2783,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,78,1.0 +22710,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,2,140,1.0 +443,city_24,0.698,,No relevent experience,Full time course,High School,,1,,,,6,0.0 +11220,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,13,500-999,Pvt Ltd,1,80,0.0 +23923,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,4,37,0.0 +29852,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,,2,42,0.0 +20055,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,12,100-500,Pvt Ltd,4,10,0.0 +13127,city_16,0.91,,No relevent experience,Full time course,High School,,1,,,1,56,0.0 +19033,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,3,,,1,35,0.0 +28747,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,46,0.0 +8187,city_176,0.764,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,7,1.0 +10601,city_104,0.924,Male,No relevent experience,no_enrollment,Masters,STEM,>20,100-500,Public Sector,4,92,0.0 +5155,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,6,<10,Pvt Ltd,1,37,0.0 +20293,city_16,0.91,,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,>4,35,1.0 +19858,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,,1,84,0.0 +7246,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Other,18,,,1,136,0.0 +20481,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,never,24,1.0 +2958,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,18,1.0 +5645,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,1,48,0.0 +3507,city_16,0.91,,Has relevent experience,no_enrollment,High School,,>20,100-500,Pvt Ltd,>4,77,0.0 +31004,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,>4,31,0.0 +496,city_160,0.92,Male,Has relevent experience,no_enrollment,High School,,12,100-500,Pvt Ltd,2,74,0.0 +19482,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,24,1.0 +15692,city_136,0.897,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Early Stage Startup,1,8,0.0 +2702,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,6,1000-4999,,1,34,0.0 +1029,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Arts,3,50-99,,1,90,0.0 +8918,city_70,0.698,,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Pvt Ltd,2,46,0.0 +26300,city_26,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,5,100-500,Pvt Ltd,2,112,0.0 +24183,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,1,61,1.0 +4658,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,,,>4,104,0.0 +8909,city_23,0.899,Female,Has relevent experience,no_enrollment,Graduate,Other,>20,,,>4,178,0.0 +22309,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,10000+,Pvt Ltd,4,40,0.0 +19709,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Pvt Ltd,>4,21,0.0 +23603,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,78,1.0 +17935,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Public Sector,3,28,0.0 +21336,city_103,0.92,,No relevent experience,no_enrollment,,,2,,,never,17,0.0 +11253,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,156,0.0 +33020,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,7,500-999,NGO,>4,24,0.0 +13237,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,42,1.0 +6227,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,28,1.0 +9100,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,Pvt Ltd,1,108,0.0 +14633,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,1,37,0.0 +5621,city_123,0.738,Male,No relevent experience,no_enrollment,Graduate,STEM,9,100-500,Public Sector,3,56,0.0 +32603,city_102,0.804,Male,Has relevent experience,Full time course,,,>20,<10,Early Stage Startup,1,39,0.0 +16793,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,10,0.0 +4721,city_165,0.903,,Has relevent experience,no_enrollment,Graduate,Humanities,4,500-999,,1,73,0.0 +13283,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,>4,70,0.0 +19274,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,2,112,0.0 +16497,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,2,80,1.0 +11073,city_67,0.855,Male,No relevent experience,Full time course,High School,,<1,,,1,110,0.0 +25883,city_104,0.924,Male,Has relevent experience,Full time course,High School,,13,50-99,Pvt Ltd,1,48,1.0 +20310,city_160,0.92,Male,No relevent experience,Full time course,High School,,2,100-500,NGO,1,99,0.0 +19157,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,7,10000+,Pvt Ltd,1,30,1.0 +1802,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,NGO,2,48,0.0 +32331,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,170,0.0 +3451,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Pvt Ltd,1,13,0.0 +990,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,<1,,,never,60,0.0 +26972,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,,1,34,0.0 +22179,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,7,,,2,262,1.0 +25846,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,>4,67,0.0 +29197,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,4,32,0.0 +13897,city_103,0.92,Male,No relevent experience,Full time course,High School,,5,10/49,Public Sector,1,17,1.0 +11688,city_173,0.878,Male,Has relevent experience,no_enrollment,High School,,10,<10,Pvt Ltd,never,51,1.0 +2306,city_77,0.83,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Public Sector,3,27,0.0 +1124,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,10000+,Public Sector,>4,56,1.0 +2313,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,14,0.0 +30758,city_123,0.738,,No relevent experience,Part time course,High School,,2,,,1,73,0.0 +1018,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,11,100-500,Pvt Ltd,1,76,1.0 +32985,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,19,,Public Sector,>4,21,1.0 +30782,city_160,0.92,Male,No relevent experience,Full time course,Graduate,Business Degree,>20,500-999,Other,>4,10,0.0 +13848,city_72,0.795,Male,Has relevent experience,Part time course,High School,,<1,50-99,,1,10,0.0 +14237,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,78,1.0 +8114,city_144,0.84,,Has relevent experience,no_enrollment,Graduate,STEM,9,5000-9999,Pvt Ltd,>4,33,0.0 +10261,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,84,0.0 +5866,city_16,0.91,Male,Has relevent experience,no_enrollment,,,6,,,1,22,0.0 +19852,city_104,0.924,Male,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,63,0.0 +13546,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,41,0.0 +19236,city_128,0.527,,No relevent experience,Full time course,Graduate,STEM,1,,,1,192,1.0 +6207,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,36,0.0 +8389,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,22,0.0 +16887,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,21,0.0 +16945,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,9,0.0 +26979,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,5,10/49,Pvt Ltd,3,44,1.0 +317,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,105,0.0 +23563,city_116,0.743,Male,Has relevent experience,Full time course,Graduate,STEM,6,5000-9999,Pvt Ltd,2,102,1.0 +15948,city_160,0.92,Male,No relevent experience,Full time course,Masters,Arts,15,,Public Sector,>4,90,1.0 +5859,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,Humanities,15,500-999,Pvt Ltd,1,192,0.0 +23622,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,4,25,1.0 +21973,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,4,74,0.0 +25864,city_21,0.624,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,28,0.0 +10943,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,90,1.0 +17172,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,2,<10,Early Stage Startup,1,65,0.0 +13525,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,5,10/49,,,10,1.0 +19005,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Primary School,,2,,,never,28,0.0 +8295,city_67,0.855,Male,Has relevent experience,,Graduate,STEM,9,1000-4999,,2,114,0.0 +11612,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,118,0.0 +3119,city_65,0.802,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Early Stage Startup,1,19,0.0 +10187,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,72,0.0 +32700,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,1,66,1.0 +9820,city_104,0.924,Female,No relevent experience,Full time course,Graduate,STEM,3,,,1,39,1.0 +30490,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,1,<10,Pvt Ltd,1,24,0.0 +32039,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,6,0.0 +27831,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,3,1000-4999,Pvt Ltd,1,242,0.0 +16238,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,7,10000+,Pvt Ltd,never,43,1.0 +29297,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,58,1.0 +24743,city_99,0.915,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,84,0.0 +26953,city_71,0.884,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,51,1.0 +32899,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,270,1.0 +23934,city_77,0.83,Male,Has relevent experience,no_enrollment,Graduate,Humanities,16,,,1,28,0.0 +16409,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,35,1.0 +4041,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,25,0.0 +25756,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,101,0.0 +1151,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,1,15,0.0 +32061,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,1,78,0.0 +4722,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,6,500-999,Pvt Ltd,never,106,0.0 +31479,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,1,42,0.0 +12201,city_90,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,14,<10,Pvt Ltd,>4,26,0.0 +18742,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,3,10/49,Pvt Ltd,1,101,1.0 +12893,city_136,0.897,Male,No relevent experience,Part time course,Graduate,STEM,3,10000+,Pvt Ltd,1,5,0.0 +26960,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Pvt Ltd,2,9,0.0 +4176,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,20,1.0 +18925,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,18,,,1,18,1.0 +7924,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Funded Startup,1,25,0.0 +24552,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Funded Startup,>4,16,0.0 +28601,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,60,0.0 +6396,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,51,0.0 +6706,city_21,0.624,,No relevent experience,no_enrollment,Graduate,Other,<1,,,never,154,1.0 +1269,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,11,0.0 +27982,city_136,0.897,,No relevent experience,Part time course,Graduate,STEM,4,10000+,Public Sector,,20,1.0 +6169,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,6,10000+,Pvt Ltd,1,74,0.0 +30459,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,72,0.0 +15752,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,41,0.0 +5147,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,20,1.0 +10534,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,17,10000+,Pvt Ltd,1,316,0.0 +3569,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,4,60,0.0 +8605,city_59,0.775,,Has relevent experience,Full time course,Graduate,STEM,8,50-99,Pvt Ltd,,164,0.0 +15167,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,6,5000-9999,Pvt Ltd,1,16,0.0 +8552,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,NGO,1,31,0.0 +7397,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,>4,101,0.0 +33157,city_43,0.516,,No relevent experience,Part time course,Graduate,No Major,3,,,never,43,1.0 +24653,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,1,43,0.0 +3585,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,1,144,0.0 +1122,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,5000-9999,Pvt Ltd,2,27,0.0 +17847,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,1000-4999,Pvt Ltd,1,28,0.0 +31126,city_91,0.691,,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,1,55,1.0 +19457,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,2,10/49,,1,75,0.0 +9522,city_136,0.897,,No relevent experience,Full time course,Masters,STEM,2,100-500,,1,145,1.0 +19339,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,3,10/49,Pvt Ltd,1,67,1.0 +3998,city_98,0.9490000000000001,Other,No relevent experience,Full time course,Graduate,STEM,9,<10,Early Stage Startup,1,59,0.0 +24658,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,100-500,Pvt Ltd,1,26,0.0 +28714,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,1,2,0.0 +12698,city_62,0.645,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,9,0.0 +12390,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,No Major,10,10000+,Pvt Ltd,2,4,1.0 +21866,city_61,0.9129999999999999,,No relevent experience,no_enrollment,Phd,STEM,12,100-500,NGO,never,262,0.0 +421,city_67,0.855,Male,Has relevent experience,no_enrollment,,,14,50-99,Pvt Ltd,>4,48,0.0 +27110,city_65,0.802,Male,Has relevent experience,Full time course,Graduate,STEM,8,5000-9999,,never,196,1.0 +12947,city_160,0.92,,No relevent experience,Full time course,High School,,1,,,1,96,1.0 +31373,city_159,0.843,Female,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,1,246,0.0 +26605,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,No Major,>20,10/49,Pvt Ltd,>4,45,0.0 +20733,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,>4,47,0.0 +21995,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,1,140,0.0 +13501,city_90,0.698,Other,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Public Sector,>4,11,0.0 +15119,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,>4,11,0.0 +30444,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,12,50-99,Pvt Ltd,>4,16,0.0 +20494,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,8,50-99,Pvt Ltd,>4,57,1.0 +18126,city_65,0.802,,Has relevent experience,Full time course,Graduate,STEM,16,500-999,Pvt Ltd,>4,48,0.0 +7234,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Early Stage Startup,1,89,0.0 +15490,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,24,0.0 +31997,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,Pvt Ltd,1,41,0.0 +15191,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,,1,4,0.0 +19727,city_16,0.91,,No relevent experience,no_enrollment,High School,,2,,,never,108,0.0 +4986,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,6,0.0 +4759,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,4,100-500,Pvt Ltd,1,12,1.0 +19646,city_16,0.91,Female,No relevent experience,no_enrollment,Graduate,No Major,1,5000-9999,,never,6,0.0 +33059,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,56,1.0 +18475,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,4,103,1.0 +7627,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Business Degree,20,100-500,Pvt Ltd,>4,17,0.0 +33075,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,<10,Pvt Ltd,1,47,0.0 +13880,city_121,0.7809999999999999,,No relevent experience,Full time course,Graduate,STEM,4,,,never,63,1.0 +15964,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,42,0.0 +24916,city_100,0.887,Male,No relevent experience,Part time course,Graduate,STEM,3,,,never,32,1.0 +6781,city_150,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Public Sector,>4,10,0.0 +28978,city_19,0.682,Male,Has relevent experience,no_enrollment,Masters,STEM,20,,,1,61,1.0 +1826,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,15,,,2,112,0.0 +28416,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,10,,,2,41,0.0 +22523,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,1,44,0.0 +7767,city_152,0.698,,No relevent experience,,High School,,3,,,never,56,0.0 +463,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,2,9,0.0 +14756,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,10,50-99,Pvt Ltd,2,4,0.0 +3725,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,<10,Early Stage Startup,4,10,0.0 +13177,city_40,0.7759999999999999,,No relevent experience,Full time course,High School,,4,1000-4999,Pvt Ltd,never,54,1.0 +10799,city_104,0.924,,No relevent experience,Full time course,Graduate,STEM,<1,,,1,25,0.0 +5794,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,12,0.0 +10013,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,Pvt Ltd,3,9,0.0 +13919,city_44,0.725,Male,No relevent experience,no_enrollment,Graduate,STEM,15,,,1,19,0.0 +5813,city_159,0.843,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,69,0.0 +2745,city_71,0.884,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,8,1.0 +27519,city_53,0.74,Female,Has relevent experience,no_enrollment,Masters,STEM,10,5000-9999,Pvt Ltd,4,126,0.0 +2563,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,1000-4999,Pvt Ltd,1,48,0.0 +5057,city_160,0.92,,Has relevent experience,Full time course,Masters,STEM,5,50-99,Pvt Ltd,,24,0.0 +15988,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,48,0.0 +28491,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,10,50-99,Pvt Ltd,4,36,0.0 +6015,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,54,0.0 +30093,city_67,0.855,Male,No relevent experience,Full time course,High School,,<1,100-500,Pvt Ltd,1,12,1.0 +18223,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,4,14,0.0 +31447,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,never,8,1.0 +20043,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,4,46,0.0 +18094,city_21,0.624,Male,No relevent experience,Full time course,High School,,7,,,never,146,1.0 +20391,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,60,1.0 +10642,city_19,0.682,,Has relevent experience,no_enrollment,High School,,7,,,1,67,0.0 +8155,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,,2,3,1.0 +13481,city_98,0.9490000000000001,,No relevent experience,no_enrollment,Masters,STEM,4,500-999,,never,53,0.0 +12765,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,13,500-999,Pvt Ltd,>4,31,0.0 +1935,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,1,40,0.0 +15584,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,222,0.0 +12370,city_89,0.925,Male,No relevent experience,Full time course,Graduate,Business Degree,2,,,1,192,1.0 +11280,city_100,0.887,Male,No relevent experience,Full time course,Masters,Business Degree,7,,,1,23,1.0 +14742,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,<1,<10,Funded Startup,2,152,0.0 +17637,city_162,0.767,,Has relevent experience,Full time course,Graduate,STEM,3,,,,59,1.0 +18852,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,2,10/49,Funded Startup,2,59,0.0 +19039,city_136,0.897,Female,No relevent experience,Part time course,Graduate,STEM,3,10/49,Pvt Ltd,1,15,0.0 +18455,city_16,0.91,,No relevent experience,no_enrollment,Phd,STEM,>20,,,>4,79,0.0 +23044,city_136,0.897,Female,No relevent experience,Full time course,Masters,STEM,8,100-500,Public Sector,1,35,0.0 +9256,city_173,0.878,,Has relevent experience,no_enrollment,Graduate,STEM,17,10/49,Pvt Ltd,>4,43,0.0 +7288,city_67,0.855,Male,No relevent experience,Full time course,High School,,8,100-500,Pvt Ltd,1,34,0.0 +1490,city_104,0.924,,No relevent experience,no_enrollment,High School,,5,,,never,24,0.0 +27100,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,129,0.0 +2544,city_67,0.855,Other,No relevent experience,no_enrollment,Graduate,Business Degree,18,1000-4999,Pvt Ltd,>4,48,0.0 +5334,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,103,0.0 +22067,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,>4,107,0.0 +23206,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,20,5000-9999,Pvt Ltd,>4,11,0.0 +6773,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,NGO,>4,13,1.0 +18695,city_16,0.91,Male,Has relevent experience,Part time course,High School,,4,1000-4999,Pvt Ltd,1,160,0.0 +20314,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,never,53,1.0 +6961,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,161,0.0 +29157,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,102,0.0 +29824,city_70,0.698,Male,Has relevent experience,Full time course,Primary School,,7,100-500,Public Sector,2,7,0.0 +1682,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,13,,,never,80,0.0 +10770,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,2,67,0.0 +9610,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,112,0.0 +15031,city_104,0.924,Male,No relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,1,8,0.0 +5041,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,292,0.0 +10869,city_65,0.802,,Has relevent experience,no_enrollment,High School,,3,<10,Pvt Ltd,2,64,0.0 +11159,city_70,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,1,14,1.0 +25651,city_123,0.738,,Has relevent experience,Full time course,Graduate,STEM,2,100-500,Pvt Ltd,1,5,0.0 +3838,city_173,0.878,Male,No relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,>4,22,0.0 +9079,city_9,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,1,84,0.0 +877,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,167,0.0 +20292,city_103,0.92,,No relevent experience,no_enrollment,Masters,Arts,15,10000+,Pvt Ltd,2,64,0.0 +9642,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,45,0.0 +24706,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,<10,Pvt Ltd,1,88,0.0 +6776,city_100,0.887,Male,No relevent experience,Part time course,Graduate,STEM,8,,,never,21,1.0 +10715,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,2,50-99,Pvt Ltd,1,56,0.0 +25743,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,10/49,Pvt Ltd,>4,37,0.0 +2932,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,6,10/49,,2,146,0.0 +26041,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,28,0.0 +29418,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,,1,23,0.0 +32297,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,>4,5,0.0 +10664,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,5,,,1,37,0.0 +11453,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,214,0.0 +8428,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,3,50-99,Pvt Ltd,1,58,1.0 +19022,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,17,<10,Pvt Ltd,2,174,0.0 +121,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,1,6,0.0 +24004,city_74,0.579,Male,Has relevent experience,no_enrollment,Masters,STEM,3,100-500,Pvt Ltd,3,60,0.0 +16401,city_90,0.698,,Has relevent experience,no_enrollment,High School,,3,<10,Pvt Ltd,2,6,0.0 +10750,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,26,1.0 +7641,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,8,0.0 +11529,city_45,0.89,Male,Has relevent experience,,Graduate,STEM,9,<10,Pvt Ltd,1,73,1.0 +18873,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,10,,,1,121,0.0 +11827,city_83,0.9229999999999999,Male,No relevent experience,Part time course,Graduate,STEM,14,50-99,Pvt Ltd,1,72,0.0 +28600,city_120,0.78,Male,No relevent experience,,,,3,,,never,129,0.0 +17351,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,73,1.0 +2359,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,135,0.0 +6788,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,2,102,0.0 +3663,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,86,0.0 +14924,city_104,0.924,Male,No relevent experience,Full time course,High School,,1,,,never,278,0.0 +19520,city_145,0.555,,Has relevent experience,Full time course,Graduate,STEM,2,,,1,7,1.0 +28180,city_2,0.7879999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,155,0.0 +8274,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,Public Sector,3,52,0.0 +5164,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,>20,1000-4999,NGO,>4,28,0.0 +11969,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,>4,40,0.0 +2590,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,>4,75,0.0 +22810,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,2,28,0.0 +25175,city_16,0.91,,No relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,3,20,0.0 +14376,city_160,0.92,Male,No relevent experience,Full time course,High School,,3,,,1,90,1.0 +26072,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,11,1000-4999,Pvt Ltd,1,14,0.0 +14299,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,24,0.0 +11448,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,22,1.0 +31689,city_104,0.924,Male,No relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,55,0.0 +9314,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,,1,21,0.0 +31865,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,13,10/49,Early Stage Startup,2,54,0.0 +9854,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,11,0.0 +4515,city_100,0.887,Male,Has relevent experience,Part time course,Phd,STEM,>20,,,>4,41,0.0 +9191,city_173,0.878,,No relevent experience,Full time course,Masters,STEM,12,50-99,Public Sector,1,152,0.0 +32816,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,4,40,1.0 +18500,city_11,0.55,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,,2,83,0.0 +20502,city_57,0.866,,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,>4,206,0.0 +4374,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,5,,,1,112,1.0 +23316,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,15,0.0 +9625,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,67,0.0 +18182,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,,,never,50,1.0 +24633,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,4,,,never,73,0.0 +14164,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Funded Startup,1,164,0.0 +8475,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,never,66,0.0 +16162,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,27,1.0 +27375,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,>4,330,0.0 +27037,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,2,19,0.0 +22352,city_160,0.92,,Has relevent experience,no_enrollment,Masters,Humanities,>20,<10,Other,,42,0.0 +12373,city_103,0.92,,Has relevent experience,Full time course,,,,,,>4,96,1.0 +1375,city_23,0.899,,Has relevent experience,Part time course,Graduate,STEM,6,500-999,Funded Startup,1,23,0.0 +453,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,24,1.0 +9221,city_173,0.878,,No relevent experience,,High School,,7,,,never,96,0.0 +30458,city_142,0.727,,No relevent experience,Part time course,Graduate,STEM,6,,,,110,1.0 +31711,city_20,0.7959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,86,0.0 +450,city_39,0.898,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,146,0.0 +4594,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,4,47,0.0 +3088,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,1,11,1.0 +21253,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,5,,,1,42,1.0 +16247,city_158,0.7659999999999999,,Has relevent experience,Part time course,High School,,4,,,2,7,1.0 +1502,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,200,0.0 +8039,city_21,0.624,,No relevent experience,no_enrollment,Graduate,Business Degree,10,,,>4,22,1.0 +17606,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,7,<10,Early Stage Startup,2,77,0.0 +29669,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,19,,,4,29,0.0 +4224,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,500-999,Pvt Ltd,1,50,0.0 +13258,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Pvt Ltd,>4,3,0.0 +30085,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,1,70,0.0 +6422,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,5,,,never,99,0.0 +19738,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,64,0.0 +14605,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,6,5000-9999,Pvt Ltd,1,94,0.0 +17839,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,51,1.0 +1158,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,4,101,0.0 +418,city_173,0.878,,Has relevent experience,no_enrollment,Masters,STEM,16,5000-9999,Pvt Ltd,2,35,0.0 +20810,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,Arts,14,10/49,Pvt Ltd,3,42,0.0 +11416,city_159,0.843,,No relevent experience,Full time course,Graduate,STEM,3,,,never,9,1.0 +16733,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,Arts,<1,<10,Early Stage Startup,1,32,0.0 +5767,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,7,,,1,134,1.0 +16547,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,,,never,22,0.0 +9818,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,Pvt Ltd,2,24,0.0 +2372,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,131,0.0 +1341,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,31,0.0 +28633,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,8,100-500,Pvt Ltd,2,41,1.0 +26672,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Pvt Ltd,3,17,0.0 +21837,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,>4,39,1.0 +32161,city_91,0.691,Male,No relevent experience,no_enrollment,Primary School,,13,,Pvt Ltd,never,254,0.0 +24367,city_136,0.897,,Has relevent experience,no_enrollment,Masters,Arts,16,50-99,Pvt Ltd,>4,46,0.0 +5328,city_74,0.579,,No relevent experience,Full time course,Graduate,Other,6,,Pvt Ltd,never,39,1.0 +18927,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,>4,47,0.0 +5768,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,12,50-99,Pvt Ltd,>4,94,0.0 +23020,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,8,50-99,Pvt Ltd,2,40,0.0 +775,city_16,0.91,Male,No relevent experience,Full time course,High School,,9,,,never,12,0.0 +13404,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,4,242,0.0 +2400,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Funded Startup,1,32,1.0 +26941,city_21,0.624,Male,No relevent experience,no_enrollment,,,2,,,never,20,1.0 +9044,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,<10,Early Stage Startup,never,184,0.0 +10444,city_21,0.624,,Has relevent experience,Full time course,High School,,6,50-99,Pvt Ltd,1,92,1.0 +29677,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,18,1000-4999,Pvt Ltd,1,196,0.0 +17596,city_10,0.895,Male,Has relevent experience,Full time course,Graduate,STEM,4,100-500,Public Sector,2,26,0.0 +1814,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,1,44,0.0 +28458,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,57,0.0 +28956,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,2,,,2,28,0.0 +16876,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,3,3,0.0 +15577,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Other,16,,,>4,74,1.0 +2754,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,2,128,0.0 +10349,city_133,0.742,Male,Has relevent experience,Full time course,Masters,STEM,5,50-99,Pvt Ltd,never,157,0.0 +4154,city_9,0.743,,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,NGO,1,146,0.0 +154,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,13,10/49,Public Sector,1,31,0.0 +12685,city_100,0.887,,Has relevent experience,no_enrollment,High School,,6,100-500,Pvt Ltd,1,61,0.0 +28568,city_136,0.897,Male,Has relevent experience,Full time course,Graduate,Humanities,2,,,never,40,0.0 +21337,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,3,24,0.0 +29436,city_89,0.925,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,4,224,0.0 +756,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Funded Startup,2,36,0.0 +4787,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,55,1.0 +3764,city_73,0.754,,No relevent experience,no_enrollment,Graduate,Humanities,15,10/49,Pvt Ltd,>4,48,1.0 +30330,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,3,,,never,25,0.0 +27897,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,High School,,1,10/49,Pvt Ltd,1,114,0.0 +955,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,8,,,3,18,0.0 +22823,city_71,0.884,,No relevent experience,no_enrollment,Phd,STEM,11,5000-9999,Pvt Ltd,1,23,1.0 +6942,city_104,0.924,Male,No relevent experience,Full time course,Graduate,STEM,5,,,,11,1.0 +8876,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Funded Startup,1,100,0.0 +25746,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,11,,,never,46,0.0 +17988,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,Arts,3,50-99,Pvt Ltd,1,51,0.0 +23925,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,1,,,never,200,0.0 +20283,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,12,,Pvt Ltd,1,30,0.0 +6297,city_134,0.698,,Has relevent experience,,,,4,,,never,20,0.0 +26143,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,8,10/49,,1,15,0.0 +14517,city_104,0.924,Male,Has relevent experience,no_enrollment,Phd,STEM,10,10000+,Pvt Ltd,1,74,0.0 +25336,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,4,15,1.0 +23026,city_100,0.887,Male,Has relevent experience,Part time course,Graduate,STEM,7,10000+,Pvt Ltd,never,39,0.0 +32005,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,<10,Pvt Ltd,4,21,0.0 +21489,city_64,0.6659999999999999,Female,No relevent experience,Full time course,Graduate,STEM,5,,,1,18,0.0 +19153,city_73,0.754,,No relevent experience,,High School,,4,,,never,10,0.0 +29509,city_73,0.754,Male,No relevent experience,Full time course,High School,,3,,,never,65,0.0 +17159,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,>4,11,0.0 +15422,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,18,,,1,39,0.0 +22559,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Public Sector,2,144,1.0 +29455,city_71,0.884,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,never,9,1.0 +7118,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,>4,18,1.0 +28583,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,5,,,never,10,0.0 +15684,city_142,0.727,,Has relevent experience,Part time course,Graduate,STEM,6,10/49,Pvt Ltd,1,43,0.0 +789,city_98,0.9490000000000001,,No relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,55,0.0 +19696,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,180,0.0 +31941,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,18,0.0 +21605,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,4,10000+,,never,140,1.0 +23871,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Other,>4,42,0.0 +24893,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,2,42,1.0 +5497,city_75,0.9390000000000001,,No relevent experience,,,,<1,,Pvt Ltd,never,14,0.0 +16692,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,,2,96,0.0 +6570,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,4,5000-9999,Pvt Ltd,1,43,0.0 +29373,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,14,10000+,NGO,>4,65,0.0 +20273,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,22,0.0 +31108,city_24,0.698,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,17,1.0 +6213,city_71,0.884,,Has relevent experience,no_enrollment,Masters,Business Degree,15,,,>4,24,0.0 +7888,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,15,1.0 +14563,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,5000-9999,Pvt Ltd,1,4,1.0 +26590,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,14,<10,Early Stage Startup,3,85,0.0 +1756,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,Early Stage Startup,2,326,0.0 +16361,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,2,11,0.0 +10521,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,31,0.0 +25420,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,22,0.0 +22813,city_21,0.624,Female,Has relevent experience,,Masters,STEM,8,10/49,Pvt Ltd,1,44,1.0 +8391,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,5000-9999,Pvt Ltd,1,163,0.0 +20708,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,90,0.0 +9069,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Funded Startup,>4,9,1.0 +20272,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Funded Startup,1,226,0.0 +18817,city_11,0.55,Male,No relevent experience,no_enrollment,Graduate,STEM,3,50-99,Early Stage Startup,1,80,0.0 +17422,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,Pvt Ltd,1,3,1.0 +19919,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,5000-9999,Pvt Ltd,3,42,0.0 +24531,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,,,3,65,0.0 +11349,city_1,0.847,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,1,33,0.0 +15246,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,>4,77,0.0 +30703,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,>4,114,1.0 +33276,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,>20,1000-4999,NGO,4,15,0.0 +17182,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,No Major,>20,1000-4999,Pvt Ltd,>4,44,0.0 +19568,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,1,25,1.0 +3566,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,1,27,0.0 +9757,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,4,78,0.0 +1539,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Other,>4,3,0.0 +21322,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,100-500,NGO,1,15,1.0 +18630,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,3,72,0.0 +2205,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,never,56,1.0 +441,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,8,,,2,24,1.0 +12648,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Public Sector,1,18,0.0 +22546,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,31,0.0 +14780,city_40,0.7759999999999999,,No relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,never,59,0.0 +27309,city_116,0.743,Male,Has relevent experience,Part time course,Graduate,STEM,11,,,1,23,0.0 +14827,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,12,1000-4999,Pvt Ltd,1,21,0.0 +4763,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,9,,,never,114,1.0 +29480,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,Pvt Ltd,1,15,0.0 +26287,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Funded Startup,1,73,0.0 +31330,city_23,0.899,Female,Has relevent experience,Part time course,Graduate,STEM,5,10000+,Pvt Ltd,3,69,0.0 +24894,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,7,,,2,17,1.0 +5821,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,>4,26,0.0 +6222,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,20,100-500,Pvt Ltd,3,26,0.0 +4470,city_16,0.91,,No relevent experience,no_enrollment,Masters,STEM,>20,,,>4,34,0.0 +19489,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Funded Startup,1,50,0.0 +20582,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,1,26,0.0 +26510,city_73,0.754,Male,Has relevent experience,no_enrollment,High School,,15,,,1,152,1.0 +32345,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,NGO,1,63,0.0 +13672,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,9,,,3,72,0.0 +17246,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,,Early Stage Startup,1,10,0.0 +18058,city_141,0.763,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,11,0.0 +10136,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,13,500-999,Pvt Ltd,2,143,0.0 +30385,city_16,0.91,Male,No relevent experience,no_enrollment,,,2,,,never,28,0.0 +19416,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,>20,,,1,18,1.0 +25808,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,56,0.0 +9486,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Arts,4,1000-4999,Pvt Ltd,1,52,0.0 +14576,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,Other,6,50-99,Pvt Ltd,2,53,0.0 +10411,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,2,41,0.0 +11084,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,44,1.0 +7044,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Early Stage Startup,1,62,0.0 +15940,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,Pvt Ltd,2,6,0.0 +4807,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,never,26,1.0 +11774,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,>4,37,0.0 +2100,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,STEM,14,1000-4999,Pvt Ltd,1,12,0.0 +32819,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,5,,,1,19,1.0 +26490,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,1,50-99,Pvt Ltd,1,59,0.0 +19700,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,,1,72,0.0 +4720,city_67,0.855,,Has relevent experience,no_enrollment,High School,,6,1000-4999,Pvt Ltd,1,105,0.0 +14005,city_152,0.698,,No relevent experience,no_enrollment,High School,,5,,,never,26,0.0 +550,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,>4,72,0.0 +12749,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,2,98,0.0 +29136,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,9,500-999,,1,5,1.0 +26077,city_16,0.91,,No relevent experience,Full time course,High School,,1,10000+,Pvt Ltd,1,23,1.0 +21473,city_104,0.924,Male,Has relevent experience,Full time course,Graduate,STEM,15,<10,Pvt Ltd,1,322,0.0 +1847,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,63,0.0 +896,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,2,96,0.0 +14683,city_104,0.924,Male,Has relevent experience,Full time course,Graduate,STEM,9,100-500,Pvt Ltd,1,9,0.0 +29786,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,1,10/49,Funded Startup,1,78,0.0 +26976,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Other,>4,31,0.0 +31145,city_67,0.855,Male,No relevent experience,no_enrollment,Primary School,,8,,Pvt Ltd,never,22,0.0 +16324,city_74,0.579,Male,Has relevent experience,Full time course,Graduate,STEM,5,100-500,Pvt Ltd,1,3,0.0 +27577,city_160,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,4,50-99,Pvt Ltd,1,62,0.0 +21545,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,2,84,1.0 +3388,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,196,0.0 +11748,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,8,100-500,Pvt Ltd,>4,54,0.0 +23527,city_7,0.647,Male,Has relevent experience,Full time course,Masters,STEM,4,,,1,13,1.0 +5867,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,34,1.0 +9120,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,31,0.0 +25115,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,2,,,1,37,0.0 +3433,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,,1,23,0.0 +24147,city_65,0.802,Male,No relevent experience,Full time course,High School,,5,,,never,13,0.0 +25261,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,4,112,0.0 +30564,city_89,0.925,Male,No relevent experience,Full time course,High School,,2,,Pvt Ltd,never,166,0.0 +3529,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,160,0.0 +4583,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,4,7,0.0 +30593,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,,,1,182,1.0 +19958,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,Humanities,>20,10000+,Pvt Ltd,>4,45,0.0 +28039,city_94,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,81,0.0 +5413,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,142,1.0 +21364,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,110,1.0 +24606,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,1,21,1.0 +24040,city_48,0.493,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,NGO,1,15,1.0 +21340,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,48,0.0 +12173,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,23,0.0 +13515,city_76,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,>20,10000+,Pvt Ltd,>4,6,0.0 +11135,city_13,0.8270000000000001,Male,No relevent experience,Full time course,Graduate,STEM,11,,,1,73,1.0 +2681,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Early Stage Startup,1,11,1.0 +18109,city_16,0.91,Male,Has relevent experience,Full time course,Masters,STEM,3,10000+,NGO,1,12,0.0 +25225,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,,2,6,0.0 +1609,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,32,0.0 +12065,city_21,0.624,,No relevent experience,Full time course,High School,,3,,,never,52,0.0 +3685,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,111,0.0 +26560,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Public Sector,2,212,0.0 +8672,city_45,0.89,Male,Has relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,1,30,0.0 +12513,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,37,0.0 +29630,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,4,1000-4999,Pvt Ltd,1,6,0.0 +19957,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,68,0.0 +517,city_40,0.7759999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Early Stage Startup,1,123,0.0 +7030,city_142,0.727,Male,No relevent experience,Full time course,Masters,Humanities,18,,,2,56,1.0 +3757,city_16,0.91,Male,No relevent experience,no_enrollment,Primary School,,1,,,never,10,0.0 +23839,city_165,0.903,Male,No relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,NGO,>4,18,0.0 +8914,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,2,182,0.0 +20641,city_11,0.55,,Has relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,1,196,0.0 +25228,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,133,0.0 +3456,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Pvt Ltd,2,21,1.0 +848,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,15,100-500,Pvt Ltd,>4,17,0.0 +1851,city_103,0.92,Male,Has relevent experience,Part time course,Masters,STEM,5,10000+,Pvt Ltd,4,80,0.0 +13248,city_143,0.74,,Has relevent experience,no_enrollment,Masters,STEM,9,5000-9999,,,43,1.0 +31855,city_160,0.92,Male,Has relevent experience,Part time course,Graduate,Humanities,>20,,,2,21,1.0 +728,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Funded Startup,2,28,0.0 +25869,city_90,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,6,<10,Pvt Ltd,1,47,0.0 +1957,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,65,1.0 +24626,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,16,,,1,84,0.0 +24220,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,>4,56,0.0 +24598,city_7,0.647,,Has relevent experience,no_enrollment,Graduate,STEM,12,,,3,133,0.0 +24192,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,2,16,0.0 +31803,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,112,1.0 +9859,city_74,0.579,,Has relevent experience,Part time course,Masters,STEM,<1,10/49,NGO,never,72,0.0 +5870,city_100,0.887,Male,No relevent experience,no_enrollment,High School,,11,,Pvt Ltd,>4,29,0.0 +29806,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,,3,36,0.0 +13758,city_173,0.878,Male,No relevent experience,no_enrollment,Masters,Humanities,>20,1000-4999,Public Sector,3,51,0.0 +32567,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,35,0.0 +14885,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,,,>4,64,1.0 +15656,city_64,0.6659999999999999,,Has relevent experience,Full time course,Graduate,STEM,>20,10000+,Pvt Ltd,1,8,0.0 +21324,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,2,24,0.0 +4174,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,12,,,4,42,0.0 +25484,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Funded Startup,2,17,1.0 +15439,city_116,0.743,Male,Has relevent experience,Full time course,Masters,STEM,18,10/49,Funded Startup,2,204,0.0 +1478,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,7,1.0 +9476,city_114,0.9259999999999999,Female,No relevent experience,Full time course,Graduate,STEM,2,,,2,125,0.0 +32784,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,,,>4,17,1.0 +32622,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,136,0.0 +14216,city_21,0.624,,No relevent experience,no_enrollment,Graduate,Other,2,100-500,Pvt Ltd,1,40,1.0 +32465,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,104,0.0 +23655,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,2,56,0.0 +30014,city_100,0.887,Male,Has relevent experience,Part time course,Graduate,STEM,10,<10,,1,3,0.0 +19004,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,Public Sector,1,25,1.0 +25600,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,4,83,0.0 +3099,city_23,0.899,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10000+,Pvt Ltd,>4,14,0.0 +24629,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,Public Sector,>4,31,0.0 +18113,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,4,33,0.0 +3262,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,22,0.0 +14973,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,2,35,0.0 +2686,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,1,12,0.0 +2434,city_93,0.865,Male,No relevent experience,Full time course,Masters,Business Degree,10,100-500,Pvt Ltd,>4,27,0.0 +5486,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,9,50-99,Funded Startup,1,198,0.0 +7098,city_73,0.754,,Has relevent experience,Part time course,Graduate,STEM,7,10/49,Funded Startup,3,58,0.0 +28462,city_160,0.92,,No relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,1,8,0.0 +19477,city_65,0.802,,Has relevent experience,Full time course,Masters,STEM,2,1000-4999,Pvt Ltd,1,99,0.0 +11903,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,35,0.0 +31726,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,4,,Pvt Ltd,never,57,0.0 +26799,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Arts,17,10/49,,1,50,0.0 +3503,city_1,0.847,Male,Has relevent experience,Full time course,Masters,STEM,6,5000-9999,Pvt Ltd,1,72,1.0 +22484,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,4,204,0.0 +24198,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,6,,,1,47,0.0 +1066,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,15,,,>4,23,1.0 +6582,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,2,47,0.0 +17905,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,16,<10,Early Stage Startup,1,163,0.0 +16155,city_173,0.878,Male,No relevent experience,no_enrollment,Graduate,STEM,11,<10,Early Stage Startup,1,65,0.0 +24962,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,>4,128,0.0 +6637,city_127,0.745,,No relevent experience,Part time course,Masters,Business Degree,5,5000-9999,Pvt Ltd,>4,9,0.0 +21072,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,124,0.0 +2241,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10000+,Pvt Ltd,never,56,0.0 +24904,city_57,0.866,Male,Has relevent experience,Part time course,Masters,STEM,<1,50-99,,1,18,0.0 +15148,city_55,0.7390000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,12,100-500,Pvt Ltd,2,64,0.0 +3364,city_103,0.92,,Has relevent experience,Part time course,Graduate,Humanities,15,,,1,192,1.0 +19841,city_114,0.9259999999999999,,Has relevent experience,Part time course,High School,,8,1000-4999,Pvt Ltd,1,102,0.0 +4481,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,3,<10,Funded Startup,1,7,0.0 +19383,city_89,0.925,Male,No relevent experience,Part time course,High School,,1,,,never,50,0.0 +12621,city_114,0.9259999999999999,Female,No relevent experience,Full time course,High School,,3,,,1,37,0.0 +22778,city_97,0.925,Female,No relevent experience,Full time course,High School,,>20,,,1,47,0.0 +25978,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Public Sector,2,45,1.0 +22970,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,2,50-99,Funded Startup,1,9,0.0 +5582,city_102,0.804,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,>4,100,0.0 +32508,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,3,83,0.0 +3994,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,NGO,1,21,0.0 +23445,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,4,8,1.0 +7925,city_36,0.893,,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,1,63,1.0 +33077,city_102,0.804,Female,Has relevent experience,Full time course,Masters,STEM,10,1000-4999,Pvt Ltd,>4,62,1.0 +29728,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,,1,116,0.0 +22530,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,4,41,0.0 +21269,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Masters,STEM,11,1000-4999,Pvt Ltd,>4,250,0.0 +15417,city_71,0.884,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,34,0.0 +1222,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,Arts,3,1000-4999,Pvt Ltd,1,152,0.0 +18358,city_36,0.893,,No relevent experience,no_enrollment,Masters,STEM,8,,,1,19,0.0 +27440,city_136,0.897,Male,Has relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,1,58,0.0 +11027,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,4,33,0.0 +11274,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,Humanities,>20,<10,Pvt Ltd,>4,24,0.0 +10006,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,10,1000-4999,Pvt Ltd,1,97,1.0 +9446,city_27,0.848,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,22,0.0 +22290,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,6,0.0 +28257,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,>4,9,0.0 +3556,city_65,0.802,Male,No relevent experience,no_enrollment,Phd,STEM,18,100-500,Public Sector,>4,52,0.0 +23237,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,3,218,0.0 +8064,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,17,0.0 +32653,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Public Sector,2,55,0.0 +9113,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,69,0.0 +22728,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,1,64,0.0 +23006,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,4,51,0.0 +30252,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,,2,60,0.0 +5471,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,25,1.0 +32244,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,9,0.0 +20962,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,4,21,1.0 +15046,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,20,50-99,Pvt Ltd,1,66,0.0 +7661,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Business Degree,7,100-500,Funded Startup,1,39,0.0 +22631,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,5,,,1,94,1.0 +30881,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,Humanities,8,<10,Early Stage Startup,1,133,0.0 +17322,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,4,176,0.0 +8422,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Other,1,148,0.0 +1976,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Other,1,37,1.0 +8723,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,13,,,>4,38,1.0 +15556,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,126,0.0 +23112,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,324,0.0 +19063,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,76,1.0 +10649,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10/49,,1,41,1.0 +18799,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,2,10/49,Pvt Ltd,1,54,0.0 +31706,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,7,50-99,Pvt Ltd,2,26,1.0 +23643,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,6,,,1,117,1.0 +11241,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,9,0.0 +26113,city_114,0.9259999999999999,Female,No relevent experience,Full time course,Graduate,STEM,15,,,1,36,1.0 +16253,city_160,0.92,,No relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,57,0.0 +25838,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,7,,,never,34,0.0 +14071,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,4,,,2,47,0.0 +22177,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,Pvt Ltd,1,21,0.0 +25917,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,No Major,>20,,,>4,30,1.0 +2581,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,1,12,0.0 +653,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,3,157,0.0 +27247,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,6,10/49,Pvt Ltd,1,134,0.0 +23186,city_21,0.624,,No relevent experience,Full time course,Primary School,,1,<10,Public Sector,never,15,1.0 +1974,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,9,,,>4,27,1.0 +24922,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Early Stage Startup,1,45,0.0 +3539,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,8,,,1,64,1.0 +14549,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Funded Startup,2,11,0.0 +16731,city_103,0.92,Male,No relevent experience,no_enrollment,,,3,,,never,52,0.0 +352,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,>4,15,0.0 +27433,city_23,0.899,Male,No relevent experience,Part time course,High School,,4,,,1,14,0.0 +21750,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,68,0.0 +15735,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,STEM,11,1000-4999,Public Sector,>4,50,0.0 +4290,city_57,0.866,Male,No relevent experience,Part time course,Masters,STEM,>20,100-500,Public Sector,>4,18,0.0 +31223,city_115,0.789,Female,No relevent experience,Full time course,Graduate,STEM,3,,,never,16,1.0 +22644,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,11,500-999,Pvt Ltd,3,53,1.0 +21631,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Public Sector,2,7,0.0 +7796,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,226,1.0 +8450,city_21,0.624,Male,No relevent experience,no_enrollment,Primary School,,<1,,,never,23,1.0 +2085,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Funded Startup,2,98,0.0 +19869,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,4,63,0.0 +8533,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,23,0.0 +29056,city_115,0.789,Male,Has relevent experience,Full time course,Graduate,STEM,10,<10,Early Stage Startup,1,77,1.0 +19476,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,10000+,Pvt Ltd,1,40,0.0 +5462,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,Business Degree,15,,,>4,76,0.0 +19693,city_67,0.855,,Has relevent experience,Full time course,Phd,STEM,10,1000-4999,Public Sector,3,141,0.0 +19411,city_162,0.767,,Has relevent experience,Part time course,Masters,Humanities,15,1000-4999,Pvt Ltd,1,124,1.0 +6036,city_138,0.836,,Has relevent experience,no_enrollment,,,20,,,1,105,0.0 +5929,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,4,56,0.0 +2722,city_149,0.6890000000000001,,Has relevent experience,,High School,,3,,,never,99,1.0 +26191,city_65,0.802,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,48,0.0 +20018,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,>4,24,0.0 +8003,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,>4,92,1.0 +28330,city_16,0.91,Female,No relevent experience,Full time course,Graduate,STEM,5,,,never,68,0.0 +23074,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,1000-4999,Pvt Ltd,4,256,0.0 +31923,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,2,50-99,Early Stage Startup,1,62,1.0 +14371,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Early Stage Startup,1,19,1.0 +32637,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,98,1.0 +4603,city_21,0.624,Male,No relevent experience,Full time course,High School,,1,,,never,112,1.0 +6478,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,16,500-999,Pvt Ltd,1,105,0.0 +30435,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Primary School,,6,,,1,228,0.0 +18240,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,130,0.0 +4264,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,,>4,24,0.0 +33306,city_50,0.8959999999999999,Male,No relevent experience,Full time course,Masters,STEM,10,,,4,34,1.0 +27745,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,47,1.0 +7864,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,Business Degree,11,100-500,Pvt Ltd,>4,44,0.0 +18955,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,12,<10,Early Stage Startup,1,94,0.0 +21912,city_7,0.647,,Has relevent experience,no_enrollment,Masters,STEM,4,,,never,59,0.0 +4935,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,144,1.0 +28800,city_150,0.698,,No relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Public Sector,1,80,0.0 +3426,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,11,1000-4999,Pvt Ltd,>4,12,0.0 +8385,city_136,0.897,,No relevent experience,Full time course,High School,,4,,,1,150,0.0 +22550,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,1000-4999,Pvt Ltd,3,44,1.0 +2191,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Early Stage Startup,1,53,0.0 +981,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,2,54,0.0 +26626,city_102,0.804,,Has relevent experience,Part time course,Graduate,STEM,8,10/49,Pvt Ltd,1,17,0.0 +20495,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,1,,,never,138,1.0 +11328,city_128,0.527,Male,No relevent experience,Part time course,High School,,1,,,never,78,1.0 +23380,city_90,0.698,,No relevent experience,no_enrollment,Masters,STEM,8,50-99,,4,4,0.0 +20379,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,3,10/49,Pvt Ltd,3,39,0.0 +30941,city_20,0.7959999999999999,Male,No relevent experience,Full time course,High School,,3,10/49,Pvt Ltd,1,12,1.0 +22449,city_165,0.903,Male,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,,never,15,0.0 +1030,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,>4,164,0.0 +20599,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,1000-4999,Pvt Ltd,2,45,0.0 +9249,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,2,90,0.0 +18433,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,1000-4999,Pvt Ltd,2,65,0.0 +25017,city_152,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,500-999,Pvt Ltd,1,7,0.0 +23703,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,31,0.0 +13755,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,Other,3,,,1,43,1.0 +19566,city_139,0.48700000000000004,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,96,1.0 +21874,city_21,0.624,Male,No relevent experience,Full time course,High School,,1,,,never,30,1.0 +11256,city_175,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,>4,81,0.0 +1867,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,1,50,1.0 +22017,city_21,0.624,,No relevent experience,Full time course,High School,,3,,,never,72,1.0 +1787,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,2,17,0.0 +30945,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,28,1.0 +2735,city_100,0.887,,Has relevent experience,no_enrollment,Graduate,STEM,1,<10,Funded Startup,1,154,0.0 +2027,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,Other,<1,,,1,167,0.0 +11847,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,Pvt Ltd,1,116,0.0 +4921,city_103,0.92,,No relevent experience,no_enrollment,High School,,6,,,never,28,0.0 +24142,city_7,0.647,Male,Has relevent experience,no_enrollment,High School,,5,,,2,38,0.0 +9289,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10/49,Pvt Ltd,never,60,1.0 +6156,city_71,0.884,Male,No relevent experience,Full time course,High School,,7,,,never,110,0.0 +17038,city_160,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,20,5000-9999,Pvt Ltd,1,25,0.0 +11788,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,52,1.0 +6965,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,68,0.0 +33298,city_44,0.725,Male,No relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,106,0.0 +16973,city_160,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,100-500,Pvt Ltd,2,18,0.0 +26959,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,2,266,0.0 +7004,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,Humanities,2,<10,Pvt Ltd,1,316,0.0 +16223,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,Other,13,50-99,Pvt Ltd,4,136,0.0 +20457,city_115,0.789,Male,No relevent experience,no_enrollment,High School,,2,,,never,98,0.0 +7110,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,2,10,0.0 +2980,city_50,0.8959999999999999,,Has relevent experience,no_enrollment,Phd,STEM,11,100-500,Pvt Ltd,2,16,0.0 +19169,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,>4,142,1.0 +10487,city_89,0.925,Male,No relevent experience,no_enrollment,Graduate,STEM,10,500-999,Public Sector,1,32,0.0 +16676,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,6,1000-4999,Pvt Ltd,2,6,1.0 +12354,city_103,0.92,,No relevent experience,Full time course,Masters,STEM,7,,,2,61,0.0 +3023,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,2,145,0.0 +20201,city_128,0.527,,No relevent experience,Full time course,High School,,1,,,never,80,0.0 +16227,city_46,0.762,Other,No relevent experience,,,,8,,,never,234,0.0 +24045,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,NGO,1,136,1.0 +7441,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,4,51,0.0 +23010,city_149,0.6890000000000001,,No relevent experience,no_enrollment,High School,,8,1000-4999,Pvt Ltd,1,102,0.0 +19697,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Pvt Ltd,1,25,1.0 +4890,city_78,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,never,31,0.0 +29138,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,48,0.0 +696,city_142,0.727,,Has relevent experience,no_enrollment,Graduate,STEM,6,,Pvt Ltd,1,23,0.0 +18253,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,>4,33,0.0 +20763,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,5000-9999,Pvt Ltd,>4,24,0.0 +16768,city_100,0.887,,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,>4,36,0.0 +31094,city_138,0.836,Male,Has relevent experience,Full time course,Graduate,STEM,3,,,2,11,0.0 +2820,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,,1,113,0.0 +7422,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,2,58,1.0 +29791,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,60,0.0 +22105,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,3,7,0.0 +866,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,2,22,1.0 +28757,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,79,0.0 +12828,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Masters,STEM,13,50-99,Public Sector,never,52,0.0 +23027,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Other,5,50-99,Pvt Ltd,1,29,0.0 +22491,city_115,0.789,,No relevent experience,Full time course,Graduate,STEM,2,,,1,23,1.0 +23932,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,2,100,0.0 +19657,city_136,0.897,Male,No relevent experience,Full time course,Masters,STEM,6,1000-4999,Public Sector,never,83,0.0 +18122,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,9,0.0 +4800,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,500-999,Pvt Ltd,never,4,1.0 +4447,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,>4,69,1.0 +24299,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,52,0.0 +29923,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,13,,,1,109,1.0 +7085,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,109,1.0 +24212,city_145,0.555,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,>4,55,1.0 +20375,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,10/49,Funded Startup,1,57,1.0 +9470,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,24,0.0 +17240,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,1,36,0.0 +18265,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,>20,,,>4,89,1.0 +18444,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,4,,,,4,0.0 +9053,city_180,0.698,,No relevent experience,Full time course,Graduate,STEM,1,,,1,77,0.0 +13086,city_160,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,4,100-500,Pvt Ltd,1,90,0.0 +3950,city_71,0.884,Male,No relevent experience,Full time course,Graduate,STEM,6,,Pvt Ltd,never,128,0.0 +15694,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,16,1.0 +28835,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,44,1.0 +2126,city_16,0.91,Male,Has relevent experience,no_enrollment,Primary School,,14,100-500,Funded Startup,1,36,0.0 +26131,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,1,34,0.0 +30530,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,,,1,36,1.0 +9722,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,2,55,1.0 +8764,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Funded Startup,1,24,0.0 +19796,city_157,0.769,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,2,160,0.0 +12380,city_149,0.6890000000000001,Male,No relevent experience,Full time course,High School,,3,,,never,45,0.0 +13777,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,22,0.0 +14597,city_102,0.804,,Has relevent experience,Full time course,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,68,0.0 +2499,city_57,0.866,Male,Has relevent experience,Part time course,Masters,STEM,11,1000-4999,Pvt Ltd,1,214,0.0 +16267,city_160,0.92,,No relevent experience,no_enrollment,High School,,3,,,never,4,0.0 +6071,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,10/49,Pvt Ltd,1,258,0.0 +12116,city_143,0.74,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,35,0.0 +23990,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,Public Sector,1,22,0.0 +20410,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,2,33,0.0 +21368,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,6,100-500,Funded Startup,1,17,1.0 +5651,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,17,5000-9999,Pvt Ltd,>4,41,0.0 +4314,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,High School,,2,5000-9999,Public Sector,2,82,0.0 +22570,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,500-999,Pvt Ltd,,46,1.0 +9127,city_136,0.897,,Has relevent experience,Full time course,Graduate,STEM,1,500-999,Pvt Ltd,1,100,0.0 +26228,city_107,0.518,,No relevent experience,Full time course,Phd,Other,>20,10000+,Pvt Ltd,>4,56,0.0 +10495,city_123,0.738,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,1,34,0.0 +28128,city_45,0.89,Male,No relevent experience,Full time course,Masters,STEM,5,,,1,49,0.0 +3612,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,11,0.0 +4622,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,19,500-999,,never,16,0.0 +19792,city_100,0.887,,Has relevent experience,no_enrollment,Masters,STEM,5,<10,Early Stage Startup,1,107,0.0 +24066,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,9,<10,Pvt Ltd,3,258,1.0 +17195,city_45,0.89,,No relevent experience,no_enrollment,Masters,Humanities,4,10000+,,1,12,0.0 +14166,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,1,30,0.0 +918,city_30,0.698,,Has relevent experience,Part time course,Graduate,STEM,7,50-99,Pvt Ltd,2,12,0.0 +22828,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,,2,17,0.0 +32041,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,7,,,never,32,1.0 +2339,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,17,,,1,43,0.0 +8772,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,High School,,>20,,,4,44,0.0 +18302,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,5,100-500,Pvt Ltd,1,13,0.0 +4183,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,10,10000+,Pvt Ltd,1,55,0.0 +13751,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,14,<10,Pvt Ltd,>4,23,0.0 +20594,city_90,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,,1,70,0.0 +31645,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,8,10/49,Funded Startup,1,61,0.0 +10658,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,8,,,>4,116,1.0 +32157,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,,,never,116,1.0 +22980,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,7,,,1,56,1.0 +14604,city_21,0.624,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,2,16,1.0 +4085,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,9,0.0 +12939,city_104,0.924,Male,Has relevent experience,no_enrollment,,,>20,,,>4,32,0.0 +10539,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Humanities,15,10/49,Pvt Ltd,1,103,0.0 +30602,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,never,20,0.0 +10710,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,17,<10,Pvt Ltd,1,113,0.0 +708,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,13,10/49,Funded Startup,3,76,0.0 +28250,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,6,10000+,Pvt Ltd,1,4,0.0 +21615,city_101,0.5579999999999999,,No relevent experience,no_enrollment,Graduate,STEM,4,,,1,70,0.0 +29644,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,,1,44,0.0 +338,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,8,,,2,45,1.0 +27732,city_46,0.762,Male,No relevent experience,Full time course,High School,,2,,,never,40,0.0 +12560,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,32,1.0 +26363,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,35,1.0 +23180,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,3,224,0.0 +20597,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,67,0.0 +20444,city_114,0.9259999999999999,Male,No relevent experience,,Graduate,STEM,5,<10,Pvt Ltd,1,66,0.0 +30699,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,5,50-99,Pvt Ltd,1,88,0.0 +14828,city_73,0.754,Male,Has relevent experience,Part time course,High School,,7,<10,Pvt Ltd,2,176,0.0 +14018,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,12,50-99,Pvt Ltd,>4,77,1.0 +5583,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,17,,,1,8,0.0 +5880,city_64,0.6659999999999999,Female,Has relevent experience,Part time course,Graduate,STEM,5,<10,Early Stage Startup,never,15,0.0 +23019,city_90,0.698,Male,Has relevent experience,,Graduate,STEM,12,50-99,,4,97,1.0 +20470,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,>4,18,1.0 +27299,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,never,25,1.0 +3791,city_73,0.754,,Has relevent experience,Full time course,Masters,STEM,6,10000+,Public Sector,never,14,0.0 +1552,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,NGO,1,42,0.0 +20023,city_111,0.698,,Has relevent experience,Full time course,Graduate,STEM,7,500-999,NGO,1,8,0.0 +4073,city_103,0.92,Male,No relevent experience,Full time course,Phd,STEM,>20,,,1,28,0.0 +25663,city_16,0.91,Male,No relevent experience,Part time course,Graduate,STEM,7,50-99,Pvt Ltd,2,62,0.0 +29585,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,48,0.0 +31795,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,100-500,Pvt Ltd,1,20,0.0 +19763,city_21,0.624,,Has relevent experience,,Graduate,STEM,2,10000+,Pvt Ltd,1,68,0.0 +11725,city_104,0.924,,Has relevent experience,Full time course,Graduate,STEM,11,50-99,Pvt Ltd,4,10,0.0 +8932,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Funded Startup,2,10,1.0 +16459,city_57,0.866,,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,66,0.0 +7383,city_67,0.855,Female,Has relevent experience,Part time course,Graduate,STEM,7,10000+,Pvt Ltd,1,41,0.0 +26768,city_162,0.767,,Has relevent experience,Full time course,Primary School,,2,,,1,23,1.0 +3978,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,110,0.0 +26408,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,14,50-99,,3,44,0.0 +11429,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,>4,29,0.0 +9832,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,110,0.0 +13908,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,>4,76,1.0 +3324,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Other,>20,,Public Sector,>4,96,0.0 +19480,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,4,106,0.0 +10645,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,,100-500,Pvt Ltd,1,60,1.0 +23998,city_42,0.563,Male,No relevent experience,Full time course,Graduate,STEM,5,5000-9999,Pvt Ltd,1,119,1.0 +3442,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Pvt Ltd,1,53,0.0 +29251,city_166,0.649,,Has relevent experience,Full time course,,,5,<10,Other,,188,0.0 +24411,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,Other,3,50-99,Pvt Ltd,3,11,0.0 +359,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,>4,135,1.0 +29507,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,100-500,Pvt Ltd,>4,61,0.0 +31324,city_128,0.527,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,63,0.0 +13971,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Public Sector,2,42,0.0 +15804,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,2,,,never,13,0.0 +18199,city_94,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,1,9,0.0 +28486,city_16,0.91,Male,No relevent experience,,,,3,,,never,84,0.0 +13932,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Pvt Ltd,1,106,1.0 +28404,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Arts,2,,,2,28,0.0 +5802,city_97,0.925,,No relevent experience,no_enrollment,Primary School,,9,,Pvt Ltd,never,48,0.0 +24609,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,3,123,0.0 +4155,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,72,0.0 +13483,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Humanities,7,,,2,56,0.0 +12335,city_138,0.836,Male,No relevent experience,no_enrollment,Graduate,STEM,13,,,never,17,0.0 +25060,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,Other,9,10000+,Pvt Ltd,4,34,0.0 +5153,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,1,76,1.0 +21093,city_91,0.691,Female,No relevent experience,,Graduate,STEM,<1,,,never,18,1.0 +7643,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,3,,,2,72,1.0 +30177,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,7,500-999,Pvt Ltd,2,56,0.0 +2787,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,18,50-99,Other,2,25,0.0 +1241,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,78,0.0 +19586,city_160,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,1,33,1.0 +11783,city_101,0.5579999999999999,Male,No relevent experience,no_enrollment,High School,,5,,,never,38,0.0 +490,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,52,0.0 +22349,city_76,0.698,,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,,10,0.0 +28106,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,,1,70,0.0 +7317,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,11,,,1,43,1.0 +22473,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,2,105,0.0 +17061,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,2,36,0.0 +9009,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,1000-4999,Pvt Ltd,1,43,0.0 +23914,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,13,10000+,Pvt Ltd,>4,25,0.0 +27253,city_27,0.848,Male,No relevent experience,no_enrollment,Graduate,No Major,1,,,1,290,0.0 +15686,city_116,0.743,,No relevent experience,no_enrollment,Masters,STEM,7,,Pvt Ltd,1,30,0.0 +18028,city_103,0.92,Male,No relevent experience,Full time course,High School,,9,,,1,82,0.0 +26958,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,4,1000-4999,Pvt Ltd,2,60,1.0 +4940,city_67,0.855,Female,Has relevent experience,Part time course,Graduate,STEM,10,10000+,Pvt Ltd,1,218,1.0 +21778,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,15,1.0 +15698,city_114,0.9259999999999999,,Has relevent experience,,Masters,STEM,>20,50-99,Pvt Ltd,>4,35,0.0 +20033,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,13,1000-4999,Pvt Ltd,1,25,1.0 +27366,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,23,0.0 +10557,city_21,0.624,Female,Has relevent experience,Full time course,Masters,STEM,9,50-99,Early Stage Startup,never,218,1.0 +16106,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,134,0.0 +246,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,never,65,0.0 +21796,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,20,50-99,Pvt Ltd,1,70,0.0 +25162,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,12,,,1,135,0.0 +32544,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,96,0.0 +3557,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,No Major,1,,Pvt Ltd,never,15,1.0 +2463,city_102,0.804,,No relevent experience,no_enrollment,Graduate,Humanities,4,,,1,43,0.0 +4615,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,1,144,0.0 +15394,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,5,,,2,121,1.0 +5570,city_155,0.556,Male,Has relevent experience,Full time course,Graduate,STEM,6,50-99,Pvt Ltd,1,32,1.0 +8534,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,3,89,0.0 +12808,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Other,1,16,0.0 +14418,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,1,302,1.0 +32054,city_21,0.624,,No relevent experience,Part time course,,,4,10/49,Pvt Ltd,,40,1.0 +544,city_160,0.92,Female,Has relevent experience,no_enrollment,High School,,10,50-99,Funded Startup,1,35,1.0 +15999,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,4,50,0.0 +22441,city_101,0.5579999999999999,,Has relevent experience,Part time course,Masters,STEM,5,<10,Pvt Ltd,1,87,0.0 +5059,city_23,0.899,,No relevent experience,no_enrollment,Graduate,STEM,<1,,,never,96,1.0 +5165,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,3,,Pvt Ltd,never,2,0.0 +7301,city_67,0.855,Male,Has relevent experience,Full time course,Masters,STEM,10,100-500,Pvt Ltd,2,38,0.0 +7177,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,7,1.0 +14453,city_74,0.579,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,3,50,1.0 +17105,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,never,43,0.0 +20046,city_21,0.624,Female,No relevent experience,Full time course,Graduate,STEM,2,,,,9,0.0 +29250,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,2,50-99,Pvt Ltd,1,144,1.0 +8458,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,Humanities,6,50-99,,1,36,0.0 +25676,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,Pvt Ltd,never,48,1.0 +48,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,STEM,2,,Pvt Ltd,1,37,0.0 +17327,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,No Major,4,10/49,Pvt Ltd,2,18,1.0 +6325,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,9,1000-4999,Pvt Ltd,1,102,0.0 +28472,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,2,124,0.0 +17862,city_149,0.6890000000000001,Female,Has relevent experience,Full time course,Graduate,STEM,14,,,>4,51,1.0 +19038,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,18,,,1,312,0.0 +31800,city_28,0.9390000000000001,Male,No relevent experience,Full time course,High School,,7,,,1,182,0.0 +15790,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,132,0.0 +1595,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,,>4,82,0.0 +8654,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Funded Startup,1,135,0.0 +24096,city_97,0.925,,Has relevent experience,Part time course,Graduate,STEM,13,50-99,Early Stage Startup,2,13,0.0 +23780,city_136,0.897,,No relevent experience,no_enrollment,Primary School,,<1,,,1,50,0.0 +11216,city_103,0.92,Male,Has relevent experience,Full time course,Phd,Other,13,5000-9999,Pvt Ltd,>4,28,0.0 +32413,city_93,0.865,Male,No relevent experience,no_enrollment,Primary School,,5,50-99,,never,40,0.0 +11675,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,>4,170,0.0 +4008,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,Other,10,50-99,Public Sector,4,28,0.0 +8989,city_21,0.624,,No relevent experience,no_enrollment,Graduate,No Major,11,,,never,66,0.0 +26122,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,Pvt Ltd,1,9,0.0 +4139,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Pvt Ltd,4,11,1.0 +16343,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,17,0.0 +25352,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,,1,118,0.0 +22878,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Public Sector,>4,29,0.0 +4632,city_162,0.767,Male,No relevent experience,Full time course,Graduate,STEM,9,,Pvt Ltd,never,182,0.0 +5244,city_23,0.899,Female,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,,4,76,0.0 +30917,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Business Degree,>20,,,>4,33,1.0 +27808,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,72,0.0 +4556,city_21,0.624,,No relevent experience,Full time course,High School,,2,,,,107,0.0 +25089,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Early Stage Startup,never,8,0.0 +21528,city_19,0.682,Male,No relevent experience,no_enrollment,Graduate,STEM,15,,,1,66,1.0 +3718,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,46,1.0 +698,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Arts,1,10/49,Pvt Ltd,1,107,0.0 +10924,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,never,94,0.0 +8510,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Public Sector,never,50,0.0 +6904,city_21,0.624,Other,Has relevent experience,Full time course,Graduate,STEM,1,,,1,39,1.0 +21560,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,50-99,Pvt Ltd,2,37,0.0 +22490,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,6,10000+,Pvt Ltd,4,144,0.0 +7273,city_118,0.722,,Has relevent experience,Part time course,Masters,STEM,10,1000-4999,Pvt Ltd,3,19,1.0 +32515,city_114,0.9259999999999999,Other,Has relevent experience,no_enrollment,High School,,16,,,2,28,0.0 +7646,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,47,1.0 +27728,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Public Sector,>4,7,0.0 +5010,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,2,42,0.0 +32024,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,5,1000-4999,Public Sector,2,37,0.0 +16988,city_160,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,10,,Public Sector,1,48,0.0 +16478,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,46,0.0 +1791,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,2,<10,Early Stage Startup,1,78,0.0 +10441,city_99,0.915,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Public Sector,never,110,0.0 +5845,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,Business Degree,<1,10/49,Public Sector,1,102,1.0 +10081,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Early Stage Startup,1,8,0.0 +7692,city_11,0.55,Male,Has relevent experience,Full time course,Masters,STEM,>20,,,>4,128,1.0 +6002,city_102,0.804,,Has relevent experience,Full time course,Graduate,STEM,14,50-99,Public Sector,2,46,0.0 +30324,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Public Sector,>4,24,0.0 +27171,city_157,0.769,Male,Has relevent experience,Part time course,Masters,STEM,7,50-99,,3,13,0.0 +22137,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,NGO,3,84,0.0 +6549,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,,1000-4999,Pvt Ltd,1,36,1.0 +2217,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Pvt Ltd,1,6,0.0 +21102,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,2,34,0.0 +9186,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,never,100,0.0 +18482,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,52,0.0 +8842,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,Pvt Ltd,>4,74,0.0 +18304,city_64,0.6659999999999999,Male,No relevent experience,Full time course,High School,,2,,,1,110,0.0 +24911,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,131,0.0 +30338,city_114,0.9259999999999999,,Has relevent experience,,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,12,0.0 +29732,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,6,1.0 +7348,city_67,0.855,Male,No relevent experience,Full time course,Graduate,STEM,3,1000-4999,Pvt Ltd,1,51,0.0 +24697,city_158,0.7659999999999999,Female,No relevent experience,Full time course,Graduate,STEM,8,,,never,56,0.0 +5332,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,12,1000-4999,Pvt Ltd,2,18,0.0 +7668,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,5000-9999,Pvt Ltd,2,136,0.0 +29917,city_162,0.767,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,14,1.0 +32687,city_42,0.563,,Has relevent experience,Full time course,Phd,STEM,<1,,,,43,1.0 +5103,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Public Sector,1,108,0.0 +23634,city_73,0.754,,Has relevent experience,Full time course,High School,,15,50-99,Pvt Ltd,>4,41,0.0 +4161,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,70,0.0 +17926,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,2,168,0.0 +17409,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Funded Startup,1,224,0.0 +24696,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,3,228,0.0 +8628,city_84,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,1,131,0.0 +7803,city_67,0.855,Male,No relevent experience,Part time course,Graduate,STEM,2,5000-9999,Pvt Ltd,1,46,0.0 +26593,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,44,0.0 +19446,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Early Stage Startup,1,7,0.0 +11623,city_21,0.624,Female,Has relevent experience,Full time course,Graduate,STEM,<1,10/49,Pvt Ltd,1,68,1.0 +24843,city_103,0.92,Male,No relevent experience,,,,4,,,never,23,0.0 +27457,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,83,0.0 +26222,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Early Stage Startup,1,149,0.0 +13702,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,Pvt Ltd,1,162,0.0 +10496,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,1,27,1.0 +9028,city_165,0.903,,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Funded Startup,>4,119,0.0 +23697,city_149,0.6890000000000001,,No relevent experience,no_enrollment,High School,,12,,,never,41,0.0 +17258,city_11,0.55,,No relevent experience,Full time course,Graduate,STEM,<1,50-99,Other,never,72,1.0 +29118,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,3,0.0 +21009,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,2,28,0.0 +17416,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,1,39,0.0 +16999,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,No Major,6,<10,Pvt Ltd,3,144,0.0 +21113,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,184,1.0 +6814,city_21,0.624,,No relevent experience,Part time course,Graduate,Other,5,10/49,Funded Startup,3,37,0.0 +2286,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,40,1.0 +31848,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,44,0.0 +14978,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10/49,Early Stage Startup,1,23,0.0 +25014,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,3,138,0.0 +29058,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,2,76,0.0 +8650,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,Other,5,50-99,Pvt Ltd,2,29,0.0 +25602,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,1,150,0.0 +12933,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,9,10000+,Pvt Ltd,1,61,0.0 +17558,city_84,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,3,25,0.0 +3475,city_103,0.92,Male,Has relevent experience,no_enrollment,,,>20,100-500,Pvt Ltd,1,130,0.0 +27973,city_145,0.555,,No relevent experience,Full time course,Graduate,STEM,8,50-99,Pvt Ltd,1,7,0.0 +19905,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,>4,62,0.0 +20382,city_21,0.624,,No relevent experience,Part time course,Graduate,STEM,<1,,,,89,1.0 +5940,city_44,0.725,,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,2,18,0.0 +15220,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Public Sector,>4,92,0.0 +31035,city_126,0.479,,No relevent experience,no_enrollment,High School,,2,500-999,Pvt Ltd,2,39,0.0 +12590,city_77,0.83,Male,Has relevent experience,no_enrollment,,,8,50-99,Pvt Ltd,>4,25,0.0 +30022,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,1,294,0.0 +22414,city_21,0.624,,No relevent experience,,High School,,<1,,,,2,0.0 +4168,city_16,0.91,,Has relevent experience,no_enrollment,Masters,Business Degree,15,1000-4999,Pvt Ltd,2,1,0.0 +10651,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,14,0.0 +33164,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,80,0.0 +28376,city_65,0.802,Female,Has relevent experience,no_enrollment,Masters,STEM,12,,,1,88,0.0 +14024,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Public Sector,1,8,0.0 +15869,city_150,0.698,,No relevent experience,Full time course,High School,,4,,,2,54,0.0 +31229,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,2,32,1.0 +6269,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,Humanities,>20,,,>4,160,0.0 +6680,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,,10,0.0 +928,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,,3,10,0.0 +19787,city_21,0.624,,Has relevent experience,,Graduate,STEM,4,100-500,Pvt Ltd,3,11,0.0 +2255,city_14,0.698,,No relevent experience,Part time course,Graduate,STEM,>20,50-99,Pvt Ltd,1,90,0.0 +1845,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,21,0.0 +27412,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,2,36,0.0 +6561,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,,1,43,0.0 +6679,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,35,1.0 +2598,city_9,0.743,Male,Has relevent experience,Part time course,Masters,STEM,11,100-500,Pvt Ltd,2,46,0.0 +22758,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,never,53,1.0 +21371,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,Business Degree,10,50-99,Pvt Ltd,1,15,1.0 +23082,city_100,0.887,Male,No relevent experience,no_enrollment,Masters,STEM,10,,,2,24,1.0 +22056,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,97,0.0 +14729,city_16,0.91,Female,No relevent experience,Full time course,High School,,2,,,1,5,0.0 +27236,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,>20,50-99,Pvt Ltd,4,94,0.0 +1503,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Business Degree,2,,,1,44,1.0 +17097,city_103,0.92,Male,Has relevent experience,no_enrollment,,,4,,,never,40,0.0 +23406,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,Humanities,6,,,>4,28,0.0 +33214,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Other,13,10000+,Pvt Ltd,1,34,0.0 +2717,city_136,0.897,,No relevent experience,Full time course,High School,,5,,,never,18,0.0 +2061,city_23,0.899,Male,Has relevent experience,no_enrollment,Masters,Other,15,<10,Early Stage Startup,1,55,0.0 +16897,city_21,0.624,Female,No relevent experience,Full time course,High School,,3,,,never,140,0.0 +4354,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,2,,,never,47,0.0 +32779,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,20,0.0 +2213,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,19,50-99,Pvt Ltd,>4,10,0.0 +21386,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,106,0.0 +24798,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,23,0.0 +26203,city_46,0.762,,No relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,2,110,1.0 +29535,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,2,36,0.0 +2371,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,6,50-99,Pvt Ltd,1,162,0.0 +18862,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,5,1000-4999,Pvt Ltd,1,43,0.0 +25837,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,9,50-99,Pvt Ltd,>4,30,0.0 +8085,city_72,0.795,,Has relevent experience,Full time course,Graduate,STEM,10,50-99,,1,29,0.0 +10117,city_67,0.855,,No relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,2,75,0.0 +4883,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,3,,Pvt Ltd,never,16,0.0 +12166,city_157,0.769,,No relevent experience,no_enrollment,High School,,1,,,,29,0.0 +27169,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,5,,,,145,0.0 +13295,city_74,0.579,,No relevent experience,Full time course,High School,,4,,,never,38,0.0 +15048,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,46,0.0 +3681,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Funded Startup,3,38,0.0 +28021,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Funded Startup,2,64,0.0 +23035,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,2,20,1.0 +14610,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,11,0.0 +14556,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,5000-9999,Pvt Ltd,never,25,1.0 +33174,city_139,0.48700000000000004,Male,Has relevent experience,Part time course,Graduate,STEM,5,10/49,Pvt Ltd,1,92,0.0 +1941,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,Pvt Ltd,never,14,1.0 +6669,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,2,75,0.0 +30752,city_158,0.7659999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,4,8,0.0 +4767,city_114,0.9259999999999999,Male,No relevent experience,,High School,,3,,,1,22,0.0 +30629,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Early Stage Startup,1,21,1.0 +19692,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,1,87,1.0 +18236,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,6,10000+,Pvt Ltd,1,32,0.0 +31099,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,1,,,1,28,1.0 +5868,city_84,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,10,,,1,16,0.0 +17629,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,19,,,3,101,1.0 +22493,city_145,0.555,,No relevent experience,Full time course,Graduate,STEM,2,,,1,64,1.0 +3588,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,,,18,50-99,Pvt Ltd,,47,1.0 +16269,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,17,10000+,Pvt Ltd,2,15,0.0 +25295,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Funded Startup,2,11,0.0 +18997,city_136,0.897,,No relevent experience,,,,4,,,,22,0.0 +17843,city_65,0.802,,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,1,2,0.0 +22458,city_46,0.762,Male,No relevent experience,,High School,,2,,,never,69,0.0 +10767,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,5,100-500,Funded Startup,1,31,0.0 +30728,city_73,0.754,Male,Has relevent experience,Part time course,Masters,STEM,11,500-999,Public Sector,1,2,1.0 +29910,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,Other,17,500-999,Public Sector,2,24,0.0 +1565,city_103,0.92,Male,No relevent experience,Full time course,High School,,6,,NGO,never,56,0.0 +32810,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,14,1.0 +25531,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,2,22,0.0 +15015,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,120,0.0 +8479,city_36,0.893,Male,No relevent experience,no_enrollment,Primary School,,4,,,never,17,0.0 +16254,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,5000-9999,,4,58,0.0 +28182,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Public Sector,>4,22,0.0 +17672,city_67,0.855,Male,No relevent experience,no_enrollment,Masters,Business Degree,15,,,2,23,0.0 +8131,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,4,10000+,Pvt Ltd,4,100,0.0 +30707,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,314,0.0 +13067,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,5,1000-4999,Pvt Ltd,,7,1.0 +26100,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,45,0.0 +13090,city_67,0.855,Male,No relevent experience,,High School,,4,,,never,63,0.0 +28955,city_103,0.92,Male,No relevent experience,Part time course,Graduate,Humanities,<1,500-999,Pvt Ltd,1,13,1.0 +21981,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,3,0.0 +16645,city_16,0.91,Male,Has relevent experience,no_enrollment,,,7,,,3,7,0.0 +29531,city_114,0.9259999999999999,Female,No relevent experience,Part time course,Graduate,STEM,1,10000+,Pvt Ltd,1,33,0.0 +27242,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,>4,46,0.0 +26574,city_101,0.5579999999999999,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,24,0.0 +12342,city_143,0.74,,No relevent experience,Full time course,,,<1,10/49,Pvt Ltd,3,80,0.0 +11573,city_67,0.855,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,2,153,0.0 +13686,city_105,0.794,Male,Has relevent experience,Part time course,Graduate,STEM,8,100-500,Pvt Ltd,2,22,0.0 +5701,city_23,0.899,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,never,12,0.0 +30025,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,2,82,0.0 +15654,city_114,0.9259999999999999,Female,No relevent experience,no_enrollment,Masters,STEM,13,500-999,Public Sector,>4,44,0.0 +1455,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,5,0.0 +17528,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,NGO,1,39,0.0 +9685,city_55,0.7390000000000001,,Has relevent experience,no_enrollment,Masters,STEM,19,,,>4,13,1.0 +10886,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,5000-9999,Pvt Ltd,4,54,0.0 +16848,city_90,0.698,Female,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,144,1.0 +14910,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,14,10000+,Pvt Ltd,>4,98,0.0 +8963,city_103,0.92,Female,Has relevent experience,no_enrollment,High School,,12,,NGO,2,16,0.0 +22987,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,52,0.0 +18186,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,4,10/49,,4,53,0.0 +15116,city_55,0.7390000000000001,,No relevent experience,Full time course,Graduate,STEM,7,,,2,83,1.0 +3336,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,10,100-500,NGO,>4,22,0.0 +29638,city_40,0.7759999999999999,,Has relevent experience,Full time course,Masters,STEM,8,50-99,Pvt Ltd,2,24,0.0 +29342,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,Pvt Ltd,1,130,0.0 +22943,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,32,0.0 +19705,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Early Stage Startup,1,53,1.0 +7985,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,1,57,0.0 +4298,city_83,0.9229999999999999,Male,No relevent experience,Part time course,Graduate,STEM,9,,,>4,4,1.0 +22301,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,Arts,6,,,1,25,0.0 +2188,city_123,0.738,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Early Stage Startup,2,7,0.0 +5982,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,98,0.0 +18962,city_16,0.91,Male,Has relevent experience,Full time course,Masters,Humanities,5,500-999,Pvt Ltd,>4,14,0.0 +1512,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Humanities,>20,10000+,Pvt Ltd,2,156,0.0 +8881,city_103,0.92,,Has relevent experience,no_enrollment,High School,,>20,,,>4,33,0.0 +7293,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,>4,49,1.0 +26381,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,10,,,1,12,0.0 +6421,city_16,0.91,Male,Has relevent experience,no_enrollment,,,7,,,1,45,0.0 +3064,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,8,1000-4999,Pvt Ltd,2,308,0.0 +18377,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,,Pvt Ltd,never,2,1.0 +2443,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10/49,Pvt Ltd,1,59,0.0 +6924,city_65,0.802,Male,No relevent experience,no_enrollment,Graduate,STEM,1,10/49,Other,1,51,1.0 +29714,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Early Stage Startup,2,76,0.0 +1071,city_103,0.92,,No relevent experience,Full time course,High School,,3,50-99,,1,3,0.0 +3411,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,17,<10,Funded Startup,1,11,0.0 +3959,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,>4,92,0.0 +22405,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,4,60,0.0 +2356,city_105,0.794,,Has relevent experience,no_enrollment,Graduate,STEM,4,,,2,5,0.0 +18337,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Masters,Other,10,1000-4999,Pvt Ltd,1,40,0.0 +18452,city_141,0.763,,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,Pvt Ltd,never,97,0.0 +10224,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,1,23,0.0 +15884,city_64,0.6659999999999999,Male,No relevent experience,no_enrollment,Graduate,Business Degree,17,500-999,Pvt Ltd,2,60,0.0 +26273,city_103,0.92,Female,No relevent experience,Full time course,Graduate,No Major,10,,,never,4,0.0 +9842,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,43,0.0 +2628,city_78,0.579,Male,Has relevent experience,no_enrollment,High School,,8,,,1,20,0.0 +20871,city_72,0.795,Male,Has relevent experience,Part time course,Graduate,STEM,9,100-500,Pvt Ltd,4,52,0.0 +25204,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,86,0.0 +81,city_97,0.925,Male,No relevent experience,Full time course,Primary School,,5,,Pvt Ltd,never,46,0.0 +27899,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,Humanities,16,10000+,Pvt Ltd,4,18,0.0 +17470,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,2,28,0.0 +9114,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,8,0.0 +21575,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,2,62,0.0 +28002,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,100-500,NGO,>4,68,1.0 +17009,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,3,43,0.0 +13035,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,1,34,0.0 +16123,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,1,33,0.0 +2382,city_77,0.83,Male,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Pvt Ltd,1,48,0.0 +27004,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,70,1.0 +28686,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,Pvt Ltd,3,40,0.0 +7500,city_45,0.89,,No relevent experience,no_enrollment,Graduate,No Major,11,,,2,37,1.0 +24765,city_100,0.887,,No relevent experience,Full time course,High School,,4,,,1,210,0.0 +29011,city_141,0.763,Female,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,1,58,0.0 +7734,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,Other,6,50-99,Pvt Ltd,1,202,0.0 +9659,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,5,10/49,Funded Startup,3,194,0.0 +4731,city_36,0.893,Male,No relevent experience,no_enrollment,High School,,5,,,never,43,0.0 +5496,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,,1,74,0.0 +13580,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,>4,107,0.0 +12315,city_143,0.74,Female,No relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,40,0.0 +19637,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,<1,,,1,111,1.0 +26549,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,Public Sector,1,164,0.0 +4146,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,2,,,never,41,0.0 +23346,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,103,0.0 +15524,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,1,18,0.0 +5897,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,78,0.0 +12271,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Funded Startup,1,28,0.0 +15349,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,52,0.0 +18027,city_11,0.55,,No relevent experience,Full time course,Graduate,STEM,2,,,never,12,1.0 +13299,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,2,17,1.0 +24538,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,15,0.0 +14434,city_101,0.5579999999999999,,No relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,27,0.0 +3034,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,7,0.0 +10254,city_160,0.92,,No relevent experience,no_enrollment,High School,,6,10/49,Pvt Ltd,2,70,0.0 +20097,city_103,0.92,Other,Has relevent experience,no_enrollment,Masters,STEM,>20,,,3,107,1.0 +17232,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Early Stage Startup,never,3,1.0 +7231,city_100,0.887,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,140,0.0 +7946,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,6,0.0 +29862,city_160,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,7,50-99,NGO,2,74,0.0 +22485,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,46,0.0 +3033,city_67,0.855,,Has relevent experience,Full time course,Masters,STEM,12,,,2,91,0.0 +18016,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,6,0.0 +22666,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,7,10/49,Pvt Ltd,1,8,0.0 +19643,city_90,0.698,Male,Has relevent experience,Part time course,High School,,6,,,1,58,1.0 +1865,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,8,500-999,Pvt Ltd,1,92,0.0 +29089,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,4,24,1.0 +30880,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,10000+,Pvt Ltd,1,7,0.0 +29162,city_73,0.754,Male,Has relevent experience,Full time course,Graduate,STEM,12,,,1,91,1.0 +3633,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,11,10000+,Pvt Ltd,2,174,0.0 +27492,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Pvt Ltd,never,202,0.0 +15785,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Arts,14,10/49,Pvt Ltd,1,112,1.0 +29836,city_123,0.738,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,18,0.0 +4714,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,,1,53,0.0 +13961,city_175,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,,1,53,0.0 +25210,city_114,0.9259999999999999,,No relevent experience,Part time course,High School,,4,10000+,Pvt Ltd,2,5,0.0 +23909,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,7,0.0 +32773,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,100-500,Funded Startup,1,182,0.0 +12254,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,High School,,10,10000+,Pvt Ltd,2,33,0.0 +24237,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,,1,56,0.0 +3623,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,56,0.0 +28551,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,20,,,4,58,1.0 +10527,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,2,<10,Public Sector,1,138,0.0 +32357,city_70,0.698,Female,No relevent experience,Full time course,Primary School,,<1,,Pvt Ltd,never,37,1.0 +10377,city_101,0.5579999999999999,Male,Has relevent experience,Full time course,Masters,STEM,18,,,1,170,1.0 +24972,city_100,0.887,,No relevent experience,no_enrollment,High School,,2,,,never,214,0.0 +24921,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,,,16,100-500,Pvt Ltd,>4,63,0.0 +29875,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,6,,,1,36,0.0 +32762,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,17,,,1,117,1.0 +13507,city_16,0.91,Other,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,13,0.0 +19095,city_50,0.8959999999999999,,Has relevent experience,no_enrollment,High School,,3,10/49,Funded Startup,1,28,0.0 +32452,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,1,68,0.0 +27962,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Funded Startup,1,26,0.0 +14819,city_26,0.698,Male,Has relevent experience,no_enrollment,High School,,4,100-500,Pvt Ltd,2,45,1.0 +22971,city_136,0.897,,No relevent experience,Full time course,Masters,STEM,1,,Public Sector,never,61,1.0 +22142,city_11,0.55,,No relevent experience,Full time course,Graduate,STEM,2,,,1,144,1.0 +10582,city_36,0.893,,No relevent experience,no_enrollment,High School,,,,,never,44,0.0 +17808,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,>4,42,1.0 +20669,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,2,8,0.0 +11699,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,58,0.0 +26168,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Funded Startup,1,9,1.0 +19027,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,1,37,0.0 +24015,city_11,0.55,Male,No relevent experience,Full time course,High School,,5,,,never,4,1.0 +33299,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,149,0.0 +1446,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,>4,31,0.0 +22901,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Early Stage Startup,4,210,0.0 +8908,city_160,0.92,Male,No relevent experience,Full time course,Masters,STEM,14,,,4,36,0.0 +11618,city_21,0.624,Male,Has relevent experience,,Masters,STEM,5,,,2,52,0.0 +31918,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Pvt Ltd,1,80,0.0 +5463,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,1,36,1.0 +29063,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,1,25,0.0 +22884,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,1,64,0.0 +28373,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,32,0.0 +22425,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,23,0.0 +14384,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,112,1.0 +22924,city_175,0.7759999999999999,Male,No relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,1,41,0.0 +26244,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,49,0.0 +20036,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,7,50-99,Pvt Ltd,4,26,0.0 +9107,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,30,0.0 +4815,city_57,0.866,Male,No relevent experience,Full time course,High School,,4,,,never,122,0.0 +10163,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Early Stage Startup,4,212,0.0 +22220,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,192,0.0 +18487,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Primary School,,8,,,never,56,0.0 +16013,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,6,10000+,Public Sector,1,42,0.0 +12882,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,1,11,0.0 +4306,city_26,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,50,0.0 +21234,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,2,24,0.0 +26607,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,2,76,0.0 +13486,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Masters,Other,19,50-99,Pvt Ltd,2,4,0.0 +2844,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,No Major,11,100-500,NGO,1,242,0.0 +15097,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Funded Startup,1,52,0.0 +16844,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,20,0.0 +21609,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,196,1.0 +25094,city_11,0.55,,Has relevent experience,Part time course,Graduate,STEM,6,,,2,16,1.0 +17403,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,46,0.0 +24262,city_78,0.579,Male,No relevent experience,Full time course,Graduate,Humanities,<1,,,>4,18,0.0 +6196,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,2,100-500,Pvt Ltd,1,163,0.0 +30125,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Masters,STEM,>20,1000-4999,NGO,1,20,0.0 +13587,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,1,35,0.0 +30622,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,2,66,1.0 +9877,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,10000+,Pvt Ltd,>4,51,0.0 +12024,city_67,0.855,Male,No relevent experience,no_enrollment,Primary School,,3,,,,65,0.0 +141,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,8,5000-9999,Pvt Ltd,2,10,0.0 +22747,city_136,0.897,Female,No relevent experience,no_enrollment,Masters,STEM,5,100-500,Funded Startup,never,15,1.0 +19490,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Funded Startup,4,50,1.0 +8137,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,1,194,0.0 +23581,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,3,50-99,Pvt Ltd,2,7,0.0 +31844,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,3,1000-4999,Pvt Ltd,1,29,1.0 +29021,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,21,0.0 +5473,city_67,0.855,Male,Has relevent experience,Part time course,Masters,STEM,20,,,2,308,0.0 +20194,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,500-999,Pvt Ltd,1,72,0.0 +6718,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,21,0.0 +29403,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,NGO,>4,73,0.0 +28538,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,51,1.0 +21200,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,8,0.0 +29186,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Early Stage Startup,1,73,0.0 +10134,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,1,16,0.0 +6140,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Other,3,,,1,13,1.0 +7579,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,14,50-99,Funded Startup,1,4,0.0 +23135,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,7,100-500,Funded Startup,1,16,0.0 +14312,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,>4,113,0.0 +18947,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,1,8,0.0 +25374,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,25,0.0 +14693,city_159,0.843,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,70,0.0 +24809,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,3,10/49,Public Sector,1,51,1.0 +26101,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,18,10000+,Pvt Ltd,2,25,0.0 +27475,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,90,1.0 +8693,city_105,0.794,,Has relevent experience,no_enrollment,Masters,Business Degree,18,,,1,50,0.0 +30520,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Public Sector,2,130,0.0 +27957,city_23,0.899,Male,No relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,1,41,0.0 +29845,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,1,104,0.0 +20320,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,11,0.0 +28367,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,1,25,1.0 +32145,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Arts,16,<10,Pvt Ltd,>4,36,0.0 +22438,city_165,0.903,,No relevent experience,no_enrollment,Graduate,Business Degree,4,10000+,Pvt Ltd,1,200,0.0 +19000,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,17,0.0 +29364,city_89,0.925,,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,11,1.0 +8544,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Early Stage Startup,1,6,1.0 +31725,city_67,0.855,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,,1,5,0.0 +7977,city_67,0.855,,Has relevent experience,,Graduate,STEM,10,10/49,,2,298,0.0 +15491,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Funded Startup,2,23,0.0 +1024,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,4,9,0.0 +23782,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,11,,,1,48,0.0 +15787,city_104,0.924,,No relevent experience,Full time course,Graduate,STEM,4,,,,43,1.0 +15921,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,30,0.0 +26686,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,77,0.0 +30873,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Funded Startup,1,157,0.0 +15311,city_99,0.915,Male,No relevent experience,Full time course,High School,,7,,,never,138,1.0 +31789,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,5000-9999,Pvt Ltd,>4,11,0.0 +20374,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,4,56,0.0 +25390,city_126,0.479,,No relevent experience,,Graduate,STEM,3,50-99,Pvt Ltd,,23,1.0 +22867,city_11,0.55,,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,>4,18,0.0 +6024,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,never,110,1.0 +33206,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,55,0.0 +17676,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,Humanities,4,50-99,Pvt Ltd,2,25,0.0 +9339,city_180,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,3,57,0.0 +20616,city_162,0.767,Female,Has relevent experience,no_enrollment,Masters,STEM,17,,,3,10,1.0 +6755,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,3,51,1.0 +24361,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,109,0.0 +26923,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,>4,51,1.0 +8045,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,3,<10,Pvt Ltd,1,129,1.0 +12920,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Other,>20,10000+,Pvt Ltd,>4,70,0.0 +11666,city_67,0.855,Male,No relevent experience,Full time course,High School,,8,10/49,Pvt Ltd,1,18,0.0 +28166,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Early Stage Startup,>4,25,0.0 +32928,city_16,0.91,Female,No relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,28,1.0 +16576,city_41,0.8270000000000001,,No relevent experience,Part time course,Graduate,STEM,2,10/49,Pvt Ltd,1,246,0.0 +29896,city_103,0.92,Female,No relevent experience,no_enrollment,Phd,STEM,14,1000-4999,NGO,1,55,0.0 +10921,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,4,22,1.0 +23071,city_1,0.847,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,67,0.0 +20016,city_16,0.91,,No relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,2,68,0.0 +7154,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,,1,53,0.0 +24112,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,104,0.0 +30290,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,2,102,1.0 +14193,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,2,11,1.0 +25260,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,>20,100-500,Public Sector,>4,38,0.0 +12517,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,53,0.0 +14050,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Funded Startup,2,3,1.0 +10283,city_142,0.727,Male,No relevent experience,Part time course,Masters,STEM,5,500-999,Public Sector,1,17,0.0 +23221,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,2,70,0.0 +17731,city_77,0.83,Male,Has relevent experience,Full time course,Graduate,STEM,14,100-500,Pvt Ltd,1,136,0.0 +4793,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,30,0.0 +31703,city_21,0.624,,Has relevent experience,,,,5,,,1,139,1.0 +5726,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,1,32,0.0 +32770,city_21,0.624,Male,No relevent experience,no_enrollment,,,1,,Pvt Ltd,never,56,1.0 +11576,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,3,<10,Early Stage Startup,,8,0.0 +4771,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,,3,6,0.0 +18465,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,1,133,0.0 +33229,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,Humanities,9,,,1,44,0.0 +11123,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Funded Startup,1,26,0.0 +32142,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Public Sector,1,12,0.0 +20559,city_104,0.924,Male,No relevent experience,Full time course,High School,,4,50-99,Pvt Ltd,2,13,0.0 +30950,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,6,0.0 +18510,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,1,135,1.0 +30839,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,23,0.0 +26491,city_79,0.698,,No relevent experience,,,,2,,,,97,0.0 +13808,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,High School,,3,<10,Early Stage Startup,1,9,0.0 +28825,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,8,5000-9999,Pvt Ltd,1,18,1.0 +25875,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,2,17,0.0 +5014,city_103,0.92,,No relevent experience,no_enrollment,High School,,6,,,1,78,0.0 +12672,city_114,0.9259999999999999,Male,Has relevent experience,,High School,,17,10/49,Pvt Ltd,2,138,0.0 +18041,city_133,0.742,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,127,0.0 +17767,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,26,0.0 +25434,city_16,0.91,,Has relevent experience,no_enrollment,High School,,19,100-500,Pvt Ltd,1,17,1.0 +11868,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,17,10000+,Pvt Ltd,3,12,0.0 +16131,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,90,0.0 +24474,city_23,0.899,Male,Has relevent experience,no_enrollment,High School,,2,50-99,Funded Startup,1,4,0.0 +20121,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,<1,,,,57,1.0 +30997,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,5000-9999,,>4,80,0.0 +7345,city_50,0.8959999999999999,Male,No relevent experience,Full time course,High School,,4,,,never,188,0.0 +24055,city_149,0.6890000000000001,,Has relevent experience,Full time course,Graduate,STEM,1,,,1,18,1.0 +6265,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Early Stage Startup,1,101,0.0 +9729,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,18,0.0 +19391,city_19,0.682,Female,Has relevent experience,,Graduate,STEM,4,,,3,82,1.0 +25946,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,3,80,0.0 +21803,city_114,0.9259999999999999,Male,No relevent experience,,High School,,2,,,1,120,0.0 +22688,city_128,0.527,,No relevent experience,Full time course,Graduate,STEM,<1,50-99,Pvt Ltd,1,18,0.0 +11609,city_102,0.804,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,33,1.0 +388,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,101,0.0 +13729,city_145,0.555,Male,No relevent experience,Full time course,Graduate,STEM,3,,,2,3,1.0 +8551,city_103,0.92,Female,No relevent experience,no_enrollment,High School,,<1,,,never,182,0.0 +30852,city_98,0.9490000000000001,Male,No relevent experience,no_enrollment,High School,,7,100-500,Pvt Ltd,>4,288,0.0 +3576,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,<1,10000+,Pvt Ltd,1,52,0.0 +27472,city_94,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,92,1.0 +26934,city_114,0.9259999999999999,,Has relevent experience,Part time course,Graduate,STEM,9,<10,Funded Startup,1,67,0.0 +32325,city_143,0.74,,No relevent experience,Full time course,Graduate,STEM,5,,,never,17,1.0 +21860,city_104,0.924,Male,Has relevent experience,no_enrollment,High School,,>20,100-500,Other,>4,6,0.0 +911,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,1,37,1.0 +30107,city_118,0.722,Male,No relevent experience,Part time course,Graduate,STEM,3,100-500,Pvt Ltd,1,55,0.0 +19619,city_93,0.865,,Has relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,1,121,0.0 +3642,city_155,0.556,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,4,1.0 +2943,city_57,0.866,Other,No relevent experience,Full time course,High School,,1,,Pvt Ltd,never,37,0.0 +32885,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,2,7,0.0 +27406,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,STEM,12,10000+,Pvt Ltd,1,50,0.0 +14913,city_114,0.9259999999999999,Female,Has relevent experience,Part time course,Graduate,STEM,4,10/49,Funded Startup,2,214,0.0 +16485,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,1,50-99,Pvt Ltd,,34,0.0 +15812,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,25,0.0 +14059,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,66,0.0 +22215,city_53,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,1,9,1.0 +12739,city_83,0.9229999999999999,,No relevent experience,Full time course,High School,,7,50-99,,,108,0.0 +32384,city_73,0.754,Male,No relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,96,0.0 +28707,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,,Public Sector,1,14,0.0 +10374,city_162,0.767,Male,Has relevent experience,no_enrollment,High School,,12,,,1,68,0.0 +28952,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,3,100-500,Pvt Ltd,1,12,1.0 +21142,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,2,55,0.0 +33099,city_36,0.893,Other,Has relevent experience,no_enrollment,Graduate,STEM,13,1000-4999,Pvt Ltd,4,11,0.0 +8130,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,2,31,0.0 +32813,city_173,0.878,Male,No relevent experience,Full time course,Graduate,Humanities,2,1000-4999,Pvt Ltd,1,17,0.0 +15188,city_103,0.92,Male,Has relevent experience,Part time course,Masters,Humanities,12,5000-9999,NGO,1,30,0.0 +26752,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,10000+,Pvt Ltd,4,17,0.0 +33107,city_71,0.884,,Has relevent experience,Part time course,Masters,STEM,6,10/49,Early Stage Startup,1,70,0.0 +20808,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,2,246,0.0 +12596,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,4,96,1.0 +15505,city_114,0.9259999999999999,,Has relevent experience,Full time course,Graduate,STEM,5,<10,,2,100,0.0 +7238,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,10,,,never,24,1.0 +10507,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,never,250,0.0 +23468,city_142,0.727,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,88,1.0 +9509,city_103,0.92,,Has relevent experience,,,,12,,,3,64,0.0 +33272,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,19,<10,Early Stage Startup,2,24,0.0 +24491,city_141,0.763,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,288,0.0 +6146,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,1,102,0.0 +14794,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,73,0.0 +20578,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,35,1.0 +1890,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,5000-9999,Pvt Ltd,>4,33,0.0 +5483,city_67,0.855,Female,No relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,35,0.0 +10999,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,152,0.0 +31258,city_24,0.698,Male,No relevent experience,no_enrollment,Graduate,No Major,7,100-500,Pvt Ltd,4,5,1.0 +6424,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,176,0.0 +7287,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,STEM,15,100-500,Pvt Ltd,1,330,0.0 +24129,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,never,126,0.0 +27035,city_167,0.9209999999999999,Male,Has relevent experience,Full time course,Masters,STEM,5,100-500,Pvt Ltd,1,10,0.0 +32812,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,52,1.0 +16189,city_103,0.92,,No relevent experience,Full time course,Graduate,Other,7,,,1,110,1.0 +2985,city_55,0.7390000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,4,500-999,Public Sector,never,69,0.0 +25305,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,3,1000-4999,Pvt Ltd,never,60,0.0 +32110,city_10,0.895,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,40,0.0 +23086,city_160,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,19,5000-9999,Public Sector,3,250,0.0 +7211,city_73,0.754,Male,No relevent experience,no_enrollment,High School,,<1,,,never,68,0.0 +1598,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,4,34,1.0 +15798,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,5000-9999,Pvt Ltd,2,30,0.0 +13514,city_67,0.855,Other,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,1,2,0.0 +6301,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,6,,,1,45,0.0 +27497,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,>4,104,0.0 +20072,city_1,0.847,,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Funded Startup,1,23,0.0 +15906,city_21,0.624,Male,No relevent experience,Full time course,High School,,<1,,,never,332,0.0 +15452,city_21,0.624,,No relevent experience,no_enrollment,High School,,<1,,,never,20,1.0 +10895,city_23,0.899,Male,No relevent experience,no_enrollment,Primary School,,<1,,,never,168,0.0 +6983,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Funded Startup,1,68,0.0 +8162,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,,2,111,0.0 +24847,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,25,1.0 +5027,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,78,0.0 +3294,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,109,0.0 +177,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,>4,51,1.0 +7983,city_45,0.89,Male,Has relevent experience,Part time course,High School,,15,1000-4999,Pvt Ltd,>4,15,0.0 +21992,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,2,17,0.0 +17554,city_97,0.925,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,63,0.0 +6925,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,<1,,,1,94,1.0 +20916,city_116,0.743,,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Pvt Ltd,1,64,0.0 +11672,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,1000-4999,Pvt Ltd,2,20,1.0 +19496,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,1,15,0.0 +1836,city_21,0.624,,No relevent experience,no_enrollment,,,1,,,,26,1.0 +18191,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,11,,,never,6,0.0 +1599,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,>4,182,0.0 +10734,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Pvt Ltd,>4,22,0.0 +4050,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,6,,Pvt Ltd,never,71,0.0 +27175,city_25,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Pvt Ltd,1,111,0.0 +6132,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,No Major,17,500-999,Pvt Ltd,1,32,0.0 +32425,city_67,0.855,Female,No relevent experience,Full time course,High School,,2,10000+,,1,6,0.0 +31837,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,21,0.0 +25648,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,3,100-500,Pvt Ltd,2,46,0.0 +24496,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,>4,163,1.0 +1654,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,1,12,0.0 +29783,city_21,0.624,,No relevent experience,Full time course,High School,,3,,,1,35,1.0 +7115,city_173,0.878,,No relevent experience,no_enrollment,Primary School,,4,50-99,,2,8,0.0 +19432,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,>4,21,1.0 +21639,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,2,56,0.0 +17998,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,,,1,30,0.0 +31858,city_160,0.92,Male,No relevent experience,Full time course,Masters,STEM,10,,,1,7,0.0 +6290,city_73,0.754,,Has relevent experience,Part time course,Graduate,STEM,14,10000+,Pvt Ltd,>4,23,0.0 +1538,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,9,0.0 +25431,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,26,0.0 +33055,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,3,40,1.0 +6603,city_100,0.887,,Has relevent experience,Full time course,Masters,STEM,19,50-99,Funded Startup,2,106,0.0 +15741,city_69,0.856,,Has relevent experience,no_enrollment,Graduate,No Major,12,1000-4999,Pvt Ltd,2,314,0.0 +29064,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,1,14,1.0 +2952,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,5,5000-9999,Public Sector,1,111,0.0 +26519,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,3,50,1.0 +25672,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,8,100-500,Pvt Ltd,>4,111,0.0 +9419,city_45,0.89,Male,Has relevent experience,Full time course,Masters,STEM,9,50-99,Pvt Ltd,>4,51,0.0 +1292,city_98,0.9490000000000001,,No relevent experience,no_enrollment,Graduate,STEM,4,,,2,68,1.0 +16815,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,16,0.0 +15661,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,<10,Pvt Ltd,1,6,0.0 +31900,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,2,13,0.0 +24682,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,14,,,4,178,1.0 +1016,city_150,0.698,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,22,0.0 +18448,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,23,0.0 +18974,city_103,0.92,Female,Has relevent experience,Full time course,Graduate,STEM,4,,Public Sector,1,55,1.0 +7029,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,29,1.0 +4097,city_23,0.899,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,1,41,0.0 +3684,city_67,0.855,Male,Has relevent experience,no_enrollment,High School,,5,10/49,Pvt Ltd,2,56,0.0 +18477,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,14,50-99,Funded Startup,3,11,0.0 +179,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,Business Degree,7,1000-4999,Pvt Ltd,>4,79,1.0 +14640,city_90,0.698,Male,No relevent experience,Part time course,Masters,STEM,5,10000+,Public Sector,1,328,1.0 +8150,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,192,0.0 +12801,city_40,0.7759999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,>20,100-500,Public Sector,>4,89,0.0 +15498,city_97,0.925,Male,No relevent experience,Full time course,High School,,1,50-99,Public Sector,1,83,1.0 +32265,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,35,0.0 +759,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,33,0.0 +10951,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,53,0.0 +27890,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,1,,,1,56,1.0 +28329,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,11,,,1,3,1.0 +17247,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,18,,,2,25,0.0 +24459,city_103,0.92,Male,Has relevent experience,Part time course,Masters,STEM,15,500-999,Public Sector,1,10,0.0 +24836,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,,,5,,,never,62,0.0 +16855,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,500-999,Pvt Ltd,>4,40,0.0 +11552,city_45,0.89,Male,Has relevent experience,no_enrollment,High School,,19,<10,Early Stage Startup,>4,46,0.0 +21550,city_20,0.7959999999999999,Male,No relevent experience,no_enrollment,High School,,3,,,2,22,1.0 +4886,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,1,174,0.0 +8070,city_45,0.89,,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,2,51,0.0 +3823,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,1,158,1.0 +26643,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,60,0.0 +11580,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,6,,,never,14,1.0 +4877,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,10,0.0 +26559,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,2,140,0.0 +29347,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Arts,>20,,,1,18,1.0 +13425,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,,1,19,0.0 +2300,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,Humanities,3,50-99,Pvt Ltd,1,82,0.0 +26712,city_16,0.91,,No relevent experience,Full time course,Masters,STEM,9,<10,Pvt Ltd,1,37,0.0 +13354,city_71,0.884,,Has relevent experience,Full time course,Masters,STEM,9,10000+,Pvt Ltd,1,52,0.0 +9043,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,44,1.0 +28934,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,2,19,0.0 +20479,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,,2,13,1.0 +31470,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,5,10/49,Funded Startup,1,24,1.0 +16925,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,>4,312,0.0 +4666,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,20,50-99,Pvt Ltd,2,72,0.0 +26357,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,46,0.0 +15903,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,1,61,0.0 +22783,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,4,264,0.0 +33326,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,21,0.0 +20565,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,10,10/49,Pvt Ltd,1,92,0.0 +16294,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,never,10,0.0 +3501,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,>4,21,0.0 +31294,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10000+,Pvt Ltd,1,9,0.0 +29919,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,4,5000-9999,Pvt Ltd,1,40,1.0 +3615,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,High School,,8,100-500,Pvt Ltd,1,116,0.0 +14592,city_101,0.5579999999999999,,No relevent experience,Full time course,Graduate,STEM,<1,<10,Early Stage Startup,1,53,1.0 +22072,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,218,0.0 +4845,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,19,10000+,Public Sector,1,124,1.0 +27354,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,3,,,1,34,1.0 +14287,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,4,10000+,Pvt Ltd,1,97,0.0 +10544,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,4,4,1.0 +4852,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,11,10000+,Pvt Ltd,>4,2,1.0 +27665,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,2,292,0.0 +6083,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,4,19,1.0 +28524,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,12,1.0 +410,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,2,80,0.0 +1582,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10/49,Early Stage Startup,>4,41,0.0 +23196,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,>4,23,1.0 +32239,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,4,10000+,Pvt Ltd,1,276,0.0 +28687,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,8,1000-4999,Public Sector,3,302,0.0 +4192,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Funded Startup,1,20,0.0 +2014,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,4,44,1.0 +7111,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,2,50-99,Pvt Ltd,1,74,0.0 +1747,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,15,0.0 +9216,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,114,0.0 +4970,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,17,10000+,Pvt Ltd,2,21,0.0 +6438,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,118,1.0 +19341,city_19,0.682,,No relevent experience,Full time course,Graduate,STEM,3,,,,7,1.0 +33186,city_54,0.856,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,1,158,0.0 +15765,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,9,,,1,284,0.0 +19205,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10000+,Pvt Ltd,1,6,0.0 +32007,city_160,0.92,,No relevent experience,Full time course,High School,,2,,,2,110,0.0 +27084,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,9,500-999,Pvt Ltd,>4,52,0.0 +24868,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,1,56,0.0 +8711,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,2,29,1.0 +22283,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,NGO,1,42,0.0 +29004,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,90,0.0 +24881,city_90,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,6,<10,Pvt Ltd,1,46,0.0 +17010,city_103,0.92,Female,Has relevent experience,Part time course,Graduate,STEM,10,1000-4999,,2,37,0.0 +14358,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,58,0.0 +13276,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,69,1.0 +13158,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,<1,,,2,39,0.0 +8074,city_24,0.698,Male,Has relevent experience,no_enrollment,Graduate,Other,2,1000-4999,Pvt Ltd,1,23,0.0 +17601,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,77,0.0 +1286,city_160,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,53,0.0 +21607,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Other,3,114,1.0 +25433,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,2,27,1.0 +18150,city_97,0.925,Male,Has relevent experience,no_enrollment,Primary School,,6,,,>4,28,0.0 +25264,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,15,,Pvt Ltd,1,64,0.0 +26758,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,3,21,1.0 +32466,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,4,108,0.0 +30776,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,38,0.0 +17630,city_129,0.625,,Has relevent experience,Part time course,Graduate,STEM,6,50-99,Pvt Ltd,4,72,0.0 +3459,city_26,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Public Sector,2,73,0.0 +8944,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,4,12,0.0 +4245,city_104,0.924,Male,No relevent experience,no_enrollment,Graduate,Arts,14,,,4,56,0.0 +8568,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,26,0.0 +30944,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,54,0.0 +7168,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,>20,50-99,Pvt Ltd,3,14,0.0 +31475,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,77,0.0 +3715,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,232,1.0 +30039,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,126,0.0 +8746,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,2,20,0.0 +30417,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,36,0.0 +14244,city_103,0.92,Male,No relevent experience,Full time course,High School,,5,50-99,NGO,1,104,0.0 +25944,city_104,0.924,Male,No relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,20,0.0 +24707,city_23,0.899,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Early Stage Startup,1,15,0.0 +14278,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,3,44,0.0 +19667,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,1,46,0.0 +15131,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,<1,,,never,38,0.0 +11206,city_55,0.7390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,NGO,1,278,0.0 +10366,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,17,,,>4,23,0.0 +23156,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,,10000+,Pvt Ltd,1,83,0.0 +15898,city_100,0.887,,Has relevent experience,no_enrollment,Graduate,Arts,4,10/49,,2,33,1.0 +23886,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,4,,,2,112,1.0 +8969,city_149,0.6890000000000001,,Has relevent experience,,Graduate,STEM,9,50-99,Early Stage Startup,1,63,0.0 +29587,city_103,0.92,,Has relevent experience,no_enrollment,High School,,9,1000-4999,Pvt Ltd,2,3,0.0 +27558,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,2,224,1.0 +28691,city_165,0.903,Female,Has relevent experience,no_enrollment,Graduate,Humanities,1,100-500,Pvt Ltd,never,5,0.0 +31990,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,1000-4999,Public Sector,>4,50,0.0 +16933,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,2,184,0.0 +9058,city_11,0.55,Male,Has relevent experience,no_enrollment,Primary School,,3,50-99,Pvt Ltd,1,12,0.0 +9322,city_158,0.7659999999999999,,Has relevent experience,Full time course,Graduate,STEM,8,100-500,Pvt Ltd,2,12,0.0 +1267,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Pvt Ltd,1,16,0.0 +18009,city_103,0.92,,No relevent experience,,,,<1,,,,43,0.0 +21007,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,135,0.0 +9857,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,1,86,0.0 +14404,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Public Sector,1,158,0.0 +33171,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Funded Startup,1,44,1.0 +31614,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,102,0.0 +21697,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,13,,,3,11,0.0 +4522,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,>4,46,0.0 +1418,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,2,56,0.0 +11001,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,2,5000-9999,Pvt Ltd,1,53,0.0 +1315,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,2,188,1.0 +21547,city_136,0.897,Male,No relevent experience,no_enrollment,Primary School,,4,,,never,26,0.0 +3368,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,1,107,0.0 +1264,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,17,0.0 +9751,city_97,0.925,,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,,42,0.0 +7014,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Public Sector,1,83,0.0 +20076,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,5,,,never,3,0.0 +8018,city_24,0.698,Male,No relevent experience,Full time course,Graduate,STEM,12,10000+,Public Sector,2,67,1.0 +16520,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,4,10000+,Pvt Ltd,1,4,0.0 +1577,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,6,,,1,15,1.0 +31927,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,Pvt Ltd,never,26,1.0 +19972,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,55,0.0 +23459,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Graduate,STEM,6,,,never,50,0.0 +6521,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Early Stage Startup,3,12,1.0 +29621,city_67,0.855,Male,Has relevent experience,Part time course,High School,,10,,,1,16,0.0 +30675,city_162,0.767,Male,Has relevent experience,Part time course,,,2,<10,Early Stage Startup,1,74,1.0 +9987,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,2,34,0.0 +22612,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,>4,35,0.0 +1403,city_1,0.847,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Pvt Ltd,4,9,0.0 +1510,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,No Major,>20,5000-9999,Pvt Ltd,>4,4,0.0 +25645,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,1,30,0.0 +12680,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,8,<10,Funded Startup,3,5,0.0 +9734,city_103,0.92,,No relevent experience,Full time course,High School,,<1,,,never,20,0.0 +22623,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,21,0.0 +1549,city_152,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,2,89,1.0 +13291,city_74,0.579,,Has relevent experience,no_enrollment,Graduate,STEM,<1,10/49,Pvt Ltd,1,49,1.0 +17541,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,1,,,1,52,0.0 +15010,city_18,0.8240000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,>4,28,1.0 +11999,city_36,0.893,,No relevent experience,Full time course,Graduate,STEM,3,1000-4999,Pvt Ltd,,16,1.0 +21570,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,52,1.0 +15990,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,168,1.0 +19147,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,3,,,,30,0.0 +21580,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,3,28,1.0 +10104,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,15,<10,Pvt Ltd,1,75,0.0 +12250,city_93,0.865,Male,Has relevent experience,Full time course,High School,,6,50-99,Funded Startup,1,50,0.0 +349,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,21,0.0 +3128,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,16,,,>4,60,0.0 +4823,city_123,0.738,,Has relevent experience,no_enrollment,Graduate,STEM,,100-500,Pvt Ltd,,9,1.0 +21770,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,4,100-500,,1,32,0.0 +9236,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Funded Startup,3,136,0.0 +31412,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,23,0.0 +4648,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,108,0.0 +3611,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,3,64,0.0 +17417,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Public Sector,2,8,0.0 +19194,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,>4,52,0.0 +8940,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,19,0.0 +6354,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,>4,78,0.0 +26855,city_136,0.897,Male,No relevent experience,Full time course,Masters,STEM,3,,,1,32,1.0 +24074,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,,,1,63,0.0 +21088,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,,never,218,0.0 +13332,city_11,0.55,Male,Has relevent experience,Part time course,Graduate,STEM,4,<10,NGO,1,25,1.0 +85,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Early Stage Startup,1,28,1.0 +31548,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Pvt Ltd,2,174,0.0 +25460,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,>4,22,0.0 +8745,city_53,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Pvt Ltd,>4,49,0.0 +10954,city_83,0.9229999999999999,,No relevent experience,Full time course,High School,,4,,,,55,0.0 +186,city_118,0.722,Male,No relevent experience,Full time course,Graduate,Humanities,6,,,2,162,0.0 +19671,city_73,0.754,Male,Has relevent experience,Full time course,Graduate,STEM,16,1000-4999,Pvt Ltd,never,29,1.0 +32078,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Funded Startup,3,23,0.0 +31407,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,141,0.0 +10982,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,10000+,Pvt Ltd,2,70,0.0 +23961,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,1,46,0.0 +12937,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,17,,,2,10,1.0 +14861,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,12,,,>4,30,1.0 +19309,city_46,0.762,,Has relevent experience,Part time course,Graduate,STEM,10,100-500,Pvt Ltd,2,8,0.0 +2424,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,6,500-999,Public Sector,3,34,0.0 +28100,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,18,10000+,Pvt Ltd,2,6,0.0 +9010,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Funded Startup,>4,138,0.0 +11363,city_73,0.754,,No relevent experience,Part time course,Masters,STEM,>20,,,1,74,1.0 +30456,city_78,0.579,,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,45,1.0 +12597,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,Humanities,12,50-99,Public Sector,>4,22,0.0 +31163,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,7,10/49,Pvt Ltd,4,78,1.0 +32236,city_21,0.624,,No relevent experience,Full time course,High School,,6,,,1,16,1.0 +32008,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Funded Startup,2,44,0.0 +17823,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,Pvt Ltd,3,56,0.0 +32639,city_160,0.92,Male,No relevent experience,no_enrollment,Primary School,,1,,,never,22,0.0 +23142,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,1,3,0.0 +15252,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,3,0.0 +16316,city_162,0.767,,Has relevent experience,Full time course,Graduate,STEM,>20,100-500,Pvt Ltd,>4,46,0.0 +21664,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,28,1.0 +26644,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,1000-4999,Pvt Ltd,1,202,0.0 +27985,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Public Sector,2,12,0.0 +30438,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,100-500,Pvt Ltd,>4,87,0.0 +22322,city_75,0.9390000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,13,500-999,Pvt Ltd,1,22,0.0 +15332,city_73,0.754,Male,Has relevent experience,no_enrollment,High School,,7,,,never,4,0.0 +10341,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,<10,Pvt Ltd,>4,13,0.0 +8771,city_73,0.754,,No relevent experience,Full time course,Graduate,STEM,7,,,2,14,1.0 +23480,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,never,120,0.0 +20654,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,Pvt Ltd,2,42,1.0 +17587,city_103,0.92,Male,No relevent experience,no_enrollment,,,1,,,never,6,0.0 +27632,city_53,0.74,,Has relevent experience,no_enrollment,Graduate,No Major,10,<10,Early Stage Startup,1,52,0.0 +20715,city_136,0.897,,No relevent experience,Full time course,Graduate,No Major,2,1000-4999,Pvt Ltd,1,68,0.0 +14779,city_65,0.802,Male,Has relevent experience,Full time course,Graduate,STEM,17,500-999,,1,13,0.0 +27534,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,,>20,10/49,Pvt Ltd,3,16,0.0 +11066,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,10,10/49,Pvt Ltd,never,4,0.0 +3385,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,2,40,1.0 +3440,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,3,50-99,Pvt Ltd,1,24,0.0 +22209,city_150,0.698,Male,No relevent experience,Part time course,Graduate,STEM,3,,,never,54,1.0 +19620,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,15,<10,Pvt Ltd,>4,76,0.0 +3804,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,23,0.0 +21993,city_136,0.897,,No relevent experience,Full time course,Graduate,No Major,3,<10,Pvt Ltd,1,77,0.0 +21677,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Pvt Ltd,2,47,0.0 +17918,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,>4,41,0.0 +9713,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,22,1.0 +18116,city_99,0.915,Male,No relevent experience,no_enrollment,High School,,4,,,never,12,0.0 +14402,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,60,0.0 +6678,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,16,500-999,Pvt Ltd,2,13,1.0 +1689,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,3,41,0.0 +24909,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,10,50-99,Pvt Ltd,2,31,1.0 +18457,city_44,0.725,Male,Has relevent experience,,Graduate,STEM,6,<10,Pvt Ltd,3,13,0.0 +30960,city_162,0.767,,Has relevent experience,,Graduate,STEM,6,5000-9999,Pvt Ltd,1,77,0.0 +29597,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,55,1.0 +10281,city_16,0.91,Male,No relevent experience,Part time course,Graduate,STEM,12,,,2,111,1.0 +28522,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,4,20,0.0 +10463,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,87,1.0 +25496,city_103,0.92,,Has relevent experience,Part time course,Masters,STEM,>20,,,1,39,1.0 +12475,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,8,,,never,24,0.0 +17315,city_90,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,9,<10,NGO,1,282,0.0 +15448,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,11,500-999,,1,166,0.0 +31812,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,1,84,1.0 +18514,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,Pvt Ltd,never,54,1.0 +15287,city_160,0.92,Female,Has relevent experience,no_enrollment,Primary School,,10,50-99,Early Stage Startup,1,33,0.0 +24012,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,6,,,1,92,1.0 +19743,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,6,500-999,Pvt Ltd,1,41,0.0 +15054,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,5,10000+,Pvt Ltd,3,56,1.0 +21157,city_99,0.915,Male,No relevent experience,no_enrollment,High School,,8,5000-9999,Public Sector,1,42,0.0 +22481,city_36,0.893,Male,Has relevent experience,no_enrollment,High School,,20,,,1,167,0.0 +1862,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,Early Stage Startup,1,122,0.0 +27541,city_64,0.6659999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,2,44,1.0 +10396,city_160,0.92,,Has relevent experience,no_enrollment,,,4,100-500,Pvt Ltd,1,206,0.0 +17553,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,2,102,0.0 +18496,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,14,50-99,Pvt Ltd,3,84,0.0 +19688,city_100,0.887,,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Public Sector,2,34,0.0 +13785,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,1,72,0.0 +19848,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,11,1.0 +10833,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,>20,10/49,Pvt Ltd,1,36,0.0 +14327,city_74,0.579,Male,Has relevent experience,Full time course,Graduate,STEM,1,,,1,23,0.0 +5401,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,4,<10,,1,45,0.0 +5946,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Funded Startup,1,70,0.0 +1697,city_160,0.92,Male,Has relevent experience,Full time course,High School,,8,100-500,Pvt Ltd,1,13,0.0 +29776,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Funded Startup,2,78,1.0 +32417,city_21,0.624,Male,No relevent experience,Full time course,High School,,6,,,1,9,1.0 +5168,city_10,0.895,Male,Has relevent experience,Part time course,Graduate,STEM,15,100-500,Pvt Ltd,1,14,0.0 +2888,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,never,80,0.0 +6530,city_162,0.767,,Has relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,1,13,0.0 +14377,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Early Stage Startup,4,18,0.0 +15722,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,178,0.0 +24799,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,>20,10000+,Pvt Ltd,>4,278,0.0 +16894,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,1,31,0.0 +14969,city_90,0.698,,No relevent experience,Full time course,High School,,7,,,1,114,1.0 +4798,city_160,0.92,Female,No relevent experience,no_enrollment,Graduate,Arts,1,,,1,29,0.0 +32552,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,3,138,0.0 +15819,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,>20,10000+,Pvt Ltd,3,222,0.0 +23283,city_123,0.738,,Has relevent experience,Full time course,Graduate,Other,1,5000-9999,Pvt Ltd,1,90,0.0 +29639,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,6,1000-4999,Pvt Ltd,1,130,1.0 +23466,city_126,0.479,,No relevent experience,no_enrollment,,,6,,,never,113,1.0 +31263,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,8,500-999,Pvt Ltd,2,69,0.0 +7413,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,4,,,1,126,1.0 +7766,city_71,0.884,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,2,54,0.0 +25861,city_99,0.915,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,14,0.0 +15331,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,No Major,<1,,,1,90,0.0 +31538,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,4,19,0.0 +9238,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,6,1000-4999,,3,30,0.0 +21816,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Public Sector,3,52,0.0 +10969,city_160,0.92,Male,No relevent experience,Full time course,High School,,5,100-500,Pvt Ltd,1,112,0.0 +3910,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,4,10/49,,1,29,0.0 +18212,city_91,0.691,,No relevent experience,no_enrollment,Graduate,Other,3,,,2,46,0.0 +11528,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,18,100-500,Pvt Ltd,>4,104,0.0 +25877,city_67,0.855,Female,No relevent experience,no_enrollment,Masters,Humanities,2,,,never,111,0.0 +26911,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,,133,0.0 +3325,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Business Degree,4,50-99,Pvt Ltd,1,4,0.0 +24311,city_23,0.899,,No relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,,1,57,1.0 +3477,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,500-999,NGO,>4,36,0.0 +27283,city_180,0.698,,No relevent experience,no_enrollment,Graduate,STEM,2,,,never,13,0.0 +19012,city_116,0.743,Male,Has relevent experience,Full time course,High School,,7,50-99,NGO,1,29,0.0 +9261,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,3,17,1.0 +6211,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Funded Startup,1,42,0.0 +29540,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,1,98,0.0 +7469,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Public Sector,never,5,0.0 +3952,city_136,0.897,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Public Sector,never,29,0.0 +23951,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,15,1.0 +3399,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,4,67,1.0 +28759,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,2,153,1.0 +8580,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Funded Startup,1,23,0.0 +10866,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,24,0.0 +26266,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Funded Startup,1,55,0.0 +996,city_67,0.855,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,>4,52,0.0 +26929,city_138,0.836,Male,Has relevent experience,no_enrollment,High School,,15,10000+,Pvt Ltd,2,146,0.0 +11368,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,2,82,0.0 +30909,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,146,1.0 +2612,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,77,0.0 +23974,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,Pvt Ltd,2,51,0.0 +16314,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,,1,36,0.0 +27981,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,>4,15,0.0 +31356,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,1,4,0.0 +16077,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,1,57,0.0 +24165,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,2,154,1.0 +29771,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,,,2,30,1.0 +28053,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,34,1.0 +32251,city_67,0.855,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,Public Sector,>4,99,0.0 +9964,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,100-500,NGO,1,7,0.0 +3152,city_116,0.743,Male,No relevent experience,Full time course,Graduate,STEM,5,<10,Early Stage Startup,1,304,0.0 +26876,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,4,72,0.0 +29668,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,44,1.0 +28234,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,27,0.0 +31712,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,11,100-500,Pvt Ltd,3,114,0.0 +14558,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,164,0.0 +31741,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Pvt Ltd,2,42,0.0 +17758,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,6,1.0 +27739,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,9,,,1,73,0.0 +5953,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Pvt Ltd,2,50,0.0 +30414,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,23,1.0 +20877,city_136,0.897,,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,,1,3,0.0 +10535,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,5,<10,Pvt Ltd,1,27,0.0 +24044,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,264,1.0 +5284,city_136,0.897,,Has relevent experience,no_enrollment,,,>20,,,>4,14,0.0 +19969,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,32,1.0 +17533,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,36,0.0 +6664,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,,4,80,0.0 +8993,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,2,32,1.0 +30971,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,11,,,1,62,1.0 +32591,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,13,,,1,23,0.0 +11689,city_136,0.897,Male,No relevent experience,Full time course,Primary School,,2,,,never,22,0.0 +30536,city_136,0.897,,Has relevent experience,Part time course,Masters,STEM,8,<10,Pvt Ltd,2,34,0.0 +27123,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,14,0.0 +6453,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Funded Startup,2,68,0.0 +32815,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,>4,108,1.0 +30360,city_70,0.698,,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,28,1.0 +4317,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,10,,Pvt Ltd,never,41,1.0 +1688,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,never,53,0.0 +4232,city_136,0.897,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Public Sector,>4,90,0.0 +27733,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,54,1.0 +18299,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,,1,41,1.0 +1105,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,34,0.0 +12827,city_136,0.897,Male,No relevent experience,Part time course,Graduate,STEM,7,1000-4999,Public Sector,2,53,0.0 +18345,city_46,0.762,,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,65,1.0 +22043,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,STEM,7,,,1,48,0.0 +12551,city_21,0.624,,Has relevent experience,Full time course,Graduate,,6,10000+,Pvt Ltd,1,82,1.0 +31838,city_67,0.855,Female,Has relevent experience,no_enrollment,,,8,100-500,,1,70,1.0 +6445,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,>4,148,0.0 +12415,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,16,<10,Pvt Ltd,>4,15,0.0 +30999,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,5000-9999,Pvt Ltd,3,55,1.0 +29730,city_91,0.691,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10/49,Pvt Ltd,3,35,0.0 +8663,city_40,0.7759999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,10,10/49,Pvt Ltd,>4,13,0.0 +15744,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,8,50-99,Funded Startup,1,43,0.0 +19466,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,11,,,>4,71,1.0 +2760,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,1,500-999,Pvt Ltd,1,9,1.0 +11042,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Funded Startup,1,8,1.0 +18204,city_162,0.767,Male,Has relevent experience,Part time course,Graduate,STEM,<1,,,1,54,1.0 +19982,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,76,0.0 +7405,city_36,0.893,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,23,0.0 +14689,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,5,100-500,Pvt Ltd,1,88,0.0 +21869,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,4,21,0.0 +29481,city_67,0.855,Male,No relevent experience,no_enrollment,,,7,,,1,80,1.0 +25361,city_105,0.794,Female,Has relevent experience,no_enrollment,Masters,STEM,14,<10,Pvt Ltd,4,92,0.0 +31200,city_149,0.6890000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,10,,,2,36,0.0 +25575,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,182,1.0 +23146,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10000+,Pvt Ltd,1,45,0.0 +32089,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,5000-9999,Pvt Ltd,2,20,0.0 +1945,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,2,19,0.0 +13316,city_11,0.55,Female,Has relevent experience,Full time course,Masters,STEM,15,,,2,55,0.0 +21861,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,6,1000-4999,Pvt Ltd,4,35,1.0 +3839,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Public Sector,2,70,0.0 +26060,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,4,,,1,24,1.0 +28408,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,3,,Pvt Ltd,1,40,0.0 +6772,city_71,0.884,,Has relevent experience,Part time course,Graduate,STEM,15,100-500,Pvt Ltd,>4,64,0.0 +11044,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,5,1000-4999,Pvt Ltd,3,66,0.0 +7227,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,<10,Pvt Ltd,3,49,0.0 +20719,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,9,,,,48,0.0 +11421,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,2,10,1.0 +32997,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,54,0.0 +14641,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,2,140,0.0 +19656,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,1,220,0.0 +21347,city_21,0.624,,Has relevent experience,,Graduate,STEM,7,50-99,Pvt Ltd,1,18,0.0 +9190,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,never,108,0.0 +5706,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,Pvt Ltd,1,196,0.0 +6145,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,,2,256,0.0 +25685,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,Early Stage Startup,2,52,1.0 +975,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Other,2,19,0.0 +3497,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,23,0.0 +13054,city_167,0.9209999999999999,Female,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,1,308,0.0 +16453,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Masters,Business Degree,1,100-500,Funded Startup,1,96,0.0 +8985,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,222,0.0 +15157,city_61,0.9129999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,7,<10,,1,10,0.0 +27343,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,13,50-99,Pvt Ltd,>4,83,0.0 +10438,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,72,1.0 +29222,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,122,1.0 +32906,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,7,10000+,Pvt Ltd,3,25,0.0 +9626,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,2,100-500,Pvt Ltd,1,63,0.0 +11270,city_46,0.762,Male,Has relevent experience,Part time course,Masters,STEM,9,10000+,Pvt Ltd,1,67,1.0 +24393,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,1,21,1.0 +25868,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,50,1.0 +30072,city_173,0.878,,Has relevent experience,no_enrollment,High School,,10,,,2,66,1.0 +29949,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Primary School,,2,,,never,15,0.0 +6307,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Masters,STEM,12,,,never,14,0.0 +14595,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,5,5000-9999,Pvt Ltd,1,74,1.0 +18855,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,Pvt Ltd,>4,63,0.0 +15356,city_128,0.527,,No relevent experience,Full time course,High School,,2,,,1,300,1.0 +15091,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,28,0.0 +4851,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,STEM,>20,,,>4,11,0.0 +31195,city_16,0.91,Male,No relevent experience,Part time course,Graduate,STEM,2,,,1,13,0.0 +27917,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,never,39,0.0 +13438,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,,never,166,1.0 +8414,city_160,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,2,24,0.0 +10228,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Other,12,10/49,Pvt Ltd,1,28,0.0 +10482,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,Other,1,40,0.0 +20519,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,5000-9999,Pvt Ltd,3,42,0.0 +15224,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,28,0.0 +26634,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,,1,254,0.0 +20678,city_16,0.91,,No relevent experience,no_enrollment,Graduate,No Major,3,<10,Pvt Ltd,2,24,0.0 +15449,city_141,0.763,Male,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,,1,110,0.0 +15409,city_11,0.55,Female,Has relevent experience,Full time course,Masters,STEM,4,50-99,Funded Startup,1,56,0.0 +25211,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,70,0.0 +31905,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,6,10000+,Pvt Ltd,1,57,0.0 +16344,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,4,43,0.0 +6855,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,3,326,0.0 +10532,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,4,<10,Pvt Ltd,1,32,1.0 +223,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,STEM,17,,,3,48,0.0 +12921,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,2,1000-4999,Pvt Ltd,1,75,1.0 +21376,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,1,42,0.0 +10150,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,2,166,0.0 +30268,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,No Major,<1,,,1,10,1.0 +6001,city_80,0.847,Male,No relevent experience,no_enrollment,High School,,1,,,never,58,0.0 +10604,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,1,20,0.0 +16220,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,5000-9999,Pvt Ltd,2,18,0.0 +10845,city_116,0.743,,No relevent experience,Full time course,Masters,STEM,6,10/49,Pvt Ltd,2,79,0.0 +4376,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,4,,,never,166,0.0 +32168,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,42,0.0 +22610,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,never,51,1.0 +19156,city_23,0.899,,No relevent experience,no_enrollment,Graduate,STEM,5,100-500,Public Sector,>4,34,0.0 +10220,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,270,0.0 +30291,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,1,<10,Pvt Ltd,1,35,1.0 +27318,city_162,0.767,Male,Has relevent experience,Part time course,Graduate,STEM,7,50-99,Funded Startup,1,57,0.0 +29684,city_99,0.915,,Has relevent experience,no_enrollment,Graduate,STEM,2,5000-9999,Pvt Ltd,1,30,0.0 +26968,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,306,0.0 +18702,city_80,0.847,Male,No relevent experience,,,,2,,,never,162,0.0 +17031,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,1,43,0.0 +1113,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,2,53,0.0 +9937,city_160,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,4,,,1,28,1.0 +20038,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,,>4,11,0.0 +30932,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Pvt Ltd,never,294,0.0 +5531,city_116,0.743,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,,,never,24,1.0 +1882,city_97,0.925,,No relevent experience,Full time course,High School,,11,<10,Early Stage Startup,1,28,0.0 +27677,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,62,0.0 +163,city_131,0.68,,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,>4,6,0.0 +23862,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,46,1.0 +30668,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,106,0.0 +3415,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,48,0.0 +21886,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,100-500,Pvt Ltd,2,48,0.0 +23798,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,106,0.0 +4892,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,5000-9999,Pvt Ltd,never,174,0.0 +29882,city_138,0.836,,No relevent experience,Full time course,Graduate,STEM,3,,,never,48,0.0 +7702,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Funded Startup,1,21,0.0 +9329,city_97,0.925,Male,Has relevent experience,no_enrollment,High School,,11,<10,Pvt Ltd,>4,44,0.0 +21438,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,9,1.0 +1856,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,5,5000-9999,Pvt Ltd,1,66,0.0 +31902,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,105,0.0 +22973,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,19,100-500,Pvt Ltd,>4,33,0.0 +30510,city_16,0.91,,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,1,114,1.0 +14114,city_162,0.767,Male,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,2,114,0.0 +10457,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,4,,,never,149,0.0 +23747,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,130,1.0 +9278,city_21,0.624,,Has relevent experience,,Graduate,STEM,6,1000-4999,Pvt Ltd,1,66,0.0 +9281,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,4,50-99,Pvt Ltd,1,85,1.0 +28443,city_21,0.624,Male,Has relevent experience,,Masters,STEM,9,100-500,Pvt Ltd,2,43,0.0 +19246,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,never,192,0.0 +8328,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,>4,9,1.0 +13479,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,50-99,Pvt Ltd,1,31,0.0 +9830,city_128,0.527,,No relevent experience,no_enrollment,Masters,STEM,<1,,,1,28,1.0 +28218,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,2,,,never,14,0.0 +11660,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,298,1.0 +19615,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,STEM,5,,NGO,1,53,0.0 +23830,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,17,1000-4999,Pvt Ltd,>4,24,1.0 +28183,city_160,0.92,,No relevent experience,Full time course,High School,,6,,,1,20,1.0 +2402,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Public Sector,1,156,0.0 +22374,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,11,1000-4999,Pvt Ltd,2,10,1.0 +23693,city_74,0.579,,No relevent experience,Full time course,Graduate,STEM,3,<10,Pvt Ltd,1,24,1.0 +16803,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,4,5000-9999,Public Sector,1,54,0.0 +29960,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,never,48,1.0 +30539,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Public Sector,1,22,0.0 +14696,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,,8,1.0 +710,city_10,0.895,,No relevent experience,no_enrollment,Phd,STEM,8,1000-4999,Public Sector,>4,206,0.0 +29224,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,1,,,1,20,0.0 +25239,city_141,0.763,,Has relevent experience,Full time course,Graduate,STEM,7,50-99,,>4,117,0.0 +5273,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,1,,,1,76,0.0 +14661,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,5,,,never,51,1.0 +32343,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,83,0.0 +14316,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,44,1.0 +1321,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,20,0.0 +19067,city_136,0.897,,No relevent experience,Full time course,Masters,STEM,1,,,never,16,0.0 +20229,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,17,,,>4,72,0.0 +32893,city_19,0.682,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,4,160,0.0 +6458,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Early Stage Startup,>4,46,1.0 +18294,city_46,0.762,Male,No relevent experience,no_enrollment,Graduate,STEM,2,100-500,Funded Startup,2,192,0.0 +6707,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,>4,216,0.0 +5094,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,53,0.0 +1092,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,322,0.0 +5532,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,>4,46,0.0 +18248,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,121,0.0 +14546,city_71,0.884,Male,Has relevent experience,Part time course,Masters,STEM,6,<10,Funded Startup,1,70,0.0 +29385,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,1,16,0.0 +23119,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,9,,,never,67,1.0 +12888,city_141,0.763,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,never,76,1.0 +5615,city_19,0.682,Male,No relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,11,0.0 +27291,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,9,,,1,23,1.0 +14824,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,29,0.0 +7783,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,2,240,1.0 +28026,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,never,61,1.0 +17463,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,1,18,0.0 +24675,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,,,2,,,never,17,0.0 +23376,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10/49,Early Stage Startup,2,167,1.0 +14983,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Early Stage Startup,1,23,0.0 +20007,city_10,0.895,Male,Has relevent experience,no_enrollment,High School,,15,10/49,Pvt Ltd,>4,46,0.0 +4872,city_78,0.579,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,,,>4,17,0.0 +27022,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,,22,0.0 +16098,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,103,0.0 +31273,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,2,36,0.0 +18507,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10/49,Pvt Ltd,2,102,0.0 +30726,city_16,0.91,,No relevent experience,Part time course,Graduate,STEM,<1,10000+,Pvt Ltd,2,39,0.0 +26988,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Public Sector,>4,57,1.0 +10660,city_123,0.738,,Has relevent experience,Full time course,,,5,,,3,78,0.0 +2700,city_145,0.555,,No relevent experience,Full time course,Graduate,STEM,,10/49,Pvt Ltd,4,83,1.0 +15375,city_89,0.925,,No relevent experience,no_enrollment,Masters,STEM,4,1000-4999,,2,43,0.0 +8346,city_142,0.727,Female,No relevent experience,Part time course,Masters,Business Degree,2,,,1,87,0.0 +27144,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,58,0.0 +7536,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,never,20,0.0 +32062,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Funded Startup,1,34,0.0 +23467,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,7,1000-4999,Pvt Ltd,1,50,0.0 +11415,city_43,0.516,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,2,22,1.0 +32020,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,9,100-500,Funded Startup,1,36,1.0 +17565,city_46,0.762,,No relevent experience,no_enrollment,Graduate,STEM,<1,1000-4999,Pvt Ltd,1,26,1.0 +10512,city_116,0.743,,Has relevent experience,Full time course,Masters,STEM,15,<10,Pvt Ltd,1,38,1.0 +26324,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,2,0.0 +32803,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,10,10000+,NGO,>4,17,0.0 +4107,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,,2,25,0.0 +25153,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,<1,100-500,NGO,1,256,0.0 +15416,city_36,0.893,Male,No relevent experience,no_enrollment,Masters,Business Degree,11,100-500,Pvt Ltd,1,90,0.0 +12119,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,>4,14,0.0 +1637,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,3,,,1,29,1.0 +19781,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,1,13,0.0 +11362,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,17,,,3,11,1.0 +20112,city_103,0.92,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,5000-9999,NGO,1,104,1.0 +22736,city_23,0.899,Male,No relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,>4,13,0.0 +11350,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,6,50-99,Pvt Ltd,3,18,1.0 +22282,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,NGO,3,45,0.0 +1897,city_114,0.9259999999999999,Male,No relevent experience,,,,7,,,1,22,0.0 +20282,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,4,,,never,13,0.0 +26342,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,1,30,0.0 +6459,city_19,0.682,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,71,0.0 +20315,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,5,,,4,163,0.0 +12006,city_149,0.6890000000000001,,No relevent experience,Part time course,Graduate,STEM,2,,,1,23,1.0 +20762,city_11,0.55,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,2,0.0 +24087,city_13,0.8270000000000001,,Has relevent experience,no_enrollment,Masters,STEM,20,10/49,Pvt Ltd,,17,0.0 +1057,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,16,1.0 +16320,city_21,0.624,Male,No relevent experience,,Graduate,STEM,6,500-999,,1,99,0.0 +17963,city_16,0.91,,No relevent experience,no_enrollment,High School,,4,,,never,150,0.0 +8718,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,2,53,0.0 +7921,city_16,0.91,,No relevent experience,Part time course,Graduate,STEM,5,50-99,,1,82,0.0 +24775,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,13,1.0 +28487,city_21,0.624,,No relevent experience,no_enrollment,High School,,2,,,never,104,1.0 +19676,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,1,87,1.0 +32984,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,300,0.0 +16240,city_160,0.92,Female,Has relevent experience,Part time course,Graduate,STEM,8,,,2,23,1.0 +8123,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,1,47,0.0 +25378,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,1000-4999,Pvt Ltd,never,99,0.0 +31910,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,18,10000+,Pvt Ltd,>4,20,0.0 +30598,city_28,0.9390000000000001,Male,No relevent experience,Full time course,High School,,9,,,1,48,0.0 +33167,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10/49,Pvt Ltd,1,194,1.0 +30313,city_159,0.843,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,1,77,1.0 +2316,city_11,0.55,Male,No relevent experience,,,,4,,,1,63,1.0 +32651,city_116,0.743,Male,Has relevent experience,Full time course,Graduate,STEM,7,50-99,Funded Startup,1,15,0.0 +25190,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,12,10/49,,1,24,0.0 +13814,city_21,0.624,Female,No relevent experience,Full time course,Graduate,STEM,2,,,1,21,1.0 +16059,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,2,10/49,Pvt Ltd,1,70,0.0 +32143,city_36,0.893,Female,No relevent experience,Full time course,High School,,2,100-500,Public Sector,1,32,0.0 +22535,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,37,0.0 +312,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,25,0.0 +20684,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,3,,,2,134,0.0 +15650,city_26,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,5,50-99,Pvt Ltd,1,24,0.0 +23212,city_7,0.647,Male,No relevent experience,no_enrollment,Graduate,No Major,2,,,1,18,0.0 +16201,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,10,50-99,,4,30,0.0 +10398,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,NGO,1,22,0.0 +11020,city_46,0.762,,No relevent experience,Full time course,,,8,<10,Early Stage Startup,1,53,1.0 +5609,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,10/49,Pvt Ltd,1,26,1.0 +15994,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,>4,10,0.0 +5465,city_16,0.91,Female,No relevent experience,no_enrollment,Graduate,Humanities,<1,10/49,Pvt Ltd,1,59,0.0 +8393,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,39,0.0 +8649,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,STEM,5,50-99,Funded Startup,2,22,0.0 +25985,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,>20,50-99,Funded Startup,>4,308,0.0 +5196,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,2,77,1.0 +17039,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,High School,,4,100-500,Funded Startup,1,49,0.0 +14320,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,8,,Public Sector,1,196,0.0 +8348,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,9,500-999,Pvt Ltd,>4,272,0.0 +30446,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,10000+,Pvt Ltd,1,53,0.0 +15480,city_23,0.899,,No relevent experience,Part time course,High School,,4,,,1,110,0.0 +1059,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,3,226,0.0 +23217,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,11,10/49,Pvt Ltd,>4,34,0.0 +13118,city_173,0.878,Male,Has relevent experience,no_enrollment,Phd,Other,>20,100-500,Funded Startup,1,8,0.0 +18461,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,1,38,0.0 +32044,city_21,0.624,,Has relevent experience,,Graduate,STEM,8,10000+,Pvt Ltd,2,190,1.0 +10815,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Other,1,51,0.0 +16559,city_152,0.698,Male,No relevent experience,no_enrollment,High School,,9,,,never,22,0.0 +21346,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Early Stage Startup,1,116,1.0 +16769,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,67,0.0 +3421,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,2,18,1.0 +5851,city_21,0.624,Male,Has relevent experience,Full time course,High School,,5,,Pvt Ltd,never,17,0.0 +19741,city_61,0.9129999999999999,Male,No relevent experience,Full time course,Graduate,STEM,3,,,3,75,0.0 +13840,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,10000+,Pvt Ltd,1,166,0.0 +8460,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Pvt Ltd,1,74,0.0 +27074,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Public Sector,2,33,0.0 +3652,city_142,0.727,Male,Has relevent experience,no_enrollment,Masters,Arts,3,1000-4999,,1,46,1.0 +6644,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,,,4,20,1.0 +15363,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Other,14,,,1,50,1.0 +3835,city_41,0.8270000000000001,,Has relevent experience,Part time course,Masters,STEM,2,,,never,32,0.0 +3490,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Funded Startup,2,70,0.0 +13432,city_19,0.682,,No relevent experience,Full time course,,,3,5000-9999,Pvt Ltd,never,29,0.0 +22259,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,25,1.0 +3454,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,Public Sector,3,196,0.0 +6152,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,Arts,17,50-99,Pvt Ltd,1,23,0.0 +21267,city_160,0.92,,Has relevent experience,Full time course,High School,,>20,<10,Early Stage Startup,1,188,0.0 +18034,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Public Sector,1,58,0.0 +9998,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10/49,Pvt Ltd,4,128,0.0 +5637,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,1,4,1.0 +30755,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,1,50-99,Pvt Ltd,1,20,0.0 +2876,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,29,0.0 +12476,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,,,10,50-99,Pvt Ltd,1,24,0.0 +15462,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,1,84,0.0 +26127,city_138,0.836,Male,Has relevent experience,Full time course,High School,,9,50-99,Pvt Ltd,2,130,0.0 +14700,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,112,0.0 +5796,city_91,0.691,,Has relevent experience,no_enrollment,Graduate,STEM,<1,,,1,52,1.0 +18213,city_91,0.691,,No relevent experience,no_enrollment,,,1,,,never,226,0.0 +18068,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,Humanities,>20,50-99,Pvt Ltd,1,11,0.0 +25952,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,NGO,2,23,0.0 +7208,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,2,188,0.0 +32002,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,13,,,>4,126,1.0 +20433,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,94,1.0 +30151,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,1,94,0.0 +31264,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,5,,,1,56,0.0 +31926,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,,1,66,0.0 +18965,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,3,500-999,,1,59,0.0 +11470,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,6,,,1,24,1.0 +18758,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Funded Startup,1,131,0.0 +29420,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,5,,,never,98,1.0 +14092,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,2,25,1.0 +20421,city_10,0.895,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,4,16,1.0 +4575,city_98,0.9490000000000001,,No relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Public Sector,4,45,0.0 +29749,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Funded Startup,4,62,0.0 +3513,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,14,0.0 +20493,city_71,0.884,Male,Has relevent experience,Full time course,High School,,10,50-99,Funded Startup,1,23,0.0 +257,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,19,100-500,Pvt Ltd,1,9,0.0 +22769,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,4,50-99,,1,44,0.0 +6581,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,1,105,0.0 +26250,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,106,0.0 +9408,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,40,0.0 +11288,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,13,500-999,Funded Startup,1,20,0.0 +28170,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,11,,,1,27,0.0 +5520,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,,85,1.0 +18254,city_103,0.92,,No relevent experience,no_enrollment,High School,,<1,,,,57,0.0 +8623,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,4,8,0.0 +25279,city_173,0.878,Female,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,1,116,0.0 +17241,city_115,0.789,Male,Has relevent experience,Full time course,Graduate,STEM,11,500-999,Pvt Ltd,4,130,1.0 +25004,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,,,1,33,0.0 +6242,city_103,0.92,,Has relevent experience,Full time course,Masters,STEM,>20,,,,40,0.0 +89,city_61,0.9129999999999999,,No relevent experience,no_enrollment,High School,,6,,Pvt Ltd,never,10,0.0 +20720,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,13,<10,Pvt Ltd,2,28,0.0 +7806,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,9,,,>4,23,0.0 +20955,city_39,0.898,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,8,0.0 +28702,city_21,0.624,,No relevent experience,,Graduate,No Major,2,,,never,33,1.0 +27522,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,NGO,>4,11,0.0 +33271,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,>20,,,1,102,1.0 +18445,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,7,10/49,Pvt Ltd,>4,111,0.0 +2672,city_65,0.802,,Has relevent experience,no_enrollment,Masters,STEM,12,10000+,Pvt Ltd,1,62,0.0 +28363,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,3,,,2,79,0.0 +24886,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,1,102,1.0 +7616,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,3,,,2,226,1.0 +6826,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,,never,82,1.0 +827,city_97,0.925,Male,No relevent experience,no_enrollment,Phd,STEM,13,10000+,Public Sector,>4,128,0.0 +23002,city_67,0.855,Male,No relevent experience,Full time course,Graduate,STEM,10,,,1,58,1.0 +32445,city_104,0.924,,Has relevent experience,Full time course,Graduate,STEM,8,<10,Early Stage Startup,1,78,0.0 +24667,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,29,0.0 +1327,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,STEM,>20,,Pvt Ltd,never,79,1.0 +7778,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,100-500,Pvt Ltd,1,43,0.0 +24125,city_44,0.725,Male,Has relevent experience,Part time course,Masters,STEM,6,10/49,Pvt Ltd,1,74,0.0 +20702,city_123,0.738,Male,No relevent experience,no_enrollment,High School,,3,,,never,300,0.0 +23484,city_20,0.7959999999999999,,No relevent experience,Full time course,Primary School,,2,,,never,11,0.0 +31224,city_99,0.915,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,58,0.0 +31957,city_142,0.727,,No relevent experience,no_enrollment,Graduate,STEM,15,100-500,Funded Startup,3,18,0.0 +23864,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,98,1.0 +25311,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,2,112,1.0 +21075,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,75,1.0 +19267,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,15,,,1,116,1.0 +22336,city_46,0.762,Male,Has relevent experience,Part time course,Graduate,STEM,3,,,2,47,1.0 +21689,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,5000-9999,Pvt Ltd,>4,51,0.0 +11885,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,59,0.0 +31507,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Public Sector,2,32,0.0 +4781,city_67,0.855,Female,No relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,1,100,0.0 +26587,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,4,79,0.0 +17184,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,1,112,0.0 +566,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Funded Startup,>4,27,0.0 +18493,city_99,0.915,,No relevent experience,Full time course,Graduate,STEM,11,,,,24,0.0 +13934,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,46,0.0 +27961,city_21,0.624,,No relevent experience,Full time course,High School,,2,,,never,32,0.0 +14022,city_93,0.865,,Has relevent experience,no_enrollment,High School,,12,100-500,Pvt Ltd,2,4,0.0 +10355,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,15,50-99,Pvt Ltd,1,15,0.0 +12130,city_26,0.698,,No relevent experience,Full time course,Graduate,STEM,10,50-99,Pvt Ltd,,69,0.0 +18596,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,2,,Public Sector,1,34,0.0 +18000,city_104,0.924,Male,No relevent experience,no_enrollment,,,4,,,never,25,0.0 +28030,city_74,0.579,Male,No relevent experience,Part time course,Graduate,Business Degree,1,,,1,104,1.0 +32692,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,1,,,1,96,0.0 +13960,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,4,50-99,Pvt Ltd,1,59,0.0 +11722,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,1,10,0.0 +28984,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,31,0.0 +12932,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,2,17,0.0 +22076,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,5,500-999,Pvt Ltd,,10,0.0 +31109,city_8,0.698,Male,No relevent experience,Part time course,,,4,,,2,70,0.0 +30853,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,>4,10,1.0 +19873,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,,,1,29,1.0 +14309,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,20,0.0 +5510,city_116,0.743,,No relevent experience,no_enrollment,Masters,Humanities,18,,,,17,1.0 +22371,city_99,0.915,Male,Has relevent experience,Full time course,Graduate,STEM,8,,,1,68,0.0 +7540,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,3,<10,Pvt Ltd,1,196,0.0 +7609,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,1,39,0.0 +30829,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,23,0.0 +9145,city_162,0.767,,Has relevent experience,Full time course,Graduate,STEM,13,100-500,Pvt Ltd,1,32,0.0 +25483,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,3,13,1.0 +12481,city_90,0.698,,No relevent experience,no_enrollment,Graduate,STEM,<1,,,never,30,0.0 +14666,city_21,0.624,,No relevent experience,Part time course,Graduate,STEM,1,10/49,Pvt Ltd,1,32,1.0 +24668,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,2,17,0.0 +10693,city_11,0.55,Male,Has relevent experience,Part time course,Graduate,STEM,2,50-99,Pvt Ltd,1,42,0.0 +21372,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,,38,0.0 +29204,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,7,<10,Early Stage Startup,1,72,0.0 +29135,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Funded Startup,>4,42,0.0 +6161,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,30,0.0 +12226,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,5000-9999,Pvt Ltd,>4,99,0.0 +30319,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,38,0.0 +4718,city_11,0.55,,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,>4,168,0.0 +7836,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,never,123,1.0 +32505,city_21,0.624,,Has relevent experience,Full time course,,,1,<10,NGO,never,30,1.0 +13611,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,never,44,0.0 +29729,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,100-500,Pvt Ltd,1,33,1.0 +26333,city_73,0.754,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,111,1.0 +18885,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,,1,39,1.0 +5569,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,9,,Pvt Ltd,never,31,0.0 +8366,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,16,500-999,Funded Startup,1,67,0.0 +8091,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,3,55,0.0 +12818,city_162,0.767,,Has relevent experience,Part time course,Masters,STEM,6,10000+,Pvt Ltd,1,114,1.0 +28662,city_104,0.924,Male,Has relevent experience,Part time course,Masters,STEM,17,,,>4,25,0.0 +28198,city_50,0.8959999999999999,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,92,1.0 +19376,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,8,100-500,Pvt Ltd,1,31,0.0 +28101,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,3,,,1,2,0.0 +12070,city_173,0.878,,Has relevent experience,no_enrollment,High School,,5,,,3,90,0.0 +31417,city_100,0.887,,No relevent experience,Full time course,High School,,4,,Pvt Ltd,never,76,0.0 +30070,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,44,0.0 +11940,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,>4,69,0.0 +26332,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Funded Startup,1,21,0.0 +21790,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,10,<10,Pvt Ltd,1,42,0.0 +22206,city_23,0.899,,Has relevent experience,Part time course,High School,,11,50-99,Funded Startup,1,22,1.0 +2211,city_77,0.83,Male,Has relevent experience,no_enrollment,Graduate,Other,10,,,2,70,0.0 +1049,city_40,0.7759999999999999,,No relevent experience,Full time course,Graduate,STEM,6,,,1,84,1.0 +25002,city_136,0.897,Male,No relevent experience,Part time course,Graduate,STEM,3,<10,Early Stage Startup,1,7,0.0 +2330,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,Pvt Ltd,1,35,0.0 +22053,city_40,0.7759999999999999,,No relevent experience,no_enrollment,High School,,3,,,never,125,0.0 +14977,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,2,43,0.0 +3211,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,2,81,1.0 +31872,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,4,94,0.0 +2956,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,2,85,0.0 +28125,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,42,0.0 +24263,city_162,0.767,Male,Has relevent experience,no_enrollment,Masters,STEM,10,<10,Pvt Ltd,>4,114,0.0 +7199,city_134,0.698,Other,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,3,42,0.0 +7303,city_67,0.855,Male,No relevent experience,Full time course,High School,,4,,,1,39,0.0 +25391,city_103,0.92,,No relevent experience,Full time course,Graduate,Arts,10,,,1,87,1.0 +31857,city_21,0.624,Male,No relevent experience,Full time course,High School,,1,,,never,202,0.0 +11207,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,18,0.0 +9676,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,85,0.0 +10552,city_21,0.624,Female,Has relevent experience,Full time course,Masters,STEM,7,500-999,Pvt Ltd,1,50,1.0 +7684,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,4,25,1.0 +19817,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,2,149,1.0 +18105,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,2,26,1.0 +29268,city_100,0.887,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,22,0.0 +17708,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,100-500,Public Sector,1,61,0.0 +1808,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,2,113,1.0 +7853,city_144,0.84,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,11,1.0 +16028,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,222,0.0 +9992,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,<10,Early Stage Startup,2,44,0.0 +19289,city_103,0.92,Male,No relevent experience,Full time course,High School,,4,1000-4999,Pvt Ltd,1,95,1.0 +9143,city_16,0.91,,Has relevent experience,no_enrollment,High School,,6,100-500,Pvt Ltd,1,74,0.0 +26435,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,,,never,32,0.0 +10211,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,10/49,Pvt Ltd,never,21,0.0 +15134,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,1,44,0.0 +30687,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,5000-9999,Pvt Ltd,3,160,0.0 +651,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,72,0.0 +15591,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,25,0.0 +4659,city_136,0.897,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,never,2,1.0 +26422,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,1,4,0.0 +31061,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Public Sector,>4,67,0.0 +31037,city_44,0.725,Male,No relevent experience,Part time course,Masters,STEM,5,,,never,39,1.0 +5339,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,>4,108,1.0 +24153,city_158,0.7659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,3,40,0.0 +26506,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,7,,,1,22,1.0 +1788,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,7,0.0 +6930,city_21,0.624,,No relevent experience,no_enrollment,,,<1,,,never,13,1.0 +20496,city_159,0.843,,Has relevent experience,no_enrollment,Masters,STEM,18,50-99,Funded Startup,2,17,0.0 +879,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,Other,2,29,1.0 +31413,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,60,1.0 +28893,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Humanities,<1,50-99,Pvt Ltd,1,140,0.0 +22362,city_21,0.624,Male,No relevent experience,Full time course,Primary School,,7,,,never,18,0.0 +8173,city_162,0.767,Male,No relevent experience,Full time course,Graduate,STEM,1,,,1,54,0.0 +14009,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,50,0.0 +9780,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,7,5000-9999,Pvt Ltd,1,82,0.0 +15353,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Early Stage Startup,2,64,0.0 +32823,city_145,0.555,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,,,2,38,0.0 +17099,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,7,,,1,248,1.0 +11779,city_71,0.884,Male,No relevent experience,no_enrollment,Masters,STEM,11,5000-9999,Pvt Ltd,>4,51,0.0 +13728,city_138,0.836,Male,Has relevent experience,Part time course,Graduate,STEM,9,,,2,21,0.0 +9513,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,1,77,0.0 +18437,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,1,24,0.0 +8793,city_73,0.754,,No relevent experience,Part time course,Graduate,STEM,12,1000-4999,Public Sector,>4,114,0.0 +19357,city_37,0.794,,No relevent experience,Full time course,High School,,4,10/49,Early Stage Startup,never,86,0.0 +21092,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,16,0.0 +5260,city_123,0.738,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,82,0.0 +32610,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Public Sector,1,45,0.0 +17981,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,40,0.0 +32625,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10/49,Pvt Ltd,>4,48,0.0 +2271,city_21,0.624,Male,No relevent experience,Full time course,,,3,,Pvt Ltd,never,53,1.0 +14027,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,>4,54,0.0 +24639,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,1000-4999,Pvt Ltd,>4,14,0.0 +3487,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,2,35,0.0 +2882,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,,>4,4,0.0 +25340,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,never,147,0.0 +24691,city_162,0.767,,No relevent experience,Full time course,,,5,,,never,2,0.0 +20344,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,20,100-500,Pvt Ltd,>4,33,0.0 +9885,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,>4,105,0.0 +30519,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,42,0.0 +13136,city_103,0.92,,No relevent experience,Full time course,Graduate,,2,,,1,202,1.0 +29260,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,61,0.0 +6628,city_11,0.55,,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Pvt Ltd,>4,39,0.0 +9004,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Funded Startup,2,36,0.0 +12815,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,No Major,>20,500-999,Pvt Ltd,>4,46,0.0 +11445,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,>4,42,0.0 +28993,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,Humanities,4,,,3,32,1.0 +27690,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,2,13,0.0 +16935,city_141,0.763,Male,No relevent experience,Full time course,High School,,3,,,never,56,0.0 +12624,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,42,0.0 +7268,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Primary School,,1,,,never,57,0.0 +2350,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,13,10/49,Pvt Ltd,2,145,1.0 +10204,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,2,64,0.0 +5247,city_104,0.924,Male,No relevent experience,no_enrollment,Phd,STEM,>20,500-999,Public Sector,>4,30,0.0 +23858,city_11,0.55,Male,No relevent experience,no_enrollment,Graduate,STEM,8,,,1,57,0.0 +2024,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,1,,Pvt Ltd,never,21,1.0 +7162,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,13,,,never,57,0.0 +18720,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,Pvt Ltd,>4,57,0.0 +27339,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,,Pvt Ltd,1,154,0.0 +16234,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Early Stage Startup,1,82,0.0 +20922,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,3,,,never,9,0.0 +14804,city_80,0.847,Male,Has relevent experience,Full time course,Graduate,STEM,5,100-500,Pvt Ltd,4,51,0.0 +13050,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,Arts,>20,50-99,Pvt Ltd,>4,68,0.0 +27201,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,23,0.0 +20405,city_19,0.682,,No relevent experience,Full time course,Graduate,STEM,1,,,,97,1.0 +22433,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,>4,96,0.0 +12780,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,3,,,1,78,0.0 +30447,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,6,10000+,Pvt Ltd,2,18,0.0 +1006,city_91,0.691,Male,Has relevent experience,Full time course,Graduate,STEM,1,,,1,9,1.0 +4147,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,<1,1000-4999,Pvt Ltd,1,45,0.0 +17609,city_16,0.91,,No relevent experience,Part time course,Graduate,STEM,7,,,1,4,1.0 +2022,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Funded Startup,4,101,0.0 +32830,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,20,1.0 +24953,city_89,0.925,,No relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,1,98,0.0 +31015,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,19,100-500,Funded Startup,1,204,0.0 +25198,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,>4,38,0.0 +24590,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,2,50-99,NGO,1,20,0.0 +32924,city_90,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Funded Startup,1,204,0.0 +21297,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,1,3,0.0 +29279,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,102,0.0 +10498,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,3,14,0.0 +11240,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Pvt Ltd,never,52,0.0 +2493,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,,10,1000-4999,Pvt Ltd,2,52,0.0 +10434,city_152,0.698,,No relevent experience,no_enrollment,Primary School,,6,,,never,17,0.0 +26117,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,3,,,1,78,1.0 +15392,city_30,0.698,Male,Has relevent experience,no_enrollment,High School,,8,50-99,Pvt Ltd,>4,21,0.0 +23079,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,10,,,>4,67,0.0 +23169,city_98,0.9490000000000001,Male,No relevent experience,no_enrollment,Masters,STEM,4,50-99,,1,18,0.0 +2857,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,5000-9999,Pvt Ltd,2,89,0.0 +18443,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,28,1.0 +1196,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,1,77,1.0 +1684,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,5,,,never,40,1.0 +18407,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,,2,13,0.0 +3050,city_136,0.897,Male,Has relevent experience,Part time course,Graduate,STEM,5,50-99,Pvt Ltd,4,58,0.0 +11663,city_21,0.624,,No relevent experience,no_enrollment,Primary School,,2,,,never,204,0.0 +31637,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,3,0.0 +20815,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,1,216,0.0 +11120,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Public Sector,>4,56,0.0 +28674,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Pvt Ltd,>4,33,1.0 +20146,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,NGO,4,40,0.0 +1184,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,,>4,31,1.0 +26166,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,4,83,0.0 +12180,city_160,0.92,Male,Has relevent experience,Full time course,High School,,6,,,1,118,1.0 +10949,city_57,0.866,,Has relevent experience,Full time course,Graduate,STEM,3,10/49,Early Stage Startup,1,80,0.0 +2511,city_97,0.925,Male,No relevent experience,no_enrollment,Phd,STEM,19,100-500,Public Sector,>4,66,0.0 +20168,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,18,0.0 +23385,city_104,0.924,Male,No relevent experience,no_enrollment,Graduate,STEM,5,100-500,,4,224,0.0 +29052,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,3,<10,,1,50,0.0 +13072,city_83,0.9229999999999999,Female,Has relevent experience,no_enrollment,Phd,STEM,11,5000-9999,Pvt Ltd,1,54,0.0 +25366,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,5,<10,Pvt Ltd,1,71,0.0 +12842,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,7,,,never,58,0.0 +21476,city_71,0.884,Male,No relevent experience,Full time course,Graduate,STEM,4,,,3,24,0.0 +17928,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,78,0.0 +26520,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,1,204,0.0 +25655,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Funded Startup,1,158,0.0 +19810,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Masters,STEM,13,10000+,Pvt Ltd,2,42,0.0 +33210,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,500-999,,1,56,0.0 +15926,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,1,26,0.0 +28261,city_143,0.74,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,1000-4999,Other,>4,47,0.0 +7075,city_41,0.8270000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,2,33,1.0 +21478,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Other,5,,,1,63,1.0 +2423,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,80,1.0 +25512,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,9,,,1,65,0.0 +17927,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,28,1.0 +2190,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Pvt Ltd,1,20,0.0 +13003,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,2,56,1.0 +19485,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,3,10/49,Pvt Ltd,2,40,0.0 +11876,city_103,0.92,,No relevent experience,no_enrollment,High School,,<1,,,,6,0.0 +28912,city_28,0.9390000000000001,Male,Has relevent experience,Part time course,High School,,13,100-500,Pvt Ltd,2,12,0.0 +29073,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,7,10000+,Pvt Ltd,2,47,0.0 +27582,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,3,10000+,Pvt Ltd,1,14,0.0 +22613,city_27,0.848,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,3,42,0.0 +2911,city_39,0.898,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Public Sector,1,3,0.0 +10978,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Arts,4,50-99,Pvt Ltd,1,16,0.0 +25822,city_10,0.895,Other,No relevent experience,Full time course,Graduate,STEM,5,,,1,20,1.0 +31860,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,NGO,2,25,0.0 +10003,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,Humanities,3,,,2,21,0.0 +31810,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,500-999,Pvt Ltd,1,79,0.0 +20541,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,,1,37,1.0 +3173,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Pvt Ltd,>4,12,0.0 +7916,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,15,50-99,Pvt Ltd,3,117,0.0 +31625,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,1,6,0.0 +31965,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,56,0.0 +753,city_11,0.55,Male,Has relevent experience,Part time course,Graduate,STEM,7,,,4,23,0.0 +27545,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,40,1.0 +12013,city_100,0.887,Male,No relevent experience,no_enrollment,Phd,STEM,>20,100-500,Public Sector,>4,70,0.0 +11919,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,>20,,Public Sector,>4,43,0.0 +13434,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Pvt Ltd,1,23,0.0 +6182,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Pvt Ltd,>4,125,0.0 +25099,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,4,176,0.0 +31603,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,10,0.0 +15121,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,2,148,0.0 +32219,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,Pvt Ltd,2,14,0.0 +22169,city_31,0.807,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,37,0.0 +25213,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,No Major,3,<10,Early Stage Startup,1,82,0.0 +30549,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,1,21,0.0 +24179,city_21,0.624,Male,No relevent experience,Part time course,Phd,STEM,8,10/49,Pvt Ltd,4,34,0.0 +10363,city_21,0.624,,No relevent experience,Full time course,High School,,<1,,,,40,0.0 +15124,city_128,0.527,,Has relevent experience,Full time course,Graduate,STEM,3,,,2,108,1.0 +278,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,94,0.0 +5518,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,69,0.0 +31850,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,No Major,17,100-500,Pvt Ltd,1,124,0.0 +12022,city_115,0.789,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,2,38,1.0 +10247,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,29,0.0 +24722,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,1,16,0.0 +11704,city_104,0.924,Male,Has relevent experience,Full time course,Graduate,STEM,15,500-999,NGO,1,37,0.0 +24481,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,4,104,0.0 +9140,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,132,1.0 +15914,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,1,50-99,Early Stage Startup,1,34,1.0 +22233,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Funded Startup,4,51,0.0 +14125,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,2,6,0.0 +31644,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,3,42,0.0 +31979,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,330,0.0 +21935,city_67,0.855,,No relevent experience,no_enrollment,High School,,4,,,never,28,0.0 +15269,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,53,1.0 +32714,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,Other,5,10/49,Early Stage Startup,1,9,1.0 +12546,city_102,0.804,,No relevent experience,no_enrollment,Masters,Humanities,17,,,3,96,0.0 +20931,city_136,0.897,Male,No relevent experience,no_enrollment,Phd,STEM,7,<10,Pvt Ltd,1,18,0.0 +19503,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,never,39,1.0 +2676,city_57,0.866,Male,Has relevent experience,Full time course,Masters,STEM,8,<10,Public Sector,1,28,0.0 +20328,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,4,,,1,7,0.0 +4268,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,5,1000-4999,Pvt Ltd,1,65,0.0 +33268,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,>4,22,0.0 +19690,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,5,,Other,1,69,0.0 +15486,city_45,0.89,Male,No relevent experience,Full time course,Graduate,Arts,2,,,1,29,1.0 +14150,city_103,0.92,,Has relevent experience,,,,>20,,,,21,0.0 +22920,city_150,0.698,,No relevent experience,,Masters,STEM,5,,,1,89,0.0 +14553,city_23,0.899,,No relevent experience,no_enrollment,Graduate,STEM,4,,,never,83,1.0 +20323,city_103,0.92,Male,No relevent experience,no_enrollment,,,2,,,never,50,0.0 +25786,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Pvt Ltd,1,67,1.0 +3066,city_21,0.624,Other,No relevent experience,Full time course,Graduate,STEM,7,,,3,302,1.0 +22132,city_134,0.698,,Has relevent experience,,Graduate,STEM,14,1000-4999,Pvt Ltd,>4,88,0.0 +8977,city_100,0.887,,No relevent experience,no_enrollment,High School,,7,,,never,19,0.0 +14833,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,No Major,5,,,,28,0.0 +23583,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,20,0.0 +5634,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,2,298,0.0 +22155,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,19,,,1,74,0.0 +15011,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Public Sector,>4,10,0.0 +3877,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,1000-4999,Pvt Ltd,>4,39,0.0 +347,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,38,0.0 +6686,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,2,96,1.0 +2705,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,Humanities,10,500-999,Pvt Ltd,1,113,0.0 +21153,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,4,38,0.0 +26387,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,51,0.0 +28928,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,16,,,1,127,1.0 +8582,city_160,0.92,,No relevent experience,no_enrollment,,,17,10000+,Pvt Ltd,>4,12,0.0 +29044,city_103,0.92,,Has relevent experience,no_enrollment,High School,,3,50-99,Pvt Ltd,1,36,0.0 +30366,city_152,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,4,<10,Funded Startup,1,46,0.0 +28502,city_13,0.8270000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,51,1.0 +1955,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,156,0.0 +25554,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,3,55,0.0 +22010,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,Pvt Ltd,1,165,0.0 +5371,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,>4,45,1.0 +26119,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,1,23,0.0 +21344,city_19,0.682,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Funded Startup,4,18,0.0 +27423,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,10,,,2,69,0.0 +14953,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,11,,,1,24,0.0 +23473,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,3,,,1,55,1.0 +6726,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,30,0.0 +8594,city_45,0.89,,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Pvt Ltd,>4,19,0.0 +15226,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,91,0.0 +17582,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,never,18,0.0 +23662,city_103,0.92,,Has relevent experience,,Masters,Humanities,<1,50-99,Funded Startup,1,34,0.0 +31150,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,7,,,3,168,0.0 +14300,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Funded Startup,1,51,0.0 +33000,city_90,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,7,10/49,Early Stage Startup,1,139,0.0 +14436,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,5000-9999,Pvt Ltd,>4,139,0.0 +24465,city_173,0.878,Male,Has relevent experience,Part time course,High School,,15,100-500,Pvt Ltd,3,15,0.0 +27551,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,11,1.0 +7129,city_23,0.899,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,23,1.0 +10033,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,1,30,0.0 +9689,city_103,0.92,,No relevent experience,Full time course,High School,,<1,,,,27,1.0 +14725,city_11,0.55,,No relevent experience,Full time course,Masters,STEM,2,<10,NGO,1,14,1.0 +1330,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,,,2,51,1.0 +12845,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,1,69,1.0 +18883,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,5,10000+,Pvt Ltd,>4,148,0.0 +4572,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,Pvt Ltd,1,284,0.0 +30768,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,112,1.0 +21348,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,<1,10/49,Early Stage Startup,1,324,1.0 +20506,city_19,0.682,,No relevent experience,Part time course,High School,,5,10/49,Funded Startup,1,4,0.0 +9131,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Public Sector,3,200,0.0 +22684,city_136,0.897,Male,Has relevent experience,no_enrollment,Phd,STEM,9,<10,Pvt Ltd,1,100,0.0 +5973,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,62,0.0 +9980,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,8,1000-4999,Pvt Ltd,2,38,0.0 +31086,city_67,0.855,Male,No relevent experience,no_enrollment,High School,,5,,,1,57,0.0 +7286,city_69,0.856,,Has relevent experience,Part time course,Graduate,STEM,13,1000-4999,Pvt Ltd,1,17,0.0 +26767,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,11,500-999,Funded Startup,2,147,1.0 +12545,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,19,0.0 +10603,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,10000+,Pvt Ltd,1,54,0.0 +31161,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,1,100-500,Pvt Ltd,never,27,1.0 +25709,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,>4,26,0.0 +32497,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,Pvt Ltd,1,158,0.0 +15724,city_9,0.743,,Has relevent experience,Full time course,Masters,STEM,1,,,1,78,0.0 +32472,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,3,10000+,Public Sector,1,166,0.0 +11686,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,172,0.0 +17118,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,2,56,1.0 +26161,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Early Stage Startup,1,66,0.0 +13199,city_103,0.92,Male,No relevent experience,Full time course,High School,,3,,,1,54,1.0 +19110,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,,4,81,0.0 +20960,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,1,22,0.0 +13743,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,4,108,0.0 +18092,city_90,0.698,,Has relevent experience,Part time course,,,13,50-99,Pvt Ltd,,18,0.0 +24332,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,500-999,Pvt Ltd,2,13,0.0 +9064,city_105,0.794,,Has relevent experience,no_enrollment,Masters,Humanities,>20,10000+,Pvt Ltd,>4,17,0.0 +13913,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,13,,,never,9,0.0 +10732,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,8,<10,Funded Startup,1,27,0.0 +24364,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,8,,,never,64,0.0 +32954,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,>4,20,0.0 +23936,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,STEM,4,50-99,Pvt Ltd,1,30,0.0 +10465,city_149,0.6890000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,never,34,0.0 +15474,city_102,0.804,Female,No relevent experience,no_enrollment,Masters,STEM,5,10000+,Public Sector,1,82,0.0 +11422,city_123,0.738,Female,Has relevent experience,no_enrollment,High School,,8,,,never,28,0.0 +2521,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,114,1.0 +13327,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,6,0.0 +27793,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,82,1.0 +28469,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,82,0.0 +10990,city_103,0.92,Female,No relevent experience,Full time course,High School,,16,,,never,138,1.0 +16544,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,3,18,1.0 +2802,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Pvt Ltd,>4,10,0.0 +13163,city_16,0.91,,No relevent experience,no_enrollment,High School,,2,,,never,16,1.0 +13535,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,10,,,1,8,0.0 +2043,city_23,0.899,Male,Has relevent experience,Full time course,Graduate,STEM,9,50-99,Funded Startup,1,42,0.0 +30740,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,8,,,1,50,0.0 +30680,city_138,0.836,Male,Has relevent experience,no_enrollment,Primary School,,>20,,,1,89,0.0 +18842,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,7,100-500,Pvt Ltd,2,12,0.0 +19686,city_128,0.527,Male,No relevent experience,Full time course,High School,,7,,,1,44,1.0 +28933,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,5,50-99,Pvt Ltd,1,156,0.0 +30027,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,4,100-500,Pvt Ltd,2,6,1.0 +27850,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,34,0.0 +13458,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,Pvt Ltd,1,55,0.0 +24990,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,18,500-999,,2,88,0.0 +16236,city_141,0.763,Male,Has relevent experience,no_enrollment,Masters,STEM,11,<10,Pvt Ltd,>4,55,0.0 +8709,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Masters,STEM,7,<10,Public Sector,1,27,0.0 +14411,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,1,50-99,Pvt Ltd,1,50,1.0 +29625,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,,2,15,0.0 +3745,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,5000-9999,Pvt Ltd,1,29,0.0 +18961,city_21,0.624,,No relevent experience,Full time course,High School,,<1,,,never,32,0.0 +25372,city_97,0.925,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,20,0.0 +24131,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,2,50-99,Pvt Ltd,1,22,0.0 +8696,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,46,1.0 +11595,city_30,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,3,72,1.0 +12593,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,Other,4,100-500,Pvt Ltd,3,113,0.0 +23524,city_162,0.767,Male,Has relevent experience,no_enrollment,High School,,10,<10,Early Stage Startup,1,98,0.0 +17141,city_109,0.701,,Has relevent experience,Full time course,Graduate,STEM,10,,,1,16,1.0 +6094,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,5,500-999,Funded Startup,2,27,1.0 +25429,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,33,0.0 +7497,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,18,0.0 +9957,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,2,62,0.0 +4593,city_99,0.915,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,3,90,1.0 +4989,city_67,0.855,Female,Has relevent experience,Full time course,Graduate,STEM,5,50-99,,1,90,0.0 +24818,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,2,40,0.0 +5766,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,20,0.0 +18348,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,>4,17,0.0 +27894,city_41,0.8270000000000001,Male,Has relevent experience,Part time course,Masters,STEM,>20,1000-4999,Public Sector,>4,46,0.0 +30737,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Early Stage Startup,2,55,0.0 +27191,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Funded Startup,1,53,0.0 +27748,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,36,1.0 +32001,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Business Degree,11,<10,Pvt Ltd,>4,11,0.0 +18626,city_101,0.5579999999999999,,No relevent experience,Full time course,Graduate,STEM,9,50-99,Pvt Ltd,1,124,0.0 +24105,city_57,0.866,Male,No relevent experience,no_enrollment,Graduate,STEM,11,,,>4,45,1.0 +23995,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,114,0.0 +22930,city_104,0.924,Male,No relevent experience,Full time course,High School,,10,50-99,Pvt Ltd,2,84,0.0 +20511,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Early Stage Startup,1,74,0.0 +21220,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,28,0.0 +26633,city_67,0.855,Male,No relevent experience,Part time course,Graduate,STEM,5,,,1,39,0.0 +25660,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,4,10,0.0 +14692,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,4,500-999,NGO,never,31,0.0 +219,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,13,50-99,Pvt Ltd,1,42,0.0 +33337,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,4,0.0 +25921,city_72,0.795,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,NGO,1,113,0.0 +24477,city_100,0.887,Male,Has relevent experience,Part time course,Graduate,STEM,15,,,1,164,0.0 +3021,city_175,0.7759999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,,never,114,0.0 +16856,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Public Sector,>4,62,0.0 +14153,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,,never,13,0.0 +9845,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,>4,78,0.0 +32654,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,62,0.0 +20227,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,80,0.0 +5972,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,16,1000-4999,Pvt Ltd,2,8,0.0 +11329,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,>4,80,1.0 +8817,city_26,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,11,,,never,152,1.0 +6160,city_65,0.802,,No relevent experience,Full time course,Graduate,STEM,2,,,never,43,0.0 +7860,city_21,0.624,,Has relevent experience,Part time course,Masters,STEM,12,100-500,Public Sector,1,105,0.0 +18288,city_149,0.6890000000000001,,Has relevent experience,Part time course,Graduate,STEM,6,10/49,Pvt Ltd,3,210,0.0 +3360,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,2,15,0.0 +15418,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,7,100-500,,1,15,0.0 +2761,city_16,0.91,Male,Has relevent experience,Full time course,Masters,STEM,10,10000+,Pvt Ltd,2,24,0.0 +20188,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Early Stage Startup,2,310,0.0 +15805,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,20,,,>4,80,0.0 +10453,city_145,0.555,,No relevent experience,Full time course,Graduate,STEM,4,,,never,24,0.0 +22669,city_45,0.89,Male,No relevent experience,Full time course,High School,,4,,,1,68,0.0 +27488,city_59,0.775,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,164,0.0 +24957,city_19,0.682,,Has relevent experience,Full time course,Graduate,STEM,3,,,1,24,0.0 +16422,city_83,0.9229999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,Pvt Ltd,1,81,0.0 +5856,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,NGO,>4,36,0.0 +10911,city_16,0.91,Other,No relevent experience,Full time course,Graduate,Humanities,8,,,1,48,0.0 +5626,city_152,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Early Stage Startup,1,28,0.0 +10754,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,5,10/49,Public Sector,1,41,0.0 +24475,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,3,83,0.0 +14157,city_160,0.92,Male,Has relevent experience,Full time course,,,15,,,1,119,0.0 +32119,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,130,0.0 +17853,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,37,0.0 +27638,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,4,52,0.0 +13447,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,3,56,0.0 +28539,city_175,0.7759999999999999,Female,No relevent experience,Full time course,Graduate,STEM,4,5000-9999,,1,111,0.0 +14478,city_89,0.925,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,24,1.0 +11039,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10000+,Pvt Ltd,>4,56,0.0 +31452,city_145,0.555,Male,No relevent experience,Full time course,High School,,3,,,never,46,1.0 +18177,city_103,0.92,Male,No relevent experience,Full time course,High School,,6,50-99,Public Sector,2,47,1.0 +25283,city_73,0.754,,Has relevent experience,Part time course,High School,,<1,<10,Early Stage Startup,,58,0.0 +14439,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,78,1.0 +24502,city_13,0.8270000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,NGO,2,82,0.0 +20254,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,18,10000+,Pvt Ltd,4,3,0.0 +25716,city_165,0.903,Female,No relevent experience,Part time course,Masters,STEM,7,,Public Sector,1,6,0.0 +21977,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,1,17,1.0 +17414,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,43,1.0 +16964,city_103,0.92,,Has relevent experience,Full time course,Graduate,STEM,5,1000-4999,NGO,1,54,0.0 +21193,city_159,0.843,Male,Has relevent experience,Part time course,Graduate,STEM,11,<10,Early Stage Startup,2,75,0.0 +24804,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,4,,,2,51,1.0 +2685,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,3,56,0.0 +10289,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,5,50-99,Pvt Ltd,4,116,0.0 +7915,city_21,0.624,Female,Has relevent experience,,Graduate,STEM,4,,,2,158,1.0 +32930,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,80,0.0 +3215,city_160,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,Early Stage Startup,1,16,0.0 +10840,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,26,0.0 +8687,city_104,0.924,Female,Has relevent experience,no_enrollment,Graduate,Humanities,11,1000-4999,Pvt Ltd,4,26,0.0 +25825,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,148,0.0 +20,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,7,,,2,76,1.0 +32294,city_103,0.92,Other,No relevent experience,no_enrollment,Primary School,,3,,,never,136,1.0 +3763,city_105,0.794,Female,Has relevent experience,Full time course,Graduate,STEM,10,50-99,,>4,36,0.0 +30084,city_80,0.847,Other,No relevent experience,no_enrollment,Graduate,STEM,<1,<10,Pvt Ltd,1,40,1.0 +22616,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,15,500-999,Pvt Ltd,>4,116,0.0 +21430,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Pvt Ltd,2,123,1.0 +8207,city_16,0.91,,No relevent experience,no_enrollment,Graduate,No Major,>20,,Pvt Ltd,,48,0.0 +6821,city_75,0.9390000000000001,Other,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Public Sector,>4,13,0.0 +6365,city_74,0.579,Male,No relevent experience,no_enrollment,Graduate,STEM,6,<10,Funded Startup,never,8,0.0 +13586,city_126,0.479,,No relevent experience,no_enrollment,High School,,<1,,,never,50,0.0 +17297,city_150,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,12,10000+,Pvt Ltd,>4,27,0.0 +13633,city_102,0.804,,No relevent experience,Full time course,High School,,8,50-99,Pvt Ltd,4,23,0.0 +864,city_28,0.9390000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,12,100-500,Pvt Ltd,1,26,0.0 +15952,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,12,,,1,306,0.0 +3169,city_21,0.624,Female,No relevent experience,Full time course,High School,,7,,,1,26,1.0 +29308,city_162,0.767,Male,Has relevent experience,Full time course,Masters,STEM,15,100-500,Pvt Ltd,>4,59,0.0 +24024,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,,,never,314,0.0 +3754,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,9,500-999,Pvt Ltd,3,24,0.0 +8486,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Humanities,6,,,1,85,0.0 +8958,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,>4,63,0.0 +17368,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,<1,<10,Pvt Ltd,1,111,1.0 +1653,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Other,1,22,0.0 +904,city_73,0.754,Male,No relevent experience,Part time course,High School,,5,,,1,42,0.0 +17413,city_146,0.735,,No relevent experience,no_enrollment,Graduate,STEM,4,<10,Early Stage Startup,never,28,0.0 +17210,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,3,10/49,Pvt Ltd,never,18,1.0 +3795,city_173,0.878,,Has relevent experience,Full time course,Graduate,STEM,9,,,1,26,0.0 +3232,city_28,0.9390000000000001,,Has relevent experience,Part time course,Graduate,STEM,5,50-99,Pvt Ltd,1,192,0.0 +9681,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,21,0.0 +10783,city_101,0.5579999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Early Stage Startup,1,74,0.0 +19176,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,4,1000-4999,Pvt Ltd,1,13,0.0 +4855,city_102,0.804,Male,No relevent experience,no_enrollment,Primary School,,6,,Pvt Ltd,never,9,0.0 +11364,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,63,0.0 +28209,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,12,100-500,Early Stage Startup,1,118,0.0 +8868,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,5000-9999,Pvt Ltd,>4,9,0.0 +9989,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Funded Startup,1,106,0.0 +12988,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,18,1.0 +11923,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,2,,,never,23,0.0 +30455,city_91,0.691,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,6,0.0 +32663,city_162,0.767,,Has relevent experience,Part time course,Graduate,STEM,3,50-99,Pvt Ltd,3,74,0.0 +19377,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,100-500,Pvt Ltd,1,3,0.0 +11540,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,NGO,>4,118,0.0 +10757,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,6,100-500,Public Sector,1,160,0.0 +30993,city_160,0.92,Male,Has relevent experience,Full time course,High School,,4,,,1,214,0.0 +29101,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,NGO,2,50,0.0 +25288,city_21,0.624,,Has relevent experience,,,,3,,,1,33,1.0 +10474,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,,131,1.0 +30933,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,8,10000+,Pvt Ltd,1,20,0.0 +28726,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,Other,>20,,,4,11,0.0 +8128,city_11,0.55,Male,Has relevent experience,no_enrollment,High School,,6,,,never,41,0.0 +1753,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,Pvt Ltd,1,284,0.0 +2055,city_149,0.6890000000000001,,No relevent experience,no_enrollment,Graduate,STEM,4,,,1,54,1.0 +5893,city_50,0.8959999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,7,5000-9999,,1,46,0.0 +19798,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,,1,158,0.0 +26570,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,4,14,0.0 +20885,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,9,,NGO,,49,1.0 +11457,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,>4,130,1.0 +2033,city_39,0.898,Male,No relevent experience,no_enrollment,High School,,4,,,2,48,0.0 +5891,city_114,0.9259999999999999,Male,No relevent experience,Part time course,High School,,10,10000+,Pvt Ltd,2,42,0.0 +25123,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,never,106,0.0 +15431,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,54,0.0 +1859,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,>4,84,0.0 +28783,city_145,0.555,Male,No relevent experience,no_enrollment,Masters,Other,>20,,,>4,158,1.0 +28447,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,32,0.0 +4084,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,16,1000-4999,Pvt Ltd,4,15,0.0 +29264,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,1,58,0.0 +23273,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,4,<10,NGO,1,108,0.0 +11856,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,178,0.0 +2462,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,,4,158,0.0 +23349,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,,>20,1000-4999,Public Sector,1,308,1.0 +20950,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,High School,,19,1000-4999,Pvt Ltd,2,19,0.0 +8810,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,High School,,10,,,1,218,0.0 +21345,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,5,100-500,Pvt Ltd,1,34,0.0 +32276,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,3,18,0.0 +18410,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,1,,,1,126,0.0 +24288,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,23,0.0 +20114,city_136,0.897,Male,No relevent experience,Full time course,Masters,STEM,10,<10,Funded Startup,1,80,0.0 +11802,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Early Stage Startup,1,57,0.0 +27723,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Funded Startup,1,21,0.0 +22465,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,50,0.0 +19023,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,25,1.0 +23386,city_100,0.887,Male,No relevent experience,Full time course,Graduate,STEM,7,,,>4,156,1.0 +29416,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,28,0.0 +17513,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,5,<10,Pvt Ltd,1,26,0.0 +22956,city_40,0.7759999999999999,Male,Has relevent experience,,Graduate,STEM,5,50-99,,1,98,0.0 +9813,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Arts,15,,,1,34,1.0 +30611,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,5,,,1,112,1.0 +8927,city_74,0.579,Male,Has relevent experience,no_enrollment,,,5,10/49,Pvt Ltd,3,39,0.0 +16359,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,143,0.0 +4954,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Funded Startup,1,48,0.0 +5536,city_67,0.855,Male,Has relevent experience,,Graduate,STEM,5,,,1,106,1.0 +17234,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,2,50-99,NGO,1,50,1.0 +11452,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,2,10/49,Pvt Ltd,1,39,1.0 +19358,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,Other,<1,10000+,Pvt Ltd,,66,1.0 +13166,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Pvt Ltd,2,30,0.0 +9012,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,14,,Pvt Ltd,1,120,1.0 +26471,city_27,0.848,Male,Has relevent experience,Full time course,High School,,2,100-500,Pvt Ltd,1,91,0.0 +6632,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,5000-9999,Public Sector,>4,105,0.0 +11009,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,4,39,0.0 +14637,city_141,0.763,Male,Has relevent experience,no_enrollment,Masters,STEM,5,<10,Pvt Ltd,1,68,1.0 +23618,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Public Sector,never,134,0.0 +5137,city_103,0.92,Other,No relevent experience,no_enrollment,High School,,4,,Pvt Ltd,never,72,0.0 +4360,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,1,204,0.0 +4123,city_21,0.624,,No relevent experience,Full time course,High School,,4,,Pvt Ltd,never,34,1.0 +1927,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,19,10000+,Pvt Ltd,3,14,0.0 +7554,city_103,0.92,Male,No relevent experience,Full time course,High School,,5,5000-9999,Pvt Ltd,1,44,0.0 +18217,city_94,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,,,never,41,1.0 +3717,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Phd,Business Degree,4,,,4,26,0.0 +29453,city_101,0.5579999999999999,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,100,1.0 +24488,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,98,0.0 +24258,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,6,<10,Pvt Ltd,>4,96,0.0 +31526,city_16,0.91,Female,No relevent experience,no_enrollment,Graduate,Business Degree,<1,1000-4999,Pvt Ltd,1,18,0.0 +24221,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,500-999,Pvt Ltd,1,34,1.0 +28317,city_33,0.44799999999999995,,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,2,14,0.0 +19323,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Early Stage Startup,2,90,1.0 +24373,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,8,100-500,,1,57,0.0 +7388,city_142,0.727,Male,Has relevent experience,no_enrollment,Masters,STEM,12,1000-4999,Pvt Ltd,>4,17,0.0 +16522,city_105,0.794,,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,>4,44,0.0 +29005,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,180,1.0 +27365,city_114,0.9259999999999999,,No relevent experience,Part time course,Graduate,STEM,13,500-999,Pvt Ltd,>4,36,0.0 +7125,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,5,<10,Public Sector,never,109,0.0 +14008,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,6,,,1,16,0.0 +21891,city_16,0.91,Female,No relevent experience,Full time course,High School,,3,,,1,34,1.0 +4531,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,2,75,0.0 +17590,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,2,50-99,Pvt Ltd,1,148,0.0 +11889,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Funded Startup,1,72,0.0 +17846,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,1,109,0.0 +3731,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,18,10000+,Pvt Ltd,4,100,0.0 +1531,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,4,65,0.0 +25248,city_73,0.754,,No relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,never,21,0.0 +30760,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,1,50-99,Other,never,124,1.0 +12386,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,2,65,0.0 +8208,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,17,1.0 +14383,city_89,0.925,,Has relevent experience,no_enrollment,Graduate,Business Degree,13,10000+,Pvt Ltd,,26,0.0 +986,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Funded Startup,1,31,0.0 +12317,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,50,0.0 +17340,city_176,0.764,,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Early Stage Startup,1,7,0.0 +18814,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,4,100-500,Pvt Ltd,1,22,0.0 +6545,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,5000-9999,Pvt Ltd,4,52,1.0 +31065,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,2,100-500,Pvt Ltd,1,76,0.0 +2634,city_90,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,10,,,>4,206,0.0 +17303,city_77,0.83,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,3,144,0.0 +5140,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,never,104,0.0 +14427,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,3,52,1.0 +7596,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,10,50-99,Pvt Ltd,1,45,0.0 +3284,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,>4,64,0.0 +655,city_65,0.802,,Has relevent experience,no_enrollment,Graduate,STEM,18,1000-4999,Pvt Ltd,>4,20,0.0 +22078,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,1,100-500,Public Sector,1,36,0.0 +21684,city_138,0.836,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,>4,6,0.0 +21402,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Early Stage Startup,1,42,1.0 +25286,city_114,0.9259999999999999,,No relevent experience,,,,1,,,1,18,0.0 +20014,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,<1,10/49,Pvt Ltd,>4,57,0.0 +28138,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,66,0.0 +248,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Primary School,,10,10000+,Pvt Ltd,never,9,0.0 +6496,city_149,0.6890000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,4,97,0.0 +23294,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,,,never,98,0.0 +27750,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Funded Startup,1,30,0.0 +19599,city_105,0.794,Male,Has relevent experience,,,,10,100-500,Pvt Ltd,2,43,0.0 +29909,city_104,0.924,Male,No relevent experience,Full time course,High School,,4,,,2,53,0.0 +18712,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,2,500-999,Public Sector,1,7,1.0 +32988,city_149,0.6890000000000001,,Has relevent experience,Full time course,Graduate,STEM,6,5000-9999,Pvt Ltd,1,58,0.0 +17176,city_67,0.855,Male,No relevent experience,no_enrollment,Phd,STEM,9,,,>4,326,0.0 +7839,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,10,10000+,Pvt Ltd,2,72,0.0 +4449,city_150,0.698,,No relevent experience,Full time course,High School,,2,,,,15,1.0 +7485,city_100,0.887,,No relevent experience,no_enrollment,High School,,3,,,never,94,0.0 +826,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Other,1,182,0.0 +14112,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,NGO,1,34,0.0 +9174,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,High School,,3,50-99,Pvt Ltd,2,8,0.0 +31348,city_99,0.915,Other,Has relevent experience,no_enrollment,Phd,STEM,,1000-4999,Pvt Ltd,>4,35,0.0 +16510,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,>4,218,0.0 +26383,city_123,0.738,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,never,13,0.0 +1251,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Business Degree,3,100-500,Pvt Ltd,2,29,0.0 +2084,city_67,0.855,Male,Has relevent experience,Part time course,Graduate,STEM,15,,,1,155,0.0 +28082,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,3,129,0.0 +31366,city_8,0.698,Male,Has relevent experience,no_enrollment,High School,,>20,,,>4,10,0.0 +2574,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,10,50-99,Pvt Ltd,2,41,0.0 +27946,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,>4,41,0.0 +22656,city_70,0.698,Male,No relevent experience,no_enrollment,,,<1,,,never,14,0.0 +6722,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,1,48,0.0 +1786,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,94,0.0 +12325,city_14,0.698,Male,No relevent experience,,Graduate,STEM,2,,,never,4,0.0 +2459,city_7,0.647,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,1000-4999,Pvt Ltd,1,41,0.0 +7021,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,>4,23,0.0 +33161,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Other,1,43,0.0 +14607,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,64,0.0 +2637,city_23,0.899,,Has relevent experience,Full time course,Primary School,,4,100-500,Funded Startup,1,310,0.0 +27872,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,<1,<10,Early Stage Startup,1,73,1.0 +13250,city_11,0.55,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,6,1.0 +32330,city_84,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,Pvt Ltd,>4,122,1.0 +7716,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,1,68,0.0 +24422,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,98,0.0 +5908,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,165,0.0 +17877,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,57,1.0 +12440,city_26,0.698,,Has relevent experience,Full time course,Masters,STEM,5,<10,Pvt Ltd,never,47,0.0 +25636,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,4,40,0.0 +19764,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,5000-9999,Pvt Ltd,1,27,1.0 +7665,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,7,0.0 +8860,city_46,0.762,Male,Has relevent experience,Part time course,Graduate,STEM,9,100-500,Pvt Ltd,1,3,0.0 +8336,city_123,0.738,,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Early Stage Startup,2,75,1.0 +18474,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,19,1.0 +5200,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,9,<10,Pvt Ltd,2,56,1.0 +18971,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,8,50-99,Funded Startup,1,120,0.0 +3429,city_90,0.698,Male,No relevent experience,no_enrollment,High School,,5,,,never,50,0.0 +31420,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Public Sector,3,6,1.0 +27016,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,3,100-500,Pvt Ltd,1,80,0.0 +31868,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,1,6,0.0 +20816,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,1,,,never,110,0.0 +9123,city_45,0.89,Male,No relevent experience,no_enrollment,Graduate,No Major,2,50-99,Pvt Ltd,never,50,0.0 +28064,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,156,1.0 +33198,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,16,<10,Early Stage Startup,2,14,0.0 +25275,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,1,90,0.0 +9451,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,>4,19,0.0 +29360,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,4,,,never,44,1.0 +3296,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,13,10/49,Early Stage Startup,1,27,0.0 +1726,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,2,,,1,101,1.0 +19684,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,6,100-500,Pvt Ltd,>4,52,0.0 +6143,city_117,0.698,,Has relevent experience,no_enrollment,Phd,STEM,15,<10,Pvt Ltd,never,138,0.0 +19365,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,10,<10,,1,44,1.0 +2020,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,54,0.0 +28435,city_21,0.624,,No relevent experience,no_enrollment,High School,,3,,,never,33,0.0 +29023,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,30,0.0 +922,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,14,100-500,Pvt Ltd,4,13,0.0 +3691,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,11,0.0 +21174,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,63,0.0 +8763,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,222,0.0 +8637,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,>20,100-500,Funded Startup,2,74,0.0 +23845,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,57,0.0 +5439,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,12,0.0 +26406,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,2,62,0.0 +22818,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,236,0.0 +32439,city_160,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,2,10/49,Pvt Ltd,2,4,0.0 +30879,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,6,,,1,31,1.0 +3106,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,9,100-500,Pvt Ltd,1,58,0.0 +16231,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,2,8,0.0 +22757,city_162,0.767,Male,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,Pvt Ltd,1,54,0.0 +21290,city_152,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,36,0.0 +31577,city_21,0.624,Other,No relevent experience,no_enrollment,Graduate,STEM,4,,,never,190,1.0 +26824,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,Pvt Ltd,>4,88,0.0 +25704,city_21,0.624,Male,No relevent experience,Full time course,High School,,7,,,never,94,0.0 +7332,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,14,0.0 +20895,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,3,,,never,17,0.0 +16339,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,>4,14,0.0 +23041,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,4,100,0.0 +14712,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,302,0.0 +7656,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,4,44,0.0 +3690,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,24,1.0 +14721,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,,32,0.0 +25011,city_165,0.903,,Has relevent experience,Full time course,Graduate,STEM,11,100-500,Pvt Ltd,>4,158,0.0 +13344,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,,,1,24,1.0 +21360,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,3,22,1.0 +19165,city_16,0.91,,No relevent experience,,Primary School,,7,,,,90,0.0 +28940,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Arts,14,,Funded Startup,1,24,0.0 +7988,city_97,0.925,Male,Has relevent experience,Part time course,Graduate,Arts,3,500-999,Pvt Ltd,1,40,0.0 +7845,city_21,0.624,,Has relevent experience,,Graduate,STEM,3,100-500,Pvt Ltd,,18,1.0 +2461,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,High School,,3,,Pvt Ltd,never,13,0.0 +21795,city_136,0.897,,Has relevent experience,Part time course,Masters,STEM,3,10000+,Pvt Ltd,1,66,0.0 +2692,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,1,122,0.0 +7396,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,49,0.0 +25880,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,38,1.0 +28116,city_143,0.74,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,NGO,1,10,0.0 +14260,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,13,,,2,80,0.0 +9971,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,2,<10,Pvt Ltd,1,130,0.0 +23103,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,<10,Pvt Ltd,>4,35,1.0 +20388,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,17,1.0 +5847,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,11,,,2,146,0.0 +1855,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,,,,172,1.0 +3770,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,Public Sector,2,116,1.0 +25584,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Funded Startup,1,226,0.0 +4416,city_24,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,1,83,0.0 +6208,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,<1,,,never,8,0.0 +14682,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,>4,16,0.0 +4701,city_23,0.899,,No relevent experience,no_enrollment,Primary School,,3,,,never,102,0.0 +4608,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,59,1.0 +2465,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,Business Degree,16,1000-4999,Pvt Ltd,1,50,0.0 +4951,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,1,11,0.0 +7474,city_138,0.836,Male,No relevent experience,Full time course,High School,,10,,,never,27,0.0 +4741,city_104,0.924,,Has relevent experience,Full time course,High School,,5,<10,Early Stage Startup,1,62,0.0 +8538,city_83,0.9229999999999999,,Has relevent experience,Full time course,Masters,STEM,7,50-99,Early Stage Startup,2,31,0.0 +19458,city_127,0.745,Male,No relevent experience,no_enrollment,Masters,STEM,6,,,1,80,1.0 +33321,city_41,0.8270000000000001,Female,Has relevent experience,no_enrollment,Graduate,Arts,11,5000-9999,Pvt Ltd,1,83,0.0 +8866,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,,1,332,1.0 +24250,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10/49,Pvt Ltd,>4,9,1.0 +28008,city_115,0.789,Male,No relevent experience,no_enrollment,Primary School,,1,,,never,146,0.0 +10009,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,100-500,Public Sector,2,8,0.0 +14909,city_136,0.897,,Has relevent experience,Part time course,Graduate,STEM,4,100-500,Pvt Ltd,,39,0.0 +11517,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,3,,,never,90,0.0 +8139,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,4,152,0.0 +15292,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,66,0.0 +20774,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,3,149,0.0 +8880,city_41,0.8270000000000001,,No relevent experience,Part time course,Graduate,Humanities,5,,,4,24,0.0 +32914,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,12,1.0 +18172,city_136,0.897,,No relevent experience,Full time course,Masters,STEM,5,<10,Pvt Ltd,1,148,0.0 +25489,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,8,,,1,70,0.0 +5921,city_102,0.804,Male,Has relevent experience,Part time course,Graduate,STEM,9,<10,Pvt Ltd,1,9,1.0 +30709,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,180,0.0 +3077,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Funded Startup,1,51,0.0 +30898,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,134,0.0 +27910,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,22,0.0 +4994,city_67,0.855,Female,Has relevent experience,Part time course,Graduate,STEM,6,10000+,Pvt Ltd,3,58,0.0 +24860,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,<10,Early Stage Startup,1,84,1.0 +2079,city_76,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Pvt Ltd,1,17,0.0 +19464,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,5,5000-9999,,1,45,0.0 +1444,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,6,,,never,66,0.0 +22080,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,<10,Funded Startup,1,139,0.0 +2141,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,>4,14,1.0 +15844,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,9,50-99,Pvt Ltd,3,56,0.0 +3688,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,never,79,0.0 +13737,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,1,9,1.0 +5119,city_74,0.579,Male,No relevent experience,no_enrollment,High School,,3,,,never,268,0.0 +6693,city_173,0.878,,Has relevent experience,Part time course,Masters,STEM,>20,<10,Pvt Ltd,never,48,0.0 +32674,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,2,22,0.0 +21847,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,>4,7,0.0 +21165,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,500-999,Pvt Ltd,>4,13,0.0 +22874,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,48,0.0 +3073,city_57,0.866,Male,No relevent experience,Part time course,Graduate,STEM,2,,,2,30,1.0 +17914,city_39,0.898,Male,No relevent experience,no_enrollment,Masters,STEM,8,1000-4999,Pvt Ltd,2,113,0.0 +11724,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,1,20,0.0 +23680,city_145,0.555,Male,No relevent experience,no_enrollment,Masters,STEM,3,100-500,Pvt Ltd,1,336,1.0 +14939,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,150,1.0 +19965,city_65,0.802,Female,Has relevent experience,Full time course,Graduate,STEM,4,50-99,,1,8,0.0 +29143,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,>4,108,0.0 +22082,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,96,0.0 +1861,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Public Sector,>4,8,0.0 +17623,city_91,0.691,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,,7,0.0 +26302,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,90,1.0 +31132,city_19,0.682,Male,No relevent experience,Full time course,Graduate,No Major,2,,,never,102,1.0 +6760,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,>4,7,0.0 +20317,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,3,47,0.0 +30980,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Other,2,10000+,Public Sector,1,43,1.0 +7728,city_165,0.903,,Has relevent experience,no_enrollment,Masters,STEM,11,,Pvt Ltd,1,49,0.0 +11563,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,64,1.0 +22410,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,never,2,1.0 +5095,city_120,0.78,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,138,0.0 +13183,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,1,24,0.0 +14345,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,>4,133,0.0 +31271,city_77,0.83,Male,Has relevent experience,no_enrollment,Graduate,No Major,6,100-500,,1,304,0.0 +16430,city_21,0.624,,No relevent experience,Full time course,,,3,,,,10,1.0 +2016,city_102,0.804,,No relevent experience,Full time course,Graduate,STEM,3,5000-9999,Pvt Ltd,2,108,0.0 +19328,city_114,0.9259999999999999,Male,Has relevent experience,,Graduate,Arts,10,,,1,50,0.0 +5521,city_116,0.743,,No relevent experience,no_enrollment,Primary School,,2,,,never,39,0.0 +9834,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,<1,,,1,38,1.0 +6846,city_90,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,14,,,2,10,1.0 +28628,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,100-500,Pvt Ltd,1,107,0.0 +25752,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Funded Startup,1,41,0.0 +6832,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,29,0.0 +22495,city_98,0.9490000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,2,36,0.0 +5405,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,1,10/49,Pvt Ltd,1,37,0.0 +4805,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Public Sector,1,96,0.0 +27590,city_43,0.516,Male,No relevent experience,no_enrollment,Graduate,STEM,5,10000+,Public Sector,>4,7,1.0 +29488,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,>4,25,1.0 +2795,city_23,0.899,,Has relevent experience,Full time course,Graduate,STEM,9,100-500,Early Stage Startup,>4,26,0.0 +26648,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,2,47,0.0 +24447,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,182,0.0 +29057,city_73,0.754,Male,Has relevent experience,Full time course,Graduate,STEM,9,,,2,9,0.0 +28595,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,1,36,0.0 +21507,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,1,50-99,Public Sector,1,74,0.0 +1729,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,,2,28,0.0 +13338,city_21,0.624,,No relevent experience,no_enrollment,Graduate,Other,1,50-99,Pvt Ltd,never,12,1.0 +25939,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,1000-4999,Public Sector,1,72,1.0 +32757,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,4,28,1.0 +461,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,2,51,0.0 +15925,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,2,29,0.0 +847,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,16,10/49,Pvt Ltd,1,20,0.0 +31136,city_42,0.563,,No relevent experience,Full time course,High School,,2,,,never,21,1.0 +8834,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,38,1.0 +28546,city_46,0.762,Male,Has relevent experience,Part time course,Graduate,STEM,20,,,>4,46,1.0 +8726,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,never,67,0.0 +11970,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,9,5000-9999,NGO,1,33,1.0 +14851,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Funded Startup,2,107,0.0 +4627,city_103,0.92,,No relevent experience,no_enrollment,High School,,3,,,never,90,0.0 +32678,city_42,0.563,Other,Has relevent experience,Full time course,Graduate,Arts,<1,1000-4999,,never,4,0.0 +26918,city_16,0.91,Male,No relevent experience,Full time course,Phd,STEM,5,5000-9999,Public Sector,1,13,1.0 +7323,city_118,0.722,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Early Stage Startup,1,50,1.0 +4699,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,12,1.0 +22601,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,2,304,0.0 +3087,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,No Major,>20,100-500,Pvt Ltd,>4,116,0.0 +10661,city_10,0.895,Male,Has relevent experience,no_enrollment,Phd,STEM,18,10000+,Pvt Ltd,2,6,1.0 +17338,city_104,0.924,Male,No relevent experience,Full time course,High School,,3,,,1,103,0.0 +22305,city_175,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,86,0.0 +32827,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,,,1,41,1.0 +3943,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,1,10/49,Public Sector,1,16,1.0 +22400,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,1,48,1.0 +16322,city_99,0.915,Male,No relevent experience,no_enrollment,Graduate,Business Degree,7,50-99,Pvt Ltd,1,44,0.0 +14703,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,3,57,1.0 +31774,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,45,1.0 +20026,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,Business Degree,2,,,2,37,1.0 +17939,city_36,0.893,Male,Has relevent experience,Part time course,High School,,10,50-99,Public Sector,1,47,0.0 +20212,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,151,0.0 +32718,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,>4,166,0.0 +8142,city_45,0.89,,No relevent experience,Full time course,Graduate,STEM,8,,,1,20,0.0 +5881,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,never,306,0.0 +23911,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,8,,,>4,20,1.0 +26875,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,9,50-99,Pvt Ltd,1,50,0.0 +12696,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,1,14,0.0 +8632,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,1,36,0.0 +29829,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,>4,16,1.0 +29454,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,4,,,never,33,0.0 +17654,city_103,0.92,Male,No relevent experience,Part time course,High School,,7,,,1,184,0.0 +307,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,,,1,3,1.0 +16283,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,42,1.0 +9577,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,180,0.0 +6194,city_36,0.893,Male,Has relevent experience,Full time course,Graduate,STEM,10,100-500,Public Sector,1,155,0.0 +10765,city_103,0.92,,No relevent experience,no_enrollment,Masters,Humanities,5,,NGO,4,18,0.0 +31275,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,2,11,1.0 +12670,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,1,9,1.0 +9392,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Pvt Ltd,>4,89,0.0 +2144,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Pvt Ltd,4,2,0.0 +9152,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,4,500-999,Pvt Ltd,1,36,0.0 +23231,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,4,17,0.0 +1817,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,47,0.0 +19089,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Public Sector,>4,17,0.0 +29013,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,>4,96,1.0 +5447,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,7,,Pvt Ltd,never,28,0.0 +21173,city_75,0.9390000000000001,Female,Has relevent experience,Full time course,Masters,STEM,6,,,1,44,0.0 +18291,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,2,57,0.0 +13993,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,2,89,0.0 +9666,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,>4,40,0.0 +6737,city_71,0.884,,Has relevent experience,Part time course,Masters,STEM,10,100-500,,3,7,0.0 +9265,city_73,0.754,Male,Has relevent experience,Part time course,High School,,13,5000-9999,Pvt Ltd,4,90,0.0 +13906,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,9,1000-4999,NGO,2,101,0.0 +22937,city_103,0.92,,No relevent experience,Part time course,Graduate,STEM,4,10000+,Public Sector,,13,0.0 +2949,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,26,0.0 +7417,city_159,0.843,,No relevent experience,Part time course,Graduate,STEM,8,10000+,Pvt Ltd,2,11,0.0 +4186,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,18,1.0 +13041,city_65,0.802,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,2,112,0.0 +11924,city_1,0.847,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,2,76,0.0 +20153,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,,10000+,,,20,1.0 +10890,city_16,0.91,,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,1,58,0.0 +16826,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,4,20,0.0 +23905,city_159,0.843,Male,No relevent experience,Full time course,Graduate,STEM,6,,,>4,154,0.0 +21480,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Early Stage Startup,,12,1.0 +19595,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,Funded Startup,1,96,0.0 +15723,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Primary School,,5,,,never,166,0.0 +33129,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,4,0.0 +33124,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,1,7,0.0 +17684,city_40,0.7759999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,118,0.0 +7503,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,12,0.0 +25897,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,156,0.0 +4323,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,3,65,0.0 +21110,city_97,0.925,Male,No relevent experience,no_enrollment,Graduate,Other,>20,,,2,50,0.0 +19284,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,44,0.0 +9809,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,2,29,0.0 +26046,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,3,14,1.0 +24816,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,13,1000-4999,Public Sector,2,62,0.0 +15088,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Funded Startup,1,107,0.0 +1676,city_99,0.915,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,39,0.0 +13795,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,>4,66,0.0 +10549,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,never,100,0.0 +23274,city_27,0.848,Male,Has relevent experience,no_enrollment,High School,,10,10/49,Early Stage Startup,3,76,0.0 +31334,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Funded Startup,1,48,0.0 +29604,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,4,54,0.0 +11190,city_67,0.855,,Has relevent experience,Part time course,Masters,STEM,6,,,never,12,0.0 +26671,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,1000-4999,Pvt Ltd,1,32,0.0 +4069,city_21,0.624,Male,No relevent experience,,Masters,STEM,4,5000-9999,Pvt Ltd,1,76,1.0 +21451,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,4,82,0.0 +30329,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,>20,500-999,,1,288,1.0 +17109,city_11,0.55,,Has relevent experience,Part time course,Graduate,STEM,<1,,Public Sector,1,20,1.0 +5182,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,Humanities,8,,,4,19,1.0 +16998,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,,1,133,0.0 +2413,city_23,0.899,Male,No relevent experience,no_enrollment,Masters,STEM,14,50-99,Funded Startup,1,69,0.0 +30732,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,<10,Pvt Ltd,>4,87,0.0 +4696,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Pvt Ltd,1,34,0.0 +27232,city_159,0.843,Male,Has relevent experience,Full time course,High School,,4,,,2,144,0.0 +658,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,2,19,0.0 +23956,city_160,0.92,Male,No relevent experience,,,,2,,,never,83,0.0 +9459,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,2,16,0.0 +12641,city_90,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,7,100-500,Pvt Ltd,1,306,0.0 +106,city_57,0.866,Male,No relevent experience,Part time course,Graduate,STEM,12,,,4,81,0.0 +12300,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,4,67,0.0 +19351,city_165,0.903,,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,,never,76,0.0 +18896,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,6,<10,Pvt Ltd,1,15,0.0 +13985,city_65,0.802,Male,Has relevent experience,Full time course,Graduate,STEM,6,1000-4999,Pvt Ltd,never,152,0.0 +2775,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Funded Startup,1,308,1.0 +239,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,50-99,Public Sector,2,214,0.0 +11661,city_50,0.8959999999999999,Male,No relevent experience,Full time course,High School,,3,,,never,74,0.0 +17328,city_160,0.92,Male,No relevent experience,no_enrollment,,,3,,,,53,0.0 +1309,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,>4,30,0.0 +7058,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,Masters,STEM,11,10/49,Pvt Ltd,>4,72,0.0 +30589,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,3,196,1.0 +22131,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,1,64,0.0 +17870,city_23,0.899,Male,Has relevent experience,Full time course,High School,,3,10000+,Pvt Ltd,2,29,0.0 +17964,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,20,500-999,Pvt Ltd,1,31,0.0 +16273,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,1,43,1.0 +23497,city_127,0.745,Male,No relevent experience,Full time course,Graduate,STEM,10,,,1,39,1.0 +29097,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,22,0.0 +17761,city_18,0.8240000000000001,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Funded Startup,1,16,0.0 +540,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,48,0.0 +14246,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,1,13,0.0 +30506,city_61,0.9129999999999999,Female,No relevent experience,no_enrollment,Graduate,Other,3,,,>4,99,1.0 +29797,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,>4,91,0.0 +26465,city_11,0.55,,No relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,1,20,1.0 +26822,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,NGO,1,226,0.0 +28276,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,1,50-99,Pvt Ltd,1,86,0.0 +4983,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,5,10000+,Pvt Ltd,1,336,0.0 +22751,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,,1,204,0.0 +15572,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,never,22,1.0 +21293,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,1,9,0.0 +26523,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,22,0.0 +33015,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,2,42,0.0 +8397,city_103,0.92,,No relevent experience,,High School,,2,,,never,46,0.0 +4682,city_67,0.855,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,56,1.0 +22891,city_176,0.764,,Has relevent experience,,Graduate,STEM,16,,,>4,37,1.0 +26039,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,1,1000-4999,Public Sector,1,10,1.0 +5722,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,never,49,0.0 +33196,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,500-999,Pvt Ltd,2,42,0.0 +2408,city_57,0.866,Male,Has relevent experience,Full time course,Masters,STEM,6,,,1,210,0.0 +16558,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,1,43,0.0 +21487,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,28,0.0 +11394,city_75,0.9390000000000001,,No relevent experience,Full time course,Graduate,STEM,<1,<10,Pvt Ltd,1,154,0.0 +23422,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,<1,,,never,91,1.0 +15228,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,>4,61,0.0 +10922,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,83,0.0 +31659,city_67,0.855,Male,Has relevent experience,Full time course,High School,,16,10000+,Pvt Ltd,>4,14,0.0 +25573,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,>20,,,>4,52,0.0 +5646,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Early Stage Startup,2,23,0.0 +31331,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,>4,282,0.0 +2670,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,10,0.0 +30427,city_103,0.92,Male,No relevent experience,,Graduate,STEM,13,10/49,Pvt Ltd,>4,39,1.0 +20416,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,High School,,20,,,never,149,0.0 +18080,city_67,0.855,Male,No relevent experience,no_enrollment,Primary School,,1,,,1,176,0.0 +5725,city_9,0.743,Female,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,2,222,0.0 +14394,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,1,146,0.0 +26568,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,>4,27,0.0 +19187,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,2,226,0.0 +23892,city_118,0.722,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,2,212,1.0 +23299,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,23,1.0 +27966,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,36,1.0 +10347,city_27,0.848,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,7,0.0 +19282,city_99,0.915,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,5000-9999,Public Sector,>4,4,0.0 +14211,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,49,0.0 +21757,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,2,100-500,Pvt Ltd,1,13,0.0 +23463,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,109,0.0 +11299,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,STEM,15,100-500,Pvt Ltd,3,99,0.0 +29016,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,2,100-500,Pvt Ltd,2,214,0.0 +23963,city_90,0.698,,No relevent experience,no_enrollment,Graduate,STEM,8,,,1,91,1.0 +32038,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,5,10/49,Early Stage Startup,1,34,1.0 +7319,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,2,8,0.0 +3639,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,NGO,1,76,0.0 +4825,city_145,0.555,Male,Has relevent experience,Full time course,Graduate,STEM,4,,,1,43,1.0 +25282,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,5,0.0 +6065,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,,2,6,1.0 +12585,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,13,10000+,Pvt Ltd,1,52,1.0 +27088,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Graduate,STEM,4,,,4,32,0.0 +8399,city_103,0.92,Male,Has relevent experience,no_enrollment,Primary School,,>20,100-500,Pvt Ltd,>4,19,1.0 +24979,city_43,0.516,,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,30,1.0 +8635,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,1,150,1.0 +32108,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Pvt Ltd,1,70,0.0 +11611,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,27,1.0 +11018,city_74,0.579,Male,Has relevent experience,Full time course,Masters,Humanities,3,50-99,Pvt Ltd,1,21,1.0 +27597,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Other,15,1000-4999,Pvt Ltd,1,145,0.0 +20454,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,30,1.0 +21278,city_90,0.698,,Has relevent experience,Full time course,Graduate,STEM,7,50-99,Funded Startup,1,149,0.0 +4049,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,29,0.0 +13744,city_136,0.897,Male,Has relevent experience,,Graduate,STEM,6,100-500,NGO,1,334,0.0 +12792,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Arts,2,<10,Early Stage Startup,2,48,0.0 +12591,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,2,,,1,48,0.0 +17571,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,68,0.0 +26718,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,11,1000-4999,NGO,1,160,0.0 +16030,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Funded Startup,4,155,0.0 +6212,city_160,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,100-500,Pvt Ltd,>4,21,1.0 +4076,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,18,1000-4999,Pvt Ltd,never,128,0.0 +8198,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,4,21,0.0 +6941,city_83,0.9229999999999999,Male,No relevent experience,Part time course,Graduate,STEM,>20,,,>4,7,0.0 +17299,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,3,1000-4999,Public Sector,1,46,1.0 +29120,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,1,204,0.0 +11420,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,99,0.0 +28511,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,4,12,0.0 +19119,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,,1,72,0.0 +33273,city_102,0.804,Male,Has relevent experience,Part time course,High School,,17,50-99,Pvt Ltd,4,20,0.0 +25593,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,5,<10,Early Stage Startup,1,54,0.0 +28788,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Masters,STEM,12,<10,Early Stage Startup,4,28,0.0 +30159,city_103,0.92,Male,No relevent experience,Full time course,High School,,5,,,1,32,1.0 +29494,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,Public Sector,1,50,1.0 +21170,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,3,14,1.0 +9861,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,17,10000+,Public Sector,>4,94,0.0 +28963,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,1000-4999,Pvt Ltd,2,216,0.0 +16612,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,56,0.0 +27255,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,23,0.0 +9872,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,3,81,0.0 +8598,city_162,0.767,Male,Has relevent experience,Full time course,Graduate,STEM,5,,,4,40,1.0 +19941,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,NGO,1,21,0.0 +2837,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,2,36,1.0 +12967,city_46,0.762,Male,Has relevent experience,Full time course,Masters,STEM,15,500-999,Public Sector,2,110,0.0 +32010,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,11,10000+,Pvt Ltd,4,36,1.0 +13710,city_162,0.767,,No relevent experience,no_enrollment,Graduate,Business Degree,2,50-99,Pvt Ltd,1,26,0.0 +4130,city_57,0.866,Other,Has relevent experience,Full time course,Masters,STEM,10,500-999,Pvt Ltd,>4,36,0.0 +6236,city_102,0.804,,No relevent experience,no_enrollment,Graduate,STEM,<1,,,>4,142,1.0 +23952,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,Other,>20,100-500,Pvt Ltd,>4,151,0.0 +346,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,500-999,Pvt Ltd,>4,37,0.0 +22794,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,1,22,1.0 +5883,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,,92,0.0 +16064,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,220,0.0 +18921,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,1000-4999,Pvt Ltd,1,59,0.0 +32976,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,14,5000-9999,Public Sector,1,26,0.0 +22201,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,>4,160,0.0 +14259,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,2,34,1.0 +14868,city_136,0.897,,Has relevent experience,Full time course,Masters,STEM,8,10000+,Pvt Ltd,2,260,0.0 +9496,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,180,0.0 +25701,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,15,10000+,Pvt Ltd,1,39,0.0 +21552,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,23,0.0 +23708,city_89,0.925,Male,No relevent experience,Full time course,High School,,5,,,never,77,0.0 +124,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,34,1.0 +31380,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,1,17,0.0 +12358,city_143,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,,2,77,1.0 +1334,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,STEM,15,500-999,Pvt Ltd,>4,78,0.0 +5958,city_71,0.884,,Has relevent experience,no_enrollment,Masters,Humanities,2,5000-9999,Pvt Ltd,1,26,0.0 +32527,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,3,58,0.0 +32098,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,4,50-99,Pvt Ltd,2,77,0.0 +31360,city_23,0.899,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,9,0.0 +1376,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,5,,,never,47,0.0 +26584,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,125,0.0 +11279,city_165,0.903,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Early Stage Startup,1,23,0.0 +19523,city_89,0.925,,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Funded Startup,4,21,0.0 +10144,city_128,0.527,,No relevent experience,Full time course,Graduate,STEM,2,,,1,40,1.0 +25020,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,5000-9999,Public Sector,2,29,1.0 +8759,city_116,0.743,Male,Has relevent experience,no_enrollment,Primary School,,>20,<10,Funded Startup,1,1,0.0 +23374,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,High School,,16,5000-9999,Pvt Ltd,2,106,0.0 +27623,city_11,0.55,Male,Has relevent experience,Part time course,Graduate,STEM,17,10/49,Funded Startup,1,98,0.0 +1567,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,Pvt Ltd,never,21,1.0 +3762,city_16,0.91,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,<10,Pvt Ltd,>4,144,0.0 +11914,city_11,0.55,Male,No relevent experience,no_enrollment,High School,,<1,,,never,68,1.0 +8354,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Early Stage Startup,1,26,1.0 +28705,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,4,,,2,27,1.0 +8075,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,13,10000+,Pvt Ltd,,90,0.0 +5930,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,2,102,0.0 +11170,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,54,0.0 +132,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,Humanities,1,<10,,1,19,0.0 +8497,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,NGO,1,21,0.0 +1253,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,42,0.0 +24122,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,>4,284,0.0 +22512,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,17,100-500,Pvt Ltd,2,28,0.0 +2746,city_150,0.698,Male,No relevent experience,no_enrollment,Masters,Humanities,<1,,,2,50,0.0 +27483,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,4,89,1.0 +6447,city_160,0.92,Male,No relevent experience,Full time course,High School,,8,100-500,Public Sector,2,48,0.0 +1998,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,NGO,1,21,0.0 +17325,city_21,0.624,,No relevent experience,,High School,,2,,,1,88,0.0 +17994,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,4,75,1.0 +29163,city_159,0.843,Male,No relevent experience,Full time course,High School,,6,,,never,310,0.0 +1675,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,NGO,4,12,0.0 +25134,city_16,0.91,Female,Has relevent experience,Part time course,Graduate,No Major,16,<10,Pvt Ltd,1,45,0.0 +1781,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,>4,7,1.0 +26400,city_46,0.762,Male,Has relevent experience,no_enrollment,High School,,4,500-999,Pvt Ltd,4,31,0.0 +10121,city_99,0.915,,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Pvt Ltd,1,6,0.0 +30561,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Early Stage Startup,1,62,1.0 +2969,city_105,0.794,Male,Has relevent experience,Part time course,Graduate,STEM,5,50-99,,1,28,0.0 +5589,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Early Stage Startup,2,157,0.0 +31456,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,54,0.0 +2273,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,2,86,0.0 +13297,city_143,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Funded Startup,3,28,0.0 +8492,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,3,76,0.0 +25386,city_21,0.624,Male,Has relevent experience,,Masters,STEM,15,50-99,Pvt Ltd,>4,204,1.0 +23096,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,<1,,,1,3,0.0 +15840,city_103,0.92,,No relevent experience,no_enrollment,,,6,,,never,8,0.0 +2749,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,>4,103,0.0 +14034,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Public Sector,>4,9,0.0 +3590,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,never,170,0.0 +30044,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,NGO,2,86,1.0 +31685,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,2,43,0.0 +14843,city_114,0.9259999999999999,Female,Has relevent experience,,Masters,STEM,10,10/49,Funded Startup,1,38,0.0 +12693,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,5000-9999,Pvt Ltd,1,92,0.0 +10731,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,>4,39,0.0 +3822,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,184,1.0 +31034,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,4,16,0.0 +23584,city_173,0.878,Male,No relevent experience,no_enrollment,,,2,,,never,53,0.0 +28824,city_19,0.682,Male,No relevent experience,Part time course,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,35,0.0 +13247,city_19,0.682,,No relevent experience,Full time course,Graduate,STEM,1,,,1,292,1.0 +32691,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,never,64,0.0 +27025,city_16,0.91,,No relevent experience,no_enrollment,Primary School,,2,,,never,150,0.0 +3790,city_114,0.9259999999999999,Other,Has relevent experience,no_enrollment,High School,,14,50-99,Funded Startup,4,70,0.0 +26426,city_105,0.794,Other,Has relevent experience,no_enrollment,High School,,7,,,2,25,0.0 +17049,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Arts,5,5000-9999,Public Sector,1,30,0.0 +18789,city_11,0.55,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,1,70,0.0 +10288,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,,1,111,1.0 +8036,city_73,0.754,Male,Has relevent experience,Full time course,Graduate,STEM,12,,,2,56,0.0 +16527,city_21,0.624,,Has relevent experience,Part time course,Masters,STEM,3,500-999,Pvt Ltd,1,55,1.0 +11866,city_150,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,1,37,0.0 +13662,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,,,1,97,0.0 +22730,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Humanities,4,10000+,Pvt Ltd,1,21,0.0 +19826,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,18,1000-4999,Pvt Ltd,1,21,0.0 +24988,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,122,1.0 +4688,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,2,15,0.0 +11754,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,>4,60,0.0 +7496,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,6,,,3,41,0.0 +20411,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,5000-9999,Pvt Ltd,1,21,1.0 +13571,city_69,0.856,,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,88,0.0 +14778,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Other,1,<10,Pvt Ltd,never,19,1.0 +4490,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Early Stage Startup,1,42,0.0 +13366,city_71,0.884,,No relevent experience,,High School,,11,,,never,232,0.0 +5632,city_48,0.493,,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Pvt Ltd,1,11,0.0 +9629,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,4,166,1.0 +8076,city_16,0.91,,Has relevent experience,Full time course,Graduate,STEM,2,,,,14,0.0 +17653,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,56,0.0 +27032,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,>4,40,0.0 +32290,city_100,0.887,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,102,1.0 +26595,city_44,0.725,Male,No relevent experience,,Primary School,,2,,,1,40,1.0 +14542,city_13,0.8270000000000001,,Has relevent experience,Part time course,High School,,5,10/49,Pvt Ltd,2,27,0.0 +389,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,9,500-999,Public Sector,3,141,0.0 +19639,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,2,160,1.0 +16820,city_73,0.754,Female,Has relevent experience,no_enrollment,,,2,50-99,,1,17,0.0 +4808,city_149,0.6890000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,19,,Pvt Ltd,never,95,0.0 +30362,city_19,0.682,Male,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,13,1.0 +20804,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,2,,,never,214,0.0 +5134,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,104,0.0 +12721,city_65,0.802,Female,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,3,25,0.0 +4743,city_50,0.8959999999999999,Male,No relevent experience,,,,>20,,,never,6,0.0 +20485,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,15,,,>4,24,0.0 +8160,city_13,0.8270000000000001,,Has relevent experience,no_enrollment,Masters,STEM,11,10/49,Pvt Ltd,>4,17,0.0 +11156,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Funded Startup,1,322,0.0 +3125,city_104,0.924,,Has relevent experience,Part time course,Graduate,STEM,9,<10,Early Stage Startup,never,60,0.0 +14063,city_145,0.555,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,22,0.0 +7185,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,5,500-999,Pvt Ltd,2,55,0.0 +6592,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Public Sector,1,4,0.0 +26479,city_134,0.698,Female,No relevent experience,,High School,,3,,,never,35,0.0 +6273,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,3,<10,Pvt Ltd,never,66,0.0 +18387,city_158,0.7659999999999999,,No relevent experience,Full time course,Graduate,STEM,7,,,1,54,0.0 +26650,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,9,50-99,Pvt Ltd,1,7,0.0 +26514,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,,1,11,0.0 +12291,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,2,52,0.0 +7276,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,12,0.0 +24318,city_126,0.479,,No relevent experience,,High School,,,<10,Early Stage Startup,1,38,0.0 +26405,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,No Major,>20,,,>4,48,0.0 +31740,city_126,0.479,,Has relevent experience,Full time course,Masters,Other,>20,10/49,Funded Startup,2,134,0.0 +16564,city_16,0.91,Other,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,1,17,0.0 +28723,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Public Sector,1,50,0.0 +14086,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,1,58,0.0 +18178,city_20,0.7959999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,79,0.0 +27608,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,38,0.0 +17740,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,61,1.0 +6046,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,12,,,4,224,0.0 +3279,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,66,0.0 +2026,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,High School,,2,100-500,Other,2,16,0.0 +9252,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,,,1,22,1.0 +2520,city_65,0.802,,Has relevent experience,Full time course,Graduate,STEM,8,500-999,Pvt Ltd,1,50,1.0 +28613,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,15,10/49,Pvt Ltd,>4,53,0.0 +20688,city_134,0.698,Other,No relevent experience,Full time course,High School,,9,,,1,62,1.0 +28696,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,18,,,2,44,1.0 +21024,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,15,100-500,NGO,1,9,1.0 +9125,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,High School,,3,100-500,,3,55,0.0 +29773,city_78,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Early Stage Startup,1,96,0.0 +912,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,9,,,2,43,0.0 +20614,city_104,0.924,,Has relevent experience,no_enrollment,Masters,Business Degree,>20,,,>4,11,0.0 +19233,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,56,0.0 +13059,city_162,0.767,,No relevent experience,Part time course,Masters,STEM,9,100-500,Pvt Ltd,1,206,1.0 +26562,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,2,92,0.0 +26503,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,>4,20,0.0 +13226,city_155,0.556,Male,Has relevent experience,Part time course,Graduate,STEM,7,1000-4999,Pvt Ltd,1,102,0.0 +3193,city_142,0.727,,Has relevent experience,no_enrollment,Graduate,STEM,20,,,>4,37,0.0 +20231,city_21,0.624,,No relevent experience,Full time course,High School,,2,,,never,72,0.0 +16148,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,,10000+,Pvt Ltd,1,136,0.0 +14754,city_23,0.899,,No relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,1,34,0.0 +20949,city_103,0.92,,Has relevent experience,Full time course,Masters,STEM,10,10/49,Funded Startup,1,105,0.0 +2175,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,,,>4,22,0.0 +22576,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,4,100-500,Pvt Ltd,1,92,0.0 +15115,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,<1,500-999,Pvt Ltd,1,14,0.0 +16853,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Humanities,>20,<10,Pvt Ltd,>4,34,0.0 +32647,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,4,100,0.0 +25936,city_16,0.91,Male,No relevent experience,no_enrollment,Primary School,,2,,,never,14,0.0 +5516,city_165,0.903,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,1,108,0.0 +24853,city_21,0.624,,No relevent experience,Part time course,Masters,STEM,13,,,1,39,1.0 +29379,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,152,0.0 +7163,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,never,23,1.0 +7062,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,>4,34,0.0 +11060,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,155,0.0 +22417,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,1,28,1.0 +29864,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,3,50-99,Pvt Ltd,1,26,0.0 +25000,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,6,1.0 +24010,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,never,166,0.0 +15410,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,170,0.0 +29701,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,4,38,0.0 +6063,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,15,500-999,Pvt Ltd,2,30,0.0 +31542,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,18,500-999,Pvt Ltd,>4,58,1.0 +12403,city_42,0.563,Female,No relevent experience,Full time course,Graduate,STEM,4,,,2,148,0.0 +21753,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,214,0.0 +535,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,73,0.0 +17801,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,119,1.0 +9181,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,69,1.0 +21484,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,10,0.0 +31040,city_21,0.624,,No relevent experience,Part time course,Graduate,STEM,7,1000-4999,Pvt Ltd,4,84,1.0 +20401,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Public Sector,>4,40,0.0 +6188,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,1,72,0.0 +23965,city_21,0.624,Male,Has relevent experience,Full time course,High School,,7,,,1,62,1.0 +23476,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,1,82,0.0 +8212,city_21,0.624,Male,No relevent experience,Full time course,High School,,9,,,never,48,1.0 +26733,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,4,10,0.0 +11137,city_114,0.9259999999999999,Female,No relevent experience,Full time course,High School,,10,10/49,Early Stage Startup,1,74,1.0 +17064,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,6,,,1,90,1.0 +7236,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,18,500-999,Pvt Ltd,>4,15,0.0 +4213,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,123,0.0 +20429,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Other,9,10000+,Pvt Ltd,>4,132,1.0 +5749,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,,Pvt Ltd,never,6,1.0 +17790,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,>4,13,0.0 +22394,city_114,0.9259999999999999,,Has relevent experience,Full time course,Masters,STEM,5,<10,Early Stage Startup,1,24,0.0 +6123,city_116,0.743,Male,Has relevent experience,Full time course,High School,,5,,,never,32,0.0 +19901,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,19,5000-9999,Pvt Ltd,>4,37,0.0 +17696,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,11,,,1,33,0.0 +1047,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,High School,,19,,,1,72,0.0 +15950,city_71,0.884,Male,No relevent experience,Full time course,Graduate,Other,2,,,1,43,1.0 +17379,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,3,10/49,Pvt Ltd,2,15,0.0 +18815,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,Pvt Ltd,3,250,0.0 +7431,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,6,10/49,Pvt Ltd,1,21,1.0 +10831,city_162,0.767,,No relevent experience,Full time course,Graduate,STEM,3,,,1,94,1.0 +33193,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,>20,,,>4,24,0.0 +26265,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Business Degree,15,50-99,Public Sector,1,108,1.0 +20530,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,never,66,0.0 +23227,city_160,0.92,Male,Has relevent experience,no_enrollment,High School,,7,10/49,Pvt Ltd,2,196,0.0 +13821,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,7,,,1,212,0.0 +11995,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,3,12,0.0 +618,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,>4,31,1.0 +29884,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,>4,65,1.0 +24710,city_78,0.579,,No relevent experience,no_enrollment,Primary School,,<1,,,1,34,1.0 +18047,city_136,0.897,,Has relevent experience,Part time course,Masters,STEM,5,50-99,,1,21,0.0 +29798,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,10,100-500,NGO,1,167,0.0 +4100,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,20,10000+,Pvt Ltd,1,58,0.0 +18235,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,9,0.0 +28127,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,1,5,1.0 +13688,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,6,10/49,Pvt Ltd,,45,1.0 +12890,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,NGO,1,165,0.0 +24566,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,56,0.0 +7842,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,45,0.0 +25841,city_71,0.884,Male,No relevent experience,Full time course,High School,,4,,,never,216,0.0 +5557,city_70,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,2,77,0.0 +22437,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Masters,STEM,8,,,1,110,0.0 +15493,city_11,0.55,,Has relevent experience,Part time course,Graduate,STEM,3,100-500,Pvt Ltd,1,50,1.0 +8219,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,2,42,1.0 +6298,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,132,0.0 +17954,city_64,0.6659999999999999,,No relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,2,68,0.0 +12446,city_115,0.789,Male,No relevent experience,Full time course,Graduate,STEM,6,,,3,22,1.0 +29244,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,6,1.0 +5662,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,9,,Pvt Ltd,2,8,1.0 +16738,city_114,0.9259999999999999,,No relevent experience,Part time course,High School,,9,<10,,,76,0.0 +4803,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,3,,,1,7,1.0 +25266,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,No Major,9,100-500,,1,53,0.0 +28396,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,3,0.0 +8179,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Funded Startup,never,90,0.0 +13364,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,2,23,0.0 +18948,city_11,0.55,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,10,1.0 +2829,city_27,0.848,Male,No relevent experience,Full time course,High School,,3,,Pvt Ltd,never,22,0.0 +32523,city_23,0.899,,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Early Stage Startup,1,20,0.0 +29808,city_159,0.843,Male,Has relevent experience,no_enrollment,High School,,3,<10,Pvt Ltd,1,15,0.0 +13627,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,7,50-99,Early Stage Startup,2,18,1.0 +19827,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,4,105,0.0 +5177,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,4,87,1.0 +1569,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,46,0.0 +32888,city_149,0.6890000000000001,,No relevent experience,Part time course,Graduate,STEM,6,,,2,13,1.0 +19904,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,29,0.0 +18727,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,3,44,0.0 +16656,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,Business Degree,1,10/49,Funded Startup,1,86,0.0 +23802,city_123,0.738,,Has relevent experience,Full time course,Graduate,STEM,8,100-500,Pvt Ltd,1,4,0.0 +5052,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,,>4,24,0.0 +22643,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,1,20,0.0 +17936,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,19,,,3,144,0.0 +7358,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,50,0.0 +28530,city_134,0.698,,No relevent experience,Full time course,Graduate,STEM,7,,Public Sector,2,5,0.0 +24655,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,5,,,,83,1.0 +9423,city_71,0.884,,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,106,0.0 +4891,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,12,10/49,Pvt Ltd,1,105,0.0 +10302,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,28,0.0 +3172,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,2,,,,131,0.0 +30710,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,9,,,1,286,1.0 +25474,city_103,0.92,Male,Has relevent experience,Full time course,High School,,6,,NGO,2,36,1.0 +30995,city_78,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,1,20,0.0 +11490,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,never,56,0.0 +7484,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,>20,5000-9999,Pvt Ltd,>4,26,0.0 +13786,city_159,0.843,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,1,28,0.0 +20753,city_1,0.847,Male,No relevent experience,Full time course,High School,,4,10000+,Pvt Ltd,1,114,0.0 +28554,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,6,,,,25,1.0 +18549,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,3,176,1.0 +26673,city_165,0.903,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,Pvt Ltd,1,12,0.0 +5209,city_94,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,19,1.0 +24674,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,20,0.0 +13671,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,8,5000-9999,NGO,1,102,0.0 +15342,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,,1,56,0.0 +5074,city_24,0.698,,No relevent experience,Full time course,High School,,8,,,1,76,1.0 +3160,city_90,0.698,Male,Has relevent experience,no_enrollment,,,>20,,,2,37,0.0 +29867,city_160,0.92,,Has relevent experience,Full time course,Graduate,STEM,11,50-99,Pvt Ltd,1,170,0.0 +23728,city_104,0.924,Male,Has relevent experience,Part time course,Graduate,STEM,>20,5000-9999,Pvt Ltd,1,77,0.0 +27937,city_103,0.92,Other,No relevent experience,no_enrollment,Graduate,STEM,16,10000+,NGO,>4,6,0.0 +30706,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,85,0.0 +27140,city_19,0.682,,No relevent experience,Part time course,Masters,Other,6,,,1,89,0.0 +14258,city_160,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,12,,,1,6,1.0 +18877,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,>4,16,0.0 +7006,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,2,262,0.0 +27279,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,17,5000-9999,Pvt Ltd,>4,45,0.0 +30819,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,>4,8,0.0 +23859,city_100,0.887,Male,Has relevent experience,Part time course,Graduate,STEM,>20,,Pvt Ltd,2,53,0.0 +8261,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,1,47,0.0 +17418,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,6,10000+,Pvt Ltd,never,72,0.0 +31831,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,3,36,0.0 +19096,city_103,0.92,Male,No relevent experience,no_enrollment,,,3,,,never,72,0.0 +15202,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,4,85,0.0 +20508,city_134,0.698,,No relevent experience,Full time course,Graduate,STEM,11,,,never,107,0.0 +22921,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,19,10/49,Pvt Ltd,>4,232,0.0 +26149,city_143,0.74,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,72,1.0 +21647,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,3,141,0.0 +29716,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,1,48,0.0 +9786,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Funded Startup,1,21,0.0 +21943,city_16,0.91,,Has relevent experience,no_enrollment,Phd,STEM,15,10/49,Pvt Ltd,3,4,0.0 +9637,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,4,85,0.0 +31504,city_61,0.9129999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,10,100-500,NGO,1,16,1.0 +12026,city_150,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,Pvt Ltd,1,52,0.0 +3091,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,28,1.0 +24786,city_162,0.767,Female,No relevent experience,no_enrollment,Masters,Business Degree,1,,,never,54,1.0 +2679,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,4,71,0.0 +4687,city_14,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,1,44,0.0 +30170,city_136,0.897,Male,Has relevent experience,no_enrollment,,,>20,,,1,15,0.0 +31047,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,6,,,1,17,1.0 +6672,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Funded Startup,1,11,0.0 +6936,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,3,10/49,Pvt Ltd,1,36,0.0 +3944,city_160,0.92,Other,No relevent experience,Full time course,Masters,STEM,5,,Public Sector,>4,63,0.0 +4047,city_46,0.762,Male,No relevent experience,Part time course,Graduate,STEM,10,,Pvt Ltd,never,20,0.0 +2913,city_21,0.624,Male,No relevent experience,no_enrollment,,,1,,,never,61,1.0 +13154,city_114,0.9259999999999999,Female,No relevent experience,Part time course,Masters,STEM,4,10/49,Public Sector,3,39,0.0 +22444,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,Funded Startup,>4,4,0.0 +28737,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,Humanities,12,100-500,NGO,1,7,0.0 +32548,city_30,0.698,Male,Has relevent experience,Full time course,High School,,9,50-99,Pvt Ltd,1,106,0.0 +9712,city_46,0.762,,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,162,0.0 +12337,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,214,1.0 +21533,city_104,0.924,,Has relevent experience,no_enrollment,Masters,STEM,3,<10,,1,28,0.0 +4777,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,NGO,1,8,0.0 +25903,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,Humanities,9,100-500,Pvt Ltd,1,79,0.0 +21391,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,,,>4,108,0.0 +25616,city_149,0.6890000000000001,Male,Has relevent experience,Full time course,Masters,STEM,19,<10,Funded Startup,1,54,0.0 +2279,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,21,0.0 +6351,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,11,10000+,Pvt Ltd,1,23,0.0 +28941,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,2,19,0.0 +7750,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,1,96,0.0 +24987,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,7,10/49,Early Stage Startup,1,17,0.0 +15208,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,>4,66,1.0 +8542,city_45,0.89,Female,No relevent experience,Part time course,Graduate,STEM,3,,,1,72,0.0 +17789,city_23,0.899,Male,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,,1,152,0.0 +28314,city_97,0.925,Male,Has relevent experience,no_enrollment,High School,,>20,50-99,NGO,>4,88,0.0 +23726,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,2,18,0.0 +21872,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,,1,54,0.0 +25281,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,2,0.0 +4443,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,2,29,0.0 +465,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,4,22,0.0 +14044,city_102,0.804,Male,No relevent experience,no_enrollment,Primary School,,2,,,never,78,0.0 +4148,city_142,0.727,Male,Has relevent experience,no_enrollment,Masters,STEM,15,500-999,Pvt Ltd,4,50,0.0 +14981,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,>4,43,0.0 +11568,city_65,0.802,,Has relevent experience,no_enrollment,Graduate,Business Degree,11,,,1,73,0.0 +14004,city_84,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,,>4,46,1.0 +32144,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,,,2,64,0.0 +22911,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,Public Sector,never,44,1.0 +8512,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,44,0.0 +6731,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,20,1000-4999,Pvt Ltd,>4,11,0.0 +23111,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,never,222,0.0 +15645,city_67,0.855,Female,No relevent experience,no_enrollment,Graduate,STEM,4,100-500,Public Sector,2,35,0.0 +1299,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,42,1.0 +25436,city_103,0.92,Male,Has relevent experience,Part time course,Masters,STEM,12,100-500,Pvt Ltd,3,13,0.0 +5472,city_99,0.915,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Funded Startup,1,85,0.0 +4723,city_144,0.84,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,>4,6,0.0 +17827,city_50,0.8959999999999999,,No relevent experience,Full time course,Graduate,STEM,5,,,,98,0.0 +26871,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,190,0.0 +16102,city_11,0.55,,Has relevent experience,Full time course,Graduate,STEM,3,,,1,41,1.0 +670,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,116,0.0 +26900,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,12,500-999,,1,83,0.0 +20412,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,3,8,0.0 +11054,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,14,1.0 +27146,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,5,10/49,,never,69,0.0 +25725,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,6,10000+,Public Sector,1,9,0.0 +17980,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,1,39,1.0 +7498,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,4,44,0.0 +29616,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,54,0.0 +14511,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,1,8,0.0 +302,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,11,0.0 +30613,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,9,1.0 +25207,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,6,10000+,Pvt Ltd,>4,57,0.0 +7557,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,5000-9999,Pvt Ltd,3,12,0.0 +7657,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,4,26,0.0 +15369,city_21,0.624,,No relevent experience,no_enrollment,Graduate,No Major,4,10/49,Pvt Ltd,1,14,1.0 +5691,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,29,1.0 +10775,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,10,,,3,9,1.0 +16556,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,NGO,1,88,0.0 +16805,city_16,0.91,,No relevent experience,no_enrollment,Phd,STEM,>20,5000-9999,NGO,>4,45,0.0 +16176,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,19,,,>4,41,0.0 +32079,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,5,1000-4999,Pvt Ltd,2,31,1.0 +24058,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,8,,,never,50,1.0 +4372,city_103,0.92,,Has relevent experience,Full time course,Graduate,STEM,14,10000+,Pvt Ltd,1,37,1.0 +23810,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,5,,,1,48,0.0 +1618,city_21,0.624,,No relevent experience,Full time course,Primary School,,3,<10,Early Stage Startup,2,14,1.0 +23718,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,9,1.0 +1734,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,2,61,0.0 +16482,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,2,10000+,Pvt Ltd,2,41,1.0 +21280,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,<10,Pvt Ltd,1,99,0.0 +26280,city_159,0.843,Male,No relevent experience,no_enrollment,Phd,STEM,>20,5000-9999,Public Sector,>4,42,0.0 +31886,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,15,1000-4999,Pvt Ltd,>4,51,1.0 +29562,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,5,100-500,,1,116,0.0 +27984,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,98,0.0 +9165,city_173,0.878,Male,Has relevent experience,no_enrollment,High School,,>20,,,>4,158,0.0 +8878,city_146,0.735,Male,No relevent experience,no_enrollment,Graduate,STEM,2,100-500,Public Sector,2,113,1.0 +28187,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,26,0.0 +26711,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,22,0.0 +21094,city_37,0.794,,No relevent experience,Full time course,Graduate,STEM,7,,,1,77,1.0 +27995,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Pvt Ltd,4,41,0.0 +31262,city_41,0.8270000000000001,Male,Has relevent experience,Part time course,High School,,16,50-99,,1,35,0.0 +9372,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,39,0.0 +27830,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,1,0.0 +32922,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,10/49,Pvt Ltd,1,4,1.0 +30835,city_155,0.556,Male,Has relevent experience,Full time course,Graduate,STEM,9,50-99,Pvt Ltd,2,192,1.0 +23443,city_41,0.8270000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,5,100-500,,>4,57,0.0 +5592,city_144,0.84,,Has relevent experience,Part time course,Graduate,STEM,14,500-999,Public Sector,2,92,0.0 +8416,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Other,15,,,2,57,0.0 +11356,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,1,44,0.0 +17311,city_103,0.92,,No relevent experience,Part time course,Graduate,STEM,2,100-500,Pvt Ltd,1,202,0.0 +16425,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,,4,16,0.0 +30787,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Business Degree,7,50-99,Funded Startup,1,29,0.0 +1520,city_75,0.9390000000000001,Female,No relevent experience,no_enrollment,Graduate,Humanities,8,10/49,NGO,>4,74,0.0 +32134,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,1,4,0.0 +6201,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,2,37,1.0 +18635,city_136,0.897,,No relevent experience,Full time course,Masters,STEM,7,,,never,44,1.0 +29682,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,8,,,2,55,0.0 +20993,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,2,20,0.0 +31102,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,5,,,never,20,0.0 +16242,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,4,50,0.0 +21104,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Public Sector,1,66,0.0 +32091,city_171,0.664,,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Early Stage Startup,1,188,1.0 +3251,city_123,0.738,Male,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,never,40,0.0 +23192,city_142,0.727,,No relevent experience,Part time course,Masters,STEM,12,5000-9999,Public Sector,1,91,0.0 +24305,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,55,0.0 +27068,city_75,0.9390000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,35,0.0 +16483,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,,36,0.0 +20221,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,28,0.0 +30052,city_53,0.74,,No relevent experience,Full time course,Graduate,STEM,2,,,1,62,1.0 +21577,city_73,0.754,Male,No relevent experience,Full time course,,,1,,,1,57,0.0 +11670,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,7,10000+,Pvt Ltd,>4,110,0.0 +11344,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,2,39,0.0 +8565,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,,1,25,1.0 +9017,city_103,0.92,Male,No relevent experience,no_enrollment,,,5,,,never,110,0.0 +18694,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,5,<10,Funded Startup,1,31,0.0 +17407,city_103,0.92,Female,No relevent experience,no_enrollment,Phd,Humanities,>20,10000+,Public Sector,>4,17,0.0 +18645,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,1,154,1.0 +23757,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,15,,,4,132,0.0 +21854,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,Arts,16,10/49,Funded Startup,>4,11,0.0 +31823,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,2,46,1.0 +26372,city_103,0.92,Female,No relevent experience,Part time course,Graduate,STEM,3,10/49,Public Sector,1,39,1.0 +6764,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,1,,,never,91,1.0 +16666,city_136,0.897,,Has relevent experience,Part time course,Graduate,STEM,3,5000-9999,Pvt Ltd,never,20,0.0 +18067,city_97,0.925,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,32,0.0 +10404,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,No Major,>20,<10,Pvt Ltd,>4,154,0.0 +7899,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,57,0.0 +8854,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,35,0.0 +31335,city_152,0.698,Female,No relevent experience,Full time course,Graduate,STEM,8,1000-4999,Public Sector,1,94,1.0 +25943,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,<1,,,never,31,1.0 +15862,city_16,0.91,Male,Has relevent experience,Part time course,High School,,6,500-999,Pvt Ltd,1,12,0.0 +13145,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Pvt Ltd,3,33,0.0 +30764,city_16,0.91,Other,No relevent experience,,High School,,1,,,never,34,1.0 +5910,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,never,102,1.0 +15050,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,2,30,0.0 +8655,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,>4,80,1.0 +10032,city_98,0.9490000000000001,Male,No relevent experience,no_enrollment,Masters,Business Degree,16,10000+,Pvt Ltd,>4,23,1.0 +17995,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Funded Startup,2,50,0.0 +9519,city_8,0.698,Male,No relevent experience,,,,6,,,1,33,0.0 +30386,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,45,0.0 +19806,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,>4,39,0.0 +32712,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,334,0.0 +33341,city_75,0.9390000000000001,Male,Has relevent experience,Full time course,High School,,6,50-99,Pvt Ltd,1,28,0.0 +3721,city_160,0.92,,No relevent experience,no_enrollment,High School,,3,,,,44,0.0 +25523,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,4,56,1.0 +29676,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,6,100-500,Funded Startup,1,116,0.0 +31039,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,2,10000+,Public Sector,2,92,1.0 +14787,city_78,0.579,,No relevent experience,,,,<1,,,1,163,1.0 +30133,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,44,1.0 +27704,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,never,55,0.0 +27604,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,4,25,0.0 +17235,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,15,,,3,83,1.0 +16981,city_116,0.743,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,3,54,0.0 +32132,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,1,52,0.0 +11637,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,9,10000+,Pvt Ltd,>4,52,0.0 +12277,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Funded Startup,1,47,0.0 +21505,city_114,0.9259999999999999,,Has relevent experience,Full time course,Graduate,STEM,18,1000-4999,Pvt Ltd,3,34,1.0 +15530,city_136,0.897,,No relevent experience,no_enrollment,Masters,STEM,3,100-500,Public Sector,>4,96,0.0 +19502,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,,,1,4,0.0 +781,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,11,10/49,Early Stage Startup,2,26,0.0 +9958,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,Business Degree,11,,,4,30,1.0 +33293,city_100,0.887,,No relevent experience,Full time course,Graduate,STEM,3,,,1,35,1.0 +7955,city_100,0.887,,No relevent experience,Full time course,Graduate,STEM,8,,,never,106,0.0 +27929,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,2,16,1.0 +4054,city_67,0.855,Male,No relevent experience,no_enrollment,High School,,3,,,never,46,0.0 +24241,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,5,1000-4999,,1,55,0.0 +8553,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,1,71,0.0 +5127,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,34,0.0 +8788,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Arts,11,,,never,84,0.0 +1754,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,50-99,Pvt Ltd,2,6,0.0 +17754,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Other,1,129,0.0 +20873,city_103,0.92,,Has relevent experience,no_enrollment,Masters,Other,>20,,,>4,90,1.0 +11238,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,,,1,232,0.0 +8119,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10/49,Pvt Ltd,2,26,0.0 +12598,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,12,500-999,Pvt Ltd,3,110,1.0 +31046,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,>4,9,0.0 +29700,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,90,1.0 +14665,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,500-999,Pvt Ltd,2,45,0.0 +12589,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,>4,24,0.0 +31030,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Funded Startup,1,256,0.0 +26585,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,High School,,5,500-999,Pvt Ltd,1,20,0.0 +28646,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,18,1.0 +31793,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,14,10000+,Pvt Ltd,1,11,0.0 +7939,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,>4,45,1.0 +17157,city_102,0.804,Male,Has relevent experience,no_enrollment,Phd,STEM,19,,,never,11,0.0 +6327,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,11,0.0 +6730,city_23,0.899,Male,Has relevent experience,no_enrollment,High School,,8,50-99,Public Sector,1,34,0.0 +23339,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,5,,,1,90,0.0 +7994,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,9,5000-9999,Public Sector,1,96,0.0 +17641,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,,>4,54,0.0 +17735,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,2,,,1,226,1.0 +13025,city_69,0.856,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,78,0.0 +13046,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Arts,>20,,,2,110,0.0 +9315,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,19,1000-4999,Pvt Ltd,>4,11,1.0 +25212,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,,never,52,1.0 +13610,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,24,0.0 +22167,city_103,0.92,Male,No relevent experience,Full time course,Masters,Humanities,8,50-99,Public Sector,3,174,0.0 +5187,city_99,0.915,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,2,19,0.0 +17395,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,,,1,26,1.0 +27507,city_23,0.899,Female,Has relevent experience,no_enrollment,Graduate,STEM,17,<10,Funded Startup,1,52,0.0 +4191,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,37,0.0 +363,city_91,0.691,Male,Has relevent experience,Full time course,Graduate,STEM,4,,,never,32,1.0 +22163,city_16,0.91,,No relevent experience,Full time course,Graduate,STEM,4,,,,56,0.0 +13399,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,Business Degree,19,10000+,Pvt Ltd,>4,174,1.0 +20467,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,50-99,NGO,1,98,0.0 +19631,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,6,0.0 +1358,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Funded Startup,1,44,0.0 +23008,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,5000-9999,Pvt Ltd,1,11,0.0 +17185,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,,,3,5,1.0 +27436,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,1,,,1,126,0.0 +6127,city_61,0.9129999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,14,,Pvt Ltd,1,39,0.0 +21527,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,6,,,>4,41,0.0 +28199,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,4,124,0.0 +5548,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,26,1.0 +13641,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,12,10000+,Public Sector,1,140,0.0 +32045,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,6,10000+,Pvt Ltd,4,17,0.0 +29361,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10/49,Early Stage Startup,2,80,0.0 +28203,city_97,0.925,Male,No relevent experience,Full time course,High School,,7,,,1,16,0.0 +9606,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,141,1.0 +15857,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,119,0.0 +17518,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,8,<10,Early Stage Startup,never,6,1.0 +15309,city_89,0.925,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Public Sector,never,80,0.0 +27401,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,2,30,0.0 +8947,city_118,0.722,Male,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,1,74,1.0 +30508,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,,1,222,1.0 +27212,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,140,0.0 +12444,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,2,<10,Early Stage Startup,2,54,0.0 +30609,city_21,0.624,Male,Has relevent experience,,Masters,STEM,9,50-99,Funded Startup,1,23,1.0 +20309,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,,1,44,0.0 +1857,city_123,0.738,Male,Has relevent experience,Full time course,Graduate,STEM,10,10000+,Pvt Ltd,1,144,0.0 +20483,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,,,never,26,1.0 +30922,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,2,84,0.0 +23310,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,17,10000+,Pvt Ltd,3,90,1.0 +12396,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,100-500,Pvt Ltd,1,75,1.0 +16008,city_128,0.527,Female,No relevent experience,Full time course,High School,,<1,,,never,48,1.0 +12389,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,1,,,1,14,0.0 +10860,city_19,0.682,Male,No relevent experience,Full time course,High School,,5,,,never,29,0.0 +29002,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,never,73,1.0 +22034,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,1,14,0.0 +23291,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Funded Startup,1,226,0.0 +9741,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,High School,,12,,,>4,114,1.0 +6364,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Humanities,>20,,,2,17,0.0 +17152,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,2,26,0.0 +480,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,2,34,0.0 +22830,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,4,37,0.0 +22597,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,3,10000+,,1,33,1.0 +950,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,never,15,0.0 +6090,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,19,50-99,Pvt Ltd,>4,13,0.0 +10676,city_10,0.895,Other,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,152,0.0 +20779,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,15,,,1,126,0.0 +31561,city_149,0.6890000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,17,50-99,Pvt Ltd,1,50,0.0 +3485,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,2,178,0.0 +31916,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,2,17,1.0 +4533,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,1,66,0.0 +10440,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,2,0.0 +6663,city_91,0.691,Male,Has relevent experience,Full time course,Graduate,STEM,3,<10,Pvt Ltd,1,26,0.0 +7445,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Funded Startup,1,200,0.0 +26445,city_46,0.762,Male,No relevent experience,Part time course,Graduate,Business Degree,<1,100-500,Pvt Ltd,1,74,1.0 +5438,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,84,0.0 +19898,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Masters,STEM,17,1000-4999,NGO,1,62,0.0 +14096,city_103,0.92,,Has relevent experience,no_enrollment,Masters,Humanities,9,10000+,Pvt Ltd,>4,192,0.0 +30186,city_41,0.8270000000000001,Male,No relevent experience,Part time course,Graduate,STEM,5,,,>4,47,1.0 +8665,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,47,1.0 +19606,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,1,26,1.0 +30976,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Other,4,100-500,Funded Startup,2,127,0.0 +24944,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,never,44,0.0 +32570,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,91,1.0 +11745,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,7,500-999,Public Sector,never,25,0.0 +4206,city_103,0.92,Other,No relevent experience,Part time course,Graduate,STEM,15,,Pvt Ltd,never,118,0.0 +24037,city_76,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,<10,Pvt Ltd,4,31,0.0 +18195,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,3,75,0.0 +31587,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Funded Startup,1,10,0.0 +7533,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,80,0.0 +16861,city_46,0.762,,No relevent experience,Full time course,Graduate,STEM,3,,,never,264,0.0 +6640,city_144,0.84,,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,3,15,0.0 +21586,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Humanities,1,,,1,42,1.0 +1842,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,102,1.0 +1884,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,2,43,1.0 +11181,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,4,,,1,87,0.0 +2928,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,1,60,0.0 +10586,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,4,20,0.0 +28944,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,6,,,>4,64,0.0 +30010,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,2,106,0.0 +21617,city_134,0.698,,No relevent experience,no_enrollment,,,,,,never,45,0.0 +9565,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,3,51,0.0 +32829,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,23,0.0 +17509,city_105,0.794,Male,Has relevent experience,,Graduate,STEM,5,100-500,,2,44,0.0 +24917,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,1,204,0.0 +16264,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,500-999,Pvt Ltd,>4,14,0.0 +21259,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,1,50-99,NGO,1,39,1.0 +32705,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,4,10/49,Public Sector,2,100,0.0 +30143,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,6,1.0 +11360,city_45,0.89,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,82,0.0 +17321,city_65,0.802,Male,No relevent experience,Full time course,Graduate,STEM,8,,,1,36,1.0 +31544,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,1,10,0.0 +30213,city_21,0.624,,No relevent experience,no_enrollment,,,,,,never,44,0.0 +30005,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,10,,,>4,58,0.0 +23626,city_7,0.647,Male,Has relevent experience,no_enrollment,Masters,STEM,6,<10,Pvt Ltd,1,15,0.0 +18849,city_46,0.762,Male,Has relevent experience,Full time course,Graduate,STEM,4,5000-9999,Pvt Ltd,1,62,0.0 +27874,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,,102,1.0 +19475,city_14,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,14,<10,Pvt Ltd,2,16,0.0 +3632,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,11,,,1,48,1.0 +19442,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,4,34,0.0 +29614,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Funded Startup,1,180,0.0 +31437,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,12,<10,Pvt Ltd,4,37,0.0 +7966,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,1,10/49,Pvt Ltd,1,22,1.0 +30269,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,39,1.0 +13164,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,2,72,0.0 +20697,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Funded Startup,1,134,1.0 +1888,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,5000-9999,Pvt Ltd,>4,31,1.0 +22345,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,>20,50-99,Pvt Ltd,>4,57,0.0 +9594,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,78,1.0 +11442,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Graduate,Humanities,>20,100-500,Pvt Ltd,2,50,0.0 +22663,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,<1,10/49,Funded Startup,1,140,0.0 +16181,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,11,,,4,9,1.0 +20139,city_160,0.92,Male,No relevent experience,Full time course,High School,,5,10000+,Pvt Ltd,1,14,0.0 +31512,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,2,23,0.0 +1139,city_71,0.884,Female,Has relevent experience,Part time course,,,10,100-500,Pvt Ltd,2,57,0.0 +26759,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,<10,Other,1,58,1.0 +25538,city_103,0.92,,No relevent experience,Full time course,Graduate,Other,5,,,never,42,0.0 +29899,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,<1,1000-4999,Pvt Ltd,1,7,0.0 +17312,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,2,44,0.0 +23837,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,15,500-999,Pvt Ltd,>4,67,0.0 +13321,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,>4,83,0.0 +2524,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,5,<10,,1,20,1.0 +13125,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,Pvt Ltd,>4,64,1.0 +19253,city_71,0.884,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,312,0.0 +25581,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,192,0.0 +22752,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,STEM,4,10/49,Funded Startup,2,65,0.0 +29390,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,10000+,,1,96,0.0 +18098,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,46,0.0 +31431,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,32,1.0 +16947,city_136,0.897,,No relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,4,15,0.0 +33215,city_46,0.762,Male,No relevent experience,,Graduate,STEM,4,,,1,44,1.0 +16655,city_129,0.625,,No relevent experience,Full time course,,,2,,,never,42,0.0 +17539,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,2,268,0.0 +2619,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Funded Startup,1,33,0.0 +27978,city_71,0.884,Male,Has relevent experience,Part time course,Graduate,STEM,5,100-500,Public Sector,1,7,0.0 +32660,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,99,1.0 +17448,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,7,5000-9999,,1,45,1.0 +87,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,10/49,Pvt Ltd,1,76,0.0 +29533,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,17,0.0 +30667,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,4,,,1,33,0.0 +7492,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,8,1000-4999,Pvt Ltd,1,56,0.0 +24929,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,2,500-999,,1,7,0.0 +20390,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,1,,,never,27,1.0 +16435,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,1,53,0.0 +8504,city_11,0.55,Male,Has relevent experience,Part time course,Graduate,STEM,4,10/49,Pvt Ltd,1,97,0.0 +16669,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Other,6,1000-4999,,1,11,0.0 +26778,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,3,50-99,Pvt Ltd,1,10,1.0 +11991,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,4,141,0.0 +6218,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,,Pvt Ltd,1,6,0.0 +2738,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,5000-9999,,1,87,1.0 +13194,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,54,1.0 +7082,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,2,68,0.0 +31915,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,never,23,0.0 +25319,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Phd,STEM,14,<10,Pvt Ltd,>4,52,1.0 +17695,city_103,0.92,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Public Sector,4,31,0.0 +12957,city_73,0.754,,No relevent experience,no_enrollment,Graduate,Other,14,,,1,63,1.0 +23806,city_114,0.9259999999999999,,Has relevent experience,Full time course,,,,100-500,,1,35,0.0 +21417,city_162,0.767,Male,Has relevent experience,Full time course,Graduate,STEM,15,,,1,174,0.0 +12956,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,4,42,0.0 +26623,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Early Stage Startup,1,47,1.0 +7771,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,,,never,80,0.0 +22071,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,>4,123,0.0 +7583,city_136,0.897,Male,No relevent experience,Full time course,Masters,STEM,5,,,1,46,0.0 +1698,city_143,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,58,1.0 +11807,city_21,0.624,,No relevent experience,Full time course,High School,,<1,,,never,44,1.0 +15588,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,,never,46,0.0 +26654,city_41,0.8270000000000001,Male,Has relevent experience,,Graduate,Other,2,10/49,,never,107,0.0 +7237,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,2,24,1.0 +12458,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Business Degree,19,50-99,Pvt Ltd,3,63,0.0 +10919,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,55,1.0 +32309,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,500-999,Pvt Ltd,2,6,0.0 +21034,city_16,0.91,Other,No relevent experience,Full time course,Graduate,STEM,2,50-99,,2,66,0.0 +18002,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,182,1.0 +20544,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,2,50-99,Pvt Ltd,1,35,1.0 +21611,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,,2,138,0.0 +30467,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,24,1.0 +22016,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,No Major,4,,,1,120,0.0 +17145,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,55,0.0 +10778,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,,2,45,0.0 +12353,city_158,0.7659999999999999,,Has relevent experience,Part time course,Graduate,STEM,11,100-500,Pvt Ltd,2,210,0.0 +7832,city_116,0.743,Male,No relevent experience,no_enrollment,Masters,STEM,2,100-500,,1,4,0.0 +20313,city_103,0.92,Female,No relevent experience,no_enrollment,High School,,<1,,,never,48,0.0 +8941,city_165,0.903,,Has relevent experience,Full time course,Graduate,STEM,10,500-999,Pvt Ltd,3,4,0.0 +14518,city_123,0.738,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,4,54,0.0 +22537,city_71,0.884,Male,Has relevent experience,Full time course,Masters,STEM,7,500-999,,1,23,0.0 +15433,city_74,0.579,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,68,0.0 +13656,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,63,0.0 +17775,city_23,0.899,Female,Has relevent experience,no_enrollment,Graduate,Humanities,>20,5000-9999,NGO,>4,34,0.0 +1908,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10000+,Pvt Ltd,1,184,1.0 +30816,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,500-999,Public Sector,1,55,0.0 +6853,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,1,50-99,NGO,never,5,1.0 +4441,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,44,0.0 +18941,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,>4,73,0.0 +8966,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Other,1,90,0.0 +23089,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,,>4,214,0.0 +21307,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,2,124,0.0 +31952,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,9,,,>4,18,0.0 +18270,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,12,,Public Sector,1,86,0.0 +26172,city_50,0.8959999999999999,,Has relevent experience,no_enrollment,Masters,STEM,17,,,never,44,0.0 +17002,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Business Degree,2,1000-4999,Pvt Ltd,1,36,0.0 +8400,city_71,0.884,Male,Has relevent experience,no_enrollment,High School,,>20,50-99,Funded Startup,3,84,0.0 +13092,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Pvt Ltd,3,55,0.0 +24986,city_138,0.836,Male,Has relevent experience,Part time course,Masters,STEM,17,10000+,Pvt Ltd,1,19,0.0 +13436,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,Pvt Ltd,1,160,0.0 +10899,city_136,0.897,Other,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,,1,10,0.0 +20066,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Graduate,Other,8,50-99,Pvt Ltd,1,57,0.0 +3982,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,9,0.0 +5607,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,25,1.0 +19404,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,never,36,1.0 +11917,city_98,0.9490000000000001,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,13,0.0 +24157,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,32,1.0 +31592,city_65,0.802,Male,No relevent experience,Full time course,High School,,<1,,Pvt Ltd,never,12,0.0 +21798,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,50,0.0 +11600,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,1,102,1.0 +14677,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Public Sector,2,107,0.0 +5429,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,,2,64,0.0 +28374,city_76,0.698,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10/49,Pvt Ltd,>4,16,0.0 +28755,city_100,0.887,Male,No relevent experience,no_enrollment,High School,,2,,,1,40,0.0 +21435,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,28,0.0 +2389,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,6,<10,Early Stage Startup,never,31,0.0 +8315,city_7,0.647,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,6,50-99,Pvt Ltd,1,113,0.0 +18672,city_121,0.7809999999999999,,Has relevent experience,Full time course,Masters,STEM,1,10/49,Pvt Ltd,1,109,0.0 +19393,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,Masters,Humanities,4,,,3,103,0.0 +12600,city_102,0.804,,Has relevent experience,no_enrollment,High School,,4,50-99,Pvt Ltd,1,81,0.0 +21279,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,4,10/49,Pvt Ltd,1,104,0.0 +7603,city_160,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,3,,,1,88,0.0 +593,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,10,1.0 +17976,city_50,0.8959999999999999,Male,No relevent experience,Full time course,High School,,4,,,2,11,0.0 +15075,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,,2,214,0.0 +27578,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Other,2,1000-4999,NGO,1,110,0.0 +8181,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,34,0.0 +25706,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,34,0.0 +4727,city_102,0.804,,No relevent experience,no_enrollment,,,2,,,never,42,0.0 +18234,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,2,112,1.0 +883,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,13,10000+,Public Sector,>4,12,0.0 +14889,city_103,0.92,Other,Has relevent experience,no_enrollment,Masters,STEM,7,,,4,35,0.0 +13844,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,15,10000+,Pvt Ltd,>4,156,0.0 +24328,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,3,50-99,Pvt Ltd,1,112,0.0 +30663,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Funded Startup,1,77,0.0 +18110,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,<10,Pvt Ltd,1,6,0.0 +14752,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,2,100-500,Pvt Ltd,1,220,1.0 +4856,city_21,0.624,Male,Has relevent experience,Part time course,Phd,STEM,20,10/49,Pvt Ltd,>4,108,1.0 +482,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,14,50-99,Pvt Ltd,1,89,0.0 +21755,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,1,63,0.0 +28307,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Funded Startup,1,12,0.0 +951,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,13,0.0 +11134,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,35,0.0 +29871,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Pvt Ltd,>4,4,0.0 +14961,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,14,,,1,200,0.0 +17859,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,8,50-99,Pvt Ltd,1,56,0.0 +3455,city_67,0.855,,No relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,1,14,0.0 +22412,city_155,0.556,,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Early Stage Startup,1,26,1.0 +20141,city_102,0.804,Female,Has relevent experience,no_enrollment,Masters,STEM,11,500-999,Pvt Ltd,1,81,0.0 +11756,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,1,162,1.0 +19422,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,<10,Pvt Ltd,1,102,1.0 +11723,city_159,0.843,Female,No relevent experience,Full time course,High School,,3,,,never,37,0.0 +31562,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,140,0.0 +7152,city_127,0.745,,No relevent experience,Full time course,High School,,3,,,never,18,0.0 +32530,city_150,0.698,Male,No relevent experience,Full time course,High School,,3,,Pvt Ltd,never,78,0.0 +6728,city_173,0.878,,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,Pvt Ltd,1,96,0.0 +17556,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,5,<10,Other,never,78,1.0 +1085,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,1,166,0.0 +27193,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,,,>4,19,1.0 +3915,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Funded Startup,2,302,0.0 +28260,city_143,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,40,0.0 +7585,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,,,3,14,1.0 +30253,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,500-999,Pvt Ltd,1,26,0.0 +22396,city_11,0.55,Male,Has relevent experience,Part time course,Masters,STEM,7,10000+,Pvt Ltd,1,56,0.0 +8821,city_127,0.745,Female,Has relevent experience,no_enrollment,Masters,STEM,15,,,>4,132,0.0 +2806,city_67,0.855,,Has relevent experience,Part time course,Graduate,STEM,5,50-99,Pvt Ltd,3,41,0.0 +12171,city_28,0.9390000000000001,,No relevent experience,Full time course,High School,,9,,,never,6,0.0 +5437,city_103,0.92,,Has relevent experience,Full time course,Graduate,STEM,5,,,1,76,1.0 +20086,city_102,0.804,Female,Has relevent experience,Part time course,High School,,3,,,1,2,0.0 +31727,city_93,0.865,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,28,0.0 +12356,city_143,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,never,22,0.0 +8182,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,>4,16,0.0 +24016,city_11,0.55,Male,Has relevent experience,Part time course,Graduate,STEM,10,500-999,Pvt Ltd,1,62,1.0 +16000,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,NGO,1,11,0.0 +25355,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,7,500-999,Pvt Ltd,1,278,0.0 +24991,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,4,,,1,9,1.0 +12318,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,12,10000+,Public Sector,>4,128,0.0 +20202,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,1,72,0.0 +23389,city_155,0.556,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,27,1.0 +29161,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,50-99,Funded Startup,1,106,0.0 +9534,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,24,0.0 +19389,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,13,0.0 +17067,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Phd,STEM,9,10/49,NGO,1,34,0.0 +8314,city_159,0.843,Male,Has relevent experience,Full time course,Graduate,STEM,9,50-99,Funded Startup,1,40,0.0 +27119,city_152,0.698,Male,No relevent experience,Full time course,Graduate,Business Degree,1,,,never,74,0.0 +25741,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,2,55,0.0 +27683,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,19,1000-4999,Pvt Ltd,>4,48,0.0 +16951,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,NGO,>4,13,1.0 +9624,city_136,0.897,Female,No relevent experience,no_enrollment,Phd,Humanities,19,100-500,NGO,1,74,0.0 +21520,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,1,9,1.0 +9308,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,,1,6,0.0 +7961,city_28,0.9390000000000001,,Has relevent experience,Full time course,Graduate,STEM,5,<10,Pvt Ltd,1,86,0.0 +19410,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,1,1000-4999,Pvt Ltd,1,298,1.0 +11069,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,100-500,Pvt Ltd,1,41,0.0 +21287,city_12,0.64,Male,Has relevent experience,Part time course,Graduate,STEM,3,50-99,Pvt Ltd,1,164,0.0 +10808,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,<10,Early Stage Startup,1,102,1.0 +16983,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,1,50-99,Public Sector,never,48,0.0 +15762,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,50,0.0 +74,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,1,50,0.0 +2210,city_143,0.74,,Has relevent experience,,Phd,Humanities,2,,,1,20,0.0 +20987,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,2,<10,Early Stage Startup,1,39,0.0 +11633,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,1,68,0.0 +12594,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,6,<10,NGO,>4,78,0.0 +33045,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,2,48,0.0 +5079,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Business Degree,>20,10000+,Pvt Ltd,3,86,0.0 +22701,city_179,0.512,,No relevent experience,Full time course,Graduate,STEM,2,,,never,50,1.0 +9124,city_103,0.92,,Has relevent experience,no_enrollment,Primary School,,13,50-99,Early Stage Startup,2,26,0.0 +9389,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,>4,51,0.0 +31982,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,6,50-99,,1,30,0.0 +22429,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,2,55,1.0 +23095,city_2,0.7879999999999999,,Has relevent experience,no_enrollment,Masters,STEM,14,<10,Pvt Ltd,1,122,0.0 +19732,city_19,0.682,Male,No relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,47,0.0 +33185,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Pvt Ltd,2,92,0.0 +10299,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,,1,21,0.0 +30091,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,29,0.0 +27208,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Funded Startup,>4,31,0.0 +6064,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,>4,65,0.0 +32477,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,1,11,0.0 +13504,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,19,500-999,Public Sector,>4,166,0.0 +5174,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,7,500-999,Pvt Ltd,1,15,0.0 +32302,city_105,0.794,Male,No relevent experience,Full time course,High School,,3,50-99,Pvt Ltd,1,30,1.0 +14662,city_150,0.698,,No relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,4,102,0.0 +8402,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,4,28,0.0 +5006,city_160,0.92,,No relevent experience,no_enrollment,,,5,,,never,82,0.0 +4996,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,9,,,never,50,1.0 +29210,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,42,1.0 +24289,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,12,1.0 +15173,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,3,,,1,5,1.0 +12364,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,7,0.0 +18413,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,never,23,1.0 +15454,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,3,,,1,4,0.0 +21765,city_114,0.9259999999999999,,Has relevent experience,,Masters,Other,10,50-99,,1,58,0.0 +23872,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,8,0.0 +17521,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Business Degree,11,10000+,Pvt Ltd,>4,12,0.0 +12681,city_16,0.91,Male,Has relevent experience,Full time course,High School,,1,10/49,Pvt Ltd,1,86,0.0 +19064,city_73,0.754,Male,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,1,23,0.0 +20276,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,>4,308,0.0 +16874,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,16,,Pvt Ltd,1,5,0.0 +32746,city_28,0.9390000000000001,Male,Has relevent experience,Part time course,High School,,5,1000-4999,Pvt Ltd,1,54,0.0 +11510,city_116,0.743,,Has relevent experience,no_enrollment,,,7,10000+,,,18,0.0 +14481,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,Business Degree,4,1000-4999,Pvt Ltd,4,103,0.0 +12634,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,2,114,1.0 +6302,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,Arts,4,10/49,Pvt Ltd,1,322,0.0 +23341,city_74,0.579,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,67,0.0 +1417,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,,,>4,80,0.0 +4621,city_128,0.527,Female,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,Early Stage Startup,1,58,1.0 +7780,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Graduate,Other,9,50-99,Pvt Ltd,1,51,0.0 +6233,city_14,0.698,Male,No relevent experience,Full time course,High School,,5,,,1,12,0.0 +32015,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,77,0.0 +29633,city_65,0.802,Male,No relevent experience,Full time course,Graduate,Humanities,9,,,2,108,0.0 +12419,city_16,0.91,Male,No relevent experience,Full time course,High School,,4,<10,Pvt Ltd,1,6,0.0 +24823,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,5,,,never,21,0.0 +10,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Funded Startup,1,53,1.0 +12478,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,3,16,0.0 +17656,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,21,0.0 +31649,city_143,0.74,Male,Has relevent experience,Full time course,High School,,<1,,,1,35,1.0 +9471,city_36,0.893,,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,never,95,0.0 +3891,city_33,0.44799999999999995,Male,No relevent experience,Full time course,High School,,4,,,never,31,0.0 +28436,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Funded Startup,2,14,0.0 +30112,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,3,8,0.0 +22404,city_102,0.804,Male,Has relevent experience,,Graduate,STEM,6,50-99,,1,6,0.0 +16562,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,1,37,0.0 +19251,city_150,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,9,,,4,64,1.0 +16413,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,>4,76,1.0 +5213,city_114,0.9259999999999999,,No relevent experience,Part time course,High School,,2,1000-4999,Pvt Ltd,1,39,1.0 +20166,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,7,50-99,,>4,54,0.0 +8163,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,9,,,2,73,0.0 +20332,city_103,0.92,,Has relevent experience,Full time course,Phd,STEM,,10000+,Public Sector,never,56,0.0 +25287,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10/49,,1,102,0.0 +31636,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,24,0.0 +24521,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,2,108,0.0 +14875,city_10,0.895,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,14,0.0 +21341,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,2,10/49,Early Stage Startup,1,23,0.0 +17366,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,1,43,0.0 +26706,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Masters,STEM,8,5000-9999,NGO,2,121,0.0 +29270,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,22,0.0 +3428,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,8,100-500,NGO,1,51,0.0 +22547,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,NGO,1,73,0.0 +23659,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,1,51,1.0 +25796,city_21,0.624,Male,No relevent experience,Full time course,,,2,,,1,304,0.0 +28467,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,NGO,1,80,0.0 +948,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,NGO,4,272,0.0 +7124,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,86,0.0 +29084,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,3,99,0.0 +10471,city_103,0.92,,No relevent experience,Full time course,High School,,3,,,1,40,1.0 +32077,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,12,5000-9999,Pvt Ltd,2,67,0.0 +3303,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,2,<10,Funded Startup,2,35,0.0 +17144,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,53,0.0 +6333,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,never,66,0.0 +23641,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,never,18,1.0 +23229,city_46,0.762,,Has relevent experience,no_enrollment,Masters,STEM,3,100-500,,3,66,0.0 +20731,city_73,0.754,,Has relevent experience,Full time course,Masters,STEM,1,50-99,Pvt Ltd,1,46,0.0 +7461,city_173,0.878,Male,Has relevent experience,no_enrollment,High School,,5,50-99,Pvt Ltd,1,22,0.0 +29180,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Pvt Ltd,2,130,0.0 +5704,city_11,0.55,,Has relevent experience,Full time course,Graduate,STEM,6,,,1,20,1.0 +29083,city_149,0.6890000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,6,<10,Early Stage Startup,1,106,0.0 +20963,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,2,65,1.0 +4528,city_152,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,16,1000-4999,Pvt Ltd,2,16,0.0 +27172,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Pvt Ltd,4,47,0.0 +4685,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,15,10/49,Funded Startup,1,66,1.0 +26047,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,8,0.0 +5135,city_150,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,156,0.0 +7229,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,2,11,0.0 +22427,city_11,0.55,Male,Has relevent experience,Full time course,Graduate,STEM,18,,,1,8,1.0 +3089,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,32,1.0 +29704,city_48,0.493,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,108,1.0 +2620,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,54,1.0 +11601,city_36,0.893,Male,Has relevent experience,no_enrollment,Primary School,,5,100-500,Pvt Ltd,4,32,1.0 +4432,city_160,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,<1,10000+,Pvt Ltd,2,23,0.0 +32116,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Funded Startup,2,102,0.0 +13004,city_46,0.762,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Public Sector,1,28,1.0 +9130,city_150,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,36,0.0 +25021,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,10,10/49,Early Stage Startup,1,16,0.0 +24177,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Funded Startup,1,5,0.0 +13991,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,Pvt Ltd,>4,13,0.0 +29592,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,20,0.0 +23673,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,7,,,1,6,1.0 +6080,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,1000-4999,Pvt Ltd,>4,192,0.0 +24102,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,3,2,0.0 +14268,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,,never,47,0.0 +13453,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,4,100,0.0 +11462,city_91,0.691,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,,2,20,0.0 +28925,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,NGO,>4,70,0.0 +20155,city_106,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,1,12,0.0 +29933,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Business Degree,4,,,1,43,1.0 +30244,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,2,26,0.0 +8056,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,1,90,0.0 +32224,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Funded Startup,4,48,0.0 +15487,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,89,0.0 +767,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,2,218,0.0 +22996,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Other,>20,1000-4999,Pvt Ltd,2,35,0.0 +28719,city_28,0.9390000000000001,Other,Has relevent experience,no_enrollment,Graduate,Other,>20,500-999,Pvt Ltd,>4,24,0.0 +15234,city_136,0.897,,Has relevent experience,Full time course,Masters,STEM,9,10000+,Pvt Ltd,1,13,0.0 +16901,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,2,14,0.0 +12841,city_16,0.91,Female,Has relevent experience,Full time course,Graduate,STEM,5,1000-4999,Public Sector,1,114,0.0 +21957,city_7,0.647,Male,Has relevent experience,Part time course,Masters,STEM,2,50-99,Early Stage Startup,1,7,0.0 +7363,city_21,0.624,Male,No relevent experience,Full time course,High School,,6,,,never,21,0.0 +22205,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,2,160,0.0 +9623,city_103,0.92,Female,No relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,>4,79,0.0 +1305,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,9,<10,NGO,1,37,0.0 +10310,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,3,39,0.0 +10689,city_21,0.624,,Has relevent experience,Full time course,Graduate,Other,5,100-500,Early Stage Startup,2,85,1.0 +605,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,5000-9999,Pvt Ltd,>4,4,0.0 +14587,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,14,0.0 +6178,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Arts,2,50-99,Funded Startup,1,51,0.0 +27557,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,Public Sector,1,12,1.0 +27751,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,9,0.0 +11186,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,,,>4,156,0.0 +1600,city_150,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,1,14,0.0 +22225,city_67,0.855,Male,No relevent experience,Full time course,High School,,8,,,never,67,0.0 +7201,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,4,1000-4999,Pvt Ltd,1,102,0.0 +26573,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,68,1.0 +12216,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,61,1.0 +31720,city_116,0.743,Male,Has relevent experience,Part time course,Graduate,STEM,11,,,1,28,0.0 +22455,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,198,0.0 +8244,city_23,0.899,Male,No relevent experience,Part time course,Graduate,No Major,6,,,never,17,0.0 +5854,city_71,0.884,Male,No relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,NGO,>4,322,0.0 +25884,city_70,0.698,Male,No relevent experience,no_enrollment,High School,,3,,,never,26,1.0 +2470,city_93,0.865,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,2,152,1.0 +20039,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,Other,3,,,2,69,1.0 +12231,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,7,,,never,11,0.0 +25119,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,NGO,1,40,1.0 +32809,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,10,<10,Pvt Ltd,1,76,1.0 +17929,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,STEM,15,500-999,Pvt Ltd,1,41,0.0 +29615,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,1,4,1.0 +24751,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,,,>4,54,0.0 +6647,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,6,,,,42,1.0 +17445,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,>4,78,0.0 +2741,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,,,10,50-99,Pvt Ltd,3,36,0.0 +14350,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Masters,Humanities,1,,,,74,1.0 +27980,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,7,10000+,Pvt Ltd,1,11,0.0 +8935,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,5000-9999,Pvt Ltd,3,2,0.0 +26986,city_149,0.6890000000000001,Male,Has relevent experience,Part time course,,,2,10/49,Pvt Ltd,2,172,0.0 +12089,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Early Stage Startup,1,196,1.0 +4630,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,12,,Pvt Ltd,never,34,1.0 +19582,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,7,,,never,26,1.0 +32711,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,>4,11,1.0 +9863,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,2,44,1.0 +8164,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,3,131,1.0 +31948,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,172,0.0 +27266,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,1000-4999,Pvt Ltd,2,34,0.0 +22357,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Funded Startup,1,32,1.0 +17809,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,No Major,8,50-99,Pvt Ltd,1,129,0.0 +22281,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,20,,,never,20,1.0 +15372,city_165,0.903,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,80,0.0 +25375,city_136,0.897,,Has relevent experience,no_enrollment,High School,,>20,1000-4999,Pvt Ltd,>4,102,0.0 +3783,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,High School,,8,,,1,8,0.0 +12330,city_160,0.92,,No relevent experience,Full time course,High School,,2,,,1,143,1.0 +19396,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,19,100-500,Pvt Ltd,2,116,0.0 +19173,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,80,0.0 +24607,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,22,1.0 +16699,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,72,0.0 +799,city_104,0.924,,No relevent experience,Full time course,High School,,5,,,never,58,0.0 +28215,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Funded Startup,2,46,0.0 +25843,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,10,,,2,8,0.0 +24789,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,>20,,,1,147,0.0 +23595,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,98,0.0 +27019,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,14,0.0 +790,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,3,71,0.0 +24919,city_21,0.624,Male,Has relevent experience,Full time course,,,2,50-99,Pvt Ltd,1,99,0.0 +18333,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,>4,7,0.0 +19642,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,114,0.0 +17969,city_128,0.527,,Has relevent experience,Full time course,Graduate,STEM,3,,,1,96,1.0 +8196,city_100,0.887,Male,Has relevent experience,Full time course,Graduate,STEM,>20,,,1,50,1.0 +15152,city_46,0.762,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,31,1.0 +11743,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,never,96,1.0 +13205,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,1,94,0.0 +22047,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,15,5000-9999,Pvt Ltd,2,64,0.0 +10359,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,>4,11,0.0 +11026,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Other,1,134,0.0 +19451,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,5,,,1,18,1.0 +18553,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,4,50-99,Pvt Ltd,1,11,0.0 +21242,city_75,0.9390000000000001,Female,No relevent experience,Full time course,Masters,STEM,1,,Other,1,17,0.0 +18939,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,,,1,80,0.0 +16550,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,20,10000+,Pvt Ltd,>4,64,0.0 +23032,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,45,0.0 +12688,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,3,150,0.0 +27368,city_93,0.865,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,50-99,Pvt Ltd,>4,113,0.0 +12807,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,11,0.0 +15060,city_82,0.693,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,3,4,0.0 +31148,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,1,86,0.0 +7928,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,17,,,>4,24,0.0 +16978,city_16,0.91,,Has relevent experience,no_enrollment,,,11,1000-4999,Pvt Ltd,2,74,0.0 +23109,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,104,0.0 +5436,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,162,0.0 +25785,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,18,0.0 +10168,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,7,100-500,Public Sector,1,6,0.0 +14302,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,23,0.0 +18614,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,29,0.0 +21661,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,1,46,0.0 +17087,city_73,0.754,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,35,1.0 +18485,city_27,0.848,Male,No relevent experience,Full time course,High School,,2,<10,Pvt Ltd,never,43,0.0 +33017,city_41,0.8270000000000001,Male,No relevent experience,Full time course,High School,,<1,,,never,73,0.0 +23371,city_138,0.836,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,59,0.0 +4650,city_90,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,4,9,0.0 +2292,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,1,58,0.0 +812,city_46,0.762,Male,Has relevent experience,Part time course,Masters,STEM,19,,,1,31,1.0 +6980,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,127,0.0 +15080,city_53,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,500-999,Pvt Ltd,2,232,0.0 +8863,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,2,7,0.0 +29331,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,50-99,,1,246,0.0 +11271,city_30,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,5,50-99,Pvt Ltd,2,6,0.0 +21925,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,,,9,0.0 +29265,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,100-500,Pvt Ltd,1,37,0.0 +10635,city_176,0.764,,No relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,>4,14,0.0 +5039,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,never,74,0.0 +13028,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Arts,5,50-99,Pvt Ltd,>4,260,0.0 +21226,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,12,1.0 +32833,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,100-500,Pvt Ltd,2,61,0.0 +8092,city_45,0.89,,Has relevent experience,no_enrollment,Masters,STEM,14,,,1,111,0.0 +30214,city_114,0.9259999999999999,Other,No relevent experience,Full time course,High School,,6,500-999,Pvt Ltd,2,144,0.0 +3555,city_102,0.804,,No relevent experience,no_enrollment,Graduate,Arts,10,<10,Pvt Ltd,1,37,1.0 +32342,city_91,0.691,,No relevent experience,Full time course,Graduate,STEM,2,,,1,310,0.0 +15555,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,1,51,0.0 +12249,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,108,0.0 +18206,city_40,0.7759999999999999,,No relevent experience,Full time course,Graduate,STEM,2,100-500,Pvt Ltd,never,324,0.0 +32995,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Early Stage Startup,1,56,0.0 +7184,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Funded Startup,1,52,0.0 +4776,city_33,0.44799999999999995,,No relevent experience,Full time course,Masters,STEM,4,,Pvt Ltd,never,66,1.0 +5698,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10000+,Pvt Ltd,2,164,0.0 +7350,city_152,0.698,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,83,0.0 +21168,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,125,0.0 +20556,city_101,0.5579999999999999,,No relevent experience,no_enrollment,Graduate,STEM,1,,,1,234,0.0 +236,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,122,1.0 +19221,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,2,80,1.0 +17206,city_90,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,,1,22,0.0 +16145,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,41,0.0 +21727,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,>20,,,2,32,1.0 +30229,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Funded Startup,1,85,0.0 +4455,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,1000-4999,NGO,3,31,1.0 +1438,city_103,0.92,,No relevent experience,no_enrollment,High School,,4,,,never,23,0.0 +21477,city_115,0.789,,Has relevent experience,Part time course,Graduate,STEM,3,<10,Pvt Ltd,1,94,0.0 +24869,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,never,17,1.0 +31173,city_89,0.925,Male,No relevent experience,Full time course,Graduate,STEM,7,,,2,78,1.0 +7638,city_103,0.92,,Has relevent experience,Full time course,High School,,6,10000+,Public Sector,1,78,0.0 +6518,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,1,28,0.0 +833,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,2,0.0 +2365,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,never,141,0.0 +28148,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Early Stage Startup,1,72,0.0 +16486,city_116,0.743,,Has relevent experience,no_enrollment,Masters,STEM,5,10/49,Early Stage Startup,,94,0.0 +2127,city_16,0.91,,Has relevent experience,Full time course,Graduate,STEM,5,1000-4999,Pvt Ltd,1,146,0.0 +7688,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Pvt Ltd,4,44,0.0 +20882,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,13,,,1,202,0.0 +17674,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,8,1.0 +33037,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,5,500-999,Pvt Ltd,1,36,0.0 +419,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,46,0.0 +30448,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,Other,4,,,1,146,0.0 +12321,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,,Pvt Ltd,2,12,0.0 +29521,city_67,0.855,Female,Has relevent experience,no_enrollment,Masters,Humanities,2,,,1,57,0.0 +7420,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,3,148,0.0 +9911,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,80,0.0 +1083,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,1,68,0.0 +6392,city_160,0.92,,No relevent experience,Full time course,High School,,4,,,never,17,0.0 +31690,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,50,0.0 +12799,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Public Sector,>4,33,0.0 +2757,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,70,0.0 +17536,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,5000-9999,Pvt Ltd,1,145,0.0 +25358,city_11,0.55,Male,No relevent experience,Full time course,High School,,5,,,never,153,0.0 +17479,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,never,133,1.0 +10335,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Funded Startup,1,32,0.0 +1234,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,2,67,0.0 +9396,city_71,0.884,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,>4,55,0.0 +1100,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,>4,50,0.0 +26421,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,6,,,1,126,0.0 +29294,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,,,4,146,0.0 +2072,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,15,100-500,Pvt Ltd,>4,6,0.0 +23121,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,Business Degree,15,1000-4999,Pvt Ltd,>4,98,0.0 +4547,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,>4,47,0.0 +24371,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,>4,86,0.0 +4131,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,>20,5000-9999,NGO,>4,7,0.0 +2227,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,1,35,0.0 +7450,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,2,24,1.0 +20162,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,>4,40,0.0 +16307,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,never,37,0.0 +4686,city_61,0.9129999999999999,Other,Has relevent experience,Part time course,Graduate,STEM,7,10000+,Pvt Ltd,1,145,1.0 +4564,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,4,52,0.0 +14791,city_1,0.847,Male,Has relevent experience,Full time course,Graduate,STEM,10,5000-9999,Pvt Ltd,1,9,0.0 +11649,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,78,1.0 +3872,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,18,0.0 +23627,city_73,0.754,Male,No relevent experience,Full time course,High School,,5,,,never,124,1.0 +17977,city_149,0.6890000000000001,Female,Has relevent experience,Full time course,Masters,STEM,19,50-99,Pvt Ltd,1,125,0.0 +4841,city_16,0.91,,No relevent experience,Full time course,High School,,3,<10,Early Stage Startup,1,66,0.0 +10779,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,1,32,1.0 +27602,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,3,34,0.0 +7031,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,74,0.0 +4981,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,1,128,1.0 +857,city_162,0.767,,No relevent experience,Full time course,Graduate,STEM,3,10/49,Early Stage Startup,1,52,0.0 +5363,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,,never,34,1.0 +19760,city_93,0.865,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10000+,Pvt Ltd,3,14,0.0 +5727,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,50-99,Pvt Ltd,>4,68,0.0 +23246,city_103,0.92,,Has relevent experience,,Masters,STEM,15,,,1,53,0.0 +7525,city_159,0.843,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,56,0.0 +284,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,38,0.0 +2968,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,14,10/49,Pvt Ltd,1,34,0.0 +19,city_23,0.899,,Has relevent experience,Part time course,Graduate,STEM,5,50-99,Public Sector,>4,46,0.0 +15413,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,2,67,1.0 +20187,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10/49,Pvt Ltd,>4,105,0.0 +10620,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Graduate,Humanities,4,50-99,Funded Startup,1,100,0.0 +21699,city_75,0.9390000000000001,,No relevent experience,no_enrollment,Masters,Other,>20,,,>4,92,0.0 +15032,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,50-99,,1,73,1.0 +27681,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,4,15,1.0 +1424,city_160,0.92,,No relevent experience,no_enrollment,High School,,3,,,never,44,0.0 +27676,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,14,500-999,Pvt Ltd,1,40,0.0 +15920,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,2,96,1.0 +29760,city_16,0.91,Male,Has relevent experience,Part time course,High School,,4,<10,,1,16,0.0 +20958,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,500-999,Pvt Ltd,2,34,0.0 +10782,city_104,0.924,Other,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,80,0.0 +16986,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,5,10/49,Funded Startup,1,80,0.0 +17161,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Funded Startup,1,18,0.0 +13703,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,4,166,0.0 +11635,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,NGO,1,32,0.0 +4218,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Pvt Ltd,>4,198,0.0 +25124,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,5000-9999,Pvt Ltd,2,76,1.0 +26394,city_11,0.55,Male,No relevent experience,no_enrollment,Primary School,,<1,,,1,216,0.0 +26907,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,2,47,0.0 +13363,city_90,0.698,Male,Has relevent experience,Full time course,Masters,STEM,12,100-500,Pvt Ltd,1,33,0.0 +16455,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,19,10/49,Pvt Ltd,1,56,0.0 +17864,city_16,0.91,Male,Has relevent experience,Part time course,Masters,STEM,>20,50-99,Funded Startup,1,284,0.0 +25298,city_138,0.836,Male,No relevent experience,Full time course,High School,,5,100-500,Pvt Ltd,1,45,0.0 +29713,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,3,31,1.0 +24385,city_128,0.527,,Has relevent experience,no_enrollment,Graduate,Other,13,,,1,146,1.0 +13422,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,48,0.0 +26093,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,>4,28,0.0 +16748,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,77,0.0 +27342,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,,,16,1000-4999,Pvt Ltd,3,58,0.0 +30355,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,56,0.0 +28582,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,,4,12,0.0 +4645,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,,1,26,0.0 +25430,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,>20,,,1,70,1.0 +2087,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,Humanities,5,,,1,19,1.0 +19421,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,9,,,>4,36,1.0 +8560,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,3,100-500,Pvt Ltd,never,127,1.0 +14989,city_23,0.899,Male,No relevent experience,Full time course,Masters,STEM,16,,,>4,92,0.0 +1986,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,7,10/49,Public Sector,1,158,0.0 +10392,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,5000-9999,Other,>4,53,0.0 +4287,city_28,0.9390000000000001,Male,No relevent experience,Full time course,Graduate,STEM,6,500-999,Public Sector,1,10,0.0 +995,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,3,29,1.0 +28550,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,>4,26,0.0 +26700,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,5000-9999,NGO,>4,40,0.0 +31660,city_73,0.754,Male,Has relevent experience,Full time course,Masters,STEM,9,,,2,29,0.0 +13480,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Early Stage Startup,1,144,1.0 +12094,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Public Sector,2,60,0.0 +403,city_103,0.92,,No relevent experience,no_enrollment,Phd,STEM,5,1000-4999,Public Sector,1,39,1.0 +29538,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,10,10000+,Pvt Ltd,1,53,0.0 +21148,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,6,100-500,Funded Startup,1,57,0.0 +2091,city_123,0.738,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,70,1.0 +29370,city_159,0.843,,No relevent experience,Full time course,Graduate,STEM,4,,,never,2,0.0 +30126,city_162,0.767,Female,Has relevent experience,no_enrollment,Masters,STEM,11,10/49,Early Stage Startup,4,84,0.0 +31351,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,7,10/49,Public Sector,1,36,1.0 +7534,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Funded Startup,2,99,0.0 +277,city_84,0.698,Male,Has relevent experience,Full time course,Masters,STEM,7,,,1,45,1.0 +27238,city_21,0.624,,No relevent experience,Full time course,High School,,<1,,,never,26,1.0 +18558,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,1,38,1.0 +11939,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,NGO,2,34,0.0 +28322,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10/49,Pvt Ltd,2,4,0.0 +11247,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,4,69,1.0 +18318,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,11,1.0 +14680,city_21,0.624,Male,No relevent experience,no_enrollment,,,3,,,never,111,0.0 +31618,city_102,0.804,Male,No relevent experience,no_enrollment,Primary School,,6,10/49,Pvt Ltd,1,94,1.0 +3744,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,100-500,Pvt Ltd,1,20,0.0 +25293,city_21,0.624,,Has relevent experience,,Masters,STEM,6,50-99,Pvt Ltd,never,21,0.0 +31385,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,Pvt Ltd,1,109,0.0 +29626,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,1,146,1.0 +20089,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,,Public Sector,1,80,1.0 +20063,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Pvt Ltd,4,28,0.0 +17777,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,2,,,never,42,0.0 +10850,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,1,5,0.0 +12644,city_90,0.698,,No relevent experience,Full time course,Graduate,STEM,7,500-999,Pvt Ltd,1,196,0.0 +30833,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,never,28,1.0 +16979,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,1,39,0.0 +19163,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,Pvt Ltd,1,18,0.0 +32261,city_74,0.579,Male,Has relevent experience,Part time course,Graduate,STEM,12,50-99,Funded Startup,2,48,1.0 +23471,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,>4,20,1.0 +14421,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,3,100-500,Pvt Ltd,1,9,1.0 +17748,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,,1,17,0.0 +31487,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,1,5,0.0 +25209,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,5000-9999,Pvt Ltd,1,68,1.0 +2133,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,1,29,0.0 +19961,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Phd,STEM,>20,10000+,Public Sector,2,54,0.0 +1153,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Business Degree,5,<10,Pvt Ltd,1,25,0.0 +7048,city_7,0.647,,Has relevent experience,no_enrollment,Masters,STEM,5,1000-4999,Pvt Ltd,4,21,0.0 +13882,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,5,,,never,156,0.0 +18981,city_16,0.91,Male,Has relevent experience,,Graduate,STEM,4,,,1,90,1.0 +15238,city_134,0.698,,No relevent experience,,,,2,,,never,42,0.0 +23935,city_114,0.9259999999999999,,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Early Stage Startup,4,53,0.0 +20115,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,,,>20,,Pvt Ltd,4,4,0.0 +3916,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,never,15,0.0 +26896,city_102,0.804,Male,Has relevent experience,Part time course,Masters,STEM,10,500-999,,2,36,0.0 +29848,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,10/49,Early Stage Startup,3,142,0.0 +6231,city_72,0.795,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,2,28,1.0 +4486,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,Pvt Ltd,1,56,1.0 +27072,city_136,0.897,,No relevent experience,Part time course,Graduate,STEM,3,,,1,38,1.0 +3075,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,>4,21,0.0 +18112,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,4,4,0.0 +4438,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,3,83,0.0 +1209,city_97,0.925,Male,No relevent experience,no_enrollment,Phd,STEM,>20,10/49,Pvt Ltd,>4,69,0.0 +18459,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,2,33,0.0 +5660,city_91,0.691,,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Public Sector,1,51,1.0 +2281,city_10,0.895,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,>4,50,0.0 +19231,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,7,,,>4,192,1.0 +7392,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,1,84,0.0 +21734,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,High School,,10,10/49,Early Stage Startup,>4,96,0.0 +31484,city_104,0.924,,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,NGO,1,34,0.0 +13019,city_160,0.92,,No relevent experience,no_enrollment,Phd,STEM,>20,,,>4,20,1.0 +26839,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Early Stage Startup,1,254,0.0 +7969,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Pvt Ltd,>4,36,0.0 +24031,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,150,0.0 +10858,city_102,0.804,Male,No relevent experience,no_enrollment,High School,,>20,50-99,Pvt Ltd,>4,125,0.0 +13723,city_53,0.74,Male,No relevent experience,,Graduate,STEM,4,<10,Early Stage Startup,never,228,1.0 +31220,city_83,0.9229999999999999,,No relevent experience,Full time course,Graduate,STEM,3,,,never,102,0.0 +31845,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,Pvt Ltd,never,18,1.0 +11383,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,4,,,never,200,0.0 +13153,city_73,0.754,Male,Has relevent experience,Part time course,High School,,4,,,1,57,0.0 +6499,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,2,80,0.0 +19333,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,78,0.0 +6537,city_76,0.698,Female,No relevent experience,no_enrollment,Masters,STEM,7,500-999,NGO,1,12,0.0 +6352,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Funded Startup,1,30,0.0 +17957,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,1,,,never,44,1.0 +22599,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,,,4,69,0.0 +11548,city_103,0.92,,Has relevent experience,Full time course,High School,,6,<10,Pvt Ltd,,81,0.0 +8291,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,6,,,never,11,0.0 +25541,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,15,<10,Early Stage Startup,3,15,0.0 +26058,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,3,,,never,163,0.0 +7974,city_128,0.527,Male,Has relevent experience,Full time course,Masters,STEM,8,5000-9999,Public Sector,never,176,0.0 +27881,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,2,42,0.0 +9528,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,,>4,9,0.0 +10522,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,50-99,,,21,1.0 +15880,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,2,10/49,Public Sector,2,51,1.0 +28785,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,5,10000+,Pvt Ltd,1,2,0.0 +135,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Early Stage Startup,1,23,0.0 +12030,city_90,0.698,,No relevent experience,no_enrollment,Graduate,STEM,8,,,4,43,0.0 +31753,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,2,34,1.0 +23779,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,19,10000+,Pvt Ltd,1,32,0.0 +17647,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,never,6,0.0 +15777,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,16,,,1,102,0.0 +5354,city_90,0.698,,Has relevent experience,no_enrollment,Masters,STEM,15,,,never,132,0.0 +30450,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,2,56,1.0 +28815,city_73,0.754,Female,No relevent experience,no_enrollment,Masters,Business Degree,20,,,3,13,1.0 +25118,city_16,0.91,,No relevent experience,Full time course,Graduate,STEM,2,1000-4999,Other,1,260,0.0 +4748,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,72,1.0 +25812,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,54,1.0 +9640,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,143,0.0 +14048,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,2,34,0.0 +5855,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,18,1000-4999,Pvt Ltd,>4,11,0.0 +170,city_115,0.789,Male,No relevent experience,Full time course,Graduate,STEM,6,,Pvt Ltd,never,25,0.0 +11149,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,STEM,9,,,1,106,1.0 +20198,city_159,0.843,,No relevent experience,Full time course,Graduate,STEM,1,,,never,37,1.0 +23257,city_103,0.92,,Has relevent experience,no_enrollment,,,15,500-999,Pvt Ltd,>4,33,0.0 +5530,city_50,0.8959999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,19,50-99,Pvt Ltd,1,80,0.0 +1013,city_141,0.763,Male,Has relevent experience,Full time course,High School,,5,,,never,206,0.0 +31240,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,3,100-500,Pvt Ltd,1,31,0.0 +23847,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,4,,,never,15,0.0 +16993,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,2,42,0.0 +5252,city_141,0.763,Female,No relevent experience,Full time course,High School,,2,,,never,51,1.0 +12971,city_73,0.754,Female,No relevent experience,no_enrollment,Masters,STEM,16,,,>4,56,0.0 +11549,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,2,17,0.0 +4383,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,46,0.0 +10654,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Funded Startup,1,61,0.0 +10540,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,18,5000-9999,Pvt Ltd,1,11,0.0 +31364,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,5000-9999,Pvt Ltd,1,106,0.0 +1215,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Pvt Ltd,2,236,0.0 +29289,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,<10,Early Stage Startup,1,58,0.0 +11205,city_16,0.91,Male,No relevent experience,,High School,,10,,,never,42,0.0 +27361,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,,1,26,0.0 +10729,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,>20,10/49,Early Stage Startup,2,37,0.0 +22766,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,20,0.0 +10936,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,10,<10,Pvt Ltd,1,85,0.0 +27491,city_103,0.92,,Has relevent experience,Part time course,Masters,Arts,3,,,1,40,1.0 +28093,city_103,0.92,Female,No relevent experience,Full time course,Masters,STEM,12,10000+,Public Sector,2,155,0.0 +17902,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,Humanities,2,50-99,Funded Startup,1,147,0.0 +14769,city_102,0.804,Male,No relevent experience,no_enrollment,Phd,STEM,20,10/49,Pvt Ltd,2,188,0.0 +22232,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,18,10/49,Early Stage Startup,1,174,1.0 +14508,city_126,0.479,,No relevent experience,Full time course,,,3,,,,155,0.0 +24468,city_94,0.698,,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,31,1.0 +22025,city_65,0.802,Male,No relevent experience,no_enrollment,High School,,<1,,,2,40,1.0 +26794,city_11,0.55,Male,Has relevent experience,Full time course,Masters,STEM,3,,,1,67,0.0 +2545,city_21,0.624,Female,Has relevent experience,Full time course,Masters,STEM,8,500-999,Pvt Ltd,2,69,1.0 +18489,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,<1,500-999,Pvt Ltd,1,24,0.0 +22235,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,36,0.0 +1201,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,8,,Public Sector,never,125,1.0 +17714,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Masters,STEM,4,,,1,18,0.0 +6564,city_9,0.743,,Has relevent experience,Part time course,Graduate,Other,4,<10,Pvt Ltd,,334,1.0 +28772,city_136,0.897,Male,Has relevent experience,Full time course,Masters,STEM,9,,NGO,1,17,0.0 +28565,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Pvt Ltd,1,36,0.0 +29367,city_14,0.698,Female,Has relevent experience,no_enrollment,Graduate,Business Degree,4,10/49,Funded Startup,4,4,0.0 +24637,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,102,0.0 +5204,city_144,0.84,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,47,0.0 +27261,city_14,0.698,Male,No relevent experience,Full time course,High School,,2,,,never,13,0.0 +24622,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,77,0.0 +401,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,14,0.0 +22318,city_64,0.6659999999999999,Male,Has relevent experience,Full time course,Masters,STEM,10,,,1,38,0.0 +33094,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,,,1,70,0.0 +28888,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,10,50-99,Pvt Ltd,,40,1.0 +8955,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,4,100-500,Pvt Ltd,2,80,0.0 +6651,city_123,0.738,Male,No relevent experience,Full time course,Graduate,STEM,10,,,never,48,0.0 +1017,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,4,156,1.0 +22745,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,7,100-500,Pvt Ltd,4,75,0.0 +10798,city_73,0.754,,Has relevent experience,no_enrollment,Masters,,,50-99,Pvt Ltd,,5,0.0 +31282,city_21,0.624,Female,No relevent experience,Full time course,,,3,,,1,78,0.0 +23100,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,3,2,0.0 +12703,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Pvt Ltd,1,7,1.0 +5178,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,24,0.0 +17272,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,1,50-99,Pvt Ltd,never,83,0.0 +16706,city_103,0.92,,No relevent experience,no_enrollment,Phd,STEM,15,10000+,Pvt Ltd,2,148,0.0 +15836,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,>4,78,0.0 +5105,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,78,0.0 +9166,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,No Major,1,,,1,62,1.0 +28801,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,6,,,1,46,1.0 +14277,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,4,83,0.0 +22600,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,17,1000-4999,Public Sector,>4,18,0.0 +8856,city_173,0.878,Male,No relevent experience,Full time course,Graduate,STEM,4,,Public Sector,1,124,1.0 +15803,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,1,64,0.0 +1533,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,2,106,0.0 +16907,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,10/49,Pvt Ltd,1,22,0.0 +28115,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,29,0.0 +23202,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,4,4,1.0 +11578,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,never,128,1.0 +26624,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,3,202,0.0 +19008,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,3,5,0.0 +15822,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,1,56,0.0 +3328,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,27,0.0 +12439,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,Pvt Ltd,2,100,0.0 +12691,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,,4,78,0.0 +16623,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Early Stage Startup,1,116,0.0 +28738,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,4,16,1.0 +25754,city_73,0.754,Female,Has relevent experience,Part time course,Graduate,STEM,6,50-99,Pvt Ltd,2,105,0.0 +13429,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,10/49,Pvt Ltd,>4,22,0.0 +17016,city_138,0.836,Male,Has relevent experience,no_enrollment,High School,,>20,100-500,Pvt Ltd,>4,214,0.0 +5060,city_16,0.91,Male,No relevent experience,,,,2,,,never,78,0.0 +5560,city_149,0.6890000000000001,,Has relevent experience,Full time course,Graduate,STEM,9,100-500,Pvt Ltd,4,32,0.0 +201,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,High School,,8,100-500,Pvt Ltd,>4,14,0.0 +32423,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,,2,23,0.0 +9081,city_21,0.624,,No relevent experience,no_enrollment,,,5,,,1,77,0.0 +27612,city_21,0.624,,No relevent experience,,High School,,2,,,never,43,0.0 +30592,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,STEM,19,50-99,Pvt Ltd,1,79,0.0 +31461,city_145,0.555,,No relevent experience,Part time course,Graduate,STEM,11,,,>4,140,1.0 +10106,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,16,100-500,Pvt Ltd,>4,228,1.0 +2730,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,43,0.0 +25693,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,1,9,0.0 +26019,city_160,0.92,,Has relevent experience,no_enrollment,,,17,100-500,Pvt Ltd,4,32,0.0 +22815,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,3,10/49,Public Sector,3,96,0.0 +17636,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,308,0.0 +21791,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,125,1.0 +13800,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,1,140,0.0 +11357,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,40,1.0 +17884,city_173,0.878,,Has relevent experience,Full time course,High School,,8,,,1,142,0.0 +28051,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,3,77,0.0 +6016,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,7,1.0 +17011,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,17,10/49,Early Stage Startup,>4,85,0.0 +27409,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,40,0.0 +8079,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Public Sector,>4,132,0.0 +8379,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,<10,Pvt Ltd,>4,19,0.0 +174,city_118,0.722,Male,No relevent experience,Full time course,High School,,2,500-999,Pvt Ltd,never,28,0.0 +14557,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,Pvt Ltd,never,86,0.0 +20587,city_91,0.691,,Has relevent experience,no_enrollment,Graduate,STEM,,100-500,Pvt Ltd,1,56,0.0 +26092,city_71,0.884,Male,Has relevent experience,Part time course,Graduate,STEM,9,10/49,Pvt Ltd,3,65,0.0 +16444,city_21,0.624,,Has relevent experience,no_enrollment,High School,,3,,,1,27,1.0 +2074,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,18,500-999,Pvt Ltd,>4,116,1.0 +31564,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,10,500-999,Funded Startup,2,21,0.0 +6362,city_46,0.762,Male,No relevent experience,no_enrollment,Masters,Humanities,3,500-999,Public Sector,2,5,0.0 +8846,city_16,0.91,Female,No relevent experience,no_enrollment,Graduate,Arts,3,50-99,Pvt Ltd,2,3,0.0 +10719,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,1,11,0.0 +17251,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,32,0.0 +5824,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,1,94,0.0 +1484,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,5000-9999,Pvt Ltd,>4,7,0.0 +11233,city_19,0.682,Male,No relevent experience,Full time course,High School,,8,,,1,50,0.0 +22236,city_100,0.887,Male,Has relevent experience,Part time course,Graduate,STEM,>20,,,1,94,1.0 +17491,city_116,0.743,,Has relevent experience,no_enrollment,High School,,6,500-999,Pvt Ltd,1,24,0.0 +29318,city_48,0.493,Other,Has relevent experience,Full time course,Phd,Other,>20,,,1,18,0.0 +7769,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,23,1.0 +18024,city_166,0.649,Male,No relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,2,10,1.0 +2028,city_57,0.866,Other,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,1,24,0.0 +2167,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Funded Startup,never,4,0.0 +22399,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,67,1.0 +26314,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,4,1.0 +4523,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,STEM,14,,Pvt Ltd,never,101,0.0 +1983,city_42,0.563,,No relevent experience,Part time course,Graduate,STEM,2,50-99,Pvt Ltd,1,140,1.0 +7491,city_45,0.89,Male,No relevent experience,Full time course,High School,,6,,,never,32,0.0 +944,city_21,0.624,,Has relevent experience,Part time course,High School,,1,<10,Pvt Ltd,never,10,1.0 +29576,city_160,0.92,Male,No relevent experience,Part time course,Graduate,STEM,14,10000+,Public Sector,>4,50,0.0 +29190,city_16,0.91,Male,No relevent experience,,,,6,,,never,6,0.0 +29168,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Arts,>20,100-500,Funded Startup,1,6,0.0 +7104,city_162,0.767,Male,Has relevent experience,Full time course,Masters,STEM,>20,,Public Sector,>4,30,0.0 +26524,city_75,0.9390000000000001,Male,No relevent experience,Part time course,Graduate,STEM,>20,50-99,Pvt Ltd,1,122,0.0 +4947,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,14,,,1,5,1.0 +18773,city_133,0.742,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,220,1.0 +29948,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,6,,,never,58,1.0 +22190,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,Pvt Ltd,2,28,0.0 +16747,city_136,0.897,,No relevent experience,Full time course,Masters,STEM,7,,Pvt Ltd,1,30,0.0 +26088,city_128,0.527,,No relevent experience,Full time course,High School,,4,,,never,178,1.0 +17753,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,1,92,0.0 +14326,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,10000+,Pvt Ltd,2,22,0.0 +22822,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,>20,10000+,Pvt Ltd,1,44,0.0 +23129,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,,104,0.0 +19978,city_104,0.924,Other,No relevent experience,Full time course,High School,,3,,,1,22,1.0 +5708,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,5000-9999,Pvt Ltd,1,45,0.0 +22554,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,43,1.0 +31949,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,12,100-500,Pvt Ltd,2,182,0.0 +29680,city_103,0.92,Male,No relevent experience,Full time course,High School,,2,500-999,Pvt Ltd,1,28,1.0 +30986,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Early Stage Startup,3,57,0.0 +24928,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,10,<10,Pvt Ltd,1,110,1.0 +22003,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,7,50-99,,1,3,0.0 +32778,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Funded Startup,1,17,1.0 +14497,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,3,10/49,Early Stage Startup,1,15,1.0 +11251,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,151,0.0 +19968,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,5,,,never,51,1.0 +26919,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,1,46,1.0 +13562,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,Other,8,<10,NGO,1,17,0.0 +16217,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,,Pvt Ltd,1,17,0.0 +21794,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,1,39,0.0 +19083,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,500-999,NGO,3,182,0.0 +22185,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,1,56,0.0 +19913,city_103,0.92,,No relevent experience,Part time course,Graduate,STEM,2,50-99,Pvt Ltd,2,40,0.0 +9504,city_36,0.893,Male,Has relevent experience,no_enrollment,High School,,9,100-500,Pvt Ltd,4,31,0.0 +9406,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,63,0.0 +639,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,2,154,0.0 +16697,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,18,10/49,Pvt Ltd,1,41,0.0 +23287,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10/49,Pvt Ltd,>4,152,1.0 +16134,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,2,21,0.0 +4881,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,1,86,0.0 +2817,city_21,0.624,,Has relevent experience,no_enrollment,Masters,Other,5,100-500,Pvt Ltd,1,21,0.0 +3898,city_23,0.899,Male,Has relevent experience,Part time course,Primary School,,11,5000-9999,Pvt Ltd,1,178,0.0 +32739,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,2,36,0.0 +208,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,58,1.0 +25962,city_165,0.903,,Has relevent experience,no_enrollment,Masters,Humanities,19,<10,Funded Startup,2,23,1.0 +22253,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,2,89,0.0 +24109,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,4,116,1.0 +12802,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,6,0.0 +27794,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,4,20,0.0 +11243,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,,2,20,0.0 +1779,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,,2,119,1.0 +31212,city_75,0.9390000000000001,,No relevent experience,,Masters,STEM,10,,,never,13,0.0 +23550,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,3,10,0.0 +11518,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Early Stage Startup,1,27,0.0 +32655,city_21,0.624,Male,No relevent experience,Full time course,High School,,1,,,never,26,1.0 +7572,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,9,,,2,91,1.0 +25607,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,78,0.0 +32257,city_94,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,9,50-99,Pvt Ltd,1,166,0.0 +29997,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,36,1.0 +19325,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,28,0.0 +10421,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,19,0.0 +22346,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,Pvt Ltd,1,66,0.0 +1004,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,4,10,0.0 +5996,city_16,0.91,Male,No relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Public Sector,>4,13,0.0 +27879,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,>4,90,0.0 +30567,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,No Major,>20,,,>4,8,0.0 +26259,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,NGO,2,4,0.0 +8493,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,never,106,0.0 +18363,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Early Stage Startup,1,10,0.0 +2058,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,,2,12,1.0 +21248,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,18,10000+,Pvt Ltd,>4,15,1.0 +22906,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,High School,,>20,500-999,Pvt Ltd,>4,33,0.0 +23704,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,4,0.0 +9417,city_44,0.725,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,2,88,1.0 +4451,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Public Sector,1,92,0.0 +2048,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,2,,,1,143,0.0 +19109,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,1,48,0.0 +28032,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,2,89,1.0 +15976,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,5,10/49,Pvt Ltd,1,36,1.0 +31888,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,1,46,0.0 +10051,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Public Sector,>4,2,0.0 +25673,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,2,62,0.0 +311,city_101,0.5579999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,53,1.0 +26882,city_65,0.802,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,never,52,1.0 +528,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Public Sector,3,52,0.0 +5443,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Funded Startup,1,96,0.0 +5251,city_21,0.624,Male,No relevent experience,Part time course,Graduate,STEM,7,,,never,24,1.0 +7133,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,55,0.0 +18659,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Early Stage Startup,never,129,0.0 +10600,city_75,0.9390000000000001,Male,No relevent experience,Part time course,Graduate,STEM,14,,,>4,334,1.0 +18871,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,3,41,0.0 +25216,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,7,10000+,Pvt Ltd,1,25,1.0 +32983,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10000+,Pvt Ltd,1,10,0.0 +24225,city_21,0.624,,Has relevent experience,Full time course,Masters,No Major,2,,,1,45,1.0 +3832,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,158,0.0 +1515,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,,87,0.0 +26186,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,4,57,0.0 +4035,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,25,0.0 +19436,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,17,5000-9999,Pvt Ltd,2,47,1.0 +7629,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,500-999,Pvt Ltd,never,55,0.0 +31308,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,32,0.0 +4939,city_103,0.92,Male,Has relevent experience,Full time course,Phd,STEM,14,,Public Sector,1,29,0.0 +11818,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,never,88,0.0 +4587,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,4,11,0.0 +29263,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,,never,23,0.0 +28578,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,4,178,0.0 +19899,city_21,0.624,Male,No relevent experience,Full time course,High School,,10,,,1,109,1.0 +30600,city_99,0.915,Male,Has relevent experience,no_enrollment,High School,,2,,,1,39,0.0 +11474,city_77,0.83,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Pvt Ltd,>4,19,0.0 +25149,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,7,50-99,Pvt Ltd,>4,146,0.0 +29846,city_126,0.479,,No relevent experience,,Primary School,,2,,,never,167,0.0 +28844,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,High School,,15,<10,Pvt Ltd,1,34,0.0 +8231,city_71,0.884,Male,Has relevent experience,Part time course,Graduate,STEM,7,100-500,Pvt Ltd,1,28,0.0 +30119,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,13,1.0 +7729,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Early Stage Startup,2,42,0.0 +19974,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,64,0.0 +23689,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,never,16,0.0 +28903,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,250,0.0 +22907,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Other,13,50-99,Funded Startup,1,84,0.0 +2840,city_71,0.884,Male,Has relevent experience,Part time course,Graduate,STEM,17,50-99,Pvt Ltd,2,4,0.0 +23815,city_65,0.802,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,never,61,0.0 +16849,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,14,0.0 +6103,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,4,,,1,18,0.0 +31392,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,1,246,0.0 +19467,city_128,0.527,Female,Has relevent experience,no_enrollment,Masters,Other,10,<10,Pvt Ltd,2,18,1.0 +20902,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,NGO,>4,57,0.0 +10774,city_65,0.802,,Has relevent experience,Full time course,Graduate,STEM,4,,,1,129,0.0 +16461,city_20,0.7959999999999999,,Has relevent experience,no_enrollment,Masters,STEM,6,1000-4999,Pvt Ltd,1,35,0.0 +27975,city_16,0.91,Male,Has relevent experience,no_enrollment,Primary School,,>20,,,2,90,0.0 +5433,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,21,1.0 +30934,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,NGO,1,57,0.0 +32473,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,4,1.0 +30624,city_21,0.624,Male,No relevent experience,Full time course,High School,,4,,,never,10,0.0 +18899,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,NGO,never,232,0.0 +19862,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,1,<10,Pvt Ltd,1,125,0.0 +7937,city_123,0.738,Male,No relevent experience,no_enrollment,,,2,,,never,68,0.0 +29617,city_100,0.887,Male,Has relevent experience,Part time course,High School,,1,500-999,Pvt Ltd,1,166,0.0 +31286,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Pvt Ltd,2,47,1.0 +24076,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,8,10000+,Pvt Ltd,4,122,0.0 +31454,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,,4,336,1.0 +23774,city_16,0.91,,No relevent experience,Full time course,Masters,Business Degree,3,,,>4,12,1.0 +17945,city_160,0.92,Male,Has relevent experience,Part time course,Graduate,Arts,3,500-999,Pvt Ltd,3,37,0.0 +15776,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Arts,16,100-500,NGO,>4,63,0.0 +12760,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,41,0.0 +22446,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,1,6,1.0 +12292,city_76,0.698,Female,Has relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,never,17,0.0 +27622,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,11,<10,Early Stage Startup,2,22,1.0 +27051,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Other,1,58,1.0 +5042,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,92,0.0 +27516,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,8,,,2,54,1.0 +218,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Other,3,100-500,Pvt Ltd,2,106,0.0 +6289,city_67,0.855,,Has relevent experience,Full time course,Masters,STEM,15,100-500,Pvt Ltd,never,19,0.0 +10223,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,,Public Sector,1,200,1.0 +25621,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,1,110,0.0 +30713,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,never,17,0.0 +13574,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,316,0.0 +28010,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Arts,2,100-500,Public Sector,2,35,1.0 +7409,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,40,0.0 +26693,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,Arts,4,,,4,72,1.0 +3267,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,10,,,2,48,0.0 +4513,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,Humanities,17,100-500,Pvt Ltd,2,150,0.0 +23184,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,4,12,0.0 +27514,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,18,500-999,Public Sector,>4,45,0.0 +22079,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,3,112,1.0 +2253,city_90,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,7,,,2,14,0.0 +3922,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,19,,,1,6,0.0 +3063,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,47,0.0 +31601,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,166,0.0 +26625,city_21,0.624,Female,Has relevent experience,Full time course,Masters,STEM,<1,10/49,Pvt Ltd,1,54,1.0 +28655,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,5,50-99,Pvt Ltd,1,34,0.0 +1966,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,20,0.0 +28063,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,48,0.0 +10614,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,2,35,0.0 +10578,city_21,0.624,,No relevent experience,no_enrollment,,,2,,,never,7,1.0 +22130,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,8,50-99,Pvt Ltd,3,106,0.0 +30137,city_10,0.895,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,124,0.0 +28884,city_28,0.9390000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,8,100-500,Pvt Ltd,4,29,0.0 +31998,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,NGO,1,11,0.0 +2564,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,2,12,0.0 +1584,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Arts,15,100-500,Public Sector,>4,70,0.0 +9309,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Public Sector,>4,41,0.0 +6031,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,7,100-500,Funded Startup,1,78,1.0 +22401,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,2,148,1.0 +24575,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,2,56,0.0 +21367,city_149,0.6890000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,5,100-500,NGO,4,18,0.0 +4848,city_67,0.855,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Funded Startup,1,44,0.0 +19275,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,111,0.0 +21485,city_28,0.9390000000000001,,No relevent experience,Full time course,High School,,4,,,,2,0.0 +105,city_23,0.899,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Funded Startup,3,59,0.0 +16421,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,Humanities,2,<10,NGO,1,33,1.0 +30335,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,<1,50-99,Early Stage Startup,1,32,1.0 +27552,city_103,0.92,Male,No relevent experience,Full time course,High School,,6,,,1,45,1.0 +17493,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Pvt Ltd,2,129,0.0 +31293,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,44,0.0 +16751,city_67,0.855,Female,Has relevent experience,Full time course,Graduate,STEM,5,,,1,158,1.0 +13763,city_173,0.878,,No relevent experience,no_enrollment,Masters,STEM,1,,,,18,1.0 +4025,city_16,0.91,Male,No relevent experience,,,,4,,Pvt Ltd,never,133,0.0 +16508,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,3,<10,Early Stage Startup,never,42,0.0 +27644,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,1,57,0.0 +24694,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,4,158,0.0 +11472,city_100,0.887,Male,No relevent experience,Full time course,High School,,6,,,never,18,0.0 +21583,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,7,5000-9999,Public Sector,never,9,0.0 +11414,city_75,0.9390000000000001,Female,No relevent experience,Full time course,High School,,6,,,never,70,0.0 +138,city_45,0.89,Male,Has relevent experience,no_enrollment,High School,,>20,<10,Early Stage Startup,2,148,0.0 +2771,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Early Stage Startup,3,290,0.0 +21035,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,Pvt Ltd,3,75,0.0 +22869,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,>20,<10,Pvt Ltd,>4,6,0.0 +13792,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,26,1.0 +10691,city_99,0.915,Female,No relevent experience,Full time course,Graduate,Business Degree,1,,,1,40,0.0 +18450,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,4,500-999,Pvt Ltd,4,18,0.0 +5543,city_165,0.903,Male,No relevent experience,no_enrollment,,,6,,Pvt Ltd,never,178,1.0 +4297,city_75,0.9390000000000001,Male,No relevent experience,Full time course,High School,,4,,Pvt Ltd,never,40,0.0 +14032,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,4,14,1.0 +14888,city_152,0.698,,No relevent experience,no_enrollment,,,<1,,,,40,0.0 +10448,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,34,0.0 +26788,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,500-999,Public Sector,>4,58,0.0 +26751,city_74,0.579,,No relevent experience,Part time course,Primary School,,11,100-500,Pvt Ltd,1,14,1.0 +20621,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,2,1000-4999,,2,76,0.0 +25597,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,2,190,0.0 +1837,city_75,0.9390000000000001,,Has relevent experience,Part time course,High School,,>20,10/49,Pvt Ltd,2,51,0.0 +13388,city_152,0.698,Male,No relevent experience,Full time course,Graduate,Humanities,3,,,never,15,0.0 +27904,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,>4,126,0.0 +27893,city_21,0.624,Male,No relevent experience,Full time course,Masters,Other,2,10/49,,1,174,1.0 +7250,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,124,0.0 +12365,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,48,1.0 +6252,city_36,0.893,Male,No relevent experience,Full time course,Graduate,STEM,8,<10,Pvt Ltd,never,312,0.0 +3753,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,6,50-99,Pvt Ltd,4,312,0.0 +21048,city_90,0.698,,No relevent experience,no_enrollment,Primary School,,<1,,,1,198,0.0 +28344,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,102,0.0 +16365,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,1,32,0.0 +683,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,3,15,0.0 +28057,city_141,0.763,,Has relevent experience,no_enrollment,High School,,3,,,1,6,0.0 +19301,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,20,0.0 +22046,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,26,0.0 +16016,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,12,0.0 +33325,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Public Sector,1,102,0.0 +17331,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,121,0.0 +12045,city_16,0.91,Male,No relevent experience,,Primary School,,3,,,never,94,0.0 +10593,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Funded Startup,1,32,0.0 +13520,city_102,0.804,,Has relevent experience,Part time course,Graduate,STEM,10,50-99,Early Stage Startup,1,73,0.0 +32963,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,18,1000-4999,Public Sector,1,80,0.0 +26818,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,18,5000-9999,Pvt Ltd,1,60,0.0 +9383,city_118,0.722,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,13,1.0 +29399,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,8,100-500,Pvt Ltd,1,41,0.0 +25086,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,<10,Pvt Ltd,4,118,0.0 +8483,city_103,0.92,Male,Has relevent experience,no_enrollment,,,10,50-99,Funded Startup,>4,20,0.0 +32935,city_53,0.74,Male,No relevent experience,no_enrollment,Masters,STEM,14,1000-4999,NGO,1,196,1.0 +21566,city_11,0.55,,Has relevent experience,Full time course,Graduate,STEM,1,10/49,Early Stage Startup,1,25,0.0 +12279,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,,2,28,0.0 +17425,city_136,0.897,Male,Has relevent experience,Part time course,Masters,STEM,7,50-99,Pvt Ltd,1,65,0.0 +19994,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,100-500,Public Sector,1,9,0.0 +18284,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,3,12,1.0 +5604,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,3,34,0.0 +2140,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,9,0.0 +5743,city_21,0.624,Female,Has relevent experience,Full time course,Graduate,STEM,8,100-500,Pvt Ltd,1,33,0.0 +1828,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,12,1.0 +6072,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,>4,100,0.0 +21333,city_90,0.698,,No relevent experience,no_enrollment,Graduate,STEM,9,,,4,31,0.0 +30618,city_160,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,1,,,1,6,1.0 +2750,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,2,92,0.0 +32676,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,Other,1,10/49,Early Stage Startup,1,14,0.0 +10461,city_37,0.794,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Public Sector,1,13,0.0 +8815,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,8,,,1,37,1.0 +27054,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Funded Startup,2,9,0.0 +502,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,4,238,0.0 +19353,city_73,0.754,,Has relevent experience,Full time course,Graduate,STEM,,,,1,12,1.0 +30454,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,,3,85,0.0 +15014,city_145,0.555,Male,Has relevent experience,Part time course,Graduate,STEM,2,10/49,Pvt Ltd,1,19,1.0 +31068,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,10/49,NGO,1,113,1.0 +4356,city_162,0.767,Male,Has relevent experience,Part time course,Graduate,STEM,6,100-500,Pvt Ltd,1,95,0.0 +2277,city_104,0.924,Male,No relevent experience,Full time course,High School,,3,,Pvt Ltd,never,30,0.0 +2294,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,12,<10,Pvt Ltd,>4,61,0.0 +12823,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,3,19,0.0 +10776,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,14,<10,Pvt Ltd,1,78,0.0 +28586,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,1,,,1,43,0.0 +11246,city_98,0.9490000000000001,,Has relevent experience,Part time course,Masters,Humanities,18,100-500,Pvt Ltd,1,306,0.0 +11374,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Funded Startup,1,20,0.0 +27009,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,2,21,1.0 +9324,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,1,31,0.0 +25208,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,NGO,1,106,0.0 +15147,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,23,0.0 +15619,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,7,1000-4999,Pvt Ltd,1,57,0.0 +24497,city_136,0.897,Male,No relevent experience,Part time course,Graduate,STEM,4,100-500,Pvt Ltd,1,123,0.0 +7205,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,>4,102,0.0 +23844,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Pvt Ltd,>4,100,0.0 +9453,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,23,1.0 +7437,city_55,0.7390000000000001,Male,No relevent experience,Full time course,High School,,3,,,never,65,0.0 +29853,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,1,21,0.0 +20711,city_136,0.897,,No relevent experience,Full time course,Masters,STEM,4,,,,48,1.0 +29477,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Other,15,10/49,Pvt Ltd,1,13,0.0 +27836,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,2,24,1.0 +15481,city_24,0.698,,Has relevent experience,no_enrollment,Graduate,Humanities,11,500-999,,1,28,0.0 +31338,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,1,14,0.0 +19777,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,43,0.0 +27244,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,100,0.0 +31359,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,15,<10,Funded Startup,1,40,1.0 +6987,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,109,0.0 +25558,city_103,0.92,Male,No relevent experience,Full time course,High School,,6,,,1,166,0.0 +18029,city_114,0.9259999999999999,,Has relevent experience,Full time course,High School,,5,100-500,Pvt Ltd,never,278,0.0 +20462,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,,20,1.0 +2866,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,3,22,0.0 +31608,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Other,1,83,0.0 +10380,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,5,10/49,Public Sector,1,62,0.0 +4751,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,4,44,0.0 +29779,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,,4,18,0.0 +1933,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,<1,100-500,Pvt Ltd,never,32,0.0 +28371,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,1,35,1.0 +4316,city_103,0.92,,No relevent experience,,Graduate,STEM,6,,,,5,0.0 +29103,city_103,0.92,Male,No relevent experience,Part time course,Phd,Humanities,11,10/49,Other,3,13,0.0 +13061,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Funded Startup,>4,166,0.0 +1713,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,3,92,0.0 +23113,city_54,0.856,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,never,26,0.0 +4909,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,31,0.0 +22157,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,2,28,1.0 +3449,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,4,18,0.0 +822,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,4,43,1.0 +32582,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,4,,,1,224,0.0 +15679,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,NGO,1,41,0.0 +551,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,3,1000-4999,Pvt Ltd,1,17,0.0 +3366,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,50,0.0 +16399,city_50,0.8959999999999999,,Has relevent experience,no_enrollment,Graduate,Other,15,<10,Pvt Ltd,>4,34,0.0 +27726,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,High School,,17,1000-4999,Pvt Ltd,1,50,0.0 +17732,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Funded Startup,>4,16,0.0 +10659,city_65,0.802,,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,1,156,0.0 +24737,city_13,0.8270000000000001,Male,No relevent experience,Full time course,High School,,3,,,never,23,0.0 +17079,city_16,0.91,,Has relevent experience,,Masters,STEM,>20,,,4,72,0.0 +27296,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,1,134,1.0 +13598,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,4,10/49,Pvt Ltd,2,52,0.0 +22602,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,80,1.0 +5080,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,4,28,0.0 +2065,city_77,0.83,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,,1,56,0.0 +9744,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,324,0.0 +23796,city_90,0.698,Male,No relevent experience,no_enrollment,Masters,STEM,13,,,3,37,1.0 +25125,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Funded Startup,2,12,0.0 +4784,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,4,91,0.0 +25502,city_103,0.92,,No relevent experience,no_enrollment,High School,,2,,,never,13,0.0 +4454,city_99,0.915,Male,No relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,1,204,0.0 +16434,city_24,0.698,Male,Has relevent experience,no_enrollment,High School,,11,<10,,3,23,0.0 +29515,city_136,0.897,Male,No relevent experience,no_enrollment,Phd,STEM,>20,10000+,Public Sector,never,27,0.0 +31699,city_78,0.579,,No relevent experience,Part time course,Graduate,STEM,4,,,1,28,1.0 +8288,city_13,0.8270000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Pvt Ltd,1,206,0.0 +5,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,10,<10,Early Stage Startup,1,12,0.0 +9765,city_150,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,22,0.0 +9279,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,3,12,0.0 +20769,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,10/49,Pvt Ltd,2,132,0.0 +25930,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,102,0.0 +7811,city_36,0.893,,Has relevent experience,Part time course,High School,,,100-500,,,94,0.0 +12068,city_173,0.878,Male,Has relevent experience,Full time course,High School,,3,<10,Pvt Ltd,1,45,0.0 +3525,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Other,>20,,,1,68,1.0 +10185,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,Arts,2,,,1,16,1.0 +11064,city_160,0.92,Male,No relevent experience,Full time course,High School,,3,,,2,78,1.0 +6842,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,<10,Pvt Ltd,never,25,1.0 +20298,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,2,105,0.0 +19191,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,11,100-500,Funded Startup,1,22,0.0 +15025,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,6,50-99,Pvt Ltd,1,42,0.0 +2823,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Funded Startup,1,51,1.0 +10700,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,,1,168,1.0 +31403,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,5,50-99,Pvt Ltd,1,46,0.0 +8285,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,18,,,4,111,0.0 +29593,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,202,1.0 +8381,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,Pvt Ltd,2,196,1.0 +26294,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Funded Startup,1,24,1.0 +6635,city_162,0.767,,Has relevent experience,Full time course,Masters,STEM,10,500-999,Pvt Ltd,2,10,0.0 +25061,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10/49,Early Stage Startup,2,20,0.0 +7059,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,91,0.0 +22251,city_128,0.527,Male,No relevent experience,Part time course,Graduate,STEM,10,100-500,Funded Startup,1,57,0.0 +3665,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,never,11,0.0 +30156,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,10,500-999,Pvt Ltd,2,41,0.0 +6697,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,40,1.0 +8627,city_69,0.856,Female,Has relevent experience,Full time course,Graduate,STEM,8,50-99,Pvt Ltd,1,222,0.0 +26176,city_57,0.866,,No relevent experience,no_enrollment,Graduate,STEM,2,<10,Early Stage Startup,1,55,0.0 +13060,city_103,0.92,,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,4,94,0.0 +13353,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,Humanities,6,10000+,Pvt Ltd,3,34,0.0 +31024,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,2,32,1.0 +32865,city_103,0.92,Male,Has relevent experience,Part time course,Masters,Humanities,>20,50-99,NGO,1,112,0.0 +28279,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,<10,Pvt Ltd,1,64,0.0 +16710,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,,,>4,84,0.0 +25542,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Graduate,STEM,14,5000-9999,Pvt Ltd,1,25,0.0 +22391,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,2,28,0.0 +31600,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,3,0.0 +6792,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,Pvt Ltd,2,100,0.0 +25384,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,Pvt Ltd,2,140,0.0 +26274,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10000+,Pvt Ltd,1,11,0.0 +13942,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,78,1.0 +3095,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,>4,48,0.0 +29102,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,15,,,2,30,0.0 +15518,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,2,107,0.0 +23610,city_160,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,10,100-500,Public Sector,1,87,1.0 +12184,city_65,0.802,Male,No relevent experience,,Graduate,STEM,6,100-500,Pvt Ltd,>4,26,0.0 +13938,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,6,10000+,Pvt Ltd,1,23,0.0 +12607,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,3,9,0.0 +32797,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,1,46,0.0 +13105,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,26,1.0 +23588,city_9,0.743,,No relevent experience,,Graduate,STEM,2,,,never,22,1.0 +18194,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,69,0.0 +17028,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,4,124,0.0 +20334,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,2,,,never,18,0.0 +33224,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,1,106,0.0 +24677,city_41,0.8270000000000001,,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,160,0.0 +17721,city_160,0.92,,No relevent experience,no_enrollment,High School,,1,,,,78,0.0 +11022,city_114,0.9259999999999999,Other,No relevent experience,no_enrollment,High School,,5,1000-4999,Pvt Ltd,3,39,0.0 +15931,city_83,0.9229999999999999,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,8,1.0 +22227,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,130,0.0 +3597,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Other,4,100-500,Pvt Ltd,3,70,0.0 +1489,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,,Pvt Ltd,never,78,1.0 +3348,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Funded Startup,1,122,0.0 +13052,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,>4,192,1.0 +13095,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,13,100-500,Pvt Ltd,>4,28,0.0 +27459,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,never,32,1.0 +25536,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,12,0.0 +9879,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,67,0.0 +16501,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Funded Startup,>4,21,0.0 +17341,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,2,125,1.0 +5785,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,,,1,64,0.0 +14739,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,>20,,,2,10,1.0 +31038,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Early Stage Startup,1,138,0.0 +1325,city_46,0.762,,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Funded Startup,1,22,0.0 +4927,city_67,0.855,Male,No relevent experience,no_enrollment,Graduate,No Major,11,<10,Pvt Ltd,2,6,0.0 +22413,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,1,20,0.0 +9678,city_128,0.527,Female,Has relevent experience,no_enrollment,High School,,7,10/49,Early Stage Startup,1,13,0.0 +4122,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,3,0.0 +6376,city_103,0.92,Male,No relevent experience,Full time course,High School,,5,10/49,NGO,1,42,1.0 +6605,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,10,0.0 +4291,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,28,0.0 +7558,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,5,,,never,180,0.0 +6667,city_16,0.91,,Has relevent experience,Full time course,Graduate,STEM,6,10000+,Pvt Ltd,1,194,0.0 +33365,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Early Stage Startup,1,84,0.0 +3981,city_103,0.92,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,2,23,0.0 +6579,city_97,0.925,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,106,0.0 +29999,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,38,0.0 +18082,city_67,0.855,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,25,0.0 +19216,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,11,0.0 +29763,city_36,0.893,Male,No relevent experience,no_enrollment,High School,,4,,,1,82,0.0 +20619,city_31,0.807,Female,No relevent experience,no_enrollment,Masters,STEM,5,,,1,94,0.0 +24195,city_115,0.789,Female,No relevent experience,Full time course,Phd,STEM,19,,NGO,>4,7,0.0 +6872,city_28,0.9390000000000001,,No relevent experience,,Masters,STEM,6,500-999,Pvt Ltd,>4,74,0.0 +18788,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,1,105,0.0 +4460,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,9,,,never,40,1.0 +5842,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,4,55,1.0 +17329,city_23,0.899,,No relevent experience,Part time course,High School,,5,,,never,160,0.0 +2352,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Early Stage Startup,3,6,0.0 +15621,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,76,0.0 +19127,city_67,0.855,Other,Has relevent experience,Full time course,Masters,STEM,8,10000+,Pvt Ltd,1,176,0.0 +15043,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Early Stage Startup,1,8,0.0 +18766,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,2,11,0.0 +18527,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,1,26,0.0 +13845,city_78,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,2,10,0.0 +30813,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,42,0.0 +12241,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,,never,16,0.0 +954,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,>4,18,0.0 +8167,city_173,0.878,Male,No relevent experience,no_enrollment,High School,,16,100-500,Funded Startup,>4,32,0.0 +22584,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,2,22,1.0 +12536,city_104,0.924,,No relevent experience,Full time course,Graduate,STEM,3,,,1,26,0.0 +26781,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,19,1000-4999,Pvt Ltd,>4,34,0.0 +19983,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,16,500-999,Pvt Ltd,>4,50,0.0 +18394,city_61,0.9129999999999999,Male,No relevent experience,no_enrollment,,,3,,,never,222,0.0 +22306,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,264,0.0 +24271,city_16,0.91,Male,Has relevent experience,,Masters,STEM,2,50-99,Early Stage Startup,1,174,1.0 +25402,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,7,,,3,66,1.0 +8298,city_167,0.9209999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,7,,,never,44,1.0 +9030,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Funded Startup,1,84,1.0 +31757,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,1,39,0.0 +32602,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,,,1,150,1.0 +1238,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,14,10/49,Funded Startup,2,13,0.0 +33132,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,2,133,1.0 +26917,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,3,70,0.0 +8073,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,5,10/49,Public Sector,1,61,0.0 +17318,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,8,,,1,65,0.0 +13512,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,22,0.0 +22909,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,17,1000-4999,Pvt Ltd,>4,92,1.0 +5912,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,3,<10,Pvt Ltd,,160,1.0 +14929,city_71,0.884,Male,Has relevent experience,no_enrollment,,,6,100-500,,1,14,0.0 +731,city_11,0.55,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,51,1.0 +8557,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,>4,78,0.0 +18416,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,11,,,1,52,0.0 +8290,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,43,0.0 +8929,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,40,0.0 +18388,city_103,0.92,Other,No relevent experience,Full time course,Graduate,STEM,9,,,never,100,1.0 +22170,city_103,0.92,,No relevent experience,Full time course,Masters,STEM,5,<10,Public Sector,1,8,1.0 +9169,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,,never,50,0.0 +11112,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,280,0.0 +16298,city_158,0.7659999999999999,,Has relevent experience,Part time course,Graduate,STEM,5,10000+,,never,40,0.0 +10026,city_104,0.924,Male,No relevent experience,Full time course,Graduate,STEM,9,100-500,,1,44,0.0 +33169,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,Arts,3,,,1,49,0.0 +22681,city_20,0.7959999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,8,50-99,Pvt Ltd,1,234,0.0 +28887,city_50,0.8959999999999999,Male,No relevent experience,Part time course,High School,,5,<10,Early Stage Startup,never,210,1.0 +15696,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,STEM,5,10000+,Pvt Ltd,1,92,0.0 +983,city_160,0.92,,No relevent experience,no_enrollment,Graduate,STEM,13,,,>4,108,0.0 +23983,city_75,0.9390000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,>20,10000+,Pvt Ltd,>4,35,0.0 +12738,city_28,0.9390000000000001,Male,Has relevent experience,Full time course,High School,,8,,,>4,85,0.0 +17160,city_21,0.624,,No relevent experience,Full time course,High School,,2,,,never,130,0.0 +32627,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,86,1.0 +29456,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Early Stage Startup,1,66,0.0 +2960,city_123,0.738,Male,No relevent experience,no_enrollment,Masters,STEM,14,,,1,78,0.0 +6479,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10/49,Pvt Ltd,3,12,0.0 +9695,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,96,0.0 +5606,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,never,31,0.0 +19367,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,4,88,0.0 +23356,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,1,45,1.0 +13198,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,2,218,0.0 +26588,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,1,218,1.0 +17027,city_65,0.802,,No relevent experience,no_enrollment,Graduate,Arts,>20,,,3,50,0.0 +16342,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,,,1,104,1.0 +17359,city_158,0.7659999999999999,Male,No relevent experience,no_enrollment,,,2,,,never,22,0.0 +27335,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,12,<10,Early Stage Startup,2,25,0.0 +3406,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,39,0.0 +25127,city_16,0.91,Male,Has relevent experience,Full time course,,,5,100-500,Pvt Ltd,2,66,0.0 +16741,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,9,,,1,44,0.0 +26086,city_73,0.754,Male,Has relevent experience,Part time course,Graduate,STEM,5,10000+,Pvt Ltd,1,44,0.0 +2848,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,4,0.0 +21687,city_90,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,10,,,>4,6,1.0 +28464,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,34,0.0 +26377,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,13,,,>4,57,0.0 +10480,city_70,0.698,Female,No relevent experience,no_enrollment,Graduate,Humanities,<1,,,1,52,1.0 +21748,city_138,0.836,,No relevent experience,no_enrollment,Primary School,,1,,,never,9,0.0 +21352,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,2,6,1.0 +21629,city_10,0.895,,Has relevent experience,Full time course,Graduate,STEM,2,10000+,Pvt Ltd,1,122,0.0 +4680,city_65,0.802,Other,No relevent experience,no_enrollment,High School,,1,,Pvt Ltd,never,51,0.0 +19758,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,1,50-99,,never,54,1.0 +8421,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,1,10,0.0 +31968,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,6,100-500,Pvt Ltd,1,210,0.0 +32656,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,1,,,never,84,1.0 +3473,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,256,0.0 +21398,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,16,1000-4999,Pvt Ltd,4,72,0.0 +27841,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Early Stage Startup,1,55,0.0 +19354,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,3,8,1.0 +9245,city_100,0.887,,No relevent experience,no_enrollment,Phd,STEM,>20,,,3,62,1.0 +13160,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Public Sector,>4,168,0.0 +29823,city_150,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Public Sector,>4,24,0.0 +22545,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,30,1.0 +29978,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,,,4,63,1.0 +12654,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,Other,3,100-500,Pvt Ltd,3,5,0.0 +23993,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,17,,,never,50,1.0 +16898,city_160,0.92,,No relevent experience,no_enrollment,Phd,STEM,>20,10/49,Pvt Ltd,1,59,0.0 +23801,city_143,0.74,Male,Has relevent experience,Full time course,Graduate,STEM,7,1000-4999,Pvt Ltd,3,26,0.0 +7866,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Pvt Ltd,4,180,0.0 +13257,city_19,0.682,Male,Has relevent experience,no_enrollment,High School,,7,1000-4999,Pvt Ltd,1,28,0.0 +24000,city_19,0.682,,Has relevent experience,Full time course,Graduate,STEM,3,,,never,13,1.0 +11033,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,Business Degree,14,<10,Pvt Ltd,>4,23,0.0 +28850,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,>4,77,0.0 +18151,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,10,500-999,Pvt Ltd,1,90,0.0 +16895,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,5,50-99,Pvt Ltd,>4,34,0.0 +29490,city_67,0.855,Female,Has relevent experience,no_enrollment,Graduate,Humanities,4,50-99,Pvt Ltd,3,140,1.0 +4348,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,7,500-999,Pvt Ltd,1,20,0.0 +14922,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,2,138,1.0 +29759,city_100,0.887,Male,Has relevent experience,Part time course,High School,,16,,,never,102,1.0 +12258,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,>4,134,0.0 +33227,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,<1,,,1,15,0.0 +12912,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,1,,,1,50,1.0 +22326,city_21,0.624,,No relevent experience,no_enrollment,Primary School,,3,,,never,56,1.0 +25030,city_21,0.624,Male,No relevent experience,Part time course,Graduate,STEM,<1,,,never,13,1.0 +15172,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,>4,45,0.0 +14695,city_91,0.691,Male,No relevent experience,no_enrollment,High School,,7,,,1,138,0.0 +23139,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,4,0.0 +2776,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,,,4,11,0.0 +26829,city_123,0.738,Male,No relevent experience,no_enrollment,High School,,>20,,,1,56,0.0 +30547,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,3,,,1,34,1.0 +23127,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,3,100-500,NGO,1,220,0.0 +14306,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,25,0.0 +19617,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,10/49,,1,46,0.0 +17670,city_65,0.802,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,4,94,0.0 +23823,city_13,0.8270000000000001,,No relevent experience,no_enrollment,,,2,,,never,15,0.0 +320,city_27,0.848,Male,Has relevent experience,Part time course,Graduate,STEM,>20,,,2,8,1.0 +32961,city_14,0.698,Male,No relevent experience,Full time course,Graduate,STEM,4,,Pvt Ltd,never,24,1.0 +12958,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,never,61,1.0 +7822,city_98,0.9490000000000001,,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Public Sector,1,50,0.0 +26571,city_136,0.897,Male,Has relevent experience,Part time course,Graduate,STEM,6,100-500,NGO,1,11,0.0 +7116,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,12,0.0 +8946,city_76,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,16,1.0 +24084,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,8,500-999,Pvt Ltd,1,23,0.0 +8676,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Pvt Ltd,>4,43,0.0 +27160,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,NGO,4,65,1.0 +32055,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,1,49,0.0 +8761,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,32,0.0 +2774,city_114,0.9259999999999999,,Has relevent experience,Full time course,High School,,9,<10,Early Stage Startup,1,151,0.0 +22770,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,2,164,1.0 +2675,city_23,0.899,Male,Has relevent experience,Part time course,Graduate,STEM,10,1000-4999,Pvt Ltd,>4,70,0.0 +20255,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,,4,84,0.0 +13423,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,<10,Pvt Ltd,4,34,1.0 +22976,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Funded Startup,1,15,0.0 +17734,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,7,,,never,17,1.0 +10746,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,50-99,Pvt Ltd,>4,26,0.0 +14363,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,10000+,Pvt Ltd,1,70,0.0 +25399,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10/49,NGO,1,104,0.0 +30725,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,21,0.0 +5131,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,1,92,0.0 +258,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,3,,Pvt Ltd,never,31,0.0 +20869,city_71,0.884,Other,Has relevent experience,no_enrollment,Graduate,Arts,<1,,,1,8,1.0 +6147,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,15,<10,Early Stage Startup,1,51,0.0 +21620,city_21,0.624,Female,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,1,15,1.0 +16179,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,,,,>4,198,1.0 +6473,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,,1000-4999,Pvt Ltd,1,18,0.0 +20890,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,1,158,0.0 +2031,city_104,0.924,Male,No relevent experience,Full time course,High School,,5,,,1,72,0.0 +11793,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,never,78,1.0 +962,city_128,0.527,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,Funded Startup,1,96,1.0 +26219,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,141,1.0 +18332,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,5000-9999,Public Sector,4,13,0.0 +7699,city_103,0.92,,Has relevent experience,no_enrollment,Phd,STEM,>20,,,2,6,0.0 +21147,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,160,1.0 +374,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,5000-9999,Public Sector,2,27,0.0 +21149,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,never,116,0.0 +3094,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,24,0.0 +5837,city_75,0.9390000000000001,Male,No relevent experience,Full time course,Graduate,STEM,8,10000+,Public Sector,2,64,0.0 +12097,city_100,0.887,,Has relevent experience,Part time course,High School,,6,10000+,Public Sector,1,91,1.0 +22408,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,4,20,0.0 +4141,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,20,0.0 +16335,city_102,0.804,Male,Has relevent experience,Full time course,Masters,Humanities,2,50-99,Funded Startup,1,43,0.0 +11961,city_123,0.738,Male,Has relevent experience,Full time course,Masters,STEM,7,1000-4999,Pvt Ltd,2,148,0.0 +23454,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,17,50-99,Pvt Ltd,>4,48,0.0 +4493,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,1000-4999,Pvt Ltd,>4,29,0.0 +19009,city_16,0.91,,No relevent experience,no_enrollment,Graduate,STEM,<1,,,2,46,0.0 +5600,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,4,111,1.0 +16957,city_160,0.92,,Has relevent experience,Part time course,Graduate,STEM,>20,100-500,Pvt Ltd,1,138,0.0 +23604,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,>20,50-99,NGO,>4,18,0.0 +2455,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,2,17,0.0 +28891,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,102,0.0 +29724,city_50,0.8959999999999999,Male,No relevent experience,Full time course,Graduate,STEM,7,,,never,78,1.0 +270,city_16,0.91,Male,No relevent experience,Full time course,High School,,6,,Pvt Ltd,never,51,0.0 +3550,city_27,0.848,,No relevent experience,,,,15,,,>4,102,0.0 +28555,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,never,28,1.0 +31736,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,>4,97,0.0 +31598,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Pvt Ltd,>4,29,0.0 +14609,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,4,15,1.0 +6505,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,2,170,0.0 +1894,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,3,50-99,Pvt Ltd,1,22,0.0 +23654,city_103,0.92,Male,No relevent experience,Full time course,High School,,4,,,,3,1.0 +3704,city_67,0.855,,No relevent experience,Full time course,Graduate,STEM,8,,Pvt Ltd,never,6,0.0 +15368,city_103,0.92,,Has relevent experience,Part time course,Masters,STEM,>20,10000+,Pvt Ltd,>4,33,0.0 +12028,city_21,0.624,,No relevent experience,Full time course,,,2,,,,61,0.0 +18878,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,18,0.0 +32042,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Early Stage Startup,1,78,0.0 +15203,city_102,0.804,Male,No relevent experience,Full time course,High School,,3,,,never,32,0.0 +29941,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,4,165,0.0 +23567,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,>4,58,0.0 +13888,city_100,0.887,Male,Has relevent experience,Part time course,High School,,3,10/49,Pvt Ltd,1,14,0.0 +11555,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,63,0.0 +5225,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,3,73,0.0 +31884,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,>4,88,1.0 +18343,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,10,,,3,180,1.0 +24634,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,29,0.0 +19026,city_67,0.855,Male,No relevent experience,Part time course,Graduate,STEM,14,100-500,Pvt Ltd,>4,17,0.0 +20450,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Arts,9,,,>4,24,1.0 +21599,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Public Sector,1,47,0.0 +22864,city_9,0.743,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,278,0.0 +3826,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,1,9,0.0 +8473,city_136,0.897,Male,Has relevent experience,no_enrollment,High School,,15,,,4,15,0.0 +19056,city_81,0.73,Male,No relevent experience,no_enrollment,Graduate,STEM,6,10/49,NGO,1,87,0.0 +19915,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,10,500-999,Pvt Ltd,2,264,0.0 +24927,city_76,0.698,,No relevent experience,Part time course,Masters,STEM,4,500-999,Public Sector,,111,1.0 +14625,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,9,1.0 +8668,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,Business Degree,14,100-500,Pvt Ltd,1,24,0.0 +22156,city_59,0.775,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,2,108,0.0 +7635,city_89,0.925,Male,Has relevent experience,Full time course,Graduate,STEM,11,50-99,,,270,0.0 +7893,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,4,,,never,70,0.0 +5933,city_173,0.878,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,248,0.0 +12319,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Humanities,2,,,1,49,1.0 +24492,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,>4,67,0.0 +5096,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,30,0.0 +28479,city_136,0.897,Male,Has relevent experience,Part time course,Masters,STEM,6,,,1,29,0.0 +23593,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,never,54,0.0 +10806,city_71,0.884,,No relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,1,55,0.0 +4706,city_67,0.855,Female,No relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,2,94,0.0 +25383,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,3,35,0.0 +20526,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,<1,50-99,Pvt Ltd,1,28,1.0 +7436,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,<1,50-99,Pvt Ltd,1,57,0.0 +5997,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,11,50-99,Pvt Ltd,>4,28,0.0 +29035,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,Humanities,11,,,2,41,1.0 +6992,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,1,21,0.0 +13898,city_103,0.92,,Has relevent experience,Full time course,Graduate,STEM,7,,,1,3,1.0 +7816,city_45,0.89,,Has relevent experience,Part time course,Masters,STEM,8,50-99,Public Sector,2,81,1.0 +12450,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,<1,<10,Pvt Ltd,1,21,0.0 +580,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Public Sector,>4,18,0.0 +31313,city_67,0.855,Male,No relevent experience,Full time course,Graduate,STEM,7,5000-9999,Pvt Ltd,1,38,0.0 +15366,city_21,0.624,Male,No relevent experience,no_enrollment,,,<1,,,never,12,0.0 +4001,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,111,0.0 +1328,city_103,0.92,Male,No relevent experience,no_enrollment,,,4,,,2,104,0.0 +26268,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,,2,8,0.0 +12054,city_116,0.743,,Has relevent experience,no_enrollment,Masters,STEM,8,,,1,44,1.0 +29745,city_90,0.698,,No relevent experience,Part time course,Graduate,STEM,7,,,1,22,1.0 +30761,city_21,0.624,,Has relevent experience,Full time course,Masters,Other,4,10000+,Pvt Ltd,1,92,0.0 +18628,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10/49,Pvt Ltd,1,37,0.0 +10172,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,140,0.0 +13430,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,Arts,10,100-500,Pvt Ltd,2,99,0.0 +21256,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,48,1.0 +3967,city_16,0.91,Male,No relevent experience,no_enrollment,,,4,,Pvt Ltd,never,6,0.0 +7743,city_97,0.925,,Has relevent experience,no_enrollment,Phd,STEM,10,10000+,Pvt Ltd,1,162,0.0 +7340,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,10,,,never,2,0.0 +3644,city_131,0.68,,No relevent experience,no_enrollment,Masters,STEM,3,,Pvt Ltd,never,51,1.0 +19418,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,never,7,1.0 +16603,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Arts,3,10/49,Pvt Ltd,1,20,0.0 +495,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,15,5000-9999,Pvt Ltd,1,31,0.0 +16864,city_101,0.5579999999999999,Male,No relevent experience,Part time course,High School,,6,,,>4,63,1.0 +26257,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,214,1.0 +19570,city_21,0.624,,No relevent experience,no_enrollment,Masters,Other,<1,,,1,31,0.0 +8044,city_16,0.91,Female,No relevent experience,,Graduate,STEM,4,,Pvt Ltd,never,65,0.0 +18580,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,2,14,0.0 +31897,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,>4,16,0.0 +15617,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,11,10/49,Pvt Ltd,2,50,0.0 +17858,city_81,0.73,Male,Has relevent experience,Part time course,Graduate,STEM,9,50-99,Pvt Ltd,4,89,0.0 +30190,city_126,0.479,,Has relevent experience,Part time course,Phd,STEM,>20,,,>4,40,0.0 +29406,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Early Stage Startup,1,54,0.0 +5063,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,4,330,0.0 +24854,city_70,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,11,0.0 +23516,city_100,0.887,Male,No relevent experience,no_enrollment,Graduate,Humanities,5,<10,Pvt Ltd,2,45,1.0 +16256,city_103,0.92,Male,Has relevent experience,no_enrollment,Primary School,,>20,1000-4999,Pvt Ltd,>4,88,0.0 +1906,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Pvt Ltd,1,78,0.0 +25469,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,74,0.0 +24883,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,>4,41,0.0 +32946,city_159,0.843,Male,No relevent experience,Full time course,High School,,1,,Pvt Ltd,never,74,0.0 +24431,city_67,0.855,,No relevent experience,no_enrollment,Masters,STEM,2,500-999,Pvt Ltd,1,21,0.0 +16038,city_159,0.843,Male,No relevent experience,Full time course,Graduate,STEM,3,1000-4999,Pvt Ltd,never,20,0.0 +18601,city_21,0.624,,No relevent experience,Part time course,Masters,STEM,14,,,1,17,0.0 +14136,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,25,0.0 +5862,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,>4,37,0.0 +13640,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Public Sector,1,46,0.0 +12713,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Phd,Humanities,1,50-99,Pvt Ltd,1,10,0.0 +9525,city_90,0.698,Male,No relevent experience,no_enrollment,Masters,STEM,11,,,never,18,0.0 +11223,city_41,0.8270000000000001,,Has relevent experience,no_enrollment,,,4,50-99,Funded Startup,1,89,0.0 +10800,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Pvt Ltd,>4,128,0.0 +10115,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,,,2,14,0.0 +10839,city_16,0.91,,No relevent experience,no_enrollment,Masters,STEM,3,50-99,Funded Startup,1,29,0.0 +3418,city_69,0.856,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,45,0.0 +8800,city_103,0.92,,No relevent experience,Part time course,Graduate,STEM,2,50-99,Public Sector,2,31,0.0 +32599,city_114,0.9259999999999999,,Has relevent experience,Part time course,Graduate,STEM,6,50-99,Pvt Ltd,4,80,1.0 +11954,city_57,0.866,Male,Has relevent experience,Part time course,Masters,STEM,>20,<10,Pvt Ltd,>4,226,0.0 +23470,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,34,0.0 +22807,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,7,100-500,Pvt Ltd,2,250,0.0 +14245,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,500-999,Funded Startup,1,198,0.0 +18089,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,,1,50,1.0 +6099,city_10,0.895,Male,No relevent experience,no_enrollment,High School,,5,50-99,NGO,2,62,0.0 +29366,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,5,50-99,Pvt Ltd,>4,135,0.0 +5365,city_21,0.624,,Has relevent experience,no_enrollment,,,5,,,4,50,1.0 +6357,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,never,37,0.0 +1303,city_75,0.9390000000000001,Other,No relevent experience,no_enrollment,Graduate,Other,>20,,,>4,13,0.0 +14492,city_21,0.624,,Has relevent experience,,Masters,STEM,3,10/49,Early Stage Startup,2,96,1.0 +28979,city_73,0.754,Male,No relevent experience,Full time course,Graduate,STEM,7,,,2,21,1.0 +26921,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Pvt Ltd,1,35,0.0 +26414,city_72,0.795,,Has relevent experience,,Graduate,STEM,16,,,>4,4,1.0 +6897,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,20,1000-4999,Pvt Ltd,1,3,0.0 +25718,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,5,100-500,Pvt Ltd,>4,224,0.0 +26105,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,74,0.0 +33023,city_160,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Public Sector,>4,108,0.0 +33301,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10/49,NGO,2,268,1.0 +17961,city_149,0.6890000000000001,,Has relevent experience,,Graduate,STEM,6,50-99,Pvt Ltd,2,86,0.0 +6850,city_104,0.924,Female,Has relevent experience,no_enrollment,High School,,>20,50-99,,>4,90,0.0 +22845,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,3,166,1.0 +1038,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Pvt Ltd,>4,24,0.0 +16280,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,5,0.0 +21652,city_21,0.624,Female,No relevent experience,Full time course,Graduate,STEM,5,,,never,15,0.0 +18673,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,,1,54,0.0 +7990,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,19,0.0 +6668,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,2,4,1.0 +2304,city_77,0.83,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Pvt Ltd,4,310,0.0 +29544,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,STEM,11,50-99,Pvt Ltd,1,54,0.0 +4355,city_75,0.9390000000000001,Male,No relevent experience,Full time course,Masters,STEM,4,5000-9999,Public Sector,never,6,0.0 +26886,city_67,0.855,Other,No relevent experience,Part time course,Graduate,STEM,>20,,,>4,34,1.0 +21464,city_149,0.6890000000000001,Male,No relevent experience,Part time course,High School,,2,,,1,32,1.0 +7637,city_152,0.698,,No relevent experience,Full time course,Masters,STEM,3,,,,157,1.0 +28745,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,2,90,0.0 +9287,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,3,35,0.0 +8456,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,108,0.0 +31184,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10/49,Pvt Ltd,1,130,0.0 +4821,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,>4,314,1.0 +718,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,2,37,1.0 +22074,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,3,72,0.0 +16734,city_103,0.92,,No relevent experience,no_enrollment,,,5,,,never,12,0.0 +2698,city_36,0.893,Male,No relevent experience,,Graduate,No Major,12,10000+,Public Sector,3,68,0.0 +23308,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,<1,,,1,176,0.0 +18536,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,3,64,0.0 +31956,city_142,0.727,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,2,282,1.0 +30911,city_45,0.89,Male,Has relevent experience,no_enrollment,High School,,9,100-500,Pvt Ltd,1,69,0.0 +32306,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,1,14,1.0 +21587,city_145,0.555,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,10/49,Pvt Ltd,1,18,1.0 +17878,city_114,0.9259999999999999,,Has relevent experience,,,,>20,,,>4,16,0.0 +8960,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,3,48,0.0 +5211,city_90,0.698,,No relevent experience,Full time course,Masters,STEM,<1,50-99,NGO,,29,0.0 +4436,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,86,0.0 +25507,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,,1,53,0.0 +20936,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,15,,,>4,42,1.0 +26874,city_100,0.887,Male,No relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,64,0.0 +13303,city_160,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,9,50-99,Public Sector,>4,26,1.0 +3115,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,1,<10,Early Stage Startup,1,38,1.0 +10270,city_104,0.924,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,37,0.0 +6895,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Public Sector,2,9,0.0 +17138,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,never,37,1.0 +3805,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,4,500-999,,1,92,0.0 +2886,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,50,0.0 +17717,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,2,,,2,94,1.0 +19334,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,24,0.0 +28328,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,10,,,4,38,0.0 +27200,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,,,1,240,0.0 +28012,city_118,0.722,,No relevent experience,no_enrollment,High School,,3,10/49,Pvt Ltd,1,18,0.0 +31717,city_19,0.682,Female,No relevent experience,no_enrollment,Graduate,STEM,12,,,never,59,1.0 +11047,city_138,0.836,Male,No relevent experience,no_enrollment,High School,,3,,,never,9,0.0 +4006,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,53,1.0 +6631,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Early Stage Startup,1,100,0.0 +23232,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,Business Degree,1,<10,Early Stage Startup,1,10,0.0 +25546,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,2,50-99,,1,107,0.0 +65,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Other,2,50-99,Pvt Ltd,1,8,0.0 +31382,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,5000-9999,Other,>4,50,0.0 +26338,city_71,0.884,,Has relevent experience,Part time course,Graduate,STEM,4,10000+,Public Sector,1,39,0.0 +14655,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,>20,50-99,Pvt Ltd,>4,52,0.0 +11099,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,,1000-4999,,,46,0.0 +21782,city_103,0.92,Male,Has relevent experience,Full time course,High School,,4,50-99,,1,44,0.0 +22210,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,4,123,0.0 +1723,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,2,107,0.0 +18821,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,10,500-999,,1,32,0.0 +10193,city_100,0.887,Male,No relevent experience,Full time course,High School,,9,,,never,29,0.0 +11997,city_123,0.738,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10/49,Early Stage Startup,1,50,0.0 +31255,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,3,100-500,Pvt Ltd,1,94,0.0 +2147,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,21,0.0 +2240,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Pvt Ltd,2,50,1.0 +29826,city_118,0.722,Male,No relevent experience,Full time course,High School,,<1,,,never,24,1.0 +9982,city_28,0.9390000000000001,Male,No relevent experience,Full time course,High School,,5,,,2,96,0.0 +15754,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,High School,,1,50-99,Public Sector,1,99,0.0 +18818,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,3,132,0.0 +28837,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,>20,,,1,40,1.0 +7056,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,Other,15,10/49,Pvt Ltd,never,164,0.0 +22725,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,4,,,never,12,0.0 +30575,city_46,0.762,Male,Has relevent experience,no_enrollment,Masters,STEM,11,,,1,6,1.0 +11083,city_73,0.754,,Has relevent experience,Full time course,Graduate,STEM,14,5000-9999,Pvt Ltd,>4,56,0.0 +6436,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,,never,192,0.0 +16398,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,NGO,>4,22,0.0 +12302,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,4,4,0.0 +20623,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,82,0.0 +13794,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,100,0.0 +29296,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,Other,5,100-500,Funded Startup,1,100,0.0 +26557,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,157,0.0 +11173,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,13,0.0 +20338,city_145,0.555,,No relevent experience,Full time course,High School,,4,,,1,73,1.0 +9183,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,17,0.0 +32517,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,89,0.0 +2747,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Funded Startup,1,16,0.0 +5444,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,15,100-500,Funded Startup,2,56,0.0 +17631,city_67,0.855,Male,No relevent experience,Full time course,Primary School,,2,,,1,95,0.0 +2293,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,22,1.0 +18040,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,,1,112,0.0 +4445,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,9,100-500,Public Sector,2,48,0.0 +28987,city_21,0.624,Male,No relevent experience,Full time course,High School,,4,<10,Funded Startup,never,109,0.0 +17534,city_160,0.92,Male,Has relevent experience,Full time course,High School,,3,50-99,Funded Startup,1,264,0.0 +11825,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,Humanities,18,50-99,Pvt Ltd,>4,78,0.0 +19293,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,131,0.0 +17650,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Public Sector,>4,94,0.0 +11937,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,NGO,1,105,0.0 +23077,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,104,0.0 +83,city_74,0.579,,Has relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,1,62,0.0 +27222,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,160,0.0 +28650,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,1,16,0.0 +2477,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,Other,11,,,>4,77,1.0 +1320,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Pvt Ltd,>4,34,0.0 +18501,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,>4,6,0.0 +14674,city_64,0.6659999999999999,,No relevent experience,no_enrollment,Graduate,STEM,14,5000-9999,Pvt Ltd,3,71,0.0 +14531,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,>4,100,0.0 +12516,city_71,0.884,,Has relevent experience,,,,>20,,Public Sector,>4,38,0.0 +2168,city_89,0.925,,No relevent experience,Full time course,Graduate,STEM,2,100-500,NGO,1,4,0.0 +1386,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,112,0.0 +33262,city_74,0.579,,Has relevent experience,Full time course,Graduate,STEM,8,,,1,105,0.0 +4019,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,58,0.0 +3123,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,28,0.0 +33147,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,198,0.0 +4252,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Other,>20,,,>4,14,0.0 +24504,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,NGO,1,7,0.0 +15767,city_136,0.897,Male,Has relevent experience,Part time course,Graduate,STEM,4,100-500,Pvt Ltd,3,40,0.0 +11497,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,4,27,0.0 +12124,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Pvt Ltd,2,17,0.0 +2272,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,1,19,0.0 +21288,city_74,0.579,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,62,1.0 +21553,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,7,0.0 +24515,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,10,,,1,106,0.0 +17807,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,,,>20,100-500,Pvt Ltd,>4,55,0.0 +23182,city_25,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,204,0.0 +18798,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,never,68,0.0 +7138,city_71,0.884,Male,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,2,43,0.0 +11865,city_16,0.91,Female,Has relevent experience,no_enrollment,Phd,STEM,>20,500-999,Pvt Ltd,1,18,0.0 +30408,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,8,0.0 +16833,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,10000+,Pvt Ltd,>4,79,0.0 +29324,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,14,1.0 +13497,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,14,500-999,Pvt Ltd,>4,82,0.0 +3242,city_165,0.903,Male,No relevent experience,Full time course,High School,,2,<10,Pvt Ltd,1,10,0.0 +25234,city_67,0.855,,Has relevent experience,Full time course,Masters,STEM,14,10000+,Pvt Ltd,4,12,1.0 +14536,city_103,0.92,,No relevent experience,no_enrollment,Masters,Business Degree,19,,,>4,146,0.0 +21645,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,1,55,0.0 +4157,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,3,1000-4999,Pvt Ltd,1,166,0.0 +4257,city_134,0.698,,No relevent experience,no_enrollment,,,1,,Pvt Ltd,never,68,0.0 +24173,city_11,0.55,Male,No relevent experience,no_enrollment,Graduate,No Major,<1,,,4,158,0.0 +11477,city_126,0.479,Male,Has relevent experience,Full time course,Graduate,STEM,2,100-500,Other,1,43,0.0 +8576,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,8,0.0 +21884,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,>4,42,0.0 +13916,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,5,,,never,81,0.0 +24437,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,2,1000-4999,Pvt Ltd,2,46,0.0 +31151,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,14,0.0 +14168,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,1,59,0.0 +10202,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,7,,Public Sector,1,48,0.0 +23462,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,14,,,>4,89,1.0 +30031,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,2,36,0.0 +9668,city_103,0.92,Other,Has relevent experience,Full time course,Graduate,STEM,8,,Pvt Ltd,1,143,0.0 +30012,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,500-999,Pvt Ltd,1,75,0.0 +21342,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,2,72,1.0 +29849,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,73,0.0 +10695,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,316,0.0 +9402,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,12,50-99,,1,110,0.0 +4309,city_99,0.915,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,never,62,1.0 +29954,city_115,0.789,Female,No relevent experience,Full time course,Graduate,STEM,4,,,never,308,1.0 +12935,city_21,0.624,Male,Has relevent experience,,Masters,STEM,12,,,1,98,1.0 +24819,city_14,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,9,5000-9999,Pvt Ltd,4,31,0.0 +12299,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,500-999,Funded Startup,1,8,0.0 +18079,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,<1,,,never,73,0.0 +25309,city_16,0.91,Other,No relevent experience,no_enrollment,Masters,Humanities,15,10000+,Pvt Ltd,3,51,0.0 +28965,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,4,21,0.0 +10883,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,Humanities,<1,10/49,Funded Startup,1,15,0.0 +21706,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,67,0.0 +30393,city_71,0.884,Male,Has relevent experience,no_enrollment,Primary School,,>20,10/49,Pvt Ltd,1,9,0.0 +24134,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,9,100-500,Pvt Ltd,4,98,0.0 +3184,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,2,140,1.0 +22089,city_72,0.795,Male,No relevent experience,Full time course,Graduate,STEM,4,50-99,,1,83,0.0 +14690,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,135,0.0 +9222,city_100,0.887,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,,2,39,0.0 +19302,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,10/49,Pvt Ltd,>4,8,0.0 +15835,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,2,4,0.0 +10022,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Early Stage Startup,4,21,0.0 +4427,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,88,1.0 +5326,city_23,0.899,Male,No relevent experience,no_enrollment,Primary School,,4,,,1,44,0.0 +20784,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Pvt Ltd,1,55,0.0 +19803,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,Business Degree,4,100-500,Pvt Ltd,1,16,0.0 +33194,city_73,0.754,Male,Has relevent experience,no_enrollment,High School,,4,10/49,Pvt Ltd,2,64,0.0 +9211,city_100,0.887,Female,Has relevent experience,no_enrollment,Graduate,No Major,5,,,,12,0.0 +8054,city_104,0.924,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Public Sector,>4,29,0.0 +27165,city_145,0.555,Female,No relevent experience,Full time course,Graduate,STEM,2,,,1,23,0.0 +14031,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,,1,70,0.0 +9811,city_160,0.92,Female,No relevent experience,Full time course,Graduate,STEM,<1,,,2,29,0.0 +13911,city_81,0.73,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,326,0.0 +8376,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,Humanities,4,1000-4999,Pvt Ltd,1,23,0.0 +21985,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,,Pvt Ltd,2,89,0.0 +15890,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,3,74,0.0 +12578,city_77,0.83,Male,Has relevent experience,Part time course,,,>20,50-99,Pvt Ltd,2,37,1.0 +4757,city_67,0.855,Male,Has relevent experience,no_enrollment,,,>20,,,1,108,0.0 +20019,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,never,34,1.0 +4077,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Other,6,10000+,Pvt Ltd,4,23,0.0 +20117,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,72,0.0 +16950,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,32,0.0 +10265,city_104,0.924,,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,>4,196,0.0 +24428,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Pvt Ltd,1,12,0.0 +13803,city_73,0.754,Male,Has relevent experience,Full time course,High School,,6,50-99,Pvt Ltd,3,5,0.0 +10174,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,2,2,0.0 +25141,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,500-999,,never,44,1.0 +30118,city_143,0.74,Male,No relevent experience,no_enrollment,Graduate,STEM,14,,,3,38,0.0 +24327,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Early Stage Startup,1,21,1.0 +20386,city_75,0.9390000000000001,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Early Stage Startup,1,7,0.0 +23360,city_21,0.624,Male,No relevent experience,Full time course,High School,,2,,,never,116,1.0 +18231,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,1,78,0.0 +25694,city_24,0.698,Female,No relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Public Sector,>4,160,0.0 +19225,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,19,0.0 +32703,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,10,,,>4,33,0.0 +20600,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,1,306,0.0 +8259,city_41,0.8270000000000001,,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,8,0.0 +10741,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,84,0.0 +22635,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,1,79,0.0 +12925,city_11,0.55,,No relevent experience,Full time course,Graduate,STEM,4,,,never,153,1.0 +1970,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,15,,Pvt Ltd,,12,1.0 +15731,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,5,,,never,108,0.0 +3549,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,28,0.0 +13503,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10/49,,2,46,0.0 +15983,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,1,72,0.0 +15479,city_158,0.7659999999999999,Female,No relevent experience,Full time course,Graduate,Other,3,,,1,42,1.0 +22314,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Funded Startup,1,9,0.0 +6495,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,3,10/49,Early Stage Startup,1,21,1.0 +1015,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,54,0.0 +20370,city_165,0.903,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,1,24,1.0 +10577,city_143,0.74,Male,Has relevent experience,Part time course,Masters,STEM,20,,,1,39,1.0 +12692,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,4,,,,160,0.0 +17390,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,10,50-99,Pvt Ltd,1,109,0.0 +19248,city_73,0.754,Male,No relevent experience,Full time course,High School,,5,,,2,23,0.0 +23725,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,15,0.0 +1212,city_75,0.9390000000000001,Male,Has relevent experience,Full time course,High School,,5,10/49,Pvt Ltd,1,25,0.0 +19014,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,10,,,2,3,0.0 +6251,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,7,500-999,Pvt Ltd,1,192,0.0 +1388,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Arts,5,1000-4999,Public Sector,1,42,0.0 +9587,city_103,0.92,,No relevent experience,no_enrollment,,,4,50-99,Pvt Ltd,never,26,0.0 +28675,city_55,0.7390000000000001,,No relevent experience,no_enrollment,Masters,STEM,<1,,,1,43,0.0 +10820,city_136,0.897,Male,No relevent experience,Full time course,Masters,STEM,5,,,1,31,0.0 +24898,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,5,10/49,,1,32,0.0 +8047,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,14,,Pvt Ltd,1,44,0.0 +26922,city_83,0.9229999999999999,Female,Has relevent experience,no_enrollment,Graduate,Humanities,18,,,1,13,1.0 +6868,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,>4,28,0.0 +33122,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,12,0.0 +20862,city_138,0.836,Male,No relevent experience,no_enrollment,High School,,5,,,never,76,0.0 +7239,city_103,0.92,Male,Has relevent experience,Full time course,High School,,9,,,1,156,1.0 +11053,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Early Stage Startup,1,18,0.0 +599,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,3,6,0.0 +10504,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,35,0.0 +21773,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,43,0.0 +6576,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,>4,11,0.0 +14708,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,1,81,1.0 +448,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,14,10/49,Pvt Ltd,never,112,1.0 +27259,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,1,37,0.0 +20186,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,8,,,never,100,1.0 +46,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Public Sector,2,4,0.0 +22175,city_102,0.804,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,42,0.0 +18237,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Pvt Ltd,1,25,0.0 +26061,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,NGO,4,48,0.0 +30972,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,1,6,0.0 +31580,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,7,1000-4999,Pvt Ltd,4,15,0.0 +30002,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,<1,<10,Funded Startup,1,87,0.0 +10008,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Other,1,50,0.0 +3850,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,10,,Public Sector,never,45,1.0 +31540,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,No Major,13,,,1,87,1.0 +32982,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,14,<10,Early Stage Startup,1,117,0.0 +23097,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,2,100-500,Funded Startup,2,5,0.0 +927,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,15,<10,Early Stage Startup,1,61,0.0 +31616,city_67,0.855,Male,No relevent experience,Full time course,Graduate,STEM,15,100-500,Pvt Ltd,2,36,1.0 +7741,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,>20,10000+,Public Sector,>4,11,0.0 +26159,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,62,0.0 +31340,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,15,0.0 +21050,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Funded Startup,4,2,0.0 +26744,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,Other,>20,50-99,Pvt Ltd,2,46,0.0 +23396,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,1,41,1.0 +3517,city_103,0.92,Other,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,70,0.0 +16888,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,22,0.0 +1717,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Business Degree,10,10000+,Pvt Ltd,2,15,0.0 +21610,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,,,4,17,1.0 +23166,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,53,0.0 +3739,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,5000-9999,Public Sector,3,32,0.0 +29041,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,5000-9999,Pvt Ltd,>4,122,0.0 +6898,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,>20,100-500,Pvt Ltd,4,32,0.0 +776,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,38,0.0 +17711,city_103,0.92,Male,No relevent experience,no_enrollment,,,5,,,never,31,0.0 +2007,city_11,0.55,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,1,280,0.0 +4760,city_103,0.92,Male,No relevent experience,Full time course,High School,,8,,,1,118,1.0 +9867,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,3,22,1.0 +27922,city_176,0.764,Male,Has relevent experience,,Graduate,STEM,4,50-99,Pvt Ltd,2,36,0.0 +28372,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,1,,,never,86,0.0 +23499,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Early Stage Startup,1,24,1.0 +11560,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,33,0.0 +33072,city_48,0.493,,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,29,0.0 +30077,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,3,30,0.0 +3567,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Arts,>20,500-999,Public Sector,never,60,0.0 +19601,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,1000-4999,Pvt Ltd,>4,15,0.0 +1351,city_67,0.855,Male,No relevent experience,Full time course,High School,,4,1000-4999,Pvt Ltd,1,113,0.0 +29866,city_74,0.579,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,1,30,1.0 +14328,city_14,0.698,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,2,10/49,Pvt Ltd,1,198,1.0 +12540,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,27,0.0 +13892,city_103,0.92,Male,No relevent experience,Full time course,High School,,3,,,1,46,0.0 +23500,city_102,0.804,,No relevent experience,Full time course,High School,,3,,,never,67,0.0 +16668,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,11,10/49,Funded Startup,1,23,0.0 +13658,city_150,0.698,,No relevent experience,Part time course,Graduate,STEM,9,,,1,53,1.0 +7188,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,58,0.0 +31980,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,1,152,0.0 +26346,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,3,9,0.0 +20342,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,106,0.0 +33119,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Other,7,,Public Sector,2,21,0.0 +5183,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,500-999,Pvt Ltd,2,204,1.0 +20552,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,15,,,never,91,0.0 +13094,city_114,0.9259999999999999,Female,Has relevent experience,Part time course,Graduate,Other,5,50-99,Pvt Ltd,4,138,0.0 +15559,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,2,46,0.0 +10769,city_134,0.698,,Has relevent experience,Full time course,Masters,Other,>20,<10,Early Stage Startup,,52,0.0 +24666,city_71,0.884,,No relevent experience,no_enrollment,Phd,STEM,>20,,Public Sector,3,28,0.0 +20847,city_24,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,>4,31,0.0 +28413,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,,,2,43,1.0 +26677,city_80,0.847,Male,No relevent experience,Part time course,Graduate,STEM,4,50-99,Pvt Ltd,never,19,0.0 +17128,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,6,0.0 +13294,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Humanities,6,,,>4,21,1.0 +29496,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,4,,Pvt Ltd,1,20,0.0 +30800,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,,500-999,,1,153,0.0 +29907,city_103,0.92,Female,Has relevent experience,no_enrollment,Phd,STEM,10,50-99,Funded Startup,1,52,0.0 +24825,city_114,0.9259999999999999,,Has relevent experience,Full time course,Graduate,STEM,7,50-99,,,140,0.0 +17661,city_1,0.847,Male,No relevent experience,no_enrollment,Masters,STEM,4,100-500,Public Sector,1,33,0.0 +2726,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,1,119,0.0 +25039,city_93,0.865,Male,No relevent experience,Full time course,Graduate,STEM,1,,,1,25,1.0 +17447,city_36,0.893,,Has relevent experience,Part time course,Graduate,STEM,11,10000+,,>4,67,0.0 +32641,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,,3,,,,100,1.0 +8794,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,47,1.0 +1242,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,never,14,1.0 +4244,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,4,0.0 +20592,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,Pvt Ltd,>4,29,0.0 +9851,city_23,0.899,Male,Has relevent experience,Part time course,High School,,7,500-999,Other,2,106,0.0 +27851,city_138,0.836,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Pvt Ltd,>4,130,0.0 +6485,city_105,0.794,Female,Has relevent experience,Part time course,Masters,STEM,5,5000-9999,Pvt Ltd,1,304,0.0 +13143,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,1,24,1.0 +30131,city_33,0.44799999999999995,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,16,0.0 +10271,city_46,0.762,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10000+,Pvt Ltd,1,12,0.0 +32347,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,>4,62,1.0 +13863,city_101,0.5579999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,74,1.0 +9954,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,,>4,85,0.0 +31977,city_16,0.91,Male,No relevent experience,no_enrollment,High School,,7,,Pvt Ltd,never,104,0.0 +2248,city_10,0.895,Male,Has relevent experience,no_enrollment,High School,,12,50-99,Pvt Ltd,1,37,0.0 +4045,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,47,0.0 +4912,city_127,0.745,,No relevent experience,,Masters,STEM,2,10/49,,never,18,0.0 +24718,city_21,0.624,,No relevent experience,Full time course,Graduate,,4,,,never,125,0.0 +22685,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,No Major,>20,,,3,42,0.0 +16588,city_21,0.624,Male,No relevent experience,,,,4,100-500,,1,107,1.0 +2867,city_26,0.698,Male,Has relevent experience,no_enrollment,High School,,11,100-500,Pvt Ltd,1,294,0.0 +12425,city_136,0.897,Male,No relevent experience,no_enrollment,Phd,STEM,>20,500-999,Public Sector,>4,22,0.0 +30673,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,3,72,0.0 +30635,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Humanities,8,,,1,65,0.0 +27554,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,14,,,1,46,0.0 +23938,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,18,,,>4,94,1.0 +1064,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Other,>4,134,0.0 +14100,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,210,0.0 +25206,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,2,149,0.0 +17802,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,>4,6,1.0 +8521,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,,,1,46,1.0 +14484,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,<10,Early Stage Startup,1,61,0.0 +32821,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Public Sector,2,29,1.0 +7313,city_105,0.794,,No relevent experience,no_enrollment,Graduate,STEM,12,100-500,,2,44,0.0 +16325,city_90,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,10,10/49,NGO,1,64,0.0 +30478,city_65,0.802,Male,Has relevent experience,Part time course,Graduate,STEM,10,10000+,Pvt Ltd,1,22,0.0 +10853,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,102,0.0 +18179,city_162,0.767,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,17,1.0 +4692,city_152,0.698,,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,3,51,0.0 +16464,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,4,,,never,13,0.0 +33106,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,2,91,0.0 +19991,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,15,0.0 +15644,city_128,0.527,,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,4,16,0.0 +16027,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Other,12,10000+,Pvt Ltd,2,80,0.0 +28795,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,STEM,10,100-500,Pvt Ltd,3,226,0.0 +2858,city_65,0.802,,No relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,5,0.0 +22316,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Funded Startup,4,151,0.0 +28938,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Pvt Ltd,4,54,0.0 +18035,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,8,,,never,30,1.0 +32736,city_75,0.9390000000000001,,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Public Sector,>4,13,0.0 +13801,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,2,100,0.0 +20798,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,7,,,never,150,0.0 +16624,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,2,<10,Pvt Ltd,1,15,0.0 +14719,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,1000-4999,Pvt Ltd,1,50,0.0 +30686,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,44,0.0 +21924,city_160,0.92,Male,Has relevent experience,no_enrollment,High School,,13,1000-4999,Pvt Ltd,4,194,0.0 +14266,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,1,100-500,Pvt Ltd,1,22,0.0 +2833,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,11,10000+,Pvt Ltd,2,34,0.0 +24039,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,2,8,0.0 +28483,city_53,0.74,,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,1,63,1.0 +16418,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,100-500,Pvt Ltd,3,84,0.0 +4993,city_90,0.698,,No relevent experience,,,,2,,,never,50,0.0 +6715,city_101,0.5579999999999999,,No relevent experience,no_enrollment,Graduate,STEM,2,10/49,Pvt Ltd,1,96,1.0 +8813,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Funded Startup,1,45,0.0 +15200,city_91,0.691,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,>4,63,1.0 +25610,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,11,,Pvt Ltd,>4,62,0.0 +20598,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,4,,,1,74,1.0 +32825,city_16,0.91,,Has relevent experience,Part time course,High School,,4,1000-4999,Pvt Ltd,1,84,0.0 +31934,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,61,0.0 +14413,city_165,0.903,,Has relevent experience,Full time course,Masters,Humanities,9,<10,Pvt Ltd,>4,100,0.0 +5804,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Early Stage Startup,1,27,0.0 +26165,city_103,0.92,Male,No relevent experience,Full time course,,,1,,,1,80,1.0 +17965,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,2,,,1,94,1.0 +32442,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,19,1.0 +2903,city_159,0.843,Male,Has relevent experience,Part time course,Graduate,STEM,>20,<10,Pvt Ltd,1,8,0.0 +18330,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Pvt Ltd,1,39,1.0 +12778,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,1,61,0.0 +4219,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,50-99,NGO,3,48,0.0 +28997,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,19,5000-9999,Pvt Ltd,1,23,0.0 +23260,city_103,0.92,,No relevent experience,Full time course,High School,,6,,,1,43,1.0 +26401,city_166,0.649,Male,Has relevent experience,no_enrollment,High School,,5,,,never,25,0.0 +16882,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,>4,31,0.0 +11597,city_19,0.682,,No relevent experience,no_enrollment,Graduate,Other,,,,2,21,1.0 +15602,city_103,0.92,,No relevent experience,,,,6,,,never,8,0.0 +12787,city_67,0.855,,Has relevent experience,Part time course,High School,,5,100-500,Pvt Ltd,1,288,0.0 +9460,city_116,0.743,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,,,144,0.0 +238,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,>4,31,0.0 +11850,city_21,0.624,,No relevent experience,Full time course,High School,,7,,,never,132,1.0 +5551,city_19,0.682,Male,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,32,0.0 +6618,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,7,10000+,Pvt Ltd,4,34,1.0 +29880,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,>4,10,0.0 +25562,city_46,0.762,Male,Has relevent experience,Part time course,Graduate,STEM,>20,,,3,26,0.0 +29976,city_91,0.691,,No relevent experience,Full time course,High School,,3,,,never,3,1.0 +7709,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Funded Startup,1,58,0.0 +28123,city_23,0.899,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,2,114,0.0 +8140,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,<1,100-500,Pvt Ltd,1,53,0.0 +5979,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,>4,6,1.0 +18926,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,3,2,0.0 +27760,city_136,0.897,Male,Has relevent experience,Full time course,Graduate,STEM,10,10/49,Early Stage Startup,2,132,0.0 +8248,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,3,,,1,66,0.0 +29687,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,5000-9999,Pvt Ltd,2,124,0.0 +26622,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,5,100-500,Pvt Ltd,1,5,0.0 +21316,city_11,0.55,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,NGO,1,166,1.0 +17339,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,never,62,1.0 +2327,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Pvt Ltd,1,42,1.0 +17911,city_64,0.6659999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,,never,18,0.0 +29293,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,16,1000-4999,Pvt Ltd,1,143,0.0 +4142,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,NGO,>4,30,1.0 +28789,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,High School,,4,5000-9999,Pvt Ltd,4,144,0.0 +22522,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,50-99,Early Stage Startup,>4,19,0.0 +22892,city_46,0.762,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,15,0.0 +1116,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,19,10000+,Pvt Ltd,>4,56,0.0 +29659,city_50,0.8959999999999999,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,63,1.0 +27579,city_97,0.925,Male,Has relevent experience,Full time course,Graduate,STEM,9,100-500,Public Sector,1,111,0.0 +3112,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10/49,Funded Startup,4,248,0.0 +15081,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,Humanities,2,<10,Pvt Ltd,1,75,1.0 +11257,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,2,74,1.0 +29662,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,1,41,0.0 +23971,city_149,0.6890000000000001,Female,No relevent experience,no_enrollment,Graduate,STEM,3,100-500,Public Sector,1,72,0.0 +24838,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,1,48,1.0 +27853,city_26,0.698,,Has relevent experience,Full time course,,,2,<10,Public Sector,never,28,0.0 +12910,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,2,100-500,NGO,1,34,0.0 +26187,city_118,0.722,Male,No relevent experience,no_enrollment,,,2,,Public Sector,2,102,0.0 +19364,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Humanities,8,10000+,Pvt Ltd,1,100,0.0 +9526,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,98,0.0 +29012,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,,1,35,1.0 +4884,city_103,0.92,Male,Has relevent experience,Part time course,Masters,STEM,>20,50-99,Pvt Ltd,2,50,0.0 +27574,city_103,0.92,Male,No relevent experience,Full time course,High School,,5,,,3,98,1.0 +5777,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,1,50-99,Pvt Ltd,never,10,1.0 +614,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,1,16,0.0 +21002,city_72,0.795,Male,Has relevent experience,Part time course,Graduate,STEM,5,<10,Early Stage Startup,1,80,0.0 +33302,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,1,7,0.0 +26649,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,<10,Funded Startup,>4,92,0.0 +8344,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,40,0.0 +9424,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,9,100-500,Other,4,16,0.0 +13868,city_104,0.924,,No relevent experience,Full time course,Graduate,STEM,2,,,,34,0.0 +22749,city_54,0.856,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,10,0.0 +2906,city_105,0.794,Male,Has relevent experience,Part time course,Graduate,STEM,4,100-500,Pvt Ltd,3,39,0.0 +19634,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,4,0.0 +11752,city_16,0.91,Male,No relevent experience,Full time course,Primary School,,1,,,never,7,0.0 +22474,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,>4,120,0.0 +10450,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,2,70,1.0 +12135,city_116,0.743,Male,Has relevent experience,Part time course,Graduate,STEM,8,50-99,Pvt Ltd,1,88,0.0 +26284,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Business Degree,7,1000-4999,Pvt Ltd,1,60,0.0 +16146,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,4,10/49,Pvt Ltd,1,13,0.0 +28547,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,69,0.0 +20787,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,5000-9999,Pvt Ltd,1,30,0.0 +5949,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,268,0.0 +25167,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,1,33,1.0 +6716,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,82,0.0 +21812,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,36,0.0 +18538,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,4,10/49,NGO,1,12,0.0 +30138,city_101,0.5579999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,6,,,1,21,0.0 +815,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,>4,68,0.0 +8727,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,51,0.0 +15873,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,,>20,10/49,Pvt Ltd,4,34,0.0 +21635,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,,5000-9999,Pvt Ltd,1,242,0.0 +29363,city_46,0.762,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,113,1.0 +23569,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,42,0.0 +17792,city_14,0.698,Male,No relevent experience,no_enrollment,Primary School,,7,,,never,85,0.0 +4770,city_159,0.843,,No relevent experience,no_enrollment,,,4,,,never,62,0.0 +32793,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,<10,Pvt Ltd,never,34,0.0 +14614,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,53,1.0 +15548,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,NGO,1,128,0.0 +6033,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,4,35,0.0 +7549,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,>4,14,0.0 +8384,city_53,0.74,Male,Has relevent experience,no_enrollment,Phd,STEM,9,10/49,Early Stage Startup,1,144,0.0 +23322,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,31,1.0 +22289,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,,>4,25,0.0 +14272,city_103,0.92,,Has relevent experience,no_enrollment,Masters,Humanities,>20,100-500,Pvt Ltd,1,54,0.0 +17068,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,3,100-500,Pvt Ltd,1,81,1.0 +12816,city_16,0.91,,No relevent experience,no_enrollment,High School,,4,,,1,52,0.0 +22952,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,6,0.0 +18052,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,7,,,1,32,0.0 +11746,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,3,23,1.0 +3470,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Funded Startup,4,75,0.0 +17588,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Phd,STEM,17,100-500,Pvt Ltd,3,156,1.0 +1368,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,17,0.0 +14899,city_31,0.807,Male,No relevent experience,no_enrollment,Masters,STEM,10,,,1,30,1.0 +32934,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,17,0.0 +13533,city_97,0.925,Male,Has relevent experience,no_enrollment,,,7,10/49,Pvt Ltd,4,80,1.0 +4207,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,500-999,Pvt Ltd,2,39,0.0 +26832,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,10000+,Pvt Ltd,>4,51,0.0 +8548,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,>4,52,0.0 +959,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,never,29,0.0 +21389,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,2,138,0.0 +28722,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,500-999,Pvt Ltd,never,12,0.0 +17466,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,<1,,,never,20,1.0 +27588,city_103,0.92,Male,No relevent experience,Full time course,High School,,6,,,1,82,0.0 +19346,city_160,0.92,,No relevent experience,no_enrollment,Graduate,STEM,19,,,4,21,1.0 +1762,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Pvt Ltd,>4,18,0.0 +18584,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,>4,7,1.0 +18547,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,Other,<1,10/49,Pvt Ltd,1,5,1.0 +18008,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,7,,,2,41,0.0 +21281,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,2,184,0.0 +3330,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Arts,10,10000+,Public Sector,1,34,0.0 +32728,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,27,0.0 +2653,city_23,0.899,Female,No relevent experience,Full time course,High School,,2,5000-9999,Pvt Ltd,1,168,0.0 +4507,city_67,0.855,Male,Has relevent experience,no_enrollment,High School,,16,50-99,Pvt Ltd,2,34,0.0 +15318,city_139,0.48700000000000004,,No relevent experience,Full time course,Graduate,STEM,3,,,never,55,1.0 +28703,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,1,31,0.0 +23941,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,34,0.0 +3977,city_23,0.899,Male,Has relevent experience,Full time course,Graduate,STEM,10,<10,Funded Startup,2,108,0.0 +8507,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Other,5,50-99,,2,154,0.0 +20888,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,STEM,8,100-500,Pvt Ltd,2,15,1.0 +28419,city_16,0.91,Female,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,100,0.0 +21732,city_21,0.624,Female,No relevent experience,Full time course,High School,,3,,,never,26,1.0 +13398,city_105,0.794,Male,Has relevent experience,Full time course,Masters,STEM,1,<10,Pvt Ltd,1,108,0.0 +1741,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,,,1,10,0.0 +19704,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Pvt Ltd,1,63,0.0 +24942,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,,91,0.0 +23769,city_101,0.5579999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,3,50-99,Pvt Ltd,2,330,0.0 +7384,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,74,0.0 +2468,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,198,0.0 +7421,city_16,0.91,Male,Has relevent experience,Full time course,High School,,4,,,1,144,0.0 +23402,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,never,129,1.0 +15215,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,105,0.0 +6758,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,,1,28,0.0 +12323,city_101,0.5579999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,14,,,1,4,0.0 +18913,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,4,12,0.0 +30199,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,36,0.0 +19546,city_57,0.866,Male,Has relevent experience,Full time course,Graduate,STEM,5,100-500,Pvt Ltd,1,48,1.0 +14937,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,23,0.0 +10393,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,NGO,>4,90,0.0 +16719,city_16,0.91,,No relevent experience,no_enrollment,Primary School,,6,,,never,3,0.0 +17302,city_90,0.698,,No relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,3,13,0.0 +24303,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10/49,Pvt Ltd,2,30,1.0 +23280,city_142,0.727,,Has relevent experience,no_enrollment,Graduate,STEM,1,,,1,43,1.0 +32688,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,7,5000-9999,Pvt Ltd,never,43,0.0 +22984,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,15,,,1,56,0.0 +16910,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,1,12,0.0 +17098,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,2,184,0.0 +13318,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,2,12,0.0 +10704,city_152,0.698,Male,Has relevent experience,Part time course,Masters,STEM,10,,,3,18,0.0 +4462,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,2,166,0.0 +29437,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10/49,Funded Startup,1,202,0.0 +31701,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,50-99,Pvt Ltd,>4,92,0.0 +10486,city_33,0.44799999999999995,,No relevent experience,Full time course,Graduate,Other,2,500-999,Public Sector,2,154,1.0 +26858,city_160,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,16,10/49,Early Stage Startup,2,336,0.0 +21409,city_143,0.74,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,2,44,0.0 +1217,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,25,0.0 +18362,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,89,0.0 +8369,city_16,0.91,,Has relevent experience,Full time course,Phd,STEM,14,500-999,Public Sector,1,26,0.0 +844,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,500-999,Public Sector,3,286,0.0 +31898,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,<10,Funded Startup,1,112,0.0 +5270,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,NGO,2,37,1.0 +22540,city_123,0.738,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,5000-9999,Pvt Ltd,1,17,1.0 +10692,city_100,0.887,,Has relevent experience,no_enrollment,High School,,16,500-999,Pvt Ltd,>4,178,0.0 +15261,city_83,0.9229999999999999,Male,Has relevent experience,Part time course,Masters,STEM,6,10000+,Pvt Ltd,>4,10,0.0 +22781,city_162,0.767,Female,No relevent experience,no_enrollment,Masters,STEM,3,,,1,26,0.0 +29951,city_19,0.682,,No relevent experience,Full time course,Graduate,STEM,3,,,never,23,0.0 +31794,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,NGO,>4,101,0.0 +14757,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,4,44,1.0 +11231,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,5,100-500,Pvt Ltd,,24,0.0 +802,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,2,1000-4999,Pvt Ltd,1,138,0.0 +12182,city_100,0.887,,No relevent experience,no_enrollment,Primary School,,6,,,never,34,0.0 +24308,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Funded Startup,2,20,1.0 +19276,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,3,,,2,29,1.0 +25302,city_144,0.84,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,>4,20,0.0 +24329,city_114,0.9259999999999999,Male,No relevent experience,Part time course,Graduate,STEM,2,<10,,never,184,0.0 +16156,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,45,0.0 +23579,city_84,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,86,0.0 +2023,city_76,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,1,1000-4999,,1,70,1.0 +2976,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,never,20,0.0 +24673,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Other,>4,10,0.0 +6221,city_103,0.92,,Has relevent experience,no_enrollment,High School,,6,100-500,Pvt Ltd,>4,22,0.0 +2103,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,20,1.0 +1797,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,6,50-99,Public Sector,1,216,1.0 +16893,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,40,0.0 +1378,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,3,71,0.0 +32709,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,2,22,0.0 +8893,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,10000+,Pvt Ltd,4,85,0.0 +841,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,4,5000-9999,Other,3,62,0.0 +7962,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,4,10000+,Pvt Ltd,1,13,0.0 +24255,city_144,0.84,,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Pvt Ltd,1,29,1.0 +18164,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,1,50-99,Funded Startup,1,15,0.0 +7051,city_104,0.924,,Has relevent experience,no_enrollment,,,12,,,never,48,0.0 +15071,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,No Major,8,,,2,18,1.0 +281,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Funded Startup,4,11,0.0 +29489,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,8,1.0 +16480,city_71,0.884,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,20,0.0 +17604,city_100,0.887,Male,Has relevent experience,Part time course,Graduate,STEM,7,<10,Pvt Ltd,1,25,0.0 +29442,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Early Stage Startup,1,4,0.0 +13281,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,9,,,never,144,0.0 +22572,city_76,0.698,,No relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,138,1.0 +21003,city_73,0.754,Female,No relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,23,0.0 +10915,city_102,0.804,Female,Has relevent experience,no_enrollment,Phd,STEM,17,,,2,91,0.0 +9886,city_104,0.924,Male,Has relevent experience,no_enrollment,Primary School,,15,100-500,Pvt Ltd,2,58,0.0 +23300,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,3,10/49,Funded Startup,1,123,0.0 +26029,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,2,112,1.0 +16394,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,2,48,0.0 +8631,city_45,0.89,Male,Has relevent experience,Part time course,Graduate,STEM,5,,,1,14,0.0 +33035,city_103,0.92,Male,Has relevent experience,Part time course,Masters,STEM,15,1000-4999,Pvt Ltd,1,57,0.0 +9961,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,>20,50-99,Pvt Ltd,>4,13,0.0 +14197,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,7,10/49,Early Stage Startup,1,24,0.0 +12766,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,NGO,3,136,0.0 +11165,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,5000-9999,Pvt Ltd,1,30,0.0 +33211,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Arts,>20,100-500,Pvt Ltd,>4,10,0.0 +28716,city_93,0.865,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Funded Startup,1,140,0.0 +33310,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,47,0.0 +28266,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Early Stage Startup,1,220,1.0 +10953,city_160,0.92,Female,Has relevent experience,no_enrollment,High School,,>20,<10,Pvt Ltd,>4,10,0.0 +7181,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Arts,1,,,1,48,1.0 +23638,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,3,,,1,161,0.0 +11653,city_45,0.89,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,61,0.0 +3049,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,1,47,0.0 +20024,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,>20,10/49,Pvt Ltd,>4,52,0.0 +19453,city_77,0.83,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,1,66,0.0 +10528,city_149,0.6890000000000001,Male,No relevent experience,Full time course,Graduate,STEM,2,100-500,,1,39,0.0 +4415,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,52,0.0 +16746,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,111,0.0 +33143,city_103,0.92,Male,No relevent experience,Full time course,Graduate,No Major,1,1000-4999,NGO,1,95,1.0 +25799,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,1,,,never,112,0.0 +22521,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,4,244,0.0 +21065,city_50,0.8959999999999999,Male,No relevent experience,Full time course,High School,,4,,,never,168,0.0 +17052,city_90,0.698,,Has relevent experience,no_enrollment,,,,,,>4,118,1.0 +13545,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,124,0.0 +3913,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,50-99,Funded Startup,4,43,0.0 +25599,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,never,14,0.0 +3726,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,254,0.0 +18196,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,4,320,0.0 +30411,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,32,0.0 +7685,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,98,0.0 +5865,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,2,0.0 +1892,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,2,,,1,33,1.0 +17173,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Phd,STEM,>20,500-999,NGO,>4,106,0.0 +10464,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,15,10/49,Pvt Ltd,1,10,0.0 +26050,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,129,0.0 +31946,city_11,0.55,Female,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,never,51,0.0 +4719,city_80,0.847,,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Pvt Ltd,1,67,0.0 +9311,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,99,0.0 +29146,city_142,0.727,Male,Has relevent experience,Full time course,High School,,1,50-99,Funded Startup,never,23,0.0 +8992,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,151,0.0 +4028,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,,,2,84,0.0 +28071,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,NGO,2,242,0.0 +31205,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,220,0.0 +32247,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,never,31,0.0 +21073,city_16,0.91,,No relevent experience,no_enrollment,Masters,Humanities,13,,,never,62,0.0 +7449,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,3,12,0.0 +17120,city_115,0.789,,Has relevent experience,Full time course,Masters,STEM,9,10/49,Pvt Ltd,4,6,1.0 +15993,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,4,22,0.0 +30692,city_162,0.767,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,13,1.0 +22158,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,3,10000+,,1,25,0.0 +23190,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,2,168,0.0 +22844,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,24,0.0 +10766,city_74,0.579,,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,2,0.0 +13972,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,19,10/49,Pvt Ltd,>4,42,0.0 +10727,city_21,0.624,Female,Has relevent experience,Part time course,Graduate,STEM,18,10/49,,never,38,0.0 +26218,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,10,1000-4999,Pvt Ltd,2,90,1.0 +29401,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,1,7,0.0 +31328,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Public Sector,1,40,1.0 +15595,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,156,0.0 +29085,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,>4,41,1.0 +15738,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,194,0.0 +8149,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,95,0.0 +13210,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,Humanities,2,1000-4999,Public Sector,2,72,0.0 +18361,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,146,0.0 +21969,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,,2,7,0.0 +1603,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,85,0.0 +7226,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,14,100-500,Pvt Ltd,>4,74,0.0 +26827,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,13,,,2,12,0.0 +12305,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,2,1000-4999,Pvt Ltd,,15,1.0 +980,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,8,,NGO,2,21,0.0 +4251,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,12,0.0 +15174,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,26,0.0 +29261,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Early Stage Startup,3,62,0.0 +27990,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,7,50-99,Pvt Ltd,2,79,0.0 +11990,city_21,0.624,,No relevent experience,Full time course,High School,,<1,,,never,111,0.0 +24730,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Business Degree,2,100-500,Pvt Ltd,1,30,0.0 +18650,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,Pvt Ltd,1,22,1.0 +19452,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,72,1.0 +4405,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,Humanities,6,50-99,Funded Startup,never,71,0.0 +14790,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,1,64,0.0 +4327,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,5,<10,Pvt Ltd,1,12,0.0 +10844,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,51,0.0 +17215,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,50,1.0 +10351,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,4,<10,Funded Startup,1,96,0.0 +29256,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,7,<10,Early Stage Startup,2,119,0.0 +12966,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Other,>4,105,0.0 +33305,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,14,50-99,Pvt Ltd,>4,22,0.0 +23760,city_149,0.6890000000000001,Male,No relevent experience,Full time course,High School,,2,,,never,12,0.0 +25803,city_21,0.624,,No relevent experience,Full time course,High School,,1,,,never,100,0.0 +22144,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,<10,Pvt Ltd,1,112,0.0 +11028,city_150,0.698,,Has relevent experience,Full time course,High School,,11,10000+,Public Sector,>4,15,1.0 +11828,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,82,0.0 +1693,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,2,18,1.0 +15341,city_76,0.698,,Has relevent experience,no_enrollment,Masters,STEM,1,10/49,Pvt Ltd,,29,1.0 +26336,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,2,100,0.0 +8689,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,4,,Pvt Ltd,1,36,0.0 +22262,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,1,500-999,,never,9,0.0 +7829,city_136,0.897,Male,Has relevent experience,Part time course,Graduate,Other,1,50-99,,1,222,0.0 +23940,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,10000+,Pvt Ltd,2,48,0.0 +19530,city_21,0.624,Male,No relevent experience,Part time course,Graduate,STEM,4,10/49,Funded Startup,,112,0.0 +5355,city_16,0.91,Male,Has relevent experience,Part time course,Graduate,STEM,9,10000+,Pvt Ltd,2,51,0.0 +26145,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,2,18,0.0 +11213,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,Public Sector,1,278,0.0 +11512,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,5,0.0 +27383,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,25,0.0 +6102,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,79,0.0 +287,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,4,90,0.0 +5963,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,17,<10,Pvt Ltd,1,134,0.0 +13830,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Funded Startup,1,112,0.0 +18417,city_141,0.763,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,>4,146,0.0 +25256,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Masters,STEM,12,,,1,52,0.0 +24050,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Public Sector,2,80,0.0 +8126,city_71,0.884,,Has relevent experience,Full time course,Graduate,STEM,11,50-99,Pvt Ltd,1,10,0.0 +339,city_73,0.754,,Has relevent experience,Part time course,High School,,14,,,1,23,0.0 +30102,city_28,0.9390000000000001,,No relevent experience,no_enrollment,Masters,Business Degree,>20,10000+,Pvt Ltd,>4,42,1.0 +28243,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,3,46,1.0 +28412,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,10,,,2,39,0.0 +29719,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,6,10000+,Pvt Ltd,1,48,0.0 +17568,city_104,0.924,Male,No relevent experience,Full time course,Graduate,Other,13,,,1,29,1.0 +1422,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,<1,,Pvt Ltd,never,39,0.0 +11183,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,4,42,0.0 +6215,city_160,0.92,,No relevent experience,,Graduate,STEM,4,,,,312,1.0 +11352,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,150,1.0 +9907,city_28,0.9390000000000001,,Has relevent experience,Full time course,Masters,STEM,19,100-500,Pvt Ltd,4,134,0.0 +7379,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,4,18,0.0 +16959,city_21,0.624,Male,No relevent experience,Full time course,High School,,5,,,never,20,1.0 +10231,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Early Stage Startup,2,22,0.0 +24524,city_114,0.9259999999999999,Male,No relevent experience,Part time course,High School,,9,,,never,13,0.0 +1464,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,1,,Pvt Ltd,never,57,0.0 +10581,city_102,0.804,Female,No relevent experience,Full time course,High School,,4,,,never,144,0.0 +5318,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,>4,50,1.0 +33155,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,<10,Pvt Ltd,2,62,1.0 +20566,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,,1,36,0.0 +8502,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,,1,10,0.0 +10156,city_16,0.91,Male,No relevent experience,no_enrollment,,,1,,,never,202,0.0 +8253,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,40,0.0 +31875,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,4,,,1,13,0.0 +12563,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,STEM,13,10/49,Public Sector,2,80,0.0 +30161,city_11,0.55,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,never,55,0.0 +27789,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,3,,,never,109,1.0 +2406,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,Pvt Ltd,1,19,1.0 +12525,city_114,0.9259999999999999,Female,No relevent experience,no_enrollment,Masters,Business Degree,4,10/49,Pvt Ltd,2,53,0.0 +13482,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,never,34,0.0 +7103,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,,,>4,4,0.0 +3591,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,>20,5000-9999,Public Sector,>4,33,1.0 +29350,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,3,23,0.0 +6937,city_65,0.802,,No relevent experience,Full time course,Masters,STEM,3,,,,302,0.0 +27095,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,500-999,Pvt Ltd,1,46,0.0 +20487,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Pvt Ltd,1,70,0.0 +22513,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,100-500,NGO,1,43,1.0 +29912,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,5,<10,Pvt Ltd,1,214,0.0 +30992,city_175,0.7759999999999999,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,52,0.0 +23666,city_109,0.701,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,,1,150,0.0 +5916,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,55,0.0 +16512,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,17,<10,Pvt Ltd,>4,76,0.0 +14762,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,152,0.0 +12869,city_115,0.789,Male,No relevent experience,Full time course,Graduate,STEM,3,,,2,47,0.0 +26174,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,never,17,0.0 +22248,city_103,0.92,Female,Has relevent experience,Part time course,Graduate,STEM,16,100-500,Other,3,14,1.0 +15934,city_16,0.91,,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,1,60,0.0 +26773,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,135,0.0 +17289,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,STEM,9,<10,Pvt Ltd,1,113,0.0 +30698,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,4,,,1,15,1.0 +31246,city_45,0.89,Male,Has relevent experience,no_enrollment,High School,,16,100-500,Other,2,39,0.0 +24243,city_144,0.84,,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Public Sector,,8,0.0 +22107,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,51,0.0 +22516,city_21,0.624,,No relevent experience,Full time course,High School,,2,,,never,116,1.0 +16417,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,4,100-500,NGO,1,22,0.0 +2186,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,Other,>20,50-99,Pvt Ltd,>4,248,0.0 +18145,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,3,28,0.0 +33173,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,2,26,0.0 +16326,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,59,0.0 +3888,city_16,0.91,,No relevent experience,no_enrollment,High School,,>20,,,>4,26,1.0 +1133,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,62,0.0 +27351,city_97,0.925,Male,Has relevent experience,,,,3,,,1,80,0.0 +30973,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,,1,55,0.0 +18718,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,2,31,1.0 +20799,city_104,0.924,,Has relevent experience,Full time course,Graduate,STEM,>20,1000-4999,NGO,>4,60,0.0 +15198,city_103,0.92,Male,No relevent experience,Full time course,,,,,,,21,0.0 +22860,city_67,0.855,Male,No relevent experience,Part time course,Graduate,STEM,4,100-500,Pvt Ltd,1,78,0.0 +26335,city_142,0.727,Male,Has relevent experience,Full time course,Graduate,STEM,4,100-500,Public Sector,1,31,0.0 +20739,city_162,0.767,,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Early Stage Startup,1,12,0.0 +9708,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,6,50-99,Pvt Ltd,1,42,0.0 +7489,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,109,0.0 +4729,city_71,0.884,Male,No relevent experience,Full time course,Masters,STEM,9,,,1,100,1.0 +16493,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,8,1000-4999,NGO,3,60,0.0 +11915,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,5,,,never,34,0.0 +10200,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,156,0.0 +3924,city_23,0.899,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,100,0.0 +31251,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,8,0.0 +32426,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,5,,Pvt Ltd,never,21,0.0 +24476,city_64,0.6659999999999999,Male,No relevent experience,Full time course,High School,,2,,,never,44,1.0 +1043,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,10/49,Early Stage Startup,>4,64,0.0 +17474,city_143,0.74,,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,,4,0.0 +12510,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,112,1.0 +21369,city_76,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,14,<10,Public Sector,1,21,0.0 +15016,city_152,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,>4,17,1.0 +20307,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,76,1.0 +9920,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,3,86,0.0 +32805,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,1,108,1.0 +2235,city_173,0.878,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,222,0.0 +31022,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,9,50-99,Pvt Ltd,1,114,0.0 +31064,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Pvt Ltd,4,5,0.0 +8656,city_150,0.698,Male,Has relevent experience,no_enrollment,High School,,4,<10,Pvt Ltd,1,34,1.0 +2740,city_9,0.743,,Has relevent experience,Full time course,Graduate,STEM,5,<10,Pvt Ltd,never,69,0.0 +21310,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,1,42,0.0 +1733,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,1,170,0.0 +12559,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,334,0.0 +26868,city_104,0.924,,No relevent experience,Part time course,Masters,STEM,10,,,4,25,0.0 +14198,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,170,0.0 +29870,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,90,0.0 +9115,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Early Stage Startup,1,165,0.0 +33281,city_21,0.624,,Has relevent experience,,Graduate,STEM,4,100-500,Pvt Ltd,4,63,0.0 +23510,city_73,0.754,Male,Has relevent experience,no_enrollment,High School,,4,,,1,76,0.0 +32033,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,,1,3,0.0 +7883,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,33,0.0 +32492,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,5,,,1,13,1.0 +13616,city_7,0.647,Male,No relevent experience,Full time course,Masters,STEM,4,,,1,36,0.0 +4292,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,,,>20,50-99,Pvt Ltd,>4,14,0.0 +31265,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Arts,4,50-99,Pvt Ltd,1,20,0.0 +23814,city_73,0.754,,No relevent experience,Full time course,High School,,2,,,2,41,0.0 +26731,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,1,101,0.0 +24724,city_159,0.843,,No relevent experience,Full time course,Graduate,STEM,1,,,never,40,1.0 +8967,city_165,0.903,,Has relevent experience,Full time course,Graduate,,5,50-99,Pvt Ltd,2,77,1.0 +14897,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,4,,,never,29,0.0 +8159,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,37,0.0 +11101,city_144,0.84,Male,Has relevent experience,no_enrollment,Masters,STEM,7,10/49,Funded Startup,1,100,0.0 +18499,city_21,0.624,,No relevent experience,Full time course,High School,,6,,,4,188,1.0 +32931,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,14,50-99,Pvt Ltd,1,46,0.0 +143,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Pvt Ltd,never,47,1.0 +8180,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,15,,,>4,43,0.0 +1473,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Pvt Ltd,>4,29,0.0 +5116,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,4,165,0.0 +18010,city_28,0.9390000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,7,,,2,59,0.0 +22809,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,2,,,never,100,1.0 +31811,city_77,0.83,Male,Has relevent experience,no_enrollment,Primary School,,13,1000-4999,Pvt Ltd,2,2,0.0 +9737,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,500-999,Pvt Ltd,1,78,1.0 +8371,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,never,79,0.0 +16007,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,16,500-999,Pvt Ltd,,57,0.0 +13719,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,10,1000-4999,Pvt Ltd,1,50,0.0 +6951,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,4,23,0.0 +2176,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,2,,,1,37,0.0 +29601,city_100,0.887,Male,No relevent experience,no_enrollment,Graduate,Other,2,,,1,24,0.0 +14864,city_160,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,13,1000-4999,Public Sector,>4,28,0.0 +11757,city_64,0.6659999999999999,Male,No relevent experience,Full time course,High School,,4,,,1,41,0.0 +23967,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,>4,125,0.0 +23787,city_23,0.899,Male,Has relevent experience,no_enrollment,Masters,Humanities,4,<10,Early Stage Startup,2,53,0.0 +15420,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,32,0.0 +18460,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,38,1.0 +32777,city_61,0.9129999999999999,Male,No relevent experience,Full time course,High School,,12,,,>4,83,0.0 +11380,city_123,0.738,,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,,23,0.0 +3249,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,10,<10,Funded Startup,1,10,0.0 +32230,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,,Pvt Ltd,never,11,1.0 +30424,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,NGO,,206,0.0 +13137,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,Humanities,2,10000+,NGO,1,56,0.0 +9902,city_73,0.754,Male,Has relevent experience,Full time course,Graduate,STEM,7,,,1,22,1.0 +31391,city_103,0.92,Other,No relevent experience,Full time course,Graduate,Humanities,3,,,1,14,1.0 +10210,city_99,0.915,,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Early Stage Startup,1,69,0.0 +6580,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,138,0.0 +19926,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,7,<10,Early Stage Startup,1,22,0.0 +701,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,36,0.0 +23486,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,5,50-99,,2,30,0.0 +33311,city_136,0.897,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,100-500,Public Sector,>4,55,0.0 +24646,city_120,0.78,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,2,165,0.0 +19580,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Funded Startup,1,20,0.0 +12467,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Funded Startup,1,134,0.0 +18315,city_21,0.624,Male,No relevent experience,Part time course,,,2,50-99,Pvt Ltd,1,304,0.0 +11342,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,>20,10000+,Pvt Ltd,>4,116,0.0 +25350,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,<10,Early Stage Startup,1,9,1.0 +26439,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,Pvt Ltd,>4,41,0.0 +8549,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,1,56,1.0 +28851,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,47,0.0 +29024,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Public Sector,1,62,1.0 +8770,city_84,0.698,Male,Has relevent experience,Part time course,Masters,Business Degree,2,100-500,Pvt Ltd,1,134,0.0 +23289,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,20,,,1,84,0.0 +1822,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,<1,1000-4999,Pvt Ltd,never,39,0.0 +15830,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Early Stage Startup,2,206,0.0 +11946,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,>4,43,1.0 +709,city_138,0.836,,No relevent experience,Full time course,Graduate,STEM,13,,,1,16,0.0 +12489,city_150,0.698,Other,No relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,1,31,0.0 +32386,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,13,10000+,Pvt Ltd,1,50,0.0 +22979,city_138,0.836,,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,never,13,1.0 +2860,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,9,,,2,28,0.0 +10947,city_138,0.836,,No relevent experience,,Graduate,Other,3,,,never,47,1.0 +24867,city_21,0.624,,No relevent experience,Part time course,Graduate,STEM,3,,,1,56,1.0 +14623,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,108,0.0 +719,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,7,50-99,Pvt Ltd,2,23,0.0 +16250,city_103,0.92,Male,No relevent experience,Full time course,High School,,4,,,4,35,1.0 +26977,city_24,0.698,Male,No relevent experience,Full time course,Graduate,STEM,9,,,never,5,0.0 +29137,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Early Stage Startup,3,58,0.0 +14494,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,5,100-500,Funded Startup,3,138,0.0 +18678,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,5,<10,Pvt Ltd,2,27,0.0 +25178,city_28,0.9390000000000001,,No relevent experience,,Graduate,STEM,1,10000+,,never,11,0.0 +17046,city_46,0.762,,No relevent experience,Full time course,Graduate,STEM,6,,,never,22,0.0 +10326,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,>4,14,1.0 +21892,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,1,50-99,Pvt Ltd,1,17,0.0 +12662,city_138,0.836,Male,No relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,2,188,0.0 +31277,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,5,0.0 +9650,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,1,86,0.0 +24645,city_103,0.92,Male,No relevent experience,Full time course,High School,,2,,,never,57,0.0 +2158,city_14,0.698,,Has relevent experience,Full time course,Masters,STEM,11,,,2,13,1.0 +32742,city_28,0.9390000000000001,Male,No relevent experience,Full time course,High School,,2,,,never,52,0.0 +5303,city_116,0.743,,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,2,4,0.0 +12548,city_28,0.9390000000000001,Male,No relevent experience,Part time course,High School,,2,100-500,Pvt Ltd,1,13,0.0 +23036,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Funded Startup,2,103,0.0 +30493,city_103,0.92,Male,No relevent experience,Full time course,High School,,9,,,1,59,0.0 +23134,city_67,0.855,Male,No relevent experience,Full time course,,,2,,,never,87,0.0 +23198,city_103,0.92,Other,No relevent experience,no_enrollment,Primary School,,2,10/49,,1,103,0.0 +29426,city_160,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,<1,50-99,Pvt Ltd,1,9,0.0 +18295,city_143,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Funded Startup,2,54,0.0 +1608,city_103,0.92,Other,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,3,70,0.0 +15063,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,35,0.0 +15089,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,2,57,1.0 +29927,city_175,0.7759999999999999,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,9,1.0 +10824,city_21,0.624,Male,No relevent experience,no_enrollment,Primary School,,<1,,,never,132,0.0 +2507,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,12,0.0 +20260,city_65,0.802,Male,Has relevent experience,Full time course,Graduate,STEM,7,50-99,Pvt Ltd,never,55,0.0 +25272,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,,,5,50-99,Pvt Ltd,1,57,0.0 +10976,city_104,0.924,,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,12,1.0 +27825,city_97,0.925,Male,Has relevent experience,Full time course,Graduate,STEM,17,100-500,Pvt Ltd,1,48,0.0 +16229,city_160,0.92,Male,No relevent experience,no_enrollment,Primary School,,3,,,never,138,0.0 +1170,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,>4,20,0.0 +24356,city_91,0.691,,No relevent experience,Full time course,Graduate,STEM,2,,,,31,0.0 +30651,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,3,61,0.0 +9109,city_91,0.691,,Has relevent experience,no_enrollment,Graduate,Other,6,10/49,Funded Startup,1,78,0.0 +7473,city_100,0.887,Male,Has relevent experience,Full time course,Graduate,STEM,5,10/49,Public Sector,1,34,0.0 +27451,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,5,50-99,Pvt Ltd,2,80,0.0 +1425,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,24,0.0 +19687,city_90,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,4,50,0.0 +7718,city_11,0.55,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,3,9,0.0 +2516,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,1,46,0.0 +29391,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,1,,,never,28,1.0 +7355,city_53,0.74,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,326,0.0 +29307,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,4,39,1.0 +11720,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Masters,STEM,19,5000-9999,Pvt Ltd,>4,22,0.0 +24065,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,2,,,never,17,0.0 +27005,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,132,1.0 +5257,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,2,3,0.0 +18533,city_24,0.698,Male,Has relevent experience,no_enrollment,Phd,STEM,19,50-99,Pvt Ltd,1,23,0.0 +32891,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,148,0.0 +9909,city_160,0.92,Other,No relevent experience,Part time course,Graduate,Arts,<1,1000-4999,Pvt Ltd,2,112,1.0 +24284,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,1,5,1.0 +7686,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,3,,,1,270,1.0 +17572,city_65,0.802,Male,No relevent experience,Full time course,Graduate,STEM,7,,,never,6,1.0 +23014,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,4,28,0.0 +19112,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,NGO,>4,51,0.0 +1345,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,2,204,0.0 +20387,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,6,,,1,147,0.0 +31928,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,1,10,0.0 +19587,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,1,116,1.0 +9331,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,1,28,0.0 +612,city_103,0.92,Male,No relevent experience,Full time course,High School,,4,,NGO,1,332,1.0 +10835,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,1,109,1.0 +22539,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,1,54,0.0 +20861,city_10,0.895,Other,No relevent experience,,,,2,,,never,83,0.0 +102,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,19,100-500,Funded Startup,>4,37,0.0 +2040,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,1,8,1.0 +19802,city_65,0.802,Male,Has relevent experience,no_enrollment,High School,,12,100-500,Pvt Ltd,1,4,0.0 +32967,city_98,0.9490000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,10,,,3,27,0.0 +4267,city_67,0.855,Male,No relevent experience,no_enrollment,High School,,3,,,never,31,0.0 +17136,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10000+,Pvt Ltd,>4,28,0.0 +33170,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,>4,40,0.0 +20986,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,4,,,1,22,0.0 +17284,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,100-500,Pvt Ltd,2,43,0.0 +28439,city_149,0.6890000000000001,Male,Has relevent experience,,Graduate,STEM,7,10/49,NGO,1,194,0.0 +21097,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,110,1.0 +6557,city_115,0.789,Male,Has relevent experience,no_enrollment,High School,,15,<10,Pvt Ltd,1,6,0.0 +5421,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Primary School,,>20,,,never,216,0.0 +21140,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,Pvt Ltd,>4,36,0.0 +21889,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,,,15,500-999,Pvt Ltd,>4,25,0.0 +24359,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,109,1.0 +3554,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,28,0.0 +10559,city_149,0.6890000000000001,Male,Has relevent experience,no_enrollment,,,3,50-99,Pvt Ltd,1,50,0.0 +20985,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,,2,13,0.0 +3706,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,19,,,1,28,1.0 +17402,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,3,,,,46,1.0 +12158,city_9,0.743,,Has relevent experience,no_enrollment,Graduate,Other,9,10/49,Funded Startup,1,79,0.0 +28990,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,11,<10,Funded Startup,4,75,0.0 +13045,city_36,0.893,Female,Has relevent experience,no_enrollment,High School,,18,500-999,Pvt Ltd,>4,210,0.0 +1039,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,20,0.0 +19080,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Funded Startup,2,57,0.0 +4859,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,5,100-500,Pvt Ltd,1,116,0.0 +16194,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,4,2,1.0 +4936,city_100,0.887,Male,Has relevent experience,no_enrollment,Phd,STEM,6,10/49,Pvt Ltd,4,68,0.0 +4152,city_67,0.855,,Has relevent experience,Full time course,Graduate,STEM,4,500-999,Pvt Ltd,4,152,0.0 +8840,city_91,0.691,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10/49,Pvt Ltd,1,45,1.0 +3701,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,>4,47,0.0 +29448,city_158,0.7659999999999999,Male,No relevent experience,no_enrollment,High School,,1,,,never,83,1.0 +27869,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,47,1.0 +32675,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,2,158,0.0 +6836,city_16,0.91,Female,No relevent experience,Full time course,Masters,STEM,2,,Public Sector,2,50,0.0 +11317,city_13,0.8270000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Funded Startup,1,9,0.0 +15517,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,>4,26,0.0 +567,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,126,0.0 +9049,city_90,0.698,Male,No relevent experience,Full time course,Graduate,STEM,9,50-99,,never,55,0.0 +5741,city_48,0.493,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,2,18,0.0 +24983,city_16,0.91,,Has relevent experience,no_enrollment,Phd,STEM,7,1000-4999,Public Sector,1,81,0.0 +9400,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,<10,Pvt Ltd,never,24,0.0 +29813,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,20,0.0 +27221,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,35,0.0 +25760,city_160,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,6,,,1,43,1.0 +28318,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,2,12,0.0 +24009,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,20,10000+,Pvt Ltd,1,27,1.0 +11108,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,98,0.0 +30628,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,10,10000+,Pvt Ltd,3,29,0.0 +4755,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,,Pvt Ltd,never,68,1.0 +8310,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,2,122,0.0 +25270,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,4,10000+,Pvt Ltd,never,30,0.0 +8260,city_11,0.55,,No relevent experience,no_enrollment,High School,,2,,,never,94,1.0 +4558,city_115,0.789,,No relevent experience,no_enrollment,High School,,<1,,Pvt Ltd,never,15,0.0 +21299,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,12,10000+,Pvt Ltd,2,11,0.0 +6691,city_123,0.738,Male,No relevent experience,Part time course,Graduate,STEM,9,,,4,55,1.0 +10536,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,1,49,0.0 +23373,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,20,1.0 +19108,city_160,0.92,Male,Has relevent experience,no_enrollment,,,20,100-500,Pvt Ltd,>4,20,0.0 +16187,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,44,0.0 +3849,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,1,16,0.0 +5784,city_100,0.887,,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,,>4,23,1.0 +4740,city_70,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,3,<10,,1,44,0.0 +31502,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,,>20,100-500,Pvt Ltd,3,57,0.0 +12015,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Pvt Ltd,1,15,0.0 +13563,city_11,0.55,Male,Has relevent experience,Part time course,Masters,STEM,7,10/49,Pvt Ltd,2,45,1.0 +14103,city_64,0.6659999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,15,100-500,Pvt Ltd,>4,328,0.0 +7165,city_21,0.624,,Has relevent experience,no_enrollment,,,3,10/49,Early Stage Startup,1,53,1.0 +12627,city_165,0.903,,No relevent experience,no_enrollment,,,6,,,never,56,1.0 +27792,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Other,11,,,>4,74,0.0 +3170,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,30,0.0 +28327,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,2,17,0.0 +32566,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,13,,,>4,226,0.0 +18797,city_71,0.884,,Has relevent experience,no_enrollment,Masters,Humanities,5,50-99,Pvt Ltd,1,32,0.0 +26704,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,82,0.0 +19444,city_134,0.698,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,136,1.0 +27388,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,108,1.0 +28852,city_138,0.836,Male,No relevent experience,Full time course,High School,,6,,,never,108,0.0 +30054,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,92,0.0 +7855,city_65,0.802,,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,4,66,0.0 +26653,city_16,0.91,,Has relevent experience,no_enrollment,Masters,Humanities,<1,50-99,Early Stage Startup,1,6,0.0 +23340,city_21,0.624,Female,Has relevent experience,Full time course,Graduate,No Major,3,10/49,,1,78,1.0 +16371,city_11,0.55,,Has relevent experience,no_enrollment,Masters,STEM,2,<10,,1,36,1.0 +8191,city_91,0.691,,Has relevent experience,Full time course,Graduate,STEM,3,10/49,Pvt Ltd,1,91,0.0 +15508,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Pvt Ltd,never,5,0.0 +31096,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,<10,Pvt Ltd,3,15,0.0 +5814,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,2,18,1.0 +30092,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,18,100-500,Pvt Ltd,2,6,0.0 +23410,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,5,5000-9999,Pvt Ltd,2,4,0.0 +19532,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,4,43,0.0 +18062,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,91,0.0 +32859,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,2,5000-9999,Pvt Ltd,never,174,1.0 +16968,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,56,0.0 +15042,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,No Major,4,10000+,Pvt Ltd,1,39,1.0 +14065,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,2,500-999,Pvt Ltd,2,84,0.0 +4144,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,6,<10,,2,15,0.0 +11007,city_46,0.762,,Has relevent experience,Part time course,Graduate,STEM,9,,,1,54,1.0 +782,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,7,<10,NGO,1,27,0.0 +32422,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Early Stage Startup,1,10,0.0 +5317,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Funded Startup,2,52,0.0 +13589,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,9,,,1,13,1.0 +31009,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,312,0.0 +19630,city_136,0.897,Male,Has relevent experience,Part time course,Masters,STEM,6,50-99,Pvt Ltd,4,16,0.0 +14465,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,<10,Pvt Ltd,never,12,0.0 +14286,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,17,<10,Early Stage Startup,1,53,0.0 +17103,city_11,0.55,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,1,86,1.0 +9906,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,3,24,0.0 +22280,city_23,0.899,Male,Has relevent experience,Part time course,Graduate,STEM,15,500-999,Public Sector,>4,27,0.0 +1164,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,1,58,0.0 +18184,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,12,1000-4999,Pvt Ltd,2,40,0.0 +5808,city_165,0.903,Male,Has relevent experience,no_enrollment,Masters,STEM,6,,,1,18,0.0 +32578,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,5,10/49,Pvt Ltd,1,55,1.0 +26537,city_11,0.55,Male,Has relevent experience,Full time course,Graduate,STEM,16,<10,Early Stage Startup,2,30,1.0 +28917,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,2,<10,Pvt Ltd,1,57,0.0 +29741,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,21,0.0 +3968,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,Pvt Ltd,never,56,0.0 +17213,city_16,0.91,,No relevent experience,no_enrollment,Graduate,Other,14,50-99,Pvt Ltd,>4,116,1.0 +17987,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,45,0.0 +2914,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,,,>20,,Pvt Ltd,3,58,0.0 +25444,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,1,22,0.0 +29175,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,12,0.0 +10189,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Pvt Ltd,2,300,0.0 +23441,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,2,10000+,Pvt Ltd,,43,1.0 +11480,city_65,0.802,Male,Has relevent experience,Full time course,High School,,8,50-99,,never,12,0.0 +20261,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,19,10/49,,3,75,1.0 +1,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,2,,Pvt Ltd,never,150,0.0 +855,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,11,500-999,,2,41,0.0 +25438,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,>4,67,0.0 +15257,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,90,0.0 +30200,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,13,0.0 +29473,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Public Sector,>4,50,0.0 +25722,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,72,0.0 +20402,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Funded Startup,2,58,1.0 +31681,city_13,0.8270000000000001,Male,No relevent experience,,Graduate,STEM,4,,,1,78,0.0 +32507,city_103,0.92,Other,No relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,206,0.0 +15153,city_159,0.843,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,1,14,0.0 +4769,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Funded Startup,1,118,0.0 +24071,city_80,0.847,Male,No relevent experience,Full time course,High School,,2,,,1,7,0.0 +29780,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Other,17,1000-4999,Pvt Ltd,2,46,0.0 +18227,city_100,0.887,,No relevent experience,no_enrollment,Masters,Business Degree,<1,,,1,150,1.0 +31146,city_10,0.895,Male,Has relevent experience,Part time course,Graduate,STEM,3,10/49,Pvt Ltd,never,33,0.0 +32667,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,Arts,14,,,2,24,0.0 +22615,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,<10,NGO,1,10,0.0 +531,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,80,0.0 +7024,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,6,,,never,14,0.0 +3874,city_160,0.92,Male,No relevent experience,Full time course,High School,,2,<10,Pvt Ltd,1,20,0.0 +33260,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,1,48,1.0 +23437,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,Pvt Ltd,2,108,1.0 +7565,city_73,0.754,Male,No relevent experience,Full time course,Graduate,STEM,8,,,>4,44,1.0 +22257,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,1,6,0.0 +26211,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,6,500-999,Pvt Ltd,2,23,1.0 +11624,city_16,0.91,Male,No relevent experience,no_enrollment,Primary School,,2,,,never,12,0.0 +27360,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,14,0.0 +14214,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10000+,Pvt Ltd,2,12,0.0 +22054,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,31,1.0 +29245,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,Humanities,,,,1,91,1.0 +27876,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,,,1,70,0.0 +988,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,2,78,0.0 +24078,city_80,0.847,,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,,2,104,0.0 +26074,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,>4,57,0.0 +5224,city_143,0.74,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,1,12,0.0 +32271,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,145,0.0 +5924,city_31,0.807,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,37,0.0 +27103,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,12,10000+,Pvt Ltd,4,59,0.0 +32028,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Public Sector,>4,62,1.0 +10280,city_67,0.855,Female,No relevent experience,Full time course,Phd,STEM,14,1000-4999,Public Sector,2,140,0.0 +21911,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,4,83,0.0 +13488,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,1,96,0.0 +7113,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,37,0.0 +12150,city_120,0.78,Male,No relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,>4,28,1.0 +2180,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,50,0.0 +27196,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,7,10/49,Pvt Ltd,4,37,1.0 +4497,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,31,1.0 +11019,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,1000-4999,Public Sector,>4,161,0.0 +9798,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,18,,,>4,55,0.0 +24011,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,65,1.0 +1430,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,50-99,Public Sector,1,224,0.0 +25748,city_23,0.899,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,45,0.0 +19616,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,>4,51,1.0 +32743,city_116,0.743,Male,No relevent experience,Full time course,High School,,2,,,never,54,0.0 +10864,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,1,51,0.0 +4809,city_71,0.884,Male,No relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,4,20,0.0 +9303,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,Pvt Ltd,>4,70,0.0 +2185,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,100-500,Pvt Ltd,2,12,0.0 +26447,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,48,1.0 +18329,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,42,1.0 +14366,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,13,50-99,Pvt Ltd,1,54,0.0 +5937,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,2,90,0.0 +39,city_16,0.91,,Has relevent experience,no_enrollment,Masters,Other,10,100-500,Pvt Ltd,1,43,0.0 +33005,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,9,500-999,Pvt Ltd,1,326,0.0 +12898,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,9,,,1,72,0.0 +19331,city_102,0.804,Male,No relevent experience,no_enrollment,High School,,13,<10,Pvt Ltd,2,32,0.0 +6918,city_109,0.701,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,1,18,0.0 +24876,city_74,0.579,Male,Has relevent experience,Part time course,Masters,STEM,4,500-999,Pvt Ltd,1,64,0.0 +33335,city_99,0.915,Male,Has relevent experience,no_enrollment,High School,,14,1000-4999,Pvt Ltd,1,6,1.0 +16890,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,2,112,1.0 +15237,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,4,,,1,36,1.0 +30004,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Pvt Ltd,1,72,0.0 +9944,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,16,50-99,Pvt Ltd,3,28,0.0 +919,city_27,0.848,Male,No relevent experience,no_enrollment,Graduate,STEM,8,,Pvt Ltd,never,56,1.0 +17078,city_136,0.897,Male,No relevent experience,no_enrollment,,,7,,,2,52,0.0 +6662,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Public Sector,2,80,0.0 +21375,city_21,0.624,Female,No relevent experience,Full time course,Graduate,STEM,8,,,never,53,1.0 +26598,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,NGO,1,50,0.0 +24971,city_76,0.698,,No relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,28,1.0 +9768,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,165,1.0 +25197,city_36,0.893,Male,Has relevent experience,no_enrollment,High School,,15,50-99,Pvt Ltd,1,25,0.0 +21630,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,10/49,Early Stage Startup,1,33,1.0 +8109,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Public Sector,1,114,0.0 +29082,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,7,500-999,Pvt Ltd,1,33,0.0 +20639,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,>4,136,0.0 +33209,city_128,0.527,Male,No relevent experience,no_enrollment,Graduate,STEM,2,100-500,NGO,1,10,1.0 +26806,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,66,0.0 +28665,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,6,50-99,Pvt Ltd,2,44,0.0 +20961,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,2,35,0.0 +19597,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,4,67,1.0 +3000,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,3,<10,Funded Startup,1,18,0.0 +22926,city_16,0.91,Male,Has relevent experience,no_enrollment,,,9,50-99,Pvt Ltd,1,52,0.0 +15379,city_138,0.836,,Has relevent experience,Full time course,Masters,STEM,>20,500-999,Pvt Ltd,>4,29,0.0 +28576,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,3,10000+,Pvt Ltd,1,20,0.0 +4211,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,1,48,0.0 +31260,city_8,0.698,Female,No relevent experience,Full time course,Masters,STEM,4,,,1,72,0.0 +12076,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,11,<10,Pvt Ltd,>4,23,0.0 +26565,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Pvt Ltd,1,21,0.0 +400,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,>4,23,0.0 +5100,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Early Stage Startup,2,26,0.0 +15233,city_41,0.8270000000000001,Male,No relevent experience,Part time course,Graduate,Arts,4,,,1,111,1.0 +20631,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,1,5000-9999,Pvt Ltd,1,26,1.0 +18874,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,,1,144,0.0 +14634,city_11,0.55,,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,>4,23,0.0 +19424,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Public Sector,>4,22,0.0 +21436,city_50,0.8959999999999999,Female,Has relevent experience,Full time course,Graduate,STEM,10,10/49,Funded Startup,1,328,0.0 +30248,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,>4,105,0.0 +2989,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,15,100-500,Pvt Ltd,1,19,0.0 +1550,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,5,,,1,55,1.0 +8526,city_74,0.579,,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Early Stage Startup,1,43,0.0 +19384,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,3,100-500,Pvt Ltd,3,74,0.0 +12767,city_136,0.897,,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Pvt Ltd,4,81,0.0 +15609,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,>4,34,0.0 +15543,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,16,<10,Pvt Ltd,4,56,0.0 +27712,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,2,71,1.0 +9244,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,10,1000-4999,Pvt Ltd,never,113,1.0 +10317,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,500-999,Pvt Ltd,1,17,0.0 +3927,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,10000+,Pvt Ltd,2,48,0.0 +1134,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,3,23,0.0 +6785,city_158,0.7659999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,4,500-999,Pvt Ltd,1,56,0.0 +6528,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,10000+,Pvt Ltd,>4,102,0.0 +15496,city_23,0.899,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,>4,26,0.0 +27246,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,<1,,Pvt Ltd,never,106,0.0 +16439,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,2,100-500,NGO,1,19,1.0 +1335,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,4,17,0.0 +5900,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,>4,80,0.0 +16953,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,500-999,Pvt Ltd,1,62,0.0 +6533,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,52,0.0 +18625,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,61,0.0 +7428,city_138,0.836,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,32,1.0 +3840,city_16,0.91,Other,No relevent experience,Full time course,Graduate,STEM,4,,,2,62,1.0 +20324,city_21,0.624,,Has relevent experience,,,,4,,,,18,1.0 +19658,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,9,10/49,Pvt Ltd,1,12,0.0 +6595,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,50-99,Pvt Ltd,3,60,0.0 +28150,city_114,0.9259999999999999,Female,No relevent experience,Part time course,Graduate,STEM,15,50-99,Pvt Ltd,3,34,0.0 +27609,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,Other,5,50-99,Pvt Ltd,1,55,0.0 +16757,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,26,1.0 +5586,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,,Pvt Ltd,never,18,1.0 +33219,city_103,0.92,,No relevent experience,Part time course,Graduate,Business Degree,6,10/49,Pvt Ltd,2,48,0.0 +22129,city_46,0.762,,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,>4,55,0.0 +17276,city_103,0.92,,Has relevent experience,no_enrollment,,,9,,,never,14,0.0 +9409,city_84,0.698,Other,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,3,50,0.0 +31945,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,19,10/49,Pvt Ltd,>4,3,0.0 +11427,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,5,,,1,119,0.0 +22192,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,1,39,1.0 +3344,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Funded Startup,1,84,0.0 +16491,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,39,0.0 +31244,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,4,27,1.0 +26737,city_99,0.915,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,50,0.0 +6404,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,17,,Pvt Ltd,>4,52,0.0 +7598,city_46,0.762,,Has relevent experience,Part time course,Graduate,STEM,9,50-99,Public Sector,2,298,0.0 +16192,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,>4,25,0.0 +31342,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,2,62,0.0 +24279,city_158,0.7659999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Early Stage Startup,1,18,0.0 +27979,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,2,21,0.0 +4227,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,2,126,0.0 +17231,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,32,0.0 +20047,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,11,0.0 +4913,city_90,0.698,,Has relevent experience,Full time course,Graduate,STEM,9,,,1,53,1.0 +24144,city_28,0.9390000000000001,Male,Has relevent experience,Part time course,High School,,3,5000-9999,Pvt Ltd,>4,166,0.0 +19953,city_16,0.91,Male,No relevent experience,Full time course,Masters,STEM,8,,,4,56,0.0 +4204,city_104,0.924,Male,Has relevent experience,Full time course,Primary School,,11,,,1,8,0.0 +4758,city_57,0.866,,No relevent experience,,,,9,,,never,59,0.0 +3834,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,10000+,Pvt Ltd,3,116,0.0 +31583,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,60,0.0 +26282,city_24,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Pvt Ltd,2,100,0.0 +18398,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Pvt Ltd,1,10,1.0 +12577,city_16,0.91,Male,No relevent experience,no_enrollment,Phd,STEM,>20,500-999,Public Sector,>4,27,0.0 +24236,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,1,10/49,Early Stage Startup,1,44,1.0 +19425,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,8,50-99,Pvt Ltd,2,32,0.0 +12376,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,No Major,5,50-99,Pvt Ltd,3,26,0.0 +958,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,4,1000-4999,Pvt Ltd,1,124,0.0 +20445,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,5000-9999,Pvt Ltd,1,94,0.0 +26033,city_114,0.9259999999999999,,No relevent experience,no_enrollment,High School,,3,,,never,56,0.0 +24425,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,1,,,never,2,0.0 +15229,city_103,0.92,,Has relevent experience,Part time course,Masters,STEM,>20,5000-9999,Public Sector,4,11,0.0 +3035,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,Pvt Ltd,>4,122,1.0 +11615,city_150,0.698,,No relevent experience,Full time course,High School,,<1,,,never,23,0.0 +21589,city_114,0.9259999999999999,Female,No relevent experience,Full time course,Graduate,STEM,3,10000+,Pvt Ltd,1,200,0.0 +11581,city_90,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,21,0.0 +14330,city_115,0.789,Male,No relevent experience,Full time course,Graduate,STEM,5,50-99,Pvt Ltd,never,17,0.0 +4329,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,29,1.0 +8986,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,3,,,never,12,1.0 +10760,city_104,0.924,,No relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,1,78,0.0 +22804,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Pvt Ltd,1,50,1.0 +17715,city_103,0.92,Female,Has relevent experience,Part time course,Masters,STEM,17,10000+,Pvt Ltd,1,94,0.0 +15533,city_42,0.563,,Has relevent experience,no_enrollment,,,>20,,,>4,128,1.0 +28625,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Funded Startup,2,258,1.0 +31908,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,4,,,1,58,1.0 +7588,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,1,109,0.0 +23822,city_149,0.6890000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,<1,<10,Pvt Ltd,>4,24,0.0 +15747,city_19,0.682,Male,No relevent experience,,High School,,<1,,,never,62,0.0 +4817,city_21,0.624,Female,No relevent experience,no_enrollment,Graduate,STEM,2,10000+,Pvt Ltd,1,6,1.0 +22977,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,<10,Pvt Ltd,1,50,0.0 +8269,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,Humanities,2,100-500,Pvt Ltd,2,46,1.0 +9197,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,3,,,,55,1.0 +24321,city_102,0.804,Male,Has relevent experience,Full time course,Graduate,STEM,7,10000+,Public Sector,1,92,0.0 +23411,city_75,0.9390000000000001,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,61,0.0 +4461,city_90,0.698,,Has relevent experience,Full time course,Graduate,STEM,8,10/49,Pvt Ltd,,25,1.0 +12604,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Early Stage Startup,1,82,1.0 +18215,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,10/49,Pvt Ltd,2,74,0.0 +8457,city_104,0.924,Male,No relevent experience,no_enrollment,Primary School,,5,,,never,4,0.0 +15074,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,164,0.0 +18716,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,1,26,0.0 +11702,city_101,0.5579999999999999,,Has relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,2,90,1.0 +5526,city_104,0.924,,No relevent experience,Full time course,Graduate,STEM,2,,Other,never,100,0.0 +25647,city_173,0.878,Male,No relevent experience,Full time course,Graduate,STEM,7,,,1,52,1.0 +2438,city_136,0.897,Male,No relevent experience,Full time course,Masters,STEM,7,,,1,88,0.0 +13646,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Funded Startup,1,10,0.0 +32036,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,1,102,1.0 +13207,city_97,0.925,Male,No relevent experience,Full time course,Graduate,STEM,2,,,2,136,1.0 +8437,city_45,0.89,Male,Has relevent experience,Full time course,Graduate,STEM,4,<10,Early Stage Startup,1,17,0.0 +28451,city_16,0.91,,Has relevent experience,Full time course,Graduate,STEM,1,1000-4999,Pvt Ltd,never,42,0.0 +8115,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,1,7,0.0 +19559,city_11,0.55,Male,No relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,>4,62,1.0 +4215,city_46,0.762,,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,NGO,1,34,0.0 +25521,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,10,500-999,Pvt Ltd,>4,9,0.0 +1638,city_75,0.9390000000000001,,No relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,6,0.0 +32183,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,High School,,5,,Pvt Ltd,1,94,0.0 +20796,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,44,0.0 +8297,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,500-999,Pvt Ltd,4,9,0.0 +16297,city_21,0.624,,Has relevent experience,no_enrollment,Masters,No Major,>20,1000-4999,Pvt Ltd,1,72,1.0 +29594,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,18,5000-9999,Pvt Ltd,>4,56,0.0 +14206,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,13,,,1,74,0.0 +13650,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Early Stage Startup,1,105,0.0 +21896,city_157,0.769,Male,No relevent experience,no_enrollment,High School,,1,,,1,35,0.0 +27700,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,96,0.0 +23358,city_90,0.698,Male,Has relevent experience,,,,9,,,1,31,0.0 +8370,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,5,,Public Sector,1,28,1.0 +12351,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,2,1.0 +30541,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,55,0.0 +19964,city_149,0.6890000000000001,Male,No relevent experience,no_enrollment,High School,,3,,,never,33,0.0 +21162,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,3,100-500,NGO,>4,29,0.0 +26382,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,9,0.0 +25545,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,Humanities,15,50-99,Pvt Ltd,1,160,0.0 +15917,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,5,,,never,42,0.0 +7164,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,>4,100,0.0 +28585,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,1,18,0.0 +887,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,Other,6,50-99,Pvt Ltd,never,83,0.0 +6408,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,Business Degree,>20,<10,Pvt Ltd,1,36,0.0 +20003,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,1,172,0.0 +3751,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,>4,134,0.0 +26051,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,50-99,Pvt Ltd,1,168,0.0 +31159,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,1,10,1.0 +220,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,67,0.0 +18946,city_103,0.92,Male,No relevent experience,,Masters,STEM,9,,,never,16,1.0 +16817,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,1,11,0.0 +14036,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Funded Startup,1,6,0.0 +4150,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Business Degree,4,5000-9999,,1,34,0.0 +23771,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,Pvt Ltd,1,45,0.0 +22560,city_67,0.855,Female,No relevent experience,no_enrollment,Masters,STEM,3,,,2,124,1.0 +19297,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,1,322,0.0 +21498,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,19,<10,Pvt Ltd,>4,7,0.0 +28311,city_103,0.92,Male,Has relevent experience,Part time course,Masters,Humanities,10,10000+,Public Sector,1,32,0.0 +31440,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,12,100-500,Pvt Ltd,4,100,0.0 +10787,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,,1,10,0.0 +22087,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,10,0.0 +28185,city_136,0.897,Female,Has relevent experience,no_enrollment,Graduate,Arts,4,100-500,Pvt Ltd,1,132,0.0 +6660,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,7,1000-4999,Pvt Ltd,1,22,0.0 +12690,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,>4,248,0.0 +10897,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,4,104,1.0 +2767,city_75,0.9390000000000001,Male,No relevent experience,Full time course,Graduate,STEM,15,1000-4999,NGO,1,25,0.0 +6399,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,3,102,0.0 +22942,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,11,10000+,Pvt Ltd,>4,84,0.0 +133,city_103,0.92,,No relevent experience,no_enrollment,,,5,,Pvt Ltd,never,27,0.0 +14307,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,1,38,0.0 +672,city_104,0.924,Male,Has relevent experience,Full time course,Graduate,STEM,9,,,>4,45,0.0 +20403,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,21,1.0 +7427,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,6,,,>4,88,0.0 +25587,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,4,27,0.0 +11040,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,5000-9999,Pvt Ltd,1,136,0.0 +16354,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,3,39,0.0 +300,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,42,0.0 +19124,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Other,>4,161,0.0 +26810,city_16,0.91,Female,No relevent experience,Full time course,Graduate,Other,5,10/49,Pvt Ltd,1,127,0.0 +12729,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,never,2,0.0 +16487,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,10,,,never,60,0.0 +22988,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,1,10,0.0 +7633,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Business Degree,2,5000-9999,Pvt Ltd,2,36,0.0 +16541,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,<1,50-99,Pvt Ltd,3,51,1.0 +13683,city_23,0.899,Male,Has relevent experience,no_enrollment,High School,,5,50-99,Pvt Ltd,2,34,0.0 +10872,city_83,0.9229999999999999,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,37,0.0 +21655,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,2,26,0.0 +14349,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,111,0.0 +14647,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,11,10000+,Pvt Ltd,3,91,1.0 +19264,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,10,0.0 +28240,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Early Stage Startup,1,35,0.0 +30297,city_114,0.9259999999999999,Male,No relevent experience,,High School,,3,,,1,49,0.0 +3111,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,NGO,1,21,0.0 +26425,city_67,0.855,Male,No relevent experience,Full time course,High School,,4,,,never,17,0.0 +20180,city_16,0.91,,No relevent experience,Full time course,Graduate,STEM,1,,,,42,1.0 +28362,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,19,10/49,Pvt Ltd,>4,42,0.0 +23040,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,44,0.0 +18516,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,,,never,24,0.0 +10423,city_21,0.624,,Has relevent experience,no_enrollment,High School,,10,,,1,48,1.0 +24525,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,2,,,never,51,1.0 +7147,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,,1,96,0.0 +10005,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,>4,192,1.0 +11619,city_21,0.624,Female,No relevent experience,Full time course,Graduate,STEM,3,500-999,NGO,1,53,1.0 +16154,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,2,,,never,132,1.0 +13396,city_21,0.624,Female,Has relevent experience,Full time course,Graduate,STEM,19,,,1,28,1.0 +16962,city_160,0.92,Male,No relevent experience,Full time course,High School,,3,,Public Sector,1,53,1.0 +31909,city_75,0.9390000000000001,Male,No relevent experience,Full time course,Graduate,STEM,10,,,1,30,0.0 +7151,city_23,0.899,Male,Has relevent experience,Part time course,Graduate,STEM,14,10000+,Public Sector,2,78,0.0 +19006,city_103,0.92,,Has relevent experience,no_enrollment,,,10,5000-9999,Pvt Ltd,1,20,0.0 +20067,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,,,1,95,0.0 +21759,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,7,0.0 +22476,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,NGO,1,154,0.0 +3102,city_136,0.897,Male,Has relevent experience,no_enrollment,Phd,STEM,18,10/49,Pvt Ltd,1,256,0.0 +6018,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,STEM,11,50-99,Pvt Ltd,1,24,0.0 +30303,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Pvt Ltd,1,24,0.0 +14190,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,4,,,2,50,1.0 +15714,city_136,0.897,Male,Has relevent experience,,Masters,STEM,9,10000+,Pvt Ltd,>4,42,0.0 +7483,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,,1,50,0.0 +29623,city_101,0.5579999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,1,,,1,36,1.0 +17755,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,1,176,0.0 +7640,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,50-99,Pvt Ltd,3,304,0.0 +27870,city_19,0.682,Female,No relevent experience,Full time course,High School,,4,,,never,152,1.0 +29042,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,5,10000+,Pvt Ltd,1,39,0.0 +22014,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,1,50,0.0 +3851,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,NGO,1,74,0.0 +9518,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,75,0.0 +17723,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,<1,100-500,NGO,1,34,0.0 +4284,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,149,0.0 +16579,city_27,0.848,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Funded Startup,>4,110,0.0 +12975,city_57,0.866,Male,No relevent experience,Full time course,High School,,5,,,never,19,0.0 +30057,city_103,0.92,,No relevent experience,Full time course,Masters,Humanities,>20,,,1,35,0.0 +22442,city_21,0.624,Female,No relevent experience,,Masters,STEM,6,,,2,43,1.0 +15717,city_11,0.55,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,138,0.0 +17380,city_138,0.836,Male,No relevent experience,Full time course,Masters,STEM,3,<10,Public Sector,1,28,0.0 +17490,city_65,0.802,,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,>4,15,0.0 +22880,city_173,0.878,,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,6,0.0 +31751,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,5000-9999,Pvt Ltd,1,100,0.0 +27290,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Other,>4,56,0.0 +30553,city_103,0.92,Male,No relevent experience,no_enrollment,,,4,,Pvt Ltd,never,34,0.0 +16786,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,,Pvt Ltd,1,21,1.0 +19689,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,74,1.0 +10337,city_14,0.698,Male,No relevent experience,no_enrollment,Masters,STEM,16,500-999,Pvt Ltd,2,8,0.0 +21076,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,>4,78,0.0 +31434,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,>4,65,0.0 +1938,city_165,0.903,,No relevent experience,no_enrollment,Primary School,,12,,,,15,0.0 +31815,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,8,10000+,Pvt Ltd,2,85,0.0 +6455,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,5,,,never,15,0.0 +21719,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,4,500-999,Public Sector,1,18,0.0 +7736,city_90,0.698,Male,Has relevent experience,no_enrollment,High School,,7,<10,Funded Startup,1,48,0.0 +7714,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,,1,10,0.0 +24529,city_136,0.897,Male,Has relevent experience,no_enrollment,Phd,STEM,19,50-99,Pvt Ltd,4,314,0.0 +27591,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,3,8,0.0 +22653,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,,,1,114,0.0 +3227,city_136,0.897,Male,No relevent experience,Part time course,Graduate,STEM,8,10000+,Pvt Ltd,2,6,0.0 +24390,city_101,0.5579999999999999,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,332,0.0 +21014,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,Humanities,3,50-99,Funded Startup,1,212,0.0 +13905,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,<10,Pvt Ltd,>4,18,0.0 +6978,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,3,26,0.0 +4009,city_65,0.802,Male,No relevent experience,Full time course,Graduate,STEM,4,,,never,134,0.0 +25035,city_116,0.743,,Has relevent experience,no_enrollment,Masters,STEM,,,,2,144,0.0 +18006,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,21,0.0 +6959,city_16,0.91,Male,No relevent experience,Full time course,High School,,9,,,1,79,0.0 +8883,city_118,0.722,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,4,4,0.0 +32831,city_104,0.924,Male,No relevent experience,Part time course,High School,,3,50-99,Funded Startup,1,22,0.0 +999,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,2,85,0.0 +4925,city_116,0.743,Male,Has relevent experience,no_enrollment,Phd,STEM,9,100-500,NGO,never,10,0.0 +29693,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,>4,41,0.0 +1774,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,4,62,1.0 +11312,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,105,0.0 +17387,city_136,0.897,Male,Has relevent experience,Part time course,Masters,STEM,9,10000+,,1,112,0.0 +13116,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,66,0.0 +8099,city_104,0.924,,Has relevent experience,no_enrollment,High School,,7,50-99,Pvt Ltd,4,72,0.0 +3863,city_73,0.754,Male,Has relevent experience,Part time course,Masters,STEM,3,100-500,Pvt Ltd,2,69,0.0 +31569,city_136,0.897,Male,Has relevent experience,Full time course,Graduate,STEM,>20,,Public Sector,1,14,0.0 +25229,city_65,0.802,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,3,30,0.0 +16857,city_136,0.897,Male,No relevent experience,no_enrollment,Phd,STEM,12,5000-9999,Public Sector,2,74,1.0 +28668,city_103,0.92,,No relevent experience,Part time course,Graduate,STEM,10,,,1,16,1.0 +17693,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10/49,Early Stage Startup,2,288,0.0 +21061,city_100,0.887,,No relevent experience,no_enrollment,Graduate,,<1,,,never,56,1.0 +14612,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,4,1000-4999,Pvt Ltd,1,320,1.0 +3641,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,3,192,0.0 +28974,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Humanities,5,10/49,Pvt Ltd,2,49,0.0 +5811,city_100,0.887,Male,No relevent experience,Full time course,Masters,STEM,7,<10,Public Sector,2,64,0.0 +24256,city_33,0.44799999999999995,Male,No relevent experience,no_enrollment,Graduate,STEM,4,10/49,Public Sector,1,44,1.0 +27094,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,20,50-99,Pvt Ltd,1,4,1.0 +26148,city_150,0.698,Other,No relevent experience,,Graduate,STEM,2,,,never,143,1.0 +32488,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,24,1.0 +9379,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,19,,,1,95,0.0 +12567,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,5,<10,,>4,7,1.0 +23208,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Other,14,100-500,Pvt Ltd,>4,166,0.0 +30946,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,3,1.0 +14289,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,22,0.0 +19975,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Pvt Ltd,>4,81,1.0 +17492,city_123,0.738,,Has relevent experience,no_enrollment,Graduate,Other,12,,,>4,17,0.0 +29311,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,3,32,0.0 +25849,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,14,1000-4999,Pvt Ltd,>4,38,0.0 +10698,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,2,32,0.0 +9078,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,74,1.0 +30807,city_103,0.92,Male,No relevent experience,Full time course,High School,,7,,,never,69,0.0 +7762,city_116,0.743,Male,Has relevent experience,no_enrollment,Masters,Humanities,10,1000-4999,Pvt Ltd,3,52,1.0 +31814,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,29,0.0 +25170,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,1,100-500,Pvt Ltd,1,32,1.0 +21452,city_146,0.735,,No relevent experience,no_enrollment,Masters,STEM,8,50-99,Public Sector,2,43,0.0 +31986,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,5,,,1,42,1.0 +9254,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,1,156,1.0 +13168,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,3,102,0.0 +17080,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,,,1,33,0.0 +29187,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,,2,13,0.0 +24857,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,>4,50,0.0 +20857,city_45,0.89,Female,No relevent experience,no_enrollment,Phd,STEM,>20,<10,Public Sector,4,87,0.0 +11269,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,82,1.0 +10594,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,2,7,0.0 +32205,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,3,<10,Pvt Ltd,1,56,0.0 +582,city_97,0.925,Male,No relevent experience,Full time course,Masters,STEM,14,,,2,96,0.0 +11315,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,4,,,4,24,1.0 +3322,city_46,0.762,,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,33,0.0 +16608,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,150,1.0 +12164,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,never,85,1.0 +14748,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,78,0.0 +5653,city_67,0.855,,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,86,0.0 +17615,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,1,29,0.0 +18777,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,>4,100,0.0 +3802,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,24,0.0 +24100,city_36,0.893,Male,No relevent experience,Full time course,Masters,STEM,10,1000-4999,Public Sector,2,37,0.0 +29100,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,5000-9999,Pvt Ltd,4,79,0.0 +19044,city_128,0.527,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,4,250,1.0 +29467,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,1,51,1.0 +27332,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,No Major,14,,,1,23,0.0 +1496,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10/49,Funded Startup,1,20,0.0 +25010,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,never,81,1.0 +28011,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,36,0.0 +25442,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,>4,28,0.0 +15122,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Public Sector,1,85,0.0 +8097,city_45,0.89,Male,Has relevent experience,no_enrollment,High School,,12,500-999,Pvt Ltd,>4,188,0.0 +29206,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Funded Startup,1,46,0.0 +2654,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,1,32,1.0 +29247,city_165,0.903,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,61,0.0 +6626,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Phd,STEM,20,1000-4999,Public Sector,2,24,0.0 +9026,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,2,59,0.0 +17943,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,500-999,Pvt Ltd,2,19,0.0 +30029,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,NGO,>4,88,0.0 +32051,city_75,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,>4,67,0.0 +22659,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,1,500-999,Pvt Ltd,1,2,1.0 +31883,city_40,0.7759999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,5,50-99,Pvt Ltd,3,98,0.0 +22912,city_67,0.855,Male,No relevent experience,no_enrollment,High School,,2,,,never,34,0.0 +5348,city_160,0.92,Female,No relevent experience,Full time course,Graduate,STEM,9,,,1,12,0.0 +11898,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,20,,,3,70,1.0 +640,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,74,0.0 +4407,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,100-500,Pvt Ltd,1,50,1.0 +29054,city_75,0.9390000000000001,Male,No relevent experience,Part time course,Graduate,STEM,3,500-999,Pvt Ltd,never,40,0.0 +14275,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,1,156,1.0 +30003,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,1,46,0.0 +15848,city_150,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,NGO,1,65,0.0 +13847,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,7,10/49,Pvt Ltd,>4,96,0.0 +3182,city_105,0.794,,Has relevent experience,Part time course,High School,,3,50-99,Funded Startup,1,133,0.0 +17029,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,2,50-99,Funded Startup,2,53,0.0 +5628,city_19,0.682,,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,,,12,0.0 +27958,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,4,89,0.0 +24228,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,40,0.0 +24547,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,4,66,0.0 +3518,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,>4,23,0.0 +18245,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,10000+,Pvt Ltd,1,114,0.0 +5245,city_14,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,4,<10,Pvt Ltd,1,48,0.0 +32166,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,42,0.0 +1260,city_61,0.9129999999999999,Male,No relevent experience,Full time course,Graduate,STEM,5,,,4,32,0.0 +17771,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,9,1.0 +3703,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,,,3,52,0.0 +25357,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,<1,10000+,Pvt Ltd,>4,14,0.0 +14949,city_71,0.884,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,NGO,1,39,0.0 +18014,city_162,0.767,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,2,0.0 +4631,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,2,29,0.0 +10488,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,<1,50-99,Funded Startup,1,36,1.0 +22040,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,14,,,1,134,0.0 +9313,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,4,48,0.0 +12981,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,4,,,,80,1.0 +24209,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,1,25,0.0 +29209,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,7,10000+,Public Sector,2,30,0.0 +31396,city_165,0.903,Male,Has relevent experience,no_enrollment,Masters,STEM,15,5000-9999,Pvt Ltd,1,64,0.0 +13936,city_142,0.727,Male,Has relevent experience,no_enrollment,,,>20,,,>4,106,0.0 +3575,city_103,0.92,Male,No relevent experience,Full time course,Graduate,Business Degree,3,10000+,Pvt Ltd,2,41,0.0 +29317,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,1,28,1.0 +22565,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,16,100-500,Pvt Ltd,2,35,0.0 +17645,city_102,0.804,Male,Has relevent experience,,,,12,50-99,,>4,18,0.0 +19488,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Early Stage Startup,1,5,0.0 +5595,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,8,5000-9999,Pvt Ltd,>4,56,0.0 +11634,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Pvt Ltd,1,61,0.0 +4849,city_101,0.5579999999999999,,No relevent experience,no_enrollment,High School,,8,,,1,94,1.0 +8121,city_114,0.9259999999999999,,Has relevent experience,Full time course,High School,,6,50-99,,2,13,0.0 +29551,city_16,0.91,Male,Has relevent experience,Part time course,Masters,STEM,>20,50-99,Pvt Ltd,>4,35,0.0 +1602,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,4,,,1,75,1.0 +31107,city_103,0.92,Male,Has relevent experience,no_enrollment,,,>20,,,>4,150,1.0 +12088,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,1,67,0.0 +30050,city_100,0.887,Male,No relevent experience,no_enrollment,High School,,>20,10000+,Pvt Ltd,>4,33,0.0 +16592,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,18,5000-9999,Pvt Ltd,2,99,0.0 +28399,city_150,0.698,Male,No relevent experience,no_enrollment,High School,,2,,,never,64,0.0 +1248,city_45,0.89,,No relevent experience,Full time course,Graduate,STEM,8,,,2,28,0.0 +1200,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,108,1.0 +7488,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,1,20,0.0 +10025,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Funded Startup,1,144,0.0 +9319,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,10,0.0 +24736,city_128,0.527,Male,No relevent experience,Full time course,High School,,4,,,never,160,1.0 +17399,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,300,0.0 +31535,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,1,95,0.0 +26531,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,<1,100-500,Pvt Ltd,,330,1.0 +6363,city_99,0.915,,Has relevent experience,Full time course,Graduate,STEM,5,10000+,Public Sector,1,26,0.0 +16622,city_160,0.92,Female,No relevent experience,Full time course,High School,,2,,,never,86,0.0 +6347,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,>20,,,>4,47,1.0 +4930,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Public Sector,4,28,0.0 +25898,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,17,10000+,Pvt Ltd,1,129,1.0 +637,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,,Pvt Ltd,1,69,0.0 +23630,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,High School,,<1,,,never,11,0.0 +55,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Funded Startup,4,40,0.0 +28441,city_16,0.91,,Has relevent experience,no_enrollment,Masters,Humanities,4,10/49,Pvt Ltd,4,72,1.0 +16700,city_71,0.884,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Funded Startup,1,94,0.0 +16934,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,102,0.0 +15971,city_160,0.92,,No relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,4,57,0.0 +8084,city_45,0.89,Male,Has relevent experience,Full time course,Graduate,STEM,2,<10,Early Stage Startup,1,21,0.0 +8249,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,100-500,,1,75,1.0 +16801,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,14,,Pvt Ltd,1,45,0.0 +8784,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Business Degree,3,100-500,Pvt Ltd,2,127,0.0 +27380,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Phd,STEM,19,,,3,162,0.0 +24379,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,10/49,Pvt Ltd,never,118,0.0 +1192,city_98,0.9490000000000001,Male,No relevent experience,Full time course,Graduate,STEM,1,1000-4999,Pvt Ltd,never,3,1.0 +12155,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Pvt Ltd,2,80,0.0 +17461,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,,,2,55,1.0 +8933,city_115,0.789,,No relevent experience,no_enrollment,Graduate,STEM,5,,,never,139,1.0 +3403,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,,1,80,0.0 +2220,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,>4,29,1.0 +16896,city_103,0.92,Female,No relevent experience,no_enrollment,Masters,STEM,>20,50-99,Other,>4,162,1.0 +10694,city_116,0.743,Female,Has relevent experience,Full time course,Graduate,STEM,3,1000-4999,Pvt Ltd,1,44,0.0 +19575,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,11,0.0 +12243,city_40,0.7759999999999999,Male,No relevent experience,Full time course,Graduate,STEM,7,,,never,1,0.0 +12061,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Other,1,47,0.0 +25940,city_73,0.754,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,1,10,0.0 +22671,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,>4,43,0.0 +12230,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,18,10000+,Pvt Ltd,>4,43,1.0 +10063,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Funded Startup,1,328,0.0 +6135,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,90,0.0 +24119,city_73,0.754,Male,Has relevent experience,no_enrollment,High School,,11,,,1,18,0.0 +15030,city_103,0.92,Other,Has relevent experience,,Graduate,STEM,6,50-99,Pvt Ltd,1,24,0.0 +29878,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,10,50-99,Pvt Ltd,1,90,0.0 +2697,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,15,1000-4999,Pvt Ltd,>4,60,0.0 +10591,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,never,84,1.0 +4060,city_89,0.925,,Has relevent experience,no_enrollment,Masters,STEM,19,<10,Pvt Ltd,>4,6,0.0 +26786,city_74,0.579,,Has relevent experience,Full time course,Graduate,STEM,1,<10,,1,101,0.0 +22763,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,5,,,never,32,0.0 +28287,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,24,1.0 +28254,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Pvt Ltd,4,31,0.0 +2410,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,101,0.0 +15553,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,2,54,0.0 +11973,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,14,0.0 +22500,city_136,0.897,Male,No relevent experience,no_enrollment,,,5,,,never,12,0.0 +5652,city_102,0.804,Female,Has relevent experience,no_enrollment,Masters,STEM,9,10/49,,1,210,0.0 +1115,city_41,0.8270000000000001,,Has relevent experience,Part time course,Graduate,STEM,3,10000+,Pvt Ltd,2,8,1.0 +32046,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,1,7,0.0 +4786,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,>4,7,0.0 +12092,city_173,0.878,Male,Has relevent experience,Part time course,High School,,5,<10,Pvt Ltd,1,50,0.0 +9240,city_11,0.55,,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,158,0.0 +33249,city_73,0.754,Male,No relevent experience,Part time course,High School,,3,,,1,60,1.0 +8798,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,,,1,110,0.0 +17497,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Pvt Ltd,1,17,0.0 +11245,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,17,5000-9999,Pvt Ltd,>4,15,0.0 +9434,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,108,0.0 +31155,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,44,0.0 +125,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,7,100-500,Public Sector,2,22,0.0 +1559,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,22,0.0 +4011,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,,1,21,0.0 +13579,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,80,1.0 +25793,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,52,0.0 +21722,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,,never,9,0.0 +17043,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,<1,,,3,59,1.0 +17686,city_40,0.7759999999999999,,Has relevent experience,Full time course,Graduate,STEM,>20,1000-4999,Pvt Ltd,4,132,0.0 +6037,city_10,0.895,Male,Has relevent experience,Part time course,Masters,STEM,16,500-999,Pvt Ltd,>4,45,0.0 +12786,city_136,0.897,,Has relevent experience,Full time course,Graduate,STEM,,10/49,NGO,,26,1.0 +11289,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,1,34,0.0 +33175,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,8,10000+,Pvt Ltd,3,92,0.0 +8741,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,19,0.0 +9084,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,1,14,0.0 +20329,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,50-99,Pvt Ltd,1,42,0.0 +10946,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,19,0.0 +26404,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,6,,,1,144,0.0 +31457,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,2,37,0.0 +12086,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,2,,,never,49,0.0 +11282,city_90,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,13,,,1,37,0.0 +30181,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,4,45,0.0 +14727,city_136,0.897,Male,Has relevent experience,no_enrollment,,,10,10/49,Pvt Ltd,1,108,0.0 +13289,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,2,103,0.0 +24772,city_90,0.698,Male,Has relevent experience,Part time course,Graduate,STEM,9,,,1,42,0.0 +12095,city_83,0.9229999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,>4,24,0.0 +5858,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,10,0.0 +10307,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,5000-9999,Pvt Ltd,2,11,0.0 +6901,city_100,0.887,,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,324,0.0 +6158,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,,,1,40,1.0 +3196,city_104,0.924,Male,Has relevent experience,Part time course,Graduate,STEM,7,<10,Early Stage Startup,1,20,0.0 +1479,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Humanities,14,10/49,Pvt Ltd,>4,45,0.0 +32387,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,65,0.0 +31488,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,3,64,0.0 +29569,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,2,15,0.0 +23131,city_173,0.878,Male,Has relevent experience,Full time course,Graduate,STEM,10,,,4,53,1.0 +22509,city_136,0.897,,No relevent experience,Full time course,Masters,STEM,4,,,1,51,1.0 +10212,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,3,<10,Funded Startup,2,33,0.0 +28998,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,>4,17,0.0 +23409,city_103,0.92,,Has relevent experience,no_enrollment,,,5,50-99,Pvt Ltd,1,60,0.0 +24402,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,6,0.0 +27134,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,,Pvt Ltd,1,69,1.0 +23751,city_123,0.738,Male,No relevent experience,Full time course,High School,,1,,,,42,1.0 +3219,city_136,0.897,Male,Has relevent experience,no_enrollment,Phd,STEM,11,10000+,Pvt Ltd,never,59,0.0 +15707,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,2,6,1.0 +30655,city_78,0.579,,No relevent experience,Full time course,Graduate,STEM,<1,,,never,6,1.0 +31518,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,4,,Pvt Ltd,never,21,1.0 +30189,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,,,10,<10,Pvt Ltd,>4,25,0.0 +23608,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,157,0.0 +21663,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,2,22,0.0 +18335,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,,,1,94,0.0 +20765,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,2,10/49,Early Stage Startup,1,13,0.0 +14270,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,1,10,0.0 +17643,city_24,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,2,9,0.0 +33375,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Public Sector,1,51,0.0 +20489,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,64,0.0 +32740,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Funded Startup,1,17,0.0 +26229,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,4,4,0.0 +23828,city_67,0.855,Female,No relevent experience,Full time course,Graduate,STEM,3,,,1,21,0.0 +19052,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,5000-9999,Pvt Ltd,2,25,0.0 +22288,city_41,0.8270000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,14,,,1,44,0.0 +32942,city_24,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,9,0.0 +1090,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,118,0.0 +25881,city_21,0.624,Male,No relevent experience,Full time course,High School,,6,,,never,37,1.0 +30665,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,Other,11,10000+,Pvt Ltd,1,39,0.0 +20204,city_160,0.92,Male,Has relevent experience,no_enrollment,High School,,>20,<10,Pvt Ltd,>4,160,0.0 +5599,city_97,0.925,,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,4,53,0.0 +32848,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,97,0.0 +28147,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,1000-4999,Other,>4,67,0.0 +5918,city_165,0.903,,No relevent experience,,,,<1,,,never,84,0.0 +27227,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,<10,Pvt Ltd,1,119,0.0 +3941,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,1,144,0.0 +17360,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,never,16,0.0 +31135,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,never,26,1.0 +15957,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Public Sector,2,55,0.0 +15059,city_160,0.92,,Has relevent experience,Full time course,Graduate,STEM,12,500-999,Pvt Ltd,1,10,0.0 +4358,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,62,0.0 +15029,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,4,1000-4999,Pvt Ltd,1,66,0.0 +3676,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,5000-9999,NGO,>4,4,1.0 +7367,city_142,0.727,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,34,0.0 +17831,city_21,0.624,,No relevent experience,Full time course,High School,,3,,,never,17,1.0 +27345,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,3,,,1,116,0.0 +29924,city_162,0.767,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Public Sector,2,12,0.0 +8700,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,7,1.0 +21201,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,75,0.0 +2847,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,41,0.0 +19584,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,68,0.0 +17881,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,18,0.0 +18933,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,131,0.0 +20099,city_173,0.878,Male,Has relevent experience,no_enrollment,High School,,16,100-500,Funded Startup,1,22,0.0 +13012,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,3,10000+,Pvt Ltd,1,50,0.0 +10468,city_11,0.55,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,2,47,1.0 +28856,city_103,0.92,Male,No relevent experience,Full time course,High School,,8,,,1,3,1.0 +23404,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,12,0.0 +3865,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,Public Sector,3,21,0.0 +780,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,2,<10,Early Stage Startup,never,88,0.0 +18594,city_134,0.698,,Has relevent experience,,,,>20,,,,51,0.0 +7727,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,1,94,0.0 +24510,city_116,0.743,,Has relevent experience,Full time course,Masters,STEM,15,,,1,72,1.0 +1800,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,156,1.0 +28621,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Other,11,10000+,Pvt Ltd,1,21,1.0 +22877,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,107,0.0 +17822,city_19,0.682,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,68,1.0 +24095,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Public Sector,4,204,0.0 +32706,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,>4,23,0.0 +5349,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,4,11,1.0 +11794,city_57,0.866,Male,Has relevent experience,no_enrollment,Masters,STEM,17,,,2,25,0.0 +27756,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,16,10000+,Public Sector,2,21,0.0 +25289,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,500-999,Pvt Ltd,1,80,0.0 +24610,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,Other,5,50-99,Pvt Ltd,1,72,0.0 +21463,city_123,0.738,Male,Has relevent experience,Full time course,Graduate,STEM,15,,,never,57,1.0 +24135,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,2,10/49,Pvt Ltd,1,246,1.0 +28434,city_160,0.92,,Has relevent experience,Part time course,Graduate,STEM,6,50-99,Funded Startup,1,23,0.0 +11371,city_149,0.6890000000000001,,Has relevent experience,Full time course,Graduate,STEM,6,50-99,Pvt Ltd,4,54,0.0 +1204,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Public Sector,1,140,1.0 +3140,city_27,0.848,,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,,,56,0.0 +8435,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,>20,,,>4,7,1.0 +9736,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,7,,,>4,109,1.0 +30228,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,10/49,,2,30,0.0 +4017,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,10/49,Early Stage Startup,2,43,0.0 +15154,city_78,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,10,1.0 +10764,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,2,188,0.0 +3630,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,Other,11,<10,Pvt Ltd,1,22,0.0 +713,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Other,2,122,0.0 +7551,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,3,<10,Funded Startup,1,60,0.0 +3334,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,20,,,>4,104,0.0 +23141,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,9,10000+,Pvt Ltd,1,16,0.0 +6380,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,2,22,0.0 +27653,city_89,0.925,Male,No relevent experience,Full time course,Graduate,Humanities,2,,,1,68,0.0 +8323,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,20,100-500,Pvt Ltd,2,56,0.0 +27027,city_123,0.738,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10000+,Pvt Ltd,1,17,1.0 +31044,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,192,0.0 +8177,city_173,0.878,,Has relevent experience,no_enrollment,High School,,6,,,1,85,0.0 +10789,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,5,500-999,Pvt Ltd,1,102,0.0 +979,city_12,0.64,Male,No relevent experience,no_enrollment,Graduate,STEM,12,100-500,Pvt Ltd,1,28,0.0 +26175,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,STEM,>20,,,>4,36,0.0 +9758,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,12,500-999,Pvt Ltd,1,19,0.0 +15504,city_136,0.897,,Has relevent experience,no_enrollment,Masters,STEM,6,10/49,Pvt Ltd,1,70,0.0 +14124,city_21,0.624,,No relevent experience,Full time course,High School,,3,,,,52,0.0 +26184,city_41,0.8270000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,6,1000-4999,Pvt Ltd,1,45,0.0 +8108,city_73,0.754,,Has relevent experience,Part time course,High School,,6,50-99,Pvt Ltd,1,77,0.0 +21063,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,11,100-500,NGO,>4,122,0.0 +18084,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,14,10000+,Pvt Ltd,3,102,1.0 +24726,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,500-999,Public Sector,2,54,1.0 +6844,city_21,0.624,Male,No relevent experience,no_enrollment,Primary School,,2,,,never,4,0.0 +25369,city_162,0.767,,Has relevent experience,no_enrollment,High School,,>20,50-99,Pvt Ltd,,102,0.0 +16390,city_43,0.516,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,never,43,0.0 +8719,city_65,0.802,,No relevent experience,no_enrollment,High School,,3,<10,,never,108,0.0 +24865,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,3,,,1,14,0.0 +25856,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,2,188,1.0 +2651,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Pvt Ltd,2,190,0.0 +982,city_40,0.7759999999999999,,No relevent experience,Part time course,Graduate,STEM,3,,,,34,1.0 +8877,city_30,0.698,Male,Has relevent experience,no_enrollment,Graduate,Arts,6,50-99,Pvt Ltd,>4,146,0.0 +800,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Pvt Ltd,3,21,0.0 +29191,city_46,0.762,Male,No relevent experience,no_enrollment,Graduate,Humanities,12,10000+,Public Sector,>4,51,0.0 +8673,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,3,74,0.0 +23598,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,63,0.0 +12764,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,4,130,0.0 +9158,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,,5000-9999,,1,13,1.0 +2476,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,23,0.0 +1087,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,500-999,Pvt Ltd,>4,163,0.0 +28876,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,>4,94,0.0 +6038,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,1,24,0.0 +16382,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,<1,10000+,Pvt Ltd,2,51,1.0 +5128,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,<1,,,never,25,0.0 +30551,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,Pvt Ltd,never,7,1.0 +25019,city_94,0.698,Male,No relevent experience,Part time course,Graduate,STEM,1,10/49,,1,55,0.0 +13608,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,46,0.0 +31055,city_103,0.92,Male,No relevent experience,Full time course,High School,,7,,,2,50,1.0 +17088,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,1,5000-9999,,never,3,1.0 +33105,city_116,0.743,Male,Has relevent experience,no_enrollment,High School,,12,100-500,Pvt Ltd,1,26,0.0 +4689,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,11,1000-4999,Pvt Ltd,3,23,0.0 +3785,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,17,100-500,NGO,>4,84,0.0 +8747,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,34,0.0 +32626,city_150,0.698,Other,Has relevent experience,,,,,10/49,,1,51,1.0 +27903,city_21,0.624,,No relevent experience,Full time course,High School,,3,,,never,99,1.0 +28895,city_150,0.698,,Has relevent experience,Part time course,,,>20,10/49,Pvt Ltd,1,236,0.0 +31617,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,100-500,Funded Startup,1,42,0.0 +16764,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,19,1.0 +32504,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,1,50-99,Pvt Ltd,,27,1.0 +11208,city_40,0.7759999999999999,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,1,127,1.0 +27039,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,16,0.0 +32228,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,3,54,0.0 +2845,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,10,500-999,Pvt Ltd,1,45,0.0 +16548,city_33,0.44799999999999995,,No relevent experience,Full time course,Graduate,STEM,<1,1000-4999,Public Sector,,15,1.0 +15281,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,>20,,,>4,9,0.0 +11454,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,155,0.0 +31904,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,16,,,>4,39,1.0 +20944,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,5,,,1,26,1.0 +9559,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,100,0.0 +7698,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Funded Startup,1,102,0.0 +6507,city_78,0.579,,No relevent experience,Full time course,High School,,3,,,never,94,0.0 +20372,city_143,0.74,,Has relevent experience,no_enrollment,,,14,10/49,Pvt Ltd,1,21,0.0 +9357,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,6,1000-4999,Pvt Ltd,1,262,0.0 +29953,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,8,1000-4999,Pvt Ltd,>4,34,0.0 +9943,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,28,0.0 +8706,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,>4,6,0.0 +13245,city_123,0.738,Male,Has relevent experience,no_enrollment,Masters,STEM,17,<10,,>4,48,0.0 +554,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,2,70,0.0 +12619,city_91,0.691,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Public Sector,2,78,0.0 +11419,city_99,0.915,Female,Has relevent experience,Part time course,Graduate,STEM,>20,100-500,Public Sector,2,105,0.0 +8362,city_104,0.924,Male,No relevent experience,Full time course,High School,,2,,,never,13,1.0 +26264,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,Public Sector,never,107,0.0 +23330,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,1,50-99,Early Stage Startup,never,27,0.0 +8575,city_136,0.897,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,43,0.0 +6949,city_21,0.624,Male,No relevent experience,Full time course,High School,,4,,,never,56,1.0 +12141,city_71,0.884,,No relevent experience,no_enrollment,Graduate,STEM,4,,,1,72,1.0 +23900,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,50-99,Pvt Ltd,>4,12,0.0 +13,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,78,0.0 +15206,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10000+,Pvt Ltd,1,5,0.0 +30476,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,3,73,0.0 +30765,city_139,0.48700000000000004,Female,Has relevent experience,,Masters,No Major,<1,,Pvt Ltd,never,12,1.0 +5635,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,1,17,0.0 +3444,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Pvt Ltd,1,146,0.0 +18123,city_65,0.802,Male,Has relevent experience,Full time course,Graduate,STEM,9,10000+,Pvt Ltd,1,136,0.0 +20605,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,,>4,68,0.0 +12527,city_83,0.9229999999999999,Other,Has relevent experience,no_enrollment,Masters,STEM,5,100-500,Pvt Ltd,1,178,0.0 +29744,city_105,0.794,Male,Has relevent experience,no_enrollment,Masters,STEM,4,<10,Pvt Ltd,1,59,0.0 +10913,city_136,0.897,Female,No relevent experience,no_enrollment,Phd,STEM,11,1000-4999,Pvt Ltd,1,150,0.0 +31463,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,1,,Pvt Ltd,never,16,1.0 +25684,city_173,0.878,Male,Has relevent experience,no_enrollment,High School,,6,50-99,,1,70,0.0 +5132,city_19,0.682,Male,No relevent experience,Full time course,Graduate,STEM,7,,Pvt Ltd,never,21,1.0 +15236,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,1,118,0.0 +25724,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,14,10000+,NGO,>4,88,0.0 +20589,city_21,0.624,Male,No relevent experience,Part time course,Masters,STEM,1,<10,Public Sector,never,53,0.0 +12965,city_103,0.92,,No relevent experience,Part time course,Primary School,,1,10000+,Pvt Ltd,never,156,0.0 +29037,city_103,0.92,Male,Has relevent experience,no_enrollment,,,>20,10000+,Pvt Ltd,>4,62,0.0 +22741,city_13,0.8270000000000001,,Has relevent experience,no_enrollment,High School,,>20,500-999,Pvt Ltd,4,30,1.0 +24132,city_21,0.624,Male,No relevent experience,Part time course,High School,,4,10/49,,1,143,0.0 +30815,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,1000-4999,Pvt Ltd,>4,40,0.0 +3318,city_16,0.91,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,,,>4,166,0.0 +22482,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,1,17,0.0 +20752,city_136,0.897,Male,No relevent experience,Part time course,,,2,10000+,Pvt Ltd,1,26,0.0 +26223,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,<1,500-999,Public Sector,1,18,1.0 +11523,city_100,0.887,,No relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,144,1.0 +12159,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,15,<10,,3,286,1.0 +22110,city_103,0.92,Female,Has relevent experience,Full time course,Masters,STEM,>20,,,3,80,0.0 +9277,city_84,0.698,Male,Has relevent experience,Full time course,High School,,4,50-99,Pvt Ltd,1,148,0.0 +11870,city_162,0.767,Male,Has relevent experience,Full time course,Graduate,STEM,6,,,2,42,1.0 +29568,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Funded Startup,1,43,0.0 +715,city_103,0.92,Female,Has relevent experience,Part time course,Graduate,STEM,8,100-500,Pvt Ltd,1,40,1.0 +21814,city_100,0.887,,Has relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,,,23,0.0 +20093,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,50-99,Funded Startup,3,46,0.0 +30239,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Funded Startup,1,84,0.0 +22307,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,10000+,Pvt Ltd,>4,28,0.0 +971,city_67,0.855,Male,Has relevent experience,Part time course,Graduate,STEM,3,5000-9999,Pvt Ltd,2,15,0.0 +12049,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,126,0.0 +25669,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,2,178,0.0 +19037,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,100-500,Pvt Ltd,1,34,0.0 +4278,city_16,0.91,Male,No relevent experience,,Graduate,Arts,>20,,,>4,22,1.0 +28246,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,6,5000-9999,,1,30,0.0 +17294,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,2,80,0.0 +31779,city_134,0.698,,Has relevent experience,no_enrollment,Masters,STEM,6,,,,36,0.0 +14482,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,1,20,0.0 +12837,city_103,0.92,,Has relevent experience,no_enrollment,High School,,10,,,1,6,0.0 +9233,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,NGO,1,26,0.0 +14372,city_160,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,52,0.0 +1280,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,1000-4999,Pvt Ltd,1,23,0.0 +24421,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,4,,,3,13,1.0 +23980,city_76,0.698,,No relevent experience,no_enrollment,Graduate,STEM,1,,,1,63,1.0 +27029,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,7,0.0 +2669,city_162,0.767,,No relevent experience,,,,<1,,Pvt Ltd,never,9,0.0 +2299,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,,10/49,,,182,1.0 +21445,city_21,0.624,,No relevent experience,no_enrollment,Graduate,Other,4,,Public Sector,,152,1.0 +19849,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,1,20,0.0 +25343,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,24,0.0 +86,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,100-500,Pvt Ltd,>4,81,0.0 +12392,city_16,0.91,,No relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,2,0.0 +2548,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,54,0.0 +24672,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,14,1000-4999,Pvt Ltd,>4,214,0.0 +21355,city_162,0.767,,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,2,28,0.0 +5574,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,1000-4999,Pvt Ltd,2,5,0.0 +11171,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,4,42,0.0 +29208,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,2,224,0.0 +21401,city_134,0.698,Male,Has relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Pvt Ltd,>4,128,0.0 +6690,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,52,0.0 +4473,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Funded Startup,2,75,1.0 +11879,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,No Major,8,1000-4999,Pvt Ltd,1,56,0.0 +32240,city_160,0.92,,No relevent experience,Full time course,High School,,<1,,,1,42,0.0 +31499,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,8,10/49,Early Stage Startup,never,34,0.0 +32012,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,12,1000-4999,Pvt Ltd,4,66,0.0 +12848,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,Pvt Ltd,3,83,0.0 +20503,city_102,0.804,Male,Has relevent experience,Full time course,Graduate,STEM,6,5000-9999,Pvt Ltd,1,32,0.0 +16825,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,64,0.0 +11562,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,10,,,4,244,0.0 +24141,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,4,25,0.0 +5343,city_97,0.925,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,58,0.0 +20801,city_21,0.624,Male,No relevent experience,no_enrollment,High School,,4,,,never,70,0.0 +29132,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,53,0.0 +2593,city_173,0.878,Male,Has relevent experience,no_enrollment,High School,,3,100-500,Pvt Ltd,1,5,0.0 +24478,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,1,96,0.0 +19223,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,1,45,0.0 +23989,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,1,18,1.0 +2467,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Funded Startup,1,130,0.0 +15791,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,>4,64,1.0 +28839,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,2,100-500,Pvt Ltd,2,52,0.0 +30483,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,5,,,1,50,0.0 +14955,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,Humanities,3,50-99,Pvt Ltd,1,164,0.0 +5836,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,3,17,1.0 +30218,city_179,0.512,Male,No relevent experience,no_enrollment,High School,,2,50-99,,1,156,1.0 +29777,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,3,34,0.0 +17220,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,3,270,1.0 +21450,city_28,0.9390000000000001,Male,Has relevent experience,Full time course,High School,,5,10000+,Pvt Ltd,2,66,0.0 +7216,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,86,0.0 +17785,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,2,64,0.0 +33275,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,9,,,1,12,0.0 +26460,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,<10,Pvt Ltd,>4,20,0.0 +10416,city_160,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,7,50-99,,1,146,0.0 +32301,city_136,0.897,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Early Stage Startup,1,260,0.0 +20968,city_136,0.897,,No relevent experience,Full time course,High School,,<1,,,never,40,0.0 +157,city_40,0.7759999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,never,42,0.0 +33022,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,2,10/49,Pvt Ltd,2,50,0.0 +14422,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,never,17,1.0 +22393,city_21,0.624,,Has relevent experience,Part time course,Graduate,STEM,8,1000-4999,Pvt Ltd,2,40,1.0 +2044,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,155,0.0 +22722,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,24,1.0 +32666,city_36,0.893,Female,No relevent experience,no_enrollment,Graduate,Humanities,5,,,>4,54,0.0 +25330,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,139,0.0 +26084,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,1,330,0.0 +22865,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,5,1000-4999,Pvt Ltd,1,9,0.0 +23209,city_160,0.92,Male,No relevent experience,Full time course,Masters,STEM,16,,,4,72,1.0 +11260,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,>20,10000+,Pvt Ltd,>4,116,0.0 +21467,city_159,0.843,,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,2,220,0.0 +1224,city_103,0.92,,No relevent experience,Full time course,Masters,STEM,10,10000+,Public Sector,,6,1.0 +3051,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,12,10/49,Pvt Ltd,>4,21,1.0 +30206,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10/49,Pvt Ltd,1,26,1.0 +13240,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,8,10000+,Pvt Ltd,1,32,0.0 +23136,city_103,0.92,,No relevent experience,no_enrollment,Graduate,,5,1000-4999,Pvt Ltd,>4,43,0.0 +26765,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,11,10000+,Pvt Ltd,3,104,0.0 +20535,city_138,0.836,Male,Has relevent experience,Full time course,High School,,9,50-99,Pvt Ltd,1,58,0.0 +13974,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,40,0.0 +19525,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,2,100,1.0 +26364,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,6,,,1,32,1.0 +24663,city_159,0.843,Male,No relevent experience,Full time course,High School,,2,,,2,48,0.0 +25145,city_77,0.83,Male,Has relevent experience,no_enrollment,Masters,STEM,13,,Pvt Ltd,1,157,0.0 +3512,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,2,39,0.0 +32031,city_103,0.92,Other,Has relevent experience,no_enrollment,Graduate,Other,>20,,,>4,34,1.0 +14314,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,30,0.0 +31938,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,1,170,0.0 +18914,city_103,0.92,Male,No relevent experience,Full time course,High School,,6,50-99,,1,8,1.0 +28058,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,4,15,1.0 +3273,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,>4,141,0.0 +25419,city_136,0.897,Male,Has relevent experience,no_enrollment,,,>20,10000+,Pvt Ltd,>4,52,0.0 +8463,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,>4,138,0.0 +6126,city_102,0.804,,Has relevent experience,no_enrollment,Masters,STEM,12,5000-9999,Pvt Ltd,1,111,0.0 +21158,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,3,54,0.0 +25347,city_11,0.55,,No relevent experience,Full time course,Graduate,,<1,50-99,Pvt Ltd,1,46,0.0 +11055,city_16,0.91,Male,No relevent experience,Full time course,High School,,6,,,never,78,0.0 +26030,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,21,0.0 +15323,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,11,,,2,18,1.0 +6915,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,STEM,17,100-500,NGO,>4,38,0.0 +27293,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Primary School,,13,<10,Funded Startup,4,32,1.0 +32299,city_21,0.624,Male,No relevent experience,Full time course,Masters,STEM,3,,,never,23,0.0 +4380,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,18,0.0 +721,city_46,0.762,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,,1,88,0.0 +21903,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,>20,,,>4,92,0.0 +29994,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,17,<10,Funded Startup,1,256,0.0 +635,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,3,258,0.0 +13219,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10/49,Funded Startup,1,161,0.0 +13340,city_157,0.769,,Has relevent experience,no_enrollment,Masters,STEM,9,500-999,Public Sector,1,38,0.0 +1511,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10/49,Funded Startup,1,102,0.0 +28072,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,1,146,1.0 +33087,city_71,0.884,Male,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,1,106,0.0 +27116,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,4,76,1.0 +25359,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,<10,Other,2,12,1.0 +30361,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,,,8,500-999,Pvt Ltd,4,82,0.0 +22637,city_16,0.91,Male,No relevent experience,Part time course,Masters,STEM,>20,10000+,Pvt Ltd,>4,26,0.0 +15893,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,5,0.0 +9467,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,60,0.0 +24918,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,5,10000+,,>4,46,0.0 +28960,city_74,0.579,Male,Has relevent experience,Part time course,Graduate,STEM,6,100-500,Funded Startup,1,17,1.0 +5872,city_28,0.9390000000000001,,Has relevent experience,Full time course,Graduate,STEM,15,100-500,Pvt Ltd,>4,28,0.0 +24849,city_89,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,,,1,116,1.0 +7918,city_90,0.698,,Has relevent experience,,Graduate,STEM,3,50-99,Pvt Ltd,never,52,0.0 +4319,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,222,0.0 +1711,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,No Major,3,<10,Pvt Ltd,1,67,0.0 +31936,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,16,100-500,Pvt Ltd,2,80,0.0 +15967,city_71,0.884,Male,No relevent experience,no_enrollment,Primary School,,<1,,,never,35,0.0 +19455,city_76,0.698,Male,No relevent experience,,,,<1,,,never,41,0.0 +18991,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,3,,,1,69,1.0 +19537,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,10/49,,1,64,1.0 +30315,city_162,0.767,,No relevent experience,no_enrollment,Graduate,Other,9,100-500,Public Sector,3,31,0.0 +12982,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Pvt Ltd,1,82,0.0 +30524,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,1,61,1.0 +30346,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,15,50-99,Pvt Ltd,1,75,0.0 +32948,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,33,0.0 +22023,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,Business Degree,17,,,>4,61,0.0 +993,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,2,58,0.0 +11952,city_24,0.698,,No relevent experience,Full time course,High School,,5,,,never,22,0.0 +5175,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,1,138,0.0 +24967,city_136,0.897,,No relevent experience,no_enrollment,Masters,STEM,1,<10,Funded Startup,1,16,1.0 +17622,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,13,10000+,Pvt Ltd,1,136,1.0 +5742,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,91,0.0 +28711,city_16,0.91,Male,Has relevent experience,Part time course,High School,,10,,,1,248,0.0 +32447,city_149,0.6890000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,12,<10,Public Sector,1,117,0.0 +21600,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,<10,Funded Startup,1,47,1.0 +7054,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Pvt Ltd,3,88,0.0 +29966,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Phd,Humanities,11,10000+,Pvt Ltd,>4,56,0.0 +17910,city_67,0.855,,No relevent experience,no_enrollment,Phd,Humanities,1,,,1,8,0.0 +13941,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,2,200,0.0 +2095,city_67,0.855,Male,No relevent experience,no_enrollment,Primary School,,9,,,4,62,0.0 +13978,city_65,0.802,,No relevent experience,Full time course,High School,,<1,,,1,73,1.0 +12887,city_84,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,6,,,1,13,1.0 +8166,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,14,100-500,NGO,1,47,0.0 +31243,city_11,0.55,Male,No relevent experience,Full time course,Masters,STEM,10,,,>4,57,1.0 +26217,city_160,0.92,Male,No relevent experience,no_enrollment,,,6,,,never,33,0.0 +25148,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,5000-9999,Pvt Ltd,2,174,0.0 +32476,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,>4,326,0.0 +10945,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,,,1,58,0.0 +16044,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Masters,Humanities,>20,10/49,Pvt Ltd,>4,47,0.0 +10852,city_14,0.698,,No relevent experience,no_enrollment,Graduate,Humanities,2,5000-9999,Public Sector,1,96,1.0 +1079,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,13,0.0 +31516,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,,>4,43,1.0 +24397,city_21,0.624,Female,No relevent experience,Full time course,Graduate,STEM,3,50-99,Pvt Ltd,3,86,0.0 +12066,city_128,0.527,,Has relevent experience,no_enrollment,High School,,4,100-500,Pvt Ltd,2,38,0.0 +17208,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,High School,,13,5000-9999,Pvt Ltd,>4,34,0.0 +33208,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,4,,,1,28,1.0 +5418,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,10,100-500,Public Sector,1,4,0.0 +24925,city_103,0.92,Male,No relevent experience,Full time course,Masters,STEM,>20,1000-4999,Public Sector,never,29,1.0 +28358,city_77,0.83,Male,Has relevent experience,Full time course,Graduate,STEM,6,100-500,Pvt Ltd,>4,40,0.0 +25052,city_23,0.899,Male,Has relevent experience,no_enrollment,High School,,4,<10,Early Stage Startup,never,45,0.0 +24543,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,,24,1.0 +10369,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,>4,58,0.0 +26247,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,,>4,127,0.0 +15850,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,43,0.0 +1732,city_70,0.698,Male,No relevent experience,Full time course,High School,,3,<10,Early Stage Startup,never,67,0.0 +9505,city_102,0.804,,Has relevent experience,no_enrollment,Graduate,STEM,7,,,1,47,0.0 +15616,city_36,0.893,,Has relevent experience,no_enrollment,High School,,>20,100-500,Pvt Ltd,>4,12,0.0 +26254,city_134,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,1,48,1.0 +22162,city_73,0.754,Male,Has relevent experience,Part time course,High School,,7,,Pvt Ltd,2,3,1.0 +25026,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Pvt Ltd,1,53,0.0 +30064,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,never,35,1.0 +9972,city_91,0.691,,Has relevent experience,no_enrollment,Graduate,Humanities,16,,,3,15,0.0 +16122,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,19,10000+,Pvt Ltd,3,46,0.0 +11599,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,1,28,0.0 +2025,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,8,,,never,31,1.0 +23102,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,43,0.0 +19925,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,19,100-500,Funded Startup,1,60,0.0 +17617,city_50,0.8959999999999999,Male,No relevent experience,no_enrollment,,,12,,,1,165,1.0 +2197,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10/49,Pvt Ltd,>4,97,0.0 +12762,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,<10,Early Stage Startup,1,15,0.0 +5035,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,1,33,0.0 +7971,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,22,0.0 +2693,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,STEM,9,5000-9999,Pvt Ltd,1,17,0.0 +27619,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,NGO,4,32,0.0 +16265,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,>4,80,0.0 +24386,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,15,10/49,Pvt Ltd,1,63,0.0 +6310,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,25,1.0 +22337,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,2,102,0.0 +26059,city_57,0.866,Male,Has relevent experience,Part time course,High School,,4,50-99,Pvt Ltd,1,69,0.0 +2552,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,12,,,>4,16,0.0 +21258,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Early Stage Startup,1,35,0.0 +7334,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,3,43,0.0 +1971,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,No Major,17,50-99,Early Stage Startup,>4,52,0.0 +25719,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,2,<10,Early Stage Startup,1,26,0.0 +19307,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,2,24,0.0 +25611,city_21,0.624,,No relevent experience,,Graduate,STEM,2,,,never,180,1.0 +24033,city_90,0.698,Male,No relevent experience,Part time course,Graduate,STEM,5,50-99,,1,20,0.0 +3143,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Pvt Ltd,3,33,1.0 +12090,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,,,5,,,never,108,0.0 +17004,city_136,0.897,Male,Has relevent experience,Part time course,Masters,STEM,7,<10,Pvt Ltd,1,232,0.0 +26556,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,Other,16,50-99,Pvt Ltd,>4,62,0.0 +15834,city_104,0.924,,No relevent experience,,,,5,,,never,30,0.0 +31743,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,9,,,1,74,0.0 +32071,city_16,0.91,Male,No relevent experience,Full time course,Graduate,STEM,4,50-99,Pvt Ltd,1,9,1.0 +32140,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,82,0.0 +16628,city_128,0.527,,No relevent experience,no_enrollment,Graduate,Other,4,,,1,79,1.0 +13727,city_173,0.878,Male,Has relevent experience,,High School,,5,50-99,Pvt Ltd,1,36,0.0 +27798,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,1,60,0.0 +12901,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,40,0.0 +29153,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Early Stage Startup,1,127,0.0 +24330,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,Pvt Ltd,1,6,1.0 +30790,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,500-999,Pvt Ltd,2,10,1.0 +27229,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,8,100-500,Funded Startup,2,262,0.0 +29352,city_21,0.624,Female,No relevent experience,Full time course,Masters,STEM,2,,,1,104,1.0 +25818,city_67,0.855,Male,Has relevent experience,no_enrollment,High School,,16,,,1,28,0.0 +22109,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Early Stage Startup,never,68,1.0 +17032,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,,,2,12,0.0 +11603,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,7,100-500,Funded Startup,1,110,0.0 +6443,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,100-500,Public Sector,3,238,0.0 +11268,city_142,0.727,,Has relevent experience,Full time course,High School,,4,,,never,143,0.0 +13889,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Funded Startup,1,48,0.0 +20228,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,25,0.0 +21768,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,>4,22,1.0 +13206,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,3,,Pvt Ltd,1,11,0.0 +10196,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,16,500-999,Pvt Ltd,3,46,0.0 +26164,city_143,0.74,Male,Has relevent experience,no_enrollment,Masters,STEM,1,50-99,Pvt Ltd,1,28,1.0 +1240,city_157,0.769,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,,3,33,0.0 +1806,city_165,0.903,,Has relevent experience,no_enrollment,,,9,,Pvt Ltd,never,98,0.0 +20464,city_24,0.698,Male,No relevent experience,no_enrollment,High School,,>20,100-500,Pvt Ltd,>4,87,0.0 +5043,city_162,0.767,,Has relevent experience,Full time course,Masters,STEM,18,,,1,35,0.0 +12529,city_71,0.884,,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Public Sector,>4,96,0.0 +7933,city_21,0.624,Female,No relevent experience,Full time course,Graduate,STEM,3,,,1,90,1.0 +30556,city_74,0.579,Female,Has relevent experience,Part time course,Graduate,STEM,5,100-500,Pvt Ltd,1,20,0.0 +2838,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,<10,Pvt Ltd,1,73,0.0 +26948,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,1,19,0.0 +24169,city_136,0.897,,Has relevent experience,Full time course,Masters,STEM,14,<10,Pvt Ltd,>4,33,0.0 +26496,city_94,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,2,0.0 +21543,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,1,30,1.0 +30491,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,4,27,0.0 +11189,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,,>4,122,0.0 +21233,city_160,0.92,Male,No relevent experience,Part time course,Graduate,STEM,9,,,2,55,1.0 +7631,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,9,,,>4,4,0.0 +2160,city_13,0.8270000000000001,Male,No relevent experience,Full time course,Masters,STEM,6,,,1,60,1.0 +11616,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,11,,,never,23,1.0 +12543,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,15,1000-4999,Public Sector,>4,29,0.0 +32164,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,100-500,Funded Startup,1,36,0.0 +23512,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,33,0.0 +26352,city_16,0.91,Male,Has relevent experience,no_enrollment,Primary School,,7,500-999,Pvt Ltd,never,12,0.0 +27533,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,20,0.0 +7512,city_67,0.855,Male,No relevent experience,Full time course,High School,,2,,,never,22,0.0 +2284,city_28,0.9390000000000001,Male,No relevent experience,Part time course,High School,,4,10/49,Pvt Ltd,1,12,0.0 +24064,city_21,0.624,,Has relevent experience,,Masters,STEM,13,,,1,68,1.0 +17489,city_19,0.682,Male,Has relevent experience,Full time course,Graduate,STEM,8,10/49,Pvt Ltd,1,47,0.0 +7285,city_93,0.865,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10/49,Funded Startup,2,36,0.0 +18848,city_41,0.8270000000000001,Male,Has relevent experience,Full time course,High School,,6,<10,Other,1,160,0.0 +30026,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,5000-9999,Pvt Ltd,>4,86,0.0 +27804,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,4,0.0 +16092,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,2,102,0.0 +15471,city_89,0.925,Male,No relevent experience,Full time course,High School,,<1,,,never,204,0.0 +3236,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Pvt Ltd,4,114,0.0 +9540,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,46,0.0 +8445,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,>4,99,0.0 +2719,city_120,0.78,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,1,178,0.0 +30188,city_71,0.884,Male,No relevent experience,Full time course,Graduate,STEM,7,,,never,38,1.0 +1073,city_23,0.899,Male,Has relevent experience,no_enrollment,High School,,14,<10,Early Stage Startup,4,194,0.0 +14918,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,3,10/49,Pvt Ltd,1,85,0.0 +3467,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,2,64,0.0 +8443,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,16,,,1,8,0.0 +15891,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,18,0.0 +26662,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,500-999,Pvt Ltd,>4,18,0.0 +52,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,14,100-500,Pvt Ltd,3,55,0.0 +22064,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,5,,,never,80,0.0 +20734,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,17,50-99,Funded Startup,2,112,0.0 +5669,city_123,0.738,,Has relevent experience,no_enrollment,Phd,STEM,12,50-99,Pvt Ltd,1,80,0.0 +9219,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,2,50-99,Pvt Ltd,2,264,0.0 +1243,city_103,0.92,Male,Has relevent experience,no_enrollment,Primary School,,12,100-500,Pvt Ltd,2,49,0.0 +27713,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,16,,,never,17,1.0 +4437,city_21,0.624,,No relevent experience,Full time course,High School,,1,,Pvt Ltd,never,73,0.0 +31863,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,5,,,2,22,1.0 +17456,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,High School,,5,,,1,35,0.0 +24933,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,10,500-999,Public Sector,4,33,1.0 +23982,city_14,0.698,Female,Has relevent experience,no_enrollment,Graduate,Other,7,,,never,17,1.0 +21273,city_165,0.903,,No relevent experience,no_enrollment,Graduate,STEM,3,,,2,113,0.0 +19062,city_19,0.682,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,2,224,0.0 +5545,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,1,19,0.0 +23950,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,Humanities,5,50-99,Pvt Ltd,1,12,0.0 +33109,city_104,0.924,,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Early Stage Startup,1,48,0.0 +15825,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,91,0.0 +20336,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,,,1,5,0.0 +26869,city_70,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,50-99,Early Stage Startup,2,192,1.0 +9913,city_160,0.92,,Has relevent experience,Full time course,Graduate,STEM,18,,,2,24,1.0 +32978,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Business Degree,11,5000-9999,Pvt Ltd,1,10,0.0 +29528,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Funded Startup,1,34,0.0 +7057,city_81,0.73,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Public Sector,1,47,1.0 +9611,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Other,6,,,2,56,1.0 +29876,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Other,>4,44,0.0 +24206,city_73,0.754,Male,Has relevent experience,Part time course,High School,,5,10/49,,2,82,0.0 +33362,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,1,100,0.0 +26579,city_1,0.847,Male,No relevent experience,Full time course,Graduate,No Major,9,,,never,11,1.0 +17488,city_123,0.738,Male,No relevent experience,Full time course,Masters,STEM,1,,,1,26,1.0 +13048,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,4,8,0.0 +5950,city_21,0.624,Female,Has relevent experience,Full time course,Masters,STEM,2,500-999,Pvt Ltd,never,15,0.0 +16029,city_104,0.924,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,>4,34,0.0 +22009,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,7,50-99,Early Stage Startup,1,46,0.0 +22284,city_103,0.92,,No relevent experience,no_enrollment,High School,,2,,,,131,0.0 +28651,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,No Major,14,<10,Early Stage Startup,1,156,0.0 +25568,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,5,,,never,44,0.0 +15594,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,2,50-99,Funded Startup,1,176,0.0 +11116,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,4,125,1.0 +23954,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,4,,,never,51,0.0 +30562,city_90,0.698,,Has relevent experience,Part time course,Graduate,STEM,7,50-99,,1,42,0.0 +32131,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,,,1,51,0.0 +32416,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,100-500,Pvt Ltd,1,102,0.0 +8703,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,5,0.0 +27906,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,1,63,0.0 +13261,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,14,1.0 +32716,city_103,0.92,,Has relevent experience,no_enrollment,Phd,STEM,17,50-99,Pvt Ltd,1,336,0.0 +7306,city_104,0.924,Male,Has relevent experience,no_enrollment,High School,,15,,,>4,50,0.0 +23819,city_136,0.897,Male,No relevent experience,Part time course,Graduate,STEM,3,,,1,78,1.0 +31042,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,14,,,2,46,1.0 +11671,city_1,0.847,,No relevent experience,Full time course,Graduate,STEM,6,50-99,,1,122,0.0 +28201,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Phd,STEM,11,,Public Sector,>4,24,0.0 +119,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,9,10/49,,2,50,0.0 +16818,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,38,0.0 +25632,city_162,0.767,,Has relevent experience,no_enrollment,Masters,STEM,9,,,4,61,0.0 +9532,city_160,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,2,10/49,Pvt Ltd,2,72,0.0 +18760,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,,,1,24,1.0 +14323,city_75,0.9390000000000001,,Has relevent experience,Full time course,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,6,0.0 +5044,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Arts,18,10/49,Pvt Ltd,4,20,0.0 +33212,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,161,1.0 +31851,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,>4,122,1.0 +4646,city_128,0.527,,Has relevent experience,Part time course,High School,,2,,,,50,1.0 +16806,city_133,0.742,,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,2,106,1.0 +29661,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Humanities,<1,,,never,98,1.0 +21079,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,NGO,1,17,0.0 +12647,city_180,0.698,,No relevent experience,no_enrollment,Graduate,STEM,3,<10,Pvt Ltd,2,43,0.0 +4929,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,100-500,Pvt Ltd,1,16,1.0 +25334,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,4,19,0.0 +12661,city_75,0.9390000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,19,,,>4,112,0.0 +18952,city_114,0.9259999999999999,Male,No relevent experience,Full time course,Graduate,Business Degree,7,<10,Pvt Ltd,2,85,0.0 +10771,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,10/49,Pvt Ltd,2,9,0.0 +19971,city_104,0.924,Male,Has relevent experience,no_enrollment,High School,,>20,10/49,Pvt Ltd,3,106,0.0 +4739,city_16,0.91,Male,Has relevent experience,no_enrollment,,,3,<10,Pvt Ltd,1,51,1.0 +16565,city_36,0.893,Male,Has relevent experience,no_enrollment,High School,,5,50-99,Pvt Ltd,never,102,0.0 +32120,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,1,13,0.0 +11182,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,11,50-99,Pvt Ltd,2,35,0.0 +11810,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,8,,,2,72,0.0 +1809,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,5,,,2,194,1.0 +30204,city_103,0.92,Female,No relevent experience,Full time course,Graduate,STEM,4,,,1,52,1.0 +24440,city_104,0.924,Male,No relevent experience,Full time course,High School,,3,10/49,,1,155,0.0 +24413,city_21,0.624,Male,No relevent experience,Full time course,High School,,8,,,never,46,1.0 +30731,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,41,0.0 +13308,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,11,1000-4999,Pvt Ltd,1,25,1.0 +2412,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,12,<10,Funded Startup,2,113,0.0 +10004,city_67,0.855,Male,Has relevent experience,no_enrollment,Phd,STEM,12,,,1,45,0.0 +19449,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,7,100-500,Pvt Ltd,4,82,0.0 +22721,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,>4,298,1.0 +5324,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,14,10000+,Pvt Ltd,1,246,0.0 +633,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,10/49,Pvt Ltd,2,44,0.0 +32878,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,17,10000+,Pvt Ltd,3,26,0.0 +4195,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Public Sector,1,168,0.0 +24785,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,4,10000+,Public Sector,1,33,0.0 +29778,city_103,0.92,,No relevent experience,no_enrollment,Graduate,Humanities,1,100-500,Pvt Ltd,1,5,0.0 +18770,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,2,13,0.0 +29225,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,1,30,0.0 +289,city_160,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,7,,,2,122,0.0 +23015,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,4,<10,Pvt Ltd,2,166,0.0 +13909,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,7,100-500,Pvt Ltd,>4,31,0.0 +23888,city_10,0.895,Male,No relevent experience,no_enrollment,Primary School,,7,,,never,232,0.0 +17996,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,,never,28,0.0 +11313,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,25,0.0 +21119,city_41,0.8270000000000001,Male,No relevent experience,Full time course,High School,,6,,,1,37,0.0 +7283,city_90,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,10,,,1,2,1.0 +5034,city_105,0.794,Male,No relevent experience,no_enrollment,Graduate,Humanities,<1,,,never,8,0.0 +9814,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,NGO,1,47,0.0 +11305,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,166,1.0 +9070,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,5,500-999,Pvt Ltd,2,131,0.0 +23302,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,12,1.0 +17469,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,5,,,never,10,1.0 +13084,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Funded Startup,1,69,0.0 +18823,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Pvt Ltd,1,24,0.0 +20593,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,3,70,0.0 +30436,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Other,6,10000+,Pvt Ltd,1,12,0.0 +32957,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,4,1000-4999,Pvt Ltd,2,106,0.0 +31993,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Arts,16,,,>4,35,1.0 +15036,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,,,never,18,0.0 +6517,city_19,0.682,Male,No relevent experience,no_enrollment,Graduate,STEM,3,100-500,NGO,never,113,0.0 +15008,city_61,0.9129999999999999,Male,No relevent experience,Full time course,Graduate,Other,1,,,1,112,0.0 +8299,city_103,0.92,,No relevent experience,Part time course,Graduate,STEM,10,10000+,Pvt Ltd,4,9,0.0 +3401,city_57,0.866,Male,Has relevent experience,Part time course,Graduate,STEM,4,50-99,,1,33,0.0 +29053,city_103,0.92,Male,No relevent experience,no_enrollment,Masters,Humanities,3,,,3,31,1.0 +21517,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,>4,28,0.0 +7299,city_138,0.836,Male,No relevent experience,no_enrollment,Primary School,,1,,,never,17,0.0 +19590,city_90,0.698,,Has relevent experience,Full time course,Masters,STEM,7,100-500,Pvt Ltd,2,38,0.0 +33237,city_114,0.9259999999999999,Male,Has relevent experience,Part time course,Graduate,Arts,14,<10,Pvt Ltd,3,60,0.0 +29857,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,1000-4999,Pvt Ltd,>4,105,0.0 +2403,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,2,9,0.0 +14109,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,11,100-500,Pvt Ltd,1,19,0.0 +2479,city_57,0.866,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,1,33,0.0 +32448,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,1,53,0.0 +9905,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,4,266,0.0 +27781,city_67,0.855,Male,No relevent experience,no_enrollment,High School,,<1,,,never,37,0.0 +14812,city_73,0.754,,No relevent experience,no_enrollment,Graduate,STEM,19,500-999,Pvt Ltd,>4,41,0.0 +18804,city_57,0.866,Male,Has relevent experience,Full time course,Masters,STEM,10,500-999,Pvt Ltd,1,163,0.0 +6508,city_115,0.789,,Has relevent experience,no_enrollment,Graduate,STEM,19,10000+,Pvt Ltd,>4,18,1.0 +3409,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Funded Startup,2,61,0.0 +10931,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,3,77,0.0 +20672,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,1,316,0.0 +30744,city_103,0.92,Male,No relevent experience,Full time course,High School,,<1,10/49,NGO,1,87,1.0 +11874,city_28,0.9390000000000001,Male,No relevent experience,Full time course,Graduate,STEM,7,,,2,78,1.0 +3720,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,2,90,0.0 +8826,city_65,0.802,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,41,0.0 +9923,city_136,0.897,Male,No relevent experience,no_enrollment,Masters,STEM,11,10/49,Pvt Ltd,4,106,0.0 +32937,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,16,50-99,Pvt Ltd,>4,146,0.0 +30134,city_136,0.897,,No relevent experience,no_enrollment,High School,,4,,,3,17,0.0 +13708,city_114,0.9259999999999999,,No relevent experience,Full time course,Graduate,STEM,3,,,,17,1.0 +18086,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,Humanities,<1,50-99,Pvt Ltd,1,4,0.0 +24223,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,7,500-999,Pvt Ltd,1,35,1.0 +23712,city_143,0.74,Male,No relevent experience,no_enrollment,Masters,STEM,14,1000-4999,NGO,3,96,0.0 +3292,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Funded Startup,1,50,0.0 +28306,city_99,0.915,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,5000-9999,Public Sector,1,113,0.0 +1934,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,7,10/49,Funded Startup,2,151,1.0 +32818,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,Other,2,10/49,Pvt Ltd,1,40,0.0 +32065,city_173,0.878,Male,Has relevent experience,no_enrollment,High School,,6,50-99,Pvt Ltd,1,29,1.0 +30469,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,18,,,1,92,0.0 +23154,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,>4,29,0.0 +23487,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Humanities,>20,,,never,42,0.0 +17737,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,2,38,1.0 +19629,city_136,0.897,,No relevent experience,Part time course,Masters,STEM,7,10/49,,1,16,0.0 +15096,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,17,,,>4,10,1.0 +67,city_16,0.91,,Has relevent experience,no_enrollment,Phd,Arts,10,<10,NGO,1,17,0.0 +12894,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,4,50-99,Funded Startup,1,52,0.0 +5267,city_105,0.794,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,2,17,0.0 +13093,city_100,0.887,,No relevent experience,no_enrollment,High School,,4,,,never,148,0.0 +32611,city_138,0.836,Male,No relevent experience,,High School,,9,,,never,36,0.0 +343,city_103,0.92,Male,Has relevent experience,Full time course,High School,,4,,,1,116,0.0 +22084,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,High School,,9,,,never,13,0.0 +19214,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,3,50-99,Pvt Ltd,never,168,1.0 +23398,city_36,0.893,,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Funded Startup,1,45,0.0 +27503,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,1000-4999,Pvt Ltd,2,139,0.0 +29444,city_103,0.92,Male,No relevent experience,no_enrollment,Phd,STEM,10,50-99,Public Sector,1,10,1.0 +18277,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,10000+,Pvt Ltd,>4,18,0.0 +664,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,4,56,0.0 +21101,city_57,0.866,Male,No relevent experience,Full time course,Graduate,STEM,2,,,1,42,0.0 +20929,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,5,100-500,Pvt Ltd,2,11,1.0 +28882,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,Business Degree,>20,,,1,25,1.0 +10566,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,15,10000+,Pvt Ltd,2,156,1.0 +26717,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,10000+,Pvt Ltd,>4,24,0.0 +23306,city_21,0.624,Male,No relevent experience,Full time course,High School,,7,,,never,17,1.0 +26991,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Early Stage Startup,1,15,0.0 +10743,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,2,50-99,Pvt Ltd,1,31,0.0 +20366,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,1,24,1.0 +25400,city_61,0.9129999999999999,,No relevent experience,Full time course,High School,,2,,,never,32,0.0 +23058,city_160,0.92,Female,No relevent experience,no_enrollment,Graduate,Humanities,2,,,1,75,1.0 +6541,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,>4,5,0.0 +2243,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,50-99,Pvt Ltd,never,58,0.0 +29656,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,Arts,3,,,never,9,1.0 +28364,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,3,10/49,Pvt Ltd,1,65,0.0 +18602,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10/49,Pvt Ltd,1,21,1.0 +1956,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,2,<10,Pvt Ltd,2,102,0.0 +25537,city_104,0.924,Male,Has relevent experience,no_enrollment,High School,,>20,1000-4999,Pvt Ltd,2,83,0.0 +9730,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,,,2,20,1.0 +21221,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,3,64,0.0 +1911,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,<10,Pvt Ltd,2,36,1.0 +12428,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,10,10000+,Pvt Ltd,2,9,1.0 +14858,city_114,0.9259999999999999,,No relevent experience,Part time course,Graduate,STEM,<1,1000-4999,Pvt Ltd,,7,0.0 +10451,city_21,0.624,,No relevent experience,,,,5,,,never,45,1.0 +7291,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,4,23,0.0 +888,city_160,0.92,,No relevent experience,Full time course,Graduate,STEM,5,,,1,117,1.0 +8961,city_74,0.579,Male,No relevent experience,no_enrollment,Graduate,Other,6,100-500,Pvt Ltd,2,5,0.0 +30938,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,9,500-999,Funded Startup,2,80,0.0 +31314,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,2,<10,Early Stage Startup,2,81,0.0 +1944,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,4,<10,Early Stage Startup,1,23,1.0 +25501,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,5,,,1,96,1.0 +29458,city_71,0.884,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,64,1.0 +4241,city_160,0.92,Male,No relevent experience,Full time course,High School,,5,,,1,17,1.0 +32998,city_28,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,Business Degree,14,1000-4999,Pvt Ltd,>4,100,0.0 +27914,city_28,0.9390000000000001,Male,No relevent experience,Part time course,High School,,2,10/49,Pvt Ltd,1,90,0.0 +15528,city_173,0.878,Male,Has relevent experience,no_enrollment,Primary School,,5,5000-9999,Pvt Ltd,2,74,0.0 +31430,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,13,0.0 +4574,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,100-500,Pvt Ltd,>4,72,0.0 +8603,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,7,,,>4,32,1.0 +29514,city_104,0.924,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,96,1.0 +10867,city_114,0.9259999999999999,,No relevent experience,,High School,,2,,,never,60,0.0 +21252,city_106,0.698,Male,No relevent experience,Part time course,Graduate,STEM,5,,,3,22,1.0 +9,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,2,1.0 +23585,city_159,0.843,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Pvt Ltd,>4,123,0.0 +3940,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,7,50-99,Pvt Ltd,2,180,0.0 +28426,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,1,19,0.0 +31486,city_69,0.856,Male,Has relevent experience,Part time course,Graduate,STEM,3,50-99,Pvt Ltd,2,182,1.0 +18143,city_41,0.8270000000000001,Male,Has relevent experience,Part time course,Graduate,STEM,4,50-99,,2,92,0.0 +18583,city_162,0.767,,Has relevent experience,Part time course,Graduate,STEM,8,100-500,NGO,1,24,0.0 +26290,city_103,0.92,Female,No relevent experience,Part time course,High School,,4,,,1,74,1.0 +1119,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,1,88,0.0 +16002,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,8,50-99,Pvt Ltd,4,79,0.0 +13676,city_165,0.903,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,3,55,0.0 +27859,city_160,0.92,,No relevent experience,no_enrollment,Graduate,Business Degree,4,50-99,Funded Startup,1,23,0.0 +15262,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,10/49,Funded Startup,2,18,0.0 +21582,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,>4,131,1.0 +29141,city_64,0.6659999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,<10,Pvt Ltd,1,98,1.0 +13812,city_10,0.895,Male,No relevent experience,no_enrollment,Phd,STEM,>20,100-500,Public Sector,>4,24,0.0 +25490,city_23,0.899,Male,Has relevent experience,Full time course,High School,,2,10/49,Pvt Ltd,never,25,0.0 +2435,city_100,0.887,Male,Has relevent experience,no_enrollment,High School,,17,100-500,Pvt Ltd,1,133,0.0 +18326,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,2,,,2,25,1.0 +32146,city_16,0.91,Male,No relevent experience,no_enrollment,Masters,STEM,8,1000-4999,Pvt Ltd,1,33,0.0 +23320,city_21,0.624,,No relevent experience,Full time course,Masters,STEM,1,,,1,82,1.0 +27777,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,10000+,Pvt Ltd,,82,1.0 +15669,city_145,0.555,,Has relevent experience,Full time course,Graduate,STEM,4,,,never,2,1.0 +26348,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,High School,,13,50-99,Pvt Ltd,1,10,0.0 +32176,city_103,0.92,Other,No relevent experience,Part time course,Graduate,STEM,2,<10,Other,2,45,1.0 +16257,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,No Major,16,,,3,58,0.0 +15667,city_114,0.9259999999999999,Male,Has relevent experience,,Graduate,STEM,10,10000+,Pvt Ltd,1,262,0.0 +25232,city_16,0.91,,Has relevent experience,,,,15,,,never,9,0.0 +32684,city_91,0.691,Male,Has relevent experience,,Graduate,Humanities,11,,,1,20,1.0 +19207,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,9,100-500,Funded Startup,4,36,0.0 +3461,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,>4,45,0.0 +17573,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,13,100-500,Pvt Ltd,3,28,0.0 +26299,city_136,0.897,Male,No relevent experience,Part time course,Graduate,STEM,3,,,1,23,0.0 +25172,city_173,0.878,,No relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,106,0.0 +13018,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,10000+,Pvt Ltd,>4,4,0.0 +13359,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,7,5000-9999,Pvt Ltd,>4,7,1.0 +16609,city_16,0.91,Female,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,1,4,0.0 +31682,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,6,50-99,Pvt Ltd,2,12,0.0 +12073,city_145,0.555,Male,Has relevent experience,no_enrollment,Graduate,Arts,2,100-500,Early Stage Startup,1,20,0.0 +14219,city_73,0.754,,Has relevent experience,Part time course,Masters,STEM,13,50-99,Pvt Ltd,1,37,1.0 +28966,city_89,0.925,Male,No relevent experience,no_enrollment,Masters,STEM,13,100-500,Funded Startup,1,292,0.0 +4698,city_84,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,,,1,68,0.0 +29801,city_73,0.754,Male,No relevent experience,Part time course,Graduate,STEM,5,,,1,80,1.0 +10467,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Public Sector,>4,42,0.0 +29160,city_71,0.884,Male,No relevent experience,Part time course,Masters,STEM,5,,,1,23,1.0 +18844,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,47,0.0 +21882,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,11,10000+,Pvt Ltd,1,8,0.0 +21404,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,1,20,0.0 +32093,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,3,10/49,Funded Startup,1,152,0.0 +11012,city_73,0.754,Male,Has relevent experience,no_enrollment,High School,,>20,,,never,112,0.0 +30566,city_141,0.763,,No relevent experience,no_enrollment,High School,,<1,,,never,28,0.0 +4430,city_143,0.74,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,<10,Pvt Ltd,2,57,0.0 +8638,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,50-99,Funded Startup,3,24,0.0 +16788,city_109,0.701,,No relevent experience,no_enrollment,,,<1,,,never,112,0.0 +19574,city_28,0.9390000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,8,10000+,,>4,68,0.0 +16115,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,,,2,104,0.0 +17863,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,94,1.0 +17942,city_67,0.855,Female,Has relevent experience,Full time course,Graduate,STEM,8,50-99,Pvt Ltd,2,66,0.0 +21207,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,5,50-99,Pvt Ltd,2,56,0.0 +19804,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,10,5000-9999,Pvt Ltd,1,23,0.0 +3080,city_160,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,10000+,Pvt Ltd,4,90,0.0 +18439,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,5,<10,Pvt Ltd,never,6,0.0 +17564,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,1000-4999,Pvt Ltd,2,63,0.0 +14094,city_65,0.802,Male,Has relevent experience,Part time course,High School,,11,<10,Pvt Ltd,1,55,0.0 +29548,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,98,0.0 +1868,city_162,0.767,Female,Has relevent experience,no_enrollment,Graduate,STEM,7,10/49,Pvt Ltd,1,17,1.0 +1646,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,6,1000-4999,Pvt Ltd,1,7,0.0 +12501,city_21,0.624,Male,No relevent experience,no_enrollment,Masters,STEM,15,5000-9999,Pvt Ltd,>4,46,1.0 +33082,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,,,6,10/49,Pvt Ltd,1,52,0.0 +22159,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,12,1000-4999,Pvt Ltd,1,51,0.0 +20406,city_21,0.624,,No relevent experience,Part time course,High School,,1,,,never,232,0.0 +4638,city_11,0.55,Male,Has relevent experience,Part time course,High School,,4,,,1,32,1.0 +33084,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,50-99,Funded Startup,2,90,0.0 +22267,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,24,0.0 +27486,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,10,,,never,10,0.0 +445,city_162,0.767,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,500-999,Pvt Ltd,>4,26,0.0 +30337,city_21,0.624,Male,No relevent experience,Full time course,High School,,3,,,never,151,1.0 +21311,city_21,0.624,Female,No relevent experience,no_enrollment,Masters,STEM,<1,10/49,Pvt Ltd,1,6,1.0 +10964,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,3,,,never,29,0.0 +28510,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,1000-4999,Pvt Ltd,1,30,0.0 +21481,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,3,164,1.0 +9235,city_21,0.624,Male,No relevent experience,,Graduate,STEM,3,,,1,42,0.0 +11975,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,8,50-99,Pvt Ltd,>4,41,0.0 +1871,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,3,50-99,Pvt Ltd,1,79,0.0 +22483,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,92,0.0 +18031,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,,,>4,35,1.0 +28811,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,,,1,134,1.0 +26049,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,1,,,never,176,1.0 +7523,city_67,0.855,Male,No relevent experience,Full time course,High School,,7,,,never,89,0.0 +30321,city_36,0.893,Male,No relevent experience,Full time course,Graduate,STEM,11,10000+,Pvt Ltd,1,16,0.0 +10780,city_102,0.804,Male,No relevent experience,no_enrollment,,,2,,,never,74,0.0 +6885,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,2,39,0.0 +24855,city_115,0.789,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Public Sector,1,4,0.0 +15314,city_1,0.847,Male,No relevent experience,Full time course,Graduate,STEM,5,100-500,Pvt Ltd,1,13,0.0 +27500,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,100-500,Pvt Ltd,2,55,0.0 +7936,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,2,124,0.0 +21405,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,1,8,0.0 +22432,city_123,0.738,Male,Has relevent experience,no_enrollment,Masters,STEM,10,5000-9999,Pvt Ltd,>4,55,0.0 +7781,city_162,0.767,Male,No relevent experience,Full time course,High School,,7,,,1,12,0.0 +20524,city_50,0.8959999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,21,0.0 +24615,city_103,0.92,Female,No relevent experience,no_enrollment,Phd,STEM,17,100-500,NGO,4,16,0.0 +20455,city_21,0.624,,No relevent experience,Full time course,High School,,9,,,1,68,1.0 +31515,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10/49,Pvt Ltd,>4,110,0.0 +10315,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,1,82,0.0 +22588,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,100-500,Pvt Ltd,1,39,0.0 +24086,city_57,0.866,Male,No relevent experience,no_enrollment,Graduate,STEM,10,,,1,50,0.0 +6725,city_128,0.527,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,4,36,1.0 +20820,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,16,100-500,Pvt Ltd,>4,8,1.0 +23250,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,4,35,0.0 +7935,city_67,0.855,Male,Has relevent experience,no_enrollment,Graduate,STEM,<1,,,1,41,0.0 +13568,city_100,0.887,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,500-999,Pvt Ltd,2,17,0.0 +1477,city_162,0.767,Male,Has relevent experience,no_enrollment,Phd,STEM,>20,10000+,Pvt Ltd,1,34,0.0 +9019,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Arts,4,10/49,Pvt Ltd,3,87,0.0 +19257,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Business Degree,18,,,>4,38,0.0 +738,city_23,0.899,,Has relevent experience,Part time course,High School,,10,10000+,Public Sector,>4,66,0.0 +30620,city_138,0.836,Male,Has relevent experience,Part time course,Graduate,STEM,10,1000-4999,Pvt Ltd,2,47,0.0 +25836,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Business Degree,16,<10,Pvt Ltd,1,42,0.0 +16506,city_36,0.893,Male,Has relevent experience,Part time course,Graduate,STEM,13,1000-4999,Pvt Ltd,2,10,0.0 +9520,city_36,0.893,Male,Has relevent experience,no_enrollment,Masters,STEM,10,<10,Pvt Ltd,1,188,0.0 +19010,city_41,0.8270000000000001,Male,Has relevent experience,Full time course,Graduate,STEM,6,5000-9999,,1,170,1.0 +5668,city_105,0.794,Male,No relevent experience,Full time course,Graduate,STEM,1,,,never,78,0.0 +6516,city_102,0.804,,Has relevent experience,Full time course,High School,,6,500-999,Pvt Ltd,never,6,0.0 +2473,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,NGO,2,138,0.0 +2388,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,4,1.0 +24139,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,6,500-999,Pvt Ltd,2,155,1.0 +11535,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,3,10000+,Pvt Ltd,2,38,0.0 +27407,city_98,0.9490000000000001,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,10000+,Pvt Ltd,1,45,0.0 +30612,city_103,0.92,Male,No relevent experience,Full time course,High School,,7,,,never,200,0.0 +3430,city_152,0.698,,No relevent experience,,High School,,2,,,never,43,0.0 +8236,city_100,0.887,,No relevent experience,Full time course,Graduate,STEM,5,,,never,14,0.0 +21060,city_138,0.836,Male,No relevent experience,Full time course,Graduate,STEM,8,500-999,Pvt Ltd,1,7,0.0 +29272,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,5,10000+,Pvt Ltd,1,12,1.0 +2301,city_100,0.887,Male,Has relevent experience,Part time course,Graduate,STEM,8,50-99,Pvt Ltd,1,28,0.0 +14054,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,,,>20,<10,Pvt Ltd,never,60,0.0 +31081,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,,,1,122,1.0 +22286,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,19,,,2,34,0.0 +19853,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,High School,,5,1000-4999,,never,102,0.0 +20537,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,53,0.0 +23893,city_65,0.802,Female,No relevent experience,no_enrollment,Masters,STEM,14,,,1,11,1.0 +8680,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,19,500-999,Pvt Ltd,2,17,0.0 +28168,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,2,27,0.0 +7366,city_105,0.794,Male,No relevent experience,no_enrollment,Graduate,STEM,2,,,never,17,1.0 +19079,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,50-99,Pvt Ltd,2,162,0.0 +32362,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,3,32,1.0 +4992,city_65,0.802,,No relevent experience,Full time course,High School,,7,100-500,Pvt Ltd,never,83,0.0 +7756,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,2,<10,Early Stage Startup,,4,0.0 +28425,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,No Major,15,50-99,Funded Startup,2,48,1.0 +21942,city_67,0.855,,No relevent experience,Full time course,Graduate,STEM,3,,,1,40,0.0 +24185,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,Humanities,1,10/49,Pvt Ltd,1,69,0.0 +8051,city_45,0.89,Male,Has relevent experience,no_enrollment,High School,,11,500-999,Pvt Ltd,>4,130,0.0 +19665,city_21,0.624,Male,Has relevent experience,Part time course,Graduate,STEM,8,10000+,Pvt Ltd,1,62,1.0 +16433,city_67,0.855,Male,Has relevent experience,no_enrollment,Masters,STEM,8,10000+,Pvt Ltd,>4,3,0.0 +31306,city_103,0.92,,Has relevent experience,no_enrollment,Masters,Business Degree,>20,100-500,Public Sector,>4,40,1.0 +24168,city_114,0.9259999999999999,,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,1,50,0.0 +14724,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,No Major,5,1000-4999,Pvt Ltd,never,86,0.0 +29365,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,>4,242,0.0 +12847,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,No Major,10,100-500,Pvt Ltd,1,16,1.0 +21118,city_103,0.92,,Has relevent experience,no_enrollment,Masters,STEM,11,<10,Funded Startup,2,53,0.0 +8629,city_89,0.925,Female,No relevent experience,Full time course,Graduate,STEM,2,10/49,Early Stage Startup,1,100,0.0 +3664,city_103,0.92,,No relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,1,47,0.0 +27637,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,500-999,Public Sector,3,28,0.0 +1878,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,142,1.0 +1169,city_1,0.847,Male,Has relevent experience,Full time course,Masters,STEM,12,500-999,Public Sector,never,58,0.0 +21862,city_114,0.9259999999999999,,Has relevent experience,,Graduate,STEM,,50-99,NGO,1,138,0.0 +20500,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,2,28,0.0 +15734,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Public Sector,4,22,0.0 +4336,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,10,10000+,Pvt Ltd,1,42,0.0 +14479,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,Business Degree,8,100-500,Pvt Ltd,1,78,0.0 +19474,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,2,,,1,50,1.0 +15954,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,1,282,0.0 +3655,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,never,84,0.0 +18725,city_138,0.836,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,,Pvt Ltd,1,156,0.0 +32769,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,6,<10,Early Stage Startup,1,19,0.0 +18365,city_103,0.92,Male,Has relevent experience,no_enrollment,Phd,STEM,15,50-99,Funded Startup,4,108,0.0 +6616,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,4,10/49,Pvt Ltd,1,31,1.0 +29608,city_71,0.884,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,,1,51,0.0 +23813,city_173,0.878,Male,Has relevent experience,no_enrollment,,,20,5000-9999,Pvt Ltd,>4,36,0.0 +24992,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,,1,73,0.0 +23460,city_145,0.555,,Has relevent experience,no_enrollment,Graduate,STEM,6,,,never,4,1.0 +27217,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,Pvt Ltd,2,38,0.0 +229,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Phd,STEM,14,5000-9999,Public Sector,>4,9,1.0 +32169,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Arts,15,50-99,Funded Startup,1,6,0.0 +28618,city_99,0.915,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,1,28,0.0 +12534,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,1,48,1.0 +31453,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,100-500,Pvt Ltd,4,13,1.0 +15625,city_100,0.887,,Has relevent experience,no_enrollment,Graduate,STEM,9,5000-9999,,1,102,0.0 +12414,city_21,0.624,Male,Has relevent experience,Full time course,Graduate,STEM,1,50-99,Pvt Ltd,1,25,1.0 +32454,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,19,100-500,Pvt Ltd,1,105,1.0 +16783,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,9,10000+,Public Sector,1,92,0.0 +23314,city_90,0.698,,Has relevent experience,no_enrollment,Graduate,STEM,11,10/49,Pvt Ltd,1,39,0.0 +14811,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Graduate,STEM,16,10000+,Pvt Ltd,1,32,1.0 +17516,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,>20,1000-4999,Pvt Ltd,1,65,0.0 +2179,city_114,0.9259999999999999,Female,Has relevent experience,no_enrollment,High School,,11,50-99,Pvt Ltd,1,32,0.0 +5480,city_103,0.92,Male,No relevent experience,no_enrollment,Primary School,,2,,Pvt Ltd,never,31,0.0 +5432,city_21,0.624,,No relevent experience,no_enrollment,Graduate,STEM,<1,,,2,25,0.0 +6712,city_114,0.9259999999999999,,No relevent experience,no_enrollment,Masters,STEM,15,5000-9999,Pvt Ltd,1,40,0.0 +5939,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,24,0.0 +18504,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,4,28,0.0 +24871,city_149,0.6890000000000001,,Has relevent experience,Full time course,Graduate,STEM,2,1000-4999,Pvt Ltd,1,44,1.0 +1339,city_57,0.866,Male,No relevent experience,Part time course,Graduate,STEM,3,,,>4,16,1.0 +14590,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,3,56,1.0 +20051,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,50-99,Pvt Ltd,2,83,0.0 +25065,city_11,0.55,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,500-999,Pvt Ltd,2,192,0.0 +18994,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,18,1000-4999,Pvt Ltd,1,107,0.0 +30820,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,8,,,2,34,1.0 +2012,city_162,0.767,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,10000+,Pvt Ltd,>4,34,1.0 +6124,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,16,1.0 +30830,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,37,0.0 +11753,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,5,,,never,101,0.0 +20501,city_16,0.91,Male,No relevent experience,Full time course,Graduate,No Major,>20,50-99,NGO,>4,44,0.0 +15779,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,11,,,1,92,1.0 +3627,city_73,0.754,,Has relevent experience,no_enrollment,Graduate,STEM,6,,,1,44,1.0 +21456,city_16,0.91,Male,No relevent experience,no_enrollment,,,3,,,never,270,0.0 +6708,city_21,0.624,,Has relevent experience,,Masters,STEM,5,50-99,Pvt Ltd,1,172,1.0 +15179,city_16,0.91,,No relevent experience,no_enrollment,Primary School,,5,,,never,34,0.0 +14138,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Arts,19,100-500,Public Sector,>4,149,0.0 +5894,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,2,64,1.0 +18479,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10000+,Pvt Ltd,2,4,1.0 +29313,city_21,0.624,Male,Has relevent experience,no_enrollment,,,12,10/49,Pvt Ltd,>4,134,1.0 +33195,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,>4,14,1.0 +1775,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,10,100-500,Pvt Ltd,>4,96,1.0 +30392,city_128,0.527,,No relevent experience,no_enrollment,,,2,,,1,148,1.0 +17279,city_16,0.91,Male,Has relevent experience,Full time course,Graduate,STEM,7,,,1,98,1.0 +14457,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,never,132,0.0 +28873,city_103,0.92,Male,Has relevent experience,,Graduate,STEM,2,100-500,NGO,1,143,0.0 +1750,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,50-99,Pvt Ltd,3,45,0.0 +25095,city_104,0.924,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,3,152,0.0 +10379,city_118,0.722,Male,Has relevent experience,no_enrollment,Masters,STEM,2,100-500,Pvt Ltd,1,14,0.0 +28077,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,7,1000-4999,NGO,4,6,0.0 +24123,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,1,17,0.0 +23694,city_143,0.74,Male,No relevent experience,no_enrollment,Graduate,STEM,3,10000+,Pvt Ltd,3,92,0.0 +7074,city_81,0.73,Male,Has relevent experience,Part time course,Graduate,STEM,5,<10,Pvt Ltd,1,16,0.0 +14469,city_74,0.579,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,100-500,Pvt Ltd,1,34,1.0 +8157,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,15,,,>4,103,1.0 +11531,city_114,0.9259999999999999,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,5000-9999,Pvt Ltd,1,97,0.0 +17223,city_21,0.624,,No relevent experience,Full time course,High School,,1,,,,45,0.0 +10381,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Humanities,19,10000+,Pvt Ltd,,13,1.0 +27340,city_64,0.6659999999999999,Female,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,>4,4,0.0 +31805,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,50-99,Pvt Ltd,1,34,0.0 +27913,city_173,0.878,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,3,47,0.0 +1258,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,100-500,Pvt Ltd,1,34,0.0 +13502,city_136,0.897,Male,No relevent experience,Part time course,Masters,STEM,3,1000-4999,Pvt Ltd,>4,35,0.0 +3899,city_138,0.836,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,never,19,0.0 +16045,city_103,0.92,,Has relevent experience,Full time course,Graduate,STEM,16,50-99,,2,23,1.0 +26721,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,10,,,never,25,1.0 +13421,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,9,,,never,63,1.0 +32382,city_84,0.698,Male,Has relevent experience,Full time course,Graduate,STEM,2,5000-9999,Pvt Ltd,1,170,0.0 +4092,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10000+,Pvt Ltd,2,264,0.0 +1730,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,10000+,Pvt Ltd,4,48,1.0 +6747,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,<1,50-99,Pvt Ltd,3,28,0.0 +24029,city_21,0.624,,Has relevent experience,Full time course,Masters,STEM,6,100-500,,never,114,1.0 +1566,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,5,5000-9999,Pvt Ltd,2,3,0.0 +32047,city_165,0.903,Male,Has relevent experience,no_enrollment,Graduate,Humanities,4,50-99,Public Sector,2,42,1.0 +3483,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,3,500-999,Public Sector,1,11,0.0 +16974,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,,,2,112,1.0 +26399,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,7,,,2,76,1.0 +17805,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,500-999,Pvt Ltd,>4,24,0.0 +29051,city_158,0.7659999999999999,Male,Has relevent experience,no_enrollment,High School,,18,100-500,Pvt Ltd,never,22,0.0 +25005,city_16,0.91,,No relevent experience,no_enrollment,Primary School,,5,,,never,105,0.0 +26815,city_149,0.6890000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,9,,,1,3,0.0 +4577,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,,,39,0.0 +9380,city_61,0.9129999999999999,Male,No relevent experience,Full time course,High School,,9,,,1,27,0.0 +3061,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,Other,9,50-99,Pvt Ltd,2,8,0.0 +23367,city_21,0.624,Male,Has relevent experience,Full time course,Masters,STEM,8,1000-4999,Pvt Ltd,1,149,0.0 +15239,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,>4,14,1.0 +15207,city_100,0.887,Male,No relevent experience,,Masters,STEM,7,,,1,64,0.0 +20553,city_9,0.743,,Has relevent experience,no_enrollment,Masters,STEM,6,100-500,Other,1,52,0.0 +7101,city_16,0.91,,No relevent experience,Full time course,Graduate,STEM,4,,,1,40,1.0 +211,city_20,0.7959999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,17,,Pvt Ltd,1,4,0.0 +32514,city_71,0.884,,Has relevent experience,no_enrollment,Graduate,STEM,6,50-99,Pvt Ltd,1,29,0.0 +31705,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Business Degree,15,,,>4,184,0.0 +13921,city_103,0.92,,Has relevent experience,no_enrollment,Masters,Business Degree,15,10000+,Pvt Ltd,>4,6,1.0 +7704,city_21,0.624,Male,Has relevent experience,no_enrollment,Masters,STEM,8,500-999,Pvt Ltd,3,108,0.0 +1931,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,28,0.0 +6563,city_101,0.5579999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,100-500,Pvt Ltd,>4,87,1.0 +351,city_144,0.84,Male,No relevent experience,Part time course,Graduate,Other,19,10/49,Pvt Ltd,>4,94,0.0 +3662,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,2,206,1.0 +25236,city_97,0.925,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,Pvt Ltd,2,30,0.0 +2208,city_105,0.794,Male,Has relevent experience,Full time course,High School,,2,50-99,Pvt Ltd,1,320,0.0 +19144,city_116,0.743,Male,Has relevent experience,no_enrollment,Graduate,Arts,11,,,1,80,1.0 +16789,city_28,0.9390000000000001,,Has relevent experience,no_enrollment,Masters,STEM,12,10000+,Pvt Ltd,3,106,0.0 +8597,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,never,153,1.0 +6230,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,<1,,,4,254,0.0 +28289,city_104,0.924,,Has relevent experience,no_enrollment,High School,,>20,10000+,Pvt Ltd,4,23,0.0 +20521,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,98,1.0 +26637,city_57,0.866,,No relevent experience,no_enrollment,Graduate,STEM,13,50-99,NGO,2,65,0.0 +10827,city_16,0.91,Male,No relevent experience,Part time course,Masters,STEM,4,<10,Early Stage Startup,1,90,0.0 +25096,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,1,70,0.0 +32400,city_107,0.518,Male,No relevent experience,Full time course,Graduate,STEM,4,,,1,21,1.0 +7764,city_45,0.89,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,108,0.0 +11266,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,<10,Early Stage Startup,4,102,0.0 +20926,city_103,0.92,,No relevent experience,no_enrollment,Masters,STEM,7,,,1,156,1.0 +720,city_160,0.92,Male,No relevent experience,Full time course,Graduate,STEM,13,,,1,52,1.0 +13804,city_61,0.9129999999999999,Male,Has relevent experience,no_enrollment,Primary School,,7,100-500,Pvt Ltd,1,9,0.0 +18774,city_21,0.624,Female,Has relevent experience,no_enrollment,Masters,STEM,15,,,1,82,1.0 +8555,city_160,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,10,50-99,Pvt Ltd,1,60,0.0 +8832,city_103,0.92,,Has relevent experience,no_enrollment,Masters,Business Degree,20,,,>4,14,1.0 +11038,city_101,0.5579999999999999,Male,No relevent experience,Full time course,Graduate,STEM,9,,,never,37,1.0 +20692,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,4,10/49,Pvt Ltd,2,34,0.0 +14738,city_165,0.903,Male,Has relevent experience,Full time course,Graduate,STEM,4,5000-9999,Pvt Ltd,never,56,0.0 +21261,city_103,0.92,Female,No relevent experience,Full time course,High School,,6,,Public Sector,1,24,0.0 +16740,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,9,1000-4999,Pvt Ltd,2,33,0.0 +18637,city_114,0.9259999999999999,Female,No relevent experience,Full time course,High School,,3,5000-9999,Public Sector,1,46,0.0 +7468,city_57,0.866,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,75,0.0 +17729,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,6,,,1,85,1.0 +22825,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,1,40,0.0 +23972,city_75,0.9390000000000001,Male,Has relevent experience,no_enrollment,High School,,19,1000-4999,Pvt Ltd,>4,178,0.0 +1177,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,2,50-99,Pvt Ltd,1,7,0.0 +21711,city_10,0.895,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Pvt Ltd,>4,39,0.0 +10336,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,No Major,17,,,1,112,0.0 +4420,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,3,<10,Pvt Ltd,1,64,1.0 +28803,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,High School,,>20,50-99,Pvt Ltd,1,59,0.0 +10045,city_128,0.527,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,1,67,0.0 +4044,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,13,100-500,Pvt Ltd,1,32,0.0 +30314,city_21,0.624,Female,Has relevent experience,Full time course,Graduate,STEM,6,,,1,6,0.0 +2646,city_149,0.6890000000000001,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,18,0.0 +16416,city_159,0.843,Male,No relevent experience,no_enrollment,Masters,Humanities,6,10000+,Pvt Ltd,2,332,0.0 +2678,city_104,0.924,,No relevent experience,no_enrollment,Phd,STEM,>20,50-99,Pvt Ltd,,27,0.0 +19078,city_16,0.91,Female,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,2,12,0.0 +26999,city_21,0.624,Male,No relevent experience,Part time course,Graduate,STEM,3,<10,Early Stage Startup,1,55,0.0 +30261,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,2,67,0.0 +17108,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,10/49,Pvt Ltd,1,34,0.0 +10274,city_103,0.92,Male,Has relevent experience,Full time course,Masters,STEM,12,,,2,74,1.0 +31320,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,50-99,Pvt Ltd,1,25,0.0 +20603,city_90,0.698,,Has relevent experience,no_enrollment,Masters,STEM,14,1000-4999,Public Sector,1,4,0.0 +19122,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,15,10000+,Pvt Ltd,>4,150,0.0 +25215,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,6,10000+,,2,58,0.0 +30327,city_16,0.91,Female,No relevent experience,,Graduate,STEM,14,,,never,80,1.0 +3836,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,6,0.0 +14988,city_93,0.865,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,2,21,0.0 +32072,city_21,0.624,,Has relevent experience,Part time course,Masters,STEM,6,50-99,Pvt Ltd,never,292,1.0 +31115,city_21,0.624,Male,Has relevent experience,,Graduate,STEM,7,10/49,Funded Startup,1,152,0.0 +30376,city_149,0.6890000000000001,Male,No relevent experience,Full time course,Graduate,STEM,2,,,never,44,1.0 +25409,city_67,0.855,Male,No relevent experience,no_enrollment,Masters,STEM,14,<10,Pvt Ltd,1,34,0.0 +27960,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,1000-4999,Pvt Ltd,1,31,0.0 +19799,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Funded Startup,1,26,0.0 +15235,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,Pvt Ltd,1,60,0.0 +25199,city_97,0.925,Male,No relevent experience,Full time course,Graduate,STEM,12,,,2,20,0.0 +26499,city_160,0.92,Male,Has relevent experience,,Graduate,STEM,>20,,,>4,50,1.0 +13454,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10/49,NGO,1,116,1.0 +14702,city_11,0.55,,Has relevent experience,Full time course,Masters,STEM,1,50-99,Pvt Ltd,1,4,1.0 +19493,city_134,0.698,Male,No relevent experience,no_enrollment,Graduate,Other,1,5000-9999,Pvt Ltd,1,46,1.0 +15265,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,6,0.0 +5694,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,2,<10,Pvt Ltd,never,37,1.0 +27000,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,Other,12,50-99,Funded Startup,1,256,0.0 +3876,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,5000-9999,,3,10,0.0 +30212,city_102,0.804,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,34,0.0 +16685,city_128,0.527,Male,Has relevent experience,Full time course,High School,,5,,,never,98,0.0 +27204,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,3,,,3,33,0.0 +31482,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,50-99,Early Stage Startup,1,9,0.0 +21567,city_21,0.624,Female,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,>4,43,0.0 +14257,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,13,10/49,NGO,1,21,1.0 +3604,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,16,,,>4,95,1.0 +11178,city_102,0.804,Male,Has relevent experience,no_enrollment,Graduate,STEM,4,,,1,88,0.0 +6572,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,500-999,Pvt Ltd,4,25,0.0 +21112,city_116,0.743,Male,Has relevent experience,Full time course,Masters,STEM,7,50-99,Public Sector,1,17,0.0 +22184,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,81,0.0 +22528,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,,16,,,>4,67,0.0 +33253,city_41,0.8270000000000001,Male,Has relevent experience,no_enrollment,High School,,18,,,>4,12,0.0 +30066,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,3,,,1,54,0.0 +30117,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,1000-4999,Pvt Ltd,1,32,0.0 +24443,city_144,0.84,,Has relevent experience,Full time course,Graduate,STEM,6,100-500,Pvt Ltd,4,107,0.0 +7304,city_28,0.9390000000000001,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,never,127,0.0 +30614,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,12,1000-4999,Pvt Ltd,1,20,0.0 +497,city_83,0.9229999999999999,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Funded Startup,3,100,0.0 +6401,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Humanities,>20,10000+,Pvt Ltd,2,124,0.0 +31421,city_103,0.92,Male,No relevent experience,no_enrollment,Graduate,Arts,>20,100-500,Pvt Ltd,>4,18,0.0 +14842,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10/49,Pvt Ltd,2,6,0.0 +30902,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,50-99,Pvt Ltd,1,12,0.0 +23842,city_23,0.899,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,3,18,0.0 +13225,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,18,50-99,Pvt Ltd,>4,41,0.0 +21914,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,100-500,NGO,>4,89,0.0 +2242,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,3,,Pvt Ltd,never,254,1.0 +13085,city_103,0.92,Male,No relevent experience,Part time course,Graduate,STEM,7,,,1,81,0.0 +3079,city_157,0.769,Male,Has relevent experience,Full time course,Graduate,STEM,8,100-500,Pvt Ltd,1,5,0.0 +23590,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,,,4,88,1.0 +28386,city_89,0.925,Male,No relevent experience,no_enrollment,Graduate,STEM,>20,<10,Early Stage Startup,>4,46,0.0 +8924,city_118,0.722,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,98,0.0 +18283,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,2,10000+,Public Sector,1,54,0.0 +6801,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,4,50-99,Pvt Ltd,1,23,1.0 +18351,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,3,,,1,114,1.0 +6877,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,10,50-99,Pvt Ltd,1,220,0.0 +32397,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,10000+,Pvt Ltd,1,16,0.0 +10152,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,,1,62,0.0 +23917,city_160,0.92,,No relevent experience,no_enrollment,Primary School,,3,,,never,48,0.0 +12862,city_160,0.92,Male,No relevent experience,no_enrollment,Graduate,STEM,8,,Public Sector,1,56,1.0 +17245,city_64,0.6659999999999999,,Has relevent experience,no_enrollment,Graduate,,10,<10,Pvt Ltd,2,6,0.0 +6994,city_16,0.91,,Has relevent experience,,Masters,STEM,8,,,3,47,1.0 +20469,city_97,0.925,Male,Has relevent experience,no_enrollment,Primary School,,5,50-99,Pvt Ltd,>4,28,0.0 +1981,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,18,,,1,153,1.0 +33043,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,11,50-99,Pvt Ltd,>4,111,0.0 +21006,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,2,84,0.0 +26349,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,13,1.0 +19069,city_103,0.92,Male,Has relevent experience,Part time course,Graduate,STEM,7,10000+,Pvt Ltd,3,21,0.0 +26317,city_136,0.897,Female,Has relevent experience,no_enrollment,Masters,STEM,14,10000+,Pvt Ltd,2,98,0.0 +28660,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,10000+,Pvt Ltd,1,84,0.0 +21546,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,Humanities,2,500-999,Pvt Ltd,1,146,0.0 +11226,city_90,0.698,Male,No relevent experience,no_enrollment,Graduate,STEM,3,10/49,NGO,1,83,0.0 +17077,city_134,0.698,,No relevent experience,no_enrollment,,,,,,never,106,0.0 +30738,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,5,500-999,Pvt Ltd,>4,128,0.0 +17388,city_173,0.878,Male,No relevent experience,no_enrollment,Primary School,,6,,,never,106,0.0 +4896,city_67,0.855,,Has relevent experience,no_enrollment,Masters,STEM,2,50-99,Pvt Ltd,1,56,0.0 +11482,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,14,50-99,Pvt Ltd,4,28,0.0 +30164,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,5000-9999,Public Sector,>4,77,0.0 +6374,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,14,<10,Pvt Ltd,1,87,1.0 +24882,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10000+,Pvt Ltd,1,10,1.0 +29181,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,16,,,1,194,0.0 +19470,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,3,39,0.0 +27394,city_53,0.74,Male,Has relevent experience,no_enrollment,Masters,STEM,16,1000-4999,Public Sector,1,51,0.0 +20685,city_24,0.698,Male,No relevent experience,Full time course,High School,,9,,,never,4,0.0 +6394,city_73,0.754,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,500-999,Pvt Ltd,2,30,0.0 +23543,city_16,0.91,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,1,15,0.0 +30949,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,20,100-500,Public Sector,1,96,0.0 +6023,city_100,0.887,Male,Has relevent experience,no_enrollment,Masters,STEM,15,,Pvt Ltd,>4,250,0.0 +1769,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,STEM,>20,<10,Pvt Ltd,>4,172,0.0 +29449,city_128,0.527,,No relevent experience,Full time course,Graduate,STEM,<1,,,1,19,1.0 +17966,city_114,0.9259999999999999,,No relevent experience,Full time course,High School,,3,,,,20,0.0 +14441,city_89,0.925,Male,Has relevent experience,no_enrollment,Phd,STEM,6,50-99,Early Stage Startup,2,105,0.0 +33060,city_152,0.698,Female,No relevent experience,Part time course,Graduate,Other,3,10/49,Funded Startup,1,14,0.0 +6625,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,>4,61,0.0 +10182,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,2,60,0.0 +21106,city_90,0.698,Male,Has relevent experience,no_enrollment,Graduate,STEM,7,100-500,Pvt Ltd,1,20,0.0 +12700,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,8,100-500,Pvt Ltd,1,143,0.0 +29577,city_103,0.92,Male,Has relevent experience,Full time course,Graduate,STEM,9,,,1,168,0.0 +15374,city_115,0.789,Male,No relevent experience,no_enrollment,Graduate,Other,5,10/49,,never,180,0.0 +31734,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,2,10/49,Early Stage Startup,1,28,0.0 +11988,city_27,0.848,Male,No relevent experience,no_enrollment,High School,,4,,,never,16,0.0 +16471,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,1,<10,Pvt Ltd,1,31,1.0 +27422,city_70,0.698,Male,No relevent experience,Full time course,High School,,8,1000-4999,Pvt Ltd,1,32,0.0 +26961,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,6,100-500,Pvt Ltd,1,44,0.0 +14225,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,>4,56,1.0 +15607,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,1000-4999,Pvt Ltd,4,92,0.0 +8378,city_103,0.92,Male,No relevent experience,no_enrollment,High School,,3,,,never,19,0.0 +14635,city_102,0.804,Male,No relevent experience,no_enrollment,Graduate,STEM,19,,,>4,126,0.0 +215,city_100,0.887,,Has relevent experience,Full time course,High School,,14,<10,Pvt Ltd,2,45,0.0 +7305,city_67,0.855,Male,Has relevent experience,Full time course,Graduate,STEM,10,,,>4,16,0.0 +28729,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,3,10000+,NGO,1,94,0.0 +12193,city_97,0.925,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,1,77,0.0 +3695,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,50-99,Pvt Ltd,1,26,0.0 +17023,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,No Major,>20,100-500,Pvt Ltd,1,6,0.0 +14903,city_136,0.897,,No relevent experience,Full time course,Graduate,STEM,4,,,never,61,0.0 +4260,city_114,0.9259999999999999,Male,No relevent experience,Full time course,High School,,4,,Pvt Ltd,never,60,0.0 +29787,city_102,0.804,Male,No relevent experience,Full time course,High School,,11,,,never,64,1.0 +26153,city_103,0.92,Female,No relevent experience,no_enrollment,Graduate,Arts,1,1000-4999,,1,8,0.0 +17005,city_75,0.9390000000000001,Male,No relevent experience,no_enrollment,Graduate,No Major,>20,1000-4999,Pvt Ltd,>4,50,1.0 +29398,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,6,,,>4,166,0.0 +30251,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,Arts,>20,50-99,Pvt Ltd,1,43,0.0 +22963,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,100-500,Pvt Ltd,>4,162,0.0 +27194,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,14,100-500,Pvt Ltd,1,49,0.0 +16405,city_11,0.55,,Has relevent experience,Full time course,Graduate,STEM,5,100-500,Funded Startup,>4,28,1.0 +16094,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,15,50-99,Pvt Ltd,3,17,0.0 +7435,city_103,0.92,,Has relevent experience,no_enrollment,Graduate,Arts,>20,10000+,Pvt Ltd,>4,54,0.0 +24852,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Business Degree,2,100-500,Pvt Ltd,1,54,0.0 +18523,city_16,0.91,Male,No relevent experience,no_enrollment,Graduate,No Major,1,10000+,Pvt Ltd,never,16,0.0 +15915,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,50-99,Pvt Ltd,>4,170,0.0 +22375,city_101,0.5579999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,>20,,,1,266,1.0 +27838,city_83,0.9229999999999999,Male,No relevent experience,no_enrollment,Masters,STEM,>20,10000+,Pvt Ltd,>4,66,0.0 +6808,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,<1,,,1,42,0.0 +3022,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,3,50-99,Pvt Ltd,1,107,0.0 +31832,city_21,0.624,Male,No relevent experience,no_enrollment,Graduate,STEM,10,5000-9999,Pvt Ltd,1,184,1.0 +6020,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,Other,20,,,4,44,1.0 +25566,city_46,0.762,Male,Has relevent experience,no_enrollment,Masters,STEM,17,100-500,Pvt Ltd,2,18,0.0 +11669,city_114,0.9259999999999999,Male,Has relevent experience,Full time course,Masters,STEM,19,50-99,Pvt Ltd,4,27,0.0 +2223,city_83,0.9229999999999999,,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,2,45,0.0 +16684,city_83,0.9229999999999999,Male,No relevent experience,Full time course,,,2,,,1,77,1.0 +3966,city_103,0.92,Male,No relevent experience,Full time course,Graduate,STEM,6,,,1,114,1.0 +18039,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,500-999,Pvt Ltd,1,7,0.0 +3825,city_103,0.92,Other,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,2,68,0.0 +15806,city_165,0.903,,No relevent experience,no_enrollment,,,3,,Public Sector,never,62,0.0 +6606,city_173,0.878,Male,Has relevent experience,no_enrollment,High School,,6,10000+,Pvt Ltd,1,144,0.0 +25447,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,1000-4999,Pvt Ltd,>4,57,0.0 +4390,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,6,10000+,Pvt Ltd,2,139,0.0 +3230,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,50-99,Pvt Ltd,1,135,0.0 +16368,city_65,0.802,,No relevent experience,no_enrollment,,,4,,,2,304,0.0 +6803,city_16,0.91,Male,Has relevent experience,no_enrollment,High School,,10,10000+,Pvt Ltd,1,89,0.0 +25824,city_21,0.624,Male,No relevent experience,Full time course,High School,,1,,,never,17,0.0 +32932,city_10,0.895,Male,Has relevent experience,Part time course,Masters,Other,>20,1000-4999,Pvt Ltd,>4,18,0.0 +17873,city_45,0.89,Male,Has relevent experience,no_enrollment,Masters,STEM,9,100-500,Pvt Ltd,2,26,0.0 +10791,city_103,0.92,,Has relevent experience,Part time course,Graduate,STEM,>20,,,1,10,0.0 +18131,city_100,0.887,Male,No relevent experience,Full time course,Masters,STEM,6,100-500,Public Sector,,8,0.0 +15133,city_160,0.92,Male,No relevent experience,Part time course,Graduate,STEM,3,,,1,322,1.0 +15038,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,1000-4999,Pvt Ltd,3,34,0.0 +21334,city_21,0.624,,Has relevent experience,,Graduate,STEM,4,10/49,Pvt Ltd,never,89,0.0 +1281,city_103,0.92,Female,Has relevent experience,no_enrollment,Masters,STEM,6,10/49,Early Stage Startup,1,18,0.0 +1229,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,9,100-500,Pvt Ltd,1,16,0.0 +2225,city_136,0.897,Male,Has relevent experience,no_enrollment,Masters,STEM,12,10/49,Pvt Ltd,3,55,0.0 +11622,city_19,0.682,,No relevent experience,Full time course,Graduate,STEM,6,,,,53,0.0 +12539,city_21,0.624,,No relevent experience,no_enrollment,Masters,STEM,<1,<10,,>4,160,1.0 +6953,city_61,0.9129999999999999,,Has relevent experience,no_enrollment,Primary School,,18,,,2,54,0.0 +23428,city_103,0.92,,No relevent experience,Full time course,Graduate,STEM,7,,,never,36,0.0 +3458,city_114,0.9259999999999999,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,,,>4,214,0.0 +12211,city_126,0.479,,No relevent experience,no_enrollment,,,1,,,never,316,1.0 +935,city_99,0.915,,Has relevent experience,Full time course,Graduate,STEM,5,10/49,,2,42,0.0 +7887,city_21,0.624,,No relevent experience,,Graduate,STEM,4,10/49,Pvt Ltd,2,14,1.0 +1940,city_10,0.895,Male,Has relevent experience,no_enrollment,Masters,STEM,>20,100-500,Pvt Ltd,1,4,0.0 +27018,city_16,0.91,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,<10,Pvt Ltd,3,78,1.0 +8441,city_103,0.92,Male,Has relevent experience,no_enrollment,High School,,2,<10,Pvt Ltd,2,12,0.0 +18750,city_160,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,12,10/49,Early Stage Startup,>4,119,0.0 +20996,city_74,0.579,Male,No relevent experience,Full time course,Graduate,STEM,<1,,,never,31,0.0 +15889,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,STEM,6,500-999,Public Sector,1,150,0.0 +549,city_80,0.847,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,10000+,Public Sector,1,10,1.0 +3365,city_16,0.91,,Has relevent experience,no_enrollment,Graduate,Humanities,>20,1000-4999,Pvt Ltd,>4,23,0.0 +9651,city_100,0.887,,No relevent experience,Full time course,Masters,STEM,3,,Public Sector,1,30,1.0 +20668,city_21,0.624,Male,Has relevent experience,no_enrollment,Graduate,STEM,11,100-500,Pvt Ltd,>4,25,0.0 +18072,city_116,0.743,Male,No relevent experience,no_enrollment,Masters,STEM,8,10000+,,1,48,0.0 +15549,city_36,0.893,Male,Has relevent experience,no_enrollment,Graduate,STEM,10,500-999,Pvt Ltd,1,67,0.0 +25191,city_10,0.895,Other,Has relevent experience,no_enrollment,Graduate,STEM,16,10/49,Pvt Ltd,1,36,0.0 +28798,city_103,0.92,Male,Has relevent experience,Part time course,High School,,12,500-999,Pvt Ltd,>4,13,0.0 +20520,city_65,0.802,Male,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Public Sector,2,136,0.0 +23672,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,6,,,1,5,1.0 +22620,city_21,0.624,,Has relevent experience,no_enrollment,Graduate,STEM,8,50-99,Pvt Ltd,>4,80,0.0 +19765,city_30,0.698,,Has relevent experience,no_enrollment,Masters,STEM,11,100-500,Pvt Ltd,1,17,0.0 +5603,city_21,0.624,,Has relevent experience,Full time course,Graduate,STEM,4,,,,13,0.0 +11398,city_103,0.92,,No relevent experience,no_enrollment,Primary School,,2,,,never,15,0.0 +7782,city_23,0.899,Male,Has relevent experience,no_enrollment,Graduate,STEM,17,10/49,Funded Startup,3,12,0.0 +13750,city_40,0.7759999999999999,Male,Has relevent experience,no_enrollment,,,5,10/49,Early Stage Startup,1,26,0.0 +33047,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,10000+,Pvt Ltd,>4,18,0.0 +17191,city_21,0.624,,No relevent experience,Full time course,Graduate,STEM,4,,,never,48,1.0 +155,city_44,0.725,,No relevent experience,Full time course,Graduate,STEM,5,,Pvt Ltd,never,190,0.0 +13167,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,5,500-999,Pvt Ltd,1,51,0.0 +21319,city_21,0.624,Male,No relevent experience,Full time course,Graduate,STEM,1,100-500,Pvt Ltd,1,52,1.0 +9212,city_21,0.624,,Has relevent experience,no_enrollment,Masters,STEM,3,100-500,Pvt Ltd,3,40,1.0 +251,city_103,0.92,Male,Has relevent experience,no_enrollment,Masters,STEM,9,50-99,Pvt Ltd,1,36,1.0 +32313,city_160,0.92,Female,Has relevent experience,no_enrollment,Graduate,STEM,10,100-500,Public Sector,3,23,0.0 +11385,city_149,0.6890000000000001,Male,No relevent experience,Full time course,Graduate,,2,,,1,60,0.0 +29754,city_103,0.92,Female,Has relevent experience,no_enrollment,Graduate,Humanities,7,10/49,Funded Startup,1,25,0.0 +7386,city_173,0.878,Male,No relevent experience,no_enrollment,Graduate,Humanities,14,,,1,42,1.0 +31398,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,14,,,4,52,1.0 +24576,city_103,0.92,Male,Has relevent experience,no_enrollment,Graduate,STEM,>20,50-99,Pvt Ltd,4,44,0.0 +5756,city_65,0.802,Male,Has relevent experience,no_enrollment,High School,,<1,500-999,Pvt Ltd,2,97,0.0 +23834,city_67,0.855,,No relevent experience,no_enrollment,Primary School,,2,,,1,127,0.0 diff --git a/Python_For_ML/Week_4/Conceptual Session/CS-1/train.json b/Python_For_ML/Week_4/Conceptual Session/CS-1/train.json new file mode 100644 index 0000000..1b21a02 --- /dev/null +++ b/Python_For_ML/Week_4/Conceptual Session/CS-1/train.json @@ -0,0 +1,666921 @@ +[ + { + "id": 10259, + "cuisine": "greek", + "ingredients": [ + "romaine lettuce", + "black olives", + "grape tomatoes", + "garlic", + "pepper", + "purple onion", + "seasoning", + "garbanzo beans", + "feta cheese crumbles" + ] + }, + { + "id": 25693, + "cuisine": "southern_us", + "ingredients": [ + "plain flour", + "ground pepper", + "salt", + "tomatoes", + "ground black pepper", + "thyme", + "eggs", + "green tomatoes", + "yellow corn meal", + "milk", + "vegetable oil" + ] + }, + { + "id": 20130, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "pepper", + "salt", + "mayonaise", + "cooking oil", + "green chilies", + "grilled chicken breasts", + "garlic powder", + "yellow onion", + "soy sauce", + "butter", + "chicken livers" + ] + }, + { + "id": 22213, + "cuisine": "indian", + "ingredients": [ + "water", + "vegetable oil", + "wheat", + "salt" + ] + }, + { + "id": 13162, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "shallots", + "cornflour", + "cayenne pepper", + "onions", + "garlic paste", + "milk", + "butter", + "salt", + "lemon juice", + "water", + "chili powder", + "passata", + "oil", + "ground cumin", + "boneless chicken skinless thigh", + "garam masala", + "double cream", + "natural yogurt", + "bay leaf" + ] + }, + { + "id": 6602, + "cuisine": "jamaican", + "ingredients": [ + "plain flour", + "sugar", + "butter", + "eggs", + "fresh ginger root", + "salt", + "ground cinnamon", + "milk", + "vanilla extract", + "ground ginger", + "powdered sugar", + "baking powder" + ] + }, + { + "id": 42779, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "salt", + "medium shrimp", + "pepper", + "garlic", + "chopped cilantro", + "jalapeno chilies", + "flat leaf parsley", + "skirt steak", + "white vinegar", + "sea salt", + "bay leaf", + "chorizo sausage" + ] + }, + { + "id": 3735, + "cuisine": "italian", + "ingredients": [ + "sugar", + "pistachio nuts", + "white almond bark", + "flour", + "vanilla extract", + "olive oil", + "almond extract", + "eggs", + "baking powder", + "dried cranberries" + ] + }, + { + "id": 16903, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "purple onion", + "fresh pineapple", + "pork", + "poblano peppers", + "corn tortillas", + "cheddar cheese", + "ground black pepper", + "salt", + "iceberg lettuce", + "lime", + "jalapeno chilies", + "chopped cilantro fresh" + ] + }, + { + "id": 12734, + "cuisine": "italian", + "ingredients": [ + "chopped tomatoes", + "fresh basil", + "garlic", + "extra-virgin olive oil", + "kosher salt", + "flat leaf parsley" + ] + }, + { + "id": 5875, + "cuisine": "italian", + "ingredients": [ + "pimentos", + "sweet pepper", + "dried oregano", + "olive oil", + "garlic", + "sharp cheddar cheese", + "pepper", + "swiss cheese", + "provolone cheese", + "canola oil", + "mushrooms", + "black olives", + "sausages" + ] + }, + { + "id": 45887, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "fresh ginger", + "dry mustard", + "green beans", + "white pepper", + "sesame oil", + "scallions", + "canola oil", + "sugar", + "Shaoxing wine", + "garlic", + "ground turkey", + "water", + "crushed red pepper flakes", + "corn starch" + ] + }, + { + "id": 2698, + "cuisine": "italian", + "ingredients": [ + "Italian parsley leaves", + "walnuts", + "hot red pepper flakes", + "extra-virgin olive oil", + "fresh lemon juice", + "trout fillet", + "garlic cloves", + "chipotle chile", + "fine sea salt", + "flat leaf parsley" + ] + }, + { + "id": 41995, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "fresh cilantro", + "chili powder", + "ground coriander", + "kosher salt", + "ground black pepper", + "garlic", + "plum tomatoes", + "avocado", + "lime juice", + "flank steak", + "salt", + "ground cumin", + "black pepper", + "olive oil", + "crushed red pepper flakes", + "onions" + ] + }, + { + "id": 31908, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "butter", + "all-purpose flour", + "fat free less sodium chicken broth", + "chopped fresh chives", + "gruyere cheese", + "ground black pepper", + "bacon slices", + "gnocchi", + "fat free milk", + "cooking spray", + "salt" + ] + }, + { + "id": 24717, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "vegetable stock", + "tomatoes", + "garam masala", + "naan", + "red lentils", + "red chili peppers", + "onions", + "spinach", + "sweet potatoes" + ] + }, + { + "id": 34466, + "cuisine": "british", + "ingredients": [ + "greek yogurt", + "lemon curd", + "confectioners sugar", + "raspberries" + ] + }, + { + "id": 1420, + "cuisine": "italian", + "ingredients": [ + "italian seasoning", + "broiler-fryer chicken", + "mayonaise", + "zesty italian dressing" + ] + }, + { + "id": 2941, + "cuisine": "thai", + "ingredients": [ + "sugar", + "hot chili", + "asian fish sauce", + "lime juice" + ] + }, + { + "id": 8152, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "red bell pepper", + "chicken broth", + "yellow squash", + "garlic chili sauce", + "sliced green onions", + "broccolini", + "salt", + "fresh lime juice", + "cooked rice", + "chicken breasts", + "corn starch" + ] + }, + { + "id": 13121, + "cuisine": "thai", + "ingredients": [ + "pork loin", + "roasted peanuts", + "chopped cilantro fresh", + "hoisin sauce", + "creamy peanut butter", + "chopped fresh mint", + "thai basil", + "rice", + "medium shrimp", + "water", + "rice noodles", + "beansprouts" + ] + }, + { + "id": 40523, + "cuisine": "mexican", + "ingredients": [ + "roma tomatoes", + "kosher salt", + "purple onion", + "jalapeno chilies", + "lime", + "chopped cilantro" + ] + }, + { + "id": 40989, + "cuisine": "southern_us", + "ingredients": [ + "low-fat mayonnaise", + "pepper", + "salt", + "baking potatoes", + "eggs", + "spicy brown mustard" + ] + }, + { + "id": 29630, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "red pepper", + "yellow peppers", + "water", + "extra firm tofu", + "broccoli", + "soy sauce", + "orange bell pepper", + "arrowroot powder", + "fresh ginger", + "sesame oil", + "red curry paste" + ] + }, + { + "id": 49136, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "flat leaf parsley", + "olive oil", + "linguine", + "capers", + "crushed red pepper flakes", + "olives", + "lemon zest", + "garlic" + ] + }, + { + "id": 26705, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "lo mein noodles", + "salt", + "chicken broth", + "light soy sauce", + "flank steak", + "beansprouts", + "dried black mushrooms", + "pepper", + "chives", + "oyster sauce", + "dark soy sauce", + "peanuts", + "sesame oil", + "cabbage" + ] + }, + { + "id": 27976, + "cuisine": "cajun_creole", + "ingredients": [ + "herbs", + "lemon juice", + "fresh tomatoes", + "paprika", + "mango", + "stock", + "chile pepper", + "onions", + "red chili peppers", + "oil" + ] + }, + { + "id": 22087, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "butter", + "sliced mushrooms", + "sherry", + "salt", + "grated parmesan cheese", + "heavy cream", + "spaghetti", + "chicken broth", + "cooked chicken", + "all-purpose flour" + ] + }, + { + "id": 9197, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "egg roll wrappers", + "sweet and sour sauce", + "corn starch", + "molasses", + "vegetable oil", + "oil", + "soy sauce", + "shredded cabbage", + "garlic", + "onions", + "fresh ginger root", + "ground pork", + "carrots" + ] + }, + { + "id": 1299, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "cheese", + "breakfast sausages", + "large eggs" + ] + }, + { + "id": 40429, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "boiling water", + "butter", + "fresh parmesan cheese", + "sea salt" + ] + }, + { + "id": 34419, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "chicken breasts", + "hot sauce", + "red bell pepper", + "potatoes", + "bacon", + "garlic cloves", + "fresh parsley", + "andouille sausage", + "cajun seasoning", + "peanut oil", + "celery", + "ground red pepper", + "all-purpose flour", + "shrimp", + "onions" + ] + }, + { + "id": 10276, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "crushed red pepper flakes", + "garlic powder", + "sea salt", + "ground cumin", + "onion powder", + "dried oregano", + "ground black pepper", + "paprika" + ] + }, + { + "id": 33465, + "cuisine": "thai", + "ingredients": [ + "eggs", + "shallots", + "firm tofu", + "beansprouts", + "turnips", + "palm sugar", + "vegetable oil", + "garlic cloves", + "sliced chicken", + "fish sauce", + "lime wedges", + "roasted peanuts", + "green papaya", + "chile powder", + "ground black pepper", + "tamarind paste", + "chinese chives" + ] + }, + { + "id": 39250, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "onions", + "crushed garlic", + "dried oregano", + "green onions", + "white sugar", + "dried basil", + "diced tomatoes" + ] + }, + { + "id": 37963, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "diced tomatoes", + "Johnsonville Andouille Dinner Sausage", + "parsley", + "shrimp", + "jambalaya rice mix", + "worcestershire sauce", + "hot pepper sauce", + "creole seasoning" + ] + }, + { + "id": 20051, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "bread slices", + "great northern beans", + "garlic cloves", + "pepper", + "shrimp", + "sage leaves", + "salt" + ] + }, + { + "id": 11300, + "cuisine": "filipino", + "ingredients": [ + "chicken broth", + "cooking oil", + "chinese five-spice powder", + "ground black pepper", + "salt", + "sugar", + "crushed garlic", + "chicken thighs", + "soy sauce", + "star anise" + ] + }, + { + "id": 17610, + "cuisine": "southern_us", + "ingredients": [ + "green onions", + "cream cheese", + "shredded cheddar cheese", + "cayenne pepper", + "chili powder", + "garlic cloves", + "black-eyed peas", + "tortilla chips" + ] + }, + { + "id": 37405, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "extra-virgin olive oil", + "ham hock", + "chicken stock", + "apple cider", + "freshly ground pepper", + "chile powder", + "bay leaves", + "salt", + "rib", + "light brown sugar", + "large garlic cloves", + "cayenne pepper", + "onions" + ] + }, + { + "id": 28302, + "cuisine": "italian", + "ingredients": [ + "Oscar Mayer Deli Fresh Smoked Ham", + "hoagie rolls", + "salami", + "giardiniera", + "mozzarella cheese", + "pepperoni", + "butter", + "italian seasoning" + ] + }, + { + "id": 31634, + "cuisine": "brazilian", + "ingredients": [ + "ice cubes", + "club soda", + "white rum", + "lime", + "turbinado" + ] + }, + { + "id": 32304, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "enchilada sauce", + "sliced green onions", + "picante sauce", + "green pepper", + "corn tortillas", + "canned black beans", + "shredded lettuce", + "sour cream", + "shredded cheddar cheese", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 36341, + "cuisine": "indian", + "ingredients": [ + "salmon fillets", + "shallots", + "cumin seed", + "fresh cilantro", + "salt", + "curry powder", + "vegetable oil", + "serrano chile", + "fresh ginger", + "sauce" + ] + }, + { + "id": 29369, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "chicken breast halves", + "chopped cilantro fresh", + "white vinegar", + "jalapeno chilies", + "salt", + "black pepper", + "vegetable oil", + "avocado", + "lettuce leaves", + "chopped onion" + ] + }, + { + "id": 27564, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "mandarin oranges", + "water", + "orange liqueur", + "yellow cake mix", + "frosting", + "vegetable oil", + "white sugar" + ] + }, + { + "id": 18515, + "cuisine": "french", + "ingredients": [ + "sugar", + "salt", + "fennel bulb", + "water", + "lemon olive oil", + "grapefruit juice" + ] + }, + { + "id": 3335, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "all-purpose flour", + "vegetable oil", + "white cornmeal", + "baking powder", + "onions", + "bacon drippings", + "buttermilk" + ] + }, + { + "id": 4499, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "crab boil", + "garlic", + "old bay seasoning", + "cream cheese", + "crawfish", + "salt" + ] + }, + { + "id": 4906, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "white sugar", + "ground black pepper", + "salt", + "white vinegar", + "lemon juice" + ] + }, + { + "id": 5767, + "cuisine": "japanese", + "ingredients": [ + "sirloin", + "mirin", + "yellow onion", + "low sodium soy sauce", + "water", + "corn oil", + "sugar", + "green onions", + "glass noodles", + "sake", + "shiitake", + "napa cabbage" + ] + }, + { + "id": 30748, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "whipping cream", + "chicken broth", + "ground red pepper", + "extra sharp cheddar cheese", + "quickcooking grits", + "hot sauce", + "ground black pepper", + "worcestershire sauce", + "monterey jack" + ] + }, + { + "id": 35930, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "bay leaves", + "crushed red pepper", + "mussels", + "olive oil", + "basil", + "garlic cloves", + "black pepper", + "dry white wine", + "salt", + "tomatoes", + "finely chopped onion", + "linguine", + "flat leaf parsley" + ] + }, + { + "id": 44902, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "all-purpose flour", + "baking soda", + "buttermilk", + "honey", + "corn oil", + "yellow corn meal", + "unsalted butter", + "salt" + ] + }, + { + "id": 31119, + "cuisine": "italian", + "ingredients": [ + "lemon", + "pesto", + "salmon fillets", + "white wine" + ] + }, + { + "id": 3535, + "cuisine": "jamaican", + "ingredients": [ + "bread crumbs", + "unsalted butter", + "onion powder", + "curry", + "low sodium beef broth", + "pickapeppa sauce", + "curry powder", + "bay leaves", + "garlic", + "cayenne pepper", + "cold water", + "pepper", + "large eggs", + "extra-virgin olive oil", + "yellow onion", + "allspice", + "white vinegar", + "kosher salt", + "fresh thyme", + "worcestershire sauce", + "all-purpose flour", + "ground beef" + ] + }, + { + "id": 47028, + "cuisine": "japanese", + "ingredients": [ + "melted butter", + "matcha green tea powder", + "white sugar", + "milk", + "all-purpose flour", + "eggs", + "salt", + "baking powder", + "chopped walnuts" + ] + }, + { + "id": 38112, + "cuisine": "indian", + "ingredients": [ + "coarse salt", + "fenugreek", + "urad dal", + "potatoes", + "white rice", + "vegetable oil" + ] + }, + { + "id": 2646, + "cuisine": "italian", + "ingredients": [ + "pizza crust", + "plum tomatoes", + "pesto", + "part-skim mozzarella cheese" + ] + }, + { + "id": 5206, + "cuisine": "irish", + "ingredients": [ + "cooking spray", + "salt", + "black pepper", + "yukon gold potatoes", + "low-fat sour cream", + "leeks", + "olive oil", + "1% low-fat milk" + ] + }, + { + "id": 38233, + "cuisine": "thai", + "ingredients": [ + "sugar", + "chicken thighs", + "cooking oil", + "fish sauce", + "garlic", + "black pepper" + ] + }, + { + "id": 39267, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "large garlic cloves", + "rice", + "unsweetened coconut milk", + "fresh ginger", + "peanut sauce", + "spareribs", + "sesame oil", + "tamari soy sauce", + "golden brown sugar", + "dry sherry", + "boiling water" + ] + }, + { + "id": 11913, + "cuisine": "indian", + "ingredients": [ + "chicken legs", + "chile pepper", + "ghee", + "tomato paste", + "fresh ginger root", + "garlic", + "chopped cilantro fresh", + "water", + "vegetable oil", + "onions", + "tomatoes", + "garam masala", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 20591, + "cuisine": "jamaican", + "ingredients": [ + "stock", + "curry powder", + "cracked black pepper", + "minced beef", + "onions", + "plain flour", + "bread crumbs", + "butter", + "garlic", + "celery", + "cold water", + "tumeric", + "dried thyme", + "ginger", + "oil", + "tomatoes", + "water", + "paprika", + "salt", + "chillies" + ] + }, + { + "id": 70, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "garlic", + "fresh rosemary", + "ground black pepper", + "onions", + "olive oil", + "boneless pork loin", + "kosher salt", + "pappardelle" + ] + }, + { + "id": 43928, + "cuisine": "thai", + "ingredients": [ + "extra firm tofu", + "coconut milk", + "fresh basil", + "red curry paste", + "eggplant", + "red bell pepper", + "vegetable oil", + "onions" + ] + }, + { + "id": 8530, + "cuisine": "korean", + "ingredients": [ + "jasmine rice", + "garlic", + "scallions", + "sugar", + "shiitake", + "Gochujang base", + "beansprouts", + "top round steak", + "sesame seeds", + "rice vinegar", + "carrots", + "soy sauce", + "sesame oil", + "Taiwanese bok choy" + ] + }, + { + "id": 275, + "cuisine": "french", + "ingredients": [ + "vanilla", + "milk", + "large egg yolks", + "sugar", + "corn starch" + ] + }, + { + "id": 43769, + "cuisine": "french", + "ingredients": [ + "orange juice concentrate", + "pumpkin purée", + "marshmallow creme", + "toasted pecans", + "maple syrup", + "ground cinnamon", + "gingersnap", + "ground nutmeg", + "cream cheese" + ] + }, + { + "id": 49111, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "white sugar", + "white vinegar", + "salt", + "bacon", + "brown sugar", + "green beans" + ] + }, + { + "id": 11886, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "serrano ham", + "manchego cheese", + "butter", + "dijon mustard", + "sourdough", + "membrillo" + ] + }, + { + "id": 45839, + "cuisine": "indian", + "ingredients": [ + "burger buns", + "fresh cilantro", + "chili powder", + "garlic cloves", + "panko breadcrumbs", + "chickpea flour", + "pepper", + "Sriracha", + "chickpeas", + "carrots", + "ground flaxseed", + "soy sauce", + "olive oil", + "salt", + "lemon juice", + "greens", + "spinach", + "curry powder", + "tahini", + "scallions", + "onions", + "ground cumin" + ] + }, + { + "id": 699, + "cuisine": "moroccan", + "ingredients": [ + "ground cloves", + "whole nutmegs", + "ground ginger", + "ground coriander", + "ground cinnamon", + "ground cardamom", + "ground black pepper", + "ground cumin" + ] + }, + { + "id": 24568, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "red pepper", + "olive oil", + "Italian bread", + "balsamic vinegar", + "onions", + "fresh basil", + "garlic" + ] + }, + { + "id": 8820, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "ground black pepper", + "garlic", + "honey", + "grated parmesan cheese", + "shredded mozzarella cheese", + "kosher salt", + "roasted red peppers", + "penne pasta", + "olive oil", + "crushed red pepper flakes" + ] + }, + { + "id": 16582, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "olive oil", + "lemon", + "saffron", + "tomato paste", + "pepper", + "flour", + "chickpeas", + "chicken stock", + "warm water", + "fresh ginger", + "salt", + "tomatoes", + "fresh cilantro", + "shallots", + "fresh parsley" + ] + }, + { + "id": 9058, + "cuisine": "moroccan", + "ingredients": [ + "ground pepper", + "paprika", + "ground cardamom", + "chopped cilantro fresh", + "preserved lemon", + "harissa", + "salt", + "couscous", + "tomato paste", + "cayenne", + "garlic", + "fat skimmed chicken broth", + "ground turmeric", + "pitted kalamata olives", + "diced tomatoes", + "fat", + "onions" + ] + }, + { + "id": 4715, + "cuisine": "vietnamese", + "ingredients": [ + "sweetened condensed milk", + "ice", + "espresso" + ] + }, + { + "id": 29061, + "cuisine": "japanese", + "ingredients": [ + "top round steak", + "vegetable oil", + "shiitake", + "soy sauce", + "fresh asparagus", + "green onions" + ] + }, + { + "id": 2107, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "chopped cilantro fresh", + "jalapeno chilies", + "finely chopped onion", + "plum tomatoes", + "green chilies" + ] + }, + { + "id": 22825, + "cuisine": "cajun_creole", + "ingredients": [ + "pecans", + "golden brown sugar", + "crumbled blue cheese", + "garlic cloves", + "chuck", + "hamburger buns", + "hot pepper sauce", + "creole seasoning", + "onions", + "mayonaise", + "ground black pepper", + "salt", + "okra pods", + "andouille sausage", + "olive oil", + "watercress", + "fresh lemon juice" + ] + }, + { + "id": 13758, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vanilla", + "eggs", + "self rising flour", + "confectioners sugar", + "milk", + "softened butter", + "food colouring", + "butter" + ] + }, + { + "id": 6886, + "cuisine": "french", + "ingredients": [ + "Madeira", + "foie gras", + "demi-glace", + "sherry vinegar", + "whipping cream", + "white bread", + "Fuyu persimmons", + "salt", + "egg bread", + "watercress" + ] + }, + { + "id": 14874, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "olive oil", + "garlic", + "black mustard seeds", + "ground cumin", + "amchur", + "lime wedges", + "scallions", + "coriander", + "sugar", + "fingerling potatoes", + "green chilies", + "chopped cilantro", + "tumeric", + "fresh ginger root", + "salt", + "ramps" + ] + }, + { + "id": 43399, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "cinnamon sticks", + "cardamom pods", + "cumin seed", + "coriander seeds" + ] + }, + { + "id": 38254, + "cuisine": "italian", + "ingredients": [ + "spinach", + "asiago", + "whole wheat pasta", + "olive oil", + "sweet onion", + "garlic", + "grape tomatoes", + "mushrooms" + ] + }, + { + "id": 41596, + "cuisine": "italian", + "ingredients": [ + "chestnuts", + "granulated sugar", + "whole milk ricotta cheese", + "coffee ice cream", + "large eggs", + "mascarpone", + "rum", + "powdered sugar", + "semisweet chocolate", + "chestnut flour" + ] + }, + { + "id": 33989, + "cuisine": "indian", + "ingredients": [ + "baby spinach leaves", + "naan", + "unsalted butter", + "chopped garlic", + "water", + "large shrimp", + "tomatoes", + "salt" + ] + }, + { + "id": 17004, + "cuisine": "korean", + "ingredients": [ + "water", + "barley" + ] + }, + { + "id": 4969, + "cuisine": "spanish", + "ingredients": [ + "cooked ham", + "red bell pepper", + "seasoning", + "potatoes", + "olive oil", + "onions", + "eggs", + "bacon" + ] + }, + { + "id": 31831, + "cuisine": "italian", + "ingredients": [ + "salt", + "starchy potatoes", + "grated nutmeg", + "flour" + ] + }, + { + "id": 46648, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "all-purpose flour", + "milk", + "buttermilk", + "sirloin tip roast", + "coarse salt", + "steak", + "vegetable oil", + "cayenne pepper" + ] + }, + { + "id": 36888, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "all-purpose flour", + "vegetable shortening", + "baking powder", + "milk", + "salt" + ] + }, + { + "id": 34471, + "cuisine": "greek", + "ingredients": [ + "ground pork", + "finely chopped fresh parsley", + "onions", + "salt", + "vinegar", + "caul fat" + ] + }, + { + "id": 25164, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "whole milk", + "golden brown sugar", + "heavy whipping cream", + "kahlúa", + "corn starch", + "instant espresso powder" + ] + }, + { + "id": 39600, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken skinless thigh", + "lime", + "epazote", + "bay leaf", + "lime juice", + "radishes", + "salt", + "oregano", + "white onion", + "hominy", + "garlic", + "chopped cilantro", + "avocado", + "fresh cilantro", + "tomatillos", + "pepitas", + "canola oil" + ] + }, + { + "id": 46357, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "ground black pepper", + "salt", + "dried thyme", + "ground red pepper", + "peanut oil", + "yellow corn meal", + "large eggs", + "all-purpose flour", + "garlic powder", + "buttermilk" + ] + }, + { + "id": 46905, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "sea salt", + "coconut milk", + "water", + "garam masala", + "ground coriander", + "basmati rice", + "cauliflower", + "fresh ginger", + "green chilies", + "onions", + "fresh cilantro", + "potatoes", + "scallions", + "cumin" + ] + }, + { + "id": 8753, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "olives", + "salt", + "blood orange", + "freshly ground pepper", + "fennel bulb" + ] + }, + { + "id": 37337, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "low salt chicken broth", + "dijon mustard", + "corn starch", + "dried basil", + "garlic cloves", + "white wine vinegar" + ] + }, + { + "id": 17636, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "shredded carrots", + "spinach", + "part-skim mozzarella cheese", + "italian seasoning", + "english muffins, split and toasted", + "chopped onion", + "vegetable oil cooking spray", + "chopped green bell pepper" + ] + }, + { + "id": 8997, + "cuisine": "japanese", + "ingredients": [ + "prawns", + "rice flour", + "seasoning salt", + "salt", + "vegetable oil", + "club soda", + "garlic powder", + "cayenne pepper" + ] + }, + { + "id": 28851, + "cuisine": "italian", + "ingredients": [ + "cheddar cheese", + "lasagna noodles", + "pepper", + "ranch dressing", + "mozzarella cheese", + "cooked chicken", + "evaporated milk" + ] + }, + { + "id": 4635, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "dried oregano", + "red wine vinegar", + "olive oil", + "boneless chop pork", + "lemon juice" + ] + }, + { + "id": 7782, + "cuisine": "korean", + "ingredients": [ + "cooking spray", + "garlic cloves", + "sliced green onions", + "chile paste", + "salt", + "fresh lime juice", + "sugar", + "flank steak", + "corn tortillas", + "lower sodium soy sauce", + "dark sesame oil", + "cabbage" + ] + }, + { + "id": 8031, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "raisins", + "onions", + "olive oil", + "pearl barley", + "curry powder", + "salt", + "slivered almonds", + "ground black pepper", + "flat leaf parsley" + ] + }, + { + "id": 49434, + "cuisine": "mexican", + "ingredients": [ + "chocolate bars", + "marshmallows", + "cinnamon graham crackers" + ] + }, + { + "id": 31318, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "grated parmesan cheese", + "chopped celery", + "mustard powder", + "cod", + "minced onion", + "butter", + "all-purpose flour", + "ground black pepper", + "potatoes", + "salt", + "red bell pepper", + "water", + "chopped green bell pepper", + "old bay seasoning", + "dry bread crumbs" + ] + }, + { + "id": 31027, + "cuisine": "irish", + "ingredients": [ + "vegetable oil cooking spray", + "golden raisins", + "salt", + "margarine", + "eggs", + "mace", + "brewed tea", + "all-purpose flour", + "candied orange peel", + "ground nutmeg", + "raisins", + "grated lemon zest", + "ground cinnamon", + "dried currants", + "baking powder", + "rum extract", + "dark brown sugar" + ] + }, + { + "id": 47095, + "cuisine": "korean", + "ingredients": [ + "sugar", + "water", + "noodles", + "pork", + "corn starch", + "baby bok choy", + "black bean sauce", + "red potato", + "kosher salt", + "onions" + ] + }, + { + "id": 4574, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "shiitake", + "sesame oil", + "oil", + "soy sauce", + "egg roll wrappers", + "garlic", + "corn starch", + "sugar", + "ground black pepper", + "ground pork", + "carrots", + "fresh ginger", + "cooking oil", + "salt", + "cabbage" + ] + }, + { + "id": 19757, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "quinoa", + "garlic", + "lime", + "diced tomatoes", + "chopped cilantro fresh", + "kosher salt", + "jalapeno chilies", + "frozen corn", + "olive oil", + "vegetable broth" + ] + }, + { + "id": 35570, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "butter", + "red bell pepper", + "black pepper", + "okra pods", + "yellow bell pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 44812, + "cuisine": "chinese", + "ingredients": [ + "water", + "salt", + "garlic cloves", + "cold water", + "orange", + "sauce", + "onions", + "soy sauce", + "star anise", + "chinese five-spice powder", + "brown sugar", + "fresh ginger", + "duck" + ] + }, + { + "id": 27858, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "unsalted butter", + "dried mint flakes", + "purple onion", + "ground cumin", + "olive oil", + "grated parmesan cheese", + "diced tomatoes", + "penne rigate", + "feta cheese", + "whole milk", + "ras el hanout", + "ground lamb", + "ground cinnamon", + "large eggs", + "large garlic cloves", + "all-purpose flour" + ] + }, + { + "id": 18624, + "cuisine": "irish", + "ingredients": [ + "crumbled blue cheese", + "salt", + "large egg whites", + "vegetable oil", + "sugar", + "cooking spray", + "all-purpose flour", + "large eggs", + "2% reduced-fat milk" + ] + }, + { + "id": 9406, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "napa cabbage leaves", + "garlic", + "chicken leg quarters", + "soy sauce", + "butter", + "rice vinegar", + "red chili peppers", + "sesame oil", + "salt", + "cucumber", + "pepper", + "ginger", + "long-grain rice" + ] + }, + { + "id": 35132, + "cuisine": "irish", + "ingredients": [ + "crusty bread", + "salt", + "baby potatoes", + "olive oil", + "fresh parsley", + "smoked streaky bacon", + "sausages", + "chicken stock", + "ground black pepper", + "onions" + ] + }, + { + "id": 33071, + "cuisine": "mexican", + "ingredients": [ + "piloncillo", + "ground allspice", + "water", + "hibiscus", + "ground cloves", + "cinnamon sticks", + "ground nutmeg", + "white sugar" + ] + }, + { + "id": 8321, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "freshly ground pepper", + "fresh rosemary", + "salt", + "fresh parsley", + "fresh basil", + "fresh oregano", + "crushed red pepper", + "garlic cloves" + ] + }, + { + "id": 20955, + "cuisine": "italian", + "ingredients": [ + "cold water", + "sugar", + "butter", + "chocolate morsels", + "cream sweeten whip", + "instant espresso granules", + "whipping cream", + "boiling water", + "kahlúa", + "large eggs", + "chocolate covered coffee beans", + "unflavored gelatin", + "mascarpone", + "pound cake" + ] + }, + { + "id": 45776, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "zucchini", + "baby carrots", + "fresh basil leaves", + "olive oil", + "dry white wine", + "asparagus spears", + "white onion", + "grated parmesan cheese", + "carrots", + "frozen peas", + "arborio rice", + "yellow crookneck squash", + "butter", + "low salt chicken broth" + ] + }, + { + "id": 6043, + "cuisine": "jamaican", + "ingredients": [ + "tomato sauce", + "ground black pepper", + "garlic", + "scallions", + "chipotles in adobo", + "avocado", + "dried thyme", + "instant white rice", + "cilantro leaves", + "coconut milk", + "water", + "red beans", + "chopped celery", + "skinless chicken thighs", + "onions", + "lime zest", + "lime juice", + "lime wedges", + "salt", + "carrots" + ] + }, + { + "id": 336, + "cuisine": "mexican", + "ingredients": [ + "water", + "condensed cream of mushroom soup", + "condensed cream of chicken soup", + "lean ground beef", + "Mexican cheese blend", + "chunky salsa", + "taco seasoning mix", + "corn tortillas" + ] + }, + { + "id": 25751, + "cuisine": "japanese", + "ingredients": [ + "pepper", + "panko breadcrumbs", + "plain flour", + "oil", + "salt", + "eggs", + "steak" + ] + }, + { + "id": 793, + "cuisine": "spanish", + "ingredients": [ + "minced garlic", + "chorizo spanish", + "red bell pepper", + "olive oil", + "pineapple juice", + "lime", + "cilantro leaves", + "large shrimp", + "dark rum", + "fresh lemon juice" + ] + }, + { + "id": 34367, + "cuisine": "chinese", + "ingredients": [ + "water", + "daikon", + "sugar", + "pork ribs", + "oil", + "soy sauce", + "shallots", + "goji berries", + "chinese rice wine", + "oysters", + "salt" + ] + }, + { + "id": 7406, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "corn tortillas", + "salsa", + "vegetable oil", + "black beans", + "sour cream" + ] + }, + { + "id": 7473, + "cuisine": "british", + "ingredients": [ + "demerara sugar", + "egg whites", + "fruit", + "butter", + "dried currants", + "frozen pastry puff sheets", + "mixed spice", + "white sugar" + ] + }, + { + "id": 7532, + "cuisine": "indian", + "ingredients": [ + "parsnips", + "garam masala", + "chili oil", + "olive oil", + "brown mustard seeds", + "chopped cilantro fresh", + "sugar", + "cooking spray", + "salt", + "coriander seeds", + "yukon gold potatoes", + "ground cumin" + ] + }, + { + "id": 5924, + "cuisine": "thai", + "ingredients": [ + "Sriracha", + "unsalted cashews", + "thai green curry paste", + "light soy sauce", + "kecap manis", + "garlic", + "frozen broad beans", + "basil leaves", + "yellow onion", + "chili flakes", + "cooking oil", + "chicken tenderloin" + ] + }, + { + "id": 5802, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "creole style seasoning", + "fresh parsley", + "ground black pepper", + "cayenne pepper", + "shrimp", + "cauliflower", + "paprika", + "condensed cheddar cheese soup", + "whole milk", + "chopped onion", + "sliced mushrooms" + ] + }, + { + "id": 41078, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "grated jack cheese", + "hot sauce", + "sour cream" + ] + }, + { + "id": 20665, + "cuisine": "spanish", + "ingredients": [ + "ground cinnamon", + "cornflour", + "milk", + "egg yolks", + "sugar", + "cinnamon sticks" + ] + }, + { + "id": 39471, + "cuisine": "french", + "ingredients": [ + "grated parmesan cheese", + "asparagus", + "bacon slices", + "ground black pepper", + "green onions", + "large eggs", + "salt" + ] + }, + { + "id": 9595, + "cuisine": "italian", + "ingredients": [ + "fresh leav spinach", + "cheese tortellini", + "fresh basil", + "cherry tomatoes", + "fresh lemon juice", + "capers", + "fresh parmesan cheese", + "navy beans", + "pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 27869, + "cuisine": "indian", + "ingredients": [ + "quinoa", + "nonfat milk", + "granny smith apples", + "paprika", + "chicken broth", + "chicken breasts", + "chopped onion", + "curry powder", + "chopped celery" + ] + }, + { + "id": 44776, + "cuisine": "british", + "ingredients": [ + "milk", + "salt", + "flour", + "eggs", + "lard" + ] + }, + { + "id": 17771, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "golden raisins", + "salt", + "olive oil", + "yellow bell pepper", + "olives", + "ground pepper", + "white wine vinegar", + "green bell pepper", + "green onions", + "fresh basil leaves" + ] + }, + { + "id": 43970, + "cuisine": "italian", + "ingredients": [ + "pecorino romano cheese", + "fresh fava bean", + "finely chopped onion", + "extra-virgin olive oil", + "plum tomatoes", + "italian sausage", + "large garlic cloves", + "pasta sheets", + "dry white wine", + "crushed red pepper" + ] + }, + { + "id": 27165, + "cuisine": "korean", + "ingredients": [ + "fish sauce", + "chicken broth", + "sesame oil", + "green onions", + "eggs" + ] + }, + { + "id": 11190, + "cuisine": "indian", + "ingredients": [ + "lime zest", + "sweet potatoes", + "purple onion", + "boiling water", + "spinach leaves", + "ginger", + "low-fat natural yogurt", + "red lentils", + "vegetable stock", + "carrots", + "basmati rice", + "lime", + "Flora Cuisine", + "curry paste" + ] + }, + { + "id": 21872, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "radishes", + "garlic cloves", + "dried oregano", + "chicken stock", + "ground black pepper", + "bone-in chicken breasts", + "red bell pepper", + "canola oil", + "tomato paste", + "white hominy", + "tortilla chips", + "onions", + "avocado", + "lime", + "cilantro leaves", + "dried chile peppers", + "cabbage" + ] + }, + { + "id": 29853, + "cuisine": "mexican", + "ingredients": [ + "granulated sugar", + "large egg whites" + ] + }, + { + "id": 1154, + "cuisine": "southern_us", + "ingredients": [ + "frozen whipped topping", + "chocolate instant pudding", + "instant butterscotch pudding mix", + "cream cheese", + "milk", + "butter", + "graham cracker crumbs", + "white sugar" + ] + }, + { + "id": 9069, + "cuisine": "french", + "ingredients": [ + "fennel seeds", + "kalamata", + "capers", + "dried oregano", + "great northern beans", + "salt", + "red wine vinegar" + ] + }, + { + "id": 46975, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "kielbasa", + "red bell pepper", + "celery ribs", + "large garlic cloves", + "long-grain rice", + "fresh parsley", + "olive oil", + "cayenne pepper", + "medium shrimp", + "chicken broth", + "diced tomatoes", + "ham", + "onions" + ] + }, + { + "id": 4892, + "cuisine": "indian", + "ingredients": [ + "moong dal", + "cilantro leaves", + "onions", + "tomatoes", + "capsicum", + "lemon juice", + "green mango", + "oil", + "garlic paste", + "salt", + "carrots" + ] + }, + { + "id": 21467, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "garlic", + "low sodium soy sauce", + "mirin", + "toasted sesame oil", + "tofu", + "short-grain rice", + "dried shiitake mushrooms", + "gari", + "green onions" + ] + }, + { + "id": 20919, + "cuisine": "italian", + "ingredients": [ + "shredded mozzarella cheese", + "marinara sauce", + "fresh basil leaves", + "penne pasta" + ] + }, + { + "id": 42013, + "cuisine": "italian", + "ingredients": [ + "water", + "extra-virgin olive oil", + "carrots", + "hot red pepper flakes", + "Turkish bay leaves", + "dried chickpeas", + "onions", + "celery ribs", + "semolina", + "fine sea salt", + "flat leaf parsley", + "warm water", + "vine ripened tomatoes", + "garlic cloves" + ] + }, + { + "id": 17821, + "cuisine": "italian", + "ingredients": [ + "sugar", + "mascarpone", + "bittersweet chocolate", + "fat free yogurt", + "vanilla extract", + "skim milk", + "angel food cake", + "unsweetened cocoa powder", + "kahlúa", + "water", + "instant espresso" + ] + }, + { + "id": 44138, + "cuisine": "southern_us", + "ingredients": [ + "water", + "onion powder", + "peanut oil", + "black pepper", + "garlic powder", + "salt", + "eggs", + "organic chicken", + "buttermilk", + "corn starch", + "pepper", + "flour", + "cayenne pepper" + ] + }, + { + "id": 5980, + "cuisine": "greek", + "ingredients": [ + "orange", + "anise", + "cinnamon sticks", + "unflavored gelatin", + "zinfandel", + "orange blossom honey", + "sugar", + "lemon", + "calimyrna figs", + "clove", + "honey", + "whipping cream", + "plain whole-milk yogurt" + ] + }, + { + "id": 41961, + "cuisine": "japanese", + "ingredients": [ + "ground pepper", + "flour", + "garlic", + "onions", + "fresh ginger", + "mirin", + "daikon", + "corn starch", + "olive oil", + "reduced sodium soy sauce", + "beef stock", + "salt", + "sliced green onions", + "shiitake", + "chuck roast", + "star anise", + "chopped cilantro" + ] + }, + { + "id": 27008, + "cuisine": "cajun_creole", + "ingredients": [ + "Corn Flakes Cereal", + "yellow corn meal", + "coleslaw", + "catfish fillets", + "creole seasoning", + "cooking spray" + ] + }, + { + "id": 31867, + "cuisine": "italian", + "ingredients": [ + "diced tomatoes", + "sugar", + "garlic salt", + "tomato paste", + "crushed red pepper", + "dried basil", + "dried oregano" + ] + }, + { + "id": 34248, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "chili paste", + "oil", + "brown sugar", + "honey", + "red pepper flakes", + "kiwi", + "pepper", + "asian pear", + "garlic cloves", + "pork", + "fresh ginger", + "salt" + ] + }, + { + "id": 13792, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "chees fresco queso", + "corn tortillas", + "swiss chard", + "salt", + "olive oil", + "garlic", + "onions", + "red pepper flakes", + "salsa" + ] + }, + { + "id": 38502, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "coriander", + "garam masala", + "salt", + "tumeric", + "vegetable oil", + "cumin", + "prawns", + "sauce" + ] + }, + { + "id": 7023, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "all-purpose flour", + "fresh rosemary", + "veal cutlets", + "plum tomatoes", + "dry white wine", + "low salt chicken broth", + "olive oil", + "large garlic cloves" + ] + }, + { + "id": 7783, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "garlic salt", + "chili powder", + "water", + "ground cumin", + "pasta", + "vegetable oil" + ] + }, + { + "id": 2472, + "cuisine": "korean", + "ingredients": [ + "wakame", + "extra-lean ground beef", + "minced garlic", + "salt", + "water", + "soy sauce", + "sesame oil" + ] + }, + { + "id": 45193, + "cuisine": "chinese", + "ingredients": [ + "scallion greens", + "Sriracha", + "carrots", + "soy sauce", + "wonton wrappers", + "toasted sesame oil", + "sugar", + "peeled fresh ginger", + "nonstick spray", + "white vinegar", + "large egg whites", + "scallions", + "large shrimp" + ] + }, + { + "id": 7501, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "olive oil", + "chopped fresh thyme", + "salt", + "chicken bones", + "green bell pepper, slice", + "black olives", + "lemon juice", + "eggs", + "ground black pepper", + "garlic", + "anchovy fillets", + "dried thyme", + "lettuce leaves", + "purple onion", + "crusty rolls" + ] + }, + { + "id": 34930, + "cuisine": "chinese", + "ingredients": [ + "coconut oil", + "ground red pepper", + "scallions", + "curry powder", + "salt", + "coconut milk", + "pepper", + "sesame oil", + "carrots", + "ground ginger", + "almond flour", + "coconut aminos", + "ground beef" + ] + }, + { + "id": 42967, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "white rice", + "onions", + "chicken broth", + "crushed garlic", + "all-purpose flour", + "saffron", + "pepper", + "green peas", + "shrimp", + "chorizo sausage", + "clams", + "chopped tomatoes", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 14080, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "minced garlic", + "seasoned rice wine vinegar", + "snow peas", + "soy sauce", + "vegetable oil", + "garlic cloves", + "sugar", + "fresh ginger root", + "rice vinegar", + "large shrimp", + "white pepper", + "garlic", + "corn starch" + ] + }, + { + "id": 45352, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "paprika", + "chopped onion", + "sugar", + "hard-boiled egg", + "bacon slices", + "spinach leaves", + "artichoke hearts", + "dry mustard", + "black pepper", + "red wine vinegar", + "salt" + ] + }, + { + "id": 46205, + "cuisine": "japanese", + "ingredients": [ + "water", + "chili powder", + "oil", + "stuffing", + "salt", + "ghee", + "coriander powder", + "maida flour", + "ground cardamom", + "sugar", + "baking powder", + "cumin seed", + "frozen peas" + ] + }, + { + "id": 47427, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "pita bread rounds", + "red bell pepper", + "olive oil", + "garlic", + "tomatoes", + "eggplant", + "salt", + "lime", + "butter", + "chopped cilantro fresh" + ] + }, + { + "id": 40064, + "cuisine": "french", + "ingredients": [ + "pepper", + "grated Gruyère cheese", + "heavy cream", + "salt", + "potatoes" + ] + }, + { + "id": 9010, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "vegetable broth", + "sake", + "green onions", + "carrots", + "udon", + "red miso", + "silken tofu", + "button mushrooms" + ] + }, + { + "id": 18611, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "cilantro leaves", + "fresh lime juice", + "whole peeled tomatoes", + "coarse salt", + "sour cream", + "canola oil", + "jalapeno chilies", + "garlic", + "corn tortillas", + "shredded Monterey Jack cheese", + "pickled jalapenos", + "chili powder", + "freshly ground pepper", + "onions" + ] + }, + { + "id": 35124, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "broccoli rabe", + "whole milk", + "garlic cloves", + "black pepper", + "parmigiano reggiano cheese", + "all-purpose flour", + "sausage casings", + "olive oil", + "large eggs", + "dry bread crumbs", + "fontina", + "unsalted butter", + "salt" + ] + }, + { + "id": 45605, + "cuisine": "filipino", + "ingredients": [ + "sesame oil", + "cucumber", + "sugar", + "purple onion", + "fish sauce", + "thai chile", + "peppercorns", + "vinegar", + "salt" + ] + }, + { + "id": 16334, + "cuisine": "southern_us", + "ingredients": [ + "dry white wine", + "corn starch", + "herbs", + "refrigerated piecrusts", + "cream of chicken soup", + "cooked chicken", + "frozen peas and carrots", + "low sodium chicken broth", + "buttermilk" + ] + }, + { + "id": 32035, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "fresh parmesan cheese", + "olive oil flavored cooking spray", + "frozen chopped spinach", + "large egg whites", + "part-skim ricotta cheese", + "pepper", + "large eggs", + "italian seasoning", + "manicotti shells", + "part-skim mozzarella cheese", + "salt" + ] + }, + { + "id": 16810, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "dry white wine", + "sliced mushrooms", + "fettucine", + "olive oil", + "fresh oregano", + "onions", + "fresh basil", + "parmesan cheese", + "corn starch", + "large shrimp", + "tomatoes", + "chicken bouillon", + "garlic", + "flat leaf parsley" + ] + }, + { + "id": 3641, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "egg whites", + "red wine vinegar", + "peanut oil", + "chicken stock", + "peanuts", + "chicken breasts", + "chili paste with garlic", + "fresh ginger", + "green onions", + "red pepper flakes", + "corn starch", + "sugar", + "fresh veget", + "sesame oil", + "rice vinegar" + ] + }, + { + "id": 43374, + "cuisine": "mexican", + "ingredients": [ + "taco sauce", + "milk", + "guacamole", + "garlic", + "water", + "salsa verde", + "shredded cabbage", + "dried oregano", + "kosher salt", + "sweet onion", + "condiments", + "cayenne pepper", + "avocado", + "pork shoulder roast", + "tortillas", + "chili powder", + "cumin" + ] + }, + { + "id": 9112, + "cuisine": "indian", + "ingredients": [ + "rose petals", + "almonds", + "rice", + "sugar", + "whole milk", + "pistachios", + "saffron" + ] + }, + { + "id": 14970, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "ginger", + "canola oil", + "flour", + "rice vinegar", + "honey", + "garlic", + "chicken wings", + "sesame oil", + "corn starch" + ] + }, + { + "id": 41396, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "drumstick", + "ground black pepper", + "chopped cilantro", + "green chile", + "peeled tomatoes", + "salt", + "chicken", + "chiles", + "olive oil", + "adobo sauce", + "yellow corn meal", + "chipotle chile", + "ancho powder", + "chipotle chile powder" + ] + }, + { + "id": 4748, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "taco seasoning mix", + "salt", + "Old El Paso Flour Tortillas", + "cranberry sauce", + "fresh cilantro", + "Sriracha", + "beer", + "avocado", + "soy sauce", + "olive oil", + "chili sauce", + "brown sugar", + "lime", + "jalapeno chilies", + "beef rib short" + ] + }, + { + "id": 41833, + "cuisine": "japanese", + "ingredients": [ + "miso paste", + "water", + "seaweed", + "tofu", + "green onions", + "dashi" + ] + }, + { + "id": 18031, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "yoghurt", + "salt", + "myzithra", + "large eggs", + "cheese", + "feta cheese", + "phyllo", + "kefalotyri", + "ground black pepper", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 29734, + "cuisine": "mexican", + "ingredients": [ + "sea salt", + "chopped cilantro", + "black-eyed peas", + "purple onion", + "shredded Monterey Jack cheese", + "lime", + "garlic", + "canola oil", + "Sriracha", + "tortilla chips" + ] + }, + { + "id": 26415, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "okra", + "large eggs", + "all-purpose flour", + "salt", + "cracker crumbs", + "peanut oil" + ] + }, + { + "id": 29801, + "cuisine": "chinese", + "ingredients": [ + "Philadelphia Cream Cheese", + "powdered sugar", + "oil", + "crab meat", + "salt", + "wonton wrappers" + ] + }, + { + "id": 24351, + "cuisine": "british", + "ingredients": [ + "savoy cabbage", + "salt", + "unsalted butter", + "baking potatoes", + "black pepper" + ] + }, + { + "id": 8480, + "cuisine": "japanese", + "ingredients": [ + "sake", + "sesame oil", + "boneless chicken thighs", + "peanut oil", + "soy sauce", + "vegetable oil", + "potato starch", + "fresh ginger" + ] + }, + { + "id": 27023, + "cuisine": "italian", + "ingredients": [ + "cream of tartar", + "pistachio nuts", + "salt", + "orange liqueur", + "eggs", + "vanilla extract", + "heavy whipping cream", + "semi-sweet chocolate morsels", + "water", + "cake flour", + "confectioners sugar", + "ground cinnamon", + "ricotta cheese", + "cream cheese", + "white sugar" + ] + }, + { + "id": 10425, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "coarse salt", + "water", + "white onion", + "serrano", + "fresh cilantro" + ] + }, + { + "id": 37188, + "cuisine": "irish", + "ingredients": [ + "steel-cut oats", + "salt", + "ground cinnamon", + "water", + "hazelnuts", + "hazelnut oil", + "brown sugar", + "sweet cherries" + ] + }, + { + "id": 24338, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "hamburger buns", + "paprika", + "chopped fresh mint", + "ground cinnamon", + "balsamic vinegar", + "feta cheese crumbles", + "baby spinach leaves", + "purple onion", + "ground lamb" + ] + }, + { + "id": 3457, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped celery", + "fire roasted diced tomatoes", + "andouille sausage", + "sweet pepper", + "red kidnei beans, rins and drain" + ] + }, + { + "id": 1355, + "cuisine": "japanese", + "ingredients": [ + "gari", + "rice vinegar", + "wasabi paste", + "black sesame seeds", + "scallions", + "Japanese soy sauce", + "fresh salmon", + "sugar", + "ginger", + "garlic cloves" + ] + }, + { + "id": 40738, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "chopped fresh thyme", + "beef rib short", + "tomato paste", + "kosher salt", + "dry red wine", + "hot water", + "black pepper", + "fat free less sodium beef broth", + "garlic cloves", + "cremini mushrooms", + "olive oil", + "all-purpose flour", + "onions" + ] + }, + { + "id": 42380, + "cuisine": "southern_us", + "ingredients": [ + "creole mustard", + "minced garlic", + "green tomatoes", + "creole seasoning", + "canola oil", + "mayonaise", + "prepared horseradish", + "paprika", + "shrimp", + "celery salt", + "water", + "buttermilk", + "lemon juice", + "shrimp and crab boil seasoning", + "shallots", + "salt", + "medium shrimp" + ] + }, + { + "id": 16857, + "cuisine": "southern_us", + "ingredients": [ + "turnip greens", + "vegetable oil", + "fresh lemon juice", + "black peppercorns", + "butternut squash", + "apples", + "kosher salt", + "buttermilk", + "country ham", + "shallots", + "extra-virgin olive oil" + ] + }, + { + "id": 2923, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "frozen edamame beans", + "onions", + "whole kernel corn, drain", + "seasoning salt" + ] + }, + { + "id": 7528, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "grated parmesan cheese", + "penne pasta", + "cauliflower", + "olive oil", + "crushed red pepper", + "pepper", + "garlic", + "fresh parsley", + "capers", + "whole peeled tomatoes", + "salt" + ] + }, + { + "id": 15990, + "cuisine": "indian", + "ingredients": [ + "strong white bread flour", + "salted butter", + "sunflower oil", + "warm water", + "yoghurt", + "kalonji", + "sugar", + "instant yeast", + "garlic", + "fresh coriander", + "sea salt" + ] + }, + { + "id": 27615, + "cuisine": "chinese", + "ingredients": [ + "water", + "chicken breasts", + "oyster sauce", + "soy sauce", + "egg whites", + "garlic", + "cooked white rice", + "kosher salt", + "mixed mushrooms", + "sauce", + "wood ear mushrooms", + "chinese rice wine", + "vegetables", + "sesame oil", + "corn starch" + ] + }, + { + "id": 26061, + "cuisine": "japanese", + "ingredients": [ + "hoisin sauce", + "corn starch", + "green onions", + "extra firm tofu", + "oil" + ] + }, + { + "id": 23053, + "cuisine": "mexican", + "ingredients": [ + "quinoa", + "salt", + "oil", + "black beans", + "jalapeno chilies", + "taco seasoning", + "chicken broth", + "bell pepper", + "salsa", + "onions", + "minced garlic", + "boneless skinless chicken breasts", + "shredded cheese" + ] + }, + { + "id": 5090, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "fresh lime juice", + "tomatillos", + "coarse salt", + "fresh cilantro", + "purple onion" + ] + }, + { + "id": 36862, + "cuisine": "french", + "ingredients": [ + "eau de vie", + "leaves", + "cane sugar", + "pinenuts", + "golden raisins", + "baking apples", + "large eggs", + "ground cinnamon", + "parmesan cheese", + "salt" + ] + }, + { + "id": 873, + "cuisine": "mexican", + "ingredients": [ + "salt and ground black pepper", + "purple onion", + "jalapeno chilies", + "plum tomatoes", + "garlic powder", + "chopped cilantro fresh", + "lime", + "garlic", + "ground cumin" + ] + }, + { + "id": 23726, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "sliced black olives", + "chili powder", + "sour cream", + "cheddar cheese", + "chopped green chilies", + "green onions", + "butter", + "water", + "garlic powder", + "boneless skinless chicken breasts", + "enchilada sauce", + "condensed cream of chicken soup", + "taco seasoning mix", + "flour tortillas", + "onion powder", + "onions" + ] + }, + { + "id": 48576, + "cuisine": "irish", + "ingredients": [ + "pepper", + "potatoes", + "butter", + "salt", + "onions", + "tomato paste", + "olive oil", + "beef stock", + "diced tomatoes", + "carrots", + "sugar", + "baking soda", + "baking powder", + "rosemary leaves", + "lean steak", + "water", + "flour", + "buttermilk", + "Guinness Lager", + "dried rosemary" + ] + }, + { + "id": 25118, + "cuisine": "chinese", + "ingredients": [ + "water", + "wonton wrappers", + "garlic cloves", + "water chestnuts, drained and chopped", + "peeled fresh ginger", + "chinese cabbage", + "low sodium soy sauce", + "cooking spray", + "dipping sauces", + "lean ground pork", + "green onions", + "dark sesame oil" + ] + }, + { + "id": 17586, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "cheese slices", + "refried beans", + "chorizo", + "french bread" + ] + }, + { + "id": 22678, + "cuisine": "greek", + "ingredients": [ + "pepper", + "dried mint flakes", + "salt", + "dried oregano", + "tomatoes", + "ground black pepper", + "garlic", + "dried dillweed", + "olive oil", + "red wine", + "lamb", + "plain yogurt", + "pita bread rounds", + "purple onion", + "cucumber" + ] + }, + { + "id": 428, + "cuisine": "korean", + "ingredients": [ + "sesame oil", + "water", + "soy sauce", + "kale" + ] + }, + { + "id": 6745, + "cuisine": "mexican", + "ingredients": [ + "water", + "Mexican beer", + "corn tortillas", + "chipotle chile", + "lime wedges", + "salsa", + "canola oil", + "boneless beef short ribs", + "garlic", + "chopped cilantro", + "white onion", + "guajillo", + "yellow onion", + "ground cumin" + ] + }, + { + "id": 31009, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "ground black pepper", + "dry bread crumbs", + "fresh lemon juice", + "water", + "crushed red pepper", + "chopped onion", + "ground cumin", + "fresh spinach", + "dry sherry", + "chickpeas", + "fresh parsley", + "olive oil", + "salt", + "garlic cloves" + ] + }, + { + "id": 20983, + "cuisine": "italian", + "ingredients": [ + "swiss chard", + "diced tomatoes", + "chopped onion", + "pepper", + "banana squash", + "garlic", + "italian seasoning", + "grated parmesan cheese", + "vegetable broth", + "bay leaf", + "olive oil", + "cannellini beans", + "salt" + ] + }, + { + "id": 19572, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "butter", + "honey", + "salt", + "milk", + "buttermilk", + "eggs", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 15273, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "fresh parsley", + "fat free less sodium chicken broth", + "salt", + "capers", + "balsamic vinegar", + "boneless skinless chicken breast halves", + "olive oil", + "fresh lemon juice" + ] + }, + { + "id": 14198, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "jalapeno chilies", + "canola oil" + ] + }, + { + "id": 18643, + "cuisine": "french", + "ingredients": [ + "2% reduced-fat milk", + "corn starch", + "eggs", + "maple syrup", + "sugar", + "margarine", + "vanilla extract" + ] + }, + { + "id": 17816, + "cuisine": "mexican", + "ingredients": [ + "Franks Hot Sauce", + "salt", + "shredded cheddar cheese", + "chicken", + "pepper", + "sour cream", + "black beans", + "green onions" + ] + }, + { + "id": 46893, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "pears", + "unsalted butter", + "sour cream", + "sugar", + "confectioners sugar", + "light pancake syrup", + "puff pastry" + ] + }, + { + "id": 1110, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "apple cider vinegar", + "fat", + "mushroom powder", + "salt", + "water", + "garlic", + "bone in chicken thighs", + "black peppercorns", + "fresh bay leaves", + "coconut aminos" + ] + }, + { + "id": 21375, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "flour tortillas", + "diced tomatoes", + "fresh cilantro", + "chili powder", + "red bell pepper", + "cooked rice", + "olive oil", + "sea salt", + "onions", + "lime juice", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 42833, + "cuisine": "mexican", + "ingredients": [ + "cilantro", + "enchilada sauce", + "taco seasoning mix", + "skinless chicken breasts", + "tomatoes", + "garlic", + "flour tortillas", + "shredded cheese" + ] + }, + { + "id": 5328, + "cuisine": "italian", + "ingredients": [ + "light sour cream", + "ground black pepper", + "pecorino romano cheese", + "large egg whites", + "large eggs", + "salt", + "olive oil", + "mushrooms", + "fava beans", + "finely chopped fresh parsley", + "fresh tarragon" + ] + }, + { + "id": 17188, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "green onions", + "cilantro leaves", + "canola oil", + "kidney beans", + "purple onion", + "whole kernel corn, drain", + "lime", + "yellow bell pepper", + "chickpeas", + "black beans", + "orzo pasta", + "salt", + "red bell pepper" + ] + }, + { + "id": 19622, + "cuisine": "southern_us", + "ingredients": [ + "pork", + "dri leav thyme", + "garlic", + "water", + "onions", + "white vinegar", + "salt" + ] + }, + { + "id": 26498, + "cuisine": "italian", + "ingredients": [ + "salt", + "granulated sugar", + "eggs", + "grated lemon zest", + "cake flour" + ] + }, + { + "id": 27140, + "cuisine": "japanese", + "ingredients": [ + "wasabi", + "soy sauce", + "seaweed", + "jumbo shrimp", + "salt", + "red bell pepper", + "avocado", + "sticky rice", + "cucumber", + "sugar", + "rice vinegar", + "white sesame seeds" + ] + }, + { + "id": 32353, + "cuisine": "italian", + "ingredients": [ + "chopped almonds", + "dried oregano", + "dried basil", + "broccoli", + "grated parmesan cheese", + "dry bread crumbs", + "pepper", + "salt" + ] + }, + { + "id": 37070, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "chopped cilantro fresh", + "seasoning", + "vegetable oil", + "baby arugula", + "tequila", + "lime", + "margarita mix" + ] + }, + { + "id": 2298, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "crushed red pepper", + "black pepper", + "paprika", + "cumin", + "chili powder", + "salt", + "onion powder", + "dried oregano" + ] + }, + { + "id": 15291, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "crust", + "grits", + "water", + "vanilla extract", + "pecan halves", + "butter", + "corn syrup" + ] + }, + { + "id": 8274, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "superfine sugar", + "buttermilk", + "fresh lime juice", + "sugar", + "unsalted butter", + "all-purpose flour", + "blackberries", + "shortening", + "baking soda", + "sea salt", + "whiskey", + "luke warm water", + "active dry yeast", + "baking powder", + "fresh mint" + ] + }, + { + "id": 23521, + "cuisine": "italian", + "ingredients": [ + "potatoes", + "eggs", + "all-purpose flour", + "self rising flour" + ] + }, + { + "id": 28342, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "apple cider vinegar", + "garlic", + "brown sugar", + "jamaican jerk season", + "red pepper flakes", + "salt", + "olive oil", + "butter", + "purple onion", + "pineapple preserves", + "shallots", + "chicken drumsticks", + "red bell pepper" + ] + }, + { + "id": 8791, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "fresh basil leaves", + "cooking spray", + "chicken", + "pitas", + "plum tomatoes", + "goat cheese" + ] + }, + { + "id": 242, + "cuisine": "korean", + "ingredients": [ + "romaine lettuce", + "sesame seeds", + "gingerroot", + "soy sauce", + "sesame oil", + "cooked white rice", + "sugar", + "mirin", + "garlic cloves", + "rib eye steaks", + "black pepper", + "hot bean paste", + "onions" + ] + }, + { + "id": 15347, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "okra", + "canola oil", + "tomatoes", + "yellow onion", + "garlic cloves", + "sea salt", + "ground coriander", + "ground cumin", + "water", + "cayenne pepper", + "flat leaf parsley" + ] + }, + { + "id": 20981, + "cuisine": "indian", + "ingredients": [ + "garbanzo beans", + "sea salt", + "medjool date", + "cumin", + "tumeric", + "shallots", + "cayenne pepper", + "coriander", + "diced bell pepper", + "potatoes", + "garlic", + "chopped cilantro", + "cream", + "lemon", + "smoked paprika", + "frozen peas" + ] + }, + { + "id": 39391, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "reduced fat milk", + "smoked trout", + "large egg whites", + "large eggs", + "salt", + "fresh dill", + "parmigiano reggiano cheese", + "green onions", + "asparagus", + "cooking spray", + "canola oil" + ] + }, + { + "id": 23147, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "fresh coriander", + "paprika", + "garlic puree", + "ghee", + "green cardamom pods", + "white onion", + "chicken breasts", + "salt", + "cinnamon sticks", + "sugar", + "fenugreek", + "ginger", + "garlic cloves", + "ground cumin", + "tomato purée", + "pepper", + "lemon", + "green chilies", + "coconut milk" + ] + }, + { + "id": 44020, + "cuisine": "mexican", + "ingredients": [ + "pickled jalapeno peppers", + "water", + "romaine lettuce leaves", + "corn tortillas", + "crema mexicana", + "corn oil", + "garlic cloves", + "chile sauce", + "red potato", + "radishes", + "fine sea salt", + "chicken thighs", + "white onion", + "queso fresco", + "carrots" + ] + }, + { + "id": 3245, + "cuisine": "korean", + "ingredients": [ + "white vinegar", + "reduced sodium soy sauce", + "kosher salt", + "toasted sesame oil", + "fresh spinach", + "garlic cloves", + "ground black pepper" + ] + }, + { + "id": 40403, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "milk", + "salt", + "flour", + "sugar", + "vegetable shortening" + ] + }, + { + "id": 33603, + "cuisine": "vietnamese", + "ingredients": [ + "lime", + "cilantro", + "glass noodles", + "Boston lettuce", + "mirin", + "persian cucumber", + "avocado", + "thai basil", + "peanut butter", + "rice paper", + "soy sauce", + "Sriracha", + "carrots" + ] + }, + { + "id": 19691, + "cuisine": "korean", + "ingredients": [ + "Korean chile flakes", + "fresh lemon juice", + "pepper", + "kosher salt", + "celery", + "peanut oil" + ] + }, + { + "id": 6862, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "red chile powder", + "boneless chicken breast", + "butter", + "green chilies", + "cashew nuts", + "garlic paste", + "mace", + "yoghurt", + "salt", + "lemon juice", + "ground cumin", + "black peppercorns", + "honey", + "kashmiri chile", + "kasuri methi", + "mustard oil", + "ginger paste", + "clove", + "cream", + "garam masala", + "cinnamon", + "tomato ketchup", + "coriander" + ] + }, + { + "id": 20123, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "pecan pie", + "sweetened condensed milk", + "chocolate morsels", + "vanilla extract" + ] + }, + { + "id": 22712, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "scallions", + "chili powder", + "ground pepper", + "fresh lime juice", + "black beans", + "coarse salt" + ] + }, + { + "id": 31428, + "cuisine": "mexican", + "ingredients": [ + "tostada shells", + "jalapeno chilies", + "grouper", + "chopped cilantro fresh", + "low-fat sour cream", + "olive oil", + "chili powder", + "fresh lime juice", + "sliced green onions", + "corn kernels", + "cooking spray", + "red bell pepper", + "plum tomatoes", + "romaine lettuce", + "ground black pepper", + "salt", + "onions", + "ground cumin" + ] + }, + { + "id": 9373, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "oil", + "kosher salt", + "ground black pepper", + "cream of tartar", + "olive oil", + "fresh parsley", + "ricotta salata", + "green onions" + ] + }, + { + "id": 7666, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "pecorino cheese", + "grana padano", + "pasta", + "cracked black pepper", + "kosher salt" + ] + }, + { + "id": 40617, + "cuisine": "korean", + "ingredients": [ + "vegetable oil", + "salt", + "green bell pepper", + "red bell pepper", + "large eggs" + ] + }, + { + "id": 26676, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "corn", + "jalapeno chilies", + "soba noodles", + "galangal", + "sugar", + "green curry paste", + "button mushrooms", + "shrimp", + "bamboo shoots", + "fish sauce", + "lime", + "basil", + "garlic chili sauce", + "onions", + "chicken broth", + "lemongrass", + "shiitake", + "ginger", + "coconut milk" + ] + }, + { + "id": 38067, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "butter", + "eggs", + "vegetable oil", + "chopped nuts", + "bourbon whiskey", + "vanilla extract", + "sugar", + "almond extract" + ] + }, + { + "id": 14778, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "honey", + "sesame oil", + "corn starch", + "minced garlic", + "boneless skinless chicken breasts", + "rice vinegar", + "ketchup", + "flour", + "salt", + "canola oil", + "cold water", + "water", + "baking powder", + "oil" + ] + }, + { + "id": 636, + "cuisine": "french", + "ingredients": [ + "golden brown sugar", + "eggs", + "whole milk ricotta cheese", + "rhubarb", + "frozen pastry puff sheets", + "powdered sugar" + ] + }, + { + "id": 35408, + "cuisine": "greek", + "ingredients": [ + "garbanzo beans", + "liquid", + "black pepper", + "garlic", + "tahini", + "lemon juice", + "olive oil", + "salt" + ] + }, + { + "id": 22658, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "water", + "all-purpose flour", + "medium shrimp", + "store bought low sodium chicken stock", + "bacon", + "fresh lemon juice", + "safflower oil", + "coarse salt", + "garlic cloves", + "grits", + "cheddar cheese", + "unsalted butter", + "freshly ground pepper", + "onions" + ] + }, + { + "id": 44866, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "onions", + "fresh lime juice", + "avocado", + "chipotles in adobo", + "salt", + "ground cumin" + ] + }, + { + "id": 18389, + "cuisine": "indian", + "ingredients": [ + "clove", + "cilantro leaves", + "ghee", + "cinnamon", + "jeera", + "water", + "cardamom", + "basmati rice", + "salt", + "bay leaf" + ] + }, + { + "id": 40014, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "granulated sugar", + "buttermilk", + "baking soda", + "baking powder", + "salt", + "seasoning salt", + "whole milk", + "cake flour", + "unsalted butter", + "breakfast sausages", + "all-purpose flour" + ] + }, + { + "id": 20863, + "cuisine": "mexican", + "ingredients": [ + "guacamole", + "monterey jack", + "crema", + "salsa", + "tortillas", + "shrimp" + ] + }, + { + "id": 35041, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "sugar", + "salmon steaks", + "soy sauce" + ] + }, + { + "id": 30649, + "cuisine": "british", + "ingredients": [ + "milk", + "buttermilk", + "sugar", + "unsalted butter", + "jam", + "eggs", + "baking soda", + "salt", + "dried currants", + "butter", + "all-purpose flour" + ] + }, + { + "id": 14351, + "cuisine": "japanese", + "ingredients": [ + "plain flour", + "karashi", + "spring onions", + "tomato ketchup", + "panko breadcrumbs", + "sake", + "fresh ginger root", + "salt", + "garlic cloves", + "dark soy sauce", + "vegetables", + "worcestershire sauce", + "free range egg", + "sugar", + "mirin", + "chinese cabbage", + "steak" + ] + }, + { + "id": 14146, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "chopped cilantro", + "salsa", + "green bell pepper", + "boneless pork loin", + "flour tortillas" + ] + }, + { + "id": 48911, + "cuisine": "filipino", + "ingredients": [ + "water", + "jicama", + "carrots", + "bamboo shoots", + "egg roll wrappers", + "garlic", + "beansprouts", + "ground black pepper", + "vegetable oil", + "green beans", + "soy sauce", + "water chestnuts", + "diced celery", + "onions" + ] + }, + { + "id": 4252, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "shredded sharp cheddar cheese", + "chili powder", + "dinner rolls", + "vegetable oil", + "garlic powder", + "ground beef" + ] + }, + { + "id": 46135, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "sour cream", + "tomatillos", + "cactus pad", + "ground cumin", + "jalapeno chilies", + "cilantro leaves", + "fresh lime juice", + "purple onion", + "red bell pepper" + ] + }, + { + "id": 20668, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "vegetable oil", + "cumin seed", + "ground pepper", + "fenugreek seeds", + "ground turmeric", + "cauliflower flowerets", + "salt", + "boiling potatoes", + "fennel seeds", + "garam masala", + "ground coriander" + ] + }, + { + "id": 4009, + "cuisine": "mexican", + "ingredients": [ + "cherry tomatoes", + "baby spinach", + "sour cream", + "flour tortillas", + "goat cheese", + "tuna steaks", + "freshly ground pepper", + "olive oil", + "salt" + ] + }, + { + "id": 40466, + "cuisine": "indian", + "ingredients": [ + "chicken thighs", + "vegetable oil", + "yoghurt", + "spices" + ] + }, + { + "id": 32480, + "cuisine": "greek", + "ingredients": [ + "dry red wine", + "cinnamon sticks", + "Turkish bay leaves", + "fresh oregano", + "red wine vinegar", + "garlic cloves", + "octopuses", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 8223, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "garlic", + "shredded mozzarella cheese", + "vidalia onion", + "marinara sauce", + "baby carrots", + "pepper", + "salt", + "smoked gouda", + "baby spinach leaves", + "shredded sharp cheddar cheese", + "small red potato" + ] + }, + { + "id": 4114, + "cuisine": "mexican", + "ingredients": [ + "tostada shells", + "shredded lettuce", + "avocado", + "jalapeno chilies", + "tuna", + "tomatoes", + "fat-free refried beans", + "low-fat milk", + "fresh lime", + "salsa" + ] + }, + { + "id": 3605, + "cuisine": "chinese", + "ingredients": [ + "honey", + "ginger", + "whiskey", + "chicken wings", + "green onions", + "green chilies", + "hoisin sauce", + "garlic", + "soy sauce", + "sesame oil", + "chinese five-spice powder" + ] + }, + { + "id": 41363, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "kosher salt", + "unsalted butter", + "scallions", + "canola oil", + "andouille sausage", + "dried thyme", + "yellow onion", + "celery", + "green bell pepper", + "dried basil", + "flour", + "ground white pepper", + "boneless chicken skinless thigh", + "ground black pepper", + "cayenne pepper", + "cooked white rice" + ] + }, + { + "id": 23437, + "cuisine": "italian", + "ingredients": [ + "Bertolli® Classico Olive Oil", + "boneless skinless chicken breast halves", + "eggs", + "linguine", + "chicken broth", + "bacon, crisp-cooked and crumbled", + "bertolli vineyard premium collect marinara with burgundi wine sauc", + "bread crumb fresh", + "shredded mozzarella cheese" + ] + }, + { + "id": 9291, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "powdered sugar", + "orange liqueur", + "tequila", + "margarita salt", + "fresh lime juice" + ] + }, + { + "id": 45423, + "cuisine": "italian", + "ingredients": [ + "( oz.) tomato sauce", + "ground veal", + "sliced mushrooms", + "italian seasoning mix", + "finely chopped onion", + "dry bread crumbs", + "spaghetti", + "beef", + "diced tomatoes", + "fresh basil leaves", + "parmesan cheese", + "large eggs", + "fat skimmed chicken broth" + ] + }, + { + "id": 31462, + "cuisine": "italian", + "ingredients": [ + "solid pack pumpkin", + "dry white wine", + "corn starch", + "ground nutmeg", + "white rice", + "chicken broth", + "grated parmesan cheese", + "salt", + "ground pepper", + "butter", + "onions" + ] + }, + { + "id": 45412, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "fresh thyme leaves", + "flat leaf parsley", + "olive oil", + "baby carrots", + "kosher salt", + "balsamic vinegar", + "onions", + "ground black pepper", + "small red potato" + ] + }, + { + "id": 33048, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "whole grain thin spaghetti", + "scallions", + "red bell pepper", + "baby bok choy", + "shiitake", + "grapeseed oil", + "oyster sauce", + "chicken broth", + "fresh ginger", + "sesame oil", + "organic sugar", + "onions", + "soy sauce", + "boneless chicken breast", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 42879, + "cuisine": "italian", + "ingredients": [ + "pistachios", + "salt", + "dried cherry", + "butter", + "large eggs", + "vanilla extract", + "sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 6164, + "cuisine": "thai", + "ingredients": [ + "water", + "green onions", + "galangal", + "fish sauce", + "peanuts", + "thai chile", + "chopped cilantro fresh", + "kaffir lime leaves", + "lemongrass", + "lime wedges", + "medium shrimp", + "straw mushrooms", + "chili paste", + "fresh lime juice" + ] + }, + { + "id": 37704, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "kidney beans", + "extra-virgin olive oil", + "vidalia", + "ground black pepper", + "salt", + "sugar", + "sherry vinegar", + "garlic", + "haricots verts", + "sweet onion", + "wax beans" + ] + }, + { + "id": 29489, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic", + "eggs", + "grated parmesan cheese", + "fresh parsley", + "prosciutto", + "salt", + "romano cheese", + "ricotta cheese" + ] + }, + { + "id": 6115, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "dried basil", + "salt", + "cooked shrimp", + "ground cumin", + "sugar", + "diced tomatoes", + "crabmeat", + "dried oregano", + "green chile", + "flour tortillas", + "all-purpose flour", + "onions", + "pepper", + "garlic", + "sour cream", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 9829, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "fresh cilantro", + "hoisin sauce", + "butter", + "crushed red pepper flakes", + "strawberries", + "ground coriander", + "red bell pepper", + "adobo sauce", + "green peppercorns", + "kosher salt", + "salted butter", + "chives", + "sea salt", + "extra-virgin olive oil", + "taco seasoning", + "pork loin chops", + "chipotle peppers", + "chorizo sausage", + "blueberri preserv", + "orange", + "ground black pepper", + "balsamic vinegar", + "basil", + "garlic", + "filet", + "thyme leaves", + "chipotles in adobo", + "unsweetened cocoa powder", + "black pepper", + "honey", + "boneless skinless chicken breasts", + "heavy cream", + "cracked black pepper", + "coffee beans", + "garlic cloves", + "steak", + "onions" + ] + }, + { + "id": 36254, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "vegan margarine", + "cardamom pods", + "onions", + "coriander seeds", + "raisins", + "carrots", + "cashew nuts", + "fresh cilantro", + "chili powder", + "garlic cloves", + "frozen peas", + "clove", + "quinoa", + "vegetable broth", + "cinnamon sticks", + "ground cumin" + ] + }, + { + "id": 23839, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "bay leaves", + "pork shoulder", + "water", + "salt", + "chicken", + "pepper", + "garlic", + "onions", + "vinegar", + "oil" + ] + }, + { + "id": 40283, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "butter", + "garlic", + "dry white wine", + "extra-virgin olive oil", + "parsley leaves", + "lemon", + "shrimp", + "black pepper", + "shallots", + "linguine" + ] + }, + { + "id": 11108, + "cuisine": "italian", + "ingredients": [ + "water", + "fresh lemon juice", + "fresh raspberries", + "sugar" + ] + }, + { + "id": 42685, + "cuisine": "mexican", + "ingredients": [ + "frozen whole kernel corn", + "wish bone guacamol ranch dress", + "black beans", + "purple onion", + "grape tomatoes", + "jalapeno chilies", + "chopped cilantro fresh", + "lime juice", + "torn romain lettuc leav" + ] + }, + { + "id": 23629, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "russet potatoes", + "mexican chorizo", + "black beans", + "salsa", + "canola oil", + "colby cheese", + "black olives", + "sour cream", + "avocado", + "half & half", + "goat cheese" + ] + }, + { + "id": 36565, + "cuisine": "italian", + "ingredients": [ + "dry vermouth", + "flour", + "salt", + "canned low sodium chicken broth", + "ground black pepper", + "garlic", + "pinenuts", + "butter", + "chicken livers", + "olive oil", + "raisins", + "flat leaf parsley" + ] + }, + { + "id": 42083, + "cuisine": "indian", + "ingredients": [ + "chicken stock", + "cilantro leaves", + "onions", + "quinoa", + "roasted salted cashews", + "chopped tomatoes", + "skinless chicken breasts", + "sunflower oil", + "curry paste" + ] + }, + { + "id": 26032, + "cuisine": "indian", + "ingredients": [ + "cream", + "baby spinach", + "ghee", + "tumeric", + "fresh lemon", + "fine sea salt", + "toasted sesame seeds", + "fresh ginger", + "buttermilk", + "onions", + "plain yogurt", + "spices", + "garlic cloves", + "paneer cheese" + ] + }, + { + "id": 19811, + "cuisine": "thai", + "ingredients": [ + "garlic paste", + "flour tortillas", + "carrots", + "canola oil", + "lemon grass", + "roasted peanuts", + "toasted sesame oil", + "boneless chicken skinless thigh", + "seasoned rice wine vinegar", + "Thai fish sauce", + "light brown muscavado sugar", + "granulated sugar", + "english cucumber", + "coriander" + ] + }, + { + "id": 30382, + "cuisine": "vietnamese", + "ingredients": [ + "chili paste", + "fish sauce", + "garlic cloves", + "sugar", + "fresh lime juice", + "warm water" + ] + }, + { + "id": 49175, + "cuisine": "cajun_creole", + "ingredients": [ + "collard greens", + "butter", + "fillets", + "parsley", + "white wine vinegar", + "cajun seasoning", + "yellow onion", + "cheddar cheese", + "garlic", + "grits" + ] + }, + { + "id": 41668, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "low sodium chicken broth", + "salt", + "ground cumin", + "avocado", + "hominy", + "diced tomatoes", + "oregano", + "boneless center cut pork chops", + "radishes", + "garlic", + "canola oil", + "celery ribs", + "lime", + "chili powder", + "chopped onion" + ] + }, + { + "id": 9206, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "pork tenderloin", + "salsa" + ] + }, + { + "id": 7322, + "cuisine": "southern_us", + "ingredients": [ + "shell-on shrimp", + "salt", + "chipotle chile", + "worcestershire sauce", + "unsalted butter", + "dry red wine", + "large garlic cloves" + ] + }, + { + "id": 23637, + "cuisine": "chinese", + "ingredients": [ + "fish sauce", + "steamed white rice", + "scallions", + "minced garlic", + "vegetable oil", + "caramel sauce", + "chili pepper", + "shallots", + "corn starch", + "chicken stock", + "fresh ginger", + "boneless skinless chicken" + ] + }, + { + "id": 43650, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "grated parmesan cheese", + "salt", + "fresh parsley", + "chicken broth", + "minced garlic", + "half & half", + "shredded mozzarella cheese", + "frozen chopped spinach", + "pepper", + "flour", + "penne pasta", + "black pepper", + "large eggs", + "butter", + "ground beef" + ] + }, + { + "id": 45593, + "cuisine": "korean", + "ingredients": [ + "bean threads", + "sesame seeds", + "carrots", + "safflower oil", + "mushrooms", + "onions", + "sugar", + "cayenne", + "toasted sesame oil", + "reduced sodium tamari", + "black pepper", + "baby spinach", + "chopped garlic" + ] + }, + { + "id": 38706, + "cuisine": "french", + "ingredients": [ + "saffron threads", + "red wine vinegar", + "large shrimp", + "mayonaise", + "garlic cloves", + "capers", + "cayenne pepper", + "roasted red peppers", + "sourdough baguette" + ] + }, + { + "id": 38433, + "cuisine": "chinese", + "ingredients": [ + "fennel seeds", + "liquorice", + "ginger", + "green cardamom", + "cinnamon sticks", + "water", + "szechwan peppercorns", + "garlic", + "scallions", + "beef", + "chinese black bean", + "cooking wine", + "dried chile", + "rock sugar", + "bean paste", + "star anise", + "brown cardamom", + "bay leaf" + ] + }, + { + "id": 47826, + "cuisine": "british", + "ingredients": [ + "pepper", + "garlic cloves", + "onions", + "salt", + "leg of lamb", + "pearl barley", + "celery", + "parsley", + "carrots" + ] + }, + { + "id": 7171, + "cuisine": "indian", + "ingredients": [ + "red kidney beans", + "bay leaves", + "salt", + "ground cumin", + "garam masala", + "ginger", + "onions", + "coriander powder", + "garlic", + "ground turmeric", + "tomatoes", + "chili powder", + "oil" + ] + }, + { + "id": 18231, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "water", + "cornflour", + "fillets", + "soy sauce", + "spring onions", + "white wine vinegar", + "bamboo shoots", + "eggs", + "fresh ginger root", + "garlic", + "chillies", + "fresh coriander", + "sesame oil", + "fresh mushrooms" + ] + }, + { + "id": 34385, + "cuisine": "korean", + "ingredients": [ + "daikon", + "red radishes", + "green onions", + "ginger", + "chili flakes", + "sea salt", + "carrots", + "napa cabbage", + "garlic cloves" + ] + }, + { + "id": 12340, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "water", + "flour", + "corn starch", + "sugar", + "sesame seeds", + "vegetable oil", + "granulated garlic", + "milk", + "chicken breasts", + "toasted sesame oil", + "chicken broth", + "soy sauce", + "vinegar", + "salt" + ] + }, + { + "id": 33221, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "pepper", + "lemon", + "green chilies", + "ground cumin", + "garlic paste", + "chili powder", + "salt", + "carrots", + "tomatoes", + "capsicum", + "kasuri methi", + "cumin seed", + "beans", + "butter", + "cilantro leaves", + "onions" + ] + }, + { + "id": 43228, + "cuisine": "italian", + "ingredients": [ + "jack cheese", + "vegetables", + "dry white wine", + "lemon juice", + "arborio rice", + "olive oil", + "unsalted butter", + "ricotta", + "pepper", + "asparagus", + "yellow onion", + "frozen peas", + "reduced sodium chicken broth", + "prosciutto", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 3416, + "cuisine": "italian", + "ingredients": [ + "sugar", + "linguine", + "boneless skinless chicken breast halves", + "balsamic vinegar", + "oil", + "fresh basil", + "large garlic cloves", + "low salt chicken broth", + "olive oil", + "purple onion" + ] + }, + { + "id": 23636, + "cuisine": "chinese", + "ingredients": [ + "chili oil", + "mung bean sprouts", + "light soy sauce", + "sesame paste", + "noodles", + "red chili peppers", + "peanut oil", + "ground beef", + "szechwan peppercorns", + "pickled vegetables" + ] + }, + { + "id": 22822, + "cuisine": "indian", + "ingredients": [ + "salt", + "jaggery", + "water", + "ground cardamom", + "oil", + "coconut", + "rice flour" + ] + }, + { + "id": 801, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed brown sugar", + "sweet potatoes", + "margarine", + "skim milk", + "salt", + "vegetable oil cooking spray", + "vanilla extract", + "chopped pecans", + "egg whites", + "all-purpose flour" + ] + }, + { + "id": 42007, + "cuisine": "korean", + "ingredients": [ + "ground pork", + "spam", + "rice cakes", + "firm tofu", + "onions", + "water", + "Gochujang base", + "kimchi", + "green onions", + "sausages", + "chopped garlic" + ] + }, + { + "id": 20792, + "cuisine": "vietnamese", + "ingredients": [ + "oil", + "water", + "rice flour", + "tapioca starch" + ] + }, + { + "id": 44500, + "cuisine": "indian", + "ingredients": [ + "chili", + "mayonaise", + "chopped onion", + "cider vinegar", + "fresh mint", + "cilantro leaves" + ] + }, + { + "id": 19004, + "cuisine": "japanese", + "ingredients": [ + "ground pepper", + "dressing", + "sea salt", + "grapeseed oil", + "salad", + "tuna fillets" + ] + }, + { + "id": 41301, + "cuisine": "moroccan", + "ingredients": [ + "eggs", + "garbanzo beans", + "rice", + "water", + "lemon", + "onions", + "ground cinnamon", + "olive oil", + "salt", + "saffron", + "pepper", + "flour", + "fresh parsley" + ] + }, + { + "id": 16712, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "lamb neck fillets", + "tomatoes", + "chopped parsley", + "paprika" + ] + }, + { + "id": 28250, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "low sodium chicken broth", + "fresh basil leaves", + "pepper", + "grated parmesan cheese", + "goat cheese", + "zucchini", + "salt", + "polenta", + "water", + "bell pepper", + "olive oil cooking spray" + ] + }, + { + "id": 34209, + "cuisine": "indian", + "ingredients": [ + "sugar", + "water", + "cauliflower florets", + "chili sauce", + "sweet chili sauce", + "maida flour", + "salt", + "oil", + "soy sauce", + "spring onions", + "garlic", + "green chilies", + "white vinegar", + "black pepper", + "ginger", + "tomato ketchup", + "corn starch" + ] + }, + { + "id": 1667, + "cuisine": "mexican", + "ingredients": [ + "Old El Paso™ mild red enchilada sauce", + "Pillsbury™ Refrigerated Crescent Dinner Rolls", + "Mexican cheese blend", + "cooked chicken", + "refrigerated crescent rolls", + "red enchilada sauce", + "cooked chicken", + "Mexican cheese blend" + ] + }, + { + "id": 48571, + "cuisine": "mexican", + "ingredients": [ + "jumbo shrimp", + "sea scallops", + "grate lime peel", + "olive oil", + "chopped onion", + "chopped cilantro", + "bottled clam juice", + "white hominy", + "sun-dried tomatoes in oil", + "salsa verde", + "garlic cloves" + ] + }, + { + "id": 10074, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "salt", + "vegetable oil", + "warm water", + "all-purpose flour" + ] + }, + { + "id": 43711, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "cake flour", + "baking powder", + "all-purpose flour", + "unsalted butter", + "salt", + "sugar", + "buttermilk" + ] + }, + { + "id": 6440, + "cuisine": "chinese", + "ingredients": [ + "water", + "green onions", + "corn starch", + "boneless skinless chicken breast halves", + "granulated sugar", + "unsalted dry roast peanuts", + "toasted sesame oil", + "fresh ginger", + "dry sherry", + "dried red chile peppers", + "canola oil", + "cooked brown rice", + "reduced sodium soy sauce", + "rice vinegar", + "bok choy" + ] + }, + { + "id": 36583, + "cuisine": "cajun_creole", + "ingredients": [ + "large eggs", + "sauce", + "cajun seasoning", + "shrimp", + "vegetable oil", + "fry mix", + "milk", + "yellow mustard" + ] + }, + { + "id": 10003, + "cuisine": "french", + "ingredients": [ + "jumbo shrimp", + "baguette", + "extra-virgin olive oil", + "freshly ground pepper", + "saffron threads", + "ground cloves", + "dry white wine", + "salt", + "onions", + "tomatoes", + "bottled clam juice", + "paprika", + "cayenne pepper", + "orange zest", + "mayonaise", + "fennel", + "garlic", + "fresh lemon juice" + ] + }, + { + "id": 24738, + "cuisine": "indian", + "ingredients": [ + "garlic cloves", + "diced tomatoes", + "ground cumin", + "spinach", + "greens", + "extra-virgin olive oil" + ] + }, + { + "id": 20039, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "white wine", + "zucchini", + "salted roast peanuts", + "peanut oil", + "soy sauce", + "salt and ground black pepper", + "boneless skinless chicken breasts", + "rice vinegar", + "red bell pepper", + "white vinegar", + "ketchup", + "chili paste", + "sesame oil", + "onion tops", + "cooked white rice", + "brown sugar", + "water", + "green onions", + "garlic", + "corn starch" + ] + }, + { + "id": 29446, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "garlic powder", + "lemon", + "creole seasoning", + "eggs", + "flour", + "hot sauce", + "mustard", + "cooking oil", + "paprika", + "cornmeal", + "black pepper", + "onion powder", + "cayenne pepper" + ] + }, + { + "id": 45711, + "cuisine": "french", + "ingredients": [ + "sugar", + "large egg yolks", + "grated lemon peel", + "rhubarb", + "cream", + "salt", + "ground cinnamon", + "golden brown sugar", + "all-purpose flour", + "sliced almonds", + "unsalted butter" + ] + }, + { + "id": 45039, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "hot red pepper flakes", + "cider vinegar", + "chile paste", + "granulated sugar", + "sesame oil", + "crushed red pepper", + "oyster sauce", + "coconut milk", + "grated orange", + "fresh red chili", + "natural peanut butter", + "soy sauce", + "water", + "sesame seeds", + "lemon zest", + "worcestershire sauce", + "pineapple juice", + "corn starch", + "fresh lime juice", + "white vinegar", + "brown sugar", + "sugar", + "minced garlic", + "chili", + "hoisin sauce", + "red pepper flakes", + "rice vinegar", + "lemon juice", + "toasted sesame oil", + "chicken broth", + "grated orange peel", + "ketchup", + "minced ginger", + "chili paste", + "green onions", + "white wine vinegar", + "orange juice", + "chili garlic paste", + "white sugar" + ] + }, + { + "id": 46417, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "freshly ground pepper", + "jalapeno chilies", + "tomatoes", + "salt", + "sweet onion", + "chopped cilantro fresh" + ] + }, + { + "id": 48080, + "cuisine": "mexican", + "ingredients": [ + "masa harina", + "vegetable oil", + "kosher salt", + "hot water" + ] + }, + { + "id": 15882, + "cuisine": "french", + "ingredients": [ + "dark rum", + "crème fraîche", + "unsalted butter", + "cake flour", + "large eggs", + "salt", + "sugar", + "lemon", + "double-acting baking powder" + ] + }, + { + "id": 49263, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "bacon", + "grated parmesan cheese", + "flat leaf parsley", + "kosher salt", + "linguine", + "egg yolks" + ] + }, + { + "id": 45956, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "fresh rosemary", + "duck breast halves", + "fennel seeds", + "garlic cloves" + ] + }, + { + "id": 40509, + "cuisine": "french", + "ingredients": [ + "kalamata", + "flat leaf parsley", + "tomatoes", + "California bay leaves", + "orange zest", + "extra-virgin olive oil", + "bok choy", + "large garlic cloves", + "thyme" + ] + }, + { + "id": 11665, + "cuisine": "greek", + "ingredients": [ + "mint leaves", + "sliced almonds", + "vanilla lowfat yogurt", + "honey" + ] + }, + { + "id": 22997, + "cuisine": "italian", + "ingredients": [ + "roma tomatoes", + "pizza crust", + "goat cheese", + "pesto sauce", + "garlic", + "olive oil", + "arugula" + ] + }, + { + "id": 44271, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "active dry yeast", + "vegetable oil", + "ground allspice", + "warm water", + "ground nutmeg", + "salt", + "onions", + "eggs", + "olive oil", + "garlic", + "fresh parsley", + "cauliflower", + "ground cloves", + "ground black pepper", + "all-purpose flour", + "ground cumin" + ] + }, + { + "id": 29887, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "water", + "shredded coconut", + "glutinous rice flour" + ] + }, + { + "id": 1764, + "cuisine": "french", + "ingredients": [ + "clove", + "potatoes", + "extra-virgin olive oil", + "turnips", + "ground nutmeg", + "bay leaves", + "celery", + "water", + "leeks", + "carrots", + "savoy cabbage", + "fresh thyme", + "sea salt", + "onions" + ] + }, + { + "id": 40300, + "cuisine": "moroccan", + "ingredients": [ + "eggplant", + "raisins", + "lentils", + "tomato sauce", + "garam masala", + "salt", + "onions", + "tumeric", + "garbanzo beans", + "vegetable broth", + "red bell pepper", + "black pepper", + "red pepper flakes", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 45296, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "garlic cloves", + "ground cinnamon", + "yellow onion", + "ground cumin", + "red potato", + "ground coriander", + "red lentils", + "vegetable stock", + "carrots" + ] + }, + { + "id": 24365, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "beef", + "garlic", + "vermicelli noodles", + "fish sauce", + "peanuts", + "vegetable oil", + "cucumber", + "salad", + "pickled carrots", + "shallots", + "white radish", + "onions", + "sugar", + "leaves", + "dipping sauces", + "beansprouts" + ] + }, + { + "id": 34996, + "cuisine": "thai", + "ingredients": [ + "light soy sauce", + "dark sesame oil", + "cilantro leaves", + "honey", + "fresh lime juice", + "creamy peanut butter" + ] + }, + { + "id": 47623, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "garlic", + "sour cream", + "lime juice", + "cooked chicken", + "shredded sharp cheddar cheese", + "chopped cilantro", + "flour tortillas", + "chili powder", + "salsa", + "cumin", + "cooking spray", + "onion powder", + "cream cheese, soften" + ] + }, + { + "id": 26464, + "cuisine": "mexican", + "ingredients": [ + "coconut sugar", + "lime juice", + "sea salt", + "ground cumin", + "coconut oil", + "cayenne", + "hot sauce", + "white corn tortillas", + "fresh cilantro", + "purple onion", + "ground cinnamon", + "black beans", + "jalapeno chilies", + "plantains" + ] + }, + { + "id": 18329, + "cuisine": "filipino", + "ingredients": [ + "water", + "napa cabbage", + "onions", + "fish sauce", + "egg noodles", + "salt", + "beef shank", + "garlic", + "peppercorns", + "fried garlic", + "green onions", + "oil" + ] + }, + { + "id": 43437, + "cuisine": "italian", + "ingredients": [ + "bell pepper", + "purple onion", + "fresh lemon juice", + "tomatoes", + "summer squash", + "garlic cloves", + "flat leaf parsley", + "red wine vinegar", + "ciabatta", + "juice", + "capers", + "extra-virgin olive oil", + "fresh herbs", + "grated lemon peel" + ] + }, + { + "id": 25375, + "cuisine": "chinese", + "ingredients": [ + "water", + "worcestershire sauce", + "hot sauce", + "oyster sauce", + "ketchup", + "plum sauce", + "rice vinegar", + "scallions", + "green bell pepper", + "baking soda", + "garlic", + "skinless chicken breasts", + "corn starch", + "white pepper", + "Shaoxing wine", + "all-purpose flour", + "oil" + ] + }, + { + "id": 26631, + "cuisine": "italian", + "ingredients": [ + "dough", + "cracked black pepper", + "coarse sea salt", + "lemon", + "olive oil flavored cooking spray", + "pinenuts", + "rosemary leaves" + ] + }, + { + "id": 26172, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "hot sauce", + "celery", + "dried oregano", + "kosher salt", + "bay leaves", + "scallions", + "dried kidney beans", + "green bell pepper", + "cayenne", + "yellow onion", + "cooked white rice", + "canola oil", + "dried thyme", + "garlic", + "ground white pepper", + "smoked ham hocks" + ] + }, + { + "id": 19747, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame oil", + "fresh spinach", + "sesame seeds", + "sugar", + "vinegar", + "black pepper", + "crushed garlic" + ] + }, + { + "id": 38346, + "cuisine": "russian", + "ingredients": [ + "water", + "grits", + "mozzarella cheese", + "salt" + ] + }, + { + "id": 31903, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "mushrooms", + "salt", + "grated parmesan cheese", + "red pepper flakes", + "boneless skinless chicken breast halves", + "water", + "roma tomatoes", + "garlic", + "dried oregano", + "ground black pepper", + "dry white wine", + "brie cheese" + ] + }, + { + "id": 12099, + "cuisine": "irish", + "ingredients": [ + "eggs", + "baking powder", + "wheat germ", + "granny smith apples", + "butter", + "baking soda", + "all-purpose flour", + "sugar", + "cinnamon" + ] + }, + { + "id": 38717, + "cuisine": "vietnamese", + "ingredients": [ + "avocado", + "water", + "garlic", + "boneless rib eye steaks", + "fish sauce", + "cherry tomatoes", + "freshly ground pepper", + "sugar", + "vermicelli", + "oil", + "mini cucumbers", + "lime", + "salt", + "bird chile" + ] + }, + { + "id": 30335, + "cuisine": "japanese", + "ingredients": [ + "honey", + "bamboo shoots", + "sake", + "green onions", + "boneless chicken skinless thigh", + "garlic cloves", + "low sodium soy sauce", + "zucchini" + ] + }, + { + "id": 15171, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "ginger", + "oyster sauce", + "onions", + "soy sauce", + "hoisin sauce", + "crushed red pepper flakes", + "salt", + "red bell pepper", + "chinese rice wine", + "Sriracha", + "napa cabbage", + "garlic", + "carrots", + "noodles", + "black pepper", + "green onions", + "ground pork", + "rice vinegar", + "celery" + ] + }, + { + "id": 31425, + "cuisine": "cajun_creole", + "ingredients": [ + "oil", + "cajun seasoning", + "cornmeal", + "russet potatoes", + "corn flour", + "salt" + ] + }, + { + "id": 36118, + "cuisine": "italian", + "ingredients": [ + "cheese ravioli", + "evaporated milk", + "Italian seasoned breadcrumbs", + "eggs", + "cheese", + "parsley", + "smoked gouda" + ] + }, + { + "id": 18190, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "baking potatoes", + "bay leaf", + "lean ground pork", + "salt", + "ground cloves", + "refrigerated piecrusts", + "onions", + "water", + "celery" + ] + }, + { + "id": 33717, + "cuisine": "moroccan", + "ingredients": [ + "reduced sodium chicken broth", + "lemon", + "chopped cilantro", + "fennel seeds", + "harissa", + "garlic cloves", + "ground cumin", + "golden raisins", + "ground coriander", + "ground lamb", + "ground cinnamon", + "vegetable oil", + "couscous" + ] + }, + { + "id": 15460, + "cuisine": "southern_us", + "ingredients": [ + "minced garlic", + "meat bones", + "water", + "diced onions", + "dried kidney beans" + ] + }, + { + "id": 21052, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "hearts of palm", + "cilantro", + "coconut cream", + "flax seed meal", + "kosher salt", + "jalapeno chilies", + "garlic", + "cream cheese, soften", + "coconut oil", + "lime juice", + "crushed red pepper flakes", + "ground coriander", + "pepper", + "chicken breasts", + "coconut flour", + "onions" + ] + }, + { + "id": 35729, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "peanuts", + "szechwan peppercorns", + "minced garlic", + "reduced sodium soy sauce", + "chopped onion", + "sugar", + "lo mein noodles", + "slaw mix", + "pasta", + "water", + "chunky peanut butter", + "dark sesame oil" + ] + }, + { + "id": 45841, + "cuisine": "korean", + "ingredients": [ + "green bell pepper", + "peeled fresh ginger", + "rib eye steaks", + "pickles", + "garlic cloves", + "low sodium soy sauce", + "hoagie buns", + "canola oil", + "mayonaise", + "scallions" + ] + }, + { + "id": 1182, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "olive oil", + "fat-free cottage cheese", + "dried oregano", + "dried basil", + "grated parmesan cheese", + "salt", + "water", + "part-skim mozzarella cheese", + "crushed red pepper", + "fresh basil", + "cherry tomatoes", + "cooking spray", + "oven-ready lasagna noodles" + ] + }, + { + "id": 15229, + "cuisine": "italian", + "ingredients": [ + "skim milk", + "margarine", + "garlic", + "freshly ground pepper", + "grated parmesan cheese", + "cream cheese", + "fettucine", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 31209, + "cuisine": "italian", + "ingredients": [ + "chopped fresh thyme", + "olive oil", + "radicchio", + "balsamic vinegar" + ] + }, + { + "id": 18271, + "cuisine": "spanish", + "ingredients": [ + "great northern beans", + "sweet paprika", + "andouille sausage links", + "olive oil", + "bay leaf", + "saffron threads", + "kale", + "red bell pepper", + "chicken stock", + "garlic", + "onions" + ] + }, + { + "id": 14202, + "cuisine": "southern_us", + "ingredients": [ + "tea bags", + "ground black pepper", + "chicken thighs", + "light brown sugar", + "kosher salt", + "salt", + "rosemary sprigs", + "lemon", + "ice cubes", + "sweet onion", + "garlic cloves" + ] + }, + { + "id": 10111, + "cuisine": "italian", + "ingredients": [ + "garbanzo beans", + "large garlic cloves", + "plum tomatoes", + "orzo pasta", + "fresh parsley", + "grated parmesan cheese", + "rubbed sage", + "dried rosemary", + "olive oil", + "canned beef broth", + "onions" + ] + }, + { + "id": 1128, + "cuisine": "italian", + "ingredients": [ + "kale leaves", + "chicken noodle soup", + "cannellini beans" + ] + }, + { + "id": 37109, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "extra-virgin olive oil", + "flat leaf parsley", + "water", + "green onions", + "fresh lemon juice", + "capers", + "zucchini", + "garlic cloves", + "fresh basil leaves", + "olive oil", + "Italian parsley leaves", + "green beans" + ] + }, + { + "id": 9952, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "black pepper", + "salt", + "balsamic vinegar", + "mozzarella cheese", + "fresh basil leaves" + ] + }, + { + "id": 11164, + "cuisine": "italian", + "ingredients": [ + "white onion", + "italian style rolls", + "provolone cheese", + "genoa salami", + "olive oil", + "sweet pepper", + "oregano", + "pepper", + "red wine vinegar", + "boiled ham", + "tomatoes", + "capicola", + "salt", + "iceberg lettuce" + ] + }, + { + "id": 9852, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "tortillas", + "salt", + "fresh tomatoes", + "chicken breasts", + "onions", + "table cream", + "jalapeno chilies", + "garlic cloves", + "chiles", + "grating cheese" + ] + }, + { + "id": 45574, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "garlic", + "greek yogurt", + "cracked black pepper", + "english cucumber", + "shallots", + "dill", + "white vinegar", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 22581, + "cuisine": "french", + "ingredients": [ + "granulated sugar", + "vanilla", + "chocolate sauce", + "milk", + "ricotta cheese", + "all-purpose flour", + "slivered almonds", + "large eggs", + "salt", + "orange zest", + "honey", + "butter", + "orange juice" + ] + }, + { + "id": 9082, + "cuisine": "spanish", + "ingredients": [ + "quail", + "raisins", + "dry white wine", + "garlic cloves", + "fennel bulb", + "extra-virgin olive oil", + "lemongrass", + "shallots", + "cinnamon sticks" + ] + }, + { + "id": 30985, + "cuisine": "japanese", + "ingredients": [ + "stock", + "vegetable oil", + "salt", + "dashi", + "caster", + "soy sauce", + "daikon", + "shiso", + "mirin", + "extra large eggs" + ] + }, + { + "id": 42612, + "cuisine": "italian", + "ingredients": [ + "navy beans", + "jalapeno chilies", + "diced celery", + "water", + "italian salad dressing mix", + "chopped cilantro fresh", + "cider vinegar", + "diced tomatoes", + "red bell pepper", + "olive oil", + "garlic cloves", + "sliced green onions" + ] + }, + { + "id": 38754, + "cuisine": "japanese", + "ingredients": [ + "dashi kombu", + "dried bonito flakes", + "water" + ] + }, + { + "id": 45037, + "cuisine": "greek", + "ingredients": [ + "water", + "large garlic cloves", + "dried currants", + "feta cheese", + "black pepper", + "swiss chard", + "olive oil", + "salt" + ] + }, + { + "id": 33197, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "balsamic vinegar", + "white miso", + "freshly ground pepper", + "sugar", + "vegetable oil", + "branzino fillets", + "mirin", + "mixed greens" + ] + }, + { + "id": 13005, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "white sugar", + "soy sauce", + "garlic", + "vegetable oil", + "sesame seeds", + "round steaks" + ] + }, + { + "id": 18203, + "cuisine": "mexican", + "ingredients": [ + "ketchup", + "avocado", + "carbonated beverages", + "fresh cilantro", + "saltines", + "cooked shrimp" + ] + }, + { + "id": 10210, + "cuisine": "italian", + "ingredients": [ + "barbecue sauce", + "yellow onion", + "prepared pizza crust", + "boneless skinless chicken breasts", + "Sargento® Traditional Cut Shredded Mozzarella Cheese", + "vegetable oil" + ] + }, + { + "id": 38581, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "erythritol", + "green onions", + "red bell pepper", + "fish sauce", + "lemon grass", + "garlic", + "galangal", + "kaffir lime leaves", + "lime juice", + "shallots", + "coconut milk", + "coconut oil", + "mushrooms", + "carrots", + "chicken" + ] + }, + { + "id": 32489, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "dry sherry", + "black bean sauce", + "garlic", + "green onions", + "firm tofu", + "olive oil", + "ground pork" + ] + }, + { + "id": 26647, + "cuisine": "mexican", + "ingredients": [ + "cider vinegar", + "salt", + "cherry tomatoes", + "avocado", + "extra-virgin olive oil", + "pepper", + "cucumber" + ] + }, + { + "id": 34240, + "cuisine": "british", + "ingredients": [ + "tomatoes", + "white wine", + "whole milk", + "ice water", + "salt", + "asparagus tips", + "nutmeg", + "fresh chives", + "zucchini", + "butter", + "artichokes", + "tuna", + "black peppercorns", + "pepper", + "spring onions", + "portabello mushroom", + "all-purpose flour", + "medium eggs", + "capers", + "water", + "watercress", + "heavy cream", + "allspice berries" + ] + }, + { + "id": 8579, + "cuisine": "japanese", + "ingredients": [ + "chives", + "short-grain rice", + "nori", + "dashi", + "fine sea salt", + "yellowtail" + ] + }, + { + "id": 49639, + "cuisine": "mexican", + "ingredients": [ + "tomatillo salsa", + "corn tortillas", + "cumin", + "avocado", + "garlic", + "onions", + "cilantro", + "pork shoulder", + "black pepper", + "salt", + "dried oregano" + ] + }, + { + "id": 17120, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "chili powder", + "tortilla chips", + "cheddar cheese", + "store bought low sodium chicken stock", + "chipotle", + "cilantro leaves", + "dried oregano", + "avocado", + "kosher salt", + "ground black pepper", + "garlic", + "sour cream", + "ground chicken", + "cherry tomatoes", + "jalapeno chilies", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 27213, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "fresh lemon juice", + "black pepper", + "shell-on shrimp", + "white sandwich bread", + "minced onion", + "cooked shrimp", + "cayenne", + "salt" + ] + }, + { + "id": 18621, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "salt", + "milk", + "vegetable oil", + "boiling water", + "cauliflower", + "tamarind pulp", + "coconut cream", + "chickpea flour", + "chili powder", + "mustard seeds" + ] + }, + { + "id": 35302, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "ground black pepper", + "worcestershire sauce", + "celery", + "tomatoes", + "water", + "cajun seasoning", + "salt", + "onions", + "chicken stock", + "louisiana hot sauce", + "boneless skinless chicken breasts", + "garlic", + "ghee", + "andouille sausage", + "bay leaves", + "white rice", + "medium shrimp" + ] + }, + { + "id": 27648, + "cuisine": "japanese", + "ingredients": [ + "sake", + "daikon", + "arame", + "white miso", + "konbu", + "water", + "scallions", + "lemon cucumber", + "Himalayan salt", + "carrots" + ] + }, + { + "id": 17658, + "cuisine": "greek", + "ingredients": [ + "ground cloves", + "eggplant", + "grated parmesan cheese", + "plain breadcrumbs", + "cinnamon sticks", + "kosher salt", + "large egg yolks", + "diced tomatoes", + "all-purpose flour", + "bay leaf", + "tomato paste", + "olive oil", + "unsalted butter", + "garlic", + "ground allspice", + "ground lamb", + "milk", + "ground black pepper", + "dry red wine", + "grated nutmeg", + "onions" + ] + }, + { + "id": 24029, + "cuisine": "chinese", + "ingredients": [ + "back bacon rashers", + "vegetable oil", + "green pepper", + "chillies", + "eggs", + "water", + "garlic", + "long-grain rice", + "red chili peppers", + "lemon", + "green chilies", + "onions", + "dark soy sauce", + "spring onions", + "salt", + "red bell pepper" + ] + }, + { + "id": 45990, + "cuisine": "thai", + "ingredients": [ + "avocado", + "Sriracha", + "cooked quinoa", + "water", + "creamy peanut butter", + "rice paper", + "romaine lettuce", + "red pepper", + "noodles", + "lime", + "gluten-free tamari" + ] + }, + { + "id": 20692, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "green onions", + "salt", + "bok choy", + "soy sauce", + "wonton wrappers", + "fresh mushrooms", + "eggs", + "sesame oil", + "dry bread crumbs", + "snow peas", + "ground black pepper", + "ground pork", + "uncook medium shrimp, peel and devein" + ] + }, + { + "id": 37593, + "cuisine": "cajun_creole", + "ingredients": [ + "creole mustard", + "fresh parsley", + "mayonaise", + "garlic", + "horseradish", + "sliced green onions" + ] + }, + { + "id": 46635, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "paprika", + "garlic cloves", + "fresh lemon", + "ground coriander", + "ground turmeric", + "jalapeno chilies", + "salt", + "chopped cilantro fresh", + "vegetable oil", + "catfish" + ] + }, + { + "id": 20149, + "cuisine": "italian", + "ingredients": [ + "vegetables", + "basil", + "basil pesto sauce", + "aioli", + "cooked shrimp", + "prosciutto", + "mozzarella balls", + "sun-dried tomatoes", + "salami" + ] + }, + { + "id": 623, + "cuisine": "brazilian", + "ingredients": [ + "sweetened condensed milk", + "butter", + "cocoa powder" + ] + }, + { + "id": 12048, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "enchilada sauce", + "pasilla pepper", + "corn", + "Mexican cheese", + "pork", + "rice", + "roasted tomatoes", + "corn chips", + "sour cream" + ] + }, + { + "id": 48523, + "cuisine": "chinese", + "ingredients": [ + "oyster sauce", + "chopped cilantro fresh", + "chinese noodles", + "ground white pepper", + "shrimp", + "sliced green onions", + "fat skimmed chicken broth", + "toasted sesame oil" + ] + }, + { + "id": 16797, + "cuisine": "italian", + "ingredients": [ + "boneless skinless chicken breasts", + "milk", + "condensed cream of mushroom soup", + "fettuccine pasta", + "butter", + "grated parmesan cheese", + "broccoli" + ] + }, + { + "id": 23336, + "cuisine": "french", + "ingredients": [ + "leeks", + "soft fresh goat cheese", + "olive oil", + "chopped fresh sage", + "kosher salt", + "butter", + "hazelnuts", + "butternut squash", + "heavy whipping cream" + ] + }, + { + "id": 15645, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "baking powder", + "chopped onion", + "monterey jack", + "lager beer", + "coarse salt", + "sour cream", + "safflower oil", + "unsalted butter", + "all-purpose flour", + "poblano chiles", + "corn kernels", + "lime wedges", + "freshly ground pepper" + ] + }, + { + "id": 39904, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "juice", + "romaine lettuce", + "green pepper", + "cucumber", + "capers", + "purple onion", + "feta cheese crumbles", + "vinaigrette dressing", + "kalamata", + "lemon juice", + "dried oregano" + ] + }, + { + "id": 35962, + "cuisine": "russian", + "ingredients": [ + "water", + "dill", + "sugar", + "buttermilk", + "onions", + "red beets", + "cucumber", + "boiled eggs", + "salt" + ] + }, + { + "id": 9138, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "butter", + "yellow corn meal", + "flour", + "salt", + "large eggs", + "buttermilk", + "sugar", + "baking powder" + ] + }, + { + "id": 47406, + "cuisine": "irish", + "ingredients": [ + "salt", + "caster sugar", + "plain flour", + "juice", + "butter" + ] + }, + { + "id": 30250, + "cuisine": "vietnamese", + "ingredients": [ + "brown sugar", + "herbs", + "rice vinegar", + "beansprouts", + "garlic paste", + "boneless chop pork", + "lettuce leaves", + "english cucumber", + "spring roll wrappers", + "warm water", + "hoisin sauce", + "creamy peanut butter", + "fish sauce", + "lime", + "garlic", + "red bell pepper" + ] + }, + { + "id": 26545, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "baking powder", + "sharp cheddar cheese", + "unsalted butter", + "bacon slices", + "baking soda", + "buttermilk", + "bread flour", + "melted butter", + "chopped fresh chives", + "salt" + ] + }, + { + "id": 13554, + "cuisine": "jamaican", + "ingredients": [ + "turbinado", + "ground nutmeg", + "sea salt", + "red bell pepper", + "olive oil", + "potatoes", + "cayenne pepper", + "onions", + "fresh spinach", + "zucchini", + "garlic", + "celery", + "fresh ginger root", + "vegetable stock", + "ground allspice", + "ground turmeric" + ] + }, + { + "id": 44562, + "cuisine": "indian", + "ingredients": [ + "white vinegar", + "olive oil", + "butter", + "chicken fingers", + "chicken stock", + "garam masala", + "yellow onion", + "black pepper", + "hot pepper sauce", + "apricot preserves", + "lime zest", + "garlic powder", + "salt" + ] + }, + { + "id": 3820, + "cuisine": "korean", + "ingredients": [ + "ginger juice", + "minced garlic", + "green onions", + "soy sauce", + "sesame salt", + "chili powder", + "pepper", + "pork ribs", + "sesame oil", + "sugar", + "chili paste", + "rice wine" + ] + }, + { + "id": 49668, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "frozen spinach", + "lasagne", + "passata", + "eggplant", + "mushrooms", + "pinenuts", + "roasted red peppers", + "ricotta" + ] + }, + { + "id": 27688, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "parsley", + "fat free cream cheese", + "french bread", + "non-fat sour cream", + "green onions", + "reduced fat swiss cheese", + "grated parmesan cheese", + "garlic", + "fat-free mayonnaise" + ] + }, + { + "id": 31969, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "cannellini beans", + "roasted garlic", + "seasoning", + "kale", + "extra-virgin olive oil", + "fat free less sodium chicken broth", + "diced tomatoes", + "Italian bread", + "sundried tomato paste", + "dried thyme", + "salt" + ] + }, + { + "id": 33085, + "cuisine": "french", + "ingredients": [ + "sheep’s milk cheese", + "champagne vinegar", + "dijon mustard", + "mixed greens", + "honey", + "extra-virgin olive oil", + "dried tart cherries", + "ground white pepper" + ] + }, + { + "id": 20061, + "cuisine": "italian", + "ingredients": [ + "porcini", + "fresh thyme", + "garlic cloves", + "sourdough loaf", + "crust", + "flat leaf parsley", + "duck fat", + "fine sea salt", + "squabs", + "confit", + "fresh lemon juice" + ] + }, + { + "id": 24552, + "cuisine": "thai", + "ingredients": [ + "boneless chop pork", + "palm sugar", + "shrimp", + "fish sauce", + "lime juice", + "vegetable oil", + "chopped cilantro fresh", + "soy sauce", + "unsalted roasted peanuts", + "garlic", + "wide rice noodles", + "water", + "radishes", + "beansprouts" + ] + }, + { + "id": 27204, + "cuisine": "mexican", + "ingredients": [ + "canned black beans", + "bell pepper", + "diced tomatoes", + "long-grain rice", + "diced onions", + "lime", + "spices", + "salt", + "canned corn", + "lettuce", + "water", + "boneless skinless chicken breasts", + "cilantro", + "sour cream", + "tomato paste", + "olive oil", + "butter", + "scallions" + ] + }, + { + "id": 8304, + "cuisine": "italian", + "ingredients": [ + "aged gouda", + "soppressata" + ] + }, + { + "id": 28063, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "pepper", + "dry white wine", + "garlic cloves", + "boiling water", + "black pepper", + "grated parmesan cheese", + "salt", + "boneless skinless chicken breast halves", + "dried porcini mushrooms", + "sun-dried tomatoes", + "purple onion", + "fresh parsley", + "chicken broth", + "olive oil", + "artichokes", + "fresh lemon juice" + ] + }, + { + "id": 38473, + "cuisine": "thai", + "ingredients": [ + "lime", + "green beans", + "red chili peppers", + "cilantro leaves", + "onions", + "brown sugar", + "vegetable oil", + "thai green curry paste", + "jasmine rice", + "coconut cream", + "beef steak" + ] + }, + { + "id": 84, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "chopped parsley", + "fresh rosemary", + "fresh thyme leaves", + "lemon juice", + "onions", + "minced garlic", + "yellow bell pepper", + "feta cheese crumbles", + "ground lamb", + "mint leaves", + "fat skimmed chicken broth", + "couscous" + ] + }, + { + "id": 12152, + "cuisine": "southern_us", + "ingredients": [ + "biscuits", + "lump crab meat", + "bay leaves", + "diced celery", + "diced onions", + "vegetable juice", + "seafood seasoning", + "vegetable broth", + "applewood smoked bacon", + "red potato", + "corn kernels", + "diced tomatoes", + "red bell pepper", + "green bell pepper", + "ground black pepper", + "paprika", + "flat leaf parsley" + ] + }, + { + "id": 25201, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "semisweet chocolate", + "large egg whites", + "all-purpose flour", + "unsalted butter", + "pepitas", + "sugar", + "salt" + ] + }, + { + "id": 22633, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "balsamic vinegar", + "fresh basil leaves", + "pasta", + "prosciutto", + "garlic cloves", + "capers", + "finely chopped onion", + "juice", + "olive oil", + "anchovy fillets" + ] + }, + { + "id": 41282, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "dry white wine", + "fresh lemon juice", + "capers", + "olive oil", + "butter", + "black pepper", + "broccoli rabe", + "lemon slices", + "seasoned bread crumbs", + "chicken cutlets", + "fresh parsley" + ] + }, + { + "id": 3040, + "cuisine": "cajun_creole", + "ingredients": [ + "bell pepper", + "cream of chicken soup", + "onions", + "ground meat", + "rice" + ] + }, + { + "id": 29033, + "cuisine": "thai", + "ingredients": [ + "sugar", + "crushed red pepper", + "garlic cloves", + "fresh basil", + "red cabbage", + "salt", + "chopped fresh mint", + "water", + "purple onion", + "fresh lime juice", + "fish sauce", + "vegetable oil", + "dark sesame oil", + "serrano chile" + ] + }, + { + "id": 40224, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "corn flour", + "salt", + "warm water", + "wheat flour" + ] + }, + { + "id": 24640, + "cuisine": "irish", + "ingredients": [ + "wheat bran", + "salt", + "low-fat buttermilk", + "flax seed meal", + "whole wheat flour", + "all-purpose flour", + "molasses", + "baking powder" + ] + }, + { + "id": 49262, + "cuisine": "japanese", + "ingredients": [ + "jicama", + "seasoned rice wine vinegar", + "soba", + "mustard greens", + "scallions", + "salt", + "red bell pepper", + "sesame oil", + "english cucumber" + ] + }, + { + "id": 28657, + "cuisine": "mexican", + "ingredients": [ + "manicotti shells", + "green onions", + "shredded Monterey Jack cheese", + "water", + "ground beef", + "picante sauce", + "sour cream", + "ground cumin", + "refried beans", + "dried oregano" + ] + }, + { + "id": 18842, + "cuisine": "italian", + "ingredients": [ + "saffron threads", + "olive oil", + "dry white wine", + "grape tomatoes", + "parmigiano reggiano cheese", + "salt", + "fresh rosemary", + "unsalted butter", + "orzo", + "black pepper", + "veal chops", + "garlic cloves" + ] + }, + { + "id": 27019, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "russet potatoes", + "chopped cilantro fresh", + "large eggs", + "coarse kosher salt", + "vegetable oil", + "ancho chile pepper", + "ground black pepper", + "watercress", + "masa" + ] + }, + { + "id": 2982, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "extra-virgin olive oil", + "pepper", + "red wine vinegar", + "fresh oregano", + "oil cured olives", + "green onions", + "salt", + "garbanzo beans", + "pasta rotel", + "fresh parsley" + ] + }, + { + "id": 33222, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "garlic", + "pasta water", + "chicken broth", + "boneless skinless chicken breasts", + "salt", + "onions", + "unsalted butter", + "cooking wine", + "fresh parsley", + "pepper", + "heavy cream", + "sliced mushrooms" + ] + }, + { + "id": 39361, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "vegetable oil", + "sausages", + "green bell pepper", + "jalapeno chilies", + "grated jack cheese", + "large eggs", + "worcestershire sauce", + "onions", + "water", + "quickcooking grits", + "scallions" + ] + }, + { + "id": 13489, + "cuisine": "indian", + "ingredients": [ + "amchur", + "chillies", + "water", + "salt", + "cumin", + "mint leaves", + "coriander", + "tamarind", + "black salt" + ] + }, + { + "id": 36461, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "crusty bread", + "parsley", + "eggs", + "marinara sauce", + "mozzarella cheese" + ] + }, + { + "id": 20757, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "yellow bell pepper", + "anchovy fillets", + "whole milk", + "salt", + "red bell pepper", + "unsalted butter", + "extra-virgin olive oil", + "brine-cured black olives", + "baking powder", + "all-purpose flour", + "onions" + ] + }, + { + "id": 35136, + "cuisine": "japanese", + "ingredients": [ + "turnips", + "white miso", + "sesame oil", + "sake", + "potatoes", + "garlic", + "dashi", + "green onions", + "carrots", + "seasoning", + "pork chops", + "ginger" + ] + }, + { + "id": 30327, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "honey", + "Tabasco Pepper Sauce", + "freshly ground pepper", + "onions", + "kosher salt", + "unsalted butter", + "heavy cream", + "thyme", + "extra sharp cheddar cheese", + "molasses", + "ground black pepper", + "vegetable oil", + "garlic cloves", + "grits", + "chicken broth", + "cider vinegar", + "bourbon whiskey", + "cayenne pepper", + "chopped parsley", + "large shrimp" + ] + }, + { + "id": 43455, + "cuisine": "italian", + "ingredients": [ + "fresh tomatoes", + "diced tomatoes", + "onions", + "olive oil", + "garlic", + "tomato sauce", + "uncooked rigatoni", + "fresh basil", + "grating cheese", + "salt" + ] + }, + { + "id": 36947, + "cuisine": "mexican", + "ingredients": [ + "chicken bouillon", + "garlic", + "long grain white rice", + "tomatoes", + "jalapeno chilies", + "onions", + "green bell pepper", + "vegetable oil", + "chopped cilantro fresh", + "chicken broth", + "pepper", + "salt", + "ground cumin" + ] + }, + { + "id": 28056, + "cuisine": "british", + "ingredients": [ + "russet potatoes", + "cornmeal", + "flour", + "salt", + "fish fillets", + "old bay seasoning", + "vegetable oil", + "beer" + ] + }, + { + "id": 7530, + "cuisine": "mexican", + "ingredients": [ + "seasoning", + "lime juice", + "green bell pepper, slice", + "lime wedges", + "salt", + "red bell pepper", + "sugar", + "garlic powder", + "chili powder", + "diced tomatoes", + "shredded cheese", + "onions", + "red chili powder", + "orange bell pepper", + "flour tortillas", + "shredded lettuce", + "salsa", + "sour cream", + "black pepper", + "beef", + "onion powder", + "paprika", + "corn starch", + "ground cumin" + ] + }, + { + "id": 47505, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "rolls", + "butter", + "cinnamon sugar", + "sugar", + "cream cheese", + "vanilla" + ] + }, + { + "id": 16520, + "cuisine": "french", + "ingredients": [ + "water", + "salt", + "ground cinnamon", + "golden delicious apples", + "all-purpose flour", + "sugar", + "butter", + "large eggs", + "crème fraîche" + ] + }, + { + "id": 35311, + "cuisine": "moroccan", + "ingredients": [ + "chicken legs", + "lemon", + "onions", + "chicken stock", + "olive oil", + "carrots", + "ground ginger", + "cinnamon", + "couscous", + "tumeric", + "paprika" + ] + }, + { + "id": 22833, + "cuisine": "chinese", + "ingredients": [ + "savoy cabbage", + "green onions", + "rice vinegar", + "reduced sodium chicken broth", + "coarse salt", + "soy sauce", + "wonton wrappers", + "toasted sesame oil", + "peeled fresh ginger", + "ground pork" + ] + }, + { + "id": 14398, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "salt", + "cucumber", + "pepper flakes", + "sesame seeds", + "garlic", + "Gochujang base", + "pears", + "rice syrup", + "ginger", + "corn syrup", + "onions", + "eggs", + "bosc pears", + "buckwheat noodles", + "mustard powder" + ] + }, + { + "id": 29168, + "cuisine": "indian", + "ingredients": [ + "urad dal", + "jalapeno chilies", + "cumin seed", + "curry leaves", + "salt", + "ginger", + "canola oil" + ] + }, + { + "id": 22461, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "salt", + "sesame oil", + "scallions", + "flour", + "duck", + "water", + "ginger", + "chinese five-spice powder" + ] + }, + { + "id": 13615, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "vegetable shortening", + "Smithfield Ham", + "baking powder", + "salt", + "butter", + "all-purpose flour", + "green onions", + "buttermilk" + ] + }, + { + "id": 6360, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "ground black pepper", + "onions", + "sun-dried tomatoes", + "vegetable stock", + "dried thyme", + "zucchini", + "fresh basil leaves", + "freshly grated parmesan", + "butter" + ] + }, + { + "id": 40360, + "cuisine": "mexican", + "ingredients": [ + "salt", + "chopped cilantro", + "jalapeno chilies", + "fresh lemon juice", + "large garlic cloves", + "hass avocado", + "cumin seed", + "onions" + ] + }, + { + "id": 40182, + "cuisine": "southern_us", + "ingredients": [ + "McCormick Parsley Flakes", + "old bay seasoning", + "eggs", + "milk", + "salt", + "bread", + "lump crab meat", + "worcestershire sauce", + "mayonaise", + "baking powder" + ] + }, + { + "id": 31438, + "cuisine": "cajun_creole", + "ingredients": [ + "salad", + "water", + "cooking spray", + "paprika", + "garlic cloves", + "long grain white rice", + "black pepper", + "hot pepper sauce", + "ground red pepper", + "chopped onion", + "chicken livers", + "kosher salt", + "chopped green bell pepper", + "chopped fresh thyme", + "ground coriander", + "boneless skinless chicken breast halves", + "lower sodium chicken broth", + "olive oil", + "green onions", + "chopped celery", + "smoked paprika", + "ground cumin" + ] + }, + { + "id": 31798, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "salt", + "whole wheat flour", + "baking powder", + "canola oil", + "sugar", + "reduced fat milk", + "frozen blueberries", + "peaches", + "vanilla extract" + ] + }, + { + "id": 14342, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "garlic cloves", + "pinenuts", + "baking potatoes", + "water", + "pitted olives", + "capers", + "fresh thyme", + "fresh parsley" + ] + }, + { + "id": 14385, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "olive oil", + "brie cheese", + "reduced sodium chicken broth", + "dry white wine", + "cauliflower", + "water", + "florets", + "sliced almonds", + "unsalted butter", + "thyme sprigs" + ] + }, + { + "id": 14308, + "cuisine": "vietnamese", + "ingredients": [ + "butter lettuce", + "gluten-free hoisin sauce", + "green onions", + "garlic", + "shrimp", + "toasted sesame seeds", + "salad", + "soy sauce", + "honey", + "cilantro", + "edamame", + "ground cayenne pepper", + "fish sauce", + "toasted cashews", + "fresh ginger", + "crushed red pepper flakes", + "carrots", + "fresh lime juice", + "avocado", + "red chili peppers", + "curry powder", + "sesame oil", + "rice vinegar", + "red bell pepper" + ] + }, + { + "id": 33841, + "cuisine": "korean", + "ingredients": [ + "cold water", + "ground black pepper", + "sesame oil", + "toasted sesame seeds", + "sugar", + "mirin", + "garlic cloves", + "low sodium soy sauce", + "asian pear", + "russet potatoes", + "short rib", + "shiitake", + "green onions", + "carrots" + ] + }, + { + "id": 12830, + "cuisine": "chinese", + "ingredients": [ + "sambal ulek", + "soy sauce", + "Shaoxing wine", + "garlic", + "lemon juice", + "tomato sauce", + "pork ribs", + "sesame oil", + "chinese five-spice powder", + "brown sugar", + "sesame seeds", + "shallots", + "salt", + "coriander", + "red chili peppers", + "hoisin sauce", + "ginger", + "oyster sauce" + ] + }, + { + "id": 23096, + "cuisine": "italian", + "ingredients": [ + "salt", + "egg whites", + "margarine", + "baking powder", + "greek yogurt", + "milk", + "all-purpose flour" + ] + }, + { + "id": 34026, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "skim milk", + "maple syrup", + "eggs", + "sweet potatoes", + "ground allspice", + "ground cinnamon", + "pepper", + "margarine", + "vegetable oil cooking spray", + "salt" + ] + }, + { + "id": 30835, + "cuisine": "filipino", + "ingredients": [ + "lemongrass", + "garlic", + "coconut vinegar", + "ground black pepper", + "margarine", + "lemon soda", + "annatto oil", + "salt", + "lemon juice", + "brown sugar", + "ginger", + "sauce", + "chicken" + ] + }, + { + "id": 15072, + "cuisine": "filipino", + "ingredients": [ + "string beans", + "garlic", + "ground beef", + "potatoes", + "fat", + "pepper", + "salt", + "onions", + "egg roll wraps", + "carrots" + ] + }, + { + "id": 1121, + "cuisine": "chinese", + "ingredients": [ + "ground pepper", + "garlic", + "safflower oil", + "green onions", + "soy sauce", + "large eggs", + "frozen peas", + "steamed rice", + "sea salt" + ] + }, + { + "id": 18376, + "cuisine": "italian", + "ingredients": [ + "penne", + "garlic", + "eggplant", + "lemon juice", + "olive oil", + "salt", + "ground black pepper", + "fresh parsley" + ] + }, + { + "id": 17815, + "cuisine": "italian", + "ingredients": [ + "cold water", + "dry white wine", + "fish fillets", + "chopped onion", + "olive oil", + "fresh parsley", + "tomatoes", + "large garlic cloves" + ] + }, + { + "id": 32878, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cajun seasoning", + "yellow onion", + "shrimp", + "white wine", + "bay leaves", + "heavy cream", + "Crystal Farms Butter", + "smoked paprika", + "Crystal Farms Shredded Gouda Cheese", + "whole milk", + "worcestershire sauce", + "creole seasoning", + "thyme", + "kosher salt", + "vegetable oil", + "garlic", + "lemon juice", + "grits" + ] + }, + { + "id": 24410, + "cuisine": "british", + "ingredients": [ + "mint", + "large eggs", + "heavy cream", + "berries", + "ground cinnamon", + "ground nutmeg", + "whole milk", + "salt", + "grated lemon peel", + "melted butter", + "granulated sugar", + "baking powder", + "all-purpose flour", + "figs", + "graham cracker crumbs", + "sprinkles", + "confectioners sugar" + ] + }, + { + "id": 35010, + "cuisine": "french", + "ingredients": [ + "olive oil", + "zinfandel", + "boiling onions", + "fresh marjoram", + "shallots", + "all-purpose flour", + "chopped fresh chives", + "butter", + "garlic cloves", + "chicken stock", + "crimini mushrooms", + "bacon", + "chicken thighs" + ] + }, + { + "id": 37236, + "cuisine": "mexican", + "ingredients": [ + "finely chopped onion", + "garlic", + "Oscar Mayer Bacon", + "chopped cilantro fresh", + "jalapeno chilies", + "Philadelphia Cream Cheese", + "cheese" + ] + }, + { + "id": 6967, + "cuisine": "mexican", + "ingredients": [ + "Campbell's Condensed Tomato Soup", + "chunky salsa", + "flour tortillas", + "shredded cheddar cheese", + "ground beef", + "milk" + ] + }, + { + "id": 29316, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "red wine vinegar", + "chicken breasts", + "cumin", + "lime", + "garlic", + "black pepper", + "chili powder" + ] + }, + { + "id": 24947, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "chinese five-spice powder", + "white pepper", + "pork belly", + "mustard", + "sea salt" + ] + }, + { + "id": 7090, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "dark sesame oil", + "brussels sprouts", + "salt", + "garlic cloves", + "hoisin sauce", + "peanut oil", + "soy sauce", + "seasoned rice wine vinegar", + "onions" + ] + }, + { + "id": 4615, + "cuisine": "mexican", + "ingredients": [ + "ground nutmeg", + "salt", + "red pepper", + "ground cumin", + "chili powder", + "cayenne pepper", + "garlic powder", + "paprika" + ] + }, + { + "id": 48722, + "cuisine": "irish", + "ingredients": [ + "tomato paste", + "beef bouillon granules", + "deli ham", + "fresh parsley", + "tenderloin roast", + "beef consomme", + "all-purpose flour", + "milk", + "shallots", + "fresh mushrooms", + "Madeira", + "frozen pastry puff sheets", + "butter" + ] + }, + { + "id": 32474, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "whipping cream", + "ground nutmeg", + "chopped fresh chives", + "all-purpose flour", + "grated parmesan cheese", + "salt", + "ground black pepper", + "russet potatoes", + "crumbled gorgonzola" + ] + }, + { + "id": 26667, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "crushed ice", + "simple syrup", + "cachaca" + ] + }, + { + "id": 32316, + "cuisine": "mexican", + "ingredients": [ + "blanched almond flour", + "sea salt", + "tapioca flour", + "warm water", + "mild olive oil" + ] + }, + { + "id": 38292, + "cuisine": "jamaican", + "ingredients": [ + "white vinegar", + "ground black pepper", + "salt", + "sugar", + "vegetable oil", + "onions", + "water", + "red pepper", + "allspice", + "chicken wings", + "fresh thyme", + "garlic cloves" + ] + }, + { + "id": 41733, + "cuisine": "irish", + "ingredients": [ + "parsnips", + "salt", + "fresh parsley", + "celery ribs", + "Guinness Beer", + "chopped onion", + "turnips", + "dried thyme", + "beef broth", + "beef roast", + "tomato paste", + "butter", + "carrots" + ] + }, + { + "id": 2799, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "russet potatoes", + "eggs", + "all-purpose flour", + "ground nutmeg", + "spinach leaves", + "butter" + ] + }, + { + "id": 28442, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "orange", + "extra-virgin olive oil", + "lamb shanks", + "bay leaves", + "low salt chicken broth", + "clove", + "dried porcini mushrooms", + "dry red wine", + "polenta", + "rosemary sprigs", + "finely chopped onion", + "hot water" + ] + }, + { + "id": 26001, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "red bell pepper", + "canola oil", + "celery ribs", + "cayenne pepper", + "long grain white rice", + "salt", + "frozen peas", + "dried thyme", + "fatfree lowsodium chicken broth", + "large shrimp" + ] + }, + { + "id": 22268, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "onions", + "greek seasoning", + "feta cheese crumbles", + "brown rice", + "chicken stock", + "red bell pepper" + ] + }, + { + "id": 41763, + "cuisine": "mexican", + "ingredients": [ + "fresh mexican cheese", + "chicken breasts", + "chopped cilantro", + "salsa verde", + "salt", + "cream", + "epazote", + "onions", + "tortillas", + "oil" + ] + }, + { + "id": 11259, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "parmesan cheese", + "Hellmann''s Light Mayonnaise", + "chili powder", + "crumbs" + ] + }, + { + "id": 19011, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "cinnamon", + "onions", + "boneless chicken skinless thigh", + "chili powder", + "cilantro leaves", + "brown sugar", + "lime juice", + "garlic", + "ground cumin", + "black pepper", + "vegetable oil", + "corn tortillas" + ] + }, + { + "id": 2896, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "flat leaf parsley", + "grated parmesan cheese", + "garlic cloves", + "chopped tomatoes", + "spaghetti" + ] + }, + { + "id": 16848, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "raisin bread", + "milk", + "large eggs", + "ground nutmeg", + "sweetened coconut flakes", + "light brown sugar", + "bananas", + "vanilla extract" + ] + }, + { + "id": 961, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "chili powder", + "fresh lime juice", + "ground cinnamon", + "jalapeno chilies", + "salt", + "ground cumin", + "chopped almonds", + "ground pork", + "chipotle salsa", + "refrigerated buttermilk biscuits", + "golden raisins", + "sour cream" + ] + }, + { + "id": 1066, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "green onions", + "garlic salt", + "ground black pepper", + "salt", + "plum tomatoes", + "olive oil", + "garlic", + "boneless skinless chicken breast halves", + "grated parmesan cheese", + "lemon juice" + ] + }, + { + "id": 5687, + "cuisine": "moroccan", + "ingredients": [ + "dried apricot", + "ground coriander", + "chopped fresh mint", + "ground black pepper", + "salt", + "couscous", + "olive oil", + "purple onion", + "leg of lamb", + "ground cumin", + "large garlic cloves", + "fresh lemon juice", + "grated lemon peel" + ] + }, + { + "id": 23449, + "cuisine": "french", + "ingredients": [ + "pearl onions", + "chives", + "light margarine", + "boneless chicken breast", + "lemon pepper", + "garlic powder", + "all-purpose flour", + "fresh parsley", + "white wine", + "mushrooms", + "thyme" + ] + }, + { + "id": 45377, + "cuisine": "mexican", + "ingredients": [ + "sliced black olives", + "peeled shrimp", + "chopped cilantro fresh", + "shredded cheddar cheese", + "flour tortillas", + "red bell pepper", + "tomatoes", + "chopped green bell pepper", + "salsa", + "sweet onion", + "chopped fresh chives", + "sour cream" + ] + }, + { + "id": 11696, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "ground thyme", + "salt", + "onions", + "soy sauce", + "ground black pepper", + "garlic", + "gingerroot", + "ground cloves", + "green onions", + "malt vinegar", + "oil", + "ground cinnamon", + "ground nutmeg", + "lemon", + "ground allspice", + "pork butt" + ] + }, + { + "id": 36636, + "cuisine": "french", + "ingredients": [ + "vidalia onion", + "ground black pepper", + "extra-virgin olive oil", + "kosher salt", + "parmigiano reggiano cheese", + "garlic cloves", + "pinenuts", + "zucchini", + "penne pasta", + "water", + "basil leaves", + "heavy whipping cream" + ] + }, + { + "id": 12951, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "fine sea salt", + "eggs", + "chopped fresh chives", + "greek yogurt", + "parmesan cheese", + "crème fraîche", + "capers", + "lemon", + "corn tortillas" + ] + }, + { + "id": 42897, + "cuisine": "indian", + "ingredients": [ + "yukon gold potatoes", + "chutney", + "unsalted butter", + "cumin seed", + "garam masala", + "phyllo", + "frozen peas", + "coriander seeds", + "vegetable oil", + "onions" + ] + }, + { + "id": 34784, + "cuisine": "vietnamese", + "ingredients": [ + "honey", + "garlic", + "fresh mint", + "fish sauce", + "fresh ginger root", + "shrimp", + "olive oil", + "dried rice noodles", + "chopped cilantro fresh", + "lime", + "shredded cabbage", + "ground white pepper" + ] + }, + { + "id": 28042, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "enchilada sauce", + "reduced sodium chicken broth", + "canned chicken breast", + "white rice", + "monterey jack", + "jalapeno chilies", + "whole kernel corn, drain" + ] + }, + { + "id": 5901, + "cuisine": "french", + "ingredients": [ + "leeks", + "crème fraîche", + "chicken", + "red potato", + "shallots", + "carrots", + "dry white wine", + "fresh lemon juice", + "unsalted butter", + "vegetable oil", + "flat leaf parsley" + ] + }, + { + "id": 42020, + "cuisine": "italian", + "ingredients": [ + "sugar", + "extra-virgin olive oil", + "tomatoes", + "italian eggplant", + "chopped onion", + "celery ribs", + "kosher salt", + "white wine vinegar", + "capers", + "Sicilian olives", + "juice" + ] + }, + { + "id": 23723, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "cilantro", + "ground black pepper", + "tomatoes", + "onions" + ] + }, + { + "id": 30790, + "cuisine": "italian", + "ingredients": [ + "capers", + "olive oil", + "mint sprigs", + "peasant bread", + "Italian parsley leaves", + "boneless skinless chicken breast halves", + "water", + "red wine vinegar", + "all-purpose flour", + "minced garlic", + "ground black pepper", + "salt" + ] + }, + { + "id": 42115, + "cuisine": "irish", + "ingredients": [ + "water", + "chopped celery", + "carrots", + "ground black pepper", + "baking mix", + "frozen peas", + "milk", + "salt", + "onions", + "condensed cream of chicken soup", + "potatoes", + "poultry seasoning", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 26551, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "olive oil", + "whole milk", + "grated nutmeg", + "onions", + "ground cloves", + "unsalted butter", + "large garlic cloves", + "juice", + "bread crumb fresh", + "parmigiano reggiano cheese", + "all-purpose flour", + "thyme sprigs", + "ground cinnamon", + "large egg yolks", + "ziti", + "ground allspice", + "ground lamb" + ] + }, + { + "id": 5659, + "cuisine": "irish", + "ingredients": [ + "mint leaves", + "cucumber", + "navel oranges", + "ginger ale", + "apples", + "lemon", + "ice" + ] + }, + { + "id": 23956, + "cuisine": "italian", + "ingredients": [ + "penne pasta", + "grated parmesan cheese", + "fresh basil leaves", + "pasta sauce", + "shrimp", + "heavy cream" + ] + }, + { + "id": 46253, + "cuisine": "indian", + "ingredients": [ + "tandoori spices", + "ginger", + "methi", + "nutmeg", + "crushed garlic", + "curds", + "garam masala", + "salt", + "chicken legs", + "butter", + "lemon juice" + ] + }, + { + "id": 6799, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "regular soy sauce", + "soy sauce", + "beef rump", + "lemongrass", + "brown sugar", + "thai chile" + ] + }, + { + "id": 18528, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "Kraft Grated Parmesan Cheese", + "pasta", + "peas", + "Oscar Mayer Bacon", + "milk", + "Philadelphia Cream Cheese" + ] + }, + { + "id": 25539, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "extra-virgin olive oil", + "water", + "polenta", + "sea salt" + ] + }, + { + "id": 37742, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "quinoa", + "fine sea salt", + "water", + "sweet potatoes", + "corn tortillas", + "honey", + "green onions", + "ground cumin", + "black beans", + "tahini", + "fresh lemon juice" + ] + }, + { + "id": 24771, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "vegetable oil", + "chopped cilantro fresh", + "tofu", + "peanuts", + "beansprouts", + "lime", + "garlic", + "eggs", + "rice noodles", + "white sugar" + ] + }, + { + "id": 2846, + "cuisine": "japanese", + "ingredients": [ + "stevia", + "minced onion", + "fresh lemon juice", + "liquid aminos", + "cayenne pepper", + "apple cider vinegar", + "cucumber" + ] + }, + { + "id": 14720, + "cuisine": "indian", + "ingredients": [ + "water", + "olive oil", + "cilantro leaves", + "cumin", + "celery ribs", + "crushed tomatoes", + "sea salt", + "brown lentils", + "curry powder", + "fresh ginger", + "yellow onion", + "plain yogurt", + "lime", + "garlic", + "coconut milk" + ] + }, + { + "id": 18482, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "water", + "dry white wine", + "all-purpose flour", + "canola oil", + "bone-in chicken breast halves", + "garlic powder", + "chicken drumsticks", + "cayenne pepper", + "celery ribs", + "jasmine rice", + "green onions", + "smoked sausage", + "boiling water", + "green bell pepper", + "olive oil", + "cajun seasoning", + "yellow onion" + ] + }, + { + "id": 13266, + "cuisine": "southern_us", + "ingredients": [ + "granulated garlic", + "chili powder", + "creole seasoning", + "ground red pepper", + "dry mustard", + "kosher salt", + "onion powder", + "dark brown sugar", + "ground black pepper", + "paprika", + "ground cumin" + ] + }, + { + "id": 9344, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "non-fat sour cream", + "fresh lime juice", + "kosher salt", + "chili powder", + "garlic cloves", + "chopped cilantro fresh", + "sugar", + "ground red pepper", + "chopped onion", + "medium shrimp", + "cider vinegar", + "tomatillos", + "corn tortillas", + "serrano chile" + ] + }, + { + "id": 44068, + "cuisine": "indian", + "ingredients": [ + "ginger", + "dried minced onion", + "red lentils", + "cayenne pepper", + "salt", + "ground turmeric", + "vegetable oil", + "cumin seed" + ] + }, + { + "id": 35907, + "cuisine": "mexican", + "ingredients": [ + "water", + "garlic", + "sliced mushrooms", + "chile pepper", + "orange juice", + "boneless skinless chicken breast halves", + "tomatoes", + "vegetable oil", + "sliced ham", + "dried oregano", + "fresh cilantro", + "salt", + "onions" + ] + }, + { + "id": 33161, + "cuisine": "french", + "ingredients": [ + "anchovy fillets", + "capers", + "light tuna", + "extra-virgin olive oil", + "Niçoise olives" + ] + }, + { + "id": 27258, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "diced tomatoes", + "red enchilada sauce", + "black beans", + "jalapeno chilies", + "frozen corn", + "fresh lime juice", + "quinoa", + "vegetable broth", + "sour cream", + "shredded cheddar cheese", + "butternut squash", + "taco seasoning", + "chopped cilantro" + ] + }, + { + "id": 19095, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "shrimp", + "kosher salt", + "vegetable oil", + "sugar", + "chili powder", + "water", + "large garlic cloves" + ] + }, + { + "id": 21156, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "garnish", + "dried navy beans", + "celery", + "diced onions", + "wheat berries", + "diced tomatoes", + "carrots", + "fresh parsley", + "parsley sprigs", + "olive oil", + "salt", + "thyme", + "dried rosemary", + "water", + "fresh parmesan cheese", + "garlic cloves", + "bay leaf" + ] + }, + { + "id": 15700, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "avocado", + "cilantro", + "jalapeno chilies", + "romano cheese", + "purple onion" + ] + }, + { + "id": 49047, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "red pepper flakes", + "ground ginger", + "sesame oil", + "garlic", + "green onions", + "white rice", + "brown sugar", + "vegetable oil", + "ground beef" + ] + }, + { + "id": 15264, + "cuisine": "moroccan", + "ingredients": [ + "ground cloves", + "ground coriander", + "ground ginger", + "ground black pepper", + "ground nutmeg", + "ground turmeric", + "ground cinnamon", + "ground allspice" + ] + }, + { + "id": 43665, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "kosher salt", + "fresh lime juice", + "cilantro leaves" + ] + }, + { + "id": 46391, + "cuisine": "italian", + "ingredients": [ + "polenta prepar", + "shallots", + "gruyere cheese", + "chicken broth", + "chicken breast halves", + "whipping cream", + "asparagus spears", + "prosciutto", + "butter", + "salt", + "mushrooms", + "dry sherry", + "all-purpose flour" + ] + }, + { + "id": 44556, + "cuisine": "southern_us", + "ingredients": [ + "golden brown sugar", + "baking powder", + "all purpose unbleached flour", + "yellow corn meal", + "unsalted butter", + "coarse salt", + "baking soda", + "roasted chestnuts", + "buttermilk", + "honey", + "large eggs", + "chopped fresh thyme" + ] + }, + { + "id": 32781, + "cuisine": "mexican", + "ingredients": [ + "hash brown", + "green pepper", + "onions", + "stewed tomatoes", + "taco seasoning", + "red pepper", + "cream cheese", + "chopped green chilies", + "shredded sharp cheddar cheese", + "ground beef" + ] + }, + { + "id": 37258, + "cuisine": "italian", + "ingredients": [ + "milk", + "corn starch", + "cocoa powder", + "white sugar" + ] + }, + { + "id": 20195, + "cuisine": "french", + "ingredients": [ + "light corn syrup", + "candy", + "food paste color" + ] + }, + { + "id": 18970, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "crushed red pepper flakes", + "sun-dried tomatoes", + "penne pasta", + "olive oil", + "garlic", + "grated parmesan cheese", + "dried parsley" + ] + }, + { + "id": 28111, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "bananas", + "vanilla", + "milk" + ] + }, + { + "id": 1234, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chopped garlic", + "canned low sodium chicken broth", + "salt", + "fettucine", + "grated parmesan cheese", + "pinenuts", + "fresh basil leaves" + ] + }, + { + "id": 41240, + "cuisine": "japanese", + "ingredients": [ + "scallions", + "mushrooms", + "water", + "varnish clams", + "miso" + ] + }, + { + "id": 33361, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "flour", + "peaches", + "butter", + "milk", + "cinnamon", + "tortillas", + "vanilla extract" + ] + }, + { + "id": 45621, + "cuisine": "french", + "ingredients": [ + "shallots", + "black pepper", + "white wine vinegar", + "dijon mustard", + "salt", + "extra-virgin olive oil" + ] + }, + { + "id": 44623, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "lime", + "salt", + "avocado", + "garlic", + "honey", + "fresh herbs" + ] + }, + { + "id": 17122, + "cuisine": "indian", + "ingredients": [ + "urad dal", + "rice flour", + "black peppercorns", + "cumin seed", + "ghee", + "curry leaves", + "salt", + "asafoetida powder", + "ravva", + "oil" + ] + }, + { + "id": 7627, + "cuisine": "italian", + "ingredients": [ + "egg whites", + "white sugar", + "sliced almonds", + "vanilla extract", + "eggs", + "baking powder", + "dried cranberries", + "baking soda", + "all-purpose flour" + ] + }, + { + "id": 47321, + "cuisine": "thai", + "ingredients": [ + "low-fat coconut milk", + "lime juice", + "bell pepper", + "diced tomatoes", + "frozen corn", + "canola oil", + "brown sugar", + "fresh ginger", + "parsley", + "garlic", + "celery", + "fish sauce", + "lemongrass", + "bay leaves", + "Thai red curry paste", + "carrots", + "chicken", + "black peppercorns", + "water", + "thai basil", + "lemon", + "salt", + "onions" + ] + }, + { + "id": 39087, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "water chestnuts", + "ginger", + "oyster sauce", + "canola oil", + "soy sauce", + "dry sherry", + "rice vinegar", + "corn starch", + "eggs", + "sesame oil", + "garlic", + "shrimp", + "salt and ground black pepper", + "ground pork", + "scallions", + "beansprouts" + ] + }, + { + "id": 18909, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "minced ginger", + "lettuce leaves", + "chinese hot mustard", + "oyster sauce", + "chopped cilantro fresh", + "kosher salt", + "large eggs", + "sesame oil", + "chili sauce", + "shrimp", + "soy sauce", + "ground black pepper", + "green onions", + "ground pork", + "carrots", + "steamer", + "water chestnuts", + "wonton wrappers", + "soy marinade", + "corn starch" + ] + }, + { + "id": 3496, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "coriander seeds", + "lemon", + "oil", + "ground turmeric", + "curry leaves", + "coconut", + "fenugreek", + "garlic", + "mustard seeds", + "fish", + "fennel seeds", + "water", + "coriander powder", + "ginger", + "lemon juice", + "asafetida", + "tomatoes", + "tamarind", + "chili powder", + "salt", + "onions" + ] + }, + { + "id": 37033, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "tortilla chips", + "shredded cheddar cheese", + "purple onion", + "fresh parsley", + "tomatoes", + "guacamole", + "sour cream", + "lime", + "salt" + ] + }, + { + "id": 38250, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "all-purpose flour", + "butter", + "pepper", + "salt", + "parmesan cheese" + ] + }, + { + "id": 16949, + "cuisine": "southern_us", + "ingredients": [ + "superfine sugar", + "baking powder", + "black pepper", + "unsalted butter", + "all-purpose flour", + "baking soda", + "salt", + "milk", + "chives", + "sour cream" + ] + }, + { + "id": 48744, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "coarse salt", + "juice", + "reduced sodium chicken broth", + "ground pepper", + "tortilla chips", + "olive oil", + "diced tomatoes", + "fresh lime juice", + "black beans", + "chili powder", + "garlic cloves" + ] + }, + { + "id": 22946, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salsa", + "iceberg lettuce", + "tomatoes", + "sliced black olives", + "lemon juice", + "hot pepper sauce", + "cream cheese", + "soy sauce", + "green onions", + "sour cream" + ] + }, + { + "id": 45784, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "grated parmesan cheese", + "coarse salt", + "italian seasoning", + "olive oil", + "whole milk", + "garlic", + "mozzarella cheese", + "flour", + "butter", + "rigatoni", + "nutmeg", + "artichoke hearts", + "boneless skinless chicken breasts", + "yellow onion" + ] + }, + { + "id": 42438, + "cuisine": "japanese", + "ingredients": [ + "olive oil", + "miso", + "water", + "coriander seeds", + "tomatoes", + "fresh ginger", + "garlic cloves", + "lemongrass", + "shallots" + ] + }, + { + "id": 24673, + "cuisine": "southern_us", + "ingredients": [ + "vanilla", + "powdered sugar", + "lemon juice", + "cream cheese", + "butter" + ] + }, + { + "id": 26760, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "fettucine", + "pancetta", + "flat leaf parsley", + "parsnips" + ] + }, + { + "id": 8208, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "ground black pepper", + "chopped onion", + "tomato paste", + "olive oil", + "red wine vinegar", + "whole wheat fettuccine", + "minced garlic", + "ground sirloin", + "fresh basil leaves", + "tomatoes", + "eggplant", + "red wine" + ] + }, + { + "id": 18922, + "cuisine": "italian", + "ingredients": [ + "fresh marjoram", + "goat cheese", + "castellane", + "red bell pepper", + "cherry tomatoes", + "hot Italian sausages", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 18523, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "liquid", + "boneless skinless chicken breast halves", + "avocado", + "olive oil", + "fresh lime juice", + "ground cumin", + "black beans", + "grate lime peel", + "monterey jack", + "tomatoes", + "cayenne pepper", + "french rolls" + ] + }, + { + "id": 8593, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "ground black pepper", + "chopped fresh thyme", + "jumbo pasta shells", + "mozzarella cheese", + "marinara sauce", + "garlic", + "fresh spinach", + "large eggs", + "red pepper flakes", + "parmesan cheese", + "ricotta cheese", + "salt" + ] + }, + { + "id": 5821, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "hot pepper sauce", + "garlic powder", + "sliced mushrooms", + "rib roast" + ] + }, + { + "id": 22818, + "cuisine": "italian", + "ingredients": [ + "chicken breasts", + "grated parmesan cheese", + "gluten free blend", + "black pepper", + "paprika", + "egg whites" + ] + }, + { + "id": 43692, + "cuisine": "italian", + "ingredients": [ + "salt and ground black pepper", + "purple onion", + "fresh basil", + "red wine vinegar", + "fresh rosemary", + "bone in skinless chicken thigh", + "arugula", + "figs", + "cheese" + ] + }, + { + "id": 32916, + "cuisine": "italian", + "ingredients": [ + "water", + "dry red wine", + "arborio rice", + "grated parmesan cheese", + "onions", + "sage leaves", + "olive oil", + "fresh parsley", + "dried porcini mushrooms", + "large garlic cloves" + ] + }, + { + "id": 14570, + "cuisine": "mexican", + "ingredients": [ + "whole wheat pasta", + "garlic", + "onions", + "bell pepper", + "enchilada sauce", + "Mexican seasoning mix", + "light cream cheese", + "butter", + "shrimp" + ] + }, + { + "id": 44765, + "cuisine": "italian", + "ingredients": [ + "egg substitute", + "butter", + "plum tomatoes", + "grated parmesan cheese", + "cream cheese", + "artichoke hearts", + "hot sauce", + "sliced green onions", + "pepper", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 20979, + "cuisine": "french", + "ingredients": [ + "honey", + "cooking spray", + "salt", + "garlic cloves", + "dried porcini mushrooms", + "ground nutmeg", + "dry red wine", + "chickpeas", + "flat leaf parsley", + "water", + "ground black pepper", + "vegetable broth", + "chopped onion", + "shiitake mushroom caps", + "warm water", + "olive oil", + "button mushrooms", + "all-purpose flour", + "corn starch" + ] + }, + { + "id": 7285, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "country ham", + "crust", + "asparagus", + "chopped garlic", + "white bread", + "heavy cream" + ] + }, + { + "id": 4733, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "onions", + "carrots", + "beef brisket", + "cabbage" + ] + }, + { + "id": 3268, + "cuisine": "mexican", + "ingredients": [ + "mini chocolate chips", + "flour", + "mini marshmallows", + "peanut butter" + ] + }, + { + "id": 689, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "provolone cheese", + "arugula", + "cracked black pepper", + "ham", + "fresh basil", + "salt", + "Italian bread", + "butter", + "balsamic vinaigrette" + ] + }, + { + "id": 22040, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "carrots", + "pepper sauce", + "taco seasoning mix", + "greek style plain yogurt", + "dried minced onion", + "condensed cream of chicken soup", + "flour tortillas", + "enchilada sauce", + "water", + "asadero", + "ground turkey" + ] + }, + { + "id": 45336, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "parsley", + "salt", + "onions", + "warm water", + "diced tomatoes", + "garlic cloves", + "mild curry powder", + "butter", + "peanut oil", + "beef stew", + "paprika", + "coconut milk" + ] + }, + { + "id": 14946, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "chili powder", + "garlic", + "curry powder", + "raisins", + "mustard seeds", + "peaches", + "ginger", + "pickling spices", + "apple cider vinegar", + "chopped onion" + ] + }, + { + "id": 21933, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "sesame oil", + "granulated sugar", + "scallions", + "light soy sauce", + "teriyaki sauce", + "brown sugar", + "beef", + "garlic cloves" + ] + }, + { + "id": 40292, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "Sriracha", + "garlic chili sauce", + "ground ginger", + "olive oil", + "ramen noodles", + "kale", + "green onions", + "black pepper", + "shiitake", + "vegetable stock" + ] + }, + { + "id": 32722, + "cuisine": "thai", + "ingredients": [ + "basil leaves", + "yellow onion", + "red bell pepper", + "water", + "sesame oil", + "oyster sauce", + "garlic powder", + "garlic", + "green beans", + "fish sauce", + "flank steak", + "garlic chili sauce" + ] + }, + { + "id": 4470, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "cooking oil", + "salt", + "ground beef", + "ground cumin", + "fresh ginger", + "cinnamon", + "lemon juice", + "petite peas", + "ground black pepper", + "garlic", + "chopped cilantro", + "boiling potatoes", + "plain yogurt", + "whole milk", + "ground coriander", + "onions" + ] + }, + { + "id": 16340, + "cuisine": "mexican", + "ingredients": [ + "lime", + "salt", + "tomatoes", + "jalapeno chilies", + "ground black pepper", + "chopped cilantro fresh", + "white onion", + "garlic" + ] + }, + { + "id": 4429, + "cuisine": "french", + "ingredients": [ + "water", + "egg whites", + "glaze", + "unsalted butter", + "salt", + "superfine sugar", + "vegetable oil", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 34262, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chipotles in adobo", + "stewed tomatoes", + "chicken meat", + "onions", + "tostada shells", + "sour cream" + ] + }, + { + "id": 37752, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "dried oregano", + "ground black pepper", + "diced tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 45448, + "cuisine": "japanese", + "ingredients": [ + "water", + "waxy potatoes", + "tumeric", + "cumin seed", + "fresh coriander", + "oil", + "salt" + ] + }, + { + "id": 40733, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "part-skim mozzarella cheese", + "extra-virgin olive oil", + "red bell pepper", + "pepper", + "finely chopped fresh parsley", + "salt", + "sugar", + "artichoke hearts", + "mushrooms", + "garlic cloves", + "cider vinegar", + "asparagus", + "pitted olives", + "dried oregano" + ] + }, + { + "id": 32734, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "heavy cream", + "large eggs", + "puff pastry", + "fresh thyme leaves", + "feta cheese", + "flour for dusting" + ] + }, + { + "id": 25478, + "cuisine": "italian", + "ingredients": [ + "fresh chives", + "grated parmesan cheese", + "white mushrooms", + "unsalted butter", + "salt", + "plum tomatoes", + "haricots verts", + "fresh peas", + "bow-tie pasta", + "ground black pepper", + "half & half", + "asparagus tips" + ] + }, + { + "id": 16170, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "finely chopped onion", + "garlic cloves", + "water", + "ground black pepper", + "salt", + "red bell pepper", + "arborio rice", + "fresh parmesan cheese", + "vegetable broth", + "green beans", + "saffron threads", + "olive oil", + "dry white wine", + "fresh lemon juice" + ] + }, + { + "id": 8258, + "cuisine": "italian", + "ingredients": [ + "radicchio", + "fresh lemon juice", + "penne", + "extra-virgin olive oil", + "fresh basil", + "lemon zest", + "arugula", + "mozzarella cheese", + "garlic cloves" + ] + }, + { + "id": 26380, + "cuisine": "spanish", + "ingredients": [ + "seedless green grape", + "garlic", + "cucumber", + "water", + "salt", + "sliced almonds", + "white wine vinegar", + "onions", + "country white bread", + "olive oil", + "shrimp" + ] + }, + { + "id": 11995, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "peanuts", + "pork tenderloin", + "thai chile", + "beansprouts", + "water", + "Sriracha", + "green leaf lettuce", + "cilantro leaves", + "warm water", + "ground black pepper", + "basil leaves", + "garlic", + "fresh mint", + "fish sauce", + "lime juice", + "shredded carrots", + "rice vermicelli", + "english cucumber" + ] + }, + { + "id": 30926, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "cooked shrimp", + "flaked coconut", + "green onions", + "cream cheese, soften" + ] + }, + { + "id": 8547, + "cuisine": "greek", + "ingredients": [ + "dry white wine", + "leaf parsley", + "greek yogurt", + "mussels", + "shallots", + "olive oil" + ] + }, + { + "id": 8715, + "cuisine": "southern_us", + "ingredients": [ + "corn kernels", + "chopped fresh thyme", + "flat leaf parsley", + "large eggs", + "grated nutmeg", + "sugar", + "whole milk", + "cayenne pepper", + "unsalted butter", + "salt" + ] + }, + { + "id": 41161, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "cayenne pepper", + "paprika", + "garlic pepper seasoning", + "kale", + "rice", + "salt", + "dried oregano" + ] + }, + { + "id": 39289, + "cuisine": "mexican", + "ingredients": [ + "lime", + "salt", + "chipotle peppers", + "sugar", + "extra firm tofu", + "pinto beans", + "canola oil", + "avocado", + "poblano peppers", + "long-grain rice", + "adobo sauce", + "fresh cilantro", + "purple onion", + "fresh tomato salsa" + ] + }, + { + "id": 36978, + "cuisine": "indian", + "ingredients": [ + "water", + "cilantro", + "cinnamon sticks", + "canola oil", + "clove", + "fresh ginger root", + "salt", + "onions", + "kidney beans", + "garlic", + "bay leaf", + "black peppercorns", + "red pepper", + "cardamom pods", + "plum tomatoes" + ] + }, + { + "id": 15076, + "cuisine": "mexican", + "ingredients": [ + "fish fillets", + "shredded lettuce", + "garlic cloves", + "avocado", + "lime wedges", + "salsa", + "onions", + "unsalted butter", + "salt", + "corn tortillas", + "tomatoes", + "vegetable oil", + "freshly ground pepper" + ] + }, + { + "id": 19754, + "cuisine": "cajun_creole", + "ingredients": [ + "dried basil", + "paprika", + "vegetable oil cooking spray", + "garlic powder", + "margarine", + "catfish fillets", + "dried thyme", + "salt", + "black pepper", + "ground red pepper" + ] + }, + { + "id": 996, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "all-purpose flour", + "salt", + "sugar" + ] + }, + { + "id": 28232, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "phyllo", + "onions", + "myzithra", + "Greek feta", + "salt", + "large eggs", + "extra-virgin olive oil", + "fresh dill", + "yoghurt", + "kefalotyri" + ] + }, + { + "id": 6185, + "cuisine": "southern_us", + "ingredients": [ + "water", + "all-purpose flour", + "unsalted butter", + "chopped pecans", + "sugar", + "salt", + "nectarines", + "large egg whites", + "apricot preserves" + ] + }, + { + "id": 22056, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "jalapeno chilies", + "all-purpose flour", + "unsalted butter", + "buttermilk", + "extra sharp cheddar cheese", + "baking soda", + "baking powder", + "roast red peppers, drain", + "yellow corn meal", + "large eggs", + "salt" + ] + }, + { + "id": 8992, + "cuisine": "greek", + "ingredients": [ + "water", + "purple onion", + "skinless chicken thighs", + "ground black pepper", + "sweet paprika", + "olive oil", + "salt", + "bay leaves", + "pitted prunes" + ] + }, + { + "id": 6966, + "cuisine": "chinese", + "ingredients": [ + "medium egg noodles", + "chinese five-spice powder", + "sunflower oil", + "stir fry vegetable blend", + "pork tenderloin", + "Madras curry powder", + "prawns", + "teriyaki sauce" + ] + }, + { + "id": 18034, + "cuisine": "southern_us", + "ingredients": [ + "water", + "worcestershire sauce", + "salt", + "ketchup", + "chili powder", + "dry mustard", + "chicken pieces", + "chips", + "paprika", + "lemon juice", + "cider vinegar", + "butter", + "crushed red pepper" + ] + }, + { + "id": 13191, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "part-skim mozzarella cheese", + "part-skim ricotta cheese", + "frozen chopped spinach", + "low-fat cottage cheese", + "whole wheat lasagna noodles", + "shredded parmesan cheese", + "eggs", + "eggplant", + "garlic", + "olive oil", + "ground black pepper", + "salt" + ] + }, + { + "id": 40980, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "zucchini", + "green onions", + "olive oil", + "Sriracha", + "crushed red pepper flakes", + "low sodium soy sauce", + "fresh ginger", + "large eggs", + "linguine", + "brown sugar", + "peanuts", + "mushrooms", + "garlic" + ] + }, + { + "id": 27754, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "sea salt", + "olive oil", + "dry bread crumbs", + "fresh basil", + "garlic", + "jalapeno chilies" + ] + }, + { + "id": 20942, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic", + "frozen corn kernels", + "pasta", + "chili powder", + "greek style plain yogurt", + "green onions", + "shredded sharp cheddar cheese", + "green chile", + "diced tomatoes", + "yellow onion" + ] + }, + { + "id": 4111, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "cooked ham", + "cream cheese", + "butter crackers", + "jalapeno chilies", + "round sourdough bread", + "onions" + ] + }, + { + "id": 47159, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "butter", + "milk", + "country ham", + "yellow corn meal", + "baking powder" + ] + }, + { + "id": 44288, + "cuisine": "french", + "ingredients": [ + "french bread", + "dried basil", + "garlic cloves", + "salt", + "olive oil", + "dried oregano" + ] + }, + { + "id": 362, + "cuisine": "french", + "ingredients": [ + "sugar", + "whipping cream", + "toasted almonds", + "powdered sugar", + "red currant jelly", + "cake flour", + "eggs", + "baking powder", + "vanilla extract", + "slivered almonds", + "amaretto", + "salt" + ] + }, + { + "id": 43159, + "cuisine": "mexican", + "ingredients": [ + "spring mix", + "pico de gallo", + "tortillas", + "burgers", + "sour cream", + "shredded cheddar cheese" + ] + }, + { + "id": 38361, + "cuisine": "french", + "ingredients": [ + "pitted kalamata olives", + "balsamic vinegar", + "dried fig", + "olive oil", + "thyme sprigs", + "water", + "chopped fresh thyme", + "soft goat's cheese", + "ground black pepper", + "whole wheat english muffins" + ] + }, + { + "id": 37495, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "sesame seeds", + "fresh green bean", + "rice", + "low sodium soy sauce", + "sesame oil", + "salt", + "onions", + "chicken broth", + "garlic powder", + "dry sherry", + "carrots", + "pepper", + "red pepper flakes", + "boneless skinless chicken" + ] + }, + { + "id": 17039, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "red wine vinegar", + "celery", + "creole mustard", + "green onions", + "paprika", + "onions", + "lettuce leaves", + "worcestershire sauce", + "cooked shrimp", + "tomato purée", + "vegetable oil", + "flat leaf parsley" + ] + }, + { + "id": 11086, + "cuisine": "filipino", + "ingredients": [ + "cooking oil", + "salt", + "brewed coffee", + "baking powder", + "cream of tartar", + "egg yolks", + "white sugar", + "egg whites", + "all-purpose flour" + ] + }, + { + "id": 22470, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "fine sea salt", + "ground cumin", + "olive oil", + "fresh thyme leaves", + "sea salt flakes", + "chickpea flour", + "zucchini", + "apricots", + "base", + "tart" + ] + }, + { + "id": 41823, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large eggs", + "apricots", + "water", + "heavy cream", + "lemon zest", + "fresh lemon juice", + "sliced almonds", + "almond extract", + "grappa" + ] + }, + { + "id": 8358, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "worcestershire sauce", + "salt", + "shrimp", + "fresh thyme leaves", + "vegetable broth", + "ham", + "sliced green onions", + "dry white wine", + "heavy cream", + "cayenne pepper", + "corn grits", + "butter", + "garlic", + "fresh lemon juice" + ] + }, + { + "id": 19589, + "cuisine": "french", + "ingredients": [ + "roquefort", + "wine", + "pepper", + "unsalted butter" + ] + }, + { + "id": 7921, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "rolls", + "white vinegar", + "dry sherry", + "corn starch", + "black bean sauce", + "scallions", + "honey", + "duck" + ] + }, + { + "id": 37737, + "cuisine": "chinese", + "ingredients": [ + "beef tenderloin", + "soy sauce", + "corn starch", + "cooking oil", + "snow peas", + "salt" + ] + }, + { + "id": 19837, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "marinade", + "pinto beans", + "kosher salt", + "flour tortillas", + "purple onion", + "chopped cilantro", + "sirloin tip", + "ground black pepper", + "vegetable oil", + "fresh lime juice", + "minced garlic", + "jalapeno chilies", + "salsa", + "serrano chile" + ] + }, + { + "id": 47290, + "cuisine": "irish", + "ingredients": [ + "pepper", + "cooking spray", + "ground allspice", + "rutabaga", + "dried thyme", + "beef broth", + "lamb leg", + "water", + "quick-cooking barley", + "carrots", + "green cabbage", + "garlic powder", + "chopped onion", + "bay leaf" + ] + }, + { + "id": 7441, + "cuisine": "mexican", + "ingredients": [ + "mustard", + "pepper", + "tahini", + "whole wheat tortillas", + "lemon juice", + "tumeric", + "nutritional yeast", + "mushrooms", + "salt", + "onions", + "spinach", + "water", + "potatoes", + "low-fat soy milk", + "corn starch", + "black beans", + "garlic powder", + "onion powder", + "salsa", + "olives" + ] + }, + { + "id": 11757, + "cuisine": "british", + "ingredients": [ + "marmite", + "cream cheese", + "bagels" + ] + }, + { + "id": 32664, + "cuisine": "indian", + "ingredients": [ + "water", + "raisins", + "cumin seed", + "cashew nuts", + "clove", + "bay leaves", + "salt", + "onions", + "saffron threads", + "chopped almonds", + "whipping cream", + "cinnamon sticks", + "basmati rice", + "black peppercorns", + "vegetable oil", + "cardamom pods", + "frozen peas" + ] + }, + { + "id": 11054, + "cuisine": "spanish", + "ingredients": [ + "almonds", + "confectioners sugar", + "orange", + "almond extract", + "large eggs", + "superfine sugar", + "lemon" + ] + }, + { + "id": 21587, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "salt", + "chili powder", + "corn starch", + "garlic powder", + "sweet paprika", + "chicken bouillon granules", + "onion powder", + "ground cumin" + ] + }, + { + "id": 4165, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "coarse salt", + "all purpose unbleached flour", + "red bell pepper", + "mozzarella cheese", + "dry yeast", + "chopped fresh thyme", + "purple onion", + "honey", + "grated parmesan cheese", + "large garlic cloves", + "all-purpose flour", + "warm water", + "prosciutto", + "balsamic vinegar", + "worcestershire sauce" + ] + }, + { + "id": 43116, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "green bell pepper", + "worcestershire sauce", + "okra", + "onions", + "tomatoes", + "frozen whole kernel corn", + "hot sauce", + "garlic cloves", + "chicken broth", + "olive oil", + "salt", + "freshly ground pepper", + "sliced green onions", + "cooked rice", + "dry white wine", + "creole seasoning", + "field peas" + ] + }, + { + "id": 33967, + "cuisine": "italian", + "ingredients": [ + "amaretti", + "fresh lemon juice", + "vanilla extract", + "balsamic vinegar", + "frozen strawberries", + "sugar", + "strawberries" + ] + }, + { + "id": 18098, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "minced garlic", + "cilantro", + "onions", + "black beans", + "Tabasco Pepper Sauce", + "salt", + "green bell pepper", + "olive oil", + "white rice", + "dried oregano", + "pepper", + "lime wedges", + "red bell pepper" + ] + }, + { + "id": 21301, + "cuisine": "british", + "ingredients": [ + "sugar", + "fino sherry", + "water" + ] + }, + { + "id": 49388, + "cuisine": "russian", + "ingredients": [ + "black pepper", + "salt", + "white sandwich bread", + "whole milk", + "Maggi", + "unsalted butter", + "all-purpose flour", + "cooked ham", + "mushrooms", + "sour cream" + ] + }, + { + "id": 6800, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "bow-tie pasta", + "cooked ham", + "red pepper", + "freshly ground pepper", + "Alfredo sauce", + "chopped fresh sage", + "olive oil", + "garlic" + ] + }, + { + "id": 14331, + "cuisine": "irish", + "ingredients": [ + "whole grain mustard", + "onions", + "pepper", + "garlic", + "brown sugar", + "worcestershire sauce", + "corned beef", + "Guinness Beer", + "salt" + ] + }, + { + "id": 25323, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "ginger", + "corn starch", + "Shaoxing wine", + "garlic", + "beef brisket", + "star anise", + "cinnamon sticks", + "rock sugar", + "daikon", + "sauce" + ] + }, + { + "id": 21178, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "tomatillos", + "chicken", + "jack", + "salt", + "lime", + "garlic", + "plain yogurt", + "tortillas", + "Hatch Green Chiles" + ] + }, + { + "id": 9301, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "crushed tomatoes", + "marinara sauce", + "garlic", + "ground beef", + "green bell pepper", + "kosher salt", + "grated parmesan cheese", + "parsley", + "thyme", + "oregano", + "tomato paste", + "white wine", + "parmesan cheese", + "cheese slices", + "yellow onion", + "spaghetti", + "bread", + "sugar", + "olive oil", + "bay leaves", + "crushed red pepper", + "fresh parsley" + ] + }, + { + "id": 25771, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "butter", + "panko breadcrumbs", + "black pepper", + "cooking spray", + "all-purpose flour", + "italian seasoning", + "grated parmesan cheese", + "salt", + "garlic salt", + "milk", + "chives", + "chicken fingers" + ] + }, + { + "id": 34364, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "ground black pepper", + "garlic cloves", + "sundried tomato paste", + "olive oil", + "dry white wine", + "sliced green onions", + "fava beans", + "morel", + "salt", + "arborio rice", + "fat free less sodium chicken broth", + "leeks", + "boiling water" + ] + }, + { + "id": 2625, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "garam masala", + "chickpeas", + "ground ginger", + "fresh leav spinach", + "garlic", + "fresh lemon juice", + "red chili peppers", + "sea salt", + "cumin seed", + "tomatoes", + "coriander seeds", + "yellow onion", + "ground turmeric" + ] + }, + { + "id": 19108, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "salt", + "cannellini beans", + "chopped fresh sage", + "garlic" + ] + }, + { + "id": 39364, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "green bell pepper, slice", + "thyme", + "tomatoes", + "lime", + "salt", + "onions", + "red bell pepper, sliced", + "butter", + "hot water", + "snappers", + "hot pepper sauce", + "tomato ketchup", + "fish" + ] + }, + { + "id": 30184, + "cuisine": "italian", + "ingredients": [ + "1% low-fat cottage cheese", + "salt", + "frozen chopped spinach", + "ground nutmeg", + "feta cheese crumbles", + "dried basil", + "garlic cloves", + "pasta", + "marinara sauce", + "fresh parsley" + ] + }, + { + "id": 37163, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "chili powder", + "carrots", + "granulated sugar", + "garlic", + "pork belly", + "sesame oil", + "onions", + "green onions", + "Gochujang base" + ] + }, + { + "id": 46879, + "cuisine": "italian", + "ingredients": [ + "pork belly", + "crushed red pepper flakes", + "fresh rosemary", + "orange", + "fennel seeds", + "kosher salt", + "garlic cloves", + "fresh sage", + "pork loin" + ] + }, + { + "id": 8145, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "chicken breasts", + "red pepper flakes", + "salt", + "smoked paprika", + "coriander", + "avocado", + "radishes", + "lime wedges", + "diced tomatoes", + "yellow onion", + "bay leaf", + "hominy", + "chili powder", + "shredded lettuce", + "hot sauce", + "red bell pepper", + "cumin", + "chicken broth", + "fresh thyme", + "tomatillos", + "garlic", + "fresh oregano", + "chopped cilantro" + ] + }, + { + "id": 29502, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "garlic cloves", + "tumeric", + "purple onion", + "green cabbage", + "ginger", + "mustard seeds", + "dry coconut", + "cumin seed" + ] + }, + { + "id": 45233, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "butter", + "chicken thighs", + "ketchup", + "oil", + "cooked rice", + "salt", + "frozen peas", + "pepper", + "onions" + ] + }, + { + "id": 38226, + "cuisine": "irish", + "ingredients": [ + "tomatoes", + "paprika", + "all-purpose flour", + "English muffins", + "shredded sharp cheddar cheese", + "beer", + "pepper", + "dry mustard", + "sauce", + "butter", + "salt" + ] + }, + { + "id": 29010, + "cuisine": "spanish", + "ingredients": [ + "balsamic vinegar", + "salt", + "sea scallops", + "watercress", + "ground black pepper", + "extra-virgin olive oil", + "chopped fresh thyme" + ] + }, + { + "id": 20807, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "peanuts", + "rice noodles", + "scallions", + "sugar", + "water", + "vinegar", + "ginger", + "canola oil", + "fish sauce", + "minced garlic", + "hoisin sauce", + "cilantro", + "carrots", + "pork", + "honey", + "hot pepper", + "peanut butter" + ] + }, + { + "id": 29940, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "diced green chilies", + "lime wedges", + "chopped cilantro fresh", + "cotija", + "poblano peppers", + "salt", + "ground cumin", + "chicken stock", + "white hominy", + "garlic", + "chicken", + "olive oil", + "radishes", + "yellow onion" + ] + }, + { + "id": 41175, + "cuisine": "cajun_creole", + "ingredients": [ + "kale", + "ground black pepper", + "chili powder", + "salt", + "dried oregano", + "olive oil", + "ground red pepper", + "red wine vinegar", + "garlic cloves", + "dried thyme", + "cooking spray", + "baking potatoes", + "hot sauce", + "ground cumin", + "water", + "garlic powder", + "flank steak", + "paprika", + "garlic salt" + ] + }, + { + "id": 432, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "roma tomatoes", + "chili powder", + "garlic", + "oil", + "cumin", + "chili beans", + "lime", + "guacamole", + "butter", + "salsa", + "onions", + "black beans", + "jalapeno chilies", + "tenderloin", + "salt", + "sour cream", + "romaine lettuce", + "flour tortillas", + "boneless skinless chicken breasts", + "cilantro", + "hot sauce", + "oregano" + ] + }, + { + "id": 35704, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "flour", + "ground sirloin", + "garlic", + "chopped onion", + "celery", + "ketchup", + "sherry", + "lemon", + "beef broth", + "thyme", + "pepper", + "bay leaves", + "worcestershire sauce", + "hot sauce", + "flat leaf parsley", + "tomato purée", + "hard-boiled egg", + "butter", + "salt", + "lemon juice" + ] + }, + { + "id": 27107, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "pinenuts", + "butter", + "white wine", + "sliced black olives", + "onions", + "reduced sodium chicken broth", + "ground black pepper", + "medium shrimp", + "red chili peppers", + "olive oil", + "carrots" + ] + }, + { + "id": 30253, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "grated jack cheese", + "black pepper", + "large garlic cloves", + "onions", + "vegetable oil", + "rotisserie chicken", + "flour tortillas", + "salt" + ] + }, + { + "id": 48354, + "cuisine": "greek", + "ingredients": [ + "cherry tomatoes", + "sea salt", + "white wine vinegar", + "red bell pepper", + "quinoa", + "extra-virgin olive oil", + "english cucumber", + "honey", + "kalamata", + "purple onion", + "italian seasoning", + "baby spinach", + "garlic", + "feta cheese crumbles" + ] + }, + { + "id": 43410, + "cuisine": "greek", + "ingredients": [ + "tahini", + "crushed red pepper", + "garlic", + "garbanzo beans", + "lemon juice" + ] + }, + { + "id": 27493, + "cuisine": "cajun_creole", + "ingredients": [ + "crawfish", + "beaten eggs", + "dijon mustard", + "canola oil", + "mayonaise", + "worcestershire sauce", + "hot pepper sauce", + "crackers" + ] + }, + { + "id": 19312, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "pepper", + "flour tortillas", + "chili powder", + "beer", + "ground cumin", + "brown sugar", + "olive oil", + "flour", + "salt", + "cumin", + "tomato paste", + "lime", + "jalapeno chilies", + "onion powder", + "smoked paprika", + "tomato sauce", + "garlic powder", + "boneless skinless chicken breasts", + "cayenne pepper", + "monterey jack" + ] + }, + { + "id": 43740, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "vegetable stock", + "rice vinegar", + "noodles", + "low sodium soy sauce", + "udon", + "red pepper flakes", + "carrots", + "tofu", + "extra firm tofu", + "butter", + "juice", + "orange zest", + "vegetables", + "broccoli florets", + "veggies", + "corn starch" + ] + }, + { + "id": 29772, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "lemon", + "dark brown sugar", + "crystallized ginger", + "cayenne pepper", + "pears", + "quatre épices", + "raisins", + "mustard seeds", + "apple cider vinegar", + "chopped onion" + ] + }, + { + "id": 28943, + "cuisine": "irish", + "ingredients": [ + "raw honey", + "ice", + "avocado", + "fresh mint", + "vanilla", + "sweetener", + "coconut milk" + ] + }, + { + "id": 48818, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "old-fashioned oats", + "salt", + "brown sugar", + "large eggs", + "butter", + "lemon juice", + "granulated sugar", + "baking powder", + "all-purpose flour", + "sugar", + "flour", + "vanilla extract" + ] + }, + { + "id": 26091, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "worcestershire sauce", + "garlic cloves", + "water", + "salt", + "fresh mint", + "baguette", + "extra-virgin olive oil", + "fresh lemon juice", + "eggs", + "ground black pepper", + "anchovy fillets", + "arugula" + ] + }, + { + "id": 4442, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "crushed red pepper flakes", + "chicken legs", + "garlic", + "water", + "salt" + ] + }, + { + "id": 21184, + "cuisine": "chinese", + "ingredients": [ + "boneless skinless chicken breasts", + "garlic", + "oil", + "green bell pepper", + "marinade", + "rice vinegar", + "corn starch", + "sugar", + "sesame oil", + "sauce", + "red bell pepper", + "chili", + "ginger", + "roasted peanuts", + "gluten free soy sauce" + ] + }, + { + "id": 41957, + "cuisine": "greek", + "ingredients": [ + "toasted walnuts", + "honey", + "plain yogurt", + "vanilla" + ] + }, + { + "id": 47126, + "cuisine": "indian", + "ingredients": [ + "water", + "butternut squash", + "garlic cloves", + "black pepper", + "olive oil", + "yellow onion", + "greek yogurt", + "lower sodium chicken broth", + "honey", + "ground red pepper", + "carrots", + "kosher salt", + "garam masala", + "acorn squash", + "Madras curry powder" + ] + }, + { + "id": 36336, + "cuisine": "french", + "ingredients": [ + "fine salt", + "gruyere cheese", + "butter", + "flat leaf parsley", + "shallots", + "garlic cloves", + "ground pepper", + "snails" + ] + }, + { + "id": 6766, + "cuisine": "french", + "ingredients": [ + "cherry tomatoes", + "black olives", + "extra large eggs", + "chopped parsley", + "gruyere cheese", + "clarified butter", + "artichoke hearts", + "fresh mushrooms" + ] + }, + { + "id": 24986, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "low-fat buttermilk", + "baby beets", + "salad dressing", + "olive oil", + "cooking spray", + "all-purpose flour", + "dried thyme", + "crumbled blue cheese", + "salt", + "romaine lettuce", + "garlic powder", + "chicken breasts", + "dry bread crumbs" + ] + }, + { + "id": 37870, + "cuisine": "filipino", + "ingredients": [ + "pork belly", + "thai chile", + "oil", + "water", + "salt", + "onions", + "pepper", + "garlic", + "coconut milk", + "shrimp paste", + "coconut cream" + ] + }, + { + "id": 44858, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "basil", + "shredded parmesan cheese", + "baby spinach", + "garlic", + "freshly ground pepper", + "olive oil", + "linguine", + "white beans", + "butter", + "salt" + ] + }, + { + "id": 11331, + "cuisine": "japanese", + "ingredients": [ + "tomatoes", + "cilantro leaves", + "coriander", + "seeds", + "oil", + "ginger paste", + "red chili powder", + "okra", + "ground turmeric", + "salt", + "onions" + ] + }, + { + "id": 49021, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "sliced almonds", + "water chestnuts", + "sour cream", + "andouille sausage", + "milk", + "cajun seasoning", + "onions", + "green bell pepper", + "shredded cheddar cheese", + "cooked chicken", + "cream of mushroom soup", + "bread crumb fresh", + "black-eyed peas", + "butter", + "long grain and wild rice mix" + ] + }, + { + "id": 48469, + "cuisine": "southern_us", + "ingredients": [ + "water", + "jalapeno chilies", + "sweet onion", + "smoked turkey", + "salt", + "collard greens", + "turkey legs" + ] + }, + { + "id": 22434, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chili powder", + "cumin", + "tomatoes", + "garlic powder", + "cilantro", + "pepper", + "granulated sugar", + "purple onion", + "lime juice", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 12774, + "cuisine": "cajun_creole", + "ingredients": [ + "cornbread", + "ground chuck", + "bell pepper", + "ground pork", + "celery", + "eggs", + "onion soup", + "butter", + "thyme", + "whole wheat bread toasted", + "pepper", + "green onions", + "garlic", + "onions", + "chicken broth", + "water", + "parsley", + "salt", + "sage" + ] + }, + { + "id": 47908, + "cuisine": "filipino", + "ingredients": [ + "cooking oil", + "water", + "tomato ketchup", + "white vinegar", + "salt", + "granulated sugar", + "corn starch" + ] + }, + { + "id": 5125, + "cuisine": "indian", + "ingredients": [ + "water", + "chile pepper", + "cilantro leaves", + "onions", + "tomatoes", + "cooking oil", + "salt", + "brown cardamom", + "ground cumin", + "red chili powder", + "bay leaves", + "lamb chops", + "cinnamon sticks", + "fresh ginger root", + "garlic", + "green cardamom", + "ground turmeric" + ] + }, + { + "id": 35305, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "fat free less sodium chicken broth", + "butter", + "boneless skinless chicken breast halves", + "fresh cilantro", + "salt", + "canola oil", + "lime wedges", + "fresh lime juice" + ] + }, + { + "id": 9089, + "cuisine": "southern_us", + "ingredients": [ + "low sodium chicken broth", + "diced tomatoes", + "onions", + "milk", + "vegetable oil", + "salt", + "eggs", + "flour", + "garlic", + "boneless skinless chicken breast halves", + "ground black pepper", + "butter", + "cornmeal" + ] + }, + { + "id": 45120, + "cuisine": "spanish", + "ingredients": [ + "butter", + "salt", + "ground black pepper", + "diced tomatoes", + "fresh parsley", + "fish fillets", + "large garlic cloves", + "thyme", + "dry white wine", + "chopped celery", + "onions" + ] + }, + { + "id": 6860, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "bacon slices", + "mustard seeds", + "cider vinegar", + "green onions", + "salt", + "red potato", + "sweet potatoes", + "purple onion", + "canola oil", + "large eggs", + "crushed red pepper", + "fresh parsley" + ] + }, + { + "id": 15482, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "corn starch", + "egg whites", + "boiling water", + "cold water", + "egg yolks", + "sweetened condensed milk", + "milk", + "Jell-O Gelatin Dessert" + ] + }, + { + "id": 4687, + "cuisine": "italian", + "ingredients": [ + "eggs", + "crushed tomatoes", + "parmigiano reggiano cheese", + "freshly ground pepper", + "flat leaf parsley", + "bread crumb fresh", + "olive oil", + "yellow onion", + "juice", + "ground beef", + "fresh basil", + "milk", + "ground pork", + "garlic cloves", + "romana", + "kosher salt", + "prosciutto", + "fresh oregano", + "gnocchi" + ] + }, + { + "id": 27279, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "squid", + "fresh pineapple", + "vegetable oil", + "onions", + "garlic", + "white sugar", + "ground black pepper", + "celery" + ] + }, + { + "id": 39991, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "whole milk ricotta cheese", + "grated parmesan cheese", + "large eggs", + "grated nutmeg", + "flour" + ] + }, + { + "id": 42322, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "red pepper flakes", + "feta cheese crumbles", + "cannellini beans", + "garlic", + "diced tomatoes", + "chopped cilantro fresh" + ] + }, + { + "id": 28973, + "cuisine": "korean", + "ingredients": [ + "shiitake", + "green onions", + "Gochujang base", + "seafood stock", + "ginger", + "steak", + "radishes", + "watercress", + "shrimp", + "olive oil", + "jalapeno chilies", + "garlic", + "onions" + ] + }, + { + "id": 30596, + "cuisine": "southern_us", + "ingredients": [ + "golden delicious apples", + "allspice", + "apple juice", + "cinnamon", + "sugar", + "corn starch" + ] + }, + { + "id": 41912, + "cuisine": "mexican", + "ingredients": [ + "light sour cream", + "flour tortillas", + "black olives", + "ground cumin", + "frozen whole kernel corn", + "green onions", + "fresh lime juice", + "refried beans", + "cooking spray", + "salsa", + "Mexican cheese blend", + "paprika", + "chopped cilantro fresh" + ] + }, + { + "id": 26452, + "cuisine": "southern_us", + "ingredients": [ + "bread crumbs", + "green onions", + "all-purpose flour", + "garlic powder", + "bacon", + "elbow macaroni", + "milk", + "butter", + "sharp cheddar cheese", + "ground black pepper", + "salt" + ] + }, + { + "id": 45335, + "cuisine": "southern_us", + "ingredients": [ + "tomato purée", + "dried thyme", + "bay leaves", + "white rice", + "okra", + "diced onions", + "minced garlic", + "ground black pepper", + "red wine", + "salt", + "red bell pepper", + "chicken stock", + "dried basil", + "hot pepper sauce", + "bacon", + "peanut oil", + "green bell pepper", + "eggplant", + "fully cooked ham", + "smoked sausage", + "diced celery" + ] + }, + { + "id": 12704, + "cuisine": "italian", + "ingredients": [ + "butter", + "fresh mushrooms", + "cooked ham", + "linguine", + "fresh basil leaves", + "ground black pepper", + "garlic", + "whipping cream", + "onions" + ] + }, + { + "id": 47713, + "cuisine": "mexican", + "ingredients": [ + "corn", + "white cheddar cheese", + "monterey jack", + "chicken breasts", + "rice", + "refried beans", + "salt", + "pepper", + "cilantro", + "enchilada sauce" + ] + }, + { + "id": 43258, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "large eggs", + "salt", + "mascarpone", + "whole milk ricotta cheese", + "grated lemon peel", + "sugar", + "whole milk", + "all-purpose flour", + "unsalted butter", + "vegetable oil" + ] + }, + { + "id": 17326, + "cuisine": "spanish", + "ingredients": [ + "pork", + "dry sherry", + "flat leaf parsley", + "olive oil" + ] + }, + { + "id": 12354, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "gravy", + "salt", + "seasoned flour", + "pepper", + "unsalted butter", + "buttermilk", + "peanut oil", + "kosher salt", + "ground pepper", + "onion powder", + "round steaks", + "eggs", + "garlic powder", + "chili powder", + "all-purpose flour" + ] + }, + { + "id": 28421, + "cuisine": "greek", + "ingredients": [ + "vinaigrette dressing", + "ground black pepper", + "cherry tomatoes", + "lemon juice", + "kale", + "kalamata", + "feta cheese", + "oregano" + ] + }, + { + "id": 26463, + "cuisine": "british", + "ingredients": [ + "sugar", + "peeled fresh ginger", + "all-purpose flour", + "ground ginger", + "crystallized ginger", + "buttermilk", + "baking soda", + "baking powder", + "pecan halves", + "unsalted butter", + "vanilla extract" + ] + }, + { + "id": 17421, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "celery", + "lettuce", + "mandarin orange segments", + "almonds", + "dressing", + "green onions" + ] + }, + { + "id": 31667, + "cuisine": "british", + "ingredients": [ + "sugar", + "ground nutmeg", + "salt", + "ground cinnamon", + "dried currants", + "baking powder", + "dark brown sugar", + "dark molasses", + "unsalted butter", + "all-purpose flour", + "melted butter", + "baking soda", + "buttermilk" + ] + }, + { + "id": 14999, + "cuisine": "filipino", + "ingredients": [ + "corn", + "shallots", + "cabbage", + "pork", + "Shaoxing wine", + "garlic cloves", + "shredded carrots", + "salt", + "black pepper", + "lettuce leaves", + "bamboo shoots" + ] + }, + { + "id": 19160, + "cuisine": "jamaican", + "ingredients": [ + "kale", + "low sodium chicken broth", + "scotch bonnet chile", + "okra", + "kosher salt", + "ground black pepper", + "vegetable oil", + "ground allspice", + "bone in chicken thighs", + "dried thyme", + "sweet potatoes", + "light coconut milk", + "medium shrimp", + "canned chopped tomatoes", + "bay leaves", + "garlic", + "onions" + ] + }, + { + "id": 33615, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "ricotta cheese", + "salt", + "onions", + "tomato sauce", + "fresh thyme", + "red pepper flakes", + "shredded mozzarella cheese", + "zucchini", + "baby spinach", + "fresh oregano", + "eggplant", + "crimini mushrooms", + "garlic", + "red bell pepper" + ] + }, + { + "id": 1827, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "thai basil", + "coconut milk", + "fish sauce", + "lemongrass", + "green onions", + "chicken broth", + "minced ginger", + "mushrooms", + "cooked shrimp", + "coconut oil", + "lime", + "garlic" + ] + }, + { + "id": 20874, + "cuisine": "french", + "ingredients": [ + "butter", + "bittersweet chocolate", + "slivered almonds", + "cocoa powder", + "powdered sugar", + "light corn syrup", + "white sugar", + "large egg whites", + "heavy whipping cream" + ] + }, + { + "id": 12091, + "cuisine": "french", + "ingredients": [ + "cayenne", + "salt", + "eggs", + "butter", + "hot water", + "flour", + "grated Gruyère cheese", + "sugar", + "dry mustard" + ] + }, + { + "id": 38294, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "olive oil", + "navel oranges", + "lemon juice", + "kalamata", + "bow-tie pasta", + "sea scallops", + "purple onion", + "chopped fresh mint" + ] + }, + { + "id": 25791, + "cuisine": "french", + "ingredients": [ + "olive oil", + "garlic", + "fresh parsley", + "dry white wine", + "all-purpose flour", + "chicken", + "crushed tomatoes", + "kalamata", + "yellow onion", + "ground black pepper", + "salt", + "fresh basil leaves" + ] + }, + { + "id": 37909, + "cuisine": "mexican", + "ingredients": [ + "beef", + "salt", + "tomatoes", + "vegetable oil", + "cumin", + "serrano peppers", + "onions", + "black peppercorns", + "garlic" + ] + }, + { + "id": 27669, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "potatoes", + "thyme", + "curry powder", + "salt", + "bread crumbs", + "meat", + "onions", + "vinegar", + "oil" + ] + }, + { + "id": 9651, + "cuisine": "mexican", + "ingredients": [ + "water", + "chili powder", + "salt", + "marinara sauce", + "cilantro", + "Mexican cheese", + "olive oil", + "diced tomatoes", + "chopped onion", + "lean ground turkey", + "bell pepper", + "white rice", + "cumin" + ] + }, + { + "id": 40256, + "cuisine": "greek", + "ingredients": [ + "rosemary sprigs", + "ground black pepper", + "feta cheese crumbles", + "fresh rosemary", + "fat free less sodium chicken broth", + "shallots", + "grape tomatoes", + "olive oil", + "salt", + "white bread", + "pitted kalamata olives", + "cooking spray", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 45906, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "capsicum", + "onions", + "ground cumin", + "tomatoes", + "garam masala", + "oil", + "ginger paste", + "vegetables", + "salt", + "ground turmeric", + "sesame seeds", + "chili powder", + "boiling potatoes" + ] + }, + { + "id": 43317, + "cuisine": "chinese", + "ingredients": [ + "flour tortillas", + "pork loin chops", + "onions", + "sake", + "peeled fresh ginger", + "beansprouts", + "low sodium soy sauce", + "mushrooms", + "red bell pepper", + "hoisin sauce", + "garlic cloves", + "bok choy" + ] + }, + { + "id": 20485, + "cuisine": "italian", + "ingredients": [ + "sugar", + "egg whites", + "ladyfingers", + "reduced fat cream cheese", + "whipped topping", + "kahlúa", + "water", + "unsweetened cocoa powder", + "powdered sugar", + "instant espresso granules", + "hot water" + ] + }, + { + "id": 23151, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "stewed tomatoes", + "ground cumin", + "ground cinnamon", + "chili powder", + "cayenne pepper", + "boneless skinless chicken breasts", + "garlic", + "green bell pepper", + "cracked black pepper", + "unsweetened chocolate" + ] + }, + { + "id": 13970, + "cuisine": "french", + "ingredients": [ + "butter", + "large egg yolks", + "dijon mustard", + "lemon juice" + ] + }, + { + "id": 21532, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "unsalted butter", + "cilantro leaves", + "corn", + "chili powder", + "cotija", + "jalapeno chilies", + "lime", + "garlic" + ] + }, + { + "id": 32415, + "cuisine": "vietnamese", + "ingredients": [ + "mint", + "sesame oil", + "peanut butter", + "medium shrimp", + "asian basil", + "rice vermicelli", + "fresh herbs", + "rice paper", + "Vietnamese coriander", + "vegetable oil", + "boneless pork loin", + "perilla", + "lettuce", + "hoisin sauce", + "rice vinegar", + "cucumber" + ] + }, + { + "id": 15765, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic", + "toasted sesame oil", + "eggs", + "bacon", + "scallions", + "frozen peas", + "sticky rice", + "chile bean paste", + "medium shrimp", + "sake", + "ginger", + "beansprouts" + ] + }, + { + "id": 7382, + "cuisine": "moroccan", + "ingredients": [ + "active dry yeast", + "dates", + "anise seed", + "unsalted butter", + "sesame seeds", + "all-purpose flour", + "warm water", + "egg yolks" + ] + }, + { + "id": 4292, + "cuisine": "indian", + "ingredients": [ + "figs", + "rice", + "sugar", + "saffron", + "slivered almonds", + "cardamom pods", + "whole milk" + ] + }, + { + "id": 12236, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "bay leaves", + "ground cumin", + "capers", + "ground pepper", + "ground turkey", + "tomatoes", + "minced garlic", + "cilantro", + "tomato sauce", + "bell pepper", + "onions" + ] + }, + { + "id": 9906, + "cuisine": "indian", + "ingredients": [ + "garlic", + "chopped parsley", + "curry powder", + "brown lentils", + "homemade chicken stock", + "salt", + "onions", + "olive oil", + "hot curry powder" + ] + }, + { + "id": 15077, + "cuisine": "french", + "ingredients": [ + "sugar", + "chopped almonds", + "Grand Marnier", + "melted butter", + "milk", + "salt", + "pastry cream", + "flour", + "cognac", + "eggs", + "bananas", + "grated lemon zest" + ] + }, + { + "id": 12411, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "shortbread cookies", + "boiling water", + "tea bags", + "large eggs", + "fresh mint", + "raspberries", + "cream cheese", + "fromage blanc", + "red raspberries", + "green tea powder" + ] + }, + { + "id": 36156, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "ground black pepper", + "arrowroot powder", + "ground coriander", + "ground cumin", + "fresh ginger", + "cinnamon", + "paprika", + "bay leaf", + "olive oil", + "chicken breasts", + "heavy cream", + "garlic cloves", + "tumeric", + "garam masala", + "lemon", + "cayenne pepper", + "onions" + ] + }, + { + "id": 41824, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "olive oil", + "grating cheese", + "salsa", + "onions", + "avocado", + "kosher salt", + "Hurst Family Harvest Chipotle Lime Black Bean Soup mix", + "garlic", + "sour cream", + "chicken broth", + "gluten free cooking spray", + "vegetable oil", + "cilantro leaves", + "roasted tomatoes", + "gluten free corn tortillas", + "ground black pepper", + "chipotle puree", + "green chilies", + "sliced green onions" + ] + }, + { + "id": 28832, + "cuisine": "thai", + "ingredients": [ + "garlic", + "fresh turmeric", + "white peppercorns", + "salt", + "lemon grass", + "chicken" + ] + }, + { + "id": 15910, + "cuisine": "italian", + "ingredients": [ + "pepper", + "boneless skinless chicken breasts", + "salt", + "wine", + "olive oil", + "linguine", + "fresh parsley", + "crushed tomatoes", + "butter", + "all-purpose flour", + "sugar", + "parmesan cheese", + "garlic", + "onions" + ] + }, + { + "id": 48034, + "cuisine": "indian", + "ingredients": [ + "warm water", + "cilantro leaves", + "onions", + "eggs", + "capsicum", + "oil", + "pepper", + "green chilies", + "tumeric", + "salt", + "wheat flour" + ] + }, + { + "id": 15753, + "cuisine": "russian", + "ingredients": [ + "white pepper", + "salt", + "eggs", + "unsalted butter", + "bread crumb fresh", + "chicken breasts", + "bread", + "milk" + ] + }, + { + "id": 26387, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "ginger", + "ground coriander", + "plain yogurt", + "salt", + "ground cumin", + "chiles", + "garlic", + "ghee", + "frozen chopped spinach", + "garam masala", + "yellow onion" + ] + }, + { + "id": 40343, + "cuisine": "italian", + "ingredients": [ + "cannellini beans", + "pasta sauce", + "sliced black olives", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 23681, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "egg yolks", + "konbu", + "white miso", + "ginger", + "dashi", + "daikon", + "sake", + "mirin", + "salt" + ] + }, + { + "id": 39356, + "cuisine": "russian", + "ingredients": [ + "white cabbage", + "salt", + "extra-virgin olive oil", + "dill", + "radishes", + "persian cucumber", + "white wine vinegar" + ] + }, + { + "id": 41963, + "cuisine": "french", + "ingredients": [ + "sugar", + "baby arugula", + "rye", + "salt", + "granny smith apples", + "wheels", + "dijon mustard", + "lemon juice" + ] + }, + { + "id": 9660, + "cuisine": "russian", + "ingredients": [ + "large eggs", + "all-purpose flour", + "melted butter", + "boiling water", + "salt" + ] + }, + { + "id": 7579, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "corn", + "flour", + "purple onion", + "okra", + "flax seed meal", + "pepper", + "yellow squash", + "sunflower oil", + "hot sauce", + "celery", + "dried rosemary", + "cooked brown rice", + "dried basil", + "diced tomatoes", + "salt", + "green beans", + "dried oregano", + "tomato paste", + "water", + "black-eyed peas", + "garlic", + "cayenne pepper", + "dried parsley", + "ground cumin" + ] + }, + { + "id": 37031, + "cuisine": "southern_us", + "ingredients": [ + "cola soft drink", + "unsalted butter", + "country ham" + ] + }, + { + "id": 11058, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "black pepper", + "tortillas", + "Mexican oregano", + "cheese", + "smoked paprika", + "lettuce", + "warm water", + "olive oil", + "flour", + "red pepper", + "salt", + "chipotle chile powder", + "brown sugar", + "black beans", + "zucchini", + "onion powder", + "purple onion", + "sour cream", + "avocado", + "cooked brown rice", + "garlic powder", + "baking powder", + "sea salt", + "salsa", + "ground cumin" + ] + }, + { + "id": 43855, + "cuisine": "mexican", + "ingredients": [ + "cottage cheese", + "salt", + "shredded Monterey Jack cheese", + "spinach", + "diced tomatoes", + "onions", + "chipotle chile", + "scallions", + "garlic powder", + "corn tortillas" + ] + }, + { + "id": 30737, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "cayenne pepper", + "warm water", + "salt", + "fresh lemon juice", + "garlic", + "chickpeas", + "paprika", + "tahini paste", + "red bell pepper" + ] + }, + { + "id": 19688, + "cuisine": "spanish", + "ingredients": [ + "white vinegar", + "fresh tomatoes", + "red bell pepper", + "green olives", + "extra-virgin olive oil", + "onions", + "eggs", + "potatoes", + "tuna", + "green bell pepper", + "salt" + ] + }, + { + "id": 19580, + "cuisine": "cajun_creole", + "ingredients": [ + "green onions", + "creole seasoning", + "large shrimp", + "olive oil", + "whipping cream", + "lemon juice", + "cooked rice", + "ground red pepper", + "garlic cloves", + "ground black pepper", + "salt", + "fresh parsley" + ] + }, + { + "id": 14840, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "maple syrup", + "collard greens", + "low sodium chicken broth", + "pepper", + "oil", + "turkey legs", + "garlic cloves" + ] + }, + { + "id": 39263, + "cuisine": "british", + "ingredients": [ + "pepper", + "caster", + "salad leaves", + "scallops", + "garden peas", + "salt", + "mint", + "mild olive oil", + "white wine vinegar", + "maldon sea salt", + "bacon rind", + "unsalted butter", + "runny honey" + ] + }, + { + "id": 25399, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "fettucine", + "all-purpose flour", + "butter", + "milk", + "frozen broccoli" + ] + }, + { + "id": 10686, + "cuisine": "spanish", + "ingredients": [ + "dijon mustard", + "fresh lemon juice", + "extra-virgin olive oil", + "vegetable oil", + "large egg yolks", + "garlic cloves" + ] + }, + { + "id": 8174, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "all-purpose flour", + "eggs", + "buttermilk", + "white sugar", + "butter", + "cornmeal", + "baking soda", + "salt" + ] + }, + { + "id": 20095, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "curry powder", + "green chilies", + "ground turmeric", + "fresh curry leaves", + "salt", + "onions", + "coconut oil", + "chili powder", + "coconut milk", + "ground cumin", + "garlic paste", + "coriander powder", + "mustard seeds", + "fish" + ] + }, + { + "id": 37194, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "vegetable oil", + "green chilies", + "chuck", + "whole peeled tomatoes", + "salt", + "serrano chile", + "water", + "cilantro", + "beer", + "flour", + "yellow onion", + "cumin" + ] + }, + { + "id": 20364, + "cuisine": "greek", + "ingredients": [ + "eggs", + "pepper", + "coarse salt", + "purple onion", + "feta cheese crumbles", + "couscous", + "boiling water", + "pinenuts", + "roasted red peppers", + "red pepper flakes", + "yellow onion", + "greek yogurt", + "ground beef", + "black pepper", + "olive oil", + "baby spinach", + "salt", + "cucumber", + "dill weed", + "dried oregano", + "nutmeg", + "kosher salt", + "grated parmesan cheese", + "garlic", + "lemon juice", + "sour cream", + "fresh parsley" + ] + }, + { + "id": 18219, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "flour", + "dark brown sugar", + "unsalted butter", + "buttermilk", + "baking soda", + "baking powder", + "stone-ground cornmeal", + "large eggs", + "fine sea salt" + ] + }, + { + "id": 11268, + "cuisine": "italian", + "ingredients": [ + "baby spinach leaves", + "large eggs", + "crushed red pepper", + "nonfat ricotta cheese", + "large egg whites", + "mushrooms", + "salt", + "black pepper", + "cooking spray", + "purple onion", + "plum tomatoes", + "fresh basil", + "olive oil", + "balsamic vinegar", + "garlic cloves" + ] + }, + { + "id": 25836, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "chopped cilantro fresh", + "kosher salt", + "scallions", + "chicken legs", + "low sodium chicken broth", + "long grain white rice", + "water", + "ground white pepper" + ] + }, + { + "id": 16502, + "cuisine": "french", + "ingredients": [ + "dried thyme", + "leeks", + "rib", + "chicken broth", + "finely chopped onion", + "baking potatoes", + "saffron threads", + "unsalted butter", + "dry white wine", + "bay leaf", + "water", + "half & half", + "carrots" + ] + }, + { + "id": 24891, + "cuisine": "russian", + "ingredients": [ + "red wine vinegar", + "orange peel", + "orange juice", + "sugar", + "beets", + "butter" + ] + }, + { + "id": 36973, + "cuisine": "jamaican", + "ingredients": [ + "pork baby back ribs", + "spiced rum", + "jerk seasoning", + "bbq sauce" + ] + }, + { + "id": 31804, + "cuisine": "korean", + "ingredients": [ + "chile powder", + "coarse salt", + "scallions", + "sugar", + "ginger", + "shrimp", + "fish sauce", + "napa cabbage", + "carrots", + "soy sauce", + "garlic" + ] + }, + { + "id": 38507, + "cuisine": "mexican", + "ingredients": [ + "whipping cream", + "water", + "mexican chocolate" + ] + }, + { + "id": 30304, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "salt", + "ground black pepper", + "fresh parsley", + "shells", + "large shrimp", + "olive oil", + "lemon juice" + ] + }, + { + "id": 21100, + "cuisine": "french", + "ingredients": [ + "pearl onions", + "trout fillet", + "plum tomatoes", + "green olives", + "ground black pepper", + "salt", + "olive oil", + "garlic", + "capers", + "dry white wine", + "chopped parsley" + ] + }, + { + "id": 36525, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "salt", + "vegetable oil cooking spray", + "chicken breasts", + "reduced-fat cheese", + "egg whites", + "all-purpose flour", + "pepper", + "cornflake cereal", + "italian seasoning" + ] + }, + { + "id": 34898, + "cuisine": "indian", + "ingredients": [ + "lime", + "garlic", + "onions", + "kosher salt", + "basil leaves", + "shrimp", + "honey", + "hot sauce", + "basmati rice", + "curry powder", + "butter", + "coconut milk" + ] + }, + { + "id": 49592, + "cuisine": "mexican", + "ingredients": [ + "cider vinegar", + "butter", + "pork shoulder", + "cayenne", + "cracked black pepper", + "dried oregano", + "frozen orange juice concentrate", + "cherries", + "achiote paste", + "sliced green onions", + "garlic powder", + "sea salt", + "chopped cilantro fresh" + ] + }, + { + "id": 18165, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "mustard greens", + "canola oil", + "water", + "yellow onion", + "black pepper", + "salt", + "fresh ginger", + "tilapia" + ] + }, + { + "id": 21632, + "cuisine": "mexican", + "ingredients": [ + "chorizo", + "balsamic vinegar", + "dried oregano", + "sun-dried tomatoes", + "grated jack cheese", + "olive oil", + "poblano chilies", + "pinenuts", + "flour tortillas", + "garlic cloves" + ] + }, + { + "id": 8, + "cuisine": "french", + "ingredients": [ + "whole milk", + "fine sea salt", + "vanilla sugar", + "lemon", + "hazelnuts", + "baking powder", + "all-purpose flour", + "large eggs", + "extra-virgin olive oil" + ] + }, + { + "id": 21462, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic juice", + "hot sauce", + "juice", + "worcestershire sauce", + "beer", + "ground black pepper", + "turkey", + "peanut oil", + "butter", + "cayenne pepper" + ] + }, + { + "id": 31, + "cuisine": "mexican", + "ingredients": [ + "vidalia onion", + "chopped green bell pepper", + "fresh lemon juice", + "fresh lima beans", + "olive oil", + "salt", + "poblano chiles", + "corn kernels", + "cilantro sprigs", + "red bell pepper", + "grape tomatoes", + "ground black pepper", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 22063, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "chicken breast halves", + "tequila", + "olive oil", + "salt", + "shredded Monterey Jack cheese", + "refried beans", + "crusty sandwich rolls", + "chopped cilantro fresh", + "avocado", + "poblano peppers", + "salsa" + ] + }, + { + "id": 32767, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "purple onion", + "fresh cilantro", + "red pepper", + "tilapia fillets", + "red pepper flakes", + "cumin", + "cooked rice", + "corn", + "garlic" + ] + }, + { + "id": 13467, + "cuisine": "italian", + "ingredients": [ + "eggs", + "crushed tomatoes", + "bay leaves", + "salt", + "tomato paste", + "romano cheese", + "olive oil", + "garlic", + "onions", + "ground cinnamon", + "pepper", + "beef brisket", + "dry pasta", + "dried parsley", + "white bread", + "pork", + "dried basil", + "red wine", + "sweet italian sausage" + ] + }, + { + "id": 31611, + "cuisine": "korean", + "ingredients": [ + "seasoning", + "pepper", + "sesame oil", + "onions", + "sugar", + "honey", + "oyster mushrooms", + "sirloin", + "water", + "apples", + "kiwi", + "soy sauce", + "green onions", + "garlic cloves" + ] + }, + { + "id": 35374, + "cuisine": "mexican", + "ingredients": [ + "granulated sugar", + "butter", + "all-purpose flour", + "ground cinnamon", + "baking powder", + "mexican chocolate", + "firmly packed brown sugar", + "almond extract", + "salt", + "large eggs", + "vanilla", + "unsweetened chocolate" + ] + }, + { + "id": 27290, + "cuisine": "korean", + "ingredients": [ + "marinade", + "fat", + "toasted sesame oil", + "cooked rice", + "salt", + "green beans", + "sliced green onions", + "fat-trimmed beef flank steak", + "carrots", + "toasted sesame seeds", + "sugar", + "rice vinegar", + "salad oil" + ] + }, + { + "id": 34468, + "cuisine": "italian", + "ingredients": [ + "grated lemon zest", + "prosecco", + "fresh lemon juice", + "sugar", + "fresh raspberries" + ] + }, + { + "id": 8315, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "arugula", + "bread dough", + "gruyere cheese", + "fresh parsley" + ] + }, + { + "id": 47186, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "kosher salt", + "vegetable oil", + "fresh lime juice", + "jack cheese", + "large eggs", + "garlic cloves", + "white onion", + "flour", + "poblano chiles", + "chiles", + "finely chopped onion", + "salsa", + "chopped cilantro" + ] + }, + { + "id": 36480, + "cuisine": "mexican", + "ingredients": [ + "cooked turkey", + "jalapeno chilies", + "leftover gravy", + "pepper", + "self rising flour", + "salt", + "dried parsley", + "mashed potatoes", + "turkey broth", + "stuffing", + "onions", + "shredded cheddar cheese", + "flour tortillas", + "juice" + ] + }, + { + "id": 4950, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "vegetable broth", + "carrots", + "water", + "bacon slices", + "garlic cloves", + "sage leaves", + "ground black pepper", + "salt", + "baby lima beans", + "bay leaves", + "chopped onion" + ] + }, + { + "id": 40191, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "buttermilk", + "shortening", + "white cornmeal" + ] + }, + { + "id": 7600, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "corn starch", + "mustard", + "firm silken tofu", + "cilantro leaves", + "toasted sesame oil", + "chili paste", + "garlic", + "chinkiang vinegar", + "brown sugar", + "Shaoxing wine", + "scallions", + "japanese eggplants" + ] + }, + { + "id": 25519, + "cuisine": "mexican", + "ingredients": [ + "fresca", + "lime wedges", + "salt", + "pepper", + "relish", + "slaw", + "vegetable oil", + "white corn tortillas", + "tilapia fillets", + "purple onion" + ] + }, + { + "id": 19639, + "cuisine": "italian", + "ingredients": [ + "whipped cream", + "hot cocoa mix", + "brewed coffee", + "fat free milk", + "unsweetened cocoa powder" + ] + }, + { + "id": 23189, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "abbamele", + "wild mushrooms", + "kosher salt", + "dry white wine", + "chopped walnuts", + "fat free less sodium chicken broth", + "chopped fresh chives", + "goat cheese", + "water", + "shallots", + "fregola" + ] + }, + { + "id": 32348, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "flat leaf parsley", + "haricots verts", + "anchovy fillets", + "savoy cabbage", + "grated parmesan cheese", + "spaghetti", + "capers", + "garlic cloves" + ] + }, + { + "id": 2650, + "cuisine": "southern_us", + "ingredients": [ + "white bread", + "fat free milk", + "light mayonnaise", + "hot sauce", + "large egg whites", + "chopped fresh chives", + "bacon slices", + "olive oil", + "lettuce leaves", + "salt", + "yellow corn meal", + "ground black pepper", + "green tomatoes", + "fresh lemon juice" + ] + }, + { + "id": 16696, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chile pepper", + "ground cumin", + "white hominy", + "onions", + "sliced black olives", + "garlic", + "chicken broth", + "boneless skinless chicken breasts", + "dried oregano" + ] + }, + { + "id": 23068, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "mushroom caps", + "bacon slices", + "fat free less sodium chicken broth", + "shallots", + "fresh parsley", + "black pepper", + "cooked chicken", + "salt", + "fresh parmesan cheese", + "butter", + "pinot grigio" + ] + }, + { + "id": 9812, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "low sodium chicken broth", + "cilantro leaves", + "chile powder", + "fresh thyme", + "chile pepper", + "sweet paprika", + "sablefish", + "brown rice", + "yellow onion", + "low-fat coconut milk", + "roma tomatoes", + "garlic", + "fresh lime juice" + ] + }, + { + "id": 471, + "cuisine": "italian", + "ingredients": [ + "fresh sage", + "cannellini beans", + "onions", + "prosciutto", + "carrots", + "parmesan cheese", + "extra-virgin olive oil", + "celery ribs", + "grated parmesan cheese", + "low salt chicken broth" + ] + }, + { + "id": 9415, + "cuisine": "italian", + "ingredients": [ + "vanilla extract", + "white sugar", + "baking powder", + "margarine", + "liquid egg substitute", + "chocolate candy bars", + "olive oil", + "all-purpose flour", + "unsweetened cocoa powder" + ] + }, + { + "id": 4350, + "cuisine": "italian", + "ingredients": [ + "white bread", + "shredded mozzarella cheese", + "unsalted butter", + "garlic powder", + "dried oregano", + "marinara sauce" + ] + }, + { + "id": 8871, + "cuisine": "thai", + "ingredients": [ + "sugar", + "green onions", + "garlic cloves", + "pork tenderloin", + "salt", + "dry roasted peanuts", + "pineapple", + "serrano chile", + "fish sauce", + "cooking spray", + "cilantro leaves" + ] + }, + { + "id": 35487, + "cuisine": "thai", + "ingredients": [ + "crusty bread", + "lemongrass", + "skinless chicken breasts", + "coriander", + "chicken stock", + "red chili peppers", + "sweet potatoes", + "garlic cloves", + "sugar", + "olive oil", + "coconut cream", + "fish sauce", + "lime juice", + "ginger", + "curry paste" + ] + }, + { + "id": 14918, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "egg noodles", + "red pepper", + "msg", + "chicken breasts", + "yellow onion", + "gai lan", + "green onions", + "salt", + "olive oil", + "sesame oil", + "carrots" + ] + }, + { + "id": 47029, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "grating cheese", + "milk", + "tapioca flour", + "salt", + "olive oil" + ] + }, + { + "id": 30081, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "whole wheat tortillas", + "veggies", + "part-skim mozzarella cheese" + ] + }, + { + "id": 23621, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "garlic", + "onions", + "fresh ginger", + "cumin seed", + "fresh chile", + "lite coconut milk", + "salt", + "chopped cilantro fresh", + "asparagus", + "chicken fingers", + "canola oil" + ] + }, + { + "id": 3109, + "cuisine": "british", + "ingredients": [ + "dark molasses", + "butter", + "dark brown sugar", + "superfine sugar", + "vanilla", + "boiling water", + "pitted date", + "double cream", + "golden syrup", + "eggs", + "baking soda", + "self-rising cake flour" + ] + }, + { + "id": 5451, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "lettuce leaves", + "ground pork", + "chile paste", + "sesame oil", + "firm tofu", + "soy sauce", + "hoisin sauce", + "vegetable oil", + "carrots", + "water", + "green onions", + "white rice" + ] + }, + { + "id": 49566, + "cuisine": "jamaican", + "ingredients": [ + "pigeon peas", + "thyme", + "chicken stock", + "long-grain rice", + "onions", + "pepper", + "garlic cloves", + "butter", + "coconut milk" + ] + }, + { + "id": 265, + "cuisine": "japanese", + "ingredients": [ + "water", + "nori", + "avocado", + "rice vinegar", + "salt", + "sushi rice", + "cucumber" + ] + }, + { + "id": 28255, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "brown rice", + "ground pork", + "carrots", + "hoisin sauce", + "napa cabbage", + "cilantro leaves", + "shiitake", + "sesame oil", + "garlic", + "canola oil", + "soy sauce", + "green onions", + "red pepper flakes", + "rice vinegar" + ] + }, + { + "id": 16140, + "cuisine": "french", + "ingredients": [ + "fat free less sodium chicken broth", + "salt", + "romano cheese", + "baking potatoes", + "garlic cloves", + "cooking spray", + "chopped onion", + "black pepper", + "bacon slices" + ] + }, + { + "id": 18452, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "rice flour", + "ground cumin", + "water", + "salt", + "chutney", + "paneer", + "gram flour", + "soda", + "oil", + "chaat masala" + ] + }, + { + "id": 407, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "cooked rice", + "eggs", + "olive oil", + "bread crumbs" + ] + }, + { + "id": 16617, + "cuisine": "spanish", + "ingredients": [ + "salt", + "large garlic cloves", + "extra-virgin olive oil", + "red wine vinegar", + "whole snapper" + ] + }, + { + "id": 49558, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "ground nutmeg", + "boneless skinless chicken breasts", + "salt", + "peanut oil", + "ground ginger", + "black pepper", + "hoisin sauce", + "red pepper", + "cayenne pepper", + "toasted sesame oil", + "cold water", + "soy sauce", + "chili paste", + "rice wine", + "rice vinegar", + "corn starch", + "eggs", + "minced garlic", + "flour", + "button mushrooms", + "orange juice", + "snow peas" + ] + }, + { + "id": 43304, + "cuisine": "russian", + "ingredients": [ + "sauerkraut", + "parsley", + "sour cream", + "black peppercorns", + "potatoes", + "dill", + "pork", + "bay leaves", + "carrots", + "beef", + "garlic", + "onions" + ] + }, + { + "id": 28636, + "cuisine": "italian", + "ingredients": [ + "pepper", + "white wine vinegar", + "ham", + "cherry tomatoes", + "purple onion", + "banana peppers", + "mozzarella cheese", + "black olives", + "garlic cloves", + "dried oregano", + "olive oil", + "salt", + "lemon juice" + ] + }, + { + "id": 18911, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "honey", + "raisins", + "toasted walnuts", + "orange", + "dark rum", + "salt", + "dried fig", + "eggs", + "unsalted butter", + "vanilla extract", + "white sugar", + "milk", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 32499, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "bay leaf", + "cumin", + "boneless beef roast", + "Mexican beer", + "beef broth", + "garlic salt", + "tomato paste", + "chili powder", + "cilantro leaves", + "chipotle peppers", + "pepper", + "garlic", + "sauce", + "dried oregano" + ] + }, + { + "id": 10216, + "cuisine": "mexican", + "ingredients": [ + "enchilada sauce", + "black beans", + "ground beef", + "Old El Paso Flour Tortillas", + "cheese" + ] + }, + { + "id": 14654, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger", + "ground pork", + "oyster sauce", + "spring roll wrappers", + "spring onions", + "salt", + "cabbage", + "flour", + "garlic", + "carrots", + "soy sauce", + "vegetable oil", + "freshly ground pepper" + ] + }, + { + "id": 49068, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "spicy brown mustard", + "boneless chicken breast halves", + "peach preserves", + "dried thyme", + "salt", + "melted butter", + "balsamic vinegar" + ] + }, + { + "id": 42535, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "lamb loin chops", + "salt", + "fat" + ] + }, + { + "id": 47932, + "cuisine": "italian", + "ingredients": [ + "egg substitute", + "chicken breast halves", + "pasta sauce", + "part-skim mozzarella cheese", + "spaghetti", + "olive oil", + "fresh parsley", + "seasoned bread crumbs", + "grated parmesan cheese" + ] + }, + { + "id": 25006, + "cuisine": "japanese", + "ingredients": [ + "sesame", + "low sodium chicken broth", + "yellow onion", + "canola oil", + "boneless pork shoulder", + "kosher salt", + "green onions", + "garlic cloves", + "cremini mushrooms", + "leeks", + "soft-boiled egg", + "low sodium soy sauce", + "fresh ginger", + "ramen noodles", + "Equal Sweetener" + ] + }, + { + "id": 14844, + "cuisine": "russian", + "ingredients": [ + "cottage cheese", + "lemon rind", + "eggs", + "cinnamon", + "sour cream", + "flour", + "lemon juice", + "sugar", + "salt" + ] + }, + { + "id": 23048, + "cuisine": "italian", + "ingredients": [ + "chopped parsley", + "grated parmesan cheese", + "unsalted butter", + "gnocchi", + "chopped fresh chives" + ] + }, + { + "id": 16450, + "cuisine": "russian", + "ingredients": [ + "ground black pepper", + "salt", + "bay leaves", + "dark brown sugar", + "clove", + "apple cider", + "fresh ham", + "dijon mustard", + "beer" + ] + }, + { + "id": 27692, + "cuisine": "mexican", + "ingredients": [ + "clove", + "pasilla chiles", + "almonds", + "tomatillos", + "pumpkin seeds", + "corn tortillas", + "anise seed", + "salt and ground black pepper", + "seeds", + "white rice", + "cinnamon sticks", + "chicken pieces", + "black peppercorns", + "coriander seeds", + "vegetable oil", + "mexican chocolate", + "ancho chile pepper", + "chicken broth", + "sesame seeds", + "mulato chiles", + "raisins", + "garlic cloves", + "french rolls" + ] + }, + { + "id": 3569, + "cuisine": "italian", + "ingredients": [ + "dijon mustard", + "ground white pepper", + "soft goat's cheese", + "ricotta cheese", + "truffle oil", + "hazelnuts", + "salt" + ] + }, + { + "id": 6898, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "capers", + "vegetable oil", + "dry white wine", + "flat leaf parsley", + "veal scallopini", + "lemon" + ] + }, + { + "id": 36215, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "spinach", + "sesame oil", + "mirin", + "soy sauce" + ] + }, + { + "id": 49234, + "cuisine": "indian", + "ingredients": [ + "clove", + "boneless chicken skinless thigh", + "minced ginger", + "poppy seeds", + "blanched almonds", + "ground turmeric", + "black peppercorns", + "kosher salt", + "cinnamon", + "raw cashews", + "bay leaf", + "fennel seeds", + "plain yogurt", + "rose petals", + "paprika", + "fresh lemon juice", + "canola oil", + "green cardamom pods", + "cooked rice", + "minced garlic", + "heavy cream", + "yellow onion", + "serrano chile" + ] + }, + { + "id": 41101, + "cuisine": "chinese", + "ingredients": [ + "warm water", + "gluten free all purpose flour", + "tapioca starch", + "eggs", + "xanthan gum" + ] + }, + { + "id": 10378, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "ground nutmeg", + "lemon", + "cream cheese", + "greens", + "warm water", + "flour", + "vanilla", + "lemon juice", + "dough", + "cream", + "egg yolks", + "salt", + "confectioners sugar", + "melted butter", + "milk", + "cake", + "icing", + "yeast" + ] + }, + { + "id": 37627, + "cuisine": "italian", + "ingredients": [ + "shredded mozzarella cheese", + "water", + "spaghetti", + "pasta", + "elbow macaroni", + "diced tomatoes" + ] + }, + { + "id": 30532, + "cuisine": "italian", + "ingredients": [ + "bread flour", + "bread yeast", + "warm water", + "salt" + ] + }, + { + "id": 14287, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "fresh mushrooms", + "soy sauce", + "corn starch", + "green onions", + "beansprouts", + "eggs", + "peanut oil" + ] + }, + { + "id": 26105, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red potato", + "vegan parmesan cheese", + "garlic", + "fresh chives", + "dried oregano" + ] + }, + { + "id": 17073, + "cuisine": "italian", + "ingredients": [ + "saffron threads", + "minced garlic", + "ground black pepper", + "chopped onion", + "fat free less sodium chicken broth", + "fresh parmesan cheese", + "crushed red pepper", + "plum tomatoes", + "arborio rice", + "olive oil", + "dry white wine", + "flat leaf parsley", + "cremini mushrooms", + "sea scallops", + "butter", + "medium shrimp" + ] + }, + { + "id": 10736, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "brown sugar", + "old-fashioned oats", + "ground cinnamon", + "granulated sugar", + "biscuit baking mix" + ] + }, + { + "id": 17441, + "cuisine": "italian", + "ingredients": [ + "ahi", + "french bread", + "olive oil", + "onions", + "capers", + "ground black pepper", + "kosher salt", + "fresh lemon juice" + ] + }, + { + "id": 17559, + "cuisine": "mexican", + "ingredients": [ + "chopped cilantro fresh", + "whole cranberry sauce", + "ground cinnamon", + "hot sauce" + ] + }, + { + "id": 41076, + "cuisine": "moroccan", + "ingredients": [ + "milk", + "walnuts", + "sugar", + "flour", + "powdered sugar", + "unsalted butter", + "rose water", + "cinnamon" + ] + }, + { + "id": 46122, + "cuisine": "chinese", + "ingredients": [ + "cooking oil", + "corn starch", + "red chili peppers", + "salt", + "lotus roots", + "light soy sauce", + "green chilies", + "eggs", + "garlic", + "ginger root" + ] + }, + { + "id": 8825, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic powder", + "chili powder", + "dried minced onion", + "taco shells", + "condiments", + "cayenne pepper", + "dried oregano", + "tomato sauce", + "guacamole", + "salsa", + "ground beef", + "lettuce", + "refried beans", + "colby jack cheese", + "corn starch", + "ground cumin" + ] + }, + { + "id": 6578, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "curry powder", + "unsalted cashews", + "cilantro", + "onions", + "chicken broth", + "minced garlic", + "yoghurt", + "diced tomatoes", + "cinnamon sticks", + "tomato paste", + "cream", + "cayenne", + "butter", + "salt", + "fennel seeds", + "black pepper", + "fresh ginger", + "seeds", + "white wine vinegar" + ] + }, + { + "id": 315, + "cuisine": "italian", + "ingredients": [ + "golden brown sugar", + "anjou pears", + "all purpose unbleached flour", + "fresh lemon juice", + "granny smith apples", + "crystallized ginger", + "ice water", + "salt", + "honey", + "unsalted butter", + "vegetable shortening", + "chinese five-spice powder", + "sugar", + "whole wheat flour", + "large eggs", + "whipping cream" + ] + }, + { + "id": 10965, + "cuisine": "irish", + "ingredients": [ + "ground black pepper", + "arrowroot powder", + "carrots", + "cremini mushrooms", + "dried sage", + "extra-virgin olive oil", + "dried parsley", + "green cabbage", + "sweet potatoes", + "sea salt", + "onions", + "dried thyme", + "lamb stew meat", + "garlic", + "chicken" + ] + }, + { + "id": 18873, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "water", + "truffle oil", + "salt", + "onions", + "fat free less sodium chicken broth", + "large egg yolks", + "chopped fresh thyme", + "garlic cloves", + "tomato paste", + "kosher salt", + "ground black pepper", + "extra-virgin olive oil", + "flat leaf parsley", + "cremini mushrooms", + "olive oil", + "mushrooms", + "all-purpose flour" + ] + }, + { + "id": 40128, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "vinegar", + "ground pork", + "minced ginger", + "szechwan peppercorns", + "salt", + "red chili peppers", + "green onions", + "garlic", + "stock", + "yardlong beans", + "vegetable oil" + ] + }, + { + "id": 22634, + "cuisine": "korean", + "ingredients": [ + "water", + "grated lemon zest", + "jalapeno chilies", + "soy sauce", + "dark brown sugar" + ] + }, + { + "id": 17405, + "cuisine": "chinese", + "ingredients": [ + "ground black pepper", + "garlic", + "bok choy", + "soy sauce", + "cooking oil", + "firm tofu", + "spinach", + "radishes", + "salt", + "snow peas", + "fresh ginger", + "sesame oil", + "lemon juice" + ] + }, + { + "id": 203, + "cuisine": "brazilian", + "ingredients": [ + "coconut milk", + "frozen banana", + "pure acai puree", + "almond butter" + ] + }, + { + "id": 31766, + "cuisine": "french", + "ingredients": [ + "olive oil", + "green onions", + "frozen pastry puff sheets", + "sea salt", + "large eggs", + "fresh thyme leaves", + "soft goat's cheese", + "leeks", + "freshly ground pepper" + ] + }, + { + "id": 24047, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lean ground beef", + "fresh oregano", + "sausage links", + "whole peeled tomatoes", + "salt", + "spaghetti", + "tomato sauce", + "ground black pepper", + "garlic", + "bay leaf", + "dried basil", + "grated parmesan cheese", + "yellow onion" + ] + }, + { + "id": 2033, + "cuisine": "mexican", + "ingredients": [ + "pork tenderloin", + "salt", + "corn tortillas", + "monterey jack", + "brown sugar", + "ground red pepper", + "chopped onion", + "serrano chile", + "plantains", + "lower sodium chicken broth", + "cooking spray", + "cilantro leaves", + "fresh lime juice", + "canola oil", + "black beans", + "tomatillos", + "garlic cloves", + "dried oregano", + "ground cumin" + ] + }, + { + "id": 3254, + "cuisine": "french", + "ingredients": [ + "blackberries", + "chambord", + "champagne" + ] + }, + { + "id": 31933, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "italian seasoning", + "pepper", + "dry red wine", + "onions", + "tomato sauce", + "mushrooms", + "sweet italian sausage", + "pork chops", + "salt" + ] + }, + { + "id": 23547, + "cuisine": "french", + "ingredients": [ + "baguette", + "radishes", + "dijon mustard", + "soft fresh goat cheese", + "olive oil", + "shallots", + "sherry vinegar", + "curly endive" + ] + }, + { + "id": 31004, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "sweet potatoes", + "ground ginger", + "unsalted butter", + "light brown sugar", + "water", + "cracked black pepper", + "ground cinnamon", + "granulated sugar" + ] + }, + { + "id": 25069, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "butter", + "ground nutmeg", + "all-purpose flour", + "country ham", + "whipping cream", + "frozen chopped spinach", + "grated parmesan cheese", + "freshly ground pepper" + ] + }, + { + "id": 30148, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "Campbell's Condensed Cream of Chicken Soup", + "cooked chicken", + "sour cream", + "green onions", + "Pace Picante Sauce", + "tomatoes", + "chili powder", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 41007, + "cuisine": "italian", + "ingredients": [ + "rosemary", + "mascarpone", + "freshly ground pepper", + "sugar", + "honey", + "extra-virgin olive oil", + "nectarines", + "peasant bread", + "sweet cherries", + "salt", + "orange zest", + "lavender buds", + "apricot halves", + "fresh lemon juice" + ] + }, + { + "id": 46192, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "salt", + "onions", + "extra-virgin olive oil" + ] + }, + { + "id": 5984, + "cuisine": "italian", + "ingredients": [ + "white onion", + "diced tomatoes in juice", + "zucchini", + "olive oil", + "italian seasoning", + "sugar", + "salt" + ] + }, + { + "id": 46512, + "cuisine": "french", + "ingredients": [ + "crème fraîche", + "plums", + "sugar" + ] + }, + { + "id": 17313, + "cuisine": "jamaican", + "ingredients": [ + "curry powder", + "cooking oil", + "tomato ketchup", + "red potato", + "hot pepper sauce", + "garlic", + "onions", + "stewing beef", + "onion powder", + "red bell pepper", + "black pepper", + "fresh thyme", + "salt", + "boiling water" + ] + }, + { + "id": 34568, + "cuisine": "mexican", + "ingredients": [ + "string beans", + "olive oil", + "white rice", + "chopped parsley", + "dried oregano", + "chicken stock", + "black pepper", + "fresh peas", + "carrots", + "onions", + "tomato sauce", + "cayenne", + "salt", + "ground beef", + "eggs", + "pepper", + "large garlic cloves", + "fresh mint", + "chopped cilantro fresh" + ] + }, + { + "id": 6209, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "scallions", + "asparagus", + "cherry tomatoes", + "italian salad dressing", + "short pasta", + "shredded parmesan cheese" + ] + }, + { + "id": 14814, + "cuisine": "mexican", + "ingredients": [ + "guacamole", + "cashew nuts", + "black beans", + "hot sauce", + "purple onion", + "chunky salsa", + "jalapeno chilies", + "tortilla chips" + ] + }, + { + "id": 15018, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "fresh ginger root", + "rice vinegar", + "white sugar", + "minced garlic", + "minced onion", + "lemon juice", + "ketchup", + "ground black pepper", + "peanut oil", + "water", + "salt", + "celery" + ] + }, + { + "id": 601, + "cuisine": "french", + "ingredients": [ + "turbinado", + "apricot preserves", + "pie dough", + "sugar", + "frozen blueberries", + "peaches" + ] + }, + { + "id": 32371, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "ground black pepper", + "arugula", + "parmesan cheese", + "extra-virgin olive oil", + "lemon wedge", + "porterhouse steaks" + ] + }, + { + "id": 37370, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "cannellini beans", + "red bell pepper", + "spinach", + "part-skim mozzarella cheese", + "salt", + "onions", + "olive oil", + "diced tomatoes", + "celery", + "rosemary sprigs", + "zucchini", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 9591, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "guacamole", + "salsa", + "olive oil", + "grating cheese", + "sour cream", + "fresh coriander", + "green onions", + "cream cheese", + "tomatoes", + "flour tortillas", + "bacon" + ] + }, + { + "id": 26324, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "whole wheat tortillas", + "ground beef", + "minced garlic", + "black olives", + "shredded cheddar cheese", + "diced tomatoes", + "onions", + "refried beans", + "red enchilada sauce" + ] + }, + { + "id": 27835, + "cuisine": "french", + "ingredients": [ + "dried basil", + "dijon mustard", + "dried tarragon leaves", + "honey", + "salt", + "dried thyme", + "vegetable oil", + "white wine", + "ground black pepper", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 25811, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "mango", + "black pepper", + "lemon juice", + "strawberries", + "sea salt", + "fresh basil leaves" + ] + }, + { + "id": 34401, + "cuisine": "indian", + "ingredients": [ + "salt", + "cashew nuts", + "gooseberries", + "mustard seeds", + "ground turmeric", + "fresh curry leaves", + "oil", + "basmati rice", + "urad dal", + "dried chile", + "asafetida" + ] + }, + { + "id": 38032, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "1% low-fat milk", + "saffron threads", + "golden raisins", + "cinnamon sticks", + "sugar", + "salt", + "arborio rice", + "vanilla extract" + ] + }, + { + "id": 43149, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "salt", + "shiitake", + "whole wheat tortillas", + "mushroom caps", + "purple onion", + "fontina cheese", + "cooking spray" + ] + }, + { + "id": 22394, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "sea salt", + "cajun seasoning", + "salmon fillets", + "fiber one" + ] + }, + { + "id": 43839, + "cuisine": "indian", + "ingredients": [ + "unsalted butter", + "fresh lemon juice", + "salmon fillets", + "large eggs", + "long grain white rice", + "parsley leaves", + "onions", + "water", + "salt" + ] + }, + { + "id": 1889, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vanilla cream", + "egg whites", + "bananas", + "vanilla wafers", + "butter" + ] + }, + { + "id": 30741, + "cuisine": "moroccan", + "ingredients": [ + "green tea", + "sugar", + "mint leaves" + ] + }, + { + "id": 7795, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "chicken breasts", + "garlic cloves", + "lettuce", + "pepper", + "salt", + "cashew nuts", + "soy sauce", + "sesame oil", + "onions", + "ground ginger", + "ground red pepper", + "rice vinegar", + "canola oil" + ] + }, + { + "id": 4548, + "cuisine": "thai", + "ingredients": [ + "low sodium soy sauce", + "cooking spray", + "fresh lime juice", + "fresh ginger", + "crushed red pepper", + "lime rind", + "boneless skinless chicken breasts", + "light brown sugar", + "reduced fat creamy peanut butter", + "garlic cloves" + ] + }, + { + "id": 6874, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "taco toppings", + "onion powder", + "ground cumin", + "chili powder", + "rotel tomatoes", + "taco shells", + "flat iron steaks" + ] + }, + { + "id": 39658, + "cuisine": "vietnamese", + "ingredients": [ + "avocado", + "lime juice", + "bell pepper", + "cilantro", + "cucumber", + "almond butter", + "roasted sesame seeds", + "wheat", + "orange juice", + "rice paper", + "mint", + "minced ginger", + "lettuce leaves", + "rice vermicelli", + "chopped garlic", + "water", + "honey", + "basil", + "carrots" + ] + }, + { + "id": 21896, + "cuisine": "russian", + "ingredients": [ + "mayonaise", + "salt", + "turkey hot dogs", + "green onions", + "potatoes", + "dill pickles", + "eggs", + "peas" + ] + }, + { + "id": 23775, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "broccolini", + "red pepper flakes", + "onions", + "pasta", + "white wine", + "salted butter", + "fresh lemon juice", + "black pepper", + "olive oil", + "garlic", + "chicken stock", + "kosher salt", + "fresh parmesan cheese", + "flat leaf parsley" + ] + }, + { + "id": 16660, + "cuisine": "mexican", + "ingredients": [ + "salt", + "pepper", + "tripe", + "white hominy", + "onions", + "chili powder" + ] + }, + { + "id": 24807, + "cuisine": "mexican", + "ingredients": [ + "mild olive oil", + "grape tomatoes", + "chopped cilantro", + "green chile", + "corn tortillas", + "cheddar cheese", + "cumin" + ] + }, + { + "id": 15410, + "cuisine": "greek", + "ingredients": [ + "salt", + "parsley", + "lemon juice", + "tahini", + "chickpeas", + "garlic" + ] + }, + { + "id": 25400, + "cuisine": "italian", + "ingredients": [ + "butter", + "unsweetened cocoa powder", + "coffee granules", + "all-purpose flour", + "half & half", + "confectioners sugar", + "vanilla extract" + ] + }, + { + "id": 20957, + "cuisine": "moroccan", + "ingredients": [ + "baguette", + "ground black pepper", + "chopped fresh thyme", + "garlic cloves", + "fresh parsley", + "plain low-fat yogurt", + "sweet onion", + "harissa", + "salt", + "smoked paprika", + "ground cumin", + "pitted kalamata olives", + "olive oil", + "balsamic vinegar", + "ground coriander", + "red bell pepper", + "water", + "cooking spray", + "vegetable broth", + "fresh lemon juice", + "plum tomatoes" + ] + }, + { + "id": 44513, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "diced tomatoes", + "lemon rind", + "baby portobello mushrooms", + "cooking spray", + "purple onion", + "olive oil", + "basil", + "diced celery", + "grated parmesan cheese", + "crushed red pepper", + "carrots" + ] + }, + { + "id": 4995, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "chanterelle", + "haricots verts", + "potatoes", + "pearl onions", + "chopped fresh chives", + "fresh peas" + ] + }, + { + "id": 15860, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "baking soda", + "ginger", + "onions", + "white pepper", + "rice wine", + "oyster sauce", + "soy sauce", + "boneless skinless chicken breasts", + "salt", + "cashew nuts", + "green bell pepper", + "water", + "sesame oil", + "corn starch" + ] + }, + { + "id": 27077, + "cuisine": "indian", + "ingredients": [ + "clove", + "cinnamon", + "ground coriander", + "ground cumin", + "fresh ginger root", + "salt", + "chopped cilantro fresh", + "garbanzo beans", + "garlic", + "onions", + "vegetable oil", + "cayenne pepper", + "ground turmeric" + ] + }, + { + "id": 4734, + "cuisine": "japanese", + "ingredients": [ + "sushi rice" + ] + }, + { + "id": 1972, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "dried pinto beans", + "chopped cilantro", + "lime zest", + "vegetable oil", + "salt", + "cold water", + "queso fresco", + "fresh lime juice", + "jalapeno chilies", + "garlic", + "onions" + ] + }, + { + "id": 27995, + "cuisine": "mexican", + "ingredients": [ + "ground chipotle chile pepper", + "salsa verde", + "butter", + "peanut oil", + "ground cumin", + "lime", + "guacamole", + "chees fresco queso", + "corn tortillas", + "kosher salt", + "ground black pepper", + "paprika", + "sour cream", + "garlic powder", + "chili powder", + "cayenne pepper", + "chicken" + ] + }, + { + "id": 40555, + "cuisine": "mexican", + "ingredients": [ + "all-purpose flour", + "jalapeno chilies", + "chopped cilantro fresh", + "blue corn tortilla chips", + "monterey jack", + "beer" + ] + }, + { + "id": 25506, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "garlic", + "onions", + "pepper", + "diced tomatoes", + "shrimp", + "chorizo", + "paprika", + "veget soup mix", + "low sodium chicken broth", + "long-grain rice", + "frozen peas" + ] + }, + { + "id": 45401, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "butter", + "cornmeal", + "firmly packed brown sugar", + "bourbon whiskey", + "salt", + "large eggs", + "vanilla extract", + "chocolate morsels", + "dark corn syrup", + "refrigerated piecrusts", + "chopped pecans" + ] + }, + { + "id": 37768, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "all-purpose flour", + "white vinegar", + "egg whites", + "ground black pepper", + "oil", + "milk", + "salt" + ] + }, + { + "id": 36697, + "cuisine": "southern_us", + "ingredients": [ + "white peaches", + "butter", + "salt", + "whole milk", + "vanilla", + "water", + "heavy cream", + "sugar", + "bourbon whiskey", + "whipping cream" + ] + }, + { + "id": 7840, + "cuisine": "mexican", + "ingredients": [ + "white bread", + "pasilla chiles", + "mulato chiles", + "mexican chocolate", + "ancho chile pepper", + "clove", + "sugar", + "sesame seeds", + "anise", + "diced tomatoes in juice", + "chicken broth", + "black pepper", + "cinnamon", + "salt", + "pork lard", + "whole almonds", + "chicken bones", + "raisins", + "garlic cloves" + ] + }, + { + "id": 49686, + "cuisine": "indian", + "ingredients": [ + "ketchup", + "milk", + "butter", + "sour cream", + "ground turmeric", + "tomatoes", + "pepper", + "garam masala", + "salt", + "onions", + "ground ginger", + "chicken bouillon", + "garbanzo beans", + "garlic", + "coconut milk", + "ground paprika", + "curry powder", + "potatoes", + "ground almonds", + "white sugar" + ] + }, + { + "id": 41358, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "broccoli florets", + "peanut oil", + "fresh ginger", + "marinade", + "oyster sauce", + "chicken stock", + "ground black pepper", + "sauce", + "corn starch", + "soy sauce", + "flank steak", + "garlic cloves" + ] + }, + { + "id": 6340, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "buttermilk", + "peanut oil", + "vinegar", + "all-purpose flour", + "marjoram", + "garlic powder", + "salt", + "chicken leg quarters", + "black pepper", + "onion powder", + "cayenne pepper" + ] + }, + { + "id": 2177, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "large garlic cloves", + "grated parmesan cheese", + "crushed red pepper", + "broccoli florets", + "orecchiette", + "olive oil", + "white wine vinegar" + ] + }, + { + "id": 38286, + "cuisine": "indian", + "ingredients": [ + "carrots", + "green chilies", + "cilantro leaves", + "onions", + "oil" + ] + }, + { + "id": 38715, + "cuisine": "southern_us", + "ingredients": [ + "saltines", + "cooking spray", + "salt", + "large egg whites", + "vegetable broth", + "rubbed sage", + "black pepper", + "butter", + "chopped onion", + "white bread", + "large eggs", + "chopped celery", + "corn bread" + ] + }, + { + "id": 211, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "linguine", + "fresh lemon juice", + "fat free less sodium chicken broth", + "butter", + "grated lemon zest", + "fresh parsley", + "pinenuts", + "cracked black pepper", + "garlic cloves", + "dry white wine", + "salt", + "medium shrimp" + ] + }, + { + "id": 14105, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "coarse salt", + "chopped cilantro", + "pepper jack", + "garlic cloves", + "ground pepper", + "scallions", + "plum tomatoes", + "red potato", + "large eggs", + "fresh lime juice" + ] + }, + { + "id": 35232, + "cuisine": "thai", + "ingredients": [ + "thai basil", + "garlic", + "boneless skinless chicken breast halves", + "green curry paste", + "water chestnuts", + "baby corn", + "fresh ginger", + "shallots", + "coconut milk", + "pepper", + "lemon grass", + "salt", + "canola oil" + ] + }, + { + "id": 43131, + "cuisine": "mexican", + "ingredients": [ + "white rice", + "chicken broth", + "oil", + "salsa", + "green onions", + "cumin" + ] + }, + { + "id": 17832, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "water chestnuts", + "mint sprigs", + "scallions", + "snow peas", + "sugar", + "honey", + "vegetable oil", + "seasoned rice wine vinegar", + "ground turkey", + "water", + "sesame oil", + "cilantro sprigs", + "corn starch", + "soy sauce", + "bibb lettuce", + "worcestershire sauce", + "gingerroot", + "cooked white rice" + ] + }, + { + "id": 28881, + "cuisine": "french", + "ingredients": [ + "rosemary", + "butter", + "thyme", + "chopped garlic", + "wine", + "fresh thyme leaves", + "garlic cloves", + "bay leaf", + "herbs", + "cornichons", + "chicken livers", + "streaky bacon", + "raisin bread", + "brioche bread", + "lardons" + ] + }, + { + "id": 13386, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "flour tortillas", + "grated jack cheese", + "adobo sauce", + "pepper", + "green onions", + "garlic cloves", + "mango", + "peeled deveined shrimp", + "jalapeno chilies", + "beer", + "chopped cilantro", + "avocado", + "lime", + "salt", + "chipotle peppers" + ] + }, + { + "id": 45390, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "jalapeno chilies", + "red pepper", + "salsa", + "lime juice", + "cooked chicken", + "purple onion", + "chopped cilantro", + "flour tortillas", + "lime wedges", + "salt", + "ground cumin", + "shredded cheddar cheese", + "guacamole", + "garlic", + "sour cream" + ] + }, + { + "id": 39811, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "large garlic cloves", + "onions", + "vegetable oil", + "rotisserie chicken", + "lime wedges", + "grated jack cheese", + "flour tortillas", + "salt" + ] + }, + { + "id": 8703, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "kosher salt", + "baking powder", + "brown sugar", + "sweet potatoes", + "baking soda", + "buttermilk" + ] + }, + { + "id": 14471, + "cuisine": "french", + "ingredients": [ + "lemon slices", + "ice cubes", + "fresh lemon juice", + "lillet", + "sugar", + "soda water" + ] + }, + { + "id": 40842, + "cuisine": "spanish", + "ingredients": [ + "dry sherry", + "bird chile", + "pepper", + "salt", + "extra-virgin olive oil", + "tiger prawn", + "lemon", + "garlic cloves" + ] + }, + { + "id": 48845, + "cuisine": "moroccan", + "ingredients": [ + "food colouring", + "ground almonds", + "dates", + "walnut halves", + "powdered sugar", + "orange flower water" + ] + }, + { + "id": 10297, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "old bay seasoning", + "and fat free half half", + "low-fat sour cream", + "butter", + "all-purpose flour", + "chopped cilantro fresh", + "dry white wine", + "diced tomatoes", + "medium shrimp", + "chipotle chile", + "condensed chicken broth", + "fresh oregano", + "sliced green onions" + ] + }, + { + "id": 34662, + "cuisine": "brazilian", + "ingredients": [ + "kosher salt", + "dijon mustard", + "sweet paprika", + "boneless skinless chicken breast halves", + "caraway seeds", + "ground black pepper", + "lime wedges", + "chopped cilantro", + "lager beer", + "peeled fresh ginger", + "garlic cloves", + "green bell pepper", + "unsalted butter", + "vegetable oil", + "onions" + ] + }, + { + "id": 36852, + "cuisine": "italian", + "ingredients": [ + "melted butter", + "potatoes" + ] + }, + { + "id": 13175, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "avocado", + "oil", + "all-purpose flour", + "kosher salt", + "panko breadcrumbs" + ] + }, + { + "id": 25507, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "whole milk", + "extra-virgin olive oil", + "garlic cloves", + "corn kernels", + "chicken breasts", + "all-purpose flour", + "cream cheese, soften", + "celery ribs", + "low sodium chicken broth", + "vegetable oil", + "Italian seasoned breadcrumbs", + "onions", + "pepper", + "green onions", + "salt", + "carrots" + ] + }, + { + "id": 45304, + "cuisine": "italian", + "ingredients": [ + "bread", + "chopped fresh thyme", + "chicken cutlets", + "garlic cloves", + "olive oil", + "purple onion", + "balsamic vinegar", + "arugula" + ] + }, + { + "id": 22843, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "roasted red peppers", + "long-grain rice", + "pepper", + "salt", + "chicken pieces", + "white wine", + "bay leaves", + "garlic cloves", + "clove", + "olive oil", + "beef broth", + "onions" + ] + }, + { + "id": 45021, + "cuisine": "mexican", + "ingredients": [ + "cooked turkey", + "cooking spray", + "shredded cheddar cheese", + "pumpkin purée", + "tomato sauce", + "taco seasoning mix", + "chipotle peppers", + "chicken bouillon granules", + "refried beans", + "whole wheat tortillas" + ] + }, + { + "id": 929, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vanilla extract", + "butter", + "lemon juice", + "pastry shell", + "all-purpose flour", + "eggs", + "buttermilk", + "chopped pecans" + ] + }, + { + "id": 7212, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "ginger", + "cumin seed", + "spinach", + "paneer", + "onions", + "red chili powder", + "garlic", + "oil", + "garam masala", + "green chilies", + "ground turmeric" + ] + }, + { + "id": 35436, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "feta cheese", + "grated lemon zest", + "ground lamb", + "unsalted chicken stock", + "crushed tomatoes", + "cooking spray", + "oven-ready lasagna noodles", + "fresh rosemary", + "minced garlic", + "ground black pepper", + "chopped onion", + "extra lean ground beef", + "olive oil", + "part-skim ricotta cheese", + "flat leaf parsley" + ] + }, + { + "id": 36578, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "vegetable oil", + "red bell pepper", + "boneless chicken skinless thigh", + "yellow curry paste", + "fresh basil", + "cilantro", + "onions", + "yukon gold potatoes", + "carrots" + ] + }, + { + "id": 37555, + "cuisine": "british", + "ingredients": [ + "raspberries", + "glace cherries", + "egg yolks", + "fresh raspberries", + "raspberry jam", + "milk", + "silver dragees", + "cornflour", + "biscuits", + "caster sugar", + "frozen raspberries", + "sponge cake", + "sliced almonds", + "sweet sherry", + "vanilla pods", + "whipping cream" + ] + }, + { + "id": 3422, + "cuisine": "cajun_creole", + "ingredients": [ + "low sodium chicken broth", + "smoked sausage", + "bay leaf", + "vegetable oil", + "rotisserie chicken", + "Tabasco Pepper Sauce", + "all-purpose flour", + "onions", + "green bell pepper", + "garlic", + "celery" + ] + }, + { + "id": 44926, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "fontina", + "pizza shells", + "sausage casings", + "oil" + ] + }, + { + "id": 7933, + "cuisine": "brazilian", + "ingredients": [ + "jalapeno chilies", + "chopped cilantro", + "olive oil", + "fresh lemon juice", + "hearts of palm", + "garlic cloves", + "white onion", + "xuxu", + "large shrimp" + ] + }, + { + "id": 2101, + "cuisine": "italian", + "ingredients": [ + "frozen mixed thawed vegetables,", + "ragu old world style pasta sauc", + "fettucine", + "loosely packed fresh basil leaves" + ] + }, + { + "id": 27911, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "green lentil", + "diced tomatoes", + "lamb", + "ground turmeric", + "water", + "vermicelli", + "purple onion", + "onions", + "eggs", + "ground black pepper", + "chopped celery", + "ground cayenne pepper", + "ground ginger", + "garbanzo beans", + "lemon", + "margarine", + "chopped cilantro fresh" + ] + }, + { + "id": 12342, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "whole wheat spaghetti", + "all-purpose flour", + "truffle oil", + "1% low-fat milk", + "garlic cloves", + "parmigiano reggiano cheese", + "butter", + "cream cheese", + "ground black pepper", + "cooking spray", + "salt", + "spaghetti" + ] + }, + { + "id": 9593, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil cooking spray", + "zucchini", + "salt", + "tequila", + "sea scallops", + "purple onion", + "green beans", + "corn kernels", + "cauliflower florets", + "cilantro leaves", + "poblano chiles", + "triple sec", + "cilantro sprigs", + "carrots", + "fresh lime juice" + ] + }, + { + "id": 31676, + "cuisine": "spanish", + "ingredients": [ + "ground pepper", + "half & half", + "fat skimmed chicken broth", + "fresh chives", + "large eggs", + "chopped onion", + "roasted red peppers", + "salt", + "orange", + "potatoes", + "smoked trout" + ] + }, + { + "id": 30519, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "bacon slices", + "olive oil", + "butternut squash", + "salt", + "ground black pepper", + "purple onion", + "swiss chard", + "castellane", + "chopped fresh sage" + ] + }, + { + "id": 28236, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "wonton wrappers", + "parmesan cheese", + "mozzarella cheese", + "ricotta cheese", + "meat" + ] + }, + { + "id": 12404, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "red pepper", + "soy sauce", + "sesame oil", + "salt", + "brown sugar", + "green onions", + "garlic", + "pepper", + "lean ground beef" + ] + }, + { + "id": 16681, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "pear tomatoes", + "thyme sprigs", + "kosher salt", + "dry white wine", + "white wine vinegar", + "fresh rosemary", + "unsalted butter", + "extra-virgin olive oil", + "gaeta olives", + "yukon gold potatoes", + "turbot" + ] + }, + { + "id": 13085, + "cuisine": "indian", + "ingredients": [ + "eggs", + "fresh cilantro", + "salt", + "warm water", + "vegetable oil", + "sugar", + "active dry yeast", + "all-purpose flour", + "plain yogurt", + "garlic" + ] + }, + { + "id": 10449, + "cuisine": "italian", + "ingredients": [ + "pesto", + "arugula", + "sun-dried tomatoes", + "pinenuts", + "whole wheat pasta", + "goat cheese" + ] + }, + { + "id": 5964, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "extra-virgin olive oil", + "grated parmesan cheese", + "red bell pepper", + "mozzarella cheese", + "ricotta", + "pasta", + "broccoli florets" + ] + }, + { + "id": 30297, + "cuisine": "korean", + "ingredients": [ + "water", + "medium-grain rice" + ] + }, + { + "id": 3037, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "grating cheese", + "jalapeno chilies", + "freshly ground pepper", + "finely chopped onion", + "salt", + "tomatoes", + "vegetable oil", + "corn tortillas" + ] + }, + { + "id": 19712, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "butter", + "garlic cloves", + "dried oregano", + "chicken broth", + "bay leaves", + "creole seasoning", + "ground cayenne pepper", + "tomato paste", + "chili", + "purple onion", + "ham", + "green bell pepper", + "green onions", + "long-grain rice", + "plum tomatoes" + ] + }, + { + "id": 4400, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "fresh oregano leaves", + "boneless skinless chicken breasts", + "garlic cloves", + "cherry tomatoes", + "lemon", + "cooking spray", + "salt" + ] + }, + { + "id": 36837, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "goat cheese", + "minced garlic", + "salt", + "ground lamb", + "roasted red peppers", + "chopped onion", + "black pepper", + "refrigerated pizza dough", + "italian seasoning" + ] + }, + { + "id": 5066, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "unsalted butter", + "lemon", + "all-purpose flour", + "confectioners sugar", + "cold water", + "powdered buttermilk", + "whole milk", + "vanilla extract", + "corn starch", + "water", + "egg yolks", + "chocolate", + "juice", + "unsweetened cocoa powder", + "eggs", + "large egg yolks", + "baking powder", + "salt", + "hot water" + ] + }, + { + "id": 43111, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "shredded cheddar cheese", + "red beans", + "potatoes", + "taco seasoning mix", + "boneless skinless chicken breasts" + ] + }, + { + "id": 35881, + "cuisine": "korean", + "ingredients": [ + "green onions", + "kimchi", + "water", + "salt", + "flour", + "garlic cloves", + "sesame oil" + ] + }, + { + "id": 830, + "cuisine": "italian", + "ingredients": [ + "potato gnocchi", + "grated parmesan cheese", + "whipping cream", + "dried porcini mushrooms", + "butter", + "marinara sauce", + "boiling water" + ] + }, + { + "id": 39871, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "green chilies", + "olive oil spray", + "purple onion", + "rice flour", + "ginger", + "oil", + "asafetida", + "salt", + "chopped cilantro" + ] + }, + { + "id": 9543, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "salt", + "allspice", + "sugar", + "ginger", + "garlic cloves", + "chicken legs", + "jalapeno chilies", + "orange juice", + "soy sauce", + "white wine vinegar", + "onions" + ] + }, + { + "id": 34128, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "cooking spray", + "fresh lime juice", + "ground cumin", + "lime rind", + "pork tenderloin", + "chili powder", + "dried oregano", + "granny smith apples", + "ground black pepper", + "green onions", + "chopped cilantro fresh", + "kosher salt", + "jalapeno chilies", + "apple juice", + "pimenton" + ] + }, + { + "id": 21548, + "cuisine": "korean", + "ingredients": [ + "vegetables", + "toasted sesame oil", + "cooked rice", + "vegetable oil", + "soy sauce", + "ground turkey", + "light brown sugar", + "large eggs", + "toasted sesame seeds" + ] + }, + { + "id": 20024, + "cuisine": "russian", + "ingredients": [ + "apples", + "sea salt", + "cabbage", + "water", + "beets", + "ginger" + ] + }, + { + "id": 5508, + "cuisine": "southern_us", + "ingredients": [ + "tea bags", + "mint sprigs", + "baking soda", + "ice", + "sugar", + "boiling water", + "cold water", + "lemon" + ] + }, + { + "id": 37438, + "cuisine": "mexican", + "ingredients": [ + "guajillo chiles", + "hominy", + "onions", + "ground cloves", + "ground black pepper", + "pork shoulder", + "lower sodium chicken broth", + "water", + "chipotles in adobo", + "ground cumin", + "kosher salt", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 18105, + "cuisine": "french", + "ingredients": [ + "hot pepper sauce", + "lemon juice", + "egg yolks", + "dijon mustard", + "butter" + ] + }, + { + "id": 25637, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "olive oil", + "taco seasoning", + "shredded cheddar cheese", + "salsa", + "tortillas" + ] + }, + { + "id": 7583, + "cuisine": "greek", + "ingredients": [ + "marinade", + "oil", + "freshly ground pepper", + "chicken" + ] + }, + { + "id": 27856, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "garam masala", + "rice", + "tomatoes", + "baby spinach leaves", + "purple onion", + "ground cumin", + "red chili peppers", + "vegetable oil", + "garlic cloves", + "tomato purée", + "fresh ginger root", + "chickpeas" + ] + }, + { + "id": 15730, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "unsalted butter", + "extra-virgin olive oil", + "spaghetti", + "white wine", + "grated parmesan cheese", + "carrots", + "pancetta", + "cream", + "coarse salt", + "ground beef", + "celery ribs", + "ground black pepper", + "crushed red pepper flakes", + "onions" + ] + }, + { + "id": 36443, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "salsa", + "chili powder", + "ground black pepper", + "avocado", + "salt" + ] + }, + { + "id": 1335, + "cuisine": "spanish", + "ingredients": [ + "sweetener", + "hibiscus tea", + "fruit", + "teas", + "fresh mint", + "agave nectar", + "seltzer water", + "water", + "bitters" + ] + }, + { + "id": 20552, + "cuisine": "italian", + "ingredients": [ + "angel hair", + "Alfredo sauce", + "italian salad dressing", + "ground black pepper", + "broccoli", + "lime juice", + "chicken breasts", + "olive oil", + "garlic" + ] + }, + { + "id": 19493, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "bay leaves", + "ground tumeric", + "serrano", + "basmati rice", + "green cardamom pods", + "whole cloves", + "ginger", + "yellow onion", + "cinnamon sticks", + "water", + "cilantro", + "salt", + "shrimp", + "mint", + "butter", + "garlic", + "oil" + ] + }, + { + "id": 14223, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "extra-virgin olive oil", + "red bell pepper", + "green bell pepper", + "ancho powder", + "purple onion", + "ground cumin", + "marinade", + "garlic", + "fresh lime juice", + "kosher salt", + "cilantro", + "dark brown sugar" + ] + }, + { + "id": 47606, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "ground beef", + "chicken broth", + "taco seasoning", + "monterey jack", + "lettuce", + "tortilla chips", + "olives", + "flour", + "sour cream" + ] + }, + { + "id": 3628, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "cooking wine", + "pork", + "hoisin sauce", + "chinese five-spice powder", + "tofu", + "honey", + "salt", + "soy sauce", + "red food coloring", + "oyster sauce" + ] + }, + { + "id": 41449, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "light soy sauce", + "chili oil", + "sesame paste", + "shanghai noodles", + "radishes", + "peanut butter", + "chili flakes", + "peanuts", + "salt", + "black vinegar", + "water", + "spring onions", + "chinese five-spice powder" + ] + }, + { + "id": 46681, + "cuisine": "french", + "ingredients": [ + "tangerine", + "orange juice", + "whipping cream", + "sugar", + "Grand Marnier", + "large egg whites" + ] + }, + { + "id": 16276, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "ground sirloin", + "salsa", + "ground cumin", + "chopped green bell pepper", + "reduced-fat sour cream", + "baked tortilla chips", + "jalapeno chilies", + "salt", + "iceberg lettuce", + "reduced fat sharp cheddar cheese", + "chili powder", + "chopped onion" + ] + }, + { + "id": 45530, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "large eggs", + "garlic cloves", + "catfish fillets", + "unsalted butter", + "vegetable oil", + "fish", + "water", + "Tabasco Pepper Sauce", + "fresh lemon juice", + "pecans", + "minced onion", + "all-purpose flour" + ] + }, + { + "id": 42296, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "sugar", + "salt", + "orange" + ] + }, + { + "id": 5241, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "bacon slices", + "chili powder", + "onions", + "pepper", + "salt", + "chicken broth", + "dried pinto beans", + "ground cumin" + ] + }, + { + "id": 20398, + "cuisine": "italian", + "ingredients": [ + "gelato", + "unsalted butter", + "cherry preserves", + "honey", + "pistachios", + "bittersweet chocolate", + "amaretto liqueur", + "cherries", + "heavy whipping cream", + "instant espresso powder", + "whipped cream" + ] + }, + { + "id": 33819, + "cuisine": "mexican", + "ingredients": [ + "water", + "ground black pepper", + "lime wedges", + "chopped onion", + "ground cloves", + "olive oil", + "radishes", + "shredded lettuce", + "dried oregano", + "cider vinegar", + "kidney beans", + "zucchini", + "salt", + "ground cumin", + "sugar", + "corn kernels", + "white hominy", + "large garlic cloves", + "ancho chile pepper" + ] + }, + { + "id": 33542, + "cuisine": "spanish", + "ingredients": [ + "manchego cheese", + "onions", + "green bell pepper", + "russet potatoes", + "olive oil", + "fresh oregano", + "eggs", + "pimentos" + ] + }, + { + "id": 30848, + "cuisine": "greek", + "ingredients": [ + "plain low-fat yogurt", + "black pepper", + "eggplant", + "baking potatoes", + "chopped onion", + "dried currants", + "peeled tomatoes", + "ground nutmeg", + "1% low-fat milk", + "extra sharp cheddar cheese", + "nutmeg", + "aleppo pepper", + "olive oil", + "cooking spray", + "all-purpose flour", + "ground lamb", + "green bell pepper", + "kosher salt", + "large egg yolks", + "dry red wine", + "cinnamon sticks" + ] + }, + { + "id": 24064, + "cuisine": "french", + "ingredients": [ + "olive oil", + "chopped fresh thyme", + "1% low-fat milk", + "plain dry bread crumb", + "large egg yolks", + "large garlic cloves", + "all-purpose flour", + "cream of tartar", + "vegetable oil spray", + "butter", + "salt", + "large egg whites", + "ground black pepper", + "fresh chevre", + "oil" + ] + }, + { + "id": 26782, + "cuisine": "italian", + "ingredients": [ + "eggs", + "all-purpose flour", + "nuts", + "unsalted butter", + "heavy whipping cream", + "brown sugar", + "pie shell", + "vanilla extract", + "white sugar" + ] + }, + { + "id": 39914, + "cuisine": "british", + "ingredients": [ + "butter", + "semi-sweet chocolate morsels", + "sugar", + "salt", + "light corn syrup", + "water", + "toasted almonds" + ] + }, + { + "id": 46338, + "cuisine": "cajun_creole", + "ingredients": [ + "capers", + "dijon mustard", + "hot sauce", + "flat leaf parsley", + "whole grain mustard", + "garlic", + "lemon juice", + "mayonaise", + "worcestershire sauce", + "cayenne pepper", + "kosher salt", + "paprika", + "scallions" + ] + }, + { + "id": 20203, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "fresh ginger", + "beef sirloin", + "unsweetened coconut milk", + "canned chicken broth", + "vegetable oil", + "chopped cilantro fresh", + "sugar pea", + "ground black pepper", + "sliced shallots", + "lime zest", + "kosher salt", + "Thai red curry paste" + ] + }, + { + "id": 26618, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "flour", + "fresh parsley", + "pepper", + "heavy cream", + "marsala wine", + "chicken cutlets", + "olive oil", + "salt" + ] + }, + { + "id": 32443, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "cilantro", + "cardamom", + "cumin", + "lime", + "garlic", + "coconut milk", + "fresh ginger", + "salt", + "onions", + "tomato paste", + "boneless skinless chicken breasts", + "cayenne pepper", + "coriander" + ] + }, + { + "id": 48689, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "beef brisket", + "yellow onion", + "olive oil", + "salt", + "water", + "garlic", + "tomato sauce", + "tomatillos", + "chipotles in adobo" + ] + }, + { + "id": 5161, + "cuisine": "french", + "ingredients": [ + "baton", + "croissant dough" + ] + }, + { + "id": 11753, + "cuisine": "korean", + "ingredients": [ + "lettuce leaves", + "rice vinegar", + "toasted sesame seeds", + "soy sauce", + "sesame oil", + "scallions", + "mango", + "sugar", + "peeled fresh ginger", + "chili sauce", + "skirt steak", + "minced garlic", + "apples", + "fresh lime juice" + ] + }, + { + "id": 38693, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "cajun seasoning", + "cream cheese", + "green onions", + "garlic", + "grated parmesan cheese", + "butter", + "red bell pepper", + "crawfish", + "Tabasco Pepper Sauce", + "pickled okra" + ] + }, + { + "id": 36735, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "garlic cloves", + "lime juice", + "shredded carrots", + "sugar", + "bird chile" + ] + }, + { + "id": 25566, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "shredded mozzarella cheese", + "boneless skinless chicken breast halves", + "olive oil", + "corn tortillas", + "water", + "sour cream", + "chicken bouillon granules", + "poblano chilies", + "onions" + ] + }, + { + "id": 5862, + "cuisine": "thai", + "ingredients": [ + "boneless skinless chicken breasts", + "Thai fish sauce", + "Sriracha", + "peanut butter", + "fresh lime juice", + "garlic", + "fresh mint", + "lime zest", + "rice vinegar", + "coconut milk" + ] + }, + { + "id": 30323, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "sugar", + "salt", + "eggs", + "butter", + "frozen blueberries", + "ground cinnamon", + "baking powder", + "all-purpose flour", + "brown sugar", + "buttermilk" + ] + }, + { + "id": 18003, + "cuisine": "russian", + "ingredients": [ + "sugar", + "golden delicious apples", + "apple juice", + "ground black pepper", + "butter", + "bay leaf", + "ground cloves", + "red wine vinegar", + "applesauce", + "red cabbage", + "salt", + "onions" + ] + }, + { + "id": 44986, + "cuisine": "russian", + "ingredients": [ + "salmon fillets", + "lemon", + "onions", + "tomatoes", + "sturgeon fillets", + "sour cream", + "capers", + "butter", + "bay leaf", + "tomato paste", + "pickles", + "fish stock", + "olives" + ] + }, + { + "id": 11253, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "glazed pecans", + "vanilla extract", + "granulated sugar", + "bourbon whiskey", + "all-purpose flour", + "unsalted butter", + "baking powder", + "salt", + "light brown sugar", + "large eggs", + "whipped cream", + "blackberries" + ] + }, + { + "id": 32130, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "garlic", + "sugar", + "white vinegar", + "salt" + ] + }, + { + "id": 37360, + "cuisine": "thai", + "ingredients": [ + "bean threads", + "sugar", + "cooked chicken", + "beansprouts", + "fresh basil leaves", + "chiles", + "lime", + "vegetable oil", + "fresh lime juice", + "toasted peanuts", + "cherry tomatoes", + "cilantro leaves", + "medium shrimp", + "fish sauce", + "sweet chili sauce", + "shallots", + "fresh mint", + "hothouse cucumber" + ] + }, + { + "id": 11971, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "dried oregano", + "feta cheese crumbles", + "kalamata", + "ground turkey" + ] + }, + { + "id": 21944, + "cuisine": "southern_us", + "ingredients": [ + "all-purpose flour", + "cornmeal", + "ground black pepper", + "peanut oil", + "cayenne pepper", + "salt", + "catfish" + ] + }, + { + "id": 14864, + "cuisine": "french", + "ingredients": [ + "cod", + "red potato", + "dry white wine", + "lemon slices", + "onions", + "tomato paste", + "dried thyme", + "peeled shrimp", + "bay leaf", + "fennel seeds", + "pepper", + "clam juice", + "garlic cloves", + "saffron threads", + "tomatoes", + "olive oil", + "salt", + "fresh parsley" + ] + }, + { + "id": 20252, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "black pepper", + "vegetable oil", + "self-rising cornmeal", + "ground red pepper", + "all-purpose flour", + "yellow squash", + "buttermilk", + "onions" + ] + }, + { + "id": 48165, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "pizza crust", + "cheese", + "basil leaves", + "cherry tomatoes", + "garlic" + ] + }, + { + "id": 29198, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "corn kernels", + "diced tomatoes", + "ground coriander", + "shredded cheddar cheese", + "ground black pepper", + "salt", + "corn tortillas", + "eggs", + "olive oil", + "garlic", + "Hatch Green Chiles", + "fresh cilantro", + "vegetable stock", + "all-purpose flour", + "ground cumin" + ] + }, + { + "id": 32566, + "cuisine": "greek", + "ingredients": [ + "garlic powder", + "salt", + "ground cumin", + "water", + "yellow mustard", + "onions", + "tomato sauce", + "ground black pepper", + "ground beef", + "dried basil", + "crushed red pepper flakes", + "dried oregano" + ] + }, + { + "id": 31918, + "cuisine": "indian", + "ingredients": [ + "white pepper", + "dried thyme", + "lemon", + "salt", + "applesauce", + "curry powder", + "golden raisins", + "apples", + "chopped onion", + "seasoning salt", + "butter", + "garlic", + "ground coriander", + "water", + "olive oil", + "raisins", + "lamb chops", + "ground cumin" + ] + }, + { + "id": 28271, + "cuisine": "vietnamese", + "ingredients": [ + "fresh basil", + "coriander seeds", + "flank steak", + "star anise", + "beansprouts", + "brown sugar", + "hoisin sauce", + "rice noodles", + "scallions", + "fish sauce", + "Sriracha", + "lime wedges", + "beef broth", + "clove", + "fresh cilantro", + "jalapeno chilies", + "ginger", + "cinnamon sticks" + ] + }, + { + "id": 1112, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "salt", + "dried oregano", + "potatoes", + "anchovy fillets", + "water", + "cake", + "onions", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 27609, + "cuisine": "russian", + "ingredients": [ + "milk", + "cinnamon", + "cottage cheese", + "large eggs", + "farmer cheese", + "sugar", + "unsalted butter", + "all-purpose flour", + "water", + "baking powder" + ] + }, + { + "id": 42505, + "cuisine": "japanese", + "ingredients": [ + "beets", + "umeboshi vinegar", + "umeboshi" + ] + }, + { + "id": 24843, + "cuisine": "indian", + "ingredients": [ + "water", + "lemon juice", + "active dry yeast", + "ghee", + "flour", + "sugar", + "yellow food coloring" + ] + }, + { + "id": 26207, + "cuisine": "russian", + "ingredients": [ + "large eggs", + "granny smith apples", + "baking powder", + "powdered sugar", + "cake", + "granulated sugar", + "all-purpose flour" + ] + }, + { + "id": 16555, + "cuisine": "french", + "ingredients": [ + "creole mustard", + "garlic cloves", + "hungarian paprika", + "fresh parsley", + "ground red pepper", + "mayonaise", + "fresh lemon juice" + ] + }, + { + "id": 21605, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "dry white wine", + "prosciutto", + "provolone cheese", + "olive oil", + "salt", + "frozen chopped spinach", + "grated parmesan cheese", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 42041, + "cuisine": "spanish", + "ingredients": [ + "dry white wine", + "plum tomatoes", + "butter", + "halibut fillets", + "fresh tarragon", + "shallots" + ] + }, + { + "id": 1492, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "garlic", + "cinnamon sticks", + "pepper", + "dried mint flakes", + "salt", + "onions", + "garbanzo beans", + "lamb shoulder", + "fresh parsley", + "water", + "tomatoes with juice", + "bulgur" + ] + }, + { + "id": 36727, + "cuisine": "spanish", + "ingredients": [ + "vidalia onion", + "jalapeno chilies", + "fresh lemon juice", + "nectarines", + "chopped tomatoes", + "fresh orange juice", + "chopped fresh mint", + "fresh basil", + "cantaloupe", + "salt", + "mango", + "sugar", + "honeydew melon", + "cucumber" + ] + }, + { + "id": 33492, + "cuisine": "mexican", + "ingredients": [ + "honey", + "garlic cloves", + "ground cumin", + "white onion", + "confit duck leg", + "chopped cilantro fresh", + "white hominy", + "ancho chile pepper", + "water", + "salt", + "dried oregano" + ] + }, + { + "id": 43710, + "cuisine": "southern_us", + "ingredients": [ + "curry leaves", + "pepper", + "bacon", + "salt", + "red bell pepper", + "cooked rice", + "black-eyed peas", + "ginger", + "cumin seed", + "ground turmeric", + "collard greens", + "curry powder", + "crushed red pepper flakes", + "green chilies", + "onions", + "chicken stock", + "pork", + "cinnamon", + "garlic", + "black mustard seeds" + ] + }, + { + "id": 45917, + "cuisine": "southern_us", + "ingredients": [ + "marinade", + "dry bread crumbs", + "flank steak", + "all-purpose flour", + "ground red pepper", + "cajun seasoning", + "sauce", + "large eggs", + "vegetable oil", + "hot sauce" + ] + }, + { + "id": 18317, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "ground black pepper", + "garlic", + "shrimp shells", + "white wine", + "butter", + "cayenne pepper", + "grits", + "milk", + "heavy cream", + "fresh herbs", + "parmigiano-reggiano cheese", + "bay leaves", + "salt", + "onions" + ] + }, + { + "id": 44930, + "cuisine": "southern_us", + "ingredients": [ + "rosemary", + "salt", + "garlic powder", + "pepper", + "paprika", + "dried thyme", + "celery seed" + ] + }, + { + "id": 40607, + "cuisine": "mexican", + "ingredients": [ + "chili", + "purple onion", + "avocado", + "sea salt", + "olive oil", + "chipotle chile powder", + "lime", + "garlic" + ] + }, + { + "id": 14911, + "cuisine": "southern_us", + "ingredients": [ + "sack", + "shrimp", + "table salt", + "yellow onion", + "Crystal Hot Sauce", + "cayenne pepper", + "new potatoes" + ] + }, + { + "id": 31991, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "olive oil", + "ricotta cheese", + "crushed red pepper", + "shrimp", + "eggs", + "lasagna noodles", + "chopped fresh thyme", + "chopped onion", + "onions", + "minced garlic", + "bay leaves", + "whipping cream", + "provolone cheese", + "dried oregano", + "fresh basil", + "grated parmesan cheese", + "red wine vinegar", + "crabmeat", + "plum tomatoes" + ] + }, + { + "id": 14184, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "salt", + "shells" + ] + }, + { + "id": 6037, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "ground black pepper", + "onions", + "sourdough bread", + "butter", + "eggs", + "ground nutmeg", + "ground cayenne pepper", + "milk", + "swiss cheese" + ] + }, + { + "id": 45691, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "olive oil", + "whole milk", + "heavy cream", + "unsweetened cocoa powder", + "brown sugar", + "mascarpone", + "balsamic vinegar", + "salt", + "powdered sugar", + "baking soda", + "vegetable oil", + "vanilla", + "sugar", + "flour", + "cinnamon", + "cayenne pepper" + ] + }, + { + "id": 44042, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "pecorino romano cheese", + "garlic", + "ground black pepper", + "dry red wine", + "chopped fresh herbs", + "crushed tomatoes", + "button mushrooms", + "escarole", + "penne", + "basil leaves", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 14003, + "cuisine": "southern_us", + "ingredients": [ + "green cabbage", + "ketchup", + "ground black pepper", + "red pepper flakes", + "pork butt", + "sugar", + "olive oil", + "apple cider vinegar", + "ground white pepper", + "brown sugar", + "kosher salt", + "boston butt", + "sauce", + "coleslaw", + "hamburger buns", + "pork shoulder roast", + "chips", + "freshly ground pepper" + ] + }, + { + "id": 18446, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "baking powder", + "pandan extract", + "salt", + "bananas", + "butter", + "eggs", + "flour", + "cashew nuts" + ] + }, + { + "id": 48190, + "cuisine": "russian", + "ingredients": [ + "olive oil", + "cider vinegar", + "smoked kielbasa", + "mustard", + "flat leaf parsley", + "sweet onion", + "boiling potatoes" + ] + }, + { + "id": 20671, + "cuisine": "indian", + "ingredients": [ + "lemon wedge", + "fresh lemon juice", + "ground turmeric", + "water", + "purple onion", + "all beef hot dogs", + "jalapeno chilies", + "brown lentils", + "plain whole-milk yogurt", + "kosher salt", + "hot dog bun", + "chopped fresh mint", + "ground cumin" + ] + }, + { + "id": 16035, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "water", + "cooking oil", + "ground coriander", + "tumeric", + "ground black pepper", + "garlic", + "onions", + "brown sugar", + "fresh ginger", + "jalapeno chilies", + "lemon juice", + "unsweetened coconut milk", + "sole fillet", + "cayenne", + "salt", + "ground cumin" + ] + }, + { + "id": 8833, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "bacon", + "bay leaf", + "bell pepper", + "rice", + "ground chicken", + "garlic", + "onions", + "celery ribs", + "cajun seasoning", + "scallions" + ] + }, + { + "id": 22109, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "white onion", + "plum tomatoes", + "water", + "serrano chilies", + "cilantro leaves" + ] + }, + { + "id": 41204, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "cooking spray", + "garlic cloves", + "frozen chopped spinach", + "part-skim mozzarella cheese", + "all-purpose flour", + "dried oregano", + "pitted kalamata olives", + "large eggs", + "fresh onion", + "fat free milk", + "baking powder", + "feta cheese crumbles" + ] + }, + { + "id": 18137, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "sesame oil", + "oyster sauce", + "water", + "vegetable oil", + "chicken leg quarters", + "fresh ginger", + "large garlic cloves", + "mushroom soy sauce", + "chestnuts", + "yellow rock sugar", + "scallions" + ] + }, + { + "id": 14256, + "cuisine": "mexican", + "ingredients": [ + "lard", + "warm water", + "flour" + ] + }, + { + "id": 44969, + "cuisine": "spanish", + "ingredients": [ + "whole peeled tomatoes", + "garlic", + "beef rib short", + "yukon gold potatoes", + "spanish paprika", + "onions", + "flour", + "salt", + "juice", + "ground black pepper", + "paprika", + "beer", + "thick-cut bacon" + ] + }, + { + "id": 13385, + "cuisine": "french", + "ingredients": [ + "parsley", + "onions", + "unsalted butter", + "white fleshed fish", + "cold water", + "salt", + "dry white wine", + "fresh lemon juice" + ] + }, + { + "id": 24754, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "garlic powder", + "ground beef", + "refried beans", + "prepar salsa", + "Mexican cheese blend", + "dried oregano" + ] + }, + { + "id": 37588, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "cilantro", + "broth", + "water", + "garlic cloves", + "white onion", + "rice", + "vegetable oil", + "poblano chiles" + ] + }, + { + "id": 27940, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "asafetida", + "fenugreek seeds", + "coriander seeds", + "tumeric", + "dhal" + ] + }, + { + "id": 37089, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "cilantro leaves", + "corn flour", + "cauliflower", + "fresh ginger", + "oil", + "water", + "green chilies", + "onions", + "fennel seeds", + "salt", + "gram flour" + ] + }, + { + "id": 44543, + "cuisine": "indian", + "ingredients": [ + "water", + "ginger", + "oil", + "cauliflower", + "yellow lentils", + "garlic", + "onions", + "curry powder", + "vegetable broth", + "curry paste", + "tumeric", + "cilantro", + "salt", + "apricots" + ] + }, + { + "id": 39457, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "butter", + "chopped pecans", + "sugar", + "large eggs", + "vanilla extract", + "chocolate bars", + "coffee liqueur", + "all-purpose flour", + "brewed coffee", + "whipping cream" + ] + }, + { + "id": 10249, + "cuisine": "thai", + "ingredients": [ + "stock", + "water", + "sea salt", + "tomatoes", + "straw mushrooms", + "lime", + "galangal", + "mussels", + "red chili peppers", + "lemongrass", + "purple onion", + "kaffir lime leaves", + "whitefish fillets", + "prawns", + "coriander" + ] + }, + { + "id": 38783, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "water", + "purple onion", + "carrots", + "ground cumin", + "daal", + "idli", + "oil", + "cashew nuts", + "spinach", + "yoghurt", + "green chilies", + "frozen peas", + "red chili powder", + "semolina", + "salt", + "mustard seeds" + ] + }, + { + "id": 27440, + "cuisine": "french", + "ingredients": [ + "garlic", + "kalamata", + "flat leaf parsley", + "extra-virgin olive oil", + "fresh oregano leaves", + "fresh lemon juice" + ] + }, + { + "id": 44019, + "cuisine": "mexican", + "ingredients": [ + "frozen whole kernel corn", + "cornmeal", + "water", + "salt", + "masa harina", + "baking powder", + "white sugar", + "milk", + "margarine" + ] + }, + { + "id": 25361, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "boneless chicken breast", + "soy sauce", + "oil", + "sugar", + "Maggi", + "black pepper", + "onions" + ] + }, + { + "id": 39310, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "flat anchovy", + "italian loaf", + "broccoli rabe", + "garlic cloves", + "provolone cheese" + ] + }, + { + "id": 14138, + "cuisine": "italian", + "ingredients": [ + "capers", + "unsalted butter", + "yellow onion", + "pinot grigio", + "pepper", + "flour", + "fresh lemon juice", + "kosher salt", + "grated parmesan cheese", + "garlic cloves", + "angel hair", + "olive oil", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 24646, + "cuisine": "spanish", + "ingredients": [ + "bread crumbs", + "parsley", + "flour for dusting", + "minced onion", + "salt", + "ground black pepper", + "garlic", + "eggs", + "pork loin", + "oil" + ] + }, + { + "id": 216, + "cuisine": "korean", + "ingredients": [ + "asian pear", + "garlic cloves", + "fish sauce", + "napa cabbage", + "green onions", + "coarse kosher salt", + "sugar", + "daikon" + ] + }, + { + "id": 19294, + "cuisine": "italian", + "ingredients": [ + "salad dressing", + "cheddar cheese", + "pitted black olives", + "rotini", + "frozen mixed vegetables" + ] + }, + { + "id": 46868, + "cuisine": "cajun_creole", + "ingredients": [ + "granulated sugar", + "fine sea salt", + "active dry yeast", + "whole milk", + "peanut oil", + "water", + "large eggs", + "all-purpose flour", + "unsalted butter", + "vegetable oil", + "confectioners sugar" + ] + }, + { + "id": 36609, + "cuisine": "british", + "ingredients": [ + "light brown sugar", + "milk", + "eggs", + "butter", + "ground ginger", + "self rising flour", + "rolled oats", + "golden syrup" + ] + }, + { + "id": 7456, + "cuisine": "cajun_creole", + "ingredients": [ + "cod fillets", + "fresh lemon juice", + "olive oil", + "salt", + "cooking spray", + "fresh parsley", + "dijon mustard", + "creole seasoning" + ] + }, + { + "id": 12008, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "grapeseed oil", + "toasted sesame oil", + "buckwheat soba noodles", + "salmon fillets", + "daikon", + "carrots", + "toasted sesame seeds", + "low sodium soy sauce", + "green onions", + "rice vinegar", + "wood ear mushrooms", + "orange", + "wasabi powder", + "ground white pepper", + "nori" + ] + }, + { + "id": 22517, + "cuisine": "thai", + "ingredients": [ + "vegetable stock", + "stir fry vegetable blend", + "shiitake", + "thai green curry paste", + "reduced fat coconut milk", + "sunflower oil", + "prawns", + "noodles" + ] + }, + { + "id": 22247, + "cuisine": "greek", + "ingredients": [ + "red wine vinegar", + "green pepper", + "olive oil", + "black olives", + "fresh mint", + "cherry tomatoes", + "vine tomatoes", + "cucumber", + "feta cheese", + "purple onion", + "oregano" + ] + }, + { + "id": 6814, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "fresh basil leaves", + "ground black pepper", + "salt", + "extra-virgin olive oil", + "parmigiano reggiano cheese", + "walnuts" + ] + }, + { + "id": 6769, + "cuisine": "russian", + "ingredients": [ + "black pepper", + "whole milk", + "garlic cloves", + "tomatoes", + "parmigiano reggiano cheese", + "salt", + "boiling potatoes", + "ground chuck", + "large eggs", + "dry bread crumbs", + "unsalted butter", + "vegetable oil", + "onions" + ] + }, + { + "id": 20097, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "flour", + "poblano chiles", + "jack cheese", + "salt", + "cotija", + "baking powder", + "fresh oregano leaves", + "mexican chorizo" + ] + }, + { + "id": 24301, + "cuisine": "mexican", + "ingredients": [ + "butter", + "all-purpose flour", + "egg yolks", + "vanilla extract", + "sprinkles", + "white sugar", + "baking powder", + "salt" + ] + }, + { + "id": 14318, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "ground beef", + "tortilla chips", + "tomato sauce", + "taco seasoning" + ] + }, + { + "id": 39899, + "cuisine": "spanish", + "ingredients": [ + "grape tomatoes", + "olive oil", + "paprika", + "cayenne pepper", + "pepper", + "prawns", + "salt", + "fresh parsley", + "spanish rice", + "seafood stock", + "smoked sausage", + "garlic cloves", + "saffron threads", + "water", + "fresh green bean", + "yellow onion" + ] + }, + { + "id": 19716, + "cuisine": "french", + "ingredients": [ + "pure vanilla extract", + "whole milk", + "corn starch", + "sugar", + "shelled pistachios", + "ground ginger", + "salt", + "large eggs", + "ground cardamom" + ] + }, + { + "id": 17705, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "chopped cilantro fresh", + "celery ribs", + "garlic cloves", + "avocado", + "fresh lime juice", + "purple onion", + "serrano chile" + ] + }, + { + "id": 17522, + "cuisine": "vietnamese", + "ingredients": [ + "dark soy sauce", + "spring onions", + "beansprouts", + "red chili peppers", + "oil", + "brown sugar", + "sesame oil", + "tiger prawn", + "medium egg noodles", + "garlic cloves" + ] + }, + { + "id": 31269, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "leg of lamb", + "garlic cloves", + "salt", + "dried oregano", + "black pepper", + "fresh lemon juice" + ] + }, + { + "id": 13752, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "unsalted butter", + "red pepper", + "shells", + "olive oil", + "asiago", + "canned tomatoes", + "kosher salt", + "ricotta cheese", + "garlic", + "sausage casings", + "half & half", + "heavy cream", + "onions" + ] + }, + { + "id": 46927, + "cuisine": "chinese", + "ingredients": [ + "molasses", + "reduced sodium soy sauce", + "vietnamese fish sauce", + "pork spareribs", + "mushroom soy sauce", + "fresh ginger", + "marinade", + "chinese red vinegar", + "corn starch", + "sugar", + "thai basil", + "star anise", + "chinese five-spice powder", + "rib", + "minced garlic", + "Shaoxing wine", + "sauce", + "oil" + ] + }, + { + "id": 7719, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "plum tomatoes", + "romano cheese", + "fresh oregano" + ] + }, + { + "id": 45785, + "cuisine": "japanese", + "ingredients": [ + "pumpkin", + "dashi", + "white sugar", + "sake", + "shoyu", + "mirin" + ] + }, + { + "id": 3301, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "ground black pepper", + "flat leaf parsley", + "olive oil", + "garlic", + "capers", + "kalamata", + "spaghetti", + "feta cheese", + "salt" + ] + }, + { + "id": 9249, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "okra", + "sugar", + "buttermilk", + "vidalia onion", + "vegetable oil", + "white cornmeal", + "cayenne", + "bacon slices" + ] + }, + { + "id": 9330, + "cuisine": "irish", + "ingredients": [ + "ground cinnamon", + "golden brown sugar", + "raisins", + "black tea", + "candied orange peel", + "golden raisins", + "all-purpose flour", + "eggs", + "unsalted butter", + "salt", + "boiling water", + "ground cloves", + "baking powder", + "ground allspice" + ] + }, + { + "id": 12164, + "cuisine": "indian", + "ingredients": [ + "peeled fresh ginger", + "curry powder", + "chopped cilantro fresh", + "olive oil", + "large shrimp", + "unsweetened coconut milk", + "onions" + ] + }, + { + "id": 6231, + "cuisine": "brazilian", + "ingredients": [ + "raspberries", + "granola", + "mango", + "milk", + "juice", + "coconut", + "frozen mixed berries", + "bananas", + "ice" + ] + }, + { + "id": 1031, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "ginger", + "chaat masala", + "chili powder", + "green chilies", + "besan (flour)", + "salt", + "amchur", + "bhindi", + "oil" + ] + }, + { + "id": 12536, + "cuisine": "thai", + "ingredients": [ + "pepper", + "chili paste", + "shallots", + "tamari soy sauce", + "fresh mint", + "soy sauce", + "peanuts", + "lemon zest", + "watercress", + "chinese five-spice powder", + "fish sauce", + "lemongrass", + "radishes", + "hanger steak", + "cilantro leaves", + "fresh lime juice", + "dressing", + "minced garlic", + "raw honey", + "sesame oil", + "salt", + "toasted sesame oil" + ] + }, + { + "id": 37233, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "flour", + "sugar", + "peaches", + "eggs", + "vanilla" + ] + }, + { + "id": 23036, + "cuisine": "british", + "ingredients": [ + "pastry dough", + "fresh parsley", + "medium eggs", + "butter", + "sage", + "eggs", + "cooked bacon", + "leeks", + "salt" + ] + }, + { + "id": 11775, + "cuisine": "chinese", + "ingredients": [ + "bean threads", + "soy sauce", + "ginger", + "garlic chili sauce", + "wood ear mushrooms", + "cold water", + "black peppercorns", + "szechwan peppercorns", + "firm tofu", + "ground white pepper", + "dried mushrooms", + "fennel seeds", + "pork", + "napa cabbage", + "scallions", + "cinnamon sticks", + "white vinegar", + "eggs", + "bay leaves", + "star anise", + "corn starch", + "broth" + ] + }, + { + "id": 25909, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "cumin", + "tomato sauce", + "long-grain rice", + "chicken broth", + "vegetable oil", + "kosher salt", + "chopped cilantro fresh" + ] + }, + { + "id": 957, + "cuisine": "italian", + "ingredients": [ + "water", + "ground black pepper", + "garlic", + "dried oregano", + "anise seed", + "dried basil", + "red wine", + "fresh parsley", + "tomato paste", + "crushed tomatoes", + "whole peeled tomatoes", + "salt", + "tomato sauce", + "olive oil", + "top sirloin", + "white sugar" + ] + }, + { + "id": 2583, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "kosher salt", + "tomatoes", + "basil leaves" + ] + }, + { + "id": 11610, + "cuisine": "thai", + "ingredients": [ + "pandanus leaf", + "grated coconut", + "salt", + "tapioca flour", + "tapioca pearls", + "water", + "white sugar" + ] + }, + { + "id": 47016, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "jalapeno chilies", + "orange juice", + "lime juice", + "garlic", + "ground cloves", + "green onions", + "chicken", + "ground cinnamon", + "fresh ginger root", + "ground allspice" + ] + }, + { + "id": 32275, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "hot sauce", + "thyme", + "dried oregano", + "turkey", + "long-grain rice", + "medium shrimp", + "large garlic cloves", + "okra", + "bay leaf", + "fat free less sodium chicken broth", + "diced tomatoes", + "diced celery", + "onions" + ] + }, + { + "id": 44225, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "pork blade steaks", + "light brown sugar", + "lemongrass", + "chopped garlic", + "black pepper", + "oil", + "dark soy sauce", + "shallots" + ] + }, + { + "id": 11996, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "rice vinegar", + "soy sauce", + "tahini", + "Chinese egg noodles", + "water", + "garlic", + "toasted sesame oil", + "sugar", + "Sriracha", + "scallions" + ] + }, + { + "id": 40913, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "tomatoes" + ] + }, + { + "id": 27212, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vegetable oil", + "melted butter", + "honey", + "all-purpose flour", + "yellow corn meal", + "milk", + "salt", + "eggs", + "baking powder" + ] + }, + { + "id": 35593, + "cuisine": "french", + "ingredients": [ + "eggs", + "minced onion", + "cayenne pepper", + "pastry", + "bacon", + "single crust pie", + "shredded swiss cheese", + "white sugar", + "light cream", + "salt" + ] + }, + { + "id": 9443, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "candy", + "angel food cake mix", + "buttercream frosting", + "cinnamon sticks" + ] + }, + { + "id": 7353, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "won ton wrappers", + "sesame oil", + "chinese cabbage", + "shiitake mushroom caps", + "chiles", + "peeled fresh ginger", + "salt", + "lemon juice", + "black pepper", + "green onions", + "rice vinegar", + "carrots", + "sake", + "leeks", + "ground pork", + "garlic cloves" + ] + }, + { + "id": 19467, + "cuisine": "french", + "ingredients": [ + "sugar", + "golden delicious apples", + "whipping cream", + "pork tenderloin", + "butter", + "calvados", + "chopped fresh thyme", + "shallots", + "apple cider" + ] + }, + { + "id": 34521, + "cuisine": "chinese", + "ingredients": [ + "spring greens", + "fresh ginger root", + "beef rump steaks", + "dark soy sauce", + "vegetable oil", + "chestnut mushrooms", + "oyster sauce" + ] + }, + { + "id": 46134, + "cuisine": "russian", + "ingredients": [ + "canning salt", + "beets", + "water" + ] + }, + { + "id": 8625, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "ground cumin", + "black beans", + "chipotles in adobo", + "avocado", + "corn tortillas", + "large eggs", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 26085, + "cuisine": "japanese", + "ingredients": [ + "sake", + "shiitake", + "soy sauce", + "sugar", + "mirin", + "dashi" + ] + }, + { + "id": 13449, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil cooking spray", + "sour cream", + "flour tortillas", + "shredded Monterey Jack cheese", + "shredded cheddar cheese", + "plum tomatoes", + "green chile", + "salsa" + ] + }, + { + "id": 15096, + "cuisine": "thai", + "ingredients": [ + "tomatoes", + "soaking liquid", + "cilantro", + "carrots", + "chicken thighs", + "fresh ginger", + "chile pepper", + "purple onion", + "coconut milk", + "shiitake", + "large garlic cloves", + "scallions", + "fresh lime juice", + "fish sauce", + "leeks", + "Thai red curry paste", + "red bell pepper" + ] + }, + { + "id": 17244, + "cuisine": "spanish", + "ingredients": [ + "chicken stock", + "salt", + "olive oil", + "red bell pepper", + "pepper", + "carrots", + "garlic" + ] + }, + { + "id": 17312, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "grits", + "half & half", + "low salt chicken broth", + "medium shrimp uncook", + "cream cheese", + "green onions", + "fresh lime juice" + ] + }, + { + "id": 7603, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "steak", + "milk", + "all-purpose flour", + "pepper", + "salt", + "vegetable oil", + "hot sauce" + ] + }, + { + "id": 15724, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "all purpose seasoning", + "butter", + "all-purpose flour", + "boneless skinless chicken breasts", + "salt", + "black pepper", + "paprika", + "flat leaf parsley" + ] + }, + { + "id": 9465, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "sour cream", + "shredded cheddar cheese", + "cottage cheese", + "noodles", + "cream cheese" + ] + }, + { + "id": 11789, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "Country Crock® Spread", + "ground red pepper", + "cucumber", + "catfish fillets", + "all-purpose flour", + "buttermilk", + "cornmeal" + ] + }, + { + "id": 40967, + "cuisine": "vietnamese", + "ingredients": [ + "condensed milk", + "hot water", + "coffee" + ] + }, + { + "id": 47982, + "cuisine": "chinese", + "ingredients": [ + "fat free less sodium chicken broth", + "peeled fresh ginger", + "long-grain rice", + "canola oil", + "hoisin sauce", + "salt", + "corn starch", + "minced garlic", + "crushed red pepper", + "oyster sauce", + "low sodium soy sauce", + "broccoli florets", + "rice vinegar", + "onions" + ] + }, + { + "id": 25860, + "cuisine": "chinese", + "ingredients": [ + "cooking oil", + "napa cabbage", + "water", + "pork tenderloin", + "oyster sauce", + "sugar", + "shredded carrots", + "salt", + "light soy sauce", + "Shaoxing wine", + "corn starch" + ] + }, + { + "id": 38399, + "cuisine": "british", + "ingredients": [ + "pork belly", + "slab bacon", + "yellow onion", + "flat leaf parsley", + "eggs", + "pig feet", + "flour", + "ground white pepper", + "pork shoulder", + "kosher salt", + "ground black pepper", + "carrots", + "celery", + "black peppercorns", + "mace", + "grated nutmeg", + "lard", + "pork bones" + ] + }, + { + "id": 26534, + "cuisine": "greek", + "ingredients": [ + "egg substitute", + "ground nutmeg", + "1% low-fat milk", + "corn starch", + "ground cinnamon", + "eggplant", + "bulgur wheat", + "chopped onion", + "ground lamb", + "tomato paste", + "olive oil", + "cooking spray", + "salt", + "dried oregano", + "black pepper", + "fresh parmesan cheese", + "dry red wine", + "garlic cloves" + ] + }, + { + "id": 36555, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "butter", + "sour cream", + "Mexican cheese blend", + "green chilies", + "taco shells", + "salt", + "chunky salsa", + "flour", + "rotisserie chicken" + ] + }, + { + "id": 2910, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "all-purpose flour", + "water", + "salt", + "cake flour", + "extra-virgin olive oil" + ] + }, + { + "id": 7429, + "cuisine": "mexican", + "ingredients": [ + "espresso powder", + "whole milk", + "large egg yolks", + "heavy whipping cream", + "ground cinnamon", + "coffee liqueur", + "bittersweet chocolate", + "superfine sugar", + "cayenne pepper" + ] + }, + { + "id": 19268, + "cuisine": "italian", + "ingredients": [ + "lime", + "sugar", + "watermelon" + ] + }, + { + "id": 46759, + "cuisine": "french", + "ingredients": [ + "saffron threads", + "dried thyme", + "bay leaves", + "fish bones", + "onions", + "water", + "leeks", + "fish stock", + "celery", + "fennel seeds", + "olive oil", + "dry white wine", + "salt", + "plum tomatoes", + "black peppercorns", + "fennel bulb", + "large garlic cloves", + "carrots", + "dried oregano" + ] + }, + { + "id": 15532, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "vegetable oil", + "fennel bulb", + "garlic cloves", + "cauliflower", + "dijon mustard", + "fresh lemon juice", + "asparagus", + "anchovy fillets" + ] + }, + { + "id": 35878, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "pepper", + "pepper jack", + "garlic", + "ground beef", + "tomatoes", + "ground pepper", + "cilantro", + "salt", + "cumin", + "avocado", + "lime juice", + "chili powder", + "purple onion", + "oregano", + "buns", + "cayenne", + "dry mustard", + "smoked paprika" + ] + }, + { + "id": 19708, + "cuisine": "indian", + "ingredients": [ + "melted butter", + "tandoori paste", + "boneless, skinless chicken breast", + "plain yogurt", + "canola oil", + "salad", + "salt" + ] + }, + { + "id": 9864, + "cuisine": "italian", + "ingredients": [ + "white wine", + "mushrooms", + "red pepper", + "sun-dried tomatoes", + "baby spinach", + "goat cheese", + "risotto", + "shallots", + "diced tomatoes", + "chicken broth", + "grated parmesan cheese", + "butter", + "garlic cloves" + ] + }, + { + "id": 45888, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "ground black pepper", + "large shrimp", + "ice cubes", + "peeled tomatoes", + "garlic cloves", + "fresh basil", + "olive oil", + "cooked vermicelli", + "water", + "dry white wine", + "sliced green onions" + ] + }, + { + "id": 42011, + "cuisine": "italian", + "ingredients": [ + "red chili peppers", + "linguine", + "lemon", + "garlic cloves", + "olive oil", + "crabmeat", + "fennel seeds", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 41, + "cuisine": "mexican", + "ingredients": [ + "hamburger buns", + "jalapeno chilies", + "avocado", + "garlic powder", + "chili powder", + "reduced-fat sour cream", + "dried oregano", + "chile pepper", + "cilantro leaves", + "cheddar cheese", + "ground black pepper", + "ground chicken breast", + "salt", + "pepper", + "green onions", + "shredded lettuce", + "salsa" + ] + }, + { + "id": 27740, + "cuisine": "greek", + "ingredients": [ + "pepper", + "chicken breasts", + "white vinegar", + "olive oil", + "english cucumber", + "fresh oregano leaves", + "nonfat greek yogurt", + "garlic cloves", + "kosher salt", + "dry white wine", + "lemon juice" + ] + }, + { + "id": 10700, + "cuisine": "french", + "ingredients": [ + "shallots", + "bay leaf", + "black peppercorns", + "heavy cream", + "butter", + "dry white wine", + "white wine vinegar" + ] + }, + { + "id": 22757, + "cuisine": "southern_us", + "ingredients": [ + "water", + "green bell pepper, slice", + "red bell pepper", + "vidalia onion", + "salt and ground black pepper", + "garlic", + "olive oil", + "processed cheese", + "hominy grits", + "cream", + "hot pepper sauce", + "shrimp" + ] + }, + { + "id": 39482, + "cuisine": "mexican", + "ingredients": [ + "shredded reduced fat cheddar cheese", + "salt", + "reduced fat cream cheese", + "green onions", + "jalapeno chilies", + "pepper", + "boneless skinless chicken breasts" + ] + }, + { + "id": 13944, + "cuisine": "mexican", + "ingredients": [ + "zucchini", + "salsa", + "chili", + "butter", + "red bell pepper", + "green onions", + "frozen corn kernels", + "ground black pepper", + "salt", + "chopped cilantro" + ] + }, + { + "id": 19768, + "cuisine": "french", + "ingredients": [ + "parsnips", + "olive oil", + "fresh chevre", + "chopped fresh sage", + "pie dough", + "sweet potatoes", + "purple onion", + "sugar", + "ground black pepper", + "white wine vinegar", + "carrots", + "fresh rosemary", + "kosher salt", + "yukon gold potatoes", + "all-purpose flour" + ] + }, + { + "id": 26133, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "sesame oil", + "fillets", + "reduced sodium soy sauce", + "salt", + "lime", + "fat-free chicken broth", + "black pepper", + "boneless skinless chicken breasts", + "garlic cloves" + ] + }, + { + "id": 2905, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "guacamole", + "cilantro", + "yellow onion", + "boneless skinless chicken breast halves", + "honey", + "chili powder", + "garlic", + "ground coriander", + "ground cumin", + "orange bell pepper", + "diced tomatoes", + "salt", + "sour cream", + "jack cheese", + "flour tortillas", + "paprika", + "salsa", + "fresh lime juice" + ] + }, + { + "id": 270, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "cake flour", + "sugar", + "heavy cream", + "table salt", + "coarse salt", + "unsalted butter", + "cracked black pepper" + ] + }, + { + "id": 48843, + "cuisine": "southern_us", + "ingredients": [ + "frozen orange juice concentrate", + "frozen limeade concentrate", + "dark rum", + "fruit", + "light rum" + ] + }, + { + "id": 25195, + "cuisine": "filipino", + "ingredients": [ + "ginger ale", + "ground black pepper", + "freshly ground pepper", + "soy sauce", + "garlic", + "bamboo shoots", + "white vinegar", + "ketchup", + "salt", + "mango", + "brown sugar", + "crushed garlic", + "pork shoulder" + ] + }, + { + "id": 9746, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "peaches", + "salt", + "large egg yolks", + "granulated sugar", + "sour cream", + "honey", + "unsalted butter", + "all-purpose flour", + "mascarpone", + "ice water", + "cornmeal" + ] + }, + { + "id": 21549, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "quickcooking grits", + "all-purpose flour", + "large eggs", + "butter", + "fresh asparagus", + "water", + "vegetable oil", + "sauce", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 25675, + "cuisine": "mexican", + "ingredients": [ + "chopped cilantro fresh", + "white wine vinegar", + "ground cumin", + "garlic cloves", + "olive oil", + "serrano chile" + ] + }, + { + "id": 42945, + "cuisine": "southern_us", + "ingredients": [ + "cream cheese, soften", + "toasted pecans", + "dried cranberries", + "orange marmalade" + ] + }, + { + "id": 23436, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "all-purpose flour", + "red pepper", + "large eggs", + "scallions", + "cold water", + "salt" + ] + }, + { + "id": 10150, + "cuisine": "irish", + "ingredients": [ + "ground cinnamon", + "baking soda", + "all-purpose flour", + "cream of tartar", + "molasses", + "butter", + "ground cloves", + "ground nutmeg", + "ground allspice", + "ground ginger", + "milk", + "salt" + ] + }, + { + "id": 14509, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "chicken", + "brown rice", + "plain yogurt", + "curry paste" + ] + }, + { + "id": 2487, + "cuisine": "indian", + "ingredients": [ + "boneless chicken thighs", + "unsalted roasted peanuts", + "sesame oil", + "salt", + "onions", + "curry powder", + "shallots", + "ginger", + "dried red chile peppers", + "ground cumin", + "water", + "coriander powder", + "vegetable oil", + "sweet paprika", + "ground turmeric", + "brown sugar", + "lemongrass", + "chili powder", + "garlic", + "galangal" + ] + }, + { + "id": 43627, + "cuisine": "southern_us", + "ingredients": [ + "fresh ginger", + "dark sesame oil", + "turnip greens", + "salt", + "collard greens", + "chile pepper", + "garlic cloves", + "pepper", + "chopped onion" + ] + }, + { + "id": 19552, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "ground black pepper", + "red bell pepper", + "buns", + "vegetable oil", + "sugar", + "apple cider vinegar", + "onions", + "kosher salt", + "hot Italian sausages" + ] + }, + { + "id": 21508, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped green bell pepper", + "smoked sausage", + "long-grain rice", + "ground cayenne pepper", + "green onions", + "salt", + "thyme", + "olive oil", + "worcestershire sauce", + "chopped onion", + "diced tomatoes in juice", + "boneless chicken breast halves", + "chopped celery", + "garlic cloves", + "medium shrimp" + ] + }, + { + "id": 36637, + "cuisine": "thai", + "ingredients": [ + "sugar", + "shallots", + "salt", + "medium shrimp", + "eggs", + "pepper", + "vegetable oil", + "garlic cloves", + "fish sauce", + "jalapeno chilies", + "cilantro", + "tamarind concentrate", + "honey roasted peanuts", + "rice noodles", + "rice vinegar" + ] + }, + { + "id": 33645, + "cuisine": "spanish", + "ingredients": [ + "pitted kalamata olives", + "sherry vinegar", + "french bread", + "orange", + "bibb lettuce", + "extra-virgin olive oil", + "sugar", + "ground black pepper", + "fresh orange juice", + "capers", + "radicchio", + "dijon mustard", + "garlic cloves" + ] + }, + { + "id": 14432, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "garlic", + "cumin", + "tomatoes", + "tortillas", + "vegetable broth", + "salsa", + "dried lentils", + "guacamole", + "cheese", + "onions", + "lettuce", + "corn", + "cilantro", + "salt" + ] + }, + { + "id": 7142, + "cuisine": "french", + "ingredients": [ + "duck stock", + "black pepper", + "dry white wine", + "all-purpose flour", + "thyme sprigs", + "parsley sprigs", + "orange", + "white wine vinegar", + "ground coriander", + "orange zest", + "fresh marjoram", + "kosher salt", + "fresh orange juice", + "duck", + "onions", + "celery ribs", + "sugar", + "unsalted butter", + "salt", + "carrots", + "ground cumin" + ] + }, + { + "id": 40439, + "cuisine": "japanese", + "ingredients": [ + "baby spinach leaves", + "fat skimmed chicken broth", + "sugar", + "large eggs", + "onions", + "cooked rice", + "fresh ginger", + "salad oil", + "soy sauce", + "chicken breasts" + ] + }, + { + "id": 21219, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "grated lemon zest", + "dried oregano", + "fat free yogurt", + "salt", + "boneless skinless chicken breast halves", + "cooking spray", + "fresh lemon juice", + "dried rosemary", + "green bell pepper", + "purple onion", + "feta cheese crumbles" + ] + }, + { + "id": 6929, + "cuisine": "italian", + "ingredients": [ + "eggs", + "almond extract", + "orange zest", + "baking powder", + "all-purpose flour", + "vegetable oil", + "white sugar", + "sliced almonds", + "salt" + ] + }, + { + "id": 27711, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "sugar", + "vanilla extract", + "vegetable oil cooking spray", + "peaches", + "all-purpose flour", + "firmly packed brown sugar", + "water", + "salt", + "ground cinnamon", + "slivered almonds", + "ice water", + "margarine" + ] + }, + { + "id": 41144, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "flour tortillas", + "sharp cheddar cheese", + "milk", + "salt", + "vegetable oil cooking spray", + "large eggs", + "all-purpose flour", + "fresh cilantro", + "baking powder", + "chicken" + ] + }, + { + "id": 23685, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "pepper", + "bay leaves", + "cayenne pepper", + "cheddar cheese", + "dried thyme", + "salt", + "dried oregano", + "andouille sausage", + "water", + "green onions", + "celery", + "cooked rice", + "light red kidney beans", + "garlic powder", + "yellow onion" + ] + }, + { + "id": 41260, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "garlic cloves", + "ginger", + "sugar", + "fresh lime juice", + "thai chile" + ] + }, + { + "id": 37037, + "cuisine": "french", + "ingredients": [ + "dried thyme", + "frozen pastry puff sheets", + "onions", + "sugar", + "unsalted butter", + "anchovy fillets", + "freshly grated parmesan", + "vegetable oil", + "dried rosemary", + "water", + "large eggs", + "brine-cured black olives" + ] + }, + { + "id": 41854, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "rice vinegar", + "bean thread vermicelli", + "shrimp", + "soy sauce", + "english cucumber", + "lemon" + ] + }, + { + "id": 36992, + "cuisine": "chinese", + "ingredients": [ + "warm water", + "eggs", + "oil", + "cake flour", + "sugar" + ] + }, + { + "id": 3025, + "cuisine": "korean", + "ingredients": [ + "spinach", + "prawns", + "rice", + "red chili peppers", + "white wine vinegar", + "carrots", + "sugar", + "mushrooms", + "oil", + "clove", + "soy sauce", + "free range egg" + ] + }, + { + "id": 22816, + "cuisine": "french", + "ingredients": [ + "rosemary sprigs", + "garlic cloves", + "sage leaves", + "frozen pastry puff sheets", + "olive oil", + "plum tomatoes", + "fresh basil", + "chopped onion" + ] + }, + { + "id": 21457, + "cuisine": "greek", + "ingredients": [ + "cottage cheese", + "eggs", + "butter", + "feta cheese", + "phyllo dough", + "(10 oz.) frozen chopped spinach, thawed and squeezed dry" + ] + }, + { + "id": 1076, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "sliced shallots", + "fish sauce", + "basil leaves", + "dark soy sauce", + "boneless chicken skinless thigh", + "chopped garlic", + "sugar", + "vegetable oil" + ] + }, + { + "id": 5299, + "cuisine": "french", + "ingredients": [ + "large eggs", + "salt", + "whipped cream", + "sugar", + "bittersweet chocolate" + ] + }, + { + "id": 36586, + "cuisine": "italian", + "ingredients": [ + "red wine", + "onions", + "ground red pepper", + "garlic cloves", + "olive oil", + "salt", + "fresh basil", + "diced tomatoes" + ] + }, + { + "id": 47802, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "salad dressing", + "green bell pepper", + "bow-tie pasta", + "grape tomatoes", + "purple onion", + "fresh asparagus", + "crawfish", + "fresh mushrooms" + ] + }, + { + "id": 3101, + "cuisine": "french", + "ingredients": [ + "gruyere cheese", + "half & half", + "yukon gold potatoes" + ] + }, + { + "id": 41710, + "cuisine": "filipino", + "ingredients": [ + "chicken broth", + "short-grain rice", + "onions", + "boneless chicken skinless thigh", + "ginger root", + "fish sauce", + "garlic", + "garlic flakes", + "green onions", + "canola oil" + ] + }, + { + "id": 9927, + "cuisine": "mexican", + "ingredients": [ + "Tabasco Pepper Sauce", + "california avocado", + "fresh coriander", + "vine ripened tomatoes", + "fresh lemon juice", + "vegetable oil", + "grated jack cheese", + "flour tortillas", + "purple onion", + "sour cream" + ] + }, + { + "id": 45123, + "cuisine": "italian", + "ingredients": [ + "large shrimp", + "pasta", + "lemon zest" + ] + }, + { + "id": 28586, + "cuisine": "italian", + "ingredients": [ + "water", + "ground nutmeg", + "yellow bell pepper", + "polenta", + "fresh spinach", + "fresh parmesan cheese", + "cooking spray", + "nonfat ricotta cheese", + "large egg whites", + "ground black pepper", + "salt", + "chopped garlic", + "part-skim mozzarella cheese", + "marinara sauce", + "red bell pepper" + ] + }, + { + "id": 22231, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "evaporated milk", + "eggs", + "canola", + "butter", + "warm water", + "self rising flour", + "powdered sugar", + "active dry yeast", + "salt" + ] + }, + { + "id": 16037, + "cuisine": "brazilian", + "ingredients": [ + "fish fillets", + "ground black pepper", + "marinade", + "coarse sea salt", + "low sodium chicken stock", + "bay leaf", + "avocado", + "lime", + "cilantro stems", + "vegetable oil", + "button mushrooms", + "shrimp", + "ground cumin", + "bottled clam juice", + "bell pepper", + "lime wedges", + "ancho powder", + "garlic cloves", + "onions", + "tomatoes", + "dried thyme", + "green onions", + "russet potatoes", + "cilantro leaves", + "coconut milk" + ] + }, + { + "id": 35464, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "lean ground beef", + "dry mustard", + "ketchup", + "ground black pepper", + "worcestershire sauce", + "sweet paprika", + "white onion", + "large eggs", + "dry sherry", + "white sandwich bread", + "currant jelly", + "mace", + "vegetable oil", + "salt" + ] + }, + { + "id": 12712, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "garlic cloves", + "queso fresco", + "masa dough", + "corn husks", + "pinto beans", + "white onion", + "vegetable shortening" + ] + }, + { + "id": 19440, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "couscous", + "ground cumin", + "olive oil", + "salt", + "chopped cilantro fresh", + "black beans", + "purple onion", + "fresh lime juice", + "jalapeno chilies", + "whole kernel corn, drain", + "boiling water" + ] + }, + { + "id": 30072, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "white wine vinegar", + "tzatziki", + "onions", + "pita bread", + "paprika", + "greek style plain yogurt", + "lemon juice", + "boneless lamb", + "pepper", + "garlic", + "dill", + "cucumber", + "tomatoes", + "garlic powder", + "salt", + "freshly ground pepper", + "dried oregano" + ] + }, + { + "id": 41863, + "cuisine": "mexican", + "ingredients": [ + "water", + "bay leaf", + "black peppercorns", + "garlic", + "pork shoulder roast", + "onions", + "red chili peppers", + "salt" + ] + }, + { + "id": 39071, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "garlic cloves", + "tumeric", + "salt", + "onions", + "salt and ground black pepper", + "gram flour", + "water", + "oil", + "coriander" + ] + }, + { + "id": 41132, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "purple onion", + "medium shrimp", + "extra-virgin olive oil", + "cayenne pepper", + "mango", + "non-fat sour cream", + "fresh lime juice", + "flour tortillas", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 42818, + "cuisine": "italian", + "ingredients": [ + "salt", + "dried rosemary", + "olive oil", + "garlic cloves", + "active dry yeast", + "all-purpose flour", + "baking potatoes", + "small red potato" + ] + }, + { + "id": 13209, + "cuisine": "mexican", + "ingredients": [ + "orange", + "lemon", + "black pepper", + "cooking spray", + "chopped cilantro fresh", + "pork tenderloin", + "grapefruit", + "habanero pepper", + "salt" + ] + }, + { + "id": 28621, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "mustard seeds", + "lime", + "cilantro leaves", + "ground turmeric", + "curry leaves", + "salt", + "onions", + "potatoes", + "green chilies" + ] + }, + { + "id": 21714, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "oil", + "spring onions", + "prawns", + "chillies", + "sugar", + "sesame oil" + ] + }, + { + "id": 20776, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "low-fat buttermilk", + "unsalted butter", + "all-purpose flour", + "sugar", + "baking powder" + ] + }, + { + "id": 1838, + "cuisine": "mexican", + "ingredients": [ + "chopped green chilies", + "diced onions", + "garlic", + "white hominy", + "reduced fat sharp cheddar cheese", + "fat free cream cheese" + ] + }, + { + "id": 37757, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "olive oil", + "salt", + "minced garlic", + "grated romano cheese", + "onions", + "pepper", + "quinoa", + "flat leaf parsley", + "fresh basil", + "milk", + "large eggs" + ] + }, + { + "id": 42097, + "cuisine": "spanish", + "ingredients": [ + "dry white wine", + "paprika", + "onions", + "andouille sausage", + "diced tomatoes", + "red bell pepper", + "large shrimp", + "chopped fresh thyme", + "fresh oregano", + "chicken thighs", + "green bell pepper", + "large garlic cloves", + "low salt chicken broth", + "pimento stuffed green olives" + ] + }, + { + "id": 45394, + "cuisine": "cajun_creole", + "ingredients": [ + "black beans", + "parsley", + "chopped celery", + "frozen spinach", + "ditalini pasta", + "basil", + "butter beans", + "andouille sausage", + "soup", + "garlic", + "finely chopped onion", + "diced tomatoes", + "beef broth" + ] + }, + { + "id": 29478, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "chiles", + "eggs", + "masa harina", + "kosher salt" + ] + }, + { + "id": 30664, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "ground black pepper", + "fresh parsley", + "water", + "salt", + "minced garlic", + "littleneck clams", + "olive oil", + "flat leaf parsley" + ] + }, + { + "id": 2363, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "paprika", + "lime", + "red bell pepper", + "frozen sweet corn", + "carrots", + "mayonaise", + "salted butter", + "chopped cilantro" + ] + }, + { + "id": 11133, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "cooking spray", + "boneless skinless chicken breast halves", + "sun-dried tomatoes", + "salt", + "black pepper", + "whole wheat bread", + "dijon mustard", + "cream cheese, soften" + ] + }, + { + "id": 32736, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "fresh lime juice", + "light sour cream", + "ranch dressing", + "light mayonnaise", + "chipotle chile", + "garlic" + ] + }, + { + "id": 41440, + "cuisine": "italian", + "ingredients": [ + "salad seasoning mix", + "broccoli", + "zesty italian dressing", + "spaghetti", + "cauliflower", + "black olives", + "ranch dressing", + "cucumber" + ] + }, + { + "id": 29908, + "cuisine": "chinese", + "ingredients": [ + "chili flakes", + "ground black pepper", + "sesame oil", + "all-purpose flour", + "oyster sauce", + "soy sauce", + "mushrooms", + "raw cashews", + "oil", + "red bell pepper", + "sugar", + "broccoli florets", + "chili pepper flakes", + "scallions", + "green beans", + "chicken broth", + "fresh ginger", + "chicken breasts", + "rice vinegar", + "garlic cloves", + "onions" + ] + }, + { + "id": 48516, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "chopped pecans", + "ground cinnamon", + "butter", + "cubed bread", + "eggs", + "crushed pineapple" + ] + }, + { + "id": 10461, + "cuisine": "irish", + "ingredients": [ + "apple cider", + "orange juice", + "apricot nectar", + "cinnamon sticks", + "salt", + "ground cardamom", + "whole cloves", + "pineapple juice" + ] + }, + { + "id": 17858, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "lemongrass", + "fresh veget", + "garlic", + "jasmine rice", + "thai basil", + "shallots", + "coconut milk", + "fish sauce", + "canola", + "boneless chicken breast", + "ground white pepper", + "lime juice", + "palm sugar", + "thai chile" + ] + }, + { + "id": 49040, + "cuisine": "japanese", + "ingredients": [ + "water", + "russet potatoes", + "cooked white rice", + "mozzarella cheese", + "curry sauce", + "yellow onion", + "pepper", + "spring onions", + "carrots", + "eggs", + "beef", + "salt" + ] + }, + { + "id": 25574, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "truffle oil", + "cracked black pepper", + "heavy whipping cream", + "pappardelle pasta", + "shallots", + "chopped fresh sage", + "olive oil", + "mushrooms", + "salt", + "boiling water", + "sage leaves", + "parmigiano reggiano cheese", + "dry sherry", + "garlic cloves" + ] + }, + { + "id": 38872, + "cuisine": "cajun_creole", + "ingredients": [ + "duck drippings", + "dried thyme", + "bay leaves", + "garlic", + "fat", + "pepper", + "ground black pepper", + "dry white wine", + "duck", + "toast", + "milk", + "flour", + "dry sherry", + "sweet paprika", + "kosher salt", + "garlic powder", + "green onions", + "salt", + "low salt chicken broth" + ] + }, + { + "id": 21674, + "cuisine": "british", + "ingredients": [ + "eggs", + "butter", + "white sugar", + "egg whites", + "salt", + "baking powder", + "all-purpose flour", + "whole wheat flour", + "heavy cream" + ] + }, + { + "id": 39368, + "cuisine": "mexican", + "ingredients": [ + "milk", + "cinnamon", + "confectioners sugar", + "dulce de leche", + "large eggs", + "all-purpose flour", + "pure vanilla extract", + "large egg yolks", + "heavy cream", + "bittersweet chocolate", + "melted butter", + "granulated sugar", + "salt" + ] + }, + { + "id": 12973, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "peas", + "bay leaf", + "diced tomatoes", + "salt", + "water", + "ground pork", + "carrots", + "lean ground beef", + "garlic", + "onions" + ] + }, + { + "id": 7769, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "rice vermicelli", + "firm tofu", + "white sugar", + "soy sauce", + "green onions", + "garlic", + "beansprouts", + "lime", + "crushed red pepper flakes", + "salt", + "fresh lime juice", + "large eggs", + "vegetable broth", + "peanut oil" + ] + }, + { + "id": 8029, + "cuisine": "italian", + "ingredients": [ + "sugar", + "basil leaves", + "salt", + "active dry yeast", + "large garlic cloves", + "warm water", + "fresh mozzarella", + "juice", + "tomatoes", + "olive oil", + "all purpose unbleached flour" + ] + }, + { + "id": 43234, + "cuisine": "british", + "ingredients": [ + "pastry dough", + "large eggs", + "rice", + "stilton", + "watercress", + "half & half", + "walnuts" + ] + }, + { + "id": 45406, + "cuisine": "cajun_creole", + "ingredients": [ + "black-eyed peas", + "all-purpose flour", + "vegetable oil", + "egg whites", + "cayenne pepper", + "salt" + ] + }, + { + "id": 22956, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "rice wine", + "scallions", + "chicken broth", + "regular soy sauce", + "vegetable oil", + "chinese sausage", + "sesame oil", + "oyster sauce", + "glutinous rice", + "peeled fresh ginger", + "dried shiitake mushrooms" + ] + }, + { + "id": 2241, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "sesame oil", + "honey", + "chile sauce", + "water", + "edamame", + "peeled fresh ginger" + ] + }, + { + "id": 3763, + "cuisine": "italian", + "ingredients": [ + "egg yolks", + "salt", + "ground cinnamon", + "butter", + "white sugar", + "baking powder", + "all-purpose flour", + "eggs", + "vanilla extract" + ] + }, + { + "id": 30893, + "cuisine": "italian", + "ingredients": [ + "italian salad dressing mix", + "brown sugar", + "chicken breasts" + ] + }, + { + "id": 22652, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "fresh mozzarella", + "coarse salt", + "freshly ground pepper", + "basil" + ] + }, + { + "id": 8756, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "scallions", + "chinese rice wine", + "sesame oil", + "fermented black beans", + "minced ginger", + "bok choy", + "soy sauce", + "peanut oil", + "large shrimp" + ] + }, + { + "id": 11659, + "cuisine": "southern_us", + "ingredients": [ + "worcestershire sauce", + "garlic cloves", + "butter", + "salt", + "celery", + "cracked black pepper", + "shrimp", + "lemon", + "hot sauce" + ] + }, + { + "id": 3306, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "Mexican cheese", + "cream of chicken soup", + "salsa", + "cumin", + "black beans", + "frozen corn", + "sour cream", + "flour tortillas", + "red enchilada sauce", + "chicken" + ] + }, + { + "id": 48252, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "vegetable oil", + "white cornmeal", + "large eggs", + "salt", + "chopped green bell pepper", + "buttermilk", + "ground red pepper", + "onions" + ] + }, + { + "id": 41575, + "cuisine": "italian", + "ingredients": [ + "salt", + "dried oregano", + "active dry yeast", + "margarine", + "warm water", + "all-purpose flour", + "grated parmesan cheese", + "white sugar" + ] + }, + { + "id": 15438, + "cuisine": "southern_us", + "ingredients": [ + "orange", + "fresh orange juice", + "lemon pepper", + "garlic powder", + "grouper", + "lime", + "salt", + "key lime juice", + "onion powder", + "softened butter" + ] + }, + { + "id": 38461, + "cuisine": "cajun_creole", + "ingredients": [ + "brown sugar", + "all-purpose flour", + "butter", + "chopped pecans", + "vegetable oil", + "creole seasoning", + "eggs", + "maple syrup", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 47184, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "slaw mix", + "pickle relish", + "ground red pepper", + "sliced ham", + "cheese slices", + "bread slices", + "ketchup", + "butter cooking spray" + ] + }, + { + "id": 4688, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "ground black pepper", + "garlic", + "crushed tomatoes", + "basil leaves", + "rigatoni", + "water", + "grated parmesan cheese", + "salt", + "cauliflower", + "olive oil", + "raisins" + ] + }, + { + "id": 5227, + "cuisine": "mexican", + "ingredients": [ + "tequila", + "triple sec", + "ice", + "sugar", + "fresh lime juice", + "orange juice" + ] + }, + { + "id": 46256, + "cuisine": "british", + "ingredients": [ + "sugar", + "grated nutmeg", + "orange", + "cinnamon sticks", + "brandy", + "juice", + "eggs", + "golden raisins", + "puff pastry" + ] + }, + { + "id": 42840, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "peaches", + "large egg yolks", + "sugar", + "heavy whipping cream" + ] + }, + { + "id": 33928, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "lemon rind", + "black pepper", + "salt", + "flat leaf parsley", + "fresh basil", + "tuna steaks", + "garlic cloves", + "olive oil", + "dry bread crumbs" + ] + }, + { + "id": 37965, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "black-eyed peas", + "shallots", + "banana peppers", + "white onion", + "unsalted butter", + "salt pork", + "canola oil", + "basmati", + "ground black pepper", + "hot sauce", + "smoked ham hocks", + "kosher salt", + "jasmine", + "long-grain rice" + ] + }, + { + "id": 29445, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "coffee granules", + "firmly packed light brown sugar", + "whipping cream", + "sugar", + "vanilla extract" + ] + }, + { + "id": 9421, + "cuisine": "french", + "ingredients": [ + "cauliflower", + "hot red pepper flakes", + "minced garlic", + "heavy cream", + "flat leaf parsley", + "stock", + "kosher salt", + "unsalted butter", + "California bay leaves", + "onions", + "green bell pepper", + "cider vinegar", + "white hominy", + "red bell pepper", + "fresh corn", + "black pepper", + "olive oil", + "scallions", + "serrano ham" + ] + }, + { + "id": 19724, + "cuisine": "japanese", + "ingredients": [ + "sake", + "pork loin", + "fresh ginger root", + "soy sauce", + "vegetable oil", + "mirin" + ] + }, + { + "id": 48518, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "grated parmesan cheese", + "salt", + "fresh mushrooms", + "water", + "garlic", + "chopped onion", + "oregano", + "vegetable oil cooking spray", + "lean ground beef", + "fresh oregano", + "spaghetti", + "tomato paste", + "zucchini", + "crushed red pepper", + "shredded zucchini" + ] + }, + { + "id": 47661, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "buttermilk", + "butter", + "baking powder", + "salt", + "country ham", + "vegetable shortening" + ] + }, + { + "id": 37600, + "cuisine": "russian", + "ingredients": [ + "sauerkraut", + "chopped onion", + "potatoes", + "dill pickles", + "olive oil", + "beets", + "salt", + "carrots" + ] + }, + { + "id": 40494, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "fresh ginger root", + "red curry paste", + "lemongrass", + "vegetable oil", + "coconut milk", + "fresh coriander", + "prawns", + "dark brown sugar", + "chicken stock", + "shiitake", + "salt", + "fresh lime juice" + ] + }, + { + "id": 33643, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "oil", + "cilantro", + "cumin", + "lime juice", + "onions", + "tomatoes", + "garlic" + ] + }, + { + "id": 14915, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "scallions", + "black vinegar", + "light soy sauce", + "green pepper", + "corn starch", + "water", + "red pepper", + "garlic cloves", + "dark soy sauce", + "cooking oil", + "firm tofu", + "ginger root" + ] + }, + { + "id": 858, + "cuisine": "filipino", + "ingredients": [ + "chicken broth", + "shallots", + "salt", + "cooked shrimp", + "pepper", + "vegetable oil", + "carrots", + "soy sauce", + "rice noodles", + "garlic cloves", + "boneless skinless chicken breasts", + "napa cabbage", + "green beans" + ] + }, + { + "id": 25275, + "cuisine": "french", + "ingredients": [ + "eggs", + "vanilla extract", + "baking powder", + "confectioners sugar", + "butter", + "lemon zest", + "all-purpose flour" + ] + }, + { + "id": 12677, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic", + "sugar", + "olive oil", + "black pepper", + "whole peeled tomatoes", + "dried pasta", + "fresh basil leaves" + ] + }, + { + "id": 44408, + "cuisine": "italian", + "ingredients": [ + "bacon", + "boneless skinless chicken breast halves", + "red chili peppers", + "penne pasta", + "pasta sauce", + "garlic", + "grated parmesan cheese", + "medium shrimp" + ] + }, + { + "id": 33191, + "cuisine": "italian", + "ingredients": [ + "sugar", + "berries", + "cold water", + "whipping cream", + "white wine", + "unflavored gelatin", + "vanilla extract" + ] + }, + { + "id": 35448, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "linguine", + "clams", + "shallots", + "dry white wine", + "arugula", + "peeled tomatoes", + "large garlic cloves" + ] + }, + { + "id": 5879, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "oregano", + "flour", + "evaporated milk", + "tomato sauce", + "green chilies" + ] + }, + { + "id": 37107, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "chopped cilantro fresh", + "garlic cloves", + "salt", + "plum tomatoes", + "finely chopped onion", + "fresh lime juice" + ] + }, + { + "id": 577, + "cuisine": "indian", + "ingredients": [ + "sugar", + "cumin seed", + "chili powder", + "ground turmeric", + "bananas", + "oil", + "mustard", + "salt" + ] + }, + { + "id": 30171, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "unsalted butter", + "buttermilk", + "cornmeal", + "sugar", + "baking powder", + "paprika", + "black pepper", + "chicken breast halves", + "salt", + "baking soda", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 35481, + "cuisine": "korean", + "ingredients": [ + "sugar", + "honey", + "top sirloin", + "pinenuts", + "sesame oil", + "perilla", + "soy sauce", + "green onions", + "salt", + "pepper", + "yellow mustard", + "sweet rice flour" + ] + }, + { + "id": 47591, + "cuisine": "mexican", + "ingredients": [ + "water", + "cooking spray", + "chopped onion", + "red bell pepper", + "semisweet chocolate", + "yellow bell pepper", + "cumin seed", + "fresh cilantro", + "chili powder", + "diced tomatoes with garlic and onion", + "dried oregano", + "jalapeno chilies", + "salt", + "pork loin chops" + ] + }, + { + "id": 43292, + "cuisine": "southern_us", + "ingredients": [ + "seasoning salt", + "beer", + "pepper", + "purple onion", + "celery ribs", + "beef brisket", + "garlic cloves", + "water", + "chili sauce" + ] + }, + { + "id": 29262, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "basil leaves", + "medium shrimp", + "agave nectar", + "rice vinegar", + "rice paper", + "Sriracha", + "lettuce leaves", + "mango", + "bean threads", + "mint leaves", + "scallions" + ] + }, + { + "id": 39227, + "cuisine": "italian", + "ingredients": [ + "ground round", + "olive oil", + "whole milk", + "ground pork", + "flat leaf parsley", + "black pepper", + "ground nutmeg", + "fettuccine, cook and drain", + "salt", + "tomato purée", + "fat free less sodium chicken broth", + "finely chopped onion", + "ground veal", + "carrots", + "parsley sprigs", + "fresh parmesan cheese", + "dry white wine", + "chopped celery", + "bay leaf" + ] + }, + { + "id": 32903, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "shredded cheddar cheese", + "baking powder", + "salsa", + "black pepper", + "diced green chilies", + "sea salt", + "cornmeal", + "lean ground turkey", + "baking soda", + "chili powder", + "carrots", + "black beans", + "low-fat buttermilk", + "frozen corn", + "cumin" + ] + }, + { + "id": 20965, + "cuisine": "japanese", + "ingredients": [ + "white onion", + "bay leaves", + "coriander", + "tumeric", + "garam masala", + "green chilies", + "ginger paste", + "garlic paste", + "olive oil", + "ground red pepper", + "frozen peas", + "tomato sauce", + "potatoes", + "cumin seed" + ] + }, + { + "id": 26916, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "dark corn syrup", + "salt", + "pecan halves", + "ice water", + "white sugar", + "eggs", + "butter", + "all-purpose flour", + "pecans", + "light corn syrup" + ] + }, + { + "id": 42379, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "almonds", + "heavy cream", + "curry powder", + "low sodium chicken broth", + "cooked white rice", + "kosher salt", + "zucchini", + "yellow onion", + "ground cinnamon", + "olive oil", + "boneless skinless chicken breasts", + "fresh basil leaves" + ] + }, + { + "id": 32393, + "cuisine": "mexican", + "ingredients": [ + "unsweetened soymilk", + "vegetable broth", + "onions", + "chili beans", + "jalapeno chilies", + "salt", + "cumin", + "cooked pumpkin", + "garlic", + "oregano", + "red potato", + "cilantro", + "cayenne pepper" + ] + }, + { + "id": 7551, + "cuisine": "mexican", + "ingredients": [ + "frozen limeade", + "frozen strawberries", + "lemon-lime soda" + ] + }, + { + "id": 42490, + "cuisine": "brazilian", + "ingredients": [ + "muenster cheese", + "cream cheese" + ] + }, + { + "id": 41470, + "cuisine": "mexican", + "ingredients": [ + "whipped cream", + "mexican chocolate", + "vanilla extract", + "milk", + "cinnamon sticks" + ] + }, + { + "id": 8600, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "eggs", + "ditalini pasta", + "chicken broth", + "grated romano cheese", + "water", + "fresh parsley" + ] + }, + { + "id": 34025, + "cuisine": "cajun_creole", + "ingredients": [ + "whole milk", + "confectioners sugar", + "active dry yeast", + "salt", + "sugar", + "buttermilk", + "bread flour", + "baking soda", + "oil" + ] + }, + { + "id": 31708, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "fresh thyme", + "garlic", + "kosher salt", + "shallots", + "frozen peas", + "fresh chives", + "lobster", + "flat leaf parsley", + "pasta", + "mascarpone", + "extra-virgin olive oil" + ] + }, + { + "id": 9293, + "cuisine": "french", + "ingredients": [ + "rocket leaves", + "olive oil", + "2% reduced-fat milk", + "thyme sprigs", + "dried thyme", + "butter", + "garlic cloves", + "pepper", + "bay leaves", + "apples", + "onions", + "water", + "loin pork roast", + "salt" + ] + }, + { + "id": 36878, + "cuisine": "thai", + "ingredients": [ + "sesame seeds", + "flaked coconut", + "soy sauce", + "chunky peanut butter", + "firm tofu", + "fresh ginger root", + "sesame oil", + "olive oil", + "green onions" + ] + }, + { + "id": 18334, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "lemon extract", + "whipped cream", + "water", + "pastry shell", + "sugar", + "sweet potatoes", + "vanilla extract", + "evaporated milk", + "butter" + ] + }, + { + "id": 6782, + "cuisine": "irish", + "ingredients": [ + "whole cloves", + "grated lemon zest", + "nutmeg", + "cinnamon", + "unsweetened apple juice", + "grated orange", + "whole allspice", + "dry red wine" + ] + }, + { + "id": 11130, + "cuisine": "japanese", + "ingredients": [ + "dark soy sauce", + "baking soda", + "sweet potatoes", + "salt", + "green beans", + "water", + "zucchini", + "ice water", + "rice flour", + "canola oil", + "sugar", + "mirin", + "bonito flakes", + "yellow onion", + "large shrimp", + "shiitake", + "egg yolks", + "cake flour", + "carrots" + ] + }, + { + "id": 48232, + "cuisine": "korean", + "ingredients": [ + "dark soy sauce", + "baking soda", + "dark brown sugar", + "large egg whites", + "rice vinegar", + "toasted sesame oil", + "chicken wings", + "sea salt", + "garlic cloves", + "fresh ginger", + "Gochujang base", + "asian fish sauce" + ] + }, + { + "id": 13569, + "cuisine": "french", + "ingredients": [ + "honey", + "corn starch", + "half & half", + "sugar", + "salt", + "egg yolks" + ] + }, + { + "id": 2806, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "worcestershire sauce", + "celery", + "green bell pepper", + "beef", + "salt", + "water", + "garlic", + "onions", + "small red beans", + "Tabasco Pepper Sauce", + "creole seasoning" + ] + }, + { + "id": 39444, + "cuisine": "french", + "ingredients": [ + "sugar", + "butter", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 2481, + "cuisine": "french", + "ingredients": [ + "double cream", + "egg whites", + "sugar", + "plain chocolate", + "egg yolks" + ] + }, + { + "id": 5073, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large eggs", + "salt", + "almonds", + "anise", + "anise extract", + "brandy", + "baking powder", + "all-purpose flour", + "unsalted butter", + "vanilla extract" + ] + }, + { + "id": 43011, + "cuisine": "southern_us", + "ingredients": [ + "grits", + "cooking spray", + "tomato sauce", + "large shrimp", + "cajun seasoning" + ] + }, + { + "id": 37697, + "cuisine": "southern_us", + "ingredients": [ + "sweet potatoes", + "cayenne pepper", + "milk", + "salt", + "unsalted butter", + "all-purpose flour", + "sugar", + "baking powder" + ] + }, + { + "id": 23541, + "cuisine": "korean", + "ingredients": [ + "granulated sugar", + "rice vinegar", + "gluten free soy sauce", + "water", + "vegetable oil", + "rice flour", + "eggs", + "zucchini", + "scallions", + "fresh ginger", + "red pepper flakes", + "carrots" + ] + }, + { + "id": 47560, + "cuisine": "french", + "ingredients": [ + "pure vanilla extract", + "large egg whites", + "yolk", + "all-purpose flour", + "sugar", + "unsalted butter", + "salt", + "sliced almonds", + "large eggs", + "crème fraîche", + "cold water", + "large egg yolks", + "Poire Williams", + "bartlett pears" + ] + }, + { + "id": 43215, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "white sandwich bread", + "vanilla ice cream", + "lemon juice", + "ground cinnamon", + "dark brown sugar", + "ground nutmeg", + "gala apples" + ] + }, + { + "id": 23512, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "dried oregano", + "dried thyme", + "paprika", + "dried basil", + "onion powder", + "garlic powder", + "cayenne pepper" + ] + }, + { + "id": 3372, + "cuisine": "vietnamese", + "ingredients": [ + "all purpose unbleached flour", + "warm water", + "sugar", + "salt", + "active dry yeast" + ] + }, + { + "id": 35580, + "cuisine": "indian", + "ingredients": [ + "flour", + "curds", + "tumeric", + "chili powder", + "mustard", + "seeds", + "oil", + "water", + "salt" + ] + }, + { + "id": 17878, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "corn", + "rice", + "romaine lettuce", + "salsa", + "chicken", + "avocado", + "black beans", + "sauce", + "cheddar cheese", + "Tabasco Pepper Sauce", + "sour cream" + ] + }, + { + "id": 11075, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "fresh basil", + "fresh basil leaves", + "simple syrup", + "powdered sugar", + "ice" + ] + }, + { + "id": 12189, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "mexican style 4 cheese blend", + "ground cumin", + "green onions", + "chicken fingers", + "black beans", + "salsa", + "chili powder", + "couscous" + ] + }, + { + "id": 36716, + "cuisine": "russian", + "ingredients": [ + "mustard", + "olive oil", + "peas", + "red bell pepper", + "corn", + "sea salt", + "carrots", + "mayonaise", + "ground pepper", + "fat", + "pickles", + "potatoes", + "lemon juice" + ] + }, + { + "id": 43554, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "sea salt", + "salt", + "lime juice", + "bell pepper", + "cheese spread", + "vegetarian refried beans", + "pepper", + "cherry tomatoes", + "black olives", + "salsa", + "fresh cilantro", + "guacamole", + "purple onion" + ] + }, + { + "id": 26591, + "cuisine": "indian", + "ingredients": [ + "golden brown sugar", + "salt", + "fresh lime juice", + "granny smith apples", + "peeled fresh ginger", + "ground cardamom", + "serrano chile", + "quinces", + "ground coriander", + "medjool date", + "water", + "apple cider vinegar", + "cinnamon sticks" + ] + }, + { + "id": 47012, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "clam juice", + "onions", + "salmon fillets", + "salt", + "pepper", + "margarine", + "green cabbage", + "chopped fresh chives", + "low salt chicken broth" + ] + }, + { + "id": 13678, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "salt", + "pork", + "onions", + "taco sauce", + "salsa", + "picante sauce", + "chopped garlic" + ] + }, + { + "id": 46392, + "cuisine": "filipino", + "ingredients": [ + "bell pepper", + "ginger", + "shrimp", + "fish sauce", + "vegetable oil", + "garlic", + "sweet potatoes", + "white rice", + "coconut milk", + "water", + "lemon", + "carrots" + ] + }, + { + "id": 43609, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "ground black pepper", + "paprika", + "sugar", + "sherry vinegar", + "chopped fresh thyme", + "ice cubes", + "olive oil", + "cooking spray", + "garlic cloves", + "water", + "pork tenderloin", + "chopped fresh sage" + ] + }, + { + "id": 10775, + "cuisine": "french", + "ingredients": [ + "cream sweeten whip", + "half & half", + "bittersweet chocolate", + "edible flowers", + "mint sprigs", + "large eggs", + "instant espresso", + "firmly packed brown sugar", + "coffee liqueur", + "unsweetened cocoa powder" + ] + }, + { + "id": 29485, + "cuisine": "vietnamese", + "ingredients": [ + "lime", + "rice noodles", + "cucumber", + "radishes", + "purple onion", + "fish sauce", + "mint leaves", + "roasted peanuts", + "red chili peppers", + "chicken breasts", + "carrots" + ] + }, + { + "id": 42924, + "cuisine": "french", + "ingredients": [ + "peeled tomatoes", + "large garlic cloves", + "thyme sprigs", + "bay leaves", + "chopped onion", + "chicken", + "fresh basil", + "dry white wine", + "low salt chicken broth", + "olive oil", + "salt pork", + "olives" + ] + }, + { + "id": 28957, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "cornbread stuffing mix", + "large eggs", + "chopped green bell pepper", + "onions", + "milk", + "large garlic cloves" + ] + }, + { + "id": 46006, + "cuisine": "mexican", + "ingredients": [ + "corn oil", + "corn tortillas", + "purple onion", + "ragu old world style tradit pasta sauc", + "chipotles in adobo" + ] + }, + { + "id": 37602, + "cuisine": "indian", + "ingredients": [ + "butter", + "onions", + "ground ginger", + "okra", + "ground black pepper", + "ground coriander", + "salt", + "ground cumin" + ] + }, + { + "id": 22492, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic cloves", + "center cut loin pork chop", + "green bell pepper", + "salt", + "onions", + "ancho powder", + "fresh lime juice", + "cooking spray", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 35131, + "cuisine": "russian", + "ingredients": [ + "kosher salt", + "grated nutmeg", + "sugar", + "almond extract", + "confectioners sugar", + "ground cinnamon", + "large eggs", + "fresh lemon juice", + "granny smith apples", + "all-purpose flour" + ] + }, + { + "id": 5272, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "pumpkin purée", + "vegetable shortening", + "salt", + "pumpkin pie spice", + "brown sugar", + "apple cider vinegar", + "heavy cream", + "corn syrup", + "pecan halves", + "bourbon whiskey", + "whipped cream", + "all-purpose flour", + "cold water", + "sugar", + "butter", + "vanilla extract", + "chopped pecans" + ] + }, + { + "id": 5162, + "cuisine": "chinese", + "ingredients": [ + "Shaoxing wine", + "Maggi", + "corn starch", + "white pepper", + "ginger", + "oil", + "sugar", + "sesame oil", + "scallions", + "beef", + "salt", + "oyster sauce" + ] + }, + { + "id": 26364, + "cuisine": "korean", + "ingredients": [ + "eggs", + "water", + "sesame oil", + "scallions", + "hot red pepper flakes", + "sesame seeds", + "rice vinegar", + "brown sugar", + "olive oil", + "salt", + "cold water", + "soy sauce", + "red cabbage", + "pancake mix" + ] + }, + { + "id": 30670, + "cuisine": "italian", + "ingredients": [ + "fresh marjoram", + "butter", + "wild mushrooms", + "olive oil", + "low salt chicken broth", + "shallots", + "boneless skinless chicken breast halves", + "marsala wine", + "whipping cream" + ] + }, + { + "id": 32330, + "cuisine": "british", + "ingredients": [ + "vanilla", + "powdered sugar", + "sour cream", + "heavy cream", + "cream cheese" + ] + }, + { + "id": 31736, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "all-purpose flour", + "fryer chickens", + "garlic powder", + "salt", + "vegetable oil", + "poultry seasoning" + ] + }, + { + "id": 799, + "cuisine": "southern_us", + "ingredients": [ + "ground red pepper", + "whipping cream", + "baking soda", + "butter", + "all-purpose flour", + "large eggs", + "buttermilk", + "white cornmeal", + "sugar", + "chopped fresh thyme", + "salt" + ] + }, + { + "id": 38930, + "cuisine": "italian", + "ingredients": [ + "solid pack pumpkin", + "1% low-fat milk", + "polenta", + "parmesan cheese", + "cream cheese", + "water", + "salt", + "fresh parmesan cheese", + "chopped fresh sage" + ] + }, + { + "id": 41655, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "boneless skinless chicken breasts", + "scallions", + "low sodium soy sauce", + "hoisin sauce", + "thai chile", + "white sesame seeds", + "tomato paste", + "honey", + "chili oil", + "corn starch", + "minced garlic", + "low sodium chicken broth", + "rice vinegar" + ] + }, + { + "id": 48622, + "cuisine": "french", + "ingredients": [ + "spinach", + "bay leaves", + "salt", + "small red potato", + "thyme sprigs", + "black peppercorns", + "roasted red peppers", + "basil", + "garlic cloves", + "flat leaf parsley", + "pepper", + "dry white wine", + "boiling onions", + "low salt chicken broth", + "brussels sprouts", + "olive oil", + "chicken breast halves", + "baby carrots", + "tarragon" + ] + }, + { + "id": 25479, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "chiles", + "coriander seeds", + "boneless skinless chicken breasts", + "garlic", + "cumin seed", + "ground turmeric", + "store bought low sodium chicken broth", + "chili pepper", + "tamarind pulp", + "cinnamon", + "cardamom pods", + "bay leaf", + "tomatoes", + "kosher salt", + "ground black pepper", + "vegetable oil", + "fenugreek seeds", + "ground chile", + "fennel seeds", + "cooked rice", + "coconut", + "yoghurt", + "star anise", + "okra", + "onions" + ] + }, + { + "id": 41193, + "cuisine": "mexican", + "ingredients": [ + "water", + "tomatillos", + "sugar", + "olive oil", + "low salt chicken broth", + "chiles", + "fresh cilantro", + "garlic cloves", + "white onion", + "asadero", + "corn tortillas" + ] + }, + { + "id": 10376, + "cuisine": "mexican", + "ingredients": [ + "pasta", + "ground black pepper", + "raisins", + "garlic cloves", + "green olives", + "ground sirloin", + "salt", + "dried oregano", + "olive oil", + "chili powder", + "cayenne pepper", + "ground cumin", + "tomato paste", + "large eggs", + "diced tomatoes", + "onions" + ] + }, + { + "id": 40822, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "shrimp", + "chopped cilantro fresh", + "salt", + "fresh lime juice", + "garlic", + "tequila", + "cayenne pepper", + "bamboo shoots" + ] + }, + { + "id": 11682, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "red chili peppers", + "light soy sauce", + "szechwan peppercorns", + "greens", + "sugar", + "water", + "fresh ginger root", + "chili bean sauce", + "clove", + "baby bok choy", + "broccolini", + "beef shank", + "noodles", + "chinese rice wine", + "fresh leav spinach", + "vegetables", + "garlic", + "plum tomatoes" + ] + }, + { + "id": 38179, + "cuisine": "thai", + "ingredients": [ + "sweet chili sauce", + "cilantro leaves", + "coconut milk", + "fish sauce", + "thai basil", + "oil", + "long beans", + "minced ginger", + "red curry paste", + "fresh lime juice", + "sugar", + "large eggs", + "shrimp" + ] + }, + { + "id": 35308, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "baking powder", + "all-purpose flour", + "powdered sugar", + "large eggs", + "poppy seeds", + "granulated sugar", + "butter", + "grated lemon zest", + "1% low-fat buttermilk", + "cooking spray", + "salt" + ] + }, + { + "id": 16068, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "garlic cloves", + "unsalted butter", + "crushed red pepper", + "fresh parsley", + "linguine", + "fresh lemon juice", + "lemon zest", + "salt", + "large shrimp" + ] + }, + { + "id": 47973, + "cuisine": "indian", + "ingredients": [ + "salt", + "nonfat sweetened condensed milk", + "basmati rice", + "whole milk", + "mango", + "ground cardamom" + ] + }, + { + "id": 20714, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "buttermilk", + "baking powder", + "all-purpose flour", + "baking soda", + "salt", + "butter", + "lard" + ] + }, + { + "id": 46716, + "cuisine": "chinese", + "ingredients": [ + "long-grain rice", + "cold water" + ] + }, + { + "id": 27506, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil cooking spray", + "large eggs", + "vanilla extract", + "corn starch", + "milk", + "baking powder", + "all-purpose flour", + "sugar", + "half & half", + "salt", + "evaporated milk", + "butter", + "fresh lemon juice" + ] + }, + { + "id": 22478, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "cooking spray", + "garlic cloves", + "palm sugar", + "cilantro leaves", + "tiger prawn", + "coconut", + "rice vermicelli", + "fresh lime juice", + "fish sauce", + "mint leaves", + "salted dry roasted peanuts", + "sliced green onions" + ] + }, + { + "id": 32154, + "cuisine": "mexican", + "ingredients": [ + "lime", + "2% reduced-fat milk", + "tequila", + "chopped garlic", + "avocado", + "ground black pepper", + "mahimahi", + "fresh lime juice", + "ground cumin", + "lime zest", + "honey", + "reduced-fat sour cream", + "corn tortillas", + "canola oil", + "kosher salt", + "red cabbage", + "rice vinegar", + "chopped cilantro fresh" + ] + }, + { + "id": 28673, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "cooking oil", + "ground coriander", + "ground turmeric", + "minced garlic", + "fresh ginger root", + "cayenne pepper", + "boneless skinless chicken breast halves", + "plain yogurt", + "crushed tomatoes", + "salt", + "fresh lemon juice", + "ground cumin", + "water", + "garam masala", + "chopped onion", + "chopped cilantro fresh" + ] + }, + { + "id": 17123, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "avocado", + "chopped cilantro fresh", + "salt", + "chile pepper" + ] + }, + { + "id": 3831, + "cuisine": "italian", + "ingredients": [ + "parsley", + "boneless chicken breast", + "penne pasta", + "buffalo sauce", + "blue cheese dressing" + ] + }, + { + "id": 22893, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "bay leaf", + "olive oil", + "garlic cloves", + "fresh basil leaves", + "kosher salt", + "zucchini", + "onions", + "eggplant", + "red bell pepper", + "plum tomatoes" + ] + }, + { + "id": 40693, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "garlic cloves", + "lime", + "green onions", + "chopped cilantro fresh", + "corn", + "quinoa", + "red bell pepper", + "cherry tomatoes", + "salt", + "cumin" + ] + }, + { + "id": 2069, + "cuisine": "japanese", + "ingredients": [ + "tomatoes", + "sugar", + "whole wheat flour", + "bay leaves", + "salt", + "brown cardamom", + "oil", + "onions", + "ground cumin", + "tea bags", + "water", + "coriander seeds", + "seeds", + "all-purpose flour", + "curds", + "cinnamon sticks", + "boiling potatoes", + "clove", + "asafoetida", + "amchur", + "baking soda", + "chili powder", + "chickpeas", + "cumin seed", + "nigella seeds", + "ginger paste", + "black peppercorns", + "red chili peppers", + "mace", + "baking powder", + "cilantro leaves", + "green chilies", + "lemon juice", + "chaat masala" + ] + }, + { + "id": 28853, + "cuisine": "indian", + "ingredients": [ + "cooked chicken", + "frozen peas", + "chillies", + "basmati rice", + "fresh lemon juice", + "cashew nuts", + "curry paste" + ] + }, + { + "id": 39661, + "cuisine": "french", + "ingredients": [ + "chicken breast halves", + "ground black pepper", + "yellow bell pepper", + "dried basil", + "diced tomatoes", + "cannellini beans", + "salt" + ] + }, + { + "id": 37992, + "cuisine": "italian", + "ingredients": [ + "pepper", + "roasted red peppers", + "shredded mozzarella cheese", + "capers", + "chopped tomatoes", + "grated parmesan cheese", + "italian seasoning", + "bread", + "milk", + "large eggs", + "chopped parsley", + "pitted black olives", + "prosciutto", + "salt", + "sliced green onions" + ] + }, + { + "id": 24443, + "cuisine": "italian", + "ingredients": [ + "parsley sprigs", + "part-skim mozzarella cheese", + "balsamic vinegar", + "flat leaf parsley", + "sliced green onions", + "cannelloni shells", + "roasted red peppers", + "butter cooking spray", + "plum tomatoes", + "dried basil", + "grated parmesan cheese", + "margarine", + "dried oregano", + "light alfredo sauce", + "dried thyme", + "shallots", + "garlic cloves", + "wild mushrooms" + ] + }, + { + "id": 2647, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "salsa", + "sweet potatoes", + "mexican chorizo", + "chicken broth", + "green onions", + "long grain white rice", + "olive oil", + "shredded cheese" + ] + }, + { + "id": 17623, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "basil", + "fresh mushrooms", + "italian seasoning", + "pepper", + "diced tomatoes", + "rice", + "oregano", + "cream of chicken soup", + "garlic", + "sour cream", + "chicken breasts", + "salt", + "onions" + ] + }, + { + "id": 44668, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "tomato sauce", + "sea salt", + "parmigiano reggiano cheese", + "olive oil", + "chees fresh mozzarella" + ] + }, + { + "id": 41111, + "cuisine": "japanese", + "ingredients": [ + "shiitake", + "sweet potatoes", + "freshly ground pepper", + "toasted nori", + "curly kale", + "cherries", + "togarashi", + "chillies", + "eggs", + "white miso", + "dates", + "oil", + "ground turmeric", + "minced ginger", + "tahini", + "tomato ketchup", + "onions" + ] + }, + { + "id": 12908, + "cuisine": "filipino", + "ingredients": [ + "minced garlic", + "rolls", + "lumpia skins", + "water chestnuts", + "oyster sauce", + "sliced green onions", + "ground black pepper", + "oil", + "ground beef", + "celery ribs", + "salt", + "carrots" + ] + }, + { + "id": 12351, + "cuisine": "cajun_creole", + "ingredients": [ + "minced onion", + "butter", + "saltine crumbs", + "milk", + "ground red pepper", + "salt", + "large eggs", + "worcestershire sauce", + "cooked shrimp", + "ground black pepper", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 15380, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "green onions", + "salt", + "cabbage", + "chili flakes", + "hoisin sauce", + "red capsicum", + "onions", + "olive oil", + "capsicum", + "chili sauce", + "soy sauce", + "shredded carrots", + "sprouts", + "noodles" + ] + }, + { + "id": 25805, + "cuisine": "filipino", + "ingredients": [ + "liquid smoke", + "honey", + "cilantro", + "soy sauce", + "jalapeno chilies", + "pork shoulder", + "ground ginger", + "hoisin sauce", + "garlic cloves", + "lime", + "hard-boiled egg", + "onions" + ] + }, + { + "id": 19883, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "buttermilk", + "sharp cheddar cheese", + "granulated sugar", + "all-purpose flour", + "unsalted butter", + "salt", + "fresh parsley", + "garlic powder", + "baking powder", + "cayenne pepper" + ] + }, + { + "id": 45529, + "cuisine": "japanese", + "ingredients": [ + "minced garlic", + "ginger", + "canola oil", + "sugar", + "napa cabbage", + "scallions", + "miso paste", + "salt", + "pepper", + "ground pork", + "carrots" + ] + }, + { + "id": 39549, + "cuisine": "southern_us", + "ingredients": [ + "boneless chicken skinless thigh", + "frozen whole kernel corn", + "salt", + "garlic cloves", + "fat free less sodium chicken broth", + "cooking spray", + "yellow onion", + "Italian bread", + "baby lima beans", + "hot pepper sauce", + "all-purpose flour", + "red bell pepper", + "tomato paste", + "dried thyme", + "chopped celery", + "peanut oil" + ] + }, + { + "id": 8015, + "cuisine": "brazilian", + "ingredients": [ + "cachaca", + "pineapple juice", + "lemon lime beverage" + ] + }, + { + "id": 12112, + "cuisine": "moroccan", + "ingredients": [ + "coriander seeds", + "ground cumin", + "cayenne", + "quinoa", + "tumeric", + "salt" + ] + }, + { + "id": 40335, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "egg noodles", + "salt", + "beansprouts", + "soy sauce", + "sesame oil", + "oil", + "pork", + "vinegar", + "chili sauce", + "white pepper", + "garlic", + "oyster sauce" + ] + }, + { + "id": 19648, + "cuisine": "greek", + "ingredients": [ + "pepper", + "button mushrooms", + "chickpeas", + "eggs", + "vegetable stock", + "greek style plain yogurt", + "onions", + "olive oil", + "cheese", + "brown lentils", + "tomato paste", + "zucchini", + "salt", + "herbes de provence" + ] + }, + { + "id": 13007, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "extra-virgin olive oil", + "baguette", + "sea salt", + "tomatoes", + "butter", + "garlic", + "basil leaves", + "cracked black pepper" + ] + }, + { + "id": 13436, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "heavy cream", + "green onions", + "freshly ground pepper", + "lager", + "salt", + "yukon gold potatoes" + ] + }, + { + "id": 1954, + "cuisine": "jamaican", + "ingredients": [ + "ground cloves", + "ground black pepper", + "rum", + "white wine vinegar", + "long-grain rice", + "chicken stock", + "honey", + "fresh thyme", + "extra-virgin olive oil", + "ground allspice", + "black beans", + "fresh bay leaves", + "chicken breasts", + "salt", + "cinnamon sticks", + "fresh rosemary", + "ground nutmeg", + "serrano peppers", + "garlic", + "scallions" + ] + }, + { + "id": 12352, + "cuisine": "thai", + "ingredients": [ + "ground ginger", + "lime juice", + "boneless skinless chicken breasts", + "scallions", + "sugar", + "cooking oil", + "garlic", + "canned low sodium chicken broth", + "peanuts", + "red pepper flakes", + "spaghetti", + "soy sauce", + "chunky peanut butter", + "salt" + ] + }, + { + "id": 7950, + "cuisine": "korean", + "ingredients": [ + "large egg whites", + "brown rice", + "all-purpose flour", + "large eggs", + "top sirloin steak", + "garlic cloves", + "low sodium soy sauce", + "green onions", + "rice vinegar", + "canola oil", + "sesame seeds", + "sesame oil", + "dark sesame oil" + ] + }, + { + "id": 40721, + "cuisine": "mexican", + "ingredients": [ + "butter", + "pinto beans", + "tomato sauce", + "shredded cheese", + "taco seasoning", + "flour tortillas", + "enchilada sauce" + ] + }, + { + "id": 42894, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "sour cream", + "coconut", + "yellow cake mix", + "whipped topping" + ] + }, + { + "id": 37700, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "chopped fresh thyme", + "purple onion", + "sourdough baguette", + "saffron threads", + "vegetable oil", + "diced tomatoes", + "clams, well scrub", + "orange zest", + "red potato", + "clam juice", + "extra-virgin olive oil", + "smoked paprika", + "sherry", + "large garlic cloves", + "salt", + "chorizo sausage" + ] + }, + { + "id": 2911, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "onions", + "green chile", + "salt", + "dried oregano", + "orange", + "pork roast", + "ground cumin", + "lime", + "garlic cloves" + ] + }, + { + "id": 3232, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "salsa", + "biscuits", + "meat", + "iceberg lettuce", + "refried beans", + "sour cream", + "pico de gallo", + "cilantro" + ] + }, + { + "id": 23593, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "garlic powder", + "diced tomatoes", + "rice", + "polish sausage", + "breasts halves", + "cayenne pepper", + "shrimp", + "white pepper", + "hot pepper sauce", + "chopped celery", + "garlic cloves", + "pepper", + "butter", + "green pepper", + "onions" + ] + }, + { + "id": 20251, + "cuisine": "italian", + "ingredients": [ + "shrimp tails", + "bay scallops", + "lemon", + "flat leaf parsley", + "olive oil", + "dry white wine", + "sea salt", + "lump crab meat", + "grated parmesan cheese", + "fish stock", + "arborio rice", + "asparagus", + "shallots", + "garlic" + ] + }, + { + "id": 532, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "sea salt", + "cooking oil", + "fish" + ] + }, + { + "id": 3498, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "black pepper", + "large garlic cloves", + "large shrimp", + "hot red pepper flakes", + "dry white wine", + "flat leaf parsley", + "unsalted butter", + "capellini" + ] + }, + { + "id": 10680, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "garlic", + "fillets", + "tomatoes", + "cooking oil", + "green chilies", + "ground turmeric", + "fresh ginger root", + "salt", + "onions", + "mild curry paste", + "chili powder", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 37622, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "water", + "chicken pieces", + "celery ribs", + "green bell pepper", + "vegetable oil", + "long grain white rice", + "scallion greens", + "andouille sausage", + "large garlic cloves", + "tomatoes", + "cayenne", + "onions" + ] + }, + { + "id": 32221, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "grated parmesan cheese", + "oven-ready lasagna noodles", + "fresh basil", + "part-skim mozzarella cheese", + "part-skim ricotta cheese", + "frozen chopped spinach", + "artichoke hearts", + "cooking spray", + "pasta sauce", + "large eggs", + "provolone cheese" + ] + }, + { + "id": 10533, + "cuisine": "british", + "ingredients": [ + "cheddar cheese", + "beer", + "mustard", + "butter", + "bread", + "black pepper", + "plain flour", + "salt" + ] + }, + { + "id": 3791, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "coriander powder", + "salt", + "cumin seed", + "chopped tomatoes", + "yoghurt", + "brown cardamom", + "ground turmeric", + "water", + "finely chopped onion", + "cilantro leaves", + "cinnamon sticks", + "clove", + "garam masala", + "chili powder", + "green chilies", + "baby potatoes" + ] + }, + { + "id": 28474, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "grating cheese", + "fritos", + "onions", + "green chile", + "sliced black olives", + "stewed tomatoes", + "ground turkey", + "tomatoes", + "kidney beans", + "diced tomatoes", + "sour cream", + "white corn", + "ranch salad dressing mix", + "pinto beans", + "ground beef" + ] + }, + { + "id": 22085, + "cuisine": "japanese", + "ingredients": [ + "Sriracha", + "soba noodles", + "avocado", + "tamari soy sauce", + "cucumber", + "sesame seeds", + "rice vinegar", + "toasted sesame oil", + "tofu", + "ponzu", + "scallions" + ] + }, + { + "id": 11667, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "whipping cream", + "chicken stock", + "veal", + "crumbled gorgonzola", + "olive oil", + "all-purpose flour", + "tomato paste", + "beef stock", + "plum tomatoes" + ] + }, + { + "id": 42120, + "cuisine": "french", + "ingredients": [ + "milk", + "coffee" + ] + }, + { + "id": 11620, + "cuisine": "british", + "ingredients": [ + "bread crumbs", + "cayenne pepper", + "eggs", + "chopped fresh chives", + "cheddar cheese", + "chives", + "half & half" + ] + }, + { + "id": 23652, + "cuisine": "italian", + "ingredients": [ + "chard", + "olive oil", + "grated Gruyère cheese", + "white onion", + "basil", + "thyme", + "pepper", + "salt", + "chopped parsley", + "eggs", + "freshly grated parmesan", + "garlic cloves" + ] + }, + { + "id": 47463, + "cuisine": "indian", + "ingredients": [ + "water", + "tortillas", + "salt", + "onions", + "fresh ginger", + "jalapeno chilies", + "ground coriander", + "curry powder", + "extra firm tofu", + "cayenne pepper", + "ground cumin", + "tomatoes", + "gold potatoes", + "green peas", + "lemon juice" + ] + }, + { + "id": 17349, + "cuisine": "mexican", + "ingredients": [ + "pomegranate seeds", + "crushed ice", + "pomegranate juice", + "lime wedges", + "orange liqueur", + "lime juice", + "coarse salt", + "lime slices", + "tequila" + ] + }, + { + "id": 46012, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "caesar salad dressing", + "frozen chopped spinach", + "butter", + "croutons", + "bacon bits", + "quickcooking grits", + "freshly ground pepper", + "parmesan cheese", + "purple onion", + "garlic salt" + ] + }, + { + "id": 32613, + "cuisine": "british", + "ingredients": [ + "pure vanilla extract", + "heavy cream", + "powdered sugar", + "white sugar", + "cream of tartar", + "strawberries", + "egg whites" + ] + }, + { + "id": 37665, + "cuisine": "french", + "ingredients": [ + "grated orange peel", + "coriander seeds", + "salt", + "chicken stock", + "honey", + "red wine vinegar", + "Belgian endive", + "sugar", + "unsalted butter", + "duck breasts", + "olive oil", + "fresh orange juice" + ] + }, + { + "id": 34061, + "cuisine": "cajun_creole", + "ingredients": [ + "Louisiana Hot Sauce", + "jalapeno chilies", + "smoked sausage", + "thyme", + "olive oil", + "peas", + "salt pork", + "dried parsley", + "black pepper", + "red pepper", + "salt", + "onions", + "bell pepper", + "garlic", + "rice", + "oregano" + ] + }, + { + "id": 45060, + "cuisine": "french", + "ingredients": [ + "mayonaise", + "lemon juice", + "water", + "garlic cloves", + "pepper", + "saffron" + ] + }, + { + "id": 20429, + "cuisine": "italian", + "ingredients": [ + "panko", + "salt", + "plum tomatoes", + "pesto", + "grated parmesan cheese", + "fresh lemon juice", + "ground black pepper", + "goat cheese", + "minced garlic", + "butter", + "fresh parsley" + ] + }, + { + "id": 23154, + "cuisine": "british", + "ingredients": [ + "tomato paste", + "rosemary", + "worcestershire sauce", + "beer", + "sage", + "kosher salt", + "mushrooms", + "all-purpose flour", + "steak", + "pancetta", + "water", + "large garlic cloves", + "beef broth", + "onions", + "sugar", + "frozen pastry puff sheets", + "cracked black pepper", + "corn starch", + "canola oil" + ] + }, + { + "id": 33882, + "cuisine": "spanish", + "ingredients": [ + "white bread", + "capers", + "milk", + "unsalted butter", + "red pepper flakes", + "ground white pepper", + "chicken broth", + "warm water", + "sherry vinegar", + "shallots", + "coarse-grain salt", + "toasted almonds", + "saffron threads", + "tomatoes", + "pepper", + "ground black pepper", + "coarse salt", + "garlic cloves", + "hungarian sweet paprika", + "roasted hazelnuts", + "olive oil", + "leeks", + "extra-virgin olive oil", + "country bread" + ] + }, + { + "id": 30942, + "cuisine": "thai", + "ingredients": [ + "water", + "ground black pepper", + "salt", + "coconut milk", + "green bell pepper", + "fresh cilantro", + "white rice", + "cardamom pods", + "tomatoes", + "curry powder", + "seafood stock", + "hot sauce", + "onions", + "coconut oil", + "fresh ginger", + "garlic", + "shrimp" + ] + }, + { + "id": 47240, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "pinto beans", + "salt", + "water", + "onions", + "beans", + "meat bones" + ] + }, + { + "id": 35362, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "fresh cilantro", + "salt", + "chiles", + "low sodium chicken broth", + "long grain white rice", + "tomatoes", + "lime", + "garlic cloves", + "white onion", + "vegetable oil" + ] + }, + { + "id": 44923, + "cuisine": "japanese", + "ingredients": [ + "liquid smoke", + "nori flakes", + "vegetable broth", + "nutritional yeast", + "vegetable oil", + "all-purpose flour", + "tapioca flour", + "green onions", + "tamari soy sauce", + "Sriracha", + "napa cabbage", + "vegan mayonnaise" + ] + }, + { + "id": 37374, + "cuisine": "mexican", + "ingredients": [ + "condensed fiesta nacho cheese soup", + "ground beef", + "water", + "whole kernel corn, drain", + "frozen tater tots", + "taco seasoning", + "chopped onion" + ] + }, + { + "id": 29616, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "finely chopped onion", + "chickpeas", + "olive oil", + "diced tomatoes", + "dried rosemary", + "water", + "balsamic vinegar", + "garlic cloves", + "fresh parmesan cheese", + "salt" + ] + }, + { + "id": 33919, + "cuisine": "thai", + "ingredients": [ + "coconut oil", + "beef brisket", + "cilantro", + "baby carrots", + "fish sauce", + "herbs", + "basil", + "yellow curry paste", + "mint", + "ground black pepper", + "frozen vegetables", + "apple juice", + "onions", + "kosher salt", + "sweet potatoes", + "coconut aminos", + "coconut milk" + ] + }, + { + "id": 16749, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "water", + "chopped onion", + "fat free less sodium chicken broth", + "cooking spray", + "flat leaf parsley", + "black pepper", + "olive oil", + "sliced mushrooms", + "pinenuts", + "salt", + "white cornmeal" + ] + }, + { + "id": 37919, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "green onions", + "eggs", + "tortillas", + "sour cream", + "avocado", + "jack", + "cilantro", + "sausage casings", + "jalapeno chilies" + ] + }, + { + "id": 8186, + "cuisine": "mexican", + "ingredients": [ + "condensed cream of chicken soup", + "cooked chicken", + "corn tortillas", + "lettuce", + "Progresso Black Beans", + "green enchilada sauce", + "tomatoes", + "Mexican cheese blend", + "sour cream", + "mayonaise", + "Old El Paso™ chopped green chiles" + ] + }, + { + "id": 19480, + "cuisine": "indian", + "ingredients": [ + "ice cubes", + "nonfat yogurt", + "green cardamom pods", + "mango", + "sugar" + ] + }, + { + "id": 18590, + "cuisine": "thai", + "ingredients": [ + "water", + "purple onion", + "chopped fresh mint", + "crushed red pepper", + "fresh lime juice", + "lime wedges", + "Thai fish sauce", + "ground chicken breast", + "chinese cabbage", + "chopped cilantro fresh" + ] + }, + { + "id": 17371, + "cuisine": "cajun_creole", + "ingredients": [ + "whitefish", + "Tabasco Pepper Sauce", + "garlic cloves", + "cayenne", + "lemon", + "ground black pepper", + "butter", + "fresh thyme", + "sweet paprika" + ] + }, + { + "id": 13833, + "cuisine": "indian", + "ingredients": [ + "water", + "coconut milk", + "butter beans", + "pepper", + "salt", + "chopped cilantro fresh", + "frozen spinach", + "vegetable oil", + "onions", + "pumpkin", + "curry paste" + ] + }, + { + "id": 39178, + "cuisine": "italian", + "ingredients": [ + "vanilla extract", + "white sugar", + "egg whites", + "all-purpose flour", + "sugar", + "salt", + "egg yolks", + "confectioners sugar" + ] + }, + { + "id": 18893, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "rosemary leaves", + "ground black pepper", + "water", + "chickpeas", + "extra-virgin olive oil" + ] + }, + { + "id": 12273, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "flour", + "yellow corn meal", + "baking soda", + "baking powder", + "kosher salt", + "yolk", + "eggs", + "unsalted butter", + "buttermilk" + ] + }, + { + "id": 19316, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "Country Crock® Spread", + "queso fresco", + "flour tortillas", + "sliced green onions", + "hellmann' or best food real mayonnais" + ] + }, + { + "id": 3410, + "cuisine": "filipino", + "ingredients": [ + "ampalaya", + "water", + "oil", + "chicken feet", + "garlic", + "fish sauce", + "ginger", + "onions", + "pepper", + "salt" + ] + }, + { + "id": 13112, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "large eggs", + "salt", + "flat leaf parsley", + "ground black pepper", + "baking potatoes", + "garlic cloves", + "ground cumin", + "tomato sauce", + "cooking spray", + "chopped onion", + "ground lamb", + "chopped green bell pepper", + "1% low-fat milk", + "red bell pepper" + ] + }, + { + "id": 43801, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "tomatillos", + "minced onion", + "garlic cloves", + "salt and ground black pepper", + "cactus leaf", + "tomatoes", + "jalapeno chilies", + "fresh lime juice" + ] + }, + { + "id": 46270, + "cuisine": "mexican", + "ingredients": [ + "water", + "salsa", + "white rice", + "minced garlic" + ] + }, + { + "id": 49153, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "chipotles in adobo", + "white bread", + "chipotle peppers", + "chili seasoning mix", + "beer", + "ground beef", + "cheese", + "adobo sauce" + ] + }, + { + "id": 30658, + "cuisine": "french", + "ingredients": [ + "blood orange", + "lemon juice", + "egg yolks", + "sugar", + "gran marnier", + "pistachios" + ] + }, + { + "id": 25105, + "cuisine": "greek", + "ingredients": [ + "unsalted butter", + "kalamata", + "goat cheese", + "balsamic vinegar", + "extra-virgin olive oil", + "dijon mustard", + "phyllo", + "frisee", + "olive oil", + "red pepper", + "salt" + ] + }, + { + "id": 27103, + "cuisine": "mexican", + "ingredients": [ + "mexican chorizo", + "canola oil", + "pinto beans", + "jack cheese" + ] + }, + { + "id": 19930, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "cream cheese", + "diced tomatoes", + "low sodium chicken broth", + "italian sausage", + "cheese tortellini" + ] + }, + { + "id": 49546, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "cornmeal", + "sugar", + "salt", + "eggs", + "vegetable oil", + "milk", + "all-purpose flour" + ] + }, + { + "id": 7178, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "reduced fat milk", + "vanilla extract", + "large egg whites", + "whole milk", + "all-purpose flour", + "large egg yolks", + "butter", + "Grand Marnier", + "sugar", + "cooking spray", + "salt" + ] + }, + { + "id": 31174, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "quickcooking grits", + "salt", + "lemon juice", + "milk", + "butter", + "baking mix", + "barbecue sauce", + "old bay seasoning", + "cream cheese", + "pepper", + "green onions", + "hot sauce", + "cooked shrimp" + ] + }, + { + "id": 11857, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "pimentos", + "flour tortillas", + "cream cheese", + "hot pepper sauce", + "black olives", + "green onions", + "chopped cilantro fresh" + ] + }, + { + "id": 27242, + "cuisine": "greek", + "ingredients": [ + "grape tomatoes", + "broccoli florets", + "Wish-Bone Italian Dressing", + "purple onion", + "baby spinach leaves", + "kalamata", + "feta cheese", + "chickpeas" + ] + }, + { + "id": 25415, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "seeds", + "lard", + "cumin", + "orange", + "ground black pepper", + "bacon fat", + "pork butt", + "garlic powder", + "salt", + "onions", + "lime", + "jalapeno chilies", + "garlic cloves", + "oregano" + ] + }, + { + "id": 14380, + "cuisine": "japanese", + "ingredients": [ + "unsalted butter", + "carrots", + "sugar", + "unsalted cashews", + "whole milk", + "saffron", + "almonds", + "green cardamom" + ] + }, + { + "id": 30634, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large eggs", + "heavy whipping cream", + "large egg yolks", + "salt", + "water", + "all purpose unbleached flour", + "grated lemon peel", + "unsalted butter", + "fresh lemon juice" + ] + }, + { + "id": 25795, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "scallions", + "garlic", + "pork loin chops", + "sesame oil", + "corn starch", + "sugar", + "peanut oil" + ] + }, + { + "id": 41670, + "cuisine": "italian", + "ingredients": [ + "red bell pepper, sliced", + "herbs", + "chicken thighs", + "crushed tomatoes", + "bay leaf", + "pepper", + "salt", + "dried oregano", + "green bell pepper, slice", + "onions" + ] + }, + { + "id": 3079, + "cuisine": "spanish", + "ingredients": [ + "pernod", + "whole milk", + "all-purpose flour", + "large egg yolks", + "whipped cream", + "corn starch", + "olive oil", + "lemon", + "fresh raspberries", + "sugar", + "large eggs", + "salt", + "cinnamon sticks" + ] + }, + { + "id": 2700, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "lime", + "red pepper flakes", + "garlic", + "red bell pepper", + "Mexican seasoning mix", + "orange bell pepper", + "cilantro", + "frozen corn", + "black beans", + "honey", + "grapeseed oil", + "purple onion", + "avocado", + "orange", + "lemon", + "yellow bell pepper", + "penne pasta" + ] + }, + { + "id": 23464, + "cuisine": "italian", + "ingredients": [ + "melted butter", + "grated parmesan cheese", + "chopped parsley", + "white wine", + "salt", + "ground pepper", + "garlic cloves", + "bread crumb fresh", + "butter", + "spaghetti" + ] + }, + { + "id": 4610, + "cuisine": "filipino", + "ingredients": [ + "garlic", + "sweet onion", + "low sodium soy sauce", + "chicken", + "vinegar" + ] + }, + { + "id": 43730, + "cuisine": "brazilian", + "ingredients": [ + "rum", + "brewed coffee", + "powdered sugar", + "alcohol", + "dark chocolate", + "ground almonds" + ] + }, + { + "id": 6703, + "cuisine": "spanish", + "ingredients": [ + "worcestershire sauce", + "chili sauce", + "olive oil", + "chopped celery", + "red bell pepper", + "oysters", + "paprika", + "carrots", + "ground red pepper", + "all-purpose flour", + "evaporated skim milk" + ] + }, + { + "id": 12312, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "purple onion", + "ground cumin", + "lettuce", + "boneless skinless chicken breasts", + "chopped cilantro fresh", + "knorr garlic minicub", + "hellmann' or best food real mayonnais", + "avocado", + "whole wheat tortillas", + "mango" + ] + }, + { + "id": 15129, + "cuisine": "cajun_creole", + "ingredients": [ + "top sirloin steak", + "corn starch", + "garlic powder", + "green pepper", + "dried thyme", + "salt", + "canola oil", + "pepper", + "stewed tomatoes", + "onions" + ] + }, + { + "id": 8984, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "salt", + "boneless pork shoulder", + "pepper", + "bay leaves", + "onions", + "chicken bouillon", + "chipotle", + "fresh oregano", + "clove", + "water", + "garlic", + "cumin" + ] + }, + { + "id": 9068, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "taco seasoning mix", + "lemon juice", + "corn tortilla chips", + "green onions", + "garlic salt", + "tomatoes", + "sliced black olives", + "sour cream", + "beans", + "cheese spread" + ] + }, + { + "id": 45482, + "cuisine": "mexican", + "ingredients": [ + "cream of tartar", + "large eggs", + "unsweetened cocoa powder", + "baking soda", + "cinnamon", + "sugar", + "coarse salt", + "chile powder", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 43820, + "cuisine": "indian", + "ingredients": [ + "melted butter", + "jalapeno chilies", + "lemon", + "thyme", + "ajwain", + "seeds", + "ground coriander", + "starchy potatoes", + "flour", + "salt", + "celery", + "whole wheat flour", + "vegetable oil", + "freshly ground pepper" + ] + }, + { + "id": 4960, + "cuisine": "brazilian", + "ingredients": [ + "bananas", + "all-purpose flour", + "ground cinnamon", + "egg yolks", + "white sugar", + "egg whites", + "margarine", + "milk", + "baking powder" + ] + }, + { + "id": 27109, + "cuisine": "thai", + "ingredients": [ + "dry white wine", + "chopped cilantro fresh", + "mussels", + "fresh lime juice", + "unsweetened coconut milk", + "Thai red curry paste", + "asian fish sauce", + "minced garlic", + "white sugar" + ] + }, + { + "id": 41170, + "cuisine": "korean", + "ingredients": [ + "sugar", + "sea salt", + "flat cut", + "shrimp", + "radishes", + "apples", + "scallions", + "anchovies", + "ginger", + "rice", + "onions", + "Korean chile flakes", + "napa cabbage", + "garlic", + "carrots" + ] + }, + { + "id": 49443, + "cuisine": "mexican", + "ingredients": [ + "Splenda Brown Sugar Blend", + "tomato sauce", + "chili powder", + "corn starch", + "white vinegar", + "green bell pepper", + "jalapeno chilies", + "banana peppers", + "italian seasoning", + "tomato paste", + "water", + "diced tomatoes", + "red bell pepper", + "tomatoes", + "Anaheim chile", + "salt", + "onions" + ] + }, + { + "id": 20698, + "cuisine": "greek", + "ingredients": [ + "vanilla extract", + "almond extract", + "confectioners sugar", + "eggs", + "all-purpose flour", + "butter", + "white sugar" + ] + }, + { + "id": 26635, + "cuisine": "italian", + "ingredients": [ + "granulated sugar", + "cake flour", + "warm water", + "heavy cream", + "bittersweet chocolate", + "large eggs", + "confectioners sugar", + "hazelnuts", + "vanilla", + "liqueur" + ] + }, + { + "id": 31912, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "vegetable broth", + "aged balsamic vinegar", + "grated parmesan cheese", + "parsnips", + "chopped onion", + "arborio rice", + "butter" + ] + }, + { + "id": 14490, + "cuisine": "chinese", + "ingredients": [ + "fish sauce", + "lettuce leaves", + "beansprouts", + "sliced green onions", + "water", + "cilantro leaves", + "chopped fresh mint", + "bean threads", + "shredded carrots", + "garlic cloves", + "rice paper", + "sugar", + "thai chile", + "fresh lime juice" + ] + }, + { + "id": 36189, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "cream cheese", + "refrigerated crescent rolls", + "white sugar", + "honey", + "Mexican vanilla extract", + "butter" + ] + }, + { + "id": 43886, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "oyster sauce", + "dark soy sauce", + "beef", + "cornflour", + "light soy sauce", + "ginger", + "corn flour", + "chinese rice wine", + "spring onions", + "oil" + ] + }, + { + "id": 36648, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "flank steak", + "purple onion", + "Thai fish sauce", + "olive oil", + "kirby cucumbers", + "dried rice noodles", + "fresh basil leaves", + "soy sauce", + "jalapeno chilies", + "ginger", + "freshly ground pepper", + "lime juice", + "sesame oil", + "cilantro leaves", + "beansprouts" + ] + }, + { + "id": 39453, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cayenne", + "diced tomatoes", + "frozen corn kernels", + "low sodium vegetable broth", + "brown rice", + "salt", + "chopped cilantro fresh", + "shredded cheddar cheese", + "jalapeno chilies", + "purple onion", + "smoked paprika", + "tomato paste", + "olive oil", + "cinnamon", + "green pepper", + "ground cumin" + ] + }, + { + "id": 30176, + "cuisine": "italian", + "ingredients": [ + "limoncello", + "extra-virgin olive oil", + "flat leaf parsley", + "lemon zest", + "garlic cloves", + "ground black pepper", + "salt", + "large shrimp", + "baguette", + "shallots", + "fresh lemon juice" + ] + }, + { + "id": 29015, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "red pepper", + "scallions", + "sugar", + "lettuce leaves", + "sauce", + "cooked white rice", + "prime rib", + "coarse salt", + "Gochujang base", + "ground black pepper", + "garlic", + "toasted sesame oil" + ] + }, + { + "id": 35808, + "cuisine": "french", + "ingredients": [ + "brown sugar", + "vanilla beans" + ] + }, + { + "id": 22248, + "cuisine": "thai", + "ingredients": [ + "bean threads", + "green onions", + "purple onion", + "chopped cilantro fresh", + "sugar", + "yellow bell pepper", + "liquid", + "rocket leaves", + "chicken breasts", + "salt", + "asian fish sauce", + "lime juice", + "garlic", + "shrimp" + ] + }, + { + "id": 4187, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "vanilla extract", + "pecan halves", + "light corn syrup", + "dark brown sugar", + "pastry shell", + "salt", + "unsalted butter", + "whipping cream", + "chopped pecans" + ] + }, + { + "id": 6798, + "cuisine": "vietnamese", + "ingredients": [ + "mayonaise", + "jalapeno chilies", + "ground pork", + "garlic cloves", + "fresh basil", + "baguette", + "sesame oil", + "rice vinegar", + "corn starch", + "sugar", + "green onions", + "cilantro sprigs", + "carrots", + "fish sauce", + "ground black pepper", + "daikon", + "hot chili sauce", + "coarse kosher salt" + ] + }, + { + "id": 27805, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "garam masala", + "paprika", + "cardamom pods", + "garlic cloves", + "ground cumin", + "fresh coriander", + "red pepper", + "passata", + "cumin seed", + "onions", + "baby spinach leaves", + "boneless skinless chicken breasts", + "ginger", + "ground coriander", + "cinnamon sticks", + "tomatoes", + "lime juice", + "hot chili powder", + "green chilies", + "oil", + "basmati rice" + ] + }, + { + "id": 26004, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "ground pork", + "bitter melon", + "ground black pepper", + "soy sauce", + "green onions", + "fish sauce", + "garlic powder" + ] + }, + { + "id": 26087, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "golden beets", + "kosher salt", + "pizza doughs", + "shallots", + "honey", + "feta cheese crumbles" + ] + }, + { + "id": 29172, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "coriander powder", + "salt", + "oil", + "tomatoes", + "sugar", + "green peas", + "curds", + "ground turmeric", + "clove", + "garlic paste", + "cinnamon", + "cilantro leaves", + "onions", + "fenugreek leaves", + "garam masala", + "paneer", + "cumin seed", + "ground cumin" + ] + }, + { + "id": 39981, + "cuisine": "italian", + "ingredients": [ + "Italian parsley leaves", + "garlic cloves", + "yukon gold potatoes", + "extra-virgin olive oil", + "oregano", + "kalamata", + "black cod", + "lemon", + "fine sea salt" + ] + }, + { + "id": 12061, + "cuisine": "russian", + "ingredients": [ + "warm water", + "salt", + "flour", + "oil", + "active dry yeast", + "all-purpose flour", + "sugar", + "apples", + "canola oil" + ] + }, + { + "id": 42353, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "light mayonnaise", + "sour cream", + "water", + "green chilies", + "onions", + "cheddar cheese", + "lean ground beef", + "biscuit mix", + "roma tomatoes", + "taco seasoning" + ] + }, + { + "id": 8506, + "cuisine": "french", + "ingredients": [ + "brandy", + "butter", + "whipped topping", + "powdered sugar", + "cooking spray", + "salt", + "bartlett pears", + "brown sugar", + "golden raisins", + "all-purpose flour", + "dried cranberries", + "granulated sugar", + "ice water", + "corn starch" + ] + }, + { + "id": 9780, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "salt", + "chili powder", + "canola oil", + "garlic", + "tamarind extract", + "onions" + ] + }, + { + "id": 41171, + "cuisine": "italian", + "ingredients": [ + "green cabbage", + "parmesan cheese", + "dry white wine", + "carrots", + "reduced sodium chicken broth", + "zucchini", + "salt", + "olive oil", + "cannellini beans", + "chickpeas", + "tomatoes", + "swiss chard", + "garlic" + ] + }, + { + "id": 28297, + "cuisine": "mexican", + "ingredients": [ + "whole milk", + "granulated sugar", + "sweetened condensed milk", + "large eggs", + "vanilla extract" + ] + }, + { + "id": 24636, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "bacon slices", + "chicken broth", + "sweet onion", + "garlic cloves", + "pepper", + "salt", + "collard greens", + "apple cider vinegar", + "ham" + ] + }, + { + "id": 34554, + "cuisine": "mexican", + "ingredients": [ + "ground beef", + "purple onion", + "avocado", + "chopped cilantro fresh", + "Knorr® Beef Bouillon" + ] + }, + { + "id": 11492, + "cuisine": "southern_us", + "ingredients": [ + "chicken", + "shichimi togarashi", + "rice bran oil" + ] + }, + { + "id": 44925, + "cuisine": "italian", + "ingredients": [ + "cavolo nero", + "crushed red pepper flakes", + "purple onion", + "celery ribs", + "winter squash", + "garlic", + "white beans", + "crushed tomatoes", + "extra-virgin olive oil", + "salt", + "bread", + "lemon", + "black olives", + "carrots" + ] + }, + { + "id": 16687, + "cuisine": "italian", + "ingredients": [ + "sea salt", + "cracked black pepper", + "fresh basil", + "crushed red pepper", + "olive oil" + ] + }, + { + "id": 17466, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "purple onion", + "green bell pepper", + "red bell pepper", + "fresh rosemary", + "thin pizza crust", + "olive oil", + "wild mushrooms" + ] + }, + { + "id": 26477, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "dried apricot", + "apricot preserves", + "chicken breast tenders", + "balsamic vinegar", + "fat free less sodium chicken broth", + "cooking spray", + "couscous", + "olive oil", + "salt" + ] + }, + { + "id": 4194, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "Italian parsley leaves", + "grated parmesan cheese", + "toasted pine nuts", + "olive oil", + "garlic cloves", + "pasta", + "fresh thyme leaves" + ] + }, + { + "id": 15977, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "granulated sugar", + "salt", + "kahlua", + "instant espresso powder", + "heavy cream", + "OREO® Cookies", + "large egg yolks", + "large eggs", + "corn starch", + "dark chocolate", + "unsalted butter", + "vanilla extract", + "unsweetened cocoa powder" + ] + }, + { + "id": 12656, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "fresh thyme", + "cajun seasoning", + "garlic cloves", + "bay leaf", + "tomato paste", + "olive oil", + "boneless skinless chicken breasts", + "diced tomatoes", + "red bell pepper", + "store bought low sodium chicken broth", + "ground black pepper", + "Tabasco Pepper Sauce", + "long-grain rice", + "flat leaf parsley", + "kosher salt", + "jalapeno chilies", + "lemon", + "shrimp", + "onions" + ] + }, + { + "id": 29945, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "vegetable oil", + "gingerroot", + "fresh spinach", + "mint sprigs", + "garlic cloves", + "fennel seeds", + "chiles", + "phyllo", + "onions", + "red potato", + "unsalted butter", + "serrano", + "ground cumin" + ] + }, + { + "id": 31239, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salsa", + "hot pepper sauce", + "chorizo sausage", + "eggs", + "salt", + "shredded Monterey Jack cheese", + "milk", + "corn tortillas" + ] + }, + { + "id": 28242, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "butter", + "boneless skinless chicken breasts", + "basil leaves", + "tomatoes", + "balsamic vinegar" + ] + }, + { + "id": 10828, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "butter", + "medium shrimp", + "white onion", + "chili powder", + "garlic cloves", + "green onions", + "salt", + "ground cumin", + "hot pepper sauce", + "lime wedges", + "fresh lime juice" + ] + }, + { + "id": 46436, + "cuisine": "mexican", + "ingredients": [ + "red kidnei beans, rins and drain", + "chopped tomatoes", + "beef stock cubes", + "lean beef", + "ground cumin", + "tomatoes", + "lime", + "cinnamon", + "salt", + "garlic cloves", + "red chili peppers", + "ground black pepper", + "worcestershire sauce", + "ground coriander", + "chili flakes", + "olive oil", + "red wine", + "cilantro leaves", + "onions" + ] + }, + { + "id": 15464, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime", + "vegetable stock", + "coconut milk", + "jasmine rice", + "shiitake", + "Thai red curry paste", + "white onion", + "olive oil", + "cilantro", + "water", + "lemon grass", + "carrots" + ] + }, + { + "id": 28932, + "cuisine": "southern_us", + "ingredients": [ + "water", + "lemon wedge", + "granulated sugar", + "tea bags" + ] + }, + { + "id": 2974, + "cuisine": "italian", + "ingredients": [ + "milk", + "flour", + "salt", + "oregano", + "eggs", + "olive oil", + "whole milk ricotta cheese", + "fresh mushrooms", + "dried basil", + "boneless skinless chicken breasts", + "grated parmesan romano", + "dried oregano", + "black pepper", + "lasagna noodles", + "butter", + "shredded mozzarella cheese" + ] + }, + { + "id": 43797, + "cuisine": "spanish", + "ingredients": [ + "asparagus", + "garlic cloves", + "eggs", + "potatoes", + "fennel bulb", + "fleur de sel", + "garden cress", + "extra-virgin olive oil" + ] + }, + { + "id": 13195, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cumin seed", + "salt", + "lemon juice", + "grated parmesan cheese", + "garlic cloves", + "cold water", + "cilantro leaves", + "chopped pecans" + ] + }, + { + "id": 27305, + "cuisine": "chinese", + "ingredients": [ + "egg whites", + "garlic", + "fresh ginger", + "chicken breasts", + "corn starch", + "low sodium soy sauce", + "mushrooms", + "oyster sauce", + "hoisin sauce", + "rice wine", + "toasted sesame oil" + ] + }, + { + "id": 1124, + "cuisine": "italian", + "ingredients": [ + "feta cheese", + "extra-virgin olive oil", + "seasoning salt", + "ground black pepper", + "Italian bread", + "pinenuts", + "garlic powder", + "mixed greens", + "sun-dried tomatoes", + "green onions" + ] + }, + { + "id": 2760, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "cannellini beans", + "celery", + "tomato sauce", + "garlic", + "dried parsley", + "tomatoes", + "crushed red pepper flakes", + "onions", + "pasta", + "olive oil", + "salt", + "italian seasoning" + ] + }, + { + "id": 196, + "cuisine": "korean", + "ingredients": [ + "ground black pepper", + "vegetable oil", + "salt", + "soy sauce", + "spring onions", + "garlic", + "beef rib short", + "sugar", + "peeled fresh ginger", + "kirby cucumbers", + "dark sesame oil", + "fresh ginger", + "marinade", + "crushed red pepper" + ] + }, + { + "id": 46862, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "all-purpose flour", + "turkey breast cutlets", + "fresh lemon juice", + "capers", + "garlic cloves", + "olive oil", + "flat leaf parsley" + ] + }, + { + "id": 195, + "cuisine": "indian", + "ingredients": [ + "warm water", + "green chilies", + "atta", + "pepper", + "oil", + "ajwain", + "curds", + "methi leaves", + "salt" + ] + }, + { + "id": 31746, + "cuisine": "british", + "ingredients": [ + "olive oil", + "ground coriander", + "mustard", + "beef tenderloin", + "ground black pepper", + "oil", + "pudding", + "ground allspice" + ] + }, + { + "id": 14302, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "large egg whites", + "melted butter", + "kosher salt", + "whole milk", + "pure vanilla extract", + "whole wheat pastry flour", + "Neapolitan ice cream", + "coconut oil", + "chocolate bars", + "sprinkles" + ] + }, + { + "id": 49416, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "chopped cilantro fresh", + "lemon zest", + "lemon juice", + "parmesan cheese", + "garlic cloves", + "fresh basil", + "baby spinach", + "chopped fresh mint" + ] + }, + { + "id": 21014, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "cream cheese, soften", + "butter", + "vanilla extract", + "milk" + ] + }, + { + "id": 42071, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "potatoes", + "salt", + "pomegranate seeds", + "vegetable oil", + "coriander", + "amchur", + "ginger", + "green chile", + "baking powder", + "cumin seed" + ] + }, + { + "id": 15193, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "boneless chicken", + "garlic salt", + "eggs", + "cooked brown rice", + "oil", + "ketchup", + "red pepper flakes", + "sugar", + "vinegar", + "corn starch" + ] + }, + { + "id": 46757, + "cuisine": "italian", + "ingredients": [ + "eggs", + "all-purpose flour", + "extra-virgin olive oil" + ] + }, + { + "id": 15231, + "cuisine": "british", + "ingredients": [ + "lemon wedge", + "cinnamon sticks", + "eggs", + "sunflower oil", + "onions", + "tomatoes", + "mackerel fillets", + "flat leaf parsley", + "curry powder", + "long-grain rice" + ] + }, + { + "id": 20208, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "olive oil", + "garlic", + "onions", + "cider vinegar", + "coarse salt", + "celery", + "ground cumin", + "vegetable oil cooking spray", + "black-eyed peas", + "red bell pepper", + "large shrimp", + "dried thyme", + "red pepper flakes", + "bay leaf" + ] + }, + { + "id": 45827, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "vegetable oil", + "bay leaf", + "dried thyme", + "black", + "smoked ham hocks", + "chili pepper", + "salt", + "onions", + "black-eyed peas", + "garlic cloves" + ] + }, + { + "id": 10265, + "cuisine": "moroccan", + "ingredients": [ + "eggplant", + "curry powder", + "carrots", + "zucchini", + "yellow squash", + "onions" + ] + }, + { + "id": 2564, + "cuisine": "british", + "ingredients": [ + "milk", + "green peas", + "sweet potatoes", + "olive oil", + "salt", + "salmon fillets", + "leeks" + ] + }, + { + "id": 12524, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "poblano chiles", + "kosher salt", + "garlic cloves", + "fresh lime juice", + "avocado", + "gluten", + "corn tortillas", + "cooking spray", + "red bell pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 45080, + "cuisine": "filipino", + "ingredients": [ + "jalapeno chilies", + "scallions", + "pork", + "apple cider vinegar", + "low sodium soy sauce", + "bay leaves", + "peppercorns", + "water", + "garlic" + ] + }, + { + "id": 35067, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "fresh parsley", + "olive oil", + "garlic", + "diced tomatoes", + "onions", + "cod fillets", + "black olives" + ] + }, + { + "id": 13433, + "cuisine": "thai", + "ingredients": [ + "ground ginger", + "fresh cilantro", + "seasoned rice wine vinegar", + "soy sauce", + "garlic", + "roasted peanuts", + "roast turkey", + "linguine", + "creamy peanut butter", + "salad", + "canned chicken broth", + "crushed red pepper" + ] + }, + { + "id": 46264, + "cuisine": "italian", + "ingredients": [ + "pepper", + "extra-virgin olive oil", + "pinenuts", + "potatoes", + "green beans", + "romano cheese", + "grated parmesan cheese", + "garlic cloves", + "fresh basil", + "barilla", + "salt" + ] + }, + { + "id": 28830, + "cuisine": "mexican", + "ingredients": [ + "tomato juice", + "worcestershire sauce", + "lime wedges", + "Maggi", + "Tabasco Pepper Sauce", + "salt", + "lime juice", + "Mexican beer" + ] + }, + { + "id": 24111, + "cuisine": "southern_us", + "ingredients": [ + "sugar syrup", + "cold water", + "fresh lemon juice" + ] + }, + { + "id": 10889, + "cuisine": "southern_us", + "ingredients": [ + "lump crab meat", + "cooking oil", + "salt", + "ground black pepper", + "worcestershire sauce", + "onions", + "milk", + "chopped fresh chives", + "cream cheese", + "cayenne", + "bacon", + "boiling potatoes" + ] + }, + { + "id": 17480, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "flour", + "garlic cloves", + "ground pepper", + "butter", + "chopped cilantro", + "avocado", + "Mexican cheese blend", + "non-fat sour cream", + "cooked chicken breasts", + "chicken stock", + "flour tortillas", + "salt", + "cumin" + ] + }, + { + "id": 15062, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "butter", + "garlic cloves", + "andouille sausage", + "half & half", + "worcestershire sauce", + "onions", + "parmesan cheese", + "red pepper flakes", + "shrimp", + "milk", + "chili powder", + "creole seasoning", + "long pasta" + ] + }, + { + "id": 33318, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "cabbage", + "milk", + "butter", + "pepper", + "leeks", + "mace", + "salt" + ] + }, + { + "id": 20284, + "cuisine": "italian", + "ingredients": [ + "cream cheese", + "boiling water", + "butter", + "cooked shrimp", + "dried basil", + "fresh mushrooms", + "linguini", + "garlic", + "fresh parsley" + ] + }, + { + "id": 11953, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "grapeseed oil", + "fish sauce", + "broccolini", + "onions", + "water", + "garlic cloves", + "sugar", + "ground black pepper" + ] + }, + { + "id": 43118, + "cuisine": "mexican", + "ingredients": [ + "pasilla chiles", + "vanilla", + "ancho chile pepper", + "powdered sugar", + "butter", + "dark brown sugar", + "semisweet chocolate", + "whipping cream", + "cream of tartar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 10722, + "cuisine": "spanish", + "ingredients": [ + "grated lemon zest", + "artichok heart marin", + "fresh lemon juice", + "extra-virgin olive oil", + "flat leaf parsley", + "chickpeas" + ] + }, + { + "id": 30313, + "cuisine": "mexican", + "ingredients": [ + "instant rice", + "pork tenderloin", + "tomatillos", + "cherry tomatoes", + "ground red pepper", + "chopped cilantro fresh", + "minced garlic", + "cooking spray", + "salt", + "vidalia onion", + "olive oil", + "chili powder", + "ground cumin" + ] + }, + { + "id": 12485, + "cuisine": "greek", + "ingredients": [ + "pepper", + "english cucumber", + "onions", + "pita bread", + "salt", + "fresh lemon juice", + "iceberg lettuce", + "plain yogurt", + "fresh oregano", + "fresh parsley", + "ground lamb", + "beefsteak tomatoes", + "garlic cloves", + "chopped fresh mint" + ] + }, + { + "id": 42306, + "cuisine": "mexican", + "ingredients": [ + "corn", + "boneless skinless chicken breasts", + "purple onion", + "sharp cheddar cheese", + "cumin", + "fresh cilantro", + "grated parmesan cheese", + "butter", + "cayenne pepper", + "panko breadcrumbs", + "pepper", + "olive oil", + "chili powder", + "salt", + "garlic cloves", + "monterey jack", + "milk", + "flour", + "red pepper", + "green pepper", + "noodles" + ] + }, + { + "id": 39625, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "ground black pepper", + "purple onion", + "red bell pepper", + "avocado", + "olive oil", + "chili powder", + "frozen corn", + "lime juice", + "cod fillets", + "salt", + "cumin", + "cooked brown rice", + "garlic powder", + "cilantro", + "cayenne pepper" + ] + }, + { + "id": 39568, + "cuisine": "italian", + "ingredients": [ + "perciatelli", + "crumbled blue cheese", + "radicchio", + "flat leaf parsley", + "olive oil", + "black mission figs", + "prosciutto" + ] + }, + { + "id": 10645, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "flour tortillas", + "vegetable oil", + "salt", + "ground cumin", + "lime juice", + "flank steak", + "cilantro sprigs", + "red bell pepper", + "black pepper", + "ground red pepper", + "yellow bell pepper", + "salsa", + "garlic powder", + "chili powder", + "non-fat sour cream", + "onions" + ] + }, + { + "id": 1333, + "cuisine": "italian", + "ingredients": [ + "swordfish steaks", + "shallots", + "salt", + "hot water", + "ground black pepper", + "anchovy paste", + "scallions", + "olive oil", + "red wine vinegar", + "anchovy fillets", + "fresh parsley", + "grated parmesan cheese", + "linguine", + "lemon juice" + ] + }, + { + "id": 38730, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "salt", + "monterey jack", + "flour tortillas", + "medium shrimp", + "cooking oil", + "sour cream", + "black beans", + "chopped fresh chives", + "chunky tomato salsa" + ] + }, + { + "id": 46189, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "ground pork", + "carrots", + "celery ribs", + "dry white wine", + "grated nutmeg", + "chuck", + "whole milk", + "tomatoes with juice", + "onions", + "store bought low sodium chicken stock", + "coarse salt", + "freshly ground pepper" + ] + }, + { + "id": 5222, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "vanilla extract", + "sugar", + "baking powder", + "all-purpose flour", + "fresh lavender", + "cooking spray", + "salt", + "sliced almonds", + "butter", + "grated orange" + ] + }, + { + "id": 37099, + "cuisine": "mexican", + "ingredients": [ + "honey", + "rhubarb", + "green onions", + "jalapeno chilies", + "lime", + "apples" + ] + }, + { + "id": 27956, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "fresh ginger", + "firmly packed light brown sugar", + "whipping cream", + "sugar", + "vanilla extract" + ] + }, + { + "id": 17857, + "cuisine": "southern_us", + "ingredients": [ + "finely chopped onion", + "garlic cloves", + "farro", + "fresh chervil", + "chicken broth", + "salt", + "Italian parsley leaves", + "canola oil" + ] + }, + { + "id": 1990, + "cuisine": "british", + "ingredients": [ + "tomato paste", + "flour", + "dark beer", + "ground pepper", + "russet potatoes", + "ground beef", + "melted butter", + "coarse salt", + "carrots", + "fresh thyme", + "yellow onion", + "frozen peas" + ] + }, + { + "id": 31271, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "lemon juice", + "nectarines", + "muscovado sugar" + ] + }, + { + "id": 48831, + "cuisine": "mexican", + "ingredients": [ + "onions", + "Hatch Green Chiles" + ] + }, + { + "id": 18918, + "cuisine": "thai", + "ingredients": [ + "tofu", + "honey", + "crushed red pepper", + "spaghetti", + "curry powder", + "sesame oil", + "chopped fresh mint", + "low sodium soy sauce", + "cooking spray", + "garlic cloves", + "chopped cilantro fresh", + "fresh basil", + "peeled fresh ginger", + "fresh lime juice" + ] + }, + { + "id": 40618, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "orange", + "vegetable oil", + "salt", + "dried chile", + "serrano chile", + "sugar", + "pepper", + "ground black pepper", + "red wine vinegar", + "scallions", + "chopped cilantro", + "guajillo chiles", + "water", + "beef", + "lemon", + "garlic cloves", + "chopped cilantro fresh", + "kosher salt", + "lime", + "tomatillos", + "rice vinegar", + "corn tortillas" + ] + }, + { + "id": 7022, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "flour", + "canola oil", + "fresh ginger", + "garlic cloves", + "honey", + "chicken breasts", + "brown sugar", + "Sriracha", + "chile sauce" + ] + }, + { + "id": 1823, + "cuisine": "mexican", + "ingredients": [ + "shredded mozzarella cheese", + "rice", + "ground beef", + "taco shells", + "chopped cilantro", + "taco seasoning", + "onions" + ] + }, + { + "id": 5698, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "water", + "garlic cloves", + "pork belly", + "yellow rock sugar", + "baby bok choy", + "fresh ginger", + "dark soy sauce", + "kosher salt", + "regular soy sauce" + ] + }, + { + "id": 6611, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "refrigerated piecrusts", + "salt", + "milk", + "sweet potatoes or yams", + "firmly packed brown sugar", + "I Can't Believe It's Not Butter!® Spread", + "all-purpose flour", + "ground cinnamon", + "ground nutmeg", + "vanilla extract" + ] + }, + { + "id": 18714, + "cuisine": "french", + "ingredients": [ + "chicken breasts", + "whole wheat bread", + "deli ham", + "swiss cheese", + "sour cream", + "butter" + ] + }, + { + "id": 29970, + "cuisine": "italian", + "ingredients": [ + "cream of tartar", + "large egg whites", + "vanilla wafers", + "sliced almonds", + "amaretto", + "corn starch", + "water", + "salt", + "sugar", + "sweet cherries", + "whipped topping" + ] + }, + { + "id": 2793, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "hot water", + "lime", + "ice", + "sugar", + "cinnamon sticks", + "almonds" + ] + }, + { + "id": 9435, + "cuisine": "japanese", + "ingredients": [ + "dark soy sauce", + "water", + "sugar", + "ginger", + "sake", + "green onions", + "pork belly", + "star anise" + ] + }, + { + "id": 45088, + "cuisine": "indian", + "ingredients": [ + "chopped cilantro fresh", + "coarse kosher salt", + "hothouse cucumber", + "plain whole-milk yogurt", + "chopped fresh mint" + ] + }, + { + "id": 19477, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "jasmine rice", + "raisins", + "carrots", + "eggs", + "white pepper", + "unsalted cashews", + "garlic cloves", + "chicken thighs", + "soy sauce", + "green onions", + "oil", + "coconut milk", + "sugar", + "leaves", + "pineapple", + "shrimp" + ] + }, + { + "id": 35533, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "chicken", + "teriyaki sauce", + "brown sugar", + "garlic cloves" + ] + }, + { + "id": 39852, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "cider vinegar", + "Italian parsley leaves", + "garlic", + "green beans", + "eggs", + "ground black pepper", + "sea salt", + "dijon style mustard", + "tuna", + "white onion", + "parsley", + "extra-virgin olive oil", + "Niçoise olives", + "beans", + "new potatoes", + "yellow bell pepper", + "anchovy fillets", + "tarragon" + ] + }, + { + "id": 32050, + "cuisine": "italian", + "ingredients": [ + "whole milk", + "toasted almonds", + "sugar", + "light corn syrup", + "large egg yolks", + "whipping cream", + "amaretto" + ] + }, + { + "id": 19705, + "cuisine": "italian", + "ingredients": [ + "vine ripened tomatoes", + "purple onion", + "red wine vinegar", + "fresh mozzarella", + "arugula", + "ground black pepper", + "focaccia" + ] + }, + { + "id": 46719, + "cuisine": "southern_us", + "ingredients": [ + "ground pepper", + "buttermilk", + "pork sausages", + "fine salt", + "salt", + "unsalted butter", + "sea salt", + "low-fat milk", + "garlic powder", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 33023, + "cuisine": "cajun_creole", + "ingredients": [ + "ground cinnamon", + "ground nutmeg", + "cooking spray", + "pineapple juice", + "large egg whites", + "reduced fat milk", + "butter", + "mixed dried fruit", + "french bread", + "vanilla extract", + "brown sugar", + "large eggs", + "creme anglaise", + "nonfat evaporated milk" + ] + }, + { + "id": 45814, + "cuisine": "cajun_creole", + "ingredients": [ + "spices", + "bread crumb fresh", + "flat leaf parsley", + "hellmann' or best food real mayonnais", + "Mexican cheese blend", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 14805, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "buttermilk", + "self-rising cornmeal", + "large eggs" + ] + }, + { + "id": 21609, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "water", + "shallots", + "oyster mushrooms", + "smoked gouda", + "fresh rosemary", + "black pepper", + "fresh parmesan cheese", + "butter", + "garlic cloves", + "arborio rice", + "cremini mushrooms", + "olive oil", + "chopped fresh thyme", + "salt", + "spinach", + "fat free less sodium chicken broth", + "dry white wine", + "button mushrooms", + "shiitake mushroom caps" + ] + }, + { + "id": 3800, + "cuisine": "russian", + "ingredients": [ + "vegetable oil", + "large eggs", + "all-purpose flour", + "sweet potatoes", + "scallions", + "black pepper", + "salt" + ] + }, + { + "id": 23728, + "cuisine": "thai", + "ingredients": [ + "kosher salt", + "toasted sesame seeds", + "water", + "mango", + "pearl rice", + "sugar", + "coconut milk" + ] + }, + { + "id": 29999, + "cuisine": "indian", + "ingredients": [ + "bicarbonate of soda", + "cilantro leaves", + "rapeseed oil", + "ginger", + "lemon juice", + "greek yogurt", + "sesame seeds", + "green chilies", + "mustard seeds", + "curry leaves", + "salt", + "gram flour", + "ground turmeric" + ] + }, + { + "id": 23946, + "cuisine": "italian", + "ingredients": [ + "whole milk", + "white wine vinegar", + "heavy cream", + "kosher salt" + ] + }, + { + "id": 44093, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "provolone cheese", + "onion powder", + "fresh parsley", + "marinara sauce", + "sourdough", + "garlic powder", + "large garlic cloves", + "italian seasoning" + ] + }, + { + "id": 45354, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "salsa", + "ground beef", + "taco shells", + "shredded cheese", + "tomato sauce", + "taco seasoning", + "refried beans", + "sour cream" + ] + }, + { + "id": 4713, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "boneless skinless chicken breasts", + "salt", + "water", + "vegetable oil", + "cayenne pepper", + "white pepper", + "bell pepper", + "red pepper", + "sausages", + "white onion", + "green onions", + "white rice", + "oregano" + ] + }, + { + "id": 4482, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger", + "beef tenderloin", + "toasted sesame oil", + "noodles", + "water", + "basil", + "scallions", + "mung bean sprouts", + "soy sauce", + "agave nectar", + "freshly ground pepper", + "chopped cilantro", + "chicken stock", + "Sriracha", + "salt", + "fresh lime juice" + ] + }, + { + "id": 16584, + "cuisine": "mexican", + "ingredients": [ + "celery ribs", + "yellow onion", + "black peppercorns", + "carrots", + "kosher salt", + "chicken", + "avocado", + "tortilla chips" + ] + }, + { + "id": 2808, + "cuisine": "thai", + "ingredients": [ + "tapioca flour", + "white rice flour", + "bananas", + "white sugar", + "water", + "oil", + "shredded coconut", + "salt" + ] + }, + { + "id": 25623, + "cuisine": "southern_us", + "ingredients": [ + "ground red pepper", + "ground white pepper", + "ground cinnamon", + "salt", + "celery salt", + "chili powder", + "garlic salt", + "ground black pepper", + "dark brown sugar" + ] + }, + { + "id": 20879, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "butter", + "olive oil", + "all-purpose flour", + "water", + "garlic", + "tomatoes", + "salt and ground black pepper", + "garlic salt" + ] + }, + { + "id": 39938, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "purple onion", + "large garlic cloves", + "cilantro sprigs", + "tomatillos", + "fresh lime juice" + ] + }, + { + "id": 42853, + "cuisine": "irish", + "ingredients": [ + "raspberries", + "whipping cream", + "rum", + "fresh raspberries", + "raspberry preserves", + "sauce", + "sponge", + "dry sherry" + ] + }, + { + "id": 25121, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "ground beef", + "shredded cheddar cheese", + "doritos", + "tomatoes", + "onions", + "salad dressing" + ] + }, + { + "id": 31019, + "cuisine": "italian", + "ingredients": [ + "polenta prepar", + "zucchini", + "yellow onion", + "olive oil", + "garlic", + "crushed tomatoes", + "fresh mozzarella", + "fresh oregano", + "orange bell pepper", + "salt" + ] + }, + { + "id": 3136, + "cuisine": "italian", + "ingredients": [ + "flat leaf parsley", + "pistachios", + "olive oil", + "salt" + ] + }, + { + "id": 11643, + "cuisine": "french", + "ingredients": [ + "Madeira", + "fresh mushrooms", + "olive oil", + "corn starch", + "water", + "chuck steaks", + "shallots" + ] + }, + { + "id": 2708, + "cuisine": "japanese", + "ingredients": [ + "hatcho miso", + "ground black pepper", + "lemon wedge", + "all-purpose flour", + "japanese rice", + "boneless chop pork", + "mirin", + "miso", + "soy sauce", + "granulated sugar", + "vegetable oil", + "sauce", + "green cabbage", + "panko", + "large eggs", + "salt" + ] + }, + { + "id": 12764, + "cuisine": "british", + "ingredients": [ + "chopped fresh chives", + "salt", + "fresh rosemary", + "pan drippings", + "chopped fresh sage", + "whole milk", + "all-purpose flour", + "large eggs", + "chopped fresh thyme", + "fresh parsley" + ] + }, + { + "id": 34877, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "white onion", + "chipotles in adobo", + "red wine vinegar", + "tomatoes", + "fine sea salt" + ] + }, + { + "id": 25940, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "lemon", + "lemon juice", + "ground black pepper", + "salt", + "orange", + "linguine", + "flat leaf parsley" + ] + }, + { + "id": 33319, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "salt", + "fresh green bean", + "onions", + "white vinegar", + "garlic", + "water", + "ham hock" + ] + }, + { + "id": 20087, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "garlic", + "chinese rice wine", + "pork tenderloin", + "liquid honey", + "brown sugar", + "hoisin sauce", + "chinese five-spice powder", + "soy sauce", + "red food coloring" + ] + }, + { + "id": 42429, + "cuisine": "indian", + "ingredients": [ + "eggs", + "whole wheat flour", + "all-purpose flour", + "warm water", + "garlic", + "sugar", + "unsalted butter", + "yeast", + "milk", + "salt" + ] + }, + { + "id": 4130, + "cuisine": "french", + "ingredients": [ + "leeks", + "chopped fresh thyme", + "garlic", + "carrots", + "ground black pepper", + "parsley", + "extra-virgin olive oil", + "yellow onion", + "bay leaves", + "russet potatoes", + "lamb shoulder", + "pork butt", + "juniper berries", + "dry white wine", + "sea salt", + "boneless beef chuck roast" + ] + }, + { + "id": 574, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "sesame seeds", + "garlic", + "plum tomatoes", + "white onion", + "jalapeno chilies", + "corn tortillas", + "chipotle chile", + "radishes", + "sour cream", + "dried oregano", + "fresh chorizo", + "kosher salt", + "vegetable oil", + "chopped cilantro" + ] + }, + { + "id": 14473, + "cuisine": "japanese", + "ingredients": [ + "pork belly", + "brown sugar", + "mirin", + "ground ginger", + "water", + "soy sauce", + "garlic" + ] + }, + { + "id": 29411, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "ginger", + "oil", + "red chili powder", + "crushed garlic", + "all-purpose flour", + "vegetable oil", + "salt", + "onions", + "tumeric", + "cilantro", + "green chilies" + ] + }, + { + "id": 21518, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "garlic", + "lemon juice", + "lemon zest", + "salt", + "fresh mint", + "olive oil", + "ras el hanout", + "smoked paprika", + "red pepper flakes", + "lamb loin chops", + "fresh parsley" + ] + }, + { + "id": 36997, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "coarse salt", + "e-fu noodl", + "shiitake mushroom caps", + "leeks", + "black trumpet mushrooms", + "oyster sauce", + "snow peas", + "chicken broth", + "vegetable oil", + "ginger", + "shao hsing wine", + "chopped garlic", + "chinese celery", + "white truffle oil", + "scallions", + "lotus roots" + ] + }, + { + "id": 30, + "cuisine": "jamaican", + "ingredients": [ + "dried thyme", + "green onions", + "all-purpose flour", + "ground cumin", + "water", + "unsalted butter", + "vegetable oil", + "garlic cloves", + "chili pepper", + "ground pepper", + "lean ground beef", + "dry bread crumbs", + "curry powder", + "beef stock", + "salt", + "onions" + ] + }, + { + "id": 34697, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "chopped green bell pepper", + "extra-virgin olive oil", + "fresh lemon juice", + "ground black pepper", + "orzo", + "garlic cloves", + "mozzarella cheese", + "yellow bell pepper", + "salt", + "fresh parsley", + "pitted kalamata olives", + "red wine vinegar", + "purple onion", + "red bell pepper" + ] + }, + { + "id": 48846, + "cuisine": "brazilian", + "ingredients": [ + "pico de gallo", + "pork tenderloin", + "garlic", + "corn tortillas", + "canola oil", + "manchego cheese", + "red pepper flakes", + "scallions", + "monterey jack", + "white onion", + "beefsteak tomatoes", + "ground coriander", + "chopped cilantro", + "black beans", + "jalapeno chilies", + "salt", + "bay leaf", + "ground cumin" + ] + }, + { + "id": 16586, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "nonfat cottage cheese", + "vegetable oil cooking spray", + "grated parmesan cheese", + "pasta sauce", + "zucchini", + "provolone cheese", + "ground pepper", + "stewed tomatoes" + ] + }, + { + "id": 11671, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "melted butter", + "salt", + "heavy cream", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 39543, + "cuisine": "french", + "ingredients": [ + "baking powder", + "all-purpose flour", + "eggs", + "vanilla extract", + "milk", + "salt", + "butter", + "white sugar" + ] + }, + { + "id": 8097, + "cuisine": "chinese", + "ingredients": [ + "custard powder", + "whole milk", + "corn starch", + "warm water", + "granulated sugar", + "vegetable oil", + "active dry yeast", + "large eggs", + "all-purpose flour", + "unsalted butter", + "baking powder", + "lard" + ] + }, + { + "id": 32219, + "cuisine": "british", + "ingredients": [ + "milk", + "medium eggs", + "salt", + "plain flour", + "drippings" + ] + }, + { + "id": 2668, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "potatoes", + "lamb", + "green olives", + "pepper", + "garlic", + "saffron threads", + "parsley sprigs", + "ginger", + "onions", + "preserved lemon", + "olive oil", + "salt" + ] + }, + { + "id": 47147, + "cuisine": "greek", + "ingredients": [ + "cooked rice", + "boneless skinless chicken breasts", + "flat leaf parsley", + "greek seasoning", + "olive oil", + "salt", + "pepper", + "black olives", + "onions", + "chicken broth", + "dry white wine", + "red bell pepper" + ] + }, + { + "id": 23819, + "cuisine": "indian", + "ingredients": [ + "cauliflower florets", + "low salt chicken broth", + "vegetable oil", + "all-purpose flour", + "curry powder", + "whipping cream", + "green onions", + "lamb shoulder" + ] + }, + { + "id": 9429, + "cuisine": "southern_us", + "ingredients": [ + "whole allspice", + "pickling salt", + "onions", + "water", + "mustard seeds", + "firmly packed brown sugar", + "whole cloves", + "celery seed", + "cider vinegar", + "green tomatoes" + ] + }, + { + "id": 26096, + "cuisine": "chinese", + "ingredients": [ + "shiitake", + "soft tofu", + "crushed red pepper", + "white vinegar", + "radishes", + "chili oil", + "scallions", + "lily flowers", + "large eggs", + "vegetable broth", + "bamboo shoots", + "granulated sugar", + "cloud ear fungus", + "salt" + ] + }, + { + "id": 7658, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "dijon mustard", + "onions", + "cider vinegar", + "carrots", + "sugar", + "salt", + "cabbage", + "green bell pepper", + "pepper", + "celery seed" + ] + }, + { + "id": 17019, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "fresh lemon juice", + "extra-virgin olive oil", + "ground black pepper", + "celery", + "parmigiano-reggiano cheese", + "chopped walnuts" + ] + }, + { + "id": 44984, + "cuisine": "mexican", + "ingredients": [ + "water", + "cayenne pepper", + "corn tortillas", + "garlic", + "scallions", + "ground beef", + "chili powder", + "taco seasoning", + "cornmeal", + "shredded cheddar cheese", + "salsa", + "sour cream", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 10721, + "cuisine": "southern_us", + "ingredients": [ + "peeled fresh ginger", + "agave nectar", + "water", + "black", + "mint leaves" + ] + }, + { + "id": 19938, + "cuisine": "italian", + "ingredients": [ + "raspberries", + "whipping cream", + "unflavored gelatin", + "milk", + "vanilla beans", + "Frangelico", + "sugar", + "vegetable oil spray" + ] + }, + { + "id": 14065, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "roma tomatoes", + "salt", + "masala", + "water", + "ginger", + "onions", + "minced garlic", + "bell pepper", + "lemon juice", + "red lentils", + "vegetables", + "green peas", + "ground turmeric" + ] + }, + { + "id": 21794, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "freshly ground pepper", + "olive oil", + "lemon slices", + "flat leaf parsley", + "capers", + "salt", + "fresh lemon juice", + "unsalted butter", + "grated lemon zest", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 4120, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "salt", + "baking soda", + "cracked black pepper", + "buttermilk", + "all-purpose flour", + "unsalted butter", + "whipping cream" + ] + }, + { + "id": 2987, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "whole chicken", + "eggs", + "lemon", + "orzo pasta", + "water", + "salt" + ] + }, + { + "id": 34830, + "cuisine": "greek", + "ingredients": [ + "russet potatoes", + "cheese", + "garlic cloves", + "whole milk", + "diced tomatoes", + "all-purpose flour", + "onions", + "eggplant", + "butter", + "lamb shoulder", + "coarse kosher salt", + "dry white wine", + "extra-virgin olive oil", + "beef broth", + "dried oregano" + ] + }, + { + "id": 27357, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "sirloin steak", + "ground black pepper", + "all-purpose flour", + "garlic powder", + "salt", + "bacon drippings", + "ground red pepper", + "cornmeal" + ] + }, + { + "id": 8082, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "sugar", + "buttermilk", + "pork sausages", + "cheddar cheese", + "baking powder", + "chopped fresh sage", + "baking soda", + "salt" + ] + }, + { + "id": 10419, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "green onions", + "boiling water", + "ground ginger", + "black pepper", + "all-purpose flour", + "chicken broth", + "kosher salt", + "oil", + "cold water", + "ground chicken", + "crushed red pepper flakes" + ] + }, + { + "id": 12874, + "cuisine": "mexican", + "ingredients": [ + "corn tortillas", + "ahi tuna steaks", + "plum tomatoes", + "romaine lettuce", + "fresh lime juice", + "guacamole", + "cumin" + ] + }, + { + "id": 16479, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "broccoli florets", + "snow peas", + "minced garlic", + "red pepper", + "soy sauce", + "green onions", + "pork chops", + "peanut oil" + ] + }, + { + "id": 20686, + "cuisine": "vietnamese", + "ingredients": [ + "mint", + "lime", + "prawns", + "minced pork", + "soy sauce", + "peanuts", + "chinese five-spice powder", + "sugar", + "olive oil", + "spring onions", + "coriander", + "red chili peppers", + "fresh ginger", + "garlic", + "glass noodles" + ] + }, + { + "id": 15807, + "cuisine": "mexican", + "ingredients": [ + "lime", + "corn tortillas", + "taco sauce", + "taco seasoning", + "monterey jack", + "salsa", + "ground beef", + "water", + "sour cream" + ] + }, + { + "id": 3319, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "granulated sugar", + "vegetable shortening", + "salt", + "eggs", + "egg whites", + "buttermilk", + "all-purpose flour", + "sugar", + "egg yolks", + "heavy cream", + "corn starch", + "unsalted butter", + "ice water", + "vanilla extract" + ] + }, + { + "id": 8906, + "cuisine": "french", + "ingredients": [ + "dry yeast", + "salt", + "large egg yolks", + "whole milk", + "dark brown sugar", + "sugar", + "large eggs", + "all-purpose flour", + "unsalted butter", + "whipping cream", + "grated lemon peel" + ] + }, + { + "id": 6181, + "cuisine": "mexican", + "ingredients": [ + "water chestnuts", + "red bell pepper", + "chopped celery", + "purple onion", + "butter", + "chicken" + ] + }, + { + "id": 16984, + "cuisine": "italian", + "ingredients": [ + "orzo", + "frozen peas", + "chopped onion", + "low salt chicken broth", + "bacon slices" + ] + }, + { + "id": 7394, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "garlic", + "cabernet sauvignon", + "olive oil", + "yellow onion", + "rump roast", + "salt", + "carrots", + "stewed tomatoes", + "freshly ground pepper" + ] + }, + { + "id": 7161, + "cuisine": "italian", + "ingredients": [ + "table salt", + "russet potatoes", + "parmigiano reggiano cheese", + "unsalted butter", + "white peppercorns", + "whole milk" + ] + }, + { + "id": 32626, + "cuisine": "spanish", + "ingredients": [ + "lemon wedge", + "crushed red pepper", + "fresh lemon juice", + "blood orange juice", + "chopped celery", + "tortilla chips", + "large garlic cloves", + "purple onion", + "red bell pepper", + "olive oil", + "peeled shrimp", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 20382, + "cuisine": "thai", + "ingredients": [ + "water", + "rice vinegar", + "asian fish sauce", + "sugar", + "chopped green bell pepper", + "chopped cilantro fresh", + "lump crab meat", + "salt", + "serrano chile", + "papaya", + "red bell pepper" + ] + }, + { + "id": 2634, + "cuisine": "italian", + "ingredients": [ + "herb vinegar", + "garlic", + "fresh basil", + "ground black pepper", + "red bell pepper", + "green bell pepper", + "yellow bell pepper", + "olive oil flavored cooking spray", + "cherry tomatoes", + "salt" + ] + }, + { + "id": 32237, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "green onions", + "black pepper", + "beef", + "soy sauce" + ] + }, + { + "id": 9167, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "salt", + "grits", + "worcestershire sauce", + "beer", + "large shrimp", + "butter", + "cayenne pepper", + "dried oregano", + "pepper", + "crushed red pepper flakes", + "garlic cloves", + "dried rosemary" + ] + }, + { + "id": 21607, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "sugar", + "wonton wrappers", + "eggs", + "spring onions", + "minced pork", + "potato starch", + "light soy sauce", + "salt", + "fresh prawn", + "sesame oil", + "bok choy" + ] + }, + { + "id": 47424, + "cuisine": "mexican", + "ingredients": [ + "great northern beans", + "nonfat greek yogurt", + "cumin", + "skim milk", + "green onions", + "spinach", + "flour tortillas", + "shredded Monterey Jack cheese", + "chopped green chilies", + "diced chicken" + ] + }, + { + "id": 33049, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "dry bread crumbs", + "mirlitons", + "unsalted butter", + "large shrimp", + "cayenne", + "onions", + "saltines", + "large garlic cloves" + ] + }, + { + "id": 21036, + "cuisine": "mexican", + "ingredients": [ + "flank steak", + "romaine lettuce", + "corn tortillas", + "avocado", + "freshly ground pepper", + "lime", + "fresh tomato salsa" + ] + }, + { + "id": 46397, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "large eggs", + "garlic", + "chicken thighs", + "tomatoes", + "panko", + "parsley", + "thyme", + "oregano", + "tomato paste", + "rosemary", + "flour", + "salt", + "spaghetti", + "black pepper", + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 19164, + "cuisine": "southern_us", + "ingredients": [ + "extra sharp white cheddar cheese", + "butter", + "carrots", + "onions", + "dry vermouth", + "chopped fresh thyme", + "garlic cloves", + "bay leaf", + "fresh thyme", + "apples", + "low salt chicken broth", + "smoked ham hocks", + "black peppercorns", + "quickcooking grits", + "chopped celery", + "mustard seeds" + ] + }, + { + "id": 21110, + "cuisine": "greek", + "ingredients": [ + "clove", + "brown sugar", + "pumpkin purée", + "salt", + "eggs", + "baking soda", + "cinnamon", + "greek yogurt", + "nutmeg", + "whole wheat flour", + "baking powder", + "all-purpose flour", + "pecans", + "bananas", + "ginger" + ] + }, + { + "id": 22509, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "chicken stock", + "basil leaves", + "plum tomatoes", + "ground black pepper", + "onions", + "peasant bread", + "coarse salt" + ] + }, + { + "id": 37696, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "shredded sharp cheddar cheese", + "biscuits", + "quickcooking grits", + "water", + "cayenne pepper", + "black pepper", + "butter" + ] + }, + { + "id": 14659, + "cuisine": "indian", + "ingredients": [ + "lemon", + "chives", + "basmati rice", + "salt", + "vegetable oil" + ] + }, + { + "id": 37863, + "cuisine": "russian", + "ingredients": [ + "milk", + "potatoes", + "ham", + "sugar", + "dijon mustard", + "green onions", + "plain yogurt", + "radishes", + "salt", + "fresh dill", + "ground black pepper", + "egg yolks", + "cucumber" + ] + }, + { + "id": 11471, + "cuisine": "mexican", + "ingredients": [ + "corn", + "low sodium chicken broth", + "salt", + "pepper", + "corn husks", + "diced tomatoes", + "cotija", + "olive oil", + "lime wedges", + "chopped cilantro fresh", + "milk", + "cayenne", + "purple onion" + ] + }, + { + "id": 35162, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "all-purpose flour", + "shortening", + "large eggs", + "active dry yeast", + "bread flour", + "sugar", + "salt" + ] + }, + { + "id": 43008, + "cuisine": "chinese", + "ingredients": [ + "green lentil", + "vegetable stock", + "carrots", + "bamboo shoots", + "light soy sauce", + "vegetable oil", + "garlic cloves", + "toasted sesame oil", + "ground black pepper", + "ginger", + "green split peas", + "boiling water", + "barley flakes", + "mushrooms", + "cilantro leaves", + "red bell pepper", + "brown basmati rice" + ] + }, + { + "id": 10550, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "greens", + "olive oil", + "no salt added chicken broth", + "sausage casings", + "salt", + "no-salt-added black beans", + "onions" + ] + }, + { + "id": 33345, + "cuisine": "cajun_creole", + "ingredients": [ + "marinara sauce", + "diced tomatoes", + "carrots", + "pepper", + "cajun seasoning", + "smoked sausage", + "onions", + "chicken broth", + "potatoes", + "garlic", + "celery", + "boneless chicken breast", + "butter", + "salt", + "oregano" + ] + }, + { + "id": 15049, + "cuisine": "filipino", + "ingredients": [ + "mayonaise", + "water", + "lemon", + "onions", + "pork belly", + "ground black pepper", + "salt", + "soy sauce", + "garlic powder", + "ginger", + "chili flakes", + "pig", + "butter", + "chicken livers" + ] + }, + { + "id": 20758, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "lean ground beef", + "onions", + "tomato paste", + "water", + "salt", + "eggs", + "lasagna noodles", + "shredded mozzarella cheese", + "pepper", + "part-skim ricotta cheese", + "italian seasoning" + ] + }, + { + "id": 16089, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "palm sugar", + "cilantro leaves", + "jasmine rice", + "vegetable oil", + "fresh lime juice", + "red chili peppers", + "green onions", + "coconut milk", + "sea scallops", + "Thai red curry paste" + ] + }, + { + "id": 30166, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "ground red pepper", + "sliced green onions", + "reduced fat sharp cheddar cheese", + "cooking spray", + "salt", + "egg substitute", + "vegetable oil", + "vidalia onion", + "dried thyme", + "deli ham" + ] + }, + { + "id": 6539, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "butter", + "large garlic cloves", + "vegetables", + "anchovy fillets" + ] + }, + { + "id": 12462, + "cuisine": "irish", + "ingredients": [ + "mushrooms", + "tomatoes", + "bacon", + "soda bread", + "butter", + "eggs" + ] + }, + { + "id": 48904, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "Sriracha", + "honey", + "hot water", + "lime", + "creamy peanut butter", + "pepper flakes", + "peanuts" + ] + }, + { + "id": 28588, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "cooking spray", + "sweetened condensed milk", + "ground cinnamon", + "large eggs", + "vanilla extract", + "water", + "dark rum", + "ground nutmeg", + "light coconut milk" + ] + }, + { + "id": 38554, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "Italian bread", + "cooking spray", + "smoked gouda" + ] + }, + { + "id": 23251, + "cuisine": "italian", + "ingredients": [ + "sugar", + "ground black pepper", + "whole milk", + "ground turkey", + "minced garlic", + "large eggs", + "salt", + "onions", + "bread crumb fresh", + "unsalted butter", + "pecorino romano cheese", + "flat leaf parsley", + "tomatoes", + "olive oil", + "hot dogs", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 23683, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "balsamic vinegar", + "freshly ground pepper", + "chicken broth", + "ground red pepper", + "salt", + "italian style stewed tomatoes", + "large garlic cloves", + "fresh basil", + "shallots", + "hot sauce" + ] + }, + { + "id": 4431, + "cuisine": "french", + "ingredients": [ + "baguette", + "salt", + "balsamic vinegar", + "bay leaf", + "fresh thyme", + "fat skimmed chicken broth", + "pepper", + "gruyere cheese", + "onions" + ] + }, + { + "id": 6307, + "cuisine": "moroccan", + "ingredients": [ + "eggs", + "salt", + "boneless skinless chicken breast halves", + "chicken bouillon granules", + "frozen pastry puff sheets", + "fresh parsley", + "pepper", + "hot water", + "ground cinnamon", + "butter", + "white sugar" + ] + }, + { + "id": 48933, + "cuisine": "italian", + "ingredients": [ + "pepper", + "veal stock", + "portabello mushroom", + "tomato paste", + "salt", + "red wine" + ] + }, + { + "id": 40387, + "cuisine": "mexican", + "ingredients": [ + "whole kernel corn, drain", + "chili powder", + "ground beef", + "colby cheese", + "salad dressing", + "tortilla chips", + "chunky salsa" + ] + }, + { + "id": 3827, + "cuisine": "filipino", + "ingredients": [ + "olive oil", + "onions", + "bitter melon", + "garlic", + "tomatoes", + "pork loin", + "tiger prawn", + "pepper", + "salt" + ] + }, + { + "id": 22472, + "cuisine": "british", + "ingredients": [ + "sugar", + "whole milk", + "crust", + "large egg yolks", + "raisins", + "vanilla beans", + "golden raisins", + "bread slices", + "unsalted butter", + "whipping cream" + ] + }, + { + "id": 37787, + "cuisine": "moroccan", + "ingredients": [ + "green olives", + "olive oil", + "salt", + "sugar", + "paprika", + "fresh tomatoes", + "ground black pepper", + "cumin", + "green bell pepper", + "garlic powder", + "fresh parsley" + ] + }, + { + "id": 12600, + "cuisine": "french", + "ingredients": [ + "cooking spray", + "crepes", + "cooked chicken breasts", + "frozen chopped spinach", + "butter", + "all-purpose flour", + "sliced green onions", + "mushrooms", + "salt", + "shredded Monterey Jack cheese", + "black pepper", + "2% reduced-fat milk", + "onions" + ] + }, + { + "id": 36700, + "cuisine": "italian", + "ingredients": [ + "rocket leaves", + "country bread", + "olive oil", + "mozzarella cheese", + "fresh basil leaves", + "tomatoes", + "bottled balsamic vinaigrette" + ] + }, + { + "id": 34420, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "vegetable broth", + "basmati rice", + "baby spinach", + "salt", + "ground black pepper", + "garlic", + "ground cumin", + "fresh dill", + "lemon", + "chopped onion" + ] + }, + { + "id": 28613, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "potatoes", + "ground coriander", + "coriander", + "chopped tomatoes", + "garlic", + "chillies", + "water", + "ginger", + "mustard seeds", + "cumin", + "garam masala", + "chickpeas", + "onions" + ] + }, + { + "id": 8035, + "cuisine": "italian", + "ingredients": [ + "water", + "mushrooms", + "hot sauce", + "green bell pepper", + "lasagna noodles", + "apple cider vinegar", + "onions", + "pasta sauce", + "crumbled blue cheese", + "ricotta cheese", + "eggs", + "garlic powder", + "boneless skinless chicken breasts", + "shredded mozzarella cheese" + ] + }, + { + "id": 2433, + "cuisine": "british", + "ingredients": [ + "bacon drippings", + "chopped fresh chives", + "onions", + "minced garlic", + "salt", + "black pepper", + "bacon", + "cabbage", + "potatoes", + "ham" + ] + }, + { + "id": 8528, + "cuisine": "french", + "ingredients": [ + "sugar", + "beef consomme", + "cheese", + "cognac", + "water", + "butter", + "all-purpose flour", + "pepper", + "french bread", + "salt", + "onions", + "grated parmesan cheese", + "worcestershire sauce", + "beef broth" + ] + }, + { + "id": 48963, + "cuisine": "indian", + "ingredients": [ + "eggs", + "kosher salt", + "russet potatoes", + "ground beef", + "ground cumin", + "sugar", + "ground black pepper", + "malt vinegar", + "chopped cilantro fresh", + "tomato purée", + "water", + "garlic", + "onions", + "bread crumbs", + "chili powder", + "oil", + "ground turmeric" + ] + }, + { + "id": 44566, + "cuisine": "moroccan", + "ingredients": [ + "fennel seeds", + "kosher salt", + "ground black pepper", + "ground coriander", + "chicken thighs", + "tumeric", + "olive oil", + "chicken drumsticks", + "fresh lemon juice", + "ground cumin", + "ground ginger", + "water", + "large garlic cloves", + "blanched almonds", + "chopped cilantro fresh", + "hungarian sweet paprika", + "fresh marjoram", + "eggplant", + "diced tomatoes", + "onions" + ] + }, + { + "id": 26754, + "cuisine": "mexican", + "ingredients": [ + "chives", + "chipotle chile powder", + "mayonaise", + "garlic cloves", + "pepper", + "fresh lime juice", + "salt" + ] + }, + { + "id": 37082, + "cuisine": "italian", + "ingredients": [ + "clams", + "scallops", + "fresh thyme", + "garlic cloves", + "italian tomatoes", + "olive oil", + "salt", + "oregano", + "mussels", + "pepper", + "peeled shrimp", + "spaghetti", + "white wine", + "ground black pepper", + "fresh oregano" + ] + }, + { + "id": 43279, + "cuisine": "greek", + "ingredients": [ + "tomato paste", + "large eggs", + "fresh parsley", + "parmesan cheese", + "ground allspice", + "ground bison", + "salt", + "dried oregano", + "cayenne", + "garlic cloves" + ] + }, + { + "id": 46523, + "cuisine": "japanese", + "ingredients": [ + "coriander seeds", + "oil", + "mango", + "red chili peppers", + "salt", + "jaggery", + "urad dal", + "mustard seeds", + "asafetida", + "grated coconut", + "fenugreek seeds", + "ground turmeric" + ] + }, + { + "id": 6760, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "beef smoked sausage", + "onions", + "half & half", + "corn starch", + "noodles", + "white wine", + "garlic", + "chicken thighs", + "spices", + "red bell pepper", + "canola oil" + ] + }, + { + "id": 34465, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "ground pepper", + "pinenuts", + "garlic cloves", + "angel hair", + "coarse salt", + "olive oil" + ] + }, + { + "id": 42671, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "salt", + "ground pepper", + "butter", + "flour", + "buttermilk", + "sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 23915, + "cuisine": "southern_us", + "ingredients": [ + "garlic chives", + "sherry", + "green garlic", + "scallions", + "water", + "butter", + "cayenne pepper", + "grits", + "pepper", + "lemon wedge", + "salt", + "shrimp", + "whey", + "lemon", + "ear of corn" + ] + }, + { + "id": 36575, + "cuisine": "chinese", + "ingredients": [ + "white vinegar", + "soy sauce", + "condensed chicken broth", + "scallions", + "sugar", + "fresh ginger", + "garlic", + "fried rice", + "eggs", + "water", + "dry sherry", + "corn starch", + "red chili peppers", + "vegetable oil", + "boneless skinless chicken" + ] + }, + { + "id": 3018, + "cuisine": "chinese", + "ingredients": [ + "spices", + "spinach leaves", + "long-grain rice", + "water", + "salt" + ] + }, + { + "id": 10614, + "cuisine": "indian", + "ingredients": [ + "water", + "ground cardamom", + "rose essence", + "dry coconut", + "sugar", + "khoa" + ] + }, + { + "id": 44715, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "almonds", + "potatoes", + "salt", + "coriander", + "clove", + "red chili peppers", + "garam masala", + "yoghurt", + "green chilies", + "tumeric", + "leaves", + "poppyseeds", + "cilantro leaves", + "cumin", + "tomatoes", + "grated coconut", + "chana dal", + "cinnamon", + "oil" + ] + }, + { + "id": 10926, + "cuisine": "greek", + "ingredients": [ + "pepper", + "red pepper flakes", + "dill", + "feta cheese", + "garlic", + "onions", + "olive oil", + "diced tomatoes", + "green beans", + "parsley", + "salt", + "oregano" + ] + }, + { + "id": 39581, + "cuisine": "mexican", + "ingredients": [ + "water", + "flour" + ] + }, + { + "id": 37830, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "tomatillos", + "yellow onion", + "water", + "cilantro", + "cumin", + "lime juice", + "garlic", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 28771, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "heavy cream", + "unsalted butter", + "corn grits", + "water", + "ground white pepper", + "whole milk" + ] + }, + { + "id": 35355, + "cuisine": "japanese", + "ingredients": [ + "butter", + "sugar", + "carrots", + "cardamom pods", + "evaporated milk" + ] + }, + { + "id": 30097, + "cuisine": "french", + "ingredients": [ + "large eggs", + "caviar", + "black pepper", + "crust", + "white bread", + "heavy cream", + "unsalted butter", + "salt" + ] + }, + { + "id": 5506, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "whole wheat pizza crust", + "dried oregano", + "fresh oregano", + "nonfat ricotta cheese", + "boneless skinless chicken breasts", + "olive oil cooking spray", + "artichoke hearts", + "goat cheese", + "plum tomatoes" + ] + }, + { + "id": 4384, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "olive oil", + "freshly ground pepper", + "capers", + "yellow bell pepper", + "pecorino cheese", + "basil", + "fennel seeds", + "fresh tomatoes", + "salt" + ] + }, + { + "id": 15303, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "large eggs", + "crushed red pepper", + "pork loin chops", + "won ton wrappers", + "green onions", + "cilantro leaves", + "fat free less sodium chicken broth", + "peeled fresh ginger", + "salt", + "plum sauce", + "sesame oil", + "garlic cloves" + ] + }, + { + "id": 35179, + "cuisine": "greek", + "ingredients": [ + "grape tomatoes", + "hearts of palm", + "romaine lettuce", + "purple onion", + "pitted kalamata olives", + "cooked chicken breasts", + "greek-style vinaigrette", + "artichoke hearts" + ] + }, + { + "id": 48909, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "lime wedges", + "corn tortillas", + "boneless pork shoulder", + "coriander seeds", + "salsa", + "kosher salt", + "cilantro leaves", + "bay leaf", + "fresh marjoram", + "guacamole", + "garlic cloves" + ] + }, + { + "id": 7094, + "cuisine": "indian", + "ingredients": [ + "sugar", + "green chilies", + "coriander", + "green peas", + "lemon juice", + "garam masala", + "oil", + "fennel seeds", + "salt", + "wheat flour" + ] + }, + { + "id": 11521, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "rice wine", + "dumplings", + "soy sauce", + "mushrooms", + "choy sum", + "chicken stock", + "water chestnuts", + "sesame oil", + "chinese chives", + "lean ground pork", + "green onions", + "shrimp" + ] + }, + { + "id": 36445, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "warm water", + "dried mixed herbs", + "sugar", + "salt", + "whole wheat pastry flour", + "nonstick spray" + ] + }, + { + "id": 33898, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "white miso", + "salmon fillets", + "sliced green onions", + "sake", + "sesame oil", + "soy sauce" + ] + }, + { + "id": 17457, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "large eggs", + "all-purpose flour", + "milk", + "butter", + "sugar", + "baking powder", + "ground nutmeg", + "salt" + ] + }, + { + "id": 30593, + "cuisine": "french", + "ingredients": [ + "sugar", + "unsalted butter", + "carrots", + "water" + ] + }, + { + "id": 10899, + "cuisine": "irish", + "ingredients": [ + "smoked bacon", + "butter", + "rutabaga", + "bay leaves", + "pork loin chops", + "potatoes", + "carrots", + "chicken stock", + "cider", + "cabbage" + ] + }, + { + "id": 48743, + "cuisine": "french", + "ingredients": [ + "sugar", + "raisins", + "armagnac", + "prunes", + "whole milk", + "confectioners sugar", + "unsalted butter", + "salt", + "pure vanilla extract", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 1262, + "cuisine": "southern_us", + "ingredients": [ + "cocoa", + "ice water", + "cornmeal", + "brown sugar", + "flour", + "salt", + "eggs", + "evaporated milk", + "vanilla extract", + "sugar", + "butter", + "cocoa powder" + ] + }, + { + "id": 16783, + "cuisine": "filipino", + "ingredients": [ + "black peppercorns", + "cooking oil", + "yellow onion", + "soy sauce", + "chicken thigh fillets", + "brown sugar", + "bay leaves", + "garlic cloves", + "white vinegar", + "water", + "shallots" + ] + }, + { + "id": 45410, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "vanilla", + "powdered sugar", + "large eggs", + "all-purpose flour", + "granulated sugar", + "salt", + "white wine", + "whole milk", + "apricots" + ] + }, + { + "id": 28733, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon", + "garlic cloves", + "clams", + "grated parmesan cheese", + "linguine", + "ground pepper", + "heavy cream", + "chopped parsley", + "white wine", + "butter", + "salt" + ] + }, + { + "id": 13808, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "creole spice mix", + "smoked sausage", + "onions", + "boneless chicken skinless thigh", + "tomatoes with juice", + "shrimp", + "green bell pepper", + "parsley", + "long-grain rice", + "dried oregano", + "dried thyme", + "garlic", + "celery" + ] + }, + { + "id": 34993, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "chopped onion", + "jalapeno chilies", + "chopped cilantro fresh" + ] + }, + { + "id": 42217, + "cuisine": "spanish", + "ingredients": [ + "flour", + "water", + "salt", + "brown sugar", + "vegetable oil", + "baking powder" + ] + }, + { + "id": 26860, + "cuisine": "thai", + "ingredients": [ + "sugar", + "cilantro stems", + "bird chile", + "cooked chicken breasts", + "tomatoes", + "dry roasted peanuts", + "shrimp", + "fresh lime juice", + "bean threads", + "cider vinegar", + "garlic cloves", + "celery", + "romaine lettuce", + "palm sugar", + "Thai fish sauce", + "onions" + ] + }, + { + "id": 46614, + "cuisine": "moroccan", + "ingredients": [ + "butter", + "ground turmeric", + "couscous", + "slivered almonds", + "onions", + "low salt chicken broth", + "ground cumin" + ] + }, + { + "id": 27866, + "cuisine": "southern_us", + "ingredients": [ + "soy sauce", + "red pepper flakes", + "lime", + "white sugar", + "chicken wings", + "fresh ginger root", + "water", + "worcestershire sauce" + ] + }, + { + "id": 38995, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "tamarind pulp", + "black mustard seeds", + "ground turmeric", + "clove", + "cider vinegar", + "large garlic cloves", + "red bell pepper", + "green cardamom pods", + "kosher salt", + "finely chopped onion", + "cinnamon sticks", + "ground cumin", + "cooked rice", + "olive oil", + "ginger", + "pork shoulder" + ] + }, + { + "id": 34103, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "kosher salt", + "spices", + "chickpeas", + "fresh lemon juice", + "couscous", + "mint", + "sun-dried tomatoes", + "extra-virgin olive oil", + "yams", + "carrots", + "onions", + "turnips", + "tumeric", + "coriander seeds", + "crushed red pepper", + "garlic cloves", + "flat leaf parsley", + "chopped cilantro fresh", + "caraway seeds", + "water", + "red", + "cumin seed", + "brine cured green olives", + "celery" + ] + }, + { + "id": 13588, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "peeled fresh ginger", + "garlic cloves", + "sesame seeds", + "vegetable oil", + "large shrimp", + "ground black pepper", + "dark sesame oil", + "water", + "pineapple juice concentrate", + "red miso" + ] + }, + { + "id": 46332, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "fresh cilantro", + "vegetable stock", + "dark brown sugar", + "toasted sesame oil", + "kosher salt", + "quinoa", + "hot sauce", + "garlic cloves", + "lime zest", + "peanuts", + "broccoli", + "scallions", + "chopped cilantro fresh", + "lime juice", + "vegetable oil", + "firm tofu", + "carrots" + ] + }, + { + "id": 38845, + "cuisine": "vietnamese", + "ingredients": [ + "garlic powder", + "fish sauce", + "dried red chile peppers", + "rice vinegar", + "water", + "splenda no calorie sweetener" + ] + }, + { + "id": 4570, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "boneless skinless chicken breasts", + "garlic cloves", + "brown sugar", + "fresh ginger", + "rice vinegar", + "black pepper", + "red pepper flakes", + "canola oil", + "soy sauce", + "unsalted cashews", + "all-purpose flour" + ] + }, + { + "id": 23162, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "lime wedges", + "corn tortillas", + "avocado", + "olive oil", + "salsa", + "onions", + "fresh cilantro", + "coarse salt", + "pork shoulder", + "chipotle chile", + "ground pepper", + "garlic cloves" + ] + }, + { + "id": 12625, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "garlic", + "whole chicken", + "vegetable oil", + "ground allspice", + "black pepper", + "ginger", + "berries", + "flour", + "salt" + ] + }, + { + "id": 30813, + "cuisine": "french", + "ingredients": [ + "butter", + "eggs", + "white bread", + "ham", + "shredded cheddar cheese" + ] + }, + { + "id": 9025, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "ciabatta", + "parmesan cheese", + "baby spinach", + "garlic cloves", + "eggs", + "unsalted butter", + "anchovy fillets", + "prosciutto", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 40461, + "cuisine": "italian", + "ingredients": [ + "low-fat sour cream", + "butter cooking spray", + "grated parmesan cheese", + "garlic cloves", + "pepper", + "salt", + "baking potatoes", + "sliced green onions" + ] + }, + { + "id": 32837, + "cuisine": "italian", + "ingredients": [ + "day old bread", + "dijon mustard", + "garlic", + "champagne vinegar", + "ground black pepper", + "leeks", + "salt", + "olive oil", + "grated parmesan cheese", + "purple onion", + "asparagus", + "lemon", + "white beans" + ] + }, + { + "id": 19393, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "tomato salsa", + "avocado", + "pepper jack", + "rotisserie chicken", + "refried beans", + "salt", + "romaine lettuce", + "flour tortillas" + ] + }, + { + "id": 37994, + "cuisine": "russian", + "ingredients": [ + "ground pork", + "ground black pepper", + "ground beef", + "eggs", + "salt", + "flour", + "onions" + ] + }, + { + "id": 39655, + "cuisine": "italian", + "ingredients": [ + "chopped green bell pepper", + "ricotta cheese", + "shredded mozzarella cheese", + "grated parmesan cheese", + "fresh mushrooms", + "finely chopped onion", + "salt", + "italian seasoning", + "dough", + "pizza sauce", + "pepperoni" + ] + }, + { + "id": 42762, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "turkey legs", + "red pepper flakes", + "white onion", + "green onions", + "black pepper", + "black-eyed peas", + "garlic", + "smoked turkey", + "meat" + ] + }, + { + "id": 22744, + "cuisine": "french", + "ingredients": [ + "bottled clam juice", + "aioli", + "fresh lemon juice", + "large egg yolks", + "bay leaves", + "orange peel", + "saffron threads", + "fennel bulb", + "extra-virgin olive oil", + "fresh chervil", + "halibut fillets", + "leeks", + "carrots" + ] + }, + { + "id": 8921, + "cuisine": "greek", + "ingredients": [ + "capers", + "extra-virgin olive oil", + "fresh oregano", + "sliced kalamata olives", + "salt", + "dried oregano", + "pepper", + "garlic", + "feta cheese crumbles", + "flatbread", + "diced tomatoes", + "yellow onion", + "ground lamb" + ] + }, + { + "id": 15865, + "cuisine": "indian", + "ingredients": [ + "ground red pepper", + "english cucumber", + "ground cumin", + "lime", + "salt", + "greek yogurt", + "garlic", + "scallions", + "boneless skinless chicken breasts", + "ground coriander", + "chopped fresh mint" + ] + }, + { + "id": 10155, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "white cornmeal", + "diced onions", + "large eggs", + "sugar", + "vegetable oil", + "self rising flour" + ] + }, + { + "id": 26764, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "onions", + "eggs", + "frozen peas and carrots", + "sesame oil", + "soy sauce", + "cooked white rice" + ] + }, + { + "id": 47386, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "sesame seeds", + "rice vinegar", + "honey", + "green onions", + "soy sauce", + "hoisin sauce", + "hot chili sauce", + "chicken wings", + "fresh ginger", + "garlic" + ] + }, + { + "id": 46000, + "cuisine": "southern_us", + "ingredients": [ + "chicken breasts", + "chicken broth", + "carrots", + "buttermilk biscuits", + "old bay seasoning", + "flour", + "celery" + ] + }, + { + "id": 32370, + "cuisine": "mexican", + "ingredients": [ + "buffalo sauce", + "crumbled blue cheese", + "coarse kosher salt", + "flour tortillas", + "cream cheese", + "chicken breasts", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 9524, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "chunky peanut butter", + "cucumber", + "light brown sugar", + "fresh cilantro", + "rice vinegar", + "minced ginger", + "sesame oil", + "boneless skinless chicken breast halves", + "romaine lettuce", + "lime", + "garlic cloves" + ] + }, + { + "id": 36179, + "cuisine": "spanish", + "ingredients": [ + "hog casings", + "hungarian paprika", + "ancho powder", + "rioja", + "minced garlic", + "pork shoulder butt", + "spanish paprika", + "olive oil", + "smoked sweet Spanish paprika", + "fatback", + "kosher salt", + "ground black pepper", + "dry red wine" + ] + }, + { + "id": 3476, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "diced tomatoes", + "large shrimp", + "large garlic cloves", + "fresh lemon juice", + "red vermouth", + "capellini", + "heavy cream", + "dried oregano" + ] + }, + { + "id": 8966, + "cuisine": "mexican", + "ingredients": [ + "lime", + "ice", + "fresh mint", + "watermelon", + "water", + "white sugar" + ] + }, + { + "id": 19183, + "cuisine": "mexican", + "ingredients": [ + "stew meat", + "sweet onion", + "ground black pepper", + "diced tomatoes", + "cayenne pepper", + "chorizo sausage", + "tomato paste", + "pepper", + "pork stew meat", + "Mexican oregano", + "salt", + "lard", + "ground cumin", + "chile powder", + "picante sauce", + "dried basil", + "jalapeno chilies", + "garlic", + "beer", + "unsweetened cocoa powder", + "green chile", + "smoked bacon", + "garlic powder", + "hot chili powder", + "salsa", + "marjoram" + ] + }, + { + "id": 34452, + "cuisine": "vietnamese", + "ingredients": [ + "garlic chives", + "water", + "fresh lime juice", + "rice paper", + "white vinegar", + "chiles", + "mint sprigs", + "tiger prawn", + "fish sauce", + "leaves", + "vermicelli noodles", + "pork neck", + "sugar", + "garlic", + "iceberg lettuce" + ] + }, + { + "id": 26453, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "fresh lime juice", + "sea salt", + "vidalia onion", + "cumin seed", + "tomatillos", + "chopped cilantro fresh" + ] + }, + { + "id": 1282, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "polenta", + "low sodium chicken stock", + "sea salt", + "peppercorns" + ] + }, + { + "id": 42293, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "baking powder", + "light brown sugar", + "large eggs", + "all-purpose flour", + "pure vanilla extract", + "granulated sugar", + "fine sea salt", + "peaches", + "half & half", + "corn starch" + ] + }, + { + "id": 8179, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "shallots", + "pecorino romano cheese", + "arborio rice", + "leeks", + "chopped fresh thyme", + "chopped fresh sage", + "ground black pepper", + "turkey stock", + "salt", + "cooked turkey", + "dry white wine", + "butter" + ] + }, + { + "id": 11669, + "cuisine": "irish", + "ingredients": [ + "suet", + "cooked barley", + "skim milk", + "dried mint flakes", + "bread", + "ground black pepper", + "oatmeal", + "pork blood", + "salt" + ] + }, + { + "id": 34921, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "cheddar cheese", + "green chilies", + "eggs", + "all-purpose flour", + "milk", + "monterey jack" + ] + }, + { + "id": 26710, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "mozzarella cheese", + "purple onion", + "dried oregano", + "italian sausage", + "dry yeast", + "all-purpose flour", + "warm water", + "ricotta cheese", + "red bell pepper" + ] + }, + { + "id": 17880, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken schmaltz", + "ground black pepper", + "bay leaves", + "coarse sea salt", + "smoked sausage", + "okra", + "chicken", + "chicken stock", + "andouille sausage", + "fresh thyme", + "Tabasco Pepper Sauce", + "white rice", + "cayenne pepper", + "celery", + "tomatoes", + "garlic powder", + "flour", + "spices", + "garlic", + "ground allspice", + "onions", + "celery salt", + "green bell pepper", + "file powder", + "onion powder", + "worcestershire sauce", + "salt", + "sweet paprika" + ] + }, + { + "id": 34117, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "rice wine", + "dried red chile peppers", + "boneless chicken skinless thigh", + "oil", + "soy sauce", + "rice vinegar", + "eggs", + "green onions", + "corn starch" + ] + }, + { + "id": 19475, + "cuisine": "chinese", + "ingredients": [ + "boneless skinless chicken breasts", + "sesame seeds", + "teriyaki sauce", + "crushed red pepper flakes", + "chunky peanut butter" + ] + }, + { + "id": 36465, + "cuisine": "chinese", + "ingredients": [ + "water", + "black tea leaves", + "coconut sugar", + "large eggs", + "cinnamon sticks", + "black peppercorns", + "orange", + "star anise", + "soy sauce", + "ginseng" + ] + }, + { + "id": 47935, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "buttermilk", + "maple sugar", + "large eggs", + "vanilla extract", + "white peaches", + "baking powder", + "all-purpose flour", + "unsalted butter", + "bacon", + "canola oil" + ] + }, + { + "id": 18392, + "cuisine": "spanish", + "ingredients": [ + "tomato juice", + "salsa", + "chopped cilantro fresh", + "canned chicken broth", + "balsamic vinegar", + "red bell pepper", + "hot pepper sauce", + "cucumber", + "ground cumin", + "olive oil", + "large garlic cloves", + "onions" + ] + }, + { + "id": 7041, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "bay leaves", + "cayenne pepper", + "cooked white rice", + "chicken stock", + "hot pepper sauce", + "salt", + "shrimp", + "ground black pepper", + "vegetable oil", + "okra", + "onions", + "green bell pepper", + "file powder", + "all-purpose flour", + "celery" + ] + }, + { + "id": 29842, + "cuisine": "cajun_creole", + "ingredients": [ + "pie crust", + "flour", + "sour cream", + "brown sugar", + "salt", + "eggs", + "vanilla extract", + "granulated sugar", + "chopped pecans" + ] + }, + { + "id": 3531, + "cuisine": "chinese", + "ingredients": [ + "green cabbage", + "green onions", + "ground pork", + "boiling water", + "soy sauce", + "sesame oil", + "garlic", + "fresh ginger", + "coarse salt", + "corn starch", + "flour", + "dry sherry", + "chopped cilantro" + ] + }, + { + "id": 17091, + "cuisine": "jamaican", + "ingredients": [ + "all-purpose flour", + "bananas", + "large eggs", + "skim milk" + ] + }, + { + "id": 21841, + "cuisine": "chinese", + "ingredients": [ + "cooked rice", + "skinless chicken breasts" + ] + }, + { + "id": 26944, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "red wine vinegar", + "fresh parsley", + "olive oil", + "brown lentils", + "boneless skinless chicken breast halves", + "water", + "salt", + "onions", + "chili powder", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 5337, + "cuisine": "brazilian", + "ingredients": [ + "cold water", + "lime", + "sugar", + "sweetened condensed milk" + ] + }, + { + "id": 17199, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "pork chops", + "cilantro", + "comino", + "lime", + "serrano peppers", + "green pepper", + "white onion", + "potatoes", + "salt", + "tomatoes", + "olive oil", + "tomatillos", + "garlic cloves" + ] + }, + { + "id": 10679, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "lemon wedge", + "garlic cloves", + "pitted kalamata olives", + "feta cheese", + "salt", + "dried oregano", + "spinach", + "sun-dried tomatoes", + "white rice", + "boiling water", + "pinenuts", + "ground black pepper", + "chickpeas" + ] + }, + { + "id": 48985, + "cuisine": "cajun_creole", + "ingredients": [ + "cane vinegar", + "canola oil", + "turbinado", + "creole seasoning", + "dried cascabel chile", + "satsuma orange", + "flounder fillets" + ] + }, + { + "id": 48636, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "garlic", + "sun-dried tomatoes", + "fresh mushrooms", + "green olives", + "ground black pepper", + "spaghettini", + "olive oil", + "purple onion" + ] + }, + { + "id": 48612, + "cuisine": "indian", + "ingredients": [ + "pepper", + "garam masala", + "paneer", + "ground cayenne pepper", + "ground turmeric", + "fresh cilantro", + "mustard greens", + "salt", + "basmati rice", + "ground cumin", + "water", + "yoghurt", + "purple onion", + "ghee", + "mango", + "spinach", + "kale", + "ginger", + "garlic cloves", + "naan" + ] + }, + { + "id": 31495, + "cuisine": "italian", + "ingredients": [ + "warm water", + "salt", + "olive oil", + "honey", + "bread flour", + "dry yeast" + ] + }, + { + "id": 20134, + "cuisine": "cajun_creole", + "ingredients": [ + "butter", + "whole okra", + "medium shrimp", + "andouille sausage", + "hot sauce", + "cajun seasoning", + "onions" + ] + }, + { + "id": 27662, + "cuisine": "italian", + "ingredients": [ + "loosely packed fresh basil leaves", + "parmesan cheese", + "chopped pecans", + "large garlic cloves", + "olive oil", + "salt" + ] + }, + { + "id": 1914, + "cuisine": "indian", + "ingredients": [ + "milk", + "garam masala", + "paneer", + "oil", + "chopped tomatoes", + "bay leaves", + "green chilies", + "chopped cilantro", + "amchur", + "coriander powder", + "cayenne pepper", + "corn starch", + "tumeric", + "vegetables", + "ginger", + "cumin seed", + "asafetida" + ] + }, + { + "id": 25022, + "cuisine": "southern_us", + "ingredients": [ + "vidalia onion", + "freshly ground pepper", + "mayonaise", + "pimentos", + "sharp cheddar cheese" + ] + }, + { + "id": 18364, + "cuisine": "greek", + "ingredients": [ + "sliced cucumber", + "fresh mushrooms", + "ripe olives", + "sub buns", + "feta cheese crumbles", + "Balsamico Bianco", + "lettuce leaves", + "ham", + "dried oregano", + "cherry tomatoes", + "garlic", + "turkey breast" + ] + }, + { + "id": 9356, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "mushrooms", + "garlic", + "fresh parsley", + "tomato paste", + "minced onion", + "butter", + "celery", + "olive oil", + "lean ground beef", + "beef broth", + "spaghetti", + "dried basil", + "dried mint flakes", + "salt", + "white sugar" + ] + }, + { + "id": 43606, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "whole peeled tomatoes", + "cilantro leaves", + "carrots", + "tomato paste", + "curry powder", + "ground red pepper", + "brown lentils", + "ground lamb", + "water", + "jalapeno chilies", + "chopped onion", + "greek yogurt", + "lower sodium chicken broth", + "olive oil", + "light coconut milk", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 16165, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "scallions", + "fish sauce", + "meat bones", + "noodles", + "thai basil", + "mung bean sprouts", + "pork", + "yellow onion", + "chopped cilantro fresh" + ] + }, + { + "id": 26178, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "lemongrass", + "chicken breasts", + "chopped cilantro", + "chili flakes", + "bell pepper", + "sliced mushrooms", + "fish sauce", + "green onions", + "coconut milk", + "kaffir lime leaves", + "cherry tomatoes", + "ginger" + ] + }, + { + "id": 18238, + "cuisine": "french", + "ingredients": [ + "steamed rice", + "peas", + "carrots", + "dry white wine", + "all-purpose flour", + "onions", + "butter", + "veal for stew", + "dried thyme", + "whipping cream", + "low salt chicken broth" + ] + }, + { + "id": 23022, + "cuisine": "french", + "ingredients": [ + "fillet red snapper", + "purple onion", + "fresh lemon", + "fennel bulb", + "couscous", + "capers", + "fresh tarragon" + ] + }, + { + "id": 7759, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vanilla", + "bread", + "half & half", + "large eggs", + "liqueur", + "sugar", + "golden raisins" + ] + }, + { + "id": 5481, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "sauce", + "tortillas", + "avocado", + "large shrimp" + ] + }, + { + "id": 43464, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "milk", + "hot sauce", + "grits", + "pepper", + "ranch dressing", + "corn starch", + "coke", + "boneless chuck roast", + "chili sauce", + "shredded cheddar cheese", + "worcestershire sauce", + "garlic salt" + ] + }, + { + "id": 25503, + "cuisine": "italian", + "ingredients": [ + "baby spinach", + "cooked shrimp", + "Alfredo sauce", + "vegetable broth", + "pesto sauce", + "paprika", + "ravioli", + "cheese" + ] + }, + { + "id": 21604, + "cuisine": "italian", + "ingredients": [ + "red wine", + "garlic cloves", + "spaghetti", + "grated parmesan cheese", + "chopped celery", + "carrots", + "olive oil", + "diced tomatoes", + "meat loaf mix", + "half & half", + "fresh oregano", + "onions" + ] + }, + { + "id": 39822, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "whipping cream", + "table salt", + "asiago", + "white cornmeal", + "reduced sodium chicken broth", + "white cheddar cheese", + "grits", + "frozen chopped spinach", + "large eggs", + "pork sausages" + ] + }, + { + "id": 46685, + "cuisine": "brazilian", + "ingredients": [ + "crushed ice", + "cachaca", + "lime", + "superfine sugar" + ] + }, + { + "id": 8811, + "cuisine": "cajun_creole", + "ingredients": [ + "creole seasoning", + "corn kernels", + "onions", + "catfish fillets", + "okra", + "extra-virgin olive oil" + ] + }, + { + "id": 35139, + "cuisine": "indian", + "ingredients": [ + "cold water", + "curry powder", + "fresh ginger root", + "purple onion", + "red curry paste", + "ground turmeric", + "shortening", + "olive oil", + "garlic", + "cilantro leaves", + "lamb", + "ground cinnamon", + "milk", + "butter", + "salt", + "cayenne pepper", + "ground cumin", + "white wine", + "eggplant", + "chopped celery", + "all-purpose flour", + "red bell pepper" + ] + }, + { + "id": 23201, + "cuisine": "italian", + "ingredients": [ + "fish fillets", + "unsalted butter", + "shallots", + "freshly ground pepper", + "onions", + "mussels", + "dried basil", + "bay leaves", + "Italian parsley leaves", + "country bread", + "large shrimp", + "rub", + "olive oil", + "dry white wine", + "crushed red pepper flakes", + "flat leaf parsley", + "kosher salt", + "whole peeled tomatoes", + "clam juice", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 44838, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "chili powder", + "salsa", + "ground cayenne pepper", + "ground cumin", + "green bell pepper", + "flour tortillas", + "shredded sharp cheddar cheese", + "smoked paprika", + "fresh lime juice", + "chicken broth", + "boneless chicken breast", + "lime wedges", + "yellow onion", + "sour cream", + "black pepper", + "guacamole", + "salt", + "red bell pepper", + "dried oregano" + ] + }, + { + "id": 13037, + "cuisine": "french", + "ingredients": [ + "large eggs", + "bittersweet chocolate", + "baguette", + "vanilla", + "sugar", + "half & half", + "unsalted butter", + "salt" + ] + }, + { + "id": 28142, + "cuisine": "jamaican", + "ingredients": [ + "curry powder", + "potatoes", + "cumin seed", + "chicken", + "black pepper", + "hot pepper sauce", + "salt", + "red bell pepper", + "green bell pepper", + "dried thyme", + "garlic", + "lemon juice", + "water", + "cooking oil", + "tomato ketchup", + "onions" + ] + }, + { + "id": 21513, + "cuisine": "italian", + "ingredients": [ + "bottled clam juice", + "cayenne pepper", + "large shrimp", + "fresh basil", + "dry white wine", + "dried oregano", + "fennel seeds", + "olive oil", + "crabmeat", + "clams", + "crushed tomatoes", + "chopped onion", + "chopped garlic" + ] + }, + { + "id": 16374, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "butter", + "pears", + "italian sausage", + "shallots", + "walnuts", + "brown sugar", + "balsamic vinegar", + "gorgonzola", + "olive oil", + "pizza doughs" + ] + }, + { + "id": 48797, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "creole seasoning", + "red bell pepper", + "butter", + "sausages", + "green bell pepper", + "canadian bacon", + "diced tomatoes", + "shrimp" + ] + }, + { + "id": 13016, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "white rice", + "carrots", + "fresh peas", + "salt", + "serrano chile", + "corn kernels", + "cilantro sprigs", + "hot water", + "tomatoes", + "corn oil", + "garlic cloves" + ] + }, + { + "id": 45687, + "cuisine": "italian", + "ingredients": [ + "sugar", + "dry red wine", + "chicken livers", + "orange", + "duck", + "sage leaves", + "honey", + "garlic cloves", + "water", + "extra-virgin olive oil", + "pears" + ] + }, + { + "id": 2618, + "cuisine": "vietnamese", + "ingredients": [ + "brown sugar", + "vinegar", + "purple onion", + "squash", + "olive oil", + "butter", + "beef broth", + "pepper", + "bell pepper", + "salt", + "beef", + "garlic", + "carrots" + ] + }, + { + "id": 4867, + "cuisine": "cajun_creole", + "ingredients": [ + "low sodium chicken broth", + "creole seasoning", + "cooked ham", + "long-grain rice", + "diced tomatoes" + ] + }, + { + "id": 13543, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "sweet potatoes", + "brown sugar", + "heavy cream", + "eggs", + "condensed tomato soup", + "pie crust", + "ground nutmeg", + "vanilla extract" + ] + }, + { + "id": 38996, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "oil", + "garlic paste", + "cilantro leaves", + "onions", + "black peppercorns", + "salt", + "lemon juice", + "garam masala", + "green chilies", + "chicken" + ] + }, + { + "id": 6724, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "sake", + "konbu", + "bonito flakes", + "soy sauce" + ] + }, + { + "id": 4971, + "cuisine": "mexican", + "ingredients": [ + "boneless pork shoulder", + "chopped onion", + "Anaheim chile", + "garlic cloves", + "water", + "cumin seed", + "vegetable oil" + ] + }, + { + "id": 13383, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "flour tortillas", + "salt", + "tomatoes", + "milk", + "purple onion", + "pork sausages", + "minced garlic", + "butter", + "chopped cilantro fresh", + "shredded cheddar cheese", + "jalapeno chilies", + "taco seasoning" + ] + }, + { + "id": 47762, + "cuisine": "japanese", + "ingredients": [ + "sake", + "kamaboko", + "dried bonito flakes", + "shrimp", + "water", + "Tokyo negi", + "konbu", + "soy sauce", + "shichimi togarashi", + "soba noodles", + "mirin", + "salt", + "komatsuna" + ] + }, + { + "id": 49576, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "papaya", + "scotch bonnet chile", + "onions", + "lime juice", + "green onions", + "hot sauce", + "pepper", + "sliced cucumber", + "salt", + "ground cumin", + "avocado", + "fresh cilantro", + "rosé wine", + "garlic cloves" + ] + }, + { + "id": 30202, + "cuisine": "italian", + "ingredients": [ + "brandy", + "half & half", + "pure vanilla extract", + "unsalted butter", + "panettone", + "golden raisins", + "sugar", + "large eggs" + ] + }, + { + "id": 23720, + "cuisine": "french", + "ingredients": [ + "butter", + "chocolate bars", + "whipping cream" + ] + }, + { + "id": 30706, + "cuisine": "mexican", + "ingredients": [ + "corn", + "salt", + "crema mexicana", + "lime wedges", + "white cheese", + "chili powder", + "hot sauce", + "lime juice", + "butter" + ] + }, + { + "id": 14023, + "cuisine": "italian", + "ingredients": [ + "sambuca", + "light brown sugar", + "fat free frozen top whip", + "vanilla", + "instant espresso granules", + "boiling water" + ] + }, + { + "id": 30071, + "cuisine": "korean", + "ingredients": [ + "cooking spray", + "garlic cloves", + "brown sugar", + "top sirloin steak", + "low sodium soy sauce", + "peeled fresh ginger", + "mirin", + "dark sesame oil" + ] + }, + { + "id": 17692, + "cuisine": "russian", + "ingredients": [ + "sugar", + "vegetable oil", + "reduced sodium chicken broth", + "dill", + "pierogi", + "diced tomatoes", + "caraway seeds", + "Turkish bay leaves", + "onions" + ] + }, + { + "id": 6454, + "cuisine": "french", + "ingredients": [ + "active dry yeast", + "salt", + "salmon roe", + "melted butter", + "whole milk", + "buckwheat flour", + "sugar", + "butter", + "all-purpose flour", + "smoked salmon", + "large eggs", + "crème fraîche", + "dill tips" + ] + }, + { + "id": 855, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "Tabasco Pepper Sauce", + "ground beef", + "spring onions", + "worcestershire sauce", + "brown sugar", + "sesame oil", + "salt", + "minced garlic", + "calamansi juice" + ] + }, + { + "id": 35959, + "cuisine": "chinese", + "ingredients": [ + "plain flour", + "salt", + "spring onions", + "warm water", + "toasted sesame oil", + "vegetable oil" + ] + }, + { + "id": 20143, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "green chilies", + "chicken broth", + "salt", + "tequila", + "boneless pork shoulder", + "green onions", + "garlic cloves", + "fresh cilantro", + "salsa" + ] + }, + { + "id": 31565, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "shredded carrots", + "ground pork", + "roasted peanuts", + "bamboo shoots", + "eggs", + "honey", + "green onions", + "salt", + "black bean sauce with garlic", + "canola oil", + "ground ginger", + "jasmine rice", + "water chestnuts", + "garlic", + "corn starch", + "panko breadcrumbs", + "soy sauce", + "fresh ginger", + "red pepper flakes", + "sauce", + "onions" + ] + }, + { + "id": 23602, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "kosher salt", + "italian seasoning", + "garlic powder", + "melted butter", + "frozen bread dough" + ] + }, + { + "id": 47809, + "cuisine": "greek", + "ingredients": [ + "branzino", + "dried oregano", + "kosher salt", + "black pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 33635, + "cuisine": "jamaican", + "ingredients": [ + "low sodium soy sauce", + "chipotle chile", + "green onions", + "ground allspice", + "lettuce", + "mayonaise", + "jalapeno chilies", + "garlic", + "ground beef", + "brown sugar", + "dried thyme", + "fresh orange juice", + "adobo sauce", + "tomatoes", + "hamburger buns", + "condiments", + "yellow onion", + "canola oil" + ] + }, + { + "id": 7006, + "cuisine": "italian", + "ingredients": [ + "unflavored gelatin", + "vanilla extract", + "half & half", + "cold water", + "heavy cream", + "sugar" + ] + }, + { + "id": 5962, + "cuisine": "mexican", + "ingredients": [ + "reduced fat cream cheese", + "taco meat", + "tortilla chips", + "salsa", + "Mexican cheese" + ] + }, + { + "id": 49420, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "juice", + "sugar", + "salt", + "garlic powder", + "cayenne pepper", + "mayonaise", + "paprika", + "ground cumin" + ] + }, + { + "id": 35526, + "cuisine": "italian", + "ingredients": [ + "broccoli rabe", + "lemon rind", + "water", + "ground black pepper", + "garlic cloves", + "olive oil", + "crushed red pepper", + "fresh lemon juice", + "fresh parmesan cheese", + "salt", + "whole wheat breadcrumbs" + ] + }, + { + "id": 41967, + "cuisine": "filipino", + "ingredients": [ + "vinegar", + "oil", + "shrimp paste", + "onions", + "tomatoes", + "garlic", + "sugar", + "rice" + ] + }, + { + "id": 43257, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "fresh basil", + "garlic cloves", + "ground black pepper", + "plum tomatoes", + "fine sea salt" + ] + }, + { + "id": 38956, + "cuisine": "southern_us", + "ingredients": [ + "jack cheese", + "macaroni", + "all-purpose flour", + "milk", + "shredded sharp cheddar cheese", + "pork", + "butter", + "ground mustard", + "ground black pepper", + "salt" + ] + }, + { + "id": 24588, + "cuisine": "jamaican", + "ingredients": [ + "white vinegar", + "jerk marinade", + "bay leaves", + "garlic", + "dark brown sugar", + "soy sauce", + "fresh ginger", + "barbecue sauce", + "salt", + "fresh lime juice", + "sugar", + "dried thyme", + "dark rum", + "scotch", + "scallions", + "ketchup", + "hot pepper sauce", + "cinnamon", + "ground allspice", + "chicken pieces" + ] + }, + { + "id": 16583, + "cuisine": "filipino", + "ingredients": [ + "pork belly", + "Sriracha", + "refrigerated biscuits", + "garlic cloves", + "sugar", + "water", + "flour", + "cilantro", + "soy sauce", + "steamer", + "sliced cucumber", + "salt", + "brown sugar", + "pepper", + "shredded carrots", + "apple cider vinegar", + "bay leaf" + ] + }, + { + "id": 5809, + "cuisine": "thai", + "ingredients": [ + "half & half", + "sugar", + "ice", + "teas", + "water" + ] + }, + { + "id": 17235, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "extra-virgin olive oil", + "serrano chile", + "kosher salt", + "mustard powder", + "salmon fillets", + "cayenne pepper", + "ground turmeric", + "brown mustard seeds", + "cumin seed" + ] + }, + { + "id": 3234, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "butter", + "sour cream", + "chicken broth", + "potatoes", + "salt", + "milk", + "bacon", + "cheddar cheese", + "green onions", + "all-purpose flour" + ] + }, + { + "id": 41878, + "cuisine": "greek", + "ingredients": [ + "mini phyllo dough shells", + "kalamata", + "pecans", + "shredded cheddar cheese", + "pinenuts", + "mayonaise", + "pimentos" + ] + }, + { + "id": 44485, + "cuisine": "russian", + "ingredients": [ + "almonds", + "raisins", + "sugar", + "butter", + "yeast", + "eggs", + "flour", + "salt", + "milk", + "lemon" + ] + }, + { + "id": 31923, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "low sodium chicken broth", + "red pepper flakes", + "salt", + "onions", + "ground chuck", + "grated parmesan cheese", + "boneless skinless chicken breasts", + "cheese", + "sour cream", + "pasta sauce", + "garlic powder", + "basil leaves", + "basil", + "bow-tie pasta", + "italian seasoning", + "mozzarella cheese", + "marinara sauce", + "whole milk ricotta cheese", + "garlic", + "bows" + ] + }, + { + "id": 20248, + "cuisine": "italian", + "ingredients": [ + "whipping cream", + "capers", + "pesto sauce", + "cheese", + "pinenuts" + ] + }, + { + "id": 36399, + "cuisine": "irish", + "ingredients": [ + "eggs", + "baking soda", + "raisins", + "cinnamon sticks", + "water", + "whole cloves", + "all-purpose flour", + "sugar", + "ground nutmeg", + "salt", + "ground ginger", + "coriander seeds", + "butter", + "allspice berries" + ] + }, + { + "id": 7637, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "granulated sugar", + "hazelnuts", + "vanilla extract", + "large egg whites", + "salt", + "brown sugar", + "semisweet chocolate" + ] + }, + { + "id": 459, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "pie crust", + "large eggs", + "pumpkin pie spice", + "brown sugar", + "cinnamon", + "sweetened condensed milk", + "sweet potatoes & yams", + "vanilla" + ] + }, + { + "id": 8114, + "cuisine": "italian", + "ingredients": [ + "milk", + "salt", + "oregano", + "eggs", + "ground black pepper", + "fresh parsley", + "garlic powder", + "ground beef", + "bread crumbs", + "grated parmesan cheese", + "dried parsley" + ] + }, + { + "id": 26400, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "sweet potatoes", + "milk", + "self-rising cornmeal", + "large eggs", + "sugar", + "butter" + ] + }, + { + "id": 5748, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "fresh spinach", + "prosciutto", + "fettucine", + "fresh parmesan cheese", + "black pepper", + "large eggs" + ] + }, + { + "id": 18512, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "lemon juice", + "tomatoes", + "salt", + "pepper", + "chopped onion", + "chile pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 38379, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "sour cream", + "shredded cheddar cheese", + "shredded lettuce", + "olives", + "taco shells", + "chopped tomatoes", + "ground beef", + "refried beans", + "salsa" + ] + }, + { + "id": 4277, + "cuisine": "indian", + "ingredients": [ + "grated coconut", + "red pepper", + "chopped onion", + "chicken", + "curry leaves", + "olive oil", + "garlic", + "onions", + "tumeric", + "coriander powder", + "salt", + "peppercorns", + "tomato paste", + "curry powder", + "ginger", + "coconut milk" + ] + }, + { + "id": 35678, + "cuisine": "korean", + "ingredients": [ + "eggs", + "minced garlic", + "shiitake", + "sesame oil", + "minced beef", + "beansprouts", + "sugar", + "steamed rice", + "mushrooms", + "salt", + "seaweed", + "spinach", + "water", + "vinegar", + "vegetable oil", + "rice bran oil", + "soy sauce", + "roasted sesame seeds", + "meat", + "Gochujang base", + "carrots" + ] + }, + { + "id": 15512, + "cuisine": "french", + "ingredients": [ + "half & half", + "large egg yolks", + "sugar", + "whipping cream", + "semisweet chocolate" + ] + }, + { + "id": 43396, + "cuisine": "russian", + "ingredients": [ + "parsnips", + "ground black pepper", + "extra-virgin olive oil", + "sour cream", + "savoy cabbage", + "granny smith apples", + "red wine vinegar", + "beets", + "fresh dill", + "fresh thyme", + "salt", + "onions", + "chicken stock", + "honey", + "bacon", + "carrots" + ] + }, + { + "id": 2750, + "cuisine": "italian", + "ingredients": [ + "lemon zest", + "crushed red pepper", + "chopped parsley", + "capers", + "butter", + "sauce", + "angel hair", + "shallots", + "salt", + "artichoke hearts", + "extra-virgin olive oil", + "lemon juice" + ] + }, + { + "id": 4719, + "cuisine": "french", + "ingredients": [ + "salt", + "unsalted butter", + "grated Gruyère cheese", + "large eggs", + "dill seed", + "water", + "all-purpose flour" + ] + }, + { + "id": 11401, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "cream", + "butter", + "cayenne pepper", + "black pepper", + "jalapeno chilies", + "garlic", + "chopped cilantro fresh", + "plain yogurt", + "boneless skinless chicken breasts", + "salt", + "ground cumin", + "tomato sauce", + "fresh ginger", + "paprika", + "lemon juice" + ] + }, + { + "id": 36258, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "ground nutmeg", + "apples", + "carrots", + "bread crumbs", + "butter", + "all-purpose flour", + "baking soda", + "raisins", + "ground allspice", + "eggs", + "baking powder", + "salt", + "white sugar" + ] + }, + { + "id": 7231, + "cuisine": "indian", + "ingredients": [ + "spinach", + "ginger", + "ground cumin", + "whole wheat flour", + "green chilies", + "amchur", + "salt", + "seeds", + "oil" + ] + }, + { + "id": 13619, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ground pepper", + "garlic cloves", + "ground oregano", + "crushed tomatoes", + "red pepper flakes", + "flat leaf parsley", + "lean ground turkey", + "basil leaves", + "whole wheat breadcrumbs", + "olive oil", + "salt", + "onions" + ] + }, + { + "id": 1163, + "cuisine": "indian", + "ingredients": [ + "green chile", + "garlic", + "black mustard seeds", + "chopped cilantro", + "tomatoes", + "vegetable oil", + "cumin seed", + "coconut milk", + "mint leaves", + "cayenne pepper", + "lemon juice", + "corn kernels", + "salt", + "waxy potatoes" + ] + }, + { + "id": 34843, + "cuisine": "italian", + "ingredients": [ + "milk chocolate", + "all-purpose flour", + "hazelnut butter", + "unsalted butter", + "sugar", + "heavy cream", + "hazelnuts", + "bittersweet chocolate" + ] + }, + { + "id": 16711, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "diced tomatoes", + "onions", + "black beans", + "barbecue sauce", + "red bell pepper", + "seitan", + "pepper", + "green onions", + "cooked white rice", + "flour tortillas", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 14169, + "cuisine": "french", + "ingredients": [ + "large eggs", + "fresh raspberries", + "unsalted butter", + "salt", + "bittersweet chocolate", + "whole milk", + "dark brown sugar", + "granulated sugar", + "all-purpose flour", + "unsweetened cocoa powder" + ] + }, + { + "id": 1788, + "cuisine": "british", + "ingredients": [ + "sausage casings", + "pastry shell", + "pepper", + "salt", + "ground cloves", + "lean ground beef", + "ground cinnamon", + "potatoes", + "onions" + ] + }, + { + "id": 29073, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "shallots", + "french bread", + "olive oil", + "pepper" + ] + }, + { + "id": 20178, + "cuisine": "mexican", + "ingredients": [ + "low-fat sour cream", + "quinoa", + "garlic cloves", + "shredded reduced fat cheddar cheese", + "salt", + "chopped cilantro fresh", + "reduced sodium chicken broth", + "diced tomatoes", + "pinto beans", + "olive oil", + "frozen corn kernels", + "cumin" + ] + }, + { + "id": 30745, + "cuisine": "mexican", + "ingredients": [ + "heavy cream", + "pepper", + "garlic", + "mayonaise", + "cilantro", + "chile pepper", + "salt" + ] + }, + { + "id": 21844, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "cream cheese, soften", + "pinenuts", + "white wine vinegar", + "figs", + "unsalted butter", + "fig jam", + "basil pesto sauce", + "large eggs", + "crackers" + ] + }, + { + "id": 41502, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "sun-dried tomatoes in oil", + "toasted pine nuts", + "garlic cloves", + "arugula", + "pasta", + "lemon juice" + ] + }, + { + "id": 37269, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "baking powder", + "white cornmeal", + "half & half", + "softened butter", + "vegetable oil", + "boiling water" + ] + }, + { + "id": 6716, + "cuisine": "moroccan", + "ingredients": [ + "paprika", + "cayenne", + "coriander", + "cinnamon", + "allspice", + "clove", + "cardamom" + ] + }, + { + "id": 2302, + "cuisine": "filipino", + "ingredients": [ + "water", + "garlic cloves", + "cabbage", + "seasoning", + "fresh green bean", + "red bell pepper", + "soy sauce", + "chicken stock cubes", + "onions", + "tofu", + "rice noodles", + "carrots", + "canola oil" + ] + }, + { + "id": 40704, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "green tomatoes", + "cornmeal", + "cayenne", + "buttermilk", + "pepper", + "vegetable oil", + "mayonaise", + "self rising flour", + "salt" + ] + }, + { + "id": 14371, + "cuisine": "cajun_creole", + "ingredients": [ + "crawfish", + "creole seasoning", + "chips", + "vegetable oil cooking spray", + "butter", + "redfish fillet", + "sliced green onions" + ] + }, + { + "id": 4705, + "cuisine": "southern_us", + "ingredients": [ + "vidalia onion", + "dijon mustard", + "pepper", + "salt", + "cider vinegar", + "vegetable oil", + "honey" + ] + }, + { + "id": 42043, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "honey", + "all-purpose flour", + "sugar", + "vegetable oil", + "eggs", + "baking powder", + "yellow corn meal", + "milk", + "salt" + ] + }, + { + "id": 33597, + "cuisine": "jamaican", + "ingredients": [ + "lime juice", + "sea salt", + "oil", + "allspice", + "salmon fillets", + "chili powder", + "purple onion", + "cumin", + "avocado", + "fresh cilantro", + "curry", + "cooked white rice", + "black beans", + "cinnamon", + "cayenne pepper", + "mango" + ] + }, + { + "id": 27474, + "cuisine": "spanish", + "ingredients": [ + "cider vinegar", + "golden raisins", + "dried oregano", + "capers", + "olive oil", + "rice", + "ground cumin", + "water", + "salt", + "sofrito", + "parsley sprigs", + "ground turkey breast", + "flat leaf parsley" + ] + }, + { + "id": 32196, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "crushed red pepper", + "pancetta", + "pecorino romano cheese", + "fresh basil", + "linguine", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 47680, + "cuisine": "italian", + "ingredients": [ + "sea salt", + "olive oil", + "porterhouse steaks", + "fresh rosemary", + "cracked black pepper", + "lemon wedge" + ] + }, + { + "id": 9059, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking soda", + "apples", + "orange juice", + "sugar", + "butter", + "salt", + "ground cinnamon", + "shredded coconut", + "buttermilk", + "all-purpose flour", + "pecans", + "vegetable oil", + "vanilla extract" + ] + }, + { + "id": 1272, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "chili powder", + "salsa", + "minced garlic", + "sirloin steak", + "sour cream", + "shredded cheddar cheese", + "chile pepper", + "chopped onion", + "green onions", + "black olives", + "corn tortillas" + ] + }, + { + "id": 41771, + "cuisine": "filipino", + "ingredients": [ + "egg yolks", + "sugar", + "sweetened condensed milk", + "lime" + ] + }, + { + "id": 16653, + "cuisine": "indian", + "ingredients": [ + "fat free less sodium chicken broth", + "chicken breasts", + "garlic cloves", + "tomatoes", + "olive oil", + "all-purpose flour", + "marjoram", + "curry powder", + "raisins", + "couscous", + "fat free yogurt", + "finely chopped onion", + "cayenne pepper" + ] + }, + { + "id": 7807, + "cuisine": "indian", + "ingredients": [ + "buttermilk", + "ice cubes", + "coconut milk", + "strawberries", + "sugar" + ] + }, + { + "id": 45470, + "cuisine": "southern_us", + "ingredients": [ + "green tomatoes", + "all-purpose flour", + "pepper", + "buttermilk", + "vegetable oil", + "cornmeal", + "large eggs", + "salt" + ] + }, + { + "id": 44241, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "golden raisins", + "onions", + "olive oil", + "salt", + "pepper", + "balsamic vinegar", + "olive oil flavored cooking spray", + "brown sugar", + "cod fillets", + "red bell pepper" + ] + }, + { + "id": 22249, + "cuisine": "indian", + "ingredients": [ + "salt", + "green peas", + "mustard seeds", + "vegetable oil", + "cumin seed", + "cauliflower florets" + ] + }, + { + "id": 16551, + "cuisine": "italian", + "ingredients": [ + "capers", + "extra-virgin olive oil", + "tomatoes", + "cooking spray", + "garlic cloves", + "sea scallops", + "salt", + "fresh basil", + "dry white wine" + ] + }, + { + "id": 22042, + "cuisine": "japanese", + "ingredients": [ + "konbu", + "water", + "bonito flakes" + ] + }, + { + "id": 33963, + "cuisine": "italian", + "ingredients": [ + "dark chocolate", + "instant espresso", + "vanilla ice cream" + ] + }, + { + "id": 33789, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "water", + "salt", + "fish", + "coconut juice", + "soy sauce", + "green onions", + "filet", + "seasoning", + "red chili peppers", + "ground black pepper", + "yellow onion", + "fish sauce", + "cooking liquid", + "garlic", + "oil" + ] + }, + { + "id": 16040, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "pecorino romano cheese", + "hot water", + "arborio rice", + "dry white wine", + "white wine vinegar", + "reduced sodium chicken broth", + "chives", + "garlic cloves", + "radishes", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 32859, + "cuisine": "japanese", + "ingredients": [ + "boneless chicken skinless thigh", + "daikon", + "potatoes", + "scallions", + "fresh ginger", + "gingerroot", + "miso", + "carrots" + ] + }, + { + "id": 15678, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "jalapeno chilies", + "chopped cilantro fresh", + "lime juice", + "purple onion", + "minced garlic", + "vegetable oil", + "white vinegar", + "ground black pepper", + "salt" + ] + }, + { + "id": 7653, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "sea salt", + "large egg yolks", + "buttermilk", + "caramel sauce", + "bread", + "peaches", + "heavy cream", + "pudding", + "butter", + "vanilla extract" + ] + }, + { + "id": 28665, + "cuisine": "french", + "ingredients": [ + "coriander seeds", + "duck breast halves", + "kumquats", + "fresh orange juice", + "black peppercorns", + "balsamic vinegar", + "low salt chicken broth", + "shallots", + "red wine" + ] + }, + { + "id": 22770, + "cuisine": "british", + "ingredients": [ + "flour", + "eggs", + "salt", + "butter", + "milk" + ] + }, + { + "id": 30347, + "cuisine": "indian", + "ingredients": [ + "white bread", + "garam masala", + "cilantro", + "ginger root", + "salted butter", + "shallots", + "cumin seed", + "coriander seeds", + "diced tomatoes", + "red bell pepper", + "olive oil", + "serrano peppers", + "salt", + "paneer cheese" + ] + }, + { + "id": 33489, + "cuisine": "indian", + "ingredients": [ + "lower sodium chicken broth", + "baking potatoes", + "salt", + "ground cumin", + "peeled fresh ginger", + "green peas", + "garlic cloves", + "butternut squash", + "butter", + "chopped onion", + "tomatoes", + "ground red pepper", + "light coconut milk", + "sliced green onions" + ] + }, + { + "id": 27410, + "cuisine": "italian", + "ingredients": [ + "lettuce", + "pepper", + "onions", + "pesto", + "sausages", + "tomatoes", + "grilled chicken", + "flatbread", + "sauce" + ] + }, + { + "id": 34215, + "cuisine": "southern_us", + "ingredients": [ + "chicken wings", + "chicken drumsticks", + "all-purpose flour", + "chicken thighs", + "eggs", + "bread crumbs", + "paprika", + "garlic cloves", + "fresh marjoram", + "buttermilk", + "freshly ground pepper", + "canola oil", + "fresh basil", + "chicken breast halves", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 43489, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "shoyu", + "mirin", + "dashi", + "somen", + "usukuchi soy sauce" + ] + }, + { + "id": 4232, + "cuisine": "spanish", + "ingredients": [ + "large garlic cloves", + "chopped fresh mint", + "capers", + "oil", + "pepper", + "fresh lemon juice", + "chickpeas" + ] + }, + { + "id": 6625, + "cuisine": "chinese", + "ingredients": [ + "slivered almonds", + "napa cabbage", + "greens", + "cooked chicken", + "salad oil", + "vinegar", + "salt", + "ramen noodles", + "toast" + ] + }, + { + "id": 4943, + "cuisine": "italian", + "ingredients": [ + "white onion", + "pasta", + "nonstick spray", + "diced tomatoes", + "basil pesto sauce", + "chicken" + ] + }, + { + "id": 43254, + "cuisine": "southern_us", + "ingredients": [ + "water", + "tea bags", + "sugar" + ] + }, + { + "id": 34739, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "crushed red pepper flakes", + "oil", + "eggs", + "brown rice", + "salt", + "asian fish sauce", + "egg whites", + "garlic", + "onions", + "soy sauce", + "sesame oil", + "scallions", + "large shrimp" + ] + }, + { + "id": 46753, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "green chilies", + "flour", + "chicken", + "taco shells", + "sour cream", + "butter", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 24702, + "cuisine": "mexican", + "ingredients": [ + "bacon", + "flour tortillas", + "salt", + "eggs", + "cheese", + "green onions" + ] + }, + { + "id": 28563, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "extra-virgin olive oil", + "coarse salt", + "spaghetti", + "parsley leaves", + "garlic", + "lemon" + ] + }, + { + "id": 11769, + "cuisine": "cajun_creole", + "ingredients": [ + "black peppercorns", + "kosher salt", + "vegetable oil", + "carrots", + "dried oregano", + "andouille sausage", + "ground black pepper", + "scallions", + "cooked white rice", + "celery ribs", + "Louisiana Hot Sauce", + "bay leaves", + "garlic cloves", + "onions", + "green bell pepper", + "dried basil", + "all-purpose flour", + "thyme", + "chicken" + ] + }, + { + "id": 38917, + "cuisine": "southern_us", + "ingredients": [ + "unsweetened shredded dried coconut", + "chicken cutlets", + "garlic", + "unsweetened coconut milk", + "panko", + "buttermilk", + "freshly ground pepper", + "collard greens", + "large garlic cloves", + "salt", + "chicken stock", + "jalapeno chilies", + "extra-virgin olive oil", + "canola oil" + ] + }, + { + "id": 37566, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "flour", + "white peppercorns", + "eggs", + "water", + "oil", + "sweet chili sauce", + "cilantro root", + "chicken legs", + "light soy sauce", + "garlic cloves" + ] + }, + { + "id": 25450, + "cuisine": "mexican", + "ingredients": [ + "lean ground beef", + "onions", + "chili", + "sharp cheddar cheese", + "chili powder", + "corn tortillas", + "chili beans", + "stewed tomatoes" + ] + }, + { + "id": 43759, + "cuisine": "thai", + "ingredients": [ + "shredded coconut", + "eggplant", + "capsicum", + "cilantro leaves", + "carrots", + "brown mushroom", + "sweet potatoes", + "garlic", + "yellow onion", + "coriander", + "beans", + "red cabbage", + "brown rice", + "red curry paste", + "coconut milk", + "coconut oil", + "water", + "spring onions", + "salt", + "chickpeas", + "snow peas" + ] + }, + { + "id": 39705, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "ground black pepper", + "bow-tie pasta", + "sausage links", + "freshly grated parmesan", + "diced tomatoes", + "fresh parsley leaves", + "tomato sauce", + "olive oil", + "ricotta cheese", + "shredded mozzarella cheese", + "kosher salt", + "garlic powder", + "crushed red pepper flakes", + "dried oregano" + ] + }, + { + "id": 37170, + "cuisine": "italian", + "ingredients": [ + "lemon", + "sugar", + "boiling water", + "juice", + "lemon extract" + ] + }, + { + "id": 4766, + "cuisine": "french", + "ingredients": [ + "sea scallops", + "shrimp", + "rouille", + "fish", + "potatoes", + "broth", + "croutons" + ] + }, + { + "id": 44384, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "extra-virgin olive oil", + "red bell pepper", + "salad greens", + "balsamic vinegar", + "salt", + "cooking spray", + "purple onion", + "fresh basil leaves", + "ground black pepper", + "chees fresh mozzarella", + "ciabatta" + ] + }, + { + "id": 6168, + "cuisine": "chinese", + "ingredients": [ + "honey", + "chicken cutlets", + "toasted sesame seeds", + "green onions", + "garlic", + "low sodium soy sauce", + "sesame oil", + "lemon juice", + "fresh ginger", + "teriyaki sauce" + ] + }, + { + "id": 27611, + "cuisine": "indian", + "ingredients": [ + "coconut", + "vegetable oil", + "yellow onion", + "coconut milk", + "clove", + "coriander seeds", + "russet potatoes", + "carrots", + "basmati rice", + "water", + "bay leaves", + "poppy seeds", + "cinnamon sticks", + "fresh ginger", + "coarse salt", + "cumin seed", + "frozen peas" + ] + }, + { + "id": 13701, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "large garlic cloves", + "tomatoes", + "french bread" + ] + }, + { + "id": 7241, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "garlic powder", + "spices", + "cilantro leaves", + "scallions", + "cumin", + "shredded cheddar cheese", + "boneless chicken breast", + "garlic", + "frozen corn", + "corn tortillas", + "chopped tomatoes", + "vegetable oil", + "salt", + "sauce", + "onions", + "pepper", + "garnish", + "stewed tomatoes", + "all-purpose flour", + "sour cream" + ] + }, + { + "id": 31088, + "cuisine": "italian", + "ingredients": [ + "diced onions", + "fat free less sodium chicken broth", + "dry white wine", + "fresh rosemary", + "fresh parmesan cheese", + "garlic cloves", + "arborio rice", + "olive oil", + "salt", + "black pepper", + "butternut squash" + ] + }, + { + "id": 35085, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "white wine vinegar", + "red potato", + "whole grain dijon mustard", + "sliced green onions", + "olive oil", + "chopped celery", + "green bell pepper", + "hot pepper sauce" + ] + }, + { + "id": 945, + "cuisine": "mexican", + "ingredients": [ + "water", + "chili powder", + "iceberg lettuce", + "sugar", + "finely chopped onion", + "pinto beans", + "shredded reduced fat cheddar cheese", + "reduced-fat sour cream", + "ground cumin", + "picante sauce", + "cooking spray", + "corn tortillas" + ] + }, + { + "id": 45789, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "salt", + "cider vinegar", + "country ham", + "water" + ] + }, + { + "id": 37078, + "cuisine": "southern_us", + "ingredients": [ + "boneless skinless chicken breasts", + "chicken broth", + "onions", + "cream of chicken soup", + "dried parsley", + "biscuits", + "butter" + ] + }, + { + "id": 40001, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "salt", + "ground cinnamon", + "large eggs", + "crème fraîche", + "sugar", + "baking powder", + "all-purpose flour", + "golden brown sugar", + "vanilla extract", + "dried cranberries" + ] + }, + { + "id": 27281, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "fresh ginger", + "garlic", + "pepper", + "rice wine", + "kiwi", + "pinenuts", + "strip loin steak", + "onions", + "sugar", + "honey", + "sesame oil" + ] + }, + { + "id": 38317, + "cuisine": "italian", + "ingredients": [ + "water", + "cooking spray", + "salt", + "celery", + "olive oil", + "brown rice", + "sauce", + "fresh parsley", + "navy beans", + "ground black pepper", + "dry red wine", + "provolone cheese", + "parsley sprigs", + "finely chopped onion", + "vegetable broth", + "chopped walnuts" + ] + }, + { + "id": 4926, + "cuisine": "greek", + "ingredients": [ + "active dry yeast", + "all-purpose flour", + "pastry flour", + "white sugar", + "olive oil", + "applesauce", + "warm water", + "salt" + ] + }, + { + "id": 40346, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "onions", + "fresh spinach", + "cooking spray", + "garlic cloves", + "warm water", + "crushed red pepper", + "feta cheese crumbles", + "dry yeast", + "all-purpose flour" + ] + }, + { + "id": 11981, + "cuisine": "chinese", + "ingredients": [ + "scallion greens", + "starch", + "salt", + "chinese black vinegar", + "soy sauce", + "daikon", + "scallions", + "sugar", + "peeled fresh ginger", + "roasted peanuts", + "water", + "garlic", + "oil" + ] + }, + { + "id": 10813, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "onion powder", + "catfish fillets", + "seasoning salt", + "salt", + "milk", + "vegetable oil", + "yellow corn meal", + "garlic powder" + ] + }, + { + "id": 11296, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "spaghetti", + "extra-virgin olive oil", + "zucchini", + "garlic cloves", + "large eggs", + "fresh basil leaves" + ] + }, + { + "id": 22033, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "tortellini", + "salt", + "olive oil", + "reduced fat alfredo sauce", + "fresh mushrooms", + "dry white wine", + "crushed red pepper", + "fresh asparagus", + "grated parmesan cheese", + "cheese", + "garlic cloves" + ] + }, + { + "id": 3215, + "cuisine": "italian", + "ingredients": [ + "butter", + "diced onions", + "medium shrimp", + "feta cheese crumbles", + "angel hair" + ] + }, + { + "id": 49584, + "cuisine": "greek", + "ingredients": [ + "greek seasoning", + "salt", + "chuck roast", + "onions", + "pepper", + "beef broth", + "cooking wine" + ] + }, + { + "id": 39254, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "boneless chicken breast", + "Thai red curry paste", + "coconut milk", + "lime juice", + "vegetable oil", + "Thai fish sauce", + "kaffir lime leaves", + "shallots", + "garlic", + "galangal", + "light brown sugar", + "lemongrass", + "cilantro", + "white mushrooms" + ] + }, + { + "id": 30568, + "cuisine": "chinese", + "ingredients": [ + "water", + "black chicken", + "seeds", + "goji berries", + "mushrooms", + "yams", + "ginger" + ] + }, + { + "id": 10891, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "chopped cilantro fresh", + "fish sauce", + "roasted peanuts", + "fresh ginger", + "sugar", + "garlic cloves" + ] + }, + { + "id": 11260, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "potatoes", + "ground coriander", + "chopped cilantro fresh", + "garbanzo beans", + "purple onion", + "potato chips", + "ground cumin", + "ground black pepper", + "salt", + "chutney", + "fresh ginger", + "chili powder", + "rock salt", + "wheat crackers" + ] + }, + { + "id": 46259, + "cuisine": "indian", + "ingredients": [ + "boneless skinless chicken breasts", + "saffron", + "olive oil", + "fresh lemon juice", + "chicken stock", + "butter", + "finely chopped fresh parsley", + "onions" + ] + }, + { + "id": 19861, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "large eggs", + "cinnamon", + "grated nutmeg", + "confectioners sugar", + "powdered sugar", + "granulated sugar", + "baking spray", + "vanilla extract", + "cream cheese", + "bread flour", + "unsalted butter", + "flour", + "vanilla", + "lavender", + "sour cream", + "sugar", + "instant yeast", + "bourbon whiskey", + "salt", + "lemon juice" + ] + }, + { + "id": 28627, + "cuisine": "filipino", + "ingredients": [ + "sea salt", + "annatto powder", + "cooking oil", + "beef broth", + "bok choy", + "chinese eggplants", + "peanut butter", + "onions", + "beef shank", + "garlic", + "green beans" + ] + }, + { + "id": 37840, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "guacamole", + "sour cream", + "shredded Monterey Jack cheese", + "refried beans", + "green pepper", + "ground beef", + "ground cumin", + "chorizo", + "vegetable oil", + "ripe olives", + "wheat germ", + "tomatoes", + "flour tortillas", + "chopped onion", + "oregano" + ] + }, + { + "id": 28392, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "all-purpose flour", + "buttermilk", + "eggs", + "white cornmeal" + ] + }, + { + "id": 27048, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "grated romano cheese", + "fresh parsley", + "olive oil", + "garlic", + "pinenuts", + "raisins", + "onions", + "pasta sauce", + "ground black pepper", + "round steaks" + ] + }, + { + "id": 18572, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "olive oil", + "salt", + "ground beef", + "dried oregano", + "fresh cilantro", + "zucchini", + "garlic cloves", + "panko breadcrumbs", + "water", + "poblano peppers", + "beef broth", + "onions", + "ground cumin", + "eggs", + "lime", + "chili powder", + "corn tortillas", + "basmati rice" + ] + }, + { + "id": 30490, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "green onions", + "fresh lime juice", + "green cabbage", + "red cabbage", + "fat free greek yogurt", + "fish", + "avocado", + "Tabasco Green Pepper Sauce", + "lime wedges", + "chopped cilantro fresh", + "mayonaise", + "lettuce leaves", + "buttermilk", + "ground cumin" + ] + }, + { + "id": 15014, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "chili powder", + "corn", + "cumin", + "cotija", + "salt", + "lime" + ] + }, + { + "id": 8755, + "cuisine": "moroccan", + "ingredients": [ + "whitefish", + "olive oil", + "garlic", + "waxy potatoes", + "ground cumin", + "preserved lemon", + "diced tomatoes", + "salt", + "flat leaf parsley", + "green olives", + "ground black pepper", + "purple onion", + "carrots", + "fresh cilantro", + "yellow bell pepper", + "sweet paprika", + "chopped cilantro fresh" + ] + }, + { + "id": 35247, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "spices", + "hummus", + "lime", + "hot sauce", + "sweet onion", + "salt", + "avocado", + "tortillas", + "oil" + ] + }, + { + "id": 33679, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "ground cumin", + "chili powder", + "salsa", + "tomato sauce", + "salt", + "garlic", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 30695, + "cuisine": "irish", + "ingredients": [ + "flour", + "yeast", + "sugar", + "salt", + "butter", + "warm water", + "rolls" + ] + }, + { + "id": 48849, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "crushed red pepper", + "garlic cloves", + "kosher salt", + "ground black pepper", + "chickpeas", + "lower sodium chicken broth", + "sherry vinegar", + "spanish chorizo", + "escarole", + "water", + "bay leaves", + "chopped onion" + ] + }, + { + "id": 9355, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cornmeal", + "bread crumbs", + "chicken drumsticks", + "pepper", + "salt", + "eggs", + "vegetable oil" + ] + }, + { + "id": 5317, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "chopped garlic", + "granulated sugar", + "red chili peppers", + "cold water", + "rice vinegar" + ] + }, + { + "id": 970, + "cuisine": "jamaican", + "ingredients": [ + "jamaican jerk spice", + "vegetable oil", + "pork tenderloin" + ] + }, + { + "id": 6589, + "cuisine": "moroccan", + "ingredients": [ + "basil", + "lemon juice", + "parsley", + "black olives", + "cumin", + "white onion", + "cilantro", + "carrots", + "cinnamon", + "garlic cloves" + ] + }, + { + "id": 42798, + "cuisine": "indian", + "ingredients": [ + "asafoetida", + "ground coriander", + "plain yogurt", + "canola oil", + "tumeric", + "black mustard seeds", + "green cabbage", + "salt", + "ground cumin" + ] + }, + { + "id": 48879, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "eggs", + "grated parmesan cheese", + "ground black pepper", + "onions", + "fresh marjoram", + "ricotta cheese" + ] + }, + { + "id": 11734, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "sugar" + ] + }, + { + "id": 5204, + "cuisine": "spanish", + "ingredients": [ + "lime rind", + "salt", + "ground cumin", + "fish fillets", + "green onions", + "chopped fresh mint", + "grape tomatoes", + "jalapeno chilies", + "fresh lime juice", + "olive oil", + "cucumber" + ] + }, + { + "id": 31691, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "ground red pepper", + "garlic cloves", + "curry powder", + "chopped onion", + "canola oil", + "plain yogurt", + "cilantro leaves", + "red bell pepper", + "red lentils", + "peeled fresh ginger", + "organic vegetable broth" + ] + }, + { + "id": 25040, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "feta cheese", + "lemon", + "garlic cloves", + "dried oregano", + "liquid smoke", + "black pepper", + "yoghurt", + "purple onion", + "onions", + "mayonaise", + "bell pepper", + "black olives", + "whole milk greek yogurt", + "greek seasoning", + "pitas", + "flank steak", + "salt", + "arugula" + ] + }, + { + "id": 40370, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "chopped onion", + "fresh parsley", + "white bread", + "red wine vinegar", + "fresh parsley leaves", + "eggplant", + "garlic cloves", + "plum tomatoes", + "whole wheat pita", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 48189, + "cuisine": "mexican", + "ingredients": [ + "milk", + "corn tortillas", + "cooked ham", + "butter", + "eggs", + "green onions", + "pepper", + "salt" + ] + }, + { + "id": 22719, + "cuisine": "indian", + "ingredients": [ + "basmati rice", + "golden raisins", + "pumpkin seeds" + ] + }, + { + "id": 46100, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "coriander powder", + "cilantro leaves", + "chopped tomatoes", + "vegetable oil", + "ground turmeric", + "red chili powder", + "potatoes", + "frozen peas", + "garam masala", + "salt" + ] + }, + { + "id": 17810, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "baking soda", + "buttermilk", + "cayenne pepper", + "lump crab meat", + "green onions", + "deveined shrimp", + "red bell pepper", + "sugar", + "ground black pepper", + "sea salt", + "peanut oil", + "celery salt", + "crawfish", + "baking powder", + "all-purpose flour", + "flat leaf parsley" + ] + }, + { + "id": 44236, + "cuisine": "chinese", + "ingredients": [ + "evaporated milk", + "vanilla extract", + "powdered sugar", + "butter", + "eggs", + "flour", + "white sugar", + "water", + "custard" + ] + }, + { + "id": 9519, + "cuisine": "mexican", + "ingredients": [ + "water", + "corn chips", + "salsa", + "dried oregano", + "cottage cheese", + "chili powder", + "white rice", + "red bell pepper", + "green bell pepper", + "chili", + "vegetable oil", + "whole kernel corn, drain", + "ground cumin", + "shredded cheddar cheese", + "chile pepper", + "garlic", + "onions" + ] + }, + { + "id": 31960, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "vegetable broth", + "olive oil", + "large garlic cloves", + "bay leaf", + "sole fillet", + "chopped fresh thyme", + "all-purpose flour", + "leeks", + "diced tomatoes" + ] + }, + { + "id": 31237, + "cuisine": "indian", + "ingredients": [ + "water", + "powdered milk", + "baking soda", + "ground cardamom", + "milk", + "maida flour", + "sugar", + "rose essence", + "ghee" + ] + }, + { + "id": 13888, + "cuisine": "jamaican", + "ingredients": [ + "nutmeg", + "jerk seasoning", + "chicken", + "black pepper", + "salt", + "sugar", + "garlic", + "pepper", + "onions" + ] + }, + { + "id": 2757, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "shallots", + "tomato sauce", + "lasagna noodles", + "fresh rosemary", + "eggplant", + "part-skim ricotta cheese", + "mozzarella cheese", + "grated parmesan cheese" + ] + }, + { + "id": 22790, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "kalamata", + "plum tomatoes", + "minced garlic", + "worcestershire sauce", + "fresh parsley leaves", + "chili powder", + "salt", + "ground cumin", + "penne", + "vegetable oil", + "beef rib short" + ] + }, + { + "id": 10789, + "cuisine": "italian", + "ingredients": [ + "eggs", + "rolls", + "garlic", + "ham" + ] + }, + { + "id": 12294, + "cuisine": "southern_us", + "ingredients": [ + "romaine lettuce", + "boneless skinless chicken breast halves", + "cornbread", + "purple onion", + "tomatoes", + "fresh lime juice", + "extra-virgin olive oil", + "ground cumin" + ] + }, + { + "id": 32052, + "cuisine": "italian", + "ingredients": [ + "prego traditional italian sauce", + "shredded mozzarella cheese", + "grated parmesan cheese", + "pasta" + ] + }, + { + "id": 16294, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "chicken broth", + "dry white wine", + "arborio rice", + "parmesan cheese", + "garlic cloves", + "sweet onion", + "butter" + ] + }, + { + "id": 46507, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "brown hash potato", + "salt", + "minced garlic", + "whole milk", + "oil", + "fat free less sodium chicken broth", + "parmigiano reggiano cheese", + "chopped onion", + "artichoke hearts", + "butter", + "carrots" + ] + }, + { + "id": 21716, + "cuisine": "french", + "ingredients": [ + "ground cloves", + "plums", + "ground ginger", + "fresh blueberries", + "ground allspice", + "ground cinnamon", + "butter", + "light brown sugar", + "peaches", + "fresh raspberries" + ] + }, + { + "id": 25187, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "onions", + "black beans", + "garlic", + "tomatoes", + "vegetable oil", + "artichoke hearts", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 10130, + "cuisine": "french", + "ingredients": [ + "shortening", + "large eggs", + "warm water", + "all-purpose flour", + "food colouring", + "active dry yeast", + "bread flour", + "sugar", + "salt" + ] + }, + { + "id": 41678, + "cuisine": "italian", + "ingredients": [ + "fresh chives", + "roma tomatoes", + "polenta", + "parmesan cheese", + "nonfat milk", + "pepper", + "salt", + "sage leaves", + "mushroom caps", + "fat skimmed chicken broth" + ] + }, + { + "id": 5788, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "honey", + "unsalted butter", + "ground cinnamon", + "whole chicken" + ] + }, + { + "id": 45093, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "firm tofu", + "kimchi", + "white onion", + "daikon", + "garlic cloves", + "shiitake mushroom caps", + "soy sauce", + "chile pepper", + "scallions", + "toasted sesame oil", + "water", + "kochujang", + "red miso" + ] + }, + { + "id": 8151, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "lime", + "meat", + "Mexican beer", + "garlic", + "garlic cloves", + "onions", + "orange", + "jalapeno chilies", + "queso fresco", + "cilantro", + "salt", + "corn tortillas", + "cumin", + "pepper", + "olive oil", + "chili powder", + "diced tomatoes", + "purple onion", + "smoked paprika", + "oregano", + "avocado", + "fresh cilantro", + "green onions", + "russet potatoes", + "cheese", + "cayenne pepper", + "chipotle chile powder" + ] + }, + { + "id": 48677, + "cuisine": "southern_us", + "ingredients": [ + "soft-wheat flour", + "almond extract", + "milk", + "vanilla extract", + "large eggs", + "sugar", + "butter" + ] + }, + { + "id": 48, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "ginger", + "onions", + "garam masala", + "salt", + "cashew nuts", + "cooking oil", + "cumin seed", + "ground turmeric", + "tomatoes", + "vegetable oil", + "corn flour", + "bottle gourd" + ] + }, + { + "id": 22172, + "cuisine": "brazilian", + "ingredients": [ + "red chili peppers", + "peanuts", + "gingerroot", + "onions", + "tomatoes", + "fresh coriander", + "fish stock", + "coconut milk", + "palm oil", + "bread crumbs", + "unsalted cashews", + "garlic cloves", + "fresh prawn", + "lime", + "coconut cream", + "dried shrimp" + ] + }, + { + "id": 14400, + "cuisine": "thai", + "ingredients": [ + "pork", + "peanut oil", + "greens", + "lime wedges", + "Thai fish sauce", + "fresh coriander", + "scallions", + "cooked rice", + "garlic", + "cucumber" + ] + }, + { + "id": 14058, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "dried oregano", + "salad dressing", + "white sugar", + "garlic" + ] + }, + { + "id": 31707, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "passion fruit", + "cream", + "sweetened condensed milk" + ] + }, + { + "id": 33546, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "light cream", + "vegetable oil", + "salt", + "onions", + "clove", + "water", + "fresh ginger root", + "crushed red pepper flakes", + "cardamom pods", + "pepper", + "coriander seeds", + "cinnamon", + "fenugreek seeds", + "boneless skinless chicken breast halves", + "black peppercorns", + "curry powder", + "bay leaves", + "garlic", + "lemon juice" + ] + }, + { + "id": 1571, + "cuisine": "irish", + "ingredients": [ + "mashed potatoes", + "spring onions", + "milk", + "salt", + "nutmeg", + "unsalted butter", + "pepper", + "chives" + ] + }, + { + "id": 16677, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "baking powder", + "all-purpose flour", + "orange juice concentrate", + "brandy", + "anise", + "ground cinnamon", + "egg whites", + "salt", + "sugar", + "vegetable oil" + ] + }, + { + "id": 39218, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "lemon juice", + "eggs", + "salt", + "grated lemon peel", + "butter", + "white sugar", + "milk", + "all-purpose flour" + ] + }, + { + "id": 49038, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "grits", + "cream", + "salt", + "chicken broth", + "unsalted butter", + "water", + "sharp cheddar cheese" + ] + }, + { + "id": 49672, + "cuisine": "mexican", + "ingredients": [ + "cherry tomatoes", + "cilantro sprigs", + "cotija", + "jalapeno chilies", + "tortilla chips", + "avocado", + "large eggs", + "bacon fat", + "corn kernels", + "coarse salt", + "scallions" + ] + }, + { + "id": 26568, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "shallots", + "frozen cheese ravioli", + "unsalted butter", + "grape tomatoes", + "olive oil", + "flat leaf parsley", + "black pepper", + "dry white wine" + ] + }, + { + "id": 17985, + "cuisine": "southern_us", + "ingredients": [ + "fat free less sodium chicken broth", + "garlic cloves", + "brussels sprouts", + "salt", + "butter", + "chopped pecans", + "sugar", + "chopped onion" + ] + }, + { + "id": 45073, + "cuisine": "filipino", + "ingredients": [ + "active dry yeast", + "white sugar", + "salt", + "vegetable oil", + "warm water", + "all-purpose flour" + ] + }, + { + "id": 36030, + "cuisine": "french", + "ingredients": [ + "cocktail cherries", + "St Germain Liqueur", + "cherry juice", + "prosecco", + "orange peel", + "fresh orange juice" + ] + }, + { + "id": 6599, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "vegetable oil", + "sour cream", + "refried beans", + "salt", + "lime", + "cilantro", + "corn tortillas", + "avocado", + "roma tomatoes", + "shredded mozzarella cheese" + ] + }, + { + "id": 33273, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "chopped green chilies", + "shredded cheese", + "ground cumin", + "minced garlic", + "whole wheat tortillas", + "onions", + "black beans", + "chili powder", + "ground beef", + "corn", + "red pepper", + "oregano leaves" + ] + }, + { + "id": 16436, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "ground red pepper", + "salt", + "soy sauce", + "chunky peanut butter", + "rice noodles", + "onions", + "chicken broth", + "fresh ginger", + "chicken breasts", + "corn starch", + "pepper", + "green onions", + "garlic", + "ground cumin" + ] + }, + { + "id": 15641, + "cuisine": "japanese", + "ingredients": [ + "scallion greens", + "mirin", + "carrots", + "soy sauce", + "salmon steaks", + "sugar", + "vegetable oil", + "onions", + "cider vinegar", + "gingerroot" + ] + }, + { + "id": 7072, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "yellow curry paste", + "boneless skinless chicken breast halves", + "curry powder", + "salt", + "white sugar", + "minced garlic", + "potatoes", + "onions", + "chicken broth", + "fresh ginger", + "coconut milk", + "canola oil" + ] + }, + { + "id": 34563, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "soft fresh goat cheese", + "vegetable oil", + "masa dough", + "masa harina", + "warm water", + "salt", + "lard", + "radishes", + "salsa", + "chopped cilantro" + ] + }, + { + "id": 26345, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "ground coriander", + "olive oil flavored cooking spray", + "ground red pepper", + "fresh lemon juice", + "ground cumin", + "olive oil", + "garlic cloves", + "chopped cilantro fresh", + "jumbo shrimp", + "paprika", + "fresh parsley" + ] + }, + { + "id": 15664, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "whole peeled tomatoes", + "chopped fresh thyme", + "garlic", + "flat leaf parsley", + "pork", + "whole milk", + "bacon", + "salt", + "pasta", + "pepper", + "mild Italian sausage", + "extra-virgin olive oil", + "carrots", + "fresh basil", + "grated parmesan cheese", + "ground veal", + "chopped celery", + "onions" + ] + }, + { + "id": 23537, + "cuisine": "french", + "ingredients": [ + "plain low-fat yogurt", + "port", + "cream cheese, soften", + "mint leaves", + "fresh herbs", + "cold water", + "basil", + "salad dressing", + "unflavored gelatin", + "yellow onion", + "oregano" + ] + }, + { + "id": 26195, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "roma tomatoes", + "garlic", + "olive oil", + "red wine vinegar", + "cumin", + "corn", + "green onions", + "salt", + "avocado", + "black-eyed peas", + "cilantro" + ] + }, + { + "id": 42221, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "water", + "salsa", + "chuck", + "vegetable oil", + "chopped cilantro fresh", + "chopped green bell pepper", + "chopped onion" + ] + }, + { + "id": 19828, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "boneless skinless chicken breasts", + "freshly ground pepper", + "tomato sauce", + "vegetable oil", + "shredded mozzarella cheese", + "sandwich rolls", + "kosher salt", + "all-purpose flour", + "eggs", + "parmigiano reggiano cheese", + "dry bread crumbs" + ] + }, + { + "id": 14317, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dijon mustard", + "garlic", + "fresh parsley", + "fresh basil", + "ground black pepper", + "chopped fresh thyme", + "fresh lemon juice", + "fresh rosemary", + "garlic powder", + "balsamic vinegar", + "fresh oregano", + "orange juice concentrate", + "chopped tomatoes", + "cooking spray", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 35771, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "salt", + "collard greens", + "olive oil" + ] + }, + { + "id": 29604, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "buttermilk", + "milk", + "chicken", + "white flour", + "salt", + "ground pepper" + ] + }, + { + "id": 25119, + "cuisine": "cajun_creole", + "ingredients": [ + "Zatarain’s Jambalaya Mix", + "frozen peppers and onions", + "diced tomatoes", + "boneless chicken skinless thigh", + "large shrimp" + ] + }, + { + "id": 28319, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "ginger", + "fermented black beans", + "cold water", + "leeks", + "ground roasted sichuan peppers", + "chopped garlic", + "tofu", + "cooking oil", + "salt", + "potato flour", + "stock", + "bean paste", + "ground white pepper" + ] + }, + { + "id": 7375, + "cuisine": "southern_us", + "ingredients": [ + "tapioca flour", + "sweet potatoes", + "vanilla", + "pumpkin pie spice", + "coconut sugar", + "almond flour", + "butter", + "salt", + "eggs", + "pepper", + "chicken breasts", + "coconut flour", + "coconut oil", + "cayenne", + "paprika", + "coconut milk" + ] + }, + { + "id": 24017, + "cuisine": "italian", + "ingredients": [ + "chopped fresh chives", + "pear tomatoes", + "plum tomatoes", + "rotelle", + "purple onion", + "basil leaves", + "kalamata", + "olive oil", + "balsamic vinegar", + "fresh mint" + ] + }, + { + "id": 16184, + "cuisine": "british", + "ingredients": [ + "mussels", + "unsalted butter", + "onions", + "water", + "heavy cream", + "Madeira", + "bay leaves", + "Madras curry powder", + "large egg yolks", + "garlic cloves" + ] + }, + { + "id": 36498, + "cuisine": "italian", + "ingredients": [ + "sweet italian sausag links, cut into", + "extra-virgin olive oil", + "broccoli rabe", + "garlic cloves" + ] + }, + { + "id": 18623, + "cuisine": "french", + "ingredients": [ + "french bread", + "beef broth", + "swiss cheese", + "french fried onions", + "dry sherry" + ] + }, + { + "id": 11624, + "cuisine": "russian", + "ingredients": [ + "shallots", + "paprika", + "cognac", + "wide egg noodles", + "canned beef broth", + "beef tenderloin", + "fresh dill", + "vegetable oil", + "button mushrooms", + "dijon mustard", + "butter", + "crème fraîche" + ] + }, + { + "id": 26804, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "vegetable shortening", + "vanilla extract", + "golden brown sugar", + "ice water", + "whipping cream", + "unsalted butter", + "all purpose unbleached flour", + "salt", + "sweet potatoes & yams", + "large eggs", + "whipped cream", + "orange juice" + ] + }, + { + "id": 35219, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "ground black pepper", + "ketchup", + "sprite", + "soy sauce", + "calamansi juice", + "minced garlic", + "salt" + ] + }, + { + "id": 24028, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "all-purpose flour", + "idaho potatoes", + "large eggs", + "salt" + ] + }, + { + "id": 7833, + "cuisine": "vietnamese", + "ingredients": [ + "dried rice noodles" + ] + }, + { + "id": 35623, + "cuisine": "southern_us", + "ingredients": [ + "orange pekoe tea", + "apple cider vinegar", + "cream cheese", + "unsalted butter", + "all purpose unbleached flour", + "cornmeal", + "granulated sugar", + "vanilla extract", + "large egg yolks", + "lemon", + "fresh lemon juice" + ] + }, + { + "id": 28454, + "cuisine": "spanish", + "ingredients": [ + "boneless chicken thighs", + "boiling water", + "tomato sauce", + "chili sauce", + "ketchup", + "onions", + "green bell pepper", + "salt" + ] + }, + { + "id": 31496, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "dashi", + "white rice", + "sake", + "mirin", + "onions", + "soy sauce", + "shichimi togarashi", + "nori", + "chicken legs", + "leaves", + "scallions" + ] + }, + { + "id": 630, + "cuisine": "mexican", + "ingredients": [ + "baby spinach", + "tortillas", + "sour cream", + "avocado", + "salsa", + "pepper jack" + ] + }, + { + "id": 30454, + "cuisine": "italian", + "ingredients": [ + "melted butter", + "italian seasoning", + "popcorn", + "romano cheese", + "garlic salt" + ] + }, + { + "id": 9845, + "cuisine": "brazilian", + "ingredients": [ + "black beans", + "bay leaves", + "oil", + "short rib", + "seasoning", + "orange", + "cilantro", + "cachaca", + "marrow bones", + "chorizo", + "green onions", + "smoked paprika", + "corned beef", + "ground chipotle chile pepper", + "jack", + "garlic", + "onions" + ] + }, + { + "id": 40801, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "vine ripened tomatoes", + "lime", + "sweet onion", + "garlic", + "kosher salt", + "jalapeno chilies" + ] + }, + { + "id": 48112, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "parsley", + "long-grain rice", + "tomatoes", + "spanish onion", + "lemon", + "ground ginger", + "fresh coriander", + "butter", + "puy lentils", + "ground cinnamon", + "diced lamb", + "chickpeas" + ] + }, + { + "id": 32220, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "cayenne pepper", + "garlic powder", + "red pepper flakes", + "ground cumin", + "kosher salt", + "onion powder", + "oregano", + "chili powder", + "smoked paprika" + ] + }, + { + "id": 1404, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "skirt steak", + "coconut sugar", + "ginger root", + "lime zest", + "Thai fish sauce", + "lite coconut milk", + "coarse kosher salt" + ] + }, + { + "id": 25629, + "cuisine": "italian", + "ingredients": [ + "hazelnuts", + "baking powder", + "grated orange peel", + "unsalted butter", + "salt", + "ground cinnamon", + "vegetable oil spray", + "vanilla extract", + "sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 36545, + "cuisine": "french", + "ingredients": [ + "fennel seeds", + "black pepper", + "olive oil", + "chopped fresh thyme", + "salt", + "Niçoise olives", + "oregano", + "sea bass", + "dried thyme", + "onion powder", + "extra-virgin olive oil", + "anchovy fillets", + "marjoram", + "capers", + "minced garlic", + "garlic powder", + "lemon", + "essence", + "chopped parsley", + "dried oregano", + "rosemary sprigs", + "dried basil", + "savory", + "paprika", + "cayenne pepper", + "herbes de provence", + "dried rosemary" + ] + }, + { + "id": 46353, + "cuisine": "italian", + "ingredients": [ + "artichoke hearts", + "shredded mozzarella cheese", + "water", + "salad dressing", + "french fried onions" + ] + }, + { + "id": 30495, + "cuisine": "mexican", + "ingredients": [ + "salt", + "jalapeno chilies", + "banana peppers", + "white vinegar", + "yellow onion", + "garlic", + "pinto beans" + ] + }, + { + "id": 2602, + "cuisine": "indian", + "ingredients": [ + "pepper", + "masala", + "vegetables", + "salt", + "olive oil" + ] + }, + { + "id": 38171, + "cuisine": "italian", + "ingredients": [ + "dough", + "all-purpose flour" + ] + }, + { + "id": 12578, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cooked chicken", + "shredded pepper jack cheese", + "beans", + "Old El Paso™ chopped green chiles", + "greek style plain yogurt", + "chicken stock", + "butter", + "all-purpose flour", + "flour tortillas", + "cilantro leaves", + "ground cumin" + ] + }, + { + "id": 15749, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "granulated sugar", + "green onions", + "peanut oil", + "pineapple chunks", + "water", + "bell pepper", + "crushed red pepper flakes", + "corn starch", + "white onion", + "wheat free soy sauce", + "apple cider vinegar", + "garlic cloves", + "gluten-free chicken stock", + "fresh ginger", + "pork tenderloin", + "cocktail cherries" + ] + }, + { + "id": 3624, + "cuisine": "italian", + "ingredients": [ + "anise seed", + "water", + "vanilla extract", + "vegetable oil cooking spray", + "baking powder", + "all-purpose flour", + "eggs", + "egg whites", + "salt", + "turbinado", + "sugar", + "vegetable oil" + ] + }, + { + "id": 13768, + "cuisine": "italian", + "ingredients": [ + "white wine", + "grated parmesan cheese", + "salt", + "salted butter", + "whipping cream", + "flat leaf parsley", + "olive oil", + "lemon", + "garlic cloves", + "clams", + "ground black pepper", + "linguine" + ] + }, + { + "id": 865, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "salsa", + "chopped cilantro", + "garlic powder", + "chili powder", + "corn tortillas", + "monterey jack", + "cooking spray", + "onion powder", + "fresh lime juice", + "kosher salt", + "cooked chicken", + "cream cheese, soften", + "cumin" + ] + }, + { + "id": 46652, + "cuisine": "mexican", + "ingredients": [ + "pasilla chiles", + "sesame seeds", + "apple cider vinegar", + "cilantro", + "chipotles in adobo", + "oregano", + "tomatoes", + "kosher salt", + "pork loin", + "raisins", + "mexican chocolate", + "canela", + "plantains", + "chicken broth", + "black pepper", + "peanuts", + "tomatillos", + "garlic", + "adobo sauce", + "dried oregano", + "piloncillo", + "honey", + "corn oil", + "ancho powder", + "yellow onion", + "white sandwich bread" + ] + }, + { + "id": 21699, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "paprika", + "cumin seed", + "garam masala", + "purple onion", + "greek yogurt", + "fresh ginger", + "paneer", + "lemon juice", + "garlic paste", + "red pepper", + "salt", + "ground turmeric" + ] + }, + { + "id": 12426, + "cuisine": "spanish", + "ingredients": [ + "citrus vinaigrette", + "scallions", + "green bell pepper", + "dry sherry", + "red bell pepper", + "chicken stock", + "quinoa", + "carrots", + "figs", + "cilantro", + "yellow peppers" + ] + }, + { + "id": 14158, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "extra-virgin olive oil", + "Italian bread", + "spaghetti", + "olive oil", + "ground veal", + "garlic cloves", + "ground beef", + "tomatoes", + "whole milk", + "grated lemon zest", + "flat leaf parsley", + "oregano", + "parmigiano reggiano cheese", + "ground pork", + "juice", + "onions" + ] + }, + { + "id": 27865, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "onion powder", + "cayenne pepper", + "ground black pepper", + "paprika", + "corn starch", + "garlic powder", + "buttermilk", + "peanut oil", + "large eggs", + "all-purpose flour", + "chicken" + ] + }, + { + "id": 39351, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "boneless skinless chicken breasts", + "corn starch", + "ketchup", + "crushed red pepper", + "soy sauce", + "ginger", + "water", + "sauce" + ] + }, + { + "id": 33505, + "cuisine": "southern_us", + "ingredients": [ + "mozzarella cheese", + "extra-virgin olive oil", + "sliced ham", + "flour tortillas", + "cream cheese", + "garlic powder", + "black olives", + "dried oregano", + "sliced salami", + "pimentos", + "provolone cheese" + ] + }, + { + "id": 6286, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "sweet corn", + "cream style corn", + "eggs", + "sour cream", + "bread mix", + "shredded swiss cheese" + ] + }, + { + "id": 1067, + "cuisine": "mexican", + "ingredients": [ + "firmly packed brown sugar", + "bananas", + "dark rum", + "milk", + "lemon zest", + "mexican chocolate", + "vanilla beans", + "unsalted butter", + "heavy cream", + "large egg yolks", + "half & half" + ] + }, + { + "id": 35807, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "orzo", + "fresh lemon juice", + "pinenuts", + "Italian parsley leaves", + "salt", + "cooked chicken breasts", + "broccoli florets", + "extra-virgin olive oil", + "fresh mint", + "water", + "cracked black pepper", + "garlic cloves" + ] + }, + { + "id": 8643, + "cuisine": "italian", + "ingredients": [ + "porcini", + "dried porcini mushrooms", + "farro", + "celery", + "cavolo nero", + "fennel bulb", + "garlic cloves", + "onions", + "fresh sage", + "ground black pepper", + "salt", + "fresh parsley", + "chicken broth", + "water", + "extra-virgin olive oil", + "bay leaf" + ] + }, + { + "id": 32998, + "cuisine": "korean", + "ingredients": [ + "baby spinach leaves", + "beef", + "carrots", + "toasted sesame seeds", + "warm water", + "ground black pepper", + "dried shiitake mushrooms", + "toasted sesame oil", + "table salt", + "olive oil", + "green onions", + "white mushrooms", + "noodles", + "soy sauce", + "granulated sugar", + "garlic cloves", + "onions" + ] + }, + { + "id": 41704, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "ground black pepper", + "pecorino romano cheese", + "cayenne pepper", + "lemon juice", + "feta cheese", + "lemon zest", + "purple onion", + "garlic cloves", + "curly leaf spinach", + "water", + "unsalted butter", + "phyllo", + "scallions", + "fresh mint", + "ground nutmeg", + "large eggs", + "salt", + "whole milk greek yogurt" + ] + }, + { + "id": 10199, + "cuisine": "korean", + "ingredients": [ + "radishes", + "bean paste", + "cucumber", + "water", + "potatoes", + "vegetable oil", + "noodles", + "pork belly", + "zucchini", + "sesame oil", + "onions", + "olive oil", + "starch", + "daikon" + ] + }, + { + "id": 44896, + "cuisine": "chinese", + "ingredients": [ + "roasted cashews", + "vegetable oil", + "garlic cloves", + "pepper", + "rice vinegar", + "hoisin sauce", + "scallions", + "boneless chicken skinless thigh", + "salt", + "corn starch" + ] + }, + { + "id": 48292, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "cilantro", + "white onion", + "tomatillos", + "hass avocado", + "kosher salt", + "epazote", + "serrano chile", + "fine salt", + "garlic cloves" + ] + }, + { + "id": 2624, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "asian basil", + "yellow bean sauce", + "rice noodles", + "ground white pepper", + "pork sausages", + "red chili peppers", + "hoisin sauce", + "spring onions", + "salt", + "dried shrimp", + "banana blossom", + "sugar", + "pork ribs", + "bawang goreng", + "lemon", + "beansprouts", + "chicken", + "eggs", + "water", + "leeks", + "shallots", + "cilantro leaves", + "onions" + ] + }, + { + "id": 29301, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "chopped garlic", + "thai chile", + "water", + "fish sauce", + "fresh lime juice" + ] + }, + { + "id": 48648, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "ground black pepper", + "creole seasoning", + "canola", + "lemon", + "wondra flour", + "neutral oil", + "cayenne", + "corn starch", + "catfish fillets", + "garlic powder", + "hot sauce" + ] + }, + { + "id": 9599, + "cuisine": "chinese", + "ingredients": [ + "fish sauce", + "light soy sauce", + "oil", + "greater yam", + "dried prawns", + "garlic", + "minced pork", + "sugar", + "sesame oil", + "ground white pepper", + "garlic chives", + "tapioca flour", + "salt", + "dried mushrooms" + ] + }, + { + "id": 29702, + "cuisine": "italian", + "ingredients": [ + "sugar", + "unsalted butter", + "large egg whites", + "pure vanilla extract" + ] + }, + { + "id": 43081, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "salt", + "potato starch", + "unsalted butter", + "olive oil", + "grated lemon zest", + "sugar", + "almond extract" + ] + }, + { + "id": 27902, + "cuisine": "thai", + "ingredients": [ + "garlic paste", + "crushed red pepper flakes", + "cinnamon sticks", + "ground turmeric", + "water", + "lentils", + "coconut milk", + "fish sauce", + "cumin seed", + "red bell pepper", + "thai basil", + "mustard seeds", + "onions" + ] + }, + { + "id": 19612, + "cuisine": "vietnamese", + "ingredients": [ + "white vinegar", + "garlic", + "fish sauce", + "white sugar", + "lime", + "cold water", + "garlic chili sauce" + ] + }, + { + "id": 32951, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "hellmann' or best food real mayonnais", + "jalapeno chilies", + "chopped cilantro fresh", + "lime juice", + "whole kernel corn, drain", + "tomatoes", + "purple onion", + "ground cumin" + ] + }, + { + "id": 9416, + "cuisine": "thai", + "ingredients": [ + "low sodium soy sauce", + "green onions", + "rice vinegar", + "peanuts", + "crushed red pepper flakes", + "honey", + "sesame oil", + "chopped cilantro", + "shredded carrots", + "linguine" + ] + }, + { + "id": 5129, + "cuisine": "indian", + "ingredients": [ + "chile de arbol", + "ghee", + "kosher salt", + "scallions", + "yellow mustard seeds", + "freshly ground pepper", + "flat leaf spinach", + "garlic cloves" + ] + }, + { + "id": 28813, + "cuisine": "filipino", + "ingredients": [ + "green peppercorns", + "kosher salt", + "finely chopped onion", + "salt", + "chicken stock", + "minced ginger", + "lime wedges", + "coconut milk", + "arborio rice", + "water", + "cured chorizo", + "garlic cloves", + "tomato paste", + "cayenne", + "extra-virgin olive oil", + "large shrimp" + ] + }, + { + "id": 29142, + "cuisine": "italian", + "ingredients": [ + "flour tortillas", + "shredded mozzarella cheese", + "pepperoni", + "pasta sauce", + "fresh parsley" + ] + }, + { + "id": 10838, + "cuisine": "italian", + "ingredients": [ + "salad greens", + "dijon mustard", + "lemon juice", + "grape tomatoes", + "olive oil", + "crushed red pepper", + "minced garlic", + "feta cheese", + "purple onion", + "dough", + "dried basil", + "cooking spray", + "red bell pepper" + ] + }, + { + "id": 45494, + "cuisine": "japanese", + "ingredients": [ + "dashi kombu", + "bonito", + "water" + ] + }, + { + "id": 25925, + "cuisine": "french", + "ingredients": [ + "red potato", + "juniper berries", + "bacon slices", + "knockwurst", + "clove", + "horseradish", + "bay leaves", + "kielbasa", + "onions", + "mustard", + "red delicious apples", + "pinot blanc", + "ham hock", + "allspice", + "black peppercorns", + "sauerkraut", + "brats", + "fresh parsley" + ] + }, + { + "id": 36357, + "cuisine": "mexican", + "ingredients": [ + "cooked brown rice", + "kidney beans", + "whole kernel corn, drain", + "green bell pepper", + "lime", + "cilantro leaves", + "minced garlic", + "salt", + "ground cumin", + "black beans", + "jalapeno chilies", + "onions" + ] + }, + { + "id": 42674, + "cuisine": "italian", + "ingredients": [ + "honey", + "red wine vinegar", + "chickpeas", + "english cucumber", + "ground black pepper", + "purple onion", + "lemon rind", + "fresh lemon juice", + "olive oil", + "chopped celery", + "anchovy fillets", + "garlic cloves", + "grape tomatoes", + "cannellini beans", + "salt", + "chopped fresh sage", + "flat leaf parsley" + ] + }, + { + "id": 13714, + "cuisine": "southern_us", + "ingredients": [ + "juice", + "cinnamon", + "light brown sugar", + "corn starch", + "cinnamon rolls" + ] + }, + { + "id": 17292, + "cuisine": "italian", + "ingredients": [ + "baking powder", + "white sugar", + "vanilla extract", + "butter", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 45499, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "cilantro", + "cumin", + "chicken broth", + "diced green chilies", + "salsa", + "minced garlic", + "salt", + "boneless pork shoulder roast", + "chili powder", + "corn tortillas" + ] + }, + { + "id": 13825, + "cuisine": "southern_us", + "ingredients": [ + "horseradish", + "apple cider vinegar", + "dijon mustard", + "salt", + "ketchup", + "crushed red pepper", + "brown sugar", + "shallots" + ] + }, + { + "id": 37451, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "flour", + "evaporated milk", + "salt", + "milk", + "baking powder", + "melted butter", + "granulated sugar", + "cornmeal" + ] + }, + { + "id": 19813, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "steamed white rice", + "vegetable oil", + "corn starch", + "fresh ginger", + "leeks", + "dark brown sugar", + "kosher salt", + "Shaoxing wine", + "rice vinegar", + "wild mushrooms", + "celery ribs", + "ground black pepper", + "flank steak", + "garlic cloves" + ] + }, + { + "id": 2665, + "cuisine": "southern_us", + "ingredients": [ + "dried currants", + "baking powder", + "light brown sugar", + "large eggs", + "salt", + "pure vanilla extract", + "baking soda", + "vegetable oil", + "pecans", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 1117, + "cuisine": "chinese", + "ingredients": [ + "seasoning", + "fresh ginger", + "star anise", + "pork", + "leeks", + "broccoli", + "dark soy sauce", + "vegetables", + "salt", + "savoy cabbage", + "caster sugar", + "rice wine", + "onions" + ] + }, + { + "id": 3233, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "vegetable oil", + "corn starch", + "lime juice", + "garlic", + "chopped cilantro fresh", + "minced garlic", + "thai chile", + "sliced shallots", + "branzino", + "fresh ginger", + "canned tomatoes" + ] + }, + { + "id": 15671, + "cuisine": "french", + "ingredients": [ + "brown sugar", + "fat free milk", + "butter cooking spray", + "powdered sugar", + "chocolate syrup", + "almond extract", + "all-purpose flour", + "cocoa", + "large eggs", + "vanilla extract", + "chambord", + "raspberries", + "vegetable oil", + "cheese" + ] + }, + { + "id": 29193, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "green onions", + "diced tomatoes", + "canned black beans", + "olive oil", + "bacon", + "diced onions", + "corn", + "chili powder", + "sour cream", + "black pepper", + "potatoes", + "sea salt" + ] + }, + { + "id": 8364, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "unsalted butter", + "yellow onion", + "kosher salt", + "low sodium chicken broth", + "black pepper", + "grated parmesan cheese", + "frozen peas", + "prosciutto", + "dry white wine" + ] + }, + { + "id": 31500, + "cuisine": "southern_us", + "ingredients": [ + "shredded extra sharp cheddar cheese", + "extra-virgin olive oil", + "grits", + "reduced sodium chicken broth", + "bacon", + "salt", + "collard greens", + "large eggs", + "garlic", + "water", + "prepar salsa", + "onions" + ] + }, + { + "id": 5435, + "cuisine": "vietnamese", + "ingredients": [ + "eggs", + "hoisin sauce", + "scallions", + "minced garlic", + "ground pork", + "toasted sesame seeds", + "soy sauce", + "sesame oil", + "garlic cloves", + "ground ginger", + "panko", + "rice vinegar", + "sliced green onions" + ] + }, + { + "id": 24081, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "sugar", + "red wine vinegar", + "red cabbage", + "kosher salt" + ] + }, + { + "id": 34059, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "cayenne pepper", + "cinnamon sticks", + "vegetable oil", + "pork loin chops", + "water", + "cumin seed", + "white sugar", + "fennel seeds", + "salt", + "mustard seeds" + ] + }, + { + "id": 6827, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "green onions", + "fresh mushrooms", + "crawfish", + "grated parmesan cheese", + "crushed red pepper", + "fresh parsley", + "olive oil", + "half & half", + "salt", + "ground black pepper", + "butter", + "creole style seasoning" + ] + }, + { + "id": 21164, + "cuisine": "italian", + "ingredients": [ + "red potato", + "salt", + "olive oil", + "vegetable oil cooking spray", + "all-purpose flour", + "garlic" + ] + }, + { + "id": 34678, + "cuisine": "southern_us", + "ingredients": [ + "chopped green bell pepper", + "hot sauce", + "long-grain rice", + "black pepper", + "green onions", + "creole seasoning", + "fresh spinach", + "cooking spray", + "boneless pork loin", + "garlic cloves", + "black-eyed peas", + "bacon", + "chopped onion" + ] + }, + { + "id": 11113, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "ginger", + "potato starch", + "vegetable oil", + "chicken thighs", + "granulated sugar", + "garlic", + "sake", + "lemon" + ] + }, + { + "id": 45967, + "cuisine": "cajun_creole", + "ingredients": [ + "instant rice", + "garlic", + "dried oregano", + "green bell pepper", + "chicken breasts", + "yellow onion", + "andouille sausage", + "diced tomatoes", + "cooked shrimp", + "chicken broth", + "dried thyme", + "creole seasoning mix" + ] + }, + { + "id": 44280, + "cuisine": "italian", + "ingredients": [ + "genoa salami", + "shallots", + "fresh oregano", + "minced peperoncini", + "olive oil", + "teleme", + "brine cured green olives", + "bread", + "black forest ham", + "white wine vinegar", + "iceberg lettuce", + "capers", + "butter", + "provolone cheese" + ] + }, + { + "id": 1448, + "cuisine": "mexican", + "ingredients": [ + "chicken drumsticks", + "minced garlic", + "chopped cilantro", + "pepper", + "salt", + "lime" + ] + }, + { + "id": 22106, + "cuisine": "southern_us", + "ingredients": [ + "frozen lima beans", + "vegetable oil", + "frozen corn", + "pheasant", + "pepper", + "beef stock", + "rabbit", + "venison", + "onions", + "celery ribs", + "potatoes", + "worcestershire sauce", + "green pepper", + "carrots", + "crushed tomatoes", + "Tabasco Pepper Sauce", + "salt", + "garlic cloves" + ] + }, + { + "id": 33698, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "curds", + "curry leaves", + "tomato ketchup", + "ground turmeric", + "salt", + "oil", + "coriander powder", + "green chilies", + "chicken" + ] + }, + { + "id": 7339, + "cuisine": "southern_us", + "ingredients": [ + "horseradish", + "green tomatoes", + "cayenne pepper", + "creole mustard", + "peaches", + "buttermilk", + "cornmeal", + "eggs", + "flour", + "salt", + "panko breadcrumbs", + "ground black pepper", + "vegetable oil", + "jelly" + ] + }, + { + "id": 1701, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "salt", + "shiso", + "mirin", + "bass", + "shiitake", + "gyoza wrappers", + "soy sauce", + "marinade", + "scallions" + ] + }, + { + "id": 48483, + "cuisine": "mexican", + "ingredients": [ + "orange bell pepper", + "white onion", + "garlic", + "mild olive oil", + "tomatoes", + "jalapeno chilies" + ] + }, + { + "id": 39209, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "beets", + "sugar", + "salt", + "buttermilk", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 9489, + "cuisine": "italian", + "ingredients": [ + "veal stock", + "veal", + "all-purpose flour", + "bay leaf", + "celery ribs", + "ground black pepper", + "salt", + "flat leaf parsley", + "fresh rosemary", + "leeks", + "grated lemon zest", + "onions", + "sage leaves", + "olive oil", + "dry white wine", + "carrots", + "plum tomatoes" + ] + }, + { + "id": 4149, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "purple onion", + "rotisserie chicken", + "plum tomatoes", + "chipotle chile", + "baking powder", + "all-purpose flour", + "fresh lime juice", + "yellow corn meal", + "large eggs", + "cilantro leaves", + "sour cream", + "canola oil", + "black pepper", + "part-skim ricotta cheese", + "frozen corn", + "adobo sauce" + ] + }, + { + "id": 2106, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "chopped green bell pepper", + "garlic cloves", + "italian salad dressing", + "bouillon cube", + "long-grain rice", + "olive oil flavored cooking spray", + "olive oil", + "chopped onion", + "boneless skinless chicken breast halves", + "turkey breakfast sausage", + "chopped celery", + "hot water", + "sliced green onions" + ] + }, + { + "id": 25616, + "cuisine": "russian", + "ingredients": [ + "water", + "lean ground beef", + "fresh parsley", + "eggs", + "ground black pepper", + "salt", + "cabbage", + "tomato sauce", + "finely chopped onion", + "cooked white rice", + "white vinegar", + "garlic powder", + "ground pork", + "white sugar" + ] + }, + { + "id": 8922, + "cuisine": "greek", + "ingredients": [ + "plain flour", + "vegetable oil", + "caster sugar", + "greek yogurt", + "eggs", + "lemon", + "baking powder" + ] + }, + { + "id": 43202, + "cuisine": "greek", + "ingredients": [ + "large egg whites", + "whole milk", + "bread crumb fresh", + "large eggs", + "lemon wedge", + "tarama", + "french bread", + "russet potatoes", + "safflower oil", + "olive oil", + "green onions" + ] + }, + { + "id": 42283, + "cuisine": "french", + "ingredients": [ + "hot mustard", + "leeks", + "salt", + "onions", + "lamb shanks", + "grated horseradish", + "veal shanks", + "plum tomatoes", + "capers", + "beef shank", + "cornichons", + "yukon gold", + "gaeta olives", + "sea salt", + "carrots" + ] + }, + { + "id": 11070, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "mint leaves", + "apples", + "cabbage", + "fish sauce", + "lime", + "chicken breasts", + "rice vinegar", + "toasted nuts", + "green onions", + "cilantro leaves", + "brown sugar", + "radishes", + "sesame oil", + "chili sauce" + ] + }, + { + "id": 43524, + "cuisine": "thai", + "ingredients": [ + "vegetable oil", + "thai green curry paste", + "fresh basil", + "sliced shallots", + "unsweetened coconut milk", + "red bell pepper", + "boneless skinless chicken breast halves", + "fish sauce", + "fresh lime juice" + ] + }, + { + "id": 248, + "cuisine": "chinese", + "ingredients": [ + "pork ribs", + "cilantro leaves", + "soy sauce", + "rice wine", + "fermented black beans", + "jalapeno chilies", + "corn starch", + "kosher salt", + "sesame oil" + ] + }, + { + "id": 32957, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "provolone cheese", + "eggplant", + "onions", + "eggs", + "roma tomatoes", + "bread crumbs", + "ham" + ] + }, + { + "id": 29695, + "cuisine": "chinese", + "ingredients": [ + "lower sodium soy sauce", + "cooking spray", + "ginger", + "onions", + "canola oil", + "kosher salt", + "pork tenderloin", + "green onions", + "oyster sauce", + "five-spice powder", + "honey", + "jalapeno chilies", + "dry sherry", + "beansprouts", + "boiling water", + "white pepper", + "hoisin sauce", + "mushrooms", + "garlic cloves", + "noodles" + ] + }, + { + "id": 32556, + "cuisine": "italian", + "ingredients": [ + "red pepper flakes", + "plum tomatoes", + "penne", + "garlic cloves", + "pecorino cheese", + "salt", + "olive oil", + "flat leaf parsley" + ] + }, + { + "id": 48185, + "cuisine": "mexican", + "ingredients": [ + "fresh coriander", + "chopped onion", + "vegetable oil", + "vine ripened tomatoes", + "chili", + "fresh lime juice" + ] + }, + { + "id": 35121, + "cuisine": "moroccan", + "ingredients": [ + "white onion", + "ground black pepper", + "ras el hanout", + "whole almonds", + "honey", + "golden raisins", + "saffron threads", + "kosher salt", + "unsalted butter", + "toasted sesame seeds", + "lamb shanks", + "olive oil", + "cinnamon" + ] + }, + { + "id": 12872, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "pork loin chops", + "light brown sugar", + "salt" + ] + }, + { + "id": 26189, + "cuisine": "filipino", + "ingredients": [ + "roma tomatoes", + "oil", + "pepper", + "salt", + "onions", + "fish sauce", + "garlic", + "bay leaf", + "vinegar", + "squid", + "peppercorns" + ] + }, + { + "id": 35749, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "kosher salt", + "salsa", + "avocado", + "cilantro", + "garlic powder", + "sour cream" + ] + }, + { + "id": 44954, + "cuisine": "indian", + "ingredients": [ + "basmati rice", + "cumin seed", + "water", + "frozen peas" + ] + }, + { + "id": 29562, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "ground black pepper", + "chopped fresh thyme", + "fontina cheese", + "frozen whole kernel corn", + "dry white wine", + "salt", + "arborio rice", + "fresh parmesan cheese", + "sweet potatoes", + "vegetable broth", + "water", + "ground nutmeg", + "shallots", + "fresh parsley" + ] + }, + { + "id": 43, + "cuisine": "french", + "ingredients": [ + "capers", + "cooking spray", + "anchovy fillets", + "fresh lemon juice", + "green bell pepper", + "tuna steaks", + "Niçoise olives", + "green beans", + "tomatoes", + "large eggs", + "vinaigrette", + "small red potato", + "romaine lettuce", + "watercress", + "freshly ground pepper" + ] + }, + { + "id": 37637, + "cuisine": "italian", + "ingredients": [ + "pasta", + "grated parmesan cheese", + "cooked chicken breasts", + "garlic powder", + "cayenne pepper", + "cream", + "butter", + "ground black pepper", + "fresh asparagus" + ] + }, + { + "id": 30719, + "cuisine": "mexican", + "ingredients": [ + "butter", + "dried parsley", + "shredded cheddar cheese", + "cream cheese", + "jalapeno chilies", + "sour cream", + "seasoned bread crumbs", + "shredded parmesan cheese" + ] + }, + { + "id": 12585, + "cuisine": "spanish", + "ingredients": [ + "squid", + "olive oil", + "paella rice", + "fish stock" + ] + }, + { + "id": 43923, + "cuisine": "thai", + "ingredients": [ + "eggs", + "light soy sauce", + "chopped cilantro", + "bread crumbs", + "shredded lettuce", + "sweet chili sauce", + "ground black pepper", + "ground beef", + "baguette", + "Thai red curry paste" + ] + }, + { + "id": 5170, + "cuisine": "russian", + "ingredients": [ + "semolina", + "raisins", + "eggs", + "flour", + "cottage cheese", + "butter", + "splenda granular", + "vanilla sugar", + "sour cream" + ] + }, + { + "id": 14037, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "lemon zest", + "fresh oregano", + "greek yogurt", + "black pepper", + "feta cheese", + "parsley", + "pork loin chops", + "pita bread", + "olive oil", + "lettuce leaves", + "fresh lemon juice", + "kosher salt", + "diced red onions", + "diced tomatoes", + "cucumber" + ] + }, + { + "id": 40136, + "cuisine": "italian", + "ingredients": [ + "fresh marjoram", + "large eggs", + "extra-virgin olive oil", + "ground beef", + "applewood smoked bacon", + "roasted red peppers", + "dry white wine", + "diced tomatoes in juice", + "panko breadcrumbs", + "finely chopped onion", + "large garlic cloves", + "coarse kosher salt", + "spaghetti", + "ground black pepper", + "grated parmesan cheese", + "crushed red pepper", + "onions" + ] + }, + { + "id": 41357, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dried oregano", + "romano cheese", + "salt", + "water", + "bread flour", + "sugar", + "dry yeast" + ] + }, + { + "id": 12649, + "cuisine": "british", + "ingredients": [ + "baking soda", + "whole milk", + "kosher salt", + "dry yeast", + "granulated sugar", + "cornmeal", + "water", + "flour" + ] + }, + { + "id": 36186, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "lemon peel", + "beef broth", + "chopped cilantro fresh", + "pitted kalamata olives", + "golden raisins", + "garlic cloves", + "ground cumin", + "garbanzo beans", + "beef tenderloin", + "onions", + "olive oil", + "paprika", + "carrots" + ] + }, + { + "id": 31010, + "cuisine": "chinese", + "ingredients": [ + "water", + "onion powder", + "white sesame seeds", + "low sodium soy sauce", + "Sriracha", + "garlic cloves", + "honey", + "scallions", + "panko breadcrumbs", + "boneless chicken thighs", + "large eggs", + "corn starch" + ] + }, + { + "id": 20156, + "cuisine": "french", + "ingredients": [ + "sugar", + "heavy cream", + "whole milk", + "large egg yolks", + "bittersweet chocolate", + "cinnamon" + ] + }, + { + "id": 41686, + "cuisine": "chinese", + "ingredients": [ + "daikon", + "rice vinegar", + "sugar", + "coarse sea salt", + "carrots", + "chili oil", + "english cucumber", + "szechwan peppercorns", + "thai chile" + ] + }, + { + "id": 38573, + "cuisine": "jamaican", + "ingredients": [ + "adzuki beans", + "brown rice", + "garlic cloves", + "olive oil", + "salt", + "ground black pepper", + "yellow onion", + "fresh cilantro", + "light coconut milk" + ] + }, + { + "id": 21788, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "butter", + "water", + "mushrooms", + "cornmeal", + "fontina", + "grated parmesan cheese", + "salt", + "olive oil", + "dried sage" + ] + }, + { + "id": 13763, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "thai chile", + "cherry tomatoes", + "cucumber", + "lime", + "roasted peanuts", + "long beans", + "palm sugar", + "dried shrimp" + ] + }, + { + "id": 49324, + "cuisine": "mexican", + "ingredients": [ + "chopped hazelnuts", + "chopped walnuts", + "unflavored gelatin", + "gluten free vanilla extract", + "confectioners sugar", + "butter", + "corn starch", + "tapioca flour", + "white rice flour" + ] + }, + { + "id": 29133, + "cuisine": "british", + "ingredients": [ + "sugar", + "large eggs", + "salt", + "baking soda", + "vanilla extract", + "dried currants", + "heavy cream", + "double-acting baking powder", + "unsalted butter", + "cake flour" + ] + }, + { + "id": 44437, + "cuisine": "brazilian", + "ingredients": [ + "cream", + "white sugar", + "sweetened condensed milk", + "passion fruit" + ] + }, + { + "id": 42142, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "olive oil", + "diced tomatoes", + "green beans", + "dried pasta", + "cannellini beans", + "dri leav thyme", + "onions", + "kosher salt", + "freshly grated parmesan", + "broccoli", + "low sodium beef broth", + "water", + "yukon gold potatoes", + "carrots", + "cabbage" + ] + }, + { + "id": 12932, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "green onions", + "avocado", + "chili", + "lime juice", + "chopped cilantro fresh", + "minced garlic", + "spaghetti" + ] + }, + { + "id": 11036, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "shredded mild cheddar cheese", + "garlic", + "zucchini", + "salt", + "white onion", + "stewed tomatoes" + ] + }, + { + "id": 23719, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "grated orange", + "powdered sugar", + "butter", + "fresh lemon juice", + "baking powder", + "all-purpose flour", + "granulated sugar", + "fresh orange juice", + "orange rind" + ] + }, + { + "id": 37920, + "cuisine": "chinese", + "ingredients": [ + "peeled fresh ginger", + "rice vinegar", + "sugar", + "thai chile", + "garlic cloves", + "low sodium soy sauce", + "dry sherry", + "peanut oil", + "potatoes", + "salt", + "sliced green onions" + ] + }, + { + "id": 9095, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "pepper", + "salt", + "tomato sauce", + "lasagna noodles", + "cottage cheese", + "lean ground beef", + "eggs", + "garlic powder", + "dried parsley" + ] + }, + { + "id": 30359, + "cuisine": "mexican", + "ingredients": [ + "sweet potatoes", + "ground cumin", + "no-salt-added diced tomatoes", + "baby spinach", + "no-salt-added black beans", + "curry powder", + "corn tortillas" + ] + }, + { + "id": 31076, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "radishes", + "romaine lettuce leaves", + "salt", + "sesame seeds", + "tomatillos", + "unsalted dry roast peanuts", + "fish", + "pepper", + "jalapeno chilies", + "cilantro sprigs", + "onions", + "fresh cilantro", + "roasted pumpkin seeds", + "garlic", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 36708, + "cuisine": "southern_us", + "ingredients": [ + "vanilla extract", + "chopped pecans", + "unbaked pie crusts", + "margarine", + "white sugar", + "eggs", + "all-purpose flour", + "cornmeal", + "flaked coconut", + "lemon juice" + ] + }, + { + "id": 23385, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "onion salt", + "chili powder", + "all-purpose flour", + "low sodium chicken broth", + "salt", + "tomato sauce", + "vegetable oil", + "ground cumin" + ] + }, + { + "id": 10905, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "fat-free chicken broth", + "scallions", + "chicken breasts", + "salt", + "chopped cilantro fresh", + "onion powder", + "frozen corn", + "cumin", + "black beans", + "diced tomatoes", + "cayenne pepper" + ] + }, + { + "id": 16528, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "chopped cilantro fresh", + "chicken breasts", + "salsa", + "flour tortillas" + ] + }, + { + "id": 42218, + "cuisine": "italian", + "ingredients": [ + "water", + "large garlic cloves", + "beef broth", + "pancetta", + "fresh shiitake mushrooms", + "all-purpose flour", + "onions", + "olive oil", + "rabbit", + "fresh parsley leaves", + "dry white wine", + "white wine vinegar", + "fresh herbs" + ] + }, + { + "id": 39296, + "cuisine": "greek", + "ingredients": [ + "coffee", + "sugar" + ] + }, + { + "id": 24663, + "cuisine": "irish", + "ingredients": [ + "pepper", + "lobster meat", + "butter", + "cream", + "salt", + "Irish whiskey" + ] + }, + { + "id": 2207, + "cuisine": "indian", + "ingredients": [ + "lime", + "onion powder", + "chicken leg quarters", + "onions", + "chicken bouillon", + "garam masala", + "salt", + "sour cream", + "ground cumin", + "water", + "jalapeno chilies", + "cayenne pepper", + "coconut milk", + "tomato paste", + "olive oil", + "diced tomatoes", + "mustard seeds", + "basmati rice" + ] + }, + { + "id": 36902, + "cuisine": "indian", + "ingredients": [ + "baby spinach leaves", + "red capsicum", + "curry", + "green beans", + "ground turmeric", + "sugar", + "coriander seeds", + "ginger", + "cumin seed", + "curry paste", + "olive oil", + "button mushrooms", + "salt", + "coconut milk", + "red chili peppers", + "potatoes", + "garlic", + "carrots", + "onions" + ] + }, + { + "id": 13141, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "pepper jack", + "salt", + "corn tortillas", + "ground black pepper", + "chili powder", + "yellow onion", + "cumin", + "garlic powder", + "green onions", + "salsa", + "ground beef", + "sliced black olives", + "onion powder", + "enchilada sauce" + ] + }, + { + "id": 33410, + "cuisine": "mexican", + "ingredients": [ + "cod", + "olive oil", + "cilantro", + "corn tortillas", + "kosher salt", + "cooking spray", + "smoked paprika", + "ground oregano", + "black pepper", + "red cabbage", + "dry mustard", + "mango", + "lime", + "lime wedges", + "ground cayenne pepper", + "ground cumin" + ] + }, + { + "id": 44571, + "cuisine": "british", + "ingredients": [ + "sugar", + "salt", + "strawberry jam", + "yeast", + "strong white bread flour", + "butter", + "milk", + "clotted cream" + ] + }, + { + "id": 31187, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "vegetable broth", + "herbes de provence", + "dressing", + "crimini mushrooms", + "lemon slices", + "dry white wine", + "artichokes", + "tomatoes", + "lemon", + "garlic cloves" + ] + }, + { + "id": 16799, + "cuisine": "chinese", + "ingredients": [ + "white onion", + "low sodium chicken broth", + "scallions", + "ground cumin", + "low sodium soy sauce", + "steamed rice", + "crushed red pepper", + "toasted sesame oil", + "sugar", + "ground black pepper", + "cilantro leaves", + "canola oil", + "kosher salt", + "lamb shoulder", + "corn starch" + ] + }, + { + "id": 11433, + "cuisine": "chinese", + "ingredients": [ + "vanilla essence", + "glutinous rice flour", + "milk", + "coconut milk", + "sugar", + "coconut cream", + "eggs", + "flour", + "white sugar" + ] + }, + { + "id": 49575, + "cuisine": "spanish", + "ingredients": [ + "sweet onion", + "sobrasada", + "all-purpose flour", + "large eggs", + "vegetable shortening", + "garlic cloves", + "saffron threads", + "dry white wine", + "salt", + "leg of lamb", + "olive oil", + "ice water", + "orange juice" + ] + }, + { + "id": 2927, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame seeds", + "garlic cloves", + "water", + "green onions", + "onions", + "pepper", + "boneless chicken breast", + "corn starch", + "ground ginger", + "honey", + "rice vinegar" + ] + }, + { + "id": 21373, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "sour cream", + "chili powder", + "cooked chicken", + "shredded Monterey Jack cheese", + "flour tortillas", + "Pace Picante Sauce" + ] + }, + { + "id": 11091, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "garlic cloves", + "dried oregano", + "grated parmesan cheese", + "penne pasta", + "low salt chicken broth", + "olive oil", + "portabello mushroom", + "feta cheese crumbles", + "green onions", + "chicken fingers", + "plum tomatoes" + ] + }, + { + "id": 3208, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "lettuce leaves", + "rice vermicelli", + "freshly ground pepper", + "large shrimp", + "chicken broth", + "chili paste", + "vegetable oil", + "boneless pork loin", + "carrots", + "water", + "jicama", + "unsalted dry roast peanuts", + "garlic cloves", + "rice paper", + "fish sauce", + "hoisin sauce", + "cilantro sprigs", + "dill tips", + "fresh mint" + ] + }, + { + "id": 25383, + "cuisine": "mexican", + "ingredients": [ + "butter", + "milk", + "cream cheese", + "frozen corn", + "jalapeno chilies", + "red bell pepper" + ] + }, + { + "id": 23942, + "cuisine": "cajun_creole", + "ingredients": [ + "orange blossom extract", + "butter", + "orange juice", + "orange", + "salt", + "bread flour", + "eggs", + "milk", + "all-purpose flour", + "sugar", + "lemon", + "yeast" + ] + }, + { + "id": 30794, + "cuisine": "mexican", + "ingredients": [ + "English muffins", + "pepper", + "salt", + "eggs", + "guacamole", + "refried beans", + "salsa" + ] + }, + { + "id": 2866, + "cuisine": "italian", + "ingredients": [ + "reduced-fat sour cream", + "salt", + "grated parmesan cheese", + "1% low-fat milk", + "corn starch", + "prosciutto", + "dried fettuccine", + "fat skimmed chicken broth", + "pepper", + "peas", + "grated nutmeg" + ] + }, + { + "id": 29465, + "cuisine": "japanese", + "ingredients": [ + "brandy", + "chocolate", + "milk", + "eggs", + "egg yolks", + "silken tofu", + "cocoa powder" + ] + }, + { + "id": 14150, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "beef broth", + "chopped fresh mint", + "beef tenderloin", + "baby carrots", + "shallots", + "cayenne pepper", + "ground cumin", + "all-purpose flour", + "pumpkin pie spice" + ] + }, + { + "id": 16233, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "grated parmesan cheese", + "pizza doughs", + "pepper", + "all-purpose flour", + "red bell pepper", + "pesto", + "salt", + "shrimp", + "yellow corn meal", + "olive oil", + "yellow onion" + ] + }, + { + "id": 31526, + "cuisine": "italian", + "ingredients": [ + "white pepper", + "salt", + "albacore tuna in water", + "capers", + "light mayonnaise", + "fresh lemon juice", + "italian seasoning", + "fat free less sodium chicken broth", + "turkey tenderloins", + "juice", + "olive oil", + "anchovy fillets", + "flat leaf parsley" + ] + }, + { + "id": 12672, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "chinese five-spice powder", + "tofu", + "vegetable oil", + "white sugar", + "rice wine", + "garlic cloves", + "pork", + "salt" + ] + }, + { + "id": 28230, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "milk", + "ketchup", + "salt", + "cottage cheese", + "flour tortillas", + "avocado", + "shredded cheddar cheese" + ] + }, + { + "id": 22847, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "sugar", + "fresh lime juice", + "red chili peppers", + "fish sauce", + "garlic" + ] + }, + { + "id": 44647, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "salt", + "granulated sugar", + "confectioners sugar", + "almond flour", + "all-purpose flour", + "almond extract" + ] + }, + { + "id": 14366, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "sesame seeds", + "tomatillos", + "salt", + "ancho chile pepper", + "guajillo chiles", + "Mexican oregano", + "garlic", + "dark brown sugar", + "onions", + "dark chocolate", + "chuck roast", + "raisins", + "pumpkin seeds", + "bay leaf", + "tomatoes", + "water", + "vegetable oil", + "coco", + "cinnamon sticks" + ] + }, + { + "id": 23747, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "bay leaves", + "extra-virgin olive oil", + "garlic cloves", + "chicken thighs", + "cremini mushrooms", + "red wine", + "cognac", + "thyme sprigs", + "pearl onions", + "bacon", + "freshly ground pepper", + "onions", + "chicken legs", + "coarse salt", + "all-purpose flour", + "chicken livers" + ] + }, + { + "id": 12249, + "cuisine": "cajun_creole", + "ingredients": [ + "black peppercorns", + "cajun seasoning", + "cabbage", + "garlic powder", + "pork roast", + "olive oil", + "salt", + "tomato paste", + "ground black pepper", + "fresh parsley" + ] + }, + { + "id": 18798, + "cuisine": "french", + "ingredients": [ + "salt and ground black pepper", + "fresh asparagus", + "salmon fillets", + "lemon", + "green onions", + "olive oil", + "lemon juice" + ] + }, + { + "id": 44054, + "cuisine": "spanish", + "ingredients": [ + "egg yolks", + "sugar", + "lemon", + "cold milk", + "cinnamon", + "milk", + "corn starch" + ] + }, + { + "id": 41903, + "cuisine": "southern_us", + "ingredients": [ + "dried sage", + "flour", + "bacon grease", + "ground pepper", + "salt", + "whole milk", + "sausages" + ] + }, + { + "id": 27288, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "fresh leav spinach", + "chili powder", + "green onions", + "shredded cheddar cheese", + "whole wheat tortillas" + ] + }, + { + "id": 38599, + "cuisine": "mexican", + "ingredients": [ + "flour", + "chicken", + "chicken broth", + "green chilies", + "butter", + "shredded Monterey Jack cheese", + "taco shells", + "sour cream" + ] + }, + { + "id": 34369, + "cuisine": "cajun_creole", + "ingredients": [ + "white pepper", + "salt", + "rib eye steaks", + "vegetable oil", + "onions", + "black pepper", + "paprika", + "garlic powder", + "cayenne pepper" + ] + }, + { + "id": 30462, + "cuisine": "thai", + "ingredients": [ + "eggs", + "green onions", + "tamarind paste", + "carrots", + "wide rice noodles", + "peanuts", + "cilantro leaves", + "garlic chili sauce", + "light brown sugar", + "warm water", + "deveined shrimp", + "garlic cloves", + "fish sauce", + "lime wedges", + "oil", + "beansprouts" + ] + }, + { + "id": 32753, + "cuisine": "british", + "ingredients": [ + "plain flour", + "orange", + "large eggs", + "cold milk", + "powdered sugar", + "unsalted butter", + "ground almonds", + "golden caster sugar", + "sliced almonds", + "large free range egg", + "raspberry jam", + "frozen raspberries", + "orange flower water" + ] + }, + { + "id": 15794, + "cuisine": "italian", + "ingredients": [ + "baguette", + "plum tomatoes", + "garlic", + "cooking spray", + "goat cheese" + ] + }, + { + "id": 8483, + "cuisine": "cajun_creole", + "ingredients": [ + "flour", + "vegetable oil", + "creole seasoning", + "andouille sausage", + "green onions", + "chopped celery", + "onions", + "chicken stock", + "bay leaves", + "large garlic cloves", + "chopped parsley", + "boneless chicken breast halves", + "Tabasco Pepper Sauce", + "green pepper" + ] + }, + { + "id": 1287, + "cuisine": "cajun_creole", + "ingredients": [ + "collard greens", + "turnip greens", + "ground red pepper", + "watercress", + "spanish chorizo", + "onions", + "romaine lettuce", + "file powder", + "mustard greens", + "all-purpose flour", + "ham", + "cooked rice", + "carrot greens", + "fresh thyme leaves", + "smoked sausage", + "beets", + "cabbage", + "spinach", + "beef brisket", + "vegetable oil", + "salt", + "garlic cloves" + ] + }, + { + "id": 25970, + "cuisine": "russian", + "ingredients": [ + "eggs", + "golden raisins", + "salt", + "cold milk", + "milk", + "white rice", + "margarine", + "ground cinnamon", + "cake", + "vanilla extract", + "white sugar", + "warm water", + "butter", + "all-purpose flour" + ] + }, + { + "id": 29313, + "cuisine": "italian", + "ingredients": [ + "pure vanilla extract", + "large eggs", + "salt", + "raw almond", + "unsalted butter", + "almond extract", + "grated lemon zest", + "granulated sugar", + "fresh orange juice", + "cranberries", + "light brown sugar", + "orange marmalade", + "all-purpose flour" + ] + }, + { + "id": 5838, + "cuisine": "italian", + "ingredients": [ + "bread slices", + "cheese slices", + "butter", + "grated parmesan cheese" + ] + }, + { + "id": 3940, + "cuisine": "japanese", + "ingredients": [ + "white miso", + "konbu", + "soy sauce", + "shallots", + "red bell pepper", + "cold water", + "leeks", + "carrots", + "shiitake", + "baby spinach" + ] + }, + { + "id": 41050, + "cuisine": "italian", + "ingredients": [ + "white wine", + "linguine", + "hot red pepper flakes", + "diced tomatoes", + "onions", + "clams", + "olive oil", + "garlic", + "fresh basil", + "sliced black olives", + "flat anchovy" + ] + }, + { + "id": 14007, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "milk", + "jalapeno chilies", + "garlic", + "onions", + "chile powder", + "kosher salt", + "olive oil", + "diced tomatoes", + "cornmeal", + "dried oregano", + "black pepper", + "corn kernels", + "guacamole", + "sour cream", + "extra sharp cheddar cheese", + "eggs", + "crushed tomatoes", + "salt and ground black pepper", + "crust", + "ground beef", + "ground cumin" + ] + }, + { + "id": 25211, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "sweet corn", + "water", + "sugar", + "cornflour" + ] + }, + { + "id": 31910, + "cuisine": "irish", + "ingredients": [ + "white pepper", + "flour", + "chopped parsley", + "clams", + "milk", + "heavy cream", + "onions", + "water", + "egg yolks", + "bay leaf", + "nutmeg", + "unsalted butter", + "salt" + ] + }, + { + "id": 46715, + "cuisine": "italian", + "ingredients": [ + "water", + "sage leaves", + "grated parmesan cheese", + "yellow corn meal", + "salt", + "unsalted butter" + ] + }, + { + "id": 96, + "cuisine": "italian", + "ingredients": [ + "dry yeast", + "olive oil", + "all-purpose flour", + "warm water", + "salt", + "sugar", + "cooking spray" + ] + }, + { + "id": 11441, + "cuisine": "southern_us", + "ingredients": [ + "bay leaves", + "white rice", + "water", + "vegetable oil", + "cayenne pepper", + "chopped green bell pepper", + "chicken meat", + "onions", + "andouille sausage", + "green onions", + "salt" + ] + }, + { + "id": 48572, + "cuisine": "southern_us", + "ingredients": [ + "cheese", + "all-purpose flour", + "biscuits" + ] + }, + { + "id": 14892, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "cilantro", + "pineapple", + "chili pepper", + "purple onion" + ] + }, + { + "id": 15690, + "cuisine": "brazilian", + "ingredients": [ + "water", + "strawberries", + "lemon", + "granulated sugar", + "lime", + "cachaca" + ] + }, + { + "id": 30943, + "cuisine": "french", + "ingredients": [ + "ground red pepper", + "garlic", + "onions", + "chicken broth", + "dried apple", + "ground allspice", + "chicken breast halves", + "salt", + "dried cranberries", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 33532, + "cuisine": "mexican", + "ingredients": [ + "frozen chopped spinach", + "green onions", + "salt", + "ground cayenne pepper", + "flour tortillas", + "chili powder", + "oil", + "shredded Monterey Jack cheese", + "black beans", + "boneless skinless chicken breasts", + "frozen corn kernels", + "fresh parsley", + "jalapeno chilies", + "vegetable oil", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 22201, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "cayenne pepper", + "cumin", + "garlic powder", + "crushed red pepper flakes", + "coriander", + "coconut oil", + "shredded cabbage", + "chickpeas", + "ground pepper", + "salt", + "dried oregano" + ] + }, + { + "id": 35752, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "leeks", + "cinnamon", + "ground black pepper", + "rice wine", + "star anise", + "chicken stock", + "jalapeno chilies", + "vegetable oil", + "roasting chickens", + "shiitake", + "chinese noodles", + "ground sichuan pepper" + ] + }, + { + "id": 31184, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "vegetable broth", + "cooked shrimp", + "cream", + "salt", + "Madras curry powder", + "black pepper", + "garlic", + "onions", + "lettuce", + "olive oil", + "peaches in syrup", + "plum tomatoes" + ] + }, + { + "id": 46283, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "green pepper", + "sake", + "beef", + "sliced carrots", + "onions", + "sesame", + "shiitake", + "sesame oil", + "Gochujang base", + "sugar", + "mirin", + "garlic" + ] + }, + { + "id": 22415, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "dry white wine", + "juice", + "ground black pepper", + "parsley", + "capers", + "fresh lemon", + "trout fillet", + "chicken broth", + "flour", + "butter" + ] + }, + { + "id": 42856, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "rapeseed oil", + "green chilies", + "dhal", + "salt", + "onions", + "cumin seed" + ] + }, + { + "id": 36613, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "tomatoes with juice", + "carrots", + "lamb shanks", + "condensed chicken broth", + "salt", + "fresh rosemary", + "chopped fresh thyme", + "garlic", + "onions", + "pepper", + "red wine", + "beef broth" + ] + }, + { + "id": 37196, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "crushed red pepper", + "peeled fresh ginger", + "rice vinegar", + "ground cloves", + "purple onion", + "ground cinnamon", + "currant", + "pears" + ] + }, + { + "id": 35056, + "cuisine": "brazilian", + "ingredients": [ + "granulated sugar", + "heavy cream", + "unsalted butter", + "cookies", + "baking soda", + "baking powder", + "corn starch", + "pure vanilla extract", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 38328, + "cuisine": "cajun_creole", + "ingredients": [ + "taco shells", + "chili powder", + "cayenne pepper", + "olive oil", + "paprika", + "minced garlic", + "watercress", + "sour cream", + "avocado", + "medium shrimp uncook", + "salsa" + ] + }, + { + "id": 33968, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "onions", + "frozen spinach", + "garlic", + "ground cumin", + "vegetable oil", + "dhal", + "water", + "salt" + ] + }, + { + "id": 40880, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "olive oil", + "flour", + "corn tortillas", + "fontina cheese", + "milk", + "green bell pepper, slice", + "portobello caps", + "fresh cilantro", + "unsalted butter", + "salt", + "red bell pepper, sliced", + "sweet onion", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 33083, + "cuisine": "italian", + "ingredients": [ + "oil packed anchovy fillets", + "garlic cloves", + "boneless chicken skinless thigh", + "extra-virgin olive oil", + "sugar pea", + "shallots", + "flat leaf parsley", + "bread crumb fresh", + "salt" + ] + }, + { + "id": 45395, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cranberries", + "fresh orange juice", + "nonfat yogurt", + "orange zest", + "unflavored gelatin", + "vanilla" + ] + }, + { + "id": 46756, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "garlic", + "fresh ginger", + "chinese five-spice powder", + "soy sauce", + "rice vinegar", + "ground black pepper", + "beef ribs" + ] + }, + { + "id": 20745, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "cumin", + "chicken breasts", + "garlic powder", + "salsa" + ] + }, + { + "id": 88, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "ground red pepper", + "whole kernel corn, drain", + "yellow corn meal", + "large eggs", + "salt", + "baking soda", + "baking powder", + "nonfat buttermilk", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 45965, + "cuisine": "indian", + "ingredients": [ + "cayenne", + "salt", + "corn starch", + "tomato paste", + "brown rice", + "low-fat yogurt", + "coconut milk", + "boneless skinless chicken breasts", + "sauce", + "ginger root", + "garam masala", + "cilantro", + "garlic cloves", + "onions" + ] + }, + { + "id": 21690, + "cuisine": "chinese", + "ingredients": [ + "shiitake", + "salt", + "frozen peas", + "soy sauce", + "sesame oil", + "long-grain rice", + "cremini mushrooms", + "cooking oil", + "scallions", + "fresh ginger", + "red pepper flakes", + "white mushrooms" + ] + }, + { + "id": 44638, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "shiitake", + "sesame oil", + "carrots", + "sugar", + "dumpling wrappers", + "water chestnuts", + "salt", + "corn starch", + "water", + "cooking oil", + "green peas", + "shrimp", + "pork", + "black fungus", + "spring onions", + "oyster sauce", + "coriander" + ] + }, + { + "id": 26262, + "cuisine": "irish", + "ingredients": [ + "water", + "salt", + "onions", + "celery ribs", + "leeks", + "baby carrots", + "finely chopped fresh parsley", + "boiling onions", + "boiling potatoes", + "black pepper", + "lamb shoulder", + "garlic cloves" + ] + }, + { + "id": 30961, + "cuisine": "indian", + "ingredients": [ + "eggs", + "baking powder", + "milk", + "salt", + "melted butter", + "baking soda", + "all-purpose flour", + "plain yogurt", + "poppy seeds" + ] + }, + { + "id": 7752, + "cuisine": "cajun_creole", + "ingredients": [ + "asparagus", + "cajun seasoning" + ] + }, + { + "id": 13810, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "garlic", + "bay leaf", + "fresh spinach", + "garam masala", + "cinnamon sticks", + "boneless skinless chicken breast halves", + "skim milk", + "vegetable oil", + "ground cayenne pepper", + "ground turmeric", + "tomato paste", + "fresh ginger root", + "ground coriander", + "onions" + ] + }, + { + "id": 47303, + "cuisine": "southern_us", + "ingredients": [ + "whole wheat flour", + "non-dairy margarine", + "dark brown sugar", + "ground cinnamon", + "granulated sugar", + "non dairy milk", + "corn starch", + "ground ginger", + "peaches", + "vanilla extract", + "lemon juice", + "pecans", + "pecan meal", + "salt" + ] + }, + { + "id": 7948, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "roast red peppers, drain", + "french baguette", + "red wine vinegar", + "minced garlic", + "feta cheese crumbles", + "cooking spray", + "ripe olives" + ] + }, + { + "id": 45652, + "cuisine": "spanish", + "ingredients": [ + "sugar pea", + "dry white wine", + "chopped onion", + "low salt chicken broth", + "ground black pepper", + "salt", + "garlic cloves", + "saffron threads", + "roasted red peppers", + "spanish chorizo", + "smoked paprika", + "olive oil", + "diced tomatoes", + "long-grain rice", + "chicken thighs" + ] + }, + { + "id": 46153, + "cuisine": "chinese", + "ingredients": [ + "baby spinach leaves", + "green onions", + "yellow onion", + "garlic powder", + "coarse salt", + "medium shrimp", + "white pepper", + "vegetable oil", + "oyster sauce", + "brown sugar", + "large eggs", + "garlic" + ] + }, + { + "id": 20316, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "powdered sugar", + "cream cheese, soften", + "vanilla extract" + ] + }, + { + "id": 47312, + "cuisine": "mexican", + "ingredients": [ + "water", + "chopped celery", + "chopped onion", + "black pepper", + "chili powder", + "red serrano peppers", + "fresh cilantro", + "sweet pepper", + "long-grain rice", + "tomatoes", + "ground red pepper", + "salt" + ] + }, + { + "id": 22374, + "cuisine": "greek", + "ingredients": [ + "fresh basil", + "garlic cloves", + "extra-virgin olive oil", + "boneless skinless chicken breast halves", + "edamame", + "grated parmesan cheese", + "fresh lemon juice" + ] + }, + { + "id": 3590, + "cuisine": "southern_us", + "ingredients": [ + "coconut oil", + "garlic", + "sour cream", + "biscuits", + "rosemary", + "yellow onion", + "frozen peas", + "potato starch", + "pepper", + "salt", + "celery", + "chicken broth", + "frozen carrots", + "rotisserie chicken", + "sage" + ] + }, + { + "id": 41774, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "chile de arbol", + "oregano", + "chili", + "salt", + "guajillo chiles", + "garlic", + "ground cumin", + "tomatoes", + "tomatillos", + "chopped onion" + ] + }, + { + "id": 30757, + "cuisine": "cajun_creole", + "ingredients": [ + "lemon juice", + "sugar", + "pecan halves", + "nectarines", + "pitted date" + ] + }, + { + "id": 30437, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "salami", + "honey glazed ham", + "dried parsley", + "parmesan cheese", + "pizza doughs", + "eggs", + "pizza sauce" + ] + }, + { + "id": 40025, + "cuisine": "cajun_creole", + "ingredients": [ + "red pepper flakes", + "creole seasoning", + "apple cider vinegar", + "salt", + "bay leaf", + "green bell pepper", + "garlic", + "celery", + "baking potatoes", + "chitterlings", + "onions" + ] + }, + { + "id": 42069, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "salt", + "fresh mint", + "garlic", + "long-grain rice", + "fresh chervil", + "olive oil", + "chopped celery", + "fresh lemon juice", + "jalapeno chilies", + "freshly ground pepper", + "onions" + ] + }, + { + "id": 11895, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "cilantro sprigs", + "canola oil", + "chips", + "lamb loin chops", + "kosher salt", + "shallots", + "oil", + "fresh cilantro", + "cracked black pepper", + "garlic cloves" + ] + }, + { + "id": 28987, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "flour", + "bacon", + "long-grain rice", + "water", + "chicken breasts", + "garlic", + "onions", + "pepper", + "bay leaves", + "crushed red pepper flakes", + "celery", + "chicken broth", + "crushed tomatoes", + "cajun seasoning", + "salt" + ] + }, + { + "id": 21693, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "baking soda", + "vanilla extract", + "peanuts", + "light corn syrup", + "hot pepper sauce", + "ground allspice" + ] + }, + { + "id": 8000, + "cuisine": "indian", + "ingredients": [ + "light coconut milk", + "basmati rice", + "green curry paste", + "freshly ground pepper", + "salt", + "black sesame seeds", + "ti leaves" + ] + }, + { + "id": 18849, + "cuisine": "southern_us", + "ingredients": [ + "creole mustard", + "salt", + "sour cream", + "ground black pepper", + "cayenne pepper", + "celery ribs", + "hot sauce", + "tarragon", + "baked ham", + "scallions" + ] + }, + { + "id": 15116, + "cuisine": "greek", + "ingredients": [ + "cucumber", + "lemon juice", + "plain low-fat yogurt", + "chopped fresh mint" + ] + }, + { + "id": 31961, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "steamed brown rice", + "stir fry vegetable blend", + "soy sauce", + "garlic cloves", + "sugar", + "peanut oil", + "large shrimp", + "fresh orange juice", + "corn starch" + ] + }, + { + "id": 6642, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "spices", + "salt", + "honey", + "butter", + "lemon juice", + "water", + "cinnamon", + "lamb", + "saffron threads", + "almonds", + "raisins", + "onions" + ] + }, + { + "id": 30895, + "cuisine": "thai", + "ingredients": [ + "roast", + "green cardamom pods", + "sweetened condensed milk", + "crushed ice", + "water" + ] + }, + { + "id": 16339, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "hellmann' or best food real mayonnais", + "green onions", + "sour cream", + "knorr parslei minicub", + "elbow macaroni", + "knorr cilantro minicub", + "chipotles in adobo" + ] + }, + { + "id": 45168, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "fresh lemon juice", + "chiles", + "spring onions", + "frozen peas", + "hot red pepper flakes", + "parmigiano reggiano cheese", + "flat leaf parsley", + "lump crab meat", + "extra-virgin olive oil" + ] + }, + { + "id": 26723, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "serrano", + "chicken thighs", + "tomato paste", + "peeled fresh ginger", + "oil", + "chopped garlic", + "garam masala", + "cumin seed", + "ground turmeric", + "water", + "salt", + "onions" + ] + }, + { + "id": 47429, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "hoisin sauce", + "daikon", + "cinnamon sticks", + "sliced green onions", + "sugar", + "thai basil", + "oxtails", + "star anise", + "onions", + "fish sauce", + "coriander seeds", + "whole cloves", + "ginger", + "chopped cilantro", + "red chili peppers", + "Sriracha", + "lime wedges", + "carrots", + "noodles" + ] + }, + { + "id": 5082, + "cuisine": "mexican", + "ingredients": [ + "beef", + "diced tomatoes", + "water", + "extra wide egg noodles", + "sour cream", + "cooking spray", + "red enchilada sauce", + "Mexican cheese blend", + "mixed vegetables", + "sliced green onions" + ] + }, + { + "id": 48781, + "cuisine": "italian", + "ingredients": [ + "candied orange peel", + "unsalted butter", + "fine sea salt", + "lard", + "water", + "cinnamon", + "ricotta", + "semolina flour", + "granulated sugar", + "all-purpose flour", + "large egg yolks", + "vanilla", + "confectioners sugar" + ] + }, + { + "id": 29235, + "cuisine": "korean", + "ingredients": [ + "sushi rice", + "soy glaze", + "scallions", + "thai basil", + "garlic", + "peanuts", + "ginger", + "ground lamb", + "long beans", + "sesame oil", + "Gochujang base" + ] + }, + { + "id": 30155, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "lime", + "flour tortillas", + "cilantro", + "taco seasoning", + "avocado", + "black beans", + "orange bell pepper", + "boneless skinless chicken breasts", + "cream cheese", + "chipotles in adobo", + "ketchup", + "olive oil", + "green onions", + "greek style plain yogurt", + "enchilada sauce", + "brown sugar", + "fresh cilantro", + "corn husks", + "brown rice", + "sharp cheddar cheese", + "adobo sauce" + ] + }, + { + "id": 1196, + "cuisine": "mexican", + "ingredients": [ + "light corn syrup", + "unsweetened cocoa powder", + "coffee liqueur", + "white sugar", + "ground cinnamon", + "ground almonds", + "instant coffee", + "chocolate wafer cookies" + ] + }, + { + "id": 3966, + "cuisine": "spanish", + "ingredients": [ + "yukon gold potatoes", + "fresh parsley", + "ground pepper", + "hot sauce", + "olive oil", + "coarse salt", + "onions", + "large eggs", + "red bell pepper" + ] + }, + { + "id": 9646, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "cayenne", + "ground coriander", + "lemon juice", + "water", + "salt", + "oil", + "asafetida", + "white onion", + "yellow lentils", + "cumin seed", + "chopped cilantro", + "red lentils", + "large tomato", + "green chilies", + "black mustard seeds" + ] + }, + { + "id": 2371, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "corn", + "okra", + "onions", + "black pepper", + "cayenne", + "scallions", + "plum tomatoes", + "water", + "large garlic cloves", + "poblano chiles", + "kosher salt", + "corn oil", + "low salt chicken broth", + "large shrimp" + ] + }, + { + "id": 16866, + "cuisine": "chinese", + "ingredients": [ + "karo", + "dry sherry", + "soy sauce", + "sesame oil", + "Argo Corn Starch", + "brown sugar", + "fresh ginger", + "rice vinegar", + "minced garlic", + "spices" + ] + }, + { + "id": 30840, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic", + "cajun seasoning", + "boneless pork loin", + "ground black pepper", + "salt", + "butter", + "oregano" + ] + }, + { + "id": 28681, + "cuisine": "southern_us", + "ingredients": [ + "bananas", + "buttermilk", + "all-purpose flour", + "granulated sugar", + "salt", + "corn starch", + "unsalted butter", + "vanilla extract", + "lemon juice", + "milk", + "large eggs", + "vanilla wafers", + "confectioners sugar" + ] + }, + { + "id": 23573, + "cuisine": "indian", + "ingredients": [ + "low-fat plain yogurt", + "vegetable oil", + "all-purpose flour", + "ground turmeric", + "tilapia fillets", + "purple onion", + "black mustard seeds", + "caraway seeds", + "ground black pepper", + "salt", + "chopped cilantro fresh", + "curry powder", + "heavy cream", + "cayenne pepper", + "chopped garlic" + ] + }, + { + "id": 15057, + "cuisine": "irish", + "ingredients": [ + "brown sugar", + "potatoes", + "worcestershire sauce", + "oil", + "onions", + "milk", + "green onions", + "garlic", + "thyme", + "pepper", + "flour", + "bacon", + "sausages", + "cabbage", + "mustard", + "Guinness Beer", + "butter", + "salt", + "sour cream" + ] + }, + { + "id": 17607, + "cuisine": "italian", + "ingredients": [ + "warm water", + "ground pepper", + "all-purpose flour", + "dried oregano", + "vegetable oil cooking spray", + "artichoke hearts", + "salt", + "cornmeal", + "dried basil", + "dry yeast", + "provolone cheese", + "sun-dried tomatoes", + "stewed tomatoes", + "garlic cloves" + ] + }, + { + "id": 41994, + "cuisine": "italian", + "ingredients": [ + "honey", + "green onions", + "purple onion", + "arugula", + "fresh basil", + "aioli", + "portabello mushroom", + "sourdough", + "golden brown sugar", + "balsamic vinegar", + "garlic cloves", + "olive oil", + "chopped fresh thyme", + "red bell pepper" + ] + }, + { + "id": 2934, + "cuisine": "brazilian", + "ingredients": [ + "granola", + "fruit", + "frozen strawberries", + "ice cubes", + "juice", + "bananas", + "frozen blueberries" + ] + }, + { + "id": 35347, + "cuisine": "greek", + "ingredients": [ + "tomato paste", + "chili pepper flakes", + "chopped onion", + "olive oil", + "garlic", + "dried oregano", + "pepper", + "diced tomatoes", + "celery", + "clams", + "bay leaves", + "salt" + ] + }, + { + "id": 6193, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic", + "broccoli rabe", + "extra-virgin olive oil", + "garlic powder", + "onion salt", + "hot Italian sausages", + "pasta", + "sliced black olives", + "salt" + ] + }, + { + "id": 29649, + "cuisine": "jamaican", + "ingredients": [ + "fresh marjoram", + "minced garlic", + "lager", + "chopped fresh thyme", + "molasses", + "minced ginger", + "dark rum", + "ground allspice", + "soy sauce", + "lime juice", + "bay leaves", + "cracked black pepper", + "ground cinnamon", + "kosher salt", + "ground nutmeg", + "chile pepper", + "pork loin chops" + ] + }, + { + "id": 47822, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "cauliflower", + "extra-virgin olive oil", + "pecorino romano cheese", + "kosher salt", + "chopped parsley" + ] + }, + { + "id": 44667, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "unsalted butter", + "large garlic cloves", + "dried oregano", + "dried thyme", + "veal cutlets", + "all-purpose flour", + "black pepper", + "mushrooms", + "salt", + "olive oil", + "beef demi-glace", + "flat leaf parsley" + ] + }, + { + "id": 22615, + "cuisine": "greek", + "ingredients": [ + "pepper", + "parsley", + "spinach", + "feta cheese", + "dill", + "eggs", + "olive oil", + "salt", + "phyllo dough", + "green onions" + ] + }, + { + "id": 1713, + "cuisine": "thai", + "ingredients": [ + "lime", + "mung beans", + "sesame oil", + "peanut butter", + "carrots", + "fish sauce", + "fresh ginger", + "green onions", + "cilantro", + "garlic cloves", + "monterey jack", + "honey", + "hoisin sauce", + "red pepper", + "pizza doughs", + "boiling water", + "soy sauce", + "Sriracha", + "cooked chicken", + "rice vinegar", + "oyster sauce" + ] + }, + { + "id": 19029, + "cuisine": "jamaican", + "ingredients": [ + "bananas", + "vanilla extract", + "nutmeg", + "cooking oil", + "all-purpose flour", + "granulated sugar", + "salt", + "brown sugar", + "cinnamon" + ] + }, + { + "id": 21577, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "lemon extract", + "whipped cream", + "evaporated milk", + "sweet potatoes", + "grated nutmeg", + "piecrust", + "large eggs", + "vanilla extract", + "ground nutmeg", + "butter", + "sweetened condensed milk" + ] + }, + { + "id": 39605, + "cuisine": "british", + "ingredients": [ + "warm water", + "butter", + "honey", + "cornmeal", + "milk", + "salt", + "flour", + "yeast" + ] + }, + { + "id": 38380, + "cuisine": "cajun_creole", + "ingredients": [ + "ground cinnamon", + "flour", + "oil", + "milk", + "vanilla extract", + "eggs", + "apples", + "confectioners sugar", + "superfine sugar", + "salt" + ] + }, + { + "id": 4086, + "cuisine": "italian", + "ingredients": [ + "white wine", + "coarse salt", + "veal shanks", + "ground black pepper", + "extra-virgin olive oil", + "orange peel", + "unsalted butter", + "garlic", + "flat leaf parsley", + "lemon peel", + "all-purpose flour" + ] + }, + { + "id": 34395, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "boneless skinless chicken breasts", + "cayenne pepper", + "onions", + "olive oil", + "diced tomatoes", + "bay leaf", + "tomato sauce", + "brown rice", + "flat leaf parsley", + "celery ribs", + "smoked ham", + "garlic", + "medium shrimp" + ] + }, + { + "id": 25727, + "cuisine": "mexican", + "ingredients": [ + "cilantro sprigs", + "chopped cilantro fresh", + "roma tomatoes", + "onions", + "Anaheim chile", + "garlic cloves", + "olive oil", + "salt", + "ground cumin" + ] + }, + { + "id": 28978, + "cuisine": "spanish", + "ingredients": [ + "evaporated milk", + "cream cheese", + "water", + "vanilla extract", + "sugar", + "large eggs", + "sweetened condensed milk", + "large egg yolks", + "salt" + ] + }, + { + "id": 41965, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "olive oil", + "salt", + "plain yogurt", + "lemon zest", + "lemon juice", + "Quinoa Flour", + "baking soda", + "spelt flour", + "honey", + "baking powder" + ] + }, + { + "id": 24481, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "poblano chilies", + "corn kernels", + "goat cheese", + "kosher salt", + "extra-virgin olive oil", + "kidney beans", + "long grain white rice" + ] + }, + { + "id": 26342, + "cuisine": "french", + "ingredients": [ + "mussels", + "goat cheese", + "cooking oil", + "onions", + "dry white wine", + "tomato juice", + "celery seed" + ] + }, + { + "id": 4958, + "cuisine": "italian", + "ingredients": [ + "eggs", + "whole milk", + "seasoned bread crumbs", + "cheese ravioli", + "pasta sauce", + "vegetable oil", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 43029, + "cuisine": "indian", + "ingredients": [ + "chile powder", + "date sugar", + "tamarind", + "cumin seed", + "anise seed", + "salt", + "coriander seeds", + "hot water" + ] + }, + { + "id": 29677, + "cuisine": "italian", + "ingredients": [ + "1% low-fat milk", + "shiitake mushroom caps", + "olive oil", + "garlic cloves", + "spaghetti", + "salt", + "fresh parsley", + "shallots", + "chopped pecans" + ] + }, + { + "id": 43316, + "cuisine": "filipino", + "ingredients": [ + "evaporated milk", + "white sugar", + "egg yolks", + "pure vanilla extract", + "sweetened condensed milk" + ] + }, + { + "id": 11804, + "cuisine": "italian", + "ingredients": [ + "pure vanilla extract", + "granulated sugar", + "plums", + "kosher salt", + "baking powder", + "grated lemon zest", + "large egg yolks", + "butter", + "cornmeal", + "light brown sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 18328, + "cuisine": "japanese", + "ingredients": [ + "egg whites", + "cake flour", + "fine granulated sugar", + "cream of tartar", + "butter", + "cream cheese", + "egg yolks", + "salt", + "milk", + "cornflour", + "lemon juice" + ] + }, + { + "id": 12926, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "buttermilk", + "large eggs", + "bacon grease", + "bicarbonate of soda", + "salt", + "baking powder", + "cornmeal" + ] + }, + { + "id": 29472, + "cuisine": "french", + "ingredients": [ + "cognac", + "black pepper", + "fat", + "sea salt" + ] + }, + { + "id": 31185, + "cuisine": "cajun_creole", + "ingredients": [ + "turkey broth", + "stuffing mix", + "pork sausages", + "pepper", + "chopped celery", + "liquid", + "butter", + "creole seasoning", + "oysters", + "salt", + "onions" + ] + }, + { + "id": 20231, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "kosher salt", + "whole peeled tomatoes", + "chopped onion", + "dried porcini mushrooms", + "olive oil", + "whole wheat spaghetti", + "boiling water", + "cremini mushrooms", + "minced garlic", + "whole milk", + "fresh parsley", + "tomato paste", + "white wine", + "ground black pepper", + "ground pork" + ] + }, + { + "id": 230, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "lime", + "vegetable oil", + "garlic cloves", + "Madras curry powder", + "tumeric", + "flour", + "red curry paste", + "corn starch", + "unsweetened coconut milk", + "sugar", + "shallots", + "scallions", + "fresh lime juice", + "fish sauce", + "lo mein noodles", + "salt", + "shrimp", + "cumin" + ] + }, + { + "id": 24658, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "tumeric", + "cayenne", + "garlic", + "fresh parsley", + "fresh red chili", + "fresh ginger", + "sesame oil", + "mustard powder", + "chickpea flour", + "water", + "jalapeno chilies", + "purple onion", + "ground cumin", + "tomatoes", + "garam masala", + "sea salt", + "ground coriander" + ] + }, + { + "id": 27769, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "fresh ginger", + "sesame oil", + "Gochujang base", + "kosher salt", + "large eggs", + "rice vinegar", + "black pepper", + "panko", + "avocado oil", + "garlic cloves", + "chicken wings", + "honey", + "black sesame seeds", + "plain breadcrumbs" + ] + }, + { + "id": 4544, + "cuisine": "spanish", + "ingredients": [ + "sliced almonds", + "fideos", + "chickpeas", + "saffron", + "water", + "extra-virgin olive oil", + "flat leaf parsley", + "reduced sodium chicken broth", + "dry white wine", + "garlic cloves", + "unsalted butter", + "spanish chorizo", + "onions" + ] + }, + { + "id": 36560, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "dried thyme", + "lima beans", + "medium shrimp", + "crushed tomatoes", + "bay leaves", + "okra", + "celery ribs", + "corn kernels", + "yellow onion", + "ham", + "water", + "unsalted butter", + "rice", + "pork sausages" + ] + }, + { + "id": 16560, + "cuisine": "southern_us", + "ingredients": [ + "coconut extract", + "egg whites", + "vanilla extract", + "sugar", + "baking powder", + "cake flour", + "cold water", + "milk", + "flaked coconut", + "salt", + "cream of tartar", + "unsalted butter", + "light corn syrup" + ] + }, + { + "id": 37027, + "cuisine": "cajun_creole", + "ingredients": [ + "bread crumbs", + "hot pepper sauce", + "white rice", + "chopped onion", + "olive oil", + "chopped green bell pepper", + "chopped celery", + "pork sausages", + "eggplant", + "butter", + "cayenne pepper", + "water", + "fennel bulb", + "garlic", + "ground beef" + ] + }, + { + "id": 33554, + "cuisine": "mexican", + "ingredients": [ + "chopped onion", + "chopped cilantro fresh", + "tomatoes", + "tequila", + "avocado", + "garlic cloves", + "kosher salt", + "fresh lime juice" + ] + }, + { + "id": 26505, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "cumin seed", + "ground nutmeg", + "coriander seeds", + "cinnamon sticks", + "clove", + "cardamom pods" + ] + }, + { + "id": 1521, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "peanut oil", + "onions", + "green onions", + "low salt chicken broth", + "plum tomatoes", + "lime wedges", + "thai green curry paste", + "large shrimp", + "sugar", + "Thai fish sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 19748, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "orange juice", + "cayenne pepper", + "chicken", + "worcestershire sauce", + "dark brown sugar", + "liquid smoke", + "mustard powder" + ] + }, + { + "id": 48705, + "cuisine": "mexican", + "ingredients": [ + "picante sauce", + "salt and ground black pepper", + "long grain white rice", + "tomato sauce", + "water", + "cooking spray", + "boneless chop pork", + "taco seasoning mix", + "vegetable oil", + "shredded cheddar cheese", + "green bell pepper, slice" + ] + }, + { + "id": 30101, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "anchovy paste", + "red bell pepper", + "red wine vinegar", + "fresh oregano", + "ground black pepper", + "extra-virgin olive oil", + "olives", + "yellow bell pepper", + "garlic cloves" + ] + }, + { + "id": 15704, + "cuisine": "mexican", + "ingredients": [ + "black peppercorns", + "kosher salt", + "almonds", + "tomatillos", + "pumpkin seeds", + "canela", + "anise seed", + "chipotle chile", + "coriander seeds", + "chicken breasts", + "mexican chocolate", + "corn tortillas", + "sugar", + "baguette", + "roma tomatoes", + "raisins", + "lard", + "onions", + "clove", + "pasilla chiles", + "sesame seeds", + "mulato chiles", + "garlic", + "ancho chile pepper", + "canola oil" + ] + }, + { + "id": 43303, + "cuisine": "cajun_creole", + "ingredients": [ + "prepared horseradish", + "paprika", + "fresh parsley", + "kosher salt", + "bay leaves", + "yellow onion", + "iceberg lettuce", + "mayonaise", + "cayenne", + "fresh tarragon", + "large shrimp", + "whole grain mustard", + "lemon", + "sauce" + ] + }, + { + "id": 18015, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "chili powder", + "oil", + "potatoes", + "paneer", + "chaat masala", + "powdered milk", + "raisins", + "corn flour", + "chopped almonds", + "salt", + "ground cumin" + ] + }, + { + "id": 21542, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "fresh parsley", + "kosher salt", + "lemon", + "pure olive oil", + "russet potatoes", + "onions", + "roasted red peppers", + "freshly ground pepper" + ] + }, + { + "id": 45939, + "cuisine": "greek", + "ingredients": [ + "romaine lettuce", + "salad dressing", + "peas", + "onions", + "tomatoes", + "feta cheese crumbles", + "chicken", + "mayonaise", + "celery" + ] + }, + { + "id": 6962, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "sea salt", + "fresh lemon juice", + "garlic powder", + "cayenne pepper", + "whole wheat pita bread", + "olive oil", + "salt", + "coriander", + "black beans", + "onion powder", + "liquid", + "cumin" + ] + }, + { + "id": 49009, + "cuisine": "spanish", + "ingredients": [ + "white wine", + "boneless skinless chicken breasts", + "salt", + "fresh parsley", + "olive oil", + "diced tomatoes", + "scallions", + "chorizo sausage", + "pepper", + "shallots", + "dry bread crumbs", + "onions", + "chicken broth", + "manchego cheese", + "black olives", + "shrimp" + ] + }, + { + "id": 16985, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "yellow bell pepper", + "fresh basil leaves", + "heirloom tomatoes", + "extra-virgin olive oil", + "pesto", + "chees fresh mozzarella", + "fresh lime juice", + "red wine vinegar", + "orzo", + "large shrimp" + ] + }, + { + "id": 41836, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "crushed red pepper flakes", + "onions", + "olive oil", + "salt", + "sugar", + "garlic", + "dried oregano", + "diced tomatoes", + "bay leaf" + ] + }, + { + "id": 3023, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "tamarind", + "pork belly", + "okra", + "horseradish", + "strawberries", + "cabbage leaves", + "water" + ] + }, + { + "id": 7606, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "coconut milk", + "ginger", + "glutinous rice", + "salt" + ] + }, + { + "id": 23316, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "artichok heart marin", + "fresh parsley", + "dijon mustard", + "salt", + "olive oil", + "yellow bell pepper", + "pepper", + "balsamic vinegar" + ] + }, + { + "id": 19341, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "cajun seasoning", + "salt", + "garlic cloves", + "green onions", + "worcestershire sauce", + "chopped onion", + "tomatoes", + "clam juice", + "chopped celery", + "long-grain rice", + "chopped green bell pepper", + "butter", + "all-purpose flour", + "large shrimp" + ] + }, + { + "id": 15041, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "bell pepper", + "yellow onion", + "parmesan cheese", + "red wine vinegar", + "red bell pepper", + "minced garlic", + "cooking spray", + "bucatini", + "fresh basil", + "zucchini", + "extra-virgin olive oil" + ] + }, + { + "id": 7831, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "olive oil", + "penne pasta", + "roasted red peppers", + "fresh basil leaves", + "pepper", + "salt" + ] + }, + { + "id": 31838, + "cuisine": "italian", + "ingredients": [ + "processed cheese", + "cornflake cereal", + "celery", + "evaporated milk", + "dry sherry", + "egg noodles, cooked and drained", + "butter", + "salt", + "boneless skinless chicken breast halves", + "ground black pepper", + "paprika", + "sliced mushrooms" + ] + }, + { + "id": 39133, + "cuisine": "thai", + "ingredients": [ + "water", + "shrimp", + "soy sauce", + "vegetable oil", + "chopped cilantro fresh", + "shredded cabbage", + "onions", + "minced garlic", + "crushed red pepper flakes" + ] + }, + { + "id": 9300, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "bittersweet chocolate", + "heavy cream" + ] + }, + { + "id": 42752, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "ground black pepper", + "scallions", + "lime", + "chopped onion", + "chopped garlic", + "fresh ginger", + "ground allspice", + "habanero hot sauce", + "fresh thyme", + "chicken pieces" + ] + }, + { + "id": 4079, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "leaves", + "cilantro", + "fresh lime juice", + "kosher salt", + "boneless skinless chicken breasts", + "peanut oil", + "fish sauce", + "Sriracha", + "thai chile", + "iceberg lettuce", + "light brown sugar", + "lemongrass", + "shallots", + "garlic cloves" + ] + }, + { + "id": 9099, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "shell pasta", + "mustard powder", + "milk", + "paprika", + "onions", + "unsalted butter", + "salt", + "bread crumbs", + "red pepper", + "sharp cheddar cheese" + ] + }, + { + "id": 11256, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "purple onion", + "chopped cilantro", + "kosher salt", + "cilantro sprigs", + "corn tortillas", + "lime juice", + "achiote paste", + "sardines", + "cayenne", + "orange juice", + "fresh pineapple" + ] + }, + { + "id": 2301, + "cuisine": "french", + "ingredients": [ + "milk", + "dry yeast", + "vanilla extract", + "grated lemon peel", + "warm water", + "unsalted butter", + "almond extract", + "kirsch", + "powdered sugar", + "large egg yolks", + "golden raisins", + "salt", + "sugar", + "almonds", + "dried tart cherries", + "all-purpose flour" + ] + }, + { + "id": 5384, + "cuisine": "mexican", + "ingredients": [ + "peeled tomatoes", + "tortilla chips", + "butter", + "green chilies", + "hot pepper sauce", + "cream cheese", + "cheddar cheese", + "all-purpose flour", + "onions" + ] + }, + { + "id": 23697, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "ground turkey", + "salt", + "garlic", + "italian seasoning", + "tapioca flour", + "yellow onion" + ] + }, + { + "id": 5474, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "all-purpose flour", + "green tomatoes", + "large eggs", + "cornmeal", + "extra-virgin olive oil" + ] + }, + { + "id": 13856, + "cuisine": "vietnamese", + "ingredients": [ + "shallots", + "toasted sesame seeds", + "sugar", + "oyster sauce", + "fish sauce", + "garlic", + "canola oil", + "lemongrass", + "pork shoulder" + ] + }, + { + "id": 39147, + "cuisine": "korean", + "ingredients": [ + "hot red pepper flakes", + "pork belly", + "sesame oil", + "red chili peppers", + "minced garlic", + "scallions", + "sugar", + "black pepper", + "ginger", + "soy sauce", + "rice wine", + "onions" + ] + }, + { + "id": 22442, + "cuisine": "korean", + "ingredients": [ + "pepper flakes", + "sesame seeds", + "garlic", + "green chilies", + "pork belly", + "green onions", + "oyster mushrooms", + "carrots", + "sugar", + "mushrooms", + "soybean paste", + "english cucumber", + "lettuce", + "honey", + "sesame oil", + "Gochujang base" + ] + }, + { + "id": 27572, + "cuisine": "irish", + "ingredients": [ + "eggs", + "buttermilk", + "fennel seeds", + "baking powder", + "all-purpose flour", + "baking soda", + "salt", + "melted butter", + "butter", + "white sugar" + ] + }, + { + "id": 16122, + "cuisine": "mexican", + "ingredients": [ + "salt", + "jalapeno chilies", + "fresh lime juice", + "garlic cloves", + "vegetable oil" + ] + }, + { + "id": 20809, + "cuisine": "thai", + "ingredients": [ + "cherry tomatoes", + "shredded cabbage", + "lime wedges", + "salt", + "fresh lime juice", + "avocado", + "mint leaves", + "marinade", + "thai chile", + "freshly ground pepper", + "mango", + "agave nectar", + "flank steak", + "salted roast peanuts", + "cilantro leaves", + "asian fish sauce", + "lime", + "basil leaves", + "sesame oil", + "linguine", + "scallions" + ] + }, + { + "id": 31897, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "reduced sodium soy sauce", + "baby spinach", + "snow peas", + "sugar", + "Sriracha", + "carrots", + "cremini mushrooms", + "egg noodles", + "garlic", + "olive oil", + "sesame oil", + "red bell pepper" + ] + }, + { + "id": 2960, + "cuisine": "mexican", + "ingredients": [ + "pineapple", + "white rum", + "tangerine juice", + "fresh lime juice", + "bananas" + ] + }, + { + "id": 45685, + "cuisine": "mexican", + "ingredients": [ + "paprika", + "cumin seed", + "dried oregano", + "ground pepper", + "yellow onion", + "cooking fat", + "salt", + "garlic cloves", + "chili powder", + "cayenne pepper", + "ground beef" + ] + }, + { + "id": 5988, + "cuisine": "korean", + "ingredients": [ + "sugar", + "red pepper", + "napa cabbage", + "juice", + "garlic juice", + "gingerroot", + "coarse salt", + "scallions" + ] + }, + { + "id": 16548, + "cuisine": "spanish", + "ingredients": [ + "balsamic vinegar", + "rolls", + "ground cinnamon", + "diced tomatoes", + "onions", + "tomato paste", + "raisins", + "meat loaf mix", + "chili powder", + "beef broth", + "iceberg lettuce" + ] + }, + { + "id": 37904, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cooking spray", + "cayenne pepper", + "chopped cilantro fresh", + "chile powder", + "ground black pepper", + "cheese", + "scallions", + "ground cumin", + "salsa verde", + "onion powder", + "cream cheese", + "chicken", + "kosher salt", + "shredded extra sharp cheddar cheese", + "garlic", + "corn tortillas" + ] + }, + { + "id": 49628, + "cuisine": "french", + "ingredients": [ + "sugar", + "vanilla extract", + "large egg yolks", + "water", + "salt", + "whipping cream" + ] + }, + { + "id": 22279, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "extra-virgin olive oil", + "dried rosemary", + "dried thyme", + "rubbed sage", + "kosher salt", + "pizza doughs", + "cooking spray", + "flat leaf parsley" + ] + }, + { + "id": 45414, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "non-fat sour cream", + "shredded cheddar cheese", + "chile pepper", + "cumin", + "black pepper", + "chili powder", + "red enchilada sauce", + "garlic powder", + "whole wheat tortillas" + ] + }, + { + "id": 30486, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "chives", + "onions", + "clove", + "olive oil", + "heavy cream", + "pepper", + "butter", + "arborio rice", + "parmesan cheese", + "salt" + ] + }, + { + "id": 22302, + "cuisine": "mexican", + "ingredients": [ + "chili beans", + "guacamole", + "chopped cilantro fresh", + "low-fat sour cream", + "salt", + "chicken broth", + "mexicorn", + "chunky salsa", + "pepper", + "turkey meat" + ] + }, + { + "id": 40254, + "cuisine": "jamaican", + "ingredients": [ + "bananas", + "pineapple juice", + "cherries", + "coconut rum", + "cranberry juice", + "banana liqueur", + "rum", + "kiwi" + ] + }, + { + "id": 2971, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "cayenne pepper", + "butter", + "lemon pepper", + "ground black pepper", + "red drum", + "salt", + "salad dressing" + ] + }, + { + "id": 48617, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "water", + "garlic", + "garlic chili sauce", + "soy sauce", + "fresh shiitake mushrooms", + "scallions", + "beansprouts", + "sugar", + "egg noodles", + "salt", + "carrots", + "white pepper", + "sesame oil", + "oil", + "cabbage" + ] + }, + { + "id": 26239, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "paprika", + "ground white pepper", + "eggs", + "flour", + "rubbed sage", + "garlic salt", + "ground black pepper", + "salt", + "dried parsley", + "rosemary", + "onion salt", + "thyme", + "dried oregano" + ] + }, + { + "id": 41049, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fontina cheese", + "sun-dried tomatoes in oil", + "artichokes", + "dried basil", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 8247, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "cream", + "seedless red grapes", + "sugar", + "salt", + "large egg yolks" + ] + }, + { + "id": 10034, + "cuisine": "chinese", + "ingredients": [ + "mantou", + "white sugar", + "dark soy sauce", + "vegetable oil", + "chicken broth", + "shallots", + "barbecue sauce", + "boneless pork loin" + ] + }, + { + "id": 12499, + "cuisine": "korean", + "ingredients": [ + "granny smith apples", + "large eggs", + "light corn syrup", + "garlic cloves", + "water", + "green onions", + "rice vinegar", + "skirt steak", + "sushi rice", + "peeled fresh ginger", + "salt", + "kimchi", + "soy sauce", + "mirin", + "sesame oil", + "Gochujang base", + "canola oil" + ] + }, + { + "id": 13834, + "cuisine": "moroccan", + "ingredients": [ + "tofu", + "vegetables", + "large garlic cloves", + "fresh coriander", + "harissa paste", + "ground cumin", + "ground ginger", + "clear honey", + "onions", + "olive oil", + "vegetable stock" + ] + }, + { + "id": 30678, + "cuisine": "indian", + "ingredients": [ + "water", + "mint leaves", + "ginger", + "cilantro leaves", + "cardamom", + "peppercorns", + "chicken", + "coriander powder", + "yoghurt", + "garlic", + "cumin seed", + "cinnamon sticks", + "ground turmeric", + "milk", + "bay leaves", + "star anise", + "green chilies", + "cucumber", + "basmati rice", + "clove", + "Biryani Masala", + "chili powder", + "salt", + "oil", + "onions", + "saffron" + ] + }, + { + "id": 30591, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "grated parmesan cheese", + "mushrooms", + "garlic cloves", + "fennel seeds", + "chopped green bell pepper", + "lasagna noodles, cooked and drained", + "chopped onion", + "part-skim mozzarella cheese", + "cooking spray", + "firm tofu", + "olive oil", + "marinara sauce", + "crushed red pepper", + "italian seasoning" + ] + }, + { + "id": 45722, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "extra-virgin olive oil", + "garlic cloves", + "sherry vinegar", + "country style bread", + "cherry tomatoes", + "salt", + "large shrimp", + "fresh basil", + "teardrop tomatoes", + "freshly ground pepper" + ] + }, + { + "id": 1758, + "cuisine": "mexican", + "ingredients": [ + "beer", + "self rising flour", + "shredded cheddar cheese", + "white sugar", + "chile pepper" + ] + }, + { + "id": 6546, + "cuisine": "southern_us", + "ingredients": [ + "nutmeg", + "whole wheat flour", + "baking powder", + "sausages", + "pepper", + "gravy", + "salt", + "whole wheat pastry flour", + "baking soda", + "butter", + "biscuits", + "milk", + "sweet potatoes", + "maple syrup" + ] + }, + { + "id": 2068, + "cuisine": "mexican", + "ingredients": [ + "unsalted chicken stock", + "cilantro stems", + "all-purpose flour", + "ground cumin", + "avocado", + "salsa verde", + "reduced-fat sour cream", + "corn tortillas", + "tomatoes", + "jalapeno chilies", + "cilantro leaves", + "onions", + "reduced fat sharp cheddar cheese", + "chicken breasts", + "garlic cloves" + ] + }, + { + "id": 26539, + "cuisine": "russian", + "ingredients": [ + "vanilla", + "oil", + "whole milk", + "cream cheese", + "rolls", + "sour cream", + "whipped cream", + "condensed milk" + ] + }, + { + "id": 23049, + "cuisine": "mexican", + "ingredients": [ + "cream of chicken soup", + "green chilies", + "milk", + "cooked chicken", + "sour cream", + "shredded cheddar cheese", + "jalapeno chilies", + "fresh mushrooms", + "part-skim mozzarella cheese", + "tortilla chips" + ] + }, + { + "id": 18668, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "broccoli florets", + "crushed red pepper flakes", + "rice vinegar", + "canola oil", + "mirin", + "sliced carrots", + "garlic", + "green beans", + "ground black pepper", + "soft tofu", + "vegetable broth", + "dark sesame oil", + "sliced green onions", + "water chestnuts", + "arrowroot powder", + "tamari soy sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 35630, + "cuisine": "moroccan", + "ingredients": [ + "cilantro leaves", + "paprika", + "lemon juice", + "garlic cloves", + "extra-virgin olive oil", + "fresh tuna steaks" + ] + }, + { + "id": 31253, + "cuisine": "italian", + "ingredients": [ + "pizza sauce", + "mozzarella cheese", + "ground sausage", + "ricotta cheese", + "olive oil", + "pita pockets" + ] + }, + { + "id": 46294, + "cuisine": "mexican", + "ingredients": [ + "tortilla chips", + "barbecue sauce", + "rotisserie chicken", + "cheese" + ] + }, + { + "id": 8673, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "worcestershire sauce low sodium", + "ground red pepper", + "red bell pepper", + "parsley sprigs", + "crawfish", + "all-purpose flour", + "Velveeta", + "black pepper", + "garlic", + "onions", + "fettucine", + "skim milk", + "green onions", + "margarine" + ] + }, + { + "id": 10403, + "cuisine": "southern_us", + "ingredients": [ + "chopped fresh chives", + "salt", + "fresh parsley", + "eggs", + "butter", + "cream cheese", + "chicken broth", + "quickcooking grits", + "shredded parmesan cheese", + "milk", + "peeled shrimp", + "lemon juice" + ] + }, + { + "id": 34380, + "cuisine": "mexican", + "ingredients": [ + "yellow squash", + "flour tortillas", + "salsa", + "chopped cilantro fresh", + "sugar", + "diced red onions", + "fat-free refried beans", + "fresh lime juice", + "ground cumin", + "low-fat sour cream", + "olive oil", + "cooking spray", + "red bell pepper", + "dried oregano", + "black pepper", + "zucchini", + "salt", + "chipotles in adobo" + ] + }, + { + "id": 24968, + "cuisine": "italian", + "ingredients": [ + "vanilla extract", + "sweet cherries", + "hot water", + "sugar", + "orange juice", + "almond extract" + ] + }, + { + "id": 28327, + "cuisine": "italian", + "ingredients": [ + "pepper", + "ricotta cheese", + "italian seasoning", + "eggs", + "lasagna noodles", + "salt", + "olive oil", + "garlic", + "pasta sauce", + "grated parmesan cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 18747, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "whipping cream", + "sugar", + "large eggs", + "large egg yolks", + "white chocolate", + "french bread" + ] + }, + { + "id": 8518, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "nori", + "avocado", + "sushi rice", + "wasabi paste", + "lump crab meat", + "soy sauce" + ] + }, + { + "id": 41909, + "cuisine": "japanese", + "ingredients": [ + "sake", + "shiitake", + "udon", + "shirataki", + "brown sugar", + "dashi", + "enokitake", + "Tokyo negi", + "rib eye steaks", + "soy sauce", + "mirin", + "napa cabbage", + "tofu", + "sugar", + "shungiku", + "cooking oil", + "carrots" + ] + }, + { + "id": 14781, + "cuisine": "mexican", + "ingredients": [ + "chili beans", + "green onions", + "ground beef", + "ground cumin", + "grated parmesan cheese", + "salsa", + "chunky salsa", + "shredded cheddar cheese", + "garlic", + "onions", + "avocado", + "flour tortillas", + "sour cream", + "dried oregano" + ] + }, + { + "id": 26234, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "orange", + "ginger", + "oil", + "white vinegar", + "soy sauce", + "flour", + "garlic", + "corn starch", + "eggs", + "white pepper", + "green onions", + "salt", + "sugar", + "water", + "rice wine", + "boneless skinless chicken" + ] + }, + { + "id": 9303, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "sake", + "oil", + "mirin", + "salmon fillets" + ] + }, + { + "id": 44903, + "cuisine": "korean", + "ingredients": [ + "dry white wine", + "crushed red pepper", + "soy sauce", + "vegetable oil", + "scallions", + "sugar", + "flank steak", + "salt", + "steamed rice", + "large garlic cloves", + "toasted sesame oil" + ] + }, + { + "id": 10999, + "cuisine": "spanish", + "ingredients": [ + "minced garlic", + "fresh lime juice", + "fresh orange juice", + "ground cumin", + "fresh lemon juice", + "olive oil", + "ground oregano" + ] + }, + { + "id": 35093, + "cuisine": "korean", + "ingredients": [ + "salt", + "eggs", + "toasted sesame seeds", + "chicken broth", + "fresh lemon juice", + "watercress leaves" + ] + }, + { + "id": 12100, + "cuisine": "southern_us", + "ingredients": [ + "whipping cream", + "pork sausages", + "dried sage", + "onion tops", + "ground cloves", + "all-purpose flour", + "skirt steak", + "butter", + "beef broth" + ] + }, + { + "id": 16623, + "cuisine": "british", + "ingredients": [ + "Melba toast", + "stilton", + "tawny port", + "hazelnuts", + "cream cheese, soften" + ] + }, + { + "id": 5143, + "cuisine": "french", + "ingredients": [ + "seedless green grape", + "roasted chestnuts", + "peanut oil", + "unsalted butter", + "crème fraîche", + "thyme sprigs", + "quail", + "salt", + "carrots", + "black pepper", + "low sodium chicken broth", + "cognac", + "onions" + ] + }, + { + "id": 36970, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "boneless chicken skinless thigh", + "cooking spray", + "purple onion", + "ground cardamom", + "ground turmeric", + "plain low-fat yogurt", + "zucchini", + "reduced-fat sour cream", + "ground coriander", + "red bell pepper", + "ground cinnamon", + "ground black pepper", + "peeled fresh ginger", + "salt", + "cucumber", + "ground cumin", + "saffron threads", + "ground cloves", + "jalapeno chilies", + "paprika", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 7723, + "cuisine": "southern_us", + "ingredients": [ + "large egg whites", + "light corn syrup", + "cake flour", + "orange zest", + "sugar", + "whole milk", + "fresh orange juice", + "fresh lemon juice", + "water", + "baking powder", + "vanilla", + "corn starch", + "eggs", + "unsalted butter", + "sweetened coconut flakes", + "salt" + ] + }, + { + "id": 15400, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "cilantro", + "toasted pine nuts", + "cooked rice", + "large eggs", + "frozen corn kernels", + "ground white pepper", + "canola", + "salt", + "carrots", + "soy sauce", + "red pepper flakes", + "scallions", + "frozen peas" + ] + }, + { + "id": 128, + "cuisine": "cajun_creole", + "ingredients": [ + "crawfish", + "ground red pepper", + "salt", + "eggplant", + "vegetable oil", + "sauce", + "milk", + "baking powder", + "all-purpose flour", + "large eggs", + "chopped celery", + "chopped onion" + ] + }, + { + "id": 11796, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "green onions", + "salt", + "orange juice", + "ginger root", + "pepper", + "red pepper flakes", + "all-purpose flour", + "lemon juice", + "soy sauce", + "boneless skinless chicken breasts", + "rice vinegar", + "oil", + "orange zest", + "eggs", + "water", + "garlic", + "sauce", + "corn starch" + ] + }, + { + "id": 26099, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "fresh lime juice", + "black beans", + "butter", + "Mexican cheese blend", + "diced tomatoes", + "flour tortillas", + "chopped cilantro fresh" + ] + }, + { + "id": 25886, + "cuisine": "southern_us", + "ingredients": [ + "panko", + "butter", + "green onions", + "butter beans", + "whole milk", + "extra-virgin olive oil", + "russet potatoes" + ] + }, + { + "id": 44999, + "cuisine": "jamaican", + "ingredients": [ + "eggs", + "teas", + "flour", + "fruit", + "sugar", + "stout" + ] + }, + { + "id": 7649, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "hoisin sauce", + "dry sherry", + "oyster sauce", + "black pepper", + "chili oil", + "salt", + "chopped garlic", + "soy sauce", + "spring onions", + "cornflour", + "chillies", + "chicken stock", + "swiss chard", + "sirloin steak", + "oil" + ] + }, + { + "id": 12279, + "cuisine": "southern_us", + "ingredients": [ + "egg yolks", + "pound cake", + "sugar", + "butter", + "meringue", + "bananas", + "vanilla extract", + "corn starch", + "half & half", + "salt" + ] + }, + { + "id": 39739, + "cuisine": "thai", + "ingredients": [ + "duck breasts", + "lemongrass", + "shrimp paste", + "rock salt", + "onions", + "kaffir lime leaves", + "fresh coriander", + "palm sugar", + "red pepper", + "curry paste", + "dark chicken stock", + "red chili peppers", + "light soy sauce", + "shallots", + "green beans", + "chopped garlic", + "fish sauce", + "water", + "water chestnuts", + "oil", + "galangal" + ] + }, + { + "id": 33181, + "cuisine": "italian", + "ingredients": [ + "rum", + "all-purpose flour", + "evaporated milk", + "vanilla extract", + "sugar", + "vegetable oil", + "confectioners sugar", + "large eggs", + "salt" + ] + }, + { + "id": 29317, + "cuisine": "italian", + "ingredients": [ + "capers", + "large garlic cloves", + "mushrooms", + "flat leaf parsley", + "unsalted butter", + "fresh lemon juice", + "vegetable oil" + ] + }, + { + "id": 18050, + "cuisine": "italian", + "ingredients": [ + "instant espresso powder", + "salt", + "brown sugar", + "semisweet chocolate", + "corn starch", + "hazelnuts", + "vanilla extract", + "hot water", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 4423, + "cuisine": "indian", + "ingredients": [ + "milk", + "black tea", + "clove", + "cinnamon", + "sugar", + "cardamom", + "cold water", + "fresh ginger", + "peppercorns" + ] + }, + { + "id": 46059, + "cuisine": "indian", + "ingredients": [ + "cream sweeten whip", + "ground nutmeg", + "unsweetened cocoa powder", + "water", + "cinnamon sticks", + "ground cinnamon", + "milk", + "white sugar", + "tea bags", + "vanilla extract" + ] + }, + { + "id": 21291, + "cuisine": "italian", + "ingredients": [ + "chili pepper", + "marinara sauce", + "penne pasta", + "chicken broth", + "water", + "garlic", + "red bell pepper", + "italian sausage", + "pepper", + "basil", + "thyme", + "vidalia onion", + "green bell pepper, slice", + "salt", + "oregano" + ] + }, + { + "id": 39523, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "extra-virgin olive oil", + "celery", + "fennel seeds", + "ground black pepper", + "salt", + "plum tomatoes", + "pinenuts", + "purple onion", + "bay leaf", + "hot red pepper flakes", + "currant", + "shrimp", + "small capers, rins and drain" + ] + }, + { + "id": 9214, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "vegetable oil", + "brown sugar", + "green onions", + "dried rice noodles", + "boneless chicken breast halves", + "rice vinegar", + "soy sauce", + "sesame oil", + "iceberg lettuce" + ] + }, + { + "id": 26312, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "large eggs", + "all-purpose flour", + "pecan halves", + "granulated sugar", + "vanilla extract", + "melted butter", + "milk", + "butter", + "unsweetened cocoa powder", + "firmly packed brown sugar", + "mini marshmallows", + "salt" + ] + }, + { + "id": 18742, + "cuisine": "korean", + "ingredients": [ + "eggs", + "asian pear", + "beef broth", + "chicken broth", + "sugar", + "pickled radish", + "noodles", + "ice cubes", + "hot mustard", + "vinegar", + "cucumber", + "brown rice vinegar", + "sesame seeds", + "cooked brisket" + ] + }, + { + "id": 26442, + "cuisine": "french", + "ingredients": [ + "milk", + "all-purpose flour", + "eggs", + "butter", + "white sugar", + "baking powder", + "oil", + "fruit", + "salt" + ] + }, + { + "id": 38892, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "onion powder", + "dried oregano", + "andouille sausage", + "corn husks", + "sweet paprika", + "granulated garlic", + "ground black pepper", + "smoked paprika", + "red potato", + "dried thyme", + "cayenne pepper", + "large shrimp" + ] + }, + { + "id": 8750, + "cuisine": "french", + "ingredients": [ + "apricots", + "water", + "sugar", + "lemon juice" + ] + }, + { + "id": 30252, + "cuisine": "french", + "ingredients": [ + "olive oil", + "garlic cloves", + "chopped fresh mint", + "mussels", + "dry white wine", + "thyme sprigs", + "chicken stock", + "whipping cream", + "onions", + "zucchini", + "carrots" + ] + }, + { + "id": 36706, + "cuisine": "southern_us", + "ingredients": [ + "black beans", + "purple onion", + "plum tomatoes", + "avocado", + "jalapeno chilies", + "whole kernel corn, drain", + "hot pepper sauce", + "salt", + "black pepper", + "diced tomatoes", + "salad dressing" + ] + }, + { + "id": 37756, + "cuisine": "french", + "ingredients": [ + "warm water", + "salt", + "honeydew melon", + "sugar", + "fresh lime juice" + ] + }, + { + "id": 25377, + "cuisine": "italian", + "ingredients": [ + "sugar", + "almond extract", + "grated orange", + "baking powder", + "all-purpose flour", + "vegetable oil", + "chopped pecans", + "large eggs", + "vanilla extract" + ] + }, + { + "id": 30699, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "balsamic vinegar", + "olive oil flavored cooking spray", + "part-skim mozzarella cheese", + "ciabatta", + "black pepper", + "extra-virgin olive oil", + "arugula", + "prosciutto", + "garlic cloves" + ] + }, + { + "id": 40962, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "salt", + "ground pork", + "oyster sauce", + "water", + "oil", + "tomatoes", + "garlic", + "onions" + ] + }, + { + "id": 40895, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "red bell pepper", + "butter", + "oregano", + "potatoes", + "onions", + "salt" + ] + }, + { + "id": 41465, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "butter", + "chopped onion", + "dried tarragon leaves", + "boneless skinless chicken breasts", + "salt", + "flour", + "heavy cream", + "dry white wine", + "fresh tarragon" + ] + }, + { + "id": 39834, + "cuisine": "southern_us", + "ingredients": [ + "water", + "ham hock", + "collard greens", + "crushed red pepper flakes", + "vegetable oil", + "pepper", + "salt" + ] + }, + { + "id": 27551, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "garlic mayonnaise", + "parsley sprigs", + "plum tomatoes", + "artichoke hearts" + ] + }, + { + "id": 28141, + "cuisine": "mexican", + "ingredients": [ + "fresca", + "coriander seeds", + "seasoned rice wine vinegar", + "sour cream", + "chopped cilantro fresh", + "avocado", + "pepper", + "crema mexican", + "fresh oregano", + "onions", + "cotija", + "salsa verde", + "cilantro leaves", + "corn tortillas", + "cabbage", + "chicken stock", + "olive oil", + "salt", + "cumin seed", + "pork butt" + ] + }, + { + "id": 31374, + "cuisine": "southern_us", + "ingredients": [ + "granny smith apples", + "buttermilk", + "powdered sugar", + "unsalted butter", + "all-purpose flour", + "baking soda", + "shredded sharp cheddar cheese", + "sugar", + "baking powder", + "apple juice concentrate" + ] + }, + { + "id": 38244, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "warm water", + "all-purpose flour", + "sugar", + "butter", + "baking soda", + "oil" + ] + }, + { + "id": 17996, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "self rising flour", + "shredded sharp cheddar cheese", + "bacon", + "butter", + "smoked paprika" + ] + }, + { + "id": 32504, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "fresh cilantro", + "garlic", + "onions", + "pepper", + "ground black pepper", + "salsa", + "dried oregano", + "white onion", + "olive oil", + "salt", + "clarified butter", + "boneless pork shoulder", + "orange", + "potatoes", + "ancho chile pepper", + "ground cumin" + ] + }, + { + "id": 22882, + "cuisine": "italian", + "ingredients": [ + "eggs", + "flour", + "filet", + "pepper", + "butter", + "white wine", + "crimini mushrooms", + "chicken broth", + "olive oil", + "salt" + ] + }, + { + "id": 29919, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "semisweet chocolate", + "plum tomatoes", + "sesame seeds", + "salted dry roasted peanuts", + "water", + "raisins", + "canola oil", + "almonds", + "ancho chile pepper" + ] + }, + { + "id": 12005, + "cuisine": "japanese", + "ingredients": [ + "tumeric", + "chile pepper", + "ginger", + "tomatoes", + "water", + "lemon", + "cumin seed", + "daal", + "butter", + "salt", + "spinach", + "red chile powder", + "cilantro", + "asafetida" + ] + }, + { + "id": 2348, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "fat", + "olive oil", + "lamb loin chops", + "salt", + "coriander seeds", + "cumin seed" + ] + }, + { + "id": 39330, + "cuisine": "southern_us", + "ingredients": [ + "crumbled blue cheese", + "self rising flour", + "sour cream", + "butter" + ] + }, + { + "id": 46731, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vanilla extract", + "shortening", + "self rising flour", + "unsweetened cocoa powder", + "eggs", + "evaporated milk", + "white sugar", + "water", + "butter" + ] + }, + { + "id": 13851, + "cuisine": "brazilian", + "ingredients": [ + "ground black pepper", + "salt", + "onions", + "ground chipotle chile pepper", + "butter", + "coconut milk", + "tomatoes", + "flour", + "shrimp", + "olive oil", + "red pepper", + "flat leaf parsley" + ] + }, + { + "id": 17339, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "worcestershire sauce", + "sugar", + "flour tortillas", + "salt", + "cider vinegar", + "loin pork roast", + "cilantro leaves", + "avocado", + "cayenne", + "purple onion" + ] + }, + { + "id": 8829, + "cuisine": "french", + "ingredients": [ + "butter", + "mustard powder", + "shredded Monterey Jack cheese", + "bay scallops", + "salt", + "cooked shrimp", + "sole", + "paprika", + "lemon juice", + "egg yolks", + "crabmeat", + "fresh parsley" + ] + }, + { + "id": 33616, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "shallots", + "salt and ground black pepper", + "bouquet", + "black peppercorns", + "gremolata", + "tarragon", + "white wine", + "unsalted butter", + "champagne vinegar" + ] + }, + { + "id": 24323, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "light coconut milk", + "chopped cilantro", + "water", + "cilantro", + "lamb", + "onions", + "cauliflower", + "diced tomatoes", + "salt", + "curry paste", + "agave nectar", + "ginger", + "garlic puree" + ] + }, + { + "id": 19389, + "cuisine": "italian", + "ingredients": [ + "sugar", + "lettuce leaves", + "italian seasoning", + "cherry tomatoes", + "salt", + "tomatoes", + "olive oil", + "plum tomatoes", + "pepper", + "red wine vinegar" + ] + }, + { + "id": 36057, + "cuisine": "french", + "ingredients": [ + "pekin duck breast halves", + "navel oranges", + "gran marnier", + "asparagus", + "fresh orange juice", + "freshly ground pepper", + "rosemary", + "dry white wine", + "salt", + "grated orange", + "olive oil", + "shallots", + "rice vinegar" + ] + }, + { + "id": 40829, + "cuisine": "thai", + "ingredients": [ + "mirin", + "thai green curry paste", + "unsweetened coconut milk", + "heavy cream", + "lemongrass", + "gingerroot", + "dry white wine" + ] + }, + { + "id": 22959, + "cuisine": "italian", + "ingredients": [ + "vodka", + "rosemary sprigs", + "stolichnaya", + "lemon", + "sugar" + ] + }, + { + "id": 40099, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "cherries", + "salt", + "glaze", + "melted butter", + "active dry yeast", + "baking powder", + "fruit filling", + "milk", + "whole milk", + "all-purpose flour", + "canola oil", + "powdered sugar", + "baking soda", + "almond extract", + "cream cheese" + ] + }, + { + "id": 28176, + "cuisine": "italian", + "ingredients": [ + "romaine lettuce", + "purple onion", + "ground pepper", + "croutons", + "parmesan cheese", + "pepperocini", + "pitted black olives", + "roma tomatoes", + "italian salad dressing" + ] + }, + { + "id": 37182, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "pistachio nuts", + "milk", + "flour", + "rose water", + "butter" + ] + }, + { + "id": 38081, + "cuisine": "thai", + "ingredients": [ + "catfish fillets", + "minced garlic", + "vegetable oil", + "light coconut milk", + "firmly packed brown sugar", + "sweet potatoes", + "ginger", + "chopped cilantro fresh", + "spinach leaves", + "lime juice", + "napa cabbage", + "fat", + "soy sauce", + "shallots", + "Thai red curry paste" + ] + }, + { + "id": 3543, + "cuisine": "french", + "ingredients": [ + "roasted red peppers", + "haricots verts", + "Niçoise olives", + "white wine vinegar", + "red potato", + "tuna packed in olive oil" + ] + }, + { + "id": 1245, + "cuisine": "southern_us", + "ingredients": [ + "Tabasco Pepper Sauce", + "cream cheese", + "grits", + "milk", + "salt", + "shrimp", + "large eggs", + "shredded parmesan cheese", + "fresh parsley", + "chicken broth", + "butter", + "lemon juice" + ] + }, + { + "id": 6312, + "cuisine": "mexican", + "ingredients": [ + "cider vinegar", + "ground pork", + "coriander", + "cinnamon", + "salt", + "cumin", + "pepper", + "garlic", + "oregano", + "paprika", + "ancho chile pepper" + ] + }, + { + "id": 10033, + "cuisine": "british", + "ingredients": [ + "ground ginger", + "slivered almonds", + "golden raisins", + "apple pie spice", + "lemon juice", + "candied orange peel", + "suet", + "currant", + "all-purpose flour", + "eggs", + "bread crumb fresh", + "stout", + "candied lemon peel", + "brown sugar", + "dark rum", + "apples", + "orange juice" + ] + }, + { + "id": 29205, + "cuisine": "chinese", + "ingredients": [ + "cooking oil", + "sweet pepper", + "garlic cloves", + "lettuce", + "chicken breasts", + "fresh mushrooms", + "beansprouts", + "water chestnuts", + "broccoli", + "corn starch", + "chicken broth", + "teriyaki sauce", + "gingerroot", + "toasted sesame oil" + ] + }, + { + "id": 33466, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "pepper", + "chopped celery", + "shrimp", + "soy sauce", + "apple cider vinegar", + "garlic cloves", + "chopped parsley", + "sugar", + "water", + "salt", + "corn starch", + "eggs", + "white onion", + "ground pork", + "carrots" + ] + }, + { + "id": 1215, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "shrimp", + "snow peas", + "wonton skins", + "small eggs", + "bok choy", + "chicken broth", + "ground pork", + "scallions", + "sweet rice wine", + "mushrooms", + "garlic", + "corn starch" + ] + }, + { + "id": 38925, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "low sodium chicken stock", + "fresh basil", + "red wine", + "garlic cloves", + "arborio rice", + "unsalted butter", + "goat cheese", + "pepper", + "salt", + "sliced mushrooms" + ] + }, + { + "id": 20146, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "dried sage", + "onions", + "chicken stock", + "kale", + "carrots", + "pancetta", + "peasant bread", + "freshly ground pepper", + "chicken", + "celery ribs", + "rosemary", + "garlic cloves" + ] + }, + { + "id": 13589, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "boneless skinless chicken breasts", + "salt", + "enchilada sauce", + "chiles", + "Mexican cheese blend", + "shredded lettuce", + "frozen corn kernels", + "cumin", + "chicken broth", + "ground black pepper", + "chili powder", + "yellow onion", + "black beans", + "green onions", + "diced tomatoes", + "rice", + "sour cream" + ] + }, + { + "id": 7515, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "water", + "unsalted butter", + "garlic cloves", + "chicken", + "tumeric", + "honey", + "salt", + "flat leaf parsley", + "black pepper", + "olive oil", + "blanched almonds", + "apricots", + "ground cinnamon", + "fresh cilantro", + "purple onion", + "cinnamon sticks" + ] + }, + { + "id": 2115, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "pear tomatoes", + "freshly ground pepper", + "chees fresh mozzarella", + "fresh basil", + "salt" + ] + }, + { + "id": 40941, + "cuisine": "filipino", + "ingredients": [ + "minced garlic", + "cooking oil", + "salt", + "parsley flakes", + "water", + "worcestershire sauce", + "oyster sauce", + "cold water", + "ox tongue", + "crimini mushrooms", + "yellow onion", + "pepper", + "light soy sauce", + "granulated white sugar", + "corn starch" + ] + }, + { + "id": 21695, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "green chilies", + "cream of chicken soup", + "chicken", + "tortillas", + "sour cream", + "cheddar cheese", + "black olives" + ] + }, + { + "id": 18393, + "cuisine": "french", + "ingredients": [ + "chicken broth", + "egg yolks", + "crepes", + "milk", + "cooked chicken", + "all-purpose flour", + "dried tarragon leaves", + "dry white wine", + "salt", + "finely chopped onion", + "butter" + ] + }, + { + "id": 45993, + "cuisine": "vietnamese", + "ingredients": [ + "chicken stock", + "yellow rock sugar", + "serrano chile", + "black pepper", + "salt", + "fish sauce", + "boneless skinless chicken breasts", + "glass noodles", + "Vietnamese coriander", + "dried wood ear mushrooms" + ] + }, + { + "id": 8007, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "vegetable shortening", + "unsweetened shredded dried coconut", + "corn husks", + "masa harina", + "vanilla beans", + "raisins", + "vanilla flavoring", + "baking powder" + ] + }, + { + "id": 29495, + "cuisine": "spanish", + "ingredients": [ + "parsley sprigs", + "ground black pepper", + "garlic cloves", + "water", + "diced tomatoes", + "flat leaf parsley", + "pepper", + "cooking spray", + "long grain brown rice", + "saffron threads", + "manchego cheese", + "salt" + ] + }, + { + "id": 21367, + "cuisine": "italian", + "ingredients": [ + "chiles", + "parsley", + "purple onion", + "cherry peppers", + "pepper", + "extra-virgin olive oil", + "dandelion", + "beans", + "balsamic vinegar", + "salt", + "fresh basil leaves", + "green olives", + "roasted red peppers", + "garlic", + "escarole" + ] + }, + { + "id": 22639, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "milk", + "pink grapefruit juice", + "sugar", + "baking powder", + "pink grapefruit", + "baking soda", + "salt" + ] + }, + { + "id": 48075, + "cuisine": "southern_us", + "ingredients": [ + "chopped cooked ham", + "ground black pepper", + "baking powder", + "salt", + "white cornmeal", + "black-eyed peas", + "flour", + "crushed red pepper flakes", + "onions", + "sugar", + "bell pepper", + "buttermilk", + "celery", + "collard greens", + "large eggs", + "vegetable oil", + "ham" + ] + }, + { + "id": 1356, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "chili sauce", + "crackers", + "vegetable oil", + "white wine vinegar", + "garlic cloves", + "spring onions", + "cornflour", + "chinese five-spice powder", + "minute steaks", + "red chili peppers", + "red pepper", + "tomato ketchup", + "noodles" + ] + }, + { + "id": 39861, + "cuisine": "cajun_creole", + "ingredients": [ + "chili powder", + "creole seasoning", + "garlic powder", + "russet potatoes", + "black pepper", + "onion powder", + "green onions", + "extra-virgin olive oil" + ] + }, + { + "id": 39048, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "dijon mustard", + "sour cream", + "green olives", + "ground black pepper", + "chopped fresh chives", + "eggs", + "prosciutto", + "grated parmesan cheese", + "mayonaise", + "hot pepper sauce", + "red bell pepper" + ] + }, + { + "id": 17982, + "cuisine": "thai", + "ingredients": [ + "salt", + "jalapeno chilies", + "vinegar", + "garlic" + ] + }, + { + "id": 16480, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "ground nutmeg", + "ground cinnamon", + "unbaked pie crusts", + "vanilla extract", + "ground ginger", + "sugar", + "sweet potatoes", + "melted butter", + "milk", + "salt" + ] + }, + { + "id": 44001, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "ghee", + "chicken", + "tomato paste", + "unsalted butter", + "coriander", + "chicken stock", + "garam masala", + "onions", + "ginger paste", + "tomatoes", + "double cream", + "masala" + ] + }, + { + "id": 21008, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "grated parmesan cheese", + "all-purpose flour", + "fresh parsley", + "ground nutmeg", + "lasagna noodles, cooked and drained", + "chopped onion", + "frozen chopped spinach", + "ground black pepper", + "salt", + "lemon juice", + "minced garlic", + "half & half", + "margarine", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 16597, + "cuisine": "cajun_creole", + "ingredients": [ + "lime", + "salt", + "light brown sugar", + "garlic powder", + "dried oregano", + "olive oil", + "cayenne pepper", + "tilapia fillets", + "paprika", + "cumin" + ] + }, + { + "id": 23420, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "light brown sugar", + "butter", + "chopped pecans", + "baking powder", + "all-purpose flour", + "powdered sugar", + "vanilla extract" + ] + }, + { + "id": 12109, + "cuisine": "japanese", + "ingredients": [ + "crushed tomatoes", + "potatoes", + "apples", + "carrots", + "pepper", + "stewing beef", + "butter", + "salt", + "onions", + "white flour", + "fresh ginger", + "beef stock", + "garlic", + "bay leaf", + "curry powder", + "garam masala", + "star anise", + "oil", + "frozen peas" + ] + }, + { + "id": 10782, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "granulated sugar", + "vanilla extract", + "phyllo dough", + "butter", + "eggs", + "whole milk", + "confectioners sugar", + "semolina", + "lemon" + ] + }, + { + "id": 1906, + "cuisine": "british", + "ingredients": [ + "skim milk", + "whole wheat flour", + "dried apricot", + "salt", + "ground cinnamon", + "ground cloves", + "ground nutmeg", + "sweet potatoes", + "firmly packed brown sugar", + "large egg whites", + "low-fat vanilla ice cream", + "raisins", + "white vinegar", + "brandy", + "baking soda", + "cooking spray", + "margarine" + ] + }, + { + "id": 35414, + "cuisine": "british", + "ingredients": [ + "butter", + "onions", + "white pepper", + "salt", + "potatoes", + "oatmeal", + "curly-leaf parsley", + "double cream" + ] + }, + { + "id": 38403, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "espresso powder", + "cooking spray", + "garlic cloves", + "kosher salt", + "minced onion", + "stewed tomatoes", + "canola oil", + "Mexican seasoning mix", + "pork tenderloin", + "salt", + "unsweetened cocoa powder", + "chipotle chile", + "water", + "ground red pepper", + "adobo sauce" + ] + }, + { + "id": 47872, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "flour", + "salt", + "brown sugar", + "butter", + "chopped pecans", + "brown rice syrup", + "cinnamon", + "cocoa powder", + "sugar", + "vanilla extract", + "whiskey" + ] + }, + { + "id": 49645, + "cuisine": "italian", + "ingredients": [ + "butter", + "polenta", + "salt" + ] + }, + { + "id": 21137, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "sliced olives", + "sour cream", + "chopped green chilies", + "cilantro", + "Old El Paso™ taco seasoning mix", + "guacamole", + "ground turkey", + "tortillas", + "shredded cheese" + ] + }, + { + "id": 2325, + "cuisine": "greek", + "ingredients": [ + "phyllo dough", + "whole cloves", + "honey", + "cinnamon sticks", + "water", + "chopped pecans", + "unsalted butter", + "white sugar" + ] + }, + { + "id": 29461, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "lettuce leaves", + "garlic", + "water chestnuts", + "ginger", + "honey", + "roasted unsalted cashews", + "canola oil", + "pepper", + "boneless skinless chicken breasts", + "scallions" + ] + }, + { + "id": 12587, + "cuisine": "southern_us", + "ingredients": [ + "chips", + "carrots", + "pepper", + "salt", + "crackers", + "bacon", + "onions", + "black-eyed peas", + "hot sauce", + "greens" + ] + }, + { + "id": 46518, + "cuisine": "french", + "ingredients": [ + "white pepper", + "radicchio", + "peeled fresh ginger", + "white wine vinegar", + "fleur de sel", + "chopped leaves", + "olive oil", + "leeks", + "extra-virgin olive oil", + "carrots", + "Belgian endive", + "water", + "coriander seeds", + "dry white wine", + "salt", + "frisee", + "salmon fillets", + "large egg whites", + "sea scallops", + "cilantro sprigs", + "chopped onion", + "chopped cilantro fresh" + ] + }, + { + "id": 10773, + "cuisine": "mexican", + "ingredients": [ + "Campbell's Condensed Cheddar Cheese Soup", + "ground beef", + "shell pasta", + "swanson beef broth", + "Pace Chunky Salsa" + ] + }, + { + "id": 25353, + "cuisine": "mexican", + "ingredients": [ + "granulated sugar", + "salt", + "water", + "butter", + "ground cinnamon", + "vegetable oil", + "all-purpose flour", + "milk", + "vanilla extract" + ] + }, + { + "id": 10481, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "peanuts", + "vanilla", + "water", + "butter", + "baking soda", + "salt" + ] + }, + { + "id": 21687, + "cuisine": "french", + "ingredients": [ + "mild olive oil", + "tart cherries", + "pears", + "powdered sugar", + "self rising flour", + "vanilla extract", + "sugar", + "large eggs", + "almond paste", + "ground cinnamon", + "vegetable oil spray", + "whole milk" + ] + }, + { + "id": 15186, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "oyster sauce", + "chicken stock", + "prawns", + "hoisin sauce", + "noodles", + "fish sauce", + "spring onions" + ] + }, + { + "id": 25330, + "cuisine": "southern_us", + "ingredients": [ + "cooked chicken", + "worcestershire sauce", + "salt", + "chicken broth", + "butter", + "canned tomatoes", + "tamales", + "chili powder", + "bacon", + "whole kernel corn, drain", + "green olives", + "raisins", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 14273, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "large eggs", + "cane sugar", + "salt", + "flour", + "mixed nuts" + ] + }, + { + "id": 19673, + "cuisine": "french", + "ingredients": [ + "cognac", + "sugar", + "unsweetened cocoa powder", + "whipping cream" + ] + }, + { + "id": 22345, + "cuisine": "italian", + "ingredients": [ + "butter", + "heavy whipping cream", + "grated parmesan cheese" + ] + }, + { + "id": 9124, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "asparagus", + "gnocchi", + "water", + "extra-virgin olive oil", + "parmesan cheese", + "fresh lemon juice", + "minced garlic", + "basil leaves", + "large shrimp" + ] + }, + { + "id": 39626, + "cuisine": "british", + "ingredients": [ + "all-purpose flour", + "milk", + "salt", + "eggs" + ] + }, + { + "id": 47304, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "salt", + "sugar", + "butter", + "orange", + "ginger", + "baking powder", + "ice" + ] + }, + { + "id": 14083, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "large eggs", + "ginger", + "shrimp", + "honey", + "vegetable oil", + "garlic", + "cabbage", + "curry powder", + "sesame oil", + "rice vermicelli", + "onions", + "tumeric", + "vinegar", + "red pepper flakes", + "carrots" + ] + }, + { + "id": 47280, + "cuisine": "italian", + "ingredients": [ + "ground chuck", + "olive oil", + "grated parmesan cheese", + "ground pork", + "fresh basil leaves", + "tomato paste", + "kosher salt", + "meatballs", + "ground veal", + "sauce", + "plum tomatoes", + "plain dry bread crumb", + "spanish onion", + "large eggs", + "Italian parsley leaves", + "flat leaf parsley", + "cuban peppers", + "ground black pepper", + "red pepper flakes", + "garlic", + "spaghetti" + ] + }, + { + "id": 44095, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "water", + "salami", + "ground pork", + "carrots", + "mayonaise", + "baguette", + "finely chopped onion", + "chili oil", + "english cucumber", + "soy sauce", + "garlic powder", + "vegetable oil", + "cilantro sprigs", + "pork roll", + "white vinegar", + "kosher salt", + "ground black pepper", + "daikon", + "roast pork seasoning mix" + ] + }, + { + "id": 33060, + "cuisine": "korean", + "ingredients": [ + "pepper", + "large garlic cloves", + "oil", + "sugar", + "sesame seeds", + "rice", + "soy sauce", + "flour", + "beef liver", + "water", + "salt", + "onions" + ] + }, + { + "id": 8439, + "cuisine": "southern_us", + "ingredients": [ + "vegetables", + "worcestershire sauce", + "crackers", + "mayonaise", + "pimentos", + "scallions", + "minced garlic", + "Tabasco Pepper Sauce", + "fresh lemon juice", + "cheddar cheese", + "ground black pepper", + "sharp cheddar cheese" + ] + }, + { + "id": 39665, + "cuisine": "chinese", + "ingredients": [ + "instant yeast", + "ginger", + "chinese five-spice powder", + "water", + "sesame oil", + "salt", + "oyster sauce", + "cooking oil", + "chopped celery", + "garlic cloves", + "light soy sauce", + "ground pork", + "all-purpose flour", + "carrots" + ] + }, + { + "id": 48209, + "cuisine": "greek", + "ingredients": [ + "salt", + "black pepper", + "lemon juice", + "olive oil", + "dried oregano", + "baking potatoes" + ] + }, + { + "id": 37778, + "cuisine": "french", + "ingredients": [ + "butter", + "leeks", + "salt", + "light cream", + "gruyere cheese", + "refrigerated piecrusts" + ] + }, + { + "id": 11978, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "garlic", + "tomatoes", + "cilantro", + "onions", + "lime", + "salt", + "skate wing", + "light coconut milk" + ] + }, + { + "id": 14520, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "golden raisins", + "crushed pineapple", + "ground nutmeg", + "salt", + "chopped pecans", + "ground cinnamon", + "large eggs", + "all-purpose flour", + "canola oil", + "baking soda", + "vanilla extract", + "carrots" + ] + }, + { + "id": 9846, + "cuisine": "brazilian", + "ingredients": [ + "bay leaves", + "salt", + "black beans", + "turkey sausage", + "chicken stock", + "brown rice", + "onions", + "water", + "garlic" + ] + }, + { + "id": 32003, + "cuisine": "french", + "ingredients": [ + "milk", + "beef", + "idaho potatoes", + "salt", + "cantal", + "haricots verts", + "ground black pepper", + "vegetable oil", + "sea salt", + "carrots", + "rib eye steaks", + "olive oil", + "shallots", + "red wine", + "baby carrots", + "chervil", + "unsalted butter", + "butter", + "port", + "thyme" + ] + }, + { + "id": 10970, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "paprika", + "dill pickles", + "vegetable oil", + "all-purpose flour", + "baking powder", + "salt", + "cornmeal", + "cold water", + "cajun seasoning", + "cayenne pepper" + ] + }, + { + "id": 26108, + "cuisine": "mexican", + "ingredients": [ + "canned black beans", + "roma tomatoes", + "rice", + "cooking oil", + "romaine lettuce leaves", + "chipotle", + "colby jack cheese", + "flour tortillas", + "cilantro leaves" + ] + }, + { + "id": 42128, + "cuisine": "southern_us", + "ingredients": [ + "wafer", + "salt", + "vegetable oil", + "pepper", + "all-purpose flour" + ] + }, + { + "id": 45526, + "cuisine": "greek", + "ingredients": [ + "fresh basil", + "yoghurt", + "fresh parsley", + "pepper", + "feta cheese crumbles", + "sugar", + "salt", + "olives", + "tomatoes", + "olive oil", + "cucumber" + ] + }, + { + "id": 44290, + "cuisine": "chinese", + "ingredients": [ + "chili oil", + "carrots", + "green onions", + "rice vinegar", + "white sugar", + "sesame oil", + "soba noodles", + "tamari soy sauce", + "red bell pepper" + ] + }, + { + "id": 19722, + "cuisine": "greek", + "ingredients": [ + "beau monde seasoning", + "low-fat cottage cheese", + "greek yogurt", + "onion powder", + "dried dillweed" + ] + }, + { + "id": 30504, + "cuisine": "french", + "ingredients": [ + "cocoa", + "large egg yolks", + "heavy cream", + "fresh lemon juice", + "roasted hazelnuts", + "water", + "granulated sugar", + "all-purpose flour", + "unsweetened cocoa powder", + "sugar", + "large egg whites", + "whole milk", + "powdered gelatin", + "light brown sugar", + "milk chocolate", + "unsalted butter", + "salt", + "bittersweet chocolate" + ] + }, + { + "id": 33027, + "cuisine": "mexican", + "ingredients": [ + "corn mix muffin", + "unsalted butter", + "salt", + "ground cumin", + "garlic powder", + "jalapeno chilies", + "onions", + "milk", + "shredded extra sharp cheddar cheese", + "ground beef", + "eggs", + "ground black pepper", + "chili powder", + "dried oregano" + ] + }, + { + "id": 17767, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "quickcooking grits", + "water", + "salt", + "grated parmesan cheese" + ] + }, + { + "id": 31449, + "cuisine": "vietnamese", + "ingredients": [ + "minced garlic", + "chili", + "shredded lettuce", + "garlic cloves", + "chillies", + "brown sugar", + "lime juice", + "mint leaves", + "rice vinegar", + "cucumber", + "rice stick noodles", + "water", + "light soy sauce", + "cilantro", + "carrots", + "white sugar", + "soy sauce", + "lemongrass", + "vegetable oil", + "firm tofu", + "beansprouts" + ] + }, + { + "id": 16824, + "cuisine": "japanese", + "ingredients": [ + "water", + "salmon fillets", + "rice vinegar", + "light brown sugar", + "mirin", + "soy sauce", + "scallions" + ] + }, + { + "id": 40553, + "cuisine": "greek", + "ingredients": [ + "fresh rosemary", + "yellow crookneck squash", + "chopped fresh thyme", + "salt", + "leg of lamb", + "vegetable oil spray", + "shallots", + "cracked black pepper", + "fresh lemon juice", + "fresh parsley", + "olive oil", + "zucchini", + "mint sprigs", + "garlic cloves", + "red bell pepper", + "feta cheese", + "zinfandel", + "purple onion", + "thyme", + "chopped fresh mint" + ] + }, + { + "id": 2779, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "goat cheese", + "extra-virgin olive oil", + "flat leaf parsley", + "fresh basil", + "linguine", + "boiling water", + "fennel bulb", + "fresh lemon juice" + ] + }, + { + "id": 2540, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "chopped fresh mint", + "pepper", + "green tomatoes", + "feta cheese crumbles", + "green onions", + "fresh lemon juice", + "baguette", + "salt", + "fresh parsley" + ] + }, + { + "id": 11791, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "cherry tomatoes", + "vegetable oil", + "red bell pepper", + "boneless chicken skinless thigh", + "low sodium chicken broth", + "creole seasoning", + "onions", + "celery ribs", + "kosher salt", + "bay leaves", + "garlic cloves", + "long grain white rice", + "andouille sausage", + "ground black pepper", + "Italian parsley leaves", + "medium shrimp" + ] + }, + { + "id": 39640, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "garlic", + "sirloin", + "green onions", + "brown sugar", + "mirin", + "carrots", + "sugar", + "sesame oil" + ] + }, + { + "id": 23760, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "non-fat sour cream", + "canned black beans", + "green onions", + "salsa", + "reduced fat sharp cheddar cheese", + "large eggs", + "salt", + "large egg whites", + "1% low-fat milk", + "corn tortillas" + ] + }, + { + "id": 7978, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "boneless chicken thighs", + "soy sauce", + "fresh ginger" + ] + }, + { + "id": 42728, + "cuisine": "jamaican", + "ingredients": [ + "chicken broth", + "ground allspice", + "garlic salt", + "dried thyme", + "ground cayenne pepper", + "ground cinnamon", + "roasting chickens", + "ground black pepper", + "onions" + ] + }, + { + "id": 18677, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "Mexican cheese blend", + "sour cream", + "fresh cilantro", + "flour tortillas", + "lime juice", + "beef", + "refried beans", + "shredded lettuce" + ] + }, + { + "id": 45498, + "cuisine": "thai", + "ingredients": [ + "fresh ginger", + "tamari soy sauce", + "fresh lemon juice", + "water", + "crushed red pepper flakes", + "sunflower seed butter", + "apple cider vinegar", + "salt", + "honey", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 11683, + "cuisine": "japanese", + "ingredients": [ + "red pepper flakes", + "toasted sesame oil", + "togarashi", + "scallions", + "ginger", + "chopped garlic" + ] + }, + { + "id": 36075, + "cuisine": "southern_us", + "ingredients": [ + "sage leaves", + "unsalted butter", + "fresh thyme leaves", + "all-purpose flour", + "oysters", + "dry white wine", + "chopped celery", + "parsley sprigs", + "finely chopped onion", + "bacon", + "fresh parsley leaves", + "minced garlic", + "french bread", + "turkey", + "thyme sprigs" + ] + }, + { + "id": 24369, + "cuisine": "mexican", + "ingredients": [ + "water", + "jalapeno chilies", + "garlic cloves", + "onions", + "ground cumin", + "ground cinnamon", + "granulated sugar", + "lime wedges", + "corn tortillas", + "cabbage", + "tomato paste", + "chili", + "apple cider vinegar", + "carrots", + "dried oregano", + "kosher salt", + "lager", + "queso fresco", + "chopped cilantro", + "chuck" + ] + }, + { + "id": 13931, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "chicken", + "crushed garlic", + "ground turmeric", + "yoghurt" + ] + }, + { + "id": 2160, + "cuisine": "cajun_creole", + "ingredients": [ + "red potato", + "chopped celery", + "creole mustard", + "shrimp and crab boil seasoning", + "mayonaise", + "creole seasoning", + "eggs", + "green onions" + ] + }, + { + "id": 21810, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "green onions", + "chow mein noodles", + "vinegar", + "salt", + "soy sauce", + "sesame oil", + "beansprouts", + "wine", + "sherry", + "yellow onion" + ] + }, + { + "id": 20370, + "cuisine": "indian", + "ingredients": [ + "chickpeas", + "naan", + "salt", + "oil", + "yoghurt", + "sauce", + "masala", + "cayenne pepper", + "chopped cilantro" + ] + }, + { + "id": 37958, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "parmesan cheese", + "garlic", + "eggs", + "mozzarella cheese", + "vine ripened tomatoes", + "ground beef", + "seasoned bread crumbs", + "roasted red peppers", + "yellow onion", + "tomato sauce", + "olive oil", + "worcestershire sauce", + "italian seasoning" + ] + }, + { + "id": 45273, + "cuisine": "thai", + "ingredients": [ + "dark soy sauce", + "water", + "dark brown sugar", + "sugar", + "shallots", + "fresh lime juice", + "fish sauce", + "lemongrass", + "garlic cloves", + "chili flakes", + "white pepper", + "cilantro", + "short rib" + ] + }, + { + "id": 56, + "cuisine": "italian", + "ingredients": [ + "anise seed", + "sesame seeds", + "all-purpose flour", + "water", + "garlic", + "green bell pepper", + "salt and ground black pepper", + "olive oil", + "boneless beef chuck roast" + ] + }, + { + "id": 15903, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "salt", + "jalapeno chilies", + "onions", + "vinegar", + "green chilies", + "tomatoes", + "green onions" + ] + }, + { + "id": 24476, + "cuisine": "moroccan", + "ingredients": [ + "sliced almonds", + "dry white wine", + "ground cumin", + "vegetables", + "ground coriander", + "olive oil", + "vegetable broth", + "golden raisins", + "couscous" + ] + }, + { + "id": 18145, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "leaves", + "ground white pepper", + "jackfruit", + "salt", + "pork", + "garlic", + "medium shrimp", + "sesame seeds", + "oil" + ] + }, + { + "id": 35395, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "garlic", + "potato starch", + "kosher salt", + "sesame oil", + "canola oil", + "turbinado", + "soy sauce", + "lemon wedge", + "sansho", + "chicken wings", + "granulated sugar", + "ginger" + ] + }, + { + "id": 23847, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "salt", + "jicama", + "chopped fresh mint", + "cilantro sprigs", + "jalapeno chilies", + "fresh lime juice" + ] + }, + { + "id": 38005, + "cuisine": "french", + "ingredients": [ + "chili flakes", + "almonds", + "salt", + "water", + "cilantro", + "onions", + "sugar", + "butter", + "all-purpose flour", + "olive oil", + "garlic" + ] + }, + { + "id": 36508, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "bacon fat", + "eggs", + "heavy cream", + "sage", + "ground black pepper", + "salt", + "rib eye steaks", + "buttermilk", + "all-purpose flour" + ] + }, + { + "id": 24277, + "cuisine": "southern_us", + "ingredients": [ + "water", + "kosher salt", + "purple onion", + "granulated sugar", + "cider vinegar" + ] + }, + { + "id": 2485, + "cuisine": "italian", + "ingredients": [ + "eggs", + "vanilla extract", + "butter", + "confectioners sugar", + "baking powder", + "all-purpose flour", + "fresh orange juice", + "white sugar" + ] + }, + { + "id": 13082, + "cuisine": "italian", + "ingredients": [ + "capers", + "ground black pepper", + "hard-boiled egg", + "all-purpose flour", + "kosher salt", + "grated parmesan cheese", + "lemon", + "arugula", + "olive oil", + "pork tenderloin", + "extra-virgin olive oil", + "bread crumb fresh", + "large eggs", + "chopped fresh thyme", + "chopped fresh sage" + ] + }, + { + "id": 33870, + "cuisine": "italian", + "ingredients": [ + "pepper", + "large eggs", + "ricotta cheese", + "mayonaise", + "lasagna noodles", + "chives", + "artichoke hearts", + "green onions", + "provolone cheese", + "frozen chopped spinach", + "parmesan cheese", + "Alfredo sauce", + "shredded mozzarella cheese" + ] + }, + { + "id": 14834, + "cuisine": "mexican", + "ingredients": [ + "granny smith apples", + "strawberries", + "kiwi", + "salsa", + "jelly", + "lime juice", + "cayenne pepper", + "Splenda Brown Sugar Blend", + "hot sauce", + "blackberries" + ] + }, + { + "id": 22793, + "cuisine": "british", + "ingredients": [ + "ground cumin", + "vegetables", + "oil", + "chili flakes" + ] + }, + { + "id": 24254, + "cuisine": "spanish", + "ingredients": [ + "dry white wine", + "paprika", + "all-purpose flour", + "prosciutto", + "red pepper", + "garlic", + "fresh parsley", + "chopped fresh thyme", + "extra-virgin olive oil", + "cayenne pepper", + "skinless chicken pieces", + "diced tomatoes", + "salt", + "onions" + ] + }, + { + "id": 28762, + "cuisine": "greek", + "ingredients": [ + "mint", + "roasting chickens", + "flat leaf parsley", + "dried rosemary", + "pita rounds", + "extra-virgin olive oil", + "fresh lemon juice", + "dried oregano", + "kirby cucumbers", + "garlic cloves", + "naan", + "grape tomatoes", + "purple onion", + "greek yogurt", + "iceberg lettuce" + ] + }, + { + "id": 37213, + "cuisine": "japanese", + "ingredients": [ + "cooking wine", + "sugar", + "shiromiso", + "sake", + "black cod" + ] + }, + { + "id": 13408, + "cuisine": "italian", + "ingredients": [ + "country bread", + "olive oil", + "salt" + ] + }, + { + "id": 41518, + "cuisine": "italian", + "ingredients": [ + "cold water", + "water", + "dry red wine", + "fresh parsley", + "great northern beans", + "dried thyme", + "chopped onion", + "tomato paste", + "bulk italian sausag", + "garlic", + "dried oregano", + "pork", + "beef bouillon granules", + "carrots" + ] + }, + { + "id": 42081, + "cuisine": "spanish", + "ingredients": [ + "unflavored gelatin", + "chopped green bell pepper", + "salt", + "sugar", + "beef stock cubes", + "lemon juice", + "mayonaise", + "lettuce leaves", + "hot sauce", + "tomatoes", + "water", + "chopped celery", + "sliced green onions" + ] + }, + { + "id": 42964, + "cuisine": "korean", + "ingredients": [ + "flat leaf spinach", + "fresh shiitake mushrooms", + "soybean sprouts", + "toasted nori", + "sushi rice", + "zucchini", + "vegetable oil", + "fiddlehead ferns", + "sesame seeds", + "sesame oil", + "Gochujang base", + "chopped garlic", + "water", + "large eggs", + "salt", + "carrots" + ] + }, + { + "id": 24042, + "cuisine": "cajun_creole", + "ingredients": [ + "lump crab meat", + "diced tomatoes", + "garlic cloves", + "tomato sauce", + "vegetable oil", + "chopped onion", + "cooked rice", + "green onions", + "all-purpose flour", + "fresh parsley", + "chicken broth", + "file powder", + "chopped celery", + "shrimp" + ] + }, + { + "id": 22795, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "basil leaves", + "prebaked pizza crusts", + "asparagus", + "garlic cloves", + "rocket leaves", + "prosciutto", + "fresh mushrooms", + "olive oil", + "parmigiano reggiano cheese" + ] + }, + { + "id": 23389, + "cuisine": "french", + "ingredients": [ + "butter", + "herbes de provence", + "hot pepper sauce", + "garlic cloves", + "onions", + "dijon mustard", + "low salt chicken broth", + "chicken", + "olive oil", + "worcestershire sauce", + "fresh parsley" + ] + }, + { + "id": 25452, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "hothouse cucumber", + "ground coriander", + "chopped cilantro fresh", + "green onions", + "ground cumin" + ] + }, + { + "id": 29808, + "cuisine": "spanish", + "ingredients": [ + "whole peeled tomatoes", + "dry sherry", + "chopped cilantro", + "kosher salt", + "bacon", + "poblano chiles", + "chicken stock", + "jalapeno chilies", + "extra-virgin olive oil", + "onions", + "spanish rice", + "lime wedges", + "garlic cloves", + "chicken" + ] + }, + { + "id": 32324, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "chili powder", + "shrimp", + "tomato purée", + "granulated sugar", + "cilantro leaves", + "ground turmeric", + "curry leaves", + "water", + "vegetable oil", + "onions", + "garlic paste", + "vinegar", + "green chilies", + "ground cumin" + ] + }, + { + "id": 23232, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "Thai red curry paste", + "green beans", + "unsweetened coconut milk", + "vegetable oil", + "salt", + "boneless skinless chicken breasts", + "crushed red pepper", + "bean threads", + "basil", + "dark brown sugar" + ] + }, + { + "id": 38656, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked ham", + "ground black pepper", + "egg yolks", + "red wine vinegar", + "eggs", + "black truffles", + "flour", + "parsley", + "canola oil", + "kosher salt", + "unsalted butter", + "oil packed anchovies", + "asparagus spears", + "bread crumbs", + "cayenne", + "artichoke bottoms", + "lemon" + ] + }, + { + "id": 27826, + "cuisine": "french", + "ingredients": [ + "salt", + "fresh lemon juice", + "powdered sugar", + "strawberries", + "crème fraîche", + "vanilla extract", + "cream cheese" + ] + }, + { + "id": 16819, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "fresh shiitake mushrooms", + "ginger", + "chicken thighs", + "white vinegar", + "white miso", + "mustard greens", + "rib", + "chopped garlic", + "chicken stock", + "mirin", + "salsify", + "onions", + "canola oil", + "water", + "burdock", + "scallions", + "wood ear mushrooms" + ] + }, + { + "id": 27433, + "cuisine": "mexican", + "ingredients": [ + "water", + "tamarind concentrate", + "sugar" + ] + }, + { + "id": 6705, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "mushrooms", + "salt", + "grated parmesan cheese", + "linguine", + "fresh parsley", + "ground black pepper", + "green onions", + "garlic cloves", + "clams", + "cooking spray", + "crushed red pepper", + "dried oregano" + ] + }, + { + "id": 19215, + "cuisine": "korean", + "ingredients": [ + "rice syrup", + "sesame oil", + "onions", + "sesame seeds", + "garlic", + "honey", + "red pepper", + "soy sauce", + "ground black pepper", + "beef rib short" + ] + }, + { + "id": 49547, + "cuisine": "italian", + "ingredients": [ + "egg whites", + "buttermilk", + "chopped walnuts", + "flaked coconut", + "all-purpose flour", + "white sugar", + "egg yolks", + "vanilla extract", + "confectioners sugar", + "baking soda", + "butter", + "cream cheese" + ] + }, + { + "id": 41872, + "cuisine": "thai", + "ingredients": [ + "sponge", + "tamarind juice", + "garlic", + "turnips", + "peanuts", + "lime wedges", + "beansprouts", + "garlic chives", + "chili powder", + "Thai fish sauce", + "rice stick noodles", + "palm sugar", + "vegetable oil", + "large shrimp" + ] + }, + { + "id": 21272, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "serrano peppers", + "garlic", + "white onion", + "queso fresco", + "corn tortillas", + "bone-in chicken breast halves", + "vegetable oil", + "salt", + "fresh cilantro", + "tomatillos" + ] + }, + { + "id": 46451, + "cuisine": "british", + "ingredients": [ + "lemon juice", + "scotch", + "grenadine", + "Grand Marnier" + ] + }, + { + "id": 2689, + "cuisine": "greek", + "ingredients": [ + "green bell pepper", + "extra-virgin olive oil", + "Greek feta", + "cucumber", + "feta cheese", + "purple onion", + "tomatoes", + "kalamata", + "oregano" + ] + }, + { + "id": 35509, + "cuisine": "indian", + "ingredients": [ + "chicken broth", + "garam masala", + "heavy cream", + "onions", + "ground turmeric", + "fresh ginger root", + "vegetable oil", + "corn starch", + "boiling water", + "plain yogurt", + "chili powder", + "ground coriander", + "boneless skinless chicken breast halves", + "tomato sauce", + "bay leaves", + "garlic", + "cashew nuts", + "ground cumin" + ] + }, + { + "id": 33619, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "jalapeno chilies", + "lime wedges", + "garlic", + "coriander", + "tomato paste", + "fresh ginger", + "boneless skinless chicken breasts", + "heavy cream", + "cardamom", + "olive oil", + "bay leaves", + "butter", + "salt", + "basmati rice", + "chicken broth", + "garam masala", + "chili powder", + "cracked black pepper", + "onions" + ] + }, + { + "id": 12456, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "red pepper flakes", + "cabbage", + "cajun seasoning", + "cracked black pepper", + "apple cider vinegar", + "bacon", + "butter", + "chopped onion" + ] + }, + { + "id": 2186, + "cuisine": "japanese", + "ingredients": [ + "baking powder", + "oil", + "ice water", + "sesame oil", + "flour", + "salt" + ] + }, + { + "id": 7971, + "cuisine": "spanish", + "ingredients": [ + "vodka", + "fresh raspberries", + "sugar", + "rosé wine", + "peaches", + "club soda", + "frozen lemonade concentrate", + "peach nectar" + ] + }, + { + "id": 47025, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "unsalted butter", + "whipping cream", + "fresh lemon juice", + "white chocolate", + "semisweet chocolate", + "strawberries", + "large egg yolks", + "half & half", + "walnuts", + "whole almonds", + "bananas", + "light corn syrup", + "dark brown sugar" + ] + }, + { + "id": 37736, + "cuisine": "indian", + "ingredients": [ + "minced ginger", + "vegetable broth", + "ground coriander", + "yukon gold potatoes", + "cayenne pepper", + "ground cumin", + "unsalted butter", + "salt", + "onions", + "stewed tomatoes", + "chickpeas" + ] + }, + { + "id": 29484, + "cuisine": "moroccan", + "ingredients": [ + "grapes", + "shallots", + "merguez sausage", + "salt", + "olive oil", + "dry red wine", + "aleppo pepper", + "lemon zest", + "sweet paprika" + ] + }, + { + "id": 14951, + "cuisine": "british", + "ingredients": [ + "milk", + "eggs", + "water", + "plain flour" + ] + }, + { + "id": 14739, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "crushed red pepper flakes", + "freshly ground pepper", + "coarse salt", + "extra-virgin olive oil", + "onions", + "dry white wine", + "tomatoes with juice", + "gnocchi", + "tomato sauce", + "basil", + "garlic" + ] + }, + { + "id": 5593, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "ginger", + "gram flour", + "tomatoes", + "cooking oil", + "salt", + "ground turmeric", + "cauliflower", + "garam masala", + "green peas", + "mustard seeds", + "red chili powder", + "yoghurt", + "cumin seed" + ] + }, + { + "id": 28534, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "diced tomatoes", + "corn tortillas", + "ground cumin", + "vegetable oil cooking spray", + "garlic powder", + "non-fat sour cream", + "cooked chicken breasts", + "low-fat shredded cheddar cheese", + "pepper", + "fatfre cream of chicken soup", + "chunky salsa", + "fat free cream of mushroom soup", + "shredded lettuce", + "enchilada sauce", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 7986, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "dried apricot", + "peanut oil", + "curry powder", + "butter", + "onions", + "diced apples", + "golden raisins", + "garlic cloves", + "chicken broth", + "boneless chicken breast halves", + "salt" + ] + }, + { + "id": 4814, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "vegetable oil", + "all-purpose flour", + "hazelnuts", + "large eggs", + "heavy cream", + "freshly ground pepper", + "pork rib chops", + "large garlic cloves", + "cognac", + "morel", + "shallots", + "salt", + "boiling water" + ] + }, + { + "id": 49063, + "cuisine": "southern_us", + "ingredients": [ + "bananas", + "vanilla extract", + "ground cinnamon", + "butter", + "apple juice concentrate", + "dark rum", + "ground allspice", + "brown sugar", + "vanilla" + ] + }, + { + "id": 20603, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "butter", + "prosecco", + "shallots", + "garlic cloves", + "ground black pepper", + "grated lemon zest", + "lower sodium chicken broth", + "fresh thyme leaves", + "carnaroli rice" + ] + }, + { + "id": 1918, + "cuisine": "indian", + "ingredients": [ + "roast turkey", + "vegetable oil", + "carrots", + "water", + "gingerroot", + "boiling potatoes", + "fresh coriander", + "chopped onion", + "fresh lime juice", + "unsweetened coconut milk", + "curry powder", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 8367, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "garlic cloves", + "cooked rice", + "cilantro", + "onions", + "red kidney beans", + "butter", + "smoked paprika", + "green bell pepper", + "cayenne pepper", + "cumin" + ] + }, + { + "id": 11262, + "cuisine": "thai", + "ingredients": [ + "Hellmann's® Real Mayonnaise", + "juice", + "chicken breasts", + "green pepper", + "honey", + "purple onion", + "thai green curry paste", + "red pepper", + "ground coriander" + ] + }, + { + "id": 38124, + "cuisine": "italian", + "ingredients": [ + "spinach leaves", + "olive oil", + "flour", + "fresh basil leaves", + "kosher salt", + "roasted red peppers", + "provolone cheese", + "minced garlic", + "large eggs", + "ham", + "fresh oregano leaves", + "unsalted butter", + "salt" + ] + }, + { + "id": 7568, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "milk", + "oil", + "black beans", + "diced green chilies", + "eggs", + "corn", + "ground beef", + "shredded cheddar cheese", + "cornbread mix" + ] + }, + { + "id": 43746, + "cuisine": "mexican", + "ingredients": [ + "oil", + "chile pepper", + "queso asadero", + "all-purpose flour" + ] + }, + { + "id": 44006, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "rum", + "vanilla extract", + "bananas", + "bourbon whiskey", + "vanilla wafers", + "powdered sugar", + "egg yolks", + "whipping cream", + "all-purpose flour", + "milk", + "candy bar", + "salt" + ] + }, + { + "id": 12488, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "garlic", + "ground black pepper", + "dijon mustard", + "olive oil", + "white wine vinegar" + ] + }, + { + "id": 44768, + "cuisine": "brazilian", + "ingredients": [ + "parsnips", + "black-eyed peas", + "shallots", + "salt", + "rapeseed oil", + "lime", + "sweet potatoes", + "vine tomatoes", + "carrots", + "flat leaf parsley", + "fresh coriander", + "ground nutmeg", + "red pepper", + "okra", + "coconut milk", + "kaffir lime leaves", + "fresh ginger", + "spring onions", + "garlic", + "green beans" + ] + }, + { + "id": 31051, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "chili powder", + "red bell pepper", + "chicken", + "rocket leaves", + "flour tortillas", + "salsa", + "dried oregano", + "black beans", + "jalapeno chilies", + "cayenne pepper", + "mango", + "dried basil", + "vegetable oil", + "onions" + ] + }, + { + "id": 41673, + "cuisine": "japanese", + "ingredients": [ + "Japanese soy sauce", + "ginger", + "chinese chives", + "sugar", + "napa cabbage", + "salt", + "sake", + "sesame oil", + "garlic", + "medium shrimp", + "black pepper", + "ground pork", + "gyoza wrappers" + ] + }, + { + "id": 7876, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "lime", + "vodka" + ] + }, + { + "id": 32132, + "cuisine": "chinese", + "ingredients": [ + "water chestnuts", + "fresh green bean", + "corn starch", + "chicken broth", + "mushrooms", + "salt", + "bamboo shoots", + "sherry", + "white rice", + "chicken pieces", + "eggs", + "vegetable oil", + "shrimp" + ] + }, + { + "id": 22147, + "cuisine": "mexican", + "ingredients": [ + "red chili peppers", + "green onions", + "malt vinegar", + "fish sauce", + "kosher salt", + "cilantro", + "soy sauce", + "sesame oil", + "brown sugar", + "lime juice", + "garlic" + ] + }, + { + "id": 2712, + "cuisine": "mexican", + "ingredients": [ + "pasilla chiles", + "boiling water", + "ancho chile pepper" + ] + }, + { + "id": 819, + "cuisine": "greek", + "ingredients": [ + "boneless chicken thighs", + "olive oil", + "garlic cloves", + "water", + "anchovy paste", + "green beans", + "black pepper", + "diced tomatoes", + "feta cheese crumbles", + "red potato", + "dried thyme", + "chopped onion" + ] + }, + { + "id": 12606, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "salt", + "chili", + "tomatoes", + "buttermilk", + "sweet onion", + "cucumber" + ] + }, + { + "id": 44775, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "white rice", + "lettuce", + "lime", + "red curry paste", + "water", + "purple onion", + "tomato paste", + "ground pork" + ] + }, + { + "id": 33850, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "firm tofu", + "chopped cilantro fresh", + "fish sauce", + "shiitake", + "red bell pepper", + "chili", + "garlic cloves", + "sugar", + "vegetable oil", + "onions" + ] + }, + { + "id": 48855, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "fresh lemon juice", + "ground coriander", + "chopped fresh mint", + "whole milk yoghurt", + "onions", + "freshly ground pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 26849, + "cuisine": "thai", + "ingredients": [ + "ketchup", + "unsalted dry roast peanuts", + "sliced green onions", + "fish sauce", + "large eggs", + "beansprouts", + "rice stick noodles", + "minced garlic", + "crushed red pepper", + "sugar", + "vegetable oil", + "medium shrimp" + ] + }, + { + "id": 47832, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "fresh ginger", + "asparagus", + "cilantro leaves", + "coconut milk", + "fava beans", + "lemon grass", + "garlic", + "cumin seed", + "lime", + "palm sugar", + "salt", + "poi", + "fish sauce", + "coriander seeds", + "shallots", + "green chilies", + "curry paste" + ] + }, + { + "id": 32286, + "cuisine": "cajun_creole", + "ingredients": [ + "reduced sodium chicken broth", + "boneless skinless chicken breasts", + "salt", + "ground black pepper", + "garlic", + "chopped onion", + "olive oil", + "lime wedges", + "cayenne pepper", + "cooked brown rice", + "red beans", + "sweet pepper", + "ground cumin" + ] + }, + { + "id": 10124, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "salt", + "purple onion", + "sour orange juice" + ] + }, + { + "id": 11680, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "half & half", + "ground allspice", + "unsalted butter", + "vanilla extract", + "graham crackers", + "sweet potatoes", + "fresh lemon juice", + "ground ginger", + "large eggs", + "salt" + ] + }, + { + "id": 13477, + "cuisine": "french", + "ingredients": [ + "grated parmesan cheese", + "all-purpose flour", + "garlic bulb", + "whipping cream", + "new potatoes", + "freshly ground pepper", + "ground nutmeg", + "salt" + ] + }, + { + "id": 10172, + "cuisine": "thai", + "ingredients": [ + "yardlong beans", + "garlic cloves", + "green papaya", + "cherry tomatoes", + "thai chile", + "fresh lime juice", + "fish sauce", + "green onions", + "green beans", + "chopped cilantro fresh", + "palm sugar", + "salted peanuts", + "dried shrimp" + ] + }, + { + "id": 40716, + "cuisine": "chinese", + "ingredients": [ + "yellow squash", + "beef tenderloin", + "lemon juice", + "cherry tomatoes", + "hot chili oil", + "garlic cloves", + "low sodium soy sauce", + "green tea", + "sauce", + "onions", + "lemongrass", + "cooking spray", + "long-grain rice", + "serrano chile" + ] + }, + { + "id": 16437, + "cuisine": "chinese", + "ingredients": [ + "eggplant", + "vegetable oil", + "garlic chili sauce", + "golden brown sugar", + "sesame oil", + "fresh lemon juice", + "soy sauce", + "peeled fresh ginger", + "rice vinegar", + "chopped cilantro fresh", + "crisps", + "green onions", + "garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 35176, + "cuisine": "french", + "ingredients": [ + "baking potatoes", + "unsalted butter", + "clarified butter" + ] + }, + { + "id": 18499, + "cuisine": "italian", + "ingredients": [ + "lump crab meat", + "green onions", + "medium shrimp", + "fettucine", + "fresh parmesan cheese", + "salt", + "sea scallops", + "butter", + "fresh parsley", + "black pepper", + "half & half", + "garlic cloves" + ] + }, + { + "id": 31982, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "fat free less sodium chicken broth", + "salt", + "fresh lemon juice", + "green olives", + "olive oil", + "chopped onion", + "fresh parsley", + "ground cinnamon", + "fresh cilantro", + "grated lemon zest", + "chicken leg quarters", + "black pepper", + "chicken breast halves", + "garlic cloves" + ] + }, + { + "id": 40007, + "cuisine": "southern_us", + "ingredients": [ + "boneless skinless chicken breasts", + "black pepper", + "buttermilk", + "cornflake crumbs", + "salt", + "butter" + ] + }, + { + "id": 40385, + "cuisine": "korean", + "ingredients": [ + "pepper flakes", + "rice cakes", + "garlic", + "carrots", + "leaves", + "chicken drumsticks", + "Gochujang base", + "cabbage", + "soy sauce", + "sweet potatoes", + "cooking wine", + "onions", + "ground black pepper", + "ginger", + "green chilies", + "chicken" + ] + }, + { + "id": 30900, + "cuisine": "french", + "ingredients": [ + "light brown sugar", + "large eggs", + "water", + "salt", + "cold water", + "apples", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 28021, + "cuisine": "chinese", + "ingredients": [ + "marinade", + "oyster sauce", + "hoisin sauce", + "salt", + "baby back ribs", + "white pepper", + "worcestershire sauce", + "corn starch", + "Shaoxing wine", + "oil" + ] + }, + { + "id": 31467, + "cuisine": "vietnamese", + "ingredients": [ + "chicken legs", + "spices", + "green beans", + "pepper", + "fresh tofu", + "sugar", + "salt", + "spring onions", + "carrots" + ] + }, + { + "id": 43194, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "fresh parmesan cheese", + "salt", + "cavatappi", + "artichoke hearts", + "diced tomatoes", + "black pepper", + "dry white wine", + "sliced green onions", + "boneless chicken skinless thigh", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 11003, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "ginger", + "cumin seed", + "tomatoes", + "mushrooms", + "salt", + "onions", + "garam masala", + "garlic", + "chillies", + "tumeric", + "vegetable oil", + "lamb", + "frozen peas" + ] + }, + { + "id": 43975, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "ground black pepper", + "flour", + "chopped onion", + "turkey breast cutlets", + "cooking oil", + "garlic", + "lemon juice", + "canned low sodium chicken broth", + "cayenne", + "butter", + "walnuts", + "ground cloves", + "grated parmesan cheese", + "salt", + "fresh parsley" + ] + }, + { + "id": 40784, + "cuisine": "spanish", + "ingredients": [ + "unsalted butter", + "fresh basil", + "salt", + "balsamic vinegar", + "honey", + "plantains" + ] + }, + { + "id": 44406, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "bell pepper", + "garlic", + "fish sauce", + "soy sauce", + "ginger", + "onions", + "pork", + "vegetable oil", + "fresh mint", + "brown sugar", + "lime juice", + "stir fry sauce" + ] + }, + { + "id": 8973, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "unsalted butter", + "salt", + "grits", + "ground nutmeg", + "cinnamon", + "heavy whipping cream", + "bananas", + "vanilla", + "sweetened condensed milk", + "milk", + "large eggs", + "cream cheese" + ] + }, + { + "id": 33335, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "freshly ground pepper", + "serrano chile", + "purple onion", + "cucumber", + "black-eyed peas", + "lemon juice", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 25457, + "cuisine": "italian", + "ingredients": [ + "cracked black pepper", + "red bell pepper", + "artichoke hearts", + "croutons", + "pepper", + "purple onion", + "iceberg lettuce", + "black olives", + "peppercorns" + ] + }, + { + "id": 22223, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "pecans", + "butter", + "coconut sugar", + "large eggs", + "pie crust", + "whole wheat flour", + "pure vanilla extract", + "pecan halves", + "bourbon whiskey" + ] + }, + { + "id": 39542, + "cuisine": "italian", + "ingredients": [ + "sugar", + "corn syrup", + "orange", + "orange liqueur", + "water", + "fresh lemon juice", + "fresh orange juice" + ] + }, + { + "id": 47690, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "salsa", + "eggs", + "grating cheese", + "sliced green onions", + "organic tomato", + "sour cream", + "Spike Seasoning", + "diced tomatoes" + ] + }, + { + "id": 23929, + "cuisine": "italian", + "ingredients": [ + "spinach", + "olive oil", + "small pasta", + "garlic cloves", + "reduced sodium chicken broth", + "zucchini", + "white beans", + "carrots", + "rosemary sprigs", + "parmesan cheese", + "diced tomatoes", + "diced celery", + "fresh basil", + "kosher salt", + "bay leaves", + "chopped onion", + "flat leaf parsley" + ] + }, + { + "id": 36471, + "cuisine": "indian", + "ingredients": [ + "water", + "white sugar", + "clove", + "cashew nuts", + "saffron", + "ground cardamom", + "basmati rice", + "raisins", + "clarified butter" + ] + }, + { + "id": 39869, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "unsalted butter", + "whipping cream", + "coffee ice cream", + "flour tortillas", + "instant espresso powder", + "mint sprigs", + "sugar", + "semisweet chocolate", + "hot water" + ] + }, + { + "id": 14906, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "crushed red pepper flakes", + "ground fennel", + "lean ground beef", + "dry bread crumbs", + "tomato sauce", + "coarse salt", + "fresh oregano", + "olive oil", + "ricotta cheese", + "flat leaf parsley" + ] + }, + { + "id": 10928, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "all-purpose flour", + "bacon", + "frozen whole kernel corn" + ] + }, + { + "id": 32072, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "cherry tomatoes", + "sharp white cheddar cheese", + "flour", + "buttermilk", + "sharp cheddar cheese", + "pepper", + "parmesan cheese", + "Sriracha", + "bourbon whiskey", + "salt", + "thick-cut bacon", + "fresh basil", + "honey", + "unsalted butter", + "baking powder", + "sliced turkey", + "cornmeal", + "milk", + "baking soda", + "jalapeno chilies", + "butter", + "all-purpose flour" + ] + }, + { + "id": 16209, + "cuisine": "mexican", + "ingredients": [ + "corn tortilla chips", + "scallions", + "chicken breasts", + "chopped tomatoes", + "Mexican cheese", + "low-fat refried beans" + ] + }, + { + "id": 19166, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cold water", + "low-fat buttermilk", + "vanilla beans", + "unflavored gelatin", + "heavy cream" + ] + }, + { + "id": 14004, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "egg noodles", + "cooking wine", + "dark soy sauce", + "roasted white sesame seeds", + "sesame oil", + "beansprouts", + "light soy sauce", + "chives", + "oyster sauce", + "water", + "cooking oil", + "salt" + ] + }, + { + "id": 46244, + "cuisine": "vietnamese", + "ingredients": [ + "lime", + "juice", + "fish sauce", + "bone-in pork chops", + "thai chile", + "sugar", + "garlic cloves" + ] + }, + { + "id": 42660, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "split black lentils", + "mustard seeds", + "cooked white rice", + "coconut", + "salt", + "dried red chile peppers", + "cashew nuts", + "bengal gram", + "cumin seed", + "ghee", + "fresh curry leaves", + "chile pepper", + "asafoetida powder", + "toasted sesame seeds" + ] + }, + { + "id": 17664, + "cuisine": "italian", + "ingredients": [ + "whipping cream", + "milk", + "liqueur", + "large eggs", + "ice", + "sugar", + "bittersweet chocolate" + ] + }, + { + "id": 20711, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "jalapeno chilies", + "coconut milk", + "kale", + "purple onion", + "lime", + "sweet pepper", + "fish sauce", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 41637, + "cuisine": "mexican", + "ingredients": [ + "Old El Paso™ chopped green chiles", + "flour tortillas", + "cream cheese", + "Old El Paso™ taco seasoning mix", + "diced tomatoes", + "boneless skinless chicken breasts" + ] + }, + { + "id": 45042, + "cuisine": "chinese", + "ingredients": [ + "prawns", + "garlic", + "green onions", + "chili pepper", + "salt" + ] + }, + { + "id": 27959, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "peeled fresh ginger", + "green chilies", + "ground turkey", + "dumpling wrappers", + "coarse salt", + "scallions", + "bok choy", + "water", + "sesame oil", + "peanut oil", + "toasted sesame oil", + "sugar", + "large egg whites", + "rice vinegar", + "garlic cloves" + ] + }, + { + "id": 11188, + "cuisine": "mexican", + "ingredients": [ + "wish bone ranch dress", + "shredded cheddar cheese", + "corn tortillas", + "taco seasoning mix", + "ground beef", + "tomatoes", + "shredded lettuce" + ] + }, + { + "id": 14593, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "large eggs", + "fresh tarragon", + "unsalted butter", + "clam juice", + "all-purpose flour", + "water", + "shallots", + "salt", + "salmon fillets", + "lemon zest", + "heavy cream" + ] + }, + { + "id": 15044, + "cuisine": "italian", + "ingredients": [ + "sausages", + "vegetables", + "zucchini" + ] + }, + { + "id": 22333, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "garlic powder", + "light coconut milk", + "low sodium soy sauce", + "lime", + "shallots", + "freshly ground pepper", + "light brown sugar", + "fresh cilantro", + "boneless skinless chicken breasts", + "ground coriander", + "kosher salt", + "fresh ginger", + "red pepper flakes", + "ground cumin" + ] + }, + { + "id": 40745, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "salt", + "ground black pepper", + "paprika", + "cream cheese", + "spicy brown mustard", + "all-purpose flour", + "whole milk", + "shredded sharp cheddar cheese", + "elbow macaroni" + ] + }, + { + "id": 5399, + "cuisine": "japanese", + "ingredients": [ + "milk", + "saffron", + "sugar", + "ghee", + "rose water", + "nuts", + "bread", + "cardamom" + ] + }, + { + "id": 13922, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salted peanuts", + "vegetable oil", + "unsalted butter", + "salt" + ] + }, + { + "id": 25096, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "salt", + "tomatoes", + "fresh mozzarella", + "balsamic vinegar", + "pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 21473, + "cuisine": "mexican", + "ingredients": [ + "white rice", + "ice", + "almonds", + "boiling water", + "cold water", + "coconut milk", + "sweetened coconut flakes", + "sweetened condensed milk" + ] + }, + { + "id": 8260, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "avocado", + "chicken", + "bbq sauce", + "mozzarella cheese" + ] + }, + { + "id": 273, + "cuisine": "greek", + "ingredients": [ + "water", + "baby lima beans", + "salt", + "extra-virgin olive oil", + "minced garlic", + "flat leaf parsley" + ] + }, + { + "id": 2679, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "dried oregano", + "tomato paste", + "dried basil", + "onions", + "green bell pepper", + "olive oil", + "white sugar", + "chicken bouillon granules", + "crushed tomatoes", + "poultry seasoning", + "chopped garlic" + ] + }, + { + "id": 5475, + "cuisine": "thai", + "ingredients": [ + "lime", + "green onions", + "light coconut milk", + "water", + "Sriracha", + "cilantro", + "onions", + "soy sauce", + "zucchini", + "rice noodles", + "garlic cloves", + "lemongrass", + "mushrooms", + "ginger" + ] + }, + { + "id": 45638, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "tomatoes", + "balsamic vinegar", + "garlic cloves", + "zucchini", + "rolls", + "black pepper", + "chees fresh mozzarella", + "fresh basil leaves" + ] + }, + { + "id": 8172, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "cream style corn", + "enchilada sauce", + "shredded cheddar cheese", + "chili powder", + "ground cumin", + "corn mix muffin", + "cooked chicken", + "sour cream", + "milk", + "lime wedges" + ] + }, + { + "id": 39847, + "cuisine": "italian", + "ingredients": [ + "freshly ground pepper", + "sea salt", + "bay leaf", + "roast", + "garlic cloves", + "extra-virgin olive oil" + ] + }, + { + "id": 42164, + "cuisine": "southern_us", + "ingredients": [ + "ground ginger", + "water", + "sweet potatoes", + "salt", + "light brown sugar", + "eggs", + "granulated sugar", + "cinnamon", + "sweetened condensed milk", + "melted butter", + "gelatin", + "bourbon whiskey", + "grated nutmeg", + "cold water", + "pie dough", + "egg whites", + "light corn syrup" + ] + }, + { + "id": 30127, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "basil", + "fresh lemon juice", + "sun-dried tomatoes", + "extra-virgin olive oil", + "sweet onion", + "cracked black pepper", + "ground cumin", + "shallots", + "garlic" + ] + }, + { + "id": 18847, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "vegetable oil", + "cilantro leaves", + "garlic cloves", + "fresh tomatoes", + "chili powder", + "salt", + "cumin seed", + "dhal", + "garam masala", + "butter", + "rajma", + "onions", + "fenugreek", + "ginger", + "green chilies", + "ground turmeric" + ] + }, + { + "id": 8700, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "cinnamon", + "smoked paprika", + "pepper", + "salt", + "greens", + "andouille sausage", + "red wine vinegar", + "onions", + "olive oil", + "cayenne pepper" + ] + }, + { + "id": 7035, + "cuisine": "thai", + "ingredients": [ + "Skippy Creamy Peanut Butter", + "Wish-Bone Italian Dressing", + "red bell pepper, sliced", + "boneless skinless chicken breast halves", + "firmly packed brown sugar", + "chopped cilantro", + "ground ginger", + "curry powder" + ] + }, + { + "id": 15991, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "sirloin steak", + "chopped onion", + "cooking spray", + "salt", + "dried oregano", + "dried thyme", + "cilantro sprigs", + "garlic cloves", + "white vinegar", + "bay leaves", + "sauce", + "ground cumin" + ] + }, + { + "id": 10318, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "bacon drippings", + "dry bread crumbs", + "salt", + "pepper" + ] + }, + { + "id": 42269, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "milk", + "all-purpose flour", + "sugar", + "salt", + "active dry yeast" + ] + }, + { + "id": 38355, + "cuisine": "vietnamese", + "ingredients": [ + "mint", + "herbs", + "cilantro", + "banh hoi", + "black pepper", + "shallots", + "garlic", + "oil", + "light brown sugar", + "tri tip", + "butter", + "salt", + "fish sauce", + "regular soy sauce", + "dipping sauces", + "english cucumber" + ] + }, + { + "id": 27825, + "cuisine": "irish", + "ingredients": [ + "ground black pepper", + "whole milk", + "fine salt", + "unsalted butter", + "yukon gold potatoes", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 32431, + "cuisine": "italian", + "ingredients": [ + "ground pepper", + "garlic", + "coarse salt", + "fresh thyme leaves", + "kale leaves", + "cherry tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 4057, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "salt and ground black pepper", + "fusilli", + "Italian herbs", + "grated parmesan cheese", + "crushed red pepper flakes", + "olive oil", + "green onions", + "garlic", + "white wine", + "broccoli rabe", + "diced tomatoes" + ] + }, + { + "id": 5223, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "pepper", + "chicken breasts", + "cooked brown rice", + "lime", + "salsa", + "fresh tomatoes", + "corn", + "salt", + "black beans", + "olive oil", + "chopped parsley" + ] + }, + { + "id": 38264, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "baking powder", + "crème fraîche", + "large eggs", + "vanilla extract", + "peach preserves", + "unsalted butter", + "heavy cream", + "all-purpose flour", + "sugar", + "whole milk", + "salt" + ] + }, + { + "id": 31101, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "eggs", + "all-purpose flour", + "water" + ] + }, + { + "id": 18042, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "green onions", + "white rice", + "all-purpose flour", + "bay leaves", + "turkey", + "salt", + "fresh parsley", + "file powder", + "vegetable oil", + "chopped celery", + "chopped onion", + "chopped green bell pepper", + "turkey stock", + "smoked sausage", + "cayenne pepper" + ] + }, + { + "id": 24026, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "salt", + "onions", + "cumin", + "mustard", + "coriander powder", + "yams", + "jaggery", + "tamarind", + "green chilies", + "methi", + "curry leaves", + "lemon", + "oil", + "ground turmeric" + ] + }, + { + "id": 48368, + "cuisine": "korean", + "ingredients": [ + "cooked rice", + "mushrooms", + "ginger", + "olive oil", + "sesame oil", + "salt", + "pepper", + "green onions", + "garlic", + "chicken stock", + "sesame seeds", + "bacon", + "carrots" + ] + }, + { + "id": 21923, + "cuisine": "french", + "ingredients": [ + "grated Gruyère cheese", + "sauce", + "grated parmesan cheese", + "onions" + ] + }, + { + "id": 14019, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "cream cheese", + "buttermilk", + "self rising flour" + ] + }, + { + "id": 28080, + "cuisine": "brazilian", + "ingredients": [ + "bananas", + "protein powder", + "honey", + "vanilla", + "ice cubes", + "cinnamon", + "frozen blueberries", + "açai", + "almond milk" + ] + }, + { + "id": 34976, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "all-purpose flour", + "white sugar", + "eggs", + "butter", + "chopped pecans", + "flaked coconut", + "marshmallow creme", + "unsweetened cocoa powder", + "evaporated milk", + "vanilla extract", + "confectioners sugar" + ] + }, + { + "id": 31885, + "cuisine": "filipino", + "ingredients": [ + "black peppercorns", + "bay leaves", + "cold water", + "Japanese soy sauce", + "chicken thighs", + "minced garlic", + "oil", + "white vinegar", + "water", + "corn starch" + ] + }, + { + "id": 15899, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "tamarind pod", + "corn oil", + "boiling water", + "white onion", + "garlic cloves", + "coarse salt", + "plum tomatoes" + ] + }, + { + "id": 30773, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "prepared pasta sauce", + "mint", + "baby carrots", + "meatballs", + "celery", + "tomatoes", + "frozen corn" + ] + }, + { + "id": 6904, + "cuisine": "mexican", + "ingredients": [ + "orange", + "chipotle chile", + "salt", + "lime juice", + "english cucumber", + "avocado", + "purple onion" + ] + }, + { + "id": 34571, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "lime", + "vegetable oil", + "salt", + "garlic cloves", + "green bell pepper", + "whitefish fillets", + "garlic powder", + "yellow bell pepper", + "yellow onion", + "red bell pepper", + "emerils original essence", + "pickling spices", + "dried thyme", + "paprika", + "all-purpose flour", + "ground white pepper", + "sugar", + "pepper", + "onion powder", + "malt vinegar", + "cayenne pepper", + "dried oregano" + ] + }, + { + "id": 41850, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "fresh basil", + "fresh thyme leaves", + "large egg yolks", + "sugar", + "whipping cream" + ] + }, + { + "id": 38919, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "chile pepper", + "salt", + "cumin", + "chili", + "flour tortillas", + "shredded lettuce", + "enchilada sauce", + "pepper", + "Mexican cheese blend", + "condensed tomato soup", + "chopped onion", + "refried beans", + "green onions", + "garlic", + "ground beef" + ] + }, + { + "id": 38542, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "pepperoni", + "fresh mozzarella", + "parmesan cheese", + "italian seasoning", + "whole wheat pasta", + "provolone cheese" + ] + }, + { + "id": 42640, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "shredded parmesan cheese", + "marinara sauce", + "fresh mushrooms", + "fresh leav spinach", + "cream cheese", + "italian sausage", + "cheese tortellini" + ] + }, + { + "id": 42213, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "water chestnuts", + "garlic cloves", + "celery", + "soy sauce", + "salt", + "oyster sauce", + "baby bok choy", + "sesame oil", + "chow mein noodles", + "cabbage", + "ground ginger", + "olive oil", + "yellow onion", + "carrots" + ] + }, + { + "id": 49370, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "diced yellow onion", + "ground black pepper", + "beef broth", + "veal shanks", + "minced garlic", + "dry white wine", + "anchovy fillets", + "flat leaf parsley", + "tomato paste", + "flour", + "grated lemon zest", + "carrots" + ] + }, + { + "id": 43895, + "cuisine": "mexican", + "ingredients": [ + "Mexican oregano", + "ground cumin", + "pepper", + "salt", + "shoulder meat", + "bay leaves", + "garlic cloves" + ] + }, + { + "id": 45022, + "cuisine": "french", + "ingredients": [ + "pizza doughs", + "unsalted butter", + "sugar", + "grated lemon zest" + ] + }, + { + "id": 31415, + "cuisine": "filipino", + "ingredients": [ + "pig", + "cooking oil", + "garlic", + "onions", + "water", + "bay leaves", + "carrots", + "pepper", + "pork tenderloin", + "salt", + "soy sauce", + "vinegar", + "green peas", + "red bell pepper" + ] + }, + { + "id": 19277, + "cuisine": "russian", + "ingredients": [ + "shredded cabbage", + "oregano", + "mayonaise", + "salt", + "lettuce", + "butter", + "pepper", + "bread slices" + ] + }, + { + "id": 38163, + "cuisine": "mexican", + "ingredients": [ + "stock", + "tortillas", + "hot sauce", + "onions", + "pork", + "chili powder", + "sour cream", + "orange", + "cilantro", + "lard", + "cotija", + "bay leaves", + "enchilada sauce", + "cumin" + ] + }, + { + "id": 24367, + "cuisine": "irish", + "ingredients": [ + "rutabaga", + "vegetable oil", + "salt", + "fresh parsley", + "black pepper", + "diced tomatoes", + "carrots", + "red potato", + "worcestershire sauce", + "beef broth", + "leeks", + "ground pork", + "ground beef" + ] + }, + { + "id": 42109, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "shredded mozzarella cheese", + "pasta sauce", + "dry bread crumbs", + "fresh parsley", + "pepper", + "manicotti pasta", + "shredded Monterey Jack cheese", + "salt", + "sour cream" + ] + }, + { + "id": 44854, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "red wine vinegar", + "chopped onion", + "ground black pepper", + "salt", + "white sugar", + "collard greens", + "red pepper flakes", + "ham hock", + "bay leaves", + "salt pork" + ] + }, + { + "id": 42498, + "cuisine": "italian", + "ingredients": [ + "parsley flakes", + "bulk italian sausag", + "ricotta cheese", + "chopped onion", + "tomato paste", + "sugar", + "grated parmesan cheese", + "pitted olives", + "ground beef", + "fennel seeds", + "eggs", + "lasagne", + "garlic", + "shredded mozzarella cheese", + "tomatoes", + "pepper", + "basil leaves", + "salt" + ] + }, + { + "id": 10078, + "cuisine": "french", + "ingredients": [ + "brandy", + "large snails", + "garlic", + "nutmeg", + "white wine", + "unsalted butter", + "rock salt", + "snail shells", + "ground black pepper", + "cognac", + "leaf parsley", + "kosher salt", + "shallots", + "country bread" + ] + }, + { + "id": 39651, + "cuisine": "mexican", + "ingredients": [ + "cracked black pepper", + "jalapeno chilies", + "strawberries", + "lime", + "purple onion", + "cilantro" + ] + }, + { + "id": 47675, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "cracker crumbs", + "cream style corn", + "pork sausages", + "bread crumbs", + "fresh parsley", + "ground black pepper" + ] + }, + { + "id": 14451, + "cuisine": "italian", + "ingredients": [ + "feta cheese", + "crushed red pepper", + "large shrimp", + "extra-virgin olive oil", + "fresh parsley", + "grated parmesan cheese", + "garlic cloves", + "wild mushrooms", + "fresh basil", + "linguine", + "plum tomatoes" + ] + }, + { + "id": 9309, + "cuisine": "greek", + "ingredients": [ + "honey", + "fresh lemon juice", + "grated lemon zest", + "water" + ] + }, + { + "id": 32554, + "cuisine": "thai", + "ingredients": [ + "lime", + "purple onion", + "fish sauce", + "cilantro", + "cucumber", + "chili powder", + "oil", + "sugar", + "salted roast peanuts" + ] + }, + { + "id": 29958, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "sun-dried tomatoes in oil", + "garlic cloves", + "dijon mustard", + "fresh basil leaves", + "lemon juice" + ] + }, + { + "id": 16246, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "broccoli", + "sea salt", + "pecorino romano cheese", + "ground black pepper", + "crushed red pepper" + ] + }, + { + "id": 20395, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "tumeric", + "haddock fillets", + "garam masala", + "pepper", + "salt" + ] + }, + { + "id": 35254, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "mango", + "lime juice", + "hot sauce", + "cotija", + "pineapple", + "jicama", + "orange juice" + ] + }, + { + "id": 24297, + "cuisine": "mexican", + "ingredients": [ + "water", + "red wine vinegar", + "sour cream", + "ground cumin", + "chili powder", + "beef broth", + "onions", + "chuck roast", + "all-purpose flour", + "corn tortillas", + "chile pepper", + "oil", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 43485, + "cuisine": "italian", + "ingredients": [ + "swordfish steaks", + "raisins", + "sliced almonds", + "roasted red peppers", + "salt", + "pitted kalamata olives", + "ground black pepper", + "fresh orange juice", + "minced garlic", + "cooking spray" + ] + }, + { + "id": 44411, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "crumbled blue cheese", + "vinaigrette", + "minced garlic", + "portabello mushroom", + "bread ciabatta", + "cooking spray", + "fresh basil leaves", + "tomatoes", + "dijon mustard", + "garlic" + ] + }, + { + "id": 24875, + "cuisine": "mexican", + "ingredients": [ + "low-fat sour cream", + "lime", + "green onions", + "chickpeas", + "celery", + "cabbage", + "white pepper", + "radishes", + "garlic", + "peanut oil", + "oregano", + "chicken bouillon", + "white hominy", + "boneless skinless chicken breasts", + "rice", + "onions", + "avocado", + "fresh cilantro", + "yellow hominy", + "salt", + "corn tortillas", + "cumin" + ] + }, + { + "id": 3722, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "large eggs", + "1% low-fat milk", + "fresh parmesan cheese", + "ground red pepper", + "all-purpose flour", + "english muffins, split and toasted", + "cooking spray", + "salt", + "ground black pepper", + "paprika" + ] + }, + { + "id": 18266, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "garlic", + "cinnamon sticks", + "white vinegar", + "chile pepper", + "boneless pork loin", + "boiling water", + "fresh ginger root", + "salt", + "onions", + "clove", + "vegetable oil", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 27781, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "vegetable stock", + "ground coriander", + "boiling water", + "neutral oil", + "ground pepper", + "garlic", + "bird chile", + "saffron", + "red kidney beans", + "amchur", + "ginger", + "hot water", + "basmati rice", + "crushed tomatoes", + "garam masala", + "salt", + "onions", + "ground cumin" + ] + }, + { + "id": 49095, + "cuisine": "spanish", + "ingredients": [ + "canned low sodium chicken broth", + "garden peas", + "pimentos", + "seafood", + "curry powder", + "salt", + "mussels", + "converted rice" + ] + }, + { + "id": 10579, + "cuisine": "vietnamese", + "ingredients": [ + "chicken sausage", + "rice vinegar", + "fat-free mayonnaise", + "sugar", + "salt", + "carrots", + "spring roll skins", + "cilantro leaves", + "cucumber", + "daikon", + "hot chili sauce" + ] + }, + { + "id": 35493, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "white miso", + "rice vinegar", + "water", + "green onions", + "soy sauce", + "mirin", + "toasted sesame seeds", + "hot mustard", + "olive oil", + "sea bass fillets" + ] + }, + { + "id": 20204, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "lean ground beef", + "bread dough", + "water", + "taco seasoning", + "tomato sauce", + "salsa", + "olives", + "green onions", + "Mexican cheese" + ] + }, + { + "id": 30374, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "vegetable stock", + "whole peeled tomatoes", + "olive oil", + "garlic cloves", + "white bread", + "basil leaves" + ] + }, + { + "id": 17479, + "cuisine": "southern_us", + "ingredients": [ + "orange juice", + "ground cloves", + "grated orange", + "honey", + "juice" + ] + }, + { + "id": 42147, + "cuisine": "french", + "ingredients": [ + "olive oil", + "cracked black pepper", + "tomato paste", + "pork tenderloin", + "salt", + "dijon mustard", + "dry red wine", + "fat free less sodium chicken broth", + "cooking spray" + ] + }, + { + "id": 31898, + "cuisine": "indian", + "ingredients": [ + "sugar", + "curds", + "rose water", + "saffron", + "water", + "ground cardamom", + "cold water", + "whole milk" + ] + }, + { + "id": 18695, + "cuisine": "chinese", + "ingredients": [ + "shredded coleslaw mix", + "garlic cloves", + "egg roll wrappers", + "fresh ginger", + "pork sausages", + "vegetable oil" + ] + }, + { + "id": 29841, + "cuisine": "mexican", + "ingredients": [ + "Pace Picante Sauce", + "ground beef", + "corn tortillas", + "cheese" + ] + }, + { + "id": 38010, + "cuisine": "russian", + "ingredients": [ + "kosher salt", + "unsalted butter", + "shallots", + "garlic", + "beef tenderloin steaks", + "fresh dill", + "sherry vinegar", + "large eggs", + "grapeseed oil", + "all-purpose flour", + "olive oil", + "truffle oil", + "fresh thyme leaves", + "crème fraîche", + "sugar", + "ground black pepper", + "beef stock", + "portabello mushroom", + "sour cream" + ] + }, + { + "id": 47340, + "cuisine": "italian", + "ingredients": [ + "hazelnuts", + "salt", + "sugar", + "egg whites", + "bittersweet chocolate", + "water", + "confectioners sugar", + "milk chocolate", + "heavy cream" + ] + }, + { + "id": 38097, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper flakes", + "onions", + "fettucine", + "grated parmesan cheese", + "sauce", + "chicken broth", + "ground black pepper", + "garlic", + "kosher salt", + "baby spinach", + "medium shrimp" + ] + }, + { + "id": 28781, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "leeks", + "elbow macaroni", + "kidney beans", + "creole seasoning", + "celery", + "water", + "dry red wine", + "carrots", + "zucchini", + "garlic cloves" + ] + }, + { + "id": 46826, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "onions", + "cooked rice", + "hot sauce", + "tomatoes", + "kielbasa", + "orange bell pepper", + "green pepper" + ] + }, + { + "id": 7542, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "green olives", + "olive oil", + "bay leaves", + "fresh lemon juice", + "ground cumin", + "ground ginger", + "figs", + "unsalted butter", + "garlic", + "chopped cilantro", + "chicken stock", + "preserved lemon", + "ground black pepper", + "paprika", + "couscous", + "ground cinnamon", + "kosher salt", + "dried apricot", + "yellow onion", + "chicken" + ] + }, + { + "id": 49580, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "avocado oil", + "fresh lime juice", + "frozen whole kernel corn", + "tortilla chips", + "ground cumin", + "fresh cilantro", + "salt", + "chipotles in adobo", + "avocado", + "tomatoes with juice", + "garlic cloves" + ] + }, + { + "id": 7941, + "cuisine": "indian", + "ingredients": [ + "curry", + "chicken thighs", + "coconut milk", + "salsa", + "onions" + ] + }, + { + "id": 13184, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "vegetable oil", + "ground allspice", + "onions", + "dried thyme", + "chopped celery", + "red bell pepper", + "dried oregano", + "green bell pepper", + "whole peeled tomatoes", + "hot sauce", + "medium shrimp", + "chicken", + "dried basil", + "coarse salt", + "garlic cloves", + "long grain white rice" + ] + }, + { + "id": 35304, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "minced garlic", + "green onions", + "all-purpose flour", + "red bell pepper", + "crawfish", + "bay leaves", + "chopped celery", + "creole seasoning", + "tomato sauce", + "chopped green bell pepper", + "butter", + "hot sauce", + "fresh parsley", + "crab", + "sherry", + "diced tomatoes", + "yellow onion" + ] + }, + { + "id": 3083, + "cuisine": "italian", + "ingredients": [ + "eggs", + "prepared pasta sauce", + "shredded mozzarella cheese", + "small curd cottage cheese", + "salt", + "green onions", + "fresh mushrooms", + "black pepper", + "lean ground beef", + "fresh parsley" + ] + }, + { + "id": 42860, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "sesame oil", + "shrimp", + "large eggs", + "all-purpose flour", + "cabbage", + "Sriracha", + "sea salt", + "toasted sesame seeds", + "mayonaise", + "bonito flakes", + "scallions", + "canola oil" + ] + }, + { + "id": 13393, + "cuisine": "mexican", + "ingredients": [ + "cherry tomatoes", + "onions", + "hellmann' or best food real mayonnais", + "jalapeno chilies", + "chopped cilantro fresh", + "lime juice", + "corn-on-the-cob" + ] + }, + { + "id": 29269, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "red enchilada sauce", + "white onion", + "lean ground beef", + "chopped cilantro fresh", + "black beans", + "large flour tortillas", + "shredded cheese", + "pepper", + "salt" + ] + }, + { + "id": 10715, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "yellow onion", + "diced tomatoes", + "chuck roast", + "ground cumin", + "chili seasoning mix", + "dried pinto beans" + ] + }, + { + "id": 42352, + "cuisine": "vietnamese", + "ingredients": [ + "roast", + "sweetened condensed milk" + ] + }, + { + "id": 21167, + "cuisine": "southern_us", + "ingredients": [ + "worcestershire sauce", + "large eggs", + "garlic cloves", + "butter", + "grits", + "green chile", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 19027, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "extra-virgin olive oil", + "red wine vinegar", + "small white beans", + "heavy cream", + "white sandwich bread", + "fresh thyme", + "garlic cloves" + ] + }, + { + "id": 18783, + "cuisine": "french", + "ingredients": [ + "shallots", + "salt", + "plain whole-milk yogurt", + "sea scallops", + "vegetable stock", + "garlic cloves", + "saffron threads", + "vegetable oil", + "freshly ground pepper", + "fennel bulb", + "extra-virgin olive oil", + "thyme" + ] + }, + { + "id": 45259, + "cuisine": "chinese", + "ingredients": [ + "red pepper flakes", + "garlic cloves", + "bok choy", + "fresh ginger", + "dark sesame oil", + "Chinese egg noodles", + "chicken broth", + "salt", + "oyster sauce", + "green onions", + "peanut oil", + "carrots" + ] + }, + { + "id": 18602, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "vanilla extract", + "confectioners sugar", + "mini marshmallows", + "all-purpose flour", + "unsweetened cocoa powder", + "milk", + "salt", + "white sugar", + "butter", + "chopped pecans" + ] + }, + { + "id": 2861, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "rice", + "pepper", + "all-purpose flour", + "onions", + "sugar", + "salt", + "okra", + "peeled tomatoes", + "green pepper", + "boiling water" + ] + }, + { + "id": 23392, + "cuisine": "moroccan", + "ingredients": [ + "spinach", + "black olives", + "lemon juice", + "finely chopped fresh parsley", + "grated lemon zest", + "olive oil", + "salt", + "chopped cilantro fresh", + "ground red pepper", + "garlic cloves" + ] + }, + { + "id": 13884, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "parmigiano reggiano cheese", + "arborio rice", + "fennel bulb", + "extra-virgin olive oil", + "saffron threads", + "unsalted butter", + "dry white wine", + "chicken stock", + "finely chopped onion" + ] + }, + { + "id": 28609, + "cuisine": "indian", + "ingredients": [ + "pepper", + "chicken breasts", + "salt", + "garlic cloves", + "garam masala", + "cilantro", + "cayenne pepper", + "ground cumin", + "lime", + "chili powder", + "yellow onion", + "naan", + "tomato sauce", + "nonfat greek yogurt", + "ginger", + "rice" + ] + }, + { + "id": 43326, + "cuisine": "cajun_creole", + "ingredients": [ + "cayenne", + "garlic", + "celery", + "dried oregano", + "canned low sodium chicken broth", + "paprika", + "scallions", + "medium shrimp", + "green bell pepper", + "cooking oil", + "salt", + "bay leaf", + "ground black pepper", + "ground pork", + "long-grain rice", + "onions" + ] + }, + { + "id": 3441, + "cuisine": "british", + "ingredients": [ + "granny smith apples", + "lemon zest", + "ground allspice", + "dried currants", + "suet", + "golden raisins", + "fresh lemon juice", + "ground nutmeg", + "large eggs", + "dark brown sugar", + "brandy", + "granulated sugar", + "raisins", + "orange zest" + ] + }, + { + "id": 42863, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "sweet potatoes", + "black pepper", + "salt", + "low-fat buttermilk", + "thyme sprigs", + "marsala wine", + "butter" + ] + }, + { + "id": 36080, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime", + "vegetable oil", + "mixed greens", + "kosher salt", + "ground black pepper", + "english cucumber", + "fresh mint", + "sugar", + "thai basil", + "thai chile", + "carrots", + "fresh cilantro", + "flank steak", + "scallions", + "fresh lime juice" + ] + }, + { + "id": 44258, + "cuisine": "russian", + "ingredients": [ + "BACARDI® Mixers Margarita Mix", + "blueberries", + "BACARDI® Superior", + "orange juice" + ] + }, + { + "id": 12293, + "cuisine": "southern_us", + "ingredients": [ + "chicken breasts", + "pepper", + "dry bread crumbs", + "vegetable oil", + "large eggs", + "self-rising cornmeal" + ] + }, + { + "id": 46481, + "cuisine": "mexican", + "ingredients": [ + "cheese", + "pinto beans", + "frozen corn", + "cumin", + "salt", + "ground beef", + "cooked rice", + "enchilada sauce" + ] + }, + { + "id": 11506, + "cuisine": "spanish", + "ingredients": [ + "fava beans", + "spanish chorizo", + "onions", + "bacon", + "blood sausage", + "saffron", + "extra-virgin olive oil", + "smoked paprika", + "water", + "garlic cloves", + "smoked ham hocks" + ] + }, + { + "id": 40213, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "fennel bulb", + "cilantro", + "toasted slivered almonds", + "salad", + "ground pepper", + "sea salt", + "fresh lemon juice", + "water", + "golden raisins", + "garlic", + "fresh parsley", + "ground cinnamon", + "quinoa", + "paprika", + "carrots" + ] + }, + { + "id": 12784, + "cuisine": "italian", + "ingredients": [ + "capers", + "large eggs", + "olive oil", + "all-purpose flour", + "milk", + "fresh mozzarella", + "unsalted butter", + "white sandwich bread" + ] + }, + { + "id": 11280, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "shredded cheddar cheese", + "chili powder", + "sour cream", + "black beans", + "olive oil", + "cilantro leaves", + "ground cumin", + "tomatoes", + "lime", + "white wine vinegar", + "iceberg lettuce", + "kosher salt", + "green onions", + "yellow rice" + ] + }, + { + "id": 44124, + "cuisine": "southern_us", + "ingredients": [ + "bay leaves", + "salt", + "thyme", + "chicken", + "buttermilk", + "hot sauce", + "sage", + "lemon", + "all-purpose flour", + "fleur de sel", + "rosemary", + "garlic", + "cayenne pepper", + "canola oil" + ] + }, + { + "id": 30408, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "potatoes", + "butter", + "ground coriander", + "frozen peas", + "frozen chopped spinach", + "ground black pepper", + "chile pepper", + "salt", + "mustard seeds", + "ground turmeric", + "milk", + "chili powder", + "garlic", + "cumin seed", + "chopped cilantro fresh", + "green bell pepper", + "baked beans", + "vegetable oil", + "frozen corn", + "onions" + ] + }, + { + "id": 39514, + "cuisine": "italian", + "ingredients": [ + "freshly ground pepper", + "kosher salt", + "pork", + "olive oil" + ] + }, + { + "id": 12410, + "cuisine": "irish", + "ingredients": [ + "leeks", + "salt", + "red potato", + "bacon", + "green cabbage", + "whole milk", + "mace", + "garlic" + ] + }, + { + "id": 4782, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "potatoes", + "chopped onion", + "water", + "bacon", + "chicken bouillon", + "heavy cream", + "kale", + "garlic" + ] + }, + { + "id": 8508, + "cuisine": "french", + "ingredients": [ + "eggs", + "paprika", + "english muffins, split and toasted", + "hollandaise sauce", + "asparagus spears", + "shredded swiss cheese" + ] + }, + { + "id": 43421, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "balsamic vinegar", + "red bell pepper", + "zucchini", + "crushed red pepper", + "baguette", + "extra-virgin olive oil", + "ground cumin", + "cooking spray", + "salt" + ] + }, + { + "id": 5935, + "cuisine": "mexican", + "ingredients": [ + "water", + "cooking spray", + "lemon rind", + "large eggs", + "salt", + "sweetened condensed milk", + "large egg whites", + "vanilla extract", + "nonfat evaporated milk", + "sugar", + "half & half", + "all-purpose flour" + ] + }, + { + "id": 3168, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "purple onion", + "plum tomatoes", + "kosher salt", + "cooking spray", + "red bell pepper", + "green bell pepper", + "zucchini", + "garlic cloves", + "eggplant", + "extra-virgin olive oil", + "herbes de provence" + ] + }, + { + "id": 10748, + "cuisine": "italian", + "ingredients": [ + "water", + "garlic", + "tomatoes", + "zucchini", + "sliced mushrooms", + "eggplant", + "salt", + "pepper", + "grated parmesan cheese", + "italian seasoning" + ] + }, + { + "id": 4524, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "chili powder", + "ground beef", + "white onion", + "flour tortillas", + "enchilada sauce", + "green bell pepper", + "ground pepper", + "salt", + "ground cumin", + "refried beans", + "colby jack cheese", + "rotel tomatoes" + ] + }, + { + "id": 20761, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garbanzo beans", + "firm tofu", + "pepper", + "garlic", + "canola oil", + "water", + "salt", + "green bell pepper", + "garam masala", + "onions" + ] + }, + { + "id": 38631, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "large eggs", + "vanilla extract", + "molasses", + "butter", + "dark brown sugar", + "ground cloves", + "baking powder", + "all-purpose flour", + "ground ginger", + "milk", + "raisins" + ] + }, + { + "id": 408, + "cuisine": "italian", + "ingredients": [ + "whole milk ricotta cheese", + "sugar", + "orange zest", + "vanilla", + "mini chocolate chips" + ] + }, + { + "id": 6621, + "cuisine": "filipino", + "ingredients": [ + "bananas", + "crushed ice", + "shredded coconut", + "honeydew melon", + "vanilla ice cream", + "cantaloupe", + "Jell-O Gelatin Dessert", + "papaya", + "tapioca" + ] + }, + { + "id": 13321, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "cinnamon sticks", + "black peppercorns", + "cumin seed", + "cardamom seeds", + "whole cloves", + "whole nutmegs" + ] + }, + { + "id": 37567, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "raw sugar", + "ground cinnamon", + "large free range egg", + "plain flour", + "unsalted butter", + "vanilla essence", + "baking powder" + ] + }, + { + "id": 13196, + "cuisine": "korean", + "ingredients": [ + "rib eye steaks", + "minced garlic", + "yellow onion", + "low sodium soy sauce", + "mirin", + "carrots", + "brown sugar", + "green onions", + "onions", + "pepper", + "sesame oil" + ] + }, + { + "id": 26454, + "cuisine": "southern_us", + "ingredients": [ + "large egg yolks", + "banana liqueur", + "corn starch", + "sugar", + "whole milk", + "vanilla wafers", + "ground cinnamon", + "unsalted butter", + "salt", + "bananas", + "vanilla extract" + ] + }, + { + "id": 13198, + "cuisine": "irish", + "ingredients": [ + "croissants", + "softened butter", + "eggs", + "caster", + "ground cinnamon", + "raisins", + "milk", + "heavy cream" + ] + }, + { + "id": 5263, + "cuisine": "british", + "ingredients": [ + "black pepper", + "fresh mushrooms", + "paprika", + "sour cream", + "mashed potatoes", + "salt", + "onions", + "butter", + "lemon juice" + ] + }, + { + "id": 14561, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "freshly ground pepper", + "whole milk", + "canola oil", + "large eggs", + "swiss steak", + "all-purpose flour" + ] + }, + { + "id": 47212, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "baking powder", + "corn starch", + "cold water", + "flour", + "salt", + "prawns", + "shoyu", + "dashi", + "sweet potatoes", + "oil" + ] + }, + { + "id": 31111, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "bacon", + "chicken broth", + "stick butter", + "finely chopped onion", + "chopped celery", + "large eggs", + "sage" + ] + }, + { + "id": 32017, + "cuisine": "cajun_creole", + "ingredients": [ + "bacon drippings", + "parmesan cheese", + "garlic cloves", + "cooked ham", + "green onions", + "mirlitons", + "minced onion", + "shrimp", + "bread crumbs", + "creole seasoning" + ] + }, + { + "id": 49085, + "cuisine": "filipino", + "ingredients": [ + "tomatoes", + "roma tomatoes", + "onions", + "pepper", + "salt", + "fish sauce", + "garlic", + "noodles", + "water", + "oil" + ] + }, + { + "id": 22721, + "cuisine": "chinese", + "ingredients": [ + "chicken breast fillets", + "sesame seeds", + "sesame oil", + "garlic", + "oil", + "water", + "mushrooms", + "red wine vinegar", + "scallions", + "salad dressing", + "tofu", + "light soy sauce", + "shallots", + "ginger", + "mixed greens", + "brown sugar", + "shredded carrots", + "wonton wrappers", + "rice vinegar", + "cucumber" + ] + }, + { + "id": 43602, + "cuisine": "greek", + "ingredients": [ + "water", + "orzo", + "fresh oregano", + "seasoned bread crumbs", + "large eggs", + "extra-virgin olive oil", + "fresh parsley", + "minced onion", + "grated carrot", + "garlic cloves", + "pepper", + "cooking spray", + "salt", + "ground lamb" + ] + }, + { + "id": 25341, + "cuisine": "russian", + "ingredients": [ + "evaporated milk", + "sour cream", + "cooked ham", + "lasagna noodles", + "cottage cheese", + "salt", + "eggs", + "ground black pepper" + ] + }, + { + "id": 13375, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "spicy brown mustard", + "ground pepper", + "milk", + "old bay seasoning", + "celery ribs", + "large eggs" + ] + }, + { + "id": 38198, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "salt", + "firmly packed light brown sugar", + "bourbon whiskey", + "pork baby back ribs", + "prepared horseradish", + "pepper", + "hot sauce" + ] + }, + { + "id": 10681, + "cuisine": "southern_us", + "ingredients": [ + "oats", + "ground nutmeg", + "lemon juice", + "firmly packed brown sugar", + "baking mix", + "ground cinnamon", + "all-purpose flour", + "frozen blueberries", + "light butter", + "granulated sugar", + "toasted almonds" + ] + }, + { + "id": 5607, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "garlic powder", + "cayenne pepper", + "dried minced onion", + "water", + "chives", + "long-grain rice", + "pepper", + "beef bouillon granules", + "green pepper", + "celery flakes", + "parsley flakes", + "dried thyme", + "smoked sausage", + "shrimp" + ] + }, + { + "id": 5867, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "ground black pepper", + "ground cumin", + "sugar", + "cayenne pepper", + "ground cinnamon", + "paprika", + "saffron threads", + "kosher salt", + "ground coriander" + ] + }, + { + "id": 47391, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "tortilla chips", + "shredded lettuce", + "ripe olives", + "pork", + "salsa", + "sliced green onions", + "Mexican cheese blend", + "sour cream" + ] + }, + { + "id": 29681, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "salt", + "sugar", + "raisins", + "mango", + "white vinegar", + "red pepper", + "onions", + "water", + "garlic" + ] + }, + { + "id": 15120, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "hass avocado", + "chips", + "freshly ground pepper", + "mango", + "chile pepper", + "fresh lime juice", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 5198, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "mushrooms", + "dry bread crumbs", + "large eggs", + "butter", + "dried oregano", + "minced onion", + "prepared pasta sauce", + "lean beef", + "french bread", + "garlic" + ] + }, + { + "id": 10620, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "pie shell", + "onions", + "cheese", + "sour cream", + "tomatoes", + "taco seasoning", + "salsa", + "ground beef" + ] + }, + { + "id": 11044, + "cuisine": "italian", + "ingredients": [ + "salami", + "crackers", + "pitted kalamata olives", + "goat cheese", + "breadstick", + "pickled okra", + "roasted red peppers", + "fresh parsley" + ] + }, + { + "id": 29145, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "fennel bulb", + "pecorino romano cheese", + "fronds", + "dry white wine", + "salt", + "fat free less sodium chicken broth", + "leeks", + "orzo", + "ground black pepper", + "butter" + ] + }, + { + "id": 15266, + "cuisine": "southern_us", + "ingredients": [ + "green tomatoes", + "cornmeal", + "pepper", + "oil", + "eggs", + "salt", + "paprika" + ] + }, + { + "id": 37557, + "cuisine": "chinese", + "ingredients": [ + "lo mein noodles", + "red pepper flakes", + "onions", + "chicken broth", + "chicken breasts", + "oyster sauce", + "canola oil", + "bell pepper", + "garlic", + "snow peas", + "low sodium soy sauce", + "sesame oil", + "sliced mushrooms" + ] + }, + { + "id": 29826, + "cuisine": "brazilian", + "ingredients": [ + "ground black pepper", + "salt", + "crushed tomatoes", + "jalapeno chilies", + "onions", + "unsweetened coconut milk", + "cooking oil", + "chopped cilantro", + "fresh ginger", + "garlic", + "chicken" + ] + }, + { + "id": 9521, + "cuisine": "southern_us", + "ingredients": [ + "bay leaves", + "butter", + "hot sauce", + "black peppercorns", + "clam juice", + "worcestershire sauce", + "large shrimp", + "french baguette", + "cajun seasoning", + "garlic", + "canola oil", + "apple cider vinegar", + "lemon", + "beer" + ] + }, + { + "id": 24869, + "cuisine": "chinese", + "ingredients": [ + "bell pepper", + "garlic", + "water", + "szechwan peppercorns", + "corn starch", + "red chili peppers", + "Shaoxing wine", + "salt", + "light soy sauce", + "ginger", + "chicken thighs" + ] + }, + { + "id": 1575, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "corn", + "lime", + "melted butter", + "grated cotija" + ] + }, + { + "id": 46667, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "fresh ginger", + "chili powder", + "peanut oil", + "ground beef", + "fresh cilantro", + "bean paste", + "hot bean paste", + "oyster sauce", + "silken tofu", + "leeks", + "szechwan peppercorns", + "scallions", + "chicken stock", + "light soy sauce", + "rice wine", + "garlic", + "corn starch" + ] + }, + { + "id": 30076, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "leeks", + "thick-cut bacon", + "unsalted butter", + "pappardelle", + "grated parmesan cheese", + "heavy cream", + "olive oil", + "chopped fresh thyme" + ] + }, + { + "id": 38633, + "cuisine": "italian", + "ingredients": [ + "cold water", + "ground black pepper", + "carrots", + "pancetta", + "fresh rosemary", + "extra-virgin olive oil", + "boiling potatoes", + "tomatoes", + "ditalini", + "onions", + "celery ribs", + "cranberry beans", + "fine sea salt" + ] + }, + { + "id": 23172, + "cuisine": "british", + "ingredients": [ + "port wine", + "milk", + "butter", + "all-purpose flour", + "pepper", + "grated parmesan cheese", + "garlic", + "frozen peas", + "water", + "baking powder", + "salt", + "ground lamb", + "brandy", + "self rising flour", + "worcestershire sauce", + "onions" + ] + }, + { + "id": 43546, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed light brown sugar", + "sweet potatoes", + "salt", + "pumpkin pie spice", + "granulated sugar", + "buttermilk", + "chopped pecans", + "baking soda", + "butter", + "all-purpose flour", + "large eggs", + "vanilla extract", + "sorghum syrup" + ] + }, + { + "id": 26928, + "cuisine": "italian", + "ingredients": [ + "spinach", + "center cut bacon", + "ground black pepper", + "chopped onion", + "kosher salt", + "diced tomatoes", + "fresh rosemary", + "cannellini beans", + "roasting chickens" + ] + }, + { + "id": 9594, + "cuisine": "chinese", + "ingredients": [ + "top sirloin steak", + "soy sauce", + "oyster sauce", + "sugar", + "peanut oil", + "broccoli florets" + ] + }, + { + "id": 38788, + "cuisine": "mexican", + "ingredients": [ + "california chile", + "chicken breasts", + "sour cream", + "corn husks", + "salt", + "onions", + "water", + "garlic", + "lard", + "baking powder", + "beef broth", + "masa harina" + ] + }, + { + "id": 37229, + "cuisine": "mexican", + "ingredients": [ + "tequila", + "lime", + "ice cubes", + "white sugar", + "lemon" + ] + }, + { + "id": 6365, + "cuisine": "italian", + "ingredients": [ + "fine sea salt", + "fleur de sel", + "dressing", + "zucchini" + ] + }, + { + "id": 33671, + "cuisine": "jamaican", + "ingredients": [ + "ground cloves", + "bell pepper", + "chile pepper", + "ginger", + "fenugreek seeds", + "coconut milk", + "onions", + "ground cumin", + "curry powder", + "cilantro stems", + "lime wedges", + "cilantro leaves", + "garlic cloves", + "curry paste", + "ground turmeric", + "pepper", + "sweet potatoes", + "fresh thyme leaves", + "salt", + "ground allspice", + "fresh lime juice", + "basmati rice", + "brown sugar", + "annatto seeds", + "brown mustard seeds", + "vegetable oil", + "hot sauce", + "ground cardamom", + "roasted tomatoes", + "chuck" + ] + }, + { + "id": 4022, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "oysters", + "ground red pepper", + "fresh oregano", + "shrimp", + "tomato paste", + "crawfish", + "fresh thyme", + "salt", + "garlic cloves", + "chicken broth", + "pepper", + "bay leaves", + "all-purpose flour", + "sausages", + "lump crab meat", + "chopped green bell pepper", + "chopped celery", + "okra", + "onions" + ] + }, + { + "id": 14028, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "apples", + "chiles", + "tomatillos", + "ground black pepper", + "garlic cloves", + "olive oil", + "salt" + ] + }, + { + "id": 40591, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "yellow mustard", + "onions", + "barbecue sauce", + "bacon", + "egg roll wrappers", + "worcestershire sauce", + "cheddar cheese", + "lean ground beef", + "oil" + ] + }, + { + "id": 43179, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "butter", + "apple butter", + "pie crust", + "pumpkin purée", + "all-purpose flour", + "ground nutmeg", + "salt", + "chopped pecans", + "evaporated milk", + "beaten eggs", + "dark brown sugar" + ] + }, + { + "id": 11135, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "brandy", + "light molasses", + "baking powder", + "grated orange peel", + "vegetable oil spray", + "large eggs", + "all-purpose flour", + "ground ginger", + "sugar", + "baking soda", + "orange marmalade", + "powdered sugar", + "ground cloves", + "unsalted butter", + "salt" + ] + }, + { + "id": 2064, + "cuisine": "thai", + "ingredients": [ + "lime", + "ground black pepper", + "fine sea salt", + "chicken", + "five spice", + "olive oil", + "chicken breasts", + "greek style plain yogurt", + "honey", + "Sriracha", + "fresh chili", + "mayonaise", + "sesame seeds", + "lemon", + "cayenne pepper" + ] + }, + { + "id": 15133, + "cuisine": "french", + "ingredients": [ + "large eggs", + "carrots", + "ground cinnamon", + "butter", + "baking powder", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 10372, + "cuisine": "cajun_creole", + "ingredients": [ + "granulated garlic", + "butter", + "beef", + "rice", + "seasoning", + "boneless chicken breast", + "rotel tomatoes", + "french onion soup", + "smoked sausage" + ] + }, + { + "id": 25995, + "cuisine": "filipino", + "ingredients": [ + "flour", + "fish balls", + "soy sauce", + "garlic", + "corn starch", + "brown sugar", + "shallots", + "oil", + "water", + "salt" + ] + }, + { + "id": 4163, + "cuisine": "southern_us", + "ingredients": [ + "fresh sage", + "flour", + "salt", + "baking soda", + "butter", + "chicken bouillon granules", + "fresh thyme", + "buttermilk", + "milk", + "baking powder", + "sausages" + ] + }, + { + "id": 32632, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "leeks", + "garlic", + "medium firm tofu", + "soy sauce", + "ground sichuan pepper", + "peanut oil", + "fermented black beans", + "sugar", + "sesame oil", + "chili bean paste", + "corn starch", + "chicken stock", + "minced ginger", + "ground pork", + "scallions" + ] + }, + { + "id": 14662, + "cuisine": "italian", + "ingredients": [ + "Margherita Pepperoni", + "water", + "celery", + "soft-shell clams", + "pepper", + "liquid" + ] + }, + { + "id": 31127, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "lemon", + "onions", + "water", + "all-purpose flour", + "pepper", + "salt", + "chicken", + "dried thyme", + "bay leaf" + ] + }, + { + "id": 35569, + "cuisine": "mexican", + "ingredients": [ + "water", + "ground cumin", + "tomatoes", + "salt", + "vidalia onion", + "garlic cloves", + "jalapeno chilies" + ] + }, + { + "id": 17159, + "cuisine": "chinese", + "ingredients": [ + "garlic", + "soy sauce", + "oyster sauce", + "oil", + "fresh green bean", + "white sugar" + ] + }, + { + "id": 17316, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "chopped fresh thyme", + "olive oil", + "polenta", + "fresh chevre" + ] + }, + { + "id": 17359, + "cuisine": "southern_us", + "ingredients": [ + "grape tomatoes", + "Sriracha", + "heavy cream", + "onion tops", + "pepper", + "butter", + "garlic", + "grits", + "white onion", + "grated parmesan cheese", + "bacon", + "sharp cheddar cheese", + "water", + "lemon", + "salt", + "large shrimp" + ] + }, + { + "id": 27390, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "hoisin sauce", + "rotisserie chicken", + "minced ginger", + "red pepper flakes", + "beansprouts", + "water", + "green onions", + "carrots", + "spinach", + "peanuts", + "cilantro" + ] + }, + { + "id": 45053, + "cuisine": "greek", + "ingredients": [ + "luke warm water", + "salt", + "active dry yeast", + "strong white bread flour", + "olive oil" + ] + }, + { + "id": 12679, + "cuisine": "chinese", + "ingredients": [ + "tomatoes", + "water", + "green onions", + "tamarind paste", + "sweet basil", + "sugar", + "fresh ginger", + "sesame oil", + "garlic cloves", + "fresh mint", + "fish sauce", + "lime", + "shallots", + "peanut oil", + "shrimp", + "kosher salt", + "low sodium chicken broth", + "thai chile", + "Chinese egg noodles" + ] + }, + { + "id": 32453, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "ground black pepper", + "diced celery", + "ground cumin", + "water", + "chili powder", + "dried oregano", + "minced garlic", + "minced onion", + "carrots", + "green bell pepper", + "olive oil", + "vegetable broth", + "sliced green onions" + ] + }, + { + "id": 26771, + "cuisine": "brazilian", + "ingredients": [ + "dried black beans", + "bacon slices", + "pork shoulder boston butt", + "white vinegar", + "ground black pepper", + "beef rib short", + "lower sodium chicken broth", + "finely chopped onion", + "garlic cloves", + "orange slices", + "salt", + "smoked ham hocks" + ] + }, + { + "id": 3485, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "flaked coconut", + "ground cinnamon", + "large eggs", + "skim milk", + "vanilla extract", + "solid pack pumpkin", + "egg whites" + ] + }, + { + "id": 594, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chees fresh mozzarella", + "warm water", + "cooking spray", + "bread flour", + "kosher salt", + "pizza sauce", + "yellow corn meal", + "dry yeast", + "fresh basil leaves" + ] + }, + { + "id": 10288, + "cuisine": "korean", + "ingredients": [ + "sugar", + "chives", + "garlic", + "sesame seeds", + "red pepper flakes", + "radishes", + "ginger", + "kosher salt", + "pickling cucumbers" + ] + }, + { + "id": 44975, + "cuisine": "mexican", + "ingredients": [ + "minced onion", + "chopped cilantro", + "coarse salt", + "jalapeno chilies", + "plum tomatoes", + "avocado", + "fresh lime juice" + ] + }, + { + "id": 37879, + "cuisine": "italian", + "ingredients": [ + "shredded cheddar cheese", + "pepperoni", + "pork sausages", + "eggs", + "grated parmesan cheese", + "dried minced onion", + "msg", + "rolls", + "dried parsley", + "garlic powder", + "shredded mozzarella cheese", + "dried oregano" + ] + }, + { + "id": 41695, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "basil pesto sauce", + "ground pepper", + "parsley", + "garlic cloves", + "lemon thyme", + "olive oil", + "wheels", + "garlic", + "thyme leaves", + "saffron threads", + "homemade chicken stock", + "chopped tomatoes", + "cannellini beans", + "yellow onion", + "tomatoes", + "kosher salt", + "fennel", + "frozen green beans", + "carrots" + ] + }, + { + "id": 31442, + "cuisine": "indian", + "ingredients": [ + "worcestershire sauce", + "ground cumin", + "dijon mustard", + "chicken pieces", + "ground ginger", + "garlic", + "chili powder", + "ground turmeric" + ] + }, + { + "id": 42039, + "cuisine": "greek", + "ingredients": [ + "red wine vinegar", + "cucumber", + "radishes", + "purple onion", + "whole wheat pita bread", + "chopped green bell pepper", + "feta cheese crumbles", + "plum tomatoes", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 13264, + "cuisine": "moroccan", + "ingredients": [ + "chicken stock", + "pepper", + "extra-virgin olive oil", + "chicken pieces", + "preserved lemon", + "pitted green olives", + "cayenne pepper", + "onions", + "saffron threads", + "tumeric", + "paprika", + "garlic cloves", + "cumin", + "ground ginger", + "cinnamon", + "salt", + "chopped cilantro" + ] + }, + { + "id": 5619, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "dried parsley", + "garlic powder", + "bouillon granules", + "ground cinnamon", + "onion powder", + "dried oregano", + "ground nutmeg", + "salt" + ] + }, + { + "id": 21133, + "cuisine": "italian", + "ingredients": [ + "pork stew meat", + "vegetable oil", + "chopped celery", + "garlic cloves", + "bay leaf", + "dried thyme", + "reduced fat milk", + "beef stew meat", + "chopped onion", + "flat leaf parsley", + "porcini", + "large egg yolks", + "baking potatoes", + "salt", + "carrots", + "water", + "fresh parmesan cheese", + "diced tomatoes", + "all-purpose flour", + "gnocchi" + ] + }, + { + "id": 45622, + "cuisine": "italian", + "ingredients": [ + "whole peeled tomatoes", + "garlic", + "onions", + "fresh basil", + "lean ground beef", + "red bell pepper", + "italian seasoning", + "tomato paste", + "bay leaves", + "fresh mushrooms", + "spaghetti", + "green bell pepper", + "red pepper flakes", + "celery" + ] + }, + { + "id": 21673, + "cuisine": "southern_us", + "ingredients": [ + "fat free milk", + "all-purpose flour", + "black pepper", + "worcestershire sauce", + "cream cheese, soften", + "reduced fat cheddar cheese", + "dijon mustard", + "elbow macaroni", + "minced garlic", + "salt" + ] + }, + { + "id": 21895, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "chuck roast", + "salt", + "fresh ginger", + "light coconut milk", + "cherry tomatoes", + "vegetable oil", + "onions", + "light brown sugar", + "cayenne", + "garlic" + ] + }, + { + "id": 9398, + "cuisine": "brazilian", + "ingredients": [ + "pure vanilla extract", + "pumpkin purée", + "unsalted butter", + "icing", + "clove", + "apple pie spice", + "granulated sugar", + "sweetened condensed milk" + ] + }, + { + "id": 12561, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "asparagus", + "arborio rice", + "fresh parmesan cheese", + "salt", + "olive oil", + "finely chopped onion", + "spinach leaves", + "ground nutmeg" + ] + }, + { + "id": 5733, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "yellow onion", + "fat", + "unsweetened cocoa powder", + "almond butter", + "diced tomatoes", + "chicken fingers", + "chipotle peppers", + "pepper", + "cinnamon", + "cayenne pepper", + "coconut milk", + "ground cumin", + "red cabbage", + "salt", + "garlic cloves", + "cabbage" + ] + }, + { + "id": 12347, + "cuisine": "cajun_creole", + "ingredients": [ + "red kidney beans", + "onions", + "vegetable oil", + "cooked rice", + "smoked sausage" + ] + }, + { + "id": 11079, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "rosemary leaves", + "yukon gold potatoes", + "pizza doughs", + "ground black pepper", + "yellow onion", + "extra-virgin olive oil" + ] + }, + { + "id": 44362, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "bacon", + "tomatoes", + "red pepper", + "sour cream", + "ranch salad dressing mix", + "crushed red pepper flakes", + "mayonaise", + "shredded lettuce" + ] + }, + { + "id": 17991, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "yellow bell pepper", + "onions", + "olive oil", + "ziti", + "garlic cloves", + "mushrooms", + "scallions", + "orange bell pepper", + "heavy cream", + "red bell pepper" + ] + }, + { + "id": 28541, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "serrano chile", + "ground black pepper", + "cilantro leaves", + "purple onion", + "Haas avocados", + "fresh lime juice" + ] + }, + { + "id": 28361, + "cuisine": "southern_us", + "ingredients": [ + "prepared mustard", + "mayonaise", + "paprika", + "pepper", + "salt", + "large eggs", + "pickle relish" + ] + }, + { + "id": 25689, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "Ritz Crackers", + "salt", + "celery", + "unsalted butter", + "vegetable oil", + "red bell pepper", + "pepper", + "pimentos", + "all-purpose flour", + "onions", + "milk", + "Tabasco Pepper Sauce", + "rotisserie chicken" + ] + }, + { + "id": 32400, + "cuisine": "mexican", + "ingredients": [ + "cream of chicken soup", + "sour cream", + "cooked chicken", + "doritos", + "tomatoes", + "taco seasoning", + "milk", + "shredded cheese" + ] + }, + { + "id": 18606, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "heavy whipping cream", + "egg yolks", + "unsweetened cocoa powder", + "semisweet chocolate", + "white sugar", + "ladyfingers", + "coffee liqueur" + ] + }, + { + "id": 17916, + "cuisine": "mexican", + "ingredients": [ + "crushed tomatoes", + "red pepper flakes", + "salt", + "kale", + "chees fresco queso", + "chipotle peppers", + "fresh cilantro", + "extra-virgin olive oil", + "white beans", + "fresh oregano leaves", + "olive oil", + "garlic", + "adobo sauce" + ] + }, + { + "id": 41273, + "cuisine": "russian", + "ingredients": [ + "butter", + "onions", + "sherry vinegar", + "salt", + "sultana", + "apples", + "red cabbage", + "freshly ground pepper" + ] + }, + { + "id": 13249, + "cuisine": "italian", + "ingredients": [ + "crushed garlic", + "Balsamico Bianco", + "salt", + "extra-virgin olive oil", + "ground black pepper", + "ground mustard" + ] + }, + { + "id": 40656, + "cuisine": "japanese", + "ingredients": [ + "curry powder", + "ginger", + "salt", + "carrots", + "black pepper", + "butter", + "garlic", + "oil", + "chicken thighs", + "tomato paste", + "flour", + "apples", + "cocoa powder", + "onions", + "chicken stock", + "potatoes", + "green peas", + "sauce", + "bay leaf" + ] + }, + { + "id": 28039, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "italian seasoning", + "pitted kalamata olives", + "yellow bell pepper", + "red bell pepper", + "crushed tomatoes", + "garlic", + "arugula", + "cauliflower", + "ground black pepper", + "feta cheese crumbles", + "rigatoni" + ] + }, + { + "id": 1464, + "cuisine": "chinese", + "ingredients": [ + "wine", + "vegetable oil", + "ramps", + "scallion greens", + "firm silken tofu", + "chili bean paste", + "ground beef", + "cold water", + "fresh ginger", + "chili oil", + "corn starch", + "dark soy sauce", + "szechwan peppercorns", + "low sodium chicken stock" + ] + }, + { + "id": 37181, + "cuisine": "southern_us", + "ingredients": [ + "mushrooms", + "water", + "butter", + "Uncle Ben's Original Converted Brand rice", + "beef consomme" + ] + }, + { + "id": 38902, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "basil", + "red bell pepper", + "green bell pepper", + "sweet onion", + "english cucumber", + "tomatoes", + "lime juice", + "salt", + "flat leaf parsley", + "vegetable juice", + "red wine vinegar", + "garlic cloves" + ] + }, + { + "id": 9654, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "coarse sea salt", + "rosemary", + "thyme", + "white wine", + "garlic cloves", + "pork belly", + "olive oil" + ] + }, + { + "id": 34826, + "cuisine": "vietnamese", + "ingredients": [ + "vegetable oil", + "dark brown sugar", + "fish sauce", + "crushed red pepper flakes", + "scallions", + "water", + "garlic", + "chopped cilantro fresh", + "extra large shrimp", + "yellow onion" + ] + }, + { + "id": 16451, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "agave nectar", + "boneless skinless chicken breast halves", + "olive oil", + "fresh lime juice", + "lower sodium chicken broth", + "minced onion", + "adobo sauce", + "black pepper", + "salt" + ] + }, + { + "id": 31329, + "cuisine": "thai", + "ingredients": [ + "zucchini", + "coconut milk", + "sugar", + "vegetable oil", + "fish sauce", + "boneless skinless chicken breasts", + "thai green curry paste", + "soy sauce", + "cuttlefish balls" + ] + }, + { + "id": 35709, + "cuisine": "chinese", + "ingredients": [ + "white vinegar", + "chile paste", + "white sugar", + "dark soy sauce", + "garlic", + "chicken broth", + "sesame oil", + "water", + "corn starch" + ] + }, + { + "id": 11364, + "cuisine": "italian", + "ingredients": [ + "water", + "fusilli", + "garlic cloves", + "sugar pea", + "ground black pepper", + "salt", + "fresh basil", + "sea scallops", + "butter", + "fresh lemon juice", + "fat free less sodium chicken broth", + "dry white wine", + "cream cheese" + ] + }, + { + "id": 23756, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "brown sugar", + "white sugar", + "vanilla extract", + "egg yolks" + ] + }, + { + "id": 17117, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "kimchi", + "eggs", + "sesame seeds", + "Gochujang base", + "silken tofu", + "sesame oil", + "fish sauce", + "mushrooms", + "liquid" + ] + }, + { + "id": 44050, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "chili flakes", + "orange juice", + "tomatillos" + ] + }, + { + "id": 9520, + "cuisine": "indian", + "ingredients": [ + "chicken stock", + "cream", + "garam masala", + "cilantro leaves", + "lemon juice", + "ground cumin", + "tomatoes", + "fresh ginger", + "jalapeno chilies", + "cumin seed", + "chicken thighs", + "tomato paste", + "kosher salt", + "unsalted butter", + "yellow onion", + "greek yogurt", + "neutral oil", + "almonds", + "cinnamon", + "garlic cloves", + "ground turmeric" + ] + }, + { + "id": 25125, + "cuisine": "french", + "ingredients": [ + "sandwich rolls", + "chuck roast", + "beef broth", + "pepper", + "garlic", + "provolone cheese", + "soy sauce", + "worcestershire sauce", + "yellow onion", + "creole mustard", + "water", + "salt" + ] + }, + { + "id": 40543, + "cuisine": "mexican", + "ingredients": [ + "stew meat", + "beef stock cubes", + "refried beans", + "shredded cheddar cheese", + "red enchilada sauce", + "flour tortillas" + ] + }, + { + "id": 29568, + "cuisine": "italian", + "ingredients": [ + "chocolate", + "orange soda" + ] + }, + { + "id": 13161, + "cuisine": "french", + "ingredients": [ + "garlic", + "black pepper", + "salt", + "melted butter", + "gruyere cheese", + "russet potatoes", + "low-fat milk" + ] + }, + { + "id": 20505, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "part-skim mozzarella cheese", + "plum tomatoes", + "fresh basil", + "garlic cloves", + "black pepper", + "bread dough", + "yellow corn meal", + "cooking spray" + ] + }, + { + "id": 38969, + "cuisine": "japanese", + "ingredients": [ + "rice vinegar", + "soy sauce", + "chili oil" + ] + }, + { + "id": 30990, + "cuisine": "japanese", + "ingredients": [ + "black sesame seeds", + "olive oil", + "tamari soy sauce", + "sesame oil", + "extra firm tofu", + "sliced green onions" + ] + }, + { + "id": 44096, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "salt", + "oil", + "onions", + "stock", + "parsley", + "chickpeas", + "carrots", + "tomatoes", + "potatoes", + "cayenne pepper", + "garlic cloves", + "tomato sauce", + "chicken meat", + "green pepper", + "bay leaf" + ] + }, + { + "id": 4088, + "cuisine": "italian", + "ingredients": [ + "semisweet chocolate", + "vanilla extract", + "large egg whites", + "cooking spray", + "all-purpose flour", + "sugar", + "large eggs", + "salt", + "baking soda", + "baking powder", + "unsweetened cocoa powder" + ] + }, + { + "id": 12054, + "cuisine": "french", + "ingredients": [ + "sugar", + "cream of tartar", + "salt", + "butter", + "eggs", + "bittersweet chocolate" + ] + }, + { + "id": 1747, + "cuisine": "italian", + "ingredients": [ + "water", + "vanilla extract", + "unflavored gelatin", + "compote", + "low-fat plain yogurt", + "cherries", + "sugar", + "whipping cream" + ] + }, + { + "id": 3446, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "butter", + "dried oregano", + "chicken stock", + "bay leaves", + "garlic", + "salt and ground black pepper", + "red wine", + "chicken", + "tomato sauce", + "shallots", + "fresh parsley" + ] + }, + { + "id": 23413, + "cuisine": "mexican", + "ingredients": [ + "cointreau", + "lime juice", + "tequila", + "kosher salt", + "lime wedges", + "sugar", + "egg whites", + "ice cubes", + "water", + "fresh lemon juice" + ] + }, + { + "id": 20516, + "cuisine": "mexican", + "ingredients": [ + "KRAFT Zesty Italian Dressing", + "lean ground beef", + "chunky salsa", + "flour tortillas", + "sour cream", + "black beans", + "cheese", + "chili powder", + "onions" + ] + }, + { + "id": 3757, + "cuisine": "spanish", + "ingredients": [ + "roasted red peppers", + "extra-virgin olive oil", + "mushrooms", + "onions", + "ground black pepper", + "russet potatoes", + "large eggs", + "salt" + ] + }, + { + "id": 13074, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "jalapeno chilies", + "salt", + "cornmeal", + "water", + "butter", + "green pepper", + "baking soda", + "buttermilk", + "oil", + "sugar", + "baking powder", + "all-purpose flour", + "onions" + ] + }, + { + "id": 17236, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "lemon zest", + "heavy cream", + "fettucine", + "unsalted butter", + "low sodium chicken broth", + "snow peas", + "black pepper", + "fresh peas", + "leeks", + "water", + "grated parmesan cheese", + "flat leaf parsley" + ] + }, + { + "id": 16634, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "napa cabbage", + "sugar", + "green onions", + "garlic", + "water", + "coarse salt", + "fish sauce", + "chili paste", + "daikon" + ] + }, + { + "id": 7718, + "cuisine": "cajun_creole", + "ingredients": [ + "seasoning", + "water", + "shrimp", + "bone-in chicken breast halves", + "smoked sausage", + "green bell pepper", + "butter", + "chicken thighs", + "white onion", + "all-purpose flour" + ] + }, + { + "id": 13496, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "garlic", + "fresh corn", + "water", + "oil", + "pepper", + "salt", + "spinach", + "meat", + "onions" + ] + }, + { + "id": 34072, + "cuisine": "french", + "ingredients": [ + "baguette", + "red wine vinegar", + "fresh parsley", + "capers", + "dijon mustard", + "purple onion", + "pitted kalamata olives", + "lettuce leaves", + "chunk light tuna in water", + "tomatoes", + "anchovies", + "extra-virgin olive oil" + ] + }, + { + "id": 17173, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "shredded low-fat sharp cheddar", + "scallions", + "egg beaters", + "cooking spray", + "salt", + "jalapeno chilies", + "paprika", + "panko breadcrumbs", + "pepper", + "chili powder", + "light cream cheese" + ] + }, + { + "id": 43136, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "finely chopped onion", + "vegetable oil", + "black mustard seeds", + "water", + "jalapeno chilies", + "salt", + "minced garlic", + "potatoes", + "peas", + "frozen peas", + "whole wheat flour", + "yukon gold potatoes", + "all-purpose flour" + ] + }, + { + "id": 13419, + "cuisine": "mexican", + "ingredients": [ + "large egg yolks", + "sugar", + "cinnamon sticks", + "raw milk", + "vanilla", + "water" + ] + }, + { + "id": 29865, + "cuisine": "british", + "ingredients": [ + "warm water", + "butter", + "cornmeal", + "soy milk", + "all-purpose flour", + "honey", + "salt", + "milk", + "gluten", + "yeast" + ] + }, + { + "id": 17749, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "ground black pepper", + "shredded lettuce", + "purple onion", + "lemon juice", + "olive oil", + "boneless skinless chicken breasts", + "garlic", + "dillweed", + "fresh parsley", + "kosher salt", + "vinegar", + "diced tomatoes", + "salt", + "cucumber", + "diced bell pepper", + "feta cheese", + "lemon wedge", + "black olives", + "fresh lemon juice", + "dried oregano" + ] + }, + { + "id": 8536, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "sliced black olives", + "whole milk", + "diced tomatoes", + "onions", + "tomato paste", + "kosher salt", + "granulated sugar", + "chili powder", + "all-purpose flour", + "ground cumin", + "green bell pepper", + "unsalted butter", + "baking powder", + "salt", + "monterey jack", + "yellow corn meal", + "corn kernels", + "jalapeno chilies", + "vegetable oil", + "ground beef" + ] + }, + { + "id": 2536, + "cuisine": "southern_us", + "ingredients": [ + "raw honey", + "almonds", + "cacao powder" + ] + }, + { + "id": 1091, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "vegetable oil", + "cayenne pepper", + "plum tomatoes", + "celery ribs", + "medium shrimp uncook", + "salt", + "long-grain rice", + "andouille sausage", + "clam juice", + "okra", + "dried oregano", + "tomatoes", + "bay leaves", + "all-purpose flour", + "onions" + ] + }, + { + "id": 6100, + "cuisine": "italian", + "ingredients": [ + "shallots", + "extra-virgin olive oil", + "ground black pepper", + "heavy cream", + "chicken", + "red wine vinegar", + "flat leaf parsley", + "unsalted butter", + "sea salt" + ] + }, + { + "id": 33151, + "cuisine": "thai", + "ingredients": [ + "eggs", + "cooking oil", + "sweetened condensed milk", + "water", + "salt", + "sugar", + "butter", + "dough", + "milk", + "all-purpose flour" + ] + }, + { + "id": 43812, + "cuisine": "italian", + "ingredients": [ + "eggs", + "garlic powder", + "lean ground beef", + "bay leaf", + "dried basil", + "whole peeled tomatoes", + "salt", + "white sugar", + "bread crumb fresh", + "ground black pepper", + "garlic", + "dried parsley", + "tomato paste", + "olive oil", + "grated parmesan cheese", + "chopped onion" + ] + }, + { + "id": 10586, + "cuisine": "irish", + "ingredients": [ + "stout", + "egg yolks", + "white sugar", + "whole milk", + "vanilla beans", + "heavy whipping cream" + ] + }, + { + "id": 31759, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "water", + "ground pork", + "ground beef", + "white onion", + "jalapeno chilies", + "salt", + "green olives", + "olive oil", + "white rice", + "onions", + "minced garlic", + "tomatillos", + "chopped cilantro" + ] + }, + { + "id": 27968, + "cuisine": "moroccan", + "ingredients": [ + "whole cloves", + "cardamom pods", + "chicken stock", + "butter", + "spices", + "leg of lamb", + "duck fat", + "garlic" + ] + }, + { + "id": 44229, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "vegetable broth", + "oil", + "cashew nuts", + "pepper", + "paprika", + "salt", + "sour cream", + "almonds", + "ginger", + "green chilies", + "onions", + "butter", + "garlic", + "carrots" + ] + }, + { + "id": 46822, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "grated parmesan cheese", + "pinenuts", + "extra-virgin olive oil", + "minced garlic", + "fresh basil leaves" + ] + }, + { + "id": 3076, + "cuisine": "thai", + "ingredients": [ + "radishes", + "fresh lime juice", + "sugar", + "green onions", + "sesame chili oil", + "peeled fresh ginger", + "chopped fresh mint", + "minced garlic", + "cucumber" + ] + }, + { + "id": 10854, + "cuisine": "southern_us", + "ingredients": [ + "red potato", + "lemon", + "beer", + "corn", + "hot sauce", + "crawfish", + "smoked sausage", + "shrimp", + "cocktail sauce", + "tartar sauce" + ] + }, + { + "id": 4903, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "yellow bell pepper", + "onions", + "grated parmesan cheese", + "shredded mozzarella cheese", + "olive oil", + "garlic", + "italian seasoning", + "italian sausage", + "diced tomatoes", + "red bell pepper" + ] + }, + { + "id": 35967, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "pie shell", + "evaporated milk", + "red pepper", + "green chile", + "mexican style 4 cheese blend", + "large eggs", + "salsa" + ] + }, + { + "id": 29146, + "cuisine": "greek", + "ingredients": [ + "non-fat sour cream", + "pepper", + "feta cheese crumbles", + "baking potatoes", + "dried oregano", + "skim milk", + "salt" + ] + }, + { + "id": 355, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "garlic", + "tomatoes", + "basil", + "penne pasta", + "feta cheese", + "salt", + "black pepper", + "kalamata", + "chopped parsley" + ] + }, + { + "id": 38759, + "cuisine": "japanese", + "ingredients": [ + "japanese rice", + "water", + "worcestershire sauce", + "oil", + "ketchup", + "spring onions", + "yellow onion", + "eggs", + "milk", + "salt", + "panko breadcrumbs", + "pepper", + "parsley", + "minced beef" + ] + }, + { + "id": 4297, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "basil leaves", + "freshly grated parmesan", + "linguine", + "olive oil", + "fresh mozzarella", + "black pepper", + "marinara sauce", + "salt" + ] + }, + { + "id": 22168, + "cuisine": "mexican", + "ingredients": [ + "salt and ground black pepper", + "garlic", + "jalapeno chilies", + "grated parmesan cheese", + "dried rosemary", + "olive oil", + "heavy cream" + ] + }, + { + "id": 19388, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "chopped green bell pepper", + "chopped celery", + "garlic cloves", + "crawfish", + "vegetable oil", + "all-purpose flour", + "fresh parsley", + "seasoning", + "water", + "stewed tomatoes", + "hot sauce", + "lump crab meat", + "finely chopped onion", + "salt", + "okra pods" + ] + }, + { + "id": 7024, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "rice", + "coriander", + "garlic paste", + "hot chili powder", + "onions", + "ginger paste", + "yoghurt", + "coconut cream", + "masala", + "pepper", + "passata", + "chicken thighs" + ] + }, + { + "id": 26412, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "cornmeal", + "eggs", + "salt", + "milk", + "sweet corn", + "green onions" + ] + }, + { + "id": 913, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "green bell pepper", + "ground black pepper", + "chicken breasts", + "large garlic cloves", + "thyme", + "onions", + "tomato paste", + "olive oil", + "bay leaves", + "onion powder", + "sauce", + "red bell pepper", + "chicken stock", + "andouille sausage", + "Sriracha", + "Himalayan salt", + "cayenne pepper", + "long grain brown rice", + "oregano", + "tomatoes", + "garlic powder", + "green onions", + "lemon", + "shrimp", + "fresh parsley" + ] + }, + { + "id": 15226, + "cuisine": "mexican", + "ingredients": [ + "diced celery", + "diced tomatoes", + "white sugar", + "green bell pepper", + "onions", + "stewed tomatoes" + ] + }, + { + "id": 47930, + "cuisine": "italian", + "ingredients": [ + "fresh mushrooms", + "cornmeal", + "italian sausage", + "bread dough", + "shredded mozzarella cheese", + "pasta sauce", + "ripe olives" + ] + }, + { + "id": 17828, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "lemon extract", + "ground nutmeg", + "water", + "butter" + ] + }, + { + "id": 29483, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "tomato juice", + "cucumber", + "green bell pepper", + "red wine vinegar", + "chopped cilantro fresh", + "tomatoes", + "hot pepper sauce", + "onions", + "olive oil", + "large garlic cloves" + ] + }, + { + "id": 32576, + "cuisine": "british", + "ingredients": [ + "rolled oats", + "semisweet chocolate", + "condensed milk", + "brown sugar", + "whole wheat flour", + "butter", + "sugar", + "bananas", + "whipping cream", + "milk", + "chips" + ] + }, + { + "id": 7585, + "cuisine": "irish", + "ingredients": [ + "pepper", + "salt", + "dried lentils", + "sauerkraut", + "celery seed", + "water", + "chopped onion", + "fat free less sodium chicken broth", + "bacon" + ] + }, + { + "id": 28923, + "cuisine": "indian", + "ingredients": [ + "sugar", + "ground cardamom", + "whole wheat flour", + "cashew nuts", + "water", + "ghee", + "raisins" + ] + }, + { + "id": 37034, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "dry white wine", + "cheese", + "scallions", + "noodles", + "fresh rosemary", + "ground nutmeg", + "red wine vinegar", + "salt", + "pork shoulder", + "salted butter", + "coarse salt", + "garlic", + "fresh lime juice", + "cheddar cheese", + "flour", + "heavy cream", + "hot sauce", + "fresh parsley" + ] + }, + { + "id": 43232, + "cuisine": "italian", + "ingredients": [ + "bacon", + "diced tomatoes in juice", + "artichoke hearts", + "salt", + "pitted black olives", + "linguine", + "dried rosemary", + "boneless chicken breast", + "feta cheese crumbles" + ] + }, + { + "id": 27490, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "dry yeast", + "fresh thyme leaves", + "bread flour", + "fontina cheese", + "ground black pepper", + "cooking spray", + "red bell pepper", + "warm water", + "zucchini", + "pizza sauce", + "baby eggplants", + "yellow corn meal", + "olive oil", + "mint leaves", + "garlic cloves" + ] + }, + { + "id": 26962, + "cuisine": "italian", + "ingredients": [ + "baguette", + "black pepper", + "chopped fresh mint", + "kosher salt", + "frozen peas", + "extra-virgin olive oil" + ] + }, + { + "id": 14071, + "cuisine": "french", + "ingredients": [ + "parsley sprigs", + "baked ham", + "cornichons", + "boiling potatoes", + "unflavored gelatin", + "water", + "peas", + "celery", + "mayonaise", + "dijon mustard", + "extra-virgin olive oil", + "marjoram", + "celery ribs", + "reduced sodium chicken broth", + "large garlic cloves", + "white wine vinegar" + ] + }, + { + "id": 18154, + "cuisine": "british", + "ingredients": [ + "ground cloves", + "ground allspice", + "ground cinnamon", + "malt vinegar", + "brown sugar", + "salt", + "black walnut", + "fresh ginger root" + ] + }, + { + "id": 22036, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lima beans", + "chopped fresh thyme", + "goat cheese", + "kosher salt", + "crème fraîche", + "onions", + "ground black pepper", + "wagon wheels" + ] + }, + { + "id": 17287, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "active dry yeast", + "all-purpose flour", + "unsalted butter", + "warm water", + "salt" + ] + }, + { + "id": 43207, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "chocolate" + ] + }, + { + "id": 45890, + "cuisine": "chinese", + "ingredients": [ + "veggies", + "brown sugar", + "garlic", + "low sodium soy sauce", + "ginger", + "water", + "firm tofu" + ] + }, + { + "id": 29935, + "cuisine": "southern_us", + "ingredients": [ + "cherry gelatin", + "rocket leaves", + "crushed pineapples in juice", + "cold water", + "poppy seeds", + "mayonaise", + "bing cherries" + ] + }, + { + "id": 21201, + "cuisine": "italian", + "ingredients": [ + "vine ripened tomatoes", + "fresh basil leaves", + "extra-virgin olive oil", + "ground black pepper", + "fine sea salt", + "fresh mozzarella", + "dried oregano" + ] + }, + { + "id": 9076, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "corn starch", + "sake", + "hoisin sauce", + "salt", + "toasted sesame oil", + "sugar", + "instant yeast", + "oyster sauce", + "water", + "baking powder", + "salad oil" + ] + }, + { + "id": 2273, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "chicken broth", + "diced tomatoes", + "sugar", + "all-purpose flour", + "butter" + ] + }, + { + "id": 17941, + "cuisine": "french", + "ingredients": [ + "sugar", + "fresh lemon juice", + "raspberries" + ] + }, + { + "id": 558, + "cuisine": "mexican", + "ingredients": [ + "water", + "canola oil", + "rotelle", + "chicken breasts", + "taco seasoning" + ] + }, + { + "id": 29728, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "onions", + "jalapeno chilies", + "water", + "salt" + ] + }, + { + "id": 10037, + "cuisine": "korean", + "ingredients": [ + "wheels", + "ginger", + "sweet rice flour", + "brown sugar", + "coarse salt", + "shrimp", + "radishes", + "red pepper flakes", + "onions", + "fish sauce", + "green onions", + "garlic" + ] + }, + { + "id": 10136, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "rice noodles", + "white sugar", + "eggs", + "sesame seeds", + "frozen broccoli", + "olive oil", + "crushed red pepper flakes", + "chopped garlic", + "dark soy sauce", + "chilegarlic sauce", + "chicken fingers" + ] + }, + { + "id": 7392, + "cuisine": "french", + "ingredients": [ + "creme anglaise", + "bittersweet chocolate", + "egg whites", + "vanilla extract", + "granulated sugar", + "whipped cream", + "egg yolks", + "confectioners sugar" + ] + }, + { + "id": 6718, + "cuisine": "mexican", + "ingredients": [ + "water", + "salt", + "onions", + "pepper", + "garlic", + "ancho chile pepper", + "agave nectar", + "lemon juice", + "plum tomatoes", + "Mexican oregano", + "green pumpkin seeds", + "ground cumin" + ] + }, + { + "id": 10883, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "salt", + "chopped cilantro", + "crushed tomatoes", + "garam masala", + "garlic cloves", + "serrano chile", + "diced onions", + "garbanzo beans", + "cardamom", + "clarified butter", + "fresh ginger", + "sweet potatoes", + "greek yogurt", + "cumin" + ] + }, + { + "id": 21578, + "cuisine": "southern_us", + "ingredients": [ + "granny smith apples", + "butter", + "vidalia onion", + "milk", + "shredded cheddar cheese", + "baking mix", + "sugar", + "large eggs" + ] + }, + { + "id": 16058, + "cuisine": "cajun_creole", + "ingredients": [ + "arborio rice", + "kosher salt", + "fresh thyme", + "lemon", + "carrots", + "fresh parsley", + "tomatoes", + "ground black pepper", + "bay leaves", + "scallions", + "celery", + "chicken stock", + "olive oil", + "jalapeno chilies", + "garlic", + "red bell pepper", + "orange zest", + "white onion", + "unsalted butter", + "dry white wine", + "juice", + "medium shrimp" + ] + }, + { + "id": 26870, + "cuisine": "brazilian", + "ingredients": [ + "water", + "queso fresco", + "large eggs", + "salt", + "milk", + "all purpose unbleached flour", + "tapioca flour", + "grated parmesan cheese", + "canola oil" + ] + }, + { + "id": 42278, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "boneless chicken skinless thigh", + "purple onion", + "ground turmeric", + "clove", + "chiles", + "ground black pepper", + "tamarind paste", + "green chile", + "fresh ginger", + "salt", + "ground cumin", + "ground cinnamon", + "sugar", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 6005, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "cilantro", + "scallions", + "toasted sesame oil", + "szechwan peppercorns", + "bone-in chicken breasts", + "chinkiang vinegar", + "Shaoxing wine", + "ginger", + "sesame paste", + "white sugar", + "kosher salt", + "chili oil", + "roasted peanuts", + "white sesame seeds" + ] + }, + { + "id": 27715, + "cuisine": "indian", + "ingredients": [ + "rice", + "ground turmeric", + "chili powder", + "ghee", + "oil", + "salt", + "coriander" + ] + }, + { + "id": 40692, + "cuisine": "mexican", + "ingredients": [ + "low sodium diced tomatoes", + "nonfat yogurt", + "salt", + "cornmeal", + "lean ground turkey", + "baking soda", + "chili powder", + "shredded cheese", + "whole wheat flour", + "cooking spray", + "frozen corn kernels", + "cumin", + "egg substitute", + "cayenne", + "onion powder", + "pinto beans" + ] + }, + { + "id": 26398, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "large egg yolks", + "vanilla beans", + "salt", + "sugar", + "sanding sugar" + ] + }, + { + "id": 2825, + "cuisine": "italian", + "ingredients": [ + "cannellini beans", + "salt", + "onions", + "swiss chard", + "garlic", + "country bread", + "dried rosemary", + "water", + "bacon", + "carrots", + "cabbage", + "ground black pepper", + "canned tomatoes", + "celery" + ] + }, + { + "id": 33525, + "cuisine": "chinese", + "ingredients": [ + "chicken breasts", + "oil", + "water", + "salt", + "nian gao", + "white pepper", + "sesame oil", + "corn starch", + "Shaoxing wine", + "liquid" + ] + }, + { + "id": 11609, + "cuisine": "indian", + "ingredients": [ + "sugar", + "kosher salt", + "baking powder", + "whole wheat pastry flour", + "baking soda", + "warm water", + "active dry yeast", + "all-purpose flour", + "melted butter", + "plain yogurt", + "whole milk" + ] + }, + { + "id": 23136, + "cuisine": "moroccan", + "ingredients": [ + "sweet potatoes", + "yellow onion", + "cinnamon sticks", + "preserved lemon", + "extra-virgin olive oil", + "carrots", + "turnips", + "yukon gold potatoes", + "organic vegetable broth", + "frozen artichoke hearts", + "kosher salt", + "ras el hanout", + "hot water" + ] + }, + { + "id": 32955, + "cuisine": "italian", + "ingredients": [ + "garlic cloves", + "green onions", + "italian seasoning", + "chicken broth", + "basmati rice", + "diced tomatoes" + ] + }, + { + "id": 7975, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "tomatoes", + "cilantro", + "jalapeno chilies", + "onions", + "pepper", + "garlic" + ] + }, + { + "id": 3623, + "cuisine": "irish", + "ingredients": [ + "large eggs", + "cracked black pepper", + "milk", + "baking powder", + "salt", + "garlic powder", + "butter", + "all-purpose flour", + "sugar", + "green onions", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 28323, + "cuisine": "japanese", + "ingredients": [ + "shiitake", + "soft tofu", + "mirin", + "dried bonito flakes", + "water", + "enokitake", + "seaweed", + "white miso", + "green onions" + ] + }, + { + "id": 4619, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "sesame oil", + "soy sauce", + "ginger", + "minced onion", + "garlic", + "boneless skinless chicken breasts", + "rice vinegar" + ] + }, + { + "id": 20821, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "cayenne", + "urad dal", + "cumin seed", + "almonds", + "lemon", + "purple onion", + "coriander", + "tumeric", + "coriander powder", + "garlic", + "bay leaf", + "tomatoes", + "garam masala", + "ginger", + "salt" + ] + }, + { + "id": 25910, + "cuisine": "british", + "ingredients": [ + "low sodium worcestershire sauce", + "pudding", + "carrots", + "water", + "beef broth", + "vegetable oil cooking spray", + "rib-eye roast", + "onions", + "pepper", + "salt" + ] + }, + { + "id": 47784, + "cuisine": "brazilian", + "ingredients": [ + "lime juice", + "bell pepper", + "coconut milk", + "minced garlic", + "olive oil", + "paprika", + "ground cumin", + "fresh cilantro", + "diced tomatoes", + "onions", + "tilapia fillets", + "ground black pepper", + "salt" + ] + }, + { + "id": 6671, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "onion powder", + "ground black pepper", + "ground white pepper", + "kosher salt", + "cayenne", + "garlic powder", + "paprika" + ] + }, + { + "id": 35658, + "cuisine": "indian", + "ingredients": [ + "reduced fat coconut milk", + "button mushrooms", + "coriander", + "potatoes", + "curry paste", + "eggplant", + "oil", + "vegetable stock", + "onions" + ] + }, + { + "id": 29408, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "onions", + "ground ginger", + "boneless skinless chicken breasts", + "cooking sherry", + "green bell pepper, slice", + "corn starch", + "white sugar", + "garlic powder", + "crushed red pepper", + "cashew nuts" + ] + }, + { + "id": 34553, + "cuisine": "cajun_creole", + "ingredients": [ + "lump crab meat", + "finely chopped onion", + "dry mustard", + "saltines", + "chopped green bell pepper", + "worcestershire sauce", + "sour cream", + "scallion greens", + "unsalted butter", + "vegetable oil", + "salt", + "cayenne", + "large eggs", + "chopped celery" + ] + }, + { + "id": 33116, + "cuisine": "mexican", + "ingredients": [ + "water", + "ground cinnamon", + "salt", + "light butter", + "granulated sugar", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 23751, + "cuisine": "indian", + "ingredients": [ + "plain low-fat yogurt", + "brown sugar" + ] + }, + { + "id": 27142, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "pasta sauce", + "italian sausage", + "penne pasta", + "jack cheese" + ] + }, + { + "id": 40460, + "cuisine": "cajun_creole", + "ingredients": [ + "parsley", + "rice", + "olive oil", + "garlic", + "chicken broth", + "peas", + "onions", + "bell pepper", + "smoked sausage" + ] + }, + { + "id": 28533, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "lemon", + "chopped onion", + "fresh parsley", + "garbanzo beans", + "vegetable broth", + "red bell pepper", + "plum tomatoes", + "artichoke hearts", + "paprika", + "carrots", + "frozen peas", + "saffron threads", + "chopped green bell pepper", + "cayenne pepper", + "couscous", + "chopped garlic" + ] + }, + { + "id": 12147, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "olive oil", + "red potato", + "dried rosemary" + ] + }, + { + "id": 46940, + "cuisine": "british", + "ingredients": [ + "cheddar cheese", + "butter", + "all-purpose flour", + "hot pepper sauce", + "dry mustard", + "pepper", + "worcestershire sauce", + "beer", + "whole milk", + "salt" + ] + }, + { + "id": 10580, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "lemon juice", + "garlic", + "diced tomatoes", + "chopped cilantro fresh", + "hot pepper sauce", + "yellow onion" + ] + }, + { + "id": 32605, + "cuisine": "british", + "ingredients": [ + "pepper", + "green onions", + "Emmenthal", + "salt", + "milk", + "haddock fillets", + "potatoes", + "crème fraîche" + ] + }, + { + "id": 19671, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "black beans", + "flour tortillas", + "chili powder", + "sour cream", + "canola oil", + "liquid smoke", + "tomato sauce", + "beef", + "low sodium chicken broth", + "all-purpose flour", + "fresh parsley", + "ground cumin", + "light brown sugar", + "chipotle chile", + "poblano peppers", + "seeds", + "garlic cloves", + "onions", + "cooked rice", + "unsalted butter", + "jalapeno chilies", + "boneless beef chuck roast", + "adobo sauce", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 37444, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "worcestershire sauce", + "pimentos", + "sharp cheddar cheese", + "mayonaise", + "ground red pepper", + "onions", + "dijon mustard", + "salt" + ] + }, + { + "id": 10888, + "cuisine": "indian", + "ingredients": [ + "pepper", + "diced tomatoes", + "salt", + "carrots", + "cumin", + "garam masala", + "cauliflower florets", + "garlic cloves", + "coriander", + "olive oil", + "ginger", + "chickpeas", + "onions", + "tumeric", + "broccoli florets", + "vegetable broth", + "lemon juice", + "chopped cilantro fresh" + ] + }, + { + "id": 12458, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "green onions", + "Bragg Liquid Aminos", + "broth", + "gai lan", + "shiitake", + "napa cabbage", + "oil", + "sake", + "extra firm tofu", + "shirataki", + "bok choy", + "water", + "sliced carrots", + "cooking wine" + ] + }, + { + "id": 12819, + "cuisine": "italian", + "ingredients": [ + "marrons", + "chestnuts", + "mascarpone", + "cocoa", + "powdered sugar", + "crème fraîche" + ] + }, + { + "id": 32484, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "green onions", + "garlic", + "bamboo shoots", + "soy sauce", + "napa cabbage", + "all-purpose flour", + "chinese rice wine", + "sesame oil", + "salt", + "fresh ginger", + "ground pork", + "ground white pepper" + ] + }, + { + "id": 25245, + "cuisine": "spanish", + "ingredients": [ + "tomato juice", + "cayenne pepper", + "red bell pepper", + "tomatoes", + "lemon", + "croutons", + "tomato paste", + "red wine vinegar", + "fresh herbs", + "onions", + "kosher salt", + "garlic", + "cucumber" + ] + }, + { + "id": 28755, + "cuisine": "british", + "ingredients": [ + "ground black pepper", + "frozen peas", + "heavy cream", + "butter", + "salt" + ] + }, + { + "id": 38966, + "cuisine": "mexican", + "ingredients": [ + "confectioners sugar", + "all-purpose flour", + "butter", + "chopped pecans" + ] + }, + { + "id": 33969, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "liver", + "onions", + "ground cumin", + "preserved lemon", + "salt", + "chopped fresh herbs", + "chicken", + "fresh lemon", + "sweet paprika", + "olives", + "ground ginger", + "garlic", + "salad oil", + "saffron" + ] + }, + { + "id": 35998, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "dried salted codfish", + "onions", + "ackee", + "garlic cloves", + "pepper", + "salt", + "tomatoes", + "vegetable oil", + "thyme" + ] + }, + { + "id": 48243, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "black pepper", + "grated parmesan cheese", + "italian seasoning", + "fat free less sodium chicken broth", + "red wine vinegar", + "parsley sprigs", + "roasted red peppers", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 12555, + "cuisine": "chinese", + "ingredients": [ + "chili pepper", + "starch", + "garlic cloves", + "light soy sauce", + "chili oil", + "water", + "spring onions", + "ginger root", + "sugar", + "vinegar", + "firm tofu" + ] + }, + { + "id": 4919, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "sauce", + "sugar", + "butter", + "shortening", + "cinnamon", + "rolls", + "milk", + "vanilla" + ] + }, + { + "id": 9652, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "thai basil", + "pineapple", + "ground white pepper", + "fresh mint", + "hothouse cucumber", + "fish sauce", + "lemongrass", + "green onions", + "cilantro leaves", + "hot water", + "fresh lime juice", + "butter lettuce", + "golden brown sugar", + "vegetable oil", + "garlic cloves", + "beansprouts", + "shiso", + "soy sauce", + "shredded carrots", + "rice vermicelli", + "pork loin chops", + "bird chile" + ] + }, + { + "id": 44106, + "cuisine": "mexican", + "ingredients": [ + "salt", + "tomatillos", + "white onion", + "serrano chile", + "cilantro" + ] + }, + { + "id": 18126, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "crushed red pepper", + "coarse salt", + "garlic cloves", + "ground black pepper", + "oil", + "tomatoes with juice", + "spaghetti" + ] + }, + { + "id": 20032, + "cuisine": "italian", + "ingredients": [ + "toasted pine nuts", + "large garlic cloves", + "grated parmesan cheese", + "fresh basil leaves", + "extra-virgin olive oil" + ] + }, + { + "id": 18242, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "halibut", + "dark ale", + "lemon", + "kosher salt", + "panko", + "flat leaf parsley", + "large egg whites", + "cayenne pepper" + ] + }, + { + "id": 43858, + "cuisine": "korean", + "ingredients": [ + "sugar", + "ground black pepper", + "cooking wine", + "minced garlic", + "green onions", + "soy sauce", + "beef", + "toasted sesame seeds", + "honey", + "sesame oil" + ] + }, + { + "id": 8502, + "cuisine": "french", + "ingredients": [ + "sugar", + "salt", + "unsalted butter", + "ice water", + "large egg yolks", + "all-purpose flour" + ] + }, + { + "id": 13197, + "cuisine": "russian", + "ingredients": [ + "water", + "bay leaves", + "tomatoes", + "olive oil", + "garlic cloves", + "sauerkraut", + "russet potatoes", + "black peppercorns", + "pork chops" + ] + }, + { + "id": 21398, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "olive oil", + "salt", + "italian seasoning", + "pepper", + "crushed red pepper", + "sun-dried tomatoes in oil", + "fresh basil", + "broccoli florets", + "bow-tie pasta", + "white wine", + "chicken breasts", + "garlic cloves" + ] + }, + { + "id": 27298, + "cuisine": "indian", + "ingredients": [ + "sugar", + "green chilies", + "water", + "cumin seed", + "peanuts", + "lemon juice", + "salt", + "coriander" + ] + }, + { + "id": 21550, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "large eggs", + "diced onions", + "part-skim mozzarella cheese", + "2% reduced-fat milk", + "olive oil", + "cooking spray", + "baby spinach leaves", + "ground black pepper" + ] + }, + { + "id": 9321, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "jalapeno chilies", + "chopped cilantro fresh", + "green onions", + "kiwi", + "peaches", + "strawberries" + ] + }, + { + "id": 13711, + "cuisine": "filipino", + "ingredients": [ + "tomato sauce", + "minced garlic", + "vegetable oil", + "ketchup", + "finely chopped onion", + "sugar", + "ground black pepper", + "ground beef", + "cheddar cheese", + "kosher salt", + "hot dogs" + ] + }, + { + "id": 21700, + "cuisine": "korean", + "ingredients": [ + "water", + "vegetable oil", + "tofu", + "sesame seeds", + "scallions", + "lime juice", + "red pepper flakes", + "brown sugar", + "sesame oil", + "corn starch" + ] + }, + { + "id": 28067, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "ground red pepper", + "lemon juice", + "large garlic cloves", + "pitted kalamata olives", + "anchovy fillets" + ] + }, + { + "id": 40250, + "cuisine": "italian", + "ingredients": [ + "unflavored gelatin", + "almond extract", + "fresh blueberries", + "fresh raspberries", + "sugar", + "vanilla extract", + "ground cinnamon", + "whole milk", + "sweetened condensed milk" + ] + }, + { + "id": 10274, + "cuisine": "indian", + "ingredients": [ + "black lentil", + "bay leaves", + "green chilies", + "coriander", + "fresh ginger root", + "double cream", + "garlic cloves", + "ground cumin", + "red kidney beans", + "butter", + "ground coriander", + "ground turmeric", + "garam masala", + "hot chili powder", + "onions" + ] + }, + { + "id": 22229, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mango", + "pineapple" + ] + }, + { + "id": 18343, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "heavy cream", + "fillets", + "creole mustard", + "butter", + "crabmeat", + "cajun seasoning", + "salt", + "fresh parsley", + "pepper", + "lemon", + "shrimp" + ] + }, + { + "id": 15711, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "plum sauce", + "oyster sauce", + "pork belly", + "hoisin sauce", + "pepper", + "sweet soy sauce", + "honey", + "Shaoxing wine" + ] + }, + { + "id": 48760, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic cloves", + "red chili peppers", + "new potatoes", + "onions", + "chopped tomatoes", + "smoked paprika", + "chorizo", + "cayenne pepper" + ] + }, + { + "id": 16376, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "leeks", + "black pepper", + "asparagus", + "dried rosemary", + "arborio rice", + "fresh parmesan cheese", + "dry white wine", + "fat free less sodium chicken broth", + "fennel bulb" + ] + }, + { + "id": 7523, + "cuisine": "chinese", + "ingredients": [ + "fish fillets", + "water", + "salt", + "corn starch", + "soy sauce", + "sesame oil", + "oil", + "sugar", + "Shaoxing wine", + "scallions", + "white pepper", + "ginger", + "oyster sauce" + ] + }, + { + "id": 371, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chopped onion", + "chopped cilantro", + "white hominy", + "grate lime peel", + "salsa verde", + "garlic cloves", + "bottled clam juice", + "mixed seafood", + "sun-dried tomatoes in oil" + ] + }, + { + "id": 1029, + "cuisine": "moroccan", + "ingredients": [ + "water", + "lemon", + "pure vanilla", + "chicken", + "tomatoes", + "yukon gold potatoes", + "extra-virgin olive oil", + "chopped cilantro", + "ground ginger", + "ground black pepper", + "kalamata", + "nigella seeds", + "preserved lemon", + "coarse salt", + "garlic cloves", + "onions" + ] + }, + { + "id": 22529, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "fresh basil", + "salt", + "fresh asparagus", + "tomatoes", + "grated parmesan cheese", + "gnocchi", + "sweet onion", + "freshly ground pepper" + ] + }, + { + "id": 1775, + "cuisine": "irish", + "ingredients": [ + "baking powder", + "all-purpose flour", + "eggs", + "buttermilk", + "white sugar", + "butter", + "margarine", + "baking soda", + "salt" + ] + }, + { + "id": 3760, + "cuisine": "italian", + "ingredients": [ + "soy milk", + "garlic", + "onions", + "unsalted margarine", + "vegetable stock", + "apple juice", + "artichok heart marin", + "cayenne pepper", + "carnaroli rice", + "olive oil", + "yellow corn", + "firm tofu" + ] + }, + { + "id": 25920, + "cuisine": "italian", + "ingredients": [ + "shell-on shrimp", + "garlic cloves", + "olive oil", + "sea salt", + "lemon", + "flat leaf parsley", + "ground black pepper", + "cayenne pepper" + ] + }, + { + "id": 44778, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "olive oil", + "spices", + "lamb shoulder", + "cinnamon sticks", + "chicken stock", + "sweet onion", + "dried apricot", + "diced tomatoes", + "chickpeas", + "chopped cilantro fresh", + "water", + "ground black pepper", + "cinnamon", + "salt", + "couscous", + "chicken broth", + "honey", + "golden raisins", + "ginger", + "garlic cloves" + ] + }, + { + "id": 38178, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "butter", + "hot water", + "dried porcini mushrooms", + "crimini mushrooms", + "whipping cream", + "marsala wine", + "beef stock", + "portabello mushroom", + "bay leaf", + "olive oil", + "fusilli", + "garlic cloves" + ] + }, + { + "id": 18815, + "cuisine": "chinese", + "ingredients": [ + "baby bok choy", + "oysters", + "abalone", + "toasted sesame oil", + "black pepper", + "ginger", + "dried shiitake mushrooms", + "soy sauce", + "dry white wine", + "salt", + "chicken stock", + "water", + "garlic", + "carrots" + ] + }, + { + "id": 10515, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "cilantro", + "water", + "salsa", + "black beans", + "frozen corn", + "condensed cream of chicken soup", + "boneless skinless chicken breasts", + "cumin" + ] + }, + { + "id": 27548, + "cuisine": "indian", + "ingredients": [ + "clove", + "seeds", + "salt", + "fresh mint", + "shahi jeera", + "kewra essence", + "water", + "ginger", + "curds", + "onions", + "cumin", + "mace", + "mutton", + "cardamom", + "coriander", + "saffron", + "nutmeg", + "cinnamon", + "green chilies", + "ghee", + "basmati rice" + ] + }, + { + "id": 44026, + "cuisine": "southern_us", + "ingredients": [ + "pork ribs", + "paprika", + "garlic powder", + "bourbon whiskey", + "dark brown sugar", + "ground black pepper", + "coarse salt", + "ground cumin", + "barbecue sauce", + "beer" + ] + }, + { + "id": 5380, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "jumbo pasta shells", + "pasta sauce", + "KNUDSEN 2% Milkfat Low Fat Cottage Cheese", + "tomatoes", + "Kraft Grated Parmesan Cheese", + "KRAFT Reduced Fat Shredded Mozzarella Cheese", + "italian seasoning" + ] + }, + { + "id": 19358, + "cuisine": "chinese", + "ingredients": [ + "unsalted butter", + "gai lan", + "chinese five-spice powder", + "soy nuts", + "soy sauce" + ] + }, + { + "id": 21434, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "ice water", + "all-purpose flour", + "cooking spray", + "vanilla extract", + "butter", + "salt", + "fresh blueberries", + "vegetable shortening", + "corn starch" + ] + }, + { + "id": 41526, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "salt", + "tomatoes", + "potatoes", + "eggs", + "green onions", + "olive oil", + "onions" + ] + }, + { + "id": 13932, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "fresh cilantro", + "ground black pepper", + "rice vinegar", + "creamy peanut butter", + "brown sugar", + "peanuts", + "garlic", + "red curry paste", + "chicken", + "unsweetened coconut milk", + "soy sauce", + "thai noodles", + "salt", + "cayenne pepper", + "cooked rice", + "fresh ginger", + "vegetable oil", + "all-purpose flour", + "toasted sesame oil" + ] + }, + { + "id": 35431, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "cilantro", + "salsa", + "poblano peppers", + "shredded pepper jack cheese", + "corn tortillas", + "olive oil", + "butternut squash", + "frozen corn", + "ground cumin", + "ground black pepper", + "salt", + "yellow onion" + ] + }, + { + "id": 12652, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "dry roasted peanuts", + "dark sesame oil", + "snow peas", + "sugar", + "boneless skinless chicken breasts", + "oyster sauce", + "low sodium soy sauce", + "mushrooms", + "chow mein noodles", + "sliced green onions", + "fat free less sodium chicken broth", + "crushed red pepper", + "carrots" + ] + }, + { + "id": 46564, + "cuisine": "indian", + "ingredients": [ + "vermicelli", + "nuts", + "water", + "ground cardamom", + "brown sugar", + "raisins", + "saffron", + "almonds", + "ghee" + ] + }, + { + "id": 33774, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "white hominy", + "cilantro", + "low sodium chicken stock", + "lime", + "chicken breasts", + "purple onion", + "dried oregano", + "kosher salt", + "radishes", + "garlic", + "green chilies", + "avocado", + "olive oil", + "chili powder", + "yellow onion", + "ground cumin" + ] + }, + { + "id": 25716, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "ground white pepper", + "rainbow trout", + "unsalted butter", + "canola oil", + "haricots verts", + "fresh lemon juice", + "almonds", + "flat leaf parsley" + ] + }, + { + "id": 25455, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "whipping cream", + "sweetened condensed milk", + "evaporated milk", + "baking powder", + "all-purpose flour", + "sugar", + "whole milk", + "salt", + "large eggs", + "vanilla extract" + ] + }, + { + "id": 13793, + "cuisine": "korean", + "ingredients": [ + "curry powder", + "sweet potatoes", + "kimchi", + "boneless beef short ribs", + "sesame oil", + "gold potatoes", + "chives", + "onions", + "water", + "steamed white rice", + "carrots" + ] + }, + { + "id": 11567, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking powder", + "honey", + "salt", + "milk", + "raisins", + "ground cinnamon", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 10241, + "cuisine": "irish", + "ingredients": [ + "salt", + "pork sausages", + "ground black pepper", + "ham", + "potatoes", + "chopped parsley", + "yellow onion", + "boiling water" + ] + }, + { + "id": 16254, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "garlic", + "ground turmeric", + "tomatoes", + "kosher salt", + "cayenne pepper", + "ground chicken", + "vegetable oil", + "waxy potatoes", + "white onion", + "cilantro leaves" + ] + }, + { + "id": 14324, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "queso fresco", + "water", + "salt", + "tostadas", + "cilantro", + "olive oil", + "nopales" + ] + }, + { + "id": 18287, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "salt", + "black pepper", + "butter", + "fresh parsley", + "shallots", + "garlic cloves", + "bread crumb fresh", + "snails" + ] + }, + { + "id": 16469, + "cuisine": "italian", + "ingredients": [ + "white bread", + "pecorino romano cheese", + "garlic cloves", + "ground black pepper", + "salt", + "pasta", + "basil leaves", + "chopped walnuts", + "fat free milk", + "extra-virgin olive oil", + "chopped parsley" + ] + }, + { + "id": 28683, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "nigella seeds", + "water", + "salt", + "melted butter", + "vegetable oil", + "dry yeast", + "all-purpose flour" + ] + }, + { + "id": 3027, + "cuisine": "filipino", + "ingredients": [ + "long beans", + "lemon", + "all-purpose flour", + "panko breadcrumbs", + "eggs", + "vegetable broth", + "banana peppers", + "jasmine rice", + "garlic", + "onions", + "tomatoes", + "ginger", + "okra", + "Mo Qua" + ] + }, + { + "id": 22271, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "nori", + "salt", + "white rice", + "water", + "bonito" + ] + }, + { + "id": 47559, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "all-purpose flour", + "vegetable oil", + "barbecue sauce", + "beef broth", + "pork", + "crust" + ] + }, + { + "id": 5433, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "extra-virgin olive oil", + "lemon juice", + "white pepper", + "butter", + "salt", + "shallots", + "white wine vinegar", + "orange zest", + "lime juice", + "heavy cream", + "orange juice" + ] + }, + { + "id": 8078, + "cuisine": "filipino", + "ingredients": [ + "mayonaise", + "raisins", + "elbow macaroni", + "sweetened condensed milk", + "hard-boiled egg", + "salt", + "carrots", + "pepper", + "cheese", + "ham", + "sweet pickle relish", + "chicken breasts", + "crushed pineapple", + "onions" + ] + }, + { + "id": 11705, + "cuisine": "thai", + "ingredients": [ + "sugar", + "roasting chickens", + "cucumber", + "chopped fresh mint", + "fresh basil", + "rice noodles", + "scallions", + "fresh lime juice", + "shredded cabbage", + "peanut oil", + "red bell pepper", + "fish sauce", + "seasoned rice wine vinegar", + "carrots", + "asian chile paste" + ] + }, + { + "id": 45779, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "lean ground beef", + "parmesan cheese", + "shredded mozzarella cheese", + "pasta sauce", + "ricotta cheese", + "lasagna noodles" + ] + }, + { + "id": 15154, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "radishes", + "purple onion", + "sambal ulek", + "water", + "cooking spray", + "rice vinegar", + "baguette", + "shredded carrots", + "cilantro leaves", + "pork", + "granulated sugar", + "light mayonnaise", + "cucumber" + ] + }, + { + "id": 6867, + "cuisine": "mexican", + "ingredients": [ + "corn", + "queso fresco", + "ground black pepper", + "salt", + "lime", + "garlic", + "unsalted butter" + ] + }, + { + "id": 27108, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "baguette", + "fresh parsley", + "olive oil", + "green olives", + "red bell pepper" + ] + }, + { + "id": 34233, + "cuisine": "mexican", + "ingredients": [ + "posole", + "poblano chilies", + "onions", + "reduced sodium chicken broth", + "salt", + "red chili peppers", + "garlic", + "dried oregano", + "pepper", + "fat" + ] + }, + { + "id": 49233, + "cuisine": "thai", + "ingredients": [ + "sticky rice", + "frozen banana leaf", + "burro banana" + ] + }, + { + "id": 34415, + "cuisine": "vietnamese", + "ingredients": [ + "pepper", + "garlic", + "fish sauce", + "spring onions", + "cucumber", + "tomatoes", + "beef", + "salt", + "sugar", + "vegetable oil" + ] + }, + { + "id": 17051, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "sea salt", + "whole milk", + "leeks", + "extra-virgin olive oil", + "sausage casings", + "fusilli" + ] + }, + { + "id": 1037, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic chili sauce", + "sliced green onions", + "diced onions", + "cooked chicken", + "toasted almonds", + "large eggs", + "red bell pepper", + "haricots verts", + "vegetable oil", + "basmati rice" + ] + }, + { + "id": 1697, + "cuisine": "british", + "ingredients": [ + "sugar", + "golden raisins", + "all-purpose flour", + "unsalted butter", + "buttermilk", + "large egg yolks", + "baking powder", + "toasted walnuts", + "fennel seeds", + "large eggs", + "salt" + ] + }, + { + "id": 22274, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "garlic", + "broiler-fryer chicken", + "ice water", + "scallions", + "fresh ginger", + "ginger", + "vegetable oil", + "salt" + ] + }, + { + "id": 36152, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "Pace Chunky Salsa", + "wonton wrappers", + "lean ground beef", + "taco seasoning mix", + "Pace Picante Sauce" + ] + }, + { + "id": 11589, + "cuisine": "irish", + "ingredients": [ + "green cabbage", + "balsamic vinegar", + "onions", + "ground black pepper", + "extra-virgin olive oil", + "milk", + "butter", + "garlic salt", + "potatoes", + "carrots" + ] + }, + { + "id": 30696, + "cuisine": "italian", + "ingredients": [ + "focaccia", + "arugula", + "prosciutto", + "black olives", + "extra-virgin olive oil", + "plum tomatoes", + "fresh mozzarella", + "fresh basil leaves" + ] + }, + { + "id": 28027, + "cuisine": "british", + "ingredients": [ + "kale", + "cracked black pepper", + "green onions", + "canola oil", + "unsalted butter", + "fine sea salt", + "milk", + "russet potatoes" + ] + }, + { + "id": 30766, + "cuisine": "french", + "ingredients": [ + "bay leaves", + "onions", + "peeled tomatoes", + "paprika", + "dried oregano", + "large garlic cloves", + "boneless skinless chicken breast halves", + "olive oil", + "orange peel" + ] + }, + { + "id": 34486, + "cuisine": "italian", + "ingredients": [ + "plum tomatoes", + "Italian parsley leaves", + "gorgonzola", + "almonds" + ] + }, + { + "id": 20826, + "cuisine": "mexican", + "ingredients": [ + "plain yogurt", + "butternut squash", + "shredded sharp cheddar cheese", + "chopped cilantro fresh", + "ground cumin", + "tomatoes", + "jalapeno chilies", + "cilantro sprigs", + "garlic cloves", + "sliced green onions", + "water", + "poblano chilies", + "salt", + "dried oregano", + "yellow corn meal", + "olive oil", + "diced tomatoes", + "frozen corn kernels", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 31493, + "cuisine": "russian", + "ingredients": [ + "pepper", + "red wine vinegar", + "sour cream", + "red beets", + "chopped onion", + "water", + "salt", + "new potatoes", + "pork country-style ribs" + ] + }, + { + "id": 38799, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "fresh ginger", + "green onions", + "salted roast peanuts", + "rice vinegar", + "sugar", + "honey", + "tortillas", + "red pepper flakes", + "purple onion", + "peanut oil", + "green cabbage", + "pepper", + "garlic powder", + "boneless skinless chicken breasts", + "garlic", + "creamy peanut butter", + "soy sauce", + "olive oil", + "shredded carrots", + "ginger", + "salt" + ] + }, + { + "id": 2978, + "cuisine": "italian", + "ingredients": [ + "lemon peel", + "crushed red pepper", + "lump crab meat", + "anchovy paste", + "spaghettini", + "prosciutto", + "extra-virgin olive oil", + "fresh parsley", + "large garlic cloves", + "fresh lemon juice" + ] + }, + { + "id": 2496, + "cuisine": "italian", + "ingredients": [ + "eggs", + "white wine", + "parmesan cheese", + "paprika", + "crème fraîche", + "boneless skinless chicken breast halves", + "soy sauce", + "olive oil", + "fusilli", + "salt", + "red bell pepper", + "cheddar cheese", + "milk", + "Emmenthal", + "yellow bell pepper", + "lemon juice", + "green bell pepper", + "pepper", + "ground nutmeg", + "blue cheese", + "ground coriander", + "dried oregano" + ] + }, + { + "id": 43307, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "olive oil", + "leeks", + "carrots", + "celery ribs", + "sourdough bread", + "ground black pepper", + "crushed red pepper flakes", + "bay leaf", + "collard greens", + "kale", + "whole peeled tomatoes", + "garlic cloves", + "marjoram", + "low sodium vegetable broth", + "parmesan cheese", + "cannellini beans", + "thyme" + ] + }, + { + "id": 49651, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime juice", + "garlic", + "cumin", + "cheddar cheese", + "green onions", + "sour cream", + "chicken", + "chicken broth", + "salsa verde", + "salt", + "monterey jack", + "pepper", + "cilantro", + "corn tortillas" + ] + }, + { + "id": 30834, + "cuisine": "indian", + "ingredients": [ + "crushed red pepper", + "vegetable oil", + "onions", + "curry powder", + "salt", + "cauliflower florets" + ] + }, + { + "id": 34138, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "white miso", + "chili paste", + "ramen noodles", + "ground pork", + "soft-boiled egg", + "sesame paste", + "dashi", + "miso paste", + "large free range egg", + "spices", + "garlic", + "scallions", + "onions", + "chicken stock", + "sesame seeds", + "ground black pepper", + "shallots", + "sea salt", + "dried shiitake mushrooms", + "oil", + "nori", + "water", + "soy milk", + "mirin", + "vegetable oil", + "ginger", + "dark brown sugar", + "toasted sesame oil" + ] + }, + { + "id": 16817, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "garlic", + "leg of lamb", + "plum tomatoes", + "garam masala", + "cilantro leaves", + "onions", + "tumeric", + "salt", + "chillies", + "cumin", + "ginger", + "oil", + "coriander" + ] + }, + { + "id": 366, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "yellow onion", + "thick-cut bacon", + "tomato paste", + "chile pepper", + "carrots", + "roasted ground cumin", + "ground black pepper", + "Saigon cinnamon", + "water", + "sea salt", + "smoked paprika" + ] + }, + { + "id": 15257, + "cuisine": "italian", + "ingredients": [ + "ground round", + "italian style stewed tomatoes", + "fresh oregano", + "tomato sauce", + "medium egg noodles", + "vegetable oil cooking spray", + "finely chopped fresh parsley", + "chopped onion", + "fresh basil", + "minced garlic", + "crushed red pepper" + ] + }, + { + "id": 869, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "collard green leaves", + "ham", + "black-eyed peas", + "salt", + "onion salt", + "garlic cloves", + "pepper", + "extra-virgin olive oil", + "carrots" + ] + }, + { + "id": 2274, + "cuisine": "thai", + "ingredients": [ + "sesame oil", + "water", + "coconut milk", + "salt", + "green curry paste", + "basmati rice" + ] + }, + { + "id": 29390, + "cuisine": "japanese", + "ingredients": [ + "brown rice", + "ginger", + "mirin", + "spices", + "sweet white miso paste", + "sugar", + "sesame oil", + "scallions", + "satsuma imo", + "baby spinach", + "cashew nuts" + ] + }, + { + "id": 47975, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "garlic cloves", + "tomatoes", + "french bread", + "cream cheese, soften", + "dijon mustard", + "feta cheese crumbles", + "fresh basil", + "baby spinach" + ] + }, + { + "id": 2194, + "cuisine": "mexican", + "ingredients": [ + "milk", + "tortillas", + "cheese soup", + "turkey burger", + "cheese" + ] + }, + { + "id": 22368, + "cuisine": "indian", + "ingredients": [ + "seeds", + "cumin", + "tumeric", + "salt", + "moong dal", + "oil", + "mustard", + "chili powder" + ] + }, + { + "id": 7571, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "leeks", + "vegetable stock powder", + "onions", + "eggplant", + "cinnamon", + "chickpeas", + "ground cumin", + "olive oil", + "basil leaves", + "cilantro leaves", + "coriander", + "celery ribs", + "organic tomato", + "red pepper", + "garlic cloves" + ] + }, + { + "id": 46234, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "salt", + "large egg whites", + "yukon gold potatoes", + "freshly ground pepper", + "melted butter", + "basil leaves", + "brine-cured black olives", + "unsalted butter", + "heavy cream" + ] + }, + { + "id": 43817, + "cuisine": "spanish", + "ingredients": [ + "milk", + "salt", + "bread crumbs", + "flour", + "onions", + "eggs", + "olive oil", + "serrano", + "pepper", + "paprika" + ] + }, + { + "id": 18717, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "asiago", + "pepper", + "butter", + "salt", + "bread crumb fresh", + "havarti cheese", + "1% low-fat milk", + "processed cheese", + "shell pasta", + "all-purpose flour" + ] + }, + { + "id": 40638, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "freshly ground pepper", + "plum tomatoes", + "grated parmesan cheese", + "fresh parsley", + "olive oil", + "garlic cloves", + "salt", + "spaghetti" + ] + }, + { + "id": 13524, + "cuisine": "french", + "ingredients": [ + "butter", + "ground pepper", + "shredded sharp cheddar cheese", + "water", + "sea salt", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 27699, + "cuisine": "mexican", + "ingredients": [ + "corn", + "salt", + "sour cream", + "black beans", + "butternut squash", + "enchilada sauce", + "onions", + "green bell pepper", + "olive oil", + "salsa", + "corn tortillas", + "mozzarella cheese", + "chili powder", + "red bell pepper", + "cumin" + ] + }, + { + "id": 27131, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "canola oil", + "ground black pepper", + "garlic cloves", + "salt", + "dijon mustard", + "fresh lemon juice" + ] + }, + { + "id": 25192, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "black beans", + "ground red pepper", + "ground pork", + "garlic cloves", + "dried oregano", + "green chile", + "black pepper", + "kidney beans", + "diced tomatoes", + "beer", + "ground beef", + "sugar", + "shredded cheddar cheese", + "corn chips", + "chopped onion", + "sour cream", + "tomato sauce", + "white onion", + "chili powder", + "salt", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 14856, + "cuisine": "french", + "ingredients": [ + "mussels", + "crab", + "fresh thyme", + "ocean perch", + "yellow onion", + "country bread", + "boiling water", + "fish steaks", + "fennel", + "egg yolks", + "extra-virgin olive oil", + "freshly ground pepper", + "bay leaf", + "orange zest", + "tomatoes", + "water", + "potatoes", + "dry white wine", + "halibut", + "flat leaf parsley", + "fish", + "saffron threads", + "bread crumbs", + "cayenne", + "leeks", + "salt", + "garlic cloves", + "toast" + ] + }, + { + "id": 11553, + "cuisine": "mexican", + "ingredients": [ + "reduced fat monterey jack cheese", + "lettuce leaves", + "long-grain rice", + "herbs", + "ground red pepper", + "canned black beans", + "green onions", + "ground cumin", + "flour tortillas", + "salsa" + ] + }, + { + "id": 15852, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "Alfredo sauce", + "mozzarella cheese", + "salt", + "black pepper", + "basil", + "pasta", + "marinara sauce", + "oregano" + ] + }, + { + "id": 20833, + "cuisine": "indian", + "ingredients": [ + "pepper", + "ginger", + "green chilies", + "tumeric", + "finely chopped onion", + "salt", + "coconut milk", + "tomatoes", + "roasted sesame seeds", + "garlic", + "roasted peanuts", + "grated coconut", + "chili powder", + "broccoli", + "ghee" + ] + }, + { + "id": 18529, + "cuisine": "greek", + "ingredients": [ + "plain low-fat yogurt", + "lamb", + "dried oregano", + "garlic", + "cucumber", + "pepper", + "lemon juice", + "bread", + "salt", + "fresh mint" + ] + }, + { + "id": 41761, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "butter", + "cranberries", + "large eggs", + "salt", + "fresh ginger", + "vanilla extract", + "sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 49184, + "cuisine": "vietnamese", + "ingredients": [ + "light soy sauce", + "garlic", + "sugar", + "pork liver", + "green papaya", + "thai basil", + "rice vinegar", + "Sriracha", + "beef jerky" + ] + }, + { + "id": 8136, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "shredded coconut", + "ground red pepper", + "tamarind paste", + "jaggery", + "eggs", + "fresh ginger root", + "salt", + "cumin seed", + "tomatoes", + "water", + "garlic", + "ground coriander", + "ground turmeric", + "black peppercorns", + "cooking oil", + "cilantro leaves", + "onions" + ] + }, + { + "id": 20241, + "cuisine": "indian", + "ingredients": [ + "all-purpose flour", + "whole wheat flour", + "olive oil", + "hot water", + "salt" + ] + }, + { + "id": 48715, + "cuisine": "italian", + "ingredients": [ + "unflavored gelatin", + "water", + "blackberries", + "syrup", + "heavy cream", + "sugar", + "buttermilk", + "crème de cassis", + "fresh lemon juice" + ] + }, + { + "id": 1479, + "cuisine": "italian", + "ingredients": [ + "milk", + "ground nutmeg", + "low-fat ricotta cheese", + "butter", + "tomato purée", + "freshly grated parmesan", + "pumpkin", + "baby spinach", + "onions", + "tomato paste", + "olive oil", + "fennel bulb", + "bay leaves", + "garlic", + "ground cinnamon", + "salt and ground black pepper", + "lasagna noodles", + "lean ground beef", + "all-purpose flour" + ] + }, + { + "id": 22912, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "2% reduced-fat milk", + "grated nutmeg", + "solid pack pumpkin", + "large eggs", + "salt", + "evaporated skim milk", + "water", + "cooking spray", + "maple syrup", + "granulated sugar", + "vanilla extract", + "dark brown sugar" + ] + }, + { + "id": 28837, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "eggs", + "oil", + "buttermilk", + "sugar", + "white cornmeal" + ] + }, + { + "id": 69, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "extra-virgin olive oil", + "roast red peppers, drain", + "ground black pepper", + "fine sea salt", + "red potato", + "garlic", + "baby spinach", + "yellow onion" + ] + }, + { + "id": 763, + "cuisine": "vietnamese", + "ingredients": [ + "green onions", + "chili flakes", + "parsley flakes", + "glaze", + "chicken wings" + ] + }, + { + "id": 8974, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "side pork", + "ginger", + "sherry", + "glass noodles", + "sugar", + "salt" + ] + }, + { + "id": 36976, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "chinese five-spice powder", + "soy sauce", + "maltose", + "chopped garlic", + "sugar", + "Shaoxing wine", + "oyster sauce", + "pork belly", + "red preserved bean curd" + ] + }, + { + "id": 8283, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "grated parmesan cheese", + "butter", + "baby spinach leaves", + "butternut squash", + "low salt chicken broth", + "fresh rosemary", + "crumbled blue cheese", + "whipping cream", + "finely chopped onion", + "dry white wine" + ] + }, + { + "id": 45610, + "cuisine": "japanese", + "ingredients": [ + "honey", + "large eggs", + "panko breadcrumbs", + "warm water", + "garlic powder", + "boneless skinless chicken breasts", + "sesame seeds", + "green onions", + "soy sauce", + "Sriracha", + "corn starch" + ] + }, + { + "id": 5002, + "cuisine": "italian", + "ingredients": [ + "egg yolks", + "ground nutmeg", + "salt", + "romano cheese", + "butter", + "grated parmesan cheese", + "heavy whipping cream" + ] + }, + { + "id": 9987, + "cuisine": "french", + "ingredients": [ + "large eggs", + "unsalted butter", + "lemon peel", + "sugar", + "fresh lemon juice" + ] + }, + { + "id": 10106, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "konbu", + "soy sauce", + "peeled fresh ginger", + "bonito flakes", + "lemon juice", + "dashi", + "daikon" + ] + }, + { + "id": 5864, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "bell pepper", + "flat leaf parsley", + "ground black pepper", + "salt", + "penne", + "extra-virgin olive oil", + "caponata", + "chicken broth", + "grated parmesan cheese", + "scallions" + ] + }, + { + "id": 6283, + "cuisine": "italian", + "ingredients": [ + "store bought low sodium chicken broth", + "ground black pepper", + "cutlet", + "all-purpose flour", + "kosher salt", + "boneless skinless chicken breasts", + "button mushrooms", + "fresh lemon juice", + "marsala wine", + "unsalted butter", + "bacon", + "fresh parsley leaves", + "pasta", + "olive oil", + "shallots", + "garlic", + "sage" + ] + }, + { + "id": 6653, + "cuisine": "indian", + "ingredients": [ + "canola", + "rice", + "red bell pepper", + "skim milk", + "salt", + "fresh lemon juice", + "cooked chicken breasts", + "vegetable oil cooking spray", + "cilantro", + "chopped onion", + "frozen peas", + "curry powder", + "all-purpose flour", + "carrots" + ] + }, + { + "id": 48215, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "black pepper", + "bay leaf", + "salt", + "water", + "smoked ham hocks" + ] + }, + { + "id": 1399, + "cuisine": "irish", + "ingredients": [ + "white chocolate chips", + "chocolate sprinkles", + "granulated sugar", + "marshmallow creme", + "unsalted butter", + "heavy cream", + "Baileys Irish Cream Liqueur", + "milk chocolate chips" + ] + }, + { + "id": 7422, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "grated parmesan cheese", + "ground red pepper", + "hot sauce", + "black pepper", + "ground black pepper", + "quickcooking grits", + "extra-virgin olive oil", + "fresh lemon juice", + "capers", + "cherry tomatoes", + "chopped fresh chives", + "shallots", + "garlic cloves", + "fresh chives", + "unsalted butter", + "dry white wine", + "salt", + "shrimp" + ] + }, + { + "id": 16422, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "pork sausages", + "milk", + "salt", + "all-purpose flour" + ] + }, + { + "id": 44537, + "cuisine": "chinese", + "ingredients": [ + "lime", + "sesame oil", + "reduced sodium soy sauce", + "fresh ginger", + "minced garlic", + "flank steak" + ] + }, + { + "id": 47211, + "cuisine": "chinese", + "ingredients": [ + "shallots", + "cilantro leaves", + "sesame seeds", + "large garlic cloves", + "yardlong beans", + "salted roast peanuts", + "lime wedges", + "peanut oil" + ] + }, + { + "id": 47829, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "carrots", + "bread crumb fresh", + "garlic", + "bacon drippings", + "ground pork", + "fresh parsley", + "quail", + "chopped celery" + ] + }, + { + "id": 30409, + "cuisine": "french", + "ingredients": [ + "dried thyme", + "white wine vinegar", + "celery", + "chicken", + "canned low sodium chicken broth", + "fresh thyme", + "small red potato", + "fresh parsley", + "turnips", + "ground black pepper", + "salt", + "bay leaf", + "water", + "cooking oil", + "carrots", + "onions" + ] + }, + { + "id": 32542, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "tortillas", + "paprika", + "enchilada sauce", + "shredded Monterey Jack cheese", + "garlic powder", + "green onions", + "cayenne pepper", + "cumin", + "shredded cheddar cheese", + "flour", + "salt", + "ripe olives", + "tomato sauce", + "diced green chilies", + "chili powder", + "hamburger", + "ground oregano" + ] + }, + { + "id": 1853, + "cuisine": "italian", + "ingredients": [ + "roasted red peppers", + "flat leaf parsley", + "pepper flakes", + "bocconcini", + "fresh oregano", + "baguette", + "oil" + ] + }, + { + "id": 7494, + "cuisine": "southern_us", + "ingredients": [ + "panko", + "green onions", + "worcestershire sauce", + "yellow onion", + "pork shoulder roast", + "Sriracha", + "yukon gold potatoes", + "bacon slices", + "sour cream", + "tomatoes", + "dijon mustard", + "apple cider vinegar", + "sea salt", + "sharp cheddar cheese", + "ground pepper", + "large eggs", + "butter", + "purple onion", + "bread slices" + ] + }, + { + "id": 20580, + "cuisine": "southern_us", + "ingredients": [ + "diced onions", + "sugar", + "celery", + "chicken broth", + "pepper", + "chopped cooked ham", + "turnip greens", + "green bell pepper", + "vegetable oil" + ] + }, + { + "id": 22205, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "garlic cloves", + "butter", + "lemon rind", + "onions", + "fettucine", + "1% low-fat milk", + "chopped walnuts", + "gorgonzola", + "butternut squash", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 24492, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "garlic", + "italian sausage", + "diced tomatoes", + "vegetables", + "zucchini" + ] + }, + { + "id": 41414, + "cuisine": "brazilian", + "ingredients": [ + "green onions", + "garlic", + "olives", + "salad", + "peas", + "low salt chicken broth", + "golden raisins", + "white rice", + "chopped parsley", + "butter", + "frozen corn" + ] + }, + { + "id": 42338, + "cuisine": "italian", + "ingredients": [ + "fillet red snapper", + "bay leaves", + "shells", + "fresh parsley", + "celery ribs", + "salt and ground black pepper", + "fish stock", + "Italian bread", + "white vinegar", + "olive oil", + "red pepper flakes", + "carrots", + "onions", + "clams", + "whole peeled tomatoes", + "garlic", + "medium shrimp" + ] + }, + { + "id": 43223, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "salt", + "fresh lemon juice", + "cooked chicken", + "grated lemon zest", + "seedless red grapes", + "sweet onion", + "lemon slices", + "chopped pecans", + "celery ribs", + "fresh tarragon", + "freshly ground pepper" + ] + }, + { + "id": 29031, + "cuisine": "japanese", + "ingredients": [ + "halibut fillets", + "carrots", + "sake", + "butter", + "vegetable oil spray", + "onions", + "fresh dill", + "garlic cloves" + ] + }, + { + "id": 29507, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella", + "large eggs", + "frozen chopped spinach, thawed and squeezed dry", + "pepper", + "salt", + "nutmeg", + "garlic powder", + "ricotta", + "tomato sauce", + "grated parmesan cheese", + "oven-ready lasagna noodles" + ] + }, + { + "id": 22821, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "garlic cloves", + "grape tomatoes", + "cannellini beans", + "onions", + "celery ribs", + "parmigiano reggiano cheese", + "thyme sprigs", + "sugar", + "extra-virgin olive oil" + ] + }, + { + "id": 12916, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "granulated sugar", + "peaches in heavy syrup", + "self rising flour" + ] + }, + { + "id": 18811, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "green onions", + "all-purpose flour", + "fresh parsley", + "tomato paste", + "pepper", + "chopped celery", + "green pepper", + "crawfish", + "butter", + "cayenne pepper", + "chicken broth", + "water", + "salt", + "bay leaf" + ] + }, + { + "id": 24776, + "cuisine": "thai", + "ingredients": [ + "stevia extract", + "soy sauce", + "lime wedges", + "tamarind paste", + "unsalted peanut butter", + "rice paper", + "fish sauce", + "radishes", + "cilantro", + "scallions", + "beansprouts", + "eggs", + "olive oil", + "rice noodles", + "roasted peanuts", + "red bell pepper", + "squirt", + "basil leaves", + "thai chile", + "garlic cloves", + "cooked shrimp" + ] + }, + { + "id": 46994, + "cuisine": "southern_us", + "ingredients": [ + "tomato paste", + "minced onion", + "center cut loin pork chop", + "minced garlic", + "salt", + "low sodium soy sauce", + "cooking spray", + "water", + "lemon juice" + ] + }, + { + "id": 39184, + "cuisine": "southern_us", + "ingredients": [ + "cream of celery soup", + "celery heart", + "pepper", + "white rice", + "white onion", + "red pepper flakes", + "chicken broth", + "mild pork sausage", + "salt" + ] + }, + { + "id": 6363, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "reduced-fat sour cream", + "large shrimp", + "tomato paste", + "olive oil", + "garlic cloves", + "fettucine", + "grated parmesan cheese", + "plum tomatoes", + "dried basil", + "crushed red pepper" + ] + }, + { + "id": 42954, + "cuisine": "mexican", + "ingredients": [ + "ground pepper", + "salt", + "cumin", + "olive oil", + "chili powder", + "onions", + "chili flakes", + "chicken breasts", + "green pepper", + "garlic powder", + "red pepper", + "yellow peppers" + ] + }, + { + "id": 27196, + "cuisine": "cajun_creole", + "ingredients": [ + "dried basil", + "chicken breasts", + "smoked sausage", + "black pepper", + "baked ham", + "white rice", + "chicken broth", + "dried thyme", + "red pepper flakes", + "onions", + "white pepper", + "green onions", + "garlic" + ] + }, + { + "id": 35614, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "Italian bread", + "fresh parsley leaves", + "unsalted butter", + "chopped garlic", + "fresh lemon juice" + ] + }, + { + "id": 38040, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "onions", + "fresh bay leaves", + "salt", + "chopped celery", + "plum tomatoes", + "peperoncino", + "carrots" + ] + }, + { + "id": 9760, + "cuisine": "irish", + "ingredients": [ + "garlic bulb", + "truffle oil", + "fresh chives", + "russet potatoes", + "Kerrygold Pure Irish Butter", + "whole milk", + "pepper", + "salt" + ] + }, + { + "id": 44886, + "cuisine": "chinese", + "ingredients": [ + "cream cheese", + "white sugar", + "garlic powder", + "sour cream", + "imitation crab meat", + "wonton wrappers", + "onions" + ] + }, + { + "id": 40197, + "cuisine": "southern_us", + "ingredients": [ + "cornmeal", + "green tomatoes", + "sugar", + "vegetable oil" + ] + }, + { + "id": 7998, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lemongrass", + "salmon fillets", + "Thai red curry paste", + "brown sugar", + "vegetable oil", + "unsweetened coconut milk", + "baby bok choy", + "fresh lime juice" + ] + }, + { + "id": 21305, + "cuisine": "italian", + "ingredients": [ + "I Can't Believe It's Not Butter!® Spread", + "linguine, cook and drain", + "chopped walnuts", + "garlic", + "Bertolli® Alfredo Sauce" + ] + }, + { + "id": 48611, + "cuisine": "mexican", + "ingredients": [ + "minced onion", + "fat skimmed chicken broth", + "diced tomatoes", + "long grain white rice", + "jalapeno chilies", + "salad oil", + "minced garlic", + "salt" + ] + }, + { + "id": 4275, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "chicken breasts", + "cream cheese", + "tortillas", + "salt", + "cumin", + "garlic powder", + "dipping sauces", + "shredded cheese", + "dressing", + "jalapeno chilies", + "salsa" + ] + }, + { + "id": 36318, + "cuisine": "southern_us", + "ingredients": [ + "sweet potatoes", + "pumpkin pie spice", + "eggs", + "whipped topping", + "pie crust mix", + "McCormick® Pure Vanilla Extract", + "chopped pecans", + "cold water", + "salt", + "sweetened condensed milk" + ] + }, + { + "id": 3092, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "cayenne", + "garlic", + "sour cream", + "chopped cilantro fresh", + "ground cumin", + "shredded cheddar cheese", + "chili powder", + "salsa", + "fresh lime juice", + "dried oregano", + "avocado", + "refried beans", + "vegetable oil", + "yellow onion", + "ground beef", + "masa harina", + "black pepper", + "jalapeno chilies", + "salt", + "corn tortillas", + "plum tomatoes" + ] + }, + { + "id": 49525, + "cuisine": "japanese", + "ingredients": [ + "burgers", + "ground black pepper", + "ground pork", + "ketchup", + "whole milk", + "panko breadcrumbs", + "soy sauce", + "beef", + "salt", + "wasabi", + "white onion", + "sesame oil" + ] + }, + { + "id": 23761, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "pinto beans", + "sliced green onions", + "chicken stock", + "cilantro", + "onions", + "diced green chilies", + "diced ham", + "ground cumin", + "tomatoes", + "ham", + "chopped cilantro fresh" + ] + }, + { + "id": 44135, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "pecans", + "butter", + "bourbon whiskey", + "sugar", + "buttermilk" + ] + }, + { + "id": 10187, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic powder", + "sesame oil", + "onions", + "savoy cabbage", + "olive oil", + "egg roll wraps", + "corn starch", + "water", + "shredded carrots", + "rice vinegar", + "ground ginger", + "fresh ginger", + "onion powder", + "beansprouts" + ] + }, + { + "id": 39921, + "cuisine": "italian", + "ingredients": [ + "egg noodles", + "pasta sauce", + "shredded mozzarella cheese", + "grated parmesan cheese", + "cottage cheese", + "ground beef" + ] + }, + { + "id": 23266, + "cuisine": "indian", + "ingredients": [ + "neutral oil", + "bay leaves", + "ginger", + "medium shrimp", + "unsalted butter", + "mint sprigs", + "yellow onion", + "basmati rice", + "green cardamom pods", + "whole cloves", + "cilantro", + "cinnamon sticks", + "ground turmeric", + "black peppercorns", + "large garlic cloves", + "salt", + "serrano chile" + ] + }, + { + "id": 31385, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "ground black pepper", + "cream cheese", + "olive oil", + "red pepper flakes", + "sour cream", + "sweet onion", + "dry white wine", + "garlic cloves", + "collard greens", + "freshly grated parmesan", + "bacon slices" + ] + }, + { + "id": 8849, + "cuisine": "indian", + "ingredients": [ + "chopped tomatoes", + "maida flour", + "chutney", + "ajwain", + "potatoes", + "curds", + "chaat masala", + "red chili powder", + "garbanzo beans", + "salt", + "onions", + "water", + "baking powder", + "oil" + ] + }, + { + "id": 26259, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "zucchini", + "lemon", + "yellow onion", + "oregano", + "fennel seeds", + "eggplant", + "italian plum tomatoes", + "salt", + "red bell pepper", + "kidney beans", + "jalapeno chilies", + "garlic", + "lemon juice", + "ground cumin", + "sugar", + "ground black pepper", + "chili powder", + "white beans", + "chopped cilantro fresh" + ] + }, + { + "id": 47926, + "cuisine": "korean", + "ingredients": [ + "water", + "leeks", + "onions", + "Korean chile flakes", + "zucchini", + "kelp", + "tofu", + "anchovies", + "garlic cloves", + "red chili peppers", + "enokitake", + "doenzang" + ] + }, + { + "id": 39244, + "cuisine": "irish", + "ingredients": [ + "beef stock", + "tomatoes with juice", + "fresh oregano", + "small red potato", + "fresh rosemary", + "chopped fresh thyme", + "purple onion", + "beer", + "celery", + "rutabaga", + "lamb stew meat", + "garlic", + "pearl barley", + "carrots", + "salt and ground black pepper", + "bacon", + "all-purpose flour", + "fresh mushrooms" + ] + }, + { + "id": 45505, + "cuisine": "vietnamese", + "ingredients": [ + "green onions", + "unsalted dry roast peanuts", + "mung bean sprouts", + "beef", + "garlic", + "fresh mint", + "tofu", + "rice vermicelli", + "shrimp", + "lime", + "dipping sauces", + "cucumber" + ] + }, + { + "id": 9566, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "raisins", + "corn starch", + "sweet pickle", + "ground pork", + "chorizo", + "salt", + "eggs", + "ground black pepper", + "fully cooked luncheon meat" + ] + }, + { + "id": 43571, + "cuisine": "mexican", + "ingredients": [ + "baby spinach leaves", + "tomatillos", + "salt", + "fresh cilantro", + "yellow bell pepper", + "cooked white rice", + "lime juice", + "deveined shrimp", + "hot sauce", + "bay scallops", + "purple onion" + ] + }, + { + "id": 43794, + "cuisine": "korean", + "ingredients": [ + "cooked brown rice", + "garlic", + "dark sesame oil", + "toasted sesame seeds", + "green cabbage", + "agave nectar", + "yellow onion", + "carrots", + "shiitake", + "rice vinegar", + "english cucumber", + "soy sauce", + "grapeseed oil", + "Gochujang base", + "red bell pepper" + ] + }, + { + "id": 13210, + "cuisine": "french", + "ingredients": [ + "butter lettuce", + "lemon slices", + "peppercorns", + "fresh dill", + "clam juice", + "fresh lemon juice", + "dry white wine", + "dill tips", + "salmon fillets", + "cornichons", + "sour cream" + ] + }, + { + "id": 20815, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "all-purpose flour", + "medium shrimp", + "dry vermouth", + "cooking spray", + "garlic cloves", + "fennel bulb", + "hot sauce", + "polenta", + "pepper", + "sprinkles", + "low salt chicken broth" + ] + }, + { + "id": 6169, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "dried basil", + "boneless skinless chicken breasts", + "all-purpose flour", + "water", + "unsalted butter", + "onion powder", + "frozen peas and carrots", + "kosher salt", + "garlic powder", + "baking powder", + "poultry seasoning", + "chicken broth", + "milk", + "flour", + "butter", + "dried parsley" + ] + }, + { + "id": 31110, + "cuisine": "french", + "ingredients": [ + "eggs", + "salt", + "unsalted butter", + "anise seed", + "baking powder", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 31190, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "pepper", + "oil", + "eggs", + "boneless chicken thighs", + "panko", + "ketchup", + "water", + "corn starch", + "sugar", + "white pepper", + "worcestershire sauce" + ] + }, + { + "id": 4614, + "cuisine": "japanese", + "ingredients": [ + "shiitake", + "vegetable oil", + "spinach", + "shallots", + "low sodium canned chicken stock", + "low sodium soy sauce", + "udon", + "rice vinegar", + "fresh ginger", + "sesame oil", + "scallions" + ] + }, + { + "id": 38877, + "cuisine": "chinese", + "ingredients": [ + "chinese noodles", + "dark soy sauce", + "oyster sauce", + "chicken stock", + "spring onions", + "light soy sauce", + "bok choy" + ] + }, + { + "id": 3775, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "peanuts", + "vanilla", + "kosher salt", + "butter", + "milk chocolate", + "bourbon whiskey", + "corn syrup", + "water", + "sea salt" + ] + }, + { + "id": 20000, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "tomato salsa", + "onions", + "tomato sauce", + "jalapeno chilies", + "grated jack cheese", + "flour tortillas", + "pink beans", + "ground cumin", + "fresh coriander", + "guacamole", + "garlic cloves" + ] + }, + { + "id": 33351, + "cuisine": "indian", + "ingredients": [ + "strawberries", + "sugar", + "ice cubes", + "ground cardamom", + "plain yogurt" + ] + }, + { + "id": 37753, + "cuisine": "italian", + "ingredients": [ + "ricotta salata", + "strozzapreti", + "spinach", + "extra-virgin olive oil", + "garlic cloves", + "coarse salt", + "roasting chickens", + "pinenuts", + "fine sea salt", + "fresh basil leaves" + ] + }, + { + "id": 49702, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "chopped fresh thyme", + "cayenne pepper", + "onions", + "tasso", + "green onions", + "paprika", + "red bell pepper", + "applewood smoked bacon", + "celery ribs", + "boneless chicken skinless thigh", + "diced tomatoes", + "sausages", + "long grain white rice", + "green bell pepper", + "chili powder", + "beef broth", + "flat leaf parsley" + ] + }, + { + "id": 4283, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "finely chopped onion", + "salt", + "ground round", + "garlic powder", + "dry mustard", + "green pepper", + "egg substitute", + "ground red pepper", + "margarine", + "vegetable oil cooking spray", + "prepared horseradish", + "onion flakes", + "sliced mushrooms" + ] + }, + { + "id": 7435, + "cuisine": "indian", + "ingredients": [ + "water", + "chili powder", + "salt", + "tomatoes", + "garam masala", + "ginger", + "onions", + "fennel seeds", + "curry powder", + "butter", + "black cardamom pods", + "pepper", + "chicken breasts", + "garlic", + "cumin" + ] + }, + { + "id": 12318, + "cuisine": "british", + "ingredients": [ + "yukon gold potatoes", + "salt", + "olive oil", + "butter", + "frozen peas", + "pepper", + "lean ground beef", + "herbes de provence", + "ground nutmeg", + "garlic" + ] + }, + { + "id": 45437, + "cuisine": "japanese", + "ingredients": [ + "avocado", + "rice vinegar", + "white rice", + "nori", + "water", + "cucumber", + "salt" + ] + }, + { + "id": 10725, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "diced green chilies", + "salt", + "onions", + "garlic powder", + "chili powder", + "hot sauce", + "olive oil", + "chuck roast", + "beef broth", + "masa harina", + "corn husks", + "beef stock cubes", + "lard" + ] + }, + { + "id": 31703, + "cuisine": "greek", + "ingredients": [ + "artichok heart marin", + "fresh oregano", + "marinade", + "low salt chicken broth", + "chicken breast halves", + "fresh lemon juice", + "olive oil", + "crushed red pepper", + "grated lemon peel" + ] + }, + { + "id": 8505, + "cuisine": "italian", + "ingredients": [ + "whole milk", + "sugar", + "corn starch", + "salt", + "hazelnuts", + "bittersweet chocolate" + ] + }, + { + "id": 11909, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "half & half", + "butter", + "canola oil", + "russet", + "cayenne", + "whole milk", + "all-purpose flour", + "seasoning salt", + "gravy", + "salt", + "cube steaks", + "black pepper", + "large eggs", + "meat", + "cream cheese" + ] + }, + { + "id": 35804, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "cinnamon", + "large eggs", + "salt", + "vegetables", + "lemon", + "ground cinnamon", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 25635, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "Kraft Sun Dried Tomato Vinaigrette", + "feta cheese", + "sun-dried tomatoes", + "spinach", + "chicken breasts" + ] + }, + { + "id": 28266, + "cuisine": "french", + "ingredients": [ + "all-purpose flour", + "butter", + "vanilla extract", + "eggs", + "white sugar" + ] + }, + { + "id": 24509, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "corn starch", + "ground ginger", + "green onions", + "rice vinegar", + "dry roasted peanuts", + "crushed red pepper flakes", + "sugar", + "boneless skinless chicken breasts", + "garlic cloves" + ] + }, + { + "id": 13255, + "cuisine": "cajun_creole", + "ingredients": [ + "dried basil", + "boneless skinless chicken breasts", + "salt", + "ground black pepper", + "butter", + "heavy whipping cream", + "sun-dried tomatoes", + "cajun seasoning", + "garlic cloves", + "grated parmesan cheese", + "linguine" + ] + }, + { + "id": 19957, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cooking spray", + "salt", + "spaghetti", + "tomato paste", + "crushed tomatoes", + "stewed tomatoes", + "garlic cloves", + "diced onions", + "black pepper", + "lean ground beef", + "shredded zucchini", + "dried oregano", + "green bell pepper", + "roasted red peppers", + "crushed red pepper", + "red bell pepper" + ] + }, + { + "id": 23029, + "cuisine": "french", + "ingredients": [ + "English mustard", + "lobster", + "fish stock", + "ground black pepper", + "butter", + "fresh lemon juice", + "white wine", + "shallots", + "salt", + "grated parmesan cheese", + "double cream", + "fresh parsley" + ] + }, + { + "id": 31970, + "cuisine": "french", + "ingredients": [ + "soy sauce", + "sesame oil", + "garlic cloves", + "fresh lime juice", + "hoisin sauce", + "dark brown sugar", + "carrots", + "rice stick noodles", + "yardlong beans", + "scallions", + "chinese black vinegar", + "Sriracha", + "confit duck leg", + "fresh herbs" + ] + }, + { + "id": 670, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "olive oil", + "chop fine pecan", + "fresh mushrooms", + "rosemary sprigs", + "large eggs", + "chicken breasts", + "fresh rosemary", + "cream of chicken soup", + "green onions", + "cornbread stuffing mix", + "pepper", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 39534, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "part-skim ricotta cheese", + "cooking spray", + "portobello caps", + "garlic powder", + "salt", + "pasta sauce", + "cannellini beans", + "dried rosemary" + ] + }, + { + "id": 9226, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "dried thyme", + "green onions", + "all-purpose flour", + "garlic cloves", + "celery ribs", + "water", + "steamed white rice", + "diced tomatoes", + "cayenne pepper", + "lump crab meat", + "ground black pepper", + "corn oil", + "yellow onion", + "shrimp", + "green bell pepper", + "oysters", + "bay leaves", + "salt", + "okra" + ] + }, + { + "id": 30777, + "cuisine": "indian", + "ingredients": [ + "atta", + "potatoes", + "salt", + "water", + "butter", + "chillies", + "fenugreek leaves", + "seeds", + "cilantro leaves", + "dough", + "garam masala", + "ginger" + ] + }, + { + "id": 42835, + "cuisine": "british", + "ingredients": [ + "powdered sugar", + "mint leaves", + "lemon juice", + "cream of tartar", + "mascarpone", + "vanilla extract", + "mint", + "egg whites", + "fresh raspberries", + "sugar", + "heavy cream", + "blackberries" + ] + }, + { + "id": 46429, + "cuisine": "japanese", + "ingredients": [ + "sesame", + "granulated sugar", + "salt", + "avocado", + "salmon", + "green onions", + "cucumber", + "sushi rice", + "flour", + "rice vinegar", + "eggs", + "water", + "teriyaki sauce", + "panko breadcrumbs" + ] + }, + { + "id": 43586, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "cilantro", + "glass noodles", + "chicken breasts", + "ginger root", + "fish sauce", + "scallions", + "giblet", + "pickled vegetables" + ] + }, + { + "id": 32920, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "spelt", + "paprika", + "kosher salt", + "boneless skinless chicken breasts", + "honey", + "fresh lime juice" + ] + }, + { + "id": 19774, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "large garlic cloves", + "paneer cheese", + "low-fat coconut milk", + "garam masala", + "cayenne pepper", + "minced ginger", + "salt", + "ground cumin", + "spinach", + "baby spinach", + "ground coriander" + ] + }, + { + "id": 15774, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "ground black pepper", + "chopped onion", + "fresh parmesan cheese", + "crushed red pepper", + "garlic cloves", + "water", + "cooking spray", + "Italian turkey sausage", + "grape tomatoes", + "broccoli rabe", + "salt", + "orecchiette" + ] + }, + { + "id": 8124, + "cuisine": "jamaican", + "ingredients": [ + "ketchup", + "bell pepper", + "salt", + "water", + "hot pepper", + "onions", + "black pepper", + "seeds", + "carrots", + "fish steaks", + "cooking oil", + "garlic" + ] + }, + { + "id": 11047, + "cuisine": "southern_us", + "ingredients": [ + "coarse salt", + "large eggs", + "hot sauce", + "buttermilk biscuits", + "extra-virgin olive oil", + "gravy", + "freshly ground pepper" + ] + }, + { + "id": 47879, + "cuisine": "southern_us", + "ingredients": [ + "orange slices", + "black tea", + "cold water", + "orange juice", + "ice cubes", + "lemon juice", + "agave nectar", + "cinnamon sticks" + ] + }, + { + "id": 45561, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "cotija", + "lime", + "avocado", + "fresh cilantro", + "salt", + "mayonaise", + "corn", + "cayenne pepper" + ] + }, + { + "id": 15655, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "fresh lemon juice", + "lemon", + "extra-virgin olive oil", + "water" + ] + }, + { + "id": 12253, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "mint leaves", + "sugar syrup" + ] + }, + { + "id": 25915, + "cuisine": "korean", + "ingredients": [ + "cooked brown rice", + "mirin", + "sesame oil", + "olive oil cooking spray", + "sesame seeds", + "pork tenderloin", + "scallions", + "fresh ginger", + "Sriracha", + "garlic", + "Boston lettuce", + "reduced sodium soy sauce", + "evaporated cane juice", + "cucumber" + ] + }, + { + "id": 14469, + "cuisine": "italian", + "ingredients": [ + "soy sauce", + "mushrooms", + "extra-virgin olive oil", + "lemon juice", + "wild mushrooms", + "ground black pepper", + "shallots", + "maple syrup", + "escarole", + "sweet potatoes", + "fresh thyme leaves", + "fresh parsley leaves", + "butter beans", + "kosher salt", + "dry white wine", + "garlic", + "oven-ready lasagna noodles", + "canola oil" + ] + }, + { + "id": 22699, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "boneless skinless chicken breasts", + "onions", + "sweet potatoes", + "green beans", + "kosher salt", + "vegetable oil", + "basil leaves", + "curry paste" + ] + }, + { + "id": 44469, + "cuisine": "french", + "ingredients": [ + "ground cloves", + "ground black pepper", + "ground pork", + "celery", + "water", + "lean ground beef", + "garlic", + "onions", + "chicken bouillon", + "egg yolks", + "deep dish pie crust", + "bay leaf", + "ground cinnamon", + "ground nutmeg", + "baking potatoes", + "carrots" + ] + }, + { + "id": 39102, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "ginger", + "chopped cilantro", + "extra firm tofu", + "vegetable oil", + "garlic cloves", + "ground turmeric", + "unsweetened soymilk", + "chili powder", + "salt", + "onions", + "jalapeno chilies", + "cilantro", + "lemon juice" + ] + }, + { + "id": 32426, + "cuisine": "jamaican", + "ingredients": [ + "fresh thyme", + "salt", + "long-grain rice", + "unsweetened coconut milk", + "jalapeno chilies", + "scallions", + "dried kidney beans", + "bell pepper", + "ground allspice", + "garlic cloves", + "black pepper", + "vegetable oil", + "yams" + ] + }, + { + "id": 15247, + "cuisine": "japanese", + "ingredients": [ + "spinach", + "sesame seeds", + "soy sauce", + "dashi", + "sugar", + "salt" + ] + }, + { + "id": 9912, + "cuisine": "korean", + "ingredients": [ + "eggs", + "zucchini", + "salt", + "soy sauce", + "flour", + "scallions", + "sugar", + "vinegar", + "squid", + "cold water", + "sesame seeds", + "crushed garlic" + ] + }, + { + "id": 34400, + "cuisine": "southern_us", + "ingredients": [ + "chopped ham", + "light cream", + "butter", + "rice flour", + "olive oil", + "baking powder", + "xanthan gum", + "collard greens", + "leeks", + "salt", + "eggs", + "baking soda", + "cheese" + ] + }, + { + "id": 3213, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "self rising flour", + "milk", + "canola oil", + "kosher salt", + "cracked black pepper", + "garlic powder", + "chicken" + ] + }, + { + "id": 14310, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "red wine", + "orange", + "fresh lemon juice", + "brandy", + "fresh orange juice", + "lemon", + "ice" + ] + }, + { + "id": 17001, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "chicken broth", + "fresh cilantro", + "avocado", + "salt" + ] + }, + { + "id": 15075, + "cuisine": "italian", + "ingredients": [ + "lemon", + "large shrimp", + "ground pepper", + "garlic", + "olive oil", + "linguine", + "butter", + "fresh parsley" + ] + }, + { + "id": 23632, + "cuisine": "indian", + "ingredients": [ + "whole wheat flour", + "chopped cilantro", + "water", + "sea salt", + "chaat masala", + "cauliflower", + "chili powder", + "onions", + "olive oil", + "green chilies", + "mango" + ] + }, + { + "id": 12118, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "chickpeas", + "onions", + "chicken broth", + "chicken breasts", + "lentils", + "fresh coriander", + "long-grain rice", + "saffron threads", + "water", + "fresh parsley leaves" + ] + }, + { + "id": 21651, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salt", + "chiles" + ] + }, + { + "id": 6210, + "cuisine": "jamaican", + "ingredients": [ + "shallots", + "garlic cloves", + "habanero pepper", + "extra-virgin olive oil", + "fresh thyme", + "parsley", + "bird chile", + "chives", + "scallions" + ] + }, + { + "id": 21624, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "fresh coriander", + "fresh ginger", + "finely chopped onion", + "chicken breasts", + "garlic", + "ground almonds", + "ginger root", + "onions", + "chicken", + "tumeric", + "plain yogurt", + "coconut", + "garam masala", + "yoghurt", + "apples", + "skinless chicken breasts", + "lemon juice", + "curry paste", + "basmati rice", + "sultana", + "pepper", + "olive oil", + "ground black pepper", + "spring onions", + "cornflour", + "rice", + "low-fat natural yogurt", + "ghee", + "ground turmeric", + "black pepper", + "water", + "bananas", + "dried apricot", + "vegetable oil", + "salt", + "garlic cloves", + "coconut milk", + "coriander", + "ground cumin" + ] + }, + { + "id": 14397, + "cuisine": "southern_us", + "ingredients": [ + "white corn", + "vegetable oil spray", + "2% reduced-fat milk", + "sliced green onions", + "kale", + "roasted red peppers", + "sharp cheddar cheese", + "water", + "hot pepper sauce", + "salt", + "yellow corn meal", + "olive oil", + "large eggs", + "garlic cloves" + ] + }, + { + "id": 41495, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "cumin", + "garlic cloves", + "salt", + "canola oil", + "lime", + "pinto beans" + ] + }, + { + "id": 45552, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "red cabbage", + "crushed red pepper", + "cabbage", + "sweet onion", + "sesame oil", + "scallions", + "pepper", + "vinegar", + "salt", + "sugar", + "sesame seeds", + "garlic", + "carrots" + ] + }, + { + "id": 31512, + "cuisine": "southern_us", + "ingredients": [ + "rum", + "ice", + "orange segments", + "fresh lime juice", + "gin", + "tequila", + "black tea" + ] + }, + { + "id": 33877, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "fresh ginger", + "cilantro", + "yellow onion", + "lemon juice", + "hothouse cucumber", + "white vinegar", + "guajillo chiles", + "garam masala", + "garlic", + "cumin seed", + "coconut milk", + "lamb shanks", + "coriander seeds", + "chile de arbol", + "green cardamom", + "cinnamon sticks", + "clove", + "plain yogurt", + "vegetable oil", + "salt", + "black mustard seeds", + "corn tortillas" + ] + }, + { + "id": 20564, + "cuisine": "korean", + "ingredients": [ + "pork", + "garlic", + "sugar", + "green onions", + "Gochujang base", + "soy sauce", + "soybean sprouts", + "kimchi juice", + "red pepper flakes", + "kimchi" + ] + }, + { + "id": 42160, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "flat leaf parsley", + "pitted kalamata olives", + "feta cheese crumbles", + "dried oregano", + "red wine vinegar", + "red bell pepper", + "diced red onions", + "cucumber" + ] + }, + { + "id": 19515, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "zucchini", + "sea salt", + "purple onion", + "cumin", + "shredded cheddar cheese", + "green onions", + "extra-virgin olive oil", + "red bell pepper", + "yellow squash", + "chili powder", + "crushed red pepper", + "dried oregano", + "black beans", + "mushrooms", + "diced tomatoes", + "salsa" + ] + }, + { + "id": 7594, + "cuisine": "chinese", + "ingredients": [ + "water", + "crushed red pepper flakes", + "corn starch", + "dark soy sauce", + "flank steak", + "salt", + "white sesame seeds", + "green onions", + "garlic", + "red bell pepper", + "soy sauce", + "sesame oil", + "dark brown sugar" + ] + }, + { + "id": 46112, + "cuisine": "southern_us", + "ingredients": [ + "shredded extra sharp cheddar cheese", + "extra-virgin olive oil", + "grits", + "reduced sodium chicken broth", + "bacon", + "salt", + "collard greens", + "large eggs", + "garlic", + "water", + "prepar salsa", + "onions" + ] + }, + { + "id": 17267, + "cuisine": "french", + "ingredients": [ + "cold water", + "dry white wine", + "garlic cloves", + "whole cloves", + "heavy cream", + "thyme", + "black peppercorns", + "vegetable oil", + "carrots", + "celery ribs", + "leeks", + "cornish hens", + "bay leaf" + ] + }, + { + "id": 41404, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "long-grain rice", + "cajun seasoning", + "snow peas", + "butter", + "olive oil", + "uncook medium shrimp, peel and devein" + ] + }, + { + "id": 38906, + "cuisine": "indian", + "ingredients": [ + "light brown sugar", + "water", + "cinnamon sticks", + "ground ginger", + "cardamom seeds", + "green cardamom pods", + "orange", + "peppercorns", + "fennel seeds", + "whole milk" + ] + }, + { + "id": 28161, + "cuisine": "french", + "ingredients": [ + "parmesan cheese", + "button mushrooms", + "cherry tomatoes", + "balsamic vinegar", + "artichokes", + "baby lima beans", + "unsalted butter", + "peas", + "olive oil", + "lemon", + "baby carrots" + ] + }, + { + "id": 41886, + "cuisine": "southern_us", + "ingredients": [ + "ground pepper", + "salt pork", + "bacon drippings", + "green onions", + "jalapeno chilies", + "onions", + "black-eyed peas", + "bacon" + ] + }, + { + "id": 21472, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "salt", + "brown sugar", + "lemon", + "fresh tomatoes", + "olive oil", + "bread ciabatta", + "garlic" + ] + }, + { + "id": 17033, + "cuisine": "mexican", + "ingredients": [ + "ice cubes", + "hot water", + "orange", + "orange liqueur", + "sugar", + "tequila", + "pomegranate juice", + "lime slices", + "fresh lime juice" + ] + }, + { + "id": 22427, + "cuisine": "mexican", + "ingredients": [ + "sour cream", + "shredded sharp cheddar cheese", + "avocado", + "salsa" + ] + }, + { + "id": 26644, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "chicken stock", + "purple onion", + "green lentil", + "carrots", + "chopped celery" + ] + }, + { + "id": 24092, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "water", + "red pepper flakes", + "dried oregano", + "sugar", + "roma tomatoes", + "salt", + "tomato sauce", + "olive oil", + "garlic", + "pasta", + "black pepper", + "pecorino romano cheese", + "fresh basil leaves" + ] + }, + { + "id": 32214, + "cuisine": "japanese", + "ingredients": [ + "water", + "butter", + "heavy whipping cream", + "cold water", + "granulated sugar", + "cake flour", + "milk", + "vanilla extract", + "confectioners sugar", + "unflavored gelatin", + "large eggs", + "strawberries" + ] + }, + { + "id": 4578, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "kosher salt", + "basil leaves", + "carrots", + "sirloin tip roast", + "canned chicken broth", + "fresh ginger", + "ground coriander", + "red bell pepper", + "spring roll wrappers", + "baby spinach leaves", + "ground black pepper", + "garlic cloves", + "onions", + "sweet chili sauce", + "orange", + "orange juice", + "cucumber" + ] + }, + { + "id": 32802, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "ground black pepper", + "worcestershire sauce", + "all-purpose flour", + "lean minced beef", + "beef stock", + "garlic", + "carrots", + "tomato purée", + "potatoes", + "extra-virgin olive oil", + "dried mixed herbs", + "milk", + "butter", + "salt", + "onions" + ] + }, + { + "id": 1348, + "cuisine": "greek", + "ingredients": [ + "part-skim mozzarella cheese", + "penne pasta", + "ground turkey", + "pepper", + "salt", + "light cream cheese", + "nutmeg", + "diced tomatoes", + "yellow onion", + "flat leaf parsley", + "milk", + "all-purpose flour", + "garlic cloves" + ] + }, + { + "id": 24180, + "cuisine": "korean", + "ingredients": [ + "ginger ale", + "watercress", + "kosher salt", + "scallions", + "napa cabbage", + "carrots", + "red chili peppers", + "rice vinegar" + ] + }, + { + "id": 12986, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "garlic chili sauce", + "peanuts", + "teriyaki sauce", + "asian noodles", + "large garlic cloves", + "fresh lime juice", + "peeled fresh ginger", + "purple onion" + ] + }, + { + "id": 43966, + "cuisine": "italian", + "ingredients": [ + "broccoli stems", + "grated lemon peel", + "bread crumb fresh", + "florets", + "shallots", + "olive oil", + "fresh lemon juice" + ] + }, + { + "id": 22941, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "lean ground turkey", + "salsa", + "avocado", + "flour", + "refried beans", + "taco seasoning" + ] + }, + { + "id": 37270, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "sesame oil", + "scallions", + "ground black pepper", + "salt", + "soy sauce", + "white rice", + "beansprouts", + "chicken broth", + "corn oil", + "gingerroot" + ] + }, + { + "id": 29325, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "zucchini", + "extra-virgin olive oil", + "chopped onion", + "flat leaf parsley", + "pepper", + "shredded cabbage", + "salt", + "carrots", + "italian seasoning", + "pesto", + "leeks", + "chopped celery", + "fat skimmed chicken broth", + "yukon gold", + "swiss chard", + "diced tomatoes", + "lima beans", + "green beans" + ] + }, + { + "id": 7997, + "cuisine": "mexican", + "ingredients": [ + "molasses", + "coffee", + "water", + "light brown sugar", + "cinnamon sticks" + ] + }, + { + "id": 32594, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "corn tortillas", + "garlic", + "knorr tomato bouillon with chicken flavor cube", + "vegetable oil", + "onions", + "tomatoes", + "lard" + ] + }, + { + "id": 1252, + "cuisine": "indian", + "ingredients": [ + "serrano chilies", + "water", + "ginger", + "cumin seed", + "cashew nuts", + "chickpea flour", + "toasted cashews", + "garam masala", + "salt", + "coconut milk", + "tumeric", + "fresh cilantro", + "peas", + "carrots", + "ground cumin", + "tomatoes", + "black pepper", + "russet potatoes", + "yellow onion", + "coriander" + ] + }, + { + "id": 25576, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "boneless skinless chicken breasts", + "ginseng tea", + "water", + "yellow corn", + "garlic cloves", + "fat free less sodium chicken broth", + "vegetable oil", + "chopped onion", + "peeled fresh ginger", + "salt" + ] + }, + { + "id": 40067, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "mirin", + "salmon fillets", + "vegetable oil", + "sugar", + "cake flour" + ] + }, + { + "id": 36987, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "chopped onion", + "chipotle chile powder", + "brown sugar", + "white wine vinegar", + "garlic cloves", + "canola oil", + "fat free less sodium chicken broth", + "turkey tenderloins", + "corn tortillas", + "ground cumin", + "tomato sauce", + "salt", + "toasted almonds", + "unsweetened cocoa powder" + ] + }, + { + "id": 21230, + "cuisine": "thai", + "ingredients": [ + "lime", + "vegetable oil", + "large shrimp", + "fresh basil", + "peeled fresh ginger", + "red bell pepper", + "unsweetened coconut milk", + "halibut fillets", + "Thai red curry paste", + "fish sauce", + "shallots", + "chopped cilantro fresh" + ] + }, + { + "id": 44510, + "cuisine": "thai", + "ingredients": [ + "rice stick noodles", + "tamarind", + "large eggs", + "shells", + "banana blossom", + "red chili peppers", + "palm sugar", + "lime wedges", + "beansprouts", + "fish sauce", + "peanuts", + "shallots", + "shrimp", + "turnips", + "water", + "extra firm tofu", + "vegetable oil", + "chopped garlic" + ] + }, + { + "id": 41981, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "coarse salt", + "thyme", + "white vinegar", + "leeks", + "ground allspice", + "lime", + "cracked black pepper", + "fillet red snapper", + "vegetable oil", + "carrots" + ] + }, + { + "id": 14566, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "loin pork roast", + "cumin", + "brown sugar", + "garlic powder", + "green chilies", + "coke zero", + "water", + "salt", + "tomato sauce", + "chili powder", + "chipotles in adobo" + ] + }, + { + "id": 32621, + "cuisine": "mexican", + "ingredients": [ + "corn", + "diced tomatoes", + "canola oil", + "zucchini", + "corn tortillas", + "shredded reduced fat cheddar cheese", + "salt", + "ground cumin", + "black beans", + "green enchilada sauce", + "onions" + ] + }, + { + "id": 40782, + "cuisine": "greek", + "ingredients": [ + "lemon", + "chicken pieces", + "plain yogurt", + "garlic", + "dried oregano", + "cracked black pepper", + "fresh parsley", + "olive oil", + "salt" + ] + }, + { + "id": 30326, + "cuisine": "chinese", + "ingredients": [ + "salt", + "water", + "high-gluten flour" + ] + }, + { + "id": 2401, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "tortellini", + "breadstick", + "dijon mustard", + "baby carrots", + "artichoke hearts", + "pepperoni turkei", + "pepper", + "broccoli florets" + ] + }, + { + "id": 38167, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "extra-virgin olive oil", + "black pepper", + "grated parmesan cheese", + "scallions", + "large eggs", + "goat cheese", + "kosher salt", + "whole milk", + "arugula" + ] + }, + { + "id": 9459, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "butter", + "salt", + "red bell pepper", + "grits", + "ground black pepper", + "bacon", + "sharp cheddar cheese", + "fresh parsley", + "green bell pepper", + "worcestershire sauce", + "all-purpose flour", + "celery", + "large shrimp", + "Tabasco Pepper Sauce", + "garlic", + "lemon juice", + "onions" + ] + }, + { + "id": 2313, + "cuisine": "mexican", + "ingredients": [ + "mexican style 4 cheese blend", + "chipotles in adobo", + "jalapeno chilies", + "plain breadcrumbs", + "milk", + "vegetable oil", + "boneless skinless chicken breasts", + "cream cheese" + ] + }, + { + "id": 46807, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "boneless skinless chicken breasts", + "peas", + "onions", + "cauliflower", + "mushrooms", + "bacon", + "chili sauce", + "sweet soy sauce", + "sesame oil", + "garlic", + "eggs", + "green onions", + "ginger", + "carrots" + ] + }, + { + "id": 26378, + "cuisine": "southern_us", + "ingredients": [ + "ground red pepper", + "all-purpose flour", + "milk", + "vegetable oil", + "cornmeal", + "baking powder", + "frozen corn", + "large eggs", + "salt", + "onions" + ] + }, + { + "id": 30341, + "cuisine": "italian", + "ingredients": [ + "mussels", + "crushed red pepper", + "olive oil", + "garlic cloves", + "crushed tomatoes", + "fresh oregano", + "finely chopped onion", + "flat leaf parsley" + ] + }, + { + "id": 28999, + "cuisine": "italian", + "ingredients": [ + "cheese", + "chopped fresh sage", + "ground black pepper", + "salt", + "beets", + "olive oil", + "white wine vinegar", + "chopped walnuts", + "shallots", + "lemon rind" + ] + }, + { + "id": 10537, + "cuisine": "chinese", + "ingredients": [ + "ground pork", + "chinese noodles", + "hot water", + "black bean sauce", + "oil", + "russet potatoes", + "cucumber" + ] + }, + { + "id": 2559, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "almond extract", + "1% low-fat milk", + "cream cheese, soften", + "light sour cream", + "bosc pears", + "vanilla extract", + "lemon juice", + "granulated sugar", + "sunflower oil", + "all-purpose flour", + "bittersweet chocolate", + "large eggs", + "light corn syrup", + "ground almonds" + ] + }, + { + "id": 2004, + "cuisine": "mexican", + "ingredients": [ + "mahi mahi", + "salt", + "chopped cilantro fresh", + "avocado", + "lime wedges", + "corn tortillas", + "green cabbage", + "reduced-fat sour cream", + "fresh lime juice", + "cooking spray", + "salsa", + "fajita seasoning mix" + ] + }, + { + "id": 45052, + "cuisine": "spanish", + "ingredients": [ + "chicken stock", + "olive oil", + "ground veal", + "garlic cloves", + "dried oregano", + "eggs", + "dry white wine", + "dry bread crumbs", + "coriander", + "nutmeg", + "chopped tomatoes", + "ground pork", + "onions", + "cumin", + "tomato purée", + "cinnamon", + "cayenne pepper", + "frozen peas" + ] + }, + { + "id": 13577, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "salt", + "long-grain rice", + "vegetable oil", + "hot sauce", + "low salt chicken broth", + "chicken breast halves", + "all-purpose flour", + "garlic cloves", + "cajun style stewed tomatoes", + "crushed red pepper", + "okra" + ] + }, + { + "id": 16070, + "cuisine": "spanish", + "ingredients": [ + "quince paste", + "manchego cheese" + ] + }, + { + "id": 153, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "water", + "salt", + "white sugar", + "green bell pepper", + "ground nutmeg", + "yellow onion", + "ground cinnamon", + "olive oil", + "all-purpose flour", + "white vinegar", + "shortening", + "sliced apples", + "lean steak" + ] + }, + { + "id": 27819, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "vegetables", + "sesame oil", + "scallions", + "chicken stock", + "sugar pea", + "egg whites", + "ginger", + "corn starch", + "wine", + "kosher salt", + "boneless skinless chicken breasts", + "garlic", + "soy sauce", + "lemon zest", + "lemon", + "juice" + ] + }, + { + "id": 2200, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "dry sherry", + "tangerine juice", + "orange", + "star anise", + "sugar", + "fresh ginger", + "cinnamon sticks", + "kosher salt", + "crushed red pepper flakes" + ] + }, + { + "id": 45225, + "cuisine": "southern_us", + "ingredients": [ + "cream of tartar", + "butter", + "sugar", + "vanilla extract", + "evaporated milk", + "chopped pecans", + "firmly packed brown sugar", + "light corn syrup" + ] + }, + { + "id": 2500, + "cuisine": "thai", + "ingredients": [ + "white vinegar", + "water", + "Thai red curry paste", + "soy sauce", + "Sriracha", + "coconut milk", + "sugar", + "fresh ginger", + "creamy peanut butter", + "minced garlic", + "sesame oil", + "chile sauce" + ] + }, + { + "id": 5543, + "cuisine": "italian", + "ingredients": [ + "vanilla beans", + "bartlett pears", + "heavy cream", + "whole milk", + "sugar", + "powdered gelatin" + ] + }, + { + "id": 41725, + "cuisine": "italian", + "ingredients": [ + "pure vanilla extract", + "granulated sugar", + "plums", + "kosher salt", + "baking powder", + "grated lemon zest", + "light brown sugar", + "large eggs", + "all-purpose flour", + "large egg yolks", + "butter", + "cornmeal" + ] + }, + { + "id": 36615, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless pork shoulder", + "ground black pepper", + "cayenne pepper", + "poblano chiles", + "kosher salt", + "jalapeno chilies", + "garlic cloves", + "fresh parsley", + "celery ribs", + "curing salt", + "chili powder", + "ground white pepper", + "onions", + "sausage casings", + "pork liver", + "scallions", + "cooked white rice" + ] + }, + { + "id": 13001, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "non-fat sour cream", + "corn tortillas", + "flank steak", + "garlic cloves", + "onions", + "cooking spray", + "salt", + "fresh lime juice", + "chili powder", + "red bell pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 46181, + "cuisine": "french", + "ingredients": [ + "milk", + "salt", + "eggs", + "lemon peel", + "active dry yeast", + "all-purpose flour", + "sugar", + "butter" + ] + }, + { + "id": 13431, + "cuisine": "italian", + "ingredients": [ + "eggs", + "golden brown sugar", + "baking powder", + "grated orange peel", + "unsalted butter", + "cake flour", + "whole almonds", + "large egg yolks", + "vanilla extract", + "ground ginger", + "sugar", + "pistachios" + ] + }, + { + "id": 14061, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "chickpeas", + "extra-virgin olive oil", + "fresh lemon juice", + "roasted red peppers", + "garlic cloves", + "pitted kalamata olives", + "salt" + ] + }, + { + "id": 21787, + "cuisine": "italian", + "ingredients": [ + "cocoa", + "whipping cream", + "ladyfingers", + "mascarpone", + "coffee granules", + "hot water", + "sugar", + "coffee liqueur" + ] + }, + { + "id": 35098, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "part-skim mozzarella cheese", + "whole wheat submarine loaves", + "large egg whites", + "ground round", + "water", + "low fat reduced sodium pasta sauce", + "pepper", + "finely chopped onion" + ] + }, + { + "id": 8379, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "garlic", + "onions", + "diced tomatoes", + "chipotles in adobo", + "ground cumin", + "flour tortillas", + "salt", + "shredded Monterey Jack cheese", + "boneless chop pork", + "extra-virgin olive oil", + "chopped cilantro" + ] + }, + { + "id": 41581, + "cuisine": "greek", + "ingredients": [ + "sugar", + "plums", + "honey", + "hazelnuts", + "greek yogurt", + "unsalted butter" + ] + }, + { + "id": 45235, + "cuisine": "chinese", + "ingredients": [ + "peeled fresh ginger", + "broccoli", + "toasted sesame oil", + "soy sauce", + "garlic", + "oyster sauce", + "vegetable oil", + "scallions", + "cooked white rice", + "boneless chicken skinless thigh", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 34541, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "baby spinach", + "garlic cloves", + "grated romano cheese", + "extra-virgin olive oil", + "ground black pepper", + "sea salt", + "grated parmesan cheese", + "gluten-free pasta" + ] + }, + { + "id": 3336, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "onions", + "green bell pepper", + "garlic cloves", + "boneless chicken skinless thigh", + "flat leaf parsley", + "tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 42444, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cilantro leaves", + "crushed red pepper flakes", + "toasted slivered almonds", + "salt and ground black pepper", + "fresh lemon juice", + "garlic" + ] + }, + { + "id": 27280, + "cuisine": "french", + "ingredients": [ + "garlic cloves", + "duck fat", + "parsley leaves", + "waxy potatoes" + ] + }, + { + "id": 18826, + "cuisine": "japanese", + "ingredients": [ + "potatoes", + "onions", + "sake", + "vegetable oil", + "snow peas", + "soup", + "white sugar", + "soy sauce", + "sirloin steak" + ] + }, + { + "id": 7063, + "cuisine": "mexican", + "ingredients": [ + "agave nectar", + "fresh lime juice", + "tequila", + "red chili peppers" + ] + }, + { + "id": 14108, + "cuisine": "italian", + "ingredients": [ + "baguette", + "grated lemon zest", + "aged balsamic vinegar", + "extra-virgin olive oil", + "freshly ground pepper", + "mozzarella cheese", + "salt", + "fresh lemon juice", + "mint leaves", + "fresh fava bean" + ] + }, + { + "id": 29130, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "yukon gold potatoes", + "onions", + "tomatoes", + "fresh bay leaves", + "garlic cloves", + "ground black pepper", + "fresh thyme leaves", + "kosher salt", + "dry white wine", + "leg of lamb" + ] + }, + { + "id": 25075, + "cuisine": "spanish", + "ingredients": [ + "slivered almonds", + "unsalted butter", + "lemon", + "all-purpose flour", + "olive oil", + "vegetable oil", + "red pepper flakes", + "plum tomatoes", + "anchovies", + "large eggs", + "large garlic cloves", + "fresh parsley", + "ground black pepper", + "red wine vinegar", + "salt" + ] + }, + { + "id": 18129, + "cuisine": "thai", + "ingredients": [ + "cold water", + "thai chile", + "lychees", + "juice", + "sugar", + "salt", + "lemon", + "ice" + ] + }, + { + "id": 41785, + "cuisine": "indian", + "ingredients": [ + "honey", + "shallots", + "garlic", + "roma tomatoes", + "apple cider vinegar", + "olive oil", + "brown mustard seeds", + "minced ginger", + "golden raisins", + "red pepper flakes" + ] + }, + { + "id": 40747, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "spring onions", + "water", + "garlic", + "caster sugar", + "ginger", + "hoisin sauce", + "dark sesame oil" + ] + }, + { + "id": 2148, + "cuisine": "french", + "ingredients": [ + "water", + "flour", + "garlic", + "bay leaf", + "fresh thyme", + "egg yolks", + "ground white pepper", + "milk", + "hard-boiled egg", + "dried salted codfish", + "fresh cod", + "bread crumbs", + "potatoes", + "sea salt", + "flat leaf parsley" + ] + }, + { + "id": 32351, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "ground black pepper", + "diced tomatoes", + "seasoning salt", + "chicken breasts", + "salt", + "water", + "cream of chicken soup", + "cheese", + "garlic powder", + "onion powder", + "spaghetti" + ] + }, + { + "id": 983, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "garlic powder", + "onion powder", + "paprika", + "dried leaves oregano", + "black pepper", + "zucchini", + "butter", + "cayenne pepper", + "jumbo shrimp", + "finely chopped fresh parsley", + "cajun seasoning", + "salt", + "olive oil", + "green onions", + "ground thyme", + "garlic cloves" + ] + }, + { + "id": 44247, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "water", + "butter", + "gumbo", + "black pepper", + "ground red pepper", + "chopped onion", + "ground cumin", + "lower sodium chicken broth", + "garlic powder", + "all-purpose flour", + "long grain white rice", + "kosher salt", + "meat", + "carrots" + ] + }, + { + "id": 16364, + "cuisine": "italian", + "ingredients": [ + "clams", + "red pepper flakes", + "salt", + "crushed tomatoes", + "linguine", + "bottled clam juice", + "bacon", + "flat leaf parsley", + "dry white wine", + "garlic" + ] + }, + { + "id": 9052, + "cuisine": "southern_us", + "ingredients": [ + "scallion greens", + "bread crumb fresh", + "whole milk", + "turnips", + "black pepper", + "sweet potatoes", + "orange zest", + "molasses", + "potatoes", + "salt", + "horseradish", + "unsalted butter", + "fresh orange juice" + ] + }, + { + "id": 36001, + "cuisine": "irish", + "ingredients": [ + "red potato", + "vegetable oil", + "beef sirloin", + "green cabbage", + "dried thyme", + "worcestershire sauce", + "piecrust", + "coarse salt", + "tomato paste", + "ground pepper", + "all-purpose flour" + ] + }, + { + "id": 3817, + "cuisine": "southern_us", + "ingredients": [ + "cinnamon", + "sugar", + "applesauce", + "pecans", + "butter", + "graham cracker crumbs" + ] + }, + { + "id": 2202, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "sugar", + "basil", + "onions", + "kaffir lime leaves", + "lemon grass", + "red curry paste", + "lime zest", + "red chili peppers", + "garlic", + "fish sauce", + "cooking oil", + "shrimp" + ] + }, + { + "id": 14304, + "cuisine": "mexican", + "ingredients": [ + "shredded reduced fat cheddar cheese", + "flour tortillas", + "non-fat sour cream", + "chopped cilantro fresh", + "avocado", + "ground black pepper", + "flank steak", + "fresh lime juice", + "Mexican seasoning mix", + "poblano peppers", + "yellow bell pepper", + "onions", + "olive oil", + "cooking spray", + "red bell pepper" + ] + }, + { + "id": 46626, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "masa", + "water", + "vanilla extract", + "piloncillo" + ] + }, + { + "id": 4419, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "yellow hominy", + "fresh oregano", + "chorizo sausage", + "crushed tomatoes", + "garlic", + "beer", + "ale", + "salt", + "onions", + "chipotle chile", + "chili powder", + "lean beef", + "ground cumin" + ] + }, + { + "id": 16066, + "cuisine": "italian", + "ingredients": [ + "nutmeg", + "lean minced beef", + "garden peas", + "plum tomatoes", + "sage leaves", + "pecorino cheese", + "lemon zest", + "chillies", + "fresh rosemary", + "olive oil", + "minced pork", + "bread", + "fresh marjoram", + "egg yolks", + "onions" + ] + }, + { + "id": 11382, + "cuisine": "french", + "ingredients": [ + "baguette", + "ginger", + "medium dry sherry", + "chopped cilantro", + "shell-on shrimp", + "unsalted butter", + "green beans" + ] + }, + { + "id": 1437, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "spring onions", + "rice vinegar", + "peanuts", + "cornflour", + "chillies", + "water", + "sesame oil", + "fillets", + "chinese rice wine", + "water chestnuts", + "garlic", + "browning" + ] + }, + { + "id": 48683, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "ground black pepper", + "ground pork", + "chicken livers", + "tomato paste", + "veal", + "salt", + "heavy whipping cream", + "truffles", + "mushrooms", + "salt pork", + "celery", + "ground nutmeg", + "flank steak", + "carrots", + "onions" + ] + }, + { + "id": 29646, + "cuisine": "russian", + "ingredients": [ + "unsalted butter", + "parsley", + "salt", + "white wine", + "flour", + "worcestershire sauce", + "yellow onion", + "beef bouillon", + "sirloin steak", + "egg noodles, cooked and drained", + "ground black pepper", + "mushrooms", + "bacon", + "sour cream" + ] + }, + { + "id": 22258, + "cuisine": "thai", + "ingredients": [ + "olive oil", + "large garlic cloves", + "fresh lime juice", + "soy sauce", + "peeled fresh ginger", + "crushed red pepper", + "baby spinach leaves", + "green onions", + "red bell pepper", + "fresh basil", + "extra firm tofu", + "salted roast peanuts" + ] + }, + { + "id": 15433, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "corn kernels", + "butter", + "cumin", + "shredded cheddar cheese", + "zucchini", + "all-purpose flour", + "sugar", + "ground black pepper", + "salt", + "milk", + "baking powder", + "oil" + ] + }, + { + "id": 23987, + "cuisine": "jamaican", + "ingredients": [ + "ground ginger", + "ground nutmeg", + "dark rum", + "purple onion", + "roasting chickens", + "molasses", + "roma tomatoes", + "scotch bonnet chile", + "cilantro leaves", + "mango", + "olive oil", + "jalapeno chilies", + "malt vinegar", + "ground allspice", + "ground cinnamon", + "ground black pepper", + "green onions", + "salt", + "fresh lime juice" + ] + }, + { + "id": 6965, + "cuisine": "japanese", + "ingredients": [ + "short-grain rice", + "rice vinegar", + "ground turmeric", + "soy sauce", + "green peas", + "firm tofu", + "sugar", + "mirin", + "dried shiitake mushrooms", + "nori", + "water", + "salt", + "carrots" + ] + }, + { + "id": 29098, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "potatoes", + "mustard oil", + "eggplant", + "salt", + "chillies", + "fresh coriander", + "ginger", + "mustard seeds", + "tomatoes", + "garam masala", + "cumin seed", + "onions" + ] + }, + { + "id": 42993, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "fresh ginger", + "cayenne pepper", + "galangal", + "water", + "whole milk", + "grate lime peel", + "sugar", + "thai basil", + "small pearl tapioca", + "mango", + "unsweetened coconut milk", + "lemongrass", + "cilantro sprigs", + "fresh lime juice" + ] + }, + { + "id": 47798, + "cuisine": "russian", + "ingredients": [ + "mayonaise", + "raspberry preserves", + "baking soda", + "all-purpose flour", + "sugar", + "egg whites", + "eggs", + "unsalted butter", + "lemon juice" + ] + }, + { + "id": 16842, + "cuisine": "japanese", + "ingredients": [ + "salt", + "short-grain rice", + "mirin", + "caster sugar", + "rice vinegar" + ] + }, + { + "id": 2995, + "cuisine": "mexican", + "ingredients": [ + "condensed cream of chicken soup", + "condensed cream of mushroom soup", + "cooked turkey", + "corn tortillas", + "shredded cheddar cheese", + "sour cream", + "chile pepper" + ] + }, + { + "id": 6528, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "boneless skinless chicken breasts", + "cayenne pepper", + "medium shrimp", + "olive oil", + "diced tomatoes", + "flat leaf parsley", + "green bell pepper", + "brown rice", + "ham", + "onions", + "( oz.) tomato sauce", + "garlic", + "bay leaf" + ] + }, + { + "id": 22267, + "cuisine": "mexican", + "ingredients": [ + "papaya", + "salt", + "jalapeno chilies", + "fresh pineapple", + "olive oil", + "chopped fresh mint", + "lime juice", + "purple onion", + "mango" + ] + }, + { + "id": 47068, + "cuisine": "italian", + "ingredients": [ + "swiss chard", + "purple onion", + "minced garlic", + "dry white wine", + "fresh lemon juice", + "grated parmesan cheese", + "salt", + "olive oil", + "butter" + ] + }, + { + "id": 30812, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "diced tomatoes", + "celery", + "sausage casings", + "dried sage", + "crushed red pepper", + "dried rosemary", + "chicken broth", + "kidney beans", + "pasta shells", + "chopped garlic", + "dried basil", + "sliced carrots", + "chopped onion" + ] + }, + { + "id": 16432, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped bell pepper", + "butter", + "onion tops", + "chopped parsley", + "black pepper", + "low sodium chicken broth", + "chopped celery", + "oil", + "pork", + "black-eyed peas", + "smoked sausage", + "chopped onion", + "long grain white rice", + "water", + "cajun seasoning", + "salt", + "ground cayenne pepper" + ] + }, + { + "id": 14420, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "tomato salsa", + "iceberg lettuce", + "cooked chicken", + "salt", + "flour tortillas", + "clove garlic, fine chop", + "vegetable oil", + "onions" + ] + }, + { + "id": 4138, + "cuisine": "french", + "ingredients": [ + "sugar", + "baking powder", + "grated orange", + "unsalted butter", + "all-purpose flour", + "kosher salt", + "vanilla extract", + "large eggs", + "orange blossom honey" + ] + }, + { + "id": 1074, + "cuisine": "indian", + "ingredients": [ + "milk", + "cardamom", + "sugar", + "vermicelli", + "nuts", + "water", + "raisins", + "powdered milk", + "ghee" + ] + }, + { + "id": 27141, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "beef stock", + "ground beef", + "tomatoes", + "flour tortillas", + "taco seasoning", + "lime", + "salt", + "onions", + "cheddar cheese", + "jalapeno chilies", + "chopped cilantro" + ] + }, + { + "id": 31929, + "cuisine": "mexican", + "ingredients": [ + "queso asadero", + "eggs", + "vegetable shortening", + "baking powder", + "Anaheim chile", + "all-purpose flour" + ] + }, + { + "id": 46603, + "cuisine": "italian", + "ingredients": [ + "lemon", + "1% low-fat milk", + "vodka", + "sugar" + ] + }, + { + "id": 19180, + "cuisine": "japanese", + "ingredients": [ + "wine", + "daikon", + "dashi", + "tamari soy sauce", + "soy sauce", + "ginger", + "mirin", + "sushi grade tuna" + ] + }, + { + "id": 5522, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "seeds", + "whole wheat flour", + "paratha", + "butter" + ] + }, + { + "id": 41167, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "mixed vegetables", + "ginger", + "oil", + "frozen peas", + "chili", + "sweet potatoes", + "vegan butter", + "cumin seed", + "onions", + "spring roll wrappers", + "bell pepper", + "lemon", + "ground coriander", + "phyllo pastry", + "potatoes", + "cinnamon", + "garlic", + "mustard seeds", + "ground cumin" + ] + }, + { + "id": 13697, + "cuisine": "italian", + "ingredients": [ + "fresh mozzarella", + "maldon sea salt", + "olive oil", + "garlic", + "kosher salt", + "heirloom tomatoes", + "scallions", + "basil leaves", + "pizza doughs" + ] + }, + { + "id": 19243, + "cuisine": "irish", + "ingredients": [ + "ground ginger", + "salted butter", + "heavy cream", + "treacle", + "large eggs", + "confectioners sugar", + "water", + "baking powder", + "sugar", + "crystallized ginger", + "all-purpose flour" + ] + }, + { + "id": 34584, + "cuisine": "italian", + "ingredients": [ + "coconut oil", + "ground black pepper", + "kosher salt", + "chicken thighs", + "granulated garlic", + "herbes de provence", + "dried basil", + "dried oregano" + ] + }, + { + "id": 13976, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "large eggs", + "part-skim ricotta cheese", + "fat free milk", + "green onions", + "carrots", + "olive oil", + "leeks", + "salt", + "fresh parmesan cheese", + "ground red pepper", + "flat leaf parsley" + ] + }, + { + "id": 3445, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "garlic", + "half & half", + "bow-tie pasta", + "italian style stewed tomatoes", + "salt", + "bulk italian sausag", + "crushed red pepper flakes", + "chopped onion" + ] + }, + { + "id": 7033, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "water", + "sugar", + "pepper sauce", + "salt pork", + "turnips", + "turnip greens" + ] + }, + { + "id": 20304, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "frozen peas and carrots", + "eggs", + "sesame oil", + "onions", + "boneless skinless chicken breasts", + "cooked white rice", + "soy sauce", + "teriyaki sauce" + ] + }, + { + "id": 45122, + "cuisine": "mexican", + "ingredients": [ + "red enchilada sauce", + "cheddar cheese", + "monterey jack", + "Hidden Valley® Original Ranch® Dips Mix", + "diced green chilies", + "chicken" + ] + }, + { + "id": 385, + "cuisine": "italian", + "ingredients": [ + "bacon", + "grated parmesan cheese", + "heavy whipping cream", + "tortellini", + "egg yolks" + ] + }, + { + "id": 8654, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "olive oil", + "bay leaves", + "ground allspice", + "peppercorns", + "pepper", + "ground black pepper", + "ground thyme", + "garlic cloves", + "white vinegar", + "lime juice", + "ground sage", + "cilantro leaves", + "cinnamon sticks", + "molasses", + "ground nutmeg", + "green onions", + "orange juice", + "chicken" + ] + }, + { + "id": 382, + "cuisine": "thai", + "ingredients": [ + "jalapeno chilies", + "halibut steak", + "sweet chili sauce", + "cilantro leaves", + "shallots", + "jasmine rice", + "oyster sauce" + ] + }, + { + "id": 15982, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "perch fillets", + "horseradish sauce", + "butter", + "lemon juice", + "cayenne", + "salt", + "catfish fillets", + "worcestershire sauce", + "thyme" + ] + }, + { + "id": 22044, + "cuisine": "russian", + "ingredients": [ + "eggs", + "active dry yeast", + "heavy cream", + "grated nutmeg", + "citron", + "vanilla beans", + "granulated sugar", + "salt", + "lemon juice", + "slivered almonds", + "unsalted butter", + "currant", + "ground cardamom", + "saffron threads", + "milk", + "golden raisins", + "all-purpose flour", + "confectioners sugar" + ] + }, + { + "id": 45142, + "cuisine": "italian", + "ingredients": [ + "pasta", + "grated parmesan cheese", + "diced celery", + "tomato sauce", + "salt", + "dried oregano", + "sausage casings", + "diced tomatoes", + "sliced mushrooms", + "diced onions", + "garlic powder", + "shredded mozzarella cheese" + ] + }, + { + "id": 44841, + "cuisine": "italian", + "ingredients": [ + "butter", + "green beans", + "grated lemon zest", + "pepper", + "garlic cloves", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 38460, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cooking oil", + "garlic", + "honey", + "maltose", + "chinese five-spice powder", + "white pepper", + "sesame oil", + "Chinese rose wine", + "hoisin sauce", + "red food coloring", + "pork butt" + ] + }, + { + "id": 46682, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "macaroni and cheese dinner", + "diced tomatoes", + "chopped onion", + "butter", + "green pepper", + "milk", + "chopped celery", + "ground beef" + ] + }, + { + "id": 8424, + "cuisine": "italian", + "ingredients": [ + "white wine", + "garlic", + "flat leaf parsley", + "sea salt", + "calabrese sausage", + "varnish clams", + "chicken stock", + "extra-virgin olive oil", + "croutons", + "unsalted butter", + "freshly ground pepper", + "fresh parsley" + ] + }, + { + "id": 37464, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "large eggs", + "heavy cream", + "scallions", + "water", + "parmigiano reggiano cheese", + "ricotta cheese", + "all-purpose flour", + "fresh marjoram", + "ground black pepper", + "leeks", + "salt", + "dough", + "swiss chard", + "egg yolks", + "extra-virgin olive oil" + ] + }, + { + "id": 7664, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "garlic", + "bay leaf", + "tomatoes", + "extra-virgin olive oil", + "white wine vinegar", + "chicken stock", + "sea salt", + "black olives", + "chicken", + "chicken legs", + "rosemary leaves", + "yellow onion" + ] + }, + { + "id": 38732, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "vegetable shortening", + "salt", + "pâte brisée", + "cinnamon", + "vanilla extract", + "rice", + "sugar", + "golden raisins", + "heavy cream", + "all-purpose flour", + "granny smith apples", + "butter", + "shells", + "fresh lemon juice" + ] + }, + { + "id": 44802, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "balsamic vinegar", + "italian seasoning", + "olive oil", + "bell pepper", + "garlic cloves", + "tomato sauce", + "zucchini", + "salt", + "eggplant", + "cooking spray", + "rotini" + ] + }, + { + "id": 21131, + "cuisine": "brazilian", + "ingredients": [ + "fresh cilantro", + "coarse salt", + "freshly ground pepper", + "cumin", + "cooked rice", + "ground black pepper", + "salt", + "fresh lime juice", + "tomatoes", + "olive oil", + "garlic", + "coconut milk", + "salmon", + "bell pepper", + "sweet paprika", + "onions" + ] + }, + { + "id": 41126, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "creole style seasoning", + "boneless skinless chicken breast halves", + "all-purpose flour", + "oil", + "grated parmesan cheese", + "shredded mozzarella cheese", + "chicken broth", + "fresh mushrooms", + "onions" + ] + }, + { + "id": 9113, + "cuisine": "southern_us", + "ingredients": [ + "water", + "bacon drippings", + "fatback", + "salt", + "collard greens", + "smoked ham hocks" + ] + }, + { + "id": 41490, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "lemon juice", + "fresh cilantro", + "salt", + "plum tomatoes", + "white onion", + "purple onion", + "ground cayenne pepper", + "garlic powder", + "yellow onion", + "ground cumin" + ] + }, + { + "id": 13648, + "cuisine": "southern_us", + "ingredients": [ + "vidalia onion", + "unsalted butter", + "peanut oil", + "sliced green onions", + "pepper", + "salt", + "pork loin chops", + "chicken broth", + "sherry vinegar", + "all-purpose flour", + "bartlett pears", + "kosher salt", + "dry sherry", + "freshly ground pepper" + ] + }, + { + "id": 4324, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "honey", + "half & half", + "salt", + "quatre épices", + "large eggs", + "butter", + "lemon juice", + "brown sugar", + "baking soda", + "baking powder", + "toasted walnuts", + "orange", + "flour", + "buttermilk", + "unsweetened cocoa powder" + ] + }, + { + "id": 15453, + "cuisine": "italian", + "ingredients": [ + "garlic", + "olive oil" + ] + }, + { + "id": 3896, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic", + "italian seasoning", + "tomato sauce", + "turkey sausage", + "onions", + "water", + "salt", + "pasta", + "zucchini", + "beef broth" + ] + }, + { + "id": 30441, + "cuisine": "moroccan", + "ingredients": [ + "medjool date", + "marzipan", + "powdered sugar", + "color food green" + ] + }, + { + "id": 2890, + "cuisine": "moroccan", + "ingredients": [ + "preserved lemon", + "garlic", + "chopped fresh mint", + "ground black pepper", + "red bell pepper", + "olive oil", + "rack of lamb", + "chopped cilantro fresh", + "kalamata", + "fresh parsley" + ] + }, + { + "id": 15836, + "cuisine": "southern_us", + "ingredients": [ + "dijon mustard", + "white wine vinegar", + "cabbage", + "parsley sprigs", + "vegetable oil", + "carrots", + "horseradish", + "parsley leaves", + "scallions", + "black-eyed peas", + "large garlic cloves", + "bay leaf" + ] + }, + { + "id": 48055, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "grapeseed oil", + "hot water", + "plain flour", + "tamarind pulp", + "margarine", + "onions", + "palm sugar", + "ginger", + "cucumber", + "coconut oil", + "yoghurt", + "black mustard seeds", + "coriander" + ] + }, + { + "id": 31099, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "confectioners sugar", + "salt", + "honey", + "pinenuts", + "almond paste" + ] + }, + { + "id": 31882, + "cuisine": "korean", + "ingredients": [ + "spinach", + "corn kernels", + "red pepper flakes", + "fresh herbs", + "soy sauce", + "sesame seeds", + "salt", + "mayonaise", + "olive oil", + "garlic", + "onions", + "pepper", + "sesame oil", + "shredded cheese" + ] + }, + { + "id": 9530, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "onion powder", + "smoked paprika", + "dried oregano", + "brown sugar", + "red cabbage", + "salt", + "corn tortillas", + "canola oil", + "green cabbage", + "garlic powder", + "cilantro", + "sour cream", + "cumin", + "tilapia fillets", + "jalapeno chilies", + "cayenne pepper", + "onions" + ] + }, + { + "id": 13242, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "sage leaves", + "unsalted butter", + "boneless skinless chicken breast halves", + "pepper", + "lemon", + "prosciutto", + "all-purpose flour" + ] + }, + { + "id": 13092, + "cuisine": "mexican", + "ingredients": [ + "celery ribs", + "lime", + "poblano", + "extra-virgin olive oil", + "tequila", + "cotija", + "new potatoes", + "bacon", + "yellow onion", + "chicken stock", + "roasted red peppers", + "heavy cream", + "all-purpose flour", + "oregano", + "corn", + "lime wedges", + "cilantro", + "garlic cloves" + ] + }, + { + "id": 10716, + "cuisine": "korean", + "ingredients": [ + "sesame oil", + "onions", + "honey", + "scallions", + "water", + "Gochujang base", + "rice cakes", + "kimchi" + ] + }, + { + "id": 47010, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "sour cream", + "shredded monterey jack cheese", + "mashed potatoes", + "hellmann' or best food light mayonnais" + ] + }, + { + "id": 42615, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "mirin", + "nori", + "steak fillets", + "water", + "coarse sea salt", + "smoked salmon", + "sushi rice", + "Sriracha", + "chili flakes", + "lime juice", + "sushi vinegar" + ] + }, + { + "id": 48251, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "olive oil", + "salt", + "fresh parsley leaves", + "plum tomatoes", + "active dry yeast", + "green bell pepper, slice", + "garlic cloves", + "onions", + "sugar", + "freshly grated parmesan", + "all-purpose flour", + "red bell pepper", + "mozzarella cheese", + "fennel bulb", + "provolone cheese", + "crumbled gorgonzola" + ] + }, + { + "id": 3382, + "cuisine": "mexican", + "ingredients": [ + "beef", + "jalapeno chilies", + "flour tortillas", + "sauce", + "chuck roast", + "salt", + "cheddar cheese", + "bell pepper", + "onions" + ] + }, + { + "id": 15142, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "okra pods", + "curry powder", + "serrano chile", + "brown mustard seeds", + "canola oil", + "ground coriander" + ] + }, + { + "id": 8790, + "cuisine": "mexican", + "ingredients": [ + "chuck roast", + "salsa", + "seasoning" + ] + }, + { + "id": 28241, + "cuisine": "spanish", + "ingredients": [ + "cherry tomatoes", + "crushed red pepper", + "ground cumin", + "chicken breast halves", + "smoked paprika", + "garbanzo beans", + "garlic cloves", + "plain yogurt", + "extra-virgin olive oil", + "chopped cilantro fresh" + ] + }, + { + "id": 33216, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "garlic", + "red preserved bean curd", + "pork shoulder", + "dark soy sauce", + "ginger", + "browning", + "Shaoxing wine", + "star anise" + ] + }, + { + "id": 29615, + "cuisine": "italian", + "ingredients": [ + "pesto", + "rolls", + "loin pork roast", + "arugula", + "roasted red peppers", + "goat cheese", + "purple onion" + ] + }, + { + "id": 26198, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "vegetable oil", + "guajillo chiles", + "garlic", + "tomatoes", + "cheese", + "thin spaghetti", + "cream", + "onions" + ] + }, + { + "id": 40778, + "cuisine": "french", + "ingredients": [ + "sugar", + "whole milk", + "mint leaves", + "pink grapefruit", + "large eggs", + "vanilla extract", + "half & half", + "salt" + ] + }, + { + "id": 6192, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "garlic", + "ghee", + "potatoes", + "cumin seed", + "red chili peppers", + "salt", + "onions", + "spinach leaves", + "ginger", + "black mustard seeds" + ] + }, + { + "id": 43266, + "cuisine": "irish", + "ingredients": [ + "mashed potatoes", + "frozen mixed vegetables", + "shredded cheddar cheese", + "ketchup", + "ground beef", + "worcestershire sauce" + ] + }, + { + "id": 25734, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "sour cream", + "vanilla extract", + "lemon juice", + "butter" + ] + }, + { + "id": 43394, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "white wine vinegar", + "low sodium soy sauce", + "vegetable oil", + "corn starch", + "boneless skinless chicken breasts", + "cayenne pepper", + "water", + "garlic", + "white sugar" + ] + }, + { + "id": 5415, + "cuisine": "italian", + "ingredients": [ + "dough", + "zucchini", + "plum tomatoes", + "kosher salt", + "extra-virgin olive oil", + "yellow corn meal", + "chees fresh mozzarella", + "ground black pepper", + "fresh basil leaves" + ] + }, + { + "id": 46981, + "cuisine": "japanese", + "ingredients": [ + "short-grain rice", + "scallions", + "wasabi paste", + "gravlax", + "avocado", + "lemon", + "nori", + "water", + "salt" + ] + }, + { + "id": 13726, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "roasted red peppers", + "part-skim ricotta cheese", + "oven-ready lasagna noodles", + "part-skim mozzarella", + "large egg whites", + "broccoli florets", + "all-purpose flour", + "dried basil", + "shredded carrots", + "salt", + "evaporated skim milk", + "butter-margarine blend", + "fresh parmesan cheese", + "cooking spray", + "cream cheese" + ] + }, + { + "id": 4107, + "cuisine": "indian", + "ingredients": [ + "celery stick", + "diced lamb", + "garlic cloves", + "coriander", + "tomato paste", + "water", + "sea salt", + "coconut milk", + "fennel seeds", + "red chili peppers", + "garam masala", + "carrots", + "ground turmeric", + "coconut oil", + "lime", + "yellow onion", + "ghee" + ] + }, + { + "id": 33230, + "cuisine": "thai", + "ingredients": [ + "cilantro", + "onions", + "peanuts", + "Thai fish sauce", + "soy sauce", + "garlic", + "chicken", + "rice noodles", + "red bell pepper" + ] + }, + { + "id": 46941, + "cuisine": "filipino", + "ingredients": [ + "leeks", + "carrots", + "chinese duck sauce", + "salt", + "sesame oil", + "shallots", + "lumpia skins" + ] + }, + { + "id": 31313, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vanilla extract", + "eggs", + "baking powder", + "all-purpose flour", + "light brown sugar", + "evaporated milk", + "salt", + "sugar", + "butter" + ] + }, + { + "id": 43720, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "vegetable shortening", + "large eggs", + "chicken", + "seasoning salt", + "all-purpose flour", + "whole milk" + ] + }, + { + "id": 11987, + "cuisine": "british", + "ingredients": [ + "bread crumbs", + "lemon rind", + "eggs", + "milk", + "raspberry jam", + "butter", + "caster sugar" + ] + }, + { + "id": 26047, + "cuisine": "italian", + "ingredients": [ + "great northern beans", + "ground black pepper", + "sprinkles", + "beef broth", + "water", + "shallots", + "salt", + "flat leaf parsley", + "lamb shanks", + "medium egg noodles", + "dry red wine", + "garlic cloves", + "olive oil", + "worcestershire sauce", + "all-purpose flour", + "dried rosemary" + ] + }, + { + "id": 45485, + "cuisine": "italian", + "ingredients": [ + "pepper", + "half & half", + "garlic", + "parmagiano reggiano", + "orange bell pepper", + "red pepper flakes", + "bow-tie pasta", + "olive oil", + "butter", + "salt", + "onions", + "grape tomatoes", + "flour", + "yellow bell pepper", + "broccoli" + ] + }, + { + "id": 22894, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "extra-virgin olive oil", + "thyme sprigs", + "water", + "garlic cloves", + "harissa", + "picholine", + "green olives", + "lemon slices" + ] + }, + { + "id": 13307, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "custard", + "frozen pastry puff sheets", + "braeburn apple" + ] + }, + { + "id": 3158, + "cuisine": "thai", + "ingredients": [ + "shallots", + "seedless cucumber", + "dried shrimp", + "sugar", + "fresh lime juice", + "nam pla" + ] + }, + { + "id": 8852, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "linguine", + "black pepper", + "fresh parmesan cheese", + "lemon juice", + "clams", + "dried basil", + "crushed red pepper", + "bottled clam juice", + "bacon slices" + ] + }, + { + "id": 31888, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "ground nutmeg", + "salt", + "sour cream", + "brown sugar", + "butter", + "apple butter", + "wheat germ", + "eggs", + "baking powder", + "all-purpose flour", + "white sugar", + "baking soda", + "vanilla extract", + "chopped pecans" + ] + }, + { + "id": 28253, + "cuisine": "mexican", + "ingredients": [ + "cilantro", + "white onion", + "salt", + "garlic", + "roma tomatoes", + "serrano" + ] + }, + { + "id": 16929, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "dry white wine", + "garlic", + "onions", + "fennel", + "crushed red pepper flakes", + "shrimp", + "olive oil", + "diced tomatoes", + "salt", + "dried oregano", + "clams", + "Dungeness crabs", + "basil dried leaves", + "chopped parsley" + ] + }, + { + "id": 24929, + "cuisine": "french", + "ingredients": [ + "sugar", + "sherry wine vinegar", + "green cabbage", + "dijon mustard", + "white vinegar", + "safflower oil", + "chopped fresh mint", + "soy sauce", + "beets" + ] + }, + { + "id": 46469, + "cuisine": "korean", + "ingredients": [ + "pepper flakes", + "sesame seeds", + "carrots", + "sugar", + "garlic", + "chinese chives", + "fish sauce", + "kirby cucumbers", + "cucumber", + "water", + "salt", + "onions" + ] + }, + { + "id": 21022, + "cuisine": "vietnamese", + "ingredients": [ + "cauliflower", + "green curry paste", + "lychees", + "fish sauce", + "olive oil", + "coriander", + "red chili peppers", + "boneless skinless chicken breasts", + "kaffir lime leaves", + "honey", + "coconut milk" + ] + }, + { + "id": 11203, + "cuisine": "chinese", + "ingredients": [ + "water", + "Shaoxing wine", + "salt", + "corn starch", + "kosher salt", + "ground black pepper", + "garlic", + "oyster sauce", + "sugar", + "lo mein noodles", + "vegetable oil", + "oil", + "dark soy sauce", + "light soy sauce", + "sesame oil", + "broccoli", + "skirt steak" + ] + }, + { + "id": 14716, + "cuisine": "chinese", + "ingredients": [ + "plain flour", + "lime juice", + "mandarin oranges", + "powdered sugar", + "butter", + "salt", + "eggs", + "orange", + "fresh orange juice", + "caster sugar", + "ice water" + ] + }, + { + "id": 20844, + "cuisine": "italian", + "ingredients": [ + "pasta", + "parmigiano reggiano cheese", + "red pepper", + "celery", + "tomato sauce", + "red pepper flakes", + "garlic", + "fresh basil", + "lean ground beef", + "extra-virgin olive oil", + "onions", + "pepper", + "red wine", + "salt" + ] + }, + { + "id": 3230, + "cuisine": "jamaican", + "ingredients": [ + "lime slices", + "fresh lime juice", + "vodka", + "bitters", + "orange", + "pineapple juice", + "fruit", + "rum", + "white sugar" + ] + }, + { + "id": 39596, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "flour tortillas", + "worcestershire sauce", + "salsa", + "fresh lime juice", + "lime rind", + "flank steak", + "cilantro sprigs", + "garlic cloves", + "dried oregano", + "low-fat sour cream", + "cooking spray", + "cracked black pepper", + "beef broth", + "chopped cilantro fresh", + "vidalia onion", + "olive oil", + "chicken breasts", + "salt", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 12695, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "pork stew meat", + "salt", + "ground cloves", + "tomatoes with juice", + "yellow onion", + "green chile", + "olive oil", + "salsa", + "pepper", + "garlic", + "dried oregano" + ] + }, + { + "id": 33559, + "cuisine": "indian", + "ingredients": [ + "cracked black pepper", + "fat-free mayonnaise", + "sugar", + "feta cheese crumbles", + "fat free yogurt", + "cucumber", + "garlic cloves" + ] + }, + { + "id": 40006, + "cuisine": "french", + "ingredients": [ + "butter", + "milk", + "semisweet chocolate", + "eggs", + "brewed espresso" + ] + }, + { + "id": 11315, + "cuisine": "mexican", + "ingredients": [ + "flour", + "chicken", + "salsa verde", + "shredded pepper jack cheese", + "chicken broth", + "butter", + "tortillas", + "sour cream" + ] + }, + { + "id": 37509, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "salt", + "corn", + "butter", + "queso fresco", + "cumin", + "ground black pepper", + "cilantro" + ] + }, + { + "id": 31979, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "chorizo", + "extra-virgin olive oil", + "kosher salt", + "broccoli florets", + "ground black pepper", + "onions" + ] + }, + { + "id": 14582, + "cuisine": "french", + "ingredients": [ + "sugar", + "semisweet chocolate", + "Dutch-processed cocoa powder", + "large egg whites", + "vanilla extract", + "unsweetened chocolate", + "cream of tartar", + "large egg yolks", + "1% low-fat milk", + "corn starch", + "water", + "cooking spray", + "salt" + ] + }, + { + "id": 4828, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "ice", + "lime", + "water", + "sweetened condensed milk" + ] + }, + { + "id": 89, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "ground black pepper", + "red bell pepper", + "plum tomatoes", + "olive oil", + "salt", + "onions", + "honey", + "jalapeno chilies", + "fresh lime juice", + "garbanzo beans", + "frozen corn kernels", + "chopped cilantro fresh" + ] + }, + { + "id": 5041, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "chopped fresh mint", + "grated lemon zest" + ] + }, + { + "id": 45594, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "water", + "salt", + "tumeric", + "red pepper flakes", + "ginger root", + "tomatoes", + "garam masala", + "cumin seed", + "moong dal", + "garlic", + "onions" + ] + }, + { + "id": 6911, + "cuisine": "chinese", + "ingredients": [ + "ground black pepper", + "flank steak", + "garlic", + "sugar", + "Shaoxing wine", + "butter", + "corn starch", + "steamed white rice", + "vegetable oil", + "salt", + "soy sauce", + "mushrooms", + "ginger" + ] + }, + { + "id": 27271, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "brown rice", + "worcestershire sauce", + "chopped parsley", + "dried oregano", + "cayenne", + "lemon", + "salt", + "medium shrimp", + "chopped tomatoes", + "Tabasco Pepper Sauce", + "garlic", + "celery", + "pepper", + "flour", + "grapeseed oil", + "smoked paprika", + "onions" + ] + }, + { + "id": 49202, + "cuisine": "japanese", + "ingredients": [ + "sake", + "olive oil", + "red pepper", + "striped bass", + "white vinegar", + "soy sauce", + "jalapeno chilies", + "salt", + "mullet", + "whitefish", + "pepper", + "chives", + "sauce", + "oyster sauce", + "sugar", + "sea bream", + "garlic", + "tilapia" + ] + }, + { + "id": 4332, + "cuisine": "mexican", + "ingredients": [ + "knorr chipotl minicub", + "vegetable oil", + "oil", + "water", + "shredded monterey jack cheese", + "knorr tomato bouillon with chicken flavor cube", + "white onion", + "dri oregano leaves, crush", + "corn tortillas", + "all potato purpos", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 29414, + "cuisine": "southern_us", + "ingredients": [ + "fresh rosemary", + "baking powder", + "salt", + "olive oil", + "bacon slices", + "fresh parsley", + "sugar", + "chopped fresh thyme", + "all-purpose flour", + "large eggs", + "whipping cream", + "onions" + ] + }, + { + "id": 156, + "cuisine": "vietnamese", + "ingredients": [ + "top round steak", + "baking powder", + "fish sauce", + "water", + "canola oil", + "black peppercorns", + "sugar", + "frozen banana leaf", + "fresh dill", + "tapioca starch" + ] + }, + { + "id": 44401, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "freshly ground pepper", + "fresh basil", + "low-sodium fat-free chicken broth", + "fresh lemon juice", + "mushroom caps", + "garlic cloves", + "vegetable oil cooking spray", + "fresh oregano" + ] + }, + { + "id": 29377, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "red wine vinegar", + "penne rigate", + "ground black pepper", + "garlic", + "olive oil", + "anchovy paste", + "flat leaf parsley", + "capers", + "fresh mozzarella", + "salt" + ] + }, + { + "id": 17251, + "cuisine": "irish", + "ingredients": [ + "sugar", + "pineapple", + "papaya" + ] + }, + { + "id": 47535, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "lime juice", + "garlic", + "yellow onion", + "dried oregano", + "black pepper", + "lime wedges", + "salt", + "bay leaf", + "chicken", + "chipotle chile", + "tortillas", + "canned tomatoes", + "ground allspice", + "canola oil", + "celery ribs", + "kosher salt", + "cilantro", + "salsa", + "peppercorns", + "ground cumin" + ] + }, + { + "id": 16752, + "cuisine": "japanese", + "ingredients": [ + "short-grain rice", + "cold water" + ] + }, + { + "id": 16474, + "cuisine": "british", + "ingredients": [ + "beef drippings", + "salt", + "milk", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 45096, + "cuisine": "japanese", + "ingredients": [ + "edible flowers", + "tamari soy sauce", + "salmon fillets", + "ginger", + "sake", + "miso paste", + "toasted sesame seeds", + "wasabi paste", + "soy milk", + "cayenne pepper" + ] + }, + { + "id": 45968, + "cuisine": "french", + "ingredients": [ + "saffron threads", + "fennel bulb", + "clam juice", + "large shrimp", + "olive oil", + "dry white wine", + "salt", + "black pepper", + "french bread", + "diced tomatoes", + "grated orange", + "garlic powder", + "ground red pepper", + "garlic cloves" + ] + }, + { + "id": 2699, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "water", + "allspice", + "dried fruit", + "lemon juice", + "biscuits", + "cinnamon" + ] + }, + { + "id": 35330, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "ground cumin", + "sweet onion", + "salt", + "frozen okra", + "mustard seeds", + "crushed red pepper" + ] + }, + { + "id": 24856, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "french baguette", + "artichok heart marin", + "arugula", + "pepper", + "garlic", + "grated parmesan cheese", + "roast red peppers, drain" + ] + }, + { + "id": 1373, + "cuisine": "russian", + "ingredients": [ + "caraway seeds", + "vegetable oil", + "egg noodles", + "large eggs", + "unsalted butter" + ] + }, + { + "id": 9702, + "cuisine": "italian", + "ingredients": [ + "pesto", + "artichok heart marin", + "garlic cloves", + "smoked turkey", + "pizza doughs", + "plum tomatoes", + "mozzarella cheese", + "chees fresh mozzarella", + "cornmeal", + "olive oil", + "provolone cheese" + ] + }, + { + "id": 31077, + "cuisine": "irish", + "ingredients": [ + "powdered sugar", + "water", + "butter", + "salt", + "sugar", + "baking soda", + "vanilla", + "shortening", + "milk", + "buttermilk", + "eggs", + "cocoa", + "flour", + "vanilla extract" + ] + }, + { + "id": 18754, + "cuisine": "mexican", + "ingredients": [ + "tostada shells", + "vegetable oil", + "cumin", + "avocado", + "pepper", + "sour cream", + "chile powder", + "canned black beans", + "salt", + "eggs", + "lime", + "panko breadcrumbs" + ] + }, + { + "id": 26567, + "cuisine": "french", + "ingredients": [ + "peeled tomatoes", + "leeks", + "chopped onion", + "thyme", + "fresh basil leaves", + "black pepper", + "grated parmesan cheese", + "salt", + "elbow macaroni", + "thyme sprigs", + "parsley sprigs", + "zucchini", + "extra-virgin olive oil", + "garlic cloves", + "green beans", + "water", + "potatoes", + "dried navy beans", + "carrots", + "bay leaf" + ] + }, + { + "id": 7411, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "fresh thyme leaves", + "heavy whipping cream", + "lobster", + "extra-virgin olive oil", + "ground black pepper", + "pappardelle", + "fresh parsley", + "chicken stock", + "dry white wine", + "thyme" + ] + }, + { + "id": 2335, + "cuisine": "italian", + "ingredients": [ + "pepper", + "low sodium chicken broth", + "carrots", + "italian seasoning", + "pasta shell small", + "garlic", + "celery", + "crushed tomatoes", + "cannellini beans", + "escarole", + "grated parmesan cheese", + "salt", + "onions" + ] + }, + { + "id": 20381, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garlic paste", + "black pepper", + "garam masala", + "cinnamon", + "ground meat", + "eggs", + "tumeric", + "curry powder", + "seeds", + "garlic", + "bread", + "chili flakes", + "chiles", + "milk", + "chili powder", + "curry", + "serrano chilies", + "green bell pepper", + "water", + "potatoes", + "ginger", + "onions" + ] + }, + { + "id": 2752, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "barley flour", + "water", + "salt", + "cornmeal", + "active dry yeast", + "all-purpose flour", + "semolina flour", + "olive oil", + "nigella seeds" + ] + }, + { + "id": 47033, + "cuisine": "southern_us", + "ingredients": [ + "evaporated milk", + "white sugar", + "water", + "margarine", + "eggs", + "vanilla extract", + "ground cinnamon", + "self rising flour" + ] + }, + { + "id": 46797, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "( oz.) tomato sauce", + "fat skimmed chicken broth", + "( oz.) tomato paste", + "italian sausage", + "parmesan cheese", + "balsamic vinegar", + "dry lasagna", + "ground chuck", + "ground nutmeg", + "sauce", + "onions", + "olive oil", + "mushrooms", + "chopped parsley" + ] + }, + { + "id": 19647, + "cuisine": "greek", + "ingredients": [ + "cooking spray", + "lemon juice", + "pepper", + "fresh oregano", + "bone in chicken thighs", + "olive oil", + "garlic cloves", + "pitted kalamata olives", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 3758, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "chopped fresh sage", + "whipping cream", + "water", + "frozen corn kernels", + "bacon", + "polenta" + ] + }, + { + "id": 18577, + "cuisine": "cajun_creole", + "ingredients": [ + "white pepper", + "paprika", + "ground cumin", + "unsalted butter", + "salt", + "dried thyme", + "dry mustard", + "black pepper", + "trout", + "cayenne pepper" + ] + }, + { + "id": 45330, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "sherry wine vinegar", + "garlic cloves", + "tomatoes", + "unsalted butter", + "salt", + "low salt chicken broth", + "halibut fillets", + "extra-virgin olive oil", + "smoked paprika", + "roasted hazelnuts", + "yukon gold potatoes", + "cayenne pepper", + "fresh parsley" + ] + }, + { + "id": 4962, + "cuisine": "southern_us", + "ingredients": [ + "gin", + "ice", + "fresh mint", + "club soda", + "cucumber", + "blackberries", + "turbinado", + "fresh lime juice" + ] + }, + { + "id": 44297, + "cuisine": "french", + "ingredients": [ + "raspberries", + "unsalted butter", + "whole milk", + "eggs", + "almond flour", + "egg whites", + "lemon juice", + "water", + "granulated sugar", + "lemon", + "powdered sugar", + "gelatin", + "egg yolks" + ] + }, + { + "id": 7760, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "ground cumin", + "ground cinnamon", + "sherry wine vinegar", + "honey", + "anise", + "cornish game hens" + ] + }, + { + "id": 33743, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "salt", + "russet potatoes", + "buttermilk", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 5321, + "cuisine": "southern_us", + "ingredients": [ + "jalapeno chilies", + "cheddar cheese", + "liquid", + "pimentos", + "mayonaise", + "chopped pecans" + ] + }, + { + "id": 26873, + "cuisine": "chinese", + "ingredients": [ + "coconut oil", + "spring onions", + "chickpeas", + "liquid aminos", + "sesame oil", + "lemon juice", + "water", + "ginger", + "coconut sugar", + "tapioca starch", + "garlic" + ] + }, + { + "id": 8877, + "cuisine": "french", + "ingredients": [ + "cookies", + "cognac", + "raspberries", + "whipping cream", + "sugar", + "vanilla", + "sour cream", + "egg yolks", + "fresh raspberries" + ] + }, + { + "id": 46625, + "cuisine": "thai", + "ingredients": [ + "sugar", + "unsweetened coconut milk", + "salt", + "sesame seeds", + "sweet rice", + "mango" + ] + }, + { + "id": 13193, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "sliced mushrooms", + "canola oil", + "jumbo pasta shells", + "white sugar", + "dried basil", + "onions", + "shredded Monterey Jack cheese", + "green bell pepper", + "pepperoni", + "dried oregano" + ] + }, + { + "id": 45465, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "heavy cream", + "scallions", + "oysters", + "mushrooms", + "salt", + "parmesan cheese", + "butter", + "grated nutmeg", + "bread crumbs", + "flour", + "paprika", + "red bell pepper" + ] + }, + { + "id": 33511, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "corn syrup", + "sugar", + "butter", + "water", + "vanilla", + "peanuts", + "salt" + ] + }, + { + "id": 19102, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "Gochujang base", + "light brown sugar", + "mirin", + "red pepper flakes", + "kimchi", + "bibb lettuce", + "sesame oil", + "ginger root", + "pickles", + "pork tenderloin", + "garlic", + "onions" + ] + }, + { + "id": 2150, + "cuisine": "southern_us", + "ingredients": [ + "half & half", + "raisin bread", + "sugar", + "golden delicious apples", + "large eggs" + ] + }, + { + "id": 18212, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "butternut squash", + "black pepper", + "parmigiano reggiano cheese", + "polenta", + "finely chopped onion", + "salt", + "water", + "whole milk" + ] + }, + { + "id": 14578, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "chili powder", + "chopped onion", + "rigatoni", + "milk", + "butter", + "chopped cilantro fresh", + "black beans", + "chile pepper", + "nonstick spray", + "ground cumin", + "asadero", + "all-purpose flour", + "chorizo sausage" + ] + }, + { + "id": 18132, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "reduced sodium refried beans", + "non-fat sour cream", + "dried minced onion", + "flour tortillas", + "lean ground beef", + "dri leav thyme", + "dried leaves oregano", + "spanish rice", + "crimini mushrooms", + "salsa", + "tex mex seasoning", + "dried minced garlic", + "guacamole", + "shredded lettuce", + "ground mustard", + "canola oil" + ] + }, + { + "id": 39424, + "cuisine": "japanese", + "ingredients": [ + "sake", + "fresh ginger", + "ginger", + "ground white pepper", + "white peppercorns", + "kosher salt", + "mirin", + "dark brown sugar", + "chicken thighs", + "soy sauce", + "sherry vinegar", + "garlic", + "toasted sesame oil", + "water", + "large eggs", + "scallions", + "panko breadcrumbs" + ] + }, + { + "id": 18229, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "chili powder", + "salt", + "boneless skinless chicken breast halves", + "ground ginger", + "garlic powder", + "light coconut milk", + "scallions", + "peanuts", + "peanut sauce", + "ground coriander", + "tumeric", + "vegetable oil", + "dark brown sugar" + ] + }, + { + "id": 24624, + "cuisine": "mexican", + "ingredients": [ + "spinach", + "water", + "olive oil", + "chili powder", + "gluten free blend", + "tequila", + "avocado", + "coconut oil", + "crushed tomatoes", + "jalapeno chilies", + "purple onion", + "crushed ice", + "cumin", + "dough", + "cointreau", + "lime juice", + "nutritional yeast", + "cilantro", + "sauce", + "cornmeal", + "tomatoes", + "black pepper", + "lime", + "baking powder", + "salt", + "ear of corn", + "mango" + ] + }, + { + "id": 10470, + "cuisine": "italian", + "ingredients": [ + "water", + "ground black pepper", + "lasagna sheets", + "garlic", + "chili flakes", + "sun-dried tomatoes", + "grated parmesan cheese", + "chees fresh mozzarella", + "fresh mint", + "fresh basil", + "olive oil", + "zucchini", + "fresh thyme leaves", + "purple onion", + "kosher salt", + "eggplant", + "marinara sauce", + "yellow bell pepper", + "herbes de provence" + ] + }, + { + "id": 30191, + "cuisine": "korean", + "ingredients": [ + "Fuji Apple", + "green onions", + "Gochujang base", + "soy sauce", + "ginger", + "pears", + "pork", + "sesame oil", + "onions", + "sugar", + "pepper", + "garlic" + ] + }, + { + "id": 29816, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "freshly ground pepper", + "sweet onion", + "extra-virgin olive oil", + "tomatoes", + "coarse salt", + "chopped parsley", + "sherry vinegar", + "chickpeas" + ] + }, + { + "id": 92, + "cuisine": "jamaican", + "ingredients": [ + "ground cloves", + "ground black pepper", + "ground allspice", + "chicken", + "ground cinnamon", + "minced ginger", + "garlic", + "scallions", + "light brown sugar", + "kosher salt", + "scotch bonnet chile", + "peanut oil", + "soy sauce", + "dried thyme", + "grated nutmeg", + "fresh lime juice" + ] + }, + { + "id": 26687, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "curry powder", + "diced tomatoes", + "onions", + "slivered almonds", + "boneless skinless chicken breasts", + "garlic cloves", + "table salt", + "bell pepper", + "apples", + "canola oil", + "reduced sodium chicken broth", + "raisins", + "ginger root" + ] + }, + { + "id": 21692, + "cuisine": "british", + "ingredients": [ + "sausage links", + "all-purpose flour", + "savory", + "milk", + "eggs", + "salt" + ] + }, + { + "id": 22737, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "basil", + "dijon style mustard", + "radicchio leaves", + "fingerling potatoes", + "extra-virgin olive oil", + "scallions", + "white wine", + "chives", + "garlic", + "fresh parsley", + "hard-boiled egg", + "cracked black pepper", + "chopped onion" + ] + }, + { + "id": 12997, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "sesame oil", + "lime", + "toasted sesame seeds", + "safflower oil", + "rice vinegar", + "green cabbage", + "miso paste" + ] + }, + { + "id": 24736, + "cuisine": "italian", + "ingredients": [ + "white onion", + "button mushrooms", + "boneless skinless chicken breast halves", + "grated parmesan cheese", + "rotini", + "crushed tomatoes", + "garlic", + "italian seasoning", + "vegetable oil", + "white sugar" + ] + }, + { + "id": 5067, + "cuisine": "italian", + "ingredients": [ + "vin santo", + "butter", + "cinnamon sticks", + "sugar", + "peaches", + "part-skim ricotta cheese", + "grated orange", + "sweet cherries", + "plums", + "orange rind", + "seedless green grape", + "cooking spray", + "orange blossom honey" + ] + }, + { + "id": 12942, + "cuisine": "italian", + "ingredients": [ + "1% low-fat cottage cheese", + "part-skim mozzarella cheese", + "lasagna noodles, cooked and drained", + "dried oregano", + "large egg whites", + "large eggs", + "all-purpose flour", + "dried basil", + "fresh parmesan cheese", + "part-skim ricotta cheese", + "seasoned bread crumbs", + "eggplant", + "cooking spray", + "tomato basil sauce" + ] + }, + { + "id": 48038, + "cuisine": "indian", + "ingredients": [ + "strong white bread flour", + "yoghurt", + "ghee", + "warm water", + "salt", + "sugar", + "vegetable oil", + "instant yeast", + "nigella seeds" + ] + }, + { + "id": 32205, + "cuisine": "italian", + "ingredients": [ + "red pepper flakes", + "arugula", + "olive oil", + "shelled pistachios", + "sea salt", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 1559, + "cuisine": "greek", + "ingredients": [ + "green onions", + "caesar salad dressing", + "black olives", + "tomatoes", + "feta cheese crumbles" + ] + }, + { + "id": 6992, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "celery", + "olive oil", + "salt", + "dried oregano", + "tomatoes", + "balsamic vinegar", + "onions", + "ground black pepper", + "fresh mushrooms", + "chicken" + ] + }, + { + "id": 27554, + "cuisine": "southern_us", + "ingredients": [ + "corn husks", + "onion powder", + "ground cayenne pepper", + "garlic powder", + "chili powder", + "salt", + "ground cumin", + "black pepper", + "baking powder", + "paprika", + "broth", + "yellow corn meal", + "meat", + "vegetable oil", + "lard" + ] + }, + { + "id": 24849, + "cuisine": "indian", + "ingredients": [ + "whole wheat flour", + "ginger", + "oil", + "water", + "mint leaves", + "cilantro leaves", + "ground turmeric", + "cauliflower", + "coriander powder", + "salt", + "jeera", + "amchur", + "chili powder", + "green chilies" + ] + }, + { + "id": 41614, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "kidney beans", + "garlic", + "red bell pepper", + "olive oil", + "yellow bell pepper", + "frozen corn kernels", + "onions", + "fresh cilantro", + "boneless skinless chicken breasts", + "cayenne pepper", + "corn tortillas", + "orange bell pepper", + "cheese", + "taco seasoning", + "ground cumin" + ] + }, + { + "id": 31379, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "prawns", + "swordfish fillets", + "yellow peppers", + "olive oil", + "chili powder", + "fresh lime juice", + "allspice", + "curry powder", + "spring onions", + "coconut milk", + "plum tomatoes", + "brown sugar", + "fresh ginger", + "salt", + "coriander" + ] + }, + { + "id": 18792, + "cuisine": "italian", + "ingredients": [ + "salt", + "cilantro pesto", + "pasta", + "large shrimp", + "extra-virgin olive oil" + ] + }, + { + "id": 13614, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "shallots", + "fish sauce", + "mint leaves", + "palm sugar", + "thai chile", + "lime juice", + "mushrooms" + ] + }, + { + "id": 48401, + "cuisine": "italian", + "ingredients": [ + "eggs", + "russet potatoes", + "pesto", + "semolina flour", + "grated parmesan cheese" + ] + }, + { + "id": 47388, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "mascarpone", + "water", + "whipping cream", + "sugar", + "frozen pastry puff sheets", + "bananas", + "fresh lemon juice" + ] + }, + { + "id": 285, + "cuisine": "french", + "ingredients": [ + "tarragon vinegar", + "chopped fresh chives", + "crème fraîche", + "smoked salmon", + "dijon mustard", + "fresh tarragon", + "olive oil", + "dry white wine", + "hothouse cucumber", + "Belgian endive", + "sea scallops", + "watercress" + ] + }, + { + "id": 37180, + "cuisine": "italian", + "ingredients": [ + "eggs", + "unsalted butter", + "milk", + "all-purpose flour", + "brown sugar", + "baking powder", + "ground cinnamon", + "almonds", + "white sugar" + ] + }, + { + "id": 20136, + "cuisine": "indian", + "ingredients": [ + "unsweetened shredded dried coconut", + "green bell pepper, slice", + "cumin seed", + "coriander seeds", + "yellow lentils", + "asafoetida powder", + "water", + "vegetable oil", + "mustard seeds", + "tomatoes", + "tamarind pulp", + "yellow split peas", + "dried red chile peppers" + ] + }, + { + "id": 6998, + "cuisine": "thai", + "ingredients": [ + "shredded coleslaw mix", + "salt", + "pepper", + "peanuts", + "fish sauce", + "honey", + "rice vinegar", + "lime juice", + "sesame oil" + ] + }, + { + "id": 29571, + "cuisine": "southern_us", + "ingredients": [ + "sorghum", + "russet potatoes", + "acorn squash", + "water", + "vanilla extract", + "firmly packed brown sugar", + "butter", + "baby carrots", + "ground cinnamon", + "sweet potatoes", + "salt" + ] + }, + { + "id": 375, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "garlic", + "curry powder", + "ginger", + "white kidney beans", + "tomato sauce", + "sweet potatoes", + "yellow onion", + "kale", + "light coconut milk" + ] + }, + { + "id": 43667, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "feta cheese crumbles", + "reduced sodium chicken broth", + "salt", + "chopped cilantro fresh", + "milk", + "tortilla chips", + "black pepper", + "cooked chicken", + "sour cream" + ] + }, + { + "id": 3482, + "cuisine": "italian", + "ingredients": [ + "sugar", + "instant coffee", + "chopped walnuts", + "ground cinnamon", + "large eggs", + "salt", + "semisweet chocolate", + "butter", + "candy", + "firmly packed brown sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 45920, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "tomatoes with juice", + "Italian bread", + "active dry yeast", + "pecorino romano cheese", + "caciocavallo", + "dried oregano", + "warm water", + "vine ripened tomatoes", + "salt", + "onions", + "olive oil", + "all purpose unbleached flour", + "anchovy fillets" + ] + }, + { + "id": 47053, + "cuisine": "brazilian", + "ingredients": [ + "cocoa powder", + "condensed milk" + ] + }, + { + "id": 44661, + "cuisine": "spanish", + "ingredients": [ + "fat free less sodium chicken broth", + "olive oil", + "boneless skinless chicken breasts", + "salt", + "sweet onion", + "large eggs", + "fat free less sodium beef broth", + "fresh lime juice", + "green chile", + "yellow squash", + "pork tenderloin", + "cilantro sprigs", + "long grain white rice", + "pepper", + "ground black pepper", + "diced tomatoes", + "carrots" + ] + }, + { + "id": 6555, + "cuisine": "thai", + "ingredients": [ + "cooking spray", + "garlic cloves", + "jumbo shrimp", + "vegetable oil", + "bird chile", + "cilantro stems", + "Thai fish sauce", + "sugar", + "sea salt", + "white peppercorns" + ] + }, + { + "id": 18506, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "sugar", + "vegetable oil", + "soy sauce", + "chicken wings", + "ground black pepper" + ] + }, + { + "id": 4990, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "bacon", + "vegetable oil", + "cornmeal", + "baking powder", + "salt", + "baking soda", + "buttermilk" + ] + }, + { + "id": 10189, + "cuisine": "southern_us", + "ingredients": [ + "lemon zest", + "whipping cream", + "yellow corn meal", + "baking powder", + "all-purpose flour", + "large eggs", + "salt", + "sugar", + "butter" + ] + }, + { + "id": 22275, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "garlic cloves", + "cilantro", + "tiger prawn", + "sea salt", + "red bell pepper", + "red chili peppers", + "sweet paprika" + ] + }, + { + "id": 6318, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "light soy sauce", + "rice vinegar", + "warm water", + "fresh ginger", + "dark soy sauce", + "minced garlic", + "Sriracha", + "sugar", + "chili", + "sesame oil" + ] + }, + { + "id": 36664, + "cuisine": "southern_us", + "ingredients": [ + "ranch dressing", + "mayonaise", + "red potato", + "bacon slices", + "green onions" + ] + }, + { + "id": 2444, + "cuisine": "southern_us", + "ingredients": [ + "greens", + "kosher salt" + ] + }, + { + "id": 15040, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "soppressata", + "pork tenderloin", + "purple onion", + "rosemary", + "extra-virgin olive oil", + "freshly ground pepper", + "dry white wine", + "salt" + ] + }, + { + "id": 44699, + "cuisine": "cajun_creole", + "ingredients": [ + "warm water", + "salt", + "powdered sugar", + "frying oil", + "softened butter", + "eggs", + "cream", + "all-purpose flour", + "sugar", + "cinnamon", + "yeast" + ] + }, + { + "id": 40742, + "cuisine": "mexican", + "ingredients": [ + "low sodium chicken broth", + "poblano chiles", + "kosher salt", + "white rice", + "white onion", + "cilantro stems", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 47481, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "large garlic cloves", + "warm water", + "queso fresco", + "serrano chile", + "flour", + "huitlacoche", + "salsa verde", + "lard" + ] + }, + { + "id": 12389, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "hot sauce", + "ground cumin", + "vegetable oil", + "onions", + "large eggs", + "fresh mint", + "tomato paste", + "ground pork", + "dried oregano" + ] + }, + { + "id": 46959, + "cuisine": "mexican", + "ingredients": [ + "water", + "salt", + "yellow peppers", + "paprika", + "chopped cilantro", + "cumin", + "chili powder", + "cayenne pepper", + "oregano", + "pepper", + "garlic", + "onions", + "beef roast" + ] + }, + { + "id": 17900, + "cuisine": "italian", + "ingredients": [ + "garlic cloves", + "spaghetti", + "dry white wine", + "flat leaf parsley", + "fresh lemon juice", + "extra-virgin olive oil", + "varnish clams" + ] + }, + { + "id": 30743, + "cuisine": "southern_us", + "ingredients": [ + "frozen whipped topping", + "frozen strawberries", + "crushed pretzels", + "boiling water", + "Jell-O Gelatin", + "confectioners sugar", + "melted butter", + "cream cheese" + ] + }, + { + "id": 42214, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "green onions", + "chopped onion", + "chopped cilantro fresh", + "cooking spray", + "salsa", + "corn tortillas", + "Mexican cheese blend", + "non-fat sour cream", + "garlic cloves", + "ground cumin", + "ground turkey breast", + "salt", + "enchilada sauce" + ] + }, + { + "id": 46240, + "cuisine": "french", + "ingredients": [ + "pear tomatoes", + "green beans", + "lettuce leaves", + "vinaigrette", + "fresh asparagus", + "cherry tomatoes", + "yellow bell pepper", + "cucumber", + "new potatoes", + "baby carrots" + ] + }, + { + "id": 48117, + "cuisine": "italian", + "ingredients": [ + "red bartlett pears", + "olive oil", + "salt", + "prebaked pizza crusts", + "flank steak", + "pepper", + "cheese", + "vegetable oil cooking spray", + "vinegar", + "arugula" + ] + }, + { + "id": 21873, + "cuisine": "indian", + "ingredients": [ + "red food coloring", + "chicken pieces", + "yoghurt", + "oil", + "tandoori spices", + "salt", + "cilantro", + "lemon juice" + ] + }, + { + "id": 42197, + "cuisine": "korean", + "ingredients": [ + "eggs", + "sesame seeds", + "sesame oil", + "oil", + "soy sauce", + "green onions", + "garlic", + "kimchi", + "sugar", + "short-grain rice", + "red pepper flakes", + "beansprouts", + "water", + "rice wine", + "green chilies", + "ground beef" + ] + }, + { + "id": 8649, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "lemon juice", + "ground turmeric", + "garam masala", + "salt", + "onions", + "cooked vegetables", + "garlic", + "ghee", + "masala", + "coriander powder", + "cilantro leaves", + "basmati rice" + ] + }, + { + "id": 49658, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "ground black pepper", + "red pepper", + "chillies", + "olive oil", + "tortillas", + "garlic", + "cheddar cheese", + "fresh bay leaves", + "sea salt", + "onions", + "chopped tomatoes", + "large eggs", + "dried chile" + ] + }, + { + "id": 12297, + "cuisine": "mexican", + "ingredients": [ + "cayenne", + "paprika", + "onions", + "cinnamon", + "garlic", + "cumin", + "apple cider vinegar", + "ground pork", + "oregano", + "guajillo", + "salt" + ] + }, + { + "id": 45835, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "cucumber", + "pitted black olives", + "fresh lemon juice", + "chopped garlic", + "red wine vinegar", + "plum tomatoes", + "red leaf lettuce", + "feta cheese crumbles" + ] + }, + { + "id": 38873, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "buttermilk", + "chicken", + "eggs", + "barbecue sauce", + "all-purpose flour", + "steak sauce", + "ground black pepper", + "worcestershire sauce", + "seasoning salt", + "onion powder", + "oil" + ] + }, + { + "id": 8387, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "all-purpose flour", + "butter", + "granulated sugar", + "powdered sugar", + "almond meal" + ] + }, + { + "id": 26660, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame seeds", + "mushrooms", + "salt", + "green bell pepper", + "rice syrup", + "beef brisket", + "vegetable oil", + "red bell pepper", + "eggs", + "pinenuts", + "ground black pepper", + "sesame oil", + "carrots", + "sugar", + "honey", + "rice cakes", + "garlic", + "onions" + ] + }, + { + "id": 41370, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "fresh chevre", + "asiago" + ] + }, + { + "id": 44992, + "cuisine": "filipino", + "ingredients": [ + "bay leaves", + "black peppercorns", + "garlic", + "cane vinegar", + "soy sauce", + "bone in chicken thighs" + ] + }, + { + "id": 23855, + "cuisine": "mexican", + "ingredients": [ + "cooked turkey", + "turkey gravy", + "stuffing", + "reduced-fat sour cream", + "part-skim mozzarella cheese", + "diced tomatoes", + "cooking spray", + "corn tortillas" + ] + }, + { + "id": 45187, + "cuisine": "spanish", + "ingredients": [ + "vegetable juice", + "red wine vinegar", + "freshly ground pepper", + "chopped green bell pepper", + "salt", + "croutons", + "olive oil", + "diced tomatoes", + "garlic cloves", + "green onions", + "hot sauce", + "cucumber" + ] + }, + { + "id": 2180, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "vegetable broth", + "chickpeas", + "toasted slivered almonds", + "asian eggplants", + "raisins", + "salt", + "garlic cloves", + "butternut squash", + "ras el hanout", + "freshly ground pepper", + "ground turmeric", + "preserved lemon", + "Italian parsley leaves", + "yellow onion", + "fresh lemon juice" + ] + }, + { + "id": 37853, + "cuisine": "chinese", + "ingredients": [ + "honey", + "apple cider vinegar", + "oil", + "soy sauce", + "boneless skinless chicken breasts", + "garlic", + "cold water", + "sesame seeds", + "crushed red pepper flakes", + "corn starch", + "water", + "brown rice", + "scallions" + ] + }, + { + "id": 37362, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "feta cheese", + "water", + "pinenuts", + "pasta sheets", + "eggs", + "olive oil" + ] + }, + { + "id": 45152, + "cuisine": "italian", + "ingredients": [ + "lean ground beef", + "marinara sauce", + "cheese tortellini", + "part-skim mozzarella cheese", + "diced tomatoes", + "ground Italian sausage", + "fresh mushrooms" + ] + }, + { + "id": 21667, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "sunflower oil", + "sweet potatoes", + "onions", + "chopped tomatoes", + "garlic cloves", + "korma paste", + "baby spinach", + "basmati rice" + ] + }, + { + "id": 14641, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "collard greens", + "swiss cheese", + "onions", + "sugar", + "butter", + "milk", + "garlic cloves" + ] + }, + { + "id": 8539, + "cuisine": "japanese", + "ingredients": [ + "sesame", + "miso paste", + "butter", + "pork", + "soup", + "soy sauce", + "green onions", + "sake", + "udon", + "garlic" + ] + }, + { + "id": 35138, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "ground black pepper", + "lamb shoulder chops", + "grated lemon zest", + "carrots", + "water", + "cooking spray", + "diced tomatoes", + "chopped onion", + "flat leaf parsley", + "yellow corn meal", + "fresh parmesan cheese", + "butter", + "all-purpose flour", + "garlic cloves", + "fat free milk", + "dry white wine", + "salt", + "less sodium beef broth", + "thyme sprigs" + ] + }, + { + "id": 5696, + "cuisine": "italian", + "ingredients": [ + "ground round", + "cooking spray", + "lasagna noodles", + "mild cheddar cheese", + "low-fat spaghetti sauce", + "fat-free cottage cheese", + "grated parmesan cheese", + "fresh parsley" + ] + }, + { + "id": 46880, + "cuisine": "italian", + "ingredients": [ + "water", + "dry white wine", + "grated lemon zest", + "arborio rice", + "olive oil", + "clam juice", + "snow peas", + "dried thyme", + "shallots", + "medium shrimp", + "black pepper", + "fresh parmesan cheese", + "green peas" + ] + }, + { + "id": 35340, + "cuisine": "italian", + "ingredients": [ + "globe eggplant", + "salt", + "seasoning", + "olive oil", + "garlic puree", + "mint", + "parsley", + "fresh lemon juice", + "aleppo pepper", + "red wine vinegar" + ] + }, + { + "id": 19790, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "feta cheese", + "fresh parsley", + "fresh dill", + "penne pasta", + "green onions" + ] + }, + { + "id": 48688, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "garlic cloves", + "cabbage", + "lemon", + "onions", + "dried rice noodles", + "cooked chicken breasts", + "vegetable oil", + "carrots" + ] + }, + { + "id": 18449, + "cuisine": "mexican", + "ingredients": [ + "amaretto", + "water", + "tequila", + "lime slices", + "fresh lime juice", + "sugar", + "orange juice" + ] + }, + { + "id": 29242, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "hoisin sauce", + "crushed red pepper flakes", + "dark sesame oil", + "jasmine rice", + "chicken breasts", + "salt", + "corn starch", + "soy sauce", + "peeled fresh ginger", + "garlic", + "scallions", + "water", + "vegetable oil", + "broccoli", + "toasted sesame seeds" + ] + }, + { + "id": 18016, + "cuisine": "southern_us", + "ingredients": [ + "crawfish", + "vegetable oil", + "whole peel tomatoes, undrain and chop", + "minced garlic", + "chopped celery", + "pepper", + "diced tomatoes", + "onions", + "tomato sauce", + "chopped green bell pepper", + "salt" + ] + }, + { + "id": 5640, + "cuisine": "thai", + "ingredients": [ + "pepper", + "chicken breasts", + "bamboo shoots", + "thai basil", + "coconut milk", + "fish sauce", + "palm sugar", + "lime leaves", + "green curry paste", + "vegetable oil" + ] + }, + { + "id": 46293, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "cooking liquid", + "vegetable oil", + "kosher salt", + "black beans", + "garlic cloves" + ] + }, + { + "id": 27595, + "cuisine": "southern_us", + "ingredients": [ + "red wine vinegar", + "all-purpose flour", + "large eggs", + "dijon style mustard", + "onions", + "dried thyme", + "dry red wine", + "garlic cloves", + "vegetable oil", + "salt", + "chicken thighs" + ] + }, + { + "id": 23233, + "cuisine": "russian", + "ingredients": [ + "peas", + "diced onions", + "cornichons", + "mayonaise", + "waxy potatoes", + "hard-boiled egg", + "carrots" + ] + }, + { + "id": 47065, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "garlic", + "onions", + "olive oil", + "ham", + "apple cider vinegar", + "collards", + "water", + "freshly ground pepper", + "smoked ham hocks" + ] + }, + { + "id": 1698, + "cuisine": "chinese", + "ingredients": [ + "extra firm tofu", + "ginger", + "onions", + "low sodium soy sauce", + "jalapeno chilies", + "garlic cloves", + "broccoli florets", + "scallions", + "sesame seeds", + "sesame oil", + "corn starch" + ] + }, + { + "id": 4104, + "cuisine": "cajun_creole", + "ingredients": [ + "jalapeno chilies", + "salt", + "peanuts", + "red pepper flakes", + "garlic powder", + "shells", + "cajun seasoning", + "crab boil" + ] + }, + { + "id": 25599, + "cuisine": "italian", + "ingredients": [ + "capers", + "balsamic vinegar", + "boneless skinless chicken breast halves", + "olive oil", + "fresh lemon juice", + "ground black pepper", + "fresh parsley", + "fat free less sodium chicken broth", + "salt" + ] + }, + { + "id": 4285, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "straw mushrooms", + "scallions", + "cooked rice", + "lime", + "kaffir lime leaves", + "lemongrass", + "medium shrimp", + "fish sauce", + "thai chile" + ] + }, + { + "id": 19390, + "cuisine": "french", + "ingredients": [ + "sugar", + "almond extract", + "cold water", + "milk", + "raspberries", + "heavy cream", + "unflavored gelatin", + "almonds" + ] + }, + { + "id": 44852, + "cuisine": "italian", + "ingredients": [ + "seedless watermelon", + "fresh lime juice", + "sugar" + ] + }, + { + "id": 23299, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "pickling salt", + "red bell pepper", + "sugar", + "mustard seeds", + "cabbage", + "tumeric", + "green tomatoes", + "onions", + "white vinegar", + "water", + "celery seed" + ] + }, + { + "id": 44366, + "cuisine": "thai", + "ingredients": [ + "fresh lime", + "Sriracha", + "garlic", + "large shrimp", + "olive oil", + "green onions", + "carrots", + "fresh cilantro", + "low sodium chicken broth", + "red curry paste", + "fish sauce", + "shiitake", + "ginger", + "coconut milk" + ] + }, + { + "id": 11270, + "cuisine": "italian", + "ingredients": [ + "butter", + "chopped fresh sage", + "fettucine", + "crushed red pepper", + "asiago", + "garlic cloves", + "olive oil", + "Italian turkey sausage" + ] + }, + { + "id": 4951, + "cuisine": "mexican", + "ingredients": [ + "chopped onion", + "chipotle chile", + "plain low fat greek yogurt", + "pickle relish" + ] + }, + { + "id": 34158, + "cuisine": "chinese", + "ingredients": [ + "tomatoes", + "shiitake", + "salt", + "chopped cilantro", + "white pepper", + "rice wine", + "semi firm tofu", + "eggs", + "pork tenderloin", + "rice vinegar", + "wood ear mushrooms", + "light soy sauce", + "sesame oil", + "corn starch" + ] + }, + { + "id": 17106, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "fresh orange juice", + "chicken", + "ground cloves", + "apple cider vinegar", + "garlic cloves", + "ground cinnamon", + "green onions", + "salt", + "tomatillo salsa", + "ancho powder", + "dried oregano" + ] + }, + { + "id": 9536, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "white wine vinegar", + "ground pepper", + "garlic cloves", + "horseradish", + "spicy brown mustard", + "sugar", + "salt" + ] + }, + { + "id": 46151, + "cuisine": "southern_us", + "ingredients": [ + "water", + "deep dish pie crust", + "chopped onion", + "white pepper", + "butter", + "salt", + "chopped green bell pepper", + "chopped celery", + "ground cayenne pepper", + "crawfish", + "diced tomatoes", + "all-purpose flour" + ] + }, + { + "id": 48162, + "cuisine": "indian", + "ingredients": [ + "raspberry juice", + "fat skimmed chicken broth", + "garam masala", + "salad oil", + "pepper", + "salt", + "center cut loin pork chop", + "garlic powder", + "corn starch" + ] + }, + { + "id": 13290, + "cuisine": "italian", + "ingredients": [ + "sugar", + "peach slices", + "mint leaves", + "fresh lime juice", + "water", + "mint sprigs", + "rum" + ] + }, + { + "id": 29617, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "vanilla extract", + "evaporated milk", + "confectioners sugar", + "water", + "all-purpose flour", + "butter", + "white sugar" + ] + }, + { + "id": 2976, + "cuisine": "french", + "ingredients": [ + "lemon zest", + "white wine vinegar", + "mayonaise", + "shallots", + "pepper", + "fresh tarragon", + "dry white wine" + ] + }, + { + "id": 5078, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "cooking spray", + "grated lemon zest", + "fresh parsley", + "kosher salt", + "chopped fresh chives", + "extra-virgin olive oil", + "fresh lemon juice", + "capers", + "chopped almonds", + "chopped fresh thyme", + "garlic cloves", + "zucchini", + "boneless skinless chicken breasts", + "fresh oregano" + ] + }, + { + "id": 29755, + "cuisine": "spanish", + "ingredients": [ + "artichoke hearts", + "peas", + "fat skimmed chicken broth", + "angel hair", + "diced tomatoes", + "salt", + "ground turmeric", + "clams", + "lemon wedge", + "garlic", + "onions", + "olive oil", + "deveined shrimp", + "halibut" + ] + }, + { + "id": 43552, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "soft corn tortillas", + "vegetable oil", + "chicken breasts", + "cheese" + ] + }, + { + "id": 26956, + "cuisine": "irish", + "ingredients": [ + "whole milk", + "salt", + "yukon gold potatoes", + "ground black pepper", + "butter", + "green onions" + ] + }, + { + "id": 24052, + "cuisine": "mexican", + "ingredients": [ + "lime", + "onion powder", + "paprika", + "corn tortillas", + "ground black pepper", + "coarse salt", + "ground coriander", + "cabbage", + "pico de gallo", + "guacamole", + "lemon", + "cumin seed", + "garlic powder", + "vegetable oil", + "garlic", + "skirt steak" + ] + }, + { + "id": 26145, + "cuisine": "chinese", + "ingredients": [ + "coconut oil", + "garlic", + "gluten free soy sauce", + "sesame seeds", + "stir fry beef meat", + "water", + "corn starch", + "brown sugar", + "ginger", + "onions" + ] + }, + { + "id": 12013, + "cuisine": "irish", + "ingredients": [ + "vegetable stock", + "salt", + "extra-virgin olive oil", + "carrots", + "lemon", + "yellow onion", + "olive oil", + "garlic", + "toasted sesame oil" + ] + }, + { + "id": 47968, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "cracked black pepper", + "dried oregano", + "fettucine", + "artichoke hearts", + "garlic", + "olive oil", + "vegetable broth", + "spinach", + "mushrooms", + "yellow onion" + ] + }, + { + "id": 3857, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "onions", + "light cream", + "butter", + "crushed tomatoes", + "cantaloupe", + "orecchiette", + "prosciutto", + "salt" + ] + }, + { + "id": 23662, + "cuisine": "chinese", + "ingredients": [ + "pork", + "green onions", + "wonton wrappers", + "shrimp", + "light soy sauce", + "sesame oil", + "rice vinegar", + "chicken stock", + "fresh ginger", + "vegetable oil", + "garlic cloves", + "white wine", + "rice wine", + "salt", + "cabbage" + ] + }, + { + "id": 6480, + "cuisine": "french", + "ingredients": [ + "mushrooms", + "genoise", + "confectioners sugar", + "icing", + "chocolate mousse", + "bittersweet chocolate" + ] + }, + { + "id": 26515, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "medium shrimp uncook", + "salt", + "milk", + "butter", + "garlic cloves", + "shredded cheddar cheese", + "green onions", + "hot sauce", + "chicken broth", + "blackening seasoning", + "bacon", + "grits" + ] + }, + { + "id": 6335, + "cuisine": "italian", + "ingredients": [ + "red lentils", + "kale", + "leeks", + "yams", + "soy sauce", + "French lentils", + "vegetable broth", + "fresh parsley", + "water", + "grated parmesan cheese", + "chopped fresh sage", + "fresh rosemary", + "olive oil", + "flank steak", + "garlic cloves" + ] + }, + { + "id": 9653, + "cuisine": "southern_us", + "ingredients": [ + "cajun seasoning", + "lemon pepper", + "milk", + "cracked black pepper", + "eggs", + "old bay seasoning", + "shrimp", + "self rising flour", + "peanut oil" + ] + }, + { + "id": 28638, + "cuisine": "italian", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "vegetable oil", + "italian salad dressing", + "pizza crust mix", + "herbs", + "onions", + "tomatoes", + "yellow squash", + "hot water", + "yellow corn meal", + "vegetable oil cooking spray", + "salt" + ] + }, + { + "id": 20247, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "shrimp", + "heavy cream", + "butter", + "fresh parsley", + "fettuccine pasta", + "freshly ground pepper" + ] + }, + { + "id": 22502, + "cuisine": "korean", + "ingredients": [ + "potato starch", + "honey", + "sticky rice", + "Gochujang base", + "pork shoulder", + "dough", + "soy sauce", + "shallots", + "garlic", + "ground white pepper", + "chicken stock", + "water", + "rice wine", + "rice vinegar", + "toasted sesame oil", + "sugar", + "ground black pepper", + "ginger", + "rice flour" + ] + }, + { + "id": 5764, + "cuisine": "french", + "ingredients": [ + "celery stick", + "bouquet garni", + "garlic cloves", + "pork shoulder", + "clove", + "sea salt", + "duck", + "carrots", + "pancetta", + "ground black pepper", + "yellow onion", + "goose fat", + "plum tomatoes", + "haricot beans", + "dry bread crumbs", + "lemon juice", + "pork sausages" + ] + }, + { + "id": 13640, + "cuisine": "italian", + "ingredients": [ + "sugar", + "low-fat plain yogurt", + "whole milk", + "unflavored gelatin", + "fresh lemon juice", + "vanilla beans" + ] + }, + { + "id": 46605, + "cuisine": "italian", + "ingredients": [ + "white wine", + "onions", + "parmesan cheese", + "olive oil", + "stock", + "white arborio rice" + ] + }, + { + "id": 12135, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "berries", + "heavy cream", + "egg yolks", + "tequila", + "mint sprigs" + ] + }, + { + "id": 25852, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "extra-virgin olive oil", + "basil leaves", + "garlic cloves", + "pinenuts", + "salt", + "parsley" + ] + }, + { + "id": 12958, + "cuisine": "italian", + "ingredients": [ + "miniature chocolate chips", + "sugar", + "salt", + "grated orange peel", + "unsalted roasted pistachios", + "large egg whites", + "bittersweet chocolate" + ] + }, + { + "id": 33236, + "cuisine": "spanish", + "ingredients": [ + "white vinegar", + "brown sugar", + "granulated sugar", + "ground cinnamon", + "ground cloves", + "all-purpose flour", + "ground ginger", + "shortening", + "buttermilk", + "eggs", + "baking soda" + ] + }, + { + "id": 36276, + "cuisine": "indian", + "ingredients": [ + "water", + "vegetable oil", + "onions", + "tomato sauce", + "lime juice", + "garlic", + "tomatoes", + "curry powder", + "butter", + "chicken", + "pepper", + "ground black pepper", + "salt" + ] + }, + { + "id": 16969, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "active dry yeast", + "salt", + "garlic cloves", + "ground cumin", + "colby cheese", + "chorizo", + "poblano chilies", + "scallions", + "onions", + "black beans", + "pimentos", + "all-purpose flour", + "fresh lime juice", + "sugar", + "fresh coriander", + "tomatillos", + "peanut oil", + "cornmeal" + ] + }, + { + "id": 21226, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "russet potatoes", + "ground coriander", + "ground cumin", + "tomato paste", + "peeled fresh ginger", + "paprika", + "onions", + "white vinegar", + "garam masala", + "large garlic cloves", + "low salt chicken broth", + "tomatoes", + "vegetable oil", + "cayenne pepper", + "ground turmeric" + ] + }, + { + "id": 5878, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sherry vinegar", + "scallions", + "kosher salt", + "salt", + "white sugar", + "beans", + "grapeseed oil", + "pork butt", + "brown sugar", + "fresh ginger", + "Gochujang base" + ] + }, + { + "id": 27844, + "cuisine": "japanese", + "ingredients": [ + "potatoes", + "salt", + "frozen peas", + "cauliflower", + "diced tomatoes", + "ground coriander", + "cumin", + "tumeric", + "cilantro", + "cumin seed", + "vegetable oil", + "cayenne pepper", + "boiling water" + ] + }, + { + "id": 45817, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "vegetable oil", + "paprika", + "onions", + "tomato purée", + "curry powder", + "lemon", + "garlic", + "ground cloves", + "fresh ginger", + "red pepper", + "salt", + "plain yogurt", + "cinnamon", + "cilantro", + "ground cumin" + ] + }, + { + "id": 48968, + "cuisine": "indian", + "ingredients": [ + "clove", + "water", + "white rice", + "tiger prawn", + "chicken bouillon", + "ground black pepper", + "salt", + "garlic paste", + "garam masala", + "cardamom seeds", + "plain yogurt", + "vegetable oil", + "cinnamon sticks" + ] + }, + { + "id": 1054, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "frozen mixed vegetables" + ] + }, + { + "id": 34412, + "cuisine": "brazilian", + "ingredients": [ + "fresh lime", + "passion fruit juice", + "granulated sugar", + "cachaca" + ] + }, + { + "id": 31756, + "cuisine": "mexican", + "ingredients": [ + "butter", + "penne pasta", + "ground cumin", + "shredded cheddar cheese", + "diced tomatoes", + "tomato soup", + "bacon", + "smoked paprika", + "ground black pepper", + "cilantro leaves", + "garlic salt" + ] + }, + { + "id": 16388, + "cuisine": "spanish", + "ingredients": [ + "butter", + "boiling water", + "black pepper", + "long-grain rice", + "egg noodles", + "spaghetti", + "salt" + ] + }, + { + "id": 35035, + "cuisine": "french", + "ingredients": [ + "almond flour", + "white sugar", + "egg whites", + "Nutella", + "food colouring", + "confectioners sugar" + ] + }, + { + "id": 38020, + "cuisine": "french", + "ingredients": [ + "water", + "fresh thyme", + "dry white wine", + "dry sherry", + "salt", + "herbes de provence", + "ground black pepper", + "french bread", + "chopped fresh thyme", + "paprika", + "beef rib short", + "fresh parsley", + "garlic powder", + "flour", + "basil olive oil", + "sea salt", + "grated Gruyère cheese", + "celery", + "parsnips", + "hot pepper sauce", + "bay leaves", + "butter", + "garlic", + "carrots", + "onions" + ] + }, + { + "id": 34344, + "cuisine": "thai", + "ingredients": [ + "sugar", + "rice vinegar", + "shallots", + "chopped cilantro fresh", + "red chili peppers", + "cucumber", + "salt", + "sliced green onions" + ] + }, + { + "id": 45715, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "flour tortillas", + "salsa", + "black pepper", + "lime", + "purple onion", + "black beans", + "corn kernels", + "cilantro leaves", + "romaine lettuce", + "shredded cheddar cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 3825, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "whole peeled tomatoes", + "yellow onion", + "garlic cloves", + "tumeric", + "fresh ginger", + "vegetable oil", + "ground coriander", + "naan", + "water", + "steamed white rice", + "chickpeas", + "serrano chile", + "plain yogurt", + "garam masala", + "pomegranate molasses", + "cumin seed" + ] + }, + { + "id": 26843, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "pork spareribs", + "sesame seeds", + "crushed red pepper", + "honey", + "asian barbecue sauce", + "soy sauce", + "sherry", + "sliced green onions" + ] + }, + { + "id": 10307, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "ghee", + "kosher salt", + "avocado oil", + "cauliflower", + "lemon", + "curry powder", + "cilantro leaves" + ] + }, + { + "id": 15663, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "greek style plain yogurt", + "green pepper", + "onions", + "red kidney beans", + "olive oil", + "garlic", + "hot sauce", + "pinto beans", + "sliced green onions", + "avocado", + "shredded cheddar cheese", + "diced tomatoes", + "salsa", + "frozen corn kernels", + "dried oregano", + "corn tortilla chips", + "jalapeno chilies", + "shredded pepper jack cheese", + "cayenne pepper", + "smoked paprika", + "ground cumin" + ] + }, + { + "id": 15837, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "garam masala", + "garlic", + "naan", + "black pepper", + "diced tomatoes", + "shredded mozzarella cheese", + "tomato sauce", + "mango chutney", + "purple onion", + "chicken", + "fresh ginger", + "paprika", + "greek yogurt" + ] + }, + { + "id": 49562, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "cinnamon", + "nutmeg", + "green onions", + "salt", + "pickapeppa sauce", + "lime", + "garlic", + "brown sugar", + "fresh thyme leaves", + "berries" + ] + }, + { + "id": 9379, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "garlic cloves", + "boneless skinless chicken breast halves", + "tumeric", + "peanut oil", + "Thai fish sauce", + "chicken stock", + "yardlong beans", + "oyster sauce", + "sugar", + "ground coriander", + "onions" + ] + }, + { + "id": 29339, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "poblano chiles", + "canola oil", + "ground black pepper", + "cumin seed", + "chopped cilantro", + "kosher salt", + "garlic", + "corn tortillas", + "chicken", + "asadero", + "sour cream", + "serrano chile" + ] + }, + { + "id": 42989, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "rice wine", + "cucumber", + "lettuce leaves", + "chinese five-spice powder", + "breast of lamb", + "ginger", + "light brown sugar", + "spring onions", + "garlic cloves" + ] + }, + { + "id": 28645, + "cuisine": "french", + "ingredients": [ + "granulated sugar", + "ground cinnamon", + "salt", + "unsalted butter", + "all-purpose flour", + "light brown sugar", + "large eggs" + ] + }, + { + "id": 40049, + "cuisine": "indian", + "ingredients": [ + "baby spinach leaves", + "yoghurt", + "fenugreek seeds", + "tumeric", + "olive oil", + "paneer", + "red chili peppers", + "coriander seeds", + "salt", + "fennel seeds", + "black pepper", + "seeds", + "asafetida" + ] + }, + { + "id": 33411, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "chili powder", + "green pepper", + "olive oil", + "paprika", + "onions", + "water", + "large garlic cloves", + "sour cream", + "cooked rice", + "kidney beans", + "hot sauce" + ] + }, + { + "id": 43406, + "cuisine": "french", + "ingredients": [ + "pure vanilla extract", + "large eggs", + "baguette", + "cinnamon", + "sugar", + "whole milk", + "instant espresso powder", + "hot water" + ] + }, + { + "id": 40389, + "cuisine": "british", + "ingredients": [ + "ham steak", + "milk", + "all-purpose flour", + "onions", + "marmite", + "kosher salt", + "bay leaves", + "carrots", + "pork", + "ground black pepper", + "ground allspice", + "peppercorns", + "eggs", + "water", + "ground pork", + "lard" + ] + }, + { + "id": 40927, + "cuisine": "brazilian", + "ingredients": [ + "bacon", + "onions", + "water", + "garlic cloves", + "bay leaves", + "pinto beans", + "salt" + ] + }, + { + "id": 16727, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "onion flakes", + "sausage casings", + "grated parmesan cheese", + "shredded mozzarella cheese", + "green bell pepper", + "french bread", + "garlic cloves", + "tomato paste", + "pepper", + "fresh mushrooms" + ] + }, + { + "id": 29357, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "corn tortillas", + "chili", + "purple onion", + "mango", + "hominy", + "feta cheese crumbles", + "monterey jack", + "pineapple", + "chopped cilantro fresh" + ] + }, + { + "id": 35192, + "cuisine": "southern_us", + "ingredients": [ + "graham cracker crusts", + "lime zest", + "whipped topping", + "cream cheese", + "milk", + "key lime juice" + ] + }, + { + "id": 29567, + "cuisine": "mexican", + "ingredients": [ + "cooking oil", + "garlic", + "sour cream", + "tomatillos", + "yellow onion", + "chicken thighs", + "chile pepper", + "salt", + "corn tortillas", + "cotija", + "cilantro", + "peanut oil" + ] + }, + { + "id": 20155, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "heavy whipping cream", + "unsalted butter", + "ground black pepper", + "tagliatelle", + "orange", + "grated parmesan cheese" + ] + }, + { + "id": 5395, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "dried thyme", + "green onions", + "ground allspice", + "fresh lime juice", + "ground ginger", + "pepper", + "ground black pepper", + "malt vinegar", + "dark brown sugar", + "ketchup", + "ground nutmeg", + "vegetable oil", + "roasting chickens", + "ground cinnamon", + "water", + "dark rum", + "salt", + "garlic cloves" + ] + }, + { + "id": 46810, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "sesame oil", + "frozen peas", + "shredded carrots", + "vegetable oil", + "garlic salt", + "soy sauce", + "green onions", + "hot sauce", + "quick cooking brown rice", + "boneless skinless chicken breasts", + "dark sesame oil" + ] + }, + { + "id": 42152, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "all-purpose flour", + "bread crumb fresh", + "butter", + "garlic cloves", + "capers", + "large eggs", + "anchovy fillets", + "water", + "Italian parsley leaves", + "fresh lemon juice" + ] + }, + { + "id": 15610, + "cuisine": "british", + "ingredients": [ + "eggs", + "potatoes", + "shortcrust pastry", + "medium curry powder", + "butter", + "fresh parsley", + "cheddar cheese", + "leeks", + "oil", + "milk", + "garlic" + ] + }, + { + "id": 39152, + "cuisine": "mexican", + "ingredients": [ + "chile verde", + "Mexican oregano", + "oil", + "chicken breasts", + "chees fresco queso", + "onions", + "jalapeno chilies", + "tomatillos", + "enchilada sauce", + "green chile", + "teas", + "garlic" + ] + }, + { + "id": 2422, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "boneless skinless chicken breasts", + "dried oregano", + "kosher salt", + "grated parmesan cheese", + "shredded mozzarella cheese", + "black pepper", + "whole peeled tomatoes", + "crushed red pepper flakes", + "pasta", + "water", + "low sodium chicken broth", + "garlic cloves" + ] + }, + { + "id": 11229, + "cuisine": "korean", + "ingredients": [ + "mini cucumbers", + "sesame seeds", + "top sirloin", + "seaweed", + "sushi rice", + "baby spinach", + "garlic", + "carrots", + "soy sauce", + "sesame oil", + "extra large eggs", + "scallions", + "avocado", + "olive oil", + "red wine", + "rice vinegar", + "kiwi" + ] + }, + { + "id": 43516, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vanilla extract", + "all-purpose flour", + "bananas", + "salt", + "large egg yolks", + "1% low-fat milk", + "fat free frozen top whip", + "butter", + "vanilla wafers" + ] + }, + { + "id": 24502, + "cuisine": "filipino", + "ingredients": [ + "green onions", + "garlic", + "onions", + "chicken broth", + "vegetable oil", + "shrimp", + "ground ginger", + "rice noodles", + "oyster sauce", + "pork", + "crushed red pepper flakes", + "bok choy" + ] + }, + { + "id": 29619, + "cuisine": "mexican", + "ingredients": [ + "pizza sauce", + "sliced black olives", + "mozzarella cheese", + "pepperoni", + "tortillas" + ] + }, + { + "id": 33956, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "cooking oil", + "paprika", + "cinnamon sticks", + "crushed tomatoes", + "boneless skinless chicken breasts", + "salt", + "ground cumin", + "water", + "jalapeno chilies", + "garlic", + "onions", + "frozen chopped spinach", + "fresh ginger", + "heavy cream", + "ground coriander" + ] + }, + { + "id": 31779, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "1% low-fat milk", + "corn mix muffin" + ] + }, + { + "id": 9065, + "cuisine": "italian", + "ingredients": [ + "sherry vinegar", + "extra-virgin olive oil", + "chives", + "garlic cloves", + "cayenne", + "beets", + "almonds", + "shallots" + ] + }, + { + "id": 81, + "cuisine": "italian", + "ingredients": [ + "fresh marjoram", + "grated parmesan cheese", + "large garlic cloves", + "finely chopped onion", + "crimini mushrooms", + "low salt chicken broth", + "dried porcini mushrooms", + "dry white wine", + "extra-virgin olive oil", + "arborio rice", + "fresh thyme", + "butter" + ] + }, + { + "id": 3802, + "cuisine": "italian", + "ingredients": [ + "lime zest", + "butter", + "sugar", + "heavy whipping cream", + "unflavored gelatin", + "strawberries", + "mascarpone", + "fresh lime juice" + ] + }, + { + "id": 7186, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "hot pepper sauce", + "butter", + "all-purpose flour", + "shortening", + "baking soda", + "baking powder", + "worcestershire sauce", + "white sugar", + "active dry yeast", + "finely chopped onion", + "buttermilk", + "poultry seasoning", + "warm water", + "ground nutmeg", + "breakfast sausages", + "salt" + ] + }, + { + "id": 20501, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "sesame oil", + "light soy sauce", + "pork tenderloin", + "chinese five-spice powder", + "black bean sauce", + "sherry", + "brown sugar", + "hoisin sauce", + "garlic" + ] + }, + { + "id": 34680, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "granulated sugar", + "salt", + "bittersweet chocolate chips", + "egg whites", + "unsweetened cocoa powder", + "powdered sugar", + "hazelnut meal", + "semi-sweet chocolate morsels", + "instant espresso powder", + "heavy cream" + ] + }, + { + "id": 43651, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "buttermilk", + "baking mix", + "warm water", + "pork tenderloin", + "salt", + "prepar pesto", + "butter", + "all-purpose flour", + "sugar", + "dijon mustard", + "rapid rise yeast", + "chopped pecans" + ] + }, + { + "id": 5504, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "pickled vegetables", + "dinner rolls", + "cheese slices", + "pimentos", + "genoa salami", + "thin deli ham" + ] + }, + { + "id": 21231, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "breakfast sausages", + "shredded parmesan cheese", + "tomato paste", + "olive oil", + "garlic", + "ground beef", + "tomatoes", + "low-fat cottage cheese", + "beaten eggs", + "dried parsley", + "mozzarella cheese", + "lasagna noodles", + "salt" + ] + }, + { + "id": 30389, + "cuisine": "french", + "ingredients": [ + "milk", + "salt", + "cream cheese, soften", + "cream", + "pistachios", + "frozen corn", + "eggs", + "ground nutmeg", + "all-purpose flour", + "pepper", + "butter", + "asparagus spears" + ] + }, + { + "id": 34650, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "large eggs", + "garlic cloves", + "wide rice noodles", + "lime juice", + "shallots", + "ground chicken", + "jalapeno chilies", + "oyster sauce", + "green bell pepper", + "thai basil", + "vegetable oil" + ] + }, + { + "id": 14000, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "carrots", + "nutmeg", + "unsalted butter", + "ground black pepper", + "sugar", + "salt" + ] + }, + { + "id": 26767, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "light pancake syrup", + "frozen raspberries", + "lemon juice", + "brown sugar", + "margarine", + "peaches", + "flavoring" + ] + }, + { + "id": 48615, + "cuisine": "french", + "ingredients": [ + "vegetable oil", + "fine sea salt", + "yukon gold potatoes" + ] + }, + { + "id": 37866, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "salt", + "shuck corn", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 30113, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chopped fresh thyme", + "crimini mushrooms", + "garlic", + "diced red onions", + "farro", + "water", + "balsamic vinegar", + "salt" + ] + }, + { + "id": 12102, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "tomatillos", + "mexican chorizo", + "cumin", + "white onion", + "cilantro", + "sour cream", + "water", + "garlic", + "plum tomatoes", + "chicken bouillon", + "bacon", + "lentils" + ] + }, + { + "id": 37568, + "cuisine": "russian", + "ingredients": [ + "butter", + "sliced green onions", + "egg noodles", + "poppy seeds" + ] + }, + { + "id": 7095, + "cuisine": "jamaican", + "ingredients": [ + "spinach", + "vegetables", + "coco", + "scallions", + "onions", + "fresh spinach", + "beef", + "salt", + "yams", + "kale", + "ice water", + "freshly ground pepper", + "pork tail", + "water", + "callaloo", + "okra", + "thyme" + ] + }, + { + "id": 4047, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "ground turmeric", + "ginger", + "carrots", + "moong dal", + "urad dal", + "mustard seeds", + "chili powder", + "oil" + ] + }, + { + "id": 32823, + "cuisine": "chinese", + "ingredients": [ + "savoy cabbage", + "dumpling wrappers", + "ginger", + "soy sauce", + "sesame oil", + "shrimp", + "fish sauce", + "hot chili", + "scallions", + "minced garlic", + "red pepper" + ] + }, + { + "id": 40499, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "brown lentils", + "chicken stock", + "extra-virgin olive oil", + "celery", + "bay leaves", + "carrots", + "fresh spinach", + "salt", + "onions" + ] + }, + { + "id": 29837, + "cuisine": "cajun_creole", + "ingredients": [ + "sauce", + "cocktail sauce", + "shrimp", + "water", + "creole seasoning", + "lemon" + ] + }, + { + "id": 12398, + "cuisine": "chinese", + "ingredients": [ + "honey", + "dry sherry", + "hoisin sauce", + "garlic cloves", + "Sriracha", + "rice vinegar", + "ketchup", + "peeled fresh ginger", + "five-spice powder" + ] + }, + { + "id": 47103, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "sesame oil", + "carrots", + "eggs", + "ramen noodles", + "red bell pepper", + "green onions", + "green peas" + ] + }, + { + "id": 48297, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "whole milk", + "chopped fresh thyme", + "salt", + "low salt chicken broth", + "sugar", + "Turkish bay leaves", + "large garlic cloves", + "chopped onion", + "turnips", + "hot pepper sauce", + "baking powder", + "extra-virgin olive oil", + "ground allspice", + "andouille sausage", + "green onions", + "butter", + "all-purpose flour", + "diced tomatoes in juice" + ] + }, + { + "id": 49195, + "cuisine": "filipino", + "ingredients": [ + "water", + "oil", + "bay leaves", + "peppercorns", + "garlic", + "pork belly", + "salt" + ] + }, + { + "id": 30656, + "cuisine": "italian", + "ingredients": [ + "penne", + "ground pepper", + "salt", + "sweet onion", + "herbs", + "sage", + "minced garlic", + "zucchini", + "Italian turkey sausage", + "pasta", + "olive oil", + "grated parmesan cheese" + ] + }, + { + "id": 4096, + "cuisine": "southern_us", + "ingredients": [ + "dark brown sugar", + "bacon slices" + ] + }, + { + "id": 30205, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "Shaoxing wine", + "dark brown sugar", + "egg noodles", + "sesame oil", + "carrots", + "soy sauce", + "green onions", + "garlic cloves", + "Sriracha", + "vegetable oil", + "beansprouts" + ] + }, + { + "id": 41976, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "calamansi juice", + "whole chicken", + "annatto", + "lemon grass", + "garlic", + "garlic cloves", + "pepper", + "ginger", + "palm vinegar", + "vegetable oil", + "salt", + "bay leaf" + ] + }, + { + "id": 5884, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "salt", + "vegetable oil", + "cornmeal", + "lemon", + "fresh parsley", + "ground black pepper", + "catfish" + ] + }, + { + "id": 4930, + "cuisine": "indian", + "ingredients": [ + "grated coconut", + "beets", + "curry leaves", + "thai chile", + "kosher salt", + "ground turmeric", + "coconut oil", + "purple onion" + ] + }, + { + "id": 2337, + "cuisine": "vietnamese", + "ingredients": [ + "london broil", + "black pepper", + "red wine", + "fish sauce" + ] + }, + { + "id": 17638, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "pepper", + "black-eyed peas", + "tomatoes", + "water", + "salt", + "chicken broth", + "minced garlic", + "jalapeno chilies", + "chicken bouillon granules", + "green bell pepper", + "olive oil", + "onions" + ] + }, + { + "id": 22616, + "cuisine": "cajun_creole", + "ingredients": [ + "cayenne", + "onion powder", + "yellow onion", + "plum tomatoes", + "cooked rice", + "jalapeno chilies", + "paprika", + "celery", + "bell pepper", + "cajun seasoning", + "scallions", + "garlic powder", + "chili powder", + "garlic", + "medium shrimp" + ] + }, + { + "id": 44396, + "cuisine": "mexican", + "ingredients": [ + "water", + "mexican style 4 cheese blend", + "cream cheese", + "black beans", + "olive oil", + "cilantro", + "corn", + "chicken tenderloin", + "couscous", + "minced garlic", + "diced red onions", + "salsa" + ] + }, + { + "id": 36803, + "cuisine": "indian", + "ingredients": [ + "water", + "unsalted butter", + "paprika", + "ground cardamom", + "basmati rice", + "white onion", + "ground black pepper", + "boneless skinless chicken breasts", + "peanut oil", + "fresh lime juice", + "ground cumin", + "kosher salt", + "cayenne", + "heavy cream", + "ground coriander", + "chopped cilantro fresh", + "tomato purée", + "ground nutmeg", + "peeled fresh ginger", + "garlic", + "greek yogurt", + "naan" + ] + }, + { + "id": 28680, + "cuisine": "southern_us", + "ingredients": [ + "large egg whites", + "chopped onion", + "corn bread", + "pepper", + "chopped celery", + "rubbed sage", + "cooking spray", + "poultry seasoning", + "refrigerated buttermilk biscuits", + "margarine", + "low salt chicken broth" + ] + }, + { + "id": 47110, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "jaggery", + "ghee" + ] + }, + { + "id": 38747, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "vanilla extract", + "heavy whipping cream", + "sliced almonds", + "semisweet chocolate", + "all-purpose flour", + "sugar", + "unsalted butter", + "salt", + "unsweetened cocoa powder", + "ground blanched almonds", + "light corn syrup", + "apricot jam" + ] + }, + { + "id": 44587, + "cuisine": "moroccan", + "ingredients": [ + "beef", + "chickpeas", + "fresh parsley", + "tomatoes", + "beef broth", + "carrots", + "saffron", + "ground cinnamon", + "fresh oregano", + "celery", + "barley", + "butter", + "fresh lemon juice", + "onions" + ] + }, + { + "id": 14607, + "cuisine": "mexican", + "ingredients": [ + "corn", + "purple onion", + "ground cumin", + "pepper", + "cayenne", + "red bell pepper", + "avocado", + "olive oil", + "salt", + "lime juice", + "red wine vinegar", + "chopped cilantro" + ] + }, + { + "id": 39732, + "cuisine": "chinese", + "ingredients": [ + "msg", + "green onions", + "corn starch", + "eggs", + "water", + "vegetable oil", + "white sugar", + "chicken broth", + "minced garlic", + "chile pepper", + "ground white pepper", + "soy sauce", + "fresh ginger root", + "white wine vinegar", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 11608, + "cuisine": "moroccan", + "ingredients": [ + "tomato sauce", + "olive oil", + "diced tomatoes", + "chickpeas", + "ground cumin", + "curry powder", + "potatoes", + "salt", + "onions", + "kale", + "golden raisins", + "cayenne pepper", + "chopped cilantro fresh", + "water", + "garam masala", + "garlic", + "ground coriander" + ] + }, + { + "id": 4044, + "cuisine": "japanese", + "ingredients": [ + "beans", + "extra-virgin olive oil", + "brown rice", + "spring onions", + "garlic cloves", + "soy sauce", + "ginger" + ] + }, + { + "id": 17449, + "cuisine": "chinese", + "ingredients": [ + "Shaoxing wine", + "center cut pork chops", + "white pepper", + "chinese five-spice powder", + "soy sauce", + "sesame oil", + "olive oil", + "corn starch" + ] + }, + { + "id": 24344, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "mango", + "sweet onion", + "bacon", + "whole wheat tortillas", + "chicken", + "pepper jack", + "smoked cheddar cheese" + ] + }, + { + "id": 23559, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "cooking oil", + "butter", + "cinnamon sticks", + "water", + "unsalted cashews", + "salt", + "chopped cilantro", + "yellow mustard seeds", + "bay leaves", + "garlic", + "shark steak", + "clove", + "ground black pepper", + "lemon wedge", + "lemon juice", + "basmati rice" + ] + }, + { + "id": 8741, + "cuisine": "irish", + "ingredients": [ + "large egg yolks", + "heavy cream", + "semisweet chocolate", + "confectioners sugar", + "Baileys Irish Cream Liqueur", + "cocoa powder", + "butter" + ] + }, + { + "id": 9399, + "cuisine": "italian", + "ingredients": [ + "capers", + "anchovy paste", + "flat leaf parsley", + "shallots", + "artichokes", + "olive oil", + "extra-virgin olive oil", + "lemon", + "fresh lemon juice" + ] + }, + { + "id": 3594, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "salt", + "pork shoulder", + "Shaoxing wine", + "corn starch", + "sugar", + "vegetable oil", + "ground white pepper", + "light soy sauce", + "dried shiitake mushrooms", + "bamboo shoots" + ] + }, + { + "id": 23858, + "cuisine": "spanish", + "ingredients": [ + "large egg yolks", + "baking powder", + "confectioners sugar", + "sugar", + "unsalted butter", + "salt", + "almonds", + "all purpose unbleached flour", + "cream", + "large eggs", + "grated lemon zest" + ] + }, + { + "id": 27102, + "cuisine": "greek", + "ingredients": [ + "lamb shanks", + "mint sprigs", + "garlic cloves", + "marsala wine", + "golden raisins", + "chopped onion", + "raita", + "black pepper", + "salt", + "cinnamon sticks", + "tomato sauce", + "cooking spray", + "beef broth", + "dried rosemary" + ] + }, + { + "id": 29217, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "taco seasoning", + "shredded cheddar cheese", + "fusilli", + "chicken", + "crushed tomatoes", + "cilantro leaves", + "chicken stock", + "corn", + "salsa" + ] + }, + { + "id": 13625, + "cuisine": "indian", + "ingredients": [ + "toasted cashews", + "beaten eggs", + "melted butter", + "milk", + "yeast", + "luke warm water", + "coconut", + "salt", + "sugar", + "golden raisins", + "bread flour" + ] + }, + { + "id": 14572, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "hot sauce", + "grating cheese", + "canola oil", + "beans", + "corn tortillas", + "salsa" + ] + }, + { + "id": 2507, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "garlic", + "corn starch", + "cooked chicken breasts", + "crushed tomatoes", + "vegetable oil", + "chopped onion", + "corn tortillas", + "canned chicken broth", + "chili powder", + "salt", + "sour cream", + "shredded Monterey Jack cheese", + "jalapeno chilies", + "whipping cream", + "freshly ground pepper", + "oregano" + ] + }, + { + "id": 27637, + "cuisine": "french", + "ingredients": [ + "fontina", + "Jarlsberg", + "sourdough bread", + "small red potato", + "white wine", + "garlic", + "dijon mustard", + "lemon juice" + ] + }, + { + "id": 19913, + "cuisine": "brazilian", + "ingredients": [ + "white vinegar", + "yellow onion", + "olive oil", + "flat leaf parsley", + "salt", + "fresh tomatoes", + "cayenne pepper" + ] + }, + { + "id": 31469, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "purple onion", + "black beans", + "chees fresco queso", + "chopped cilantro fresh", + "avocado", + "chili powder", + "chipotle salsa", + "flour tortillas", + "frozen corn kernels" + ] + }, + { + "id": 35153, + "cuisine": "chinese", + "ingredients": [ + "honey", + "soy sauce", + "green onions", + "ground ginger", + "minced onion", + "chicken breast tenders", + "garlic" + ] + }, + { + "id": 34378, + "cuisine": "italian", + "ingredients": [ + "shredded mild cheddar cheese", + "condensed cream of mushroom soup", + "dried oregano", + "green bell pepper", + "mushrooms", + "onions", + "grated parmesan cheese", + "diced tomatoes", + "water", + "lean ground beef", + "spaghetti" + ] + }, + { + "id": 46711, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "green chilies", + "boiling potatoes", + "red capsicum", + "mustard seeds", + "mint leaves", + "oil", + "salt", + "onions" + ] + }, + { + "id": 46954, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh chives", + "bay leaves", + "diced tomatoes", + "carrots", + "dried parsley", + "fresh spinach", + "ground pepper", + "red pepper flakes", + "poultry seasoning", + "celery", + "chicken", + "chicken broth", + "olive oil", + "green onions", + "salt", + "thyme", + "dried oregano", + "whole allspice", + "zucchini", + "red pepper", + "long-grain rice", + "chicken thighs" + ] + }, + { + "id": 38352, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "shiitake mushroom caps", + "stock", + "ground black pepper", + "pearl barley", + "water", + "finely chopped onion", + "chopped fresh sage", + "fresh parmesan cheese", + "sea salt" + ] + }, + { + "id": 4901, + "cuisine": "italian", + "ingredients": [ + "raspberries", + "blueberries", + "biscuits", + "vanilla extract", + "raspberry liqueur", + "mascarpone", + "frozen mixed berries", + "sugar", + "strawberries" + ] + }, + { + "id": 44693, + "cuisine": "british", + "ingredients": [ + "cayenne", + "paprika", + "shredded extra sharp cheddar cheese", + "beer", + "flour", + "unsalted butter", + "dry mustard" + ] + }, + { + "id": 1824, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "shiitake", + "vegetable oil", + "kosher salt", + "shredded carrots", + "toasted sesame oil", + "bean threads", + "pepper", + "chinese red rice vinegar", + "cabbage", + "ketchup", + "egg roll wrappers", + "pink peppercorns" + ] + }, + { + "id": 12869, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "collard greens", + "serrano peppers", + "chopped onion", + "sugar", + "sesame oil", + "garlic cloves", + "fresh ginger", + "rice vinegar" + ] + }, + { + "id": 26305, + "cuisine": "british", + "ingredients": [ + "cookies", + "strawberries", + "heavy cream", + "granulated sugar", + "confectioners sugar" + ] + }, + { + "id": 40881, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "shallots", + "salt", + "galangal", + "serrano chilies", + "lemon grass", + "cilantro", + "coconut milk", + "ground cumin", + "kaffir lime leaves", + "boneless chicken skinless thigh", + "vegetable oil", + "ground coriander", + "belacan", + "black peppercorns", + "pea eggplants", + "garlic", + "bird chile" + ] + }, + { + "id": 14139, + "cuisine": "indian", + "ingredients": [ + "dinner rolls", + "salt", + "garam masala", + "chopped cilantro", + "lime juice", + "oil", + "idaho potatoes" + ] + }, + { + "id": 12199, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "spring onions", + "noodles", + "sugar", + "sesame oil", + "ground turmeric", + "soy sauce", + "chilli paste", + "cooked chicken breasts", + "lettuce", + "fresh ginger root", + "celery" + ] + }, + { + "id": 16277, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "lemon juice", + "milk", + "salt", + "orange peel", + "water", + "butter", + "corn starch", + "brown sugar", + "peaches", + "all-purpose flour" + ] + }, + { + "id": 33521, + "cuisine": "southern_us", + "ingredients": [ + "bread crumb fresh", + "chopped fresh thyme", + "eggs", + "shallots", + "salt", + "corn kernels", + "heavy cream", + "cheddar cheese", + "Tabasco Pepper Sauce", + "freshly ground pepper" + ] + }, + { + "id": 16196, + "cuisine": "british", + "ingredients": [ + "dried currants", + "vegetable shortening", + "grated orange peel", + "unsalted butter", + "salt", + "baking soda", + "buttermilk", + "sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 27793, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "self rising flour", + "shortening", + "buttermilk" + ] + }, + { + "id": 35091, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "milk", + "sponge cake", + "all-purpose flour", + "sugar", + "semisweet chocolate", + "whipping cream", + "grated orange peel", + "large egg yolks", + "chocolate shavings", + "candied fruit", + "water", + "dark rum", + "vanilla extract" + ] + }, + { + "id": 38719, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "egg whites", + "garlic cloves", + "ground cumin", + "reduced fat cheddar cheese", + "low-sodium fat-free chicken broth", + "onions", + "vegetable oil cooking spray", + "serrano peppers", + "corn tortillas", + "large eggs", + "salt", + "plum tomatoes" + ] + }, + { + "id": 24978, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "ham steak", + "peas", + "field peas", + "red potato", + "olive oil", + "hot sauce", + "smoked ham hocks", + "collard greens", + "vermouth", + "garlic cloves", + "chicken broth", + "water", + "salt", + "onions" + ] + }, + { + "id": 10205, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "lime wedges", + "cilantro leaves", + "ground pepper", + "coarse salt", + "garlic cloves", + "cotija", + "vegetable oil", + "scallions", + "avocado", + "chili powder", + "diced tomatoes", + "corn tortillas" + ] + }, + { + "id": 25611, + "cuisine": "italian", + "ingredients": [ + "eggs", + "minced garlic", + "veggies", + "tomato sauce", + "lasagna noodles", + "fresh spinach", + "olive oil", + "chopped onion", + "mozzarella cheese", + "low-fat ricotta cheese" + ] + }, + { + "id": 26949, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "squid", + "onions", + "water", + "garlic cloves", + "pepper", + "oil", + "tomatoes", + "vinegar", + "bay leaf" + ] + }, + { + "id": 47070, + "cuisine": "italian", + "ingredients": [ + "low-fat sour cream", + "almond flour", + "black pepper", + "boneless skinless chicken breasts", + "pesto", + "grated parmesan cheese", + "eggs", + "mozzarella cheese", + "sour cream" + ] + }, + { + "id": 34503, + "cuisine": "southern_us", + "ingredients": [ + "yellow cake mix", + "heavy cream", + "bananas", + "vanilla instant pudding", + "milk", + "vanilla", + "powdered sugar", + "Nilla Wafers" + ] + }, + { + "id": 18756, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "olive oil", + "purple onion", + "kosher salt", + "green onions", + "chicken", + "pasilla chiles", + "white hominy", + "chopped cilantro fresh", + "chicken broth", + "lime", + "dry white wine" + ] + }, + { + "id": 42773, + "cuisine": "japanese", + "ingredients": [ + "japanese cucumber", + "soy sauce", + "salt", + "sugar", + "sesame oil", + "sesame seeds", + "rice vinegar" + ] + }, + { + "id": 34701, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "lamb shanks", + "garlic", + "ham steak", + "bay leaves", + "onions", + "tomatoes", + "fresh thyme", + "fresh parsley", + "sausage links", + "cannellini beans" + ] + }, + { + "id": 48937, + "cuisine": "cajun_creole", + "ingredients": [ + "crushed tomatoes", + "chopped celery", + "long-grain rice", + "chicken broth", + "hot pepper sauce", + "green pepper", + "onions", + "olive oil", + "salt", + "thyme", + "ground chicken", + "cajun seasoning", + "okra", + "dried oregano" + ] + }, + { + "id": 34029, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "garlic", + "potato gnocchi", + "dried sage", + "salt", + "ground black pepper", + "butter" + ] + }, + { + "id": 39621, + "cuisine": "italian", + "ingredients": [ + "white wine", + "fresh thyme", + "fine sea salt", + "flat leaf parsley", + "clove", + "ground black pepper", + "ground veal", + "allspice berries", + "tomato paste", + "finely chopped onion", + "ground pork", + "carrots", + "pancetta", + "water", + "whole milk", + "chopped celery", + "tagliatelle" + ] + }, + { + "id": 27275, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "bell pepper", + "sweet onion", + "salt", + "tomatoes", + "fresh thyme", + "garlic cloves", + "spicy sausage", + "crushed red pepper flakes" + ] + }, + { + "id": 6950, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "salsa", + "chicken breasts", + "sour cream", + "black beans", + "tortilla chips", + "chicken broth", + "cilantro" + ] + }, + { + "id": 40457, + "cuisine": "french", + "ingredients": [ + "fresh chives", + "shallots", + "crabmeat", + "beef stock", + "russet potatoes", + "large shrimp", + "chicken stock", + "leeks", + "whipping cream", + "unsalted butter", + "vegetable oil", + "asparagus spears" + ] + }, + { + "id": 14319, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "celery", + "pepper", + "salt", + "daikon", + "sliced carrots", + "cabbage" + ] + }, + { + "id": 33390, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "all-purpose flour", + "milk", + "vanilla extract", + "orange juice", + "grated coconut", + "butter", + "icing", + "large eggs", + "salt" + ] + }, + { + "id": 43347, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "ground pork", + "onions", + "pepper jack", + "sharp cheddar cheese", + "ground cumin", + "chopped green chilies", + "salsa", + "chopped garlic", + "cilantro", + "ground beef" + ] + }, + { + "id": 39304, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "paprika", + "garlic cloves", + "basmati rice", + "tomatoes", + "ground red pepper", + "salt", + "greek yogurt", + "canola oil", + "peeled fresh ginger", + "purple onion", + "fresh lemon juice", + "ground turmeric", + "boneless chicken skinless thigh", + "large garlic cloves", + "ground coriander", + "chopped cilantro fresh", + "ground cumin" + ] + }, + { + "id": 18945, + "cuisine": "italian", + "ingredients": [ + "strawberries", + "marsala wine", + "large eggs", + "sugar" + ] + }, + { + "id": 13086, + "cuisine": "mexican", + "ingredients": [ + "pork belly", + "agave nectar", + "poblano chiles", + "kosher salt", + "vegetable oil", + "ground black pepper", + "pineapple", + "habanero chile", + "apple cider vinegar", + "serrano chile" + ] + }, + { + "id": 15799, + "cuisine": "italian", + "ingredients": [ + "roast", + "carrots", + "olive oil", + "crusty sandwich rolls", + "onions", + "salsa verde", + "salt", + "black peppercorns", + "chili oil", + "celery" + ] + }, + { + "id": 33964, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "salt", + "unsalted butter", + "pure vanilla extract", + "granulated sugar", + "pecan halves", + "all-purpose flour" + ] + }, + { + "id": 40743, + "cuisine": "greek", + "ingredients": [ + "sugar", + "ground nutmeg", + "purple onion", + "allspice", + "tomato paste", + "water", + "paprika", + "cinnamon sticks", + "pasta", + "ground cloves", + "red wine vinegar", + "cayenne pepper", + "ground cumin", + "tomatoes", + "olive oil", + "grated kefalotiri", + "chicken" + ] + }, + { + "id": 39500, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "chicken breasts", + "pepper", + "purple onion", + "mozzarella cheese", + "balsamic vinegar", + "tomatoes", + "olive oil", + "salt" + ] + }, + { + "id": 24684, + "cuisine": "french", + "ingredients": [ + "unflavored gelatin", + "grapefruit", + "cold water", + "navel oranges", + "sugar", + "muscat", + "tangerine", + "white grapefruit" + ] + }, + { + "id": 21411, + "cuisine": "chinese", + "ingredients": [ + "water", + "garlic", + "orange juice", + "green onions", + "sauce", + "corn starch", + "honey", + "rice vinegar", + "oil", + "soy sauce", + "ginger", + "skinless chicken breasts", + "orange zest" + ] + }, + { + "id": 49459, + "cuisine": "thai", + "ingredients": [ + "fresh spinach", + "sesame oil", + "rice", + "coconut milk", + "brown sugar", + "lime juice", + "paprika", + "Thai fish sauce", + "minced garlic", + "red pepper", + "chicken fingers", + "natural peanut butter", + "green onions", + "yellow onion", + "red bell pepper" + ] + }, + { + "id": 12402, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "onions", + "saffron threads", + "freshly grated parmesan", + "arborio rice", + "unsalted butter", + "water" + ] + }, + { + "id": 10866, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "ground nutmeg", + "lean ground beef", + "yellow onion", + "celery", + "kosher salt", + "whole milk", + "diced tomatoes", + "carrots", + "pancetta", + "olive oil", + "dry white wine", + "garlic", + "flat leaf parsley", + "black pepper", + "grated parmesan cheese", + "red pepper", + "fresh oregano" + ] + }, + { + "id": 36698, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "green onions", + "cumin", + "diced green chilies", + "rotisserie chicken", + "milk", + "sweet corn", + "bread mix", + "Mexican cheese blend", + "red enchilada sauce" + ] + }, + { + "id": 19840, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "water", + "green onions", + "salt", + "ketchup", + "boneless chicken breast", + "sesame oil", + "corn starch", + "soy sauce", + "fresh ginger root", + "baking powder", + "oyster sauce", + "white vinegar", + "black pepper", + "flour", + "vegetable oil", + "white sugar" + ] + }, + { + "id": 12752, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "grissini", + "salt", + "frozen peas", + "ground black pepper", + "basil", + "borlotti beans", + "celery ribs", + "leeks", + "extra-virgin olive oil", + "onions", + "water", + "farro", + "carrots" + ] + }, + { + "id": 23077, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "black sesame seeds", + "ginger", + "cucumber", + "coconut sugar", + "lime", + "cilantro", + "purple onion", + "bird chile", + "mint", + "bibb lettuce", + "ground pork", + "carrots", + "kaffir lime leaves", + "lemongrass", + "ponzu", + "garlic", + "coconut milk" + ] + }, + { + "id": 20907, + "cuisine": "french", + "ingredients": [ + "salmon fillets", + "chopped fresh chives", + "hot water", + "olive oil", + "salt", + "egg yolks", + "fresh lemon juice", + "pepper", + "butter" + ] + }, + { + "id": 24841, + "cuisine": "moroccan", + "ingredients": [ + "butter", + "carrots", + "white onion", + "cumin seed", + "plain yogurt", + "ground allspice", + "low salt chicken broth", + "honey", + "fresh lemon juice" + ] + }, + { + "id": 8056, + "cuisine": "vietnamese", + "ingredients": [ + "dry roasted peanuts", + "ground black pepper", + "cilantro leaves", + "chile paste with garlic", + "lemongrass", + "cooking spray", + "carrots", + "romaine lettuce", + "honey", + "basil leaves", + "fresh lime juice", + "low sodium soy sauce", + "water", + "mint leaves", + "garlic cloves" + ] + }, + { + "id": 47725, + "cuisine": "brazilian", + "ingredients": [ + "ice cubes", + "simple syrup", + "cachaca", + "lime" + ] + }, + { + "id": 9339, + "cuisine": "mexican", + "ingredients": [ + "fresh coriander", + "flour tortillas", + "sour cream", + "cheddar cheese", + "olive oil", + "paprika", + "chillies", + "water", + "red pepper", + "fillets", + "white onion", + "chopped tomatoes", + "chicken stock cubes" + ] + }, + { + "id": 42264, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "white kidney beans", + "purple onion", + "bay leaf", + "extra-virgin olive oil", + "fresh lemon juice", + "baby arugula", + "garlic cloves" + ] + }, + { + "id": 5510, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "ground allspice", + "white sandwich bread", + "light brown sugar", + "unsalted butter", + "onions", + "dried thyme", + "juice", + "ground cloves", + "garlic cloves" + ] + }, + { + "id": 39035, + "cuisine": "southern_us", + "ingredients": [ + "evaporated milk", + "sweetened condensed milk", + "half & half", + "peaches", + "sugar", + "vanilla instant pudding" + ] + }, + { + "id": 43918, + "cuisine": "filipino", + "ingredients": [ + "fried eggs", + "fried rice", + "beef", + "vinegar" + ] + }, + { + "id": 24942, + "cuisine": "mexican", + "ingredients": [ + "diced bell pepper", + "minced garlic", + "oil", + "diced onions", + "chili pepper", + "salt", + "eggs", + "cheese", + "cumin", + "pie crust", + "pepper", + "hamburger" + ] + }, + { + "id": 32706, + "cuisine": "british", + "ingredients": [ + "white vinegar", + "pepper", + "garlic powder", + "green onions", + "vegetable oil", + "paprika", + "beer", + "black pepper", + "olive oil", + "flour", + "onion powder", + "basil", + "cayenne pepper", + "red potato", + "minced garlic", + "dijon mustard", + "baking powder", + "lemon", + "salt", + "yellow peppers", + "scrod", + "dried thyme", + "large eggs", + "basil mayonnaise", + "red pepper", + "essence", + "oregano" + ] + }, + { + "id": 8468, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "salt", + "pepper", + "cilantro", + "red bell pepper", + "ground ginger", + "pineapple", + "lemon juice", + "olive oil", + "purple onion", + "ground cumin" + ] + }, + { + "id": 3933, + "cuisine": "japanese", + "ingredients": [ + "ground cardamom", + "sweetened condensed milk", + "ghee", + "carrots", + "saffron", + "milk", + "cashew nuts" + ] + }, + { + "id": 3468, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "fish sauce", + "garlic", + "bottom round", + "brown sugar", + "oil" + ] + }, + { + "id": 887, + "cuisine": "cajun_creole", + "ingredients": [ + "capers", + "old bay seasoning", + "fresh parsley", + "sweet pickle", + "paprika", + "mayonaise", + "worcestershire sauce", + "creole mustard", + "prepared horseradish", + "anchovy paste" + ] + }, + { + "id": 1122, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "lamb", + "fresh mint", + "salt", + "fresh parsley leaves", + "eggplant", + "garlic cloves", + "plum tomatoes", + "chopped onion", + "feta cheese crumbles" + ] + }, + { + "id": 13921, + "cuisine": "chinese", + "ingredients": [ + "bread crumbs", + "sesame seeds", + "eggs", + "broccolini", + "skinless chicken breasts", + "caster sugar", + "lemon", + "soy sauce", + "lime", + "chinese five-spice powder" + ] + }, + { + "id": 24944, + "cuisine": "indian", + "ingredients": [ + "rose water", + "french fried onions", + "salt", + "chicken pieces", + "red chili powder", + "garam masala", + "ginger", + "oil", + "basmati rice", + "tomatoes", + "milk", + "butter", + "curds", + "onions", + "tumeric", + "coriander powder", + "garlic", + "bay leaf", + "saffron" + ] + }, + { + "id": 25967, + "cuisine": "italian", + "ingredients": [ + "ditalini", + "rosemary sprigs", + "crushed red pepper", + "clams", + "extra-virgin olive oil", + "garbanzo beans", + "garlic cloves" + ] + }, + { + "id": 45069, + "cuisine": "spanish", + "ingredients": [ + "fennel bulb", + "extra-virgin olive oil", + "green olives", + "toasted almonds", + "lemon" + ] + }, + { + "id": 33408, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "soy sauce", + "garlic", + "sugar", + "chili oil", + "roasted sesame seeds", + "black vinegar" + ] + }, + { + "id": 11513, + "cuisine": "italian", + "ingredients": [ + "sea salt", + "french bread", + "grated orange", + "bittersweet chocolate", + "cooking spray" + ] + }, + { + "id": 4789, + "cuisine": "thai", + "ingredients": [ + "shredded coconut", + "chili powder", + "unsweetened coconut milk", + "chili paste", + "scallions", + "kosher salt", + "rice noodles", + "tomato paste", + "basil leaves", + "beansprouts" + ] + }, + { + "id": 46445, + "cuisine": "french", + "ingredients": [ + "white asparagus", + "bay leaves", + "dry sherry", + "flat leaf parsley", + "morel", + "fresh thyme leaves", + "crème fraîche", + "grated lemon peel", + "leeks", + "butter", + "low salt chicken broth", + "chicken legs", + "dry white wine", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 49133, + "cuisine": "italian", + "ingredients": [ + "eggs", + "shredded mozzarella cheese", + "pasta sauce", + "boneless skinless chicken breast halves", + "grated parmesan cheese", + "dry bread crumbs" + ] + }, + { + "id": 43108, + "cuisine": "indian", + "ingredients": [ + "water", + "vegetable oil", + "fresh lime juice", + "chiles", + "garam masala", + "heavy cream", + "tumeric", + "sea scallops", + "large garlic cloves", + "chopped cilantro fresh", + "aleppo pepper", + "peeled fresh ginger", + "acorn squash" + ] + }, + { + "id": 41258, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "parmesan cheese", + "extra-virgin olive oil", + "reduced fat ricotta cheese", + "tomato sauce", + "whole wheat lasagna noodles", + "salt", + "onions", + "fresh basil", + "ground black pepper", + "garlic", + "ground beef", + "italian sausage", + "part-skim mozzarella cheese", + "crimini mushrooms", + "stevia", + "oregano" + ] + }, + { + "id": 12067, + "cuisine": "french", + "ingredients": [ + "sugar", + "salt", + "butter", + "carrots", + "mashed potatoes", + "1% low-fat milk", + "ground black pepper", + "ground coriander" + ] + }, + { + "id": 17045, + "cuisine": "greek", + "ingredients": [ + "sugar", + "nonfat plain greek yogurt", + "kosher salt", + "black pepper", + "coleslaw", + "cider vinegar" + ] + }, + { + "id": 25764, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "carrots", + "spinach", + "sesame oil", + "glass noodles", + "eggs", + "sesame seeds", + "onions", + "sugar", + "garlic" + ] + }, + { + "id": 2791, + "cuisine": "japanese", + "ingredients": [ + "smoked salmon", + "water", + "nori sheets", + "wasabi", + "soy sauce", + "salt", + "sugar", + "ginger", + "cucumber", + "avocado", + "sushi rice", + "rice vinegar" + ] + }, + { + "id": 23345, + "cuisine": "italian", + "ingredients": [ + "warm water", + "candy sprinkles", + "white sugar", + "eggs", + "active dry yeast", + "all-purpose flour", + "milk", + "salt", + "water", + "butter" + ] + }, + { + "id": 6701, + "cuisine": "greek", + "ingredients": [ + "water", + "salt", + "long grain white rice", + "ground cinnamon", + "lemon", + "fresh mint", + "tomato paste", + "butter", + "liver", + "ground lamb", + "pepper", + "turkey", + "onions" + ] + }, + { + "id": 19349, + "cuisine": "mexican", + "ingredients": [ + "refrigerated crescent rolls", + "shredded cheese", + "salsa", + "taco seasoning mix", + "ground beef" + ] + }, + { + "id": 34681, + "cuisine": "southern_us", + "ingredients": [ + "dijon mustard", + "peach preserves", + "brown sugar", + "garlic", + "chipotle sauce", + "peach purée", + "ham", + "pepper", + "salt" + ] + }, + { + "id": 44009, + "cuisine": "italian", + "ingredients": [ + "fresh lime juice", + "orange marmalade", + "prosciutto", + "shrimp" + ] + }, + { + "id": 37471, + "cuisine": "brazilian", + "ingredients": [ + "minced onion", + "hot water", + "garlic", + "vegetable oil", + "long grain white rice", + "salt" + ] + }, + { + "id": 37234, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "fat free less sodium chicken broth", + "sea scallops", + "chili paste with garlic", + "chinese black vinegar", + "sugar", + "dry roasted peanuts", + "green onions", + "long-grain rice", + "sake", + "minced garlic", + "water chestnuts", + "dark sesame oil", + "sugar pea", + "fresh ginger", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 34832, + "cuisine": "mexican", + "ingredients": [ + "cilantro sprigs", + "fresh asparagus", + "pepper", + "salt", + "extra-virgin olive oil", + "chopped cilantro fresh", + "flour tortillas", + "herbed goat cheese" + ] + }, + { + "id": 49190, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "scallions", + "soy sauce", + "red pepper flakes", + "eggs", + "watercress", + "long-grain rice", + "cooking oil", + "sirloin steak" + ] + }, + { + "id": 48632, + "cuisine": "jamaican", + "ingredients": [ + "fresh green peas", + "tumeric", + "fresh thyme", + "ice water", + "diced yellow onion", + "ground white pepper", + "fresh corn", + "gold potatoes", + "unbleached flour", + "coarse sea salt", + "lemon juice", + "allspice", + "ground cinnamon", + "whole wheat pastry flour", + "shredded cabbage", + "red pepper flakes", + "garlic cloves", + "coconut milk", + "coconut oil", + "cayenne", + "apple cider vinegar", + "fine sea salt", + "carrots", + "ground cumin" + ] + }, + { + "id": 10564, + "cuisine": "italian", + "ingredients": [ + "russet potatoes", + "flour", + "salt" + ] + }, + { + "id": 30785, + "cuisine": "french", + "ingredients": [ + "milk", + "button mushrooms", + "crabmeat", + "white pepper", + "unsalted butter", + "garlic", + "red bell pepper", + "curry powder", + "grated parmesan cheese", + "all-purpose flour", + "fresh chives", + "large eggs", + "fine sea salt", + "fresh parsley" + ] + }, + { + "id": 19871, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "chipotles in adobo", + "ground pepper", + "garlic cloves", + "monterey jack", + "reduced sodium chicken broth", + "all-purpose flour", + "boneless skinless chicken breast halves", + "vegetable oil", + "corn tortillas", + "ground cumin" + ] + }, + { + "id": 3904, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "flat leaf parsley", + "eggs", + "baking potatoes", + "onions", + "roasted red peppers", + "serrano ham", + "pepper", + "salt" + ] + }, + { + "id": 28515, + "cuisine": "brazilian", + "ingredients": [ + "simple syrup", + "liqueur", + "lime", + "ice", + "cachaca" + ] + }, + { + "id": 28653, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "beef brisket", + "sesame oil", + "peanut oil", + "white pepper", + "green onions", + "star anise", + "soy sauce", + "Shaoxing wine", + "ginger", + "garlic cloves", + "water", + "bean paste", + "hot bean paste" + ] + }, + { + "id": 19951, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "all-purpose flour", + "kosher salt", + "buttermilk", + "cornmeal", + "eggs", + "cajun seasoning", + "sauce", + "chips", + "cracked black pepper" + ] + }, + { + "id": 28889, + "cuisine": "french", + "ingredients": [ + "water", + "cider", + "calvados", + "sugar" + ] + }, + { + "id": 37749, + "cuisine": "mexican", + "ingredients": [ + "plain yogurt", + "lime", + "jalapeno chilies", + "purple onion", + "corn tortillas", + "cumin", + "eggs", + "water", + "ground black pepper", + "green onions", + "dried dillweed", + "cornmeal", + "canola oil", + "kosher salt", + "garlic powder", + "flour", + "cayenne pepper", + "fresh lime juice", + "cabbage", + "mayonaise", + "tomatoes on the vine", + "cod fillets", + "cilantro", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 6844, + "cuisine": "french", + "ingredients": [ + "shredded cheddar cheese", + "salt", + "butter", + "chopped onion", + "potatoes", + "all-purpose flour", + "pepper", + "2% reduced-fat milk" + ] + }, + { + "id": 2794, + "cuisine": "french", + "ingredients": [ + "sugar", + "lemon", + "eggs", + "all-purpose flour", + "unsalted butter" + ] + }, + { + "id": 44592, + "cuisine": "italian", + "ingredients": [ + "penne", + "extra-virgin olive oil", + "onions", + "ground nutmeg", + "Italian turkey sausage", + "baby spinach leaves", + "whipping cream", + "asiago", + "ground turkey" + ] + }, + { + "id": 27732, + "cuisine": "moroccan", + "ingredients": [ + "preserved lemon", + "olive oil", + "saffron", + "white onion", + "salt", + "green olives", + "pepper", + "cumin", + "tumeric", + "garlic powder", + "chicken" + ] + }, + { + "id": 7545, + "cuisine": "korean", + "ingredients": [ + "sesame oil", + "doenzang", + "garlic", + "bok choy", + "sesame seeds", + "soybean paste", + "green onions", + "Gochujang base" + ] + }, + { + "id": 38517, + "cuisine": "southern_us", + "ingredients": [ + "whole wheat pastry flour", + "butter", + "eggs", + "cream style corn", + "salt", + "milk", + "heavy cream", + "sugar", + "baking powder", + "cornmeal" + ] + }, + { + "id": 48149, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "crushed red pepper", + "nonstick spray", + "minced garlic", + "green pepper", + "fresh parsley", + "fresh basil", + "salt", + "celery", + "chicken breast halves", + "low sodium chili sauce", + "onions" + ] + }, + { + "id": 32646, + "cuisine": "chinese", + "ingredients": [ + "evaporated milk", + "mango", + "unflavored gelatin", + "salt", + "sugar", + "fresh lemon juice", + "heavy cream" + ] + }, + { + "id": 21738, + "cuisine": "southern_us", + "ingredients": [ + "smoked bacon", + "cajun seasoning", + "shrimp", + "green onions", + "ground allspice", + "clam juice", + "okra", + "cherry tomatoes", + "all-purpose flour" + ] + }, + { + "id": 31145, + "cuisine": "greek", + "ingredients": [ + "pepper", + "kalamata", + "feta cheese crumbles", + "red wine vinegar", + "fresh oregano", + "tomatoes", + "fresh green bean", + "garlic cloves", + "olive oil", + "salt" + ] + }, + { + "id": 8363, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "bread crumbs", + "sugar", + "flour", + "soy sauce", + "ginger", + "sake", + "pork chops" + ] + }, + { + "id": 49527, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "ground lamb", + "green bell pepper", + "diced tomatoes", + "fresh parsley", + "chicken broth", + "dried mint flakes", + "salt", + "water", + "white rice", + "onions" + ] + }, + { + "id": 17189, + "cuisine": "jamaican", + "ingredients": [ + "water", + "oil", + "salt", + "baking powder", + "flour" + ] + }, + { + "id": 49172, + "cuisine": "indian", + "ingredients": [ + "mint leaves", + "oil", + "salt", + "wheat flour" + ] + }, + { + "id": 3526, + "cuisine": "southern_us", + "ingredients": [ + "yolk", + "pie shell", + "milk", + "vanilla", + "sugar", + "butter", + "flour", + "salt" + ] + }, + { + "id": 2837, + "cuisine": "thai", + "ingredients": [ + "lemon", + "ginger root", + "fennel seeds", + "sugar cane juice", + "light rum", + "ice", + "thai basil", + "cane sugar" + ] + }, + { + "id": 28997, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "green onions", + "worcestershire sauce", + "cayenne pepper", + "olive oil", + "Tabasco Pepper Sauce", + "garlic", + "sourdough bread", + "dry white wine", + "paprika", + "shrimp", + "black pepper", + "dri leav rosemari", + "butter", + "salt" + ] + }, + { + "id": 30108, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "salt", + "fresh parsley", + "grated parmesan cheese", + "hot water", + "olive oil", + "freshly ground pepper", + "onions", + "orzo", + "low salt chicken broth" + ] + }, + { + "id": 38066, + "cuisine": "mexican", + "ingredients": [ + "chile con queso", + "lettuce", + "baked tortilla chips", + "refried beans", + "sliced green onions", + "non-fat sour cream" + ] + }, + { + "id": 13316, + "cuisine": "greek", + "ingredients": [ + "boneless chicken skinless thigh", + "mint leaves", + "feta cheese crumbles", + "ground pepper", + "red wine vinegar", + "plain low-fat yogurt", + "zucchini", + "purple onion", + "olive oil", + "coarse salt", + "dried oregano" + ] + }, + { + "id": 5122, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "purple onion", + "fresh corn", + "butter", + "herb seasoning", + "jalapeno chilies", + "salt", + "fresh cilantro", + "garlic", + "plum tomatoes" + ] + }, + { + "id": 33172, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "egg whites", + "butter", + "buttermilk biscuits", + "garlic powder", + "chives", + "ground mustard", + "black pepper", + "half & half", + "salt", + "spicy sausage", + "large eggs", + "onion powder" + ] + }, + { + "id": 33402, + "cuisine": "chinese", + "ingredients": [ + "water", + "sliced carrots", + "ginger", + "fish sauce", + "Shaoxing wine", + "dark leafy greens", + "shrimp", + "cooking oil", + "choy sum", + "salt", + "sugar", + "sesame oil", + "button mushrooms", + "corn starch" + ] + }, + { + "id": 44789, + "cuisine": "italian", + "ingredients": [ + "cheese", + "large garlic cloves", + "red bell pepper", + "olive oil", + "thin pizza crust", + "bacon slices", + "wild mushrooms" + ] + }, + { + "id": 43659, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "curry powder", + "salt", + "olive oil", + "hot sauce", + "pepper", + "white wine vinegar" + ] + }, + { + "id": 33551, + "cuisine": "southern_us", + "ingredients": [ + "polenta corn meal", + "baking soda", + "lemon", + "garlic", + "beer", + "mussels", + "kosher salt", + "parsley", + "bacon", + "all-purpose flour", + "bacon drippings", + "black pepper", + "spring onions", + "buttermilk", + "salt", + "eggs", + "honey", + "butter", + "paprika", + "zest" + ] + }, + { + "id": 25194, + "cuisine": "thai", + "ingredients": [ + "sugar", + "salt", + "sesame seeds", + "sushi rice", + "mango", + "unsweetened coconut milk", + "sweetened coconut flakes" + ] + }, + { + "id": 16204, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "grated parmesan cheese", + "salt", + "dried oregano", + "pepper", + "macaroni", + "garlic", + "onions", + "whole peeled tomatoes", + "butter", + "fresh parsley", + "olive oil", + "cannellini beans", + "carrots" + ] + }, + { + "id": 1998, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "potatoes", + "salt", + "oil", + "whole wheat flour", + "ginger", + "green chilies", + "red bell pepper", + "water", + "cilantro", + "all-purpose flour", + "carrots", + "garam masala", + "green peas", + "cumin seed", + "cabbage" + ] + }, + { + "id": 47349, + "cuisine": "french", + "ingredients": [ + "chicken legs", + "dry white wine", + "leeks", + "hot water", + "olive oil", + "chopped fresh thyme", + "mushrooms", + "low salt chicken broth" + ] + }, + { + "id": 25912, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "garlic", + "pepper", + "salt", + "water", + "oil", + "sirloin", + "lemon", + "onions" + ] + }, + { + "id": 49165, + "cuisine": "indian", + "ingredients": [ + "water", + "flour", + "green chilies", + "nuts", + "curry leaves", + "milk", + "salt", + "ground cardamom", + "sweetener", + "buttermilk", + "oil", + "cumin", + "sugar", + "millet", + "cilantro leaves", + "ghee" + ] + }, + { + "id": 18517, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "feta cheese crumbles", + "extra-virgin olive oil", + "large garlic cloves", + "chopped fresh mint", + "lamb shoulder" + ] + }, + { + "id": 42634, + "cuisine": "korean", + "ingredients": [ + "baby bok choy", + "long grain white rice", + "crushed red pepper flakes", + "stir fry sauce", + "flank steak" + ] + }, + { + "id": 2521, + "cuisine": "french", + "ingredients": [ + "saba", + "water", + "fresh raspberries", + "powdered sugar", + "whipping cream", + "large egg yolks" + ] + }, + { + "id": 17876, + "cuisine": "mexican", + "ingredients": [ + "large egg whites", + "salt", + "pepper", + "wheat", + "large eggs", + "chorizo", + "red wine vinegar" + ] + }, + { + "id": 163, + "cuisine": "moroccan", + "ingredients": [ + "pinenuts", + "fresh ginger", + "cinnamon", + "garlic", + "fresh parsley leaves", + "chopped parsley", + "mint", + "water", + "large eggs", + "cilantro", + "salt", + "smoked paprika", + "sumac", + "feta cheese", + "lemon", + "purple onion", + "ground cardamom", + "ground lamb", + "plain dry bread crumb", + "olive oil", + "tahini", + "cracked black pepper", + "cilantro leaves", + "fresh mint" + ] + }, + { + "id": 42638, + "cuisine": "mexican", + "ingredients": [ + "corn tortilla chips", + "kidney beans", + "shredded cheddar cheese", + "leaf lettuce", + "crumbles", + "salsa", + "tomatoes", + "taco seasoning mix", + "onions" + ] + }, + { + "id": 3524, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "cooking oil", + "ground black pepper", + "garlic", + "chicken wings", + "vinegar", + "onions", + "water", + "bay leaves" + ] + }, + { + "id": 14442, + "cuisine": "mexican", + "ingredients": [ + "reduced sodium chicken broth", + "flour tortillas", + "boneless pork loin", + "water", + "chili powder", + "reduced fat cheddar cheese", + "chopped green chilies", + "dried pinto beans", + "picante sauce", + "egg whites", + "onions" + ] + }, + { + "id": 45268, + "cuisine": "british", + "ingredients": [ + "golden raisins", + "salt", + "sugar", + "butter", + "baking powder", + "sour cream", + "flour", + "heavy cream" + ] + }, + { + "id": 1069, + "cuisine": "indian", + "ingredients": [ + "steamed rice", + "sugar", + "salt", + "dry yeast", + "coconut", + "rice" + ] + }, + { + "id": 2849, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "star anise", + "soy sauce", + "spring onions", + "garlic cloves", + "red chili peppers", + "red cabbage", + "rice vinegar", + "caster sugar", + "sesame oil", + "toasted sesame seeds" + ] + }, + { + "id": 43021, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "linguine", + "medium shrimp", + "kosher salt", + "lemon", + "fresh parsley leaves", + "white wine", + "unsalted butter", + "garlic", + "freshly grated parmesan", + "red pepper flakes", + "lemon juice" + ] + }, + { + "id": 48150, + "cuisine": "mexican", + "ingredients": [ + "silken tofu", + "vegan cheese", + "salt", + "corn tortillas", + "olive oil", + "green onions", + "tortilla chips", + "black beans", + "nutritional yeast", + "cilantro", + "enchilada sauce", + "pepper", + "chips", + "cheese sauce", + "onions" + ] + }, + { + "id": 12101, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "large eggs", + "salt", + "sesame", + "baking powder", + "all-purpose flour", + "baking soda", + "vanilla extract" + ] + }, + { + "id": 25482, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "chopped green bell pepper", + "chopped onion", + "garlic powder", + "cajun seasoning", + "celery flakes", + "water", + "brown rice", + "ground turkey", + "ground black pepper", + "salt" + ] + }, + { + "id": 39030, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "Tabasco Pepper Sauce", + "Potatoes O'Brien", + "butter", + "andouille sausage", + "cajun seasoning", + "pepper jack", + "garlic" + ] + }, + { + "id": 24759, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "apple juice", + "triple sec", + "tequila" + ] + }, + { + "id": 27545, + "cuisine": "filipino", + "ingredients": [ + "beans", + "salt", + "vegetable broth", + "coconut milk", + "ginger", + "oil", + "spinach", + "garlic", + "onions" + ] + }, + { + "id": 27534, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "ricotta", + "all-purpose flour", + "unsalted butter", + "plum tomatoes" + ] + }, + { + "id": 39853, + "cuisine": "mexican", + "ingredients": [ + "lime", + "vegetable oil", + "corn tortillas", + "boneless pork shoulder", + "vegetables", + "scallions", + "coriander", + "chili", + "salt", + "fresh lime juice", + "tomatoes", + "finely chopped onion", + "garlic cloves", + "cumin" + ] + }, + { + "id": 23334, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "tamarind pulp", + "cayenne pepper", + "ground turmeric", + "water", + "garlic", + "coconut milk", + "olive oil", + "salt", + "coriander", + "red chili peppers", + "shallots", + "masur dal" + ] + }, + { + "id": 657, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "garlic", + "grated parmesan cheese", + "fresh basil leaves", + "avocado", + "sea salt", + "water", + "fresh lemon juice" + ] + }, + { + "id": 14678, + "cuisine": "french", + "ingredients": [ + "ground ginger", + "olive oil", + "garlic", + "thyme", + "pig", + "red wine", + "carrots", + "pork", + "ground black pepper", + "salt", + "orange rind", + "ground cloves", + "leeks", + "fowl", + "onions" + ] + }, + { + "id": 46373, + "cuisine": "italian", + "ingredients": [ + "black peppercorns", + "dried thyme", + "lemon juice", + "minced garlic", + "minced onion", + "dried basil", + "cooking wine", + "kosher salt", + "olive oil", + "dried oregano" + ] + }, + { + "id": 21485, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "mirin", + "fish fillets", + "water", + "soy sauce", + "sake", + "fresh ginger" + ] + }, + { + "id": 38110, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "red pepper flakes", + "flat leaf parsley", + "bottled clam juice", + "ground black pepper", + "garlic", + "clams", + "olive oil", + "linguine", + "crushed tomatoes", + "dry white wine", + "salt" + ] + }, + { + "id": 8512, + "cuisine": "indian", + "ingredients": [ + "garlic", + "chillies", + "chicken", + "garam masala", + "cilantro leaves", + "coriander", + "tumeric", + "salt", + "onions", + "ginger", + "oil", + "plum tomatoes" + ] + }, + { + "id": 42890, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "cream cheese", + "Nilla Wafers", + "vanilla instant pudding", + "bananas", + "whipped topping", + "vanilla extract", + "sweetened condensed milk" + ] + }, + { + "id": 33996, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "diced tomatoes", + "ground cumin", + "chicken stock", + "large eggs", + "garlic cloves", + "manchego cheese", + "paprika", + "chipotle chile", + "french bread", + "sliced green onions" + ] + }, + { + "id": 31553, + "cuisine": "spanish", + "ingredients": [ + "garlic", + "bread slices", + "olive oil", + "brown shrimp", + "kosher salt", + "crushed red pepper", + "butter", + "scallions" + ] + }, + { + "id": 13587, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "corn oil", + "white cornmeal", + "self rising flour", + "buttermilk", + "baking soda", + "baking powder", + "large eggs", + "salt" + ] + }, + { + "id": 11602, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "ground nutmeg", + "salt", + "couscous", + "ground ginger", + "honey", + "cinnamon", + "lamb loin chops", + "warm water", + "olive oil", + "raisins", + "blanched almonds", + "spanish onion", + "spices", + "beef broth" + ] + }, + { + "id": 16641, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "milk", + "butter", + "cream", + "ground nutmeg", + "all-purpose flour", + "ground cinnamon", + "water", + "baking powder", + "sugar", + "frozen peaches", + "salt" + ] + }, + { + "id": 27374, + "cuisine": "vietnamese", + "ingredients": [ + "wheat starch", + "boiling water", + "tapioca starch", + "canola oil" + ] + }, + { + "id": 10522, + "cuisine": "italian", + "ingredients": [ + "milk", + "vanilla extract", + "ricotta cheese", + "egg noodles, cooked and drained", + "butter", + "anise extract", + "eggs", + "heavy cream", + "white sugar" + ] + }, + { + "id": 27100, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "salt", + "chicken broth", + "bacon", + "red pepper flakes", + "onions", + "turnip greens", + "garlic" + ] + }, + { + "id": 43294, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "salt", + "frisee", + "pernod", + "large garlic cloves", + "freshly ground pepper", + "red wine vinegar", + "walnuts", + "onions", + "dried currants", + "heavy cream", + "ham" + ] + }, + { + "id": 25812, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "purple onion", + "oregano", + "fresh rosemary", + "dry white wine", + "fresh lemon juice", + "chopped garlic", + "rosemary sprigs", + "coarse sea salt", + "leg of lamb", + "caraway seeds", + "harissa", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 4095, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "sugar", + "cinnamon sticks", + "white vinegar", + "whole cloves", + "water" + ] + }, + { + "id": 43980, + "cuisine": "vietnamese", + "ingredients": [ + "reduced sodium chicken broth", + "bok choy", + "wide rice noodles", + "reduced sodium soy sauce", + "canola oil", + "water", + "mung bean sprouts", + "fresh basil", + "flank steak" + ] + }, + { + "id": 13660, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "onion powder", + "salt", + "ground cumin", + "pepper", + "flour", + "butter", + "dried oregano", + "black beans", + "diced green chilies", + "lean ground beef", + "chopped cilantro fresh", + "milk", + "chili powder", + "diced tomatoes", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 10714, + "cuisine": "jamaican", + "ingredients": [ + "jamaican rum", + "ground black pepper", + "garlic", + "fresh lime juice", + "ground cloves", + "habanero pepper", + "salt", + "chicken legs", + "minced onion", + "white wine vinegar", + "ground cinnamon", + "molasses", + "vegetable oil", + "ground allspice" + ] + }, + { + "id": 32106, + "cuisine": "mexican", + "ingredients": [ + "orange", + "serrano peppers", + "salt", + "carrots", + "mayonaise", + "ground black pepper", + "Mexican oregano", + "chopped walnuts", + "hass avocado", + "fresh corn", + "lime", + "green leaf lettuce", + "hot sauce", + "red bell pepper", + "ground chipotle chile pepper", + "agave nectar", + "cilantro", + "scallions", + "mango" + ] + }, + { + "id": 40312, + "cuisine": "moroccan", + "ingredients": [ + "beets", + "extra-virgin olive oil", + "fresh lemon juice", + "black pepper", + "cumin seed", + "salt", + "fresh mint" + ] + }, + { + "id": 16550, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "daikon", + "mirin", + "scallions", + "sesame seeds", + "chicken drumsticks", + "chicken stock", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 16242, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "salt", + "ground cumin", + "chicken broth", + "vegetable oil", + "ancho chile pepper", + "chuck roast", + "ground coriander", + "chipotle chile", + "garlic", + "dried oregano" + ] + }, + { + "id": 33832, + "cuisine": "mexican", + "ingredients": [ + "fat free milk", + "diced tomatoes", + "onions", + "cooking spray", + "crushed red pepper", + "ground cumin", + "reduced fat monterey jack cheese", + "chicken breast halves", + "sour cream", + "crushed tomatoes", + "large garlic cloves", + "corn tortillas" + ] + }, + { + "id": 46281, + "cuisine": "korean", + "ingredients": [ + "eggs", + "ground black pepper", + "garlic", + "stir fry beef meat", + "sugar", + "zucchini", + "carrots", + "cooked white rice", + "spinach", + "chili paste", + "dried shiitake mushrooms", + "toasted sesame oil", + "soy sauce", + "vegetable oil", + "beansprouts", + "toasted sesame seeds" + ] + }, + { + "id": 49638, + "cuisine": "jamaican", + "ingredients": [ + "black peppercorns", + "ground black pepper", + "ginger", + "thyme", + "ground turmeric", + "anise seed", + "lime", + "coarse salt", + "cumin seed", + "coconut milk", + "chicken legs", + "coriander seeds", + "scotch bonnet chile", + "garlic cloves", + "onions", + "chicken stock", + "curry powder", + "vegetable oil", + "fenugreek seeds", + "mustard seeds", + "allspice" + ] + }, + { + "id": 19890, + "cuisine": "thai", + "ingredients": [ + "kosher salt", + "light soy sauce", + "spring onions", + "ginger", + "shrimp", + "water", + "large eggs", + "parsley", + "cumin seed", + "coconut milk", + "minced garlic", + "dijon mustard", + "sesame oil", + "mustard powder", + "risotto rice", + "soy sauce", + "lemongrass", + "jalapeno chilies", + "red wine vinegar", + "juice", + "canola oil" + ] + }, + { + "id": 1088, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "parmesan cheese", + "fresh tarragon", + "chopped parsley", + "pepper", + "dry white wine", + "fresh mushrooms", + "arborio rice", + "finely chopped onion", + "salt", + "olive oil", + "fresh thyme leaves", + "fat skimmed reduced sodium chicken broth" + ] + }, + { + "id": 45842, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "bacon", + "onions", + "olive oil", + "salt", + "pepper", + "garlic", + "broth", + "red pepper flakes", + "chipotle peppers" + ] + }, + { + "id": 8125, + "cuisine": "chinese", + "ingredients": [ + "rice", + "shiitake", + "carrots", + "scallions", + "chicken breasts" + ] + }, + { + "id": 24500, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "bay leaf", + "celery", + "carrots", + "sea salt" + ] + }, + { + "id": 13534, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "udon", + "garlic", + "cucumber", + "romaine lettuce", + "peanuts", + "crushed red pepper flakes", + "carrots", + "fresh ginger", + "green onions", + "dark sesame oil", + "chopped fresh mint", + "milk", + "chunky peanut butter", + "rice vinegar", + "beansprouts" + ] + }, + { + "id": 19236, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "bacon slices", + "tomatoes", + "milk", + "cheddar cheese soup", + "smoked turkey", + "sliced ham", + "penne", + "parmesan cheese" + ] + }, + { + "id": 48574, + "cuisine": "southern_us", + "ingredients": [ + "grape tomatoes", + "cooked bacon", + "dressing", + "romaine lettuce", + "sliced green onions", + "avocado", + "cheddar cheese", + "croutons", + "chicken broth", + "chicken breasts" + ] + }, + { + "id": 36611, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "honey", + "butter", + "chipotles in adobo", + "large egg whites", + "baking powder", + "whole kernel corn, drain", + "ground cinnamon", + "large egg yolks", + "1% low-fat milk", + "chopped cilantro fresh", + "fat free less sodium chicken broth", + "cooking spray", + "salt" + ] + }, + { + "id": 16894, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "pepper", + "tomatoes", + "salt", + "garlic powder" + ] + }, + { + "id": 43397, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "jalapeno chilies", + "salt", + "olive oil", + "no-salt-added black beans", + "fresh lime juice", + "avocado", + "kidney beans", + "shuck corn", + "chopped cilantro fresh", + "white onion", + "cooking spray", + "pinto beans" + ] + }, + { + "id": 41427, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "lemon pepper seasoning", + "fresh lemon juice", + "artichoke hearts", + "kalamata", + "dried oregano", + "olive oil", + "sliced cucumber", + "feta cheese crumbles", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 47706, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "vodka", + "cilantro", + "ginger liqueur", + "jalapeno chilies", + "ginger beer", + "orange liqueur" + ] + }, + { + "id": 47978, + "cuisine": "jamaican", + "ingredients": [ + "pork", + "milk", + "worcestershire sauce", + "oil", + "panko breadcrumbs", + "minced garlic", + "marinade", + "salt", + "ground beef", + "black pepper", + "jamaican jerk season", + "beaten eggs", + "chopped cilantro", + "clove", + "lime juice", + "red pepper", + "pineapple juice", + "onions" + ] + }, + { + "id": 42727, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "pork loin", + "fresh mint", + "fish sauce", + "palm sugar", + "salt", + "water", + "granulated sugar", + "crushed ice", + "gai lan", + "baking soda", + "garlic", + "bird chile" + ] + }, + { + "id": 47204, + "cuisine": "chinese", + "ingredients": [ + "water", + "scallions", + "chicken stock", + "salt", + "cooked chicken breasts", + "fresh ginger", + "carrots", + "turnips", + "watercress", + "celery" + ] + }, + { + "id": 20885, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "salt", + "greens", + "cooking oil", + "button mushrooms", + "shrimp", + "water", + "choy sum", + "carrots", + "fish sauce", + "Shaoxing wine", + "ginger", + "corn starch" + ] + }, + { + "id": 4380, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium chicken broth", + "shredded carrots", + "spinach leaves", + "reduced sodium soy sauce", + "vegetable oil", + "fresh ginger", + "ramen noodles", + "sweet chili sauce", + "extra firm tofu", + "garlic" + ] + }, + { + "id": 28608, + "cuisine": "southern_us", + "ingredients": [ + "dry white wine", + "salt", + "kale", + "bacon", + "plum tomatoes", + "low sodium chicken broth", + "garlic", + "arborio rice", + "vegetable oil", + "onions" + ] + }, + { + "id": 26050, + "cuisine": "italian", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "cooking spray", + "turkey breast", + "black pepper", + "condensed reduced fat reduced sodium cream of mushroom soup", + "spaghetti", + "parsley sprigs", + "pimentos", + "fresh parsley", + "water", + "chopped onion" + ] + }, + { + "id": 26910, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "grated parmesan cheese", + "crushed red pepper", + "spaghetti", + "beef shank", + "dry red wine", + "flat leaf parsley", + "fresh bay leaves", + "extra-virgin olive oil", + "onions", + "olive oil", + "large garlic cloves", + "hot Italian sausages", + "dried oregano" + ] + }, + { + "id": 6987, + "cuisine": "thai", + "ingredients": [ + "lower sodium soy sauce", + "cooking spray", + "carrots", + "fresh basil leaves", + "brown sugar", + "Sriracha", + "garlic", + "fresh mint", + "fish sauce", + "ground black pepper", + "flank steak", + "beansprouts", + "kosher salt", + "red cabbage", + "cilantro leaves", + "fresh lime juice" + ] + }, + { + "id": 21307, + "cuisine": "cajun_creole", + "ingredients": [ + "rock shrimp", + "hot pepper sauce", + "haddock fillets", + "cayenne pepper", + "ground white pepper", + "chicken stock", + "minced garlic", + "bay scallops", + "chopped celery", + "chopped onion", + "dried oregano", + "tomatoes", + "ground black pepper", + "bay leaves", + "salt", + "sweet basil", + "tomato sauce", + "chopped green bell pepper", + "butter", + "dri leav thyme", + "white sugar" + ] + }, + { + "id": 45923, + "cuisine": "thai", + "ingredients": [ + "eggs", + "lite coconut milk", + "fresh lime", + "pineapple", + "cold water", + "brown sugar", + "water", + "green onions", + "garlic cloves", + "peeled deveined shrimp", + "soy sauce", + "dried thyme", + "salt", + "frozen edamame beans", + "coconut oil", + "minced ginger", + "sesame oil", + "long grain white rice" + ] + }, + { + "id": 21463, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic", + "ground white pepper", + "canola", + "white fleshed fish", + "chili flakes", + "ginger", + "scallions", + "kosher salt", + "cilantro leaves", + "fermented black beans" + ] + }, + { + "id": 35286, + "cuisine": "korean", + "ingredients": [ + "green onions", + "garlic cloves", + "soy sauce", + "vegetable oil", + "sesame oil", + "chili garlic paste", + "sesame seeds", + "firm tofu" + ] + }, + { + "id": 38334, + "cuisine": "chinese", + "ingredients": [ + "rice wine", + "white sugar", + "soy sauce", + "garlic", + "chicken wings", + "sesame oil", + "water", + "garlic chili sauce" + ] + }, + { + "id": 10972, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "splenda", + "red pepper flakes", + "peanut butter", + "coconut milk", + "eggs", + "Sriracha", + "sesame oil", + "shirataki", + "ground coriander", + "canola oil", + "garlic paste", + "broccoli florets", + "lime wedges", + "rice vinegar", + "lemon juice", + "ground cumin", + "tofu", + "peanuts", + "green onions", + "red pepper", + "tamarind paste", + "onions" + ] + }, + { + "id": 14225, + "cuisine": "southern_us", + "ingredients": [ + "ground ginger", + "fresh lemon juice", + "ground cloves", + "brown sugar", + "boneless skinless chicken breast halves", + "peaches" + ] + }, + { + "id": 48555, + "cuisine": "mexican", + "ingredients": [ + "ground sirloin", + "low-fat cheddar", + "olive oil", + "wonton wrappers", + "ground cumin", + "chili powder", + "green chilies", + "cooking spray", + "salsa" + ] + }, + { + "id": 29453, + "cuisine": "japanese", + "ingredients": [ + "dry mustard", + "onions", + "pepper", + "cucumber", + "vinegar", + "sour cream", + "sugar", + "salt", + "coriander" + ] + }, + { + "id": 31470, + "cuisine": "thai", + "ingredients": [ + "sugar", + "tuna steaks", + "rice vinegar", + "fresh lime juice", + "cooking spray", + "purple onion", + "dark sesame oil", + "sambal ulek", + "sliced cucumber", + "salt", + "carrots", + "black pepper", + "navel oranges", + "chinese cabbage", + "chopped cilantro fresh" + ] + }, + { + "id": 39617, + "cuisine": "mexican", + "ingredients": [ + "morel", + "vegetable oil", + "chanterelle", + "shredded Monterey Jack cheese", + "flour tortillas", + "salt", + "garlic cloves", + "unsalted butter", + "mild green chiles", + "freshly ground pepper", + "shiitake", + "chili powder", + "salsa", + "wild mushrooms" + ] + }, + { + "id": 33363, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "grated parmesan cheese", + "salt", + "olive oil", + "basil", + "grape tomatoes", + "large eggs", + "garlic", + "corn kernels", + "yukon gold potatoes" + ] + }, + { + "id": 13654, + "cuisine": "indian", + "ingredients": [ + "eggs", + "mint leaves", + "salt", + "lemon juice", + "bread flour", + "plain yogurt", + "butter", + "greek style plain yogurt", + "wheat flour", + "warm water", + "sliced cucumber", + "cilantro leaves", + "red bell pepper", + "cumin", + "active dry yeast", + "purple onion", + "sauce", + "white sugar" + ] + }, + { + "id": 24862, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "thyme leaves", + "chopped garlic", + "black pepper", + "ham", + "bay leaf", + "red kidney beans", + "salt", + "chopped parsley", + "water", + "sausages", + "onions" + ] + }, + { + "id": 29081, + "cuisine": "indian", + "ingredients": [ + "water", + "butter", + "cumin seed", + "whole wheat flour", + "salt", + "olive oil", + "red pepper flakes", + "spinach", + "flour", + "all-purpose flour" + ] + }, + { + "id": 7526, + "cuisine": "cajun_creole", + "ingredients": [ + "powdered sugar", + "french bread", + "strawberries", + "large eggs", + "vanilla extract", + "grated orange", + "sugar", + "butter", + "whole nutmegs", + "ground cinnamon", + "reduced fat milk", + "salt" + ] + }, + { + "id": 12863, + "cuisine": "thai", + "ingredients": [ + "straw mushrooms", + "fresh ginger", + "serrano chile", + "chile paste", + "medium shrimp", + "lemongrass", + "low sodium chicken broth", + "lime", + "chopped cilantro fresh" + ] + }, + { + "id": 24187, + "cuisine": "italian", + "ingredients": [ + "bulk italian sausag", + "banana peppers", + "tortilla chips", + "pizza sauce", + "pepperoni slices", + "shredded mozzarella cheese" + ] + }, + { + "id": 16724, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "freshly ground pepper", + "bacon slices", + "chopped pecans" + ] + }, + { + "id": 6095, + "cuisine": "southern_us", + "ingredients": [ + "whole wheat buns", + "boneless skinless chicken breasts", + "black pepper", + "hot sauce", + "brown sugar", + "apple cider vinegar", + "kosher salt", + "coleslaw" + ] + }, + { + "id": 34910, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "peanut oil", + "ground chicken breast", + "minced garlic", + "fresh basil leaves", + "dark soy sauce", + "thai chile" + ] + }, + { + "id": 45569, + "cuisine": "brazilian", + "ingredients": [ + "tapioca flour", + "salt", + "whole milk", + "parmesan cheese", + "eggs", + "vegetable oil" + ] + }, + { + "id": 37186, + "cuisine": "korean", + "ingredients": [ + "tofu", + "water", + "kimchi", + "sugar", + "sesame oil", + "pepper flakes", + "green onions", + "pork belly", + "Gochujang base" + ] + }, + { + "id": 29088, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh orange juice", + "orange rind", + "fresh basil", + "parmigiano reggiano cheese", + "vegetable broth", + "pinenuts", + "butter", + "garlic cloves", + "ground black pepper", + "orzo" + ] + }, + { + "id": 38132, + "cuisine": "southern_us", + "ingredients": [ + "evaporated milk", + "all-purpose flour", + "egg yolks", + "vinegar", + "sugar", + "dry mustard" + ] + }, + { + "id": 49707, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "tortilla chips", + "iceberg lettuce", + "bell pepper", + "ground turkey", + "scallion greens", + "taco seasoning reduced sodium", + "vegetable oil", + "extra sharp cheddar cheese" + ] + }, + { + "id": 1922, + "cuisine": "british", + "ingredients": [ + "pork", + "bacon", + "ground allspice", + "onions", + "eggs", + "water", + "salt", + "sour cream", + "pepper", + "whipping cream", + "garlic cloves", + "shortening", + "beef bouillon granules", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 16341, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "white sugar", + "salt", + "olive oil", + "warm water", + "all-purpose flour" + ] + }, + { + "id": 40108, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "green tomatoes", + "buttermilk", + "sugar", + "large eggs", + "vegetable oil", + "all-purpose flour", + "honey", + "onion powder", + "salt", + "boneless chicken thighs", + "baking powder", + "butter", + "bread flour" + ] + }, + { + "id": 11021, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "salt", + "brown sugar", + "vanilla extract", + "pecans", + "bourbon whiskey", + "semi-sweet chocolate morsels", + "pie crust", + "large eggs", + "corn syrup" + ] + }, + { + "id": 39643, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "fajita size flour tortillas", + "spinach", + "cracked black pepper", + "roma tomatoes", + "shredded mozzarella cheese", + "dried basil", + "salt" + ] + }, + { + "id": 17129, + "cuisine": "italian", + "ingredients": [ + "lemon", + "salt", + "pecorino romano cheese", + "artichokes", + "extra-virgin olive oil", + "cracked black pepper" + ] + }, + { + "id": 42295, + "cuisine": "korean", + "ingredients": [ + "short-grain rice", + "sauce", + "kosher salt", + "lettuce leaves", + "pork butt", + "light brown sugar", + "granulated sugar", + "kimchi", + "oysters", + "sea salt" + ] + }, + { + "id": 16018, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "black pepper", + "beef tenderloin steaks", + "broccoli", + "anchovies" + ] + }, + { + "id": 40332, + "cuisine": "british", + "ingredients": [ + "white onion", + "potatoes", + "paprika", + "corn starch", + "cheddar cheese", + "ground black pepper", + "heavy cream", + "sausages", + "Guinness Beer", + "butter", + "salt", + "onions", + "garlic powder", + "grapeseed oil", + "all-purpose flour", + "canola oil" + ] + }, + { + "id": 11068, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "unsalted butter", + "white corn syrup", + "salt", + "milk", + "large eggs", + "buttermilk", + "toasted pecans", + "granulated sugar", + "vegetable shortening", + "icing", + "baking soda", + "baking powder", + "cake flour" + ] + }, + { + "id": 48624, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "chopped pecans", + "ground cinnamon", + "sweet potatoes", + "ground ginger", + "half & half", + "grated orange", + "vegetable oil cooking spray", + "Domino Light Brown Sugar" + ] + }, + { + "id": 27818, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "garlic cloves", + "sugar", + "green onions", + "soy sauce", + "sesame oil", + "beef" + ] + }, + { + "id": 38530, + "cuisine": "italian", + "ingredients": [ + "Bertolli® Classico Olive Oil", + "tomatoes", + "fresh basil leaves", + "dry white wine", + "Bertolli® Alfredo Sauce", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 33962, + "cuisine": "southern_us", + "ingredients": [ + "barbecue sauce", + "large garlic cloves", + "ground oregano", + "sugar", + "ground red pepper", + "salt", + "dried sage", + "paprika", + "ground cumin", + "beef brisket", + "chili powder", + "freshly ground pepper" + ] + }, + { + "id": 49492, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cilantro", + "spaghetti squash", + "ground cumin", + "black beans", + "jalapeno chilies", + "purple onion", + "red bell pepper", + "cheddar cheese", + "olive oil", + "cracked black pepper", + "garlic cloves", + "kosher salt", + "chili powder", + "frozen corn", + "oregano" + ] + }, + { + "id": 4060, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "lemon juice", + "tomatoes", + "sliced black olives", + "avocado", + "taco seasoning mix", + "sour cream", + "cheddar cheese", + "green onions" + ] + }, + { + "id": 21185, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "cilantro", + "hot sauce", + "corn tortillas", + "ground cumin", + "ground paprika", + "red cabbage", + "purple onion", + "tilapia", + "hass avocado", + "lime juice", + "garlic", + "cayenne pepper", + "fresh lime juice", + "cotija", + "chili powder", + "salt", + "sour cream", + "canola oil" + ] + }, + { + "id": 24654, + "cuisine": "southern_us", + "ingredients": [ + "lower sodium chicken broth", + "chopped onion", + "bacon slices", + "salt", + "hot pepper sauce", + "green beans" + ] + }, + { + "id": 44882, + "cuisine": "spanish", + "ingredients": [ + "cider vinegar", + "fresh parsley", + "diced onions", + "fresh cilantro", + "black pepper", + "crushed red pepper", + "saffron threads", + "water" + ] + }, + { + "id": 26457, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "chili powder", + "salt", + "fresh lime juice", + "black beans", + "hot pepper sauce", + "red wine vinegar", + "lemon juice", + "chopped cilantro fresh", + "green bell pepper", + "ground black pepper", + "crushed garlic", + "frozen corn kernels", + "white sugar", + "olive oil", + "cannellini beans", + "purple onion", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 26555, + "cuisine": "cajun_creole", + "ingredients": [ + "zucchini", + "diced tomatoes", + "carrots", + "tomato sauce", + "chili powder", + "chopped celery", + "onions", + "green bell pepper", + "pimentos", + "white rice", + "cooked shrimp", + "water", + "butter", + "fresh mushrooms" + ] + }, + { + "id": 7257, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "olive oil", + "salt", + "japanese eggplants", + "romano cheese", + "balsamic vinegar", + "plum tomatoes", + "fresh basil", + "fresh mozzarella balls", + "fresh basil leaves", + "water", + "butter", + "dried oregano" + ] + }, + { + "id": 6300, + "cuisine": "cajun_creole", + "ingredients": [ + "red pepper", + "carrots", + "frozen peas", + "corn", + "beef broth", + "ground beef", + "salt", + "celery", + "cajun seasoning", + "long-grain rice", + "onions" + ] + }, + { + "id": 5245, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "salt", + "pork baby back ribs", + "peeled fresh ginger", + "chopped garlic", + "unsweetened coconut milk", + "golden brown sugar", + "chopped cilantro fresh", + "soy sauce", + "shallots" + ] + }, + { + "id": 39156, + "cuisine": "italian", + "ingredients": [ + "low-fat cottage cheese", + "breakfast sausages", + "ground beef", + "tomatoes", + "large eggs", + "garlic", + "tomato paste", + "lasagna noodles", + "parsley", + "fresh basil leaves", + "mozzarella cheese", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 40469, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "pork", + "pepper", + "egg noodles", + "napa cabbage leaves", + "napa cabbage", + "garlic chili sauce", + "glass noodles", + "garland chrysanthemum", + "scallops", + "meatballs", + "fish fingers", + "sesame oil", + "salt", + "shrimp", + "chicken", + "gai lan", + "soy sauce", + "water", + "hoisin sauce", + "chicken carcass", + "choy sum", + "goji berries", + "fish", + "tofu", + "baby bok choy", + "fishcake", + "beef", + "mushrooms", + "rice noodles", + "squid", + "dumplings" + ] + }, + { + "id": 31244, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "ground cumin", + "black pepper", + "paprika", + "onion powder", + "garlic powder", + "cayenne pepper" + ] + }, + { + "id": 45517, + "cuisine": "cajun_creole", + "ingredients": [ + "light corn syrup", + "water", + "large egg whites", + "sugar", + "salt" + ] + }, + { + "id": 33259, + "cuisine": "italian", + "ingredients": [ + "water", + "butter", + "garlic cloves", + "fettucine", + "green onions", + "all-purpose flour", + "plum tomatoes", + "olive oil", + "salt", + "lemon juice", + "fresh rosemary", + "dry white wine", + "freshly ground pepper", + "large shrimp" + ] + }, + { + "id": 8766, + "cuisine": "mexican", + "ingredients": [ + "cherry tomatoes", + "purple onion", + "fresh lemon juice", + "chopped cilantro fresh", + "mayonaise", + "jicama", + "whole kernel corn, drain", + "red bell pepper", + "pepper", + "chicken meat", + "taco seasoning", + "sour cream", + "avocado", + "hot pepper sauce", + "salt", + "carrots", + "ground cumin" + ] + }, + { + "id": 27789, + "cuisine": "irish", + "ingredients": [ + "black pepper", + "dijon mustard", + "chopped celery", + "garlic cloves", + "fresh parsley", + "green cabbage", + "water", + "cooking spray", + "grated lemon zest", + "fresh lemon juice", + "caraway seeds", + "prepared horseradish", + "butter", + "chopped onion", + "carrots", + "pickling spices", + "beef brisket", + "dry bread crumbs", + "small red potato" + ] + }, + { + "id": 39105, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "garlic powder", + "Tabasco Pepper Sauce", + "coriander", + "cumin", + "cider vinegar", + "chili powder", + "red bell pepper", + "dried leaves oregano", + "boneless chicken skinless thigh", + "agave nectar", + "diced tomatoes", + "boneless skinless chicken breast halves", + "whole grain mustard", + "onion powder", + "onions", + "arugula" + ] + }, + { + "id": 29120, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "green pepper", + "canola oil", + "water", + "corn starch", + "soy sauce", + "garlic cloves", + "cooked rice", + "boneless beef sirloin steak", + "onions" + ] + }, + { + "id": 42404, + "cuisine": "mexican", + "ingredients": [ + "pepper jack", + "enchilada sauce", + "wonton wrappers", + "boneless skinless chicken breasts", + "diced green chilies", + "scallions" + ] + }, + { + "id": 8516, + "cuisine": "indian", + "ingredients": [ + "dried split peas", + "garam masala", + "green chilies", + "onions", + "water", + "vegetable oil", + "cumin seed", + "fresh coriander", + "ground black pepper", + "ground coriander", + "ground turmeric", + "tomatoes", + "fresh ginger", + "salt", + "garlic cloves" + ] + }, + { + "id": 3552, + "cuisine": "japanese", + "ingredients": [ + "soup", + "scallions", + "vegetable oil", + "cod fillets", + "shiitake mushroom caps" + ] + }, + { + "id": 37386, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "dried oregano", + "tomato sauce", + "salt", + "tomato paste", + "onion powder", + "ground cumin", + "garlic powder", + "beef broth" + ] + }, + { + "id": 21516, + "cuisine": "italian", + "ingredients": [ + "baking powder", + "all-purpose flour", + "large eggs", + "vanilla extract", + "pistachios", + "salt", + "sugar", + "sanding sugar", + "dried cranberries" + ] + }, + { + "id": 22200, + "cuisine": "cajun_creole", + "ingredients": [ + "scallion greens", + "cayenne", + "salt", + "onions", + "reduced sodium chicken broth", + "shell-on shrimp", + "duck", + "green bell pepper", + "bay leaves", + "all-purpose flour", + "celery ribs", + "water", + "vegetable oil", + "red bell pepper" + ] + }, + { + "id": 2965, + "cuisine": "french", + "ingredients": [ + "white bread", + "fresh thyme", + "red wine", + "garlic cloves", + "onions", + "pancetta", + "olive oil", + "bay leaves", + "salt", + "celery", + "chicken", + "plain flour", + "potatoes", + "button mushrooms", + "carrots", + "redcurrant jelly", + "clove", + "ground black pepper", + "butter", + "cognac", + "fresh parsley" + ] + }, + { + "id": 25312, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "vegetable oil", + "sugar", + "fresh ginger", + "garlic", + "lemongrass", + "cilantro root", + "soy sauce", + "ground black pepper", + "chicken" + ] + }, + { + "id": 49088, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "cooking oil", + "salt", + "soy sauce", + "bay leaves", + "pork", + "potatoes", + "peppercorns", + "water", + "crushed garlic" + ] + }, + { + "id": 32748, + "cuisine": "french", + "ingredients": [ + "shallots", + "fresh lemon juice", + "unsalted butter", + "fresh tarragon", + "dry white wine", + "white wine vinegar", + "large egg yolks", + "vegetable oil", + "boneless rib eye steaks" + ] + }, + { + "id": 48203, + "cuisine": "spanish", + "ingredients": [ + "chorizo", + "yukon gold potatoes", + "roasted red peppers", + "extra-virgin olive oil", + "sherry vinegar", + "sheep’s milk cheese", + "pie dough", + "baby arugula", + "pie shell" + ] + }, + { + "id": 33289, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "half & half", + "garlic", + "celery", + "warm water", + "parmesan cheese", + "diced tomatoes", + "all-purpose flour", + "bread flour", + "sugar", + "olive oil", + "butter", + "salt", + "onions", + "pepper", + "grated parmesan cheese", + "vegetable broth", + "carrots", + "italian seasoning" + ] + }, + { + "id": 28705, + "cuisine": "italian", + "ingredients": [ + "shallots", + "dried porcini mushrooms", + "whipping cream", + "grated parmesan cheese", + "low salt chicken broth", + "fettucine", + "butter" + ] + }, + { + "id": 49504, + "cuisine": "chinese", + "ingredients": [ + "jumbo shrimp", + "fresh ginger", + "bell pepper", + "chicken broth", + "minced garlic", + "hoisin sauce", + "corn starch", + "sugar pea", + "zucchini", + "purple onion", + "low sodium soy sauce", + "olive oil", + "shredded carrots", + "toasted sesame seeds" + ] + }, + { + "id": 14088, + "cuisine": "mexican", + "ingredients": [ + "poblano chilies", + "white onion", + "vegetable oil", + "crème fraîche" + ] + }, + { + "id": 45063, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "salt", + "I Can't Believe It's Not Butter!® Spread", + "milk", + "all-purpose flour" + ] + }, + { + "id": 41058, + "cuisine": "french", + "ingredients": [ + "sugar", + "all-purpose flour", + "unsalted butter", + "pure vanilla extract", + "large eggs", + "pinenuts" + ] + }, + { + "id": 16793, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "large garlic cloves", + "salt", + "cherry tomatoes", + "extra-virgin olive oil", + "fresh lemon juice", + "black pepper", + "Italian parsley leaves", + "squid", + "celery ribs", + "red wine vinegar", + "purple onion" + ] + }, + { + "id": 34137, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "rice wine", + "chinese five-spice powder", + "hoisin sauce", + "star anise", + "honey", + "sesame oil", + "oyster sauce", + "dark soy sauce", + "pork tenderloin", + "red food coloring" + ] + }, + { + "id": 21639, + "cuisine": "greek", + "ingredients": [ + "eggplant", + "extra-virgin olive oil", + "red bell pepper", + "finely chopped onion", + "garlic cloves", + "plum tomatoes", + "ground black pepper", + "salt", + "flat leaf parsley", + "white bread", + "cooking spray", + "feta cheese crumbles", + "dried oregano" + ] + }, + { + "id": 10370, + "cuisine": "korean", + "ingredients": [ + "sugar", + "honey", + "rice wine", + "garlic cloves", + "soy sauce", + "potatoes", + "ginger", + "onions", + "red chili peppers", + "sesame seeds", + "sesame oil", + "carrots", + "hot red pepper flakes", + "pepper", + "chicken parts", + "scallions" + ] + }, + { + "id": 34999, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "large garlic cloves", + "spaghetti", + "fish fillets", + "dry white wine", + "crushed red pepper", + "black pepper", + "lemon wedge", + "fresh parsley", + "diced onions", + "cherry tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 25793, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "pork tenderloin", + "ground cumin", + "tomatoes", + "shredded reduced fat cheddar cheese", + "pinto beans", + "minced garlic", + "non-fat sour cream", + "vegetable oil cooking spray", + "flour tortillas", + "chunky salsa" + ] + }, + { + "id": 14151, + "cuisine": "indian", + "ingredients": [ + "pepper", + "chopped cilantro fresh", + "cucumber", + "salt", + "ground cumin", + "plain yogurt", + "fresh mint" + ] + }, + { + "id": 35611, + "cuisine": "russian", + "ingredients": [ + "cold water", + "lemon zest", + "farmer cheese", + "eggs", + "sea salt", + "oil", + "potato starch", + "baking powder", + "sour cherries", + "pure vanilla extract", + "sugar", + "all-purpose flour", + "lemon juice" + ] + }, + { + "id": 29514, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "ham", + "black pepper", + "butter", + "onions", + "seasoning salt", + "peas", + "enriched white rice", + "ground red pepper", + "fresh parsley" + ] + }, + { + "id": 2555, + "cuisine": "greek", + "ingredients": [ + "cinnamon", + "dried oregano", + "ground black pepper", + "salt", + "skinless chicken pieces", + "poultry seasoning", + "olive oil", + "lemon" + ] + }, + { + "id": 38394, + "cuisine": "italian", + "ingredients": [ + "ground cloves", + "baking powder", + "all-purpose flour", + "white sugar", + "ground cinnamon", + "baking soda", + "vanilla extract", + "chopped walnuts", + "milk", + "butter", + "ground allspice", + "unsweetened cocoa powder", + "eggs", + "ground nutmeg", + "salt", + "confectioners sugar" + ] + }, + { + "id": 8153, + "cuisine": "indian", + "ingredients": [ + "instant yeast", + "ground cardamom", + "sugar", + "all-purpose flour", + "ground turmeric", + "salt", + "ghee", + "milk", + "greek style plain yogurt" + ] + }, + { + "id": 22284, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "hot pepper sauce", + "large garlic cloves", + "onions", + "orange", + "vegetable oil", + "salt", + "spicy pork sausage", + "black turtle beans", + "bay leaves", + "bacon", + "coriander", + "olive oil", + "lemon", + "steak", + "pork sausages" + ] + }, + { + "id": 19869, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chopped green chilies", + "salt", + "corn tortillas", + "water", + "cilantro", + "enchilada sauce", + "cumin", + "minced garlic", + "chili powder", + "frozen corn", + "onions", + "chicken broth", + "crushed tomatoes", + "cheese", + "sour cream", + "chicken" + ] + }, + { + "id": 4580, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "paprika", + "pork meat", + "ground black pepper", + "cayenne pepper", + "bay leaf", + "minced garlic", + "dried sage", + "fresh pork fat", + "large sausage casing", + "salt", + "hickory-flavored liquid smoke" + ] + }, + { + "id": 10059, + "cuisine": "italian", + "ingredients": [ + "crumbled goat cheese", + "ground black pepper", + "garlic", + "milk", + "heavy cream", + "onions", + "kosher salt", + "grated parmesan cheese", + "roast red peppers, drain", + "olive oil", + "linguine" + ] + }, + { + "id": 8968, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "crushed red pepper", + "fresh lemon juice", + "canola oil", + "black pepper", + "lettuce leaves", + "garlic cloves", + "plum tomatoes", + "fresh dill", + "feta cheese", + "english cucumber", + "boneless skinless chicken breast halves", + "diced onions", + "whole wheat pita", + "fresh oregano", + "greek yogurt" + ] + }, + { + "id": 35727, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "stewed tomatoes", + "hot dogs", + "onions", + "vegetable oil", + "dried oregano", + "bell pepper", + "salt" + ] + }, + { + "id": 3050, + "cuisine": "italian", + "ingredients": [ + "red chili peppers", + "garlic", + "chopped tomatoes", + "olive oil", + "spaghetti", + "fresh basil", + "parmesan cheese" + ] + }, + { + "id": 46176, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "pizza sauce", + "asparagus", + "prebaked pizza crusts", + "crumbled blue cheese", + "olive oil", + "salt" + ] + }, + { + "id": 48787, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "ground red pepper", + "okra", + "vegetable oil", + "white cornmeal", + "sugar", + "salt" + ] + }, + { + "id": 9631, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella", + "plum tomatoes", + "basil leaves", + "extra-virgin olive oil", + "black pepper" + ] + }, + { + "id": 21112, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "Mexican cheese blend", + "cooked bacon", + "cayenne pepper", + "enchilada sauce", + "oregano", + "chicken broth", + "corn", + "bacon", + "sweet mini bells", + "green chilies", + "sour cream", + "arborio rice", + "lime juice", + "chili powder", + "salt", + "rice", + "smoked paprika", + "ground cumin", + "black beans", + "olive oil", + "diced tomatoes", + "hot sauce", + "garlic cloves", + "onions" + ] + }, + { + "id": 43840, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "red wine vinegar", + "smoked paprika", + "double concentrate tomato paste", + "olive oil", + "cilantro leaves", + "cauliflower", + "curry powder", + "florets", + "white onion", + "cayenne", + "chickpeas" + ] + }, + { + "id": 41187, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "cooking spray", + "1% low-fat milk", + "gorgonzola", + "fresh parmesan cheese", + "paprika", + "purple onion", + "dried rosemary", + "baguette", + "ground red pepper", + "part-skim ricotta cheese", + "plum tomatoes", + "large eggs", + "bacon slices", + "salt" + ] + }, + { + "id": 26541, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "flour tortillas", + "shredded cheese", + "onions", + "pepper", + "salt", + "enchilada sauce", + "cottage cheese", + "stewed tomatoes", + "garlic cloves", + "shredded cheddar cheese", + "taco seasoning", + "ground beef" + ] + }, + { + "id": 31789, + "cuisine": "italian", + "ingredients": [ + "egg yolks", + "salt", + "cream of tartar", + "butter", + "baking powder", + "white sugar", + "egg whites", + "cake flour" + ] + }, + { + "id": 34802, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "sea salt", + "garlic cloves", + "sage leaves", + "dry white wine", + "extra-virgin olive oil", + "cinnamon sticks", + "stock", + "cracked black pepper", + "carrots", + "celery ribs", + "red wine vinegar", + "lamb shoulder", + "onions" + ] + }, + { + "id": 20831, + "cuisine": "italian", + "ingredients": [ + "cottage cheese", + "shredded mozzarella cheese", + "lasagna noodles", + "shredded cheddar cheese", + "pasta sauce", + "grated parmesan cheese" + ] + }, + { + "id": 17309, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "salt", + "fresh parsley", + "olive oil", + "linguine", + "carrots", + "water", + "red pepper flakes", + "lentils", + "onions", + "ground black pepper", + "garlic", + "bay leaf" + ] + }, + { + "id": 24013, + "cuisine": "spanish", + "ingredients": [ + "sliced almonds", + "sherry wine vinegar", + "red bell pepper", + "wheat bread", + "water", + "sweet paprika", + "onions", + "kosher salt", + "extra-virgin olive oil", + "ancho chile pepper", + "snappers", + "olive oil", + "garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 43900, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "grated parmesan cheese", + "garlic", + "onions", + "olive oil", + "whole wheat bread", + "ground turkey", + "tomatoes", + "whole milk", + "salt", + "dried oregano", + "large eggs", + "crushed red pepper flakes", + "fresh parsley" + ] + }, + { + "id": 9469, + "cuisine": "japanese", + "ingredients": [ + "wasabi", + "sushi rice", + "Kewpie Mayonnaise", + "rice vinegar", + "white sugar", + "brown sugar", + "black sesame seeds", + "ginger", + "garlic cloves", + "cold water", + "mirin", + "fried eggs", + "cayenne pepper", + "lettuce", + "soy sauce", + "flank steak", + "salt", + "nori sheets" + ] + }, + { + "id": 48415, + "cuisine": "greek", + "ingredients": [ + "cooking spray", + "ground cumin", + "pitas", + "salt" + ] + }, + { + "id": 12699, + "cuisine": "italian", + "ingredients": [ + "green olives", + "spaghetti", + "sun-dried tomatoes", + "fresh basil", + "meatballs", + "pesto" + ] + }, + { + "id": 10598, + "cuisine": "italian", + "ingredients": [ + "gnocchi", + "pasta sauce", + "italian seasoning", + "pork sausages", + "shredded mozzarella cheese" + ] + }, + { + "id": 24142, + "cuisine": "french", + "ingredients": [ + "eggs", + "dry yeast", + "whipped cream", + "water", + "dark rum", + "sugar", + "flour", + "candied fruit", + "milk", + "butter" + ] + }, + { + "id": 3374, + "cuisine": "italian", + "ingredients": [ + "hazelnuts", + "sea salt", + "fresh thyme leaves", + "extra-virgin olive oil" + ] + }, + { + "id": 22913, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "garlic cloves", + "bacon slices", + "pecorino romano cheese", + "water", + "bow-tie pasta" + ] + }, + { + "id": 27328, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "light cream cheese", + "frozen chopped spinach", + "butter", + "shredded Monterey Jack cheese", + "cooking spray", + "sliced mushrooms", + "black beans", + "reduced-fat sour cream" + ] + }, + { + "id": 15166, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "salt", + "oven-ready lasagna noodles", + "part-skim mozzarella cheese", + "marinara sauce", + "fresh mushrooms", + "nonfat ricotta cheese", + "vegetable oil cooking spray", + "grated parmesan cheese", + "yellow onion", + "red bell pepper", + "zucchini", + "yellow bell pepper", + "garlic cloves" + ] + }, + { + "id": 3646, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "ground pork", + "ground cayenne pepper", + "garlic powder", + "salt", + "white sugar", + "mace", + "cracked black pepper", + "pork shoulder", + "ice water", + "ground coriander" + ] + }, + { + "id": 48953, + "cuisine": "southern_us", + "ingredients": [ + "ice cubes", + "orange", + "orange juice", + "chambord", + "cocktail cherries", + "liqueur", + "vodka", + "light rum", + "gin", + "dark rum", + "coconut rum" + ] + }, + { + "id": 27646, + "cuisine": "filipino", + "ingredients": [ + "black peppercorns", + "chili", + "garlic cloves", + "pork baby back ribs", + "apple cider vinegar", + "cooked rice", + "bay leaves", + "soy sauce", + "sea salt" + ] + }, + { + "id": 5739, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "ham", + "roasted red peppers", + "bread dough", + "olive oil", + "green beans", + "pepperoni slices", + "soppressata", + "dried oregano" + ] + }, + { + "id": 31277, + "cuisine": "indian", + "ingredients": [ + "dried lentils", + "pepper", + "zucchini", + "vegetable stock", + "carrots", + "yellow mustard seeds", + "curry powder", + "fenugreek", + "salt", + "tumeric", + "water", + "potatoes", + "garlic", + "onions", + "tomatoes", + "beans", + "olive oil", + "butternut squash", + "cayenne pepper" + ] + }, + { + "id": 22676, + "cuisine": "italian", + "ingredients": [ + "milk", + "oven-ready lasagna noodles", + "cream cheese with chives and onion", + "vegetables", + "parmesan cheese", + "shredded cheddar cheese", + "paprika" + ] + }, + { + "id": 36643, + "cuisine": "filipino", + "ingredients": [ + "water", + "brown sugar", + "coconut milk", + "salt", + "glutinous rice" + ] + }, + { + "id": 19047, + "cuisine": "indian", + "ingredients": [ + "eggplant", + "canola oil", + "chickpea flour", + "rice flour", + "salt", + "water", + "nigella seeds" + ] + }, + { + "id": 47659, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "butter", + "corn starch", + "baking powder", + "all-purpose flour", + "vanilla ice cream", + "buttermilk", + "blackberries" + ] + }, + { + "id": 22245, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "instant yeast", + "water", + "all-purpose flour" + ] + }, + { + "id": 17046, + "cuisine": "french", + "ingredients": [ + "fennel seeds", + "fennel bulb", + "baking potatoes", + "chickpeas", + "water", + "rouille", + "artichokes", + "fresh lemon juice", + "black pepper", + "leeks", + "diced tomatoes", + "garlic cloves", + "saffron threads", + "olive oil", + "dry white wine", + "salt" + ] + }, + { + "id": 47543, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "chili sauce", + "chicken stock", + "cayenne pepper", + "palm sugar", + "ground white pepper", + "fish sauce", + "tamarind paste" + ] + }, + { + "id": 30380, + "cuisine": "italian", + "ingredients": [ + "vine ripened tomatoes", + "ground black pepper", + "balsamic vinegar", + "salt" + ] + }, + { + "id": 27161, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "curry powder", + "jalapeno chilies", + "cracked black pepper", + "garlic cloves", + "smoked paprika", + "red lentils", + "jasmine rice", + "unsalted butter", + "chicken breasts", + "salt", + "carrots", + "celery", + "tumeric", + "fresh ginger", + "golden raisins", + "apples", + "ground cardamom", + "coconut milk", + "chicken stock", + "pepper", + "roma tomatoes", + "cilantro", + "yellow onion", + "thyme", + "cumin" + ] + }, + { + "id": 35700, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "fresh veget", + "tortilla chips", + "pepper jack" + ] + }, + { + "id": 10591, + "cuisine": "greek", + "ingredients": [ + "garbanzo beans", + "lemon juice", + "tahini", + "roasted red peppers", + "dried basil", + "garlic" + ] + }, + { + "id": 486, + "cuisine": "vietnamese", + "ingredients": [ + "peeled fresh ginger", + "cooked rice", + "vegetable oil", + "green onions", + "kosher salt", + "cooked chicken breasts" + ] + }, + { + "id": 14484, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "cajun seasoning", + "salt", + "quinoa", + "diced tomatoes", + "green pepper", + "minced garlic", + "worcestershire sauce", + "hot sauce", + "chicken stock", + "boneless skinless chicken breasts", + "smoked sausage", + "onions" + ] + }, + { + "id": 16149, + "cuisine": "italian", + "ingredients": [ + "water", + "ditalini", + "chopped onion", + "fresh rosemary", + "ground black pepper", + "salt", + "olive oil", + "vegetable broth", + "carrots", + "minced garlic", + "chopped fresh thyme", + "chickpeas" + ] + }, + { + "id": 33827, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sherry", + "salt", + "corn starch", + "fresh ginger", + "red pepper flakes", + "long-grain rice", + "medium shrimp", + "ketchup", + "sesame oil", + "scallions", + "red bell pepper", + "canned low sodium chicken broth", + "cooking oil", + "garlic", + "oyster sauce" + ] + }, + { + "id": 2548, + "cuisine": "chinese", + "ingredients": [ + "sugar pea", + "vegetable oil", + "garlic", + "chicken thighs", + "caster sugar", + "red pepper", + "salt", + "orange", + "ginger", + "rice vinegar", + "soy sauce", + "spring onions", + "cornflour", + "rice" + ] + }, + { + "id": 21881, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "parmigiano reggiano cheese", + "dried pappardelle", + "celery ribs", + "black pepper", + "dry red wine", + "hot water", + "tomato paste", + "olive oil", + "salt", + "red bell pepper", + "dried porcini mushrooms", + "shallots", + "carrots" + ] + }, + { + "id": 41120, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "dried oregano", + "black peppercorns", + "crushed red pepper" + ] + }, + { + "id": 29733, + "cuisine": "italian", + "ingredients": [ + "water", + "butter", + "broccoli rabe" + ] + }, + { + "id": 48717, + "cuisine": "southern_us", + "ingredients": [ + "dijon mustard", + "salt", + "onions", + "garlic powder", + "onion powder", + "dry bread crumbs", + "fennel seeds", + "chicken breast halves", + "hoagie rolls", + "plum tomatoes", + "ground nutmeg", + "crushed red pepper", + "leaf lettuce" + ] + }, + { + "id": 31157, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "all-purpose flour", + "sugar", + "garlic", + "scallions", + "eggs", + "flank steak", + "peanut oil", + "soy sauce", + "salt", + "corn starch" + ] + }, + { + "id": 14763, + "cuisine": "italian", + "ingredients": [ + "whole wheat flour", + "all-purpose flour", + "warm water", + "cooking spray", + "sugar", + "dry yeast", + "olive oil", + "salt" + ] + }, + { + "id": 5837, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "bacon", + "diced tomatoes in juice", + "cooked chicken breasts", + "sugar", + "Tabasco Pepper Sauce", + "all-purpose flour", + "bay leaf", + "fresh spinach", + "vinegar", + "garlic", + "celery", + "reduced sodium chicken broth", + "worcestershire sauce", + "red bell pepper", + "onions" + ] + }, + { + "id": 29208, + "cuisine": "irish", + "ingredients": [ + "crystallized ginger", + "baking powder", + "vanilla extract", + "egg whites", + "buttermilk", + "all-purpose flour", + "large eggs", + "butter", + "salt", + "sugar", + "old-fashioned oats", + "grated carrot", + "orange zest" + ] + }, + { + "id": 40271, + "cuisine": "japanese", + "ingredients": [ + "spinach leaves", + "crab", + "english cucumber", + "smoked salmon", + "soy sauce", + "salmon roe", + "radish sprouts", + "mayonaise", + "asparagus", + "lemon juice", + "avocado", + "ahi", + "enokitake", + "carrots" + ] + }, + { + "id": 2461, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "lime juice", + "garlic", + "rice flour", + "red chili peppers", + "shallots", + "rice vinegar", + "dried wood ear mushrooms", + "sugar", + "bawang goreng", + "salt", + "carrots", + "water", + "ground pork", + "oil" + ] + }, + { + "id": 23361, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "vegetable oil", + "oyster sauce", + "potato starch", + "Shaoxing wine", + "scallions", + "bok choy", + "water", + "garlic", + "carrots", + "soy sauce", + "ramen noodles", + "chinese five-spice powder", + "chicken thighs" + ] + }, + { + "id": 13202, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "garlic", + "ground black pepper", + "broccoli", + "olive oil", + "salt", + "grated parmesan cheese", + "orecchiette" + ] + }, + { + "id": 1657, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "marinara sauce", + "crushed red pepper", + "pepper", + "basil", + "onions", + "mozzarella cheese", + "ricotta cheese", + "penne pasta", + "fennel seeds", + "olive oil", + "garlic" + ] + }, + { + "id": 40092, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "garlic", + "smoked ham hocks", + "cold water", + "olive oil", + "diced tomatoes in juice", + "dried thyme", + "salt", + "bean soup mix", + "chicken stock", + "bay leaves", + "onions" + ] + }, + { + "id": 36037, + "cuisine": "brazilian", + "ingredients": [ + "butter", + "unsweetened cocoa powder", + "sweetened condensed milk" + ] + }, + { + "id": 33125, + "cuisine": "italian", + "ingredients": [ + "pasta", + "green onions", + "salt", + "cabbage", + "pepper", + "vegetable oil", + "chicken fingers", + "soy sauce", + "lime wedges", + "broccoli", + "cauliflower", + "shredded carrots", + "garlic", + "chopped cilantro" + ] + }, + { + "id": 47323, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "dry sherry", + "bass fillets", + "low sodium soy sauce", + "cooking spray", + "dark sesame oil", + "sesame seeds", + "rice vinegar", + "chile paste with garlic", + "peeled fresh ginger", + "garlic cloves" + ] + }, + { + "id": 8069, + "cuisine": "jamaican", + "ingredients": [ + "simple syrup", + "fresh ginger", + "Angostura bitters", + "pineapple juice", + "rum" + ] + }, + { + "id": 45846, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "ground chipotle chile pepper", + "Best Foods® Real Mayonnaise", + "garlic", + "boneless chicken skinless thigh", + "chopped cilantro fresh" + ] + }, + { + "id": 43288, + "cuisine": "italian", + "ingredients": [ + "eggs", + "peperoncino", + "country style bread", + "porcini", + "swiss chard", + "extra-virgin olive oil", + "celery", + "water", + "sea salt", + "chopped parsley", + "tomatoes", + "parmigiano reggiano cheese", + "purple onion" + ] + }, + { + "id": 7105, + "cuisine": "italian", + "ingredients": [ + "parsley flakes", + "cottage cheese", + "dried basil", + "jumbo pasta shells", + "dried minced onion", + "frozen chopped spinach", + "tomato sauce", + "shredded cheddar cheese", + "grated parmesan cheese", + "cream cheese", + "dried oregano", + "eggs", + "pepper", + "part-skim mozzarella cheese", + "sauce", + "onions", + "ground cinnamon", + "sugar", + "bulk italian sausag", + "salt", + "garlic cloves" + ] + }, + { + "id": 34801, + "cuisine": "southern_us", + "ingredients": [ + "water", + "yellow hominy", + "all-purpose flour", + "winter squash", + "vegetable oil", + "cumin seed", + "fresh cilantro", + "chili powder", + "beef broth", + "sugar", + "chopped green bell pepper", + "purple onion", + "garlic cloves" + ] + }, + { + "id": 9061, + "cuisine": "southern_us", + "ingredients": [ + "all-purpose flour", + "ground black pepper", + "garlic salt", + "chicken livers", + "vegetable oil" + ] + }, + { + "id": 26955, + "cuisine": "japanese", + "ingredients": [ + "white pepper", + "mirin", + "vegetable oil", + "dried shiitake mushrooms", + "eggs", + "sesame seeds", + "spring onions", + "pork stock", + "soy sauce", + "miso paste", + "bean paste", + "salt", + "silken tofu", + "udon", + "ginger", + "minced pork" + ] + }, + { + "id": 35416, + "cuisine": "thai", + "ingredients": [ + "water", + "sesame oil", + "cilantro leaves", + "jalapeno chilies", + "garlic", + "asian fish sauce", + "cooking oil", + "red pepper flakes", + "rice vinegar", + "sugar", + "boneless skinless chicken breasts", + "salt" + ] + }, + { + "id": 49415, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "bamboo shoots", + "slivered almonds", + "green pepper", + "chicken breasts", + "fresh ginger root", + "oil" + ] + }, + { + "id": 48547, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "habanero", + "yellow corn meal", + "baking powder", + "all-purpose flour", + "large eggs", + "salt", + "melted butter", + "buttermilk" + ] + }, + { + "id": 31349, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "hot sauce", + "ketchup", + "worcestershire sauce", + "firmly packed brown sugar", + "onion powder", + "browning", + "cider vinegar", + "salt" + ] + }, + { + "id": 19381, + "cuisine": "jamaican", + "ingredients": [ + "white pepper", + "fresh lemon", + "cornish hens", + "bread crumb fresh", + "bananas", + "salt", + "allspice", + "jamaican rum", + "olive oil", + "cinnamon", + "chopped onion", + "ground cloves", + "garlic powder", + "butter", + "poultry seasoning" + ] + }, + { + "id": 41300, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "egg whites", + "salt", + "eggs", + "milk", + "vanilla extract", + "cream of tartar", + "coconut", + "butter", + "white sugar", + "water", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 28003, + "cuisine": "korean", + "ingredients": [ + "water", + "green onions", + "firm tofu", + "sake", + "gochugaru", + "daikon", + "shrimp", + "whitefish", + "anchovies", + "sesame oil", + "garlic cloves", + "soy sauce", + "enokitake", + "Gochujang base", + "greens" + ] + }, + { + "id": 47196, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "dry pasta", + "boneless skinless chicken breast halves", + "white wine", + "olive oil", + "lemon juice", + "pepper", + "fresh ginger root", + "dried red chile peppers", + "soy sauce", + "watercress leaves", + "salt" + ] + }, + { + "id": 10948, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "corn", + "canola oil", + "curry powder", + "halibut", + "granny smith apples", + "fish broth", + "pepper", + "salt" + ] + }, + { + "id": 46090, + "cuisine": "italian", + "ingredients": [ + "pepper", + "butter", + "grated parmesan cheese", + "salt", + "minced garlic", + "2% reduced-fat milk", + "orzo pasta", + "fresh parsley" + ] + }, + { + "id": 42233, + "cuisine": "chinese", + "ingredients": [ + "chicken wings", + "white pepper", + "sesame oil", + "soy sauce", + "flour", + "oil", + "sugar", + "garlic powder", + "salt", + "eggs", + "black pepper", + "Shaoxing wine", + "corn starch" + ] + }, + { + "id": 32185, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "garlic powder", + "diced tomatoes", + "salt", + "celery", + "black pepper", + "onion powder", + "garlic", + "ground white pepper", + "onions", + "celery leaves", + "quick cooking brown rice", + "paprika", + "cayenne pepper", + "cooked shrimp", + "reduced sodium chicken broth", + "cajun seasoning", + "sweet pepper", + "flat leaf parsley", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 9223, + "cuisine": "mexican", + "ingredients": [ + "vegetable shortening", + "cold water", + "masa harina", + "kosher salt" + ] + }, + { + "id": 4048, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "hot pepper", + "canola oil", + "lime", + "garlic", + "kosher salt", + "yellow corn", + "mayonaise", + "chili powder", + "chopped cilantro" + ] + }, + { + "id": 32269, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "minced onion", + "salt", + "allspice", + "hamburger buns", + "ground black pepper", + "sliced cucumber", + "garlic cloves", + "ground cumin", + "fresh leav spinach", + "ground turkey breast", + "green onions", + "feta cheese crumbles", + "sumac", + "zucchini", + "greek style plain yogurt", + "ground lamb" + ] + }, + { + "id": 33853, + "cuisine": "vietnamese", + "ingredients": [ + "oil", + "water", + "rice flour", + "tapioca starch" + ] + }, + { + "id": 38056, + "cuisine": "mexican", + "ingredients": [ + "cherry tomatoes", + "garlic", + "serrano chile", + "ground black pepper", + "salt", + "large shrimp", + "olive oil", + "purple onion", + "dried oregano", + "worcestershire sauce", + "fresh lime juice" + ] + }, + { + "id": 3890, + "cuisine": "indian", + "ingredients": [ + "saffron threads", + "red chili powder", + "olive oil", + "salt", + "cinnamon sticks", + "nutmeg", + "ground cloves", + "butter", + "skinless chicken breasts", + "ginger paste", + "green cardamom pods", + "garlic paste", + "yoghurt", + "yellow onion", + "basmati rice", + "ground cinnamon", + "kewra", + "whipping cream", + "green cardamom", + "ground cumin" + ] + }, + { + "id": 16368, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "kosher salt", + "all-purpose flour", + "canola oil", + "andouille sausage", + "gumbo file", + "diced yellow onion", + "black pepper", + "butter", + "diced celery", + "green bell pepper", + "garlic powder", + "cayenne pepper" + ] + }, + { + "id": 26489, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "cheddar cheese", + "cheese", + "black bean and corn salsa", + "black beans", + "ground beef" + ] + }, + { + "id": 3386, + "cuisine": "greek", + "ingredients": [ + "purple onion", + "chopped parsley", + "olive oil", + "lemon juice", + "cherry tomatoes", + "salt", + "oregano", + "orange bell pepper", + "cucumber" + ] + }, + { + "id": 44492, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "self-rising cornmeal", + "sour cream", + "cream style corn", + "canola oil" + ] + }, + { + "id": 41487, + "cuisine": "chinese", + "ingredients": [ + "cooked rice", + "peanuts", + "garlic", + "chopped cilantro fresh", + "boneless, skinless chicken breast", + "green onions", + "peanut oil", + "fresh ginger", + "crushed red pepper flakes", + "corn starch", + "soy sauce", + "hoisin sauce", + "rice vinegar" + ] + }, + { + "id": 5679, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "bay scallops", + "togarashi", + "baby bok choy", + "ground black pepper", + "sesame oil", + "sugar", + "store bought low sodium chicken stock", + "udon", + "soy sauce", + "mirin", + "vegetable oil" + ] + }, + { + "id": 1971, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "corn", + "parsley", + "garlic", + "onions", + "tumeric", + "boneless chicken breast", + "ground thyme", + "gluten free all purpose flour", + "chicken broth", + "ground pepper", + "butter", + "salt", + "milk", + "baking powder", + "apple cider", + "carrots" + ] + }, + { + "id": 35603, + "cuisine": "spanish", + "ingredients": [ + "canned low sodium chicken broth", + "asparagus", + "garlic", + "onions", + "tumeric", + "artichok heart marin", + "salt", + "frozen peas", + "water", + "cannellini beans", + "rice", + "tomatoes", + "olive oil", + "pimentos", + "flat leaf parsley" + ] + }, + { + "id": 47610, + "cuisine": "chinese", + "ingredients": [ + "lump crab meat", + "corn oil", + "ground white pepper", + "sugar", + "steamed white rice", + "rice vinegar", + "eggs", + "fresh ginger", + "sesame oil", + "petite peas", + "soy sauce", + "green onions", + "garlic cloves" + ] + }, + { + "id": 43298, + "cuisine": "italian", + "ingredients": [ + "eggs", + "garlic powder", + "vegetable oil", + "pepper", + "marinara sauce", + "Italian seasoned breadcrumbs", + "mozzarella cheese", + "grated parmesan cheese", + "salt", + "water", + "chicken breasts", + "spaghetti" + ] + }, + { + "id": 27010, + "cuisine": "french", + "ingredients": [ + "large eggs", + "chopped fresh thyme", + "garlic cloves", + "ground black pepper", + "cooking spray", + "salt", + "shiitake mushroom caps", + "cremini mushrooms", + "reduced fat milk", + "butter", + "flat leaf parsley", + "finely chopped onion", + "yukon gold potatoes", + "all-purpose flour" + ] + }, + { + "id": 8648, + "cuisine": "british", + "ingredients": [ + "mushrooms", + "onions", + "water", + "butter", + "eggs", + "pepperidge farm puff pastry", + "ground black pepper", + "beef tenderloin" + ] + }, + { + "id": 38285, + "cuisine": "mexican", + "ingredients": [ + "jicama", + "sea salt", + "fresh cilantro", + "chili powder" + ] + }, + { + "id": 9878, + "cuisine": "mexican", + "ingredients": [ + "green chilies", + "chicken breasts", + "rotel tomatoes", + "shredded cheese", + "tortilla shells", + "ground cumin" + ] + }, + { + "id": 8372, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "sweet potatoes", + "purple onion", + "fresh lime juice", + "pepper", + "garam masala", + "vegetable broth", + "cayenne pepper", + "coconut sugar", + "quinoa", + "diced tomatoes", + "salt", + "chopped cilantro fresh", + "olive oil", + "jalapeno chilies", + "garlic", + "chickpeas" + ] + }, + { + "id": 28078, + "cuisine": "french", + "ingredients": [ + "sugar", + "fresh raspberries", + "egg yolks", + "fresh mint", + "firmly packed light brown sugar", + "vanilla extract", + "grated orange", + "whipping cream", + "orange liqueur" + ] + }, + { + "id": 13286, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "russet potatoes", + "olive oil", + "green beans", + "minced garlic", + "pecorino romano cheese", + "freshly grated parmesan", + "fresh basil leaves" + ] + }, + { + "id": 36333, + "cuisine": "italian", + "ingredients": [ + "honey", + "vegetable oil", + "all-purpose flour", + "slivered almonds", + "large eggs", + "vanilla extract", + "baking soda", + "anise", + "grated lemon peel", + "sugar", + "baking powder", + "salt" + ] + }, + { + "id": 8357, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "navel oranges", + "polenta", + "large eggs", + "amaretto", + "fresh lemon juice", + "slivered almonds", + "baking powder", + "salt", + "sugar", + "butter", + "lemon rind" + ] + }, + { + "id": 17285, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "coriander seeds", + "cilantro leaves", + "oil", + "cashew nuts", + "curry leaves", + "water", + "capsicum", + "brown cardamom", + "cinnamon sticks", + "shahi jeera", + "clove", + "chicken bones", + "mint leaves", + "green cardamom", + "lemon juice", + "peppercorns", + "nutmeg", + "mace", + "salt", + "green chilies", + "onions", + "cumin" + ] + }, + { + "id": 37042, + "cuisine": "french", + "ingredients": [ + "water", + "grated orange", + "mint sprigs", + "orange", + "sugar", + "fresh lemon juice" + ] + }, + { + "id": 10042, + "cuisine": "southern_us", + "ingredients": [ + "skim milk", + "all-purpose flour", + "baking powder", + "vegetable oil cooking spray", + "salt", + "whole wheat flour", + "margarine" + ] + }, + { + "id": 9473, + "cuisine": "italian", + "ingredients": [ + "saffron threads", + "olive oil", + "crushed red pepper", + "vidalia onion", + "dry white wine", + "garlic cloves", + "arborio rice", + "fresh parmesan cheese", + "salt", + "fat free less sodium chicken broth", + "baby spinach", + "shrimp" + ] + }, + { + "id": 25350, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "bean curd skins", + "salt", + "pork", + "water chestnuts", + "cucumber", + "sugar", + "tapioca flour", + "chinese five-spice powder", + "chicken bouillon granules", + "white pepper", + "garlic", + "onions" + ] + }, + { + "id": 20996, + "cuisine": "italian", + "ingredients": [ + "water", + "bread flour", + "fine sea salt", + "extra-virgin olive oil", + "golden caster sugar", + "yeast" + ] + }, + { + "id": 49326, + "cuisine": "indian", + "ingredients": [ + "vegetable broth", + "lentils", + "garam masala", + "salad oil", + "salt" + ] + }, + { + "id": 21162, + "cuisine": "french", + "ingredients": [ + "chicken broth", + "pearl onions", + "dry red wine", + "thyme", + "cremini mushrooms", + "olive oil", + "salt", + "bay leaf", + "red potato", + "turkey bacon", + "garlic", + "celery", + "black pepper", + "flour", + "carrots", + "chicken thighs" + ] + }, + { + "id": 39702, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "garlic", + "eggplant", + "ground beef", + "lasagna noodles", + "onions", + "crushed tomatoes", + "fresh mushrooms" + ] + }, + { + "id": 41810, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "orange liqueur", + "kalamata", + "grated orange", + "serrano peppers", + "pimento stuffed green olives", + "lime juice", + "tequila" + ] + }, + { + "id": 16633, + "cuisine": "italian", + "ingredients": [ + "finely chopped fresh parsley", + "shredded mozzarella cheese", + "vegetable oil", + "grated parmesan cheese", + "boneless skinless chicken breast halves", + "pasta sauce", + "frozen bread dough" + ] + }, + { + "id": 17823, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large eggs", + "unsweetened cocoa powder", + "mascarpone", + "heavy cream", + "marsala wine", + "chocolate shavings", + "brewed coffee", + "savoiardi" + ] + }, + { + "id": 17223, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "radishes", + "sesame oil", + "peanut oil", + "chopped cilantro", + "fresh basil", + "water", + "peeled fresh ginger", + "canned beef broth", + "carrots", + "chopped fresh mint", + "black peppercorns", + "lemongrass", + "green onions", + "star anise", + "beansprouts", + "serrano chilies", + "fresh udon", + "oxtails", + "lime wedges", + "garlic cloves", + "onions" + ] + }, + { + "id": 40282, + "cuisine": "southern_us", + "ingredients": [ + "garlic", + "olive oil", + "smoked ham hocks", + "collard greens", + "chicken base", + "red pepper flakes" + ] + }, + { + "id": 47854, + "cuisine": "french", + "ingredients": [ + "swordfish steaks", + "extra-virgin olive oil", + "chicken stock", + "lemon wedge", + "salt", + "artichoke hearts", + "garlic", + "white wine", + "kalamata", + "flour for dusting" + ] + }, + { + "id": 23156, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "carrots", + "lettuce", + "cooking oil", + "Gochujang base", + "sugar", + "chicken breasts", + "oyster sauce", + "peanuts", + "salt", + "corn starch" + ] + }, + { + "id": 14448, + "cuisine": "japanese", + "ingredients": [ + "potato starch", + "sugar", + "vegetable oil", + "sake", + "black pepper", + "salt", + "chicken wings", + "soy sauce", + "garlic", + "ginger juice", + "mirin", + "black vinegar" + ] + }, + { + "id": 28934, + "cuisine": "cajun_creole", + "ingredients": [ + "fat free less sodium chicken broth", + "fresh thyme", + "salt", + "red kidnei beans, rins and drain", + "ground black pepper", + "chopped celery", + "long grain brown rice", + "olive oil", + "ground red pepper", + "garlic cloves", + "boneless chicken skinless thigh", + "chopped green bell pepper", + "purple onion", + "sliced green onions" + ] + }, + { + "id": 27558, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "salt", + "sugar", + "sweet rice", + "mango", + "sesame seeds" + ] + }, + { + "id": 26340, + "cuisine": "chinese", + "ingredients": [ + "ground black pepper", + "white rice", + "medium shrimp", + "soy sauce", + "sesame oil", + "scallions", + "chinese rice wine", + "corn oil", + "gingerroot", + "chicken broth", + "large eggs", + "salt", + "frozen peas" + ] + }, + { + "id": 30339, + "cuisine": "italian", + "ingredients": [ + "milk", + "unsalted butter", + "salt", + "honey", + "golden raisins", + "candied fruit", + "active dry yeast", + "flour", + "all-purpose flour", + "sugar", + "large egg yolks", + "vanilla extract" + ] + }, + { + "id": 2874, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "unsalted butter", + "veal shanks", + "celery ribs", + "dried thyme", + "balsamic vinegar", + "fresh lemon juice", + "water", + "fresh shiitake mushrooms", + "fresh parsley leaves", + "dry vermouth", + "olive oil", + "portabello mushroom", + "onions" + ] + }, + { + "id": 22203, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "roasted peanuts", + "ground turmeric", + "curry leaves", + "cooking oil", + "rice", + "mustard seeds", + "chana dal", + "cilantro leaves", + "lemon juice", + "grated coconut", + "urad dal", + "green chilies", + "onions" + ] + }, + { + "id": 18406, + "cuisine": "irish", + "ingredients": [ + "baking powder", + "salt", + "baking soda", + "buttermilk", + "whole wheat flour", + "butter", + "all-purpose flour", + "large eggs", + "currant" + ] + }, + { + "id": 5776, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped green bell pepper", + "ground red pepper", + "paprika", + "fresh oregano", + "mushrooms", + "fresh thyme leaves", + "salt", + "garlic cloves", + "cooked rice", + "green onions", + "vegetable oil", + "all-purpose flour", + "fresh parsley", + "bay leaves", + "cooked chicken", + "chopped celery", + "chopped onion" + ] + }, + { + "id": 42341, + "cuisine": "mexican", + "ingredients": [ + "low-fat sour cream", + "jalapeno chilies", + "diced tomatoes", + "dried oregano", + "refried beans", + "green onions", + "baked tortilla chips", + "fresh cilantro", + "cooking spray", + "salt", + "shredded Monterey Jack cheese", + "ground round", + "roasted red peppers", + "chili powder", + "garlic cloves" + ] + }, + { + "id": 49631, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "baking powder", + "unsalted butter", + "all-purpose flour", + "fresh chives", + "buttermilk" + ] + }, + { + "id": 37874, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "zucchini", + "garlic cloves", + "peeled tomatoes", + "red wine vinegar", + "red bell pepper", + "chorizo", + "large eggs", + "fresh parsley leaves", + "sugar", + "olive oil", + "salt", + "onions" + ] + }, + { + "id": 9289, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "red bell pepper", + "minced garlic", + "purple onion", + "fresh lime juice", + "green bell pepper", + "vegetable oil", + "sour cream", + "ground pepper", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 19306, + "cuisine": "cajun_creole", + "ingredients": [ + "salt", + "pepper", + "squash", + "tomatoes", + "creole seasoning", + "bacon slices", + "onions" + ] + }, + { + "id": 9055, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic", + "hoisin sauce", + "honey", + "chinese five-spice powder", + "spareribs", + "Shaoxing wine" + ] + }, + { + "id": 19737, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "large eggs", + "1% low-fat milk", + "large egg whites", + "butter", + "spaghetti", + "pepper", + "cooking spray", + "salt", + "fresh parmesan cheese", + "large garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 32653, + "cuisine": "southern_us", + "ingredients": [ + "dijon mustard", + "cooked shrimp", + "creole mustard", + "light mayonnaise", + "green onions", + "fresh parsley", + "prepared horseradish", + "lemon juice" + ] + }, + { + "id": 6515, + "cuisine": "italian", + "ingredients": [ + "capers", + "dry white wine", + "skinless chicken breasts", + "large egg whites", + "lemon", + "olive oil spray", + "reduced sodium chicken broth", + "whipped butter", + "fresh parsley leaves", + "ground black pepper", + "dry bread crumbs" + ] + }, + { + "id": 47712, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cherry tomatoes", + "sea salt", + "cayenne pepper", + "corn", + "ground pepper", + "cheese", + "cooked quinoa", + "fresh cilantro", + "olive oil", + "extra-virgin olive oil", + "scallions", + "lime", + "chili powder", + "garlic" + ] + }, + { + "id": 35536, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "baking powder", + "sweetened condensed milk", + "evaporated milk", + "all-purpose flour", + "corn kernels", + "salt", + "ground cinnamon", + "unsalted butter", + "white sugar" + ] + }, + { + "id": 11449, + "cuisine": "chinese", + "ingredients": [ + "water", + "crushed red pepper flakes", + "soy sauce", + "green onions", + "medium shrimp", + "Splenda Brown Sugar Blend", + "sesame seeds", + "corn starch", + "minced garlic", + "sesame oil" + ] + }, + { + "id": 11064, + "cuisine": "british", + "ingredients": [ + "eggs", + "flour", + "milk", + "currant", + "cream of tartar", + "baking soda", + "salt", + "caster sugar", + "butter" + ] + }, + { + "id": 30936, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "fresh basil", + "balsamic vinegar", + "tomatoes", + "cooked chicken", + "pepper", + "fresh mozzarella" + ] + }, + { + "id": 20361, + "cuisine": "cajun_creole", + "ingredients": [ + "passion fruit juice", + "fresh lime juice", + "dark rum", + "light rum" + ] + }, + { + "id": 48506, + "cuisine": "thai", + "ingredients": [ + "chinese celery", + "thai chile", + "sugar", + "peanuts", + "onions", + "fish sauce", + "lime", + "dried shrimp", + "fried garlic", + "cilantro", + "noodles" + ] + }, + { + "id": 20405, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "arbol chile", + "kosher salt", + "bloody mary mix", + "hot sauce", + "lime juice", + "tequila" + ] + }, + { + "id": 33641, + "cuisine": "chinese", + "ingredients": [ + "white onion", + "garlic", + "carrots", + "eggs", + "green onions", + "rice", + "frozen peas", + "pepper", + "salt", + "toasted sesame oil", + "soy sauce", + "butter", + "oyster sauce" + ] + }, + { + "id": 26423, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "sesame oil", + "garlic", + "toasted sesame oil", + "toasted sesame seeds", + "minced ginger", + "crushed red pepper flakes", + "freshly ground pepper", + "ground beef", + "black vinegar", + "szechwan peppercorns", + "ginger", + "oil", + "wood ear mushrooms", + "sliced green onions", + "sugar", + "wonton wrappers", + "salt", + "chopped cilantro", + "noodles" + ] + }, + { + "id": 27970, + "cuisine": "southern_us", + "ingredients": [ + "dark corn syrup", + "melted butter", + "salt", + "pie crust", + "granulated sugar", + "eggs", + "chopped pecans" + ] + }, + { + "id": 45705, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "milk", + "salt", + "dried fruit", + "cinnamon", + "sugar", + "flour", + "lemon juice", + "water", + "butter" + ] + }, + { + "id": 35479, + "cuisine": "spanish", + "ingredients": [ + "whole almonds", + "unsalted butter", + "vanilla extract", + "dried pear", + "pitted date", + "light corn syrup", + "salt", + "sugar", + "egg yolks", + "pear nectar", + "dark brown sugar", + "roasted cashews", + "pinenuts", + "whipping cream", + "all-purpose flour" + ] + }, + { + "id": 26699, + "cuisine": "vietnamese", + "ingredients": [ + "light brown sugar", + "reduced sodium soy sauce", + "peanut oil", + "bone in chicken thighs", + "kosher salt", + "hot chili paste", + "rice flour", + "fish sauce", + "shallots", + "garlic cloves", + "ground black pepper", + "ginger", + "fresh lime juice" + ] + }, + { + "id": 27240, + "cuisine": "italian", + "ingredients": [ + "pasta", + "olive oil", + "garlic", + "pinenuts", + "balsamic vinegar", + "fresh oregano", + "capers", + "feta cheese", + "crushed red pepper", + "cherry tomatoes", + "kalamata" + ] + }, + { + "id": 39970, + "cuisine": "cajun_creole", + "ingredients": [ + "chile powder", + "corn kernels", + "long-grain rice", + "smoked paprika", + "cumin", + "crushed tomatoes", + "yellow onion", + "thyme", + "oregano", + "andouille sausage", + "vegetable oil", + "shrimp", + "rib", + "chicken stock", + "fresh thyme", + "garlic cloves", + "red bell pepper" + ] + }, + { + "id": 29860, + "cuisine": "mexican", + "ingredients": [ + "grated parmesan cheese", + "shredded cheddar cheese", + "dry bread crumbs", + "eggs", + "heavy cream", + "unsalted butter", + "chayotes" + ] + }, + { + "id": 22565, + "cuisine": "vietnamese", + "ingredients": [ + "unsalted butter", + "scallions", + "salt", + "asian fish sauce", + "sugar", + "ear of corn", + "thai chile", + "dried shrimp" + ] + }, + { + "id": 42227, + "cuisine": "chinese", + "ingredients": [ + "jasmine rice", + "peeled fresh ginger", + "juice", + "hoisin sauce", + "peanut oil", + "fresh chives", + "pork tenderloin", + "grapefruit", + "shiitake", + "roasted peanuts", + "bok choy" + ] + }, + { + "id": 6691, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "grated parmesan cheese", + "ground pork", + "mortadella", + "flat leaf parsley", + "chicken stock", + "unsalted butter", + "basil", + "grated nutmeg", + "carrots", + "pancetta", + "tomatoes", + "dry white wine", + "extra-virgin olive oil", + "freshly ground pepper", + "onions", + "celery ribs", + "ground chuck", + "heavy cream", + "salt", + "garlic cloves", + "spaghetti" + ] + }, + { + "id": 10263, + "cuisine": "thai", + "ingredients": [ + "jumbo shrimp", + "minced garlic", + "hoisin sauce", + "rice vinegar", + "neutral oil", + "kosher salt", + "lime", + "cracked black pepper", + "hothouse cucumber", + "unsweetened coconut milk", + "sugar", + "lemongrass", + "shallots", + "hot water", + "fish sauce", + "pepper", + "fresh ginger", + "salt" + ] + }, + { + "id": 28953, + "cuisine": "filipino", + "ingredients": [ + "mayonaise", + "ground black pepper", + "dried basil", + "butter", + "tilapia fillets", + "onion powder", + "celery salt", + "parmesan cheese", + "fresh lemon juice" + ] + }, + { + "id": 38835, + "cuisine": "cajun_creole", + "ingredients": [ + "Red Gold® diced tomatoes", + "Gourmet Garden garlic paste", + "Gourmet Garden Oregano", + "salt", + "large shrimp", + "Johnsonville Andouille", + "bay leaves", + "onions", + "cider vinegar", + "Pompeian Canola Oil and Extra Virgin Olive Oil", + "ground cumin" + ] + }, + { + "id": 35457, + "cuisine": "italian", + "ingredients": [ + "salad dressing", + "garlic powder", + "boneless skinless chicken breast halves", + "salt" + ] + }, + { + "id": 26548, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "olive oil", + "vegetable broth", + "corn tortillas", + "white onion", + "chili powder", + "cilantro leaves", + "ground cumin", + "mayonaise", + "ground black pepper", + "salt", + "adobo sauce", + "cauliflower", + "lime juice", + "large garlic cloves", + "brown lentils" + ] + }, + { + "id": 49317, + "cuisine": "russian", + "ingredients": [ + "egg noodles", + "sour cream", + "green bell pepper", + "cooking spray", + "beef consomme", + "condensed french onion soup", + "flank steak" + ] + }, + { + "id": 5824, + "cuisine": "southern_us", + "ingredients": [ + "unflavored gelatin", + "fresh mint", + "sparkling sugar", + "bourbon whiskey", + "sugar", + "cold water", + "mint sprigs" + ] + }, + { + "id": 16572, + "cuisine": "filipino", + "ingredients": [ + "sweet potatoes", + "coconut milk", + "jackfruit", + "tapioca", + "sugar", + "taro", + "bananas", + "salt" + ] + }, + { + "id": 20282, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "sesame oil", + "fish fillets", + "ground black pepper", + "alcohol", + "fresh ginger", + "sea salt", + "fresh chives", + "bean paste" + ] + }, + { + "id": 20775, + "cuisine": "italian", + "ingredients": [ + "chocolate cake mix", + "white sugar", + "frozen whipped topping", + "vanilla extract", + "eggs", + "chocolate instant pudding", + "milk", + "part-skim ricotta cheese" + ] + }, + { + "id": 19506, + "cuisine": "mexican", + "ingredients": [ + "chili", + "lettuce leaves", + "fat skimmed chicken broth", + "ground pepper", + "garlic", + "onions", + "corn kernels", + "amaranth", + "salad oil", + "lime juice", + "quinoa", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 23146, + "cuisine": "southern_us", + "ingredients": [ + "pork", + "italian salad dressing", + "collard greens", + "beef broth", + "dry mustard", + "sugar", + "garlic cloves" + ] + }, + { + "id": 14710, + "cuisine": "mexican", + "ingredients": [ + "water", + "baking powder", + "sour cream", + "masa harina", + "corn husks", + "salt", + "tamale filling", + "chili", + "garlic", + "lard", + "dough", + "pork loin", + "beef broth", + "onions" + ] + }, + { + "id": 41128, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "salt", + "pepper", + "jicama", + "fresh cilantro", + "purple onion", + "tomatoes", + "boneless chicken breast" + ] + }, + { + "id": 6673, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless skinless chicken breasts", + "creole seasoning", + "celery", + "hot pepper sauce", + "green pepper", + "smoked turkey sausage", + "reduced sodium chicken broth", + "diced tomatoes", + "garlic cloves", + "brown rice", + "chopped onion", + "bay leaf" + ] + }, + { + "id": 13562, + "cuisine": "italian", + "ingredients": [ + "rosemary", + "basil", + "kosher salt", + "cherry tomatoes", + "garlic cloves", + "red potato", + "chicken sausage", + "extra-virgin olive oil", + "sweet onion", + "ground black pepper" + ] + }, + { + "id": 41098, + "cuisine": "french", + "ingredients": [ + "white chocolate", + "heavy cream", + "rum", + "peanut butter", + "semisweet chocolate", + "simple syrup", + "cocoa", + "sponge cake" + ] + }, + { + "id": 27431, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "salt", + "brown sugar", + "vinegar", + "oil", + "water", + "liver", + "bread crumbs", + "garlic", + "onions" + ] + }, + { + "id": 1630, + "cuisine": "southern_us", + "ingredients": [ + "golden raisins", + "chopped onion", + "bacon slices", + "broccoli slaw", + "salt", + "light mayonnaise" + ] + }, + { + "id": 14363, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "ground cumin", + "salsa verde", + "salt", + "jalapeno chilies", + "garlic cloves", + "green onions", + "chuck" + ] + }, + { + "id": 4560, + "cuisine": "vietnamese", + "ingredients": [ + "apples", + "allspice", + "Saigon cinnamon", + "ground ginger" + ] + }, + { + "id": 48699, + "cuisine": "spanish", + "ingredients": [ + "mayonaise", + "crushed tomatoes", + "ground black pepper", + "garlic", + "baguette", + "olive oil", + "roasted red peppers", + "onions", + "bottled clam juice", + "dried thyme", + "cayenne", + "salt", + "chorizo", + "sea scallops", + "dry white wine", + "large shrimp" + ] + }, + { + "id": 16483, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "scallions", + "canola oil", + "low sodium soy sauce", + "low-sodium fat-free chicken broth", + "garlic chili sauce", + "ramen noodles", + "garlic cloves", + "black pepper", + "baby spinach", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 41545, + "cuisine": "italian", + "ingredients": [ + "green olives", + "golden raisins", + "onions", + "swordfish steaks", + "all-purpose flour", + "olive oil", + "fresh mint", + "capers", + "white wine vinegar" + ] + }, + { + "id": 48256, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "lime", + "chopped cilantro fresh", + "boneless skinless chicken breast halves", + "taco seasoning mix" + ] + }, + { + "id": 25183, + "cuisine": "chinese", + "ingredients": [ + "peanuts", + "garlic", + "beansprouts", + "chicken stock", + "dry sherry", + "corn starch", + "onions", + "water chestnuts", + "chow mein noodles", + "celery", + "soy sauce", + "dry red wine", + "white mushrooms", + "chicken" + ] + }, + { + "id": 49329, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "half & half", + "apple cider", + "carrots", + "onions", + "yellow corn meal", + "olive oil", + "butter", + "all-purpose flour", + "dumplings", + "pepper", + "baking powder", + "salt", + "thyme", + "chicken", + "tumeric", + "low sodium chicken broth", + "heavy cream", + "diced celery", + "fresh parsley" + ] + }, + { + "id": 26686, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "honey", + "butter", + "cardamom", + "clove", + "red chili powder", + "yoghurt", + "ginger", + "masala", + "fenugreek leaves", + "garam masala", + "lemon", + "cinnamon sticks", + "tomato paste", + "cream", + "boneless chicken", + "garlic" + ] + }, + { + "id": 23461, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "vegetable oil", + "sugar", + "flank steak", + "low sodium soy sauce", + "green onions", + "garlic cloves", + "minced ginger", + "sesame oil" + ] + }, + { + "id": 13760, + "cuisine": "french", + "ingredients": [ + "water", + "butter", + "salt", + "bread crumbs", + "mushrooms", + "gruyere cheese", + "lemon juice", + "flour", + "heavy cream", + "freshly ground pepper", + "scallops", + "dry white wine", + "bouquet garni", + "onions" + ] + }, + { + "id": 41189, + "cuisine": "greek", + "ingredients": [ + "dijon mustard", + "kosher salt", + "spring onions", + "large eggs", + "low-fat greek yogurt", + "chives" + ] + }, + { + "id": 12975, + "cuisine": "italian", + "ingredients": [ + "garlic", + "ground black pepper", + "Swanson Chicken Broth", + "long grain white rice", + "grated parmesan cheese" + ] + }, + { + "id": 42065, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "self rising flour", + "oil", + "white pepper", + "salt", + "chicken legs", + "vegetable oil", + "chicken gravy", + "water", + "bacon fat" + ] + }, + { + "id": 20799, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "salt", + "avocado", + "lime wedges", + "chopped cilantro fresh", + "tomatoes", + "purple onion", + "jalapeno chilies", + "fresh lime juice" + ] + }, + { + "id": 7942, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "garlic cloves", + "extra-virgin olive oil", + "balsamic vinegar", + "fresh lemon juice", + "radicchio", + "ricotta" + ] + }, + { + "id": 40592, + "cuisine": "japanese", + "ingredients": [ + "salmon fillets", + "sesame oil", + "brown sugar", + "sesame seeds", + "salad dressing", + "water", + "seasoned rice wine vinegar", + "sake", + "miso paste" + ] + }, + { + "id": 45338, + "cuisine": "moroccan", + "ingredients": [ + "orange", + "salt", + "powdered sugar", + "fresh orange juice", + "radishes", + "fresh cilantro", + "orange flower water" + ] + }, + { + "id": 14555, + "cuisine": "moroccan", + "ingredients": [ + "canola", + "yeast", + "granulated sugar", + "canola oil", + "sugar", + "all purpose unbleached flour", + "warm water", + "salt" + ] + }, + { + "id": 29450, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "onion powder", + "chili sauce", + "mayonaise", + "ground black pepper", + "lemon", + "garlic powder", + "Tabasco Pepper Sauce", + "ketchup", + "dijon mustard", + "worcestershire sauce" + ] + }, + { + "id": 32133, + "cuisine": "russian", + "ingredients": [ + "shredded cheddar cheese", + "mashed potatoes", + "salt", + "pepper" + ] + }, + { + "id": 3812, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "lime juice", + "baking powder", + "vanilla extract", + "white sugar", + "white rum", + "mixed dried fruit", + "butter", + "all-purpose flour", + "eggs", + "lime", + "almond extract", + "salt", + "dark molasses", + "ground nutmeg", + "red wine", + "ground allspice" + ] + }, + { + "id": 18546, + "cuisine": "mexican", + "ingredients": [ + "ice cubes", + "tequila", + "fresh orange juice", + "mango", + "Cointreau Liqueur", + "key lime juice", + "simple syrup" + ] + }, + { + "id": 33327, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "kasuri methi", + "onions", + "cauliflower", + "chili powder", + "green chilies", + "ground turmeric", + "coriander powder", + "salt", + "cashew nuts", + "tomatoes", + "ginger", + "oil" + ] + }, + { + "id": 14996, + "cuisine": "vietnamese", + "ingredients": [ + "tomatoes", + "sweet onion", + "vegetable oil", + "cilantro leaves", + "cucumber", + "sugar", + "ground black pepper", + "ground pork", + "scallions", + "fresh basil leaves", + "fish sauce", + "leaves", + "diced tomatoes", + "leaf lettuce", + "cooked white rice", + "lime juice", + "Sriracha", + "garlic", + "hot water" + ] + }, + { + "id": 47649, + "cuisine": "japanese", + "ingredients": [ + "unsalted butter", + "scallions", + "sweet potatoes", + "miso paste" + ] + }, + { + "id": 10704, + "cuisine": "moroccan", + "ingredients": [ + "finely chopped fresh parsley", + "garlic cloves", + "sugar", + "cayenne pepper", + "carrots", + "ground cinnamon", + "extra-virgin olive oil", + "lemon juice", + "ground black pepper", + "orange flower water", + "ground cumin" + ] + }, + { + "id": 22287, + "cuisine": "italian", + "ingredients": [ + "water", + "lean ground beef", + "pasta sauce", + "lasagna noodles", + "shredded mozzarella cheese", + "eggs", + "ground black pepper", + "salt", + "cottage cheese", + "grated parmesan cheese", + "dried parsley" + ] + }, + { + "id": 68, + "cuisine": "japanese", + "ingredients": [ + "hard-boiled egg", + "vegetable oil", + "salt", + "bamboo shoots", + "caster sugar", + "ramen noodles", + "shells", + "pork shoulder", + "white pepper", + "sesame oil", + "garlic", + "ginger root", + "chicken", + "sake", + "spring onions", + "shoyu", + "carrots", + "nori" + ] + }, + { + "id": 21246, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "truffle oil", + "tomato basil sauce", + "olive oil", + "portabello mushroom", + "carrots", + "kosher salt", + "fresh mozzarella", + "yellow onion", + "ground black pepper", + "garlic", + "rigatoni" + ] + }, + { + "id": 38711, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "black olives", + "chicken bones", + "flour tortillas", + "fresh parsley", + "cooking oil", + "salt", + "feta cheese", + "red wine vinegar", + "plum tomatoes" + ] + }, + { + "id": 9147, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "carrots", + "coarse salt", + "large eggs", + "semolina flour", + "all-purpose flour" + ] + }, + { + "id": 1604, + "cuisine": "french", + "ingredients": [ + "shredded coconut", + "heavy cream", + "semisweet chocolate", + "unsalted butter", + "coffee" + ] + }, + { + "id": 9886, + "cuisine": "indian", + "ingredients": [ + "moong dal", + "green chilies", + "chillies", + "shallots", + "mustard seeds", + "fresh coriander", + "cumin seed", + "ghee", + "tumeric", + "garlic", + "ginger root" + ] + }, + { + "id": 1890, + "cuisine": "korean", + "ingredients": [ + "chicken wings", + "honey", + "sesame oil", + "pepper", + "asian pear", + "soy sauce", + "sesame seeds", + "McCormick Ground Ginger", + "minced garlic", + "green onions" + ] + }, + { + "id": 42402, + "cuisine": "mexican", + "ingredients": [ + "black peppercorns", + "collard leaves", + "garlic cloves", + "chicken legs", + "achiote", + "cumin seed", + "olive oil", + "salt", + "dried oregano", + "whole allspice", + "fresh orange juice", + "fresh lime juice" + ] + }, + { + "id": 25713, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "salt", + "eggs", + "chinese chives", + "cooking oil" + ] + }, + { + "id": 32169, + "cuisine": "indian", + "ingredients": [ + "water", + "chilli paste", + "oil", + "saffron", + "cooked rice", + "meat", + "curds", + "lemon juice", + "mint leaves", + "salt", + "ground cardamom", + "garlic paste", + "cinnamon", + "cumin seed", + "clarified butter" + ] + }, + { + "id": 5379, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "paprika", + "file powder", + "dark brown sugar", + "ground black pepper", + "dry mustard", + "turkey", + "peanut oil" + ] + }, + { + "id": 26634, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "ginger", + "sake", + "mirin", + "sesame seeds", + "sugar", + "boneless skinless chicken breasts" + ] + }, + { + "id": 31172, + "cuisine": "cajun_creole", + "ingredients": [ + "scallion greens", + "cayenne", + "salt", + "reduced sodium chicken broth", + "large garlic cloves", + "smoked turkey drumstick", + "green bell pepper", + "vegetable oil", + "onions", + "celery ribs", + "water", + "diced tomatoes", + "long grain white rice" + ] + }, + { + "id": 22907, + "cuisine": "spanish", + "ingredients": [ + "green cabbage", + "radishes", + "extra-virgin olive oil", + "red bell pepper", + "black pepper", + "jicama", + "fresh lemon juice", + "sliced green onions", + "sugar", + "jalapeno chilies", + "garlic cloves", + "chopped cilantro fresh", + "water", + "sea salt", + "carrots" + ] + }, + { + "id": 30624, + "cuisine": "french", + "ingredients": [ + "radishes", + "fine sea salt", + "butter" + ] + }, + { + "id": 39927, + "cuisine": "vietnamese", + "ingredients": [ + "heavy cream", + "sweetened condensed milk", + "egg yolks", + "coffee beans", + "salt", + "cinnamon", + "cardamom pods" + ] + }, + { + "id": 26707, + "cuisine": "greek", + "ingredients": [ + "baby lima beans", + "chopped onion", + "fresh dill", + "savory", + "low salt chicken broth", + "pancetta", + "olive oil", + "fresh fava bean", + "fennel seeds", + "fennel bulb", + "fresh lemon juice" + ] + }, + { + "id": 14621, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "raisins", + "crabmeat", + "olive oil", + "garlic", + "onions", + "pepper", + "peas", + "red bell pepper", + "tomatoes", + "potatoes", + "salt" + ] + }, + { + "id": 45650, + "cuisine": "italian", + "ingredients": [ + "pesto", + "grated parmesan cheese", + "low salt chicken broth", + "tomatoes", + "olive oil", + "carrots", + "celery ribs", + "fresh leav spinach", + "cannellini beans", + "onions", + "red potato", + "zucchini", + "green beans" + ] + }, + { + "id": 17634, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "cheese", + "rotelle", + "sour cream", + "black beans", + "spices", + "green onions", + "tortilla chips" + ] + }, + { + "id": 38208, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "water", + "parmesan cheese", + "balsamic vinegar", + "salt", + "green beans", + "pepper", + "olive oil", + "flour", + "red pepper flakes", + "lemon juice", + "onions", + "brown sugar", + "milk", + "grated parmesan cheese", + "butter", + "garlic cloves", + "red bell pepper", + "tomatoes", + "minced garlic", + "garbanzo beans", + "baking powder", + "paprika", + "shrimp" + ] + }, + { + "id": 27159, + "cuisine": "jamaican", + "ingredients": [ + "white onion", + "habanero pepper", + "berries", + "red snapper", + "water", + "vegetable oil", + "white vinegar", + "minced garlic", + "fresh thyme leaves", + "carrots", + "brown sugar", + "ground black pepper", + "salt" + ] + }, + { + "id": 15402, + "cuisine": "korean", + "ingredients": [ + "white distilled vinegar", + "toasted sesame seeds", + "salt", + "sesame oil", + "sugar", + "mung bean sprouts" + ] + }, + { + "id": 17481, + "cuisine": "mexican", + "ingredients": [ + "baking soda", + "half & half", + "salt", + "bittersweet chocolate", + "unsalted butter", + "cinnamon", + "all-purpose flour", + "unsweetened cocoa powder", + "granulated sugar", + "buttermilk", + "chopped pecans", + "water", + "large eggs", + "vanilla", + "confectioners sugar" + ] + }, + { + "id": 23787, + "cuisine": "british", + "ingredients": [ + "heavy cream", + "confectioners sugar", + "Baileys Irish Cream Liqueur", + "strawberries" + ] + }, + { + "id": 12069, + "cuisine": "french", + "ingredients": [ + "milk", + "dried tart cherries", + "salt", + "kirsch", + "sugar", + "egg yolks", + "vanilla extract", + "ground almonds", + "large egg whites", + "butter", + "all-purpose flour", + "ground cinnamon", + "unsalted butter", + "whipping cream", + "cherry preserves" + ] + }, + { + "id": 37160, + "cuisine": "indian", + "ingredients": [ + "clove", + "kosher salt", + "coriander seeds", + "garlic", + "fresh lemon juice", + "ground turmeric", + "granulated garlic", + "olive oil", + "boneless skinless chicken breasts", + "fenugreek seeds", + "cinnamon sticks", + "ground ginger", + "tandoori spices", + "cardamon", + "grated nutmeg", + "whole milk greek yogurt", + "chiles", + "fresh ginger", + "paprika", + "cumin seed", + "peppercorns" + ] + }, + { + "id": 47595, + "cuisine": "southern_us", + "ingredients": [ + "country ham", + "vegetable oil", + "boiling water", + "half & half", + "softened butter", + "sugar", + "salt", + "baking powder", + "white cornmeal" + ] + }, + { + "id": 5934, + "cuisine": "italian", + "ingredients": [ + "pasta", + "kosher salt", + "bell pepper", + "fresh parsley", + "capers", + "sherry vinegar", + "purple onion", + "marjoram", + "fresh basil", + "olive oil", + "fresh thyme leaves", + "chèvre", + "spinach", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 24294, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "paprika", + "garlic cloves", + "dried oregano", + "red kidney beans", + "ground black pepper", + "hot sauce", + "long grain brown rice", + "celery ribs", + "olive oil", + "vegetable broth", + "sausages", + "ground cumin", + "green bell pepper", + "diced tomatoes", + "scallions", + "onions" + ] + }, + { + "id": 10302, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "flour tortillas", + "coarse salt", + "diced tomatoes", + "corn starch", + "pepper", + "cooked chicken", + "butter", + "hot sauce", + "sour cream", + "black pepper", + "guacamole", + "baby spinach", + "salt", + "ground cayenne pepper", + "chicken broth", + "shredded extra sharp cheddar cheese", + "chili powder", + "shredded lettuce", + "cream cheese" + ] + }, + { + "id": 31836, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "cayenne pepper", + "olive oil", + "bbq seasoning", + "bbq sauce", + "sweet onion", + "colby jack cheese", + "enchilada sauce", + "tortillas", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 44218, + "cuisine": "moroccan", + "ingredients": [ + "turnips", + "parsnips", + "carrots", + "ground turmeric", + "ground cinnamon", + "cilantro", + "onions", + "ground ginger", + "dried apricot", + "ground cayenne pepper", + "ground cumin", + "prunes", + "vegetable broth", + "dried parsley" + ] + }, + { + "id": 42990, + "cuisine": "french", + "ingredients": [ + "unbaked pie crusts", + "gruyere cheese", + "eggs", + "butter", + "chopped ham", + "ground nutmeg", + "onions", + "milk", + "salt" + ] + }, + { + "id": 4421, + "cuisine": "japanese", + "ingredients": [ + "white rice", + "imitation crab meat", + "avocado", + "rice vinegar", + "white sugar", + "salt", + "cucumber", + "gari", + "seaweed" + ] + }, + { + "id": 5108, + "cuisine": "irish", + "ingredients": [ + "sugar", + "kiwi fruits", + "lime slices", + "grate lime peel", + "white chocolate", + "strawberries", + "whipping cream", + "fresh lime juice" + ] + }, + { + "id": 41684, + "cuisine": "spanish", + "ingredients": [ + "orange", + "fresh lime juice", + "curaçao", + "sparkling wine", + "ice cubes", + "tequila" + ] + }, + { + "id": 4228, + "cuisine": "brazilian", + "ingredients": [ + "fresh ginger", + "diced tomatoes", + "cilantro leaves", + "ground cayenne pepper", + "boneless skinless chicken breasts", + "light coconut milk", + "ground coriander", + "ground cumin", + "low sodium chicken broth", + "extra-virgin olive oil", + "yellow onion", + "ground turmeric", + "unsweetened shredded dried coconut", + "chile pepper", + "garlic", + "fresh lemon juice" + ] + }, + { + "id": 34397, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "vegetable oil", + "cilantro leaves", + "crema mexican", + "chicken meat", + "iceberg lettuce", + "water", + "tomatillos", + "corn tortillas", + "chicken bouillon granules", + "serrano peppers", + "garlic" + ] + }, + { + "id": 19593, + "cuisine": "irish", + "ingredients": [ + "lower sodium chicken broth", + "cooking spray", + "all-purpose flour", + "cod", + "large eggs", + "butter", + "ground black pepper", + "lemon wedge", + "frozen peas", + "white bread", + "mint leaves", + "salt" + ] + }, + { + "id": 8220, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "chicken cutlets", + "anchovy fillets", + "capers", + "salt", + "garlic cloves", + "green olives", + "crushed red pepper", + "fresh onion", + "olive oil", + "fresh oregano" + ] + }, + { + "id": 779, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "chopped onion", + "baguette", + "extra-virgin olive oil", + "flat leaf parsley", + "fish fillets", + "dry white wine", + "garlic cloves", + "water", + "chopped celery" + ] + }, + { + "id": 18715, + "cuisine": "mexican", + "ingredients": [ + "sweet potatoes", + "salt", + "heavy cream", + "unsalted butter", + "ancho chile pepper" + ] + }, + { + "id": 44792, + "cuisine": "irish", + "ingredients": [ + "whole milk", + "grated nutmeg", + "ground black pepper", + "heavy cream", + "rutabaga", + "yukon gold potatoes", + "garlic cloves", + "kosher salt", + "mackerel fillets" + ] + }, + { + "id": 7478, + "cuisine": "russian", + "ingredients": [ + "pasta", + "Philadelphia Cooking Creme", + "beef stew meat", + "mushrooms", + "yellow onion" + ] + }, + { + "id": 25614, + "cuisine": "greek", + "ingredients": [ + "fresh thyme leaves", + "garlic cloves", + "parsley leaves", + "extra-virgin olive oil", + "capers", + "red wine vinegar", + "onions", + "eggplant", + "pita loaves", + "fresh basil leaves" + ] + }, + { + "id": 49331, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "lime", + "yellow corn", + "pepper", + "lemon", + "diced red onions", + "chopped cilantro fresh" + ] + }, + { + "id": 40391, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "milk", + "American cheese", + "cumin", + "pickled jalapenos", + "juice", + "water" + ] + }, + { + "id": 8656, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "salt", + "plain low fat greek yogurt", + "garlic cloves", + "ground black pepper", + "english cucumber", + "red wine vinegar" + ] + }, + { + "id": 2549, + "cuisine": "indian", + "ingredients": [ + "asafoetida", + "salt", + "cooking oil", + "pickles", + "mustard seeds", + "lemon" + ] + }, + { + "id": 16759, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "honey", + "lamb shoulder", + "green beans", + "saffron", + "tumeric", + "sweet potatoes", + "ground coriander", + "cashew nuts", + "tomatoes", + "garam masala", + "salt", + "onions", + "pepper", + "cinnamon", + "garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 9922, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "chopped cilantro", + "hominy", + "pinto beans", + "oregano", + "tomatoes", + "enchilada sauce", + "onions", + "paprika", + "bay leaf", + "cabbage" + ] + }, + { + "id": 47963, + "cuisine": "french", + "ingredients": [ + "unsweetened shredded dried coconut", + "butter", + "heavy whipping cream", + "sugar", + "salt", + "powdered sugar", + "strawberry preserves", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 35317, + "cuisine": "korean", + "ingredients": [ + "chile powder", + "soy bean paste", + "salt", + "pepper", + "green onions", + "eggs", + "sesame seeds", + "ground beef", + "tofu", + "water", + "vegetable oil" + ] + }, + { + "id": 5616, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "onions", + "pasta sauce", + "garlic", + "dough", + "red pepper flakes", + "italian seasoning", + "mozzarella cheese", + "ground beef" + ] + }, + { + "id": 13157, + "cuisine": "korean", + "ingredients": [ + "honey", + "salt", + "chicken wings", + "pomegranate molasses", + "roasted salted cashews", + "umeboshi plum vinegar", + "fresh ginger", + "Gochujang base", + "pepper", + "paprika", + "toasted sesame seeds" + ] + }, + { + "id": 26481, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "salt", + "green onions", + "olive oil", + "ham", + "yukon gold potatoes" + ] + }, + { + "id": 38378, + "cuisine": "french", + "ingredients": [ + "chicken broth", + "leeks", + "bay leaf", + "dried thyme", + "salt", + "marjoram", + "pepper", + "butter", + "onions", + "potatoes", + "heavy whipping cream" + ] + }, + { + "id": 30153, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "cumin", + "garlic cloves", + "green pepper", + "beef roast", + "chili powder", + "onions" + ] + }, + { + "id": 475, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "salt", + "japanese cucumber", + "sugar", + "rice vinegar" + ] + }, + { + "id": 15969, + "cuisine": "filipino", + "ingredients": [ + "tomatoes", + "eggplant", + "garlic", + "pork butt", + "pepper", + "shrimp paste", + "oil", + "sugar", + "vinegar", + "salt", + "water", + "thai chile", + "onions" + ] + }, + { + "id": 16765, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "kosher salt", + "sweet corn", + "whole milk", + "sugar", + "heavy cream" + ] + }, + { + "id": 107, + "cuisine": "vietnamese", + "ingredients": [ + "white vinegar", + "black pepper", + "shallots", + "long-grain rice", + "fish sauce", + "fat free less sodium chicken broth", + "loin pork roast", + "garlic cloves", + "warm water", + "green onions", + "dark sesame oil", + "chopped cilantro fresh", + "sugar", + "peeled fresh ginger", + "salt", + "beansprouts" + ] + }, + { + "id": 31603, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "ground black pepper", + "red wine vinegar", + "red bell pepper", + "ground cumin", + "capers", + "jack", + "chipotle", + "garlic", + "onions", + "green bell pepper", + "olive oil", + "vegetable stock", + "long-grain rice", + "cashew nuts", + "kosher salt", + "poblano peppers", + "raisins", + "chopped cilantro" + ] + }, + { + "id": 48122, + "cuisine": "british", + "ingredients": [ + "instant yeast", + "sugar", + "butter", + "milk", + "salt", + "flour" + ] + }, + { + "id": 36673, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "cilantro leaves", + "fresh tomatoes", + "extra-virgin olive oil", + "fresh tuna steaks", + "fresh basil", + "green onions", + "asian fish sauce", + "honey", + "fresh lime juice" + ] + }, + { + "id": 2126, + "cuisine": "greek", + "ingredients": [ + "cayenne", + "celery", + "curry powder", + "cooked chicken", + "red grape", + "fresh parsley", + "low-fat greek yogurt", + "salt" + ] + }, + { + "id": 45370, + "cuisine": "jamaican", + "ingredients": [ + "habanero pepper", + "scallions", + "onions", + "olive oil", + "garlic", + "thyme", + "green bell pepper", + "ackee", + "codfish", + "ground black pepper", + "salt", + "red bell pepper" + ] + }, + { + "id": 10797, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "sweet onion", + "dry white wine", + "organic vegetable broth", + "grits", + "andouille sausage", + "ground black pepper", + "diced tomatoes", + "shrimp", + "kosher salt", + "green onions", + "fresh oregano", + "red bell pepper", + "green bell pepper", + "olive oil", + "cajun seasoning", + "garlic cloves" + ] + }, + { + "id": 4666, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "beer", + "olive oil", + "all-purpose flour", + "baby eggplants", + "fresh dill", + "salt", + "greek yogurt", + "yoghurt", + "grated lemon zest", + "dried oregano" + ] + }, + { + "id": 36313, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "unsalted butter", + "onions", + "olive oil", + "dry white wine", + "water", + "parmigiano reggiano cheese", + "arborio rice", + "asparagus", + "fresh shiitake mushrooms" + ] + }, + { + "id": 999, + "cuisine": "italian", + "ingredients": [ + "skim milk", + "all-purpose flour", + "ham", + "garden peas", + "cream cheese", + "grated parmesan cheese", + "margarine", + "fettucine", + "garlic", + "freshly ground pepper" + ] + }, + { + "id": 19354, + "cuisine": "southern_us", + "ingredients": [ + "fresh basil", + "cheese", + "large eggs", + "whole milk", + "corn mix muffin", + "frozen corn kernels" + ] + }, + { + "id": 4837, + "cuisine": "mexican", + "ingredients": [ + "pepper jack", + "corn tortilla chips", + "boneless skinless chicken breasts", + "green onions", + "refried beans", + "sour cream" + ] + }, + { + "id": 35040, + "cuisine": "italian", + "ingredients": [ + "sugar", + "unsalted butter", + "salt", + "black pepper", + "dry white wine", + "chopped walnuts", + "ground cloves", + "lemon zest", + "all-purpose flour", + "ground cinnamon", + "honey", + "beaten eggs", + "orange zest" + ] + }, + { + "id": 48161, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "gnocchi", + "clams", + "olive oil", + "crushed tomatoes", + "fresh basil", + "chopped onion" + ] + }, + { + "id": 1744, + "cuisine": "filipino", + "ingredients": [ + "evaporated milk", + "sweetened condensed milk", + "eggs", + "white sugar", + "cream cheese", + "vanilla extract" + ] + }, + { + "id": 29723, + "cuisine": "mexican", + "ingredients": [ + "picante sauce", + "sour cream", + "black olives", + "seasoning salt", + "avocado", + "shrimp" + ] + }, + { + "id": 27746, + "cuisine": "thai", + "ingredients": [ + "olive oil", + "light coconut milk", + "boneless skinless chicken breast halves", + "sliced carrots", + "red bell pepper", + "zucchini", + "corn starch", + "chopped cilantro fresh", + "Thai red curry paste", + "onions" + ] + }, + { + "id": 17853, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "jack cheese", + "cooked chicken", + "chicken broth", + "flour tortillas", + "sour cream", + "diced green chilies", + "cilantro leaves" + ] + }, + { + "id": 32432, + "cuisine": "mexican", + "ingredients": [ + "ranch dressing", + "black beans", + "rice", + "colby jack cheese", + "tortillas", + "chicken" + ] + }, + { + "id": 33620, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "green onions", + "crushed garlic", + "boneless skinless chicken breast halves", + "hot pepper sauce", + "sesame oil", + "lemon juice", + "sesame seeds", + "rice wine", + "fresh mushrooms", + "soy sauce", + "green bell pepper, slice", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 25670, + "cuisine": "italian", + "ingredients": [ + "snappers", + "garlic", + "olive oil", + "dry bread crumbs", + "lemon wedge", + "rosemary", + "salt" + ] + }, + { + "id": 25048, + "cuisine": "mexican", + "ingredients": [ + "colby jack cheese", + "red enchilada sauce", + "low sodium chicken broth", + "garlic", + "rotini", + "low sodium taco seasoning", + "extra-virgin olive oil", + "turkey meat", + "green onions", + "black olives", + "onions" + ] + }, + { + "id": 15404, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "plum tomatoes", + "crumbled goat cheese", + "russet potatoes", + "onions", + "pepper", + "sliced chorizo", + "pimenton", + "sugar", + "large eggs", + "bay leaf" + ] + }, + { + "id": 37434, + "cuisine": "italian", + "ingredients": [ + "eggs", + "vegetable oil", + "granulated sugar", + "salt", + "milk", + "lemon", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 37719, + "cuisine": "french", + "ingredients": [ + "onion soup mix", + "nonstick spray", + "fresh mushrooms", + "onions", + "dry red wine", + "fresh parsley", + "mashed potatoes", + "carrots", + "chicken thighs" + ] + }, + { + "id": 25307, + "cuisine": "indian", + "ingredients": [ + "salt", + "vegetable oil", + "ground turmeric", + "asparagus", + "cumin seed", + "garlic" + ] + }, + { + "id": 6511, + "cuisine": "greek", + "ingredients": [ + "garlic powder", + "lemon slices", + "fresh lemon juice", + "fat free less sodium chicken broth", + "chicken breast halves", + "margarine", + "dried oregano", + "parsley flakes", + "cooking spray", + "grated lemon zest", + "couscous", + "pepper", + "salt", + "fresh oregano" + ] + }, + { + "id": 6563, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "olive oil", + "crushed red pepper flakes", + "black pepper", + "diced tomatoes", + "dried oregano", + "green bell pepper", + "onion powder", + "boneless skinless chicken breast halves", + "chicken broth", + "potatoes", + "salt" + ] + }, + { + "id": 1403, + "cuisine": "brazilian", + "ingredients": [ + "egg whites", + "shredded coconut", + "butter", + "granulated sugar", + "egg yolks" + ] + }, + { + "id": 32359, + "cuisine": "italian", + "ingredients": [ + "french baguette", + "mayonaise", + "garlic", + "grated parmesan cheese", + "basil pesto sauce", + "salt" + ] + }, + { + "id": 21346, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "spices", + "carrots", + "ground cinnamon", + "sweet potatoes", + "yellow onion", + "frozen artichoke hearts", + "preserved lemon", + "yukon gold potatoes", + "lemon juice", + "turnips", + "olive oil", + "vegetable broth", + "hot water" + ] + }, + { + "id": 3472, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "sour cream", + "water", + "sweet mini bells", + "Old El Paso Taco Seasoning Mix", + "minced garlic", + "cheese", + "ground beef", + "lime juice", + "sauce" + ] + }, + { + "id": 37312, + "cuisine": "chinese", + "ingredients": [ + "shiitake", + "vegetable oil", + "garlic", + "beansprouts", + "soy sauce", + "jalapeno chilies", + "ginger", + "oyster sauce", + "char siu", + "curry powder", + "green onions", + "rice vermicelli", + "shrimp", + "chicken broth", + "granulated sugar", + "hot chili paste", + "yellow onion", + "celery" + ] + }, + { + "id": 7967, + "cuisine": "thai", + "ingredients": [ + "mussels", + "lite coconut milk", + "garlic", + "fish sauce", + "watercress", + "scallions", + "fresh basil", + "lime", + "peanut oil", + "brown sugar", + "Thai red curry paste" + ] + }, + { + "id": 16950, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "salt", + "yellow corn meal", + "half & half", + "sweet corn", + "sugar", + "all-purpose flour", + "melted butter", + "baking powder" + ] + }, + { + "id": 14428, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "fennel", + "raisins", + "ground turmeric", + "ground ginger", + "garbanzo beans", + "russet potatoes", + "onions", + "sliced almonds", + "zucchini", + "low salt chicken broth", + "ground cumin", + "saffron threads", + "olive oil", + "sliced carrots", + "cinnamon sticks" + ] + }, + { + "id": 44062, + "cuisine": "mexican", + "ingredients": [ + "bread ciabatta", + "chili powder", + "garlic cloves", + "corn", + "vegetable oil", + "crema mexicana", + "ground black pepper", + "cilantro leaves", + "kosher salt", + "lime wedges", + "feta cheese crumbles" + ] + }, + { + "id": 27473, + "cuisine": "thai", + "ingredients": [ + "water", + "shredded carrots", + "cucumber", + "sliced green onions", + "sugar", + "zucchini", + "chinese cabbage", + "chopped cilantro fresh", + "fish sauce", + "radishes", + "yellow bell pepper", + "fresh lime juice", + "chile paste with garlic", + "yellow squash", + "jalapeno chilies", + "red bell pepper" + ] + }, + { + "id": 23149, + "cuisine": "japanese", + "ingredients": [ + "vodka", + "all-purpose flour", + "vegetable oil", + "corn starch", + "large eggs", + "shrimp", + "sea salt", + "soda water" + ] + }, + { + "id": 16645, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "potatoes", + "Italian cheese blend", + "olive oil", + "leeks", + "large egg whites", + "french bread", + "chopped parsley", + "pepper", + "large eggs", + "salt" + ] + }, + { + "id": 28916, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "tomatoes with juice", + "chili", + "celery", + "corn", + "chopped onion", + "taco sauce", + "egg noodles", + "ground beef" + ] + }, + { + "id": 22554, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "tortillas", + "salt", + "mango", + "lime", + "jalapeno chilies", + "cucumber", + "pepper", + "diced red onions", + "tilapia", + "olive oil", + "cilantro", + "crumbled cheese" + ] + }, + { + "id": 3668, + "cuisine": "thai", + "ingredients": [ + "reduced sodium chicken broth", + "lemongrass", + "cilantro stems", + "ground pork", + "minced garlic", + "thai basil", + "butter", + "chopped onion", + "minced ginger", + "large eggs", + "sticky rice", + "kosher salt", + "sourdough bread", + "green onions", + "thai chile" + ] + }, + { + "id": 43530, + "cuisine": "french", + "ingredients": [ + "water", + "potatoes", + "salt", + "green beans", + "fresh basil leaves", + "tomatoes", + "freshly grated parmesan", + "butternut squash", + "elbow macaroni", + "bay leaf", + "celery ribs", + "olive oil", + "leeks", + "white beans", + "thyme sprigs", + "parsley sprigs", + "zucchini", + "large garlic cloves", + "carrots", + "onions" + ] + }, + { + "id": 48032, + "cuisine": "brazilian", + "ingredients": [ + "mini m&ms", + "chocolate sprinkles", + "chocolate drink", + "butter", + "coconut", + "sweetened condensed milk" + ] + }, + { + "id": 6090, + "cuisine": "french", + "ingredients": [ + "salt", + "butter", + "celery root", + "heavy cream", + "black pepper", + "boiling potatoes" + ] + }, + { + "id": 31181, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "salt", + "greek yogurt", + "diced tomatoes", + "chickpeas", + "chopped cilantro fresh", + "sweet potatoes", + "yellow onion", + "Madras curry powder", + "cauliflower florets", + "organic vegetable broth" + ] + }, + { + "id": 20419, + "cuisine": "russian", + "ingredients": [ + "shortening", + "finely chopped onion", + "ice water", + "dill", + "fresh dill", + "water", + "dry white wine", + "salt", + "lemon juice", + "eggs", + "pepper", + "mushrooms", + "red pepper", + "long-grain rice", + "salmon fillets", + "milk", + "butter", + "all-purpose flour" + ] + }, + { + "id": 46613, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "black pepper", + "jalapeno chilies", + "all-purpose flour", + "romaine lettuce", + "lime", + "salt", + "fresh lime juice", + "eggs", + "white onion", + "vegetable oil", + "canned chipotles", + "pork cutlets", + "mayonaise", + "bolillo", + "plain breadcrumbs" + ] + }, + { + "id": 34533, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "jalapeno chilies", + "salt", + "red bell pepper", + "fresh ginger", + "dry sherry", + "peanut oil", + "water", + "sesame oil", + "chili sauce", + "extra large shrimp", + "garlic", + "scallions" + ] + }, + { + "id": 13138, + "cuisine": "italian", + "ingredients": [ + "egg roll wrappers", + "sliced mushrooms", + "minced garlic", + "oil", + "marinara sauce", + "string cheese", + "sausages" + ] + }, + { + "id": 45399, + "cuisine": "french", + "ingredients": [ + "ground ginger", + "guinea hens", + "rosemary leaves", + "rendered duck fat", + "kosher salt", + "bay leaves", + "pitted prunes", + "black peppercorns", + "honey", + "crushed red pepper", + "boiling water", + "light brown sugar", + "cider vinegar", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 9495, + "cuisine": "filipino", + "ingredients": [ + "cooking oil", + "coconut milk", + "granulated white sugar", + "greater yam" + ] + }, + { + "id": 10718, + "cuisine": "filipino", + "ingredients": [ + "warm water", + "salt", + "active dry yeast", + "plain breadcrumbs", + "granulated sugar", + "bread flour", + "vegetable shortening" + ] + }, + { + "id": 4346, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "salt", + "horseradish", + "yukon gold potatoes", + "cantal", + "black pepper", + "heavy cream", + "whole milk", + "garlic cloves" + ] + }, + { + "id": 44753, + "cuisine": "indian", + "ingredients": [ + "pepper", + "green chilies", + "plum tomatoes", + "garlic paste", + "salt", + "onions", + "ginger paste", + "tomato paste", + "garam masala", + "ghee", + "masala", + "baby spinach leaves", + "cilantro leaves", + "chicken thighs", + "ground cumin" + ] + }, + { + "id": 12240, + "cuisine": "italian", + "ingredients": [ + "prawns", + "risotto rice", + "white wine", + "lemon", + "frozen peas", + "red chili peppers", + "butter", + "onions", + "olive oil", + "fish stock" + ] + }, + { + "id": 31235, + "cuisine": "jamaican", + "ingredients": [ + "lime", + "red pepper flakes", + "onions", + "black pepper", + "canned chopped tomatoes", + "garlic cloves", + "white vinegar", + "dried thyme", + "loin", + "kosher salt", + "scotch bonnet chile", + "coconut milk" + ] + }, + { + "id": 46062, + "cuisine": "italian", + "ingredients": [ + "finely chopped onion", + "salt", + "fresh parmesan cheese", + "dry white wine", + "arborio rice", + "low sodium chicken broth", + "red bell pepper", + "olive oil", + "mild Italian sausage" + ] + }, + { + "id": 48258, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "Shaoxing wine", + "old ginger", + "thai basil", + "chicken drumsticks", + "baking soda", + "garlic", + "sweet soy sauce", + "dark sesame oil" + ] + }, + { + "id": 27277, + "cuisine": "indian", + "ingredients": [ + "sugar", + "canned tomatoes", + "garlic cloves", + "cooked rice", + "vegetable oil", + "lamb", + "ground lamb", + "fennel seeds", + "fresh ginger", + "curry", + "coriander", + "fresh tomatoes", + "peas", + "green chilies" + ] + }, + { + "id": 20367, + "cuisine": "cajun_creole", + "ingredients": [ + "large eggs", + "chopped fresh thyme", + "ground allspice", + "corn bread", + "andouille sausage", + "shallots", + "cayenne pepper", + "red bell pepper", + "bay leaves", + "butter", + "rubbed sage", + "chopped garlic", + "green onions", + "chopped celery", + "low salt chicken broth" + ] + }, + { + "id": 34365, + "cuisine": "japanese", + "ingredients": [ + "water", + "food colouring", + "coconut milk", + "potato starch", + "glutinous rice flour", + "sugar" + ] + }, + { + "id": 33904, + "cuisine": "italian", + "ingredients": [ + "pepper", + "parmesan cheese", + "diced tomatoes", + "tomato sauce", + "olive oil", + "lean ground beef", + "salt", + "water", + "lasagna noodles", + "garlic", + "cottage cheese", + "part-skim mozzarella cheese", + "red pepper flakes", + "onions" + ] + }, + { + "id": 34411, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cooking spray", + "all-purpose flour", + "fresh parmesan cheese", + "baking powder", + "cheddar cheese", + "large eggs", + "salt", + "fat free milk", + "ground red pepper" + ] + }, + { + "id": 30090, + "cuisine": "french", + "ingredients": [ + "olive oil", + "chicken thighs", + "mashed potatoes", + "garlic cloves", + "water", + "flat leaf parsley", + "celery ribs", + "dry white wine" + ] + }, + { + "id": 46078, + "cuisine": "korean", + "ingredients": [ + "spinach", + "water", + "beef rib short", + "ground beef", + "soy sauce", + "fried eggs", + "carrots", + "brown sugar", + "minced ginger", + "scallions", + "sandwich steak", + "beans", + "garlic", + "cucumber" + ] + }, + { + "id": 19300, + "cuisine": "thai", + "ingredients": [ + "sugar", + "vegetable oil", + "cucumber", + "chili pepper", + "garlic", + "chopped cilantro", + "fish sauce", + "minced ginger", + "purple onion", + "seedless red grapes", + "baby spinach leaves", + "sirloin steak", + "fresh lime juice" + ] + }, + { + "id": 41428, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "balsamic vinegar", + "green olives", + "olive oil", + "garlic cloves", + "pitted date", + "tawny port", + "chopped cilantro fresh", + "orange", + "cornish game hens", + "ground cumin" + ] + }, + { + "id": 1545, + "cuisine": "southern_us", + "ingredients": [ + "chopped green bell pepper", + "vegetable oil", + "sugar", + "large eggs", + "diced onions", + "self rising flour", + "self-rising cornmeal", + "milk", + "jalapeno chilies" + ] + }, + { + "id": 40118, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "grits", + "eggs", + "oil", + "tomatoes", + "okra", + "black pepper", + "onions" + ] + }, + { + "id": 11860, + "cuisine": "italian", + "ingredients": [ + "smoked salmon", + "cheese tortellini", + "bay leaf", + "ground nutmeg", + "fresh mushrooms", + "fresh asparagus", + "milk", + "all-purpose flour", + "onions", + "clove", + "butter", + "red bell pepper" + ] + }, + { + "id": 36617, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "chicken breasts", + "salt", + "onions", + "pepper", + "butter", + "long-grain rice", + "reduced sodium chicken broth", + "cajun seasoning", + "cayenne pepper", + "pork sausages", + "celery ribs", + "bell pepper", + "diced tomatoes", + "cooked shrimp" + ] + }, + { + "id": 10903, + "cuisine": "french", + "ingredients": [ + "vegetable oil spray", + "sugar", + "frozen pastry puff sheets", + "water", + "fuji apples", + "unsalted butter" + ] + }, + { + "id": 22078, + "cuisine": "italian", + "ingredients": [ + "milk", + "white sugar", + "unflavored gelatin", + "vanilla extract", + "whipping cream", + "water", + "strawberries" + ] + }, + { + "id": 4709, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vegetable shortening", + "chopped pecans", + "eggs", + "bourbon whiskey", + "vanilla extract", + "orange zest", + "unsalted butter", + "light corn syrup", + "wheat flour", + "pecan halves", + "ice water", + "salt" + ] + }, + { + "id": 18237, + "cuisine": "jamaican", + "ingredients": [ + "coffee liqueur", + "milk", + "liqueur", + "flavored syrup", + "crushed ice", + "bananas" + ] + }, + { + "id": 4347, + "cuisine": "french", + "ingredients": [ + "milk", + "trout fillet", + "lemon juice", + "parsley sprigs", + "olive oil", + "salt", + "red bell pepper", + "pepper", + "worcestershire sauce", + "hot sauce", + "fresh parsley", + "sliced almonds", + "butter", + "all-purpose flour", + "couscous" + ] + }, + { + "id": 24023, + "cuisine": "french", + "ingredients": [ + "fat free less sodium chicken broth", + "herbes de provence", + "cannellini beans", + "ground turkey breast", + "fresh spinach", + "diced tomatoes with garlic and onion" + ] + }, + { + "id": 2673, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "scallions", + "vegetable oil", + "chorizo sausage", + "flour", + "Piment d'Espelette", + "eggs", + "salt" + ] + }, + { + "id": 2270, + "cuisine": "indian", + "ingredients": [ + "active dry yeast", + "bread flour", + "kosher salt", + "salted butter", + "sugar", + "olive oil", + "water", + "greek style plain yogurt" + ] + }, + { + "id": 38128, + "cuisine": "french", + "ingredients": [ + "sliced tomatoes", + "cream cheese", + "pork sausages", + "shredded cheddar cheese", + "fresh parsley", + "diced onions", + "sour cream", + "butter", + "marjoram" + ] + }, + { + "id": 46448, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "salt", + "baking soda", + "buttermilk", + "chopped parsley", + "melted butter", + "butter", + "all-purpose flour", + "granulated sugar", + "extra-virgin olive oil" + ] + }, + { + "id": 38749, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "queso fresco", + "garlic cloves", + "cooked chicken", + "crema", + "chopped cilantro fresh", + "water", + "tomatillos", + "corn tortillas", + "vegetable oil", + "salt", + "serrano chile" + ] + }, + { + "id": 37819, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "corn flour", + "milk", + "sugar", + "cinnamon sticks", + "flour" + ] + }, + { + "id": 22328, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "vegetable oil", + "chicken pieces", + "fish sauce", + "shallots", + "green beans", + "caramel sauce", + "jasmine rice", + "chile pepper", + "sliced mushrooms", + "palm sugar", + "ginger", + "chopped cilantro" + ] + }, + { + "id": 2636, + "cuisine": "cajun_creole", + "ingredients": [ + "parsley sprigs", + "butter", + "monterey jack", + "arborio rice", + "parmesan cheese", + "garlic cloves", + "crawfish", + "creole seasoning", + "chicken broth", + "chile pepper", + "onions" + ] + }, + { + "id": 31583, + "cuisine": "brazilian", + "ingredients": [ + "coconut oil", + "butternut squash", + "coconut milk", + "ground ginger", + "lime", + "rice", + "pepper", + "salt", + "onions", + "brown sugar", + "chili paste", + "chopped parsley" + ] + }, + { + "id": 32553, + "cuisine": "chinese", + "ingredients": [ + "water", + "oil", + "mayonaise", + "egg whites", + "shrimp", + "walnut halves", + "honey", + "lemon juice", + "sugar", + "condensed milk", + "corn starch" + ] + }, + { + "id": 39042, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "sandwich buns", + "lemon juice", + "black pepper", + "cooking spray", + "bulgur", + "raita", + "ground cinnamon", + "sun-dried tomatoes", + "salt", + "ground lamb", + "fat free less sodium chicken broth", + "lettuce leaves", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 36338, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "olive oil", + "garlic", + "white onion", + "potatoes", + "salt", + "white wine", + "beef bouillon", + "beef stew meat", + "green bell pepper", + "water", + "achiote powder", + "ground cumin" + ] + }, + { + "id": 39985, + "cuisine": "french", + "ingredients": [ + "pepper", + "radishes", + "extra-virgin olive oil", + "tuna packed in olive oil", + "eggs", + "olive oil", + "shallots", + "purple onion", + "baby potatoes", + "romaine lettuce", + "artichoke hearts", + "kalamata", + "salt", + "cherry tomatoes", + "chives", + "white wine vinegar", + "green beans" + ] + }, + { + "id": 22451, + "cuisine": "italian", + "ingredients": [ + "fresh dill", + "goat cheese", + "whole grain mustard", + "pinenuts", + "fettucine", + "asparagus" + ] + }, + { + "id": 21380, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "garlic cloves", + "onions", + "yellow mustard seeds", + "chicken stock cubes", + "cinnamon sticks", + "ground cumin", + "coconut oil", + "garam masala", + "greek yogurt", + "coriander", + "sultana", + "ground coriander", + "chicken pieces" + ] + }, + { + "id": 32397, + "cuisine": "french", + "ingredients": [ + "sugar", + "grapefruit juice", + "salt", + "fresh lemon juice", + "fresh lime juice", + "pepper", + "dry red wine", + "lemon rind", + "low salt chicken broth", + "water", + "white wine vinegar", + "grapefruit", + "orange rind", + "lime rind", + "fresh orange juice", + "margarine", + "corn starch", + "chicken thighs" + ] + }, + { + "id": 34718, + "cuisine": "chinese", + "ingredients": [ + "pork", + "honey", + "scallions", + "onions", + "eggs", + "white pepper", + "sesame oil", + "hot water", + "soy sauce", + "Shaoxing wine", + "oil", + "dark soy sauce", + "jasmine rice", + "salt", + "beansprouts" + ] + }, + { + "id": 41166, + "cuisine": "southern_us", + "ingredients": [ + "quickcooking grits", + "shredded sharp cheddar cheese", + "warm water", + "white cheddar cheese", + "bread flour", + "sugar", + "bacon", + "salt", + "milk", + "rapid rise yeast" + ] + }, + { + "id": 24700, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "sesame oil", + "soy sauce", + "green onions", + "garlic cloves", + "brown sugar", + "sesame seeds", + "red pepper flakes", + "water", + "szechwan peppercorns", + "beef ribs" + ] + }, + { + "id": 40203, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "vanilla extract", + "allspice", + "basil leaves", + "fresh lime juice", + "sugar", + "plums" + ] + }, + { + "id": 7996, + "cuisine": "indian", + "ingredients": [ + "chilli paste", + "cilantro leaves", + "mustard seeds", + "ravva", + "urad dal", + "oil", + "ghee", + "soda", + "salt", + "carrots", + "onions", + "rolled oats", + "green peas", + "curds", + "dal" + ] + }, + { + "id": 13442, + "cuisine": "greek", + "ingredients": [ + "burgers", + "feta cheese", + "purple onion", + "garlic cloves", + "dried oregano", + "tomatoes", + "pepper", + "red pepper", + "stuffing mix", + "feta cheese crumbles", + "frozen chopped spinach", + "whole wheat hamburger buns", + "nonfat greek yogurt", + "salt", + "lemon juice", + "eggs", + "olive oil", + "garlic", + "dried dill", + "cucumber" + ] + }, + { + "id": 40735, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "arugula", + "purple onion", + "brine-cured black olives", + "extra-virgin olive oil", + "plum tomatoes" + ] + }, + { + "id": 31627, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "green onions", + "celery", + "fresh ginger root", + "salt", + "green bell pepper", + "vegetable oil", + "chopped cooked ham", + "mushrooms", + "beansprouts" + ] + }, + { + "id": 19559, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "hot sauce", + "stock", + "worcestershire sauce", + "Crystal Farms Butter", + "Crystal Farms® Shredded Cheddar Cheese", + "old fashioned stone ground grits", + "kosher salt", + "heavy cream" + ] + }, + { + "id": 14765, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "sea bass fillets", + "orange juice", + "green onions", + "garlic", + "grated orange", + "jalapeno chilies", + "navel oranges", + "allspice berries", + "vegetable oil", + "salt" + ] + }, + { + "id": 38870, + "cuisine": "japanese", + "ingredients": [ + "olive oil", + "grate lime peel", + "salmon fillets", + "lime wedges", + "red cabbage", + "fresh lime juice", + "sugar pea", + "peas" + ] + }, + { + "id": 2255, + "cuisine": "korean", + "ingredients": [ + "fresh spinach", + "sesame seeds", + "vegetable oil", + "salt", + "soy sauce", + "sesame oil", + "top sirloin", + "glass noodles", + "sugar", + "green onions", + "napa cabbage", + "bamboo shoots", + "black pepper", + "sliced carrots", + "garlic" + ] + }, + { + "id": 33912, + "cuisine": "french", + "ingredients": [ + "eggs", + "romaine lettuce leaves", + "white tuna", + "grated parmesan cheese", + "black pepper", + "caesar salad dressing" + ] + }, + { + "id": 32445, + "cuisine": "korean", + "ingredients": [ + "scallions", + "vegetable oil", + "kimchi", + "kosher salt", + "rice flour", + "all-purpose flour" + ] + }, + { + "id": 29383, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "jalapeno chilies", + "salt", + "lime juice", + "vegetable oil", + "cumin", + "avocado", + "pitas", + "purple onion", + "pepper", + "chips", + "chopped cilantro fresh" + ] + }, + { + "id": 30769, + "cuisine": "italian", + "ingredients": [ + "light brown sugar", + "eggplant", + "golden raisins", + "salt", + "pitted kalamata olives", + "fennel bulb", + "diced tomatoes", + "garlic cloves", + "capers", + "ground black pepper", + "balsamic vinegar", + "chopped onion", + "olive oil", + "zucchini", + "chopped celery" + ] + }, + { + "id": 38871, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "large garlic cloves", + "dark brown sugar", + "hoisin sauce", + "cayenne pepper", + "honey", + "dry sherry", + "chinese five-spice powder", + "sesame oil", + "duck" + ] + }, + { + "id": 44528, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "grated parmesan cheese", + "sun-dried tomatoes in oil", + "swiss chard", + "ricotta", + "olive oil", + "salt", + "fresh basil", + "ground black pepper", + "pizza doughs" + ] + }, + { + "id": 30442, + "cuisine": "mexican", + "ingredients": [ + "enchilada sauce", + "avocado", + "corn tortillas", + "diced onions", + "sour cream", + "cheese", + "chopped cilantro" + ] + }, + { + "id": 7104, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "vegetable oil", + "creole seasoning", + "cooked white rice", + "chicken stock", + "file powder", + "all-purpose flour", + "diced celery", + "onions", + "ground black pepper", + "smoked sausage", + "scallions", + "fresh parsley", + "green bell pepper", + "bay leaves", + "hot sauce", + "okra pods", + "chicken" + ] + }, + { + "id": 38810, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "extra-virgin olive oil", + "zucchini", + "unsalted butter", + "boneless skinless chicken breast halves", + "dry white wine" + ] + }, + { + "id": 3447, + "cuisine": "italian", + "ingredients": [ + "ragu", + "curds", + "gremolata", + "gnocchi" + ] + }, + { + "id": 39510, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil", + "flour" + ] + }, + { + "id": 1058, + "cuisine": "filipino", + "ingredients": [ + "black peppercorns", + "vegetable oil", + "cider vinegar", + "garlic cloves", + "Turkish bay leaves", + "soy sauce", + "chicken drumsticks" + ] + }, + { + "id": 5131, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "file powder", + "large garlic cloves", + "all-purpose flour", + "onions", + "chicken wings", + "crab", + "ground thyme", + "salt", + "medium shrimp", + "shucked oysters", + "smoked ham", + "paprika", + "veal for stew", + "cooked rice", + "boneless chicken skinless thigh", + "vegetable oil", + "kielbasa", + "flat leaf parsley" + ] + }, + { + "id": 16161, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "unsalted butter", + "buttermilk", + "fresh lemon juice", + "ground nutmeg", + "refrigerated piecrusts", + "all-purpose flour", + "kosher salt", + "sweet potatoes", + "mint sprigs", + "sugar", + "large eggs", + "whipped cream" + ] + }, + { + "id": 26097, + "cuisine": "cajun_creole", + "ingredients": [ + "ground turkey breast", + "salami", + "fresh parsley", + "pimentos", + "ham", + "lemon zest", + "salt", + "italian salad dressing", + "mayonaise", + "cheese slices", + "pickled vegetables" + ] + }, + { + "id": 36369, + "cuisine": "indian", + "ingredients": [ + "garlic cloves", + "chicken", + "chili powder", + "ginger root", + "yoghurt", + "lemon juice", + "spices", + "coriander" + ] + }, + { + "id": 18630, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "veal cutlets", + "low salt chicken broth", + "olive oil", + "salt", + "spaghetti", + "pepper", + "butter", + "herbes de provence", + "prosciutto", + "chopped fresh sage", + "white cornmeal" + ] + }, + { + "id": 6580, + "cuisine": "japanese", + "ingredients": [ + "corn", + "spices", + "arugula", + "sugar", + "sesame oil", + "persian cucumber", + "tomatoes", + "boneless skinless chicken breasts", + "rice vinegar", + "soy sauce", + "ramen noodles", + "scallions" + ] + }, + { + "id": 23073, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "water", + "tortillas", + "Mexican oregano", + "salt", + "dried guajillo chiles", + "ground cumin", + "tostadas", + "lime", + "minced onion", + "garlic", + "cayenne pepper", + "dried oregano", + "avocado", + "cider vinegar", + "olive oil", + "bay leaves", + "purple onion", + "boneless pork loin", + "iceberg lettuce", + "chiles", + "corn", + "radishes", + "lime wedges", + "salsa", + "chopped cilantro" + ] + }, + { + "id": 29406, + "cuisine": "french", + "ingredients": [ + "parmigiano-reggiano cheese", + "ground black pepper", + "paprika", + "dried oregano", + "part-skim mozzarella cheese", + "butter", + "dry bread crumbs", + "fat free less sodium chicken broth", + "cooking spray", + "salt", + "prosciutto", + "large garlic cloves", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 1841, + "cuisine": "french", + "ingredients": [ + "red potato", + "ground black pepper", + "purple onion", + "green beans", + "olive oil", + "large eggs", + "fresh lemon juice", + "fillets", + "Boston lettuce", + "dijon mustard", + "salt", + "tuna", + "ground pepper", + "kalamata", + "lemon juice", + "plum tomatoes" + ] + }, + { + "id": 33348, + "cuisine": "greek", + "ingredients": [ + "instant yeast", + "all-purpose flour", + "salt", + "olive oil", + "hot water" + ] + }, + { + "id": 33154, + "cuisine": "thai", + "ingredients": [ + "salmon fillets", + "Thai red curry paste", + "fish sauce", + "lemongrass", + "unsweetened coconut milk", + "baby bok choy", + "fresh lime juice", + "brown sugar", + "vegetable oil" + ] + }, + { + "id": 5062, + "cuisine": "mexican", + "ingredients": [ + "tilapia fillets", + "jalapeno chilies", + "salt", + "corn tortillas", + "ground cumin", + "brown sugar", + "red cabbage", + "spices", + "cayenne pepper", + "dried oregano", + "avocado", + "garlic powder", + "lime wedges", + "cilantro leaves", + "fresh lime juice", + "white onion", + "cooking oil", + "paprika", + "sour cream", + "fish" + ] + }, + { + "id": 39294, + "cuisine": "japanese", + "ingredients": [ + "udon", + "sesame oil", + "teriyaki sauce", + "rice vinegar", + "black sesame seeds", + "sprouts", + "salt", + "corn starch", + "broccoli florets", + "vegetable oil", + "garlic", + "carrots", + "fresh ginger", + "mushrooms", + "crushed red pepper flakes", + "cilantro leaves" + ] + }, + { + "id": 34439, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "garlic", + "red wine vinegar", + "dried oregano", + "crushed tomatoes", + "white sugar", + "tomato paste", + "crushed red pepper flakes" + ] + }, + { + "id": 18143, + "cuisine": "thai", + "ingredients": [ + "dry roasted peanuts", + "green onions", + "crushed red pepper flakes", + "carrots", + "soy sauce", + "Sriracha", + "cilantro", + "peanut butter", + "honey", + "sesame oil", + "garlic", + "red bell pepper", + "sesame seeds", + "vegetable oil", + "rice vinegar", + "spaghetti" + ] + }, + { + "id": 40725, + "cuisine": "british", + "ingredients": [ + "pepper", + "herbs", + "cracked black pepper", + "ghee", + "dijon mustard", + "mushrooms", + "cayenne pepper", + "onions", + "celery ribs", + "zucchini", + "Himalayan salt", + "smoked paprika", + "dried oregano", + "water", + "sweet potatoes", + "salt", + "ground beef" + ] + }, + { + "id": 12246, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "dried thyme", + "all-purpose flour", + "boneless chicken skinless thigh", + "dry red wine", + "carrots", + "cremini mushrooms", + "olive oil", + "canadian bacon", + "fat free less sodium chicken broth", + "salt" + ] + }, + { + "id": 18579, + "cuisine": "thai", + "ingredients": [ + "sugar", + "thai chile", + "sliced shallots", + "fish sauce", + "Thai chili paste", + "low salt chicken broth", + "sliced green onions", + "Boston lettuce", + "lemongrass", + "fresh mint", + "ground chicken", + "cilantro leaves", + "fresh lime juice" + ] + }, + { + "id": 35191, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "Shaoxing wine", + "roasted peanuts", + "chinese black vinegar", + "soy sauce", + "boneless skinless chicken breasts", + "oil", + "red chili peppers", + "peeled fresh ginger", + "scallions", + "dark soy sauce", + "water", + "garlic", + "corn starch" + ] + }, + { + "id": 2234, + "cuisine": "vietnamese", + "ingredients": [ + "baguette", + "olive oil", + "daikon", + "carrots", + "soy sauce", + "lime juice", + "mushroom caps", + "salt", + "toasted sesame oil", + "cold water", + "minced garlic", + "thai basil", + "nuoc mam", + "cucumber", + "canola oil", + "white sugar", + "pepper", + "fresh cilantro", + "jalapeno chilies", + "rice vinegar", + "fresh lime juice" + ] + }, + { + "id": 23963, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking powder", + "salt", + "cold water", + "sugar", + "vanilla", + "confectioners sugar", + "jack daniels", + "unsalted butter", + "cake flour", + "caramel sauce", + "brown sugar", + "heavy cream", + "hot water" + ] + }, + { + "id": 5319, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "all-purpose flour", + "olive oil", + "baking powder", + "powdered sugar", + "cooking spray", + "liqueur", + "granulated sugar", + "salt" + ] + }, + { + "id": 15051, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "salt", + "ground cumin", + "fresh coriander", + "vegetable oil", + "ground turmeric", + "cauliflower", + "potatoes", + "cumin seed", + "minced garlic", + "paprika", + "ginger paste" + ] + }, + { + "id": 5581, + "cuisine": "chinese", + "ingredients": [ + "warm water", + "raisins", + "cornmeal", + "melted butter", + "active dry yeast", + "cake flour", + "milk", + "vanilla extract", + "eggs", + "superfine sugar", + "salt" + ] + }, + { + "id": 36043, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "rice", + "stewed tomatoes", + "onions", + "JOHNSONVILLE® Hot 'N Spicy Brats", + "diced tomatoes and green chilies", + "green pepper" + ] + }, + { + "id": 25471, + "cuisine": "italian", + "ingredients": [ + "chopped tomatoes", + "garlic cloves", + "olives", + "sundried tomato paste", + "chopped celery", + "fresh basil leaves", + "beef stock", + "onions", + "olive oil", + "minced beef", + "spaghetti" + ] + }, + { + "id": 44553, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "peach schnapps", + "sugar", + "half & half", + "chopped fresh mint", + "ground cinnamon", + "peaches", + "raspberry puree", + "cream", + "dry white wine" + ] + }, + { + "id": 15357, + "cuisine": "italian", + "ingredients": [ + "eggs", + "shredded mozzarella cheese", + "ragu cheesi classic alfredo sauc", + "milk", + "Italian bread", + "broccoli" + ] + }, + { + "id": 22976, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "cream style corn", + "chopped celery", + "cooked chicken breasts", + "fat free less sodium chicken broth", + "butter", + "all-purpose flour", + "baby lima beans", + "chopped green bell pepper", + "salt", + "dried thyme", + "1% low-fat milk", + "fresh parsley" + ] + }, + { + "id": 973, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "salt", + "ground cumin", + "unsalted cashews", + "heavy whipping cream", + "fresh ginger root", + "lemon juice", + "minced garlic", + "chile pepper", + "chicken" + ] + }, + { + "id": 13658, + "cuisine": "vietnamese", + "ingredients": [ + "lemon grass", + "cilantro leaves", + "fish sauce", + "basil leaves", + "rice paper", + "min", + "mint leaves", + "chicken", + "red chili peppers", + "purple onion" + ] + }, + { + "id": 35439, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "ground black pepper", + "1% low-fat milk", + "large egg whites", + "baking powder", + "hot sauce", + "large egg yolks", + "butter", + "sugar", + "cooking spray", + "salt" + ] + }, + { + "id": 23165, + "cuisine": "indian", + "ingredients": [ + "veggies", + "oregano", + "curry powder", + "salt", + "tumeric", + "garlic", + "brown rice", + "lentils" + ] + }, + { + "id": 7017, + "cuisine": "french", + "ingredients": [ + "sun-dried tomatoes", + "olives", + "cream cheese, soften", + "fresh basil" + ] + }, + { + "id": 16662, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "cooking wine", + "balsamic vinegar", + "mushroom caps", + "dark soy sauce", + "garlic" + ] + }, + { + "id": 12901, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "ricotta cheese", + "fresh basil leaves", + "pasta", + "olive oil", + "salt", + "pepper", + "garlic", + "tomatoes", + "parmesan cheese", + "fresh mint" + ] + }, + { + "id": 11570, + "cuisine": "greek", + "ingredients": [ + "salt", + "chopped fresh mint", + "olive oil", + "fresh oregano", + "bone-in chicken breast halves", + "grated lemon zest", + "cracked black pepper", + "garlic cloves" + ] + }, + { + "id": 23837, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "jalapeno chilies", + "garlic", + "onions", + "flour tortillas", + "chili powder", + "cayenne pepper", + "garlic powder", + "flank steak", + "salt", + "cumin", + "liquid smoke", + "bell pepper", + "onion powder", + "taco toppings" + ] + }, + { + "id": 40159, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "Barilla Oven-Ready Lasagne", + "tomatoes", + "grated parmesan cheese", + "fresh mushrooms", + "frozen chopped spinach", + "large eggs", + "provolone cheese", + "sausage casings", + "low-fat ricotta cheese" + ] + }, + { + "id": 33087, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "dried rice noodles", + "soy sauce", + "garlic", + "pepper", + "salt", + "vegetable oil", + "chili sauce" + ] + }, + { + "id": 48977, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "dry white wine", + "black pepper", + "chopped fresh chives", + "salt", + "arborio rice", + "lemon zest", + "peas", + "water", + "shell-on shrimp", + "onions" + ] + }, + { + "id": 40184, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "ground black pepper", + "cooking spray", + "plum tomatoes", + "minced garlic", + "zucchini", + "salt", + "reduced fat firm tofu", + "eggplant", + "coulis", + "carrots", + "tomato sauce", + "finely chopped onion", + "chopped fresh thyme", + "ground cumin" + ] + }, + { + "id": 39001, + "cuisine": "italian", + "ingredients": [ + "octopuses", + "California bay leaves", + "extra-virgin olive oil", + "sea salt", + "fresh lemon juice", + "black pepper", + "fresh oregano" + ] + }, + { + "id": 40045, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "yellow mustard", + "black pepper", + "scallions", + "country ham", + "all-purpose flour", + "cold water", + "butter", + "green beans" + ] + }, + { + "id": 38150, + "cuisine": "italian", + "ingredients": [ + "sea scallops", + "vegetable oil", + "garlic cloves", + "arborio rice", + "chopped fresh chives", + "butter", + "large shrimp", + "olive oil", + "dry white wine", + "chopped onion", + "truffle oil", + "clam juice", + "low salt chicken broth" + ] + }, + { + "id": 29053, + "cuisine": "greek", + "ingredients": [ + "brown sugar", + "garlic", + "brine", + "grape leaves", + "ground black pepper", + "red bell pepper", + "plum tomatoes", + "macadamia nuts", + "salt", + "fresh basil leaves", + "green olives", + "kalamata", + "crumbled gorgonzola" + ] + }, + { + "id": 34858, + "cuisine": "italian", + "ingredients": [ + "brewed espresso", + "sambuca", + "coffee low-fat frozen yogurt", + "espresso beans" + ] + }, + { + "id": 24402, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "freshly ground pepper", + "vidalia onion", + "large eggs", + "fresh lemon juice", + "celery ribs", + "dijon mustard", + "scallions", + "fresh dill", + "yukon gold potatoes" + ] + }, + { + "id": 47480, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "chanterelle", + "ground black pepper", + "extra-virgin olive oil", + "country bread", + "cremini mushrooms", + "cooking spray", + "garlic cloves", + "mushroom caps", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 14035, + "cuisine": "japanese", + "ingredients": [ + "smoked salmon", + "nonfat yogurt plain", + "boiling potatoes", + "parsley leaves", + "mustard seeds", + "curry powder", + "cucumber", + "vegetable oil", + "toasted nori" + ] + }, + { + "id": 3994, + "cuisine": "italian", + "ingredients": [ + "granulated sugar", + "water", + "lemon" + ] + }, + { + "id": 9372, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "rotel tomatoes", + "cream of chicken soup", + "portabello mushroom", + "tortillas", + "butter", + "onions", + "bell pepper", + "shredded cheese" + ] + }, + { + "id": 46358, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "olive oil", + "all-purpose flour", + "low salt chicken broth", + "ground ginger", + "honey", + "prune juice", + "chuck short ribs", + "ground cinnamon", + "butternut squash", + "dried pear", + "onions", + "pitted date", + "dry red wine", + "ground allspice", + "ground cumin" + ] + }, + { + "id": 27619, + "cuisine": "thai", + "ingredients": [ + "Anaheim chile", + "asian fish sauce", + "light brown sugar", + "cilantro", + "shallots", + "lime juice", + "garlic" + ] + }, + { + "id": 46047, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "cinnamon", + "baking soda", + "peach slices", + "nutmeg", + "flour", + "milk", + "butter" + ] + }, + { + "id": 7865, + "cuisine": "korean", + "ingredients": [ + "Sriracha", + "scallions", + "fish sauce", + "salt", + "napa cabbage", + "garlic cloves", + "water", + "rice vinegar" + ] + }, + { + "id": 45314, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "mace", + "sunflower oil", + "cayenne pepper", + "kosher salt", + "boneless skinless chicken breasts", + "garlic", + "coconut milk", + "tumeric", + "ground black pepper", + "dry mustard", + "ground cardamom", + "lime juice", + "cinnamon", + "yellow onion", + "ground cumin" + ] + }, + { + "id": 12702, + "cuisine": "spanish", + "ingredients": [ + "hot pepper sauce", + "onions", + "olive oil", + "red wine vinegar", + "tomato juice", + "cucumber", + "tomatoes", + "roasted red peppers", + "chopped cilantro fresh" + ] + }, + { + "id": 46766, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "cod fillets", + "salt", + "onions", + "tomatoes", + "ground black pepper", + "white rice", + "chili sauce", + "milk", + "butter", + "all-purpose flour", + "green bell pepper", + "hot pepper sauce", + "garlic", + "celery" + ] + }, + { + "id": 4963, + "cuisine": "italian", + "ingredients": [ + "eggs", + "pistachio nuts", + "all-purpose flour", + "rum", + "sweetened coconut flakes", + "dried pineapple", + "baking powder", + "salt", + "white sugar", + "coconut extract", + "butter", + "pineapple juice" + ] + }, + { + "id": 7674, + "cuisine": "brazilian", + "ingredients": [ + "chicken broth", + "yellow rice", + "garlic salt", + "pimentos", + "red bell pepper", + "olive oil", + "ham", + "fryer chickens", + "onions" + ] + }, + { + "id": 1650, + "cuisine": "spanish", + "ingredients": [ + "jalapeno chilies", + "yellow onion", + "pepper", + "queso fresco", + "sliced ham", + "eggs", + "yukon gold potatoes", + "garlic cloves", + "olive oil", + "salt", + "chopped parsley" + ] + }, + { + "id": 39804, + "cuisine": "french", + "ingredients": [ + "sugar", + "large egg yolks", + "whole milk", + "vanilla beans" + ] + }, + { + "id": 46098, + "cuisine": "cajun_creole", + "ingredients": [ + "catfish fillets", + "ground black pepper", + "ground cayenne pepper", + "dried thyme", + "onion powder", + "dried oregano", + "kosher salt", + "unsalted butter", + "dried parsley", + "garlic powder", + "paprika" + ] + }, + { + "id": 29644, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "cayenne", + "ground coriander", + "ground cumin", + "black pepper", + "peeled fresh ginger", + "fillets", + "tumeric", + "lemon zest", + "garlic cloves", + "plain yogurt", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 38030, + "cuisine": "indian", + "ingredients": [ + "lemon", + "black mustard seeds", + "potatoes", + "green chilies", + "coriander", + "fresh curry leaves", + "salt", + "onions", + "poha", + "roasted peanuts", + "ground turmeric" + ] + }, + { + "id": 2293, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "onions", + "taco bell home originals", + "garlic", + "ground cumin", + "boneless skinless chicken breasts", + "chopped cilantro fresh", + "shredded cheddar cheese", + "Philadelphia Cream Cheese" + ] + }, + { + "id": 29310, + "cuisine": "mexican", + "ingredients": [ + "water", + "chili powder", + "garlic", + "Mexican cheese", + "canned black beans", + "jalapeno chilies", + "reduced-fat sour cream", + "scallions", + "onions", + "olive oil", + "whole wheat tortillas", + "salt", + "rotel tomatoes", + "pepper", + "butternut squash", + "cilantro", + "red enchilada sauce", + "cumin" + ] + }, + { + "id": 621, + "cuisine": "spanish", + "ingredients": [ + "instant rice", + "vegetable oil", + "garlic cloves", + "chopped green bell pepper", + "hot sauce", + "ground cumin", + "tomato juice", + "diced tomatoes", + "chopped cilantro fresh", + "chili powder", + "chopped onion" + ] + }, + { + "id": 5740, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "stewed tomatoes", + "onions", + "salt and ground black pepper", + "cayenne pepper", + "olive oil", + "garlic", + "diced tomatoes", + "okra" + ] + }, + { + "id": 17710, + "cuisine": "brazilian", + "ingredients": [ + "sugarcane", + "sugar", + "cachaca", + "lime", + "ice cubes", + "lime slices" + ] + }, + { + "id": 16921, + "cuisine": "korean", + "ingredients": [ + "low sodium soy sauce", + "Sriracha", + "garlic", + "water", + "red pepper flakes", + "scallions", + "black pepper", + "sesame oil", + "rice vinegar", + "light brown sugar", + "mirin", + "ginger", + "corn starch" + ] + }, + { + "id": 31563, + "cuisine": "chinese", + "ingredients": [ + "bean paste", + "salt", + "ground white pepper", + "boneless chicken skinless thigh", + "sesame oil", + "oil", + "chopped garlic", + "soy sauce", + "szechwan peppercorns", + "green pepper", + "dried red chile peppers", + "Shaoxing wine", + "red pepper", + "corn starch" + ] + }, + { + "id": 34628, + "cuisine": "italian", + "ingredients": [ + "lettuce", + "mozzarella cheese", + "pesto sauce", + "grated parmesan cheese", + "mayonaise", + "provolone cheese", + "tomatoes", + "sourdough bread" + ] + }, + { + "id": 22841, + "cuisine": "french", + "ingredients": [ + "pasta", + "orange", + "fresh thyme", + "peas", + "celery", + "tomato paste", + "olive oil", + "red pepper flakes", + "lamb shoulder", + "fresh rosemary", + "ground black pepper", + "red wine", + "salt", + "fennel seeds", + "pearl onions", + "leeks", + "garlic", + "bay leaf" + ] + }, + { + "id": 2375, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "boiling water", + "wine", + "napa cabbage leaves", + "scallions", + "chicken", + "sugar", + "ground pork", + "shrimp", + "chinese ham", + "kosher salt", + "all-purpose flour", + "white peppercorns" + ] + }, + { + "id": 4390, + "cuisine": "british", + "ingredients": [ + "whole milk", + "beer", + "mustard", + "grating cheese", + "butter", + "toast", + "pepper", + "salt" + ] + }, + { + "id": 9873, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame seeds", + "sea salt", + "eggs", + "white pepper", + "sesame oil", + "kimchi", + "pork belly", + "mirin", + "scallions", + "kimchi juice", + "pepper", + "vegetable oil" + ] + }, + { + "id": 26839, + "cuisine": "southern_us", + "ingredients": [ + "orange marmalade", + "vanilla extract", + "powdered sugar", + "cream cheese, soften", + "whipped cream" + ] + }, + { + "id": 14916, + "cuisine": "mexican", + "ingredients": [ + "buttermilk", + "jalapeno chilies", + "green chilies", + "mayonaise", + "cilantro", + "ranch dressing" + ] + }, + { + "id": 25903, + "cuisine": "indian", + "ingredients": [ + "lamb stock", + "vegetable oil", + "rice", + "onions", + "curry leaves", + "kidney beans", + "ginger", + "thyme sprigs", + "mild curry powder", + "chopped tomatoes", + "mutton", + "chillies", + "roti", + "lemon", + "garlic cloves", + "coriander" + ] + }, + { + "id": 7318, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "Spike Seasoning", + "large garlic cloves", + "poblano chiles", + "chile powder", + "lime", + "zucchini", + "salt", + "lime juice", + "ground black pepper", + "extra-virgin olive oil", + "black beans", + "olive oil", + "diced tomatoes", + "ground cumin" + ] + }, + { + "id": 17220, + "cuisine": "french", + "ingredients": [ + "light brown sugar", + "salt", + "unsalted butter", + "ground cardamom", + "ground cinnamon", + "all-purpose flour", + "light corn syrup" + ] + }, + { + "id": 31899, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "thin pizza crust", + "marinara sauce", + "fresh basil leaves", + "mozzarella cheese", + "crumbled gorgonzola", + "green bell pepper", + "sausages" + ] + }, + { + "id": 41646, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "salt", + "black pepper", + "button mushrooms", + "fresh parsley", + "olive oil", + "cornmeal", + "water", + "garlic", + "onions" + ] + }, + { + "id": 42709, + "cuisine": "irish", + "ingredients": [ + "large eggs", + "beaten eggs", + "unsalted butter", + "buttermilk", + "all-purpose flour", + "baking soda", + "baking powder", + "salt", + "granulated sugar", + "dried lavender", + "blackberries" + ] + }, + { + "id": 17546, + "cuisine": "japanese", + "ingredients": [ + "water", + "cress", + "baby radishes", + "sugar", + "shiitake", + "spring onions", + "oil", + "tofu", + "fresh ginger", + "black sesame seeds", + "cornflour", + "soy sauce", + "mirin", + "sesame oil", + "white sesame seeds" + ] + }, + { + "id": 33816, + "cuisine": "irish", + "ingredients": [ + "bacon drippings", + "bacon", + "ground black pepper", + "cabbage" + ] + }, + { + "id": 11842, + "cuisine": "chinese", + "ingredients": [ + "pineapple chunks", + "fresh ginger", + "salt", + "ketchup", + "vegetable oil", + "corn starch", + "soy sauce", + "boneless skinless chicken breasts", + "juice", + "white vinegar", + "pepper", + "white rice", + "red bell pepper" + ] + }, + { + "id": 13099, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "vegetable oil", + "cayenne pepper", + "ground turmeric", + "curry leaves", + "ground black pepper", + "garlic", + "black mustard seeds", + "white vinegar", + "garam masala", + "chicken drumsticks", + "ground coriander", + "ground cumin", + "water", + "potatoes", + "salt", + "onions" + ] + }, + { + "id": 27361, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "masoor dal", + "green chilies", + "ground turmeric", + "curry leaves", + "water", + "purple onion", + "oil", + "ground cumin", + "moong dal", + "garlic", + "cumin seed", + "ginger paste", + "tomatoes", + "coriander powder", + "cilantro leaves", + "lemon juice" + ] + }, + { + "id": 12282, + "cuisine": "irish", + "ingredients": [ + "tomato paste", + "Guinness Beer", + "yukon gold potatoes", + "fresh parsley", + "brown sugar", + "fresh thyme", + "salt", + "onions", + "olive oil", + "flour", + "carrots", + "pepper", + "roast", + "beef broth" + ] + }, + { + "id": 12084, + "cuisine": "italian", + "ingredients": [ + "pecorino cheese", + "olive oil", + "salt", + "bread crumbs", + "red pepper flakes", + "black pepper", + "lemon", + "kale", + "garlic" + ] + }, + { + "id": 18081, + "cuisine": "southern_us", + "ingredients": [ + "mustard", + "fryer chickens", + "freshly ground pepper", + "vegetable oil", + "salt", + "whole milk", + "fresh tarragon", + "buttermilk", + "all-purpose flour" + ] + }, + { + "id": 11733, + "cuisine": "brazilian", + "ingredients": [ + "açai", + "frozen banana", + "chia seeds", + "cinnamon", + "ice", + "spinach", + "coconut milk" + ] + }, + { + "id": 4005, + "cuisine": "southern_us", + "ingredients": [ + "toasted pecans", + "butter", + "vanilla extract", + "hot water", + "coconut flakes", + "espresso powder", + "heavy cream", + "cocktail cherries", + "sour cream", + "eggs", + "sugar", + "all purpose unbleached flour", + "Dutch-processed cocoa powder", + "marshmallow creme", + "vanilla ice cream", + "baking soda", + "sprinkles", + "salt", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 4307, + "cuisine": "british", + "ingredients": [ + "soy sauce", + "ground black pepper", + "vegetable oil", + "fresh mint", + "kosher salt", + "self rising flour", + "russet potatoes", + "frozen peas", + "black pepper", + "unsalted butter", + "vegetable stock", + "onions", + "lager beer", + "haddock", + "cayenne pepper" + ] + }, + { + "id": 45690, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "cumin seed", + "ground turmeric", + "red lentils", + "water", + "clarified butter", + "fresh curry leaves", + "long-grain rice", + "canola oil", + "black peppercorns", + "peeled fresh ginger", + "chopped cilantro fresh" + ] + }, + { + "id": 5027, + "cuisine": "british", + "ingredients": [ + "milk", + "cornmeal", + "instant yeast", + "granulated sugar", + "bread flour", + "shortening", + "salt" + ] + }, + { + "id": 7862, + "cuisine": "french", + "ingredients": [ + "butter", + "onions", + "water", + "all-purpose flour", + "french baguette", + "red wine", + "white sugar", + "swiss cheese", + "beef broth" + ] + }, + { + "id": 39959, + "cuisine": "spanish", + "ingredients": [ + "powdered sugar", + "cooking spray", + "salt", + "ground nutmeg", + "vanilla extract", + "yeast", + "large eggs", + "1% low-fat milk", + "sugar", + "butter", + "all-purpose flour" + ] + }, + { + "id": 17219, + "cuisine": "japanese", + "ingredients": [ + "chicken legs", + "lemon", + "soy sauce", + "white sesame seeds", + "sake", + "ginger", + "potato starch", + "vegetable oil" + ] + }, + { + "id": 42946, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "rib", + "collard greens" + ] + }, + { + "id": 6099, + "cuisine": "french", + "ingredients": [ + "water", + "salt", + "cold water", + "butter", + "sugar", + "apples", + "flour", + "apricot jam" + ] + }, + { + "id": 33242, + "cuisine": "mexican", + "ingredients": [ + "poblano peppers", + "onions", + "tomato paste", + "garlic cloves", + "dried oregano", + "chicken stock", + "paprika", + "basmati rice", + "olive oil", + "pinto beans", + "cumin" + ] + }, + { + "id": 23470, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "black pepper", + "pork sausages", + "biscuits", + "all-purpose flour", + "kosher salt" + ] + }, + { + "id": 48675, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "vanilla extract", + "chestnuts", + "cooking spray", + "all-purpose flour", + "large eggs", + "salt", + "sugar", + "baking powder", + "margarine" + ] + }, + { + "id": 18059, + "cuisine": "mexican", + "ingredients": [ + "yukon gold potatoes", + "carrots", + "salt", + "relish", + "onions", + "olive oil", + "fat skimmed reduced sodium chicken broth" + ] + }, + { + "id": 45006, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "salt", + "pecorino romano cheese", + "scallions", + "tomato paste", + "extra-virgin olive oil", + "marjoram", + "jalapeno chilies", + "freshly ground pepper" + ] + }, + { + "id": 41310, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "sliced mushrooms", + "green onions", + "purple onion", + "flour tortillas", + "extra-virgin olive oil", + "cumin", + "reduced fat Mexican cheese", + "vegetarian protein crumbles", + "salsa" + ] + }, + { + "id": 22125, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "water", + "chocolate sauce", + "sugar", + "gran marnier", + "large egg yolks" + ] + }, + { + "id": 43768, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "salt", + "pesto", + "flour", + "eggs", + "olive oil", + "dry bread crumbs", + "boneless chop pork", + "cracked black pepper" + ] + }, + { + "id": 31473, + "cuisine": "southern_us", + "ingredients": [ + "black peppercorns", + "fresh ginger", + "cinnamon sticks", + "white vinegar", + "pickling spices", + "apple cider vinegar", + "clove", + "watermelon", + "balsamic vinegar", + "whole allspice", + "granulated sugar" + ] + }, + { + "id": 7498, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cheese", + "unsalted butter", + "fresh red chili", + "corn-on-the-cob" + ] + }, + { + "id": 874, + "cuisine": "italian", + "ingredients": [ + "panko", + "all-purpose flour", + "boneless skinless chicken breast halves", + "milk", + "salt", + "flat leaf parsley", + "pepperoni slices", + "large eggs", + "shredded mozzarella cheese", + "tomato sauce", + "parmigiano reggiano cheese", + "freshly ground pepper", + "canola oil" + ] + }, + { + "id": 20444, + "cuisine": "french", + "ingredients": [ + "reduced sodium chicken broth", + "flour", + "chardonnay", + "chicken thighs", + "olive oil", + "fresh tarragon", + "celery", + "kosher salt", + "bacon", + "herbes de provence", + "parsley sprigs", + "ground black pepper", + "baby carrots", + "onions" + ] + }, + { + "id": 27398, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "chopped cilantro fresh", + "black pepper", + "paprika", + "corn tortillas", + "mango", + "queso fresco", + "garlic cloves", + "cumin", + "tilapia fillets", + "purple onion", + "fresh lime juice" + ] + }, + { + "id": 30558, + "cuisine": "italian", + "ingredients": [ + "treviso", + "garlic", + "fresh basil leaves", + "baby spinach leaves", + "bacon", + "onions", + "penne", + "grated parmesan cheese", + "low salt chicken broth", + "olive oil", + "crushed red pepper" + ] + }, + { + "id": 17847, + "cuisine": "vietnamese", + "ingredients": [ + "minced garlic", + "beef shank", + "oxtails", + "lime wedges", + "perilla", + "pork", + "thai basil", + "beef brisket", + "shallots", + "red pepper flakes", + "kosher salt", + "annatto seeds", + "red cabbage", + "lemon wedge", + "yellow onion", + "sugar", + "lemongrass", + "beef", + "shrimp paste", + "rice noodles", + "canola oil" + ] + }, + { + "id": 20052, + "cuisine": "filipino", + "ingredients": [ + "glutinous rice flour", + "vanilla extract", + "sugar", + "coconut milk", + "salt" + ] + }, + { + "id": 32030, + "cuisine": "indian", + "ingredients": [ + "lemon juice", + "whole milk" + ] + }, + { + "id": 25900, + "cuisine": "spanish", + "ingredients": [ + "chicken broth", + "lobster", + "salt", + "saffron", + "spanish onion", + "littleneck clams", + "medium-grain rice", + "mussels", + "ground black pepper", + "extra-virgin olive oil", + "garlic cloves", + "chorizo", + "dry white wine", + "claws", + "chicken" + ] + }, + { + "id": 21284, + "cuisine": "indian", + "ingredients": [ + "baking powder", + "green chilies", + "mint", + "purple onion", + "curry paste", + "vegetable oil", + "garlic cloves", + "flour", + "natural yogurt" + ] + }, + { + "id": 4500, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "chili powder", + "ancho chile pepper", + "chicken broth", + "flour tortillas", + "sea salt", + "onions", + "chuck roast", + "onion powder", + "chipotles in adobo", + "fresh cilantro", + "guacamole", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 28160, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "tumeric", + "garlic powder", + "buttermilk", + "garlic", + "tomato paste", + "plain yogurt", + "chili powder", + "ginger", + "chicken", + "ground fennel", + "black pepper", + "garam masala", + "paprika", + "coconut milk", + "curry leaves", + "kosher salt", + "butter", + "thai chile", + "ground cumin" + ] + }, + { + "id": 33435, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "blackberries", + "yellow cake mix" + ] + }, + { + "id": 33576, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "cooking spray", + "all-purpose flour", + "fresh parsley", + "light butter", + "olive oil", + "chopped fresh thyme", + "corn starch", + "marsala wine", + "garlic powder", + "salt", + "sliced mushrooms", + "pepper", + "boneless skinless chicken breasts", + "fresh lemon juice" + ] + }, + { + "id": 18757, + "cuisine": "cajun_creole", + "ingredients": [ + "baby lima beans", + "cooking oil", + "salt", + "onions", + "canned low sodium chicken broth", + "ground black pepper", + "dry mustard", + "fresh parsley", + "catfish fillets", + "crushed tomatoes", + "dry white wine", + "frozen corn kernels", + "dried oregano", + "green bell pepper", + "dried thyme", + "Tabasco Pepper Sauce", + "celery" + ] + }, + { + "id": 26975, + "cuisine": "french", + "ingredients": [ + "boneless chicken skinless thigh", + "butter", + "whole nutmegs", + "red potato", + "pepper", + "salt", + "fat free less sodium chicken broth", + "1% low-fat milk", + "fresh parsley", + "Madeira", + "cooking spray", + "sliced mushrooms" + ] + }, + { + "id": 28914, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "onions", + "water", + "salt", + "green bell pepper", + "white rice", + "chili powder", + "diced tomatoes and green chilies" + ] + }, + { + "id": 14732, + "cuisine": "spanish", + "ingredients": [ + "potatoes", + "olive oil", + "yellow onion", + "salt", + "large eggs" + ] + }, + { + "id": 45143, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "onions", + "ground cumin", + "cooked rice", + "garlic", + "ground turmeric", + "tomatoes", + "ginger", + "coriander", + "olive oil", + "ground coriander", + "large shrimp" + ] + }, + { + "id": 20573, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "ground turkey breast", + "mung bean sprouts", + "black pepper", + "oyster sauce", + "canola oil", + "sugar", + "scallions", + "glass noodles", + "green bell pepper", + "large egg whites", + "shiitake mushroom caps", + "rice paper" + ] + }, + { + "id": 29027, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "eggs", + "garlic powder", + "top loin", + "milk", + "all-purpose flour", + "shortening", + "buttermilk" + ] + }, + { + "id": 39350, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "chile sauce", + "tomato paste", + "garlic cloves", + "savoy cabbage", + "balsamic vinegar", + "soy sauce", + "cashew nuts" + ] + }, + { + "id": 10278, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "celery", + "onions", + "chicken stock", + "vegetable oil", + "garlic cloves", + "smoked cheddar cheese", + "unsalted butter", + "beef rib short", + "thyme sprigs", + "corn grits", + "pepper", + "dry red wine", + "carrots", + "smoked gouda" + ] + }, + { + "id": 4780, + "cuisine": "italian", + "ingredients": [ + "bulk italian sausag", + "lasagna noodles", + "basil", + "mozzarella cheese", + "ground black pepper", + "dried sage", + "ground beef", + "minced garlic", + "sliced black olives", + "ricotta cheese", + "dried oregano", + "warm water", + "garlic powder", + "marinara sauce", + "onion flakes" + ] + }, + { + "id": 48739, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "cayenne", + "sour cream", + "pepper", + "salt", + "chopped cilantro", + "cotija", + "garlic", + "poblano chiles", + "red potato", + "lime juice", + "mexican chorizo", + "ground cumin" + ] + }, + { + "id": 36610, + "cuisine": "mexican", + "ingredients": [ + "spanish onion", + "kiwi", + "serrano peppers", + "orange", + "balsamic vinegar", + "bananas" + ] + }, + { + "id": 34127, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "extra-virgin olive oil", + "spaghetti", + "boneless chicken", + "onions", + "fresh basil", + "fresh chevre", + "plum tomatoes" + ] + }, + { + "id": 22420, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "chopped pecans", + "spicy brown mustard", + "feta cheese crumbles", + "black-eyed peas", + "beets", + "grated orange", + "olive oil", + "rice vinegar", + "fresh parsley" + ] + }, + { + "id": 49055, + "cuisine": "jamaican", + "ingredients": [ + "dry vermouth", + "shallots", + "salt", + "water", + "crushed red pepper flakes", + "corn", + "garlic", + "black pepper", + "butter", + "cabbage" + ] + }, + { + "id": 31988, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "semisweet chocolate", + "buttermilk", + "grated nutmeg", + "baking soda", + "coffee", + "cake flour", + "unsweetened cocoa powder", + "sugar", + "large eggs", + "sweetened coconut flakes", + "confectioners sugar", + "pure vanilla extract", + "unsalted butter", + "cinnamon", + "salt" + ] + }, + { + "id": 20679, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic", + "onions", + "splenda", + "xanthan gum", + "shredded cabbage", + "crushed red pepper", + "ground pork", + "oyster sauce" + ] + }, + { + "id": 32595, + "cuisine": "italian", + "ingredients": [ + "water", + "dry sherry", + "all-purpose flour", + "onions", + "chicken breast halves", + "linguine", + "freshly ground pepper", + "grated parmesan cheese", + "reduced-fat sour cream", + "dry bread crumbs", + "reduced fat monterey jack cheese", + "butter", + "fat-free chicken broth", + "sliced mushrooms" + ] + }, + { + "id": 2376, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "hass avocado", + "ear of corn", + "extra-virgin olive oil", + "fresh cilantro", + "fresh lime juice" + ] + }, + { + "id": 3003, + "cuisine": "chinese", + "ingredients": [ + "rock sugar", + "peeled fresh ginger", + "red preserved bean curd", + "carrots", + "dried black mushrooms", + "soy sauce", + "vegetable oil", + "scallions", + "brown sugar", + "soya bean", + "star anise", + "cinnamon sticks", + "red chili peppers", + "rice wine", + "lamb breast", + "white sugar" + ] + }, + { + "id": 10006, + "cuisine": "italian", + "ingredients": [ + "cracked black pepper", + "cream cheese", + "parmigiano-reggiano cheese", + "salt", + "flat leaf parsley", + "fettucine", + "1% low-fat milk", + "garlic cloves", + "butter", + "all-purpose flour" + ] + }, + { + "id": 9531, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "ground white pepper", + "paprika", + "onion powder", + "ground cayenne pepper", + "garlic powder", + "salt" + ] + }, + { + "id": 27079, + "cuisine": "italian", + "ingredients": [ + "white rice flour", + "large eggs", + "kosher salt", + "sweet rice flour", + "russet potatoes" + ] + }, + { + "id": 44495, + "cuisine": "mexican", + "ingredients": [ + "broccoli slaw", + "flour tortillas", + "salt", + "ground chipotle chile pepper", + "olive oil", + "paprika", + "mayonaise", + "lime juice", + "onion powder", + "chipotle chile powder", + "mahi mahi", + "garlic powder", + "cilantro" + ] + }, + { + "id": 1777, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "pimentos", + "old bay seasoning", + "garlic cloves", + "pepper", + "half & half", + "clam juice", + "bow-tie pasta", + "lump crab meat", + "grated parmesan cheese", + "cocktail sauce", + "salt", + "shrimp", + "water", + "dry white wine", + "butter", + "all-purpose flour" + ] + }, + { + "id": 30047, + "cuisine": "russian", + "ingredients": [ + "potatoes", + "onions", + "water", + "mushrooms", + "vegetables", + "salt", + "sugar", + "flour", + "yeast" + ] + }, + { + "id": 40612, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "red curry paste", + "cooked shrimp", + "fish sauce", + "rice noodles", + "coconut milk", + "shiitake", + "garlic chili sauce", + "lime", + "scallions", + "chicken base" + ] + }, + { + "id": 38940, + "cuisine": "french", + "ingredients": [ + "potatoes", + "carrots", + "butter", + "chicken", + "savory", + "onions", + "ground black pepper", + "salt" + ] + }, + { + "id": 4037, + "cuisine": "chinese", + "ingredients": [ + "rice vinegar", + "honey", + "english cucumber", + "salt" + ] + }, + { + "id": 5420, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "shredded pepper jack cheese", + "flour tortillas", + "canola oil", + "vegetables", + "fresh tomato salsa", + "cheese" + ] + }, + { + "id": 47263, + "cuisine": "thai", + "ingredients": [ + "sea salt", + "fresh basil leaves", + "lemongrass", + "extra virgin coconut oil", + "grape tomatoes", + "garlic", + "fresh ginger", + "fresh lime juice" + ] + }, + { + "id": 22262, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "red bell pepper", + "minced garlic", + "quickcooking grits", + "water", + "Tabasco Pepper Sauce", + "whole milk", + "onions" + ] + }, + { + "id": 42843, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "dried peach", + "lard", + "water", + "salt", + "sugar", + "flour", + "milk", + "all-purpose flour" + ] + }, + { + "id": 36489, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "Philadelphia Cream Cheese", + "almonds", + "fresh herbs", + "milk", + "salt", + "mozzarella cheese", + "poblano peppers", + "ground turkey" + ] + }, + { + "id": 1864, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "brown sugar", + "boneless skinless chicken breasts", + "cayenne", + "lime", + "dried parsley" + ] + }, + { + "id": 888, + "cuisine": "french", + "ingredients": [ + "eggs", + "chopped walnuts", + "light brown sugar", + "ground nutmeg", + "biscuit mix", + "milk", + "tart apples", + "ground cinnamon", + "butter", + "white sugar" + ] + }, + { + "id": 28328, + "cuisine": "moroccan", + "ingredients": [ + "raisins", + "salt", + "chopped cilantro fresh", + "garlic", + "ground coriander", + "ground cumin", + "cracked black pepper", + "goat cheese", + "ground lamb", + "mayonaise", + "purple onion", + "ground cayenne pepper" + ] + }, + { + "id": 1118, + "cuisine": "brazilian", + "ingredients": [ + "honey", + "cornmeal", + "water", + "all purpose unbleached flour", + "olive oil", + "yeast", + "stone-ground cornmeal", + "salt" + ] + }, + { + "id": 40988, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "broccoli florets", + "bow-tie pasta", + "ground black pepper", + "salt", + "pecorino romano cheese" + ] + }, + { + "id": 16326, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "diced tomatoes", + "ground cumin", + "black beans", + "sliced black olives", + "rice", + "ground black pepper", + "sauce", + "kosher salt", + "chicken breasts", + "sour cream" + ] + }, + { + "id": 34115, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "artichokes", + "pepper", + "pecorino romano cheese", + "onions", + "romaine lettuce", + "fresh peas", + "lemon juice", + "fennel", + "salt" + ] + }, + { + "id": 28248, + "cuisine": "japanese", + "ingredients": [ + "kelp", + "cold water" + ] + }, + { + "id": 8465, + "cuisine": "korean", + "ingredients": [ + "water", + "napa cabbage", + "cayenne pepper", + "radishes", + "persimmon", + "fresh ginger root", + "garlic", + "cucumber", + "white onion", + "green onions", + "salt" + ] + }, + { + "id": 19371, + "cuisine": "chinese", + "ingredients": [ + "water", + "sea cucumber", + "oil", + "brown sugar", + "ground pepper", + "star anise", + "roasted sesame seeds", + "leeks", + "soy sauce", + "beef brisket", + "garlic" + ] + }, + { + "id": 11664, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "olive oil", + "rice", + "cooking spray", + "fillets", + "pepper", + "salt" + ] + }, + { + "id": 49615, + "cuisine": "brazilian", + "ingredients": [ + "coconut oil", + "honey", + "instant coffee", + "hemp seeds", + "Hawaiian salt", + "medjool date", + "pineapple chunks", + "edible flowers", + "açai", + "vanilla extract", + "berries", + "coconut milk", + "sliced mango", + "pitted cherries", + "sesame seeds", + "raw cashews", + "frozen mixed berries", + "chia seeds", + "raw buckwheat groats", + "coconut flakes", + "frozen mango", + "granola", + "cashew butter", + "cacao nibs", + "raw almond" + ] + }, + { + "id": 26574, + "cuisine": "chinese", + "ingredients": [ + "lower sodium soy sauce", + "dark sesame oil", + "chile paste", + "salt", + "bone in chicken thighs", + "cooking spray", + "garlic cloves", + "honey", + "rice vinegar" + ] + }, + { + "id": 18197, + "cuisine": "mexican", + "ingredients": [ + "water", + "flour", + "salt", + "baking soda", + "vegetable oil", + "honey", + "green onions", + "green chile", + "egg whites", + "teriyaki sauce" + ] + }, + { + "id": 23529, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "large eggs", + "bread slices", + "min", + "milk", + "liquid", + "orange flavored brandy", + "brandy", + "butter", + "grated orange peel", + "french toast", + "Italian bread" + ] + }, + { + "id": 25513, + "cuisine": "mexican", + "ingredients": [ + "soft goat's cheese", + "ground black pepper", + "cilantro", + "carrots", + "white sugar", + "white vinegar", + "white onion", + "chile pepper", + "cream cheese", + "celery", + "chicken", + "tomato paste", + "ground nutmeg", + "raisins", + "walnuts", + "onions", + "brown sugar", + "bay leaves", + "garlic", + "sour cream", + "chopped cilantro fresh" + ] + }, + { + "id": 40112, + "cuisine": "indian", + "ingredients": [ + "butter", + "coconut milk", + "lemon", + "tandoori seasoning", + "kosher salt", + "garlic cloves" + ] + }, + { + "id": 28836, + "cuisine": "mexican", + "ingredients": [ + "ketchup", + "large garlic cloves", + "chipotles in adobo", + "cinnamon", + "dark brown sugar", + "dijon mustard", + "extra-virgin olive oil", + "chicken", + "cider vinegar", + "worcestershire sauce", + "onions" + ] + }, + { + "id": 29287, + "cuisine": "vietnamese", + "ingredients": [ + "peanuts", + "sugar", + "coconut milk", + "water" + ] + }, + { + "id": 29673, + "cuisine": "thai", + "ingredients": [ + "mussels", + "zucchini", + "coconut milk", + "scallops", + "curry", + "fish sauce", + "basil leaves", + "tiger prawn", + "palm sugar", + "yellow curry paste" + ] + }, + { + "id": 39426, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "salt", + "sausages", + "minced garlic", + "scallions", + "white pepper", + "peanut oil", + "eggs", + "ginger", + "long-grain rice" + ] + }, + { + "id": 35198, + "cuisine": "irish", + "ingredients": [ + "black pepper", + "butter", + "potatoes", + "cabbage", + "cream", + "salt", + "green onions" + ] + }, + { + "id": 27044, + "cuisine": "indian", + "ingredients": [ + "tilapia fillets", + "purple onion", + "black mustard seeds", + "low-fat plain yogurt", + "vegetable oil", + "all-purpose flour", + "ground turmeric", + "curry powder", + "heavy cream", + "cayenne pepper", + "chopped garlic", + "caraway seeds", + "ground black pepper", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 31672, + "cuisine": "cajun_creole", + "ingredients": [ + "baby spinach", + "onions", + "unsalted butter", + "all-purpose flour", + "heavy cream", + "whole milk", + "grated nutmeg" + ] + }, + { + "id": 43821, + "cuisine": "mexican", + "ingredients": [ + "fresh corn", + "olive oil", + "purple onion", + "avocado", + "fresh cilantro", + "cilantro sprigs", + "frozen corn", + "black pepper", + "jalapeno chilies", + "salt", + "chicken broth", + "lime", + "garlic" + ] + }, + { + "id": 40873, + "cuisine": "french", + "ingredients": [ + "lamb stew meat", + "all-purpose flour", + "dried thyme", + "canned beef broth", + "carrots", + "russet potatoes", + "boiling onions", + "bay leaves", + "butter", + "fresh parsley" + ] + }, + { + "id": 24467, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "green onions", + "fresh lime juice", + "chips", + "red bell pepper", + "poblano peppers", + "garlic cloves", + "chopped cilantro fresh", + "avocado", + "cooking spray", + "corn tortillas" + ] + }, + { + "id": 43321, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "Chianti", + "pappardelle pasta", + "salt", + "celery ribs", + "fresh rosemary", + "olive oil", + "cracked black pepper", + "onions", + "chicken broth", + "dried porcini mushrooms", + "grated parmesan cheese", + "garlic cloves", + "pancetta", + "tomatoes", + "boar", + "bay leaves", + "carrots" + ] + }, + { + "id": 38657, + "cuisine": "indian", + "ingredients": [ + "saffron threads", + "roasted cashews", + "cayenne", + "raisins", + "grated nutmeg", + "cinnamon sticks", + "basmati rice", + "ground cumin", + "clove", + "fresh ginger", + "spices", + "lamb shoulder", + "lamb", + "cashew nuts", + "ground turmeric", + "green cardamom pods", + "milk", + "unsalted butter", + "canned tomatoes", + "rice", + "onions", + "nuts", + "low-fat plain yogurt", + "ground black pepper", + "large garlic cloves", + "salt", + "ground coriander", + "serrano chile", + "canola oil" + ] + }, + { + "id": 3033, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "peeled fresh ginger", + "oil", + "boiling potatoes", + "pepper", + "chili powder", + "onions", + "canned chicken broth", + "dry white wine", + "garlic cloves", + "ground turmeric", + "tomatoes", + "curry powder", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 1393, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger root", + "cream cheese", + "salt", + "imitation crab meat", + "white rice", + "seaweed", + "water", + "rice vinegar", + "cucumber" + ] + }, + { + "id": 2952, + "cuisine": "french", + "ingredients": [ + "sugar", + "water", + "sliced almonds", + "cooking spray" + ] + }, + { + "id": 17112, + "cuisine": "italian", + "ingredients": [ + "chicken breast tenders", + "provolone cheese", + "tomatoes", + "unsalted butter", + "sandwich rolls", + "large egg whites", + "seasoned bread crumbs", + "grated parmesan cheese" + ] + }, + { + "id": 13215, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "white wine vinegar", + "fresh parsley", + "kalamata", + "garlic cloves", + "ground cumin", + "fennel bulb", + "salt", + "plum tomatoes", + "vidalia onion", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 412, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "dry white wine", + "chicken", + "olive oil", + "all-purpose flour", + "pearl onions", + "butter", + "mushrooms", + "flat leaf parsley" + ] + }, + { + "id": 42157, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "water", + "coriander powder", + "salt", + "mustard seeds", + "onions", + "clove", + "asafoetida", + "amchur", + "star anise", + "green chilies", + "bay leaf", + "tomatoes", + "red chili peppers", + "garam masala", + "garlic", + "cumin seed", + "ghee", + "red chili powder", + "pigeon peas", + "ginger", + "cilantro leaves", + "cinnamon sticks", + "ground turmeric" + ] + }, + { + "id": 34254, + "cuisine": "japanese", + "ingredients": [ + "asafoetida", + "cilantro", + "ground turmeric", + "chili powder", + "cumin seed", + "coriander powder", + "salt", + "baby potatoes", + "methi leaves", + "lemon", + "mustard seeds" + ] + }, + { + "id": 34362, + "cuisine": "italian", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "part-skim mozzarella cheese", + "roasted red peppers", + "pasta sauce", + "fresh parmesan cheese", + "refrigerated pizza dough", + "low-fat sour cream", + "garlic powder", + "cooking spray", + "frozen chopped spinach", + "1% low-fat cottage cheese", + "ground black pepper", + "cream cheese, soften" + ] + }, + { + "id": 5427, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "won ton wrappers", + "sesame oil", + "corn starch", + "sambal ulek", + "pepper", + "egg whites", + "rice vinegar", + "green cabbage", + "ground chicken", + "fresh ginger", + "salt", + "coconut oil", + "water", + "green onions", + "garlic cloves" + ] + }, + { + "id": 32386, + "cuisine": "french", + "ingredients": [ + "freshly grated parmesan", + "onions", + "cottage cheese", + "salt", + "bacon slices", + "puff pastry", + "black pepper", + "sour cream" + ] + }, + { + "id": 4759, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red pepper flakes", + "lemon juice", + "swordfish steaks", + "whole milk", + "garlic", + "polenta", + "nutmeg", + "ground black pepper", + "heavy cream", + "fresh parsley", + "kosher salt", + "unsalted butter", + "fresh tarragon", + "fresh basil leaves" + ] + }, + { + "id": 37345, + "cuisine": "mexican", + "ingredients": [ + "tequila", + "honey", + "ground cumin", + "fresh lime juice", + "garlic" + ] + }, + { + "id": 44785, + "cuisine": "southern_us", + "ingredients": [ + "dried currants", + "ground nutmeg", + "salt pork", + "ground cinnamon", + "ground cloves", + "raisins", + "boiling water", + "brandy", + "baking powder", + "ground allspice", + "brown sugar", + "molasses", + "all-purpose flour" + ] + }, + { + "id": 2544, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "vegetable oil", + "flour tortillas", + "ground coriander", + "lime juice", + "salt", + "mahi mahi", + "chili powder", + "ground cumin" + ] + }, + { + "id": 43083, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "avocado", + "jalapeno chilies", + "flour tortillas", + "roast turkey", + "salsa" + ] + }, + { + "id": 9871, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "flour", + "whole peeled tomatoes", + "salt", + "eggplant", + "garlic", + "mozzarella cheese", + "parmigiano reggiano cheese" + ] + }, + { + "id": 34833, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "salt", + "brown basmati rice", + "lime rind", + "peeled fresh ginger", + "ground coriander", + "olive oil", + "chopped onion", + "ground cumin", + "fat free less sodium chicken broth", + "lime wedges", + "chopped cilantro fresh" + ] + }, + { + "id": 44182, + "cuisine": "italian", + "ingredients": [ + "sugar", + "heavy cream", + "espresso beans", + "water" + ] + }, + { + "id": 13390, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "garlic bulb", + "butter", + "parmesan cheese", + "all-purpose flour", + "pepper", + "whipping cream" + ] + }, + { + "id": 28998, + "cuisine": "brazilian", + "ingredients": [ + "fresh coriander", + "finely chopped onion", + "hot sauce", + "chorizo sausage", + "tomatoes", + "kale", + "bacon", + "long grain white rice", + "water", + "jalapeno chilies", + "canadian bacon", + "chuck", + "black beans", + "olive oil", + "fresh orange juice", + "chopped garlic" + ] + }, + { + "id": 38418, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "olive oil", + "purple onion", + "fresh basil", + "focaccia", + "cherries", + "garlic cloves" + ] + }, + { + "id": 23109, + "cuisine": "british", + "ingredients": [ + "whole milk", + "all-purpose flour", + "unsalted butter", + "poppy seeds", + "grated lemon peel", + "sugar", + "baking powder", + "fresh lemon juice", + "large eggs", + "salt" + ] + }, + { + "id": 22952, + "cuisine": "british", + "ingredients": [ + "mace", + "port wine", + "stilton cheese", + "walnut halves", + "melted butter", + "butter" + ] + }, + { + "id": 33086, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "large eggs", + "baking soda", + "salt", + "low-fat buttermilk", + "all-purpose flour", + "sugar", + "butter" + ] + }, + { + "id": 17147, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken skinless thigh", + "green chilies", + "sliced black olives", + "adobo seasoning", + "Mexican cheese blend", + "onions", + "flour tortillas" + ] + }, + { + "id": 24484, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "sliced carrots", + "ground white pepper", + "cooked rice", + "flank steak", + "corn starch", + "chile paste with garlic", + "fresh ginger", + "peanut oil", + "fat free less sodium chicken broth", + "salt" + ] + }, + { + "id": 7773, + "cuisine": "italian", + "ingredients": [ + "sea scallops", + "paprika", + "uncooked vermicelli", + "garlic powder", + "butter", + "grated lemon zest", + "water", + "lemon wedge", + "salt", + "spinach leaves", + "cooking spray", + "cracked black pepper", + "fresh lemon juice" + ] + }, + { + "id": 7987, + "cuisine": "mexican", + "ingredients": [ + "guacamole", + "diced tomatoes", + "sour cream", + "ground black pepper", + "queso fresco", + "salt", + "flour tortillas", + "shredded lettuce", + "salsa", + "fresh cilantro", + "green onions", + "cheese", + "ground beef" + ] + }, + { + "id": 14753, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "green chilies", + "fresh coriander", + "chili powder", + "ghee", + "potatoes", + "cumin seed", + "amchur", + "salt", + "coriander" + ] + }, + { + "id": 44694, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "instant espresso", + "orange", + "orange rind", + "ladyfingers", + "cognac", + "fat free cream cheese", + "sugar", + "hot water", + "unsweetened cocoa powder" + ] + }, + { + "id": 10687, + "cuisine": "russian", + "ingredients": [ + "pickling salt", + "water", + "fresh tarragon", + "vinegar", + "garlic", + "red chili peppers", + "pickling cucumbers" + ] + }, + { + "id": 40929, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "salt", + "eggs", + "baking soda", + "butter", + "chopped pecans", + "water", + "almond extract", + "all-purpose flour", + "brown sugar", + "peaches", + "vanilla extract" + ] + }, + { + "id": 43891, + "cuisine": "cajun_creole", + "ingredients": [ + "great northern beans", + "pepper", + "onions", + "chicken broth", + "jasmine rice", + "garlic cloves", + "green bell pepper", + "vegetable oil", + "smoked fully cooked ham", + "salt" + ] + }, + { + "id": 24788, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "grated parmesan cheese", + "ground black pepper", + "shredded mozzarella cheese", + "pasta sauce", + "unsalted butter", + "garlic salt", + "milk", + "russet potatoes" + ] + }, + { + "id": 916, + "cuisine": "chinese", + "ingredients": [ + "tea bags", + "lemon zest", + "cinnamon sticks", + "water", + "satsumas", + "comice pears", + "honey", + "tapioca pearls", + "sugar", + "star anise" + ] + }, + { + "id": 42430, + "cuisine": "italian", + "ingredients": [ + "sweet onion", + "salt", + "feta cheese crumbles", + "sliced black olives", + "fresh oregano", + "olive oil", + "bow-tie pasta", + "grape tomatoes", + "balsamic vinegar", + "garlic cloves" + ] + }, + { + "id": 14147, + "cuisine": "irish", + "ingredients": [ + "shredded cheddar cheese", + "salt", + "chicken broth", + "leeks", + "unsalted butter", + "onions", + "pepper", + "baking potatoes" + ] + }, + { + "id": 15516, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "onions", + "shredded cheddar cheese", + "chile pepper", + "baked beans", + "taco seasoning mix", + "salsa" + ] + }, + { + "id": 27284, + "cuisine": "moroccan", + "ingredients": [ + "merguez sausage", + "large garlic cloves", + "roasted tomatoes", + "crusty bread", + "harissa", + "extra-virgin olive oil", + "cilantro stems", + "extra large eggs", + "onions", + "kosher salt", + "spices", + "smoked paprika" + ] + }, + { + "id": 19122, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "paprika", + "minced garlic", + "tomato paste", + "oregano" + ] + }, + { + "id": 13098, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "fresh lime juice", + "jicama" + ] + }, + { + "id": 44573, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "lemon juice", + "salt and ground black pepper", + "tagliatelle", + "olive oil", + "feta cheese crumbles", + "extra-virgin olive oil", + "chopped cilantro fresh" + ] + }, + { + "id": 45458, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "bulgur", + "fresh parsley", + "extra-virgin olive oil", + "fresh lemon juice", + "boiling water", + "green onions", + "garlic cloves", + "chopped fresh mint", + "tomatoes", + "salt", + "cucumber" + ] + }, + { + "id": 26967, + "cuisine": "southern_us", + "ingredients": [ + "bread", + "butter", + "white sugar", + "large eggs", + "vanilla extract", + "pecans", + "light corn syrup", + "light brown sugar", + "cinnamon", + "salt" + ] + }, + { + "id": 4541, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "red pepper", + "salt", + "carrots", + "snow peas", + "chicken stock", + "lime", + "chile pepper", + "rice vermicelli", + "hot sauce", + "cooked shrimp", + "celery ribs", + "curry powder", + "chicken breasts", + "ginger", + "rice vinegar", + "beansprouts", + "ground turmeric", + "sugar", + "broccoli florets", + "vegetable oil", + "garlic", + "oyster sauce", + "onions" + ] + }, + { + "id": 39993, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "pasta water", + "extra-virgin olive oil", + "cracked black pepper", + "spaghetti", + "garlic cloves" + ] + }, + { + "id": 5544, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "spaghetti", + "milk", + "freshly ground pepper", + "crumbles", + "large eggs", + "parmesan cheese", + "scallions" + ] + }, + { + "id": 28983, + "cuisine": "mexican", + "ingredients": [ + "grated parmesan cheese", + "angel hair" + ] + }, + { + "id": 6317, + "cuisine": "chinese", + "ingredients": [ + "five spice", + "pork ribs", + "coriander", + "soy sauce", + "rice wine", + "red chili peppers", + "hoisin sauce", + "honey", + "sesame oil" + ] + }, + { + "id": 18280, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "vegetable broth", + "celery", + "garlic powder", + "creole seasoning", + "black pepper", + "green pepper", + "onions", + "red kidney beans", + "extra-virgin olive oil", + "thyme" + ] + }, + { + "id": 8762, + "cuisine": "italian", + "ingredients": [ + "ladyfingers", + "vin santo", + "orange", + "coffee", + "sugar", + "mascarpone", + "vanilla beans", + "bittersweet chocolate" + ] + }, + { + "id": 16910, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "bay leaves", + "greens", + "white vinegar", + "quinoa", + "garlic cloves", + "water", + "yellow onion", + "black peppercorns", + "bone-in chicken", + "ghee" + ] + }, + { + "id": 2945, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "mushrooms", + "pepper", + "chicken breasts", + "clove", + "sweet onion", + "salt", + "chicken broth", + "flour", + "oil" + ] + }, + { + "id": 34169, + "cuisine": "italian", + "ingredients": [ + "dough", + "Italian parsley leaves", + "ground black pepper", + "fine sea salt", + "pinenuts", + "extra-virgin olive oil", + "lemon" + ] + }, + { + "id": 25017, + "cuisine": "indian", + "ingredients": [ + "wheat bread", + "green chilies", + "onions", + "ravva", + "rice flour", + "curry leaves", + "curds", + "salt", + "mustard seeds" + ] + }, + { + "id": 15000, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "spices", + "scallions", + "tomatoes", + "sesame oil", + "persian cucumber", + "arugula", + "soy sauce", + "rice vinegar", + "beansprouts", + "eggs", + "ramen noodles", + "ear of corn" + ] + }, + { + "id": 22073, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "cooking oil", + "sesame oil", + "ginger", + "oyster sauce", + "garlic shoots", + "shiitake", + "spring onions", + "ground pork", + "oil", + "eggs", + "light soy sauce", + "lettuce leaves", + "baby spinach", + "dried shiitake mushrooms", + "water", + "bay leaves", + "wonton wrappers", + "salt", + "black vinegar" + ] + }, + { + "id": 29650, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "grated parmesan cheese", + "crushed red pepper", + "black pepper", + "flour", + "garlic cloves", + "olive oil", + "cooking spray", + "onions", + "fresh basil", + "pork tenderloin", + "salt" + ] + }, + { + "id": 45166, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime juice", + "rice vinegar", + "peanut oil", + "soy sauce", + "ginger", + "peanut butter", + "brown sugar", + "peanuts", + "red curry paste", + "coconut milk", + "water", + "garlic", + "chili sauce" + ] + }, + { + "id": 47626, + "cuisine": "filipino", + "ingredients": [ + "egg yolks", + "white sugar", + "melted butter", + "all-purpose flour", + "salt", + "water", + "flour for dusting" + ] + }, + { + "id": 45277, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "salt", + "mayonaise", + "half & half", + "lemon juice", + "celery salt", + "vinegar", + "oil", + "sugar", + "onion powder", + "cabbage" + ] + }, + { + "id": 20663, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "white vinegar", + "garlic", + "sugar", + "salt", + "pickling cucumbers" + ] + }, + { + "id": 1983, + "cuisine": "italian", + "ingredients": [ + "sugar", + "strawberries", + "balsamic vinegar" + ] + }, + { + "id": 12832, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "peeled fresh ginger", + "gluten", + "fresh lime juice", + "rice stick noodles", + "basil leaves", + "shallots", + "thai chile", + "sugar", + "lettuce leaves", + "vegetable oil", + "garlic cloves", + "mint leaves", + "boneless skinless chicken breasts", + "cilantro" + ] + }, + { + "id": 38016, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "fennel bulb", + "garlic cloves", + "pancetta", + "olive oil", + "salt", + "onions", + "water", + "parmigiano reggiano cheese", + "California bay leaves", + "chicken stock", + "swiss chard", + "white beans" + ] + }, + { + "id": 12959, + "cuisine": "filipino", + "ingredients": [ + "lemon grass", + "rice", + "tomatoes", + "garlic", + "squash", + "ginger", + "okra", + "leaves", + "salt", + "green papaya" + ] + }, + { + "id": 37382, + "cuisine": "italian", + "ingredients": [ + "water", + "extra-virgin olive oil", + "black peppercorns", + "red wine vinegar", + "boiling onions", + "sugar", + "dry red wine", + "California bay leaves", + "balsamic vinegar", + "salt" + ] + }, + { + "id": 35024, + "cuisine": "chinese", + "ingredients": [ + "flour", + "oil", + "yeast", + "soy sauce", + "garlic", + "corn starch", + "sugar", + "vegetable oil", + "oyster sauce", + "water", + "barbecued pork", + "boiling water" + ] + }, + { + "id": 40134, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "pumpkin", + "water", + "peppercorns", + "sugar", + "garlic", + "cooking oil" + ] + }, + { + "id": 43862, + "cuisine": "jamaican", + "ingredients": [ + "fresh cilantro", + "pineapple", + "ground allspice", + "salmon fillets", + "olive oil", + "salt", + "ground cumin", + "dried thyme", + "purple onion", + "mango", + "canned black beans", + "cinnamon", + "cayenne pepper" + ] + }, + { + "id": 42645, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "water", + "quinoa", + "cinnamon sticks", + "molasses", + "coconut", + "salt", + "onions", + "coconut oil", + "curry powder", + "garlic", + "coconut milk", + "red lentils", + "pepper", + "fresh cilantro", + "ground coriander" + ] + }, + { + "id": 49522, + "cuisine": "italian", + "ingredients": [ + "taleggio", + "prosciutto", + "country bread", + "asiago" + ] + }, + { + "id": 24131, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "curry powder", + "yellow bell pepper", + "cilantro leaves", + "yellow mustard seeds", + "yukon gold potatoes", + "garlic", + "cumin seed", + "yellow summer squash", + "corn kernels", + "cauliflower florets", + "yellow onion", + "chicken broth", + "water", + "butter", + "salt", + "carrots" + ] + }, + { + "id": 30385, + "cuisine": "french", + "ingredients": [ + "sugar", + "salt", + "melted butter", + "whole wheat flour", + "eggs", + "vanilla", + "milk" + ] + }, + { + "id": 16600, + "cuisine": "italian", + "ingredients": [ + "fennel bulb", + "diced tomatoes", + "salt", + "fresh parsley", + "black pepper", + "baby spinach", + "garlic", + "escarole", + "fresh basil", + "fresh thyme", + "vegetable broth", + "red bell pepper", + "zucchini", + "crushed red pepper flakes", + "fresh oregano", + "onions" + ] + }, + { + "id": 36107, + "cuisine": "french", + "ingredients": [ + "french bread", + "large egg whites", + "deli ham", + "honey mustard", + "cooking spray", + "fat free milk", + "reduced fat swiss cheese" + ] + }, + { + "id": 31974, + "cuisine": "vietnamese", + "ingredients": [ + "unsweetened coconut milk", + "fresh ginger", + "rice noodles", + "medium shrimp", + "canola oil", + "lemongrass", + "shallots", + "ground coriander", + "asian fish sauce", + "macadamia nuts", + "lime wedges", + "carrots", + "ground turmeric", + "light brown sugar", + "jalapeno chilies", + "salt", + "onions" + ] + }, + { + "id": 20336, + "cuisine": "greek", + "ingredients": [ + "garbanzo beans", + "salad dressing", + "feta cheese crumbles", + "radishes", + "bows", + "mayonaise", + "cucumber" + ] + }, + { + "id": 16729, + "cuisine": "mexican", + "ingredients": [ + "dried lentils", + "olive oil", + "salsa", + "sour cream", + "avocado", + "fresh cilantro", + "grating cheese", + "chopped onion", + "ground cumin", + "lettuce", + "lime juice", + "chili powder", + "tortilla shells", + "oregano", + "tomatoes", + "corn", + "vegetable broth", + "garlic cloves" + ] + }, + { + "id": 16814, + "cuisine": "mexican", + "ingredients": [ + "enchilada sauce", + "chicken" + ] + }, + { + "id": 11709, + "cuisine": "chinese", + "ingredients": [ + "tea cake", + "eggs", + "five spice" + ] + }, + { + "id": 16248, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "water", + "epazote", + "corn tortillas", + "white onion", + "large eggs", + "garlic cloves", + "cider vinegar", + "vegetable oil", + "pumpkin seed oil", + "habanero chile", + "zucchini", + "pumpkin seeds" + ] + }, + { + "id": 9462, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "parmesan cheese", + "hoisin sauce", + "apple cider vinegar", + "cheese", + "fresh oregano", + "sour cream", + "chicken", + "soy sauce", + "hot pepper sauce", + "chicken breasts", + "grating cheese", + "salt", + "oil", + "stir fry vegetable blend", + "fresh basil", + "vegetables", + "macaroni", + "red pepper flakes", + "garlic", + "rice", + "onions", + "catalina dressing", + "pepper", + "tortillas", + "chili powder", + "worcestershire sauce", + "salsa", + "garlic cloves", + "italian salad dressing" + ] + }, + { + "id": 25707, + "cuisine": "greek", + "ingredients": [ + "pita bread", + "large garlic cloves", + "boneless skinless chicken thigh fillets", + "greek yogurt", + "pepper", + "white wine vinegar", + "lemon juice", + "black pepper", + "extra-virgin olive oil", + "fresh parsley leaves", + "dried oregano", + "tomatoes", + "spanish onion", + "salt", + "cucumber" + ] + }, + { + "id": 37678, + "cuisine": "korean", + "ingredients": [ + "vegetable oil spray", + "jalapeno chilies", + "kochujang", + "sugar", + "ground black pepper", + "lettuce leaves", + "garlic cloves", + "fresh ginger", + "mirin", + "sesame oil", + "toasted sesame seeds", + "soy sauce", + "asian pear", + "green onions", + "butterflied leg of lamb" + ] + }, + { + "id": 1661, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "peanuts", + "crushed garlic", + "oil", + "coriander", + "rice sticks", + "shredded cabbage", + "salt", + "beansprouts", + "chili flakes", + "tamarind", + "green onions", + "firm tofu", + "chillies", + "water", + "palm sugar", + "purple onion", + "carrots" + ] + }, + { + "id": 19577, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "green onions", + "sugar syrup", + "fresh lime", + "extra-virgin olive oil", + "fresh coriander", + "sesame oil", + "garlic cloves", + "fish sauce", + "fresh ginger", + "tamari soy sauce" + ] + }, + { + "id": 7326, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "shredded cheddar cheese", + "roma tomatoes", + "enchilada sauce", + "canned black beans", + "quinoa", + "cilantro leaves", + "green chile", + "corn kernels", + "chili powder", + "cumin", + "kosher salt", + "ground black pepper", + "shredded mozzarella cheese" + ] + }, + { + "id": 33220, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "fresh lemon juice", + "extra-virgin olive oil", + "beef roast", + "fresh thyme leaves", + "dried oregano", + "garlic cloves" + ] + }, + { + "id": 47803, + "cuisine": "irish", + "ingredients": [ + "caraway seeds", + "baking soda", + "all purpose unbleached flour", + "dark brown sugar", + "whole wheat flour", + "butter", + "salt", + "eggs", + "baking powder", + "raisins", + "ground cinnamon", + "granulated sugar", + "buttermilk" + ] + }, + { + "id": 11048, + "cuisine": "thai", + "ingredients": [ + "lime", + "extra-virgin olive oil", + "fresh mint", + "chile paste", + "ground black pepper", + "garlic cloves", + "low sodium soy sauce", + "honey", + "rice vinegar", + "kosher salt", + "fresh ginger", + "squid" + ] + }, + { + "id": 20043, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "granulated sugar", + "apples", + "lemon juice", + "water", + "egg whites", + "salt", + "brown sugar", + "lemon zest", + "vanilla extract", + "caramel sauce", + "nutmeg", + "almond flour", + "cinnamon", + "grated nutmeg" + ] + }, + { + "id": 41558, + "cuisine": "thai", + "ingredients": [ + "large eggs", + "scallions", + "medium shrimp", + "chiles", + "large garlic cloves", + "fresh lime juice", + "canola oil", + "thai noodles", + "roasted peanuts", + "chopped cilantro", + "light brown sugar", + "shallots", + "beansprouts", + "asian fish sauce" + ] + }, + { + "id": 136, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "cracked black pepper", + "marinara sauce", + "chicken", + "olive oil", + "garlic cloves", + "pasta", + "mushrooms" + ] + }, + { + "id": 1781, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "tequila", + "lager beer", + "limeade concentrate", + "lime" + ] + }, + { + "id": 35735, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "chopped celery", + "corn bread", + "large eggs", + "rubbed sage", + "large egg whites", + "chopped onion", + "buttermilk biscuits", + "cooking spray", + "low salt chicken broth" + ] + }, + { + "id": 17573, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "lean ground beef", + "ground cayenne pepper", + "garlic powder", + "ground coriander", + "prepar salsa", + "ground cumin" + ] + }, + { + "id": 26474, + "cuisine": "british", + "ingredients": [ + "nutmeg", + "butter", + "white sugar", + "milk", + "ground almonds", + "cream sherry", + "preserves", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 8611, + "cuisine": "british", + "ingredients": [ + "heavy cream", + "bread crumbs", + "lemon juice", + "lemon", + "pastry", + "golden syrup" + ] + }, + { + "id": 9287, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "garlic", + "orange", + "dry white wine", + "duck drumsticks", + "pork belly", + "fresh bay leaves", + "fine sea salt", + "coriander seeds", + "coarse sea salt" + ] + }, + { + "id": 37456, + "cuisine": "french", + "ingredients": [ + "shallots", + "salt", + "large egg yolks", + "fresh tarragon", + "black peppercorns", + "butter", + "hot sauce", + "dry white wine", + "white wine vinegar" + ] + }, + { + "id": 6935, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "shredded cheese", + "lettuce", + "salsa", + "ground beef", + "refried beans", + "sour cream", + "tomato sauce", + "taco seasoning" + ] + }, + { + "id": 49630, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "napa cabbage", + "red bell pepper", + "ground black pepper", + "rice vermicelli", + "medium shrimp", + "lemongrass", + "cilantro", + "fresh mint", + "fish sauce", + "bibb lettuce", + "carrots", + "rice paper" + ] + }, + { + "id": 37674, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "low sodium chicken broth", + "swiss chard", + "carrots", + "kosher salt", + "tortellini", + "grated parmesan cheese", + "chicken" + ] + }, + { + "id": 48698, + "cuisine": "chinese", + "ingredients": [ + "sugar pea", + "large garlic cloves", + "Sriracha", + "oil", + "fresh ginger root", + "peanut oil", + "soy sauce", + "black sesame seeds" + ] + }, + { + "id": 46538, + "cuisine": "irish", + "ingredients": [ + "russet", + "ground black pepper", + "eggs", + "salt", + "plain flour", + "butter", + "cream" + ] + }, + { + "id": 22210, + "cuisine": "french", + "ingredients": [ + "ground pepper", + "butter", + "white wine vinegar", + "dry white wine", + "dry mustard", + "beef broth", + "dijon mustard", + "dry sherry", + "salt", + "brandy", + "shallots", + "whipping cream", + "fat" + ] + }, + { + "id": 32809, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "soy sauce", + "nori", + "frozen edamame beans", + "red miso", + "firm tofu" + ] + }, + { + "id": 16718, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "honey", + "salt", + "carrots", + "cumin", + "pepper", + "vegetable oil", + "garlic cloves", + "onions", + "black pepper", + "dried apricot", + "gingerroot", + "fresh parsley", + "water", + "cinnamon", + "lemon juice", + "chicken thighs" + ] + }, + { + "id": 17412, + "cuisine": "greek", + "ingredients": [ + "nonfat yogurt", + "salt", + "garlic", + "garbanzo beans", + "fresh lemon juice" + ] + }, + { + "id": 42102, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "large garlic cloves", + "sugar", + "rice vinegar", + "low sodium soy sauce", + "crushed red pepper", + "green cabbage", + "red cabbage", + "onions" + ] + }, + { + "id": 27981, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "sesame oil", + "beef rib short", + "mung bean sprouts", + "granulated sugar", + "salt", + "garlic cloves", + "fresh ginger", + "rice noodles", + "scallions", + "low sodium soy sauce", + "Shaoxing wine", + "chinese cabbage", + "bok choy" + ] + }, + { + "id": 1707, + "cuisine": "vietnamese", + "ingredients": [ + "baby greens", + "roasted peanuts", + "fresh mint", + "rice noodles", + "carrots", + "asian fish sauce", + "lime juice", + "chili sauce", + "red bell pepper", + "rice paper", + "cooked chicken", + "english cucumber", + "cooked shrimp" + ] + }, + { + "id": 8289, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "boneless pork loin", + "tomatoes", + "green onions", + "white sugar", + "brandy", + "corn starch", + "eggs", + "salt", + "canola oil" + ] + }, + { + "id": 21041, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "salt", + "pitted black olives", + "grated parmesan cheese", + "white sugar", + "fresh rosemary", + "olive oil", + "all-purpose flour", + "warm water", + "rapid rise yeast", + "plum tomatoes" + ] + }, + { + "id": 15288, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "eggs", + "flour", + "milk", + "salt", + "cooking oil", + "cornmeal" + ] + }, + { + "id": 18711, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "salmon fillets", + "white sugar", + "light soy sauce", + "sake", + "vegetable oil" + ] + }, + { + "id": 1222, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "kosher salt", + "lemon juice", + "freshly ground pepper", + "chorizo", + "greens" + ] + }, + { + "id": 44918, + "cuisine": "moroccan", + "ingredients": [ + "flank steak", + "purple onion", + "chopped fresh mint", + "brown sugar", + "red pepper", + "garlic cloves", + "chopped cilantro fresh", + "olive oil", + "crushed red pepper", + "fresh parsley", + "ground cumin", + "lime zest", + "lime wedges", + "salt", + "yellow peppers" + ] + }, + { + "id": 36534, + "cuisine": "british", + "ingredients": [ + "heavy cream", + "sweet sherry", + "sugar", + "strawberries", + "large egg whites" + ] + }, + { + "id": 19563, + "cuisine": "mexican", + "ingredients": [ + "white corn", + "green onions", + "chopped cilantro fresh", + "olive oil", + "baked tortilla chips", + "chopped green chilies", + "garlic cloves", + "black beans", + "red wine vinegar", + "plum tomatoes" + ] + }, + { + "id": 6507, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "peeled fresh ginger", + "fresh lime juice", + "curry powder", + "lime wedges", + "chopped cilantro fresh", + "baby spinach leaves", + "green onions", + "chicken thighs", + "lemongrass", + "low salt chicken broth" + ] + }, + { + "id": 32596, + "cuisine": "greek", + "ingredients": [ + "butter", + "sugar", + "corn starch", + "Betty Crocker™ oatmeal cookie mix", + "Yoplait® Greek 100 blackberry pie yogurt", + "blackberries" + ] + }, + { + "id": 19315, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "baking powder", + "peaches", + "all-purpose flour", + "milk", + "salt", + "granulated sugar", + "margarine" + ] + }, + { + "id": 38878, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "sea salt", + "yellow onion", + "chile powder", + "boneless skinless chicken breasts", + "canned tomatoes", + "ground cumin", + "quick cooking brown rice", + "extra-virgin olive oil", + "sliced green olives", + "green bell pepper", + "queso fresco", + "cilantro leaves" + ] + }, + { + "id": 17750, + "cuisine": "chinese", + "ingredients": [ + "sake", + "hoisin sauce", + "firm tofu", + "corn starch", + "soy sauce", + "ginger", + "oil", + "minced pork", + "sugar", + "sesame oil", + "scallions", + "chicken-flavored soup powder", + "water", + "chili bean sauce", + "garlic cloves" + ] + }, + { + "id": 39602, + "cuisine": "greek", + "ingredients": [ + "roma tomatoes", + "cucumber", + "purple onion", + "black olives", + "sun-dried tomatoes in oil", + "feta cheese crumbles" + ] + }, + { + "id": 2344, + "cuisine": "mexican", + "ingredients": [ + "vanilla beans", + "orange liqueur", + "eggs", + "heavy cream", + "cream", + "orange peel", + "egg yolks", + "white sugar" + ] + }, + { + "id": 31434, + "cuisine": "spanish", + "ingredients": [ + "vanilla extract", + "sugar", + "corn starch", + "unsweetened almond milk", + "lemon rind", + "egg yolks", + "cinnamon sticks" + ] + }, + { + "id": 20272, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "fresh ginger", + "egg whites", + "rice vinegar", + "corn starch", + "water", + "baking soda", + "sesame oil", + "scallions", + "soy sauce", + "sesame seeds", + "boneless skinless chicken breasts", + "all-purpose flour", + "light brown sugar", + "honey", + "chili paste", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 3845, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "ground black pepper", + "ground coriander", + "medium shrimp", + "avocado", + "lime juice", + "chili powder", + "corn tortillas", + "minced garlic", + "red cabbage", + "sour cream", + "ground cumin", + "ground paprika", + "olive oil", + "salt", + "chopped cilantro" + ] + }, + { + "id": 13520, + "cuisine": "southern_us", + "ingredients": [ + "ground beef", + "all-purpose flour", + "vidalia onion", + "beef broth" + ] + }, + { + "id": 20481, + "cuisine": "italian", + "ingredients": [ + "granulated sugar", + "all-purpose flour", + "vegetable oil", + "baking powder", + "white sugar", + "dry red wine" + ] + }, + { + "id": 33998, + "cuisine": "mexican", + "ingredients": [ + "bell pepper", + "diced tomatoes", + "cumin", + "garlic powder", + "chili powder", + "onions", + "lime juice", + "boneless skinless chicken breasts", + "salt", + "diced green chilies", + "vegetable oil", + "dried oregano" + ] + }, + { + "id": 8724, + "cuisine": "indian", + "ingredients": [ + "honey", + "plain yogurt", + "instant yeast", + "warm water", + "olive oil", + "kosher salt", + "all-purpose flour" + ] + }, + { + "id": 45598, + "cuisine": "italian", + "ingredients": [ + "eggs", + "milk", + "grated parmesan cheese", + "ground beef", + "tomato sauce", + "garlic powder", + "garlic", + "dried oregano", + "mozzarella cheese", + "lasagna noodles", + "provolone cheese", + "pasta sauce", + "olive oil", + "ricotta cheese", + "onions" + ] + }, + { + "id": 9539, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "unsalted butter", + "vanilla extract", + "sugar", + "egg yolks", + "all-purpose flour", + "shortening", + "egg whites", + "salt", + "cream of tartar", + "milk", + "ice water", + "key lime juice" + ] + }, + { + "id": 6955, + "cuisine": "mexican", + "ingredients": [ + "salt", + "whole milk", + "unsweetened cocoa powder", + "sweet chocolate" + ] + }, + { + "id": 34286, + "cuisine": "italian", + "ingredients": [ + "white vinegar", + "sugar", + "chiles", + "kosher salt" + ] + }, + { + "id": 33854, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "vegetable oil", + "onions", + "ground ginger", + "lamb stew meat", + "all-purpose flour", + "ground red pepper", + "diced tomatoes", + "minced garlic", + "golden delicious apples", + "beef broth" + ] + }, + { + "id": 14395, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "balsamic vinegar", + "fresh basil leaves", + "grated parmesan cheese", + "garlic", + "pepper", + "extra-virgin olive oil", + "orzo pasta", + "salt" + ] + }, + { + "id": 7087, + "cuisine": "french", + "ingredients": [ + "dried thyme", + "garlic", + "celery", + "salmon fillets", + "cooking oil", + "lentils", + "onions", + "canned low sodium chicken broth", + "ground black pepper", + "salt", + "bay leaf", + "crushed tomatoes", + "bacon", + "carrots" + ] + }, + { + "id": 14870, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "green onions", + "large garlic cloves", + "garlic cloves", + "thin rice stick noodles", + "sugar", + "shredded carrots", + "vegetable oil", + "new york strip steaks", + "fresh lime juice", + "kosher salt", + "sliced cucumber", + "napa cabbage", + "vinaigrette", + "chopped cilantro", + "fresh ginger", + "shallots", + "vietnamese fish sauce", + "fresh mint", + "skirt steak" + ] + }, + { + "id": 32518, + "cuisine": "mexican", + "ingredients": [ + "no-salt-added diced tomatoes", + "KRAFT Mexican Style Finely Shredded Four Cheese", + "flour tortillas", + "cooked chicken breasts", + "black beans", + "Philadelphia Cream Cheese", + "green onions" + ] + }, + { + "id": 7709, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "water", + "lamb shoulder", + "ground coriander", + "cinnamon sticks", + "ground cloves", + "lemon zest", + "cayenne pepper", + "fresh lemon juice", + "onions", + "saffron threads", + "kosher salt", + "extra-virgin olive oil", + "sweet paprika", + "carrots", + "ground cumin", + "picholine olives", + "ground black pepper", + "cilantro leaves", + "garlic cloves", + "flat leaf parsley" + ] + }, + { + "id": 17757, + "cuisine": "french", + "ingredients": [ + "red potato", + "basil leaves", + "salt", + "olive oil", + "garlic", + "black pepper", + "chopped fresh thyme", + "gorgonzola", + "tomatoes", + "large eggs", + "white wine vinegar" + ] + }, + { + "id": 43505, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "bourbon whiskey", + "vanilla extract", + "large egg yolks", + "whipped cream", + "corn starch", + "golden brown sugar", + "butter", + "salt", + "pie crust", + "large eggs", + "heavy cream", + "confectioners sugar" + ] + }, + { + "id": 25001, + "cuisine": "italian", + "ingredients": [ + "white vinegar", + "olive oil", + "balsamic vinegar", + "black peppercorns", + "basil leaves", + "onions", + "clove", + "bay leaves", + "large garlic cloves", + "sugar", + "dry white wine" + ] + }, + { + "id": 42837, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "rice noodles", + "carrots", + "lean minced beef", + "mushrooms", + "garlic", + "sweet soy", + "beef stock", + "red capsicum", + "onions", + "curry powder", + "capsicum", + "chinese cabbage" + ] + }, + { + "id": 31061, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "garlic salt", + "egg whites", + "cornmeal", + "tomatillos", + "ground black pepper", + "herbes de provence" + ] + }, + { + "id": 10661, + "cuisine": "southern_us", + "ingredients": [ + "green beans", + "unsalted butter", + "grated lemon zest", + "fresh rosemary", + "dried rosemary" + ] + }, + { + "id": 7581, + "cuisine": "indian", + "ingredients": [ + "sugar", + "crushed ice", + "water", + "fresh lime juice", + "vodka", + "tamarind concentrate", + "orange", + "pineapple slices" + ] + }, + { + "id": 20158, + "cuisine": "mexican", + "ingredients": [ + "chopped green chilies", + "salsa", + "refried beans", + "sliced black olives", + "sausages", + "tomatoes", + "Mexican cheese blend", + "tortilla chips", + "taco seasoning mix", + "green onions", + "sour cream" + ] + }, + { + "id": 36901, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "grated Gruyère cheese", + "artichok heart marin", + "all-purpose flour", + "sourdough bread", + "asiago", + "rolls", + "freshly grated parmesan", + "garlic", + "goat cheese" + ] + }, + { + "id": 25592, + "cuisine": "greek", + "ingredients": [ + "whole wheat pasta", + "salt", + "greek-style vinaigrette", + "peppercorns", + "green bell pepper", + "cucumber", + "vine ripened tomatoes" + ] + }, + { + "id": 40626, + "cuisine": "mexican", + "ingredients": [ + "large egg whites", + "1% low-fat milk", + "all-purpose flour", + "ground coriander", + "shredded Monterey Jack cheese", + "green chile", + "ground red pepper", + "shredded sharp cheddar cheese", + "chopped onion", + "corn tortillas", + "ground cumin", + "egg substitute", + "chicken breasts", + "salt", + "beer", + "ripe olives", + "tomatoes", + "cooking spray", + "non-fat sour cream", + "salsa", + "garlic cloves", + "sliced green onions" + ] + }, + { + "id": 36101, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "grits", + "shredded cheddar cheese", + "beer", + "deveined shrimp", + "corn", + "chopped parsley" + ] + }, + { + "id": 5050, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "butter", + "scallions", + "brisket", + "flour", + "garlic", + "ground cumin", + "chicken stock", + "cayenne", + "paprika", + "cooked white rice", + "brown ale", + "vegetable oil", + "salt" + ] + }, + { + "id": 24146, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "flour", + "grated lemon zest", + "flat leaf parsley", + "pepper", + "garlic", + "diced celery", + "browning", + "chicken stock", + "dry white wine", + "veal shanks", + "onions", + "fresh thyme", + "salt", + "carrots", + "chopped garlic" + ] + }, + { + "id": 1898, + "cuisine": "chinese", + "ingredients": [ + "extra lean ground beef", + "char siu sauce", + "garlic", + "lime", + "crushed red pepper flakes", + "vermicelli noodles", + "broccolini", + "sunflower oil", + "roasted peanuts", + "Shaoxing wine", + "ginger" + ] + }, + { + "id": 22512, + "cuisine": "italian", + "ingredients": [ + "lemon", + "onions", + "fresh rosemary", + "salt", + "sage leaves", + "extra-virgin olive oil", + "chicken", + "dry white wine", + "freshly ground pepper" + ] + }, + { + "id": 8797, + "cuisine": "korean", + "ingredients": [ + "water", + "canola oil", + "salt", + "pork", + "cabbage", + "sesame oil" + ] + }, + { + "id": 17483, + "cuisine": "mexican", + "ingredients": [ + "masa harina", + "water", + "salt" + ] + }, + { + "id": 9830, + "cuisine": "thai", + "ingredients": [ + "Thai red curry paste", + "coconut milk", + "rump steak" + ] + }, + { + "id": 5389, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes with juice", + "boneless skinless chicken breast halves", + "bacon", + "okra", + "water", + "cayenne pepper", + "long grain white rice", + "diced tomatoes", + "onions" + ] + }, + { + "id": 1216, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "garlic", + "extra-virgin olive oil", + "kosher salt", + "fresh basil leaves", + "tomatoes", + "linguine" + ] + }, + { + "id": 28564, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "peeled fresh ginger", + "rolls", + "oyster sauce", + "celery ribs", + "shell-on shrimp", + "salt", + "scallions", + "soy sauce", + "fresh shiitake mushrooms", + "peanut oil", + "carrots", + "large eggs", + "sesame oil", + "chinese roast pork", + "chopped garlic" + ] + }, + { + "id": 36299, + "cuisine": "italian", + "ingredients": [ + "parsley flakes", + "french bread", + "dried oregano", + "chicken broth", + "olive oil", + "garlic cloves", + "tomatoes", + "grated parmesan cheese", + "olive oil flavored cooking spray", + "pepper", + "balsamic vinegar" + ] + }, + { + "id": 9106, + "cuisine": "southern_us", + "ingredients": [ + "cold water", + "cayenne", + "paprika", + "lard", + "black pepper", + "vegetable oil", + "garlic", + "chicken", + "granulated garlic", + "jalapeno chilies", + "cilantro", + "dried oregano", + "white vinegar", + "kosher salt", + "vegetable shortening", + "all-purpose flour" + ] + }, + { + "id": 39103, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "walnuts", + "coarse salt", + "fresh lemon juice", + "basil leaves", + "garlic cloves", + "ground pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 5685, + "cuisine": "brazilian", + "ingredients": [ + "mayonaise", + "peas", + "carrots", + "corn", + "green pepper", + "onions", + "hearts of palm", + "apples", + "fresh parsley", + "green olives", + "raisins", + "ham", + "cooked chicken breasts" + ] + }, + { + "id": 21494, + "cuisine": "italian", + "ingredients": [ + "lemon", + "artichokes", + "olive oil" + ] + }, + { + "id": 4922, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "spring onions", + "minced pork", + "fresh coriander", + "Thai red curry paste", + "sweet chili sauce", + "lime wedges", + "herbs", + "cucumber salad" + ] + }, + { + "id": 8850, + "cuisine": "southern_us", + "ingredients": [ + "white corn syrup", + "white sugar", + "peanuts", + "vanilla", + "water", + "butter", + "baking soda", + "salt" + ] + }, + { + "id": 25271, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "orange juice", + "tomatoes", + "tomatillos", + "habanero pepper", + "red bell pepper", + "pepper", + "purple onion" + ] + }, + { + "id": 21447, + "cuisine": "mexican", + "ingredients": [ + "yellow corn meal", + "garlic powder", + "green onions", + "dry bread crumbs", + "chopped cilantro fresh", + "lump crab meat", + "jalapeno chilies", + "non-fat sour cream", + "red bell pepper", + "fat free yogurt", + "minced onion", + "vegetable broth", + "garlic cloves", + "avocado", + "large egg whites", + "cooking spray", + "salt", + "fresh lime juice" + ] + }, + { + "id": 45076, + "cuisine": "thai", + "ingredients": [ + "mussels", + "minced ginger", + "lime wedges", + "sliced green onions", + "minced garlic", + "dry white wine", + "coconut milk", + "sweet chili sauce", + "olive oil", + "salt", + "clams", + "lime juice", + "shallots", + "fresh basil leaves" + ] + }, + { + "id": 31025, + "cuisine": "italian", + "ingredients": [ + "leaves", + "chopped celery", + "fresh basil leaves", + "chopped green bell pepper", + "bocconcini", + "cherry tomatoes", + "extra-virgin olive oil", + "fresh lemon juice", + "ground black pepper", + "salt", + "arugula" + ] + }, + { + "id": 3442, + "cuisine": "italian", + "ingredients": [ + "prunes", + "bread crumb fresh", + "dry white wine", + "pork shoulder", + "eggs", + "ground black pepper", + "grated nutmeg", + "pancetta", + "chestnuts", + "parmigiano reggiano cheese", + "turkey breast", + "fresh rosemary", + "kosher salt", + "extra-virgin olive oil" + ] + }, + { + "id": 18999, + "cuisine": "cajun_creole", + "ingredients": [ + "ground red pepper", + "fresh lemon juice", + "white wine", + "salt", + "butter", + "egg yolks", + "ham" + ] + }, + { + "id": 39527, + "cuisine": "mexican", + "ingredients": [ + "cornflake cereal", + "vanilla ice cream", + "ground cinnamon", + "oil", + "egg whites" + ] + }, + { + "id": 42582, + "cuisine": "japanese", + "ingredients": [ + "shredded carrots", + "rice vinegar", + "sliced green onions", + "low sodium soy sauce", + "sesame oil", + "red bell pepper", + "peeled fresh ginger", + "soba noodles", + "cooked turkey", + "unsalted dry roast peanuts", + "chopped cilantro fresh" + ] + }, + { + "id": 3992, + "cuisine": "southern_us", + "ingredients": [ + "rhubarb", + "baking soda", + "salt", + "sugar", + "low-fat buttermilk", + "strawberries", + "yellow corn meal", + "unsalted butter", + "all-purpose flour", + "ground cloves", + "baking powder" + ] + }, + { + "id": 20626, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "salt", + "crushed garlic", + "sour cream", + "pepper", + "cucumber", + "tomatoes", + "paprika", + "ground cumin" + ] + }, + { + "id": 23938, + "cuisine": "mexican", + "ingredients": [ + "all-purpose flour", + "warm water", + "lard", + "salt" + ] + }, + { + "id": 8482, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "roasted red peppers", + "chopped onion", + "olive oil", + "cheese ravioli", + "sugar", + "red wine vinegar", + "garlic cloves", + "fresh parmesan cheese", + "vegetable broth" + ] + }, + { + "id": 15832, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "sea salt", + "onions", + "fresh cilantro", + "chili powder", + "ancho chile pepper", + "dried oregano", + "avocado", + "flour tortillas", + "garlic cloves", + "skirt steak", + "lime", + "onion powder", + "chipotles in adobo", + "canola oil" + ] + }, + { + "id": 13963, + "cuisine": "mexican", + "ingredients": [ + "bell pepper", + "vegetable broth", + "Mexican cheese", + "green onions", + "cayenne pepper", + "onions", + "jalapeno chilies", + "garlic", + "cooked quinoa", + "black beans", + "chili powder", + "oil", + "cumin" + ] + }, + { + "id": 23258, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "fresh raspberries", + "vanilla extract", + "peach nectar", + "peaches", + "seltzer water" + ] + }, + { + "id": 23772, + "cuisine": "southern_us", + "ingredients": [ + "salt and ground black pepper", + "heavy cream", + "boneless chop pork", + "garlic powder", + "onion soup mix", + "white wine", + "vegetable oil" + ] + }, + { + "id": 40295, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "rice vinegar", + "hoisin sauce", + "garlic cloves", + "sake", + "sesame oil", + "ketchup", + "vegetable oil" + ] + }, + { + "id": 30605, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "cremini mushrooms", + "unsalted butter", + "salt", + "flat leaf parsley", + "cold water", + "dried porcini mushrooms", + "leeks", + "flour for dusting", + "thyme sprigs", + "black peppercorns", + "minced garlic", + "Italian parsley leaves", + "hot water", + "dough", + "parsley sprigs", + "parmigiano reggiano cheese", + "beef broth", + "shiitake mushroom caps" + ] + }, + { + "id": 856, + "cuisine": "japanese", + "ingredients": [ + "miso paste", + "garlic", + "low sodium soy sauce", + "red pepper flakes", + "fresh ginger root", + "sesame seeds", + "fresh green bean" + ] + }, + { + "id": 19292, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "egg whites", + "condensed milk", + "water", + "butter", + "lime", + "salt", + "graham crackers", + "egg yolks" + ] + }, + { + "id": 22051, + "cuisine": "brazilian", + "ingredients": [ + "large egg whites", + "extra-virgin olive oil", + "potato starch", + "grated parmesan cheese", + "kosher salt", + "tapioca starch", + "large eggs", + "1% low-fat milk" + ] + }, + { + "id": 24415, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "dry red wine", + "garlic cloves", + "tomato sauce", + "large eggs", + "sweet italian sausage", + "dried oregano", + "fresh basil", + "ground black pepper", + "salt", + "onions", + "bread crumb fresh", + "lean ground beef", + "oil" + ] + }, + { + "id": 37417, + "cuisine": "thai", + "ingredients": [ + "green cabbage", + "sweet potatoes", + "peanut sauce", + "udon", + "cilantro sprigs", + "fresh basil leaves", + "green bell pepper", + "daikon", + "red bell pepper", + "romaine lettuce", + "mint sprigs", + "beansprouts" + ] + }, + { + "id": 28197, + "cuisine": "indian", + "ingredients": [ + "green chile", + "fresh ginger", + "garlic", + "green beans", + "olive oil", + "cilantro", + "corn starch", + "onions", + "tumeric", + "garam masala", + "paneer", + "white mushrooms", + "plain yogurt", + "chili powder", + "salt", + "fresh mint" + ] + }, + { + "id": 34885, + "cuisine": "cajun_creole", + "ingredients": [ + "shrimp and crab boil seasoning", + "bay leaves", + "garlic", + "crab boil", + "pepper", + "lemon", + "smoked sausage", + "onions", + "crawfish", + "mushrooms", + "artichokes", + "baby corn", + "red potato", + "orange", + "fresh green bean", + "salt" + ] + }, + { + "id": 14433, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "bow-tie pasta", + "pinenuts", + "garlic", + "fresh mushrooms", + "sun-dried tomatoes", + "cayenne pepper", + "dried basil", + "salt" + ] + }, + { + "id": 18926, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "buttermilk", + "eggs", + "baking powder", + "cayenne pepper", + "yellow corn meal", + "unsalted butter", + "salt", + "cheddar cheese", + "all purpose unbleached flour", + "dark brown sugar" + ] + }, + { + "id": 16558, + "cuisine": "southern_us", + "ingredients": [ + "cream style corn", + "baking powder", + "cornmeal", + "baking soda", + "cooking spray", + "salt", + "dark molasses", + "large eggs", + "vegetable oil", + "large egg whites", + "jalapeno chilies", + "non-fat sour cream" + ] + }, + { + "id": 48835, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "chopped cilantro fresh", + "purple onion", + "fresh lime juice", + "peeled fresh ginger", + "mango" + ] + }, + { + "id": 31619, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "vegetable oil", + "yeast", + "eggs", + "evaporated milk", + "confectioners sugar", + "water", + "salt", + "shortening", + "flour", + "boiling water" + ] + }, + { + "id": 29379, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "low sodium chicken broth", + "arborio rice", + "unsalted butter", + "yellow onion", + "kosher salt", + "dry white wine", + "pesto", + "grated parmesan cheese" + ] + }, + { + "id": 22154, + "cuisine": "greek", + "ingredients": [ + "green bell pepper", + "olive oil", + "red wine vinegar", + "feta cheese crumbles", + "romaine lettuce", + "pork tenderloin", + "fresh oregano", + "onions", + "fresh dill", + "radishes", + "pitted olives", + "cucumber", + "tomatoes", + "fat free yogurt", + "cooking spray", + "garlic cloves", + "chopped fresh mint" + ] + }, + { + "id": 40111, + "cuisine": "mexican", + "ingredients": [ + "powdered sugar", + "orange liqueur", + "lime wedges", + "margarita salt", + "fresh lime juice", + "tequila" + ] + }, + { + "id": 47385, + "cuisine": "italian", + "ingredients": [ + "baguette", + "salt", + "pepper", + "garlic cloves", + "olive oil" + ] + }, + { + "id": 36355, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "mushrooms", + "salt", + "black pepper", + "zucchini", + "balsamic vinegar", + "plum tomatoes", + "fresh basil", + "fresh parmesan cheese", + "chicken breast halves", + "garlic cloves", + "olive oil", + "cooking spray", + "purple onion" + ] + }, + { + "id": 44982, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "fresh thyme", + "garlic", + "olive oil", + "mushrooms", + "fresh parsley", + "marsala wine", + "parmesan cheese", + "farro", + "broth", + "water", + "leeks", + "ricotta" + ] + }, + { + "id": 26301, + "cuisine": "filipino", + "ingredients": [ + "white onion", + "spring onions", + "safflower", + "chicken thighs", + "fish sauce", + "ground black pepper", + "ginger", + "oil", + "chicken stock", + "water", + "lemon", + "rice", + "fried garlic", + "hard-boiled egg", + "garlic", + "chicken livers" + ] + }, + { + "id": 32411, + "cuisine": "french", + "ingredients": [ + "olive oil", + "chips", + "small new potatoes", + "tuna", + "eggs", + "vegetables", + "miso", + "fresh oregano", + "fish", + "dressing", + "feta cheese", + "lettuce leaves", + "salt", + "broiler", + "min", + "asparagus", + "red wine vinegar", + "Equal Sweetener" + ] + }, + { + "id": 27287, + "cuisine": "french", + "ingredients": [ + "milk", + "all-purpose flour", + "pepper", + "salt", + "butter", + "parmesan cheese" + ] + }, + { + "id": 6720, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "ground beef", + "cheese", + "flour tortillas", + "taco bell home originals", + "pinto beans" + ] + }, + { + "id": 9893, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "cooking spray", + "salt", + "olive oil", + "basil", + "red bell pepper", + "black pepper", + "balsamic vinegar", + "goat cheese", + "zucchini", + "purple onion", + "polenta" + ] + }, + { + "id": 27706, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "lemon", + "olive oil", + "coarse salt", + "pasta", + "basil leaves", + "ground black pepper", + "ricotta cheese" + ] + }, + { + "id": 11469, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "white onion", + "salt", + "oyster sauce", + "bok choy", + "white button mushrooms", + "boneless chicken thighs", + "sesame oil", + "oil", + "corn starch", + "chicken stock", + "soy sauce", + "Shaoxing wine", + "dried shiitake mushrooms", + "carrots", + "boiling water", + "fish sauce", + "white pepper", + "garlic", + "chow mein noodles", + "baby corn" + ] + }, + { + "id": 882, + "cuisine": "french", + "ingredients": [ + "water", + "chocolate sauce", + "sugar", + "large eggs", + "vanilla ice cream", + "unsalted butter", + "kosher salt", + "all-purpose flour" + ] + }, + { + "id": 24896, + "cuisine": "cajun_creole", + "ingredients": [ + "hot pepper sauce", + "lemon", + "large shrimp", + "green onions", + "garlic", + "unsalted butter", + "worcestershire sauce", + "pepper", + "cajun seasoning", + "salt" + ] + }, + { + "id": 31712, + "cuisine": "greek", + "ingredients": [ + "green onions", + "cucumber", + "salt", + "plain yogurt", + "dill weed" + ] + }, + { + "id": 42997, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "vanilla ice cream", + "golden delicious apples", + "water", + "light brown sugar", + "frozen pastry puff sheets" + ] + }, + { + "id": 10356, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "worcestershire sauce", + "onions", + "large eggs", + "salt", + "black pepper", + "dry mustard", + "canola oil", + "saltines", + "butter", + "crabmeat" + ] + }, + { + "id": 713, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "new potatoes", + "chopped onion", + "olive oil", + "butter", + "ground cumin", + "andouille sausage", + "green onions", + "red bell pepper", + "ground black pepper", + "salt" + ] + }, + { + "id": 2082, + "cuisine": "spanish", + "ingredients": [ + "mayonaise", + "white wine vinegar", + "white sandwich bread", + "olive oil", + "garlic cloves", + "dried tarragon leaves", + "scallions", + "green bell pepper", + "ice water", + "cucumber" + ] + }, + { + "id": 34969, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "ground cumin", + "ground ginger", + "salt", + "ground red pepper", + "ground cinnamon", + "sweet paprika" + ] + }, + { + "id": 37707, + "cuisine": "indian", + "ingredients": [ + "spinach", + "milk", + "paneer", + "onions", + "minced garlic", + "chili powder", + "jeera", + "ground turmeric", + "asafoetida", + "garam masala", + "curds", + "coriander", + "tomato paste", + "minced ginger", + "kasuri methi", + "ghee" + ] + }, + { + "id": 10868, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "pepper", + "celery seed", + "flour", + "chicken thighs", + "kosher salt", + "salt" + ] + }, + { + "id": 33818, + "cuisine": "french", + "ingredients": [ + "saffron threads", + "dry white wine", + "cognac", + "fresh chives", + "butter", + "mussels", + "shallots", + "fresh lemon juice", + "large egg yolks", + "crème fraîche" + ] + }, + { + "id": 44208, + "cuisine": "greek", + "ingredients": [ + "orange", + "shallots", + "ground lamb", + "olive oil", + "garlic", + "ground black pepper", + "salt pork", + "mint", + "jalapeno chilies", + "greek yogurt" + ] + }, + { + "id": 12049, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "leaves", + "chopped pecans", + "dried basil", + "dried chile peppers", + "collard greens", + "extra-virgin olive oil", + "dried parsley" + ] + }, + { + "id": 2039, + "cuisine": "mexican", + "ingredients": [ + "red cabbage", + "beets", + "celery ribs", + "purple onion", + "sour cream", + "jalapeno chilies", + "low salt chicken broth", + "unsalted butter", + "tortilla chips", + "fresh lime juice" + ] + }, + { + "id": 38519, + "cuisine": "british", + "ingredients": [ + "maple extract", + "whipping cream", + "eggs", + "unsalted butter", + "all-purpose flour", + "sugar", + "baking powder", + "chopped pecans", + "large egg yolks", + "salt" + ] + }, + { + "id": 21701, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "pastry", + "maple flavored extract", + "chopped pecans", + "single crust pie", + "ground nutmeg", + "vanilla extract", + "orange zest", + "eggs", + "dark corn syrup", + "butter", + "sweetened condensed milk", + "brown sugar", + "sweet potatoes", + "salt" + ] + }, + { + "id": 25053, + "cuisine": "cajun_creole", + "ingredients": [ + "french bread", + "sweet pepper", + "canola oil", + "romaine lettuce", + "cajun seasoning", + "fresh parsley", + "green onions", + "cream cheese", + "fat free milk", + "chopped celery", + "large shrimp" + ] + }, + { + "id": 30210, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cannellini beans", + "salt", + "sausage casings", + "grated parmesan cheese", + "garlic", + "green beans", + "pepper", + "low sodium chicken broth", + "pasta shells", + "onions", + "celery ribs", + "swiss chard", + "tomatoes with juice", + "carrots" + ] + }, + { + "id": 43312, + "cuisine": "japanese", + "ingredients": [ + "water", + "short-grain rice" + ] + }, + { + "id": 1378, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "pepper", + "yellow onion", + "celery", + "dry vermouth", + "garlic", + "shrimp", + "andouille sausage", + "salt", + "red bell pepper", + "stock", + "fresh thyme", + "carrots", + "chillies" + ] + }, + { + "id": 41133, + "cuisine": "vietnamese", + "ingredients": [ + "spring onions", + "soy sauce", + "beansprouts", + "vegetable oil", + "medium egg noodles" + ] + }, + { + "id": 48772, + "cuisine": "chinese", + "ingredients": [ + "mandarin oranges", + "shortening", + "semi-sweet chocolate morsels", + "sea salt" + ] + }, + { + "id": 8981, + "cuisine": "mexican", + "ingredients": [ + "shredded lettuce", + "taco shells", + "ground beef", + "tomatoes", + "condensed fiesta nacho cheese soup", + "chili powder", + "onions" + ] + }, + { + "id": 22515, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "diced tomatoes", + "dried currants", + "fusilli", + "onions", + "capers", + "eggplant", + "garlic cloves", + "pinenuts", + "pecorino romano cheese" + ] + }, + { + "id": 43663, + "cuisine": "british", + "ingredients": [ + "all-purpose flour", + "milk", + "eggs", + "salt" + ] + }, + { + "id": 34008, + "cuisine": "japanese", + "ingredients": [ + "garlic paste", + "garam masala", + "salt", + "oil", + "amchur", + "potatoes", + "green chilies", + "ground turmeric", + "water", + "coriander powder", + "cilantro leaves", + "onions", + "tomatoes", + "eggplant", + "chili powder", + "cumin seed" + ] + }, + { + "id": 39188, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "chopped onion", + "pesto", + "large garlic cloves", + "olive oil", + "diced tomatoes", + "fresh basil", + "grated parmesan cheese", + "spaghetti" + ] + }, + { + "id": 6679, + "cuisine": "brazilian", + "ingredients": [ + "granulated sugar", + "baking powder", + "coconut cream", + "shredded coconut", + "egg yolks", + "all-purpose flour", + "coconut oil", + "large eggs", + "salt", + "vanilla bean paste", + "baking soda", + "tapioca starch", + "corn syrup" + ] + }, + { + "id": 27581, + "cuisine": "mexican", + "ingredients": [ + "bbq seasoning", + "onions", + "smoked cheddar cheese", + "chicken", + "bbq sauce", + "greens", + "whole wheat tortillas", + "smoked gouda" + ] + }, + { + "id": 40602, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "whole wheat tortillas", + "jack", + "chopped cilantro", + "lime", + "scallions", + "cooking spray" + ] + }, + { + "id": 39404, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "salt", + "anise seed", + "active dry yeast", + "warm water", + "bread flour", + "shortening", + "large eggs" + ] + }, + { + "id": 46739, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "ground pork", + "red bell pepper", + "chicken stock", + "brown rice", + "creole seasoning", + "celery ribs", + "bay leaves", + "hot sauce", + "chorizo sausage", + "tomatoes", + "worcestershire sauce", + "chopped onion" + ] + }, + { + "id": 42903, + "cuisine": "mexican", + "ingredients": [ + "taco sauce", + "chili powder", + "ground beef", + "chopped tomatoes", + "chopped onion", + "jalapeno chilies", + "sour cream", + "refried beans", + "black olives", + "ground cumin" + ] + }, + { + "id": 41384, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "Tabasco Pepper Sauce", + "ground cayenne pepper", + "vegetable oil cooking spray", + "non-fat sour cream", + "lowfat pepper jack cheese", + "green bell pepper", + "old bay seasoning", + "ground turkey", + "white vinegar", + "whole grain English muffins", + "salt" + ] + }, + { + "id": 29350, + "cuisine": "mexican", + "ingredients": [ + "cream cheese", + "chili", + "corn tortilla chips", + "shredded Monterey Jack cheese", + "diced green chilies" + ] + }, + { + "id": 17095, + "cuisine": "japanese", + "ingredients": [ + "shoga", + "beef", + "scallions", + "soy sauce", + "base", + "onions", + "sugar", + "mirin", + "oil", + "sake", + "water", + "ginger" + ] + }, + { + "id": 7737, + "cuisine": "chinese", + "ingredients": [ + "bacon", + "garlic chives", + "squash", + "cracked black pepper", + "Shaoxing wine" + ] + }, + { + "id": 41431, + "cuisine": "british", + "ingredients": [ + "pepper", + "vegetable oil", + "all-purpose flour", + "cold water", + "green onions", + "ground pork", + "lard", + "milk", + "butter", + "carrots", + "rutabaga", + "lean ground beef", + "salt", + "onions" + ] + }, + { + "id": 29119, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "vegetable oil", + "ground cayenne pepper", + "remoulade", + "paprika", + "kosher salt", + "lemon", + "catfish fillets", + "ground black pepper", + "cake flour" + ] + }, + { + "id": 24549, + "cuisine": "moroccan", + "ingredients": [ + "mint sprigs", + "sugar", + "green tea" + ] + }, + { + "id": 40063, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "katsuo bushi", + "sake", + "sesame seeds", + "water", + "sugar", + "short-grain rice" + ] + }, + { + "id": 2562, + "cuisine": "spanish", + "ingredients": [ + "scallions", + "spanish chorizo", + "rice pilaf" + ] + }, + { + "id": 34100, + "cuisine": "southern_us", + "ingredients": [ + "fresh chives", + "crushed red pepper", + "pepper", + "sour cream", + "kosher salt", + "banana peppers", + "capers", + "swiss cheese" + ] + }, + { + "id": 43641, + "cuisine": "korean", + "ingredients": [ + "sugar", + "honey", + "sesame oil", + "Gochujang base", + "eggs", + "pepper", + "mushrooms", + "salt", + "carrots", + "spinach", + "minced garlic", + "soda", + "broccoli", + "ground beef", + "soy sauce", + "sesame seeds", + "sprouts", + "rice" + ] + }, + { + "id": 20279, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "water", + "salt", + "baby lima beans", + "potatoes", + "yellow onion", + "sugar", + "cream style corn", + "hot sauce", + "pepper", + "butter", + "chicken" + ] + }, + { + "id": 29654, + "cuisine": "brazilian", + "ingredients": [ + "açai", + "fresh raspberries", + "bananas", + "almond milk", + "granola", + "frozen strawberries", + "spinach", + "strawberries", + "blackberries" + ] + }, + { + "id": 39644, + "cuisine": "spanish", + "ingredients": [ + "tomato juice", + "green onions", + "yellow bell pepper", + "cucumber", + "avocado", + "chips", + "diced tomatoes", + "garlic cloves", + "diced red onions", + "worcestershire sauce", + "bloody mary mix", + "ground black pepper", + "red wine vinegar", + "low sodium vegetable juice", + "fresh lime juice" + ] + }, + { + "id": 45079, + "cuisine": "mexican", + "ingredients": [ + "ranch salad dressing mix", + "shredded cheddar cheese", + "sour cream", + "diced tomatoes", + "sliced black olives" + ] + }, + { + "id": 37613, + "cuisine": "chinese", + "ingredients": [ + "water", + "boneless skinless chicken breasts", + "oyster sauce", + "sugar", + "mushroom caps", + "peanut oil", + "ground white pepper", + "shiitake", + "salt", + "corn starch", + "fat free less sodium chicken broth", + "green onions", + "garlic cloves", + "snow peas" + ] + }, + { + "id": 14155, + "cuisine": "brazilian", + "ingredients": [ + "lime wedges", + "ice cubes", + "green grape", + "raw sugar", + "white wine", + "cachaca" + ] + }, + { + "id": 44530, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "flank steak", + "corn starch", + "minced garlic", + "crushed red pepper flakes", + "brown sugar", + "sesame oil", + "cold water", + "broccoli florets", + "beef broth" + ] + }, + { + "id": 47339, + "cuisine": "cajun_creole", + "ingredients": [ + "emerils original essence", + "crab", + "bay leaves", + "chopped celery", + "scallions", + "chopped garlic", + "green bell pepper", + "finely chopped onion", + "coarse salt", + "cayenne pepper", + "medium shrimp", + "fish fillets", + "dried thyme", + "vegetable oil", + "all-purpose flour", + "flat leaf parsley", + "shrimp stock", + "shucked oysters", + "file powder", + "worcestershire sauce", + "beer", + "cooked white rice" + ] + }, + { + "id": 24836, + "cuisine": "cajun_creole", + "ingredients": [ + "ketchup", + "yellow mustard", + "diced celery", + "table salt", + "prepared horseradish", + "diced yellow onion", + "flat leaf parsley", + "mayonaise", + "ground black pepper", + "fresh lemon juice", + "pickle relish", + "creole mustard", + "minced garlic", + "hot sauce", + "red bell pepper" + ] + }, + { + "id": 33648, + "cuisine": "italian", + "ingredients": [ + "sherry vinegar", + "garlic cloves", + "cremini mushrooms", + "shallots", + "fontina cheese", + "cooking spray", + "thin pizza crust", + "prosciutto", + "chopped fresh thyme" + ] + }, + { + "id": 19986, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "peaches", + "bourbon whiskey", + "salt", + "vanilla low-fat ic cream", + "granulated sugar", + "butter", + "all-purpose flour", + "ground nutmeg", + "baking powder", + "sweetened coconut flakes", + "nonfat evaporated milk", + "large egg yolks", + "cooking spray", + "ice cream", + "chopped pecans" + ] + }, + { + "id": 17800, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "sweet yellow corn", + "avocado", + "fresh lemon juice", + "purple onion", + "chopped cilantro", + "salt", + "plum tomatoes" + ] + }, + { + "id": 34070, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "new mexico chile pods", + "ground cumin", + "warm water", + "garlic", + "brown sugar", + "chile negro", + "guajillo chiles", + "salt" + ] + }, + { + "id": 5470, + "cuisine": "cajun_creole", + "ingredients": [ + "active dry yeast", + "vegetable shortening", + "powdered sugar", + "granulated sugar", + "bread flour", + "eggs", + "evaporated milk", + "salt", + "warm water", + "vegetable oil" + ] + }, + { + "id": 43225, + "cuisine": "thai", + "ingredients": [ + "straw mushrooms", + "ginger", + "Thai chili garlic sauce", + "fish sauce", + "water chestnuts", + "oyster sauce", + "cabbage", + "thai basil", + "garlic", + "onions", + "pork", + "bell pepper", + "coconut milk" + ] + }, + { + "id": 21050, + "cuisine": "greek", + "ingredients": [ + "parmesan cheese", + "salt", + "finely chopped fresh parsley", + "vegetables", + "long-grain rice", + "saffron threads", + "butter" + ] + }, + { + "id": 20670, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "carrots", + "dried rosemary", + "sauce", + "celery", + "salt", + "leg of lamb", + "white wine", + "garlic cloves", + "onions" + ] + }, + { + "id": 33470, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "ground black pepper", + "boneless chicken", + "salt", + "rice flour", + "eggs", + "yoghurt", + "lemon", + "green chilies", + "ground turmeric", + "fresh curry leaves", + "chili powder", + "ginger", + "cumin seed", + "seasoning", + "water", + "crushed garlic", + "garlic", + "oil" + ] + }, + { + "id": 6757, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "whole wheat tortillas", + "lime juice", + "tomato salsa", + "avocado", + "olive oil", + "garlic", + "black beans", + "chicken breast halves", + "ground cumin" + ] + }, + { + "id": 17555, + "cuisine": "indian", + "ingredients": [ + "groundnut", + "salt", + "green chilies", + "ground turmeric", + "red chili powder", + "potatoes", + "chopped onion", + "mustard seeds", + "tomatoes", + "garam masala", + "rice", + "oil", + "curry leaves", + "lime juice", + "cilantro leaves", + "cumin seed" + ] + }, + { + "id": 43134, + "cuisine": "korean", + "ingredients": [ + "water", + "green onions", + "garlic cloves", + "fish sauce", + "radishes", + "napa cabbage", + "sesame seeds", + "sesame oil", + "ginger root", + "sugar", + "gochugaru", + "sea salt" + ] + }, + { + "id": 37647, + "cuisine": "french", + "ingredients": [ + "white onion", + "bosc pears", + "freshly ground pepper", + "turnips", + "radishes", + "extra-virgin olive oil", + "carrots", + "unsalted butter", + "golden delicious apples", + "garlic cloves", + "savoy cabbage", + "low sodium chicken broth", + "salt" + ] + }, + { + "id": 405, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "fennel bulb", + "shallots", + "butter", + "chopped onion", + "panko", + "whole milk", + "clam juice", + "chopped celery", + "fresh parsley", + "black cod fillets", + "unsalted butter", + "bay leaves", + "chopped fresh thyme", + "all-purpose flour", + "grated lemon peel", + "oysters", + "leeks", + "yukon gold potatoes", + "whipping cream", + "fresh lemon juice" + ] + }, + { + "id": 38219, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "lime juice", + "garlic", + "roast beef", + "Thai chili paste", + "low-fat mayonnaise", + "Equal Sweetener", + "sugar", + "daikon", + "rice vinegar", + "kosher salt", + "cilantro", + "carrots" + ] + }, + { + "id": 28720, + "cuisine": "cajun_creole", + "ingredients": [ + "butter", + "water", + "uncooked vermicelli", + "vidalia onion", + "salt", + "cajun seasoning", + "large shrimp" + ] + }, + { + "id": 31915, + "cuisine": "italian", + "ingredients": [ + "skim milk", + "cooking spray", + "margarine", + "frozen chopped spinach", + "minced garlic", + "all-purpose flour", + "onions", + "pepper", + "diced tomatoes", + "mostaccioli", + "parsley sprigs", + "parmesan cheese", + "dry bread crumbs", + "italian seasoning" + ] + }, + { + "id": 24506, + "cuisine": "thai", + "ingredients": [ + "thai basil", + "jicama", + "scallions", + "kosher salt", + "red cabbage", + "cilantro sprigs", + "red bell pepper", + "palm sugar", + "sesame oil", + "carrots", + "lime juice", + "jalapeno chilies", + "persian cucumber" + ] + }, + { + "id": 37455, + "cuisine": "korean", + "ingredients": [ + "cooking oil", + "garlic", + "pepper", + "green onions", + "yellow onion", + "beef", + "sesame oil", + "mushrooms", + "salt" + ] + }, + { + "id": 27918, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "fresh peas", + "chervil", + "heavy cream", + "unsalted butter" + ] + }, + { + "id": 2127, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken breasts", + "salt", + "sliced mushrooms", + "soy sauce", + "diced tomatoes", + "hot sauce", + "onions", + "green bell pepper", + "worcestershire sauce", + "all-purpose flour", + "fresh parsley", + "ground black pepper", + "garlic", + "oil", + "white sugar" + ] + }, + { + "id": 47911, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "garlic", + "green onions", + "toasted sesame oil", + "sesame seeds", + "ground white pepper", + "sea salt", + "noodles" + ] + }, + { + "id": 46803, + "cuisine": "filipino", + "ingredients": [ + "grape tomatoes", + "sweet potatoes", + "salt", + "black pepper", + "thai chile", + "fish sauce", + "vegetable oil", + "garlic cloves", + "lime", + "purple onion" + ] + }, + { + "id": 34635, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "worcestershire sauce", + "pork country-style ribs", + "ketchup", + "vegetable oil", + "hot sauce", + "onions", + "steak sauce", + "ground black pepper", + "diced tomatoes", + "roasting chickens", + "chicken bouillon", + "lemon", + "lima beans", + "corn kernel whole" + ] + }, + { + "id": 46785, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ricotta cheese", + "jumbo pasta shells", + "frozen chopped spinach", + "pepper", + "garlic", + "dried oregano", + "pasta sauce", + "lemon", + "shredded mozzarella cheese", + "italian sausage", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 24137, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "linguine", + "rice vinegar", + "asian fish sauce", + "sugar", + "cooking oil", + "salt", + "firm tofu", + "cayenne", + "garlic", + "salted peanuts", + "water", + "boneless skinless chicken breasts", + "cilantro leaves", + "beansprouts" + ] + }, + { + "id": 1538, + "cuisine": "mexican", + "ingredients": [ + "reduced fat cheddar cheese", + "garlic", + "chopped cilantro fresh", + "chopped tomatoes", + "pinto beans", + "black beans", + "salsa", + "flour tortillas", + "sour cream" + ] + }, + { + "id": 47469, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "water", + "grated orange peel", + "couscous", + "fresh orange juice" + ] + }, + { + "id": 42826, + "cuisine": "chinese", + "ingredients": [ + "liqueur", + "cranberries", + "mandarin oranges", + "sugar" + ] + }, + { + "id": 22120, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "olive oil", + "salt", + "sour cream", + "avocado", + "pepper", + "tortillas", + "pork roast", + "sweet chili sauce", + "garlic powder", + "beer", + "chopped cilantro fresh", + "green cabbage", + "lime", + "onion powder", + "smoked paprika" + ] + }, + { + "id": 22387, + "cuisine": "mexican", + "ingredients": [ + "water", + "chicken soup base", + "lime", + "fresh cilantro", + "long-grain rice", + "olive oil" + ] + }, + { + "id": 26176, + "cuisine": "mexican", + "ingredients": [ + "seasoning salt", + "chili powder", + "ground beef", + "green onions", + "green enchilada sauce", + "cumin", + "chopped tomatoes", + "uncle bens", + "dried oregano", + "colby jack cheese", + "frozen corn" + ] + }, + { + "id": 21654, + "cuisine": "jamaican", + "ingredients": [ + "dried thyme", + "vegetable oil", + "orange juice", + "pepper", + "green onions", + "salt", + "chicken", + "ground cinnamon", + "ground nutmeg", + "red wine vinegar", + "garlic cloves", + "lime juice", + "chile pepper", + "ground allspice" + ] + }, + { + "id": 45361, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "jalapeno chilies", + "whole kernel corn, drain", + "shredded cheddar cheese", + "chopped green bell pepper", + "salsa", + "ground cumin", + "black beans", + "sliced black olives", + "whole wheat tortillas", + "sour cream", + "ground black pepper", + "chili powder", + "pinto beans" + ] + }, + { + "id": 29610, + "cuisine": "jamaican", + "ingredients": [ + "Guinness Beer", + "nutmeg", + "whipped cream", + "pure vanilla extract", + "whole milk", + "ground cinnamon", + "condensed milk" + ] + }, + { + "id": 35583, + "cuisine": "mexican", + "ingredients": [ + "sauce", + "ground beef", + "taco seasoning", + "water", + "onions" + ] + }, + { + "id": 31199, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "buttermilk", + "chicken", + "kosher salt", + "Tabasco Pepper Sauce", + "all-purpose flour", + "cold water", + "baking powder", + "old bay seasoning", + "garlic powder", + "vegetable oil", + "cayenne pepper" + ] + }, + { + "id": 43644, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "carrots", + "matzo meal", + "paprika", + "ground white pepper", + "sweet potatoes", + "thyme", + "olive oil", + "salt", + "onions" + ] + }, + { + "id": 25394, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cooking spray", + "salt", + "chopped pecans", + "brown sugar", + "ground nutmeg", + "bourbon whiskey", + "margarine", + "sugar", + "large eggs", + "vanilla extract", + "ground allspice", + "ground cinnamon", + "large egg whites", + "sweet potatoes", + "all-purpose flour", + "fat free cream cheese" + ] + }, + { + "id": 33059, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "lime", + "bell pepper", + "salt", + "coriander", + "cheddar cheese", + "lime juice", + "diced green chilies", + "chicken breasts", + "sour cream", + "avocado", + "shredded cheddar cheese", + "olive oil", + "jalapeno chilies", + "garlic cloves", + "cumin", + "tomato sauce", + "fresh cilantro", + "tortillas", + "chili powder", + "onions" + ] + }, + { + "id": 19173, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "chapati flour", + "whole wheat flour", + "flour for dusting", + "warm water", + "peanut oil", + "vegetable oil" + ] + }, + { + "id": 25838, + "cuisine": "chinese", + "ingredients": [ + "green cabbage", + "green onions", + "wonton wrappers", + "water", + "sesame oil", + "shrimp", + "fresh ginger", + "vegetable oil", + "soy sauce", + "rice wine", + "ground pork" + ] + }, + { + "id": 25360, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "cream of tartar" + ] + }, + { + "id": 31052, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "vanilla extract", + "mini marshmallows", + "raisins", + "evaporated milk", + "sweet potatoes", + "salt", + "ground nutmeg", + "butter" + ] + }, + { + "id": 20966, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "grated parmesan cheese", + "crushed red pepper", + "olive oil", + "cheese ravioli", + "low salt chicken broth", + "dried basil", + "cooked chicken", + "carrots", + "fennel seeds", + "zucchini", + "large garlic cloves", + "onions" + ] + }, + { + "id": 36228, + "cuisine": "french", + "ingredients": [ + "saffron threads", + "pastis", + "fine sea salt", + "halibut fillets", + "extra-virgin olive oil", + "fennel seeds", + "fronds", + "fish fillets", + "fennel bulb" + ] + }, + { + "id": 38778, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "corn kernels", + "chopped green bell pepper", + "mild green chiles", + "creole seasoning", + "bay leaf", + "green bell pepper", + "unsalted butter", + "baking powder", + "salt", + "red bell pepper", + "yellow corn meal", + "tomato sauce", + "granulated sugar", + "diced tomatoes", + "all-purpose flour", + "celery", + "eggs", + "cream style corn", + "flour", + "garlic", + "brown shrimp", + "onions" + ] + }, + { + "id": 47462, + "cuisine": "italian", + "ingredients": [ + "pepper", + "dried sage", + "arborio rice", + "grated parmesan cheese", + "sliced mushrooms", + "fat free less sodium chicken broth", + "leeks", + "olive oil", + "dry white wine" + ] + }, + { + "id": 6714, + "cuisine": "spanish", + "ingredients": [ + "fresh thyme", + "rabbit", + "fresh parsley", + "saffron", + "chicken stock", + "lemon", + "garlic cloves", + "plum tomatoes", + "tomato paste", + "paprika", + "green beans", + "large shrimp", + "bell pepper", + "rice", + "onions", + "chorizo sausage" + ] + }, + { + "id": 27264, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "beef tenderloin", + "kosher salt", + "dry white wine", + "freshly ground pepper", + "cremini mushrooms", + "frozen pastry puff sheets", + "garlic", + "truffles", + "fresh thyme leaves", + "canola oil" + ] + }, + { + "id": 11993, + "cuisine": "southern_us", + "ingredients": [ + "2% reduced-fat milk", + "cinnamon sticks", + "ground nutmeg", + "maple syrup", + "ground ginger", + "salt", + "grated orange", + "sweet potatoes", + "rome apples" + ] + }, + { + "id": 3774, + "cuisine": "indian", + "ingredients": [ + "eggs", + "yoghurt", + "salt", + "ground cardamom", + "ground cumin", + "tomatoes", + "coriander powder", + "curry", + "mustard oil", + "chicken", + "fennel seeds", + "garam masala", + "ginger", + "cumin seed", + "ground turmeric", + "ground fennel", + "garlic paste", + "chili powder", + "cilantro leaves", + "onions" + ] + }, + { + "id": 39954, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "garlic", + "heavy whipping cream", + "ground cumin", + "bay leaves", + "margarine", + "dried oregano", + "potatoes", + "salt", + "corn tortillas", + "chicken broth", + "chile pepper", + "chopped onion", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 7001, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "water", + "garlic", + "corn starch", + "red chili peppers", + "peeled fresh ginger", + "scallions", + "sugar", + "Shaoxing wine", + "roasted peanuts", + "chinese black vinegar", + "soy sauce", + "boneless skinless chicken breasts", + "oil" + ] + }, + { + "id": 24828, + "cuisine": "italian", + "ingredients": [ + "guanciale", + "cracked black pepper", + "large eggs", + "spaghetti", + "parmigiano reggiano cheese", + "grated pecorino", + "sea salt" + ] + }, + { + "id": 45973, + "cuisine": "french", + "ingredients": [ + "salt", + "ground black pepper", + "butter", + "rib eye steaks" + ] + }, + { + "id": 39198, + "cuisine": "irish", + "ingredients": [ + "fat free less sodium chicken broth", + "cooking spray", + "salt", + "thyme sprigs", + "radishes", + "lamb stew meat", + "baby carrots", + "pepper", + "dry white wine", + "all-purpose flour", + "fresh parsley", + "finely chopped onion", + "green peas", + "small red potato" + ] + }, + { + "id": 16238, + "cuisine": "italian", + "ingredients": [ + "roquefort cheese", + "grated parmesan cheese", + "onions", + "pizza shells", + "wine vinegar", + "fontina", + "pimentos", + "olive oil", + "salt" + ] + }, + { + "id": 43256, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "fresh cilantro", + "jalapeno chilies", + "chili powder", + "salt", + "smoked paprika", + "black pepper", + "salsa verde", + "boneless skinless chicken breasts", + "garlic", + "cayenne pepper", + "grape tomatoes", + "olive oil", + "green onions", + "onion powder", + "yellow onion", + "cumin", + "pepper", + "sharp white cheddar cheese", + "fusilli", + "sweet pepper", + "cream cheese" + ] + }, + { + "id": 4565, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "refrigerated piecrusts", + "all-purpose flour", + "milk", + "vanilla extract", + "sugar", + "butter", + "cornmeal", + "large eggs", + "salt" + ] + }, + { + "id": 27809, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "salt", + "sugar", + "diced tomatoes", + "olive oil", + "garlic cloves", + "crushed tomatoes", + "chopped onion" + ] + }, + { + "id": 5394, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "anchovy fillets", + "escarole", + "soft shelled crabs", + "salt", + "oil", + "unsalted butter", + "extra-virgin olive oil", + "freshly ground pepper", + "vegetable oil", + "all-purpose flour", + "fresh lemon juice" + ] + }, + { + "id": 36906, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "crushed garlic", + "italian seasoning", + "rump roast", + "beef bouillon", + "salt", + "ground black pepper", + "red pepper flakes", + "water", + "vegetable oil", + "dried oregano" + ] + }, + { + "id": 17310, + "cuisine": "mexican", + "ingredients": [ + "butter", + "corn tortillas", + "garlic salt", + "cheddar cheese", + "sour cream", + "ground beef", + "spinach", + "green chilies", + "cream of mushroom soup", + "milk", + "rotel tomatoes", + "onions" + ] + }, + { + "id": 34211, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "butter", + "catfish", + "pepper", + "baking powder", + "salt", + "grated parmesan cheese", + "dry mustard", + "italian seasoning", + "evaporated milk", + "onion powder", + "all-purpose flour" + ] + }, + { + "id": 38943, + "cuisine": "irish", + "ingredients": [ + "whipping cream", + "grated lemon peel", + "ground nutmeg", + "dessert wine", + "sugar", + "fresh raspberries", + "brandy", + "fresh lemon juice" + ] + }, + { + "id": 46115, + "cuisine": "british", + "ingredients": [ + "ruby port", + "whipping cream", + "prosciutto", + "black mission figs", + "pinenuts", + "balsamic vinegar", + "phyllo pastry", + "sugar", + "unsalted butter", + "stilton cheese" + ] + }, + { + "id": 44649, + "cuisine": "mexican", + "ingredients": [ + "extra lean ground beef", + "bell pepper", + "yellow onion", + "chicken broth", + "olive oil", + "diced tomatoes", + "italian seasoning", + "tomato sauce", + "beef bouillon", + "garlic", + "shredded cheddar cheese", + "worcestershire sauce", + "long-grain rice" + ] + }, + { + "id": 17789, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "purple onion", + "black beans", + "onion powder", + "ground cumin", + "boneless skinless chicken breasts", + "salt", + "chopped tomatoes", + "diced tomatoes" + ] + }, + { + "id": 37101, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "salt", + "onions", + "vegetable oil", + "dark brown sugar", + "fresh ginger", + "boneless pork loin", + "low sodium soy sauce", + "garlic", + "chinese five-spice powder" + ] + }, + { + "id": 29199, + "cuisine": "thai", + "ingredients": [ + "dry roasted peanuts", + "rice vinegar", + "brown sugar", + "boneless chicken breast", + "garlic cloves", + "fresh ginger", + "peanut butter", + "soy sauce", + "sesame oil", + "bamboo shoots" + ] + }, + { + "id": 24303, + "cuisine": "thai", + "ingredients": [ + "curry leaves", + "fresh ginger", + "crushed red pepper flakes", + "green chilies", + "coconut milk", + "green cardamom pods", + "red chili peppers", + "pandanus leaf", + "salt", + "corn starch", + "ground turmeric", + "chicken broth", + "lemon grass", + "garlic", + "lemon juice", + "onions", + "clove", + "black pepper", + "chicken breasts", + "fenugreek seeds", + "cinnamon sticks" + ] + }, + { + "id": 31044, + "cuisine": "thai", + "ingredients": [ + "reduced fat coconut milk", + "red curry paste", + "onions", + "chicken broth", + "vegetable oil", + "chopped cilantro", + "kosher salt", + "white mushrooms", + "black pepper", + "red bell pepper", + "pork butt" + ] + }, + { + "id": 43284, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dry white wine", + "dried oregano", + "water", + "finely chopped fresh parsley", + "salt", + "low sodium soy sauce", + "ground black pepper", + "orzo", + "dried thyme", + "mushrooms", + "garlic cloves" + ] + }, + { + "id": 17464, + "cuisine": "indian", + "ingredients": [ + "pepper", + "baking potatoes", + "grill seasoning", + "ground coriander", + "curry paste", + "chicken broth", + "boneless skinless chicken breasts", + "garlic", + "beef sirloin", + "smoked paprika", + "frozen peas", + "tumeric", + "mango chutney", + "salt", + "ground allspice", + "red bell pepper", + "ground cumin", + "frozen chopped spinach", + "whole milk yoghurt", + "extra-virgin olive oil", + "chickpeas", + "scallions", + "onions" + ] + }, + { + "id": 48697, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "ground mustard", + "eggs", + "cajun seasoning", + "cornmeal", + "catfish fillets", + "ground black pepper", + "oil", + "pepper sauce", + "all-purpose flour" + ] + }, + { + "id": 10790, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "butter", + "cayenne pepper", + "chapati flour", + "ground cumin", + "potatoes", + "ground tumeric", + "ground coriander", + "greek yogurt", + "tomatoes", + "ginger", + "green chilies", + "mustard seeds", + "cauliflower", + "vegetable oil", + "garlic", + "cumin seed", + "onions" + ] + }, + { + "id": 36728, + "cuisine": "french", + "ingredients": [ + "ham steak", + "dijon mustard", + "sea salt", + "salt", + "ground black pepper", + "large eggs", + "cornichons", + "garlic cloves", + "unsalted butter", + "bacon", + "whipping cream", + "allspice", + "dried thyme", + "minced onion", + "ground pork", + "cognac" + ] + }, + { + "id": 35309, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "cilantro", + "broth", + "no-salt-added black beans", + "chopped onion", + "ground oregano", + "meat", + "frozen corn kernels", + "cumin", + "tomato sauce", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 24593, + "cuisine": "french", + "ingredients": [ + "fat free milk", + "bay leaf", + "cauliflower", + "salt", + "mashed potatoes", + "garlic cloves", + "butter" + ] + }, + { + "id": 46891, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "boneless skinless chicken breasts", + "roasted cashews", + "hoisin sauce", + "button mushrooms", + "cilantro leaves", + "purple onion", + "iceberg lettuce", + "fresh ginger", + "vegetable oil", + "salt", + "sugar", + "water chestnuts", + "garlic", + "rice vinegar" + ] + }, + { + "id": 47023, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "bay leaves", + "light coconut milk", + "tomatoes", + "cayenne", + "green onions", + "fresh ginger", + "basil leaves", + "medium shrimp", + "tumeric", + "seafood stock", + "lime wedges" + ] + }, + { + "id": 27803, + "cuisine": "moroccan", + "ingredients": [ + "chile powder", + "extra-virgin olive oil", + "mixed greens", + "orange", + "salt", + "ground cumin", + "ground cinnamon", + "purple onion", + "fresh basil leaves", + "oil-cured black olives", + "fresh salmon" + ] + }, + { + "id": 22954, + "cuisine": "mexican", + "ingredients": [ + "pork neck", + "lime", + "boneless country pork ribs", + "garlic cloves", + "cold water", + "white onion", + "white hominy", + "fine sea salt", + "boiling water", + "green cabbage", + "water", + "radishes", + "ground allspice", + "chiles", + "sesame seeds", + "large garlic cloves", + "fat" + ] + }, + { + "id": 3473, + "cuisine": "cajun_creole", + "ingredients": [ + "jalapeno chilies", + "salt", + "red kidney beans", + "peppadews", + "onions", + "celery ribs", + "low sodium chicken broth", + "freshly ground pepper", + "steamed white rice", + "garlic", + "thick-cut bacon" + ] + }, + { + "id": 4849, + "cuisine": "moroccan", + "ingredients": [ + "fresh coriander", + "clear honey", + "butter", + "chickpeas", + "lemon juice", + "dried cranberries", + "ground cinnamon", + "olive oil", + "mint leaves", + "paprika", + "shelled pistachios", + "squash", + "milk", + "harissa paste", + "lemon", + "blanched almonds", + "greek yogurt", + "ground cumin", + "fresh spinach", + "coriander seeds", + "shallots", + "ginger", + "garlic cloves", + "phyllo pastry" + ] + }, + { + "id": 17131, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "green chilies", + "onions", + "chicken breasts", + "chillies", + "soup", + "sour cream", + "cheese", + "cream of mushroom soup" + ] + }, + { + "id": 37310, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "garlic", + "dry white wine", + "flat leaf parsley", + "ground black pepper", + "salt", + "mussels", + "extra-virgin olive oil", + "spaghetti" + ] + }, + { + "id": 24138, + "cuisine": "filipino", + "ingredients": [ + "fennel seeds", + "pork belly", + "granulated sugar", + "ground cinnamon", + "orange", + "chicken stock", + "kosher salt", + "star anise", + "bacon drippings", + "black peppercorns", + "coriander seeds" + ] + }, + { + "id": 5712, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "garlic", + "red bell pepper", + "corn oil", + "chopped onion", + "white sugar", + "ground black pepper", + "salt", + "fresh parsley", + "water", + "red wine vinegar", + "fresh mushrooms" + ] + }, + { + "id": 22277, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "cracked black pepper", + "pecorino romano cheese", + "spaghetti" + ] + }, + { + "id": 7927, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "lemongrass", + "shallots", + "chopped onion", + "ground cumin", + "cooked rice", + "peeled fresh ginger", + "clam juice", + "bok choy", + "fresh basil", + "enokitake", + "vegetable oil", + "shrimp", + "tumeric", + "cilantro stems", + "crushed red pepper", + "snow peas" + ] + }, + { + "id": 29329, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "carrots", + "fresh chives", + "mutton", + "fresh parsley", + "lamb stock", + "extra-virgin olive oil", + "thyme", + "ground black pepper", + "salt", + "onions" + ] + }, + { + "id": 32125, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "fresh thyme", + "garlic cloves", + "chicken broth", + "olive oil", + "chicken drumsticks", + "onions", + "nutmeg", + "ground cloves", + "lemon", + "ground cardamom", + "ground cinnamon", + "ground black pepper", + "salt", + "chicken thighs" + ] + }, + { + "id": 34676, + "cuisine": "mexican", + "ingredients": [ + "frozen chopped spinach", + "green onions", + "crushed red pepper", + "ground coriander", + "ground cumin", + "milk", + "butter", + "grated jack cheese", + "corn tortillas", + "cheddar cheese", + "vegetable oil", + "all-purpose flour", + "sour cream", + "finely chopped onion", + "whipping cream", + "green chilies", + "chopped cilantro fresh" + ] + }, + { + "id": 18920, + "cuisine": "mexican", + "ingredients": [ + "reduced fat cream cheese", + "green chile", + "low fat mozzarella", + "boneless skinless chicken breasts", + "low-fat sour cream", + "enchilada sauce" + ] + }, + { + "id": 42704, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "pizza doughs", + "olive oil", + "garlic", + "pesto", + "grated parmesan cheese", + "goat cheese", + "eggplant", + "salt" + ] + }, + { + "id": 23353, + "cuisine": "italian", + "ingredients": [ + "lemon", + "baby carrots", + "brown sugar", + "salt", + "rubbed sage", + "olive oil", + "apple juice", + "onions", + "raisins", + "fresh lemon juice" + ] + }, + { + "id": 6698, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "chopped onion", + "collard greens", + "Anaheim chile", + "garlic cloves", + "olive oil", + "salt", + "smoked turkey", + "crushed red pepper", + "lemon juice" + ] + }, + { + "id": 26288, + "cuisine": "italian", + "ingredients": [ + "lean ground beef", + "onions", + "double crust pie", + "shredded sharp cheddar cheese", + "red pepper", + "pastry", + "sliced mushrooms" + ] + }, + { + "id": 32285, + "cuisine": "italian", + "ingredients": [ + "fat free yogurt", + "fat-free cottage cheese", + "garlic cloves", + "olive oil", + "cooked rigatoni", + "sugar pea", + "grated parmesan cheese", + "salt", + "pepper", + "basil leaves" + ] + }, + { + "id": 19363, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "salt", + "vegetable oil cooking spray", + "frozen vegetables", + "chopped onion", + "tomatoes", + "grated parmesan cheese", + "beef broth", + "pepper", + "pasta shells" + ] + }, + { + "id": 45527, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "salt", + "white vinegar", + "whole milk", + "smoked gouda", + "ground black pepper", + "mostaccioli", + "grape tomatoes", + "basil leaves", + "adobo sauce" + ] + }, + { + "id": 14390, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "leeks", + "onions", + "cherry tomatoes", + "salt", + "fresh coriander", + "curry sauce", + "potatoes", + "oil" + ] + }, + { + "id": 48320, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "cake flour", + "sliced almonds", + "unsalted butter", + "sugar", + "mascarpone", + "cream cheese", + "vegetable oil spray", + "orange marmalade" + ] + }, + { + "id": 25515, + "cuisine": "southern_us", + "ingredients": [ + "Tabasco Pepper Sauce", + "salt pork", + "black pepper", + "garlic", + "cooked ham", + "crushed red pepper flakes", + "chopped onion", + "black-eyed peas", + "meat bones" + ] + }, + { + "id": 2575, + "cuisine": "french", + "ingredients": [ + "pepper", + "cranberry juice cocktail", + "rome apples", + "corn starch", + "dried cranberries", + "fresh sage", + "french bread", + "dry red wine", + "rock cornish game hens", + "fresh parsley", + "black peppercorns", + "shallots", + "salt", + "fresh lemon juice", + "boiling water", + "prunes", + "olive oil", + "spices", + "apple juice", + "smoked turkey sausage" + ] + }, + { + "id": 13502, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "olive oil", + "dry white wine", + "garlic", + "oyster sauce", + "white pepper", + "ground black pepper", + "coarse salt", + "yellow onion", + "snow peas", + "brown sugar", + "fresh ginger", + "sesame oil", + "salt", + "beansprouts", + "honey", + "cayenne", + "bacon", + "chinese five-spice powder", + "chicken" + ] + }, + { + "id": 20638, + "cuisine": "russian", + "ingredients": [ + "turnips", + "potatoes", + "beef broth", + "pepper", + "diced tomatoes", + "sour cream", + "red cabbage", + "salt", + "onions", + "cider vinegar", + "sliced carrots", + "beets" + ] + }, + { + "id": 14161, + "cuisine": "vietnamese", + "ingredients": [ + "curry powder", + "rice noodles", + "cilantro leaves", + "asian fish sauce", + "fresh dill", + "shallots", + "garlic", + "salad oil", + "sliced green onions", + "catfish fillets", + "cayenne", + "salted roast peanuts", + "beansprouts", + "ground turmeric", + "ground ginger", + "bawang goreng", + "dipping sauces", + "fresh mint", + "iceberg lettuce" + ] + }, + { + "id": 24848, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "vegetable oil", + "orange", + "extra fine granulated sugar", + "salt", + "eggs", + "granulated sugar", + "lemon", + "milk", + "egg yolks", + "all-purpose flour" + ] + }, + { + "id": 34825, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "ground red pepper", + "rice", + "mustard seeds", + "red lentils", + "coriander seeds", + "red wine vinegar", + "cumin seed", + "ground turmeric", + "water", + "baking potatoes", + "chopped onion", + "fresh parsley", + "light butter", + "peeled fresh ginger", + "salt", + "garlic cloves" + ] + }, + { + "id": 23302, + "cuisine": "spanish", + "ingredients": [ + "short-grain rice", + "green peas", + "garlic cloves", + "chorizo sausage", + "saffron threads", + "clam juice", + "salt", + "medium shrimp", + "fat free less sodium chicken broth", + "paprika", + "chopped onion", + "plum tomatoes", + "dry white wine", + "littleneck clams", + "red bell pepper" + ] + }, + { + "id": 23161, + "cuisine": "italian", + "ingredients": [ + "chicken breasts", + "spinach", + "sea salt", + "minced garlic", + "cheese", + "butter" + ] + }, + { + "id": 45528, + "cuisine": "italian", + "ingredients": [ + "pesto sauce", + "quick cooking brown rice", + "pepper", + "frozen mixed vegetables", + "vegetable juice", + "diced tomatoes", + "great northern beans", + "water" + ] + }, + { + "id": 17981, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "unsalted butter", + "salt", + "large egg yolks", + "golden raisins", + "sugar", + "large eggs", + "all-purpose flour", + "active dry yeast", + "whole milk" + ] + }, + { + "id": 42788, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "oil", + "garlic paste", + "paneer", + "coriander", + "tomatoes", + "chili powder", + "onions", + "garam masala", + "salt", + "ground turmeric" + ] + }, + { + "id": 39966, + "cuisine": "indian", + "ingredients": [ + "salt", + "water", + "ghee", + "whole wheat flour" + ] + }, + { + "id": 43287, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "salt", + "sweet potatoes", + "white sugar", + "unbaked pie crusts", + "ground allspice", + "ground cinnamon", + "butter" + ] + }, + { + "id": 36553, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "promise buttery spread", + "ground beef", + "ragu old world style pasta sauc", + "frozen whole kernel corn", + "garlic", + "part-skim mozzarella cheese", + "dri oregano leaves, crush", + "ground chipotle chile pepper", + "zucchini", + "corn tortillas" + ] + }, + { + "id": 17637, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "butter", + "sliced mushrooms", + "garlic powder", + "asparagus spears", + "dried basil", + "salt", + "onions", + "grated parmesan cheese", + "chopped pecans" + ] + }, + { + "id": 22677, + "cuisine": "greek", + "ingredients": [ + "pepper", + "dillweed", + "sliced green onions", + "frozen chopped spinach", + "shredded sharp cheddar cheese", + "flat leaf parsley", + "large eggs", + "feta cheese crumbles", + "vegetable oil cooking spray", + "salt", + "phyllo pastry" + ] + }, + { + "id": 34442, + "cuisine": "jamaican", + "ingredients": [ + "curry powder", + "potatoes", + "chicken", + "black pepper", + "vinegar", + "salt", + "garlic powder", + "onion powder", + "water", + "cooking oil", + "thyme" + ] + }, + { + "id": 21980, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "garlic", + "grated parmesan cheese", + "fresh basil leaves", + "pepper", + "salt", + "extra-virgin olive oil" + ] + }, + { + "id": 19455, + "cuisine": "mexican", + "ingredients": [ + "serrano chilies", + "lime juice", + "ground black pepper", + "garlic", + "lemon juice", + "beans", + "kidney beans", + "red wine vinegar", + "salt", + "cumin", + "green bell pepper", + "fresh cilantro", + "chili powder", + "purple onion", + "red bell pepper", + "black beans", + "organic cane sugar", + "extra-virgin olive oil", + "frozen corn" + ] + }, + { + "id": 22623, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salsa", + "cooked chicken", + "guacamole", + "shredded Monterey Jack cheese", + "diced green chilies", + "Hidden Valley® Original Ranch® Dressing" + ] + }, + { + "id": 3435, + "cuisine": "southern_us", + "ingredients": [ + "fennel seeds", + "kosher salt", + "sherry vinegar", + "vegetable oil", + "pumpkin seeds", + "tomatoes", + "olive oil", + "hot pepper sauce", + "all-purpose flour", + "smoked paprika", + "fresh basil", + "garlic powder", + "chili powder", + "cayenne pepper", + "potato starch", + "baguette", + "ground black pepper", + "buttermilk", + "garlic cloves" + ] + }, + { + "id": 22362, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "lasagna noodles", + "eggplant", + "marinara sauce", + "mozzarella cheese", + "zucchini", + "garlic powder", + "oregano" + ] + }, + { + "id": 16079, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "hatcho miso", + "eggplant", + "scallions", + "water", + "ginger", + "sugar", + "vegetable oil" + ] + }, + { + "id": 45473, + "cuisine": "italian", + "ingredients": [ + "diced tomatoes", + "red bell pepper", + "great northern beans", + "salt", + "italian salad dressing", + "fresh basil", + "purple onion", + "rotini", + "black pepper", + "cucumber" + ] + }, + { + "id": 12920, + "cuisine": "thai", + "ingredients": [ + "chili oil", + "shrimp", + "sliced green onions", + "jalapeno chilies", + "fat skimmed chicken broth", + "asian fish sauce", + "lemon grass", + "dried rice noodles", + "galangal", + "lime juice", + "cilantro leaves", + "lime leaves" + ] + }, + { + "id": 13964, + "cuisine": "korean", + "ingredients": [ + "kimchi", + "low sodium chicken stock", + "onions", + "spam" + ] + }, + { + "id": 42519, + "cuisine": "chinese", + "ingredients": [ + "water", + "peeled fresh ginger", + "peanut oil", + "hot red pepper flakes", + "hoisin sauce", + "sesame oil", + "garlic cloves", + "flour tortillas (not low fat)", + "cooked chicken", + "scallions", + "soy sauce", + "large eggs", + "slaw mix" + ] + }, + { + "id": 626, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "morel", + "ground white pepper", + "brioche", + "all-purpose flour", + "unsalted butter" + ] + }, + { + "id": 43117, + "cuisine": "filipino", + "ingredients": [ + "pork", + "minced garlic", + "sausages", + "medium shrimp", + "sugar pea", + "cooking oil", + "carrots", + "noodles", + "soy sauce", + "water", + "oyster sauce", + "onions", + "chicken broth", + "pepper", + "salt", + "flat leaf parsley", + "cabbage" + ] + }, + { + "id": 10557, + "cuisine": "french", + "ingredients": [ + "cooking spray", + "olive oil", + "garlic salt", + "chopped fresh chives", + "dried thyme", + "yukon gold potatoes" + ] + }, + { + "id": 32295, + "cuisine": "moroccan", + "ingredients": [ + "chicken legs", + "olive oil", + "ground coriander", + "ground turmeric", + "chicken stock", + "preserved lemon", + "unsalted butter", + "chopped parsley", + "saffron threads", + "green olives", + "ground black pepper", + "ground white pepper", + "ground ginger", + "kosher salt", + "yellow onion", + "chopped cilantro" + ] + }, + { + "id": 35573, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "onions", + "tomato paste", + "canned tomatoes", + "mild Italian sausage", + "lean ground beef" + ] + }, + { + "id": 22837, + "cuisine": "italian", + "ingredients": [ + "Wish-Bone Italian Dressing", + "hellmann' or best food real mayonnais", + "potatoes", + "finely chopped fresh parsley", + "red bell pepper", + "black pepper", + "pitted olives" + ] + }, + { + "id": 15221, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "yellow bean sauce", + "noodles", + "black bean sauce", + "garlic", + "sugar", + "spring onions", + "starch", + "minced pork" + ] + }, + { + "id": 35795, + "cuisine": "mexican", + "ingredients": [ + "freshly grated parmesan", + "grated jack cheese", + "tomato sauce", + "chicken breasts", + "corn tortillas", + "chicken broth", + "swiss chard", + "garlic cloves", + "olive oil", + "vegetable oil" + ] + }, + { + "id": 47062, + "cuisine": "italian", + "ingredients": [ + "water", + "grating cheese", + "eggs", + "spring onions", + "all-purpose flour", + "olive oil", + "salt", + "pepper", + "baking powder", + "green chilies" + ] + }, + { + "id": 36420, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "steamed white rice", + "peanut oil", + "scallion greens", + "salt", + "large eggs" + ] + }, + { + "id": 35639, + "cuisine": "thai", + "ingredients": [ + "black peppercorns", + "garlic cloves", + "chicken breasts", + "unsweetened coconut milk", + "cilantro root", + "coffee", + "asian fish sauce" + ] + }, + { + "id": 18028, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "salt", + "fresh lemon juice", + "large egg whites", + "french bread", + "all-purpose flour", + "sugar", + "prepared horseradish", + "crème fraîche", + "fat free milk", + "cooking spray", + "beets" + ] + }, + { + "id": 15902, + "cuisine": "british", + "ingredients": [ + "mashed potatoes", + "dried thyme", + "heavy cream", + "essence", + "puff pastry", + "tomato paste", + "water", + "worcestershire sauce", + "salt", + "ground beef", + "cheddar cheese", + "unsalted butter", + "crushed red pepper flakes", + "yellow onion", + "minced garlic", + "large eggs", + "button mushrooms", + "smoked gouda" + ] + }, + { + "id": 19819, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "peanuts", + "chicken breasts", + "sauce", + "tofu", + "water", + "Sriracha", + "crushed red pepper flakes", + "beansprouts", + "soy sauce", + "palm sugar", + "shallots", + "oil", + "eggs", + "tamarind", + "green onions", + "linguine", + "chopped garlic" + ] + }, + { + "id": 30465, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "cucumber", + "lettuce", + "purple onion", + "kalamata", + "chicken", + "tomatoes", + "tzatziki" + ] + }, + { + "id": 495, + "cuisine": "italian", + "ingredients": [ + "parsley leaves", + "salt", + "capers", + "red wine vinegar", + "dijon mustard", + "extra-virgin olive oil", + "shallots", + "chopped garlic" + ] + }, + { + "id": 40779, + "cuisine": "thai", + "ingredients": [ + "chicken wings", + "ketchup", + "shallots", + "cilantro leaves", + "oyster sauce", + "tomatoes", + "soy sauce", + "tapioca starch", + "salt", + "oil", + "sugar", + "Sriracha", + "cooking wine", + "peanut oil", + "celery stick", + "water", + "garlic", + "roasted peanuts", + "onions" + ] + }, + { + "id": 20650, + "cuisine": "vietnamese", + "ingredients": [ + "lemon grass", + "chopped cilantro", + "lime", + "chopped fresh chives", + "fresh ginger root", + "salt", + "jasmine rice", + "ground black pepper", + "chicken" + ] + }, + { + "id": 34436, + "cuisine": "british", + "ingredients": [ + "milk", + "all-purpose flour", + "baking powder", + "active dry yeast", + "white sugar", + "water", + "salt" + ] + }, + { + "id": 16607, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "morel", + "bean paste", + "chili oil", + "corn starch", + "mustard", + "fresh ginger", + "Shaoxing wine", + "vegetable oil", + "garlic cloves", + "water", + "firm silken tofu", + "szechwan peppercorns", + "scallions", + "chinese chives", + "white button mushrooms", + "hot chili", + "mushrooms", + "spices", + "konbu" + ] + }, + { + "id": 4495, + "cuisine": "russian", + "ingredients": [ + "shredded cheddar cheese", + "potatoes", + "onions", + "chicken bouillon", + "sauerkraut", + "salt", + "pepper", + "evaporated milk", + "all-purpose flour", + "green cabbage", + "water", + "butter" + ] + }, + { + "id": 13233, + "cuisine": "greek", + "ingredients": [ + "slivered almonds", + "butter", + "baking soda", + "fresh lemon juice", + "milk", + "all-purpose flour", + "eggs", + "baking powder", + "white sugar" + ] + }, + { + "id": 12553, + "cuisine": "southern_us", + "ingredients": [ + "whole crab", + "sausages", + "seafood seasoning", + "corn husks", + "shrimp", + "new potatoes" + ] + }, + { + "id": 33062, + "cuisine": "irish", + "ingredients": [ + "large eggs", + "extra-virgin olive oil", + "fresh chervil", + "coarse salt", + "freshly ground pepper", + "unsalted butter", + "dry sherry", + "wild mushrooms", + "shallots", + "crème fraîche" + ] + }, + { + "id": 45497, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "shiitake", + "tiger prawn", + "chicken stock", + "steamed rice", + "stir fry sauce", + "baby bok choy", + "granulated sugar", + "canola oil", + "minced garlic", + "mirin" + ] + }, + { + "id": 41291, + "cuisine": "mexican", + "ingredients": [ + "cold water", + "olive oil", + "coarse salt", + "shredded sharp cheddar cheese", + "sour cream", + "black pepper", + "low sodium chicken broth", + "garlic", + "salsa", + "onions", + "green bell pepper", + "boneless chicken breast", + "white rice", + "frozen corn", + "chopped cilantro", + "chile powder", + "dried thyme", + "lime wedges", + "black olives", + "tortilla chips", + "dried oregano" + ] + }, + { + "id": 48948, + "cuisine": "irish", + "ingredients": [ + "zucchini", + "vegetable oil", + "crushed red pepper", + "sorrel", + "dry white wine", + "whipping cream", + "tomatoes", + "mushrooms", + "butter", + "halibut fillets", + "shallots", + "white wine vinegar" + ] + }, + { + "id": 49587, + "cuisine": "spanish", + "ingredients": [ + "ice cubes", + "dry white wine", + "liqueur", + "peaches", + "strawberries", + "orange", + "lemon", + "strawberry syrup", + "muscat" + ] + }, + { + "id": 45694, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "green onions", + "rice vinegar", + "sugar", + "large eggs", + "vegetable oil", + "mung bean sprouts", + "fish sauce", + "radishes", + "lime wedges", + "firm tofu", + "rice sticks", + "medium shrimp uncook", + "paprika" + ] + }, + { + "id": 3147, + "cuisine": "french", + "ingredients": [ + "black peppercorns", + "lobster", + "heavy cream", + "carrots", + "tomato paste", + "olive oil", + "fish stock", + "garlic", + "onions", + "brandy", + "fresh thyme leaves", + "dry sherry", + "corn starch", + "celery ribs", + "water", + "vine ripened tomatoes", + "fresh tarragon", + "bay leaf" + ] + }, + { + "id": 37547, + "cuisine": "greek", + "ingredients": [ + "white rice", + "lemon juice", + "ground black pepper", + "salt", + "grape leaves", + "garlic", + "ground lamb", + "kalamata", + "ground allspice" + ] + }, + { + "id": 1493, + "cuisine": "filipino", + "ingredients": [ + "salt", + "pepper", + "lemon juice", + "seasoned bread crumbs", + "garlic cloves", + "butter", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 20048, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "stuffing", + "salt", + "parsley sprigs", + "turkey", + "cooking spray" + ] + }, + { + "id": 17938, + "cuisine": "french", + "ingredients": [ + "white sugar", + "milk", + "egg yolks", + "vanilla beans" + ] + }, + { + "id": 22354, + "cuisine": "british", + "ingredients": [ + "plain flour", + "salt", + "pepper", + "yeast", + "fennel", + "fish fillets", + "beer" + ] + }, + { + "id": 44029, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "large eggs", + "red food coloring", + "confectioners sugar", + "unsalted butter", + "buttermilk", + "salt", + "unsweetened cocoa powder", + "baking soda", + "butter", + "cake flour", + "canola oil", + "white vinegar", + "granulated sugar", + "vanilla", + "cream cheese" + ] + }, + { + "id": 14965, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "onions", + "tomatoes", + "salt", + "avocado", + "jalapeno chilies", + "chopped cilantro fresh", + "lime juice", + "hellmann' or best food real mayonnais" + ] + }, + { + "id": 38209, + "cuisine": "spanish", + "ingredients": [ + "virgin olive oil", + "eggplant", + "diced tomatoes", + "kosher salt", + "zucchini", + "chopped onion", + "fresh basil", + "ground black pepper", + "fresh oregano", + "minced garlic", + "baking potatoes" + ] + }, + { + "id": 5976, + "cuisine": "russian", + "ingredients": [ + "cod fillets", + "fresh parsley", + "pepper", + "lemon", + "potatoes", + "onions", + "water", + "salt" + ] + }, + { + "id": 479, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "vegetable oil", + "garlic cloves", + "large egg whites", + "boneless skinless chicken breasts", + "sea salt", + "gluten-free tamari", + "broccoli florets", + "red pepper", + "corn starch", + "honey", + "sesame oil", + "scallions" + ] + }, + { + "id": 43042, + "cuisine": "thai", + "ingredients": [ + "peeled fresh ginger", + "green beans", + "chopped cilantro fresh", + "unsweetened coconut milk", + "vegetable oil", + "thai green curry paste", + "green onions", + "grate lime peel", + "eggplant", + "garlic cloves", + "chopped fresh mint" + ] + }, + { + "id": 10477, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "natural peanut butter", + "vegetable oil", + "garlic paste", + "lime juice", + "light brown sugar", + "kosher salt", + "Thai red curry paste", + "fish sauce", + "boneless skinless chicken breasts" + ] + }, + { + "id": 6292, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "dijon mustard", + "bacon", + "shredded parmesan cheese", + "romaine lettuce", + "garbanzo beans", + "chicken breasts", + "garlic", + "genoa salami", + "large egg yolks", + "roma tomatoes", + "extra-virgin olive oil", + "shredded mozzarella cheese", + "sugar", + "ground black pepper", + "red wine vinegar", + "purple onion" + ] + }, + { + "id": 13493, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "polenta prepar", + "fresh mozzarella", + "sweet italian sausage", + "fennel seeds", + "ground black pepper", + "yellow onion", + "crushed tomatoes", + "garlic", + "fresh oregano" + ] + }, + { + "id": 14643, + "cuisine": "japanese", + "ingredients": [ + "miso paste", + "water", + "silken tofu", + "green onions", + "dashi" + ] + }, + { + "id": 18844, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "olive oil", + "extra-virgin olive oil", + "sea salt", + "bell pepper", + "garlic" + ] + }, + { + "id": 40363, + "cuisine": "british", + "ingredients": [ + "black pepper", + "russet potatoes", + "all-purpose flour", + "canola oil", + "cod fillets", + "paprika", + "beer", + "garlic powder", + "sea salt", + "cayenne pepper", + "baking powder", + "salt", + "oil" + ] + }, + { + "id": 32038, + "cuisine": "chinese", + "ingredients": [ + "ground chicken", + "cooking oil", + "oil", + "cabbage", + "spring roll wrappers", + "fresh ginger", + "rice wine", + "carrots", + "soy sauce", + "ground black pepper", + "garlic", + "corn starch", + "water", + "green onions", + "oyster sauce" + ] + }, + { + "id": 46878, + "cuisine": "southern_us", + "ingredients": [ + "condensed cream of celery soup", + "quickcooking grits", + "pork sausages", + "water", + "salt", + "chopped green bell pepper", + "chopped onion", + "shredded cheddar cheese", + "chopped celery" + ] + }, + { + "id": 17888, + "cuisine": "filipino", + "ingredients": [ + "tomatoes", + "leaves", + "oil", + "fish sauce", + "ginger", + "onions", + "water", + "garlic", + "long beans", + "tamarind", + "whole chicken" + ] + }, + { + "id": 29835, + "cuisine": "italian", + "ingredients": [ + "water", + "large egg yolks", + "large eggs", + "all purpose unbleached flour", + "pure vanilla extract", + "vin santo", + "instant yeast", + "lemon", + "orange", + "unsalted butter", + "dark rum", + "fresh yeast", + "milk", + "granulated sugar", + "golden raisins", + "salt" + ] + }, + { + "id": 33011, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "vegetable shortening", + "scallions", + "yellow corn meal", + "large eggs", + "salt", + "sugar", + "baking powder", + "all-purpose flour", + "unsalted butter", + "buttermilk" + ] + }, + { + "id": 5279, + "cuisine": "moroccan", + "ingredients": [ + "large eggs", + "extra-virgin olive oil", + "sherry vinegar", + "farro", + "freshly ground pepper", + "unsalted butter", + "cauliflower florets", + "scallions", + "vegetable stock", + "salt" + ] + }, + { + "id": 37847, + "cuisine": "mexican", + "ingredients": [ + "clove", + "cider vinegar", + "cumin seed", + "chicken legs", + "chile de arbol", + "cinnamon sticks", + "guajillo chiles", + "fine sea salt", + "dried oregano", + "anise seed", + "water", + "garlic cloves" + ] + }, + { + "id": 47278, + "cuisine": "brazilian", + "ingredients": [ + "green bell pepper", + "shell-on shrimp", + "fresh lemon juice", + "unsweetened coconut milk", + "olive oil", + "salt", + "chopped cilantro fresh", + "palm oil", + "cayenne", + "garlic cloves", + "black pepper", + "tomatoes with juice", + "onions" + ] + }, + { + "id": 30329, + "cuisine": "russian", + "ingredients": [ + "beef shoulder", + "beef consomme", + "pickled beets", + "onions", + "fresh dill", + "veal", + "heavy cream", + "sliced mushrooms", + "pullman loaf", + "mint leaves", + "salt", + "eggs", + "ground black pepper", + "wonton wrappers", + "dill" + ] + }, + { + "id": 29297, + "cuisine": "indian", + "ingredients": [ + "phyllo dough", + "olive oil", + "clove garlic, fine chop", + "toasted almonds", + "black pepper", + "golden raisins", + "yellow onion", + "basmati rice", + "boneless chicken skinless thigh", + "low sodium chicken broth", + "ginger", + "plain whole-milk yogurt", + "ground cinnamon", + "kosher salt", + "butter", + "carrots" + ] + }, + { + "id": 3906, + "cuisine": "mexican", + "ingredients": [ + "cherry coke", + "garlic cloves", + "salt", + "pepper", + "beef roast", + "beef broth" + ] + }, + { + "id": 47603, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "brown sugar", + "boneless skinless chicken breasts", + "onions", + "cooked rice", + "water", + "lemon juice", + "tomato paste", + "soy sauce", + "green pepper", + "white sugar", + "white vinegar", + "pineapple chunks", + "garlic powder", + "corn starch" + ] + }, + { + "id": 13739, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "green onions", + "chili sauce", + "reduced fat mayonnaise", + "Boston lettuce", + "reduced fat creamy peanut butter", + "unsalted dry roast peanuts", + "garlic cloves", + "cooked chicken breasts", + "brown sugar", + "reduced sodium soy sauce", + "sesame oil", + "gingerroot", + "chicken salad", + "lime juice", + "shredded carrots", + "rice vinegar", + "red bell pepper", + "canola oil" + ] + }, + { + "id": 7663, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "eggs", + "garlic", + "tomatoes", + "chees fresh mozzarella", + "plain dry bread crumb", + "all-purpose flour" + ] + }, + { + "id": 26694, + "cuisine": "french", + "ingredients": [ + "mussels", + "large egg yolks", + "leeks", + "crème fraîche", + "thyme sprigs", + "cod", + "black pepper", + "half & half", + "sea salt", + "flat leaf parsley", + "parsley sprigs", + "fennel bulb", + "butter", + "lemon rind", + "boiling water", + "bouillon", + "sea scallops", + "dry white wine", + "chopped onion", + "bay leaf" + ] + }, + { + "id": 39998, + "cuisine": "korean", + "ingredients": [ + "sambal ulek", + "garlic", + "sesame seeds", + "kosher salt", + "dark sesame oil", + "napa cabbage" + ] + }, + { + "id": 33138, + "cuisine": "italian", + "ingredients": [ + "baguette", + "extra-virgin olive oil", + "black pepper", + "parmigiano reggiano cheese", + "frozen chopped spinach", + "water", + "salt", + "reduced sodium chicken broth", + "large eggs" + ] + }, + { + "id": 29441, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "fresh parsley", + "fresh rosemary", + "anchovy paste", + "fish", + "fresh thyme", + "onions", + "eggs", + "extra-virgin olive oil" + ] + }, + { + "id": 12736, + "cuisine": "spanish", + "ingredients": [ + "minced garlic", + "dry white wine", + "unsweetened chocolate", + "bay leaves", + "salt", + "onions", + "olive oil", + "paprika", + "carrots", + "green bell pepper", + "oxtails", + "beef broth" + ] + }, + { + "id": 45058, + "cuisine": "chinese", + "ingredients": [ + "broccoli", + "fresh ginger", + "canola oil", + "soy sauce", + "bok choy", + "garlic" + ] + }, + { + "id": 28367, + "cuisine": "jamaican", + "ingredients": [ + "ground ginger", + "dried thyme", + "vegetable oil", + "chicken", + "ground paprika", + "garlic powder", + "paprika", + "allspice", + "black pepper", + "flour", + "salt", + "milk", + "onion powder", + "cayenne pepper" + ] + }, + { + "id": 5887, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chili powder", + "beef broth", + "ground cumin", + "diced green chilies", + "lean ground beef", + "cayenne pepper", + "shredded cheddar cheese", + "sliced black olives", + "diced tomatoes", + "onions", + "wide egg noodles", + "green onions", + "garlic", + "dried oregano" + ] + }, + { + "id": 44833, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chives", + "cayenne pepper", + "corn tortillas", + "refried beans", + "salt", + "shrimp", + "lime", + "grapeseed oil", + "ear of corn", + "garlic powder", + "california avocado", + "red bell pepper" + ] + }, + { + "id": 20236, + "cuisine": "french", + "ingredients": [ + "cold water", + "ground black pepper", + "sea salt", + "arborio rice", + "large eggs", + "fine sea salt", + "olive oil", + "leeks", + "peanut oil", + "parmigiano-reggiano cheese", + "pumpkin", + "all-purpose flour" + ] + }, + { + "id": 25656, + "cuisine": "italian", + "ingredients": [ + "italian plum tomatoes", + "chopped garlic", + "olive oil", + "flat leaf parsley", + "ground black pepper", + "fresh basil leaves", + "salt" + ] + }, + { + "id": 25474, + "cuisine": "italian", + "ingredients": [ + "limoncello", + "whole milk", + "heavy whipping cream", + "large egg yolks", + "coffee beans", + "sugar", + "mascarpone", + "fresh lemon juice", + "vanilla beans", + "buttermilk", + "grated lemon peel" + ] + }, + { + "id": 49224, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "white vinegar", + "salad dressing", + "eggs", + "white sugar", + "corn oil" + ] + }, + { + "id": 42991, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "paprika", + "ginger root", + "ground cumin", + "low-fat plain yogurt", + "jalapeno chilies", + "cumin seed", + "cooked white rice", + "olive oil", + "cilantro", + "fresh lime juice", + "tomato sauce", + "boneless skinless chicken breasts", + "garlic cloves", + "nonfat evaporated milk" + ] + }, + { + "id": 32662, + "cuisine": "italian", + "ingredients": [ + "dijon mustard", + "salt", + "uncooked ziti", + "cooking spray", + "shredded Monterey Jack cheese", + "large egg whites", + "green onions", + "grated parmesan cheese", + "nonfat evaporated milk" + ] + }, + { + "id": 14967, + "cuisine": "italian", + "ingredients": [ + "chuck roast", + "onions", + "pepper", + "salt", + "tomato sauce", + "beef bouillon", + "water", + "pearl barley" + ] + }, + { + "id": 30133, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "onions", + "seasoning", + "peas", + "water", + "sugar", + "salt" + ] + }, + { + "id": 33202, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "butter", + "xanthan gum", + "tapioca starch", + "salt", + "flour", + "buttermilk", + "baking powder", + "white rice flour" + ] + }, + { + "id": 38763, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "large eggs", + "garlic cloves", + "ground black pepper", + "crushed red pepper", + "spaghetti", + "fresh parmesan cheese", + "reduced fat milk", + "flat leaf parsley", + "asparagus", + "salt" + ] + }, + { + "id": 18435, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "ruby red grapefruit", + "dessert wine", + "sugar" + ] + }, + { + "id": 16776, + "cuisine": "chinese", + "ingredients": [ + "pork belly", + "raw sugar", + "red chili peppers", + "minced ginger", + "chinese five-spice powder", + "minced garlic", + "sea salt", + "soy sauce", + "vinegar", + "ground white pepper" + ] + }, + { + "id": 44713, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "buttermilk", + "chopped onion", + "chopped garlic", + "tomato paste", + "olive oil", + "cayenne pepper", + "ground turmeric", + "clove", + "curry powder", + "ginger", + "peppercorns", + "red kidney beans", + "beans", + "heavy cream", + "coriander" + ] + }, + { + "id": 29473, + "cuisine": "french", + "ingredients": [ + "fresh lemon juice", + "balsamic vinegar", + "plum tomatoes", + "olive oil", + "red bell pepper", + "garlic" + ] + }, + { + "id": 33931, + "cuisine": "moroccan", + "ingredients": [ + "red chili peppers", + "large eggs", + "onions", + "cherry tomatoes", + "extra-virgin olive oil", + "fresh cilantro", + "red pepper", + "ground cumin", + "light brown sugar", + "zucchini", + "garlic cloves" + ] + }, + { + "id": 20372, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "italian seasoning", + "grated parmesan cheese", + "eggs", + "pasta", + "ground beef" + ] + }, + { + "id": 23171, + "cuisine": "southern_us", + "ingredients": [ + "fat free less sodium chicken broth", + "red wine vinegar", + "salt", + "black pepper", + "olive oil", + "crushed red pepper", + "thyme sprigs", + "baby lima beans", + "smoked turkey breast", + "purple onion", + "bay leaf", + "collard greens", + "dried thyme", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 16216, + "cuisine": "irish", + "ingredients": [ + "sliced carrots", + "all-purpose flour", + "corn starch", + "tomato paste", + "garlic", + "beer", + "onions", + "cold water", + "vegetable oil", + "beef broth", + "fresh parsley", + "potatoes", + "beef stew meat", + "fresh mushrooms" + ] + }, + { + "id": 42618, + "cuisine": "italian", + "ingredients": [ + "cheddar cheese", + "fresh thyme leaves", + "fresh basil leaves", + "eggplant", + "extra-virgin olive oil", + "plum tomatoes", + "red chili peppers", + "balsamic vinegar", + "prepared lasagne", + "parmesan cheese", + "garlic" + ] + }, + { + "id": 37999, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "diced tomatoes", + "yellow onion", + "chopped cilantro", + "unsalted butter", + "salt", + "grated jack cheese", + "chiles", + "garlic", + "tortilla chips", + "serrano chile", + "whole milk", + "all-purpose flour", + "sour cream" + ] + }, + { + "id": 20253, + "cuisine": "jamaican", + "ingredients": [ + "tumeric", + "coconut", + "bell pepper", + "onion powder", + "salt", + "celery", + "red potato", + "black pepper", + "garlic powder", + "soya bean", + "ginger", + "thyme", + "chicken stock", + "stewing hen", + "lime", + "sweet potatoes", + "cinnamon", + "carrots", + "allspice", + "vidalia onion", + "curry powder", + "habanero pepper", + "converted rice", + "purple onion", + "coconut milk" + ] + }, + { + "id": 35180, + "cuisine": "french", + "ingredients": [ + "chicken stock", + "crimini mushrooms", + "bacon", + "bone in chicken thighs", + "olive oil", + "shallots", + "all-purpose flour", + "fresh marjoram", + "chives", + "garlic", + "salted butter", + "zinfandel", + "boiling onions" + ] + }, + { + "id": 47785, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "white pepper", + "garlic", + "corn starch", + "pork", + "dry sherry", + "oyster sauce", + "onions", + "cabbage leaves", + "sesame oil", + "chow mein noodles", + "celery", + "sugar pea", + "button mushrooms", + "carrots" + ] + }, + { + "id": 45072, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "beef broth", + "beef deli roast slice thinli", + "dried oregano", + "green bell pepper", + "sub buns", + "olive oil", + "giardiniera" + ] + }, + { + "id": 10975, + "cuisine": "thai", + "ingredients": [ + "wide rice noodles", + "water", + "broccoli", + "rib eye steaks", + "soy sauce", + "crushed garlic", + "white sugar", + "fish sauce", + "vegetable oil", + "corn starch", + "eggs", + "salt and ground black pepper", + "oyster sauce" + ] + }, + { + "id": 13346, + "cuisine": "mexican", + "ingredients": [ + "milk", + "condensed cream of mushroom soup", + "red enchilada sauce", + "chile pepper", + "chopped onion", + "cream of chicken soup", + "garlic", + "ripe olives", + "cheddar cheese", + "lean ground beef", + "tortilla chips" + ] + }, + { + "id": 38818, + "cuisine": "french", + "ingredients": [ + "finely chopped fresh parsley", + "garlic", + "vegetable oil", + "salt", + "diced tomatoes", + "all-purpose flour", + "white wine", + "kalamata", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 38605, + "cuisine": "japanese", + "ingredients": [ + "yellow miso", + "rice vinegar", + "peeled fresh ginger", + "honey", + "ground red pepper" + ] + }, + { + "id": 46044, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "olive oil", + "taco seasoning" + ] + }, + { + "id": 18158, + "cuisine": "filipino", + "ingredients": [ + "olive oil", + "spaghetti squash", + "cabbage", + "lemon", + "green beans", + "chicken breasts", + "carrots", + "soy sauce", + "garlic", + "onions" + ] + }, + { + "id": 42466, + "cuisine": "french", + "ingredients": [ + "olive oil", + "garlic cloves", + "toast", + "shallots", + "red bell pepper", + "almonds", + "fresh parsley leaves", + "flat anchovy", + "tomatoes", + "red wine vinegar", + "herbes de provence" + ] + }, + { + "id": 36087, + "cuisine": "southern_us", + "ingredients": [ + "seasoning salt", + "cornmeal", + "buttermilk", + "green tomatoes", + "oil" + ] + }, + { + "id": 27245, + "cuisine": "thai", + "ingredients": [ + "sugar", + "green onions", + "hot sauce", + "lime juice", + "rice noodles", + "beansprouts", + "soy sauce", + "sesame oil", + "peanut butter", + "tofu", + "peanuts", + "garlic", + "onions" + ] + }, + { + "id": 43613, + "cuisine": "greek", + "ingredients": [ + "pepper", + "green onions", + "english cucumber", + "plain yogurt", + "pita bread rounds", + "cream cheese", + "black pepper", + "sliced black olives", + "salt", + "feta cheese", + "garlic", + "plum tomatoes" + ] + }, + { + "id": 25178, + "cuisine": "southern_us", + "ingredients": [ + "fresh rosemary", + "olive oil", + "crimini mushrooms", + "canned tomatoes", + "chopped onion", + "black pepper", + "cayenne", + "balsamic vinegar", + "all-purpose flour", + "fresh parsley", + "kosher salt", + "bay leaves", + "dry red wine", + "beef broth", + "chopped garlic", + "top round steak", + "ground black pepper", + "fresh thyme leaves", + "chopped celery", + "red bell pepper" + ] + }, + { + "id": 28257, + "cuisine": "spanish", + "ingredients": [ + "flour", + "salt", + "fresh parsley", + "olive oil", + "garlic", + "spanish paprika", + "baking soda", + "dried salted codfish", + "bay leaf", + "spinach", + "diced tomatoes", + "dried chickpeas", + "onions" + ] + }, + { + "id": 22890, + "cuisine": "cajun_creole", + "ingredients": [ + "crab", + "file powder", + "peeled shrimp", + "okra", + "tomatoes", + "water", + "green onions", + "salt", + "pepper", + "flour", + "smoked sausage", + "onions", + "cooked rice", + "tomato juice", + "butter", + "cayenne pepper" + ] + }, + { + "id": 41313, + "cuisine": "southern_us", + "ingredients": [ + "nonhydrogenated margarine", + "garbanzo beans", + "gluten free chicken broth", + "white rice flour", + "flat leaf parsley", + "olive oil", + "soup", + "yellow onion", + "thyme", + "bay leaf", + "eggs", + "soy milk", + "bone in skinless chicken thigh", + "gluten-free baking powder", + "dumplings", + "frozen peas", + "tapioca flour", + "ground black pepper", + "salt", + "carrots", + "celery" + ] + }, + { + "id": 49295, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "fresh ginger root", + "sesame oil", + "corn starch", + "chinese baby corn", + "mushrooms", + "broccoli", + "soy sauce", + "cooking oil", + "dry sherry", + "onions", + "jasmine rice", + "flank steak", + "carrots" + ] + }, + { + "id": 29780, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "2% reduced-fat milk", + "granulated sugar", + "salt", + "firmly packed brown sugar", + "vanilla extract", + "bread", + "chop fine pecan", + "I Can't Believe It's Not Butter!® All Purpose Sticks" + ] + }, + { + "id": 46724, + "cuisine": "cajun_creole", + "ingredients": [ + "kidney beans", + "green pepper", + "onions", + "garlic", + "oil", + "diced tomatoes", + "rice", + "chicken broth", + "hot sauce", + "diced ham" + ] + }, + { + "id": 16281, + "cuisine": "spanish", + "ingredients": [ + "hanger steak", + "sugar", + "roasted garlic", + "salt", + "cider vinegar", + "oregano" + ] + }, + { + "id": 16764, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "sugar", + "raisins", + "caraway seeds", + "buttermilk", + "baking soda", + "salt" + ] + }, + { + "id": 35866, + "cuisine": "chinese", + "ingredients": [ + "sweet chili sauce", + "ground pork", + "chinese five-spice powder", + "onions", + "water", + "garlic", + "corn starch", + "ketchup", + "ginger", + "oil", + "Chinese rice vinegar", + "soy sauce", + "sesame oil", + "salt", + "ground white pepper" + ] + }, + { + "id": 13291, + "cuisine": "cajun_creole", + "ingredients": [ + "herbsaint", + "rye whiskey", + "bitters", + "sugar" + ] + }, + { + "id": 44906, + "cuisine": "japanese", + "ingredients": [ + "sesame oil", + "water", + "scallions", + "gari", + "soba noodles", + "light soy sauce" + ] + }, + { + "id": 1106, + "cuisine": "spanish", + "ingredients": [ + "dry white wine", + "brandy", + "sweet chorizo", + "parsley sprigs", + "pimentos", + "baguette" + ] + }, + { + "id": 28251, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "cornmeal", + "salt", + "grits", + "pepper", + "salsa", + "water", + "pork sausages" + ] + }, + { + "id": 10659, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "salt", + "lumpia skins", + "ginger", + "carrots", + "noodles", + "ground pork", + "hamburger", + "onions", + "eggs", + "garlic", + "green beans", + "cabbage" + ] + }, + { + "id": 26867, + "cuisine": "mexican", + "ingredients": [ + "shortening", + "salsa verde", + "chili powder", + "cayenne pepper", + "sazon seasoning", + "tomatoes", + "pepper", + "Adobo All Purpose Seasoning", + "garlic", + "ground beef", + "ground cumin", + "cold water", + "kosher salt", + "vinegar", + "cheese", + "green pepper", + "sofrito", + "eggs", + "water", + "flour", + "salt", + "onions" + ] + }, + { + "id": 41790, + "cuisine": "italian", + "ingredients": [ + "fresh leav spinach", + "won ton wrappers", + "part-skim ricotta cheese", + "vidalia onion", + "olive oil", + "diced tomatoes", + "pepper", + "grated parmesan cheese", + "salt", + "fresh basil", + "large egg whites", + "large garlic cloves" + ] + }, + { + "id": 41485, + "cuisine": "filipino", + "ingredients": [ + "cheddar cheese", + "pepper", + "hot dogs", + "garlic", + "oil", + "soy sauce", + "flour", + "lemon", + "beef broth", + "bay leaf", + "tomato sauce", + "bottom round", + "marinade", + "salt", + "carrots", + "sweet pickle", + "hard-boiled egg", + "bacon", + "liver", + "onions" + ] + }, + { + "id": 3673, + "cuisine": "russian", + "ingredients": [ + "nonfat yogurt", + "purple onion", + "fresh dill", + "1% low-fat milk", + "yukon gold potatoes", + "dill tips", + "red wine vinegar", + "beets" + ] + }, + { + "id": 13402, + "cuisine": "moroccan", + "ingredients": [ + "yukon gold potatoes", + "minced garlic", + "salt", + "pepper", + "whipping cream", + "whole milk", + "ground cumin" + ] + }, + { + "id": 5800, + "cuisine": "japanese", + "ingredients": [ + "flour", + "salt", + "sugar", + "vegetable oil", + "water", + "veggies", + "baking powder", + "oil" + ] + }, + { + "id": 27556, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "artichoke hearts", + "dried oregano", + "tomatoes", + "dried basil", + "lemon juice", + "water", + "garlic cloves", + "spinach", + "olive oil", + "feta cheese crumbles" + ] + }, + { + "id": 3770, + "cuisine": "southern_us", + "ingredients": [ + "andouille sausage", + "low sodium chicken broth", + "dry sherry", + "fresh parsley", + "green bell pepper", + "large eggs", + "buttermilk", + "chopped pecans", + "sugar", + "green onions", + "creole seasoning", + "white cornmeal", + "celery ribs", + "sweet onion", + "butter", + "fresh mushrooms" + ] + }, + { + "id": 17437, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "whipping cream", + "large eggs", + "garlic cloves", + "pancetta", + "grated parmesan cheese", + "bucatini", + "zucchini", + "crushed red pepper" + ] + }, + { + "id": 6450, + "cuisine": "indian", + "ingredients": [ + "chopped tomatoes", + "chicken breasts", + "green chilies", + "onions", + "clove", + "garam masala", + "ginger", + "ground coriander", + "ground cumin", + "ground nutmeg", + "chili powder", + "cardamom pods", + "coriander", + "tumeric", + "cooking oil", + "salt", + "garlic cloves" + ] + }, + { + "id": 48141, + "cuisine": "indian", + "ingredients": [ + "milk", + "mutton", + "oil", + "coriander", + "clove", + "seeds", + "salt", + "ghee", + "ginger paste", + "garlic paste", + "chili powder", + "green chilies", + "onions", + "semolina", + "black cumin seeds", + "lemon juice", + "ground turmeric" + ] + }, + { + "id": 35673, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "chopped onion", + "chopped cilantro", + "boneless pork shoulder", + "salt", + "boneless pork tenderloin", + "ground cumin", + "chili powder", + "orange juice", + "chopped garlic", + "black pepper", + "salsa", + "corn tortillas" + ] + }, + { + "id": 31680, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "boneless skinless chicken breasts", + "Mexican cheese", + "flour tortillas", + "cayenne pepper", + "kosher salt", + "salsa", + "sour cream", + "guacamole", + "garlic cloves" + ] + }, + { + "id": 16022, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "garlic", + "chopped cilantro", + "chicken stock", + "lime", + "lamb shoulder", + "onions", + "coconut oil", + "ground black pepper", + "salt", + "lite coconut milk", + "chile pepper", + "scallions" + ] + }, + { + "id": 27931, + "cuisine": "mexican", + "ingredients": [ + "water", + "salsa", + "smoked kielbasa", + "diced tomatoes", + "taco seasoning", + "chopped green chilies", + "green pepper", + "onions", + "white rice", + "red bell pepper" + ] + }, + { + "id": 19099, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "pecorino romano cheese", + "cream cheese", + "parsley sprigs", + "butter", + "all-purpose flour", + "fettucine", + "half & half", + "salt", + "frozen chopped spinach", + "ground black pepper", + "bacon slices", + "garlic cloves" + ] + }, + { + "id": 43390, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "cucumber", + "mayonaise", + "cayenne pepper", + "assorted fresh vegetables", + "sour cream", + "white onion", + "cream cheese" + ] + }, + { + "id": 28756, + "cuisine": "korean", + "ingredients": [ + "korean chile", + "garlic", + "kimchi", + "water", + "pork loin chops", + "dark sesame oil", + "sliced green onions" + ] + }, + { + "id": 42667, + "cuisine": "japanese", + "ingredients": [ + "avocado", + "fresh spinach", + "salmon", + "mirin", + "seasoned rice wine vinegar", + "nori", + "spinach", + "soy sauce", + "minced garlic", + "teriyaki sauce", + "scallions", + "sesame", + "sugar", + "kosher salt", + "sesame oil", + "rice vinegar", + "salmon fillets", + "sushi rice", + "minced ginger", + "salt", + "white sesame seeds" + ] + }, + { + "id": 2979, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "water", + "Alfredo sauce", + "fresh basil", + "parmesan cheese", + "cheese", + "eggs", + "garlic powder", + "ricotta cheese", + "frozen chopped spinach", + "mozzarella cheese", + "lasagna noodles", + "oregano" + ] + }, + { + "id": 38848, + "cuisine": "italian", + "ingredients": [ + "ice cubes", + "carbonated water", + "lambrusco" + ] + }, + { + "id": 14910, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "canned low sodium chicken broth", + "boneless skinless chicken breasts", + "dried rosemary", + "fennel bulb", + "flat leaf parsley", + "olive oil", + "garlic" + ] + }, + { + "id": 45430, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "butter", + "purple onion", + "okra", + "lemongrass", + "ginger", + "cilantro leaves", + "shrimp", + "chiles", + "red pepper", + "salt", + "oil", + "lime", + "garlic", + "barramundi fillets", + "cashew nuts" + ] + }, + { + "id": 19343, + "cuisine": "filipino", + "ingredients": [ + "minced garlic", + "minced onion", + "garlic chili sauce", + "sugar", + "olive oil", + "chicken tenderloin", + "pasta", + "water", + "butter", + "oyster sauce", + "soy sauce", + "peanuts", + "dried shiitake mushrooms" + ] + }, + { + "id": 40486, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "onions", + "olive oil", + "low salt chicken broth", + "spaghetti sauce seasoning mix", + "chicken breast halves", + "mushrooms", + "red bell pepper" + ] + }, + { + "id": 4455, + "cuisine": "italian", + "ingredients": [ + "prebaked pizza crusts", + "chopped fresh chives", + "olive oil", + "salt", + "sweet onion", + "cheese", + "chicken-apple sausage", + "fennel bulb" + ] + }, + { + "id": 5209, + "cuisine": "french", + "ingredients": [ + "black pepper", + "flour", + "carrots", + "chicken thighs", + "red potato", + "turkey bacon", + "garlic", + "celery", + "chicken broth", + "pearl onions", + "dry red wine", + "thyme", + "cremini mushrooms", + "olive oil", + "salt", + "bay leaf" + ] + }, + { + "id": 19471, + "cuisine": "italian", + "ingredients": [ + "pepper", + "polenta", + "butter", + "salt", + "parmesan cheese" + ] + }, + { + "id": 25236, + "cuisine": "indian", + "ingredients": [ + "black lentil", + "ground cinnamon", + "ginger", + "onions", + "clove", + "light cream", + "green chilies", + "red kidney beans", + "water", + "garlic", + "olive oil spray", + "tomatoes", + "chili powder", + "cumin seed" + ] + }, + { + "id": 3432, + "cuisine": "spanish", + "ingredients": [ + "tomato sauce", + "salt", + "tomatoes", + "chili powder", + "rice", + "water", + "green pepper", + "green chile", + "worcestershire sauce", + "onions" + ] + }, + { + "id": 44075, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "unsalted butter", + "carrots", + "fine sea salt", + "yukon gold potatoes" + ] + }, + { + "id": 16247, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "flour tortillas", + "fresh lime juice", + "salsa verde", + "scallions", + "chopped cilantro fresh", + "black beans", + "lime wedges", + "medium shrimp", + "ground black pepper", + "red bell pepper" + ] + }, + { + "id": 13446, + "cuisine": "french", + "ingredients": [ + "leeks", + "organic vegetable broth", + "olive oil", + "diced tomatoes", + "medium shrimp", + "fennel bulb", + "grouper", + "fresh parsley", + "parsley sprigs", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 47512, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "onions", + "salt", + "cilantro leaves", + "tomatillos", + "serrano chile" + ] + }, + { + "id": 19143, + "cuisine": "mexican", + "ingredients": [ + "cheese", + "taco seasoning", + "tortilla chips", + "salsa", + "light sour cream", + "cream cheese" + ] + }, + { + "id": 35437, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "salt", + "mayonaise", + "chili powder", + "chopped cilantro fresh", + "corn husks", + "sour cream", + "cotija", + "lime wedges" + ] + }, + { + "id": 42255, + "cuisine": "southern_us", + "ingredients": [ + "waffle", + "baking soda", + "worcestershire sauce", + "peanut oil", + "brown sugar", + "large egg whites", + "onion powder", + "maple syrup", + "pepper", + "garlic powder", + "butter", + "all-purpose flour", + "ground cinnamon", + "water", + "boneless skinless chicken breasts", + "salt", + "panko breadcrumbs" + ] + }, + { + "id": 18386, + "cuisine": "italian", + "ingredients": [ + "capers", + "butter", + "fresh lemon juice", + "chicken broth", + "artichok heart marin", + "chicken breast tenderloins", + "canola oil", + "white pepper", + "salt", + "flat leaf parsley", + "black pepper", + "extra-virgin olive oil", + "wheat flour" + ] + }, + { + "id": 4321, + "cuisine": "italian", + "ingredients": [ + "artichoke hearts", + "cooking spray", + "italian seasoning", + "pepper", + "grated parmesan cheese", + "dry bread crumbs", + "angel hair", + "large eggs", + "all-purpose flour", + "large egg whites", + "marinara sauce", + "flat leaf parsley" + ] + }, + { + "id": 3331, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "scallions", + "kosher salt", + "heavy cream", + "manchego cheese", + "extra-virgin olive oil", + "white onion", + "potatoes", + "smoked paprika" + ] + }, + { + "id": 23673, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "pepper", + "bay leaves", + "salt", + "cinnamon sticks", + "tumeric", + "garam masala", + "brown mustard seeds", + "chopped onion", + "garlic paste", + "chopped tomatoes", + "meat", + "black cardamom pods", + "ground cumin", + "plain yogurt", + "coriander powder", + "chili powder", + "mustard oil" + ] + }, + { + "id": 16638, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "dry white wine", + "marjoram", + "feta cheese", + "salt", + "ground black pepper", + "flat leaf parsley", + "olive oil", + "canned tomatoes", + "large shrimp" + ] + }, + { + "id": 18558, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "shallots", + "salt", + "fish sauce", + "water", + "cracked black pepper", + "oyster sauce", + "black pepper", + "watercress", + "rice vinegar", + "sugar", + "tri tip", + "garlic", + "canola oil" + ] + }, + { + "id": 27366, + "cuisine": "mexican", + "ingredients": [ + "lamb shanks", + "cider vinegar", + "cilantro", + "canela", + "white onion", + "bay leaves", + "garlic cloves", + "ground cumin", + "brown sugar", + "kosher salt", + "Mexican oregano", + "ancho chile pepper", + "ground cloves", + "ground black pepper", + "fresh orange juice", + "canola oil" + ] + }, + { + "id": 43269, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "kosher salt", + "boneless skinless chicken breasts", + "garlic", + "sour cream", + "ground cumin", + "black pepper", + "lime", + "diced tomatoes", + "tortilla chips", + "onions", + "chicken broth", + "fresh cilantro", + "chili powder", + "frozen corn kernels", + "bay leaf", + "black beans", + "diced green chilies", + "cheese", + "red enchilada sauce", + "oregano" + ] + }, + { + "id": 27188, + "cuisine": "mexican", + "ingredients": [ + "cold milk", + "garlic powder", + "chili powder", + "Mexican cheese", + "dried oregano", + "corn tortilla chips", + "flour", + "salsa", + "ground beef", + "chicken broth", + "Sriracha", + "butter", + "sour cream", + "ground cumin", + "kosher salt", + "guacamole", + "cayenne pepper", + "onions" + ] + }, + { + "id": 22137, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "soy sauce", + "sugar", + "vegetable oil", + "salmon" + ] + }, + { + "id": 44764, + "cuisine": "indian", + "ingredients": [ + "low-fat sour cream", + "vegetable oil", + "onions", + "water", + "long grain brown rice", + "black pepper", + "salt", + "chopped cilantro fresh", + "dried lentils", + "curry powder", + "mustard seeds" + ] + }, + { + "id": 28764, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "green onions", + "garlic", + "italian sausage", + "egg whites", + "extra-virgin olive oil", + "feta cheese", + "Tabasco Pepper Sauce", + "red bell pepper", + "eggs", + "baby kale", + "1% low-fat milk" + ] + }, + { + "id": 42876, + "cuisine": "cajun_creole", + "ingredients": [ + "egg yolks", + "shredded sharp cheddar cheese", + "cayenne pepper", + "shredded cheddar cheese", + "butter", + "all-purpose flour", + "crabmeat", + "American cheese", + "green onions", + "salt", + "creole seasoning", + "garlic powder", + "heavy cream", + "yellow onion", + "celery" + ] + }, + { + "id": 35177, + "cuisine": "italian", + "ingredients": [ + "ricotta", + "tomato sauce", + "spaghetti squash", + "salt" + ] + }, + { + "id": 22668, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "onions", + "green pepper", + "shredded Monterey Jack cheese", + "vegetable oil", + "chunky salsa", + "Campbell's Condensed Cream of Mushroom Soup", + "fajita size flour tortillas" + ] + }, + { + "id": 4215, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "feta cheese crumbles", + "pinenuts", + "salt", + "extra-virgin olive oil", + "fresh basil leaves", + "artichoke hearts", + "oil" + ] + }, + { + "id": 43162, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "meyer lemon", + "onions", + "green olives", + "garlic cloves", + "ground cumin", + "olive oil", + "low salt chicken broth", + "ground cinnamon", + "paprika", + "chicken" + ] + }, + { + "id": 13172, + "cuisine": "italian", + "ingredients": [ + "vodka", + "marinara sauce", + "olive oil", + "crushed red pepper flakes", + "cream", + "basil leaves", + "parmesan cheese", + "penne pasta" + ] + }, + { + "id": 49075, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "scallions", + "dried shrimp", + "chinese ham", + "fresh ginger", + "napa cabbage", + "pig's trotters", + "chicken", + "sugar", + "baking soda", + "ground pork", + "shrimp shells", + "kosher salt", + "wonton wrappers", + "konbu", + "yellow chives" + ] + }, + { + "id": 11874, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "dark rum", + "mashed banana", + "fat", + "ground nutmeg", + "vegetable oil", + "all-purpose flour", + "powdered sugar", + "baking powder", + "salt", + "sweet potatoes", + "butter", + "crushed pineapple" + ] + }, + { + "id": 8159, + "cuisine": "indian", + "ingredients": [ + "water", + "dried mint flakes", + "greek style plain yogurt", + "black pepper", + "zucchini", + "salt", + "tumeric", + "unsalted butter", + "lamb shoulder", + "curry powder", + "cinnamon", + "couscous" + ] + }, + { + "id": 36306, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame oil", + "Gochujang base", + "eggs", + "shiitake", + "garlic", + "carrots", + "sesame seeds", + "vegetable oil", + "rice", + "spinach", + "zucchini", + "soybean sprouts", + "ground beef" + ] + }, + { + "id": 23678, + "cuisine": "chinese", + "ingredients": [ + "rice vinegar", + "water", + "lemon juice", + "chili paste", + "sugar", + "hot chili sauce" + ] + }, + { + "id": 5636, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "ground coriander", + "tumeric", + "crushed red pepper flakes", + "saffron", + "whole cloves", + "cumin seed", + "black peppercorns", + "cinnamon", + "cardamom" + ] + }, + { + "id": 33180, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "sweet onion", + "chicken leg quarters", + "crawfish", + "garlic", + "medium shrimp", + "andouille sausage", + "olive oil", + "sliced mushrooms", + "water", + "rice" + ] + }, + { + "id": 14690, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "cream", + "chopped tomatoes", + "marinade", + "paprika", + "mustard powder", + "tomato soup", + "tumeric", + "lime juice", + "yoghurt", + "spices", + "sweet pepper", + "cumin seed", + "onions", + "nutmeg", + "fresh coriander", + "garam masala", + "chili powder", + "white wine vinegar", + "green chilies", + "ghee", + "medium curry powder", + "fresh ginger", + "chicken breasts", + "sea salt", + "tomato ketchup", + "garlic cloves", + "coriander" + ] + }, + { + "id": 15012, + "cuisine": "brazilian", + "ingredients": [ + "cooked rice", + "longaniza", + "orange slices", + "scallions", + "farofa", + "kosher salt", + "cilantro leaves", + "corned beef", + "tomatoes", + "dried black beans", + "kale", + "hot sauce", + "green bell pepper", + "pig", + "bay leaves", + "onions" + ] + }, + { + "id": 36892, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "olive oil", + "salt", + "pepper", + "garlic", + "ground cumin", + "potatoes", + "ground turkey" + ] + }, + { + "id": 49644, + "cuisine": "moroccan", + "ingredients": [ + "caster sugar", + "hot water", + "teas", + "hand", + "fresh mint", + "clove", + "salt" + ] + }, + { + "id": 12322, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "purple onion", + "green bell pepper", + "lean ground beef", + "sausages", + "dough", + "pizza sauce", + "shredded mozzarella cheese", + "cooked ham", + "butter" + ] + }, + { + "id": 6821, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "kosher salt", + "buttermilk", + "eggs", + "baking powder", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 23467, + "cuisine": "greek", + "ingredients": [ + "dried basil", + "potatoes", + "marjoram", + "white wine", + "olive oil", + "garlic", + "dried rosemary", + "water", + "lemon zest", + "lemon pepper", + "dried thyme", + "lemon", + "italian salad dressing" + ] + }, + { + "id": 9048, + "cuisine": "british", + "ingredients": [ + "baking soda", + "vanilla extract", + "lemon juice", + "white sugar", + "shortening", + "butter", + "all-purpose flour", + "corn starch", + "ground cloves", + "raisins", + "chopped walnuts", + "hot water", + "ground cinnamon", + "ground nutmeg", + "salt", + "carrots" + ] + }, + { + "id": 17655, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "lettuce leaves", + "rice vinegar", + "snow peas", + "chicken broth", + "sea scallops", + "miso", + "beansprouts", + "minced garlic", + "green onions", + "carrots", + "fresh ginger", + "fresh shiitake mushrooms", + "red bell pepper" + ] + }, + { + "id": 42649, + "cuisine": "chinese", + "ingredients": [ + "light brown sugar", + "soy sauce", + "cilantro stems", + "star anise", + "mung bean sprouts", + "hot red pepper flakes", + "water", + "mustard greens", + "scallions", + "chiles", + "peeled fresh ginger", + "chinese wheat noodles", + "garlic cloves", + "chinese rice wine", + "reduced sodium chicken broth", + "chenpi", + "beef rib short" + ] + }, + { + "id": 17601, + "cuisine": "french", + "ingredients": [ + "frozen chopped spinach", + "shallots", + "salt", + "whole nutmegs", + "ground black pepper", + "1% low-fat milk", + "garlic cloves", + "cooking spray", + "gruyere cheese", + "ham", + "olive oil", + "yukon gold potatoes", + "all-purpose flour" + ] + }, + { + "id": 47436, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "half & half", + "all-purpose flour", + "pepper", + "butter", + "elbow macaroni", + "colby cheese", + "whole milk", + "cream cheese", + "dijon mustard", + "salt" + ] + }, + { + "id": 37375, + "cuisine": "italian", + "ingredients": [ + "radicchio", + "dry white wine", + "curly endive", + "leeks", + "white rice", + "arugula", + "grated parmesan cheese", + "large garlic cloves", + "onions", + "red beans", + "vegetable broth" + ] + }, + { + "id": 17011, + "cuisine": "mexican", + "ingredients": [ + "cooked rice", + "cooking spray", + "salsa", + "sliced green onions", + "black pepper", + "non-fat sour cream", + "iceberg lettuce", + "green chile", + "diced tomatoes", + "shredded zucchini", + "flour tortillas", + "salt", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 8548, + "cuisine": "japanese", + "ingredients": [ + "cooked rice", + "enokitake", + "sesame oil", + "liquid", + "beef steak", + "soy sauce", + "spring onions", + "chinese cabbage", + "celery", + "sugar", + "mushrooms", + "button mushrooms", + "oil", + "mirin", + "fresh shiitake mushrooms", + "firm tofu", + "bamboo shoots" + ] + }, + { + "id": 24034, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "salt", + "sugar", + "all-purpose flour", + "ice water" + ] + }, + { + "id": 35507, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salt", + "lime", + "coriander", + "pepper", + "onions", + "avocado", + "garlic" + ] + }, + { + "id": 9187, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "yellow onion", + "olive oil", + "potato chips" + ] + }, + { + "id": 45824, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "salt", + "ground white pepper", + "ground nutmeg", + "brie cheese", + "water", + "cayenne pepper", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 6592, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "hot pepper sauce", + "boneless skinless chicken breast halves", + "tomatoes", + "garlic", + "chicken broth", + "promise buttery spread", + "chopped cilantro fresh", + "lime juice", + "onions" + ] + }, + { + "id": 47215, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "soft tofu", + "bamboo shoots", + "soy sauce", + "corn starch", + "white vinegar", + "shiitake", + "ground white pepper", + "eggs", + "scallions" + ] + }, + { + "id": 44585, + "cuisine": "chinese", + "ingredients": [ + "water", + "shallots", + "garlic", + "carrots", + "soy sauce", + "Shaoxing wine", + "stir fry sauce", + "chow mein noodles", + "cabbage", + "sugar", + "baking soda", + "sesame oil", + "peanut oil", + "beansprouts", + "white pepper", + "chicken thigh fillets", + "cornflour", + "oyster sauce" + ] + }, + { + "id": 15108, + "cuisine": "mexican", + "ingredients": [ + "bean soup", + "white cheddar cheese", + "garlic cloves", + "chicken stock", + "butter", + "all-purpose flour", + "sour cream", + "whole milk", + "whipping cream", + "red bell pepper", + "green bell pepper", + "yellow bell pepper", + "salsa", + "onions" + ] + }, + { + "id": 33944, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "oil", + "bread", + "salt", + "ground cumin", + "arrowroot powder", + "coriander", + "black pepper", + "green chilies" + ] + }, + { + "id": 17697, + "cuisine": "indian", + "ingredients": [ + "cooked brown rice", + "red curry paste", + "water", + "plain yogurt", + "coconut milk", + "red lentils", + "baby spinach" + ] + }, + { + "id": 27787, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "buttermilk", + "green tomatoes", + "all-purpose flour", + "vegetable oil", + "self-rising cornmeal", + "large eggs", + "salt" + ] + }, + { + "id": 12821, + "cuisine": "french", + "ingredients": [ + "chervil", + "unsalted butter", + "crème fraîche", + "white wine", + "sea salt", + "boiling water", + "crusty bread", + "mushrooms", + "all-purpose flour", + "ground black pepper", + "button mushrooms" + ] + }, + { + "id": 29328, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "sea scallops", + "baby arugula", + "all-purpose flour", + "white pepper", + "sauerkraut", + "unsalted butter", + "heavy cream", + "smoked paprika", + "white onion", + "olive oil", + "dijon mustard", + "bacon", + "sour cream", + "chicken stock", + "sumac", + "cayenne", + "dry white wine", + "ground coriander" + ] + }, + { + "id": 38043, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "butter", + "strawberries", + "cooking spray", + "vanilla extract", + "bananas", + "crepes", + "mango", + "mango chutney", + "part-skim ricotta cheese" + ] + }, + { + "id": 4947, + "cuisine": "filipino", + "ingredients": [ + "pork belly", + "jalapeno chilies", + "bay leaf", + "Accent Seasoning", + "kosher salt", + "oil", + "chicken stock", + "pork blood", + "cane vinegar", + "onions", + "fish sauce", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 35719, + "cuisine": "vietnamese", + "ingredients": [ + "lemon", + "tomato paste", + "salmon steaks", + "reduced sodium soy sauce", + "orange juice", + "dijon mustard", + "chopped garlic" + ] + }, + { + "id": 10739, + "cuisine": "spanish", + "ingredients": [ + "baking potatoes", + "rib", + "water", + "kielbasa", + "extra-virgin olive oil", + "onions", + "kale", + "garlic cloves" + ] + }, + { + "id": 48110, + "cuisine": "italian", + "ingredients": [ + "chicken breast tenders", + "portabello mushroom", + "shredded mozzarella cheese", + "pizza crust", + "parmesan cheese", + "garlic", + "onions", + "pepper", + "butter", + "salt", + "marsala wine", + "olive oil", + "heavy cream", + "flat leaf parsley" + ] + }, + { + "id": 41213, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "all-purpose flour", + "heavy cream", + "extra sharp cheddar cheese", + "unsalted butter", + "chopped fresh herbs", + "crushed red pepper flakes" + ] + }, + { + "id": 6549, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "pepper", + "potatoes", + "cayenne pepper", + "green bell pepper", + "zucchini", + "black olives", + "shredded mozzarella cheese", + "fresh tomatoes", + "grated parmesan cheese", + "salt", + "dried oregano", + "eggs", + "olive oil", + "garlic", + "chopped onion" + ] + }, + { + "id": 31336, + "cuisine": "french", + "ingredients": [ + "sea salt", + "freshly ground pepper", + "radicchio", + "purple onion", + "endive", + "vinaigrette", + "romaine lettuce", + "navel oranges", + "chèvre" + ] + }, + { + "id": 23848, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "cho-cho", + "carrots", + "chicken noodle soup", + "chicken legs", + "water", + "salt", + "celery", + "pepper", + "jamaican pumpkin", + "thyme", + "green bell pepper", + "flour", + "yams", + "onions" + ] + }, + { + "id": 40174, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "pasta shells", + "green olives", + "garlic", + "fresh basil leaves", + "ground black pepper", + "salt", + "tomatoes", + "whole milk yoghurt", + "ricotta" + ] + }, + { + "id": 13646, + "cuisine": "greek", + "ingredients": [ + "nonfat greek yogurt", + "salt", + "whole wheat pastry flour", + "cinnamon", + "baking powder", + "canned coconut milk", + "honey", + "vanilla extract" + ] + }, + { + "id": 31311, + "cuisine": "italian", + "ingredients": [ + "warm water", + "grated parmesan cheese", + "cornmeal", + "table salt", + "olive oil", + "coarse salt", + "active dry yeast", + "fresh thyme leaves", + "sugar", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 15199, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "lime juice", + "rice noodles", + "dark sesame oil", + "pepper", + "baby greens", + "salt", + "carrots", + "water", + "flank steak", + "rice vinegar", + "serrano chile", + "sugar", + "lemongrass", + "garlic", + "garlic cloves" + ] + }, + { + "id": 44588, + "cuisine": "thai", + "ingredients": [ + "orange bell pepper", + "yellow onion", + "ground chicken", + "jalapeno chilies", + "cooked white rice", + "dark soy sauce", + "ground pepper", + "peanut oil", + "minced garlic", + "vietnamese fish sauce", + "fresh basil leaves" + ] + }, + { + "id": 48422, + "cuisine": "jamaican", + "ingredients": [ + "baking powder", + "milk", + "all-purpose flour", + "kosher salt", + "vegetable oil", + "unsalted butter", + "plantains" + ] + }, + { + "id": 46751, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "shredded Monterey Jack cheese", + "olive oil", + "salsa", + "green chile", + "red pepper", + "ground cumin", + "flour tortillas", + "chopped cilantro fresh" + ] + }, + { + "id": 43299, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "pepper", + "all-purpose flour", + "eggs", + "salt", + "green tomatoes" + ] + }, + { + "id": 45045, + "cuisine": "indian", + "ingredients": [ + "vermicelli", + "saffron", + "water", + "ground cardamom", + "sugar", + "raisins", + "milk", + "ghee" + ] + }, + { + "id": 13421, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "kalamata", + "artichok heart marin", + "balsamic vinaigrette", + "roasted red peppers", + "bocconcini", + "baguette", + "baby spinach" + ] + }, + { + "id": 37983, + "cuisine": "russian", + "ingredients": [ + "eggs", + "vegetables", + "salt", + "water", + "baking powder", + "sugar", + "flour", + "milk", + "butter" + ] + }, + { + "id": 1678, + "cuisine": "chinese", + "ingredients": [ + "salt", + "chopped garlic", + "water", + "peanut oil", + "yellow onion", + "fresh green bean", + "oyster sauce" + ] + }, + { + "id": 9505, + "cuisine": "italian", + "ingredients": [ + "pepper", + "chicken breasts", + "all-purpose flour", + "fresh basil", + "ground nutmeg", + "linguine", + "low salt chicken broth", + "olive oil", + "large garlic cloves", + "chopped onion", + "spinach", + "shredded reduced fat reduced sodium swiss cheese", + "salt" + ] + }, + { + "id": 11420, + "cuisine": "chinese", + "ingredients": [ + "potato starch", + "water", + "salt", + "white vinegar", + "sugar", + "vegetable oil", + "onions", + "pineapple chunks", + "boneless skinless chicken breasts", + "lemon slices", + "cold water", + "ketchup", + "red pepper", + "white sugar" + ] + }, + { + "id": 26827, + "cuisine": "thai", + "ingredients": [ + "lime", + "rice noodles", + "roasted peanuts", + "beansprouts", + "eggs", + "green onions", + "garlic", + "tamarind concentrate", + "palm sugar", + "cilantro", + "peanut oil", + "fish sauce", + "shallots", + "chili sauce", + "shrimp" + ] + }, + { + "id": 15825, + "cuisine": "chinese", + "ingredients": [ + "pasta", + "active dry yeast", + "all purpose unbleached flour", + "scallions", + "warm water", + "hoisin sauce", + "cake flour", + "bamboo shoots", + "sugar", + "Sriracha", + "fine sea salt", + "cucumber", + "steamer", + "vegetable oil", + "roasting chickens" + ] + }, + { + "id": 49627, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "flour tortillas", + "chunky salsa", + "Campbell's Condensed Cream of Chicken Soup", + "boneless skinless chicken breasts", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 11377, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "egg whites", + "tortillas", + "taco seasoning", + "corn", + "purple onion", + "reduced fat shredded cheese", + "large eggs", + "chopped cilantro" + ] + }, + { + "id": 45155, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "white sugar", + "yellow corn meal", + "vegetable oil", + "eggs", + "salt", + "milk", + "all-purpose flour" + ] + }, + { + "id": 40456, + "cuisine": "japanese", + "ingredients": [ + "dough", + "whole wheat flour", + "chili powder", + "cumin seed", + "mango", + "garlic paste", + "coriander powder", + "cilantro leaves", + "ghee", + "water", + "flour", + "green chilies", + "frozen peas", + "fennel seeds", + "garam masala", + "salt", + "mustard oil", + "asafetida" + ] + }, + { + "id": 2704, + "cuisine": "italian", + "ingredients": [ + "pepper", + "mushrooms", + "red pepper", + "flat leaf parsley", + "romano cheese", + "olive oil", + "baby spinach", + "salt", + "yellow peppers", + "eggs", + "dried basil", + "ricotta cheese", + "garlic", + "onions", + "mozzarella cheese", + "parmesan cheese", + "red pepper flakes", + "oven-ready lasagna noodles", + "dried oregano" + ] + }, + { + "id": 16262, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "taco seasoning mix", + "jalapeno chilies", + "diced tomatoes", + "onions", + "tostada shells", + "ground black pepper", + "chili powder", + "ground turkey", + "pasta sauce", + "olive oil", + "guajillo chile powder", + "salt", + "spaghetti", + "bread crumbs", + "grated parmesan cheese", + "chile pepper", + "chipotles in adobo" + ] + }, + { + "id": 8434, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "green onions", + "carrots", + "Boston lettuce", + "reduced sodium soy sauce", + "garlic", + "boneless skinless chicken breast halves", + "hot pepper sauce", + "I Can't Believe It's Not Butter!® Spread", + "corn starch", + "honey", + "water chestnuts", + "rice vinegar" + ] + }, + { + "id": 20933, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "coarse salt", + "onions", + "rosemary", + "extra-virgin olive oil", + "chicken", + "white wine", + "bacon", + "noodles", + "chicken broth", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 41927, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "juice", + "pizza doughs", + "plum tomatoes", + "mozzarella cheese", + "flour for dusting", + "salt", + "fresh basil leaves" + ] + }, + { + "id": 21622, + "cuisine": "french", + "ingredients": [ + "grated orange peel", + "unsalted butter", + "fresh orange juice", + "water", + "sherry wine vinegar", + "sugar", + "shallots", + "low salt chicken broth", + "orange", + "duck breast halves" + ] + }, + { + "id": 421, + "cuisine": "korean", + "ingredients": [ + "eggs", + "black pepper", + "anchovies", + "mushrooms", + "crushed red pepper flakes", + "Gochujang base", + "dried red chile peppers", + "gai lan", + "minced garlic", + "gochugaru", + "rice wine", + "shimeji mushrooms", + "kelp", + "noodles", + "cooked rice", + "chili pepper", + "chili paste", + "green onions", + "garlic", + "seaweed", + "bok choy", + "wasabi", + "soy sauce", + "water", + "vinegar", + "sesame oil", + "beef sirloin", + "kimchi" + ] + }, + { + "id": 38505, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "olive oil", + "fresh parsley", + "minced garlic", + "salt", + "ground black pepper" + ] + }, + { + "id": 12388, + "cuisine": "italian", + "ingredients": [ + "all-purpose flour", + "ground pepper", + "garlic cloves", + "olive oil", + "pizza doughs", + "coarse salt" + ] + }, + { + "id": 43642, + "cuisine": "italian", + "ingredients": [ + "fettuccine pasta", + "minced garlic", + "pesto", + "butter" + ] + }, + { + "id": 21882, + "cuisine": "italian", + "ingredients": [ + "honey", + "cannellini beans", + "grated lemon zest", + "fresh parsley", + "tuna packed in water", + "dijon mustard", + "salt", + "fresh lemon juice", + "olive oil", + "red wine vinegar", + "chickpeas", + "ground black pepper", + "purple onion", + "garlic cloves" + ] + }, + { + "id": 5249, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "chili powder", + "ground beef", + "taco sauce", + "garlic powder", + "salt", + "taco shells", + "finely chopped onion", + "cayenne pepper", + "tomatoes", + "water", + "shredded lettuce" + ] + }, + { + "id": 1226, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "mascarpone", + "fresh chives", + "pasta", + "parmigiano reggiano cheese" + ] + }, + { + "id": 21023, + "cuisine": "indian", + "ingredients": [ + "water", + "vegetable oil", + "baking soda", + "ground cardamom", + "milk", + "all-purpose flour", + "sugar", + "powdered milk", + "ghee" + ] + }, + { + "id": 8160, + "cuisine": "italian", + "ingredients": [ + "half & half", + "confectioners sugar", + "coffee granules", + "all-purpose flour", + "vanilla extract", + "butter", + "unsweetened cocoa powder" + ] + }, + { + "id": 49618, + "cuisine": "italian", + "ingredients": [ + "water", + "broccoli rabe", + "freshly ground pepper", + "onions", + "dried thyme", + "dry white wine", + "flat leaf parsley", + "crushed tomatoes", + "mild Italian sausage", + "garlic cloves", + "chicken stock", + "olive oil", + "salt", + "cornmeal" + ] + }, + { + "id": 40453, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "parmesan cheese", + "butter", + "salt", + "pepper", + "dry white wine", + "heavy cream", + "flat leaf parsley", + "capers", + "flour", + "lemon", + "white mushrooms", + "olive oil", + "chicken breasts", + "linguine" + ] + }, + { + "id": 33676, + "cuisine": "chinese", + "ingredients": [ + "water", + "shallots", + "garlic", + "brown sugar", + "green onions", + "chicken drumsticks", + "cooking sherry", + "soy sauce", + "napa cabbage leaves", + "ground pork", + "cooked rice", + "fresh ginger", + "vegetable oil", + "salt" + ] + }, + { + "id": 11821, + "cuisine": "french", + "ingredients": [ + "boneless chicken breast", + "kalamata", + "tomatoes", + "dry white wine", + "chicken broth", + "leeks", + "grated orange", + "olive oil", + "large garlic cloves" + ] + }, + { + "id": 37998, + "cuisine": "mexican", + "ingredients": [ + "fat free less sodium chicken broth", + "cooking spray", + "garlic cloves", + "fresh lime juice", + "brown sugar", + "dried cherry", + "salt", + "masa dough", + "tomato sauce", + "pork tenderloin", + "chopped onion", + "ancho chile pepper", + "corn husks", + "lime wedges", + "hot water", + "ground cumin" + ] + }, + { + "id": 13730, + "cuisine": "mexican", + "ingredients": [ + "sweet pepper", + "nonstick spray", + "extra lean ground beef", + "frozen corn kernels", + "salt", + "ground cumin", + "diced tomatoes", + "goat cheese" + ] + }, + { + "id": 42908, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "bacon", + "tomato sauce", + "olive oil", + "butter beans", + "white onion", + "Tabasco Pepper Sauce", + "collard greens", + "water", + "salt" + ] + }, + { + "id": 29139, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "rice noodles", + "garlic cloves", + "low sodium soy sauce", + "green onions", + "unsalted dry roast peanuts", + "beansprouts", + "sugar", + "vegetable oil", + "shrimp", + "eggs", + "lime wedges", + "crushed red pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 8823, + "cuisine": "thai", + "ingredients": [ + "water", + "garlic", + "carrots", + "soy sauce", + "red pepper flakes", + "peanut butter", + "bell pepper", + "rice vinegar", + "chicken", + "mozzarella cheese", + "ginger", + "scallions" + ] + }, + { + "id": 8475, + "cuisine": "moroccan", + "ingredients": [ + "minced garlic", + "ground coriander", + "cornish game hens", + "cayenne pepper", + "curry powder", + "ground cumin" + ] + }, + { + "id": 39786, + "cuisine": "jamaican", + "ingredients": [ + "cooked rice", + "ground black pepper", + "worcestershire sauce", + "allspice berries", + "canola oil", + "light brown sugar", + "kosher salt", + "beef stock", + "yellow onion", + "thyme", + "habanero chile", + "flour", + "garlic", + "carrots", + "tomato paste", + "minced ginger", + "oxtails", + "scallions", + "celery" + ] + }, + { + "id": 43587, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "ground black pepper", + "vegetable oil", + "all-purpose flour", + "garlic powder", + "ground red pepper", + "salt", + "pecans", + "large eggs", + "butter", + "hot sauce", + "milk", + "dry white wine", + "whipping cream", + "lemon juice" + ] + }, + { + "id": 17925, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "large egg yolks", + "1% low-fat milk", + "orange juice", + "sugar", + "almond extract", + "salt", + "cream of tartar", + "large egg whites", + "vanilla extract", + "strawberries", + "slivered almonds", + "granulated sugar", + "cake flour", + "grated orange" + ] + }, + { + "id": 16544, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "garlic", + "tomatillos", + "jalapeno chilies", + "onions", + "cilantro" + ] + }, + { + "id": 29488, + "cuisine": "chinese", + "ingredients": [ + "sirloin steak", + "corn starch", + "oyster-flavor sauc", + "canola oil", + "crushed red pepper", + "bok choy", + "rice wine", + "shrimp" + ] + }, + { + "id": 15684, + "cuisine": "french", + "ingredients": [ + "garlic cloves", + "grated parmesan cheese", + "salt", + "olive oil", + "fresh basil leaves" + ] + }, + { + "id": 39020, + "cuisine": "mexican", + "ingredients": [ + "milk", + "cinnamon sticks", + "piloncillo", + "mexican chocolate", + "star anise", + "masa harina", + "warm water", + "salt" + ] + }, + { + "id": 24890, + "cuisine": "italian", + "ingredients": [ + "tomato purée", + "water", + "cheese slices", + "onions", + "sugar", + "olive oil", + "ricotta cheese", + "oregano", + "tomato paste", + "pepper", + "lasagna noodles", + "salt", + "ground chuck", + "parmesan cheese", + "garlic" + ] + }, + { + "id": 1331, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "fresh cilantro", + "cinnamon", + "salt", + "lemon juice", + "celery ribs", + "black pepper", + "zucchini", + "paprika", + "chickpeas", + "onions", + "tumeric", + "olive oil", + "butter", + "cayenne pepper", + "carrots", + "pasta", + "water", + "potatoes", + "vegetable broth", + "lamb", + "saffron" + ] + }, + { + "id": 32179, + "cuisine": "thai", + "ingredients": [ + "fat free less sodium chicken broth", + "lemongrass", + "rice vinegar", + "Thai fish sauce", + "water", + "lime wedges", + "garlic cloves", + "sliced green onions", + "Thai chili paste", + "ground black pepper", + "chopped onion", + "chicken thighs", + "jasmine rice", + "peeled fresh ginger", + "baby carrots", + "chopped cilantro fresh" + ] + }, + { + "id": 29454, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cilantro", + "oil", + "cumin", + "cheddar cheese", + "corn", + "salt", + "onions", + "chicken", + "pepper", + "garlic", + "enchilada sauce", + "monterey jack", + "chipotle chile", + "diced tomatoes", + "spaghetti squash", + "oregano" + ] + }, + { + "id": 8902, + "cuisine": "jamaican", + "ingredients": [ + "brown sugar", + "rum", + "vanilla", + "coconut milk", + "flour", + "butter", + "yams", + "evaporated milk", + "baking powder", + "salt", + "nutmeg", + "sweet potatoes", + "raisins", + "sherry wine" + ] + }, + { + "id": 49154, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "boneless skinless chicken breasts", + "onions", + "kosher salt", + "dry white wine", + "garlic", + "long grain white rice", + "pepper", + "pimentos", + "flat leaf parsley", + "green bell pepper, slice", + "diced tomatoes", + "frozen peas" + ] + }, + { + "id": 46271, + "cuisine": "chinese", + "ingredients": [ + "cauliflowerets", + "celery", + "boneless skinless chicken breasts", + "carrots", + "cabbage", + "broccoli florets", + "teriyaki sauce", + "onions", + "ramen noodles", + "beansprouts", + "canola oil" + ] + }, + { + "id": 11946, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning", + "cilantro", + "cream of mushroom soup", + "boneless skinless chicken breasts", + "sour cream", + "salsa" + ] + }, + { + "id": 32992, + "cuisine": "southern_us", + "ingredients": [ + "barbecue sauce", + "pork butt", + "dry rub" + ] + }, + { + "id": 39595, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "ground cloves", + "large eggs", + "grated nutmeg", + "confectioners sugar", + "ground cinnamon", + "unsalted butter", + "cake flour", + "fresh lemon juice", + "ground ginger", + "baking soda", + "baking powder", + "ground allspice", + "sour cream", + "pure vanilla extract", + "pecans", + "lemon zest", + "salt", + "cream cheese, soften" + ] + }, + { + "id": 14279, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "white sugar", + "water", + "salt", + "peanuts", + "softened butter", + "light corn syrup" + ] + }, + { + "id": 1916, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "pork loin chops", + "serrano chile", + "garlic", + "medium shrimp", + "Vietnamese coriander", + "fresh lime juice", + "fish sauce", + "salt", + "green papaya" + ] + }, + { + "id": 35512, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "coarse salt", + "fresh lime juice", + "minced onion", + "plum tomatoes" + ] + }, + { + "id": 24055, + "cuisine": "cajun_creole", + "ingredients": [ + "mayonaise", + "pork tenderloin", + "salt", + "fresh parsley", + "capers", + "dried thyme", + "extra-virgin olive oil", + "provolone cheese", + "black pepper", + "french bread", + "cayenne pepper", + "pimento stuffed green olives", + "pitted black olives", + "roasted red peppers", + "garlic", + "fresh lemon juice" + ] + }, + { + "id": 40545, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "hot pepper", + "ground black pepper", + "fresh lemon juice", + "olive oil", + "large garlic cloves", + "capers", + "large eggs" + ] + }, + { + "id": 15125, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "fresh parmesan cheese", + "large egg whites", + "fresh parsley", + "dried basil", + "ground turkey", + "tomato sauce", + "olive oil", + "spaghetti" + ] + }, + { + "id": 15022, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "ginger", + "onions", + "cooking oil", + "salt", + "water", + "garlic", + "chicken", + "spinach", + "chicken meat", + "chayotes" + ] + }, + { + "id": 17746, + "cuisine": "southern_us", + "ingredients": [ + "cooked ham", + "vermouth", + "vegetable oil", + "all-purpose flour", + "milk", + "ground red pepper", + "whipping cream", + "shrimp", + "catfish fillets", + "large eggs", + "lemon wedge", + "salt", + "minced garlic", + "green onions", + "butter", + "lemon juice" + ] + }, + { + "id": 35113, + "cuisine": "italian", + "ingredients": [ + "chocolate bars", + "brewed espresso", + "gelato" + ] + }, + { + "id": 15958, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "fresh lime juice", + "sugar", + "garlic cloves", + "chopped cilantro fresh", + "tomatillos", + "onions", + "kosher salt", + "low salt chicken broth", + "serrano chile" + ] + }, + { + "id": 28092, + "cuisine": "thai", + "ingredients": [ + "chicken breasts", + "green beans", + "onions", + "coarse salt", + "fresh lime juice", + "long grain white rice", + "vegetable oil", + "coconut milk", + "fresh basil leaves", + "reduced sodium chicken broth", + "corn starch", + "thai green curry paste" + ] + }, + { + "id": 18315, + "cuisine": "vietnamese", + "ingredients": [ + "baby bok choy", + "butternut squash", + "vietnamese fish sauce", + "coconut milk", + "lime zest", + "lime juice", + "vegetable oil", + "firm tofu", + "brown sugar", + "steamed rice", + "Thai red curry paste", + "red bell pepper", + "tapioca flour", + "shallots", + "cilantro leaves", + "kaffir lime" + ] + }, + { + "id": 23069, + "cuisine": "southern_us", + "ingredients": [ + "coconut", + "apples", + "sugar", + "bananas", + "fruit", + "cherries", + "pecans", + "orange", + "crushed pineapples in juice" + ] + }, + { + "id": 7351, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "honey", + "ground allspice", + "roasted hazelnuts", + "candied lemon peel", + "candied citron peel", + "candied orange peel", + "vanilla extract", + "toasted almonds", + "ground cinnamon", + "sugar", + "all-purpose flour", + "unsweetened cocoa powder" + ] + }, + { + "id": 46207, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "heavy cream", + "caramel sauce", + "ice cream", + "coca-cola", + "egg yolks", + "salted peanuts", + "milk", + "salted roast peanuts" + ] + }, + { + "id": 49092, + "cuisine": "mexican", + "ingredients": [ + "baby spinach leaves", + "butter", + "flour tortillas", + "enchilada sauce", + "Mexican cheese blend", + "taco seasoning", + "flour", + "chopped cilantro" + ] + }, + { + "id": 27230, + "cuisine": "french", + "ingredients": [ + "pearl onions", + "shallots", + "yellow onion", + "chicken pieces", + "parsley sprigs", + "zucchini", + "salt", + "ground white pepper", + "sugar pea", + "dry white wine", + "all-purpose flour", + "thyme sprigs", + "chicken broth", + "olive oil", + "summer squash", + "carrots" + ] + }, + { + "id": 37317, + "cuisine": "italian", + "ingredients": [ + "garlic cloves", + "butter", + "frozen peas", + "bacon slices", + "flat leaf parsley" + ] + }, + { + "id": 16218, + "cuisine": "french", + "ingredients": [ + "almond extract", + "bittersweet chocolate", + "sugar", + "sour cherries", + "brioche", + "heavy cream", + "unsalted butter", + "kirsch" + ] + }, + { + "id": 31840, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "vegetable oil", + "garlic cloves", + "dark soy sauce", + "beef stock", + "star anise", + "coriander", + "tomatoes", + "beef", + "ginger", + "onions", + "jasmine rice", + "muscovado sugar", + "chinese five-spice powder", + "peppercorns" + ] + }, + { + "id": 27170, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "lime", + "sea salt", + "pepper", + "chili powder", + "olive oil", + "garlic" + ] + }, + { + "id": 22892, + "cuisine": "mexican", + "ingredients": [ + "bell pepper", + "salsa", + "garlic salt", + "cooked rice", + "cilantro", + "Mexican cheese", + "chili powder", + "butter oil", + "cumin", + "black beans", + "garlic", + "onions" + ] + }, + { + "id": 18832, + "cuisine": "indian", + "ingredients": [ + "low-fat plain yogurt", + "boneless skinless chicken breasts", + "cilantro leaves", + "ginger root", + "garam masala", + "paprika", + "cayenne pepper", + "brown basmati rice", + "mild curry powder", + "sea salt", + "nonfat yogurt plain", + "fresh mint", + "raw honey", + "garlic", + "lemon juice" + ] + }, + { + "id": 39015, + "cuisine": "mexican", + "ingredients": [ + "clove", + "unsalted butter", + "cumin seed", + "ancho chile pepper", + "cider vinegar", + "turkey", + "thyme leaves", + "allspice", + "water", + "all-purpose flour", + "cinnamon sticks", + "guajillo chiles", + "vegetable oil", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 15033, + "cuisine": "brazilian", + "ingredients": [ + "ginger beer", + "peeled fresh ginger", + "ice cubes", + "mint leaves", + "lime", + "fresh lime juice", + "sugar", + "rum" + ] + }, + { + "id": 36221, + "cuisine": "chinese", + "ingredients": [ + "light pancake syrup", + "Grand Marnier", + "sugar", + "mandarin oranges", + "mint leaves", + "mascarpone", + "reduced-fat sour cream" + ] + }, + { + "id": 37714, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "roma tomatoes", + "firm tofu", + "fish sauce", + "pepper", + "ground pork", + "oil", + "tomato paste", + "msg", + "green onions", + "chopped onion", + "tomato sauce", + "water", + "salt" + ] + }, + { + "id": 40957, + "cuisine": "french", + "ingredients": [ + "beef bones", + "ground black pepper", + "provolone cheese", + "mustard", + "olive oil", + "cracked black pepper", + "canola oil", + "kosher salt", + "butter", + "low sodium beef stock", + "boneless beef roast", + "french sandwich rolls", + "dry red wine" + ] + }, + { + "id": 4728, + "cuisine": "thai", + "ingredients": [ + "green onions", + "peanut sauce", + "shrimp", + "eggs", + "rice noodles", + "roasted peanuts", + "shallots", + "garlic", + "beansprouts", + "lime", + "cilantro", + "peanut oil" + ] + }, + { + "id": 3075, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "maltose", + "oyster sauce", + "hoisin sauce", + "chili sauce", + "pork belly", + "garlic", + "kiwi", + "Shaoxing wine", + "chinese five-spice powder" + ] + }, + { + "id": 847, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "kosher salt", + "green onions", + "rice vinegar", + "orange peel", + "sushi rice", + "sesame seeds", + "McCormick Poppy Seed", + "carrots", + "McCormick Ground White Pepper", + "frozen shelled edamame", + "boneless chicken skinless thigh", + "mirin", + "spices", + "soy sauce", + "water", + "ground red pepper", + "McCormick Ground Ginger", + "nori", + "corn starch" + ] + }, + { + "id": 33593, + "cuisine": "british", + "ingredients": [ + "brussels sprouts", + "oil", + "new potatoes", + "breakfast sausages", + "pearl onions" + ] + }, + { + "id": 39886, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "fresh lime juice", + "thai chile", + "shredded carrots", + "fish sauce", + "garlic" + ] + }, + { + "id": 25329, + "cuisine": "irish", + "ingredients": [ + "sugar", + "salt", + "large eggs", + "cream cheese", + "Baileys Irish Cream Liqueur", + "all-purpose flour", + "butter", + "unsweetened chocolate" + ] + }, + { + "id": 47726, + "cuisine": "thai", + "ingredients": [ + "canola", + "garlic", + "roasted peanuts", + "chile sauce", + "fish sauce", + "palm sugar", + "dried rice noodles", + "beansprouts", + "chicken", + "eggs", + "lime", + "cilantro leaves", + "tamarind concentrate", + "large shrimp", + "water", + "green onions", + "firm tofu", + "sliced shallots" + ] + }, + { + "id": 30927, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "salt", + "corn", + "cilantro", + "hass avocado", + "pepper", + "jalapeno chilies", + "scallions", + "tomatoes", + "lime", + "purple onion" + ] + }, + { + "id": 47233, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "salt", + "brown sugar", + "apple cider vinegar", + "garlic cloves", + "minced onion", + "cayenne pepper", + "aleppo pepper", + "paprika" + ] + }, + { + "id": 13280, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "vinegar", + "garlic", + "scallions", + "nutmeg", + "pepper", + "cinnamon", + "ground allspice", + "black pepper", + "vegetable oil", + "salt", + "onions", + "brown sugar", + "fresh thyme", + "ginger", + "orange juice" + ] + }, + { + "id": 35389, + "cuisine": "french", + "ingredients": [ + "frozen chopped spinach", + "green onions", + "worcestershire sauce", + "pepper", + "shredded swiss cheese", + "salt", + "milk", + "refrigerated piecrusts", + "fresh parsley", + "large eggs", + "butter", + "onions" + ] + }, + { + "id": 5019, + "cuisine": "japanese", + "ingredients": [ + "heeng", + "flour", + "lemon juice", + "ginger paste", + "curry leaves", + "water", + "salt", + "jeera", + "red chili powder", + "chili paste", + "oil", + "ground turmeric", + "fennel seeds", + "moong dal", + "dhaniya powder", + "corn starch" + ] + }, + { + "id": 40060, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "diced tomatoes", + "olive oil", + "cumin seed", + "tomato paste", + "boneless skinless chicken breasts", + "onions", + "curry powder", + "garlic" + ] + }, + { + "id": 4915, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "tortilla chips", + "shredded cheddar cheese", + "ground beef", + "cream of chicken soup" + ] + }, + { + "id": 24093, + "cuisine": "greek", + "ingredients": [ + "coarse salt", + "fresh mint", + "soy sauce", + "freshly ground pepper", + "clarified butter", + "phyllo dough", + "baby spinach", + "flat leaf parsley", + "olive oil", + "scallions", + "long grain white rice" + ] + }, + { + "id": 243, + "cuisine": "thai", + "ingredients": [ + "sugar", + "salt", + "water", + "creamy peanut butter", + "distilled vinegar", + "coconut milk", + "Thai red curry paste" + ] + }, + { + "id": 44561, + "cuisine": "korean", + "ingredients": [ + "butter lettuce", + "kosher salt", + "sesame oil", + "cabbage", + "sambal ulek", + "sugar", + "fresh ginger", + "scallions", + "boneless pork shoulder", + "mayonaise", + "lime", + "garlic", + "red chili powder", + "sweet chili sauce", + "reduced sodium soy sauce", + "carrots" + ] + }, + { + "id": 18533, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "butter", + "boneless skinless chicken breast halves", + "olive oil", + "Hidden Valley® Original Ranch® Spicy Ranch Dressing", + "pepper", + "peach slices", + "dijon mustard", + "salt" + ] + }, + { + "id": 32108, + "cuisine": "chinese", + "ingredients": [ + "dark brown sugar", + "fresh ginger", + "bone in skin on chicken thigh", + "soy sauce", + "toasted sesame oil", + "ground black pepper", + "chopped garlic" + ] + }, + { + "id": 26959, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "basmati rice", + "vanilla extract", + "sugar", + "cinnamon sticks" + ] + }, + { + "id": 38108, + "cuisine": "filipino", + "ingredients": [ + "green bell pepper", + "salt and ground black pepper", + "garlic", + "soy sauce", + "potatoes", + "pork", + "pork liver", + "onions", + "tomatoes", + "olive oil", + "lemon" + ] + }, + { + "id": 25016, + "cuisine": "southern_us", + "ingredients": [ + "fresh rosemary", + "ice", + "satsumas", + "club soda" + ] + }, + { + "id": 27302, + "cuisine": "chinese", + "ingredients": [ + "black beans", + "peanut oil", + "red pepper flakes", + "shallots", + "chinese five-spice powder", + "sugar", + "salt" + ] + }, + { + "id": 40761, + "cuisine": "italian", + "ingredients": [ + "yukon gold potatoes", + "extra-virgin olive oil", + "oregano", + "Italian parsley leaves", + "garlic cloves", + "lemon", + "fine sea salt", + "kalamata", + "black cod" + ] + }, + { + "id": 39763, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "red leaf lettuce", + "ground black pepper", + "buttermilk", + "salt", + "carrots", + "green cabbage", + "cider vinegar", + "baking soda", + "vegetable shortening", + "purple onion", + "fresh lemon juice", + "ground cayenne pepper", + "green bell pepper", + "corn", + "red cabbage", + "yellow bell pepper", + "all-purpose flour", + "celery seed", + "dressing", + "safflower oil", + "peanuts", + "baking powder", + "dijon style mustard", + "hot sauce", + "red bell pepper" + ] + }, + { + "id": 38175, + "cuisine": "mexican", + "ingredients": [ + "brie cheese", + "whole wheat tortillas", + "cranberry sauce", + "turkey" + ] + }, + { + "id": 116, + "cuisine": "french", + "ingredients": [ + "haricots verts", + "sea salt", + "fresh chives", + "greek yogurt", + "granny smith apples", + "fine sea salt", + "avocado", + "French mustard", + "lobster meat" + ] + }, + { + "id": 41760, + "cuisine": "italian", + "ingredients": [ + "lemon zest", + "bittersweet chocolate", + "hazelnuts", + "salt", + "cake flour", + "unsalted butter", + "confectioners sugar" + ] + }, + { + "id": 13063, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "purple onion", + "pepper", + "chili powder", + "pizza crust", + "chicken breasts", + "salt", + "garlic powder", + "cilantro" + ] + }, + { + "id": 3355, + "cuisine": "mexican", + "ingredients": [ + "water", + "baking powder", + "corn husks", + "lard", + "corn", + "poblano chiles", + "white onion", + "flour", + "cornmeal" + ] + }, + { + "id": 3459, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "vegan cheese", + "sea salt", + "chopped cilantro fresh", + "mild olive oil", + "arrowroot starch", + "garlic", + "ground cumin", + "green chile", + "lime", + "chili powder", + "corn tortillas", + "black beans", + "sweet potatoes", + "vegetable broth", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 33538, + "cuisine": "chinese", + "ingredients": [ + "pork ribs", + "soy sauce", + "vinegar", + "hoisin sauce", + "clear honey", + "chinese five-spice powder" + ] + }, + { + "id": 3723, + "cuisine": "korean", + "ingredients": [ + "stock", + "sesame seeds", + "large eggs", + "carrots", + "soy sauce", + "gochugaru", + "salt", + "onions", + "eggs", + "water", + "zucchini", + "scallions", + "toasted sesame seeds", + "fish sauce", + "vegetables", + "mushrooms", + "shrimp" + ] + }, + { + "id": 12776, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "turkey broth", + "cinnamon", + "cilantro leaves", + "onions", + "tomato paste", + "kosher salt", + "cayenne", + "raw cashews", + "cardamom pods", + "ground turmeric", + "eggs", + "turkey legs", + "golden raisins", + "garlic", + "ghee", + "clove", + "plain yogurt", + "garam masala", + "ginger", + "sauce", + "basmati rice" + ] + }, + { + "id": 12062, + "cuisine": "southern_us", + "ingredients": [ + "amchur", + "garlic", + "cinnamon sticks", + "ground turmeric", + "red chili powder", + "coriander powder", + "cumin seed", + "onions", + "tomatoes", + "black-eyed peas", + "salt", + "dried red chile peppers", + "asafetida", + "water", + "ginger", + "oil", + "greens" + ] + }, + { + "id": 1281, + "cuisine": "irish", + "ingredients": [ + "nonfat buttermilk", + "baking powder", + "margarine", + "sugar", + "salt", + "vegetable oil cooking spray", + "butter", + "baking soda", + "all-purpose flour" + ] + }, + { + "id": 11442, + "cuisine": "italian", + "ingredients": [ + "spaghetti, cook and drain", + "ragu", + "eggs", + "italian seasoned dry bread crumbs", + "lean ground beef" + ] + }, + { + "id": 28774, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "cooked chicken", + "shredded mozzarella cheese", + "pinenuts", + "lasagna noodles, cooked and drained", + "ricotta cheese", + "salt and ground black pepper", + "Alfredo sauce", + "portabello mushroom", + "frozen chopped spinach", + "marinara sauce", + "vegetable oil", + "dried oregano" + ] + }, + { + "id": 9378, + "cuisine": "british", + "ingredients": [ + "sea salt", + "large free range egg", + "milk", + "spelt flour", + "vegetable oil" + ] + }, + { + "id": 14680, + "cuisine": "southern_us", + "ingredients": [ + "spicy brown mustard", + "ketchup", + "horseradish sauce", + "orange marmalade", + "catfish fillets", + "creole seasoning" + ] + }, + { + "id": 45747, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh lemon juice", + "crushed red pepper", + "dried oregano", + "dried basil", + "garlic cloves", + "white wine vinegar", + "fresh parsley" + ] + }, + { + "id": 16861, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "sliced carrots", + "salt", + "onions", + "water", + "spices", + "garlic cloves", + "beans", + "vegetable oil", + "scallions", + "chicken", + "diced potatoes", + "vinegar", + "green peas", + "thyme" + ] + }, + { + "id": 9440, + "cuisine": "irish", + "ingredients": [ + "chicken broth", + "carrots", + "water", + "cabbage", + "red potato", + "onions", + "beef brisket" + ] + }, + { + "id": 4152, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "fennel bulb", + "lemon juice", + "walnut oil", + "walnut pieces", + "salt", + "shrimp", + "butter lettuce", + "dijon mustard", + "carrots", + "water", + "freshly ground pepper", + "champagne vinegar" + ] + }, + { + "id": 36248, + "cuisine": "mexican", + "ingredients": [ + "enchilada sauce", + "green onions", + "chicken", + "corn tortillas", + "cooked chicken", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 34598, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "garlic salt", + "shredded Italian cheese", + "olive oil", + "Italian bread" + ] + }, + { + "id": 7372, + "cuisine": "southern_us", + "ingredients": [ + "lime zest", + "unsalted butter", + "sweetened condensed milk", + "sugar", + "graham cracker crumbs", + "powdered sugar", + "egg yolks", + "lime juice", + "heavy whipping cream" + ] + }, + { + "id": 28706, + "cuisine": "mexican", + "ingredients": [ + "reduced fat cheddar cheese", + "organic vegetable broth", + "Mexican seasoning mix", + "chunky salsa", + "black beans", + "veggie crumbles", + "pepper" + ] + }, + { + "id": 13930, + "cuisine": "thai", + "ingredients": [ + "eggs", + "garlic powder", + "all-purpose flour", + "pepper", + "cilantro", + "canola oil", + "sweet chili sauce", + "chicken breasts", + "carrots", + "milk", + "salt" + ] + }, + { + "id": 18531, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "whole wheat tortillas", + "cilantro leaves", + "long grain white rice", + "water", + "ground red pepper", + "salt", + "chopped cilantro", + "cremini mushrooms", + "jalapeno chilies", + "cheese", + "fresh lemon juice", + "canola oil", + "grape tomatoes", + "zucchini", + "reduced-fat sour cream", + "chopped onion", + "chopped garlic" + ] + }, + { + "id": 19767, + "cuisine": "british", + "ingredients": [ + "tomato paste", + "rosemary", + "dry red wine", + "carrots", + "veal kidneys", + "milk", + "worcestershire sauce", + "oil", + "onions", + "eggs", + "flour", + "salt", + "steak", + "pepper", + "mushrooms", + "beef broth", + "tarragon" + ] + }, + { + "id": 34891, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "green onions", + "mustard greens", + "dried chile", + "sugar", + "egg noodles", + "lime wedges", + "Thai red curry paste", + "coconut milk", + "fish sauce", + "peanuts", + "shallots", + "cilantro", + "sliced shallots", + "boneless chicken skinless thigh", + "low sodium chicken broth", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 19110, + "cuisine": "indian", + "ingredients": [ + "radishes", + "fresh lime juice", + "plain low-fat yogurt", + "salt", + "golden raisins", + "ground cumin", + "hot pepper sauce", + "cucumber" + ] + }, + { + "id": 38784, + "cuisine": "southern_us", + "ingredients": [ + "slaw", + "juice", + "pickled okra" + ] + }, + { + "id": 5584, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "jalapeno chilies", + "beaten eggs", + "sour cream", + "corn", + "coarse salt", + "all-purpose flour", + "milk", + "baking powder", + "shredded sharp cheddar cheese", + "chicken", + "unsalted butter", + "ice water", + "light cream cheese" + ] + }, + { + "id": 34391, + "cuisine": "filipino", + "ingredients": [ + "water", + "oil", + "soy sauce", + "lemon", + "pork", + "potatoes", + "onions", + "pepper", + "salt" + ] + }, + { + "id": 18156, + "cuisine": "italian", + "ingredients": [ + "pepper", + "lemon", + "shredded mozzarella cheese", + "romano cheese", + "zucchini", + "salt", + "olive oil", + "garlic", + "bread crumbs", + "chicken cutlets", + "non stick spray" + ] + }, + { + "id": 6978, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "dry white wine", + "red bell pepper", + "minced garlic", + "salt", + "bottled clam juice", + "extra-virgin olive oil", + "chopped parsley", + "mussels", + "vinegar", + "chopped onion" + ] + }, + { + "id": 10244, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "extra-virgin olive oil", + "milk", + "unsalted butter", + "fontina cheese", + "asparagus", + "crusty loaf", + "large egg yolks", + "large garlic cloves" + ] + }, + { + "id": 7362, + "cuisine": "mexican", + "ingredients": [ + "quinoa", + "purple onion", + "pepper", + "jalapeno chilies", + "chicken broth", + "roma tomatoes", + "salt", + "lime", + "cilantro" + ] + }, + { + "id": 46423, + "cuisine": "brazilian", + "ingredients": [ + "chocolate", + "sweetened condensed milk", + "butter" + ] + }, + { + "id": 38054, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garam masala", + "curds", + "cauliflower", + "lime juice", + "cayenne pepper", + "cream", + "salt", + "garlic paste", + "bell pepper", + "onions" + ] + }, + { + "id": 28631, + "cuisine": "french", + "ingredients": [ + "reduced sodium beef broth", + "unsalted butter", + "Turkish bay leaves", + "onions", + "water", + "dry white wine", + "all-purpose flour", + "baguette", + "parmigiano reggiano cheese", + "salt", + "black pepper", + "fresh thyme", + "gruyere cheese" + ] + }, + { + "id": 17505, + "cuisine": "cajun_creole", + "ingredients": [ + "smoked sausage", + "whole okra", + "red bell pepper", + "creole seasoning", + "chicken breasts" + ] + }, + { + "id": 3376, + "cuisine": "greek", + "ingredients": [ + "rosemary", + "lamb", + "extra-virgin olive oil", + "lemon", + "mint", + "salt" + ] + }, + { + "id": 30482, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "flank steak", + "salt", + "ground white pepper", + "chicken stock", + "baking soda", + "red pepper", + "oil", + "soy sauce", + "sesame oil", + "green pepper", + "dark soy sauce", + "Shaoxing wine", + "garlic", + "corn starch" + ] + }, + { + "id": 22411, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "blackberries", + "kosher salt" + ] + }, + { + "id": 21555, + "cuisine": "italian", + "ingredients": [ + "all-purpose flour", + "anise seed", + "white sugar", + "eggs" + ] + }, + { + "id": 37108, + "cuisine": "filipino", + "ingredients": [ + "pasta", + "bay leaves", + "garlic", + "onions", + "evaporated milk", + "chicken parts", + "carrots", + "pepper", + "green onions", + "salt", + "peppercorns", + "hard-boiled egg", + "butter", + "celery" + ] + }, + { + "id": 13894, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "bay leaf", + "cranberry beans", + "extra-virgin olive oil", + "flat leaf parsley", + "pancetta", + "water", + "fresh lemon juice", + "medium shrimp", + "rosemary sprigs", + "freshly ground pepper", + "thyme sprigs" + ] + }, + { + "id": 6118, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "hand", + "kalamata", + "chopped parsley", + "ground ginger", + "ground black pepper", + "paprika", + "yellow onion", + "ground lamb", + "saffron threads", + "olive oil", + "whole peeled tomatoes", + "garlic", + "bay leaf", + "eggs", + "unsalted butter", + "crushed red pepper flakes", + "juice", + "ground cumin" + ] + }, + { + "id": 4414, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "green onions", + "dark brown sugar", + "soy sauce", + "pineapple", + "cooked white rice", + "red chili peppers", + "shallots", + "cooked shrimp", + "curry powder", + "garlic", + "canola oil" + ] + }, + { + "id": 8457, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "finely chopped onion", + "queso fresco", + "sliced green onions", + "sherry vinegar", + "cooking spray", + "canned tomatoes", + "olive oil", + "pumpkin", + "dry sherry", + "ground cumin", + "fat free less sodium chicken broth", + "ground black pepper", + "pumpkinseed kernels", + "garlic cloves" + ] + }, + { + "id": 25760, + "cuisine": "indian", + "ingredients": [ + "eggplant", + "sunflower oil", + "coriander", + "eggs", + "cinnamon", + "garlic", + "minced meat", + "ginger", + "cumin", + "curry powder", + "diced tomatoes", + "onions" + ] + }, + { + "id": 41134, + "cuisine": "thai", + "ingredients": [ + "thai basil", + "tilapia", + "light soy sauce", + "yellow onion", + "red chili peppers", + "garlic", + "chopped cilantro", + "fish sauce", + "cooking oil", + "oil" + ] + }, + { + "id": 29330, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "butter", + "cornmeal", + "french bread", + "hot sauce", + "oysters", + "shredded lettuce", + "pickle relish", + "tomatoes", + "vegetable oil", + "lemon juice" + ] + }, + { + "id": 35019, + "cuisine": "vietnamese", + "ingredients": [ + "large eggs", + "salt", + "instant coffee", + "whole milk", + "sweetened condensed milk", + "sugar", + "vanilla" + ] + }, + { + "id": 36200, + "cuisine": "southern_us", + "ingredients": [ + "tasso", + "green onions", + "paprika", + "red bell pepper", + "applewood smoked bacon", + "andouille sausage", + "chopped fresh thyme", + "cayenne pepper", + "onions", + "celery ribs", + "boneless chicken skinless thigh", + "diced tomatoes", + "sausages", + "long grain white rice", + "green bell pepper", + "chili powder", + "beef broth", + "flat leaf parsley" + ] + }, + { + "id": 19661, + "cuisine": "thai", + "ingredients": [ + "sugar", + "orange", + "sesame oil", + "creamy peanut butter", + "canola oil", + "kosher salt", + "fresh ginger", + "garlic", + "fresh basil leaves", + "black pepper", + "lime", + "lemon", + "fresh mint", + "spinach", + "water", + "jalapeno chilies", + "cilantro leaves", + "large shrimp" + ] + }, + { + "id": 16849, + "cuisine": "japanese", + "ingredients": [ + "cooked ham", + "brown rice", + "pepper", + "fresh parsley", + "ketchup", + "salt", + "eggs", + "processed cheese" + ] + }, + { + "id": 37129, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "garlic", + "green onions", + "toasted sesame seeds", + "ground black pepper", + "all-purpose flour", + "sesame oil", + "white sugar" + ] + }, + { + "id": 41423, + "cuisine": "moroccan", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "garlic", + "ground allspice", + "tomato paste", + "olive oil", + "butternut squash", + "cayenne pepper", + "onions", + "chile powder", + "pepper", + "flour", + "salt", + "sweet paprika", + "ground cinnamon", + "zucchini", + "diced tomatoes", + "lamb", + "ground cumin" + ] + }, + { + "id": 28434, + "cuisine": "indian", + "ingredients": [ + "chopped tomatoes", + "spring onions", + "sunflower oil", + "green pepper", + "chillies", + "chicken", + "ground cinnamon", + "garam masala", + "butter", + "button mushrooms", + "garlic cloves", + "coriander", + "fennel seeds", + "coriander seeds", + "chili powder", + "paprika", + "cumin seed", + "onions", + "ground cumin", + "water", + "fenugreek", + "red pepper", + "ginger", + "ground cardamom", + "ground turmeric" + ] + }, + { + "id": 29334, + "cuisine": "italian", + "ingredients": [ + "pizza sauce", + "shredded mozzarella cheese", + "green pepper", + "Johnsonville Mild Italian Sausage Links", + "thin pizza crust" + ] + }, + { + "id": 13226, + "cuisine": "cajun_creole", + "ingredients": [ + "diced onions", + "minced garlic", + "fresh thyme", + "cayenne pepper", + "diced celery", + "andouille sausage", + "ground black pepper", + "vegetable oil", + "rice", + "kosher salt", + "file powder", + "all-purpose flour", + "oil", + "tomatoes", + "water", + "bay leaves", + "green pepper", + "shrimp" + ] + }, + { + "id": 45107, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame oil", + "squid", + "toasted sesame seeds", + "green onions", + "ginger", + "carrots", + "bell pepper", + "vegetable oil", + "garlic cloves", + "sugar", + "chili powder", + "Gochujang base", + "onions" + ] + }, + { + "id": 41393, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "olive oil", + "hot dogs", + "garlic cloves", + "dried oregano", + "bread crumb fresh", + "unsalted butter", + "pecorino romano cheese", + "flat leaf parsley", + "minced garlic", + "large eggs", + "salt", + "onions", + "sugar", + "ground black pepper", + "whole milk", + "ground turkey" + ] + }, + { + "id": 21509, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "ginger", + "ghee", + "baby spinach", + "yellow onion", + "curry powder", + "salt", + "paneer cheese", + "buttermilk", + "garlic cloves" + ] + }, + { + "id": 8461, + "cuisine": "japanese", + "ingredients": [ + "red chili powder", + "lemon", + "cumin seed", + "coriander", + "curry leaves", + "seeds", + "green chilies", + "white sesame seeds", + "oats", + "poha", + "salt", + "wheat flour", + "fennel seeds", + "garam masala", + "garlic", + "oil" + ] + }, + { + "id": 38144, + "cuisine": "southern_us", + "ingredients": [ + "jack cheese", + "salsa verde", + "parsley", + "garlic", + "oregano", + "country white bread", + "white onion", + "pimentos", + "extra-virgin olive oil", + "cream cheese", + "black pepper", + "jalapeno chilies", + "paprika", + "creole seasoning", + "mayonaise", + "mozzarella cheese", + "chili powder", + "cheese", + "sour cream" + ] + }, + { + "id": 31514, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "fresh oregano", + "pork chops", + "salt and ground black pepper", + "ham", + "tomatoes", + "paprika" + ] + }, + { + "id": 9859, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "cooking oil", + "all-purpose flour", + "eggs", + "frozen whole kernel corn", + "lean ground beef", + "fresh tomatoes", + "Mexican cheese blend", + "diced tomatoes", + "yellow corn meal", + "milk", + "baking powder" + ] + }, + { + "id": 24982, + "cuisine": "italian", + "ingredients": [ + "salt", + "sugar", + "onions", + "tomatoes", + "garlic cloves", + "extra-virgin olive oil" + ] + }, + { + "id": 42281, + "cuisine": "indian", + "ingredients": [ + "sea salt", + "lemon juice", + "olive oil", + "ground coriander", + "chicken", + "black peppercorns", + "cardamom pods", + "greek yogurt", + "fresh ginger", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 1444, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "champagne vinegar", + "large egg yolks", + "fresh tarragon", + "kosher salt", + "shallots", + "ground black pepper", + "fresh lemon juice" + ] + }, + { + "id": 31421, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "peaches", + "heavy cream", + "sugar", + "peach nectar", + "vanilla extract", + "brown sugar", + "whole milk", + "vanilla", + "melted butter", + "bread crumbs", + "butter", + "corn syrup" + ] + }, + { + "id": 17751, + "cuisine": "italian", + "ingredients": [ + "bell pepper", + "onions", + "parmesan cheese", + "salt", + "butter", + "oregano", + "potatoes", + "red bell pepper" + ] + }, + { + "id": 43355, + "cuisine": "mexican", + "ingredients": [ + "green cabbage", + "red chile sauce", + "radishes", + "extra-virgin olive oil", + "ground allspice", + "chopped cilantro fresh", + "firmly packed light brown sugar", + "olive oil", + "cinnamon", + "salt", + "fresh lime juice", + "jack cheese", + "ground black pepper", + "chicken meat", + "chopped onion", + "chipotles in adobo", + "tomato paste", + "pinenuts", + "golden raisins", + "white wine vinegar", + "corn tortillas" + ] + }, + { + "id": 48598, + "cuisine": "spanish", + "ingredients": [ + "seedless green grape", + "garlic", + "country bread", + "ice water", + "salt", + "sliced almonds", + "white wine vinegar", + "cucumber", + "extra-virgin olive oil", + "cayenne pepper" + ] + }, + { + "id": 43010, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "chili powder", + "garlic", + "black pepper", + "butter", + "CURRY GUY Smoked Spicy Salt", + "chicken breasts", + "ginger", + "onions", + "tumeric", + "cinnamon", + "curry" + ] + }, + { + "id": 18260, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "vanilla extract", + "chopped pecans", + "egg substitute", + "ice water", + "all-purpose flour", + "sugar", + "bourbon whiskey", + "salt", + "semi-sweet chocolate morsels", + "cooking spray", + "vegetable shortening", + "corn syrup" + ] + }, + { + "id": 36759, + "cuisine": "italian", + "ingredients": [ + "penne pasta", + "salt and ground black pepper", + "escarole", + "diced tomatoes with garlic and onion", + "cannellini beans" + ] + }, + { + "id": 17948, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "water", + "salt", + "pasta", + "fat free less sodium chicken broth", + "cannellini beans", + "fresh parsley", + "white pepper", + "olive oil", + "Italian turkey sausage", + "tomato sauce", + "minced garlic", + "crushed red pepper", + "dried oregano" + ] + }, + { + "id": 2431, + "cuisine": "mexican", + "ingredients": [ + "whole milk", + "extra sharp cheddar cheese", + "butter", + "russet potatoes", + "poblano chilies" + ] + }, + { + "id": 10653, + "cuisine": "italian", + "ingredients": [ + "butternut squash", + "kale", + "pizza doughs", + "mozzarella cheese", + "salt", + "olive oil", + "thick-cut bacon" + ] + }, + { + "id": 21650, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "baking powder", + "baking soda", + "canola oil", + "fat-free buttermilk", + "salt", + "yellow corn meal", + "large eggs" + ] + }, + { + "id": 39502, + "cuisine": "mexican", + "ingredients": [ + "finely chopped onion", + "low salt chicken broth", + "chopped garlic", + "ground cinnamon", + "chili powder", + "pimento stuffed green olives", + "chicken", + "semisweet chocolate", + "corn tortillas", + "monterey jack", + "olive oil", + "all-purpose flour", + "dried oregano", + "ground cumin" + ] + }, + { + "id": 22547, + "cuisine": "vietnamese", + "ingredients": [ + "spearmint", + "pomelo", + "sea scallops", + "cilantro leaves", + "english cucumber", + "Vietnamese coriander", + "chili", + "sea salt", + "peanut oil", + "toasted sesame seeds", + "kaffir lime leaves", + "kosher salt", + "thai basil", + "garlic", + "freshly ground pepper", + "fish sauce", + "lime juice", + "green mango", + "roasted peanuts", + "carrots" + ] + }, + { + "id": 24518, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "water", + "ground turmeric", + "coconut oil", + "green chilies", + "winter melon", + "salt", + "pepper", + "toor dal" + ] + }, + { + "id": 42421, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "olive oil", + "dry red wine", + "bone in chicken thighs", + "pearl onions", + "bay leaves", + "all-purpose flour", + "dried thyme", + "crimini mushrooms", + "carrots", + "pepper", + "baby arugula", + "salt" + ] + }, + { + "id": 27167, + "cuisine": "italian", + "ingredients": [ + "dried oregano", + "minced garlic", + "tomato sauce", + "dried basil" + ] + }, + { + "id": 14090, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vanilla extract", + "butter", + "all-purpose flour", + "baking powder", + "salt", + "sugar", + "buttermilk", + "sour cream" + ] + }, + { + "id": 9405, + "cuisine": "irish", + "ingredients": [ + "sugar", + "buttermilk", + "flour", + "salt", + "baking soda", + "raisins", + "baking powder" + ] + }, + { + "id": 26621, + "cuisine": "indian", + "ingredients": [ + "sugar", + "yellow onion", + "ground cumin", + "kosher salt", + "fresh lemon juice", + "plain yogurt", + "garlic cloves", + "serrano chilies", + "cilantro leaves", + "fresh mint" + ] + }, + { + "id": 43370, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ground black pepper", + "shredded mozzarella cheese", + "kosher salt", + "all-purpose flour", + "olive oil", + "ricotta", + "pecorino cheese", + "salami", + "flat leaf parsley" + ] + }, + { + "id": 39107, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "celery", + "grape tomatoes", + "pinto beans", + "olives", + "catalina dressing", + "green onions", + "yellow peppers", + "red kidnei beans, rins and drain", + "fritos" + ] + }, + { + "id": 32037, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "chili pepper", + "sesame seeds", + "spring onions", + "white rice", + "sauce", + "lemon juice", + "perilla", + "soy sauce", + "red leaf lettuce", + "enokitake", + "rice wine", + "soybean paste", + "green chilies", + "cucumber", + "red chili peppers", + "pepper", + "chili paste", + "chives", + "garlic", + "rice", + "white radish", + "pork belly", + "water", + "green onions", + "sesame oil", + "salt", + "garlic cloves", + "kimchi" + ] + }, + { + "id": 30892, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "salt", + "pure vanilla extract", + "large eggs", + "grated lemon zest", + "baking soda", + "buttermilk", + "confectioners sugar", + "granulated sugar", + "all-purpose flour" + ] + }, + { + "id": 7714, + "cuisine": "mexican", + "ingredients": [ + "Mexican beer", + "tomato juice", + "tequila", + "kosher salt", + "hot sauce", + "lemon wedge" + ] + }, + { + "id": 3123, + "cuisine": "indian", + "ingredients": [ + "fennel", + "cardamom", + "coconut", + "condensed milk", + "milk", + "cranberries", + "sugar", + "unsalted butter", + "carrots" + ] + }, + { + "id": 42180, + "cuisine": "thai", + "ingredients": [ + "almond butter", + "peeled fresh ginger", + "garlic cloves", + "fresh lime juice", + "hothouse cucumber", + "soy sauce", + "tamarind", + "extra-virgin olive oil", + "red bell pepper", + "serrano chile", + "pure maple syrup", + "water", + "napa cabbage", + "fresh lemon juice", + "mung bean sprouts", + "fresh basil", + "coconut", + "cilantro sprigs", + "carrots", + "chopped cilantro fresh" + ] + }, + { + "id": 44722, + "cuisine": "mexican", + "ingredients": [ + "pasta wagon wheel", + "cayenne pepper", + "chili powder", + "ground beef", + "chili", + "salt", + "onions", + "chopped green bell pepper", + "whole kernel corn, drain" + ] + }, + { + "id": 27657, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "vegetable oil", + "salt", + "black pepper", + "worcestershire sauce", + "ketchup", + "chicken drumsticks", + "garlic cloves", + "finely chopped onion", + "white wine vinegar" + ] + }, + { + "id": 23554, + "cuisine": "french", + "ingredients": [ + "saltines", + "boneless skinless chicken breasts", + "condensed cream of chicken soup", + "ham steak", + "swiss cheese", + "condensed cream of celery soup" + ] + }, + { + "id": 48976, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "onion powder", + "corn starch", + "sweet onion", + "unsalted butter", + "all-purpose flour", + "milk", + "ground black pepper", + "salt", + "steak", + "olive oil", + "beef stock", + "cayenne pepper" + ] + }, + { + "id": 26851, + "cuisine": "thai", + "ingredients": [ + "pineapple chunks", + "sugar", + "lemongrass", + "peanut oil", + "duck breasts", + "lime juice", + "Thai red curry paste", + "chopped cilantro", + "fish sauce", + "minced garlic", + "potatoes", + "coconut milk", + "chiles", + "minced ginger", + "yellow onion" + ] + }, + { + "id": 23198, + "cuisine": "indian", + "ingredients": [ + "ground fennel", + "red chili peppers", + "salt", + "mustard oil", + "baby potatoes", + "black peppercorns", + "garam masala", + "green cardamom", + "onions", + "ground ginger", + "fresh coriander", + "all-purpose flour", + "oil", + "clove", + "red chili powder", + "yoghurt", + "brown cardamom", + "ground turmeric" + ] + }, + { + "id": 31366, + "cuisine": "mexican", + "ingredients": [ + "popcorn", + "butter", + "ground cumin", + "shredded cheddar cheese", + "crushed red pepper", + "paprika" + ] + }, + { + "id": 18951, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "lime", + "potatoes", + "hot sauce", + "chili pepper", + "tortillas", + "parsley", + "onions", + "black pepper", + "ground black pepper", + "asadero", + "oil", + "avocado", + "milk", + "large eggs", + "salt" + ] + }, + { + "id": 15216, + "cuisine": "italian", + "ingredients": [ + "half & half", + "bacon", + "ground pepper", + "coarse salt", + "shallots", + "fresh angel hair", + "frozen peas" + ] + }, + { + "id": 40208, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "all-purpose flour", + "large eggs", + "salt", + "swiss chard", + "russet potatoes", + "sauce", + "ground black pepper", + "butter", + "rib" + ] + }, + { + "id": 15978, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken breast", + "Mexican cheese", + "salt", + "chunky salsa", + "chips", + "onions", + "pepper", + "sweet mini bells" + ] + }, + { + "id": 14768, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic", + "ground beef", + "cooked rice", + "bacon grease", + "onions", + "creole seasoning", + "fresh parsley", + "bell pepper", + "celery" + ] + }, + { + "id": 19448, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "salt", + "avocado", + "tomatillos", + "green tomatoes", + "sour cream", + "fresh cilantro", + "garlic" + ] + }, + { + "id": 25218, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "bow-tie pasta", + "orange bell pepper", + "salt", + "olive oil", + "zucchini", + "ground black pepper", + "small white beans" + ] + }, + { + "id": 28136, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "roasted sesame seeds", + "salt", + "black vinegar", + "soy sauce", + "seeds", + "oil", + "sugar", + "spring onions", + "scallions", + "pig", + "ginger", + "coriander" + ] + }, + { + "id": 48939, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "cilantro", + "sour cream", + "pepper", + "boneless skinless chicken breasts", + "salt", + "onions", + "tomato sauce", + "franks", + "garlic", + "chillies", + "avocado", + "lime", + "red pepper", + "hot sauce", + "cumin" + ] + }, + { + "id": 25648, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "diced tomatoes", + "taco seasoning", + "jasmine rice", + "beef broth", + "black beans", + "garlic", + "olive oil", + "yellow onion" + ] + }, + { + "id": 43948, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "olive oil", + "chile pepper", + "onions", + "pepper", + "potatoes", + "salt", + "water", + "pork loin", + "all-purpose flour", + "black beans", + "kidney beans", + "garlic" + ] + }, + { + "id": 14449, + "cuisine": "indian", + "ingredients": [ + "saffron threads", + "milk", + "golden raisins", + "salt", + "cumin seed", + "plain whole-milk yogurt", + "tumeric", + "garam masala", + "cilantro sprigs", + "blanched almonds", + "chopped cilantro", + "chicken stock", + "spanish onion", + "vegetable oil", + "cayenne pepper", + "leg of lamb", + "basmati rice", + "eggs", + "fresh ginger", + "large garlic cloves", + "freshly ground pepper", + "cinnamon sticks" + ] + }, + { + "id": 30087, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "sea salt", + "baking powder", + "thyme", + "unsalted butter", + "all-purpose flour", + "sugar", + "butter", + "sage" + ] + }, + { + "id": 22773, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "bananas", + "cinnamon sticks", + "caramel sauce", + "pecans", + "large egg yolks", + "vegetable oil", + "chocolate sauce", + "vanilla beans", + "flour tortillas", + "tequila", + "ground cinnamon", + "honey", + "whole milk", + "sour cream" + ] + }, + { + "id": 38745, + "cuisine": "japanese", + "ingredients": [ + "plain flour", + "coriander seeds", + "boneless chicken breast", + "ground tumeric", + "cumin seed", + "fennel seeds", + "honey", + "ground black pepper", + "vegetable oil", + "yellow onion", + "frozen peas", + "green cardamom pods", + "frozen edamame beans", + "fresh ginger root", + "large free range egg", + "purple onion", + "chillies", + "chicken stock", + "chopped tomatoes", + "Japanese soy sauce", + "sticky rice", + "fenugreek seeds", + "panko breadcrumbs" + ] + }, + { + "id": 45285, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "guacamole", + "red bell pepper", + "avocado", + "leaves", + "diced tomatoes", + "canned corn", + "dried basil", + "chili powder", + "corn tortillas", + "black beans", + "zucchini", + "yellow onion", + "dried oregano" + ] + }, + { + "id": 16367, + "cuisine": "thai", + "ingredients": [ + "salmon fillets", + "salt", + "cooking spray", + "sweet chili sauce", + "green onions" + ] + }, + { + "id": 40449, + "cuisine": "vietnamese", + "ingredients": [ + "meat", + "oil", + "garlic pepper seasoning", + "sugar", + "broccoli", + "onions", + "salt", + "baby corn", + "spring onions", + "Maggi", + "coriander" + ] + }, + { + "id": 40179, + "cuisine": "spanish", + "ingredients": [ + "chicken stock", + "lobster", + "garlic", + "chicken", + "clams", + "olive oil", + "green peas", + "fresh parsley", + "saffron threads", + "curry powder", + "mushrooms", + "shrimp", + "mussels", + "salt and ground black pepper", + "white rice", + "onions" + ] + }, + { + "id": 24237, + "cuisine": "french", + "ingredients": [ + "frozen chopped spinach", + "kosher salt", + "flour", + "black pepper", + "ground nutmeg", + "lemon", + "sugar", + "light cream", + "shallots", + "bread crumbs", + "unsalted butter", + "lemon juice" + ] + }, + { + "id": 3038, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "heavy cream", + "pasta", + "frozen peas", + "marinara sauce" + ] + }, + { + "id": 25433, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "onions", + "zucchini", + "garlic", + "pasta sauce", + "shredded mozzarella cheese" + ] + }, + { + "id": 15175, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "salami", + "ricotta", + "olives", + "marinara sauce", + "extra-virgin olive oil", + "freshly ground pepper", + "artichoke hearts", + "fresh mozzarella", + "pizza doughs", + "dried oregano", + "baked ham", + "salt", + "flour for dusting" + ] + }, + { + "id": 11519, + "cuisine": "cajun_creole", + "ingredients": [ + "tasso", + "shallots", + "chopped celery", + "poblano chiles", + "green onions", + "large garlic cloves", + "coarse kosher salt", + "tomatoes", + "chopped fresh thyme", + "cayenne pepper", + "olive oil", + "butter", + "ear of corn" + ] + }, + { + "id": 12133, + "cuisine": "british", + "ingredients": [ + "large egg whites", + "raspberry preserves", + "all-purpose flour", + "sugar", + "almonds", + "ice water", + "cream sweeten whip", + "large egg yolks", + "almond extract", + "vanilla beans", + "unsalted butter", + "salt" + ] + }, + { + "id": 2384, + "cuisine": "korean", + "ingredients": [ + "sugar", + "ground black pepper", + "Gochujang base", + "onions", + "kosher salt", + "vegetable oil", + "fresh lemon juice", + "ketchup", + "large eggs", + "garlic cloves", + "toasted sesame seeds", + "cold water", + "water", + "boneless skinless chicken", + "corn starch" + ] + }, + { + "id": 44773, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "kosher salt", + "chopped garlic", + "tomatoes", + "habanero chile", + "white wine vinegar", + "mayonaise", + "sweet onion", + "black pepper", + "olive oil" + ] + }, + { + "id": 13574, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "dry white wine", + "greek seasoning", + "olive oil", + "cooking apples", + "pepper", + "salt", + "collard greens", + "green onions", + "garlic cloves" + ] + }, + { + "id": 13093, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "cornmeal", + "large eggs", + "grated lemon zest", + "milk", + "all-purpose flour", + "butter", + "fresh lemon juice" + ] + }, + { + "id": 35165, + "cuisine": "spanish", + "ingredients": [ + "chili", + "cumin seed", + "pure olive oil", + "ground black pepper", + "sherry vinegar", + "sour orange juice", + "kosher salt", + "garlic" + ] + }, + { + "id": 48228, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "italian sausage", + "olive oil", + "pasta", + "dry white wine" + ] + }, + { + "id": 19234, + "cuisine": "indian", + "ingredients": [ + "mussels", + "basil leaves", + "juice", + "garam masala", + "extra-virgin olive oil", + "hot red pepper flakes", + "diced tomatoes", + "onions", + "unsweetened coconut milk", + "fennel bulb", + "garlic cloves" + ] + }, + { + "id": 7635, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "pepper", + "low sodium chicken broth", + "garlic cloves", + "arborio rice", + "grated parmesan cheese", + "salt", + "sweet onion", + "dry white wine" + ] + }, + { + "id": 31072, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "butternut squash", + "chopped cilantro", + "chipotle chile", + "olive oil", + "sour cream", + "canned black beans", + "lime", + "taco seasoning", + "shredded Monterey Jack cheese", + "minced garlic", + "flour tortillas", + "chipotles in adobo" + ] + }, + { + "id": 28305, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "bread flour", + "instant yeast", + "whole wheat flour", + "warm water", + "cornmeal" + ] + }, + { + "id": 41990, + "cuisine": "british", + "ingredients": [ + "sugar", + "unsalted butter", + "all-purpose flour", + "baking soda", + "baking powder", + "ground nutmeg", + "salt", + "golden brown sugar", + "egg whites", + "sour cream" + ] + }, + { + "id": 35453, + "cuisine": "jamaican", + "ingredients": [ + "eggs", + "lime wedges", + "ground allspice", + "dried thyme", + "dry bread crumbs", + "kosher salt", + "vegetable oil", + "chinese five-spice powder", + "red snapper", + "bananas", + "cayenne pepper" + ] + }, + { + "id": 20497, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "peanut oil", + "cracked black pepper", + "green tomatoes", + "seafood breader", + "salt" + ] + }, + { + "id": 29233, + "cuisine": "indian", + "ingredients": [ + "hothouse cucumber", + "honey", + "fresh mint", + "plain yogurt", + "mango" + ] + }, + { + "id": 34068, + "cuisine": "indian", + "ingredients": [ + "clove", + "ground cinnamon", + "coriander powder", + "ground tumeric", + "onions", + "nutmeg", + "water", + "chili powder", + "salt", + "ground cumin", + "tomatoes", + "garam masala", + "ginger", + "green chilies", + "curry leaves", + "grated coconut", + "prawns", + "garlic", + "ground turmeric" + ] + }, + { + "id": 40013, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "purple onion", + "fresh lime juice", + "fat free less sodium chicken broth", + "butter", + "all-purpose flour", + "chopped cilantro fresh", + "avocado", + "baking powder", + "salt", + "carnitas", + "salsa verde", + "cilantro sprigs", + "pinto beans", + "masa harina" + ] + }, + { + "id": 44333, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "smoked paprika", + "salt", + "dried oregano", + "chili powder", + "sirloin tip roast", + "lime", + "low sodium chicken stock", + "ground cumin" + ] + }, + { + "id": 43102, + "cuisine": "korean", + "ingredients": [ + "light soy sauce", + "garlic", + "chili sauce", + "sesame oil", + "sauce", + "scallions", + "ground black pepper", + "purple onion", + "firm tofu", + "vegetable oil", + "corn syrup" + ] + }, + { + "id": 20659, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "diced tomatoes", + "frozen okra", + "frozen corn kernels", + "old bay seasoning", + "chopped onion", + "black pepper", + "bacon" + ] + }, + { + "id": 5811, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "stewed tomatoes", + "chopped cilantro fresh", + "yellow squash", + "processed cheese", + "chopped onion", + "olive oil", + "chile pepper", + "whole kernel corn, drain", + "chicken broth", + "zucchini", + "garlic", + "dried oregano" + ] + }, + { + "id": 46311, + "cuisine": "brazilian", + "ingredients": [ + "black beans", + "sweet potatoes", + "cilantro", + "juice", + "cumin", + "tomatoes", + "water", + "hot pepper", + "green pepper", + "onions", + "pepper", + "brown rice", + "salt", + "thyme", + "tomato sauce", + "olive oil", + "red pepper flakes", + "garlic cloves", + "broth" + ] + }, + { + "id": 1547, + "cuisine": "southern_us", + "ingredients": [ + "black peppercorns", + "large eggs", + "butter", + "all-purpose flour", + "milk", + "bacon pieces", + "worcestershire sauce", + "cooked turkey", + "grated parmesan cheese", + "red pepper", + "fresh parsley", + "tomatoes", + "cornbread mix", + "french fried onions", + "salt" + ] + }, + { + "id": 14407, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "dried oregano", + "jalapeno chilies", + "minced garlic", + "ground cumin", + "tomatoes", + "salt" + ] + }, + { + "id": 18411, + "cuisine": "vietnamese", + "ingredients": [ + "chile paste with garlic", + "cooking spray", + "soba noodles", + "reduced sodium tamari", + "brown sugar", + "rice vinegar", + "red bell pepper", + "pork cutlets", + "ground black pepper", + "chinese cabbage", + "fish sauce", + "green onions", + "dark sesame oil" + ] + }, + { + "id": 2077, + "cuisine": "korean", + "ingredients": [ + "green onions", + "Gochujang base", + "honey", + "garlic", + "sesame oil", + "onions", + "sesame seeds", + "soybean paste" + ] + }, + { + "id": 11177, + "cuisine": "thai", + "ingredients": [ + "pepper", + "unsalted butter", + "drummettes", + "honey", + "salt", + "chicken wings", + "lime", + "Thai red curry paste", + "soy sauce", + "olive oil", + "chopped cilantro" + ] + }, + { + "id": 31381, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "onions", + "black pepper", + "tuna packed in olive oil", + "salt", + "Ciabatta rolls", + "lemon juice" + ] + }, + { + "id": 20835, + "cuisine": "italian", + "ingredients": [ + "butter", + "confectioners sugar", + "baking soda", + "Dutch-processed cocoa powder", + "white sugar", + "milk", + "vanilla extract", + "sour cream", + "egg whites", + "cake flour", + "boiling water" + ] + }, + { + "id": 12508, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "garlic cloves", + "mozzarella cheese", + "italian eggplant", + "crushed tomatoes", + "salt", + "hot red pepper flakes", + "parmigiano reggiano cheese" + ] + }, + { + "id": 30825, + "cuisine": "italian", + "ingredients": [ + "capers", + "salt", + "red bell pepper", + "ground black pepper", + "garlic cloves", + "mayonaise", + "anchovy fillets", + "tuna", + "french bread", + "fresh lemon juice" + ] + }, + { + "id": 48825, + "cuisine": "italian", + "ingredients": [ + "egg yolks", + "heavy cream", + "sugar", + "salt", + "whole milk" + ] + }, + { + "id": 19096, + "cuisine": "greek", + "ingredients": [ + "spinach", + "olive oil", + "garlic", + "kosher salt", + "lemon", + "plain yogurt", + "pitas", + "feta cheese crumbles", + "cherry tomatoes", + "red pepper flakes" + ] + }, + { + "id": 16941, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "baking potatoes", + "finely chopped fresh parsley" + ] + }, + { + "id": 27037, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "bay scallops", + "crushed red pepper", + "olive oil", + "clam juice", + "fresh parsley", + "halibut fillets", + "dry white wine", + "medium shrimp", + "fresh rosemary", + "finely chopped onion", + "large garlic cloves" + ] + }, + { + "id": 23371, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil", + "okra", + "dried oregano", + "andouille sausage", + "all-purpose flour", + "red bell pepper", + "cornbread", + "coarse salt", + "garlic cloves", + "ground pepper", + "rotisserie chicken", + "onions" + ] + }, + { + "id": 15048, + "cuisine": "japanese", + "ingredients": [ + "dashi kombu", + "bonito flakes", + "chili oil", + "scallions", + "toasted sesame oil", + "sake", + "mirin", + "ramen noodles", + "garlic", + "carrots", + "chicken", + "kosher salt", + "large eggs", + "vegetable oil", + "freshly ground pepper", + "nori sheets", + "boneless pork shoulder", + "reduced sodium soy sauce", + "shichimi togarashi", + "ginger", + "pork spareribs", + "bamboo shoots" + ] + }, + { + "id": 34759, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "pesto", + "pizza doughs", + "pizza sauce", + "mozzarella cheese", + "chicken" + ] + }, + { + "id": 10570, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "bread crumb fresh", + "garlic cloves", + "pernod", + "lemon wedge", + "oysters" + ] + }, + { + "id": 1082, + "cuisine": "korean", + "ingredients": [ + "ground black pepper", + "toasted sesame oil", + "carrots", + "kosher salt" + ] + }, + { + "id": 27768, + "cuisine": "brazilian", + "ingredients": [ + "black beans", + "fat-free chicken broth", + "olive oil", + "fresh parsley", + "dried thyme", + "garlic cloves", + "chipotle chile", + "turkey kielbasa", + "onions" + ] + }, + { + "id": 24781, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "ketchup", + "ground pork", + "corn starch", + "sugar", + "fresh ginger", + "rice vinegar", + "sake", + "water", + "salt", + "ground beef", + "white bread", + "soy sauce", + "sesame oil", + "scallions" + ] + }, + { + "id": 48543, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "red bell pepper", + "iceberg lettuce", + "kidney beans", + "cayenne pepper", + "onions", + "olive oil", + "salsa", + "ground turkey", + "ground cumin", + "chili powder", + "carrots", + "dried oregano" + ] + }, + { + "id": 13338, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "egg yolks", + "cinnamon sticks", + "milk", + "heavy cream", + "orange", + "lemon", + "sweet sherry", + "vanilla extract" + ] + }, + { + "id": 13354, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "pork tenderloin", + "canola oil", + "pepper", + "garlic", + "cider vinegar", + "bay leaves", + "chicken legs", + "ground black pepper", + "salt" + ] + }, + { + "id": 2637, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "dried thyme", + "file powder", + "hot sauce", + "bay leaf", + "andouille sausage", + "cayenne", + "bacon", + "okra", + "bone in skin on chicken thigh", + "green bell pepper", + "ground black pepper", + "flour", + "yellow onion", + "cooked white rice", + "kosher salt", + "whole peeled tomatoes", + "garlic", + "celery", + "canola oil" + ] + }, + { + "id": 36016, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "fresh ginger", + "duck", + "black vinegar", + "light soy sauce", + "green onions", + "garlic cloves", + "water", + "hoisin sauce", + "chinese five-spice powder", + "canola oil", + "chinese rice wine", + "honey", + "sesame oil", + "hot water" + ] + }, + { + "id": 43535, + "cuisine": "italian", + "ingredients": [ + "pepper", + "asiago", + "flat leaf parsley", + "olive oil", + "lemon juice", + "capers", + "green onions", + "spaghettini", + "minced garlic", + "salt" + ] + }, + { + "id": 20896, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "ground black pepper", + "worcestershire sauce", + "sauce", + "baby lima beans", + "barbecue sauce", + "salt", + "pork shoulder", + "brown sugar", + "potatoes", + "garlic", + "frozen corn kernels", + "white onion", + "butter", + "cayenne pepper" + ] + }, + { + "id": 8975, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "hot pepper sauce", + "onions", + "fat free less sodium chicken broth", + "andouille chicken sausage", + "long-grain rice", + "black-eyed peas", + "diced tomatoes", + "olive oil", + "cajun seasoning", + "sliced green onions" + ] + }, + { + "id": 20320, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "fresh parsley", + "light brown sugar", + "lemon juice", + "boiling onions", + "salt" + ] + }, + { + "id": 33201, + "cuisine": "japanese", + "ingredients": [ + "peeled fresh ginger", + "carrots", + "soy sauce", + "napa cabbage", + "cucumber", + "golden brown sugar", + "rice vinegar", + "red bell pepper", + "sesame oil", + "Thai fish sauce" + ] + }, + { + "id": 11904, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "pecorino romano cheese", + "garlic cloves", + "plum tomatoes", + "Chianti", + "penne pasta", + "onions", + "fresh basil", + "extra-virgin olive oil", + "carrots", + "sausage casings", + "crushed red pepper", + "low salt chicken broth" + ] + }, + { + "id": 11750, + "cuisine": "mexican", + "ingredients": [ + "potatoes", + "fresh lime juice", + "ground cumin", + "tomatoes", + "salt", + "chopped cilantro fresh", + "garlic", + "onions", + "beef shank", + "carrots", + "cabbage" + ] + }, + { + "id": 36265, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "fresh parsley", + "white bread", + "garlic", + "extra-virgin olive oil", + "romano cheese", + "dried red chile peppers" + ] + }, + { + "id": 44876, + "cuisine": "mexican", + "ingredients": [ + "orange bell pepper", + "cucumber", + "green onions", + "tomatoes", + "jicama", + "red grapefruit", + "chopped cilantro fresh" + ] + }, + { + "id": 42488, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "cheese tortellini", + "cream cheese", + "unsalted butter", + "crushed red pepper flakes", + "fresh parsley leaves", + "kosher salt", + "grated parmesan cheese", + "garlic", + "milk", + "half & half", + "all-purpose flour" + ] + }, + { + "id": 32773, + "cuisine": "vietnamese", + "ingredients": [ + "chicken stock", + "unsalted roasted peanuts", + "Sriracha", + "shallots", + "peanut sauce", + "peanut oil", + "cucumber", + "tomato paste", + "thai basil", + "hoisin sauce", + "chile pepper", + "garlic", + "garlic cloves", + "rice paper", + "sugar", + "chili paste", + "mint leaves", + "rice vermicelli", + "peanut butter", + "shrimp", + "romaine lettuce", + "ground black pepper", + "pork tenderloin", + "cilantro sprigs", + "vietnamese fish sauce", + "carrots" + ] + }, + { + "id": 33701, + "cuisine": "russian", + "ingredients": [ + "red potato", + "honey", + "coarse salt", + "scallions", + "crawfish", + "dijon mustard", + "large garlic cloves", + "hass avocado", + "salmon", + "ground black pepper", + "lemon", + "lemon juice", + "avocado", + "fresh cilantro", + "shallots", + "wine vinegar" + ] + }, + { + "id": 27808, + "cuisine": "southern_us", + "ingredients": [ + "vinegar", + "milk", + "salt", + "eggs", + "butter", + "baking soda", + "cornmeal" + ] + }, + { + "id": 16869, + "cuisine": "indian", + "ingredients": [ + "coconut", + "carrots", + "white sugar", + "oil", + "beansprouts", + "salt", + "mustard seeds", + "lemon juice", + "chopped cilantro" + ] + }, + { + "id": 9685, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "ground red pepper", + "purple onion", + "bibb lettuce", + "butter", + "gorgonzola", + "peaches", + "watercress", + "vinaigrette", + "light brown sugar", + "cake", + "bacon slices" + ] + }, + { + "id": 44169, + "cuisine": "russian", + "ingredients": [ + "radishes", + "sugar", + "scallions", + "red wine vinegar", + "kosher salt", + "dried red chile peppers" + ] + }, + { + "id": 32333, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "baking potatoes", + "light coconut milk", + "garlic cloves", + "lower sodium chicken broth", + "ginger", + "edamame", + "ground turmeric", + "ground cinnamon", + "butter", + "all-purpose flour", + "long grain white rice", + "ground red pepper", + "cauliflower florets", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 10141, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "mirin", + "ginger", + "eggs", + "dashi powder", + "spring onions", + "yellow onion", + "white pepper", + "mushrooms", + "salt", + "sake", + "steamed rice", + "chicken thigh fillets", + "shiso leaves" + ] + }, + { + "id": 26044, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "pie shell", + "fresh basil", + "yellow onion", + "tomatoes", + "grated parmesan cheese", + "shredded mozzarella cheese", + "mayonaise", + "fresh oregano" + ] + }, + { + "id": 44476, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "linguine", + "pancetta", + "fresh parmesan cheese", + "ripe olives", + "minced garlic", + "chopped onion", + "capers", + "cooking spray" + ] + }, + { + "id": 25019, + "cuisine": "italian", + "ingredients": [ + "picholine olives", + "parmigiano reggiano cheese", + "cavatelli", + "fresh basil", + "whole grain dijon mustard", + "extra-virgin olive oil", + "prosciutto", + "red wine vinegar", + "flat leaf parsley", + "sugar", + "ground black pepper", + "salt" + ] + }, + { + "id": 11540, + "cuisine": "southern_us", + "ingredients": [ + "cajun seasoning", + "peanut oil", + "milk", + "all-purpose flour", + "eggs", + "salt", + "cornmeal", + "green tomatoes", + "dry bread crumbs" + ] + }, + { + "id": 14707, + "cuisine": "chinese", + "ingredients": [ + "cream", + "butter", + "frozen pastry puff sheets", + "milk", + "vanilla extract", + "powdered sugar", + "egg yolks" + ] + }, + { + "id": 48288, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "thick-cut bacon", + "chicken stock", + "green beans", + "salt", + "brown sugar", + "onions" + ] + }, + { + "id": 22583, + "cuisine": "russian", + "ingredients": [ + "hard-boiled egg", + "cream", + "imitation crab meat", + "mayonaise", + "peas", + "corn", + "onions" + ] + }, + { + "id": 11625, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "mirin", + "sesame seeds", + "rice vinegar", + "sugar", + "fresh ginger root", + "oil", + "boneless chicken skinless thigh", + "cornflour" + ] + }, + { + "id": 8392, + "cuisine": "greek", + "ingredients": [ + "basil", + "lemon juice", + "olive oil", + "freshly ground pepper", + "oregano", + "salt", + "marjoram", + "red wine vinegar", + "garlic cloves" + ] + }, + { + "id": 43894, + "cuisine": "french", + "ingredients": [ + "shallots", + "garlic cloves", + "large eggs", + "tarragon leaves", + "white vinegar", + "white wine vinegar", + "Italian bread", + "olive oil", + "salt pork", + "frisee" + ] + }, + { + "id": 1330, + "cuisine": "italian", + "ingredients": [ + "mint sprigs", + "white chocolate", + "and fat free half half", + "unflavored gelatin", + "vanilla extract", + "raspberries", + "sweetened condensed milk" + ] + }, + { + "id": 8623, + "cuisine": "french", + "ingredients": [ + "water", + "apple cider vinegar", + "all-purpose flour", + "sugar", + "baking powder", + "salt", + "grated orange peel", + "unsalted butter", + "whipped cream", + "peaches", + "ice water" + ] + }, + { + "id": 7789, + "cuisine": "mexican", + "ingredients": [ + "spanish onion", + "boiling potatoes", + "zucchini", + "olive oil", + "large eggs" + ] + }, + { + "id": 28615, + "cuisine": "mexican", + "ingredients": [ + "coffee granules", + "vanilla instant pudding", + "milk", + "vegetable oil", + "eggs", + "coffee liqueur", + "chocolate chips", + "ground cinnamon", + "chocolate cake mix", + "confectioners sugar" + ] + }, + { + "id": 5276, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "baking potatoes", + "ground turmeric", + "cooking spray", + "mustard seeds", + "ground black pepper", + "cumin seed", + "canola oil", + "light sour cream", + "ground red pepper", + "fresh parsley" + ] + }, + { + "id": 42050, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "extra firm tofu", + "cucumber", + "sugar", + "peanuts", + "shredded lettuce", + "mung bean sprouts", + "rice sticks", + "vegetable oil", + "fresh lime juice", + "soy sauce", + "herbs", + "garlic" + ] + }, + { + "id": 45833, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "edamame", + "grated lemon peel", + "dry white wine", + "lemon juice", + "green onions", + "I Can't Believe It's Not Butter!® All Purpose Sticks", + "arborio rice", + "shallots", + "carrots" + ] + }, + { + "id": 11580, + "cuisine": "indian", + "ingredients": [ + "red potato", + "garam masala", + "garlic", + "freshly ground pepper", + "cucumber", + "lime juice", + "mint leaves", + "firm tofu", + "nutritional yeast flakes", + "ground cumin", + "fresh spinach", + "diced red onions", + "salt", + "cumin seed", + "onions", + "chickpea flour", + "fresh ginger", + "plain soy yogurt", + "ground coriander", + "lemon juice" + ] + }, + { + "id": 12557, + "cuisine": "indian", + "ingredients": [ + "water", + "chili powder", + "coconut milk", + "fish fillets", + "garam masala", + "garlic", + "tomatoes", + "fresh ginger", + "vegetable oil", + "onions", + "chili pepper", + "ground black pepper", + "salt" + ] + }, + { + "id": 40228, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "herbs", + "garlic", + "coconut milk", + "tofu", + "water", + "vegetable oil", + "scallions", + "mung bean sprouts", + "tumeric", + "leaves", + "cilantro", + "rice flour", + "soy sauce", + "mung beans", + "salt", + "fresh lime juice" + ] + }, + { + "id": 14813, + "cuisine": "korean", + "ingredients": [ + "shredded carrots", + "yellow onion", + "white sugar", + "clove", + "cracked black pepper", + "oil", + "crushed red pepper flakes", + "beef sirloin", + "soy sauce", + "ginger", + "onions" + ] + }, + { + "id": 46491, + "cuisine": "french", + "ingredients": [ + "mint", + "strawberries", + "crème fraîche", + "shortbread cookies", + "jam" + ] + }, + { + "id": 45355, + "cuisine": "thai", + "ingredients": [ + "lime", + "ginger", + "salt", + "dark soy sauce", + "spring onions", + "garlic", + "coriander", + "kaffir lime leaves", + "chopped tomatoes", + "Thai red curry paste", + "minced pork", + "pepper", + "sesame oil", + "purple onion", + "fish" + ] + }, + { + "id": 7739, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "yellow onion", + "parmigiano-reggiano cheese", + "green peas", + "flat leaf parsley", + "water", + "salt", + "arborio rice", + "butter", + "organic vegetable broth" + ] + }, + { + "id": 34288, + "cuisine": "french", + "ingredients": [ + "walnuts", + "port wine", + "pears", + "dried fig", + "gruyere cheese" + ] + }, + { + "id": 33512, + "cuisine": "southern_us", + "ingredients": [ + "refrigerated crescent rolls", + "eggs", + "swiss cheese", + "meat", + "roma tomatoes", + "cooked bacon" + ] + }, + { + "id": 20189, + "cuisine": "filipino", + "ingredients": [ + "barbecue sauce", + "bamboo shoots", + "boneless chicken thigh fillets", + "red pepper flakes", + "sesame oil", + "mango nectar", + "pepper", + "salt" + ] + }, + { + "id": 5637, + "cuisine": "indian", + "ingredients": [ + "low sodium vegetable broth", + "currant", + "ground coriander", + "chopped cilantro fresh", + "unsalted almonds", + "quick cooking brown rice", + "garlic", + "carrots", + "low-fat plain yogurt", + "garam masala", + "cauliflower florets", + "lentils", + "ground turmeric", + "safflower oil", + "dried mint flakes", + "yellow onion", + "frozen peas" + ] + }, + { + "id": 36116, + "cuisine": "italian", + "ingredients": [ + "pepper", + "low sodium chicken broth", + "garlic cloves", + "arborio rice", + "olive oil", + "butter", + "sweet onion", + "dry white wine", + "squash", + "fresh basil", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 2137, + "cuisine": "french", + "ingredients": [ + "pearl onions", + "chopped fresh thyme", + "all-purpose flour", + "onions", + "water", + "vegetable oil", + "salt", + "flat leaf parsley", + "Turkish bay leaves", + "large garlic cloves", + "fresh parsley leaves", + "thick-cut bacon", + "black pepper", + "shallots", + "dry red wine", + "carrots", + "chuck" + ] + }, + { + "id": 34652, + "cuisine": "italian", + "ingredients": [ + "sandwiches", + "baguette", + "red wine vinegar", + "white mushrooms", + "green bell pepper", + "eggplant", + "black olives", + "fresh basil leaves", + "tomato paste", + "olive oil", + "garlic", + "onions", + "sugar", + "ground black pepper", + "salt", + "dried oregano" + ] + }, + { + "id": 23051, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "chili powder", + "oil", + "clove", + "garam masala", + "green cardamom", + "coriander", + "asafoetida", + "salt", + "greek yogurt", + "fennel seeds", + "new potatoes", + "mustard oil" + ] + }, + { + "id": 43400, + "cuisine": "french", + "ingredients": [ + "seasoning", + "parsley sprigs", + "pearl onions", + "meat", + "garlic cloves", + "bone in chicken thighs", + "celery ribs", + "porcini", + "kosher salt", + "ground black pepper", + "dry red wine", + "thyme", + "chicken stock", + "cremini mushrooms", + "spanish onion", + "mushrooms", + "all-purpose flour", + "bay leaf", + "tomato paste", + "dried porcini mushrooms", + "olive oil", + "shallots", + "carrots" + ] + }, + { + "id": 5546, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "golden raisins", + "red bell pepper", + "kosher salt", + "yellow onion", + "ground cumin", + "black pepper", + "lemon", + "couscous", + "tomatoes", + "olive oil", + "shrimp" + ] + }, + { + "id": 33136, + "cuisine": "italian", + "ingredients": [ + "peeled tomatoes", + "crushed red pepper flakes", + "reduced sodium chicken broth", + "grated parmesan cheese", + "salt", + "minced garlic", + "cannellini beans", + "escarole", + "pancetta", + "ground black pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 19391, + "cuisine": "mexican", + "ingredients": [ + "water", + "sour cream", + "cheddar cheese", + "tortillas", + "tomatoes", + "taco seasoning mix", + "cream", + "hamburger" + ] + }, + { + "id": 45057, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "diced tomatoes", + "sliced mushrooms", + "finely chopped onion", + "all-purpose flour", + "chopped green bell pepper", + "salt", + "black pepper", + "cooking spray", + "boneless pork loin" + ] + }, + { + "id": 45024, + "cuisine": "thai", + "ingredients": [ + "coconut milk", + "cream of coconut", + "bananas", + "white sugar", + "salt" + ] + }, + { + "id": 30619, + "cuisine": "french", + "ingredients": [ + "pepper", + "salt", + "clarified butter", + "potatoes" + ] + }, + { + "id": 31279, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked ham", + "green onions", + "medium shrimp", + "bacon drippings", + "minced onion", + "creole seasoning", + "bread crumbs", + "butter", + "fresh parsley", + "mirlitons", + "large eggs", + "garlic cloves" + ] + }, + { + "id": 4396, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "white onion", + "cilantro leaves", + "pinto beans", + "cotija", + "jalapeno chilies", + "roasting chickens", + "pork lard", + "romaine lettuce", + "radishes", + "rolls", + "juice", + "reduced sodium chicken broth", + "crema", + "garlic cloves" + ] + }, + { + "id": 44758, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "purple onion", + "new potatoes", + "flat leaf parsley", + "olive oil", + "salt" + ] + }, + { + "id": 15286, + "cuisine": "cajun_creole", + "ingredients": [ + "beef", + "fresh parsley", + "freshly ground pepper", + "cheese tortellini", + "olives", + "olive oil", + "ham" + ] + }, + { + "id": 25988, + "cuisine": "chinese", + "ingredients": [ + "soft tofu", + "stock", + "salt water", + "seasoning", + "scallions", + "shiitake", + "corn starch" + ] + }, + { + "id": 29861, + "cuisine": "thai", + "ingredients": [ + "wide rice noodles", + "large eggs", + "water", + "firm tofu", + "soy sauce", + "vegetable oil", + "light brown sugar", + "broccolini", + "garlic cloves" + ] + }, + { + "id": 13901, + "cuisine": "chinese", + "ingredients": [ + "jasmine rice", + "large eggs", + "salt", + "soy sauce", + "fresh ginger", + "vegetable oil", + "corn starch", + "brown sugar", + "water", + "green onions", + "rice vinegar", + "boneless chicken skinless thigh", + "sesame seeds", + "garlic", + "toasted sesame oil" + ] + }, + { + "id": 41931, + "cuisine": "spanish", + "ingredients": [ + "collard greens", + "garlic cloves", + "navy beans", + "fat free less sodium chicken broth", + "black pepper", + "chorizo sausage", + "fettucine", + "chopped onion" + ] + }, + { + "id": 32235, + "cuisine": "italian", + "ingredients": [ + "pesto", + "ground black pepper", + "bread", + "kosher salt" + ] + }, + { + "id": 42475, + "cuisine": "italian", + "ingredients": [ + "pepper", + "butter", + "plum tomatoes", + "olive oil", + "salt", + "water", + "garlic", + "fresh basil", + "parsley", + "spaghetti" + ] + }, + { + "id": 28114, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "peanuts", + "ginger", + "salt", + "brown sugar", + "lime", + "chives", + "light coconut milk", + "creamy peanut butter", + "soy sauce", + "olive oil", + "red pepper", + "garlic", + "baby corn", + "pepper", + "pork chops", + "Thai red curry paste", + "cilantro leaves" + ] + }, + { + "id": 35361, + "cuisine": "italian", + "ingredients": [ + "dough", + "salt", + "olive oil", + "freshly ground pepper", + "dried thyme", + "goat cheese", + "cooking spray", + "sliced mushrooms" + ] + }, + { + "id": 30009, + "cuisine": "mexican", + "ingredients": [ + "water", + "corn tortillas", + "pepper", + "boneless skinless chicken breasts", + "onions", + "green chile", + "gravy", + "celery", + "shredded cheddar cheese", + "salt", + "garlic salt" + ] + }, + { + "id": 26422, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "salt", + "coriander", + "boneless chicken skinless thigh", + "vegetable oil", + "ghee", + "ground cumin", + "chili powder", + "ground coriander", + "ground turmeric", + "chopped tomatoes", + "garlic", + "onions" + ] + }, + { + "id": 17780, + "cuisine": "cajun_creole", + "ingredients": [ + "Johnsonville Smoked Sausage", + "water", + "worcestershire sauce", + "garlic cloves", + "tomato sauce", + "bay leaves", + "salt", + "fresh parsley", + "cooked rice", + "hot pepper sauce", + "chopped celery", + "dried kidney beans", + "pepper", + "fully cooked ham", + "chopped onion", + "garlic salt" + ] + }, + { + "id": 27586, + "cuisine": "cajun_creole", + "ingredients": [ + "creole seasoning", + "boiling water", + "shortening", + "cornmeal", + "lard", + "minced onion", + "white sugar" + ] + }, + { + "id": 43061, + "cuisine": "spanish", + "ingredients": [ + "sparkling sangria tradicional", + "orange", + "sangria" + ] + }, + { + "id": 12076, + "cuisine": "italian", + "ingredients": [ + "egg whites", + "almond extract", + "cake flour", + "confectioners sugar", + "ground cinnamon", + "rum", + "candied cherries", + "lemon juice", + "orange zest", + "sherry", + "butter", + "salt", + "white sugar", + "eggs", + "ricotta cheese", + "sweet chocolate", + "toasted almonds" + ] + }, + { + "id": 49232, + "cuisine": "vietnamese", + "ingredients": [ + "peeled fresh ginger", + "vegetable oil", + "chicken stock", + "garlic cloves", + "jasmine rice", + "chopped cilantro fresh" + ] + }, + { + "id": 36517, + "cuisine": "southern_us", + "ingredients": [ + "crab boil", + "corn", + "shrimp", + "sausage links", + "small red potato", + "salt" + ] + }, + { + "id": 13478, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "bacon", + "carrots", + "olive oil", + "garlic", + "frozen artichoke hearts", + "white onion", + "diced tomatoes", + "spaghetti", + "chicken stock", + "fresh green bean", + "salt", + "saffron" + ] + }, + { + "id": 14995, + "cuisine": "southern_us", + "ingredients": [ + "green onions", + "all-purpose flour", + "egg whites", + "coarse salt", + "onions", + "egg yolks", + "buttermilk", + "canola oil", + "baking soda", + "baking powder", + "cornmeal" + ] + }, + { + "id": 47138, + "cuisine": "indian", + "ingredients": [ + "water", + "cilantro", + "oil", + "tomatoes", + "garam masala", + "salt", + "masala", + "light cream", + "paneer", + "onions", + "sugar", + "fresh peas", + "ground almonds" + ] + }, + { + "id": 19142, + "cuisine": "chinese", + "ingredients": [ + "cabbage leaves", + "hoisin sauce", + "vegetable oil", + "boneless pork loin", + "sliced green onions", + "black pepper", + "peeled fresh ginger", + "dried shiitake mushrooms", + "corn starch", + "low sodium soy sauce", + "minced garlic", + "rice wine", + "chinese cabbage", + "wood ear mushrooms", + "sugar", + "large eggs", + "mandarin pancakes", + "dark sesame oil" + ] + }, + { + "id": 6225, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "ground turkey", + "Swanson Chicken Broth", + "dri oregano leaves, crush", + "chunky salsa", + "sugar", + "ground black pepper", + "whole kernel corn, drain", + "ground cumin", + "garlic powder", + "vegetable oil", + "onions" + ] + }, + { + "id": 22695, + "cuisine": "italian", + "ingredients": [ + "sea salt", + "sourdough bread", + "garlic cloves", + "olive oil", + "chopped fresh herbs", + "freshly ground pepper" + ] + }, + { + "id": 26232, + "cuisine": "thai", + "ingredients": [ + "lime zest", + "coconut oil", + "green curry paste", + "jalapeno chilies", + "garlic", + "carrots", + "coconut milk", + "fish sauce", + "lime juice", + "lemon grass", + "cilantro", + "purple onion", + "ramen", + "onions", + "kaffir lime leaves", + "water", + "thai basil", + "shallots", + "oyster mushrooms", + "ground white pepper", + "galangal", + "brown sugar", + "lemongrass", + "radishes", + "thai chile", + "salt", + "beansprouts" + ] + }, + { + "id": 4745, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "fresh parsley", + "dough", + "crushed red pepper", + "garlic", + "olive oil", + "salt" + ] + }, + { + "id": 49632, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "vanilla extract", + "rum", + "ice", + "milk", + "sweetened condensed milk", + "warm water", + "long-grain rice" + ] + }, + { + "id": 21649, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "green chilies", + "moong dal", + "urad dal", + "coriander", + "ginger", + "onions", + "baking soda", + "salt" + ] + }, + { + "id": 29987, + "cuisine": "british", + "ingredients": [ + "Angostura bitters", + "champagne", + "lemon peel", + "sugar" + ] + }, + { + "id": 9899, + "cuisine": "indian", + "ingredients": [ + "flour", + "paneer", + "garlic paste", + "capsicum", + "chili sauce", + "spring onions", + "salt", + "red chili peppers", + "red capsicum", + "oil" + ] + }, + { + "id": 27125, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "sesame oil", + "coconut milk", + "lime juice", + "salted roast peanuts", + "brown sugar", + "ginger", + "chopped cilantro fresh", + "shredded coleslaw mix", + "rice vermicelli" + ] + }, + { + "id": 11679, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "Tabasco Pepper Sauce", + "yellow onion", + "red bell pepper", + "celery ribs", + "large eggs", + "butter", + "fresh herbs", + "champagne grapes", + "chicken broth", + "french bread", + "turkey", + "shrimp", + "andouille sausage", + "vegetable oil", + "okra", + "chopped parsley" + ] + }, + { + "id": 7756, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "peanut oil", + "chicken", + "leeks", + "corn starch", + "pork tenderloin", + "garlic cloves", + "soy sauce", + "red pepper flakes", + "cashew nuts" + ] + }, + { + "id": 27721, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "wonton wrappers", + "scallions", + "sesame oil", + "salt", + "shiitake", + "napa cabbage", + "soy sauce", + "vegetable oil", + "firm tofu" + ] + }, + { + "id": 45181, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "flour", + "tomatoes", + "active dry yeast", + "fresh basil leaves", + "mozzarella cheese", + "extra-virgin olive oil", + "warm water", + "ground black pepper", + "oregano" + ] + }, + { + "id": 1387, + "cuisine": "italian", + "ingredients": [ + "sugar", + "butter", + "onions", + "fresh basil", + "olive oil", + "garlic", + "fettucine", + "pepper", + "heavy cream", + "tomato sauce", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 45899, + "cuisine": "korean", + "ingredients": [ + "sambal ulek", + "kirby cucumbers", + "corn starch", + "baking powder", + "all-purpose flour", + "club soda", + "eggs", + "sesame oil", + "scallions", + "soy sauce", + "garlic", + "chinese black vinegar" + ] + }, + { + "id": 14657, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "pork sausages", + "flour", + "seasoning salt", + "black pepper", + "chicken base" + ] + }, + { + "id": 31165, + "cuisine": "southern_us", + "ingredients": [ + "dark corn syrup", + "light molasses", + "baking powder", + "cake flour", + "vanilla ice cream", + "vegetable oil spray", + "large eggs", + "buttermilk", + "pecans", + "water", + "unsalted butter", + "bourbon whiskey", + "salt", + "sugar", + "baking soda", + "whole milk", + "vanilla extract" + ] + }, + { + "id": 40290, + "cuisine": "mexican", + "ingredients": [ + "active dry yeast", + "sugar", + "bread flour", + "warm water", + "shortening", + "salt" + ] + }, + { + "id": 42778, + "cuisine": "mexican", + "ingredients": [ + "taco bell home originals", + "green onions", + "black beans", + "baked tortilla chips", + "tomatoes", + "2% reduced-fat milk", + "Knudsen Light Sour Cream", + "iceberg lettuce" + ] + }, + { + "id": 39584, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "hoisin sauce", + "sesame oil", + "garlic cloves", + "bamboo shoots", + "low sodium soy sauce", + "honey", + "green onions", + "red wine vinegar", + "corn starch", + "light brown sugar", + "water", + "water chestnuts", + "vegetable oil", + "oyster sauce", + "butter lettuce", + "shiitake", + "boneless skinless chicken breasts", + "ginger", + "toasted sesame seeds" + ] + }, + { + "id": 21369, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "redfish", + "lemon wedge", + "seasoning" + ] + }, + { + "id": 42134, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "orange juice", + "boneless skinless chicken breast halves", + "large garlic cloves", + "low salt chicken broth", + "ground cumin", + "chili powder", + "dark brown sugar", + "dried oregano", + "stewed tomatoes", + "fresh lime juice" + ] + }, + { + "id": 28489, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "anchovy fillets", + "vidalia onion", + "cooking spray", + "olives", + "fresh thyme", + "thyme sprigs", + "olive oil", + "refrigerated pizza dough" + ] + }, + { + "id": 4259, + "cuisine": "british", + "ingredients": [ + "cream", + "orange juice", + "water", + "caster sugar", + "rhubarb", + "egg whites" + ] + }, + { + "id": 46492, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "garlic cloves", + "baby spinach", + "rice wine", + "canola oil", + "salt" + ] + }, + { + "id": 41116, + "cuisine": "japanese", + "ingredients": [ + "rice", + "Spring! Water" + ] + }, + { + "id": 22755, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "lemon juice", + "chili pepper", + "salt", + "cumin", + "fresh cilantro", + "garlic cloves", + "paprika", + "carrots" + ] + }, + { + "id": 12802, + "cuisine": "italian", + "ingredients": [ + "water", + "macaroni", + "chopped onion", + "dried parsley", + "kidney beans", + "garlic", + "green beans", + "corn kernel whole", + "dried basil", + "diced tomatoes", + "carrots", + "dried oregano", + "tomato sauce", + "beef bouillon granules", + "chopped celery", + "ground beef", + "cabbage" + ] + }, + { + "id": 28172, + "cuisine": "indian", + "ingredients": [ + "sugar", + "soy milk", + "active dry yeast", + "bread flour", + "warm water", + "salt", + "olive oil" + ] + }, + { + "id": 2737, + "cuisine": "greek", + "ingredients": [ + "light mayonnaise", + "cucumber", + "grated lemon zest", + "chopped fresh mint", + "ground black pepper", + "fresh lemon juice", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 42718, + "cuisine": "greek", + "ingredients": [ + "milk", + "salt", + "white sugar", + "eggs", + "baking powder", + "chopped walnuts", + "ground cinnamon", + "honey", + "all-purpose flour", + "orange zest", + "water", + "butter", + "lemon juice" + ] + }, + { + "id": 39014, + "cuisine": "indian", + "ingredients": [ + "salt", + "rice flour", + "onions", + "potatoes", + "green chilies", + "gram flour", + "curry leaves", + "cilantro leaves", + "carrots", + "ground turmeric", + "chili powder", + "oil", + "asafoetida powder" + ] + }, + { + "id": 36092, + "cuisine": "moroccan", + "ingredients": [ + "slivered almonds", + "dates", + "dried apricot", + "couscous", + "unsalted butter", + "vegetable broth", + "ground cinnamon", + "golden raisins" + ] + }, + { + "id": 48753, + "cuisine": "italian", + "ingredients": [ + "avocado", + "fresh lime juice", + "vegetable oil", + "canned chicken broth", + "fresh basil leaves", + "large garlic cloves" + ] + }, + { + "id": 8402, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "cilantro", + "baby carrots", + "ground cumin", + "tumeric", + "garam masala", + "vegetable broth", + "onions", + "red chili peppers", + "yellow lentils", + "garlic", + "basmati rice", + "lime", + "ginger", + "black mustard seeds" + ] + }, + { + "id": 35858, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "dry bread crumbs", + "butter", + "whole milk ricotta cheese", + "golden beets", + "egg pasta", + "poppy seeds" + ] + }, + { + "id": 2810, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "jalapeno chilies", + "all-purpose flour", + "chopped garlic", + "chicken legs", + "fresh coriander", + "dry sherry", + "red bell pepper", + "cooked rice", + "curry powder", + "cream of coconut", + "fresh lime juice", + "chicken broth", + "black pepper", + "vegetable oil", + "gingerroot" + ] + }, + { + "id": 2776, + "cuisine": "french", + "ingredients": [ + "olive oil", + "salt", + "white sugar", + "black pepper", + "butter", + "lemon juice", + "eggs", + "grated parmesan cheese", + "all-purpose flour", + "boneless skinless chicken breast halves", + "minced garlic", + "dry sherry", + "chicken base" + ] + }, + { + "id": 33993, + "cuisine": "cajun_creole", + "ingredients": [ + "mayonaise", + "crabmeat", + "dressing", + "pimentos", + "scallions", + "avocado", + "sweet pickle", + "freshly ground pepper", + "capers", + "coarse salt", + "lemon juice" + ] + }, + { + "id": 9818, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "patis", + "chicken stock", + "garlic", + "onions", + "ginger", + "scallions", + "jasmine rice", + "salt", + "chicken" + ] + }, + { + "id": 29322, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "taco seasoning", + "avocado", + "salt", + "sour cream", + "garlic", + "brown lentils", + "pico de gallo", + "yellow onion", + "corn tortillas" + ] + }, + { + "id": 45712, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "onion flakes", + "soy sauce", + "vegetable oil", + "white vinegar", + "garlic powder", + "white sugar", + "water", + "worcestershire sauce" + ] + }, + { + "id": 23656, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "semisweet chocolate", + "large egg whites", + "almond extract", + "sugar", + "large eggs", + "almonds", + "salt" + ] + }, + { + "id": 7634, + "cuisine": "mexican", + "ingredients": [ + "grated parmesan cheese", + "corn", + "monterey jack", + "mayonaise", + "corn chips", + "chopped green chilies" + ] + }, + { + "id": 42692, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "lemon", + "lamb", + "fresh parsley", + "phyllo dough", + "potatoes", + "beef broth", + "fresh mint", + "eggs", + "lemon zest", + "garlic", + "feta cheese crumbles", + "olive oil", + "butter", + "fresh oregano", + "cooked white rice" + ] + }, + { + "id": 32044, + "cuisine": "indian", + "ingredients": [ + "diced tomatoes", + "yellow split peas", + "oil", + "water", + "salt", + "ground coriander", + "tumeric", + "garlic", + "cayenne pepper", + "onions", + "butter", + "cilantro leaves", + "cumin seed" + ] + }, + { + "id": 28033, + "cuisine": "japanese", + "ingredients": [ + "cooking wine", + "scallions", + "soy sauce", + "sauce", + "bok choy", + "eggs", + "frozen corn", + "ramen", + "mushrooms", + "seaweed" + ] + }, + { + "id": 30063, + "cuisine": "russian", + "ingredients": [ + "white bread", + "ground meat", + "vegetable oil", + "bread crumbs", + "onions", + "salt" + ] + }, + { + "id": 4067, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "ground cumin", + "amchur", + "ground turmeric", + "kosher salt", + "italian eggplant", + "vegetable oil" + ] + }, + { + "id": 41713, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "enchilada sauce", + "quinoa", + "frozen corn", + "black beans", + "cilantro", + "chili powder", + "shredded cheese" + ] + }, + { + "id": 47298, + "cuisine": "cajun_creole", + "ingredients": [ + "mixed vegetables", + "puff pastry", + "milk", + "salt", + "rosemary sprigs", + "cajun seasoning", + "chicken", + "cream of chicken soup", + "garlic salt" + ] + }, + { + "id": 38106, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken breast", + "chopped cilantro fresh", + "olive oil", + "corn tortillas", + "garlic", + "ground cumin", + "salt and ground black pepper", + "onions" + ] + }, + { + "id": 46761, + "cuisine": "irish", + "ingredients": [ + "lime", + "cayenne pepper", + "mayonaise", + "flour tortillas", + "corned beef", + "plain yogurt", + "salt", + "prepared coleslaw", + "chopped cilantro fresh" + ] + }, + { + "id": 30284, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "dry white wine", + "thick-cut bacon", + "arborio rice", + "olive oil", + "cheese", + "pepper", + "chives", + "reduced sodium beef broth", + "grated parmesan cheese", + "onions" + ] + }, + { + "id": 5307, + "cuisine": "french", + "ingredients": [ + "large eggs", + "salt", + "unsalted butter", + "heavy cream", + "fresh lemon juice", + "Nutella", + "vanilla extract", + "sugar", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 3427, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "water chestnuts", + "bamboo shoots", + "fish sauce", + "fresh mushrooms", + "green bell pepper", + "boneless skinless chicken breasts", + "chicken broth", + "green curry paste", + "coconut milk" + ] + }, + { + "id": 22432, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "cucumber", + "water", + "sugar", + "white vinegar", + "purple onion" + ] + }, + { + "id": 26529, + "cuisine": "indian", + "ingredients": [ + "parboiled rice", + "jaggery", + "ground cardamom", + "coconut" + ] + }, + { + "id": 13010, + "cuisine": "korean", + "ingredients": [ + "daikon", + "carrots", + "green onions", + "ginger", + "chili flakes", + "sea salt", + "napa cabbage", + "garlic" + ] + }, + { + "id": 37518, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "whipping cream", + "pinenuts", + "capellini", + "grated parmesan cheese", + "fresh basil leaves" + ] + }, + { + "id": 21723, + "cuisine": "greek", + "ingredients": [ + "ground cloves", + "unsalted butter", + "all-purpose flour", + "honey", + "baking powder", + "orange juice", + "water", + "egg yolks", + "walnuts", + "sugar", + "baking soda", + "cinnamon" + ] + }, + { + "id": 44985, + "cuisine": "italian", + "ingredients": [ + "eggs", + "chopped green bell pepper", + "butter", + "white sugar", + "chopped tomatoes", + "lean ground beef", + "shredded mozzarella cheese", + "boiling water", + "tomato paste", + "garlic powder", + "vegetable oil", + "onions", + "dried oregano", + "cottage cheese", + "grated parmesan cheese", + "salt", + "spaghetti" + ] + }, + { + "id": 23693, + "cuisine": "filipino", + "ingredients": [ + "chicken broth", + "water", + "garlic", + "fish sauce", + "green onions", + "dried shiitake mushrooms", + "bean threads", + "pepper", + "achiote powder", + "onions", + "chicken legs", + "olive oil", + "salt" + ] + }, + { + "id": 10258, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "vegetable oil", + "garlic", + "kosher salt", + "jalapeno chilies", + "chile de arbol", + "cinnamon sticks", + "granulated sugar", + "ginger", + "yellow onion", + "coriander seeds", + "shredded cabbage", + "cilantro sprigs" + ] + }, + { + "id": 49083, + "cuisine": "mexican", + "ingredients": [ + "salt", + "ground cumin", + "water", + "steak", + "pepper", + "salsa", + "green bell pepper, slice", + "onions" + ] + }, + { + "id": 36828, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "vegetable oil", + "shredded cheddar cheese", + "frozen corn", + "black beans", + "garlic", + "tomatoes", + "flour tortillas", + "onions" + ] + }, + { + "id": 5284, + "cuisine": "southern_us", + "ingredients": [ + "all-purpose flour", + "brown sugar", + "fresh raspberries", + "rolled oats", + "white sugar", + "butter" + ] + }, + { + "id": 14388, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "unsalted butter", + "corn starch", + "milk", + "heavy cream", + "unsweetened cocoa powder", + "sugar", + "cold cut", + "chocolate wafer cookies", + "pure vanilla extract", + "large egg yolks", + "salt" + ] + }, + { + "id": 25423, + "cuisine": "japanese", + "ingredients": [ + "sake", + "gari", + "asparagus", + "vegetable oil", + "ginger", + "fresh lemon juice", + "sugar", + "water", + "mirin", + "wasabi powder", + "salt", + "center-cut salmon fillet", + "avocado", + "sushi rice", + "short-grain rice", + "sesame oil", + "ponzu", + "english cucumber", + "soy sauce", + "sesame seeds", + "green onions", + "lemon", + "rice vinegar" + ] + }, + { + "id": 9329, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "lime juice", + "cayenne", + "firm tofu", + "fresh turmeric", + "granulated garlic", + "fresh ginger", + "garlic", + "coconut milk", + "fennel seeds", + "brown sugar", + "olive oil", + "cracked black pepper", + "lentils", + "tomatoes", + "kosher salt", + "quinoa", + "salt", + "chopped cilantro" + ] + }, + { + "id": 37537, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking powder", + "salt", + "frozen peaches", + "cinnamon", + "orange juice", + "powdered sugar", + "vegetable oil", + "all-purpose flour", + "granulated sugar", + "vanilla extract", + "chopped pecans" + ] + }, + { + "id": 1101, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "rice vinegar", + "hoisin sauce", + "roasted unsalted cashews", + "garlic cloves", + "ground black pepper", + "vegetable oil", + "scallions", + "soy sauce", + "boneless skinless chicken breasts", + "salt" + ] + }, + { + "id": 18223, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "ground black pepper", + "lemon rind", + "chicken stock", + "tumeric", + "peas", + "onions", + "ground ginger", + "artichoke hearts", + "salt", + "ground cumin", + "saffron threads", + "chicken legs", + "paprika", + "ground coriander" + ] + }, + { + "id": 30585, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "butter", + "whole milk", + "vanilla extract", + "mochiko", + "sweetened coconut flakes", + "baking powder", + "white sugar" + ] + }, + { + "id": 19982, + "cuisine": "cajun_creole", + "ingredients": [ + "pie crust", + "mayonaise", + "large eggs", + "salt", + "garlic cloves", + "smoked ham hocks", + "creole mustard", + "green bell pepper", + "olive oil", + "red beans", + "yellow onion", + "cooked white rice", + "chicken stock", + "black pepper", + "bay leaves", + "hot sauce", + "ham", + "celery ribs", + "andouille sausage", + "fresh thyme", + "paprika", + "scallions", + "fresh parsley" + ] + }, + { + "id": 9374, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "ground pepper", + "mixed greens", + "tomatoes", + "olive oil", + "salt", + "minced garlic", + "cannellini beans", + "sage", + "rosemary", + "balsamic vinegar" + ] + }, + { + "id": 27767, + "cuisine": "french", + "ingredients": [ + "black pepper", + "baked ham", + "salt", + "parsley sprigs", + "unsalted butter", + "lemon wedge", + "olive oil", + "veal cutlets", + "all-purpose flour", + "plain dry bread crumb", + "large eggs", + "gruyere cheese" + ] + }, + { + "id": 22511, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "chicken breasts", + "fresh parsley", + "mayonaise", + "freshly ground pepper", + "green onions", + "fresh lemon juice", + "fresh dill", + "salt" + ] + }, + { + "id": 25032, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "garlic", + "ground beef", + "fish sauce", + "thai basil", + "oyster sauce", + "brown sugar", + "thai chile", + "ground white pepper", + "eggs", + "spring water", + "purple onion" + ] + }, + { + "id": 15501, + "cuisine": "southern_us", + "ingredients": [ + "water", + "fresh chives", + "chicken broth", + "soft fresh goat cheese", + "quickcooking grits" + ] + }, + { + "id": 24071, + "cuisine": "japanese", + "ingredients": [ + "honey", + "hot water", + "2% reduced-fat milk", + "green tea powder" + ] + }, + { + "id": 32872, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "purple onion", + "fat", + "ground ginger", + "pork loin", + "ground coriander", + "dried apricot", + "salt", + "ground cumin", + "tumeric", + "lemon", + "pitted prunes" + ] + }, + { + "id": 43076, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "all-purpose flour", + "carrots", + "celery ribs", + "dried basil", + "sauce", + "pepper", + "frozen corn", + "biscuits", + "boneless skinless chicken breasts", + "chopped onion" + ] + }, + { + "id": 501, + "cuisine": "irish", + "ingredients": [ + "fresh chives", + "unsalted butter", + "toasted wheat germ", + "caraway seeds", + "whole wheat flour", + "buttermilk", + "smoked salmon", + "baking soda", + "salt", + "rolled oats", + "all purpose unbleached flour" + ] + }, + { + "id": 34012, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "cilantro sprigs", + "fresh lemon juice", + "mango", + "water", + "sweet paprika", + "chopped cilantro fresh", + "ground cumin", + "pinenuts", + "olive oil", + "garlic cloves", + "plain whole-milk yogurt", + "jasmine rice", + "cayenne pepper", + "fresh parsley", + "chicken" + ] + }, + { + "id": 9815, + "cuisine": "mexican", + "ingredients": [ + "water", + "ground sirloin", + "chipotles in adobo", + "black pepper", + "flour tortillas", + "chopped onion", + "tomato sauce", + "frozen whole kernel corn", + "salt", + "black beans", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 37544, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "milk", + "vanilla extract", + "cocoa", + "fresh cranberries", + "all-purpose flour", + "sugar", + "baking powder", + "salt", + "eggs", + "water", + "butter", + "fresh mint" + ] + }, + { + "id": 33815, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "littleneck clams", + "thyme", + "unsalted butter", + "shallots", + "garlic cloves", + "bread crumbs", + "dry white wine", + "freshly ground pepper", + "mussels", + "bay leaves", + "salt", + "medium shrimp" + ] + }, + { + "id": 4229, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "thai basil", + "dark brown sugar", + "corn starch", + "canola", + "boneless skinless chicken", + "chinese five-spice powder", + "sake", + "sesame oil", + "peanut oil", + "ground white pepper", + "large egg yolks", + "brown rice flour", + "garlic cloves" + ] + }, + { + "id": 4469, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "olive oil", + "shrimp", + "minced garlic", + "butter", + "dried basil", + "linguine", + "scallops", + "grated parmesan cheese" + ] + }, + { + "id": 9898, + "cuisine": "mexican", + "ingredients": [ + "vanilla ice cream", + "graham cracker crumbs", + "bartlett pears", + "lemon zest", + "corn starch", + "ground cinnamon", + "flour tortillas", + "chopped pecans", + "honey", + "vegetable oil", + "white sugar" + ] + }, + { + "id": 28109, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "salad", + "rotisserie chicken" + ] + }, + { + "id": 32587, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "sweet potatoes", + "ground allspice", + "ground cloves", + "large eggs", + "vanilla extract", + "ground cinnamon", + "granulated sugar", + "baking powder", + "sweetened condensed milk", + "pie dough", + "fine salt", + "all-purpose flour" + ] + }, + { + "id": 5216, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "coarse salt", + "garlic", + "shredded Monterey Jack cheese", + "lime", + "poblano", + "corn tortillas", + "cooked chicken", + "diced tomatoes", + "chopped cilantro fresh", + "chicken broth", + "grapeseed oil", + "chopped onion" + ] + }, + { + "id": 34849, + "cuisine": "russian", + "ingredients": [ + "warm water", + "large eggs", + "buttermilk", + "fresh parsley", + "ground black pepper", + "butter", + "garlic cloves", + "chicken thighs", + "ketchup", + "cooking oil", + "salt", + "onions", + "vinegar", + "all purpose unbleached flour", + "sour cream" + ] + }, + { + "id": 28602, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "vegetable oil", + "short-grain rice", + "kimchi", + "sesame seeds", + "scallions", + "eggs", + "sesame oil", + "chicken" + ] + }, + { + "id": 46706, + "cuisine": "cajun_creole", + "ingredients": [ + "black peppercorns", + "parsley", + "rib", + "chicken broth", + "cayenne", + "all-purpose flour", + "green bell pepper", + "vegetable oil", + "onions", + "scallion greens", + "short-grain rice", + "giblet" + ] + }, + { + "id": 8398, + "cuisine": "mexican", + "ingredients": [ + "pasta", + "taco seasoning mix", + "diced tomatoes", + "black beans", + "sliced black olives", + "salsa", + "green bell pepper", + "olive oil", + "salt", + "pepper", + "sweet corn kernels", + "onions" + ] + }, + { + "id": 19912, + "cuisine": "vietnamese", + "ingredients": [ + "lime", + "mint leaves", + "hot sauce", + "onions", + "fish sauce", + "lemon grass", + "sirloin steak", + "cinnamon sticks", + "black peppercorns", + "fresh ginger root", + "beef stock", + "green chilies", + "fresh basil leaves", + "fresh coriander", + "hoisin sauce", + "dried rice noodles", + "beansprouts" + ] + }, + { + "id": 21013, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "sunflower oil", + "coconut milk", + "garam masala", + "chickpeas", + "onions", + "eggplant", + "curry", + "chillies", + "tomatoes", + "brown mustard seeds", + "ground coriander" + ] + }, + { + "id": 31070, + "cuisine": "japanese", + "ingredients": [ + "salad greens", + "vegetable oil", + "garlic", + "ground black pepper", + "grapeseed oil", + "lemon juice", + "shiitake", + "lemon dressing", + "garlic chili sauce", + "soy sauce", + "lobster", + "sea salt" + ] + }, + { + "id": 36091, + "cuisine": "greek", + "ingredients": [ + "fresh spinach", + "nonfat yogurt", + "long-grain rice", + "olive oil", + "ground red pepper", + "feta cheese crumbles", + "water", + "lettuce leaves", + "lemon juice", + "tomatoes", + "garlic powder", + "fresh oregano", + "sliced green onions" + ] + }, + { + "id": 18645, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "finely chopped onion", + "garlic cloves", + "ground turmeric", + "fat free less sodium chicken broth", + "vegetable oil", + "mustard seeds", + "coriander seeds", + "salt", + "chopped cilantro fresh", + "black peppercorns", + "peeled fresh ginger", + "fresh lemon juice", + "large shrimp" + ] + }, + { + "id": 29258, + "cuisine": "italian", + "ingredients": [ + "grated lemon zest", + "sugar", + "fresh lemon juice", + "water", + "blackberries", + "rosewater" + ] + }, + { + "id": 12947, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "chunky salsa", + "chopped onion", + "white rice", + "oil" + ] + }, + { + "id": 10506, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "shallots", + "pork chops", + "cooked barley", + "fish sauce", + "large eggs", + "scallions", + "chile paste", + "vegetable oil" + ] + }, + { + "id": 37814, + "cuisine": "indian", + "ingredients": [ + "sugar", + "dates", + "cardamom", + "clove", + "fresh ginger", + "salt", + "red chili peppers", + "raisins", + "ground cinnamon", + "vinegar", + "blanched almonds" + ] + }, + { + "id": 43461, + "cuisine": "japanese", + "ingredients": [ + "vegetable oil", + "white sugar", + "sushi rice", + "rice vinegar", + "eggs", + "salt", + "black sesame seeds", + "flat leaf parsley" + ] + }, + { + "id": 10534, + "cuisine": "mexican", + "ingredients": [ + "salt", + "mexican cooking sauce", + "jumbo pasta shells", + "Mexican cheese blend", + "ground beef", + "diced tomatoes", + "chopped cilantro fresh" + ] + }, + { + "id": 8549, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken skinless thigh", + "dry sherry", + "rice vinegar", + "corn starch", + "red chili peppers", + "baking powder", + "garlic", + "peanut oil", + "sugar", + "flour", + "ginger", + "low sodium chicken stock", + "soy sauce", + "sesame oil", + "salt", + "scallions" + ] + }, + { + "id": 38739, + "cuisine": "mexican", + "ingredients": [ + "brown rice", + "corn kernel whole", + "water", + "cheese", + "black beans", + "diced tomatoes", + "flour tortillas", + "pinto beans" + ] + }, + { + "id": 2420, + "cuisine": "southern_us", + "ingredients": [ + "mint sprigs", + "lemonade", + "fresh mint", + "crushed ice", + "water", + "white sugar" + ] + }, + { + "id": 5001, + "cuisine": "french", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "whole milk", + "bittersweet chocolate", + "unflavored gelatin", + "dried apricot", + "fresh lemon juice", + "large egg yolks", + "heavy cream", + "apricots" + ] + }, + { + "id": 35587, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "sesame oil", + "white mushrooms", + "sugar", + "arrowroot", + "rice vinegar", + "chopped cilantro", + "chicken broth", + "bell pepper", + "garlic", + "baby corn", + "soy sauce", + "chicken breasts", + "peanut oil", + "onions" + ] + }, + { + "id": 34785, + "cuisine": "mexican", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "refried beans", + "salsa", + "vegetable oil cooking spray" + ] + }, + { + "id": 48113, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "pita wedges", + "cucumber", + "plain yogurt", + "garlic cloves" + ] + }, + { + "id": 23255, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "cottage cheese", + "lean ground meat", + "crushed red pepper flakes", + "grated nutmeg", + "dried oregano", + "frozen chopped spinach", + "brown sugar", + "dried basil", + "grated parmesan cheese", + "pasta shells", + "shredded mozzarella cheese", + "fresh basil", + "pepper", + "large eggs", + "garlic", + "sauce", + "seasoning", + "pasta sauce", + "olive oil", + "meat", + "salt", + "onions" + ] + }, + { + "id": 15136, + "cuisine": "thai", + "ingredients": [ + "sugar", + "canned coconut milk", + "salt", + "pearl tapioca", + "corn kernels", + "corn starch", + "strawberries" + ] + }, + { + "id": 36823, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "extra-virgin olive oil", + "pancetta" + ] + }, + { + "id": 10876, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic", + "ground black pepper", + "onions", + "water", + "salt", + "hot pepper sauce", + "chile sauce" + ] + }, + { + "id": 32239, + "cuisine": "indian", + "ingredients": [ + "milk", + "ginger", + "green cardamom", + "pepper", + "flour", + "cilantro leaves", + "cumin seed", + "water", + "seeds", + "lotus seeds", + "cashew nuts", + "pistachios", + "salt", + "green chilies" + ] + }, + { + "id": 19816, + "cuisine": "indian", + "ingredients": [ + "water", + "fenugreek seeds", + "ground cumin", + "tomatoes", + "black cumin seeds", + "mustard seeds", + "fennel seeds", + "vegetable oil", + "cumin seed", + "whitefish fillets", + "salt", + "ground turmeric" + ] + }, + { + "id": 251, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "mayonaise", + "garlic chili sauce" + ] + }, + { + "id": 42387, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "chopped fresh mint", + "apple juice", + "fresh lime juice", + "mint sprigs" + ] + }, + { + "id": 28112, + "cuisine": "italian", + "ingredients": [ + "bosc pears", + "fresh lemon juice", + "pinenuts", + "pecorino romano cheese", + "greens", + "prosciutto", + "extra-virgin olive oil", + "aged balsamic vinegar", + "dried tart cherries", + "seedless red grapes" + ] + }, + { + "id": 29415, + "cuisine": "italian", + "ingredients": [ + "fontina", + "shallots", + "freshly ground pepper", + "chicken stock", + "basil leaves", + "extra-virgin olive oil", + "prosciutto", + "balsamic vinegar", + "grape tomatoes", + "boneless skinless chicken breasts", + "salt" + ] + }, + { + "id": 5357, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "russet potatoes", + "kosher salt", + "black pepper", + "yellow onion", + "fresh rosemary", + "olive oil" + ] + }, + { + "id": 31585, + "cuisine": "french", + "ingredients": [ + "lower sodium chicken broth", + "lamb sausage", + "cooking spray", + "diced tomatoes", + "sausages", + "minced garlic", + "unsalted butter", + "cannellini beans", + "salt", + "thyme sprigs", + "clove", + "olive oil", + "finely chopped onion", + "dry white wine", + "cognac", + "pork sausages", + "baguette", + "ground black pepper", + "bay leaves", + "chopped celery", + "carrots" + ] + }, + { + "id": 27780, + "cuisine": "southern_us", + "ingredients": [ + "chicken legs", + "garlic powder", + "kosher salt", + "summer savory", + "brown sugar", + "all-purpose flour", + "water", + "chicken thighs" + ] + }, + { + "id": 38970, + "cuisine": "italian", + "ingredients": [ + "tallow", + "ground beef", + "paprika", + "anise seed", + "fennel seeds", + "salt" + ] + }, + { + "id": 20312, + "cuisine": "japanese", + "ingredients": [ + "dark soy sauce", + "fresh ginger", + "chopped garlic", + "soy sauce", + "sweet rice wine", + "brown sugar", + "agave nectar", + "water", + "white sugar" + ] + }, + { + "id": 19784, + "cuisine": "greek", + "ingredients": [ + "fresh rosemary", + "cooking spray", + "tzatziki", + "ground turkey breast", + "fresh oregano", + "pitas", + "salt", + "garlic cloves", + "feta cheese", + "grated lemon zest", + "ground lamb" + ] + }, + { + "id": 11107, + "cuisine": "southern_us", + "ingredients": [ + "cornbread", + "unsweetened almond milk", + "chop fine pecan", + "coarse sea salt", + "cumin seed", + "dukkah", + "coriander seeds", + "baking powder", + "fine sea salt", + "grated orange", + "coconut oil", + "baking soda", + "apple cider vinegar", + "flaxseed", + "yellow corn meal", + "water", + "black sesame seeds", + "all purpose unbleached flour", + "cashew nuts" + ] + }, + { + "id": 10061, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "diced tomatoes", + "chopped onion", + "canola oil", + "ground red pepper", + "chopped celery", + "thyme sprigs", + "chopped green bell pepper", + "smoked sausage", + "garlic cloves", + "lower sodium chicken broth", + "chicken breasts", + "salt", + "long grain white rice" + ] + }, + { + "id": 29470, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "kosher salt", + "buttermilk", + "butter", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 4704, + "cuisine": "italian", + "ingredients": [ + "peeled shrimp", + "olive oil", + "hot sauce", + "minced garlic", + "salt", + "grated romano cheese", + "fresh asparagus" + ] + }, + { + "id": 8819, + "cuisine": "spanish", + "ingredients": [ + "salmon fillets", + "sweet potatoes", + "onions", + "milk", + "freshly ground pepper", + "kosher salt", + "swiss cheese", + "eggs", + "olive oil", + "tarragon leaves" + ] + }, + { + "id": 19018, + "cuisine": "japanese", + "ingredients": [ + "tofu", + "mirin", + "scallions", + "minced garlic", + "shoyu", + "corn starch", + "chicken stock", + "sesame oil", + "oyster sauce", + "minced ginger", + "hot bean paste" + ] + }, + { + "id": 11283, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "penne pasta", + "tomatoes", + "garlic", + "fresh asparagus", + "pepper", + "salt", + "heavy cream", + "fresh mushrooms" + ] + }, + { + "id": 10460, + "cuisine": "french", + "ingredients": [ + "milk", + "green onions", + "freshly ground pepper", + "half & half", + "vegetable broth", + "artichok heart marin", + "baking potatoes", + "frozen artichoke hearts", + "chopped fresh chives", + "salt" + ] + }, + { + "id": 663, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "butter", + "veal", + "all-purpose flour", + "beef", + "salt", + "mushrooms", + "fresh parsley" + ] + }, + { + "id": 17541, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "meat", + "corn tortillas" + ] + }, + { + "id": 17735, + "cuisine": "chinese", + "ingredients": [ + "pandanus leaf", + "sugar", + "potato flour", + "lotus seeds", + "water" + ] + }, + { + "id": 31609, + "cuisine": "vietnamese", + "ingredients": [ + "sandwich rolls", + "jicama", + "seasoned rice wine vinegar", + "fresh cilantro", + "purple onion", + "carrots", + "pepper", + "deli ham", + "mixed greens", + "chili paste", + "salt", + "cucumber" + ] + }, + { + "id": 32439, + "cuisine": "greek", + "ingredients": [ + "lemon", + "plain yogurt", + "garlic cloves", + "fennel bulb", + "fennel seeds", + "salt" + ] + }, + { + "id": 12689, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "green onions", + "chopped celery", + "chicken stock", + "flour", + "vegetable oil", + "chopped parsley", + "boneless chicken breast halves", + "Tabasco Pepper Sauce", + "green pepper", + "seasoning", + "bay leaves", + "large garlic cloves", + "onions" + ] + }, + { + "id": 15576, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "butter", + "guacamole", + "purple onion", + "flour tortillas", + "all purpose seasoning", + "flank steak", + "red bell pepper" + ] + }, + { + "id": 34864, + "cuisine": "cajun_creole", + "ingredients": [ + "mayonaise", + "cream of shrimp soup", + "catfish fillets", + "peeled shrimp", + "sliced green onions", + "butter", + "fresh parsley", + "seasoning", + "fresh mushrooms" + ] + }, + { + "id": 33752, + "cuisine": "jamaican", + "ingredients": [ + "corn", + "corn starch", + "nutmeg", + "vanilla", + "coconut milk", + "evaporated milk", + "cinnamon sticks", + "water", + "salt", + "sweetened condensed milk" + ] + }, + { + "id": 3595, + "cuisine": "italian", + "ingredients": [ + "Kahlua Liqueur", + "pound cake", + "unsweetened cocoa powder", + "water", + "whipped topping", + "sugar", + "cream cheese", + "instant espresso powder", + "fat" + ] + }, + { + "id": 28226, + "cuisine": "japanese", + "ingredients": [ + "canned black beans", + "salt", + "coconut milk", + "vegetable oil", + "scallions", + "chopped cilantro", + "A Taste of Thai Rice Noodles", + "yellow onion", + "thai green curry paste", + "sugar", + "mandarin oranges", + "beansprouts", + "chopped garlic" + ] + }, + { + "id": 32812, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "Old El Paso™ chopped green chiles", + "chopped onion", + "sliced green onions", + "olive oil", + "cilantro", + "red bell pepper", + "black beans", + "diced tomatoes", + "taco seasoning", + "avocado", + "lime slices", + "garlic", + "ground beef" + ] + }, + { + "id": 16435, + "cuisine": "indian", + "ingredients": [ + "chiles", + "peeled fresh ginger", + "salt", + "plum tomatoes", + "curry powder", + "low-sodium fat-free chicken broth", + "okra", + "reduced fat coconut milk", + "sea scallops", + "large garlic cloves", + "onions", + "black pepper", + "vegetable oil", + "cilantro leaves" + ] + }, + { + "id": 10450, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "salsa", + "shredded cheddar cheese", + "cilantro", + "frozen corn kernels", + "refried beans", + "garlic", + "sour cream", + "pico de gallo", + "vegetable oil", + "pizza doughs" + ] + }, + { + "id": 39494, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "ginger", + "garlic cloves", + "fresh cilantro", + "vegetable oil", + "salt", + "lemon juice", + "tumeric", + "onion powder", + "vegetable broth", + "lentils", + "garlic powder", + "diced tomatoes", + "cumin seed", + "chillies" + ] + }, + { + "id": 39646, + "cuisine": "french", + "ingredients": [ + "fresh ginger root", + "vanilla extract", + "eggs", + "unsalted butter", + "cocoa powder", + "bananas", + "salt", + "honey", + "egg whites", + "white sugar" + ] + }, + { + "id": 5025, + "cuisine": "russian", + "ingredients": [ + "chopped fresh chives", + "dry bread crumbs", + "pepper", + "butter", + "fresh parsley", + "eggs", + "vegetable oil", + "lemon juice", + "water", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 3141, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "pumpkin", + "salt", + "ground ginger", + "ground cloves", + "butter", + "sugar", + "refrigerated piecrusts", + "sauce", + "ground cinnamon", + "half & half", + "vanilla extract" + ] + }, + { + "id": 23584, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "jalapeno chilies", + "cilantro", + "sour cream", + "pico de gallo", + "lime", + "green onions", + "garlic", + "chicken", + "tomatoes", + "fresh cilantro", + "guacamole", + "cheese", + "onions", + "sugar", + "flour tortillas", + "red wine vinegar", + "salt" + ] + }, + { + "id": 19327, + "cuisine": "cajun_creole", + "ingredients": [ + "onion powder", + "cayenne pepper", + "dried thyme", + "crushed red pepper", + "black pepper", + "paprika", + "dried oregano", + "garlic powder", + "salt" + ] + }, + { + "id": 15932, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "low sodium chicken broth", + "pinto beans", + "jalapeno chilies", + "yellow onion", + "garlic", + "ground cumin" + ] + }, + { + "id": 40175, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "low sodium chicken broth", + "garlic", + "thin spaghetti", + "ground black pepper", + "green onions", + "heavy whipping cream", + "parmesan cheese", + "half & half", + "salt", + "white button mushrooms", + "grated parmesan cheese", + "bacon", + "flat leaf parsley" + ] + }, + { + "id": 5388, + "cuisine": "italian", + "ingredients": [ + "cottage cheese", + "whole wheat lasagna noodles", + "shredded mozzarella cheese", + "eggs", + "parmesan cheese", + "tomato basil sauce", + "garlic powder", + "garlic", + "salt and ground black pepper", + "lean ground beef", + "dried oregano" + ] + }, + { + "id": 48414, + "cuisine": "french", + "ingredients": [ + "parsnips", + "olive oil", + "white wine vinegar", + "freshly ground pepper", + "pie dough", + "yukon gold potatoes", + "all-purpose flour", + "fresh rosemary", + "kosher salt", + "fresh chevre", + "chopped fresh sage", + "sugar", + "sweet potatoes", + "purple onion", + "carrots" + ] + }, + { + "id": 16994, + "cuisine": "japanese", + "ingredients": [ + "butter", + "carrots", + "eggs", + "white rice", + "green peas", + "onions", + "soy sauce", + "scallions" + ] + }, + { + "id": 31749, + "cuisine": "irish", + "ingredients": [ + "butter", + "pasta sauce", + "bologna", + "onions", + "potatoes" + ] + }, + { + "id": 11662, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "strawberries", + "cinnamon", + "self rising flour", + "sugar", + "margarine" + ] + }, + { + "id": 176, + "cuisine": "japanese", + "ingredients": [ + "sesame oil", + "seaweed", + "soy sauce", + "rice vinegar", + "sugar", + "salt", + "sesame seeds", + "persian cucumber" + ] + }, + { + "id": 48374, + "cuisine": "italian", + "ingredients": [ + "shallots", + "extra-virgin olive oil", + "plum tomatoes", + "crushed red pepper flakes", + "salt", + "large garlic cloves", + "linguine", + "dry white wine", + "littleneck clams", + "flat leaf parsley" + ] + }, + { + "id": 29399, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "salsa", + "pepper", + "salt", + "chopped cilantro fresh", + "garlic", + "onions", + "lime", + "frozen corn", + "cumin" + ] + }, + { + "id": 43469, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "whipping cream", + "chopped onion", + "olive oil", + "crushed red pepper", + "crushed tomatoes", + "garlic", + "fresh basil", + "pecorino romano cheese", + "bow-tie pasta" + ] + }, + { + "id": 5566, + "cuisine": "russian", + "ingredients": [ + "chopped celery", + "freshly ground pepper", + "sour cream", + "homemade vegetable stock", + "dill", + "lemon juice", + "dried mushrooms", + "sugar", + "all-purpose flour", + "garlic cloves", + "flat leaf parsley", + "coarse salt", + "beets", + "hot water" + ] + }, + { + "id": 48958, + "cuisine": "french", + "ingredients": [ + "dried basil", + "garlic cloves", + "seasoned bread crumbs", + "grated parmesan cheese", + "plum tomatoes", + "olive oil", + "fresh parsley", + "pepper", + "salt" + ] + }, + { + "id": 35423, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "dry sherry", + "hot water", + "sugar", + "vegetable oil", + "oyster sauce", + "onions", + "dried black mushrooms", + "chicken breast halves", + "garlic cloves", + "fermented black beans", + "water", + "napa cabbage", + "corn starch" + ] + }, + { + "id": 46403, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "cucumber", + "eggs", + "salt", + "milk", + "all-purpose flour", + "vegetable oil" + ] + }, + { + "id": 15331, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "chili powder", + "onions", + "curry powder", + "flour", + "garlic cloves", + "tomato paste", + "ground black pepper", + "salt", + "olive oil", + "chicken breasts", + "coconut milk" + ] + }, + { + "id": 28082, + "cuisine": "cajun_creole", + "ingredients": [ + "granulated garlic", + "dried thyme", + "green onions", + "dry bread crumbs", + "sweet paprika", + "ground cayenne pepper", + "chopped garlic", + "mirlitons", + "kosher salt", + "large eggs", + "cracked black pepper", + "cayenne pepper", + "ground white pepper", + "medium shrimp", + "green bell pepper", + "dried basil", + "stuffing", + "salt", + "creole seasoning", + "celery seed", + "dried oregano", + "celery ribs", + "table salt", + "unsalted butter", + "onion powder", + "yellow onion", + "freshly ground pepper", + "flat leaf parsley" + ] + }, + { + "id": 48210, + "cuisine": "southern_us", + "ingredients": [ + "apple cider vinegar", + "black pepper", + "crushed red pepper", + "ketchup", + "worcestershire sauce", + "pork tenderloin", + "hot sauce" + ] + }, + { + "id": 41803, + "cuisine": "british", + "ingredients": [ + "brown sugar", + "green tomatoes", + "ground turmeric", + "cauliflower", + "curry powder", + "mustard powder", + "ground ginger", + "ground nutmeg", + "onions", + "white vinegar", + "ground cloves", + "all-purpose flour" + ] + }, + { + "id": 9020, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "all purpose unbleached flour", + "grated lemon peel", + "baking powder", + "apricot jam", + "unsalted butter", + "Amaretti Cookies" + ] + }, + { + "id": 14503, + "cuisine": "mexican", + "ingredients": [ + "buffalo sauce", + "blue cheese dressing", + "corn tortillas", + "low-fat cream cheese", + "boneless skinless chicken breasts", + "canola oil" + ] + }, + { + "id": 1197, + "cuisine": "southern_us", + "ingredients": [ + "large egg whites", + "fresh lime juice", + "ice cubes", + "orange flower water", + "seltzer", + "half & half", + "gin", + "fresh lemon juice" + ] + }, + { + "id": 24657, + "cuisine": "italian", + "ingredients": [ + "sea salt", + "olive oil", + "cherry tomatoes", + "kalamata", + "eggplant" + ] + }, + { + "id": 32159, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "cognac", + "black peppercorns", + "vegetable oil", + "chicken broth", + "shallots", + "lamb rib chops", + "meat bones" + ] + }, + { + "id": 28260, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "dry white wine", + "fresh parsley", + "prosciutto", + "fresh mushrooms", + "fontina cheese", + "all-purpose flour", + "boneless skinless chicken breast halves", + "unsalted butter", + "ground white pepper" + ] + }, + { + "id": 33101, + "cuisine": "italian", + "ingredients": [ + "lobster", + "arborio rice", + "green peas", + "butter", + "lower sodium chicken broth" + ] + }, + { + "id": 13180, + "cuisine": "thai", + "ingredients": [ + "fresh turmeric", + "kosher salt", + "coriander seeds", + "shallots", + "ginger", + "coconut milk", + "fish sauce", + "lemongrass", + "egg noodles", + "vegetable oil", + "garlic cloves", + "chicken legs", + "store bought low sodium chicken stock", + "palm sugar", + "lime wedges", + "brown cardamom", + "lime leaves", + "lime zest", + "chinese mustard", + "chili", + "shrimp paste", + "cilantro", + "sliced shallots" + ] + }, + { + "id": 16719, + "cuisine": "vietnamese", + "ingredients": [ + "pork belly", + "ginger", + "broth", + "cooking oil", + "toasted sesame seeds", + "lemongrass", + "patis", + "holy basil", + "kaffir lime leaves", + "pandanus leaf", + "white sugar" + ] + }, + { + "id": 17503, + "cuisine": "italian", + "ingredients": [ + "water", + "ricotta cheese", + "sugar", + "olive oil", + "heavy whipping cream", + "figs", + "honey", + "salt", + "black pepper", + "egg yolks", + "champagne vinegar" + ] + }, + { + "id": 10083, + "cuisine": "italian", + "ingredients": [ + "pepper", + "shallots", + "olive oil", + "tomatoes", + "vine tomatoes" + ] + }, + { + "id": 12269, + "cuisine": "indian", + "ingredients": [ + "ketchup", + "ground pepper", + "chickpeas", + "curry powder", + "coarse salt", + "cinnamon sticks", + "ground cloves", + "lemon wedge", + "garlic cloves", + "olive oil", + "yellow onion", + "chopped cilantro" + ] + }, + { + "id": 30703, + "cuisine": "indian", + "ingredients": [ + "pita bread", + "peeled fresh ginger", + "grate lime peel", + "chopped cilantro fresh", + "olive oil", + "cracked black pepper", + "chopped fresh mint", + "ground lamb", + "tomatoes", + "zucchini", + "chopped onion", + "Madras curry powder", + "kosher salt", + "green onions", + "poblano chiles", + "plain whole-milk yogurt" + ] + }, + { + "id": 28008, + "cuisine": "mexican", + "ingredients": [ + "milk", + "parsley", + "onions", + "white hominy", + "butter", + "corn kernels", + "tomatillos", + "chopped cilantro fresh", + "fresh marjoram", + "fresh thyme leaves", + "roast red peppers, drain" + ] + }, + { + "id": 2049, + "cuisine": "japanese", + "ingredients": [ + "avocado", + "wasabi powder", + "crab meat", + "rice wine", + "fresh lemon juice", + "soy sauce", + "rice", + "asakusa nori", + "Alaskan king crab legs" + ] + }, + { + "id": 9679, + "cuisine": "french", + "ingredients": [ + "sea scallops", + "clam juice", + "shells", + "bouillon", + "osetra caviar", + "fine sea salt", + "chives", + "heavy cream", + "unsalted butter", + "lemon", + "ground white pepper" + ] + }, + { + "id": 42318, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cheese", + "ground beef", + "tomato sauce", + "medium egg noodles", + "salt", + "olives", + "cream style corn", + "garlic", + "onions", + "pepper", + "chili powder", + "green pepper" + ] + }, + { + "id": 41179, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "grated parmesan cheese", + "garlic", + "olive oil", + "cheese ravioli", + "onions", + "tomato sauce", + "low sodium chicken broth", + "flat leaf parsley", + "whole peeled tomatoes", + "chees fresh mozzarella" + ] + }, + { + "id": 39780, + "cuisine": "french", + "ingredients": [ + "chocolate baking bar", + "instant espresso", + "whipping cream" + ] + }, + { + "id": 31251, + "cuisine": "mexican", + "ingredients": [ + "frozen whole kernel corn", + "red bell pepper", + "jalapeno chilies", + "canola oil", + "salsa", + "Mexican cheese blend", + "corn tortillas" + ] + }, + { + "id": 42573, + "cuisine": "italian", + "ingredients": [ + "rocket leaves", + "prosciutto", + "chopped walnuts", + "sweet onion", + "ground black pepper", + "prebaked pizza crusts", + "sherry vinegar", + "pears", + "olive oil", + "provolone cheese" + ] + }, + { + "id": 46778, + "cuisine": "cajun_creole", + "ingredients": [ + "bread", + "giblet", + "ground cayenne pepper", + "oysters", + "salt", + "cooked white rice", + "pepper", + "chopped celery", + "chopped parsley", + "vegetable oil", + "chopped onion" + ] + }, + { + "id": 36773, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "ground black pepper", + "sage", + "dried thyme", + "loin", + "minced garlic", + "salt", + "olive oil", + "dark brown sugar" + ] + }, + { + "id": 43059, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "white cheddar cheese", + "garlic cloves", + "unsalted butter", + "freshly ground pepper", + "large shrimp", + "extra-virgin olive oil", + "grit quick", + "slab bacon", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 30470, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "lemon juice", + "pasta", + "lemon", + "spaghetti", + "minced garlic", + "links", + "arugula", + "olive oil", + "sausages" + ] + }, + { + "id": 2845, + "cuisine": "indian", + "ingredients": [ + "diced green chilies", + "cilantro leaves", + "ground cumin", + "curry powder", + "ground black pepper", + "couscous", + "garam masala", + "coconut milk", + "olive oil", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 22906, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "roma tomatoes", + "flat leaf parsley", + "oregano", + "water", + "salt", + "onions", + "extra lean ground beef", + "garlic", + "bay leaf", + "tomato paste", + "dried thyme", + "accent", + "spaghetti" + ] + }, + { + "id": 31197, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "salt", + "fresh parsley", + "olive oil", + "okra", + "dried thyme", + "cayenne pepper", + "onions", + "green bell pepper", + "garlic", + "diced tomatoes in juice" + ] + }, + { + "id": 38618, + "cuisine": "indian", + "ingredients": [ + "rice", + "salt", + "coconut", + "water", + "oil" + ] + }, + { + "id": 16665, + "cuisine": "italian", + "ingredients": [ + "ricotta salata", + "extra-virgin olive oil", + "beets", + "soy sauce", + "grapeseed oil", + "salt", + "white sandwich bread", + "whole grain mustard", + "black olives", + "fresh lemon juice", + "shallots", + "white wine vinegar", + "frisee" + ] + }, + { + "id": 19023, + "cuisine": "cajun_creole", + "ingredients": [ + "creole mustard", + "salt", + "olive oil", + "sugar", + "red wine vinegar" + ] + }, + { + "id": 46843, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "chop fine pecan", + "grated nutmeg", + "unsalted butter", + "ice water", + "lemon juice", + "peaches", + "fine salt", + "grated lemon zest", + "light brown sugar", + "granulated sugar", + "all-purpose flour", + "corn starch" + ] + }, + { + "id": 7437, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "baking powder", + "salt", + "pepper", + "baking potatoes", + "beer", + "ground red pepper", + "malt vinegar", + "kosher salt", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 40556, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "cheese", + "enchilada sauce", + "cilantro", + "taco seasoning", + "lean ground beef", + "green chilies", + "green onions", + "garlic", + "onions" + ] + }, + { + "id": 43584, + "cuisine": "moroccan", + "ingredients": [ + "spring roll wrappers", + "olive oil", + "harissa", + "fresh parsley", + "water", + "egg yolks", + "black olives", + "cumin", + "black pepper", + "potatoes", + "paprika", + "onions", + "fresh cilantro", + "egg roll wraps", + "salt", + "canola oil" + ] + }, + { + "id": 14357, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "regular soy sauce", + "pork shoulder", + "dark soy sauce", + "black bean sauce", + "garlic", + "honey", + "sesame oil", + "chinese rice wine", + "hoisin sauce", + "chinese five-spice powder" + ] + }, + { + "id": 41211, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "baguette" + ] + }, + { + "id": 22878, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "flour", + "paprika", + "diced bell pepper", + "water", + "parsley", + "diced celery", + "diced onions", + "crawfish", + "green onions", + "cayenne pepper", + "chicken bouillon", + "garlic powder", + "butter", + "chopped parsley" + ] + }, + { + "id": 21942, + "cuisine": "mexican", + "ingredients": [ + "confectioners sugar", + "pomegranate juice", + "fresh lime juice", + "tequila", + "triple sec", + "ice" + ] + }, + { + "id": 12212, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "cooking oil", + "chicken", + "light soy sauce", + "ginger", + "dark soy sauce", + "Shaoxing wine" + ] + }, + { + "id": 37075, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "refried beans", + "onions", + "romaine lettuce", + "queso fresco", + "tomatoes", + "tortillas", + "skirt steak", + "cream", + "salsa" + ] + }, + { + "id": 13135, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "unsalted butter", + "juice", + "olive oil", + "garlic cloves", + "duck breasts", + "dry red wine", + "onions", + "rosemary", + "rich chicken stock", + "tagliatelle" + ] + }, + { + "id": 98, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "jasmine rice", + "onions", + "soy sauce", + "dashi", + "brown sugar", + "water", + "boneless chicken skinless thigh", + "rice wine" + ] + }, + { + "id": 26410, + "cuisine": "mexican", + "ingredients": [ + "green chilies", + "shredded Monterey Jack cheese", + "sour cream", + "butter" + ] + }, + { + "id": 7749, + "cuisine": "southern_us", + "ingredients": [ + "store bought low sodium chicken broth", + "coffee", + "grit quick", + "kosher salt", + "butter", + "ground black pepper", + "scallions", + "ham steak", + "vegetable oil" + ] + }, + { + "id": 18795, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "marinara sauce", + "garlic cloves", + "pepper", + "salt", + "fresh basil", + "ricotta cheese", + "frozen chopped spinach", + "grated parmesan cheese", + "jumbo pasta shells" + ] + }, + { + "id": 19765, + "cuisine": "mexican", + "ingredients": [ + "vanilla", + "unsalted butter", + "all-purpose flour", + "salt", + "chop fine pecan", + "confectioners sugar" + ] + }, + { + "id": 15613, + "cuisine": "french", + "ingredients": [ + "sugar", + "sour cherries", + "eau de vie" + ] + }, + { + "id": 46310, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "dried bonito flakes", + "konbu", + "water", + "watercress", + "soba noodles", + "enokitake", + "togarashi", + "Japanese soy sauce", + "pea pods", + "scallions" + ] + }, + { + "id": 5708, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "all-purpose flour", + "blackberries", + "ground cinnamon", + "butter", + "corn starch", + "cold water", + "baking powder", + "lemon juice", + "brown sugar", + "salt", + "boiling water" + ] + }, + { + "id": 44264, + "cuisine": "chinese", + "ingredients": [ + "jasmine rice", + "garlic", + "carrots", + "shallots", + "salt", + "cucumber", + "vegetable oil", + "cilantro leaves", + "chicken", + "tomatoes", + "ginger", + "scallions" + ] + }, + { + "id": 45203, + "cuisine": "vietnamese", + "ingredients": [ + "white pepper", + "garlic", + "fish sauce", + "egg whites", + "shrimp", + "cooking oil", + "salt", + "sugar", + "sugar cane" + ] + }, + { + "id": 9024, + "cuisine": "southern_us", + "ingredients": [ + "corn husks", + "heavy cream", + "chiles", + "whole milk", + "maple syrup", + "eggs", + "unsalted butter", + "salt", + "bread crumbs", + "chives", + "freshly ground pepper" + ] + }, + { + "id": 21442, + "cuisine": "vietnamese", + "ingredients": [ + "tomato paste", + "lemongrass", + "boneless beef short ribs", + "thai chile", + "kosher salt", + "thai basil", + "daikon", + "carrots", + "fish sauce", + "fresh ginger", + "beef stock", + "diced yellow onion", + "minced garlic", + "ground black pepper", + "star anise", + "canola oil" + ] + }, + { + "id": 16363, + "cuisine": "korean", + "ingredients": [ + "ground pepper", + "crushed red pepper", + "soy sauce", + "sesame oil", + "onions", + "sugar", + "pork tenderloin", + "garlic cloves", + "olive oil", + "ginger", + "toasted sesame seeds" + ] + }, + { + "id": 43271, + "cuisine": "southern_us", + "ingredients": [ + "whole wheat pastry flour", + "salt", + "carrots", + "canola oil", + "nonfat buttermilk", + "water", + "poultry seasoning", + "onions", + "reduced sodium chicken broth", + "all-purpose flour", + "celery", + "boneless chicken skinless thigh", + "baking soda", + "freshly ground pepper", + "frozen peas" + ] + }, + { + "id": 20192, + "cuisine": "korean", + "ingredients": [ + "fish sauce", + "napa cabbage", + "scallions", + "fresh ginger", + "garlic", + "chili flakes", + "chili powder", + "salt", + "water", + "daikon", + "pears" + ] + }, + { + "id": 17368, + "cuisine": "french", + "ingredients": [ + "sugar", + "baking soda", + "dark crème de cacao", + "cake flour", + "peppermint extract", + "large egg yolks", + "large eggs", + "vanilla extract", + "unsweetened cocoa powder", + "water", + "unsalted butter", + "light corn syrup", + "salt", + "vegetable oil spray", + "semisweet chocolate", + "whipping cream", + "chocolate curls" + ] + }, + { + "id": 37240, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "butter", + "flat leaf parsley", + "gyoza skins", + "crumbled ricotta salata cheese", + "poppy seeds", + "asparagus", + "pecorino romano cheese", + "water", + "ricotta cheese", + "salt" + ] + }, + { + "id": 40272, + "cuisine": "french", + "ingredients": [ + "golden brown sugar", + "vanilla beans", + "fresh raspberries", + "sugar", + "whipping cream", + "raspberry jam", + "large egg yolks" + ] + }, + { + "id": 8507, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "white bread", + "white sugar", + "orange liqueur", + "eggs", + "orange zest" + ] + }, + { + "id": 25845, + "cuisine": "southern_us", + "ingredients": [ + "french bread", + "chicken tenderloin", + "garlic powder", + "butter", + "salt", + "Velveeta", + "cajun seasoning", + "shredded sharp cheddar cheese", + "mixed vegetables", + "diced tomatoes" + ] + }, + { + "id": 37059, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "frozen whole kernel corn", + "salt", + "chopped cilantro fresh", + "lime rind", + "lettuce leaves", + "ripe olives", + "grape tomatoes", + "jalapeno chilies", + "poblano chiles", + "cider vinegar", + "purple onion", + "fresh lime juice" + ] + }, + { + "id": 44342, + "cuisine": "mexican", + "ingredients": [ + "lean ground beef", + "shredded cheese", + "green pepper", + "onions", + "salsa", + "oil", + "egg roll wrappers", + "taco seasoning" + ] + }, + { + "id": 30864, + "cuisine": "jamaican", + "ingredients": [ + "cider vinegar", + "green onions", + "carrots", + "granulated sugar", + "garlic", + "pepper", + "vegetable oil", + "green cabbage", + "dijon mustard", + "salt" + ] + }, + { + "id": 15658, + "cuisine": "thai", + "ingredients": [ + "sea salt", + "coconut milk", + "organic granulated sugar", + "sticky rice", + "mango" + ] + }, + { + "id": 42873, + "cuisine": "indian", + "ingredients": [ + "batter", + "ghee", + "cilantro leaves", + "onions" + ] + }, + { + "id": 37119, + "cuisine": "vietnamese", + "ingredients": [ + "golden brown sugar", + "ground pork", + "garlic cloves", + "sugar", + "shallots", + "thai chile", + "fresh lime juice", + "lemongrass", + "vegetable oil", + "persian cucumber", + "chopped cilantro fresh", + "fish sauce", + "lettuce leaves", + "grated carrot", + "ground white pepper" + ] + }, + { + "id": 33923, + "cuisine": "greek", + "ingredients": [ + "garlic", + "swordfish steaks", + "feta cheese crumbles", + "fresh spinach", + "fresh lemon juice", + "olive oil" + ] + }, + { + "id": 11501, + "cuisine": "cajun_creole", + "ingredients": [ + "satsuma juice", + "whole milk", + "satsumas", + "corn starch", + "large egg yolks", + "large eggs", + "sprinkles", + "cream cheese", + "nutmeg", + "unsalted butter", + "cinnamon", + "salt", + "confectioners sugar", + "sugar", + "granulated sugar", + "heavy cream", + "all-purpose flour" + ] + }, + { + "id": 25159, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "unsalted butter", + "buttermilk", + "chopped walnuts", + "large egg yolks", + "large eggs", + "salt", + "baking soda", + "baking powder", + "all-purpose flour", + "brown sugar", + "granulated sugar", + "heavy cream" + ] + }, + { + "id": 9703, + "cuisine": "greek", + "ingredients": [ + "eggs", + "lemon", + "ground beef", + "pepper", + "salt", + "ground lamb", + "granulated garlic", + "onion flakes", + "dried oregano", + "feta cheese", + "fresh mint" + ] + }, + { + "id": 7588, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "pepper", + "Mexican cheese blend", + "vegetable oil", + "sour cream", + "light brown sugar", + "black beans", + "cherry tomatoes", + "chili powder", + "scallions", + "chopped cilantro fresh", + "tomato sauce", + "lime juice", + "flour tortillas", + "salt", + "onions", + "avocado", + "cider vinegar", + "vegetable oil spray", + "lean ground beef", + "garlic cloves", + "romaine lettuce hearts" + ] + }, + { + "id": 21707, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "Japanese soy sauce", + "shiso", + "silken tofu", + "dried bonito flakes", + "peeled fresh ginger", + "toasted nori" + ] + }, + { + "id": 33594, + "cuisine": "moroccan", + "ingredients": [ + "red lentils", + "fresh cilantro", + "lemon", + "greek yogurt", + "fresh chile", + "ground cinnamon", + "chopped tomatoes", + "salt", + "onions", + "chicken stock", + "olive oil", + "ras el hanout", + "celery", + "ground cumin", + "brown sugar", + "ground black pepper", + "garlic cloves", + "coriander" + ] + }, + { + "id": 33371, + "cuisine": "indian", + "ingredients": [ + "water", + "green chilies", + "garlic paste", + "salt", + "ghee", + "whole wheat flour", + "oil", + "spinach", + "cilantro leaves" + ] + }, + { + "id": 40677, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "margarine", + "buttermilk", + "bread flour", + "vegetable oil", + "white sugar", + "whole wheat flour", + "salt" + ] + }, + { + "id": 37402, + "cuisine": "russian", + "ingredients": [ + "olive oil", + "lean ground beef", + "red bell pepper", + "ground black pepper", + "ground allspice", + "fresh parsley", + "hungarian paprika", + "salt", + "cooked white rice", + "tomato sauce", + "large eggs", + "garlic cloves", + "onions" + ] + }, + { + "id": 16303, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "parmesan cheese", + "basil", + "eggplant", + "ricotta cheese", + "lasagna noodles", + "goat cheese" + ] + }, + { + "id": 4203, + "cuisine": "italian", + "ingredients": [ + "Chianti", + "navel oranges" + ] + }, + { + "id": 354, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "fresh ginger root", + "ground red pepper", + "salt", + "ground turmeric", + "water", + "cilantro stems", + "garlic", + "white sugar", + "tomato purée", + "potatoes", + "vegetable oil", + "onions", + "tomatoes", + "garam masala", + "chile pepper", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 27717, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ground black pepper", + "napa cabbage", + "scallions", + "eggs", + "water", + "sesame oil", + "cilantro leaves", + "kosher salt", + "hoisin sauce", + "red pepper", + "carrots", + "vegetable oil cooking spray", + "fresh ginger", + "wonton wrappers", + "firm tofu" + ] + }, + { + "id": 24823, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "beef", + "onions", + "dried basil", + "stewed tomatoes", + "water", + "lean ground beef", + "dried oregano", + "tomato paste", + "olive oil", + "garlic" + ] + }, + { + "id": 43107, + "cuisine": "indian", + "ingredients": [ + "clove", + "water", + "chile pepper", + "cinnamon sticks", + "garlic paste", + "cooking oil", + "cardamom pods", + "ground turmeric", + "fenugreek leaves", + "garam masala", + "salt", + "onions", + "fresh spinach", + "ground red pepper", + "cumin seed", + "chicken" + ] + }, + { + "id": 12848, + "cuisine": "chinese", + "ingredients": [ + "black peppercorns", + "cinnamon", + "peanut oil", + "eggs", + "light soy sauce", + "orange juice", + "water", + "garlic", + "white sugar", + "dark soy sauce", + "star anise", + "pork spareribs" + ] + }, + { + "id": 16057, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "whole milk", + "onions", + "fontina", + "mascarpone", + "garlic cloves", + "fettucine", + "swiss chard", + "salt", + "black pepper", + "large eggs", + "rib" + ] + }, + { + "id": 17314, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "freshly ground pepper", + "salt", + "olive oil", + "okra" + ] + }, + { + "id": 45422, + "cuisine": "mexican", + "ingredients": [ + "bell pepper", + "diced tomatoes", + "ground beef", + "jalapeno chilies", + "tortilla chips", + "onions", + "cooked rice", + "lime wedges", + "taco seasoning", + "black beans", + "grating cheese", + "sour cream" + ] + }, + { + "id": 44198, + "cuisine": "korean", + "ingredients": [ + "olive oil", + "garlic", + "toasted sesame oil", + "fresh spinach", + "large eggs", + "english cucumber", + "soy sauce", + "red pepper flakes", + "carrots", + "top round steak", + "sesame seeds", + "Gochujang base", + "cooked white rice" + ] + }, + { + "id": 21283, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "vegetable oil", + "catfish fillets", + "hot pepper sauce", + "cayenne pepper", + "kosher salt", + "baking powder", + "white cornmeal", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 9488, + "cuisine": "indian", + "ingredients": [ + "fresh lemon juice", + "whole milk" + ] + }, + { + "id": 23488, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "fat free less sodium chicken broth", + "vegetable oil", + "ground coriander", + "ground cumin", + "slivered almonds", + "golden raisins", + "chopped onion", + "fresh parsley", + "boneless chicken skinless thigh", + "ground red pepper", + "brown lentils", + "basmati rice", + "ground cinnamon", + "water", + "salt", + "garlic cloves" + ] + }, + { + "id": 39157, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "recipe crumbles", + "spaghetti", + "olive oil", + "dry red wine", + "fresh parmesan cheese", + "chopped onion", + "minced garlic", + "baby spinach" + ] + }, + { + "id": 4178, + "cuisine": "italian", + "ingredients": [ + "baby portobello mushrooms", + "olive oil", + "butter", + "arborio rice", + "sweet onion", + "dry white wine", + "pepper", + "low sodium chicken broth", + "garlic cloves", + "fresh spinach", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 21736, + "cuisine": "greek", + "ingredients": [ + "pure vanilla extract", + "unsalted butter", + "all-purpose flour", + "honey", + "baking powder", + "walnuts", + "sugar", + "large eggs", + "sour cherries", + "baking soda", + "coarse salt", + "greek yogurt" + ] + }, + { + "id": 11446, + "cuisine": "irish", + "ingredients": [ + "all-purpose flour", + "butter", + "extra fine granulated sugar", + "lemon" + ] + }, + { + "id": 39326, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "minced garlic", + "cilantro", + "black beans", + "olive oil", + "corn tortillas", + "vidalia onion", + "lime", + "salt", + "tomatoes", + "shredded cheddar cheese", + "jalapeno chilies", + "cumin" + ] + }, + { + "id": 9411, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "celery heart", + "purple onion", + "fresh mint", + "lime juice", + "garlic", + "squid", + "canola oil", + "grape tomatoes", + "peanuts", + "buckwheat noodles", + "cucumber", + "sugar", + "ground pork", + "salt", + "bird chile" + ] + }, + { + "id": 47390, + "cuisine": "italian", + "ingredients": [ + "salt", + "olive oil", + "pepper", + "italian seasoning", + "boneless skinless chicken breasts" + ] + }, + { + "id": 47261, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "salt", + "toasted sesame seeds", + "eggs", + "sesame oil", + "juice", + "plain flour", + "spring onions", + "rice vinegar", + "chili flakes", + "vegetable oil", + "kimchi" + ] + }, + { + "id": 27621, + "cuisine": "mexican", + "ingredients": [ + "catalina dressing", + "doritos", + "taco seasoning reduced sodium", + "95% lean ground beef", + "tomatoes", + "iceberg lettuce", + "fat" + ] + }, + { + "id": 26286, + "cuisine": "indian", + "ingredients": [ + "water", + "black peppercorns", + "black tea leaves", + "clove", + "milk", + "sugar", + "cardamom pods" + ] + }, + { + "id": 14404, + "cuisine": "southern_us", + "ingredients": [ + "low-fat buttermilk", + "butter", + "sugar", + "cooking spray", + "all-purpose flour", + "baking soda", + "baking powder", + "chopped fresh chives", + "salt" + ] + }, + { + "id": 35523, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "fresh lemon juice", + "cilantro leaves", + "salt", + "jalapeno chilies", + "yellow onion" + ] + }, + { + "id": 33380, + "cuisine": "irish", + "ingredients": [ + "water", + "butter", + "adobo sauce", + "reduced fat sharp cheddar cheese", + "cooking spray", + "salt", + "large eggs", + "non-fat sour cream", + "chipotle chile", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 34529, + "cuisine": "indian", + "ingredients": [ + "sugar", + "salted butter", + "garlic", + "milk", + "maida flour", + "wheat flour", + "warm water", + "yoghurt", + "salt", + "mint", + "active dry yeast", + "cilantro" + ] + }, + { + "id": 10808, + "cuisine": "russian", + "ingredients": [ + "semolina flour", + "canola oil", + "eggs", + "white sugar", + "all-purpose flour", + "cottage cheese" + ] + }, + { + "id": 7262, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "fat free milk", + "green peas", + "long-grain rice", + "curry powder", + "green onions", + "all-purpose flour", + "sugar", + "cooking spray", + "salt", + "medium shrimp", + "sweet onion", + "ground red pepper", + "roasted peanuts" + ] + }, + { + "id": 4706, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "hoisin sauce", + "hot sauce", + "ground ginger", + "garlic powder", + "red food coloring", + "baby back ribs", + "honey", + "onion powder", + "chinese five-spice powder", + "brandy", + "chopped fresh chives", + "dark sesame oil" + ] + }, + { + "id": 7538, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "chicken livers", + "kosher salt", + "hot sauce", + "buttermilk", + "canola oil", + "ground black pepper", + "poultry seasoning" + ] + }, + { + "id": 20232, + "cuisine": "indian", + "ingredients": [ + "eggs", + "rice", + "chili powder", + "onions", + "mint leaves", + "oil", + "tomatoes", + "salt", + "ground turmeric" + ] + }, + { + "id": 45764, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "salt", + "sage leaves", + "parmigiano reggiano cheese", + "all-purpose flour", + "large egg yolks", + "whole milk ricotta cheese", + "ground white pepper", + "kosher salt", + "cooked pumpkin", + "grated nutmeg" + ] + }, + { + "id": 6535, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "ground black pepper", + "red wine vinegar", + "garlic cloves", + "capers", + "dry white wine", + "heirloom tomatoes", + "thyme sprigs", + "fennel seeds", + "hand", + "lemon", + "bass fillets", + "olive oil", + "shallots", + "salt" + ] + }, + { + "id": 32914, + "cuisine": "italian", + "ingredients": [ + "rapid rise yeast", + "candy", + "milk", + "all-purpose flour", + "eggs", + "salt", + "white sugar", + "butter", + "anise extract" + ] + }, + { + "id": 9806, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "tortilla chips", + "monterey jack", + "taco seasoning mix", + "sour cream", + "seasoning salt", + "oil", + "green chile", + "diced tomatoes", + "onions" + ] + }, + { + "id": 11378, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "agave nectar", + "sweet rice flour", + "sugar", + "vanilla extract", + "water", + "salt", + "food colouring", + "red beans" + ] + }, + { + "id": 23075, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "olive oil", + "ground pork", + "green bell pepper", + "cajun seasoning", + "chicken livers", + "chicken broth", + "green onions", + "long-grain rice", + "water", + "bacon", + "onions" + ] + }, + { + "id": 6320, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "pecorino romano cheese", + "juice", + "sugar", + "large eggs", + "italian eggplant", + "flat leaf parsley", + "tomatoes", + "water", + "vegetable oil", + "garlic cloves", + "white sandwich bread", + "tomato paste", + "black pepper", + "whole milk", + "salt", + "long grain white rice" + ] + }, + { + "id": 17788, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "butter", + "frozen blueberries", + "baking powder", + "all-purpose flour", + "sugar", + "salt", + "eggs", + "2% reduced-fat milk" + ] + }, + { + "id": 31114, + "cuisine": "cajun_creole", + "ingredients": [ + "crab meat", + "dried basil", + "shrimp heads", + "all-purpose flour", + "okra", + "onions", + "black pepper", + "bay leaves", + "worcestershire sauce", + "cayenne pepper", + "celery", + "green bell pepper", + "dried thyme", + "vegetable oil", + "hot sauce", + "lemon juice", + "dried oregano", + "shrimp stock", + "crab", + "green onions", + "salt", + "creole seasoning", + "fresh parsley" + ] + }, + { + "id": 12940, + "cuisine": "chinese", + "ingredients": [ + "pork", + "chopped garlic", + "sesame oil", + "soy sauce", + "pepper flakes", + "fresh green bean" + ] + }, + { + "id": 19820, + "cuisine": "thai", + "ingredients": [ + "shallots", + "ground pork", + "orange peel", + "fish sauce", + "pineapple", + "shrimp", + "chopped garlic", + "palm sugar", + "cilantro", + "red bell pepper", + "vegetable oil", + "roasted peanuts", + "peppercorns" + ] + }, + { + "id": 47248, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "whipping cream", + "pancetta", + "dry white wine", + "juice", + "basil leaves", + "garlic cloves", + "penne", + "diced tomatoes" + ] + }, + { + "id": 17796, + "cuisine": "russian", + "ingredients": [ + "powdered sugar", + "Jell-O Gelatin", + "pastry", + "agar", + "sugar", + "egg whites", + "water", + "lemon" + ] + }, + { + "id": 39212, + "cuisine": "vietnamese", + "ingredients": [ + "pork", + "lime wedges", + "carrots", + "fish sauce", + "fresh ginger", + "salt", + "fresh mint", + "lettuce", + "black pepper", + "rice vermicelli", + "chili garlic paste", + "sugar", + "thai basil", + "cilantro leaves", + "rice paper" + ] + }, + { + "id": 11099, + "cuisine": "italian", + "ingredients": [ + "hard-boiled egg", + "sprinkles", + "confectioners sugar", + "olive oil", + "extra large eggs", + "cake yeast", + "eggs", + "whole milk", + "all-purpose flour", + "sugar", + "lemon", + "oil" + ] + }, + { + "id": 3351, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "prosciutto", + "cooking spray", + "crushed red pepper", + "part-skim mozzarella cheese", + "ground nutmeg", + "chicken breasts", + "salt", + "water", + "fresh parmesan cheese", + "large eggs", + "part-skim ricotta cheese", + "garlic cloves", + "garlic oil", + "swiss chard", + "ground black pepper", + "chopped fresh thyme", + "all-purpose flour" + ] + }, + { + "id": 24728, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "salt", + "sugar", + "baking powder", + "flour", + "cornmeal", + "baking soda", + "buttermilk" + ] + }, + { + "id": 19303, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "watercress", + "fresh shiitake mushrooms", + "firm tofu", + "peeled fresh ginger", + "rice vinegar", + "sugar", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 13434, + "cuisine": "italian", + "ingredients": [ + "walnut halves", + "fresh cilantro", + "garlic", + "pinenuts", + "fresh thyme", + "fresh lemon juice", + "black pepper", + "olive oil", + "salt", + "fresh basil", + "water", + "flaked" + ] + }, + { + "id": 41046, + "cuisine": "thai", + "ingredients": [ + "green onions", + "cilantro", + "fresh lime juice", + "fresh ginger", + "slaw mix", + "salt", + "jalapeno chilies", + "large garlic cloves", + "dry bread crumbs", + "pita bread", + "vegetable oil", + "peanut sauce", + "large shrimp" + ] + }, + { + "id": 49376, + "cuisine": "indian", + "ingredients": [ + "smoked haddock", + "green onions", + "bay leaf", + "eggs", + "curry powder", + "green peas", + "low-fat plain yogurt", + "milk", + "salt", + "pepper", + "butter", + "basmati rice" + ] + }, + { + "id": 33839, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "yellow onion", + "garlic salt", + "light sour cream", + "diced tomatoes", + "enchilada sauce", + "baby spinach", + "taco seasoning", + "white kidney beans", + "lime", + "shredded pepper jack cheese", + "corn tortillas" + ] + }, + { + "id": 18265, + "cuisine": "indian", + "ingredients": [ + "water", + "saffron threads", + "basmati rice", + "salt", + "clove" + ] + }, + { + "id": 30617, + "cuisine": "thai", + "ingredients": [ + "fresh ginger", + "cashew butter", + "coconut milk", + "sweet chili sauce", + "ground chicken breast", + "red curry paste", + "coconut oil", + "pumpkin purée", + "salt", + "gluten-free tamari", + "lime", + "cilantro", + "shredded zucchini" + ] + }, + { + "id": 34274, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "cheese", + "salad dressing", + "avocado", + "shredded reduced fat cheddar cheese", + "salsa", + "reduced fat ranch dressing", + "crisps", + "cilantro leaves", + "ripe olives", + "grape tomatoes", + "beef", + "pinto beans", + "corn kernel whole" + ] + }, + { + "id": 38114, + "cuisine": "thai", + "ingredients": [ + "sugar", + "lime juice", + "lime wedges", + "salt", + "fish sauce", + "water", + "mushrooms", + "light coconut milk", + "onions", + "chicken breast tenders", + "green curry paste", + "green peas", + "couscous", + "minced garlic", + "minced ginger", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 23824, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "milk", + "butter", + "all-purpose flour", + "ground cloves", + "baking powder", + "raisins", + "chopped pecans", + "pecan halves", + "ground nutmeg", + "lemon", + "hot water", + "ground cinnamon", + "orange", + "flaked coconut", + "cocktail cherries", + "white sugar" + ] + }, + { + "id": 5548, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "lime wedges", + "dark sesame oil", + "onions", + "fish sauce", + "ground red pepper", + "less sodium beef broth", + "beansprouts", + "rice stick noodles", + "peeled fresh ginger", + "thai chile", + "cinnamon sticks", + "pork tenderloin", + "star anise", + "garlic cloves", + "fresh basil leaves" + ] + }, + { + "id": 12275, + "cuisine": "indian", + "ingredients": [ + "milk", + "baking powder", + "melted butter", + "herbs", + "all-purpose flour", + "baking soda", + "salt", + "sugar", + "yoghurt" + ] + }, + { + "id": 49396, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "tortillas", + "salsa", + "corn tortillas", + "olive oil", + "guacamole", + "diced yellow onion", + "monterey jack", + "flat leaf spinach", + "jalapeno chilies", + "rotisserie chicken", + "chopped cilantro", + "water", + "garlic powder", + "chili powder", + "sour cream", + "ground cumin" + ] + }, + { + "id": 31450, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "garlic", + "chili powder", + "jelly", + "brown sugar", + "worcestershire sauce", + "baby back ribs", + "cider vinegar", + "purple onion" + ] + }, + { + "id": 39774, + "cuisine": "irish", + "ingredients": [ + "all-purpose flour", + "butter", + "salt", + "potatoes" + ] + }, + { + "id": 43363, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "hoisin sauce", + "rice vinegar", + "canola oil", + "water", + "boneless skinless chicken breasts", + "garlic cloves", + "fat free less sodium chicken broth", + "broccoli florets", + "salted peanuts", + "fresh ginger", + "crushed red pepper", + "corn starch" + ] + }, + { + "id": 36911, + "cuisine": "chinese", + "ingredients": [ + "chili flakes", + "chicken breast tenders", + "rice vinegar", + "corn starch", + "brown sugar", + "ginger", + "garlic cloves", + "toasted sesame oil", + "dark soy sauce", + "spices", + "peanut oil", + "red bell pepper", + "low sodium soy sauce", + "chinese rice wine", + "purple onion", + "lemon juice", + "snow peas" + ] + }, + { + "id": 9388, + "cuisine": "filipino", + "ingredients": [ + "water", + "salt", + "green beans", + "soy sauce", + "ginger", + "oyster sauce", + "brown sugar", + "ground pork", + "oil", + "onions", + "pepper", + "garlic", + "carrots" + ] + }, + { + "id": 15084, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "onions", + "curry powder", + "carrots", + "peeled deveined shrimp", + "salt", + "serrano chile", + "fresh ginger", + "coconut milk" + ] + }, + { + "id": 33126, + "cuisine": "italian", + "ingredients": [ + "bacon", + "tomato sauce", + "onions", + "pasta", + "diced tomatoes", + "water" + ] + }, + { + "id": 47383, + "cuisine": "italian", + "ingredients": [ + "dry vermouth", + "butter", + "fresh shiitake mushrooms", + "chopped fresh sage", + "mushrooms", + "whipping cream", + "shallots" + ] + }, + { + "id": 30818, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "ground pork", + "oyster sauce", + "bananas", + "garlic", + "spring roll wrappers", + "shallots", + "salt", + "water", + "thai chile" + ] + }, + { + "id": 21334, + "cuisine": "thai", + "ingredients": [ + "roasted cashews", + "Sriracha", + "fresh mint", + "romaine lettuce", + "purple onion", + "medium shrimp", + "sugar", + "carrots", + "chopped cilantro fresh", + "fish sauce", + "linguine", + "fresh lime juice" + ] + }, + { + "id": 12994, + "cuisine": "thai", + "ingredients": [ + "sugar", + "lemongrass", + "basil leaves", + "hot sauce", + "coconut milk", + "canola oil", + "coconut oil", + "lime juice", + "leaves", + "salt", + "long-grain rice", + "onions", + "tomatoes", + "white pepper", + "lime", + "tamari soy sauce", + "ground coriander", + "galangal", + "red chili peppers", + "canola", + "garlic", + "dried chickpeas", + "curry paste", + "ground cumin" + ] + }, + { + "id": 30340, + "cuisine": "italian", + "ingredients": [ + "kahlúa", + "unsweetened cocoa powder", + "part-skim ricotta cheese", + "sugar", + "ladyfingers", + "cream cheese" + ] + }, + { + "id": 39757, + "cuisine": "korean", + "ingredients": [ + "mirin", + "corn starch", + "chopped cilantro fresh", + "fresh ginger", + "flank steak", + "mung bean sprouts", + "canola oil", + "jalapeno chilies", + "toasted sesame oil", + "chopped garlic", + "reduced sodium soy sauce", + "baby spinach", + "toasted sesame seeds" + ] + }, + { + "id": 44641, + "cuisine": "thai", + "ingredients": [ + "lettuce", + "lime juice", + "chili powder", + "purple onion", + "beansprouts", + "fish sauce", + "fresh ginger root", + "lime wedges", + "garlic cloves", + "mint", + "lemongrass", + "sesame oil", + "skinless chicken breasts", + "lime leaves", + "red chili peppers", + "basil leaves", + "vegetable oil", + "cucumber" + ] + }, + { + "id": 27729, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "stewed tomatoes", + "onions", + "seasoning", + "kidney beans", + "taco seasoning", + "water", + "shoepeg corn", + "ground chuck", + "rotelle", + "pinto beans" + ] + }, + { + "id": 5136, + "cuisine": "chinese", + "ingredients": [ + "tofu", + "chopped leaves", + "sesame oil", + "garlic cloves", + "coriander", + "fresh red chili", + "egg noodles", + "ginger", + "beansprouts", + "golden caster sugar", + "lemongrass", + "red pepper", + "carrots", + "soy sauce", + "spring onions", + "rice vinegar", + "lime leaves" + ] + }, + { + "id": 41065, + "cuisine": "italian", + "ingredients": [ + "ricotta salata", + "extra-virgin olive oil", + "bucatini", + "capers", + "ground black pepper", + "fresh oregano", + "eggplant", + "salt", + "plum tomatoes", + "water", + "yellow bell pepper", + "garlic cloves" + ] + }, + { + "id": 11237, + "cuisine": "greek", + "ingredients": [ + "grape leaves", + "farro", + "lemon juice", + "kosher salt", + "extra-virgin olive oil", + "dried currants", + "crushed red pepper flakes", + "pepper", + "walnuts" + ] + }, + { + "id": 23887, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "tomatoes", + "cracked black pepper", + "fresh thyme", + "fresh rosemary", + "garlic" + ] + }, + { + "id": 36931, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "lime", + "curry", + "basmati rice", + "red chili peppers", + "prawns", + "fenugreek seeds", + "tumeric", + "fresh ginger root", + "purple onion", + "reduced fat coconut milk", + "fresh coriander", + "vegetable oil", + "black mustard seeds" + ] + }, + { + "id": 40960, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "white onion", + "ancho chile pepper", + "white vinegar", + "dried chile", + "kosher salt" + ] + }, + { + "id": 29718, + "cuisine": "british", + "ingredients": [ + "kosher salt", + "dry mustard", + "beef rib roast", + "black pepper", + "all-purpose flour" + ] + }, + { + "id": 35634, + "cuisine": "southern_us", + "ingredients": [ + "arborio rice", + "grated parmesan cheese", + "green peas", + "water", + "butter", + "crawfish", + "dry white wine", + "fennel bulb", + "fat free reduced sodium chicken broth" + ] + }, + { + "id": 32835, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "manchego cheese", + "red bliss potato", + "cabbage", + "spanish onion", + "red wine vinegar", + "poblano chiles", + "kosher salt", + "jalapeno chilies", + "roasted garlic", + "canola oil", + "olive oil", + "butter", + "corn tortillas" + ] + }, + { + "id": 43846, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "cooking spray", + "garlic chili sauce", + "hoisin sauce", + "salt", + "ketchup", + "peeled fresh ginger", + "chopped cilantro", + "pork tenderloin", + "garlic cloves" + ] + }, + { + "id": 4161, + "cuisine": "chinese", + "ingredients": [ + "water", + "Shaoxing wine", + "anise", + "stock", + "raw cane sugar", + "sesame oil", + "fine sea salt", + "fermented bean curd", + "pork ribs", + "daikon", + "fresh ginger", + "green onions", + "cilantro" + ] + }, + { + "id": 23902, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "miso paste", + "firm tofu", + "water", + "sherry", + "carrots", + "minced garlic", + "ground black pepper", + "chopped onion", + "frozen chopped spinach", + "olive oil", + "crushed garlic" + ] + }, + { + "id": 48327, + "cuisine": "japanese", + "ingredients": [ + "medium firm tofu", + "Japanese soy sauce", + "sardines", + "white sesame seeds", + "shiso leaves", + "canola oil" + ] + }, + { + "id": 36476, + "cuisine": "italian", + "ingredients": [ + "raspberries", + "butter", + "pepper flakes", + "olive oil", + "corn starch", + "pepper", + "salt", + "Estancia Pinot Noir", + "tuna steaks", + "toasted almonds" + ] + }, + { + "id": 22435, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "sweet potatoes", + "garlic", + "frozen spinach", + "water", + "cheese", + "fresh basil", + "butter", + "salt", + "frozen sweet corn", + "portabello mushroom" + ] + }, + { + "id": 17674, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "beef brisket", + "salt", + "soy sauce", + "sesame seeds", + "green onions", + "beansprouts", + "black pepper", + "gochugaru", + "sesame oil", + "beef bones", + "water", + "mung bean noodles", + "Gochujang base" + ] + }, + { + "id": 29746, + "cuisine": "italian", + "ingredients": [ + "water", + "garlic cloves", + "linguine", + "plum tomatoes", + "extra-virgin olive oil", + "fresh basil leaves", + "hot red pepper flakes", + "clams, well scrub" + ] + }, + { + "id": 31904, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "salt", + "butter", + "black pepper", + "1% low-fat milk", + "parmesan cheese", + "polenta" + ] + }, + { + "id": 48912, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "heavy cream", + "pepper", + "shallots", + "all-purpose flour", + "dried basil", + "butter", + "white wine", + "cooking oil", + "salt" + ] + }, + { + "id": 9557, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "pineapple", + "olive oil", + "avocado", + "purple onion", + "jicama" + ] + }, + { + "id": 46169, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "frozen corn", + "pinto beans", + "chopped cilantro fresh", + "spinach", + "diced tomatoes", + "yellow onion", + "sour cream", + "ground cumin", + "tomato paste", + "chili powder", + "salsa", + "juice", + "monterey jack", + "salt and ground black pepper", + "extra-virgin olive oil", + "garlic cloves", + "corn tortillas" + ] + }, + { + "id": 43443, + "cuisine": "japanese", + "ingredients": [ + "sweet rice", + "salt", + "honey", + "adzuki beans", + "raw sugar", + "water" + ] + }, + { + "id": 7657, + "cuisine": "indian", + "ingredients": [ + "salmon fillets", + "ground red pepper", + "fennel seeds", + "olive oil", + "english cucumber", + "kosher salt", + "cumin seed", + "black peppercorns", + "coriander seeds", + "raita" + ] + }, + { + "id": 4131, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "garlic", + "cumin seed", + "toor dal", + "garam masala", + "cilantro leaves", + "onions", + "tomatoes", + "chili powder", + "green chilies", + "coriander", + "water", + "salt", + "oil" + ] + }, + { + "id": 14875, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "espresso", + "ladyfingers", + "dark rum", + "bittersweet chocolate", + "large eggs", + "cognac", + "sugar", + "salt", + "unsweetened cocoa powder" + ] + }, + { + "id": 40105, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "crème fraîche", + "heavy whipping cream", + "kosher salt", + "whole milk", + "corn starch", + "large eggs", + "dark brown sugar", + "caramel sauce", + "unsalted butter", + "maldon sea salt", + "Scotch whisky" + ] + }, + { + "id": 38626, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "water", + "garlic", + "brussels sprouts", + "bacon", + "olive oil", + "salt" + ] + }, + { + "id": 7175, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "bay leaves", + "cayenne pepper", + "olive oil", + "apple cider vinegar", + "chicken thighs", + "low sodium soy sauce", + "shallots", + "dark brown sugar", + "ground black pepper", + "garlic" + ] + }, + { + "id": 6205, + "cuisine": "southern_us", + "ingredients": [ + "bacon slices", + "onions", + "pepper", + "garlic cloves", + "baby lima beans", + "salt", + "corn kernels", + "roast red peppers, drain" + ] + }, + { + "id": 49227, + "cuisine": "jamaican", + "ingredients": [ + "green plantains", + "hot pepper", + "plantains", + "gravy", + "salt", + "chips", + "vegetable oil", + "clove", + "meat", + "oil" + ] + }, + { + "id": 44639, + "cuisine": "chinese", + "ingredients": [ + "peeled fresh ginger", + "scallions", + "frozen peas", + "eggs", + "ground pork", + "carrots", + "vegetable oil", + "garlic cloves", + "soy sauce", + "rice vinegar", + "cooked white rice" + ] + }, + { + "id": 40787, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh parsley", + "clams", + "linguine", + "heavy cream", + "chopped garlic", + "fresh tomatoes", + "corn starch" + ] + }, + { + "id": 6437, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "daikon", + "dashi", + "scallions", + "soy sauce", + "dried bonito flakes", + "vegetable oil" + ] + }, + { + "id": 40882, + "cuisine": "irish", + "ingredients": [ + "water", + "butter", + "small red potato", + "dijon mustard", + "salt", + "onions", + "black pepper", + "dry white wine", + "garlic cloves", + "cabbage", + "milk", + "bacon", + "carrots" + ] + }, + { + "id": 47330, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "roasted peanuts", + "dried shrimp", + "chives", + "coconut milk", + "fish", + "bread", + "parsley", + "bay leaf", + "olive oil", + "shrimp", + "onions" + ] + }, + { + "id": 33732, + "cuisine": "spanish", + "ingredients": [ + "white wine", + "lemon wedge", + "flat leaf parsley", + "saffron threads", + "minced garlic", + "yellow bell pepper", + "mussels", + "olive oil", + "red bell pepper", + "pepper", + "clam juice" + ] + }, + { + "id": 48913, + "cuisine": "italian", + "ingredients": [ + "milk chocolate", + "coarse sea salt", + "unsweetened cocoa powder", + "earl grey tea leaves", + "granulated sugar", + "corn starch", + "candied orange peel", + "whole milk", + "confectioners sugar", + "unsalted butter", + "heavy cream" + ] + }, + { + "id": 27753, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium soy sauce", + "wine vinegar", + "vegetable oil", + "sesame seeds", + "large shrimp" + ] + }, + { + "id": 30317, + "cuisine": "southern_us", + "ingredients": [ + "2% reduced-fat milk", + "pasta", + "all-purpose flour", + "salt", + "mustard", + "shredded cheese" + ] + }, + { + "id": 26758, + "cuisine": "indian", + "ingredients": [ + "salt", + "shredded coconut", + "basmati rice", + "water", + "coconut milk" + ] + }, + { + "id": 30637, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "large eggs", + "all-purpose flour", + "water", + "baking powder", + "heavy whipping cream", + "unsalted butter", + "salt", + "fleur de sel", + "sugar", + "whole milk", + "peanut oil" + ] + }, + { + "id": 32323, + "cuisine": "thai", + "ingredients": [ + "mirin", + "red curry paste", + "unsweetened coconut milk", + "dry white wine", + "peeled fresh ginger", + "lemongrass", + "whipping cream" + ] + }, + { + "id": 38371, + "cuisine": "southern_us", + "ingredients": [ + "seasoning salt", + "vegetable oil", + "shredded Monterey Jack cheese", + "large eggs", + "shredded sharp cheddar cheese", + "shredded mild cheddar cheese", + "butter", + "black pepper", + "half & half", + "elbow macaroni" + ] + }, + { + "id": 27380, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "olive oil", + "diced tomatoes", + "freshly ground pepper", + "dried oregano", + "italian sausage", + "black pepper", + "fusilli", + "salt", + "garlic cloves", + "fresh basil", + "bay leaves", + "crushed red pepper flakes", + "shredded mozzarella cheese", + "tomato paste", + "dried basil", + "ricotta cheese", + "shredded parmesan cheese", + "onions" + ] + }, + { + "id": 39067, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "onion powder", + "elbow macaroni", + "red kidnei beans, rins and drain", + "green onions", + "salt", + "tomato paste", + "garlic powder", + "diced tomatoes", + "ground beef", + "jack cheese", + "chili powder", + "green chilies" + ] + }, + { + "id": 17723, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "crushed red pepper", + "white wine", + "cooking spray", + "dried oregano", + "tomato paste", + "finely chopped onion", + "garlic cloves", + "crushed tomatoes", + "balsamic vinegar" + ] + }, + { + "id": 3036, + "cuisine": "russian", + "ingredients": [ + "vinegar", + "walnuts", + "baking soda", + "poppy seeds", + "sour cream", + "sugar", + "flour", + "cocoa powder", + "unsalted butter", + "extra large eggs", + "sweetened condensed milk" + ] + }, + { + "id": 29708, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "light brown sugar", + "large eggs", + "cream ic peach", + "pecans", + "baking powder", + "pure vanilla extract", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 36385, + "cuisine": "southern_us", + "ingredients": [ + "tomato sauce", + "barbecue sauce", + "salt", + "carrots", + "frozen okra", + "extra-virgin olive oil", + "lima beans", + "onions", + "crushed tomatoes", + "baking potatoes", + "salsa", + "green beans", + "brown sugar", + "tomato juice", + "mutton", + "whole kernel corn, drain", + "italian seasoning" + ] + }, + { + "id": 38729, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "low sodium chicken broth", + "ground coriander", + "chopped cilantro", + "ground cumin", + "green bell pepper", + "corn kernels", + "garlic", + "corn tortillas", + "onions", + "chile powder", + "black beans", + "butter", + "poblano chiles", + "ground beef", + "cheddar cheese", + "olive oil", + "all-purpose flour", + "fresh lime juice", + "monterey jack" + ] + }, + { + "id": 28939, + "cuisine": "greek", + "ingredients": [ + "eggplant", + "walnuts", + "extra-virgin olive oil", + "fresh lemon juice", + "red wine vinegar", + "garlic cloves", + "sugar", + "salt" + ] + }, + { + "id": 2327, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "shredded Monterey Jack cheese", + "large flour tortillas", + "finely chopped onion", + "green chile", + "hot sauce" + ] + }, + { + "id": 44355, + "cuisine": "mexican", + "ingredients": [ + "Mexican beer", + "gin", + "fresh lemon juice" + ] + }, + { + "id": 21121, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "paprika", + "mayonaise", + "russet potatoes", + "olive oil", + "fresh lemon juice", + "kosher salt", + "clove garlic, fine chop" + ] + }, + { + "id": 43091, + "cuisine": "southern_us", + "ingredients": [ + "tomato sauce", + "diced tomatoes", + "carrots", + "celery ribs", + "black-eyed peas", + "garlic cloves", + "onions", + "pepper", + "stewed tomatoes", + "fresh parsley", + "fresh spinach", + "low-sodium fat-free chicken broth", + "ham" + ] + }, + { + "id": 39441, + "cuisine": "jamaican", + "ingredients": [ + "eggs", + "curry powder", + "salt", + "pepper", + "beef stock", + "onions", + "bread crumbs", + "dried thyme", + "minced beef", + "plain flour", + "water", + "butter" + ] + }, + { + "id": 529, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "chees fresco queso", + "lime", + "chili powder", + "cayenne pepper", + "serrano peppers", + "salt", + "corn kernels", + "low-fat mayonnaise" + ] + }, + { + "id": 35166, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "green onions", + "white vinegar", + "lime", + "medium shrimp", + "tomatoes", + "serrano peppers", + "fresh cilantro", + "cucumber" + ] + }, + { + "id": 47173, + "cuisine": "filipino", + "ingredients": [ + "bay leaves", + "chicken", + "black peppercorns", + "garlic", + "ginger", + "soy sauce", + "distilled malt vinegar" + ] + }, + { + "id": 7073, + "cuisine": "chinese", + "ingredients": [ + "white onion", + "chives", + "oyster sauce", + "light soy sauce", + "sesame oil", + "beansprouts", + "dark soy sauce", + "beef", + "vegetable oil", + "noodles", + "sugar", + "starch", + "salt" + ] + }, + { + "id": 3581, + "cuisine": "korean", + "ingredients": [ + "light brown sugar", + "olive oil", + "green onions", + "onions", + "soy sauce", + "beef", + "garlic cloves", + "cooked rice", + "chili paste", + "apples", + "kosher salt", + "bell pepper", + "toasted sesame oil" + ] + }, + { + "id": 22830, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "cabbage", + "minced ginger", + "salt", + "minced garlic", + "ground pork", + "flour", + "boiling water" + ] + }, + { + "id": 36919, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "baking powder", + "fresh lemon juice", + "sugar", + "unsalted butter", + "grated nutmeg", + "peaches", + "salt", + "corn starch", + "cider vinegar", + "flour", + "cream cheese" + ] + }, + { + "id": 31851, + "cuisine": "greek", + "ingredients": [ + "bread", + "purple onion", + "tomatoes", + "feta cheese crumbles", + "cheddar cheese", + "butter" + ] + }, + { + "id": 28961, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "mushrooms", + "carrots", + "cabbage", + "pepper", + "rice vermicelli", + "onions", + "sugar pea", + "vegetable oil", + "celery", + "hoisin sauce", + "garlic", + "chicken thighs" + ] + }, + { + "id": 45174, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "all-purpose flour", + "red bell pepper", + "sugar", + "vegetable oil", + "cumin seed", + "milk", + "salt", + "chopped pecans", + "yellow corn meal", + "baking powder", + "cayenne pepper" + ] + }, + { + "id": 13257, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "purple onion", + "celery ribs", + "black-eyed peas", + "red bell pepper", + "olive oil", + "salt", + "green bell pepper", + "red wine vinegar", + "chopped cilantro fresh" + ] + }, + { + "id": 5214, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cinnamon sticks", + "sugar", + "rice", + "vanilla extract", + "lime juice", + "blanched almonds" + ] + }, + { + "id": 8140, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "roma tomatoes", + "chipotles in adobo", + "avocado", + "olive oil", + "penne pasta", + "corn", + "garlic", + "chopped cilantro", + "pinenuts", + "grated parmesan cheese", + "greek yogurt" + ] + }, + { + "id": 36645, + "cuisine": "mexican", + "ingredients": [ + "rub", + "pepper", + "olive oil", + "chipotle", + "chili powder", + "worcestershire sauce", + "salt", + "beer", + "chopped cilantro fresh", + "white vinegar", + "brown sugar", + "fresh cilantro", + "ground black pepper", + "sweet potatoes", + "balsamic vinegar", + "paprika", + "salsa", + "red bell pepper", + "tomatoes", + "crushed tomatoes", + "garlic powder", + "flour tortillas", + "apple cider vinegar", + "apple cider", + "maple syrup", + "garlic cloves", + "ground cumin", + "light brown sugar", + "kosher salt", + "lime", + "beef brisket", + "green onions", + "lemon", + "dry mustard", + "cayenne pepper", + "chipotles in adobo" + ] + }, + { + "id": 45173, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "evaporated cane juice", + "garlic", + "ground turmeric", + "chili pepper", + "cilantro", + "black mustard seeds", + "fennel seeds", + "masoor dal", + "ginger", + "ghee", + "chiles", + "lemon", + "salt", + "cumin" + ] + }, + { + "id": 9066, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "coriander seeds", + "ginger", + "chili sauce", + "chicken stock", + "fresh cilantro", + "hoisin sauce", + "purple onion", + "onions", + "clove", + "chili pepper", + "base", + "star anise", + "beansprouts", + "fish sauce", + "lime", + "chicken breasts", + "dried rice noodles" + ] + }, + { + "id": 39491, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "red miso", + "sugar", + "tamari soy sauce", + "toasted sesame seeds", + "vegetable oil", + "toasted sesame oil", + "kale", + "scallions", + "tenderloin steaks" + ] + }, + { + "id": 32079, + "cuisine": "italian", + "ingredients": [ + "pepper", + "purple onion", + "grape tomatoes", + "balsamic vinegar", + "dried rosemary", + "tomatoes", + "olive oil", + "salt", + "sugar", + "cheese" + ] + }, + { + "id": 2844, + "cuisine": "greek", + "ingredients": [ + "phyllo dough", + "garlic", + "eggs", + "green onions", + "fresh parsley", + "olive oil", + "feta cheese crumbles", + "spinach", + "ricotta cheese", + "onions" + ] + }, + { + "id": 44387, + "cuisine": "mexican", + "ingredients": [ + "sweet italian sausag links, cut into", + "prepar salsa", + "flour tortillas", + "Country Crock® Spread", + "large eggs", + "sour cream", + "queso blanco" + ] + }, + { + "id": 9718, + "cuisine": "mexican", + "ingredients": [ + "lime", + "jalapeno chilies", + "salt", + "ground cumin", + "taco shells", + "hot pepper sauce", + "garlic", + "mahi mahi fillets", + "black beans", + "honey", + "vegetable oil", + "crème fraîche", + "pepper", + "red cabbage", + "purple onion", + "chopped cilantro" + ] + }, + { + "id": 496, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "frozen okra", + "all-purpose flour", + "okra pods", + "andouille sausage", + "smoked sausage", + "freshly ground pepper", + "green bell pepper", + "unsalted butter", + "yellow onion", + "celery ribs", + "boneless chicken skinless thigh", + "salt", + "garlic cloves" + ] + }, + { + "id": 21499, + "cuisine": "italian", + "ingredients": [ + "sugar", + "merlot", + "sweet cherries", + "water", + "ice cubes", + "navel oranges" + ] + }, + { + "id": 21503, + "cuisine": "british", + "ingredients": [ + "frozen raspberries", + "vanilla", + "raspberry jam", + "egg yolks", + "poundcake", + "nutmeg", + "cream sherry", + "whipping cream", + "sugar", + "whole milk", + "corn starch" + ] + }, + { + "id": 15392, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "garlic cloves", + "brown sugar", + "salt", + "fresh basil", + "balsamic vinegar", + "olive oil", + "freshly ground pepper" + ] + }, + { + "id": 44874, + "cuisine": "french", + "ingredients": [ + "blueberry pie filling", + "whipped topping", + "eggs", + "powdered vanilla pudding mix", + "cold milk", + "milk", + "biscuit baking mix", + "strawberries" + ] + }, + { + "id": 24511, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "graham cracker crumbs", + "ground beef", + "olive oil", + "canned tomatoes", + "onions", + "pepper", + "garlic", + "fresh parsley", + "eggs", + "grated parmesan cheese", + "salt", + "spaghetti" + ] + }, + { + "id": 40669, + "cuisine": "cajun_creole", + "ingredients": [ + "heavy cream", + "pecan halves", + "vanilla", + "light brown sugar", + "light corn syrup", + "butter", + "salt" + ] + }, + { + "id": 34550, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "shallots", + "chili sauce", + "red bell pepper", + "water", + "salt", + "garlic cloves", + "jasmine rice", + "vegetable oil", + "dark brown sugar", + "green onions", + "rice vinegar", + "carrots" + ] + }, + { + "id": 21392, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "onions", + "olive oil", + "carrots", + "water", + "chili powder", + "mature cheddar", + "chopped tomatoes", + "low-fat natural yogurt" + ] + }, + { + "id": 30079, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "fresh cilantro", + "diced tomatoes", + "salt", + "onions", + "black pepper", + "chili paste", + "raw cashews", + "garlic cloves", + "cumin", + "water", + "russet potatoes", + "vegetable broth", + "lemon juice", + "tumeric", + "garam masala", + "ginger", + "ground coriander", + "frozen peas" + ] + }, + { + "id": 27458, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "butternut squash", + "chopped cilantro fresh", + "fresh ginger", + "salt", + "curry powder", + "butter", + "basmati rice", + "minced onion", + "fat" + ] + }, + { + "id": 28940, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "green bell pepper", + "crushed red pepper", + "dried oregano", + "fresh basil", + "shallots", + "sliced mushrooms", + "bone-in chicken breast halves", + "tomato basil sauce" + ] + }, + { + "id": 45600, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "fresh thyme", + "scotch bonnet chile", + "whole allspice", + "shallots", + "dark brown sugar", + "black peppercorns", + "dark rum", + "garlic", + "ground nutmeg", + "lime wedges", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 21502, + "cuisine": "spanish", + "ingredients": [ + "ground cinnamon", + "vanilla extract", + "large eggs", + "heavy cream", + "sugar", + "cinnamon sticks" + ] + }, + { + "id": 14806, + "cuisine": "greek", + "ingredients": [ + "frozen chopped spinach", + "large eggs", + "salt", + "fresh parsley", + "large egg whites", + "1% low-fat milk", + "garlic cloves", + "phyllo dough", + "cooking spray", + "fresh oregano", + "ground black pepper", + "purple onion", + "feta cheese crumbles" + ] + }, + { + "id": 16800, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "freshly ground pepper", + "capers", + "extra-virgin olive oil", + "flat leaf parsley", + "fillet red snapper", + "salt", + "shallots", + "lemon juice" + ] + }, + { + "id": 30661, + "cuisine": "southern_us", + "ingredients": [ + "vanilla extract", + "eggs", + "white sugar", + "whole milk" + ] + }, + { + "id": 23708, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "boneless skinless chicken breasts", + "corn starch", + "soy sauce", + "honey", + "garlic", + "canola oil", + "water", + "red pepper flakes", + "onions", + "ketchup", + "sesame seeds", + "salt" + ] + }, + { + "id": 27617, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "sugar", + "butter", + "self rising flour", + "milk" + ] + }, + { + "id": 1374, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "pitted kalamata olives", + "crushed red pepper", + "low salt chicken broth", + "fresh rosemary", + "extra-virgin olive oil", + "garlic cloves", + "dry white wine", + "roasting chickens" + ] + }, + { + "id": 40654, + "cuisine": "indian", + "ingredients": [ + "green chilies", + "ground turmeric", + "chana dal", + "mustard seeds", + "dry coconut", + "oil", + "bottle gourd", + "urad dal", + "onions" + ] + }, + { + "id": 9548, + "cuisine": "indian", + "ingredients": [ + "water", + "oil", + "salt", + "gram flour" + ] + }, + { + "id": 4908, + "cuisine": "southern_us", + "ingredients": [ + "large egg yolks", + "whipping cream", + "walnut pieces", + "whole milk", + "cayenne pepper", + "ground black pepper", + "salt", + "golden brown sugar", + "vegetable oil" + ] + }, + { + "id": 12523, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "vegetable oil", + "sour cream", + "chile powder", + "minced onion", + "salt", + "Mexican cheese blend", + "diced chicken", + "corn tortillas", + "garlic powder", + "chile pepper", + "sliced mushrooms" + ] + }, + { + "id": 2946, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "garlic salt", + "boneless skinless chicken breasts", + "grated parmesan cheese", + "italian salad dressing", + "parsley flakes", + "plain breadcrumbs" + ] + }, + { + "id": 32536, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "pork sausages", + "unsalted butter", + "salsa", + "shredded cheddar cheese", + "chili powder", + "large eggs", + "corn tortillas" + ] + }, + { + "id": 13838, + "cuisine": "indian", + "ingredients": [ + "bananas", + "ice cubes", + "greek yogurt", + "cold milk", + "ground cardamom", + "sugar" + ] + }, + { + "id": 35920, + "cuisine": "moroccan", + "ingredients": [ + "golden raisins", + "salt", + "ground cinnamon", + "whole wheat couscous", + "ground turmeric", + "ground red pepper", + "carrots", + "water", + "vegetable broth", + "ground cumin" + ] + }, + { + "id": 45103, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "flour", + "salt", + "garlic powder", + "onion salt", + "cocoa", + "vegetable oil", + "tomato sauce", + "chili powder", + "ground cumin" + ] + }, + { + "id": 40316, + "cuisine": "mexican", + "ingredients": [ + "cinnamon", + "hot sauce", + "pork shoulder", + "lime", + "salt", + "beer", + "cumin", + "black pepper", + "garlic", + "cayenne pepper", + "oregano", + "chili powder", + "salsa", + "orange juice" + ] + }, + { + "id": 469, + "cuisine": "spanish", + "ingredients": [ + "mixed spice", + "whole peeled tomatoes", + "peas", + "grated lemon zest", + "grated orange", + "tomato paste", + "curry powder", + "bay leaves", + "pitted olives", + "onions", + "octopuses", + "olive oil", + "red wine", + "salt", + "white sugar", + "pepper", + "potatoes", + "garlic", + "fresh mint" + ] + }, + { + "id": 41982, + "cuisine": "mexican", + "ingredients": [ + "pickled jalapenos", + "bacon", + "lime", + "salt", + "corn", + "cilantro", + "avocado", + "diced red onions" + ] + }, + { + "id": 29916, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "bacon slices", + "carrots", + "spinach", + "kosher salt", + "fresh oregano", + "bread crumb fresh", + "grated nutmeg", + "flat leaf parsley", + "ground cloves", + "flank steak", + "garlic cloves" + ] + }, + { + "id": 20619, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "jalapeno chilies", + "salt", + "olives", + "halibut fillets", + "vegetable oil", + "garlic cloves", + "lime", + "dry white wine", + "yellow onion", + "olive oil", + "diced tomatoes", + "chopped parsley" + ] + }, + { + "id": 6616, + "cuisine": "mexican", + "ingredients": [ + "milk", + "whole kernel corn, drain", + "chile pepper", + "whole peeled tomatoes", + "shredded cheddar cheese", + "all-purpose flour" + ] + }, + { + "id": 49605, + "cuisine": "italian", + "ingredients": [ + "water", + "sugar", + "fresh lime juice", + "light coconut milk", + "lime rind" + ] + }, + { + "id": 6161, + "cuisine": "mexican", + "ingredients": [ + "strawberries", + "lime juice", + "fresh mint", + "water", + "blueberries", + "agave nectar", + "ice" + ] + }, + { + "id": 1039, + "cuisine": "chinese", + "ingredients": [ + "low sodium chicken broth", + "coarse salt", + "garlic cloves", + "soy sauce", + "unsalted cashews", + "rice vinegar", + "cooked white rice", + "sugar", + "peeled fresh ginger", + "dry sherry", + "corn starch", + "boneless, skinless chicken breast", + "vegetable oil", + "scallions" + ] + }, + { + "id": 12753, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil cooking spray", + "sweet potatoes", + "olive oil", + "garlic cloves", + "finely chopped fresh parsley", + "grated orange", + "pepper", + "salt" + ] + }, + { + "id": 19576, + "cuisine": "southern_us", + "ingredients": [ + "ground chipotle chile pepper", + "shredded sharp cheddar cheese", + "pimentos", + "cream cheese", + "garlic powder", + "salt", + "mayonaise", + "cheese spread", + "freshly ground pepper" + ] + }, + { + "id": 25530, + "cuisine": "french", + "ingredients": [ + "sweet cherries", + "salt", + "powdered sugar", + "fresh orange juice", + "grated orange", + "cooking spray", + "cream cheese, soften", + "brown sugar", + "crepes" + ] + }, + { + "id": 45503, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "mushrooms", + "sea salt", + "garlic cloves", + "free-range eggs", + "fresh ginger root", + "sesame oil", + "minced beef", + "ground white pepper", + "light soy sauce", + "spring onions", + "cornflour", + "chinese leaf", + "Shaoxing wine", + "vegetable stock", + "oil", + "toasted sesame oil" + ] + }, + { + "id": 48477, + "cuisine": "french", + "ingredients": [ + "chervil", + "crème fraîche", + "potatoes", + "sea salt", + "ground black pepper" + ] + }, + { + "id": 22029, + "cuisine": "mexican", + "ingredients": [ + "chile pepper", + "garlic cloves", + "romaine lettuce leaves", + "chopped cilantro fresh", + "chicken broth", + "salt", + "tomatillos", + "onions" + ] + }, + { + "id": 45975, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "salt", + "mustard seeds", + "red chili peppers", + "cumin seed", + "tumeric", + "green chilies", + "bottle gourd", + "curry leaves", + "chili powder", + "lentils" + ] + }, + { + "id": 17966, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "large egg whites", + "grated lemon zest", + "corn starch", + "soy sauce", + "sesame oil", + "garlic cloves", + "sugar", + "boneless skinless chicken breasts", + "peanut oil", + "white sesame seeds", + "minced ginger", + "lemon slices", + "fresh lemon juice" + ] + }, + { + "id": 46329, + "cuisine": "french", + "ingredients": [ + "coconut", + "sweetened coconut flakes", + "salt", + "large egg whites" + ] + }, + { + "id": 35237, + "cuisine": "russian", + "ingredients": [ + "eggs", + "balsamic vinegar", + "dill weed", + "potatoes", + "cucumber", + "fresh leav spinach", + "salt", + "white sugar", + "sorrel", + "green onions", + "sour cream" + ] + }, + { + "id": 5068, + "cuisine": "jamaican", + "ingredients": [ + "fresh cilantro", + "pineapple", + "ground allspice", + "salmon fillets", + "olive oil", + "salt", + "ground cumin", + "canned black beans", + "cinnamon", + "cayenne pepper", + "dried thyme", + "purple onion", + "mango" + ] + }, + { + "id": 19766, + "cuisine": "spanish", + "ingredients": [ + "bacon", + "medjool date" + ] + }, + { + "id": 19508, + "cuisine": "irish", + "ingredients": [ + "salt", + "eggs", + "tomatoes", + "black pudding", + "bacon" + ] + }, + { + "id": 31105, + "cuisine": "french", + "ingredients": [ + "mussels", + "ground black pepper", + "shallots", + "littleneck clams", + "kosher salt", + "fennel bulb", + "Italian parsley leaves", + "olive oil", + "dry white wine", + "razor clams", + "cockles", + "unsalted butter", + "yukon gold potatoes", + "garlic cloves" + ] + }, + { + "id": 2652, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "parmigiano reggiano cheese", + "butter", + "garlic cloves", + "steel-cut oats", + "olive oil", + "butternut squash", + "salt", + "cremini mushrooms", + "ground black pepper", + "dry white wine", + "chopped fresh sage", + "diced onions", + "water", + "cooking spray", + "cracked black pepper" + ] + }, + { + "id": 18162, + "cuisine": "italian", + "ingredients": [ + "salt", + "Italian bread", + "extra-virgin olive oil", + "dried oregano", + "garlic cloves" + ] + }, + { + "id": 35062, + "cuisine": "mexican", + "ingredients": [ + "ground pepper", + "garlic cloves", + "cooked chicken breasts", + "tomatoes", + "coarse salt", + "fresh lime juice", + "avocado", + "chili powder", + "corn tortillas", + "monterey jack", + "olive oil", + "purple onion", + "fresh parsley" + ] + }, + { + "id": 36062, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "white onion", + "long grain white rice", + "water", + "reduced sodium chicken broth", + "large garlic cloves" + ] + }, + { + "id": 19184, + "cuisine": "italian", + "ingredients": [ + "water", + "dried sage", + "purple onion", + "table salt", + "olive oil", + "coarse salt", + "scallions", + "active dry yeast", + "shallots", + "yellow onion", + "sugar", + "freshly grated parmesan", + "all purpose unbleached flour" + ] + }, + { + "id": 17116, + "cuisine": "thai", + "ingredients": [ + "cauliflower", + "orange", + "red cabbage", + "Bragg Liquid Aminos", + "mung bean sprouts", + "almond butter", + "fresh ginger", + "thai chile", + "cucumber", + "tumeric", + "young coconut meat", + "basil leaves", + "carrots", + "curry powder", + "peanuts", + "garlic", + "coconut water" + ] + }, + { + "id": 15573, + "cuisine": "french", + "ingredients": [ + "cream sherry", + "cinnamon sticks", + "honey", + "bosc pears" + ] + }, + { + "id": 41377, + "cuisine": "italian", + "ingredients": [ + "sliced almonds", + "amaretti", + "dark brown sugar", + "cream of tartar", + "instant espresso powder", + "heavy cream", + "unsweetened cocoa powder", + "sugar", + "unsalted butter", + "light corn syrup", + "pure vanilla extract", + "large egg whites", + "amaretto", + "bittersweet chocolate" + ] + }, + { + "id": 29071, + "cuisine": "russian", + "ingredients": [ + "fennel seeds", + "parsley leaves", + "sea salt", + "olive oil", + "balsamic vinegar", + "onions", + "smoked streaky bacon", + "red cabbage", + "apples", + "ground black pepper", + "butter" + ] + }, + { + "id": 3028, + "cuisine": "thai", + "ingredients": [ + "sugar pea", + "peeled fresh ginger", + "red curry paste", + "fresh basil", + "asparagus", + "yellow bell pepper", + "peanut oil", + "rice sticks", + "lime wedges", + "chopped onion", + "brown sugar", + "pork tenderloin", + "light coconut milk", + "garlic cloves" + ] + }, + { + "id": 39261, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "cornmeal", + "shortening", + "sour milk", + "eggs", + "salt", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 41958, + "cuisine": "mexican", + "ingredients": [ + "ground chipotle chile pepper", + "corn tortillas", + "Wish-Bone Italian Dressing", + "cabbage", + "lime juice", + "chopped cilantro fresh", + "cod", + "hellmann' or best food real mayonnais" + ] + }, + { + "id": 36719, + "cuisine": "chinese", + "ingredients": [ + "lean ground turkey", + "cooking spray", + "onions", + "egg substitute", + "ground pork", + "water chestnuts, drained and chopped", + "wonton wrappers", + "ground ginger", + "reduced sodium soy sauce", + "sweet and sour sauce" + ] + }, + { + "id": 23347, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "extra-virgin olive oil", + "granny smith apples", + "stuffing", + "ham", + "chicken stock", + "fennel bulb", + "freshly ground pepper", + "kosher salt", + "leeks", + "sliced green onions" + ] + }, + { + "id": 47190, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "beef stock", + "star anise", + "basmati rice", + "olive oil", + "muscovado sugar", + "chinese five-spice powder", + "red chili peppers", + "spring onions", + "braising beef", + "plain flour", + "fresh ginger root", + "dry sherry", + "garlic cloves" + ] + }, + { + "id": 31367, + "cuisine": "italian", + "ingredients": [ + "dijon mustard", + "fresh lemon juice", + "fresh dill", + "salt", + "heirloom tomatoes", + "ground black pepper", + "grated lemon zest" + ] + }, + { + "id": 1915, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "yellow corn meal", + "salt", + "olive oil", + "green tomatoes" + ] + }, + { + "id": 39893, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "green chilies", + "smoked sausage", + "ground black pepper", + "long grain white rice", + "onion soup mix", + "beef broth" + ] + }, + { + "id": 34804, + "cuisine": "southern_us", + "ingredients": [ + "egg yolks", + "all-purpose flour", + "white sugar", + "white cake mix", + "butter", + "hot water", + "egg whites", + "raisins", + "chopped pecans", + "flaked coconut", + "chopped walnuts" + ] + }, + { + "id": 18831, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "chopped cilantro fresh", + "garlic cloves", + "white onion", + "plum tomatoes" + ] + }, + { + "id": 42231, + "cuisine": "french", + "ingredients": [ + "fresh thyme", + "dry sherry", + "ground allspice", + "heavy cream", + "salt", + "sugar", + "bacon", + "bacon fat", + "shallots", + "garlic", + "chicken livers" + ] + }, + { + "id": 22514, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "pork tenderloin", + "garlic puree", + "ginger purée", + "hoisin sauce", + "dry sherry", + "corn starch", + "chicken stock", + "Sriracha", + "red pepper flakes", + "garlic cloves", + "soy sauce", + "broccoli florets", + "peanut oil" + ] + }, + { + "id": 22393, + "cuisine": "spanish", + "ingredients": [ + "chiles", + "bay leaves", + "yellow onion", + "flat leaf parsley", + "unsalted vegetable stock", + "yukon gold potatoes", + "garlic cloves", + "chili pepper", + "dry white wine", + "tuna fillets", + "piment despelette", + "saffron threads", + "olive oil", + "salt", + "ground white pepper" + ] + }, + { + "id": 24305, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "non-fat sour cream", + "fresh corn", + "grated parmesan cheese", + "reduced fat mayonnaise", + "vegetable oil cooking spray", + "chili powder", + "lime", + "salt" + ] + }, + { + "id": 2598, + "cuisine": "french", + "ingredients": [ + "hazelnuts", + "large eggs", + "salt", + "kahlúa", + "unsalted butter", + "whole milk", + "sugar", + "semisweet chocolate", + "vanilla extract", + "large egg yolks", + "half & half", + "all-purpose flour" + ] + }, + { + "id": 43105, + "cuisine": "greek", + "ingredients": [ + "milk", + "green pepper", + "chives", + "olive oil", + "greek yogurt", + "salt" + ] + }, + { + "id": 42210, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "pimentos", + "salt", + "hazelnuts", + "large garlic cloves", + "ancho chile pepper", + "white bread", + "water", + "extra-virgin olive oil", + "hot red pepper flakes", + "red wine vinegar", + "blanched almonds" + ] + }, + { + "id": 28926, + "cuisine": "indian", + "ingredients": [ + "food colouring", + "ground cardamom", + "water", + "cashew nuts", + "sugar", + "ghee", + "maida flour" + ] + }, + { + "id": 16881, + "cuisine": "british", + "ingredients": [ + "baking soda", + "dates", + "salt", + "light brown sugar", + "large eggs", + "heavy cream", + "orange zest", + "pure vanilla extract", + "unsalted butter", + "whipped cream", + "all-purpose flour", + "sugar", + "baking powder", + "light corn syrup" + ] + }, + { + "id": 24273, + "cuisine": "italian", + "ingredients": [ + "water", + "extra-virgin olive oil", + "cannellini beans", + "fresh lemon juice", + "ground black pepper", + "salt", + "baguette", + "large garlic cloves", + "flat leaf parsley" + ] + }, + { + "id": 30541, + "cuisine": "mexican", + "ingredients": [ + "picante sauce", + "chili powder", + "salad dressing", + "garlic powder", + "reduced-fat sour cream", + "olive oil", + "chile pepper", + "chopped cilantro fresh", + "black beans", + "hot pepper sauce", + "salt" + ] + }, + { + "id": 7039, + "cuisine": "italian", + "ingredients": [ + "spinach", + "ricotta", + "plain flour", + "parsley leaves", + "vegan parmesan cheese", + "olive oil", + "garlic cloves", + "eggs", + "grated nutmeg", + "arugula" + ] + }, + { + "id": 3002, + "cuisine": "chinese", + "ingredients": [ + "peeled fresh ginger", + "boneless pork loin", + "sugar", + "star anise", + "long-grain rice", + "low sodium soy sauce", + "green onions", + "chopped onion", + "water", + "dry red wine", + "garlic cloves" + ] + }, + { + "id": 7327, + "cuisine": "italian", + "ingredients": [ + "hot pepper sauce", + "asiago", + "uncooked ziti", + "marinara sauce", + "ground turkey breast", + "salt", + "part-skim mozzarella cheese", + "cooking spray" + ] + }, + { + "id": 19529, + "cuisine": "korean", + "ingredients": [ + "pepper", + "granulated sugar", + "sirloin steak", + "dark brown sugar", + "noodles", + "soy sauce", + "ground pepper", + "sesame oil", + "yellow onion", + "toasted sesame oil", + "spinach leaves", + "sesame seeds", + "fresh shiitake mushrooms", + "salt", + "red bell pepper", + "olive oil", + "green onions", + "garlic", + "carrots" + ] + }, + { + "id": 8190, + "cuisine": "italian", + "ingredients": [ + "pepper", + "large garlic cloves", + "chopped parsley", + "olive oil", + "white beans", + "italian seasoning", + "kale", + "salt", + "plum tomatoes", + "low sodium chicken broth", + "yellow onion" + ] + }, + { + "id": 40759, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "garlic", + "tahini", + "fresh parsley", + "peanuts", + "fresh lemon juice", + "pita rounds", + "ground red pepper", + "ground cumin" + ] + }, + { + "id": 38302, + "cuisine": "vietnamese", + "ingredients": [ + "tumeric", + "peanut oil", + "onions", + "lettuce", + "water", + "beansprouts", + "sweet chili sauce", + "rice flour", + "spearmint", + "button mushrooms", + "coconut milk" + ] + }, + { + "id": 14489, + "cuisine": "french", + "ingredients": [ + "red wine vinegar", + "shallots", + "black peppercorns", + "salt" + ] + }, + { + "id": 32733, + "cuisine": "korean", + "ingredients": [ + "kimchi juice", + "Gochujang base", + "eggs", + "jalapeno chilies", + "onions", + "pepper", + "kimchi", + "cooked rice", + "sesame oil" + ] + }, + { + "id": 3126, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "peanut oil", + "chicken stock", + "peanuts", + "sesame oil", + "noodles", + "minced garlic", + "szechwan peppercorns", + "sesame paste", + "sugar", + "hot chili oil", + "ginger" + ] + }, + { + "id": 28695, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "extra-virgin olive oil", + "freshly ground pepper", + "cuban peppers", + "beefsteak tomatoes", + "anchovy fillets", + "fresh lemon juice", + "cannellini beans", + "salt", + "garlic cloves", + "eggplant", + "basil", + "bocconcini", + "country bread" + ] + }, + { + "id": 6070, + "cuisine": "korean", + "ingredients": [ + "ground black pepper", + "garlic", + "pears", + "mirin", + "juice", + "radishes", + "oil", + "sugar", + "ginger", + "beef ribs" + ] + }, + { + "id": 29709, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "sesame seeds", + "sesame oil", + "kale leaves", + "kosher salt", + "ground black pepper", + "garlic", + "radish sprouts", + "chili flakes", + "shiitake", + "miso", + "scallions", + "chicken broth", + "fresh ginger", + "extra firm tofu", + "yellow onion", + "soba" + ] + }, + { + "id": 6371, + "cuisine": "british", + "ingredients": [ + "sour cream", + "heavy cream", + "confectioners sugar" + ] + }, + { + "id": 18020, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "skirt steak", + "balsamic vinegar", + "fresh lime juice", + "cracked black pepper", + "onions", + "flour tortillas", + "cilantro leaves" + ] + }, + { + "id": 19397, + "cuisine": "mexican", + "ingredients": [ + "soy sauce", + "honey", + "fresh blueberries", + "red pepper flakes", + "sweet corn", + "fresh cilantro", + "peaches", + "barbecue sauce", + "salt", + "corn tortillas", + "avocado", + "lime", + "tortillas", + "boneless skinless chicken breasts", + "rice vinegar", + "pepper", + "olive oil", + "jalapeno chilies", + "purple onion", + "garlic cloves" + ] + }, + { + "id": 26144, + "cuisine": "indian", + "ingredients": [ + "soy sauce", + "paneer", + "Sriracha", + "roasted sesame seeds", + "scallions", + "garlic" + ] + }, + { + "id": 40287, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "milk", + "chili powder", + "green chile", + "cooked chicken", + "Campbell's Condensed Cheddar Cheese Soup", + "Pace Chunky Salsa" + ] + }, + { + "id": 35677, + "cuisine": "indian", + "ingredients": [ + "rice", + "cumin", + "urad dal", + "oil", + "poha", + "green chilies", + "salt", + "onions" + ] + }, + { + "id": 1562, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "purple onion", + "fennel seeds", + "red wine vinegar", + "chopped fresh mint", + "whole wheat french bread", + "lump crab meat", + "salt", + "tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 9540, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "cooking spray", + "crushed red pepper", + "low sodium soy sauce", + "mirin", + "flank steak", + "sesame seeds", + "green onions", + "cabbage", + "minced garlic", + "peeled fresh ginger", + "dark sesame oil" + ] + }, + { + "id": 29687, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "sesame oil", + "beansprouts", + "japanese rice", + "zucchini", + "carrots", + "shiitake", + "fried eggs", + "spinach", + "meat", + "cucumber" + ] + }, + { + "id": 37889, + "cuisine": "southern_us", + "ingredients": [ + "caraway seeds", + "extra-virgin olive oil", + "self rising flour", + "fresh dill", + "whole milk" + ] + }, + { + "id": 13855, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "salt", + "ground cumin", + "spinach", + "ginger", + "cooking fat", + "coriander powder", + "yellow onion", + "pepper", + "garlic", + "ground turmeric" + ] + }, + { + "id": 4691, + "cuisine": "indian", + "ingredients": [ + "chicken broth", + "pepper", + "red curry paste", + "granny smith apples", + "olive oil", + "boneless skinless chicken breast halves", + "ground cinnamon", + "sweet onion", + "red bell pepper", + "plain yogurt", + "salt" + ] + }, + { + "id": 39879, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "ricotta", + "kosher salt", + "grated parmesan cheese", + "large eggs", + "sauce", + "large egg yolks", + "all-purpose flour" + ] + }, + { + "id": 3695, + "cuisine": "spanish", + "ingredients": [ + "water", + "garlic cloves", + "onions", + "dry sherry", + "red bell pepper", + "red wine vinegar", + "cucumber", + "plum tomatoes", + "country white bread", + "extra-virgin olive oil", + "fresh parsley" + ] + }, + { + "id": 9401, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "chees fresh mozzarella", + "red bell pepper", + "spinach", + "shallots", + "garlic cloves", + "Italian cheese", + "balsamic vinegar", + "fresh lemon juice", + "fresh basil", + "cooking spray", + "salt", + "shiitake mushroom caps" + ] + }, + { + "id": 27739, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "ground pepper", + "hot sauce", + "fresh cilantro", + "coarse salt", + "corn tortillas", + "tilapia fillets", + "red cabbage", + "sour cream", + "lime", + "extra-virgin olive oil" + ] + }, + { + "id": 9192, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "provolone cheese", + "salad", + "grated parmesan cheese", + "fresh parsley", + "celery ribs", + "sliced black olives", + "red bell pepper", + "pepper", + "salami", + "crostini" + ] + }, + { + "id": 19725, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "minced meat", + "all-purpose flour", + "bay leaf", + "pepper", + "butter", + "garlic cloves", + "onions", + "ground cinnamon", + "whole milk", + "cayenne pepper", + "fresh parsley", + "clove", + "eggplant", + "salt", + "waxy potatoes" + ] + }, + { + "id": 14648, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "green mango", + "green chilies", + "curry leaves", + "water", + "garlic", + "mustard seeds", + "coconut oil", + "coconut", + "salt", + "onions", + "red chili peppers", + "seeds", + "cumin seed" + ] + }, + { + "id": 37623, + "cuisine": "italian", + "ingredients": [ + "beans", + "fresh thyme leaves", + "fresh basil leaves", + "prosciutto", + "large garlic cloves", + "kosher salt", + "napa cabbage", + "parmigiano reggiano cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 32608, + "cuisine": "british", + "ingredients": [ + "butter", + "whole milk", + "strawberry yogurt", + "all-purpose flour", + "baking powder" + ] + }, + { + "id": 35435, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "epazote", + "garlic cloves", + "dried oregano", + "vegetable oil", + "pumpkin seeds", + "onions", + "tomatillos", + "cumin seed", + "chopped cilantro fresh", + "jalapeno chilies", + "salt", + "fresh parsley" + ] + }, + { + "id": 14381, + "cuisine": "mexican", + "ingredients": [ + "tomato purée", + "butter", + "salt", + "taco seasoning", + "panko breadcrumbs", + "pepper", + "garlic", + "hot sauce", + "ground beef", + "black beans", + "cheese", + "salsa", + "oil", + "corn", + "pasta shells", + "goat cheese", + "onions" + ] + }, + { + "id": 34035, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "sweet onion", + "garlic cloves", + "avocado", + "pepper", + "salt", + "fresh lime juice", + "ketchup", + "lime wedges", + "shrimp", + "saltines", + "water", + "hot sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 24186, + "cuisine": "mexican", + "ingredients": [ + "plain yogurt", + "half & half", + "garlic", + "cayenne pepper", + "ground cumin", + "ground cinnamon", + "flour tortillas", + "vegetable oil", + "cilantro leaves", + "chopped cilantro", + "ground cloves", + "jalapeno chilies", + "buttermilk", + "yellow onion", + "paneer cheese", + "frozen spinach", + "fresh ginger", + "mint leaves", + "salt", + "lemon juice" + ] + }, + { + "id": 14855, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "berries", + "self rising flour", + "milk", + "butter" + ] + }, + { + "id": 19497, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "fresh mushrooms", + "butter-margarine blend", + "salt", + "marsala wine", + "cracked black pepper", + "veal", + "all-purpose flour" + ] + }, + { + "id": 18367, + "cuisine": "irish", + "ingredients": [ + "tea bags", + "boiling water", + "Irish whiskey", + "milk", + "white sugar" + ] + }, + { + "id": 29546, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "green pepper", + "sour cream", + "black beans", + "chicken breasts", + "fresh mushrooms", + "corn niblets", + "rice", + "lime", + "salsa", + "shredded cheese" + ] + }, + { + "id": 6236, + "cuisine": "italian", + "ingredients": [ + "water", + "sour cream", + "sugar", + "whipping cream", + "unflavored gelatin", + "balsamic vinegar", + "raspberries", + "vanilla extract" + ] + }, + { + "id": 39693, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "large eggs", + "non stick spray", + "Sriracha", + "wonton wrappers", + "lobster", + "cream cheese" + ] + }, + { + "id": 42469, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "shallots", + "fresh lemon juice", + "unsalted butter", + "extra-virgin olive oil", + "freshly grated parmesan", + "chopped fresh thyme", + "soft goat's cheese", + "large eggs", + "mesclun" + ] + }, + { + "id": 47593, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "slaw", + "radishes", + "chopped onion", + "lower sodium chicken broth", + "ground black pepper", + "large garlic cloves", + "canola oil", + "green chile", + "lime", + "pork tenderloin", + "dried oregano", + "ground cloves", + "white hominy", + "crushed red pepper", + "ground cumin" + ] + }, + { + "id": 31509, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "toasted sesame oil", + "greens", + "yu choy", + "scallions", + "onions", + "kosher salt", + "garlic", + "bok choy", + "chicken", + "chiles", + "rice noodles", + "shrimp", + "peppercorns" + ] + }, + { + "id": 2324, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "zucchini", + "olive oil", + "lemon rind", + "ground black pepper", + "fresh lemon juice", + "kosher salt", + "field lettuce" + ] + }, + { + "id": 35071, + "cuisine": "italian", + "ingredients": [ + "bread, cut into italian loaf", + "cooking spray", + "sweet italian sausage", + "cheddar cheese", + "zucchini", + "1% low-fat milk", + "roasted red peppers", + "green onions", + "pepper", + "large eggs", + "salt" + ] + }, + { + "id": 1895, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "plums", + "pancake", + "five spice", + "spring onions", + "duck", + "fresh ginger", + "salt", + "orange zest", + "sugar", + "chili powder", + "cucumber" + ] + }, + { + "id": 33865, + "cuisine": "indian", + "ingredients": [ + "water", + "extra-virgin olive oil", + "onions", + "curry leaves", + "garam masala", + "green chilies", + "saffron", + "cauliflower", + "garbanzo beans", + "salt", + "coriander", + "tomatoes", + "chili oil", + "sweet mustard" + ] + }, + { + "id": 3328, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "dijon mustard", + "Melba toast", + "garlic powder", + "paprika", + "dried oregano", + "organic chicken", + "light mayonnaise", + "nonstick spray", + "ground black pepper", + "cayenne pepper" + ] + }, + { + "id": 24833, + "cuisine": "italian", + "ingredients": [ + "all-purpose flour", + "extra large eggs", + "extra-virgin olive oil" + ] + }, + { + "id": 37728, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "green chilies", + "reduced fat monterey jack cheese", + "chunky", + "plum tomatoes", + "black beans", + "tortilla chips", + "green onions", + "chopped cilantro fresh" + ] + }, + { + "id": 5768, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "extra-virgin olive oil", + "fresh lemon juice", + "tomatoes", + "dried thyme", + "purple onion", + "fresh parsley", + "pepper", + "garlic", + "feta cheese crumbles", + "flatbread", + "boneless skinless chicken breasts", + "greek style plain yogurt", + "dried oregano" + ] + }, + { + "id": 7448, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "shredded cheddar cheese", + "chopped pecans", + "saltines", + "onion powder", + "egg substitute", + "dried parsley" + ] + }, + { + "id": 33186, + "cuisine": "mexican", + "ingredients": [ + "colby cheese", + "chopped onion", + "lean ground beef", + "garlic salt", + "flour tortillas", + "enchilada sauce", + "vegetable oil" + ] + }, + { + "id": 12131, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "ground almonds", + "cinnamon", + "flour", + "butter" + ] + }, + { + "id": 35738, + "cuisine": "irish", + "ingredients": [ + "plain yogurt", + "muesli", + "honey" + ] + }, + { + "id": 47586, + "cuisine": "mexican", + "ingredients": [ + "coconut oil", + "garlic", + "ground cumin", + "cheddar cheese", + "spaghetti squash", + "fresh spinach", + "yellow onion", + "sea salt", + "roasted tomatoes" + ] + }, + { + "id": 24377, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "baking soda", + "white sugar", + "water", + "ground almonds", + "ground cloves", + "all-purpose flour", + "unsweetened cocoa powder", + "honey", + "confectioners sugar" + ] + }, + { + "id": 17400, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "large eggs", + "salt", + "grated parmesan cheese", + "grits", + "pepper", + "Tabasco Pepper Sauce" + ] + }, + { + "id": 10223, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "flat leaf parsley", + "tomatoes", + "pecorino romano cheese", + "mussels", + "dry white wine", + "chopped garlic", + "crusty bread", + "extra-virgin olive oil" + ] + }, + { + "id": 14955, + "cuisine": "southern_us", + "ingredients": [ + "seasoning", + "pickling salt", + "water", + "white vinegar", + "watermelon", + "sugar", + "lemon" + ] + }, + { + "id": 28732, + "cuisine": "southern_us", + "ingredients": [ + "blueberries", + "butter", + "peaches", + "blackberries", + "vanilla" + ] + }, + { + "id": 6295, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "hoisin sauce", + "balsamic vinegar", + "beansprouts", + "chicken broth", + "sesame seeds", + "green onions", + "pitted prunes", + "eggs", + "swiss chard", + "sesame oil", + "carrots", + "sushi rice", + "mushrooms", + "beef rib short", + "onions" + ] + }, + { + "id": 12721, + "cuisine": "indian", + "ingredients": [ + "whole milk", + "lemon juice", + "salt" + ] + }, + { + "id": 1292, + "cuisine": "spanish", + "ingredients": [ + "spinach", + "garlic cloves", + "raisins", + "olive oil", + "pinenuts" + ] + }, + { + "id": 13936, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "baby spinach", + "mozzarella cheese", + "prepared pasta sauce", + "pesto", + "grated parmesan cheese", + "water", + "ricotta cheese" + ] + }, + { + "id": 37061, + "cuisine": "indian", + "ingredients": [ + "green bell pepper", + "peas", + "shrimp", + "olive oil", + "cayenne pepper", + "tumeric", + "garlic", + "chopped cilantro", + "tomato paste", + "fresh ginger", + "lemon juice" + ] + }, + { + "id": 20141, + "cuisine": "irish", + "ingredients": [ + "black pepper", + "fennel bulb", + "yellow onion", + "parsnips", + "ground nutmeg", + "Italian parsley leaves", + "brussels sprouts", + "kosher salt", + "sweet potatoes", + "celery", + "fresh spinach", + "unsalted butter", + "vegetable broth" + ] + }, + { + "id": 32879, + "cuisine": "italian", + "ingredients": [ + "eggs", + "garlic powder", + "italian seasoning", + "bread crumbs", + "salt", + "frozen chopped spinach", + "Italian cheese", + "ground turkey", + "ketchup", + "ground black pepper" + ] + }, + { + "id": 27194, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "cilantro", + "corn tortillas", + "half & half", + "green pepper", + "plum tomatoes", + "jalapeno chilies", + "cheese", + "onions", + "olive oil", + "butter", + "red bell pepper" + ] + }, + { + "id": 12795, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "corn tortillas", + "shredded cheddar cheese", + "salt", + "chicken", + "condensed cream of chicken soup", + "garlic", + "onions", + "chili powder", + "sour cream" + ] + }, + { + "id": 39885, + "cuisine": "italian", + "ingredients": [ + "canned low sodium chicken broth", + "dry white wine", + "onions", + "arborio rice", + "olive oil", + "salt", + "dried porcini mushrooms", + "butter", + "boiling water", + "spinach", + "grated parmesan cheese", + "cognac" + ] + }, + { + "id": 12490, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cooking oil", + "salt", + "swiss chard", + "garlic", + "ham", + "black-eyed peas", + "Tabasco Pepper Sauce", + "scallions", + "canned low sodium chicken broth", + "ground black pepper", + "white wine vinegar" + ] + }, + { + "id": 48619, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "cayenne pepper", + "pork butt", + "ground black pepper", + "liquid", + "dried oregano", + "coarse salt", + "garlic cloves", + "ground cumin", + "diced tomatoes", + "chipotle peppers" + ] + }, + { + "id": 36717, + "cuisine": "korean", + "ingredients": [ + "fresh shiitake mushrooms", + "dark brown sugar", + "toasted sesame oil", + "kosher salt", + "baby spinach", + "garlic cloves", + "noodles", + "soy sauce", + "vegetable oil", + "scallions", + "toasted sesame seeds", + "ground black pepper", + "yellow onion", + "carrots" + ] + }, + { + "id": 18017, + "cuisine": "vietnamese", + "ingredients": [ + "boneless chicken skinless thigh", + "Sriracha", + "bamboo shoots", + "minced garlic", + "oil", + "kosher salt", + "peanut sauce", + "Madras curry powder", + "sugar", + "chile paste", + "sliced shallots" + ] + }, + { + "id": 25055, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "dried shiitake mushrooms", + "water", + "ginger", + "chicken", + "short-grain rice", + "cheese", + "cilantro", + "scallions" + ] + }, + { + "id": 25440, + "cuisine": "southern_us", + "ingredients": [ + "country ham", + "coca-cola" + ] + }, + { + "id": 24706, + "cuisine": "russian", + "ingredients": [ + "white vinegar", + "minced garlic", + "worcestershire sauce", + "carrots", + "sugar", + "lean ground beef", + "paprika", + "fresh parsley", + "green cabbage", + "low sodium chicken broth", + "sea salt", + "bay leaf", + "no-salt-added diced tomatoes", + "vegetable oil", + "yellow onion", + "long grain white rice" + ] + }, + { + "id": 49027, + "cuisine": "moroccan", + "ingredients": [ + "prunes", + "extra-virgin olive oil", + "honey", + "lamb loin chops", + "mixed spice", + "salt", + "ground black pepper" + ] + }, + { + "id": 41287, + "cuisine": "indian", + "ingredients": [ + "Indian spice", + "tempeh", + "cherry tomatoes", + "fresh herbs", + "black beans", + "salsa", + "coconut oil", + "asparagus", + "cooked quinoa" + ] + }, + { + "id": 42601, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "pepper", + "buttermilk", + "pesto", + "pork tenderloin", + "salt", + "sugar", + "dijon mustard", + "rapid rise yeast", + "pecan halves", + "warm water", + "butter", + "biscuit mix" + ] + }, + { + "id": 13468, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "lemon juice", + "brown sugar", + "worcestershire sauce", + "whiskey", + "steak sauce", + "onion powder", + "garlic salt", + "hot pepper sauce", + "flavoring" + ] + }, + { + "id": 28697, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "ice water", + "vegetable shortening", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 13317, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "lime", + "Thai red curry paste", + "fish sauce", + "rice noodles", + "coconut milk", + "mint", + "sesame oil", + "rotisserie chicken", + "sugar", + "cilantro" + ] + }, + { + "id": 20041, + "cuisine": "spanish", + "ingredients": [ + "white bread", + "jalapeno chilies", + "extra-virgin olive oil", + "garlic cloves", + "plum tomatoes", + "jumbo shrimp", + "dry sherry", + "salt", + "red bell pepper", + "hungarian sweet paprika", + "cooking spray", + "white wine vinegar", + "fresh lemon juice", + "mussels", + "water", + "littleneck clams", + "blanched almonds", + "flat leaf parsley" + ] + }, + { + "id": 28382, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "large eggs", + "spinach", + "black pepper", + "garlic cloves", + "soy sauce", + "salt", + "fresh spinach", + "olive oil", + "onions" + ] + }, + { + "id": 33162, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "water", + "ancho powder", + "rosemary sprigs", + "chuck roast", + "cocoa powder", + "ground coffee", + "garlic powder", + "salt", + "ground cinnamon", + "kosher salt", + "flour", + "freshly ground pepper" + ] + }, + { + "id": 39373, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "honey", + "garlic", + "boneless chicken skinless thigh", + "rice wine", + "scallions", + "sake", + "fresh ginger", + "salt", + "water", + "sesame oil" + ] + }, + { + "id": 29645, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "granulated sugar", + "cracked black pepper", + "canola oil", + "water", + "ground red pepper", + "salt", + "turbinado", + "ground black pepper", + "paprika", + "pork shoulder boston butt", + "cider vinegar", + "cooking spray", + "crushed red pepper" + ] + }, + { + "id": 10867, + "cuisine": "french", + "ingredients": [ + "pepper", + "butter", + "onions", + "flour", + "garlic", + "dried basil", + "red wine", + "leg of veal", + "shallots", + "chopped parsley" + ] + }, + { + "id": 49161, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "poblano chiles", + "salsa verde", + "roasting chickens", + "chopped cilantro fresh", + "Emmenthal", + "sour cream", + "purple onion", + "corn tortillas" + ] + }, + { + "id": 42743, + "cuisine": "thai", + "ingredients": [ + "cilantro stems", + "garlic cloves", + "cooking spray", + "sea salt", + "coriander seeds", + "vegetable oil", + "white peppercorns", + "low sodium soy sauce", + "chicken breast halves", + "chicken leg quarters" + ] + }, + { + "id": 1957, + "cuisine": "french", + "ingredients": [ + "russet potatoes", + "bay leaf", + "fresh thyme", + "chopped onion", + "chives", + "low salt chicken broth", + "olive oil", + "large garlic cloves" + ] + }, + { + "id": 32537, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "lime", + "napa cabbage", + "cheese", + "creamy peanut butter", + "pepper", + "peanuts", + "cilantro", + "rice vinegar", + "carrots", + "sweet chili sauce", + "olive oil", + "whole wheat tortillas", + "salt", + "garlic cloves", + "brown sugar", + "sweet onion", + "boneless skinless chicken breasts", + "ginger", + "canned coconut milk", + "cumin" + ] + }, + { + "id": 15309, + "cuisine": "chinese", + "ingredients": [ + "lime", + "vegetable oil", + "chili sauce", + "asian fish sauce", + "soy sauce", + "rice noodles", + "chinese cabbage", + "chopped cilantro fresh", + "lime wedges", + "cilantro sprigs", + "garlic cloves", + "peeled fresh ginger", + "ground pork", + "scallions" + ] + }, + { + "id": 28286, + "cuisine": "southern_us", + "ingredients": [ + "sea salt", + "olive oil", + "rib", + "freshly ground pepper", + "barbecue sauce" + ] + }, + { + "id": 15039, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "cinnamon sticks", + "green cardamom pods", + "curry", + "canola oil", + "sugar", + "onions", + "clove", + "salt" + ] + }, + { + "id": 45772, + "cuisine": "french", + "ingredients": [ + "nutmeg", + "butter cooking spray", + "minced onion", + "salt", + "shallots", + "pepper", + "button mushrooms" + ] + }, + { + "id": 22746, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "salt", + "boneless skinless chicken breasts", + "ground cumin", + "cooking spray", + "salsa", + "shredded cheddar cheese", + "garlic" + ] + }, + { + "id": 11089, + "cuisine": "korean", + "ingredients": [ + "fresh spinach", + "soybean sprouts", + "minced garlic", + "doenzang", + "pepper", + "scallions", + "clams", + "salt" + ] + }, + { + "id": 43920, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "basil leaves", + "olive oil", + "mustard seeds", + "lime", + "yellow onion", + "green chile", + "potatoes", + "ground turmeric" + ] + }, + { + "id": 37175, + "cuisine": "greek", + "ingredients": [ + "manchego cheese", + "extra-virgin olive oil", + "fresh lemon juice", + "tomatoes", + "mint leaves", + "salt", + "pepper", + "lemon", + "chickpeas", + "cherries", + "garlic", + "arugula" + ] + }, + { + "id": 17921, + "cuisine": "filipino", + "ingredients": [ + "butter", + "pepper", + "onions", + "eggs", + "salt", + "roma tomatoes" + ] + }, + { + "id": 24274, + "cuisine": "indian", + "ingredients": [ + "butter", + "low salt chicken broth", + "finely chopped onion", + "apple juice", + "veal chops", + "garlic cloves", + "whipping cream", + "Madras curry powder" + ] + }, + { + "id": 19100, + "cuisine": "japanese", + "ingredients": [ + "superfine sugar", + "ice cubes", + "liqueur", + "water", + "melon", + "fresh lime juice" + ] + }, + { + "id": 971, + "cuisine": "italian", + "ingredients": [ + "dinner rolls", + "basil leaves", + "hot Italian sausages", + "roma tomatoes", + "fresh mozzarella", + "onions", + "bell pepper", + "extra-virgin olive oil", + "italian seasoning", + "minced garlic", + "balsamic vinegar", + "ground beef" + ] + }, + { + "id": 40294, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "baby spinach", + "frozen peas", + "prosciutto", + "bow-tie pasta", + "black pepper", + "shallots", + "fresh basil leaves", + "feta cheese", + "garlic" + ] + }, + { + "id": 16613, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "onion powder", + "corn tortillas", + "boneless skinless chicken breasts", + "cheese", + "garlic powder", + "paprika", + "cumin", + "tomato sauce", + "chili powder", + "salt" + ] + }, + { + "id": 15314, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "cooking oil", + "salt", + "low salt chicken broth", + "red kidney beans", + "dried thyme", + "large garlic cloves", + "green pepper", + "pepper", + "bay leaves", + "cayenne pepper", + "cooked white rice", + "ham steak", + "finely chopped onion", + "chopped celery", + "scallions" + ] + }, + { + "id": 43343, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "thai basil", + "jalapeno chilies", + "lime wedges", + "shrimp", + "bok choy", + "lime juice", + "Sriracha", + "whole cloves", + "cinnamon", + "beansprouts", + "soy sauce", + "lemon peel", + "low sodium chicken broth", + "rice noodles", + "chili garlic paste", + "onions", + "black peppercorns", + "coriander seeds", + "hoisin sauce", + "sesame oil", + "cilantro", + "ginger root" + ] + }, + { + "id": 8085, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cheese", + "balsamic vinegar", + "ground black pepper", + "olive oil flavored cooking spray", + "radicchio", + "salt" + ] + }, + { + "id": 29974, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "pink peppercorns", + "mace", + "butter", + "yellow onion", + "corn kernels", + "whole milk", + "salt", + "unsalted butter", + "buttermilk", + "white cornmeal" + ] + }, + { + "id": 44410, + "cuisine": "italian", + "ingredients": [ + "penne", + "bay leaves", + "crushed red pepper", + "red bell pepper", + "olive oil", + "dry red wine", + "garlic cloves", + "fat free less sodium chicken broth", + "pecorino romano cheese", + "purple onion", + "flat leaf parsley", + "crushed tomatoes", + "yellow bell pepper", + "salt", + "ground lamb" + ] + }, + { + "id": 29949, + "cuisine": "cajun_creole", + "ingredients": [ + "green olives", + "kaiser rolls", + "extra-virgin olive oil", + "flat leaf parsley", + "pepper", + "butter", + "hot sauce", + "boiling water", + "butter lettuce", + "chopped fresh thyme", + "garlic", + "giardiniera", + "sun-dried tomatoes", + "old bay seasoning", + "grouper" + ] + }, + { + "id": 27796, + "cuisine": "mexican", + "ingredients": [ + "half & half", + "salt", + "corn tortillas", + "minced garlic", + "chile pepper", + "margarine", + "shredded Monterey Jack cheese", + "chicken stock", + "chili powder", + "all-purpose flour", + "chicken", + "ground black pepper", + "vegetable oil", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 33030, + "cuisine": "french", + "ingredients": [ + "butter", + "water", + "bread flour", + "sugar", + "salt", + "active dry yeast" + ] + }, + { + "id": 38094, + "cuisine": "chinese", + "ingredients": [ + "dry white wine", + "soy sauce", + "garlic cloves", + "fillet red snapper", + "sesame oil", + "peeled fresh ginger", + "chopped cilantro fresh" + ] + }, + { + "id": 30345, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "onions", + "zucchini", + "corn kernel whole", + "green bell pepper", + "white sugar", + "vegetable oil", + "monterey jack" + ] + }, + { + "id": 14762, + "cuisine": "greek", + "ingredients": [ + "garlic cloves", + "couscous", + "olive oil", + "feta cheese crumbles", + "fresh spinach", + "fresh lemon juice", + "salt", + "red bell pepper" + ] + }, + { + "id": 3140, + "cuisine": "italian", + "ingredients": [ + "baking soda", + "salt", + "white chocolate", + "large eggs", + "dried cranberries", + "sugar", + "unsalted butter", + "all-purpose flour", + "sliced almonds", + "vanilla extract", + "unsweetened cocoa powder" + ] + }, + { + "id": 36964, + "cuisine": "british", + "ingredients": [ + "eggs", + "salt", + "water", + "beef drippings", + "all-purpose flour", + "milk" + ] + }, + { + "id": 29238, + "cuisine": "thai", + "ingredients": [ + "chicken breast tenders", + "salt", + "fish sauce", + "vegetable oil", + "onions", + "roasted red peppers", + "red curry paste", + "black pepper", + "light coconut milk", + "chopped cilantro fresh" + ] + }, + { + "id": 4447, + "cuisine": "japanese", + "ingredients": [ + "cremini mushrooms", + "firm silken tofu", + "crushed red pepper", + "soy sauce", + "vegetable oil", + "sodium free chicken broth", + "sugar", + "ramen noodles", + "salt", + "fresh spinach", + "fresh ginger", + "garlic", + "scallions" + ] + }, + { + "id": 32986, + "cuisine": "italian", + "ingredients": [ + "ground round", + "pepper", + "garlic", + "frozen chopped spinach", + "tomato sauce", + "egg whites", + "nonfat ricotta cheese", + "dough", + "vegetable oil cooking spray", + "grated parmesan cheese", + "nonfat cottage cheese", + "fennel seeds", + "bread crumbs", + "reduced fat provolone cheese" + ] + }, + { + "id": 24486, + "cuisine": "greek", + "ingredients": [ + "sea salt", + "greek yogurt", + "dill", + "garlic", + "olive oil", + "cucumber" + ] + }, + { + "id": 39287, + "cuisine": "greek", + "ingredients": [ + "frozen chopped spinach", + "garlic powder", + "feta cheese crumbles", + "phyllo dough", + "salt", + "melted butter", + "processed cheese", + "white vinegar", + "pepper", + "shredded mozzarella cheese" + ] + }, + { + "id": 33957, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "yoghurt", + "diced tomatoes", + "cayenne pepper", + "ground cinnamon", + "ground black pepper", + "butter", + "garlic", + "chopped cilantro fresh", + "garam masala", + "boneless skinless chicken breasts", + "paprika", + "lemon juice", + "tomato sauce", + "jalapeno chilies", + "heavy cream", + "salt", + "ground cumin" + ] + }, + { + "id": 220, + "cuisine": "jamaican", + "ingredients": [ + "fresh coriander", + "potatoes", + "bay leaf", + "ground nutmeg", + "pumpkin", + "chicken stock", + "low-fat buttermilk", + "garlic cloves", + "dried thyme", + "jalapeno chilies", + "onions" + ] + }, + { + "id": 17366, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "bay leaves", + "white vinegar", + "beef shank", + "granulated white sugar", + "water", + "garlic", + "whole peppercorn", + "cooking oil" + ] + }, + { + "id": 11970, + "cuisine": "chinese", + "ingredients": [ + "tomatoes", + "top sirloin steak", + "soy sauce", + "corn starch", + "green bell pepper", + "purple onion", + "ground ginger", + "vegetable oil", + "white sugar" + ] + }, + { + "id": 44582, + "cuisine": "french", + "ingredients": [ + "grape tomatoes", + "watercress", + "dijon mustard", + "salt", + "red wine vinegar", + "freshly ground pepper", + "salad greens", + "extra-virgin olive oil" + ] + }, + { + "id": 44449, + "cuisine": "mexican", + "ingredients": [ + "sliced black olives", + "sour cream", + "tomatoes", + "salsa", + "green onions", + "shredded cheddar cheese", + "cream cheese" + ] + }, + { + "id": 28379, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "cilantro", + "garlic cloves", + "onions", + "canola oil", + "lime", + "egg yolks", + "cayenne pepper", + "chipotles in adobo", + "cabbage", + "olive oil", + "habanero", + "filet", + "adobo sauce", + "mango", + "cider vinegar", + "ground black pepper", + "salt", + "corn tortillas", + "cumin" + ] + }, + { + "id": 12163, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "fresh orange juice", + "onions", + "avocado", + "lime wedges", + "garlic cloves", + "boneless pork shoulder", + "ground pepper", + "cilantro leaves", + "milk", + "coarse salt", + "corn tortillas" + ] + }, + { + "id": 2267, + "cuisine": "british", + "ingredients": [ + "demerara sugar", + "whole milk", + "marmalade", + "ground ginger", + "unsalted butter", + "golden raisins", + "bread", + "sugar", + "dark rum", + "eggs", + "egg yolks", + "heavy cream" + ] + }, + { + "id": 17451, + "cuisine": "jamaican", + "ingredients": [ + "shortening", + "water", + "flour", + "margarine", + "cold water", + "white onion", + "dried thyme", + "lean ground beef", + "bread crumbs", + "curry powder", + "beef stock", + "oil", + "eggs", + "pepper", + "ground black pepper", + "salt" + ] + }, + { + "id": 20384, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "olive oil", + "lime juice", + "garlic cloves", + "kosher salt", + "serrano peppers", + "fresh cilantro", + "pepitas" + ] + }, + { + "id": 15961, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "chili powder", + "ground coriander", + "onions", + "zucchini", + "coarse sea salt", + "oil", + "baking soda", + "lemon", + "cumin seed", + "ground cumin", + "water", + "flour", + "salt", + "fresh mint" + ] + }, + { + "id": 28098, + "cuisine": "greek", + "ingredients": [ + "red potato", + "artichoke hearts", + "leeks", + "pepper", + "large eggs", + "chopped fresh mint", + "bread crumbs", + "feta cheese", + "salt", + "olive oil", + "grated parmesan cheese", + "dried oregano" + ] + }, + { + "id": 5729, + "cuisine": "chinese", + "ingredients": [ + "salt", + "szechwan peppercorns" + ] + }, + { + "id": 15055, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "eggplant", + "fine sea salt", + "onions", + "fresh ginger", + "red pepper flakes", + "mustard seeds", + "coconut oil", + "garam masala", + "cumin seed", + "full fat coconut milk", + "garlic", + "chopped cilantro" + ] + }, + { + "id": 4335, + "cuisine": "greek", + "ingredients": [ + "plain yogurt", + "red wine vinegar", + "fresh lemon juice", + "flatbread", + "ground black pepper", + "extra-virgin olive oil", + "cucumber", + "fresh dill", + "boneless skinless chicken breasts", + "purple onion", + "dried oregano", + "tomatoes", + "dried thyme", + "kalamata", + "feta cheese crumbles" + ] + }, + { + "id": 43032, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "extra firm tofu", + "sprinkles", + "ground white pepper", + "red chili peppers", + "sesame oil", + "rice vinegar", + "sugar", + "spring onions", + "garlic", + "panko breadcrumbs", + "low sodium soy sauce", + "sesame seeds", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 38176, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "peeled fresh ginger", + "snow peas", + "bell pepper", + "garlic cloves", + "lo mein noodles", + "vegetable oil", + "cremini mushrooms", + "pork tenderloin", + "toasted sesame oil" + ] + }, + { + "id": 7110, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "grated parmesan cheese", + "salt", + "dried basil", + "heavy cream", + "italian seasoning", + "pepper", + "boneless skinless chicken breasts", + "penne pasta", + "chicken broth", + "olive oil", + "garlic" + ] + }, + { + "id": 1761, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "pancetta", + "green beans", + "chopped fresh sage", + "sea salt", + "fleur de sel" + ] + }, + { + "id": 27695, + "cuisine": "mexican", + "ingredients": [ + "clove", + "pasilla chiles", + "sesame seeds", + "Mexican oregano", + "garlic", + "cumin seed", + "flavoring", + "french rolls", + "plantains", + "black peppercorns", + "water", + "boneless turkey breast", + "large garlic cloves", + "mexican chocolate", + "pepitas", + "ancho chile pepper", + "plum tomatoes", + "piloncillo", + "white onion", + "almonds", + "tomatillos", + "fine sea salt", + "allspice berries", + "lard", + "canela", + "bread", + "pecans", + "dried thyme", + "mulato chiles", + "anise", + "roasted peanuts", + "low salt chicken broth", + "corn tortillas", + "canola oil" + ] + }, + { + "id": 43857, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "paprika", + "ground black pepper", + "whole milk", + "sharp cheddar cheese", + "large eggs", + "salt", + "hot pepper sauce", + "quickcooking grits", + "garlic cloves" + ] + }, + { + "id": 19677, + "cuisine": "southern_us", + "ingredients": [ + "bread mix", + "garlic", + "margarine", + "fresh parsley", + "chopped green bell pepper", + "salt", + "poultry seasoning", + "eggs", + "chopped celery", + "chopped onion", + "chicken broth", + "dried sage", + "dry bread crumbs", + "sausages" + ] + }, + { + "id": 7531, + "cuisine": "italian", + "ingredients": [ + "garlic cloves", + "parsley", + "grated lemon peel" + ] + }, + { + "id": 32694, + "cuisine": "cajun_creole", + "ingredients": [ + "melted butter", + "milk", + "fish broth", + "Tabasco Pepper Sauce", + "carrots", + "corn flour", + "white flour", + "baking soda", + "chives", + "salt", + "thyme", + "eggs", + "olive oil", + "bay leaves", + "heavy cream", + "shrimp", + "corn kernel whole", + "tomato paste", + "white wine", + "granulated sugar", + "baking powder", + "chopped onion", + "corn starch" + ] + }, + { + "id": 22139, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "cheese tortellini", + "lean ground beef", + "marinara sauce", + "fresh mushrooms", + "italian sausage", + "diced tomatoes" + ] + }, + { + "id": 17327, + "cuisine": "italian", + "ingredients": [ + "ricotta salata", + "large garlic cloves", + "grape tomatoes", + "olive oil", + "mesclun", + "honey", + "salt", + "black pepper", + "lemon", + "country bread" + ] + }, + { + "id": 21216, + "cuisine": "irish", + "ingredients": [ + "ground black pepper", + "ground allspice", + "milk", + "yellow onion", + "pork blood", + "salt", + "pinhead oatmeal", + "fresh pork fat" + ] + }, + { + "id": 17276, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "mozzarella cheese", + "ricotta", + "red bell pepper", + "romano cheese", + "ground veal", + "carrots", + "prepared lasagne", + "tomatoes", + "olive oil", + "garlic cloves", + "onions", + "eggs", + "mushrooms", + "fresh parsley leaves", + "fresh basil leaves" + ] + }, + { + "id": 31264, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "coarse salt", + "large eggs", + "russet potatoes", + "grated parmesan cheese", + "all-purpose flour", + "marinara sauce" + ] + }, + { + "id": 6182, + "cuisine": "spanish", + "ingredients": [ + "baguette", + "potatoes", + "onions", + "clove", + "unsalted butter", + "garlic cloves", + "cabbage", + "parsley sprigs", + "fresh thyme", + "California bay leaves", + "water", + "white beans", + "smoked ham hocks" + ] + }, + { + "id": 23748, + "cuisine": "italian", + "ingredients": [ + "bread", + "sugar", + "rosemary", + "extra-virgin olive oil", + "flour for dusting", + "flat leaf parsley", + "tomato paste", + "dried porcini mushrooms", + "ground veal", + "garlic cloves", + "spaghettini", + "pure olive oil", + "skim milk", + "large eggs", + "salt", + "thyme", + "onions", + "chicken stock", + "italian tomatoes", + "shallots", + "freshly ground pepper", + "hot water" + ] + }, + { + "id": 26161, + "cuisine": "italian", + "ingredients": [ + "lemon extract", + "vanilla extract", + "white sugar", + "vegetable oil", + "orange juice", + "eggs", + "almond extract", + "anise extract", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 8905, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "shredded Monterey Jack cheese", + "sliced black olives", + "onions", + "picante sauce", + "sour cream", + "flour tortillas", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 11096, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "Mexican oregano", + "fresh orange juice", + "dried guajillo chiles", + "cola", + "chiles", + "caramels", + "Mexican beer", + "dark brown sugar", + "fresh lime juice", + "white corn tortillas", + "orange", + "vegetable oil", + "garlic", + "ancho chile pepper", + "black pepper", + "distilled vinegar", + "pineapple", + "cumin seed", + "pork shoulder" + ] + }, + { + "id": 33159, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "large garlic cloves", + "onions", + "chiles", + "vegetable oil", + "cucumber", + "chicken", + "minced ginger", + "coarse salt", + "greek yogurt", + "fennel seeds", + "lime wedges", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 21171, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "fresh ginger root", + "cayenne pepper", + "fresh pineapple", + "lime juice", + "jalapeno chilies", + "sour cream", + "ground cumin", + "olive oil", + "salt", + "chopped cilantro fresh", + "pepper", + "flour tortillas", + "mahi mahi fillets", + "mango" + ] + }, + { + "id": 22769, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red wine vinegar", + "tomato sauce", + "fennel bulb", + "red bell pepper", + "fresh basil", + "eggplant", + "large garlic cloves", + "pitted kalamata olives", + "golden raisins" + ] + }, + { + "id": 17599, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "salt", + "diced tomatoes", + "onions", + "crushed red pepper", + "bacon", + "long-grain rice" + ] + }, + { + "id": 13500, + "cuisine": "italian", + "ingredients": [ + "capers", + "extra-virgin olive oil", + "garlic cloves", + "prosciutto", + "anchovy fillets", + "grated lemon peel", + "grated orange peel", + "ficelle", + "fresh lemon juice", + "fresh basil", + "chees fresh mozzarella", + "Niçoise olives" + ] + }, + { + "id": 43588, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "cooking spray", + "ground black pepper", + "roasted garlic", + "fresh parmesan cheese", + "salt", + "tomatoes", + "zucchini", + "chopped onion" + ] + }, + { + "id": 21285, + "cuisine": "italian", + "ingredients": [ + "butter", + "chopped walnuts", + "baking powder", + "all-purpose flour", + "eggs", + "vanilla extract", + "ground cinnamon", + "raisins", + "white sugar" + ] + }, + { + "id": 32301, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "bacon slices", + "large eggs", + "shredded sharp cheddar cheese", + "biscuits", + "butter", + "salt", + "sweet onion", + "whipping cream" + ] + }, + { + "id": 45090, + "cuisine": "mexican", + "ingredients": [ + "tomato purée", + "whole kernel corn, drain", + "water", + "ground beef", + "tomato sauce", + "pinto beans", + "taco seasoning mix", + "onions" + ] + }, + { + "id": 30319, + "cuisine": "italian", + "ingredients": [ + "red pepper", + "fresh basil leaves", + "pecorino cheese", + "blanched almonds", + "fennel seeds", + "extra-virgin olive oil", + "serrano chile", + "mint leaves", + "garlic cloves" + ] + }, + { + "id": 6085, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "mint leaves", + "water", + "mint sprigs", + "white wine", + "lemon", + "peaches", + "whipping cream" + ] + }, + { + "id": 11691, + "cuisine": "italian", + "ingredients": [ + "mussels", + "dried basil", + "garlic", + "sliced mushrooms", + "dried oregano", + "fettucine", + "sliced carrots", + "chopped onion", + "cornmeal", + "tomatoes", + "dry white wine", + "salt", + "red bell pepper", + "black pepper", + "crushed red pepper flakes", + "low salt chicken broth", + "fresh parsley" + ] + }, + { + "id": 19200, + "cuisine": "indian", + "ingredients": [ + "finely chopped onion", + "oil", + "chat masala", + "salt", + "dough", + "chili powder", + "garam masala", + "cilantro leaves" + ] + }, + { + "id": 16840, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "green onions", + "salt", + "oil", + "pepper", + "red pepper flakes", + "all-purpose flour", + "ginger root", + "soy sauce", + "boneless skinless chicken breasts", + "rice vinegar", + "corn starch", + "eggs", + "water", + "garlic", + "orange juice" + ] + }, + { + "id": 20787, + "cuisine": "southern_us", + "ingredients": [ + "vanilla extract", + "quick-cooking oats", + "white sugar", + "milk", + "peanut butter", + "butter", + "unsweetened cocoa powder" + ] + }, + { + "id": 9644, + "cuisine": "french", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "butter", + "fresh parsley", + "chopped fresh chives", + "all-purpose flour", + "water", + "1% low-fat milk" + ] + }, + { + "id": 27908, + "cuisine": "french", + "ingredients": [ + "fresh leav spinach", + "grated parmesan cheese", + "butter", + "garlic cloves", + "ground black pepper", + "shallots", + "part-skim ricotta cheese", + "olive oil", + "leeks", + "whipping cream", + "red bell pepper", + "large eggs", + "swiss cheese", + "salt" + ] + }, + { + "id": 1585, + "cuisine": "southern_us", + "ingredients": [ + "cheese", + "onions", + "eggs", + "sour cream", + "bacon drippings", + "oil", + "corn", + "cornmeal" + ] + }, + { + "id": 4845, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "chopped cilantro", + "tomatoes", + "jalapeno chilies", + "lime juice", + "white onion", + "fine salt" + ] + }, + { + "id": 17396, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "sausage casings", + "chile pepper", + "shredded cheddar cheese", + "purple onion", + "eggs", + "cooking spray" + ] + }, + { + "id": 33618, + "cuisine": "spanish", + "ingredients": [ + "ground pepper", + "garlic", + "low salt chicken broth", + "chorizo sausage", + "kosher salt", + "boneless skinless chicken breasts", + "rice", + "medium shrimp", + "fresh rosemary", + "roasted red peppers", + "yellow onion", + "chopped parsley", + "olive oil", + "diced tomatoes", + "spanish paprika", + "saffron" + ] + }, + { + "id": 6497, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "cayenne", + "ginger", + "peanut butter", + "coriander", + "kosher salt", + "sesame oil", + "rice vinegar", + "rice flour", + "chicken wings", + "garlic powder", + "vegetable oil", + "all-purpose flour", + "coconut milk", + "soy sauce", + "green onions", + "dipping sauces", + "garlic cloves" + ] + }, + { + "id": 23329, + "cuisine": "french", + "ingredients": [ + "sugar", + "whole milk", + "Grand Marnier", + "large egg yolks", + "vanilla", + "large egg whites", + "oil of orange", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 38951, + "cuisine": "chinese", + "ingredients": [ + "sea scallops", + "salt", + "ground white pepper", + "won ton wrappers", + "ground pork", + "corn starch", + "napa cabbage leaves", + "dried shiitake mushrooms", + "sugar", + "sesame oil", + "carrots" + ] + }, + { + "id": 19833, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "sesame oil", + "salad oil", + "chicken stock", + "water", + "cayenne pepper", + "tofu", + "pepper", + "ground pork", + "potato starch", + "leeks", + "red miso" + ] + }, + { + "id": 25130, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "pork tenderloin", + "star anise", + "soy sauce", + "cinnamon", + "ground white pepper", + "sugar", + "sesame oil", + "pineapple juice", + "dark soy sauce", + "vegetable oil spray", + "sea salt" + ] + }, + { + "id": 46563, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "minced garlic", + "ground black pepper", + "ground red pepper", + "diced celery", + "diced onions", + "green bell pepper", + "dried thyme", + "bay leaves", + "salt", + "sliced green onions", + "chicken broth", + "dried basil", + "seafood seasoning", + "diced tomatoes", + "shrimp", + "fennel seeds", + "sole fillet", + "olive oil", + "dry white wine", + "hot sauce" + ] + }, + { + "id": 6835, + "cuisine": "southern_us", + "ingredients": [ + "warm water", + "salt", + "sugar", + "vegetable oil", + "pecan halves", + "dry yeast", + "chopped pecans", + "ground cinnamon", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 19469, + "cuisine": "indian", + "ingredients": [ + "seeds", + "oil", + "salt", + "black gram", + "rice" + ] + }, + { + "id": 37950, + "cuisine": "italian", + "ingredients": [ + "eggs", + "lasagna noodles", + "red pepper flakes", + "shredded mozzarella cheese", + "onions", + "crushed tomatoes", + "whole milk ricotta cheese", + "extra-virgin olive oil", + "flat leaf parsley", + "oregano", + "tomato sauce", + "grated parmesan cheese", + "basil", + "sausage meat", + "chopped fresh mint", + "tomato paste", + "ground black pepper", + "fresh mozzarella", + "salt", + "ground beef", + "chopped garlic" + ] + }, + { + "id": 11838, + "cuisine": "indian", + "ingredients": [ + "mild curry paste", + "onions", + "chickpeas", + "cherry tomatoes", + "basmati rice", + "spinach", + "lemon juice" + ] + }, + { + "id": 29282, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "mirin", + "napa cabbage", + "savoy cabbage", + "cod fillets", + "vegetable oil", + "snow peas", + "white miso", + "peeled fresh ginger", + "garlic cloves", + "water", + "tahini", + "seasoned rice wine vinegar" + ] + }, + { + "id": 15937, + "cuisine": "chinese", + "ingredients": [ + "lime juice", + "green onions", + "garlic", + "pork butt", + "hawaiian sweet rolls", + "hoisin sauce", + "pineapple", + "chili sauce", + "fish sauce", + "honey", + "sesame oil", + "pineapple juice", + "soy sauce", + "red cabbage", + "ginger", + "chinese five-spice powder" + ] + }, + { + "id": 15656, + "cuisine": "italian", + "ingredients": [ + "reduced fat cheddar cheese", + "cooking spray", + "chopped cilantro fresh", + "large egg whites", + "salt", + "black pepper", + "green onions", + "grape tomatoes", + "large eggs", + "frozen corn" + ] + }, + { + "id": 26077, + "cuisine": "indian", + "ingredients": [ + "green chile", + "heavy cream", + "salt", + "ghee", + "cayenne", + "urad dal", + "ground coriander", + "tomatoes", + "vegetable oil", + "garlic", + "cumin seed", + "asafoetida", + "ginger", + "yellow onion", + "ground cumin" + ] + }, + { + "id": 14140, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "cinnamon", + "ground coriander", + "onions", + "tumeric", + "cooking oil", + "garlic", + "chopped cilantro", + "ground cumin", + "ground black pepper", + "peas", + "lemon juice", + "boiling potatoes", + "plain yogurt", + "whole milk", + "salt", + "ground beef" + ] + }, + { + "id": 2865, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "unsalted butter", + "salt", + "pepper", + "shallots", + "sage", + "parmesan cheese", + "wonton skins", + "nutmeg", + "butternut squash", + "ricotta" + ] + }, + { + "id": 45047, + "cuisine": "spanish", + "ingredients": [ + "hot red pepper flakes", + "garlic cloves", + "oloroso sherry", + "olive oil", + "red bell pepper", + "cooked ham", + "fresh parsley leaves", + "crusty bread", + "salt", + "large shrimp" + ] + }, + { + "id": 18073, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime juice", + "flour", + "oil", + "pepper", + "diced red onions", + "salt", + "ground cumin", + "tilapia fillets", + "jalapeno chilies", + "cayenne pepper", + "tomatoes", + "beer batter", + "cilantro", + "corn tortillas" + ] + }, + { + "id": 28884, + "cuisine": "cajun_creole", + "ingredients": [ + "catfish fillets", + "garlic powder", + "chili powder", + "black pepper", + "ground red pepper", + "dried oregano", + "yellow corn meal", + "cooking spray", + "onion powder", + "seasoning salt", + "lemon wedge", + "ground cumin" + ] + }, + { + "id": 16658, + "cuisine": "italian", + "ingredients": [ + "orange", + "whole milk", + "all purpose unbleached flour", + "purple grapes", + "pure vanilla extract", + "large eggs", + "butter", + "extra-virgin olive oil", + "unsalted butter", + "baking powder", + "sea salt", + "sugar", + "flour", + "lemon", + "confectioners sugar" + ] + }, + { + "id": 32209, + "cuisine": "italian", + "ingredients": [ + "water", + "vanilla ice cream", + "olive oil", + "figs", + "butter", + "honey" + ] + }, + { + "id": 12392, + "cuisine": "mexican", + "ingredients": [ + "red potato", + "cooking spray", + "beef broth", + "chopped cilantro", + "won ton wrappers", + "cilantro sprigs", + "garlic cloves", + "cold water", + "finely chopped onion", + "salt", + "corn starch", + "black pepper", + "top sirloin", + "ground allspice", + "ground cumin" + ] + }, + { + "id": 6736, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "butter", + "milk", + "noodles", + "water", + "dried parsley", + "chicken bouillon", + "garlic powder" + ] + }, + { + "id": 23594, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "brown sugar", + "vegetable oil", + "warm water", + "salt", + "eggs", + "flour" + ] + }, + { + "id": 21122, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "diced tomatoes", + "hot sauce", + "chopped cilantro fresh", + "pepper", + "potatoes", + "garlic", + "fat skimmed chicken broth", + "clams", + "low-fat vegetarian chili with beans", + "peas", + "frozen corn kernels", + "lime juice", + "chili powder", + "salt", + "onions" + ] + }, + { + "id": 17643, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "parsley", + "cheese", + "large eggs" + ] + }, + { + "id": 2891, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "milk", + "buttermilk", + "peanut oil", + "sugar", + "green tomatoes", + "salt", + "cream cheese, soften", + "fresh basil", + "basil leaves", + "paprika", + "garlic cloves", + "bacon drippings", + "pepper", + "tomatillos", + "goat cheese" + ] + }, + { + "id": 38213, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "ground black pepper", + "garlic", + "tomato paste", + "whole wheat flour", + "chili powder", + "onions", + "ground ginger", + "olive oil", + "boneless skinless chicken breasts", + "cilantro leaves", + "kosher salt", + "garam masala", + "light coconut milk" + ] + }, + { + "id": 33637, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "manchego cheese", + "red pepper", + "garlic cloves", + "olive oil", + "zucchini", + "purple onion", + "olives", + "bread crumb fresh", + "ground black pepper", + "basil", + "flat leaf parsley", + "tomatoes", + "eggplant", + "flour", + "salt", + "chorizo sausage" + ] + }, + { + "id": 39012, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "salt", + "cucumber", + "white vinegar", + "chopped green bell pepper", + "chopped onion", + "water", + "hot sauce", + "dried oregano", + "tomatoes", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 18440, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "cumin", + "fresh cilantro", + "salt", + "minced garlic", + "tomatoes with juice", + "lime", + "chopped onion" + ] + }, + { + "id": 33587, + "cuisine": "jamaican", + "ingredients": [ + "ground ginger", + "dried thyme", + "onion powder", + "ground allspice", + "dried chives", + "ground nutmeg", + "fine sea salt", + "ground cinnamon", + "garlic powder", + "cracked black pepper", + "ground coriander", + "light brown sugar", + "ground cloves", + "ground red pepper", + "onion flakes" + ] + }, + { + "id": 17455, + "cuisine": "british", + "ingredients": [ + "frozen pastry puff sheets", + "pork", + "beaten eggs", + "dijon mustard" + ] + }, + { + "id": 6548, + "cuisine": "southern_us", + "ingredients": [ + "canned black beans", + "seasoned bread crumbs", + "prepared horseradish", + "jalapeno chilies", + "chili powder", + "buttermilk", + "purple onion", + "salsa", + "crispy rice cereal", + "chicken", + "eggs", + "kosher salt", + "milk", + "cream of chicken soup", + "hard-boiled egg", + "Tabasco Pepper Sauce", + "garlic", + "cilantro leaves", + "creole seasoning", + "long grain white rice", + "mustard", + "black pepper", + "shredded cheddar cheese", + "ground black pepper", + "low sodium chicken broth", + "onion powder", + "paprika", + "salt", + "green pepper", + "boneless skinless chicken breast halves", + "mayonaise", + "cider vinegar", + "garlic powder", + "boneless chicken breast halves", + "boneless skinless chicken breasts", + "butter", + "chopped celery", + "all-purpose flour", + "scallions", + "corn kernel whole" + ] + }, + { + "id": 32327, + "cuisine": "italian", + "ingredients": [ + "white onion", + "dry white wine", + "salt", + "arborio rice", + "unsalted butter", + "butter", + "parmesan cheese", + "vegetable stock", + "pesto", + "parmigiano reggiano cheese", + "cracked black pepper" + ] + }, + { + "id": 15067, + "cuisine": "mexican", + "ingredients": [ + "cilantro", + "lime", + "salt", + "avocado", + "purple onion", + "jalapeno chilies" + ] + }, + { + "id": 30716, + "cuisine": "southern_us", + "ingredients": [ + "frozen lemonade concentrate", + "fresh mint", + "tea bags", + "bourbon whiskey", + "cold water", + "water", + "sugar", + "citrus slices" + ] + }, + { + "id": 31993, + "cuisine": "italian", + "ingredients": [ + "warm water", + "all purpose unbleached flour", + "salt", + "active dry yeast" + ] + }, + { + "id": 41468, + "cuisine": "mexican", + "ingredients": [ + "cocktail cherries", + "ice", + "kirschenliqueur", + "kirschwasser", + "rye whiskey", + "chocolate", + "mezcal" + ] + }, + { + "id": 10546, + "cuisine": "irish", + "ingredients": [ + "white onion", + "vegetable broth", + "salt and ground black pepper", + "carrots", + "olive oil", + "garlic", + "dried sage", + "celery" + ] + }, + { + "id": 31351, + "cuisine": "jamaican", + "ingredients": [ + "scotch bonnet chile", + "thyme sprigs", + "water", + "scallions", + "black pepper", + "salt", + "allspice", + "shell-on shrimp", + "garlic cloves" + ] + }, + { + "id": 3218, + "cuisine": "italian", + "ingredients": [ + "asiago", + "cayenne pepper", + "ground black pepper" + ] + }, + { + "id": 12032, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "bay leaves", + "garlic cloves", + "juniper berries", + "extra-virgin olive oil", + "boneless pork shoulder roast", + "dry white wine", + "sage", + "whole milk", + "fine sea salt" + ] + }, + { + "id": 2368, + "cuisine": "southern_us", + "ingredients": [ + "mustard", + "olive oil", + "chili powder", + "salt", + "onions", + "chicken stock", + "dried thyme", + "large eggs", + "dry red wine", + "flat leaf parsley", + "mashed potatoes", + "shiitake", + "bacon", + "all-purpose flour", + "dried oregano", + "boneless chicken skinless thigh", + "ground black pepper", + "paprika", + "garlic cloves" + ] + }, + { + "id": 44319, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "sugar", + "meyer lemon", + "water" + ] + }, + { + "id": 7228, + "cuisine": "southern_us", + "ingredients": [ + "water", + "butter", + "roast", + "cayenne pepper", + "ground black pepper", + "salt", + "brown sugar", + "apple cider vinegar" + ] + }, + { + "id": 17628, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "vegetable oil", + "firm tofu", + "soy sauce", + "sesame oil", + "rice vinegar", + "tomatoes", + "mirin", + "purple onion", + "sesame seeds", + "garlic", + "chopped cilantro" + ] + }, + { + "id": 45834, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "button mushrooms", + "ground black pepper", + "vegetable oil", + "onions", + "quick oats", + "salt", + "warm water", + "ground sirloin", + "all-purpose flour" + ] + }, + { + "id": 42320, + "cuisine": "spanish", + "ingredients": [ + "frozen lemonade concentrate", + "seedless red grapes", + "seedless green grape", + "peach vodka", + "white peaches", + "white sugar", + "dry white wine" + ] + }, + { + "id": 540, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "nori", + "white rice", + "water", + "salt" + ] + }, + { + "id": 6932, + "cuisine": "british", + "ingredients": [ + "pastry", + "Pale Ale", + "salt", + "onions", + "dried thyme", + "garlic", + "fresh mushrooms", + "potatoes", + "beef stew meat", + "fresh parsley", + "pepper", + "worcestershire sauce", + "all-purpose flour" + ] + }, + { + "id": 37342, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "freshly ground pepper", + "salt", + "white sandwich bread", + "mayonaise", + "orange juice", + "grated orange", + "dry mustard", + "Madras curry powder" + ] + }, + { + "id": 16025, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "queso asadero", + "garlic", + "chayotes", + "yellow squash", + "chili powder", + "salt", + "zucchini", + "vegetable oil", + "cayenne pepper", + "pepper", + "jicama", + "purple onion", + "ground cumin" + ] + }, + { + "id": 5202, + "cuisine": "french", + "ingredients": [ + "brewed coffee", + "chocolate morsels", + "sliced pears", + "apples", + "kahlúa", + "angel food cake", + "sweetened condensed milk", + "mini marshmallows", + "pound cake" + ] + }, + { + "id": 48152, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "stewed tomatoes", + "chopped parsley", + "tomato paste", + "ground black pepper", + "firm tofu", + "frozen chopped spinach", + "olive oil", + "salt", + "fresh basil", + "lasagna noodles", + "chopped onion" + ] + }, + { + "id": 25810, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "ground pepper", + "parsley", + "hot sauce", + "steak", + "milk", + "large eggs", + "salt", + "oil", + "minced garlic", + "cayenne", + "buttermilk", + "sauce", + "chicken stock", + "garlic powder", + "shallots", + "all-purpose flour", + "corn starch" + ] + }, + { + "id": 35723, + "cuisine": "greek", + "ingredients": [ + "chicken broth", + "lemon", + "pepper", + "cold water", + "orzo pasta", + "eggs", + "salt" + ] + }, + { + "id": 44368, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "black-eyed peas", + "diced onions", + "sugar", + "collard greens", + "vegetable oil", + "chopped cooked ham", + "pepper" + ] + }, + { + "id": 25263, + "cuisine": "irish", + "ingredients": [ + "fine sea salt", + "salted butter", + "corn starch", + "sugar", + "all-purpose flour", + "vanilla extract" + ] + }, + { + "id": 1743, + "cuisine": "greek", + "ingredients": [ + "grated orange peel", + "unsalted butter", + "cinnamon sticks", + "sugar", + "whole milk", + "semolina flour", + "large eggs", + "phyllo pastry", + "water", + "vanilla extract" + ] + }, + { + "id": 28156, + "cuisine": "mexican", + "ingredients": [ + "water", + "strawberries", + "jack cheese", + "frozen corn", + "tamales", + "sliced olives", + "rice", + "frozen limeade", + "salsa" + ] + }, + { + "id": 37611, + "cuisine": "chinese", + "ingredients": [ + "ginger", + "bird chile", + "spring onions", + "garlic cloves", + "light soy sauce", + "cilantro leaves", + "wood ear mushrooms", + "sesame oil", + "chinese black vinegar" + ] + }, + { + "id": 45861, + "cuisine": "russian", + "ingredients": [ + "large eggs", + "salt", + "vegetable oil", + "sour cream", + "potatoes", + "all-purpose flour", + "pepper", + "whipping cream", + "caviar" + ] + }, + { + "id": 44607, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "cajun seasoning", + "peanut oil", + "fresh parsley", + "ground red pepper", + "all-purpose flour", + "red bell pepper", + "potatoes", + "bacon", + "garlic cloves", + "onions", + "chicken broth", + "chicken breasts", + "hot sauce", + "celery" + ] + }, + { + "id": 28725, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "large garlic cloves", + "soy sauce", + "sesame oil", + "snow peas", + "hot red pepper flakes", + "peeled fresh ginger", + "frozen peas", + "sugar pea", + "vegetable oil" + ] + }, + { + "id": 36537, + "cuisine": "irish", + "ingredients": [ + "mini marshmallows", + "brown sugar", + "cereal", + "butter", + "popped popcorn", + "sprinkles" + ] + }, + { + "id": 10711, + "cuisine": "mexican", + "ingredients": [ + "cinnamon sticks", + "honey", + "almond extract", + "tequila" + ] + }, + { + "id": 43646, + "cuisine": "filipino", + "ingredients": [ + "caster sugar", + "Edam", + "plain flour", + "evaporated milk", + "water", + "eggs", + "baking powder" + ] + }, + { + "id": 18168, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "fresh mozzarella", + "flour for dusting", + "tomato sauce", + "mushrooms", + "garlic", + "spinach leaves", + "unsalted butter", + "sea salt", + "olive oil", + "fresh thyme leaves", + "pizza doughs" + ] + }, + { + "id": 9216, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "bay scallops", + "bottled clam juice", + "garlic cloves", + "tomatoes", + "olive oil", + "shrimp", + "penne", + "whipping cream" + ] + }, + { + "id": 16496, + "cuisine": "italian", + "ingredients": [ + "capers", + "diced red onions", + "eggplant", + "red wine vinegar", + "tomatoes", + "ground black pepper", + "fresh mint", + "olive oil", + "crumbled ricotta salata cheese" + ] + }, + { + "id": 29536, + "cuisine": "italian", + "ingredients": [ + "eggs", + "lasagna noodles", + "fresh parsley", + "pasta sauce", + "lean ground beef", + "part-skim mozzarella", + "grated parmesan cheese", + "water", + "ricotta cheese" + ] + }, + { + "id": 1742, + "cuisine": "chinese", + "ingredients": [ + "molasses", + "fat skimmed chicken broth", + "dark soy sauce", + "granulated sugar", + "bone in chicken thighs", + "fresh ginger", + "salad oil", + "rock sugar", + "salt", + "sliced green onions" + ] + }, + { + "id": 23932, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "ground turmeric", + "green cabbage", + "pimentos", + "celery seed", + "cider vinegar", + "mustard seeds", + "green bell pepper", + "vegetable oil", + "onions" + ] + }, + { + "id": 34552, + "cuisine": "greek", + "ingredients": [ + "orange", + "whole milk", + "phyllo dough", + "unsalted butter", + "orange juice", + "eggs", + "semolina", + "vanilla extract", + "water", + "granulated sugar" + ] + }, + { + "id": 29864, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "apples", + "chicken broth", + "butternut squash", + "Italian cheese blend", + "salt and ground black pepper", + "garlic", + "milk", + "butter", + "onions" + ] + }, + { + "id": 49378, + "cuisine": "greek", + "ingredients": [ + "lemon", + "cumin", + "olive oil", + "salt", + "garlic", + "tahini", + "chickpeas" + ] + }, + { + "id": 44292, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "rotelle", + "cumin", + "fresh cilantro", + "long-grain rice", + "kosher salt", + "garlic", + "canola oil", + "low sodium chicken broth", + "onions" + ] + }, + { + "id": 26165, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "dried oregano", + "ground black pepper", + "fresh oregano", + "beef stock", + "garlic cloves", + "baking potatoes", + "lemon juice", + "ground black pepper", + "fresh oregano", + "beef stock", + "garlic cloves", + "baking potatoes", + "lemon juice", + "olive oil", + "salt", + "dried oregano" + ] + }, + { + "id": 23379, + "cuisine": "japanese", + "ingredients": [ + "cider vinegar", + "large garlic cloves", + "light brown sugar", + "mirin", + "rib pork chops", + "gingerroot", + "soy sauce", + "vegetable oil" + ] + }, + { + "id": 14754, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "coarse salt", + "potatoes", + "onions", + "large eggs", + "garlic cloves", + "vegetable oil" + ] + }, + { + "id": 28849, + "cuisine": "thai", + "ingredients": [ + "water", + "peeled fresh ginger", + "chopped celery", + "ground coriander", + "sugar", + "olive oil", + "ground red pepper", + "all-purpose flour", + "fresh lime juice", + "tomato paste", + "fresh cilantro", + "dry white wine", + "salt", + "garlic cloves", + "lime rind", + "reduced fat milk", + "light coconut milk", + "chopped onion", + "medium shrimp" + ] + }, + { + "id": 11622, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "active dry yeast", + "buttermilk", + "dark brown sugar", + "light brown sugar", + "kosher salt", + "egg yolks", + "maple syrup", + "chopped pecans", + "sugar", + "flour", + "vanilla extract", + "softened butter", + "ground cinnamon", + "milk", + "lemon", + "cream cheese", + "confectioners sugar" + ] + }, + { + "id": 30419, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "shiitake", + "salt", + "garlic cloves", + "coconut oil", + "napa cabbage", + "yellow onion", + "spring roll wrappers", + "sesame oil", + "rice vinegar", + "carrots", + "kale", + "ginger", + "scallions" + ] + }, + { + "id": 11172, + "cuisine": "korean", + "ingredients": [ + "dried kelp", + "green onions", + "Gochujang base", + "broth", + "stew", + "water", + "red pepper flakes", + "onions", + "soy sauce", + "anchovies", + "dried shiitake mushrooms", + "coriander", + "tofu", + "minced garlic", + "marinade", + "pork shoulder" + ] + }, + { + "id": 25991, + "cuisine": "thai", + "ingredients": [ + "cold water", + "fresh cilantro", + "low sodium chicken broth", + "tamarind paste", + "fish sauce", + "reduced-sodium tamari sauce", + "salted roast peanuts", + "beansprouts", + "wide rice noodles", + "olive oil", + "green onions", + "corn starch", + "light brown sugar", + "white pepper", + "Sriracha", + "garlic", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 11010, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "peanut oil", + "onions", + "salt", + "carrots", + "shredded coconut", + "cumin seed", + "cabbage", + "curry leaves", + "green chilies", + "mustard seeds" + ] + }, + { + "id": 28333, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "shredded Monterey Jack cheese", + "black olives", + "taco sauce", + "onions", + "soup" + ] + }, + { + "id": 36505, + "cuisine": "vietnamese", + "ingredients": [ + "ginger", + "english cucumber", + "black pepper", + "purple onion", + "steak", + "soy sauce", + "avocado oil", + "carrots", + "parsley", + "rolls", + "chillies" + ] + }, + { + "id": 35390, + "cuisine": "french", + "ingredients": [ + "olive oil", + "salt", + "brown sugar", + "cooking spray", + "dried rosemary", + "dry yeast", + "all-purpose flour", + "warm water", + "yukon gold potatoes" + ] + }, + { + "id": 49371, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "scallions", + "duck breasts", + "mirin", + "sugar", + "peanut oil", + "sake", + "dashi powder", + "toasted sesame seeds" + ] + }, + { + "id": 13062, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "baking powder", + "lard", + "kosher salt", + "garlic cloves", + "dried oregano", + "boneless pork shoulder", + "ground black pepper", + "hot water", + "masa harina", + "guajillo chiles", + "cinnamon", + "chipotles in adobo" + ] + }, + { + "id": 31330, + "cuisine": "indian", + "ingredients": [ + "warm water", + "baking powder", + "all-purpose flour", + "active dry yeast", + "garlic", + "plain yogurt", + "butter", + "chopped cilantro fresh", + "eggs", + "honey", + "salt" + ] + }, + { + "id": 20808, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "lime wedges", + "black beans", + "jalapeno chilies", + "cilantro", + "garlic cloves", + "salt", + "corn tortillas", + "lime", + "guacamole", + "purple onion", + "sour cream", + "pepper jack", + "paprika", + "salsa", + "cumin" + ] + }, + { + "id": 40325, + "cuisine": "vietnamese", + "ingredients": [ + "brewed coffee", + "ice cubes", + "sweetened condensed milk", + "ground coffee" + ] + }, + { + "id": 41122, + "cuisine": "indian", + "ingredients": [ + "chicken stock", + "mild olive oil", + "purple onion", + "green pepper", + "cucumber", + "tomato purée", + "fresh ginger root", + "cilantro leaves", + "garlic cloves", + "coriander", + "tomatoes", + "lime juice", + "salt", + "green chilies", + "onions", + "cooked rice", + "garam masala", + "skinless chicken breasts", + "lemon juice" + ] + }, + { + "id": 24104, + "cuisine": "thai", + "ingredients": [ + "pepper", + "fresh ginger", + "salt", + "basmati rice", + "lime", + "cilantro", + "ground coriander", + "curry powder", + "garlic powder", + "cayenne pepper", + "ground cumin", + "light brown sugar", + "light soy sauce", + "light coconut milk", + "chicken thighs" + ] + }, + { + "id": 7859, + "cuisine": "japanese", + "ingredients": [ + "honey", + "chives", + "corn starch", + "brown sugar", + "mirin", + "ginger", + "low sodium soy sauce", + "sesame seeds", + "flank steak", + "water", + "Sriracha", + "garlic cloves" + ] + }, + { + "id": 27889, + "cuisine": "moroccan", + "ingredients": [ + "extra-virgin olive oil", + "carrots", + "lemon juice", + "harissa paste", + "coriander" + ] + }, + { + "id": 6456, + "cuisine": "italian", + "ingredients": [ + "sugar", + "olive oil", + "bay leaves", + "crushed red pepper", + "spaghetti", + "tomato paste", + "kosher salt", + "grated parmesan cheese", + "ground thyme", + "ground beef", + "white wine", + "parmesan cheese", + "parsley", + "yellow onion", + "ground oregano", + "green bell pepper", + "crushed tomatoes", + "marinara sauce", + "garlic", + "fresh parsley" + ] + }, + { + "id": 37113, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "milk", + "salt", + "ground turmeric", + "tomatoes", + "water", + "seeds", + "cinnamon sticks", + "curry leaves", + "black pepper", + "fresh ginger", + "green chilies", + "canola oil", + "eggs", + "curry powder", + "garlic", + "onions" + ] + }, + { + "id": 40218, + "cuisine": "italian", + "ingredients": [ + "eggs", + "vanilla extract", + "white sugar", + "ricotta cheese", + "chocolate candy bars", + "milk", + "all-purpose flour", + "shortening", + "salt" + ] + }, + { + "id": 23513, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "chuck steaks", + "black pepper", + "fresh oregano", + "chopped garlic", + "lemon zest", + "fresh lemon juice", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 18495, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "water", + "ground black pepper", + "ground thyme", + "canola oil", + "black pepper", + "olive oil", + "flour", + "salt", + "soy sauce", + "honey", + "ground sage", + "paprika", + "ground ginger", + "minced garlic", + "ground nutmeg", + "boneless skinless chicken breasts", + "cayenne pepper" + ] + }, + { + "id": 18351, + "cuisine": "mexican", + "ingredients": [ + "corn", + "ranch dressing", + "green bell pepper", + "tomato juice", + "ground beef", + "taco seasoning mix", + "diced tomatoes", + "black beans", + "sliced black olives", + "onions" + ] + }, + { + "id": 29491, + "cuisine": "japanese", + "ingredients": [ + "chicken stock", + "green onions", + "boneless skinless chicken breast halves", + "water", + "fresh mushrooms", + "fresh ginger root", + "carrots", + "soy sauce", + "garlic", + "snow peas" + ] + }, + { + "id": 17202, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "purple onion", + "marinade", + "carrots", + "white onion", + "cracked black pepper", + "poblano chiles", + "flank steak", + "salt" + ] + }, + { + "id": 19588, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "coffee" + ] + }, + { + "id": 8409, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "peanut oil", + "chile powder", + "onion powder", + "ground cumin", + "chicken breasts", + "garlic puree", + "lime juice", + "worcestershire sauce" + ] + }, + { + "id": 29000, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "spices", + "lemongrass", + "salt", + "pepper", + "chicken meat", + "fish sauce", + "flour" + ] + }, + { + "id": 18679, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "salt", + "saffron", + "unsalted butter", + "boiling water", + "sweet onion", + "cardamom pods", + "clove", + "cinnamon", + "basmati rice" + ] + }, + { + "id": 5376, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "half & half", + "olive oil", + "arugula", + "vidalia onion", + "salt", + "fettucine", + "ground black pepper", + "large shrimp" + ] + }, + { + "id": 30650, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "baking powder", + "wildflower honey", + "large eggs", + "all-purpose flour", + "stone-ground cornmeal", + "buttermilk", + "canola oil" + ] + }, + { + "id": 33026, + "cuisine": "french", + "ingredients": [ + "firmly packed light brown sugar", + "vanilla extract", + "almond liqueur", + "whipping cream", + "fresh mint", + "sugar", + "fresh raspberries", + "egg yolks", + "toasted almonds" + ] + }, + { + "id": 23722, + "cuisine": "vietnamese", + "ingredients": [ + "eggs", + "cooking oil", + "Massaman curry paste", + "carrots", + "water", + "green onions", + "salt", + "puff pastry", + "chicken stock", + "lemongrass", + "shallots", + "yellow onion", + "chicken", + "pepper", + "potatoes", + "garlic", + "coconut milk" + ] + }, + { + "id": 37302, + "cuisine": "vietnamese", + "ingredients": [ + "brown sugar", + "lime juice", + "chicken thigh fillets", + "cilantro", + "carrots", + "chillies", + "minced garlic", + "chili", + "vegetable oil", + "oil", + "beansprouts", + "soy sauce", + "lemongrass", + "lime wedges", + "rice vinegar", + "cucumber", + "white sugar", + "fish sauce", + "water", + "mint leaves", + "shredded lettuce", + "garlic cloves", + "vermicelli noodles" + ] + }, + { + "id": 10825, + "cuisine": "korean", + "ingredients": [ + "cider vinegar", + "brown sugar", + "red pepper flakes", + "soy sauce", + "sirloin steak", + "ground ginger", + "minced garlic" + ] + }, + { + "id": 38703, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "fresh basil leaves", + "kosher salt", + "garlic", + "pinenuts", + "extra-virgin olive oil", + "ground black pepper", + "walnuts" + ] + }, + { + "id": 27455, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "flour", + "chopped celery", + "finely chopped onion", + "bacon", + "carrots", + "corn", + "heavy cream", + "cayenne pepper", + "chicken broth", + "potatoes", + "garlic", + "red bell pepper" + ] + }, + { + "id": 4185, + "cuisine": "italian", + "ingredients": [ + "sugar", + "fresh mozzarella", + "chicken stock", + "unsalted butter", + "paprika", + "cherry tomatoes", + "sea salt", + "fresh basil", + "boneless skinless chicken breasts", + "garlic" + ] + }, + { + "id": 11674, + "cuisine": "italian", + "ingredients": [ + "honey", + "cantaloupe", + "white wine", + "fresh mint", + "prosciutto" + ] + }, + { + "id": 13738, + "cuisine": "french", + "ingredients": [ + "chicken broth", + "fresh thyme", + "salt", + "white onion", + "cheese slices", + "fresh parsley", + "beef", + "butter", + "french baguette", + "dry white wine", + "freshly ground pepper" + ] + }, + { + "id": 3585, + "cuisine": "southern_us", + "ingredients": [ + "salad", + "pepper", + "mayonaise", + "spicy brown mustard", + "pickles", + "salt", + "eggs", + "baking potatoes" + ] + }, + { + "id": 16835, + "cuisine": "italian", + "ingredients": [ + "honey", + "cream cheese, soften", + "fresh rosemary", + "dry sherry", + "gorgonzola", + "baguette", + "salted roasted pecans", + "butter", + "bartlett pears" + ] + }, + { + "id": 44067, + "cuisine": "indian", + "ingredients": [ + "vegetables", + "scallions", + "chopped cilantro fresh", + "kosher salt", + "all-purpose flour", + "greek yogurt", + "eggs", + "ground black pepper", + "lemon juice", + "ground cumin", + "milk", + "ground coriander", + "onions" + ] + }, + { + "id": 11017, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "bay leaves", + "lime wedges", + "cumin seed", + "dal", + "water", + "shallots", + "salt", + "cinnamon sticks", + "minced garlic", + "peeled fresh ginger", + "cauliflower florets", + "carrots", + "ground turmeric", + "olive oil", + "brown mustard seeds", + "cilantro leaves", + "nigella seeds" + ] + }, + { + "id": 43583, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "lemon wedge", + "dried oregano", + "rub", + "dried thyme", + "salt", + "granulated garlic", + "olive oil", + "lamb loin chops", + "dried basil", + "lemon" + ] + }, + { + "id": 17161, + "cuisine": "russian", + "ingredients": [ + "powdered sugar", + "raisins", + "phyllo pastry", + "unsalted butter", + "caramel ice cream", + "granny smith apples", + "walnuts", + "sugar", + "salt" + ] + }, + { + "id": 10701, + "cuisine": "filipino", + "ingredients": [ + "jasmine rice", + "garlic", + "chayotes", + "soy sauce", + "ginger", + "carrots", + "tomatoes", + "cilantro", + "coconut vinegar", + "yukon gold potatoes", + "yellow onion", + "ground beef" + ] + }, + { + "id": 38833, + "cuisine": "chinese", + "ingredients": [ + "chili flakes", + "water", + "lime", + "tamari soy sauce", + "chinese five-spice powder", + "black pepper", + "lemongrass", + "sesame oil", + "yellow onion", + "greens", + "fish sauce", + "lime juice", + "fresh ginger", + "broccoli", + "garlic cloves", + "fresh coriander", + "orange", + "sea salt", + "beef rib short" + ] + }, + { + "id": 32058, + "cuisine": "filipino", + "ingredients": [ + "vegetable oil", + "sugar", + "bananas", + "lumpia skins" + ] + }, + { + "id": 20531, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "red pepper flakes", + "red bell pepper", + "sausage links", + "green bell pepper, slice", + "yellow onion", + "olive oil", + "salt", + "dried oregano", + "marsala wine", + "bell pepper", + "garlic cloves" + ] + }, + { + "id": 16732, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "extra-virgin olive oil", + "coarse salt", + "fresh basil leaves", + "lemon", + "spaghetti", + "ground black pepper", + "pasta water" + ] + }, + { + "id": 7459, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "garlic", + "ground cumin", + "vegetable oil", + "coriander", + "chopped tomatoes", + "cocoa powder" + ] + }, + { + "id": 22856, + "cuisine": "japanese", + "ingredients": [ + "unseasoned breadcrumbs", + "ground pork", + "chicken stock", + "black pepper", + "onions", + "soy sauce", + "salt", + "cabbage leaves", + "fresh ginger" + ] + }, + { + "id": 21522, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "ground pepper", + "paprika", + "dri leav thyme", + "onions", + "no-salt-added diced tomatoes", + "low sodium chicken broth", + "salt", + "bay leaf", + "long grain white rice", + "green bell pepper", + "hot pepper sauce", + "garlic", + "red bell pepper", + "dried leaves oregano", + "olive oil", + "smoked ham", + "cayenne pepper", + "medium shrimp" + ] + }, + { + "id": 397, + "cuisine": "moroccan", + "ingredients": [ + "aleppo pepper", + "dry white wine", + "crème fraîche", + "kosher salt", + "fresh thyme leaves", + "grana", + "reduced sodium chicken broth", + "chives", + "lemon rind", + "saffron threads", + "finely chopped onion", + "butter", + "carnaroli rice" + ] + }, + { + "id": 29574, + "cuisine": "italian", + "ingredients": [ + "pesto", + "black olives", + "artichoke hearts", + "salad dressing", + "cherry tomatoes", + "bow-tie pasta", + "green olives", + "parmesan cheese" + ] + }, + { + "id": 31529, + "cuisine": "russian", + "ingredients": [ + "brown sugar", + "olive oil", + "carrots", + "ketchup", + "bay leaves", + "onions", + "pork", + "cabbage head", + "sour cream", + "pepper", + "salt" + ] + }, + { + "id": 2006, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "cilantro leaves", + "garlic cloves", + "fresh ginger", + "vegetable oil", + "ground coriander", + "ground turmeric", + "tomatoes", + "chana dal", + "green chilies", + "onions", + "garam masala", + "salt", + "cumin seed" + ] + }, + { + "id": 8319, + "cuisine": "japanese", + "ingredients": [ + "tawny port", + "eggs", + "fresh lemon juice", + "simple syrup", + "rye" + ] + }, + { + "id": 11918, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "stewing beef", + "beef stock", + "garlic cloves", + "cumin", + "crushed tomatoes", + "ground black pepper", + "cayenne pepper", + "onions", + "tumeric", + "garam masala", + "salt", + "smoked paprika", + "fresh cilantro", + "lemon zest", + "oil", + "coriander" + ] + }, + { + "id": 22601, + "cuisine": "spanish", + "ingredients": [ + "raspberries", + "pink grapefruit", + "grapes", + "mint leaves", + "plain yogurt", + "extra-virgin olive oil", + "honey" + ] + }, + { + "id": 33020, + "cuisine": "mexican", + "ingredients": [ + "salt", + "garlic cloves", + "olive oil", + "tamarind paste", + "chipotles in adobo", + "rum", + "dark brown sugar", + "adobo sauce", + "water", + "sauce", + "shrimp" + ] + }, + { + "id": 27001, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "milk", + "sour cream", + "soy sauce", + "rice vinegar", + "sugar", + "salt", + "canned tuna", + "avocado", + "sushi rice", + "lemon juice" + ] + }, + { + "id": 17461, + "cuisine": "indian", + "ingredients": [ + "eggs", + "curry powder", + "chili powder", + "all-purpose flour", + "cinnamon sticks", + "ginger paste", + "warm water", + "chicken breasts", + "curry", + "oil", + "onions", + "sugar", + "lime", + "spices", + "cardamom pods", + "coconut milk", + "tomato paste", + "pepper", + "capsicum", + "salt", + "carrots", + "ground turmeric" + ] + }, + { + "id": 39117, + "cuisine": "thai", + "ingredients": [ + "coconut oil", + "thai basil", + "ginger", + "green chilies", + "ground cumin", + "kaffir lime leaves", + "lemongrass", + "shallots", + "salt", + "red bell pepper", + "white pepper", + "zucchini", + "garlic", + "ground coriander", + "coconut sugar", + "lime", + "shoyu", + "cilantro leaves", + "coconut milk" + ] + }, + { + "id": 39686, + "cuisine": "mexican", + "ingredients": [ + "lemon zest", + "salt", + "ground cloves", + "raisins", + "long grain white rice", + "eggs", + "whole milk", + "cinnamon sticks", + "water", + "vanilla", + "sweetened condensed milk" + ] + }, + { + "id": 803, + "cuisine": "british", + "ingredients": [ + "flour", + "heavy cream", + "white vinegar", + "vegetable oil", + "salt", + "egg yolks", + "ground pork", + "white onion", + "vegetable shortening" + ] + }, + { + "id": 12255, + "cuisine": "greek", + "ingredients": [ + "capers", + "cracked black pepper", + "feta cheese crumbles", + "nonfat greek yogurt", + "cayenne pepper", + "chopped garlic", + "olive oil", + "salt", + "fresh parsley", + "grated parmesan cheese", + "fresh lemon juice" + ] + }, + { + "id": 9821, + "cuisine": "french", + "ingredients": [ + "mussels", + "olive oil", + "heavy cream", + "white wine", + "shallots", + "kosher salt", + "parsley", + "crusty bread", + "unsalted butter", + "garlic" + ] + }, + { + "id": 32788, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "lemon juice", + "dried oregano", + "mozzarella cheese", + "salami", + "ripe olives", + "pepperoni slices", + "olive oil", + "Italian bread", + "pepper", + "pimento stuffed olives", + "fresh parsley" + ] + }, + { + "id": 22346, + "cuisine": "indian", + "ingredients": [ + "moong dal", + "ground cardamom", + "dates", + "cashew nuts", + "sugarcane juice", + "ghee", + "rice" + ] + }, + { + "id": 11889, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "salt", + "olive oil", + "seasoning salt", + "cabbage", + "chicken broth", + "butter" + ] + }, + { + "id": 43557, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "fat", + "tomato paste", + "water", + "chili powder", + "onions", + "minced garlic", + "green onions", + "cooked white rice", + "white button mushrooms", + "olive oil", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 1459, + "cuisine": "french", + "ingredients": [ + "parsley sprigs", + "onions", + "dry white wine", + "olive oil", + "mussels", + "lemon wedge" + ] + }, + { + "id": 36780, + "cuisine": "mexican", + "ingredients": [ + "red cabbage", + "carrots", + "parsley leaves", + "salt", + "anise seed", + "jicama", + "fresh lime juice", + "dijon mustard", + "vegetable oil" + ] + }, + { + "id": 7489, + "cuisine": "russian", + "ingredients": [ + "turnips", + "flanken short ribs", + "large garlic cloves", + "beets", + "chopped parsley", + "cabbage", + "water", + "lemon", + "butter oil", + "sour cream", + "celery root", + "parsnips", + "potatoes", + "dill", + "carrots", + "broth", + "tomato paste", + "ground black pepper", + "coarse sea salt", + "allspice berries", + "onions" + ] + }, + { + "id": 5423, + "cuisine": "russian", + "ingredients": [ + "prepared horseradish", + "beets" + ] + }, + { + "id": 45609, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "egg yolks", + "grated lemon zest", + "water", + "large eggs", + "grated nutmeg", + "ground black pepper", + "salt", + "ricotta", + "parmigiano reggiano cheese", + "all-purpose flour" + ] + }, + { + "id": 14634, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "garlic cloves", + "lemon", + "kosher salt", + "cucumber", + "ground black pepper", + "greek yogurt" + ] + }, + { + "id": 12271, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "milk", + "boudin", + "canola oil", + "flour" + ] + }, + { + "id": 6465, + "cuisine": "chinese", + "ingredients": [ + "canned chicken broth", + "wheat", + "greens", + "fresh ginger", + "duck", + "water", + "salt", + "chinese rice wine", + "yu choy", + "scallions" + ] + }, + { + "id": 3362, + "cuisine": "moroccan", + "ingredients": [ + "fresh coriander", + "vegetable oil", + "ground beef", + "allspice", + "sugar", + "active dry yeast", + "garlic", + "onions", + "semolina flour", + "water", + "paprika", + "fresh parsley", + "pepper", + "flour", + "salt", + "cumin" + ] + }, + { + "id": 11174, + "cuisine": "italian", + "ingredients": [ + "white wine", + "cooking spray", + "dried oregano", + "ground black pepper", + "crushed red pepper", + "crushed tomatoes", + "balsamic vinegar", + "tomato paste", + "finely chopped onion", + "garlic cloves" + ] + }, + { + "id": 42145, + "cuisine": "jamaican", + "ingredients": [ + "clove", + "fresh ginger root", + "sugar", + "hot water", + "cream of tartar", + "rum", + "lime juice" + ] + }, + { + "id": 42531, + "cuisine": "jamaican", + "ingredients": [ + "dried thyme", + "grated nutmeg", + "garlic cloves", + "soy sauce", + "vegetable oil", + "scallions", + "chicken", + "ground black pepper", + "berries", + "onions", + "pepper", + "salt", + "chinese five-spice powder" + ] + }, + { + "id": 15816, + "cuisine": "southern_us", + "ingredients": [ + "reduced sodium chicken broth", + "rabbit", + "California bay leaves", + "tomatoes", + "cayenne", + "frozen corn", + "green bell pepper", + "vegetable oil", + "garlic cloves", + "frozen lima beans", + "all-purpose flour", + "onions" + ] + }, + { + "id": 19124, + "cuisine": "southern_us", + "ingredients": [ + "jalapeno chilies", + "ham hock", + "black peppercorns", + "salt", + "bay leaf", + "garlic", + "flat leaf parsley", + "black-eyed peas", + "freshly ground pepper", + "onions" + ] + }, + { + "id": 1305, + "cuisine": "cajun_creole", + "ingredients": [ + "brown sugar", + "balsamic vinegar", + "salt", + "onions", + "stock", + "sun-dried tomatoes", + "dry mustard", + "celery", + "tomatoes", + "black beans", + "cajun seasoning", + "ground meat", + "green bell pepper", + "bay leaves", + "garlic", + "kidney" + ] + }, + { + "id": 20025, + "cuisine": "italian", + "ingredients": [ + "granulated sugar", + "ground almonds", + "chopped almonds", + "almond extract", + "egg whites", + "white sugar" + ] + }, + { + "id": 12430, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "anchovy fillets", + "capers", + "kalamata", + "marinara sauce", + "large shrimp", + "black pepper", + "linguine" + ] + }, + { + "id": 38910, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "eggplant", + "coarse salt", + "red bell pepper", + "water", + "zucchini", + "extra-virgin olive oil", + "ground cinnamon", + "yellow squash", + "shallots", + "freshly ground pepper", + "minced garlic", + "bananas", + "currant" + ] + }, + { + "id": 31681, + "cuisine": "brazilian", + "ingredients": [ + "açai", + "coconut water", + "granola", + "bananas", + "shredded coconut", + "strawberries" + ] + }, + { + "id": 27996, + "cuisine": "greek", + "ingredients": [ + "anise", + "honey", + "feta cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 1903, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "salt", + "rotini", + "chicken broth", + "radicchio", + "lemon juice", + "pork cutlets", + "olive oil", + "garlic cloves", + "kosher salt", + "freshly ground pepper", + "frozen peas" + ] + }, + { + "id": 29185, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "onions", + "french baguette", + "garlic", + "tomatoes", + "ground black pepper", + "dried oregano", + "mozzarella cheese", + "salt" + ] + }, + { + "id": 45865, + "cuisine": "korean", + "ingredients": [ + "sugar", + "napa cabbage", + "fresh ginger", + "red pepper", + "kosher salt", + "daikon", + "fish sauce", + "spring onions", + "garlic" + ] + }, + { + "id": 9022, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "yukon gold potatoes", + "garlic cloves", + "kosher salt", + "ground red pepper", + "aged Manchego cheese", + "fresh parsley", + "black pepper", + "cooking spray", + "extra-virgin olive oil", + "red bell pepper", + "sherry vinegar", + "shallots", + "blanched almonds", + "dried oregano" + ] + }, + { + "id": 43790, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "paprika", + "ground turmeric", + "potatoes", + "cumin seed", + "ground cumin", + "garam masala", + "salt", + "ginger paste", + "cauliflower", + "vegetable oil", + "chopped cilantro fresh" + ] + }, + { + "id": 40462, + "cuisine": "chinese", + "ingredients": [ + "oil", + "reduced sodium soy sauce", + "asparagus", + "toasted sesame seeds", + "sesame oil" + ] + }, + { + "id": 1718, + "cuisine": "italian", + "ingredients": [ + "(14.5 oz.) diced tomatoes", + "white beans", + "fennel", + "celery", + "water", + "Italian turkey sausage", + "sage leaves", + "garlic" + ] + }, + { + "id": 31383, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "chorizo", + "salt", + "onions", + "eggs", + "boneless chicken skinless thigh", + "banana leaves", + "red bell pepper", + "green bell pepper", + "pepper", + "garlic", + "coconut milk", + "chicken broth", + "glutinous rice", + "raisins", + "oil", + "ground turmeric" + ] + }, + { + "id": 8767, + "cuisine": "southern_us", + "ingredients": [ + "prepared horseradish", + "vegetable oil", + "salt", + "cucumber", + "garlic powder", + "onion powder", + "vegetable broth", + "cayenne pepper", + "milk", + "ground black pepper", + "fresh green bean", + "dry bread crumbs", + "eggs", + "buttermilk ranch dressing", + "wasabi powder", + "all-purpose flour" + ] + }, + { + "id": 35796, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "mozzarella cheese", + "Italian seasoned breadcrumbs", + "risotto", + "vegetable oil", + "large eggs" + ] + }, + { + "id": 34058, + "cuisine": "greek", + "ingredients": [ + "eggs", + "ground nutmeg", + "all-purpose flour", + "milk", + "butter", + "shortening", + "baking powder", + "white sugar", + "ground cinnamon", + "sesame seeds", + "vanilla extract" + ] + }, + { + "id": 45854, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "baby spinach", + "sweet italian sausage", + "grated parmesan cheese", + "crushed red pepper", + "onions", + "sun-dried tomatoes", + "extra-virgin olive oil", + "gemelli", + "basil leaves", + "salt" + ] + }, + { + "id": 38225, + "cuisine": "filipino", + "ingredients": [ + "water", + "sweetened condensed milk", + "sticky rice", + "semisweet chocolate", + "kosher salt", + "heavy cream" + ] + }, + { + "id": 32744, + "cuisine": "spanish", + "ingredients": [ + "parsley flakes", + "marinara sauce", + "celery", + "eggplant", + "freshly ground pepper", + "tomato paste", + "garlic powder", + "oil", + "spanish onion", + "salt", + "canola oil" + ] + }, + { + "id": 25392, + "cuisine": "jamaican", + "ingredients": [ + "green bell pepper", + "ground cloves", + "dried thyme", + "cayenne", + "ground allspice", + "coconut milk", + "cremini mushrooms", + "black beans", + "fresh ginger", + "sea salt", + "jerk sauce", + "seitan", + "coconut oil", + "molasses", + "honey", + "fresh thyme", + "garlic cloves", + "basmati rice", + "ground cinnamon", + "soy sauce", + "water", + "ground nutmeg", + "yellow onion", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 12324, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "chinese five-spice powder", + "large eggs", + "ginger", + "panko breadcrumbs", + "hoisin sauce", + "large garlic cloves", + "meatloaf", + "soy sauce", + "water chestnuts", + "scallions" + ] + }, + { + "id": 25413, + "cuisine": "japanese", + "ingredients": [ + "cooking spray", + "garlic cloves", + "ground black pepper", + "rice vinegar", + "sake", + "miso", + "brown sugar", + "green onions", + "skirt steak" + ] + }, + { + "id": 2189, + "cuisine": "vietnamese", + "ingredients": [ + "white pepper", + "salt", + "fish sauce", + "opo squash", + "canola oil", + "water", + "yellow onion", + "boneless chicken skinless thigh", + "cilantro" + ] + }, + { + "id": 33225, + "cuisine": "indian", + "ingredients": [ + "crushed garlic", + "ground turmeric", + "ginger root", + "low fat plain yoghurt", + "chicken" + ] + }, + { + "id": 36123, + "cuisine": "mexican", + "ingredients": [ + "fresh spinach", + "white hominy", + "red bell pepper", + "ground cumin", + "olive oil", + "large garlic cloves", + "onions", + "chili", + "chili powder", + "corn tortillas", + "tawny port", + "pinto beans", + "dried oregano" + ] + }, + { + "id": 7263, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "jalapeno chilies", + "freshly ground pepper", + "canola oil", + "flour tortillas", + "beer", + "onions", + "water", + "frozen corn", + "garlic cloves", + "black beans", + "coarse salt", + "scallions", + "ground cumin" + ] + }, + { + "id": 1359, + "cuisine": "moroccan", + "ingredients": [ + "large garlic cloves", + "ground cumin", + "cornish game hens", + "cayenne pepper", + "peeled fresh ginger", + "ground coriander", + "salt" + ] + }, + { + "id": 321, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "fresh coriander", + "garam masala", + "vegetable oil", + "cumin seed", + "grated coconut", + "lime", + "brown mustard seeds", + "light coconut milk", + "basmati rice", + "red chili peppers", + "water", + "ground black pepper", + "sea salt", + "onions", + "fresh curry leaves", + "fresh ginger", + "chili powder", + "garlic", + "fish" + ] + }, + { + "id": 11312, + "cuisine": "mexican", + "ingredients": [ + "water", + "eggs", + "pitted olives", + "chile powder", + "pepperidge farm puff pastry", + "shredded cheddar cheese", + "Pace Chunky Salsa" + ] + }, + { + "id": 41997, + "cuisine": "russian", + "ingredients": [ + "bread crumbs", + "ground pork", + "onions", + "eggs", + "garlic powder", + "chopped parsley", + "olive oil", + "salt", + "mayonaise", + "ground pepper", + "ground turkey" + ] + }, + { + "id": 7770, + "cuisine": "french", + "ingredients": [ + "tangerine", + "fresh lemon juice", + "powdered sugar", + "large egg yolks", + "tangerine juice", + "sugar", + "unsalted butter", + "cream of tartar", + "large egg whites", + "corn starch" + ] + }, + { + "id": 5396, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "garlic", + "chipotles in adobo", + "pico de gallo", + "olive oil", + "rice", + "ground cumin", + "lime juice", + "salt", + "monterey jack", + "beans", + "boneless skinless chicken breasts", + "poblano chiles" + ] + }, + { + "id": 40276, + "cuisine": "indian", + "ingredients": [ + "serrano peppers", + "salt", + "garlic cloves", + "canola oil", + "halibut fillets", + "green onions", + "cream cheese", + "greek yogurt", + "garam masala", + "butter", + "cumin seed", + "chopped fresh mint", + "sugar", + "peeled fresh ginger", + "cilantro leaves", + "fresh lemon juice" + ] + }, + { + "id": 25801, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "soy sauce", + "sea salt", + "fresh lemon juice", + "kaffir lime leaves", + "chiles", + "lemon", + "garlic", + "fish sauce", + "spring onions", + "banana leaves", + "lemon juice", + "fresh red chili", + "coconut oil", + "butter", + "loosely packed fresh basil leaves", + "fish" + ] + }, + { + "id": 22545, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "garlic powder", + "cayenne pepper", + "mustard", + "seasoning salt", + "onion powder", + "cornflakes", + "pepper", + "parmesan cheese", + "chicken fingers", + "melted butter", + "honey", + "paprika", + "italian seasoning" + ] + }, + { + "id": 29941, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "breadstick", + "boneless skinless chicken breast halves", + "caesar salad dressing", + "romaine lettuce" + ] + }, + { + "id": 9305, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "papad", + "curds", + "ground cumin", + "pepper", + "paneer", + "corn flour", + "bread crumbs", + "chili powder", + "oil", + "garam masala", + "salt", + "chaat masala" + ] + }, + { + "id": 20987, + "cuisine": "french", + "ingredients": [ + "garlic cloves", + "capers", + "flat anchovy", + "extra-virgin olive oil", + "brine cured green olives" + ] + }, + { + "id": 6909, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "garlic", + "ground turkey", + "cremini mushrooms", + "low sodium tomato sauce", + "shredded mozzarella cheese", + "eggplant", + "purple onion", + "dried oregano", + "low-fat cottage cheese", + "canned tomatoes", + "garlic salt" + ] + }, + { + "id": 29856, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "pimentos", + "chopped onion", + "medium shrimp", + "dried basil", + "stewed tomatoes", + "garlic cloves", + "andouille sausage", + "ground red pepper", + "long-grain rice", + "olive oil", + "chopped celery", + "bay leaf" + ] + }, + { + "id": 10625, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "salt", + "chopped cilantro fresh", + "green bell pepper", + "vegetable oil", + "lean steak", + "flour tortillas", + "fresh lime juice", + "pepper", + "lemon", + "onions" + ] + }, + { + "id": 5233, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "vinaigrette", + "tortellini", + "mozzarella cheese", + "cheese" + ] + }, + { + "id": 3787, + "cuisine": "southern_us", + "ingredients": [ + "barbecue sauce", + "orange juice", + "pepper", + "all-purpose flour", + "garlic", + "dried oregano", + "olive oil", + "pork roast" + ] + }, + { + "id": 24536, + "cuisine": "italian", + "ingredients": [ + "boneless skinless chicken breasts", + "basil pesto sauce", + "low-fat mozzarella cheese", + "salt", + "ground black pepper" + ] + }, + { + "id": 40823, + "cuisine": "thai", + "ingredients": [ + "fine sea salt", + "water", + "coconut milk", + "acorn squash", + "unsalted butter", + "curry paste" + ] + }, + { + "id": 7417, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "dry roasted peanuts", + "rice wine", + "crushed red pepper", + "canola oil", + "sugar", + "boneless chicken breast", + "vegetable broth", + "szechuan sauce", + "tomato paste", + "reduced sodium soy sauce", + "sesame oil", + "rice vinegar", + "chicken", + "sugar pea", + "arrowroot", + "garlic", + "scallions" + ] + }, + { + "id": 37318, + "cuisine": "indian", + "ingredients": [ + "mint sauce", + "milk", + "yoghurt", + "garam masala" + ] + }, + { + "id": 5274, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "red beans", + "celery ribs", + "andouille sausage", + "garlic cloves", + "green bell pepper", + "creole seasoning", + "chicken broth", + "water", + "onions" + ] + }, + { + "id": 2051, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "jalapeno chilies", + "chopped cilantro fresh", + "green chile", + "salt", + "green onions" + ] + }, + { + "id": 15003, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "Ritz Crackers", + "apple cider vinegar", + "olive oil", + "colby jack cheese", + "pork shoulder", + "water", + "barbecue sauce", + "cayenne pepper", + "brown sugar", + "garlic powder", + "onion powder" + ] + }, + { + "id": 21780, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "corn tortillas", + "shredded Monterey Jack cheese", + "minced garlic", + "bacon", + "onions", + "jalapeno chilies", + "ground beef", + "olive oil", + "salt", + "plum tomatoes" + ] + }, + { + "id": 16751, + "cuisine": "italian", + "ingredients": [ + "vegetables", + "italian seasoning", + "mayonaise", + "butter", + "hamburger buns", + "garlic cloves", + "cheese slices" + ] + }, + { + "id": 41265, + "cuisine": "greek", + "ingredients": [ + "green onions", + "cream cheese", + "hummus", + "kalamata", + "feta cheese crumbles", + "fresh parsley", + "diced tomatoes", + "lemon juice", + "dill weed", + "garlic", + "cucumber" + ] + }, + { + "id": 28437, + "cuisine": "french", + "ingredients": [ + "eggs", + "unsalted butter", + "white sugar", + "milk", + "salt", + "egg bread", + "vanilla extract", + "ground cinnamon", + "ground nutmeg", + "all-purpose flour" + ] + }, + { + "id": 5329, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "jalapeno chilies", + "salt", + "ground cumin", + "pepper flakes", + "ground nutmeg", + "paprika", + "ground allspice", + "garlic powder", + "ground thyme", + "cayenne pepper", + "ground cinnamon", + "ground black pepper", + "onion flakes", + "dried parsley" + ] + }, + { + "id": 14960, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "fusilli", + "fresh parsley", + "ground black pepper", + "garlic cloves", + "parmigiano-reggiano cheese", + "cooking spray", + "fresh lemon juice", + "prosciutto", + "extra-virgin olive oil", + "frozen peas" + ] + }, + { + "id": 28623, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "mushrooms", + "dry red wine", + "thyme sprigs", + "black pepper", + "leeks", + "bacon", + "roasting chickens", + "fat free less sodium chicken broth", + "bay leaves", + "sea salt", + "garlic cloves", + "calvados", + "parsley", + "all-purpose flour" + ] + }, + { + "id": 47336, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "chees fresh mozzarella", + "aged balsamic vinegar", + "green tomatoes", + "panko breadcrumbs", + "eggs", + "basil", + "canola oil", + "parmesan cheese", + "salt" + ] + }, + { + "id": 46342, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "ground pepper", + "sesame oil", + "peanut oil", + "celery", + "soy sauce", + "chicken breasts", + "garlic", + "corn starch", + "bamboo shoots", + "baby bok choy", + "water chestnuts", + "napa cabbage", + "oil", + "onions", + "chicken stock", + "wide egg noodles", + "fresh shiitake mushrooms", + "salt", + "beansprouts" + ] + }, + { + "id": 28151, + "cuisine": "southern_us", + "ingredients": [ + "frozen whipped topping", + "chopped pecans", + "mini marshmallows", + "Jell-O Gelatin", + "sour cream", + "crushed pineapples in juice" + ] + }, + { + "id": 13089, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "clam juice", + "chopped cilantro fresh", + "green onions", + "fresh lime juice", + "fish sauce", + "garlic cloves", + "serrano chile", + "peeled fresh ginger", + "mahi mahi fillets" + ] + }, + { + "id": 46400, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "rice vinegar", + "avocado", + "brown rice", + "carrots", + "wasabi paste", + "baby spinach", + "nori sheets", + "crab meat", + "raw honey", + "english cucumber" + ] + }, + { + "id": 6449, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "spaghetti", + "roasted almonds", + "Italian parsley leaves", + "ground black pepper", + "extra-virgin olive oil", + "kosher salt", + "chopped fresh chives" + ] + }, + { + "id": 36243, + "cuisine": "italian", + "ingredients": [ + "salt", + "butter", + "italian seasoning", + "water", + "cornmeal", + "garlic" + ] + }, + { + "id": 37018, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "ground nutmeg", + "french bread", + "salt", + "firmly packed light brown sugar", + "egg whites", + "butter", + "cinnamon sticks", + "vegetable oil cooking spray", + "large eggs", + "creme anglaise", + "ground allspice", + "light brown sugar", + "sliced almonds", + "reduced fat milk", + "vanilla extract", + "nonfat evaporated milk" + ] + }, + { + "id": 47201, + "cuisine": "italian", + "ingredients": [ + "sugar", + "purple onion", + "fresh basil", + "olive oil", + "minced garlic", + "thyme", + "grape tomatoes", + "grated parmesan cheese" + ] + }, + { + "id": 32419, + "cuisine": "chinese", + "ingredients": [ + "corn", + "corn starch", + "chicken stock", + "cream style corn", + "sliced chicken", + "pepper", + "sesame oil", + "water", + "salt" + ] + }, + { + "id": 48046, + "cuisine": "chinese", + "ingredients": [ + "spring roll skins", + "beaten eggs", + "beansprouts", + "dark soy sauce", + "vegetable oil", + "corn starch", + "vegetables", + "chinese celery cabbage", + "shao hsing wine", + "chicken broth", + "shredded carrots", + "shrimp", + "minced pork" + ] + }, + { + "id": 29717, + "cuisine": "greek", + "ingredients": [ + "caster sugar", + "red wine vinegar", + "salt", + "dried parsley", + "olive oil", + "garlic", + "bay leaf", + "pepper", + "red wine", + "cinnamon sticks", + "dried oregano", + "chicken stock", + "chopped tomatoes", + "lamb shoulder", + "onions" + ] + }, + { + "id": 34871, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "rice wine", + "coca-cola", + "ground black pepper", + "garlic", + "light soy sauce", + "sesame oil", + "green onions", + "beef rib short" + ] + }, + { + "id": 27756, + "cuisine": "filipino", + "ingredients": [ + "cooking oil", + "chayotes", + "ground black pepper", + "salt", + "ground pork", + "onions", + "tomatoes", + "garlic" + ] + }, + { + "id": 40244, + "cuisine": "french", + "ingredients": [ + "butter", + "dried rosemary", + "minced garlic", + "white sugar", + "warm water", + "salt", + "active dry yeast", + "bread flour" + ] + }, + { + "id": 27237, + "cuisine": "italian", + "ingredients": [ + "lemon wedge", + "sardines", + "olive oil", + "garlic cloves", + "dry white wine", + "flat leaf parsley", + "linguine" + ] + }, + { + "id": 27207, + "cuisine": "mexican", + "ingredients": [ + "cream cheese", + "chipotles in adobo", + "sour cream", + "cheese", + "chopped cilantro fresh" + ] + }, + { + "id": 23964, + "cuisine": "vietnamese", + "ingredients": [ + "reduced sodium soy sauce", + "rice", + "hot water", + "almond butter", + "sesame oil", + "carrots", + "fresh lime juice", + "brown sugar", + "extra firm tofu", + "garlic chili sauce", + "fresh mint", + "fresh cilantro", + "dipping sauces", + "corn starch", + "vermicelli noodles" + ] + }, + { + "id": 6220, + "cuisine": "french", + "ingredients": [ + "raspberries", + "sugar" + ] + }, + { + "id": 22852, + "cuisine": "brazilian", + "ingredients": [ + "superfine sugar", + "crushed ice", + "lime wedges", + "lime", + "cachaca" + ] + }, + { + "id": 20548, + "cuisine": "thai", + "ingredients": [ + "water", + "chopped cilantro fresh", + "mussels", + "coconut milk", + "green curry paste", + "lime rind", + "fresh lime juice" + ] + }, + { + "id": 25545, + "cuisine": "vietnamese", + "ingredients": [ + "sesame oil", + "pepper", + "salt", + "pork belly", + "cooking wine", + "sesame seeds" + ] + }, + { + "id": 12156, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "all-purpose flour", + "water", + "tomato paste", + "salt and ground black pepper" + ] + }, + { + "id": 24867, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "dried fettuccine", + "grated parmesan cheese" + ] + }, + { + "id": 1137, + "cuisine": "french", + "ingredients": [ + "olive oil", + "garlic cloves", + "baking potatoes", + "arugula", + "white bread", + "heavy cream", + "plum tomatoes", + "leeks", + "low salt chicken broth" + ] + }, + { + "id": 10389, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "broccoli florets", + "crushed red pepper", + "green beans", + "fettucine", + "asparagus", + "green peas", + "chopped onion", + "fresh basil", + "parmigiano reggiano cheese", + "garlic", + "corn starch", + "olive oil", + "half & half", + "salt" + ] + }, + { + "id": 18598, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "lemon", + "water", + "cooking spray", + "dried oregano", + "unsalted butter", + "sea salt", + "orange", + "free-range chickens" + ] + }, + { + "id": 46663, + "cuisine": "indian", + "ingredients": [ + "whitefish fillets", + "brown lentils", + "tomato purée", + "mango chutney", + "lime", + "onions", + "medium curry powder", + "vegetable oil" + ] + }, + { + "id": 25863, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "corn kernels", + "salt", + "coriander", + "tomatoes", + "onion powder", + "sour cream", + "ground cumin", + "tomato paste", + "jalapeno chilies", + "scallions", + "boiling water", + "black beans", + "grating cheese", + "couscous" + ] + }, + { + "id": 9515, + "cuisine": "cajun_creole", + "ingredients": [ + "creole seasoning", + "butter", + "worcestershire sauce", + "pecan halves" + ] + }, + { + "id": 25008, + "cuisine": "japanese", + "ingredients": [ + "matcha", + "soy milk", + "maple syrup", + "black beans", + "cake flour", + "powdered sugar", + "baking powder", + "soy sauce", + "vegetable oil" + ] + }, + { + "id": 36346, + "cuisine": "irish", + "ingredients": [ + "eggs", + "salt", + "baking powder", + "sour cream", + "baking soda", + "all-purpose flour", + "caraway seeds", + "raisins", + "white sugar" + ] + }, + { + "id": 28829, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "freshly ground pepper", + "olive oil", + "kosher salt", + "thyme sprigs", + "sea scallops" + ] + }, + { + "id": 17472, + "cuisine": "mexican", + "ingredients": [ + "chopped green chilies", + "salsa", + "whipping cream", + "corn tortillas", + "cooked chicken", + "oil", + "salt", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 34121, + "cuisine": "chinese", + "ingredients": [ + "winter melon", + "sea salt", + "water", + "coriander", + "stock", + "ground white pepper", + "bacon" + ] + }, + { + "id": 38830, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cracked black pepper", + "dumplings", + "canola oil", + "chicken stock", + "flour", + "poultry seasoning", + "fresh parsley", + "eggs", + "butter", + "carrots", + "onions", + "boneless chicken breast", + "salt", + "celery" + ] + }, + { + "id": 1913, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "onion powder", + "garlic cloves", + "honey", + "salt", + "ground cumin", + "lime", + "ground chicken breast", + "monterey jack", + "olive oil", + "green chilies" + ] + }, + { + "id": 4173, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "jam" + ] + }, + { + "id": 19535, + "cuisine": "italian", + "ingredients": [ + "eggs", + "water", + "grated parmesan cheese", + "garlic", + "onions", + "tomato purée", + "ground black pepper", + "butter", + "grated nutmeg", + "fresh basil", + "olive oil", + "flour", + "salt", + "spinach", + "cayenne", + "lemon", + "ricotta" + ] + }, + { + "id": 24762, + "cuisine": "greek", + "ingredients": [ + "cod", + "olive oil", + "onions", + "tomatoes", + "salt", + "water", + "ground cayenne pepper", + "tomato paste", + "potatoes" + ] + }, + { + "id": 44276, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "tomatillos", + "yellow onion", + "corn tortillas", + "lime", + "salt", + "sour cream", + "cumin", + "jack cheese", + "garlic", + "ground allspice", + "dried oregano", + "chicken stock", + "cooked chicken", + "cilantro leaves", + "poblano chiles" + ] + }, + { + "id": 11644, + "cuisine": "french", + "ingredients": [ + "olive oil", + "salt", + "olives", + "fresh rosemary", + "cooking spray", + "carrots", + "ground black pepper", + "small red potato", + "plum tomatoes", + "rosemary sprigs", + "chopped fresh thyme", + "chicken thighs" + ] + }, + { + "id": 45556, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "water", + "dried apricot", + "paprika", + "garlic cloves", + "couscous", + "black peppercorns", + "coriander seeds", + "butternut squash", + "chopped onion", + "leg of lamb", + "green bell pepper", + "Anaheim chile", + "peeled fresh ginger", + "cumin seed", + "cinnamon sticks", + "tomatoes", + "fresh cilantro", + "cooking spray", + "salt", + "carrots" + ] + }, + { + "id": 22068, + "cuisine": "chinese", + "ingredients": [ + "asparagus", + "ginger", + "carrots", + "soy sauce", + "sesame oil", + "broccoli", + "mint", + "hoisin sauce", + "garlic", + "sliced mushrooms", + "lo mein noodles", + "vegetable oil", + "scallions" + ] + }, + { + "id": 15408, + "cuisine": "chinese", + "ingredients": [ + "water", + "salt", + "garlic cloves", + "ginger root", + "green bell pepper", + "pineapple rings", + "pork meat", + "hot water", + "eggs", + "spring onions", + "tomato ketchup", + "corn starch", + "sugar", + "cooking wine", + "oil", + "red bell pepper" + ] + }, + { + "id": 32720, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "marinade", + "garlic", + "scallions", + "chinese rice wine", + "hoisin sauce", + "ground sichuan pepper", + "sauce", + "chinese black vinegar", + "light soy sauce", + "sesame oil", + "unsalted dry roast peanuts", + "corn starch", + "sugar", + "boneless skinless chicken breasts", + "ginger", + "peanut oil" + ] + }, + { + "id": 1956, + "cuisine": "italian", + "ingredients": [ + "cheese", + "fresh parsley", + "fresh chives", + "salt", + "crushed red pepper", + "olive oil", + "fresh lemon juice" + ] + }, + { + "id": 6126, + "cuisine": "korean", + "ingredients": [ + "fish sauce", + "green onions", + "sesame seeds", + "garlic", + "soy sauce", + "sesame oil", + "pepper flakes", + "eggplant" + ] + }, + { + "id": 14980, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "butter", + "all-purpose flour", + "egg yolks", + "extra-virgin olive oil", + "onions", + "grated parmesan cheese", + "diced tomatoes", + "elbow macaroni", + "milk", + "lean ground beef", + "garlic", + "dried oregano" + ] + }, + { + "id": 20969, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cooked bacon", + "peaches", + "salt", + "lime juice", + "purple onion", + "jalapeno chilies", + "chopped cilantro" + ] + }, + { + "id": 420, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "red bell pepper", + "garlic", + "sea salt" + ] + }, + { + "id": 46872, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "yoghurt", + "garlic", + "sweet paprika", + "baby spinach leaves", + "lemon", + "salt", + "arugula", + "slivered almonds", + "pomegranate molasses", + "purple onion", + "carrots", + "olive oil", + "dates", + "chickpeas", + "ground cumin" + ] + }, + { + "id": 24223, + "cuisine": "italian", + "ingredients": [ + "flat leaf parsley", + "garlic cloves", + "salt", + "lemon zest" + ] + }, + { + "id": 22016, + "cuisine": "italian", + "ingredients": [ + "smoked salmon", + "ground black pepper", + "garlic", + "spaghetti", + "cream", + "dry white wine", + "lemon juice", + "pinenuts", + "lemon zest", + "salt", + "olive oil", + "shallots", + "fresh parsley" + ] + }, + { + "id": 39554, + "cuisine": "cajun_creole", + "ingredients": [ + "worcestershire sauce", + "dried rosemary", + "water", + "fresh lemon juice", + "black pepper", + "paprika", + "unsalted butter", + "large shrimp" + ] + }, + { + "id": 2599, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "water", + "mirin", + "sea salt", + "garlic cloves", + "kosher salt", + "unsalted butter", + "roasted pistachios", + "rice vinegar", + "canola oil", + "microgreens", + "radishes", + "shichimi togarashi", + "oil", + "dashi powder", + "sherry vinegar", + "enokitake", + "oyster mushrooms", + "jerusalem artichokes" + ] + }, + { + "id": 25136, + "cuisine": "italian", + "ingredients": [ + "smoked turkey", + "jelly", + "brie cheese", + "melted butter", + "bread slices" + ] + }, + { + "id": 23508, + "cuisine": "french", + "ingredients": [ + "fennel seeds", + "vegetables", + "olive oil", + "salt", + "dried thyme", + "ground black pepper", + "coriander seeds", + "rack of lamb" + ] + }, + { + "id": 15424, + "cuisine": "indian", + "ingredients": [ + "saffron threads", + "garlic powder", + "cinnamon sticks", + "ground cumin", + "ground ginger", + "cardamom seeds", + "boiling water", + "clove", + "vegetable shortening", + "onions", + "plain yogurt", + "salt", + "long grain white rice" + ] + }, + { + "id": 34585, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "jalapeno chilies", + "scallions", + "ground black pepper", + "purple onion", + "celery", + "kosher salt", + "baked ham", + "chopped parsley", + "dijon mustard", + "gherkins" + ] + }, + { + "id": 8017, + "cuisine": "chinese", + "ingredients": [ + "peeled fresh ginger", + "garlic", + "scallions", + "black pepper", + "dry sherry", + "gyoza wrappers", + "flour", + "ground pork", + "low sodium chicken stock", + "soy sauce", + "vegetable oil", + "salt", + "toasted sesame oil" + ] + }, + { + "id": 24951, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "garlic cloves", + "cooked turkey", + "chickpeas", + "chipotles in adobo", + "olive oil", + "chopped onion", + "sliced green onions", + "grape tomatoes", + "salt", + "rich turkey stock" + ] + }, + { + "id": 17459, + "cuisine": "chinese", + "ingredients": [ + "water", + "vegetable oil", + "soy sauce", + "thai basil", + "garlic", + "red chili peppers", + "fresh ginger", + "dry sherry", + "boneless chicken skinless thigh", + "sesame oil", + "white sugar" + ] + }, + { + "id": 38780, + "cuisine": "italian", + "ingredients": [ + "dried pasta", + "bay leaf", + "tomatoes", + "pecorino romano cheese", + "chiles", + "freshly ground pepper", + "guanciale", + "dry white wine" + ] + }, + { + "id": 24961, + "cuisine": "italian", + "ingredients": [ + "chicken breasts", + "dried basil", + "penne pasta", + "pasta sauce", + "garlic", + "olive oil", + "chees mozzarella stick" + ] + }, + { + "id": 44691, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "feta cheese", + "extra-virgin olive oil", + "fresh lemon juice", + "fresh basil", + "kosher salt", + "red wine vinegar", + "pearl barley", + "boneless skinless chicken breast halves", + "fat free less sodium chicken broth", + "fresh thyme", + "grated lemon zest", + "cucumber", + "grape tomatoes", + "olive oil", + "yellow bell pepper", + "garlic cloves" + ] + }, + { + "id": 49673, + "cuisine": "chinese", + "ingredients": [ + "baby bok choy", + "green onions", + "ginger", + "peanut oil", + "dark soy sauce", + "water", + "napa cabbage", + "dried shiitake mushrooms", + "wood ear mushrooms", + "bean threads", + "lily flowers", + "sesame oil", + "salt", + "carrots", + "sugar", + "light soy sauce", + "gluten", + "fresh mushrooms", + "bamboo shoots" + ] + }, + { + "id": 2542, + "cuisine": "mexican", + "ingredients": [ + "seedless green grape", + "chile pepper", + "kosher salt", + "pears", + "white onion", + "fresh lime juice", + "avocado", + "pomegranate seeds" + ] + }, + { + "id": 14635, + "cuisine": "british", + "ingredients": [ + "sugar", + "baking powder", + "all-purpose flour", + "pure maple syrup", + "baking soda", + "heavy cream", + "figs", + "unsalted butter", + "salt", + "large egg yolks", + "buttermilk" + ] + }, + { + "id": 31896, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "dry bread crumbs", + "onions", + "eggs", + "garlic", + "shrimp", + "mirlitons", + "olive oil", + "ham", + "pepper", + "salt", + "fresh parsley" + ] + }, + { + "id": 46845, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "ramps", + "garlic chives", + "salt", + "chopped cilantro fresh", + "olive oil", + "serrano", + "avocado", + "bacon", + "fresh lime juice" + ] + }, + { + "id": 36821, + "cuisine": "japanese", + "ingredients": [ + "rice vinegar", + "radishes", + "cucumber", + "salt" + ] + }, + { + "id": 24166, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "curry powder", + "tahini", + "chickpeas", + "frozen peas", + "tomato paste", + "chili pepper", + "chopped tomatoes", + "butternut squash", + "fresh lemon juice", + "kosher salt", + "sweet onion", + "potatoes", + "garlic cloves", + "ground cumin", + "coconut oil", + "water", + "garam masala", + "ginger", + "bay leaf" + ] + }, + { + "id": 45427, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "baby spinach", + "garlic", + "cumin seed", + "fenugreek leaves", + "garam masala", + "double cream", + "salt", + "onions", + "tomatoes", + "coriander seeds", + "butter", + "paneer", + "ghee", + "chili flakes", + "vegetable oil", + "lemon", + "green chilies" + ] + }, + { + "id": 33578, + "cuisine": "jamaican", + "ingredients": [ + "vanilla extract", + "water", + "carrots", + "ground nutmeg", + "low-fat milk", + "condensed milk" + ] + }, + { + "id": 13568, + "cuisine": "vietnamese", + "ingredients": [ + "light soy sauce", + "corn starch", + "fish sauce", + "large eggs", + "mung bean sprouts", + "ground black pepper", + "celery", + "kosher salt", + "chicken breasts", + "canola oil" + ] + }, + { + "id": 21648, + "cuisine": "italian", + "ingredients": [ + "pasta", + "garlic cloves", + "olive oil", + "fresh spinach", + "vegan parmesan cheese", + "chestnut mushrooms" + ] + }, + { + "id": 40639, + "cuisine": "greek", + "ingredients": [ + "green bell pepper", + "finely chopped fresh parsley", + "purple onion", + "bay leaf", + "black pepper", + "cooking spray", + "salt", + "onions", + "olive oil", + "button mushrooms", + "fresh lemon juice", + "cherry tomatoes", + "boneless skinless chicken breasts", + "tzatziki", + "dried oregano" + ] + }, + { + "id": 5371, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "prosecco", + "butter", + "flat leaf parsley", + "homemade chicken broth", + "grated parmesan cheese", + "risotto rice", + "olive oil", + "oyster mushrooms", + "onions" + ] + }, + { + "id": 19852, + "cuisine": "mexican", + "ingredients": [ + "onions", + "garlic", + "cumin", + "tomato sauce", + "dried oregano", + "chipotle peppers" + ] + }, + { + "id": 43193, + "cuisine": "vietnamese", + "ingredients": [ + "black pepper", + "garlic", + "fish sauce", + "lemongrass", + "chopped cilantro", + "mint", + "kosher salt", + "corn starch", + "ground chicken", + "granulated sugar", + "onions" + ] + }, + { + "id": 7279, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "low sodium chicken broth", + "ground black pepper", + "garlic", + "freshly grated parmesan", + "dry white wine", + "arborio rice", + "unsalted butter", + "onions" + ] + }, + { + "id": 6279, + "cuisine": "moroccan", + "ingredients": [ + "green olives", + "olive oil", + "chickpeas", + "coriander", + "tumeric", + "butter", + "chopped parsley", + "chicken stock", + "white pepper", + "salt", + "onions", + "preserved lemon", + "fresh ginger", + "bone-in chicken breasts", + "saffron" + ] + }, + { + "id": 33407, + "cuisine": "southern_us", + "ingredients": [ + "fresh basil", + "quickcooking grits", + "ground black pepper", + "goat cheese", + "water", + "salt", + "finely chopped fresh parsley" + ] + }, + { + "id": 26086, + "cuisine": "southern_us", + "ingredients": [ + "frozen orange juice concentrate", + "vanilla", + "milk", + "sugar" + ] + }, + { + "id": 11940, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "butter", + "white sugar", + "water", + "grated lemon zest", + "phyllo dough", + "vanilla extract", + "honey", + "mixed nuts" + ] + }, + { + "id": 12504, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "whipped topping", + "1% low-fat chocolate milk", + "vanilla extract", + "almond extract", + "bittersweet chocolate", + "sugar", + "salt" + ] + }, + { + "id": 16770, + "cuisine": "russian", + "ingredients": [ + "white bread", + "ground black pepper", + "garlic cloves", + "ground chuck", + "dry bread crumbs", + "canola oil", + "mayonaise", + "unsalted butter", + "onions", + "kosher salt", + "dill" + ] + }, + { + "id": 41235, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "pinenuts", + "fresh basil leaves", + "freshly grated parmesan", + "extra-virgin olive oil" + ] + }, + { + "id": 31955, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "extra firm tofu", + "green peas", + "ground cumin", + "cauliflower", + "garam masala", + "ginger", + "plum tomatoes", + "fresh cilantro", + "potatoes", + "salt", + "olive oil", + "dry mustard", + "garlic cloves" + ] + }, + { + "id": 36048, + "cuisine": "irish", + "ingredients": [ + "ground black pepper", + "peas", + "spring onions", + "fresh parsley", + "milk", + "butter", + "potatoes", + "salt" + ] + }, + { + "id": 37594, + "cuisine": "mexican", + "ingredients": [ + "green olives", + "green onions", + "heavy cream", + "corn tortillas", + "chicken broth", + "shredded mild cheddar cheese", + "butter", + "all-purpose flour", + "ground cumin", + "cherry tomatoes", + "chile pepper", + "salt", + "shredded Monterey Jack cheese", + "spanish onion", + "chicken breasts", + "garlic", + "canola oil" + ] + }, + { + "id": 41041, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "corn husks", + "salt", + "syrup", + "vegetable shortening", + "masa", + "solid pack pumpkin", + "baking powder", + "crushed pineapple", + "light brown sugar", + "milk", + "raisins" + ] + }, + { + "id": 36999, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cornmeal", + "Quinoa Flour", + "salt", + "green tomatoes", + "ground flaxseed", + "black pepper", + "corn starch" + ] + }, + { + "id": 21357, + "cuisine": "italian", + "ingredients": [ + "sugar", + "mozzarella cheese", + "fresh shiitake mushrooms", + "soft fresh goat cheese", + "fresh chives", + "grated parmesan cheese", + "extra-virgin olive oil", + "kosher salt", + "gluten flour", + "chanterelle", + "warm water", + "active dry yeast", + "all purpose unbleached flour", + "bread flour" + ] + }, + { + "id": 31485, + "cuisine": "chinese", + "ingredients": [ + "unsweetened coconut milk", + "chinese rice wine", + "green onions", + "salt", + "unsweetened shredded dried coconut", + "minced ginger", + "garlic", + "lobster tails", + "chicken broth", + "water", + "vegetable oil", + "corn starch", + "seasoning", + "black bean garlic sauce", + "sesame oil", + "long-grain rice" + ] + }, + { + "id": 26877, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "extra firm tofu", + "cilantro", + "creamy peanut butter", + "avocado", + "Sriracha", + "chives", + "garlic", + "carrots", + "honey", + "lettuce leaves", + "extra-virgin olive oil", + "fresh lemon juice", + "warm water", + "hoisin sauce", + "sea salt", + "rice vinegar", + "rice paper" + ] + }, + { + "id": 47985, + "cuisine": "cajun_creole", + "ingredients": [ + "frozen lemonade concentrate", + "light rum", + "lemon slices", + "club soda", + "sugarcane sticks", + "crushed ice", + "hot sauce" + ] + }, + { + "id": 11894, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "salt", + "garlic", + "chile pepper", + "olive oil", + "cilantro leaves" + ] + }, + { + "id": 15960, + "cuisine": "french", + "ingredients": [ + "orange", + "bittersweet chocolate", + "sugar", + "salt", + "unsweetened cocoa powder", + "silken tofu", + "Grand Marnier", + "vanilla extract", + "grated orange" + ] + }, + { + "id": 24650, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "shelled shrimp", + "bay leaf", + "celery ribs", + "Spike Seasoning", + "hot sauce", + "white pepper", + "garlic", + "onions", + "celery salt", + "chopped tomatoes", + "lemon juice" + ] + }, + { + "id": 7827, + "cuisine": "french", + "ingredients": [ + "cooking spray", + "sliced carrots", + "garlic cloves", + "beef shoulder roast", + "riesling", + "pork blade steaks", + "thyme sprigs", + "black pepper", + "bay leaves", + "sea salt", + "onions", + "clove", + "leeks", + "parsley", + "small red potato" + ] + }, + { + "id": 12525, + "cuisine": "southern_us", + "ingredients": [ + "creole mustard", + "black pepper", + "lettuce leaves", + "lemon juice", + "yellow corn meal", + "large egg whites", + "hot sauce", + "reduced fat mayonnaise", + "catfish fillets", + "bread crumb fresh", + "hoagie rolls", + "corn starch", + "tomatoes", + "cooking spray", + "creole seasoning" + ] + }, + { + "id": 40601, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "peeled fresh ginger", + "peanut oil", + "mung bean sprouts", + "water", + "rice noodles", + "oyster sauce", + "chopped garlic", + "sugar", + "sesame oil", + "scallions", + "snow peas", + "chicken stock", + "light soy sauce", + "barbecued pork", + "corn starch" + ] + }, + { + "id": 27491, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "boneless skinless chicken breasts", + "thai chile", + "scallions", + "water", + "vegetable oil", + "rice vinegar", + "toasted sesame seeds", + "kosher salt", + "sesame oil", + "garlic", + "corn starch", + "light brown sugar", + "eggplant", + "ginger", + "rice" + ] + }, + { + "id": 3736, + "cuisine": "spanish", + "ingredients": [ + "arborio rice", + "asparagus", + "chopped onion", + "chicken thighs", + "fat free less sodium chicken broth", + "green peas", + "garlic cloves", + "large shrimp", + "hungarian sweet paprika", + "vegetable oil", + "Italian turkey sausage", + "plum tomatoes", + "saffron threads", + "ground black pepper", + "salt", + "red bell pepper", + "dried rosemary" + ] + }, + { + "id": 4563, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "cooked chicken", + "garlic powder", + "green chilies", + "pepper", + "salt", + "cheddar cheese", + "tortillas" + ] + }, + { + "id": 26465, + "cuisine": "japanese", + "ingredients": [ + "chili flakes", + "potatoes", + "diced tomatoes", + "salt", + "roux", + "pepper", + "butter", + "garlic", + "carrots", + "white onion", + "flour", + "ginger", + "oil", + "chicken", + "chicken stock", + "curry powder", + "worcestershire sauce", + "curry", + "onions" + ] + }, + { + "id": 24314, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "red pepper flakes", + "corn starch", + "szechwan peppercorns", + "chile bean paste", + "pork sausages", + "green onions", + "dried Thai chili", + "fermented black beans", + "fish sauce", + "vegetable oil", + "firm tofu" + ] + }, + { + "id": 15208, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "water", + "ground red pepper", + "fresh onion", + "sugar", + "egg whites", + "1% low-fat milk", + "vegetable oil cooking spray", + "shredded extra sharp cheddar cheese", + "summer squash", + "garlic cloves", + "black pepper", + "pimentos", + "salt" + ] + }, + { + "id": 33308, + "cuisine": "indian", + "ingredients": [ + "ravva", + "cumin seed", + "toor dal", + "curry leaves", + "seeds", + "mustard seeds", + "poha", + "urad dal split", + "basmati rice", + "asafoetida", + "salt", + "ghee" + ] + }, + { + "id": 30744, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "fresh mint", + "curry powder", + "fat skimmed chicken broth", + "tomatoes", + "salt", + "nonfat yogurt", + "lentils" + ] + }, + { + "id": 19763, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "sweet chili sauce", + "chicken thighs", + "chicken stock", + "onions", + "pepper" + ] + }, + { + "id": 24550, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "garlic", + "vodka", + "chicken tenderloin", + "toasted sesame oil", + "soy sauce", + "green onions", + "broccoli", + "mirin", + "ginger", + "spaghetti" + ] + }, + { + "id": 42122, + "cuisine": "chinese", + "ingredients": [ + "baking soda", + "garlic", + "soy sauce", + "Shaoxing wine", + "chicken", + "sweet soy sauce", + "dark sesame oil", + "thai basil", + "ginger" + ] + }, + { + "id": 49402, + "cuisine": "southern_us", + "ingredients": [ + "black peppercorns", + "bay leaves", + "dried oregano", + "hot red pepper flakes", + "mustard seeds", + "dried chives", + "sea salt", + "ground ginger", + "pickling spices", + "celery seed" + ] + }, + { + "id": 41327, + "cuisine": "southern_us", + "ingredients": [ + "reduced fat cream cheese", + "egg whites", + "deveined shrimp", + "milk", + "quickcooking grits", + "lemon juice", + "reduced sodium chicken broth", + "chopped fresh chives", + "salt", + "parmesan cheese", + "butter", + "fresh parsley" + ] + }, + { + "id": 25498, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "garlic", + "onions", + "zucchini", + "herb seasoning", + "tomatoes", + "extra-virgin olive oil", + "feta cheese crumbles", + "ground black pepper", + "spaghetti squash" + ] + }, + { + "id": 5403, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "baby zucchini", + "ground black pepper", + "kosher salt", + "garlic cloves" + ] + }, + { + "id": 5993, + "cuisine": "indian", + "ingredients": [ + "grape tomatoes", + "olive oil", + "purple onion", + "tumeric", + "garam masala", + "coriander", + "red chili powder", + "water", + "garlic", + "cumin", + "spinach", + "eggplant", + "salt" + ] + }, + { + "id": 41954, + "cuisine": "thai", + "ingredients": [ + "vegetables", + "salt", + "white sesame seeds", + "bell pepper", + "garlic cloves", + "fresh basil leaves", + "sugar", + "seeds", + "fresh mint", + "unsalted butter", + "dried rice noodles", + "fresh lime juice" + ] + }, + { + "id": 231, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "green chilies", + "corn tortillas", + "eggs", + "vegetable oil", + "red bell pepper", + "milk", + "enchilada sauce", + "cheddar cheese", + "fresh mushrooms", + "monterey jack" + ] + }, + { + "id": 46252, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "water", + "vegetable oil", + "hot sauce", + "ground beef", + "chicken broth", + "minced garlic", + "self rising flour", + "salt", + "peanut oil", + "green bell pepper", + "garlic powder", + "sprite", + "cayenne pepper", + "onions", + "light sour cream", + "black pepper", + "mild sausage", + "white rice", + "baking mix", + "chicken" + ] + }, + { + "id": 48978, + "cuisine": "filipino", + "ingredients": [ + "white sugar", + "evaporated milk", + "sticky rice", + "water", + "unsweetened cocoa powder" + ] + }, + { + "id": 32096, + "cuisine": "thai", + "ingredients": [ + "Thai fish sauce", + "thai green curry paste", + "sugar", + "coconut milk", + "lime wedges", + "fillets", + "cooked rice", + "red bell pepper", + "fresh basil leaves" + ] + }, + { + "id": 37158, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "crushed garlic", + "salad dressing", + "boneless skinless chicken breast halves", + "pepper", + "salt", + "fresh parsley", + "white wine", + "cajun seasoning", + "red bell pepper", + "plum tomatoes", + "olive oil", + "fresh mushrooms", + "onions" + ] + }, + { + "id": 37534, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "cilantro leaves", + "kosher salt", + "flank steak", + "serrano chile", + "ground black pepper", + "garlic cloves", + "lime juice", + "purple onion", + "ground cumin" + ] + }, + { + "id": 20625, + "cuisine": "french", + "ingredients": [ + "haricots verts", + "white wine", + "bay leaves", + "basil", + "champagne vinegar", + "black peppercorns", + "whole grain mustard", + "watercress", + "garlic cloves", + "salmon fillets", + "roma tomatoes", + "sea salt", + "flat leaf parsley", + "eggs", + "kosher salt", + "new potatoes", + "extra-virgin olive oil", + "olives" + ] + }, + { + "id": 10893, + "cuisine": "southern_us", + "ingredients": [ + "chili sauce", + "ground red pepper", + "fresh lemon juice", + "olive oil", + "garlic cloves", + "worcestershire sauce", + "shrimp" + ] + }, + { + "id": 14534, + "cuisine": "chinese", + "ingredients": [ + "rice vinegar", + "garlic chili sauce", + "honey", + "scallions", + "ramen", + "soy sauce", + "dark sesame oil", + "Chinese egg noodles", + "cilantro stems", + "sesame paste" + ] + }, + { + "id": 45963, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cooked chicken", + "lime juice", + "chopped cilantro fresh", + "mayonaise", + "salt", + "green onions" + ] + }, + { + "id": 5790, + "cuisine": "mexican", + "ingredients": [ + "water", + "chili powder", + "black olives", + "fresh lime juice", + "ground cumin", + "tomatoes", + "garlic powder", + "crushed red pepper flakes", + "taco seasoning", + "oregano", + "avocado", + "corn kernels", + "lean ground beef", + "salt", + "chopped cilantro", + "pepper", + "green leaf lettuce", + "extra-virgin olive oil", + "smoked paprika", + "cumin" + ] + }, + { + "id": 26847, + "cuisine": "greek", + "ingredients": [ + "red potato", + "ground black pepper", + "fresh lemon juice", + "kosher salt", + "fresh thyme leaves", + "fresh oregano leaves", + "lemon zest", + "chicken", + "greek seasoning", + "olive oil", + "garlic" + ] + }, + { + "id": 48584, + "cuisine": "irish", + "ingredients": [ + "sugar", + "large eggs", + "all-purpose flour", + "powdered sugar", + "baking soda", + "baking powder", + "gingersnap crumbs", + "coffee granules", + "cooking spray", + "margarine", + "walnut halves", + "low-fat buttermilk", + "salt", + "hot water" + ] + }, + { + "id": 48994, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "zucchini", + "celery stick", + "olive oil", + "anchovies", + "butter", + "baguette", + "vegetables" + ] + }, + { + "id": 12823, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "paneer", + "fenugreek leaves", + "unsalted butter", + "heavy cream", + "onions", + "honey", + "cinnamon", + "cilantro leaves", + "spinach", + "whole peeled tomatoes", + "ginger" + ] + }, + { + "id": 34565, + "cuisine": "vietnamese", + "ingredients": [ + "heavy cream", + "warm water", + "sweetened condensed milk", + "unflavored gelatin", + "vanilla extract", + "instant espresso powder" + ] + }, + { + "id": 16612, + "cuisine": "moroccan", + "ingredients": [ + "whole peeled tomatoes", + "lemon", + "couscous", + "sliced almonds", + "parsley", + "greek yogurt", + "parsnips", + "golden raisins", + "purple onion", + "turnips", + "sweet potatoes", + "ras el hanout" + ] + }, + { + "id": 17458, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "sake", + "butter", + "clams", + "green onions", + "soy sauce", + "rice vinegar" + ] + }, + { + "id": 33804, + "cuisine": "thai", + "ingredients": [ + "water", + "zucchini", + "lime wedges", + "tamari soy sauce", + "cashew nuts", + "chili", + "red cabbage", + "yellow bell pepper", + "carrots", + "lime", + "agave nectar", + "cilantro", + "ground coriander", + "kelp noodles", + "sesame seeds", + "spring onions", + "garlic", + "ginger root" + ] + }, + { + "id": 24279, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "purple onion", + "cucumber", + "whole peeled tomatoes", + "salt", + "chopped cilantro", + "avocado", + "jalapeno chilies", + "hot sauce", + "medium shrimp", + "ketchup", + "chopped celery", + "juice" + ] + }, + { + "id": 42672, + "cuisine": "japanese", + "ingredients": [ + "water", + "sugar", + "red food coloring", + "red bean paste", + "leaves", + "glutinous rice" + ] + }, + { + "id": 15929, + "cuisine": "jamaican", + "ingredients": [ + "scallions", + "garlic", + "thyme", + "pepper", + "shrimp", + "oil" + ] + }, + { + "id": 17108, + "cuisine": "greek", + "ingredients": [ + "capers", + "tenderloin", + "fresh oregano", + "ground white pepper", + "minced garlic", + "sea salt", + "garlic cloves", + "fresh parsley", + "rosemary sprigs", + "chopped fresh thyme", + "filet", + "greek yogurt", + "sherry vinegar", + "extra-virgin olive oil", + "fresh lemon juice", + "chopped fresh mint" + ] + }, + { + "id": 36818, + "cuisine": "indian", + "ingredients": [ + "plain low-fat yogurt" + ] + }, + { + "id": 16500, + "cuisine": "mexican", + "ingredients": [ + "beef", + "garlic", + "onions", + "stock", + "lemon", + "ground coriander", + "chili powder", + "salt", + "ground cumin", + "chopped tomatoes", + "ginger", + "oil" + ] + }, + { + "id": 15624, + "cuisine": "indian", + "ingredients": [ + "water", + "potatoes", + "salt", + "mustard seeds", + "cumin", + "kidney beans", + "green peas", + "ground coriander", + "onions", + "garbanzo beans", + "tomatoes with juice", + "carrots", + "ground turmeric", + "olive oil", + "chili powder", + "frozen corn kernels", + "coconut milk" + ] + }, + { + "id": 42867, + "cuisine": "vietnamese", + "ingredients": [ + "baguette", + "Sriracha", + "cilantro", + "tamari soy sauce", + "cucumber", + "mayonaise", + "lime", + "jalapeno chilies", + "garlic", + "rice vinegar", + "minced ginger", + "extra firm tofu", + "cracked black pepper", + "salt", + "sugar", + "olive oil", + "daikon", + "white wine vinegar", + "carrots" + ] + }, + { + "id": 10847, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "chow mein noodles", + "corn flour", + "chicken stock", + "green peas", + "carrots", + "clove", + "vegetable oil", + "oyster sauce", + "mushrooms", + "chinese cabbage", + "shrimp" + ] + }, + { + "id": 13682, + "cuisine": "southern_us", + "ingredients": [ + "cornbread", + "sugar", + "self rising flour", + "chopped celery", + "onions", + "chicken broth", + "ground black pepper", + "baking powder", + "bacon grease", + "eggs", + "ground sage", + "vegetable oil", + "Italian bread", + "yellow corn meal", + "milk", + "hard-boiled egg", + "salt", + "chicken thighs" + ] + }, + { + "id": 6075, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "salt", + "dried minced onion", + "crushed red pepper flakes", + "celery seed", + "white sugar", + "red beans", + "ham hock", + "bay leaf", + "smoked sausage", + "ground cayenne pepper", + "ground cumin" + ] + }, + { + "id": 40585, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "freshly ground pepper", + "tomatoes", + "fresh oregano", + "corn tortillas", + "coarse salt", + "scallions", + "black beans", + "goat cheese" + ] + }, + { + "id": 18044, + "cuisine": "indian", + "ingredients": [ + "clove", + "cardamom pods", + "vegetable oil", + "cinnamon sticks", + "milk", + "long-grain rice", + "saffron threads", + "salt" + ] + }, + { + "id": 18167, + "cuisine": "italian", + "ingredients": [ + "garlic", + "plum tomatoes", + "fresh basil", + "fresh parsley", + "brie cheese", + "olive oil", + "onions" + ] + }, + { + "id": 47801, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "peach slices", + "mint leaves", + "simple syrup", + "lemon" + ] + }, + { + "id": 33784, + "cuisine": "cajun_creole", + "ingredients": [ + "powdered sugar", + "large eggs", + "kosher salt", + "heavy cream", + "sugar", + "butter", + "active dry yeast", + "bread flour" + ] + }, + { + "id": 21867, + "cuisine": "thai", + "ingredients": [ + "pork", + "salt", + "pumpkin", + "Thai fish sauce", + "black pepper", + "cilantro leaves", + "scallion greens", + "shallots", + "coconut milk" + ] + }, + { + "id": 17325, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "cajun seasoning", + "green pepper", + "condensed cream of chicken soup", + "green onions", + "condensed cream of mushroom soup", + "monterey jack", + "garlic powder", + "2% reduced-fat milk", + "red bell pepper", + "reduced sodium chicken broth", + "boneless skinless chicken breasts", + "bow-tie pasta" + ] + }, + { + "id": 44416, + "cuisine": "cajun_creole", + "ingredients": [ + "low sodium vegetable broth", + "worcestershire sauce", + "fresh lemon juice", + "dried oregano", + "olive oil", + "cayenne pepper", + "chopped parsley", + "Heinz Chili Sauce", + "garlic", + "smoked paprika", + "liquid smoke", + "butter", + "sauce", + "frozen cod fillets" + ] + }, + { + "id": 34432, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "shallots", + "rice vinegar", + "frozen mixed thawed vegetables,", + "eggs", + "shredded cabbage", + "chile pepper", + "firm tofu", + "canola oil", + "pork", + "green onions", + "salt", + "crabmeat", + "water", + "sesame oil", + "all-purpose flour", + "beansprouts" + ] + }, + { + "id": 37732, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "roasted tomatoes", + "cheddar cheese", + "chicken breasts", + "green chilies", + "pepper", + "cilantro", + "sour cream", + "flour tortillas", + "salsa", + "onions" + ] + }, + { + "id": 36707, + "cuisine": "mexican", + "ingredients": [ + "clove", + "chicken breast halves", + "garlic", + "ground cumin", + "water", + "avocado leaves", + "ancho chile pepper", + "guajillo chiles", + "cinnamon", + "salt", + "ground black pepper", + "banana leaves", + "dried oregano" + ] + }, + { + "id": 16691, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "chili paste", + "balsamic vinegar", + "corn starch", + "ground ginger", + "dry roasted peanuts", + "zucchini", + "garlic", + "red bell pepper", + "sugar", + "water", + "hoisin sauce", + "skinless chicken breasts", + "canola oil", + "soy sauce", + "ground black pepper", + "sesame oil", + "scallions" + ] + }, + { + "id": 34707, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "ground black pepper", + "ciabatta", + "orange bell pepper", + "extra-virgin olive oil", + "cucumber", + "capers", + "radicchio", + "salt", + "fresh basil leaves", + "honey", + "red wine vinegar", + "anchovy fillets" + ] + }, + { + "id": 15135, + "cuisine": "italian", + "ingredients": [ + "butter", + "italian seasoning", + "frozen broccoli florets", + "onions", + "water", + "2% reduced-fat milk", + "boneless skinless chicken breasts", + "knorr italian side creami garlic shell" + ] + }, + { + "id": 41068, + "cuisine": "french", + "ingredients": [ + "yellow corn meal", + "large eggs", + "dressing", + "milk", + "sea salt", + "sugar", + "all purpose unbleached flour", + "salad", + "unsalted butter", + "apples" + ] + }, + { + "id": 10227, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "ginger", + "mustard seeds", + "asafoetida", + "fenugreek", + "green chilies", + "vinegar", + "salt", + "tumeric", + "lemon", + "mustard oil" + ] + }, + { + "id": 22199, + "cuisine": "italian", + "ingredients": [ + "butter", + "confectioners sugar", + "milk", + "vanilla extract", + "eggs", + "sprinkles", + "white sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 41212, + "cuisine": "southern_us", + "ingredients": [ + "water", + "granulated sugar", + "all-purpose flour", + "chipotle chile", + "ground black pepper", + "buttermilk", + "garlic cloves", + "collard greens", + "baking soda", + "fine salt", + "yellow onion", + "kosher salt", + "unsalted butter", + "bacon" + ] + }, + { + "id": 16507, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "sea salt", + "ground cumin", + "nonfat plain greek yogurt", + "fresh mint", + "zucchini", + "fresh lemon juice", + "olive oil", + "tandoori seasoning", + "center-cut salmon fillet" + ] + }, + { + "id": 43633, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "olive oil", + "lemon", + "cayenne pepper", + "onions", + "ground cumin", + "pepper", + "sesame seeds", + "paprika", + "garlic cloves", + "plum tomatoes", + "chicken legs", + "fresh ginger", + "sea salt", + "chickpeas", + "boiling water", + "chicken stock", + "honey", + "chicken breasts", + "cilantro leaves", + "lemon juice", + "saffron" + ] + }, + { + "id": 16892, + "cuisine": "mexican", + "ingredients": [ + "chopped green bell pepper", + "non-fat sour cream", + "garlic cloves", + "chorizo sausage", + "black turtle beans", + "chili powder", + "ground allspice", + "serrano chile", + "fat free less sodium chicken broth", + "cooking spray", + "chopped onion", + "red bell pepper", + "ground cumin", + "poblano peppers", + "diced tomatoes", + "anasazi beans", + "dried oregano" + ] + }, + { + "id": 47416, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "feta cheese", + "i can't believ it' not butter! made with olive oil spread", + "kalamata", + "prebaked pizza crusts", + "dri oregano leaves, crush", + "fresh spinach leaves, rins and pat dry", + "garlic" + ] + }, + { + "id": 28553, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "vinegar", + "garlic cloves", + "ground cumin", + "clove", + "sugar", + "salt", + "onions", + "tomato paste", + "fresh ginger", + "oil", + "chicken", + "ground paprika", + "dry mustard", + "dried red chile peppers" + ] + }, + { + "id": 25030, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cornmeal", + "vegetable oil cooking spray", + "salt", + "warm water", + "all-purpose flour", + "dry yeast" + ] + }, + { + "id": 20549, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "boneless skinless chicken breasts", + "Niçoise olives", + "chicken broth", + "olive oil", + "butter", + "thyme", + "pancetta", + "pepper", + "shallots", + "garlic cloves", + "tomatoes", + "dry white wine", + "salt" + ] + }, + { + "id": 25595, + "cuisine": "italian", + "ingredients": [ + "whole milk", + "salt", + "sugar", + "whipping cream", + "unflavored gelatin", + "sauterne", + "black mission figs", + "honey", + "vanilla extract" + ] + }, + { + "id": 26712, + "cuisine": "italian", + "ingredients": [ + "capers", + "Italian parsley leaves", + "olive oil", + "orange rind", + "baguette", + "goat cheese", + "green olives", + "ground black pepper" + ] + }, + { + "id": 28646, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "butter", + "stone-ground cornmeal", + "all-purpose flour", + "shortening", + "buttermilk" + ] + }, + { + "id": 16968, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "lemon grass", + "coconut milk", + "sambal ulek", + "water", + "garlic", + "red chili peppers", + "ginger", + "fresh lime juice", + "fish sauce", + "thai basil", + "shrimp" + ] + }, + { + "id": 47561, + "cuisine": "russian", + "ingredients": [ + "ground black pepper", + "red wine vinegar", + "garlic cloves", + "onions", + "parsnips", + "vegetable oil", + "beets", + "bay leaf", + "celery ribs", + "beef", + "salt", + "carrots", + "marjoram", + "savoy cabbage", + "leeks", + "dill", + "sour cream" + ] + }, + { + "id": 23194, + "cuisine": "cajun_creole", + "ingredients": [ + "celery salt", + "chili flakes", + "white pepper", + "minced garlic", + "chili powder", + "paprika", + "anchovy fillets", + "fresh basil", + "pitted black olives", + "kosher salt", + "olive oil", + "balsamic vinegar", + "salt", + "plum tomatoes", + "pasta", + "brown sugar", + "scallops", + "dried basil", + "onion powder", + "cracked black pepper", + "smoked paprika", + "capers", + "cajun spice mix", + "pepper", + "garlic powder", + "ground thyme", + "cayenne pepper", + "dried oregano" + ] + }, + { + "id": 48317, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "green olives", + "roasted red peppers", + "fresh parsley", + "fresh basil", + "part-skim mozzarella cheese", + "fresh lemon juice", + "hearts of palm", + "freshly ground pepper", + "dried rosemary" + ] + }, + { + "id": 20012, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "low salt chicken broth", + "Anaheim chile", + "whipping cream", + "serrano chilies", + "large garlic cloves", + "fresh lime juice", + "green onions", + "cilantro leaves" + ] + }, + { + "id": 41577, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "sliced black olives", + "sour cream", + "avocado", + "refried beans", + "green onions", + "tomatoes", + "taco seasoning mix", + "lean ground beef", + "water", + "flour tortillas", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 27121, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "olive oil", + "lemon", + "chicken stock cubes", + "chillies", + "low-fat milk", + "ground cloves", + "yoghurt", + "light coconut milk", + "ground coriander", + "bread flour", + "red chili peppers", + "garam masala", + "ginger", + "ground almonds", + "onions", + "ground cumin", + "plain flour", + "fresh coriander", + "boneless skinless chicken breasts", + "garlic", + "smoked paprika", + "plum tomatoes" + ] + }, + { + "id": 9333, + "cuisine": "southern_us", + "ingredients": [ + "half & half", + "whipping cream", + "sugar", + "butter", + "corn starch", + "refrigerated piecrusts", + "vanilla extract", + "egg yolks", + "sweetened coconut flakes", + "toasted coconut" + ] + }, + { + "id": 2047, + "cuisine": "thai", + "ingredients": [ + "seedless cucumber", + "peanut sauce", + "olive oil", + "boneless skinless chicken breast halves", + "whole wheat tortillas", + "chopped cilantro fresh", + "pepper", + "salt" + ] + }, + { + "id": 46504, + "cuisine": "indian", + "ingredients": [ + "ghee", + "green chilies", + "cumin", + "ginger piece", + "onions", + "oil", + "green gram" + ] + }, + { + "id": 30749, + "cuisine": "jamaican", + "ingredients": [ + "black peppercorns", + "lime", + "chopped fresh thyme", + "peanut oil", + "ketchup", + "vinegar", + "ground allspice", + "soy sauce", + "fresh ginger", + "garlic", + "ground cinnamon", + "pepper", + "green onions", + "dark brown sugar" + ] + }, + { + "id": 252, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "chipotles in adobo", + "avocado", + "salt", + "onions", + "chicken broth", + "cilantro leaves", + "tomatoes", + "corn tortillas" + ] + }, + { + "id": 35861, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh corn", + "vegetable oil", + "cayenne pepper", + "milk", + "salt", + "eggs", + "baking powder", + "all-purpose flour", + "cooked ham", + "purple onion" + ] + }, + { + "id": 38957, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "diced tomatoes", + "chicken broth", + "kosher salt", + "cumin", + "guajillo chiles", + "garlic", + "sugar", + "olive oil" + ] + }, + { + "id": 5413, + "cuisine": "southern_us", + "ingredients": [ + "water", + "granulated sugar", + "toasted pumpkinseeds", + "toasted pecans", + "unsalted butter", + "salt", + "cayenne", + "light corn syrup", + "baking soda", + "cinnamon" + ] + }, + { + "id": 21116, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "pastry cream", + "frozen pastry puff sheets", + "all-purpose flour", + "cream of tartar", + "milk chocolate", + "unsalted butter", + "heavy cream", + "unflavored gelatin", + "kosher salt", + "large eggs", + "vanilla extract", + "sugar", + "large egg yolks", + "whole milk", + "corn starch" + ] + }, + { + "id": 46521, + "cuisine": "japanese", + "ingredients": [ + "water", + "bell pepper", + "butter", + "spinach", + "miso paste", + "sesame oil", + "minced ginger", + "crimini mushrooms", + "yellow onion", + "black pepper", + "cherries", + "sliced carrots" + ] + }, + { + "id": 47239, + "cuisine": "chinese", + "ingredients": [ + "low sodium teriyaki sauce", + "chicken breast tenders", + "stir fry vegetable blend", + "crushed red pepper", + "sesame oil" + ] + }, + { + "id": 24355, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "coriander powder", + "green chilies", + "ground turmeric", + "coriander seeds", + "salt", + "oil", + "whole wheat flour", + "chili powder", + "cumin seed", + "garam masala", + "cilantro leaves", + "ghee" + ] + }, + { + "id": 6373, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "black olives", + "tomatoes", + "green onions", + "taco seasoning", + "tortillas", + "salsa", + "water", + "cheese", + "ground beef" + ] + }, + { + "id": 45702, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "ricotta", + "rosemary sprigs", + "all-purpose flour", + "large eggs", + "unsalted butter", + "grated nutmeg" + ] + }, + { + "id": 25443, + "cuisine": "french", + "ingredients": [ + "honey", + "piecrust", + "pears", + "goat cheese", + "dried thyme" + ] + }, + { + "id": 3851, + "cuisine": "italian", + "ingredients": [ + "artichoke hearts", + "turkey salami", + "fresh basil", + "ground black pepper", + "provolone cheese", + "prosciutto", + "mushrooms", + "minced garlic", + "roasted red peppers" + ] + }, + { + "id": 10641, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "milk", + "butter", + "corn starch", + "dark chocolate", + "espresso powder", + "cookies", + "salt", + "unsweetened cocoa powder", + "eggs", + "warm water", + "egg yolks", + "vanilla", + "OREO® Cookies", + "sugar", + "mini marshmallows", + "heavy cream", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 3216, + "cuisine": "irish", + "ingredients": [ + "ground ginger", + "sultana", + "Guinness Beer", + "raisins", + "mixed peel", + "ground cinnamon", + "bread crumbs", + "lemon", + "apples", + "nutmeg", + "ground cloves", + "butter", + "currant", + "self raising flour", + "eggs", + "orange", + "dates", + "dark muscovado sugar" + ] + }, + { + "id": 34997, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "plum sauce", + "clove garlic, fine chop", + "all-purpose flour", + "oyster sauce", + "red bell pepper", + "eggs", + "water", + "pork tenderloin", + "salt", + "scallions", + "corn starch", + "soy sauce", + "cooking oil", + "pineapple", + "tomato ketchup", + "Lea & Perrins Worcestershire Sauce", + "green bell pepper", + "baking soda", + "rice wine", + "rice vinegar", + "oil", + "corn flour" + ] + }, + { + "id": 40993, + "cuisine": "greek", + "ingredients": [ + "baking potatoes", + "sliced almonds", + "garlic cloves", + "bread crumbs", + "extra-virgin olive oil", + "water", + "fresh lemon juice" + ] + }, + { + "id": 1503, + "cuisine": "brazilian", + "ingredients": [ + "garlic cloves", + "vegetable oil", + "onions", + "salt", + "long grain white rice", + "chicken broth", + "hot water" + ] + }, + { + "id": 19822, + "cuisine": "italian", + "ingredients": [ + "hazelnuts", + "flour", + "baking soda", + "salt", + "espresso powder", + "baking powder", + "sugar", + "large eggs", + "cocoa powder" + ] + }, + { + "id": 38638, + "cuisine": "mexican", + "ingredients": [ + "milk", + "chicken fingers", + "tomatoes", + "cream of chicken soup", + "red bell pepper", + "cream style corn", + "enchilada sauce", + "black beans", + "frozen corn", + "onions" + ] + }, + { + "id": 10234, + "cuisine": "french", + "ingredients": [ + "loaves", + "extra-virgin olive oil", + "herbes de provence", + "tomatoes", + "romaine lettuce leaves", + "garlic cloves", + "boneless skinless chicken breasts", + "purple onion", + "capers", + "anchovy paste", + "fresh lemon juice" + ] + }, + { + "id": 3650, + "cuisine": "indian", + "ingredients": [ + "instant rice", + "deveined shrimp", + "mustard seeds", + "canola oil", + "curry powder", + "salt", + "onions", + "black pepper", + "light coconut milk", + "frozen peas and carrots", + "ground cinnamon", + "ground red pepper", + "hot water", + "chopped cilantro fresh" + ] + }, + { + "id": 37185, + "cuisine": "french", + "ingredients": [ + "grated orange peel", + "large eggs", + "honey", + "all-purpose flour", + "sugar", + "vanilla extract", + "melted butter", + "unsalted butter", + "orange flower water" + ] + }, + { + "id": 24796, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic", + "sugar", + "jalapeno chilies", + "cilantro leaves", + "ground black pepper", + "purple onion", + "kosher salt", + "diced tomatoes", + "tortilla chips" + ] + }, + { + "id": 38438, + "cuisine": "italian", + "ingredients": [ + "brandy", + "butter", + "fresh parsley", + "canned low sodium chicken broth", + "cooking oil", + "salt", + "fettucine", + "ground black pepper", + "heavy cream", + "turkey breast cutlets", + "mushrooms", + "scallions" + ] + }, + { + "id": 6358, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "chilli paste", + "onion rings", + "ginger paste", + "warm water", + "yoghurt", + "rice", + "cashew nuts", + "garlic paste", + "coriander powder", + "kasuri methi", + "onions", + "ground cumin", + "fresh coriander", + "boneless chicken", + "ground cardamom", + "saffron" + ] + }, + { + "id": 25145, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed brown sugar", + "salt", + "butter", + "chopped pecans", + "large eggs", + "all-purpose flour", + "vanilla extract", + "cream cheese, soften" + ] + }, + { + "id": 17952, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "grated nutmeg", + "whole cloves", + "ground ginger", + "white peppercorns" + ] + }, + { + "id": 44043, + "cuisine": "british", + "ingredients": [ + "cream of tartar", + "cream", + "egg whites", + "salt", + "wine", + "vanilla beans", + "cinnamon", + "nutmeg", + "crumbles", + "dried tart cherries", + "cardamom pods", + "sugar", + "cherries", + "chocolate" + ] + }, + { + "id": 12816, + "cuisine": "cajun_creole", + "ingredients": [ + "pork tenderloin", + "orange juice", + "creole seasoning", + "dijon mustard", + "thyme sprigs" + ] + }, + { + "id": 18469, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "shallots", + "green chilies", + "black vinegar", + "light soy sauce", + "cayenne pepper", + "corn starch", + "eggplant", + "chili bean paste", + "ginger root", + "sugar", + "salt", + "garlic cloves" + ] + }, + { + "id": 17463, + "cuisine": "jamaican", + "ingredients": [ + "vanilla", + "nutmeg", + "sweetened condensed milk", + "cold water", + "carrots", + "jamaican rum" + ] + }, + { + "id": 48553, + "cuisine": "italian", + "ingredients": [ + "water", + "Sicilian olives", + "salt", + "red bell pepper", + "cooking spray", + "white wine vinegar", + "garlic cloves", + "ground black pepper", + "extra-virgin olive oil", + "squid", + "capers", + "basil leaves", + "purple onion", + "fresh lemon juice" + ] + }, + { + "id": 30959, + "cuisine": "italian", + "ingredients": [ + "refrigerated pizza dough", + "mozzarella cheese", + "fresh basil", + "sauce", + "part-skim mozzarella cheese" + ] + }, + { + "id": 31211, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "large eggs", + "extra-virgin olive oil", + "tuna packed in olive oil", + "Boston lettuce", + "radishes", + "chopped fresh thyme", + "freshly ground pepper", + "haricots verts", + "cherry tomatoes", + "dry white wine", + "white wine vinegar", + "red potato", + "dijon mustard", + "shallots", + "Niçoise olives" + ] + }, + { + "id": 36329, + "cuisine": "italian", + "ingredients": [ + "eggs", + "chopped fresh chives", + "purple onion", + "organic tomato", + "diced tomatoes", + "minced garlic", + "fresh thyme leaves", + "grated parmesan cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 1699, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "dried basil", + "basil", + "nonfat ricotta cheese", + "romano cheese", + "finely chopped onion", + "jumbo pasta shells", + "tomato sauce", + "olive oil", + "salt", + "italian seasoning", + "pepperoni slices", + "whole milk ricotta cheese", + "garlic cloves" + ] + }, + { + "id": 23277, + "cuisine": "southern_us", + "ingredients": [ + "andouille sausage", + "cracked black pepper", + "cayenne pepper", + "large shrimp", + "chicken stock", + "unsalted butter", + "white cheddar cheese", + "smoked paprika", + "sliced green onions", + "pepper", + "extra-virgin olive oil", + "garlic cloves", + "cumin", + "fontina cheese", + "lemon", + "salt", + "grits" + ] + }, + { + "id": 8303, + "cuisine": "french", + "ingredients": [ + "clove", + "water", + "blueberries", + "crème de cassis", + "beaujolais", + "blackberries", + "sugar", + "mint sprigs", + "cinnamon sticks", + "raspberries", + "strawberries" + ] + }, + { + "id": 20259, + "cuisine": "southern_us", + "ingredients": [ + "lemon juice", + "juice", + "sugar" + ] + }, + { + "id": 25106, + "cuisine": "japanese", + "ingredients": [ + "honey", + "carrots", + "pure vanilla extract", + "cardamom seeds", + "full fat coconut milk", + "water", + "salt" + ] + }, + { + "id": 16730, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "unsalted butter", + "flour tortillas (not low fat)", + "cinnamon" + ] + }, + { + "id": 18748, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "molasses", + "whipped cream", + "ground cinnamon", + "mace", + "salt", + "eggs", + "unsalted butter", + "yellow corn meal", + "milk", + "raisins" + ] + }, + { + "id": 16928, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "garlic", + "cheese tortellini", + "olive oil", + "broccoli", + "vegetable broth" + ] + }, + { + "id": 8177, + "cuisine": "moroccan", + "ingredients": [ + "preserved lemon", + "yukon gold potatoes", + "chickpeas", + "turnips", + "vegetables", + "florets", + "onions", + "fronds", + "raisins", + "carrots", + "tomatoes", + "fennel bulb", + "sea salt" + ] + }, + { + "id": 16663, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "kosher salt", + "cake", + "ice water", + "shrimp", + "rice paper", + "soy sauce", + "lime", + "sesame oil", + "yellow onion", + "boiling water", + "black pepper", + "sambal olek", + "rice noodles", + "scallions", + "mango", + "chiles", + "water", + "meat", + "cilantro", + "cucumber" + ] + }, + { + "id": 38929, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "eggs", + "cream style corn", + "whole kernel corn, drain", + "milk", + "all-purpose flour", + "sugar", + "butter" + ] + }, + { + "id": 27613, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "chicken", + "all-purpose flour", + "salt", + "ground black pepper", + "Hidden Valley® Original Ranch Salad® Dressing & Seasoning Mix" + ] + }, + { + "id": 14455, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "coriander powder", + "green chilies", + "tomatoes", + "fresh ginger", + "crushed garlic", + "ground turmeric", + "curry leaves", + "water", + "chili powder", + "onions", + "eggs", + "garam masala", + "salt" + ] + }, + { + "id": 47577, + "cuisine": "chinese", + "ingredients": [ + "broccoli florets", + "crushed red pepper flakes", + "canola oil", + "ketchup", + "slaw mix", + "pork loin chops", + "sugar", + "ramen noodles", + "garlic cloves", + "reduced sodium soy sauce", + "worcestershire sauce", + "bamboo shoots" + ] + }, + { + "id": 9986, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "mung beans", + "onions", + "spinach", + "light soy sauce", + "salt", + "pork cubes", + "water", + "roma tomatoes", + "fish sauce", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 50, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "purple onion", + "ground cumin", + "garam masala", + "paprika", + "greek yogurt", + "tumeric", + "lemon", + "garlic cloves", + "chili powder", + "ginger", + "chicken thighs" + ] + }, + { + "id": 39116, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "vegetable oil", + "onions", + "fish sauce", + "lime wedges", + "fresh lime juice", + "mussels", + "ketchup", + "red curry paste", + "fresh basil", + "fresh ginger root", + "coconut milk" + ] + }, + { + "id": 31135, + "cuisine": "mexican", + "ingredients": [ + "tomato juice", + "garlic cloves", + "chipotle chile", + "jalape", + "plum tomatoes", + "peaches", + "chopped cilantro fresh", + "chili", + "chopped onion" + ] + }, + { + "id": 33703, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "kosher salt", + "bay leaves", + "paprika", + "okra", + "chopped garlic", + "andouille sausage", + "ground black pepper", + "chopped fresh thyme", + "hot sauce", + "low salt chicken broth", + "boneless chicken skinless thigh", + "file powder", + "worcestershire sauce", + "cayenne pepper", + "onions", + "green bell pepper", + "steamed rice", + "vegetable oil", + "all-purpose flour", + "scallions" + ] + }, + { + "id": 21093, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "milk", + "green tomatoes", + "salt", + "pepper", + "flour", + "bacon", + "cornmeal", + "sugar", + "garlic powder", + "butter", + "bacon grease", + "white bread", + "shredded cheddar cheese", + "chives", + "paprika", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 25060, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "fresh lime juice", + "salt", + "onions", + "tomatoes", + "cilantro leaves", + "garlic", + "chipotles in adobo" + ] + }, + { + "id": 30211, + "cuisine": "chinese", + "ingredients": [ + "water", + "ginger", + "corn starch", + "brown sugar", + "green onions", + "sauce", + "hoisin sauce", + "garlic", + "steak", + "soy sauce", + "sesame oil", + "oil" + ] + }, + { + "id": 43599, + "cuisine": "cajun_creole", + "ingredients": [ + "chocolate syrup", + "whipping cream", + "banana bread", + "pecans", + "dark rum", + "dark brown sugar", + "bananas", + "chocolate ice cream", + "vanilla ice cream", + "sweetened coconut flakes", + "chocolate chip cookie dough ice cream" + ] + }, + { + "id": 4746, + "cuisine": "italian", + "ingredients": [ + "sugar", + "dried basil", + "lean ground beef", + "Philadelphia Cream Cheese", + "bay leaf", + "eggs", + "pepper", + "zucchini", + "diced tomatoes", + "red bell pepper", + "dried oregano", + "tomato paste", + "mozzarella cheese", + "olive oil", + "ricotta cheese", + "salt", + "onions", + "tomato sauce", + "water", + "grated parmesan cheese", + "garlic", + "pasta sheets" + ] + }, + { + "id": 44104, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dry white wine", + "fresh lemon juice", + "chicken stock", + "lean bacon", + "salt", + "pea shoots", + "parmigiano reggiano cheese", + "freshly ground pepper", + "arborio rice", + "unsalted butter", + "peas", + "onions" + ] + }, + { + "id": 34116, + "cuisine": "russian", + "ingredients": [ + "milk", + "crème fraîche", + "fresh dill", + "large eggs", + "all-purpose flour", + "smoked salmon", + "unsalted butter", + "buckwheat flour", + "kosher salt", + "baking powder" + ] + }, + { + "id": 24576, + "cuisine": "italian", + "ingredients": [ + "boneless skinless chicken breasts", + "mozzarella cheese", + "prepar pesto", + "roma tomatoes" + ] + }, + { + "id": 38115, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "extra-virgin olive oil", + "spaghettini", + "parmigiano reggiano cheese", + "garlic cloves", + "crushed red pepper", + "flat leaf parsley" + ] + }, + { + "id": 3669, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "vanilla", + "sweetened condensed milk", + "self rising flour", + "whipped topping", + "granulated sugar", + "cream cheese", + "butter", + "chopped pecans" + ] + }, + { + "id": 22364, + "cuisine": "japanese", + "ingredients": [ + "light soy sauce", + "egg yolks", + "soy sauce", + "mirin", + "corn starch", + "sugar", + "dashi", + "all-purpose flour", + "water", + "cooking oil", + "green beans" + ] + }, + { + "id": 45334, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "crackers", + "seasoning salt", + "sour cream", + "condensed cream of chicken soup", + "condensed cream of mushroom soup", + "boneless skinless chicken breast halves", + "egg noodles", + "onions" + ] + }, + { + "id": 16700, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "sliced apples", + "raw sugar", + "apple juice", + "chopped pecans", + "pure vanilla extract", + "evaporated milk", + "whipped cream", + "beaten eggs", + "corn starch", + "coconut flakes", + "butter", + "whipped cream cheese", + "graham cracker pie crust", + "pecans", + "cinnamon", + "sea salt", + "fresh lemon juice" + ] + }, + { + "id": 22771, + "cuisine": "indian", + "ingredients": [ + "sugar", + "peeled fresh ginger", + "cumin seed", + "plain whole-milk yogurt", + "green cardamom pods", + "water", + "purple onion", + "cinnamon sticks", + "canola oil", + "red chili peppers", + "mahimahi", + "garlic cloves", + "ground turmeric", + "clove", + "coriander seeds", + "salt", + "bay leaf" + ] + }, + { + "id": 12697, + "cuisine": "vietnamese", + "ingredients": [ + "Conimex Wok Olie", + "Conimex Woksaus Specials Vietnamese Gember Knoflook", + "eggplant", + "onions", + "jasmine rice", + "basil", + "chicken breasts" + ] + }, + { + "id": 44771, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "water", + "whole kernel corn, drain", + "black beans", + "rice", + "lime juice", + "ground cumin" + ] + }, + { + "id": 5111, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "frozen corn kernels", + "onions", + "spinach", + "salt", + "ginger root", + "cream style corn", + "garlic cloves", + "fish sauce", + "beef broth", + "ground beef" + ] + }, + { + "id": 38932, + "cuisine": "italian", + "ingredients": [ + "lemon wedge", + "chopped celery", + "low salt chicken broth", + "cannellini beans", + "extra-virgin olive oil", + "carrots", + "dry white wine", + "artichokes", + "country bread", + "fresh basil", + "pecorino romano cheese", + "chopped onion", + "thyme sprigs" + ] + }, + { + "id": 35016, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "salt", + "blackberries", + "sugar", + "lemon", + "blueberries", + "cinnamon", + "all-purpose flour", + "unsalted butter", + "buttermilk", + "orange juice" + ] + }, + { + "id": 28761, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "ham", + "apple cider vinegar", + "dijon mustard", + "ground ginger", + "pineapple juice" + ] + }, + { + "id": 36455, + "cuisine": "italian", + "ingredients": [ + "chicken legs", + "water", + "fresh thyme leaves", + "freshly ground pepper", + "onions", + "fresh oregano leaves", + "parmesan cheese", + "salt", + "croutons", + "green bell pepper", + "olive oil", + "diced tomatoes", + "garlic cloves", + "spaghetti", + "chicken broth", + "white wine", + "bay leaves", + "fresh mushrooms", + "carrots" + ] + }, + { + "id": 19423, + "cuisine": "spanish", + "ingredients": [ + "white beans", + "chorizo sausage", + "bacon", + "sausages", + "bay leaves", + "garlic cloves", + "salt", + "onions" + ] + }, + { + "id": 45759, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "curry powder", + "ground turmeric", + "black pepper", + "coconut milk", + "sweet chili sauce", + "chicken drumsticks", + "minced garlic", + "coriander" + ] + }, + { + "id": 44875, + "cuisine": "southern_us", + "ingredients": [ + "louisiana hot sauce", + "ground black pepper", + "celery", + "seasoning salt", + "all-purpose flour", + "italian seasoning", + "chicken gizzards", + "bay leaves", + "onions", + "celery salt", + "garlic powder", + "oil", + "ground cumin" + ] + }, + { + "id": 41113, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "yellow onion", + "mung bean sprouts", + "canola oil", + "cilantro", + "okra", + "fresh pineapple", + "kosher salt", + "filet", + "cooked white rice", + "ground cumin", + "vietnamese fish sauce", + "tamarind concentrate", + "plum tomatoes" + ] + }, + { + "id": 36554, + "cuisine": "french", + "ingredients": [ + "swiss cheese", + "onions", + "grated parmesan cheese", + "all-purpose flour", + "water", + "butter", + "french bread", + "beef broth" + ] + }, + { + "id": 12727, + "cuisine": "filipino", + "ingredients": [ + "milk", + "carrots", + "pineapple chunks", + "bell pepper", + "chicken", + "tomatoes", + "cooking oil", + "onions", + "fish sauce", + "garlic" + ] + }, + { + "id": 18133, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "pork tenderloin", + "ancho chile pepper", + "sugar", + "cider vinegar", + "large garlic cloves", + "dried oregano", + "ground cloves", + "olive oil", + "salt", + "ground cumin", + "fat free less sodium chicken broth", + "cooking spray", + "boiling water" + ] + }, + { + "id": 18115, + "cuisine": "indian", + "ingredients": [ + "ground chicken breast", + "yellow onion", + "ground nutmeg", + "garlic", + "greek yogurt", + "ground cinnamon", + "Italian parsley leaves", + "cayenne pepper", + "ground black pepper", + "salt", + "allspice" + ] + }, + { + "id": 39627, + "cuisine": "mexican", + "ingredients": [ + "whole wheat tortillas", + "crumbled gorgonzola", + "avocado", + "sharp cheddar cheese", + "buffalo sauce", + "chicken", + "olive oil", + "scallions" + ] + }, + { + "id": 15359, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "chile negro", + "garlic", + "corn tortillas", + "chili", + "stout", + "beef broth", + "adobo sauce", + "lime", + "apple cider vinegar", + "purple onion", + "chipotle peppers", + "olive oil", + "cilantro", + "chuck steaks" + ] + }, + { + "id": 36360, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "lime", + "low sodium chicken stock", + "straw mushrooms", + "thai chile", + "galangal", + "fish sauce", + "shallots", + "chopped cilantro", + "tomatoes", + "lemongrass", + "raw prawn", + "canola oil" + ] + }, + { + "id": 28378, + "cuisine": "southern_us", + "ingredients": [ + "grated orange peel", + "baking powder", + "salt", + "unsalted butter", + "ice cream", + "sour cream", + "yellow corn meal", + "large eggs", + "vanilla extract", + "sugar cubes", + "sugar", + "compote", + "all-purpose flour" + ] + }, + { + "id": 21525, + "cuisine": "italian", + "ingredients": [ + "basil pesto sauce", + "fresh basil leaves", + "firm tofu", + "cherry tomatoes", + "crumbled gorgonzola" + ] + }, + { + "id": 29566, + "cuisine": "filipino", + "ingredients": [ + "sesame seeds", + "salt", + "chicken pieces", + "eggs", + "green onions", + "corn starch", + "sugar", + "shoyu", + "ajinomoto", + "flour", + "garlic cloves" + ] + }, + { + "id": 41297, + "cuisine": "jamaican", + "ingredients": [ + "green cabbage", + "eggplant", + "scotch bonnet chile", + "okra pods", + "water", + "green onions", + "ground allspice", + "thyme sprigs", + "green bell pepper", + "sweet potatoes", + "salt", + "carrots", + "unsweetened coconut milk", + "corn kernels", + "vegetable oil", + "garlic cloves", + "onions" + ] + }, + { + "id": 25318, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "mirin", + "sesame oil", + "Gochujang base", + "canola oil", + "sushi rice", + "peeled fresh ginger", + "salt", + "kimchi", + "granny smith apples", + "large eggs", + "light corn syrup", + "garlic cloves", + "water", + "green onions", + "rice vinegar", + "skirt steak" + ] + }, + { + "id": 34422, + "cuisine": "moroccan", + "ingredients": [ + "lacinato kale", + "lemon", + "hemp seeds", + "ground cumin", + "ground black pepper", + "apples", + "raw almond", + "oil cured olives", + "sea salt", + "carrots", + "golden raisins", + "extra-virgin olive oil", + "ground turmeric" + ] + }, + { + "id": 1543, + "cuisine": "cajun_creole", + "ingredients": [ + "light mayonnaise", + "yellow bell pepper", + "Italian bread", + "lettuce leaves", + "cajun seasoning", + "garlic cloves", + "basil leaves", + "vegetable oil", + "salt", + "capers", + "soft shelled crabs", + "purple onion", + "cornmeal" + ] + }, + { + "id": 12505, + "cuisine": "vietnamese", + "ingredients": [ + "ground cloves", + "shallots", + "salt", + "ground coriander", + "eggs", + "ground black pepper", + "cinnamon", + "ground allspice", + "pork shoulder", + "fish sauce", + "egg yolks", + "bacon", + "cognac", + "ground cumin", + "ground nutmeg", + "crushed garlic", + "fresh pork fat", + "chicken livers" + ] + }, + { + "id": 20930, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "salt", + "avocado", + "cilantro", + "green onions", + "lemon juice", + "olive oil", + "garlic" + ] + }, + { + "id": 1512, + "cuisine": "mexican", + "ingredients": [ + "extra-virgin olive oil", + "ground coriander", + "chopped cilantro fresh", + "low sodium chicken broth", + "yellow onion", + "sour cream", + "ground cumin", + "black beans", + "salt", + "carrots", + "oregano", + "large garlic cloves", + "cayenne pepper", + "fresh lime juice" + ] + }, + { + "id": 49188, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime juice", + "cilantro", + "sour cream", + "brown sugar", + "flour tortillas", + "cheese", + "skirt steak", + "soy sauce", + "bell pepper", + "garlic", + "cumin", + "chile powder", + "white onion", + "lime wedges", + "salsa", + "canola oil" + ] + }, + { + "id": 25199, + "cuisine": "italian", + "ingredients": [ + "baking powder", + "all-purpose flour", + "eggs", + "ricotta cheese", + "white sugar", + "vegetable oil", + "confectioners sugar", + "honey", + "vanilla extract" + ] + }, + { + "id": 2753, + "cuisine": "italian", + "ingredients": [ + "prego fresh mushroom italian sauce", + "onions", + "shredded mozzarella cheese", + "grated parmesan cheese", + "pasta", + "ground beef" + ] + }, + { + "id": 33889, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "salt", + "fresh thyme leaves", + "spanish paprika", + "pork tenderloin", + "salsa", + "fresh rosemary", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 29593, + "cuisine": "greek", + "ingredients": [ + "garlic", + "plain yogurt", + "english cucumber", + "white vinegar", + "salt", + "extra-virgin olive oil" + ] + }, + { + "id": 45229, + "cuisine": "british", + "ingredients": [ + "chicken stock", + "large eggs", + "salt", + "milk", + "worcestershire sauce", + "onions", + "plain flour", + "vegetable oil", + "sausages", + "coarse ground mustard", + "bacon" + ] + }, + { + "id": 22378, + "cuisine": "french", + "ingredients": [ + "pepper", + "salt", + "shredded swiss cheese", + "dry vermouth", + "whipping cream", + "milk", + "corn starch" + ] + }, + { + "id": 10362, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "unsalted butter", + "salt", + "fresh lime juice", + "chicken stock", + "boneless chicken skinless thigh", + "extra-virgin olive oil", + "red bell pepper", + "chipotle chile", + "yellow bell pepper", + "freshly ground pepper", + "green bell pepper", + "minced garlic", + "purple onion", + "poblano chiles" + ] + }, + { + "id": 23367, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "olive oil", + "chopped fresh chives", + "all-purpose flour", + "ground cayenne pepper", + "mozzarella cheese", + "grated parmesan cheese", + "garlic", + "cream cheese", + "eggs", + "salt and ground black pepper", + "butter", + "chopped onion", + "fresh parsley", + "water", + "egg whites", + "salt", + "fresh mushrooms" + ] + }, + { + "id": 6405, + "cuisine": "italian", + "ingredients": [ + "pesto", + "asparagus", + "fresh basil", + "fresh parmesan cheese", + "oil", + "minced garlic", + "zucchini", + "yellow squash", + "cheese tortellini" + ] + }, + { + "id": 13371, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "garlic", + "red kidney beans", + "cajun seasoning", + "salt", + "water", + "smoked sausage", + "seasoning", + "butter", + "bay leaf" + ] + }, + { + "id": 12221, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "salt", + "peanut oil", + "chopped cilantro fresh", + "bay leaves", + "chopped onion", + "garlic cloves", + "plum tomatoes", + "garam masala", + "chickpeas", + "cumin seed", + "plain whole-milk yogurt", + "water", + "peeled fresh ginger", + "cardamom pods", + "cinnamon sticks" + ] + }, + { + "id": 5590, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "vegetable oil", + "tomato purée", + "mushrooms", + "frozen spinach", + "soft tofu", + "garlic salt", + "italian style seasoning", + "garlic" + ] + }, + { + "id": 33424, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "chili powder", + "salsa", + "ground cumin", + "roasted red peppers", + "garlic", + "scallions", + "lime", + "coarse salt", + "tortilla chips", + "avocado", + "chicken breasts", + "cilantro leaves", + "pinto beans" + ] + }, + { + "id": 48892, + "cuisine": "mexican", + "ingredients": [ + "milk", + "Bisquick Baking Mix", + "eggs", + "Mexican cheese blend", + "garlic powder", + "green chile", + "Old El Paso™ Thick 'n Chunky salsa" + ] + }, + { + "id": 2205, + "cuisine": "french", + "ingredients": [ + "cider vinegar", + "honey", + "gruyere cheese", + "Heinz Chili Sauce", + "green onions", + "ham", + "melted butter", + "dried thyme", + "boneless skinless chicken breasts", + "pepper", + "olive oil", + "salt" + ] + }, + { + "id": 44550, + "cuisine": "indian", + "ingredients": [ + "baby lima beans", + "boneless skinless chicken breasts", + "salt", + "coconut milk", + "curry powder", + "fat free reduced sodium chicken broth", + "yellow onion", + "potatoes", + "diced tomatoes", + "baby carrots", + "pepper", + "parsley", + "hot sauce", + "cumin" + ] + }, + { + "id": 31773, + "cuisine": "mexican", + "ingredients": [ + "butter", + "hot water", + "salsa", + "diced tomatoes", + "boneless skinless chicken breasts", + "rice" + ] + }, + { + "id": 27834, + "cuisine": "southern_us", + "ingredients": [ + "hot pepper sauce", + "all-purpose flour", + "garlic powder", + "paprika", + "vegetable oil", + "cayenne pepper", + "salt and ground black pepper", + "buttermilk", + "chicken" + ] + }, + { + "id": 13349, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "adobo sauce", + "fresh cilantro", + "purple onion", + "green bell pepper", + "fresh tarragon", + "balsamic vinegar", + "salt" + ] + }, + { + "id": 45812, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "vanilla extract", + "kosher salt", + "granulated sugar", + "unsalted butter", + "thick-cut bacon", + "dry roasted peanuts", + "light corn syrup" + ] + }, + { + "id": 5826, + "cuisine": "southern_us", + "ingredients": [ + "shredded extra sharp cheddar cheese", + "milk", + "salt", + "fresh chives", + "baking powder", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 16031, + "cuisine": "filipino", + "ingredients": [ + "black peppercorns", + "palm vinegar", + "garlic", + "bay leaf", + "soy sauce", + "lard", + "boneless pork shoulder", + "patis", + "cooked white rice" + ] + }, + { + "id": 19579, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "salt", + "cumin", + "water", + "margarine", + "pepper", + "yellow split peas", + "clove", + "cayenne", + "onions" + ] + }, + { + "id": 29277, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "prepared mustard", + "sweet onion", + "salt", + "pepper", + "red wine vinegar", + "tomatoes", + "olive oil", + "fresh basil leaves" + ] + }, + { + "id": 7203, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "cumin", + "black beans", + "long-grain rice", + "chicken broth", + "salt", + "pepper", + "chunky salsa" + ] + }, + { + "id": 6773, + "cuisine": "british", + "ingredients": [ + "eggs", + "cayenne", + "curry powder", + "pink salmon", + "olive oil", + "chopped parsley", + "cooked rice", + "salt" + ] + }, + { + "id": 5816, + "cuisine": "french", + "ingredients": [ + "reduced fat milk", + "shredded sharp cheddar cheese", + "ham", + "baking potatoes", + "all-purpose flour", + "ground black pepper", + "butter", + "garlic cloves", + "cooking spray", + "salt", + "onions" + ] + }, + { + "id": 32936, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "tomato paste", + "garlic cloves", + "olive oil", + "fresh basil" + ] + }, + { + "id": 14271, + "cuisine": "thai", + "ingredients": [ + "lite coconut milk", + "cilantro", + "red curry paste", + "lemongrass", + "deveined shrimp", + "canola oil", + "minced ginger", + "button mushrooms", + "basmati rice", + "chicken broth", + "peanuts", + "salt" + ] + }, + { + "id": 36456, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "salt", + "masa harina", + "vegetable oil", + "masa dough", + "baking powder", + "all-purpose flour", + "tomatoes", + "chees fresco queso", + "poblano chiles" + ] + }, + { + "id": 19780, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "chopped cilantro fresh", + "chopped onion", + "salt" + ] + }, + { + "id": 27085, + "cuisine": "spanish", + "ingredients": [ + "brandy", + "cherries", + "salt", + "yeast", + "eggs", + "orange", + "unbleached flour", + "lemon rind", + "water", + "egg whites", + "candied fruit", + "sugar", + "milk", + "butter", + "orange rind" + ] + }, + { + "id": 27173, + "cuisine": "thai", + "ingredients": [ + "boneless chicken skinless thigh", + "thai basil", + "green onions", + "ginger", + "oil", + "lime juice", + "asian pear", + "sesame oil", + "garlic", + "toasted sesame seeds", + "spinach", + "orange", + "jalapeno chilies", + "fried eggs", + "salsa", + "soy sauce", + "steamed rice", + "bawang goreng", + "cilantro", + "orange juice" + ] + }, + { + "id": 36955, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "boneless skinless chicken breasts", + "fresh lime juice", + "lemongrass", + "thai chile", + "lime rind", + "light coconut milk", + "chopped cilantro fresh", + "peeled fresh ginger", + "Thai fish sauce" + ] + }, + { + "id": 24595, + "cuisine": "spanish", + "ingredients": [ + "clams", + "valencia rice", + "dry white wine", + "onions", + "chicken broth", + "olive oil", + "green beans", + "mussels", + "water", + "garlic cloves", + "chorizo sausage", + "saffron threads", + "tomatoes", + "prawns", + "chicken pieces" + ] + }, + { + "id": 31792, + "cuisine": "japanese", + "ingredients": [ + "milk", + "chili powder", + "fenugreek seeds", + "cashew nuts", + "cottage cheese", + "fresh ginger", + "green peas", + "garlic cloves", + "tomato purée", + "honey", + "butter", + "oil", + "ground cumin", + "cream", + "garam masala", + "salt", + "onions" + ] + }, + { + "id": 27452, + "cuisine": "southern_us", + "ingredients": [ + "pork belly", + "chanterelle", + "pepper", + "canola oil", + "kosher salt", + "dark brown sugar", + "table salt", + "farro" + ] + }, + { + "id": 24074, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "dry white wine", + "mahi mahi fillets", + "soy sauce", + "unsalted butter", + "lemon", + "shiso", + "fresh ginger root", + "shallots", + "ground white pepper", + "kosher salt", + "black sesame seeds", + "heavy cream", + "canola oil" + ] + }, + { + "id": 35679, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "mint leaves", + "onions", + "black peppercorns", + "Vietnamese coriander", + "rice vinegar", + "red chili peppers", + "bawang goreng", + "cabbage", + "fish sauce", + "peanuts", + "skinless chicken breasts" + ] + }, + { + "id": 17986, + "cuisine": "cajun_creole", + "ingredients": [ + "white bread", + "cooking spray", + "vegetable oil", + "pickle relish", + "large egg whites", + "ground red pepper", + "worcestershire sauce", + "creole mustard", + "garlic powder", + "light mayonnaise", + "turkey breast", + "fat free yogurt", + "green onions", + "cajun seasoning" + ] + }, + { + "id": 31212, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "cilantro leaves", + "urad dal", + "shrimp", + "parboiled rice", + "oil", + "salt" + ] + }, + { + "id": 3510, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "sweet onion", + "kosher salt", + "freshly ground pepper", + "fresh basil", + "extra-virgin olive oil", + "baguette", + "garlic cloves" + ] + }, + { + "id": 21106, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "carrots", + "celery ribs", + "garlic cloves", + "dried oregano", + "fine sea salt", + "flat leaf parsley", + "octopuses", + "fresh lemon juice" + ] + }, + { + "id": 7645, + "cuisine": "italian", + "ingredients": [ + "water", + "large eggs", + "chopped celery", + "green beans", + "black pepper", + "low sodium tomato juice", + "cooking spray", + "chopped onion", + "dried oregano", + "ground round", + "dried basil", + "grated parmesan cheese", + "beef broth", + "dried parsley", + "seasoned bread crumbs", + "chopped green bell pepper", + "vegetable oil", + "carrots" + ] + }, + { + "id": 32382, + "cuisine": "indian", + "ingredients": [ + "chili flakes", + "seeds", + "garlic", + "black salt", + "fresh pineapple", + "mushrooms", + "cracked black pepper", + "oil", + "chaat masala", + "ground cumin", + "fresh coriander", + "red capsicum", + "salt", + "onions", + "chicken", + "pepper", + "chili powder", + "paneer", + "lemon juice", + "olives" + ] + }, + { + "id": 5406, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "garlic", + "fava beans", + "whole wheat penne pasta", + "grated parmesan cheese", + "baby broccoli", + "olive oil", + "crushed red pepper flakes" + ] + }, + { + "id": 126, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "chopped fresh thyme", + "onions", + "eggs", + "smoked bacon", + "grated Gruyère cheese", + "milk", + "garlic", + "black pepper", + "shiitake", + "white mushrooms" + ] + }, + { + "id": 42482, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "crushed ice", + "bourbon whiskey", + "mint leaves", + "mint", + "Spring! Water" + ] + }, + { + "id": 49110, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "diced tomatoes", + "onions", + "chicken broth", + "garlic powder", + "salt", + "dried basil", + "cilantro", + "chicken", + "tomato sauce", + "red pepper", + "rotisserie chicken" + ] + }, + { + "id": 9118, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "coarse sea salt", + "red bell pepper", + "grits", + "chili", + "chili powder", + "garlic", + "corn grits", + "collard greens", + "vinegar", + "extra-virgin olive oil", + "flat leaf parsley", + "greens", + "fresh ginger", + "vegetable stock", + "cayenne pepper", + "cashew nuts" + ] + }, + { + "id": 33591, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "cream style corn", + "cayenne pepper", + "onions", + "cold water", + "crushed tomatoes", + "salt", + "ground beef", + "pepper", + "garlic", + "corn tortillas", + "American cheese", + "chili powder", + "corn starch", + "ground cumin" + ] + }, + { + "id": 14551, + "cuisine": "mexican", + "ingredients": [ + "sour cream", + "cheddar cheese", + "cream of mushroom soup", + "green chile", + "corn tortillas", + "cream of chicken soup", + "cooked chicken breasts" + ] + }, + { + "id": 7954, + "cuisine": "chinese", + "ingredients": [ + "water", + "green onions", + "cilantro leaves", + "pork sausages", + "red chili peppers", + "vegetable oil spray", + "vegetable oil", + "rice flour", + "soy sauce", + "peeled fresh ginger", + "daikon", + "dried shrimp", + "sesame seeds", + "sesame oil", + "hot chili sauce" + ] + }, + { + "id": 29070, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "salt", + "olive oil", + "fresh oregano", + "honey", + "all-purpose flour", + "water", + "fresh thyme" + ] + }, + { + "id": 5927, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "gingerroot", + "sake", + "boneless skinless chicken breasts", + "leeks", + "soy sauce", + "garlic cloves" + ] + }, + { + "id": 35104, + "cuisine": "jamaican", + "ingredients": [ + "brown sugar", + "lime rind", + "bananas", + "butter", + "sugar", + "coconut", + "dark rum", + "salt", + "toasted pecans", + "lime juice", + "flour", + "vanilla extract", + "eggs", + "skim milk", + "baking soda", + "baking powder", + "cream cheese" + ] + }, + { + "id": 32590, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "white wine vinegar", + "spaghetti", + "cherry tomatoes", + "garden peas", + "freshly ground pepper", + "olive oil", + "red pepper", + "asparagus spears", + "dried basil", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 1142, + "cuisine": "moroccan", + "ingredients": [ + "white onion", + "lemon wedge", + "garlic", + "tumeric", + "fresh ginger", + "cinnamon", + "carrots", + "red lentils", + "fresh cilantro", + "vegetable stock", + "salt", + "tomato sauce", + "ground black pepper", + "extra-virgin olive oil", + "fresh parsley" + ] + }, + { + "id": 31564, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed light brown sugar", + "ground black pepper", + "salt", + "cider vinegar", + "onion powder", + "ground cumin", + "ketchup", + "ground red pepper", + "sauce", + "garlic powder", + "butter" + ] + }, + { + "id": 36303, + "cuisine": "indian", + "ingredients": [ + "cream", + "chili powder", + "salt", + "tomatoes", + "lime juice", + "ginger", + "fresh coriander", + "butter", + "chicken pieces", + "sugar", + "garam masala", + "garlic" + ] + }, + { + "id": 48810, + "cuisine": "southern_us", + "ingredients": [ + "lime juice", + "Sriracha", + "vegetable oil", + "freshly ground pepper", + "unsweetened coconut milk", + "fresh ginger", + "large eggs", + "salt", + "Madras curry powder", + "sugar", + "beef", + "lime wedges", + "all-purpose flour", + "milk", + "brewed coffee", + "garlic", + "onions" + ] + }, + { + "id": 44754, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "baking powder", + "unsalted butter", + "all-purpose flour", + "buttermilk" + ] + }, + { + "id": 45191, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "white vinegar", + "ground black pepper", + "water", + "sesame oil", + "sugar", + "zucchini" + ] + }, + { + "id": 8862, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "flat anchovy", + "Italian parsley leaves", + "pimento stuffed olives", + "large garlic cloves", + "spaghetti" + ] + }, + { + "id": 48777, + "cuisine": "chinese", + "ingredients": [ + "honey", + "sesame oil", + "corn starch", + "jalapeno chilies", + "rice vinegar", + "japanese eggplants", + "soy sauce", + "rice wine", + "scallions", + "fresh ginger", + "garlic", + "canola oil" + ] + }, + { + "id": 26526, + "cuisine": "indian", + "ingredients": [ + "plain flour", + "chili powder", + "ground turmeric", + "coriander seeds", + "salt", + "whitefish fillets", + "vegetable oil", + "fennel seeds", + "garam masala", + "garlic cloves" + ] + }, + { + "id": 47418, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "vegetable oil", + "salt", + "basmati rice", + "water chestnuts", + "cajun seasoning", + "ham hock", + "chicken stock", + "bay leaves", + "garlic", + "onions", + "black-eyed peas", + "napa cabbage", + "cayenne pepper" + ] + }, + { + "id": 47146, + "cuisine": "italian", + "ingredients": [ + "cold water", + "extra-virgin olive oil", + "olive oil", + "garlic cloves", + "black peppercorns", + "salt", + "sage leaves", + "cannellini beans", + "plum tomatoes" + ] + }, + { + "id": 12911, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "soy sauce", + "ginger", + "dark soy sauce", + "meat", + "ground black pepper", + "dark brown sugar" + ] + }, + { + "id": 42242, + "cuisine": "french", + "ingredients": [ + "eggs", + "brie cheese", + "frozen pastry puff sheets", + "crackers", + "slivered almonds", + "apricot jam", + "crumbled blue cheese" + ] + }, + { + "id": 29284, + "cuisine": "spanish", + "ingredients": [ + "water", + "pork tenderloin", + "extra-virgin olive oil", + "smoked paprika", + "dried oregano", + "olive oil", + "dry white wine", + "all-purpose flour", + "serrano ham", + "tomatoes", + "large eggs", + "baking powder", + "garlic cloves", + "fresh parsley", + "sweet onion", + "cooking spray", + "salt", + "red bell pepper", + "saffron" + ] + }, + { + "id": 4916, + "cuisine": "japanese", + "ingredients": [ + "chicken stock", + "cracked black pepper", + "dashi kombu", + "salt", + "pepper", + "ginger", + "japanese rice", + "cooked chicken", + "scallions" + ] + }, + { + "id": 45353, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "sesame oil", + "corn starch", + "black pepper", + "garlic", + "sambal ulek", + "water", + "rice vinegar", + "soy sauce", + "ginger" + ] + }, + { + "id": 24376, + "cuisine": "italian", + "ingredients": [ + "cold water", + "vin santo", + "orange blossom honey", + "sugar", + "vanilla extract", + "pinenuts", + "sauce", + "unflavored gelatin", + "whipping cream" + ] + }, + { + "id": 19076, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "bay leaves", + "hot Italian sausages", + "fresh rosemary", + "grated parmesan cheese", + "button mushrooms", + "onions", + "olive oil", + "dry white wine", + "hot water", + "rosemary sprigs", + "half & half", + "beef broth", + "rigatoni" + ] + }, + { + "id": 402, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "potatoes", + "oil", + "ground turmeric", + "garlic paste", + "garam masala", + "green chilies", + "mustard seeds", + "water", + "salt", + "lemon juice", + "ground cumin", + "spinach", + "coriander powder", + "cumin seed", + "onions" + ] + }, + { + "id": 42208, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "apricots", + "unflavored gelatin", + "whipping cream", + "biscuits", + "water", + "powdered sugar", + "fresh raspberries" + ] + }, + { + "id": 16873, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "jasmine rice", + "extra firm tofu", + "broccoli", + "soy sauce", + "lime", + "garlic", + "red bell pepper", + "coconut oil", + "water", + "vegetable broth", + "yellow onion", + "unsweetened coconut milk", + "sugar pea", + "ground pepper", + "salt", + "curry paste" + ] + }, + { + "id": 13535, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "cilantro leaves", + "ground white pepper", + "green onions", + "oil", + "light soy sauce", + "crabmeat", + "white sugar", + "eggs", + "salt", + "garlic cloves" + ] + }, + { + "id": 46276, + "cuisine": "moroccan", + "ingredients": [ + "tomato purée", + "sweet potatoes", + "raisins", + "salt", + "pepper", + "spices", + "ginger", + "ground lamb", + "tumeric", + "crushed garlic", + "paprika", + "coriander", + "chicken stock", + "olive oil", + "cinnamon", + "purple onion", + "ground cumin" + ] + }, + { + "id": 18169, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "salt", + "smoked bacon", + "white sugar", + "water", + "pinto beans", + "finely chopped onion" + ] + }, + { + "id": 19772, + "cuisine": "indian", + "ingredients": [ + "unsalted butter" + ] + }, + { + "id": 18958, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "barbecue sauce", + "freshly ground pepper", + "whole grain mustard", + "apple cider vinegar", + "pork shoulder", + "honey", + "green onions", + "carrots", + "green cabbage", + "beef", + "rolls" + ] + }, + { + "id": 37051, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "penne pasta", + "fresh basil", + "crushed red pepper", + "garlic cloves", + "tomatoes", + "zucchini", + "chopped onion", + "olive oil", + "salt" + ] + }, + { + "id": 39608, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "worcestershire sauce", + "chili sauce", + "brown sugar", + "catsup", + "dry mustard", + "fresh lemon juice", + "water", + "paprika", + "freshly ground pepper", + "molasses", + "butter", + "salt", + "onions" + ] + }, + { + "id": 38401, + "cuisine": "korean", + "ingredients": [ + "water", + "sea salt", + "napa cabbage", + "garlic", + "radishes", + "ginger", + "sugar", + "red pepper flakes", + "scallions" + ] + }, + { + "id": 49269, + "cuisine": "italian", + "ingredients": [ + "ground fennel", + "ground black pepper", + "long grain brown rice", + "mozzarella cheese", + "salt", + "oregano", + "green bell pepper", + "grated parmesan cheese", + "onions", + "olive oil", + "sweet italian sausage" + ] + }, + { + "id": 16253, + "cuisine": "italian", + "ingredients": [ + "bread", + "shallots", + "cherry tomatoes", + "crushed red pepper", + "fresh marjoram", + "balsamic vinegar", + "olive oil", + "marjoram" + ] + }, + { + "id": 47857, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "chickpeas", + "tomatoes", + "parsley", + "onions", + "cooking oil", + "coconut milk", + "kosher salt", + "garlic", + "basmati rice" + ] + }, + { + "id": 1828, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "kosher salt", + "fresh lemon juice", + "ground black pepper" + ] + }, + { + "id": 33852, + "cuisine": "moroccan", + "ingredients": [ + "prunes", + "honey", + "ground cinnamon", + "kosher wine", + "cooking liquid" + ] + }, + { + "id": 2697, + "cuisine": "filipino", + "ingredients": [ + "water", + "evaporated milk", + "granulated sugar", + "sweet rice", + "bittersweet chocolate" + ] + }, + { + "id": 26547, + "cuisine": "jamaican", + "ingredients": [ + "lime peel", + "condensed milk", + "cold water", + "soursop" + ] + }, + { + "id": 18284, + "cuisine": "chinese", + "ingredients": [ + "chicken wings", + "curry powder", + "garlic", + "oyster sauce", + "red chili peppers", + "spring onions", + "salt", + "beansprouts", + "dressing", + "soy sauce", + "vegetable oil", + "chili sauce", + "onions", + "plain flour", + "water", + "cornflour", + "chinese five-spice powder", + "noodles" + ] + }, + { + "id": 18505, + "cuisine": "mexican", + "ingredients": [ + "black olives", + "corn kernels", + "corn tortillas", + "chili beans", + "salsa", + "baby spinach" + ] + }, + { + "id": 31034, + "cuisine": "italian", + "ingredients": [ + "heavy cream", + "grated parmesan cheese", + "fresh parsley", + "garlic", + "butter" + ] + }, + { + "id": 18013, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "flour", + "cilantro", + "sour cream", + "cumin", + "green chile", + "garlic powder", + "chili powder", + "salsa", + "chipotles in adobo", + "chicken", + "avocado", + "shredded cheddar cheese", + "green onions", + "vegetable broth", + "corn tortillas", + "canola oil", + "black beans", + "jalapeno chilies", + "diced tomatoes", + "shredded cheese", + "adobo sauce", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 47733, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "zucchini", + "butter", + "salt", + "fresh rosemary", + "finely chopped onion", + "mushrooms", + "garlic", + "pepper", + "grated parmesan cheese", + "extra-virgin olive oil", + "eggs", + "veal", + "dry white wine", + "chopped celery" + ] + }, + { + "id": 28505, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "red pepper", + "flour tortillas", + "sour cream", + "salsa verde", + "shredded lettuce", + "cooked chicken" + ] + }, + { + "id": 28840, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "plums", + "grated orange peel", + "unsalted butter", + "fresh lemon juice", + "ground nutmeg", + "crème fraîche", + "sugar", + "frozen pastry puff sheets", + "grated lemon peel" + ] + }, + { + "id": 48763, + "cuisine": "mexican", + "ingredients": [ + "dried black beans", + "olive oil", + "chili powder", + "roasted tomatoes", + "kosher salt", + "sweet potatoes", + "garlic cloves", + "dried oregano", + "chipotle chile", + "quinoa", + "ground coriander", + "onions", + "fresh cilantro", + "green onions", + "sour cream" + ] + }, + { + "id": 12775, + "cuisine": "chinese", + "ingredients": [ + "baking soda", + "onion powder", + "sauce", + "ground white pepper", + "soy sauce", + "flour", + "red preserved bean curd", + "chinese five-spice powder", + "sugar", + "pork ribs", + "sesame oil", + "peanut oil", + "garlic powder", + "Shaoxing wine", + "maple syrup", + "corn starch" + ] + }, + { + "id": 29018, + "cuisine": "moroccan", + "ingredients": [ + "chili flakes", + "lamb stew meat", + "couscous", + "tumeric", + "paprika", + "spinach", + "diced tomatoes", + "onions", + "ground cinnamon", + "garbanzo beans", + "garlic" + ] + }, + { + "id": 13304, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "green pepper", + "olive oil", + "anise", + "ground turkey", + "seasoning", + "low fat mozzarella", + "flavoring", + "finely chopped onion", + "garlic", + "ground beef" + ] + }, + { + "id": 34655, + "cuisine": "french", + "ingredients": [ + "parmesan cheese", + "extra-virgin olive oil", + "thyme sprigs", + "large egg yolks", + "sea salt", + "garlic cloves", + "plum tomatoes", + "water", + "unsalted butter", + "fine sea salt", + "fresh basil leaves", + "olive oil", + "egg yolks", + "all-purpose flour", + "greens" + ] + }, + { + "id": 49050, + "cuisine": "french", + "ingredients": [ + "firmly packed light brown sugar", + "egg whites", + "eggs", + "raspberries", + "reduced fat cream cheese", + "vanilla extract", + "light brown sugar", + "skim milk", + "corn starch" + ] + }, + { + "id": 43429, + "cuisine": "french", + "ingredients": [ + "grapes", + "whipping cream", + "ground allspice", + "grated orange peel", + "large egg yolks", + "strawberries", + "cognac", + "orange", + "vanilla extract", + "orange juice", + "sugar", + "light corn syrup", + "blueberries" + ] + }, + { + "id": 26163, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "ciabatta", + "coarse salt", + "red bell pepper", + "prosciutto", + "freshly ground pepper", + "extra-virgin olive oil", + "arugula" + ] + }, + { + "id": 27059, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "dry white wine", + "all-purpose flour", + "water", + "lemon", + "flat leaf parsley", + "unsalted butter", + "salt", + "black pepper", + "veal cutlets", + "fresh lemon juice" + ] + }, + { + "id": 41595, + "cuisine": "indian", + "ingredients": [ + "white vinegar", + "water", + "carrots", + "chiles", + "sea salt", + "green cardamom pods", + "fresh ginger", + "sugar", + "garlic cloves" + ] + }, + { + "id": 17380, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "cooked chicken", + "corn starch", + "sugar", + "butter", + "onions", + "soy sauce", + "chow mein noodles", + "vegetables", + "diced celery" + ] + }, + { + "id": 4810, + "cuisine": "chinese", + "ingredients": [ + "spareribs", + "vegetable oil", + "corn starch", + "light soy sauce", + "sauce", + "rape", + "essence", + "ground ginger", + "Shaoxing wine", + "garlic cloves" + ] + }, + { + "id": 12040, + "cuisine": "filipino", + "ingredients": [ + "ground ginger", + "ground black pepper", + "cumin seed", + "soy sauce", + "salt", + "pork butt roast", + "brown sugar", + "vegetable oil", + "onions", + "lime", + "ground coriander" + ] + }, + { + "id": 45029, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "heavy cream", + "carrots", + "olive oil", + "purple onion", + "ground beef", + "tomatoes", + "ground pork", + "celery", + "coarse salt", + "freshly ground pepper", + "rigatoni" + ] + }, + { + "id": 30537, + "cuisine": "italian", + "ingredients": [ + "pepper", + "fresh mozzarella", + "Italian bread", + "tomatoes", + "basil leaves", + "purple onion", + "olive oil", + "garlic", + "green olives", + "balsamic vinegar", + "salt" + ] + }, + { + "id": 39462, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "cake mix", + "vanilla", + "light corn syrup", + "chopped pecans", + "melted butter", + "dark brown sugar" + ] + }, + { + "id": 30822, + "cuisine": "british", + "ingredients": [ + "water", + "basil leaves", + "all-purpose flour", + "beef tenderloin steaks", + "pie pastry", + "dry red wine", + "sauce", + "eggs", + "grated parmesan cheese", + "salt", + "fresh mushrooms", + "olive oil", + "butter", + "beef broth" + ] + }, + { + "id": 6725, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "kosher salt", + "file powder", + "worcestershire sauce", + "creole seasoning", + "canola oil", + "shucked oysters", + "hot pepper sauce", + "bay leaves", + "all-purpose flour", + "pheasant", + "andouille sausage", + "ground black pepper", + "cooking spray", + "chopped celery", + "garlic cloves", + "sliced green onions", + "fat free less sodium chicken broth", + "chopped green bell pepper", + "butter", + "yellow onion", + "herbes de provence" + ] + }, + { + "id": 32045, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "olive oil", + "basil dried leaves", + "onions", + "water", + "bacon", + "penne pasta", + "pepper", + "red pepper flakes", + "salt", + "chicken bouillon", + "cannellini beans", + "garlic", + "dried oregano" + ] + }, + { + "id": 44628, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh flounder fillets", + "garlic", + "onions", + "butter", + "green pepper", + "dried thyme", + "cayenne pepper", + "tomatoes", + "dry red wine", + "lemon juice" + ] + }, + { + "id": 14562, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "fat free less sodium chicken broth", + "crushed red pepper", + "fresh parmesan cheese", + "arugula", + "tomatoes", + "cheese tortellini" + ] + }, + { + "id": 305, + "cuisine": "italian", + "ingredients": [ + "finely chopped fresh parsley", + "salt", + "prosciutto", + "cooking spray", + "cavatappi", + "parmigiano reggiano cheese", + "garlic cloves", + "ground black pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 18534, + "cuisine": "indian", + "ingredients": [ + "pepper", + "green chilies", + "masala", + "tumeric", + "potatoes", + "ghee", + "fresh coriander", + "cumin seed", + "fresh curry leaves", + "salt", + "onions" + ] + }, + { + "id": 1496, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "oyster sauce", + "minced garlic", + "ground pork", + "dumpling skins", + "green onions", + "salt", + "medium shrimp", + "water chestnuts, drained and chopped", + "watercress", + "ground white pepper" + ] + }, + { + "id": 35975, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "salt", + "skirt steak", + "lime", + "garlic cloves", + "pepper", + "orange juice", + "cilantro", + "corn tortillas" + ] + }, + { + "id": 1075, + "cuisine": "indian", + "ingredients": [ + "water", + "grated nutmeg", + "ground turmeric", + "new potatoes", + "cumin seed", + "ground cumin", + "jalapeno chilies", + "ground coriander", + "canola oil", + "spinach", + "salt", + "black mustard seeds" + ] + }, + { + "id": 43581, + "cuisine": "irish", + "ingredients": [ + "dri leav rosemari", + "russet potatoes", + "cilantro leaves", + "pico de gallo", + "ground black pepper", + "diced tomatoes", + "thick-cut bacon", + "dri thyme leaves, crush", + "sea salt", + "greek yogurt", + "olive oil", + "green onions", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 12537, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "green cardamom pods", + "whole milk", + "large egg yolks", + "sugar", + "whipping cream" + ] + }, + { + "id": 44151, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "vegetable oil", + "white sugar", + "eggs", + "water", + "corn starch", + "white vinegar", + "food colouring", + "salt", + "boneless skinless chicken breast halves", + "pineapple chunks", + "self rising flour", + "ground white pepper" + ] + }, + { + "id": 26905, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "coffee granules", + "vanilla extract", + "sugar", + "whipped cream", + "milk", + "heavy cream", + "eggs", + "cinnamon", + "hot water" + ] + }, + { + "id": 18640, + "cuisine": "thai", + "ingredients": [ + "green onions", + "cream cheese", + "fresh lime juice", + "reduced fat firm tofu", + "cilantro sprigs", + "garlic cloves", + "chopped cilantro fresh", + "light mayonnaise", + "dark sesame oil", + "medium shrimp", + "peeled fresh ginger", + "peeled shrimp", + "Thai fish sauce" + ] + }, + { + "id": 13961, + "cuisine": "southern_us", + "ingredients": [ + "cold water", + "granulated sugar", + "all-purpose flour", + "firmly packed light brown sugar", + "butter", + "peaches", + "salt", + "ground cinnamon", + "large eggs" + ] + }, + { + "id": 12455, + "cuisine": "mexican", + "ingredients": [ + "bell pepper", + "garlic", + "ground cumin", + "lime", + "flank steak", + "yellow onion", + "jalapeno chilies", + "salt", + "olive oil", + "vegetable oil", + "chopped cilantro fresh" + ] + }, + { + "id": 48447, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "enchilada sauce", + "refried beans", + "corn tortillas" + ] + }, + { + "id": 13412, + "cuisine": "french", + "ingredients": [ + "capers", + "hot pepper sauce", + "purple onion", + "fresh lemon juice", + "honey", + "extra-virgin olive oil", + "grated lemon zest", + "ground black pepper", + "white wine vinegar", + "garlic cloves", + "fresh dill", + "dijon mustard", + "salt", + "boiling water" + ] + }, + { + "id": 35324, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "avocado", + "lime", + "corn", + "salt", + "mayonaise", + "grated parmesan cheese" + ] + }, + { + "id": 4920, + "cuisine": "jamaican", + "ingredients": [ + "dried thyme", + "salt", + "sugar", + "ground black pepper", + "ground allspice", + "ground nutmeg", + "cayenne pepper", + "ground cloves", + "onion powder" + ] + }, + { + "id": 15021, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "lime", + "rice noodles", + "chopped cilantro", + "water", + "dried arbol chile", + "cumin seed", + "serrano chile", + "tumeric", + "fresh ginger", + "salt", + "clarified butter", + "pigeon peas", + "coriander seeds", + "hot water" + ] + }, + { + "id": 47494, + "cuisine": "mexican", + "ingredients": [ + "boneless beef round steak", + "beef broth", + "shredded pepper jack cheese", + "onions", + "frozen whole kernel corn", + "celery", + "black beans", + "salsa", + "chopped cilantro fresh" + ] + }, + { + "id": 28686, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "fresh cilantro", + "salt", + "peeled shrimp", + "pickling liquid", + "fresh lime juice" + ] + }, + { + "id": 42644, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "salt", + "nori", + "sesame oil", + "fresh tofu", + "spring onions", + "broccoli", + "water", + "wonton wrappers", + "wood ear mushrooms" + ] + }, + { + "id": 31554, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "bay leaves", + "creole seasoning", + "onions", + "andouille sausage", + "diced tomatoes", + "shrimp", + "green bell pepper", + "green onions", + "garlic cloves", + "sliced green onions", + "celery ribs", + "dried thyme", + "all-purpose flour", + "flat leaf parsley" + ] + }, + { + "id": 16704, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "shrimp", + "freshly ground pepper", + "extra-virgin olive oil", + "fresh lime juice", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 39181, + "cuisine": "mexican", + "ingredients": [ + "pasta", + "shredded cheese", + "cream cheese", + "water", + "ground beef", + "taco seasoning" + ] + }, + { + "id": 10054, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "green bell pepper", + "olive oil", + "spanish chorizo", + "onions", + "arborio rice", + "kosher salt", + "parsley", + "shrimp", + "tomatoes", + "minced garlic", + "littleneck clams", + "red bell pepper", + "mussels", + "reduced sodium chicken broth", + "dry white wine", + "spanish paprika" + ] + }, + { + "id": 16858, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "kosher salt", + "chicken wings", + "ground black pepper", + "sugar", + "vegetable oil" + ] + }, + { + "id": 33194, + "cuisine": "russian", + "ingredients": [ + "vodka", + "all-purpose flour", + "butter", + "hazelnuts", + "confectioners sugar", + "salt" + ] + }, + { + "id": 7669, + "cuisine": "french", + "ingredients": [ + "fresh thyme", + "fine sea salt", + "celery ribs", + "bay leaves", + "carrots", + "leeks", + "garlic cloves", + "cold water", + "red wine vinegar", + "white peppercorns" + ] + }, + { + "id": 12835, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cuban peppers", + "tortillas", + "lime wedges", + "cilantro leaves", + "chipotles in adobo", + "eggs", + "honey", + "zucchini", + "garlic", + "celery", + "monterey jack", + "chicken chorizo sausages", + "hominy", + "crema mexican", + "salt", + "bay leaf", + "ground cumin", + "chicken stock", + "pepper", + "radishes", + "diced tomatoes", + "thyme leaves", + "onions" + ] + }, + { + "id": 40199, + "cuisine": "filipino", + "ingredients": [ + "powdered milk", + "all-purpose flour", + "butter", + "white sugar", + "baking powder", + "corn starch", + "eggs", + "salt" + ] + }, + { + "id": 31686, + "cuisine": "italian", + "ingredients": [ + "mini pepperoni slices", + "Pillsbury™ Refrigerated Crescent Dinner Rolls", + "mild Italian sausage", + "shredded mozzarella cheese", + "pizza sauce" + ] + }, + { + "id": 2010, + "cuisine": "italian", + "ingredients": [ + "fresh sage", + "shallots", + "garlic cloves", + "kosher salt", + "butter", + "fresh parsley", + "baby portobello mushrooms", + "potato gnocchi", + "flat leaf parsley", + "parmesan cheese", + "freshly ground pepper" + ] + }, + { + "id": 8761, + "cuisine": "mexican", + "ingredients": [ + "honey", + "vegetable oil", + "salt", + "chile sauce", + "molasses", + "garlic powder", + "diced tomatoes", + "ground cayenne pepper", + "ground cumin", + "water", + "chili powder", + "dried pinto beans", + "boiling water", + "tomato purée", + "kidney beans", + "textured soy protein", + "chopped onion", + "dried oregano" + ] + }, + { + "id": 10367, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "coarse salt", + "fresh lemon juice", + "dry white wine", + "all-purpose flour", + "unsalted butter", + "salt", + "flat leaf parsley", + "chicken cutlets", + "freshly ground pepper" + ] + }, + { + "id": 9888, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "vegetable oil", + "freshly ground pepper", + "buttermilk", + "cornmeal", + "whole okra", + "all-purpose flour" + ] + }, + { + "id": 45373, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "ground cumin", + "boneless chuck roast", + "salt", + "pepper", + "garlic", + "diced green chilies", + "dried oregano" + ] + }, + { + "id": 30228, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "soy milk", + "baking powder", + "baking soda", + "vegan butter", + "vinegar", + "salt" + ] + }, + { + "id": 31937, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "cooking spray", + "minced garlic", + "salt", + "french baguette", + "cracked black pepper", + "tomatoes", + "crumbled blue cheese", + "light cream cheese" + ] + }, + { + "id": 3231, + "cuisine": "french", + "ingredients": [ + "water", + "sliced carrots", + "jerusalem artichokes", + "diced onions", + "leeks", + "garlic cloves", + "potatoes", + "salt", + "celery root", + "granny smith apples", + "bay leaves", + "thyme sprigs" + ] + }, + { + "id": 16735, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "garlic", + "oven-ready lasagna noodles", + "ground nutmeg", + "baby spinach", + "all-purpose flour", + "cream cheese with chives", + "milk", + "boneless skinless chicken breasts", + "salt", + "nonstick spray", + "ground black pepper", + "butter", + "shredded mozzarella cheese", + "frozen artichoke hearts" + ] + }, + { + "id": 38434, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "unsalted butter", + "salt", + "butter beans", + "arborio rice", + "ground black pepper", + "buttermilk", + "low salt chicken broth", + "olive oil", + "grated parmesan cheese", + "chopped onion", + "swiss chard", + "dry white wine", + "okra" + ] + }, + { + "id": 30406, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "fine salt", + "all-purpose flour", + "light brown sugar", + "unsalted butter", + "heavy cream", + "blackberries", + "peaches", + "baking powder", + "sour cream", + "vanilla beans", + "granulated sugar", + "sanding sugar" + ] + }, + { + "id": 47456, + "cuisine": "italian", + "ingredients": [ + "red pepper", + "garlic cloves", + "extra-virgin olive oil", + "basil", + "plum tomatoes", + "unflavored gelatin", + "salt" + ] + }, + { + "id": 48330, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "tomatoes", + "flour tortillas", + "sour cream", + "picante sauce", + "cayenne pepper", + "colby cheese", + "potatoes", + "chopped cilantro fresh" + ] + }, + { + "id": 36148, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "vanilla beans", + "whipping cream", + "tropical fruits", + "sugar", + "peeled fresh ginger" + ] + }, + { + "id": 31073, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "avocado", + "queso fresco", + "lime", + "eggs", + "cilantro" + ] + }, + { + "id": 44343, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "evaporated milk", + "raisins", + "long grain white rice", + "water", + "whole milk", + "cinnamon sticks", + "sugar", + "lemon peel", + "salt", + "sweetened condensed milk", + "vanilla beans", + "lemon", + "canela" + ] + }, + { + "id": 28525, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "vegetable oil", + "beansprouts", + "egg yolks", + "Gochujang base", + "water", + "cilantro", + "kimchi", + "tofu", + "fresh shiitake mushrooms", + "scallions" + ] + }, + { + "id": 47213, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "unsalted butter", + "fresh lemon juice", + "bread crumbs", + "chicken breasts", + "black pepper", + "dijon mustard", + "curry powder", + "salt" + ] + }, + { + "id": 32195, + "cuisine": "southern_us", + "ingredients": [ + "fresh corn", + "rice vinegar", + "plum tomatoes", + "purple onion", + "okra pods", + "olive oil", + "freshly ground pepper", + "chopped garlic", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 3724, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "double cream", + "muscovado sugar", + "fresh raspberries", + "base", + "free range egg", + "dark chocolate", + "butter", + "golden syrup" + ] + }, + { + "id": 32024, + "cuisine": "spanish", + "ingredients": [ + "sweet onion", + "tomatoes", + "garlic cloves", + "pepper", + "cucumber", + "salt" + ] + }, + { + "id": 17738, + "cuisine": "mexican", + "ingredients": [ + "Velveeta Cheese Spread", + "tortilla chips", + "salsa", + "ground beef" + ] + }, + { + "id": 34373, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "freshly ground pepper", + "large garlic cloves", + "flat leaf parsley", + "anchovy fillets", + "spaghetti", + "grated parmesan cheese", + "fresh lemon juice" + ] + }, + { + "id": 38103, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "onions", + "dried thyme", + "boneless skinless chicken breasts", + "lemon juice", + "ground cumin", + "white vinegar", + "ground black pepper", + "fresh mushrooms", + "dried oregano", + "cherry tomatoes", + "garlic", + "red bell pepper" + ] + }, + { + "id": 10354, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "crushed tomatoes", + "spanish chorizo", + "angel hair", + "parsley", + "medium shrimp", + "tomato paste", + "olive oil", + "garlic cloves", + "reduced sodium chicken broth", + "salt", + "onions" + ] + }, + { + "id": 21911, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "garlic", + "low sodium soy sauce", + "flank steak", + "corn starch", + "green onions", + "dark brown sugar", + "water", + "vegetable oil" + ] + }, + { + "id": 2372, + "cuisine": "spanish", + "ingredients": [ + "water", + "all-purpose flour", + "baking potatoes", + "garlic cloves", + "olive oil", + "chopped onion", + "black pepper", + "salt", + "fresh parsley" + ] + }, + { + "id": 11452, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "lemon", + "carrots", + "cooked chicken breasts", + "baby spinach leaves", + "grated parmesan cheese", + "fatfree lowsodium chicken broth", + "bay leaf", + "dried thyme", + "orzo pasta", + "fresh lemon juice", + "onions", + "salt and ground black pepper", + "garlic", + "celery", + "dried oregano" + ] + }, + { + "id": 43338, + "cuisine": "vietnamese", + "ingredients": [ + "pineapple chunks", + "lime juice", + "roma tomatoes", + "beansprouts", + "anise basil", + "tamarind pulp", + "fat skimmed chicken broth", + "asian fish sauce", + "sugar", + "chili paste", + "shallots", + "salad oil", + "serrano chilies", + "minced garlic", + "rice paddy herb", + "shrimp" + ] + }, + { + "id": 40551, + "cuisine": "cajun_creole", + "ingredients": [ + "egg yolks", + "Praline Liqueur", + "sugar", + "whipping cream" + ] + }, + { + "id": 19590, + "cuisine": "japanese", + "ingredients": [ + "green chard", + "firm tofu", + "white miso", + "water", + "nori", + "green onions" + ] + }, + { + "id": 11647, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "bell pepper", + "worcestershire sauce", + "hot sauce", + "celery", + "pepper", + "green onions", + "garlic", + "rice", + "andouille sausage", + "bay leaves", + "diced tomatoes", + "creole seasoning", + "onions", + "tomato paste", + "cayenne", + "butter", + "salt", + "shrimp" + ] + }, + { + "id": 26433, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "sugar", + "Amaretti Cookies", + "marsala wine", + "strawberries", + "whipping cream" + ] + }, + { + "id": 35769, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "flour", + "1% low-fat milk", + "extra lean ground beef", + "parmesan cheese", + "basil", + "salt", + "orange juice concentrate", + "crushed tomatoes", + "cinnamon", + "garlic", + "black pepper", + "lasagna noodles", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 46032, + "cuisine": "filipino", + "ingredients": [ + "olive oil", + "worcestershire sauce", + "onions", + "seasoning", + "flour", + "garlic", + "ground black pepper", + "beef tenderloin", + "minced garlic", + "butter", + "sliced mushrooms" + ] + }, + { + "id": 40875, + "cuisine": "mexican", + "ingredients": [ + "chili", + "tomatoes", + "purple onion", + "cotija", + "corn tortillas", + "asadero" + ] + }, + { + "id": 41008, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "hoisin sauce", + "five-spice powder", + "honey", + "dark sesame oil", + "lower sodium chicken broth", + "lower sodium soy sauce", + "pork shoulder boston butt", + "minced garlic", + "peeled fresh ginger" + ] + }, + { + "id": 19233, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "zucchini", + "fresh parsley", + "olive oil", + "penne pasta", + "crushed tomatoes", + "chopped fresh thyme", + "onions", + "fresh rosemary", + "eggplant", + "garlic cloves" + ] + }, + { + "id": 38074, + "cuisine": "french", + "ingredients": [ + "dried plum", + "chicken breast halves", + "salt", + "fresh parsley", + "ground black pepper", + "chicken drumsticks", + "yellow onion", + "dried rosemary", + "bay leaves", + "bacon slices", + "carrots", + "dried thyme", + "red wine", + "all-purpose flour", + "chicken thighs" + ] + }, + { + "id": 14522, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "vanilla extract", + "baking powder", + "white sugar", + "milk", + "all-purpose flour", + "eggs", + "butter", + "key lime juice" + ] + }, + { + "id": 30876, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "heavy whipping cream", + "sugar", + "vanilla extract", + "tangerine", + "salt", + "large eggs", + "tangerine juice" + ] + }, + { + "id": 22182, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "radishes", + "rice vinegar", + "shiitake mushroom caps", + "sandwiches", + "kosher salt", + "jalapeno chilies", + "konbu", + "vegan mayonnaise", + "sake", + "water", + "cilantro leaves", + "garlic chili sauce", + "soy sauce", + "mirin", + "scallions", + "mung bean sprouts" + ] + }, + { + "id": 38627, + "cuisine": "italian", + "ingredients": [ + "parsley flakes", + "hot water", + "grated parmesan cheese", + "italian seasoning", + "shredded cheddar cheese", + "Bisquick Baking Mix", + "butter", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 33726, + "cuisine": "british", + "ingredients": [ + "India Pale Ale", + "warm water", + "russet potatoes", + "cod", + "vegetable oil", + "kosher salt", + "all-purpose flour" + ] + }, + { + "id": 6663, + "cuisine": "mexican", + "ingredients": [ + "cantaloupe", + "green chile", + "fresh lime juice", + "fresh basil", + "salt", + "sweet onion" + ] + }, + { + "id": 34291, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "sun-dried tomatoes", + "roast red peppers, drain", + "goat cheese", + "pita bread rounds", + "fresh basil leaves" + ] + }, + { + "id": 28057, + "cuisine": "thai", + "ingredients": [ + "tapioca starch", + "toasted sesame seeds", + "salt", + "mango", + "white rice", + "white sugar", + "water", + "coconut milk" + ] + }, + { + "id": 49093, + "cuisine": "french", + "ingredients": [ + "white bread", + "flour", + "red wine", + "oil", + "onions", + "veal stock", + "pepper", + "butter", + "salt", + "bay leaf", + "eggs", + "mushrooms", + "bacon", + "garlic cloves", + "celery ribs", + "black peppercorns", + "parsley", + "bouquet garni", + "carrots" + ] + }, + { + "id": 43925, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "ground pork", + "onions", + "vegetable oil", + "oyster sauce", + "eggplant", + "salt", + "pepper", + "garlic" + ] + }, + { + "id": 36793, + "cuisine": "thai", + "ingredients": [ + "water", + "green onions", + "cilantro leaves", + "eggs", + "palm sugar", + "ground pork", + "shrimp", + "fish sauce", + "pickled radish", + "garlic", + "canola oil", + "lime juice", + "rice noodles", + "tamarind concentrate" + ] + }, + { + "id": 3186, + "cuisine": "vietnamese", + "ingredients": [ + "wakame", + "red chili peppers", + "miso", + "english cucumber", + "fresh lime juice", + "mushroom soy sauce", + "fish sauce", + "water", + "rice vermicelli", + "garlic cloves", + "fresh basil leaves", + "five spice", + "kosher salt", + "daikon", + "oil", + "onions", + "chicken", + "sugar", + "lemongrass", + "garlic", + "red bell pepper", + "peppercorns" + ] + }, + { + "id": 40235, + "cuisine": "mexican", + "ingredients": [ + "tomato salsa", + "cream cheese, soften", + "goat cheese", + "pinenuts", + "chopped cilantro fresh" + ] + }, + { + "id": 1941, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "crushed red pepper", + "fresh rosemary", + "yukon gold potatoes", + "garlic cloves", + "refrigerated pizza dough", + "chopped fresh sage", + "mozzarella cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 21385, + "cuisine": "indian", + "ingredients": [ + "silver", + "raisins", + "saffron threads", + "milk", + "basmati rice", + "green cardamom pods", + "light cream", + "sliced almonds", + "jaggery" + ] + }, + { + "id": 46365, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "peeled fresh ginger", + "dark sesame oil", + "corn starch", + "shiitake mushroom caps", + "water", + "black", + "chinese five-spice powder", + "baby corn", + "jasmine rice", + "green onions", + "peanut oil", + "red bell pepper", + "sesame seeds", + "rounds", + "garlic cloves", + "green soybeans" + ] + }, + { + "id": 3224, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "olive oil", + "bay leaves", + "garlic", + "chicken pieces", + "white vinegar", + "chili", + "ground sage", + "ground thyme", + "orange juice", + "molasses", + "ground nutmeg", + "green onions", + "cilantro leaves", + "peppercorns", + "lime juice", + "ground black pepper", + "cinnamon", + "ground allspice" + ] + }, + { + "id": 6001, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "rubbed sage", + "eggs", + "buttermilk", + "finely chopped onion", + "chopped celery", + "butter", + "self-rising cornmeal" + ] + }, + { + "id": 10423, + "cuisine": "chinese", + "ingredients": [ + "vinegar", + "cold water", + "tomato ketchup", + "cornflour", + "sugar" + ] + }, + { + "id": 45436, + "cuisine": "british", + "ingredients": [ + "black pepper", + "vegetable oil", + "all-purpose flour", + "fresh rosemary", + "milk", + "beef stock cubes", + "banger", + "melted butter", + "kosher salt", + "balsamic vinegar", + "yellow onion", + "eggs", + "fresh thyme", + "garlic" + ] + }, + { + "id": 10746, + "cuisine": "southern_us", + "ingredients": [ + "all-purpose flour", + "baking powder", + "white sugar", + "skim milk", + "margarine", + "peach slices" + ] + }, + { + "id": 44171, + "cuisine": "british", + "ingredients": [ + "yellow corn meal", + "cayenne", + "all-purpose flour", + "sugar", + "large eggs", + "cheddar cheese", + "unsalted butter", + "double-acting baking powder", + "milk", + "salt" + ] + }, + { + "id": 17295, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "baking powder", + "all-purpose flour", + "granulated sugar", + "buttermilk", + "baking soda", + "butter", + "large eggs", + "vanilla extract" + ] + }, + { + "id": 48813, + "cuisine": "italian", + "ingredients": [ + "milk", + "butter", + "pancetta", + "dry white wine", + "cheese", + "flour", + "peas", + "thin spaghetti", + "cooked chicken", + "sliced mushrooms" + ] + }, + { + "id": 29135, + "cuisine": "indian", + "ingredients": [ + "chili flakes", + "mint leaves", + "green chilies", + "black pepper", + "salt", + "oil", + "asafoetida", + "teas", + "curds", + "potatoes", + "cilantro leaves", + "mustard seeds" + ] + }, + { + "id": 12373, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "vegetable oil", + "thai basil", + "roasted chili paste", + "garlic", + "clams", + "jalapeno chilies" + ] + }, + { + "id": 37254, + "cuisine": "french", + "ingredients": [ + "bay leaves", + "lentilles du puy", + "clove", + "hazelnut oil", + "ground black pepper", + "carrots", + "sea salt", + "onions" + ] + }, + { + "id": 1834, + "cuisine": "british", + "ingredients": [ + "sugar", + "salt", + "lard", + "milk", + "all-purpose flour", + "water", + "jam", + "active dry yeast", + "clotted cream" + ] + }, + { + "id": 46513, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "vermouth", + "flat leaf parsley", + "cherry tomatoes", + "kalamata", + "dried oregano", + "mozzarella cheese", + "cheese tortellini", + "onions", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 48361, + "cuisine": "southern_us", + "ingredients": [ + "lime zest", + "large eggs", + "salt", + "onions", + "green bell pepper", + "heavy cream", + "sour cream", + "cooked rice", + "vegetable oil", + "okra", + "chopped cilantro fresh", + "black pepper", + "cake flour", + "fresh lime juice" + ] + }, + { + "id": 45761, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "small curd cottage cheese", + "American cheese", + "grated parmesan cheese", + "cheddar cheese", + "lasagna noodles", + "mozzarella cheese" + ] + }, + { + "id": 25238, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "salsa", + "green onions", + "long grain white rice", + "black beans", + "shredded cheese", + "chili powder", + "chicken" + ] + }, + { + "id": 13427, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "rice", + "dried thyme", + "coconut milk", + "water", + "oil", + "red kidney beans", + "garlic", + "onions" + ] + }, + { + "id": 42596, + "cuisine": "chinese", + "ingredients": [ + "lo mein noodles", + "sesame oil", + "sliced mushrooms", + "snow peas", + "soy sauce", + "Sriracha", + "scallions", + "bok choy", + "granulated sugar", + "garlic", + "beansprouts", + "canola oil", + "fresh ginger", + "dry white wine", + "carrots", + "chopped cilantro fresh" + ] + }, + { + "id": 5060, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "vegetable oil", + "eggs", + "mushrooms", + "beansprouts", + "water chestnuts", + "green pepper", + "soy sauce", + "green onions", + "celery" + ] + }, + { + "id": 36393, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "yellow corn meal", + "all-purpose flour", + "sugar", + "salt" + ] + }, + { + "id": 13145, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "olive oil", + "brown mustard seeds", + "salt", + "canola oil", + "mozzarella cheese", + "cherries", + "butter", + "ear of corn", + "black pepper", + "sun-dried tomatoes", + "Tabasco Pepper Sauce", + "all-purpose flour", + "sliced green onions", + "curry leaves", + "pepper", + "shallots", + "heavy cream", + "garlic cloves" + ] + }, + { + "id": 37777, + "cuisine": "italian", + "ingredients": [ + "sugar", + "baking powder", + "strawberries", + "flour", + "whipped cream", + "unsalted butter", + "cinnamon", + "eggs", + "whole milk", + "salt" + ] + }, + { + "id": 40947, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "boneless skinless chicken breasts", + "dipping sauces", + "carrots", + "greens", + "lime juice", + "tapioca", + "persian cucumber", + "lime leaves", + "water", + "ginger", + "cilantro leaves", + "red bell pepper", + "garlic paste", + "green onions", + "light coconut milk", + "creamy peanut butter", + "toasted sesame seeds" + ] + }, + { + "id": 42166, + "cuisine": "irish", + "ingredients": [ + "orange", + "butter", + "onions", + "sultana", + "red cabbage", + "salt", + "mixed spice", + "muscovado sugar", + "cooking apples", + "ground black pepper", + "white wine vinegar" + ] + }, + { + "id": 33003, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "cheddar cheese", + "taco seasoning mix", + "jalapeno chilies", + "salt", + "onions", + "canola oil", + "white vinegar", + "brown sugar", + "lime", + "roma tomatoes", + "cilantro", + "red bell pepper", + "mango", + "mango salsa", + "fresh cilantro", + "agave nectar", + "diced tomatoes", + "garlic cloves", + "cumin", + "chicken broth", + "white onion", + "olive oil", + "boneless skinless chicken breasts", + "cayenne pepper", + "long grain white rice" + ] + }, + { + "id": 2283, + "cuisine": "mexican", + "ingredients": [ + "guacamole", + "chorizo", + "oil", + "refried black beans", + "yellow onion", + "pepper jack", + "corn tortillas" + ] + }, + { + "id": 46957, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "chocolate spread", + "butter", + "toasted almonds", + "roasted hazelnuts", + "cooking spray", + "toasted walnuts", + "phyllo dough", + "honey", + "salt", + "water", + "roasted pistachios", + "cinnamon sticks" + ] + }, + { + "id": 23767, + "cuisine": "italian", + "ingredients": [ + "garlic", + "unsalted butter", + "french bread", + "flat leaf parsley" + ] + }, + { + "id": 17747, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "olive oil", + "toast", + "cooked ham", + "paprika", + "hollandaise sauce", + "large eggs", + "parsley sprigs", + "sauce" + ] + }, + { + "id": 35140, + "cuisine": "irish", + "ingredients": [ + "sugar", + "vanilla extract", + "Baileys Irish Cream Liqueur", + "marshmallow creme", + "evaporated milk", + "margarine", + "morsels", + "instant coffee" + ] + }, + { + "id": 2765, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "low sodium chicken broth", + "yellow onion", + "frozen peas", + "ground black pepper", + "garlic", + "fresh lime juice", + "olive oil", + "chili powder", + "long-grain rice", + "cumin", + "jalapeno chilies", + "salt", + "chopped cilantro" + ] + }, + { + "id": 4829, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "cracked black pepper", + "white wine vinegar", + "olive oil", + "garlic", + "cherry tomatoes", + "cheese", + "artichoke hearts", + "black olives" + ] + }, + { + "id": 35280, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "salt", + "baking powder", + "lard", + "sugar", + "all-purpose flour", + "buttermilk", + "bread flour" + ] + }, + { + "id": 43375, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "baguette", + "tomatoes", + "chopped fresh herbs", + "savory" + ] + }, + { + "id": 5609, + "cuisine": "vietnamese", + "ingredients": [ + "sambal ulek", + "fresh ginger", + "lettuce leaves", + "garlic cloves", + "chopped cilantro", + "tomato paste", + "soy sauce", + "jalapeno chilies", + "rice wine", + "hot water", + "sugar", + "ground black pepper", + "ground sirloin", + "corn starch", + "asian fish sauce", + "grape leaves", + "unsalted roasted peanuts", + "mint leaves", + "vegetable oil", + "fresh lime juice" + ] + }, + { + "id": 47123, + "cuisine": "japanese", + "ingredients": [ + "large eggs", + "water", + "salt", + "vegetable oil", + "superfine sugar" + ] + }, + { + "id": 41137, + "cuisine": "korean", + "ingredients": [ + "water", + "cracked black pepper", + "dark brown sugar", + "chili paste", + "garlic", + "reduced-sodium tamari sauce", + "ginger", + "corn starch", + "sesame oil", + "rice vinegar" + ] + }, + { + "id": 31761, + "cuisine": "french", + "ingredients": [ + "granulated sugar", + "confectioners sugar", + "milk", + "vanilla extract", + "bittersweet chocolate", + "large egg whites", + "salt", + "large egg yolks", + "all-purpose flour" + ] + }, + { + "id": 11891, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "onion powder", + "freshly ground pepper", + "chopped cilantro fresh", + "olive oil", + "salsa", + "garlic cloves", + "ground cumin", + "kosher salt", + "purple onion", + "scallions", + "skirt steak", + "green cabbage", + "flour tortillas", + "spanish paprika", + "fresh lime juice" + ] + }, + { + "id": 48872, + "cuisine": "mexican", + "ingredients": [ + "sunflower oil", + "smoked paprika", + "kidney beans", + "cumin seed", + "fresh tomato salsa", + "cheddar cheese", + "cilantro leaves", + "sour cream", + "flour tortillas", + "garlic cloves", + "onions" + ] + }, + { + "id": 27957, + "cuisine": "mexican", + "ingredients": [ + "lime", + "simple syrup", + "7 Up", + "lemon", + "grenadine", + "wine", + "lime wedges", + "blanco tequila", + "orange", + "bitters", + "fresh lime juice" + ] + }, + { + "id": 22605, + "cuisine": "italian", + "ingredients": [ + "sugar", + "whipping cream", + "Cointreau Liqueur", + "strawberries", + "mascarpone", + "vanilla extract", + "ladyfingers", + "strawberry preserves", + "orange juice" + ] + }, + { + "id": 47867, + "cuisine": "mexican", + "ingredients": [ + "water", + "salt", + "ground cumin", + "green onions", + "chopped cilantro fresh", + "jalapeno chilies", + "low sodium pinto beans", + "reduced fat monterey jack cheese", + "chili powder", + "meat sauce" + ] + }, + { + "id": 41605, + "cuisine": "thai", + "ingredients": [ + "boneless chicken skinless thigh", + "dark sesame oil", + "ginger paste", + "chicken broth", + "water chestnuts", + "beansprouts", + "minced garlic", + "corn starch", + "sweet chili sauce", + "bell pepper", + "canola oil" + ] + }, + { + "id": 28435, + "cuisine": "filipino", + "ingredients": [ + "crab meat", + "water", + "salt", + "eggs", + "seafood base", + "corn starch", + "chicken broth", + "corn kernels", + "imitation crab meat", + "pepper", + "green onions" + ] + }, + { + "id": 46882, + "cuisine": "southern_us", + "ingredients": [ + "coarse salt", + "garlic powder", + "italian seasoning", + "pepper", + "butter", + "potatoes" + ] + }, + { + "id": 43926, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "carrots", + "chopped garlic", + "tomato sauce", + "cannellini beans", + "onions", + "chicken broth", + "ditalini pasta", + "celery", + "olive oil", + "basil dried leaves", + "dried parsley" + ] + }, + { + "id": 20949, + "cuisine": "brazilian", + "ingredients": [ + "strawberries", + "frozen banana", + "honey", + "goji berries", + "unsweetened vanilla almond milk", + "blueberries", + "açai", + "toasted almonds" + ] + }, + { + "id": 30824, + "cuisine": "indian", + "ingredients": [ + "confectioners sugar", + "milk", + "chickpea flour", + "ghee", + "ground cardamom" + ] + }, + { + "id": 26918, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "enchilada sauce", + "black beans", + "baby spinach", + "onions", + "vegetable oil", + "corn tortillas", + "refried beans", + "frozen corn", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 39050, + "cuisine": "italian", + "ingredients": [ + "anise seed", + "paprika", + "vegetable oil", + "salt", + "ground black pepper", + "ground pork", + "fennel seeds", + "red pepper flakes", + "garlic salt" + ] + }, + { + "id": 23543, + "cuisine": "japanese", + "ingredients": [ + "ground black pepper", + "honey", + "vegetable oil", + "low sodium soy sauce", + "boneless skinless chicken breasts", + "fresh ginger", + "scallions" + ] + }, + { + "id": 20462, + "cuisine": "mexican", + "ingredients": [ + "paprika", + "olive oil", + "unsweetened cocoa powder", + "water", + "salt", + "instant espresso powder", + "ground cumin" + ] + }, + { + "id": 40302, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "baking powder", + "cherry pie filling", + "unsalted butter", + "salt", + "milk", + "vanilla extract", + "white sugar", + "egg whites", + "all-purpose flour" + ] + }, + { + "id": 6970, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "fresh basil", + "fresh oregano", + "olive oil", + "tagliatelle", + "tomatoes", + "shredded parmesan cheese" + ] + }, + { + "id": 2706, + "cuisine": "mexican", + "ingredients": [ + "crema mexicana", + "anise", + "peanut oil", + "squash", + "honey", + "salt", + "cinnamon sticks", + "water", + "vegetable broth", + "garlic cloves", + "roasted pumpkin seeds", + "chopped onion", + "poblano chiles" + ] + }, + { + "id": 17370, + "cuisine": "mexican", + "ingredients": [ + "reduced fat cheddar cheese", + "cooked chicken breasts", + "flour tortillas", + "refried beans", + "sliced green onions", + "40% less sodium taco seasoning", + "salsa" + ] + }, + { + "id": 20353, + "cuisine": "mexican", + "ingredients": [ + "pepper jack", + "scallions", + "corn kernels", + "salt", + "corn tortillas", + "vegetable oil", + "enchilada sauce", + "whole milk", + "garlic cloves" + ] + }, + { + "id": 38204, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "plain yogurt", + "peeled fresh ginger", + "cilantro sprigs", + "sour cream", + "mango", + "unsweetened shredded dried coconut", + "bananas", + "mango chutney", + "garlic cloves", + "onions", + "unsweetened coconut milk", + "toasted peanuts", + "steamed white rice", + "vegetable oil", + "low salt chicken broth", + "frozen peas", + "ground cinnamon", + "curry powder", + "boneless skinless chicken breasts", + "all-purpose flour", + "unsweetened applesauce", + "ground cumin" + ] + }, + { + "id": 30828, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "unsalted butter", + "frozen peas", + "arborio rice", + "freshly grated parmesan", + "mint sprigs", + "olive oil", + "dry white wine", + "chicken broth", + "ground black pepper", + "yellow onion" + ] + }, + { + "id": 40540, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "cream cheese", + "basil leaves", + "dried parsley", + "marinara sauce", + "shredded mozzarella cheese", + "dried thyme", + "cheese" + ] + }, + { + "id": 40253, + "cuisine": "italian", + "ingredients": [ + "pineapple chunks", + "pizza sauce", + "cooked ham", + "pita bread", + "monterey jack" + ] + }, + { + "id": 4290, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "watercress", + "dashi", + "large eggs", + "chicken", + "Japanese soy sauce", + "mushrooms", + "sake", + "lemon zest", + "large shrimp" + ] + }, + { + "id": 19061, + "cuisine": "italian", + "ingredients": [ + "lower sodium chicken broth", + "finely chopped onion", + "diced tomatoes", + "salt", + "baguette", + "dry white wine", + "chopped celery", + "fresh parsley", + "black pepper", + "cannellini beans", + "littleneck clams", + "garlic cloves", + "olive oil", + "clam juice", + "crushed red pepper", + "dried oregano" + ] + }, + { + "id": 8785, + "cuisine": "cajun_creole", + "ingredients": [ + "shrimp stock", + "cooking oil", + "hot sauce", + "thyme", + "kosher salt", + "cracked black pepper", + "okra", + "andouille sausage", + "cajun seasoning", + "chopped onion", + "roux", + "chopped green bell pepper", + "chopped celery", + "shrimp" + ] + }, + { + "id": 49044, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "light corn syrup", + "pie crust", + "salted butter", + "salt", + "pecans", + "vanilla extract", + "ground cinnamon", + "granulated sugar" + ] + }, + { + "id": 40443, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "pinto beans", + "bacon", + "chicken broth", + "salt", + "mustard greens" + ] + }, + { + "id": 23864, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "dry white wine", + "heavy cream", + "rigatoni", + "grated parmesan cheese", + "crimini mushrooms", + "yellow onion", + "olive oil", + "boneless skinless chicken breasts", + "garlic", + "fresh basil", + "low sodium chicken broth", + "butter", + "fresh parsley" + ] + }, + { + "id": 4627, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cracked black pepper", + "chicken", + "lemon wedge" + ] + }, + { + "id": 30165, + "cuisine": "southern_us", + "ingredients": [ + "jalapeno chilies", + "canned tomatoes", + "celery", + "andouille sausage", + "deveined shrimp", + "green pepper", + "chicken stock", + "vegetable oil", + "all-purpose flour", + "onions", + "kosher salt", + "cracked black pepper", + "okra" + ] + }, + { + "id": 21916, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "onion powder", + "garlic powder", + "salt", + "olive oil", + "red wine vinegar", + "pepper", + "prepared mustard", + "dried oregano" + ] + }, + { + "id": 39672, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "kosher salt", + "lemon", + "boneless skinless chicken breasts", + "rosemary", + "extra-virgin olive oil" + ] + }, + { + "id": 13679, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "light cream", + "salt", + "white onion", + "butter", + "orecchiette", + "chicken stock", + "parmigiano reggiano cheese", + "frozen peas", + "DeLallo Extra Virgin Olive Oil", + "pepper", + "garlic" + ] + }, + { + "id": 21943, + "cuisine": "cajun_creole", + "ingredients": [ + "crawfish", + "cajun seasoning", + "all-purpose flour", + "water", + "garlic", + "long grain white rice", + "pepper", + "butter", + "onions", + "tomato sauce", + "green onions", + "salt" + ] + }, + { + "id": 28722, + "cuisine": "mexican", + "ingredients": [ + "sliced tomatoes", + "lime", + "low sodium chicken broth", + "cayenne pepper", + "cumin", + "pepper", + "boneless chicken breast", + "garlic", + "tequila", + "tumeric", + "olive oil", + "lime slices", + "long-grain rice", + "fresh cilantro", + "jalapeno chilies", + "salt", + "onions" + ] + }, + { + "id": 19015, + "cuisine": "japanese", + "ingredients": [ + "mashed potatoes", + "mushrooms", + "ham", + "water", + "barbecue sauce", + "mayonaise", + "shredded cabbage", + "flour", + "oil" + ] + }, + { + "id": 38111, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "tomatillos", + "chopped cilantro fresh", + "olive oil", + "chopped onion", + "pepper", + "salt", + "chile pepper", + "lemon juice" + ] + }, + { + "id": 28704, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "tortilla chips", + "cheddar cheese", + "canned tomatoes", + "onions", + "chili", + "all-purpose flour", + "Jarlsberg", + "beer" + ] + }, + { + "id": 2497, + "cuisine": "italian", + "ingredients": [ + "potatoes", + "beef", + "oregano", + "pancetta", + "butter", + "grated parmesan cheese" + ] + }, + { + "id": 3559, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "brandy", + "olive oil", + "apples", + "fresh parsley", + "great northern beans", + "baby lima beans", + "diced tomatoes", + "rubbed sage", + "tomatoes", + "ground cloves", + "leeks", + "country style bread", + "fresh rosemary", + "canned chicken broth", + "large garlic cloves", + "sausages" + ] + }, + { + "id": 18463, + "cuisine": "italian", + "ingredients": [ + "capers", + "vegetable oil", + "extra-virgin olive oil", + "eggs", + "dijon mustard", + "worcestershire sauce", + "hot pepper sauce", + "carpaccio", + "fresh lemon juice", + "pepper", + "lemon", + "salt" + ] + }, + { + "id": 49323, + "cuisine": "british", + "ingredients": [ + "milk", + "beaten eggs", + "butter", + "plain flour", + "salt" + ] + }, + { + "id": 35537, + "cuisine": "indian", + "ingredients": [ + "whole milk", + "ground cardamom", + "pistachios", + "part-skim ricotta cheese", + "sugar", + "vanilla extract", + "cooking spray", + "salt" + ] + }, + { + "id": 33833, + "cuisine": "french", + "ingredients": [ + "fresh orange juice", + "sugar", + "grated orange", + "tea bags", + "boiling water", + "grapefruit juice" + ] + }, + { + "id": 13201, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "curry powder", + "salt", + "frozen peas", + "water", + "large garlic cloves", + "onions", + "ground cumin", + "hot red pepper flakes", + "vegetable oil", + "carrots", + "ground turmeric", + "spinach leaves", + "peeled fresh ginger", + "cumin seed", + "chopped cilantro fresh" + ] + }, + { + "id": 27015, + "cuisine": "italian", + "ingredients": [ + "romaine lettuce", + "ground black pepper", + "white wine vinegar", + "olive oil", + "pimentos", + "salt", + "pepperoni slices", + "grated parmesan cheese", + "purple onion", + "artichoke hearts", + "black olives" + ] + }, + { + "id": 29703, + "cuisine": "brazilian", + "ingredients": [ + "lime juice", + "cucumber", + "kiwi", + "ice cubes", + "pisco", + "cachaca", + "white wine", + "green grape", + "liqueur", + "sage leaves", + "apples", + "soda water" + ] + }, + { + "id": 14192, + "cuisine": "italian", + "ingredients": [ + "cherries", + "amaretto", + "creme anglaise", + "semisweet chocolate", + "whipping cream", + "slivered almonds", + "chocolate shavings" + ] + }, + { + "id": 32592, + "cuisine": "chinese", + "ingredients": [ + "malt syrup", + "ginger", + "spring onions", + "duck", + "caster sugar", + "star anise", + "red wine vinegar" + ] + }, + { + "id": 14984, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "garlic cloves", + "butter", + "oregano", + "rosemary", + "cayenne pepper", + "french bread", + "shrimp" + ] + }, + { + "id": 43653, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "yukon gold potatoes", + "garlic cloves", + "onions", + "chilcostle chile", + "whole cloves", + "cumin seed", + "chayotes", + "plum tomatoes", + "low sodium chicken broth", + "fresh green bean", + "dried guajillo chiles", + "chopped cilantro fresh", + "america", + "corn oil", + "allspice berries", + "squash", + "masa harina" + ] + }, + { + "id": 37780, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "salt", + "water", + "large eggs", + "unsweetened cocoa powder", + "sugar", + "semisweet chocolate", + "all-purpose flour", + "large egg yolks", + "whole milk" + ] + }, + { + "id": 10183, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "Johnsonville Hot & Spicy Breakfast Links", + "shredded pepper jack cheese", + "garlic cloves", + "olive oil", + "chili powder", + "tortilla chips", + "chopped cilantro fresh", + "eggs", + "hot pepper sauce", + "salt", + "green chilies", + "milk", + "green onions", + "chopped onion", + "red bell pepper" + ] + }, + { + "id": 2595, + "cuisine": "greek", + "ingredients": [ + "bell pepper", + "olive oil", + "italian seasoning", + "feta cheese", + "crushed garlic" + ] + }, + { + "id": 24616, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "lime", + "fenugreek seeds", + "asafoetida", + "paneer", + "clarified butter", + "green bell pepper", + "hungarian paprika", + "onions", + "fenugreek leaves", + "coriander seeds", + "red bell pepper" + ] + }, + { + "id": 34330, + "cuisine": "thai", + "ingredients": [ + "shallots", + "fresh lime juice", + "sugar", + "fresh mint", + "asian eggplants", + "cilantro leaves", + "asian fish sauce", + "bibb lettuce", + "bird chile" + ] + }, + { + "id": 43753, + "cuisine": "southern_us", + "ingredients": [ + "turbinado", + "unsalted butter", + "honey", + "buttermilk", + "kosher salt", + "baking powder", + "baking soda", + "all-purpose flour" + ] + }, + { + "id": 27614, + "cuisine": "mexican", + "ingredients": [ + "pozole", + "pork" + ] + }, + { + "id": 22342, + "cuisine": "spanish", + "ingredients": [ + "fish fillets", + "olive oil", + "fish stock", + "onions", + "pinenuts", + "ground black pepper", + "sweet paprika", + "saffron threads", + "minced garlic", + "garden peas", + "flat leaf parsley", + "bread crumb fresh", + "chopped tomatoes", + "salt" + ] + }, + { + "id": 7507, + "cuisine": "filipino", + "ingredients": [ + "eggplant", + "banana peppers", + "whitefish fillets", + "ginger", + "water", + "salt", + "bitter melon", + "vinegar" + ] + }, + { + "id": 15088, + "cuisine": "irish", + "ingredients": [ + "irish cream liqueur", + "kosher salt", + "milk chocolate", + "confectioners sugar" + ] + }, + { + "id": 18940, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "lime juice", + "cayenne", + "minced garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 42753, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "chopped fresh thyme", + "olive oil", + "fresh oregano", + "fresh rosemary", + "rabbit", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 20890, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "crushed red pepper", + "tomatoes", + "butter", + "tomato paste", + "shallots", + "garlic cloves", + "vodka", + "heavy cream" + ] + }, + { + "id": 17057, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "vegetable oil", + "lentils", + "ground black pepper", + "salt", + "fresh parsley", + "water", + "garlic", + "ground beef", + "eggs", + "grated parmesan cheese", + "Italian seasoned breadcrumbs", + "long grain white rice" + ] + }, + { + "id": 29447, + "cuisine": "southern_us", + "ingredients": [ + "prosciutto", + "butter", + "garlic cloves", + "dry white wine", + "diced tomatoes", + "corn grits", + "chopped fresh chives", + "large garlic cloves", + "fresh parsley", + "chicken stock", + "shallots", + "whipping cream", + "large shrimp" + ] + }, + { + "id": 38073, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "oil", + "extra-virgin olive oil", + "pepper", + "salt", + "red wine vinegar" + ] + }, + { + "id": 21806, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "whole wheat pasta", + "garlic", + "olive oil", + "white beans", + "diced tomatoes" + ] + }, + { + "id": 31492, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "frozen whole kernel corn", + "chili powder", + "garlic cloves", + "shredded cheddar cheese", + "cooking spray", + "salt", + "green chile", + "ground turkey breast", + "diced tomatoes", + "ground cumin", + "refried beans", + "green onions", + "chopped onion" + ] + }, + { + "id": 41586, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "asparagus", + "fresh shiitake mushrooms", + "olive oil", + "parmigiano reggiano cheese", + "water", + "unsalted butter", + "shallots", + "arborio rice", + "artichoke hearts", + "dry white wine" + ] + }, + { + "id": 41437, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "cheese", + "oven-ready lasagna noodles", + "ground black pepper", + "all-purpose flour", + "evaporated skim milk", + "cooking spray", + "margarine", + "ground nutmeg", + "salt", + "cooked chicken breasts" + ] + }, + { + "id": 7195, + "cuisine": "italian", + "ingredients": [ + "water", + "anchovy fillets", + "crushed red pepper", + "spaghettini", + "extra-virgin olive oil", + "escarole", + "pecorino romano cheese", + "garlic cloves" + ] + }, + { + "id": 16001, + "cuisine": "korean", + "ingredients": [ + "light brown sugar", + "cake", + "carrots", + "soy sauce", + "sesame oil", + "sesame", + "rice wine", + "onions", + "fresh ginger", + "garlic" + ] + }, + { + "id": 19516, + "cuisine": "british", + "ingredients": [ + "sugar", + "whipping cream", + "raspberry jam", + "unsalted butter", + "all-purpose flour", + "rose water", + "salt", + "powdered sugar", + "baking powder" + ] + }, + { + "id": 25475, + "cuisine": "moroccan", + "ingredients": [ + "turkey mince", + "onions", + "orange", + "cinnamon", + "chicken stock", + "chili powder", + "coriander", + "olive oil", + "couscous" + ] + }, + { + "id": 30200, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "buttermilk", + "sage leaves", + "baking soda", + "cornmeal", + "sugar", + "salt", + "fresh sage", + "unsalted butter" + ] + }, + { + "id": 18375, + "cuisine": "mexican", + "ingredients": [ + "store bought low sodium chicken stock", + "tortillas", + "chees fresco queso", + "onions", + "kosher salt", + "ground black pepper", + "poblano chilies", + "frozen corn kernels", + "ground cumin", + "tomatoes", + "olive oil", + "chips", + "cilantro leaves", + "dried oregano", + "avocado", + "lime", + "chipotle", + "garlic", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 40807, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "cayenne", + "grated lemon zest", + "cumin", + "lime juice", + "garlic", + "chicken pieces", + "lime rind", + "serrano peppers", + "lemon juice", + "grated orange", + "orange", + "salt", + "oregano" + ] + }, + { + "id": 44339, + "cuisine": "thai", + "ingredients": [ + "sesame seeds", + "mango", + "sugar", + "coconut cream", + "salt", + "glutinous rice", + "coconut milk" + ] + }, + { + "id": 24532, + "cuisine": "british", + "ingredients": [ + "sugar", + "flour", + "heavy cream", + "baking soda", + "butter", + "salt", + "water", + "baking powder", + "vanilla", + "brown sugar", + "large eggs", + "dates" + ] + }, + { + "id": 27228, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "dried rosemary", + "cooking spray", + "large egg whites", + "bread dough" + ] + }, + { + "id": 49014, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "water", + "garlic", + "cucumber", + "bone in skin on chicken thigh", + "mint", + "ground black pepper", + "cumin seed", + "bay leaf", + "basmati rice", + "ground ginger", + "garam masala", + "salt", + "cinnamon sticks", + "serrano chile", + "plain yogurt", + "cilantro", + "oil", + "onions", + "saffron" + ] + }, + { + "id": 35270, + "cuisine": "italian", + "ingredients": [ + "capers", + "milk", + "extra-virgin olive oil", + "pitted kalamata olives", + "parsley", + "plum tomatoes", + "bread", + "kosher salt", + "ground pork", + "dried oregano", + "parmigiano-reggiano cheese", + "large eggs", + "ground beef" + ] + }, + { + "id": 3471, + "cuisine": "mexican", + "ingredients": [ + "low sodium taco seasoning", + "cream cheese", + "taco sauce", + "jumbo pasta shells", + "ground beef", + "cheddar cheese", + "green onions", + "sour cream", + "jack cheese", + "salsa" + ] + }, + { + "id": 11773, + "cuisine": "chinese", + "ingredients": [ + "honey", + "spices", + "corn starch", + "reduced sodium soy sauce", + "peanut oil", + "toasted sesame oil", + "fresh ginger", + "beef sirloin", + "red bell pepper", + "orange", + "Shaoxing wine", + "scallions" + ] + }, + { + "id": 13250, + "cuisine": "cajun_creole", + "ingredients": [ + "thin deli ham", + "genoa salami", + "salad", + "deli rolls", + "cheese slices" + ] + }, + { + "id": 5385, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "decorating sugars", + "softened butter", + "white sugar", + "ground cinnamon", + "milk", + "salt", + "confectioners sugar", + "melted butter", + "active dry yeast", + "all-purpose flour", + "sour cream", + "warm water", + "vanilla extract", + "chopped pecans" + ] + }, + { + "id": 27880, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "light coconut milk", + "dark brown sugar", + "baby spinach leaves", + "jalapeno chilies", + "red curry paste", + "fresh basil leaves", + "fish sauce", + "finely chopped onion", + "salt", + "fresh lime juice", + "lower sodium beef broth", + "beef stew meat", + "garlic cloves" + ] + }, + { + "id": 10836, + "cuisine": "mexican", + "ingredients": [ + "chives", + "cheddar cheese", + "crème fraîche", + "tomato salsa", + "jalapeno chilies", + "corn tortillas" + ] + }, + { + "id": 32977, + "cuisine": "mexican", + "ingredients": [ + "biscuits", + "chili", + "oil", + "shredded cheddar cheese", + "shredded lettuce", + "olives", + "tomatoes", + "lean ground beef", + "sour cream", + "avocado", + "water", + "taco seasoning" + ] + }, + { + "id": 17078, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "mushrooms", + "garlic", + "thyme", + "grated parmesan cheese", + "red pepper flakes", + "shredded mozzarella cheese", + "dried oregano", + "eggs", + "basil leaves", + "cracked black pepper", + "oven-ready lasagna noodles", + "zucchini", + "ricotta cheese", + "salt", + "onions" + ] + }, + { + "id": 21353, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ground beef", + "ground black pepper", + "italian seasoned dry bread crumbs", + "ketchup", + "onions", + "salt", + "italian seasoning" + ] + }, + { + "id": 40863, + "cuisine": "italian", + "ingredients": [ + "cantaloupe", + "water", + "fresh lemon juice", + "egg whites", + "granulated sugar" + ] + }, + { + "id": 5099, + "cuisine": "brazilian", + "ingredients": [ + "dried black beans", + "linguica", + "vegetable oil", + "salt", + "sauce", + "bay leaf", + "corned beef", + "tomatoes", + "water", + "parsley leaves", + "garlic", + "yellow onion", + "beer", + "boiling water", + "white vinegar", + "white onion", + "olive oil", + "bacon", + "salt pork", + "rice", + "onions", + "canola oil", + "collard greens", + "orange", + "bay leaves", + "crushed red pepper", + "cayenne pepper", + "ham hock", + "long grain white rice" + ] + }, + { + "id": 9383, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "unsalted butter", + "shallots", + "maple syrup", + "cornmeal", + "brown sugar", + "honey", + "brewed coffee", + "bacon", + "yellow onion", + "eggs", + "water", + "granulated sugar", + "buttermilk", + "all-purpose flour", + "fresh chives", + "baking soda", + "baking powder", + "salt", + "garlic cloves" + ] + }, + { + "id": 47729, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "ginger", + "tomato sauce", + "coriander powder", + "onions", + "clove", + "garam masala", + "cumin seed", + "drummettes", + "chili powder", + "ground turmeric" + ] + }, + { + "id": 17779, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "jicama", + "salt", + "ground black pepper", + "Best Food's Mayonnaise with Lime Juice", + "ground cumin", + "lime juice", + "slaw mix", + "chopped cilantro fresh", + "jalapeno chilies", + "chees fresco queso" + ] + }, + { + "id": 3312, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cooking spray", + "red bell pepper", + "shiitake", + "fresh oregano", + "onions", + "olive oil", + "salt", + "fresh parsley", + "dough", + "ground black pepper", + "goat cheese" + ] + }, + { + "id": 25542, + "cuisine": "thai", + "ingredients": [ + "water", + "thai green curry paste", + "unsweetened coconut milk", + "vegetable oil", + "chopped cilantro fresh", + "sweet potatoes", + "onions", + "minced garlic", + "red bell pepper", + "snow peas" + ] + }, + { + "id": 36867, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "garlic powder", + "chicken", + "black pepper", + "bay leaf", + "low sodium soy sauce", + "vegetable oil", + "minced garlic", + "onions" + ] + }, + { + "id": 3888, + "cuisine": "greek", + "ingredients": [ + "pepper", + "pork tenderloin medallions", + "all-purpose flour", + "chicken stock", + "lemon zest", + "garlic", + "olive oil", + "dry red wine", + "fresh rosemary", + "sliced kalamata olives", + "salt" + ] + }, + { + "id": 36056, + "cuisine": "italian", + "ingredients": [ + "pepper", + "extra-virgin olive oil", + "fresh basil", + "beefsteak tomatoes", + "kosher salt", + "dried fettuccine", + "sweet onion", + "bocconcini" + ] + }, + { + "id": 17508, + "cuisine": "mexican", + "ingredients": [ + "plain yogurt", + "garbanzo beans", + "cucumber", + "diced onions", + "kidney beans", + "shredded lettuce", + "corn tortilla chips", + "chopped tomatoes", + "salt", + "milk", + "guacamole" + ] + }, + { + "id": 22945, + "cuisine": "mexican", + "ingredients": [ + "lime", + "purple onion", + "tomatoes", + "cilantro", + "avocado", + "jalapeno chilies", + "cooked shrimp", + "kosher salt", + "black olives" + ] + }, + { + "id": 15299, + "cuisine": "thai", + "ingredients": [ + "sugar pea", + "peanuts", + "green onions", + "garlic", + "canola oil", + "lettuce", + "pepper", + "chunky peanut butter", + "cilantro", + "salt", + "sweet chili sauce", + "tortillas", + "chicken breasts", + "crushed red pepper", + "soy sauce", + "sweet onion", + "shredded cabbage", + "ginger", + "carrots" + ] + }, + { + "id": 32974, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "fresh lemon juice", + "pitted kalamata olives", + "extra-virgin olive oil", + "cucumber", + "fresh dill", + "lettuce leaves", + "feta cheese crumbles", + "pitas", + "salt", + "plum tomatoes" + ] + }, + { + "id": 39241, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "crust", + "mayonaise", + "chips", + "freshly ground pepper", + "vegetable oil cooking spray", + "baby arugula", + "hot sauce", + "kosher salt", + "buttermilk" + ] + }, + { + "id": 47403, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "extra-virgin olive oil", + "grated lemon zest", + "capers", + "whole wheat flour", + "salt", + "fresh basil", + "olive oil", + "crushed red pepper", + "garlic cloves", + "water", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 26406, + "cuisine": "indian", + "ingredients": [ + "peeled fresh ginger", + "fresh lemon juice", + "zucchini", + "purple onion", + "plum tomatoes", + "eggplant", + "large garlic cloves", + "chopped fresh mint", + "chili", + "vegetable oil", + "mustard seeds" + ] + }, + { + "id": 35279, + "cuisine": "southern_us", + "ingredients": [ + "chocolate syrup", + "chocolate shavings", + "Godiva Chocolate Liqueur", + "liqueur", + "milk", + "whipped cream", + "marshmallow vodka" + ] + }, + { + "id": 7689, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "flour tortillas", + "extra-virgin olive oil", + "cilantro leaves", + "monterey jack", + "honey", + "ground chicken breast", + "purple onion", + "sour cream", + "lime", + "swiss cheese", + "garlic", + "ground coriander", + "ground cumin", + "hominy", + "tomatillos", + "salt", + "serrano chile" + ] + }, + { + "id": 11000, + "cuisine": "italian", + "ingredients": [ + "sugar", + "bittersweet chocolate", + "salt", + "whole milk", + "corn starch" + ] + }, + { + "id": 48679, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "marinara sauce", + "basil", + "smoked paprika", + "eggs", + "milk", + "butter", + "garlic", + "onions", + "pepper", + "chili powder", + "ground pork", + "ground beef", + "sugar", + "grated parmesan cheese", + "red wine", + "salt" + ] + }, + { + "id": 2292, + "cuisine": "italian", + "ingredients": [ + "manchego cheese", + "garlic cloves", + "fava beans", + "extra-virgin olive oil", + "fresh tarragon", + "fresh lime juice", + "baguette", + "salt" + ] + }, + { + "id": 8554, + "cuisine": "italian", + "ingredients": [ + "white vinegar", + "vegetable oil", + "italian seasoning", + "feta cheese", + "freshly ground pepper", + "red cabbage", + "garlic cloves", + "water", + "salt" + ] + }, + { + "id": 19394, + "cuisine": "greek", + "ingredients": [ + "fat free yogurt", + "tahini", + "leg of lamb", + "chilegarlic sauce", + "purple onion", + "pitas", + "sliced cucumber", + "plum tomatoes", + "ground black pepper", + "salt" + ] + }, + { + "id": 26462, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "cayenne pepper", + "kosher salt", + "canola oil", + "low-fat buttermilk", + "boneless chicken skinless thigh", + "all-purpose flour" + ] + }, + { + "id": 23148, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "vegetable oil", + "hot sauce", + "green bell pepper", + "garlic", + "onions", + "fresh corn", + "butter", + "freshly ground pepper", + "sugar", + "salt" + ] + }, + { + "id": 46777, + "cuisine": "mexican", + "ingredients": [ + "smoked salmon", + "salt", + "corn tortillas", + "avocado", + "butter", + "juice", + "pepper", + "salsa", + "tomatoes", + "cheese", + "sour cream" + ] + }, + { + "id": 40210, + "cuisine": "italian", + "ingredients": [ + "heavy cream", + "pepper", + "salt", + "tomato sauce", + "basil", + "red pepper flakes" + ] + }, + { + "id": 12817, + "cuisine": "italian", + "ingredients": [ + "flour", + "garlic", + "garlic salt", + "pepper", + "butter", + "lemon juice", + "angel hair", + "chicken breasts", + "salt", + "grated parmesan cheese", + "lemon", + "heavy whipping cream" + ] + }, + { + "id": 28259, + "cuisine": "southern_us", + "ingredients": [ + "lime juice", + "sea salt", + "maple syrup", + "coconut oil", + "dates", + "vanilla", + "pecans", + "large eggs", + "sweetened coconut flakes", + "sweetened condensed milk", + "sugar", + "heavy cream", + "crust" + ] + }, + { + "id": 28391, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "cooked chicken", + "shredded Monterey Jack cheese", + "olive oil", + "sour cream", + "flour tortillas", + "onions", + "milk", + "all-purpose flour" + ] + }, + { + "id": 6356, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "extra-virgin olive oil", + "chopped onion", + "gluten-free breadcrumbs", + "pepper jack", + "salt", + "pepitas", + "oregano", + "black-eyed peas", + "garlic", + "smoked paprika", + "adobo sauce", + "gluten-free rolled oats", + "hot sauce", + "red bell pepper", + "cumin" + ] + }, + { + "id": 14087, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "garlic cloves", + "fresh cilantro", + "grapeseed oil", + "fresh lime juice", + "white onion", + "tomatillos", + "flat leaf parsley", + "jalapeno chilies", + "freshly ground pepper" + ] + }, + { + "id": 32155, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "sesame oil", + "chopped fresh mint", + "angel hair", + "cooking oil", + "scallions", + "fresh ginger", + "salt", + "asian fish sauce", + "sliced almonds", + "jalapeno chilies", + "ground beef" + ] + }, + { + "id": 32948, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "chickpeas", + "tahini", + "finely chopped fresh parsley", + "lemon juice", + "kosher salt", + "garlic" + ] + }, + { + "id": 1685, + "cuisine": "greek", + "ingredients": [ + "potatoes", + "olive oil", + "fresh parsley", + "black pepper", + "purple onion", + "zucchini", + "plum tomatoes" + ] + }, + { + "id": 17234, + "cuisine": "irish", + "ingredients": [ + "tomato paste", + "olive oil", + "butter", + "salt", + "carrots", + "black pepper", + "red wine vinegar", + "1% low-fat milk", + "rubbed sage", + "pot roast", + "mushrooms", + "paprika", + "all-purpose flour", + "broth", + "low-fat sour cream", + "baking potatoes", + "dry red wine", + "garlic cloves" + ] + }, + { + "id": 33654, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "star anise", + "chuck", + "rock sugar", + "ginger", + "beef marrow", + "rice sticks", + "yellow onion", + "sea salt", + "beef sirloin" + ] + }, + { + "id": 23780, + "cuisine": "french", + "ingredients": [ + "fresh dill", + "salt", + "fat free cream cheese", + "prepared horseradish", + "fresh lemon juice", + "water", + "freshly ground pepper", + "purple onion", + "pink salmon" + ] + }, + { + "id": 30383, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "ground black pepper", + "butter", + "maple syrup", + "ground coriander", + "serrano chile", + "coconut oil", + "zucchini", + "cilantro", + "root vegetables", + "carrots", + "fresh basil", + "honey", + "shallots", + "white rice", + "ground allspice", + "fresh mint", + "lime", + "lettuce leaves", + "peas", + "dark sesame oil", + "shrimp" + ] + }, + { + "id": 15539, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "garlic", + "diced tomatoes", + "lime", + "cilantro leaves" + ] + }, + { + "id": 44178, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "rib", + "garlic cloves", + "pizza doughs", + "fontina", + "escarole" + ] + }, + { + "id": 22240, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "avocado", + "watercress", + "celery ribs", + "lettuce leaves", + "vinaigrette dressing", + "bread slices" + ] + }, + { + "id": 25301, + "cuisine": "italian", + "ingredients": [ + "capers", + "dry white wine", + "salt", + "chicken broth", + "artichoke hearts", + "lemon", + "flat leaf parsley", + "olive oil", + "yukon gold potatoes", + "halibut", + "green olives", + "ground black pepper", + "large garlic cloves" + ] + }, + { + "id": 36058, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "garlic cloves", + "chopped cilantro fresh", + "tomatoes", + "green onions", + "fresh lime juice", + "avocado", + "lime slices", + "low salt chicken broth", + "dried oregano", + "olive oil", + "tortilla chips", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 9190, + "cuisine": "irish", + "ingredients": [ + "water", + "salt", + "chicken bouillon", + "green peas", + "chopped onion", + "chopped cooked ham", + "sliced carrots", + "pearl barley", + "black pepper", + "chopped celery", + "bay leaf" + ] + }, + { + "id": 14149, + "cuisine": "indian", + "ingredients": [ + "dry roasted peanuts", + "basmati rice", + "green peas", + "salt", + "water", + "ground turmeric" + ] + }, + { + "id": 32110, + "cuisine": "mexican", + "ingredients": [ + "canned black beans", + "olive oil", + "ground beef", + "Old El Paso™ taco seasoning mix", + "cilantro leaves", + "refrigerated buttermilk biscuits", + "Mexican cheese blend", + "tomato sauce", + "corn kernels", + "enchilada sauce" + ] + }, + { + "id": 48890, + "cuisine": "korean", + "ingredients": [ + "fish sauce", + "napa cabbage", + "carrots", + "chile powder", + "peeled fresh ginger", + "garlic cloves", + "sugar", + "sea salt", + "shrimp", + "light soy sauce", + "scallions" + ] + }, + { + "id": 17075, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "olive oil", + "fresh parsley", + "bread", + "garlic cloves", + "pancetta", + "grated parmesan cheese" + ] + }, + { + "id": 29867, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "peaches", + "butter", + "vegetable oil cooking spray", + "large eggs", + "all-purpose flour", + "firmly packed brown sugar", + "granulated sugar", + "salt", + "ground cinnamon", + "milk", + "baking powder", + "chopped pecans" + ] + }, + { + "id": 14879, + "cuisine": "japanese", + "ingredients": [ + "ground fennel", + "tumeric", + "water", + "coriander powder", + "flour", + "worcestershire sauce", + "cocoa powder", + "onions", + "ground cinnamon", + "ground cloves", + "garam masala", + "coffee", + "chili powder", + "peas", + "ground cardamom", + "tomato paste", + "soy sauce", + "garlic powder", + "beef", + "beef stock", + "ginger", + "oil", + "ground cumin", + "brown sugar", + "minced garlic", + "ground black pepper", + "potatoes", + "butter", + "salt", + "carrots" + ] + }, + { + "id": 18840, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "barbecue sauce", + "brown sugar", + "ground black pepper", + "chili powder", + "honey", + "ground red pepper", + "pork", + "dijon mustard", + "paprika" + ] + }, + { + "id": 27743, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "butter", + "white sugar", + "flour", + "salt", + "baking powder", + "cornmeal", + "baking soda", + "buttermilk" + ] + }, + { + "id": 48383, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "salt", + "large eggs", + "water", + "all-purpose flour" + ] + }, + { + "id": 29183, + "cuisine": "indian", + "ingredients": [ + "water", + "zucchini", + "red bell pepper", + "fresh lime juice", + "eggplant", + "salt", + "sour cream", + "cashew nuts", + "dried currants", + "vegetable oil spray", + "cilantro leaves", + "couscous", + "plain whole-milk yogurt", + "curry powder", + "corn oil", + "chutney", + "onions" + ] + }, + { + "id": 11115, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "medium shrimp", + "Knorr® Pasta Sides™ - Alfredo", + "baby spinach", + "cherry tomatoes", + "oil" + ] + }, + { + "id": 31797, + "cuisine": "chinese", + "ingredients": [ + "white onion", + "gingerroot", + "asparagus spears", + "chili paste", + "oyster sauce", + "olive oil", + "garlic cloves", + "sesame oil", + "corn starch" + ] + }, + { + "id": 49381, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "water", + "butter", + "oil", + "celery", + "chicken broth", + "cheddar cheese", + "parsley", + "garlic", + "thyme", + "grits", + "andouille sausage", + "green onions", + "heavy cream", + "shrimp", + "onions", + "tomatoes", + "pepper", + "cajun seasoning", + "salt", + "red bell pepper" + ] + }, + { + "id": 4736, + "cuisine": "southern_us", + "ingredients": [ + "diced tomatoes", + "potatoes", + "frozen corn kernels", + "baby lima beans", + "beef stew meat", + "butter", + "okra" + ] + }, + { + "id": 2795, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "purple onion", + "chopped garlic", + "olive oil", + "Italian bread", + "pitted kalamata olives", + "provolone cheese", + "genoa salami", + "pitted green olives", + "fresh basil leaves" + ] + }, + { + "id": 32011, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "basmati rice", + "green onions", + "base", + "water", + "bacon slices" + ] + }, + { + "id": 34389, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "salt", + "large shrimp", + "olive oil", + "fusilli", + "fresh parsley", + "ground pepper", + "whipping cream", + "boneless skinless chicken breast halves", + "bread crumbs", + "dry white wine", + "cayenne pepper" + ] + }, + { + "id": 19584, + "cuisine": "italian", + "ingredients": [ + "anchovy paste", + "rotini", + "black pepper", + "salt", + "fresh dill", + "extra-virgin olive oil", + "onions", + "feta cheese", + "red bell pepper" + ] + }, + { + "id": 17211, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "self rising flour", + "milk" + ] + }, + { + "id": 11287, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "all-purpose flour", + "large garlic cloves", + "butter", + "fresh parsley", + "canned beef broth", + "calf liver" + ] + }, + { + "id": 18068, + "cuisine": "greek", + "ingredients": [ + "dried thyme", + "sauce", + "fresh parsley", + "plain yogurt", + "finely chopped onion", + "lemon juice", + "pepper", + "pork tenderloin", + "cucumber", + "tomatoes", + "garlic powder", + "garlic cloves", + "onions" + ] + }, + { + "id": 41454, + "cuisine": "mexican", + "ingredients": [ + "red pepper", + "sweet corn", + "cumin", + "ground black pepper", + "salt", + "chillies", + "tomatoes", + "garlic", + "cucumber", + "red wine vinegar", + "green pepper", + "coriander" + ] + }, + { + "id": 17298, + "cuisine": "indian", + "ingredients": [ + "water", + "brown sugar", + "cumin seed", + "tamarind extract", + "dates" + ] + }, + { + "id": 47922, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "frozen pastry puff sheets", + "garlic cloves", + "green bell pepper", + "large eggs", + "all-purpose flour", + "chicken", + "dried thyme", + "bay leaves", + "shrimp", + "tomatoes", + "frozen okra", + "vegetable oil", + "onions" + ] + }, + { + "id": 33609, + "cuisine": "french", + "ingredients": [ + "bone-in chicken breast halves", + "mushrooms", + "white wine vinegar", + "dark beer", + "flat leaf parsley", + "ground black pepper", + "butter", + "salt", + "carrots", + "bone in chicken thighs", + "fresh thyme", + "chicken drumsticks", + "all-purpose flour", + "greek yogurt", + "canola oil", + "juniper berries", + "shallots", + "chopped celery", + "dry gin", + "bay leaf" + ] + }, + { + "id": 49109, + "cuisine": "british", + "ingredients": [ + "heavy cream", + "blackberries", + "confectioners sugar", + "ginger", + "lime juice", + "borage" + ] + }, + { + "id": 44234, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "fresh cilantro", + "garlic cloves", + "black beans", + "cilantro", + "medium whole wheat tortillas", + "cheddar cheese", + "refried beans", + "sour cream", + "picante sauce", + "salsa" + ] + }, + { + "id": 15270, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "beef broth", + "italian plum tomatoes", + "zucchini", + "cooked italian meatballs", + "orzo" + ] + }, + { + "id": 37130, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "garlic", + "fresh mint", + "white onion", + "stewed tomatoes", + "fat skimmed chicken broth", + "vegetable oil", + "frozen corn kernels", + "long grain white rice", + "chili powder", + "salt", + "chicken thighs" + ] + }, + { + "id": 21435, + "cuisine": "indian", + "ingredients": [ + "chicken stock", + "salt", + "boneless skinless chicken breast halves", + "cayenne", + "garlic cloves", + "lime", + "cilantro leaves", + "basmati rice", + "sweetened coconut flakes", + "coconut milk" + ] + }, + { + "id": 28699, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "red chili powder", + "butter", + "salt", + "green chilies", + "onions", + "tomato purée", + "water", + "kasuri methi", + "green cardamom", + "oil", + "tomatoes", + "garlic paste", + "ginger", + "rajma", + "cumin seed", + "clove", + "low fat cream", + "cinnamon", + "urad dal", + "brown cardamom", + "bay leaf" + ] + }, + { + "id": 47247, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper flakes", + "ground turkey", + "fresh basil", + "grated parmesan cheese", + "fresh oregano", + "eggs", + "lasagna noodles", + "garlic", + "onions", + "crushed tomatoes", + "ricotta cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 22309, + "cuisine": "italian", + "ingredients": [ + "vodka", + "lemon", + "sugar" + ] + }, + { + "id": 42913, + "cuisine": "thai", + "ingredients": [ + "fresh coriander", + "spring onions", + "firm tofu", + "chili flakes", + "fresh ginger", + "garlic", + "carrots", + "tomatoes", + "water", + "rice noodles", + "oil", + "coconut sugar", + "peanuts", + "tamari soy sauce", + "mung bean sprouts" + ] + }, + { + "id": 21432, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "chopped cilantro fresh", + "coarse salt", + "tomatoes", + "serrano chile" + ] + }, + { + "id": 11467, + "cuisine": "filipino", + "ingredients": [ + "water", + "oil", + "fresh spinach", + "garlic", + "green papaya", + "fish sauce", + "ginger", + "onions", + "chicken bones", + "salt" + ] + }, + { + "id": 33134, + "cuisine": "southern_us", + "ingredients": [ + "water", + "baking powder", + "salt", + "large eggs", + "buttermilk", + "blackberries", + "granulated sugar", + "butter", + "all-purpose flour", + "yellow corn meal", + "dark rum", + "vanilla extract" + ] + }, + { + "id": 46441, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "large garlic cloves", + "fresh basil leaves", + "capers", + "dry white wine", + "squid", + "pinenuts", + "raisins", + "campanelle", + "lemon zest", + "extra-virgin olive oil", + "serrano chile" + ] + }, + { + "id": 14300, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "olive oil", + "freshly ground pepper", + "saffron threads", + "tumeric", + "cilantro sprigs", + "onions", + "ground ginger", + "parsley sprigs", + "salt", + "chicken", + "preserved lemon", + "kalamata", + "garlic cloves" + ] + }, + { + "id": 43274, + "cuisine": "southern_us", + "ingredients": [ + "raspberries", + "all purpose unbleached flour", + "unsalted butter", + "salt", + "baking soda", + "buttermilk", + "sugar", + "baking powder" + ] + }, + { + "id": 49250, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "cherry tomatoes", + "fresh mozzarella", + "black pepper", + "parmesan cheese", + "angel hair", + "olive oil", + "salt", + "minced garlic", + "green onions" + ] + }, + { + "id": 24703, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "tortillas", + "salt", + "oil", + "ground cumin", + "diced green chilies", + "jalapeno chilies", + "taco seasoning", + "sour cream", + "tomatoes", + "Mexican cheese blend", + "cilantro", + "scallions", + "onions", + "refried beans", + "bell pepper", + "salsa", + "enchilada sauce" + ] + }, + { + "id": 26751, + "cuisine": "cajun_creole", + "ingredients": [ + "white rum", + "blue curaçao", + "peaches" + ] + }, + { + "id": 30925, + "cuisine": "italian", + "ingredients": [ + "eggs", + "mascarpone", + "sugar", + "amaretto", + "ladyfingers", + "coffee", + "cocoa" + ] + }, + { + "id": 29508, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "corn starch", + "salmon fillets", + "black sesame seeds", + "orange juice", + "sake", + "water", + "crushed red pepper", + "fresh lime juice", + "sugar", + "lemon wedge", + "vegetable slaw" + ] + }, + { + "id": 34374, + "cuisine": "chinese", + "ingredients": [ + "sugar pea", + "boneless skinless chicken breasts", + "corn starch", + "roasted cashews", + "minced ginger", + "red pepper flakes", + "chicken broth", + "minced garlic", + "rice wine", + "red bell pepper", + "soy sauce", + "canola", + "salt" + ] + }, + { + "id": 18076, + "cuisine": "brazilian", + "ingredients": [ + "lime juice", + "fresh mint", + "apple juice", + "apples", + "cachaca", + "ice cubes", + "champagne" + ] + }, + { + "id": 10638, + "cuisine": "italian", + "ingredients": [ + "nutmeg", + "parmesan cheese", + "salt", + "black pepper", + "flour", + "fettuccine pasta", + "broccoli florets", + "garlic cloves", + "chicken stock", + "olive oil", + "1% low-fat milk" + ] + }, + { + "id": 5606, + "cuisine": "greek", + "ingredients": [ + "hamburger buns", + "sun-dried tomatoes", + "greek style plain yogurt", + "ground turkey", + "bread crumbs", + "fresh lemon", + "dried dill", + "dried oregano", + "frozen spinach", + "pepper", + "purple onion", + "feta cheese crumbles", + "eggs", + "minced garlic", + "salt", + "cucumber" + ] + }, + { + "id": 24324, + "cuisine": "southern_us", + "ingredients": [ + "salad greens", + "chopped walnuts", + "prepared horseradish", + "frozen okra", + "diced celery", + "tomatoes", + "vinaigrette" + ] + }, + { + "id": 35715, + "cuisine": "chinese", + "ingredients": [ + "ground chicken", + "cracker crumbs", + "fresh basil", + "grated parmesan cheese", + "ricotta cheese", + "eggs", + "minced onion", + "parsley", + "ketchup", + "whole cloves", + "shredded mozzarella cheese" + ] + }, + { + "id": 11493, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "all-purpose flour", + "flounder fillets", + "yellow corn meal", + "paprika", + "peanut oil", + "ground red pepper", + "tartar sauce", + "garlic powder", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 23721, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "corn muffin", + "kosher salt", + "heavy cream", + "large eggs", + "softened butter", + "shredded cheddar cheese", + "bacon" + ] + }, + { + "id": 41283, + "cuisine": "southern_us", + "ingredients": [ + "green onions", + "red bell pepper", + "olive oil", + "chees fresco queso", + "crawfish", + "butter", + "fajita seasoning mix", + "flour tortillas", + "cayenne pepper" + ] + }, + { + "id": 27503, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "cooking spray", + "ground cinnamon", + "water", + "ground cloves", + "sugar", + "vanilla extract" + ] + }, + { + "id": 7633, + "cuisine": "british", + "ingredients": [ + "shaved chocolate", + "unsalted butter", + "dulce de leche", + "instant espresso powder", + "heavy cream", + "powdered sugar", + "peanuts", + "granulated sugar", + "graham crackers", + "bananas", + "vanilla extract" + ] + }, + { + "id": 16777, + "cuisine": "french", + "ingredients": [ + "shell steak", + "cognac", + "fennel seeds", + "vegetable oil", + "green peppercorns", + "unsalted butter", + "white peppercorns", + "black peppercorns", + "heavy cream" + ] + }, + { + "id": 28417, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "flour", + "butter", + "pepper", + "Tabasco Pepper Sauce", + "paprika", + "mozzarella cheese", + "chicken breasts", + "heavy cream", + "thin spaghetti", + "olive oil", + "cajun seasoning" + ] + }, + { + "id": 36271, + "cuisine": "italian", + "ingredients": [ + "sea salt", + "bread", + "garlic", + "olive oil" + ] + }, + { + "id": 44615, + "cuisine": "filipino", + "ingredients": [ + "large eggs", + "condensed milk", + "raisins", + "butter", + "brown sugar", + "sweetened coconut flakes" + ] + }, + { + "id": 19491, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "salt", + "ground red pepper", + "egg whites", + "mixed nuts", + "sugar", + "flaked coconut" + ] + }, + { + "id": 36762, + "cuisine": "french", + "ingredients": [ + "baby arugula", + "lemon wedge", + "anchovy paste", + "cherry tomatoes", + "shallots", + "basil", + "chopped garlic", + "salmon fillets", + "hard-boiled egg", + "yukon gold potatoes", + "extra-virgin olive oil", + "pitted kalamata olives", + "basil leaves", + "red wine vinegar", + "green beans" + ] + }, + { + "id": 7091, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "vegetable oil", + "ground pecans", + "large eggs", + "buttermilk", + "yellow corn meal", + "cajun seasoning", + "grated parmesan cheese", + "paprika" + ] + }, + { + "id": 47708, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "center cut pork chops", + "purple onion", + "chopped garlic", + "fresh basil", + "fresh oregano", + "red wine vinegar", + "plum tomatoes" + ] + }, + { + "id": 49196, + "cuisine": "mexican", + "ingredients": [ + "cooked brown rice", + "bell pepper", + "cayenne pepper", + "onions", + "tomato purée", + "water", + "extra-virgin olive oil", + "sour cream", + "sugar", + "garlic powder", + "salt", + "tomato soup", + "white vinegar", + "black pepper", + "chili powder", + "shredded cheese", + "cumin" + ] + }, + { + "id": 38533, + "cuisine": "greek", + "ingredients": [ + "hot red pepper flakes", + "cider vinegar", + "cinnamon", + "fresh lemon juice", + "soy sauce", + "minced onion", + "grated nutmeg", + "ground lamb", + "sugar", + "water", + "anchovy paste", + "fresh mint", + "bread crumbs", + "large eggs", + "garlic cloves" + ] + }, + { + "id": 46314, + "cuisine": "mexican", + "ingredients": [ + "sour cream", + "refried beans", + "monterey jack", + "salsa" + ] + }, + { + "id": 40709, + "cuisine": "jamaican", + "ingredients": [ + "chicken wings", + "salt", + "baking powder", + "jerk sauce" + ] + }, + { + "id": 29575, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "butter", + "salt", + "quickcooking grits", + "deveined shrimp", + "pepper", + "bacon", + "smoked cheddar cheese", + "green onions", + "garlic" + ] + }, + { + "id": 22356, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "large eggs", + "vanilla extract", + "ground nutmeg", + "butter", + "pie dough", + "sweet potatoes", + "pumpkin pie spice", + "brown sugar", + "reduced fat milk", + "salt" + ] + }, + { + "id": 37687, + "cuisine": "japanese", + "ingredients": [ + "gari", + "mirin", + "dried shiitake mushrooms", + "large shrimp", + "sugar", + "vegetable oil spray", + "lettuce leaves", + "asparagus spears", + "sushi rice", + "reduced sodium soy sauce", + "salt", + "bamboo shoots", + "dashi", + "large eggs", + "carrots" + ] + }, + { + "id": 39204, + "cuisine": "british", + "ingredients": [ + "salt", + "unsalted butter", + "sweetened condensed milk", + "bananas", + "heavy whipping cream", + "graham cracker crumbs" + ] + }, + { + "id": 20620, + "cuisine": "italian", + "ingredients": [ + "cream of chicken soup", + "cream cheese", + "chicken breasts", + "water", + "italian salad dressing" + ] + }, + { + "id": 34088, + "cuisine": "mexican", + "ingredients": [ + "red wine vinegar", + "dried oregano", + "pork", + "garlic", + "chili powder", + "salt", + "paprika", + "ground cumin" + ] + }, + { + "id": 35443, + "cuisine": "chinese", + "ingredients": [ + "pork belly", + "vegetable oil", + "corn starch", + "dark soy sauce", + "rice wine", + "garlic cloves", + "fresh ginger", + "star anise", + "club soda", + "clove", + "chenpi", + "scallions" + ] + }, + { + "id": 6102, + "cuisine": "chinese", + "ingredients": [ + "ginger", + "skinless chicken breasts", + "red chili peppers", + "cooking wine", + "coriander", + "fresh red chili", + "garlic", + "scallions", + "soy sauce", + "salt", + "peppercorns" + ] + }, + { + "id": 2213, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "garlic", + "red pepper flakes", + "oil", + "olive oil", + "salt", + "red wine" + ] + }, + { + "id": 35376, + "cuisine": "french", + "ingredients": [ + "cooking spray", + "kosher salt", + "baking potatoes", + "chopped fresh thyme", + "unsalted butter", + "white truffle oil" + ] + }, + { + "id": 24218, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "garlic cloves", + "extra-virgin olive oil", + "shallots", + "oregano", + "hot Italian sausages" + ] + }, + { + "id": 6341, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "chopped onion", + "ground cumin", + "pigeon peas", + "green onions", + "garlic cloves", + "olive oil", + "salt", + "flat leaf parsley", + "water", + "parboiled rice", + "canadian bacon" + ] + }, + { + "id": 25382, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "large eggs", + "light corn syrup", + "baking soda", + "buttermilk", + "salt", + "sugar", + "baking powder", + "cake flour", + "pure vanilla extract", + "unsalted butter", + "heavy cream" + ] + }, + { + "id": 21083, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "taco seasoning", + "pepper jack", + "tortillas", + "monterey jack", + "rice" + ] + }, + { + "id": 8400, + "cuisine": "indian", + "ingredients": [ + "ground red pepper", + "boneless pork loin", + "chopped cilantro fresh", + "garam masala", + "salt", + "garlic cloves", + "ground cumin", + "tomatoes", + "dry red wine", + "chopped onion", + "basmati rice", + "peeled fresh ginger", + "all-purpose flour", + "mustard seeds" + ] + }, + { + "id": 5983, + "cuisine": "indian", + "ingredients": [ + "chili", + "pappadams", + "garlic cloves", + "chicken broth", + "wafer", + "gingerroot", + "coriander", + "red lentils", + "coriander seeds", + "canned tomatoes", + "onions", + "tumeric", + "vegetable oil", + "cuminseed", + "ground cumin" + ] + }, + { + "id": 48690, + "cuisine": "spanish", + "ingredients": [ + "mayonaise", + "balsamic vinegar", + "black pepper", + "garlic salt", + "tuna packed in water", + "red bell pepper", + "avocado", + "green onions" + ] + }, + { + "id": 27064, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "salt", + "white sugar", + "active dry yeast", + "margarine", + "milk", + "all-purpose flour", + "egg yolks", + "cocoa powder" + ] + }, + { + "id": 2074, + "cuisine": "jamaican", + "ingredients": [ + "dried chives", + "onion powder", + "ground allspice", + "dried thyme", + "grated nutmeg", + "ground cinnamon", + "garlic powder", + "cayenne pepper", + "black pepper", + "salt", + "dark brown sugar" + ] + }, + { + "id": 19109, + "cuisine": "spanish", + "ingredients": [ + "arborio rice", + "bay leaves", + "garlic cloves", + "onions", + "saffron threads", + "zucchini", + "hot Italian sausages", + "fresh parsley", + "tomatoes", + "paprika", + "low salt chicken broth", + "chicken thighs", + "olive oil", + "salt", + "red bell pepper", + "large shrimp" + ] + }, + { + "id": 31909, + "cuisine": "french", + "ingredients": [ + "pie dough", + "apple jelly", + "ground nutmeg", + "brown sugar", + "vanilla beans", + "granny smith apples", + "crème fraîche" + ] + }, + { + "id": 45061, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "garlic", + "enchilada sauce", + "coriander", + "corn", + "chili powder", + "taco seasoning", + "onions", + "chicken breasts", + "black olives", + "corn tortillas", + "cumin", + "lime juice", + "colby jack cheese", + "salt", + "ground beef", + "italian seasoning" + ] + }, + { + "id": 38575, + "cuisine": "french", + "ingredients": [ + "pepper", + "ground black pepper", + "vegetable oil", + "salt", + "cold water", + "minced garlic", + "grated parmesan cheese", + "ricotta cheese", + "sauce", + "eggs", + "light cream", + "swiss cheese", + "crepes", + "frozen chopped spinach", + "milk", + "flour", + "butter" + ] + }, + { + "id": 41285, + "cuisine": "southern_us", + "ingredients": [ + "coarse salt", + "hot sauce", + "onions", + "bacon", + "juice", + "butter", + "garlic cloves", + "grits", + "ground pepper", + "diced tomatoes", + "shrimp" + ] + }, + { + "id": 5301, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "pasilla chiles", + "radishes", + "garlic", + "low salt chicken broth", + "cooked chicken breasts", + "slivered almonds", + "sesame seeds", + "shredded lettuce", + "unsalted pumpkinseed kernels", + "onions", + "vegetable oil cooking spray", + "water", + "mulato chiles", + "chopped onion", + "corn tortillas", + "ground cumin", + "ground cinnamon", + "ground cloves", + "semisweet chocolate", + "salt", + "ancho chile pepper", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 21500, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "ground beef", + "chili powder", + "onions", + "enchilada sauce", + "ground cumin", + "corn tortillas" + ] + }, + { + "id": 18312, + "cuisine": "spanish", + "ingredients": [ + "chili flakes", + "extra-virgin olive oil", + "sea salt", + "lemon juice", + "black pepper", + "garlic cloves", + "button mushrooms", + "flat leaf parsley" + ] + }, + { + "id": 24513, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "italian plum tomatoes", + "penne rigate", + "prosciutto", + "juice", + "sugar", + "purple onion" + ] + }, + { + "id": 24179, + "cuisine": "vietnamese", + "ingredients": [ + "egg whites", + "vegetable oil", + "garlic cloves", + "fresh lime juice", + "fish sauce", + "peeled fresh ginger", + "sauce", + "corn starch", + "chopped cilantro fresh", + "lettuce leaves", + "sea bass fillets", + "garlic chili sauce", + "cooked shrimp", + "sugar", + "sesame oil", + "crabmeat", + "red bell pepper" + ] + }, + { + "id": 29009, + "cuisine": "french", + "ingredients": [ + "butter", + "fresh parsley leaves", + "onions", + "crusty bread", + "chopped celery", + "escargot", + "black peppercorns", + "red wine", + "carrots", + "chopped garlic", + "ground black pepper", + "salt", + "bay leaf" + ] + }, + { + "id": 6313, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "fine sea salt", + "basmati rice", + "clove", + "ground black pepper", + "coconut milk", + "vegetables", + "chutney", + "ground cinnamon", + "cooking oil", + "onions" + ] + }, + { + "id": 11977, + "cuisine": "mexican", + "ingredients": [ + "crema", + "unsalted butter", + "reposado", + "kosher salt", + "scallions", + "shell-on shrimp" + ] + }, + { + "id": 35001, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "fresh lime juice", + "purple onion", + "salt", + "black beans" + ] + }, + { + "id": 18903, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "bacon", + "kale leaves", + "ground black pepper", + "crushed red pepper", + "cider vinegar", + "garlic", + "onions", + "chicken broth", + "mustard greens", + "salt" + ] + }, + { + "id": 30182, + "cuisine": "spanish", + "ingredients": [ + "chicken stock", + "roma tomatoes", + "chopped parsley", + "pimento stuffed green olives", + "minced garlic", + "extra-virgin olive oil", + "onions", + "kosher salt", + "dry white wine", + "bay leaf", + "saffron threads", + "short-grain rice", + "freshly ground pepper", + "bone in skin on chicken thigh" + ] + }, + { + "id": 37868, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "butter", + "onions", + "celery ribs", + "half & half", + "creamy peanut butter", + "peanuts", + "all-purpose flour", + "chicken broth", + "ground red pepper", + "garlic cloves" + ] + }, + { + "id": 32440, + "cuisine": "italian", + "ingredients": [ + "salt", + "olive oil", + "fresh basil leaves", + "pepper", + "bow-tie pasta", + "garlic", + "plum tomatoes" + ] + }, + { + "id": 22811, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "dijon mustard", + "extra-virgin olive oil", + "prosciutto", + "balsamic vinegar", + "salt", + "ground black pepper", + "chees fresh mozzarella", + "rotini", + "yellow squash", + "zucchini", + "purple onion" + ] + }, + { + "id": 30660, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "zucchini", + "broccoli", + "corn tortillas", + "pepper", + "olive oil", + "salt", + "carrots", + "milk", + "button mushrooms", + "enchilada sauce", + "water", + "butter", + "potato flakes" + ] + }, + { + "id": 5410, + "cuisine": "russian", + "ingredients": [ + "arrowroot", + "jelli strawberri", + "raspberries", + "strawberries", + "sugar", + "vanilla", + "blackberries", + "water", + "blackcurrant syrup" + ] + }, + { + "id": 5667, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "cannellini beans", + "carrots", + "applewood smoked bacon", + "parmigiano-reggiano cheese", + "ground black pepper", + "organic vegetable broth", + "onions", + "olive oil", + "butternut squash", + "sliced mushrooms", + "italian seasoning", + "fresh spinach", + "unsalted butter", + "garlic cloves", + "cooked chicken breasts" + ] + }, + { + "id": 29188, + "cuisine": "spanish", + "ingredients": [ + "bone-in chicken breast halves", + "rice", + "ground red pepper", + "ground cumin", + "cooking spray", + "fresh lime juice", + "chili powder" + ] + }, + { + "id": 40964, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "Sriracha", + "red pepper flakes", + "corn starch", + "chicken stock", + "black pepper", + "boneless skinless chicken breasts", + "rice vinegar", + "onions", + "ketchup", + "large eggs", + "worcestershire sauce", + "red bell pepper", + "green bell pepper", + "garlic powder", + "vegetable oil", + "oyster sauce" + ] + }, + { + "id": 15387, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "ginger", + "lime leaves", + "vegetable oil", + "coconut cream", + "orange zest", + "shallots", + "Thai red curry paste", + "large shrimp", + "frozen orange juice concentrate", + "butter", + "chayotes" + ] + }, + { + "id": 47161, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "garlic", + "lime", + "salt", + "tomatoes", + "purple onion", + "ground black pepper" + ] + }, + { + "id": 3041, + "cuisine": "italian", + "ingredients": [ + "kalamata", + "anchovy fillets", + "dried oregano", + "red pepper flakes", + "purple onion", + "spaghetti", + "extra-virgin olive oil", + "fresh parsley", + "tomatoes with juice", + "garlic cloves" + ] + }, + { + "id": 47275, + "cuisine": "korean", + "ingredients": [ + "garlic powder", + "onion powder", + "pepper", + "barbecue sauce", + "salt", + "olive oil", + "chili powder", + "mango", + "extra firm tofu", + "pineapple" + ] + }, + { + "id": 28685, + "cuisine": "spanish", + "ingredients": [ + "fresh parmesan cheese", + "cooking spray", + "chopped onion", + "fat free less sodium chicken broth", + "chopped green bell pepper", + "salt", + "red bell pepper", + "dried tarragon leaves", + "sherry vinegar", + "paprika", + "garlic cloves", + "olive oil", + "potatoes", + "dry bread crumbs" + ] + }, + { + "id": 41317, + "cuisine": "brazilian", + "ingredients": [ + "crushed tomatoes", + "garlic", + "medium shrimp", + "green bell pepper", + "cooking oil", + "long-grain rice", + "onions", + "unsweetened coconut milk", + "ground black pepper", + "salt", + "fresh parsley", + "water", + "red pepper flakes", + "lemon juice" + ] + }, + { + "id": 35367, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "herbs", + "ground black pepper", + "idaho potatoes", + "salted butter", + "coarse salt", + "cold water", + "parsley leaves", + "extra-virgin olive oil" + ] + }, + { + "id": 19937, + "cuisine": "southern_us", + "ingredients": [ + "light molasses", + "salt", + "high-fructose corn syrup", + "pepper", + "onion powder", + "dark brown sugar", + "ground ginger", + "soda", + "orange juice", + "grated lemon peel", + "garlic powder", + "worcestershire sauce", + "lemon juice" + ] + }, + { + "id": 18649, + "cuisine": "thai", + "ingredients": [ + "fresh coriander", + "coconut milk", + "red curry paste", + "cauliflower florets", + "snow peas", + "fish sauce", + "skinless chicken breasts" + ] + }, + { + "id": 46401, + "cuisine": "french", + "ingredients": [ + "parmesan cheese", + "leeks", + "anchovy fillets", + "celery ribs", + "grated parmesan cheese", + "extra-virgin olive oil", + "small white beans", + "yellow squash", + "low sodium chicken broth", + "garlic", + "fresh basil leaves", + "zucchini", + "coarse salt", + "freshly ground pepper" + ] + }, + { + "id": 21547, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "red chili peppers", + "cayenne", + "cilantro", + "garlic cloves", + "tumeric", + "fresh ginger", + "butternut squash", + "tamarind paste", + "fennel seeds", + "chiles", + "coriander seeds", + "shallots", + "cumin seed", + "long pepper", + "water", + "cooking oil", + "salt", + "coconut milk" + ] + }, + { + "id": 24976, + "cuisine": "filipino", + "ingredients": [ + "tomato sauce", + "potatoes", + "grating cheese", + "garlic cloves", + "water", + "bay leaves", + "pineapple juice", + "onions", + "pepper", + "bell pepper", + "salt", + "carrots", + "tomato paste", + "beef", + "Tabasco Pepper Sauce", + "liver" + ] + }, + { + "id": 3929, + "cuisine": "vietnamese", + "ingredients": [ + "shredded coconut", + "black rice", + "sesame seeds", + "peanuts", + "water" + ] + }, + { + "id": 8239, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "cracked black pepper", + "provolone cheese", + "dried oregano", + "olive oil", + "pitted olives", + "fresh parsley", + "cooked ham", + "garlic", + "lemon juice", + "sliced salami", + "lettuce leaves", + "ciabatta", + "pimento stuffed green olives" + ] + }, + { + "id": 48445, + "cuisine": "japanese", + "ingredients": [ + "pistachios", + "carrots", + "sugar", + "nonfat dry milk powder", + "slivered almonds", + "whole milk ricotta cheese", + "unsalted butter", + "ground cardamom" + ] + }, + { + "id": 30472, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "baking powder", + "white cornmeal", + "half & half", + "softened butter", + "vegetable oil", + "boiling water" + ] + }, + { + "id": 14046, + "cuisine": "filipino", + "ingredients": [ + "pork", + "vegetable oil", + "onions", + "soy sauce", + "garlic", + "rice paper", + "ground black pepper", + "salt", + "green cabbage", + "spring onions", + "carrots" + ] + }, + { + "id": 13972, + "cuisine": "italian", + "ingredients": [ + "finely chopped onion", + "butter", + "flat leaf parsley", + "olive oil", + "mushrooms", + "salt", + "seasoned bread crumbs", + "cooking spray", + "pecorino romano cheese", + "ground black pepper", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 32418, + "cuisine": "greek", + "ingredients": [ + "phyllo dough", + "2% low-fat cottage cheese", + "chopped onion", + "frozen chopped spinach", + "large eggs", + "all-purpose flour", + "feta cheese", + "butter cooking spray", + "garlic cloves", + "ground black pepper", + "salt" + ] + }, + { + "id": 47549, + "cuisine": "vietnamese", + "ingredients": [ + "hero rolls", + "cilantro leaves", + "carrots", + "flank steak", + "scallions", + "water", + "rice vinegar", + "sugar", + "red pepper flakes", + "garlic cloves" + ] + }, + { + "id": 6596, + "cuisine": "cajun_creole", + "ingredients": [ + "Johnsonville Andouille Fully Cooked Sausage", + "cajun seasoning", + "onions", + "large eggs", + "green pepper", + "pepper jack", + "salsa", + "Klondike Rose red skin potato", + "Pompeian Canola Oil and Extra Virgin Olive Oil" + ] + }, + { + "id": 22457, + "cuisine": "indian", + "ingredients": [ + "large egg whites", + "ground black pepper", + "dipping sauces", + "ground turmeric", + "panko", + "vegetable oil", + "fresh lemon juice", + "ground cumin", + "baking soda", + "flour", + "salt", + "club soda", + "garam masala", + "cauliflower florets", + "ground cayenne pepper" + ] + }, + { + "id": 40985, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "water", + "low sodium soy sauce", + "fresh ginger", + "sugar", + "corn starch" + ] + }, + { + "id": 4435, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "non-fat sour cream", + "diced tomatoes with garlic and onion", + "red bell pepper", + "water", + "flank steak", + "salsa", + "garlic cloves", + "ground cumin", + "jalapeno chilies", + "salt", + "ground coriander", + "onions", + "fresh cilantro", + "chili powder", + "green pepper", + "corn starch" + ] + }, + { + "id": 42906, + "cuisine": "mexican", + "ingredients": [ + "pork sirloin roast", + "jalapeno chilies", + "cilantro leaves", + "olive oil", + "butter", + "Hatch Green Chiles", + "kosher salt", + "tomatillos", + "yellow onion", + "ground black pepper", + "garlic" + ] + }, + { + "id": 17937, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "garlic cloves", + "pasta", + "grated parmesan cheese", + "pancetta", + "olive oil", + "eggs", + "salt" + ] + }, + { + "id": 7980, + "cuisine": "filipino", + "ingredients": [ + "green onions", + "salt", + "soy sauce", + "butter", + "eggs", + "vegetable oil", + "long-grain rice", + "pepper", + "garlic" + ] + }, + { + "id": 41294, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "sesame oil", + "carrots", + "medium shrimp uncook", + "napa cabbage", + "soy sauce", + "rice noodles", + "green onions", + "garlic chili sauce" + ] + }, + { + "id": 13115, + "cuisine": "southern_us", + "ingredients": [ + "cream", + "green onions", + "all-purpose flour", + "tomatoes", + "grated parmesan cheese", + "butter", + "pasta", + "crawfish", + "cajun seasoning", + "green bell pepper", + "processed cheese", + "garlic" + ] + }, + { + "id": 27457, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "foie gras", + "pears", + "olive oil", + "salt", + "salad greens", + "extra-virgin olive oil", + "fennel", + "freshly ground pepper" + ] + }, + { + "id": 22567, + "cuisine": "thai", + "ingredients": [ + "red chili powder", + "water", + "thai basil", + "shallots", + "garlic", + "cumin seed", + "couscous", + "chicken", + "tomatoes", + "brown sugar", + "lime", + "coriander powder", + "ginger", + "cilantro leaves", + "red bell pepper", + "onions", + "kaffir lime leaves", + "soy sauce", + "green curry paste", + "mushrooms", + "green peas", + "green chilies", + "coconut milk", + "ground turmeric", + "clove", + "fish sauce", + "lemongrass", + "garam masala", + "cilantro", + "salt", + "oil", + "galangal" + ] + }, + { + "id": 48421, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "cooking spray", + "red bell pepper", + "capers", + "ground black pepper", + "salt", + "fresh parmesan cheese", + "baking potatoes", + "fresh parsley", + "large egg whites", + "large eggs", + "chopped onion" + ] + }, + { + "id": 16228, + "cuisine": "chinese", + "ingredients": [ + "water", + "all-purpose flour", + "vegetable oil", + "milk", + "golden syrup", + "eggs", + "cake flour" + ] + }, + { + "id": 36618, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "white wine", + "heavy cream", + "dry bread crumbs", + "mustard", + "ketchup", + "leeks", + "salt", + "armagnac", + "eggs", + "pepper", + "merluza", + "shrimp", + "mayonaise", + "olive oil", + "garlic", + "Piment d'Espelette" + ] + }, + { + "id": 25609, + "cuisine": "russian", + "ingredients": [ + "saffron threads", + "unsalted butter", + "all-purpose flour", + "water", + "whole milk", + "active dry yeast", + "salt", + "sugar", + "large eggs" + ] + }, + { + "id": 26494, + "cuisine": "thai", + "ingredients": [ + "meatballs", + "dipping sauces", + "scallions", + "bird chile", + "lime", + "sea salt", + "coconut cream", + "coconut milk", + "thai basil", + "ginger", + "cucumber salad", + "ground turkey", + "sugar", + "lime wedges", + "rice", + "oil", + "ground beef" + ] + }, + { + "id": 24783, + "cuisine": "japanese", + "ingredients": [ + "wasabi", + "light soy sauce", + "purple onion", + "smoked salmon", + "brown rice", + "nori sheets", + "avocado", + "sesame seeds", + "carrots", + "lime", + "extra-virgin olive oil", + "cucumber" + ] + }, + { + "id": 13343, + "cuisine": "italian", + "ingredients": [ + "honey", + "soft goat's cheese", + "balsamic vinegar", + "prosciutto", + "figs" + ] + }, + { + "id": 33849, + "cuisine": "chinese", + "ingredients": [ + "seasoned rice wine vinegar", + "frozen peas", + "vegetable oil", + "scallions", + "soy sauce", + "cumin seed", + "cilantro sprigs", + "cooked white rice" + ] + }, + { + "id": 724, + "cuisine": "mexican", + "ingredients": [ + "corn husks", + "garlic cloves", + "black pepper", + "purple onion", + "monterey jack", + "crema mexican", + "poblano chiles", + "olive oil", + "salt" + ] + }, + { + "id": 5602, + "cuisine": "mexican", + "ingredients": [ + "top round steak", + "olive oil", + "chunky salsa", + "water", + "rotini", + "black beans", + "crushed garlic", + "taco seasoning mix", + "chopped cilantro fresh" + ] + }, + { + "id": 44195, + "cuisine": "spanish", + "ingredients": [ + "garlic cloves", + "coarse salt", + "fresh lemon juice", + "extra-virgin olive oil" + ] + }, + { + "id": 14658, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "olive oil", + "baking potatoes", + "chopped onion", + "fresh parsley", + "water", + "half & half", + "salt", + "red bell pepper", + "black pepper", + "chopped green bell pepper", + "crushed red pepper", + "garlic cloves", + "grated orange", + "fennel seeds", + "dried thyme", + "dry white wine", + "grouper", + "bay leaf" + ] + }, + { + "id": 2403, + "cuisine": "thai", + "ingredients": [ + "mint leaves", + "ground pork", + "cilantro leaves", + "lime juice", + "vegetable oil", + "purple onion", + "long-grain rice", + "sugar", + "lettuce leaves", + "thai chile", + "freshly ground pepper", + "thai basil", + "large garlic cloves", + "salt", + "asian fish sauce" + ] + }, + { + "id": 13956, + "cuisine": "italian", + "ingredients": [ + "water", + "stewed tomatoes", + "onions", + "spinach", + "beef stock cubes", + "carrots", + "italian seasoning", + "tomato sauce", + "peas", + "ground beef", + "ground black pepper", + "elbow macaroni", + "chopped garlic" + ] + }, + { + "id": 19405, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "red wine vinegar", + "garlic cloves", + "plantains", + "ancho", + "dried thyme", + "rendered bacon fat", + "boiling water", + "stew meat", + "ground black pepper", + "yellow onion", + "dried oregano", + "reduced sodium chicken broth", + "worcestershire sauce", + "bay leaf" + ] + }, + { + "id": 17753, + "cuisine": "italian", + "ingredients": [ + "wild garlic", + "sea salt", + "olive oil", + "ground black pepper", + "fresh pasta" + ] + }, + { + "id": 27997, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "olive oil", + "salt", + "mozzarella cheese", + "garlic", + "fresh basil leaves", + "tomato sauce", + "grated parmesan cheese", + "onions", + "pepper", + "shells" + ] + }, + { + "id": 49163, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "sesame seeds", + "red pepper flakes", + "scallions", + "soy sauce", + "boneless skinless chicken breasts", + "garlic", + "panko breadcrumbs", + "pepper", + "sesame oil", + "salt", + "canola oil", + "honey", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 30320, + "cuisine": "indian", + "ingredients": [ + "chiles", + "sesame seeds", + "marinade", + "curry", + "peppercorns", + "garlic paste", + "water", + "kashmiri chile", + "spices", + "cumin seed", + "clove", + "grated coconut", + "coriander seeds", + "vegetable oil", + "salt", + "chicken", + "tumeric", + "red chile powder", + "bay leaves", + "cinnamon", + "onions" + ] + }, + { + "id": 40002, + "cuisine": "french", + "ingredients": [ + "baguette", + "fresh thyme", + "beef broth", + "ground pepper", + "dry sherry", + "bay leaf", + "water", + "low sodium chicken broth", + "yellow onion", + "table salt", + "unsalted butter", + "gruyere cheese" + ] + }, + { + "id": 1883, + "cuisine": "cajun_creole", + "ingredients": [ + "hot pepper sauce", + "dri leav thyme", + "onions", + "fat free less sodium chicken broth", + "cajun seasoning", + "red bell pepper", + "andouille sausage", + "cooking spray", + "long-grain rice", + "kidney beans", + "salt", + "fresh parsley" + ] + }, + { + "id": 16547, + "cuisine": "italian", + "ingredients": [ + "1% low-fat cottage cheese", + "cooking spray", + "1% low-fat milk", + "freshly ground pepper", + "frozen chopped spinach", + "fresh parmesan cheese", + "sliced carrots", + "all-purpose flour", + "red bell pepper", + "part-skim mozzarella cheese", + "shredded swiss cheese", + "salt", + "garlic cloves", + "pepper", + "lasagna noodles", + "vegetable oil", + "broccoli", + "sliced green onions" + ] + }, + { + "id": 42433, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "olive oil", + "diced tomatoes", + "garlic cloves", + "lower sodium chicken broth", + "butternut squash", + "crushed red pepper", + "ground cinnamon", + "ground black pepper", + "paprika", + "chopped cilantro fresh", + "beef shoulder roast", + "shallots", + "salt" + ] + }, + { + "id": 39806, + "cuisine": "italian", + "ingredients": [ + "baking powder", + "walnuts", + "unsalted butter", + "vanilla extract", + "sugar", + "raisins", + "boiling water", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 46348, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "orange juice", + "grated orange", + "fresh basil", + "purple onion", + "red bell pepper", + "white wine vinegar", + "garlic cloves", + "nectarines", + "sugar", + "salt", + "fresh lime juice" + ] + }, + { + "id": 41141, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "garlic", + "chicken thighs", + "half & half", + "red bell pepper", + "canola oil", + "seasoning", + "beef smoked sausage", + "onions", + "white wine", + "corn starch", + "noodles" + ] + }, + { + "id": 21972, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "red wine", + "fresh parsley", + "tomatoes", + "zucchini", + "beef broth", + "dried oregano", + "pasta", + "water", + "garlic", + "fresh basil leaves", + "sausage casings", + "sliced carrots", + "chopped onion" + ] + }, + { + "id": 13471, + "cuisine": "southern_us", + "ingredients": [ + "vanilla extract", + "light brown sugar", + "chopped pecans", + "margarine", + "butter" + ] + }, + { + "id": 7670, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "white sandwich bread", + "water", + "thyme", + "squabs", + "crust", + "unsalted butter", + "chopped parsley" + ] + }, + { + "id": 49602, + "cuisine": "italian", + "ingredients": [ + "bread crumb fresh", + "large garlic cloves", + "ground black pepper", + "flat leaf parsley", + "olive oil", + "salt", + "lemon wedge", + "large shrimp" + ] + }, + { + "id": 33376, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "veal", + "round steaks", + "italian seasoning", + "garlic powder", + "garlic", + "dried parsley", + "olive oil", + "whole peeled tomatoes", + "bay leaf", + "ground black pepper", + "sweet italian sausage", + "dried oregano" + ] + }, + { + "id": 11765, + "cuisine": "korean", + "ingredients": [ + "pork belly", + "minced ginger", + "kimchi", + "tofu", + "minced garlic", + "scallions", + "pepper", + "salt", + "hot red pepper flakes", + "water", + "juice" + ] + }, + { + "id": 19635, + "cuisine": "japanese", + "ingredients": [ + "sea salt", + "toasted sesame seeds", + "anchovies", + "scallions", + "dried bonito flakes", + "udon", + "konbu" + ] + }, + { + "id": 6111, + "cuisine": "italian", + "ingredients": [ + "pesto", + "chees fresh mozzarella", + "fresh lime juice", + "heirloom tomatoes", + "extra-virgin olive oil", + "red wine vinegar", + "orzo", + "large shrimp", + "zucchini", + "yellow bell pepper", + "fresh basil leaves" + ] + }, + { + "id": 12889, + "cuisine": "japanese", + "ingredients": [ + "wasabi", + "sushi rice", + "agave nectar", + "nori sheets", + "natural peanut butter", + "water", + "rice vinegar", + "avocado", + "gari", + "salt", + "soy sauce", + "sesame seeds", + "salted peanuts" + ] + }, + { + "id": 21037, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "ground black pepper", + "garlic", + "boneless skinless chicken breast halves", + "capers", + "butter", + "fresh lemon juice", + "olive oil", + "paprika", + "fresh parsley", + "angel hair", + "dry white wine", + "all-purpose flour" + ] + }, + { + "id": 45988, + "cuisine": "thai", + "ingredients": [ + "taro", + "white sugar", + "coconut cream", + "palm sugar", + "coconut milk", + "salt" + ] + }, + { + "id": 6709, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "ground beef", + "water", + "instant white rice", + "shredded cheddar cheese", + "shredded lettuce", + "chunky salsa", + "Campbell's Condensed Tomato Soup", + "tortilla chips" + ] + }, + { + "id": 46946, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "ginger", + "onions", + "tofu", + "garam masala", + "garlic cloves", + "curry powder", + "vegetable stock", + "mustard seeds", + "frozen spinach", + "garlic powder", + "salt" + ] + }, + { + "id": 46676, + "cuisine": "mexican", + "ingredients": [ + "brown rice", + "green chilies", + "black beans", + "cilantro", + "chunky salsa", + "shredded cheddar cheese", + "greek style plain yogurt", + "boneless skinless chicken breasts", + "frozen corn" + ] + }, + { + "id": 9357, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cilantro", + "grape tomatoes", + "corn", + "ground cumin", + "kosher salt", + "purple onion", + "black pepper", + "lime" + ] + }, + { + "id": 43295, + "cuisine": "southern_us", + "ingredients": [ + "lager", + "vegetable oil", + "lump crab meat", + "baking powder", + "corn starch", + "kosher salt", + "chopped fresh chives", + "all-purpose flour", + "mascarpone", + "shallots" + ] + }, + { + "id": 7778, + "cuisine": "chinese", + "ingredients": [ + "white vinegar", + "olive oil", + "brown rice", + "toasted sesame oil", + "brown sugar", + "flour", + "low sodium chicken stock", + "low sodium soy sauce", + "vegetables", + "salt", + "toasted sesame seeds", + "pepper", + "boneless skinless chicken breasts", + "garlic cloves" + ] + }, + { + "id": 11122, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "dry sherry", + "scallions", + "black peppercorns", + "peeled fresh ginger", + "garlic", + "cinnamon sticks", + "soy sauce", + "star anise", + "carrots", + "canned low sodium chicken broth", + "boneless skinless chicken breasts", + "salt" + ] + }, + { + "id": 7699, + "cuisine": "italian", + "ingredients": [ + "salt and ground black pepper", + "garlic", + "pizza crust", + "shredded swiss cheese", + "cornmeal", + "olive oil", + "fresh mozzarella", + "pears", + "prosciutto", + "all-purpose flour" + ] + }, + { + "id": 8148, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "flour tortillas", + "salt", + "chicken broth", + "Herdez Salsa Verde", + "diced tomatoes", + "ground cumin", + "garlic powder", + "potatoes", + "yellow onion", + "Herdez Salsa Casera", + "ground black pepper", + "beef stew meat" + ] + }, + { + "id": 43958, + "cuisine": "french", + "ingredients": [ + "pepper", + "all-purpose flour", + "eggs", + "lemon", + "fresh parsley", + "chicken broth", + "butter", + "corn starch", + "white wine", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 48208, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "orange liqueur", + "ice cubes", + "lime wedges", + "white tequila", + "grapefruit juice", + "lime", + "club soda" + ] + }, + { + "id": 5578, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "seasoned rice wine vinegar", + "sesame oil", + "salt", + "sesame seeds", + "english cucumber" + ] + }, + { + "id": 14462, + "cuisine": "italian", + "ingredients": [ + "pasta", + "purple onion", + "grated parmesan cheese", + "red bell pepper", + "sliced black olives", + "salad dressing", + "salami" + ] + }, + { + "id": 6303, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "vegetable oil", + "salt", + "chicken broth", + "ground black pepper", + "garlic", + "chopped onion", + "boneless pork shoulder", + "garlic powder", + "bacon", + "creole seasoning", + "water", + "cayenne", + "chopped celery" + ] + }, + { + "id": 16580, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "salt", + "garlic", + "vinegar", + "green chilies", + "soy sauce", + "milkfish" + ] + }, + { + "id": 34430, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "flank steak", + "garlic cloves", + "ground black pepper", + "colby jack cheese", + "sour cream", + "guacamole", + "cilantro", + "cumin", + "lime", + "french fries", + "salt" + ] + }, + { + "id": 8686, + "cuisine": "italian", + "ingredients": [ + "sugar", + "lemon", + "large eggs", + "all-purpose flour", + "unsalted pistachios", + "vanilla extract", + "baking powder", + "lemon juice" + ] + }, + { + "id": 16181, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "cream of chicken soup", + "sour cream", + "angel hair", + "Mexican cheese", + "cooked chicken", + "cream of mushroom soup" + ] + }, + { + "id": 16557, + "cuisine": "indian", + "ingredients": [ + "carbonated water", + "fresh lime juice", + "ice cubes", + "cane sugar", + "ground ginger", + "ground cardamom", + "fine sea salt" + ] + }, + { + "id": 45500, + "cuisine": "italian", + "ingredients": [ + "pizza crust", + "plum tomatoes", + "ground pepper", + "mozzarella cheese", + "basil pesto sauce", + "coarse salt" + ] + }, + { + "id": 16356, + "cuisine": "spanish", + "ingredients": [ + "vegetable oil", + "salt", + "boiling potatoes", + "large eggs", + "garlic", + "onions", + "saffron threads", + "large garlic cloves", + "garlic cloves", + "canola oil", + "large egg yolks", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 32831, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "raisins", + "couscous", + "butternut squash", + "peas", + "cumin", + "olive oil", + "paprika", + "chicken thighs", + "chicken broth", + "cinnamon", + "salt" + ] + }, + { + "id": 29263, + "cuisine": "chinese", + "ingredients": [ + "broccoli stems", + "garlic cloves", + "chicken stock", + "sunflower oil", + "cashew nuts", + "lemon", + "fillets", + "clear honey", + "cornflour" + ] + }, + { + "id": 44564, + "cuisine": "italian", + "ingredients": [ + "pearl onions", + "zucchini", + "carrots", + "dried parsley", + "kidney beans", + "vegetable broth", + "celery", + "dried basil", + "macaroni", + "green beans", + "crushed tomatoes", + "vegetable bouillon", + "garlic", + "bay leaf" + ] + }, + { + "id": 37875, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "spices", + "flat leaf parsley", + "lamb fillet", + "fresh oregano", + "mint leaves", + "lemon", + "vine ripened tomatoes", + "garlic cloves" + ] + }, + { + "id": 11511, + "cuisine": "mexican", + "ingredients": [ + "water", + "poblano peppers", + "portabello mushroom", + "garlic", + "cayenne pepper", + "eggs", + "feta cheese", + "cinnamon", + "cilantro", + "salt", + "ground cumin", + "tomato sauce", + "roasted red peppers", + "whole wheat tortillas", + "extra-virgin olive oil", + "yellow onion", + "nutmeg", + "milk", + "chili powder", + "paprika", + "purple onion", + "sour cream" + ] + }, + { + "id": 9390, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "cooking spray", + "beef broth", + "noodles", + "minced garlic", + "baby spinach", + "carrots", + "sake", + "green onions", + "rounds", + "honey", + "crushed red pepper", + "shiitake mushroom caps" + ] + }, + { + "id": 2023, + "cuisine": "southern_us", + "ingredients": [ + "water", + "heavy cream", + "carrots", + "fresh tomatoes", + "brewed coffee", + "salt", + "celery", + "ground black pepper", + "garlic", + "flat leaf parsley", + "tomato sauce", + "butter", + "chopped onion", + "white sugar" + ] + }, + { + "id": 5007, + "cuisine": "italian", + "ingredients": [ + "fresh sage", + "butter", + "veal", + "dry white wine", + "prosciutto" + ] + }, + { + "id": 33510, + "cuisine": "russian", + "ingredients": [ + "canned chopped tomatoes", + "beets", + "low-fat sour cream", + "russet potatoes", + "fresh parsley", + "green cabbage", + "lemon wedge", + "fresh lemon juice", + "olive oil", + "vegetable broth", + "onions" + ] + }, + { + "id": 4970, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "salt", + "red anjou pears", + "butter", + "phyllo dough", + "almonds", + "vanilla extract", + "apple jelly", + "cooking spray" + ] + }, + { + "id": 20622, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "butter", + "juice", + "cooked rice", + "flour tortillas", + "salt", + "canned corn", + "mozzarella cheese", + "cilantro", + "onions", + "black pepper", + "bell pepper", + "oil", + "cumin" + ] + }, + { + "id": 10273, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "water", + "sesame oil", + "corn starch", + "eggs", + "white pepper", + "green onions", + "sauce", + "chicken pieces", + "white vinegar", + "soy sauce", + "flour", + "salt", + "ginger root", + "sugar", + "minced garlic", + "rice wine", + "oil" + ] + }, + { + "id": 23738, + "cuisine": "indian", + "ingredients": [ + "condensed milk", + "pistachios", + "carrots", + "rose water", + "lemon juice", + "whole milk", + "ghee" + ] + }, + { + "id": 46806, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "bay leaves", + "canned tomatoes", + "okra pods", + "hot pepper sauce", + "green onions", + "kale leaves", + "frozen okra", + "red beans", + "salt", + "dried oregano", + "green bell pepper", + "steamed white rice", + "vegetable broth", + "freshly ground pepper" + ] + }, + { + "id": 24817, + "cuisine": "british", + "ingredients": [ + "baking soda", + "all-purpose flour", + "ground cinnamon", + "buttermilk", + "cream of tartar", + "butter", + "milk", + "salt" + ] + }, + { + "id": 21583, + "cuisine": "southern_us", + "ingredients": [ + "green onions", + "fresh parsley", + "creole mustard", + "light mayonnaise", + "ground red pepper", + "nonfat yogurt", + "garlic cloves" + ] + }, + { + "id": 2901, + "cuisine": "italian", + "ingredients": [ + "worcestershire sauce", + "garlic cloves", + "ground black pepper", + "salt", + "extra-virgin olive oil", + "red wine vinegar", + "maple syrup" + ] + }, + { + "id": 7582, + "cuisine": "southern_us", + "ingredients": [ + "white bread", + "large egg whites", + "vegetable oil", + "crackers", + "table salt", + "low-fat buttermilk", + "poultry seasoning", + "chicken stock", + "ground sage", + "butter", + "white cornmeal", + "black pepper", + "self rising flour", + "celery" + ] + }, + { + "id": 13279, + "cuisine": "korean", + "ingredients": [ + "ground black pepper", + "wonton wrappers", + "firm tofu", + "green onions", + "asian rice noodles", + "cabbage", + "zucchini", + "garlic", + "toasted sesame oil", + "eggs", + "vegetable oil", + "salt" + ] + }, + { + "id": 27143, + "cuisine": "italian", + "ingredients": [ + "white rum", + "chopped almonds", + "grated lemon zest", + "large egg yolks", + "angel food cake", + "drambuie", + "powdered sugar", + "reduced fat milk", + "grenadine syrup", + "semisweet chocolate", + "all-purpose flour", + "cognac" + ] + }, + { + "id": 4604, + "cuisine": "japanese", + "ingredients": [ + "tofu", + "white miso", + "water", + "sauce", + "sugar", + "baby spinach", + "sesame seeds" + ] + }, + { + "id": 23727, + "cuisine": "southern_us", + "ingredients": [ + "jalapeno chilies", + "garlic", + "water", + "bacon", + "onions", + "black-eyed peas", + "diced tomatoes", + "chili powder", + "salt" + ] + }, + { + "id": 8801, + "cuisine": "japanese", + "ingredients": [ + "cooking wine", + "water", + "soy sauce", + "mirin" + ] + }, + { + "id": 5192, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "granulated sugar", + "light brown sugar", + "shortening", + "buttermilk", + "white cake mix", + "large eggs", + "ground cinnamon", + "vanilla glaze" + ] + }, + { + "id": 31046, + "cuisine": "russian", + "ingredients": [ + "candied orange peel", + "milk", + "granulated sugar", + "almond extract", + "lemon juice", + "pure vanilla extract", + "warm water", + "large egg yolks", + "rum", + "all-purpose flour", + "slivered almonds", + "active dry yeast", + "large eggs", + "salt", + "powdered sugar", + "water", + "unsalted butter", + "golden raisins", + "ground cardamom" + ] + }, + { + "id": 48834, + "cuisine": "chinese", + "ingredients": [ + "celery ribs", + "pepper", + "mushrooms", + "oyster sauce", + "onions", + "green bell pepper", + "water chestnuts", + "salt", + "bok choy", + "snow peas", + "chicken broth", + "water", + "vegetable oil", + "corn starch", + "bamboo shoots", + "soy sauce", + "pork tenderloin", + "garlic cloves", + "mung bean sprouts" + ] + }, + { + "id": 7376, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "light corn syrup", + "pecans", + "flour", + "eggs", + "pies", + "vanilla", + "brown sugar", + "refrigerated piecrusts" + ] + }, + { + "id": 9973, + "cuisine": "british", + "ingredients": [ + "brussels sprouts", + "bacon fat", + "minced garlic", + "onions", + "mashed potatoes", + "ham", + "butter" + ] + }, + { + "id": 30132, + "cuisine": "mexican", + "ingredients": [ + "low-fat sour cream", + "egg substitute", + "roasted red peppers", + "chopped cilantro fresh", + "corn mix muffin", + "diced green chilies", + "enchilada sauce", + "cheddar cheese", + "fresh cilantro", + "green onions", + "black beans", + "corn", + "salsa" + ] + }, + { + "id": 11786, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "grated parmesan cheese", + "olive oil", + "Knorr Chicken Stock Pots", + "cream", + "egg yolks", + "ground black pepper", + "spaghetti" + ] + }, + { + "id": 42159, + "cuisine": "korean", + "ingredients": [ + "napa cabbage", + "sauce", + "rice powder", + "ginger", + "shrimp", + "table salt", + "pineapple", + "scallions", + "hot pepper", + "garlic", + "onions" + ] + }, + { + "id": 9564, + "cuisine": "french", + "ingredients": [ + "flat leaf parsley", + "unsalted butter", + "water", + "fingerling potatoes" + ] + }, + { + "id": 30396, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "oregano", + "tomato sauce", + "shredded parmesan cheese", + "part-skim mozzarella", + "extra-virgin olive oil", + "kosher salt", + "pizza doughs" + ] + }, + { + "id": 28170, + "cuisine": "indian", + "ingredients": [ + "toasted unsweetened coconut", + "red pepper", + "cilantro leaves", + "coconut milk", + "ground ginger", + "baby spinach", + "garlic", + "chickpeas", + "sweet potatoes", + "ginger", + "yellow onion", + "sun-dried tomatoes", + "lemon", + "salt", + "oil" + ] + }, + { + "id": 20888, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "bourbon whiskey", + "cinnamon sticks", + "water", + "simple syrup", + "brandy", + "vanilla extract", + "whole milk", + "grated nutmeg" + ] + }, + { + "id": 18418, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "baking powder", + "kosher salt", + "large eggs", + "buttermilk", + "yellow corn meal", + "granulated sugar", + "all purpose unbleached flour", + "baking soda", + "corn oil" + ] + }, + { + "id": 4587, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "salt", + "peeled fresh ginger", + "ground turmeric", + "vegetable oil", + "ground cumin", + "sugar", + "garlic cloves" + ] + }, + { + "id": 10597, + "cuisine": "southern_us", + "ingredients": [ + "flavored vodka", + "lemonade", + "ice", + "apricot brandy" + ] + }, + { + "id": 29594, + "cuisine": "french", + "ingredients": [ + "shallots", + "champagne vinegar", + "ground black pepper", + "fresh parsley", + "pink peppercorns" + ] + }, + { + "id": 7213, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "grated parmesan cheese", + "spaghetti", + "pasta sauce", + "olive oil", + "basil", + "large egg whites", + "chicken breast halves", + "italian seasoning", + "black pepper", + "part-skim mozzarella cheese", + "all-purpose flour" + ] + }, + { + "id": 29204, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "whole milk ricotta cheese", + "garlic cloves", + "sea salt", + "parmigiano", + "baby arugula", + "pizza doughs" + ] + }, + { + "id": 33266, + "cuisine": "italian", + "ingredients": [ + "diced tomatoes", + "olive oil", + "polenta", + "cannellini beans", + "sausages" + ] + }, + { + "id": 43560, + "cuisine": "british", + "ingredients": [ + "salt", + "lard", + "Equal Sweetener", + "eggs" + ] + }, + { + "id": 45028, + "cuisine": "indian", + "ingredients": [ + "fat free yogurt", + "cooking spray", + "chopped fresh mint", + "fennel bulb", + "cucumber", + "seasoned bread crumbs", + "cracked black pepper", + "boneless skinless chicken breast halves", + "olive oil", + "salt" + ] + }, + { + "id": 36429, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "ground red pepper", + "mustard seeds", + "tomato sauce", + "garam masala", + "red wine vinegar", + "chopped cilantro fresh", + "fat free less sodium chicken broth", + "pork tenderloin", + "diced tomatoes", + "canola oil", + "garlic powder", + "brown rice", + "onions" + ] + }, + { + "id": 36752, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "extra-virgin olive oil", + "chili pepper flakes", + "pasta", + "garlic" + ] + }, + { + "id": 7187, + "cuisine": "thai", + "ingredients": [ + "sugar pea", + "shallots", + "juice", + "brown sugar", + "lime", + "cilantro leaves", + "dried shrimp", + "chiles", + "basil leaves", + "toasted pine nuts", + "lobster meat", + "fish sauce", + "kosher salt", + "garlic", + "cucumber" + ] + }, + { + "id": 31024, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "fleur de sel", + "baking powder", + "salt", + "baking soda", + "cake flour", + "lard", + "butter", + "all-purpose flour" + ] + }, + { + "id": 36654, + "cuisine": "french", + "ingredients": [ + "shallots", + "all-purpose flour", + "garlic cloves", + "fresh thyme", + "pitted green olives", + "chopped onion", + "bay leaf", + "dry white wine", + "sea salt", + "duck", + "dried fig", + "ground black pepper", + "red wine vinegar", + "grated lemon zest", + "thyme sprigs" + ] + }, + { + "id": 46692, + "cuisine": "brazilian", + "ingredients": [ + "granulated sugar", + "lime", + "cachaca" + ] + }, + { + "id": 28300, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "chorizo", + "crema mexican", + "tomatillos", + "corn tortillas", + "cotija", + "vegetables", + "lime wedges", + "cilantro leaves", + "onions", + "eggs", + "refried beans", + "jalapeno chilies", + "garlic", + "chopped cilantro", + "kosher salt", + "poblano peppers", + "vegetable oil", + "roasting chickens" + ] + }, + { + "id": 28622, + "cuisine": "chinese", + "ingredients": [ + "gai lan", + "sesame oil", + "rice", + "kosher salt", + "chile bean paste", + "pork", + "garlic", + "sugar", + "ginger" + ] + }, + { + "id": 12154, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "grapes", + "turkey", + "chicken broth", + "butter", + "sage leaves", + "orange slices", + "rubbed sage" + ] + }, + { + "id": 43053, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "grated parmesan cheese", + "water", + "oyster sauce", + "minced garlic", + "Maggi", + "fish sauce", + "unsalted butter", + "noodles" + ] + }, + { + "id": 18785, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "heavy cream", + "gran marnier", + "vanilla beans", + "large eggs", + "salt", + "sugar", + "granulated sugar", + "fresh orange juice", + "natural pistachios", + "large egg yolks", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 15307, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning", + "taco sauce", + "sour cream", + "shredded cheese", + "wonton wrappers", + "ground beef" + ] + }, + { + "id": 10253, + "cuisine": "korean", + "ingredients": [ + "sake", + "sesame seeds", + "tamari soy sauce", + "black pepper", + "sesame oil", + "pear juice", + "green onions", + "beef rib short", + "honey", + "garlic" + ] + }, + { + "id": 36685, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "lemon rind", + "chopped cilantro fresh", + "pork tenderloin", + "paprika", + "lemon pepper", + "jalapeno chilies", + "salt", + "cucumber", + "avocado", + "tomatillos", + "fresh lemon juice", + "ground cumin" + ] + }, + { + "id": 36158, + "cuisine": "indian", + "ingredients": [ + "pepper", + "cayenne", + "chopped cilantro fresh", + "pomegranate seeds", + "cucumber", + "lime juice", + "salt", + "ground cumin", + "sugar", + "garbanzo beans", + "onions" + ] + }, + { + "id": 39636, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh rosemary", + "ground red pepper", + "fresh lemon juice", + "ground black pepper", + "lemon", + "chopped garlic", + "dried thyme", + "butter", + "large shrimp", + "hot pepper sauce", + "worcestershire sauce" + ] + }, + { + "id": 7516, + "cuisine": "italian", + "ingredients": [ + "pepper", + "red wine vinegar", + "croutons", + "parmesan cheese", + "garlic cloves", + "dijon mustard", + "hearts of romaine", + "olive oil", + "anchovy fillets", + "lemon juice" + ] + }, + { + "id": 24527, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "coarse salt", + "large eggs", + "onions", + "russet potatoes" + ] + }, + { + "id": 15499, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cornflour", + "ajinomoto", + "chicken stock", + "spring onions", + "chili sauce", + "chicken", + "egg noodles", + "salt", + "beansprouts", + "tomato sauce", + "mixed vegetables", + "oil" + ] + }, + { + "id": 940, + "cuisine": "italian", + "ingredients": [ + "green bell pepper, slice", + "oil", + "pinenuts", + "cooked chicken", + "onions", + "barbecue sauce", + "red bell pepper", + "pizza crust", + "shredded mozzarella cheese", + "dried oregano" + ] + }, + { + "id": 10283, + "cuisine": "indian", + "ingredients": [ + "Thai red curry paste", + "butternut squash", + "onions", + "haricots verts", + "coconut cream", + "sunflower oil", + "naan" + ] + }, + { + "id": 33642, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "parmesan cheese", + "butter", + "fat free milk", + "polenta" + ] + }, + { + "id": 1959, + "cuisine": "mexican", + "ingredients": [ + "hot pepper sauce", + "salt", + "pepper", + "worcestershire sauce", + "black beans", + "boneless chicken breast halves", + "jumbo pasta shells", + "corn kernels", + "tomatoes with juice" + ] + }, + { + "id": 49515, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "olive oil", + "chicken breasts", + "long-grain rice", + "water", + "ground red pepper", + "yellow bell pepper", + "medium shrimp", + "fat free less sodium chicken broth", + "finely chopped onion", + "diced tomatoes", + "red bell pepper", + "green bell pepper", + "dried thyme", + "turkey kielbasa", + "hot sauce", + "fresh parsley" + ] + }, + { + "id": 37460, + "cuisine": "italian", + "ingredients": [ + "fennel", + "linguine", + "fresh lemon juice", + "olive oil", + "kalamata", + "garlic cloves", + "fennel bulb", + "crushed red pepper", + "medium shrimp", + "asiago", + "grated lemon zest", + "plum tomatoes" + ] + }, + { + "id": 12631, + "cuisine": "southern_us", + "ingredients": [ + "all-purpose flour", + "buttermilk", + "large eggs", + "self-rising cornmeal", + "bacon" + ] + }, + { + "id": 28192, + "cuisine": "indian", + "ingredients": [ + "water", + "garlic", + "mustard seeds", + "red cabbage", + "salt", + "ground turmeric", + "bay leaves", + "cumin seed", + "canola oil", + "coconut", + "curry", + "serrano chile" + ] + }, + { + "id": 13472, + "cuisine": "italian", + "ingredients": [ + "lime", + "salt", + "lemon", + "olive oil", + "large shrimp", + "black pepper", + "linguine" + ] + }, + { + "id": 38034, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "crushed red pepper", + "clams", + "chili powder", + "cream cheese", + "sun-dried tomatoes", + "salt", + "pepper", + "garlic", + "dried parsley" + ] + }, + { + "id": 2569, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "cream cheese", + "chives", + "quickcooking grits", + "ground white pepper", + "asiago" + ] + }, + { + "id": 41362, + "cuisine": "southern_us", + "ingredients": [ + "roast beef deli meat", + "sauce", + "cheese", + "deli rolls", + "bell pepper", + "onions", + "margarine" + ] + }, + { + "id": 48099, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "jalapeno chilies", + "garlic", + "lime", + "vegetable oil", + "allspice", + "cider vinegar", + "bay leaves", + "salt", + "sugar", + "dried thyme", + "cinnamon" + ] + }, + { + "id": 37136, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "zucchini", + "ground allspice", + "ground cayenne pepper", + "chicken broth", + "olive oil", + "yellow bell pepper", + "ground coriander", + "chopped fresh mint", + "ground ginger", + "orange", + "golden raisins", + "orange juice", + "couscous", + "ground cloves", + "low sodium garbanzo beans", + "purple onion", + "ground cardamom", + "ground cumin" + ] + }, + { + "id": 32183, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "red enchilada sauce", + "Old El Paso™ chopped green chiles", + "monterey jack", + "Pillsbury™ Refrigerated Crescent Dinner Rolls", + "ground beef", + "diced tomatoes", + "green chile", + "ground beef", + "diced tomatoes", + "refrigerated crescent rolls", + "monterey jack", + "avocado", + "red enchilada sauce" + ] + }, + { + "id": 40720, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "ground black pepper", + "garlic cloves", + "collard greens", + "apple cider vinegar", + "thick-cut bacon", + "sugar", + "hot sauce", + "kosher salt", + "yellow onion" + ] + }, + { + "id": 19093, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "all-purpose flour", + "eggs", + "baking powder", + "milk", + "shortening", + "salt" + ] + }, + { + "id": 4340, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "garam masala", + "salt", + "minced garlic", + "ginger", + "ghee", + "fenugreek leaves", + "heavy cream", + "bay leaf", + "water", + "urad dal", + "asafetida" + ] + }, + { + "id": 37911, + "cuisine": "mexican", + "ingredients": [ + "peeled shrimp", + "processed cheese", + "worcestershire sauce", + "mayonaise", + "crabmeat" + ] + }, + { + "id": 18858, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "purple onion", + "lime juice", + "jalapeno chilies", + "corn tortilla chips", + "roma tomatoes", + "fish", + "lime", + "cilantro" + ] + }, + { + "id": 45736, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chipotle peppers", + "light sour cream", + "low-fat cheddar", + "plum tomatoes", + "cooking spray", + "onions", + "egg substitute", + "green chilies", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 16682, + "cuisine": "greek", + "ingredients": [ + "sugar", + "chopped tomatoes", + "egg yolks", + "red wine", + "minced beef", + "milk", + "ground black pepper", + "vegetable oil", + "sea salt", + "bay leaf", + "nutmeg", + "olive oil", + "parmigiano reggiano cheese", + "cinnamon", + "garlic", + "tomato purée", + "eggplant", + "flour", + "butter", + "purple onion" + ] + }, + { + "id": 46570, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "onions", + "pasta", + "mozzarella cheese", + "tomato sauce", + "italian sausage", + "garlic cloves" + ] + }, + { + "id": 24488, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "tuna steaks", + "lemon juice", + "vegetable oil cooking spray", + "oliv pit ripe", + "feta cheese crumbles", + "pepper", + "bow-tie pasta", + "roasted red peppers", + "garlic cloves" + ] + }, + { + "id": 27660, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "green onions", + "salsa", + "ground cumin", + "refried beans", + "shredded lettuce", + "ground coriander", + "shredded cheddar cheese", + "chili powder", + "cream cheese", + "guacamole", + "pitted olives", + "sour cream" + ] + }, + { + "id": 16401, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "boneless skinless chicken breasts", + "preshred low fat mozzarella chees", + "large eggs", + "dry bread crumbs", + "parmesan cheese", + "salt", + "marinara sauce", + "fresh oregano" + ] + }, + { + "id": 11180, + "cuisine": "chinese", + "ingredients": [ + "chicken breasts", + "garlic", + "fresh ginger root", + "red pepper", + "noodles", + "honey", + "lemon", + "carrots", + "mushrooms", + "Flora Cuisine" + ] + }, + { + "id": 8534, + "cuisine": "chinese", + "ingredients": [ + "orange", + "duck", + "water", + "coarse sea salt", + "honey", + "chinese five-spice powder", + "black peppercorns", + "fresh ginger", + "mushroom soy sauce" + ] + }, + { + "id": 17834, + "cuisine": "southern_us", + "ingredients": [ + "fat free milk", + "salt", + "water", + "cooking spray", + "yellow corn meal", + "large eggs", + "grits", + "large egg whites", + "butter" + ] + }, + { + "id": 15030, + "cuisine": "indian", + "ingredients": [ + "coconut", + "green chilies", + "curry leaves", + "urad dal", + "mustard seeds", + "gram dal", + "oil", + "water", + "salt" + ] + }, + { + "id": 40571, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "diced tomatoes", + "black beans", + "chicken breasts", + "cumin", + "chicken stock", + "quinoa", + "crushed red pepper", + "corn", + "chili powder" + ] + }, + { + "id": 29427, + "cuisine": "french", + "ingredients": [ + "fresh brussels sprouts", + "bay leaves", + "boiling water", + "pearl onions", + "butter", + "pepper", + "roasted chestnuts", + "turkey broth", + "salt" + ] + }, + { + "id": 30870, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "water", + "cooking spray", + "whole wheat couscous", + "garlic cloves", + "chicken thighs", + "ground ginger", + "fat free less sodium chicken broth", + "ground nutmeg", + "chicken drumsticks", + "ground coriander", + "onions", + "slivered almonds", + "honey", + "golden raisins", + "crushed red pepper", + "carrots", + "ground turmeric", + "black pepper", + "olive oil", + "chicken breast halves", + "salt", + "fresh parsley", + "ground cumin" + ] + }, + { + "id": 9770, + "cuisine": "french", + "ingredients": [ + "water", + "red wine vinegar", + "chopped onion", + "ground black pepper", + "lemon", + "garlic cloves", + "romaine lettuce", + "cooking spray", + "salt", + "tomatoes", + "cod fillets", + "extra-virgin olive oil" + ] + }, + { + "id": 27099, + "cuisine": "french", + "ingredients": [ + "yellow corn meal", + "sea salt", + "water", + "dry yeast", + "warm water", + "all-purpose flour" + ] + }, + { + "id": 39124, + "cuisine": "southern_us", + "ingredients": [ + "lemon wedge", + "vegetable oil cooking spray", + "creole seasoning", + "low-fat buttermilk", + "catfish fillets", + "cornflake cereal" + ] + }, + { + "id": 19272, + "cuisine": "indian", + "ingredients": [ + "chicken broth", + "cilantro", + "salt", + "curry powder", + "garlic", + "carrots", + "chicken breasts", + "chopped celery", + "ghee", + "tomatoes", + "ginger", + "coconut cream" + ] + }, + { + "id": 35799, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "smoked sausage", + "fresh parsley leaves", + "green onions", + "yellow onion", + "long grain white rice", + "ground black pepper", + "salt", + "ham", + "water", + "Tabasco Pepper Sauce", + "garlic cloves" + ] + }, + { + "id": 45737, + "cuisine": "vietnamese", + "ingredients": [ + "green cabbage", + "serrano peppers", + "garlic", + "brown sugar", + "rice noodles", + "rice vinegar", + "fish sauce", + "boneless skinless chicken breasts", + "cilantro leaves", + "lime juice", + "vegetable oil", + "carrots" + ] + }, + { + "id": 13404, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "purple onion", + "hothouse cucumber", + "chili", + "fresh lime juice", + "sugar", + "garlic cloves", + "salted roast peanuts", + "chopped fresh mint" + ] + }, + { + "id": 45515, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "hand", + "crushed red pepper flakes", + "chopped parsley", + "garlic bread", + "red wine", + "yellow onion", + "chuck", + "olive oil", + "grated parmesan cheese", + "garlic", + "bay leaf", + "pinenuts", + "ground black pepper", + "raisins", + "juice" + ] + }, + { + "id": 44687, + "cuisine": "southern_us", + "ingredients": [ + "cream style corn", + "salt", + "corn kernel whole", + "crawfish", + "butter", + "creole seasoning", + "pepper sauce", + "green onions", + "all-purpose flour", + "condensed cream of potato soup", + "milk", + "worcestershire sauce", + "onions" + ] + }, + { + "id": 39969, + "cuisine": "mexican", + "ingredients": [ + "spinach", + "olive oil", + "potatoes", + "salt", + "celery", + "shredded Monterey Jack cheese", + "avocado", + "water", + "zucchini", + "epazote", + "red bell pepper", + "dried oregano", + "tomato paste", + "dried basil", + "whole peeled tomatoes", + "garlic", + "corn tortillas", + "chicken", + "green bell pepper", + "ground black pepper", + "bay leaves", + "carrots", + "onions", + "ground cumin" + ] + }, + { + "id": 4751, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "button mushrooms", + "firm tofu", + "baby spinach", + "garlic", + "corn starch", + "dark soy sauce", + "chili oil", + "salt", + "fermented black beans", + "vegetable oil", + "vegetable broth", + "scallions" + ] + }, + { + "id": 22071, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "large eggs", + "corn starch", + "sugar", + "garlic powder", + "apple cider vinegar", + "kosher salt", + "boneless skinless chicken breasts", + "soy sauce", + "ground black pepper", + "vegetable oil" + ] + }, + { + "id": 8132, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "brown sugar", + "garlic", + "tomatoes", + "chile pepper", + "corn starch", + "green bell pepper", + "cilantro", + "onions", + "tomato paste", + "water", + "salt" + ] + }, + { + "id": 6264, + "cuisine": "italian", + "ingredients": [ + "sugar", + "parmesan cheese", + "butter", + "soft fresh goat cheese", + "eggs", + "large egg yolks", + "chopped fresh thyme", + "garlic cloves", + "fresh green peas", + "olive oil", + "ground black pepper", + "all-purpose flour", + "water", + "mascarpone", + "salt", + "heavy whipping cream" + ] + }, + { + "id": 43181, + "cuisine": "mexican", + "ingredients": [ + "olives", + "pita rounds", + "coarse salt" + ] + }, + { + "id": 38941, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "baking powder", + "chinese five-spice powder", + "eggs", + "water", + "all-purpose flour", + "white pepper", + "salt", + "chicken legs", + "garlic powder", + "peanut oil" + ] + }, + { + "id": 13000, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "garam masala", + "onions", + "water", + "green chilies", + "chopped cilantro fresh", + "coriander seeds", + "cumin seed", + "ground turmeric", + "minced garlic", + "ginger", + "chicken thighs" + ] + }, + { + "id": 19382, + "cuisine": "thai", + "ingredients": [ + "quinoa", + "english cucumber", + "chopped cilantro", + "sugar", + "crushed red pepper flakes", + "carrots", + "mint", + "vegetable oil", + "scallions", + "asian fish sauce", + "lime juice", + "salt", + "red bell pepper" + ] + }, + { + "id": 19057, + "cuisine": "vietnamese", + "ingredients": [ + "rice stick noodles", + "star anise", + "rib eye steaks", + "green onions", + "fresh mint", + "serrano chilies", + "cilantro leaves", + "beef", + "low salt chicken broth" + ] + }, + { + "id": 35590, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "eggs", + "espresso", + "lady fingers", + "sugar", + "cocoa powder" + ] + }, + { + "id": 19682, + "cuisine": "chinese", + "ingredients": [ + "white onion", + "peas", + "stock", + "fresh ginger", + "celery", + "pepper", + "carrots", + "soy sauce", + "shiitake", + "bamboo shoots" + ] + }, + { + "id": 38842, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "olive oil", + "garlic cloves", + "celery ribs", + "kale", + "cannellini beans", + "fresh rosemary", + "whole peeled tomatoes", + "carrots", + "pancetta", + "bread crumbs", + "grated parmesan cheese", + "onions" + ] + }, + { + "id": 41059, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "chopped cilantro fresh", + "black pepper", + "purple onion", + "fresh lime juice", + "green bell pepper", + "jalapeno chilies", + "grouper", + "plum tomatoes", + "lime rind", + "cooking spray", + "red bell pepper" + ] + }, + { + "id": 31963, + "cuisine": "indian", + "ingredients": [ + "fresh lemon juice", + "salt", + "serrano chile", + "cilantro leaves", + "vegetable oil", + "fresh mint" + ] + }, + { + "id": 13455, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "cheddar cheese", + "enchilada sauce", + "seasoning", + "salt", + "boneless chicken breast" + ] + }, + { + "id": 27841, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "radishes", + "seasoned rice wine vinegar", + "garlic cloves", + "snow peas", + "salad", + "fresh ginger", + "red cabbage", + "english cucumber", + "red bell pepper", + "dressing", + "fresh cilantro", + "Sriracha", + "peanut butter", + "carrots", + "dried mango", + "peanuts", + "sesame oil", + "scallions", + "fresh mint" + ] + }, + { + "id": 43378, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil", + "shrimp", + "eggs", + "salt", + "fresh parsley", + "tomatoes", + "buttermilk", + "cornmeal", + "pepper", + "all-purpose flour" + ] + }, + { + "id": 1717, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "fresh ginger root", + "black mustard seeds", + "ground cumin", + "liquid aminos", + "bay leaves", + "basmati rice", + "asafoetida", + "mung beans", + "chopped cilantro fresh", + "water", + "fenugreek seeds", + "ground turmeric" + ] + }, + { + "id": 40708, + "cuisine": "korean", + "ingredients": [ + "fish sauce", + "ground black pepper", + "wonton wrappers", + "garlic", + "dumplings", + "ground lamb", + "minced garlic", + "rice cakes", + "lamb shoulder chops", + "firm tofu", + "onions", + "eggs", + "water", + "green onions", + "ground pork", + "seaweed", + "broth", + "pepper", + "radishes", + "lemon", + "salt", + "mung bean sprouts" + ] + }, + { + "id": 35202, + "cuisine": "brazilian", + "ingredients": [ + "minced garlic", + "salt", + "quick cooking brown rice", + "chopped bacon", + "canned black beans", + "low sodium chicken broth", + "ground cumin", + "olive oil", + "chopped onion" + ] + }, + { + "id": 36413, + "cuisine": "filipino", + "ingredients": [ + "quail eggs", + "salt", + "sugar", + "frozen meatballs", + "corn starch", + "water", + "oil", + "soy sauce", + "refrigerated biscuits" + ] + }, + { + "id": 28944, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "mustard greens", + "salt", + "onions", + "turnips", + "pepper", + "crushed red pepper", + "diced celery", + "turnip greens", + "bacon slices", + "garlic cloves", + "chicken broth", + "potatoes", + "purple onion", + "carrots" + ] + }, + { + "id": 42126, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "eggplant", + "milk", + "rotelle", + "seasoned bread crumbs", + "grated parmesan cheese", + "olive oil", + "shredded mozzarella cheese" + ] + }, + { + "id": 2320, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "boneless skinless chicken breasts", + "purple onion", + "scallions", + "tomato sauce", + "fresh ginger", + "red wine vinegar", + "rice vinegar", + "sugar", + "sweet & sour stir fry sauce", + "pineapple", + "pineapple juice", + "minced garlic", + "vegetable oil", + "salt" + ] + }, + { + "id": 3071, + "cuisine": "italian", + "ingredients": [ + "semolina flour", + "salt", + "active dry yeast", + "white sugar", + "warm water", + "all-purpose flour", + "olive oil" + ] + }, + { + "id": 18521, + "cuisine": "italian", + "ingredients": [ + "semolina flour", + "italian seasoning", + "garlic powder", + "eggs", + "salt", + "olive oil" + ] + }, + { + "id": 10333, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "olive oil", + "fresh parsley", + "sugar", + "chopped onion", + "tomatoes", + "salt", + "black pepper", + "okra pods" + ] + }, + { + "id": 26460, + "cuisine": "french", + "ingredients": [ + "salmon fillets", + "shallots", + "ground white pepper", + "tomatoes", + "leeks", + "salt", + "olive oil", + "butter", + "chervil", + "dry white wine", + "crème fraîche" + ] + }, + { + "id": 2798, + "cuisine": "southern_us", + "ingredients": [ + "Praline Liqueur", + "dark rum", + "mashed banana", + "lemon juice", + "light brown sugar", + "bananas", + "cinnamon", + "salt", + "butter pecan cake mix", + "water", + "vegetable oil", + "vanilla extract", + "powdered sugar", + "large eggs", + "butter", + "dark brown sugar" + ] + }, + { + "id": 40833, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "ground black pepper", + "parsley", + "salt", + "thyme", + "olive oil", + "yoghurt", + "garlic", + "yellow onion", + "white mushrooms", + "baking soda", + "baking powder", + "leek tops", + "carrots", + "chicken thighs", + "white wine", + "bay leaves", + "butter", + "all-purpose flour", + "cinnamon sticks" + ] + }, + { + "id": 45987, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "ground black pepper", + "cooking wine", + "light soy sauce", + "broccoli florets", + "oyster sauce", + "minced ginger", + "cooking oil", + "yellow onion", + "garlic powder", + "flank steak", + "corn starch" + ] + }, + { + "id": 19107, + "cuisine": "korean", + "ingredients": [ + "red chili peppers", + "shrimp paste", + "pears", + "red chili powder", + "radishes", + "garlic", + "fresh ginger", + "napa cabbage", + "sugar", + "green onions", + "salt" + ] + }, + { + "id": 28535, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "dijon mustard", + "onions", + "fresh coriander", + "garlic", + "black pepper", + "green onions", + "boneless skinless chicken breast halves", + "mild curry powder", + "fresh ginger", + "coconut milk" + ] + }, + { + "id": 42376, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "chicken broth", + "cilantro", + "onions", + "tomato paste", + "butter", + "rice", + "lime juice", + "garlic", + "cumin" + ] + }, + { + "id": 37103, + "cuisine": "cajun_creole", + "ingredients": [ + "lump crab meat", + "finely chopped onion", + "chopped celery", + "chopped parsley", + "cayenne", + "vegetable oil", + "all-purpose flour", + "oysters", + "file powder", + "salt", + "medium shrimp", + "chopped green bell pepper", + "fish stock", + "scallions" + ] + }, + { + "id": 3656, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "salt", + "sun-dried tomatoes", + "butter", + "squid", + "ricotta cheese", + "dry bread crumbs", + "sesame seeds", + "garlic", + "dried oregano" + ] + }, + { + "id": 49003, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "salt", + "soy sauce", + "mirin", + "boneless chicken thighs", + "enokitake", + "eggs", + "shiitake", + "shrimp" + ] + }, + { + "id": 26987, + "cuisine": "chinese", + "ingredients": [ + "garlic oil", + "spring onions", + "cilantro leaves", + "caster sugar", + "vinegar", + "wonton wrappers", + "minced pork", + "dark soy sauce", + "light soy sauce", + "sesame oil", + "shao hsing wine", + "pepper", + "water chestnuts", + "salt", + "coriander" + ] + }, + { + "id": 42705, + "cuisine": "greek", + "ingredients": [ + "fresh lemon", + "cayenne pepper", + "eggplant", + "extra-virgin olive oil", + "fresh parsley", + "paprika", + "garlic cloves", + "tahini", + "salt", + "cumin" + ] + }, + { + "id": 25358, + "cuisine": "italian", + "ingredients": [ + "butter", + "sweet italian sausage", + "arborio rice", + "extra-virgin olive oil", + "saffron", + "crushed red pepper flakes", + "chopped parsley", + "grated parmesan cheese", + "purple onion" + ] + }, + { + "id": 33873, + "cuisine": "greek", + "ingredients": [ + "plain low-fat yogurt", + "chopped fresh mint", + "salt", + "cucumber", + "white pepper" + ] + }, + { + "id": 42179, + "cuisine": "moroccan", + "ingredients": [ + "chicken breast halves", + "all-purpose flour", + "cinnamon sticks", + "almonds", + "extra-virgin olive oil", + "low salt chicken broth", + "ground ginger", + "shallots", + "cayenne pepper", + "chopped cilantro fresh", + "tumeric", + "dates", + "fresh lemon juice", + "ground cumin" + ] + }, + { + "id": 11712, + "cuisine": "vietnamese", + "ingredients": [ + "celery leaves", + "palm sugar", + "large garlic cloves", + "cilantro leaves", + "fresh lime juice", + "green cabbage", + "lemongrass", + "green onions", + "salted roast peanuts", + "fresh lemon juice", + "chopped cilantro fresh", + "kaffir lime leaves", + "olive oil", + "daikon", + "thai chile", + "coarse kosher salt", + "plum tomatoes", + "fish sauce", + "yardlong beans", + "grated carrot", + "persian cucumber", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 39208, + "cuisine": "cajun_creole", + "ingredients": [ + "plain flour", + "evaporated milk", + "shortening", + "yeast", + "eggs", + "salt", + "sugar" + ] + }, + { + "id": 7580, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "salt", + "pepper", + "diced tomatoes", + "large shrimp", + "sugar", + "olive oil", + "frozen corn", + "diced onions", + "lime juice", + "garlic" + ] + }, + { + "id": 13776, + "cuisine": "italian", + "ingredients": [ + "gelatin", + "sugar", + "heavy cream", + "fruit" + ] + }, + { + "id": 33334, + "cuisine": "southern_us", + "ingredients": [ + "hot sauce", + "whipped cream cheese", + "mullet" + ] + }, + { + "id": 20358, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "water", + "sugar", + "ground allspice", + "ground cinnamon", + "lemon", + "ground cloves", + "beets" + ] + }, + { + "id": 23078, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "white cornmeal", + "buttermilk", + "butter", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 12452, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "salt", + "seasoning", + "prosciutto", + "boneless skinless chicken breast halves", + "sage leaves", + "olive oil", + "all-purpose flour", + "marsala wine", + "ground black pepper" + ] + }, + { + "id": 18853, + "cuisine": "italian", + "ingredients": [ + "eggs", + "small curd cottage cheese", + "grated parmesan cheese", + "salt", + "dried oregano", + "crushed tomatoes", + "minced onion", + "ground pork", + "fresh parsley", + "tomato sauce", + "ground black pepper", + "lean ground beef", + "shredded mozzarella cheese", + "dried basil", + "lasagna noodles", + "garlic", + "white sugar" + ] + }, + { + "id": 32572, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "ground red pepper", + "fresh lemon juice", + "ground cumin", + "oil cured olives", + "quinoa", + "fresh orange juice", + "flat leaf parsley", + "water", + "large garlic cloves", + "red bell pepper", + "fat free less sodium chicken broth", + "pistachios", + "extra-virgin olive oil", + "chopped cilantro fresh" + ] + }, + { + "id": 17425, + "cuisine": "greek", + "ingredients": [ + "sugar", + "purple onion", + "romaine lettuce", + "extra-virgin olive oil", + "olives", + "beefsteak tomatoes", + "cucumber", + "radicchio", + "fresh lemon juice" + ] + }, + { + "id": 10651, + "cuisine": "french", + "ingredients": [ + "swiss cheese", + "bread slices", + "celery ribs", + "beef broth", + "butter", + "onions", + "bay leaves", + "low salt chicken broth" + ] + }, + { + "id": 40904, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "diced tomatoes", + "capers", + "large garlic cloves", + "onions", + "fresh basil", + "red wine vinegar", + "juice", + "eggplant", + "toasted pine nuts" + ] + }, + { + "id": 8898, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "vegetable oil cooking spray", + "ground coriander", + "salmon fillets", + "coarse salt", + "low-fat plain yogurt", + "ground black pepper", + "tumeric", + "cayenne pepper" + ] + }, + { + "id": 9165, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "bean paste", + "ginger", + "scallions", + "sesame seeds", + "sesame oil", + "chile bean paste", + "soy sauce", + "szechwan peppercorns", + "salted roast peanuts", + "onions", + "peanuts", + "rabbit", + "peanut oil" + ] + }, + { + "id": 34302, + "cuisine": "italian", + "ingredients": [ + "romaine lettuce", + "fresh parmesan cheese", + "worcestershire sauce", + "fresh lemon juice", + "water", + "large eggs", + "garlic cloves", + "olive oil", + "red wine vinegar", + "croutons", + "pepper", + "dijon mustard", + "anchovy paste" + ] + }, + { + "id": 5013, + "cuisine": "greek", + "ingredients": [ + "pasta", + "chopped green bell pepper", + "olive oil flavored cooking spray", + "fillet red snapper", + "garlic cloves", + "pitted kalamata olives", + "purple onion", + "dried oregano", + "ground black pepper", + "lemon juice" + ] + }, + { + "id": 18698, + "cuisine": "mexican", + "ingredients": [ + "stock", + "lime", + "salt", + "ancho chile pepper", + "chili pepper", + "pork ribs", + "tortilla chips", + "dried oregano", + "lettuce", + "fresh cilantro", + "chili powder", + "sour cream", + "pork", + "radishes", + "sweet corn", + "onions" + ] + }, + { + "id": 18474, + "cuisine": "mexican", + "ingredients": [ + "slivered almonds", + "ground black pepper", + "vegetable oil", + "all-purpose flour", + "tomatoes", + "chipotle chile", + "baking powder", + "raisins", + "lard", + "warm water", + "boneless country pork ribs", + "large garlic cloves", + "masa dough", + "ground cinnamon", + "white onion", + "apple cider vinegar", + "salt", + "masa harina" + ] + }, + { + "id": 30494, + "cuisine": "thai", + "ingredients": [ + "tumeric", + "lemongrass", + "ground nutmeg", + "cinnamon", + "ground coriander", + "garlic cloves", + "curry paste", + "lime rind", + "ground pepper", + "sweet potatoes", + "maple syrup", + "oil", + "coconut milk", + "soy sauce", + "lime", + "extra firm tofu", + "fresh green bean", + "scallions", + "red bell pepper", + "cumin", + "ground cloves", + "fresh ginger root", + "shallots", + "roasted peanuts", + "cardamom", + "dried red chile peppers" + ] + }, + { + "id": 15567, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "carrots", + "onions", + "garlic", + "celery", + "fryer chickens", + "dumplings", + "dried parsley", + "chicken broth", + "salt", + "bay leaf" + ] + }, + { + "id": 32256, + "cuisine": "cajun_creole", + "ingredients": [ + "white wine", + "parsley", + "garlic", + "thyme", + "kale", + "cinnamon", + "creole seasoning", + "celery", + "bell pepper", + "butter", + "oil", + "onions", + "andouille sausage", + "sweet potatoes", + "heavy cream", + "shrimp" + ] + }, + { + "id": 3983, + "cuisine": "vietnamese", + "ingredients": [ + "minced garlic", + "beef", + "canola oil", + "fish sauce", + "light soy sauce", + "thai chile", + "chile paste", + "red pepper flakes", + "kosher salt", + "honey", + "scallions" + ] + }, + { + "id": 2819, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "zucchini", + "green onions", + "olive oil", + "Swanson Vegetable Broth", + "arborio rice", + "asparagus", + "mushrooms", + "pepper", + "grated parmesan cheese", + "baby carrots" + ] + }, + { + "id": 1980, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "dark sesame oil", + "salt", + "sugar pea", + "toasted sesame seeds", + "sugar", + "rice vinegar" + ] + }, + { + "id": 7058, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "whole wheat tortillas", + "garlic", + "dark sesame oil", + "beansprouts", + "Sriracha", + "crushed red pepper flakes", + "salt", + "cucumber", + "water", + "cilantro", + "purple onion", + "beef rib short", + "low sodium soy sauce", + "vegetable oil", + "ginger", + "rice vinegar", + "greek yogurt" + ] + }, + { + "id": 14579, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "baby spinach", + "olive oil", + "yellow onion", + "kosher salt", + "clove garlic, fine chop", + "sausage casings", + "grated parmesan cheese", + "gnocchi" + ] + }, + { + "id": 37523, + "cuisine": "filipino", + "ingredients": [ + "eggplant", + "onions", + "eggs", + "salt", + "tomatoes", + "garlic", + "pepper", + "oil" + ] + }, + { + "id": 8333, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "marinara sauce", + "garlic cloves", + "part-skim mozzarella cheese", + "salt", + "pepper", + "extra-virgin olive oil", + "rigatoni", + "italian sausage", + "parmesan cheese", + "yellow onion" + ] + }, + { + "id": 8804, + "cuisine": "italian", + "ingredients": [ + "sugar", + "salt", + "fresh rosemary", + "dry yeast", + "warm water", + "all-purpose flour", + "olive oil" + ] + }, + { + "id": 8706, + "cuisine": "mexican", + "ingredients": [ + "fresh spinach", + "corn tortillas", + "salsa", + "light sour cream", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 47582, + "cuisine": "brazilian", + "ingredients": [ + "sea salt", + "marjoram leaves", + "red pepper flakes", + "cilantro leaves", + "steak", + "olive oil", + "cracked black pepper", + "red bell pepper", + "Italian parsley leaves", + "garlic cloves", + "champagne vinegar" + ] + }, + { + "id": 26375, + "cuisine": "southern_us", + "ingredients": [ + "country ham", + "baking soda", + "salt", + "warm water", + "baking powder", + "mustard", + "active dry yeast", + "buttermilk", + "sugar", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 34986, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "cayenne pepper", + "onions", + "Johnsonville Andouille", + "bay leaves", + "celery", + "light red kidney beans", + "garlic", + "cooked white rice", + "olive oil", + "green pepper" + ] + }, + { + "id": 41349, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vanilla extract", + "eggs", + "flour", + "peanut butter", + "ground cinnamon", + "baking soda", + "salted peanuts", + "firmly packed brown sugar", + "butter", + "confectioners sugar" + ] + }, + { + "id": 13239, + "cuisine": "greek", + "ingredients": [ + "fresh spinach", + "eggs", + "water", + "grated parmesan cheese", + "butter", + "feta cheese crumbles", + "semolina flour", + "salt and ground black pepper", + "parsley", + "dill", + "olive oil", + "green onions", + "all-purpose flour", + "spearmint", + "milk", + "leeks", + "salt", + "white sugar" + ] + }, + { + "id": 20375, + "cuisine": "mexican", + "ingredients": [ + "honey", + "chees fresco queso", + "ground cumin", + "radishes", + "pumpkin seeds", + "olive oil", + "white wine vinegar", + "butter lettuce", + "jicama", + "chopped cilantro fresh" + ] + }, + { + "id": 25397, + "cuisine": "japanese", + "ingredients": [ + "yellow squash", + "chopped garlic", + "salmon", + "scallions", + "soy sauce", + "salt", + "pepper", + "nori" + ] + }, + { + "id": 36161, + "cuisine": "indian", + "ingredients": [ + "chicken broth", + "yellow squash", + "paprika", + "cayenne pepper", + "fresh parsley", + "ground ginger", + "black pepper", + "zucchini", + "canned tomatoes", + "red bell pepper", + "chopped fresh mint", + "turnips", + "ground cinnamon", + "olive oil", + "garlic", + "lemon juice", + "onions", + "caraway seeds", + "honey", + "cornish game hens", + "salt", + "chopped cilantro", + "ground cumin" + ] + }, + { + "id": 31721, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "bok choy", + "soy sauce", + "salt", + "butter", + "water", + "oyster sauce" + ] + }, + { + "id": 141, + "cuisine": "mexican", + "ingredients": [ + "salt", + "shortening", + "boiling water", + "all-purpose flour", + "whole wheat bread flour" + ] + }, + { + "id": 12464, + "cuisine": "british", + "ingredients": [ + "baking soda", + "dates", + "all-purpose flour", + "brown sugar", + "baking powder", + "vanilla extract", + "eggs", + "dark rum", + "heavy cream", + "ground allspice", + "water", + "butter", + "salt" + ] + }, + { + "id": 26785, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "cayenne pepper", + "butter", + "salad dressing", + "garlic powder", + "lemon pepper", + "catfish fillets", + "salt" + ] + }, + { + "id": 14751, + "cuisine": "greek", + "ingredients": [ + "sage leaves", + "dried fig", + "prosciutto", + "feta cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 40997, + "cuisine": "irish", + "ingredients": [ + "sugar", + "vegetable oil", + "all-purpose flour", + "carrots", + "ground black pepper", + "beef stew meat", + "beer", + "bay leaf", + "water", + "baking potatoes", + "beef broth", + "thyme sprigs", + "turnips", + "leeks", + "salt", + "fresh lemon juice", + "fresh parsley" + ] + }, + { + "id": 10585, + "cuisine": "mexican", + "ingredients": [ + "salt", + "water", + "potato flakes", + "all-purpose flour", + "olive oil" + ] + }, + { + "id": 7743, + "cuisine": "thai", + "ingredients": [ + "water", + "coconut cream", + "superfine sugar", + "corn kernels", + "tapioca flour", + "salt" + ] + }, + { + "id": 27013, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "vinegar", + "chopped onion", + "black pepper", + "spring onions", + "pork shoulder", + "pineapple chunks", + "water", + "salt", + "soy sauce", + "bay leaves", + "garlic cloves" + ] + }, + { + "id": 42181, + "cuisine": "chinese", + "ingredients": [ + "spring roll skins", + "basil leaves", + "garlic", + "fish sauce", + "finely chopped onion", + "chives", + "oil", + "cooked rice", + "soy sauce", + "green onions", + "salt", + "sugar", + "serrano peppers", + "pineapple rings", + "medium shrimp" + ] + }, + { + "id": 42568, + "cuisine": "thai", + "ingredients": [ + "pepper", + "shredded carrots", + "light coconut milk", + "canola oil", + "peanuts", + "green onions", + "garlic cloves", + "sweet onion", + "shredded cabbage", + "salt", + "sweet chili sauce", + "flour tortillas", + "boneless skinless chicken breasts", + "chopped cilantro fresh" + ] + }, + { + "id": 47938, + "cuisine": "greek", + "ingredients": [ + "pita bread", + "coarse salt", + "hothouse cucumber", + "plain yogurt", + "fresh lemon juice", + "olive oil", + "sour cream", + "fresh dill", + "garlic cloves" + ] + }, + { + "id": 43930, + "cuisine": "mexican", + "ingredients": [ + "melted butter", + "milk", + "baking powder", + "brown sugar", + "whole wheat flour", + "salt", + "eggs", + "lime", + "cinnamon", + "shredded coconut", + "flour" + ] + }, + { + "id": 11572, + "cuisine": "mexican", + "ingredients": [ + "reduced fat shredded cheese", + "guacamole", + "taco seasoning", + "nonfat greek yogurt", + "sea salt", + "chicken", + "flour tortillas", + "salsa", + "lime", + "green onions", + "chopped cilantro" + ] + }, + { + "id": 238, + "cuisine": "italian", + "ingredients": [ + "boneless skinless chicken breast halves", + "basil pesto sauce", + "prosciutto" + ] + }, + { + "id": 41846, + "cuisine": "cajun_creole", + "ingredients": [ + "large egg yolks", + "green onions", + "cilantro sprigs", + "fresh lemon juice", + "mayonaise", + "ground black pepper", + "grapeseed oil", + "dill tips", + "fresh cilantro", + "dijon mustard", + "fresh tarragon", + "mixed greens", + "fresh dill", + "panko", + "butter", + "crabmeat", + "grated lemon peel" + ] + }, + { + "id": 11713, + "cuisine": "thai", + "ingredients": [ + "chili flakes", + "bread crumbs", + "salt", + "chopped cilantro", + "brown sugar", + "green onions", + "peanut butter", + "fish sauce", + "pepper", + "red curry paste", + "eggs", + "ground chicken", + "sesame oil", + "coconut milk" + ] + }, + { + "id": 24813, + "cuisine": "italian", + "ingredients": [ + "baking powder", + "salt", + "milk", + "butter", + "lemon juice", + "eggs", + "ricotta cheese", + "all-purpose flour", + "lemon zest", + "vanilla extract", + "white sugar" + ] + }, + { + "id": 8964, + "cuisine": "italian", + "ingredients": [ + "eggs", + "polenta", + "prosciutto", + "pesto sauce", + "white vinegar", + "butter" + ] + }, + { + "id": 13047, + "cuisine": "greek", + "ingredients": [ + "pita bread rounds", + "sour cream", + "allspice", + "lemon pepper", + "boneless skinless chicken breast halves", + "garlic", + "onions", + "plain yogurt", + "cucumber", + "dried oregano" + ] + }, + { + "id": 33742, + "cuisine": "thai", + "ingredients": [ + "light brown sugar", + "thai basil", + "red bell pepper", + "curry paste", + "sugar pea", + "shallots", + "lime leaves", + "soy sauce", + "extra firm tofu", + "coconut milk", + "kosher salt", + "vegetable oil", + "fresh lime juice" + ] + }, + { + "id": 12778, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "salt", + "romano cheese", + "butter", + "dried parsley", + "milk", + "garlic", + "boneless skinless chicken breast halves", + "condensed cream of chicken soup", + "ground black pepper", + "bow-tie pasta" + ] + }, + { + "id": 34213, + "cuisine": "spanish", + "ingredients": [ + "bay leaves", + "garlic", + "onions", + "octopuses", + "parsley", + "salt", + "pimenton", + "almonds", + "fish stock", + "rice", + "italian tomatoes", + "dry white wine", + "sweet pepper", + "saffron" + ] + }, + { + "id": 41421, + "cuisine": "italian", + "ingredients": [ + "burrata", + "diced tomatoes", + "garlic cloves", + "fettucine", + "cooking spray", + "crushed red pepper", + "ground black pepper", + "extra-virgin olive oil", + "grape tomatoes", + "baby spinach", + "salt" + ] + }, + { + "id": 39407, + "cuisine": "greek", + "ingredients": [ + "grape tomatoes", + "coarse salt", + "fresh parsley", + "ground pepper", + "fresh chevre", + "olive oil", + "red wine vinegar", + "shallots", + "bulgur" + ] + }, + { + "id": 4505, + "cuisine": "chinese", + "ingredients": [ + "homemade chicken broth", + "large eggs", + "white pepper", + "corn starch", + "tomatoes", + "salt", + "water" + ] + }, + { + "id": 49465, + "cuisine": "moroccan", + "ingredients": [ + "lamb seasoning", + "spices", + "lamb shoulder", + "prunes", + "water", + "ginger", + "onions", + "pepper", + "sea salt", + "carrots", + "fresh rosemary", + "dried apricot", + "garlic" + ] + }, + { + "id": 33866, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "sofrito", + "eggs", + "onions", + "ground beef", + "empanada wrappers", + "adobo seasoning" + ] + }, + { + "id": 17495, + "cuisine": "chinese", + "ingredients": [ + "chicken bouillon", + "wonton wrappers", + "shrimp", + "fish sauce", + "water", + "leg quarters", + "yellow chives", + "pork", + "sesame oil", + "ham", + "stock", + "white pepper", + "salt", + "corn starch" + ] + }, + { + "id": 41397, + "cuisine": "french", + "ingredients": [ + "pepper", + "butter", + "ground nutmeg", + "all-purpose flour", + "milk", + "salt", + "shallots", + "garlic cloves" + ] + }, + { + "id": 22775, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "butter", + "sliced mushrooms", + "cream", + "grated parmesan cheese", + "garlic", + "olive oil", + "linguine", + "fresh parsley", + "crawfish", + "green onions", + "salt" + ] + }, + { + "id": 45562, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "firmly packed brown sugar", + "vanilla extract", + "brandy", + "whipping cream" + ] + }, + { + "id": 1302, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "jicama", + "salt", + "red bell pepper", + "ground black pepper", + "crushed red pepper flakes", + "rice vinegar", + "olive oil", + "chili powder", + "cilantro leaves", + "fresh lime juice", + "red cabbage", + "purple onion", + "carrots" + ] + }, + { + "id": 20029, + "cuisine": "chinese", + "ingredients": [ + "honey", + "boneless skinless chicken breasts", + "broccoli", + "ketchup", + "sesame seeds", + "crushed red pepper flakes", + "cooked quinoa", + "soy sauce", + "fresh ginger", + "sesame oil", + "corn starch", + "water", + "hoisin sauce", + "garlic", + "onions" + ] + }, + { + "id": 46933, + "cuisine": "jamaican", + "ingredients": [ + "fresh ginger", + "vegetable oil", + "cornmeal", + "pepper", + "sweet potatoes", + "salt", + "flour", + "butter", + "fresh parsley", + "curry powder", + "boneless skinless chicken breasts", + "cayenne pepper" + ] + }, + { + "id": 3098, + "cuisine": "irish", + "ingredients": [ + "leeks", + "heavy cream", + "celery", + "salt and ground black pepper", + "vegetable stock", + "yellow onion", + "shredded cheddar cheese", + "green onions", + "garlic", + "potatoes", + "butter", + "baby carrots" + ] + }, + { + "id": 25954, + "cuisine": "southern_us", + "ingredients": [ + "large egg yolks", + "fresh lemon juice", + "salt", + "buttermilk", + "heavy whipping cream", + "sugar", + "crème fraîche" + ] + }, + { + "id": 24824, + "cuisine": "irish", + "ingredients": [ + "water", + "potato flakes", + "parsnips", + "leeks", + "onions", + "turnips", + "potatoes", + "carrots", + "pepper", + "salt" + ] + }, + { + "id": 40701, + "cuisine": "french", + "ingredients": [ + "beef stock", + "red wine", + "onions", + "ground black pepper", + "parsley", + "cognac", + "mushrooms", + "bouquet garni", + "glace de viande", + "slab bacon", + "shallots", + "salt", + "chicken" + ] + }, + { + "id": 34787, + "cuisine": "thai", + "ingredients": [ + "pepper", + "zucchini", + "salt", + "bok choy", + "olive oil", + "crushed red pepper flakes", + "cilantro leaves", + "onions", + "shiitake", + "ginger", + "red bell pepper", + "thai basil", + "garlic", + "coconut milk" + ] + }, + { + "id": 4313, + "cuisine": "southern_us", + "ingredients": [ + "ground cloves", + "granulated sugar", + "cake flour", + "ground cinnamon", + "crystallized ginger", + "glazed pecans", + "dark brown sugar", + "ground ginger", + "molasses", + "large eggs", + "salt", + "pecans", + "unsalted butter", + "heavy cream", + "unsweetened cocoa powder" + ] + }, + { + "id": 38939, + "cuisine": "italian", + "ingredients": [ + "garlic", + "vinaigrette dressing", + "dried oregano", + "white sugar", + "dried basil" + ] + }, + { + "id": 17344, + "cuisine": "italian", + "ingredients": [ + "sugar", + "coarse salt", + "fresh rosemary", + "freshly grated parmesan", + "warm water", + "all-purpose flour", + "table salt", + "instant yeast" + ] + }, + { + "id": 13494, + "cuisine": "italian", + "ingredients": [ + "vidalia onion", + "dijon mustard", + "flank steak", + "linguine", + "olive oil", + "beef stock", + "portabello mushroom", + "white wine", + "italian style seasoning", + "asiago", + "garlic", + "tomatoes", + "salt and ground black pepper", + "dry white wine", + "worcestershire sauce" + ] + }, + { + "id": 41969, + "cuisine": "japanese", + "ingredients": [ + "miso paste", + "peeled fresh ginger", + "carrots", + "soy sauce", + "radishes", + "soba noodles", + "kosher salt", + "large eggs", + "scallions", + "ground black pepper", + "vegetable oil", + "fresh lime juice" + ] + }, + { + "id": 31600, + "cuisine": "irish", + "ingredients": [ + "tomatoes", + "pickled jalapenos", + "dijon mustard", + "butter", + "salt", + "brown sugar", + "Guinness Beer", + "flour", + "cilantro", + "sour cream", + "sausage casings", + "pepper", + "potatoes", + "worcestershire sauce", + "oil", + "avocado", + "cheddar cheese", + "cayenne", + "green onions", + "garlic", + "onions" + ] + }, + { + "id": 30190, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "beef tenderloin steaks", + "green peppercorns", + "cracked black pepper", + "brandy", + "whipping cream", + "butter" + ] + }, + { + "id": 10422, + "cuisine": "french", + "ingredients": [ + "frozen pastry puff sheets", + "sliced almonds", + "apricots", + "granulated sugar", + "confectioners sugar" + ] + }, + { + "id": 42422, + "cuisine": "italian", + "ingredients": [ + "peperoncini", + "extra-virgin olive oil", + "large shrimp", + "red pepper flakes", + "salt", + "dry white wine", + "garlic", + "sea salt", + "flat leaf parsley" + ] + }, + { + "id": 28038, + "cuisine": "french", + "ingredients": [ + "Belgian endive", + "light mayonnaise", + "shrimp", + "prepared horseradish", + "purple onion", + "pickle relish", + "hot pepper sauce", + "lemon juice", + "fresh dill", + "lemon", + "chopped parsley" + ] + }, + { + "id": 6670, + "cuisine": "thai", + "ingredients": [ + "thai basil", + "salt", + "simple syrup", + "white rum", + "juice" + ] + }, + { + "id": 25014, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garbanzo beans", + "purple onion", + "chaat masala", + "water", + "agave nectar", + "roasted peanuts", + "pepper", + "corn husks", + "cilantro leaves", + "mango", + "lime", + "mint leaves", + "english cucumber" + ] + }, + { + "id": 36139, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "ground black pepper", + "bay leaves", + "cubed ham", + "onions", + "boneless chicken skinless thigh", + "bell pepper", + "red pepper", + "long-grain rice", + "andouille sausage", + "parsley leaves", + "basil leaves", + "beer", + "italian sausage", + "white pepper", + "seafood seasoning", + "garlic", + "thyme leaves" + ] + }, + { + "id": 26428, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "coarse salt", + "asparagus", + "scallions", + "olive oil", + "pizza doughs", + "black pepper", + "grated parmesan cheese" + ] + }, + { + "id": 18671, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "extra-virgin olive oil", + "feta cheese crumbles", + "whole wheat pita", + "chickpeas", + "fresh parsley", + "romaine lettuce", + "purple onion", + "cucumber", + "capers", + "diced tomatoes", + "fresh lemon juice", + "dried oregano" + ] + }, + { + "id": 26468, + "cuisine": "jamaican", + "ingredients": [ + "unsweetened coconut milk", + "fresh ginger", + "onions", + "pepper", + "ground black pepper", + "canola oil", + "kosher salt", + "kidney beans", + "long grain white rice", + "water", + "scallions" + ] + }, + { + "id": 6198, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "raisins", + "juice", + "penne", + "macaroni", + "salt", + "cheddar cheese", + "pepper", + "pineapple", + "carrots", + "mayonaise", + "chicken breasts", + "pineapple juice" + ] + }, + { + "id": 16590, + "cuisine": "italian", + "ingredients": [ + "sponge cake", + "white sugar", + "coffee ice cream", + "espresso beans", + "coffee liqueur", + "brewed espresso", + "water", + "ice cream" + ] + }, + { + "id": 49608, + "cuisine": "italian", + "ingredients": [ + "milk", + "vegetable oil", + "fontina cheese", + "unsalted butter", + "onions", + "pasta", + "freshly grated parmesan", + "all-purpose flour", + "tumeric", + "parsley leaves" + ] + }, + { + "id": 21523, + "cuisine": "italian", + "ingredients": [ + "condensed cream of chicken soup", + "grated parmesan cheese", + "boiling water", + "eggs", + "shredded cheddar cheese", + "fresh parsley", + "frozen chopped spinach", + "cottage cheese", + "sour cream", + "italian seasoning", + "manicotti shells", + "milk", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 19505, + "cuisine": "mexican", + "ingredients": [ + "corn tortilla chips", + "large eggs", + "chees fresh mozzarella", + "cherry tomatoes", + "baby spinach", + "onions", + "black pepper", + "leeks", + "salt", + "olive oil", + "lemon" + ] + }, + { + "id": 19614, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "purple onion", + "chopped cilantro fresh", + "large flour tortillas", + "sharp cheddar cheese", + "chili powder", + "frozen corn kernels", + "ground cumin", + "olive oil", + "large garlic cloves", + "chicken fingers" + ] + }, + { + "id": 27318, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "flour tortillas", + "sauce", + "ground cumin", + "fresh cilantro", + "non-fat sour cream", + "juice", + "tilapia fillets", + "cinnamon", + "garlic cloves", + "chipotle chile", + "olive oil", + "salt", + "greens" + ] + }, + { + "id": 17488, + "cuisine": "filipino", + "ingredients": [ + "shredded cheddar cheese", + "raisins", + "onions", + "boiled eggs", + "large eggs", + "salt", + "unseasoned breadcrumbs", + "ground black pepper", + "ground pork", + "sweet relish", + "hot dogs", + "carrots" + ] + }, + { + "id": 41647, + "cuisine": "mexican", + "ingredients": [ + "chili", + "lime wedges", + "sour cream", + "ancho", + "roma tomatoes", + "salt", + "corn tortillas", + "manchego cheese", + "garlic", + "salad oil", + "eggs", + "chicken breast halves", + "chopped onion", + "chopped cilantro fresh" + ] + }, + { + "id": 40373, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "crushed red pepper", + "kosher salt", + "buttermilk", + "corn starch", + "black pepper", + "flour", + "peanut oil", + "garlic powder", + "paprika", + "chicken" + ] + }, + { + "id": 3114, + "cuisine": "southern_us", + "ingredients": [ + "vanilla wafer crumbs", + "semi-sweet chocolate morsels", + "bourbon whiskey", + "confectioners sugar", + "light corn syrup", + "white sugar", + "chopped pecans" + ] + }, + { + "id": 45836, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "ground black pepper", + "garlic", + "onions", + "crushed tomatoes", + "worcestershire sauce", + "salt", + "olive oil", + "paprika", + "fresh parsley", + "water", + "cod fillets", + "dry pasta", + "chopped cilantro fresh" + ] + }, + { + "id": 6668, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "salsa", + "monterey jack", + "lime juice", + "diced tomatoes", + "sour cream", + "sliced black olives", + "prepared guacamole", + "refried beans", + "onion tops", + "chopped cilantro fresh" + ] + }, + { + "id": 33389, + "cuisine": "cajun_creole", + "ingredients": [ + "bottled clam juice", + "vegetable oil", + "cayenne pepper", + "fresh parsley", + "bay leaves", + "garlic", + "red bell pepper", + "bone in skin on chicken thigh", + "low sodium chicken broth", + "diced tomatoes", + "shrimp", + "onions", + "andouille sausage", + "fresh thyme leaves", + "salt", + "celery", + "long grain white rice" + ] + }, + { + "id": 34551, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "chicken thigh fillets", + "salt", + "onions", + "prawns", + "diced tomatoes", + "peanut oil", + "chiles", + "shrimp paste", + "ginger", + "coconut milk", + "lime", + "crushed garlic", + "cilantro leaves", + "cashew nuts" + ] + }, + { + "id": 18458, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "potatoes", + "oregano", + "olive oil", + "salt", + "pepper", + "basil", + "ginger paste", + "garam masala", + "cayenne pepper" + ] + }, + { + "id": 6659, + "cuisine": "jamaican", + "ingredients": [ + "kosher salt", + "olive oil", + "cinnamon", + "garlic cloves", + "lime juice", + "ground black pepper", + "yellow onion", + "low sodium soy sauce", + "dried thyme", + "green onions", + "ground coriander", + "pepper", + "ground nutmeg", + "chicken drumsticks", + "allspice" + ] + }, + { + "id": 48050, + "cuisine": "french", + "ingredients": [ + "butternut squash", + "dark brown sugar", + "bread", + "salt", + "olive oil", + "chopped fresh sage", + "shallots", + "ground white pepper" + ] + }, + { + "id": 12912, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "shallots", + "purple onion", + "cucumber", + "low sodium soy sauce", + "cooking spray", + "red wine vinegar", + "hot sauce", + "tomatoes", + "ground black pepper", + "balsamic vinegar", + "salt", + "fresh basil leaves", + "sourdough bread", + "flank steak", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 37940, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed light brown sugar", + "vanilla extract", + "butter", + "light corn syrup", + "pecan halves", + "whipping cream" + ] + }, + { + "id": 10636, + "cuisine": "french", + "ingredients": [ + "cocoa", + "baking powder", + "light corn syrup", + "semi-sweet chocolate morsels", + "powdered sugar", + "coffee", + "butter", + "cake flour", + "eggs", + "brewed coffee", + "instant coffee", + "vanilla", + "sugar", + "egg yolks", + "heavy cream", + "salt" + ] + }, + { + "id": 7903, + "cuisine": "chinese", + "ingredients": [ + "honey", + "boneless skinless chicken breasts", + "hot sauce", + "sweet chili sauce", + "ground black pepper", + "buttermilk", + "mayonaise", + "panko", + "vegetable oil", + "corn starch", + "kosher salt", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 27673, + "cuisine": "southern_us", + "ingredients": [ + "chicken breasts", + "cream of mushroom soup", + "black pepper", + "buttermilk", + "butter", + "seasoning salt", + "all-purpose flour" + ] + }, + { + "id": 44128, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "grated lemon zest", + "dried oregano", + "black peppercorns", + "coriander seeds", + "smoked paprika", + "olive oil", + "garlic cloves", + "yellow mustard seeds", + "crushed red pepper flakes", + "pork shoulder boston butt" + ] + }, + { + "id": 15079, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "rotelle", + "cream of chicken soup", + "shredded mozzarella cheese", + "tortillas", + "non-fat sour cream", + "chicken breasts", + "onions" + ] + }, + { + "id": 39353, + "cuisine": "filipino", + "ingredients": [ + "pasta sauce", + "cooking oil", + "salt", + "shredded cheddar cheese", + "ground pork", + "onions", + "pepper", + "hot dogs", + "beef broth", + "minced garlic", + "luncheon meat", + "noodles" + ] + }, + { + "id": 11518, + "cuisine": "irish", + "ingredients": [ + "vegetable oil", + "all-purpose flour", + "low sodium beef broth", + "large eggs", + "dry red wine", + "fresh mushrooms", + "onions", + "pepper", + "worcestershire sauce", + "dry bread crumbs", + "ground beef", + "prepared mustard", + "salt", + "garlic cloves" + ] + }, + { + "id": 2893, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "garlic powder", + "yellow onion", + "black pepper", + "italian style stewed tomatoes", + "cumin", + "collard greens", + "hominy", + "ham hock", + "water", + "red pepper flakes" + ] + }, + { + "id": 3663, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "white beans", + "chili powder", + "yellow onion", + "chicken broth", + "vegetable broth", + "cumin", + "pork", + "salt" + ] + }, + { + "id": 8256, + "cuisine": "mexican", + "ingredients": [ + "fresh lime", + "purple onion", + "jalapeno chilies", + "roma tomatoes", + "kosher salt", + "cilantro" + ] + }, + { + "id": 19486, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "salt", + "celery", + "green bell pepper", + "golden raisins", + "ham", + "Sriracha", + "rice vinegar", + "olive oil", + "parsley", + "carrots" + ] + }, + { + "id": 3654, + "cuisine": "irish", + "ingredients": [ + "kale", + "scallions", + "pepper", + "yukon gold potatoes", + "green cabbage", + "unsalted butter", + "milk", + "salt" + ] + }, + { + "id": 7491, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "salsa", + "ground beef", + "fresh cilantro", + "flour tortillas", + "Mexican cheese", + "sliced black olives", + "taco seasoning", + "sliced green onions", + "kidney beans", + "frozen corn", + "sour cream" + ] + }, + { + "id": 26592, + "cuisine": "mexican", + "ingredients": [ + "ground sirloin", + "salsa", + "shredded reduced fat cheddar cheese", + "reduced-fat sour cream", + "whole kernel corn, drain", + "brown rice", + "chopped onion", + "chopped green bell pepper", + "cracked black pepper", + "iceberg lettuce" + ] + }, + { + "id": 2764, + "cuisine": "brazilian", + "ingredients": [ + "mayonaise", + "lemon", + "red bell pepper", + "orange bell pepper", + "shrimp", + "dried oregano", + "plain yogurt", + "scallions", + "ground cayenne pepper", + "spices", + "ground white pepper", + "ground cumin" + ] + }, + { + "id": 13721, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "dried thyme", + "vegetable oil", + "ground coriander", + "bone in skin on chicken thigh", + "kosher salt", + "asadero", + "garlic", + "chipotles in adobo", + "ground cumin", + "store bought low sodium chicken stock", + "lime wedges", + "cilantro leaves", + "onions", + "curly kale", + "ground black pepper", + "russet potatoes", + "sour cream", + "plum tomatoes" + ] + }, + { + "id": 14717, + "cuisine": "southern_us", + "ingredients": [ + "red potato", + "coarse salt", + "crab boil", + "corn husks", + "lemon", + "shrimp", + "water", + "butter", + "beef sausage", + "hot pepper sauce", + "garlic", + "onions" + ] + }, + { + "id": 19719, + "cuisine": "indian", + "ingredients": [ + "pistachio nuts", + "evaporated milk", + "nonfat ricotta cheese", + "granulated sugar", + "saffron", + "green cardamom" + ] + }, + { + "id": 38672, + "cuisine": "indian", + "ingredients": [ + "chiles", + "extra firm tofu", + "paprika", + "cumin seed", + "basmati rice", + "fresh ginger", + "apple cider vinegar", + "paneer", + "chopped cilantro", + "ground cumin", + "coconut oil", + "full fat coconut milk", + "sea salt", + "ground coriander", + "onions", + "crushed tomatoes", + "green onions", + "garlic", + "mustard seeds", + "ground turmeric" + ] + }, + { + "id": 4722, + "cuisine": "southern_us", + "ingredients": [ + "cold water", + "water", + "tea bags", + "fresh mint", + "sugar", + "ice cubes", + "lemon juice" + ] + }, + { + "id": 20140, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "sugar", + "black tea leaves", + "soy sauce", + "star anise", + "water", + "salt" + ] + }, + { + "id": 41699, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "freshly ground pepper", + "quickcooking grits", + "chicken broth", + "salt", + "shredded extra sharp cheddar cheese" + ] + }, + { + "id": 35971, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "feta cheese crumbles", + "black pepper", + "ground red pepper", + "angel hair", + "chopped green bell pepper", + "medium shrimp", + "minced garlic", + "diced tomatoes" + ] + }, + { + "id": 39055, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "garlic", + "shrimp", + "chopped bell pepper", + "chopped onion", + "black pepper", + "salt", + "tomatoes", + "Tabasco Pepper Sauce", + "diced celery" + ] + }, + { + "id": 38429, + "cuisine": "mexican", + "ingredients": [ + "knorr chicken flavor bouillon cube", + "onions", + "garlic", + "chopped cilantro fresh", + "zucchini", + "boneless skinless chicken breast halves", + "sour cream" + ] + }, + { + "id": 4457, + "cuisine": "french", + "ingredients": [ + "coarse salt", + "bay leaf", + "clove", + "cornichons", + "white vinegar", + "fresh tarragon", + "peppercorns", + "pearl onions", + "garlic" + ] + }, + { + "id": 16631, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "olive oil", + "mustard greens", + "onions", + "corn mix muffin", + "dijon mustard", + "meat tenderizer", + "milk", + "cooking spray", + "biscuit mix", + "ham steak", + "Mexican cheese blend", + "roasted garlic" + ] + }, + { + "id": 42822, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "lemon juice", + "capers", + "dry white wine", + "all-purpose flour", + "turkey breast tenderloins", + "salt", + "flat leaf parsley", + "pepper", + "lemon wedge", + "garlic cloves" + ] + }, + { + "id": 46772, + "cuisine": "mexican", + "ingredients": [ + "tilapia fillets", + "cooking spray", + "low-fat yogurt", + "low sodium soy sauce", + "shredded coleslaw mix", + "salt", + "pepper", + "honey", + "dark sesame oil", + "lime juice", + "peeled fresh ginger", + "corn tortillas" + ] + }, + { + "id": 23807, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "chopped walnuts", + "french bread", + "candy", + "water", + "cinnamon sticks", + "brown sugar", + "raisins" + ] + }, + { + "id": 35365, + "cuisine": "french", + "ingredients": [ + "chopped tomatoes", + "salt", + "spinach", + "shredded swiss cheese", + "large eggs", + "pepper", + "butter" + ] + }, + { + "id": 9994, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "light soy sauce", + "sesame oil", + "oyster sauce", + "chicken stock", + "white pepper", + "yardlong beans", + "coarse salt", + "ground beef", + "warm water", + "ground black pepper", + "vegetable oil", + "corn starch", + "dark soy sauce", + "soy bean paste", + "soya bean", + "garlic", + "onions" + ] + }, + { + "id": 20359, + "cuisine": "moroccan", + "ingredients": [ + "preserved lemon", + "crushed red pepper flakes", + "cinnamon sticks", + "ground turmeric", + "kosher salt", + "extra-virgin olive oil", + "couscous", + "chicken", + "picholine olives", + "ginger", + "flat leaf parsley", + "saffron", + "chicken stock", + "ground black pepper", + "garlic cloves", + "onions", + "ground cumin" + ] + }, + { + "id": 18025, + "cuisine": "mexican", + "ingredients": [ + "sweet chili sauce", + "oil", + "canned jalapeno peppers", + "wonton wrappers", + "smoked paprika", + "light cream cheese" + ] + }, + { + "id": 16429, + "cuisine": "japanese", + "ingredients": [ + "pork", + "cooking oil", + "soba noodles", + "sake", + "dashi", + "ginger", + "toasted sesame seeds", + "light soy sauce", + "shallots", + "carrots", + "sugar", + "mirin", + "garlic", + "cabbage" + ] + }, + { + "id": 16883, + "cuisine": "mexican", + "ingredients": [ + "mozzarella cheese", + "parsley", + "rotisserie chicken", + "unsalted butter", + "salt", + "pepper", + "purple onion", + "sour cream", + "cheddar cheese", + "flour tortillas", + "salsa" + ] + }, + { + "id": 46590, + "cuisine": "french", + "ingredients": [ + "orange juice concentrate", + "garlic cloves", + "fresh chives", + "fresh parsley", + "salmon fillets", + "fresh lemon juice", + "nonfat yogurt", + "grated orange" + ] + }, + { + "id": 40057, + "cuisine": "southern_us", + "ingredients": [ + "brandy", + "garlic powder", + "worcestershire sauce", + "ground ginger", + "kosher salt", + "peaches", + "chopped onion", + "ground cloves", + "ground black pepper", + "tomato ketchup", + "brown sugar", + "cider vinegar", + "butter", + "ground cayenne pepper" + ] + }, + { + "id": 30064, + "cuisine": "russian", + "ingredients": [ + "frozen raspberries", + "sugar", + "cold water", + "corn starch", + "milk" + ] + }, + { + "id": 25120, + "cuisine": "southern_us", + "ingredients": [ + "cayenne", + "okra", + "salt", + "canola oil", + "buttermilk", + "cornmeal", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 33006, + "cuisine": "indian", + "ingredients": [ + "butter", + "curds", + "garlic paste", + "salt", + "maida flour", + "baking powder", + "cilantro leaves" + ] + }, + { + "id": 37036, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "garlic powder", + "salt", + "pepper", + "jalapeno chilies", + "yellow peppers", + "ground chipotle chile pepper", + "tortillas", + "pork shoulder", + "olive oil", + "onion powder", + "oregano" + ] + }, + { + "id": 14567, + "cuisine": "mexican", + "ingredients": [ + "hamburger buns", + "cider vinegar", + "large garlic cloves", + "cumin seed", + "plum tomatoes", + "clove", + "guajillo chiles", + "rib pork chops", + "cilantro leaves", + "ancho chile pepper", + "black peppercorns", + "white onion", + "vegetable oil", + "rolls", + "papalo", + "avocado", + "chipotle chile", + "string cheese", + "salt", + "cinnamon sticks", + "dried oregano" + ] + }, + { + "id": 11950, + "cuisine": "greek", + "ingredients": [ + "roasted red peppers", + "greek seasoning", + "garlic cloves", + "low-fat plain yogurt", + "feta cheese crumbles", + "fresh dill" + ] + }, + { + "id": 8309, + "cuisine": "british", + "ingredients": [ + "water", + "salt", + "cabbage", + "rutabaga", + "potatoes", + "fresh parsley", + "beef shank", + "carrots", + "pepper", + "leeks", + "onions" + ] + }, + { + "id": 23634, + "cuisine": "mexican", + "ingredients": [ + "fresh oregano leaves", + "salt", + "pepper", + "corn tortillas", + "white onion", + "salsa", + "olive oil", + "chicken" + ] + }, + { + "id": 45453, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "chopped green bell pepper", + "salt", + "shredded mozzarella cheese", + "italian seasoning", + "olive oil", + "tomatoes with juice", + "creole seasoning", + "white sugar", + "water", + "worcestershire sauce", + "cayenne pepper", + "fresh parsley", + "chuck", + "tomato sauce", + "garlic powder", + "chopped celery", + "chopped onion", + "dried oregano" + ] + }, + { + "id": 11228, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "olive oil", + "leeks", + "garlic", + "thyme", + "tomatoes", + "grated parmesan cheese", + "ground red pepper", + "elbow macaroni", + "fresh parsley", + "red kidney beans", + "zucchini", + "shredded cabbage", + "salt", + "celery", + "water", + "low sodium chicken broth", + "basil", + "carrots", + "oregano" + ] + }, + { + "id": 7944, + "cuisine": "mexican", + "ingredients": [ + "fresh lime juice", + "ice cubes", + "mango", + "liqueur", + "tequila" + ] + }, + { + "id": 3854, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "bean paste", + "oil", + "Shaoxing wine", + "garlic", + "pork belly", + "ginger", + "sugar", + "leeks", + "green pepper" + ] + }, + { + "id": 37482, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "flour", + "cilantro", + "oil", + "ground beef", + "eggs", + "corn", + "chili powder", + "salsa", + "sour cream", + "milk", + "baking powder", + "salt", + "enchilada sauce", + "cumin", + "sugar", + "diced green chilies", + "lime wedges", + "shredded cheese", + "cornmeal" + ] + }, + { + "id": 18654, + "cuisine": "mexican", + "ingredients": [ + "chopped cilantro fresh", + "green onions", + "cooked chicken breasts" + ] + }, + { + "id": 29201, + "cuisine": "moroccan", + "ingredients": [ + "wine", + "rack of lamb", + "coarse sea salt", + "honey", + "ras el hanout" + ] + }, + { + "id": 45980, + "cuisine": "indian", + "ingredients": [ + "shallots", + "cumin seed", + "curry leaves", + "salt", + "coriander", + "yoghurt", + "green chilies", + "mango", + "cold water", + "ginger", + "mustard seeds" + ] + }, + { + "id": 9348, + "cuisine": "chinese", + "ingredients": [ + "vinegar", + "chili oil", + "pork loin chops", + "soy sauce", + "large eggs", + "corn starch", + "bamboo shoots", + "cold water", + "extra firm tofu", + "scallions", + "toasted sesame oil", + "shiitake", + "low sodium chicken broth", + "ground white pepper" + ] + }, + { + "id": 38734, + "cuisine": "mexican", + "ingredients": [ + "shortening", + "salt", + "baking powder", + "water", + "all-purpose flour", + "vegetable oil" + ] + }, + { + "id": 42665, + "cuisine": "cajun_creole", + "ingredients": [ + "cooking oil", + "chopped celery", + "ground cumin", + "black-eyed peas", + "red pepper flakes", + "carrots", + "lean ground meat", + "ginger", + "mustard seeds", + "minced garlic", + "beef stock", + "rice" + ] + }, + { + "id": 42298, + "cuisine": "italian", + "ingredients": [ + "all-purpose flour", + "dough" + ] + }, + { + "id": 6228, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "Mexican oregano", + "ground cumin", + "grape tomatoes", + "sherry vinegar", + "fresh lime juice", + "white onion", + "garlic cloves", + "chipotle chile", + "pork tenderloin", + "chopped cilantro fresh" + ] + }, + { + "id": 13986, + "cuisine": "japanese", + "ingredients": [ + "sliced cucumber", + "green beans", + "eggs", + "salt", + "ikura", + "japanese rice", + "sliced carrots", + "cooked shrimp", + "sugar", + "rice vinegar", + "nori" + ] + }, + { + "id": 44746, + "cuisine": "british", + "ingredients": [ + "eggs", + "vanilla", + "bread", + "raisins", + "half & half", + "softened butter", + "sugar", + "salt" + ] + }, + { + "id": 48226, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "granulated sugar", + "Cointreau Liqueur", + "powdered sugar", + "strawberries" + ] + }, + { + "id": 36790, + "cuisine": "japanese", + "ingredients": [ + "white miso", + "cereal flakes", + "wasabi powder", + "canola oil", + "pecans", + "salt", + "agave nectar", + "nori" + ] + }, + { + "id": 26993, + "cuisine": "japanese", + "ingredients": [ + "lime", + "sesame oil", + "soba noodles", + "cremini mushrooms", + "fresh ginger", + "red pepper flakes", + "garlic cloves", + "wakame", + "flat leaf spinach", + "vegetable oil", + "scallions", + "soy sauce", + "shiitake", + "vegetable broth", + "chopped cilantro" + ] + }, + { + "id": 8571, + "cuisine": "mexican", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "grated parmesan cheese", + "brown rice", + "sliced mushrooms", + "olive oil", + "cooking spray", + "salt", + "dried oregano", + "low-fat sour cream", + "flour tortillas", + "chili powder", + "flat leaf parsley", + "diced onions", + "tomato juice", + "cooked chicken", + "enchilada sauce", + "ground cumin" + ] + }, + { + "id": 30982, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "coriander seeds", + "double cream", + "green cardamom", + "garlic cloves", + "tumeric", + "bay leaves", + "ginger", + "cumin seed", + "cashew nuts", + "fresh tomatoes", + "cassia cinnamon", + "turkey", + "green chilies", + "onions", + "clove", + "fresh coriander", + "chili powder", + "salt", + "oil" + ] + }, + { + "id": 24422, + "cuisine": "thai", + "ingredients": [ + "haricots verts", + "fresh cilantro", + "maifun", + "ground coriander", + "baby corn", + "pepper", + "ginger piece", + "paprika", + "garlic cloves", + "ground cumin", + "lemongrass", + "jalapeno chilies", + "salt", + "shrimp", + "soy sauce", + "lime", + "vegetable oil", + "scallions", + "coconut milk" + ] + }, + { + "id": 31791, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "salt", + "tomatoes", + "salmon steaks", + "cooking oil", + "onions", + "eggs", + "garlic" + ] + }, + { + "id": 24318, + "cuisine": "filipino", + "ingredients": [ + "water", + "crab", + "salt" + ] + }, + { + "id": 29608, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "large garlic cloves", + "red bell pepper", + "pepper", + "spanish chorizo", + "onions", + "canned chicken broth", + "salt", + "fresh parsley", + "olive oil", + "long-grain rice" + ] + }, + { + "id": 44684, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sirloin steak", + "corn flour", + "curly kale", + "sesame oil", + "purple onion", + "rice wine", + "garlic", + "chillies", + "black bean sauce", + "sunflower oil", + "ginger root" + ] + }, + { + "id": 35445, + "cuisine": "french", + "ingredients": [ + "broccoli", + "hard-boiled egg", + "grated parmesan cheese", + "dry bread crumbs", + "butter" + ] + }, + { + "id": 3881, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "ground pork", + "garlic cloves", + "cold water", + "leeks", + "peanut oil", + "fermented black beans", + "soft tofu", + "chili bean paste", + "corn starch", + "chicken stock", + "szechwan peppercorns", + "scallions", + "white sugar" + ] + }, + { + "id": 18306, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "large eggs", + "vegetable oil", + "freeze-dried strawberries", + "unsalted butter", + "cake", + "vanilla extract", + "strawberries", + "buttercream frosting", + "whole milk", + "heavy cream", + "all-purpose flour", + "buttermilk biscuits", + "granulated sugar", + "baking powder", + "salt" + ] + }, + { + "id": 19264, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "pepper", + "garlic", + "pork belly", + "vinegar", + "oil", + "chiles", + "water", + "salt", + "fish sauce", + "pork blood", + "ginger", + "onions" + ] + }, + { + "id": 53, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "paprika", + "ground red pepper", + "dried oregano", + "garlic powder", + "salt", + "black pepper", + "onion powder" + ] + }, + { + "id": 27761, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "vegetable oil", + "ground allspice", + "chicken wings", + "jalapeno chilies", + "salt", + "garlic cloves", + "soy sauce", + "Tabasco Pepper Sauce", + "grated nutmeg", + "onions", + "dried thyme", + "cinnamon", + "scallions" + ] + }, + { + "id": 26260, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "vegetable broth", + "fresh lime juice", + "vegetable oil spray", + "poblano chilies", + "garlic cloves", + "avocado", + "vegetable oil", + "cumin seed", + "chopped cilantro fresh", + "finely chopped onion", + "diced tomatoes", + "corn tortillas" + ] + }, + { + "id": 35106, + "cuisine": "indian", + "ingredients": [ + "poppy seeds", + "green chilies", + "onions", + "coriander powder", + "garlic", + "coconut milk", + "ground cumin", + "tomatoes", + "ginger", + "oil", + "ground turmeric", + "chili powder", + "cilantro leaves", + "chicken pieces" + ] + }, + { + "id": 22500, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "honey", + "fresh orange juice", + "cooked shrimp", + "corn kernels", + "roasted pumpkin seeds", + "scallions", + "cherry tomatoes", + "jicama", + "fresh lime juice", + "kosher salt", + "olive oil", + "frozen corn", + "ground cumin" + ] + }, + { + "id": 12985, + "cuisine": "mexican", + "ingredients": [ + "pasta", + "cherry tomatoes", + "red pepper", + "corn", + "garlic powder", + "salt", + "black beans", + "olive oil", + "cilantro", + "lime", + "Mexican oregano", + "green pepper" + ] + }, + { + "id": 33047, + "cuisine": "greek", + "ingredients": [ + "kalamata olive halves", + "cucumber", + "cherry tomatoes", + "lemon juice", + "kosher salt", + "dill", + "sour cream", + "orzo", + "feta cheese crumbles" + ] + }, + { + "id": 28102, + "cuisine": "mexican", + "ingredients": [ + "pickled jalapenos", + "ground black pepper", + "potatoes", + "beef broth", + "chopped cilantro fresh", + "lime", + "radishes", + "diced tomatoes", + "chayotes", + "water", + "beef shank", + "vegetable oil", + "carrots", + "cabbage", + "corn husks", + "finely chopped onion", + "salt", + "onions" + ] + }, + { + "id": 28859, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "vegetable oil", + "mirin", + "toasted sesame seeds", + "white miso", + "scallions", + "sake", + "chinese eggplants" + ] + }, + { + "id": 18916, + "cuisine": "french", + "ingredients": [ + "eggs", + "salt", + "semisweet chocolate", + "confectioners sugar", + "unsalted butter", + "all-purpose flour", + "cream of tartar", + "vanilla extract", + "white sugar" + ] + }, + { + "id": 16394, + "cuisine": "mexican", + "ingredients": [ + "cinnamon", + "sugar", + "apple pie filling", + "butter", + "tortillas" + ] + }, + { + "id": 40226, + "cuisine": "mexican", + "ingredients": [ + "whole cloves", + "salt", + "tequila", + "black peppercorns", + "lemon", + "cumin seed", + "white vinegar", + "achiote", + "orange juice", + "pepper", + "garlic", + "allspice berries" + ] + }, + { + "id": 42725, + "cuisine": "thai", + "ingredients": [ + "bean threads", + "sugar", + "vegetable oil", + "Asian sweet chili sauce", + "fresh basil leaves", + "chiles", + "cherry tomatoes", + "beansprouts", + "fresh lime juice", + "toasted peanuts", + "cooked chicken", + "fresh mint", + "medium shrimp", + "fish sauce", + "lime", + "cilantro leaves", + "sliced shallots", + "hothouse cucumber" + ] + }, + { + "id": 27697, + "cuisine": "italian", + "ingredients": [ + "eggs", + "mascarpone", + "marsala wine", + "sugar", + "unsweetened cocoa powder", + "ladyfingers", + "coffee" + ] + }, + { + "id": 33845, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "garlic cloves", + "rigatoni", + "green bell pepper", + "crushed red pepper", + "red bell pepper", + "olive oil", + "feta cheese crumbles", + "pitted kalamata olives", + "salt", + "onions" + ] + }, + { + "id": 13928, + "cuisine": "cajun_creole", + "ingredients": [ + "catfish fillets", + "roasted red peppers", + "garlic cloves", + "fresh parsley", + "olive oil", + "lettuce leaves", + "shrimp", + "tomatoes", + "jalapeno chilies", + "lemon juice", + "sliced green onions", + "creole mustard", + "french sandwich rolls", + "creole seasoning", + "reduced fat mayonnaise" + ] + }, + { + "id": 43565, + "cuisine": "mexican", + "ingredients": [ + "sweet potatoes", + "ground cumin", + "no-salt-added diced tomatoes", + "baby spinach", + "no-salt-added black beans", + "curry powder", + "corn tortillas" + ] + }, + { + "id": 22055, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "spring onions", + "Gochujang base", + "chili flakes", + "sesame seeds", + "vegetable oil", + "minced garlic", + "sesame oil", + "pork fillet", + "brown sugar", + "mirin", + "ginger" + ] + }, + { + "id": 16830, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "all-purpose flour", + "vegetable oil", + "cube steaks", + "milk", + "oil", + "black pepper", + "salt" + ] + }, + { + "id": 19450, + "cuisine": "korean", + "ingredients": [ + "minced ginger", + "sesame oil", + "tripe", + "minced garlic", + "cooking oil", + "all-purpose flour", + "kosher salt", + "roasted sesame seeds", + "kochujang", + "water", + "green onions", + "yellow onion" + ] + }, + { + "id": 3525, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "summer squash", + "red bell pepper", + "eggplant", + "low sodium chicken broth", + "penne pasta", + "salt and ground black pepper", + "Alfredo sauce", + "shredded mozzarella cheese", + "olive oil", + "grated parmesan cheese", + "dry bread crumbs", + "onions" + ] + }, + { + "id": 33331, + "cuisine": "italian", + "ingredients": [ + "broccoli rabe", + "crushed red pepper flakes", + "olive oil", + "whole wheat rotini pasta", + "garlic cloves", + "drippings", + "grated parmesan cheese", + "hot Italian sausages", + "salt and ground black pepper", + "diced tomatoes" + ] + }, + { + "id": 37211, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "spinach", + "gluten free all purpose flour", + "salt", + "water", + "oil" + ] + }, + { + "id": 14845, + "cuisine": "italian", + "ingredients": [ + "water", + "diced tomatoes", + "garlic cloves", + "fresh basil", + "cannellini beans", + "chopped onion", + "olive oil", + "crushed red pepper", + "orecchiette", + "parmesan cheese", + "broccoli" + ] + }, + { + "id": 20893, + "cuisine": "italian", + "ingredients": [ + "pepper", + "ricotta cheese", + "frozen chopped spinach", + "large eggs", + "pasta shells", + "ground nutmeg", + "turkey sausage", + "tomato sauce", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 38468, + "cuisine": "chinese", + "ingredients": [ + "pork", + "sesame oil", + "flour for dusting", + "black pepper", + "ginger", + "black vinegar", + "soy sauce", + "wonton wrappers", + "corn starch", + "garlic chives", + "mushroom powder", + "salt" + ] + }, + { + "id": 31510, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "vegetable oil", + "chicken thighs", + "soy sauce", + "green onions", + "salt", + "five-spice powder", + "sugar", + "peeled fresh ginger", + "dry sherry", + "chopped cilantro fresh", + "minced garlic", + "sesame oil", + "bean sauce" + ] + }, + { + "id": 33016, + "cuisine": "brazilian", + "ingredients": [ + "ground cinnamon", + "olive oil", + "beef", + "salt", + "capers", + "ground black pepper", + "garlic", + "onions", + "green olives", + "chopped tomatoes", + "bay leaves", + "green pepper", + "ground cloves", + "hot pepper sauce", + "white wine vinegar" + ] + }, + { + "id": 26216, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "cooked chicken", + "salt", + "dried oregano", + "chicken broth", + "zucchini", + "garlic", + "onions", + "roasted red peppers", + "crushed red pepper flakes", + "light cream cheese", + "olive oil", + "grated parmesan cheese", + "pasta shells", + "fresh basil leaves" + ] + }, + { + "id": 5803, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "panko", + "cheese tortellini", + "freshly grated parmesan", + "vegetable oil", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 27437, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "corn starch", + "dry white wine", + "plum tomatoes", + "egg whites", + "spaghettini", + "fresh basil", + "large garlic cloves", + "large shrimp" + ] + }, + { + "id": 23375, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "grated parmesan cheese", + "unsalted butter", + "chicken broth", + "dry white wine", + "finely chopped onion" + ] + }, + { + "id": 30262, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "yellow onion", + "butter cooking spray", + "french rolls", + "light mayonnaise", + "creole seasoning", + "tomatoes", + "shredded lettuce", + "large shrimp" + ] + }, + { + "id": 41223, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "pasta sauce", + "cheese sticks", + "melted butter", + "biscuit dough", + "garlic powder", + "italian seasoning" + ] + }, + { + "id": 9861, + "cuisine": "chinese", + "ingredients": [ + "cooking oil", + "cornflour", + "vanilla essence", + "egg yolks", + "confectioners sugar", + "powdered milk", + "all-purpose flour", + "milk", + "butter" + ] + }, + { + "id": 11525, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "hot sauce", + "chopped cilantro fresh", + "ketchup", + "salt", + "shrimp", + "lump crab meat", + "clamato juice", + "bottled clam juice", + "california avocado", + "fresh lime juice" + ] + }, + { + "id": 1003, + "cuisine": "moroccan", + "ingredients": [ + "finely chopped onion", + "ground cumin", + "paprika", + "minced garlic", + "ground pork", + "ground black pepper", + "salt" + ] + }, + { + "id": 45820, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "butter", + "paprika", + "corn flour", + "bananas", + "worcestershire sauce", + "salt", + "onions", + "olive oil", + "sirloin steak", + "garlic", + "chopped parsley", + "tomatoes", + "parsley", + "bacon", + "beef broth" + ] + }, + { + "id": 16275, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "fresh thyme leaves", + "white arborio rice", + "parmesan cheese", + "dry white wine", + "fresh mushrooms", + "leeks", + "salt", + "dried mushrooms", + "ground black pepper", + "shallots", + "liquid" + ] + }, + { + "id": 40767, + "cuisine": "southern_us", + "ingredients": [ + "active dry yeast", + "all-purpose flour", + "shortening", + "vegetable oil", + "white sugar", + "eggs", + "evaporated milk", + "confectioners sugar", + "warm water", + "salt" + ] + }, + { + "id": 1408, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "prepar salsa", + "chili beans", + "chopped tomatoes", + "sour cream", + "taco seasoning mix", + "tortilla chips", + "french dressing", + "lean ground beef", + "iceberg lettuce" + ] + }, + { + "id": 49080, + "cuisine": "indian", + "ingredients": [ + "grape tomatoes", + "grated parmesan cheese", + "dark brown sugar", + "olive oil", + "green onions", + "frozen peas", + "large eggs", + "salt", + "ground cumin", + "curry powder", + "peeled fresh ginger", + "garlic cloves" + ] + }, + { + "id": 47081, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "eggs", + "self-rising cornmeal", + "buttermilk", + "honey" + ] + }, + { + "id": 45539, + "cuisine": "spanish", + "ingredients": [ + "water", + "pineapple", + "fresh mint", + "sugar", + "egg yolks", + "ground allspice", + "honey", + "whipping cream", + "sour cream", + "unflavored gelatin", + "frozen pastry puff sheets", + "kiwi fruits", + "mango" + ] + }, + { + "id": 11843, + "cuisine": "jamaican", + "ingredients": [ + "chicken stock", + "frozen okra", + "cream of coconut", + "onions", + "fresh spinach", + "red pepper", + "shrimp", + "rosemary", + "garlic", + "thyme leaves", + "green bell pepper", + "lime slices", + "salt", + "marjoram" + ] + }, + { + "id": 39508, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "sesame oil", + "toasted sesame seeds", + "sugar", + "green onions", + "fresh lemon juice", + "walnut halves", + "asian pear", + "garlic cloves", + "soy sauce", + "rice wine", + "beef heart" + ] + }, + { + "id": 22482, + "cuisine": "russian", + "ingredients": [ + "water", + "white rice", + "onions", + "chicken breasts", + "cayenne pepper", + "ground black pepper", + "salt", + "ketchup", + "butter", + "carrots" + ] + }, + { + "id": 2285, + "cuisine": "thai", + "ingredients": [ + "sugar", + "mushrooms", + "roasted peanuts", + "carrots", + "lime", + "shallots", + "scallions", + "beansprouts", + "Sriracha", + "rice noodles", + "garlic cloves", + "asian fish sauce", + "frozen sweet peas", + "large eggs", + "vegetable oil", + "oyster sauce" + ] + }, + { + "id": 24452, + "cuisine": "irish", + "ingredients": [ + "smoked sausage", + "potatoes", + "yellow onion", + "water", + "salt", + "bacon" + ] + }, + { + "id": 16624, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "purple onion", + "ground coriander", + "ground turmeric", + "ground ginger", + "vegetable oil", + "brown rice flour", + "mustard seeds", + "whole wheat flour", + "rice vinegar", + "cumin seed", + "ground cumin", + "water", + "garlic", + "cayenne pepper", + "white sugar" + ] + }, + { + "id": 24551, + "cuisine": "italian", + "ingredients": [ + "leeks", + "garlic cloves", + "olive oil", + "butter", + "risotto rice", + "vegetable stock", + "chopped parsley", + "grated parmesan cheese", + "button mushrooms" + ] + }, + { + "id": 15456, + "cuisine": "french", + "ingredients": [ + "lemon curd", + "reduced fat milk", + "grated lemon zest", + "powdered sugar", + "granulated sugar", + "all-purpose flour", + "large egg whites", + "cooking spray", + "fresh lemon juice", + "cream of tartar", + "large egg yolks", + "salt" + ] + }, + { + "id": 21652, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "fresh cilantro", + "green onions", + "garlic cloves", + "white onion", + "dijon mustard", + "sea salt", + "canola oil", + "sugar", + "feta cheese", + "queso fresco", + "dried oregano", + "tomatoes", + "cider vinegar", + "jalapeno chilies", + "nopales" + ] + }, + { + "id": 6973, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "diced tomatoes", + "olive oil", + "minced garlic", + "penne pasta", + "bacon" + ] + }, + { + "id": 48478, + "cuisine": "indian", + "ingredients": [ + "granulated sugar", + "orange flower water", + "cinnamon sticks", + "raw pistachios", + "ground tumeric", + "ground cardamom", + "basmati rice", + "dried barberries", + "raisins", + "oil", + "raw almond", + "orange", + "salt", + "carrots", + "saffron" + ] + }, + { + "id": 18256, + "cuisine": "japanese", + "ingredients": [ + "white miso", + "Japanese turnips", + "mirin", + "unsalted butter", + "water" + ] + }, + { + "id": 32126, + "cuisine": "vietnamese", + "ingredients": [ + "pepper", + "garlic powder", + "crushed red pepper", + "fat", + "fish sauce", + "lime juice", + "cilantro", + "coconut aminos", + "coriander", + "water", + "cinnamon", + "salt", + "cucumber", + "pork", + "honey", + "ginger", + "spaghetti squash" + ] + }, + { + "id": 19226, + "cuisine": "southern_us", + "ingredients": [ + "lemon", + "ginger", + "pineapple", + "sweet potatoes" + ] + }, + { + "id": 30786, + "cuisine": "jamaican", + "ingredients": [ + "curry powder", + "potatoes", + "coconut milk", + "chicken broth", + "crystallized ginger", + "garlic cloves", + "lime", + "oil", + "onions", + "pepper sauce", + "boneless chicken breast", + "carrots" + ] + }, + { + "id": 6577, + "cuisine": "italian", + "ingredients": [ + "sugar", + "olive oil", + "shallots", + "water", + "cooking spray", + "salt", + "black pepper", + "fresh parmesan cheese", + "1% low-fat milk", + "cherry tomatoes", + "dry white wine", + "polenta" + ] + }, + { + "id": 31487, + "cuisine": "mexican", + "ingredients": [ + "mexican chocolate", + "unsalted butter", + "cream sweeten whip", + "large eggs" + ] + }, + { + "id": 31083, + "cuisine": "mexican", + "ingredients": [ + "cilantro", + "salsa", + "corn tortillas", + "chees fresco queso", + "freshly ground pepper", + "canola oil", + "eggs", + "salt", + "scallions", + "chiles", + "crème fraîche", + "poblano chiles" + ] + }, + { + "id": 23179, + "cuisine": "chinese", + "ingredients": [ + "double-dark soi sauc", + "chicken breasts", + "peanut oil", + "ground black pepper", + "sesame oil", + "onions", + "sugar", + "rice wine", + "garlic cloves", + "white rice vinegar", + "salt" + ] + }, + { + "id": 30172, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "extra large eggs", + "olive oil", + "green onions", + "phyllo pastry", + "fresh dill", + "unsalted butter", + "plain breadcrumbs", + "frozen chopped spinach", + "ground black pepper", + "salt" + ] + }, + { + "id": 13008, + "cuisine": "irish", + "ingredients": [ + "herbs", + "carrots", + "pepper", + "cider", + "diced onions", + "potatoes", + "pork sausages", + "lean bacon", + "garlic" + ] + }, + { + "id": 3701, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "coconut", + "peeled fresh ginger", + "vegetable broth", + "chopped cilantro fresh", + "green cardamom pods", + "baby spinach leaves", + "garam masala", + "large garlic cloves", + "carrots", + "ground cumin", + "kaffir lime leaves", + "golden brown sugar", + "russet potatoes", + "salt", + "serrano chile", + "tomato paste", + "sweet potatoes & yams", + "ground black pepper", + "sunflower oil", + "onions" + ] + }, + { + "id": 37634, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "salt", + "tomatoes", + "sherry vinegar", + "ground cumin", + "baguette", + "garlic cloves", + "green bell pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 32979, + "cuisine": "italian", + "ingredients": [ + "sugar", + "eggplant", + "flour", + "oregano", + "eggs", + "mozzarella cheese", + "parmesan cheese", + "basil", + "bread crumbs", + "garlic powder", + "red wine", + "tomato purée", + "olive oil", + "marinara sauce", + "salt" + ] + }, + { + "id": 10695, + "cuisine": "irish", + "ingredients": [ + "celery ribs", + "light mayonnaise", + "pecans", + "lemon juice", + "dried cherry", + "gala apples", + "spinach leaves", + "peanut butter" + ] + }, + { + "id": 26862, + "cuisine": "italian", + "ingredients": [ + "vegetable bouillon", + "garlic cloves", + "chicken broth", + "stewed tomatoes", + "water", + "cheese", + "frozen chopped spinach", + "parmesan cheese" + ] + }, + { + "id": 37441, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "corn husks", + "vegetable oil", + "garlic cloves", + "ancho chile pepper", + "masa", + "pork shoulder roast", + "bay leaves", + "salt", + "cinnamon sticks", + "broth", + "tomatoes", + "coriander seeds", + "baking powder", + "cumin seed", + "dried guajillo chiles", + "oregano", + "water", + "jalapeno chilies", + "vegetable shortening", + "carrots", + "onions" + ] + }, + { + "id": 23238, + "cuisine": "thai", + "ingredients": [ + "green onions", + "rice", + "fish sauce", + "cilantro", + "spearmint", + "shallots", + "chillies", + "lime", + "ground pork" + ] + }, + { + "id": 26811, + "cuisine": "mexican", + "ingredients": [ + "sea salt", + "cumin", + "diced green chilies", + "ground turkey", + "chili powder", + "onions", + "cilantro" + ] + }, + { + "id": 30188, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "salt", + "baking powder", + "orange zest", + "unsalted butter", + "all-purpose flour", + "demerara sugar", + "cinnamon" + ] + }, + { + "id": 31339, + "cuisine": "japanese", + "ingredients": [ + "cold water", + "salmon", + "bonito flakes", + "white wine vinegar", + "noodles", + "soy sauce", + "mirin", + "baby radishes", + "konbu", + "sugar", + "shiitake", + "ginger", + "scallions", + "eggs", + "dashi", + "leeks", + "soba noodles" + ] + }, + { + "id": 33187, + "cuisine": "brazilian", + "ingredients": [ + "green onions", + "salt", + "fresh parsley", + "ground black pepper", + "butter", + "cream cheese", + "bread crumbs", + "boneless skinless chicken breasts", + "all-purpose flour", + "onions", + "egg whites", + "beef stock cubes", + "garlic cloves" + ] + }, + { + "id": 4492, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "jalapeno chilies", + "garlic", + "fresh mint", + "lettuce", + "lime", + "vegetable oil", + "new york strip steaks", + "lemongrass", + "shallots", + "cilantro leaves", + "light brown sugar", + "cherry tomatoes", + "crushed red pepper flakes", + "rice" + ] + }, + { + "id": 33563, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "flat leaf parsley", + "salt", + "plum tomatoes", + "blanched almonds", + "garlic", + "spaghetti" + ] + }, + { + "id": 23125, + "cuisine": "french", + "ingredients": [ + "large eggs", + "bacon", + "freshly ground pepper", + "baguette", + "large garlic cloves", + "peanut oil", + "shallots", + "white wine vinegar", + "frisee", + "red wine vinegar", + "salt" + ] + }, + { + "id": 36102, + "cuisine": "southern_us", + "ingredients": [ + "unbaked pie crusts", + "rum", + "melted butter", + "ground nutmeg", + "white sugar", + "ground cinnamon", + "evaporated milk", + "salt", + "eggs", + "sweet potatoes" + ] + }, + { + "id": 46712, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "yellow bell pepper", + "red bell pepper", + "olive oil", + "salsa", + "cheddar cheese", + "purple onion", + "boneless skinless chicken breasts", + "taco seasoning" + ] + }, + { + "id": 8588, + "cuisine": "thai", + "ingredients": [ + "pepper", + "boneless skinless chicken breasts", + "chopped cilantro fresh", + "sugar pea", + "green onions", + "thai green curry paste", + "fresh basil", + "olive oil", + "salt", + "evaporated skim milk", + "coconut extract", + "fresh ginger", + "fatfree lowsodium chicken broth" + ] + }, + { + "id": 42276, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "jalapeno chilies", + "sweet paprika", + "fresh lime juice", + "halibut fillets", + "stewed tomatoes", + "shrimp", + "fresh cilantro", + "fish stock", + "garlic cloves", + "onions", + "green bell pepper", + "olive oil", + "salt", + "red bell pepper" + ] + }, + { + "id": 2541, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "sweet white miso", + "water", + "littleneck clams", + "dashi", + "red miso", + "soy sauce", + "green onions" + ] + }, + { + "id": 30975, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "vegetable oil", + "corn tortillas", + "tomatoes", + "garlic cloves", + "cooked chicken breasts", + "tomato paste", + "shredded sharp cheddar cheese", + "chopped cilantro fresh", + "diced onions", + "jalapeno chilies", + "low salt chicken broth", + "ground cumin" + ] + }, + { + "id": 8945, + "cuisine": "korean", + "ingredients": [ + "sesame oil", + "rice", + "kim chee", + "oil", + "beef", + "Gochujang base", + "toasted sesame seeds", + "bacon", + "scallions" + ] + }, + { + "id": 28862, + "cuisine": "chinese", + "ingredients": [ + "vinegar", + "vegetable oil", + "fresh ginger", + "szechwan peppercorns", + "toasted sesame seeds", + "chicken stock", + "rice wine", + "salt", + "pork spare ribs", + "sesame oil", + "browning" + ] + }, + { + "id": 6000, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "water", + "onions", + "green bell pepper", + "creole seasoning", + "red kidney beans", + "white rice", + "andouille sausage", + "garlic cloves" + ] + }, + { + "id": 33666, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "parmigiano reggiano cheese", + "fine sea salt", + "dough", + "ground black pepper", + "extra-virgin olive oil", + "water", + "whole milk ricotta cheese", + "garlic cloves", + "parmigiano-reggiano cheese", + "large eggs", + "grated lemon zest" + ] + }, + { + "id": 28457, + "cuisine": "filipino", + "ingredients": [ + "oil", + "plantains", + "garlic powder", + "salt" + ] + }, + { + "id": 30364, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "ground black pepper", + "salt", + "olive oil", + "Italian parsley leaves", + "eggs", + "dry white wine", + "spaghetti", + "parmesan cheese", + "garlic" + ] + }, + { + "id": 46909, + "cuisine": "mexican", + "ingredients": [ + "instant rice", + "zucchini", + "onions", + "water", + "taco seasoning", + "corn", + "ground turkey", + "shredded cheddar cheese", + "stewed tomatoes" + ] + }, + { + "id": 32337, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "flour tortillas (not low fat)", + "chunky salsa", + "canned black beans", + "chopped cilantro fresh", + "pepper jack", + "ground cumin" + ] + }, + { + "id": 14157, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "honey", + "boneless skinless chicken breasts", + "chopped onion", + "chipotles in adobo", + "kosher salt", + "ground black pepper", + "paprika", + "greek yogurt", + "oregano", + "black pepper", + "olive oil", + "parsley", + "garlic cloves", + "fresh parsley", + "lime", + "radishes", + "sweet corn", + "corn tortillas", + "ground cumin" + ] + }, + { + "id": 8421, + "cuisine": "mexican", + "ingredients": [ + "corn husks", + "liquid", + "vegetable shortening", + "masa harina", + "baking powder", + "carnitas", + "salt" + ] + }, + { + "id": 25851, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "avocado", + "purple onion", + "coarse salt", + "lime", + "cilantro leaves" + ] + }, + { + "id": 42562, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "cornmeal", + "water", + "salt", + "masa harina", + "butter", + "splenda no calorie sweetener", + "frozen whole kernel corn", + "heavy whipping cream" + ] + }, + { + "id": 42138, + "cuisine": "irish", + "ingredients": [ + "whipping cream", + "baking powder", + "all-purpose flour", + "sugar", + "salt", + "butter" + ] + }, + { + "id": 3643, + "cuisine": "mexican", + "ingredients": [ + "bread", + "red chili peppers", + "tomatoes", + "spring onions", + "avocado", + "beans", + "french dressing", + "tuna" + ] + }, + { + "id": 620, + "cuisine": "mexican", + "ingredients": [ + "lower sodium chicken broth", + "ground red pepper", + "chopped onion", + "ground cumin", + "jalapeno chilies", + "salt", + "shredded Monterey Jack cheese", + "olive oil", + "no-salt-added black beans", + "garlic cloves", + "tomatoes", + "cooking spray", + "spanish chorizo", + "sliced green onions" + ] + }, + { + "id": 44033, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lobster", + "salt", + "arborio rice", + "unsalted butter", + "meat", + "garlic cloves", + "fennel", + "leeks", + "cognac", + "white wine", + "lemon zest", + "lobster stock", + "fresh chervil" + ] + }, + { + "id": 25328, + "cuisine": "italian", + "ingredients": [ + "broccoli rabe", + "garlic cloves", + "romano cheese", + "extra-virgin olive oil", + "italian sausage", + "red pepper flakes", + "orecchiette", + "baking soda", + "salt" + ] + }, + { + "id": 22018, + "cuisine": "italian", + "ingredients": [ + "vanilla beans", + "heavy whipping cream", + "bittersweet chocolate chips", + "whole milk", + "sugar", + "large egg yolks", + "kosher salt", + "vegetable oil" + ] + }, + { + "id": 7945, + "cuisine": "french", + "ingredients": [ + "semisweet chocolate", + "salt", + "pure vanilla extract", + "whipped cream", + "and fat free half half", + "egg whites", + "chocolate curls", + "sugar", + "reduced-fat sour cream" + ] + }, + { + "id": 34721, + "cuisine": "chinese", + "ingredients": [ + "chicken breasts", + "cornflour", + "oil", + "brown sugar", + "pineapple", + "salt", + "coriander", + "tomato purée", + "red pepper", + "garlic", + "onions", + "soy sauce", + "ginger", + "rice" + ] + }, + { + "id": 19024, + "cuisine": "greek", + "ingredients": [ + "sugar", + "unsalted butter", + "fresh lemon juice", + "ground cinnamon", + "water", + "orange flower water", + "pitted date", + "almond extract", + "phyllo pastry", + "grated orange peel", + "honey", + "orange juice" + ] + }, + { + "id": 32622, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "green onions", + "ground beef", + "fresh ginger", + "crushed red pepper flakes", + "soy sauce", + "sesame oil", + "cooked rice", + "sesame seeds", + "garlic" + ] + }, + { + "id": 44305, + "cuisine": "vietnamese", + "ingredients": [ + "caster sugar", + "cracked black pepper", + "garlic cloves", + "cabbage", + "sugar", + "peanuts", + "cilantro leaves", + "fresh mint", + "lime juice", + "vietnamese fish sauce", + "carrots", + "red chili peppers", + "boneless skinless chicken breasts", + "rice vinegar", + "onions" + ] + }, + { + "id": 38123, + "cuisine": "russian", + "ingredients": [ + "milk", + "baking yeast", + "eggs", + "hard-boiled egg", + "plain flour", + "unsalted butter", + "cabbage", + "caster sugar", + "salt" + ] + }, + { + "id": 49121, + "cuisine": "japanese", + "ingredients": [ + "ajwain", + "baking powder", + "ground cumin", + "red chili powder", + "water", + "salt", + "black pepper", + "garlic", + "moong dal", + "flour", + "oil" + ] + }, + { + "id": 39676, + "cuisine": "italian", + "ingredients": [ + "porterhouse steaks", + "olive oil", + "salt" + ] + }, + { + "id": 41222, + "cuisine": "british", + "ingredients": [ + "meringue", + "strawberries", + "double cream", + "blueberries" + ] + }, + { + "id": 19219, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "butter", + "chopped fresh mint", + "plain dry bread crumb", + "fresh parsley", + "ground lamb", + "ground cinnamon", + "dry red wine", + "long grain white rice", + "grated parmesan cheese", + "onions" + ] + }, + { + "id": 47360, + "cuisine": "british", + "ingredients": [ + "eggs", + "baking powder", + "vanilla extract", + "ground cinnamon", + "pitted date", + "heavy cream", + "brown sugar", + "butter", + "salt", + "brandy", + "spiced rum", + "all-purpose flour" + ] + }, + { + "id": 36252, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "unsalted butter", + "ground black pepper", + "kosher salt", + "fresh lemon juice" + ] + }, + { + "id": 14190, + "cuisine": "indian", + "ingredients": [ + "yellow onion", + "ground black pepper", + "long grain white rice", + "olive oil", + "brown lentils", + "salt", + "ground cumin" + ] + }, + { + "id": 24460, + "cuisine": "moroccan", + "ingredients": [ + "mint", + "olive oil", + "fresh parsley", + "chicken broth", + "mixed spice", + "bell pepper", + "bread crumbs", + "zucchini", + "ground lamb", + "eggs", + "kosher salt", + "fregola" + ] + }, + { + "id": 26724, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "unsalted butter", + "vanilla extract", + "hazelnuts", + "frozen pastry puff sheets", + "semisweet chocolate", + "all-purpose flour" + ] + }, + { + "id": 35708, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "flour", + "batter", + "apples", + "rolled oats", + "chips", + "unsalted butter" + ] + }, + { + "id": 38349, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "lemon wedge", + "cayenne pepper", + "cumin", + "fresh cilantro", + "garlic", + "smoked paprika", + "tomato paste", + "fresh ginger", + "salt", + "chicken thighs", + "plain yogurt", + "vegetable oil", + "lemon juice" + ] + }, + { + "id": 16174, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "pot roast", + "pepperoncini", + "au jus mix", + "ranch dressing" + ] + }, + { + "id": 12400, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "unsalted butter", + "garlic cloves", + "cremini mushrooms", + "reduced sodium chicken broth", + "dry white wine", + "flat leaf parsley", + "arborio rice", + "black pepper", + "parmigiano reggiano cheese", + "hot water", + "soy sauce", + "olive oil", + "salt", + "onions" + ] + }, + { + "id": 12941, + "cuisine": "french", + "ingredients": [ + "sage leaves", + "boneless chuck roast", + "extra-virgin olive oil", + "sage", + "rosemary sprigs", + "bay leaves", + "thyme sprigs", + "warm water", + "sea salt", + "onions", + "dried plum", + "ground black pepper", + "baby carrots" + ] + }, + { + "id": 8719, + "cuisine": "italian", + "ingredients": [ + "lacinato kale", + "reduced sodium chicken stock", + "olive oil", + "chopped garlic", + "dry white wine", + "kosher salt", + "fresh lemon juice" + ] + }, + { + "id": 12662, + "cuisine": "spanish", + "ingredients": [ + "clove", + "red wine", + "club soda", + "honey", + "apples", + "peeled fresh ginger", + "cinnamon sticks", + "apple schnapps", + "navel oranges" + ] + }, + { + "id": 37565, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "ground nutmeg", + "ground allspice", + "sorghum molasses", + "salt", + "ground cloves", + "apples", + "white sugar", + "ground cinnamon", + "baking soda", + "all-purpose flour" + ] + }, + { + "id": 11826, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "Mexican cheese blend", + "lime wedges", + "black beans", + "crema mexican", + "corn tortillas", + "avocado", + "olive oil", + "cooking spray", + "black pepper", + "large eggs", + "cilantro leaves" + ] + }, + { + "id": 12220, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "garlic cloves", + "melted butter", + "green onions", + "fresh ginger", + "onions", + "brown sugar", + "chicken breasts" + ] + }, + { + "id": 27522, + "cuisine": "russian", + "ingredients": [ + "ground black pepper", + "purple onion", + "fresh lemon juice", + "beef", + "salt", + "bamboo shoots", + "bell pepper", + "dill", + "mild olive oil", + "bay leaves", + "garlic cloves" + ] + }, + { + "id": 1680, + "cuisine": "chinese", + "ingredients": [ + "shiitake", + "tamari soy sauce", + "chinese five-spice powder", + "frozen peas", + "chicken broth", + "vegetable oil", + "freshly ground pepper", + "pork loin chops", + "large eggs", + "salt", + "carrots", + "long grain white rice", + "fresh ginger", + "garlic", + "scallions", + "red bell pepper" + ] + }, + { + "id": 36280, + "cuisine": "spanish", + "ingredients": [ + "sea salt flakes", + "almonds", + "olive oil", + "smoked paprika" + ] + }, + { + "id": 41330, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "potatoes", + "vegetable stock", + "garlic", + "carrots", + "celery", + "turnips", + "pepper", + "harissa", + "diced tomatoes", + "cumin seed", + "ginger root", + "cumin", + "dried fruit", + "sweet potatoes", + "cinnamon", + "salt", + "cinnamon sticks", + "chopped cilantro", + "mint", + "sun-dried tomatoes", + "shallots", + "paprika", + "oil", + "chopped parsley", + "saffron" + ] + }, + { + "id": 25220, + "cuisine": "indian", + "ingredients": [ + "chile powder", + "cream", + "garam masala", + "cilantro", + "cayenne pepper", + "almond milk", + "boneless chicken skinless thigh", + "honey", + "paprika", + "yellow onion", + "lemon juice", + "cumin", + "tomatoes", + "minced ginger", + "cinnamon", + "salt", + "ground cardamom", + "ground turmeric", + "virgin olive oil", + "pepper", + "yoghurt", + "ginger", + "garlic cloves", + "coriander" + ] + }, + { + "id": 1731, + "cuisine": "filipino", + "ingredients": [ + "black peppercorns", + "garlic", + "bay leaves", + "soy sauce", + "bone in chicken thighs", + "cane vinegar" + ] + }, + { + "id": 47193, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "heavy whipping cream", + "light brown sugar", + "salt", + "buttermilk", + "self rising flour", + "butter flavor vegetable shortening" + ] + }, + { + "id": 47402, + "cuisine": "british", + "ingredients": [ + "brandy", + "large eggs", + "sea salt", + "light brown sugar", + "baking soda", + "whipped cream", + "all-purpose flour", + "pitted date", + "baking powder", + "vanilla extract", + "sugar", + "unsalted butter", + "heavy cream" + ] + }, + { + "id": 19633, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "flour tortillas", + "salt", + "lime juice", + "lime wedges", + "chopped cilantro fresh", + "minced garlic", + "green onions", + "shrimp", + "jack cheese", + "olive oil", + "tomato salsa" + ] + }, + { + "id": 20768, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "jack cheese", + "flour tortillas", + "shredded lettuce", + "sauce", + "sour cream", + "ground cumin", + "chile powder", + "green chile", + "refried beans", + "chili powder", + "salt", + "rotisserie chicken", + "chopped cilantro fresh", + "ground cinnamon", + "kosher salt", + "jalapeno chilies", + "garlic", + "rice", + "onions", + "chicken broth", + "sugar", + "unsalted butter", + "vegetable oil", + "yellow onion", + "garlic cloves", + "cumin" + ] + }, + { + "id": 9509, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "chicken breasts", + "saltines", + "ground red pepper", + "all-purpose flour", + "large eggs", + "salt", + "milk", + "baking powder", + "peanut oil" + ] + }, + { + "id": 15466, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "salt", + "cherry tomatoes", + "linguine", + "fresh parsley", + "fresh basil", + "red wine vinegar", + "garlic cloves", + "olive oil", + "crushed red pepper", + "fresh basil leaves" + ] + }, + { + "id": 3832, + "cuisine": "french", + "ingredients": [ + "olive oil", + "purple onion", + "fresh parsley", + "french bread", + "sherry wine", + "fresh thyme", + "salt", + "pepper", + "gruyere cheese", + "low sodium beef broth" + ] + }, + { + "id": 27921, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "chili powder", + "cilantro", + "rice", + "ground beef", + "Mexican cheese blend", + "diced tomatoes", + "salt", + "pinto beans", + "cumin", + "chicken broth", + "flour tortillas", + "paprika", + "frozen corn", + "sour cream", + "salsa verde", + "butter", + "garlic", + "enchilada sauce", + "onions" + ] + }, + { + "id": 38964, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "coconut oil", + "ginger", + "dried red chile peppers", + "curry leaves", + "shallots", + "mustard seeds", + "grated coconut", + "urad dal" + ] + }, + { + "id": 9948, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "dried parsley", + "pepper", + "salt", + "olive oil", + "tilapia", + "paprika" + ] + }, + { + "id": 291, + "cuisine": "italian", + "ingredients": [ + "grated romano cheese", + "boneless skinless chicken breast halves", + "fresh leav spinach", + "garlic", + "olive oil", + "penne pasta", + "pesto", + "alfredo sauce mix" + ] + }, + { + "id": 21461, + "cuisine": "indian", + "ingredients": [ + "salt", + "prawns", + "onions", + "coconut", + "ground cayenne pepper", + "vegetable oil", + "ground turmeric" + ] + }, + { + "id": 3713, + "cuisine": "french", + "ingredients": [ + "flour", + "sugar", + "butter", + "egg whites", + "baking chocolate", + "egg yolks" + ] + }, + { + "id": 39225, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "vodka", + "lemon peel", + "florets", + "scallions", + "toasted sesame seeds", + "sugar", + "fresh ginger", + "baking powder", + "all-purpose flour", + "corn starch", + "wine", + "kosher salt", + "extra firm tofu", + "garlic", + "lemon juice", + "store bought low sodium vegetable stock", + "soy sauce", + "black bean sauce", + "vegetable oil", + "broccoli", + "toasted sesame oil" + ] + }, + { + "id": 42129, + "cuisine": "indian", + "ingredients": [ + "daikon", + "cumin", + "chaat masala", + "lime juice" + ] + }, + { + "id": 47269, + "cuisine": "italian", + "ingredients": [ + "salt", + "red bell pepper", + "olive oil", + "garlic cloves", + "orecchiette", + "pitted kalamata olives", + "Italian turkey sausage", + "dried oregano", + "ground black pepper", + "feta cheese crumbles" + ] + }, + { + "id": 891, + "cuisine": "spanish", + "ingredients": [ + "dry red wine", + "ice", + "orange", + "Grand Marnier", + "club soda", + "peaches", + "orange juice", + "sugar", + "lemon slices", + "green apples" + ] + }, + { + "id": 29003, + "cuisine": "russian", + "ingredients": [ + "pepper", + "salt", + "eggs", + "russet potatoes", + "canned peas and carrots", + "dill pickles", + "white onion", + "low-fat mayonnaise" + ] + }, + { + "id": 49709, + "cuisine": "mexican", + "ingredients": [ + "shallots", + "salt", + "red", + "basil", + "tomato ketchup", + "pepper", + "vine tomatoes" + ] + }, + { + "id": 13969, + "cuisine": "spanish", + "ingredients": [ + "balsamic vinegar", + "foccacia", + "red bell pepper", + "capers", + "extra-virgin olive oil", + "mango chutney", + "chopped fresh mint" + ] + }, + { + "id": 39479, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "bow-tie pasta", + "chicken breast strips", + "garlic powder", + "fresh basil leaves", + "fat-free reduced-sodium chicken broth", + "Philadelphia Cream Cheese" + ] + }, + { + "id": 48941, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "vanilla extract", + "milk", + "lemon juice", + "caster sugar", + "cream cheese", + "cornflour" + ] + }, + { + "id": 33999, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "cardamom pods", + "onions", + "black peppercorns", + "cinnamon", + "dal", + "clove", + "plain yogurt", + "cumin seed", + "basmati rice", + "green chile", + "salt", + "ghee" + ] + }, + { + "id": 4422, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "peeled fresh ginger", + "fat free less sodium beef broth", + "cardamom pods", + "fresh basil leaves", + "rice stick noodles", + "baby bok choy", + "sirloin steak", + "thai chile", + "beansprouts", + "brown sugar", + "lime wedges", + "star anise", + "garlic cloves", + "snow peas", + "clove", + "water", + "less sodium soy sauce", + "yellow onion", + "fresh mint" + ] + }, + { + "id": 48455, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "butter", + "okra", + "chicken broth", + "bay leaves", + "salt", + "onions", + "black pepper", + "green onions", + "green pepper", + "chicken", + "cayenne", + "diced tomatoes", + "celery" + ] + }, + { + "id": 46199, + "cuisine": "vietnamese", + "ingredients": [ + "clove", + "white onion", + "fresh ginger", + "hoisin sauce", + "eye of round steak", + "dried rice noodles", + "beansprouts", + "fish sauce", + "lime", + "Sriracha", + "beef base", + "purple onion", + "cinnamon sticks", + "mint", + "water", + "yellow rock sugar", + "oxtails", + "star anise", + "Italian basil", + "fennel seeds", + "kosher salt", + "coriander seeds", + "jalapeno chilies", + "cilantro", + "cardamom pods", + "bird chile" + ] + }, + { + "id": 41798, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "purple onion", + "sliced mushrooms", + "chicken stock", + "ground black pepper", + "salt", + "low-fat mozzarella cheese", + "baby spinach leaves", + "grated parmesan cheese", + "penne pasta", + "minced garlic", + "red pepper flakes", + "Italian turkey sausage" + ] + }, + { + "id": 2211, + "cuisine": "japanese", + "ingredients": [ + "miso", + "mirin", + "soy sauce", + "blade steak", + "sesame oil" + ] + }, + { + "id": 7425, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "baking powder", + "long-grain rice", + "water", + "banana leaves", + "grated coconut", + "butter", + "eggs", + "evaporated milk", + "salt" + ] + }, + { + "id": 9496, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "bell pepper", + "garlic", + "onions", + "olive oil", + "red pepper flakes", + "cilantro leaves", + "cumin", + "black beans", + "chili powder", + "salt", + "oregano", + "cooked brown rice", + "roma tomatoes", + "paprika", + "frozen corn" + ] + }, + { + "id": 17758, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "cooking spray", + "salt", + "cooked chicken breasts", + "white bread", + "unsalted butter", + "dry sherry", + "cream cheese", + "ground black pepper", + "mushrooms", + "all-purpose flour", + "fat free less sodium chicken broth", + "finely chopped onion", + "chopped celery", + "cooked vermicelli" + ] + }, + { + "id": 41022, + "cuisine": "filipino", + "ingredients": [ + "cooking oil", + "green beans", + "chili", + "ground pork", + "onions", + "shrimp paste", + "coconut milk", + "ground black pepper", + "garlic" + ] + }, + { + "id": 24705, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "flank steak", + "fresh orange juice", + "purple onion", + "vermicelli noodles", + "fish sauce", + "mint leaves", + "cilantro", + "garlic", + "fresh lime juice", + "honey", + "diced tomatoes", + "ginger", + "dark sesame oil", + "serrano chile", + "low sodium soy sauce", + "enokitake", + "mint sprigs", + "cilantro sprigs", + "grapefruit" + ] + }, + { + "id": 39017, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "tomato purée", + "cumin seed", + "salt", + "ketchup", + "onions" + ] + }, + { + "id": 766, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "sweet and sour sauce", + "mung bean sprouts", + "spring roll wrappers", + "ground pork", + "garlic", + "frozen peas", + "water", + "grated carrot", + "sauce", + "cooking oil", + "dipping sauces", + "onions" + ] + }, + { + "id": 33592, + "cuisine": "korean", + "ingredients": [ + "coarse sea salt", + "rice vinegar", + "sesame seeds", + "ginger", + "Thai fish sauce", + "caster sugar", + "red pepper", + "chinese cabbage", + "spring onions", + "garlic", + "cabbage" + ] + }, + { + "id": 36473, + "cuisine": "italian", + "ingredients": [ + "whole wheat spaghettini", + "lemon", + "harissa paste", + "garlic", + "kale", + "extra-virgin olive oil", + "pinenuts", + "oil-cured black olives", + "fine sea salt" + ] + }, + { + "id": 33966, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "salt", + "chop fine pecan", + "grated lemon zest", + "milk", + "butter", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 44910, + "cuisine": "indian", + "ingredients": [ + "clove", + "large eggs", + "yellow split peas", + "onions", + "fresh cilantro", + "garlic", + "cinnamon sticks", + "green cardamom pods", + "fresh ginger", + "salt", + "ground beef", + "red chili peppers", + "vegetable oil", + "black cardamom pods" + ] + }, + { + "id": 8957, + "cuisine": "southern_us", + "ingredients": [ + "spinach", + "large egg whites", + "low salt chicken broth", + "reduced fat sharp cheddar cheese", + "pepper", + "quickcooking grits", + "country ham", + "garlic powder", + "skim milk", + "cooking spray" + ] + }, + { + "id": 41016, + "cuisine": "chinese", + "ingredients": [ + "water", + "broccoli florets", + "oyster sauce", + "chinese rice wine", + "beef", + "garlic", + "red bell pepper", + "brown sugar", + "fresh ginger", + "crushed red pepper flakes", + "corn starch", + "soy sauce", + "water chestnuts", + "rice vinegar", + "onions" + ] + }, + { + "id": 15533, + "cuisine": "jamaican", + "ingredients": [ + "pepper sauce", + "molasses", + "garlic powder", + "pickapeppa sauce", + "tomato sauce", + "cider vinegar", + "salt", + "ground ginger", + "soy sauce", + "dried thyme", + "ground allspice", + "liquid smoke", + "brown sugar", + "black pepper", + "onion powder" + ] + }, + { + "id": 35134, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "cream cheese frosting", + "large eggs", + "crushed pineapples in juice", + "vegetable oil cooking spray", + "ground nutmeg", + "vanilla extract", + "thyme sprigs", + "soft-wheat flour", + "baking soda", + "vegetable oil", + "chopped pecans", + "sugar", + "bananas", + "salt" + ] + }, + { + "id": 27057, + "cuisine": "chinese", + "ingredients": [ + "all-purpose flour", + "water", + "dumplings" + ] + }, + { + "id": 49281, + "cuisine": "mexican", + "ingredients": [ + "water", + "fresh oregano", + "large garlic cloves", + "dried oregano", + "smoked bacon", + "onions", + "posole", + "salt" + ] + }, + { + "id": 48029, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "unsalted butter", + "all-purpose flour", + "kasseri", + "eggplant", + "salt", + "kosher salt", + "whole milk", + "fresh lemon juice", + "water", + "lamb shoulder" + ] + }, + { + "id": 28478, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "green onions", + "lime juice", + "tomatoes", + "chopped cilantro fresh", + "knorr garlic minicub" + ] + }, + { + "id": 3819, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "white sugar", + "granny smith apples", + "brown sugar", + "pie crust", + "butter" + ] + }, + { + "id": 20011, + "cuisine": "french", + "ingredients": [ + "sugar", + "cold water", + "armagnac", + "prunes", + "fresh orange juice" + ] + }, + { + "id": 9708, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "anchovy paste", + "turkey breast cutlets", + "chives", + "dry white wine", + "all-purpose flour", + "olive oil", + "shallots" + ] + }, + { + "id": 36602, + "cuisine": "japanese", + "ingredients": [ + "rice vinegar", + "short-grain rice", + "sugar", + "salt" + ] + }, + { + "id": 41419, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "linguine", + "oregano", + "peeled tomatoes", + "extra-virgin olive oil", + "flat leaf parsley", + "Robert Mondavi Fume Blanc", + "garlic", + "littleneck clams", + "coarse kosher salt" + ] + }, + { + "id": 4778, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "basil", + "fresh herbs", + "beansprouts", + "tumeric", + "lettuce leaves", + "salt", + "rice flour", + "mint", + "shiitake", + "garlic", + "nuoc cham", + "coconut milk", + "sugar", + "green onions", + "oil", + "shrimp" + ] + }, + { + "id": 5963, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "salt", + "lime juice", + "adobo sauce", + "pepper", + "shrimp", + "garlic", + "cumin" + ] + }, + { + "id": 19578, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "fresh parsley", + "bread crumbs", + "garlic", + "grated parmesan cheese", + "spaghetti", + "olive oil", + "anchovy fillets" + ] + }, + { + "id": 22626, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "freshly ground pepper", + "chicken", + "manicotti shells", + "onions", + "fresh basil", + "shredded mozzarella cheese", + "spinach", + "garlic salt" + ] + }, + { + "id": 44642, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "baking soda", + "buttermilk", + "bacon fat", + "kosher salt", + "baking powder", + "cracked black pepper", + "cayenne pepper", + "eggs", + "sambal chile paste", + "paprika", + "all-purpose flour", + "honey", + "vegetable oil", + "garlic", + "onions" + ] + }, + { + "id": 44502, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "cracked black pepper", + "dried oregano", + "olive oil", + "cayenne pepper", + "cumin", + "brown sugar", + "chili powder", + "pork roast", + "granulated garlic", + "onion powder", + "smoked paprika" + ] + }, + { + "id": 38435, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "red wine", + "beef broth", + "celery", + "fresh basil", + "vegetable oil", + "garlic", + "carrots", + "dried oregano", + "baby spinach leaves", + "russet potatoes", + "salt", + "rotini", + "tomato paste", + "black beans", + "diced tomatoes", + "hot Italian sausages", + "onions" + ] + }, + { + "id": 16366, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "dried oregano", + "black pepper", + "paprika", + "ground red pepper", + "white pepper", + "salt" + ] + }, + { + "id": 5021, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "broccoli florets", + "onions", + "brown sugar", + "garlic powder", + "corn starch", + "water", + "mixed vegetables", + "ground ginger", + "olive oil", + "vegetable broth" + ] + }, + { + "id": 47747, + "cuisine": "cajun_creole", + "ingredients": [ + "crab", + "bay leaves", + "creole seasoning", + "crawfish", + "lemon", + "cider vinegar", + "small new potatoes", + "corn husks", + "cayenne pepper" + ] + }, + { + "id": 41250, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "salt", + "sugar", + "baking powder", + "eggs", + "egg yolks", + "all-purpose flour", + "fresh chives", + "buttermilk" + ] + }, + { + "id": 7863, + "cuisine": "irish", + "ingredients": [ + "cream of tartar", + "butter", + "milk", + "all-purpose flour", + "sugar", + "salt", + "white vinegar", + "baking soda" + ] + }, + { + "id": 554, + "cuisine": "italian", + "ingredients": [ + "dough", + "olive oil flavored cooking spray", + "prosciutto", + "grated parmesan cheese", + "fresh rosemary" + ] + }, + { + "id": 32661, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "balsamic vinegar", + "salt", + "onions", + "brown sugar", + "ground black pepper", + "tomatoes with juice", + "anchovy fillets", + "tomato paste", + "mozzarella cheese", + "grated parmesan cheese", + "garlic", + "red bell pepper", + "capers", + "eggplant", + "red wine vinegar", + "fresh oregano" + ] + }, + { + "id": 17452, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "Shaoxing wine", + "baby carrots", + "oyster sauce", + "dark soy sauce", + "water", + "chili oil", + "oil", + "red bell pepper", + "soy sauce", + "sesame oil", + "scallions", + "corn starch", + "green bell pepper", + "beef", + "garlic", + "garlic chili sauce" + ] + }, + { + "id": 6524, + "cuisine": "italian", + "ingredients": [ + "salt and ground black pepper", + "fresh basil", + "extra-virgin olive oil", + "tomatoes", + "balsamic vinegar", + "mozzarella cheese" + ] + }, + { + "id": 36288, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "sage", + "cold water", + "parmigiano reggiano cheese", + "unsalted butter", + "rosemary", + "polenta" + ] + }, + { + "id": 45902, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "clove garlic, fine chop", + "low-fat greek yogurt", + "cucumber" + ] + }, + { + "id": 9410, + "cuisine": "italian", + "ingredients": [ + "vanilla extract", + "strawberries", + "whole milk ricotta cheese", + "grated lemon zest", + "large eggs", + "dry bread crumbs", + "granulated sugar", + "all-purpose flour", + "sour cream" + ] + }, + { + "id": 6227, + "cuisine": "vietnamese", + "ingredients": [ + "leaves", + "shrimp", + "tapioca flour", + "salt", + "sugar", + "purple onion", + "pepper", + "Maggi" + ] + }, + { + "id": 20765, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "shredded carrots", + "rice vinegar", + "sliced green onions", + "sugar", + "fresh ginger", + "salt", + "chinese five-spice powder", + "baguette", + "chili paste", + "cilantro leaves", + "chopped garlic", + "cooked turkey", + "shredded cabbage", + "rolls" + ] + }, + { + "id": 21634, + "cuisine": "italian", + "ingredients": [ + "warm water", + "fresh mozzarella", + "freshly ground pepper", + "sun-dried tomatoes", + "salt", + "sugar", + "baby arugula", + "all-purpose flour", + "active dry yeast", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 43825, + "cuisine": "french", + "ingredients": [ + "brandy", + "lemon", + "sugar", + "whole cloves", + "orange", + "cinnamon sticks", + "brewed coffee", + "orange liqueur" + ] + }, + { + "id": 11457, + "cuisine": "italian", + "ingredients": [ + "nutmeg", + "fresh parmesan cheese", + "lemon juice", + "black pepper", + "flour", + "no salt added chicken broth", + "olive oil", + "boneless skinless chicken breasts", + "whole grain pasta", + "frozen spinach", + "low-fat cottage cheese", + "large garlic cloves", + "dried oregano" + ] + }, + { + "id": 42334, + "cuisine": "vietnamese", + "ingredients": [ + "romaine lettuce", + "olive oil", + "jalapeno chilies", + "chicken breasts", + "salt", + "pepper", + "vinegar", + "green onions", + "tap water", + "chopped cilantro", + "fish sauce", + "lime juice", + "shredded carrots", + "light mayonnaise", + "crushed red pepper", + "sugar", + "radishes", + "sliced cucumber", + "garlic", + "rice vinegar" + ] + }, + { + "id": 3926, + "cuisine": "korean", + "ingredients": [ + "extract", + "stevia", + "carrots", + "shiitake", + "shirataki", + "garlic chili sauce", + "toasted sesame seeds", + "sweet onion", + "baby spinach", + "scallions", + "toasted sesame oil", + "ground black pepper", + "tamari soy sauce", + "lemon juice" + ] + }, + { + "id": 15857, + "cuisine": "italian", + "ingredients": [ + "eggs", + "cracked black pepper", + "vegetable oil", + "all-purpose flour", + "baking powder", + "salt", + "butter" + ] + }, + { + "id": 24008, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "flour", + "garlic", + "corn tortillas", + "sugar", + "large egg yolks", + "lime wedges", + "beer", + "cabbage", + "lime zest", + "olive oil", + "Mexican oregano", + "salt", + "cumin", + "black pepper", + "cod cheeks", + "vegetable oil", + "dried guajillo chiles" + ] + }, + { + "id": 11697, + "cuisine": "indian", + "ingredients": [ + "fennel", + "vegetable oil", + "ground cumin", + "ground ginger", + "potatoes", + "cardamom", + "clove", + "garam masala", + "salt", + "asafoetida", + "yoghurt", + "chillies" + ] + }, + { + "id": 6172, + "cuisine": "vietnamese", + "ingredients": [ + "lime", + "rice vinegar", + "fish sauce", + "shallots", + "light brown sugar", + "ground black pepper", + "bone-in pork chops", + "kosher salt", + "vegetable oil" + ] + }, + { + "id": 25891, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "chili paste", + "sesame oil", + "fresh ginger", + "green onions", + "rice vinegar", + "soy sauce", + "pork tenderloin", + "worcestershire sauce", + "chicken broth", + "shiitake", + "corn oil", + "corn starch" + ] + }, + { + "id": 15283, + "cuisine": "french", + "ingredients": [ + "sugar", + "whole milk", + "large egg yolks", + "orange liqueur", + "vanilla beans", + "whipping cream", + "grated orange peel", + "semisweet chocolate" + ] + }, + { + "id": 43967, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "ground black pepper", + "kosher salt", + "red pepper flakes", + "parmesan cheese", + "spaghetti" + ] + }, + { + "id": 46188, + "cuisine": "mexican", + "ingredients": [ + "clove", + "homemade chicken stock", + "peanuts", + "raisins", + "garlic cloves", + "corn tortillas", + "tomatoes", + "guajillo chiles", + "french bread", + "mexican chocolate", + "hot water", + "onions", + "pecans", + "sesame seeds", + "tomatillos", + "blanched almonds", + "ancho chile pepper", + "plantains", + "black peppercorns", + "dried thyme", + "dried cascabel chile", + "peanut oil", + "cinnamon sticks", + "dried oregano" + ] + }, + { + "id": 34730, + "cuisine": "italian", + "ingredients": [ + "sugar", + "butter", + "sesame seeds", + "all-purpose flour", + "eggs", + "baking powder", + "anise extract", + "milk", + "salt" + ] + }, + { + "id": 5344, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "corned beef", + "kosher salt", + "fresh parsley", + "eggs", + "yukon gold potatoes", + "ground black pepper", + "onions" + ] + }, + { + "id": 5444, + "cuisine": "french", + "ingredients": [ + "salt", + "freshly ground pepper", + "reduced fat milk", + "grated Gruyère cheese", + "unsalted butter", + "grated nutmeg", + "all-purpose flour" + ] + }, + { + "id": 35494, + "cuisine": "british", + "ingredients": [ + "large eggs", + "fine sea salt", + "vanilla beans", + "golden raisins", + "apricot jam", + "sugar", + "whole milk", + "rolls", + "unsalted butter", + "heavy cream", + "confectioners sugar" + ] + }, + { + "id": 38061, + "cuisine": "japanese", + "ingredients": [ + "zucchini", + "toasted sesame seeds", + "soy sauce", + "teriyaki sauce", + "vegetable oil", + "ground black pepper", + "onions" + ] + }, + { + "id": 32524, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "sliced shallots", + "green mango", + "lime", + "thai chile" + ] + }, + { + "id": 25579, + "cuisine": "russian", + "ingredients": [ + "sugar", + "large eggs", + "vanilla extract", + "corn starch", + "large egg yolks", + "whole milk", + "salt", + "hazelnuts", + "dried apricot", + "cake flour", + "powdered sugar", + "unsalted butter", + "baking powder", + "apricot preserves" + ] + }, + { + "id": 25247, + "cuisine": "chinese", + "ingredients": [ + "jasmine rice", + "salt", + "chicken bouillon", + "fresh ginger", + "eggs", + "light soy sauce", + "canola oil", + "white pepper", + "chicken breasts" + ] + }, + { + "id": 4825, + "cuisine": "southern_us", + "ingredients": [ + "cooked rice", + "butter", + "water", + "onions", + "pepper", + "salt", + "chicken legs", + "seasoning salt" + ] + }, + { + "id": 21512, + "cuisine": "italian", + "ingredients": [ + "almond extract", + "bananas", + "blanched almonds", + "large egg whites", + "yellow food coloring", + "granulated sugar", + "confectioners sugar" + ] + }, + { + "id": 9485, + "cuisine": "russian", + "ingredients": [ + "pepper", + "sour cream", + "eggs", + "butter", + "onions", + "bread crumbs", + "salt", + "white bread", + "milk", + "ground beef" + ] + }, + { + "id": 40498, + "cuisine": "irish", + "ingredients": [ + "tomato paste", + "beef brisket", + "dill", + "brown sugar", + "chopped celery", + "carrots", + "black peppercorns", + "stout", + "chopped onion", + "clove", + "water", + "beef broth" + ] + }, + { + "id": 31263, + "cuisine": "mexican", + "ingredients": [ + "salt", + "finely chopped onion", + "chopped cilantro fresh", + "jalapeno chilies", + "plum tomatoes", + "garlic powder", + "fresh lime juice" + ] + }, + { + "id": 2882, + "cuisine": "italian", + "ingredients": [ + "eggs", + "part-skim mozzarella cheese", + "shredded zucchini", + "pasta sauce", + "grated parmesan cheese", + "fresh parsley", + "manicotti shells", + "ground nutmeg", + "sour cream", + "pepper", + "salt", + "italian salad dressing" + ] + }, + { + "id": 22377, + "cuisine": "southern_us", + "ingredients": [ + "chicken bouillon", + "fresh thyme", + "all-purpose flour", + "fresh sage", + "milk", + "garlic", + "onions", + "pepper", + "crushed red pepper flakes", + "fresh parsley", + "green bell pepper", + "unsalted butter", + "salt", + "pork sausages" + ] + }, + { + "id": 25401, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "slaw mix", + "purple onion", + "jalapeno chilies", + "plums", + "pepper", + "cilantro", + "salt", + "lime juice", + "garlic" + ] + }, + { + "id": 6682, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "navel oranges", + "chopped pecans", + "sugar", + "whole milk", + "all-purpose flour", + "bananas", + "cinnamon", + "gran marnier", + "large eggs", + "salt" + ] + }, + { + "id": 31536, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "chili powder", + "shrimp", + "ground cumin", + "pepper", + "guacamole", + "sweet paprika", + "chipotle sauce", + "pico de gallo", + "bell pepper", + "salt", + "onions", + "garlic powder", + "chicken breasts", + "ground coriander", + "olives" + ] + }, + { + "id": 24295, + "cuisine": "indian", + "ingredients": [ + "fish sauce", + "sea salt", + "curry powder", + "coconut milk", + "black pepper", + "garlic chili sauce", + "chicken wings", + "honey" + ] + }, + { + "id": 23597, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "provolone cheese", + "sundried tomato pesto", + "butter", + "sandwich bread", + "eggplant", + "veggies" + ] + }, + { + "id": 1723, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "extra firm tofu", + "scallions", + "lime", + "vegetable broth", + "coconut milk", + "fresh cilantro", + "vegetable oil", + "baby corn", + "kaffir lime leaves", + "shiitake", + "broccoli", + "galangal" + ] + }, + { + "id": 9621, + "cuisine": "greek", + "ingredients": [ + "garlic", + "chicken pieces", + "olive oil", + "fresh oregano", + "kosher salt", + "greek style plain yogurt", + "fresh parsley", + "red pepper flakes", + "lemon juice" + ] + }, + { + "id": 49199, + "cuisine": "southern_us", + "ingredients": [ + "sweet potatoes", + "eggs", + "heavy cream", + "pie crust", + "spices", + "brown sugar", + "salt" + ] + }, + { + "id": 13332, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "salt", + "unsalted butter", + "chicken stock", + "all-purpose flour" + ] + }, + { + "id": 20528, + "cuisine": "moroccan", + "ingredients": [ + "dried apricot", + "couscous", + "olive oil", + "chicken breasts", + "coriander", + "fresh ginger root", + "chickpeas", + "chicken stock", + "harissa paste", + "onions" + ] + }, + { + "id": 18650, + "cuisine": "japanese", + "ingredients": [ + "tumeric", + "yoghurt", + "cilantro leaves", + "onions", + "tomatoes", + "coriander powder", + "bhindi", + "cumin seed", + "red chili peppers", + "chili powder", + "roasted peanuts", + "garlic paste", + "potatoes", + "salt", + "oil" + ] + }, + { + "id": 36962, + "cuisine": "japanese", + "ingredients": [ + "dried fish flakes", + "red pepper flakes", + "dashi", + "rice vinegar", + "mirin", + "tangerine", + "shoyu" + ] + }, + { + "id": 33123, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "seeds", + "curry", + "cinnamon sticks", + "sugar", + "crushed red pepper flakes", + "rice vinegar", + "onions", + "green chile", + "pineapple", + "salt", + "coconut milk", + "fresh ginger", + "garlic", + "mustard seeds", + "ground turmeric" + ] + }, + { + "id": 24498, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "ground red pepper", + "garlic cloves", + "green bell pepper", + "cajun seasoning", + "cream of mushroom soup", + "celery ribs", + "green onions", + "long-grain rice", + "onions", + "crawfish", + "butter", + "fresh parsley" + ] + }, + { + "id": 29102, + "cuisine": "brazilian", + "ingredients": [ + "cold water", + "lemon", + "lime", + "sweetened condensed milk", + "agave nectar", + "spices" + ] + }, + { + "id": 49431, + "cuisine": "greek", + "ingredients": [ + "salt", + "olive oil", + "hummus", + "golden beets", + "pitas" + ] + }, + { + "id": 25761, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "pepper", + "lemon zest", + "balsamic vinegar", + "garlic cloves", + "snow peas", + "lime zest", + "red chili peppers", + "olive oil", + "sesame oil", + "cayenne pepper", + "beansprouts", + "duck breasts", + "honey", + "shallots", + "red wine vinegar", + "carrots", + "orange zest", + "chicken stock", + "soy sauce", + "sesame seeds", + "vegetable oil", + "rolls", + "ginger root" + ] + }, + { + "id": 19952, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil cooking spray", + "turkey breakfast sausage", + "salt", + "cream of tartar", + "egg substitute", + "quickcooking grits", + "dried chives", + "dijon mustard", + "light cream cheese", + "pepper", + "egg whites", + "no salt added chicken broth" + ] + }, + { + "id": 34608, + "cuisine": "russian", + "ingredients": [ + "eggs", + "flour", + "tart apples", + "sugar" + ] + }, + { + "id": 13643, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "butter", + "kosher salt", + "chopped fresh chives", + "all-purpose flour", + "walnut halves", + "large eggs", + "large garlic cloves", + "ground black pepper", + "baking potatoes", + "boiling water" + ] + }, + { + "id": 18555, + "cuisine": "italian", + "ingredients": [ + "whole milk", + "butter", + "yukon gold potatoes", + "mascarpone", + "sauce" + ] + }, + { + "id": 2041, + "cuisine": "italian", + "ingredients": [ + "eggs", + "all-purpose flour", + "baking powder", + "anise extract", + "baking soda", + "softened butter", + "salt", + "white sugar" + ] + }, + { + "id": 38269, + "cuisine": "korean", + "ingredients": [ + "anchovies", + "shrimp", + "dried kelp", + "sea salt", + "red chili peppers", + "green onions", + "chopped garlic", + "water", + "soybean sprouts" + ] + }, + { + "id": 23223, + "cuisine": "french", + "ingredients": [ + "flour", + "apples", + "milk", + "raisins", + "confectioners sugar", + "sugar", + "butter", + "salt", + "large eggs", + "vanilla" + ] + }, + { + "id": 24206, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "chopped onion", + "salt", + "bay leaf", + "chopped celery", + "okra", + "water", + "cayenne pepper", + "smoked ham hocks" + ] + }, + { + "id": 46805, + "cuisine": "italian", + "ingredients": [ + "garlic", + "french baguette", + "plum tomatoes", + "fresh basil", + "purple onion", + "ground black pepper" + ] + }, + { + "id": 44538, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking powder", + "white flour", + "salt", + "sugar", + "butter", + "cream of tartar", + "milk", + "wheat flour" + ] + }, + { + "id": 21963, + "cuisine": "korean", + "ingredients": [ + "sweet rice", + "ginseng", + "salt", + "chicken", + "eggs", + "fresh ginger", + "garlic", + "nuts", + "pepper", + "sesame oil", + "yellow onion", + "water", + "dates", + "scallions" + ] + }, + { + "id": 9328, + "cuisine": "french", + "ingredients": [ + "kalamata", + "garlic cloves", + "capers", + "anchovy fillets", + "fresh basil leaves", + "extra-virgin olive oil", + "chicken thighs", + "dry white wine", + "Niçoise olives", + "plum tomatoes" + ] + }, + { + "id": 40097, + "cuisine": "chinese", + "ingredients": [ + "flank steak", + "water", + "corn starch", + "brown sugar", + "ginger", + "soy sauce", + "garlic" + ] + }, + { + "id": 3153, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked chicken", + "green pepper", + "celery ribs", + "smoked sausage", + "garlic cloves", + "diced tomatoes", + "creole seasoning", + "olive oil", + "cayenne pepper", + "onions" + ] + }, + { + "id": 18383, + "cuisine": "indian", + "ingredients": [ + "chili", + "salt", + "bulb", + "garam masala", + "lemon juice", + "coconut oil", + "shredded cabbage", + "onions", + "sesame seeds", + "cumin seed" + ] + }, + { + "id": 14188, + "cuisine": "chinese", + "ingredients": [ + "shiitake", + "canola oil", + "boneless chop pork", + "garlic", + "broccoli florets", + "fresh ginger", + "oyster sauce" + ] + }, + { + "id": 21384, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "baking powder", + "eggs", + "granulated sugar", + "cake flour", + "baking soda", + "bourbon whiskey", + "light brown sugar", + "unsalted butter", + "buttermilk" + ] + }, + { + "id": 21592, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "vegetable gumbo mixture", + "chicken broth", + "frozen corn", + "pork", + "lima beans", + "cooked chicken" + ] + }, + { + "id": 14891, + "cuisine": "chinese", + "ingredients": [ + "fresh chives", + "extra-virgin olive oil", + "boiling water", + "low sodium soy sauce", + "green tea", + "garlic cloves", + "honey", + "salt", + "chiles", + "peeled fresh ginger", + "fresh lemon juice" + ] + }, + { + "id": 27315, + "cuisine": "southern_us", + "ingredients": [ + "tomato paste", + "apple cider vinegar", + "dark brown sugar", + "ground black pepper", + "apple cider", + "yellow mustard seeds", + "smoked pork neck bones", + "dijon mustard", + "salt" + ] + }, + { + "id": 35158, + "cuisine": "spanish", + "ingredients": [ + "shortening", + "cinnamon", + "water", + "salt", + "ground cinnamon", + "active dry yeast", + "all-purpose flour", + "sugar", + "vanilla extract" + ] + }, + { + "id": 33368, + "cuisine": "italian", + "ingredients": [ + "water", + "finely chopped onion", + "fine sea salt", + "olive oil", + "dry white wine", + "kale", + "parmigiano reggiano cheese", + "garlic cloves", + "arborio rice", + "unsalted butter", + "low-sodium fat-free chicken broth" + ] + }, + { + "id": 46168, + "cuisine": "italian", + "ingredients": [ + "sugar", + "diced tomatoes", + "olive oil", + "garlic", + "red pepper flakes", + "dried oregano", + "kosher salt", + "linguine" + ] + }, + { + "id": 39281, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "green curry paste", + "sea salt", + "greek yogurt", + "fresh spinach", + "garam masala", + "bulgur", + "tumeric", + "fresh ginger", + "garlic", + "coconut milk", + "water", + "butter", + "lentils" + ] + }, + { + "id": 6997, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "ground black pepper", + "ground cayenne pepper", + "cotija", + "sirloin steak", + "ground cumin", + "mayonaise", + "kaiser rolls", + "garlic salt", + "avocado", + "refried beans", + "shredded lettuce" + ] + }, + { + "id": 8620, + "cuisine": "british", + "ingredients": [ + "cold water", + "suet", + "salt", + "braising steak", + "flour", + "onions", + "tomato purée", + "self rising flour", + "dried mixed herbs", + "pepper", + "beef stock" + ] + }, + { + "id": 2415, + "cuisine": "italian", + "ingredients": [ + "peeled tomatoes", + "fresh basil leaves", + "chicken broth", + "large garlic cloves" + ] + }, + { + "id": 18808, + "cuisine": "greek", + "ingredients": [ + "fresh basil", + "minced garlic", + "olive oil", + "purple onion", + "dried oregano", + "pitted kalamata olives", + "Spike Seasoning", + "dijon mustard", + "feta cheese crumbles", + "red wine vinaigrette", + "water", + "ground black pepper", + "frozen basil", + "Balsamico Bianco", + "beans", + "dried thyme", + "fresh green bean", + "roasted tomatoes" + ] + }, + { + "id": 49706, + "cuisine": "indian", + "ingredients": [ + "low-fat plain yogurt", + "vegetable oil", + "fresh lemon juice", + "peeled fresh ginger", + "salt", + "ground cumin", + "tumeric", + "paprika", + "chicken", + "chili powder", + "garlic cloves" + ] + }, + { + "id": 43634, + "cuisine": "greek", + "ingredients": [ + "mint", + "lamb", + "ground cumin", + "honey", + "cucumber", + "pomegranate seeds", + "garlic cloves", + "shallots", + "greek yogurt" + ] + }, + { + "id": 16503, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "avocado", + "lemon juice", + "evaporated milk", + "ice cubes" + ] + }, + { + "id": 17558, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh chives", + "parmesan cheese", + "hot sauce", + "onions", + "pepper", + "chopped celery", + "shrimp", + "seasoned bread crumbs", + "dry white wine", + "garlic cloves", + "mirlitons", + "olive oil", + "salt", + "red bell pepper" + ] + }, + { + "id": 26311, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "guajillo", + "corn tortillas", + "tomatoes", + "radishes", + "vegetable oil", + "freshly ground pepper", + "monterey jack", + "white onion", + "large eggs", + "queso fresco", + "garlic cloves", + "hungarian sweet paprika", + "honey", + "lime wedges", + "tortilla chips", + "chopped cilantro fresh" + ] + }, + { + "id": 40232, + "cuisine": "cajun_creole", + "ingredients": [ + "butter", + "milk", + "cream cheese", + "powdered sugar", + "frozen bread dough", + "lemon extract", + "confectioners sugar" + ] + }, + { + "id": 28883, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "salt", + "sage leaves", + "minced onion", + "water", + "carrots", + "chicken stock", + "extra-virgin olive oil" + ] + }, + { + "id": 37001, + "cuisine": "thai", + "ingredients": [ + "lime", + "rice noodles", + "canola oil", + "brown sugar", + "marinara sauce", + "garlic cloves", + "eggs", + "reduced sodium soy sauce", + "cilantro leaves", + "dry roasted peanuts", + "Asian chili sauce", + "uncook medium shrimp, peel and devein" + ] + }, + { + "id": 47150, + "cuisine": "filipino", + "ingredients": [ + "milk", + "all-purpose flour", + "sugar", + "vanilla", + "water", + "salt", + "eggs", + "baking powder" + ] + }, + { + "id": 41870, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "enchilada sauce", + "ground chuck", + "purple onion", + "corn tortillas", + "green chile", + "black olives", + "sour cream", + "shredded lettuce", + "sharp cheddar cheese", + "cream of mushroom soup" + ] + }, + { + "id": 47883, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "all-purpose flour", + "unsweetened cocoa powder", + "evaporated milk", + "vanilla extract", + "confectioners sugar", + "mini marshmallows", + "salt", + "white sugar", + "eggs", + "butter", + "chopped walnuts" + ] + }, + { + "id": 32561, + "cuisine": "italian", + "ingredients": [ + "top sirloin steak", + "yellow bell pepper", + "salt", + "kosher salt", + "cracked black pepper", + "purple onion", + "capers", + "red wine vinegar", + "crushed red pepper", + "chopped fresh thyme", + "extra-virgin olive oil", + "fresh oregano" + ] + }, + { + "id": 23664, + "cuisine": "british", + "ingredients": [ + "sugar", + "salt", + "whole milk", + "baking powder", + "suet", + "all-purpose flour" + ] + }, + { + "id": 42473, + "cuisine": "brazilian", + "ingredients": [ + "crushed ice", + "lime", + "cachaca", + "fruit puree", + "simple syrup" + ] + }, + { + "id": 40564, + "cuisine": "southern_us", + "ingredients": [ + "minced garlic", + "whipping cream", + "whole milk", + "salt", + "quickcooking grits", + "margarine", + "water", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 1840, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "water", + "grated parmesan cheese", + "yellow bell pepper", + "dried oregano", + "green bell pepper", + "orange bell pepper", + "diced tomatoes", + "shredded mozzarella cheese", + "eggs", + "olive oil", + "ricotta cheese", + "yellow onion", + "black pepper", + "lasagna noodles", + "crushed red pepper flakes", + "red bell pepper" + ] + }, + { + "id": 32562, + "cuisine": "chinese", + "ingredients": [ + "salt", + "chinese wolfberries", + "white peppercorns", + "water", + "white radish", + "dates", + "chicken" + ] + }, + { + "id": 20190, + "cuisine": "japanese", + "ingredients": [ + "chicken stock", + "frozen peas", + "shoyu", + "salt", + "eggs" + ] + }, + { + "id": 26208, + "cuisine": "italian", + "ingredients": [ + "onions", + "spaghetti, cook and drain", + "ragu", + "ground beef" + ] + }, + { + "id": 26030, + "cuisine": "irish", + "ingredients": [ + "buttermilk", + "eggs", + "wholemeal flour", + "plain flour", + "salt", + "bicarbonate of soda" + ] + }, + { + "id": 26016, + "cuisine": "italian", + "ingredients": [ + "basil pesto sauce", + "diced tomatoes", + "baby spinach leaves", + "angel hair", + "sour cream" + ] + }, + { + "id": 40886, + "cuisine": "spanish", + "ingredients": [ + "peaches", + "white wine", + "club soda", + "peach nectar", + "orange" + ] + }, + { + "id": 26028, + "cuisine": "russian", + "ingredients": [ + "sugar", + "oil", + "raisins", + "baking powder", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 35823, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "marinade", + "oyster sauce", + "yellow chives", + "sugar", + "black mushrooms", + "salt", + "ground white pepper", + "wine", + "water", + "ginger", + "corn starch", + "pork", + "egg noodles", + "oil", + "beansprouts" + ] + }, + { + "id": 12880, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "vanilla extract", + "half & half" + ] + }, + { + "id": 8280, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "bean sauce", + "cucumber", + "sugar", + "salt", + "scallions", + "radishes", + "soba noodles", + "soy sauce", + "rice vinegar", + "carrots" + ] + }, + { + "id": 1549, + "cuisine": "thai", + "ingredients": [ + "firmly packed light brown sugar", + "green onions", + "red bell pepper", + "light soy sauce", + "yellow bell pepper", + "snow peas", + "lime zest", + "basil leaves", + "creamy peanut butter", + "pork tenderloin", + "crushed red pepper" + ] + }, + { + "id": 3325, + "cuisine": "mexican", + "ingredients": [ + "fresh shiitake mushrooms", + "chocolate morsels", + "soy sauce", + "beef broth", + "olive oil", + "garlic cloves", + "dry red wine" + ] + }, + { + "id": 19825, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "red wine vinegar", + "fresh lemon juice", + "water", + "Italian parsley leaves", + "pimento stuffed green olives", + "sugar", + "roasted red peppers", + "dried salted codfish", + "celery ribs", + "olive oil", + "kalamata", + "fresh basil leaves" + ] + }, + { + "id": 29424, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "fresh basil leaves", + "tomato sauce", + "salt", + "unsalted butter", + "fillet red snapper", + "freshly ground pepper" + ] + }, + { + "id": 22103, + "cuisine": "mexican", + "ingredients": [ + "cremini mushrooms", + "unsalted butter", + "sweet corn", + "monterey jack", + "lime", + "half & half", + "corn tortillas", + "pepper", + "poblano peppers", + "sour cream", + "avocado", + "olive oil", + "salt", + "adobo sauce" + ] + }, + { + "id": 43664, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "butter", + "water", + "sweet italian sausage", + "yellow corn meal", + "asiago", + "salami" + ] + }, + { + "id": 40322, + "cuisine": "cajun_creole", + "ingredients": [ + "lemon", + "creole seasoning", + "extra-virgin olive oil", + "ground pepper", + "salt", + "worcestershire sauce", + "shrimp" + ] + }, + { + "id": 515, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "frozen broccoli", + "pasta", + "crushed red pepper flakes", + "grated parmesan cheese", + "italian sausage", + "garlic" + ] + }, + { + "id": 3384, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "whole cloves", + "diced tomatoes", + "cumin seed", + "ground turmeric", + "fresh ginger", + "boneless skinless chicken breasts", + "cilantro leaves", + "onions", + "yellow mustard seeds", + "half & half", + "curry", + "garlic cloves", + "canola oil", + "coriander seeds", + "sea salt", + "cayenne pepper", + "Madras curry powder" + ] + }, + { + "id": 28010, + "cuisine": "southern_us", + "ingredients": [ + "potatoes", + "green peas", + "chopped garlic", + "white wine", + "butter", + "sliced mushrooms", + "pepper", + "paprika", + "chopped parsley", + "white pepper", + "boneless skinless chicken breasts", + "salt" + ] + }, + { + "id": 46035, + "cuisine": "spanish", + "ingredients": [ + "beefsteak tomatoes", + "garlic cloves", + "sherry vinegar", + "yellow bell pepper", + "onions", + "olive oil", + "navel oranges", + "cucumber", + "chopped fresh chives", + "hot sauce" + ] + }, + { + "id": 47027, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "flour tortillas", + "purple onion", + "garlic cloves", + "monterey jack", + "olive oil", + "chili powder", + "salsa", + "sour cream", + "fresh cilantro", + "chicken breasts", + "salt", + "red bell pepper", + "ground cumin", + "avocado", + "poblano peppers", + "red pepper flakes", + "yellow onion", + "yellow peppers" + ] + }, + { + "id": 35452, + "cuisine": "french", + "ingredients": [ + "fresh lavender", + "toasted baguette", + "sea salt", + "lavender honey", + "fresh thyme leaves", + "duck", + "black peppercorns", + "dry red wine", + "low salt chicken broth" + ] + }, + { + "id": 31131, + "cuisine": "chinese", + "ingredients": [ + "dough", + "green onions", + "garlic bulb", + "cooking oil", + "duck", + "white vinegar", + "pepper", + "sauce", + "kosher salt", + "ginger" + ] + }, + { + "id": 18642, + "cuisine": "japanese", + "ingredients": [ + "light cream or half and half", + "lipton green tea bag", + "dark corn syrup", + "eggs", + "water", + "sugar" + ] + }, + { + "id": 43382, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "raisins", + "butter", + "all-purpose flour", + "baking powder", + "salt", + "sugar", + "buttermilk" + ] + }, + { + "id": 17998, + "cuisine": "filipino", + "ingredients": [ + "low sodium soy sauce", + "ground black pepper", + "carrots", + "tomato sauce", + "garlic", + "ground beef", + "green bell pepper", + "potatoes", + "red bell pepper", + "water", + "salt", + "onions" + ] + }, + { + "id": 17212, + "cuisine": "indian", + "ingredients": [ + "water", + "fresh lime juice", + "sugar", + "salt", + "white onion", + "fresh mint", + "green chile", + "cilantro sprigs" + ] + }, + { + "id": 31153, + "cuisine": "russian", + "ingredients": [ + "sea salt", + "whey", + "water", + "beets" + ] + }, + { + "id": 19524, + "cuisine": "southern_us", + "ingredients": [ + "crushed red pepper", + "ground pepper", + "vinegar", + "ginger ale" + ] + }, + { + "id": 43092, + "cuisine": "moroccan", + "ingredients": [ + "chicken broth", + "zucchini", + "whole wheat couscous", + "onions", + "clove", + "garbanzo beans", + "cinnamon", + "ground cayenne pepper", + "crushed tomatoes", + "vegetable oil", + "carrots", + "tumeric", + "bay leaves", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 11067, + "cuisine": "chinese", + "ingredients": [ + "mushrooms", + "cooking wine", + "canola oil", + "dark soy sauce", + "ginger", + "roasting chickens", + "sesame oil", + "salt", + "sugar", + "garlic", + "corn starch" + ] + }, + { + "id": 38746, + "cuisine": "brazilian", + "ingredients": [ + "papaya", + "hemp seeds", + "raspberries", + "bananas", + "chia seeds", + "açai", + "coconut cream", + "almond butter", + "granola" + ] + }, + { + "id": 16116, + "cuisine": "japanese", + "ingredients": [ + "udon" + ] + }, + { + "id": 38201, + "cuisine": "thai", + "ingredients": [ + "long beans", + "palm sugar", + "carrots", + "scallops", + "skinless chicken breasts", + "kaffir lime", + "fish sauce", + "red curry paste", + "coconut milk", + "water", + "oil" + ] + }, + { + "id": 14182, + "cuisine": "french", + "ingredients": [ + "half & half", + "vanilla extract", + "vanilla beans", + "whipped cream", + "sugar", + "instant coffee", + "egg yolks", + "heavy cream" + ] + }, + { + "id": 1587, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "zucchini", + "mushrooms", + "purple onion", + "dried oregano", + "olive oil", + "grated parmesan cheese", + "red pepper flakes", + "carrots", + "yellow squash", + "large eggs", + "ricotta cheese", + "shredded mozzarella cheese", + "parmesan cheese", + "marinara sauce", + "garlic", + "red bell pepper" + ] + }, + { + "id": 5828, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "penne pasta", + "sour cream", + "olive oil", + "red pepper", + "garlic cloves", + "cumin", + "shredded cheddar cheese", + "chili powder", + "red enchilada sauce", + "onions", + "diced green chilies", + "salt", + "enchilada sauce" + ] + }, + { + "id": 38308, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "olive oil", + "red pepper", + "green chilies", + "beans", + "ground black pepper", + "garlic", + "yellow peppers", + "red chili peppers", + "chopped tomatoes", + "sea salt", + "onions", + "fresh coriander", + "sweet potatoes", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 48821, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "ice water", + "cayenne pepper", + "shredded Monterey Jack cheese", + "sugar", + "large eggs", + "salt", + "onions", + "tomato paste", + "unsalted butter", + "garlic", + "low sodium beef broth", + "ground cumin", + "ground cloves", + "lean ground beef", + "all-purpose flour", + "dried oregano" + ] + }, + { + "id": 4196, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "green lentil", + "diced tomatoes", + "ground cayenne pepper", + "pasta", + "water", + "meat", + "purple onion", + "chopped cilantro fresh", + "eggs", + "ground black pepper", + "chopped celery", + "onions", + "ground ginger", + "garbanzo beans", + "lemon", + "margarine", + "ground turmeric" + ] + }, + { + "id": 21711, + "cuisine": "french", + "ingredients": [ + "warm water", + "dry yeast", + "walnut oil", + "yellow corn meal", + "whole wheat flour", + "salt", + "sugar", + "fat free milk", + "chopped walnuts", + "large egg whites", + "cooking spray", + "bread flour" + ] + }, + { + "id": 8805, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "boneless skinless chicken breasts", + "fatfree lowsodium chicken broth", + "peanuts", + "unsalted dry roast peanuts", + "carrots", + "fresh ginger", + "garlic", + "garlic chili sauce", + "green bell pepper", + "hoisin sauce", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 1310, + "cuisine": "british", + "ingredients": [ + "milk", + "sunflower oil", + "sliced mushrooms", + "tumeric", + "cherry tomatoes", + "salt", + "eggs", + "rosemary", + "purple onion", + "pepper", + "gluten", + "sausages" + ] + }, + { + "id": 11445, + "cuisine": "mexican", + "ingredients": [ + "ground chuck", + "garlic powder", + "poblano", + "red bell pepper", + "green chile", + "pepper", + "jalapeno chilies", + "garlic", + "cumin", + "chicken broth", + "white onion", + "roma tomatoes", + "ancho powder", + "onions", + "chiles", + "olive oil", + "flour", + "salt" + ] + }, + { + "id": 26434, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "diced tomatoes", + "dried oregano", + "shallots", + "garlic cloves", + "balsamic vinegar", + "fresh basil leaves", + "olive oil", + "crushed red pepper" + ] + }, + { + "id": 22749, + "cuisine": "italian", + "ingredients": [ + "pepper", + "balsamic vinegar", + "white sugar", + "olive oil", + "salt", + "dried basil", + "garlic", + "dried oregano", + "eggplant", + "dried parsley" + ] + }, + { + "id": 6683, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "purple onion", + "Knorr® Fiesta Sides™ - Mexican Rice", + "large tomato", + "boneless sirloin steak", + "I Can't Believe It's Not Butter!® Spread" + ] + }, + { + "id": 11907, + "cuisine": "thai", + "ingredients": [ + "coconut oil", + "sesame oil", + "garlic cloves", + "lime", + "ginger", + "chia seeds", + "sesame seeds", + "tamari soy sauce", + "chili flakes", + "thai basil", + "peanut butter" + ] + }, + { + "id": 11590, + "cuisine": "chinese", + "ingredients": [ + "potato starch", + "lemongrass", + "garbanzo beans", + "napa cabbage", + "scallions", + "gluten free soy sauce", + "kosher salt", + "fresh ginger", + "arrowroot starch", + "rice vinegar", + "chicken thighs", + "millet flour", + "mo hanh", + "plum sauce", + "dipping sauces", + "chinese five-spice powder", + "minced garlic", + "peanuts", + "sesame oil", + "xanthan gum", + "boiling water" + ] + }, + { + "id": 9865, + "cuisine": "spanish", + "ingredients": [ + "jumbo shrimp", + "whole peeled tomatoes", + "littleneck clams", + "onions", + "frozen sweet peas", + "kosher salt", + "lemon wedge", + "sweet paprika", + "dried oregano", + "saffron threads", + "spanish rice", + "lobster", + "extra-virgin olive oil", + "chicken thighs", + "chicken legs", + "ground black pepper", + "Italian parsley leaves", + "garlic cloves", + "chorizo sausage" + ] + }, + { + "id": 39660, + "cuisine": "chinese", + "ingredients": [ + "herbs", + "garlic cloves", + "spices", + "boneless skinless chicken breasts", + "brown sugar", + "chili oil" + ] + }, + { + "id": 42350, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "salt", + "capers", + "basil", + "diced tomatoes", + "filet", + "pepper", + "garlic" + ] + }, + { + "id": 49409, + "cuisine": "mexican", + "ingredients": [ + "lager", + "garlic", + "ground cumin", + "ground black pepper", + "vegetable oil", + "chipotles in adobo", + "poblano peppers", + "tomatillos", + "onions", + "lamb stew meat", + "salt" + ] + }, + { + "id": 41717, + "cuisine": "mexican", + "ingredients": [ + "cream of chicken soup", + "shredded cheese", + "chicken breasts", + "onions", + "flour tortillas", + "cream of mushroom soup", + "tomatoes", + "butter" + ] + }, + { + "id": 2103, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "daikon", + "beef rib short", + "pepper", + "bone broth", + "salt", + "carrots", + "fish sauce", + "asian pear", + "ginger", + "garlic cloves", + "coconut", + "green onions", + "rice vinegar" + ] + }, + { + "id": 26690, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "water", + "all-purpose flour", + "warm water", + "salt", + "spring onions" + ] + }, + { + "id": 25548, + "cuisine": "french", + "ingredients": [ + "saffron threads", + "olive oil", + "rockfish", + "garlic cloves", + "fennel seeds", + "fish stock", + "yellow onion", + "herbes de provence", + "cod", + "red pepper flakes", + "salt", + "shrimp", + "fish fillets", + "tomatoes with juice", + "halibut" + ] + }, + { + "id": 28902, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "salt", + "baby spinach", + "peanut oil", + "sesame oil", + "rice vinegar", + "sesame seeds", + "shoyu" + ] + }, + { + "id": 44166, + "cuisine": "chinese", + "ingredients": [ + "green cabbage", + "green onions", + "corn starch", + "won ton wrappers", + "salt", + "medium shrimp", + "lean ground pork", + "dry sherry", + "low salt chicken broth", + "water chestnuts", + "gingerroot" + ] + }, + { + "id": 32570, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking powder", + "vanilla", + "sugar", + "cinnamon", + "salt", + "baking soda", + "buttermilk", + "water", + "butter", + "all-purpose flour" + ] + }, + { + "id": 11783, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vegetable oil", + "all-purpose flour", + "ground cinnamon", + "bananas", + "vanilla extract", + "crushed pineapple", + "baking soda", + "butter", + "cream cheese", + "powdered sugar", + "large eggs", + "salt", + "chopped pecans" + ] + }, + { + "id": 15095, + "cuisine": "italian", + "ingredients": [ + "sugar", + "grated lemon zest", + "blackberries", + "fresh blueberries", + "fresh raspberries", + "mint leaves", + "fresh lemon juice", + "limoncello", + "strawberries" + ] + }, + { + "id": 40397, + "cuisine": "greek", + "ingredients": [ + "honey", + "shallots", + "english cucumber", + "fresh basil", + "dijon mustard", + "cracked black pepper", + "feta cheese crumbles", + "olive oil", + "sea salt", + "fresh lemon juice", + "cherry tomatoes", + "orzo pasta", + "purple onion" + ] + }, + { + "id": 6919, + "cuisine": "french", + "ingredients": [ + "water", + "large eggs", + "dry red wine", + "lardons", + "tomato paste", + "olive oil", + "parsley", + "garlic cloves", + "thyme sprigs", + "baguette", + "unsalted butter", + "bacon", + "California bay leaves", + "white vinegar", + "veal demi-glace", + "shallots", + "all-purpose flour", + "frisee" + ] + }, + { + "id": 13515, + "cuisine": "indian", + "ingredients": [ + "milk", + "confectioners sugar", + "saffron threads", + "yellow food coloring", + "plain yogurt", + "ground cardamom", + "pistachio nuts" + ] + }, + { + "id": 41079, + "cuisine": "filipino", + "ingredients": [ + "garlic", + "coconut milk", + "water", + "tilapia", + "onions", + "tomatoes", + "salt", + "bok choy", + "ginger", + "green chilies" + ] + }, + { + "id": 31156, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "Gochujang base", + "pepper flakes", + "sesame seeds", + "ginger", + "onions", + "lettuce", + "pork belly", + "sesame oil", + "green chilies", + "brown sugar", + "ground black pepper", + "garlic" + ] + }, + { + "id": 7828, + "cuisine": "british", + "ingredients": [ + "pepper", + "lean ground beef", + "beef broth", + "italian seasoning", + "tomato paste", + "milk", + "salt", + "fresh parsley", + "shredded cheddar cheese", + "butter", + "carrots", + "ground cinnamon", + "potatoes", + "all-purpose flour", + "onions" + ] + }, + { + "id": 1542, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "milk", + "grated parmesan cheese", + "table salt", + "ground black pepper", + "all-purpose flour", + "nutmeg", + "broccoli rabe", + "garlic", + "pasta", + "mozzarella cheese", + "unsalted butter" + ] + }, + { + "id": 48807, + "cuisine": "southern_us", + "ingredients": [ + "biscuits", + "all-purpose flour", + "milk", + "pork sausages" + ] + }, + { + "id": 31014, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "ground nutmeg", + "butter", + "garlic cloves", + "dried thyme", + "chicken breasts", + "ground allspice", + "low-fat sour cream", + "finely chopped onion", + "port", + "chicken livers", + "black pepper", + "cooking spray", + "salt", + "fat free cream cheese" + ] + }, + { + "id": 38446, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "soft taco size flour tortillas", + "chopped cilantro fresh", + "chicken broth", + "flour", + "salt", + "diced green chilies", + "butter", + "jack cheese", + "cooked chicken", + "sour cream" + ] + }, + { + "id": 46847, + "cuisine": "southern_us", + "ingredients": [ + "sharp cheddar cheese", + "butter", + "boiling water", + "large eggs", + "ham", + "cayenne pepper", + "grits" + ] + }, + { + "id": 5273, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "leeks", + "garlic cloves", + "white kidney beans", + "lime juice", + "peeled fresh ginger", + "pepitas", + "water", + "pumpkin", + "salt", + "serrano chile", + "brown sugar", + "olive oil", + "light coconut milk", + "chopped cilantro fresh" + ] + }, + { + "id": 43614, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "soy sauce", + "minced garlic", + "sugar", + "toasted sesame oil" + ] + }, + { + "id": 30505, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "sea salt", + "Madras curry powder", + "fresh basil", + "honey", + "fresh mint", + "white peaches", + "ground black pepper", + "champagne vinegar", + "mozzarella cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 40068, + "cuisine": "mexican", + "ingredients": [ + "lime", + "ground black pepper", + "vine ripened tomatoes", + "kosher salt", + "taco seasoning mix", + "green onions", + "sour cream", + "avocado", + "refried beans", + "sliced black olives", + "purple onion", + "shredded cheddar cheese", + "garlic powder", + "lean ground beef", + "chopped cilantro fresh" + ] + }, + { + "id": 26965, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "onions", + "whipping cream", + "monterey jack", + "butter", + "cooked chicken breasts", + "green chile", + "cream cheese" + ] + }, + { + "id": 33949, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh oregano", + "chicken thighs", + "crushed red pepper", + "fresh mushrooms", + "plum tomatoes", + "pinot noir", + "chopped onion", + "cooked vermicelli", + "black pepper", + "salt", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 31057, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "mushrooms", + "salt", + "thyme", + "stock", + "leeks", + "red wine", + "carrots", + "onions", + "beef", + "parsley", + "salt pork", + "celery", + "flour", + "butter", + "garlic cloves", + "bay leaf" + ] + }, + { + "id": 27183, + "cuisine": "brazilian", + "ingredients": [ + "fat free less sodium chicken broth", + "chopped green bell pepper", + "clam juice", + "garlic cloves", + "large shrimp", + "olive oil", + "green onions", + "light coconut milk", + "fresh lime juice", + "tomatoes", + "ground black pepper", + "ground red pepper", + "salt", + "bay leaf", + "fresh cilantro", + "finely chopped onion", + "sea bass fillets", + "red bell pepper" + ] + }, + { + "id": 20627, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "unsalted butter", + "fresh shiitake mushrooms", + "all-purpose flour", + "corn kernels", + "whole milk", + "whipping cream", + "poblano chiles", + "melted butter", + "queso manchego", + "corn oil", + "fine sea salt", + "chopped garlic", + "fresh cilantro", + "large eggs", + "cilantro sprigs", + "garlic cloves" + ] + }, + { + "id": 3849, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "maple syrup", + "baking soda", + "buttermilk", + "sliced green onions", + "chicken breast tenders", + "butter", + "all-purpose flour", + "large eggs", + "salt" + ] + }, + { + "id": 15224, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "bacon slices", + "pepper", + "smoked cheddar cheese", + "cheddar cheese", + "pimentos", + "sugar", + "salt" + ] + }, + { + "id": 14171, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic cloves", + "vegetable oil", + "plum tomatoes", + "fresh coriander", + "scallions", + "chili", + "fresh lime juice" + ] + }, + { + "id": 9137, + "cuisine": "chinese", + "ingredients": [ + "crushed red pepper flakes", + "roasted peanuts", + "chopped cilantro fresh", + "fresh ginger root", + "tamari soy sauce", + "beansprouts", + "napa cabbage", + "capellini", + "toasted sesame oil", + "low sodium vegetable broth", + "garlic", + "peanut oil" + ] + }, + { + "id": 36967, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "salt", + "water", + "cornmeal", + "butter" + ] + }, + { + "id": 48070, + "cuisine": "italian", + "ingredients": [ + "sugar", + "ruby red grapefruit", + "campari" + ] + }, + { + "id": 6639, + "cuisine": "italian", + "ingredients": [ + "fava beans", + "dry white wine", + "garlic cloves", + "water", + "sea salt", + "black pepper", + "chopped fresh thyme", + "fresh parsley", + "fresh basil", + "pearl onions", + "extra-virgin olive oil" + ] + }, + { + "id": 36927, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "feta cheese crumbles", + "shallots", + "dried oregano", + "boneless chicken breast halves", + "low salt chicken broth", + "crushed tomatoes", + "brine-cured black olives" + ] + }, + { + "id": 15111, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "pitted kalamata olives", + "balsamic vinegar", + "fresh basil", + "bell pepper", + "black pepper", + "chopped fresh thyme" + ] + }, + { + "id": 30718, + "cuisine": "moroccan", + "ingredients": [ + "table salt", + "ground black pepper", + "chicken thighs", + "prunes", + "water", + "oil", + "slivered almonds", + "cinnamon", + "toasted sesame seeds", + "tumeric", + "honey", + "onions" + ] + }, + { + "id": 24394, + "cuisine": "italian", + "ingredients": [ + "pesto sauce", + "flour", + "thyme", + "water", + "basil", + "mozzarella cheese", + "egg yolks", + "chicken", + "milk", + "salt" + ] + }, + { + "id": 19176, + "cuisine": "korean", + "ingredients": [ + "water", + "sea salt", + "sugar", + "potatoes", + "onions", + "red chili powder", + "sesame seeds", + "green chilies", + "red chili peppers", + "green leaf lettuce", + "chopped garlic" + ] + }, + { + "id": 23479, + "cuisine": "british", + "ingredients": [ + "grated parmesan cheese", + "cake flour", + "coarse salt", + "olive oil", + "whipping cream", + "baking powder", + "onions" + ] + }, + { + "id": 1644, + "cuisine": "british", + "ingredients": [ + "whipping cream", + "pomegranate juice", + "strawberries", + "meringue nests", + "caster sugar" + ] + }, + { + "id": 46447, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "black olives", + "dried oregano", + "pasta sauce", + "lean ground beef", + "shredded mozzarella cheese", + "mushrooms", + "frozen corn kernels", + "italian seasoning", + "ground black pepper", + "green peas", + "onions" + ] + }, + { + "id": 11182, + "cuisine": "chinese", + "ingredients": [ + "lemongrass", + "salt and ground black pepper", + "oxtails", + "scallions", + "brown sugar", + "fresh ginger", + "beef stock", + "star anise", + "clove", + "lime", + "regular soy sauce", + "vegetable oil", + "garlic cloves", + "jasmine rice", + "shiitake", + "Shaoxing wine", + "thai chile" + ] + }, + { + "id": 33888, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "pepper", + "ground pork", + "carrots", + "ketchup", + "potatoes", + "salt", + "tomato sauce", + "water", + "garlic", + "onions", + "frozen sweet peas", + "quail eggs", + "raisins", + "oil" + ] + }, + { + "id": 39928, + "cuisine": "southern_us", + "ingredients": [ + "dark corn syrup", + "light corn syrup", + "baking soda", + "salted peanuts", + "water", + "vanilla extract", + "sugar", + "butter" + ] + }, + { + "id": 14613, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "ground black pepper", + "buttermilk", + "cayenne pepper", + "fresh parsley", + "creole mustard", + "olive oil", + "green onions", + "paprika", + "lemon juice", + "yellow corn meal", + "prepared horseradish", + "green tomatoes", + "garlic", + "medium shrimp", + "ketchup", + "minced onion", + "worcestershire sauce", + "mixed greens" + ] + }, + { + "id": 44719, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "finely chopped onion", + "kosher salt", + "italian seasoning mix", + "crushed tomatoes", + "extra-virgin olive oil", + "tomato sauce", + "honey", + "smoked sausage" + ] + }, + { + "id": 31404, + "cuisine": "chinese", + "ingredients": [ + "celery ribs", + "ginger", + "Yakisoba noodles", + "white sugar", + "soy sauce", + "oil", + "corn starch", + "crimini mushrooms", + "garlic cloves", + "mung bean sprouts", + "green cabbage", + "rice vinegar", + "carrots", + "snow peas" + ] + }, + { + "id": 34332, + "cuisine": "british", + "ingredients": [ + "granulated sugar", + "whipping cream", + "sherry wine", + "raspberries", + "almond extract", + "salt", + "toasted slivered almonds", + "ladyfingers", + "egg yolks", + "vanilla extract", + "corn starch", + "milk", + "butter", + "strawberries" + ] + }, + { + "id": 23821, + "cuisine": "italian", + "ingredients": [ + "egg whites", + "white sugar", + "brewed coffee", + "kirschwasser", + "mascarpone", + "heavy cream", + "ladyfingers", + "egg yolks", + "unsweetened cocoa powder" + ] + }, + { + "id": 17968, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "unsalted butter", + "salt", + "parmigiano reggiano cheese", + "semolina", + "whole milk" + ] + }, + { + "id": 10548, + "cuisine": "french", + "ingredients": [ + "sliced almonds", + "salt", + "olive oil", + "tilapia fillets", + "all-purpose flour", + "butter" + ] + }, + { + "id": 20772, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "water", + "peeled fresh ginger", + "salt", + "fresh lime juice", + "cooked rice", + "fat free less sodium chicken broth", + "cooking spray", + "crushed red pepper", + "garlic cloves", + "low sodium soy sauce", + "lime rind", + "pork tenderloin", + "light coconut milk", + "all-purpose flour", + "sugar pea", + "honey", + "sesame oil", + "rice vinegar" + ] + }, + { + "id": 19059, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "unsalted butter", + "whole milk", + "all purpose unbleached flour", + "molasses", + "egg yolks", + "ice water", + "salt", + "table salt", + "granulated sugar", + "bourbon whiskey", + "vanilla extract", + "ground nutmeg", + "sweet potatoes", + "vegetable shortening", + "dark brown sugar" + ] + }, + { + "id": 47902, + "cuisine": "brazilian", + "ingredients": [ + "shortening", + "flour", + "salt", + "onions", + "eggs", + "ground black pepper", + "sherry", + "oil", + "tomato paste", + "hearts of palm", + "egg yolks", + "beer", + "plum tomatoes", + "tumeric", + "unsalted butter", + "butter", + "shrimp" + ] + }, + { + "id": 32171, + "cuisine": "indian", + "ingredients": [ + "sugar", + "all-purpose flour", + "milk", + "water", + "oil", + "salt" + ] + }, + { + "id": 23400, + "cuisine": "british", + "ingredients": [ + "milk", + "butter", + "vanilla essence", + "egg whites", + "lemon", + "powdered sugar", + "self rising flour", + "double cream", + "caster sugar", + "rum", + "salt" + ] + }, + { + "id": 6796, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "dry red wine", + "spaghetti", + "sausage links", + "boneless skinless chicken breasts", + "juice", + "sugar", + "heavy cream", + "onions", + "green bell pepper", + "olive oil", + "garlic cloves", + "oregano" + ] + }, + { + "id": 10194, + "cuisine": "french", + "ingredients": [ + "olive oil", + "chopped fresh thyme", + "cream cheese", + "large eggs", + "whipping cream", + "fresh lemon juice", + "smoked salmon", + "leeks", + "dry bread crumbs", + "frozen pastry puff sheets", + "cheese", + "soft fresh goat cheese" + ] + }, + { + "id": 48416, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "ciabatta", + "cooked shrimp", + "ground black pepper", + "white beans", + "fresh basil leaves", + "fresh rosemary", + "garlic", + "garlic chili sauce", + "chicken stock", + "extra-virgin olive oil", + "fresh lemon juice", + "arugula" + ] + }, + { + "id": 28458, + "cuisine": "italian", + "ingredients": [ + "sugar", + "garlic powder", + "ground turkey", + "eggs", + "bread crumbs", + "white wine vinegar", + "onions", + "tomatoes", + "ketchup", + "basil", + "rotini", + "spinach", + "minced garlic", + "beef broth", + "italian seasoning" + ] + }, + { + "id": 41296, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "garlic powder", + "green cardamom", + "clove", + "mace", + "red food coloring", + "cumin seed", + "black peppercorns", + "cinnamon", + "brown cardamom", + "ground ginger", + "coriander seeds", + "salt", + "methi" + ] + }, + { + "id": 42342, + "cuisine": "vietnamese", + "ingredients": [ + "rice stick noodles", + "lemon grass", + "cilantro leaves", + "beansprouts", + "red chili peppers", + "cinnamon", + "firm tofu", + "peppercorns", + "fish sauce", + "lime wedges", + "chili sauce", + "fresh parsley", + "fresh ginger", + "salt", + "oyster sauce" + ] + }, + { + "id": 26131, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "red pepper flakes", + "boneless skinless chicken breast halves", + "vegetables", + "shredded mozzarella cheese", + "basil dried leaves", + "spaghetti" + ] + }, + { + "id": 25487, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "green onions", + "ground pork", + "chili sauce", + "water", + "szechwan peppercorns", + "garlic", + "corn starch", + "soy sauce", + "bean paste", + "ginger", + "oil", + "eggplant", + "sesame oil", + "chili bean paste", + "fermented black beans" + ] + }, + { + "id": 38914, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "ground red pepper", + "all-purpose flour", + "garlic powder", + "sandwich buns", + "tomatoes", + "vegetable oil", + "tartar sauce", + "catfish fillets", + "lettuce leaves", + "salt" + ] + }, + { + "id": 18363, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "bow-tie pasta", + "shallots", + "asparagus", + "bread crumb fresh", + "blue cheese" + ] + }, + { + "id": 29223, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "diced tomatoes", + "yellow onion", + "dried oregano", + "taco shells", + "cheese", + "garlic cloves", + "dried lentils", + "vegetable broth", + "oil", + "ground cumin", + "lettuce", + "chili powder", + "salsa", + "sour cream" + ] + }, + { + "id": 29373, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "ground pork", + "fresh pineapple", + "chiles", + "chinese sausage", + "rice vinegar", + "jasmine rice", + "hoisin sauce", + "scallions", + "low sodium soy sauce", + "fresh ginger", + "cilantro leaves", + "canola oil" + ] + }, + { + "id": 39493, + "cuisine": "japanese", + "ingredients": [ + "chili flakes", + "bonito flakes", + "shrimp", + "tentacles", + "sesame seeds", + "salt", + "chopped cilantro", + "eggs", + "jalapeno chilies", + "coconut aminos", + "coconut oil", + "coconut flour", + "beansprouts" + ] + }, + { + "id": 6706, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "butternut squash", + "salt", + "dried thyme", + "paprika", + "shrimp", + "unsalted butter", + "whipping cream", + "curry powder", + "ground red pepper", + "yellow onion" + ] + }, + { + "id": 14764, + "cuisine": "french", + "ingredients": [ + "pastry shell", + "camembert", + "chopped walnuts", + "vinaigrette", + "field lettuce", + "gala apples" + ] + }, + { + "id": 1049, + "cuisine": "mexican", + "ingredients": [ + "fillet red snapper", + "shredded cabbage", + "ground coriander", + "fresh lime juice", + "ground cumin", + "garlic powder", + "reduced-fat sour cream", + "smoked paprika", + "fat-free mayonnaise", + "lime rind", + "ground red pepper", + "garlic cloves", + "chopped cilantro fresh", + "cooking spray", + "salt", + "corn tortillas", + "sliced green onions" + ] + }, + { + "id": 44438, + "cuisine": "french", + "ingredients": [ + "lemon juice", + "minced garlic", + "cayenne", + "mayonaise" + ] + }, + { + "id": 44291, + "cuisine": "filipino", + "ingredients": [ + "baking powder", + "Edam", + "grated coconut", + "salt", + "melted butter", + "beaten eggs", + "coconut milk", + "granulated sugar", + "all-purpose flour" + ] + }, + { + "id": 46017, + "cuisine": "chinese", + "ingredients": [ + "dates", + "confectioners sugar", + "sugar", + "all-purpose flour", + "eggs", + "salt", + "baking powder", + "chopped walnuts" + ] + }, + { + "id": 39647, + "cuisine": "french", + "ingredients": [ + "great northern beans", + "fresh thyme", + "diced tomatoes in juice", + "water", + "dry white wine", + "onions", + "minced garlic", + "butternut squash", + "fresh parsley", + "fresh rosemary", + "olive oil", + "fresh oregano", + "bone in chicken thighs" + ] + }, + { + "id": 149, + "cuisine": "southern_us", + "ingredients": [ + "honey mustard", + "seasoning salt", + "chili powder", + "paprika", + "tomato sauce", + "ground black pepper", + "butter", + "lemon juice", + "brown sugar", + "garlic powder", + "red wine vinegar", + "hot sauce", + "ketchup", + "ground red pepper", + "worcestershire sauce" + ] + }, + { + "id": 28848, + "cuisine": "indian", + "ingredients": [ + "prawns", + "onions", + "curry paste", + "chopped tomatoes", + "coriander" + ] + }, + { + "id": 46860, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "pecorino romano cheese", + "fresh parsley", + "chicken stock", + "grated parmesan cheese", + "bow-tie pasta", + "prosciutto", + "whipping cream", + "frozen peas", + "fontina cheese", + "butter", + "baby carrots" + ] + }, + { + "id": 39008, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "parmesan cheese", + "ground beef", + "dried oregano", + "tomato sauce", + "dried basil", + "red wine", + "onions", + "tomato paste", + "crushed tomatoes", + "whole wheat spaghetti", + "fresh parsley", + "black pepper", + "olive oil", + "salt", + "meat sauce" + ] + }, + { + "id": 22072, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "boneless chicken", + "lemon juice", + "eggs", + "plain yogurt", + "green chilies", + "curry leaves", + "white flour", + "salt", + "ground turmeric", + "red chili powder", + "garam masala", + "oil" + ] + }, + { + "id": 27094, + "cuisine": "japanese", + "ingredients": [ + "water", + "red bean paste", + "flour", + "brown sugar", + "baking powder", + "eggs", + "honey" + ] + }, + { + "id": 39526, + "cuisine": "mexican", + "ingredients": [ + "cilantro", + "onions", + "tomatoes", + "taco seasoning", + "chickpeas", + "lime", + "garlic cloves" + ] + }, + { + "id": 48934, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "flour", + "olive oil", + "steak", + "milk", + "salt", + "eggs", + "garlic powder", + "steak seasoning" + ] + }, + { + "id": 19112, + "cuisine": "italian", + "ingredients": [ + "fronds", + "dijon mustard", + "lemon", + "fennel bulb", + "red wine vinegar", + "fresh parsley", + "prosciutto", + "chopped fresh thyme", + "frisee", + "olive oil", + "shallots", + "artichokes" + ] + }, + { + "id": 46516, + "cuisine": "southern_us", + "ingredients": [ + "mint", + "bourbon whiskey", + "water", + "fresh mint", + "sugar", + "sparkling wine", + "earl grey tea bags", + "fresh lime juice" + ] + }, + { + "id": 22215, + "cuisine": "mexican", + "ingredients": [ + "corn oil", + "yellow onion", + "Mexican cheese blend", + "salt", + "chiles", + "chili powder", + "flour tortillas", + "rice vinegar" + ] + }, + { + "id": 35620, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "vegetable oil", + "cilantro leaves", + "sour cream", + "lime juice", + "ancho powder", + "carrots", + "black beans", + "coarse salt", + "liquid", + "ground cumin", + "reduced sodium vegetable broth", + "honey", + "purple onion", + "country bread" + ] + }, + { + "id": 7361, + "cuisine": "chinese", + "ingredients": [ + "ground black pepper", + "cooked white rice", + "soy sauce", + "butter", + "eggs", + "vegetable oil", + "onions", + "water", + "chicken meat" + ] + }, + { + "id": 44980, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic", + "grated parmesan cheese", + "cavatelli", + "chicken broth", + "extra-virgin olive oil", + "onions", + "frozen broccoli florets", + "crushed red pepper" + ] + }, + { + "id": 47057, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "chili powder", + "ground coriander", + "olive oil", + "salt", + "ground beef", + "water", + "paprika", + "couscous", + "ground black pepper", + "ground caraway", + "onions" + ] + }, + { + "id": 26945, + "cuisine": "brazilian", + "ingredients": [ + "black pepper", + "ground nutmeg", + "whole milk", + "water", + "egg yolks", + "cayenne pepper", + "parmesan cheese", + "starch", + "kosher salt", + "large eggs", + "extra-virgin olive oil" + ] + }, + { + "id": 17704, + "cuisine": "mexican", + "ingredients": [ + "corn", + "sharp cheddar cheese", + "black beans", + "salsa", + "chili powder", + "water", + "green chilies" + ] + }, + { + "id": 1878, + "cuisine": "southern_us", + "ingredients": [ + "andouille sausage", + "green onions", + "garlic", + "chopped onion", + "low-fat milk", + "white bread", + "ground black pepper", + "cajun seasoning", + "salt", + "red bell pepper", + "sugar", + "baking powder", + "chopped celery", + "thyme", + "chicken broth", + "large eggs", + "butter", + "all-purpose flour", + "cornmeal" + ] + }, + { + "id": 33167, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "ground nutmeg", + "ground coriander", + "ground cloves", + "ground red pepper", + "ground cinnamon", + "ground black pepper", + "ground cumin", + "saffron threads", + "kosher salt", + "ground allspice" + ] + }, + { + "id": 8928, + "cuisine": "filipino", + "ingredients": [ + "powdered milk", + "sugar", + "coconut milk", + "evaporated milk", + "corn starch" + ] + }, + { + "id": 20715, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "escarole", + "dried currants", + "unsalted butter", + "chopped walnuts", + "rib", + "swiss chard", + "gyoza wrappers", + "flat leaf parsley", + "minced garlic", + "lemon zest", + "fresh lemon juice", + "onions" + ] + }, + { + "id": 13546, + "cuisine": "french", + "ingredients": [ + "eggs", + "clarified butter", + "salt", + "melted butter", + "all-purpose flour", + "milk" + ] + }, + { + "id": 1418, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "butter", + "peanut oil", + "parmesan cheese", + "salt", + "milk", + "kalamata", + "rice flour", + "large eggs", + "rice" + ] + }, + { + "id": 7849, + "cuisine": "chinese", + "ingredients": [ + "minced onion", + "dark brown sugar", + "garlic", + "vinegar", + "chillies", + "ground ginger", + "plums" + ] + }, + { + "id": 5661, + "cuisine": "chinese", + "ingredients": [ + "chicken wings", + "sesame oil", + "sesame seeds", + "rice vinegar", + "soy sauce", + "garlic", + "peeled fresh ginger" + ] + }, + { + "id": 22343, + "cuisine": "japanese", + "ingredients": [ + "garam masala", + "butter", + "cayenne pepper", + "chicken thighs", + "kosher salt", + "flour", + "tonkatsu sauce", + "carrots", + "ketchup", + "ground black pepper", + "peas", + "oil", + "water", + "yukon gold potatoes", + "apples", + "onions" + ] + }, + { + "id": 964, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "cheese", + "thyme leaves", + "broccoli florets", + "penne pasta", + "oregano leaves", + "grated parmesan cheese", + "salt", + "cooked chicken breasts", + "rosemary leaves", + "and fat free half half" + ] + }, + { + "id": 44109, + "cuisine": "chinese", + "ingredients": [ + "water chestnuts", + "salt", + "pepper", + "sesame oil", + "onions", + "eggs", + "spring onions", + "oil", + "fish paste", + "cornflour" + ] + }, + { + "id": 9326, + "cuisine": "spanish", + "ingredients": [ + "hot red pepper flakes", + "garlic cloves", + "extra-virgin olive oil", + "baby spinach", + "thick-cut bacon", + "chickpeas" + ] + }, + { + "id": 35518, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "cooking oil", + "goat cheese", + "dried tarragon leaves", + "eggplant", + "salt", + "eggs", + "olive oil", + "grated parmesan cheese", + "onions", + "sugar", + "ground black pepper", + "dry bread crumbs" + ] + }, + { + "id": 32861, + "cuisine": "greek", + "ingredients": [ + "ground nutmeg", + "kefalotyri", + "eggs", + "freshly ground pepper", + "filo dough", + "unsalted butter", + "chopped fresh mint", + "spinach", + "feta cheese crumbles" + ] + }, + { + "id": 18800, + "cuisine": "thai", + "ingredients": [ + "straw mushrooms", + "thai chile", + "kaffir lime leaves", + "fresh cilantro", + "chicken broth", + "lime juice", + "medium shrimp", + "fish sauce", + "chile paste" + ] + }, + { + "id": 4241, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "french baguette", + "butter", + "pepper", + "garlic", + "grated parmesan cheese" + ] + }, + { + "id": 28571, + "cuisine": "italian", + "ingredients": [ + "sugar", + "dark rum", + "unsweetened cocoa powder", + "mascarpone", + "vanilla extract", + "water", + "heavy cream", + "ladyfingers", + "egg yolks", + "brewed espresso" + ] + }, + { + "id": 1086, + "cuisine": "cajun_creole", + "ingredients": [ + "chiles", + "green pepper", + "tomatoes", + "boneless skinless chicken breasts", + "onions", + "tomato paste", + "olive oil", + "cream of mushroom soup", + "cooked rice", + "smoked sausage" + ] + }, + { + "id": 8779, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "green peas", + "organic vegetable broth", + "Madras curry powder", + "fat free yogurt", + "butter", + "all-purpose flour", + "red bell pepper", + "large shrimp", + "peeled fresh ginger", + "salt", + "garlic cloves", + "basmati rice", + "water", + "diced tomatoes", + "chopped onion", + "coconut milk" + ] + }, + { + "id": 7722, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "feta cheese crumbles", + "boneless skinless chicken breasts", + "fresh spinach", + "chicken" + ] + }, + { + "id": 31795, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "kidney beans", + "garlic", + "dried oregano", + "chicken bouillon", + "vegetable oil", + "long-grain rice", + "hot sausage", + "bay leaves", + "yellow onion", + "sliced green onions", + "dried thyme", + "cajun seasoning", + "celery" + ] + }, + { + "id": 34561, + "cuisine": "japanese", + "ingredients": [ + "water", + "vanilla extract", + "egg yolks", + "white sugar", + "milk", + "lemon juice", + "adzuki beans", + "heavy cream" + ] + }, + { + "id": 33851, + "cuisine": "mexican", + "ingredients": [ + "roasted red peppers", + "shredded mozzarella cheese", + "kalamata", + "fresh parsley", + "bacon pieces", + "feta cheese crumbles", + "tortillas", + "Land O Lakes® Butter" + ] + }, + { + "id": 27274, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "chopped onion", + "chile powder", + "beef broth", + "masa harina", + "salt", + "dark beer", + "jalapeno chilies", + "lean beef", + "ground cumin" + ] + }, + { + "id": 3194, + "cuisine": "chinese", + "ingredients": [ + "unsalted butter", + "kosher salt", + "rice vinegar", + "chicken wings", + "vegetable oil", + "honey", + "hot chili sauce" + ] + }, + { + "id": 40356, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "jalapeno chilies", + "onions", + "pepper", + "garlic cloves", + "olive oil", + "fresh lime juice", + "vegetable oil cooking spray", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 10683, + "cuisine": "indian", + "ingredients": [ + "mint leaves", + "kosher salt", + "cumin seed", + "water", + "greek style plain yogurt" + ] + }, + { + "id": 35234, + "cuisine": "indian", + "ingredients": [ + "channa dal", + "green chilies", + "cashew nuts", + "fresh curry leaves", + "urad dal", + "oil", + "asafetida", + "red chili peppers", + "ginger", + "cumin seed", + "basmati rice", + "coconut", + "salt", + "mustard seeds" + ] + }, + { + "id": 30830, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "dry mustard", + "celery seed", + "napa cabbage", + "carrots", + "sugar", + "extra-virgin olive oil", + "hungarian paprika", + "white wine vinegar" + ] + }, + { + "id": 49230, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "crumbled cornbread", + "pepper", + "salt", + "green onions", + "mayonaise", + "bacon slices" + ] + }, + { + "id": 10758, + "cuisine": "southern_us", + "ingredients": [ + "white bread", + "ground nutmeg", + "salt", + "black pepper", + "sweet potatoes", + "lemon juice", + "olive oil", + "butter", + "granny smith apples", + "cooking spray", + "maple syrup" + ] + }, + { + "id": 30365, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "shallots", + "rice vermicelli", + "brown cardamom", + "fish sauce", + "mint leaves", + "ginger", + "beef broth", + "beansprouts", + "clove", + "beef", + "cinnamon", + "cilantro leaves", + "scallions", + "ground black pepper", + "lime wedges", + "thai chile", + "beef rib short" + ] + }, + { + "id": 41858, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "hoisin sauce", + "all-purpose flour", + "onions", + "warm water", + "dry yeast", + "oyster sauce", + "pork", + "baking powder", + "corn starch", + "shortening", + "soy sauce", + "garlic", + "lard" + ] + }, + { + "id": 30084, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "parmesan cheese", + "garlic", + "onions", + "sausage casings", + "milk", + "butter", + "ground beef", + "fontina", + "flour", + "salt", + "rigatoni", + "pepper", + "fresh mozzarella", + "sliced mushrooms" + ] + }, + { + "id": 33416, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "half & half", + "potato flakes", + "ground turmeric", + "water", + "ground black pepper", + "green onions", + "chicken-flavored soup powder", + "curry powder", + "potatoes", + "cayenne pepper", + "onions", + "soy sauce", + "kidney beans", + "whole milk", + "ground white pepper" + ] + }, + { + "id": 41924, + "cuisine": "greek", + "ingredients": [ + "nonfat plain greek yogurt", + "juice", + "clove", + "tenderloin", + "cucumber", + "pepper", + "extra-virgin olive oil", + "fresh parsley", + "Cavenders Greek Seasoning", + "salt", + "dried oregano" + ] + }, + { + "id": 47094, + "cuisine": "brazilian", + "ingredients": [ + "diced tomatoes", + "shrimp", + "olive oil", + "salt", + "fresh lime juice", + "fresh cilantro", + "garlic", + "coconut milk", + "roasted red peppers", + "hot sauce", + "onions" + ] + }, + { + "id": 39979, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "cheddar cheese", + "baking powder", + "scallions", + "unsalted butter", + "all-purpose flour", + "sugar", + "buttermilk" + ] + }, + { + "id": 42391, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "red food coloring", + "brown sugar", + "fresh ginger", + "chinese five-spice powder", + "pork baby back ribs", + "bourbon whiskey", + "honey", + "salt" + ] + }, + { + "id": 37491, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "butternut squash", + "passata", + "low-fat coconut milk", + "fresh coriander", + "red pepper", + "ginger root", + "white onion", + "baby spinach", + "cumin seed", + "tumeric", + "garam masala", + "garlic" + ] + }, + { + "id": 15587, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "vegetable oil", + "ground cardamom", + "tumeric", + "shallots", + "fenugreek seeds", + "ground cumin", + "fresh curry leaves", + "grated nutmeg", + "onions", + "hot red pepper flakes", + "brown mustard seeds", + "garlic cloves" + ] + }, + { + "id": 19465, + "cuisine": "mexican", + "ingredients": [ + "white corn tortillas", + "2% reduced-fat milk", + "white beans", + "poblano chiles", + "Mexican cheese blend", + "purple onion", + "frozen corn", + "sliced green onions", + "ground black pepper", + "part-skim ricotta cheese", + "all-purpose flour", + "chopped cilantro fresh", + "large eggs", + "salt", + "red bell pepper" + ] + }, + { + "id": 3161, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "salt", + "saffron threads", + "ground nutmeg", + "ground ginger", + "ground black pepper", + "mace", + "ground allspice" + ] + }, + { + "id": 7913, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "sausages", + "tomatoes with juice", + "onions", + "potatoes", + "carrots", + "salt", + "dried oregano" + ] + }, + { + "id": 25373, + "cuisine": "indian", + "ingredients": [ + "white onion", + "mustard seeds", + "tumeric", + "vegetable oil", + "cooked rice", + "corn kernels", + "chiles", + "salt" + ] + }, + { + "id": 23066, + "cuisine": "russian", + "ingredients": [ + "olive oil", + "all purpose unbleached flour", + "hot sauce", + "onions", + "warm water", + "vinegar", + "ground pork", + "sour cream", + "melted butter", + "ground pepper", + "buttermilk", + "garlic cloves", + "ketchup", + "large eggs", + "salt", + "ground turkey" + ] + }, + { + "id": 35865, + "cuisine": "mexican", + "ingredients": [ + "chile pepper", + "ground beef", + "picante sauce", + "sour cream", + "monterey jack", + "yellow onion", + "vegetarian refried beans", + "chili powder", + "muenster cheese" + ] + }, + { + "id": 7168, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "cooking oil", + "chicken meat", + "oil", + "lettuce", + "ground pepper", + "green onions", + "dark sesame oil", + "toasted sesame seeds", + "soy sauce", + "sherry", + "salt", + "toasted almonds", + "bean threads", + "vinegar", + "corn oil", + "peanut oil" + ] + }, + { + "id": 6637, + "cuisine": "italian", + "ingredients": [ + "pepper", + "parmesan cheese", + "fresh parsley", + "manicotti shells", + "part-skim mozzarella cheese", + "ricotta cheese", + "eggs", + "water", + "onion powder", + "pasta sauce", + "garlic powder", + "frozen chopped spinach, thawed and squeezed dry" + ] + }, + { + "id": 38462, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "rice vinegar", + "white tuna in water", + "chili powder", + "cucumber", + "wasabi paste", + "white rice", + "nori", + "avocado", + "water", + "carrots" + ] + }, + { + "id": 2565, + "cuisine": "southern_us", + "ingredients": [ + "bacon slices", + "cabbage", + "salt", + "pepper" + ] + }, + { + "id": 25288, + "cuisine": "mexican", + "ingredients": [ + "shredded reduced fat cheddar cheese", + "salsa", + "lean ground turkey", + "fat-free refried beans", + "cooked chicken breasts", + "nonfat greek yogurt", + "chopped cilantro", + "cooked brown rice", + "whole wheat tortillas" + ] + }, + { + "id": 32495, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "chili powder", + "cumin seed", + "coriander powder", + "green peas", + "onions", + "garam masala", + "cinnamon", + "oil", + "clove", + "potatoes", + "salt" + ] + }, + { + "id": 49626, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "extra-virgin olive oil", + "all-purpose flour", + "olive oil", + "leeks", + "salt", + "large eggs", + "cheese", + "sliced green onions", + "cold milk", + "grated parmesan cheese", + "purple onion" + ] + }, + { + "id": 49635, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "fresh thyme", + "extra-virgin olive oil", + "tomato sauce", + "ground black pepper", + "grated horseradish", + "flat leaf parsley", + "brown chicken stock", + "kosher salt", + "dry white wine", + "veal shanks", + "celery ribs", + "spanish onion", + "lemon", + "carrots" + ] + }, + { + "id": 31722, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "self rising flour", + "unsalted butter", + "buttermilk" + ] + }, + { + "id": 18578, + "cuisine": "irish", + "ingredients": [ + "fat free yogurt", + "biscuit mix", + "large eggs", + "fresh parmesan cheese", + "dried chives", + "cooking spray" + ] + }, + { + "id": 45145, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "fenugreek", + "malt vinegar", + "lemon juice", + "ground cumin", + "garam masala", + "butter", + "black salt", + "mango", + "bay leaves", + "black cumin seeds", + "rock salt", + "ginger paste", + "garlic paste", + "cinnamon", + "lamb", + "masala" + ] + }, + { + "id": 35800, + "cuisine": "italian", + "ingredients": [ + "crushed garlic", + "mozzarella cheese", + "pesto", + "chicken breasts" + ] + }, + { + "id": 42004, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "noodles", + "chili flakes", + "peanuts", + "veggies", + "tomato sauce", + "roasted white sesame seeds", + "ginger", + "sugar", + "spring onions", + "salt" + ] + }, + { + "id": 21822, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "instant yeast", + "salt", + "water", + "butter", + "melted butter", + "refined sugar", + "grating cheese", + "sugar", + "egg yolks", + "all-purpose flour" + ] + }, + { + "id": 40135, + "cuisine": "moroccan", + "ingredients": [ + "water", + "cinnamon", + "garlic", + "onions", + "ground cumin", + "tumeric", + "harissa", + "cilantro", + "cayenne pepper", + "saffron", + "preserved lemon", + "honey", + "paprika", + "salt", + "olives", + "pepper", + "parsley", + "ginger", + "oil", + "chicken" + ] + }, + { + "id": 26930, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "ranch dressing", + "taco seasoning", + "flour tortillas", + "cheese", + "water", + "cilantro", + "onions", + "chicken breasts", + "salsa" + ] + }, + { + "id": 11598, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "flour", + "pepper", + "bread crumbs", + "sea salt", + "eggs", + "parmigiano reggiano cheese" + ] + }, + { + "id": 3715, + "cuisine": "brazilian", + "ingredients": [ + "potatoes", + "frozen corn kernels", + "mayonaise", + "apples", + "frozen peas", + "pimentos", + "carrots", + "pepper", + "salt" + ] + }, + { + "id": 27448, + "cuisine": "french", + "ingredients": [ + "butter", + "garlic cloves", + "milk", + "salt", + "gruyere cheese", + "yukon gold potatoes", + "shredded mozzarella cheese" + ] + }, + { + "id": 21378, + "cuisine": "french", + "ingredients": [ + "olive oil", + "garlic cloves", + "onions", + "pepper", + "bouquet garni", + "flat leaf parsley", + "flour", + "carrots", + "beef shoulder", + "salt", + "Burgundy wine" + ] + }, + { + "id": 41925, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "dried thyme", + "garlic cloves", + "plum tomatoes", + "pepper", + "lobster", + "fresh parsley", + "brandy", + "olive oil", + "bay leaf", + "water", + "clam juice", + "onions" + ] + }, + { + "id": 28076, + "cuisine": "italian", + "ingredients": [ + "fresh thyme leaves", + "sourdough baguette", + "pepper", + "chanterelle", + "fresh chives", + "salt", + "olive oil", + "champagne vinegar" + ] + }, + { + "id": 15150, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "baguette", + "baking potatoes", + "carrots", + "black pepper", + "cayenne", + "sea salt", + "celery ribs", + "reduced sodium chicken broth", + "unsalted butter", + "cumin seed", + "roasted cashews", + "curry powder", + "florets", + "onions" + ] + }, + { + "id": 33054, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "water", + "shallots", + "salt", + "oyster sauce", + "crisps", + "sweet soy sauce", + "chicken meat", + "scallions", + "white pepper", + "cooking oil", + "garlic", + "yams", + "soy sauce", + "shiitake", + "sesame oil", + "rice", + "dried shrimp" + ] + }, + { + "id": 41546, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "melted butter", + "stuffing mix", + "boneless skinless chicken breasts", + "condensed cream of chicken soup" + ] + }, + { + "id": 32413, + "cuisine": "italian", + "ingredients": [ + "garlic", + "parmesan cheese", + "flat leaf parsley", + "capers", + "fresh lemon juice", + "extra-virgin olive oil", + "arugula" + ] + }, + { + "id": 20818, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "tomatillos", + "corn tortillas", + "chiles", + "olive oil", + "garlic", + "shredded Monterey Jack cheese", + "black peppercorns", + "fresh cilantro", + "cheese", + "chopped cilantro", + "white onion", + "bone in", + "sour cream" + ] + }, + { + "id": 29834, + "cuisine": "chinese", + "ingredients": [ + "mayonaise", + "egg whites", + "corn starch", + "water", + "lemon juice", + "sugar", + "oil", + "sweetened condensed milk", + "walnut halves", + "honey", + "shrimp" + ] + }, + { + "id": 27406, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "chopped fresh thyme", + "bay leaf", + "mussels", + "dry white wine", + "garlic cloves", + "olive oil", + "shallots", + "fresh lemon juice", + "finely chopped fresh parsley", + "salt", + "onions" + ] + }, + { + "id": 49010, + "cuisine": "italian", + "ingredients": [ + "warm water", + "prosciutto", + "egg yolks", + "salt", + "muenster cheese", + "genoa salami", + "mozzarella cheese", + "large eggs", + "whole milk ricotta cheese", + "pepperoni", + "eggs", + "parmesan cheese", + "flour", + "vegetable shortening", + "ham", + "black pepper", + "ground black pepper", + "baking powder", + "soppressata", + "fresh parsley" + ] + }, + { + "id": 15540, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "garlic cloves", + "picante sauce", + "chopped onion", + "ground cumin", + "black beans", + "diced tomatoes", + "chopped cilantro fresh", + "reduced fat monterey jack cheese", + "vegetable oil", + "fresh lime juice" + ] + }, + { + "id": 10492, + "cuisine": "italian", + "ingredients": [ + "spaghetti sauce seasoning mix", + "vegetable oil", + "water", + "ground beef", + "tomato paste", + "lasagna noodles", + "mozzarella cheese", + "gravy mix mushroom" + ] + }, + { + "id": 15716, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "orecchiette", + "broccoli rabe", + "garlic cloves", + "olive oil" + ] + }, + { + "id": 18942, + "cuisine": "japanese", + "ingredients": [ + "olive oil", + "salt", + "minced garlic", + "ground black pepper", + "sweet onion", + "unsalted butter", + "fresh chives", + "miso paste", + "boneless rib eye steaks" + ] + }, + { + "id": 17928, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "vegetable oil", + "boneless skinless chicken breast halves", + "dried basil", + "all-purpose flour", + "pepper", + "salt", + "tomato sauce", + "grated parmesan cheese", + "panko breadcrumbs" + ] + }, + { + "id": 45731, + "cuisine": "italian", + "ingredients": [ + "pepper", + "parmesan cheese", + "purple onion", + "plum tomatoes", + "artichoke hearts", + "red wine vinegar", + "provolone cheese", + "red leaf lettuce", + "vegetable oil", + "salt", + "italian seasoning", + "garlic powder", + "pitted olives", + "dried parsley" + ] + }, + { + "id": 5713, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "whipping cream", + "chop fine pecan", + "fruit", + "pound cake", + "rum" + ] + }, + { + "id": 3490, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "salt", + "fast rising yeast", + "water", + "eggs", + "vegetable oil", + "bread crumbs", + "bread flour" + ] + }, + { + "id": 31843, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "shredded mozzarella cheese", + "flour tortillas", + "pepperoni slices", + "ground beef", + "fresh basil", + "pizza sauce" + ] + }, + { + "id": 36291, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "mo hanh", + "cilantro", + "ground white pepper", + "light brown sugar", + "lemongrass", + "jalapeno chilies", + "cilantro leaves", + "vegan mayonnaise", + "liquid aminos", + "pickled carrots", + "vegetable oil", + "ground coriander", + "baguette", + "extra firm tofu", + "garlic", + "cucumber" + ] + }, + { + "id": 38284, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "flour tortillas", + "salt", + "ground cumin", + "olive oil", + "chili powder", + "garlic cloves", + "frozen whole kernel corn", + "chees fresco queso", + "fresh lime juice", + "fresh cilantro", + "boneless skinless chicken breasts", + "chunky" + ] + }, + { + "id": 31800, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "fresh tarragon", + "grits", + "tasso", + "unsalted butter", + "butter", + "freshly ground pepper", + "sharp white cheddar cheese", + "vegetable oil", + "beer", + "large shrimp", + "chicken stock", + "large eggs", + "heavy cream", + "garlic cloves" + ] + }, + { + "id": 24001, + "cuisine": "jamaican", + "ingredients": [ + "eggs", + "curry powder", + "vegetable fats", + "margarine", + "cold water", + "white onion", + "ground black pepper", + "vegetable oil", + "bread crumbs", + "dried thyme", + "beef stock", + "minced beef", + "plain flour", + "water", + "hot pepper sauce", + "salt" + ] + }, + { + "id": 40354, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "freshly ground pepper", + "water", + "turnip greens", + "salt pork" + ] + }, + { + "id": 25156, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "parmigiano reggiano cheese", + "ground pork", + "yellow onion", + "bay leaf", + "pancetta", + "veal demi-glace", + "ground veal", + "salt", + "unsalted beef stock", + "tagliatelle", + "sage leaves", + "fettucine", + "dry white wine", + "extra-virgin olive oil", + "freshly ground pepper", + "ground beef", + "celery ribs", + "unsalted butter", + "heavy cream", + "grated nutmeg", + "carrots" + ] + }, + { + "id": 38485, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "low sodium chicken broth", + "cajun seasoning", + "smoked paprika", + "green bell pepper", + "shallots", + "garlic", + "tomato paste", + "bay leaves", + "gluten", + "bone in chicken thighs", + "andouille sausage", + "vegetable oil", + "cayenne pepper" + ] + }, + { + "id": 14450, + "cuisine": "mexican", + "ingredients": [ + "ground round", + "diced tomatoes", + "canola oil", + "kosher salt", + "garlic cloves", + "black beans", + "chopped onion", + "ground cumin", + "reduced fat sharp cheddar cheese", + "chili powder", + "long grain white rice" + ] + }, + { + "id": 15490, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "ground coriander", + "salt", + "paprika", + "ground cumin", + "ground ginger", + "cayenne pepper" + ] + }, + { + "id": 10043, + "cuisine": "southern_us", + "ingredients": [ + "American cheese", + "buttermilk", + "eggs", + "milk", + "salt", + "pepper", + "bacon", + "shortening", + "self rising flour", + "all-purpose flour" + ] + }, + { + "id": 37975, + "cuisine": "southern_us", + "ingredients": [ + "toasted walnuts", + "mixed greens", + "vinaigrette", + "fresh blueberries", + "crumbled gorgonzola" + ] + }, + { + "id": 45849, + "cuisine": "italian", + "ingredients": [ + "angel hair", + "heavy cream", + "Meyer lemon juice", + "red vermouth", + "garlic", + "kosher salt", + "diced tomatoes", + "dried oregano", + "olive oil", + "cracked black pepper", + "large shrimp" + ] + }, + { + "id": 45420, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "garlic powder", + "dried minced onion", + "shredded cheddar cheese", + "salt", + "dried oregano", + "eggs", + "milk", + "sausages", + "pepper", + "lean ground beef", + "spaghetti" + ] + }, + { + "id": 23207, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "cayenne pepper", + "pepper", + "garlic", + "olive oil", + "salt", + "red wine vinegar" + ] + }, + { + "id": 45112, + "cuisine": "mexican", + "ingredients": [ + "Ortega Tostada Shells", + "chopped tomatoes", + "chunky mild salsa", + "cheese spread", + "diced green chilies" + ] + }, + { + "id": 18557, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "vinegar", + "wonton wrappers", + "garlic", + "shrimp", + "black pepper", + "spring onions", + "ground pork", + "seaweed", + "soy sauce", + "green onions", + "chili oil", + "salt", + "leaves", + "sesame oil", + "ginger", + "oyster sauce" + ] + }, + { + "id": 1813, + "cuisine": "italian", + "ingredients": [ + "red bell pepper", + "olive oil", + "wild mushrooms", + "fontina cheese", + "marjoram", + "purple onion", + "rigatoni" + ] + }, + { + "id": 29640, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "fresh lemon juice", + "egg yolks", + "garlic cloves", + "mild olive oil" + ] + }, + { + "id": 36304, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "ginger", + "shrimp", + "ground black pepper", + "garlic", + "onions", + "red chili peppers", + "thai chile", + "coconut milk", + "cooking oil", + "green chilies" + ] + }, + { + "id": 45349, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "white sugar", + "water", + "sesame seeds", + "warm water", + "dried basil", + "dried oregano", + "high gluten bread flour", + "salt" + ] + }, + { + "id": 48363, + "cuisine": "japanese", + "ingredients": [ + "shiro miso", + "corn kernels", + "green onions", + "chili oil", + "soybean sprouts", + "pork bones", + "brown sugar", + "mirin", + "vegetable oil", + "garlic", + "ramen", + "eggs", + "fresh ginger", + "sesame oil", + "red pepper flakes", + "frozen corn kernels", + "nori", + "soy sauce", + "pork tenderloin", + "butter", + "aka miso", + "bamboo shoots" + ] + }, + { + "id": 36344, + "cuisine": "chinese", + "ingredients": [ + "fresh chives", + "cucumber", + "avocado", + "dipping sauces", + "rice vermicelli", + "fresh basil leaves", + "spring roll wrappers", + "carrots" + ] + }, + { + "id": 13848, + "cuisine": "cajun_creole", + "ingredients": [ + "lemon", + "small red potato", + "salt", + "garlic", + "onions", + "crawfish", + "ear of corn" + ] + }, + { + "id": 29906, + "cuisine": "cajun_creole", + "ingredients": [ + "grated orange peel", + "extra-virgin olive oil", + "fleur de sel", + "tomatoes", + "baby greens", + "garlic cloves", + "canola oil", + "bread crumb fresh", + "all-purpose flour", + "ice", + "vidalia onion", + "baking powder", + "corn starch" + ] + }, + { + "id": 3883, + "cuisine": "chinese", + "ingredients": [ + "hot red pepper flakes", + "peanut oil" + ] + }, + { + "id": 10833, + "cuisine": "chinese", + "ingredients": [ + "chili", + "ginger", + "scallions", + "broth", + "soy sauce", + "cooking oil", + "salt", + "oil", + "honey", + "star anise", + "chinese five-spice powder", + "pork belly", + "szechwan peppercorns", + "rice vinegar", + "toasted sesame seeds" + ] + }, + { + "id": 1907, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "firm silken tofu", + "paprika", + "all-purpose flour", + "snow peas", + "low sodium soy sauce", + "dried thyme", + "peeled fresh ginger", + "salt", + "dill", + "water", + "large eggs", + "yellow bell pepper", + "dry bread crumbs", + "plum tomatoes", + "angel hair", + "ground black pepper", + "vegetable oil", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 44173, + "cuisine": "british", + "ingredients": [ + "cremini mushrooms", + "dried thyme", + "red wine", + "carrots", + "tomato paste", + "water", + "flour", + "salt", + "onions", + "pastry", + "unsalted butter", + "worcestershire sauce", + "celery", + "eggs", + "milk", + "beef stock", + "eye of round roast", + "canola oil" + ] + }, + { + "id": 3982, + "cuisine": "chinese", + "ingredients": [ + "water", + "egg whites", + "crushed red pepper", + "orange juice", + "soy sauce", + "orange", + "sesame oil", + "rice vinegar", + "chicken", + "brown sugar", + "minced ginger", + "green onions", + "salt", + "corn starch", + "boneless chicken skinless thigh", + "vegetables", + "garlic", + "sauce" + ] + }, + { + "id": 24977, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "cider vinegar", + "white sugar", + "black pepper", + "salt", + "sweet onion" + ] + }, + { + "id": 5298, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "chinese noodles", + "rice vinegar", + "soy sauce", + "vegetable oil", + "scallions", + "red chili peppers", + "pork loin", + "dried shiitake mushrooms", + "chicken broth", + "chilegarlic sauce", + "ginger", + "toasted sesame oil" + ] + }, + { + "id": 11049, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "palm sugar", + "thai green curry paste", + "unsweetened coconut milk", + "lime juice", + "peas", + "fish sauce", + "asparagus", + "whitefish", + "thai basil", + "oil" + ] + }, + { + "id": 42935, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "parsley sprigs", + "garlic", + "grated lemon peel", + "prunes", + "shallots", + "low salt chicken broth", + "green cabbage", + "riesling", + "carrots", + "chicken", + "rosemary sprigs", + "extra-virgin olive oil", + "thyme sprigs" + ] + }, + { + "id": 40472, + "cuisine": "greek", + "ingredients": [ + "tahini", + "garlic cloves", + "great northern beans", + "paprika", + "fresh rosemary", + "ground red pepper", + "lemon juice", + "olive oil", + "salt" + ] + }, + { + "id": 29647, + "cuisine": "mexican", + "ingredients": [ + "extra-virgin olive oil", + "white onion", + "fresh lime juice", + "tomatoes", + "cilantro leaves", + "coarse salt", + "serrano chile" + ] + }, + { + "id": 15881, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "ground cinnamon", + "Mexican oregano", + "roasted garlic", + "clove", + "tortillas", + "salsa", + "ancho chile pepper", + "pork cutlets", + "fresca", + "fresh thyme leaves", + "cumin seed", + "avocado", + "kosher salt", + "lime wedges", + "allspice berries" + ] + }, + { + "id": 39031, + "cuisine": "spanish", + "ingredients": [ + "ice", + "red wine", + "apple juice", + "peaches" + ] + }, + { + "id": 30324, + "cuisine": "thai", + "ingredients": [ + "haricots verts", + "caster sugar", + "lime", + "ginger", + "garlic cloves", + "red chili peppers", + "curry powder", + "vegetable oil", + "salt", + "beansprouts", + "sambal ulek", + "fresh coriander", + "shallots", + "rice vermicelli", + "tofu puffs", + "Vietnamese coriander", + "lemongrass", + "vegetable stock", + "ground coriander", + "coconut milk" + ] + }, + { + "id": 35895, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "ground beef", + "pepperoni slices", + "rigatoni", + "mushrooms", + "italian sausage", + "shredded mozzarella cheese" + ] + }, + { + "id": 23192, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "ground red pepper", + "salt", + "black pepper", + "chips", + "cajun seasoning", + "sugar", + "flour tortillas", + "onion powder", + "dried thyme", + "cooking spray", + "paprika" + ] + }, + { + "id": 1251, + "cuisine": "indian", + "ingredients": [ + "water", + "cumin seed", + "fennel seeds", + "cayenne pepper", + "white sugar", + "garam masala", + "asafoetida powder", + "ground ginger", + "tamarind paste", + "canola oil" + ] + }, + { + "id": 45801, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "ground black pepper", + "diced tomatoes", + "red bell pepper", + "canola oil", + "avocado", + "lime", + "hand", + "yellow onion", + "bone in skin on chicken thigh", + "chicken stock", + "olive oil", + "whole peeled tomatoes", + "carrots", + "iceberg lettuce", + "shredded cheddar cheese", + "unsalted butter", + "garlic", + "celery", + "masa harina" + ] + }, + { + "id": 1208, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "boneless skinless chicken breasts", + "salt", + "light soy sauce", + "hot pepper", + "pepper", + "sesame oil", + "white sugar", + "green onions", + "raw cashews" + ] + }, + { + "id": 47359, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "buttermilk", + "baking soda", + "cornmeal", + "eggs", + "jalapeno chilies", + "pork", + "salt" + ] + }, + { + "id": 6178, + "cuisine": "mexican", + "ingredients": [ + "pickled jalapenos", + "cumin", + "cold water", + "whole milk", + "American cheese", + "green chile", + "juice" + ] + }, + { + "id": 17718, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "daikon", + "sesame seeds", + "rice vinegar", + "soy sauce", + "dried bonito flakes", + "sesame oil", + "nori" + ] + }, + { + "id": 45153, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "whole peeled tomatoes", + "onions", + "green bell pepper", + "diced tomatoes", + "tomato sauce", + "garlic", + "tomato purée", + "vegetable oil", + "italian seasoning" + ] + }, + { + "id": 18283, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "shallots", + "salt", + "leeks", + "fresh tarragon", + "tagliatelle", + "unsalted butter", + "heavy cream", + "ground white pepper", + "lump crab meat", + "dry white wine", + "shells" + ] + }, + { + "id": 40729, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "vinegar", + "sour cream", + "pork", + "salt", + "shredded Monterey Jack cheese", + "tomato sauce", + "purple onion", + "chopped cilantro", + "salsa verde", + "tortilla chips" + ] + }, + { + "id": 4841, + "cuisine": "spanish", + "ingredients": [ + "vinegar", + "purple onion", + "anchovies", + "red wine vinegar", + "preserved lemon", + "baby arugula", + "fennel bulb", + "extra-virgin olive oil" + ] + }, + { + "id": 33909, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "potatoes", + "fresh parsley", + "olive oil", + "sweet paprika", + "sugar", + "chili powder", + "onions", + "chopped tomatoes", + "garlic cloves" + ] + }, + { + "id": 21807, + "cuisine": "british", + "ingredients": [ + "plain flour", + "potatoes", + "salt", + "ground lamb", + "water", + "butter", + "carrots", + "pepper", + "leeks", + "oil", + "lamb bouillon cube", + "worcestershire sauce", + "bay leaf" + ] + }, + { + "id": 6195, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "ground beef", + "tomato sauce", + "basil", + "pasta", + "minced onion", + "oregano", + "cottage cheese", + "salt" + ] + }, + { + "id": 44544, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "cooking oil", + "coconut cream", + "chili pepper", + "garlic", + "onions", + "fresh spinach", + "ginger", + "banana peppers", + "ground black pepper", + "tilapia" + ] + }, + { + "id": 8146, + "cuisine": "mexican", + "ingredients": [ + "rub", + "unsalted butter", + "epazote", + "salmon fillets", + "corn oil", + "scallions", + "corn", + "coarse salt", + "ancho chile pepper", + "chipotle chile", + "Mexican oregano", + "garlic cloves" + ] + }, + { + "id": 42418, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "basil", + "oregano", + "red wine vinegar", + "salt", + "boneless chicken breast", + "cheese", + "pepper", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 49122, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "semisweet chocolate", + "blanched almonds", + "large egg yolks", + "whole milk", + "water", + "egg whites", + "unsweetened cocoa powder", + "unsalted butter", + "whipping cream" + ] + }, + { + "id": 21957, + "cuisine": "japanese", + "ingredients": [ + "cream of tartar", + "butter", + "salt", + "egg whites", + "vanilla extract", + "lemon juice", + "egg yolks", + "cake flour", + "fine granulated sugar", + "milk", + "cornflour", + "cream cheese" + ] + }, + { + "id": 39168, + "cuisine": "russian", + "ingredients": [ + "mashed potatoes", + "potatoes", + "salt", + "jeera", + "bread crumb fresh", + "chili powder", + "sauce", + "chaat masala", + "soy sauce", + "capsicum", + "tomato ketchup", + "bamboo shoots", + "tomatoes", + "vinegar", + "cracked black pepper", + "oil", + "chopped garlic" + ] + }, + { + "id": 21445, + "cuisine": "italian", + "ingredients": [ + "water", + "extra-virgin olive oil", + "dried parsley", + "black pepper", + "dried thyme", + "salt", + "dried oregano", + "tomato purée", + "pork shoulder roast", + "garlic", + "white sugar", + "white wine", + "garlic powder", + "yellow onion", + "dried rosemary" + ] + }, + { + "id": 19372, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "anise", + "sugar", + "frozen pastry puff sheets", + "vanilla ice cream", + "fennel bulb", + "water", + "golden delicious apples" + ] + }, + { + "id": 16592, + "cuisine": "korean", + "ingredients": [ + "large eggs", + "firm tofu", + "toasted sesame oil", + "gochugaru", + "hot sauce", + "carrots", + "spinach", + "rice vinegar", + "rice", + "toasted sesame seeds", + "zucchini", + "Gochujang base", + "red bell pepper" + ] + }, + { + "id": 1346, + "cuisine": "greek", + "ingredients": [ + "kalamata", + "dried oregano", + "fresh tomatoes", + "cucumber", + "feta cheese crumbles", + "olive oil", + "hummus" + ] + }, + { + "id": 34435, + "cuisine": "cajun_creole", + "ingredients": [ + "bell pepper", + "stewed tomatoes", + "creole seasoning", + "black pepper", + "parsley", + "shells", + "onions", + "tomato sauce", + "flour", + "sprinkles", + "oil", + "water", + "red pepper", + "salt" + ] + }, + { + "id": 47282, + "cuisine": "french", + "ingredients": [ + "sugar", + "vanilla extract", + "lemon", + "kosher salt", + "eggs", + "heavy cream" + ] + }, + { + "id": 27, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic cloves", + "cooked white rice", + "white onion", + "cilantro", + "corn tortillas", + "avocado", + "serrano peppers", + "carrots", + "chicken", + "water", + "salt", + "celery" + ] + }, + { + "id": 306, + "cuisine": "spanish", + "ingredients": [ + "dried tarragon leaves", + "vegetable oil", + "salt", + "sliced mushrooms", + "cooked rice", + "dried basil", + "raisins", + "beef broth", + "bay leaf", + "tomatoes", + "pepper", + "apricot halves", + "all-purpose flour", + "ripe olives", + "green bell pepper", + "stewing beef", + "dry red wine", + "garlic cloves", + "onions" + ] + }, + { + "id": 23214, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "dried rosemary", + "cherry tomatoes", + "extra-virgin olive oil", + "fresh basil", + "sea salt", + "ground oregano", + "nutritional yeast", + "medjool date" + ] + }, + { + "id": 9682, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "extra firm tofu", + "corn starch", + "hoisin sauce", + "garlic", + "Sriracha", + "sesame oil", + "cooked rice", + "agave nectar", + "broccoli" + ] + }, + { + "id": 12573, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "zucchini", + "extra-virgin olive oil", + "fresh basil leaves", + "black pepper", + "bell pepper", + "flat leaf parsley", + "eggplant", + "large garlic cloves", + "onions", + "fresh basil", + "parmigiano reggiano cheese", + "salt" + ] + }, + { + "id": 36936, + "cuisine": "italian", + "ingredients": [ + "reduced fat milk", + "butter", + "dry bread crumbs", + "spaghetti", + "black pepper", + "cooking spray", + "salt", + "garlic cloves", + "chicken stock", + "broccoli florets", + "dry sherry", + "provolone cheese", + "dried oregano", + "dried basil", + "cooked chicken", + "all-purpose flour", + "sliced mushrooms" + ] + }, + { + "id": 34945, + "cuisine": "jamaican", + "ingredients": [ + "shortening", + "dried thyme", + "dry bread crumbs", + "water", + "all-purpose flour", + "ground beef", + "pepper", + "salt", + "margarine", + "eggs", + "curry powder", + "beef broth", + "onions" + ] + }, + { + "id": 40121, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "onions", + "red wine vinegar", + "sugar", + "salt", + "olive oil" + ] + }, + { + "id": 38543, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "chicken cutlets", + "chopped parsley", + "pepper", + "salt", + "white wine", + "extra-virgin olive oil", + "part-skim mozzarella", + "grated parmesan cheese", + "flour for dusting" + ] + }, + { + "id": 34600, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "fish stock", + "fresh parsley", + "bread crumb fresh", + "shallots", + "salt", + "tomatoes", + "ground black pepper", + "butter", + "garlic cloves", + "cod", + "olive oil", + "chopped fresh thyme", + "fresh mushrooms" + ] + }, + { + "id": 41496, + "cuisine": "mexican", + "ingredients": [ + "jumbo shrimp", + "vegetable oil", + "chopped fresh mint", + "red chili peppers", + "dark brown sugar", + "mango", + "chiles", + "salt", + "chopped cilantro fresh", + "shallots", + "fresh lime juice", + "ground cumin" + ] + }, + { + "id": 15800, + "cuisine": "indian", + "ingredients": [ + "chiles", + "chana dal", + "black mustard seeds", + "asafetida (powder)", + "dry coconut", + "cumin seed", + "water", + "urad dal", + "fresh curry leaves", + "vegetable oil", + "green beans" + ] + }, + { + "id": 1167, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "leeks", + "linguine", + "low salt chicken broth", + "dried basil", + "chicken breast halves", + "margarine", + "black pepper", + "ground red pepper", + "salt", + "ground cumin", + "tomatoes", + "garlic powder", + "paprika", + "garlic cloves" + ] + }, + { + "id": 11816, + "cuisine": "british", + "ingredients": [ + "rolled oats", + "butter", + "raisins", + "brown sugar", + "golden syrup" + ] + }, + { + "id": 134, + "cuisine": "indian", + "ingredients": [ + "water", + "bay leaf", + "dried lentils", + "cardamom pods", + "allspice", + "salt", + "basmati rice", + "butter", + "onions" + ] + }, + { + "id": 24491, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "butter", + "sauce", + "large eggs", + "all-purpose flour", + "shrimp", + "minced garlic", + "shredded lettuce", + "rolls", + "milk", + "salt", + "peanut oil" + ] + }, + { + "id": 45397, + "cuisine": "cajun_creole", + "ingredients": [ + "Knorr® Fiesta Sides Spanish Rice", + "large shrimp", + "andouille sausage", + "vegetable oil", + "water", + "garlic", + "green bell pepper", + "boneless skinless chicken breasts" + ] + }, + { + "id": 20086, + "cuisine": "mexican", + "ingredients": [ + "bacon", + "chorizo", + "salt", + "dried pinto beans", + "poblano chilies" + ] + }, + { + "id": 4437, + "cuisine": "mexican", + "ingredients": [ + "jicama", + "lime", + "cucumber", + "cayenne", + "paprika" + ] + }, + { + "id": 25196, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "sweet onion", + "salt", + "frozen peas", + "pickles", + "parsley", + "carrots", + "pepper", + "white wine vinegar", + "cucumber", + "mayonaise", + "hard-boiled egg", + "waxy potatoes" + ] + }, + { + "id": 20049, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "peaches", + "butter", + "all-purpose flour", + "slivered almonds", + "large eggs", + "vanilla extract", + "brown sugar", + "granulated sugar", + "ice water", + "water", + "cooking spray", + "salt" + ] + }, + { + "id": 7535, + "cuisine": "indian", + "ingredients": [ + "whitefish fillets", + "vegetable broth", + "ground coriander", + "chopped cilantro fresh", + "ground black pepper", + "salt", + "cashew nuts", + "canola oil", + "fresh ginger root", + "garlic", + "onions", + "ground turmeric", + "tomatoes", + "dijon mustard", + "cayenne pepper", + "white sugar", + "ground cumin" + ] + }, + { + "id": 26784, + "cuisine": "indian", + "ingredients": [ + "eggs", + "potatoes", + "cilantro", + "oil", + "cauliflower", + "red chili peppers", + "sweet potatoes", + "salt", + "onions", + "fennel seeds", + "peanuts", + "whole wheat tortillas", + "cumin seed", + "tumeric", + "flour", + "ginger", + "garlic cloves" + ] + }, + { + "id": 25603, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "purple onion", + "scallions", + "monterey jack", + "brown sugar", + "ground black pepper", + "hot pepper", + "tortilla chips", + "pork shoulder", + "ketchup", + "bourbon whiskey", + "sea salt", + "beer", + "pork rub", + "whole grain mustard", + "apple cider vinegar", + "goat cheese", + "smoked paprika", + "ground cumin" + ] + }, + { + "id": 20655, + "cuisine": "french", + "ingredients": [ + "asparagus", + "chopped fresh thyme", + "all-purpose flour", + "fresh parsley", + "green onions", + "1% low-fat milk", + "crabmeat", + "powdered milk", + "dry sherry", + "margarine", + "ground red pepper", + "salt", + "lemon juice" + ] + }, + { + "id": 48118, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "peanut oil", + "large eggs", + "rice", + "milk", + "all-purpose flour", + "salt" + ] + }, + { + "id": 24964, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "garlic", + "fresh parsley", + "ground cumin", + "tomatoes", + "jalapeno chilies", + "ground coriander", + "boneless skinless chicken breast halves", + "fresh ginger", + "salt", + "onions", + "pepper", + "light coconut milk", + "ground cayenne pepper", + "ground turmeric" + ] + }, + { + "id": 45535, + "cuisine": "brazilian", + "ingredients": [ + "tapioca flour", + "grated parmesan cheese", + "milk", + "cheddar cheese", + "large eggs", + "kosher salt", + "canola oil" + ] + }, + { + "id": 16498, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "sesame oil", + "warm water", + "soft tofu", + "rice vermicelli", + "water", + "green onions", + "beansprouts", + "wakame", + "enokitake", + "miso" + ] + }, + { + "id": 31372, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "lemon pepper", + "margarine", + "all-purpose flour", + "cornmeal", + "catfish" + ] + }, + { + "id": 45266, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "cajun seasoning", + "salt", + "scallions", + "onions", + "water", + "diced tomatoes", + "hot sauce", + "bay leaf", + "tomato sauce", + "worcestershire sauce", + "all-purpose flour", + "celery", + "large shrimp", + "olive oil", + "garlic", + "cayenne pepper", + "fresh parsley" + ] + }, + { + "id": 18963, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "lettuce leaves", + "garlic", + "sake", + "vinegar", + "ginger", + "japanese rice", + "cherry tomatoes", + "sesame oil", + "pork loin chops", + "soy sauce", + "green onions", + "oil" + ] + }, + { + "id": 23460, + "cuisine": "chinese", + "ingredients": [ + "shrimp", + "chicken wings", + "coriander", + "mi" + ] + }, + { + "id": 24832, + "cuisine": "italian", + "ingredients": [ + "crumbled blue cheese", + "chopped pecans", + "baguette", + "butter" + ] + }, + { + "id": 30104, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "ground red pepper", + "all-purpose flour", + "no salt added chicken broth", + "tomatoes", + "dried thyme", + "chopped celery", + "garlic cloves", + "long grain white rice", + "dried basil", + "vegetable oil", + "chopped onion", + "fresh parsley", + "vegetable oil cooking spray", + "chopped green bell pepper", + "salt", + "shrimp" + ] + }, + { + "id": 34807, + "cuisine": "mexican", + "ingredients": [ + "potatoes", + "salt", + "water", + "diced tomatoes", + "garlic powder", + "smoked sausage", + "pepper", + "boneless skinless chicken breasts" + ] + }, + { + "id": 6858, + "cuisine": "japanese", + "ingredients": [ + "ground cinnamon", + "large egg whites", + "baking soda", + "salt", + "water", + "olive oil", + "lager", + "kabocha squash", + "vanilla beans", + "vegetable oil spray", + "whole milk", + "heavy whipping cream", + "unflavored gelatin", + "golden brown sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 37452, + "cuisine": "korean", + "ingredients": [ + "vegetable oil", + "toasted sesame seeds", + "granulated sugar", + "scallions", + "sesame oil", + "garlic cloves", + "dark soy sauce", + "sirloin steak" + ] + }, + { + "id": 35055, + "cuisine": "japanese", + "ingredients": [ + "granulated sugar", + "toasted sesame seeds", + "light soy sauce", + "rice vinegar", + "bonito flakes", + "canola oil", + "shredded coleslaw mix", + "scallions" + ] + }, + { + "id": 18728, + "cuisine": "moroccan", + "ingredients": [ + "lemon", + "couscous", + "harissa paste", + "purple onion", + "ground cumin", + "cherry tomatoes", + "canned tomatoes", + "coriander", + "butternut squash", + "skinless chicken breasts" + ] + }, + { + "id": 15757, + "cuisine": "irish", + "ingredients": [ + "1% low-fat buttermilk", + "cooking spray", + "all-purpose flour", + "sugar", + "large egg yolks", + "butter", + "ground cinnamon", + "large egg whites", + "baking powder", + "granny smith apples", + "baking soda", + "salt" + ] + }, + { + "id": 35027, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "spaghetti", + "red chili peppers", + "fresh oregano", + "fresh basil", + "large garlic cloves", + "cherry tomatoes", + "fresh basil leaves" + ] + }, + { + "id": 30581, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "chopped onion", + "italian seasoning", + "green bell pepper", + "turkey sausage", + "sliced mushrooms", + "green olives", + "grated parmesan cheese", + "garlic cloves", + "tomato sauce", + "salt", + "Italian bread" + ] + }, + { + "id": 36325, + "cuisine": "cajun_creole", + "ingredients": [ + "coarse salt", + "cayenne pepper", + "green bell pepper", + "purple onion", + "garlic cloves", + "celery ribs", + "diced tomatoes", + "okra", + "andouille sausage", + "all-purpose flour", + "large shrimp" + ] + }, + { + "id": 14682, + "cuisine": "korean", + "ingredients": [ + "vanilla", + "milk", + "glutinous rice flour", + "brown sugar", + "salt", + "baking soda" + ] + }, + { + "id": 11820, + "cuisine": "italian", + "ingredients": [ + "fresh lemon juice", + "sugar", + "fresh mint" + ] + }, + { + "id": 33311, + "cuisine": "mexican", + "ingredients": [ + "nacho chips", + "cream cheese", + "monterey jack", + "milk", + "purple onion", + "chopped cilantro", + "deveined shrimp", + "sour cream", + "jalapeno chilies", + "mild cheddar cheese", + "plum tomatoes" + ] + }, + { + "id": 34595, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "fish stock", + "onions", + "pepper", + "salt", + "saffron", + "white wine", + "garlic", + "olives", + "olive oil", + "squid" + ] + }, + { + "id": 27807, + "cuisine": "greek", + "ingredients": [ + "sugar", + "lettuce leaves", + "chopped parsley", + "greek seasoning", + "olive oil", + "purple onion", + "medium shrimp", + "minced garlic", + "black olives", + "rotini", + "mayonaise", + "chopped tomatoes", + "lemon juice" + ] + }, + { + "id": 7251, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "yoghurt", + "diced tomatoes", + "cumin seed", + "clarified butter", + "garlic paste", + "garam masala", + "red pepper", + "red food coloring", + "bay leaf", + "ginger paste", + "boneless chicken skinless thigh", + "coriander powder", + "heavy cream", + "salt", + "chopped cilantro", + "fennel seeds", + "olive oil", + "onion powder", + "green peas", + "lemon juice", + "basmati rice" + ] + }, + { + "id": 38600, + "cuisine": "italian", + "ingredients": [ + "pork country-style ribs", + "water", + "pasta sauce", + "olive oil" + ] + }, + { + "id": 42312, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "potatoes", + "corn syrup", + "olive oil", + "red pepper flakes", + "soy sauce", + "sesame oil", + "clove", + "sesame seeds", + "garlic" + ] + }, + { + "id": 39522, + "cuisine": "moroccan", + "ingredients": [ + "large eggs", + "chickpea flour", + "fine sea salt", + "extra-virgin olive oil", + "water", + "ground cumin" + ] + }, + { + "id": 3428, + "cuisine": "mexican", + "ingredients": [ + "whole almonds", + "large eggs", + "vanilla", + "unsalted butter", + "heavy cream", + "confectioners sugar", + "light brown sugar", + "granulated sugar", + "light corn syrup", + "bittersweet chocolate", + "milk", + "cinnamon", + "salt" + ] + }, + { + "id": 33458, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "fresh thyme", + "old bay seasoning", + "panko breadcrumbs", + "bread crumbs", + "dried basil", + "chopped fresh thyme", + "cooked shrimp", + "eggs", + "water", + "flour", + "salt", + "extra sharp cheddar cheese", + "kosher salt", + "olive oil", + "lemon", + "corn grits" + ] + }, + { + "id": 27409, + "cuisine": "french", + "ingredients": [ + "salmon fillets", + "chopped fresh chives", + "salt", + "black pepper", + "peas", + "chopped garlic", + "sugar pea", + "heavy cream", + "fresh lemon juice", + "Boston lettuce", + "lemon zest", + "extra-virgin olive oil" + ] + }, + { + "id": 38384, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salsa", + "avocado", + "purple onion", + "rotisserie chicken", + "heavy cream", + "grated jack cheese", + "zucchini", + "cilantro leaves", + "enchilada sauce" + ] + }, + { + "id": 15896, + "cuisine": "moroccan", + "ingredients": [ + "minced garlic", + "vinegar", + "finely chopped fresh parsley", + "ground cumin", + "pepper", + "zucchini", + "olive oil", + "chopped cilantro fresh" + ] + }, + { + "id": 31516, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "vanilla extract", + "cayenne", + "espresso", + "agave nectar", + "coconut milk", + "chocolate chunks", + "sea salt" + ] + }, + { + "id": 30337, + "cuisine": "mexican", + "ingredients": [ + "water", + "salt", + "canola oil", + "tomatoes", + "garlic", + "chopped cilantro", + "jalapeno chilies", + "chopped onion", + "ground cumin", + "pepper", + "chicken stock cubes", + "long grain white rice" + ] + }, + { + "id": 11291, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "hot dogs", + "sweet peas", + "horseradish sauce", + "eggs", + "white pepper", + "russet potatoes", + "dill pickles", + "mayonaise", + "green onions", + "hot chili sauce", + "oregano", + "regular sour cream", + "fresh cilantro", + "cracked black pepper", + "carrots" + ] + }, + { + "id": 38029, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "fat free less sodium chicken broth", + "garlic cloves", + "cooked turkey", + "fresh lime juice", + "clove", + "lime wedges", + "chopped cilantro fresh" + ] + }, + { + "id": 41442, + "cuisine": "italian", + "ingredients": [ + "pepper", + "heavy cream", + "penne pasta", + "pinenuts", + "basil leaves", + "salt", + "grated parmesan cheese", + "garlic", + "roasted red peppers", + "extra-virgin olive oil" + ] + }, + { + "id": 30192, + "cuisine": "mexican", + "ingredients": [ + "reduced sodium chicken broth", + "salt", + "white onion", + "pork country-style ribs", + "red chili peppers", + "garlic", + "dried oregano", + "cold water", + "white hominy", + "hot water" + ] + }, + { + "id": 7618, + "cuisine": "japanese", + "ingredients": [ + "frozen edamame beans", + "sake", + "green onions", + "soba noodles", + "sambal ulek", + "broccolini", + "sesame oil", + "low sodium soy sauce", + "salmon", + "rice wine", + "toasted sesame seeds", + "roasted cashews", + "fresh ginger", + "garlic" + ] + }, + { + "id": 4647, + "cuisine": "cajun_creole", + "ingredients": [ + "shortening", + "apples", + "cinnamon sugar", + "eggs", + "evaporated milk", + "all-purpose flour", + "yeast", + "powdered sugar", + "havarti cheese", + "vanilla bean paste", + "bread flour", + "sugar", + "salt", + "hot water" + ] + }, + { + "id": 6343, + "cuisine": "russian", + "ingredients": [ + "bouillon", + "mushrooms", + "paprika", + "red bell pepper", + "salmon fillets", + "watercress", + "corn starch", + "onions", + "hollandaise sauce", + "shallots", + "salt", + "sour cream", + "eggs", + "flour", + "butter", + "ground white pepper", + "long grain white rice" + ] + }, + { + "id": 43816, + "cuisine": "southern_us", + "ingredients": [ + "cream style corn", + "sour cream", + "butter", + "corn mix muffin", + "whole kernel corn, drain", + "large eggs" + ] + }, + { + "id": 44950, + "cuisine": "irish", + "ingredients": [ + "sugar", + "butter", + "mashed potatoes", + "potatoes", + "all-purpose flour", + "milk", + "salt", + "eggs", + "baking powder" + ] + }, + { + "id": 43946, + "cuisine": "southern_us", + "ingredients": [ + "sheepshead", + "fresh basil", + "freshly ground pepper", + "salt", + "butter" + ] + }, + { + "id": 34715, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "crushed red pepper", + "garlic cloves", + "green onions", + "rice vinegar", + "cucumber", + "chunky peanut butter", + "salt", + "carrots", + "sesame oil", + "soba noodles", + "coconut milk" + ] + }, + { + "id": 22074, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "ginger", + "oil", + "chicken wings", + "szechwan peppercorns", + "peanut oil", + "bamboo shoots", + "brown rice vinegar", + "honey", + "garlic", + "toasted sesame oil", + "soy sauce", + "cracked black pepper", + "scallions" + ] + }, + { + "id": 45848, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "white sugar", + "ground black pepper", + "minced garlic", + "canola oil", + "medium shrimp" + ] + }, + { + "id": 44141, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "provolone cheese", + "eggs", + "bacon", + "frozen chopped spinach", + "lasagna noodles", + "cottage cheese", + "cream cheese" + ] + }, + { + "id": 44283, + "cuisine": "filipino", + "ingredients": [ + "lemon", + "patis", + "onions", + "beef", + "salt", + "bok choy", + "pork", + "garlic", + "oil", + "potatoes", + "chinese cabbage", + "corn-on-the-cob" + ] + }, + { + "id": 47073, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "chopped celery", + "gnocchi", + "water", + "fat free less sodium beef broth", + "garlic cloves", + "black pepper", + "diced tomatoes", + "chopped onion", + "ground round", + "sliced carrots", + "salt", + "dried oregano" + ] + }, + { + "id": 21478, + "cuisine": "mexican", + "ingredients": [ + "chopped fresh thyme", + "fresh lemon juice", + "capers", + "fresh oregano", + "chopped fresh chives", + "garlic cloves", + "fresh rosemary", + "extra-virgin olive oil", + "fresh parsley" + ] + }, + { + "id": 26263, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "vegetable oil", + "peaches", + "cinnamon", + "brown sugar", + "quick-cooking oats", + "self rising flour", + "vanilla" + ] + }, + { + "id": 41734, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "red pepper", + "ground beef", + "chili", + "Shaoxing wine", + "peanut oil", + "iceberg lettuce", + "soy sauce", + "water chestnuts", + "garlic", + "onions", + "fresh ginger", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 13415, + "cuisine": "vietnamese", + "ingredients": [ + "baguette", + "cucumber", + "mayonaise", + "salt", + "chopped cilantro fresh", + "pepper", + "pork loin chops", + "chile sauce", + "purple onion", + "fresh lime juice" + ] + }, + { + "id": 44254, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "shredded cheddar cheese", + "ground beef", + "water", + "Pace Chunky Salsa", + "eggs", + "pepperidge farm puff pastry" + ] + }, + { + "id": 15488, + "cuisine": "mexican", + "ingredients": [ + "canned black beans", + "salt", + "water", + "diced onions", + "garlic", + "pepper", + "flavoring" + ] + }, + { + "id": 13331, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "fresh mint", + "egg yolks", + "raspberry liqueur", + "firmly packed light brown sugar", + "vanilla extract", + "sugar", + "fresh raspberries" + ] + }, + { + "id": 23504, + "cuisine": "chinese", + "ingredients": [ + "virginia ham", + "soy sauce", + "minced onion", + "fat", + "red chili peppers", + "water", + "garlic cloves", + "snow peas", + "chinese rice wine", + "black pepper", + "sirloin steak", + "corn starch", + "sugar", + "dried scallops", + "peanut oil", + "dried shrimp" + ] + }, + { + "id": 13167, + "cuisine": "indian", + "ingredients": [ + "spinach", + "chopped tomatoes", + "mango chutney", + "juice", + "lime", + "flour tortillas", + "cumin seed", + "onions", + "kosher salt", + "garam masala", + "chickpeas", + "cooked white rice", + "fresh ginger", + "jalapeno chilies", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 12990, + "cuisine": "thai", + "ingredients": [ + "water", + "roasted peanuts", + "sugar", + "shallots", + "unsweetened coconut milk", + "chile paste", + "asian fish sauce", + "cider vinegar", + "bone-in pork chops" + ] + }, + { + "id": 27983, + "cuisine": "chinese", + "ingredients": [ + "milk", + "salt", + "eggs", + "sesame seeds", + "bread flour", + "active dry yeast", + "white sugar", + "water", + "vegetable oil" + ] + }, + { + "id": 1665, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "mint leaves", + "fresh lime juice", + "red cabbage", + "cilantro leaves", + "mayonaise", + "jalapeno chilies", + "carrots", + "baguette", + "cooked chicken" + ] + }, + { + "id": 5411, + "cuisine": "spanish", + "ingredients": [ + "sun-dried tomatoes in oil", + "crushed red pepper flakes", + "pimenton de la vera", + "olives", + "garlic" + ] + }, + { + "id": 18201, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "orecchiette", + "black pepper", + "garlic", + "sausage casings", + "broccoli rabe", + "olive oil", + "crushed red pepper" + ] + }, + { + "id": 17142, + "cuisine": "mexican", + "ingredients": [ + "colby jack cheese", + "thin pizza crust", + "40% less sodium taco seasoning", + "reduced-fat sour cream", + "iceberg lettuce", + "tomatoes", + "recipe crumbles", + "fresh lime juice", + "black beans", + "salsa" + ] + }, + { + "id": 5092, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "red pepper", + "corn tortillas", + "bone-in chicken breast halves", + "vegetable oil", + "garlic cloves", + "chopped cilantro fresh", + "water", + "tomatillos", + "feta cheese crumbles", + "shredded Monterey Jack cheese", + "ground red pepper", + "salt", + "onions" + ] + }, + { + "id": 37447, + "cuisine": "mexican", + "ingredients": [ + "grating cheese", + "red kidney beans", + "ground beef", + "cornbread", + "stewed tomatoes", + "corn", + "onions" + ] + }, + { + "id": 41145, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil cooking spray", + "honey", + "pepper", + "chicken breast halves", + "wheat cereal", + "chop fine pecan", + "light soy sauce", + "salt" + ] + }, + { + "id": 5185, + "cuisine": "mexican", + "ingredients": [ + "salt", + "jalapeno chilies", + "garlic cloves", + "tomatoes", + "tortilla chips", + "cilantro sprigs", + "onions" + ] + }, + { + "id": 16952, + "cuisine": "italian", + "ingredients": [ + "vodka", + "ground black pepper", + "crushed red pepper", + "crushed tomatoes", + "extra-virgin olive oil", + "garlic cloves", + "kosher salt", + "diced tomatoes", + "anchovy fillets", + "pitted kalamata olives", + "fresh parmesan cheese", + "linguine" + ] + }, + { + "id": 20454, + "cuisine": "mexican", + "ingredients": [ + "lime", + "white rice", + "onions", + "boneless chicken skinless thigh", + "garlic powder", + "purple onion", + "dried oregano", + "black pepper", + "chili powder", + "salt", + "ground cumin", + "pepper", + "vegetable oil", + "frozen corn" + ] + }, + { + "id": 33880, + "cuisine": "cajun_creole", + "ingredients": [ + "spinach", + "pepper jack", + "ground black pepper", + "sea salt", + "olive oil", + "cajun seasoning", + "boneless chicken breast" + ] + }, + { + "id": 32987, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "tangerine juice", + "yellow corn meal", + "large eggs", + "all-purpose flour", + "tangerine", + "salt", + "cream sweeten whip", + "refrigerated piecrusts", + "lemon juice" + ] + }, + { + "id": 48015, + "cuisine": "japanese", + "ingredients": [ + "water", + "ponzu", + "salt", + "cabbage", + "sake", + "Mizkan Oigatsuo Tsuyu Soup Base", + "ginger", + "oil", + "gyoza", + "ground pork", + "scallions", + "white pepper", + "sesame oil", + "garlic", + "corn starch" + ] + }, + { + "id": 47228, + "cuisine": "korean", + "ingredients": [ + "water", + "garlic", + "onions", + "leeks", + "oyster mushrooms", + "marinade", + "salt", + "pork belly", + "sesame oil", + "kimchi" + ] + }, + { + "id": 12124, + "cuisine": "french", + "ingredients": [ + "ground cloves", + "ground nutmeg", + "1% low-fat milk", + "powdered sugar", + "large egg yolks", + "butter", + "ground ginger", + "molasses", + "granulated sugar", + "all-purpose flour", + "ground cinnamon", + "large egg whites", + "cooking spray" + ] + }, + { + "id": 46290, + "cuisine": "brazilian", + "ingredients": [ + "tomato paste", + "water", + "green onions", + "yellow bell pepper", + "red bell pepper", + "onions", + "clams", + "tomatoes", + "fresh cilantro", + "clam juice", + "gingerroot", + "medium shrimp", + "yellow corn meal", + "coconut", + "vegetable oil", + "salt", + "orange rind", + "evaporated skim milk", + "mussels", + "pepper", + "jalapeno chilies", + "cilantro", + "garlic cloves", + "fresh parsley" + ] + }, + { + "id": 2576, + "cuisine": "mexican", + "ingredients": [ + "water", + "chopped celery", + "poblano chiles", + "sweet onion", + "salt", + "chicken thighs", + "fat free less sodium chicken broth", + "olive oil", + "garlic cloves", + "jasmine rice", + "ground black pepper", + "rubbed sage" + ] + }, + { + "id": 35296, + "cuisine": "moroccan", + "ingredients": [ + "salt", + "bay leaves", + "coriander seeds", + "cumin seed", + "lemon" + ] + }, + { + "id": 13532, + "cuisine": "thai", + "ingredients": [ + "chile paste", + "romaine lettuce leaves", + "fresh lime juice", + "sliced green onions", + "bean thread vermicelli", + "unsalted dry roast peanuts", + "serrano chile", + "brown sugar", + "mint leaves", + "Thai fish sauce", + "boiling water", + "lemon grass", + "cilantro sprigs", + "medium shrimp" + ] + }, + { + "id": 31956, + "cuisine": "chinese", + "ingredients": [ + "water", + "Shaoxing wine", + "scallions", + "sugar", + "broccoli florets", + "garlic", + "corn starch", + "fresh ginger", + "vegetable oil", + "oyster sauce", + "soy sauce", + "low sodium chicken broth", + "flat iron steaks", + "toasted sesame oil" + ] + }, + { + "id": 63, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "ground nutmeg", + "vegetable oil", + "lamb", + "onions", + "tomato paste", + "water", + "vermicelli", + "cilantro leaves", + "smoked paprika", + "ground turmeric", + "caraway seeds", + "ground pepper", + "lemon wedge", + "dried chickpeas", + "flat leaf parsley", + "ground ginger", + "fava beans", + "flour", + "lemon", + "lentils", + "cooking salt" + ] + }, + { + "id": 18420, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "large garlic cloves", + "olive oil", + "crumbled gorgonzola", + "penne", + "fresh oregano", + "mushrooms", + "plum tomatoes" + ] + }, + { + "id": 9262, + "cuisine": "mexican", + "ingredients": [ + "seasoning salt", + "vegetable oil", + "peanuts", + "red chili peppers", + "fresh lime juice" + ] + }, + { + "id": 31238, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "salt", + "red chili peppers", + "plum tomatoes", + "unflavored gelatin", + "garlic cloves", + "extra-virgin olive oil" + ] + }, + { + "id": 44599, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "jasmine rice", + "olive oil", + "diced tomatoes", + "red bell pepper", + "tomatoes", + "corn", + "green onions", + "hamburger", + "chunky salsa", + "chicken stock", + "shredded cheddar cheese", + "diced green chilies", + "cilantro", + "sour cream", + "black beans", + "sweet onion", + "chili powder", + "taco seasoning" + ] + }, + { + "id": 9862, + "cuisine": "irish", + "ingredients": [ + "cayenne", + "paprika", + "lobster meat", + "unsalted butter", + "button mushrooms", + "ground black pepper", + "heavy cream", + "scallions", + "cooked rice", + "Irish whiskey", + "salt" + ] + }, + { + "id": 24462, + "cuisine": "french", + "ingredients": [ + "pitted kalamata olives", + "large eggs", + "fresh parsley", + "ground black pepper", + "salt", + "capers", + "dijon mustard", + "herbes de provence", + "sun-dried tomatoes", + "low-fat mayonnaise" + ] + }, + { + "id": 25265, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "veggies", + "onions", + "olive oil", + "garlic cloves", + "pepper", + "salt", + "chicken", + "dark soy sauce", + "bihon", + "oyster sauce" + ] + }, + { + "id": 11893, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "vegetable oil", + "yellow onion", + "cumin", + "black pepper", + "cayenne", + "garlic", + "sour cream", + "hominy", + "cilantro", + "mexican chorizo", + "shredded cheddar cheese", + "jalapeno chilies", + "salt", + "poblano chiles" + ] + }, + { + "id": 10755, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "peanuts", + "thai chile", + "shredded zucchini", + "cooked chicken breasts", + "honey", + "green onions", + "broccoli", + "carrots", + "water", + "vinegar", + "garlic", + "soba noodles", + "sugar", + "fresh ginger", + "sesame oil", + "peanut butter", + "yellow peppers" + ] + }, + { + "id": 8923, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "salt", + "biscuits", + "finely chopped onion", + "poultry seasoning", + "hot pepper sauce", + "all-purpose flour", + "milk", + "worcestershire sauce", + "pork sausages" + ] + }, + { + "id": 26148, + "cuisine": "moroccan", + "ingredients": [ + "cinnamon", + "lemon juice", + "cayenne", + "salt", + "fresh mint", + "honey", + "paprika", + "carrots", + "golden raisins", + "beets", + "ground cumin" + ] + }, + { + "id": 15841, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "large eggs", + "shallots", + "grated nutmeg", + "unsalted butter", + "mushrooms", + "salt", + "chicken broth", + "medium dry sherry", + "cooked chicken", + "all-purpose flour", + "asparagus", + "whole milk", + "heavy cream" + ] + }, + { + "id": 5797, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "large eggs", + "dijon style mustard", + "fresh lemon juice", + "tomatoes", + "cayenne", + "soft sandwich rolls", + "all-purpose flour", + "pickle relish", + "catfish fillets", + "pepper", + "cocktail sauce", + "salt", + "cornmeal", + "capers", + "lean bacon", + "vegetable oil", + "leaf lettuce", + "fish" + ] + }, + { + "id": 4197, + "cuisine": "italian", + "ingredients": [ + "butter", + "grated lemon zest", + "angel hair", + "salt", + "shrimp", + "large garlic cloves", + "fresh lemon juice", + "green onions", + "hot sauce", + "fresh parsley" + ] + }, + { + "id": 18902, + "cuisine": "french", + "ingredients": [ + "extra-virgin olive oil", + "cooking spray", + "center cut pork chops", + "ground black pepper", + "herbes de provence", + "coarse sea salt" + ] + }, + { + "id": 44206, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic cloves", + "red kidney beans", + "white rice", + "onions", + "chili powder", + "sour cream", + "cheddar cheese", + "salsa", + "cumin" + ] + }, + { + "id": 33536, + "cuisine": "mexican", + "ingredients": [ + "hot pepper sauce", + "salt", + "plum tomatoes", + "jalapeno chilies", + "corn tortillas", + "shredded Monterey Jack cheese", + "lime wedges", + "chopped cilantro fresh", + "sliced green onions", + "large eggs", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 11388, + "cuisine": "irish", + "ingredients": [ + "milk", + "mashed potatoes", + "salt", + "pepper", + "all-purpose flour", + "butter" + ] + }, + { + "id": 2221, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "canola oil", + "hot chili oil", + "rice vinegar", + "soy sauce", + "garlic", + "green onions", + "noodles" + ] + }, + { + "id": 3547, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "bell pepper", + "salt", + "thyme leaves", + "chicken", + "pepper", + "chopped tomatoes", + "chopped celery", + "rice", + "onions", + "water", + "bay leaves", + "cayenne pepper", + "chopped parsley", + "andouille sausage", + "olive oil", + "green onions", + "creole seasoning", + "medium shrimp" + ] + }, + { + "id": 4938, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "boneless skinless chicken breasts", + "cream of chicken soup", + "sour cream", + "Mexican cheese blend", + "salsa", + "flour tortillas", + "sliced green onions" + ] + }, + { + "id": 8339, + "cuisine": "cajun_creole", + "ingredients": [ + "top round steak", + "creole seasoning", + "diced onions", + "diced tomatoes", + "celery", + "vegetable oil", + "garlic cloves", + "green bell pepper", + "all-purpose flour", + "grits" + ] + }, + { + "id": 7753, + "cuisine": "mexican", + "ingredients": [ + "ketchup", + "worcestershire sauce", + "tomatoes", + "shredded cheddar cheese", + "ground beef", + "mustard", + "pepper", + "salt", + "pickles", + "flour tortillas", + "onions" + ] + }, + { + "id": 19632, + "cuisine": "southern_us", + "ingredients": [ + "garlic", + "boneless skinless chicken breast halves", + "lemon pepper", + "honey", + "key lime juice" + ] + }, + { + "id": 36542, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "dry bread crumbs", + "tomato sauce", + "ricotta cheese", + "fresh parsley", + "zucchini", + "garlic", + "dried oregano", + "fresh basil", + "egg whites", + "shredded mozzarella cheese" + ] + }, + { + "id": 12126, + "cuisine": "filipino", + "ingredients": [ + "active dry yeast", + "salt", + "baking powder", + "dry bread crumbs", + "baking soda", + "all-purpose flour", + "milk", + "butter", + "white sugar" + ] + }, + { + "id": 4343, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "lemon", + "garlic powder", + "pork shoulder", + "ketchup", + "salt", + "brown sugar", + "ground black pepper" + ] + }, + { + "id": 37325, + "cuisine": "southern_us", + "ingredients": [ + "lipton recip secret golden onion soup mix", + "eggs", + "Country Crock® Spread", + "shredded cheddar cheese", + "grit quick" + ] + }, + { + "id": 32352, + "cuisine": "french", + "ingredients": [ + "dried tart cherries", + "all-purpose flour", + "unsalted butter", + "crème fraîche", + "ground cinnamon", + "ice water", + "caramel sauce", + "sugar", + "salt", + "green apples" + ] + }, + { + "id": 41645, + "cuisine": "british", + "ingredients": [ + "baking soda", + "whipped cream", + "water", + "baking powder", + "toffee sauce", + "unsalted butter", + "all-purpose flour", + "pitted date", + "large eggs", + "dark brown sugar" + ] + }, + { + "id": 44702, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "peanut oil", + "soy sauce", + "garlic", + "wine", + "chili paste", + "green beans", + "kosher salt", + "rice vinegar" + ] + }, + { + "id": 8503, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "peanuts", + "apple cider vinegar", + "corn starch", + "chili pepper", + "green onions", + "ginger", + "soy sauce", + "hoisin sauce", + "sesame oil", + "chinese rice wine", + "water", + "boneless skinless chicken breasts", + "garlic" + ] + }, + { + "id": 20667, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "salt", + "onions", + "large eggs", + "sour cream", + "black-eyed peas", + "hot sauce", + "chives", + "green tomato relish" + ] + }, + { + "id": 26401, + "cuisine": "southern_us", + "ingredients": [ + "paprika", + "catfish fillets", + "yellow corn meal" + ] + }, + { + "id": 31320, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "cumin", + "flour tortillas", + "salsa", + "shredded cheddar cheese", + "vegetable oil", + "guacamole", + "sour cream" + ] + }, + { + "id": 31466, + "cuisine": "chinese", + "ingredients": [ + "iceberg", + "water chestnuts", + "sesame oil", + "roasted peanuts", + "soy sauce", + "Sriracha", + "lettuce leaves", + "salt", + "fresh ginger", + "mung bean noodles", + "garlic", + "onions", + "ground chicken", + "hoisin sauce", + "green onions", + "rice vinegar" + ] + }, + { + "id": 25783, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "pinto beans", + "black beans", + "whole kernel corn, drain", + "chopped cilantro fresh", + "red chili peppers", + "cream cheese", + "boneless skinless chicken breast halves", + "diced tomatoes", + "taco seasoning", + "ground cumin" + ] + }, + { + "id": 27766, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "plain yogurt", + "flaked coconut", + "oil", + "ground turmeric", + "ground cinnamon", + "bananas", + "garlic", + "onions", + "tomato sauce", + "ground black pepper", + "salt", + "white sugar", + "tomatoes", + "curry powder", + "chili powder", + "curry paste", + "ground cumin" + ] + }, + { + "id": 19878, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic", + "Anaheim chile", + "chopped cilantro fresh", + "green onions", + "pepper", + "salt" + ] + }, + { + "id": 986, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "unsalted butter", + "hot pepper sauce", + "onions", + "collard greens", + "garlic" + ] + }, + { + "id": 24120, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "cayenne", + "whole chicken", + "dry rub", + "lime", + "garlic", + "fresh cilantro", + "chili powder", + "cumin", + "pepper", + "olive oil", + "salt" + ] + }, + { + "id": 9209, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "ground beef", + "taco seasoning mix", + "refrigerated crescent rolls", + "shredded cheddar cheese" + ] + }, + { + "id": 9953, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "low sodium chicken broth", + "garlic", + "lemongrass", + "mustard greens", + "scallions", + "dark soy sauce", + "ramen noodles", + "hot sauce", + "fresh ginger", + "bacon", + "black vinegar" + ] + }, + { + "id": 16399, + "cuisine": "italian", + "ingredients": [ + "round sourdough bread", + "vinaigrette", + "onions", + "romaine lettuce", + "dri oregano leaves, crush", + "ripe olives", + "tomatoes", + "dried basil", + "cucumber", + "pepper", + "feta cheese crumbles" + ] + }, + { + "id": 14730, + "cuisine": "irish", + "ingredients": [ + "chicken stock", + "butter", + "leeks", + "russet potatoes", + "chopped fresh chives" + ] + }, + { + "id": 25013, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "shallots", + "rich chicken stock", + "eggs", + "large eggs", + "all-purpose flour", + "parmigiano reggiano cheese", + "fine sea salt", + "marsala wine", + "whole milk", + "grated nutmeg" + ] + }, + { + "id": 34673, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "ground pepper", + "chili powder", + "hot sauce", + "onions", + "brown sugar", + "shredded cabbage", + "garlic", + "sour cream", + "shredded Monterey Jack cheese", + "chicken stock", + "hominy", + "lime wedges", + "corn flour", + "oregano", + "olive oil", + "cooked chicken", + "salt", + "chopped cilantro" + ] + }, + { + "id": 36405, + "cuisine": "indian", + "ingredients": [ + "flour", + "rose essence", + "frying oil", + "powdered milk", + "ghee", + "sugar", + "baking powder" + ] + }, + { + "id": 27919, + "cuisine": "filipino", + "ingredients": [ + "tomato sauce", + "garbanzo beans", + "vegetable oil", + "green beans", + "chorizo", + "bananas", + "garlic", + "chicken", + "pepper", + "leaves", + "napa cabbage", + "onions", + "fish sauce", + "water", + "potatoes", + "salt" + ] + }, + { + "id": 18332, + "cuisine": "thai", + "ingredients": [ + "clove", + "fresh tomatoes", + "peanuts", + "bay leaves", + "crushed red pepper flakes", + "cumin seed", + "ground turmeric", + "fish sauce", + "lemongrass", + "low sodium chicken broth", + "basil", + "yellow onion", + "white peppercorns", + "kaffir lime leaves", + "grated coconut", + "fresh ginger root", + "vegetable oil", + "cilantro leaves", + "fresh pineapple", + "ground ginger", + "brown sugar", + "coriander seeds", + "boneless skinless chicken breasts", + "sweet pepper", + "coconut milk" + ] + }, + { + "id": 38169, + "cuisine": "russian", + "ingredients": [ + "large eggs", + "buckwheat flour", + "sugar", + "butter", + "melted butter", + "whole milk", + "all-purpose flour", + "active dry yeast", + "salt" + ] + }, + { + "id": 10208, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "ground black pepper", + "dry red wine", + "thyme sprigs", + "olive oil", + "bay leaves", + "garlic cloves", + "lower sodium beef broth", + "zucchini", + "all-purpose flour", + "onions", + "tomato paste", + "boneless chuck roast", + "diced tomatoes", + "carrots" + ] + }, + { + "id": 30404, + "cuisine": "chinese", + "ingredients": [ + "msg", + "cooking oil", + "garlic", + "corn starch", + "sugar", + "peanuts", + "chicken breasts", + "scallions", + "fresh ginger", + "sherry", + "salt", + "soy sauce", + "vinegar", + "chili pepper flakes", + "oil" + ] + }, + { + "id": 16622, + "cuisine": "french", + "ingredients": [ + "flour", + "eggs", + "chocolate", + "sugar", + "ground almonds", + "butter" + ] + }, + { + "id": 4061, + "cuisine": "mexican", + "ingredients": [ + "taco sauce", + "diced tomatoes", + "chopped cilantro fresh", + "green chile", + "green onions", + "ripe olives", + "avocado", + "flour tortillas", + "sour cream", + "shredded Monterey Jack cheese", + "vegetable oil cooking spray", + "cooked chicken", + "chopped cilantro" + ] + }, + { + "id": 38086, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "chopped garlic", + "kosher salt", + "carrots", + "fresh spinach", + "orange juice", + "ground cumin", + "sugar", + "lemon juice" + ] + }, + { + "id": 28823, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "part-skim ricotta cheese", + "fettucine", + "butter", + "all-purpose flour", + "broccoli florets", + "salt", + "fat free milk", + "cracked black pepper", + "fresh parsley" + ] + }, + { + "id": 21728, + "cuisine": "italian", + "ingredients": [ + "kalamata", + "roast red peppers, drain", + "mozzarella cheese", + "extra-virgin olive oil", + "rotini", + "red wine vinegar", + "artichokes", + "Italian parsley leaves", + "soppressata" + ] + }, + { + "id": 46016, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "mirin", + "shallots", + "white sesame seeds", + "chili flakes", + "asian black bean sauce", + "beef consomme", + "ginger", + "molasses", + "hoisin sauce", + "sesame oil", + "chicken wings", + "honey", + "green onions", + "garlic" + ] + }, + { + "id": 6219, + "cuisine": "greek", + "ingredients": [ + "ground paprika", + "ground black pepper", + "dried oregano", + "ground cinnamon", + "garlic powder", + "onion powder", + "dried thyme", + "beef bouillon powder", + "parsley flakes", + "ground nutmeg", + "salt" + ] + }, + { + "id": 35659, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "butter", + "cilantro", + "boneless chicken thighs", + "jalapeno chilies", + "diced tomatoes", + "ground cumin", + "kosher salt", + "yoghurt", + "paprika", + "garam masala", + "heavy cream", + "cumin seed" + ] + }, + { + "id": 24464, + "cuisine": "japanese", + "ingredients": [ + "low sodium teriyaki sauce", + "turkey tenderloins", + "green onions", + "gingerroot", + "garlic" + ] + }, + { + "id": 1012, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "ground red pepper", + "hot sauce", + "half & half", + "white cheddar cheese", + "large eggs", + "butter", + "collard greens", + "quickcooking grits", + "salt" + ] + }, + { + "id": 48801, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "garlic powder", + "salt", + "pepper", + "onion powder", + "dried oregano", + "tomato paste", + "water", + "garlic", + "tomato purée", + "granulated sugar", + "ground beef" + ] + }, + { + "id": 33247, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "low sodium low fat pasta sauce", + "garlic cloves", + "dried basil", + "cooking spray", + "crushed red pepper", + "fresh basil", + "grated parmesan cheese", + "jumbo macaroni shells", + "italian seasoning", + "sun-dried tomatoes", + "cannellini beans", + "firm tofu" + ] + }, + { + "id": 3181, + "cuisine": "japanese", + "ingredients": [ + "miso sesame grilling sauce", + "green onions", + "steamed rice", + "large shrimp", + "sugar pea", + "snow peas", + "shiitake", + "canola oil" + ] + }, + { + "id": 27910, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "black-eyed peas", + "long-grain rice", + "pepper", + "vegetable broth", + "cider vinegar", + "extra-virgin olive oil", + "onions", + "dried thyme", + "salt" + ] + }, + { + "id": 1428, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "chopped pecans", + "mini marshmallows", + "salt", + "unsweetened cocoa powder", + "milk", + "vanilla extract", + "bittersweet chocolate", + "powdered sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 20080, + "cuisine": "italian", + "ingredients": [ + "sugar", + "vegetable oil", + "celery seed", + "tomatoes", + "capicola", + "provolone cheese", + "kosher salt", + "russet potatoes", + "Italian bread", + "savoy cabbage", + "cider vinegar", + "extra-virgin olive oil" + ] + }, + { + "id": 12612, + "cuisine": "spanish", + "ingredients": [ + "vegetable juice", + "diced tomatoes", + "red pepper", + "cucumber", + "pepper", + "hot sauce", + "red wine vinegar", + "green pepper" + ] + }, + { + "id": 29272, + "cuisine": "french", + "ingredients": [ + "bread crumb fresh", + "yellow crookneck squash", + "sliced carrots", + "onions", + "water", + "harissa paste", + "green beans", + "minced garlic", + "millet", + "diced tomatoes", + "ground cumin", + "fresh basil", + "olive oil", + "cannellini beans", + "red bell pepper" + ] + }, + { + "id": 35426, + "cuisine": "mexican", + "ingredients": [ + "butternut squash", + "sausages", + "onions", + "water", + "garlic cloves", + "dried kidney beans", + "beef broth", + "pepitas", + "green bell pepper", + "frozen corn kernels", + "red bell pepper" + ] + }, + { + "id": 48175, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "crushed red pepper", + "olive oil", + "flour", + "pizza doughs", + "kosher salt", + "parmigiano reggiano cheese", + "crème fraîche", + "broccoli rabe", + "garlic", + "shredded mozzarella cheese" + ] + }, + { + "id": 35300, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "dried oregano", + "olive oil", + "paprika", + "minced garlic", + "red wine vinegar", + "ground cumin", + "pork tenderloin", + "salt" + ] + }, + { + "id": 46341, + "cuisine": "indian", + "ingredients": [ + "purple onion", + "chaat masala", + "tomatoes", + "okra", + "salt", + "canola oil", + "fresh cilantro", + "fresh lemon juice" + ] + }, + { + "id": 953, + "cuisine": "italian", + "ingredients": [ + "eggs", + "pizza sauce", + "salt", + "parsley flakes", + "garlic powder", + "frozen bread dough", + "pepper", + "ricotta cheese", + "sausage links", + "onion powder", + "shredded mozzarella cheese" + ] + }, + { + "id": 11840, + "cuisine": "filipino", + "ingredients": [ + "spring roll wrappers", + "oil", + "onions", + "pepper", + "carrots", + "fish sauce", + "garlic cloves", + "eggs", + "salt", + "ground beef" + ] + }, + { + "id": 28301, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "cilantro sprigs", + "onions", + "reduced sodium chicken broth", + "Mexican oregano", + "sour cream", + "chiles", + "white hominy", + "garlic cloves", + "chicken thighs", + "kosher salt", + "lime wedges", + "poblano chiles" + ] + }, + { + "id": 32276, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "butter", + "meat" + ] + }, + { + "id": 14228, + "cuisine": "french", + "ingredients": [ + "olive oil", + "french bread", + "salt", + "bacon drippings", + "grated parmesan cheese", + "parsley", + "thyme", + "ground pepper", + "dry white wine", + "cognac", + "chicken stock", + "flour", + "garlic", + "onions" + ] + }, + { + "id": 35513, + "cuisine": "southern_us", + "ingredients": [ + "buns", + "garlic powder", + "ground sirloin", + "worcestershire sauce", + "purple onion", + "kosher salt", + "dijon mustard", + "onion powder", + "bacon slices", + "ketchup", + "hot pepper sauce", + "bourbon whiskey", + "paprika", + "sliced tomatoes", + "honey", + "cooking spray", + "balsamic vinegar", + "extra-virgin olive oil" + ] + }, + { + "id": 41666, + "cuisine": "korean", + "ingredients": [ + "rice cakes", + "garlic cloves", + "black bean sauce", + "ginger", + "bok choy", + "water", + "heavy cream", + "ground turkey", + "sweet soy sauce", + "Gochujang base", + "onions" + ] + }, + { + "id": 4896, + "cuisine": "italian", + "ingredients": [ + "eggs", + "milk", + "flour", + "bacon", + "carrots", + "onions", + "plain flour", + "pork", + "beef", + "ricotta cheese", + "salt", + "bechamel", + "tomatoes", + "ragu", + "grated parmesan cheese", + "butter", + "ham", + "celery", + "pasta", + "spinach", + "ground nutmeg", + "beef stock", + "cheese", + "chicken livers", + "dried oregano" + ] + }, + { + "id": 42783, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "tomatillos", + "jalapeno chilies", + "cilantro leaves", + "garlic" + ] + }, + { + "id": 35514, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "fat-free chicken broth", + "bay leaves", + "adobo seasoning", + "roast", + "chipotles in adobo", + "garlic", + "cumin" + ] + }, + { + "id": 46187, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "grated lemon zest", + "parmigiano-reggiano cheese", + "salt", + "button mushrooms", + "celery", + "truffle oil", + "fresh lemon juice" + ] + }, + { + "id": 24456, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "diced tomatoes", + "grated parmesan cheese", + "bow-tie pasta", + "garlic powder", + "salt", + "heavy cream", + "dried oregano" + ] + }, + { + "id": 38853, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "caciocavallo", + "vine tomatoes", + "extra-virgin olive oil", + "blanched almonds", + "linguine" + ] + }, + { + "id": 25369, + "cuisine": "mexican", + "ingredients": [ + "pure vanilla extract", + "baking soda", + "cinnamon sticks", + "milk", + "lemon", + "sugar", + "rum", + "large egg yolks", + "blanched almonds" + ] + }, + { + "id": 20106, + "cuisine": "french", + "ingredients": [ + "caster sugar", + "vanilla pods", + "butter", + "lemon juice", + "marzipan", + "self rising flour", + "strawberries", + "milk", + "lemon zest", + "cornflour", + "kirsch", + "dark chocolate", + "unsalted butter", + "egg yolks", + "free range egg" + ] + }, + { + "id": 41173, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "shredded pepper jack cheese", + "sour cream", + "cream", + "green onions", + "taco seasoning", + "onions", + "green chile", + "flour tortillas", + "beef broth", + "ground beef", + "refried beans", + "butter", + "enchilada sauce", + "chopped garlic" + ] + }, + { + "id": 40705, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "instant white rice", + "water", + "Old El Paso™ Thick 'n Chunky salsa", + "oil", + "chipotle", + "salt", + "boneless skinless chicken breasts", + "tortilla chips" + ] + }, + { + "id": 9828, + "cuisine": "irish", + "ingredients": [ + "milk", + "butter", + "potatoes", + "salt", + "spring onions", + "ground black pepper", + "blue cheese" + ] + }, + { + "id": 2852, + "cuisine": "thai", + "ingredients": [ + "liquid aminos", + "Sriracha", + "cilantro", + "eggs", + "lime", + "rice noodles", + "onions", + "tofu", + "beans", + "green onions", + "garlic cloves", + "brown sugar", + "olive oil", + "red pepper" + ] + }, + { + "id": 22303, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "roma tomatoes", + "large garlic cloves", + "chopped parsley", + "pepper", + "small pasta", + "salt", + "onions", + "chicken broth", + "cannellini beans", + "red pepper flakes", + "fresh parsley", + "pancetta", + "olive oil", + "shaved parmesan cheese", + "carrots" + ] + }, + { + "id": 30852, + "cuisine": "mexican", + "ingredients": [ + "honey", + "oil", + "salt", + "cake flour", + "confectioners sugar", + "eggs", + "chopped walnuts" + ] + }, + { + "id": 44783, + "cuisine": "vietnamese", + "ingredients": [ + "olive oil", + "chopped cilantro fresh", + "tomatoes", + "salt", + "ground turmeric", + "ground ginger", + "chinese eggplants", + "asian fish sauce", + "white onion", + "firm tofu" + ] + }, + { + "id": 13276, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "fresh lime juice", + "cilantro leaves", + "corn kernels", + "salsa", + "salt" + ] + }, + { + "id": 36786, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "olive oil", + "chili powder", + "salt", + "garlic cloves", + "monterey jack", + "active dry yeast", + "jalapeno chilies", + "shredded lettuce", + "green pepper", + "smoked paprika", + "warm water", + "diced green chilies", + "red pepper", + "all-purpose flour", + "enchilada sauce", + "ground cumin", + "avocado", + "honey", + "boneless skinless chicken breasts", + "purple onion", + "sharp cheddar cheese", + "sour cream" + ] + }, + { + "id": 35520, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "salt", + "molasses", + "dried apple", + "all-purpose flour", + "baking soda", + "vegetable shortening", + "large eggs", + "buttermilk" + ] + }, + { + "id": 6248, + "cuisine": "greek", + "ingredients": [ + "plain yogurt", + "large garlic cloves", + "chopped fresh mint", + "fresh dill", + "green onions", + "fresh lemon juice", + "sliced green onions", + "pinenuts", + "diced tomatoes", + "long grain white rice", + "grape leaves", + "feta cheese", + "extra-virgin olive oil", + "grated lemon peel" + ] + }, + { + "id": 29804, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "vegetable oil", + "cilantro leaves", + "ground cumin", + "avocado", + "lime", + "poblano", + "soft corn tortillas", + "kosher salt", + "tomatillos", + "pinto beans", + "eggs", + "ground black pepper", + "garlic", + "bay leaf" + ] + }, + { + "id": 28635, + "cuisine": "french", + "ingredients": [ + "port wine", + "olive oil", + "beef stock", + "garlic", + "white onion", + "ground black pepper", + "butter", + "dried thyme", + "french bread", + "cheese", + "brown sugar", + "salt and ground black pepper", + "swiss cheese", + "salt" + ] + }, + { + "id": 19461, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "scallions", + "thyme", + "tomatoes", + "zucchini", + "carrots", + "broth", + "unsweetened coconut milk", + "lime juice", + "yams", + "onions", + "fresh basil", + "butter", + "shrimp" + ] + }, + { + "id": 27792, + "cuisine": "italian", + "ingredients": [ + "pepper", + "caesar salad dressing", + "cheese tortellini", + "grape tomatoes", + "fresh oregano" + ] + }, + { + "id": 11373, + "cuisine": "jamaican", + "ingredients": [ + "dried thyme", + "onion powder", + "ground ginger", + "ground nutmeg", + "cayenne pepper", + "boneless chicken skinless thigh", + "ground black pepper", + "ground allspice", + "garlic powder", + "salt" + ] + }, + { + "id": 4106, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "green onions", + "garlic", + "rice syrup", + "ginger", + "pears", + "soy sauce", + "sesame oil", + "onions", + "ground black pepper", + "beef tenderloin" + ] + }, + { + "id": 15542, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "pepper", + "basil", + "cashew nuts", + "nutritional yeast", + "lemon juice", + "dried pasta", + "garlic" + ] + }, + { + "id": 30162, + "cuisine": "french", + "ingredients": [ + "egg whites", + "white sugar", + "vanilla extract", + "semisweet chocolate", + "all-purpose flour", + "butter" + ] + }, + { + "id": 30842, + "cuisine": "french", + "ingredients": [ + "butter", + "fontina cheese", + "onions", + "spinach", + "caraway seeds", + "salt" + ] + }, + { + "id": 37343, + "cuisine": "cajun_creole", + "ingredients": [ + "seasoning", + "flour", + "peeled shrimp", + "onions", + "brown sugar", + "green onions", + "green pepper", + "cooked rice", + "bay leaves", + "chopped celery", + "chopped garlic", + "chicken stock", + "tomato sauce", + "butter", + "chopped parsley" + ] + }, + { + "id": 13938, + "cuisine": "french", + "ingredients": [ + "pearl onions", + "canned beef broth", + "all-purpose flour", + "onions", + "fresh sage", + "cross rib roast", + "bacon slices", + "carrots", + "tomato paste", + "shiitake", + "dry red wine", + "baby carrots", + "rosemary sprigs", + "bay leaves", + "garlic", + "thyme sprigs" + ] + }, + { + "id": 22479, + "cuisine": "cajun_creole", + "ingredients": [ + "hot pepper sauce", + "vegetable oil", + "chopped onion", + "dried oregano", + "chicken broth", + "sweet potatoes", + "chopped celery", + "turkey sausage links", + "dried thyme", + "meat", + "all-purpose flour", + "bay leaf", + "chopped green bell pepper", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 9282, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "salsa", + "onions", + "black beans", + "lasagna noodles", + "shredded cheese", + "tomato sauce", + "diced green chilies", + "taco seasoning", + "corn", + "cilantro", + "ground beef" + ] + }, + { + "id": 37587, + "cuisine": "filipino", + "ingredients": [ + "fresh ginger root", + "black peppercorns", + "garlic", + "white vinegar", + "bay leaves", + "soy sauce", + "chicken" + ] + }, + { + "id": 44518, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "fresh orange juice", + "corn starch", + "vegetable oil", + "broccoli", + "pork tenderloin", + "rice vinegar", + "grated orange", + "florets", + "scallions" + ] + }, + { + "id": 17098, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "jalapeno chilies", + "heavy cream", + "freshly ground pepper", + "olive oil", + "ditalini pasta", + "salt", + "onions", + "green bell pepper", + "low sodium chicken broth", + "extra-virgin olive oil", + "celery", + "parmesan cheese", + "fryer chickens", + "fresh oregano" + ] + }, + { + "id": 45211, + "cuisine": "italian", + "ingredients": [ + "white vinegar", + "extra-virgin olive oil", + "carrots", + "sugar", + "salt", + "celery", + "water", + "freshly ground pepper", + "bay leaf", + "cauliflower", + "crushed red pepper", + "red bell pepper" + ] + }, + { + "id": 34473, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "lemongrass", + "gremolata", + "chopped celery", + "carrots", + "white wine", + "olive oil", + "balsamic vinegar", + "garlic cloves", + "onions", + "soy sauce", + "halibut fillets", + "potatoes", + "orange juice", + "bay leaf", + "tomato paste", + "crushed tomatoes", + "unsalted butter", + "cayenne pepper", + "thyme sprigs" + ] + }, + { + "id": 33918, + "cuisine": "italian", + "ingredients": [ + "salted butter", + "lemon juice", + "olive oil", + "garlic", + "spaghetti", + "grated parmesan cheese", + "sour cream", + "kosher salt", + "lemon", + "flat leaf parsley" + ] + }, + { + "id": 44203, + "cuisine": "french", + "ingredients": [ + "pepper", + "basil leaves", + "flat leaf parsley", + "olive oil", + "garlic", + "superfine sugar", + "butter", + "toast", + "tomatoes", + "large eggs", + "salt" + ] + }, + { + "id": 25792, + "cuisine": "brazilian", + "ingredients": [ + "grated coconut", + "oil", + "eggs", + "chocolate", + "sweetened condensed milk", + "sugar", + "all-purpose flour", + "baking powder", + "carrots" + ] + }, + { + "id": 29314, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "chili powder", + "corn tortillas", + "garlic powder", + "salt", + "olive oil", + "cilantro", + "cumin", + "cauliflower", + "red cabbage", + "salsa" + ] + }, + { + "id": 14292, + "cuisine": "french", + "ingredients": [ + "sauce", + "lemon wedge", + "shrimp" + ] + }, + { + "id": 22987, + "cuisine": "british", + "ingredients": [ + "sugar", + "unsalted butter", + "vanilla extract", + "water", + "baking powder", + "dark brown sugar", + "pitted date", + "large eggs", + "all-purpose flour", + "baking soda", + "whipping cream" + ] + }, + { + "id": 48201, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "sweet potatoes", + "green beans", + "zucchini", + "light coconut milk", + "green curry paste", + "boneless skinless chicken breasts", + "asian fish sauce", + "low sodium chicken broth", + "carrots" + ] + }, + { + "id": 15409, + "cuisine": "korean", + "ingredients": [ + "balsamic vinegar", + "blanched almonds", + "chickpeas", + "garlic", + "olive oil", + "Gochujang base" + ] + }, + { + "id": 26480, + "cuisine": "thai", + "ingredients": [ + "Sriracha", + "dark brown sugar", + "large shrimp", + "fish sauce", + "rice noodles", + "beansprouts", + "fresh basil", + "green onions", + "garlic cloves", + "canola oil", + "lower sodium soy sauce", + "unsalted dry roast peanuts", + "fresh lime juice" + ] + }, + { + "id": 10480, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "part-skim mozzarella cheese", + "cooking spray", + "flat leaf parsley", + "warm water", + "ground black pepper", + "all-purpose flour", + "sugar", + "fresh parmesan cheese", + "salt", + "cornmeal", + "tomatoes", + "olive oil", + "dry yeast", + "garlic cloves" + ] + }, + { + "id": 6041, + "cuisine": "filipino", + "ingredients": [ + "red pepper flakes", + "minced garlic", + "water", + "brown sugar", + "corn starch" + ] + }, + { + "id": 34393, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "lychees", + "young coconut meat", + "coconut juice" + ] + }, + { + "id": 33088, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "large eggs", + "2% reduced-fat milk", + "garlic powder", + "quickcooking grits", + "water", + "cooking spray", + "salt", + "hot pepper sauce", + "butter" + ] + }, + { + "id": 2506, + "cuisine": "chinese", + "ingredients": [ + "butter lettuce", + "olive oil", + "water chestnuts", + "rice vinegar", + "ground chicken", + "Sriracha", + "ginger", + "soy sauce", + "ground black pepper", + "green onions", + "onions", + "kosher salt", + "hoisin sauce", + "garlic" + ] + }, + { + "id": 6215, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "onion powder", + "celery salt", + "garlic powder", + "all-purpose flour", + "milk", + "butter", + "eggs", + "cream style corn", + "white sugar" + ] + }, + { + "id": 47410, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "salt", + "ground cumin", + "curry powder", + "chicken drumsticks", + "italian pork sausage", + "ground ginger", + "garlic powder", + "cayenne pepper", + "plain yogurt", + "red wine vinegar", + "lamb loin chops" + ] + }, + { + "id": 14239, + "cuisine": "mexican", + "ingredients": [ + "honey", + "queso fresco", + "slivered almonds", + "ground black pepper", + "raisins", + "chopped onion", + "dry bread crumbs", + "ground cumin", + "ground cinnamon", + "olive oil", + "large garlic cloves", + "fresh oregano", + "crushed tomatoes", + "Anaheim chile", + "salt", + "ground beef" + ] + }, + { + "id": 5097, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "water", + "flour", + "salt", + "taco seasoning", + "onions", + "bread", + "pepper", + "powdered milk", + "baking powder", + "pink beans", + "garlic cloves", + "lettuce", + "beans", + "taco seasoning mix", + "meat", + "salsa", + "oil", + "tomatoes", + "shredded cheddar cheese", + "jalapeno chilies", + "garlic", + "hot sauce", + "sour cream" + ] + }, + { + "id": 35420, + "cuisine": "chinese", + "ingredients": [ + "water", + "rice vinegar", + "chopped garlic", + "hot red pepper flakes", + "hoisin sauce", + "gingerroot", + "soy sauce", + "sesame oil", + "fresh lime juice", + "chili paste", + "peanut butter" + ] + }, + { + "id": 42675, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "hot water", + "sugar", + "crushed red pepper", + "soy sauce", + "creamy peanut butter", + "apple cider vinegar", + "chopped cilantro fresh" + ] + }, + { + "id": 45748, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "brown hash potato", + "goat cheese", + "spinach", + "dried thyme", + "cooking spray", + "egg substitute", + "ground black pepper", + "garlic cloves", + "cremini mushrooms", + "olive oil", + "chopped onion" + ] + }, + { + "id": 17590, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salsa", + "cooking spray", + "sliced green onions", + "jalapeno chilies", + "chopped cilantro", + "shredded reduced fat cheddar cheese", + "cooked chicken" + ] + }, + { + "id": 14804, + "cuisine": "italian", + "ingredients": [ + "vegetables", + "shredded mozzarella cheese", + "grated parmesan cheese", + "ragu old world style pasta sauc", + "8 ounc ziti pasta, cook and drain" + ] + }, + { + "id": 33920, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "tumeric", + "yoghurt", + "green chilies", + "onions", + "mint", + "mace", + "salt", + "cinnamon sticks", + "red chili powder", + "coconut", + "star anise", + "oil", + "shahi jeera", + "clove", + "garlic paste", + "Biryani Masala", + "green cardamom", + "bay leaf" + ] + }, + { + "id": 31183, + "cuisine": "french", + "ingredients": [ + "parmesan cheese", + "salt", + "russet", + "unsalted butter", + "grated nutmeg", + "ground black pepper", + "crème fraîche", + "milk", + "heavy cream", + "garlic cloves" + ] + }, + { + "id": 49211, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "potatoes", + "coconut milk", + "water", + "salt", + "plum tomatoes", + "white pepper", + "garlic", + "onions", + "sugar", + "curry powder", + "oil" + ] + }, + { + "id": 46963, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "salt", + "boneless skinless chicken breast halves", + "black pepper", + "dry white wine", + "fresh lemon juice", + "unsalted butter", + "vegetable oil", + "flat leaf parsley", + "low sodium chicken broth", + "all-purpose flour" + ] + }, + { + "id": 11437, + "cuisine": "japanese", + "ingredients": [ + "flat leaf spinach", + "coarse salt", + "soba", + "soy sauce", + "shiitake", + "garlic cloves", + "fresh ginger", + "scallions", + "reduced sodium chicken broth", + "vegetable oil", + "fresh lime juice" + ] + }, + { + "id": 2201, + "cuisine": "cajun_creole", + "ingredients": [ + "crawfish", + "butter", + "fresh mushrooms", + "egg noodles", + "garlic", + "sliced green onions", + "shredded cheddar cheese", + "heavy cream", + "fresh parsley", + "green bell pepper", + "cajun seasoning", + "chopped onion" + ] + }, + { + "id": 30315, + "cuisine": "southern_us", + "ingredients": [ + "unsweetened apple juice", + "golden brown sugar", + "honey", + "ham", + "whole grain dijon mustard" + ] + }, + { + "id": 11111, + "cuisine": "greek", + "ingredients": [ + "grated parmesan cheese", + "boneless skinless chicken breast halves", + "fresh basil", + "garlic cloves", + "extra-virgin olive oil", + "frozen shelled edamame", + "fresh lemon juice" + ] + }, + { + "id": 16870, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "all-purpose flour", + "shrimp", + "creole mustard", + "sweetened coconut flakes", + "beer", + "canola oil", + "vegetable oil", + "cayenne pepper", + "champagne vinegar", + "water", + "salt", + "jelly", + "sliced green onions" + ] + }, + { + "id": 24195, + "cuisine": "indian", + "ingredients": [ + "cilantro leaves", + "thai chile", + "fresh lemon juice", + "amchur", + "cumin seed", + "salt", + "fresh mint" + ] + }, + { + "id": 38628, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "carrots", + "pickled beets", + "onions", + "vegetable oil", + "sour cream", + "celery ribs", + "beef broth", + "boiling potatoes" + ] + }, + { + "id": 18777, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "parsley leaves", + "red wine vinegar", + "peperoncini", + "sun-dried tomatoes", + "balsamic vinegar", + "garlic cloves", + "hot red pepper flakes", + "garbanzo beans", + "hard salami", + "rotini", + "water", + "vegetable oil", + "dijon style mustard" + ] + }, + { + "id": 2389, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "chili", + "cayenne pepper", + "fresh lemon juice", + "mayonaise", + "sourdough bread", + "chopped onion", + "fresh mint", + "plain yogurt", + "fresh ginger", + "ground coriander", + "boneless skinless chicken breast halves", + "cider vinegar", + "cilantro leaves", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 12693, + "cuisine": "italian", + "ingredients": [ + "granulated sugar", + "all-purpose flour", + "baking soda", + "baking powder", + "seedless red grapes", + "vin santo", + "large eggs", + "confectioners sugar", + "unsalted butter", + "salt", + "grated orange" + ] + }, + { + "id": 14595, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "carrots", + "noodles", + "chicken stock", + "garlic", + "calamansi", + "soy sauce", + "shrimp", + "sliced green onions", + "green cabbage", + "oil", + "onions" + ] + }, + { + "id": 43661, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "lemon juice", + "pastry", + "salt", + "ground nutmeg", + "all-purpose flour", + "sugar", + "butter", + "candy" + ] + }, + { + "id": 12992, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "meat", + "peanut oil", + "ground cumin", + "avocado", + "poblano peppers", + "cilantro", + "corn tortillas", + "kosher salt", + "vegetable oil", + "scallions", + "chicken broth", + "jalapeno chilies", + "garlic", + "onions" + ] + }, + { + "id": 27685, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "lime juice", + "salt", + "paprika", + "garlic powder", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 20963, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "butter", + "cream cheese", + "dried oregano", + "green olives", + "pita bread rounds", + "black olives", + "cucumber", + "sesame seeds", + "large garlic cloves", + "grated jack cheese", + "shredded cheddar cheese", + "red wine vinegar", + "purple onion", + "red bell pepper" + ] + }, + { + "id": 28047, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salt", + "pork sausages", + "large eggs", + "butter", + "sour cream", + "pepper", + "jalapeno chilies", + "salsa", + "milk", + "colby jack cheese", + "cream cheese" + ] + }, + { + "id": 10359, + "cuisine": "italian", + "ingredients": [ + "fresh chives", + "dry white wine", + "garlic cloves", + "sea scallops", + "salt", + "olive oil", + "lemon", + "tagliatelle", + "bread crumb fresh", + "unsalted butter", + "freshly ground pepper" + ] + }, + { + "id": 10907, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "fresh ginger root", + "green onions", + "balsamic vinegar", + "garlic", + "kosher salt", + "egg whites", + "vegetable oil", + "chili oil", + "bamboo shoots", + "water", + "dandelion greens", + "wonton wrappers", + "ground pork", + "white sugar", + "white pepper", + "hoisin sauce", + "sesame oil", + "napa cabbage", + "bok choy" + ] + }, + { + "id": 18991, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "mozzarella cheese", + "grated lemon zest", + "celery ribs", + "fine sea salt", + "fennel bulb", + "fresh lemon juice" + ] + }, + { + "id": 28690, + "cuisine": "mexican", + "ingredients": [ + "pure maple syrup", + "cayenne", + "sea salt", + "garlic cloves", + "beef shoulder", + "onion powder", + "paprika", + "oregano", + "green chile", + "chili powder", + "diced tomatoes", + "onions", + "ground pepper", + "apple cider vinegar", + "garlic", + "cumin" + ] + }, + { + "id": 45429, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "hellmann' or best food light mayonnais", + "grape tomatoes", + "chopped cilantro fresh", + "chipotle peppers", + "ground cumin", + "lime juice", + "mango" + ] + }, + { + "id": 15312, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil cooking spray", + "pepper jack", + "chopped cilantro fresh", + "avocado", + "chopped tomatoes", + "cooked chicken", + "green chile", + "sliced black olives", + "sour cream", + "taco sauce", + "flour tortillas", + "sliced green onions" + ] + }, + { + "id": 7655, + "cuisine": "greek", + "ingredients": [ + "russet potatoes", + "olive oil", + "garlic cloves", + "water", + "salt", + "ground black pepper", + "lemon juice" + ] + }, + { + "id": 11189, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "Elmlea Single Light", + "cinnamon sticks", + "chicken", + "clove", + "almonds", + "cardamom pods", + "basmati rice", + "coriander seeds", + "ginger", + "onions", + "ground cumin", + "sliced almonds", + "garam masala", + "garlic cloves", + "Flora Buttery" + ] + }, + { + "id": 23734, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "green chilies", + "chicken breasts", + "enchilada sauce", + "whole wheat tortillas", + "sour cream", + "green pepper" + ] + }, + { + "id": 32263, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "scallions", + "sea bass", + "mushrooms", + "sherry", + "bamboo shoots", + "smithfield ham", + "salt" + ] + }, + { + "id": 17162, + "cuisine": "british", + "ingredients": [ + "English mustard", + "flour", + "beef fillet", + "parma ham", + "mushrooms", + "ground black pepper", + "sea salt", + "olive oil", + "egg yolks", + "puff pastry" + ] + }, + { + "id": 5765, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "small red beans", + "dark brown sugar" + ] + }, + { + "id": 5521, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "chives", + "mixed spice", + "romano cheese", + "butter", + "cold milk", + "self rising flour" + ] + }, + { + "id": 16132, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "italian seasoning", + "Italian cheese blend", + "salted butter", + "white bread", + "garlic salt" + ] + }, + { + "id": 32222, + "cuisine": "japanese", + "ingredients": [ + "water", + "vegetable oil", + "baking powder", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 13816, + "cuisine": "cajun_creole", + "ingredients": [ + "baguette", + "salt", + "medium shrimp", + "tomatoes", + "yellow bell pepper", + "scallions", + "bread", + "dijon mustard", + "creole seasoning", + "romaine lettuce", + "extra-virgin olive oil", + "reduced fat mayonnaise" + ] + }, + { + "id": 42202, + "cuisine": "mexican", + "ingredients": [ + "dried thyme", + "corn oil", + "salt", + "bay leaf", + "fresca", + "large eggs", + "queso fresco", + "garlic cloves", + "dried oregano", + "salsa verde", + "vegetable oil", + "serrano", + "chopped cilantro", + "white onion", + "low sodium chicken broth", + "tomatillos", + "corn tortillas", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 2408, + "cuisine": "thai", + "ingredients": [ + "ketchup", + "green onions", + "peanut oil", + "brown sugar", + "peanuts", + "salt", + "fish sauce", + "lime juice", + "red pepper flakes", + "beansprouts", + "eggs", + "minced garlic", + "rice noodles", + "carrots" + ] + }, + { + "id": 6496, + "cuisine": "indian", + "ingredients": [ + "whitefish", + "buttermilk", + "rice flour", + "lime", + "paneer", + "garlic salt", + "haloumi", + "fresh ginger", + "oil", + "paneer cheese", + "spinach", + "heavy cream", + "onions" + ] + }, + { + "id": 37353, + "cuisine": "mexican", + "ingredients": [ + "pineapple chunks", + "chicken drumsticks", + "orange juice", + "black pepper", + "bacon slices", + "cooked ham", + "raisins", + "chicken thighs", + "chicken bouillon granules", + "butter", + "salt" + ] + }, + { + "id": 30951, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "green pepper", + "white sugar", + "vegetable oil", + "mustard seeds", + "plum tomatoes", + "potatoes", + "cumin seed", + "ground turmeric", + "cauliflower", + "salt", + "asafoetida powder" + ] + }, + { + "id": 27481, + "cuisine": "southern_us", + "ingredients": [ + "clams", + "dried thyme", + "large eggs", + "baking powder", + "all-purpose flour", + "red bell pepper", + "water", + "chopped green bell pepper", + "green onions", + "conch", + "crabmeat", + "fresh parsley", + "mayonaise", + "hungarian paprika", + "jalapeno chilies", + "vegetable oil", + "hot sauce", + "medium shrimp", + "milk", + "finely chopped onion", + "ground red pepper", + "crushed red pepper", + "garlic cloves" + ] + }, + { + "id": 38077, + "cuisine": "mexican", + "ingredients": [ + "cider vinegar", + "garlic cloves", + "ground cumin", + "kosher salt", + "freshly ground pepper", + "boiling water", + "ground cinnamon", + "cayenne pepper", + "ancho chile pepper", + "chicken legs", + "ground allspice", + "corn tortillas" + ] + }, + { + "id": 21887, + "cuisine": "cajun_creole", + "ingredients": [ + "tapioca flour", + "baking powder", + "sweetened condensed milk", + "instant yeast", + "salt", + "unsalted butter", + "vegetable oil", + "powdered sugar", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 35737, + "cuisine": "mexican", + "ingredients": [ + "salt", + "sour cream", + "cotija", + "cumin seed", + "tortilla chips", + "serrano chile", + "roasted red peppers", + "scallions" + ] + }, + { + "id": 47032, + "cuisine": "french", + "ingredients": [ + "olive oil", + "fresh parsley leaves", + "wine vinegar", + "fresh chives", + "dijon style mustard", + "fresh tarragon", + "fresh chervil" + ] + }, + { + "id": 3167, + "cuisine": "brazilian", + "ingredients": [ + "chocolate", + "sugar", + "chocolate sprinkles", + "butter", + "unsweetened cocoa powder", + "sweetened condensed milk" + ] + }, + { + "id": 20540, + "cuisine": "mexican", + "ingredients": [ + "corn starch", + "white onion", + "monterey jack", + "green chile", + "extra sharp cheddar cheese", + "whole milk" + ] + }, + { + "id": 8425, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "Sriracha", + "peanut butter", + "minced garlic", + "sesame oil", + "soy sauce", + "green onions", + "noodles", + "sesame seeds", + "ginger" + ] + }, + { + "id": 28784, + "cuisine": "russian", + "ingredients": [ + "radishes", + "liquid", + "fresh dill", + "pickled beets", + "buttermilk", + "sour cream", + "seedless cucumber", + "salt" + ] + }, + { + "id": 11926, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "pappardelle", + "chopped celery", + "carrots", + "tomato purée", + "chopped fresh thyme", + "dry red wine", + "garlic cloves", + "grated parmesan cheese", + "ground veal", + "beef broth", + "thick-cut bacon", + "bay leaves", + "ground pork", + "chopped onion" + ] + }, + { + "id": 12792, + "cuisine": "thai", + "ingredients": [ + "shiitake", + "green onions", + "red curry paste", + "onions", + "water", + "Sriracha", + "ginger", + "garlic cloves", + "thai noodles", + "boneless skinless chicken breasts", + "dark brown sugar", + "honey", + "regular soy sauce", + "rice vinegar", + "carrots" + ] + }, + { + "id": 46989, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "sausage casings", + "shredded mozzarella cheese", + "pasta", + "mozzarella cheese", + "pasta sauce" + ] + }, + { + "id": 41884, + "cuisine": "japanese", + "ingredients": [ + "salmon fillets", + "ginger root", + "soy sauce", + "sugar", + "sake", + "vegetable oil" + ] + }, + { + "id": 1412, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garam masala", + "paneer", + "cumin seed", + "cream", + "vegetable oil", + "green chilies", + "onions", + "tumeric", + "chili powder", + "salt", + "garlic cloves", + "fresh ginger root", + "red pepper", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 35619, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "grated parmesan cheese", + "boneless chop pork", + "dry bread crumbs", + "pasta sauce", + "garlic", + "fettucine", + "olive oil" + ] + }, + { + "id": 13837, + "cuisine": "korean", + "ingredients": [ + "spring onions", + "salt", + "salad", + "sesame oil", + "chili powder", + "beansprouts", + "light soy sauce", + "garlic" + ] + }, + { + "id": 10353, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "onions", + "ground black pepper", + "white sugar", + "red wine vinegar", + "italian seasoning", + "mayonaise", + "salt" + ] + }, + { + "id": 24774, + "cuisine": "mexican", + "ingredients": [ + "solid pack pumpkin", + "whipping cream", + "sour cream", + "butter", + "low salt chicken broth", + "finely chopped onion", + "crushed red pepper", + "fresh lime juice", + "whole milk", + "pumpkin seeds" + ] + }, + { + "id": 37502, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "kosher salt", + "ground black pepper", + "ricotta cheese", + "salt", + "fresh parsley", + "white bread", + "tomato sauce", + "dried basil", + "grated parmesan cheese", + "garlic", + "carrots", + "eggs", + "milk", + "finely chopped onion", + "ground pork", + "garlic cloves", + "dried oregano", + "tomato paste", + "black pepper", + "olive oil", + "flour", + "chopped celery", + "ground beef" + ] + }, + { + "id": 21628, + "cuisine": "italian", + "ingredients": [ + "canned low sodium chicken broth", + "eggplant", + "salt", + "dried thyme", + "mushrooms", + "crushed tomatoes", + "cayenne", + "onions", + "olive oil", + "linguine" + ] + }, + { + "id": 2681, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "japanese eggplants", + "pepper", + "chopped fresh mint", + "plain yogurt", + "salt", + "ground cumin", + "olive oil", + "chopped cilantro fresh" + ] + }, + { + "id": 18641, + "cuisine": "brazilian", + "ingredients": [ + "fruit", + "seeds", + "chia seeds", + "açai", + "goji berries", + "sliced almonds", + "cocoa powder", + "bananas", + "almond milk" + ] + }, + { + "id": 1671, + "cuisine": "russian", + "ingredients": [ + "carrots", + "potatoes", + "onions", + "beets", + "cabbage", + "beef tenderloin steaks" + ] + }, + { + "id": 13228, + "cuisine": "italian", + "ingredients": [ + "mussels", + "dry white wine", + "lemon juice", + "olive oil", + "garlic", + "fresh parsley", + "scallops", + "shallots", + "shrimp", + "italian plum tomatoes", + "crushed red pepper" + ] + }, + { + "id": 40155, + "cuisine": "indian", + "ingredients": [ + "bell pepper", + "chicken fingers", + "garam masala", + "sauce", + "olive oil", + "peas", + "masala", + "garlic naan", + "rice" + ] + }, + { + "id": 18464, + "cuisine": "moroccan", + "ingredients": [ + "almonds", + "chicken thighs", + "kosher salt", + "cinnamon", + "ground cumin", + "golden raisins", + "coriander", + "olive oil", + "carrots" + ] + }, + { + "id": 17669, + "cuisine": "southern_us", + "ingredients": [ + "chili powder", + "chicken pieces", + "ground black pepper", + "paprika", + "butter", + "flour", + "salt" + ] + }, + { + "id": 46914, + "cuisine": "korean", + "ingredients": [ + "ground ginger", + "pork belly", + "garlic powder", + "yellow onion", + "sugar", + "soy bean paste", + "sesame oil", + "canola oil", + "Korean chile flakes", + "cider vinegar", + "ground black pepper", + "toasted sesame seeds", + "soy sauce", + "honey", + "purple onion" + ] + }, + { + "id": 353, + "cuisine": "southern_us", + "ingredients": [ + "water", + "peas", + "liquid", + "sugar", + "bacon", + "all-purpose flour", + "garlic salt", + "potatoes", + "salt", + "onions", + "ground black pepper", + "tomatoes with juice", + "ground turkey" + ] + }, + { + "id": 13528, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "tortilla wraps", + "taco seasoning", + "sweet onion", + "ground turkey", + "green chilies" + ] + }, + { + "id": 8675, + "cuisine": "japanese", + "ingredients": [ + "white onion", + "mirin", + "vegetable oil", + "green beans", + "light soy sauce", + "fresh shiitake mushrooms", + "salt", + "shiso", + "pepper", + "baking powder", + "daikon", + "lotus roots", + "fresh ginger", + "sesame oil", + "all-purpose flour", + "large shrimp" + ] + }, + { + "id": 27351, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "dry white wine", + "garlic", + "olive oil", + "littleneck clams", + "flat leaf parsley", + "calamari", + "red pepper flakes", + "shrimp", + "mussels", + "sea scallops", + "linguine" + ] + }, + { + "id": 6830, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "chili powder", + "salt", + "garlic cloves", + "chicken stock", + "jalapeno chilies", + "paprika", + "okra", + "celery ribs", + "ground black pepper", + "turkey", + "cayenne pepper", + "onions", + "andouille sausage", + "vegetable oil", + "all-purpose flour", + "poblano chiles" + ] + }, + { + "id": 29985, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "large garlic cloves", + "fettucine", + "shallots", + "parmesan cheese", + "fresh oregano", + "olive oil", + "heirloom tomatoes" + ] + }, + { + "id": 36246, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "jalapeno chilies", + "cilantro leaves", + "tostada shells", + "lime", + "purple onion", + "avocado", + "lump crab meat", + "cilantro sprigs", + "plum tomatoes", + "mayonaise", + "olive oil", + "salt" + ] + }, + { + "id": 37599, + "cuisine": "french", + "ingredients": [ + "artichoke hearts", + "linguine", + "dried oregano", + "dried sage", + "sliced mushrooms", + "grated parmesan cheese", + "garlic", + "butter", + "escargot" + ] + }, + { + "id": 43289, + "cuisine": "thai", + "ingredients": [ + "red curry paste", + "creamy peanut butter", + "unsweetened coconut milk", + "fresh lime juice", + "low sodium gluten free soy sauce", + "canola oil" + ] + }, + { + "id": 15390, + "cuisine": "cajun_creole", + "ingredients": [ + "condensed french onion soup", + "garlic", + "sausage casings", + "vegetable oil", + "frozen peas", + "chicken breasts", + "cooked shrimp", + "picante sauce", + "instant white rice" + ] + }, + { + "id": 10633, + "cuisine": "indian", + "ingredients": [ + "semolina flour", + "jalapeno chilies", + "ginger", + "cumin seed", + "onions", + "curry powder", + "vegetable oil", + "all-purpose flour", + "rice flour", + "tumeric", + "coconut", + "cinnamon", + "chickpeas", + "chopped cilantro", + "water", + "yukon gold potatoes", + "salt", + "garlic cloves", + "frozen peas" + ] + }, + { + "id": 9924, + "cuisine": "french", + "ingredients": [ + "salt", + "unsalted butter", + "sugar", + "all-purpose flour", + "large eggs" + ] + }, + { + "id": 5228, + "cuisine": "british", + "ingredients": [ + "sugar", + "onion powder", + "worcestershire sauce", + "stilton cheese", + "baby greens", + "balsamic vinegar", + "hazelnut oil", + "ruby port", + "vegetable oil", + "dry red wine", + "light molasses", + "red wine vinegar", + "black mission figs" + ] + }, + { + "id": 48428, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "basil leaves", + "pinenuts", + "coarse salt", + "olive oil", + "garlic" + ] + }, + { + "id": 26467, + "cuisine": "irish", + "ingredients": [ + "Guinness Beer", + "ice cream", + "Irish whiskey" + ] + }, + { + "id": 9394, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "mango", + "cinnamon sugar", + "cooking spray", + "kiwi", + "bananas", + "frozen strawberries" + ] + }, + { + "id": 34542, + "cuisine": "jamaican", + "ingredients": [ + "fresh thyme", + "hot sauce", + "onions", + "black pepper", + "garlic", + "pork roast", + "steak sauce", + "worcestershire sauce", + "tomato ketchup", + "water", + "salt", + "corn starch" + ] + }, + { + "id": 43687, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "jalapeno chilies", + "bone-in chicken breasts", + "fresno chiles", + "Japanese turnips", + "vegetable oil", + "sweet basil", + "kosher salt", + "shallots", + "garlic cloves", + "light brown sugar", + "radishes", + "rice vermicelli", + "fresh lime juice" + ] + }, + { + "id": 13876, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salsa", + "Mexican cheese blend", + "corn tortillas", + "cottage cheese", + "scallions", + "chili powder" + ] + }, + { + "id": 36502, + "cuisine": "french", + "ingredients": [ + "large eggs", + "carrots", + "baking potatoes", + "shallots", + "corn starch", + "milk", + "heavy cream" + ] + }, + { + "id": 47428, + "cuisine": "chinese", + "ingredients": [ + "water", + "green onions", + "corn starch", + "black pepper", + "cooking oil", + "garlic", + "brown sugar", + "fresh ginger", + "chicken breasts", + "soy sauce", + "hoisin sauce", + "sesame oil" + ] + }, + { + "id": 43849, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "cooking spray", + "asiago", + "garlic cloves", + "dried thyme", + "large eggs", + "butter", + "all-purpose flour", + "black pepper", + "fat free milk", + "chicken breasts", + "dry sherry", + "fat free less sodium chicken broth", + "mushroom caps", + "shallots", + "salt" + ] + }, + { + "id": 15252, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "milk", + "roasted red peppers", + "all-purpose flour", + "seasoned bread crumbs", + "prosciutto", + "salt", + "asparagus spears", + "vidalia onion", + "garlic powder", + "red wine", + "fresh mushrooms", + "eggs", + "olive oil", + "veal cutlets", + "provolone cheese" + ] + }, + { + "id": 37073, + "cuisine": "thai", + "ingredients": [ + "palm sugar", + "fresh lime juice", + "chiles", + "roasted peanuts", + "green papaya", + "fish sauce", + "garlic", + "dried shrimp", + "cherry tomatoes", + "long green beans" + ] + }, + { + "id": 44310, + "cuisine": "spanish", + "ingredients": [ + "pitted date", + "dried apricot", + "almonds", + "spanish chorizo", + "manchego cheese", + "spices", + "grated orange peel", + "pork sausage links", + "smoked paprika" + ] + }, + { + "id": 5432, + "cuisine": "french", + "ingredients": [ + "eggs", + "unsalted butter", + "water", + "pastry dough", + "ground cinnamon", + "vanilla beans", + "granny smith apples", + "granulated sugar" + ] + }, + { + "id": 13492, + "cuisine": "korean", + "ingredients": [ + "romaine lettuce", + "light soy sauce", + "ham", + "kiwi", + "eggs", + "cider vinegar", + "sesame oil", + "chopped cilantro", + "sugar", + "chili paste", + "carrots", + "fish sauce", + "water", + "scallions", + "noodles" + ] + }, + { + "id": 288, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "butter", + "spices" + ] + }, + { + "id": 28797, + "cuisine": "cajun_creole", + "ingredients": [ + "bell pepper", + "diced tomatoes", + "all-purpose flour", + "onions", + "cooked rice", + "butter", + "kielbasa", + "celery", + "water", + "turkey", + "salt", + "fresh parsley", + "chicken broth", + "bay leaves", + "garlic", + "okra", + "dried oregano" + ] + }, + { + "id": 35456, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "olives", + "cheddar cheese", + "meat", + "tomato sauce", + "corn chips", + "taco seasoning mix" + ] + }, + { + "id": 22241, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "sesame oil", + "brown sugar", + "green onions", + "dipping sauces", + "shredded cabbage", + "wonton wrappers", + "fresh cilantro", + "cooked chicken", + "peanut oil" + ] + }, + { + "id": 46827, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dried basil", + "vegetable oil", + "white sugar", + "mozzarella cheese", + "ground black pepper", + "all-purpose flour", + "tomato sauce", + "garlic powder", + "salt", + "dried oregano", + "saltines", + "water", + "grated parmesan cheese", + "steak" + ] + }, + { + "id": 11636, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "zucchini", + "milk", + "salt", + "biscuit baking mix", + "grated parmesan cheese", + "tomatoes", + "ground black pepper", + "chopped onion" + ] + }, + { + "id": 22054, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "green tomatoes", + "whole milk", + "salt", + "large eggs", + "vegetable oil", + "cracker crumbs", + "all-purpose flour" + ] + }, + { + "id": 48916, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "lasagna noodles", + "dry bread crumbs", + "cottage cheese", + "lean ground beef", + "onions", + "tomato sauce", + "mushrooms", + "shredded mozzarella cheese", + "eggs", + "milk", + "part-skim ricotta cheese" + ] + }, + { + "id": 16075, + "cuisine": "mexican", + "ingredients": [ + "lean ground pork", + "kosher salt", + "olive oil", + "ancho powder", + "chopped cilantro", + "hungarian sweet paprika", + "fat free less sodium chicken broth", + "water", + "ground turkey breast", + "ground coriander", + "sliced green onions", + "diced onions", + "black pepper", + "minced garlic", + "sherry vinegar", + "dry red wine", + "dried oregano", + "low-fat sour cream", + "black beans", + "lime juice", + "diced tomatoes", + "chipotles in adobo", + "ground cumin" + ] + }, + { + "id": 20975, + "cuisine": "russian", + "ingredients": [ + "pierogi", + "onions", + "cremini mushrooms", + "garlic cloves", + "dough", + "unsalted butter", + "boiling water", + "dried porcini mushrooms", + "flat leaf parsley" + ] + }, + { + "id": 18486, + "cuisine": "irish", + "ingredients": [ + "cooking spray", + "whole wheat flour", + "salt", + "buttermilk", + "baking soda", + "all-purpose flour" + ] + }, + { + "id": 25167, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "cilantro sprigs", + "chopped cilantro fresh", + "cooking spray", + "dark sesame oil", + "trout fillet", + "fresh lime juice", + "lime slices", + "crushed red pepper" + ] + }, + { + "id": 15483, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "rice vinegar", + "japanese cucumber", + "sesame seeds", + "sugar", + "salt" + ] + }, + { + "id": 6937, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dried basil", + "grated parmesan cheese", + "tomatoes", + "ground black pepper", + "seasoning salt", + "garlic" + ] + }, + { + "id": 3160, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "dry red wine", + "italian seasoning", + "tomato paste", + "olive oil", + "garlic cloves", + "dried basil", + "chopped onion", + "sugar", + "diced tomatoes", + "fresh parsley" + ] + }, + { + "id": 10869, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "vegetable oil cooking spray", + "salt", + "seasoning", + "sweet potatoes", + "sweet onion" + ] + }, + { + "id": 48342, + "cuisine": "italian", + "ingredients": [ + "pesto", + "butter", + "penne pasta", + "olive oil", + "garlic", + "pepper", + "heavy cream", + "boneless skinless chicken breast halves", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 8631, + "cuisine": "mexican", + "ingredients": [ + "stew meat", + "shredded cheese", + "large flour tortillas", + "refried beans", + "enchilada sauce", + "beef stock cubes" + ] + }, + { + "id": 42457, + "cuisine": "spanish", + "ingredients": [ + "red lentils", + "hungarian paprika", + "salt", + "onions", + "olive oil", + "diced tomatoes", + "almond oil", + "sliced almonds", + "red wine vinegar", + "roast red peppers, drain", + "chicken broth", + "nonfat dry milk", + "garlic cloves" + ] + }, + { + "id": 16002, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "crushed tomatoes", + "salt", + "red bell pepper", + "pepperoni slices", + "olive oil", + "fresh mushrooms", + "warm water", + "active dry yeast", + "all-purpose flour", + "white sugar", + "green bell pepper", + "bulk italian sausag", + "garlic powder", + "shredded mozzarella cheese" + ] + }, + { + "id": 48774, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "bacon", + "thyme", + "cayenne", + "garlic", + "onions", + "ground black pepper", + "stewed tomatoes", + "celery", + "kosher salt", + "butter", + "frozen corn" + ] + }, + { + "id": 37540, + "cuisine": "italian", + "ingredients": [ + "salami", + "olive oil", + "low moisture mozzarella", + "biscuit dough", + "parmesan cheese", + "italian seasoning" + ] + }, + { + "id": 45754, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "black pepper", + "salt", + "ground cloves", + "olive oil", + "ground turmeric", + "salmon fillets", + "dried thyme", + "ground coriander", + "fennel seeds", + "fat free yogurt", + "lemon wedge", + "ground cumin" + ] + }, + { + "id": 41547, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "cherries", + "vanilla extract", + "superfine sugar", + "all purpose unbleached flour", + "salt", + "dark chocolate", + "unsalted butter", + "heavy cream", + "kirsch", + "sugar", + "large eggs", + "Dutch-processed cocoa powder" + ] + }, + { + "id": 10351, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "cream cheese, soften", + "grated parmesan cheese", + "bagels", + "minced garlic", + "plum tomatoes" + ] + }, + { + "id": 30012, + "cuisine": "thai", + "ingredients": [ + "ketchup", + "large eggs", + "rice vermicelli", + "Thai fish sauce", + "peanuts", + "lime wedges", + "peanut oil", + "dried shrimp", + "sugar", + "Sriracha", + "crushed red pepper flakes", + "shrimp", + "minced garlic", + "green onions", + "cilantro leaves", + "beansprouts" + ] + }, + { + "id": 26353, + "cuisine": "italian", + "ingredients": [ + "butter", + "saffron", + "white wine", + "rice", + "grated parmesan cheese", + "onions", + "stock", + "salt" + ] + }, + { + "id": 25824, + "cuisine": "moroccan", + "ingredients": [ + "garbanzo beans", + "vegetable broth", + "pinto beans", + "dried lentils", + "cinnamon", + "cayenne pepper", + "onions", + "fresh ginger", + "diced tomatoes", + "garlic cloves", + "cumin", + "nutmeg", + "garam masala", + "chopped celery", + "carrots" + ] + }, + { + "id": 7636, + "cuisine": "mexican", + "ingredients": [ + "cooked rice", + "garlic powder", + "paprika", + "ground turmeric", + "ketchup", + "vegetable oil", + "cayenne pepper", + "green bell pepper", + "green onions", + "salt", + "ground cumin", + "tomatoes", + "corn kernels", + "red pepper flakes", + "ground coriander" + ] + }, + { + "id": 20313, + "cuisine": "thai", + "ingredients": [ + "unsweetened shredded dried coconut", + "ice cream", + "light brown sugar", + "cookies", + "granulated sugar", + "dry roasted peanuts", + "heavy cream" + ] + }, + { + "id": 16983, + "cuisine": "moroccan", + "ingredients": [ + "lemon", + "fresh lemon juice", + "kosher salt" + ] + }, + { + "id": 47900, + "cuisine": "indian", + "ingredients": [ + "sliced almonds", + "condensed milk", + "coconut", + "sugar", + "cashew nuts" + ] + }, + { + "id": 41768, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "soy sauce", + "oil", + "potato starch", + "ginger", + "boneless chicken thighs" + ] + }, + { + "id": 23368, + "cuisine": "mexican", + "ingredients": [ + "lemon zest", + "halibut steak", + "olive oil", + "cilantro sprigs", + "tomato salsa", + "corn tortillas", + "ground black pepper", + "salt" + ] + }, + { + "id": 40384, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "dark brown sugar", + "pie dough", + "vanilla extract", + "pecans", + "light corn syrup", + "unsalted butter", + "salt" + ] + }, + { + "id": 40372, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "blackberries", + "navel oranges", + "brandy", + "club soda", + "lemonade", + "rioja" + ] + }, + { + "id": 8748, + "cuisine": "italian", + "ingredients": [ + "sugar", + "diced tomatoes", + "oil", + "penne", + "finely chopped onion", + "goat cheese", + "plum tomatoes", + "ground black pepper", + "salt", + "flat leaf parsley", + "olive oil", + "basil", + "garlic cloves" + ] + }, + { + "id": 42324, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "heavy cream", + "milk", + "fresh parsley", + "vidalia onion", + "all-purpose flour", + "butter" + ] + }, + { + "id": 39378, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "light red kidney beans", + "ranch dressing", + "stewed tomatoes", + "ground beef", + "tomatoes", + "taco seasoning mix", + "corn chips", + "black olives", + "chiles", + "green onions", + "diced tomatoes", + "sour cream", + "green chile", + "jalapeno chilies", + "grating cheese", + "pinto beans" + ] + }, + { + "id": 43884, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "pepper", + "boneless chicken breast", + "chili powder", + "reduced-fat sour cream", + "red bell pepper", + "ground cumin", + "white onion", + "garlic powder", + "jalapeno chilies", + "tomatillos", + "salt", + "dried oregano", + "chicken broth", + "white cannellini beans", + "Mexican cheese blend", + "flour", + "diced tomatoes", + "enchilada sauce", + "chorizo sausage", + "white corn", + "fresh cilantro", + "flour tortillas", + "parsley", + "garlic", + "oregano" + ] + }, + { + "id": 5621, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "chili powder", + "garlic cloves", + "water", + "jalapeno chilies", + "paprika", + "chopped cilantro", + "kosher salt", + "Mexican cheese blend", + "vegetable oil", + "red bell pepper", + "lime", + "boneless skinless chicken breasts", + "frozen corn", + "ground cumin" + ] + }, + { + "id": 6141, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "garlic", + "pepper", + "onions", + "spaghetti sauce seasoning mix", + "salt", + "tomato paste", + "lean ground beef" + ] + }, + { + "id": 9158, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "red wine vinegar", + "grated lemon zest", + "tomatoes", + "black-eyed peas", + "extra-virgin olive oil", + "flat leaf parsley", + "romaine lettuce", + "feta cheese", + "purple onion", + "oregano", + "peperoncini", + "seedless cucumber", + "orzo", + "fresh lemon juice" + ] + }, + { + "id": 1056, + "cuisine": "mexican", + "ingredients": [ + "pork", + "salt", + "lard", + "baking powder", + "garlic cloves", + "boiling water", + "corn husks", + "freshly ground pepper", + "onions", + "chiles", + "coarse salt", + "hot water", + "masa harina" + ] + }, + { + "id": 17378, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "starch", + "crushed garlic", + "rice vinegar", + "cooked white rice", + "eggs", + "orange", + "sesame oil", + "ginger", + "broccoli", + "iceberg lettuce", + "soy sauce", + "water chestnuts", + "vegetable oil", + "salt", + "white rice flour", + "club soda", + "light brown sugar", + "water", + "green onions", + "flaked", + "all-purpose flour", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 15002, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "monterey jack", + "low-fat plain yogurt", + "extra-virgin olive oil", + "onions", + "fat-free refried beans", + "poblano chiles", + "cremini mushrooms", + "garlic", + "plum tomatoes" + ] + }, + { + "id": 31005, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "grated parmesan cheese", + "all-purpose flour", + "frozen chopped spinach", + "eggplant", + "ricotta cheese", + "dried parsley", + "pepper", + "vegetable oil", + "shredded mozzarella cheese", + "eggs", + "garlic powder", + "salt", + "italian seasoning" + ] + }, + { + "id": 44270, + "cuisine": "french", + "ingredients": [ + "olive oil", + "beef broth", + "black pepper", + "gruyere cheese", + "garlic cloves", + "french bread", + "chopped onion", + "dried thyme", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 11677, + "cuisine": "french", + "ingredients": [ + "duck", + "kosher salt", + "ground white pepper", + "sauterne" + ] + }, + { + "id": 32689, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "hot pepper sauce", + "chopped onion", + "olive oil", + "paprika", + "boneless skinless chicken breast halves", + "black-eyed peas", + "salt", + "sliced green onions", + "minced garlic", + "old bay seasoning", + "long-grain rice" + ] + }, + { + "id": 8901, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "lemon grass", + "firm tofu", + "ground turmeric", + "cooked rice", + "water", + "shallots", + "salad oil", + "minced garlic", + "basil leaves", + "roasted peanuts", + "sugar", + "hot chili", + "salt", + "onions" + ] + }, + { + "id": 26271, + "cuisine": "chinese", + "ingredients": [ + "ruby port", + "vegetable oil", + "shallots", + "beef tenderloin steaks", + "fresh ginger", + "butter", + "green peppercorns", + "szechwan peppercorns", + "brine" + ] + }, + { + "id": 45791, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "shredded sharp cheddar cheese", + "kosher salt", + "chicken breasts", + "cilantro leaves", + "flour tortillas", + "purple onion", + "olive oil", + "pineapple", + "bbq sauce" + ] + }, + { + "id": 29579, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "green onions", + "salt", + "bay leaf", + "cooking spray", + "vegetable gumbo", + "garlic cloves", + "dried oregano", + "fat free less sodium chicken broth", + "ground red pepper", + "all-purpose flour", + "medium shrimp", + "dried thyme", + "turkey kielbasa", + "long-grain rice", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 38898, + "cuisine": "korean", + "ingredients": [ + "golden caster sugar", + "ginger", + "garlic cloves", + "radishes", + "chinese cabbage", + "fish sauce", + "rice vinegar", + "carrots", + "spring onions", + "chili sauce" + ] + }, + { + "id": 32210, + "cuisine": "southern_us", + "ingredients": [ + "mint leaves", + "fresh lemon juice", + "rye whiskey", + "liqueur" + ] + }, + { + "id": 6943, + "cuisine": "mexican", + "ingredients": [ + "salt", + "boneless skinless chicken breasts", + "pepper", + "salsa", + "lime wedges" + ] + }, + { + "id": 29738, + "cuisine": "thai", + "ingredients": [ + "sticky rice" + ] + }, + { + "id": 562, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "rome apples", + "light brown sugar", + "butter", + "granulated sugar", + "sundae syrup", + "granny smith apples", + "all-purpose flour" + ] + }, + { + "id": 23578, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "sauce mix", + "onions", + "shredded cheddar cheese", + "lean ground beef", + "sliced black olives" + ] + }, + { + "id": 37640, + "cuisine": "indian", + "ingredients": [ + "fresh spinach", + "chili paste", + "salt", + "onions", + "fresh ginger", + "vegetable oil", + "lemon juice", + "sugar", + "extra firm tofu", + "garlic cloves", + "ground cumin", + "tumeric", + "garam masala", + "vegetable broth", + "coconut milk" + ] + }, + { + "id": 46968, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "capicola", + "dried apricot", + "kalamata", + "soppressata", + "fish", + "smoked salmon", + "almonds", + "parmigiano reggiano cheese", + "asiago", + "cornichons", + "shrimp", + "tomatoes", + "manchego cheese", + "dijon mustard", + "meat", + "extra-virgin olive oil", + "freshly ground pepper", + "pears", + "breadstick", + "prosciutto", + "artichok heart marin", + "sea salt", + "cheese", + "pickled vegetables" + ] + }, + { + "id": 23047, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "chicken meat", + "okra", + "serrano peppers", + "salt", + "bok choy", + "poblano peppers", + "garlic", + "beef sausage", + "leeks", + "meat bones", + "oregano" + ] + }, + { + "id": 15554, + "cuisine": "filipino", + "ingredients": [ + "fruit cocktail", + "Nestle Table Cream", + "shredded cheddar cheese", + "sugar", + "sweetened condensed milk", + "pineapple" + ] + }, + { + "id": 22578, + "cuisine": "japanese", + "ingredients": [ + "baking powder", + "granulated sugar", + "all-purpose flour", + "milk", + "vanilla extract", + "large eggs" + ] + }, + { + "id": 7908, + "cuisine": "indian", + "ingredients": [ + "leaves", + "jeera", + "salt", + "garam masala", + "cooked rice", + "oil" + ] + }, + { + "id": 16062, + "cuisine": "french", + "ingredients": [ + "chopped fresh thyme", + "goat cheese", + "corn oil", + "whipping cream", + "shallots", + "salt", + "cracked black pepper" + ] + }, + { + "id": 25676, + "cuisine": "brazilian", + "ingredients": [ + "sweetened condensed milk", + "butter", + "whole cloves", + "sweetened coconut flakes" + ] + }, + { + "id": 7715, + "cuisine": "southern_us", + "ingredients": [ + "ground ginger", + "water", + "large eggs", + "salt", + "molasses", + "baking soda", + "dried apple", + "light brown sugar", + "cider vinegar", + "unsalted butter", + "apple cider", + "ground cloves", + "mace", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 48435, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "low sodium chicken broth", + "diced tomatoes", + "dried oregano", + "garlic powder", + "boneless skinless chicken breasts", + "fresh parsley", + "kale", + "cannellini beans", + "salt", + "chili flakes", + "zucchini", + "red pepper", + "onions" + ] + }, + { + "id": 41311, + "cuisine": "chinese", + "ingredients": [ + "broccolini", + "low sodium chicken broth", + "cilantro sprigs", + "medium shrimp", + "reduced sodium soy sauce", + "rice wine", + "ground white pepper", + "fresh ginger", + "chives", + "corn starch", + "dried mushrooms", + "water chestnuts", + "wonton wrappers", + "toasted sesame oil" + ] + }, + { + "id": 38033, + "cuisine": "italian", + "ingredients": [ + "kahlúa", + "water", + "mascarpone", + "semi-sweet chocolate morsels", + "brandy", + "instant espresso powder", + "whipping cream", + "biscuits", + "chocolate leaves", + "ground nutmeg", + "vanilla extract", + "sugar", + "large egg yolks", + "dark rum" + ] + }, + { + "id": 6469, + "cuisine": "irish", + "ingredients": [ + "water", + "flour", + "cayenne pepper", + "bay leaf", + "cold water", + "pig feet", + "chopped celery", + "split peas", + "white bread", + "potatoes", + "salt", + "carrots", + "dried thyme", + "butter", + "chopped onion" + ] + }, + { + "id": 16348, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "creole seasoning", + "soy sauce", + "lemon wedge", + "fresh parsley", + "honey", + "cayenne pepper", + "large shrimp", + "french bread", + "fresh lemon juice" + ] + }, + { + "id": 7817, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "fresh ginger", + "ground cardamom", + "onions", + "curry powder", + "hot pepper", + "cinnamon sticks", + "ground cumin", + "ground cloves", + "vinegar", + "mustard seeds", + "boneless skinless chicken breast halves", + "olive oil", + "garlic cloves", + "fresh parsley" + ] + }, + { + "id": 19270, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "cream cheese, soften", + "fontina cheese", + "garlic", + "parmesan cheese", + "sour cream", + "crawfish", + "roast red peppers, drain" + ] + }, + { + "id": 42734, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "gingerroot", + "red bell pepper", + "boneless skinless chicken breasts", + "carrots", + "noodles", + "broccoli florets", + "garlic cloves", + "onions", + "sugar", + "fresh mushrooms", + "corn starch", + "Progresso™ Chicken Broth" + ] + }, + { + "id": 43504, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "sour cream", + "ground cumin", + "salt", + "boneless skinless chicken breast halves", + "green onions", + "corn tortillas", + "pepper", + "salsa", + "chopped cilantro fresh" + ] + }, + { + "id": 3318, + "cuisine": "chinese", + "ingredients": [ + "avocado", + "herbs", + "greens", + "water", + "scallions", + "chili flakes", + "ginger", + "rice paper", + "organic chicken", + "lemon juice" + ] + }, + { + "id": 15698, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "leftover steak", + "green onions", + "broccoli", + "toasted sesame seeds", + "water", + "garlic", + "onions", + "sugar", + "chili oil", + "oyster sauce" + ] + }, + { + "id": 28795, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "toasted baguette", + "garlic cloves", + "chopped fresh mint", + "capers", + "fish stock", + "crushed red pepper", + "flat leaf parsley", + "green olives", + "ground black pepper", + "garlic", + "toasted pine nuts", + "fish fillets", + "diced tomatoes", + "salt", + "onions" + ] + }, + { + "id": 19436, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "cilantro stems", + "onions", + "lime", + "garlic", + "pepper", + "extra-virgin olive oil", + "long grain white rice", + "chicken broth", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 7236, + "cuisine": "moroccan", + "ingredients": [ + "dried currants", + "crushed red pepper", + "chopped cilantro fresh", + "collard greens", + "olive oil", + "garlic cloves", + "ground cinnamon", + "water", + "chopped onion", + "ground cumin", + "sausage links", + "unsalted butter", + "couscous" + ] + }, + { + "id": 15232, + "cuisine": "spanish", + "ingredients": [ + "sherry vinegar", + "freshly ground pepper", + "olive oil", + "salt", + "spanish onion", + "garlic", + "yukon gold", + "round loaf", + "large eggs", + "frisee" + ] + }, + { + "id": 23064, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "grated parmesan cheese", + "salt", + "tomatoes", + "part-skim mozzarella cheese", + "onion powder", + "dried oregano", + "frozen chopped spinach", + "dried basil", + "lasagna noodles, cooked and drained", + "fresh basil leaves", + "vegetable oil cooking spray", + "garlic powder", + "ricotta cheese" + ] + }, + { + "id": 40172, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "ground cloves", + "large eggs", + "heavy cream", + "ground ginger", + "mace", + "all purpose unbleached flour", + "grated nutmeg", + "blackstrap molasses", + "granulated sugar", + "whipped cream", + "ground cardamom", + "pie crust", + "orange", + "sweet potatoes", + "sea salt" + ] + }, + { + "id": 39718, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "fresh shiitake mushrooms", + "oyster sauce", + "mung bean sprouts", + "Shaoxing wine", + "garlic", + "ground white pepper", + "snow peas", + "soy sauce", + "sesame oil", + "carrots", + "noodles", + "dark soy sauce", + "shredded cabbage", + "scallions", + "red bell pepper", + "canola oil" + ] + }, + { + "id": 16179, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "soy sauce", + "vegetable oil", + "cut up chicken", + "brown sugar", + "water", + "green pepper", + "pineapple chunks", + "ketchup", + "pineapple juice", + "chicken bouillon granules", + "sugar", + "vinegar", + "corn starch" + ] + }, + { + "id": 5473, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "granny smith apples", + "unsalted butter", + "raisins", + "all-purpose flour", + "fresh lemon juice", + "ground cinnamon", + "superfine sugar", + "potato bread", + "crust", + "light rum", + "crumb crust", + "water", + "old-fashioned oats", + "apples", + "grated lemon zest", + "corn starch", + "vanilla ice cream", + "ground nutmeg", + "golden delicious apples", + "salt", + "sauce" + ] + }, + { + "id": 49653, + "cuisine": "mexican", + "ingredients": [ + "bay leaves", + "hot sauce", + "dried oregano", + "water", + "bacon slices", + "garlic cloves", + "black pepper", + "dried pinto beans", + "beer", + "minced onion", + "salt", + "onions" + ] + }, + { + "id": 6635, + "cuisine": "italian", + "ingredients": [ + "salt pork", + "sweet sherry", + "rabbit" + ] + }, + { + "id": 48407, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "spaghetti", + "tomato sauce", + "ricotta cheese", + "grated parmesan cheese", + "olive oil", + "salt" + ] + }, + { + "id": 7179, + "cuisine": "southern_us", + "ingredients": [ + "bananas", + "yellow food coloring", + "corn starch", + "large egg yolks", + "cooking spray", + "whipped topping", + "low fat graham cracker crumbs", + "large eggs", + "vanilla extract", + "sugar", + "reduced fat milk", + "margarine" + ] + }, + { + "id": 16659, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "vegetable oil", + "cilantro leaves", + "monterey jack", + "pepper", + "garlic", + "sour cream", + "white onion", + "tomatillos", + "roasting chickens", + "ground cumin", + "jalapeno chilies", + "salt", + "corn tortillas" + ] + }, + { + "id": 20467, + "cuisine": "mexican", + "ingredients": [ + "poblano chilies", + "chopped cilantro fresh", + "tomatillos", + "fresh lime juice", + "red potato", + "cilantro sprigs", + "ground cumin", + "green onions", + "sour cream" + ] + }, + { + "id": 32429, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "jalapeno chilies", + "salt", + "garlic powder", + "chili powder", + "cream cheese", + "corn kernels", + "green onions", + "tortilla chips", + "tomatoes", + "Mexican cheese blend", + "cilantro" + ] + }, + { + "id": 46227, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "feta cheese", + "cubed pumpkin", + "pepper", + "garlic", + "baby spinach leaves", + "vegetable broth", + "onions", + "olive oil", + "salt" + ] + }, + { + "id": 41583, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "boneless skinless chicken", + "toasted sesame oil", + "soy sauce", + "cooking oil", + "chow mein noodles", + "hoisin sauce", + "broccoli", + "water", + "sweet pepper", + "corn starch" + ] + }, + { + "id": 19978, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "cooking oil", + "lime", + "salt", + "water", + "granulated white sugar", + "soy sauce", + "pork chops", + "onions" + ] + }, + { + "id": 7160, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "cinnamon", + "honey", + "salt", + "crushed cornflakes", + "butter", + "vanilla ice cream", + "cool whip" + ] + }, + { + "id": 40115, + "cuisine": "greek", + "ingredients": [ + "grapes", + "celery", + "boneless skinless chicken breasts", + "nonfat greek yogurt", + "slivered almonds", + "apples" + ] + }, + { + "id": 21969, + "cuisine": "french", + "ingredients": [ + "chicken broth", + "leeks", + "all-purpose flour", + "chicken leg quarters", + "thick-cut bacon", + "kosher salt", + "button mushrooms", + "garlic cloves", + "thyme sprigs", + "parsley sprigs", + "shallots", + "freshly ground pepper", + "chopped parsley", + "tomato paste", + "unsalted butter", + "pinot noir", + "carrots", + "bay leaf" + ] + }, + { + "id": 915, + "cuisine": "mexican", + "ingredients": [ + "mint", + "lime juice", + "garlic", + "lime zest", + "pepper", + "shallots", + "chopped cilantro", + "sugar", + "rum", + "salt", + "avocado", + "tilapia fillets", + "whole wheat tortillas" + ] + }, + { + "id": 13132, + "cuisine": "greek", + "ingredients": [ + "pepper", + "salt", + "ground lamb", + "green bell pepper", + "dried mint flakes", + "onions", + "large eggs", + "fresh parsley", + "tomato sauce", + "quick-cooking oats", + "dried oregano" + ] + }, + { + "id": 5340, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "cayenne", + "vegetable oil", + "fresh lime juice", + "coriander seeds", + "boneless skinless chicken breasts", + "cumin seed", + "fresh ginger", + "whole milk yoghurt", + "salt", + "ground turmeric", + "garam masala", + "lime wedges", + "garlic cloves" + ] + }, + { + "id": 21899, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "okra", + "baking soda", + "salt", + "buttermilk", + "white cornmeal", + "large eggs", + "peanut oil" + ] + }, + { + "id": 2758, + "cuisine": "moroccan", + "ingredients": [ + "pinenuts", + "fresh lemon juice", + "couscous", + "tomatoes", + "salt", + "fresh mint", + "preserved lemon", + "freshly ground pepper", + "flat leaf parsley", + "Belgian endive", + "olive oil", + "hot water" + ] + }, + { + "id": 24139, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "bay leaves", + "red wine vinegar", + "olive oil", + "chicken parts", + "salt", + "pepper", + "golden raisins", + "pitted green olives", + "garlic powder", + "dry white wine", + "fresh oregano" + ] + }, + { + "id": 29714, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "vanilla extract", + "pastry", + "almond extract", + "confectioners sugar", + "sugar", + "pistachios", + "salt", + "large egg whites", + "macarons" + ] + }, + { + "id": 32971, + "cuisine": "japanese", + "ingredients": [ + "white wine", + "low sodium chicken broth", + "scallions", + "boneless chop pork", + "fresh ginger", + "cilantro leaves", + "canola oil", + "soy sauce", + "kosher salt", + "ramen noodles", + "carrots", + "black pepper", + "radishes", + "rice vinegar" + ] + }, + { + "id": 35981, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "crushed tomatoes", + "jalapeno chilies", + "ground coriander", + "boneless chicken skinless thigh", + "garam masala", + "heavy cream", + "onions", + "sugar", + "fresh ginger", + "butter", + "chopped cilantro", + "kosher salt", + "nonfat plain greek yogurt", + "garlic", + "ground cumin" + ] + }, + { + "id": 22327, + "cuisine": "italian", + "ingredients": [ + "warm water", + "dry yeast", + "all-purpose flour", + "vegetable oil cooking spray", + "water", + "poppy seeds", + "skim milk", + "egg whites", + "sugar", + "olive oil", + "salt" + ] + }, + { + "id": 46030, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "ravioli", + "marinara sauce", + "bread", + "Italian cheese blend" + ] + }, + { + "id": 43128, + "cuisine": "chinese", + "ingredients": [ + "sake", + "white onion", + "corn starch", + "white pepper", + "oyster sauce", + "soy sauce", + "boneless skinless chicken breasts", + "frozen peas and carrots", + "black pepper", + "oil" + ] + }, + { + "id": 46686, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "heavy cream", + "sharp cheddar cheese", + "low sodium chicken broth", + "salt", + "broccoli florets", + "garlic", + "thick-cut bacon", + "diced onions", + "boneless skinless chicken breasts", + "penne pasta" + ] + }, + { + "id": 27824, + "cuisine": "brazilian", + "ingredients": [ + "green olives", + "chopped tomatoes", + "salt", + "white vinegar", + "hearts of palm", + "flour", + "yeast", + "skim milk", + "grated parmesan cheese", + "oil", + "eggs", + "corn", + "green peas", + "canola oil" + ] + }, + { + "id": 39214, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "olive oil", + "onions", + "soy sauce", + "garlic", + "tomatoes", + "salt and ground black pepper", + "water", + "squid" + ] + }, + { + "id": 27395, + "cuisine": "french", + "ingredients": [ + "bay leaves", + "pears", + "sugar", + "muscat", + "fresh lemon juice", + "red beets", + "cinnamon sticks" + ] + }, + { + "id": 11914, + "cuisine": "french", + "ingredients": [ + "water", + "semisweet chocolate", + "whiskey", + "sugar", + "unsalted butter", + "corn starch", + "vanilla beans", + "large eggs", + "unsweetened cocoa powder", + "powdered sugar", + "milk", + "whipping cream" + ] + }, + { + "id": 36098, + "cuisine": "vietnamese", + "ingredients": [ + "pandanus leaf", + "large eggs", + "extract", + "tapioca starch", + "coconut cream", + "sugar", + "baking powder" + ] + }, + { + "id": 47621, + "cuisine": "italian", + "ingredients": [ + "red lentils", + "water", + "garlic", + "onions", + "tomato sauce", + "zucchini", + "salt", + "dried oregano", + "fresh tomatoes", + "dried basil", + "chopped celery", + "long grain white rice", + "pepper", + "vegetable oil", + "carrots", + "ground cumin" + ] + }, + { + "id": 24965, + "cuisine": "spanish", + "ingredients": [ + "Spanish olives", + "parsley", + "olive oil", + "bread", + "hard salami" + ] + }, + { + "id": 37773, + "cuisine": "brazilian", + "ingredients": [ + "lime juice", + "cachaca", + "kumquats", + "sugar", + "ice" + ] + }, + { + "id": 7724, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic", + "grated parmesan cheese", + "pinenuts", + "loosely packed fresh basil leaves", + "olive oil" + ] + }, + { + "id": 32486, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "black pepper", + "bell pepper", + "oil", + "ground turmeric", + "chat masala", + "garam masala", + "salt", + "onions", + "ajwain", + "coriander powder", + "curds", + "bamboo shoots", + "garlic paste", + "amchur", + "paneer", + "jeera" + ] + }, + { + "id": 42545, + "cuisine": "italian", + "ingredients": [ + "italian tomatoes", + "bow-tie pasta", + "crumbled gorgonzola", + "fontina cheese", + "milk", + "fresh parsley leaves", + "mozzarella cheese", + "all-purpose flour", + "romano cheese", + "unsalted butter", + "juice" + ] + }, + { + "id": 48975, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chicken breasts", + "corn starch", + "eggs", + "Sriracha", + "rice vinegar", + "orange zest", + "orange", + "garlic", + "chicken", + "sugar", + "self rising flour", + "oil" + ] + }, + { + "id": 14415, + "cuisine": "irish", + "ingredients": [ + "cake flour", + "buttermilk", + "baking soda", + "all-purpose flour", + "salt" + ] + }, + { + "id": 30271, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "worcestershire sauce", + "corn grits", + "unsalted butter", + "fresh lemon juice", + "hot pepper sauce", + "dark beer", + "fresh rosemary", + "whole milk", + "medium shrimp" + ] + }, + { + "id": 47836, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "garam masala", + "salt", + "juice", + "methi", + "curry powder", + "chili powder", + "meat bones", + "ghee", + "pepper", + "coriander powder", + "cilantro leaves", + "carrots", + "ground cumin", + "ginger purée", + "chopped tomatoes", + "lamb shoulder", + "garlic puree", + "onions" + ] + }, + { + "id": 34053, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "salt", + "Alfredo sauce", + "jumbo pasta shells", + "shredded cheddar cheese", + "shredded parmesan cheese", + "cooked chicken", + "broccoli" + ] + }, + { + "id": 26325, + "cuisine": "italian", + "ingredients": [ + "water", + "black olives", + "red bell pepper", + "low-fat bottled italian dressing", + "pepperocini", + "artichoke hearts", + "purple onion", + "salad", + "grated parmesan cheese", + "ham" + ] + }, + { + "id": 8641, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "quinoa", + "black beans", + "Mexican cheese", + "tortillas" + ] + }, + { + "id": 26335, + "cuisine": "indian", + "ingredients": [ + "Mazola Corn Oil", + "almonds", + "butter", + "cubed beef", + "ground cumin", + "tumeric", + "coriander powder", + "salt", + "boiling water", + "red chili peppers", + "yoghurt", + "cardamom", + "ginger paste", + "garlic paste", + "garam masala", + "kasuri methi", + "onions" + ] + }, + { + "id": 21675, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "tuna steaks", + "oregano", + "cooking spray", + "fresh lemon juice", + "kosher salt", + "extra-virgin olive oil" + ] + }, + { + "id": 36141, + "cuisine": "irish", + "ingredients": [ + "shallots", + "mint sprigs", + "leg of lamb", + "fresh rosemary", + "vegetable oil", + "fresh tarragon", + "low salt chicken broth", + "dry white wine", + "butter", + "chopped fresh sage", + "chopped fresh mint", + "parsley sprigs", + "chopped fresh thyme", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 44397, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "cream", + "paneer", + "oil", + "ghee", + "white pepper", + "garam masala", + "green chilies", + "cinnamon sticks", + "cashew nuts", + "clove", + "plain yogurt", + "poppy seeds", + "kewra water", + "bay leaf", + "shahi jeera", + "sugar", + "vegetables", + "salt", + "ground cardamom", + "onions" + ] + }, + { + "id": 11032, + "cuisine": "french", + "ingredients": [ + "sugar", + "fresh lime juice", + "watermelon", + "water", + "cantaloupe" + ] + }, + { + "id": 8262, + "cuisine": "greek", + "ingredients": [ + "greek seasoning", + "boneless skinless chicken breasts", + "coconut oil", + "lemon" + ] + }, + { + "id": 28900, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "lemongrass", + "shallots", + "rice vermicelli", + "garlic cloves", + "pork shoulder", + "water", + "hot chili", + "daikon", + "cilantro leaves", + "fresh mint", + "sliced green onions", + "soy sauce", + "pickled carrots", + "marinade", + "garlic", + "cucumber", + "fresh basil leaves", + "fish sauce", + "lime juice", + "ground black pepper", + "crushed red pepper flakes", + "rice vinegar", + "toasted sesame oil" + ] + }, + { + "id": 26864, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "chicken breasts", + "enchilada sauce", + "tortillas", + "taco seasoning", + "cheese" + ] + }, + { + "id": 34028, + "cuisine": "french", + "ingredients": [ + "molasses", + "whipped cream", + "ground cinnamon", + "large eggs", + "salt", + "sugar", + "butter", + "all-purpose flour", + "ground ginger", + "milk", + "vanilla extract" + ] + }, + { + "id": 9808, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "baking soda", + "buttermilk", + "salted butter", + "all purpose unbleached flour", + "half & half", + "salt" + ] + }, + { + "id": 29963, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "flour", + "salt", + "bay leaf", + "chicken", + "water", + "parsley", + "carrots", + "onions", + "minced garlic", + "whole milk", + "ham", + "chicken base", + "broccoli florets", + "butter", + "celery", + "frozen peas" + ] + }, + { + "id": 1760, + "cuisine": "chinese", + "ingredients": [ + "water", + "corn starch", + "chicken breasts", + "self rising flour", + "sugar", + "salt" + ] + }, + { + "id": 19245, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "meat", + "thyme", + "boiling potatoes", + "leaves", + "salt", + "celery", + "water", + "butter", + "coconut milk", + "fresh basil", + "flour", + "carrots", + "onions" + ] + }, + { + "id": 35061, + "cuisine": "indian", + "ingredients": [ + "sugar", + "coriander seeds", + "shallots", + "tamarind paste", + "canola oil", + "green chile", + "fresh ginger", + "low sodium chicken broth", + "all-purpose flour", + "garlic cloves", + "fillet red snapper", + "ground black pepper", + "extra-virgin olive oil", + "rice", + "coconut", + "large eggs", + "salt", + "cumin seed" + ] + }, + { + "id": 48219, + "cuisine": "japanese", + "ingredients": [ + "sushi rice", + "water", + "nori", + "wasabi", + "salmon", + "chives", + "gari", + "sesame seeds", + "dark soy sauce", + "pepper", + "rice wine" + ] + }, + { + "id": 19156, + "cuisine": "mexican", + "ingredients": [ + "frozen pie crust", + "bell pepper", + "salt", + "pepper", + "lean ground beef", + "oregano", + "black beans", + "chili powder", + "onions", + "shredded cheddar cheese", + "garlic", + "cumin" + ] + }, + { + "id": 8634, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "canola oil", + "tomatoes", + "yellow onion", + "chicken stock", + "garlic", + "kosher salt", + "long grain white rice" + ] + }, + { + "id": 19920, + "cuisine": "irish", + "ingredients": [ + "eggs", + "granulated sugar", + "instant coffee", + "chopped walnuts", + "milk", + "Irish whiskey", + "vanilla", + "powdered sugar", + "brewed coffee", + "butter", + "unsweetened cocoa powder", + "baking soda", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 25572, + "cuisine": "french", + "ingredients": [ + "sugar", + "unsalted butter", + "salt", + "fresh lemon juice", + "honey", + "baking powder", + "strawberries", + "ground cloves", + "large eggs", + "all-purpose flour", + "grated lemon peel", + "powdered sugar", + "large egg yolks", + "vanilla extract", + "chopped walnuts" + ] + }, + { + "id": 40914, + "cuisine": "thai", + "ingredients": [ + "olive oil", + "rice noodles", + "cilantro leaves", + "water", + "chicken breasts", + "crushed red pepper", + "fresh lime juice", + "lower sodium chicken broth", + "peeled fresh ginger", + "garlic", + "bok choy", + "lemongrass", + "shallots", + "salt", + "fresh basil leaves" + ] + }, + { + "id": 35216, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "refrigerated piecrusts", + "pepper jack", + "onions", + "olive oil", + "garlic", + "eggs", + "beef brisket", + "cumin" + ] + }, + { + "id": 17859, + "cuisine": "italian", + "ingredients": [ + "artichoke hearts", + "balsamic vinegar", + "pitted kalamata olives", + "minced onion", + "olive oil", + "zucchini", + "fresh basil", + "roasted red peppers", + "diced tomatoes" + ] + }, + { + "id": 11432, + "cuisine": "italian", + "ingredients": [ + "salt", + "corn kernels", + "heavy whipping cream", + "butter", + "polenta", + "low salt chicken broth" + ] + }, + { + "id": 38723, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "chinese five-spice powder", + "low sodium soy sauce", + "teas", + "eggs", + "star anise", + "clove", + "water", + "cinnamon sticks" + ] + }, + { + "id": 32868, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "worcestershire sauce", + "long-grain rice", + "large shrimp", + "fat free less sodium chicken broth", + "cooking spray", + "hot sauce", + "sausages", + "tomato paste", + "chopped green bell pepper", + "chopped celery", + "garlic cloves", + "dried thyme", + "green onions", + "chopped onion", + "dried oregano" + ] + }, + { + "id": 8958, + "cuisine": "french", + "ingredients": [ + "chicken stock", + "artichoke hearts", + "pearl onions", + "butter", + "olive oil", + "minced garlic", + "fresh peas" + ] + }, + { + "id": 48844, + "cuisine": "mexican", + "ingredients": [ + "coffee granules", + "vanilla extract", + "unsweetened cocoa powder", + "eggs", + "baking powder", + "all-purpose flour", + "ground cinnamon", + "granulated sugar", + "salt", + "powdered sugar", + "vegetable oil", + "cayenne pepper" + ] + }, + { + "id": 35931, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "steamed rice", + "red pepper flakes", + "minced garlic", + "boneless skinless chicken breasts", + "crushed pineapple", + "soy sauce", + "jamaican jerk season", + "cilantro", + "cold water", + "water", + "apple cider vinegar", + "corn starch" + ] + }, + { + "id": 40371, + "cuisine": "vietnamese", + "ingredients": [ + "lettuce leaves", + "sauce", + "granny smith apples", + "cilantro leaves", + "carrots", + "french fried onions", + "english cucumber", + "mint leaves", + "dried rice noodles", + "rice paper" + ] + }, + { + "id": 13083, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "grated parmesan cheese", + "fresh oregano", + "fresh basil", + "olive oil", + "crushed red pepper", + "fresh rosemary", + "minced garlic", + "chopped fresh thyme", + "plum tomatoes", + "capers", + "tawny port", + "penne pasta" + ] + }, + { + "id": 44475, + "cuisine": "irish", + "ingredients": [ + "fresh dill", + "cooking spray", + "olive oil", + "salt", + "salmon fillets", + "lemon", + "ground black pepper", + "grated lemon zest" + ] + }, + { + "id": 32390, + "cuisine": "mexican", + "ingredients": [ + "potatoes", + "red enchilada sauce", + "pepper", + "garlic", + "ground cumin", + "chili powder", + "monterey jack", + "flour tortillas", + "salt" + ] + }, + { + "id": 49039, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "all-purpose flour", + "buttermilk", + "salt", + "baking powder" + ] + }, + { + "id": 1896, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "lime", + "salt", + "avocado", + "cilantro stems", + "roma tomatoes", + "onions" + ] + }, + { + "id": 48261, + "cuisine": "italian", + "ingredients": [ + "milk", + "garlic cloves", + "dried oregano", + "green bell pepper", + "butter", + "onions", + "ground cumin", + "tomato sauce", + "shredded sharp cheddar cheese", + "spaghetti", + "eggs", + "chili powder", + "sausages", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 43247, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "lapsang", + "water", + "half & half" + ] + }, + { + "id": 3115, + "cuisine": "cajun_creole", + "ingredients": [ + "red kidney beans", + "ground black pepper", + "sea salt", + "thyme", + "bay leaf", + "olive oil", + "dried sage", + "cayenne pepper", + "red bell pepper", + "lean ground turkey", + "low sodium chicken broth", + "garlic", + "long grain brown rice", + "dried oregano", + "garlic powder", + "red pepper flakes", + "diced yellow onion", + "celery" + ] + }, + { + "id": 37284, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "taco seasoning", + "black beans", + "purple onion", + "garlic", + "shredded cheese", + "fresh cilantro", + "frozen corn kernels" + ] + }, + { + "id": 228, + "cuisine": "indian", + "ingredients": [ + "green chilies", + "mint leaves", + "lemon juice", + "peanuts", + "cumin seed", + "salt", + "coriander" + ] + }, + { + "id": 20725, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "thyme", + "salt", + "fingerling potatoes", + "pepper", + "lemon juice" + ] + }, + { + "id": 35669, + "cuisine": "vietnamese", + "ingredients": [ + "unsalted chicken stock", + "shallots", + "ground black pepper", + "garlic", + "fish sauce", + "vegetable oil", + "catfish fillets", + "green onions", + "caramel sauce" + ] + }, + { + "id": 11034, + "cuisine": "british", + "ingredients": [ + "plain flour", + "ground nutmeg", + "black pepper", + "salt", + "cauliflower", + "milk", + "oil", + "cheddar cheese", + "butter" + ] + }, + { + "id": 27278, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "peaches", + "light brown sugar", + "honey", + "vanilla bean ice cream", + "lime", + "mint sprigs", + "ground ginger", + "olive oil" + ] + }, + { + "id": 9227, + "cuisine": "thai", + "ingredients": [ + "head on shrimp", + "radishes", + "shallots", + "beansprouts", + "chile powder", + "peanuts", + "large eggs", + "rice noodles", + "asian fish sauce", + "white vinegar", + "minced garlic", + "extra firm tofu", + "lime wedges", + "dried shrimp", + "garlic chives", + "palm sugar", + "shrimp paste", + "tamarind concentrate", + "canola oil" + ] + }, + { + "id": 34421, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "salt", + "red chili peppers", + "bay leaves", + "dried oregano", + "dried thyme", + "paprika", + "black-eyed peas", + "garlic cloves" + ] + }, + { + "id": 79, + "cuisine": "korean", + "ingredients": [ + "clams", + "soy sauce", + "sesame seeds", + "sesame oil", + "rice flour", + "eggs", + "water", + "flour", + "red pepper", + "mussels", + "minced garlic", + "vinegar", + "vegetable oil", + "sugar", + "oysters", + "green onions", + "scallions" + ] + }, + { + "id": 1284, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "lemon", + "water" + ] + }, + { + "id": 41504, + "cuisine": "vietnamese", + "ingredients": [ + "mint", + "water", + "lemon", + "pork shoulder", + "butter lettuce", + "ground black pepper", + "garlic", + "fish sauce", + "olive oil", + "rice vermicelli", + "sugar", + "chili paste", + "carrots" + ] + }, + { + "id": 20354, + "cuisine": "thai", + "ingredients": [ + "firmly packed brown sugar", + "chicken tenderloin", + "cucumber", + "lime", + "cilantro leaves", + "black pepper", + "salt", + "chillies", + "steamed rice", + "garlic cloves" + ] + }, + { + "id": 2181, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "linguine", + "garlic cloves", + "soy sauce", + "sesame oil", + "peanut butter", + "brown sugar", + "cooked chicken", + "rice vinegar", + "carrots", + "minced ginger", + "Tabasco Pepper Sauce", + "scallions" + ] + }, + { + "id": 31640, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "green onions", + "sugar", + "sesame seeds", + "kiwi fruits", + "soy sauce", + "beef", + "onions", + "minced garlic", + "sesame oil" + ] + }, + { + "id": 25570, + "cuisine": "filipino", + "ingredients": [ + "sake", + "pepper", + "shiitake", + "sesame oil", + "garlic cloves", + "pork", + "milk", + "flour", + "salt", + "corn starch", + "sugar", + "water", + "instant yeast", + "vegetable shortening", + "oyster sauce", + "soy sauce", + "fresh ginger", + "baking powder", + "chinese cabbage" + ] + }, + { + "id": 35938, + "cuisine": "french", + "ingredients": [ + "granny smith apples", + "curly endive", + "red wine vinegar", + "arugula", + "shallots", + "walnut oil", + "chestnuts", + "extra-virgin olive oil" + ] + }, + { + "id": 23582, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "milk", + "sauce", + "green chile", + "tomatillos", + "chopped cilantro fresh", + "single crust pie", + "ground black pepper", + "red bell pepper", + "pastry", + "salt", + "monterey jack" + ] + }, + { + "id": 30979, + "cuisine": "southern_us", + "ingredients": [ + "chicken legs", + "dijon mustard", + "kosher salt", + "apple cider vinegar", + "brown sugar", + "Sriracha", + "ground black pepper", + "worcestershire sauce" + ] + }, + { + "id": 16740, + "cuisine": "mexican", + "ingredients": [ + "butter", + "mushrooms", + "sour cream", + "jalapeno chilies", + "cilantro leaves", + "wheat", + "monterey jack" + ] + }, + { + "id": 43415, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "leeks", + "garlic", + "corn starch", + "sugar", + "cooking oil", + "ginger", + "Maggi", + "dark soy sauce", + "water", + "sesame oil", + "salt", + "soy sauce", + "Shaoxing wine", + "beef tenderloin", + "oyster sauce" + ] + }, + { + "id": 40485, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "anchovy fillets", + "capers", + "fine sea salt", + "cornichons", + "white sandwich bread", + "Italian parsley leaves", + "white wine vinegar" + ] + }, + { + "id": 17633, + "cuisine": "italian", + "ingredients": [ + "sugar", + "almond extract", + "apricot preserves", + "large eggs", + "all-purpose flour", + "unsalted butter", + "vanilla", + "fresh lemon juice", + "lemon zest", + "salt" + ] + }, + { + "id": 7667, + "cuisine": "spanish", + "ingredients": [ + "fresh tarragon", + "olive oil", + "red wine vinegar", + "escarole" + ] + }, + { + "id": 16970, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "nopales", + "kosher salt", + "vegetable oil", + "onions", + "jack cheese", + "guacamole", + "poblano chiles", + "canned black beans", + "flour tortillas", + "salsa" + ] + }, + { + "id": 42556, + "cuisine": "spanish", + "ingredients": [ + "avocado", + "sea salt", + "roma tomatoes", + "tuna packed in olive oil", + "romaine lettuce", + "extra-virgin olive oil", + "balsamic vinegar", + "onions" + ] + }, + { + "id": 41124, + "cuisine": "indian", + "ingredients": [ + "butter" + ] + }, + { + "id": 27616, + "cuisine": "mexican", + "ingredients": [ + "dressing", + "fresh cilantro", + "jalapeno chilies", + "salsa", + "sour cream", + "black pepper", + "large eggs", + "cilantro leaves", + "cream cheese", + "chicken stock", + "manchego cheese", + "breakfast sausages", + "tortilla chips", + "ground cumin", + "avocado", + "kosher salt", + "cooking oil", + "sweet mini bells", + "nonstick spray" + ] + }, + { + "id": 38936, + "cuisine": "greek", + "ingredients": [ + "romaine lettuce", + "sliced black olives", + "cucumber", + "celery ribs", + "olive oil", + "purple onion", + "iceberg lettuce", + "pepper", + "bell pepper", + "dried oregano", + "tomatoes", + "feta cheese", + "dried dillweed" + ] + }, + { + "id": 36904, + "cuisine": "mexican", + "ingredients": [ + "powdered sugar", + "baking powder", + "salt", + "ground cinnamon", + "cayenne", + "butter", + "eggs", + "granulated sugar", + "vanilla", + "cocoa", + "instant coffee", + "all-purpose flour" + ] + }, + { + "id": 20161, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "cajun seasoning", + "white rice", + "shrimp", + "chicken broth", + "bay leaves", + "red pepper", + "scallions", + "dried oregano", + "celery ribs", + "olive oil", + "butter", + "salt", + "onions", + "andouille sausage", + "boneless skinless chicken breasts", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 39210, + "cuisine": "japanese", + "ingredients": [ + "fenugreek leaves", + "cumin seed", + "chopped garlic", + "salt", + "dried red chile peppers", + "chopped green chilies", + "oil", + "asafetida", + "cubed potatoes", + "ground turmeric" + ] + }, + { + "id": 7721, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "all-purpose flour", + "candied orange peel", + "large eggs", + "orange liqueur", + "unsalted butter", + "blanched almonds", + "sugar", + "baking powder" + ] + }, + { + "id": 23084, + "cuisine": "japanese", + "ingredients": [ + "chicken broth", + "bawang goreng", + "sesame oil", + "pepper", + "boneless skinless chicken breasts", + "salt", + "fish sauce", + "green onions", + "baby spinach", + "mushrooms", + "dried udon" + ] + }, + { + "id": 22174, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "granulated sugar", + "all-purpose flour", + "prunes", + "honey", + "golden raisins", + "ground ginger", + "slivered almonds", + "dried apricot", + "calimyrna figs", + "ground cinnamon", + "hazelnuts", + "cooking spray" + ] + }, + { + "id": 45384, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "ketchup", + "cayenne", + "queso fresco", + "salt", + "ground beef", + "buns", + "pepper", + "jalapeno chilies", + "cilantro", + "oil", + "oregano", + "tomato sauce", + "chili pepper", + "bell pepper", + "worcestershire sauce", + "beer", + "onions", + "cotija", + "lime juice", + "guacamole", + "garlic", + "smoked paprika", + "cumin" + ] + }, + { + "id": 44101, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "vinegar", + "onions", + "water", + "garlic", + "whole peppercorn", + "laurel leaves", + "salt", + "pork belly", + "cooking oil", + "chicken" + ] + }, + { + "id": 38520, + "cuisine": "french", + "ingredients": [ + "mustard", + "ham", + "crepes", + "butter", + "grated Gruyère cheese" + ] + }, + { + "id": 5944, + "cuisine": "british", + "ingredients": [ + "chicken broth", + "ground black pepper", + "fresh thyme leaves", + "celery", + "kosher salt", + "bay leaves", + "butter", + "frozen peas", + "milk", + "shallots", + "carrots", + "tomatoes", + "sherry", + "russet potatoes", + "ground beef" + ] + }, + { + "id": 28971, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "paprika", + "oil", + "water", + "all-purpose flour", + "fryer chickens", + "poultry seasoning", + "pepper", + "salt", + "garlic salt" + ] + }, + { + "id": 45637, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "barbecue sauce", + "red bell pepper", + "mayonaise", + "jalapeno chilies", + "whole kernel corn, drain", + "ground cumin", + "orange bell pepper", + "purple onion", + "boneless skinless chicken breast halves", + "fresh cilantro", + "jicama", + "whole wheat pasta shells" + ] + }, + { + "id": 10246, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "ground black pepper", + "oil", + "bay leaf", + "white wine", + "salt", + "carrots", + "coriander", + "cuttlefish", + "parsley", + "garlic cloves", + "onions", + "chili", + "white beans", + "shrimp" + ] + }, + { + "id": 41674, + "cuisine": "moroccan", + "ingredients": [ + "warm water", + "chopped celery", + "garlic cloves", + "canola oil", + "red lentils", + "ground red pepper", + "chickpeas", + "chopped cilantro fresh", + "saffron threads", + "peeled fresh ginger", + "salt", + "fresh parsley", + "ground cinnamon", + "mushroom broth", + "chopped onion", + "plum tomatoes" + ] + }, + { + "id": 2343, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "parmesan cheese", + "garlic", + "fresh cilantro", + "red pepper flakes", + "spaghetti", + "ground chipotle chile pepper", + "butter", + "greek yogurt", + "lime zest", + "milk", + "sea salt", + "cumin" + ] + }, + { + "id": 47009, + "cuisine": "jamaican", + "ingredients": [ + "chicken legs", + "shallots", + "salt", + "garlic cloves", + "black pepper", + "vegetable oil", + "ground allspice", + "ground cloves", + "fresh thyme leaves", + "grated nutmeg", + "ground cinnamon", + "fresh ginger", + "scotch bonnet chile", + "scallions" + ] + }, + { + "id": 40223, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "chuck roast", + "garlic", + "fresh lime juice", + "dried oregano", + "tomatoes", + "pepper", + "apple cider vinegar", + "beef broth", + "adobo sauce", + "white onion", + "bay leaves", + "salt", + "chipotle peppers", + "ground cumin", + "ground cloves", + "lime juice", + "sea salt", + "Hatch Green Chiles", + "chopped cilantro fresh" + ] + }, + { + "id": 12390, + "cuisine": "southern_us", + "ingredients": [ + "large garlic cloves", + "cherry tomatoes", + "okra", + "crushed red pepper", + "olive oil", + "shrimp" + ] + }, + { + "id": 296, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "shredded sharp cheddar cheese", + "self rising flour", + "cream", + "heavy whipping cream", + "bacon" + ] + }, + { + "id": 26988, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "green bell pepper", + "extra large shrimp", + "fresh lemon juice", + "chopped parsley", + "tomatoes", + "short-grain rice", + "garlic", + "hot water", + "frozen peas", + "chicken legs", + "ground black pepper", + "scallions", + "red bell pepper", + "chorizo sausage", + "chicken stock", + "olive oil", + "dry white wine", + "smoked paprika", + "bay leaf" + ] + }, + { + "id": 41941, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "lemon", + "fresh cilantro", + "garlic cloves", + "olive oil", + "ground cumin", + "red chili peppers", + "salt" + ] + }, + { + "id": 26656, + "cuisine": "southern_us", + "ingredients": [ + "coarse salt", + "cornmeal", + "pepper", + "hot sauce", + "salt", + "canola oil", + "egg whites", + "okra" + ] + }, + { + "id": 43071, + "cuisine": "japanese", + "ingredients": [ + "melted butter", + "paprika", + "water", + "white sugar", + "mayonaise", + "cayenne pepper", + "tomato paste", + "garlic powder" + ] + }, + { + "id": 26106, + "cuisine": "southern_us", + "ingredients": [ + "ice cubes", + "bay leaves", + "worcestershire sauce", + "celery ribs", + "crawfish", + "lemon", + "fresh lemon juice", + "clove", + "hot pepper sauce", + "large garlic cloves", + "onions", + "cream", + "lemon wedge", + "chili sauce" + ] + }, + { + "id": 49034, + "cuisine": "indian", + "ingredients": [ + "sugar", + "chili powder", + "cilantro leaves", + "mustard seeds", + "curry leaves", + "coriander powder", + "garlic", + "cumin seed", + "ground turmeric", + "amchur", + "ginger", + "green chilies", + "boiling potatoes", + "tomatoes", + "shredded cabbage", + "salt", + "oil" + ] + }, + { + "id": 47794, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "sea bass fillets", + "brown sugar", + "mirin", + "fresh basil", + "yellow miso", + "sake", + "green onions" + ] + }, + { + "id": 31811, + "cuisine": "french", + "ingredients": [ + "large eggs", + "fresh tarragon", + "celery ribs", + "baby spinach", + "carrots", + "leeks", + "lentils", + "olive oil", + "red wine vinegar", + "thick-cut bacon" + ] + }, + { + "id": 15668, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "garlic chili sauce", + "wonton wrappers", + "toasted sesame oil", + "fresh ginger", + "ground turkey", + "scallions" + ] + }, + { + "id": 23536, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "salt", + "red mustard", + "chopped fresh chives", + "goat cheese", + "parmigiano reggiano cheese", + "all-purpose flour", + "flat leaf parsley", + "romaine lettuce", + "heavy cream", + "mesclun" + ] + }, + { + "id": 9971, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "chicken breast halves", + "corn tortillas", + "chiles", + "cilantro leaves", + "onions", + "chicken broth", + "vegetable oil", + "fresh lime juice", + "water", + "garlic cloves" + ] + }, + { + "id": 43838, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "yellow onion", + "ground cumin", + "ground chuck", + "ground black pepper", + "ground coriander", + "ground cinnamon", + "sun-dried tomatoes", + "ground allspice", + "aleppo pepper", + "dried mint flakes", + "chopped parsley" + ] + }, + { + "id": 24210, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped green bell pepper", + "yellow bell pepper", + "cayenne pepper", + "lemon juice", + "soy sauce", + "butter", + "lemon slices", + "garlic cloves", + "cream of shrimp soup", + "parsley sprigs", + "dry white wine", + "salt", + "long-grain rice", + "red bell pepper", + "grated parmesan cheese", + "purple onion", + "okra", + "shrimp" + ] + }, + { + "id": 26185, + "cuisine": "french", + "ingredients": [ + "whole milk", + "sour cream", + "grapes", + "heavy cream", + "large egg yolks", + "sea salt", + "sugar", + "riesling" + ] + }, + { + "id": 44859, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "yellow bell pepper", + "balsamic vinegar", + "fresh basil leaves", + "asiago", + "plum tomatoes", + "grated parmesan cheese", + "country style bread" + ] + }, + { + "id": 43009, + "cuisine": "greek", + "ingredients": [ + "pitas", + "chicken breasts", + "tzatziki", + "pepper", + "roasted red peppers", + "purple onion", + "oregano", + "tomatoes", + "feta cheese", + "garlic", + "lemon juice", + "olive oil", + "yoghurt", + "salt", + "chicken" + ] + }, + { + "id": 38561, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "shredded sharp cheddar cheese", + "fresh lime juice", + "Haas avocados", + "taco seasoning", + "pickled jalapenos", + "salt" + ] + }, + { + "id": 1424, + "cuisine": "british", + "ingredients": [ + "yellow corn meal", + "warm water", + "ground nutmeg", + "salt", + "eggs", + "milk", + "baking powder", + "white sugar", + "sugar", + "active dry yeast", + "butter", + "ground cinnamon", + "fine grain salt", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 36857, + "cuisine": "vietnamese", + "ingredients": [ + "garlic", + "sugar", + "hot sauce", + "lime juice", + "fish sauce", + "salt" + ] + }, + { + "id": 43709, + "cuisine": "southern_us", + "ingredients": [ + "lime rind", + "purple onion", + "fresh lime juice", + "fresh basil", + "ground black pepper", + "tortilla chips", + "watermelon", + "salt", + "sugar", + "jalapeno chilies", + "cucumber" + ] + }, + { + "id": 15383, + "cuisine": "french", + "ingredients": [ + "eggs", + "shredded swiss cheese", + "onions", + "pastry", + "salt", + "single crust pie", + "bacon", + "milk", + "all-purpose flour" + ] + }, + { + "id": 6389, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "water", + "carrots", + "potatoes", + "garlic cloves" + ] + }, + { + "id": 49335, + "cuisine": "italian", + "ingredients": [ + "bell pepper", + "purple onion", + "fresh lemon juice", + "capers", + "extra-virgin olive oil", + "fresh herbs", + "grated lemon peel", + "tomatoes", + "summer squash", + "garlic cloves", + "flat leaf parsley", + "red wine vinegar", + "ciabatta", + "juice" + ] + }, + { + "id": 16333, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "plum tomatoes", + "pepper", + "okra", + "bacon slices", + "onions", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 17036, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "corn kernel whole", + "red pepper", + "salsa verde", + "mango", + "cilantro leaves" + ] + }, + { + "id": 46376, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "butter", + "breadstick", + "cajun seasoning" + ] + }, + { + "id": 21907, + "cuisine": "japanese", + "ingredients": [ + "miso paste", + "rice", + "chicken stock", + "ginger", + "green beans", + "vegetable oil", + "hot curry powder", + "boneless chicken skinless thigh", + "garlic", + "onions" + ] + }, + { + "id": 5553, + "cuisine": "italian", + "ingredients": [ + "red bell pepper, sliced", + "Bertolli® Arrabbiata Sauce", + "cremini mushrooms", + "Bertolli® Classico Olive Oil", + "sweet onion", + "fresh basil leaves", + "boneless chicken skinless thigh", + "garlic" + ] + }, + { + "id": 48896, + "cuisine": "moroccan", + "ingredients": [ + "crusty bread", + "harissa", + "ras el hanout", + "merguez sausage", + "extra large eggs", + "roasted tomatoes", + "kosher salt", + "large garlic cloves", + "smoked paprika", + "cilantro stems", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 32988, + "cuisine": "greek", + "ingredients": [ + "honey", + "thyme sprigs", + "pecans", + "ground black pepper", + "feta cheese", + "kosher salt", + "lavender" + ] + }, + { + "id": 47302, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "water", + "salt", + "oyster sauce", + "pork", + "shredded carrots", + "garlic cloves", + "sugar", + "cooking oil", + "scallions", + "shrimp", + "soy sauce", + "shredded cabbage", + "chow mein noodles" + ] + }, + { + "id": 11023, + "cuisine": "vietnamese", + "ingredients": [ + "greek style plain yogurt", + "sweetened condensed milk" + ] + }, + { + "id": 43904, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "cider vinegar", + "pimentos", + "reduced fat sharp cheddar cheese", + "fresh parmesan cheese", + "bacon slices", + "kosher salt", + "ground black pepper", + "canola mayonnaise", + "rocket leaves", + "sourdough bread", + "shallots" + ] + }, + { + "id": 9375, + "cuisine": "brazilian", + "ingredients": [ + "fruit", + "bee pollen", + "goji berries", + "coconut flakes", + "bananas", + "runny honey", + "nuts", + "honey", + "açai powder", + "frozen strawberries", + "unsweetened almond milk", + "granola", + "hemp seeds" + ] + }, + { + "id": 27944, + "cuisine": "filipino", + "ingredients": [ + "garlic", + "red bell pepper", + "pork", + "salt", + "cabbage", + "pepper", + "beef broth", + "cooking oil", + "yellow onion" + ] + }, + { + "id": 23511, + "cuisine": "indian", + "ingredients": [ + "unsweetened coconut milk", + "lamb rib chops", + "florets", + "freshly ground pepper", + "chopped cilantro fresh", + "red potato", + "jalapeno chilies", + "salt", + "Madras curry powder", + "chicken stock", + "honey", + "extra-virgin olive oil", + "onions", + "cauliflower", + "dried currants", + "heavy cream", + "garlic cloves" + ] + }, + { + "id": 25832, + "cuisine": "italian", + "ingredients": [ + "honey", + "frozen mixed berries", + "unflavored gelatin", + "vanilla extract", + "lemon juice", + "half & half", + "fresh lemon juice", + "sugar", + "grated lemon zest", + "greek yogurt" + ] + }, + { + "id": 6072, + "cuisine": "british", + "ingredients": [ + "baking powder", + "grated lemon peel", + "unsalted butter", + "salt", + "dried apricot", + "all-purpose flour", + "sugar", + "whipping cream" + ] + }, + { + "id": 48028, + "cuisine": "indian", + "ingredients": [ + "chopped green bell pepper", + "sour cream", + "curry powder", + "frozen corn", + "butter", + "salt and ground black pepper", + "chopped onion" + ] + }, + { + "id": 20770, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "flour tortillas", + "shredded zucchini", + "fresh cilantro", + "frozen corn", + "sour cream", + "shredded cheddar cheese", + "salt", + "garlic cloves", + "olive oil", + "salsa", + "ground cumin" + ] + }, + { + "id": 42141, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "smoked gouda", + "butter", + "leeks", + "boneless skinless chicken breast halves", + "garlic" + ] + }, + { + "id": 4944, + "cuisine": "mexican", + "ingredients": [ + "peanuts", + "mulato chiles", + "ancho chile pepper", + "plantains", + "guajillo chiles", + "whole peeled tomatoes", + "mexican chocolate", + "onions", + "sesame seeds", + "flour tortillas", + "lard", + "chicken", + "chiles", + "almonds", + "garlic", + "corn tortillas" + ] + }, + { + "id": 39958, + "cuisine": "thai", + "ingredients": [ + "serrano chilies", + "seedless cucumber", + "sesame oil", + "ginger root", + "sugar", + "peanuts", + "purple onion", + "fish sauce", + "lime juice", + "garlic", + "fresh mint", + "tomatoes", + "soy sauce", + "flank steak", + "mixed greens" + ] + }, + { + "id": 7560, + "cuisine": "italian", + "ingredients": [ + "bread", + "milk", + "pecorino romano cheese", + "carrots", + "plum tomatoes", + "minced garlic", + "parsley", + "fine sea salt", + "onions", + "tomato paste", + "olive oil", + "ground veal", + "celery", + "dried oregano", + "eggs", + "ground black pepper", + "ground pork", + "ground beef" + ] + }, + { + "id": 10549, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "purple onion", + "ground cumin", + "hot pepper sauce", + "fresh lemon juice", + "olive oil", + "salt", + "tomatoes", + "green onions", + "chopped cilantro fresh" + ] + }, + { + "id": 36314, + "cuisine": "italian", + "ingredients": [ + "baguette", + "extra-virgin olive oil", + "coarse salt", + "red bell pepper", + "zucchini", + "freshly ground pepper", + "pesto", + "summer squash" + ] + }, + { + "id": 47089, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "dried basil", + "dry yeast", + "yellow onion", + "yellow corn meal", + "warm water", + "ground black pepper", + "all-purpose flour", + "sugar", + "fresh parmesan cheese", + "salt", + "fresh basil", + "olive oil", + "cooking spray" + ] + }, + { + "id": 18632, + "cuisine": "italian", + "ingredients": [ + "salt", + "active dry yeast", + "white sugar", + "warm water", + "all-purpose flour", + "olive oil" + ] + }, + { + "id": 39901, + "cuisine": "greek", + "ingredients": [ + "pasta", + "ground nutmeg", + "cooking spray", + "salt", + "black pepper", + "large eggs", + "ground sirloin", + "garlic cloves", + "tomato sauce", + "finely chopped onion", + "dry white wine", + "all-purpose flour", + "kasseri", + "large egg whites", + "reduced fat milk", + "pecorino romano cheese" + ] + }, + { + "id": 2748, + "cuisine": "japanese", + "ingredients": [ + "chicken stock", + "zucchini", + "fresh green bean", + "cabbage", + "eggs", + "cooked chicken", + "carrots", + "plain flour", + "spring onions", + "green pepper", + "soy sauce", + "vegetable oil", + "toasted sesame oil" + ] + }, + { + "id": 39503, + "cuisine": "italian", + "ingredients": [ + "salt", + "white sugar", + "dry white wine", + "Italian bread", + "extra-virgin olive oil", + "onions", + "chicken broth", + "cinnamon sticks" + ] + }, + { + "id": 33208, + "cuisine": "jamaican", + "ingredients": [ + "fresh thyme", + "scallions", + "pepper", + "dried salted codfish", + "onions", + "tomatoes", + "ackee", + "oil", + "ground pepper", + "salt" + ] + }, + { + "id": 47409, + "cuisine": "italian", + "ingredients": [ + "lemon zest", + "spaghetti", + "olive oil", + "scallions", + "black pepper", + "salt", + "parmigiano reggiano cheese", + "garlic cloves" + ] + }, + { + "id": 28138, + "cuisine": "french", + "ingredients": [ + "parsley sprigs", + "olive oil", + "dry white wine", + "baby zucchini", + "onions", + "black peppercorns", + "black pepper", + "beef stock", + "salt", + "garlic cloves", + "rosemary sprigs", + "pearl onions", + "bay leaves", + "all-purpose flour", + "thyme sprigs", + "turnips", + "sugar pea", + "unsalted butter", + "lamb shoulder", + "baby carrots" + ] + }, + { + "id": 7004, + "cuisine": "italian", + "ingredients": [ + "pasta", + "kidney beans", + "dried oregano", + "dried basil", + "asiago", + "fat free less sodium chicken broth", + "zucchini", + "chicken sausage", + "stewed tomatoes" + ] + }, + { + "id": 48434, + "cuisine": "mexican", + "ingredients": [ + "plain yogurt", + "low-fat buttermilk", + "chili powder", + "red bell pepper", + "shredded cheddar cheese", + "green onions", + "black olives", + "chopped cilantro fresh", + "black beans", + "roma tomatoes", + "crumbled cornbread", + "fresh lime juice", + "romaine lettuce", + "corn kernels", + "light mayonnaise", + "salt", + "ground cumin" + ] + }, + { + "id": 24209, + "cuisine": "french", + "ingredients": [ + "capers", + "cherry tomatoes", + "hard-boiled egg", + "extra-virgin olive oil", + "yukon gold", + "dressing", + "pepper", + "dijon mustard", + "shallots", + "Niçoise olives", + "black pepper", + "bibb lettuce", + "white italian tuna in olive oil", + "salt", + "salad", + "anchovies", + "vinegar", + "fresh green bean", + "fresh lemon juice" + ] + }, + { + "id": 33055, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "mushrooms", + "dashi", + "browning", + "sake", + "butter", + "mirin" + ] + }, + { + "id": 31682, + "cuisine": "french", + "ingredients": [ + "shallots", + "unsalted butter", + "tarragon", + "dry white wine", + "sea scallops", + "white wine vinegar" + ] + }, + { + "id": 6640, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "baking powder", + "onions", + "chicken broth", + "milk", + "all-purpose flour", + "chicken", + "celery ribs", + "water", + "salt", + "marjoram", + "shortening", + "flour", + "carrots" + ] + }, + { + "id": 34129, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "green leaf lettuce", + "ginger", + "cucumber", + "chicken", + "lime", + "sesame oil", + "garlic", + "bird chile", + "water", + "shallots", + "rice vermicelli", + "fresh mint", + "rice paper", + "fish sauce", + "green onions", + "cilantro", + "salt", + "canola oil" + ] + }, + { + "id": 25951, + "cuisine": "mexican", + "ingredients": [ + "dried thyme", + "celery", + "garlic", + "onions", + "bay leaves", + "pork shoulder", + "milk", + "salt" + ] + }, + { + "id": 15821, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "garlic cloves", + "tomatoes", + "dry red wine", + "marjoram", + "crushed tomatoes", + "crushed red pepper", + "dried oregano", + "olive oil", + "onions" + ] + }, + { + "id": 9791, + "cuisine": "french", + "ingredients": [ + "shallots", + "goose fat", + "ground black pepper", + "sea salt", + "Italian parsley leaves", + "mushrooms", + "garlic" + ] + }, + { + "id": 45129, + "cuisine": "italian", + "ingredients": [ + "butter", + "garlic powder", + "shrimp", + "parmesan cheese", + "linguini", + "eggs", + "heavy cream" + ] + }, + { + "id": 8605, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "Italian seasoned breadcrumbs", + "freshly grated parmesan", + "vegetable oil", + "marinara sauce", + "evaporated milk", + "ravioli" + ] + }, + { + "id": 40309, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "sugar", + "salt", + "buttermilk", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 19165, + "cuisine": "korean", + "ingredients": [ + "cooked rice", + "firm tofu", + "toasted sesame oil", + "spinach leaves", + "soybean sprouts", + "carrots", + "salt", + "seaweed", + "toasted sesame seeds", + "eggs", + "Gochujang base", + "cucumber" + ] + }, + { + "id": 8271, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "knorr chicken flavor bouillon", + "avocado", + "purple onion", + "chopped cilantro fresh", + "lime juice", + "hellmann' or best food real mayonnais", + "garlic", + "chipotles in adobo" + ] + }, + { + "id": 11468, + "cuisine": "chinese", + "ingredients": [ + "salmon fillets", + "salt", + "lean bacon", + "oil", + "ground black pepper", + "scallions", + "chinese barbecue sauce" + ] + }, + { + "id": 21603, + "cuisine": "italian", + "ingredients": [ + "basil", + "roma tomatoes", + "fresh mozzarella" + ] + }, + { + "id": 5257, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "carrots", + "chopped cilantro fresh", + "water", + "beef rib short", + "noodles", + "low sodium soy sauce", + "salt", + "sliced mushrooms", + "five-spice powder", + "black peppercorns", + "firm tofu", + "onions", + "sliced green onions" + ] + }, + { + "id": 33860, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "ground cumin", + "picante sauce", + "boneless skinless chicken breast halves", + "corn tortillas", + "shredded cheddar cheese", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 29012, + "cuisine": "chinese", + "ingredients": [ + "shiitake", + "napa cabbage", + "rice vinegar", + "liquid smoke", + "vegetable oil", + "vegetable broth", + "garlic cloves", + "sesame oil", + "ginger", + "scallions", + "soy sauce", + "wonton wrappers", + "salt" + ] + }, + { + "id": 22636, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "reduced fat milk", + "salt", + "parsley sprigs", + "marinara sauce", + "ground red pepper", + "garlic cloves", + "frozen chopped spinach", + "ground black pepper", + "whole wheat lasagna noodles", + "chopped onion", + "part-skim mozzarella cheese", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 30422, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "vanilla extract", + "bourbon whiskey", + "granulated sugar", + "butter" + ] + }, + { + "id": 28144, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "dried thyme", + "vegetable oil", + "bone-in chicken breasts", + "onions", + "green bell pepper", + "bay leaves", + "all-purpose flour", + "garlic cloves", + "cooked rice", + "file powder", + "worcestershire sauce", + "creole seasoning", + "andouille sausage", + "green onions", + "hot sauce", + "hot water" + ] + }, + { + "id": 34535, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "green peas", + "chopped fresh mint", + "black pepper", + "dry white wine", + "salt", + "arborio rice", + "asparagus", + "vegetable broth", + "water", + "shallots", + "grated lemon zest" + ] + }, + { + "id": 39896, + "cuisine": "french", + "ingredients": [ + "ground red pepper", + "french bread", + "fines herbes", + "green onions", + "fresh parsley", + "minced garlic", + "part-skim ricotta cheese" + ] + }, + { + "id": 18080, + "cuisine": "chinese", + "ingredients": [ + "beef", + "szechwan peppercorns", + "oil", + "bay leaves", + "chili bean paste", + "fermented black beans", + "Shaoxing wine", + "garlic", + "dried red chile peppers", + "soy sauce", + "dry white wine", + "scallions", + "onions" + ] + }, + { + "id": 18721, + "cuisine": "british", + "ingredients": [ + "milk", + "pastry dough", + "dri leav thyme", + "black pepper", + "garlic powder", + "butter", + "garlic cloves", + "eggs", + "olive oil", + "onion powder", + "cognac", + "cream", + "mushrooms", + "salt", + "beef tenderloin steaks" + ] + }, + { + "id": 5641, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "dried salted codfish", + "ackee", + "onions", + "cooking oil", + "salt", + "tomatoes", + "bacon" + ] + }, + { + "id": 33276, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "balsamic vinegar", + "cucumber", + "pitted kalamata olives", + "fresh oregano", + "vidalia onion", + "extra-virgin olive oil", + "dried oregano", + "black pepper", + "feta cheese crumbles" + ] + }, + { + "id": 18302, + "cuisine": "greek", + "ingredients": [ + "monkfish fillets", + "scallions", + "fennel bulb", + "feta cheese", + "chardonnay", + "chiles", + "extra-virgin olive oil" + ] + }, + { + "id": 31889, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "corn", + "bell pepper", + "garlic", + "fresh lime juice", + "canned black beans", + "ground black pepper", + "sea salt", + "salt", + "cumin", + "romaine lettuce", + "honey", + "jicama", + "purple onion", + "chopped cilantro", + "orange", + "zucchini", + "extra-virgin olive oil", + "corn tortillas", + "canola oil" + ] + }, + { + "id": 31883, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "garlic cloves", + "salt", + "extra-virgin olive oil", + "onions", + "sugar", + "juice" + ] + }, + { + "id": 45402, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "capsicum", + "green cardamom", + "bay leaf", + "tomatoes", + "coriander seeds", + "salt", + "oil", + "ground turmeric", + "clove", + "water", + "cinnamon", + "cumin seed", + "onions", + "garlic paste", + "garam masala", + "cilantro leaves", + "lemon juice", + "chicken" + ] + }, + { + "id": 37603, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "vegetable oil", + "salt", + "white cornmeal", + "sugar", + "baking powder", + "buttermilk", + "sweet corn", + "green onions", + "vegetable shortening", + "all-purpose flour", + "garlic powder", + "onion powder", + "shredded sharp cheddar cheese", + "diced ham" + ] + }, + { + "id": 29806, + "cuisine": "mexican", + "ingredients": [ + "graham cracker crusts", + "avocado", + "fresh lime juice", + "cream cheese", + "cream", + "white sugar" + ] + }, + { + "id": 43446, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "salt", + "garlic cloves", + "ground cumin", + "tumeric", + "fresh ginger", + "cayenne pepper", + "onions", + "cod", + "olive oil", + "cilantro leaves", + "cinnamon sticks", + "sliced almonds", + "ground black pepper", + "chickpeas", + "plum tomatoes" + ] + }, + { + "id": 9191, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "miso", + "pork chops", + "sake", + "ginger" + ] + }, + { + "id": 6481, + "cuisine": "vietnamese", + "ingredients": [ + "baby bok choy", + "peeled fresh ginger", + "salt", + "coconut milk", + "curry powder", + "merluza", + "waxy potatoes", + "lime", + "garlic", + "carrots", + "white wine", + "vegetable oil", + "cayenne pepper", + "onions" + ] + }, + { + "id": 23056, + "cuisine": "russian", + "ingredients": [ + "chicken broth", + "potatoes", + "pork loin chops", + "olive oil", + "salt", + "onions", + "water", + "bay leaves", + "sour cream", + "large eggs", + "dill" + ] + }, + { + "id": 13892, + "cuisine": "indian", + "ingredients": [ + "slivered almonds", + "ground black pepper", + "apple juice", + "curry powder", + "raisins", + "boneless skinless chicken breast halves", + "kosher salt", + "low sodium chicken broth", + "garlic cloves", + "olive oil", + "heavy cream" + ] + }, + { + "id": 17068, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "garlic", + "miso", + "ginger", + "mirin" + ] + }, + { + "id": 1869, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "white hominy", + "shredded lettuce", + "cumin seed", + "water", + "chicken breasts", + "salt", + "oregano", + "avocado", + "lime", + "epazote", + "sauce", + "white onion", + "radishes", + "garlic", + "juice" + ] + }, + { + "id": 31930, + "cuisine": "chinese", + "ingredients": [ + "water", + "rice vinegar", + "soy sauce", + "large eggs", + "beansprouts", + "reduced sodium chicken broth", + "sesame oil", + "snow peas", + "fresh ginger", + "scallions" + ] + }, + { + "id": 3142, + "cuisine": "southern_us", + "ingredients": [ + "hot dogs", + "bacon", + "pickled okra", + "sugar", + "slaw mix", + "rice vinegar", + "light mayonnaise", + "salt", + "baked beans", + "hot dog bun", + "hot sauce" + ] + }, + { + "id": 42678, + "cuisine": "cajun_creole", + "ingredients": [ + "butter", + "creole seasoning", + "lemon wedge", + "trout fillet", + "lemon juice", + "red wine vinegar", + "salt", + "flour", + "worcestershire sauce", + "peanut oil" + ] + }, + { + "id": 41438, + "cuisine": "japanese", + "ingredients": [ + "seasoning", + "fresh ginger", + "vegetable oil", + "yellow onion", + "soy sauce", + "sesame oil", + "broccoli", + "sugar", + "chicken breasts", + "worcestershire sauce", + "carrots", + "green cabbage", + "ketchup", + "ramen noodles", + "hot sauce" + ] + }, + { + "id": 25384, + "cuisine": "mexican", + "ingredients": [ + "whole milk", + "cinnamon sticks", + "kosher salt", + "grated nutmeg", + "vanilla extract", + "sweetened condensed milk", + "granulated sugar", + "rice" + ] + }, + { + "id": 16045, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "lemon", + "chopped cilantro fresh", + "ground black pepper", + "garlic cloves", + "sweet onion", + "sea salt", + "avocado", + "jalapeno chilies", + "frozen peas" + ] + }, + { + "id": 25278, + "cuisine": "irish", + "ingredients": [ + "dried currants", + "baking powder", + "salt", + "ground cinnamon", + "whole wheat flour", + "raisins", + "water", + "butter", + "all-purpose flour", + "brown sugar", + "golden raisins", + "dry sherry" + ] + }, + { + "id": 571, + "cuisine": "mexican", + "ingredients": [ + "clove", + "paprika", + "tequila", + "olive oil", + "salt", + "lime juice", + "deveined shrimp", + "ground black pepper", + "cilantro leaves" + ] + }, + { + "id": 48661, + "cuisine": "italian", + "ingredients": [ + "reduced sodium chicken broth", + "turkey", + "olive oil", + "kale", + "rib", + "fettucine", + "pecorino romano cheese" + ] + }, + { + "id": 7391, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "yellow bell pepper", + "garlic cloves", + "dried oregano", + "celery ribs", + "low sodium chicken broth", + "purple onion", + "red bell pepper", + "chicken sausage", + "extra-virgin olive oil", + "smoked paprika", + "tomato paste", + "sweet potatoes", + "salt", + "chopped parsley" + ] + }, + { + "id": 5672, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "baby spinach", + "all-purpose flour", + "flat leaf parsley", + "black pepper", + "large eggs", + "extra-virgin olive oil", + "ricotta", + "prosciutto", + "whole milk", + "salt", + "garlic cloves", + "fresh pasta", + "pecorino romano cheese", + "grated nutmeg", + "onions" + ] + }, + { + "id": 29686, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "onion powder", + "salt", + "eggs", + "Sriracha", + "red pepper", + "corn flour", + "melted butter", + "corn flakes", + "buttermilk", + "all-purpose flour", + "black pepper", + "baking powder", + "paprika", + "chicken" + ] + }, + { + "id": 3991, + "cuisine": "chinese", + "ingredients": [ + "white vinegar", + "large eggs", + "scallions", + "cooked shrimp", + "ketchup", + "vegetable oil", + "corn starch", + "soy sauce", + "sesame oil", + "oyster sauce", + "reduced sodium chicken broth", + "fresh mushrooms", + "beansprouts" + ] + }, + { + "id": 43985, + "cuisine": "spanish", + "ingredients": [ + "unflavored gelatin", + "whole milk", + "heavy cream", + "sage leaves", + "orange", + "amaretto", + "sugar", + "nonfat dry milk powder", + "light corn syrup", + "water", + "lemon", + "blanched almonds" + ] + }, + { + "id": 42561, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "milk", + "shredded cheese", + "all-purpose flour", + "butter", + "elbow macaroni" + ] + }, + { + "id": 48946, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "tomatoes", + "extra-virgin olive oil", + "chees fresh mozzarella", + "fresh basil", + "Italian bread" + ] + }, + { + "id": 13853, + "cuisine": "mexican", + "ingredients": [ + "bacon", + "chipotles in adobo", + "corn tortillas", + "chopped cilantro fresh", + "salt", + "onions", + "lime", + "cooked shrimp" + ] + }, + { + "id": 8135, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "orzo", + "fresh lime juice", + "jalapeno chilies", + "garlic cloves", + "olive oil", + "cilantro sprigs", + "chopped cilantro fresh", + "tomatoes", + "boneless skinless chicken breasts", + "low salt chicken broth" + ] + }, + { + "id": 46463, + "cuisine": "thai", + "ingredients": [ + "sesame oil", + "fresh ginger", + "rice vinegar", + "honey", + "cashew butter", + "wheat", + "green beans" + ] + }, + { + "id": 11066, + "cuisine": "italian", + "ingredients": [ + "cream", + "grated parmesan cheese", + "corn starch", + "chicken broth", + "dried thyme", + "salt", + "boneless skinless chicken breast halves", + "parsley flakes", + "ground black pepper", + "fresh mushrooms", + "spaghetti", + "water", + "dry white wine", + "onions" + ] + }, + { + "id": 23901, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "sugar", + "green tomatoes", + "matzo meal", + "ground red pepper", + "kosher salt", + "vegetable oil" + ] + }, + { + "id": 39597, + "cuisine": "mexican", + "ingredients": [ + "American cheese", + "salsa", + "green onions", + "lime", + "hot water", + "garlic" + ] + }, + { + "id": 5164, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "black olives", + "cherry tomatoes", + "salad dressing", + "salad seasoning mix", + "pasta spiral", + "yellow bell pepper", + "red bell pepper" + ] + }, + { + "id": 13126, + "cuisine": "french", + "ingredients": [ + "sweet cherries", + "salt", + "white sugar", + "skim milk", + "egg whites", + "confectioners sugar", + "unsalted butter", + "all-purpose flour", + "vanilla beans", + "heavy cream", + "kirsch" + ] + }, + { + "id": 15763, + "cuisine": "british", + "ingredients": [ + "vegetable oil", + "warm water", + "flour for dusting", + "sponge", + "salt", + "active dry yeast", + "bread flour" + ] + }, + { + "id": 15808, + "cuisine": "indian", + "ingredients": [ + "parsley sprigs", + "kosher salt", + "flank steak", + "mustard seeds", + "horseradish root", + "cooking spray", + "salt", + "whole allspice", + "fat free yogurt", + "peeled fresh ginger", + "cumin seed", + "sugar", + "coriander seeds", + "szechwan peppercorns" + ] + }, + { + "id": 40714, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "garlic", + "olive oil", + "lime", + "squash", + "brown rice" + ] + }, + { + "id": 42074, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "jalapeno chilies", + "frozen corn", + "sour cream", + "dressing", + "black beans", + "salt", + "garlic cloves", + "chunky salsa", + "mayonaise", + "cilantro", + "taco seasoning", + "onions", + "pasta", + "pepper", + "sweet mini bells", + "elbow macaroni" + ] + }, + { + "id": 5999, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "garlic cloves", + "ground black pepper", + "salt", + "zucchini", + "fresh oregano", + "olive oil", + "red wine vinegar", + "chopped fresh mint" + ] + }, + { + "id": 44439, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "wine vinegar", + "large shrimp", + "sage leaves", + "dried sage", + "flat leaf parsley", + "cannellini beans", + "salt", + "olive oil", + "garlic", + "onions" + ] + }, + { + "id": 42696, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "ginger", + "cumin seed", + "curry leaves", + "whole milk", + "salt", + "boiling potatoes", + "bell pepper", + "garlic", + "onions", + "eggs", + "crushed red pepper flakes", + "green chilies", + "ground turmeric" + ] + }, + { + "id": 34829, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "water", + "fresh chives", + "hot pepper sauce", + "cheddar cheese", + "milk", + "red pepper hot sauce", + "minced garlic", + "soft fresh goat cheese" + ] + }, + { + "id": 48151, + "cuisine": "mexican", + "ingredients": [ + "lard", + "water", + "kosher salt", + "all-purpose flour" + ] + }, + { + "id": 10920, + "cuisine": "chinese", + "ingredients": [ + "ginger", + "low sodium beef broth", + "vegetable oil", + "all-purpose flour", + "pepper", + "salt", + "short rib", + "low sodium soy sauce", + "garlic", + "onions" + ] + }, + { + "id": 16462, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "chopped bell pepper", + "cilantro", + "corn tortillas", + "black beans", + "green onions", + "edamame", + "tomatoes", + "mushrooms", + "garlic", + "corn", + "green enchilada sauce", + "carrots" + ] + }, + { + "id": 19900, + "cuisine": "cajun_creole", + "ingredients": [ + "crab boil", + "cajun seasoning", + "peanuts", + "liquid", + "salt" + ] + }, + { + "id": 21664, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "chopped tomatoes", + "fresh oregano", + "sweet onion", + "crushed red pepper", + "garlic cloves", + "fresh basil", + "chopped fresh thyme", + "freshly ground pepper", + "light brown sugar", + "olive oil", + "salt" + ] + }, + { + "id": 30348, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "meat sauce", + "pepper", + "cheese", + "vegetable oil cooking spray", + "egg whites", + "part-skim mozzarella cheese", + "part-skim ricotta cheese" + ] + }, + { + "id": 1140, + "cuisine": "british", + "ingredients": [ + "milk", + "amaretti", + "crème fraîche", + "citron", + "seedless raspberry jam", + "large eggs", + "vanilla", + "double-acting baking powder", + "large egg yolks", + "pistachio nuts", + "all-purpose flour", + "sugar", + "medium dry sherry", + "heavy cream", + "kirsch" + ] + }, + { + "id": 27175, + "cuisine": "japanese", + "ingredients": [ + "sweet onion", + "fine sea salt", + "sugar", + "grapeseed oil", + "freshly ground pepper", + "Japanese soy sauce", + "rice vinegar", + "water", + "dry mustard", + "toasted sesame oil" + ] + }, + { + "id": 44700, + "cuisine": "mexican", + "ingredients": [ + "water", + "vegetable oil", + "red enchilada sauce", + "ground cumin", + "poblano peppers", + "garlic", + "ground beef", + "asadero", + "chopped onion", + "dried leaves oregano", + "salt and ground black pepper", + "white rice", + "red bell pepper" + ] + }, + { + "id": 18964, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "cooking wine", + "fermented black beans", + "sugar", + "green onions", + "oyster sauce", + "pork", + "sesame oil", + "corn starch", + "dark soy sauce", + "fresh ginger", + "salt", + "snow peas" + ] + }, + { + "id": 37932, + "cuisine": "italian", + "ingredients": [ + "water", + "white sugar", + "lemon", + "vodka" + ] + }, + { + "id": 6704, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "cayenne pepper", + "chopped cilantro fresh", + "basmati", + "vegetable oil", + "fresh lime juice", + "curry powder", + "coarse salt", + "onions", + "tomato sauce", + "garam masala", + "lentils" + ] + }, + { + "id": 26933, + "cuisine": "indian", + "ingredients": [ + "water", + "lemon zest", + "cilantro", + "lemon juice", + "sliced green onions", + "curry leaves", + "eggplant", + "cinnamon", + "black mustard seeds", + "serrano chile", + "ground cloves", + "ground nutmeg", + "butter", + "waxy potatoes", + "ground turmeric", + "fennel seeds", + "fresh ginger", + "vegetable oil", + "salt", + "asafoetida powder" + ] + }, + { + "id": 26942, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "white rice", + "onions", + "boneless skinless chicken breasts", + "garlic cloves", + "black beans", + "salt", + "canola oil", + "ancho powder", + "chopped cilantro" + ] + }, + { + "id": 47858, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "chop green chilies, undrain", + "cooked chicken", + "green onions", + "shredded Monterey Jack cheese", + "refried beans", + "enchilada sauce" + ] + }, + { + "id": 35615, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "butter", + "baking powder", + "all-purpose flour", + "baking soda", + "buttermilk" + ] + }, + { + "id": 24989, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "arborio rice", + "finely chopped onion", + "broccoli rabe", + "chèvre", + "chicken broth", + "dry white wine" + ] + }, + { + "id": 39875, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "carrots", + "olive oil", + "curry", + "chicken", + "chinese noodles", + "garlic cloves", + "soy sauce", + "ginger", + "celery" + ] + }, + { + "id": 48494, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "arugula", + "kosher salt", + "garlic cloves", + "cherry tomatoes", + "spaghetti", + "extra-virgin olive oil" + ] + }, + { + "id": 22412, + "cuisine": "japanese", + "ingredients": [ + "sesame oil", + "scallions", + "eggs", + "hot sauce", + "cucumber", + "rice vinegar", + "carrots", + "soy sauce", + "soba noodles", + "bok choy" + ] + }, + { + "id": 2821, + "cuisine": "chinese", + "ingredients": [ + "tomato purée", + "egg noodles", + "broccoli", + "beansprouts", + "soy sauce", + "chicken breasts", + "oyster sauce", + "red chili peppers", + "spring onions", + "garlic cloves", + "fresh ginger root", + "vegetable oil", + "carrots" + ] + }, + { + "id": 35591, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "Sriracha", + "garlic", + "flavored oil", + "snow peas", + "shiitake", + "sesame oil", + "scallions", + "onions", + "sesame seeds", + "regular soy sauce", + "oyster mushrooms", + "baby corn", + "dark soy sauce", + "mirin", + "ginger", + "carrots", + "noodles" + ] + }, + { + "id": 37049, + "cuisine": "greek", + "ingredients": [ + "fresh spinach", + "salt", + "garlic powder", + "shredded cheese", + "pepper", + "greek style plain yogurt", + "onion powder", + "elbow pasta" + ] + }, + { + "id": 16683, + "cuisine": "spanish", + "ingredients": [ + "lemon wedge", + "fresh oregano", + "bay leaves", + "all-purpose flour", + "olive oil", + "white wine vinegar", + "ground cumin", + "halibut fillets", + "chopped fresh thyme", + "garlic cloves" + ] + }, + { + "id": 13983, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cooking oil", + "corn starch", + "salmon fillets", + "fresh ginger", + "dry sherry", + "canned low sodium chicken broth", + "water", + "egg whites", + "sugar", + "sesame seeds", + "garlic" + ] + }, + { + "id": 19305, + "cuisine": "indian", + "ingredients": [ + "brown mustard seeds", + "beets", + "fine sea salt", + "water", + "carrots" + ] + }, + { + "id": 35260, + "cuisine": "japanese", + "ingredients": [ + "sake", + "miso paste", + "garlic", + "soy sauce", + "hoisin sauce", + "canola oil", + "dark corn syrup", + "shallots", + "sea bass", + "fresh ginger root", + "white sugar" + ] + }, + { + "id": 28031, + "cuisine": "moroccan", + "ingredients": [ + "ground cloves", + "honey", + "beef consomme", + "diced tomatoes", + "ground lamb", + "ground cinnamon", + "curry powder", + "ground nutmeg", + "sweet potatoes", + "carrots", + "ground cumin", + "dried lentils", + "sweet onion", + "ground black pepper", + "butter", + "ground turmeric", + "ground ginger", + "kosher salt", + "garbanzo beans", + "dried apricot", + "beef broth", + "organic chicken broth" + ] + }, + { + "id": 37682, + "cuisine": "thai", + "ingredients": [ + "lime", + "ginger", + "fresh lime juice", + "chicken broth", + "jalapeno chilies", + "ramen", + "sliced green onions", + "olive oil", + "light coconut milk", + "chopped cilantro", + "kosher salt", + "cooked chicken", + "sliced mushrooms" + ] + }, + { + "id": 20096, + "cuisine": "moroccan", + "ingredients": [ + "chicken broth", + "olive oil", + "zucchini", + "salt", + "onions", + "green bell pepper", + "garbanzo beans", + "raisins", + "lemon juice", + "plum tomatoes", + "honey", + "ground black pepper", + "garlic", + "carrots", + "ground cumin", + "ground cinnamon", + "eggplant", + "sweet potatoes", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 5243, + "cuisine": "mexican", + "ingredients": [ + "ground ginger", + "olive oil", + "flank steak", + "garlic", + "ground meat", + "fresh pineapple", + "pepper", + "flour tortillas", + "cilantro", + "salt", + "chipotles in adobo", + "shredded cheddar cheese", + "barbecue sauce", + "ginger", + "smoked paprika", + "adobo sauce", + "green bell pepper", + "pineapple salsa", + "chili powder", + "purple onion", + "chipotle peppers", + "ground cumin" + ] + }, + { + "id": 2622, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "sharp cheddar cheese", + "green bell pepper", + "salt", + "breakfast sausages", + "cornbread stuffing mix", + "eggs", + "stewed tomatoes", + "bread slices" + ] + }, + { + "id": 22256, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "okra", + "bacon slices", + "onions", + "water", + "long-grain rice", + "green bell pepper", + "salt" + ] + }, + { + "id": 17958, + "cuisine": "jamaican", + "ingredients": [ + "flour", + "cornmeal", + "cold water", + "salt", + "dough", + "baking powder", + "sugar", + "oil" + ] + }, + { + "id": 11975, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "black beans", + "cilantro", + "serrano chile", + "tomatoes", + "flour tortillas", + "purple onion", + "jack cheese", + "brown rice", + "salt", + "avocado", + "lime", + "garlic" + ] + }, + { + "id": 22587, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "tamarind paste", + "cumin", + "ginger", + "chutney", + "channa dal", + "oil", + "salt", + "onions" + ] + }, + { + "id": 33746, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "shrimp", + "milk", + "all-purpose flour", + "crab meat", + "butter", + "lasagna noodles", + "shredded mozzarella cheese" + ] + }, + { + "id": 16430, + "cuisine": "italian", + "ingredients": [ + "all purpose unbleached flour", + "active dry yeast", + "warm water", + "salt", + "olive oil" + ] + }, + { + "id": 7446, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "tomatillos", + "pork shoulder boston butt", + "green onions", + "cumin seed", + "dried oregano", + "olive oil", + "mild green chiles", + "onions", + "chicken broth", + "yukon gold potatoes", + "garlic cloves" + ] + }, + { + "id": 35117, + "cuisine": "italian", + "ingredients": [ + "milk", + "jumbo pasta shells", + "pasta sauce", + "crushed saltines", + "onions", + "eggs", + "part-skim mozzarella cheese", + "ground beef", + "pepper", + "salt" + ] + }, + { + "id": 7675, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "purple onion", + "barbecue sauce", + "ground black pepper", + "boneless skinless chicken breast halves", + "olive oil", + "salt" + ] + }, + { + "id": 42973, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salt", + "cilantro", + "fresh lime juice", + "avocado", + "garlic", + "serrano chile", + "white onion", + "tortilla chips" + ] + }, + { + "id": 40860, + "cuisine": "spanish", + "ingredients": [ + "salt", + "bacon", + "ground beef", + "tomato juice", + "rice", + "paprika", + "onions" + ] + }, + { + "id": 15487, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "ground cumin", + "smoked paprika", + "blanched almonds", + "salt" + ] + }, + { + "id": 23272, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "cilantro leaves", + "red chili powder", + "water", + "cream", + "onions", + "garlic paste", + "kasuri methi" + ] + }, + { + "id": 49542, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "low sodium chicken broth", + "scallions", + "fresh ginger", + "sirloin steak", + "oyster sauce", + "hoisin sauce", + "dry sherry", + "corn starch", + "gari", + "vegetable oil", + "garlic chili sauce" + ] + }, + { + "id": 24770, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "bottled clam juice", + "extra-virgin olive oil", + "heavy cream", + "tomato jam", + "sea scallops", + "salt" + ] + }, + { + "id": 27903, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "water", + "sour cream", + "black beans", + "sauce", + "brown sugar", + "salsa", + "taco meat", + "lettuce", + "shredded cheddar cheese", + "long-grain rice" + ] + }, + { + "id": 1290, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "freshly ground pepper", + "pinenuts", + "extra-virgin olive oil", + "fresh basil leaves", + "eggs", + "baking potatoes", + "garlic cloves", + "kosher salt", + "all-purpose flour" + ] + }, + { + "id": 38595, + "cuisine": "thai", + "ingredients": [ + "spinach", + "crushed red pepper", + "fat free less sodium chicken broth", + "creamy peanut butter", + "brown sugar", + "salt", + "olive oil" + ] + }, + { + "id": 9313, + "cuisine": "french", + "ingredients": [ + "sugar", + "corn starch", + "pie crust", + "forest fruit", + "vanilla extract", + "confectioners sugar", + "eggs", + "cream cheese" + ] + }, + { + "id": 29225, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "part-skim mozzarella cheese", + "2% low-fat cottage cheese", + "garlic cloves", + "yellow squash", + "cooking spray", + "all-purpose flour", + "onions", + "spinach leaves", + "olive oil", + "lasagna noodles, cooked and drained", + "provolone cheese", + "dried oregano", + "black pepper", + "reduced fat milk", + "salt", + "red bell pepper" + ] + }, + { + "id": 36750, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "corn tortillas", + "salt", + "black pepper", + "ground beef" + ] + }, + { + "id": 12162, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "onion powder", + "cornmeal", + "eggs", + "flour", + "salt", + "canola oil", + "cream style corn", + "buttermilk", + "onions", + "black pepper", + "baking powder", + "cayenne pepper" + ] + }, + { + "id": 38411, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "ground sichuan pepper", + "peanut oil", + "fermented black beans", + "chicken stock", + "minced ginger", + "garlic", + "medium firm tofu", + "soy sauce", + "ground pork", + "scallions", + "chinese rice wine", + "sesame oil", + "chili bean paste", + "ramen" + ] + }, + { + "id": 24094, + "cuisine": "italian", + "ingredients": [ + "capers", + "pitted green olives", + "salt", + "chicken", + "olive oil", + "black olives", + "onions", + "pepper", + "stewed tomatoes", + "sliced mushrooms", + "white wine", + "condensed cream of mushroom soup", + "sausages" + ] + }, + { + "id": 19311, + "cuisine": "french", + "ingredients": [ + "olive oil", + "red wine", + "white mushrooms", + "pepper", + "shallots", + "salt", + "milk", + "butter", + "filet", + "eggs", + "frozen pastry puff sheets", + "garlic" + ] + }, + { + "id": 7604, + "cuisine": "korean", + "ingredients": [ + "kale", + "soft tofu", + "liquid", + "squash", + "soy sauce", + "chili paste", + "sesame oil", + "garlic cloves", + "water", + "mirin", + "vegetable broth", + "kimchi", + "chili flakes", + "miso paste", + "mushrooms", + "scallions" + ] + }, + { + "id": 3163, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "hazelnut oil", + "baby leaf lettuce", + "fresh tarragon", + "fresh asparagus", + "shallots", + "curly endive", + "hazelnuts", + "white wine vinegar" + ] + }, + { + "id": 15731, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "sour cream", + "sharp cheddar cheese", + "canola oil", + "cayenne pepper", + "corn tortillas", + "enchilada sauce", + "ground cumin" + ] + }, + { + "id": 27469, + "cuisine": "filipino", + "ingredients": [ + "tomatoes", + "ground black pepper", + "shrimp", + "water", + "purple onion", + "fish sauce", + "radishes", + "chillies", + "tamarind", + "water spinach" + ] + }, + { + "id": 25038, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "vegetable oil", + "wine vinegar", + "onions", + "plain yogurt", + "ginger", + "skinless chicken breasts", + "clarified butter", + "food colouring", + "lemon", + "salt", + "coriander", + "chicken stock", + "cream", + "garlic", + "green chilies", + "masala" + ] + }, + { + "id": 40077, + "cuisine": "japanese", + "ingredients": [ + "gari", + "rice vinegar", + "salmon fillets", + "light soy sauce", + "nori sheets", + "wasabi", + "caster sugar", + "salmon roe", + "sushi rice", + "mirin", + "cucumber" + ] + }, + { + "id": 15469, + "cuisine": "mexican", + "ingredients": [ + "lime", + "chili powder", + "diced red onions", + "salt", + "garlic powder", + "cilantro", + "avocado", + "jalapeno chilies", + "ground cumin" + ] + }, + { + "id": 36771, + "cuisine": "mexican", + "ingredients": [ + "Spike Seasoning", + "chopped cilantro", + "tomatoes", + "salt", + "avocado", + "extra-virgin olive oil", + "lime juice", + "cucumber" + ] + }, + { + "id": 35212, + "cuisine": "chinese", + "ingredients": [ + "orange juice concentrate", + "light soy sauce", + "dry sherry", + "corn starch", + "jasmine rice", + "green onions", + "garlic cloves", + "cider vinegar", + "fresh ginger", + "pineapple juice", + "red bell pepper", + "water", + "vegetable oil", + "shrimp" + ] + }, + { + "id": 23418, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "grated parmesan cheese", + "onions", + "olive oil", + "garlic", + "milk", + "orzo pasta", + "spinach", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 44871, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "chicken wing drummettes", + "crumbs" + ] + }, + { + "id": 27453, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "ground black pepper", + "epazote", + "white onion", + "vegetable oil", + "grated jack cheese", + "corn kernels", + "tomatillos", + "corn tortillas", + "canned black beans", + "zucchini", + "garlic" + ] + }, + { + "id": 41047, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "sesame oil", + "salt", + "oyster sauce", + "boiling water", + "swiss chard", + "chili oil", + "dried shiitake mushrooms", + "corn starch", + "glass noodles", + "sugar", + "egg whites", + "large garlic cloves", + "peanut oil", + "ground white pepper", + "soy sauce", + "dry white wine", + "star anise", + "scallions", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 22447, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "vegetable oil", + "warm water", + "coarse salt", + "corn kernels", + "all-purpose flour", + "baking powder", + "masa harina" + ] + }, + { + "id": 45998, + "cuisine": "mexican", + "ingredients": [ + "serrano chilies", + "cilantro leaves", + "corn tortillas", + "tomatillos", + "grated jack cheese", + "ground cumin", + "large eggs", + "chopped onion", + "fresh lime juice", + "avocado", + "butter", + "garlic cloves" + ] + }, + { + "id": 30761, + "cuisine": "thai", + "ingredients": [ + "ground chicken", + "vegetable oil", + "fish sauce", + "lime juice", + "coconut cream", + "red chili peppers", + "chunky peanut butter", + "Vietnamese coriander", + "garlic" + ] + }, + { + "id": 11596, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "white onion", + "crushed garlic", + "diced tomatoes", + "cayenne pepper", + "boneless chicken skinless thigh", + "garam masala", + "lemon", + "salt", + "ground turmeric", + "brown sugar", + "water", + "butter", + "cilantro", + "cinnamon sticks", + "black pepper", + "vegetable oil", + "heavy cream", + "greek style plain yogurt" + ] + }, + { + "id": 22938, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "extra-virgin olive oil", + "ground black pepper", + "cherry tomatoes", + "bocconcini", + "sea salt" + ] + }, + { + "id": 27247, + "cuisine": "chinese", + "ingredients": [ + "curry powder", + "loin pork roast", + "ham", + "fish sauce", + "shrimp heads", + "green peas", + "kosher salt", + "vegetable oil", + "rice vermicelli", + "ground black pepper", + "cilantro", + "onions" + ] + }, + { + "id": 20876, + "cuisine": "mexican", + "ingredients": [ + "cream", + "hot pepper sauce", + "green bell pepper", + "milk", + "all-purpose flour", + "eggs", + "shredded cheddar cheese", + "flour tortillas", + "cooked ham", + "garlic powder", + "sliced green onions" + ] + }, + { + "id": 298, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "bread dough", + "olive oil", + "dried thyme", + "dried oregano", + "kosher salt", + "freshly ground pepper" + ] + }, + { + "id": 13667, + "cuisine": "southern_us", + "ingredients": [ + "bacon", + "cider vinegar", + "low sodium store bought chicken stock", + "vegetable oil", + "collard greens", + "purple onion" + ] + }, + { + "id": 11938, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "honey", + "flour tortillas", + "onion powder", + "smoked paprika", + "black pepper", + "salsa verde", + "marinade", + "salt", + "cumin", + "ground chipotle chile pepper", + "garlic powder", + "chicken breasts", + "cilantro", + "sour cream", + "lime juice", + "pepper jack", + "chili powder", + "cayenne pepper", + "monterey jack" + ] + }, + { + "id": 31437, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "garam masala", + "green peas", + "curds", + "onions", + "ground cumin", + "asafoetida", + "potatoes", + "cilantro leaves", + "oil", + "ground turmeric", + "sugar", + "chili powder", + "green chilies", + "bay leaf", + "ginger paste", + "tomatoes", + "coriander powder", + "salt", + "cumin seed", + "cashew nuts" + ] + }, + { + "id": 26149, + "cuisine": "french", + "ingredients": [ + "turbinado", + "gingerroot", + "rhubarb", + "heavy cream", + "large egg yolks", + "granulated sugar" + ] + }, + { + "id": 48794, + "cuisine": "mexican", + "ingredients": [ + "water", + "ground cinnamon", + "sugar", + "flour tortillas" + ] + }, + { + "id": 26772, + "cuisine": "french", + "ingredients": [ + "savory", + "dried oregano", + "dried basil", + "bay leaf", + "dried thyme", + "marjoram", + "dried tarragon leaves", + "dried lavender", + "dried rosemary" + ] + }, + { + "id": 146, + "cuisine": "cajun_creole", + "ingredients": [ + "vanilla extract", + "milk", + "chopped pecans", + "light brown sugar", + "salt", + "butter", + "white sugar" + ] + }, + { + "id": 12457, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "salt", + "red lentils", + "garam masala", + "onions", + "fresh ginger", + "garlic cloves", + "chicken broth", + "butter", + "ground turmeric" + ] + }, + { + "id": 33268, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "spring onions", + "balsamic vinegar", + "sauce", + "coconut milk", + "chili flakes", + "dry roasted peanuts", + "szechwan peppercorns", + "garlic", + "oil", + "coriander", + "red chili peppers", + "hoisin sauce", + "lime wedges", + "rice vinegar", + "corn starch", + "chicken", + "molasses", + "marinade", + "ginger", + "thai jasmine rice", + "toasted sesame oil" + ] + }, + { + "id": 26035, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "green onions", + "corn tortillas", + "pork sausages", + "tomatoes", + "garlic powder", + "salt", + "ground beef", + "ground cumin", + "cream of celery soup", + "jalapeno chilies", + "enchilada sauce", + "chopped cilantro fresh", + "avocado", + "shredded cheddar cheese", + "diced tomatoes", + "cream of mushroom soup", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 10379, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "salt", + "italian sausage", + "lasagna noodles", + "red pepper flakes", + "onions", + "ground black pepper", + "ricotta cheese", + "shredded mozzarella cheese", + "fresh basil", + "whole peeled tomatoes", + "garlic", + "italian seasoning" + ] + }, + { + "id": 22173, + "cuisine": "cajun_creole", + "ingredients": [ + "diced tomatoes", + "okra", + "onions", + "ground black pepper", + "salt", + "bay leaf", + "water", + "garlic", + "red bell pepper", + "vegetable oil", + "all-purpose flour", + "medium shrimp" + ] + }, + { + "id": 33076, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "tomato sauce", + "boneless skinless chicken breasts", + "wheat flour", + "fresh basil", + "large eggs", + "salt", + "parmesan cheese", + "fresh mozzarella", + "panko breadcrumbs" + ] + }, + { + "id": 28750, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "roma tomatoes", + "salt", + "milk", + "chips", + "American cheese", + "jalapeno chilies", + "tequila", + "jack cheese", + "cooking oil", + "cilantro" + ] + }, + { + "id": 25568, + "cuisine": "british", + "ingredients": [ + "cold water", + "all-purpose flour", + "shortening" + ] + }, + { + "id": 46693, + "cuisine": "mexican", + "ingredients": [ + "guacamole", + "corn tortillas", + "cilantro sprigs", + "queso fresco", + "salsa verde", + "rotisserie chicken" + ] + }, + { + "id": 30655, + "cuisine": "japanese", + "ingredients": [ + "cherry tomatoes", + "baby arugula", + "extra-virgin olive oil", + "kosher salt", + "dijon mustard", + "vegetable oil", + "panko breadcrumbs", + "boneless center cut pork chops", + "ground black pepper", + "lemon wedge", + "fresh lemon juice", + "watermelon", + "large eggs", + "Italian parsley leaves" + ] + }, + { + "id": 33132, + "cuisine": "cajun_creole", + "ingredients": [ + "sweet potatoes", + "all-purpose flour", + "garlic cloves", + "dried thyme", + "diced tomatoes", + "chopped onion", + "long grain and wild rice mix", + "fat free less sodium chicken broth", + "turkey", + "hot sauce", + "bay leaf", + "chopped green bell pepper", + "chopped celery", + "Italian turkey sausage", + "dried oregano" + ] + }, + { + "id": 39771, + "cuisine": "italian", + "ingredients": [ + "whole peeled tomatoes", + "fresh oregano", + "parmesan cheese", + "extra-virgin olive oil", + "pasta", + "coarse salt", + "ground pepper", + "garlic" + ] + }, + { + "id": 6144, + "cuisine": "indian", + "ingredients": [ + "brown rice", + "broccoli", + "mayonaise", + "reduced-fat sour cream", + "onions", + "seasoning", + "low fat mozzarella", + "lemon juice", + "curry powder", + "salt", + "olives" + ] + }, + { + "id": 42836, + "cuisine": "thai", + "ingredients": [ + "eggs", + "minced garlic", + "extra firm tofu", + "rice noodles", + "beansprouts", + "sugar", + "peanuts", + "banana flower", + "shrimp", + "fish sauce", + "lime", + "cooking oil", + "tamarind paste", + "turnips", + "chili pepper", + "ground pepper", + "shallots", + "chinese chives" + ] + }, + { + "id": 8113, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "plum tomatoes", + "balsamic vinegar" + ] + }, + { + "id": 29253, + "cuisine": "cajun_creole", + "ingredients": [ + "orange bell pepper", + "creole seasoning", + "crawfish", + "butter", + "cream of mushroom soup", + "water", + "garlic", + "onions", + "parsley", + "bay leaf" + ] + }, + { + "id": 47000, + "cuisine": "italian", + "ingredients": [ + "italian salad dressing", + "fresh parsley", + "fresh asparagus", + "chopped fresh chives", + "plum tomatoes" + ] + }, + { + "id": 213, + "cuisine": "mexican", + "ingredients": [ + "chopped green bell pepper", + "ground beef", + "tomato sauce", + "chopped onion", + "cheddar cheese", + "chip plain tortilla", + "refried beans", + "taco seasoning" + ] + }, + { + "id": 46584, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "ground black pepper", + "diced tomatoes", + "ground cumin", + "water", + "large eggs", + "corn tortillas", + "reduced fat cheddar cheese", + "zucchini", + "salt", + "olive oil", + "cooking spray", + "chopped cilantro fresh" + ] + }, + { + "id": 31638, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "baking powder", + "milk", + "all-purpose flour", + "sugar", + "salt", + "sweet potatoes" + ] + }, + { + "id": 11801, + "cuisine": "korean", + "ingredients": [ + "red chili peppers", + "green onions", + "salt", + "onions", + "pork belly", + "sesame oil", + "garlic cloves", + "soy sauce", + "rice wine", + "Gochujang base", + "toasted sesame seeds", + "brown sugar", + "gochugaru", + "apples", + "carrots" + ] + }, + { + "id": 46193, + "cuisine": "greek", + "ingredients": [ + "fat free yogurt", + "fresh oregano", + "canola oil", + "ground black pepper", + "fresh lemon juice", + "kosher salt", + "garlic cloves", + "lamb loin chops", + "chopped fresh mint" + ] + }, + { + "id": 42044, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "sauce", + "dough", + "fresh mozzarella", + "parmigiano reggiano cheese", + "fontina", + "cheese" + ] + }, + { + "id": 45282, + "cuisine": "french", + "ingredients": [ + "whole wheat flour", + "large eggs", + "grated lemon zest", + "sea salt flakes", + "kosher salt", + "unsalted butter", + "apple cider vinegar", + "garlic cloves", + "olive oil", + "herbs", + "all-purpose flour", + "fresh lemon juice", + "swiss chard", + "mushrooms", + "ricotta" + ] + }, + { + "id": 8459, + "cuisine": "moroccan", + "ingredients": [ + "unsalted butter", + "coarse salt", + "ground cinnamon", + "butternut squash", + "red bell pepper", + "sweet potatoes", + "ground coriander", + "olive oil", + "shallots", + "ground cumin" + ] + }, + { + "id": 45124, + "cuisine": "southern_us", + "ingredients": [ + "boneless skinless chicken breasts", + "cream of chicken soup", + "water", + "refrigerated biscuits" + ] + }, + { + "id": 13653, + "cuisine": "chinese", + "ingredients": [ + "graham cracker crumbs", + "whipping cream", + "sugar", + "orange extract", + "grated orange", + "juice concentrate", + "mandarin oranges", + "butter", + "cream cheese" + ] + }, + { + "id": 49650, + "cuisine": "italian", + "ingredients": [ + "green olives", + "dry white wine", + "large garlic cloves", + "chicken thighs", + "chicken broth", + "artichoke hearts", + "lemon", + "flat leaf parsley", + "olive oil", + "yukon gold potatoes", + "all-purpose flour", + "capers", + "lemon wedge", + "salt" + ] + }, + { + "id": 1880, + "cuisine": "russian", + "ingredients": [ + "vodka", + "pitted prunes", + "caraway seeds", + "half & half", + "sugar", + "vanilla", + "large egg yolks" + ] + }, + { + "id": 29597, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "cilantro leaves", + "chicken", + "fresh ginger", + "chili powder", + "oil", + "clove", + "coriander powder", + "green chilies", + "chopped tomatoes", + "salt", + "onions" + ] + }, + { + "id": 18139, + "cuisine": "spanish", + "ingredients": [ + "scallops", + "unsalted butter", + "raisins", + "chopped garlic", + "water", + "pistachio nuts", + "cilantro leaves", + "plantains", + "pepper", + "flour", + "salt", + "chorizo sausage", + "olive oil", + "ice water", + "scallions", + "pimenton" + ] + }, + { + "id": 2872, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "glutinous rice flour", + "eggs", + "milk", + "sugar", + "red bean paste", + "vegetable oil" + ] + }, + { + "id": 6905, + "cuisine": "spanish", + "ingredients": [ + "water", + "dry white wine", + "fresh fava bean", + "saffron", + "green lentil", + "salt", + "ground white pepper", + "olive oil", + "shallots", + "shrimp", + "tomatoes", + "unsalted butter", + "halibut", + "chopped cilantro fresh" + ] + }, + { + "id": 34177, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "dry white wine", + "fresh lemon juice", + "shallots", + "unsalted butter", + "white wine vinegar" + ] + }, + { + "id": 24830, + "cuisine": "thai", + "ingredients": [ + "cooked rice", + "green curry paste", + "scallions", + "fresh basil leaves", + "lime juice", + "vegetable oil", + "baby corn", + "brown sugar", + "extra firm tofu", + "asparagus spears", + "fresh cilantro", + "salt", + "coconut milk" + ] + }, + { + "id": 41153, + "cuisine": "southern_us", + "ingredients": [ + "bananas", + "dark brown sugar", + "sweet potatoes", + "chopped pecans", + "ground cinnamon", + "salt", + "ground nutmeg", + "margarine" + ] + }, + { + "id": 29103, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "diced red onions", + "salt", + "shredded Monterey Jack cheese", + "avocado", + "lime", + "coarse salt", + "chopped cilantro", + "water", + "flour tortillas", + "taco seasoning", + "Old El Paso Enchilada Sauce", + "refried beans", + "garlic", + "ground beef" + ] + }, + { + "id": 33482, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "navel oranges", + "olive oil", + "fresh lime juice", + "green bell pepper", + "italian plum tomatoes", + "onions", + "fresh coriander", + "yellow bell pepper" + ] + }, + { + "id": 6255, + "cuisine": "indian", + "ingredients": [ + "sugar", + "whole milk", + "paprika", + "all-purpose flour", + "baking soda", + "spices", + "garlic", + "boiling water", + "active dry yeast", + "baking powder", + "cilantro", + "greek yogurt", + "herbs", + "butter", + "salt", + "cumin" + ] + }, + { + "id": 21449, + "cuisine": "british", + "ingredients": [ + "water", + "vegetable oil", + "cod fillets", + "fish" + ] + }, + { + "id": 4418, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "fresh cilantro", + "garlic", + "Old El Paso Flour Tortillas", + "shredded Monterey Jack cheese", + "fresh leav spinach", + "green onions", + "yellow onion", + "fresh lime juice", + "black pepper", + "olive oil", + "salt", + "sour cream", + "ground cumin", + "avocado", + "shredded cheddar cheese", + "chili powder", + "enchilada sauce", + "chopped cilantro" + ] + }, + { + "id": 40188, + "cuisine": "korean", + "ingredients": [ + "chicken wings", + "granulated sugar", + "peanut oil", + "kosher salt", + "vegetable oil", + "soy sauce", + "rice wine", + "toasted sesame oil", + "potato starch", + "msg", + "wondra" + ] + }, + { + "id": 34968, + "cuisine": "french", + "ingredients": [ + "pepper", + "white rice", + "sea salt", + "chicken stock", + "herbes de provence" + ] + }, + { + "id": 24851, + "cuisine": "mexican", + "ingredients": [ + "ground chicken", + "ground black pepper", + "all-purpose flour", + "dried oregano", + "eggs", + "garlic powder", + "cooking spray", + "chopped onion", + "canola oil", + "green chile", + "frozen whole kernel corn", + "salt", + "vegetarian refried beans", + "ground cumin", + "fat free milk", + "egg whites", + "hot sauce", + "monterey jack" + ] + }, + { + "id": 46133, + "cuisine": "brazilian", + "ingredients": [ + "agave nectar", + "orange juice", + "muesli", + "pure acai puree", + "bananas" + ] + }, + { + "id": 27985, + "cuisine": "vietnamese", + "ingredients": [ + "romaine lettuce", + "peanuts", + "carrots", + "pepper", + "ginger", + "mango", + "soy sauce", + "sesame oil", + "shrimp", + "lime", + "garlic" + ] + }, + { + "id": 14262, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "extra sharp cheddar cheese", + "pepper", + "sharp cheddar cheese", + "saltines", + "salt", + "milk", + "elbow macaroni" + ] + }, + { + "id": 2480, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "smoked sausage", + "monterey jack", + "diced onions", + "heavy cream", + "penne pasta", + "low sodium chicken broth", + "salt", + "tomatoes", + "garlic", + "scallions" + ] + }, + { + "id": 22405, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "chicken breasts", + "ground almonds", + "chopped garlic", + "diced onions", + "ground black pepper", + "salt", + "coconut milk", + "chicken stock", + "bay leaves", + "cardamom pods", + "basmati rice", + "garam masala", + "vegetable oil", + "ginger root" + ] + }, + { + "id": 37966, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "large eggs", + "peaches", + "confectioners sugar", + "sourdough bread", + "heavy cream", + "light brown sugar", + "unsalted butter" + ] + }, + { + "id": 22579, + "cuisine": "indian", + "ingredients": [ + "hothouse cucumber", + "chopped fresh mint", + "cayenne pepper", + "ground cumin", + "plain whole-milk yogurt" + ] + }, + { + "id": 21458, + "cuisine": "thai", + "ingredients": [ + "sugar", + "peeled fresh ginger", + "gluten", + "fresh lime juice", + "rice stick noodles", + "mint leaves", + "shallots", + "thai chile", + "butter lettuce", + "basil leaves", + "vegetable oil", + "garlic cloves", + "lemongrass", + "boneless skinless chicken breasts", + "cilantro" + ] + }, + { + "id": 19582, + "cuisine": "japanese", + "ingredients": [ + "beef", + "seaweed", + "salt", + "steamed rice" + ] + }, + { + "id": 18851, + "cuisine": "french", + "ingredients": [ + "half & half", + "salt", + "black pepper", + "yukon gold potatoes", + "goat cheese", + "cooking spray", + "all-purpose flour", + "ground nutmeg", + "1% low-fat milk", + "garlic cloves" + ] + }, + { + "id": 42470, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "wonton skins", + "corn starch", + "egg whites", + "oil", + "white pepper", + "salt", + "sesame oil", + "shrimp" + ] + }, + { + "id": 10011, + "cuisine": "southern_us", + "ingredients": [ + "rosemary", + "paprika", + "warm water", + "vegetable oil", + "light brown sugar", + "ground pepper", + "all-purpose flour", + "kosher salt", + "fryer chickens" + ] + }, + { + "id": 35227, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "fresh lime juice", + "jicama", + "serrano chile", + "purple onion", + "olive oil", + "chopped cilantro fresh" + ] + }, + { + "id": 48084, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "garlic", + "warm water", + "sugar", + "fresh lime juice", + "fish sauce", + "shredded carrots" + ] + }, + { + "id": 12798, + "cuisine": "indian", + "ingredients": [ + "peanuts", + "oil", + "chaat masala", + "pomegranate seeds", + "salt", + "onions", + "ground cumin", + "corn kernels", + "cilantro leaves", + "noodles", + "celery ribs", + "papad", + "chutney", + "boiling potatoes" + ] + }, + { + "id": 12769, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "purple onion", + "couscous", + "pepper", + "yellow bell pepper", + "garlic cloves", + "fresh basil", + "balsamic vinegar", + "salt", + "chèvre", + "zucchini", + "extra-virgin olive oil", + "red bell pepper" + ] + }, + { + "id": 28728, + "cuisine": "japanese", + "ingredients": [ + "pistachios", + "carrots", + "butter", + "whole milk", + "honey", + "cardamom pods" + ] + }, + { + "id": 40838, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "vegetable oil", + "feta cheese crumbles", + "ground cumin", + "avocado", + "corn kernels", + "garlic cloves", + "chopped cilantro fresh", + "romaine lettuce", + "white wine vinegar", + "medium shrimp", + "green chile", + "chili powder", + "ears", + "sliced green onions" + ] + }, + { + "id": 281, + "cuisine": "mexican", + "ingredients": [ + "salt", + "onions", + "flank steak", + "corn tortillas", + "salsa", + "serrano chile", + "vegetable oil", + "fresh lime juice" + ] + }, + { + "id": 9468, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "salt", + "eggs", + "lemon zest", + "grated nutmeg", + "water", + "butter", + "ricotta", + "sage leaves", + "parmigiano reggiano cheese", + "all-purpose flour" + ] + }, + { + "id": 43990, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "grated parmesan cheese", + "Italian turkey sausage", + "extra-lean ground beef", + "red pepper", + "olive oil", + "meat", + "low-fat mozzarella cheese", + "diced onions", + "ground black pepper", + "green pepper" + ] + }, + { + "id": 1131, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "chopped cilantro fresh", + "pepper", + "ground cayenne pepper", + "salt", + "plum tomatoes", + "eggplant", + "onions" + ] + }, + { + "id": 46864, + "cuisine": "mexican", + "ingredients": [ + "ground chipotle chile pepper", + "olive oil", + "serrano peppers", + "garlic", + "iceberg lettuce", + "white vinegar", + "fresh cilantro", + "roma tomatoes", + "green onions", + "spanish paprika", + "chile powder", + "lime", + "jalapeno chilies", + "pineapple", + "turkey meat", + "white onion", + "orange bell pepper", + "pink lady apple", + "salt", + "ground cumin" + ] + }, + { + "id": 10031, + "cuisine": "japanese", + "ingredients": [ + "dark soy sauce", + "fresh ginger", + "spices", + "scallions", + "chicken", + "boneless chicken skinless thigh", + "mirin", + "salt", + "saki", + "sugar", + "ground black pepper", + "crushed red pepper flakes", + "garlic cloves", + "pepper", + "regular soy sauce", + "sauce", + "bamboo shoots" + ] + }, + { + "id": 46236, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "serrano peppers", + "shrimp", + "avocado", + "black pepper", + "paprika", + "chopped cilantro fresh", + "tomatoes", + "olive oil", + "salt", + "ground cumin", + "salmon", + "shallots", + "fresh lime juice" + ] + }, + { + "id": 12602, + "cuisine": "italian", + "ingredients": [ + "honey", + "orange zest", + "sugar", + "red wine", + "mascarpone", + "sweet cherries" + ] + }, + { + "id": 30120, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "raw almond", + "milk", + "salt", + "white pepper", + "raw cashews", + "saffron", + "almonds", + "green cardamom" + ] + }, + { + "id": 42807, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "carrots", + "onions", + "water", + "bay leaves", + "celery", + "clove", + "ground black pepper", + "shrimp", + "dried basil", + "garlic", + "fresh parsley" + ] + }, + { + "id": 9518, + "cuisine": "italian", + "ingredients": [ + "ground chuck", + "prosciutto", + "dried sage", + "whipping cream", + "chopped garlic", + "pancetta", + "dried porcini mushrooms", + "ground nutmeg", + "russet potatoes", + "salt", + "fresh sage", + "parmesan cheese", + "beef stock", + "diced tomatoes", + "onions", + "tomato paste", + "olive oil", + "large eggs", + "butter", + "all-purpose flour" + ] + }, + { + "id": 13824, + "cuisine": "greek", + "ingredients": [ + "goat milk feta", + "olive oil", + "chickpeas", + "ground cumin", + "pepper", + "chicken breast halves", + "red bell pepper", + "tomatoes", + "minced garlic", + "purple onion", + "flat leaf parsley", + "kosher salt", + "tahini", + "lemon juice" + ] + }, + { + "id": 8522, + "cuisine": "indian", + "ingredients": [ + "saffron threads", + "vegetable oil", + "cardamom pods", + "onions", + "bay leaves", + "raw cashews", + "lemon juice", + "basmati rice", + "chili powder", + "salt", + "cinnamon sticks", + "raita", + "minced garlic", + "deveined shrimp", + "cumin seed", + "plain whole-milk yogurt" + ] + }, + { + "id": 20201, + "cuisine": "italian", + "ingredients": [ + "roasted hazelnuts", + "butter", + "semisweet chocolate", + "white chocolate", + "pizza doughs", + "chocolate-hazelnut spread" + ] + }, + { + "id": 6171, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "vegetable oil", + "green chilies", + "ground turmeric", + "water", + "chili powder", + "cilantro leaves", + "basmati rice", + "tomatoes", + "potatoes", + "salt", + "fresh lime juice", + "coriander powder", + "green peas", + "jeera" + ] + }, + { + "id": 7345, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "baking potatoes", + "onions", + "black pepper", + "reduced fat milk", + "reduced-fat sour cream", + "radishes", + "butter", + "fat free less sodium chicken broth", + "chopped fresh chives", + "salt" + ] + }, + { + "id": 36952, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "garlic cloves", + "spaghetti", + "kosher salt", + "fresh parsley", + "bread crumbs", + "ground beef", + "eggs", + "parmesan cheese", + "onions" + ] + }, + { + "id": 35470, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "honey", + "chili powder", + "purple onion", + "red bell pepper", + "pico de gallo", + "fresh cilantro", + "garlic powder", + "lean ground beef", + "cilantro leaves", + "avocado", + "orange", + "olive oil", + "onion powder", + "salt", + "ground cumin", + "romaine lettuce", + "lime", + "sliced olives", + "paprika", + "cayenne pepper" + ] + }, + { + "id": 41466, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "gooseberries", + "small tomatoes", + "salt", + "mustard seeds", + "red chili peppers", + "tamarind", + "channa dal", + "oil", + "ground turmeric", + "green bell pepper", + "pearl onions", + "roast", + "fenugreek seeds", + "toor dal", + "grated coconut", + "coriander seeds", + "urad dal", + "carrots" + ] + }, + { + "id": 38801, + "cuisine": "japanese", + "ingredients": [ + "garlic paste", + "cardamom seeds", + "ghee", + "ginger paste", + "clove", + "vegetable oil", + "cinnamon sticks", + "tiger prawn", + "tomatoes", + "cinnamon", + "coconut milk", + "ground turmeric", + "green cardamom pods", + "water", + "cayenne pepper", + "onions" + ] + }, + { + "id": 3412, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "corn", + "lime wedges", + "crema mexicana", + "chili powder", + "ground black pepper", + "salt" + ] + }, + { + "id": 44820, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "chopped pecans", + "powdered sugar", + "cream cheese, soften", + "vanilla extract" + ] + }, + { + "id": 36441, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "grated parmesan cheese", + "salt", + "olive oil", + "butternut squash", + "pepper", + "half & half", + "onions", + "chicken broth", + "ground nutmeg", + "linguine" + ] + }, + { + "id": 10168, + "cuisine": "italian", + "ingredients": [ + "lemon extract", + "poppy seeds", + "eggs", + "egg whites", + "ground almonds", + "lemon zest", + "all-purpose flour", + "baking soda", + "baking powder", + "white sugar" + ] + }, + { + "id": 33974, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "fresh oregano", + "prime rib", + "garlic", + "potatoes", + "onions", + "seasoning salt", + "cayenne pepper" + ] + }, + { + "id": 41508, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lemon grass", + "chicken stock", + "straw mushrooms", + "chopped cilantro fresh", + "red chili peppers", + "green onions", + "kaffir lime leaves", + "lime juice", + "tiger prawn" + ] + }, + { + "id": 38856, + "cuisine": "korean", + "ingredients": [ + "spinach", + "sesame oil", + "oil", + "sugar", + "garlic", + "carrots", + "soy sauce", + "salt", + "onions", + "sesame", + "shiitake", + "scallions", + "noodles" + ] + }, + { + "id": 7086, + "cuisine": "greek", + "ingredients": [ + "sugar", + "dill", + "onions", + "ground cinnamon", + "deveined shrimp", + "garlic cloves", + "tomatoes", + "feta cheese", + "ground allspice", + "hot red pepper flakes", + "extra-virgin olive oil", + "juice" + ] + }, + { + "id": 49634, + "cuisine": "french", + "ingredients": [ + "lemon", + "salt", + "olive oil", + "cracked black pepper", + "shallots", + "artichokes", + "fresh tarragon" + ] + }, + { + "id": 31022, + "cuisine": "italian", + "ingredients": [ + "fresh lime juice", + "seedless watermelon", + "sugar" + ] + }, + { + "id": 35607, + "cuisine": "filipino", + "ingredients": [ + "garlic paste", + "olive oil", + "garlic chili sauce", + "soy sauce", + "green onions", + "sugar", + "pork loin", + "water", + "sesame oil" + ] + }, + { + "id": 27276, + "cuisine": "mexican", + "ingredients": [ + "corn tortillas", + "chicken breasts", + "shredded Monterey Jack cheese", + "enchilada sauce" + ] + }, + { + "id": 15913, + "cuisine": "italian", + "ingredients": [ + "chicken breasts", + "corn starch", + "grated parmesan cheese", + "swanson chicken broth", + "spaghetti", + "garlic powder", + "red pepper", + "onions", + "broccoli florets", + "carrots" + ] + }, + { + "id": 45989, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "white sugar", + "pecan halves", + "pinto beans", + "eggs", + "vanilla extract", + "unbaked pie crusts", + "cornmeal" + ] + }, + { + "id": 46474, + "cuisine": "southern_us", + "ingredients": [ + "all-purpose flour", + "jalapeno chilies", + "chicken thighs", + "white vinegar", + "oil", + "salt" + ] + }, + { + "id": 10698, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "corn", + "garlic", + "chipotles in adobo", + "chicken", + "mozzarella cheese", + "chili powder", + "oil", + "oregano", + "cheddar cheese", + "zucchini", + "salt", + "onions", + "pepper", + "cilantro", + "enchilada sauce", + "cumin" + ] + }, + { + "id": 27222, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "jalapeno chilies", + "salt", + "lime juice", + "chile de arbol", + "beer", + "pepper", + "cilantro", + "yellow onion", + "olive oil", + "garlic" + ] + }, + { + "id": 10070, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "dark brown sugar", + "red bell pepper", + "tumeric", + "vegetable oil", + "garlic cloves", + "mango", + "fresh ginger", + "salt", + "cinnamon sticks", + "ground cumin", + "white vinegar", + "golden raisins", + "ground coriander", + "onions" + ] + }, + { + "id": 21247, + "cuisine": "southern_us", + "ingredients": [ + "yellow cake mix", + "nonstick spray", + "butter", + "cinnamon", + "pecans", + "peaches in heavy syrup" + ] + }, + { + "id": 5700, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "ice water", + "coarse salt", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 25171, + "cuisine": "french", + "ingredients": [ + "pastry dough", + "armagnac", + "semolina flour", + "confectioners sugar", + "plums", + "granulated sugar", + "sour cream" + ] + }, + { + "id": 8428, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "sea salt", + "dry bread crumbs", + "eggs", + "parmigiano reggiano cheese", + "white rice", + "chicken broth", + "unsalted butter", + "chees fresh mozzarella", + "olive oil", + "egg whites", + "all-purpose flour" + ] + }, + { + "id": 28217, + "cuisine": "chinese", + "ingredients": [ + "cherries", + "chinese five-spice powder", + "kosher salt", + "dry sherry", + "pork butt", + "soy sauce", + "hoisin sauce", + "steak", + "honey", + "dark brown sugar" + ] + }, + { + "id": 12002, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "fat free less sodium chicken broth", + "large eggs", + "salt" + ] + }, + { + "id": 41402, + "cuisine": "irish", + "ingredients": [ + "pepper", + "garlic", + "bacon", + "low sodium chicken stock", + "ginger", + "cabbage", + "spring onions", + "salt" + ] + }, + { + "id": 2691, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "fennel bulb" + ] + }, + { + "id": 45891, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "garlic", + "rapeseed oil", + "fish sauce", + "rice wine", + "boneless skinless chicken", + "chicken stock", + "spring onions", + "purple onion", + "chillies", + "sugar", + "chilli paste", + "roasted peanuts" + ] + }, + { + "id": 44277, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "kosher salt", + "bawang goreng", + "cilantro sprigs", + "chicken", + "fish sauce", + "low sodium chicken broth", + "cooked rice", + "ground black pepper", + "vegetable oil", + "wheat beer", + "Massaman curry paste", + "fresh lime juice", + "light brown sugar", + "red chile powder", + "yukon gold potatoes", + "purple onion" + ] + }, + { + "id": 21931, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "garlic", + "chopped parsley", + "dried oregano", + "crushed red pepper flakes", + "salt", + "onions", + "bacon", + "pitted olives", + "rotini", + "capers", + "extra-virgin olive oil", + "red bell pepper", + "plum tomatoes" + ] + }, + { + "id": 12509, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "kosher salt", + "corn tortillas", + "white onion", + "hot sauce", + "flank steak", + "chipotles in adobo" + ] + }, + { + "id": 38696, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "almond extract", + "fresh lemon juice", + "pure vanilla extract", + "unsalted butter", + "all-purpose flour", + "almonds", + "salt", + "sugar", + "large eggs", + "grated lemon zest" + ] + }, + { + "id": 9316, + "cuisine": "chinese", + "ingredients": [ + "egg substitute", + "frozen broccoli", + "frozen shelled edamame", + "brown rice", + "toasted sesame seeds", + "minced garlic", + "crushed red pepper", + "sliced green onions", + "low sodium soy sauce", + "cooking spray", + "dark sesame oil" + ] + }, + { + "id": 38096, + "cuisine": "french", + "ingredients": [ + "eggs", + "ground black pepper", + "white wine vinegar", + "green beans", + "olive oil", + "black olives", + "small red potato", + "capers", + "dijon mustard", + "salt", + "tuna", + "romaine lettuce", + "pimentos", + "anchovy fillets" + ] + }, + { + "id": 36277, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "cardamom pods", + "clove", + "cumin seed", + "coriander seeds" + ] + }, + { + "id": 30073, + "cuisine": "italian", + "ingredients": [ + "pepper", + "cannellini beans", + "diced celery", + "tomato paste", + "olive oil", + "salt", + "carrots", + "fresh sage", + "fennel", + "veal shanks", + "onions", + "sage leaves", + "minced garlic", + "dry white wine", + "fat skimmed chicken broth" + ] + }, + { + "id": 22805, + "cuisine": "southern_us", + "ingredients": [ + "soup", + "chopped parsley", + "condensed cream of chicken soup", + "biscuit dough", + "chicken broth", + "paprika", + "boneless skinless chicken breast halves", + "pepper", + "poultry seasoning" + ] + }, + { + "id": 6351, + "cuisine": "mexican", + "ingredients": [ + "colby cheese", + "diced tomatoes", + "onions", + "refried beans", + "green chilies", + "minced garlic", + "black olives", + "taco sauce", + "flour tortillas", + "ground beef" + ] + }, + { + "id": 47750, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "coriander powder", + "salt", + "cardamom", + "onions", + "chicken", + "garlic paste", + "lemon", + "cumin seed", + "cinnamon sticks", + "peppercorns", + "red chili powder", + "bay leaves", + "green chilies", + "garlic cloves", + "coriander", + "clove", + "garam masala", + "ginger", + "oil", + "ghee", + "ground turmeric" + ] + }, + { + "id": 45787, + "cuisine": "italian", + "ingredients": [ + "sugar", + "grated parmesan cheese", + "ground turkey", + "olive oil", + "sliced mushrooms", + "crushed tomatoes", + "salt", + "dried oregano", + "pepper", + "garlic", + "polenta" + ] + }, + { + "id": 10243, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "cachaca", + "ice", + "lime" + ] + }, + { + "id": 46924, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "cider vinegar", + "ketchup", + "hot sauce", + "green cabbage", + "pepper" + ] + }, + { + "id": 44797, + "cuisine": "french", + "ingredients": [ + "sugar", + "heavy cream", + "eggs", + "flour", + "dark chocolate", + "butter", + "caramels", + "candy" + ] + }, + { + "id": 14880, + "cuisine": "thai", + "ingredients": [ + "lime", + "rice noodles", + "coconut milk", + "coconut oil", + "sweet potatoes", + "tamari soy sauce", + "water", + "green onions", + "green pepper", + "tofu", + "green curry paste", + "garlic", + "onions" + ] + }, + { + "id": 42193, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "lemon wedge", + "garlic cloves", + "ground black pepper", + "salt", + "olive oil", + "relish", + "fresh parsley", + "white bread", + "cooking spray", + "grouper" + ] + }, + { + "id": 35415, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "parsley", + "garlic", + "chopped parsley", + "grated parmesan cheese", + "ground veal", + "dry bread crumbs", + "ground beef", + "large eggs", + "red pepper flakes", + "salt", + "bay leaf", + "spanish onion", + "basil leaves", + "ground pork", + "freshly ground pepper", + "plum tomatoes" + ] + }, + { + "id": 38039, + "cuisine": "italian", + "ingredients": [ + "bottled clam juice", + "dry white wine", + "medium shrimp", + "canned low sodium chicken broth", + "bay scallops", + "garlic", + "boiling water", + "arborio rice", + "olive oil", + "butter", + "onions", + "dried porcini mushrooms", + "mushrooms", + "salt" + ] + }, + { + "id": 41714, + "cuisine": "italian", + "ingredients": [ + "rolls", + "pizza sauce", + "mozzarella cheese", + "sliced mushrooms", + "frozen bread dough" + ] + }, + { + "id": 15470, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "green onions", + "flour tortillas", + "creole seasoning", + "sweet onion", + "chicken breasts", + "low sodium chicken broth", + "roux" + ] + }, + { + "id": 20616, + "cuisine": "irish", + "ingredients": [ + "sugar", + "butter", + "all-purpose flour", + "cooking spray", + "1% low-fat milk", + "large eggs", + "raisins", + "cinnamon sugar", + "ground cinnamon", + "baking powder", + "salt" + ] + }, + { + "id": 46330, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "cayenne pepper", + "baking soda", + "salt", + "canola oil", + "eggs", + "buttermilk", + "cornmeal", + "ground black pepper", + "all-purpose flour", + "sliced green onions" + ] + }, + { + "id": 17215, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "vegetable oil", + "carrots", + "sugar", + "sesame oil", + "salt", + "spinach", + "shiitake", + "garlic", + "toasted sesame seeds", + "cooked rice", + "chile paste", + "pickling cucumbers", + "korean chile paste" + ] + }, + { + "id": 3645, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "kosher salt", + "sea bass fillets", + "flat leaf parsley", + "red potato", + "fennel bulb", + "lemon rind", + "grated orange", + "tomatoes", + "olive oil", + "sauce", + "dried oregano", + "black pepper", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 8781, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "dried thyme", + "bacon", + "peanut oil", + "celery seed", + "dried oregano", + "celery ribs", + "black pepper", + "flour", + "cayenne pepper", + "sweet paprika", + "onions", + "andouille sausage", + "garlic powder", + "salt", + "okra", + "fresh parsley", + "chicken stock", + "water", + "green onions", + "green pepper", + "garlic cloves", + "chicken thighs" + ] + }, + { + "id": 48419, + "cuisine": "greek", + "ingredients": [ + "fresh oregano", + "dried oregano", + "garlic powder", + "lemon juice", + "frozen chopped spinach", + "rice", + "salt", + "feta cheese crumbles" + ] + }, + { + "id": 21708, + "cuisine": "italian", + "ingredients": [ + "lemon zest", + "flat leaf parsley", + "garlic", + "extra-virgin olive oil", + "spaghetti", + "hot red pepper flakes", + "salt" + ] + }, + { + "id": 34303, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "orange", + "cilantro sprigs", + "corn tortillas", + "crumbles", + "pork shoulder butt", + "salsa", + "water", + "whole milk", + "lard", + "white onion", + "ground black pepper", + "salt" + ] + }, + { + "id": 23631, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "cheddar cheese", + "salsa", + "tortillas", + "pork", + "kimchi" + ] + }, + { + "id": 18634, + "cuisine": "mexican", + "ingredients": [ + "lime", + "salt", + "pepper", + "diced red onions", + "avocado", + "cherry tomatoes", + "corn", + "grapeseed oil" + ] + }, + { + "id": 44697, + "cuisine": "japanese", + "ingredients": [ + "carrots", + "sugar", + "ghee", + "milk", + "cashew nuts", + "cardamom" + ] + }, + { + "id": 34041, + "cuisine": "italian", + "ingredients": [ + "eggs", + "eggplant", + "diced tomatoes", + "ketchup", + "grated parmesan cheese", + "italian seasoning", + "frozen chopped spinach", + "olive oil", + "ricotta cheese", + "pasta sauce", + "feta cheese", + "ground beef" + ] + }, + { + "id": 22726, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "salt", + "olive oil", + "vegetable oil", + "chopped cilantro fresh", + "lime", + "flank steak", + "yellow onion", + "bell pepper", + "garlic", + "ground cumin" + ] + }, + { + "id": 33708, + "cuisine": "italian", + "ingredients": [ + "sausage links", + "large garlic cloves", + "olive oil", + "Italian bread", + "black pepper", + "salt", + "bell pepper", + "onions" + ] + }, + { + "id": 18058, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "gruyere cheese", + "kosher salt", + "marinara sauce", + "grated parmesan cheese", + "low-fat milk", + "ground black pepper", + "basil leaves" + ] + }, + { + "id": 15109, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "fresh lemon juice", + "spinach", + "green onions", + "bulgur", + "chopped fresh mint", + "ground black pepper", + "grated lemon zest", + "medium shrimp", + "water", + "lemon wedge", + "garlic cloves" + ] + }, + { + "id": 6452, + "cuisine": "southern_us", + "ingredients": [ + "low-fat buttermilk", + "ice water", + "lemon rind", + "sugar", + "cooking spray", + "salt", + "large eggs", + "vanilla extract", + "fresh lemon juice", + "large egg whites", + "butter", + "all-purpose flour" + ] + }, + { + "id": 4818, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "baking soda", + "onion powder", + "all-purpose flour", + "juice", + "honey", + "granulated sugar", + "paprika", + "dill", + "garlic powder", + "baking powder", + "salt", + "peanut oil", + "dried thyme", + "unsalted butter", + "buttermilk", + "cayenne pepper", + "bone in skin on chicken thigh" + ] + }, + { + "id": 25969, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "butter", + "chiles", + "parmesan cheese", + "salsa", + "eggs", + "water", + "salt", + "bread crumbs", + "flour" + ] + }, + { + "id": 22596, + "cuisine": "jamaican", + "ingredients": [ + "garlic powder", + "fat free yogurt", + "sesame oil", + "fresh ginger", + "non-fat sour cream", + "ground ginger", + "hot pepper sauce" + ] + }, + { + "id": 49321, + "cuisine": "italian", + "ingredients": [ + "unflavored gelatin", + "lemon", + "vanilla beans", + "sugar", + "heavy whipping cream", + "whole milk" + ] + }, + { + "id": 38761, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "salt", + "stewed tomatoes", + "chopped fresh chives", + "serrano", + "pepper", + "garlic" + ] + }, + { + "id": 6296, + "cuisine": "thai", + "ingredients": [ + "broccolini", + "vegetable stock", + "cabbage", + "sweet chili sauce", + "rice noodles", + "oil", + "soy sauce", + "peanuts", + "garlic", + "beans", + "red capsicum", + "onions" + ] + }, + { + "id": 1380, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "large eggs", + "fresh lemon juice", + "ground cinnamon", + "milk", + "vanilla extract", + "bread flour", + "powdered sugar", + "active dry yeast", + "salt", + "warm water", + "butter", + "sour cream" + ] + }, + { + "id": 26416, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large eggs", + "all-purpose flour", + "water", + "vanilla extract", + "pinenuts", + "baking powder", + "grated lemon zest", + "baking soda", + "salt" + ] + }, + { + "id": 1778, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "potatoes", + "heavy whipping cream", + "back bacon rashers", + "salt", + "onions", + "collard greens", + "parsley", + "fresh parsley", + "pepper", + "croutons", + "cumin" + ] + }, + { + "id": 11983, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "mirin", + "rice vinegar", + "cooked white rice", + "potato starch", + "boneless chicken skinless thigh", + "shredded cabbage", + "fresh lemon juice", + "soy sauce", + "bonito flakes", + "konbu", + "canola oil", + "sake", + "white onion", + "ginger", + "fresh lime juice" + ] + }, + { + "id": 36372, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "sake", + "dark miso", + "firm tofu", + "sugar" + ] + }, + { + "id": 34296, + "cuisine": "japanese", + "ingredients": [ + "sake", + "green onions", + "beef tenderloin", + "cucumber", + "lime zest", + "fresh ginger", + "sesame oil", + "garlic cloves", + "soy sauce", + "rice wine", + "freshly ground pepper", + "fresh lime juice", + "firmly packed brown sugar", + "black sesame seeds", + "daikon", + "carrots" + ] + }, + { + "id": 9942, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "garlic", + "lentils", + "chili flakes", + "vegetable oil", + "green chilies", + "coriander", + "curry leaves", + "pepper", + "salt", + "juice", + "asafoetida", + "ginger", + "cumin seed", + "plum tomatoes" + ] + }, + { + "id": 1682, + "cuisine": "cajun_creole", + "ingredients": [ + "green onions", + "minced garlic", + "button mushrooms", + "seasoning", + "boneless skinless chicken breasts", + "blue cheese dressing", + "smoked sausage" + ] + }, + { + "id": 1456, + "cuisine": "mexican", + "ingredients": [ + "sliced tomatoes", + "cheddar cheese", + "kosher salt", + "coarse salt", + "onions", + "tomatoes", + "hamburger buns", + "jalapeno chilies", + "fresh lemon juice", + "ground cumin", + "avocado", + "mayonaise", + "fresh cilantro", + "shredded lettuce", + "dried oregano", + "corn tortilla chips", + "black pepper", + "chili powder", + "ground beef" + ] + }, + { + "id": 15665, + "cuisine": "japanese", + "ingredients": [ + "steak fillets", + "steamed rice", + "onions", + "sugar", + "salt", + "sake", + "mirin", + "soy sauce", + "oil" + ] + }, + { + "id": 12796, + "cuisine": "korean", + "ingredients": [ + "green onions", + "rice flour", + "pork", + "salt", + "large eggs", + "all-purpose flour", + "cold water", + "vegetable oil", + "kimchi" + ] + }, + { + "id": 46121, + "cuisine": "mexican", + "ingredients": [ + "celery stick", + "salt", + "cumin", + "tomato paste", + "water", + "ground beef", + "pepper", + "red bell pepper", + "tomatoes", + "chili powder", + "onions" + ] + }, + { + "id": 5260, + "cuisine": "mexican", + "ingredients": [ + "water", + "vegetable oil", + "sour cream", + "fresh cilantro", + "tomatillos", + "onions", + "pepper", + "chile pepper", + "salt", + "monterey jack", + "boneless pork shoulder", + "jalapeno chilies", + "garlic", + "dried oregano" + ] + }, + { + "id": 18868, + "cuisine": "british", + "ingredients": [ + "eggs", + "lemon zest", + "dry sherry", + "bread", + "granulated sugar", + "butter", + "grated nutmeg", + "milk", + "candied peel", + "whipping cream", + "white bread", + "vanilla pods", + "raisins" + ] + }, + { + "id": 7961, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "white miso", + "black cod fillets", + "sake", + "mirin" + ] + }, + { + "id": 34868, + "cuisine": "mexican", + "ingredients": [ + "corn tortillas", + "cooking spray", + "salt", + "olive oil", + "ground cumin" + ] + }, + { + "id": 29069, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "salt", + "cucumber", + "ground black pepper", + "garlic cloves", + "olive oil", + "greek style plain yogurt", + "red wine vinegar", + "lemon juice" + ] + }, + { + "id": 25766, + "cuisine": "southern_us", + "ingredients": [ + "turnip greens", + "breakfast sausages", + "crushed red pepper", + "dried parsley", + "corn", + "russet potatoes", + "carrots", + "black pepper", + "instant potato flakes", + "salt", + "chicken broth", + "garlic powder", + "heavy cream", + "frozen peppers and onions" + ] + }, + { + "id": 5174, + "cuisine": "mexican", + "ingredients": [ + "cream of celery soup", + "lime juice", + "colby jack cheese", + "red bell pepper", + "oregano", + "black beans", + "boneless skinless chicken breasts", + "butter", + "chopped cilantro fresh", + "frozen sweet corn", + "olive oil", + "chili powder", + "garlic salt", + "ground cumin", + "chicken broth", + "minced garlic", + "chives", + "rice", + "chunky salsa" + ] + }, + { + "id": 658, + "cuisine": "russian", + "ingredients": [ + "black peppercorns", + "sliced black olives", + "beef base", + "stewed tomatoes", + "oil", + "cabbage", + "light sour cream", + "water", + "dry white wine", + "lemon", + "allspice berries", + "cooked chicken breasts", + "capers", + "hillshire farms low fat sausage", + "salami", + "chopped celery", + "dill pickles", + "tomato paste", + "fresh dill", + "bay leaves", + "spices", + "salt", + "onions" + ] + }, + { + "id": 17169, + "cuisine": "thai", + "ingredients": [ + "ketchup", + "lime wedges", + "beansprouts", + "sugar", + "extra firm tofu", + "paprika", + "canola oil", + "white vinegar", + "chili paste", + "rice noodles", + "chopped garlic", + "soy sauce", + "green onions", + "roasted peanuts" + ] + }, + { + "id": 46408, + "cuisine": "southern_us", + "ingredients": [ + "half & half", + "ham", + "butter", + "shrimp", + "olive oil", + "all-purpose flour", + "chicken broth", + "barbecue seasoning", + "fresh parsley" + ] + }, + { + "id": 36173, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "egg whites", + "garlic", + "prawns", + "ginger", + "hot pepper sauce", + "spring onions", + "salt", + "white bread", + "cooking oil", + "cornflour" + ] + }, + { + "id": 43993, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "applewood smoked bacon", + "butternut squash", + "lower sodium chicken broth", + "flat leaf parsley" + ] + }, + { + "id": 30459, + "cuisine": "french", + "ingredients": [ + "chicken legs", + "whole grain mustard", + "garlic cloves", + "dried thyme", + "salt", + "green peppercorns", + "olive oil", + "freshly ground pepper", + "fresh marjoram", + "coarse sea salt", + "bay leaf" + ] + }, + { + "id": 38804, + "cuisine": "italian", + "ingredients": [ + "artichok heart marin", + "bread, cut into italian loaf", + "hellmann' or best food light mayonnais", + "sun-dried tomatoes in oil", + "grated parmesan cheese" + ] + }, + { + "id": 5485, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "shortening", + "all-purpose flour", + "salt", + "water" + ] + }, + { + "id": 4902, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "peaches", + "cinnamon", + "ground allspice", + "sugar", + "flour", + "ginger", + "brown sugar", + "granulated sugar", + "orange extract", + "corn starch", + "nutmeg", + "syrup", + "pastry dough", + "vanilla" + ] + }, + { + "id": 42200, + "cuisine": "southern_us", + "ingredients": [ + "table salt", + "onion powder", + "ground black pepper", + "chicken drumsticks", + "habanero hot sauce", + "vegetable oil", + "low-fat buttermilk", + "all-purpose flour" + ] + }, + { + "id": 47583, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "garlic", + "chopped cilantro", + "canola oil", + "black peppercorns", + "cinnamon", + "green cardamom", + "ground turmeric", + "cooked rice", + "ginger", + "brown cardamom", + "bone in chicken thighs", + "chile powder", + "kosher salt", + "yellow onion", + "serrano chile" + ] + }, + { + "id": 646, + "cuisine": "filipino", + "ingredients": [ + "egg whites", + "honey", + "oil", + "bananas", + "confectioners sugar", + "lumpia wrappers" + ] + }, + { + "id": 4863, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "rice noodles", + "fresh coriander", + "sambal olek", + "fresh basil leaves", + "five spice", + "sweet onion", + "beef broth", + "fish sauce", + "beef", + "beansprouts" + ] + }, + { + "id": 44445, + "cuisine": "french", + "ingredients": [ + "large eggs", + "extra-virgin olive oil", + "sea salt", + "garlic" + ] + }, + { + "id": 31210, + "cuisine": "british", + "ingredients": [ + "plain flour", + "vegetable oil", + "potatoes", + "beer", + "egg whites", + "salt", + "haddock" + ] + }, + { + "id": 18580, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "salt", + "grated parmesan cheese", + "milk", + "grits", + "white pepper", + "butter" + ] + }, + { + "id": 28025, + "cuisine": "spanish", + "ingredients": [ + "ground cinnamon", + "minced garlic", + "salt", + "white sugar", + "pinenuts", + "cooking oil", + "tuna", + "green bell pepper", + "ground nutmeg", + "red bell pepper", + "pepper", + "diced tomatoes", + "onions" + ] + }, + { + "id": 10135, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "all-purpose flour", + "powdered sugar", + "apples", + "peanut oil", + "butter", + "sauce", + "large eggs", + "salt" + ] + }, + { + "id": 32409, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "green lentil", + "garlic cloves", + "chicken", + "olive oil", + "salt", + "fresh parsley", + "fresh cilantro", + "ground black pepper", + "lemon juice", + "ground cumin", + "ground ginger", + "chopped tomatoes", + "chickpeas", + "onions" + ] + }, + { + "id": 22548, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "Sriracha", + "garlic", + "cabbage", + "reduced sodium soy sauce", + "sesame oil", + "celery", + "fresh ginger", + "mushrooms", + "carrots", + "egg noodles", + "vegetable oil", + "snow peas" + ] + }, + { + "id": 37146, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "mirin", + "kosher salt", + "vegetable oil", + "soy sauce", + "flank steak", + "sake", + "water", + "scallions" + ] + }, + { + "id": 28545, + "cuisine": "italian", + "ingredients": [ + "italian seasoned dry bread crumbs", + "grated parmesan cheese", + "boneless skinless chicken breasts", + "mayonaise" + ] + }, + { + "id": 11764, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "cilantro leaves", + "coconut milk", + "clove", + "ginger", + "cumin seed", + "ground turmeric", + "prawns", + "green chilies", + "onions", + "tamarind extract", + "salt", + "oil" + ] + }, + { + "id": 37970, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "dry white wine", + "linguine", + "ground black pepper", + "littleneck clams", + "chopped parsley", + "unsalted butter", + "extra-virgin olive oil", + "Italian bread", + "water", + "crushed red pepper flakes", + "garlic" + ] + }, + { + "id": 47171, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "leaves", + "garlic", + "tumeric", + "cardamon", + "onions", + "tomatoes", + "cayenne", + "ground coriander", + "chard", + "fresh ginger", + "sea salt", + "ground cumin" + ] + }, + { + "id": 21418, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "ginger", + "oil", + "amchur", + "green chilies", + "coriander", + "tumeric", + "salt", + "chopped cilantro", + "potatoes", + "cumin seed", + "asafetida" + ] + }, + { + "id": 25058, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "whole milk", + "salt", + "ground cinnamon", + "cayenne", + "heavy cream", + "solid pack pumpkin", + "ground ginger", + "ground nutmeg", + "vegetable oil", + "pumpkin seeds", + "large eggs", + "vanilla" + ] + }, + { + "id": 8541, + "cuisine": "mexican", + "ingredients": [ + "flour", + "cayenne pepper", + "butter", + "whole milk", + "sharp cheddar cheese", + "salt" + ] + }, + { + "id": 7963, + "cuisine": "southern_us", + "ingredients": [ + "frozen whole kernel corn", + "cooking spray", + "all-purpose flour", + "baking soda", + "jalapeno chilies", + "salt", + "yellow corn meal", + "low-fat buttermilk", + "yoghurt", + "sugar", + "large eggs", + "baking powder" + ] + }, + { + "id": 22454, + "cuisine": "spanish", + "ingredients": [ + "water", + "large egg yolks", + "extra-virgin olive oil", + "cherry peppers", + "kosher salt", + "manchego cheese", + "heavy cream", + "garlic cloves", + "milk", + "large eggs", + "anchovy fillets", + "medium shrimp", + "saffron threads", + "corn kernels", + "dry white wine", + "freshly ground pepper" + ] + }, + { + "id": 42804, + "cuisine": "japanese", + "ingredients": [ + "water", + "potatoes", + "green chilies", + "garam masala", + "salt", + "coriander", + "amchur", + "seeds", + "oil", + "red chili peppers", + "ravva", + "cilantro leaves" + ] + }, + { + "id": 43028, + "cuisine": "thai", + "ingredients": [ + "water", + "boneless skinless chicken breasts", + "green beans", + "brown sugar", + "olive oil", + "light coconut milk", + "ginger root", + "lime zest", + "chili", + "Thai red curry paste", + "red bell pepper", + "pepper", + "low sodium chicken broth", + "salt" + ] + }, + { + "id": 1588, + "cuisine": "moroccan", + "ingredients": [ + "lamb stock", + "couscous", + "pitted green olives", + "coriander", + "dried apricot", + "onions", + "seasoning", + "lemon", + "ground lamb" + ] + }, + { + "id": 44963, + "cuisine": "indian", + "ingredients": [ + "baking powder", + "eggs", + "salt", + "coconut flour", + "coconut oil", + "coconut milk" + ] + }, + { + "id": 34031, + "cuisine": "moroccan", + "ingredients": [ + "lamb shanks", + "flour", + "cilantro leaves", + "saffron", + "prunes", + "chopped tomatoes", + "harissa", + "garlic cloves", + "ground ginger", + "olive oil", + "beef stock", + "ground coriander", + "ground cumin", + "sugar", + "lemon zest", + "paprika", + "onions" + ] + }, + { + "id": 968, + "cuisine": "korean", + "ingredients": [ + "light brown sugar", + "dijon mustard", + "paprika", + "Gochujang base", + "water", + "lettuce leaves", + "garlic", + "corn starch", + "garlic powder", + "sesame oil", + "rice vinegar", + "chicken", + "chile powder", + "miso paste", + "buttermilk", + "all-purpose flour" + ] + }, + { + "id": 38827, + "cuisine": "indian", + "ingredients": [ + "clove", + "cayenne", + "all-purpose flour", + "chicken thighs", + "fresh curry leaves", + "vegetable oil", + "cinnamon sticks", + "white vinegar", + "water", + "ginger", + "onions", + "black peppercorns", + "shallots", + "garlic cloves" + ] + }, + { + "id": 26934, + "cuisine": "southern_us", + "ingredients": [ + "water", + "parmigiano reggiano cheese", + "garlic cloves", + "black pepper", + "olive oil", + "salt", + "grits", + "salmon fillets", + "dried thyme", + "cooking spray", + "sliced mushrooms", + "fat free less sodium chicken broth", + "finely chopped fresh parsley", + "fresh onion" + ] + }, + { + "id": 7857, + "cuisine": "italian", + "ingredients": [ + "artichok heart marin", + "italian salad dressing", + "pitted kalamata olives", + "provolone cheese", + "genoa salami", + "corkscrew pasta", + "grated parmesan cheese", + "red bell pepper" + ] + }, + { + "id": 12931, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "unsalted butter", + "salt", + "sugar", + "buttermilk", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 46949, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "worcestershire sauce", + "chicken", + "steak sauce", + "seasoning salt", + "sorghum syrup", + "tomato sauce", + "hot sauce", + "ketchup", + "lemon juice" + ] + }, + { + "id": 21789, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "pasta sauce", + "ricotta cheese", + "all-purpose flour", + "fresh basil", + "grated parmesan cheese", + "garlic", + "ground beef", + "chicken bouillon granules", + "manicotti shells", + "half & half", + "salt", + "fresh parsley", + "eggs", + "olive oil", + "butter", + "chopped onion" + ] + }, + { + "id": 4718, + "cuisine": "korean", + "ingredients": [ + "Gochujang base", + "medjool date", + "toasted sesame oil" + ] + }, + { + "id": 38667, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "garlic", + "coarse salt", + "jalapeno chilies", + "freshly ground pepper", + "white onion", + "tomatillos" + ] + }, + { + "id": 29989, + "cuisine": "french", + "ingredients": [ + "melted butter", + "all-purpose flour", + "whole milk", + "large eggs", + "buckwheat flour" + ] + }, + { + "id": 18086, + "cuisine": "japanese", + "ingredients": [ + "green cabbage", + "milk", + "sesame oil", + "all-purpose flour", + "panko breadcrumbs", + "ketchup", + "black sesame seeds", + "garlic", + "ground allspice", + "boneless chop pork", + "brown rice", + "rice vinegar", + "scallions", + "soy sauce", + "mirin", + "miso", + "ground mustard" + ] + }, + { + "id": 8802, + "cuisine": "chinese", + "ingredients": [ + "tofu", + "sugar", + "sweet soy sauce", + "garlic", + "black peppercorns", + "light soy sauce", + "shallots", + "corn starch", + "neutral oil", + "red chili peppers", + "green onions", + "firm tofu", + "dark soy sauce", + "fresh ginger", + "butter", + "cooked white rice" + ] + }, + { + "id": 17616, + "cuisine": "thai", + "ingredients": [ + "water", + "brown rice", + "garlic cloves", + "soy sauce", + "fresh ginger", + "Thai red curry paste", + "coconut milk", + "green bell pepper", + "lime juice", + "vegetable oil", + "kabocha squash", + "kosher salt", + "steamed white rice", + "yellow onion", + "chopped cilantro fresh" + ] + }, + { + "id": 37116, + "cuisine": "french", + "ingredients": [ + "mayonaise", + "fresh lemon juice", + "fresh basil", + "grated lemon peel", + "minced garlic" + ] + }, + { + "id": 47238, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "shallots", + "varnish clams", + "crab claws", + "dry white wine", + "Meyer lemon juice", + "fennel seeds", + "chopped fresh chives", + "fresh orange juice", + "mussels", + "coriander seeds", + "butter" + ] + }, + { + "id": 40869, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "egg whites", + "salt", + "pork butt", + "ketchup", + "apple cider vinegar", + "celery", + "soy sauce", + "green onions", + "corn starch", + "white sugar", + "pineapple chunks", + "water", + "vegetable oil", + "onions" + ] + }, + { + "id": 11077, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "boneless skinless chicken breasts", + "chili paste with garlic", + "noodles", + "dry roasted peanuts", + "red wine vinegar", + "oil", + "soy sauce", + "sesame oil", + "garlic", + "chicken broth", + "green onions", + "dry sherry", + "corn starch" + ] + }, + { + "id": 30056, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "garlic", + "oil", + "ground turmeric", + "garam masala", + "peas", + "salt", + "onions", + "tomatoes", + "poppy seeds", + "paneer", + "jeera", + "coriander powder", + "kasuri methi", + "cilantro leaves", + "cashew nuts" + ] + }, + { + "id": 22153, + "cuisine": "greek", + "ingredients": [ + "lean minced beef", + "greek yogurt", + "eggs", + "chopped tomatoes", + "eggplant", + "boiling potatoes", + "tomato purée", + "parmesan cheese" + ] + }, + { + "id": 35285, + "cuisine": "korean", + "ingredients": [ + "potato starch", + "rice syrup", + "vinegar", + "garlic", + "corn starch", + "soy sauce", + "peanuts", + "grapeseed oil", + "corn syrup", + "chicken wings", + "sesame seeds", + "vegetable oil", + "salt", + "dried red chile peppers", + "mustard sauce", + "ground black pepper", + "ginger", + "peanut oil" + ] + }, + { + "id": 29768, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "potatoes", + "coconut cream", + "cinnamon sticks", + "tumeric", + "purple onion", + "green beans", + "coconut oil", + "garlic", + "green chilies", + "fennel seeds", + "zucchini", + "salt", + "mustard seeds" + ] + }, + { + "id": 39052, + "cuisine": "irish", + "ingredients": [ + "sweetened coconut", + "cream cheese", + "butter", + "cinnamon", + "confectioners sugar", + "vanilla" + ] + }, + { + "id": 4556, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "green cabbage", + "minced onion", + "celery seed", + "ground black pepper", + "carrots", + "mayonaise", + "vinegar" + ] + }, + { + "id": 16621, + "cuisine": "japanese", + "ingredients": [ + "milk", + "clarified butter", + "sugar", + "pistachios", + "almonds", + "boiled eggs", + "carrots" + ] + }, + { + "id": 41759, + "cuisine": "cajun_creole", + "ingredients": [ + "butter-margarine blend", + "red pepper", + "onions", + "celery ribs", + "green onions", + "garlic cloves", + "olive oil", + "long-grain rice", + "broth", + "cajun spice mix", + "fresh thyme leaves", + "sausages" + ] + }, + { + "id": 32881, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "green onions", + "peanut oil", + "boiling water", + "sugar", + "radishes", + "boneless pork loin", + "garlic cloves", + "white hominy", + "salt", + "cumin seed", + "fat free less sodium chicken broth", + "lime slices", + "chopped onion", + "ancho chile pepper" + ] + }, + { + "id": 28012, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "leg quarters", + "chopped garlic", + "fat free less sodium chicken broth", + "chopped celery", + "carrots", + "cremini mushrooms", + "chopped fresh thyme", + "yellow onion", + "applewood smoked bacon", + "black-eyed peas", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 38695, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "green olives", + "red wine vinegar", + "lemon juice", + "feta cheese", + "oil", + "pepper", + "shell pasta", + "fresh basil leaves" + ] + }, + { + "id": 47724, + "cuisine": "jamaican", + "ingredients": [ + "cold water", + "fresh thyme", + "vegetable oil", + "tomato ketchup", + "sliced green onions", + "water", + "pastry dough", + "salt", + "ground allspice", + "minced garlic", + "large eggs", + "vegetable shortening", + "minced beef", + "diced onions", + "ground black pepper", + "hot pepper", + "all-purpose flour", + "ground turmeric" + ] + }, + { + "id": 11206, + "cuisine": "italian", + "ingredients": [ + "beef", + "carrots", + "tomatoes", + "extra-virgin olive oil", + "unsweetened cocoa powder", + "celery ribs", + "red wine", + "onions", + "black pepper", + "salt" + ] + }, + { + "id": 41185, + "cuisine": "french", + "ingredients": [ + "olive oil", + "fresh thyme leaves", + "garlic cloves", + "baby portobello mushrooms", + "fresh shiitake mushrooms", + "port", + "thyme sprigs", + "pepper", + "shallots", + "salt", + "polenta", + "chicken broth", + "parmesan cheese", + "butter", + "flat leaf parsley" + ] + }, + { + "id": 11366, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "parsley", + "garlic cloves", + "tomatoes", + "flour", + "butter", + "onions", + "green bell pepper", + "mushrooms", + "salt", + "pepper", + "pimentos", + "calf liver" + ] + }, + { + "id": 24598, + "cuisine": "french", + "ingredients": [ + "pancetta", + "kosher salt", + "parmigiano reggiano cheese", + "large garlic cloves", + "bay leaf", + "cabbage", + "yellow summer squash", + "fennel bulb", + "cannellini beans", + "salt", + "fresh basil leaves", + "turnips", + "baby lima beans", + "fresh thyme", + "baby spinach", + "carrots", + "boiling potatoes", + "haricots verts", + "water", + "grated parmesan cheese", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 48310, + "cuisine": "italian", + "ingredients": [ + "egg substitute", + "salt", + "low-fat sour cream", + "vanilla extract", + "corn starch", + "brown sugar", + "fat free milk", + "strawberries", + "marsala wine", + "plums", + "nectarines" + ] + }, + { + "id": 39795, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "refried beans", + "enchilada sauce", + "shredded cheese", + "flour tortillas" + ] + }, + { + "id": 35550, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "all purpose unbleached flour", + "smoked paprika", + "chicken", + "soy sauce", + "mushrooms", + "cayenne pepper", + "celery", + "green bell pepper", + "ground black pepper", + "garlic", + "ground white pepper", + "dried basil", + "green onions", + "sausages", + "onions" + ] + }, + { + "id": 17056, + "cuisine": "chinese", + "ingredients": [ + "sweetened condensed milk", + "white rice", + "milk", + "chopped walnuts" + ] + }, + { + "id": 33362, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "fennel bulb", + "lemon", + "yellow onion", + "cumin", + "olive oil", + "sweet potatoes", + "garlic", + "carrots", + "fresh cilantro", + "radishes", + "vegetable broth", + "brown lentils", + "cayenne", + "cinnamon", + "salt", + "coriander" + ] + }, + { + "id": 9050, + "cuisine": "french", + "ingredients": [ + "cinnamon", + "tart apples", + "large eggs", + "apple juice", + "unsalted butter", + "all-purpose flour", + "low-fat milk", + "sugar", + "salt", + "vanilla yogurt" + ] + }, + { + "id": 15194, + "cuisine": "italian", + "ingredients": [ + "butter", + "amaretto", + "powdered sugar" + ] + }, + { + "id": 11762, + "cuisine": "british", + "ingredients": [ + "fresh oregano leaves", + "unsalted butter", + "lean ground beef", + "cauliflower florets", + "carrots", + "chopped tomatoes", + "leeks", + "worcestershire sauce", + "grated nutmeg", + "cherry tomatoes", + "celery heart", + "red wine", + "extra-virgin olive oil", + "onions", + "tomato paste", + "ground black pepper", + "fresh thyme leaves", + "sea salt", + "scallions" + ] + }, + { + "id": 30214, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "diced green chilies", + "chopped cilantro", + "chili pepper", + "grating cheese", + "ground cumin", + "black beans", + "jalapeno chilies", + "onions", + "olive oil", + "tomatoes with juice" + ] + }, + { + "id": 28760, + "cuisine": "mexican", + "ingredients": [ + "cracked black pepper", + "shrimp", + "olive oil", + "salt", + "fresh lime juice", + "purple onion", + "cucumber", + "jalapeno chilies", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 30206, + "cuisine": "indian", + "ingredients": [ + "idli", + "oil", + "curry leaves", + "salt", + "onions", + "urad dal", + "mustard seeds", + "grated coconut", + "green chilies" + ] + }, + { + "id": 36652, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "salt", + "melted butter", + "butter", + "all-purpose flour", + "baking powder", + "shredded pepper jack cheese", + "baking soda", + "buttermilk", + "cayenne pepper" + ] + }, + { + "id": 18745, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "vanilla extract", + "pecans", + "all-purpose flour", + "brown sugar", + "pie shell", + "butter", + "corn syrup" + ] + }, + { + "id": 30196, + "cuisine": "jamaican", + "ingredients": [ + "chicken broth", + "minced garlic", + "ginger", + "smoked paprika", + "canola oil", + "stew", + "white pepper", + "green onions", + "sauce", + "chicken thighs", + "brown sugar", + "dried thyme", + "salt", + "chicken-flavored soup powder", + "chicken", + "ketchup", + "bell pepper", + "hot sauce", + "onions" + ] + }, + { + "id": 740, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "red bell pepper", + "fresh basil", + "extra-virgin olive oil", + "japanese eggplants", + "large garlic cloves", + "chopped fresh mint", + "water", + "crushed red pepper" + ] + }, + { + "id": 43187, + "cuisine": "french", + "ingredients": [ + "olive oil", + "leeks", + "garlic cloves", + "low sodium chicken broth", + "shallots", + "unsalted butter", + "dry white wine", + "thick-cut bacon", + "kosher salt", + "chopped fresh chives", + "freshly ground pepper" + ] + }, + { + "id": 12306, + "cuisine": "chinese", + "ingredients": [ + "pork", + "sesame oil", + "rice vinegar", + "corn starch", + "eggs", + "cider vinegar", + "ginger", + "firm tofu", + "bamboo shoots", + "chicken broth", + "soy sauce", + "button mushrooms", + "sauce", + "Thai chili garlic sauce", + "brown sugar", + "water", + "garlic", + "scallions" + ] + }, + { + "id": 5533, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "chopped green bell pepper", + "crushed red pepper", + "low salt chicken broth", + "kidney beans", + "mushrooms", + "garlic cloves", + "fresh parsley", + "olive oil", + "zucchini", + "chopped onion", + "thyme sprigs", + "part-skim mozzarella cheese", + "diced tomatoes", + "green beans", + "italian seasoning" + ] + }, + { + "id": 3640, + "cuisine": "thai", + "ingredients": [ + "coconut sugar", + "Thai red curry paste", + "coconut milk", + "lime juice", + "peanut butter", + "Thai chili paste", + "salt", + "peanuts", + "oil" + ] + }, + { + "id": 6462, + "cuisine": "vietnamese", + "ingredients": [ + "boneless chicken skinless thigh", + "shallots", + "garlic cloves", + "unsalted chicken stock", + "peeled fresh ginger", + "dark brown sugar", + "canola oil", + "fish sauce", + "green onions", + "freshly ground pepper", + "kosher salt", + "crushed red pepper", + "fresh lime juice" + ] + }, + { + "id": 37817, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "sesame oil", + "dipping sauces", + "cream cheese", + "cremini mushrooms", + "asparagus", + "crushed red pepper flakes", + "salt", + "salted seaweed", + "roasted sesame seeds", + "wonton wrappers", + "garlic", + "scallions", + "soy sauce", + "egg yolks", + "peas", + "yellow onion", + "carrots" + ] + }, + { + "id": 35235, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "dried rosemary", + "pork chops", + "garlic", + "butter", + "ground black pepper", + "salt" + ] + }, + { + "id": 11961, + "cuisine": "italian", + "ingredients": [ + "pizza sauce", + "pizza crust", + "oil", + "fresh basil", + "goat cheese", + "olive oil", + "onions" + ] + }, + { + "id": 6466, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "pancetta", + "red pepper flakes", + "broccoli rabe", + "salt", + "pinenuts", + "linguine" + ] + }, + { + "id": 18010, + "cuisine": "chinese", + "ingredients": [ + "tomato purée", + "red wine vinegar", + "soy sauce", + "cornflour", + "water", + "sugar", + "pineapple" + ] + }, + { + "id": 24601, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "black mustard seeds", + "ground cumin", + "kosher salt", + "chickpeas", + "onions", + "tumeric", + "vegetable broth", + "cooked quinoa", + "broccolini", + "cumin seed", + "serrano chile" + ] + }, + { + "id": 46876, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "freshly ground pepper", + "garlic powder", + "dried parsley", + "green chile", + "salt", + "ground cumin", + "crushed tomatoes", + "onions" + ] + }, + { + "id": 39932, + "cuisine": "italian", + "ingredients": [ + "pasta", + "pepper", + "italian plum tomatoes", + "flat leaf parsley", + "sausage casings", + "kidney beans", + "cayenne pepper", + "onions", + "tomato paste", + "dried thyme", + "salt", + "ground beef", + "fontina", + "grated parmesan cheese", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 28120, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "cumin seed", + "baby potatoes", + "red chili powder", + "salt", + "cashew nuts", + "tomato purée", + "coriander powder", + "oil", + "tumeric", + "curds", + "methi" + ] + }, + { + "id": 32442, + "cuisine": "southern_us", + "ingredients": [ + "toasted pecans", + "toasted baguette", + "chopped fresh thyme", + "honey", + "goat cheese", + "figs", + "cooked bacon" + ] + }, + { + "id": 11330, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "Anaheim chile", + "sauce", + "green bell pepper", + "thai basil", + "thai chile", + "dark soy sauce", + "ground chicken", + "vegetable oil", + "plum tomatoes", + "sugar", + "rice noodles", + "garlic cloves" + ] + }, + { + "id": 2628, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "wonton wrappers", + "salsa", + "reduced fat shredded cheese", + "olive oil", + "garlic", + "ground turkey", + "lime", + "cilantro", + "red bell pepper", + "light sour cream", + "plain low fat greek yogurt", + "purple onion", + "ground cumin" + ] + }, + { + "id": 10001, + "cuisine": "korean", + "ingredients": [ + "white pepper", + "green onions", + "garlic", + "corn starch", + "reduced sodium soy sauce", + "sesame oil", + "rice vinegar", + "sesame seeds", + "onion powder", + "boneless beef chuck roast", + "brown sugar", + "Sriracha", + "ginger", + "beef broth" + ] + }, + { + "id": 10590, + "cuisine": "chinese", + "ingredients": [ + "chinese ham", + "soy sauce", + "Shaoxing wine", + "ginger", + "all-purpose flour", + "boiling water", + "red vinegar", + "water", + "sesame oil", + "garlic", + "scallions", + "chicken wings", + "pork belly", + "green onions", + "dipping sauces", + "crabmeat", + "dumpling dough", + "sugar", + "gelatin", + "ground pork", + "salt", + "ground white pepper" + ] + }, + { + "id": 20027, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "heavy cream", + "rigatoni", + "sausage casings", + "finely chopped onion", + "fresh parsley leaves", + "chicken broth", + "fennel bulb", + "garlic", + "olive oil", + "dry white wine", + "red bell pepper" + ] + }, + { + "id": 10923, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "fresh thyme", + "onions", + "biscuits", + "olive oil", + "butternut squash", + "kosher salt", + "cannellini beans", + "spinach", + "parmesan cheese", + "diced tomatoes" + ] + }, + { + "id": 8320, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "large garlic cloves", + "hothouse cucumber", + "olive oil", + "feta cheese crumbles", + "spinach leaves", + "fresh lemon juice", + "brine-cured olives", + "pita bread rounds", + "fresh basil leaves" + ] + }, + { + "id": 46956, + "cuisine": "brazilian", + "ingredients": [ + "butter", + "chocolate sprinkles", + "bows", + "cocoa powder", + "sweetened condensed milk" + ] + }, + { + "id": 3467, + "cuisine": "italian", + "ingredients": [ + "leeks", + "flat leaf parsley", + "olive oil", + "garlic cloves", + "fresh tarragon", + "grated lemon peel", + "asparagus", + "low salt chicken broth" + ] + }, + { + "id": 22781, + "cuisine": "mexican", + "ingredients": [ + "canned chicken broth", + "rotisserie chicken", + "salsa", + "vegetable oil", + "white hominy", + "onions" + ] + }, + { + "id": 33916, + "cuisine": "italian", + "ingredients": [ + "egg yolks", + "forest fruit", + "lemon", + "superfine sugar", + "Grand Marnier" + ] + }, + { + "id": 4927, + "cuisine": "japanese", + "ingredients": [ + "firmly packed light brown sugar", + "vegetable oil", + "fresh ginger", + "kabocha squash", + "soy sauce", + "rice vinegar", + "sake", + "white miso", + "toasted sesame oil" + ] + }, + { + "id": 29872, + "cuisine": "jamaican", + "ingredients": [ + "clove", + "garlic powder", + "sea salt", + "ground allspice", + "lime", + "ground black pepper", + "cilantro leaves", + "ground cinnamon", + "ground nutmeg", + "salt", + "cumin seed", + "dried thyme", + "red pepper flakes", + "cane sugar" + ] + }, + { + "id": 8886, + "cuisine": "mexican", + "ingredients": [ + "cauliflower", + "onions", + "bell pepper", + "poblano peppers", + "chorizo sausage", + "mushrooms" + ] + }, + { + "id": 25980, + "cuisine": "greek", + "ingredients": [ + "honey", + "lemon", + "orange juice", + "greek yogurt", + "kosher salt", + "apple cider vinegar", + "fresh oregano", + "cucumber", + "fresh dill", + "boneless skinless chicken breasts", + "garlic", + "carrots", + "pita bread", + "ground black pepper", + "raisins", + "juice", + "canola oil" + ] + }, + { + "id": 2796, + "cuisine": "russian", + "ingredients": [ + "salmon fillets", + "butter", + "shiitake", + "puff pastry", + "water", + "long grain white rice", + "eggs", + "leeks" + ] + }, + { + "id": 41390, + "cuisine": "french", + "ingredients": [ + "sugar", + "all-purpose flour", + "ice water", + "salt", + "unsalted butter" + ] + }, + { + "id": 11568, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "egg noodles", + "scallions", + "soy sauce", + "large eggs", + "chicken broth", + "medium dry sherry", + "garlic cloves", + "fresh ginger", + "sesame oil" + ] + }, + { + "id": 44915, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "dried shiitake mushrooms", + "bamboo shoots", + "sugar", + "peeled fresh ginger", + "pork butt", + "cold water", + "Shaoxing wine", + "low salt chicken broth", + "shanghai noodles", + "peanut oil", + "cabbage" + ] + }, + { + "id": 14518, + "cuisine": "chinese", + "ingredients": [ + "mushrooms", + "corn starch", + "soy sauce", + "dry sherry", + "iceberg lettuce", + "chili flakes", + "rice noodles", + "salad oil", + "water chestnuts", + "lean beef", + "sliced green onions" + ] + }, + { + "id": 43706, + "cuisine": "french", + "ingredients": [ + "vegetables", + "cayenne pepper", + "red wine vinegar", + "mayonaise", + "garlic", + "roasted red peppers" + ] + }, + { + "id": 31812, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "sour cream", + "shredded Monterey Jack cheese", + "salsa", + "ground beef", + "taco seasoning mix", + "corn tortillas", + "chopped onion", + "iceberg lettuce" + ] + }, + { + "id": 16843, + "cuisine": "italian", + "ingredients": [ + "salt", + "large shrimp", + "marinara sauce", + "flat leaf parsley", + "garlic cloves", + "extra-virgin olive oil", + "fresh basil leaves" + ] + }, + { + "id": 10803, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "marsala wine", + "bacon", + "fresh mushrooms", + "cold water", + "butter", + "all-purpose flour", + "garlic powder", + "chicken meat", + "corn starch" + ] + }, + { + "id": 18573, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "oil", + "sugar", + "mirin", + "carrots", + "sake", + "sesame seeds", + "gobo root", + "soy sauce", + "hot pepper" + ] + }, + { + "id": 956, + "cuisine": "italian", + "ingredients": [ + "salted butter", + "fresh parsley", + "parmesan cheese", + "garlic paste" + ] + }, + { + "id": 41945, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "butter", + "onions", + "soy sauce", + "french bread", + "beef broth", + "garlic powder", + "shredded swiss cheese", + "creole style seasoning", + "pasta sauce", + "grated parmesan cheese", + "all-purpose flour" + ] + }, + { + "id": 14247, + "cuisine": "italian", + "ingredients": [ + "cider vinegar", + "garlic cloves", + "grana padano", + "tomato paste", + "dry white wine", + "pork butt roast", + "celery ribs", + "cannellini beans", + "onions", + "orecchiette", + "reduced sodium chicken broth", + "extra-virgin olive oil", + "dried oregano" + ] + }, + { + "id": 11991, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "unsalted butter", + "basmati rice" + ] + }, + { + "id": 207, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "self rising flour", + "canola oil", + "milk", + "strawberries", + "sugar", + "vanilla extract", + "eggs", + "jello", + "softened butter" + ] + }, + { + "id": 43405, + "cuisine": "indian", + "ingredients": [ + "diced onions", + "half & half", + "salt", + "serrano chile", + "spinach", + "yoghurt", + "garlic cloves", + "chiles", + "ginger", + "ghee", + "nutmeg", + "soft tofu", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 22905, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "cinnamon", + "canola oil", + "yellow corn meal", + "half & half", + "salt", + "honey", + "butter", + "eggs", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 45912, + "cuisine": "french", + "ingredients": [ + "russet potatoes", + "cucumber", + "chopped fresh chives", + "vegetable broth", + "radishes", + "butter", + "leeks", + "whipping cream" + ] + }, + { + "id": 5633, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "onions", + "vegetable oil", + "celery", + "water", + "peeled shrimp", + "fresh parsley", + "chopped green bell pepper", + "all-purpose flour" + ] + }, + { + "id": 6569, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "eggplant", + "shredded mozzarella cheese", + "crushed tomatoes", + "grated parmesan cheese", + "minced garlic", + "large egg yolks", + "panko breadcrumbs", + "olive oil", + "ricotta cheese" + ] + }, + { + "id": 23846, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "bread ciabatta", + "garlic cloves", + "ground black pepper", + "fresh parmesan cheese" + ] + }, + { + "id": 5180, + "cuisine": "spanish", + "ingredients": [ + "large egg yolks", + "lemon juice", + "large garlic cloves", + "large eggs", + "canola oil", + "kosher salt", + "extra-virgin olive oil" + ] + }, + { + "id": 4463, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "large garlic cloves", + "ground coriander", + "chopped cilantro fresh", + "ground cumin", + "peeled fresh ginger", + "purple onion", + "fresh lemon juice", + "ground turmeric", + "tomatoes", + "ground red pepper", + "salt", + "greek yogurt", + "canola oil", + "garam masala", + "paprika", + "garlic cloves", + "basmati rice" + ] + }, + { + "id": 38148, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "egg yolks", + "pears", + "almonds", + "custard", + "sugar", + "butter", + "puff pastry sheets", + "flour", + "cocoa powder" + ] + }, + { + "id": 9295, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "garlic cloves", + "fresh mint", + "fish sauce", + "rice vermicelli", + "shrimp", + "lettuce leaves", + "carrots", + "rice paper", + "sugar", + "rice vinegar", + "beansprouts" + ] + }, + { + "id": 24458, + "cuisine": "italian", + "ingredients": [ + "sugar", + "golden brown sugar", + "all-purpose flour", + "fennel seeds", + "ground cloves", + "large eggs", + "cinnamon sticks", + "vanilla ice cream", + "water", + "salt", + "marsala wine", + "unsalted butter", + "calimyrna figs" + ] + }, + { + "id": 462, + "cuisine": "southern_us", + "ingredients": [ + "tea leaves", + "lemon", + "tea bags", + "ice cubes", + "mint sprigs", + "granulated sugar" + ] + }, + { + "id": 35199, + "cuisine": "southern_us", + "ingredients": [ + "sweet tea", + "vodka", + "fresh mint" + ] + }, + { + "id": 151, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "red wine", + "sugar", + "large egg yolks", + "armagnac", + "fennel seeds", + "milk", + "salt", + "prunes", + "large egg whites", + "all-purpose flour" + ] + }, + { + "id": 39481, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "apple cider vinegar", + "corn starch", + "green bell pepper", + "garlic powder", + "yellow onion", + "cold water", + "ketchup", + "onion salt", + "red bell pepper", + "sugar", + "boneless skinless chicken breasts", + "oil" + ] + }, + { + "id": 31084, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "mushrooms", + "non stick spray", + "fresh ginger", + "sesame oil", + "corn starch", + "minced garlic", + "green onions", + "carrots", + "green cabbage", + "egg roll wrappers", + "vegetable oil" + ] + }, + { + "id": 46820, + "cuisine": "british", + "ingredients": [ + "butter", + "mashed potatoes", + "onions", + "savoy cabbage", + "salt", + "pepper" + ] + }, + { + "id": 48508, + "cuisine": "chinese", + "ingredients": [ + "white onion", + "peas", + "boneless skinless chicken breasts", + "rice", + "light soy sauce", + "garlic", + "eggs", + "sesame oil" + ] + }, + { + "id": 21597, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "garlic", + "cheddar cheese", + "fat-free cottage cheese", + "low fat tortilla chip", + "light sour cream", + "bell pepper", + "onions", + "taco sauce", + "ground chicken breast" + ] + }, + { + "id": 7892, + "cuisine": "filipino", + "ingredients": [ + "water", + "yellow onion", + "whole peppercorn", + "potatoes", + "chuck", + "fish sauce", + "bananas", + "long green beans", + "baby bok choy", + "napa cabbage" + ] + }, + { + "id": 34984, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salt", + "pepper", + "white onion", + "garlic cloves", + "tomatillos" + ] + }, + { + "id": 44511, + "cuisine": "thai", + "ingredients": [ + "green cabbage", + "cherry tomatoes", + "garlic", + "dried shrimp", + "lime", + "tamarind juice", + "carrots", + "long beans", + "palm sugar", + "english cucumber", + "green papaya", + "unsalted roasted peanuts", + "thai chile", + "Thai fish sauce" + ] + }, + { + "id": 13116, + "cuisine": "jamaican", + "ingredients": [ + "finely chopped onion", + "scallions", + "dumpling wrappers", + "dry bread crumbs", + "curry powder", + "vegetable oil", + "ground beef", + "dried thyme", + "hot sauce" + ] + }, + { + "id": 29032, + "cuisine": "italian", + "ingredients": [ + "dried currants", + "rosemary", + "unsalted butter", + "garlic cloves", + "pork shoulder boston butt", + "black peppercorns", + "crushed tomatoes", + "ground nutmeg", + "freshly ground pepper", + "hot water", + "oregano", + "ground cloves", + "kale", + "grated parmesan cheese", + "cavatelli", + "bay leaf", + "celery ribs", + "kosher salt", + "olive oil", + "dry red wine", + "carrots", + "onions" + ] + }, + { + "id": 20496, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "sweet potatoes", + "salt", + "baking soda", + "butter", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 25405, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "feta cheese crumbles", + "pizza crust", + "kalamata", + "pizza sauce", + "plum tomatoes", + "mozzarella cheese", + "purple onion" + ] + }, + { + "id": 36487, + "cuisine": "indian", + "ingredients": [ + "clove", + "spinach", + "butter", + "cumin seed", + "onions", + "tomatoes", + "potatoes", + "salt", + "asafoetida powder", + "plain flour", + "garam masala", + "ginger", + "lemon juice", + "ground turmeric", + "ground cinnamon", + "chili powder", + "green chilies", + "ghee" + ] + }, + { + "id": 38674, + "cuisine": "mexican", + "ingredients": [ + "baking soda", + "chicken", + "corn husks", + "masa harina", + "chicken stock", + "salt", + "salsa verde", + "lard" + ] + }, + { + "id": 9732, + "cuisine": "greek", + "ingredients": [ + "sugar", + "olive oil", + "large eggs", + "garlic cloves", + "clove", + "crushed tomatoes", + "feta cheese", + "salt", + "dried oregano", + "black pepper", + "eggplant", + "cinnamon", + "onions", + "penne", + "milk", + "unsalted butter", + "all-purpose flour", + "ground lamb" + ] + }, + { + "id": 33823, + "cuisine": "chinese", + "ingredients": [ + "mandarin orange segments", + "unflavored gelatin", + "white sugar", + "almond extract", + "milk", + "boiling water" + ] + }, + { + "id": 49267, + "cuisine": "irish", + "ingredients": [ + "sugar", + "parsley", + "cilantro", + "garlic cloves", + "chicken stock", + "potatoes", + "bacon", + "salt", + "celery", + "stewing beef", + "worcestershire sauce", + "extra-virgin olive oil", + "carrots", + "parsnips", + "breakfast sausages", + "basil", + "pearl barley", + "onions" + ] + }, + { + "id": 33891, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "whipping cream", + "eggs", + "semisweet chocolate", + "ground cinnamon", + "sliced almonds", + "orange peel", + "grated orange peel", + "half & half" + ] + }, + { + "id": 42789, + "cuisine": "thai", + "ingredients": [ + "shiitake", + "button mushrooms", + "fresh lime juice", + "kaffir lime leaves", + "extra firm tofu", + "vegetable broth", + "ground turmeric", + "rice stick noodles", + "lemon grass", + "Thai red curry paste", + "galangal", + "brown sugar", + "crushed red pepper flakes", + "coconut milk" + ] + }, + { + "id": 3609, + "cuisine": "italian", + "ingredients": [ + "all purpose unbleached flour", + "active dry yeast", + "warm water", + "salt", + "olive oil" + ] + }, + { + "id": 35382, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic powder", + "salt", + "fried rice", + "minced garlic", + "boneless skinless chicken breasts", + "oil", + "pepper", + "hoisin sauce", + "rice vinegar", + "sugar", + "water", + "crushed red pepper flakes", + "corn starch" + ] + }, + { + "id": 31817, + "cuisine": "spanish", + "ingredients": [ + "unsalted butter", + "baguette", + "fig jam", + "extra-virgin olive oil", + "manchego cheese", + "serrano ham" + ] + }, + { + "id": 9217, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "ground beef", + "garlic", + "white sugar", + "tomato purée", + "onions", + "salt", + "italian seasoning" + ] + }, + { + "id": 49245, + "cuisine": "greek", + "ingredients": [ + "golden raisins", + "garlic cloves", + "dried oregano", + "fat free less sodium chicken broth", + "lemon slices", + "feta cheese crumbles", + "capers", + "chicken breast halves", + "lemon juice", + "olive oil", + "all-purpose flour", + "onions" + ] + }, + { + "id": 17322, + "cuisine": "moroccan", + "ingredients": [ + "cooking oil", + "lamb shoulder", + "couscous", + "fresh ginger", + "diced tomatoes", + "garlic cloves", + "ground turmeric", + "fresh coriander", + "sweet potatoes", + "purple onion", + "fresh dates", + "zucchini", + "paprika", + "cinnamon sticks" + ] + }, + { + "id": 15035, + "cuisine": "cajun_creole", + "ingredients": [ + "light alfredo sauce", + "dried thyme", + "grated parmesan cheese", + "frozen green beans", + "green chilies", + "dried oregano", + "water", + "garlic powder", + "parsley", + "garlic", + "red bell pepper", + "black pepper", + "olive oil", + "onion powder", + "crushed red pepper flakes", + "shrimp", + "low-fat milk", + "whole wheat pasta", + "seasoning salt", + "zucchini", + "cajun seasoning", + "cayenne pepper", + "onions" + ] + }, + { + "id": 17898, + "cuisine": "mexican", + "ingredients": [ + "nutritional yeast", + "salsa", + "boneless skinless chicken breasts", + "garlic powder", + "corn tortillas", + "olive oil", + "onion powder" + ] + }, + { + "id": 454, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "large eggs", + "salt", + "chutney", + "tumeric", + "low-fat greek yogurt", + "cinnamon", + "cumin seed", + "serrano chile", + "fennel seeds", + "coriander seeds", + "vegetable oil", + "chopped onion", + "fresh mint", + "pepper", + "cayenne", + "cilantro", + "lemon juice", + "ground lamb" + ] + }, + { + "id": 14817, + "cuisine": "russian", + "ingredients": [ + "ground black pepper", + "butter", + "salt", + "carrots", + "water", + "shredded cabbage", + "canned tomatoes", + "beets", + "potatoes", + "diced tomatoes", + "dried dillweed", + "chopped green bell pepper", + "heavy cream", + "chopped onion", + "celery" + ] + }, + { + "id": 37091, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "ginger", + "lemon juice", + "tumeric", + "paprika", + "purple onion", + "cumin", + "cayenne", + "garlic", + "chopped cilantro", + "plain yogurt", + "cilantro", + "salt", + "chicken" + ] + }, + { + "id": 16188, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "yoghurt", + "salt", + "red chili powder", + "kasuri methi", + "masala", + "pepper", + "garlic", + "chicken legs", + "lemon", + "meat tenderizer" + ] + }, + { + "id": 14818, + "cuisine": "russian", + "ingredients": [ + "black pepper", + "fresh thyme leaves", + "flat leaf parsley", + "unsalted butter", + "walnuts", + "olive oil", + "salt", + "onions", + "kasha", + "large eggs", + "hot water" + ] + }, + { + "id": 31055, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "fresh oregano", + "capers", + "extra-virgin olive oil", + "coarse salt", + "garlic cloves", + "water", + "crushed red pepper" + ] + }, + { + "id": 19186, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "shredded sharp cheddar cheese", + "fresh lemon juice", + "chopped cilantro fresh", + "olive oil", + "tortilla chips", + "ground beef", + "black beans", + "frozen corn", + "sour cream", + "dried oregano", + "tomato sauce", + "chili powder", + "garlic cloves", + "onions" + ] + }, + { + "id": 1511, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "bittersweet chocolate", + "sugar", + "almond extract", + "unsalted pistachios", + "fresh lemon juice", + "whole milk" + ] + }, + { + "id": 31935, + "cuisine": "french", + "ingredients": [ + "pepper", + "salt", + "nutmeg", + "Emmenthal", + "ham", + "milk", + "all-purpose flour", + "eggs", + "unsalted butter", + "onions" + ] + }, + { + "id": 1899, + "cuisine": "chinese", + "ingredients": [ + "spring onions", + "dried rice noodles", + "capsicum", + "onions", + "dark soy sauce", + "rice wine", + "olive oil spray", + "cooked chicken", + "beansprouts" + ] + }, + { + "id": 46209, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "lemon juice", + "sauvignon blanc", + "sugar", + "tart" + ] + }, + { + "id": 11285, + "cuisine": "mexican", + "ingredients": [ + "pork stew meat", + "salt", + "tomatoes", + "tomatillos", + "chile pepper", + "pepper", + "garlic" + ] + }, + { + "id": 18099, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "szechwan peppercorns", + "peanut oil", + "long green chilies", + "garlic", + "dried chile", + "Shaoxing wine", + "boneless chicken", + "corn starch", + "soy sauce", + "green onions", + "salt", + "white sugar" + ] + }, + { + "id": 26753, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "spring onions", + "garlic", + "dark soy sauce", + "hoisin sauce", + "apple cider", + "ginger root", + "pork ribs", + "vegetable oil", + "tomato ketchup", + "light soy sauce", + "vinegar", + "cornflour" + ] + }, + { + "id": 23640, + "cuisine": "french", + "ingredients": [ + "sugar", + "whole milk", + "all-purpose flour", + "prunes", + "unsalted butter", + "vanilla extract", + "water", + "raisins", + "armagnac", + "powdered sugar", + "large eggs", + "salt" + ] + }, + { + "id": 37282, + "cuisine": "french", + "ingredients": [ + "parmigiano reggiano cheese", + "ground black pepper", + "fine sea salt", + "extra-virgin olive oil", + "unsalted butter", + "asparagus spears" + ] + }, + { + "id": 14266, + "cuisine": "filipino", + "ingredients": [ + "kalamansi juice", + "onions", + "water", + "round steaks", + "cooking oil", + "freshly ground pepper", + "dark soy sauce", + "garlic" + ] + }, + { + "id": 49217, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "chicken breasts", + "cilantro leaves", + "sugar", + "thai basil", + "vegetable oil", + "curry paste", + "wide rice noodles", + "lime", + "shallots", + "coconut milk", + "minced garlic", + "reduced sodium soy sauce", + "vietnamese fish sauce", + "sliced green onions" + ] + }, + { + "id": 36301, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "cheese", + "lime", + "ground cumin", + "corn", + "salt", + "chili powder" + ] + }, + { + "id": 31041, + "cuisine": "brazilian", + "ingredients": [ + "cod fillets", + "salt", + "yellow onion", + "clam juice", + "dry bread crumbs", + "large eggs", + "cilantro leaves", + "bay leaf", + "russet potatoes", + "hot sauce" + ] + }, + { + "id": 26906, + "cuisine": "spanish", + "ingredients": [ + "chorizo", + "extra-virgin olive oil", + "freshly ground pepper", + "brioche", + "beefsteak tomatoes", + "salt", + "flat leaf parsley", + "white onion", + "dry white wine", + "hot smoked paprika", + "chicken stock", + "large eggs", + "garlic", + "thyme" + ] + }, + { + "id": 32403, + "cuisine": "filipino", + "ingredients": [ + "finely chopped onion", + "carrots", + "ground pork", + "lumpia wrappers", + "ground beef", + "chopped green bell pepper", + "oil" + ] + }, + { + "id": 26062, + "cuisine": "french", + "ingredients": [ + "ground pepper", + "duck drumsticks", + "boned duck breast halves", + "chopped parsley", + "sugar", + "fresh thyme leaves", + "bread crumbs", + "salt" + ] + }, + { + "id": 37489, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "all-purpose flour", + "baking powder", + "masa harina", + "corn kernels", + "safflower", + "cotija", + "coarse salt" + ] + }, + { + "id": 30088, + "cuisine": "italian", + "ingredients": [ + "jalapeno chilies", + "mozzarella cheese", + "meat", + "vegetables", + "pizza doughs", + "pizza sauce" + ] + }, + { + "id": 2619, + "cuisine": "russian", + "ingredients": [ + "mayonaise", + "beets", + "potatoes", + "eggs", + "salt", + "pepper" + ] + }, + { + "id": 627, + "cuisine": "irish", + "ingredients": [ + "hungarian sweet paprika", + "olive oil", + "garlic", + "sugar pumpkin", + "ground black pepper", + "onions", + "milk", + "leeks", + "chicken stock", + "ground nutmeg", + "cayenne pepper" + ] + }, + { + "id": 35717, + "cuisine": "mexican", + "ingredients": [ + "canned black beans", + "cucumber", + "fresh orange juice", + "chopped cilantro fresh", + "salt", + "mango", + "jalapeno chilies", + "fresh lime juice" + ] + }, + { + "id": 19376, + "cuisine": "italian", + "ingredients": [ + "pepper", + "grating cheese", + "fettucine", + "flour", + "ground nutmeg", + "fresh parsley", + "25% less sodium chicken broth", + "Philadelphia Light Cream Cheese" + ] + }, + { + "id": 36945, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "green onions", + "garlic cloves", + "olive oil", + "chopped onion", + "small red beans", + "bay leaves", + "long-grain rice", + "water", + "cajun seasoning", + "smoked turkey sausage" + ] + }, + { + "id": 40953, + "cuisine": "indian", + "ingredients": [ + "serrano peppers", + "cilantro leaves", + "vegetable oil", + "cooked white rice", + "chili powder", + "black mustard seeds", + "kosher salt", + "garlic", + "ground turmeric" + ] + }, + { + "id": 47893, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "garlic", + "baby back ribs", + "soy sauce", + "ground black pepper", + "rice vinegar", + "brown sugar", + "sesame seeds", + "salt", + "onions", + "honey", + "green onions", + "dark sesame oil" + ] + }, + { + "id": 12405, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "caster sugar", + "unsalted butter", + "bourbon whiskey", + "creamy peanut butter", + "streaky bacon", + "honey", + "large eggs", + "vanilla extract", + "liquid", + "plain flour", + "brown sugar", + "bananas", + "baking powder", + "salt", + "bicarbonate of soda", + "large egg whites", + "candied bacon", + "buttermilk", + "roasted peanuts" + ] + }, + { + "id": 6644, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "rice vinegar", + "tomato salsa", + "olive oil", + "salt", + "chicken breast halves" + ] + }, + { + "id": 30118, + "cuisine": "chinese", + "ingredients": [ + "light pancake syrup", + "sesame oil", + "long-grain rice", + "orange marmalade", + "crushed red pepper", + "hoisin sauce", + "mandarin oranges", + "snow peas", + "vegetable oil cooking spray", + "flank steak", + "salt" + ] + }, + { + "id": 8182, + "cuisine": "italian", + "ingredients": [ + "eggs", + "salt", + "ricotta cheese", + "orange zest", + "sugar", + "all-purpose flour", + "vanilla extract" + ] + }, + { + "id": 32658, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "water", + "serrano peppers", + "chili powder", + "cayenne pepper", + "black beans", + "lime", + "guacamole", + "purple onion", + "greek yogurt", + "cooked brown rice", + "fresh cilantro", + "sweet corn kernels", + "large garlic cloves", + "shredded cheese", + "grape tomatoes", + "pepper", + "olive oil", + "chicken breasts", + "salt", + "cumin" + ] + }, + { + "id": 765, + "cuisine": "filipino", + "ingredients": [ + "active dry yeast", + "fine sea salt", + "pure vanilla extract", + "coconut meat", + "coconut milk", + "light brown sugar", + "banana leaves", + "large eggs", + "rice flour" + ] + }, + { + "id": 36528, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "water", + "ground black pepper", + "dry mustard", + "garlic cloves", + "kosher salt", + "olive oil", + "dark rum", + "ground allspice", + "ketchup", + "dried thyme", + "boneless chicken breast", + "malt vinegar", + "pepper", + "ground nutmeg", + "habanero", + "scallions" + ] + }, + { + "id": 20610, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "buttermilk", + "baking powder", + "large eggs", + "salt", + "yellow corn meal", + "vegetable oil" + ] + }, + { + "id": 35789, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "warm water", + "olive oil", + "vegetable oil cooking spray", + "honey", + "kosher salt", + "all-purpose flour" + ] + }, + { + "id": 10858, + "cuisine": "chinese", + "ingredients": [ + "powdered sugar", + "soy sauce", + "flour", + "char", + "corn flour", + "shortening", + "dry yeast", + "baking powder", + "oyster sauce", + "cold water", + "sugar", + "cooking oil", + "sesame oil", + "lemon juice", + "food colouring", + "water", + "starch", + "salt", + "onions" + ] + }, + { + "id": 1434, + "cuisine": "japanese", + "ingredients": [ + "milk", + "butter", + "egg yolks", + "corn starch", + "sugar", + "cake", + "egg whites", + "cream cheese" + ] + }, + { + "id": 13786, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "diced tomatoes", + "italian-style meatballs", + "dried basil", + "spaghetti", + "tomato paste", + "red pepper", + "dried oregano", + "water", + "salt" + ] + }, + { + "id": 8595, + "cuisine": "southern_us", + "ingredients": [ + "lump crab meat", + "plain breadcrumbs", + "eggs", + "sea salt", + "ice", + "worcestershire sauce", + "lemon juice", + "mayonaise", + "dijon style mustard" + ] + }, + { + "id": 40062, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "green onions", + "oyster sauce", + "broccoli florets", + "red pepper flakes", + "spaghetti", + "soy sauce", + "chicken breasts", + "carrots", + "celery ribs", + "mushrooms", + "salt", + "canola oil" + ] + }, + { + "id": 29693, + "cuisine": "italian", + "ingredients": [ + "fresh sage", + "parmigiano reggiano cheese", + "salt", + "quail", + "extra-virgin olive oil", + "black pepper", + "dry white wine", + "carrots", + "tomatoes", + "finely chopped onion", + "chopped celery" + ] + }, + { + "id": 7298, + "cuisine": "thai", + "ingredients": [ + "hot red pepper flakes", + "water", + "lime wedges", + "roasted peanuts", + "medium shrimp", + "ketchup", + "large eggs", + "vegetable oil", + "garlic cloves", + "red chili peppers", + "cayenne", + "rice noodles", + "scallions", + "asian fish sauce", + "firmly packed brown sugar", + "fresh coriander", + "shallots", + "rice vinegar", + "beansprouts" + ] + }, + { + "id": 44756, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "salt", + "baking powder", + "granulated sugar", + "all-purpose flour", + "cream of tartar", + "butter" + ] + }, + { + "id": 12864, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "mushrooms", + "ricotta", + "eggs", + "olive oil", + "jumbo pasta shells", + "crushed tomatoes", + "salt", + "pepper", + "garlic", + "shredded mozzarella cheese" + ] + }, + { + "id": 43310, + "cuisine": "irish", + "ingredients": [ + "garlic powder", + "butter", + "onions", + "potatoes", + "carrots", + "beef brisket", + "salt", + "cabbage", + "black peppercorns", + "bay leaves", + "fresh parsley" + ] + }, + { + "id": 16400, + "cuisine": "italian", + "ingredients": [ + "pork chops", + "saltines", + "italian style seasoning", + "grated parmesan cheese", + "garlic powder", + "butter" + ] + }, + { + "id": 23241, + "cuisine": "british", + "ingredients": [ + "marmite", + "onions", + "cheese", + "buns", + "toast" + ] + }, + { + "id": 29086, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "chicken breast halves", + "marinara sauce", + "reduced fat mozzarella", + "grated parmesan cheese", + "butter", + "seasoned bread crumbs", + "cooking spray", + "italian seasoning" + ] + }, + { + "id": 37959, + "cuisine": "italian", + "ingredients": [ + "salt", + "pinenuts", + "extra-virgin olive oil", + "fresh basil", + "garlic cloves" + ] + }, + { + "id": 31568, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "fat free milk", + "butter", + "grated lemon zest", + "brown sugar", + "baking powder", + "all-purpose flour", + "granulated sugar", + "vanilla extract", + "blackberries" + ] + }, + { + "id": 20057, + "cuisine": "indian", + "ingredients": [ + "whole milk yoghurt", + "onions", + "kosher salt", + "all-purpose flour", + "active dry yeast", + "ghee", + "sugar", + "whole milk" + ] + }, + { + "id": 7293, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "broccoli florets", + "ginger", + "light soy sauce", + "chicken breasts", + "carrots", + "water", + "Shaoxing wine", + "garlic", + "hoisin sauce", + "sesame oil", + "corn starch" + ] + }, + { + "id": 20348, + "cuisine": "italian", + "ingredients": [ + "canned low sodium chicken broth", + "cooking oil", + "salt", + "crushed tomatoes", + "dry white wine", + "turkey breast cutlets", + "flour", + "marjoram", + "capers", + "ground black pepper", + "butter" + ] + }, + { + "id": 45222, + "cuisine": "mexican", + "ingredients": [ + "green cabbage", + "ground black pepper", + "ground cumin", + "white corn tortillas", + "chili powder", + "low-fat sour cream", + "cooking spray", + "reduced fat monterey jack cheese", + "boneless chicken skinless thigh", + "salt" + ] + }, + { + "id": 48709, + "cuisine": "mexican", + "ingredients": [ + "neutral oil", + "black beans", + "chili powder", + "garlic", + "onions", + "chicken stock", + "tomato sauce", + "ground black pepper", + "cilantro", + "tortilla chips", + "ground cumin", + "cheddar cheese", + "kosher salt", + "heavy cream", + "cayenne pepper", + "chicken thighs", + "tomatoes", + "sugar", + "jalapeno chilies", + "yellow corn", + "sour cream" + ] + }, + { + "id": 21186, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "onions", + "water", + "bacon", + "ham", + "chicken bouillon", + "jalapeno chilies", + "cayenne pepper", + "cumin", + "black-eyed peas", + "garlic", + "red bell pepper" + ] + }, + { + "id": 26040, + "cuisine": "italian", + "ingredients": [ + "sugar", + "olive oil", + "crushed tomatoes", + "garlic", + "black pepper", + "grated parmesan cheese", + "fresh tomatoes", + "dried basil", + "green pepper" + ] + }, + { + "id": 31567, + "cuisine": "mexican", + "ingredients": [ + "ice cubes", + "frozen limeade concentrate", + "coarse salt", + "lime", + "tequila", + "beer" + ] + }, + { + "id": 30522, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cooking spray", + "lemon juice", + "baking soda", + "salt", + "liqueur", + "eggs", + "lemon zest", + "all-purpose flour", + "canola oil", + "plain yogurt", + "baking powder", + "confectioners sugar" + ] + }, + { + "id": 47324, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "scones", + "salt", + "granulated sugar", + "vanilla extract", + "double-acting baking powder", + "unsalted butter", + "buttermilk", + "sour cherries", + "light brown sugar", + "large eggs", + "cake flour" + ] + }, + { + "id": 44186, + "cuisine": "mexican", + "ingredients": [ + "chopped green chilies", + "salsa", + "tomato sauce", + "grating cheese", + "chicken breast halves", + "tortilla chips", + "black beans", + "stewed tomatoes" + ] + }, + { + "id": 24018, + "cuisine": "mexican", + "ingredients": [ + "boneless chuck roast", + "cilantro sprigs", + "cinnamon sticks", + "vegetable oil", + "all-purpose flour", + "chili powder", + "salt", + "onions", + "clove", + "paprika", + "beef broth" + ] + }, + { + "id": 18108, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "scallions", + "tomatoes", + "lemon", + "onions", + "butter", + "sliced mushrooms", + "salmon", + "salt" + ] + }, + { + "id": 45633, + "cuisine": "mexican", + "ingredients": [ + "salt", + "cilantro", + "ground cumin", + "honey", + "fresh lime juice", + "extra-virgin olive oil" + ] + }, + { + "id": 17727, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "dried sage", + "thyme", + "olive oil", + "salt", + "ground lamb", + "lasagna noodles", + "goat cheese", + "pepper", + "vegetable oil", + "fresh mint" + ] + }, + { + "id": 8288, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "flour tortillas", + "corn", + "salsa", + "shredded cheddar cheese", + "salt", + "cooked steak", + "olive oil", + "sour cream" + ] + }, + { + "id": 46723, + "cuisine": "greek", + "ingredients": [ + "canned low sodium chicken broth", + "long-grain rice", + "water", + "frozen peas", + "boneless, skinless chicken breast", + "lemon juice", + "eggs", + "salt" + ] + }, + { + "id": 9993, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken bouillon granules", + "all-purpose flour", + "chopped green chilies", + "warm water", + "ground cayenne pepper", + "onion powder" + ] + }, + { + "id": 31451, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "purple onion", + "red cabbage", + "salsa", + "lime juice", + "cilantro leaves", + "avocado", + "yellow bell pepper", + "chipotle chile powder" + ] + }, + { + "id": 36677, + "cuisine": "spanish", + "ingredients": [ + "green olives", + "parsley", + "sun-dried tomatoes", + "fresh chevre", + "water", + "sea salt", + "jalapeno chilies", + "flat leaf parsley" + ] + }, + { + "id": 19478, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "baking soda", + "kosher salt", + "flour", + "sliced almonds", + "unsalted butter", + "eggs", + "almond flour", + "almond extract" + ] + }, + { + "id": 17540, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "ground black pepper", + "garlic salt", + "corn", + "rotelle", + "kosher salt", + "boneless skinless chicken breasts", + "chicken broth", + "steamed rice", + "red enchilada sauce" + ] + }, + { + "id": 31531, + "cuisine": "russian", + "ingredients": [ + "butter", + "garlic cloves", + "celery root", + "potatoes", + "beef broth", + "sour cream", + "pepper", + "salt", + "carrots", + "beef roast", + "parsley", + "dill", + "onions" + ] + }, + { + "id": 1159, + "cuisine": "french", + "ingredients": [ + "filet mignon", + "mushrooms", + "salt", + "dijon", + "worcestershire sauce", + "onions", + "black pepper", + "vegetable oil", + "sour cream", + "unsalted butter", + "paprika", + "chopped garlic" + ] + }, + { + "id": 29825, + "cuisine": "thai", + "ingredients": [ + "beans", + "palm sugar", + "dark soy sauce", + "lime juice", + "chicken breasts", + "fish sauce", + "olive oil", + "garlic cloves", + "red chili peppers", + "thai basil" + ] + }, + { + "id": 32757, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "peeled fresh ginger", + "dark sesame oil", + "won ton wrappers", + "cooking spray", + "firm tofu", + "low sodium soy sauce", + "shredded carrots", + "green onions", + "corn starch", + "water", + "water chestnuts", + "salt", + "wood ear mushrooms" + ] + }, + { + "id": 37532, + "cuisine": "french", + "ingredients": [ + "grape tomatoes", + "salt", + "sliced green onions", + "zucchini", + "feta cheese crumbles", + "yellow squash", + "freshly ground pepper", + "tilapia fillets", + "vinaigrette" + ] + }, + { + "id": 18829, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "green bell pepper", + "garam masala", + "raisins", + "cardamom pods", + "chopped cilantro", + "canola oil", + "clove", + "mint", + "water", + "bay leaves", + "purple onion", + "lemon juice", + "basmati rice", + "fenugreek leaves", + "sugar", + "cayenne", + "non dairy milk", + "cumin seed", + "chaat masala", + "ginger paste", + "chickpea flour", + "garlic paste", + "pomegranate seeds", + "tempeh", + "salt", + "cinnamon sticks", + "saffron" + ] + }, + { + "id": 30145, + "cuisine": "mexican", + "ingredients": [ + "seedless cucumber", + "cilantro", + "reduced fat mayonnaise", + "lime zest", + "cherry tomatoes", + "tortilla chips", + "medium shrimp", + "romaine lettuce", + "reduced-fat sour cream", + "freshly ground pepper", + "lime juice", + "salt", + "hass avocado" + ] + }, + { + "id": 2966, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "salt", + "sweet onion", + "garlic cloves", + "pepper", + "long-grain rice", + "tomato paste", + "bacon slices", + "fresh parsley" + ] + }, + { + "id": 43963, + "cuisine": "mexican", + "ingredients": [ + "dried cornhusks", + "sweet potatoes", + "extra-virgin olive oil", + "frozen corn kernels", + "chipotle chile powder", + "green chile", + "jalapeno chilies", + "butter", + "fresh oregano", + "garlic cloves", + "ground cumin", + "ground cinnamon", + "Mexican cheese blend", + "tomatillos", + "cilantro leaves", + "organic vegetable broth", + "masa harina", + "black beans", + "baking powder", + "salt", + "chopped onion", + "chopped cilantro fresh" + ] + }, + { + "id": 24181, + "cuisine": "thai", + "ingredients": [ + "honey", + "rice vinegar", + "garlic cloves", + "fish sauce", + "rice noodles", + "peanut oil", + "chopped cilantro fresh", + "eggs", + "boneless skinless chicken breasts", + "roasted peanuts", + "mung bean sprouts", + "lime", + "peeled shrimp", + "scallions" + ] + }, + { + "id": 11232, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "milk", + "boiling water", + "dried fruit", + "glutinous rice flour", + "vegetable oil cooking spray", + "dates", + "water", + "white sesame seeds" + ] + }, + { + "id": 42698, + "cuisine": "brazilian", + "ingredients": [ + "cassava root flour", + "jasmine rice", + "lime", + "bay leaves", + "collard green leaves", + "smoked ham hocks", + "white onion", + "chorizo", + "pork chops", + "raisins", + "sausages", + "boneless pork shoulder", + "kosher salt", + "orange", + "ground black pepper", + "bacon", + "chopped parsley", + "dried black beans", + "minced garlic", + "olive oil", + "red wine vinegar", + "garlic", + "plum tomatoes" + ] + }, + { + "id": 33903, + "cuisine": "southern_us", + "ingredients": [ + "barbecue sauce", + "buns", + "boneless pork shoulder", + "salt", + "ground black pepper" + ] + }, + { + "id": 30178, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "butter", + "onions", + "vegetable oil", + "oil", + "light soy sauce", + "all-purpose flour", + "panko breadcrumbs", + "russet potatoes", + "ground beef" + ] + }, + { + "id": 27750, + "cuisine": "italian", + "ingredients": [ + "chili flakes", + "minced garlic", + "vegetable stock", + "thyme", + "royal olives", + "fennel", + "salt", + "bread", + "pepper", + "leeks", + "San Marzano Diced Tomatoes", + "white wine", + "olive oil", + "old bay seasoning" + ] + }, + { + "id": 45726, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "whole wheat tortillas", + "cooking spray", + "enchilada sauce", + "roma tomatoes", + "shredded cheese", + "green onions" + ] + }, + { + "id": 46571, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "seasoning", + "roasted peanuts", + "unsweetened coconut milk", + "cooked chicken", + "angel hair" + ] + }, + { + "id": 4413, + "cuisine": "italian", + "ingredients": [ + "pizza crust", + "prosciutto", + "warm water", + "olive oil", + "purple onion", + "brown sugar", + "active dry yeast", + "chees fresh mozzarella", + "kosher salt", + "parmesan cheese", + "all-purpose flour" + ] + }, + { + "id": 19248, + "cuisine": "southern_us", + "ingredients": [ + "water", + "all-purpose flour", + "vanilla ice cream", + "mint sprigs", + "chopped pecans", + "ground cinnamon", + "refrigerated piecrusts", + "lemon juice", + "sugar", + "vanilla extract", + "frozen blueberries" + ] + }, + { + "id": 19856, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "white sugar", + "mirin", + "fresh ginger root", + "mackerel fillets" + ] + }, + { + "id": 32345, + "cuisine": "french", + "ingredients": [ + "sugar", + "pink grapefruit juice" + ] + }, + { + "id": 42842, + "cuisine": "brazilian", + "ingredients": [ + "powdered sugar", + "heavy cream", + "corn starch", + "pure vanilla extract", + "egg yolks", + "cocoa powder", + "milk", + "condensed milk", + "biscuits", + "whole milk", + "cognac" + ] + }, + { + "id": 13962, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "salt", + "corn tortillas", + "canola oil", + "green onions", + "sauce", + "ground beef", + "ground black pepper", + "all-purpose flour", + "chopped cilantro", + "chicken broth", + "black olives", + "sharp cheddar cheese", + "onions" + ] + }, + { + "id": 36788, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "diced tomatoes", + "cayenne pepper", + "red bell pepper", + "coriander powder", + "garlic", + "ground cardamom", + "onions", + "garam masala", + "ginger", + "chickpeas", + "coconut milk", + "tumeric", + "vegetable oil", + "salt", + "mustard seeds" + ] + }, + { + "id": 41991, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "salt", + "chicken stock", + "vegetable oil", + "long grain white rice", + "ground black pepper", + "poblano chiles", + "white onion", + "garlic" + ] + }, + { + "id": 8574, + "cuisine": "greek", + "ingredients": [ + "rocket leaves", + "balsamic vinegar", + "extra-virgin olive oil", + "honey", + "pink peppercorns", + "shelled pistachios", + "ricotta salata", + "chopped fresh thyme", + "salt", + "ground black pepper", + "fresh orange juice", + "pears" + ] + }, + { + "id": 9153, + "cuisine": "mexican", + "ingredients": [ + "corn", + "white cheddar cheese", + "cooked chicken breasts", + "salt and ground black pepper", + "enchilada sauce", + "refried beans", + "rotisserie chicken", + "monterey jack", + "cilantro", + "basmati rice" + ] + }, + { + "id": 29515, + "cuisine": "italian", + "ingredients": [ + "bacon", + "garlic cloves", + "pepper", + "crushed red pepper", + "plum tomatoes", + "romano cheese", + "extra-virgin olive oil", + "onions", + "dry white wine", + "salt", + "rigatoni" + ] + }, + { + "id": 46245, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "cheese", + "doritos", + "chicken breasts", + "cream of mushroom soup", + "cream of chicken soup", + "salt", + "chicken broth", + "rotelle", + "prepared lasagne" + ] + }, + { + "id": 279, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "red bell pepper", + "sweet onion", + "tortilla chips", + "shredded Monterey Jack cheese", + "yellow squash", + "fresh mushrooms", + "chile pepper", + "sour cream" + ] + }, + { + "id": 36466, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "corn", + "shredded cheddar cheese", + "sliced black olives", + "salsa", + "green onions", + "cooked chicken breasts", + "avocado", + "water", + "flour tortillas", + "sour cream", + "black beans", + "taco seasoning mix", + "shredded lettuce" + ] + }, + { + "id": 39814, + "cuisine": "vietnamese", + "ingredients": [ + "white onion", + "sesame oil", + "cilantro", + "shrimp", + "fish sauce", + "water", + "red pepper", + "garlic", + "basmati rice", + "pepper", + "lemon", + "ginger", + "yellow peppers", + "brown sugar", + "lemongrass", + "basil", + "salt" + ] + }, + { + "id": 41964, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "potatoes", + "cayenne pepper", + "chopped cilantro", + "amchur", + "ginger", + "cumin seed", + "water", + "bay leaves", + "green chilies", + "asafetida", + "cauliflower", + "coriander powder", + "salt", + "oil" + ] + }, + { + "id": 11158, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "corn starch", + "soy sauce", + "vegetable oil", + "brown sugar", + "flank steak", + "fresh ginger", + "garlic" + ] + }, + { + "id": 5682, + "cuisine": "greek", + "ingredients": [ + "dried thyme", + "lemon", + "garlic cloves", + "fresh dill", + "boneless skinless chicken breasts", + "salt", + "olive oil", + "paprika", + "pepper", + "red wine vinegar", + "fresh oregano" + ] + }, + { + "id": 6579, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "butter", + "flour", + "salt", + "milk", + "lemon", + "eggs", + "baking powder", + "mixed peel" + ] + }, + { + "id": 43139, + "cuisine": "korean", + "ingredients": [ + "beef", + "garlic", + "onions", + "water", + "potatoes", + "Gochujang base", + "Korean chile flakes", + "zucchini", + "soybean paste", + "shiitake", + "green onions", + "green chilies" + ] + }, + { + "id": 48877, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame oil", + "minced garlic", + "dark brown sugar", + "ketchup", + "Gochujang base", + "fresh ginger" + ] + }, + { + "id": 19519, + "cuisine": "mexican", + "ingredients": [ + "lime", + "queso fresco", + "escarole", + "Mexican seasoning mix", + "shallots", + "purple onion", + "tomato sauce", + "boneless skinless chicken breasts", + "garlic", + "avocado", + "poblano peppers", + "cilantro", + "corn tortillas" + ] + }, + { + "id": 1501, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "salt", + "fat free yogurt", + "english cucumber", + "extra-virgin olive oil", + "chopped fresh mint" + ] + }, + { + "id": 44049, + "cuisine": "indian", + "ingredients": [ + "mace", + "ginger", + "green cardamom", + "ghee", + "tomatoes", + "whole cloves", + "garlic", + "cumin seed", + "ground ginger", + "coriander seeds", + "mutton", + "brown cardamom", + "onions", + "red chile powder", + "cinnamon", + "salt", + "bay leaf" + ] + }, + { + "id": 11116, + "cuisine": "italian", + "ingredients": [ + "cheddar cheese", + "corn kernels", + "green pepper", + "noodles", + "italian sausage", + "pepper", + "garlic powder", + "ground beef", + "tomato sauce", + "dried basil", + "ripe olives", + "dried oregano", + "tomato paste", + "water", + "salt", + "onions" + ] + }, + { + "id": 43776, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "rotelle", + "fresh cilantro", + "cream of chicken soup", + "corn tortillas", + "fresh lime", + "Mexican cheese blend", + "sour cream", + "milk", + "boneless skinless chicken breasts", + "cream of mushroom soup" + ] + }, + { + "id": 33431, + "cuisine": "italian", + "ingredients": [ + "basil pesto sauce", + "fresh mushrooms", + "smoked salmon", + "olive oil", + "spaghetti", + "tomato paste", + "water", + "onions", + "fresh basil", + "crushed garlic" + ] + }, + { + "id": 37941, + "cuisine": "korean", + "ingredients": [ + "spring onions", + "garlic", + "cabbage", + "ground black pepper", + "wonton wrappers", + "firm tofu", + "eggs", + "vegetable oil", + "salt", + "zucchini", + "rice vermicelli", + "toasted sesame oil" + ] + }, + { + "id": 10041, + "cuisine": "italian", + "ingredients": [ + "shallots", + "oil", + "vodka", + "whipping cream", + "plum tomatoes", + "fresh basil", + "butter", + "asparagus spears", + "medium shrimp uncook", + "linguine" + ] + }, + { + "id": 31671, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "self rising flour", + "mayonaise" + ] + }, + { + "id": 40040, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "all-purpose flour", + "pie pastry", + "butter", + "semi-sweet chocolate morsels", + "light brown sugar", + "bourbon whiskey", + "chopped walnuts", + "granulated sugar", + "vanilla extract" + ] + }, + { + "id": 3597, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "chili powder", + "okra", + "red kidney beans", + "water", + "hot sauce", + "bay leaf", + "instant rice", + "salt", + "garlic cloves", + "tomatoes", + "chopped green bell pepper", + "chopped onion", + "italian seasoning" + ] + }, + { + "id": 33915, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "ground black pepper", + "fresh parsley", + "dried porcini mushrooms", + "crushed tomatoes", + "garlic cloves", + "boneless chicken skinless thigh", + "olive oil", + "hot water", + "water", + "salt" + ] + }, + { + "id": 17343, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "white sugar", + "warm water", + "all-purpose flour", + "salt", + "active dry yeast", + "greek style plain yogurt" + ] + }, + { + "id": 26671, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "cheese", + "black pepper", + "boneless skinless chicken breasts", + "frozen peas", + "medium egg noodles", + "all-purpose flour", + "fat free milk", + "deli ham" + ] + }, + { + "id": 11959, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "jalapeno chilies", + "garlic", + "cumin", + "chiles", + "chicken breasts", + "yellow onion", + "lime", + "diced tomatoes", + "celery", + "avocado", + "olive oil", + "cilantro", + "oregano" + ] + }, + { + "id": 20406, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "sugar", + "fish sauce", + "corn starch", + "chicken stock", + "garlic cloves" + ] + }, + { + "id": 47096, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "ground black pepper", + "ground cardamom", + "ground cinnamon", + "water", + "shallots", + "ground cumin", + "ground ginger", + "white pepper", + "butternut squash", + "onions", + "brown sugar", + "olive oil", + "salt" + ] + }, + { + "id": 36446, + "cuisine": "italian", + "ingredients": [ + "strawberries", + "vin santo", + "vanilla extract", + "sugar", + "grated lemon peel" + ] + }, + { + "id": 36214, + "cuisine": "british", + "ingredients": [ + "pickling spices", + "green tomatoes", + "salt", + "ground ginger", + "cayenne", + "dry mustard", + "white pepper", + "raisins", + "onions", + "brown sugar", + "vinegar", + "apples" + ] + }, + { + "id": 38882, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "raisins", + "ground cinnamon", + "milk", + "bread", + "granny smith apples", + "vanilla", + "eggs", + "butter" + ] + }, + { + "id": 45799, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "garlic", + "sliced green onions", + "reduced sodium soy sauce", + "carrots", + "almonds", + "Wish-Bone Light Italian Dressing", + "baby spinach leaves", + "whole wheat spaghetti", + "bok choy" + ] + }, + { + "id": 37890, + "cuisine": "russian", + "ingredients": [ + "milk", + "yeast", + "eggs", + "salt", + "sugar", + "all-purpose flour", + "vegetable oil" + ] + }, + { + "id": 48323, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "large egg yolks", + "salt", + "vanilla beans", + "1% low-fat milk", + "bittersweet chocolate", + "large egg whites", + "Dutch-processed cocoa powder", + "sugar", + "cooking spray", + "corn starch" + ] + }, + { + "id": 18905, + "cuisine": "mexican", + "ingredients": [ + "butter", + "onions", + "pepper", + "salt", + "garlic", + "shredded cheddar cheese", + "pinto beans" + ] + }, + { + "id": 30806, + "cuisine": "korean", + "ingredients": [ + "sea salt", + "spinach", + "rice vinegar", + "white rice", + "sugar", + "toasted sesame seeds" + ] + }, + { + "id": 29850, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "kosher salt", + "olive oil", + "chopped fresh thyme", + "sugar", + "stone-ground cornmeal", + "dry yeast", + "salt", + "sake", + "water", + "ground black pepper", + "purple onion", + "warm water", + "large egg whites", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 9038, + "cuisine": "chinese", + "ingredients": [ + "water", + "soft tofu", + "corn starch", + "reduced sodium soy sauce", + "dark sesame oil", + "bamboo shoots", + "large egg whites", + "rice vinegar", + "wood ear mushrooms", + "low sodium chicken broth", + "garlic chili sauce" + ] + }, + { + "id": 22481, + "cuisine": "korean", + "ingredients": [ + "eggs", + "flour", + "garlic", + "nuts", + "shiitake", + "leeks", + "carrots", + "pepper", + "beef stock", + "salt", + "cod", + "beef", + "parsley", + "onions" + ] + }, + { + "id": 18729, + "cuisine": "filipino", + "ingredients": [ + "worcestershire sauce", + "ground black pepper", + "salt", + "olive oil", + "garlic", + "butter", + "beef sirloin" + ] + }, + { + "id": 11482, + "cuisine": "filipino", + "ingredients": [ + "broiler-fryer chicken", + "green onions", + "celery", + "bean threads", + "fresh ginger", + "garlic cloves", + "soy sauce", + "cooking oil", + "carrots", + "pepper", + "salt", + "onions" + ] + }, + { + "id": 10291, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "green onions", + "linguine", + "red bell pepper", + "green bell pepper, slice", + "butter", + "fresh mushrooms", + "ground black pepper", + "cajun seasoning", + "salt", + "boneless skinless chicken breast halves", + "dried basil", + "grated parmesan cheese", + "heavy cream", + "lemon pepper" + ] + }, + { + "id": 39022, + "cuisine": "chinese", + "ingredients": [ + "garlic paste", + "dried udon", + "oyster sauce", + "frozen broccoli florets", + "scallions", + "sesame seeds", + "sesame oil", + "hoisin sauce", + "chicken fingers" + ] + }, + { + "id": 41354, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "roasted red peppers", + "dried rosemary", + "minced garlic", + "chicken breasts", + "fat free less sodium chicken broth", + "cannellini beans", + "spinach", + "olive oil", + "salt" + ] + }, + { + "id": 14278, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken skinless thigh", + "star anise", + "sugar", + "fresh ginger", + "corn starch", + "cold water", + "water", + "scallions", + "soy sauce", + "medium dry sherry" + ] + }, + { + "id": 23830, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "garlic", + "ground black pepper", + "uncook medium shrimp, peel and devein", + "olive oil", + "salt", + "lemon wedge", + "fresh parsley" + ] + }, + { + "id": 19126, + "cuisine": "korean", + "ingredients": [ + "pork belly", + "green onions", + "Gochujang base", + "sugar", + "sesame seeds", + "ginger", + "pears", + "rice syrup", + "sesame oil", + "onions", + "soy sauce", + "ground black pepper", + "garlic" + ] + }, + { + "id": 22980, + "cuisine": "british", + "ingredients": [ + "powdered sugar", + "unsalted butter", + "mincemeat", + "ground cinnamon", + "large egg yolks", + "all-purpose flour", + "eggs", + "crystallized ginger", + "orange juice", + "grated orange peel", + "salt" + ] + }, + { + "id": 20710, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "sea bass fillets", + "hothouse cucumber", + "green onions", + "hot sauce", + "mirin", + "rice vinegar", + "sugar", + "daikon", + "glaze" + ] + }, + { + "id": 8875, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "ground black pepper", + "salt", + "marinara sauce", + "grated lemon zest", + "swordfish steaks", + "lemon wedge" + ] + }, + { + "id": 12726, + "cuisine": "thai", + "ingredients": [ + "Thai red curry paste", + "water", + "creamy peanut butter", + "sugar", + "salt", + "distilled vinegar", + "coconut milk" + ] + }, + { + "id": 31394, + "cuisine": "vietnamese", + "ingredients": [ + "low sodium soy sauce", + "boneless skinless chicken breasts", + "garlic powder", + "corn starch", + "cooked rice", + "swanson chicken broth", + "ground ginger", + "vegetables" + ] + }, + { + "id": 49568, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "golden raisins", + "salt", + "black pepper", + "balsamic vinegar", + "boneless skinless chicken breast halves", + "fresh basil", + "dry white wine", + "all-purpose flour", + "olive oil", + "Sicilian olives", + "dried oregano" + ] + }, + { + "id": 15600, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "green onions", + "chopped cilantro", + "green cabbage", + "honey", + "ginger", + "snow peas", + "minced garlic", + "chili oil", + "bamboo shoots", + "spring roll wrappers", + "egg whites", + "shiitake mushroom caps", + "canola oil" + ] + }, + { + "id": 10608, + "cuisine": "southern_us", + "ingredients": [ + "refrigerated buttermilk biscuits", + "pot pie", + "chopped parsley" + ] + }, + { + "id": 23473, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "lime", + "cracked black pepper", + "beef sirloin", + "tomatoes", + "kosher salt", + "cooking oil", + "salt", + "soy sauce", + "iceberg", + "purple onion", + "oyster sauce", + "fish sauce", + "minced garlic", + "sesame oil", + "rice vinegar" + ] + }, + { + "id": 25163, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "heavy cream", + "confectioners sugar", + "sugar", + "frozen pastry puff sheets", + "all-purpose flour", + "water", + "whole milk", + "corn starch", + "rhubarb", + "unsalted butter", + "salt", + "grappa" + ] + }, + { + "id": 10343, + "cuisine": "french", + "ingredients": [ + "half & half", + "vanilla beans", + "sugar", + "large egg yolks" + ] + }, + { + "id": 10669, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "lemongrass", + "salt", + "chili flakes", + "pepper", + "shallots", + "roasted peanuts", + "tofu", + "soy sauce", + "asian basil", + "yellow onion", + "chiles", + "minced garlic", + "vegetable oil", + "ground turmeric" + ] + }, + { + "id": 39392, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "garlic powder", + "turkey", + "pepper", + "peanut oil" + ] + }, + { + "id": 47806, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "chopped fresh thyme", + "veal stock", + "veal chops", + "olive oil", + "dry white wine", + "pancetta", + "finely chopped fresh parsley", + "garlic cloves" + ] + }, + { + "id": 40038, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "all-purpose flour", + "bay leaf", + "chicken stock", + "lamb shoulder", + "thyme", + "cold water", + "potatoes", + "carrots", + "onions", + "pepper", + "salt", + "chopped parsley" + ] + }, + { + "id": 29747, + "cuisine": "french", + "ingredients": [ + "garlic cloves", + "lemon zest", + "fresh parsley", + "freshly ground pepper", + "mayonaise", + "fresh lemon juice" + ] + }, + { + "id": 16998, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "grated parmesan cheese", + "elbow macaroni", + "milk", + "diced tomatoes", + "ground beef", + "pepper", + "butter", + "corn starch", + "feta cheese", + "salt", + "onions" + ] + }, + { + "id": 26713, + "cuisine": "chinese", + "ingredients": [ + "sake", + "hoisin sauce", + "frozen peas and carrots", + "eggs", + "fresh ginger", + "dark sesame oil", + "clove", + "instant rice", + "green onions", + "sliced green onions", + "reduced fat firm tofu", + "soy sauce", + "vegetable oil" + ] + }, + { + "id": 47133, + "cuisine": "british", + "ingredients": [ + "pastry", + "potatoes", + "round steaks", + "beef kidney", + "dried thyme", + "salt", + "bay leaf", + "single crust pie", + "ground black pepper", + "all-purpose flour", + "onions", + "water", + "worcestershire sauce", + "lard" + ] + }, + { + "id": 33640, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "American cheese", + "spicy pork sausage", + "frozen chopped broccoli" + ] + }, + { + "id": 7500, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "dry white wine", + "polenta", + "fat free less sodium chicken broth", + "prosciutto", + "fresh parsley", + "fresh parmesan cheese", + "garlic cloves", + "olive oil", + "freshly ground pepper" + ] + }, + { + "id": 28243, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butternut squash", + "freshly ground pepper", + "arborio rice", + "parmigiano reggiano cheese", + "fresh thyme leaves", + "water", + "low sodium chicken broth", + "salt", + "unsalted butter", + "dry white wine", + "onions" + ] + }, + { + "id": 41531, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "fresh lemon juice", + "red potato", + "garlic cloves", + "chopped fresh chives", + "olive oil" + ] + }, + { + "id": 1079, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "salt", + "cold water", + "Sriracha", + "corn starch", + "water", + "rice vinegar", + "sugar", + "crushed red pepper flakes" + ] + }, + { + "id": 9276, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "bow-tie pasta", + "white onion", + "chicken breasts", + "shredded mozzarella cheese", + "baby spinach leaves", + "ground black pepper", + "Philadelphia Cooking Creme", + "kosher salt", + "extra-virgin olive oil" + ] + }, + { + "id": 7408, + "cuisine": "mexican", + "ingredients": [ + "whole wheat tortillas", + "lump crab meat", + "bacon", + "avocado", + "pineapple", + "shallots", + "shredded mozzarella cheese" + ] + }, + { + "id": 33441, + "cuisine": "indian", + "ingredients": [ + "cilantro", + "green chilies", + "potatoes", + "green peas", + "chutney", + "bread crumbs", + "ginger", + "oil", + "yoghurt", + "salt" + ] + }, + { + "id": 26082, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "salt", + "ice water", + "confectioners sugar", + "unsalted butter", + "all-purpose flour", + "vanilla" + ] + }, + { + "id": 1202, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "garlic", + "lentils", + "ground turmeric", + "asafoetida", + "chili powder", + "green chilies", + "onions", + "fenugreek leaves", + "roma tomatoes", + "salt", + "bay leaf", + "amchur", + "ginger", + "oil", + "coriander" + ] + }, + { + "id": 1964, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "cheese", + "garlic cloves", + "pepper", + "grated parmesan cheese", + "fresh mushrooms", + "italian seasoning", + "zucchini", + "salt", + "onions", + "olive oil", + "diced tomatoes", + "shredded mozzarella cheese" + ] + }, + { + "id": 13170, + "cuisine": "southern_us", + "ingredients": [ + "soft-wheat flour", + "baking powder", + "all-purpose flour", + "milk", + "cake flour", + "shortening", + "butter", + "sour cream", + "baking soda", + "salt" + ] + }, + { + "id": 39375, + "cuisine": "italian", + "ingredients": [ + "garlic", + "italian seasoning", + "olive oil", + "salt", + "pepper", + "crushed red pepper", + "fresh pasta", + "plum tomatoes" + ] + }, + { + "id": 16875, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "large shrimp", + "russet potatoes", + "fresh basil leaves", + "kosher salt", + "red wine vinegar", + "plum tomatoes", + "dry white wine", + "purple onion" + ] + }, + { + "id": 3922, + "cuisine": "russian", + "ingredients": [ + "beef soup bones", + "salt", + "olive oil", + "onions", + "sauerkraut", + "sour cream", + "baking potatoes", + "chile sauce" + ] + }, + { + "id": 40690, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red wine vinegar", + "fresh lemon juice", + "grape tomatoes", + "ground black pepper", + "purple onion", + "arugula", + "part-skim mozzarella cheese", + "quick-cooking barley", + "asparagus spears", + "water", + "dijon mustard", + "salt" + ] + }, + { + "id": 7748, + "cuisine": "mexican", + "ingredients": [ + "butter", + "eggs", + "condensed milk", + "egg yolks", + "ear of corn", + "baking powder" + ] + }, + { + "id": 42003, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "garlic powder", + "purple onion", + "dried oregano", + "minced garlic", + "chili powder", + "salsa", + "black pepper", + "jalapeno chilies", + "salt", + "ground cumin", + "turnips", + "water", + "onion powder", + "ground beef" + ] + }, + { + "id": 31369, + "cuisine": "spanish", + "ingredients": [ + "green olives", + "red wine vinegar", + "garlic cloves", + "dried apricot", + "salt", + "prunes", + "dry white wine", + "bone-in chicken breasts", + "ground black pepper", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 18113, + "cuisine": "southern_us", + "ingredients": [ + "pork chops", + "black pepper", + "salt", + "eggs", + "flour", + "milk" + ] + }, + { + "id": 34006, + "cuisine": "jamaican", + "ingredients": [ + "red kidnei beans, rins and drain", + "hot pepper", + "long-grain rice", + "ground pepper", + "salt", + "onions", + "water", + "light coconut milk", + "garlic cloves", + "coconut oil", + "fresh thyme", + "scallions" + ] + }, + { + "id": 11485, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil", + "freshly ground pepper", + "large eggs", + "salt", + "medium shrimp", + "yellow corn meal", + "buttermilk", + "mixed greens", + "green tomatoes", + "sauce" + ] + }, + { + "id": 33621, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "fresh mint", + "rib eye steaks", + "thai chile", + "chopped cilantro fresh", + "shallots", + "fresh lime juice", + "fish sauce", + "onion tops", + "cabbage" + ] + }, + { + "id": 4364, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "rice flour", + "curry powder", + "salt", + "chopped cilantro fresh", + "tomatoes", + "garbanzo beans", + "onions", + "olive oil", + "cumin seed" + ] + }, + { + "id": 4931, + "cuisine": "indian", + "ingredients": [ + "pure olive oil", + "white distilled vinegar", + "chili powder", + "mustard seeds", + "sugar", + "mulato chiles", + "salt", + "tomatoes", + "coriander seeds", + "chile de arbol", + "red chili peppers", + "seeds", + "cumin seed" + ] + }, + { + "id": 17781, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "sugar", + "salt", + "pecans", + "vanilla", + "large egg yolks", + "all-purpose flour" + ] + }, + { + "id": 42388, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "egg yolks", + "milk", + "white sugar" + ] + }, + { + "id": 7536, + "cuisine": "moroccan", + "ingredients": [ + "warm water", + "whole wheat flour", + "cornmeal", + "honey", + "vegetable oil", + "white flour", + "flour", + "yeast", + "barley grits", + "semolina", + "salt" + ] + }, + { + "id": 5847, + "cuisine": "french", + "ingredients": [ + "chicken broth", + "chopped fresh chives", + "shallots", + "freshly ground pepper", + "smoked bacon", + "fingerling potatoes", + "whipping cream", + "fresh parsley", + "dijon mustard", + "mushrooms", + "salt", + "chicken thighs", + "white wine", + "leeks", + "fresh tarragon", + "garlic cloves" + ] + }, + { + "id": 32446, + "cuisine": "indian", + "ingredients": [ + "white vinegar", + "seedless cucumber", + "ginger", + "mustard seeds", + "fennel seeds", + "vegetable oil", + "cumin seed", + "chopped garlic", + "red chili peppers", + "florets", + "carrots", + "cauliflower", + "coriander seeds", + "dark brown sugar", + "ground turmeric" + ] + }, + { + "id": 12374, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "bread flour", + "milk", + "shredded mozzarella cheese", + "warm water", + "salt", + "active dry yeast", + "white sugar" + ] + }, + { + "id": 49249, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "italian seasoning", + "cauliflower", + "egg whites", + "marinara sauce", + "mozzarella cheese", + "salt" + ] + }, + { + "id": 5622, + "cuisine": "italian", + "ingredients": [ + "mixed vegetables", + "grated parmesan cheese", + "salad dressing", + "cheese", + "corn oil", + "snow peas" + ] + }, + { + "id": 45614, + "cuisine": "italian", + "ingredients": [ + "pitas", + "egg whites", + "red bell pepper", + "ground black pepper", + "garlic", + "ground turkey", + "part-skim mozzarella cheese", + "sea salt", + "olive oil cooking spray", + "marinara sauce", + "yellow onion", + "italian seasoning" + ] + }, + { + "id": 31164, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "lemon juice", + "quick-cooking tapioca", + "butter", + "ground cinnamon", + "unsalted butter", + "salt", + "peaches", + "heavy cream" + ] + }, + { + "id": 17872, + "cuisine": "brazilian", + "ingredients": [ + "roasted red peppers", + "garlic cloves", + "onions", + "fresh cilantro", + "diced tomatoes", + "coconut milk", + "pepper", + "Sriracha", + "shrimp", + "olive oil", + "salt", + "fresh lime juice" + ] + }, + { + "id": 21585, + "cuisine": "moroccan", + "ingredients": [ + "eggs", + "water", + "fresh thyme", + "cinnamon", + "garlic cloves", + "brown sugar", + "almonds", + "mushrooms", + "green peas", + "fresh mint", + "phyllo dough", + "corn", + "potatoes", + "butter", + "carrots", + "ground ginger", + "black pepper", + "ground nutmeg", + "chicken breasts", + "salt", + "onions" + ] + }, + { + "id": 38092, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "marsala wine", + "mint sprigs", + "sugar", + "peaches", + "water" + ] + }, + { + "id": 47550, + "cuisine": "filipino", + "ingredients": [ + "bay leaves", + "white vinegar", + "garlic", + "whole peppercorn", + "chicken pieces", + "soy sauce" + ] + }, + { + "id": 15701, + "cuisine": "british", + "ingredients": [ + "sugar", + "whole milk", + "salt", + "raw honey", + "buttermilk", + "unsalted butter", + "baking powder", + "all-purpose flour", + "large eggs", + "heavy cream" + ] + }, + { + "id": 5525, + "cuisine": "italian", + "ingredients": [ + "littleneck clams", + "salt", + "water", + "linguine", + "flat leaf parsley", + "broccoli florets", + "crushed red pepper", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 19031, + "cuisine": "french", + "ingredients": [ + "fresh thyme leaves", + "grated Gruyère cheese", + "unsalted butter", + "all-purpose flour", + "large eggs", + "cayenne pepper", + "kosher salt", + "asiago" + ] + }, + { + "id": 11205, + "cuisine": "mexican", + "ingredients": [ + "tomatillo salsa", + "vegetable oil", + "salt", + "cooked chicken", + "cilantro", + "ancho chile pepper", + "water", + "tomatillos", + "sour cream", + "cotija", + "lime wedges", + "garlic", + "corn tortillas" + ] + }, + { + "id": 3852, + "cuisine": "french", + "ingredients": [ + "dry yeast", + "warm water", + "all purpose unbleached flour", + "honey", + "salt", + "sugar", + "butter" + ] + }, + { + "id": 5294, + "cuisine": "cajun_creole", + "ingredients": [ + "mayonaise", + "green onions", + "green bell pepper", + "dijon mustard", + "medium shrimp", + "bread crumb fresh", + "butter", + "andouille sausage", + "minced onion" + ] + }, + { + "id": 11341, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "garlic powder", + "cilantro", + "lemon juice", + "dark soy sauce", + "water", + "meat", + "garlic", + "white sugar", + "white vinegar", + "kosher salt", + "ground black pepper", + "thai chile", + "candy", + "fish sauce", + "fresh ginger", + "chicken breasts", + "dark brown sugar" + ] + }, + { + "id": 44175, + "cuisine": "italian", + "ingredients": [ + "Bertolli® Classico Olive Oil", + "Bertolli Garlic Alfredo Sauce", + "chicken broth", + "dried dillweed", + "angel hair", + "uncook medium shrimp, peel and devein", + "green peas" + ] + }, + { + "id": 25326, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "roma tomatoes", + "onions", + "cooked ham", + "large eggs", + "tomato salsa", + "jack cheese", + "flour tortillas", + "salt", + "olive oil", + "jalapeno chilies" + ] + }, + { + "id": 46840, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "fresh coriander", + "garam masala", + "yellow onion", + "ground turmeric", + "celery stick", + "lime juice", + "sea salt", + "coconut milk", + "coconut oil", + "water", + "parsley", + "carrots", + "fennel seeds", + "red chili peppers", + "diced lamb", + "garlic", + "ghee" + ] + }, + { + "id": 33352, + "cuisine": "thai", + "ingredients": [ + "green mango", + "large shrimp", + "fish sauce", + "cilantro leaves", + "roasted cashews", + "shallots", + "red chili peppers", + "fresh lime juice" + ] + }, + { + "id": 45020, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "carrots", + "canola oil", + "low sodium soy sauce", + "salt", + "onions", + "sesame oil", + "sweet potato vermicelli", + "spinach", + "dried shiitake mushrooms", + "toasted sesame seeds" + ] + }, + { + "id": 34309, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "unsalted butter", + "all purpose unbleached flour", + "garlic cloves", + "grits", + "white vinegar", + "black pepper", + "half & half", + "salt", + "bay leaf", + "green bell pepper", + "large eggs", + "tomatoes with juice", + "celery", + "bacon drippings", + "dried thyme", + "vegetable oil", + "cayenne pepper", + "onions" + ] + }, + { + "id": 10719, + "cuisine": "greek", + "ingredients": [ + "water", + "lemon", + "dried oregano", + "semolina", + "salt", + "olive oil", + "garlic", + "potatoes", + "freshly ground pepper" + ] + }, + { + "id": 14547, + "cuisine": "indian", + "ingredients": [ + "hot red pepper flakes", + "boneless skinless chicken breasts", + "frozen limeade concentrate", + "lime", + "salt", + "chutney", + "ground ginger", + "green onions", + "ground coriander", + "chopped cilantro fresh", + "broccoli slaw", + "vegetable oil", + "carrots" + ] + }, + { + "id": 427, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "apple juice", + "fresh lime juice", + "avocado", + "diced tomatoes", + "garlic cloves", + "coarse salt", + "chopped onion", + "pork shoulder", + "Daisy Sour Cream", + "salsa", + "corn tortillas" + ] + }, + { + "id": 49426, + "cuisine": "russian", + "ingredients": [ + "black peppercorns", + "unsalted butter", + "bay leaves", + "salt", + "sausages", + "dried mushrooms", + "hungarian sweet paprika", + "water", + "whole peeled tomatoes", + "kalamata", + "dill pickles", + "onions", + "tomato paste", + "ground black pepper", + "beef stock", + "garlic", + "ham", + "marjoram", + "capers", + "veal", + "mushrooms", + "all-purpose flour", + "dill weed", + "pickle juice" + ] + }, + { + "id": 27012, + "cuisine": "jamaican", + "ingredients": [ + "juice concentrate", + "boneless skinless chicken breasts", + "instant chicken bouillon", + "dri leav thyme", + "dijon mustard", + "garlic", + "jalapeno chilies", + "ground cumin" + ] + }, + { + "id": 21731, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "large eggs", + "salt", + "mozzarella cheese", + "vegetable oil", + "freshly ground pepper", + "tomato sauce", + "large egg yolks", + "heavy cream", + "flat leaf parsley", + "risotto", + "grated parmesan cheese", + "all-purpose flour" + ] + }, + { + "id": 29744, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "kalamata", + "rib", + "pinenuts", + "golden raisins", + "flour for dusting", + "swiss chard", + "extra-virgin olive oil", + "dough", + "finely chopped onion", + "garlic cloves" + ] + }, + { + "id": 2682, + "cuisine": "thai", + "ingredients": [ + "tamarind purée", + "ginger", + "juice", + "chicken stock", + "lemon grass", + "cilantro leaves", + "chillies", + "sugar pea", + "peas", + "Thai fish sauce", + "tomatoes", + "spring onions", + "skinless chicken breasts" + ] + }, + { + "id": 1807, + "cuisine": "greek", + "ingredients": [ + "cottage cheese", + "unsalted butter", + "salt", + "semolina", + "large eggs", + "scallions", + "fresh dill", + "feta cheese", + "phyllo", + "black pepper", + "fennel bulb", + "dry bread crumbs" + ] + }, + { + "id": 20666, + "cuisine": "mexican", + "ingredients": [ + "fat free less sodium chicken broth", + "finely chopped onion", + "salt", + "garlic cloves", + "white hominy", + "lime wedges", + "chopped onion", + "dried oregano", + "chile powder", + "radishes", + "shoulder steak", + "baked tortilla chips", + "ground cumin", + "coriander seeds", + "Anaheim chile", + "beef broth", + "chopped cilantro fresh" + ] + }, + { + "id": 18532, + "cuisine": "cajun_creole", + "ingredients": [ + "diced onions", + "ground black pepper", + "salt", + "crawfish", + "condensed cream of mushroom soup", + "dried parsley", + "green bell pepper", + "vegetable oil", + "margarine", + "minced garlic", + "diced tomatoes" + ] + }, + { + "id": 8024, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "lasagna noodles", + "red wine vinegar", + "grated lemon zest", + "bay leaf", + "tomato paste", + "nutritional yeast", + "soft tofu", + "Italian parsley leaves", + "garlic cloves", + "eggplant", + "whole peeled tomatoes", + "red pepper flakes", + "yellow onion", + "capers", + "ground black pepper", + "basil leaves", + "extra-virgin olive oil", + "lemon juice" + ] + }, + { + "id": 27487, + "cuisine": "japanese", + "ingredients": [ + "safflower oil", + "honey", + "cooking wine", + "carrots", + "ground ginger", + "kosher salt", + "large eggs", + "kale leaves", + "ketchup", + "dijon mustard", + "all-purpose flour", + "cabbage", + "soy sauce", + "canola", + "worcestershire sauce", + "scallions" + ] + }, + { + "id": 42578, + "cuisine": "southern_us", + "ingredients": [ + "bananas", + "salt", + "whole milk", + "all-purpose flour", + "large eggs", + "vanilla wafers", + "sugar", + "vanilla extract", + "corn starch" + ] + }, + { + "id": 36792, + "cuisine": "italian", + "ingredients": [ + "sugar", + "compote", + "almonds", + "shortbread", + "raspberries", + "heavy cream", + "large eggs" + ] + }, + { + "id": 39151, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "garlic cloves", + "onions", + "saffron threads", + "hungarian paprika", + "snapper fillets", + "carrots", + "ground cumin", + "ground ginger", + "kalamata", + "freshly ground pepper", + "flat leaf parsley", + "preserved lemon", + "salt", + "fresh lemon juice", + "chopped cilantro fresh" + ] + }, + { + "id": 18252, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "green beans", + "pesto", + "salt", + "russet potatoes", + "pepper", + "penne pasta" + ] + }, + { + "id": 19309, + "cuisine": "greek", + "ingredients": [ + "angel hair", + "chicken breast halves", + "fresh lemon juice", + "olive oil", + "yellow bell pepper", + "dried basil", + "diced tomatoes", + "dried oregano", + "feta cheese", + "purple onion" + ] + }, + { + "id": 45372, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "salt", + "pepper", + "all-purpose flour", + "milk", + "bacon grease", + "saltines", + "pork chops" + ] + }, + { + "id": 21413, + "cuisine": "indian", + "ingredients": [ + "cayenne", + "coarse salt", + "coconut milk", + "coriander seeds", + "vegetable oil", + "gingerroot", + "salmon fillets", + "bell pepper", + "large garlic cloves", + "onions", + "tumeric", + "seeds", + "white wine vinegar", + "ground cumin" + ] + }, + { + "id": 49333, + "cuisine": "indian", + "ingredients": [ + "hungarian sweet paprika", + "serrano peppers", + "salt", + "fresh lemon juice", + "garam masala", + "ground red pepper", + "garlic cloves", + "ground cumin", + "plain low-fat yogurt", + "cooking spray", + "chopped onion", + "ground turmeric", + "boneless chicken skinless thigh", + "peeled fresh ginger", + "ground coriander", + "canola oil" + ] + }, + { + "id": 5758, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "ground black pepper", + "salt", + "garlic cloves", + "fresh lime juice", + "fat free less sodium chicken broth", + "green onions", + "soba noodles", + "bok choy", + "fresh basil", + "peeled fresh ginger", + "chopped onion", + "carrots", + "chile sauce", + "water", + "chicken breast halves", + "dark sesame oil", + "celery" + ] + }, + { + "id": 32013, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic", + "basil", + "grated parmesan cheese", + "salt", + "pinenuts", + "extra-virgin olive oil" + ] + }, + { + "id": 47574, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "jalapeno chilies", + "rice vinegar", + "canola oil", + "pepper", + "mushrooms", + "all-purpose flour", + "eggs", + "water", + "green onions", + "carrots", + "sugar", + "zucchini", + "salt", + "toasted sesame seeds" + ] + }, + { + "id": 29750, + "cuisine": "italian", + "ingredients": [ + "bread crumb fresh", + "lemon wedge", + "olive oil", + "freshly ground pepper", + "kosher salt", + "chopped fresh thyme", + "branzino", + "whole grain mustard", + "garlic cloves" + ] + }, + { + "id": 37691, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "cooked white rice", + "black-eyed peas", + "carrots", + "smoked ham hocks", + "vegetable oil", + "celery", + "pepper", + "hot sauce", + "onions" + ] + }, + { + "id": 18029, + "cuisine": "japanese", + "ingredients": [ + "cilantro leaves", + "cinnamon sticks", + "onions", + "vegetable oil", + "mustard oil", + "bay leaf", + "clove", + "cayenne pepper", + "coconut milk", + "ground turmeric", + "salt", + "mustard seeds", + "medium shrimp" + ] + }, + { + "id": 27661, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "carrots", + "veal for stew", + "low salt chicken broth", + "olive oil", + "chopped fresh sage", + "chopped garlic", + "chestnuts", + "chopped onion", + "bay leaf" + ] + }, + { + "id": 26238, + "cuisine": "mexican", + "ingredients": [ + "shallots", + "cilantro", + "olive oil", + "chile pepper", + "white vinegar", + "green tomatoes", + "salt", + "garlic powder", + "tomatillos" + ] + }, + { + "id": 28357, + "cuisine": "french", + "ingredients": [ + "mussels", + "olive oil", + "garlic", + "onions", + "saffron threads", + "pepper", + "leeks", + "bay leaf", + "sea bass", + "fresh thyme", + "shrimp", + "orange zest", + "tomatoes", + "fennel", + "salt", + "boiling water" + ] + }, + { + "id": 28059, + "cuisine": "cajun_creole", + "ingredients": [ + "chervil", + "fennel", + "cognac", + "large shrimp", + "water", + "coarse salt", + "flat leaf parsley", + "black peppercorns", + "shallots", + "carrots", + "tomato paste", + "evaporated milk", + "extra-virgin olive oil", + "bay leaf" + ] + }, + { + "id": 37422, + "cuisine": "british", + "ingredients": [ + "ground nutmeg", + "currant", + "puff pastry", + "strong white bread flour", + "egg whites", + "ground allspice", + "caster sugar", + "sea salt", + "dark brown sugar", + "cold water", + "unsalted butter", + "white wine vinegar" + ] + }, + { + "id": 6125, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "sour cream", + "tortilla chips", + "refrigerated crescent rolls", + "Mexican cheese blend", + "ground beef" + ] + }, + { + "id": 34846, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "provolone cheese", + "butter", + "Italian bread", + "balsamic vinegar", + "freshly ground pepper", + "purple onion" + ] + }, + { + "id": 18496, + "cuisine": "french", + "ingredients": [ + "ground ginger", + "sugar", + "unsalted butter", + "bourbon whiskey", + "all-purpose flour", + "cream sweeten whip", + "water", + "pumpkin", + "vanilla extract", + "maple sugar", + "pecans", + "large egg yolks", + "whole milk", + "salt", + "heavy whipping cream", + "ground cinnamon", + "ground cloves", + "large eggs", + "whipping cream", + "ground allspice" + ] + }, + { + "id": 18877, + "cuisine": "french", + "ingredients": [ + "large eggs", + "bread" + ] + }, + { + "id": 60, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "flank steak", + "sour cream", + "lime juice", + "cilantro sprigs", + "pepper", + "yellow bell pepper", + "onions", + "garlic bulb", + "flour tortillas", + "red bell pepper" + ] + }, + { + "id": 20836, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "garlic powder", + "sesame oil", + "crabmeat", + "white sugar", + "minced garlic", + "water chestnuts", + "salt", + "shrimp", + "soy sauce", + "ground black pepper", + "chopped celery", + "oil", + "white bread", + "water", + "green onions", + "yellow onion", + "fresh parsley" + ] + }, + { + "id": 7399, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "all-purpose flour", + "eggs", + "grated parmesan cheese", + "shredded mozzarella cheese", + "pasta sauce", + "vegetable oil", + "boneless skinless chicken breast halves", + "salt and ground black pepper", + "caesar salad dressing" + ] + }, + { + "id": 40110, + "cuisine": "thai", + "ingredients": [ + "sugar", + "boneless skinless chicken breasts", + "peanut oil", + "eggs", + "lime", + "garlic", + "chopped cilantro fresh", + "rice stick noodles", + "soy sauce", + "crushed red pepper flakes", + "beansprouts", + "fish sauce", + "peanuts", + "rice vinegar", + "sliced green onions" + ] + }, + { + "id": 8050, + "cuisine": "korean", + "ingredients": [ + "sherry vinegar", + "extra-virgin olive oil", + "toasted sesame oil", + "flank steak", + "maple syrup", + "fresh ginger", + "raw sugar", + "scallions", + "lower sodium soy sauce", + "garlic" + ] + }, + { + "id": 44505, + "cuisine": "mexican", + "ingredients": [ + "baking soda", + "buttermilk", + "yellow corn meal", + "large eggs", + "scallions", + "unsalted butter", + "salt", + "sugar", + "jalapeno chilies", + "extra sharp cheddar cheese" + ] + }, + { + "id": 23074, + "cuisine": "spanish", + "ingredients": [ + "fennel seeds", + "large garlic cloves", + "chorizo sausage", + "shallots", + "orzo", + "french bread", + "diced tomatoes", + "orange zest", + "mussels", + "clam juice", + "extra-virgin olive oil" + ] + }, + { + "id": 14180, + "cuisine": "spanish", + "ingredients": [ + "fresh rosemary", + "crushed red pepper", + "bread slices", + "large egg yolks", + "oil", + "capers", + "anchovy fillets", + "pimento stuffed green olives", + "butter", + "fresh lemon juice" + ] + }, + { + "id": 16565, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "adobo", + "rosemary", + "vegetable oil", + "salt", + "thyme", + "onions", + "mussels", + "chipotle chile", + "corn kernels", + "large garlic cloves", + "rice", + "green beans", + "tomatoes", + "water", + "bay leaves", + "extra-virgin olive oil", + "carrots", + "medium shrimp", + "tomato paste", + "kosher salt", + "herbs", + "dry sherry", + "scallions", + "poblano chiles" + ] + }, + { + "id": 27206, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "water", + "paprika", + "flat leaf parsley", + "ground cumin", + "preserved lemon", + "cinnamon", + "salt", + "chopped cilantro fresh", + "green olives", + "olive oil", + "garlic", + "onions", + "tumeric", + "raisins", + "freshly ground pepper", + "chicken" + ] + }, + { + "id": 27570, + "cuisine": "southern_us", + "ingredients": [ + "nutmeg", + "milk", + "vanilla extract", + "eggs", + "cinnamon", + "sauce", + "melted butter", + "cubed bread", + "salt", + "sugar", + "raisins" + ] + }, + { + "id": 45438, + "cuisine": "mexican", + "ingredients": [ + "lime rind", + "chili powder", + "fresh lime juice", + "olive oil", + "salt", + "pepper", + "sea bass fillets", + "dried oregano", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 46631, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "chicken drumsticks", + "ground cayenne pepper", + "ground black pepper", + "all-purpose flour", + "garlic powder", + "buttermilk", + "canola oil", + "onion powder", + "mustard powder" + ] + }, + { + "id": 49141, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "jalapeno chilies", + "garlic", + "cilantro leaves", + "jack", + "queso fresco", + "purple onion", + "chicken stock", + "olive oil", + "tomatillos", + "salt", + "lime", + "boneless skinless chicken breasts", + "crema", + "corn tortillas" + ] + }, + { + "id": 33768, + "cuisine": "irish", + "ingredients": [ + "Irish whiskey", + "beer", + "bittersweet chocolate", + "baking soda", + "salt", + "confectioners sugar", + "unsweetened cocoa powder", + "large eggs", + "all-purpose flour", + "sour cream", + "irish cream liqueur", + "butter", + "heavy whipping cream", + "white sugar" + ] + }, + { + "id": 8722, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "garlic", + "coarse sea salt", + "ground black pepper", + "nonfat yogurt plain", + "fresh ginger", + "extra-virgin olive oil" + ] + }, + { + "id": 22304, + "cuisine": "mexican", + "ingredients": [ + "cooked turkey", + "mole sauce", + "chicken broth", + "creamy peanut butter", + "salt", + "dark chocolate", + "enchilada sauce" + ] + }, + { + "id": 3936, + "cuisine": "mexican", + "ingredients": [ + "tequila", + "sugar", + "fresh lime juice", + "fresh rosemary", + "orchid", + "papaya" + ] + }, + { + "id": 16056, + "cuisine": "french", + "ingredients": [ + "mayonaise", + "fresh lemon juice", + "cold water", + "chips", + "olive oil", + "tomatoes", + "large garlic cloves" + ] + }, + { + "id": 47728, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "light corn syrup", + "chocolate morsels", + "firmly packed light brown sugar", + "refrigerated piecrusts", + "all-purpose flour", + "bourbon whiskey", + "vanilla extract", + "sugar", + "butter", + "chopped pecans" + ] + }, + { + "id": 8661, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "parsley sprigs", + "bay leaves", + "chicken drumsticks", + "flat leaf parsley", + "capers", + "macaroni", + "red wine vinegar", + "garlic cloves", + "green olives", + "olive oil", + "chicken breast halves", + "chopped onion", + "fresh basil", + "sugar", + "ground red pepper", + "chopped celery", + "chicken thighs" + ] + }, + { + "id": 42499, + "cuisine": "vietnamese", + "ingredients": [ + "cooked chicken", + "Italian basil", + "hoisin sauce", + "cilantro", + "Sriracha", + "lime wedges", + "beansprouts", + "low sodium chicken broth", + "rice vermicelli" + ] + }, + { + "id": 4850, + "cuisine": "vietnamese", + "ingredients": [ + "pork", + "ground pepper", + "garlic", + "onions", + "fresh ginger", + "rice noodles", + "fat skimmed chicken broth", + "baby spinach leaves", + "reduced sodium soy sauce", + "rice vinegar", + "peanuts", + "vegetable oil", + "beansprouts" + ] + }, + { + "id": 28166, + "cuisine": "filipino", + "ingredients": [ + "red potato", + "pepper", + "chicken drumsticks", + "bay leaf", + "pork", + "yukon gold potatoes", + "garlic cloves", + "coconut oil", + "water", + "salt", + "white vinegar", + "soy sauce", + "russet potatoes", + "lard" + ] + }, + { + "id": 8004, + "cuisine": "russian", + "ingredients": [ + "potatoes", + "onions", + "butter", + "bacon", + "mozzarella cheese", + "cream cheese" + ] + }, + { + "id": 5709, + "cuisine": "chinese", + "ingredients": [ + "crab", + "ginger", + "corn starch", + "sugar", + "cooking oil", + "oil", + "fish sauce", + "water", + "scallions", + "white pepper", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 41364, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "ground allspice", + "onions", + "cider vinegar", + "yukon gold potatoes", + "carrots", + "chorizo sausage", + "brown sugar", + "bay leaves", + "garlic cloves", + "chopped cilantro fresh", + "water", + "salt", + "poblano chiles" + ] + }, + { + "id": 41275, + "cuisine": "chinese", + "ingredients": [ + "peanuts", + "cilantro", + "sugar", + "leaves", + "soy", + "clove", + "ginger piece", + "oil", + "chili", + "yardlong beans" + ] + }, + { + "id": 9754, + "cuisine": "japanese", + "ingredients": [ + "large eggs", + "pork loin chops", + "pepper", + "salt", + "cabbage", + "flour", + "toasted sesame oil", + "panko", + "oil" + ] + }, + { + "id": 23896, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "zucchini", + "salt", + "chopped parsley", + "olive oil", + "red wine", + "garlic cloves", + "spaghetti", + "low fat cream", + "grated parmesan cheese", + "vegetable stock powder", + "onions", + "extra lean minced beef", + "passata", + "carrots", + "dried oregano" + ] + }, + { + "id": 43198, + "cuisine": "moroccan", + "ingredients": [ + "bread crumb fresh", + "flour", + "cracked black pepper", + "Piment d'Espelette", + "ground lamb", + "tomatoes", + "olive oil", + "shallots", + "ras el hanout", + "chopped fresh mint", + "eggs", + "leaves", + "sea salt", + "carrots", + "chopped cilantro fresh", + "tomato paste", + "milk", + "golden raisins", + "garlic", + "low sodium beef broth" + ] + }, + { + "id": 36055, + "cuisine": "italian", + "ingredients": [ + "warm water", + "salt", + "olive oil", + "bread flour", + "honey", + "yeast", + "fresh rosemary", + "fresh thyme" + ] + }, + { + "id": 3475, + "cuisine": "southern_us", + "ingredients": [ + "water", + "butter", + "self rising flour", + "sugar", + "large eggs", + "active dry yeast" + ] + }, + { + "id": 31300, + "cuisine": "chinese", + "ingredients": [ + "mustard", + "egg roll wrappers", + "napa cabbage", + "scallions", + "fresh ginger", + "vegetable oil", + "sweet and sour sauce", + "carrots", + "soy sauce", + "large eggs", + "ground pork", + "garlic cloves", + "light brown sugar", + "ground pepper", + "coarse salt", + "rice vinegar" + ] + }, + { + "id": 5081, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "sauce", + "white corn tortillas", + "epazote", + "canola oil", + "queso fresco", + "chopped cilantro fresh", + "crema mexicana", + "fresh oregano" + ] + }, + { + "id": 46942, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "tamari soy sauce", + "cooked rice", + "mushrooms", + "garlic cloves", + "beef", + "rice vinegar", + "brown sugar", + "ginger", + "snow peas" + ] + }, + { + "id": 13120, + "cuisine": "japanese", + "ingredients": [ + "ground cinnamon", + "green chilies", + "ginger root", + "chili powder", + "rapeseed oil", + "ground turmeric", + "garam masala", + "hot water", + "frozen peas", + "plain flour", + "salt", + "mustard seeds" + ] + }, + { + "id": 1425, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "cilantro", + "yellow onion", + "iceberg lettuce", + "chicken broth", + "water", + "baking powder", + "all-purpose flour", + "garlic cloves", + "chicken", + "shredded cheddar cheese", + "cooked chicken", + "salt", + "oil", + "masa harina", + "black peppercorns", + "lime juice", + "diced tomatoes", + "salsa", + "lard", + "ground cumin" + ] + }, + { + "id": 23244, + "cuisine": "japanese", + "ingredients": [ + "lettuce", + "water chestnuts", + "garlic", + "soy sauce", + "sesame oil", + "sauce", + "sake", + "green onions", + "rice vinegar", + "ground chicken", + "ginger" + ] + }, + { + "id": 15384, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "cream cheese, soften", + "all-purpose flour", + "pie filling", + "lemon" + ] + }, + { + "id": 32739, + "cuisine": "russian", + "ingredients": [ + "fresh rosemary", + "freshly grated parmesan", + "red russian kale", + "onions", + "minced garlic", + "Vegeta Seasoning", + "chickpeas", + "tomato sauce", + "ground black pepper", + "tuscan sausage", + "chicken stock", + "olive oil", + "tomatoes with juice", + "chopped fresh sage" + ] + }, + { + "id": 29014, + "cuisine": "japanese", + "ingredients": [ + "beef", + "watercress", + "konbu", + "mirin", + "firm tofu", + "Japanese soy sauce", + "dried bonito flakes", + "water", + "dried udon", + "scallions" + ] + }, + { + "id": 45111, + "cuisine": "mexican", + "ingredients": [ + "refrigerated biscuits", + "chiles", + "diced tomatoes", + "colby jack cheese", + "olive oil" + ] + }, + { + "id": 2383, + "cuisine": "italian", + "ingredients": [ + "garlic", + "tomato paste", + "fresh parsley", + "white vinegar", + "anchovy fillets", + "extra-virgin olive oil" + ] + }, + { + "id": 27927, + "cuisine": "japanese", + "ingredients": [ + "water", + "rice vinegar", + "white rice", + "vegetable oil", + "white sugar", + "salt" + ] + }, + { + "id": 41837, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "potatoes", + "beef tongue", + "broth", + "pepper", + "garlic", + "onions", + "soy sauce", + "bay leaves", + "oil", + "tomato sauce", + "water", + "salt", + "peppercorns" + ] + }, + { + "id": 40921, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "all-purpose flour", + "buttermilk", + "self rising flour" + ] + }, + { + "id": 24424, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "dried mint flakes", + "fresh lemon juice", + "basmati rice", + "kosher salt", + "extra-virgin olive oil", + "cucumber", + "ground cumin", + "fennel", + "garlic", + "greek yogurt", + "grape leaves", + "ground black pepper", + "purple onion", + "fresh parsley" + ] + }, + { + "id": 43192, + "cuisine": "french", + "ingredients": [ + "baby carrots", + "vegetable oil", + "orange zest", + "beef", + "onions", + "dry red wine" + ] + }, + { + "id": 37224, + "cuisine": "indian", + "ingredients": [ + "salt", + "ground cumin", + "potatoes", + "onions", + "tomatoes", + "cayenne pepper", + "vegetable oil", + "ground turmeric" + ] + }, + { + "id": 14119, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "shredded mozzarella cheese", + "ricotta cheese", + "pasta sauce", + "jumbo pasta shells" + ] + }, + { + "id": 15350, + "cuisine": "french", + "ingredients": [ + "black peppercorns", + "chopped fresh chives", + "red wine vinegar", + "sour cream", + "water", + "shallots", + "fine sea salt", + "smoked salmon", + "unsalted butter", + "yukon gold potatoes", + "onion tops", + "salmon fillets", + "whole milk", + "dry red wine" + ] + }, + { + "id": 22510, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "cayenne pepper", + "chopped green chilies", + "chili powder", + "onions", + "beef bouillon", + "chipotles in adobo", + "garlic powder", + "bottom round roast", + "ground cumin" + ] + }, + { + "id": 2850, + "cuisine": "southern_us", + "ingredients": [ + "egg whites", + "baking powder", + "cake flour", + "unsalted butter", + "whole milk", + "sweetened coconut flakes", + "salt", + "eggs", + "egg yolks", + "bourbon whiskey", + "cocktail cherries", + "granulated sugar", + "golden raisins", + "vanilla extract", + "chopped pecans" + ] + }, + { + "id": 35377, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "chickpeas", + "basmati rice", + "light coconut milk", + "garlic cloves", + "diced tomatoes", + "chopped onion", + "canola oil", + "curry powder", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 38744, + "cuisine": "french", + "ingredients": [ + "water", + "whole milk", + "armagnac", + "chestnuts", + "unsalted butter", + "salt", + "sugar", + "egg whites", + "corn starch", + "cream of tartar", + "large egg yolks", + "vanilla extract" + ] + }, + { + "id": 41191, + "cuisine": "french", + "ingredients": [ + "whipped topping", + "liquor", + "candy", + "malted milk powder", + "chocolate", + "toasted coconut" + ] + }, + { + "id": 48426, + "cuisine": "italian", + "ingredients": [ + "baby spinach leaves", + "roasted red peppers", + "Italian bread", + "genoa salami", + "prosciutto", + "chees fresh mozzarella", + "ground pepper", + "ricotta cheese", + "olive oil", + "balsamic vinegar", + "fresh basil leaves" + ] + }, + { + "id": 10038, + "cuisine": "french", + "ingredients": [ + "black pepper", + "ground red pepper", + "garlic cloves", + "minced onion", + "salt", + "fresh parmesan cheese", + "1% low-fat milk", + "flounder fillets", + "frozen chopped spinach", + "cooking spray", + "light cream cheese" + ] + }, + { + "id": 24893, + "cuisine": "mexican", + "ingredients": [ + "jack", + "Martha White Cornbread Mix", + "eggs", + "diced tomatoes", + "cooked chicken", + "sour cream", + "corn", + "taco seasoning" + ] + }, + { + "id": 23124, + "cuisine": "thai", + "ingredients": [ + "cooked rice", + "white pepper", + "cooking wine", + "frozen peas", + "sugar", + "shrimp paste", + "shrimp", + "fish sauce", + "green onions", + "chili sauce", + "cashew nuts", + "eggs", + "soy sauce", + "garlic", + "onions" + ] + }, + { + "id": 49363, + "cuisine": "italian", + "ingredients": [ + "water", + "cooking spray", + "bread flour", + "fresh parmesan cheese", + "salt", + "large egg whites", + "cracked black pepper", + "warm water", + "dry yeast", + "cornmeal" + ] + }, + { + "id": 37987, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "shredded cheese", + "taco seasoning mix", + "frozen corn", + "ground beef", + "black olives", + "enchilada sauce", + "frozen tater tots", + "green chilies", + "onions" + ] + }, + { + "id": 2856, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "vegetable oil", + "black bean sauce", + "cracked black pepper", + "minced garlic", + "fresh green bean", + "fresh ginger root" + ] + }, + { + "id": 4326, + "cuisine": "french", + "ingredients": [ + "pitted kalamata olives", + "potatoes", + "large garlic cloves", + "salt", + "noodles", + "celery ribs", + "ground black pepper", + "fresh thyme leaves", + "navel oranges", + "juice", + "polenta", + "fresh rosemary", + "whole peeled tomatoes", + "balsamic vinegar", + "purple onion", + "carrots", + "olive oil", + "low sodium chicken broth", + "red wine", + "all-purpose flour", + "short rib" + ] + }, + { + "id": 15693, + "cuisine": "korean", + "ingredients": [ + "sugar", + "anchovies", + "pepper flakes", + "fishcake", + "green onions", + "dried kelp", + "rice cakes", + "eggs", + "water", + "Gochujang base" + ] + }, + { + "id": 21205, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "kosher salt", + "garlic", + "shrimp", + "chicken thighs", + "coconut oil", + "parsley", + "beef broth", + "celery", + "fresh tomatoes", + "green onions", + "smoked sausage", + "flat leaf parsley", + "black pepper", + "worcestershire sauce", + "okra", + "onions" + ] + }, + { + "id": 10178, + "cuisine": "korean", + "ingredients": [ + "sugar", + "riesling", + "orange", + "cinnamon sticks", + "water", + "star anise", + "fresh ginger", + "pears" + ] + }, + { + "id": 30765, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fat-free chicken broth", + "crimini mushrooms", + "salt", + "broccoli florets", + "purple onion", + "ground ginger", + "cheese tortellini", + "medium shrimp" + ] + }, + { + "id": 22911, + "cuisine": "cajun_creole", + "ingredients": [ + "tasso", + "Crystal Hot Sauce", + "bay leaves", + "light corn syrup", + "purple onion", + "chopped parsley", + "white vinegar", + "kosher salt", + "flour", + "heavy cream", + "garlic", + "cumin seed", + "jumbo shrimp", + "jalapeno chilies", + "red wine vinegar", + "yellow bell pepper", + "creole seasoning", + "black peppercorns", + "unsalted butter", + "shallots", + "crushed red pepper flakes", + "pickled okra", + "canola oil" + ] + }, + { + "id": 36649, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "sweet potatoes", + "light coconut milk", + "lime zest", + "lime", + "vegetable oil", + "chopped cilantro", + "cooked brown rice", + "shallots", + "steak", + "roasted cashews", + "fresh ginger", + "Thai red curry paste" + ] + }, + { + "id": 4999, + "cuisine": "vietnamese", + "ingredients": [ + "eggs", + "mixed vegetables", + "olive oil", + "medium shrimp", + "cooked rice", + "sauce", + "vegetables" + ] + }, + { + "id": 36871, + "cuisine": "british", + "ingredients": [ + "red beets", + "whole allspice", + "horseradish", + "malt vinegar", + "black peppercorns", + "pickling salt" + ] + }, + { + "id": 34776, + "cuisine": "brazilian", + "ingredients": [ + "fresh lime juice", + "lime", + "cachaca", + "superfine sugar" + ] + }, + { + "id": 31363, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "sugar", + "buttermilk", + "flour", + "salt", + "butter" + ] + }, + { + "id": 25665, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "black sesame seeds", + "carrots", + "tofu", + "mirin", + "seaweed", + "soy sauce", + "vegetable oil", + "hot water", + "dashi powder", + "seasoned rice wine vinegar", + "toasted sesame oil" + ] + }, + { + "id": 3055, + "cuisine": "japanese", + "ingredients": [ + "egg yolks", + "sugar", + "heavy cream", + "matcha green tea powder", + "milk", + "hot water" + ] + }, + { + "id": 7299, + "cuisine": "french", + "ingredients": [ + "eggs", + "milk", + "salt", + "water", + "heavy cream", + "confectioners sugar", + "sliced almonds", + "unsalted butter", + "all-purpose flour", + "pastry cream", + "vanilla extract" + ] + }, + { + "id": 23669, + "cuisine": "french", + "ingredients": [ + "raspberry jam", + "water", + "rosé wine", + "confectioners sugar", + "pure vanilla extract", + "icing mix", + "large eggs", + "cognac", + "sugar", + "marzipan", + "cake flour", + "poured fondant", + "food gel", + "unsalted butter", + "salt" + ] + }, + { + "id": 22520, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "orange flower water", + "green olives", + "olive oil", + "chopped cilantro fresh", + "orange", + "fresh lemon juice", + "sugar", + "ground black pepper" + ] + }, + { + "id": 25276, + "cuisine": "italian", + "ingredients": [ + "pepper", + "extra-virgin olive oil", + "fresh mint", + "pinenuts", + "baby arugula", + "garlic cloves", + "kosher salt", + "sheep’s milk cheese", + "lemon juice", + "zucchini", + "vietnamese fish sauce" + ] + }, + { + "id": 19718, + "cuisine": "southern_us", + "ingredients": [ + "matzo meal", + "paprika", + "ground white pepper", + "large eggs", + "lemon juice", + "olive oil", + "salt", + "onions", + "baking potatoes", + "carrots" + ] + }, + { + "id": 18719, + "cuisine": "french", + "ingredients": [ + "stock", + "white beans", + "zucchini", + "celery", + "chopped tomatoes", + "carrots", + "italian sausage", + "leeks" + ] + }, + { + "id": 15069, + "cuisine": "jamaican", + "ingredients": [ + "chicken wings", + "vegetable oil", + "peeled fresh ginger", + "jamaican jerk season", + "garlic", + "pickled jalapeno peppers", + "green onions" + ] + }, + { + "id": 36061, + "cuisine": "cajun_creole", + "ingredients": [ + "sausage links", + "celery", + "tomatoes", + "parsley", + "chicken broth", + "dried thyme", + "onions", + "green bell pepper", + "cajun seasoning" + ] + }, + { + "id": 33699, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "fermented black beans", + "canola", + "noodles", + "gai lan", + "onions", + "scallion greens", + "oyster sauce" + ] + }, + { + "id": 22991, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "butter", + "fresh mushrooms", + "green bell pepper", + "pimentos", + "white rice", + "cooked shrimp", + "zucchini", + "diced tomatoes", + "carrots", + "tomato sauce", + "chili powder", + "chopped celery", + "onions" + ] + }, + { + "id": 25641, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "salt", + "onions", + "minced garlic", + "vegetable oil", + "cayenne pepper", + "andouille sausage", + "green onions", + "all-purpose flour", + "chicken thighs", + "water", + "cajun seasoning", + "celery" + ] + }, + { + "id": 22266, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "thai basil", + "oxtails", + "star anise", + "onions", + "water", + "hoisin sauce", + "daikon", + "cinnamon sticks", + "sliced green onions", + "fish sauce", + "coriander seeds", + "whole cloves", + "ginger", + "chopped cilantro", + "red chili peppers", + "Sriracha", + "lime wedges", + "carrots", + "noodles" + ] + }, + { + "id": 8698, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "water", + "pandanus leaf", + "fenugreek seeds", + "coconut milk", + "tomato sauce", + "fresh ginger", + "curry", + "green chilies", + "chicken", + "tumeric", + "curry powder", + "garlic", + "green cardamom", + "onions", + "clove", + "pepper", + "lemon grass", + "salt", + "cinnamon sticks" + ] + }, + { + "id": 3371, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "white sugar", + "salt", + "ginger", + "chopped garlic", + "white vinegar", + "chillies" + ] + }, + { + "id": 26116, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "warm water", + "all-purpose flour", + "dry yeast", + "cornmeal", + "salt" + ] + }, + { + "id": 43771, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "meat tenderizer", + "chopped cilantro fresh", + "garlic", + "fresh lemon juice", + "ground cumin", + "plain yogurt", + "salt", + "chicken pieces", + "paprika", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 45586, + "cuisine": "jamaican", + "ingredients": [ + "tomatoes", + "lime", + "onions", + "chiles", + "garlic cloves", + "black pepper", + "coconut milk", + "fish fillets", + "corn oil" + ] + }, + { + "id": 33339, + "cuisine": "mexican", + "ingredients": [ + "long-grain rice", + "refried beans", + "chopped cilantro fresh", + "picante sauce", + "poblano chiles", + "Mexican cheese blend" + ] + }, + { + "id": 32981, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "large eggs", + "extra-virgin olive oil", + "fresh oregano", + "organic vegetable broth", + "ground cloves", + "butter", + "salt", + "chopped onion", + "romano cheese", + "cooking spray", + "1% low-fat milk", + "bulgur", + "garlic cloves", + "eggplant", + "diced tomatoes", + "all-purpose flour", + "ground allspice" + ] + }, + { + "id": 8253, + "cuisine": "french", + "ingredients": [ + "sugar", + "heavy cream", + "water", + "lemon juice", + "marsala wine", + "strawberries", + "egg yolks" + ] + }, + { + "id": 8592, + "cuisine": "southern_us", + "ingredients": [ + "Southern Comfort Liqueur", + "orange juice", + "ground cinnamon", + "butter", + "light brown sugar", + "sweet potatoes", + "chopped pecans", + "eggs", + "salt" + ] + }, + { + "id": 48436, + "cuisine": "indian", + "ingredients": [ + "ginger", + "chopped cilantro", + "kosher salt", + "garlic cloves", + "curry powder", + "lemon juice", + "cayenne pepper", + "plain whole-milk yogurt" + ] + }, + { + "id": 6475, + "cuisine": "british", + "ingredients": [ + "sugar", + "salt", + "shortening", + "nonfat powdered milk", + "warm water", + "all-purpose flour", + "vegetable oil cooking spray", + "dry yeast", + "hot water" + ] + }, + { + "id": 16157, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "minced garlic", + "cilantro", + "lemon", + "medium tomatoes", + "salt" + ] + }, + { + "id": 17732, + "cuisine": "russian", + "ingredients": [ + "celery ribs", + "gelatin", + "carrots", + "peppercorns", + "pig", + "salt", + "dark turkey meat", + "pork", + "veal", + "bay leaf", + "broth", + "ground black pepper", + "garlic cloves", + "onions" + ] + }, + { + "id": 47542, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "fresh cilantro", + "salt", + "onions", + "lump crab meat", + "cooking spray", + "corn tortillas", + "dried oregano", + "chihuahua cheese", + "radishes", + "garlic cloves", + "serrano chile", + "white vinegar", + "water", + "tomatillos", + "fresh lime juice", + "iceberg lettuce" + ] + }, + { + "id": 42862, + "cuisine": "irish", + "ingredients": [ + "water", + "dry mustard", + "golden delicious apples", + "chopped onion", + "dried apricot", + "crushed red pepper", + "cider vinegar", + "raisins", + "pumpkin pie spice" + ] + }, + { + "id": 38593, + "cuisine": "french", + "ingredients": [ + "fine sea salt", + "sweet potatoes", + "vegetable oil" + ] + }, + { + "id": 28763, + "cuisine": "japanese", + "ingredients": [ + "water", + "brown rice", + "corn starch", + "low sodium soy sauce", + "granulated sugar", + "cracked black pepper", + "ground ginger", + "sesame seeds", + "apple cider vinegar", + "minced garlic", + "boneless skinless chicken breasts", + "scallions" + ] + }, + { + "id": 5430, + "cuisine": "southern_us", + "ingredients": [ + "spelt", + "red pepper flakes", + "onions", + "sage leaves", + "parmigiano reggiano cheese", + "white beans", + "whole peeled tomatoes", + "extra-virgin olive oil", + "collard greens", + "coarse salt", + "freshly ground pepper" + ] + }, + { + "id": 26550, + "cuisine": "cajun_creole", + "ingredients": [ + "pure olive oil", + "sweet onion", + "creole seasoning", + "carrots", + "sirloin", + "dry red wine", + "okra", + "tomatoes", + "beef bouillon granules", + "frozen corn kernels", + "red bell pepper", + "celery ribs", + "baby lima beans", + "all-purpose flour", + "garlic cloves" + ] + }, + { + "id": 4373, + "cuisine": "italian", + "ingredients": [ + "whole wheat pizza dough", + "garlic", + "frozen spinach", + "part-skim mozzarella cheese", + "olive oil", + "pepper flakes", + "ricotta cheese" + ] + }, + { + "id": 15803, + "cuisine": "japanese", + "ingredients": [ + "sushi rice", + "english cucumber", + "avocado", + "rice vinegar", + "toasted sesame seeds", + "gari", + "carrots", + "soy sauce", + "seaweed" + ] + }, + { + "id": 21128, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "all purpose unbleached flour", + "olive oil", + "warm water", + "salt" + ] + }, + { + "id": 27671, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "cooking spray", + "garlic cloves", + "chopped cilantro fresh", + "picante sauce", + "salt", + "fresh lime juice", + "beans", + "tomatillos", + "corn tortillas", + "avocado", + "jalapeno chilies", + "chopped onion", + "low fat monterey jack cheese" + ] + }, + { + "id": 35025, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lemongrass", + "thai basil", + "rice vermicelli", + "green chilies", + "red bell pepper", + "haricots verts", + "soy sauce", + "olive oil", + "shallots", + "cilantro leaves", + "carrots", + "mango", + "mint", + "minced garlic", + "peanuts", + "sesame oil", + "chili sauce", + "shrimp", + "brown sugar", + "lime", + "palm sugar", + "salt", + "scallions", + "toasted sesame seeds" + ] + }, + { + "id": 6630, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "fresh thyme", + "garlic", + "red bell pepper", + "pancetta", + "ground black pepper", + "red beans", + "salt", + "fresh parsley", + "seasoning", + "bay leaves", + "smoked sausage", + "cooked white rice", + "celery ribs", + "cayenne", + "green onions", + "yellow onion" + ] + }, + { + "id": 48693, + "cuisine": "mexican", + "ingredients": [ + "Daisy Sour Cream", + "cooked ham", + "chili powder", + "pico de gallo", + "Mexican cheese blend", + "salt", + "eggs", + "milk", + "onion powder", + "green bell pepper", + "hash brown", + "dried oregano" + ] + }, + { + "id": 7400, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "fresh parsley", + "minced garlic", + "crushed red pepper", + "arborio rice", + "butter", + "large shrimp", + "finely chopped onion", + "low salt chicken broth" + ] + }, + { + "id": 29530, + "cuisine": "french", + "ingredients": [ + "milk", + "vanilla", + "sugar", + "large egg yolks" + ] + }, + { + "id": 33040, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "tomato juice", + "garlic", + "fresh lemon juice", + "ground turmeric", + "pepper", + "chopped tomatoes", + "chili powder", + "ground coriander", + "onions", + "plain yogurt", + "fresh ginger", + "potatoes", + "salt", + "chopped cilantro", + "ground cumin", + "water", + "garam masala", + "paprika", + "cumin seed", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 9774, + "cuisine": "southern_us", + "ingredients": [ + "water", + "coconut sugar", + "frozen strawberries", + "simple syrup", + "tea bags" + ] + }, + { + "id": 18680, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "cannoli shells", + "chopped pecans", + "granulated sugar", + "heavy cream", + "mascarpone", + "butter", + "pears", + "lemon zest", + "sauce" + ] + }, + { + "id": 38419, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh basil", + "olive oil", + "salt", + "fillet red snapper", + "chopped green bell pepper", + "chopped onion", + "low sodium worcestershire sauce", + "ground black pepper", + "hot sauce", + "tomatoes", + "dried basil", + "red wine vinegar", + "garlic cloves" + ] + }, + { + "id": 6285, + "cuisine": "italian", + "ingredients": [ + "Ragu Sauce", + "spaghetti", + "water" + ] + }, + { + "id": 10188, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "rice flour", + "water" + ] + }, + { + "id": 37336, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "prepared guacamole", + "black beans", + "shredded sharp cheddar cheese", + "chopped cilantro fresh", + "strip steaks", + "quick cooking brown rice", + "freshly ground pepper", + "water", + "salsa", + "canola oil" + ] + }, + { + "id": 9103, + "cuisine": "chinese", + "ingredients": [ + "spring roll wrappers", + "water", + "cilantro stems", + "crushed red pepper flakes", + "coconut milk", + "red chili peppers", + "fresh ginger", + "spring onions", + "scallions", + "kosher salt", + "jalapeno chilies", + "chicken breasts", + "garlic cloves", + "sweetened coconut", + "lemongrass", + "taro", + "bacon fat", + "canola oil" + ] + }, + { + "id": 3553, + "cuisine": "mexican", + "ingredients": [ + "salt", + "enchilada sauce", + "cilantro", + "boneless pork loin", + "dried oregano", + "white hominy", + "cayenne pepper", + "onions", + "garlic", + "green chilies", + "canola oil" + ] + }, + { + "id": 43309, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "butter", + "lemon juice", + "water", + "salt", + "frozen blueberries", + "ground cinnamon", + "baking powder", + "all-purpose flour", + "grated lemon peel", + "sugar", + "2% reduced-fat milk", + "corn starch" + ] + }, + { + "id": 23906, + "cuisine": "italian", + "ingredients": [ + "honey", + "italian seasoning", + "tomato paste", + "parmesan cheese", + "olive oil", + "dried basil", + "frozen bread dough" + ] + }, + { + "id": 38636, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "coconut milk", + "coconut oil", + "garlic", + "cabbage", + "fish sauce", + "chili paste", + "onions", + "curry powder", + "shrimp" + ] + }, + { + "id": 1888, + "cuisine": "japanese", + "ingredients": [ + "seasoning", + "chili powder", + "shiso leaves", + "chicken pieces", + "soy sauce", + "sea salt", + "garlic cloves", + "gari", + "ginger", + "cucumber", + "sake", + "miso", + "dark brown sugar" + ] + }, + { + "id": 20684, + "cuisine": "japanese", + "ingredients": [ + "water", + "mirin", + "butter", + "ground beef", + "nutmeg", + "dashi", + "curry sauce", + "salt", + "low sodium soy sauce", + "panko", + "fresh mozzarella", + "red bell pepper", + "curry powder", + "large eggs", + "ground pork", + "onions" + ] + }, + { + "id": 35346, + "cuisine": "southern_us", + "ingredients": [ + "raspberries", + "bourbon whiskey", + "honey", + "iced tea", + "water", + "simple syrup", + "honey liqueur" + ] + }, + { + "id": 7966, + "cuisine": "mexican", + "ingredients": [ + "cider vinegar", + "garlic cloves", + "white onion", + "salt", + "water", + "chopped cilantro fresh", + "tomatoes", + "jalapeno chilies" + ] + }, + { + "id": 39601, + "cuisine": "russian", + "ingredients": [ + "caraway seeds", + "cider vinegar", + "potatoes", + "salt", + "onions", + "celery stick", + "chopped tomatoes", + "butter", + "carrots", + "fresh dill", + "honey", + "vegetable stock", + "beets", + "black pepper", + "red cabbage", + "passata", + "sour cream" + ] + }, + { + "id": 24233, + "cuisine": "italian", + "ingredients": [ + "seedless cucumber", + "ricard", + "water", + "sugar" + ] + }, + { + "id": 18279, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "enokitake", + "chili oil", + "scallions", + "white vinegar", + "black fungus", + "sesame oil", + "salt", + "ground white pepper", + "soy sauce", + "lily buds", + "cilantro", + "corn starch", + "chicken broth", + "shiitake", + "red wine vinegar", + "firm tofu", + "bamboo shoots" + ] + }, + { + "id": 7683, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "plum tomatoes", + "cilantro", + "shrimp", + "ground black pepper", + "salt", + "garlic", + "fresh lime juice" + ] + }, + { + "id": 23446, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "buttermilk", + "cayenne pepper", + "chicken", + "hot pepper sauce", + "pink peppercorns", + "peanut oil", + "kosher salt", + "onion powder", + "all-purpose flour", + "fresh lime juice", + "clover honey", + "unsalted butter", + "paprika", + "grate lime peel" + ] + }, + { + "id": 12231, + "cuisine": "italian", + "ingredients": [ + "pepper", + "diced tomatoes", + "flat leaf parsley", + "kosher salt", + "lasagna noodles", + "ricotta", + "swiss chard", + "garlic", + "mozzarella cheese", + "grated parmesan cheese", + "fresh oregano" + ] + }, + { + "id": 10382, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "dark rum", + "walnut halves", + "large egg yolks", + "salt", + "water", + "french bread", + "grated lemon peel", + "sugar", + "instant espresso powder", + "walnuts" + ] + }, + { + "id": 7640, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "low-fat mayonnaise", + "sour cream", + "shredded cheddar cheese", + "green pepper", + "garlic and herb seasoning", + "chopped celery", + "biscuits", + "butter", + "chopped onion" + ] + }, + { + "id": 41796, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "all-purpose flour", + "finely chopped onion", + "pepperoni turkei", + "garlic cloves", + "tomato juice", + "baking powder", + "shredded mozzarella cheese", + "large eggs", + "salt", + "dried oregano" + ] + }, + { + "id": 23360, + "cuisine": "french", + "ingredients": [ + "water", + "salt", + "dry yeast", + "large egg whites", + "bread flour", + "warm water", + "cooking spray" + ] + }, + { + "id": 25630, + "cuisine": "southern_us", + "ingredients": [ + "water", + "onions", + "bacon drippings", + "red bell pepper", + "sugar", + "collards", + "dry white wine" + ] + }, + { + "id": 9482, + "cuisine": "chinese", + "ingredients": [ + "spareribs", + "sesame oil", + "hoisin sauce", + "cilantro sprigs", + "plum sauce", + "large garlic cloves", + "peeled fresh ginger" + ] + }, + { + "id": 14625, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "cooking spray", + "ginger", + "fenugreek seeds", + "chutney", + "tumeric", + "potatoes", + "seeds", + "urad dal", + "carrots", + "black pepper", + "bell pepper", + "chili powder", + "curry", + "mustard seeds", + "Indian spice", + "olive oil", + "lettuce leaves", + "red", + "rice", + "onions" + ] + }, + { + "id": 35170, + "cuisine": "filipino", + "ingredients": [ + "vinegar", + "oil", + "soy sauce", + "garlic", + "filipino eggplant", + "thai chile", + "pepper", + "salt" + ] + }, + { + "id": 23291, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "ground black pepper", + "fresh rosemary", + "olive oil", + "yellow corn meal", + "minced garlic", + "olive oil flavored cooking spray", + "kosher salt", + "bread dough" + ] + }, + { + "id": 22667, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "parmesan cheese", + "garlic cloves", + "tomatoes", + "pepper", + "salt", + "white wine", + "fresh thyme leaves", + "ground beef", + "fresh rosemary", + "olive oil", + "scallions" + ] + }, + { + "id": 5351, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "cilantro", + "oregano", + "chiles", + "chicken breasts", + "yellow onion", + "chicken broth", + "jalapeno chilies", + "garlic", + "cumin", + "lime", + "diced tomatoes", + "celery" + ] + }, + { + "id": 38248, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "center cut pork chops", + "sugar", + "shallots", + "minced garlic", + "thai chile", + "fish sauce", + "ground black pepper" + ] + }, + { + "id": 5332, + "cuisine": "cajun_creole", + "ingredients": [ + "powdered sugar", + "active dry yeast", + "water", + "salt", + "sugar", + "butter", + "eggs", + "milk", + "all-purpose flour" + ] + }, + { + "id": 45065, + "cuisine": "british", + "ingredients": [ + "eggs", + "milk", + "chips", + "old bay seasoning", + "filet", + "ground cumin", + "black pepper", + "flour", + "coarse sea salt", + "salt", + "canola oil", + "ketchup", + "jalapeno chilies", + "instant potato flakes", + "purple onion", + "cornmeal", + "pickles", + "potatoes", + "vegetable oil", + "paprika", + "corn starch" + ] + }, + { + "id": 25612, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "baking powder", + "all-purpose flour", + "large eggs", + "almond extract", + "sugar", + "vegetable oil", + "chop fine pecan", + "salt" + ] + }, + { + "id": 7693, + "cuisine": "italian", + "ingredients": [ + "white vermouth", + "water", + "garlic", + "lemon juice", + "capers", + "chicken breast halves", + "all-purpose flour", + "low-fat plain yogurt", + "olive oil", + "salt", + "pepper", + "paprika", + "margarine" + ] + }, + { + "id": 38051, + "cuisine": "italian", + "ingredients": [ + "country bread", + "garlic" + ] + }, + { + "id": 46750, + "cuisine": "russian", + "ingredients": [ + "dried tarragon leaves", + "salt", + "fresh mushrooms", + "cabbage", + "butter", + "cream cheese", + "marjoram", + "pepper", + "all-purpose flour", + "onions", + "eggs", + "basil dried leaves", + "dried dillweed", + "white sugar" + ] + }, + { + "id": 15850, + "cuisine": "british", + "ingredients": [ + "milk chocolate", + "Crispy Rice Cereal" + ] + }, + { + "id": 27978, + "cuisine": "italian", + "ingredients": [ + "pasta shell small", + "green onions", + "sausages", + "dried oregano", + "tomatoes", + "sliced black olives", + "salt", + "sliced mushrooms", + "green bell pepper", + "grated parmesan cheese", + "shredded mozzarella cheese", + "red bell pepper", + "ground black pepper", + "garlic", + "salad dressing" + ] + }, + { + "id": 9709, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "onions", + "bacon", + "fajita seasoning mix", + "tomatoes", + "cilantro", + "shredded Monterey Jack cheese", + "bell pepper", + "skirt steak" + ] + }, + { + "id": 12256, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "lemon juice", + "unsalted butter", + "cinnamon sticks", + "pectin", + "granulated sugar", + "vanilla beans", + "bourbon whiskey" + ] + }, + { + "id": 8045, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "Sriracha", + "chicken breasts", + "corn starch", + "fish sauce", + "hoisin sauce", + "sesame oil", + "red bell pepper", + "soy sauce", + "low sodium chicken broth", + "rice noodles", + "zucchini", + "green onions", + "crushed red pepper flakes" + ] + }, + { + "id": 31835, + "cuisine": "italian", + "ingredients": [ + "guanciale", + "ground black pepper", + "garlic", + "kosher salt", + "crushed red pepper flakes", + "peeled tomatoes", + "extra-virgin olive oil", + "pecorino cheese", + "minced onion", + "bucatini" + ] + }, + { + "id": 3721, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "baby bok choy", + "garlic cloves", + "red pepper flakes", + "soy sauce", + "toasted sesame oil" + ] + }, + { + "id": 24220, + "cuisine": "italian", + "ingredients": [ + "spinach", + "olive oil", + "garlic", + "celery", + "water", + "grated parmesan cheese", + "white beans", + "onions", + "sausage casings", + "ground black pepper", + "salt", + "bay leaf", + "dried thyme", + "diced tomatoes", + "carrots" + ] + }, + { + "id": 16215, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "ginger", + "ground cumin", + "plain yogurt", + "chili powder", + "onion rings", + "tomatoes", + "chicken breasts", + "garlic", + "garam masala", + "lemon", + "ground turmeric" + ] + }, + { + "id": 12427, + "cuisine": "italian", + "ingredients": [ + "water", + "fresh thyme leaves", + "dry sherry", + "garlic cloves", + "pepper", + "yoghurt", + "worcestershire sauce", + "chopped onion", + "olive oil", + "baby spinach", + "vegetable broth", + "corn starch", + "fresh parmesan cheese", + "portabello mushroom", + "salt", + "polenta" + ] + }, + { + "id": 9538, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "pitted green olives", + "ripe olives", + "black pepper", + "fresh parmesan cheese", + "crushed red pepper", + "dried oregano", + "minced garlic", + "dry white wine", + "chopped onion", + "sugar", + "olive oil", + "linguine", + "fresh parsley" + ] + }, + { + "id": 13278, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "chorizo", + "green onions", + "beef broth", + "ground beef", + "black pepper", + "parmesan cheese", + "paprika", + "garlic cloves", + "cumin", + "tomato sauce", + "olive oil", + "red pepper flakes", + "cherry preserves", + "fresh parsley", + "bread crumbs", + "flour", + "salt", + "bay leaf", + "ground cumin" + ] + }, + { + "id": 21115, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "black beans", + "corn", + "minced onion", + "purple onion", + "tortilla chips", + "fresh lime juice", + "ground cumin", + "tomatoes", + "water", + "garlic powder", + "green onions", + "hot sauce", + "shrimp", + "chopped cilantro", + "avocado", + "pepper", + "olive oil", + "guacamole", + "salt", + "shredded cheese", + "bay leaf", + "black pepper", + "fresh cilantro", + "quinoa", + "chili powder", + "chopped onion", + "sour cream", + "dried oregano" + ] + }, + { + "id": 42428, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "vegetable oil", + "beer", + "large shrimp", + "chicken stock", + "large eggs", + "heavy cream", + "garlic cloves", + "cheddar cheese", + "jalapeno chilies", + "fresh tarragon", + "grits", + "tasso", + "unsalted butter", + "butter", + "freshly ground pepper" + ] + }, + { + "id": 29988, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "feta cheese crumbles", + "spinach", + "extra-virgin olive oil", + "capers", + "balsamic vinegar", + "penne", + "garlic cloves" + ] + }, + { + "id": 37477, + "cuisine": "italian", + "ingredients": [ + "orange", + "cured meats", + "extra-virgin olive oil", + "cayenne pepper", + "seedless red grapes", + "sugar", + "whole wheat flour", + "grated parmesan cheese", + "purple onion", + "champagne vinegar", + "water", + "vegetables", + "whole milk", + "salt", + "bay leaf", + "fresh rosemary", + "active dry yeast", + "dijon mustard", + "crushed red pepper", + "mustard seeds", + "canola oil" + ] + }, + { + "id": 45615, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "garlic", + "cumin", + "plain yogurt", + "chili powder", + "cilantro leaves", + "tomatoes", + "flour tortillas", + "salt", + "black beans", + "shredded lettuce", + "cayenne pepper" + ] + }, + { + "id": 41152, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "chili powder", + "garlic salt", + "cooked rice", + "flour tortillas", + "green pepper", + "ground cumin", + "lime", + "cheese", + "chicken", + "black beans", + "green onions", + "sour cream" + ] + }, + { + "id": 24680, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "salt", + "reduced fat milk", + "walnut halves", + "linguine", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 41692, + "cuisine": "indian", + "ingredients": [ + "urad dal", + "oil", + "fenugreek seeds", + "salt", + "poha", + "rice" + ] + }, + { + "id": 7101, + "cuisine": "italian", + "ingredients": [ + "kahlúa", + "coffee granules", + "unsweetened cocoa powder", + "sugar", + "egg whites", + "powdered sugar", + "water", + "hot water", + "ladyfingers", + "reduced fat cream cheese", + "whipped topping" + ] + }, + { + "id": 37781, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "kosher salt", + "ground black pepper", + "dry red wine", + "almond milk", + "onions", + "tomato paste", + "eggplant", + "bay leaves", + "garlic", + "carrots", + "soy sauce", + "miso paste", + "button mushrooms", + "fresh parsley leaves", + "celery", + "pasta", + "shiitake", + "whole peeled tomatoes", + "extra-virgin olive oil", + "juice", + "fresh basil leaves" + ] + }, + { + "id": 35540, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salsa", + "cilantro", + "corn tortillas", + "vegetable oil", + "steak", + "salt", + "onions" + ] + }, + { + "id": 24496, + "cuisine": "indian", + "ingredients": [ + "strong white bread flour", + "yoghurt", + "cilantro leaves", + "water", + "vegetable oil", + "yeast", + "fresh coriander", + "black onion seeds", + "garlic cloves", + "honey", + "salt" + ] + }, + { + "id": 20737, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "fresh mozzarella", + "fresh parmesan cheese", + "fresh basil leaves", + "olive oil", + "pizza doughs", + "prepar pesto", + "roma tomatoes" + ] + }, + { + "id": 9662, + "cuisine": "mexican", + "ingredients": [ + "water", + "bacon slices", + "garlic cloves", + "dried black beans", + "lime wedges", + "fresh onion", + "chicken stock", + "dried thyme", + "salt", + "corn tortillas", + "low-fat sour cream", + "bay leaves", + "chopped onion" + ] + }, + { + "id": 15267, + "cuisine": "spanish", + "ingredients": [ + "fingerling potatoes", + "spanish paprika", + "extra-virgin olive oil", + "green beans", + "sherry vinegar", + "salt", + "cauliflower florets", + "garlic cloves" + ] + }, + { + "id": 36459, + "cuisine": "italian", + "ingredients": [ + "florets", + "olive oil", + "grated lemon peel", + "grated parmesan cheese", + "chopped garlic", + "water", + "broccoli" + ] + }, + { + "id": 45928, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "white miso", + "kochujang", + "cod", + "Shaoxing wine", + "raw cane sugar" + ] + }, + { + "id": 22671, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "mein", + "salt", + "shrimp", + "soy sauce", + "shredded carrots", + "garlic cloves", + "pork", + "cooking oil", + "scallions", + "dark soy sauce", + "water", + "shredded cabbage", + "oyster sauce" + ] + }, + { + "id": 42576, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "large egg whites", + "finely chopped onion", + "cooked chicken", + "ham", + "black pepper", + "fresh parmesan cheese", + "cooking spray", + "salt", + "chicken stock", + "olive oil", + "reduced fat milk", + "large garlic cloves", + "manicotti", + "dried basil", + "ground nutmeg", + "ground red pepper", + "all-purpose flour" + ] + }, + { + "id": 42600, + "cuisine": "chinese", + "ingredients": [ + "chili pepper", + "Shaoxing wine", + "peanut oil", + "soy sauce", + "fresh ginger", + "szechwan peppercorns", + "corn starch", + "sugar", + "minced garlic", + "leeks", + "scallions", + "boneless chicken skinless thigh", + "peanuts", + "chili bean paste", + "chinese black vinegar" + ] + }, + { + "id": 7736, + "cuisine": "french", + "ingredients": [ + "active dry yeast", + "extra-virgin olive oil", + "fennel seeds", + "parmigiano reggiano cheese", + "all-purpose flour", + "warm water", + "large eggs", + "yellow onion", + "dijon mustard", + "salt" + ] + }, + { + "id": 40935, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "chopped celery", + "milk", + "chopped onion", + "black pepper", + "salt", + "chicken broth", + "buttermilk cornbread", + "poultry seasoning" + ] + }, + { + "id": 11523, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "ginger", + "peanut oil", + "white sesame seeds", + "soy sauce", + "ground sichuan pepper", + "creamy peanut butter", + "cucumber", + "sugar", + "sesame oil", + "Chinese sesame paste", + "carrots", + "Chinese rice vinegar", + "chili paste", + "sauce", + "scallions", + "spaghetti" + ] + }, + { + "id": 25045, + "cuisine": "southern_us", + "ingredients": [ + "water", + "ground cinnamon", + "apples", + "brown sugar" + ] + }, + { + "id": 9575, + "cuisine": "thai", + "ingredients": [ + "large eggs", + "beansprouts", + "chopped cilantro fresh", + "sugar", + "red pepper flakes", + "medium shrimp", + "canola oil", + "rice noodles", + "fresh lime juice", + "asian fish sauce", + "unsalted roasted peanuts", + "garlic", + "chopped fresh mint", + "sliced green onions" + ] + }, + { + "id": 2045, + "cuisine": "russian", + "ingredients": [ + "potatoes", + "all-purpose flour", + "ground chicken", + "beaten eggs", + "ground beef", + "vegetable oil", + "yellow onion", + "ground black pepper", + "salt" + ] + }, + { + "id": 30496, + "cuisine": "vietnamese", + "ingredients": [ + "fresh cilantro", + "garlic cloves", + "chicken wings", + "fresh ginger", + "black peppercorns", + "nam pla", + "sugar", + "shallots" + ] + }, + { + "id": 4742, + "cuisine": "mexican", + "ingredients": [ + "hot sauce", + "brown sugar", + "chicken thighs", + "cayenne pepper", + "paprika" + ] + }, + { + "id": 44073, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "cream cheese", + "salsa", + "cooked chicken", + "sour cream", + "Mexican cheese blend", + "cheese sauce" + ] + }, + { + "id": 17536, + "cuisine": "japanese", + "ingredients": [ + "sticky rice", + "carrots", + "english cucumber", + "lobster meat", + "seasoned rice wine vinegar", + "tempura batter", + "soy sauce", + "oil", + "nori" + ] + }, + { + "id": 39776, + "cuisine": "chinese", + "ingredients": [ + "straw mushrooms", + "lo mein noodles", + "corn starch", + "sliced green onions", + "baby bok choy", + "water", + "vegetable oil", + "medium shrimp", + "white pepper", + "halibut fillets", + "oyster sauce", + "snow peas", + "sake", + "fat free less sodium chicken broth", + "sliced carrots", + "baby corn" + ] + }, + { + "id": 47755, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "worcestershire sauce", + "corn flour", + "sugar", + "spring onions", + "garlic", + "chillies", + "vegetables", + "ginger", + "celery", + "pork", + "spices", + "oyster sauce", + "coriander" + ] + }, + { + "id": 37915, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "ice cubes", + "cachaca", + "lemon slices", + "turbinado" + ] + }, + { + "id": 37818, + "cuisine": "chinese", + "ingredients": [ + "coconut extract", + "boiling water", + "egg whites", + "evaporated milk", + "unflavored gelatin", + "white sugar" + ] + }, + { + "id": 46966, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "olive oil", + "boneless chop pork", + "garlic", + "mozzarella cheese", + "fresh oregano", + "fresh basil", + "salt and ground black pepper" + ] + }, + { + "id": 40417, + "cuisine": "chinese", + "ingredients": [ + "jasmine rice", + "hoisin sauce", + "ginger", + "toasted sesame seeds", + "honey", + "sesame oil", + "duck", + "pepper", + "spring onions", + "rice vinegar", + "peaches", + "sea salt", + "chinese five-spice powder" + ] + }, + { + "id": 17497, + "cuisine": "mexican", + "ingredients": [ + "coconut extract", + "fat free whipped topping", + "dark rum", + "salt", + "pure vanilla extract", + "sugar", + "egg whites", + "light coconut milk", + "evaporated skim milk", + "brown sugar", + "bananas", + "baking powder", + "sweetened condensed milk", + "light butter", + "skim milk", + "toasted shredded coconut", + "cake flour" + ] + }, + { + "id": 42082, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "large egg whites", + "vanilla extract", + "large egg yolks", + "salt", + "whipping cream", + "dark brown sugar" + ] + }, + { + "id": 8092, + "cuisine": "greek", + "ingredients": [ + "bread ciabatta", + "romaine lettuce leaves", + "feta cheese crumbles", + "ground pepper", + "kalamata", + "cucumber", + "coarse salt", + "extra-virgin olive oil", + "tomatoes", + "red wine vinegar", + "purple onion" + ] + }, + { + "id": 12691, + "cuisine": "cajun_creole", + "ingredients": [ + "large eggs", + "2% reduced-fat milk", + "heavy whipping cream", + "sugar", + "Irish whiskey", + "fine sea salt", + "powdered sugar", + "french bread", + "vanilla", + "unsalted butter", + "vegetable oil", + "maple syrup" + ] + }, + { + "id": 22972, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "kosher salt", + "bacon", + "grated parmesan cheese", + "pepper", + "spaghetti" + ] + }, + { + "id": 49252, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "sour cream", + "cooked chicken", + "chopped cilantro", + "enchilada sauce", + "chopped green chilies", + "corn tortillas" + ] + }, + { + "id": 35278, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "peanut sauce", + "red bell pepper", + "avocado", + "herbs", + "garlic cloves", + "rice paper", + "shiitake", + "dried rice noodles", + "canola oil", + "butter lettuce", + "asian chili red sauc", + "carrots" + ] + }, + { + "id": 45774, + "cuisine": "french", + "ingredients": [ + "roasting chickens", + "tarragon leaves", + "chives" + ] + }, + { + "id": 39968, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "flour tortillas", + "extra-virgin olive oil", + "red bell pepper", + "ground cumin", + "mayonaise", + "tilapia fillets", + "chili powder", + "prepared guacamole", + "fresh lime juice", + "savoy cabbage", + "minced garlic", + "shredded carrots", + "purple onion", + "sour cream", + "cotija", + "fresh cilantro", + "red wine vinegar", + "pepitas", + "serrano chile" + ] + }, + { + "id": 25997, + "cuisine": "italian", + "ingredients": [ + "cream", + "basil dried leaves", + "boneless skinless chicken breast halves", + "chopped fresh chives", + "rotini", + "grated parmesan cheese", + "red bell pepper", + "dried oregano", + "green bell pepper", + "butter", + "fresh parsley" + ] + }, + { + "id": 37115, + "cuisine": "mexican", + "ingredients": [ + "seasoning", + "corn", + "extra-virgin olive oil", + "onions", + "kosher salt", + "boneless skinless chicken breasts", + "black olives", + "ground cumin", + "black beans", + "crescent rolls", + "garlic", + "garlic salt", + "shredded cheddar cheese", + "diced tomatoes", + "chopped cilantro" + ] + }, + { + "id": 24959, + "cuisine": "mexican", + "ingredients": [ + "egg substitute", + "cooking spray", + "cooked chicken breasts", + "green chile", + "cream style corn", + "non-fat sour cream", + "fat free milk", + "ground red pepper", + "ground cumin", + "corn mix muffin", + "Mexican cheese blend", + "enchilada sauce" + ] + }, + { + "id": 34108, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "garlic", + "jalapeno chilies", + "onions", + "lime", + "salt", + "sugar", + "tomatoes with juice", + "cumin" + ] + }, + { + "id": 37608, + "cuisine": "british", + "ingredients": [ + "celery ribs", + "veal bones", + "beef", + "shallots", + "coarse sea salt", + "salt", + "carrots", + "truffle butter", + "ground black pepper", + "frozen pastry puff sheets", + "fresh thyme leaves", + "extra-virgin olive oil", + "beef broth", + "bay leaf", + "white button mushrooms", + "prosciutto", + "large eggs", + "tenderloin", + "heavy cream", + "all-purpose flour", + "white mushrooms", + "kosher salt", + "unsalted butter", + "flour", + "red wine", + "garlic", + "garlic cloves", + "onions" + ] + }, + { + "id": 30673, + "cuisine": "thai", + "ingredients": [ + "squirt", + "large eggs", + "salted roast peanuts", + "fresh lime juice", + "fresh cilantro", + "vegetable oil", + "scallions", + "soy sauce", + "rice noodles", + "salted peanuts", + "brown sugar", + "lime", + "cilantro", + "garlic cloves" + ] + }, + { + "id": 26397, + "cuisine": "russian", + "ingredients": [ + "potatoes", + "salt", + "carrots", + "chicken broth", + "leeks", + "dried dillweed", + "dill weed", + "half & half", + "all-purpose flour", + "bay leaf", + "ground black pepper", + "butter", + "fresh mushrooms" + ] + }, + { + "id": 34796, + "cuisine": "british", + "ingredients": [ + "nutmeg", + "whole milk", + "salt", + "mace", + "butter", + "golden syrup", + "black treacle", + "muscovado sugar", + "free range egg", + "self rising flour", + "ginger", + "porridge oats" + ] + }, + { + "id": 41279, + "cuisine": "italian", + "ingredients": [ + "milk", + "white sugar", + "jam", + "salt", + "polenta", + "water", + "sour cream" + ] + }, + { + "id": 41972, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "scallions", + "allspice", + "cinnamon", + "oatmeal", + "cayenne", + "oil", + "ground lamb", + "eggs", + "salt", + "cumin" + ] + }, + { + "id": 21058, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "baking powder", + "cream cheese", + "unsalted butter", + "all-purpose flour", + "sugar", + "buttermilk", + "corn starch" + ] + }, + { + "id": 90, + "cuisine": "southern_us", + "ingredients": [ + "bacon slices", + "olive oil", + "chopped onion", + "black pepper", + "salt", + "hot pepper sauce", + "collards" + ] + }, + { + "id": 30428, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "lemon juice", + "butter", + "chicken", + "ground black pepper", + "dried oregano", + "olive oil", + "salt" + ] + }, + { + "id": 20075, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "green tomatoes", + "pepper", + "salt", + "lime juice", + "chopped cilantro", + "jalapeno chilies", + "onions" + ] + }, + { + "id": 5589, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "Mizkan Oigatsuo Tsuyu Soup Base", + "beni shoga", + "sake", + "beef", + "scallions", + "water", + "ginger", + "onions", + "sugar", + "mirin", + "oil" + ] + }, + { + "id": 31445, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "ground black pepper", + "buttermilk", + "mustard seeds", + "spinach", + "coriander seeds", + "large garlic cloves", + "cardamom seeds", + "onions", + "tumeric", + "ground nutmeg", + "red pepper flakes", + "cumin seed", + "paneer cheese", + "clove", + "fresh ginger", + "spices", + "heavy cream", + "ghee" + ] + }, + { + "id": 44081, + "cuisine": "thai", + "ingredients": [ + "low sodium soy sauce", + "crushed red pepper", + "chopped fresh mint", + "granulated sugar", + "creamy peanut butter", + "balsamic vinegar", + "garlic cloves", + "brown sugar", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 5863, + "cuisine": "chinese", + "ingredients": [ + "chiles", + "shell-on shrimp", + "garlic cloves", + "gai lan", + "light soy sauce", + "salt", + "fermented black beans", + "chinese rice wine", + "fresh ginger", + "peanut oil", + "homemade chicken broth", + "sugar", + "sesame oil", + "corn starch" + ] + }, + { + "id": 6473, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon", + "large eggs", + "sugar", + "cake flour" + ] + }, + { + "id": 33304, + "cuisine": "indian", + "ingredients": [ + "baking powder", + "oil", + "salt", + "semolina", + "wheat flour" + ] + }, + { + "id": 30159, + "cuisine": "japanese", + "ingredients": [ + "sushi rice", + "toasted nori", + "Kewpie Mayonnaise", + "sesame seeds", + "avocado", + "ginger" + ] + }, + { + "id": 39945, + "cuisine": "jamaican", + "ingredients": [ + "red chili peppers", + "green onions", + "kidney beans", + "coconut milk", + "minced garlic", + "brown rice", + "fresh thyme" + ] + }, + { + "id": 29903, + "cuisine": "chinese", + "ingredients": [ + "water chestnuts", + "fresh mushrooms", + "sliced green onions", + "low sodium soy sauce", + "sliced carrots", + "shrimp", + "vermicelli", + "gingerroot", + "canned low sodium chicken broth", + "pea pods", + "cooked chicken breasts" + ] + }, + { + "id": 48040, + "cuisine": "brazilian", + "ingredients": [ + "cider vinegar", + "salt", + "flat leaf parsley", + "sugar", + "olive oil", + "chopped onion", + "cassava meal", + "unsalted butter", + "garlic cloves", + "pepper", + "rack of lamb" + ] + }, + { + "id": 41463, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime", + "ginger", + "coconut milk", + "chicken stock", + "soy sauce", + "sesame oil", + "firm tofu", + "brown sugar", + "thai basil", + "garlic", + "sambal ulek", + "lemongrass", + "lime wedges", + "scallions" + ] + }, + { + "id": 49382, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "creole seasoning", + "celery ribs", + "lemon", + "garlic cloves", + "coarse salt", + "scallions", + "extra large shrimp", + "worcestershire sauce", + "long grain white rice" + ] + }, + { + "id": 22849, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili", + "garlic", + "onions", + "avocado", + "crushed tomatoes", + "vegetable oil", + "scallions", + "monterey jack", + "kosher salt", + "chili powder", + "tortilla chips", + "cumin", + "chicken stock", + "lime", + "cilantro", + "sour cream", + "chicken" + ] + }, + { + "id": 693, + "cuisine": "french", + "ingredients": [ + "chili pepper", + "lamb", + "onions", + "cinnamon", + "flat leaf parsley", + "pepper", + "ground coriander", + "ground cumin", + "ground ginger", + "salt", + "chopped cilantro" + ] + }, + { + "id": 42431, + "cuisine": "mexican", + "ingredients": [ + "grated orange peel", + "large egg yolks", + "cinnamon", + "all-purpose flour", + "ground cinnamon", + "vegetable oil spray", + "baking powder", + "salt", + "unsweetened cocoa powder", + "cream of tartar", + "large egg whites", + "large eggs", + "vanilla extract", + "bittersweet chocolate", + "sugar", + "unsalted butter", + "chocolate ice cream mix", + "brownie layer" + ] + }, + { + "id": 36157, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "pizza doughs", + "olive oil", + "part-skim ricotta cheese", + "garlic cloves", + "black pepper", + "leeks", + "chopped walnuts", + "fresh parmesan cheese", + "salt", + "cornmeal" + ] + }, + { + "id": 40949, + "cuisine": "moroccan", + "ingredients": [ + "grated orange peel", + "cayenne pepper", + "olive oil", + "lamb rib chops", + "french bread", + "minced garlic", + "ground cumin" + ] + }, + { + "id": 44323, + "cuisine": "mexican", + "ingredients": [ + "zucchini", + "frozen corn kernels", + "feta cheese crumbles", + "onions", + "shredded Monterey Jack cheese", + "black pepper", + "cooking spray", + "garlic cloves", + "corn tortillas", + "cooked chicken breasts", + "green chile", + "jalapeno chilies", + "chopped onion", + "red bell pepper", + "chopped cilantro fresh", + "ground cumin", + "minced garlic", + "chili powder", + "enchilada sauce", + "fresh lime juice", + "plum tomatoes" + ] + }, + { + "id": 6080, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "all purpose unbleached flour", + "organic sugar", + "powdered sugar", + "flour", + "apples", + "large eggs", + "sea salt", + "milk", + "baking powder", + "vanilla extract" + ] + }, + { + "id": 48577, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "lemon peel", + "olive oil", + "fresh bean", + "minced garlic", + "fresh basil leaves" + ] + }, + { + "id": 44060, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "lemon juice", + "olive oil", + "liquid", + "fresh basil", + "garlic", + "nuts", + "spinach", + "salt" + ] + }, + { + "id": 1090, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "taco seasoning", + "diced tomatoes", + "chicken", + "cream of chicken soup", + "sour cream", + "cheddar cheese", + "tortilla chips" + ] + }, + { + "id": 11007, + "cuisine": "mexican", + "ingredients": [ + "water", + "taco seasoning", + "salsa", + "refried beans", + "ground beef", + "cheddar cheese", + "pizza doughs" + ] + }, + { + "id": 23805, + "cuisine": "indian", + "ingredients": [ + "clove", + "boiled eggs", + "bay leaves", + "salt", + "whole chicken", + "clarified butter", + "ground cumin", + "garlic paste", + "coriander powder", + "cinnamon", + "rice", + "rice flour", + "allspice", + "red chili powder", + "papaya", + "chili powder", + "tamarind paste", + "oil", + "cumin", + "food colouring", + "vinegar", + "cracked black pepper", + "brown cardamom", + "onions", + "kewra essence" + ] + }, + { + "id": 24157, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "heavy cream", + "sugar", + "large eggs", + "semisweet chocolate", + "all-purpose flour", + "water", + "vegetable oil" + ] + }, + { + "id": 13530, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "chicken drumsticks", + "olive oil", + "finely chopped onion", + "water", + "diced tomatoes" + ] + }, + { + "id": 3277, + "cuisine": "southern_us", + "ingredients": [ + "sausages", + "self rising flour", + "shortening", + "buttermilk" + ] + }, + { + "id": 10045, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "olive oil", + "crushed red pepper flakes", + "flat leaf parsley", + "french baguette", + "grated parmesan cheese", + "garlic", + "white bread", + "sea scallops", + "linguine", + "white wine", + "lemon", + "salt" + ] + }, + { + "id": 14340, + "cuisine": "japanese", + "ingredients": [ + "vegetable oil", + "noodles", + "green onions", + "crushed red pepper", + "teriyaki sauce", + "boneless skinless chicken breast halves", + "sesame oil", + "carrots" + ] + }, + { + "id": 19889, + "cuisine": "jamaican", + "ingredients": [ + "nutmeg", + "cinnamon", + "salt", + "milk", + "raisins", + "mixed peel", + "brown sugar", + "butter", + "yeast", + "flour", + "anise", + "allspice" + ] + }, + { + "id": 46355, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "flour", + "rolls", + "egg roll wrappers", + "onion powder", + "ground turkey", + "water", + "shredded cabbage", + "peanut oil", + "shredded carrots", + "salt", + "garlic salt" + ] + }, + { + "id": 815, + "cuisine": "italian", + "ingredients": [ + "warm water", + "sesame seeds", + "eggs", + "active dry yeast", + "salt", + "water", + "all purpose unbleached flour", + "brown sugar", + "olive oil", + "cornmeal" + ] + }, + { + "id": 6191, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "garlic", + "brown sugar", + "chicken drumsticks", + "corn starch", + "ground ginger", + "sesame oil", + "rice vinegar", + "soy sauce", + "crushed red pepper flakes", + "sliced green onions" + ] + }, + { + "id": 24723, + "cuisine": "mexican", + "ingredients": [ + "water", + "large garlic cloves", + "red bell pepper", + "black pepper", + "olive oil", + "salt", + "cumin", + "cooked rice", + "corn kernels", + "paprika", + "onions", + "black beans", + "chili powder", + "enchilada sauce" + ] + }, + { + "id": 39876, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "butter", + "powdered sugar", + "granulated sugar", + "fresh lemon juice", + "cream of tartar", + "peaches", + "salt", + "large egg whites", + "cooking spray", + "corn starch" + ] + }, + { + "id": 43973, + "cuisine": "mexican", + "ingredients": [ + "flour", + "salt", + "shredded cheddar cheese", + "lean ground beef", + "taco seasoning", + "black beans", + "rotelle", + "tortilla chips", + "milk", + "butter" + ] + }, + { + "id": 40171, + "cuisine": "filipino", + "ingredients": [ + "lean ground pork", + "flour", + "carrots", + "granulated sugar", + "garlic", + "canola oil", + "ground black pepper", + "lumpia wrappers", + "onions", + "large eggs", + "salt" + ] + }, + { + "id": 37448, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "eggplant", + "minced garlic", + "salt", + "pepper", + "diced tomatoes", + "tomato paste", + "olive oil", + "onions" + ] + }, + { + "id": 1829, + "cuisine": "italian", + "ingredients": [ + "clams", + "olive oil", + "dry white wine", + "garlic cloves", + "warm water", + "parmigiano reggiano cheese", + "butter", + "bread flour", + "yellow corn meal", + "dry yeast", + "shallots", + "flat leaf parsley", + "kosher salt", + "cooking spray", + "fresh oregano" + ] + }, + { + "id": 20050, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "canola oil", + "bacon", + "flour tortillas", + "Mexican cheese" + ] + }, + { + "id": 46677, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "yellow mustard", + "chopped parsley", + "potatoes", + "salt", + "white pepper", + "chopped celery", + "lettuce", + "hard-boiled egg", + "dill pickles" + ] + }, + { + "id": 40243, + "cuisine": "french", + "ingredients": [ + "large eggs", + "whipping cream", + "semisweet chocolate" + ] + }, + { + "id": 23463, + "cuisine": "indian", + "ingredients": [ + "ground cardamom", + "butter", + "cashew nuts", + "milk", + "carrots", + "raisins", + "white sugar" + ] + }, + { + "id": 44630, + "cuisine": "southern_us", + "ingredients": [ + "cold water", + "condensed milk", + "whipping cream", + "bananas", + "vanilla instant pudding", + "vanilla wafers" + ] + }, + { + "id": 17465, + "cuisine": "southern_us", + "ingredients": [ + "white bread", + "egg whites", + "white sugar", + "soy sauce", + "carrots", + "ground ginger", + "margarine", + "boneless skinless chicken breast halves", + "ground black pepper", + "corn starch" + ] + }, + { + "id": 44363, + "cuisine": "italian", + "ingredients": [ + "cherries", + "sugar", + "dry red wine", + "ground nutmeg", + "grated orange peel", + "almond extract" + ] + }, + { + "id": 32229, + "cuisine": "southern_us", + "ingredients": [ + "granny smith apples", + "ground cinnamon", + "butter", + "firmly packed brown sugar", + "apple cider", + "bread crumb fresh" + ] + }, + { + "id": 33982, + "cuisine": "french", + "ingredients": [ + "eggs", + "milk", + "brandy", + "almond extract", + "sugar", + "flour", + "melted butter", + "vanilla beans", + "plums" + ] + }, + { + "id": 43949, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "chopped fresh chives", + "chopped celery", + "garlic cloves", + "black peppercorns", + "fennel bulb", + "extra-virgin olive oil", + "crabmeat", + "red bell pepper", + "yellow mustard seeds", + "radishes", + "vegetable broth", + "cumin seed", + "plum tomatoes", + "fennel seeds", + "hot pepper sauce", + "peeled fresh ginger", + "chopped onion", + "carrots" + ] + }, + { + "id": 20147, + "cuisine": "filipino", + "ingredients": [ + "vegetable oil", + "carrots", + "soy sauce", + "garlic", + "cabbage", + "lemon", + "onions", + "chicken breasts", + "dried rice noodles" + ] + }, + { + "id": 810, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "fresh oregano", + "water", + "garlic", + "oregano", + "linguine", + "garlic cloves", + "fat free milk", + "salt", + "large shrimp" + ] + }, + { + "id": 25934, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "jalapeno chilies", + "diced onions", + "large eggs", + "milk", + "vegetable oil", + "self rising flour", + "white cornmeal" + ] + }, + { + "id": 5653, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "garlic chili sauce", + "green onions", + "seasoned rice wine vinegar", + "ground turkey", + "hoisin sauce", + "garlic", + "green beans", + "sesame oil", + "medium-grain rice" + ] + }, + { + "id": 33147, + "cuisine": "french", + "ingredients": [ + "whole grain dijon mustard", + "yukon gold potatoes", + "salt", + "dry white wine", + "extra-virgin olive oil", + "fresh parsley", + "ground black pepper", + "fresh tarragon", + "garlic cloves", + "chives", + "white wine vinegar" + ] + }, + { + "id": 40685, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "vegetable oil", + "salt", + "chicken thighs", + "pepper", + "ground thyme", + "cayenne pepper", + "white vinegar", + "lime", + "ginger", + "ground allspice", + "ground cinnamon", + "ground black pepper", + "garlic", + "scallions" + ] + }, + { + "id": 36013, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "onion powder", + "sugar", + "garlic powder", + "dried oregano", + "black pepper", + "ground red pepper", + "dried thyme", + "paprika" + ] + }, + { + "id": 9409, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "croutons", + "chicken", + "refrigerated buttermilk biscuits", + "green beans", + "condensed cream of chicken soup", + "butter", + "sliced mushrooms", + "shredded cheddar cheese", + "lemon juice" + ] + }, + { + "id": 23596, + "cuisine": "vietnamese", + "ingredients": [ + "quinoa", + "scallions", + "cooked shrimp", + "sugar", + "crushed red pepper flakes", + "cucumber", + "asian fish sauce", + "vegetable oil", + "carrots", + "chopped cilantro fresh", + "lime juice", + "salt", + "red bell pepper" + ] + }, + { + "id": 17440, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "crushed red pepper flakes", + "scallions", + "sugar", + "balsamic vinegar", + "garlic", + "japanese eggplants", + "sesame oil", + "ginger", + "canola oil", + "soy sauce", + "dry sherry", + "shaoxing" + ] + }, + { + "id": 788, + "cuisine": "french", + "ingredients": [ + "sliced almonds", + "all-purpose flour", + "table salt", + "unsalted butter", + "pure vanilla extract", + "large egg whites", + "sea salt flakes", + "sugar", + "almond extract" + ] + }, + { + "id": 9866, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cooking spray", + "onions", + "kosher salt", + "panko", + "white beans", + "black pepper", + "eggplant", + "crushed red pepper flakes", + "minced garlic", + "marinara sauce", + "fresh parsley" + ] + }, + { + "id": 19740, + "cuisine": "spanish", + "ingredients": [ + "fresh basil", + "jalapeno chilies", + "fresh lemon juice", + "mango", + "sugar", + "fresh orange juice", + "cucumber", + "tomatoes", + "cantaloupe", + "salt", + "chopped fresh mint", + "vidalia onion", + "honeydew melon", + "feta cheese crumbles", + "nectarines" + ] + }, + { + "id": 45584, + "cuisine": "indian", + "ingredients": [ + "water", + "cooking spray", + "chickpeas", + "serrano chile", + "sugar", + "finely chopped onion", + "salt", + "red bell pepper", + "ground cumin", + "fennel seeds", + "semolina", + "green onions", + "garlic cloves", + "canola oil", + "fat free yogurt", + "mint leaves", + "cilantro leaves", + "fresh lime juice" + ] + }, + { + "id": 3978, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "cumin seed", + "whole cloves", + "cardamom seeds", + "coriander seeds", + "cinnamon sticks" + ] + }, + { + "id": 46993, + "cuisine": "italian", + "ingredients": [ + "sherry vinegar", + "goat cheese", + "baguette", + "salt", + "fresh basil", + "pitted olives", + "plum tomatoes", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 10795, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "salt", + "dried minced onion", + "smoked ham hocks", + "Johnsonville Smoked Sausage", + "seasoning salt", + "long-grain rice", + "dried kidney beans", + "dried minced garlic", + "crushed red pepper flakes", + "celery seed", + "fresh parsley", + "parsley flakes", + "water", + "cayenne pepper", + "bay leaf", + "ground cumin" + ] + }, + { + "id": 38281, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "cactus pad", + "plum tomatoes", + "egg substitute", + "salsa", + "chopped cilantro fresh", + "salt", + "corn tortillas", + "asadero", + "chopped onion", + "serrano chile" + ] + }, + { + "id": 599, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "chili powder", + "flour tortillas", + "sour cream", + "picante sauce", + "shredded monterey jack cheese", + "green onions", + "chicken" + ] + }, + { + "id": 20828, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "cooking spray", + "all-purpose flour", + "brown sugar", + "large eggs", + "ice water", + "pears", + "vanilla beans", + "reduced fat milk", + "salt", + "ground cinnamon", + "granulated sugar", + "butter", + "fresh lemon juice" + ] + }, + { + "id": 29937, + "cuisine": "indian", + "ingredients": [ + "water", + "ground turmeric", + "frozen peas", + "butter", + "kosher salt", + "basmati rice" + ] + }, + { + "id": 5052, + "cuisine": "thai", + "ingredients": [ + "low-fat plain yogurt", + "soy sauce", + "Sriracha", + "garlic cloves", + "natural peanut butter", + "onion slices", + "cilantro", + "chili garlic paste", + "fish sauce", + "curry powder", + "hoisin sauce", + "lemon juice", + "warm water", + "boneless chicken breast", + "salt", + "ginger root" + ] + }, + { + "id": 34454, + "cuisine": "indian", + "ingredients": [ + "passata", + "frozen spinach", + "onions", + "chickpeas", + "olive oil", + "masala" + ] + }, + { + "id": 46832, + "cuisine": "chinese", + "ingredients": [ + "fat free less sodium chicken broth", + "broccoli florets", + "dark sesame oil", + "large eggs", + "vegetable oil", + "garlic cloves", + "water", + "peeled fresh ginger", + "long-grain rice", + "low sodium soy sauce", + "shredded carrots", + "salt", + "sliced green onions" + ] + }, + { + "id": 12277, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "baking soda", + "chives", + "buttermilk", + "rosemary leaves", + "cayenne pepper", + "onions", + "olive oil", + "unsalted butter", + "onion powder", + "heavy cream", + "salt", + "shrimp", + "dried thyme", + "ground black pepper", + "baking powder", + "worcestershire sauce", + "garlic", + "creole seasoning", + "dried oregano", + "garlic powder", + "dry white wine", + "lemon", + "paprika", + "all-purpose flour", + "bay leaf" + ] + }, + { + "id": 25424, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "stewed tomatoes", + "vegetables", + "taco sauce", + "broth" + ] + }, + { + "id": 33550, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "cayenne pepper", + "buttermilk", + "chicken", + "ground black pepper", + "canola oil", + "all-purpose flour" + ] + }, + { + "id": 16827, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "large eggs", + "milk", + "all-purpose flour", + "table salt", + "baking powder", + "unsalted butter", + "dark brown sugar" + ] + }, + { + "id": 44665, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "hot pepper", + "onions", + "soy sauce", + "green onions", + "red wine vinegar", + "chicken broth", + "sherry", + "vegetable oil", + "cashew nuts", + "fructose", + "chicken breast halves", + "salt" + ] + }, + { + "id": 23091, + "cuisine": "filipino", + "ingredients": [ + "chicken legs", + "calamansi juice", + "corn starch", + "pepper", + "salt", + "soy sauce", + "garlic", + "flour", + "oil" + ] + }, + { + "id": 5348, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "tomatoes", + "shallots", + "canola oil", + "bourbon whiskey", + "boneless skinless chicken breast halves", + "fat free less sodium chicken broth", + "butter" + ] + }, + { + "id": 24108, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "urad dal", + "oil", + "minced ginger", + "green chilies", + "water", + "salt", + "asafoetida", + "ground black pepper", + "cumin seed" + ] + }, + { + "id": 44657, + "cuisine": "japanese", + "ingredients": [ + "white miso", + "vegetable broth", + "onions", + "peeled fresh ginger", + "garlic cloves", + "broccoli florets", + "dark sesame oil", + "chile paste", + "sliced carrots", + "Chinese egg noodles" + ] + }, + { + "id": 4261, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "pinto beans", + "monterey jack", + "frozen corn kernels", + "corn tortillas", + "ground cumin", + "beefsteak tomatoes", + "scallions", + "roasted tomatoes", + "salt", + "nonstick spray", + "chicken" + ] + }, + { + "id": 48456, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "water", + "chili powder", + "sour cream", + "pepper", + "flour tortillas", + "salt", + "onions", + "bouillon", + "chopped tomatoes", + "tomatillos", + "chicken base", + "minced garlic", + "pork tenderloin", + "oil", + "chopped cilantro fresh" + ] + }, + { + "id": 6764, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "unsalted butter", + "sweet pepper", + "fat free cream cheese", + "part-skim mozzarella cheese", + "paprika", + "corn tortillas", + "ground turmeric", + "reduced fat cheddar cheese", + "green onions", + "all-purpose flour", + "ground beef", + "fat free milk", + "chile pepper", + "taco seasoning", + "chunky salsa" + ] + }, + { + "id": 49189, + "cuisine": "irish", + "ingredients": [ + "caraway seeds", + "butter", + "all-purpose flour", + "baking powder", + "salt", + "baking soda", + "raisins", + "whiskey", + "grated orange peel", + "buttermilk", + "white sugar" + ] + }, + { + "id": 16920, + "cuisine": "greek", + "ingredients": [ + "lemon", + "garlic cloves", + "eggplant", + "salt", + "ground cumin", + "tahini", + "cayenne pepper", + "extra-virgin olive oil", + "chopped parsley" + ] + }, + { + "id": 25596, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "salt", + "olive oil", + "garlic cloves", + "basil leaves", + "fresh basil leaves", + "diced tomatoes" + ] + }, + { + "id": 8953, + "cuisine": "british", + "ingredients": [ + "tumeric", + "ginger", + "curry paste", + "tomato paste", + "lemon", + "salt", + "long grain white rice", + "salmon", + "garlic", + "onions", + "spinach", + "cilantro", + "mustard seeds", + "canola oil" + ] + }, + { + "id": 785, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "milk", + "vinegar", + "lemon", + "lemon juice", + "soy sauce", + "garlic powder", + "vegetable oil", + "all-purpose flour", + "sliced green onions", + "brown sugar", + "honey", + "apple cider vinegar", + "salt", + "toasted sesame seeds", + "pepper", + "boneless chicken breast", + "chili pepper flakes", + "crushed pineapples in juice" + ] + }, + { + "id": 41028, + "cuisine": "british", + "ingredients": [ + "milk", + "egg yolks", + "freshly ground pepper", + "dijon mustard", + "beef tenderloin", + "prosciutto", + "extra-virgin olive oil", + "cremini mushrooms", + "frozen pastry puff sheets", + "salt" + ] + }, + { + "id": 44179, + "cuisine": "japanese", + "ingredients": [ + "spinach", + "water", + "soba noodles", + "soy sauce", + "kamaboko", + "sugar", + "mirin", + "dashi powder", + "spring onions" + ] + }, + { + "id": 6553, + "cuisine": "southern_us", + "ingredients": [ + "sauce", + "back ribs", + "spices" + ] + }, + { + "id": 42593, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "fresh oregano", + "cavatappi", + "olive oil", + "feta cheese crumbles", + "spinach", + "cherry tomatoes", + "garlic cloves", + "sugar pea", + "salt", + "medium shrimp" + ] + }, + { + "id": 40368, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "salt", + "milk", + "paprika", + "pepper", + "butter", + "macaroni", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 2319, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "onions", + "eggs", + "red wine", + "bouillon", + "ground beef", + "tomatoes", + "ground black pepper" + ] + }, + { + "id": 32245, + "cuisine": "mexican", + "ingredients": [ + "tangerine juice", + "agave nectar", + "ice", + "tequila" + ] + }, + { + "id": 16176, + "cuisine": "indian", + "ingredients": [ + "coconut", + "green chilies", + "dal", + "curry leaves", + "urad dal", + "mustard seeds", + "ginger", + "oil", + "ground turmeric", + "red chili peppers", + "salt", + "asafoetida powder" + ] + }, + { + "id": 10152, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "olive oil", + "garlic", + "fresh lime juice", + "chopped cilantro fresh", + "white corn", + "coarse salt", + "smoked paprika", + "ground beef", + "ground cumin", + "bread crumbs", + "ground pepper", + "beef broth", + "chipotles in adobo", + "dried oregano", + "chile powder", + "black beans", + "diced tomatoes", + "corn tortillas", + "onions" + ] + }, + { + "id": 5514, + "cuisine": "italian", + "ingredients": [ + "italian seasoning", + "marinara sauce", + "flounder fillets", + "part-skim mozzarella cheese" + ] + }, + { + "id": 13676, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "flour tortillas", + "spring onions", + "sour cream", + "lime juice", + "shredded cabbage", + "feta cheese crumbles", + "garlic salt", + "pepper", + "roma tomatoes", + "chicken breast halves", + "chopped cilantro", + "olive oil", + "green onions", + "smoked paprika", + "cumin" + ] + }, + { + "id": 47496, + "cuisine": "filipino", + "ingredients": [ + "bay leaves", + "peppercorns", + "soy sauce", + "cinnamon sticks", + "water", + "white sugar", + "white vinegar", + "garlic cloves", + "chicken" + ] + }, + { + "id": 44456, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "water", + "grated parmesan cheese", + "nonfat cottage cheese", + "pasta sauce", + "part-skim mozzarella cheese", + "garlic", + "onions", + "eggs", + "dried basil", + "extra-virgin olive oil", + "fresh parsley", + "black pepper", + "lasagna noodles", + "salt", + "dried oregano" + ] + }, + { + "id": 24231, + "cuisine": "italian", + "ingredients": [ + "fresh mozzarella", + "semolina", + "fresh basil leaves", + "olive oil", + "pizza doughs", + "pizza sauce" + ] + }, + { + "id": 44889, + "cuisine": "filipino", + "ingredients": [ + "wonton wrappers", + "water chestnuts", + "oil", + "casings", + "green onions" + ] + }, + { + "id": 10778, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "garlic cloves", + "honey", + "star anise", + "chicken pieces", + "water", + "balsamic vinegar", + "cinnamon sticks", + "clove", + "fresh ginger", + "oil", + "onions" + ] + }, + { + "id": 22834, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "chopped green bell pepper", + "portabello mushroom", + "chopped onion", + "spinach", + "fresh parmesan cheese", + "vegetable oil", + "salt", + "black pepper", + "cooking spray", + "stewed tomatoes", + "garlic cloves", + "dried basil", + "ziti", + "part-skim ricotta cheese", + "red bell pepper" + ] + }, + { + "id": 4605, + "cuisine": "italian", + "ingredients": [ + "penne", + "sun-dried tomatoes", + "red pepper flakes", + "fresh parsley leaves", + "andouille sausage links", + "dried basil", + "ground black pepper", + "garlic", + "kosher salt", + "freshly grated parmesan", + "heavy cream", + "dried oregano", + "chicken broth", + "olive oil", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 47455, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "beef tenderloin steaks", + "table salt", + "grated lemon zest", + "fresh rosemary", + "fresh thyme leaves", + "fresh parsley", + "kosher salt", + "garlic cloves" + ] + }, + { + "id": 14440, + "cuisine": "indian", + "ingredients": [ + "salted butter", + "garlic", + "coconut milk", + "bread crumbs", + "cinnamon", + "ground coriander", + "ground lamb", + "ground black pepper", + "salt", + "ground beef", + "fresh ginger", + "ground tumeric", + "cardamom", + "ground cumin" + ] + }, + { + "id": 46127, + "cuisine": "french", + "ingredients": [ + "salmon fillets", + "honey", + "baby spinach", + "stone ground mustard", + "black pepper", + "large eggs", + "purple onion", + "fresh lemon juice", + "tomatoes", + "kosher salt", + "cooking spray", + "salt", + "green beans", + "pitted kalamata olives", + "olive oil", + "white wine vinegar", + "small red potato" + ] + }, + { + "id": 30095, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "sweet potatoes", + "sea salt", + "baking soda", + "shallots", + "all-purpose flour", + "olive oil", + "baking powder", + "salt", + "unsalted butter", + "buttermilk", + "sage" + ] + }, + { + "id": 20465, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "peanut oil", + "bacon drippings", + "apple cider vinegar", + "shallots", + "greens", + "sugar", + "crushed red pepper" + ] + }, + { + "id": 19944, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "brown sugar", + "sea salt", + "olive oil", + "water", + "bread flour" + ] + }, + { + "id": 15875, + "cuisine": "italian", + "ingredients": [ + "strawberries", + "ice cubes", + "sugar", + "fresh lemon juice" + ] + }, + { + "id": 23476, + "cuisine": "italian", + "ingredients": [ + "nonpareils", + "ground cloves", + "lemon zest", + "raisins", + "all-purpose flour", + "confectioners sugar", + "ground cinnamon", + "brandy", + "unsalted butter", + "baking powder", + "salt", + "dried mission figs", + "fresh orange", + "honey", + "large eggs", + "fresh orange juice", + "grated nutmeg", + "orange zest", + "sugar", + "almonds", + "whole milk", + "vanilla", + "walnuts" + ] + }, + { + "id": 30997, + "cuisine": "italian", + "ingredients": [ + "kalamata", + "salt", + "chees fresh mozzarella", + "cracked black pepper", + "fresh basil leaves", + "tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 26670, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "capers", + "red pepper", + "fettucine", + "parmesan cheese", + "fresh parsley", + "salt and ground black pepper", + "goat cheese" + ] + }, + { + "id": 25491, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "bacon", + "canned chicken broth", + "unsalted butter", + "salt", + "fettucine", + "ground black pepper", + "extra-virgin olive oil", + "fresh chives", + "large eggs", + "onions" + ] + }, + { + "id": 6614, + "cuisine": "indian", + "ingredients": [ + "rice noodles", + "brown lentils", + "flaked coconut", + "roasted peanuts", + "fresh cilantro", + "salt", + "dried red chile peppers", + "water", + "vegetable oil", + "black mustard seeds" + ] + }, + { + "id": 17374, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "bacon", + "vegetable shortening", + "all-purpose flour", + "baking soda", + "salt", + "buttermilk", + "white cornmeal" + ] + }, + { + "id": 2658, + "cuisine": "thai", + "ingredients": [ + "vegetable oil", + "curry paste", + "coconut milk", + "cucumber", + "mango", + "shallots", + "fillets" + ] + }, + { + "id": 43205, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "green onions", + "chopped celery", + "fresh parsley", + "shrimp tails", + "seafood stock", + "butter", + "cayenne pepper", + "Louisiana Hot Sauce", + "chopped green bell pepper", + "cajun seasoning", + "yellow onion", + "crawfish", + "flour", + "worcestershire sauce", + "diced tomatoes and green chilies" + ] + }, + { + "id": 38489, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "apple cider vinegar", + "yellow onion", + "chopped cilantro fresh", + "lettuce", + "guacamole", + "garlic", + "chipotle peppers", + "ground cumin", + "beef shoulder roast", + "sea salt", + "fresh lime juice", + "dried oregano", + "tomato paste", + "bay leaves", + "salsa", + "low sodium beef stock" + ] + }, + { + "id": 1486, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "honey", + "butter", + "salt", + "tomato paste", + "cream", + "yoghurt", + "ginger", + "cinnamon sticks", + "clove", + "red chili powder", + "garam masala", + "lemon", + "cardamom", + "tomatoes", + "tandoori spices", + "boneless chicken", + "garlic" + ] + }, + { + "id": 15766, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "cod fillets", + "worcestershire sauce", + "diced celery", + "diced onions", + "minced garlic", + "cajun seasoning", + "salt", + "fresh parsley", + "tomato paste", + "ground black pepper", + "butter", + "medium-grain rice", + "andouille sausage", + "low sodium chicken broth", + "diced tomatoes", + "shrimp" + ] + }, + { + "id": 32520, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "garlic", + "salmon fillets", + "fresh ginger", + "sake", + "olive oil", + "white sugar", + "hot red pepper flakes", + "mirin" + ] + }, + { + "id": 6430, + "cuisine": "italian", + "ingredients": [ + "pasta", + "olive oil", + "water", + "sausages", + "dried basil", + "tomato paste", + "diced tomatoes" + ] + }, + { + "id": 7846, + "cuisine": "cajun_creole", + "ingredients": [ + "small red beans", + "dried thyme", + "red wine vinegar", + "ham", + "black pepper", + "Tabasco Green Pepper Sauce", + "salt", + "onions", + "homemade chicken stock", + "olive oil", + "worcestershire sauce", + "cooked white rice", + "minced garlic", + "bay leaves", + "creole seasoning", + "dried oregano" + ] + }, + { + "id": 29769, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "water", + "paprika", + "corn tortillas", + "cheddar cheese", + "chili powder", + "beef broth", + "chicken", + "green chile", + "cream of chicken soup", + "garlic", + "onions", + "steak sauce", + "pepper", + "vegetable oil", + "sauce", + "ground cumin" + ] + }, + { + "id": 23113, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garam masala", + "salt", + "onions", + "amchur", + "potatoes", + "cumin seed", + "asafetida", + "leaves", + "chili powder", + "oil", + "garlic paste", + "coriander powder", + "chickpeas", + "ground turmeric" + ] + }, + { + "id": 17261, + "cuisine": "italian", + "ingredients": [ + "sugar pea", + "lasagna noodles", + "crushed red pepper", + "champagne vinegar", + "pearl onions", + "chees fresh mozzarella", + "baby carrots", + "capers", + "fennel bulb", + "extra-virgin olive oil", + "red bell pepper", + "water", + "fresh thyme leaves", + "salt", + "shiitake mushroom caps" + ] + }, + { + "id": 42711, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "cinnamon", + "black mustard seeds", + "canola oil", + "red chili powder", + "salt", + "ground turmeric", + "serrano chilies", + "crushed red pepper flakes", + "onions", + "red chili peppers", + "cumin seed", + "cabbage" + ] + }, + { + "id": 48309, + "cuisine": "italian", + "ingredients": [ + "pasta", + "olive oil", + "purple onion", + "chopped parsley", + "capers", + "butter", + "chicken fingers", + "chicken stock", + "flour", + "salt", + "rosemary", + "garlic", + "fresh lemon juice" + ] + }, + { + "id": 27925, + "cuisine": "italian", + "ingredients": [ + "sugar", + "french bread", + "yellow bell pepper", + "capers", + "olive oil", + "balsamic vinegar", + "red bell pepper", + "green bell pepper", + "eggplant", + "large garlic cloves", + "pinenuts", + "ground red pepper", + "salt" + ] + }, + { + "id": 42747, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "cracked black pepper", + "corn starch", + "chinese rice wine", + "regular soy sauce", + "scallions", + "chopped cilantro fresh", + "dark soy sauce", + "yellow rock sugar", + "star anise", + "cinnamon sticks", + "water", + "sesame oil", + "pork spareribs" + ] + }, + { + "id": 30082, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "hot chili powder", + "smoked paprika", + "lettuce", + "cherry tomatoes", + "chickpeas", + "ground cumin", + "refried beans", + "garlic", + "onions", + "cheddar cheese", + "flour tortillas", + "oil" + ] + }, + { + "id": 17049, + "cuisine": "thai", + "ingredients": [ + "mayonaise", + "cilantro leaves", + "chopped cilantro fresh", + "vegetable oil", + "thai green curry paste", + "mango chutney", + "fresh lime juice", + "wonton wrappers", + "medium shrimp" + ] + }, + { + "id": 18121, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "ground nutmeg", + "almonds", + "fresh basil leaves", + "pepper", + "garlic" + ] + }, + { + "id": 33760, + "cuisine": "british", + "ingredients": [ + "stilton", + "cream cheese, soften", + "green peppercorns", + "medium dry sherry" + ] + }, + { + "id": 14596, + "cuisine": "mexican", + "ingredients": [ + "black peppercorns", + "radishes", + "fine sea salt", + "fresh lime juice", + "avocado", + "white onion", + "Mexican oregano", + "garlic cloves", + "chopped cilantro fresh", + "tomatoes", + "ground black pepper", + "extra-virgin olive oil", + "hearts of romaine", + "white vinegar", + "corn tortilla chips", + "flank steak", + "purple onion", + "bay leaf" + ] + }, + { + "id": 14756, + "cuisine": "italian", + "ingredients": [ + "lean ground beef", + "garlic", + "celery", + "dried rosemary", + "dried basil", + "stewed tomatoes", + "carrots", + "spaghetti", + "crushed red pepper flakes", + "chickpeas", + "onions", + "bacon", + "beef broth", + "bay leaf" + ] + }, + { + "id": 47795, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "manchego cheese", + "spanish paprika", + "kosher salt", + "Italian parsley leaves", + "sausage casings", + "yukon gold potatoes", + "freshly ground pepper", + "olive oil", + "yellow onion" + ] + }, + { + "id": 31717, + "cuisine": "japanese", + "ingredients": [ + "darjeeling tea leaves", + "soy sauce", + "dried shiitake mushrooms", + "tomatoes", + "salt", + "honey", + "red miso" + ] + }, + { + "id": 24097, + "cuisine": "jamaican", + "ingredients": [ + "chicken stock", + "vegetable oil", + "ground allspice", + "fresh lemon juice", + "flat leaf parsley", + "ground cumin", + "unsalted butter", + "grated nutmeg", + "small red potato", + "bartlett pears", + "plantains", + "soy sauce", + "scotch bonnet chile", + "freshly ground pepper", + "carrots", + "bay leaf", + "minced ginger", + "salt", + "scallions", + "thyme", + "onions" + ] + }, + { + "id": 44744, + "cuisine": "japanese", + "ingredients": [ + "salmon", + "salt", + "green tea", + "short-grain rice", + "nori", + "soy sauce", + "wasabe" + ] + }, + { + "id": 46419, + "cuisine": "mexican", + "ingredients": [ + "fresh lime juice", + "purple onion", + "plum tomatoes", + "salt", + "fresh cilantro", + "serrano chile" + ] + }, + { + "id": 13759, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "pepper", + "fresh ginger", + "red pepper", + "rice vinegar", + "creamy peanut butter", + "soy sauce", + "fresh cilantro", + "zucchini", + "Thai red curry paste", + "peanut butter", + "rib", + "fish sauce", + "lime juice", + "orange bell pepper", + "cilantro", + "salted peanuts", + "chinese five-spice powder", + "ketchup", + "lime", + "jalapeno chilies", + "garlic", + "chili sauce", + "cabbage" + ] + }, + { + "id": 27635, + "cuisine": "british", + "ingredients": [ + "sugar", + "peeled fresh ginger", + "all-purpose flour", + "ground ginger", + "crystallized ginger", + "buttermilk", + "baking soda", + "baking powder", + "pecan halves", + "unsalted butter", + "vanilla extract" + ] + }, + { + "id": 40405, + "cuisine": "spanish", + "ingredients": [ + "lemon", + "salt", + "tumeric", + "paprika", + "green beans", + "olive oil", + "white rice", + "bone in chicken thighs", + "diced tomatoes", + "lima beans" + ] + }, + { + "id": 42994, + "cuisine": "spanish", + "ingredients": [ + "reduced sodium garbanzos", + "fat", + "pepper", + "garlic", + "onions", + "extra-virgin olive oil", + "carrots", + "watercress", + "salt" + ] + }, + { + "id": 3621, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "sliced green onions", + "unsalted butter", + "buttermilk", + "vegetable oil spray", + "all purpose unbleached flour", + "yellow corn meal", + "large eggs", + "salt" + ] + }, + { + "id": 18416, + "cuisine": "italian", + "ingredients": [ + "boneless center cut pork chops", + "balsamic vinegar", + "olive oil", + "sugar", + "salt", + "seasoning", + "ground black pepper" + ] + }, + { + "id": 28689, + "cuisine": "mexican", + "ingredients": [ + "light sour cream", + "fat-free refried beans", + "jalapeno chilies", + "tortilla chips", + "fresh cilantro", + "salsa", + "green onions", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 32965, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "corn husks", + "cayenne pepper", + "mayonaise", + "queso fresco", + "lime wedges" + ] + }, + { + "id": 17699, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "Thai fish sauce", + "lime juice", + "sesame oil", + "coconut", + "garlic", + "low sodium soy sauce", + "palm sugar", + "coconut milk" + ] + }, + { + "id": 23448, + "cuisine": "italian", + "ingredients": [ + "pepper", + "red grape", + "rack of lamb", + "thyme sprigs", + "olive oil", + "shallots", + "corn starch", + "bread crumb fresh", + "cooking spray", + "balsamic vinegar", + "low salt chicken broth", + "honey", + "dry white wine", + "garlic cloves", + "dried rosemary" + ] + }, + { + "id": 41973, + "cuisine": "indian", + "ingredients": [ + "clove", + "whipped cream", + "orange", + "cinnamon sticks", + "unsalted roasted pistachios", + "sugar", + "cardamom pods" + ] + }, + { + "id": 38189, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "shredded pepper jack cheese", + "chorizo sausage", + "milk", + "corn tortillas", + "chiles", + "red bell pepper", + "sliced green onions", + "Old El Paso™ Thick 'n Chunky salsa", + "chopped cilantro fresh" + ] + }, + { + "id": 32387, + "cuisine": "mexican", + "ingredients": [ + "sweet onion", + "garlic", + "kosher salt", + "jalapeno chilies", + "black beans", + "roma tomatoes", + "sweet corn", + "lime juice", + "cilantro" + ] + }, + { + "id": 13334, + "cuisine": "thai", + "ingredients": [ + "sugar", + "galangal", + "tomatoes", + "beef jerky", + "asian fish sauce", + "chiles", + "fresh lime juice", + "large garlic cloves", + "green papaya" + ] + }, + { + "id": 33533, + "cuisine": "chinese", + "ingredients": [ + "black fungus", + "ginger", + "beans", + "cooking oil", + "scallions", + "sugar", + "boneless chicken breast", + "purple onion", + "water", + "kecap manis", + "oyster sauce" + ] + }, + { + "id": 34625, + "cuisine": "southern_us", + "ingredients": [ + "sour cream", + "graham cracker crusts", + "sweetened condensed milk", + "lime zest", + "key lime", + "whipped cream", + "key lime juice" + ] + }, + { + "id": 18477, + "cuisine": "mexican", + "ingredients": [ + "salt", + "sour cream", + "vegetable oil", + "red enchilada sauce", + "ground beef", + "pepper", + "yellow onion", + "corn tortillas", + "black olives", + "shredded cheese" + ] + }, + { + "id": 38289, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "flour tortillas", + "chipotle", + "shredded cheese" + ] + }, + { + "id": 14328, + "cuisine": "japanese", + "ingredients": [ + "tomato paste", + "potatoes", + "oil", + "tumeric", + "ground coriander", + "red chili powder", + "salt", + "frozen peas", + "amchur", + "cumin seed" + ] + }, + { + "id": 28028, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "boneless skinless chicken breasts", + "all-purpose flour", + "cayenne", + "buttermilk", + "poultry seasoning", + "ground black pepper", + "onion powder", + "hot sauce", + "kosher salt", + "cornflake crumbs", + "paprika" + ] + }, + { + "id": 37500, + "cuisine": "japanese", + "ingredients": [ + "sake", + "green onions", + "firm tofu", + "dashi", + "salt", + "carrots", + "soy sauce", + "ginger", + "seaweed", + "mirin", + "dried shiitake mushrooms", + "corn starch" + ] + }, + { + "id": 9395, + "cuisine": "vietnamese", + "ingredients": [ + "curry powder", + "shallots", + "chillies", + "eggs", + "lemon grass", + "salt", + "lime juice", + "ginger", + "coriander", + "fish sauce", + "beef", + "ground coriander" + ] + }, + { + "id": 17367, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "fresh lime juice", + "purple onion", + "jalapeno chilies", + "chopped cilantro", + "avocado", + "fresh lemon juice" + ] + }, + { + "id": 42960, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "vegetable oil", + "ground coriander", + "garam masala", + "salt", + "onions", + "kidney beans", + "garlic", + "cumin seed", + "tomatoes", + "grated cauliflower", + "cayenne pepper" + ] + }, + { + "id": 22899, + "cuisine": "italian", + "ingredients": [ + "semi-soft cheese", + "garlic", + "salt and ground black pepper", + "sourdough baguette", + "olive oil", + "plum tomatoes", + "fresh basil", + "balsamic vinegar" + ] + }, + { + "id": 17885, + "cuisine": "cajun_creole", + "ingredients": [ + "seasoning", + "chicken sausage", + "bell pepper", + "onions", + "red kidnei beans, rins and drain", + "garlic powder", + "celery", + "cooked rice", + "dried thyme", + "salt", + "black pepper", + "base", + "bay leaf" + ] + }, + { + "id": 38306, + "cuisine": "korean", + "ingredients": [ + "minced ginger", + "rice vinegar", + "coarse sea salt", + "scallions", + "honey", + "chinese cabbage", + "red pepper" + ] + }, + { + "id": 6338, + "cuisine": "korean", + "ingredients": [ + "sugar", + "rice vinegar", + "green onions", + "english cucumber", + "fish sauce", + "red pepper", + "kosher salt", + "dark sesame oil" + ] + }, + { + "id": 46299, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "szechwan peppercorns", + "rice vinegar", + "Sriracha", + "dry sherry", + "chinese five-spice powder", + "honey", + "vegetable oil", + "yellow onion", + "soy sauce", + "hoisin sauce", + "garlic", + "ground white pepper" + ] + }, + { + "id": 17333, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "garlic", + "minced beef", + "beansprouts", + "black pepper", + "red pepper flakes", + "hot sauce", + "dumplings", + "spring onions", + "salt", + "firm tofu", + "toasted sesame oil", + "soy sauce", + "vegetable oil", + "rice vinegar", + "carrots" + ] + }, + { + "id": 16395, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "onion powder", + "celery seed", + "ground red pepper", + "salt", + "ground nutmeg", + "paprika", + "black pepper", + "chili powder", + "lemon pepper" + ] + }, + { + "id": 44578, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "ground black pepper", + "fresh oregano", + "eggplant", + "salt", + "red bell pepper", + "large egg whites", + "large eggs", + "garlic cloves", + "olive oil", + "potatoes", + "feta cheese crumbles" + ] + }, + { + "id": 43413, + "cuisine": "southern_us", + "ingredients": [ + "marshmallows", + "sweet potatoes", + "brown sugar", + "salt", + "eggs", + "buttermilk", + "pie crust", + "mini marshmallows" + ] + }, + { + "id": 32627, + "cuisine": "moroccan", + "ingredients": [ + "cayenne", + "lamb loin chops", + "onions", + "cilantro sprigs", + "garlic cloves", + "olive oil", + "salt", + "fresh lemon juice", + "Italian parsley leaves", + "sweet paprika", + "ground cumin" + ] + }, + { + "id": 18239, + "cuisine": "italian", + "ingredients": [ + "sweet potatoes", + "chili pepper", + "all-purpose flour", + "semolina flour", + "salt", + "water", + "coconut milk" + ] + }, + { + "id": 29950, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "lime juice", + "water", + "rice", + "cilantro" + ] + }, + { + "id": 23730, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "pepper", + "garlic powder", + "garlic", + "corn tortillas", + "brown sugar", + "lime juice", + "cilantro stems", + "salsa", + "cabbage", + "pico de gallo", + "tilapia fillets", + "jalapeno chilies", + "salt", + "onions", + "crema mexicana", + "lime", + "ground red pepper", + "oil", + "ground cumin" + ] + }, + { + "id": 11968, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "steamed white rice", + "all-purpose flour", + "chicken broth", + "olive oil", + "salt", + "okra", + "celery ribs", + "boneless chicken skinless thigh", + "smoked sausage", + "cayenne pepper", + "andouille sausage", + "tomatoes with juice", + "yellow onion" + ] + }, + { + "id": 14548, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "water", + "guacamole", + "sea salt", + "corn flour", + "oregano", + "cheddar cheese", + "refried beans", + "chili powder", + "garlic", + "corn tortillas", + "pico de gallo", + "lime", + "chicken breasts", + "cilantro", + "sour cream", + "cumin", + "chicken stock", + "jack cheese", + "olive oil", + "butter", + "rice", + "onions" + ] + }, + { + "id": 12217, + "cuisine": "jamaican", + "ingredients": [ + "ground nutmeg", + "raisins", + "nuts", + "eggs", + "flour", + "salt", + "bananas", + "vanilla", + "allspice", + "sugar", + "baking powder", + "margarine" + ] + }, + { + "id": 14942, + "cuisine": "french", + "ingredients": [ + "baby spinach leaves", + "olive oil", + "lemon wedge", + "salt", + "celery", + "fat free less sodium chicken broth", + "leeks", + "cracked black pepper", + "garlic cloves", + "frozen shelled edamame", + "water", + "ground red pepper", + "green peas", + "fresh lemon juice", + "black pepper", + "broccoli florets", + "butter", + "rice" + ] + }, + { + "id": 34523, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "ragu old world style pasta sauc", + "part-skim ricotta cheese", + "eggs", + "lasagna noodles, cooked and drained", + "part-skim mozzarella cheese", + "ground beef" + ] + }, + { + "id": 48100, + "cuisine": "greek", + "ingredients": [ + "purple onion", + "feta cheese crumbles", + "chunk light tuna in water", + "pitted kalamata olives", + "salad dressing" + ] + }, + { + "id": 23281, + "cuisine": "cajun_creole", + "ingredients": [ + "frozen okra", + "flour", + "salt", + "pepper", + "file powder", + "garlic", + "onions", + "celery ribs", + "garlic powder", + "butter", + "oil", + "water", + "bell pepper", + "smoked sausage", + "chicken" + ] + }, + { + "id": 26844, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "shallots", + "soft fresh goat cheese", + "plum tomatoes", + "vegetable oil spray", + "chopped fresh thyme", + "fresh basil leaves", + "pancetta", + "grated parmesan cheese", + "butter", + "arugula", + "olive oil", + "wonton wrappers", + "thyme sprigs" + ] + }, + { + "id": 44804, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "olive oil", + "cumin seed", + "kosher salt", + "chile pepper", + "skirt steak", + "sugar", + "ground black pepper", + "garlic cloves", + "lime", + "cilantro leaves" + ] + }, + { + "id": 19362, + "cuisine": "chinese", + "ingredients": [ + "water", + "jalapeno chilies", + "cucumber", + "corn kernels", + "green tomatoes", + "celery seed", + "sugar", + "chopped green bell pepper", + "salt", + "red bell pepper", + "cider vinegar", + "finely chopped onion", + "carrots", + "ground turmeric" + ] + }, + { + "id": 10864, + "cuisine": "southern_us", + "ingredients": [ + "ground ginger", + "baking soda", + "buttermilk", + "sugar", + "large eggs", + "all-purpose flour", + "sweet potatoes & yams", + "baking powder", + "yellow corn meal", + "unsalted butter", + "salt" + ] + }, + { + "id": 19187, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "dry white wine", + "garlic cloves", + "crushed tomatoes", + "chicken drumsticks", + "chicken thighs", + "rosemary sprigs", + "chicken breast halves", + "low salt chicken broth", + "prosciutto", + "extra-virgin olive oil" + ] + }, + { + "id": 3108, + "cuisine": "russian", + "ingredients": [ + "crusty bread", + "freshly ground pepper", + "green bell pepper", + "extra-virgin olive oil", + "kosher salt", + "sausages", + "mustard", + "sauerkraut", + "onions" + ] + }, + { + "id": 13525, + "cuisine": "mexican", + "ingredients": [ + "yellow bell pepper", + "cranberries", + "red chili peppers", + "cilantro leaves", + "frozen orange juice concentrate, thawed and undiluted", + "purple onion", + "garlic", + "ground cumin" + ] + }, + { + "id": 28204, + "cuisine": "indian", + "ingredients": [ + "pepper", + "jalapeno chilies", + "lemon", + "cilantro leaves", + "smoked paprika", + "ground cinnamon", + "fresh ginger", + "boneless skinless chicken breasts", + "garlic", + "cayenne pepper", + "cumin", + "pizza crust", + "garam masala", + "butter", + "salt", + "shredded mozzarella cheese", + "ground cumin", + "crushed tomatoes", + "whole milk", + "extra-virgin olive oil", + "greek style plain yogurt", + "onions" + ] + }, + { + "id": 29001, + "cuisine": "southern_us", + "ingredients": [ + "vidalia", + "salt", + "baking powder", + "beer", + "large eggs", + "all-purpose flour", + "yellow corn meal", + "vegetable oil" + ] + }, + { + "id": 48829, + "cuisine": "korean", + "ingredients": [ + "eggs", + "minced garlic", + "enokitake", + "sesame oil", + "carrots", + "wasabi", + "pepper", + "beef", + "chives", + "english cucumber", + "sugar", + "water", + "vinegar", + "salt", + "soy sauce", + "shiitake", + "flour", + "mustard powder" + ] + }, + { + "id": 40991, + "cuisine": "mexican", + "ingredients": [ + "beans", + "jalapeno chilies", + "salt", + "cumin", + "tomatoes", + "olive oil", + "chili powder", + "sour cream", + "pepper", + "boneless skinless chicken breasts", + "salsa", + "cheddar cheese", + "tortillas", + "garlic", + "onions" + ] + }, + { + "id": 49549, + "cuisine": "southern_us", + "ingredients": [ + "juice", + "lemon juice", + "sugar", + "pectin" + ] + }, + { + "id": 32665, + "cuisine": "mexican", + "ingredients": [ + "bacon drippings", + "butter", + "flour tortillas", + "buffalo sauce", + "fresh tomatoes", + "bacon", + "ranch dressing", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 10544, + "cuisine": "french", + "ingredients": [ + "capers", + "garlic", + "fresh lemon juice", + "olive oil", + "cayenne pepper", + "pitted green olives", + "anchovy fillets", + "black pepper", + "salt" + ] + }, + { + "id": 2993, + "cuisine": "italian", + "ingredients": [ + "low fat mild Italian turkey sausage", + "cannellini beans", + "penne pasta", + "dried oregano", + "parmesan cheese", + "garlic", + "onions", + "pepper", + "dry red wine", + "fat skimmed chicken broth", + "( oz.) tomato sauce", + "white beans", + "arugula" + ] + }, + { + "id": 48804, + "cuisine": "italian", + "ingredients": [ + "ground pepper", + "heavy cream", + "half & half", + "grated parmesan cheese", + "cream cheese", + "garlic powder", + "butter" + ] + }, + { + "id": 17976, + "cuisine": "french", + "ingredients": [ + "sugar", + "cinnamon", + "calvados", + "lemon zest", + "water", + "gala apples" + ] + }, + { + "id": 17137, + "cuisine": "cajun_creole", + "ingredients": [ + "mayonaise", + "sweet pickle", + "dried tarragon leaves", + "capers", + "coarse ground mustard" + ] + }, + { + "id": 16987, + "cuisine": "moroccan", + "ingredients": [ + "finely chopped fresh parsley", + "fresh lemon juice", + "fresh basil", + "extra-virgin olive oil", + "onions", + "low sodium chicken broth", + "couscous", + "water", + "garlic cloves", + "chopped fresh mint" + ] + }, + { + "id": 3484, + "cuisine": "greek", + "ingredients": [ + "pepper", + "garlic", + "lemon juice", + "green bell pepper", + "feta cheese", + "salt", + "red bell pepper", + "grape tomatoes", + "olive oil", + "purple onion", + "cucumber", + "pitted kalamata olives", + "yellow bell pepper", + "chickpeas", + "dried oregano" + ] + }, + { + "id": 44436, + "cuisine": "irish", + "ingredients": [ + "shortening", + "green onions", + "all-purpose flour", + "eggs", + "sesame seeds", + "salt", + "fresh parsley", + "pepper", + "fully cooked ham", + "beef broth", + "cold water", + "tenderloin roast", + "butter", + "fresh mushrooms" + ] + }, + { + "id": 26649, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "red enchilada sauce", + "eggs", + "Mexican cheese blend", + "spicy pork sausage", + "diced green chilies", + "onions", + "green bell pepper", + "flour tortillas" + ] + }, + { + "id": 28908, + "cuisine": "mexican", + "ingredients": [ + "potatoes", + "all-purpose flour", + "cumin", + "garlic", + "red bell pepper", + "chili powder", + "beef broth", + "chuck roast", + "salt", + "onions" + ] + }, + { + "id": 40926, + "cuisine": "french", + "ingredients": [ + "sugar", + "all-purpose flour", + "ice water", + "gala apples", + "unsalted butter", + "fresh lemon juice", + "salt" + ] + }, + { + "id": 566, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "diced green chilies", + "salsa", + "butter lettuce", + "corn kernels", + "reduced-fat sour cream", + "ground turkey", + "shredded cheddar cheese", + "ground black pepper", + "taco seasoning", + "black beans", + "olive oil", + "cilantro leaves" + ] + }, + { + "id": 26752, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "purple onion", + "roma tomatoes", + "taco seasoning mix", + "lime juice", + "jalapeno chilies" + ] + }, + { + "id": 22807, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "green onions", + "peanut oil", + "Shaoxing wine", + "star anise", + "soy sauce", + "sesame oil", + "dark soy sauce", + "peeled fresh ginger", + "merluza" + ] + }, + { + "id": 24980, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "light soy sauce", + "sesame oil", + "corn starch", + "water", + "boneless skinless chicken breasts", + "angled loofah", + "sugar", + "shiitake", + "peanut oil", + "fermented black beans", + "red chili peppers", + "peeled fresh ginger", + "oyster sauce", + "chopped garlic" + ] + }, + { + "id": 27898, + "cuisine": "chinese", + "ingredients": [ + "dark sesame oil", + "carrots", + "peeled fresh ginger", + "long-grain rice", + "chopped cilantro fresh", + "low sodium soy sauce", + "peanut oil", + "cooked shrimp", + "crushed red pepper", + "garlic cloves" + ] + }, + { + "id": 23755, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "finely chopped onion", + "lemon", + "provolone cheese", + "water", + "lemon zest", + "salt", + "chopped garlic", + "olive oil", + "dry white wine", + "soppressata", + "bread crumb fresh", + "parmigiano reggiano cheese", + "artichokes", + "flat leaf parsley" + ] + }, + { + "id": 33184, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil cooking spray", + "prepared mustard", + "tomatoes", + "pepper", + "instant rice", + "chopped onion", + "green bell pepper", + "tomato juice" + ] + }, + { + "id": 46069, + "cuisine": "spanish", + "ingredients": [ + "salt", + "garlic cloves", + "kale", + "chickpeas", + "fat free less sodium chicken broth", + "spanish chorizo", + "dried oregano", + "lemon wedge", + "chopped onion" + ] + }, + { + "id": 4882, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "jalapeno chilies", + "cream cheese", + "garlic powder", + "onion powder", + "black pepper", + "pimentos", + "ground cayenne pepper", + "shredded extra sharp cheddar cheese", + "salt" + ] + }, + { + "id": 44480, + "cuisine": "mexican", + "ingredients": [ + "cajeta", + "vanilla ice cream", + "chopped pecans", + "coffee liqueur" + ] + }, + { + "id": 30663, + "cuisine": "italian", + "ingredients": [ + "baguette", + "garlic cloves", + "cream cheese with chives and onion", + "goat cheese", + "tomato paste", + "ground black pepper", + "olive oil flavored cooking spray", + "fresh basil", + "marinara sauce" + ] + }, + { + "id": 47541, + "cuisine": "italian", + "ingredients": [ + "baby spinach leaves", + "grated parmesan cheese", + "all-purpose flour", + "salted butter", + "potato gnocchi", + "rotisserie chicken", + "kosher salt", + "whole milk", + "regular chicken broth", + "nutmeg", + "ground black pepper", + "garlic", + "sliced mushrooms" + ] + }, + { + "id": 24620, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "enchilada sauce", + "chicken", + "soft goat's cheese", + "Mexican cheese blend", + "vegetable oil", + "onions", + "chicken broth", + "fresh cilantro", + "chili powder", + "sour cream", + "ground cumin", + "tomato sauce", + "flour tortillas", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 20726, + "cuisine": "italian", + "ingredients": [ + "capers", + "garlic cloves", + "olive oil", + "flat leaf parsley", + "chicken broth", + "all-purpose flour", + "turkey breast cutlets", + "fresh lemon juice" + ] + }, + { + "id": 6780, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "lime", + "garlic", + "minced onion", + "cilantro leaves", + "green chile", + "whole peeled tomatoes", + "salsa" + ] + }, + { + "id": 33607, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "long-grain rice", + "chuck roast", + "vegetable oil", + "water", + "sesame oil", + "toasted sesame seeds", + "lettuce leaves", + "beer" + ] + }, + { + "id": 14350, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "chopped fresh chives", + "button mushrooms", + "finely chopped onion", + "fresh shiitake mushrooms", + "penne pasta", + "bread crumb fresh", + "whole milk", + "all-purpose flour", + "grated parmesan cheese", + "butter", + "hot water" + ] + }, + { + "id": 14033, + "cuisine": "mexican", + "ingredients": [ + "water", + "garlic", + "stew meat", + "chopped tomatoes", + "salt", + "shortening", + "chile pepper", + "onions", + "pepper", + "stewed tomatoes", + "ground cumin" + ] + }, + { + "id": 26121, + "cuisine": "french", + "ingredients": [ + "chicken stock", + "olive oil", + "dry red wine", + "bay leaf", + "white button mushrooms", + "egg noodles", + "salt", + "thick-cut bacon", + "tomato paste", + "unsalted butter", + "garlic", + "chicken thighs", + "dried thyme", + "shallots", + "all-purpose flour" + ] + }, + { + "id": 20430, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "paprika", + "tarragon", + "large eggs", + "freshly ground pepper", + "dijon mustard", + "fresh tarragon", + "mayonaise", + "apple cider vinegar", + "scallions" + ] + }, + { + "id": 45818, + "cuisine": "british", + "ingredients": [ + "granulated sugar", + "all-purpose flour", + "whole milk", + "large eggs", + "golden syrup", + "unsalted butter", + "heavy cream" + ] + }, + { + "id": 8920, + "cuisine": "cajun_creole", + "ingredients": [ + "bay leaves", + "vegetable broth", + "green pepper", + "flavoring", + "black pepper", + "diced tomatoes", + "cayenne pepper", + "garlic cloves", + "onions", + "sweet potatoes", + "paprika", + "chickpeas", + "thyme", + "natural peanut butter", + "Tabasco Pepper Sauce", + "salt", + "okra", + "celery" + ] + }, + { + "id": 419, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "pinenuts", + "garlic", + "fresh basil", + "extra-virgin olive oil", + "pepper", + "salt" + ] + }, + { + "id": 45627, + "cuisine": "cajun_creole", + "ingredients": [ + "hawaiian sweet rolls", + "Kraft Miracle Whip Dressing", + "Edam", + "garlic pepper seasoning", + "sweet onion", + "cajun seasoning", + "lemon pepper", + "creole mustard", + "extra-lean ground beef", + "roasted garlic", + "american cheese slices", + "ketchup", + "lettuce leaves", + "dill pickles", + "plum tomatoes" + ] + }, + { + "id": 27136, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "dry white wine", + "button mushrooms", + "pork shoulder boston butt", + "black peppercorns", + "unsalted butter", + "cinnamon", + "garlic cloves", + "onions", + "ground cloves", + "bay leaves", + "ground pork", + "thyme", + "large egg yolks", + "russet potatoes", + "all-purpose flour", + "low salt chicken broth" + ] + }, + { + "id": 1969, + "cuisine": "french", + "ingredients": [ + "hanger steak", + "olive oil", + "salt", + "cracked black pepper", + "russet potatoes", + "chopped parsley" + ] + }, + { + "id": 6977, + "cuisine": "cajun_creole", + "ingredients": [ + "turkey", + "creole seasoning", + "brown basmati rice", + "water", + "hot sauce", + "smoked paprika", + "celery ribs", + "salt", + "garlic cloves", + "canola oil", + "red beans", + "green pepper", + "onions" + ] + }, + { + "id": 197, + "cuisine": "italian", + "ingredients": [ + "celery salt", + "olive oil", + "dry white wine", + "salt", + "cremini mushrooms", + "fresh thyme", + "vegetable stock", + "pepper", + "grated parmesan cheese", + "butter", + "arborio rice", + "shiitake", + "shallots", + "flat leaf parsley" + ] + }, + { + "id": 33965, + "cuisine": "moroccan", + "ingredients": [ + "minced garlic", + "cooking spray", + "ground allspice", + "large shrimp", + "black pepper", + "nonfat yogurt", + "salt", + "ground turmeric", + "olive oil", + "ground red pepper", + "fresh lime juice", + "honey", + "peeled fresh ginger", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 45695, + "cuisine": "french", + "ingredients": [ + "sour cream", + "whipping cream" + ] + }, + { + "id": 19564, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "bourbon whiskey", + "worcestershire sauce", + "garlic cloves", + "honey", + "center cut pork loin chops", + "lemon", + "dark brown sugar", + "vidalia onion", + "dijon mustard", + "apple cider vinegar", + "salt", + "peaches", + "shallots", + "cracked black pepper", + "fresh parsley" + ] + }, + { + "id": 967, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "jicama", + "fresh lime juice", + "romaine lettuce", + "jalapeno chilies", + "salsa", + "sliced green onions", + "zucchini", + "diced tomatoes", + "canola oil", + "ground black pepper", + "queso fresco", + "chopped cilantro fresh" + ] + }, + { + "id": 7512, + "cuisine": "indian", + "ingredients": [ + "whole wheat flour", + "water", + "all-purpose flour" + ] + }, + { + "id": 4986, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "chopped fresh thyme", + "salt", + "water", + "chopped fresh chives", + "extra-virgin olive oil", + "chopped fresh mint", + "sourdough bread", + "crumbled ricotta salata cheese", + "purple onion", + "fresh basil", + "ground black pepper", + "red wine vinegar", + "fresh oregano" + ] + }, + { + "id": 9487, + "cuisine": "french", + "ingredients": [ + "seasoned bread crumbs", + "salt", + "bone-in chicken breast halves", + "butter", + "dijon mustard", + "white wine", + "garlic" + ] + }, + { + "id": 35114, + "cuisine": "french", + "ingredients": [ + "bread crumb fresh", + "garlic", + "canned low sodium chicken broth", + "baking potatoes", + "ground black pepper", + "salt", + "juniper berries", + "butter" + ] + }, + { + "id": 8237, + "cuisine": "british", + "ingredients": [ + "brandy", + "golden raisins", + "all-purpose flour", + "eggs", + "superfine sugar", + "raisins", + "ground cinnamon", + "mixed spice", + "butter", + "grated lemon zest", + "dried currants", + "chopped almonds", + "candied cherries" + ] + }, + { + "id": 11480, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "garlic powder", + "onion powder", + "salsa", + "corn kernels", + "boneless skinless chicken breasts", + "salt", + "dried oregano", + "shredded cheddar cheese", + "green onions", + "vegetable oil", + "fajita size flour tortillas", + "chicken broth", + "olive oil", + "chili powder", + "all-purpose flour", + "ground cumin" + ] + }, + { + "id": 1212, + "cuisine": "greek", + "ingredients": [ + "pepper", + "salt", + "chicken", + "red potato", + "lemon", + "boiling water", + "white wine", + "garlic", + "dried oregano", + "chicken bouillon granules", + "olive oil", + "onions" + ] + }, + { + "id": 3964, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame seeds", + "garlic", + "black pepper", + "green onions", + "ketchup", + "Tyson Crispy Chicken Strips", + "rice vinegar", + "brown sugar", + "honey", + "sesame oil" + ] + }, + { + "id": 37391, + "cuisine": "mexican", + "ingredients": [ + "serrano", + "corn tortillas", + "garlic cloves", + "mango", + "cumin seed", + "chopped cilantro", + "lime juice", + "shrimp", + "canola oil" + ] + }, + { + "id": 35693, + "cuisine": "southern_us", + "ingredients": [ + "green chile", + "white hominy", + "reduced-fat sour cream", + "shredded cheddar cheese" + ] + }, + { + "id": 12790, + "cuisine": "mexican", + "ingredients": [ + "extra-virgin olive oil", + "fresh lime juice", + "seasoning", + "salt", + "avocado", + "purple onion", + "ground cumin", + "cherry tomatoes", + "edamame" + ] + }, + { + "id": 11579, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "baking powder", + "sour cream", + "shortening", + "salt", + "eggs", + "vanilla extract", + "white sugar", + "black walnut", + "baking soda", + "all-purpose flour" + ] + }, + { + "id": 27658, + "cuisine": "british", + "ingredients": [ + "olive oil", + "garlic", + "celery", + "canned corn", + "pepper", + "flour", + "salt", + "onions", + "whitefish fillets", + "potatoes", + "shredded sharp cheddar cheese", + "bay leaf", + "dried thyme", + "whole milk", + "carrots", + "dried parsley" + ] + }, + { + "id": 29288, + "cuisine": "thai", + "ingredients": [ + "vegetable oil", + "Thai fish sauce", + "coriander", + "fresh ginger", + "pak choi", + "beansprouts", + "red pepper", + "baby corn", + "toasted sesame seeds", + "spring onions", + "oyster sauce", + "chillies" + ] + }, + { + "id": 1809, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "meatballs", + "sesame oil", + "salt", + "panko breadcrumbs", + "tomato paste", + "ground chicken", + "hoisin sauce", + "red pepper flakes", + "chinese five-spice powder", + "ground ginger", + "soy sauce", + "Sriracha", + "ground chicken breast", + "rice vinegar", + "sliced green onions", + "chicken broth", + "minced garlic", + "large eggs", + "garlic", + "corn starch" + ] + }, + { + "id": 47611, + "cuisine": "italian", + "ingredients": [ + "slivered almonds", + "golden raisins", + "all-purpose flour", + "large eggs", + "vanilla extract", + "sugar", + "baking powder", + "cooking spray", + "salt" + ] + }, + { + "id": 2666, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "orange", + "extra-virgin olive oil", + "kosher salt", + "oil-cured black olives", + "all-purpose flour", + "sugar", + "active dry yeast", + "salt", + "water", + "coarse salt" + ] + }, + { + "id": 27612, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "parsley", + "mushrooms", + "heavy cream", + "grated parmesan cheese", + "balsamic vinegar", + "fettuccine pasta", + "dry white wine", + "garlic" + ] + }, + { + "id": 13205, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "baking powder", + "sugar", + "fresh blueberries", + "salt", + "melted butter", + "granulated sugar", + "cinnamon", + "water", + "flour", + "corn starch" + ] + }, + { + "id": 47764, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "lentils", + "tomatoes", + "green chilies", + "ground turmeric", + "garlic paste", + "oil", + "ginger paste", + "curry leaves", + "salt", + "onions" + ] + }, + { + "id": 35364, + "cuisine": "southern_us", + "ingredients": [ + "celery salt", + "lemon juice", + "honey", + "hot sauce", + "pepper", + "canola oil" + ] + }, + { + "id": 43502, + "cuisine": "italian", + "ingredients": [ + "green olives", + "balsamic vinegar", + "pitted kalamata olives", + "pitted black olives", + "garlic", + "olive oil" + ] + }, + { + "id": 13103, + "cuisine": "italian", + "ingredients": [ + "capers", + "anchovy fillets", + "turkey breast", + "light tuna packed in olive oil", + "low salt chicken broth", + "baby spinach leaves", + "fresh lemon juice", + "grated lemon peel", + "mayonaise", + "oil", + "fresh parsley" + ] + }, + { + "id": 27009, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "shredded mozzarella cheese", + "parmesan cheese", + "eggplant", + "cooking spray" + ] + }, + { + "id": 8627, + "cuisine": "irish", + "ingredients": [ + "milk", + "all-purpose flour", + "eggs", + "baking powder", + "white sugar", + "yellow corn meal", + "hot pepper sauce", + "cayenne pepper", + "shortening", + "salt" + ] + }, + { + "id": 41801, + "cuisine": "irish", + "ingredients": [ + "all-purpose flour", + "self rising flour", + "buttermilk" + ] + }, + { + "id": 20062, + "cuisine": "southern_us", + "ingredients": [ + "guanciale", + "white wine", + "heavy cream", + "lard", + "fava beans", + "unsalted butter", + "salt", + "saffron", + "pork cheeks", + "sherry vinegar", + "peas", + "onions", + "sage leaves", + "fennel fronds", + "shallots", + "chickpeas" + ] + }, + { + "id": 42611, + "cuisine": "thai", + "ingredients": [ + "ground cinnamon", + "ground cloves", + "jalapeno chilies", + "purple onion", + "corn starch", + "cooked rice", + "olive oil", + "chili powder", + "ground coriander", + "ground cumin", + "fresh basil", + "black pepper", + "chicken breasts", + "salt", + "coconut milk", + "tumeric", + "fresh ginger", + "garlic", + "ground cardamom" + ] + }, + { + "id": 47165, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "peanuts", + "green onions", + "cooking wine", + "water", + "vinegar", + "szechwan peppercorns", + "garlic cloves", + "chili pepper", + "boneless chicken breast", + "shallots", + "salt", + "dark soy sauce", + "light soy sauce", + "cooking oil", + "ginger", + "corn starch" + ] + }, + { + "id": 42265, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "zucchini", + "Mexican oregano", + "garlic cloves", + "greek yogurt", + "onions", + "shredded cheddar cheese", + "bell pepper", + "ancho powder", + "thyme", + "ground beef", + "ground cumin", + "cottage cheese", + "chipotle", + "full fat sour cream", + "Tapatio Hot Sauce", + "ground turkey", + "noodles", + "lime", + "crimini mushrooms", + "oil", + "smoked paprika", + "roasted tomatoes" + ] + }, + { + "id": 46406, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "asian pear", + "red pepper flakes", + "sesame seeds", + "green onions", + "garlic", + "flanken short ribs", + "sesame oil", + "yellow onion", + "water", + "soda", + "ginger" + ] + }, + { + "id": 49678, + "cuisine": "mexican", + "ingredients": [ + "scallion greens", + "bell pepper", + "turkey meat", + "dried oregano", + "jack cheese", + "vegetable oil", + "fresh lime juice", + "corn tortilla chips", + "jalapeno chilies", + "sour cream", + "ground cumin", + "black beans", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 352, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "boneless pork loin", + "ground cumin", + "chili powder", + "chopped cilantro fresh", + "barbecue sauce", + "onions", + "ground cinnamon", + "chile pepper", + "dried oregano" + ] + }, + { + "id": 26317, + "cuisine": "irish", + "ingredients": [ + "beef stock", + "carrots", + "baking potatoes", + "fresh parsley", + "meat", + "celery", + "pepper", + "salt", + "onions" + ] + }, + { + "id": 10605, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "olive oil", + "red swiss chard", + "dried currants", + "large garlic cloves" + ] + }, + { + "id": 6508, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "grated parmesan cheese", + "all-purpose flour", + "roast red peppers, drain", + "fresh basil", + "butter", + "shredded mozzarella cheese", + "cornmeal", + "eggs", + "ricotta cheese", + "fresh oregano", + "chopped parsley", + "cold water", + "feta cheese", + "salt", + "ham" + ] + }, + { + "id": 2824, + "cuisine": "british", + "ingredients": [ + "champagne", + "powdered sugar", + "heavy cream" + ] + }, + { + "id": 16203, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "chicken stock", + "boneless skinless chicken breasts", + "shrimp", + "mussels", + "olive oil", + "carrots", + "clams", + "green bell pepper", + "lemon", + "red bell pepper", + "fresh green peas", + "spanish rice", + "spanish chorizo", + "onions" + ] + }, + { + "id": 6537, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "vanilla extract", + "pastry shell", + "semi-sweet chocolate morsels", + "sugar", + "corn syrup", + "eggs", + "butter" + ] + }, + { + "id": 22011, + "cuisine": "mexican", + "ingredients": [ + "anise seed", + "ground cloves", + "mexican chocolate", + "white sugar", + "chicken broth", + "tomato sauce", + "butter", + "bay leaf", + "white bread", + "black peppercorns", + "sesame seeds", + "dried red chile peppers", + "chicken", + "ground cinnamon", + "slivered almonds", + "garlic", + "onions" + ] + }, + { + "id": 17069, + "cuisine": "mexican", + "ingredients": [ + "Old El Paso Enchilada Sauce", + "chopped onion", + "water", + "chopped cilantro", + "green chile", + "long-grain rice", + "extra-virgin olive oil" + ] + }, + { + "id": 41099, + "cuisine": "italian", + "ingredients": [ + "sliced almonds", + "ricotta cheese", + "honey", + "vanilla ice cream" + ] + }, + { + "id": 23655, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garam masala", + "garlic", + "onions", + "green chile", + "vegetable oil", + "chickpeas", + "tomato paste", + "ground cloves", + "coarse salt", + "ground coriander", + "ground cinnamon", + "peeled fresh ginger", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 11412, + "cuisine": "southern_us", + "ingredients": [ + "white wine", + "vegetable stock", + "hot sauce", + "large shrimp", + "half & half", + "garlic", + "onions", + "pepper", + "bacon", + "green pepper", + "leeks", + "salt", + "grits" + ] + }, + { + "id": 27459, + "cuisine": "korean", + "ingredients": [ + "chicken broth", + "chili", + "chives", + "salt", + "soy sauce", + "asparagus", + "rice noodles", + "sugar", + "sesame seeds", + "sesame oil", + "canola oil", + "pepper", + "mushrooms", + "garlic" + ] + }, + { + "id": 36170, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "white sandwich bread", + "cajun seasoning", + "hot pepper sauce", + "extra sharp cheddar cheese", + "diced pimentos", + "worcestershire sauce" + ] + }, + { + "id": 49076, + "cuisine": "british", + "ingredients": [ + "whole milk", + "wheat flour", + "large eggs", + "salt", + "honey", + "butter", + "yeast", + "white flour", + "soda", + "cornmeal" + ] + }, + { + "id": 47262, + "cuisine": "italian", + "ingredients": [ + "dried currants", + "olive oil", + "marinara sauce", + "kale", + "grated parmesan cheese", + "pinenuts", + "ground turkey breast", + "fresh basil leaves", + "bread crumb fresh", + "ground black pepper", + "large garlic cloves" + ] + }, + { + "id": 44393, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "garlic", + "oregano", + "water", + "worcestershire sauce", + "shrimp", + "lemon", + "salt", + "cayenne", + "cracked black pepper", + "thyme" + ] + }, + { + "id": 25935, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "cilantro leaves", + "asafetida", + "chili powder", + "oil", + "baking soda", + "green chilies", + "salt", + "onions" + ] + }, + { + "id": 31590, + "cuisine": "greek", + "ingredients": [ + "fresh lemon juice", + "Greek dressing", + "garlic" + ] + }, + { + "id": 18718, + "cuisine": "indian", + "ingredients": [ + "pepper", + "yukon gold potatoes", + "canola oil", + "tumeric", + "cayenne", + "cumin seed", + "coriander seeds", + "salt", + "ground cumin", + "yellow mustard seeds", + "brown mustard seeds", + "chopped cilantro" + ] + }, + { + "id": 9835, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "grapefruit juice", + "water", + "vegetable oil", + "sugar", + "lime slices", + "fresh lime juice", + "light soy sauce", + "mackerel fillets" + ] + }, + { + "id": 41940, + "cuisine": "spanish", + "ingredients": [ + "white wine", + "champagne", + "lemon", + "sugar" + ] + }, + { + "id": 33168, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "dried porcini mushrooms", + "finely chopped fresh parsley", + "fresh tarragon", + "cayenne pepper", + "onions", + "green bell pepper", + "hot pepper sauce", + "butter", + "beef broth", + "fresh parsley", + "red kidney beans", + "water", + "chopped fresh chives", + "button mushrooms", + "long-grain rice", + "smoked ham hocks", + "fresh rosemary", + "olive oil", + "bay leaves", + "smoked sausage", + "garlic cloves", + "boiling water" + ] + }, + { + "id": 6282, + "cuisine": "spanish", + "ingredients": [ + "baguette", + "cooking spray", + "cilantro leaves", + "red bell pepper", + "ground black pepper", + "beefsteak tomatoes", + "garlic cloves", + "water", + "green onions", + "english cucumber", + "onions", + "kosher salt", + "jalapeno chilies", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 21412, + "cuisine": "mexican", + "ingredients": [ + "clove", + "apple cider vinegar", + "ancho chile pepper", + "oregano", + "tomatoes", + "salt", + "chicken pieces", + "allspice", + "guajillo chiles", + "thyme", + "onions", + "chicken broth", + "vegetable oil", + "bay leaf", + "cumin" + ] + }, + { + "id": 17527, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "tamarind juice", + "onions", + "fresh cilantro", + "fresh mint", + "chile pepper" + ] + }, + { + "id": 26559, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "ricotta cheese", + "eggs", + "dried basil", + "minced garlic", + "shredded mozzarella cheese", + "manicotti shells", + "grated parmesan cheese" + ] + }, + { + "id": 42273, + "cuisine": "mexican", + "ingredients": [ + "salt", + "onions", + "lemon juice", + "cayenne pepper", + "plum tomatoes", + "cilantro", + "hass avocado" + ] + }, + { + "id": 6783, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "crimini mushrooms", + "salt", + "olive oil", + "butter", + "fresh lemon juice", + "sugar", + "flour", + "garlic", + "fresh parsley", + "pepper", + "chicken breasts", + "beef broth" + ] + }, + { + "id": 38724, + "cuisine": "russian", + "ingredients": [ + "water", + "beets", + "cabbage", + "tomato purée", + "potatoes", + "carrots", + "red lentils", + "vinegar", + "oil", + "fresh dill", + "salt", + "onions" + ] + }, + { + "id": 26678, + "cuisine": "french", + "ingredients": [ + "cheese", + "sliced mushrooms", + "margarine", + "parmesan cheese", + "arugula" + ] + }, + { + "id": 48377, + "cuisine": "thai", + "ingredients": [ + "scallions", + "light coconut milk", + "salt", + "water", + "basmati rice" + ] + }, + { + "id": 5912, + "cuisine": "greek", + "ingredients": [ + "garlic powder", + "salt", + "pitted kalamata olives", + "rapid rise yeast", + "bread flour", + "warm water", + "purple onion", + "fresh dill", + "extra-virgin olive oil", + "white sugar" + ] + }, + { + "id": 15276, + "cuisine": "cajun_creole", + "ingredients": [ + "capers", + "salt", + "fat-free mayonnaise", + "cooking spray", + "dried oregano", + "hot pepper sauce", + "fresh onion", + "catfish fillets", + "cajun seasoning", + "pickle relish" + ] + }, + { + "id": 28954, + "cuisine": "french", + "ingredients": [ + "cocoa", + "bay leaves", + "cake flour", + "sugar", + "pistachios", + "vanilla extract", + "cream of tartar", + "water", + "mushrooms", + "salt", + "powdered sugar", + "large eggs", + "chocolate", + "crabapples" + ] + }, + { + "id": 48139, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "salt", + "canola oil", + "dry white wine", + "onions", + "garam masala", + "chopped cilantro", + "green bell pepper", + "lime wedges", + "large shrimp" + ] + }, + { + "id": 44133, + "cuisine": "southern_us", + "ingredients": [ + "water", + "yellow mustard", + "yukon gold potatoes", + "salt" + ] + }, + { + "id": 5992, + "cuisine": "british", + "ingredients": [ + "sugar", + "baking soda", + "raisins", + "whole wheat pastry flour", + "baking powder", + "nonfat yogurt plain", + "white flour", + "large eggs", + "salt", + "rolled oats", + "butter", + "canola oil" + ] + }, + { + "id": 26247, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "fresh ginger", + "lettuce leaves", + "crushed red pepper", + "scallion greens", + "water", + "ground black pepper", + "ground pork", + "bulb", + "kosher salt", + "thai basil", + "cilantro", + "rice vinegar", + "fish sauce", + "lemongrass", + "herbs", + "garlic" + ] + }, + { + "id": 43049, + "cuisine": "vietnamese", + "ingredients": [ + "thai chile", + "fresh lime juice", + "sugar", + "carrots", + "unsalted dry roast peanuts", + "chopped cilantro fresh", + "papaya", + "Thai fish sauce" + ] + }, + { + "id": 40056, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "water", + "bamboo shoots", + "soy sauce", + "vegetable oil", + "sake", + "mirin", + "boneless chicken skinless thigh", + "scallions" + ] + }, + { + "id": 23422, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "apple cider vinegar", + "onions", + "ground black pepper", + "salt", + "sugar", + "unsalted butter", + "toasted pine nuts", + "radicchio", + "raisins" + ] + }, + { + "id": 13271, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "shallots", + "nam pla", + "scallions", + "soy sauce", + "cilantro leaves", + "chile powder", + "boneless skinless chicken breasts", + "chopped fresh mint" + ] + }, + { + "id": 2897, + "cuisine": "southern_us", + "ingredients": [ + "matzo meal", + "oil", + "flour", + "eggs", + "green tomatoes" + ] + }, + { + "id": 7321, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic", + "spareribs", + "dry sherry", + "rib", + "hoisin sauce", + "chinese five-spice powder", + "sugar", + "red food coloring" + ] + }, + { + "id": 6575, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "garlic", + "dried oregano", + "potatoes", + "feta cheese crumbles", + "ground black pepper", + "fresh lemon juice", + "water", + "sea salt", + "chopped fresh mint" + ] + }, + { + "id": 18819, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "lime", + "long grain white rice", + "white onion", + "salt", + "tomatoes", + "jalapeno chilies", + "canola oil", + "tomato paste", + "fresh cilantro", + "garlic cloves" + ] + }, + { + "id": 9077, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "water", + "ground black pepper", + "mushrooms", + "vegetable oil", + "garlic", + "broccoli", + "oyster sauce", + "celery", + "orange zest", + "soy sauce", + "yellow squash", + "water chestnuts", + "sesame oil", + "vegetable broth", + "cilantro leaves", + "peanut oil", + "corn starch", + "snow peas", + "sugar", + "honey", + "zucchini", + "peeled fresh ginger", + "buttermilk", + "boneless skinless chicken", + "yellow onion", + "Chinese egg noodles", + "mung bean sprouts", + "chicken stock", + "kosher salt", + "fresh ginger", + "flour", + "mixed vegetables", + "thai chile", + "rice vinegar", + "scallions", + "toasted sesame oil", + "canola oil" + ] + }, + { + "id": 21930, + "cuisine": "irish", + "ingredients": [ + "Guinness Beer", + "butter", + "cream cheese", + "eggs", + "flour", + "chocolate", + "Baileys Irish Cream Liqueur", + "heavy cream", + "unsweetened cocoa powder", + "sugar", + "Irish whiskey", + "salt" + ] + }, + { + "id": 15944, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "cheese", + "sour cream", + "refried beans", + "salsa", + "pepper", + "salt", + "green chile", + "lean ground beef", + "tortilla chips" + ] + }, + { + "id": 38617, + "cuisine": "italian", + "ingredients": [ + "water", + "mushrooms", + "shredded mozzarella cheese", + "italian seasoning", + "brown sugar", + "salt and ground black pepper", + "moose", + "onions", + "spinach", + "olive oil", + "ricotta cheese", + "oven-ready lasagna noodles", + "unsweetened cocoa powder", + "pasta sauce", + "grated parmesan cheese", + "garlic", + "dried oregano" + ] + }, + { + "id": 37729, + "cuisine": "southern_us", + "ingredients": [ + "orange", + "lemon", + "fresh mint", + "brown sugar", + "large eggs", + "gingersnap cookies", + "frozen orange juice concentrate", + "butter", + "heavy whipping cream", + "ground cinnamon", + "granulated sugar", + "fresh lemon juice", + "sweetened condensed milk" + ] + }, + { + "id": 8370, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "olive oil", + "green peas", + "cream cheese", + "fresh basil", + "cooking spray", + "salt", + "black pepper", + "fusilli", + "all-purpose flour", + "diced onions", + "fresh parmesan cheese", + "1% low-fat milk", + "garlic cloves" + ] + }, + { + "id": 18112, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "shiitake", + "beaten eggs", + "sweet chili sauce", + "spring onions", + "carrots", + "sugar", + "vermicelli", + "oyster sauce", + "spring roll wrappers", + "minced garlic", + "vegetable oil", + "beansprouts" + ] + }, + { + "id": 2975, + "cuisine": "chinese", + "ingredients": [ + "seasoning", + "fresh ginger", + "ground pork", + "toasted sesame oil", + "soy sauce", + "ground black pepper", + "scallions", + "eggs", + "gyoza", + "garlic", + "canola oil", + "kosher salt", + "napa cabbage", + "carrots" + ] + }, + { + "id": 24070, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "egg whites", + "provolone cheese", + "frozen mixed thawed vegetables,", + "minced garlic", + "grated parmesan cheese", + "crushed red pepper", + "fat", + "olive oil", + "ricotta cheese", + "creole style seasoning", + "ground turkey", + "tomato sauce", + "eggplant", + "2% reduced-fat milk", + "shredded mozzarella cheese", + "italian seasoning" + ] + }, + { + "id": 1594, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "stone-ground cornmeal", + "hot pepper sauce", + "baking powder", + "all purpose unbleached flour", + "ground white pepper", + "dried oregano", + "fresh basil", + "evaporated milk", + "bay leaves", + "chile pepper", + "salt", + "chopped parsley", + "eggs", + "dried thyme", + "minced onion", + "onion powder", + "buttermilk", + "red bell pepper", + "minced garlic", + "ground black pepper", + "green onions", + "butter", + "cayenne pepper", + "white sugar" + ] + }, + { + "id": 36755, + "cuisine": "italian", + "ingredients": [ + "ground ginger", + "baking soda", + "vanilla", + "large egg whites", + "large eggs", + "sugar", + "crystallized ginger", + "salt", + "almonds", + "all purpose unbleached flour" + ] + }, + { + "id": 1115, + "cuisine": "mexican", + "ingredients": [ + "triple sec", + "coarse salt", + "lime", + "Tabasco Pepper Sauce", + "tequila", + "chicken wings", + "flour", + "salt", + "honey", + "lime wedges", + "fresh lime juice" + ] + }, + { + "id": 35946, + "cuisine": "indian", + "ingredients": [ + "naan", + "extra-virgin olive oil", + "garlic" + ] + }, + { + "id": 3113, + "cuisine": "southern_us", + "ingredients": [ + "water", + "vegetable oil", + "grits", + "green bell pepper", + "black-eyed peas", + "salt", + "tomato paste", + "seasoning salt", + "chopped fresh thyme", + "tomato sauce", + "ground black pepper", + "onions" + ] + }, + { + "id": 18883, + "cuisine": "british", + "ingredients": [ + "large egg yolks", + "raisins", + "sugar", + "whole milk", + "crust", + "unsalted butter", + "whipping cream", + "vanilla beans", + "golden raisins", + "bread slices" + ] + }, + { + "id": 39999, + "cuisine": "vietnamese", + "ingredients": [ + "neutral oil", + "pork", + "shallots", + "garlic", + "carrots", + "fish sauce", + "pepper", + "balm", + "scallions", + "perilla", + "mint", + "soy sauce", + "daikon", + "rolls", + "cucumber", + "sugar", + "peanuts", + "rice vermicelli", + "nuoc cham" + ] + }, + { + "id": 17269, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "oil", + "egg yolks", + "white wine", + "white sugar", + "all-purpose flour" + ] + }, + { + "id": 30729, + "cuisine": "italian", + "ingredients": [ + "garlic bulb", + "whipping cream", + "parmesan cheese", + "meat sauce", + "chicken broth", + "all-purpose flour", + "butter" + ] + }, + { + "id": 41486, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "red pepper flakes", + "toasted sesame seeds", + "pork loin", + "yellow onion", + "sugar", + "green onions", + "garlic cloves", + "black pepper", + "red pepper" + ] + }, + { + "id": 14539, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "beef", + "ginger", + "soy sauce", + "green onions", + "onions", + "sake", + "mirin", + "hot water", + "eggs", + "steamed rice", + "sesame oil" + ] + }, + { + "id": 31911, + "cuisine": "italian", + "ingredients": [ + "green chile", + "light mayonnaise", + "artichoke hearts", + "grated parmesan cheese", + "baguette", + "garlic cloves" + ] + }, + { + "id": 32538, + "cuisine": "indian", + "ingredients": [ + "romaine lettuce", + "honey", + "peeled fresh ginger", + "chopped cilantro fresh", + "lime juice", + "cooking spray", + "chopped fresh mint", + "pepper", + "peanuts", + "salt", + "chicken", + "water", + "potatoes", + "dark sesame oil" + ] + }, + { + "id": 3601, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "finely chopped onion", + "pappardelle", + "extra-virgin olive oil", + "garlic cloves", + "sage leaves", + "kosher salt", + "half & half", + "ground veal", + "grated nutmeg", + "bay leaf", + "cremini mushrooms", + "parmigiano reggiano cheese", + "pink peppercorns", + "crushed red pepper", + "chopped bacon", + "chicken stock", + "ground black pepper", + "dry white wine", + "ground pork", + "thyme sprig", + "celery root" + ] + }, + { + "id": 37295, + "cuisine": "french", + "ingredients": [ + "turnips", + "dry white wine", + "corn starch", + "finely chopped onion", + "carrots", + "canned chicken broth", + "vegetable oil", + "flat leaf parsley", + "dried thyme", + "ducklings", + "bay leaf" + ] + }, + { + "id": 6868, + "cuisine": "moroccan", + "ingredients": [ + "eggs", + "all-purpose flour", + "honey", + "yeast", + "melted butter", + "semolina", + "warm water", + "orange flower water" + ] + }, + { + "id": 19606, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "tomato juice", + "fresh lime juice", + "tomatoes", + "garlic", + "jalapeno chilies" + ] + }, + { + "id": 12853, + "cuisine": "moroccan", + "ingredients": [ + "dry white wine", + "navy beans", + "onions", + "cooking spray", + "mussels", + "salt" + ] + }, + { + "id": 1965, + "cuisine": "korean", + "ingredients": [ + "spring onions", + "garlic salt", + "soy sauce", + "oil", + "sugar", + "round steaks", + "water", + "onions" + ] + }, + { + "id": 35466, + "cuisine": "french", + "ingredients": [ + "black pepper", + "butter", + "all-purpose flour", + "cooking spray", + "gruyere cheese", + "yukon gold potatoes", + "salt", + "finely chopped onion", + "1% low-fat milk", + "less sodium reduced fat ham" + ] + }, + { + "id": 19217, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "garlic powder", + "butter", + "garlic", + "canola oil", + "sugar", + "milk", + "egg yolks", + "diced tomatoes", + "cayenne pepper", + "angel hair", + "kosher salt", + "ground black pepper", + "heavy cream", + "broccoli", + "black pepper", + "freshly grated parmesan", + "chicken breasts", + "paprika", + "dried oregano" + ] + }, + { + "id": 14179, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "purple onion", + "fresh asparagus", + "kosher salt", + "red wine vinegar", + "garlic cloves", + "capers", + "ground black pepper", + "country style bread", + "olives", + "cherry tomatoes", + "extra-virgin olive oil", + "fresh basil leaves" + ] + }, + { + "id": 25874, + "cuisine": "thai", + "ingredients": [ + "sugar", + "peanuts", + "sweet soy sauce", + "cucumber", + "ground paprika", + "minced garlic", + "boneless chicken breast", + "creamy peanut butter", + "coconut milk", + "white pepper", + "garlic powder", + "Massaman curry paste", + "ground cayenne pepper", + "fish sauce", + "water", + "tamarind juice", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 38681, + "cuisine": "filipino", + "ingredients": [ + "granulated sugar", + "confectioners sugar", + "pure vanilla extract", + "all-purpose flour", + "salt", + "cashew nuts", + "unsalted butter", + "ground cardamom" + ] + }, + { + "id": 8940, + "cuisine": "mexican", + "ingredients": [ + "corn husks", + "vegetable oil", + "masa", + "white onion", + "Knorr Chicken Flavor Bouillon", + "garlic", + "serrano chilies", + "chicken parts", + "tomatillos", + "water", + "baking powder", + "lard" + ] + }, + { + "id": 23605, + "cuisine": "indian", + "ingredients": [ + "chat masala", + "onion rings", + "extra-virgin olive oil", + "lime slices", + "fenugreek leaves", + "chopped cilantro" + ] + }, + { + "id": 9312, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "chili powder", + "shredded Monterey Jack cheese", + "boneless skinless chicken breasts", + "salsa", + "shredded cheddar cheese", + "black olives", + "ranch dressing", + "tortilla chips" + ] + }, + { + "id": 30648, + "cuisine": "french", + "ingredients": [ + "fish steaks", + "kalamata", + "flat leaf parsley", + "dry white wine", + "garlic cloves", + "olive oil", + "extra-virgin olive oil", + "onions", + "lemon", + "red bell pepper" + ] + }, + { + "id": 148, + "cuisine": "chinese", + "ingredients": [ + "brussels sprouts", + "chinese sausage", + "fish sauce" + ] + }, + { + "id": 17115, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "Knorr Chicken Flavor Bouillon", + "jalapeno chilies", + "tequila", + "fresh cilantro", + "vegetable oil", + "tomatoes", + "queso asadero" + ] + }, + { + "id": 10100, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "seeds", + "green tea powder", + "shortening", + "glutinous rice flour", + "powdered sugar", + "lotus seed paste", + "flour", + "hot water" + ] + }, + { + "id": 29560, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "ground turkey breast", + "basil", + "fennel seeds", + "minced garlic", + "dry white wine", + "red bell pepper", + "tomato paste", + "dried basil", + "diced tomatoes", + "gnocchi", + "black pepper", + "cooking spray", + "chopped onion" + ] + }, + { + "id": 1706, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "dried thyme", + "garlic", + "thyme leaves", + "chicken wings", + "kosher salt", + "vegetable oil", + "yellow onion", + "cumin", + "black pepper", + "green onions", + "grated nutmeg", + "fresh lime juice", + "brown sugar", + "chili pepper", + "cinnamon", + "ground allspice" + ] + }, + { + "id": 34372, + "cuisine": "russian", + "ingredients": [ + "milk", + "golden raisins", + "farmer cheese", + "unsalted butter", + "lemon", + "confectioners sugar", + "bread crumb fresh", + "large eggs", + "sauce", + "filo", + "granulated sugar", + "vanilla extract", + "sour cream" + ] + }, + { + "id": 1187, + "cuisine": "southern_us", + "ingredients": [ + "pork spare ribs", + "kosher salt" + ] + }, + { + "id": 24914, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "tagliatelle", + "tomatoes", + "garlic", + "avocado", + "lemon", + "fresh spinach", + "fresh basil leaves" + ] + }, + { + "id": 41937, + "cuisine": "southern_us", + "ingredients": [ + "jasmine rice", + "ground black pepper", + "chopped celery", + "chopped onion", + "dried thyme", + "bay leaves", + "salt", + "red bell pepper", + "water", + "chopped green bell pepper", + "crushed red pepper", + "garlic cloves", + "black-eyed peas", + "vegetable oil", + "onion tops", + "smoked ham hocks" + ] + }, + { + "id": 26473, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "cheese", + "scallions", + "canola oil", + "lettuce", + "low sodium chicken broth", + "salsa", + "sour cream", + "crushed tomatoes", + "salt", + "garlic cloves", + "chicken", + "avocado", + "wonton wrappers", + "taco seasoning", + "onions" + ] + }, + { + "id": 19729, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "peaches", + "water", + "barbecue sauce" + ] + }, + { + "id": 1048, + "cuisine": "mexican", + "ingredients": [ + "salt", + "garlic salt", + "ground black pepper", + "corn tortillas", + "shredded cheddar cheese", + "pork roast", + "vegetable oil", + "onions" + ] + }, + { + "id": 44683, + "cuisine": "italian", + "ingredients": [ + "salt", + "active dry yeast", + "white sugar", + "warm water", + "all-purpose flour", + "olive oil" + ] + }, + { + "id": 19644, + "cuisine": "chinese", + "ingredients": [ + "straw mushrooms", + "sesame oil", + "oyster sauce", + "cashew nuts", + "sugar", + "egg whites", + "salt", + "shrimp", + "water", + "ginger", + "carrots", + "snow peas", + "white pepper", + "Shaoxing wine", + "oil", + "corn starch" + ] + }, + { + "id": 47971, + "cuisine": "japanese", + "ingredients": [ + "salt", + "cooked rice", + "nori" + ] + }, + { + "id": 29186, + "cuisine": "russian", + "ingredients": [ + "ground black pepper", + "salt", + "sour cream", + "tomatoes", + "lamb stew meat", + "beets", + "cabbage", + "fresh dill", + "red wine vinegar", + "lemon juice", + "canola oil", + "bay leaves", + "beef broth", + "onions" + ] + }, + { + "id": 26056, + "cuisine": "mexican", + "ingredients": [ + "salt and ground black pepper", + "chili powder", + "cayenne pepper", + "shredded Monterey Jack cheese", + "flour tortillas", + "green enchilada sauce", + "onions", + "garlic powder", + "butter", + "cream cheese", + "ground cumin", + "jalapeno chilies", + "paprika", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 28852, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "purple onion", + "lime juice", + "sauce", + "avocado", + "salt", + "fresh cilantro" + ] + }, + { + "id": 20303, + "cuisine": "mexican", + "ingredients": [ + "lime", + "chili powder", + "salt", + "sour cream", + "ground cumin", + "kidney beans", + "cilantro", + "beer", + "onions", + "black beans", + "boneless skinless chicken breasts", + "garlic", + "pinto beans", + "masa harina", + "olive oil", + "diced tomatoes", + "sharp cheddar cheese", + "chipotles in adobo" + ] + }, + { + "id": 42900, + "cuisine": "indian", + "ingredients": [ + "unsweetened coconut milk", + "tumeric", + "vegetable oil", + "chickpeas", + "chopped cilantro fresh", + "red potato", + "low sodium vegetable broth", + "purple onion", + "cumin seed", + "cooked rice", + "fresh ginger", + "salt", + "carrots", + "cauliflower", + "pepper", + "garlic", + "ground coriander" + ] + }, + { + "id": 40879, + "cuisine": "french", + "ingredients": [ + "kidney beans", + "basil leaves", + "garlic", + "carrots", + "olive oil", + "potatoes", + "vegetable broth", + "white beans", + "water", + "grated parmesan cheese", + "diced tomatoes", + "salt", + "tomatoes", + "zucchini", + "fresh green bean", + "gruyere cheese", + "spaghetti" + ] + }, + { + "id": 35553, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "grated parmesan cheese", + "penne pasta", + "boneless skinless chicken breast halves", + "dried basil", + "diced tomatoes", + "red bell pepper", + "green bell pepper", + "dry white wine", + "corn starch", + "dried oregano", + "olive oil", + "garlic", + "onions" + ] + }, + { + "id": 19050, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "warm water", + "vinegar", + "vegetable oil", + "corn starch", + "green bell pepper", + "ketchup", + "pork tenderloin", + "oil", + "sugar", + "water", + "flour", + "carrots", + "pineapple chunks", + "soy sauce", + "egg whites", + "salt", + "red bell pepper" + ] + }, + { + "id": 39547, + "cuisine": "italian", + "ingredients": [ + "pecorino romano cheese", + "marsala wine", + "dried fig", + "fresh rosemary", + "proscuitto di parma", + "walnut pieces" + ] + }, + { + "id": 6906, + "cuisine": "italian", + "ingredients": [ + "lemon", + "freshly ground pepper", + "fresh rosemary", + "salt", + "chicken", + "sage leaves", + "extra-virgin olive oil", + "onions", + "dry white wine", + "meat bones" + ] + }, + { + "id": 20325, + "cuisine": "mexican", + "ingredients": [ + "corn", + "cooked chicken", + "enchilada sauce", + "onions", + "ground cumin", + "minced garlic", + "cooking spray", + "garlic cloves", + "fresh lime juice", + "shredded Monterey Jack cheese", + "black pepper", + "jalapeno chilies", + "red pepper", + "corn tortillas", + "plum tomatoes", + "zucchini", + "chili powder", + "feta cheese crumbles", + "chopped cilantro fresh" + ] + }, + { + "id": 7891, + "cuisine": "chinese", + "ingredients": [ + "water", + "Grand Marnier", + "corn starch", + "cooked rice", + "beef stew meat", + "garlic cloves", + "low sodium soy sauce", + "honey", + "peanut oil", + "orange rind", + "red chili peppers", + "beef broth", + "carrots" + ] + }, + { + "id": 16191, + "cuisine": "greek", + "ingredients": [ + "romaine lettuce", + "vegetable oil", + "salt", + "cumin", + "white vinegar", + "pepper", + "paprika", + "garlic cloves", + "sliced chicken", + "pita bread", + "cherry tomatoes", + "purple onion", + "cucumber", + "sugar", + "russet potatoes", + "greek style plain yogurt", + "ground oregano" + ] + }, + { + "id": 22101, + "cuisine": "french", + "ingredients": [ + "white vinegar", + "frisee", + "shallots", + "eggs", + "thick-cut bacon", + "red wine vinegar" + ] + }, + { + "id": 36262, + "cuisine": "japanese", + "ingredients": [ + "water", + "peeled fresh ginger", + "salt", + "black pepper", + "lower sodium soy sauce", + "boneless skinless chicken breasts", + "peanut oil", + "honey", + "green onions", + "rice vinegar", + "minced garlic", + "mirin", + "baby spinach", + "shiitake mushroom caps" + ] + }, + { + "id": 42209, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "crushed garlic", + "ripe olives", + "black beans", + "light beer", + "non-fat sour cream", + "green chile", + "fat-free cheddar cheese", + "diced tomatoes", + "cooked chicken breasts", + "fresh cilantro", + "green onions", + "salsa" + ] + }, + { + "id": 1797, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "yellow onion", + "yellow corn meal", + "baking soda", + "salt", + "milk", + "buttermilk", + "canola oil", + "eggs", + "cayenne", + "all-purpose flour" + ] + }, + { + "id": 4975, + "cuisine": "french", + "ingredients": [ + "chicken legs", + "flour", + "bacon", + "carrots", + "chicken thighs", + "pearl onions", + "mushrooms", + "salt", + "Burgundy wine", + "pepper", + "bay leaves", + "garlic", + "herbes de provence", + "chicken broth", + "fresh thyme", + "chicken breasts", + "cognac", + "fresh parsley" + ] + }, + { + "id": 24662, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "chopped fresh chives", + "salt", + "sour cream", + "chicken broth", + "grated parmesan cheese", + "shredded swiss cheese", + "chopped onion", + "large eggs", + "dry white wine", + "all-purpose flour", + "minced garlic", + "french bread", + "butter", + "freshly ground pepper" + ] + }, + { + "id": 12554, + "cuisine": "southern_us", + "ingredients": [ + "bacon", + "minced garlic", + "onions", + "pepper", + "salt", + "fresh green bean" + ] + }, + { + "id": 34370, + "cuisine": "italian", + "ingredients": [ + "eggs", + "minced onion", + "pasta", + "extra lean ground beef", + "dry bread crumbs", + "spinach", + "grated parmesan cheese", + "chicken broth", + "dried basil", + "carrots" + ] + }, + { + "id": 17398, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "peaches in heavy syrup", + "sugar", + "vanilla", + "eggs", + "buttermilk", + "pie shell", + "cinnamon", + "all-purpose flour" + ] + }, + { + "id": 36149, + "cuisine": "jamaican", + "ingredients": [ + "gingerroot", + "brown sugar", + "water" + ] + }, + { + "id": 11803, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "garlic", + "fresh lemon juice", + "olive oil", + "yellow onion", + "cumin", + "whole milk yoghurt", + "lamb", + "pepper", + "salt", + "fresh mint" + ] + }, + { + "id": 46562, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "garlic cloves", + "toasted sesame seeds", + "sugar", + "ground pepper", + "firm tofu", + "toasted sesame oil", + "olive oil", + "sea salt", + "carrots", + "glass noodles", + "fresh spinach", + "shiitake", + "yellow onion", + "red bell pepper" + ] + }, + { + "id": 18413, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "diced tomatoes", + "tomatoes", + "green onions", + "frozen chopped spinach", + "processed cheese", + "sour cream", + "Mexican cheese blend", + "cream cheese" + ] + }, + { + "id": 26544, + "cuisine": "italian", + "ingredients": [ + "tuna packed in water", + "Italian bread", + "zesty italian dressing", + "plum tomatoes", + "part-skim mozzarella cheese", + "ripe olives", + "romaine lettuce leaves" + ] + }, + { + "id": 34987, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "corn tortillas", + "canola oil", + "jalapeno chilies", + "reduced sodium canned chicken broth", + "pepper", + "onions", + "salt", + "chopped garlic" + ] + }, + { + "id": 9403, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "paprika", + "yellow corn meal", + "lemon pepper seasoning", + "catfish fillets", + "garlic powder", + "dried basil", + "cajun seasoning" + ] + }, + { + "id": 31781, + "cuisine": "indian", + "ingredients": [ + "sugar", + "vegetable oil", + "tomato ketchup", + "ground cumin", + "tomato purée", + "pepper", + "paneer", + "onions", + "garlic paste", + "chili powder", + "salt", + "greens", + "soy sauce", + "red pepper", + "chopped cilantro" + ] + }, + { + "id": 8222, + "cuisine": "vietnamese", + "ingredients": [ + "tapioca starch", + "sugar", + "crushed ice", + "adzuki beans", + "sauce", + "water" + ] + }, + { + "id": 5954, + "cuisine": "moroccan", + "ingredients": [ + "lemon", + "kosher salt", + "fresh lemon juice" + ] + }, + { + "id": 13857, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "chickpeas", + "ground ginger", + "chopped tomatoes", + "chopped cilantro", + "clove", + "olive oil", + "carrots", + "water", + "cinnamon" + ] + }, + { + "id": 5121, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "marinara sauce", + "baby spinach", + "dried oregano", + "low-fat cottage cheese", + "low-fat ricotta cheese", + "garlic", + "olive oil", + "egg whites", + "sea salt", + "grated parmesan cheese", + "whole wheat lasagna noodles", + "shredded mozzarella cheese" + ] + }, + { + "id": 13190, + "cuisine": "cajun_creole", + "ingredients": [ + "white chocolate", + "butter", + "coconut", + "cream", + "almonds" + ] + }, + { + "id": 12915, + "cuisine": "chinese", + "ingredients": [ + "hot mustard", + "green onions", + "seasoning", + "light soy sauce", + "corn starch", + "wakame", + "sugar", + "vegetable oil", + "spring roll wrappers", + "natto" + ] + }, + { + "id": 14777, + "cuisine": "italian", + "ingredients": [ + "eggs", + "sliced mushrooms", + "boneless chicken breast", + "spinach", + "fettucine", + "heavy cream" + ] + }, + { + "id": 32865, + "cuisine": "mexican", + "ingredients": [ + "key lime juice", + "honey", + "sweet chili sauce", + "chicken fingers" + ] + }, + { + "id": 5382, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "whole wheat tortillas", + "chopped cilantro fresh", + "black beans", + "low-fat cheese", + "fresh lime juice", + "fresh tomatoes", + "Tabasco Green Pepper Sauce", + "cucumber", + "taco seasoning mix", + "green onions", + "ground beef" + ] + }, + { + "id": 18637, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "vegetable oil", + "chopped cilantro fresh", + "hot pepper sauce", + "onions", + "tomatoes", + "corn tortillas", + "flank steak", + "garlic salt" + ] + }, + { + "id": 34165, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "kosher salt", + "ancho powder", + "pork shoulder", + "slaw", + "guacamole", + "fat", + "cumin", + "mandarin juice", + "lime", + "garlic", + "onions", + "liquid smoke", + "black pepper", + "chili powder", + "corn tortillas" + ] + }, + { + "id": 8340, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "salt", + "beansprouts", + "cold water", + "flour", + "oil", + "celery", + "soy sauce", + "chinese five-spice powder", + "toasted sesame oil", + "low sodium stock", + "mushrooms", + "corn starch", + "onions" + ] + }, + { + "id": 1367, + "cuisine": "mexican", + "ingredients": [ + "tilapia fillets", + "Anaheim chile", + "crushed red pepper flakes", + "cayenne pepper", + "dried oregano", + "chicken stock", + "ground black pepper", + "butter", + "garlic", + "chopped cilantro fresh", + "kosher salt", + "sliced black olives", + "worcestershire sauce", + "yellow onion", + "plum tomatoes", + "lime", + "dry white wine", + "extra-virgin olive oil", + "creole seasoning", + "ground cumin" + ] + }, + { + "id": 33250, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "green onions", + "diced tomatoes", + "all-purpose flour", + "white onion", + "granulated sugar", + "ice water", + "salt", + "frozen peas", + "eggs", + "unsalted butter", + "cooked chicken", + "beaten eggs", + "low sodium chicken stock", + "tomato paste", + "ground black pepper", + "dry white wine", + "garlic", + "frozen corn kernels" + ] + }, + { + "id": 45280, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "marinade", + "garlic", + "sweet chili sauce", + "pork loin", + "grapeseed oil", + "oyster sauce", + "sugar", + "lime", + "red capsicum", + "tamari soy sauce", + "white pepper", + "capsicum", + "dipping sauces" + ] + }, + { + "id": 23348, + "cuisine": "indian", + "ingredients": [ + "minced ginger", + "garlic", + "oil", + "coriander powder", + "chickpeas", + "onions", + "chopped tomatoes", + "salt", + "lemon juice", + "fenugreek leaves", + "chili powder", + "cumin seed", + "ground cumin" + ] + }, + { + "id": 45554, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "garlic powder", + "sea salt", + "chili sauce", + "black pepper", + "green tomatoes", + "all-purpose flour", + "flat leaf parsley", + "mayonaise", + "dijon mustard", + "cracked black pepper", + "Italian seasoned breadcrumbs", + "fresh chives", + "buttermilk", + "sauce", + "thick-cut bacon" + ] + }, + { + "id": 45558, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "yellow onion", + "ground beef", + "cheese", + "sour cream", + "flour tortillas", + "taco seasoning", + "hot sauce", + "cream of mushroom soup" + ] + }, + { + "id": 11143, + "cuisine": "indian", + "ingredients": [ + "caraway seeds", + "garlic paste", + "jalapeno chilies", + "keema", + "ground cardamom", + "ground cinnamon", + "garam masala", + "chili powder", + "cilantro leaves", + "ground turmeric", + "tomatoes", + "water", + "mint leaves", + "salt", + "onions", + "fenugreek leaves", + "coriander powder", + "green peas", + "oil", + "ground cumin" + ] + }, + { + "id": 30474, + "cuisine": "italian", + "ingredients": [ + "pasta", + "all-purpose flour", + "shortening", + "sausages", + "eggs", + "provolone cheese", + "cold water", + "salami" + ] + }, + { + "id": 27462, + "cuisine": "italian", + "ingredients": [ + "sugar", + "salt", + "lemon juice", + "whole milk", + "Meyer lemon peel", + "large eggs", + "all-purpose flour", + "whipped cream", + "Meyer lemon juice" + ] + }, + { + "id": 37895, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "butter", + "hot water", + "chicken bouillon", + "hot pepper sauce", + "garlic", + "ground cumin", + "tomatoes", + "cream style corn", + "cilantro sprigs", + "shredded Monterey Jack cheese", + "cream", + "boneless skinless chicken breasts", + "chopped onion" + ] + }, + { + "id": 1763, + "cuisine": "irish", + "ingredients": [ + "chicken stock", + "salt", + "black pepper", + "savoy cabbage leaves", + "diced tomatoes in juice", + "irish bacon", + "potatoes" + ] + }, + { + "id": 26048, + "cuisine": "southern_us", + "ingredients": [ + "fat free less sodium chicken broth", + "diced tomatoes", + "reduced fat sharp cheddar cheese", + "quickcooking grits", + "red bell pepper", + "green bell pepper", + "green onions", + "medium shrimp", + "fat free milk", + "canadian bacon" + ] + }, + { + "id": 40994, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "salt", + "chicken stock", + "heavy cream", + "green peppercorns", + "calvados", + "freshly ground pepper", + "olive oil", + "veal rib chops" + ] + }, + { + "id": 20176, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "sugar", + "heavy cream", + "baking powder", + "unsalted butter", + "salt" + ] + }, + { + "id": 4115, + "cuisine": "italian", + "ingredients": [ + "all-purpose flour", + "sliced almonds", + "confectioners sugar", + "almond paste", + "egg whites", + "white sugar" + ] + }, + { + "id": 42176, + "cuisine": "thai", + "ingredients": [ + "low-fat coconut milk", + "mushrooms", + "garlic", + "brown sugar", + "cilantro", + "red bell pepper", + "fish sauce", + "vegetable oil", + "beef broth", + "spinach leaves", + "sirloin", + "red" + ] + }, + { + "id": 17905, + "cuisine": "greek", + "ingredients": [ + "cooking spray", + "garlic cloves", + "zucchini", + "salt", + "dried oregano", + "olive oil", + "purple onion", + "leg of lamb", + "pepper", + "yellow bell pepper", + "fresh lemon juice" + ] + }, + { + "id": 8238, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "shallots", + "serrano chile", + "white vinegar", + "fresh curry leaves", + "light coconut milk", + "large shrimp", + "kosher salt", + "ginger", + "ground turmeric", + "tomatoes", + "ground red pepper", + "sweet paprika", + "canola oil" + ] + }, + { + "id": 44601, + "cuisine": "filipino", + "ingredients": [ + "water", + "condensed milk", + "refined sugar", + "evaporated milk", + "eggs", + "vanilla" + ] + }, + { + "id": 37851, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "sauce", + "iceberg lettuce", + "corn salsa", + "flour tortillas", + "lemon juice", + "radicchio", + "garlic cloves", + "southwest seasoning", + "cilantro leaves", + "shrimp" + ] + }, + { + "id": 25231, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "green onions", + "salad dressing", + "black beans", + "mexicorn", + "tomatoes", + "red wine vinegar", + "olive oil", + "purple onion" + ] + }, + { + "id": 36076, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "grated parmesan cheese", + "low sodium chicken stock", + "ground black pepper", + "shallots", + "olive oil", + "butternut squash", + "sage leaves", + "unsalted butter", + "heavy cream" + ] + }, + { + "id": 35318, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "Sriracha", + "garlic", + "peanut oil", + "celery stick", + "water", + "Shaoxing wine", + "cilantro leaves", + "oyster sauce", + "sugar", + "medium tomatoes", + "shallots", + "roasted peanuts", + "onions", + "chicken wings", + "ketchup", + "tapioca starch", + "salt", + "oil" + ] + }, + { + "id": 21884, + "cuisine": "mexican", + "ingredients": [ + "milk", + "vegetable stock", + "red bell pepper", + "unsalted butter", + "frozen corn kernels", + "masa harina", + "corn husks", + "salt", + "poblano chiles", + "baking powder", + "scallions" + ] + }, + { + "id": 1410, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "garbanzo beans", + "carrots", + "ground turmeric", + "curry powder", + "sweet potatoes", + "couscous", + "turnips", + "olive oil", + "vegetable broth", + "onions", + "tomato sauce", + "zucchini", + "red bell pepper", + "saffron" + ] + }, + { + "id": 4309, + "cuisine": "jamaican", + "ingredients": [ + "curry powder", + "ground black pepper", + "onions", + "tomatoes", + "olive oil", + "vegetable oil", + "dried thyme", + "goat", + "allspice", + "water", + "coriander seeds", + "garlic" + ] + }, + { + "id": 19732, + "cuisine": "mexican", + "ingredients": [ + "sea salt", + "water", + "pumpkin seeds", + "eggs", + "salsa", + "epazote", + "corn tortillas" + ] + }, + { + "id": 41701, + "cuisine": "italian", + "ingredients": [ + "milk", + "all-purpose flour", + "eggs", + "ricotta cheese", + "miniature semisweet chocolate chips", + "baking powder", + "white sugar", + "shortening", + "vanilla extract" + ] + }, + { + "id": 6833, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "chopped fresh mint", + "fresh dill", + "fresh lemon juice", + "salt", + "Homemade Yogurt", + "minced garlic", + "cucumber" + ] + }, + { + "id": 40899, + "cuisine": "indian", + "ingredients": [ + "coconut", + "water" + ] + }, + { + "id": 25367, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "ground nutmeg", + "butter", + "pumpkin pie spice", + "sugar", + "sweet potatoes", + "vanilla extract", + "eggs", + "lemon extract", + "whipped cream", + "evaporated milk", + "pastry shell", + "salt" + ] + }, + { + "id": 41252, + "cuisine": "mexican", + "ingredients": [ + "piloncillo", + "bolillo", + "cinnamon", + "eggs", + "unsalted butter", + "raisins", + "vanilla ice cream", + "chopped almonds", + "country white bread", + "mozzarella cheese", + "asadero" + ] + }, + { + "id": 41056, + "cuisine": "indian", + "ingredients": [ + "coarse salt", + "olive oil", + "water", + "chapati flour", + "whole wheat flour" + ] + }, + { + "id": 32631, + "cuisine": "mexican", + "ingredients": [ + "corn tortillas" + ] + }, + { + "id": 3500, + "cuisine": "mexican", + "ingredients": [ + "margarine", + "self rising flour", + "milk", + "cheese" + ] + }, + { + "id": 3317, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "ranch dressing", + "KRAFT Mexican Style Finely Shredded Four Cheese", + "BREAKSTONE'S Sour Cream", + "slaw mix", + "lime juice", + "chili powder", + "salsa", + "boneless skinless chicken breasts", + "whole wheat tortillas" + ] + }, + { + "id": 28768, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "soba noodles", + "soy sauce", + "red chard", + "onions", + "mushrooms", + "scallions", + "dashi", + "soft-boiled egg" + ] + }, + { + "id": 46673, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "tomato salsa", + "freshly ground pepper", + "shredded cheddar cheese", + "chicken breast halves", + "sauce", + "chopped cilantro fresh", + "black beans", + "guacamole", + "salsa", + "sour cream", + "radishes", + "coarse salt", + "tortilla chips", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 49023, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "granulated sugar", + "salt", + "pecan halves", + "light corn syrup", + "cold water", + "large eggs", + "all-purpose flour", + "unsalted butter", + "vanilla extract" + ] + }, + { + "id": 48138, + "cuisine": "cajun_creole", + "ingredients": [ + "dijon mustard", + "salt", + "vidalia onion", + "red wine vinegar", + "tomatoes", + "chopped fresh chives", + "fresh mint", + "olive oil", + "garlic" + ] + }, + { + "id": 49282, + "cuisine": "mexican", + "ingredients": [ + "condensed cream of chicken soup", + "pepper", + "refried beans", + "boneless skinless chicken breasts", + "onion powder", + "condensed cream of mushroom soup", + "garlic", + "shredded parmesan cheese", + "non stick spray", + "shredded cheese", + "lemon juice", + "onions", + "soy sauce", + "crushed tomatoes", + "lasagna noodles", + "swiss cheese", + "deli ham", + "dry sherry", + "salt", + "salsa", + "Italian seasoned breadcrumbs", + "turkey sausage links", + "ground beef", + "italian seasoning", + "tomatoes", + "black beans", + "milk", + "flour tortillas", + "chili powder", + "butter", + "diced tomatoes", + "boneless skinless chicken", + "rice", + "taco seasoning", + "enchilada sauce", + "fresh parsley", + "chicken", + "tomato sauce", + "water", + "garlic powder", + "french fried onions", + "ricotta cheese", + "fresh green bean", + "chicken stock cubes", + "broccoli", + "tortilla chips", + "shredded mozzarella cheese", + "ground turkey", + "cabbage" + ] + }, + { + "id": 13560, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "dried oregano", + "grape tomatoes", + "english cucumber", + "cheese cubes", + "fresh oregano leaves", + "lemon juice" + ] + }, + { + "id": 34640, + "cuisine": "italian", + "ingredients": [ + "water", + "lemon", + "tumeric", + "asparagus", + "salt", + "chicken broth", + "olive oil", + "garlic", + "pepper", + "orzo pasta", + "fresh parsley" + ] + }, + { + "id": 40200, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "chicken breasts", + "cilantro", + "scallions", + "onions", + "kosher salt", + "vegetable oil", + "fat-free chicken broth", + "nonstick spray", + "cumin", + "tomato sauce", + "chili powder", + "garlic", + "Mexican cheese", + "dried oregano", + "pepper", + "whole wheat tortillas", + "salt", + "chipotles in adobo", + "ground cumin" + ] + }, + { + "id": 30177, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "corn", + "chili powder", + "salt", + "onions", + "black pepper", + "olive oil", + "cilantro", + "sour cream", + "cumin", + "cheddar cheese", + "lime", + "diced tomatoes", + "cayenne pepper", + "coriander", + "avocado", + "black beans", + "chicken breasts", + "garlic", + "corn tortillas" + ] + }, + { + "id": 15254, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "orange juice", + "basmati rice", + "raisins", + "chicken pieces", + "chicken broth", + "salt", + "onions", + "butter", + "bay leaf" + ] + }, + { + "id": 22928, + "cuisine": "italian", + "ingredients": [ + "pepper", + "diced tomatoes", + "long grain white rice", + "dry white wine", + "garlic", + "unsalted butter", + "fresh tarragon", + "kosher salt", + "baby spinach", + "medium shrimp" + ] + }, + { + "id": 17026, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "tuna drained and flaked", + "black olives", + "red bell pepper", + "white vinegar", + "pickling spices", + "vegetable oil", + "carrots", + "green bell pepper", + "mushrooms", + "chopped celery", + "cauliflower", + "pearl onions", + "pitted green olives", + "cucumber" + ] + }, + { + "id": 30592, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "red bell pepper", + "green bell pepper", + "salsa", + "yellow bell pepper", + "mayonaise", + "cream cheese" + ] + }, + { + "id": 9026, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "squid", + "onions", + "peeled fresh ginger", + "fresh lemon juice", + "serrano chile", + "ground black pepper", + "garlic cloves", + "chopped cilantro fresh", + "mussels", + "salt", + "mustard seeds", + "canola oil" + ] + }, + { + "id": 46983, + "cuisine": "french", + "ingredients": [ + "eggs", + "lemon", + "dijon mustard", + "freshly ground pepper", + "olive oil", + "sea salt", + "garlic bulb", + "artichok heart marin", + "canola oil" + ] + }, + { + "id": 29538, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "butter", + "casings", + "fresh parsley", + "water", + "asiago", + "salt", + "vodka", + "red pepper flakes", + "cheese", + "onions", + "tomatoes", + "olive oil", + "heavy cream", + "gnocchi" + ] + }, + { + "id": 35450, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "chopped celery", + "long grain brown rice", + "butter", + "chopped onion", + "steak", + "cajun seasoning", + "salt", + "red bell pepper", + "chicken broth", + "extra-virgin olive oil", + "shrimp" + ] + }, + { + "id": 15414, + "cuisine": "french", + "ingredients": [ + "pitted kalamata olives", + "garlic", + "anchovies", + "pepper", + "salt", + "olive oil" + ] + }, + { + "id": 10335, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "flour", + "garlic", + "dried oregano", + "black pepper", + "olive oil", + "lean ground beef", + "yellow onion", + "ground cumin", + "chicken broth", + "jack", + "chili powder", + "salt", + "cumin", + "chili", + "flour tortillas", + "vegetable oil", + "powdered garlic" + ] + }, + { + "id": 35261, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "green onions", + "baked tortilla chips", + "fresh lime juice", + "crumbles", + "jalapeno chilies", + "non-fat sour cream", + "pinto beans", + "shredded Monterey Jack cheese", + "fresh cilantro", + "cooking spray", + "chopped onion", + "ripe olives", + "ground cumin", + "ground black pepper", + "chili powder", + "garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 29354, + "cuisine": "italian", + "ingredients": [ + "garlic", + "butter", + "anchovy fillets", + "heavy cream" + ] + }, + { + "id": 48513, + "cuisine": "french", + "ingredients": [ + "black pepper", + "salt", + "shallots", + "unsalted butter", + "flat leaf parsley", + "minced garlic", + "fresh lemon juice" + ] + }, + { + "id": 35519, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "all purpose unbleached flour", + "fresh dill", + "baking powder", + "salt", + "sugar", + "vegetable shortening", + "large eggs", + "buttermilk" + ] + }, + { + "id": 16543, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "cabbage", + "salt", + "bacon", + "white sugar" + ] + }, + { + "id": 38911, + "cuisine": "indian", + "ingredients": [ + "mild olive oil", + "chili powder", + "spelt flour", + "garlic cloves", + "onions", + "whole grain spelt flour", + "cilantro leaves", + "firm tofu", + "lemon juice", + "ground cumin", + "garam masala", + "paprika", + "green pepper", + "ground cardamom", + "cashew nuts", + "low sodium salt", + "mint leaves", + "natural yogurt", + "green chilies", + "ginger root" + ] + }, + { + "id": 27975, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "zucchini", + "cheese tortellini", + "carrots", + "dried basil", + "beef stock", + "sweet italian sausage", + "tomato sauce", + "grated parmesan cheese", + "dry red wine", + "dried oregano", + "chopped tomatoes", + "large garlic cloves", + "chopped onion" + ] + }, + { + "id": 23516, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "water", + "chicken strips", + "oil", + "red chili peppers", + "yoghurt", + "cilantro leaves", + "onions", + "sugar", + "vinegar", + "salt", + "garlic cloves", + "pepper", + "lemon", + "curds", + "cumin" + ] + }, + { + "id": 5959, + "cuisine": "greek", + "ingredients": [ + "chicken stock", + "kalamata", + "fillets", + "butter", + "extra-virgin olive oil", + "onions", + "yukon gold potatoes", + "dry red wine", + "fresh parsley", + "diced tomatoes", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 2076, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "garlic chili sauce", + "dried red chile peppers", + "chinese rice wine", + "hoisin sauce", + "boneless chicken", + "corn starch", + "bamboo shoots", + "chicken broth", + "minced garlic", + "balsamic vinegar", + "oyster sauce", + "celery", + "sugar", + "cooking oil", + "roasted peanuts", + "red bell pepper" + ] + }, + { + "id": 30107, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "onions", + "asparagus", + "whole milk ricotta cheese", + "bread crumb fresh", + "grated parmesan cheese", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 15984, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "sherry wine vinegar", + "sauce", + "flat leaf parsley", + "almonds", + "yukon gold potatoes", + "garlic", + "smoked paprika", + "tomato paste", + "roasted red peppers", + "chopped fresh thyme", + "pimento stuffed olives", + "onions", + "kosher salt", + "large eggs", + "extra-virgin olive oil", + "feta cheese crumbles" + ] + }, + { + "id": 12399, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "light coconut milk", + "fresh lime juice", + "fish sauce", + "cooking spray", + "dark brown sugar", + "water", + "red curry paste", + "large shrimp", + "kosher salt", + "butter", + "red bell pepper" + ] + }, + { + "id": 11065, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "cilantro stems", + "fresh lime juice", + "sugar", + "white wine vinegar", + "sea salt", + "canola oil" + ] + }, + { + "id": 11537, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "lemon zest", + "cinnamon sticks", + "honey", + "fresh orange juice", + "amontillado sherry", + "half & half", + "orange zest", + "large egg yolks", + "calimyrna figs" + ] + }, + { + "id": 6229, + "cuisine": "french", + "ingredients": [ + "evaporated milk", + "white sugar", + "warm water", + "salt", + "eggs", + "butter", + "active dry yeast", + "all-purpose flour" + ] + }, + { + "id": 2167, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "beef broth", + "chopped cilantro fresh", + "chopped tomatoes", + "all-purpose flour", + "onions", + "white rice", + "lean beef", + "salt", + "carrots" + ] + }, + { + "id": 29148, + "cuisine": "french", + "ingredients": [ + "pepper", + "1% low-fat milk", + "garlic cloves", + "white bread", + "butter", + "all-purpose flour", + "red bell pepper", + "grated parmesan cheese", + "salt", + "sliced mushrooms", + "fat free less sodium chicken broth", + "dry sherry", + "chopped onion", + "noodles" + ] + }, + { + "id": 25549, + "cuisine": "spanish", + "ingredients": [ + "bread", + "large garlic cloves", + "flat leaf parsley", + "water", + "salt", + "saffron threads", + "sherry vinegar", + "blanched almonds", + "chicken broth", + "extra-virgin olive oil" + ] + }, + { + "id": 40024, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "beef stew meat", + "carrots", + "ground turmeric", + "water", + "paprika", + "garlic cloves", + "onions", + "ground ginger", + "dried apricot", + "salt", + "flat leaf parsley", + "ground cumin", + "black pepper", + "green onions", + "less sodium beef broth", + "couscous" + ] + }, + { + "id": 12316, + "cuisine": "french", + "ingredients": [ + "water", + "rosé wine", + "grated lemon zest", + "flat leaf parsley", + "cannellini beans", + "extra-virgin olive oil", + "organic vegetable broth", + "cooking spray", + "chopped fresh thyme", + "chopped onion", + "fresh rosemary", + "shallots", + "artichokes", + "garlic cloves" + ] + }, + { + "id": 16898, + "cuisine": "japanese", + "ingredients": [ + "sake", + "shiitake", + "shichimi togarashi", + "chicken breast fillets", + "abura age", + "spring onions", + "eggs", + "dashi", + "dried udon", + "water", + "mirin", + "red miso" + ] + }, + { + "id": 29492, + "cuisine": "brazilian", + "ingredients": [ + "brazil nuts", + "garlic", + "corn starch", + "onions", + "fish steaks", + "olive oil", + "coconut cream", + "bay leaf", + "water", + "salt", + "coconut milk", + "manioc flour", + "hot pepper", + "shrimp", + "dried shrimp" + ] + }, + { + "id": 46243, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "white beans", + "extra-virgin olive oil", + "fresh lemon juice", + "baby arugula", + "garlic cloves", + "peeled shrimp" + ] + }, + { + "id": 45466, + "cuisine": "korean", + "ingredients": [ + "fish sauce", + "cold water", + "green onions", + "mirin", + "eggs", + "salt" + ] + }, + { + "id": 17660, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "condensed cream of mushroom soup", + "condensed cream of chicken soup", + "cooked chicken", + "freshly ground pepper", + "lasagna noodles", + "fresh mushrooms", + "frozen broccoli florets", + "shredded Italian cheese", + "sour cream" + ] + }, + { + "id": 12021, + "cuisine": "italian", + "ingredients": [ + "bread dough", + "egg whites", + "raisins", + "vegetable oil cooking spray", + "dried rosemary" + ] + }, + { + "id": 42610, + "cuisine": "indian", + "ingredients": [ + "vegetables", + "rice", + "salt", + "cooking oil", + "daal", + "fenugreek seeds" + ] + }, + { + "id": 19627, + "cuisine": "indian", + "ingredients": [ + "water", + "chili powder", + "garlic", + "bay leaf", + "clove", + "coriander powder", + "ginger", + "rajma", + "ground turmeric", + "garam masala", + "cinnamon", + "salt", + "onions", + "tomatoes", + "potatoes", + "kasuri methi", + "oil" + ] + }, + { + "id": 43542, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "red bell pepper", + "ground black pepper", + "garlic cloves", + "orange bell pepper", + "ground coriander", + "chopped cilantro fresh", + "yellow bell pepper", + "fresh lemon juice" + ] + }, + { + "id": 42646, + "cuisine": "italian", + "ingredients": [ + "light butter", + "baking soda", + "extract", + "chopped pecans", + "vegetable oil cooking spray", + "egg whites", + "all-purpose flour", + "coconut extract", + "low-fat buttermilk", + "vanilla extract", + "sugar", + "egg yolks", + "lemon rind" + ] + }, + { + "id": 4258, + "cuisine": "italian", + "ingredients": [ + "romaine lettuce", + "hot pepper sauce", + "worcestershire sauce", + "fresh lemon juice", + "baguette", + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "water", + "cooking spray", + "garlic cloves", + "pesto", + "dijon mustard", + "anchovy paste", + "canola mayonnaise" + ] + }, + { + "id": 11951, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "water", + "sharp cheddar cheese", + "kosher salt", + "whole milk", + "ground black pepper", + "polenta" + ] + }, + { + "id": 19092, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "shrimp", + "water", + "garlic", + "grits", + "diced tomatoes", + "olive oil flavored cooking spray", + "chopped green bell pepper", + "carrots" + ] + }, + { + "id": 1635, + "cuisine": "mexican", + "ingredients": [ + "lime", + "radishes", + "purple onion", + "onions", + "black pepper", + "olive oil", + "low sodium chicken broth", + "tortilla chips", + "kosher salt", + "hominy", + "garlic", + "ground chile", + "avocado", + "chili", + "pork ribs", + "cilantro leaves", + "dried oregano" + ] + }, + { + "id": 14521, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "pepperoncini", + "sour cream", + "paprika", + "lemon juice", + "ground pepper", + "grated lemon zest", + "pitted kalamata olives", + "salt", + "chicken leg quarters" + ] + }, + { + "id": 35148, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "salt", + "penne", + "mushrooms", + "scallions", + "ground black pepper", + "goat cheese", + "olive oil", + "butternut squash", + "squash" + ] + }, + { + "id": 42922, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "butter", + "fresh sage", + "olive oil", + "all-purpose flour", + "nutmeg", + "pepper", + "salt", + "eggs", + "parmigiano reggiano cheese", + "ricotta" + ] + }, + { + "id": 42542, + "cuisine": "italian", + "ingredients": [ + "orange bell pepper", + "garlic", + "bertolli vineyard premium collect marinara with burgundi wine sauc", + "dry white wine", + "clams, well scrub", + "Bertolli® Classico Olive Oil", + "yellow onion", + "large shrimp", + "scallops", + "clam juice", + "flat leaf parsley" + ] + }, + { + "id": 36130, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "diced tomatoes", + "ground coriander", + "ground cumin", + "spinach", + "chili powder", + "salt", + "chopped cilantro", + "shallots", + "ginger", + "garlic cloves", + "tumeric", + "vegetable oil", + "green chilies", + "ground beef" + ] + }, + { + "id": 38839, + "cuisine": "indian", + "ingredients": [ + "ground cardamom", + "water", + "white sugar", + "fresh lime juice", + "milk" + ] + }, + { + "id": 15654, + "cuisine": "brazilian", + "ingredients": [ + "lime juice", + "green onions", + "cilantro", + "onions", + "salmon fillets", + "zucchini", + "red pepper", + "garlic cloves", + "water", + "sweet potatoes", + "sea salt", + "coconut milk", + "tomatoes", + "olive oil", + "chile pepper", + "green pepper" + ] + }, + { + "id": 5495, + "cuisine": "southern_us", + "ingredients": [ + "beer", + "worcestershire sauce", + "seasoning salt", + "vegetable juice cocktail", + "hot sauce" + ] + }, + { + "id": 7918, + "cuisine": "french", + "ingredients": [ + "black peppercorns", + "white wine vinegar", + "dry white wine", + "ground white pepper", + "shallots", + "unsalted butter", + "salt" + ] + }, + { + "id": 17289, + "cuisine": "french", + "ingredients": [ + "dijon style mustard", + "olive oil", + "white wine vinegar" + ] + }, + { + "id": 39394, + "cuisine": "thai", + "ingredients": [ + "eggs", + "lime", + "rice noodles", + "tamarind paste", + "chopped cilantro", + "sugar", + "boneless skinless chicken breasts", + "garlic", + "scallions", + "fish sauce", + "extra firm tofu", + "vegetable oil", + "roasted peanuts", + "chili pepper", + "shallots", + "rice vinegar", + "beansprouts" + ] + }, + { + "id": 46498, + "cuisine": "cajun_creole", + "ingredients": [ + "catfish fillets", + "fresh lemon juice", + "lemon wedge", + "vegetable oil cooking spray", + "cajun seasoning" + ] + }, + { + "id": 41510, + "cuisine": "french", + "ingredients": [ + "cointreau", + "large eggs", + "bittersweet chocolate", + "prunes", + "unsalted butter", + "heavy cream", + "orange zest", + "sugar", + "half & half", + "armagnac", + "vanilla beans", + "creme anglaise", + "grated orange" + ] + }, + { + "id": 11605, + "cuisine": "british", + "ingredients": [ + "sultana", + "butter", + "ground ginger", + "granulated sugar", + "eggs", + "self rising flour", + "milk", + "corn syrup" + ] + }, + { + "id": 11595, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "garlic powder", + "purple onion", + "fresh cilantro", + "diced tomatoes", + "fresh tomatoes", + "jalapeno chilies", + "salt", + "olive oil", + "garlic" + ] + }, + { + "id": 42309, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed light brown sugar", + "chopped pecans", + "whipping cream", + "powdered sugar", + "vanilla extract", + "butter" + ] + }, + { + "id": 34820, + "cuisine": "chinese", + "ingredients": [ + "white onion", + "water chestnuts", + "ginger", + "red bell pepper", + "green bell pepper, slice", + "crushed red pepper flakes", + "shrimp", + "water", + "sesame oil", + "garlic", + "soy sauce", + "hoisin sauce", + "button mushrooms", + "corn starch" + ] + }, + { + "id": 37344, + "cuisine": "southern_us", + "ingredients": [ + "whole cloves", + "frozen orange juice concentrate", + "honey", + "boneless ham" + ] + }, + { + "id": 41462, + "cuisine": "mexican", + "ingredients": [ + "guacamole", + "salsa", + "corn tortillas", + "pepper", + "lean ground beef", + "sour cream", + "cheddar cheese", + "green onions", + "enchilada sauce", + "onions", + "shredded cheddar cheese", + "vegetable oil", + "chopped parsley" + ] + }, + { + "id": 11063, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "potatoes", + "salt", + "fresh ginger", + "crushed garlic", + "ground turmeric", + "fresh coriander", + "vegetable oil", + "cumin seed", + "garam masala", + "paprika", + "ground cumin" + ] + }, + { + "id": 26950, + "cuisine": "chinese", + "ingredients": [ + "mirin", + "chopped onion", + "ground white pepper", + "gluten free soy sauce", + "eggs", + "brown rice", + "scallions", + "beansprouts", + "extra firm tofu", + "peanut oil", + "green beans", + "minced garlic", + "ginger", + "carrots", + "toasted sesame oil" + ] + }, + { + "id": 28692, + "cuisine": "french", + "ingredients": [ + "sugar", + "glace cherries", + "heavy cream", + "vanilla essence", + "milk", + "rum", + "fruit", + "gelatin", + "rice", + "cold water", + "candied pineapple", + "egg yolks", + "citron" + ] + }, + { + "id": 15751, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "dry white wine", + "purple onion", + "dried oregano", + "cod", + "marinara sauce", + "garlic", + "flat leaf parsley", + "dried basil", + "clam juice", + "shrimp", + "olive oil", + "red pepper flakes", + "red bell pepper" + ] + }, + { + "id": 46922, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "salt", + "lemon juice", + "red chili powder", + "coriander powder", + "liver", + "ground turmeric", + "tomato purée", + "garam masala", + "brown cardamom", + "onions", + "garlic paste", + "keema", + "oil" + ] + }, + { + "id": 47766, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "all-purpose flour", + "curry powder", + "paprika", + "chicken drumsticks", + "poultry seasoning", + "ground pepper", + "salt" + ] + }, + { + "id": 19973, + "cuisine": "mexican", + "ingredients": [ + "water", + "Mexican beer", + "red bell pepper", + "romano cheese", + "chili powder", + "garlic", + "long grain white rice", + "red chili peppers", + "lime", + "extra-virgin olive oil", + "boneless skinless chicken breast halves", + "pepper", + "lemon", + "salt", + "dried oregano" + ] + }, + { + "id": 23183, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "mushrooms", + "garlic", + "olive oil", + "peas", + "onions", + "pepper", + "butter", + "salt", + "grated parmesan cheese", + "vegetable broth" + ] + }, + { + "id": 4063, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "vegetable oil", + "water", + "butter", + "mozzarella cheese", + "queso fresco", + "arepa flour" + ] + }, + { + "id": 14803, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "dry white wine", + "heavy whipping cream", + "arborio rice", + "ground black pepper", + "salt", + "water", + "butter", + "parmigiano-reggiano cheese", + "asparagus", + "chopped onion" + ] + }, + { + "id": 3759, + "cuisine": "southern_us", + "ingredients": [ + "apple juice", + "sugar", + "salt", + "grape juice" + ] + }, + { + "id": 34889, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "cold cut", + "fresh basil", + "balsamic vinegar", + "extra-virgin olive oil", + "genoa salami", + "roasted red peppers", + "tapenade", + "prosciutto", + "fresh mozzarella", + "ciabatta" + ] + }, + { + "id": 32227, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "fresh parmesan cheese", + "all-purpose flour", + "butter-margarine blend", + "cheese", + "evaporated skim milk", + "pepper", + "salt", + "fresh basil", + "cooked rigatoni", + "crumbled gorgonzola" + ] + }, + { + "id": 1642, + "cuisine": "cajun_creole", + "ingredients": [ + "chili powder", + "black pepper", + "creole seasoning", + "garlic powder", + "onion powder" + ] + }, + { + "id": 3338, + "cuisine": "italian", + "ingredients": [ + "salad greens", + "Italian cheese", + "purple onion", + "pepperoni slices", + "pimentos", + "water", + "italian salad dressing" + ] + }, + { + "id": 39354, + "cuisine": "italian", + "ingredients": [ + "butter", + "fresh parsley", + "french baguette", + "pimento stuffed olives", + "black olives", + "shredded Monterey Jack cheese", + "parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 30868, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "cooking spray", + "dry bread crumbs", + "fresh basil", + "fat free milk", + "butter", + "fresh spinach", + "large eggs", + "salt", + "red potato", + "large egg whites", + "leeks", + "provolone cheese" + ] + }, + { + "id": 3297, + "cuisine": "spanish", + "ingredients": [ + "stock", + "Italian parsley leaves", + "garlic cloves", + "celery ribs", + "olive oil", + "ground pork", + "country white bread", + "fat free milk", + "salt", + "pinenuts", + "turkey", + "ground turkey" + ] + }, + { + "id": 21217, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "boneless skinless chicken breasts", + "frozen corn", + "black beans", + "flour tortillas", + "baby spinach", + "cumin", + "pepper jack", + "chili powder", + "onions", + "pepper", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 42481, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "crawfish", + "butter salt", + "chili flakes", + "shallots", + "sage", + "pasta", + "andouille sausage", + "heavy cream", + "tomato purée", + "olive oil", + "garlic" + ] + }, + { + "id": 31641, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "jalapeno chilies", + "green bell pepper", + "lime", + "salt", + "fresh tomatoes", + "olive oil", + "sweet onion", + "red wine vinegar" + ] + }, + { + "id": 9940, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "taco seasoning mix", + "ground beef", + "refried beans", + "tortilla chips", + "milk", + "green onions", + "water", + "processed cheese" + ] + }, + { + "id": 20162, + "cuisine": "filipino", + "ingredients": [ + "candied cherries", + "graham crackers", + "fruit cocktail", + "condensed milk", + "whipped cream" + ] + }, + { + "id": 44666, + "cuisine": "french", + "ingredients": [ + "vanilla extract", + "fresh blueberries", + "fresh raspberries", + "sugar", + "strawberries", + "shortcakes", + "heavy whipping cream" + ] + }, + { + "id": 15687, + "cuisine": "greek", + "ingredients": [ + "salt", + "greek yogurt", + "fresh lemon juice", + "garlic cloves", + "chopped fresh mint", + "fresh dill", + "cucumber" + ] + }, + { + "id": 26275, + "cuisine": "japanese", + "ingredients": [ + "salt", + "sugar", + "seasoning", + "rice", + "Mizkan Rice Vinegar" + ] + }, + { + "id": 48048, + "cuisine": "indian", + "ingredients": [ + "clove", + "chopped tomatoes", + "oil", + "cumin", + "red chili powder", + "salt", + "onions", + "ginger paste", + "curry leaves", + "garam masala", + "cinnamon sticks", + "chicken", + "tumeric", + "green cardamom", + "peppercorns" + ] + }, + { + "id": 46904, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "yellow onion", + "corn tortillas", + "sliced black olives", + "garlic cloves", + "oregano", + "olive oil", + "ear of corn", + "ground beef", + "beans", + "roma tomatoes", + "enchilada sauce", + "cumin" + ] + }, + { + "id": 18599, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "vegetable oil", + "chili bean paste", + "potato starch", + "Shaoxing wine", + "vegetable broth", + "scallions", + "firm silken tofu", + "green peas", + "chili sauce", + "dark soy sauce", + "szechwan peppercorns", + "cilantro leaves", + "garlic cloves" + ] + }, + { + "id": 5632, + "cuisine": "indian", + "ingredients": [ + "clove", + "light cream", + "raisins", + "oil", + "cashew nuts", + "garlic paste", + "potatoes", + "salt", + "bay leaf", + "ginger paste", + "tomato purée", + "garam masala", + "heavy cream", + "corn starch", + "ground turmeric", + "cottage cheese", + "chili powder", + "green chilies", + "onions" + ] + }, + { + "id": 44383, + "cuisine": "thai", + "ingredients": [ + "cold water", + "fresh ginger", + "cinnamon sticks", + "black peppercorns", + "cardamom pods", + "clove", + "whole milk", + "golden brown sugar", + "black tea" + ] + }, + { + "id": 25396, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "parmesan cheese", + "flat leaf parsley", + "fettucine", + "heavy cream", + "ground black pepper" + ] + }, + { + "id": 9717, + "cuisine": "chinese", + "ingredients": [ + "romaine lettuce", + "cilantro leaves", + "celery", + "sesame", + "char", + "carrots", + "macadamia nuts", + "vinaigrette", + "chicken", + "won ton wrappers", + "scallions" + ] + }, + { + "id": 47977, + "cuisine": "indian", + "ingredients": [ + "water", + "cilantro", + "cinnamon sticks", + "tomatoes", + "garam masala", + "salt", + "masala", + "black peppercorns", + "chicken breasts", + "oil", + "ground nutmeg", + "star anise", + "onions" + ] + }, + { + "id": 15370, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "bay scallops", + "bay leaves", + "basil", + "okra", + "onions", + "pepper", + "flour", + "Tabasco Pepper Sauce", + "salt", + "thyme", + "green bell pepper", + "file powder", + "smoked ham", + "garlic", + "shrimp", + "chicken stock", + "crushed tomatoes", + "beef stock", + "worcestershire sauce", + "peanut oil", + "celery" + ] + }, + { + "id": 47066, + "cuisine": "southern_us", + "ingredients": [ + "base", + "salt", + "butter", + "pepper", + "butter beans" + ] + }, + { + "id": 35510, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "ground nutmeg", + "butter", + "milk", + "sweet potatoes", + "lemon extract", + "vanilla extract" + ] + }, + { + "id": 32946, + "cuisine": "french", + "ingredients": [ + "fresh cilantro", + "haricots verts", + "extra-virgin olive oil", + "pecans", + "flat leaf parsley", + "large garlic cloves" + ] + }, + { + "id": 35424, + "cuisine": "korean", + "ingredients": [ + "gyoza skins", + "napa cabbage leaves", + "garlic cloves", + "ground black pepper", + "salt", + "shiitake mushroom caps", + "water", + "dipping sauces", + "pork loin chops", + "green onions", + "dark sesame oil", + "medium shrimp" + ] + }, + { + "id": 26728, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil cooking spray", + "prune puree", + "bread slices", + "skim milk", + "1% low-fat milk", + "sugar", + "vanilla extract", + "unsweetened cocoa powder", + "powdered sugar", + "egg substitute", + "margarine" + ] + }, + { + "id": 12729, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "puff pastry", + "granulated sugar", + "cider vinegar", + "apples", + "unsalted butter" + ] + }, + { + "id": 19289, + "cuisine": "cajun_creole", + "ingredients": [ + "baking soda", + "all-purpose flour", + "sour cream", + "powdered sugar", + "unsalted butter", + "cane syrup", + "evaporated milk", + "large eggs", + "heavy whipping cream", + "ground cinnamon", + "ground nutmeg", + "dark brown sugar" + ] + }, + { + "id": 46464, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "peanuts", + "cucumber", + "sweetener", + "salt", + "fresh lime juice", + "pepper", + "splenda", + "fresh mint", + "Tabasco Green Pepper Sauce", + "garlic puree" + ] + }, + { + "id": 14554, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "milk", + "lemon juice", + "frozen peas", + "chicken broth", + "butter", + "thyme", + "biscuits", + "flour", + "carrots", + "chicken", + "pepper", + "salt", + "onions" + ] + }, + { + "id": 30998, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "red wine", + "yellow onion", + "greens", + "tomatoes", + "crema mexican", + "garlic", + "corn tortillas", + "kosher salt", + "vegetable oil", + "boneless beef chuck roast", + "serrano chile", + "poblano peppers", + "diced tomatoes", + "fresh oregano" + ] + }, + { + "id": 25485, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "all-purpose flour", + "buttermilk", + "flour", + "sugar", + "salt" + ] + }, + { + "id": 41636, + "cuisine": "italian", + "ingredients": [ + "water", + "port", + "dried rosemary", + "butter", + "black mission figs", + "prosciutto", + "purple onion", + "asiago", + "rolls" + ] + }, + { + "id": 27655, + "cuisine": "southern_us", + "ingredients": [ + "water", + "ground red pepper", + "sweet onion", + "salt", + "butter-margarine blend", + "honey", + "curry powder", + "paprika" + ] + }, + { + "id": 37788, + "cuisine": "indian", + "ingredients": [ + "pita bread rounds", + "chopped cilantro fresh", + "olive oil", + "garlic cloves", + "garam masala", + "chopped fresh mint", + "eggplant", + "onions" + ] + }, + { + "id": 3196, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "mozzarella cheese", + "dried basil", + "salt", + "onions", + "tomato paste", + "pepper", + "parmesan cheese", + "sweet italian sausage", + "noodles", + "tomato sauce", + "crushed tomatoes", + "garlic", + "fresh parsley", + "italian seasoning", + "eggs", + "water", + "ricotta cheese", + "ground beef", + "white sugar" + ] + }, + { + "id": 29657, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "orzo pasta", + "chickpeas", + "fresh parsley", + "olive oil", + "diced tomatoes", + "lemon juice", + "flour", + "vegetable broth", + "chopped cilantro", + "tomato paste", + "cinnamon", + "lentils", + "onions" + ] + }, + { + "id": 28178, + "cuisine": "russian", + "ingredients": [ + "granulated sugar", + "unsalted pistachios", + "sauce", + "turbinado", + "heavy cream", + "large egg yolks" + ] + }, + { + "id": 45537, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "unsalted butter", + "green pepper", + "grits", + "milk", + "salt", + "heavy whipping cream", + "sugar", + "olive oil", + "onion tops", + "broth", + "water", + "garlic", + "shrimp" + ] + }, + { + "id": 24446, + "cuisine": "mexican", + "ingredients": [ + "fresh corn", + "unsalted butter", + "pepper", + "chili powder", + "mayonaise", + "grated parmesan cheese", + "lime", + "salt" + ] + }, + { + "id": 12149, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "low sodium chicken broth", + "baking powder", + "poultry seasoning", + "milk", + "bay leaves", + "parsley", + "water", + "flour", + "onion powder", + "dumplings", + "condensed cream of chicken soup", + "ground black pepper", + "boneless skinless chicken breasts", + "butter" + ] + }, + { + "id": 19445, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "red pepper flakes", + "collards", + "ham", + "bacon", + "onions" + ] + }, + { + "id": 3198, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "shiitake", + "firm tofu", + "chicken", + "soy sauce", + "leeks", + "rib", + "dashi", + "salt", + "white sugar", + "fresh udon", + "mirin", + "carrots" + ] + }, + { + "id": 5931, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "lemon", + "shrimp", + "unsalted butter", + "garlic", + "ground pepper", + "worcestershire sauce", + "french bread", + "creole seasoning" + ] + }, + { + "id": 736, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "chicken breast halves", + "garlic", + "romano cheese", + "red pepper flakes", + "fresh basil leaves", + "pasta sauce", + "fresh mozzarella", + "salt", + "ground black pepper", + "heavy cream", + "rigatoni" + ] + }, + { + "id": 27056, + "cuisine": "chinese", + "ingredients": [ + "powdered sugar", + "essence", + "water", + "shortening", + "flour" + ] + }, + { + "id": 49373, + "cuisine": "japanese", + "ingredients": [ + "sake", + "quinoa", + "salt", + "scallions", + "tofu", + "white pepper", + "ginger", + "rice vinegar", + "cabbage", + "soy sauce", + "chili oil", + "gyoza wrappers", + "toasted sesame oil", + "potato starch", + "vegetables", + "garlic", + "dried shiitake mushrooms" + ] + }, + { + "id": 33459, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "hot red pepper flakes", + "juice", + "dried thyme", + "onions", + "garlic cloves" + ] + }, + { + "id": 36907, + "cuisine": "mexican", + "ingredients": [ + "fresh lime juice", + "olive oil", + "monterey jack", + "corn tortillas", + "pico de gallo", + "skirt steak" + ] + }, + { + "id": 40500, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "fennel bulb", + "chopped parsley", + "Italian turkey sausage links", + "orange bell pepper", + "garlic cloves", + "water", + "cooking spray", + "polenta", + "olive oil", + "purple onion", + "dried oregano" + ] + }, + { + "id": 10727, + "cuisine": "spanish", + "ingredients": [ + "cooking spray", + "chopped cilantro fresh", + "Mexican cheese blend", + "cilantro sprigs", + "chorizo sausage", + "corn salsa", + "boneless skinless chicken breasts", + "mango", + "flour tortillas", + "non-fat sour cream" + ] + }, + { + "id": 4612, + "cuisine": "jamaican", + "ingredients": [ + "ground ginger", + "ground black pepper", + "ground allspice", + "dried thyme", + "salt", + "ground nutmeg", + "cayenne pepper", + "ground cloves", + "granulated sugar", + "ground coriander" + ] + }, + { + "id": 17517, + "cuisine": "cajun_creole", + "ingredients": [ + "nutmeg", + "active dry yeast", + "cinnamon", + "sour cream", + "powdered sugar", + "lemon peel", + "cream cheese", + "sweetened condensed milk", + "ground cinnamon", + "granulated sugar", + "butter", + "bread flour", + "medium eggs", + "sugar", + "large eggs", + "lemon juice" + ] + }, + { + "id": 10998, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "shredded carrots", + "all-purpose flour", + "baking soda", + "vanilla", + "chopped pecans", + "sugar", + "cinnamon", + "crushed pineapple", + "cooking oil", + "salt" + ] + }, + { + "id": 9580, + "cuisine": "italian", + "ingredients": [ + "pizza sauce", + "shredded mozzarella cheese", + "prosciutto", + "pizza doughs", + "kosher salt", + "extra-virgin olive oil", + "lemon juice", + "baby arugula", + "freshly ground pepper" + ] + }, + { + "id": 25564, + "cuisine": "indian", + "ingredients": [ + "port wine", + "fresh ginger", + "red wine vinegar", + "salt", + "basmati rice", + "water", + "dry white wine", + "large garlic cloves", + "peanut oil", + "pepper", + "green onions", + "butter", + "hot sauce", + "curry powder", + "baby spinach", + "whipping cream", + "shrimp" + ] + }, + { + "id": 41651, + "cuisine": "southern_us", + "ingredients": [ + "yellow food coloring", + "red food coloring", + "food colouring", + "sprinkles", + "dough", + "color food green", + "milk", + "vanilla" + ] + }, + { + "id": 25364, + "cuisine": "mexican", + "ingredients": [ + "lime", + "chopped cilantro", + "unsalted butter", + "ground cumin", + "coarse salt", + "white rice" + ] + }, + { + "id": 32738, + "cuisine": "italian", + "ingredients": [ + "figs", + "riesling", + "ground walnuts", + "cooking spray", + "honey", + "cheese" + ] + }, + { + "id": 29164, + "cuisine": "korean", + "ingredients": [ + "fish sauce", + "garlic", + "water", + "rice flour", + "red chili peppers", + "salt", + "red chili powder", + "fresh ginger", + "perilla" + ] + }, + { + "id": 8540, + "cuisine": "italian", + "ingredients": [ + "beef", + "risotto", + "lamb", + "pork", + "poultry", + "parmesan cheese" + ] + }, + { + "id": 32668, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "lemon juice", + "olive oil", + "cilantro", + "water", + "red wine vinegar", + "hot pepper sauce", + "salt" + ] + }, + { + "id": 46655, + "cuisine": "french", + "ingredients": [ + "milk", + "vanilla", + "pears", + "large eggs", + "blanched almonds", + "unsalted butter", + "self-rising cake flour", + "sugar", + "almond extract", + "fresh lemon juice" + ] + }, + { + "id": 48735, + "cuisine": "italian", + "ingredients": [ + "bulk italian sausag", + "extra-virgin olive oil", + "mozzarella cheese", + "cracked black pepper", + "penne pasta", + "cremini mushrooms", + "heavy cream", + "salt", + "grated parmesan cheese", + "garlic" + ] + }, + { + "id": 48674, + "cuisine": "french", + "ingredients": [ + "pitted kalamata olives", + "dried peach", + "chopped pecans", + "honey", + "orange juice", + "dried thyme", + "goat cheese", + "crackers", + "capers", + "olive oil", + "freshly ground pepper" + ] + }, + { + "id": 31412, + "cuisine": "italian", + "ingredients": [ + "fresh thyme", + "salt", + "onions", + "milk", + "baking potatoes", + "grated nutmeg", + "bread crumbs", + "egg yolks", + "all-purpose flour", + "parmesan cheese", + "butter", + "freshly ground pepper" + ] + }, + { + "id": 3589, + "cuisine": "moroccan", + "ingredients": [ + "garbanzo beans", + "lemon juice", + "chili powder", + "chicken", + "green onions", + "red bell pepper", + "olive oil", + "cilantro", + "ground cumin" + ] + }, + { + "id": 10654, + "cuisine": "greek", + "ingredients": [ + "salt", + "pepper", + "long grain white rice", + "chicken broth", + "lemon juice", + "large eggs" + ] + }, + { + "id": 40610, + "cuisine": "southern_us", + "ingredients": [ + "butternut squash", + "cornmeal", + "milk", + "all-purpose flour", + "eggs", + "salt", + "garlic salt", + "ground black pepper", + "oil" + ] + }, + { + "id": 26124, + "cuisine": "chinese", + "ingredients": [ + "potato starch", + "pepper", + "sesame oil", + "garlic", + "medium firm tofu", + "chinese rice wine", + "ground black pepper", + "ginger", + "scallions", + "chicken stock", + "soy sauce", + "shallots", + "hot bean paste", + "red miso", + "brown sugar", + "water", + "ground pork", + "salt" + ] + }, + { + "id": 23997, + "cuisine": "mexican", + "ingredients": [ + "fresh coriander", + "sour cream", + "tomatillos", + "purple onion", + "chili", + "coriander" + ] + }, + { + "id": 21559, + "cuisine": "japanese", + "ingredients": [ + "sake", + "pineapple", + "pork tenderloin", + "mirin", + "purple onion", + "low sodium soy sauce", + "cooking spray" + ] + }, + { + "id": 40165, + "cuisine": "jamaican", + "ingredients": [ + "melted butter", + "active dry yeast", + "sugar", + "coconut milk", + "eggs", + "flour", + "kosher salt" + ] + }, + { + "id": 45014, + "cuisine": "mexican", + "ingredients": [ + "canned black beans", + "pace picante sauce", + "frozen whole kernel corn", + "water", + "quick cooking brown rice" + ] + }, + { + "id": 10655, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "whipping cream", + "powdered sugar", + "granulated sugar", + "vanilla instant pudding", + "sliced almonds", + "bourbon whiskey", + "peaches", + "pound cake" + ] + }, + { + "id": 19204, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "diced tomatoes", + "salt", + "onions", + "soy chorizo", + "vegetable broth", + "rice", + "green bell pepper", + "paprika", + "cayenne pepper", + "ground black pepper", + "garlic", + "okra" + ] + }, + { + "id": 2884, + "cuisine": "indian", + "ingredients": [ + "mayonaise", + "lemon juice", + "paprika", + "salt", + "curry powder", + "grated lemon peel" + ] + }, + { + "id": 34034, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "diced tomatoes with garlic and onion", + "fat free yogurt", + "salt", + "chopped fresh mint", + "boneless chicken skinless thigh", + "spices", + "couscous", + "black pepper", + "chickpeas" + ] + }, + { + "id": 31075, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chopped onion", + "grated lemon peel", + "rocket leaves", + "dry white wine", + "fresh parsley leaves", + "arborio rice", + "medium shrimp uncook", + "garlic cloves", + "bottled clam juice", + "butter", + "low salt chicken broth" + ] + }, + { + "id": 20755, + "cuisine": "italian", + "ingredients": [ + "chili flakes", + "salt", + "vegetables", + "shredded mozzarella cheese", + "Stonefire Italian Artisan Pizza Crust", + "goat cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 45770, + "cuisine": "greek", + "ingredients": [ + "frozen edamame beans", + "olive oil", + "red wine vinegar", + "grape tomatoes", + "ground black pepper", + "fresh oregano", + "pitted kalamata olives", + "dijon mustard", + "string beans", + "pitas", + "cheese" + ] + }, + { + "id": 44949, + "cuisine": "mexican", + "ingredients": [ + "great northern beans", + "chili powder", + "salsa", + "ripe olives", + "sliced green onions", + "cooking spray", + "cilantro sprigs", + "fresh onion", + "chopped cilantro fresh", + "Mexican cheese blend", + "reduced-fat sour cream", + "rotisserie chicken", + "garlic salt", + "ground cumin", + "ground red pepper", + "1% low-fat milk", + "corn tortillas", + "canola oil" + ] + }, + { + "id": 40220, + "cuisine": "french", + "ingredients": [ + "salt", + "mushrooms", + "burgundy snails", + "butter", + "pepper", + "oil" + ] + }, + { + "id": 40098, + "cuisine": "southern_us", + "ingredients": [ + "ice", + "basil leaves", + "sugar", + "club soda", + "satsumas" + ] + }, + { + "id": 33338, + "cuisine": "italian", + "ingredients": [ + "white bread", + "cooking spray", + "red bell pepper", + "olive oil", + "penne pasta", + "slivered almonds", + "crushed red pepper", + "fresh parsley", + "sherry vinegar", + "garlic cloves" + ] + }, + { + "id": 17612, + "cuisine": "mexican", + "ingredients": [ + "dough", + "chili powder", + "water", + "ground cumin", + "tomato sauce", + "chicken", + "corn husks" + ] + }, + { + "id": 30386, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "vanilla extract", + "dark brown sugar", + "butter", + "all-purpose flour", + "large eggs", + "salt", + "chopped pecans", + "light corn syrup", + "cream cheese" + ] + }, + { + "id": 38680, + "cuisine": "spanish", + "ingredients": [ + "paprika", + "sea salt flakes", + "vegetable oil", + "chickpeas" + ] + }, + { + "id": 34082, + "cuisine": "japanese", + "ingredients": [ + "water", + "flour", + "shrimp", + "mirin", + "bonito flakes", + "canola oil", + "eggplant", + "sweet potatoes", + "onions", + "soy sauce", + "large eggs", + "yams" + ] + }, + { + "id": 36131, + "cuisine": "jamaican", + "ingredients": [ + "red kidney beans", + "jalapeno chilies", + "vegetable broth", + "garlic cloves", + "olive oil", + "baby spinach", + "yellow onion", + "unsweetened coconut milk", + "ground black pepper", + "diced tomatoes", + "ground allspice", + "dried thyme", + "sweet potatoes", + "salt", + "red bell pepper" + ] + }, + { + "id": 13464, + "cuisine": "italian", + "ingredients": [ + "green olives", + "water", + "red wine vinegar", + "diced celery", + "diced onions", + "sugar", + "vegetable oil", + "ficelle", + "tomato paste", + "black pepper", + "cinnamon", + "salt", + "capers", + "olive oil", + "italian eggplant", + "fresh basil leaves" + ] + }, + { + "id": 26874, + "cuisine": "italian", + "ingredients": [ + "water", + "all purpose unbleached flour", + "olive oil", + "sea salt flakes", + "rosemary", + "salt", + "baking powder" + ] + }, + { + "id": 12216, + "cuisine": "vietnamese", + "ingredients": [ + "brown sugar", + "vegetable oil", + "carrots", + "mint", + "granulated sugar", + "rice vermicelli", + "fresh lime juice", + "pork cutlets", + "chiles", + "cilantro", + "cucumber", + "fish sauce", + "green leaf lettuce", + "garlic" + ] + }, + { + "id": 1174, + "cuisine": "italian", + "ingredients": [ + "cream cheese", + "noodles", + "ricotta cheese", + "shredded mozzarella cheese", + "tomato sauce", + "italian pork sausage", + "diced tomatoes", + "fresh parsley" + ] + }, + { + "id": 26680, + "cuisine": "indian", + "ingredients": [ + "ground nutmeg", + "mango", + "ground ginger", + "mint sprigs", + "cinnamon", + "watermelon", + "confectioners sugar" + ] + }, + { + "id": 14093, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "apples", + "thyme", + "sage", + "cornbread", + "green onions", + "salt", + "marjoram", + "bread", + "butter", + "chopped onion", + "pork sausages", + "ground black pepper", + "chopped celery", + "fresh parsley" + ] + }, + { + "id": 49685, + "cuisine": "russian", + "ingredients": [ + "sugar", + "baking powder", + "salt", + "unsalted butter", + "raisins", + "squirt", + "lemon", + "all-purpose flour", + "ground cinnamon", + "large eggs", + "apples" + ] + }, + { + "id": 41983, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "salt", + "chicken broth", + "honey", + "soy sauce", + "oil", + "chicken wings", + "dry sherry" + ] + }, + { + "id": 47579, + "cuisine": "british", + "ingredients": [ + "milk", + "all-purpose flour", + "cream of tartar", + "unsalted butter", + "baking soda", + "sugar", + "salt" + ] + }, + { + "id": 13598, + "cuisine": "italian", + "ingredients": [ + "white wine", + "large egg whites", + "shallots", + "fat-free chicken broth", + "onions", + "rosemary", + "zucchini", + "paprika", + "whole wheat seasoned breadcrumbs", + "pepper", + "garlic powder", + "butter", + "salt", + "marjoram", + "dried basil", + "grated parmesan cheese", + "garlic", + "ground turkey" + ] + }, + { + "id": 39550, + "cuisine": "spanish", + "ingredients": [ + "ice cubes", + "rosé wine", + "sugar", + "strawberries", + "cointreau", + "fresh orange juice", + "orange", + "fresh raspberries" + ] + }, + { + "id": 19862, + "cuisine": "british", + "ingredients": [ + "eggs", + "sunflower oil", + "garlic cloves", + "plain flour", + "balsamic vinegar", + "salt", + "milk", + "purple onion", + "sausages", + "fresh rosemary", + "butter", + "vegetable stock powder" + ] + }, + { + "id": 5070, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "shredded Monterey Jack cheese", + "salsa verde", + "cream cheese", + "pepper", + "salt", + "ground cumin", + "flour tortillas", + "chicken" + ] + }, + { + "id": 23899, + "cuisine": "french", + "ingredients": [ + "breakfast sausages", + "dry white wine", + "freshly ground pepper", + "shallots", + "unsalted butter", + "salt" + ] + }, + { + "id": 31012, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "ricotta cheese", + "salt", + "onions", + "chicken broth", + "lasagna noodles", + "chicken meat", + "shredded mozzarella cheese", + "frozen chopped spinach", + "ground black pepper", + "butter", + "all-purpose flour", + "dried oregano", + "milk", + "grated parmesan cheese", + "garlic", + "fresh parsley" + ] + }, + { + "id": 30277, + "cuisine": "british", + "ingredients": [ + "water", + "parsley", + "smoked paprika", + "sweet onion", + "butter", + "curry powder", + "coarse salt", + "long grain white rice", + "eggs", + "ground black pepper", + "smoked trout" + ] + }, + { + "id": 2134, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "lard", + "mole poblano", + "kosher salt", + "cooked chicken breasts", + "frozen banana leaf", + "masa" + ] + }, + { + "id": 15164, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "asian pear", + "ginger", + "sour cream", + "cheddar cheese", + "sesame seeds", + "sesame oil", + "tortilla chips", + "toasted sesame seeds", + "brown sugar", + "pepper", + "green onions", + "garlic", + "onions", + "jack cheese", + "beef", + "butter", + "kimchi" + ] + }, + { + "id": 22920, + "cuisine": "indian", + "ingredients": [ + "water", + "capsicum", + "rice", + "lemon juice", + "onions", + "clove", + "potatoes", + "star anise", + "green chilies", + "cinnamon sticks", + "shahi jeera", + "Biryani Masala", + "green peas", + "green cardamom", + "carrots", + "peppercorns", + "garlic paste", + "mint leaves", + "cilantro leaves", + "oil", + "bay leaf" + ] + }, + { + "id": 48157, + "cuisine": "southern_us", + "ingredients": [ + "fresh ginger", + "hot sauce", + "marinade", + "garlic cloves", + "ketchup", + "dry sherry", + "sugar", + "relish", + "rib" + ] + }, + { + "id": 41123, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "large egg yolks", + "vanilla extract", + "dark corn syrup", + "large eggs", + "white chocolate", + "unsalted butter", + "salt", + "pie crust", + "golden brown sugar", + "light corn syrup" + ] + }, + { + "id": 39185, + "cuisine": "italian", + "ingredients": [ + "water", + "polenta" + ] + }, + { + "id": 17846, + "cuisine": "thai", + "ingredients": [ + "cooked rice", + "fresh mushrooms", + "basil leaves", + "red bell pepper", + "cooking oil", + "shrimp", + "red curry paste", + "coconut milk" + ] + }, + { + "id": 15491, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "green bell pepper", + "coriander powder", + "kasuri methi", + "lemon juice", + "red chili powder", + "pepper", + "yoghurt", + "meat tenderizer", + "onions", + "fenugreek leaves", + "tumeric", + "Biryani Masala", + "salt", + "red bell pepper", + "garlic paste", + "garam masala", + "boneless chicken", + "oil" + ] + }, + { + "id": 15213, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "green bell pepper", + "carrots", + "green cabbage", + "cider vinegar", + "mayonaise", + "onions" + ] + }, + { + "id": 46020, + "cuisine": "british", + "ingredients": [ + "heavy cream", + "papaya", + "fresh lime juice", + "granulated sugar" + ] + }, + { + "id": 4760, + "cuisine": "southern_us", + "ingredients": [ + "water", + "buttermilk biscuits", + "country ham", + "grits" + ] + }, + { + "id": 33639, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "dried thyme", + "vegetable oil", + "garlic cloves", + "green bell pepper", + "low sodium chicken broth", + "smoked sausage", + "red kidney beans", + "ground pepper", + "cajun seasoning", + "smoked ham hocks", + "kosher salt", + "bay leaves", + "yellow onion" + ] + }, + { + "id": 23622, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "artichokes", + "chicken", + "ground black pepper", + "garlic", + "saffron", + "olive oil", + "Italian parsley leaves", + "boned lamb shoulder", + "lemon", + "salt" + ] + }, + { + "id": 25445, + "cuisine": "mexican", + "ingredients": [ + "cantaloupe", + "navel oranges", + "chili powder", + "chopped cilantro", + "jicama", + "fresh lime juice", + "pomegranate seeds", + "sea salt" + ] + }, + { + "id": 12098, + "cuisine": "italian", + "ingredients": [ + "edible flowers", + "quinoa", + "salt", + "pinenuts", + "olive oil", + "shallots", + "spinach", + "halibut fillets", + "unsalted butter", + "freshly ground pepper", + "water", + "prosciutto", + "vegetable broth" + ] + }, + { + "id": 36590, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "salt", + "shell-on shrimp", + "onions", + "water", + "all-purpose flour", + "smoked sausage", + "grits" + ] + }, + { + "id": 14024, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "garlic powder", + "salt", + "vidalia", + "grated parmesan cheese", + "dough", + "olive oil", + "ranch dressing", + "shredded cheddar cheese", + "ground black pepper", + "shredded mozzarella cheese" + ] + }, + { + "id": 32211, + "cuisine": "filipino", + "ingredients": [ + "chicken stock", + "vinegar", + "cayenne pepper", + "soy sauce", + "bay leaves", + "chicken legs", + "cooking oil", + "chicken thighs", + "ground black pepper", + "garlic" + ] + }, + { + "id": 590, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "shallots", + "garlic cloves", + "pasta", + "parmigiano reggiano cheese", + "green peas", + "kosher salt", + "dry white wine", + "extra-virgin olive oil", + "pancetta", + "ground black pepper", + "chopped fresh thyme" + ] + }, + { + "id": 33414, + "cuisine": "french", + "ingredients": [ + "corn kernels", + "extra-virgin olive oil", + "unsalted butter", + "boneless skinless chicken breast halves", + "cherry tomatoes", + "all-purpose flour", + "fresh basil", + "green onions" + ] + }, + { + "id": 23058, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "grits", + "salt", + "water" + ] + }, + { + "id": 4739, + "cuisine": "greek", + "ingredients": [ + "grated orange peel", + "almonds", + "walnuts", + "graham crackers", + "vanilla extract", + "sugar", + "large eggs", + "rusk", + "ground cinnamon", + "water", + "salt" + ] + }, + { + "id": 32461, + "cuisine": "mexican", + "ingredients": [ + "cilantro", + "avocado", + "corn tortillas", + "purple onion", + "lime", + "chicken" + ] + }, + { + "id": 6606, + "cuisine": "british", + "ingredients": [ + "sour cream", + "whipping cream", + "confectioners sugar" + ] + }, + { + "id": 39483, + "cuisine": "indian", + "ingredients": [ + "sugar", + "chives", + "all-purpose flour", + "dough", + "milk", + "butter", + "nigella seeds", + "plain yogurt", + "baking powder", + "oil", + "chili flakes", + "baking soda", + "salt", + "chopped garlic" + ] + }, + { + "id": 17030, + "cuisine": "italian", + "ingredients": [ + "eggs", + "parsley", + "sweet italian sausage", + "grated parmesan cheese", + "ricotta", + "fresh basil", + "fresh mozzarella", + "ground beef", + "barilla", + "salt" + ] + }, + { + "id": 22407, + "cuisine": "chinese", + "ingredients": [ + "duck breasts", + "spring onions", + "honey", + "extra-virgin olive oil", + "soy sauce", + "vegetable oil", + "five spice", + "new potatoes", + "arugula" + ] + }, + { + "id": 27472, + "cuisine": "italian", + "ingredients": [ + "pepper", + "grated parmesan cheese", + "garlic cloves", + "whole wheat orzo", + "vegetables", + "salt", + "dried basil", + "dry white wine", + "dried parsley", + "olive oil", + "boneless skinless chicken breasts" + ] + }, + { + "id": 30257, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "paprika", + "oil", + "garlic powder", + "leg quarters", + "coconut flour" + ] + }, + { + "id": 4640, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "hoisin sauce", + "rice vinegar", + "brown sugar", + "olive oil", + "boneless skinless chicken breasts", + "pepper flakes", + "water", + "green onions", + "corn starch", + "soy sauce", + "fresh ginger", + "sesame oil" + ] + }, + { + "id": 34626, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "crushed red pepper", + "fresh ginger", + "garlic cloves", + "olive oil", + "cumin seed", + "fennel seeds", + "cardamom seeds", + "leg of lamb" + ] + }, + { + "id": 34824, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "diced tomatoes", + "chopped onion", + "ground turkey", + "ground cumin", + "tomato sauce", + "chili powder", + "fat-free chicken broth", + "Mexican cheese", + "chopped cilantro", + "green chile", + "pepper", + "garlic", + "garlic cloves", + "chipotles in adobo", + "black beans", + "whole wheat tortillas", + "salt", + "nonstick spray", + "cumin" + ] + }, + { + "id": 13634, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "chili powder", + "garlic salt", + "water", + "salt", + "cumin", + "minced garlic", + "onion powder", + "oregano", + "olive oil", + "hot sauce" + ] + }, + { + "id": 18855, + "cuisine": "italian", + "ingredients": [ + "pepper", + "sea salt", + "flat leaf parsley", + "sage leaves", + "olive oil", + "thyme", + "arugula", + "rosemary", + "garlic cloves", + "onions", + "tomato sauce", + "basil leaves", + "ground turkey" + ] + }, + { + "id": 35064, + "cuisine": "chinese", + "ingredients": [ + "water", + "chopped celery", + "oil", + "chopped garlic", + "soy sauce", + "button mushrooms", + "cilantro leaves", + "corn starch", + "black pepper", + "ginger", + "rice vinegar", + "onions", + "haricots verts", + "shredded cabbage", + "salt", + "carrots" + ] + }, + { + "id": 28676, + "cuisine": "cajun_creole", + "ingredients": [ + "saltines", + "pepper", + "vegetable oil", + "cayenne pepper", + "mayonaise", + "honey", + "worcestershire sauce", + "cube steaks", + "eggs", + "milk", + "cajun seasoning", + "sour cream", + "creole mustard", + "black pepper", + "flour", + "salt" + ] + }, + { + "id": 47694, + "cuisine": "indian", + "ingredients": [ + "caster sugar", + "ghee", + "plain flour", + "salt", + "yoghurt", + "kalonji", + "warm water", + "baking yeast" + ] + }, + { + "id": 41522, + "cuisine": "mexican", + "ingredients": [ + "Velveeta", + "chili powder", + "diced chicken", + "enchilada sauce", + "pico de gallo", + "tortillas", + "garlic", + "whole kernel corn, drain", + "onions", + "chicken stock", + "black pepper", + "vegetable oil", + "cayenne pepper", + "corn tortillas", + "tomato sauce", + "colby jack cheese", + "chicken soup base", + "shredded cheese", + "ground cumin" + ] + }, + { + "id": 46085, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "garlic powder", + "garlic", + "onions", + "tomatoes", + "shredded reduced fat cheddar cheese", + "fat-free cottage cheese", + "scallions", + "corn kernels", + "diced green chilies", + "non-fat sour cream", + "ground cumin", + "Mission Yellow Corn Tortillas", + "extra-lean ground beef", + "chili powder", + "enchilada sauce" + ] + }, + { + "id": 8607, + "cuisine": "italian", + "ingredients": [ + "kahlúa", + "whipping cream", + "water", + "pound cake", + "sugar", + "whipped cream cheese", + "instant espresso powder", + "unsweetened cocoa powder" + ] + }, + { + "id": 16917, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "vegetable oil", + "all-purpose flour", + "hot pepper sauce", + "worcestershire sauce", + "boneless skinless chicken breast halves", + "vegetable oil spray", + "buttermilk", + "cayenne pepper", + "lemon wedge", + "salt", + "grated lemon peel" + ] + }, + { + "id": 41254, + "cuisine": "irish", + "ingredients": [ + "chopped celery", + "corned beef", + "water", + "onions", + "carrots", + "gold potatoes", + "cabbage" + ] + }, + { + "id": 22765, + "cuisine": "mexican", + "ingredients": [ + "dried black beans", + "corn oil", + "chees fresco queso", + "white corn tortillas", + "jalapeno chilies", + "anise", + "chopped cilantro fresh", + "white onion", + "large garlic cloves", + "marjoram", + "crema mexicana", + "epazote", + "lard" + ] + }, + { + "id": 12755, + "cuisine": "italian", + "ingredients": [ + "sugar", + "whole milk ricotta cheese", + "fresh basil leaves", + "cherry tomatoes", + "simple syrup", + "water", + "vegetable oil", + "tomatoes", + "whole milk", + "coarse kosher salt" + ] + }, + { + "id": 4355, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "tonkatsu sauce", + "water", + "all-purpose flour", + "gari", + "salt", + "bacon", + "cabbage" + ] + }, + { + "id": 15742, + "cuisine": "southern_us", + "ingredients": [ + "toasted pecans", + "large egg yolks", + "all-purpose flour", + "pecan halves", + "milk chocolate", + "whipping cream", + "sugar", + "unsalted butter", + "apricot preserves", + "pecans", + "vegetable oil spray", + "salt" + ] + }, + { + "id": 33731, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "chicken meat", + "cheese soup", + "milk", + "salsa", + "flour tortillas" + ] + }, + { + "id": 18079, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "udon", + "dark sesame oil", + "snow peas", + "reduced fat creamy peanut butter", + "peeled fresh ginger", + "corn starch", + "water", + "shredded carrots", + "garlic cloves", + "low sodium soy sauce", + "Sriracha", + "rice vinegar", + "bok choy" + ] + }, + { + "id": 17247, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "water chestnuts", + "vegetable broth", + "snow peas", + "bean threads", + "extra firm tofu", + "napa cabbage", + "bamboo shoots", + "fresh ginger", + "lily buds", + "dried shiitake mushrooms", + "light brown sugar", + "hoisin sauce", + "sesame oil", + "peanut oil" + ] + }, + { + "id": 30548, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "garlic cloves", + "pasilla", + "water", + "carrots", + "ancho", + "potatoes" + ] + }, + { + "id": 44021, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "sweet onion", + "italian tomatoes", + "broccoli florets", + "sausage links", + "olive oil", + "minced garlic", + "linguine" + ] + }, + { + "id": 39486, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "all-purpose flour", + "honey", + "vanilla extract", + "almonds", + "salt", + "sugar", + "baking powder", + "grated lemon peel" + ] + }, + { + "id": 14663, + "cuisine": "southern_us", + "ingredients": [ + "water", + "buttermilk", + "white sugar", + "unsalted butter", + "salt", + "baking soda", + "vanilla", + "eggs", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 4374, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "petrale sole", + "fermented black beans", + "minced garlic", + "rice wine", + "toasted sesame oil", + "white pepper", + "green onions", + "salad oil", + "sugar", + "regular soy sauce", + "salt" + ] + }, + { + "id": 20568, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "salt", + "ground cumin", + "green onions", + "red bell pepper", + "minced onion", + "ground coriander", + "eggs", + "sesame oil", + "ground turmeric" + ] + }, + { + "id": 18830, + "cuisine": "italian", + "ingredients": [ + "diced tomatoes", + "salt", + "olive oil", + "garlic", + "hot Italian sausages", + "tomato sauce", + "dry red wine", + "sweet italian sausage", + "heavy cream", + "purple onion", + "celery" + ] + }, + { + "id": 14744, + "cuisine": "french", + "ingredients": [ + "dry yeast", + "warm water", + "fine sea salt", + "yellow corn meal", + "all purpose unbleached flour", + "olive oil", + "herbes de provence" + ] + }, + { + "id": 14736, + "cuisine": "indian", + "ingredients": [ + "active dry yeast", + "greek yogurt", + "kosher salt", + "cilantro", + "canola oil", + "honey", + "ghee", + "water", + "all-purpose flour" + ] + }, + { + "id": 49074, + "cuisine": "jamaican", + "ingredients": [ + "pepper flakes", + "salt", + "jerk marinade", + "thyme leaves", + "sugar", + "lemon juice", + "salmon steaks" + ] + }, + { + "id": 49460, + "cuisine": "indian", + "ingredients": [ + "saffron threads", + "whole milk", + "sugar", + "ghee", + "green cardamom pods", + "golden raisins", + "jasmine rice", + "natural pistachios" + ] + }, + { + "id": 48768, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "napa cabbage", + "pork loin chops", + "green onions", + "corn starch", + "pancake", + "hoisin sauce", + "fresh mushrooms", + "wood ear mushrooms", + "large eggs", + "peanut oil", + "bamboo shoots" + ] + }, + { + "id": 39828, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "large eggs", + "milk", + "mexican chocolate", + "kosher salt", + "vegetable oil", + "ground cinnamon", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 43795, + "cuisine": "italian", + "ingredients": [ + "bell pepper", + "garlic", + "dried oregano", + "diced onions", + "basil dried leaves", + "fresh mushrooms", + "diced tomatoes", + "chopped celery", + "shredded carrots", + "extra-virgin olive oil", + "dried parsley" + ] + }, + { + "id": 21277, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "fresh oregano", + "fresh basil leaves", + "water", + "linguine", + "fresh parsley", + "olive oil", + "crushed red pepper", + "onions", + "tomatoes", + "butter", + "garlic cloves", + "varnish clams" + ] + }, + { + "id": 20366, + "cuisine": "brazilian", + "ingredients": [ + "water", + "hot Italian sausages", + "orange zest", + "pork loin", + "ham", + "cherry tomatoes", + "garlic cloves", + "black beans", + "red pepper flakes", + "onions" + ] + }, + { + "id": 20488, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "firm tofu", + "sugar", + "peanut oil", + "Thai red curry paste", + "green beans", + "vegetable broth" + ] + }, + { + "id": 21982, + "cuisine": "mexican", + "ingredients": [ + "whole wheat tortillas", + "cheddar cheese", + "avocado", + "sour cream", + "smoked turkey" + ] + }, + { + "id": 32529, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "minced garlic", + "soy sauce", + "bay leaves", + "pork", + "ground black pepper", + "ketchup", + "green beans" + ] + }, + { + "id": 6281, + "cuisine": "japanese", + "ingredients": [ + "caster sugar", + "sushi nori", + "umeboshi paste", + "water", + "sushi rice", + "rice vinegar" + ] + }, + { + "id": 42496, + "cuisine": "mexican", + "ingredients": [ + "jicama", + "pepper", + "cilantro leaves", + "salt", + "lime juice" + ] + }, + { + "id": 4504, + "cuisine": "mexican", + "ingredients": [ + "shallots", + "avocado", + "garlic", + "taco sauce" + ] + }, + { + "id": 24219, + "cuisine": "indian", + "ingredients": [ + "white onion", + "mint leaves", + "chilli paste", + "coconut milk", + "garlic paste", + "garam masala", + "vegetable oil", + "cilantro leaves", + "ground turmeric", + "black pepper", + "coriander powder", + "cinnamon", + "greek yogurt", + "saffron", + "tomatoes", + "monkfish fillets", + "chili powder", + "salt", + "basmati rice" + ] + }, + { + "id": 32904, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "apple cider vinegar", + "pickling spices", + "garlic", + "boneless chicken skinless thigh", + "vegetable oil", + "water" + ] + }, + { + "id": 18324, + "cuisine": "mexican", + "ingredients": [ + "cilantro", + "white onion", + "fresh lime juice", + "tomatoes", + "salt", + "jalapeno chilies" + ] + }, + { + "id": 46565, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "extra-virgin olive oil", + "poblano chiles", + "green onions", + "garlic cloves", + "hothouse cucumber", + "cherry tomatoes", + "vegetable broth", + "chopped cilantro fresh", + "tomatillos", + "pepitas" + ] + }, + { + "id": 15301, + "cuisine": "italian", + "ingredients": [ + "challa", + "semisweet chocolate" + ] + }, + { + "id": 43050, + "cuisine": "japanese", + "ingredients": [ + "hot mustard", + "panko", + "salt", + "pork cutlets", + "ketchup", + "corn oil", + "freshly ground pepper", + "soy sauce", + "mirin", + "all-purpose flour", + "eggs", + "steamed rice", + "worcestershire sauce", + "hot water" + ] + }, + { + "id": 49585, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "garlic", + "garlic cloves", + "pepper", + "chicken breasts", + "low sodium chicken stock", + "canola oil", + "arborio rice", + "grated parmesan cheese", + "salt", + "sliced mushrooms", + "olive oil", + "shallots", + "beer" + ] + }, + { + "id": 45425, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "serrano chilies", + "ground cumin", + "gingerroot", + "plain yogurt" + ] + }, + { + "id": 42885, + "cuisine": "mexican", + "ingredients": [ + "clove", + "kosher salt", + "lime wedges", + "boneless pork loin", + "corn tortillas", + "guajillo chiles", + "lime juice", + "pineapple", + "garlic cloves", + "chiles", + "cider vinegar", + "vegetable oil", + "cumin seed", + "chopped cilantro fresh", + "white onion", + "Mexican oregano", + "salsa", + "ancho chile pepper" + ] + }, + { + "id": 26092, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "parmesan cheese", + "whole wheat penne", + "cherry tomatoes", + "garlic cloves", + "tomato sauce", + "celtic salt", + "olive oil", + "fresh parsley" + ] + }, + { + "id": 4521, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "salt", + "ground red pepper", + "onions", + "olive oil", + "garlic cloves", + "tomatoes", + "whipping cream" + ] + }, + { + "id": 32365, + "cuisine": "italian", + "ingredients": [ + "eggs", + "basil", + "garlic powder", + "ground beef", + "bread crumbs", + "salt", + "onion powder", + "oregano" + ] + }, + { + "id": 13561, + "cuisine": "italian", + "ingredients": [ + "eggs", + "garlic powder", + "shredded mozzarella cheese", + "frozen chopped spinach", + "pepper", + "grated parmesan cheese", + "tomatoes", + "water", + "ricotta cheese", + "manicotti shells", + "minced onion", + "fresh parsley" + ] + }, + { + "id": 4076, + "cuisine": "indian", + "ingredients": [ + "lime juice", + "sunflower oil", + "rice", + "plain yogurt", + "ground black pepper", + "rice vinegar", + "cucumber", + "caster sugar", + "mint leaves", + "loin", + "curry paste", + "lime", + "salt", + "carrots" + ] + }, + { + "id": 38387, + "cuisine": "indian", + "ingredients": [ + "fish sauce", + "light coconut milk", + "medium shrimp", + "low sodium soy sauce", + "sesame oil", + "red bell pepper", + "fresh ginger", + "long-grain rice", + "curry powder", + "broccoli" + ] + }, + { + "id": 5930, + "cuisine": "thai", + "ingredients": [ + "bread crumbs", + "lemon", + "red chili peppers", + "fresh ginger", + "free-range eggs", + "salmon fillets", + "fresh coriander", + "garlic", + "soy sauce", + "potatoes" + ] + }, + { + "id": 11387, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "clam juice", + "whipping cream", + "dry white wine", + "butter", + "garlic cloves", + "lump crab meat", + "shallots", + "worcestershire sauce", + "oysters", + "cajun seasoning", + "all-purpose flour" + ] + }, + { + "id": 38652, + "cuisine": "mexican", + "ingredients": [ + "pork stew meat", + "tomatillos", + "cilantro leaves", + "jalapeno chilies", + "sea salt", + "yellow onion", + "chile pepper", + "yellow bell pepper", + "freshly ground pepper", + "chicken broth", + "vegetable oil", + "garlic", + "ground cumin" + ] + }, + { + "id": 36382, + "cuisine": "french", + "ingredients": [ + "vegetable oil", + "all-purpose flour", + "white wine", + "beaten eggs", + "unsalted butter", + "salt", + "powdered sugar", + "vanilla extract" + ] + }, + { + "id": 11242, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "sugar", + "blackberries", + "reduced-fat sour cream", + "cream sherry" + ] + }, + { + "id": 26272, + "cuisine": "indian", + "ingredients": [ + "milk", + "curds", + "red chili peppers" + ] + }, + { + "id": 5587, + "cuisine": "spanish", + "ingredients": [ + "eggplant", + "kosher salt", + "olive oil", + "ground pepper" + ] + }, + { + "id": 15117, + "cuisine": "italian", + "ingredients": [ + "sugar", + "mascarpone", + "unsweetened cocoa powder", + "water", + "cookies", + "brandy", + "large eggs", + "powdered sugar", + "instant espresso powder", + "whipping cream" + ] + }, + { + "id": 32876, + "cuisine": "vietnamese", + "ingredients": [ + "low sodium soy sauce", + "ground black pepper", + "sea salt", + "rice paper", + "romaine lettuce", + "sweet potatoes", + "beansprouts", + "coconut oil", + "radishes", + "rice vinegar", + "garlic powder", + "baby spinach", + "chopped fresh mint" + ] + }, + { + "id": 15364, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "olive oil", + "dry white wine", + "all-purpose flour", + "fresh sage", + "unsalted butter", + "turkey stock", + "garlic cloves", + "rosemary sprigs", + "grated parmesan cheese", + "turkey", + "fresh rosemary", + "ground black pepper", + "shallots", + "chopped fresh sage" + ] + }, + { + "id": 24048, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless chicken skinless thigh", + "spices", + "corn starch", + "onions", + "tomatoes", + "olive oil", + "sausages", + "chopped parsley", + "chicken broth", + "minced garlic", + "sauce", + "smoked paprika", + "fettuccine pasta", + "green bell pepper, slice", + "thyme", + "medium shrimp" + ] + }, + { + "id": 9, + "cuisine": "southern_us", + "ingredients": [ + "sweet potatoes", + "all-purpose flour", + "pepper", + "apple cider", + "onions", + "pork", + "vegetable oil", + "bay leaf", + "mixed dried fruit", + "salt", + "dried rosemary" + ] + }, + { + "id": 44503, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "jalapeno chilies", + "sauce", + "honey", + "salsa", + "chuck", + "chopped tomatoes", + "beef broth", + "ground cumin", + "kosher salt", + "garlic", + "onions" + ] + }, + { + "id": 48005, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "pasta", + "salt", + "unsalted butter", + "parmesan cheese" + ] + }, + { + "id": 47465, + "cuisine": "spanish", + "ingredients": [ + "salt", + "pepper", + "freshly ground pepper", + "tuna fillets", + "european style butter", + "fresh lemon juice" + ] + }, + { + "id": 6857, + "cuisine": "indian", + "ingredients": [ + "water", + "garlic", + "onions", + "baby spinach", + "nonfat yogurt plain", + "ground cumin", + "curry powder", + "salt", + "canola oil", + "ginger", + "mustard seeds" + ] + }, + { + "id": 34071, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "cilantro root", + "peppercorns", + "shrimp paste", + "salt", + "ground cumin", + "coriander powder", + "garlic", + "kaffir lime", + "chiles", + "shallots", + "galangal" + ] + }, + { + "id": 21252, + "cuisine": "mexican", + "ingredients": [ + "fat free less sodium chicken broth", + "tomato salsa", + "garlic cloves", + "jalapeno chilies", + "cilantro leaves", + "fresh lime juice", + "avocado", + "tomatillos", + "chopped onion", + "ground cumin", + "olive oil", + "salt", + "poblano chiles" + ] + }, + { + "id": 3393, + "cuisine": "mexican", + "ingredients": [ + "black peppercorns", + "sesame seeds", + "salt", + "garlic cloves", + "serrano chilies", + "fresh coriander", + "garlic", + "allspice berries", + "chicken", + "stock", + "tomatillos", + "pumpkin seeds", + "green pumpkin seeds", + "clove", + "white onion", + "poblano chilies", + "cumin seed", + "lard" + ] + }, + { + "id": 35680, + "cuisine": "mexican", + "ingredients": [ + "cayenne pepper", + "onions", + "red enchilada sauce", + "pork roast", + "cumin", + "cheddar cheese", + "corn tortillas" + ] + }, + { + "id": 32492, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "whipping cream", + "butter", + "bacon slices", + "grated parmesan cheese", + "spaghetti" + ] + }, + { + "id": 10236, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "pappadams" + ] + }, + { + "id": 24000, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "taco seasoning", + "onions", + "cheese", + "cream of mushroom soup", + "flour tortillas", + "sour cream", + "hot sauce", + "ground beef" + ] + }, + { + "id": 7181, + "cuisine": "indian", + "ingredients": [ + "unsweetened shredded dried coconut", + "cilantro leaves", + "canola oil", + "ginger", + "ground turmeric", + "eggplant", + "tamarind paste", + "chickpea flour", + "salt", + "asafetida" + ] + }, + { + "id": 24524, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "spinach", + "ground black pepper", + "nutmeg", + "pignolis", + "onions", + "water", + "raisins" + ] + }, + { + "id": 49600, + "cuisine": "southern_us", + "ingredients": [ + "seedless raspberry jam", + "large egg yolks", + "cake flour", + "pure vanilla extract", + "large egg whites", + "baking powder", + "grated coconut", + "unsalted butter", + "salt", + "unsweetened coconut milk", + "milk", + "granulated sugar", + "confectioners sugar" + ] + }, + { + "id": 18307, + "cuisine": "italian", + "ingredients": [ + "avocado", + "shaved parmesan cheese", + "olive oil", + "gnocchi", + "sunflower seeds", + "green garlic", + "coarse salt", + "fresh basil leaves" + ] + }, + { + "id": 8952, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "boneless skinless chicken breasts", + "oyster sauce", + "ground black pepper", + "salt", + "soy sauce", + "sesame oil", + "sliced mushrooms", + "white vinegar", + "green onions", + "peanut oil" + ] + }, + { + "id": 3155, + "cuisine": "jamaican", + "ingredients": [ + "unsweetened coconut milk", + "large garlic cloves", + "coarse salt", + "scallions", + "red kidnei beans, rins and drain", + "freshly ground pepper", + "chopped fresh thyme", + "long-grain rice" + ] + }, + { + "id": 39420, + "cuisine": "greek", + "ingredients": [ + "tomato purée", + "feta cheese", + "salt", + "crushed tomatoes", + "chicken breasts", + "onions", + "water", + "zucchini", + "green pepper", + "olive oil", + "garlic" + ] + }, + { + "id": 18824, + "cuisine": "jamaican", + "ingredients": [ + "ground nutmeg", + "cinnamon sticks", + "sugar", + "salt", + "cold milk", + "vanilla extract", + "cornmeal", + "evaporated milk", + "berries" + ] + }, + { + "id": 24907, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "hand", + "oil", + "pork belly", + "garlic", + "cabbage", + "soy sauce", + "Shaoxing wine", + "chinese black vinegar", + "sugar", + "water", + "scallions" + ] + }, + { + "id": 23618, + "cuisine": "japanese", + "ingredients": [ + "rice vinegar", + "sugar", + "sake", + "sushi rice" + ] + }, + { + "id": 28085, + "cuisine": "british", + "ingredients": [ + "milk", + "salt", + "instant yeast", + "bread flour", + "sugar", + "large eggs", + "semolina", + "softened butter" + ] + }, + { + "id": 19194, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "vanilla extract", + "semi-sweet chocolate morsels", + "baking powder", + "sour cream", + "brown sugar", + "all-purpose flour", + "butter", + "white sugar" + ] + }, + { + "id": 16105, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "sesame oil", + "fresh ginger", + "spring onions", + "rice", + "soy sauce", + "parsley leaves", + "vegetable oil", + "light brown sugar", + "ground black pepper", + "chicken thigh fillets" + ] + }, + { + "id": 10163, + "cuisine": "italian", + "ingredients": [ + "bread", + "roasted red peppers", + "salt", + "fat free yogurt", + "low-fat mayonnaise", + "fresh lemon juice", + "black pepper", + "romaine lettuce leaves", + "diced celery", + "pesto", + "chicken breasts", + "chopped walnuts" + ] + }, + { + "id": 2644, + "cuisine": "french", + "ingredients": [ + "clove", + "butter", + "fat skimmed chicken broth", + "chopped parsley", + "bay leaves", + "salt", + "carrots", + "grated lemon peel", + "mushrooms", + "veal shoulder", + "corn starch", + "black peppercorns", + "whipping cream", + "lemon juice", + "onions" + ] + }, + { + "id": 14092, + "cuisine": "moroccan", + "ingredients": [ + "fat free less sodium chicken broth", + "chicken breast halves", + "all-purpose flour", + "ground cumin", + "ground cinnamon", + "olive oil", + "paprika", + "couscous", + "water", + "large garlic cloves", + "chickpeas", + "green olives", + "mint leaves", + "lemon slices", + "onions" + ] + }, + { + "id": 5246, + "cuisine": "indian", + "ingredients": [ + "cilantro stems", + "white peppercorns", + "boneless chicken skinless thigh", + "dark brown sugar", + "fish sauce", + "garlic", + "ground turmeric", + "coriander seeds", + "oyster sauce" + ] + }, + { + "id": 47818, + "cuisine": "mexican", + "ingredients": [ + "quinoa", + "cayenne pepper", + "ground cumin", + "black beans", + "vegetable broth", + "onions", + "vegetable oil", + "frozen corn kernels", + "salt and ground black pepper", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 21174, + "cuisine": "japanese", + "ingredients": [ + "sweetened condensed milk", + "granulated sugar", + "water", + "ice", + "strawberries" + ] + }, + { + "id": 25546, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "corn starch", + "sesame seeds", + "fresh orange juice", + "large egg whites", + "coarse salt", + "medium shrimp", + "sugar", + "ground pepper", + "scallions" + ] + }, + { + "id": 46407, + "cuisine": "chinese", + "ingredients": [ + "red pepper", + "tomato ketchup", + "sugar pea", + "malt vinegar", + "juice", + "roasted cashews", + "pineapple", + "garlic cloves", + "boneless chicken breast", + "dark muscovado sugar", + "onions" + ] + }, + { + "id": 39663, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "beef broth", + "long grain white rice", + "shiitake", + "red pepper", + "celery", + "soy sauce", + "sirloin steak", + "corn starch", + "sugar", + "vegetable oil", + "chinese cabbage" + ] + }, + { + "id": 47616, + "cuisine": "italian", + "ingredients": [ + "clove", + "water", + "chili powder", + "onions", + "tomatoes", + "garam masala", + "cilantro leaves", + "pasta", + "olive oil", + "salt", + "ground turmeric", + "sugar", + "coriander powder", + "jeera" + ] + }, + { + "id": 38193, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "purple onion", + "fresh lemon juice", + "ground cumin", + "large garlic cloves", + "grated lemon zest", + "rotini", + "baby spinach leaves", + "crushed red pepper flakes", + "chickpeas", + "lowfat plain greekstyl yogurt", + "mint leaves", + "salt", + "shrimp" + ] + }, + { + "id": 6218, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "bay leaves", + "heavy cream", + "cayenne pepper", + "cumin", + "tomato purée", + "garam masala", + "cinnamon", + "garlic", + "chopped parsley", + "fresh ginger", + "boneless skinless chicken breasts", + "paprika", + "corn starch", + "plain yogurt", + "ground black pepper", + "boneless skinless chicken tenderloins", + "salt", + "onions" + ] + }, + { + "id": 30502, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "ground red pepper", + "all-purpose flour", + "celery", + "water", + "garlic", + "okra", + "sausage links", + "cooked chicken", + "green pepper", + "onions", + "ground black pepper", + "salt", + "oil" + ] + }, + { + "id": 24298, + "cuisine": "british", + "ingredients": [ + "olive oil", + "ale", + "garlic cloves", + "onions", + "whole grain dijon mustard", + "chopped fresh thyme", + "corn starch", + "kosher salt", + "ground black pepper", + "greek style plain yogurt", + "low sodium beef broth", + "prepared horseradish", + "yukon gold potatoes", + "sausages", + "low-fat milk" + ] + }, + { + "id": 10137, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "butter", + "coconut milk", + "any", + "curry", + "olive oil", + "ginger", + "chicken", + "chicken stock", + "russet potatoes", + "yellow onion" + ] + }, + { + "id": 17924, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "lime wedges", + "carrots", + "dried oregano", + "chipotle chile", + "salsa verde", + "beef rib short", + "corn tortillas", + "white onion", + "bay leaves", + "garlic cloves", + "onions", + "celery ribs", + "pepper", + "cilantro sprigs", + "ancho chile pepper", + "ground cumin" + ] + }, + { + "id": 6749, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "old bay seasoning", + "salt", + "water", + "bay leaves", + "garlic", + "peppercorns", + "vinegar", + "worcestershire sauce", + "lemon juice", + "cayenne", + "lemon", + "shells", + "large shrimp" + ] + }, + { + "id": 35905, + "cuisine": "korean", + "ingredients": [ + "chile paste", + "soy sauce", + "lemon juice", + "ground ginger", + "onion powder", + "water", + "white sugar" + ] + }, + { + "id": 6337, + "cuisine": "italian", + "ingredients": [ + "orange bell pepper", + "chopped cilantro", + "purple onion", + "barbecue sauce", + "chicken", + "pizza crust", + "shredded cheese" + ] + }, + { + "id": 17618, + "cuisine": "indian", + "ingredients": [ + "red cabbage", + "cardamom pods", + "black peppercorns", + "fine sea salt", + "onions", + "coriander seeds", + "fenugreek seeds", + "ground turmeric", + "fennel seeds", + "garlic", + "cumin seed" + ] + }, + { + "id": 31065, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "cooking wine", + "minced garlic", + "vegetable oil", + "fresh parsley", + "kosher salt", + "grated parmesan cheese", + "all-purpose flour", + "water", + "button mushrooms" + ] + }, + { + "id": 666, + "cuisine": "indian", + "ingredients": [ + "almonds", + "saffron", + "sugar", + "curds", + "pistachios", + "milk", + "ground cardamom" + ] + }, + { + "id": 23954, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "lime", + "cilantro", + "orange juice", + "ground cumin", + "sweetener", + "chili powder", + "purple onion", + "cooked quinoa", + "black beans", + "orange segments", + "extra-virgin olive oil", + "mixed greens", + "avocado", + "fresh cilantro", + "sea salt", + "hot sauce", + "canned corn" + ] + }, + { + "id": 4142, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "garlic", + "fresh parsley", + "anchovy paste", + "freshly ground pepper", + "kosher salt", + "anchovy fillets", + "capers", + "cornichons", + "fresh lemon juice" + ] + }, + { + "id": 29229, + "cuisine": "southern_us", + "ingredients": [ + "lime", + "butter", + "coconut milk", + "lime zest", + "large eggs", + "cream of coconut", + "coconut flakes", + "pies", + "heavy whipping cream", + "granulated sugar", + "vanilla extract" + ] + }, + { + "id": 2725, + "cuisine": "french", + "ingredients": [ + "salt", + "unsalted butter", + "baking potatoes", + "black pepper" + ] + }, + { + "id": 46771, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "plum tomatoes", + "pizza doughs", + "black olives", + "mozzarella cheese", + "sliced mushrooms" + ] + }, + { + "id": 12434, + "cuisine": "italian", + "ingredients": [ + "whole wheat baguette", + "cracked black pepper", + "olive oil", + "heirloom tomatoes", + "cucumber", + "fresh basil", + "red wine vinegar", + "purple onion", + "basil leaves", + "sea salt" + ] + }, + { + "id": 18060, + "cuisine": "french", + "ingredients": [ + "green leaf lettuce", + "scallions", + "kosher salt", + "extra-virgin olive oil", + "flat leaf parsley", + "baguette", + "beets", + "black pepper", + "tapenade", + "tuna" + ] + }, + { + "id": 31657, + "cuisine": "cajun_creole", + "ingredients": [ + "shrimp tails", + "frozen corn", + "green bell pepper", + "white rice", + "carrots", + "diced tomatoes", + "creole seasoning", + "sausage links", + "garlic", + "onions" + ] + }, + { + "id": 5362, + "cuisine": "mexican", + "ingredients": [ + "country crock honey spread", + "chili powder", + "lime juice", + "chopped cilantro fresh", + "red bell pepper, sliced", + "garlic", + "sweet onion", + "ground cumin" + ] + }, + { + "id": 30710, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "shredded lettuce", + "cider vinegar", + "sour cream", + "pot roast", + "salsa", + "avocado", + "chili powder", + "corn tortillas" + ] + }, + { + "id": 43544, + "cuisine": "greek", + "ingredients": [ + "ground cloves", + "almonds", + "salt", + "water", + "unsalted butter", + "grated nutmeg", + "sugar", + "honey", + "lemon", + "cinnamon sticks", + "phyllo dough", + "orange", + "cinnamon", + "walnuts" + ] + }, + { + "id": 895, + "cuisine": "moroccan", + "ingredients": [ + "chicken stock", + "olive oil", + "purple onion", + "lamb leg", + "fresh coriander", + "harissa paste", + "garlic cloves", + "preserved lemon", + "dried apricot", + "chickpeas", + "tomatoes on the vine", + "ginger", + "cinnamon sticks" + ] + }, + { + "id": 7133, + "cuisine": "italian", + "ingredients": [ + "great northern beans", + "ground black pepper", + "onions", + "artichoke hearts", + "garlic cloves", + "olive oil", + "salt", + "fresh basil", + "fresh parmesan cheese", + "gemelli" + ] + }, + { + "id": 25039, + "cuisine": "jamaican", + "ingredients": [ + "olive oil", + "habanero pepper", + "light brown sugar", + "ground black pepper", + "skirt steak", + "garlic powder", + "ground allspice", + "kosher salt", + "jamaican jerk season" + ] + }, + { + "id": 1138, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "ground red pepper", + "whipping cream", + "shrimp", + "cooked ham", + "vermouth", + "vegetable oil", + "all-purpose flour", + "catfish fillets", + "large eggs", + "lemon wedge", + "salt", + "minced garlic", + "green onions", + "butter", + "lemon juice" + ] + }, + { + "id": 24900, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "hot dog bun", + "all beef hot dogs", + "roasted red peppers", + "garlic", + "sherry wine vinegar", + "fresh parsley", + "manchego cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 21962, + "cuisine": "greek", + "ingredients": [ + "walnuts", + "honey", + "berries", + "nonfat plain greek yogurt" + ] + }, + { + "id": 40464, + "cuisine": "italian", + "ingredients": [ + "white wine", + "fresh thyme leaves", + "organic vegetable broth", + "olive oil", + "purple onion", + "shiitake mushroom caps", + "black pepper", + "butternut squash", + "pearl barley", + "kosher salt", + "cheese", + "garlic cloves" + ] + }, + { + "id": 39260, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "olive oil", + "ancho powder", + "sour cream", + "ground cumin", + "cheddar cheese", + "corn chips", + "beef broth", + "chopped cilantro fresh", + "avocado", + "kidney beans", + "tomatoes with juice", + "onions", + "minced garlic", + "lean ground beef", + "juice", + "dried oregano" + ] + }, + { + "id": 25921, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "mirin", + "olive oil", + "sesame oil", + "honey", + "tuna steaks", + "wasabi paste", + "sesame seeds", + "rice vinegar" + ] + }, + { + "id": 12445, + "cuisine": "british", + "ingredients": [ + "ground pepper", + "extra-virgin olive oil", + "celery", + "heavy cream", + "fresh lemon juice", + "red wine vinegar", + "chopped walnuts", + "dried currants", + "apples", + "stilton cheese" + ] + }, + { + "id": 34887, + "cuisine": "french", + "ingredients": [ + "stock", + "beef", + "shallots", + "beef tenderloin", + "bay leaf", + "black peppercorns", + "water", + "arrowroot", + "watercress", + "beef broth", + "marrow", + "black pepper", + "fresh thyme", + "vegetable oil", + "salt", + "Madeira", + "unsalted butter", + "mushrooms", + "dry red wine", + "carrots" + ] + }, + { + "id": 43936, + "cuisine": "brazilian", + "ingredients": [ + "coconut flakes", + "almond milk", + "açai powder", + "fruit", + "frozen banana", + "frozen mixed berries" + ] + }, + { + "id": 17554, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "broccoli florets", + "stir fry sauce", + "oil", + "dark soy sauce", + "light soy sauce", + "flank steak", + "salt", + "water", + "Shaoxing wine", + "garlic", + "corn starch", + "sugar", + "fresh ginger", + "sesame oil", + "chinese five-spice powder" + ] + }, + { + "id": 38979, + "cuisine": "indian", + "ingredients": [ + "clove", + "raisins", + "basmati rice", + "bay leaves", + "cinnamon sticks", + "saffron threads", + "butter", + "cashew nuts", + "water", + "salt" + ] + }, + { + "id": 7288, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "green onions", + "corn tortillas", + "taco seasoning mix", + "black olives", + "plum tomatoes", + "refried beans", + "vegetable oil", + "ground beef", + "avocado", + "diced green chilies", + "sour cream" + ] + }, + { + "id": 8563, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "lemon juice", + "english cucumber", + "fresh mint", + "salt", + "greek yogurt", + "fresh dill", + "garlic cloves" + ] + }, + { + "id": 43905, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "whipped cream", + "thai chile", + "salt", + "mustard seeds", + "tomatoes", + "garam masala", + "ginger", + "paneer", + "cumin seed", + "water", + "cilantro", + "garlic", + "cayenne pepper", + "ground cumin", + "tumeric", + "ground black pepper", + "peas", + "purple onion", + "oil" + ] + }, + { + "id": 29545, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "green onions", + "salt", + "ground black pepper", + "lumpia wrappers", + "onions", + "garlic powder", + "parsley", + "carrots", + "cooking oil", + "ground pork" + ] + }, + { + "id": 43329, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "zucchini", + "chopped fresh mint", + "olive oil", + "salt", + "yellow squash", + "balsamic vinegar", + "fresh basil", + "eggplant", + "garlic cloves" + ] + }, + { + "id": 9146, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "butter", + "sharp cheddar cheese", + "roasted tomatoes", + "jalapeno chilies", + "penne pasta", + "garlic cloves", + "milk", + "all-purpose flour", + "ground coriander", + "ground cumin", + "black pepper", + "chili powder", + "yellow onion", + "ground beef" + ] + }, + { + "id": 44891, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "Louisiana Hot Sauce", + "flour", + "cajun seasoning", + "salt", + "ancho chile pepper", + "diced onions", + "andouille sausage", + "olive oil", + "red wine vinegar", + "garlic", + "diced celery", + "green bell pepper", + "lime", + "vegetable oil", + "diced tomatoes", + "beer", + "red chili powder", + "pepper", + "ground sirloin", + "guajillo", + "beef broth", + "cumin" + ] + }, + { + "id": 22784, + "cuisine": "brazilian", + "ingredients": [ + "rib", + "olive oil", + "collard greens", + "garlic cloves" + ] + }, + { + "id": 33422, + "cuisine": "british", + "ingredients": [ + "warm water", + "oat flour", + "active dry yeast", + "white sugar", + "milk", + "salt", + "whole wheat flour" + ] + }, + { + "id": 9480, + "cuisine": "british", + "ingredients": [ + "sugar", + "lemon peel", + "pears", + "powdered sugar", + "vanilla beans", + "pound cake", + "sliced almonds", + "whipping cream", + "water", + "vanilla extract" + ] + }, + { + "id": 39148, + "cuisine": "japanese", + "ingredients": [ + "water", + "ground pork", + "green onions", + "tofu", + "sesame oil", + "miso paste" + ] + }, + { + "id": 42530, + "cuisine": "vietnamese", + "ingredients": [ + "hard-boiled egg", + "pork belly", + "cracked black pepper", + "fish sauce", + "shallots", + "coconut", + "garlic cloves" + ] + }, + { + "id": 23252, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "vegetable oil", + "garlic", + "oil", + "garam masala", + "cilantro", + "all-purpose flour", + "coriander seeds", + "lemon", + "salt", + "onions", + "red chili powder", + "potatoes", + "ginger", + "green chilies" + ] + }, + { + "id": 11630, + "cuisine": "indian", + "ingredients": [ + "water", + "oil", + "kingfish", + "garlic paste", + "chili powder", + "coconut milk", + "ginger paste", + "kokum", + "fenugreek", + "black mustard seeds", + "ground turmeric", + "fresh curry leaves", + "salt", + "onions" + ] + }, + { + "id": 37675, + "cuisine": "greek", + "ingredients": [ + "plain low-fat yogurt", + "garlic cloves", + "olive oil", + "cucumber", + "salt", + "fresh parsley", + "black pepper", + "fresh lemon juice" + ] + }, + { + "id": 19295, + "cuisine": "british", + "ingredients": [ + "large garlic cloves", + "unsalted butter", + "stilton cheese", + "mushrooms", + "heavy cream" + ] + }, + { + "id": 38442, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "coarse salt", + "salt", + "olive oil", + "all purpose unbleached flour", + "soft fresh goat cheese", + "warm water", + "green onions", + "crushed red pepper", + "dry yeast", + "extra-virgin olive oil" + ] + }, + { + "id": 34284, + "cuisine": "chinese", + "ingredients": [ + "chestnuts", + "shiitake", + "vegetable oil", + "scallions", + "sugar", + "water chestnuts", + "salt", + "boiling water", + "soy sauce", + "shallots", + "freshly ground pepper", + "sweet rice", + "chinese sausage", + "cooking wine", + "chopped cilantro" + ] + }, + { + "id": 16322, + "cuisine": "italian", + "ingredients": [ + "baguette", + "grated lemon zest", + "mint leaves", + "garlic cloves", + "pecorino cheese", + "extra-virgin olive oil", + "fresh lemon juice", + "baby arugula", + "fresh fava bean" + ] + }, + { + "id": 1805, + "cuisine": "italian", + "ingredients": [ + "tomato purée", + "garlic", + "shallots", + "chopped tomatoes", + "dried oregano", + "extra-virgin olive oil" + ] + }, + { + "id": 17193, + "cuisine": "jamaican", + "ingredients": [ + "ground ginger", + "black pepper", + "habanero pepper", + "crushed red pepper flakes", + "smoked paprika", + "brown sugar", + "ground nutmeg", + "chili powder", + "peanut oil", + "allspice", + "ground cloves", + "fresh thyme", + "cinnamon", + "garlic cloves", + "ground cumin", + "fresh basil", + "lime juice", + "green onions", + "salt", + "coriander" + ] + }, + { + "id": 4018, + "cuisine": "cajun_creole", + "ingredients": [ + "pasta", + "parmesan cheese", + "ground beef", + "cumin", + "dried thyme", + "cayenne pepper", + "tagliatelle", + "crushed tomatoes", + "onion powder", + "onions", + "dried rosemary", + "garlic powder", + "red bell pepper", + "dried oregano" + ] + }, + { + "id": 33586, + "cuisine": "cajun_creole", + "ingredients": [ + "celery salt", + "andouille sausage", + "schmaltz", + "onion powder", + "worcestershire sauce", + "cayenne pepper", + "sweet paprika", + "cornmeal", + "green bell pepper", + "baguette", + "boneless chicken breast", + "buttermilk", + "all-purpose flour", + "okra", + "bay leaf", + "tomatoes", + "pepper", + "ground black pepper", + "spices", + "salt", + "ground allspice", + "celery", + "canola oil", + "chicken stock", + "kosher salt", + "garlic powder", + "Tabasco Pepper Sauce", + "garlic", + "rice", + "thyme", + "onions" + ] + }, + { + "id": 476, + "cuisine": "mexican", + "ingredients": [ + "seasoning salt", + "chuck roast", + "paprika", + "beer", + "green bell pepper", + "ground black pepper", + "chile pepper", + "cayenne pepper", + "onions", + "celery salt", + "garlic powder", + "chili powder", + "garlic", + "flavoring", + "dried tarragon leaves", + "hot pepper sauce", + "worcestershire sauce", + "mustard powder", + "dried parsley" + ] + }, + { + "id": 40180, + "cuisine": "mexican", + "ingredients": [ + "butter", + "pork sausages", + "processed cheese", + "green chilies", + "eggs", + "salsa", + "large flour tortillas", + "onions" + ] + }, + { + "id": 42643, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "cornbread mix", + "butter", + "shrimp", + "pepper sauce", + "milk", + "barbecue sauce", + "yellow bell pepper", + "red bell pepper", + "country ham", + "olive oil", + "chopped fresh thyme", + "diced celery", + "thyme sprigs", + "diced onions", + "pepper", + "large eggs", + "buttermilk", + "chopped pecans" + ] + }, + { + "id": 8746, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "onions", + "poblano peppers", + "olive oil", + "ground cumin", + "fresh tomatoes", + "sour cream" + ] + }, + { + "id": 34632, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "kosher salt", + "chipotles in adobo" + ] + }, + { + "id": 6655, + "cuisine": "spanish", + "ingredients": [ + "brandy", + "lemon", + "ice cubes", + "superfine sugar", + "lemon juice", + "orange", + "orange juice", + "cointreau", + "zinfandel", + "club soda" + ] + }, + { + "id": 5130, + "cuisine": "french", + "ingredients": [ + "baking soda", + "vanilla extract", + "chopped walnuts", + "eggs", + "unsalted butter", + "all-purpose flour", + "confectioners sugar", + "ground cinnamon", + "ground nutmeg", + "salt", + "hot water", + "diced apples", + "butter", + "cream cheese", + "white sugar" + ] + }, + { + "id": 31477, + "cuisine": "italian", + "ingredients": [ + "rocket leaves", + "large eggs", + "flat leaf parsley", + "sourdough bread", + "extra-virgin olive oil", + "prosciutto", + "onion tops", + "parsley sprigs", + "coarse salt" + ] + }, + { + "id": 40078, + "cuisine": "irish", + "ingredients": [ + "mashed potatoes", + "potatoes", + "pepper", + "all-purpose flour", + "milk", + "eggs", + "salt" + ] + }, + { + "id": 32031, + "cuisine": "british", + "ingredients": [ + "milk", + "pepper", + "eggs", + "salt", + "plain flour", + "sunflower oil" + ] + }, + { + "id": 20629, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "paprika", + "bone in chicken thighs", + "reduced sodium chicken broth", + "garlic powder", + "garlic cloves", + "olive oil", + "dri leav thyme", + "pinenuts", + "ground black pepper", + "escarole" + ] + }, + { + "id": 3680, + "cuisine": "southern_us", + "ingredients": [ + "dijon mustard", + "carrots", + "kosher salt", + "vegetable oil", + "cabbage", + "sugar", + "apple cider vinegar", + "celery seed", + "ground black pepper", + "dry mustard" + ] + }, + { + "id": 7077, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "garlic cloves", + "pepper", + "butter", + "kale", + "salt", + "turnip greens", + "mustard greens" + ] + }, + { + "id": 3084, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "pepper", + "peas", + "squash", + "tumeric", + "olive oil", + "cayenne pepper", + "ground lamb", + "ground ginger", + "lamb stock", + "hungarian paprika", + "flat leaf parsley", + "eggs", + "fresh coriander", + "salt", + "onions" + ] + }, + { + "id": 23122, + "cuisine": "british", + "ingredients": [ + "milk", + "paprika", + "onions", + "eggs", + "crushed garlic", + "sharp cheddar cheese", + "white bread", + "egg yolks", + "salt", + "pepper", + "butter", + "chopped parsley" + ] + }, + { + "id": 4164, + "cuisine": "mexican", + "ingredients": [ + "canned black beans", + "garlic", + "olive oil", + "cumin seed", + "pepper", + "salt", + "tomato juice", + "chopped cilantro" + ] + }, + { + "id": 43204, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "ground pork", + "chicken stock", + "light soy sauce", + "scallions", + "minced ginger", + "bean sauce", + "dark soy sauce", + "vermicelli", + "oil" + ] + }, + { + "id": 24597, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "ground red pepper", + "salt", + "black pepper", + "part-skim mozzarella cheese", + "dry red wine", + "italian seasoning", + "tomatoes", + "olive oil", + "basil", + "boneless skinless chicken breast halves", + "seasoned bread crumbs", + "grated parmesan cheese", + "linguine" + ] + }, + { + "id": 37655, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "jalapeno chilies", + "salt", + "carrots", + "chopped cilantro", + "crushed tomatoes", + "star anise", + "freshly ground pepper", + "sliced shallots", + "low sodium beef stock", + "brown sugar", + "shallots", + "tortilla shells", + "cinnamon sticks", + "onions", + "five spice", + "boneless chuck roast", + "garlic", + "oil", + "bay leaf", + "sliced green onions" + ] + }, + { + "id": 11815, + "cuisine": "cajun_creole", + "ingredients": [ + "white pepper", + "crushed tomatoes", + "bay leaves", + "all-purpose flour", + "fresh pineapple", + "black pepper", + "minced garlic", + "chopped green bell pepper", + "salt", + "medium shrimp", + "chicken broth", + "white wine", + "dried thyme", + "chili powder", + "chopped onion", + "mango", + "chicken-apple sausage", + "diced apples", + "olive oil", + "red pepper flakes", + "long-grain rice" + ] + }, + { + "id": 15715, + "cuisine": "mexican", + "ingredients": [ + "vidalia onion", + "lime", + "cilantro", + "monterey jack", + "tomatoes", + "grilled chicken breasts", + "jalapeno chilies", + "salt", + "coconut oil", + "poblano peppers", + "purple onion", + "pineapple chunks", + "pepper", + "cinnamon", + "strawberries" + ] + }, + { + "id": 44357, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "onions", + "kosher salt", + "mango chutney", + "mashed potatoes", + "olive oil", + "frozen peas", + "pepper", + "refrigerated piecrusts" + ] + }, + { + "id": 26581, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "fresh basil", + "garlic", + "plum tomatoes", + "zucchini", + "bow-tie pasta", + "olive oil", + "wine vinegar" + ] + }, + { + "id": 8674, + "cuisine": "thai", + "ingredients": [ + "water", + "lime wedges", + "hot chili sauce", + "peanuts", + "garlic", + "beansprouts", + "fresh cilantro", + "rice noodles", + "shrimp", + "eggs", + "cooking oil", + "sauce", + "snow peas" + ] + }, + { + "id": 29689, + "cuisine": "vietnamese", + "ingredients": [ + "red pepper flakes", + "green beans", + "pepper", + "salt", + "soy sauce", + "ginger", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 38958, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "blue cheese", + "prosciutto", + "polenta", + "fat free milk", + "dry bread crumbs", + "cooking spray" + ] + }, + { + "id": 44589, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "green onions", + "spaghetti", + "sesame seeds", + "salt", + "minced garlic", + "red pepper", + "broccoli florets", + "oil" + ] + }, + { + "id": 39623, + "cuisine": "british", + "ingredients": [ + "beef drippings", + "fresh thyme", + "vegetable oil", + "all-purpose flour", + "top round roast", + "ground black pepper", + "onion powder", + "salt", + "oregano", + "dried thyme", + "large eggs", + "paprika", + "essence", + "black pepper", + "garlic powder", + "whole milk", + "garlic", + "cayenne pepper" + ] + }, + { + "id": 14217, + "cuisine": "japanese", + "ingredients": [ + "granulated sugar", + "heavy cream", + "matcha green tea powder", + "corn starch", + "large eggs", + "cake flour", + "mascarpone", + "butter", + "confectioners sugar" + ] + }, + { + "id": 16669, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "zucchini", + "garlic", + "olive oil", + "dry white wine", + "fresh parsley", + "arborio rice", + "feta cheese", + "fresh green bean", + "onions", + "sugar pea", + "broccoli florets", + "celery" + ] + }, + { + "id": 26866, + "cuisine": "thai", + "ingredients": [ + "fresh ginger root", + "coconut cream", + "vegetable oil", + "coriander", + "prawns", + "onions", + "chopped tomatoes", + "Thai red curry paste" + ] + }, + { + "id": 30256, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "large garlic cloves", + "olive oil", + "mozzarella cheese", + "large eggs" + ] + }, + { + "id": 47663, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "whole milk", + "salt", + "fresh lemon juice", + "unsalted butter", + "shallots", + "crabmeat", + "pompano fillets", + "ground black pepper", + "dry white wine", + "all-purpose flour", + "fresh parsley", + "large eggs", + "whipping cream", + "black cod", + "grated lemon peel" + ] + }, + { + "id": 104, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "thai basil", + "ginger", + "soy sauce", + "Shaoxing wine", + "scallions", + "red chili peppers", + "sichuanese chili paste", + "garlic", + "white pepper", + "sesame oil", + "chicken" + ] + }, + { + "id": 8426, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "scallions", + "milk", + "salt", + "sugar", + "vegetable shortening", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 17666, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "fresh ginger", + "rice", + "chopped cilantro fresh", + "minced garlic", + "lime wedges", + "fresh lime juice", + "chicken breast tenders", + "light coconut milk", + "onions", + "sugar", + "Sriracha", + "corn starch", + "canola oil" + ] + }, + { + "id": 37785, + "cuisine": "japanese", + "ingredients": [ + "fat free less sodium chicken broth", + "soba", + "low sodium soy sauce", + "soft tofu", + "sliced green onions", + "mirin", + "nori", + "sugar", + "toasted sesame seeds" + ] + }, + { + "id": 29730, + "cuisine": "mexican", + "ingredients": [ + "honey", + "salt", + "chipotle peppers", + "extra large shrimp", + "rice vinegar", + "adobo sauce", + "cilantro", + "fresh lemon juice", + "canola oil", + "pancetta", + "garlic", + "fresh lime juice" + ] + }, + { + "id": 13432, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "ginger", + "salt", + "garam masala", + "chili powder", + "garlic", + "ground turmeric", + "ground black pepper", + "baby spinach", + "purple onion", + "ground cumin", + "leaves", + "serrano peppers", + "kasuri methi", + "ghee" + ] + }, + { + "id": 26669, + "cuisine": "french", + "ingredients": [ + "lemon zest", + "salt", + "cinnamon sticks", + "calvados", + "vegetable shortening", + "fresh lemon juice", + "sugar", + "golden delicious apples", + "all-purpose flour", + "unsalted butter", + "ice water", + "accompaniment" + ] + }, + { + "id": 48644, + "cuisine": "british", + "ingredients": [ + "egg yolks", + "stout", + "cheddar cheese", + "butter", + "sourdough", + "pepper", + "worcestershire sauce", + "chives", + "dry mustard" + ] + }, + { + "id": 42184, + "cuisine": "irish", + "ingredients": [ + "Guinness Beer", + "butter", + "curds", + "brown sugar", + "flour", + "garlic", + "corned beef", + "whole grain mustard", + "worcestershire sauce", + "onions", + "pepper", + "french fries", + "salt" + ] + }, + { + "id": 3517, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "garlic", + "chickpeas", + "olive oil", + "salt", + "pepper", + "crushed red pepper", + "onions", + "parmesan cheese", + "broccoli" + ] + }, + { + "id": 3907, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "rice vinegar", + "canola oil", + "hot chili oil", + "garlic cloves", + "soy sauce", + "scallions", + "sesame oil", + "noodles" + ] + }, + { + "id": 23017, + "cuisine": "mexican", + "ingredients": [ + "liquid smoke", + "vegetable oil", + "onions", + "poblano peppers", + "salt", + "green bell pepper", + "garlic", + "plum tomatoes", + "white vinegar", + "chile pepper", + "cilantro leaves" + ] + }, + { + "id": 3228, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "mirin", + "onions", + "eggs", + "ground chicken", + "ginger", + "soy sauce", + "green onions", + "sake", + "olive oil", + "rice" + ] + }, + { + "id": 20506, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "cold water", + "yeast", + "white flour", + "extra sharp cheddar cheese", + "salt" + ] + }, + { + "id": 37324, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "egg whites", + "unsalted butter", + "juice", + "peaches", + "fine sea salt", + "granulated sugar", + "confectioners sugar" + ] + }, + { + "id": 41758, + "cuisine": "vietnamese", + "ingredients": [ + "mayonaise", + "Sriracha", + "ground pork", + "carrots", + "ground black pepper", + "cilantro stems", + "salt", + "coarse kosher salt", + "sugar", + "jalapeno chilies", + "cilantro sprigs", + "corn starch", + "fish sauce", + "radishes", + "basil", + "garlic cloves", + "onions" + ] + }, + { + "id": 31864, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "flat leaf parsley", + "anchovy fillets", + "garlic cloves", + "crushed red pepper", + "plum tomatoes" + ] + }, + { + "id": 18912, + "cuisine": "southern_us", + "ingredients": [ + "bananas", + "corn starch", + "sugar", + "vanilla", + "stevia extract", + "cookies", + "soy milk", + "rum extract" + ] + }, + { + "id": 20688, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "cooking spray", + "chopped fresh thyme", + "pimento stuffed olives", + "eggplant", + "balsamic vinegar", + "chopped onion", + "tomatoes", + "french bread", + "hard salami", + "provolone cheese", + "olive oil", + "chicken breasts", + "pepperoncini" + ] + }, + { + "id": 2925, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "diced tomatoes", + "taco seasoning", + "jack cheese", + "flour tortillas", + "frozen corn", + "onions", + "low-fat sour cream", + "chopped green chilies", + "salt", + "garlic cloves", + "safflower oil", + "boneless skinless chicken breasts", + "sharp cheddar cheese" + ] + }, + { + "id": 47847, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "carrots", + "soy sauce", + "chopped celery", + "cooked rice", + "green onions", + "frozen peas", + "olive oil", + "chopped onion" + ] + }, + { + "id": 16512, + "cuisine": "southern_us", + "ingredients": [ + "frozen peaches", + "salt", + "eggs", + "butter", + "heavy whipping cream", + "water", + "vanilla extract", + "confectioners sugar", + "ground nutmeg", + "all-purpose flour" + ] + }, + { + "id": 43259, + "cuisine": "british", + "ingredients": [ + "milk", + "large eggs", + "all-purpose flour", + "ground black pepper", + "vegetable oil", + "roast beef", + "large egg yolks", + "parsley", + "sour cream", + "horseradish", + "parsley leaves", + "salt" + ] + }, + { + "id": 31757, + "cuisine": "indian", + "ingredients": [ + "coconut", + "salt", + "mustard seeds", + "masala", + "red chili powder", + "vegetables", + "fenugreek seeds", + "jaggery", + "curry leaves", + "pigeon peas", + "tamarind paste", + "ghee", + "asafetida", + "red chili peppers", + "garlic", + "rice", + "ground turmeric" + ] + }, + { + "id": 47915, + "cuisine": "french", + "ingredients": [ + "olive oil", + "fresh lemon juice", + "Belgian endive", + "chopped fresh chives", + "dijon mustard", + "celery seed", + "roquefort cheese", + "beets" + ] + }, + { + "id": 43297, + "cuisine": "spanish", + "ingredients": [ + "almonds", + "green onions", + "coarse kosher salt", + "crusty bread", + "ground black pepper", + "extra-virgin olive oil", + "chopped cilantro fresh", + "sherry vinegar", + "chicken breasts", + "fresh lime juice", + "minced garlic", + "roasted red peppers", + "spanish paprika" + ] + }, + { + "id": 38591, + "cuisine": "italian", + "ingredients": [ + "truffles", + "whole milk", + "all-purpose flour", + "large eggs", + "salt", + "unsalted butter", + "heavy cream", + "grated nutmeg", + "parmigiano reggiano cheese", + "cheese" + ] + }, + { + "id": 18426, + "cuisine": "greek", + "ingredients": [ + "grape tomatoes", + "feta cheese crumbles", + "deli ham", + "hummus", + "pepper", + "ripe olives", + "pita rounds", + "purple onion" + ] + }, + { + "id": 16936, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "cold water", + "all-purpose flour", + "unsalted butter" + ] + }, + { + "id": 40613, + "cuisine": "french", + "ingredients": [ + "sweet onion", + "butter", + "fresh parsley", + "french bread", + "beef broth", + "beef", + "cheese", + "dry white wine", + "apple juice" + ] + }, + { + "id": 3633, + "cuisine": "british", + "ingredients": [ + "brown sugar", + "flaked coconut", + "salt", + "boiling water", + "baking soda", + "dates", + "chopped walnuts", + "eggs", + "baking powder", + "vanilla extract", + "white sugar", + "cream", + "butter", + "all-purpose flour" + ] + }, + { + "id": 33198, + "cuisine": "british", + "ingredients": [ + "milk", + "unsalted butter", + "salt", + "baking soda", + "baking powder", + "dark brown sugar", + "honey", + "large eggs", + "all-purpose flour", + "molasses", + "ground nutmeg", + "ginger", + "oatmeal" + ] + }, + { + "id": 17145, + "cuisine": "thai", + "ingredients": [ + "pork", + "thai basil", + "crushed red pepper flakes", + "green chilies", + "snow peas", + "fish sauce", + "black pepper", + "water chestnuts", + "garlic", + "onions", + "soy sauce", + "zucchini", + "ginger", + "coconut milk", + "fresh tomatoes", + "water", + "bell pepper", + "broccoli", + "bamboo shoots" + ] + }, + { + "id": 20169, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "salt", + "ground beef", + "bay leaves", + "ham hock", + "water", + "garlic cloves", + "onions", + "cooked rice", + "onion powder", + "dried kidney beans" + ] + }, + { + "id": 45894, + "cuisine": "chinese", + "ingredients": [ + "sirloin", + "Shaoxing wine", + "oyster sauce", + "water", + "peanut oil", + "soy sauce", + "cracked black pepper", + "onions", + "honey", + "garlic cloves" + ] + }, + { + "id": 2309, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "low sodium black beans", + "whole wheat tortillas", + "shredded reduced fat cheddar cheese", + "frozen corn", + "boneless skinless chicken breasts", + "salsa" + ] + }, + { + "id": 6464, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "red bell pepper", + "salt", + "fresh lime juice", + "frozen corn kernels", + "chopped cilantro fresh", + "purple onion", + "field peas" + ] + }, + { + "id": 22083, + "cuisine": "indian", + "ingredients": [ + "bananas", + "clarified butter", + "batter", + "cardamom", + "baking soda", + "rice flour", + "grated coconut", + "rice", + "jaggery" + ] + }, + { + "id": 33211, + "cuisine": "french", + "ingredients": [ + "low-fat sour cream", + "shallots", + "pepper", + "salt", + "dry white wine", + "dried tarragon leaves", + "white wine vinegar" + ] + }, + { + "id": 35194, + "cuisine": "italian", + "ingredients": [ + "honey", + "chicken breasts", + "lemon juice", + "chicken stock", + "lemon zest", + "vegetable oil", + "unsalted butter", + "parsley", + "capers", + "flour", + "scallions" + ] + }, + { + "id": 4487, + "cuisine": "thai", + "ingredients": [ + "sugar", + "shallots", + "garlic cloves", + "eggs", + "unsalted roasted peanuts", + "vegetable oil", + "beansprouts", + "red chili peppers", + "rice noodles", + "shrimp", + "fish sauce", + "green onions", + "tamarind paste" + ] + }, + { + "id": 23567, + "cuisine": "brazilian", + "ingredients": [ + "black pepper", + "pork back ribs", + "butter", + "garlic cloves", + "sausage links", + "orange", + "bay leaves", + "diced yellow onion", + "black beans", + "olive oil", + "white rice", + "carne seca", + "unsalted chicken stock", + "kosher salt", + "lager beer", + "yellow onion", + "farina" + ] + }, + { + "id": 10957, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "flaked coconut", + "peanut butter", + "water", + "raisins", + "basmati rice", + "slivered almonds", + "sesame oil", + "curry paste", + "unsweetened coconut milk", + "lime", + "garlic" + ] + }, + { + "id": 24645, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "collard greens", + "bacon slices", + "fat free less sodium chicken broth", + "crushed red pepper", + "white vinegar", + "dry white wine", + "chopped onion" + ] + }, + { + "id": 11744, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "heavy cream", + "egg yolks", + "white sugar" + ] + }, + { + "id": 3649, + "cuisine": "italian", + "ingredients": [ + "table salt", + "grated parmesan cheese", + "frozen peas", + "olive oil", + "linguine", + "pinenuts", + "basil leaves", + "fresh peas", + "garlic cloves" + ] + }, + { + "id": 16493, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "boneless chicken skinless thigh", + "golden raisins", + "phyllo pastry", + "saffron threads", + "tumeric", + "olive oil", + "low salt chicken broth", + "chopped cilantro fresh", + "ground ginger", + "slivered almonds", + "unsalted butter", + "flat leaf parsley", + "powdered sugar", + "kosher salt", + "all-purpose flour", + "onions" + ] + }, + { + "id": 5405, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "pepper", + "green onions", + "garlic cloves", + "celery ribs", + "green bell pepper", + "crushed tomatoes", + "smoked sausage", + "red kidney beans", + "sugar", + "bay leaves", + "salt", + "cooked rice", + "water", + "vegetable oil", + "onions" + ] + }, + { + "id": 31832, + "cuisine": "japanese", + "ingredients": [ + "white pepper", + "Yuzukosho", + "brown sugar", + "mirin", + "miso paste", + "sake", + "flat iron steaks" + ] + }, + { + "id": 2973, + "cuisine": "italian", + "ingredients": [ + "garlic cloves", + "yukon gold potatoes", + "green beans", + "extra-virgin olive oil" + ] + }, + { + "id": 37813, + "cuisine": "mexican", + "ingredients": [ + "lime", + "tortilla chips", + "chopped cilantro fresh", + "chicken broth", + "garlic", + "chipotles in adobo", + "extra-virgin olive oil", + "hass avocado", + "boneless chicken skinless thigh", + "salt", + "onions" + ] + }, + { + "id": 23704, + "cuisine": "irish", + "ingredients": [ + "dried mint flakes", + "maple syrup", + "granny smith apples", + "red wine vinegar", + "white pepper", + "salt", + "diced onions", + "dried tart cherries", + "orange juice" + ] + }, + { + "id": 27871, + "cuisine": "indian", + "ingredients": [ + "moong dal", + "cumin seed", + "urad dal", + "chutney", + "yoghurt", + "oil", + "red chili powder", + "salt" + ] + }, + { + "id": 34679, + "cuisine": "southern_us", + "ingredients": [ + "ice cubes", + "hot water", + "sugar", + "tea bags", + "lemon" + ] + }, + { + "id": 47954, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "black-eyed peas", + "scallions", + "water", + "dill tips", + "extra-virgin olive oil" + ] + }, + { + "id": 12335, + "cuisine": "irish", + "ingredients": [ + "salt", + "potatoes", + "cabbage", + "pepper", + "onions", + "butter" + ] + }, + { + "id": 24540, + "cuisine": "italian", + "ingredients": [ + "brewed coffee", + "part-skim ricotta cheese", + "orange liqueur", + "fruit", + "butter", + "heavy whipping cream", + "semisweet chocolate", + "vanilla extract", + "confectioners sugar", + "pound cake mix", + "unsweetened chocolate", + "white sugar" + ] + }, + { + "id": 21566, + "cuisine": "italian", + "ingredients": [ + "spelt flour", + "water", + "eggs", + "vegetable oil" + ] + }, + { + "id": 16410, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "water", + "diced red onions", + "spices", + "raw cashews", + "nuts", + "grape tomatoes", + "corn kernels", + "apple cider vinegar", + "grapeseed oil", + "coconut aminos", + "cabbage leaves", + "lime", + "chili powder", + "lemon", + "salt", + "pepper", + "leaves", + "lime wedges", + "sea salt", + "chopped cilantro" + ] + }, + { + "id": 28835, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "sauce", + "water", + "dashi powder", + "cabbage", + "flour" + ] + }, + { + "id": 26141, + "cuisine": "mexican", + "ingredients": [ + "hot water", + "masa harina" + ] + }, + { + "id": 30116, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "jalapeno chilies", + "purple onion", + "fresh lemon juice", + "fresh ginger", + "corn oil", + "indian flat bread", + "ground cumin", + "unsweetened coconut milk", + "peaches", + "garlic", + "ground coriander", + "kosher salt", + "boneless skinless chicken breasts", + "cayenne pepper", + "mustard seeds" + ] + }, + { + "id": 48229, + "cuisine": "french", + "ingredients": [ + "fennel seeds", + "ground black pepper", + "leeks", + "garlic", + "onions", + "kosher salt", + "seafood stock", + "parsley", + "bay leaf", + "whitefish", + "cayenne", + "dry white wine", + "fresh lemon juice", + "plum tomatoes", + "saffron threads", + "olive oil", + "egg yolks", + "toasted baguette", + "medium shrimp" + ] + }, + { + "id": 42594, + "cuisine": "mexican", + "ingredients": [ + "ruby port", + "fresh raspberries", + "sugar", + "flour tortillas", + "havarti", + "smoked turkey breast", + "scallions", + "chipotle chile", + "cooked bacon" + ] + }, + { + "id": 38083, + "cuisine": "mexican", + "ingredients": [ + "salt", + "chunky salsa", + "chopped cilantro", + "avocado" + ] + }, + { + "id": 748, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "spring onions", + "rolls", + "sesame seeds", + "raisins", + "chili pepper", + "vegetable oil", + "chicken stock", + "almonds", + "salt" + ] + }, + { + "id": 47090, + "cuisine": "italian", + "ingredients": [ + "fresh lemon", + "confectioners sugar", + "honey", + "lemon", + "large egg whites", + "baking powder", + "granulated sugar", + "blanched almonds" + ] + }, + { + "id": 43861, + "cuisine": "russian", + "ingredients": [ + "mayonaise", + "yellow onion", + "russet potatoes", + "oil", + "salt and ground black pepper", + "beets", + "herring fillets", + "carrots" + ] + }, + { + "id": 48897, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "grated parmesan cheese", + "boneless skinless chicken breast halves", + "ground black pepper", + "dry bread crumbs", + "basil dried leaves" + ] + }, + { + "id": 19007, + "cuisine": "filipino", + "ingredients": [ + "ampalaya", + "water", + "salt", + "onions", + "soy sauce", + "top sirloin", + "oyster sauce", + "sugar", + "sesame oil", + "oil", + "pepper", + "garlic", + "corn starch" + ] + }, + { + "id": 3822, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "rice vinegar", + "mirin", + "dark sesame oil", + "shallots", + "seaweed", + "salt", + "toasted sesame seeds" + ] + }, + { + "id": 45898, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "garlic cloves", + "tomatoes", + "sea salt", + "roasted red peppers", + "bread slices", + "fresh basil", + "freshly ground pepper" + ] + }, + { + "id": 43876, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "green tomatoes", + "all-purpose flour", + "vegetable oil", + "self-rising cornmeal", + "pepper", + "salt" + ] + }, + { + "id": 19625, + "cuisine": "chinese", + "ingredients": [ + "jasmine rice", + "ground black pepper", + "star anise", + "bok choy", + "dark soy sauce", + "sesame seeds", + "large garlic cloves", + "plums", + "sugar", + "fresh ginger root", + "sea salt", + "rice vinegar", + "honey", + "pork tenderloin", + "thai chile", + "onions" + ] + }, + { + "id": 40772, + "cuisine": "french", + "ingredients": [ + "lime zest", + "large egg yolks", + "lime rind", + "fresh lime juice", + "mint", + "whipped topping", + "mini phyllo dough shells", + "sweetened condensed milk" + ] + }, + { + "id": 41980, + "cuisine": "italian", + "ingredients": [ + "ice cubes", + "instant espresso powder", + "confectioners sugar", + "vanilla ice cream", + "chocolate shavings", + "chopped nuts", + "granulated sugar", + "water", + "heavy cream" + ] + }, + { + "id": 36579, + "cuisine": "italian", + "ingredients": [ + "non-fat sour cream", + "chopped parsley", + "shallots", + "grated nutmeg", + "cooked chicken", + "salt", + "gnocchi", + "dry sherry", + "fat skimmed chicken broth" + ] + }, + { + "id": 44991, + "cuisine": "southern_us", + "ingredients": [ + "herbs", + "salt", + "cheese", + "quickcooking grits", + "freshly ground pepper", + "frozen whole kernel corn", + "garlic" + ] + }, + { + "id": 33183, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "ground black pepper", + "smoked ham", + "ground pork", + "black vinegar", + "unflavored gelatin", + "water", + "peeled fresh ginger", + "sesame oil", + "dried shiitake mushrooms", + "chicken wings", + "dumpling wrappers", + "green onions", + "large garlic cloves", + "shrimp", + "soy sauce", + "Shaoxing wine", + "napa cabbage leaves", + "salt" + ] + }, + { + "id": 41587, + "cuisine": "mexican", + "ingredients": [ + "ancho chili ground pepper", + "salt", + "fat free less sodium chicken broth", + "cilantro sprigs", + "canola oil", + "sliced almonds", + "butter", + "boneless skinless chicken breast halves", + "crema mexicana", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 46470, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "garlic cloves", + "water", + "extra-virgin olive oil", + "spiny lobsters", + "flat leaf parsley", + "cherry tomatoes", + "crushed red pepper" + ] + }, + { + "id": 33244, + "cuisine": "cajun_creole", + "ingredients": [ + "coconut oil", + "chicken sausage", + "red beans", + "onions", + "chopped bell pepper", + "ground black pepper", + "chopped celery", + "water", + "dried thyme", + "chili powder", + "chopped garlic", + "steamed rice", + "bay leaves", + "salt" + ] + }, + { + "id": 45281, + "cuisine": "brazilian", + "ingredients": [ + "sugar substitute", + "ice cubes", + "chia seeds", + "avocado", + "fat free milk", + "carnation" + ] + }, + { + "id": 24262, + "cuisine": "korean", + "ingredients": [ + "water", + "sesame oil", + "eggs", + "green onions", + "garlic", + "fish sauce", + "pollock", + "salt", + "radishes", + "daikon" + ] + }, + { + "id": 14909, + "cuisine": "thai", + "ingredients": [ + "pepper", + "shredded cabbage", + "salt", + "hoisin sauce", + "ginger", + "red bell pepper", + "olive oil", + "green onions", + "red curry paste", + "ground chicken", + "basil leaves", + "garlic", + "iceberg lettuce" + ] + }, + { + "id": 20533, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "boneless skinless chicken breasts", + "canned black beans", + "flour tortillas", + "chopped cilantro fresh", + "green chile", + "Mexican cheese blend", + "reduced-fat sour cream", + "chipotle chile", + "cooking spray" + ] + }, + { + "id": 18784, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "pepper", + "chili", + "salt", + "pork shoulder", + "plain yogurt", + "water", + "cilantro", + "red bell pepper", + "cumin", + "romaine lettuce", + "shredded cheddar cheese", + "olive oil", + "yellow onion", + "corn-on-the-cob", + "avocado", + "black beans", + "lime", + "garlic", + "ground chile" + ] + }, + { + "id": 2977, + "cuisine": "french", + "ingredients": [ + "cold water", + "unsalted butter", + "amber", + "sugar", + "salt", + "pecans", + "large eggs", + "maple sugar", + "light brown sugar", + "cider vinegar", + "all-purpose flour" + ] + }, + { + "id": 28891, + "cuisine": "italian", + "ingredients": [ + "garlic", + "red bell pepper", + "dried oregano", + "dry vermouth", + "Italian turkey sausage", + "onions", + "cold water", + "salt", + "fresh parsley", + "dried rosemary", + "ground pepper", + "corn starch", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 14877, + "cuisine": "russian", + "ingredients": [ + "sugar", + "large egg yolks", + "heavy cream", + "fresh lemon juice", + "poppy seed filling", + "active dry yeast", + "golden raisins", + "all-purpose flour", + "milk", + "lemon zest", + "salt", + "warm water", + "unsalted butter", + "vanilla" + ] + }, + { + "id": 35652, + "cuisine": "chinese", + "ingredients": [ + "salt", + "ground black pepper", + "lard", + "grated nutmeg", + "szechwan peppercorns", + "pork butt" + ] + }, + { + "id": 23514, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "cilantro", + "jalapeno chilies", + "oil", + "pepper", + "garlic" + ] + }, + { + "id": 11710, + "cuisine": "indian", + "ingredients": [ + "water", + "ginger", + "cardamom", + "cumin", + "garlic powder", + "cayenne pepper", + "coriander", + "chicken", + "milk", + "salt", + "onions", + "saffron", + "tomato paste", + "yoghurt", + "oil", + "basmati rice" + ] + }, + { + "id": 6812, + "cuisine": "italian", + "ingredients": [ + "eggs", + "all-purpose flour", + "baking powder", + "ground hazelnuts", + "unsalted butter", + "cocoa powder", + "ground cinnamon", + "salt", + "white sugar" + ] + }, + { + "id": 2128, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "garlic", + "onions", + "clove", + "roasted red peppers", + "ground coriander", + "green lentil", + "salt", + "ground cumin", + "water", + "dried mint flakes", + "fresh lemon juice" + ] + }, + { + "id": 24902, + "cuisine": "british", + "ingredients": [ + "whole milk", + "eggs", + "all-purpose flour", + "salt", + "beef drippings" + ] + }, + { + "id": 9533, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "cayenne", + "purple onion", + "fresh mint", + "calamari", + "vegetable oil", + "all-purpose flour", + "cashew nuts", + "kosher salt", + "jalapeno chilies", + "cilantro leaves", + "celery", + "lime juice", + "vietnamese fish sauce", + "rice flour" + ] + }, + { + "id": 14628, + "cuisine": "italian", + "ingredients": [ + "white wine", + "garlic", + "flat leaf parsley", + "ground black pepper", + "all-purpose flour", + "spaghetti", + "olive oil", + "salt", + "boneless skinless chicken breast halves", + "capers", + "butter", + "fresh lemon juice" + ] + }, + { + "id": 3005, + "cuisine": "brazilian", + "ingredients": [ + "mayonaise", + "green onions", + "salt", + "olives", + "ground black pepper", + "idaho potatoes", + "chopped cilantro", + "white onion", + "apple cider vinegar", + "fresh lime juice", + "hard-boiled egg", + "garlic", + "chopped fresh mint" + ] + }, + { + "id": 46830, + "cuisine": "french", + "ingredients": [ + "bottled clam juice", + "dried thyme", + "roasted red peppers", + "garlic cloves", + "chorizo", + "sea scallops", + "salt", + "large shrimp", + "baguette", + "olive oil", + "dry white wine", + "onions", + "mayonaise", + "crushed tomatoes", + "ground black pepper", + "cayenne pepper" + ] + }, + { + "id": 46022, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "dashi", + "yam noodles", + "firm tofu", + "sugar", + "beef", + "napa cabbage", + "sake", + "shiitake", + "spring onions", + "oil", + "soy sauce", + "mirin", + "chrysanthemum leaves" + ] + }, + { + "id": 11640, + "cuisine": "spanish", + "ingredients": [ + "parsley sprigs", + "roasted red peppers", + "large garlic cloves", + "onions", + "hungarian sweet paprika", + "tawny port", + "dry white wine", + "extra-virgin olive oil", + "prosciutto", + "dijon mustard", + "diced tomatoes", + "chicken", + "tomato paste", + "fresh bay leaves", + "butter", + "all-purpose flour" + ] + }, + { + "id": 18459, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "baking powder", + "salt", + "unsalted butter", + "2% reduced-fat milk", + "peaches", + "cinnamon", + "white sugar", + "eggs", + "old-fashioned oats", + "vanilla" + ] + }, + { + "id": 15476, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "dried thyme", + "large eggs", + "salt", + "chopped bacon", + "boneless chicken skinless thigh", + "ground black pepper", + "dry red wine", + "low salt chicken broth", + "dried oregano", + "mashed potatoes", + "shiitake", + "paprika", + "garlic cloves", + "onions", + "mustard", + "olive oil", + "chili powder", + "all-purpose flour", + "flat leaf parsley" + ] + }, + { + "id": 16393, + "cuisine": "mexican", + "ingredients": [ + "fine sea salt", + "chopped cilantro fresh", + "chile pepper", + "Meyer lemon juice", + "finely chopped onion", + "sweet pepper", + "ancho powder", + "hass avocado" + ] + }, + { + "id": 687, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "pecorino cheese", + "large garlic cloves", + "salt", + "unsalted butter", + "crushed red pepper", + "pinenuts", + "dried fettuccine", + "broccoli" + ] + }, + { + "id": 38427, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "garlic cloves", + "horseradish", + "heavy cream", + "milk", + "chees fresh mozzarella", + "baking potatoes" + ] + }, + { + "id": 42489, + "cuisine": "filipino", + "ingredients": [ + "coconut", + "warm water" + ] + }, + { + "id": 31870, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "rice vinegar", + "red bell pepper", + "sugar", + "daikon", + "english cucumber", + "reduced sodium soy sauce", + "yellow bell pepper", + "carrots", + "green onions", + "soba noodles", + "toasted sesame oil" + ] + }, + { + "id": 33365, + "cuisine": "moroccan", + "ingredients": [ + "quail", + "unsalted butter", + "salt", + "fresh lime juice", + "ground black pepper", + "paprika", + "garlic cloves", + "vegetables", + "corn oil", + "bulgur", + "cayenne", + "extra-virgin olive oil", + "couscous" + ] + }, + { + "id": 48017, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "vegetable oil", + "mustard seeds", + "plum tomatoes", + "coriander seeds", + "garlic", + "coconut milk", + "white onion", + "ginger", + "cinnamon sticks", + "curry leaves", + "garam masala", + "cumin seed", + "toor dal" + ] + }, + { + "id": 8359, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "salt", + "sugar", + "baking powder", + "large egg yolks", + "vanilla extract", + "ground cinnamon", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 7060, + "cuisine": "thai", + "ingredients": [ + "olive oil", + "boneless skinless chicken breast halves", + "sugar", + "red vinegar white white, wine,", + "ground ginger", + "peanuts", + "soy sauce", + "garlic" + ] + }, + { + "id": 8121, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "boneless skinless chicken breasts", + "oil", + "onions", + "pepper", + "garlic", + "corn starch", + "crab", + "napa cabbage", + "carrots", + "noodles", + "eggs", + "water", + "salt", + "chicken livers" + ] + }, + { + "id": 6631, + "cuisine": "french", + "ingredients": [ + "egg bread", + "crimini mushrooms", + "gruyere cheese", + "bay leaf", + "grated parmesan cheese", + "butter", + "grated nutmeg", + "whole milk", + "fresh tarragon", + "ham", + "hot pepper sauce", + "shallots", + "all-purpose flour" + ] + }, + { + "id": 30665, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "dry white wine", + "linguine", + "plum tomatoes", + "cooking spray", + "butter", + "fresh lime juice", + "sea scallops", + "shallots", + "salt", + "peeled fresh ginger", + "whipping cream", + "fresh parsley" + ] + }, + { + "id": 377, + "cuisine": "indian", + "ingredients": [ + "water", + "nonfat yogurt plain", + "salt", + "barley", + "barley flour" + ] + }, + { + "id": 37902, + "cuisine": "indian", + "ingredients": [ + "parboiled rice", + "green chilies", + "tomatoes", + "salt", + "asafoetida powder", + "curry leaves", + "urad dal", + "oil", + "red chili peppers", + "cilantro leaves", + "onions" + ] + }, + { + "id": 2094, + "cuisine": "french", + "ingredients": [ + "navy beans", + "fresh thyme", + "garlic", + "onions", + "fresh tomatoes", + "skinned boned duck breast halves", + "bay leaf", + "sausage links", + "bacon", + "fresh parsley", + "fresh rosemary", + "whole cloves", + "carrots" + ] + }, + { + "id": 26486, + "cuisine": "british", + "ingredients": [ + "large eggs", + "all-purpose flour", + "vegetable oil", + "whole milk", + "salt" + ] + }, + { + "id": 48621, + "cuisine": "italian", + "ingredients": [ + "amaretto", + "cranberry juice", + "vanilla vodka", + "pineapple juice", + "white creme de cacao" + ] + }, + { + "id": 19908, + "cuisine": "british", + "ingredients": [ + "filet mignon", + "ground black pepper", + "dry white wine", + "goose liver", + "minced garlic", + "large eggs", + "button mushrooms", + "duxelles", + "unsalted butter", + "shallots", + "ground white pepper", + "olive oil", + "frozen pastry puff sheets", + "salt" + ] + }, + { + "id": 36965, + "cuisine": "french", + "ingredients": [ + "cream", + "sugar", + "all-purpose flour", + "dough", + "raisins", + "large eggs" + ] + }, + { + "id": 37917, + "cuisine": "italian", + "ingredients": [ + "baking potatoes", + "anchovy fillets", + "yellow bell pepper", + "red bell pepper", + "large garlic cloves", + "fresh parsley leaves", + "olive oil", + "salt" + ] + }, + { + "id": 38203, + "cuisine": "mexican", + "ingredients": [ + "butter", + "all-purpose flour", + "sea salt", + "baking powder", + "hot water" + ] + }, + { + "id": 47920, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "Shaoxing wine", + "ginger", + "shrimp", + "light soy sauce", + "ground pork", + "peanut oil", + "dumpling wrappers", + "sesame oil", + "dried shiitake mushrooms", + "minced ginger", + "green onions", + "salt", + "black vinegar" + ] + }, + { + "id": 29663, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "brown rice", + "extra-virgin olive oil", + "flat leaf parsley", + "yellow tomato", + "corn kernels", + "cinnamon", + "purple onion", + "lime juice", + "chili powder", + "garlic", + "cumin", + "tomatoes", + "bell pepper", + "sea salt", + "rice" + ] + }, + { + "id": 35434, + "cuisine": "greek", + "ingredients": [ + "melted butter", + "olive oil", + "garlic", + "onions", + "fresh spinach", + "graviera", + "dill", + "phyllo dough", + "feta cheese", + "green pepper", + "tomatoes", + "pepper", + "green onions", + "lamb" + ] + }, + { + "id": 17427, + "cuisine": "italian", + "ingredients": [ + "1% low-fat milk", + "sugar", + "water", + "chopped fresh mint" + ] + }, + { + "id": 46817, + "cuisine": "italian", + "ingredients": [ + "salt", + "orzo", + "garlic cloves", + "lemon", + "freshly ground pepper", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 48839, + "cuisine": "italian", + "ingredients": [ + "frozen spinach", + "ground chuck", + "olive oil", + "basil", + "carrots", + "onions", + "sugar", + "rosemary", + "parsley", + "sauce", + "bay leaf", + "italian seasoning", + "italian sausage", + "mozzarella cheese", + "zucchini", + "garlic", + "thyme", + "marjoram", + "tomatoes", + "pepper", + "mushrooms", + "salt", + "celery", + "oregano" + ] + }, + { + "id": 49463, + "cuisine": "italian", + "ingredients": [ + "vodka", + "sugar", + "rosemary sprigs", + "club soda", + "fresh lemon juice" + ] + }, + { + "id": 28220, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "eggplant", + "fresh thyme", + "garlic", + "kosher salt", + "zucchini", + "extra-virgin olive oil", + "fresh marjoram", + "ground black pepper", + "yellow bell pepper", + "tomato sauce", + "fennel", + "balsamic vinegar", + "red bell pepper" + ] + }, + { + "id": 11591, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "pepper", + "cilantro", + "cumin", + "fresh corn", + "poblano peppers", + "salt", + "cheddar cheese", + "shredded carrots", + "chopped cilantro", + "green chile", + "chicken sausage", + "purple onion" + ] + }, + { + "id": 44643, + "cuisine": "french", + "ingredients": [ + "smoked trout fillets", + "ground black pepper", + "goat cheese", + "olive oil", + "white wine vinegar", + "baguette", + "dijon mustard", + "spinach", + "radicchio", + "salt" + ] + }, + { + "id": 34861, + "cuisine": "mexican", + "ingredients": [ + "apple juice", + "amaretto liqueur", + "peaches" + ] + }, + { + "id": 44917, + "cuisine": "italian", + "ingredients": [ + "red pepper flakes", + "fresh lemon juice", + "olive oil", + "broccoli", + "pinenuts", + "linguine", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 710, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "sweet potatoes", + "garlic", + "red bell pepper", + "lime", + "chili powder", + "salt", + "red lentils", + "olive oil", + "diced tomatoes", + "red curry paste", + "low-fat coconut milk", + "kidney beans", + "vegetable broth", + "yellow onion" + ] + }, + { + "id": 18805, + "cuisine": "italian", + "ingredients": [ + "pitted black olives", + "bacon", + "kosher salt", + "penne pasta", + "fresh rosemary", + "marinara sauce", + "black pepper", + "crushed red pepper" + ] + }, + { + "id": 35627, + "cuisine": "indian", + "ingredients": [ + "salt", + "fresh cilantro", + "coriander", + "plain yogurt", + "cucumber", + "fresh ginger", + "cumin" + ] + }, + { + "id": 48850, + "cuisine": "brazilian", + "ingredients": [ + "turbinado", + "cachaca", + "lime juice" + ] + }, + { + "id": 21997, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "flour tortillas", + "yellow onion", + "chile powder", + "lime", + "garlic", + "green bell pepper", + "chicken breasts", + "tequila", + "avocado", + "olive oil", + "salt" + ] + }, + { + "id": 38504, + "cuisine": "french", + "ingredients": [ + "minced onion", + "salt", + "ground black pepper", + "butter", + "fat", + "confit", + "cognac", + "parsley", + "garlic cloves" + ] + }, + { + "id": 26236, + "cuisine": "mexican", + "ingredients": [ + "cream cheese", + "chili", + "shredded cheddar cheese", + "salsa" + ] + }, + { + "id": 5232, + "cuisine": "russian", + "ingredients": [ + "large eggs", + "all-purpose flour", + "coarse salt", + "large egg yolks", + "crème fraîche", + "yukon gold potatoes", + "ground white pepper" + ] + }, + { + "id": 31413, + "cuisine": "thai", + "ingredients": [ + "agave nectar", + "edamame", + "cashew nuts", + "olive oil", + "green onions", + "cucumber", + "chicken", + "soy sauce", + "tahini", + "creamy peanut butter", + "cabbage", + "quinoa", + "rice vinegar", + "chopped cilantro" + ] + }, + { + "id": 39781, + "cuisine": "southern_us", + "ingredients": [ + "fresh dill", + "pimentos", + "monterey jack", + "black pepper", + "sharp cheddar cheese", + "mayonaise", + "cream cheese", + "dijon mustard", + "adobo sauce" + ] + }, + { + "id": 17357, + "cuisine": "russian", + "ingredients": [ + "white vinegar", + "salt", + "fat-free buttermilk", + "cucumber", + "green onions", + "fresh dill", + "beets" + ] + }, + { + "id": 2951, + "cuisine": "greek", + "ingredients": [ + "cooking spray", + "garlic cloves", + "plum tomatoes", + "fresh dill", + "purple onion", + "greek yogurt", + "red wine vinegar", + "cucumber", + "dried oregano", + "olive oil", + "salt", + "center cut loin pork chop" + ] + }, + { + "id": 38100, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "unsalted butter", + "cinnamon", + "all-purpose flour", + "nutmeg", + "milk", + "graham cracker crumbs", + "vanilla extract", + "sugar", + "large eggs", + "butter", + "Marshmallow Fluff", + "powdered sugar", + "baking soda", + "sweet potatoes", + "salt" + ] + }, + { + "id": 48703, + "cuisine": "mexican", + "ingredients": [ + "water", + "salt", + "vegetable oil", + "granulated sugar", + "all-purpose flour", + "cinnamon" + ] + }, + { + "id": 17146, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "garlic cloves", + "salt", + "ground black pepper", + "plum tomatoes", + "olive oil", + "fresh lemon juice" + ] + }, + { + "id": 34791, + "cuisine": "southern_us", + "ingredients": [ + "half & half", + "bacon", + "white cornmeal", + "baking powder", + "salt", + "green onions", + "shredded sharp cheddar cheese", + "boiling water", + "sugar", + "vegetable oil", + "softened butter" + ] + }, + { + "id": 11967, + "cuisine": "southern_us", + "ingredients": [ + "country ham", + "brewed coffee", + "firmly packed brown sugar" + ] + }, + { + "id": 26399, + "cuisine": "mexican", + "ingredients": [ + "mojo marinade", + "boneless chicken skinless thigh" + ] + }, + { + "id": 7421, + "cuisine": "spanish", + "ingredients": [ + "green olives", + "ground black pepper", + "serrano ham", + "olive oil", + "fresh orange juice", + "orange", + "shallots", + "round loaf", + "sherry vinegar", + "salt" + ] + }, + { + "id": 14969, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "ground pork", + "yellow onion", + "large eggs", + "salsa", + "olive oil", + "garlic", + "ground cumin", + "black pepper", + "jalapeno chilies", + "dry bread crumbs" + ] + }, + { + "id": 45460, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "whole wheat linguine", + "dry white wine", + "deveined shrimp", + "chopped parsley", + "parmesan cheese", + "red pepper flakes", + "salt", + "pepper", + "shallots", + "garlic" + ] + }, + { + "id": 24745, + "cuisine": "chinese", + "ingredients": [ + "pork", + "pineapple juice", + "sliced green onions", + "sesame oil", + "garlic cloves", + "soy sauce", + "loin", + "brown sugar", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 21765, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "purple onion", + "hothouse cucumber", + "roma tomatoes", + "red bell pepper", + "garbanzo beans", + "salt", + "red wine vinegar", + "dried oregano" + ] + }, + { + "id": 44002, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "salsa", + "onions", + "tomatoes", + "cilantro sprigs", + "beef tenderloin steaks", + "yellow bell pepper", + "corn tortillas", + "jalapeno chilies", + "mole sauce" + ] + }, + { + "id": 17703, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "parsley", + "salt", + "pepper", + "spaghetti, cook and drain", + "chicken pieces", + "tomato sauce", + "basil", + "salad oil", + "tomato paste", + "grated parmesan cheese", + "garlic", + "onions" + ] + }, + { + "id": 40364, + "cuisine": "moroccan", + "ingredients": [ + "pinenuts", + "unsalted butter", + "pearl couscous", + "whole almonds", + "pomegranate seeds", + "almond extract", + "sugar", + "mixed dried fruit", + "cinnamon", + "milk", + "pitted Medjool dates", + "apricots" + ] + }, + { + "id": 8733, + "cuisine": "mexican", + "ingredients": [ + "orange", + "baking powder", + "orange juice", + "unsalted butter", + "all-purpose flour", + "vanilla beans", + "salt", + "eggs", + "granulated sugar", + "cream cheese" + ] + }, + { + "id": 28778, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "whole peeled tomatoes", + "fresh parsley leaves", + "olive oil", + "black olives", + "minced garlic", + "crushed red pepper flakes", + "capers", + "ground black pepper", + "anchovy fillets" + ] + }, + { + "id": 41408, + "cuisine": "indian", + "ingredients": [ + "fresh tomatoes", + "peanuts", + "chana dal", + "mustard seeds", + "cooked rice", + "red chili peppers", + "dry coconut", + "green chilies", + "ground turmeric", + "curry leaves", + "asafoetida", + "finely chopped onion", + "salt", + "coriander", + "coconut oil", + "split black lentils", + "seeds", + "ghee" + ] + }, + { + "id": 25446, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "boneless skinless chicken breasts", + "red bell pepper", + "neutral oil", + "sweet onion", + "corn starch", + "brown sugar", + "pineapple", + "cold water", + "soy sauce", + "rice vinegar" + ] + }, + { + "id": 17538, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "peaches", + "heavy whipping cream", + "cream", + "cardamom", + "brown sugar", + "self rising flour", + "turbinado", + "honey", + "lemon juice" + ] + }, + { + "id": 4702, + "cuisine": "indian", + "ingredients": [ + "clove", + "garlic paste", + "garam masala", + "cilantro leaves", + "cinnamon sticks", + "cumin", + "red chili powder", + "mace", + "cauliflower florets", + "oil", + "cashew nuts", + "tomatoes", + "coconut", + "star anise", + "green chilies", + "onions", + "fennel seeds", + "water", + "green peas", + "green cardamom", + "bay leaf" + ] + }, + { + "id": 44807, + "cuisine": "greek", + "ingredients": [ + "eggplant", + "fresh parsley", + "white vinegar", + "salt", + "extra-virgin olive oil", + "onions", + "tomatoes", + "feta cheese crumbles" + ] + }, + { + "id": 10900, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "mini marshmallows", + "salt", + "unsweetened cocoa powder", + "sugar", + "baking powder", + "caramel sauce", + "water", + "vanilla extract", + "chocolate morsels", + "shortening", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 46664, + "cuisine": "korean", + "ingredients": [ + "kimchi juice", + "vegetable oil", + "green onions", + "pancake mix", + "soy sauce", + "rice vinegar", + "cold water", + "chili powder", + "kimchi" + ] + }, + { + "id": 11793, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "lime juice", + "flour", + "garlic", + "kosher salt", + "fresh ginger", + "skinless chicken pieces", + "peppercorns", + "mint", + "olive oil", + "serrano peppers", + "peanut butter", + "curry powder", + "coriander seeds", + "green onions" + ] + }, + { + "id": 8632, + "cuisine": "russian", + "ingredients": [ + "water", + "bittersweet chocolate", + "sugar" + ] + }, + { + "id": 18385, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "thai basil", + "salt", + "eggs", + "white pepper", + "Shaoxing wine", + "shrimp", + "fish sauce", + "broccoli florets", + "oil", + "cooked rice", + "light soy sauce", + "sesame oil", + "onions" + ] + }, + { + "id": 11261, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "fresh mozzarella", + "toasted sesame oil", + "ground black pepper", + "rice vinegar", + "bread", + "shallots", + "garlic cloves", + "thai basil", + "sea salt" + ] + }, + { + "id": 23206, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "dark sesame oil", + "lime juice", + "salt", + "cooked shrimp", + "low sodium soy sauce", + "lime wedges", + "garlic cloves", + "honey", + "uncooked vermicelli", + "chopped fresh mint" + ] + }, + { + "id": 29035, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "extra-virgin olive oil", + "radicchio", + "butter", + "all-purpose flour", + "mascarpone", + "dry red wine", + "semolina", + "grated parmesan cheese", + "purple onion" + ] + }, + { + "id": 34379, + "cuisine": "mexican", + "ingredients": [ + "halibut fillets", + "vegetable oil", + "dried oregano", + "capers", + "unsalted butter", + "serrano chile", + "tomatoes", + "ground black pepper", + "garlic cloves", + "kosher salt", + "finely chopped onion", + "olives" + ] + }, + { + "id": 29978, + "cuisine": "indian", + "ingredients": [ + "flour", + "paneer", + "fresh mint", + "chopped bell pepper", + "cracked black pepper", + "green chilies", + "cabbage", + "water", + "grating cheese", + "salt", + "coriander", + "baking soda", + "green peas", + "curds", + "mango" + ] + }, + { + "id": 28296, + "cuisine": "southern_us", + "ingredients": [ + "pineapple preserves", + "peach preserves", + "orange marmalade", + "dry mustard", + "prepared horseradish", + "preserves" + ] + }, + { + "id": 40259, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "water", + "diced tomatoes", + "sour cream", + "black beans", + "green onions", + "frozen corn", + "condensed cream of chicken soup", + "tortillas", + "cilantro", + "ground cumin", + "lettuce", + "shredded cheddar cheese", + "boneless skinless chicken breasts", + "salsa" + ] + }, + { + "id": 23219, + "cuisine": "korean", + "ingredients": [ + "white vinegar", + "vegetable oil", + "green onions", + "cucumber", + "sesame seeds", + "kochujang", + "sesame oil" + ] + }, + { + "id": 45214, + "cuisine": "british", + "ingredients": [ + "ground black pepper", + "half & half", + "ground veal", + "grated lemon zest", + "onion gravy", + "bread crumb fresh", + "potatoes", + "butter", + "salt", + "onions", + "ground nutmeg", + "egg yolks", + "ground thyme", + "all-purpose flour", + "marjoram", + "chicken broth", + "ground sage", + "vegetable oil", + "ground pork", + "banger" + ] + }, + { + "id": 12837, + "cuisine": "japanese", + "ingredients": [ + "seasoning salt", + "vegetable oil", + "coarse kosher salt", + "soy sauce", + "tuna steaks", + "all-purpose flour", + "milk", + "onion powder", + "ground white pepper", + "eggs", + "sesame seeds", + "wasabi powder", + "soup mix" + ] + }, + { + "id": 17824, + "cuisine": "british", + "ingredients": [ + "large eggs", + "unsalted butter", + "sharp cheddar cheese", + "self rising flour", + "cumin seed", + "sugar", + "buttermilk" + ] + }, + { + "id": 45172, + "cuisine": "chinese", + "ingredients": [ + "large egg yolks", + "powdered milk", + "cinnamon sticks", + "clove", + "unsalted butter", + "salt", + "palm sugar", + "pineapple", + "confectioners sugar", + "custard powder", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 14339, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "butter", + "flour", + "chicken", + "chicken broth", + "baking powder", + "milk", + "salt" + ] + }, + { + "id": 30289, + "cuisine": "japanese", + "ingredients": [ + "oyster mushrooms", + "mixed seafood", + "fresh lemon juice", + "mayonaise", + "rice vinegar", + "chopped fresh chives", + "mushroom soy sauce" + ] + }, + { + "id": 29371, + "cuisine": "italian", + "ingredients": [ + "walnut pieces", + "Italian parsley leaves", + "grated parmesan cheese", + "linguine", + "radicchio", + "extra-virgin olive oil", + "leeks", + "fresh lemon juice" + ] + }, + { + "id": 13513, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "lemon", + "canola oil", + "eggplant", + "salt", + "jalapeno chilies", + "chopped cilantro", + "pepper", + "purple onion", + "ground cumin" + ] + }, + { + "id": 26781, + "cuisine": "irish", + "ingredients": [ + "dijon mustard", + "shredded swiss cheese", + "sauerkraut", + "egg whites", + "dill weed", + "sesame seeds", + "refrigerated crescent rolls", + "onions", + "beef brisket", + "salad dressing" + ] + }, + { + "id": 46446, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "lemon juice", + "kosher salt", + "chickpeas", + "tahini", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 41498, + "cuisine": "cajun_creole", + "ingredients": [ + "granulated garlic", + "fresh cilantro", + "chili powder", + "guajillo", + "paprika", + "dill", + "juice", + "oregano", + "black pepper", + "pork hocks", + "apple cider vinegar", + "sea salt", + "hot sauce", + "beer", + "red bell pepper", + "tomato paste", + "water", + "jalapeno chilies", + "epazote", + "diced tomatoes", + "yellow onion", + "pinto beans", + "chipotles in adobo", + "sugar", + "lime", + "onion powder", + "bacon", + "cilantro", + "rice", + "thyme", + "cumin" + ] + }, + { + "id": 15447, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "white wine vinegar", + "mayonaise", + "vegetable oil", + "lemon juice", + "italian style seasoning", + "corn syrup", + "romano cheese", + "garlic", + "dried parsley" + ] + }, + { + "id": 11505, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "whole chicken", + "light soy sauce", + "ginger", + "oyster sauce", + "water", + "sesame oil", + "garlic cloves", + "Shaoxing wine", + "salt" + ] + }, + { + "id": 42869, + "cuisine": "italian", + "ingredients": [ + "fava beans", + "ground black pepper", + "chopped fresh thyme", + "garlic cloves", + "water", + "leeks", + "chees fresh mozzarella", + "arborio rice", + "prosciutto", + "dry white wine", + "salt", + "fat free less sodium chicken broth", + "cooking spray", + "butter", + "arugula" + ] + }, + { + "id": 36469, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "annatto powder", + "anisette", + "white sugar", + "kosher salt", + "pork shoulder", + "pink salt" + ] + }, + { + "id": 18976, + "cuisine": "greek", + "ingredients": [ + "plain low-fat yogurt", + "fat free milk", + "minced onion", + "diced tomatoes", + "garlic cloves", + "kosher salt", + "feta cheese", + "cooking spray", + "all-purpose flour", + "fresh mint", + "olive oil", + "ground nutmeg", + "ground chicken breast", + "bulgur", + "eggplant", + "ground black pepper", + "butter", + "ground allspice" + ] + }, + { + "id": 25225, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "grated parmesan cheese", + "gluten", + "sliced mushrooms", + "sweet onion", + "chicken breasts", + "salt", + "green bell pepper, slice", + "butter", + "creole seasoning", + "pepper", + "green onions", + "extra-virgin olive oil" + ] + }, + { + "id": 34800, + "cuisine": "indian", + "ingredients": [ + "vanilla low-fat ic cream", + "golden raisins", + "water", + "lime slices", + "rose water", + "cardamom pods", + "sugar", + "pistachios", + "fresh pineapple" + ] + }, + { + "id": 33508, + "cuisine": "italian", + "ingredients": [ + "refrigerated chocolate chip cookie dough", + "ground cinnamon", + "crystallized ginger", + "turbinado", + "ground nutmeg", + "molasses", + "bourbon whiskey" + ] + }, + { + "id": 20445, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "kidney beans", + "purple onion", + "shredded cheddar cheese", + "corn chips", + "salad dressing", + "tomatoes", + "green onions", + "pinto beans", + "taco seasoning mix", + "lean ground beef", + "iceberg lettuce" + ] + }, + { + "id": 1315, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "salt", + "ground beef", + "shredded cheddar cheese", + "potatoes", + "whole kernel corn, drain", + "ground cumin", + "water", + "diced tomatoes", + "pinto beans", + "ground black pepper", + "salsa", + "onions" + ] + }, + { + "id": 48605, + "cuisine": "southern_us", + "ingredients": [ + "sausage casings", + "bay leaves", + "garlic", + "mustard powder", + "chicken-flavored soup powder", + "onions", + "tomato paste", + "ground black pepper", + "worcestershire sauce", + "lima beans", + "ham", + "celery", + "fresh basil", + "chopped fresh chives", + "stewed tomatoes", + "dried navy beans", + "carrots", + "fresh parsley", + "dried thyme", + "green onions", + "salt", + "beer", + "ground cayenne pepper" + ] + }, + { + "id": 23907, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "shrimp heads", + "yellow onion", + "ground black pepper", + "heavy cream", + "ouzo", + "lemon", + "garlic cloves", + "unsalted butter", + "salt" + ] + }, + { + "id": 42793, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "green chilies", + "chopped garlic", + "curry leaves", + "lemon", + "chopped cilantro", + "garam masala", + "mustard seeds", + "canola oil", + "brussels sprouts", + "salt", + "ground turmeric" + ] + }, + { + "id": 23105, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cutlet", + "grated parmesan cheese", + "dry bread crumbs", + "large eggs", + "all-purpose flour", + "mozzarella cheese", + "marinara sauce" + ] + }, + { + "id": 24006, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "shallots", + "garlic", + "oregano", + "sourdough bread", + "cracked black pepper", + "flat leaf parsley", + "seasoned bread crumbs", + "lean ground beef", + "anchovy fillets", + "eggs", + "olive oil", + "San Marzano Crushed Tomatoes", + "fresh basil leaves" + ] + }, + { + "id": 41143, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "fresh ginger", + "habanero", + "black pepper", + "vegetable oil", + "salt", + "brown sugar", + "chicken breasts", + "garlic", + "clove", + "dried thyme", + "lemon", + "onions" + ] + }, + { + "id": 39515, + "cuisine": "italian", + "ingredients": [ + "sugar", + "lemon", + "mascarpone", + "ladyfingers", + "large eggs", + "water", + "liqueur" + ] + }, + { + "id": 20609, + "cuisine": "spanish", + "ingredients": [ + "brandy", + "fresh cranberries", + "cranberries", + "orange", + "red wine", + "water", + "lemon", + "sugar", + "lime slices", + "fresh orange juice" + ] + }, + { + "id": 45322, + "cuisine": "italian", + "ingredients": [ + "whole wheat pastry flour", + "goat cheese", + "eggs", + "parmesan cheese", + "sundried tomato pesto", + "whole wheat breadcrumbs", + "fresh basil", + "boneless skinless chicken breasts" + ] + }, + { + "id": 30316, + "cuisine": "indian", + "ingredients": [ + "sugar", + "coriander powder", + "ginger", + "pork meat", + "ground cumin", + "clove", + "curry powder", + "mint sauce", + "salt", + "ghee", + "pepper", + "dry coconut", + "garlic", + "cinnamon sticks", + "chicken stock", + "chopped tomatoes", + "mango chutney", + "black cardamom pods", + "onions" + ] + }, + { + "id": 43226, + "cuisine": "italian", + "ingredients": [ + "bow-tie pasta", + "chicken broth", + "frozen mixed vegetables", + "frozen meatballs", + "italian seasoning", + "diced tomatoes" + ] + }, + { + "id": 27389, + "cuisine": "british", + "ingredients": [ + "water", + "frozen pastry puff sheets", + "red wine", + "wine syrup", + "foie gras", + "chopped parsley", + "olive oil", + "mushrooms", + "beef tenderloin", + "eggs", + "minced onion", + "shallots", + "chopped garlic" + ] + }, + { + "id": 1487, + "cuisine": "irish", + "ingredients": [ + "bread", + "milk", + "butter", + "sugar", + "flour", + "shortcrust pastry", + "brown sugar", + "large eggs", + "currant", + "mixed spice", + "baking powder" + ] + }, + { + "id": 17228, + "cuisine": "mexican", + "ingredients": [ + "cherry preserves", + "almond extract", + "heavy whipping cream", + "brownies", + "vanilla extract", + "adobo sauce" + ] + }, + { + "id": 41635, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "chicken breasts", + "corn starch", + "chopped garlic", + "sugar", + "peanut oil", + "shao hsing wine", + "dark soy sauce", + "szechwan peppercorns", + "ginger root", + "white vinegar", + "peanuts", + "scallions", + "dried red chile peppers" + ] + }, + { + "id": 41467, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "olive oil", + "balsamic vinaigrette", + "cucumber", + "baguette", + "salt", + "lemon juice", + "water", + "cayenne pepper", + "leg of lamb", + "fresh rosemary", + "fresh chevre", + "garlic cloves" + ] + }, + { + "id": 20329, + "cuisine": "british", + "ingredients": [ + "tapioca flour", + "eggs", + "sea salt", + "full fat coconut milk", + "coconut oil", + "root vegetables" + ] + }, + { + "id": 49297, + "cuisine": "italian", + "ingredients": [ + "sweet onion", + "green onions", + "noodles", + "small curd cottage cheese", + "cream cheese", + "salt and ground black pepper", + "lean ground beef", + "tomato sauce", + "chopped green bell pepper", + "sour cream" + ] + }, + { + "id": 47526, + "cuisine": "italian", + "ingredients": [ + "roast beef deli meat", + "salt", + "baguette", + "extra-virgin olive oil", + "fresh basil", + "roasted red peppers", + "olive oil flavored cooking spray", + "ground black pepper", + "garlic" + ] + }, + { + "id": 23170, + "cuisine": "mexican", + "ingredients": [ + "soy sauce", + "chicken thighs", + "vinegar", + "garlic powder", + "oregano", + "adobo", + "sazon" + ] + }, + { + "id": 39957, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "red pepper", + "heavy whipping cream", + "cajun seasoning", + "linguine", + "grated parmesan cheese", + "basil", + "pepper", + "butter", + "shrimp" + ] + }, + { + "id": 45376, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "worcestershire sauce", + "salt", + "onions", + "jumbo shrimp", + "flour", + "paprika", + "scallions", + "cayenne", + "diced tomatoes", + "green pepper", + "cumin", + "steamed rice", + "butter", + "garlic", + "bay leaf" + ] + }, + { + "id": 19179, + "cuisine": "italian", + "ingredients": [ + "pecorino romano cheese", + "cooked quinoa", + "sauce", + "chicken stock" + ] + }, + { + "id": 33938, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "corn starch", + "onion powder", + "ground cumin", + "paprika", + "garlic powder", + "cayenne pepper" + ] + }, + { + "id": 1621, + "cuisine": "italian", + "ingredients": [ + "caper berries", + "unsalted butter", + "extra-virgin olive oil", + "sugar", + "golden raisins", + "fresh lemon juice", + "pancetta", + "water", + "sea salt", + "cauliflower", + "chopped fresh chives", + "salt" + ] + }, + { + "id": 36530, + "cuisine": "mexican", + "ingredients": [ + "honey", + "non-fat sour cream", + "corn tortillas", + "vidalia onion", + "tomatillos", + "garlic cloves", + "cooking spray", + "salt", + "ground cumin", + "fat free less sodium chicken broth", + "cilantro sprigs", + "nopalitos" + ] + }, + { + "id": 17765, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cilantro", + "corn tortillas", + "tomatoes", + "lime wedges", + "zest", + "iceberg lettuce", + "avocado", + "jalapeno chilies", + "purple onion", + "fresh pineapple", + "orange", + "coarse salt", + "shrimp", + "canola oil" + ] + }, + { + "id": 19117, + "cuisine": "mexican", + "ingredients": [ + "frozen sweet corn", + "grated jack cheese", + "ground cumin", + "white rice", + "low salt chicken broth", + "whipping cream", + "chopped cilantro fresh", + "unsalted butter", + "garlic cloves" + ] + }, + { + "id": 36171, + "cuisine": "thai", + "ingredients": [ + "baby back ribs", + "Sriracha", + "sweet chili sauce", + "barbecue rub" + ] + }, + { + "id": 9903, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "mozzarella cheese", + "olive oil", + "lean ground beef", + "carrots", + "fresh basil", + "golden brown sugar", + "grated parmesan cheese", + "chopped onion", + "italian sausage", + "minced garlic", + "lasagna noodles", + "part-skim ricotta cheese", + "bay leaf", + "tomato paste", + "crushed tomatoes", + "large eggs", + "crushed red pepper", + "dried oregano" + ] + }, + { + "id": 24753, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "pinto beans", + "onions", + "unsalted butter" + ] + }, + { + "id": 40424, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "ground black pepper", + "raisins", + "cinnamon sticks", + "chicken stock", + "honey", + "dried apricot", + "lamb shoulder", + "onions", + "water", + "unsalted butter", + "garlic", + "flat leaf parsley", + "ground ginger", + "almonds", + "spices", + "carrots", + "saffron" + ] + }, + { + "id": 14832, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "ground black pepper", + "garlic cloves", + "fresh basil", + "salt", + "tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 17553, + "cuisine": "mexican", + "ingredients": [ + "bay leaves", + "fresh mint", + "cider vinegar", + "salt", + "dried oregano", + "white onion", + "garlic", + "chipotle salsa", + "fresh cilantro", + "fat", + "chorizo sausage" + ] + }, + { + "id": 35863, + "cuisine": "thai", + "ingredients": [ + "sugar", + "red pepper", + "curry paste", + "chicken breasts", + "salt", + "olive oil", + "garlic", + "onions", + "chicken stock", + "vegetable oil", + "coconut milk" + ] + }, + { + "id": 40907, + "cuisine": "russian", + "ingredients": [ + "pancetta", + "vegetable oil", + "spelt flour", + "egg yolks", + "salt", + "onions", + "black pepper", + "buttermilk", + "garlic cloves", + "bear", + "all-purpose flour" + ] + }, + { + "id": 6367, + "cuisine": "mexican", + "ingredients": [ + "milk", + "butter", + "carrots", + "chicken bouillon granules", + "chile pepper", + "white rice", + "corn kernels", + "peas", + "onions", + "water", + "vegetable oil", + "garlic" + ] + }, + { + "id": 12041, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "boneless skinless chicken breasts", + "crema", + "garlic cloves", + "adobo sauce", + "radishes", + "queso fresco", + "chopped onion", + "poblano chiles", + "chiles", + "lime wedges", + "salt", + "dried guajillo chiles", + "avocado", + "whole peeled tomatoes", + "cilantro", + "tortilla chips", + "chipotles in adobo" + ] + }, + { + "id": 875, + "cuisine": "russian", + "ingredients": [ + "flour", + "cherry pie filling", + "milk", + "apples", + "sugar", + "egg yolks", + "egg whites", + "salt" + ] + }, + { + "id": 26214, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garbanzo beans", + "garlic", + "sauce", + "corn tortillas", + "romaine lettuce", + "arrowroot powder", + "yellow onion", + "ground coriander", + "chopped cilantro fresh", + "falafel", + "tahini", + "purple onion", + "firm tofu", + "fresh parsley", + "black pepper", + "sea salt", + "cayenne pepper", + "lemon juice", + "ground cumin" + ] + }, + { + "id": 677, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "whole milk", + "baking soda", + "butter", + "honey", + "baking powder", + "yellow corn meal", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 30885, + "cuisine": "french", + "ingredients": [ + "white bread", + "Tabasco Pepper Sauce", + "cooked chicken", + "swiss cheese", + "chopped fresh chives", + "butter" + ] + }, + { + "id": 41372, + "cuisine": "italian", + "ingredients": [ + "butter", + "white wine", + "garlic", + "arborio rice", + "cheese", + "vegetable stock", + "onions" + ] + }, + { + "id": 35034, + "cuisine": "greek", + "ingredients": [ + "hungarian paprika", + "extra-virgin olive oil", + "feta cheese crumbles", + "large shrimp", + "tomatoes", + "red pepper flakes", + "garlic cloves", + "oregano", + "shallots", + "fresh oregano", + "fresh mint", + "white vermouth", + "sea salt", + "juice", + "plum tomatoes" + ] + }, + { + "id": 1746, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "salt", + "avocado", + "roma tomatoes", + "lime", + "garlic cloves", + "white onion", + "jalapeno chilies" + ] + }, + { + "id": 21826, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "vegetable oil", + "kosher salt", + "fresh oregano leaves", + "fresh mozzarella", + "eggplant" + ] + }, + { + "id": 22122, + "cuisine": "chinese", + "ingredients": [ + "fennel seeds", + "fresh coriander", + "star anise", + "cumin seed", + "dark soy sauce", + "granulated sugar", + "garlic", + "chicken stock", + "light soy sauce", + "dipping sauces", + "cinnamon sticks", + "groundnut", + "dry sherry", + "duck" + ] + }, + { + "id": 15475, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "zucchini", + "cheese", + "yellow onion", + "oregano", + "black pepper", + "vegetable oil", + "canned tomatoes", + "oil", + "ground cumin", + "chipotle chile", + "jalapeno chilies", + "garlic", + "cayenne pepper", + "cumin", + "chicken broth", + "yellow squash", + "cilantro", + "salt", + "corn tortillas" + ] + }, + { + "id": 20019, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "salt", + "milk", + "pepper", + "green chilies", + "eggs", + "flour" + ] + }, + { + "id": 3899, + "cuisine": "southern_us", + "ingredients": [ + "prepared horseradish", + "shallots", + "garlic", + "crawfish", + "grated parmesan cheese", + "heavy cream", + "yellow onion", + "chicken stock", + "dijon mustard", + "butter", + "dry bread crumbs", + "salt and ground black pepper", + "green onions", + "paprika", + "cayenne pepper" + ] + }, + { + "id": 1504, + "cuisine": "filipino", + "ingredients": [ + "milk", + "unflavored gelatin", + "almond extract", + "water" + ] + }, + { + "id": 7068, + "cuisine": "southern_us", + "ingredients": [ + "salt and ground black pepper", + "garlic", + "water", + "mustard greens", + "onions", + "white vinegar", + "cannellini beans", + "mustard powder", + "olive oil", + "crushed red pepper flakes", + "white sugar" + ] + }, + { + "id": 16482, + "cuisine": "japanese", + "ingredients": [ + "mochi", + "nori", + "soy sauce" + ] + }, + { + "id": 7720, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "chili powder", + "stewed tomatoes", + "carrots", + "cabbage", + "pepper", + "beef stock cubes", + "salt", + "onions", + "green bell pepper", + "lean ground beef", + "garlic", + "celery", + "ground cumin", + "bread", + "water", + "crushed red pepper flakes", + "cumin seed", + "dried oregano" + ] + }, + { + "id": 24172, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "oil", + "crushed red pepper", + "water", + "chopped walnuts", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 42732, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "cooked chicken", + "ground coriander", + "onions", + "garam masala", + "vegetable oil", + "fresh lemon juice", + "tumeric", + "lemon wedge", + "garlic cloves", + "basmati rice", + "unsweetened coconut milk", + "bay leaves", + "cayenne pepper", + "low salt chicken broth" + ] + }, + { + "id": 25181, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "lemon juice", + "ground cinnamon", + "apples", + "apple cider", + "white sugar", + "ground cloves", + "ground allspice" + ] + }, + { + "id": 34122, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "anjou pears", + "mint sprigs", + "sugar", + "bourbon whiskey", + "chopped pecans", + "granny smith apples", + "butter", + "fat free frozen top whip", + "phyllo dough", + "cooking spray", + "maple syrup" + ] + }, + { + "id": 13662, + "cuisine": "italian", + "ingredients": [ + "grated orange peel", + "large garlic cloves", + "frozen peas", + "medium shrimp uncook", + "gemelli", + "chopped fresh thyme", + "onions", + "olive oil", + "red bell pepper" + ] + }, + { + "id": 13559, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "thai basil", + "yellow onion", + "thai green curry paste", + "water", + "vegetable oil", + "garlic cloves", + "kosher salt", + "brown rice", + "chickpeas", + "cauliflower", + "lime juice", + "light coconut milk", + "green beans" + ] + }, + { + "id": 22944, + "cuisine": "chinese", + "ingredients": [ + "peanuts", + "crushed red pepper", + "snow peas", + "brown sugar", + "sherry", + "scallions", + "low sodium soy sauce", + "jasmine", + "salt", + "fresh ginger", + "flank steak", + "corn starch" + ] + }, + { + "id": 19865, + "cuisine": "vietnamese", + "ingredients": [ + "coconut sugar", + "garlic", + "water", + "serrano chile", + "fish sauce", + "rice vinegar", + "lime juice" + ] + }, + { + "id": 39505, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "bow-tie pasta", + "pepper", + "crushed red pepper flakes", + "feta cheese crumbles", + "pinenuts", + "sliced black olives", + "lemon juice", + "olive oil", + "salt", + "chopped garlic" + ] + }, + { + "id": 13136, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "light cream", + "butter", + "shredded cheddar cheese", + "dijon mustard", + "all-purpose flour", + "bread crumbs", + "ground black pepper", + "salt", + "milk", + "macaroni" + ] + }, + { + "id": 5152, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "chicken meat", + "fresh dill", + "sweet onion", + "fresh lemon juice", + "bread", + "pepper", + "extra-virgin olive oil", + "plain yogurt", + "kirby cucumbers" + ] + }, + { + "id": 25976, + "cuisine": "southern_us", + "ingredients": [ + "lime", + "mint leaves", + "ale", + "ice cubes", + "bourbon whiskey" + ] + }, + { + "id": 17490, + "cuisine": "mexican", + "ingredients": [ + "low sodium black beans", + "sweet potatoes", + "scallions", + "onions", + "avocado", + "olive oil", + "chili powder", + "corn tortillas", + "fresh cilantro", + "brown rice", + "enchilada sauce", + "ground cumin", + "ground chipotle chile pepper", + "roasted red peppers", + "frozen corn", + "lowfat pepper jack cheese" + ] + }, + { + "id": 45099, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "ricotta cheese", + "garlic cloves", + "tomatoes", + "grated parmesan cheese", + "jumbo pasta shells", + "onions", + "large eggs", + "salt", + "flat leaf parsley", + "tomato sauce", + "lean ground beef", + "fresh mushrooms", + "italian seasoning" + ] + }, + { + "id": 43280, + "cuisine": "southern_us", + "ingredients": [ + "mini marshmallows", + "vanilla extract", + "sugar", + "sweet potatoes", + "salt", + "brown sugar", + "large eggs", + "cornflake cereal", + "milk", + "butter", + "chopped pecans" + ] + }, + { + "id": 17074, + "cuisine": "jamaican", + "ingredients": [ + "butternut squash", + "yellow split peas", + "waxy potatoes", + "vegetable stock", + "cayenne pepper", + "coconut milk", + "fresh corn", + "scotch bonnet chile", + "sweet corn", + "thyme sprigs", + "olive oil", + "red pepper", + "garlic cloves", + "onions" + ] + }, + { + "id": 23754, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "cheese tortellini", + "fresh parsley leaves", + "shredded cheddar cheese", + "ground black pepper", + "garlic", + "onions", + "kosher salt", + "olive oil", + "crushed red pepper flakes", + "ground beef", + "crushed tomatoes", + "diced tomatoes", + "shredded mozzarella cheese", + "dried oregano" + ] + }, + { + "id": 33772, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "french bread", + "salt", + "onions", + "green bell pepper", + "green onions", + "all-purpose flour", + "black pepper", + "ground red pepper", + "garlic cloves", + "chicken broth", + "file powder", + "vegetable oil", + "shrimp" + ] + }, + { + "id": 38551, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "milk", + "salt", + "vanilla ice cream", + "butter", + "chopped pecans", + "brown sugar", + "self rising flour", + "hot water", + "sugar", + "vanilla extract", + "unsweetened cocoa powder" + ] + }, + { + "id": 48114, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "mexicorn", + "rotini", + "black beans", + "green onions", + "red bell pepper", + "ground cumin", + "garlic powder", + "cilantro", + "sour cream", + "mayonaise", + "sliced black olives", + "salt", + "chunky salsa" + ] + }, + { + "id": 19553, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "spaghetti", + "unsalted butter", + "Italian seasoned breadcrumbs", + "boneless skinless chicken breasts", + "grated parmesan cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 16180, + "cuisine": "jamaican", + "ingredients": [ + "ground black pepper", + "cod fish", + "tomatoes", + "baking powder", + "green onions", + "all-purpose flour", + "water", + "vegetable oil" + ] + }, + { + "id": 24494, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "fresh basil", + "balsamic vinegar", + "garlic cloves", + "olive oil", + "purple onion", + "feta cheese crumbles", + "tomatoes", + "fennel bulb", + "chickpeas" + ] + }, + { + "id": 46306, + "cuisine": "italian", + "ingredients": [ + "assorted fresh vegetables", + "unsalted butter", + "anchovy fillets", + "olive oil", + "large garlic cloves", + "french bread" + ] + }, + { + "id": 45718, + "cuisine": "italian", + "ingredients": [ + "water", + "flat leaf parsley", + "capers", + "red cabbage", + "olive oil", + "minced garlic", + "red wine vinegar" + ] + }, + { + "id": 13655, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "olive oil", + "all-purpose flour", + "capers", + "water", + "lemon wedge", + "fresh lemon juice", + "black pepper", + "large egg whites", + "salt", + "seasoned bread crumbs", + "veal cutlets", + "grated lemon zest" + ] + }, + { + "id": 1715, + "cuisine": "russian", + "ingredients": [ + "powdered sugar", + "egg whites", + "meringue", + "dried fruit", + "egg yolks", + "sour cream", + "dough", + "unsalted butter", + "walnuts", + "sugar", + "flour", + "flour for dusting" + ] + }, + { + "id": 23800, + "cuisine": "southern_us", + "ingredients": [ + "whipping cream", + "water", + "condensed milk", + "vanilla wafers", + "bananas", + "vanilla instant pudding" + ] + }, + { + "id": 10801, + "cuisine": "cajun_creole", + "ingredients": [ + "bell pepper", + "garlic", + "large shrimp", + "unsalted butter", + "cajun seasoning", + "okra pods", + "green onions", + "cream cheese", + "grated parmesan cheese", + "toasted baguette", + "celery" + ] + }, + { + "id": 22127, + "cuisine": "italian", + "ingredients": [ + "butter", + "grated parmesan cheese", + "loaves", + "garlic cloves", + "parsley" + ] + }, + { + "id": 11241, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "roasted red peppers", + "garlic cloves", + "parmesan cheese", + "extra-virgin olive oil", + "plum tomatoes", + "eggplant", + "basil", + "oregano", + "nutmeg", + "mascarpone", + "ricotta" + ] + }, + { + "id": 29259, + "cuisine": "brazilian", + "ingredients": [ + "white wine", + "sea scallops", + "yellow onion", + "mussels, well scrubbed", + "toast", + "fish fillets", + "coconut", + "white rice", + "freshly ground pepper", + "shrimp", + "broth", + "saffron threads", + "dry roasted peanuts", + "unsalted butter", + "ground coriander", + "fresh lemon juice", + "chopped cilantro fresh", + "chiles", + "fresh ginger", + "plums", + "garlic cloves", + "coconut milk" + ] + }, + { + "id": 28180, + "cuisine": "french", + "ingredients": [ + "Belgian endive", + "radicchio", + "salt", + "frisee", + "black pepper", + "tawny port", + "fresh lemon juice", + "white sandwich bread", + "sugar", + "sherry vinegar", + "mie", + "walnut oil", + "verjus", + "foie gras terrine", + "fleur de sel" + ] + }, + { + "id": 39314, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "jalapeno chilies", + "chopped cilantro", + "fresh tomatoes", + "corn kernels", + "salt", + "cumin", + "lime", + "green onions", + "coriander", + "black beans", + "orange bell pepper", + "english cucumber", + "canola oil" + ] + }, + { + "id": 35242, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "milk", + "margarine", + "warm water", + "egg yolks", + "yeast", + "brown sugar", + "flour", + "white sugar", + "bread crumbs", + "salt" + ] + }, + { + "id": 42739, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "large eggs", + "salsa", + "corn tortillas", + "kosher salt", + "cilantro", + "cayenne pepper", + "ground cumin", + "black beans", + "butter", + "hot sauce", + "monterey jack", + "avocado", + "lime", + "cheese", + "sour cream" + ] + }, + { + "id": 19332, + "cuisine": "filipino", + "ingredients": [ + "Velveeta", + "potatoes", + "pineapple juice", + "red bell pepper", + "green bell pepper", + "pepper", + "garlic", + "oil", + "chicken", + "green olives", + "soy sauce", + "thai chile", + "sauce", + "onions", + "tomato sauce", + "water", + "salt", + "carrots" + ] + }, + { + "id": 45140, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "cilantro", + "cheddar cheese", + "sweet potatoes", + "corn tortillas", + "spinach", + "feta cheese", + "cheese", + "black beans", + "red pepper", + "onions" + ] + }, + { + "id": 26389, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "chicken breasts", + "non-fat sour cream", + "ground cumin", + "black beans", + "cooking spray", + "tomatillos", + "red bell pepper", + "reduced fat monterey jack cheese", + "corn kernels", + "chili powder", + "garlic cloves", + "pepper", + "green onions", + "cilantro sprigs", + "poblano chiles" + ] + }, + { + "id": 28593, + "cuisine": "moroccan", + "ingredients": [ + "chicken broth", + "zucchini", + "currant", + "salt", + "onions", + "eggplant", + "cinnamon", + "cauliflower florets", + "carrots", + "cumin", + "black pepper", + "vegetable oil", + "stewed tomatoes", + "cayenne pepper", + "coriander", + "garbanzo beans", + "butter", + "garlic", + "toasted almonds" + ] + }, + { + "id": 33079, + "cuisine": "japanese", + "ingredients": [ + "nori", + "water", + "short-grain rice" + ] + }, + { + "id": 32641, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "dried basil", + "chicken breasts", + "onions", + "flavored rice mix", + "shredded cheddar cheese", + "diced green chilies", + "lime wedges", + "ground cumin", + "pepper", + "salted butter", + "chili powder", + "long grain white rice", + "chicken broth", + "water", + "guacamole", + "sour cream" + ] + }, + { + "id": 9456, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "salsa", + "oregano", + "tortillas", + "mild green chiles", + "enchilada sauce", + "quinoa", + "red pepper", + "shredded cheese", + "cumin", + "spinach", + "roma tomatoes", + "garlic", + "onions" + ] + }, + { + "id": 43819, + "cuisine": "mexican", + "ingredients": [ + "part-skim mozzarella cheese", + "onion powder", + "fresh parsley", + "frozen chopped spinach", + "ground nutmeg", + "chopped onion", + "garlic powder", + "condensed cream of mushroom soup", + "boneless skinless chicken breast halves", + "milk", + "flour tortillas", + "sour cream" + ] + }, + { + "id": 20535, + "cuisine": "indian", + "ingredients": [ + "masoor dal", + "cilantro leaves", + "mustard seeds", + "serrano peppers", + "cayenne pepper", + "ginger root", + "pepper", + "salt", + "mustard oil", + "onions", + "tomatoes", + "ground tumeric", + "cumin seed", + "ghee" + ] + }, + { + "id": 10271, + "cuisine": "italian", + "ingredients": [ + "parsley sprigs", + "unsalted butter", + "seafood glaze", + "all-purpose flour", + "oven-ready lasagna noodles", + "water", + "dry white wine", + "chopped celery", + "fresh lemon juice", + "black pepper", + "chopped fresh chives", + "heavy cream", + "cognac", + "medium shrimp", + "tomato paste", + "sea scallops", + "shallots", + "salt", + "carrots" + ] + }, + { + "id": 21986, + "cuisine": "mexican", + "ingredients": [ + "shredded cabbage", + "salsa", + "onions", + "kosher salt", + "cilantro leaves", + "poblano chiles", + "jack cheese", + "vegetable oil", + "sour cream", + "flour tortillas", + "nopales", + "fresh lime juice" + ] + }, + { + "id": 27605, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "rice vinegar", + "soy sauce", + "grapeseed oil", + "boneless chicken breast", + "scallions", + "honey", + "red pepper" + ] + }, + { + "id": 23210, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "boneless skinless chicken", + "ragu", + "italian seasoning", + "eggs", + "shredded mozzarella cheese", + "paprika" + ] + }, + { + "id": 27319, + "cuisine": "italian", + "ingredients": [ + "eggs", + "garlic powder", + "chicken thighs", + "pepper", + "salt", + "fresh basil", + "grated parmesan cheese", + "saltines", + "olive oil", + "heavy whipping cream" + ] + }, + { + "id": 6470, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "peeled fresh ginger", + "okra", + "water", + "salt", + "juice", + "curry powder", + "chickpeas", + "onions", + "black pepper", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 3034, + "cuisine": "chinese", + "ingredients": [ + "light brown sugar", + "rice vinegar", + "pineapple", + "worcestershire sauce", + "ketchup", + "corn starch" + ] + }, + { + "id": 22060, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "jalapeno chilies", + "paprika", + "freshly ground pepper", + "fresh cilantro", + "chili powder", + "salt", + "cumin", + "chicken stock", + "boneless skinless chicken breasts", + "garlic", + "dried oregano", + "bell pepper", + "diced tomatoes", + "yellow onion" + ] + }, + { + "id": 15853, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "monterey jack", + "green onions", + "large eggs", + "bread ciabatta", + "sweet italian sausage" + ] + }, + { + "id": 32557, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "minced garlic", + "sea bass fillets", + "plum tomatoes", + "chopped fresh thyme", + "fresh oregano", + "olive oil", + "lemon" + ] + }, + { + "id": 21971, + "cuisine": "british", + "ingredients": [ + "eggs", + "prosciutto", + "shallots", + "puff pastry", + "kosher salt", + "dijon mustard", + "dry red wine", + "cremini mushrooms", + "unsalted butter", + "cracked black pepper", + "olive oil", + "beef stock", + "beef tenderloin" + ] + }, + { + "id": 42572, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "bourbon whiskey", + "water", + "fresh mint" + ] + }, + { + "id": 12547, + "cuisine": "korean", + "ingredients": [ + "sugar", + "sesame oil", + "onions", + "eggs", + "water", + "firm tofu", + "sliced green onions", + "pork belly", + "Gochujang base", + "toasted sesame seeds", + "fish sauce", + "green onions", + "kimchi" + ] + }, + { + "id": 25365, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "freshly ground pepper", + "dry mustard", + "fresh parsley", + "green onions", + "lemon juice", + "red potato", + "salt" + ] + }, + { + "id": 39659, + "cuisine": "chinese", + "ingredients": [ + "egg whites", + "wonton wrappers", + "fresh lime juice", + "salt and ground black pepper", + "green onions", + "garlic", + "soy sauce", + "pork tenderloin", + "crushed red pepper flakes", + "fresh ginger root", + "sesame oil", + "peanut oil" + ] + }, + { + "id": 40185, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "vanilla extract", + "heavy cream", + "brown sugar", + "white sugar" + ] + }, + { + "id": 46220, + "cuisine": "british", + "ingredients": [ + "pastry", + "salt", + "potatoes", + "onions", + "ground black pepper", + "round steaks", + "butter" + ] + }, + { + "id": 38045, + "cuisine": "indian", + "ingredients": [ + "peeled fresh ginger", + "cilantro sprigs", + "fresh lemon juice", + "ground cumin", + "peeled tomatoes", + "vegetable oil", + "ground coriander", + "chopped cilantro fresh", + "cooked rice", + "chili powder", + "salt", + "chicken thighs", + "finely chopped onion", + "baking potatoes", + "garlic cloves", + "ground turmeric" + ] + }, + { + "id": 8199, + "cuisine": "filipino", + "ingredients": [ + "won ton wrappers", + "ground pork", + "shrimp", + "ground black pepper", + "salt", + "white mushrooms", + "eggs", + "water chestnuts", + "scallions", + "onions", + "water", + "sesame oil", + "carrots" + ] + }, + { + "id": 32448, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "cumin", + "queso fresco", + "chili powder", + "tomatoes", + "cilantro sprigs" + ] + }, + { + "id": 12983, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "ground black pepper", + "garlic cloves", + "artichoke hearts", + "salt", + "olive oil", + "vegetable broth", + "onions", + "fresh basil", + "feta cheese", + "penne pasta" + ] + }, + { + "id": 43174, + "cuisine": "italian", + "ingredients": [ + "frozen pizza dough", + "extra-virgin olive oil", + "basil leaves", + "tomatoes", + "shredded mozzarella cheese" + ] + }, + { + "id": 40481, + "cuisine": "spanish", + "ingredients": [ + "low-sodium fat-free chicken broth", + "shrimp", + "rice", + "sliced green onions", + "green peas", + "chorizo sausage", + "rotelle", + "chicken fingers", + "ground cumin" + ] + }, + { + "id": 48952, + "cuisine": "greek", + "ingredients": [ + "vegetable oil", + "hot water", + "ground black pepper", + "salt", + "dried oregano", + "olive oil", + "garlic", + "fresh parsley", + "potatoes", + "fresh lemon juice" + ] + }, + { + "id": 30461, + "cuisine": "cajun_creole", + "ingredients": [ + "red kidney beans", + "minced garlic", + "red beans", + "bacon fat", + "sliced green onions", + "sugar", + "bell pepper", + "smoked sausage", + "diced celery", + "diced onions", + "black pepper", + "flour", + "salt", + "chopped parsley", + "granulated garlic", + "water", + "vegetable oil", + "long-grain rice" + ] + }, + { + "id": 35217, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "egg yolks", + "light corn syrup", + "sugar", + "unsalted butter", + "bourbon whiskey", + "cake flour", + "grated coconut", + "egg whites", + "raisins", + "chopped pecans", + "cream of tartar", + "milk", + "baking powder", + "vanilla extract" + ] + }, + { + "id": 30376, + "cuisine": "chinese", + "ingredients": [ + "sambal ulek", + "sesame oil", + "cilantro leaves", + "chinese five-spice powder", + "water", + "fresh green bean", + "peanut oil", + "beansprouts", + "soy sauce", + "snow pea shoots", + "boneless pork loin", + "garlic cloves", + "green cabbage", + "mango chutney", + "purple onion", + "gingerroot" + ] + }, + { + "id": 22796, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "white sugar", + "self rising flour", + "mayonaise" + ] + }, + { + "id": 24168, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "corn", + "chili powder", + "chopped garlic", + "black beans", + "flour tortillas", + "onions", + "black pepper", + "peeled tomatoes", + "scallions", + "canola oil", + "kosher salt", + "sweet potatoes", + "dried oregano" + ] + }, + { + "id": 15793, + "cuisine": "italian", + "ingredients": [ + "sausage links", + "rolls", + "spinach", + "ground red pepper", + "olive oil", + "garlic cloves", + "vegetable oil cooking spray", + "salt" + ] + }, + { + "id": 21147, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "garlic", + "oil", + "tomatoes", + "eggplant", + "green chilies", + "ground turmeric", + "red chili powder", + "garam masala", + "cumin seed", + "ground cumin", + "olive oil", + "salt", + "onions" + ] + }, + { + "id": 30217, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "salt", + "dried oregano", + "tomatoes", + "olive oil", + "fresh lemon juice", + "green bell pepper", + "purple onion", + "feta cheese crumbles", + "pepper", + "english cucumber" + ] + }, + { + "id": 34534, + "cuisine": "spanish", + "ingredients": [ + "pork baby back ribs", + "potatoes", + "shanks", + "kale", + "spanish chorizo", + "pancetta", + "garbanzo beans", + "ham", + "water", + "leeks", + "skirt steak" + ] + }, + { + "id": 29385, + "cuisine": "italian", + "ingredients": [ + "fresh blueberries", + "granita", + "lemon rind", + "sugar", + "strawberries", + "water", + "lemon juice" + ] + }, + { + "id": 45644, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "chopped onion", + "egg substitute", + "salt", + "small red potato", + "bacon slices", + "garlic cloves", + "ground black pepper", + "reduced fat swiss cheese", + "red bell pepper" + ] + }, + { + "id": 46645, + "cuisine": "french", + "ingredients": [ + "chopped walnuts", + "brown sugar", + "white sugar", + "ground cinnamon", + "orange juice", + "vanilla extract", + "pears" + ] + }, + { + "id": 297, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "buttermilk", + "eggs", + "flour", + "cornmeal", + "baking soda", + "salt", + "shortening", + "butter" + ] + }, + { + "id": 16930, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "cayenne", + "oil", + "milk", + "paprika", + "cornmeal", + "black pepper", + "flour", + "celery seed", + "garlic powder", + "salt" + ] + }, + { + "id": 7506, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "Shaoxing wine", + "soy sauce", + "garlic cloves", + "water", + "red chili peppers", + "sesame oil" + ] + }, + { + "id": 24777, + "cuisine": "japanese", + "ingredients": [ + "garlic", + "sugar", + "red miso", + "sake", + "chili bean sauce", + "mirin", + "skirt steak" + ] + }, + { + "id": 43038, + "cuisine": "british", + "ingredients": [ + "milk", + "raisins", + "confectioners sugar", + "suet", + "all-purpose flour", + "baking soda", + "vanilla extract", + "molasses", + "egg whites", + "lemon juice" + ] + }, + { + "id": 14569, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "vegetable oil", + "ginger", + "waxy potatoes", + "chicken thighs", + "coconut flakes", + "cayenne", + "diced tomatoes", + "cilantro leaves", + "onions", + "chicken broth", + "garam masala", + "chicken drumsticks", + "salt", + "cinnamon sticks", + "cumin", + "black pepper", + "lemon", + "garlic", + "carrots", + "coriander" + ] + }, + { + "id": 36924, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "shredded swiss cheese", + "all-purpose flour", + "cooking spray", + "diced tomatoes", + "garlic cloves", + "flour tortillas", + "2% reduced-fat milk", + "chopped onion", + "boneless skinless chicken breasts", + "salt" + ] + }, + { + "id": 46042, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "cayenne pepper", + "eggs", + "baking powder", + "canola oil", + "saltines", + "flour", + "steak", + "pepper", + "salt" + ] + }, + { + "id": 16010, + "cuisine": "mexican", + "ingredients": [ + "water", + "vegetable oil", + "cotija", + "green onions", + "corn tortillas", + "eggs", + "refried beans", + "salsa", + "jack cheese", + "Mexican oregano" + ] + }, + { + "id": 25315, + "cuisine": "southern_us", + "ingredients": [ + "wheat bread", + "apples", + "water", + "brown sugar", + "salted butter" + ] + }, + { + "id": 49470, + "cuisine": "japanese", + "ingredients": [ + "sesame oil", + "clear honey", + "cornflour", + "dark soy sauce", + "dry sherry", + "boneless skinless chicken breasts", + "stir fry vegetable blend" + ] + }, + { + "id": 24808, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "baking soda", + "salt", + "sugar", + "baking powder", + "yellow onion", + "eggs", + "cayenne", + "all-purpose flour", + "milk", + "buttermilk", + "canola oil" + ] + }, + { + "id": 17172, + "cuisine": "french", + "ingredients": [ + "pepper", + "gruyere cheese", + "french bread", + "beef broth", + "beef consomme", + "salt", + "romano cheese", + "butter", + "yellow onion" + ] + }, + { + "id": 41827, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "cold water", + "boiling water", + "cornmeal", + "salt" + ] + }, + { + "id": 21983, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "ground black pepper", + "coarse salt", + "fresh oregano", + "olive oil", + "large eggs", + "whipping cream", + "spaghetti", + "sweet onion", + "whole peeled tomatoes", + "crushed red pepper flakes", + "ground turkey", + "fresh basil", + "freshly grated parmesan", + "lean ground beef", + "dry bread crumbs" + ] + }, + { + "id": 8454, + "cuisine": "jamaican", + "ingredients": [ + "water", + "cream of tartar", + "minced ginger", + "lime juice", + "brown sugar" + ] + }, + { + "id": 29303, + "cuisine": "italian", + "ingredients": [ + "dry red wine", + "veal for stew", + "dried sage", + "extra-virgin olive oil", + "red bell pepper", + "capers", + "tomatoes with juice", + "garlic cloves", + "butter", + "all-purpose flour" + ] + }, + { + "id": 36068, + "cuisine": "southern_us", + "ingredients": [ + "beef bouillon", + "all-purpose flour", + "water", + "bacon", + "onions", + "pepper", + "chopped fresh chives", + "medium shrimp", + "evaporated milk", + "salt", + "garlic salt" + ] + }, + { + "id": 35440, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "butter", + "olive oil", + "fresh mushrooms", + "seasoning salt", + "all-purpose flour", + "veal cutlets" + ] + }, + { + "id": 30141, + "cuisine": "chinese", + "ingredients": [ + "gai lan", + "fresh ginger", + "rice wine", + "soy sauce", + "green onions", + "chinese five-spice powder", + "sugar", + "beef shank", + "beef broth", + "tomato paste", + "water", + "bean paste", + "noodles" + ] + }, + { + "id": 4327, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "extra-virgin olive oil", + "ground pepper", + "yellow onion", + "coarse salt", + "long grain white rice", + "cider vinegar", + "smoked bratwurst" + ] + }, + { + "id": 28175, + "cuisine": "italian", + "ingredients": [ + "pesto", + "butter", + "carrots", + "cabbage", + "canned low sodium chicken broth", + "ground black pepper", + "salt", + "onions", + "tomato paste", + "olive oil", + "garlic", + "celery", + "sole fillet", + "zucchini", + "pinto beans", + "boiling potatoes" + ] + }, + { + "id": 32769, + "cuisine": "italian", + "ingredients": [ + "capers", + "tilapia fillets", + "all-purpose flour", + "black pepper", + "orzo", + "fresh parsley", + "white wine", + "salt", + "grape tomatoes", + "butter", + "fresh lemon juice" + ] + }, + { + "id": 24309, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "salsa", + "ground beef", + "tomatoes", + "shredded lettuce", + "potato flakes", + "butter", + "chopped onion", + "milk", + "shredded sharp cheddar cheese", + "sour cream" + ] + }, + { + "id": 583, + "cuisine": "russian", + "ingredients": [ + "seasoning", + "all-purpose flour", + "onions", + "sugar", + "cream cheese", + "eggs", + "lean beef", + "boiling water", + "salt", + "jelly" + ] + }, + { + "id": 12241, + "cuisine": "british", + "ingredients": [ + "new potatoes", + "salt", + "chillies", + "groundnut", + "ginger", + "garlic cloves", + "coriander", + "tumeric", + "chili powder", + "ground coriander", + "onions", + "cooking oil", + "passata", + "sausages", + "ground cumin" + ] + }, + { + "id": 40976, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "vegetable oil", + "scallions", + "cabbage", + "eggs", + "ground black pepper", + "chili oil", + "red bell pepper", + "tofu", + "black bean garlic sauce", + "butter", + "Chinese egg noodles", + "soy sauce", + "Sriracha", + "garlic sauce", + "onions" + ] + }, + { + "id": 19793, + "cuisine": "southern_us", + "ingredients": [ + "shredded swiss cheese", + "sweet onion", + "mayonaise", + "hot sauce", + "grated parmesan cheese" + ] + }, + { + "id": 42717, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "finely chopped onion", + "chives", + "dry sherry", + "carrots", + "soy sauce", + "green lentil", + "mushrooms", + "fresh thyme leaves", + "all-purpose flour", + "bay leaf", + "tomato paste", + "ground nutmeg", + "low-fat buttermilk", + "yukon gold potatoes", + "salt", + "celery", + "water", + "ground black pepper", + "ground red pepper", + "white truffle oil", + "organic vegetable broth" + ] + }, + { + "id": 28590, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "salsa", + "olive oil", + "bonito", + "lime juice", + "mackerel", + "rub", + "radishes", + "scallions" + ] + }, + { + "id": 18103, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "flour tortillas", + "shrimp", + "pepper", + "green onions", + "chopped cilantro fresh", + "avocado", + "jalapeno chilies", + "sour cream", + "lime juice", + "salt", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 3566, + "cuisine": "mexican", + "ingredients": [ + "unsweetened coconut milk", + "triple sec", + "sweetened coconut flakes", + "water", + "whole milk", + "vanilla beans", + "vegetable oil", + "sugar", + "large egg yolks" + ] + }, + { + "id": 20555, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "pepper", + "pineapple", + "salt", + "red bell pepper", + "tomato sauce", + "hard-boiled egg", + "luncheon meat", + "oil", + "pork butt", + "sweet pickle relish", + "water", + "green peas", + "liver", + "onions", + "bread crumbs", + "raisins", + "garlic", + "carrots", + "pineapple slices" + ] + }, + { + "id": 38661, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "cilantro", + "celery", + "low-fat sour cream", + "lemon", + "juice", + "pepper", + "garlic", + "plum tomatoes", + "avocado", + "extra large shrimp", + "purple onion", + "ground cumin" + ] + }, + { + "id": 49296, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "heavy cream", + "caramels", + "white sugar", + "pecans", + "apples", + "butter" + ] + }, + { + "id": 10169, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "fresh parsley", + "leeks", + "boneless pork loin", + "water", + "salt", + "black pepper", + "butter" + ] + }, + { + "id": 34226, + "cuisine": "italian", + "ingredients": [ + "garlic cloves", + "hot red pepper flakes", + "nonfat chicken broth", + "broccoli rabe", + "red bell pepper" + ] + }, + { + "id": 44243, + "cuisine": "southern_us", + "ingredients": [ + "white cornmeal", + "buttermilk", + "eggs", + "canola oil", + "salt" + ] + }, + { + "id": 14412, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "cayenne pepper", + "ground black pepper", + "fresh lemon juice", + "white vinegar", + "salt", + "prepared horseradish", + "apple juice" + ] + }, + { + "id": 25890, + "cuisine": "italian", + "ingredients": [ + "fava beans", + "ground black pepper", + "russet potatoes", + "flat leaf parsley", + "plum tomatoes", + "fresh spinach", + "zucchini", + "fresh green bean", + "celery", + "olive oil", + "leeks", + "carrots", + "frozen peas", + "pesto", + "parmigiano reggiano cheese", + "salt", + "onions" + ] + }, + { + "id": 21739, + "cuisine": "greek", + "ingredients": [ + "fresh mint", + "whole milk greek yogurt", + "honey", + "lemon juice" + ] + }, + { + "id": 10953, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "parmesan cheese", + "chopped fresh chives", + "ricotta", + "flat leaf parsley", + "boneless chicken skinless thigh", + "large eggs", + "all-purpose flour", + "carrots", + "kosher salt", + "grated parmesan cheese", + "grated nutmeg", + "low salt chicken broth", + "parsnips", + "unsalted butter", + "leeks", + "freshly ground pepper" + ] + }, + { + "id": 26607, + "cuisine": "southern_us", + "ingredients": [ + "cooked chicken", + "all-purpose flour", + "canola oil", + "sweet onion", + "buttermilk", + "freshly ground pepper", + "sugar", + "butter", + "chopped fresh sage", + "large eggs", + "chopped celery", + "white cornmeal" + ] + }, + { + "id": 4025, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cinnamon", + "peaches", + "vanilla", + "milk", + "butter", + "sugar", + "self rising flour", + "corn starch" + ] + }, + { + "id": 31742, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "butter", + "warm water", + "salt", + "large eggs", + "all-purpose flour", + "sugar", + "rapid rise yeast" + ] + }, + { + "id": 43492, + "cuisine": "italian", + "ingredients": [ + "cream", + "carbonated water", + "flavored syrup" + ] + }, + { + "id": 9516, + "cuisine": "chinese", + "ingredients": [ + "stock", + "sesame oil", + "oyster sauce", + "shiitake", + "salt", + "bok choy", + "light soy sauce", + "vegetable oil", + "corn starch", + "cooking oil", + "garlic cloves" + ] + }, + { + "id": 47376, + "cuisine": "italian", + "ingredients": [ + "cold water", + "baking powder", + "deli ham", + "sweet italian sausage", + "pepperoni slices", + "vegetable oil", + "salt", + "fresh parsley", + "grated parmesan cheese", + "ricotta cheese", + "all-purpose flour", + "eggs", + "salami", + "butter", + "shredded mozzarella cheese" + ] + }, + { + "id": 7497, + "cuisine": "indian", + "ingredients": [ + "water", + "lemon", + "cardamon", + "milk", + "sugar", + "pistachio nuts" + ] + }, + { + "id": 20369, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "fresh ginger", + "lemon", + "ground coriander", + "cooking fat", + "water", + "ground black pepper", + "crushed red pepper flakes", + "carrots", + "frozen peas", + "cauliflower", + "curry powder", + "boneless skinless chicken breasts", + "raw cashews", + "red bell pepper", + "ground cumin", + "red potato", + "full fat coconut milk", + "sea salt", + "garlic cloves", + "onions" + ] + }, + { + "id": 37361, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "tomatillos", + "ground turmeric", + "sugar", + "celery seed", + "green bell pepper", + "salt", + "cabbage", + "green tomatoes", + "onions" + ] + }, + { + "id": 18061, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "hoisin sauce", + "english cucumber", + "toasted sesame oil", + "serrano chile", + "rice stick noodles", + "lime juice", + "cilantro sprigs", + "garlic cloves", + "mung bean sprouts", + "water", + "lettuce leaves", + "scallions", + "medium shrimp", + "rice paper", + "garlic paste", + "granulated sugar", + "creamy peanut butter", + "fresh mint", + "fresh basil leaves" + ] + }, + { + "id": 25986, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "garlic cloves", + "salt", + "chopped cilantro", + "avocado leaves", + "juice", + "pepper", + "freshly ground pepper", + "short rib" + ] + }, + { + "id": 35697, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "pepper", + "sesame oil", + "soy sauce", + "sesame seeds", + "salt", + "sugar", + "honey", + "cornflour", + "white vinegar", + "ketchup", + "chicken breasts", + "rice" + ] + }, + { + "id": 14793, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "extra-virgin olive oil", + "flat leaf parsley", + "bread crumb fresh", + "coarse salt", + "freshly ground pepper", + "polenta", + "tomatoes", + "dry white wine", + "garlic", + "onions", + "calamari", + "bacon", + "poblano chiles" + ] + }, + { + "id": 878, + "cuisine": "italian", + "ingredients": [ + "eggs", + "potatoes", + "water", + "onions", + "pepper", + "salt", + "olive oil" + ] + }, + { + "id": 15561, + "cuisine": "southern_us", + "ingredients": [ + "white sugar", + "boiling water", + "tea bags", + "lime" + ] + }, + { + "id": 46009, + "cuisine": "mexican", + "ingredients": [ + "white hominy", + "salt", + "garlic cloves", + "masa harina", + "fat free less sodium chicken broth", + "baking powder", + "turkey tenderloins", + "adobo sauce", + "water", + "vegetable oil", + "chopped onion", + "chopped cilantro fresh", + "chipotle chile", + "cooking spray", + "all-purpose flour", + "poblano chiles" + ] + }, + { + "id": 16491, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "tomatillos", + "lime", + "juice", + "kosher salt", + "cilantro leaves", + "jalapeno chilies" + ] + }, + { + "id": 44759, + "cuisine": "mexican", + "ingredients": [ + "water", + "jalapeno chilies", + "salt", + "fresh lime juice", + "avocado", + "garlic powder", + "onion powder", + "chickpeas", + "ground cumin", + "cauliflower", + "olive oil", + "chili powder", + "greek style plain yogurt", + "chopped cilantro", + "pepper", + "red cabbage", + "sea salt", + "corn tortillas" + ] + }, + { + "id": 38846, + "cuisine": "italian", + "ingredients": [ + "capers", + "parmesan cheese", + "salt", + "olive oil", + "grated parmesan cheese", + "arugula", + "penne", + "ground black pepper", + "roast beef", + "radicchio", + "balsamic vinegar" + ] + }, + { + "id": 46985, + "cuisine": "italian", + "ingredients": [ + "crushed garlic", + "all-purpose flour", + "spaghetti", + "ground black pepper", + "diced tomatoes", + "onions", + "chicken", + "butter", + "Burgundy wine", + "italian seasoning", + "green bell pepper, slice", + "salt", + "garlic salt" + ] + }, + { + "id": 48321, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "salt", + "shrimp shells", + "ground black pepper", + "garlic", + "chopped parsley", + "dried thyme", + "Tabasco Pepper Sauce", + "cayenne pepper", + "dried oregano", + "whole grain mustard", + "worcestershire sauce", + "scallions" + ] + }, + { + "id": 46969, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "carrots", + "sliced green onions", + "avocado", + "white wine vinegar", + "corn tortillas", + "no-salt-added black beans", + "red bell pepper", + "romaine lettuce", + "toasted pumpkinseeds", + "chopped cilantro fresh" + ] + }, + { + "id": 16440, + "cuisine": "italian", + "ingredients": [ + "round loaf", + "grated parmesan cheese", + "large garlic cloves", + "flat leaf parsley", + "clove", + "ground black pepper", + "pecorino romano cheese", + "carrots", + "fresh rosemary", + "cannellini beans", + "chopped fresh sage", + "bay leaf", + "celery ribs", + "olive oil", + "butter", + "garlic cloves", + "onions" + ] + }, + { + "id": 47097, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "Anaheim chile", + "sauce", + "dark soy sauce", + "ground chicken", + "vegetable oil", + "plum tomatoes", + "sugar", + "rice noodles", + "garlic cloves", + "green bell pepper", + "thai basil", + "thai chile" + ] + }, + { + "id": 14040, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "beefsteak tomatoes", + "cucumber", + "green chile", + "shell-on shrimp", + "cilantro leaves", + "fresh lime juice", + "sugar", + "basil leaves", + "scallions", + "asian fish sauce", + "lime", + "salt", + "red bell pepper" + ] + }, + { + "id": 2286, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "red wine vinegar", + "sweet onion", + "bell pepper", + "fresh mint", + "eggplant", + "marinade", + "pinenuts", + "zucchini", + "salt" + ] + }, + { + "id": 13060, + "cuisine": "italian", + "ingredients": [ + "russet potatoes", + "canola oil", + "garlic", + "coarse sea salt", + "cooking spray", + "flat leaf parsley" + ] + }, + { + "id": 30887, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "olive oil", + "Italian seasoned breadcrumbs", + "salt", + "garlic powder", + "bone in chicken thighs" + ] + }, + { + "id": 45288, + "cuisine": "french", + "ingredients": [ + "table salt", + "dry white wine", + "flat leaf parsley", + "unsalted butter", + "garlic cloves", + "black pepper", + "shallots", + "kosher salt", + "snails" + ] + }, + { + "id": 46804, + "cuisine": "french", + "ingredients": [ + "curly-leaf parsley", + "yellow onion", + "thyme", + "flour", + "garlic cloves", + "beef", + "round steaks", + "cabernet", + "white button mushrooms", + "bacon", + "carrots" + ] + }, + { + "id": 21869, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "taco seasoning", + "cheese", + "corn", + "pearl couscous", + "hamburger" + ] + }, + { + "id": 14458, + "cuisine": "filipino", + "ingredients": [ + "rib eye steaks", + "pepper", + "garlic", + "sugar", + "butter", + "hot red pepper flakes", + "olive oil", + "salt", + "soy sauce", + "worcestershire sauce" + ] + }, + { + "id": 18839, + "cuisine": "chinese", + "ingredients": [ + "medium egg noodles", + "red pepper", + "king prawns", + "coriander", + "soy sauce", + "broccoli stems", + "skinless chicken breasts", + "beansprouts", + "red chili peppers", + "spring onions", + "sunflower oil", + "baby corn", + "fresh ginger", + "lime wedges", + "garlic cloves", + "curry paste" + ] + }, + { + "id": 36535, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "olive oil", + "red pepper flakes", + "soy sauce", + "ground black pepper", + "medium shrimp", + "penne", + "parmesan cheese", + "garlic", + "kosher salt", + "green onions" + ] + }, + { + "id": 30668, + "cuisine": "spanish", + "ingredients": [ + "hazelnuts", + "cubed bread", + "blanched almonds", + "chili", + "large garlic cloves", + "roast red peppers, drain", + "kosher salt", + "red wine vinegar", + "country bread", + "olive oil", + "extra-virgin olive oil", + "plum tomatoes" + ] + }, + { + "id": 271, + "cuisine": "thai", + "ingredients": [ + "fat free less sodium chicken broth", + "green curry paste", + "cilantro sprigs", + "fish sauce", + "jasmine rice", + "lime wedges", + "red bell pepper", + "brown sugar", + "water", + "green peas", + "turkey breast", + "kosher salt", + "butternut squash", + "light coconut milk" + ] + }, + { + "id": 4959, + "cuisine": "greek", + "ingredients": [ + "salt", + "pepper", + "greek yogurt", + "feta cheese", + "fresh dill", + "english cucumber" + ] + }, + { + "id": 7240, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "broth", + "rice vinegar", + "mirin", + "sake", + "kabocha squash" + ] + }, + { + "id": 34546, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "paprika", + "garlic powder", + "dark brown sugar", + "seasoning salt", + "dry mustard", + "ground ginger", + "granulated sugar", + "ground cumin" + ] + }, + { + "id": 14528, + "cuisine": "mexican", + "ingredients": [ + "onions", + "lime juice", + "chopped cilantro fresh", + "tomatoes", + "shrimp meat", + "tortilla chips" + ] + }, + { + "id": 20703, + "cuisine": "mexican", + "ingredients": [ + "water", + "pork loin", + "cabbage", + "hominy", + "salt", + "lime", + "chili powder", + "shredded cabbage", + "onions" + ] + }, + { + "id": 4403, + "cuisine": "greek", + "ingredients": [ + "garlic powder", + "water", + "butter", + "chicken bouillon", + "peppermint", + "lime juice", + "long-grain rice" + ] + }, + { + "id": 22915, + "cuisine": "spanish", + "ingredients": [ + "fresh rosemary", + "almonds", + "crushed red pepper", + "low salt chicken broth", + "arborio rice", + "minced garlic", + "mushrooms", + "chopped fresh sage", + "chicken", + "saffron threads", + "sausage links", + "ground black pepper", + "salt", + "red bell pepper", + "tomatoes", + "olive oil", + "lemon wedge", + "green beans" + ] + }, + { + "id": 29966, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "unsalted butter", + "kosher salt", + "all-purpose flour", + "whole milk" + ] + }, + { + "id": 32243, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "baby spinach leaves", + "cooking spray", + "salt", + "onions", + "sugar", + "ground black pepper", + "light coconut milk", + "garlic cloves", + "chiles", + "garam masala", + "ginger", + "chickpeas", + "neutral oil", + "fresh cheese", + "chili powder", + "cilantro leaves" + ] + }, + { + "id": 39265, + "cuisine": "italian", + "ingredients": [ + "sesame seeds", + "all-purpose flour", + "egg yolks", + "italian seasoning", + "parmesan cheese", + "sour cream", + "water", + "butter" + ] + }, + { + "id": 28907, + "cuisine": "french", + "ingredients": [ + "salt", + "egg yolks", + "unsalted butter", + "lemon juice", + "cream", + "cayenne pepper" + ] + }, + { + "id": 7320, + "cuisine": "thai", + "ingredients": [ + "garlic cloves", + "noodles", + "vegetable oil", + "beansprouts", + "spring onions", + "oyster sauce", + "red pepper", + "chicken thighs" + ] + }, + { + "id": 40884, + "cuisine": "french", + "ingredients": [ + "sliced green onions", + "brie cheese", + "bacon slices", + "chutney" + ] + }, + { + "id": 1637, + "cuisine": "korean", + "ingredients": [ + "clams", + "beef", + "garlic", + "stock", + "sesame oil", + "eggs", + "soft tofu", + "scallions", + "soy sauce", + "red pepper" + ] + }, + { + "id": 43135, + "cuisine": "mexican", + "ingredients": [ + "taco sauce", + "jalapeno chilies", + "sour cream", + "refried beans", + "black olives", + "ground cumin", + "shredded cheddar cheese", + "chili powder", + "ground beef", + "chopped tomatoes", + "chopped onion" + ] + }, + { + "id": 43332, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "paprika", + "rice", + "onions", + "tomatoes", + "olive oil", + "salt", + "flat leaf parsley", + "tumeric", + "garbanzo beans", + "Saffron Road Vegetable Broth", + "chopped cilantro", + "tomato paste", + "water", + "garlic", + "lentils", + "saffron" + ] + }, + { + "id": 39365, + "cuisine": "italian", + "ingredients": [ + "rocket leaves", + "ground black pepper", + "cherry tomatoes", + "Italian turkey sausage", + "minced garlic", + "pecorino romano cheese", + "olive oil", + "refrigerated fettuccine" + ] + }, + { + "id": 15185, + "cuisine": "japanese", + "ingredients": [ + "pork", + "baking soda", + "garlic", + "boiled eggs", + "green onions", + "beansprouts", + "soy sauce", + "fresh angel hair", + "salt", + "sake", + "water", + "sesame oil", + "ginger root" + ] + }, + { + "id": 10628, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "garlic cloves", + "dijon mustard", + "canned beef broth", + "bread slices", + "swiss cheese", + "low salt chicken broth", + "grated parmesan cheese", + "butter", + "onions" + ] + }, + { + "id": 4566, + "cuisine": "japanese", + "ingredients": [ + "gari", + "chili paste", + "garlic cloves", + "soy sauce", + "sesame seeds", + "salt", + "wasabi", + "water", + "sesame oil", + "nori sheets", + "sushi rice", + "shiitake", + "rice vinegar" + ] + }, + { + "id": 15403, + "cuisine": "indian", + "ingredients": [ + "butternut squash", + "freshly ground pepper", + "canola oil", + "boneless chicken skinless thigh", + "purple onion", + "Madras curry powder", + "brussels sprouts", + "large garlic cloves", + "greek yogurt", + "fresh ginger", + "salt", + "naan" + ] + }, + { + "id": 30114, + "cuisine": "southern_us", + "ingredients": [ + "parmigiano reggiano cheese", + "grits", + "water", + "sharp cheddar cheese", + "kosher salt", + "Tabasco Pepper Sauce", + "unsalted butter", + "freshly ground pepper" + ] + }, + { + "id": 5745, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "mild Italian sausage", + "artichokes", + "pepperoni slices", + "flour tortillas", + "baby spinach", + "ground beef", + "fresh rosemary", + "parmesan cheese", + "ricotta cheese", + "garlic cloves", + "mozzarella cheese", + "marinara sauce", + "button mushrooms", + "fresh basil leaves" + ] + }, + { + "id": 34502, + "cuisine": "thai", + "ingredients": [ + "fennel seeds", + "reduced sodium chicken broth", + "chili paste", + "shallots", + "cilantro leaves", + "arbol chile", + "black peppercorns", + "lemongrass", + "mint leaves", + "vegetable oil", + "cinnamon sticks", + "wide rice noodles", + "kosher salt", + "mung beans", + "lime wedges", + "cumin seed", + "chicken thighs", + "clove", + "sugar", + "coriander seeds", + "shrimp paste", + "ground tumeric", + "coconut milk" + ] + }, + { + "id": 26898, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "sauce", + "chicken legs", + "mirin", + "light brown sugar", + "water", + "scallions", + "sake", + "shichimi togarashi" + ] + }, + { + "id": 44111, + "cuisine": "chinese", + "ingredients": [ + "honey", + "portabello mushroom", + "tamari soy sauce", + "snow peas", + "cooking oil", + "red pepper", + "baby corn", + "chestnut mushrooms", + "garlic", + "ginger root", + "red chili peppers", + "lemon", + "white wine vinegar", + "noodles" + ] + }, + { + "id": 22981, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "mustard powder", + "tomato paste", + "salt", + "white vinegar", + "butter", + "ground red pepper", + "white sugar" + ] + }, + { + "id": 17543, + "cuisine": "british", + "ingredients": [ + "fish fillets", + "lemon", + "plain flour", + "potatoes", + "beer", + "pepper", + "salt", + "bicarbonate of soda", + "flour", + "cooking fat" + ] + }, + { + "id": 46399, + "cuisine": "italian", + "ingredients": [ + "fillet red snapper", + "diced tomatoes", + "dried oregano", + "dried basil", + "salt", + "pepper", + "garlic", + "dry white wine", + "lemon juice" + ] + }, + { + "id": 26261, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "vanilla extract", + "sugar", + "butter", + "chopped pecans", + "milk", + "fresh orange juice", + "grated orange", + "firmly packed brown sugar", + "sweet potatoes", + "all-purpose flour" + ] + }, + { + "id": 12577, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "bean curd skins", + "salt", + "pork", + "water chestnuts", + "cucumber", + "sugar", + "tapioca flour", + "chinese five-spice powder", + "chicken bouillon granules", + "white pepper", + "garlic", + "onions" + ] + }, + { + "id": 40856, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "extra-virgin olive oil", + "orecchiette", + "pecorino romano cheese", + "country bread", + "cauliflower", + "large garlic cloves", + "flat leaf parsley", + "grated parmesan cheese", + "anchovy fillets" + ] + }, + { + "id": 14922, + "cuisine": "irish", + "ingredients": [ + "ground pepper", + "chicken carcass", + "fresh herbs", + "peppercorns", + "olive oil", + "bay leaves", + "salt", + "onions", + "green cabbage", + "fresh thyme", + "parsley", + "carrots", + "oregano", + "rosemary", + "leeks", + "russet potatoes", + "celery", + "organic chicken broth" + ] + }, + { + "id": 33917, + "cuisine": "french", + "ingredients": [ + "garlic cloves", + "low-fat mayonnaise", + "mustard seeds" + ] + }, + { + "id": 7968, + "cuisine": "british", + "ingredients": [ + "instant espresso powder", + "half & half", + "fresh raspberries", + "raspberry jam", + "semisweet chocolate", + "vanilla extract", + "Scotch whisky", + "bananas", + "whipping cream", + "dark brown sugar", + "sugar", + "egg yolks", + "all-purpose flour", + "frozen pound cake" + ] + }, + { + "id": 40480, + "cuisine": "southern_us", + "ingredients": [ + "black forest ham", + "yams", + "large eggs", + "ground allspice", + "corn bread", + "fresh marjoram", + "green onions", + "low salt chicken broth", + "dijon mustard", + "butter", + "red bell pepper" + ] + }, + { + "id": 25942, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "nonfat vanilla frozen yogurt", + "dark rum", + "dark brown sugar", + "bananas", + "butter", + "banana liqueur" + ] + }, + { + "id": 40566, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "fresh cranberries", + "lime juice", + "orange juice", + "jicama", + "chopped cilantro", + "sugar", + "salt" + ] + }, + { + "id": 47897, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "lemongrass", + "asian fish sauce", + "sugar", + "chicken breasts", + "minced garlic", + "fresh lemon juice" + ] + }, + { + "id": 28050, + "cuisine": "italian", + "ingredients": [ + "halibut", + "prosciutto", + "olive oil", + "adobo seasoning", + "basil" + ] + }, + { + "id": 6931, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "Thai red curry paste", + "garlic cloves", + "sugar", + "shallots", + "beef fillet", + "unsweetened coconut milk", + "peeled fresh ginger", + "rice vermicelli", + "chopped cilantro fresh", + "sugar pea", + "vegetable oil", + "salt" + ] + }, + { + "id": 338, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "taco seasoning mix", + "sour cream", + "shredded cheddar cheese", + "green onions", + "mayonaise", + "guacamole", + "refried beans", + "black olives" + ] + }, + { + "id": 40217, + "cuisine": "korean", + "ingredients": [ + "pepper", + "egg yolks", + "ginger", + "corn starch", + "sugar", + "water", + "rice wine", + "scallions", + "onions", + "minced garlic", + "fresh shiitake mushrooms", + "corn syrup", + "ground beef", + "soy sauce", + "peanuts", + "ground pork", + "garlic cloves" + ] + }, + { + "id": 27321, + "cuisine": "french", + "ingredients": [ + "pepper", + "red wine", + "yellow onion", + "chicken thighs", + "chicken stock", + "bay leaves", + "bacon slices", + "thyme sprigs", + "pearl onions", + "button mushrooms", + "garlic cloves", + "parsley sprigs", + "butter", + "salt", + "fresh parsley" + ] + }, + { + "id": 11768, + "cuisine": "cajun_creole", + "ingredients": [ + "almonds", + "butter", + "sugar", + "kumquats", + "eggs", + "egg yolks", + "chocolate chips", + "puff pastry sheets", + "flour", + "custard" + ] + }, + { + "id": 19586, + "cuisine": "southern_us", + "ingredients": [ + "penne", + "butter", + "cayenne pepper", + "grated parmesan cheese", + "whipping cream", + "red bell pepper", + "large egg yolks", + "blue cheese", + "celery seed", + "celery ribs", + "half & half", + "chopped celery" + ] + }, + { + "id": 3990, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "paprika", + "potatoes", + "onions", + "pepper", + "salt", + "vegetable oil" + ] + }, + { + "id": 8108, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "buttermilk", + "large eggs", + "self rising flour", + "white cornmeal", + "sugar", + "vegetable oil" + ] + }, + { + "id": 4750, + "cuisine": "italian", + "ingredients": [ + "all-purpose flour", + "fresh parmesan cheese", + "greens", + "onions", + "baking potatoes" + ] + }, + { + "id": 16656, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "baking powder", + "yellow corn meal", + "buttermilk", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 18938, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "garbanzo beans", + "cilantro", + "chipotle chile powder", + "tomatoes", + "green onions", + "salt", + "avocado", + "ground pepper", + "extra-virgin olive oil", + "ground cumin", + "lime", + "onion powder", + "fresh lime juice" + ] + }, + { + "id": 15366, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "cream style corn", + "ground beef", + "milk", + "salt", + "shredded cheddar cheese", + "jalapeno chilies", + "onions", + "baking soda", + "cornmeal" + ] + }, + { + "id": 21946, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "sugar", + "arrowroot", + "chopped garlic", + "tumeric", + "base", + "nonfat milk", + "coconut extract", + "bottled clam juice", + "peeled fresh ginger", + "fish sauce", + "jasmine rice", + "sea bass fillets" + ] + }, + { + "id": 45119, + "cuisine": "mexican", + "ingredients": [ + "ground chipotle chile pepper", + "chopped cilantro", + "frozen corn kernels", + "salt", + "crumbled cheese", + "mayonaise", + "fresh lime juice" + ] + }, + { + "id": 48720, + "cuisine": "italian", + "ingredients": [ + "cannellini beans", + "salt", + "olive oil", + "baby spinach", + "garlic cloves", + "grape tomatoes", + "dry white wine", + "chopped onion", + "ground black pepper", + "crushed red pepper", + "large shrimp" + ] + }, + { + "id": 7064, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "pimentos", + "fresh lemon juice", + "dijon mustard", + "hot sauce", + "smoked paprika", + "shredded cheddar cheese", + "ground red pepper", + "okra pods", + "mayonaise", + "bread and butter pickles", + "garlic cloves" + ] + }, + { + "id": 8612, + "cuisine": "japanese", + "ingredients": [ + "slaw", + "corn tortillas", + "vegetable oil", + "albacore", + "mayonaise", + "ponzu" + ] + }, + { + "id": 30622, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "salt", + "whipped topping", + "raspberries", + "mint sprigs", + "blueberries", + "grated orange", + "superfine sugar", + "vanilla extract", + "Grand Marnier", + "blackberries", + "cream of tartar", + "semisweet chocolate", + "strawberries", + "orange rind" + ] + }, + { + "id": 19907, + "cuisine": "chinese", + "ingredients": [ + "water", + "salt", + "whole chicken", + "peeled fresh ginger", + "peanut oil", + "light soy sauce", + "cilantro leaves", + "ham", + "sesame oil", + "scallions" + ] + }, + { + "id": 31163, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "part-skim mozzarella cheese", + "cooking spray", + "italian seasoning", + "olive oil", + "ground black pepper", + "salt", + "sweet onion", + "fresh parmesan cheese", + "uncooked rigatoni", + "sliced green onions", + "fresh basil", + "eggplant", + "zucchini", + "garlic cloves" + ] + }, + { + "id": 14948, + "cuisine": "italian", + "ingredients": [ + "ziti", + "cooking spray", + "ground sirloin", + "part-skim mozzarella cheese" + ] + }, + { + "id": 30480, + "cuisine": "chinese", + "ingredients": [ + "water", + "flank steak", + "oyster sauce", + "broccoli florets", + "crushed red pepper", + "golden brown sugar", + "sesame oil", + "corn starch", + "peeled fresh ginger", + "yams" + ] + }, + { + "id": 9947, + "cuisine": "italian", + "ingredients": [ + "all purpose unbleached flour", + "water", + "fine sea salt", + "vegetable oil cooking spray", + "extra-virgin olive oil", + "active dry yeast" + ] + }, + { + "id": 379, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "garlic", + "boneless pork shoulder", + "orange", + "kosher salt", + "ground cumin", + "black peppercorns", + "bay leaves" + ] + }, + { + "id": 40157, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "ground black pepper", + "watercress", + "garlic cloves", + "lemongrass", + "vegetable oil", + "purple onion", + "fresh ginger", + "red wine vinegar", + "chinese five-spice powder", + "soy sauce", + "medium dry sherry", + "beef tenderloin" + ] + }, + { + "id": 11155, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "vegetable oil", + "grated nutmeg", + "ground cumin", + "green chile", + "ground black pepper", + "large garlic cloves", + "fresh lemon juice", + "low-fat plain yogurt", + "coriander seeds", + "coarse salt", + "gingerroot", + "tumeric", + "cayenne", + "purple onion", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 12873, + "cuisine": "thai", + "ingredients": [ + "romaine lettuce", + "chicken breasts", + "creamy peanut butter", + "shredded carrots", + "light coconut milk", + "celery", + "lower sodium soy sauce", + "lime wedges", + "beansprouts", + "brown sugar", + "ground red pepper", + "unsalted dry roast peanuts", + "fresh lime juice" + ] + }, + { + "id": 17381, + "cuisine": "filipino", + "ingredients": [ + "salt and ground black pepper", + "shrimp", + "pork", + "cooking oil", + "bamboo shoots", + "vinegar", + "onions", + "minced garlic", + "salt" + ] + }, + { + "id": 17919, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "bow-tie pasta", + "extra-virgin olive oil", + "parmigiano reggiano cheese", + "fresh basil leaves", + "unsalted butter", + "salt" + ] + }, + { + "id": 35632, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chicken breasts", + "sea salt", + "onions", + "cayenne", + "onion powder", + "cheese", + "ground cumin", + "garlic powder", + "chili powder", + "paprika", + "dried oregano", + "beans", + "bell pepper", + "whole wheat tortillas", + "roasted tomatoes" + ] + }, + { + "id": 47468, + "cuisine": "filipino", + "ingredients": [ + "water", + "green onions", + "peppercorns", + "leaves", + "salt", + "corn husks", + "calamansi juice", + "fish sauce", + "beef shank", + "onions" + ] + }, + { + "id": 7763, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "shrimp", + "vegetable oil", + "sour cream", + "water", + "sliced mushrooms", + "instant rice", + "butter", + "cream of shrimp soup" + ] + }, + { + "id": 31879, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "cheese tortellini", + "freshly grated parmesan", + "parsley", + "oil", + "marinara sauce", + "all-purpose flour", + "panko", + "red pepper flakes" + ] + }, + { + "id": 22460, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "salt", + "onions", + "low sodium soy sauce", + "chicken breasts", + "shrimp", + "chicken broth", + "canton noodles", + "carrots", + "cabbage", + "pork belly", + "garlic", + "green beans" + ] + }, + { + "id": 49312, + "cuisine": "southern_us", + "ingredients": [ + "cayenne", + "salt", + "catfish fillets", + "whole milk", + "large eggs", + "saltines", + "vegetable oil" + ] + }, + { + "id": 36913, + "cuisine": "italian", + "ingredients": [ + "ragu old world style pasta sauc", + "linguine", + "vegetable oil", + "boneless skinless chicken breast halves", + "water", + "fresh basil leaves", + "whipping heavy cream" + ] + }, + { + "id": 21, + "cuisine": "thai", + "ingredients": [ + "mushrooms", + "light coconut milk", + "boneless skinless chicken breast halves", + "water", + "sesame oil", + "red curry paste", + "fat free less sodium chicken broth", + "green onions", + "salt", + "chopped cilantro fresh", + "fresh ginger", + "lime wedges", + "fresh lime juice" + ] + }, + { + "id": 33744, + "cuisine": "spanish", + "ingredients": [ + "yellow bell pepper", + "hothouse cucumber", + "black pepper", + "scallions", + "tomatoes", + "rice vinegar", + "kosher salt", + "garlic cloves" + ] + }, + { + "id": 28860, + "cuisine": "southern_us", + "ingredients": [ + "red potato", + "milk", + "baking powder", + "salt", + "steak seasoning", + "cream of tartar", + "pepper", + "soup", + "butter", + "carrots", + "biscuits", + "water", + "cooked chicken", + "heavy cream", + "chicken base", + "celery ribs", + "sugar", + "flour", + "chicken breasts", + "yellow onion" + ] + }, + { + "id": 29152, + "cuisine": "mexican", + "ingredients": [ + "soy sauce", + "olive oil", + "corn tortillas", + "pepper", + "chili powder", + "salmon", + "ground red pepper", + "cumin", + "lime", + "salt" + ] + }, + { + "id": 46014, + "cuisine": "russian", + "ingredients": [ + "eggs", + "vanilla", + "applesauce", + "water", + "salt", + "clarified butter", + "sugar", + "cheese", + "sour cream", + "egg yolks", + "all-purpose flour" + ] + }, + { + "id": 33653, + "cuisine": "filipino", + "ingredients": [ + "coconut milk", + "sweet rice", + "brown sugar", + "coconut cream" + ] + }, + { + "id": 47294, + "cuisine": "filipino", + "ingredients": [ + "pork", + "vinegar", + "oil", + "soy sauce", + "sprite", + "garlic cloves", + "sweet chili sauce", + "worcestershire sauce", + "ketchup", + "salt" + ] + }, + { + "id": 16519, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "garlic", + "jalapeno chilies", + "white vinegar", + "serrano chile" + ] + }, + { + "id": 25344, + "cuisine": "mexican", + "ingredients": [ + "water", + "meat", + "stewed tomatoes", + "salsa", + "dried oregano", + "mayonaise", + "chopped green bell pepper", + "chili powder", + "garlic", + "sour cream", + "taco sauce", + "ground black pepper", + "chicken breast halves", + "cheese", + "poultry", + "chicken", + "shredded cheddar cheese", + "flour tortillas", + "spices", + "purple onion", + "dried parsley" + ] + }, + { + "id": 18875, + "cuisine": "vietnamese", + "ingredients": [ + "pepper", + "garlic", + "fresh ginger", + "sliced green onions", + "tilapia fillets", + "asian fish sauce", + "sugar", + "shallots" + ] + }, + { + "id": 12487, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "bittersweet chocolate", + "pure vanilla extract", + "granulated sugar", + "instant espresso powder", + "unsweetened cocoa powder", + "cream of tartar", + "vegetable oil" + ] + }, + { + "id": 4839, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "chicken thighs", + "cilantro", + "tomatillos", + "pickle juice", + "potatoes", + "onions" + ] + }, + { + "id": 41584, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salsa", + "lean ground beef", + "taco toppings", + "water", + "taco seasoning", + "black beans", + "wonton wrappers", + "sour cream" + ] + }, + { + "id": 40326, + "cuisine": "greek", + "ingredients": [ + "boneless skinless chicken breasts", + "greek yogurt", + "dried thyme", + "large garlic cloves", + "pepper", + "lemon", + "oregano", + "olive oil", + "salt" + ] + }, + { + "id": 8299, + "cuisine": "japanese", + "ingredients": [ + "water", + "shoyu", + "all-purpose flour", + "fish", + "sugar", + "mirin", + "paprika", + "scallions", + "chicken", + "curry powder", + "sea salt", + "sauce", + "canola oil", + "boneless chicken skinless thigh", + "satsuma imo", + "rice vinegar", + "konbu" + ] + }, + { + "id": 13048, + "cuisine": "italian", + "ingredients": [ + "spinach", + "garlic cloves", + "greens", + "pitted kalamata olives", + "flat leaf parsley", + "penne", + "feta cheese crumbles", + "extra-virgin olive oil", + "grated lemon peel" + ] + }, + { + "id": 39235, + "cuisine": "brazilian", + "ingredients": [ + "mayonaise", + "hard-boiled egg", + "salt", + "peas", + "chopped parsley", + "potatoes", + "garlic", + "green apples", + "raisins", + "carrots" + ] + }, + { + "id": 36089, + "cuisine": "french", + "ingredients": [ + "almonds", + "almond extract", + "all-purpose flour", + "granulated sugar", + "vanilla", + "confectioners sugar", + "unsalted butter", + "ice water", + "almond paste", + "milk", + "large eggs", + "salt" + ] + }, + { + "id": 10672, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "vegetable oil", + "lemon juice", + "garam masala", + "cumin seed", + "sesame seeds", + "cayenne pepper", + "green cabbage", + "salt", + "onions" + ] + }, + { + "id": 7848, + "cuisine": "spanish", + "ingredients": [ + "romaine lettuce", + "shallots", + "albacore tuna in water", + "sherry vinegar", + "salt", + "cherry tomatoes", + "extra-virgin olive oil", + "smoked paprika", + "haricots verts", + "ground red pepper", + "small red potato" + ] + }, + { + "id": 15478, + "cuisine": "french", + "ingredients": [ + "fat free less sodium chicken broth", + "pork tenderloin", + "all-purpose flour", + "onions", + "ground black pepper", + "diced tomatoes", + "herbes de provence", + "fennel bulb", + "salt", + "fresh parsley", + "olive oil", + "dry white wine", + "garlic cloves", + "olives" + ] + }, + { + "id": 20594, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "chicken breasts", + "penne pasta", + "oregano", + "grated parmesan cheese", + "whipping cream", + "panko breadcrumbs", + "pepper", + "butter", + "thyme", + "chicken broth", + "whole milk", + "salt", + "garlic salt" + ] + }, + { + "id": 18751, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "green onions", + "chicken livers", + "olive oil", + "dry sherry", + "water", + "butter", + "low salt chicken broth", + "truffle oil", + "all-purpose flour" + ] + }, + { + "id": 13985, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "scallions", + "soy sauce", + "salt", + "sugar", + "cilantro", + "oil", + "water", + "tilapia" + ] + }, + { + "id": 16801, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "fresh cilantro", + "green onions", + "carrots", + "mussels", + "water", + "medium shrimp uncook", + "garlic cloves", + "unsweetened coconut milk", + "fish sauce", + "bay scallops", + "peanut oil", + "thai green curry paste", + "fresh basil", + "steamed rice", + "thai chile", + "bok choy" + ] + }, + { + "id": 16199, + "cuisine": "southern_us", + "ingredients": [ + "green chile", + "cream style corn", + "buttermilk", + "pork sausages", + "black-eyed peas", + "jalapeno chilies", + "all-purpose flour", + "shredded cheddar cheese", + "large eggs", + "salt", + "white cornmeal", + "baking soda", + "vegetable oil", + "onions" + ] + }, + { + "id": 48585, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "serrano peppers", + "tomato salsa", + "white vinegar", + "ground black pepper", + "vegetable oil", + "sour cream", + "chorizo", + "lime wedges", + "scallions", + "eggs", + "flour tortillas", + "russet potatoes", + "chopped cilantro" + ] + }, + { + "id": 6311, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "chicken legs", + "chinese five-spice powder" + ] + }, + { + "id": 28752, + "cuisine": "italian", + "ingredients": [ + "light cream cheese", + "fat free lemon curd", + "powdered sugar", + "orange liqueur" + ] + }, + { + "id": 3413, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "heavy cream", + "ground pepper", + "oregano", + "artichoke hearts", + "blue cheese", + "grated parmesan cheese" + ] + }, + { + "id": 40909, + "cuisine": "filipino", + "ingredients": [ + "bay leaves", + "garlic", + "onions", + "pepper", + "condensed cream of mushroom soup", + "beef broth", + "butter", + "salt", + "peppercorns", + "water", + "button mushrooms", + "beef tongue" + ] + }, + { + "id": 11421, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "chili powder", + "garlic", + "water", + "butter", + "onions", + "green bell pepper", + "vegetable oil", + "salt", + "garam masala", + "heavy cream", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 21267, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "bacon", + "garlic cloves", + "tomatoes", + "ground red pepper", + "salt", + "sliced green onions", + "low sodium chicken broth", + "turkey", + "shredded Monterey Jack cheese", + "black beans", + "red pepper", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 24671, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "green onions", + "garlic", + "sugar", + "vinegar", + "ground pork", + "cabbage", + "cold water", + "water", + "sesame oil", + "salt", + "soy sauce", + "flour", + "ginger" + ] + }, + { + "id": 24689, + "cuisine": "italian", + "ingredients": [ + "fresh tomatoes", + "roasted red peppers", + "salt and ground black pepper", + "olive oil", + "fresh basil leaves", + "bread crumbs", + "goat cheese" + ] + }, + { + "id": 44486, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "salt", + "dried oregano", + "sherry vinegar", + "flat leaf parsley", + "extra-virgin olive oil", + "chopped fresh mint", + "eggplant", + "garlic cloves" + ] + }, + { + "id": 49294, + "cuisine": "french", + "ingredients": [ + "chicken stock", + "boneless chicken breast halves", + "all-purpose flour", + "onions", + "parsnips", + "butter", + "garlic cloves", + "greens", + "black peppercorns", + "beef stock", + "baby carrots", + "chicken thighs", + "olive oil", + "dry red wine", + "thyme sprigs" + ] + }, + { + "id": 17348, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "cilantro", + "eggs", + "boneless skinless chicken breasts", + "cornmeal", + "taco seasoning mix", + "green chilies", + "taco sauce", + "red pepper" + ] + }, + { + "id": 46454, + "cuisine": "italian", + "ingredients": [ + "spanish chorizo", + "kale", + "boiling potatoes", + "olive oil", + "water", + "onions" + ] + }, + { + "id": 30693, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "diced green chilies", + "butter", + "sour cream", + "black beans", + "flour", + "chicken stock cubes", + "onions", + "jack cheese", + "flour tortillas", + "chicken drumsticks", + "sweet yellow corn", + "mozzarella cheese", + "colby jack cheese", + "salsa" + ] + }, + { + "id": 42607, + "cuisine": "mexican", + "ingredients": [ + "ranch dressing", + "fritos", + "onions", + "water", + "stewed tomatoes", + "sour cream", + "taco seasoning mix", + "pinto beans", + "ground beef", + "corn", + "cheese", + "rotel tomatoes" + ] + }, + { + "id": 9881, + "cuisine": "southern_us", + "ingredients": [ + "baby lima beans", + "garlic", + "grape tomatoes", + "olive oil", + "salt", + "fresh dill", + "red wine vinegar", + "pepper", + "purple onion" + ] + }, + { + "id": 33552, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "dashi", + "potatoes", + "boiling water", + "pickles", + "fresh ginger", + "bonito flakes", + "stock", + "salmon", + "miso paste", + "vegetable oil", + "eggs", + "soy sauce", + "short-grain rice", + "spring onions" + ] + }, + { + "id": 43774, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "chili powder", + "salt", + "water", + "white rice", + "ground cumin", + "chopped green bell pepper", + "garlic", + "tomato sauce", + "vegetable oil", + "saffron" + ] + }, + { + "id": 41987, + "cuisine": "mexican", + "ingredients": [ + "shredded reduced fat cheddar cheese", + "frozen corn kernels", + "chopped cilantro", + "reduced-fat sour cream", + "fresh lime juice", + "chili powder", + "red bell pepper", + "ground cumin", + "water", + "salsa", + "reduced sodium black beans" + ] + }, + { + "id": 14026, + "cuisine": "italian", + "ingredients": [ + "baby portobello mushrooms", + "large eggs", + "fresh basil", + "ground black pepper", + "salt", + "olive oil", + "grated parmesan cheese", + "capers", + "dijon mustard", + "fresh oregano" + ] + }, + { + "id": 29039, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "Shaoxing wine", + "oil", + "parma ham", + "boneless skinless chicken breasts", + "ground white pepper", + "light soy sauce", + "spring onions", + "garlic cloves", + "golden caster sugar", + "egg noodles", + "sesame oil", + "snow peas" + ] + }, + { + "id": 13388, + "cuisine": "italian", + "ingredients": [ + "capers", + "unsalted butter", + "lemon juice", + "tilapia fillets", + "salt", + "white wine", + "finely chopped fresh parsley", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 41898, + "cuisine": "spanish", + "ingredients": [ + "water", + "green chile", + "chunky salsa", + "black beans", + "fresh cilantro" + ] + }, + { + "id": 2782, + "cuisine": "southern_us", + "ingredients": [ + "grated parmesan cheese", + "salt", + "milk", + "butter", + "pepper", + "quickcooking grits", + "large eggs", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 13902, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "chopped onion", + "taco seasoning mix", + "condensed tomato soup", + "sour cream", + "shredded cheddar cheese", + "lean ground beef", + "tortilla chips", + "macaroni", + "diced tomatoes", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 4670, + "cuisine": "mexican", + "ingredients": [ + "guajillo chiles", + "whole cloves", + "cumin seed", + "oregano", + "ground black pepper", + "avocado leaves", + "garlic cloves", + "cider vinegar", + "fresh thyme leaves", + "allspice berries", + "goat", + "salt", + "onions" + ] + }, + { + "id": 28443, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "blanched hazelnuts", + "garlic cloves", + "unsalted butter", + "crushed red pepper flakes", + "fresh mint", + "grated parmesan cheese", + "freshly ground pepper", + "orecchiette", + "olive oil", + "butternut squash", + "fresh lemon juice" + ] + }, + { + "id": 16721, + "cuisine": "brazilian", + "ingredients": [ + "garlic", + "sausages", + "onions", + "crushed tomatoes", + "hot sauce", + "ham hock", + "pig", + "white beans", + "carrots", + "broth", + "bay leaves", + "ground coriander", + "pork shoulder" + ] + }, + { + "id": 48397, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "yams", + "onions", + "potatoes", + "dill weed", + "olive oil", + "carrots", + "garlic", + "fresh parsley" + ] + }, + { + "id": 42280, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "vegan margarine", + "garlic", + "lemon juice", + "chicken", + "ground ginger", + "garam masala", + "vegan yogurt", + "peanut oil", + "onions", + "cold water", + "soy milk", + "chili powder", + "cayenne pepper", + "bay leaf", + "curry powder", + "shallots", + "salt", + "corn starch", + "ground cumin" + ] + }, + { + "id": 42583, + "cuisine": "japanese", + "ingredients": [ + "chicken bouillon", + "large eggs", + "corn starch", + "sugar", + "garlic powder", + "worcestershire sauce", + "panko breadcrumbs", + "water", + "Tabasco Pepper Sauce", + "chicken thighs", + "ketchup", + "ground pepper", + "salt" + ] + }, + { + "id": 48556, + "cuisine": "moroccan", + "ingredients": [ + "sambal ulek", + "ground black pepper", + "salt", + "garlic cloves", + "chopped fresh mint", + "tomato paste", + "fat free less sodium chicken broth", + "quinces", + "chickpeas", + "carrots", + "grated orange", + "lime rind", + "finely chopped onion", + "all-purpose flour", + "ground cardamom", + "dried oregano", + "ground cinnamon", + "water", + "peeled fresh ginger", + "ground coriander", + "leg of lamb", + "canola oil" + ] + }, + { + "id": 47677, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "ricotta", + "tomatoes", + "basil", + "orecchiette", + "shallots", + "garlic cloves", + "hot red pepper flakes", + "extra-virgin olive oil" + ] + }, + { + "id": 28487, + "cuisine": "brazilian", + "ingredients": [ + "coconut milk", + "unsalted butter", + "light corn syrup", + "coconut", + "sweetened condensed milk" + ] + }, + { + "id": 2358, + "cuisine": "indian", + "ingredients": [ + "large garlic cloves", + "freshly ground pepper", + "turnips", + "extra-virgin olive oil", + "Madras curry powder", + "sea salt", + "carrots", + "parsnips", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 48247, + "cuisine": "italian", + "ingredients": [ + "whipping cream", + "fresh angel hair", + "fresh parsley", + "clam juice", + "cherrystone clams", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 41420, + "cuisine": "southern_us", + "ingredients": [ + "prepared mustard", + "garlic salt", + "eggs", + "salt", + "bread", + "worcestershire sauce", + "pepper", + "ground beef" + ] + }, + { + "id": 40845, + "cuisine": "chinese", + "ingredients": [ + "celery ribs", + "kecap manis", + "peanut oil", + "sliced green onions", + "lower sodium soy sauce", + "french fried onions", + "Chinese egg noodles", + "lower sodium chicken broth", + "boneless skinless chicken breasts", + "garlic cloves", + "large eggs", + "napa cabbage", + "pork loin chops" + ] + }, + { + "id": 23152, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "olive oil", + "crumbs", + "salt", + "chicken stock", + "water", + "large eggs", + "cake flour", + "sliced almonds", + "large egg yolks", + "butternut squash", + "fresh chives", + "parmigiano reggiano cheese", + "all purpose unbleached flour" + ] + }, + { + "id": 47531, + "cuisine": "indian", + "ingredients": [ + "peanuts", + "cane sugar", + "cucumber", + "cilantro", + "black mustard seeds", + "serrano chile", + "flaked coconut", + "cumin seed", + "ghee", + "fine sea salt", + "fresh lemon juice" + ] + }, + { + "id": 27923, + "cuisine": "irish", + "ingredients": [ + "russet potatoes", + "milk", + "bacon", + "butter", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 8401, + "cuisine": "french", + "ingredients": [ + "chicken legs", + "vegetable oil", + "port", + "onions", + "bay leaves", + "dry red wine", + "carrots", + "pearl onions", + "butter", + "all-purpose flour", + "celery ribs", + "mushrooms", + "bacon slices", + "thyme sprigs" + ] + }, + { + "id": 9049, + "cuisine": "filipino", + "ingredients": [ + "whole milk", + "white sugar", + "corn starch", + "condensed milk", + "corn", + "coconut milk" + ] + }, + { + "id": 42042, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "dry white wine", + "chicken broth", + "olive oil", + "salt", + "mussels", + "sweet onion", + "diced tomatoes", + "pepper", + "finely chopped fresh parsley" + ] + }, + { + "id": 38668, + "cuisine": "chinese", + "ingredients": [ + "wonton wrappers", + "oil", + "cream cheese", + "sweet and sour sauce", + "garlic powder", + "scallions" + ] + }, + { + "id": 1991, + "cuisine": "russian", + "ingredients": [ + "medium zucchini", + "spices", + "pork loin", + "yellow onion", + "salt" + ] + }, + { + "id": 27951, + "cuisine": "mexican", + "ingredients": [ + "poblano peppers", + "enchilada sauce", + "yellow squash", + "jalapeno chilies", + "tomatoes", + "zucchini", + "red bell pepper", + "Mexican cheese blend", + "chicken breasts" + ] + }, + { + "id": 4449, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "olive oil", + "garlic cloves", + "ouzo", + "fennel bulb", + "pepper", + "chopped tomatoes", + "fresh oregano leaves", + "halibut fillets", + "chickpeas" + ] + }, + { + "id": 12114, + "cuisine": "italian", + "ingredients": [ + "pepper", + "dry white wine", + "salt", + "rotini", + "grated parmesan cheese", + "garlic", + "hot Italian sausages", + "olive oil", + "baking potatoes", + "all-purpose flour", + "boneless skinless chicken breast halves", + "green bell pepper", + "jalapeno chilies", + "purple onion", + "corn starch" + ] + }, + { + "id": 43245, + "cuisine": "indian", + "ingredients": [ + "eggs", + "butter", + "greek style plain yogurt", + "milk", + "garlic", + "sugar", + "sea salt", + "yeast", + "melted butter", + "whole wheat flour", + "all-purpose flour" + ] + }, + { + "id": 29396, + "cuisine": "italian", + "ingredients": [ + "lamb", + "butter", + "low salt chicken broth", + "all-purpose flour", + "capers", + "fresh lemon juice" + ] + }, + { + "id": 209, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "ground black pepper", + "salt", + "ground cumin", + "water", + "minced onion", + "salsa", + "dried basil", + "chili powder", + "dried parsley", + "olive oil", + "garlic", + "dried oregano" + ] + }, + { + "id": 22195, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "fresh ginger", + "vegetable oil", + "scallions", + "chopped cilantro", + "cooked turkey", + "large eggs", + "rice vinegar", + "corn starch", + "pepper", + "chili paste", + "salt", + "garlic cloves", + "dried mushrooms", + "lemongrass", + "low sodium chicken broth", + "firm tofu", + "toasted sesame oil" + ] + }, + { + "id": 727, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "canola oil", + "salt", + "boneless chicken breast", + "eggs", + "corn starch" + ] + }, + { + "id": 10065, + "cuisine": "mexican", + "ingredients": [ + "low sodium taco seasoning", + "shredded cheese", + "olives", + "tomatoes", + "garlic", + "onions", + "lettuce", + "lean ground beef", + "sour cream", + "cream of chicken soup", + "salsa", + "doritos" + ] + }, + { + "id": 23289, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "green onions", + "lemon juice", + "sliced black olives", + "white wine vinegar", + "fat-free mayonnaise", + "kidney beans", + "low-fat baked tortilla chips", + "iceberg lettuce", + "taco sauce", + "ground turkey breast", + "dill pickles" + ] + }, + { + "id": 25774, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "Kikkoman Soy Sauce", + "carrots", + "beef", + "star anise", + "water", + "spring onions", + "corn starch", + "sugar", + "minced onion", + "freshly ground pepper" + ] + }, + { + "id": 21235, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "hoisin sauce", + "ginger", + "oyster sauce", + "pea shoots", + "boneless skinless chicken breasts", + "garlic", + "corn starch", + "soy sauce", + "sesame oil", + "scallions", + "beansprouts", + "egg noodles", + "red pepper", + "oil" + ] + }, + { + "id": 6230, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "fresh lemon juice", + "broccoli stems", + "sliced almonds" + ] + }, + { + "id": 16650, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "italian salad dressing", + "tomatoes", + "yellow bell pepper", + "garlic cloves", + "black pepper", + "purple onion", + "fresh parsley", + "black-eyed peas", + "mixed greens" + ] + }, + { + "id": 38647, + "cuisine": "italian", + "ingredients": [ + "swiss cheese", + "flat leaf parsley", + "ground bison", + "salt", + "hamburger buns", + "purple onion", + "cooking spray", + "jelly" + ] + }, + { + "id": 45596, + "cuisine": "japanese", + "ingredients": [ + "white onion", + "spring onions", + "eggs", + "beef", + "corn starch", + "chicken stock", + "light soy sauce", + "ginger", + "salmon", + "mirin" + ] + }, + { + "id": 11192, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "balsamic vinegar", + "garlic", + "basmati rice", + "reduced sodium soy sauce", + "ginger", + "fillets", + "honey", + "red pepper", + "carrots", + "frozen petit pois", + "chili powder", + "Flora Cuisine", + "onions" + ] + }, + { + "id": 36620, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "vegetable oil", + "Italian turkey sausage", + "fat free cream cheese", + "cooking spray", + "salt", + "oven-ready lasagna noodles", + "green bell pepper", + "ground red pepper", + "tomato basil sauce", + "red bell pepper", + "fresh parmesan cheese", + "yellow bell pepper", + "garlic cloves", + "onions" + ] + }, + { + "id": 11317, + "cuisine": "italian", + "ingredients": [ + "smoked salmon", + "butter", + "milk", + "reduced fat cream cheese", + "extra-virgin olive oil", + "pasta", + "shallots" + ] + }, + { + "id": 34257, + "cuisine": "spanish", + "ingredients": [ + "pinenuts", + "finely chopped onion", + "fresh parsley", + "swiss chard", + "extra-virgin olive oil", + "baguette", + "raisins", + "tomatoes", + "ground nutmeg", + "garlic cloves" + ] + }, + { + "id": 23838, + "cuisine": "mexican", + "ingredients": [ + "Mexican oregano", + "garlic", + "ground cumin", + "chiles", + "russet potatoes", + "onions", + "boneless pork shoulder", + "chile pepper", + "salt", + "olive oil", + "vegetable broth", + "plum tomatoes" + ] + }, + { + "id": 12563, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "extra-virgin olive oil", + "flat leaf parsley", + "ground cloves", + "large eggs", + "garlic cloves", + "kosher salt", + "butter", + "veal scallops", + "ground cinnamon", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 36311, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk self-rising white cornmeal mix", + "all-purpose flour", + "butter", + "large eggs", + "buttermilk" + ] + }, + { + "id": 28929, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "unsalted butter", + "lard", + "milk", + "corn starch", + "cold water", + "unbleached flour", + "blackberries" + ] + }, + { + "id": 14274, + "cuisine": "indian", + "ingredients": [ + "ground cardamom", + "slivered almonds", + "ghee", + "chickpea flour", + "confectioners sugar", + "chocolate" + ] + }, + { + "id": 33014, + "cuisine": "greek", + "ingredients": [ + "salt", + "sesame seeds", + "honey", + "vegetable oil" + ] + }, + { + "id": 14695, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "green onions", + "salt", + "fresh lemon juice", + "large egg whites", + "finely chopped fresh parsley", + "light mayonnaise", + "dry bread crumbs", + "sour cream", + "lump crab meat", + "dijon mustard", + "ground red pepper", + "cilantro leaves", + "red bell pepper", + "frozen whole kernel corn", + "cooking spray", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 4426, + "cuisine": "southern_us", + "ingredients": [ + "water", + "bacon slices", + "grits", + "pepper", + "large eggs", + "fresh parsley", + "milk", + "garlic", + "parmesan cheese", + "salt" + ] + }, + { + "id": 7352, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "chopped green chilies", + "chili powder", + "minced garlic", + "flour tortillas", + "ground beef", + "refried beans", + "jalapeno chilies", + "ground cumin", + "shredded cheddar cheese", + "finely chopped onion", + "oil" + ] + }, + { + "id": 43235, + "cuisine": "mexican", + "ingredients": [ + "ibarra", + "mexican chocolate", + "orange", + "half & half", + "low-fat milk", + "vegetables", + "cinnamon sticks", + "vanilla beans", + "chile de arbol" + ] + }, + { + "id": 28150, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "garlic", + "red chili peppers", + "balsamic vinegar", + "salt", + "olive oil", + "diced tomatoes", + "white sugar", + "fresh basil", + "ground black pepper", + "purple onion" + ] + }, + { + "id": 41197, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "lime juice", + "ground black pepper", + "lemon slices", + "kosher salt", + "fresh ginger", + "cilantro sprigs", + "branzino", + "minced garlic", + "thai basil", + "thai chile", + "sugar", + "canola", + "lime slices" + ] + }, + { + "id": 2365, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "whole wheat flour", + "chopped cilantro", + "celery leaves", + "minced ginger", + "russet potatoes", + "chat masala", + "olive oil", + "salt", + "serrano chilies", + "water", + "shallots" + ] + }, + { + "id": 27445, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "green onions", + "roasted peanuts", + "Sriracha", + "red pepper", + "broth", + "soy sauce", + "rice noodles", + "oil", + "eggs", + "extra firm tofu", + "garlic" + ] + }, + { + "id": 27482, + "cuisine": "mexican", + "ingredients": [ + "queso fresco", + "onions", + "serrano chilies", + "corn tortillas", + "skirt steak", + "queso blanco", + "chopped cilantro fresh", + "chopped tomatoes", + "fresh lime juice" + ] + }, + { + "id": 25972, + "cuisine": "italian", + "ingredients": [ + "broccoli florets", + "boneless skinless chicken breast halves", + "olive oil", + "grated jack cheese", + "penne", + "whipping cream", + "grated parmesan cheese", + "red bell pepper" + ] + }, + { + "id": 23331, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "hot sauce", + "sour cream", + "garlic powder", + "diced tomatoes", + "whole kernel corn, drain", + "chicken broth", + "seasoned black beans", + "tortilla chips", + "ground cumin", + "boneless skinless chicken breasts", + "cilantro", + "Mexican cheese" + ] + }, + { + "id": 433, + "cuisine": "mexican", + "ingredients": [ + "poblano peppers", + "sour cream", + "shredded Monterey Jack cheese", + "olive oil", + "shrimp", + "dried oregano", + "tomatoes", + "salt", + "corn tortillas", + "ground cumin", + "pepper", + "enchilada sauce", + "onions" + ] + }, + { + "id": 14234, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "all purpose unbleached flour", + "large egg whites", + "grated parmesan cheese", + "salt", + "large egg yolks", + "whole milk", + "grated Gruyère cheese", + "unsalted butter", + "paprika" + ] + }, + { + "id": 4040, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "salt", + "cauliflower", + "chili powder", + "coriander", + "potatoes", + "onions", + "tumeric", + "butter" + ] + }, + { + "id": 23571, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "freshly ground pepper", + "red wine vinegar", + "frozen chopped spinach, thawed and squeezed dry", + "chicken cutlets", + "scallions", + "unsalted butter", + "salt", + "thick-cut bacon" + ] + }, + { + "id": 41360, + "cuisine": "french", + "ingredients": [ + "white wine", + "fresh thyme", + "white beans", + "chopped parsley", + "chicken broth", + "olive oil", + "bacon", + "carrots", + "onions", + "bread crumbs", + "ground black pepper", + "diced tomatoes", + "thyme leaves", + "spareribs", + "kosher salt", + "bay leaves", + "garlic cloves", + "celery" + ] + }, + { + "id": 46572, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "fresh ginger", + "egg whites", + "all-purpose flour", + "toasted sesame oil", + "boneless chicken skinless thigh", + "ground black pepper", + "baking powder", + "scallions", + "canola oil", + "warm water", + "sesame seeds", + "bawang goreng", + "diced yellow onion", + "chopped cilantro fresh", + "fish sauce", + "kosher salt", + "instant yeast", + "fresh shiitake mushrooms", + "oyster sauce" + ] + }, + { + "id": 36510, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "egg yolks", + "condensed milk", + "lime", + "whipping cream", + "key lime juice", + "graham crackers", + "sea salt", + "confectioners sugar", + "granulated sugar", + "vanilla extract" + ] + }, + { + "id": 19623, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "salt", + "ground turmeric", + "seeds", + "green chilies", + "coriander powder", + "cilantro leaves", + "fish", + "garlic", + "oil" + ] + }, + { + "id": 8254, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "tomatoes", + "garlic", + "chicken broth", + "chile pepper", + "baguette", + "salt" + ] + }, + { + "id": 45428, + "cuisine": "thai", + "ingredients": [ + "sugar", + "garlic cloves", + "chopped fresh mint", + "sliced green onions", + "rice noodles", + "fresh lime juice", + "asian fish sauce", + "unsalted roasted peanuts", + "beansprouts", + "chopped cilantro fresh", + "eggs", + "red pepper flakes", + "medium shrimp", + "canola oil" + ] + }, + { + "id": 34682, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "crushed red pepper flakes", + "curry powder", + "vegetable oil", + "mango", + "brown sugar", + "apple cider vinegar", + "yellow bell pepper", + "sweet onion", + "pineapple" + ] + }, + { + "id": 18674, + "cuisine": "korean", + "ingredients": [ + "green onions", + "kimchi", + "short-grain rice", + "hot pepper", + "sesame seeds", + "sesame oil", + "tuna in oil", + "seaweed" + ] + }, + { + "id": 13305, + "cuisine": "russian", + "ingredients": [ + "celery ribs", + "herbs", + "salt", + "onions", + "fresh dill", + "vegetable stock", + "carrots", + "cabbage", + "turnips", + "ground black pepper", + "butter", + "sour cream", + "bread", + "bay leaves", + "juice", + "eating apple" + ] + }, + { + "id": 9130, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "parsley", + "white beans", + "onions", + "pepper", + "diced tomatoes", + "carrots", + "pecorino cheese", + "ditalini", + "garlic cloves", + "boiling water", + "olive oil", + "salt", + "celery" + ] + }, + { + "id": 42260, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "red wine vinegar", + "fresh oregano", + "pasta", + "mushroom caps", + "salt", + "pepper", + "garlic", + "fresh basil", + "extra-virgin olive oil", + "lemon juice" + ] + }, + { + "id": 42410, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "chives", + "unsalted butter", + "flat leaf parsley", + "dijon mustard", + "pepper", + "gnocchi" + ] + }, + { + "id": 33445, + "cuisine": "greek", + "ingredients": [ + "grape tomatoes", + "salad dressing", + "english cucumber", + "diced red onions", + "olives", + "capers", + "feta cheese crumbles" + ] + }, + { + "id": 27138, + "cuisine": "japanese", + "ingredients": [ + "atta", + "potatoes", + "tumeric", + "cilantro leaves", + "fenugreek leaves", + "salt", + "ajwain", + "oil" + ] + }, + { + "id": 12058, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "sun-dried tomatoes", + "cajun seasoning", + "salt", + "onions", + "olive oil", + "balsamic vinegar", + "garlic", + "celery", + "brown sugar", + "bay leaves", + "dry mustard", + "cayenne pepper", + "meat stock", + "black beans", + "red beans", + "stewed tomatoes", + "ground meat" + ] + }, + { + "id": 35666, + "cuisine": "southern_us", + "ingredients": [ + "red wine vinegar", + "purple onion", + "sugar", + "cracked black pepper", + "tomatoes", + "romaine lettuce leaves", + "salt", + "watermelon", + "extra-virgin olive oil" + ] + }, + { + "id": 40377, + "cuisine": "italian", + "ingredients": [ + "fettuccine pasta", + "dry white wine", + "dried dillweed", + "milk", + "salt", + "sliced mushrooms", + "pepper", + "butter", + "canned salmon", + "diced onions", + "grated parmesan cheese", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 22260, + "cuisine": "italian", + "ingredients": [ + "warm water", + "extra-virgin olive oil", + "flour", + "plum tomatoes", + "active dry yeast", + "fine sea salt", + "sugar", + "yukon gold potatoes", + "dried oregano" + ] + }, + { + "id": 12651, + "cuisine": "mexican", + "ingredients": [ + "corn", + "salt", + "crema mexicana", + "lime wedges", + "white cheese", + "lime juice", + "butter", + "chili powder", + "hot sauce" + ] + }, + { + "id": 26645, + "cuisine": "spanish", + "ingredients": [ + "smoked paprika", + "olive oil", + "pimento stuffed olives" + ] + }, + { + "id": 30915, + "cuisine": "italian", + "ingredients": [ + "roasted red peppers", + "ciabatta buns", + "marinara sauce", + "dried oregano", + "red pepper flakes", + "italian sausage", + "provolone cheese" + ] + }, + { + "id": 34156, + "cuisine": "mexican", + "ingredients": [ + "starch", + "granulated sugar", + "salt", + "large eggs", + "ground blanched almonds", + "whole milk" + ] + }, + { + "id": 9642, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "salt", + "tomato sauce", + "basil dried leaves", + "cooking spray", + "sausages", + "eggplant", + "crushed red pepper" + ] + }, + { + "id": 25390, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "yellow onion", + "cumin seed", + "chopped cilantro fresh", + "canola oil", + "plain yogurt", + "diced tomatoes", + "chickpeas", + "fresh lime juice", + "ground turmeric", + "yukon gold potatoes", + "cayenne pepper", + "garlic cloves", + "basmati rice", + "ground cumin", + "kosher salt", + "ginger", + "ground coriander", + "chopped fresh mint", + "hothouse cucumber" + ] + }, + { + "id": 15237, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "extra-virgin olive oil", + "couscous", + "dry white wine", + "yellow onion", + "chicken", + "ground pepper", + "all-purpose flour", + "fresh parsley", + "coarse salt", + "garlic cloves" + ] + }, + { + "id": 13997, + "cuisine": "chinese", + "ingredients": [ + "leeks", + "vegetable oil", + "chinese five-spice powder", + "soy sauce", + "rice wine", + "red pepper", + "steak", + "fresh red chili", + "spring onions", + "large garlic cloves", + "carrots", + "fresh ginger root", + "rice noodles", + "cornflour" + ] + }, + { + "id": 24089, + "cuisine": "thai", + "ingredients": [ + "thai black glutinous rice", + "glutinous rice", + "unsweetened coconut milk", + "salt", + "palm sugar" + ] + }, + { + "id": 18109, + "cuisine": "thai", + "ingredients": [ + "peanut butter", + "sugar", + "coconut milk", + "fish sauce", + "tamarind paste", + "red curry paste" + ] + }, + { + "id": 43506, + "cuisine": "brazilian", + "ingredients": [ + "orange", + "vegetable oil", + "cayenne pepper", + "dried black beans", + "chourico", + "garlic", + "onions", + "water", + "jalapeno chilies", + "salt", + "tomatoes", + "chipped beef", + "bacon", + "beef tongue" + ] + }, + { + "id": 47121, + "cuisine": "thai", + "ingredients": [ + "baby bok choy", + "white miso", + "salt", + "soba", + "lime", + "green onions", + "shrimp", + "soy sauce", + "Sriracha", + "carrots", + "fresh ginger", + "vegetable broth", + "chopped cilantro" + ] + }, + { + "id": 29739, + "cuisine": "british", + "ingredients": [ + "vegetable oil", + "potatoes", + "butter", + "chicken stock", + "chopped fresh thyme", + "meat", + "chopped onion" + ] + }, + { + "id": 17814, + "cuisine": "indian", + "ingredients": [ + "water", + "half & half", + "butter", + "cayenne pepper", + "ginger root", + "white onion", + "olive oil", + "marinade", + "paprika", + "ground coriander", + "plain whole-milk yogurt", + "tomato purée", + "lime juice", + "boneless skinless chicken breasts", + "large garlic cloves", + "sauce", + "chopped cilantro", + "kosher salt", + "ground pepper", + "chili powder", + "salt", + "fresh lemon juice", + "ground cumin" + ] + }, + { + "id": 11846, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "russet potatoes", + "green onions", + "red enchilada sauce", + "jalapeno chilies", + "frozen corn kernels", + "cheddar cheese", + "vegetable oil" + ] + }, + { + "id": 36202, + "cuisine": "vietnamese", + "ingredients": [ + "black peppercorns", + "lime", + "beef", + "oxtails", + "salt", + "white sugar", + "sirloin", + "thai basil", + "hoisin sauce", + "rice noodles", + "mung bean sprouts", + "fish sauce", + "fresh ginger", + "radishes", + "green onions", + "cinnamon sticks", + "fresh cilantro", + "hot pepper sauce", + "whole cloves", + "star anise", + "onions" + ] + }, + { + "id": 5953, + "cuisine": "indian", + "ingredients": [ + "fresh tomatoes", + "lime", + "fenugreek", + "garlic", + "mustard oil", + "onions", + "clove", + "pepper", + "cassia cinnamon", + "double cream", + "green cardamom", + "garlic cloves", + "cashew nuts", + "tumeric", + "coriander seeds", + "chili powder", + "salt", + "oil", + "chicken thighs", + "tomatoes", + "fresh coriander", + "bay leaves", + "ginger", + "cumin seed", + "greek yogurt" + ] + }, + { + "id": 45049, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "onions", + "bay leaves", + "green chilies", + "coriander", + "clove", + "yoghurt", + "cardamom pods", + "basmati rice", + "garlic paste", + "curry", + "ghee", + "chicken" + ] + }, + { + "id": 4145, + "cuisine": "italian", + "ingredients": [ + "sugar", + "fresh raspberries", + "half & half", + "fresh lime juice", + "unflavored gelatin", + "cooking spray", + "mango", + "vanilla beans", + "almond milk" + ] + }, + { + "id": 25826, + "cuisine": "french", + "ingredients": [ + "sugar", + "egg whites", + "cream of tartar" + ] + }, + { + "id": 16989, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "salt", + "dry yeast", + "olive oil flavored cooking spray", + "olive oil", + "all-purpose flour", + "warm water", + "crushed red pepper", + "dried oregano" + ] + }, + { + "id": 29295, + "cuisine": "japanese", + "ingredients": [ + "water", + "fine sea salt", + "eggs", + "baking soda", + "carrots", + "black pepper", + "leeks", + "cabbage", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 38207, + "cuisine": "cajun_creole", + "ingredients": [ + "fava beans", + "diced tomatoes", + "salt", + "yellow peppers", + "fresh thyme", + "vegetable broth", + "bay leaf", + "cajun seasoning", + "garlic", + "onions", + "olive oil", + "white rice", + "celery" + ] + }, + { + "id": 46479, + "cuisine": "greek", + "ingredients": [ + "pepper", + "purple onion", + "cucumber", + "roma tomatoes", + "lemon juice", + "olive oil", + "salt", + "dried oregano", + "black olives", + "feta cheese crumbles" + ] + }, + { + "id": 39555, + "cuisine": "italian", + "ingredients": [ + "lime zest", + "ricotta cheese", + "white sugar", + "imitation vanilla flavoring", + "grated lemon zest", + "eggs", + "all-purpose flour", + "semi-sweet chocolate morsels", + "graham cracker crusts", + "anise extract" + ] + }, + { + "id": 8677, + "cuisine": "korean", + "ingredients": [ + "romaine lettuce", + "sesame oil", + "carrots", + "honey", + "Gochujang base", + "kimchi", + "soy sauce", + "rice vinegar", + "cucumber", + "brown sugar", + "red cabbage", + "soba noodles" + ] + }, + { + "id": 25126, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "canola oil", + "shiso leaves", + "miso", + "japanese eggplants", + "sake", + "dried red chile peppers" + ] + }, + { + "id": 31006, + "cuisine": "vietnamese", + "ingredients": [ + "tomato paste", + "sugar", + "green onions", + "minced beef", + "eggs", + "ground black pepper", + "garlic", + "tomatoes", + "water", + "shallots", + "fish sauce", + "water chestnuts", + "salt" + ] + }, + { + "id": 11584, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "heavy cream", + "nonfat yogurt plain", + "garlic powder", + "red food coloring", + "ghee", + "minced garlic", + "ginger", + "skinless chicken breasts", + "tomato paste", + "garam masala", + "salt" + ] + }, + { + "id": 15619, + "cuisine": "vietnamese", + "ingredients": [ + "Maggi", + "ground black pepper", + "garlic cloves", + "rice", + "top sirloin steak", + "canola oil" + ] + }, + { + "id": 41221, + "cuisine": "cajun_creole", + "ingredients": [ + "beet greens", + "finely chopped fresh parsley", + "salt", + "smoked ham hocks", + "cider vinegar", + "baby spinach", + "garlic cloves", + "turnip greens", + "fresh thyme", + "all-purpose flour", + "cabbage", + "red chili peppers", + "unsalted butter", + "mustard greens", + "onions" + ] + }, + { + "id": 17654, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "lemon grass", + "cumin seed", + "fresh ginger", + "paprika", + "lime", + "shallots", + "coriander seeds", + "garlic" + ] + }, + { + "id": 10822, + "cuisine": "italian", + "ingredients": [ + "eggs", + "lasagna noodles", + "garlic", + "onions", + "tomato paste", + "pepper", + "ricotta cheese", + "shredded mozzarella cheese", + "italian sausage", + "sugar", + "grated parmesan cheese", + "salt", + "parsley flakes", + "dried basil", + "diced tomatoes", + "ground beef" + ] + }, + { + "id": 33223, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "ground black pepper", + "salt", + "canned black beans", + "cooking oil", + "onions", + "canned low sodium chicken broth", + "radishes", + "chopped cilantro", + "lime juice", + "dry sherry" + ] + }, + { + "id": 30689, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "baking powder", + "fine salt", + "baking soda", + "buttermilk" + ] + }, + { + "id": 36775, + "cuisine": "french", + "ingredients": [ + "grated parmesan cheese", + "butter", + "water", + "cooking spray", + "onions", + "pepper", + "french bread", + "beef broth", + "beef", + "dry white wine" + ] + }, + { + "id": 15144, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ground black pepper", + "garlic", + "onions", + "green bell pepper", + "fresh ginger", + "flank steak", + "corn starch", + "sugar", + "vegetables", + "sesame oil", + "red bell pepper", + "chicken stock", + "kosher salt", + "Shaoxing wine", + "scallions" + ] + }, + { + "id": 45115, + "cuisine": "japanese", + "ingredients": [ + "black pepper", + "miso", + "red bell pepper", + "tomato paste", + "water", + "ginger", + "toasted sesame oil", + "sugar", + "pumpkin", + "salt", + "japanese eggplants", + "sake", + "cherry tomatoes", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 541, + "cuisine": "chinese", + "ingredients": [ + "fresh red chili", + "hot red pepper flakes", + "medium dry sherry", + "broccoli", + "cooked rice", + "soy sauce", + "vegetable oil", + "corn starch", + "chicken broth", + "sugar", + "sesame oil", + "gingerroot", + "boneless sirloin", + "minced garlic", + "salt" + ] + }, + { + "id": 29904, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "sugar", + "yoghurt", + "paprika", + "cilantro leaves", + "garlic cloves", + "onions", + "fenugreek leaves", + "chopped tomatoes", + "crushed garlic", + "whipping cream", + "cardamom pods", + "cinnamon sticks", + "clove", + "boneless chicken skinless thigh", + "boneless skinless chicken breasts", + "ginger", + "green chilies", + "lemon juice", + "ground cumin", + "tomato purée", + "garam masala", + "lemon", + "salt", + "sweet paprika", + "ghee" + ] + }, + { + "id": 25116, + "cuisine": "moroccan", + "ingredients": [ + "hamburger buns", + "turkey", + "cumin seed", + "red bell pepper", + "coriander seeds", + "white cheddar cheese", + "fresh lemon juice", + "pickle wedges", + "extra-virgin olive oil", + "garlic cloves", + "arugula", + "mayonaise", + "corn chips", + "purple onion", + "smoked paprika" + ] + }, + { + "id": 37856, + "cuisine": "chinese", + "ingredients": [ + "lime juice", + "white sesame seeds", + "smoked salmon", + "fresh ginger", + "sliced green onions", + "avocado", + "dumpling wrappers", + "chopped cilantro fresh", + "kosher salt", + "unsalted butter" + ] + }, + { + "id": 17639, + "cuisine": "vietnamese", + "ingredients": [ + "haricots verts", + "sugar pea", + "banh pho rice noodles", + "carrots", + "red potato", + "water", + "serrano", + "ground turmeric", + "coconut oil", + "coconut", + "cumin seed", + "curry leaves", + "kefir", + "salt", + "chopped cilantro" + ] + }, + { + "id": 27861, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "garlic cloves", + "pepper", + "cooking spray", + "cooked vermicelli", + "tomato sauce", + "grated parmesan cheese", + "onions", + "peeled tomatoes", + "salt" + ] + }, + { + "id": 4304, + "cuisine": "jamaican", + "ingredients": [ + "vegetables", + "onion flakes", + "coconut sugar", + "onion powder", + "ground allspice", + "garlic powder", + "spices", + "ground white pepper", + "dried thyme", + "hot pepper", + "smoked paprika" + ] + }, + { + "id": 11746, + "cuisine": "jamaican", + "ingredients": [ + "vinegar", + "sauce", + "thyme", + "paprika", + "garlic cloves", + "butter beans", + "green bell pepper", + "salt", + "carrots", + "oxtails", + "berries", + "onions" + ] + }, + { + "id": 23702, + "cuisine": "british", + "ingredients": [ + "sweet pickle relish", + "lager beer", + "skinless haddock", + "freshly ground pepper", + "mayonaise", + "baking powder", + "malt vinegar", + "canola oil", + "kosher salt", + "lemon wedge", + "cake flour", + "capers", + "large eggs", + "baking potatoes", + "flat leaf parsley" + ] + }, + { + "id": 39194, + "cuisine": "spanish", + "ingredients": [ + "white wine vinegar", + "hard-boiled egg", + "fresh parsley", + "red potato", + "tuna", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 25607, + "cuisine": "indian", + "ingredients": [ + "water", + "chile powder", + "garam masala", + "curry", + "coriander", + "butter", + "garlic cloves", + "kosher salt", + "extra firm tofu", + "yellow onion", + "cumin", + "frozen spinach", + "garbanzo beans", + "ginger", + "corn starch" + ] + }, + { + "id": 18478, + "cuisine": "thai", + "ingredients": [ + "sugar", + "bird chile", + "chicken bouillon granules", + "lime", + "fish fillets", + "large garlic cloves", + "fish sauce", + "cilantro leaves" + ] + }, + { + "id": 40194, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "vanilla extract", + "graham cracker crumbs", + "fresh lemon juice", + "egg yolks", + "vanilla wafers", + "sugar", + "heavy cream", + "sweetened condensed milk" + ] + }, + { + "id": 46101, + "cuisine": "thai", + "ingredients": [ + "seedless cucumber", + "beef tenderloin", + "fresh lime juice", + "chiles", + "ground black pepper", + "scallions", + "fresh coriander", + "cilantro leaves", + "asian fish sauce", + "sugar", + "shallots", + "fresh mint" + ] + }, + { + "id": 42805, + "cuisine": "greek", + "ingredients": [ + "nonfat yogurt", + "english cucumber", + "kosher salt", + "garlic", + "dried mint flakes", + "fresh mint", + "ground black pepper", + "white wine vinegar" + ] + }, + { + "id": 9346, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "flour tortillas", + "chili powder", + "cilantro", + "ground cumin", + "ground pepper", + "low sodium chicken broth", + "coarse salt", + "garlic cloves", + "shredded cheddar cheese", + "jalapeno chilies", + "vegetable oil", + "all-purpose flour", + "green bell pepper", + "chuck roast", + "bay leaves", + "diced tomatoes", + "dried oregano" + ] + }, + { + "id": 27035, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "zucchini", + "sherry wine vinegar", + "carrots", + "Belgian endive", + "olive oil", + "shallots", + "garlic cloves", + "green apples", + "green bell pepper", + "chopped fresh chives", + "cayenne pepper", + "red bell pepper", + "mayonaise", + "peeled fresh ginger", + "crabmeat", + "chopped cilantro fresh" + ] + }, + { + "id": 16628, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "red pepper flakes", + "garlic cloves", + "sake", + "beef", + "gingerroot", + "ground black pepper", + "peanut oil", + "toasted sesame seeds", + "sugar", + "sesame oil", + "scallions" + ] + }, + { + "id": 36825, + "cuisine": "french", + "ingredients": [ + "cooking oil", + "salt", + "small new potatoes", + "brie cheese", + "mushrooms", + "broccoli", + "florets", + "onions" + ] + }, + { + "id": 8141, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "fresh lemon juice", + "celery ribs", + "kosher salt", + "fresh parsley", + "creole mustard", + "sugar", + "carrots", + "green cabbage", + "green onions" + ] + }, + { + "id": 7521, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "shallots", + "extra-virgin olive oil", + "sage leaves", + "chicken breast halves", + "dry red wine", + "coarse ground mustard", + "cracked black pepper", + "fat", + "minced garlic", + "fresh thyme leaves", + "salt" + ] + }, + { + "id": 19549, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken skinless thigh", + "flour tortillas", + "coarse salt", + "sour cream", + "pico de gallo", + "minced garlic", + "boneless skinless chicken breasts", + "extra-virgin olive oil", + "white onion", + "guacamole", + "red pepper flakes", + "fresh lime juice", + "green bell pepper", + "shredded mild cheddar cheese", + "vegetable oil", + "freshly ground pepper" + ] + }, + { + "id": 40167, + "cuisine": "thai", + "ingredients": [ + "granulated sugar", + "vegetable oil", + "salted dry roasted peanuts", + "boiling water", + "lime", + "shallots", + "salt", + "medium shrimp", + "chopped garlic", + "palm sugar", + "rice noodles", + "tamarind paste", + "mung bean sprouts", + "water", + "large eggs", + "crushed red pepper", + "scallions", + "asian fish sauce" + ] + }, + { + "id": 9855, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "sugar", + "salt", + "olive oil", + "fresh lemon juice", + "basil dried leaves" + ] + }, + { + "id": 441, + "cuisine": "chinese", + "ingredients": [ + "vegetable broth", + "garlic cloves", + "sugar", + "salt", + "sliced green onions", + "crushed red pepper", + "fresh lemon juice", + "eggplant", + "dark sesame oil" + ] + }, + { + "id": 40712, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "fresh parsley", + "capers", + "salt", + "tuna steaks", + "olive oil", + "lemon juice" + ] + }, + { + "id": 26643, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "arrowroot", + "garlic", + "water", + "green onions", + "broccoli", + "boneless chicken skinless thigh", + "mushrooms", + "rice vinegar", + "coconut oil", + "fresh ginger", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 4245, + "cuisine": "japanese", + "ingredients": [ + "avocado", + "crabmeat", + "sushi rice", + "nori", + "soy sauce", + "toasted sesame seeds", + "wasabi", + "seeds" + ] + }, + { + "id": 47575, + "cuisine": "spanish", + "ingredients": [ + "cod fillets", + "garlic cloves", + "onions", + "olive oil", + "littleneck clams", + "celery", + "tomato paste", + "fingerling potatoes", + "fresh lemon juice", + "andouille sausage", + "clam juice", + "carrots" + ] + }, + { + "id": 45696, + "cuisine": "mexican", + "ingredients": [ + "processed cheese", + "water", + "picante sauce", + "ground beef", + "taco seasoning mix" + ] + }, + { + "id": 13725, + "cuisine": "cajun_creole", + "ingredients": [ + "Dungeness crabs", + "canned tomatoes", + "smoked paprika", + "stock", + "Tabasco Pepper Sauce", + "green pepper", + "bay leaf", + "fennel bulb", + "salt", + "red bell pepper", + "minced garlic", + "old bay seasoning", + "shrimp", + "onions" + ] + }, + { + "id": 43578, + "cuisine": "cajun_creole", + "ingredients": [ + "powdered sugar", + "dry yeast", + "cinnamon", + "fresh lemon juice", + "nutmeg", + "milk", + "egg yolks", + "all-purpose flour", + "melted butter", + "granulated sugar", + "cake", + "condensed milk", + "sugar", + "lemon zest", + "vanilla extract" + ] + }, + { + "id": 37835, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "salt", + "cooking spray", + "orange juice", + "pork tenderloin", + "dark sesame oil", + "brown sugar", + "ground red pepper", + "five-spice powder" + ] + }, + { + "id": 3273, + "cuisine": "moroccan", + "ingredients": [ + "water", + "cooking spray", + "unsalted butter", + "acorn squash", + "sesame seeds", + "maple syrup", + "kosher salt", + "harissa paste" + ] + }, + { + "id": 23528, + "cuisine": "spanish", + "ingredients": [ + "red chili peppers", + "garlic", + "mushrooms", + "fresh parsley", + "sea salt", + "extra-virgin olive oil" + ] + }, + { + "id": 12394, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "fish sauce", + "lemon", + "white vinegar", + "warm water", + "sugar", + "garlic" + ] + }, + { + "id": 3077, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "shredded carrots", + "nonfat ricotta cheese", + "pasta sauce", + "Italian turkey sausage", + "fresh basil", + "salt", + "whole wheat uncooked lasagna noodles", + "part-skim mozzarella cheese", + "hot water" + ] + }, + { + "id": 17621, + "cuisine": "moroccan", + "ingredients": [ + "ground allspice", + "curry powder", + "butter", + "fat free less sodium chicken broth", + "couscous" + ] + }, + { + "id": 37809, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "cracked black pepper", + "chopped fresh sage", + "chopped fresh chives", + "all-purpose flour", + "ham", + "butter", + "beef broth", + "onions", + "brewed coffee", + "bacon slices", + "garlic cloves" + ] + }, + { + "id": 2466, + "cuisine": "italian", + "ingredients": [ + "dried cherry", + "vegetable shortening", + "canola oil", + "sugar", + "baking powder", + "all-purpose flour", + "large eggs", + "vanilla extract", + "baking chocolate", + "cooking spray", + "salt", + "unsweetened cocoa powder" + ] + }, + { + "id": 23860, + "cuisine": "southern_us", + "ingredients": [ + "seasoning salt", + "self-rising cornmeal", + "eggs", + "buttermilk", + "self rising flour", + "onions", + "sugar", + "bacon grease" + ] + }, + { + "id": 5883, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "fresh ginger", + "fenugreek", + "dried chickpeas", + "chopped parsley", + "tomatoes", + "water", + "cayenne", + "florets", + "ground coriander", + "ground cumin", + "cauliflower", + "tumeric", + "garam masala", + "brown mustard seeds", + "green chilies", + "asafetida", + "coconut sugar", + "lime", + "potatoes", + "sea salt", + "cumin seed" + ] + }, + { + "id": 9887, + "cuisine": "indian", + "ingredients": [ + "english cucumber", + "plain whole-milk yogurt", + "urad dal", + "onions", + "vegetable oil", + "black mustard seeds", + "plum tomatoes", + "cumin seed", + "chopped cilantro fresh" + ] + }, + { + "id": 11418, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "eggplant", + "freshly ground pepper", + "bread crumb fresh", + "parmesan cheese", + "garlic cloves", + "olive oil", + "fresh mozzarella", + "oregano", + "kosher salt", + "whole peeled tomatoes", + "onions" + ] + }, + { + "id": 33669, + "cuisine": "chinese", + "ingredients": [ + "spring onions", + "rice", + "brown sugar", + "sesame oil", + "chicken stock", + "chicken breasts", + "soy sauce", + "garlic" + ] + }, + { + "id": 23517, + "cuisine": "italian", + "ingredients": [ + "basil pesto sauce", + "salt", + "heavy cream", + "pepper", + "pasta", + "extra-virgin olive oil" + ] + }, + { + "id": 37595, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "salt", + "lime", + "fresh coriander", + "green chilies", + "tomatoes", + "purple onion" + ] + }, + { + "id": 16304, + "cuisine": "french", + "ingredients": [ + "red food coloring", + "apricots", + "yellow food coloring" + ] + }, + { + "id": 25724, + "cuisine": "southern_us", + "ingredients": [ + "lime zest", + "egg yolks", + "sugar", + "crushed graham crackers", + "melted butter", + "heavy cream", + "lime juice", + "sweetened condensed milk" + ] + }, + { + "id": 22983, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "lasagna noodles", + "shredded mozzarella cheese", + "italian seasoning", + "tomato sauce", + "part-skim ricotta cheese", + "onions", + "eggs", + "bacon", + "fresh parsley", + "fennel seeds", + "milk", + "provolone cheese", + "dried oregano" + ] + }, + { + "id": 41632, + "cuisine": "irish", + "ingredients": [ + "Jameson Irish Whiskey", + "brown sugar", + "cream sweeten whip", + "coffee" + ] + }, + { + "id": 25961, + "cuisine": "vietnamese", + "ingredients": [ + "eggs", + "ketchup", + "daikon", + "carrots", + "white sandwich bread", + "brown sugar", + "Sriracha", + "garlic", + "ground beef", + "fish sauce", + "milk", + "ground pork", + "chopped cilantro", + "mayonaise", + "cooking spray", + "salt", + "onions" + ] + }, + { + "id": 37522, + "cuisine": "southern_us", + "ingredients": [ + "caster sugar", + "eggs", + "digestive biscuit", + "melted butter", + "lime", + "sugar", + "condensed milk" + ] + }, + { + "id": 31107, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "jalapeno chilies", + "yellow onion", + "ground turmeric", + "unsalted butter", + "rockfish", + "hot water", + "canola oil", + "minced ginger", + "lemon", + "garlic cloves", + "plum tomatoes", + "snappers", + "cod fillets", + "salt", + "coconut milk" + ] + }, + { + "id": 48581, + "cuisine": "french", + "ingredients": [ + "balsamic vinegar", + "horseradish mustard", + "extra-virgin olive oil", + "black pepper" + ] + }, + { + "id": 18470, + "cuisine": "moroccan", + "ingredients": [ + "reduced sodium chicken broth", + "lemon zest", + "cardamom pods", + "fresh parsley leaves", + "bone in chicken thighs", + "parsley sprigs", + "fresh ginger", + "large garlic cloves", + "pitted prunes", + "onions", + "red chili peppers", + "ground black pepper", + "salt", + "toasted pine nuts", + "ground turmeric", + "ground cinnamon", + "olive oil", + "apricot halves", + "ground coriander", + "couscous" + ] + }, + { + "id": 44464, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "large eggs", + "chopped onion", + "olive oil", + "cannellini beans", + "large egg whites", + "jalapeno chilies", + "chopped fresh mint", + "pitted kalamata olives", + "swiss chard", + "salt" + ] + }, + { + "id": 40107, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "pork chops", + "salt", + "water", + "granulated white sugar", + "pepper", + "cooking oil", + "lime", + "purple onion" + ] + }, + { + "id": 45407, + "cuisine": "italian", + "ingredients": [ + "lamb shanks", + "red wine vinegar", + "chopped parsley", + "ground pepper", + "corn starch", + "onions", + "dried basil", + "diced tomatoes", + "celery", + "capers", + "calamata olives", + "red bell pepper", + "frozen artichoke hearts" + ] + }, + { + "id": 13641, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "kosher salt", + "ground black pepper", + "chopped celery", + "leg of lamb", + "lower sodium chicken broth", + "water", + "turkey kielbasa", + "garlic cloves", + "boiling water", + "great northern beans", + "baguette", + "grated parmesan cheese", + "chopped onion", + "fresh parsley", + "brandy", + "olive oil", + "bacon", + "carrots" + ] + }, + { + "id": 8110, + "cuisine": "mexican", + "ingredients": [ + "green olives", + "jalapeno chilies", + "shredded sharp cheddar cheese", + "fresh lime juice", + "condensed cream of chicken soup", + "vegetable oil", + "taco seasoning", + "green chile", + "green onions", + "cream cheese", + "shredded Monterey Jack cheese", + "flour tortillas", + "chicken meat", + "sour cream" + ] + }, + { + "id": 32559, + "cuisine": "mexican", + "ingredients": [ + "cooked bacon", + "sliced green onions", + "shredded cheddar cheese", + "softened butter", + "mashed potatoes", + "salsa", + "flour tortillas", + "sour cream" + ] + }, + { + "id": 44900, + "cuisine": "french", + "ingredients": [ + "freshly grated parmesan", + "scallions", + "bread crumb fresh", + "potatoes", + "fresh parsley leaves", + "tomatoes", + "unsalted butter", + "garlic cloves", + "milk", + "kalamata" + ] + }, + { + "id": 23875, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chopped fresh thyme", + "red bell pepper", + "zucchini", + "chopped onion", + "ground black pepper", + "salt", + "tomatoes", + "large eggs", + "garlic cloves" + ] + }, + { + "id": 43575, + "cuisine": "indian", + "ingredients": [ + "bhaji", + "salt", + "cabbage", + "bell pepper", + "carrots", + "garam masala", + "oil", + "florets", + "baby corn" + ] + }, + { + "id": 46200, + "cuisine": "italian", + "ingredients": [ + "bread", + "sea salt", + "flat leaf parsley", + "mint leaves", + "extra-virgin olive oil", + "zucchini", + "mint sprigs", + "crumbled ricotta salata cheese", + "onion tops" + ] + }, + { + "id": 16737, + "cuisine": "italian", + "ingredients": [ + "corn husks", + "crushed red pepper flakes", + "safflower oil", + "grated parmesan cheese", + "squash", + "kosher salt", + "lemon", + "toasted sunflower seeds", + "ground black pepper", + "scallions" + ] + }, + { + "id": 8036, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "kosher salt", + "olive oil", + "bread", + "grated parmesan cheese" + ] + }, + { + "id": 14790, + "cuisine": "spanish", + "ingredients": [ + "italian eggplant", + "sweet onion", + "red bell pepper", + "sea salt", + "extra-virgin olive oil" + ] + }, + { + "id": 17690, + "cuisine": "mexican", + "ingredients": [ + "salad greens", + "corn tortillas", + "pico de gallo", + "Sriracha", + "whitefish", + "olive oil", + "lime", + "sour cream" + ] + }, + { + "id": 27432, + "cuisine": "italian", + "ingredients": [ + "pepper", + "bacon", + "large eggs", + "frozen peas", + "parmesan cheese", + "salt", + "white wine", + "boneless skinless chicken breasts", + "spaghetti" + ] + }, + { + "id": 29393, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "puff pastry", + "granulated sugar", + "cider vinegar", + "apples", + "unsalted butter" + ] + }, + { + "id": 8469, + "cuisine": "mexican", + "ingredients": [ + "slivered almonds", + "beef bouillon", + "poblano chiles", + "olive oil", + "garlic", + "onions", + "Herdez Salsa Verde", + "sour cream", + "beef roast", + "Herdez Salsa Casera", + "golden raisins", + "ripe olives" + ] + }, + { + "id": 8460, + "cuisine": "chinese", + "ingredients": [ + "oil", + "egg roll wrappers", + "pork sausages", + "stir fry vegetable blend", + "teriyaki sauce" + ] + }, + { + "id": 6922, + "cuisine": "brazilian", + "ingredients": [ + "black beans", + "diced tomatoes", + "orange juice", + "onions", + "cayenne", + "salt", + "carrots", + "olive oil", + "cilantro", + "garlic cloves", + "cumin", + "black pepper", + "bell pepper", + "salsa", + "sour cream" + ] + }, + { + "id": 7960, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "milk", + "paprika", + "white pepper", + "baking powder", + "cornmeal", + "black pepper", + "minced onion", + "salt", + "catfish fillets", + "pepper", + "vegetable oil" + ] + }, + { + "id": 22535, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "ground black pepper", + "peanut oil", + "shiitake mushroom caps", + "marsala wine", + "pork tenderloin", + "carrots", + "savoy cabbage", + "fresh ginger", + "salt", + "toasted sesame oil", + "sugar", + "plum sauce", + "scallions", + "pancake" + ] + }, + { + "id": 48826, + "cuisine": "southern_us", + "ingredients": [ + "ice cubes", + "rum", + "triple sec", + "amaretto liqueur", + "energy drink", + "cola-flavored carbonated beverage" + ] + }, + { + "id": 30823, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "grated parmesan cheese", + "spaghetti", + "kosher salt", + "garlic cloves", + "andouille sausage", + "basil leaves", + "ground black pepper", + "onions" + ] + }, + { + "id": 43804, + "cuisine": "brazilian", + "ingredients": [ + "egg yolks", + "coconut", + "unsalted butter", + "sugar", + "coconut milk" + ] + }, + { + "id": 40722, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "salt", + "glass noodles", + "sugar", + "unbleached flour", + "corn starch", + "warm water", + "sesame oil", + "chinese chives", + "large eggs", + "pressed tofu", + "canola oil" + ] + }, + { + "id": 21350, + "cuisine": "british", + "ingredients": [ + "dry sherry", + "raspberries", + "fresh lemon juice", + "dry white wine", + "grated lemon peel", + "sugar", + "whipping cream" + ] + }, + { + "id": 14784, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "purple onion", + "sage leaves", + "olive oil", + "chicken", + "Madeira", + "ground black pepper", + "baguette", + "garlic cloves" + ] + }, + { + "id": 3631, + "cuisine": "italian", + "ingredients": [ + "club soda", + "campari", + "orange" + ] + }, + { + "id": 45869, + "cuisine": "greek", + "ingredients": [ + "red wine vinegar", + "green olives", + "cucumber", + "tomatoes", + "purple onion", + "feta cheese" + ] + }, + { + "id": 42329, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "ground black pepper", + "chopped celery", + "flat leaf parsley", + "green chile", + "swiss chard", + "diced tomatoes", + "garlic cloves", + "water", + "finely chopped onion", + "crushed red pepper", + "fresh basil", + "olive oil", + "cannellini beans", + "salt" + ] + }, + { + "id": 19411, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken breast tenders", + "butter", + "celery", + "sugar", + "cooking spray", + "salt", + "dried thyme", + "diced tomatoes", + "fresh parsley", + "pepper", + "ground red pepper", + "okra" + ] + }, + { + "id": 4028, + "cuisine": "filipino", + "ingredients": [ + "fresh ginger root", + "rice noodles", + "beansprouts", + "sake", + "sesame oil", + "fresh mushrooms", + "snow peas", + "chicken broth", + "green onions", + "garlic", + "spicy pork sausage", + "soy sauce", + "hot pepper", + "shrimp", + "cooked chicken breasts" + ] + }, + { + "id": 27419, + "cuisine": "cajun_creole", + "ingredients": [ + "bay leaves", + "onions", + "lemon", + "dried thyme", + "crushed red pepper flakes", + "herbs", + "medium shrimp" + ] + }, + { + "id": 21139, + "cuisine": "southern_us", + "ingredients": [ + "clove", + "lemon", + "onions", + "bay leaves", + "garlic", + "large shrimp", + "water", + "old bay seasoning", + "boiling potatoes", + "Tabasco Pepper Sauce", + "salt" + ] + }, + { + "id": 1791, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "diced tomatoes", + "garlic cloves", + "italian seasoning", + "tomato paste", + "grated parmesan cheese", + "fresh mushrooms", + "red bell pepper", + "sugar", + "vermicelli", + "freshly ground pepper", + "onions", + "zucchini", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 7990, + "cuisine": "southern_us", + "ingredients": [ + "corn husks", + "all purpose unbleached flour", + "cultured buttermilk", + "sour cream", + "unsalted butter", + "sea salt", + "garlic cloves", + "ground black pepper", + "extra large eggs", + "ground sumac", + "collard greens", + "baking powder", + "extra-virgin olive oil", + "ground cayenne pepper" + ] + }, + { + "id": 20783, + "cuisine": "indian", + "ingredients": [ + "asafoetida", + "salt", + "cumin", + "mustard", + "ginger", + "oil", + "curry leaves", + "urad dal", + "dried red chile peppers", + "grated coconut", + "green chilies", + "mango" + ] + }, + { + "id": 9148, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "chopped cilantro", + "salt", + "avocado", + "fresh lime juice", + "corn kernels", + "serrano chile" + ] + }, + { + "id": 45327, + "cuisine": "mexican", + "ingredients": [ + "butter", + "milk", + "green pepper", + "Velveeta Queso Blanco", + "jalapeno chilies", + "cumin" + ] + }, + { + "id": 25197, + "cuisine": "irish", + "ingredients": [ + "bread crumb fresh", + "garlic cloves", + "unsalted butter", + "oysters", + "pernod", + "lemon wedge" + ] + }, + { + "id": 47224, + "cuisine": "french", + "ingredients": [ + "milk", + "green onions", + "fine sea salt", + "spinach leaves", + "unsalted butter", + "Italian parsley leaves", + "whole wheat flour", + "heavy cream", + "minced garlic", + "large eggs", + "extra-virgin olive oil" + ] + }, + { + "id": 27118, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "marsala wine", + "flat leaf parsley", + "chicken broth", + "boneless skinless chicken breasts", + "olive oil", + "onions" + ] + }, + { + "id": 17024, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "pie filling", + "powdered sugar", + "sweetened coconut flakes", + "slivered almonds", + "all-purpose flour", + "lemon" + ] + }, + { + "id": 41316, + "cuisine": "cajun_creole", + "ingredients": [ + "prepared horseradish", + "grated lemon zest", + "mayonaise", + "green onions", + "pickle relish", + "capers", + "roasted red peppers", + "fresh parsley", + "pepper", + "salt" + ] + }, + { + "id": 34171, + "cuisine": "italian", + "ingredients": [ + "globe eggplant", + "ground black pepper", + "purple onion", + "flat leaf parsley", + "sourdough bread", + "cooked rigatoni", + "red bell pepper", + "kosher salt", + "whole peeled tomatoes", + "garlic cloves", + "pasilla pepper", + "almonds", + "extra-virgin olive oil", + "pasta water" + ] + }, + { + "id": 44407, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "sesame oil", + "peanut butter", + "boneless skinless chicken breasts", + "purple onion", + "mirin", + "cilantro", + "soy sauce", + "green tomatoes", + "rice vinegar" + ] + }, + { + "id": 45292, + "cuisine": "thai", + "ingredients": [ + "low sodium soy sauce", + "red curry paste", + "water", + "coconut milk", + "sugar", + "creamy peanut butter", + "white vinegar", + "sesame oil" + ] + }, + { + "id": 28364, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "almond extract", + "all-purpose flour", + "eggs", + "baking powder", + "vanilla extract", + "nutmeg", + "unsalted butter", + "cinnamon", + "caramel sauce", + "sugar", + "peach schnapps", + "salt" + ] + }, + { + "id": 30582, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "diced green chilies", + "boneless skinless chicken breasts", + "juice", + "lime juice", + "red cabbage", + "salt", + "chopped cilantro", + "cotija", + "ground black pepper", + "whole wheat tortillas", + "poblano chiles", + "green cabbage", + "Tabasco Green Pepper Sauce", + "green onions", + "enchilada sauce" + ] + }, + { + "id": 24257, + "cuisine": "brazilian", + "ingredients": [ + "ground black pepper", + "scallions", + "manioc flour", + "large eggs", + "kosher salt", + "extra-virgin olive oil", + "unsalted butter" + ] + }, + { + "id": 19213, + "cuisine": "irish", + "ingredients": [ + "cold water", + "potatoes", + "beer", + "white onion", + "all-purpose flour", + "corn starch", + "tomato paste", + "garlic", + "carrots", + "olive oil", + "beef broth", + "chuck" + ] + }, + { + "id": 5210, + "cuisine": "italian", + "ingredients": [ + "lemon", + "salt", + "pepper", + "garlic", + "boiling potatoes", + "penne", + "extra-virgin olive oil", + "arugula", + "rosemary", + "purple onion" + ] + }, + { + "id": 29520, + "cuisine": "mexican", + "ingredients": [ + "fresh coriander", + "spring onions", + "beer", + "tomatoes", + "ground black pepper", + "sea salt", + "sour cream", + "avocado", + "shredded cheddar cheese", + "red pepper", + "lemon juice", + "red chili peppers", + "tortillas", + "green chilies" + ] + }, + { + "id": 14067, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "bell pepper", + "orzo", + "flat leaf parsley", + "chicken legs", + "olive oil", + "lemon", + "purple onion", + "black pepper", + "cinnamon", + "garlic", + "dried oregano", + "fresh tomatoes", + "parmesan cheese", + "paprika", + "salt" + ] + }, + { + "id": 29150, + "cuisine": "russian", + "ingredients": [ + "horseradish root", + "white vinegar", + "beets", + "sugar", + "coarse salt" + ] + }, + { + "id": 26889, + "cuisine": "italian", + "ingredients": [ + "slivered almonds", + "all-purpose flour", + "butter", + "orange zest", + "baking powder", + "white sugar", + "eggs", + "salt" + ] + }, + { + "id": 31304, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "salt", + "bread flour", + "rapid rise yeast", + "boiling water", + "olive oil", + "hot water", + "ground pepper", + "cornmeal" + ] + }, + { + "id": 47929, + "cuisine": "brazilian", + "ingredients": [ + "milk", + "shredded mozzarella cheese", + "tapioca flour", + "grated parmesan cheese", + "large eggs", + "oil", + "water", + "salt" + ] + }, + { + "id": 9508, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "chopped celery", + "carrots", + "collard greens", + "ground black pepper", + "organic vegetable broth", + "basmati rice", + "kosher salt", + "smoked sausage", + "garlic cloves", + "olive oil", + "crushed red pepper", + "chicken thighs" + ] + }, + { + "id": 44793, + "cuisine": "irish", + "ingredients": [ + "yukon gold potatoes", + "maldon sea salt", + "extra-virgin olive oil" + ] + }, + { + "id": 12831, + "cuisine": "italian", + "ingredients": [ + "baking powder", + "all-purpose flour", + "sugar", + "anise", + "large eggs", + "salt", + "vegetable oil", + "liqueur" + ] + }, + { + "id": 17109, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "sesame oil", + "sugar", + "fresh ginger", + "oyster sauce", + "gai lan", + "water", + "vegetable oil", + "soy sauce", + "Shaoxing wine", + "corn flour" + ] + }, + { + "id": 32911, + "cuisine": "japanese", + "ingredients": [ + "light soy sauce", + "button mushrooms", + "mirin", + "bamboo shoots", + "honey", + "salt", + "sake", + "chicken thigh fillets" + ] + }, + { + "id": 4074, + "cuisine": "japanese", + "ingredients": [ + "sushi rice", + "reduced sodium soy sauce", + "water", + "caster sugar", + "rice vinegar", + "sesame seeds" + ] + }, + { + "id": 19988, + "cuisine": "japanese", + "ingredients": [ + "yellow miso", + "rice vinegar", + "shallots", + "chopped cilantro fresh", + "frozen orange juice concentrate", + "sesame oil", + "peeled fresh ginger", + "low salt chicken broth" + ] + }, + { + "id": 22027, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "salt", + "potatoes" + ] + }, + { + "id": 9337, + "cuisine": "italian", + "ingredients": [ + "whipping heavy cream", + "frozen mini ravioli", + "salt", + "water", + "chunky pasta sauce" + ] + }, + { + "id": 16925, + "cuisine": "mexican", + "ingredients": [ + "chicken bouillon", + "unsalted butter", + "red pepper flakes", + "cream cheese", + "dried basil", + "boneless skinless chicken breasts", + "penne pasta", + "dried oregano", + "kosher salt", + "whole milk", + "garlic", + "thick-cut bacon", + "Mexican cheese blend", + "ranch dressing", + "yellow onion" + ] + }, + { + "id": 1361, + "cuisine": "british", + "ingredients": [ + "white bread", + "black pepper", + "flour", + "Tabasco Pepper Sauce", + "salt", + "English mustard", + "cremini mushrooms", + "lager beer", + "shallots", + "worcestershire sauce", + "cheddar cheese", + "pepper", + "flank steak", + "butter", + "thyme", + "sirloin", + "kosher salt", + "beef stock", + "watercress", + "sauce" + ] + }, + { + "id": 11138, + "cuisine": "indian", + "ingredients": [ + "garlic powder", + "vegetable oil", + "green beans", + "ground turmeric", + "ground ginger", + "potatoes", + "cilantro leaves", + "onions", + "tomatoes", + "chili powder", + "carrots", + "frozen peas", + "cold water", + "garam masala", + "salt", + "mustard seeds", + "ground cumin" + ] + }, + { + "id": 48372, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "whole milk", + "flat leaf parsley", + "bread crumb fresh", + "large eggs", + "ground pork", + "onions", + "ground black pepper", + "grated parmesan cheese", + "salt", + "spaghetti", + "whole peeled tomatoes", + "large garlic cloves", + "ground beef" + ] + }, + { + "id": 13895, + "cuisine": "british", + "ingredients": [ + "baking soda", + "white sugar", + "cream of tartar", + "all-purpose flour", + "salt", + "milk", + "margarine" + ] + }, + { + "id": 17804, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "broccoli florets", + "button mushrooms", + "minced ginger", + "red pepper", + "curry paste", + "boneless chicken skinless thigh", + "vegetable oil", + "coconut milk", + "fish sauce", + "lime", + "cilantro" + ] + }, + { + "id": 20317, + "cuisine": "french", + "ingredients": [ + "sugar", + "frangipane", + "dough", + "apples", + "salted butter" + ] + }, + { + "id": 45245, + "cuisine": "mexican", + "ingredients": [ + "salt", + "shrimp", + "sauce", + "mango", + "cilantro leaves", + "corn tortillas", + "lime wedges", + "freshly ground pepper" + ] + }, + { + "id": 35044, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "green onions", + "coconut milk", + "fresh basil", + "zucchini", + "cayenne pepper", + "tomato paste", + "fresh ginger", + "red curry paste", + "lean ground turkey", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 1640, + "cuisine": "spanish", + "ingredients": [ + "chili", + "onions", + "pepper", + "salt", + "avocado", + "green tomatoes", + "lime juice", + "chopped cilantro" + ] + }, + { + "id": 21281, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "garlic powder", + "salt", + "dried oregano", + "crushed tomatoes", + "diced tomatoes", + "white sugar", + "minced garlic", + "ground black pepper", + "dried parsley", + "capers", + "dried basil", + "crushed red pepper flakes", + "spaghetti" + ] + }, + { + "id": 35188, + "cuisine": "indian", + "ingredients": [ + "water", + "onions", + "clove", + "green chilies", + "basmati rice", + "cinnamon", + "frozen peas", + "kosher salt", + "ghee", + "ground cumin" + ] + }, + { + "id": 49703, + "cuisine": "russian", + "ingredients": [ + "olive oil", + "lemon wedge", + "fronds", + "salmon caviar", + "smoked salmon", + "pumpernickel bread", + "cream cheese", + "salmon fillets", + "chopped fresh chives", + "fresh lemon juice" + ] + }, + { + "id": 22400, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "butter", + "garlic cloves", + "fettucine", + "grated parmesan cheese", + "purple onion", + "green bell pepper", + "whipping cream", + "red bell pepper", + "chicken stock", + "boneless chicken skinless thigh", + "crushed red pepper" + ] + }, + { + "id": 8604, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "black sesame seeds", + "rice vinegar", + "fresh ginger root", + "nori paper", + "cucumber", + "sushi rice", + "daikon", + "sauce", + "mayonaise", + "Sriracha", + "salt", + "tuna" + ] + }, + { + "id": 40789, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "chili powder", + "rice", + "dried parsley", + "tomato purée", + "cooking oil", + "salt", + "onions", + "white vinegar", + "salt and ground black pepper", + "garlic", + "ground beef", + "cumin", + "water", + "mexicorn", + "bay leaf", + "dried oregano" + ] + }, + { + "id": 6272, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "bread, cut into italian loaf", + "garlic", + "plum tomatoes", + "minced garlic", + "extra-virgin olive oil", + "fresh basil leaves", + "shallots", + "fresh lemon juice" + ] + }, + { + "id": 1518, + "cuisine": "japanese", + "ingredients": [ + "water", + "yellow onion", + "dashi", + "miso paste", + "baby spinach leaves", + "potatoes" + ] + }, + { + "id": 17340, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "chili powder", + "freshly ground pepper", + "tomato paste", + "peaches", + "salt", + "fresh lemon juice", + "fresh ginger", + "worcestershire sauce", + "garlic cloves", + "cider vinegar", + "bourbon whiskey", + "dark brown sugar", + "canola oil" + ] + }, + { + "id": 37621, + "cuisine": "italian", + "ingredients": [ + "salt", + "pepper", + "ground beef", + "seasoned bread crumbs", + "sausages", + "garlic" + ] + }, + { + "id": 33811, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "sugar", + "salt", + "unsalted butter", + "all-purpose flour", + "ice water" + ] + }, + { + "id": 10104, + "cuisine": "indian", + "ingredients": [ + "salt and ground black pepper", + "buttermilk", + "basmati rice", + "curry powder", + "low sodium chicken broth", + "all-purpose flour", + "olive oil", + "green onions", + "chutney", + "water", + "pork chops", + "cauliflower florets" + ] + }, + { + "id": 4772, + "cuisine": "southern_us", + "ingredients": [ + "bacon", + "potatoes", + "onions", + "buttermilk" + ] + }, + { + "id": 26151, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "salt", + "mushrooms", + "onions", + "olive oil", + "penne pasta", + "double cream" + ] + }, + { + "id": 45165, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "onions", + "beef", + "small new potatoes", + "soup", + "Japanese soy sauce", + "carrots" + ] + }, + { + "id": 19230, + "cuisine": "mexican", + "ingredients": [ + "fat free less sodium chicken broth", + "reduced-fat sour cream", + "red bell pepper", + "sliced carrots", + "chopped onion", + "adobo sauce", + "half & half", + "salt", + "celery", + "chipotle chile", + "lime wedges", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 30922, + "cuisine": "southern_us", + "ingredients": [ + "shredded sharp cheddar cheese", + "elbow macaroni", + "milk", + "all-purpose flour", + "pepper", + "salt", + "butter", + "cream cheese" + ] + }, + { + "id": 17062, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "swiss chard", + "unsalted dry roast peanuts", + "corn starch", + "diced onions", + "curry powder", + "chicken breast halves", + "baby carrots", + "fat free less sodium chicken broth", + "ground red pepper", + "salt", + "ground cumin", + "tomato paste", + "olive oil", + "light coconut milk", + "long-grain rice" + ] + }, + { + "id": 36093, + "cuisine": "indian", + "ingredients": [ + "rice", + "chili powder", + "tumeric", + "oil", + "salt" + ] + }, + { + "id": 1246, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "cilantro sprigs", + "curry powder", + "roasting chickens", + "kosher salt", + "cayenne pepper", + "olive oil", + "ground cumin" + ] + }, + { + "id": 19694, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "garlic", + "rice", + "tumeric", + "cilantro", + "red curry paste", + "coconut milk", + "tomato purée", + "butter", + "salt", + "brown lentils", + "sugar", + "ginger", + "cayenne pepper", + "onions" + ] + }, + { + "id": 40022, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "diced tomatoes", + "coconut milk", + "vidalia onion", + "vegetable oil", + "cumin seed", + "lime", + "red curry paste", + "brown sugar", + "vegetable stock", + "garlic cloves" + ] + }, + { + "id": 39162, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "swordfish steaks", + "orange", + "bell pepper" + ] + }, + { + "id": 48001, + "cuisine": "mexican", + "ingredients": [ + "crushed red pepper flakes", + "squash", + "salt and ground black pepper", + "yellow onion", + "chicken bouillon", + "garlic", + "chopped cilantro fresh", + "unsalted butter", + "hot water" + ] + }, + { + "id": 750, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "granulated sugar", + "lemon", + "liver pate", + "sweet potatoes", + "ground allspice", + "ground cinnamon", + "large eggs", + "all-purpose flour", + "ground nutmeg", + "butter" + ] + }, + { + "id": 34051, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red bell pepper", + "kosher salt", + "basil leaves", + "spinach", + "grated parmesan cheese", + "rigatoni", + "pepper", + "purple onion" + ] + }, + { + "id": 6890, + "cuisine": "southern_us", + "ingredients": [ + "salted butter", + "color food orang", + "ginger", + "powdered sugar", + "egg whites", + "heavy cream", + "nutmeg", + "granulated sugar", + "cinnamon", + "almond flour", + "sweet potatoes", + "vanilla powder" + ] + }, + { + "id": 47086, + "cuisine": "moroccan", + "ingredients": [ + "green bell pepper", + "olive oil", + "balsamic vinegar", + "garlic cloves", + "ground cumin", + "ground cinnamon", + "kosher salt", + "cooking spray", + "purple onion", + "red bell pepper", + "green olives", + "water", + "golden raisins", + "chopped onion", + "couscous", + "fennel seeds", + "pinenuts", + "ground black pepper", + "diced tomatoes", + "small red potato" + ] + }, + { + "id": 6046, + "cuisine": "italian", + "ingredients": [ + "bertolli four chees rosa sauc", + "chicken broth", + "fettuccine, cook and drain", + "red potato", + "chopped garlic", + "Bertolli® Classico Olive Oil" + ] + }, + { + "id": 3647, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "vegetarian refried beans", + "corn tortillas", + "grated jack cheese", + "cheddar cheese", + "onions" + ] + }, + { + "id": 46884, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless chicken breast", + "rice", + "water", + "condensed tomato soup", + "fresh parsley", + "tomatoes", + "cajun seasoning", + "medium shrimp", + "olive oil", + "green pepper", + "onions" + ] + }, + { + "id": 44815, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "buttermilk", + "melted butter", + "baking powder", + "all-purpose flour", + "baking soda", + "shredded sharp cheddar cheese", + "sugar", + "butter", + "beer" + ] + }, + { + "id": 41055, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "sour cream", + "powdered sugar" + ] + }, + { + "id": 17693, + "cuisine": "french", + "ingredients": [ + "pepper", + "egg whites", + "salt", + "nutmeg", + "unsalted butter", + "swiss cheese", + "milk", + "flour", + "cayenne pepper", + "parmesan cheese", + "egg yolks" + ] + }, + { + "id": 6399, + "cuisine": "indian", + "ingredients": [ + "onions", + "eggplant", + "tomatoes", + "clarified butter", + "coriander seeds" + ] + }, + { + "id": 6613, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "refried beans", + "shredded cheddar cheese", + "taco seasoning mix" + ] + }, + { + "id": 43907, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "cream cheese", + "sugar", + "heavy cream", + "kosher salt", + "frozen corn", + "butter" + ] + }, + { + "id": 44143, + "cuisine": "chinese", + "ingredients": [ + "stewing hen", + "broccoli florets", + "corn starch", + "chinese ham", + "sea cucumber", + "scallions", + "pork spare ribs", + "abalone", + "water", + "ginger" + ] + }, + { + "id": 18160, + "cuisine": "moroccan", + "ingredients": [ + "warm water", + "all-purpose flour", + "olive oil", + "dry yeast", + "kosher salt" + ] + }, + { + "id": 49342, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "diced tomatoes", + "carrots", + "fresh basil", + "whole wheat spaghetti", + "salt", + "dried oregano", + "tomato paste", + "fat free milk", + "garlic", + "onions", + "pepper", + "lean ground beef", + "fresh mushrooms" + ] + }, + { + "id": 17170, + "cuisine": "japanese", + "ingredients": [ + "lettuce leaves", + "pickle relish", + "tomatoes", + "wasabi powder", + "white tuna in water", + "light mayonnaise", + "whole wheat pita", + "purple onion" + ] + }, + { + "id": 42411, + "cuisine": "mexican", + "ingredients": [ + "cheese", + "pasta sauce", + "chopped cilantro fresh", + "shredded mozzarella cheese", + "diced green chilies", + "ground cumin" + ] + }, + { + "id": 28625, + "cuisine": "italian", + "ingredients": [ + "warm water", + "mascarpone", + "dried fig", + "honey", + "cooking spray", + "olive oil", + "all-purpose flour", + "kosher salt", + "dry yeast" + ] + }, + { + "id": 16024, + "cuisine": "italian", + "ingredients": [ + "whitefish", + "extra-virgin olive oil", + "broth", + "arborio rice", + "romano cheese", + "garlic cloves", + "fresh basil", + "anchovy fillets", + "large shrimp", + "tomato paste", + "dry white wine", + "onions" + ] + }, + { + "id": 29496, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "extra-virgin olive oil", + "kosher salt", + "garlic cloves", + "pecorino cheese", + "fresh fava bean", + "ground black pepper", + "country bread" + ] + }, + { + "id": 25064, + "cuisine": "thai", + "ingredients": [ + "radishes", + "vegetable oil", + "tamarind paste", + "water", + "lime wedges", + "simple syrup", + "beansprouts", + "garlic chives", + "large eggs", + "thai chile", + "Thai fish sauce", + "peanuts", + "rice noodles", + "pressed tofu", + "medium shrimp" + ] + }, + { + "id": 40527, + "cuisine": "jamaican", + "ingredients": [ + "white vinegar", + "soy sauce", + "olive oil", + "cinnamon", + "garlic cloves", + "vidalia onion", + "pepper", + "cayenne", + "ginger", + "thyme", + "nutmeg", + "black pepper", + "garlic powder", + "sea salt", + "rubbed sage", + "brown sugar", + "lime juice", + "green onions", + "orange juice", + "allspice" + ] + }, + { + "id": 35129, + "cuisine": "mexican", + "ingredients": [ + "baking soda", + "onions", + "tomatoes", + "nopales", + "garlic", + "olive oil", + "arbol chile" + ] + }, + { + "id": 23707, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "pepper", + "pinto beans", + "Anaheim chile", + "onions", + "tomatoes", + "salt" + ] + }, + { + "id": 47205, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "bacon", + "beer", + "white pepper", + "breakfast sausages", + "all-purpose flour", + "garlic salt", + "jalapeno chilies", + "paprika", + "muenster cheese", + "crawfish", + "vegetable oil", + "cream cheese", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 19188, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "large eggs", + "vanilla extract", + "dark brown sugar", + "granulated sugar", + "quick-cooking oats", + "salt", + "ground nutmeg", + "cooking spray", + "frosting", + "boiling water", + "ground cinnamon", + "low-fat buttermilk", + "vegetable shortening", + "all-purpose flour" + ] + }, + { + "id": 6982, + "cuisine": "mexican", + "ingredients": [ + "hot chocolate mix", + "ground cinnamon", + "cayenne pepper", + "milk" + ] + }, + { + "id": 1618, + "cuisine": "irish", + "ingredients": [ + "butter", + "oil", + "onions", + "pepper", + "pearl barley", + "thyme", + "chicken stock", + "salt", + "carrots", + "baby potatoes", + "Guinness Beer", + "lamb", + "bay leaf" + ] + }, + { + "id": 21526, + "cuisine": "russian", + "ingredients": [ + "cold water", + "green onions", + "cucumber", + "potatoes", + "dill", + "vinegar", + "salt", + "sour cream", + "hard-boiled egg", + "ham" + ] + }, + { + "id": 39389, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "peanut oil", + "noodles", + "low sodium soy sauce", + "flank steak", + "garlic cloves", + "chile paste with garlic", + "broccoli", + "oyster sauce", + "brown sugar", + "dark sesame oil", + "onions" + ] + }, + { + "id": 31604, + "cuisine": "japanese", + "ingredients": [ + "water", + "sweet potatoes", + "dried shiitake mushrooms", + "reduced sodium soy sauce", + "fresh shiitake mushrooms", + "snow peas", + "silken tofu", + "mirin", + "kohlrabi", + "dashi kombu", + "bonito flakes", + "soba noodles" + ] + }, + { + "id": 34315, + "cuisine": "irish", + "ingredients": [ + "pepper", + "butter", + "milk", + "salt", + "potatoes", + "cabbage", + "green onions" + ] + }, + { + "id": 15091, + "cuisine": "italian", + "ingredients": [ + "pure vanilla extract", + "almond extract", + "granulated sugar", + "salt", + "unsalted butter", + "Dutch-processed cocoa powder", + "Nutella", + "all-purpose flour" + ] + }, + { + "id": 3361, + "cuisine": "southern_us", + "ingredients": [ + "salted butter", + "fudge brownie mix", + "pure vanilla extract", + "almond extract", + "mini marshmallows", + "chopped pecans", + "powdered sugar", + "heavy cream" + ] + }, + { + "id": 1844, + "cuisine": "southern_us", + "ingredients": [ + "ranch dressing", + "all-purpose flour", + "black pepper", + "buttermilk", + "dill pickles", + "cajun seasoning", + "oil", + "seafood seasoning", + "salt", + "cornmeal" + ] + }, + { + "id": 20167, + "cuisine": "southern_us", + "ingredients": [ + "shredded sharp cheddar cheese", + "garlic salt", + "diced pimentos", + "cream cheese", + "shredded parmesan cheese", + "mayonaise", + "sour cream" + ] + }, + { + "id": 77, + "cuisine": "italian", + "ingredients": [ + "tumeric", + "flour", + "garlic", + "bay leaf", + "pepper", + "red pepper", + "rice", + "yellow peppers", + "wine", + "butter", + "salt", + "onions", + "chicken wings", + "olive oil", + "diced tomatoes", + "fresh mushrooms", + "dried oregano" + ] + }, + { + "id": 18344, + "cuisine": "vietnamese", + "ingredients": [ + "glutinous rice", + "salt", + "pepper", + "mung beans", + "pork" + ] + }, + { + "id": 9975, + "cuisine": "italian", + "ingredients": [ + "mussels", + "fennel bulb", + "red wine vinegar", + "garlic cloves", + "saffron threads", + "dried thyme", + "dry white wine", + "crushed red pepper", + "lump crab meat", + "chopped green bell pepper", + "diced tomatoes", + "medium shrimp", + "clams", + "olive oil", + "clam juice", + "chopped onion" + ] + }, + { + "id": 44739, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "sesame oil", + "shrimp", + "sugar", + "tahini", + "vegetable oil", + "noodles", + "water", + "green onions", + "rice vinegar", + "light soy sauce", + "ground red pepper", + "garlic cloves" + ] + }, + { + "id": 14141, + "cuisine": "thai", + "ingredients": [ + "sugar", + "fresh basil", + "coconut milk", + "chicken broth", + "green curry paste", + "fish sauce", + "fresh lime juice" + ] + }, + { + "id": 33549, + "cuisine": "irish", + "ingredients": [ + "salt and ground black pepper", + "paprika", + "russet potatoes", + "fresh parsley", + "half & half", + "heavy whipping cream", + "butter", + "onions" + ] + }, + { + "id": 22280, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "chopped fresh sage", + "ground cumin", + "arborio rice", + "butternut squash", + "nonfat chicken broth", + "parmigiano reggiano cheese", + "onions", + "minced garlic", + "salt", + "arugula" + ] + }, + { + "id": 29336, + "cuisine": "thai", + "ingredients": [ + "white pepper", + "ground coriander", + "chicken legs", + "hoisin sauce", + "chopped cilantro", + "kosher salt", + "garlic cloves", + "sweet chili sauce", + "vegetable oil", + "asian fish sauce" + ] + }, + { + "id": 43859, + "cuisine": "french", + "ingredients": [ + "sugar", + "unsalted butter", + "salt", + "yellow corn meal", + "baking soda", + "buttermilk", + "caviar", + "corn", + "chopped fresh chives", + "sour cream", + "black pepper", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 3069, + "cuisine": "french", + "ingredients": [ + "water", + "all purpose unbleached flour", + "large eggs", + "ground black pepper", + "salt", + "unsalted butter", + "grated Gruyère cheese" + ] + }, + { + "id": 12955, + "cuisine": "brazilian", + "ingredients": [ + "chives", + "garlic cloves", + "paprika", + "onions", + "tomatoes", + "cilantro", + "large shrimp", + "dende oil", + "coconut milk" + ] + }, + { + "id": 16690, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "garlic", + "olive oil", + "tortilla chips", + "tomato sauce", + "yellow onion", + "grating cheese", + "dried oregano" + ] + }, + { + "id": 8769, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "green onions", + "medium shrimp", + "parmigiano reggiano cheese", + "garlic cloves", + "ground black pepper", + "cream cheese", + "fresh parsley", + "half & half", + "refrigerated fettuccine" + ] + }, + { + "id": 47514, + "cuisine": "indian", + "ingredients": [ + "cold water", + "butter", + "green chilies", + "cooking oil", + "cilantro", + "cinnamon sticks", + "chana dal", + "raisins", + "cumin seed", + "bay leaves", + "salt", + "ground turmeric" + ] + }, + { + "id": 39759, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "arborio rice", + "salt", + "arugula", + "dry white wine", + "low salt chicken broth", + "pepper", + "chopped onion" + ] + }, + { + "id": 28619, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "whole milk", + "neutral oil", + "active dry yeast", + "all-purpose flour", + "warm water", + "vegetable shortening", + "powdered sugar", + "large egg whites", + "boiling water" + ] + }, + { + "id": 38863, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "garlic cloves", + "white onion", + "ground pork", + "ground cumin", + "reduced sodium chicken broth", + "vegetable oil", + "chopped cilantro fresh", + "white hominy", + "salt" + ] + }, + { + "id": 42832, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "extra-virgin olive oil", + "french bread", + "fresh basil leaves", + "ground black pepper", + "salt", + "cooking spray", + "plum tomatoes" + ] + }, + { + "id": 21528, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "pastry", + "vegetable oil", + "semi-sweet chocolate morsels", + "white vinegar", + "powdered sugar", + "egg whites", + "salt", + "eggs", + "olive oil", + "ricotta cheese", + "chocolate chips", + "cold water", + "shortening", + "flour", + "white sugar" + ] + }, + { + "id": 25049, + "cuisine": "indian", + "ingredients": [ + "whole wheat flour", + "paneer", + "ground turmeric", + "fennel seeds", + "chili powder", + "rajma", + "water", + "cilantro sprigs", + "onions", + "dough", + "coriander powder", + "salt" + ] + }, + { + "id": 46900, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "extra-virgin olive oil", + "spaghetti", + "garlic powder", + "onions", + "ground cumin", + "crushed tomatoes", + "crushed red pepper", + "italian seasoning", + "ground cinnamon", + "chili powder", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 37206, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "white sugar", + "unbaked pie crusts", + "vanilla extract", + "eggs", + "buttermilk", + "ground nutmeg", + "all-purpose flour" + ] + }, + { + "id": 24675, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "zucchini", + "all-purpose flour", + "chopped cilantro fresh", + "celery ribs", + "cocoa", + "vegetable oil", + "tequila", + "green bell pepper", + "jalapeno chilies", + "carrots", + "chicken broth", + "pepper", + "salt", + "onions" + ] + }, + { + "id": 13403, + "cuisine": "italian", + "ingredients": [ + "pepper", + "butter", + "bow-tie pasta", + "boneless skinless chicken breast halves", + "capers", + "artichoke hearts", + "bacon", + "fresh lemon juice", + "olive oil", + "heavy cream", + "all-purpose flour", + "white wine", + "mushrooms", + "salt", + "fresh parsley" + ] + }, + { + "id": 32257, + "cuisine": "indian", + "ingredients": [ + "salt", + "mango", + "mustard seeds", + "green chilies", + "sugar", + "jaggery" + ] + }, + { + "id": 21354, + "cuisine": "italian", + "ingredients": [ + "stewed tomatoes", + "yellow squash", + "sausage links", + "chopped onion", + "zucchini" + ] + }, + { + "id": 40588, + "cuisine": "irish", + "ingredients": [ + "reduced sodium beef broth", + "peas", + "onions", + "new potatoes", + "beer", + "ground pepper", + "all-purpose flour", + "chuck", + "tomato paste", + "coarse salt", + "garlic cloves" + ] + }, + { + "id": 2341, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "vegetable oil", + "chopped onion", + "black beans", + "mexicorn", + "tomatoes", + "red wine vinegar", + "tortilla chips", + "hot pepper sauce", + "salt" + ] + }, + { + "id": 8353, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "sour cream", + "tomatoes", + "chopped onion", + "sliced black olives", + "garlic salt", + "picante sauce", + "cream cheese" + ] + }, + { + "id": 10621, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "pears", + "vegetable oil", + "dried cherry", + "refrigerated piecrusts" + ] + }, + { + "id": 21851, + "cuisine": "italian", + "ingredients": [ + "pepper", + "olive oil", + "dried basil", + "balsamic vinegar", + "dried thyme", + "salt", + "sweet onion", + "cooking spray" + ] + }, + { + "id": 16317, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "hot chili powder", + "ginger root", + "fresh coriander", + "boneless skinless chicken breasts", + "cumin seed", + "tumeric", + "potatoes", + "natural yogurt", + "onions", + "chopped tomatoes", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 28168, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "lemon", + "garlic cloves", + "unsalted butter", + "cracked black pepper", + "olive oil", + "worcestershire sauce", + "jumbo shrimp", + "cajun seasoning", + "salt" + ] + }, + { + "id": 21051, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "fat free frozen top whip", + "reduced fat creamy peanut butter", + "sundae syrup", + "graham cracker crusts", + "sweetened condensed milk", + "cream cheese, soften" + ] + }, + { + "id": 1303, + "cuisine": "french", + "ingredients": [ + "clove", + "curly-leaf parsley", + "celery heart", + "yellow onion", + "mustard", + "kosher salt", + "bay leaves", + "thyme sprigs", + "pancetta", + "black peppercorns", + "pepper", + "yukon gold potatoes", + "chicken", + "green cabbage", + "oat groats", + "leeks", + "carrots" + ] + }, + { + "id": 8162, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "watercress", + "red bell pepper", + "mango", + "serrano chilies", + "cayenne", + "gingerroot", + "fresh lime juice", + "lime zest", + "coriander seeds", + "paprika", + "chutney", + "ground cumin", + "plain yogurt", + "vegetable oil", + "garlic cloves", + "medium shrimp" + ] + }, + { + "id": 38765, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "chopped cilantro", + "lamb shanks", + "garlic cloves", + "chiles", + "avocado leaves", + "vegetable oil", + "corn tortillas" + ] + }, + { + "id": 16346, + "cuisine": "indian", + "ingredients": [ + "pepper", + "vegetable oil", + "corn starch", + "boneless skinless chicken breast halves", + "curry powder", + "salt", + "cooking sherry", + "ground ginger", + "beef bouillon", + "creamy peanut butter", + "onions", + "water", + "garlic", + "coconut milk" + ] + }, + { + "id": 37892, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "heavy cream", + "canola oil", + "shallots", + "new york strip steaks", + "unsalted butter", + "fresh tarragon", + "black peppercorns", + "chopped fresh thyme", + "cognac" + ] + }, + { + "id": 17715, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "saltines", + "vegetable oil", + "cayenne", + "salt", + "catfish fillets", + "whole milk" + ] + }, + { + "id": 26010, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "vegetable oil", + "red bell pepper", + "beef", + "sauce", + "white sugar", + "kosher salt", + "dried rice noodles", + "onions", + "potato starch", + "sesame oil", + "beef sirloin" + ] + }, + { + "id": 18189, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "hot Italian sausages", + "white wine", + "pizza doughs", + "pesto", + "parsley", + "mozzarella cheese", + "sharp cheddar cheese" + ] + }, + { + "id": 9242, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "bread crumbs", + "green onions", + "greek seasoning", + "mushrooms", + "olive oil", + "kalamata" + ] + }, + { + "id": 44242, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "dry white wine", + "veal scallops", + "capers", + "all-purpose flour", + "unsalted butter", + "toasted pine nuts", + "fresh sage", + "bacon slices" + ] + }, + { + "id": 16997, + "cuisine": "irish", + "ingredients": [ + "parsley", + "onions", + "water", + "salt", + "pepper", + "mutton", + "potatoes", + "carrots" + ] + }, + { + "id": 44677, + "cuisine": "italian", + "ingredients": [ + "ground round", + "zucchini", + "salt", + "dried oregano", + "water", + "chopped celery", + "gnocchi", + "black pepper", + "sliced carrots", + "chopped onion", + "fat free less sodium chicken broth", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 2732, + "cuisine": "french", + "ingredients": [ + "water", + "ice water", + "vanilla extract", + "sugar", + "unsalted butter", + "mint sprigs", + "all-purpose flour", + "white chocolate", + "semisweet chocolate", + "whipping cream", + "strawberries", + "large egg yolks", + "red currant jelly", + "salt" + ] + }, + { + "id": 12972, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "garden peas", + "ground coriander", + "tumeric", + "chili powder", + "paneer", + "onions", + "tomatoes", + "yoghurt", + "garlic", + "cumin seed", + "fresh coriander", + "vegetable oil", + "salt" + ] + }, + { + "id": 34399, + "cuisine": "french", + "ingredients": [ + "clove", + "canned chicken broth", + "olive oil", + "lettuce leaves", + "red wine vinegar", + "purple onion", + "onions", + "eggs", + "pepper", + "ground nutmeg", + "pork loin", + "butter", + "salt", + "peppercorns", + "dried currants", + "dried thyme", + "bay leaves", + "chopped fresh thyme", + "whipping cream", + "fresh parsley", + "sugar", + "baguette", + "tawny port", + "shallots", + "large garlic cloves", + "all-purpose flour" + ] + }, + { + "id": 5688, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "crushed red pepper flakes", + "pasta", + "cooking spray", + "marinara sauce", + "part-skim ricotta cheese", + "part-skim mozzarella cheese", + "basil" + ] + }, + { + "id": 8941, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "boston butt", + "dry red wine", + "carrots", + "mozzarella cheese", + "bay leaves", + "crushed red pepper", + "onions", + "olive oil", + "large garlic cloves", + "sausages", + "plum tomatoes", + "pasta", + "grated parmesan cheese", + "chopped celery", + "thyme sprigs" + ] + }, + { + "id": 42715, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "pepper", + "watercress", + "creole seasoning", + "capers", + "lime juice", + "hoagie rolls", + "shrimp", + "eggs", + "minced garlic", + "salt", + "non stick spray", + "mustard", + "mayonaise", + "milk", + "hot sauce", + "cornmeal" + ] + }, + { + "id": 41198, + "cuisine": "italian", + "ingredients": [ + "butter", + "chopped parsley", + "sliced black olives", + "salt", + "eggs", + "garlic", + "spaghetti", + "grated parmesan cheese", + "sliced ham" + ] + }, + { + "id": 14500, + "cuisine": "chinese", + "ingredients": [ + "milk", + "vanilla extract", + "red bean paste", + "large eggs", + "unsalted butter", + "glutinous rice flour", + "sugar", + "baking powder" + ] + }, + { + "id": 9666, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "paprika", + "coconut milk", + "tomato purée", + "cardamon", + "fresh lemon juice", + "garam masala", + "ground coriander", + "chicken", + "grass-fed butter", + "chili powder", + "cinnamon sticks" + ] + }, + { + "id": 29838, + "cuisine": "cajun_creole", + "ingredients": [ + "baking soda", + "sugar", + "pecan halves", + "unsalted butter", + "light cream" + ] + }, + { + "id": 42155, + "cuisine": "mexican", + "ingredients": [ + "beef", + "juice", + "jalapeno chilies", + "flour tortillas", + "sour cream", + "avocado", + "cilantro" + ] + }, + { + "id": 10149, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "fresh lime juice", + "cilantro leaves", + "cilantro sprigs", + "lime zest", + "carrots" + ] + }, + { + "id": 3171, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken skinless thigh", + "egg yolks", + "scallions", + "tomato paste", + "minced ginger", + "rice vinegar", + "toasted sesame oil", + "dark soy sauce", + "light soy sauce", + "peanut oil", + "chicken stock", + "minced garlic", + "chile de arbol", + "corn starch" + ] + }, + { + "id": 28986, + "cuisine": "italian", + "ingredients": [ + "water", + "light tuna packed in olive oil", + "salt", + "fresh rosemary", + "dry white wine", + "anchovy paste", + "chopped garlic", + "black pepper", + "boneless turkey breast", + "extra-virgin olive oil", + "lemon zest", + "tapenade", + "fresh lemon juice" + ] + }, + { + "id": 33644, + "cuisine": "thai", + "ingredients": [ + "eggs", + "rice noodles", + "white wine vinegar", + "boneless skinless chicken breast halves", + "peanuts", + "butter", + "beansprouts", + "fish sauce", + "vegetable oil", + "crushed red pepper", + "green onions", + "lemon", + "white sugar" + ] + }, + { + "id": 13355, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "cilantro leaves", + "chicken thighs", + "tamarind pulp", + "fenugreek seeds", + "chicken stock", + "sea salt", + "garlic cloves", + "chili flakes", + "yellow onion", + "chicken" + ] + }, + { + "id": 13783, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "diced tomatoes", + "black beans", + "green chilies", + "flour tortillas", + "onions", + "unbaked pie crusts", + "garlic" + ] + }, + { + "id": 29736, + "cuisine": "british", + "ingredients": [ + "baked beans", + "eggs", + "button mushrooms", + "tomatoes", + "sunflower oil", + "streaky bacon", + "pork sausages" + ] + }, + { + "id": 13860, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "ground beef", + "pepper", + "salt", + "jalapeno chilies", + "onions", + "shredded cheddar cheese", + "tortilla chips" + ] + }, + { + "id": 7367, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "dry sherry", + "corn starch", + "cooked rice", + "vegetable oil", + "new york strip steaks", + "greens", + "sesame seeds", + "rice vinegar", + "red bell pepper", + "sugar", + "red pepper flakes", + "garlic cloves" + ] + }, + { + "id": 4367, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "water", + "coriander seeds", + "salt", + "ground turmeric", + "red chili powder", + "pearl onions", + "urad dal", + "oil", + "black pepper", + "tamarind", + "baton", + "mustard seeds", + "tomatoes", + "coconut", + "vegetables", + "fenugreek seeds", + "cumin" + ] + }, + { + "id": 39128, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "fresh ginger root", + "rice wine", + "beef rib short", + "chestnuts", + "water", + "potatoes", + "salt", + "pears", + "brown sugar", + "shiitake", + "green onions", + "yellow onion", + "kiwi", + "ground ginger", + "minced garlic", + "ground black pepper", + "sesame oil", + "carrots" + ] + }, + { + "id": 44224, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "herb seasoning", + "pesto", + "tortellini", + "tomatoes", + "chicken breasts", + "zucchini", + "cheese" + ] + }, + { + "id": 35050, + "cuisine": "french", + "ingredients": [ + "coriander seeds", + "european style butter", + "fresh chives", + "new potatoes", + "ground black pepper", + "crème fraîche", + "kosher salt", + "sea salt" + ] + }, + { + "id": 48183, + "cuisine": "russian", + "ingredients": [ + "reduced-fat sour cream", + "boneless skinless chicken breast halves", + "chopped onion", + "butter", + "low salt chicken broth", + "paprika", + "plum tomatoes" + ] + }, + { + "id": 35833, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "sugar", + "large eggs", + "paprika", + "roux", + "andouille sausage", + "file powder", + "vegetable oil", + "ground cayenne pepper", + "powdered sugar", + "baking soda", + "onion powder", + "shrimp", + "chicken broth", + "garlic powder", + "baking powder", + "all-purpose flour", + "ground cumin" + ] + }, + { + "id": 24545, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "minced garlic", + "vegetable broth", + "fresh leav spinach", + "ground pepper", + "medium shrimp", + "scallops", + "leeks", + "red chili peppers", + "olive oil", + "red bell pepper" + ] + }, + { + "id": 11948, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "salt", + "garlic powder", + "baking powder", + "chicken", + "water", + "large eggs", + "hot sauce", + "ground black pepper", + "vegetable oil" + ] + }, + { + "id": 44600, + "cuisine": "british", + "ingredients": [ + "large egg whites", + "cream of tartar", + "strawberries", + "pure vanilla extract", + "granulated white sugar", + "caster sugar", + "heavy whipping cream" + ] + }, + { + "id": 19771, + "cuisine": "french", + "ingredients": [ + "grape tomatoes", + "extra-virgin olive oil", + "fresh lemon juice", + "dry white wine", + "garlic cloves", + "cooking spray", + "grated lemon zest", + "arugula", + "ground black pepper", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 18879, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "dried cherry", + "flat leaf parsley", + "sausage casings", + "butter", + "chicken broth", + "ground black pepper", + "onions", + "kosher salt", + "bread, cut french into loaf" + ] + }, + { + "id": 44682, + "cuisine": "korean", + "ingredients": [ + "mayonaise", + "salt", + "chopped cilantro fresh", + "pepper", + "peanut oil", + "bread crumb fresh", + "crabmeat", + "asian fish sauce", + "fresh ginger", + "shrimp" + ] + }, + { + "id": 37219, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cilantro leaves", + "tomatillos", + "onions", + "salt", + "chiles", + "garlic cloves" + ] + }, + { + "id": 27950, + "cuisine": "mexican", + "ingredients": [ + "green olives", + "jalapeno chilies", + "oil", + "onions", + "brown sugar", + "raisins", + "poblano chiles", + "cumin", + "ground cloves", + "garlic", + "cones", + "tomatoes", + "potatoes", + "liquid", + "ground beef" + ] + }, + { + "id": 33547, + "cuisine": "italian", + "ingredients": [ + "white onion", + "lasagna noodles", + "shredded mozzarella cheese", + "italian sausage", + "parmesan cheese", + "ricotta cheese", + "kosher salt", + "grated parmesan cheese", + "pasta sauce", + "ground black pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 2501, + "cuisine": "indian", + "ingredients": [ + "sugar", + "dates", + "cardamom", + "clove", + "fresh ginger", + "salt", + "red chili peppers", + "raisins", + "ground cinnamon", + "vinegar", + "blanched almonds" + ] + }, + { + "id": 46345, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "whipping cream", + "frozen blueberries", + "bread", + "large eggs", + "salt", + "light brown sugar", + "granulated sugar", + "vanilla extract", + "confectioners sugar", + "ground cinnamon", + "butter", + "golden syrup" + ] + }, + { + "id": 49582, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "large eggs", + "corn starch", + "coconut extract", + "large egg whites", + "sweetened coconut flakes", + "sugar", + "unsalted butter", + "all-purpose flour", + "pure vanilla extract", + "water", + "spiced rum", + "canola oil" + ] + }, + { + "id": 33838, + "cuisine": "chinese", + "ingredients": [ + "eggplant", + "red pepper", + "garlic cloves", + "water", + "green onions", + "cooking wine", + "coriander", + "sugar", + "cooking oil", + "ginger", + "corn starch", + "light soy sauce", + "bean paste", + "salt", + "black vinegar" + ] + }, + { + "id": 32552, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "whole wheat tortillas", + "low sodium chicken stock", + "onions", + "avocado", + "lime slices", + "garlic", + "red enchilada sauce", + "olive oil", + "red pepper", + "green chilies", + "cumin", + "shredded cheddar cheese", + "boneless skinless chicken breasts", + "cayenne pepper", + "sour cream" + ] + }, + { + "id": 33857, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "green onions", + "soy sauce", + "frozen peas and carrots", + "cooked rice", + "sesame oil", + "white onion", + "chicken" + ] + }, + { + "id": 35966, + "cuisine": "greek", + "ingredients": [ + "ground round", + "large eggs", + "sandwich buns", + "feta cheese crumbles", + "bread crumb fresh", + "light mayonnaise", + "salt", + "dried oregano", + "fat free yogurt", + "cooking spray", + "purple onion", + "fresh parsley", + "frozen chopped spinach", + "roasted red peppers", + "cracked black pepper", + "garlic cloves" + ] + }, + { + "id": 13680, + "cuisine": "southern_us", + "ingredients": [ + "tangerine", + "butter", + "tangerine juice", + "cream sweeten whip", + "large eggs", + "all-purpose flour", + "yellow corn meal", + "milk", + "salt", + "sugar", + "refrigerated piecrusts", + "lemon juice" + ] + }, + { + "id": 24802, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "Sriracha", + "chili sauce", + "chillies", + "ground chicken", + "green onions", + "fresh mint", + "holy basil", + "lime", + "rice vermicelli", + "fresh lime juice", + "rice paper", + "brown sugar", + "roasted rice powder", + "peanut oil", + "onions" + ] + }, + { + "id": 22708, + "cuisine": "southern_us", + "ingredients": [ + "fresh herbs", + "brewed coffee", + "heavy whipping cream", + "firmly packed light brown sugar", + "ham", + "kumquats" + ] + }, + { + "id": 16175, + "cuisine": "british", + "ingredients": [ + "dried thyme", + "yukon gold potatoes", + "salt", + "carrots", + "tomato paste", + "sweet potatoes", + "red wine", + "yellow onion", + "puff pastry", + "olive oil", + "butter", + "all-purpose flour", + "lamb leg", + "fresh rosemary", + "onion powder", + "garlic", + "freshly ground pepper" + ] + }, + { + "id": 49343, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic", + "cooked rice", + "sea salt", + "pinto beans", + "chili powder", + "salsa", + "black pepper", + "paprika", + "cumin" + ] + }, + { + "id": 44263, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "lasagna noodles", + "salt", + "part-skim mozzarella cheese", + "cooking spray", + "nonfat ricotta cheese", + "black pepper", + "marinara sauce", + "whole nutmegs", + "fresh parmesan cheese", + "butter" + ] + }, + { + "id": 37535, + "cuisine": "southern_us", + "ingredients": [ + "dark corn syrup", + "vanilla extract", + "half & half", + "dark brown sugar", + "egg yolks", + "salt", + "butter", + "corn starch" + ] + }, + { + "id": 11528, + "cuisine": "italian", + "ingredients": [ + "amaretti", + "mascarpone", + "brewed espresso", + "sugar", + "heavy cream", + "large eggs", + "salt" + ] + }, + { + "id": 27942, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "chopped pecans", + "salmon fillets", + "dark brown sugar", + "salt", + "pepper", + "lemon juice" + ] + }, + { + "id": 45546, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "chopped onion", + "red potato", + "garbanzo beans", + "unsweetened coconut milk", + "olive oil", + "baby spinach leaves", + "vegetable broth" + ] + }, + { + "id": 22657, + "cuisine": "indian", + "ingredients": [ + "oil", + "warm water", + "chapatti flour", + "salt" + ] + }, + { + "id": 5647, + "cuisine": "greek", + "ingredients": [ + "capers", + "salt", + "tomatoes", + "olive oil", + "onions", + "greek seasoning", + "pepper", + "lemon juice", + "pitted kalamata olives", + "halibut" + ] + }, + { + "id": 18410, + "cuisine": "thai", + "ingredients": [ + "chiles", + "garlic cloves", + "shallots", + "asian fish sauce", + "cilantro leaves", + "cherry tomatoes", + "fresh lemon juice" + ] + }, + { + "id": 45403, + "cuisine": "mexican", + "ingredients": [ + "lime rind", + "garlic cloves", + "ground red pepper", + "fresh lime juice", + "cooking spray", + "tequila", + "light brown sugar", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 6702, + "cuisine": "indian", + "ingredients": [ + "cayenne", + "plain whole-milk yogurt", + "cumin seed", + "fresh coriander", + "cucumber", + "garlic" + ] + }, + { + "id": 32611, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "cayenne", + "diced tomatoes", + "sweet paprika", + "brown sugar", + "dried thyme", + "boneless skinless chicken breasts", + "garlic", + "fresh parsley", + "soy sauce", + "olive oil", + "cajun seasoning", + "creole seasoning", + "onions", + "pepper", + "orange bell pepper", + "red pepper", + "wild rice", + "basmati rice" + ] + }, + { + "id": 4611, + "cuisine": "cajun_creole", + "ingredients": [ + "catfish fillets", + "poblano peppers", + "red wine vinegar", + "salt", + "lemon juice", + "onions", + "cooked rice", + "green onions", + "fish stock", + "hot sauce", + "fresh mint", + "green bell pepper", + "vegetable oil", + "garlic", + "freshly ground pepper", + "fresh parsley", + "tomatoes", + "jalapeno chilies", + "butter", + "all-purpose flour", + "red bell pepper", + "white cornmeal" + ] + }, + { + "id": 14085, + "cuisine": "korean", + "ingredients": [ + "pepper flakes", + "minced garlic", + "sugar", + "green onions", + "fish sauce", + "fresh ginger", + "green cabbage", + "kosher salt", + "yellow onion" + ] + }, + { + "id": 28675, + "cuisine": "mexican", + "ingredients": [ + "finely chopped onion", + "fresh oregano", + "chile pepper", + "chopped cilantro", + "minced garlic", + "tomatillos", + "ground cumin", + "water", + "salt" + ] + }, + { + "id": 20750, + "cuisine": "mexican", + "ingredients": [ + "chili flakes", + "salsa", + "spring onions", + "chips", + "sour cream", + "cheese" + ] + }, + { + "id": 11147, + "cuisine": "russian", + "ingredients": [ + "semolina flour", + "onions", + "soft goat's cheese", + "large eggs", + "unsalted butter", + "table salt", + "cream cheese" + ] + }, + { + "id": 20277, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "salsa verde", + "green onions", + "frozen corn", + "Daisy Sour Cream", + "fresh cilantro", + "roma tomatoes", + "salt", + "masa harina", + "lime juice", + "granulated sugar", + "butter", + "grate lime peel", + "green bell pepper", + "taco seasoning mix", + "jalapeno chilies", + "all-purpose flour" + ] + }, + { + "id": 33514, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "cilantro leaves", + "tumeric", + "mint leaves", + "green chilies", + "cooking oil", + "salt", + "amchur", + "chili powder", + "cumin" + ] + }, + { + "id": 38335, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "hoisin sauce", + "large shrimp", + "peeled fresh ginger", + "rice pilaf", + "salad", + "garlic cloves" + ] + }, + { + "id": 6918, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "baking powder", + "all-purpose flour", + "yellow corn meal", + "baking soda", + "bacon", + "milk", + "buttermilk", + "pinto beans", + "eggs", + "ground black pepper", + "salt" + ] + }, + { + "id": 15319, + "cuisine": "moroccan", + "ingredients": [ + "ground pepper", + "purple onion", + "cardamom", + "water", + "dry red wine", + "beef broth", + "ground ginger", + "ground red pepper", + "salt", + "garlic cloves", + "ground cinnamon", + "vegetable oil", + "all-purpose flour", + "leg of lamb" + ] + }, + { + "id": 44257, + "cuisine": "greek", + "ingredients": [ + "diced tomatoes", + "chopped onion", + "olive oil", + "dry red wine", + "chicken thighs", + "large garlic cloves", + "fresh oregano", + "kalamata", + "feta cheese crumbles" + ] + }, + { + "id": 4405, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "pork butt", + "water", + "diced tomatoes", + "ground cumin", + "white onion", + "dri oregano leaves, crush", + "knorr tomato bouillon with chicken flavor cube", + "hominy", + "garlic" + ] + }, + { + "id": 14439, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "chili paste", + "white mushrooms", + "light brown sugar", + "lemongrass", + "green chilies", + "galangal", + "boneless, skinless chicken breast", + "cilantro leaves", + "coconut milk", + "chicken broth", + "lime", + "Thai fish sauce" + ] + }, + { + "id": 2275, + "cuisine": "french", + "ingredients": [ + "french bread", + "onion soup mix", + "beef broth", + "gruyere cheese", + "beef consomme", + "onions" + ] + }, + { + "id": 36998, + "cuisine": "korean", + "ingredients": [ + "green onions", + "oil", + "minced garlic", + "salt", + "sesame oil", + "sesame seeds", + "dried shiitake mushrooms" + ] + }, + { + "id": 11272, + "cuisine": "indian", + "ingredients": [ + "fish fillets", + "Biryani Masala", + "salt", + "green chilies", + "onions", + "clove", + "garam masala", + "chili powder", + "rice", + "oil", + "ground turmeric", + "milk", + "yoghurt", + "cilantro leaves", + "cumin seed", + "peppercorns", + "garlic paste", + "coriander powder", + "cinnamon", + "green cardamom", + "hot water", + "ginger paste" + ] + }, + { + "id": 43161, + "cuisine": "southern_us", + "ingredients": [ + "barbecue sauce", + "garlic", + "whiskey", + "water", + "butter", + "peach preserves", + "green onions", + "yellow onion", + "olive oil", + "worcestershire sauce", + "chicken thighs" + ] + }, + { + "id": 41268, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "pepper", + "chili powder", + "onions", + "sugar", + "grated parmesan cheese", + "ground beef", + "parsley sprigs", + "tomato juice", + "garlic cloves", + "dried oregano", + "tomato sauce", + "water", + "salt", + "spaghetti" + ] + }, + { + "id": 2095, + "cuisine": "french", + "ingredients": [ + "butter", + "thyme", + "bay scallops", + "garlic", + "chopped parsley", + "red wine", + "toasted almonds", + "shallots", + "salt" + ] + }, + { + "id": 18170, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "cauliflower florets", + "cayenne pepper", + "bay leaf", + "cinnamon", + "garlic", + "brown lentils", + "olive oil", + "vegetable broth", + "chickpeas", + "ground cumin", + "diced tomatoes", + "yellow onion", + "celery" + ] + }, + { + "id": 14168, + "cuisine": "japanese", + "ingredients": [ + "radicchio", + "chili oil", + "cucumber", + "sesame seeds", + "vegetable oil", + "carrots", + "ramen soup mix", + "sesame oil", + "rice vinegar", + "avocado", + "enokitake", + "pea pods", + "beansprouts" + ] + }, + { + "id": 12507, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "cajun seasoning", + "onion tops", + "chopped parsley", + "chicken", + "chicken stock", + "water", + "salt", + "thyme", + "onions", + "andouille sausage", + "garlic", + "okra", + "celery", + "cooked rice", + "ground black pepper", + "all-purpose flour", + "red bell pepper", + "canola oil" + ] + }, + { + "id": 43830, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "dry white wine", + "sliced mushrooms", + "crushed tomatoes", + "extra-virgin olive oil", + "capers", + "pappardelle pasta", + "juice", + "anchovies", + "red pepper flakes" + ] + }, + { + "id": 35251, + "cuisine": "southern_us", + "ingredients": [ + "mint", + "yellow food coloring", + "lemon slices", + "granulated sugar", + "whipped cream", + "fresh lemon juice", + "powdered sugar", + "butter", + "cream cheese", + "pure vanilla extract", + "lemon zest", + "vanilla wafer crumbs", + "sweetened condensed milk" + ] + }, + { + "id": 14824, + "cuisine": "italian", + "ingredients": [ + "butter", + "italian salad dressing", + "fresh green bean" + ] + }, + { + "id": 22456, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "coarse salt", + "flat leaf parsley", + "ground pepper", + "cheese tortellini", + "water", + "grated parmesan cheese", + "garlic cloves", + "shiitake", + "butter" + ] + }, + { + "id": 34893, + "cuisine": "mexican", + "ingredients": [ + "water", + "salt", + "butter", + "cinnamon sugar", + "large eggs", + "all-purpose flour", + "sugar", + "vanilla extract" + ] + }, + { + "id": 19845, + "cuisine": "moroccan", + "ingredients": [ + "preserved lemon", + "unsalted butter", + "cilantro leaves", + "onions", + "saffron threads", + "minced garlic", + "kalamata", + "freshly ground pepper", + "chicken", + "store bought low sodium chicken stock", + "sea salt", + "ground allspice", + "ground turmeric", + "ground ginger", + "cayenne", + "extra-virgin olive oil", + "couscous", + "ground cumin" + ] + }, + { + "id": 16302, + "cuisine": "spanish", + "ingredients": [ + "dry bread crumbs", + "fresh parsley", + "olive oil", + "pork loin chops", + "large eggs", + "serrano ham", + "garlic cloves" + ] + }, + { + "id": 46104, + "cuisine": "moroccan", + "ingredients": [ + "water", + "dry white wine", + "all-purpose flour", + "chopped cilantro", + "black pepper", + "olive oil", + "paprika", + "smoked paprika", + "active dry yeast", + "butter", + "cumin seed", + "onions", + "chili pepper", + "coriander seeds", + "salt", + "chopped parsley" + ] + }, + { + "id": 46754, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "pinenuts", + "loosely packed fresh basil leaves", + "olive oil", + "salt", + "large garlic cloves" + ] + }, + { + "id": 15225, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "grated nutmeg", + "ground cinnamon", + "unsweetened cocoa powder", + "instant espresso powder" + ] + }, + { + "id": 41730, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "salt", + "pecans", + "bourbon whiskey", + "brown sugar", + "butter", + "evaporated milk", + "vanilla extract" + ] + }, + { + "id": 13740, + "cuisine": "greek", + "ingredients": [ + "finely chopped onion", + "fresh parsley", + "fresh rosemary", + "bulgur", + "chopped fresh chives", + "broth", + "olive oil", + "couscous" + ] + }, + { + "id": 21145, + "cuisine": "brazilian", + "ingredients": [ + "water", + "pork country-style ribs", + "vegetable oil", + "onions", + "bay leaves", + "cooked white rice", + "dried black beans", + "garlic", + "chorizo sausage" + ] + }, + { + "id": 5455, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "vegetable oil", + "corn tortillas", + "cream of chicken soup", + "diced tomatoes", + "cooked chicken breasts", + "minced garlic", + "red pepper", + "onions", + "cream of celery soup", + "chili powder", + "green pepper" + ] + }, + { + "id": 26045, + "cuisine": "japanese", + "ingredients": [ + "dark soy sauce", + "egg yolks", + "sunflower oil", + "konbu", + "mirin", + "lemon wedge", + "cornflour", + "roe", + "sesame seeds", + "spring onions", + "ponzu", + "asparagus spears", + "chili flakes", + "self rising flour", + "carbonated water", + "rice vinegar" + ] + }, + { + "id": 23254, + "cuisine": "indian", + "ingredients": [ + "water", + "flour", + "ground cumin", + "cold water", + "semolina", + "salt", + "amchur", + "baking powder", + "mint", + "chili paste", + "ginger paste" + ] + }, + { + "id": 7401, + "cuisine": "greek", + "ingredients": [ + "parsley flakes", + "minced garlic", + "roast red peppers, drain", + "dried oregano", + "pepper", + "ground black pepper", + "onions", + "capers", + "olive oil", + "ripe olives", + "green olives", + "dried basil", + "pickled vegetables" + ] + }, + { + "id": 45921, + "cuisine": "cajun_creole", + "ingredients": [ + "seasoning", + "finely chopped onion", + "chopped celery", + "ham", + "water", + "ground red pepper", + "all-purpose flour", + "fresh parsley", + "crawfish", + "green onions", + "salt", + "red bell pepper", + "ground black pepper", + "vegetable oil", + "long-grain rice" + ] + }, + { + "id": 36168, + "cuisine": "japanese", + "ingredients": [ + "leeks", + "fresh pork fat", + "chicken", + "vegetable oil", + "garlic cloves", + "mushrooms", + "scallions", + "pig", + "ginger", + "onions" + ] + }, + { + "id": 7192, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "bay leaves", + "yellow onion", + "dried oregano", + "chiles", + "olive oil", + "worcestershire sauce", + "ancho chile pepper", + "reduced sodium vegetable broth", + "dried thyme", + "red wine vinegar", + "garlic cloves", + "ground cumin", + "red chili peppers", + "ground black pepper", + "salt", + "boiling water" + ] + }, + { + "id": 2664, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "fat free less sodium chicken broth", + "reduced fat milk", + "chopped onion", + "ground round", + "olive oil", + "diced tomatoes", + "ground turkey", + "tomato paste", + "minced garlic", + "dry white wine", + "carrots", + "black pepper", + "ground nutmeg", + "chopped celery" + ] + }, + { + "id": 46921, + "cuisine": "japanese", + "ingredients": [ + "sea salt", + "fresh ginger", + "cayenne pepper", + "sugar", + "rice vinegar", + "daikon", + "hothouse cucumber" + ] + }, + { + "id": 22219, + "cuisine": "chinese", + "ingredients": [ + "natural peanut butter", + "brown rice", + "sliced green onions", + "pork tenderloin", + "garlic cloves", + "picante sauce", + "dark sesame oil", + "low sodium soy sauce", + "peeled fresh ginger", + "red bell pepper" + ] + }, + { + "id": 44435, + "cuisine": "french", + "ingredients": [ + "green peppercorns", + "kosher salt", + "dry bread crumbs", + "onions", + "sugar", + "pappardelle pasta", + "flat leaf parsley", + "reduced sodium chicken broth", + "( oz.) tomato sauce", + "duck drumsticks", + "green olives", + "dried thyme", + "orange liqueur", + "orange zest" + ] + }, + { + "id": 18768, + "cuisine": "french", + "ingredients": [ + "chutney", + "vegetable oil", + "sweet potatoes", + "confit duck leg" + ] + }, + { + "id": 3937, + "cuisine": "indian", + "ingredients": [ + "tomato ketchup", + "vegetables", + "dough", + "butter oil", + "cilantro leaves" + ] + }, + { + "id": 41401, + "cuisine": "japanese", + "ingredients": [ + "sake", + "sea scallops", + "button mushrooms", + "molasses", + "mirin", + "fresh ginger", + "worcestershire sauce", + "sugar", + "reduced sodium soy sauce", + "scallions" + ] + }, + { + "id": 12594, + "cuisine": "cajun_creole", + "ingredients": [ + "scallion greens", + "water", + "large eggs", + "mesclun", + "puff pastry sheets", + "crawfish", + "unsalted butter", + "all-purpose flour", + "tomatoes", + "olive oil", + "pastry shell", + "onions", + "green bell pepper", + "cayenne", + "white wine vinegar" + ] + }, + { + "id": 18146, + "cuisine": "southern_us", + "ingredients": [ + "ground ginger", + "boneless chicken skinless thigh", + "diced tomatoes", + "cooked shrimp", + "green bell pepper", + "curry powder", + "garlic", + "chicken broth", + "kosher salt", + "white rice", + "onions", + "granny smith apples", + "raisins", + "cayenne pepper" + ] + }, + { + "id": 38760, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "yellow split peas", + "onions", + "curry leaves", + "vegetable oil", + "garlic cloves", + "lemon wedge", + "cumin seed", + "ground turmeric", + "chopped tomatoes", + "vegetable stock", + "chillies" + ] + }, + { + "id": 28528, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "tomatoes", + "pesto" + ] + }, + { + "id": 25653, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "cayenne pepper sauce", + "olive oil", + "fresh orange juice", + "honey", + "onions" + ] + }, + { + "id": 42780, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "orange zest", + "orange juice", + "sweetened condensed milk", + "sugar" + ] + }, + { + "id": 16449, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red wine", + "salt", + "broth", + "pepper", + "tomato juice", + "littleneck clams", + "chopped onion", + "fish", + "tomatoes", + "Dungeness crabs", + "basil", + "halibut", + "large shrimp", + "chopped bell pepper", + "parsley", + "garlic", + "bouquet" + ] + }, + { + "id": 598, + "cuisine": "italian", + "ingredients": [ + "ragu old world style pasta sauc", + "shredded mozzarella cheese", + "ricotta cheese", + "ground beef", + "grated parmesan cheese", + "rotini", + "dri oregano leaves, crush" + ] + }, + { + "id": 23310, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "lemon juice", + "pepper", + "queso fresco", + "grated lemon zest", + "onions", + "portuguese rolls", + "ground pork", + "garlic cloves", + "mayonaise", + "poblano peppers", + "spanish chorizo", + "smoked paprika" + ] + }, + { + "id": 18120, + "cuisine": "italian", + "ingredients": [ + "dried currants", + "olive oil", + "grated parmesan cheese", + "garlic cloves", + "pinenuts", + "finely chopped onion", + "sweet italian sausage", + "bread crumb fresh", + "ground black pepper", + "diced tomatoes", + "spaghetti", + "fresh basil", + "milk", + "large eggs", + "chopped onion" + ] + }, + { + "id": 27638, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "self-rising cake flour", + "large eggs", + "pitted date", + "dark brown sugar" + ] + }, + { + "id": 22086, + "cuisine": "chinese", + "ingredients": [ + "chiles", + "star anise", + "toasted sesame oil", + "shallots", + "peanut oil", + "fresh ginger", + "garlic", + "szechwan peppercorns", + "cinnamon sticks" + ] + }, + { + "id": 22550, + "cuisine": "italian", + "ingredients": [ + "pasta", + "crumbled blue cheese", + "diced tomatoes", + "olive oil", + "baby spinach", + "garlic", + "sugar", + "half & half", + "crushed red pepper flakes", + "ground black pepper", + "heavy cream", + "salt" + ] + }, + { + "id": 11302, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "water", + "vanilla extract", + "sugar", + "light corn syrup", + "baking soda", + "salted peanuts" + ] + }, + { + "id": 28738, + "cuisine": "mexican", + "ingredients": [ + "salt", + "vegetable shortening", + "baking powder", + "hot water", + "all-purpose flour" + ] + }, + { + "id": 16296, + "cuisine": "southern_us", + "ingredients": [ + "grapefruit", + "sugar", + "red grapefruit juice", + "ginger ale", + "cinnamon sticks", + "crushed ice" + ] + }, + { + "id": 1704, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "grated parmesan cheese", + "italian seasoning", + "olive oil", + "bagels", + "garlic" + ] + }, + { + "id": 42023, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "celery", + "water", + "carrots", + "cabbage", + "miso", + "onions", + "fresh ginger root", + "toasted sesame oil", + "canola oil" + ] + }, + { + "id": 37358, + "cuisine": "mexican", + "ingredients": [ + "ground chipotle chile pepper", + "chopped cilantro fresh", + "Knorr® Vegetable recipe mix", + "lime juice", + "chickpeas" + ] + }, + { + "id": 1152, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "jalapeno chilies", + "snapper fillets", + "garlic salt", + "tomato purée", + "asparagus", + "salt", + "shrimp", + "sugar", + "zucchini", + "crabmeat", + "chopped cilantro", + "fontina cheese", + "olive oil", + "shallots", + "carrots", + "plum tomatoes" + ] + }, + { + "id": 12401, + "cuisine": "indian", + "ingredients": [ + "cardamom", + "jaggery", + "salt", + "ghee", + "wheat flour", + "oil", + "toor dal" + ] + }, + { + "id": 35948, + "cuisine": "british", + "ingredients": [ + "eggs", + "baking soda", + "ground cloves", + "corn syrup", + "ground cinnamon", + "cider vinegar", + "white sugar", + "shortening", + "all-purpose flour" + ] + }, + { + "id": 49008, + "cuisine": "filipino", + "ingredients": [ + "tomato sauce", + "hot dogs", + "onions", + "ketchup", + "salt", + "canola oil", + "sugar", + "grating cheese", + "noodles", + "water", + "ground beef" + ] + }, + { + "id": 36308, + "cuisine": "italian", + "ingredients": [ + "butter", + "medium shrimp", + "salt", + "garlic", + "plum tomatoes", + "olive oil", + "cayenne pepper" + ] + }, + { + "id": 14721, + "cuisine": "southern_us", + "ingredients": [ + "plain yogurt", + "baking powder", + "fresh dill", + "unsalted butter", + "all-purpose flour", + "baking soda", + "salt", + "sugar", + "whole milk", + "extra sharp cheddar cheese" + ] + }, + { + "id": 26508, + "cuisine": "indian", + "ingredients": [ + "egg whites", + "vegetable oil", + "puff pastry", + "chicken breasts", + "salt", + "ground cumin", + "yoghurt", + "ginger", + "ground turmeric", + "chili powder", + "onions" + ] + }, + { + "id": 35312, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "coriander seeds", + "lemon wedge", + "salt", + "chopped cilantro", + "water", + "ground black pepper", + "cilantro", + "long-grain rice", + "tomato sauce", + "garlic powder", + "lean ground beef", + "yellow onion", + "celery ribs", + "olive oil", + "potatoes", + "garlic", + "carrots" + ] + }, + { + "id": 16456, + "cuisine": "vietnamese", + "ingredients": [ + "vietnamese fish sauce", + "sugar", + "fresh lime juice", + "green chile", + "garlic cloves", + "water" + ] + }, + { + "id": 47678, + "cuisine": "southern_us", + "ingredients": [ + "kale", + "olive oil", + "creole seasoning" + ] + }, + { + "id": 28032, + "cuisine": "italian", + "ingredients": [ + "chopped ham", + "ground black pepper", + "garlic", + "onions", + "crushed tomatoes", + "cannellini beans", + "celery", + "pasta", + "beef stock", + "carrots", + "olive oil", + "chopped fresh thyme", + "bay leaf" + ] + }, + { + "id": 9659, + "cuisine": "french", + "ingredients": [ + "oil cured olives", + "grated lemon zest", + "green olives", + "chopped fresh thyme", + "garlic cloves", + "ground black pepper", + "anchovy fillets", + "capers", + "kalamata", + "flat leaf parsley" + ] + }, + { + "id": 1288, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "pepper", + "vegetable oil", + "all-purpose flour", + "ground beef", + "sugar", + "active dry yeast", + "salt", + "lemon juice", + "bread flour", + "soy sauce", + "swiss chard", + "rice vinegar", + "cornmeal", + "powdered sugar", + "water", + "cilantro", + "garlic cloves", + "onions" + ] + }, + { + "id": 36739, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "lard", + "queso fresco", + "vegetable stock", + "tortilla chips" + ] + }, + { + "id": 10601, + "cuisine": "moroccan", + "ingredients": [ + "active dry yeast", + "all-purpose flour", + "semolina flour", + "olive oil", + "nigella seeds", + "honey", + "barley flour", + "water", + "salt", + "cornmeal" + ] + }, + { + "id": 38299, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "navel oranges", + "asparagus", + "vegetable oil", + "avocado", + "cooked chicken", + "toasted sesame seeds", + "shredded cabbage", + "wonton wrappers" + ] + }, + { + "id": 39327, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "oyster sauce", + "fresh ginger", + "teriyaki sauce", + "spring onions", + "garlic", + "scallops", + "dry sherry", + "lemon juice" + ] + }, + { + "id": 16981, + "cuisine": "irish", + "ingredients": [ + "vegetable oil cooking spray", + "carrots", + "salt", + "rutabaga", + "margarine", + "honey" + ] + }, + { + "id": 35963, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cannellini beans", + "fresh parmesan cheese", + "fresh lemon juice", + "ground pepper", + "garlic cloves", + "kale", + "roasted red peppers", + "rigatoni" + ] + }, + { + "id": 1643, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "reduced sodium soy sauce", + "vegetable oil", + "garlic", + "dry roasted peanuts", + "chicken breasts", + "dry sherry", + "spaghetti", + "kosher salt", + "green onions", + "red wine vinegar", + "corn starch", + "chicken broth", + "ground black pepper", + "sesame oil", + "chili paste with garlic" + ] + }, + { + "id": 33117, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "cumin seed", + "salmon", + "shallots", + "fresh lime juice", + "ground black pepper", + "greek yogurt", + "kosher salt", + "mango chutney" + ] + }, + { + "id": 39438, + "cuisine": "vietnamese", + "ingredients": [ + "pepper", + "spices", + "salt", + "sugar", + "peanuts", + "feet", + "fish sauce", + "lemongrass", + "garlic", + "white wine", + "flour", + "purple onion" + ] + }, + { + "id": 24767, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "large eggs", + "extra-virgin olive oil", + "heavy whipping cream", + "kosher salt", + "chopped green bell pepper", + "pimentos", + "hot sauce", + "ground cumin", + "unsalted butter", + "golden raisins", + "all-purpose flour", + "ground beef", + "honey", + "finely chopped onion", + "lime wedges", + "cream cheese" + ] + }, + { + "id": 32678, + "cuisine": "japanese", + "ingredients": [ + "red chili powder", + "bay leaves", + "salt", + "oil", + "ground turmeric", + "garam masala", + "kasuri methi", + "cubed potatoes", + "frozen peas", + "red chili peppers", + "ginger", + "cilantro leaves", + "onions", + "tomatoes", + "coriander powder", + "garlic", + "cumin seed", + "cashew nuts" + ] + }, + { + "id": 30851, + "cuisine": "italian", + "ingredients": [ + "red bell pepper", + "balsamic vinegar", + "fresh basil leaves", + "yellow bell pepper", + "olive oil", + "orange peel" + ] + }, + { + "id": 37131, + "cuisine": "italian", + "ingredients": [ + "ground pepper", + "frozen peas", + "penne", + "lemon", + "coarse salt", + "olive oil", + "blanched almonds" + ] + }, + { + "id": 41935, + "cuisine": "thai", + "ingredients": [ + "( oz.) tomato sauce", + "serrano chilies", + "golden raisins", + "firmly packed brown sugar", + "chopped garlic", + "vinegar" + ] + }, + { + "id": 41324, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "salt", + "whipping cream", + "light corn syrup", + "chopped pecans", + "light brown sugar", + "vanilla extract" + ] + }, + { + "id": 45287, + "cuisine": "southern_us", + "ingredients": [ + "yoghurt", + "corn flour", + "sea salt", + "vegetable oil", + "ground black pepper", + "okra" + ] + }, + { + "id": 9275, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper", + "capers", + "italian style stewed tomatoes", + "garlic cloves", + "fresh basil", + "eggplant", + "chopped onion", + "pitted kalamata olives", + "balsamic vinegar" + ] + }, + { + "id": 16023, + "cuisine": "italian", + "ingredients": [ + "lemon zest", + "salt", + "mayonaise", + "baby spinach", + "bread slices", + "fresh basil", + "chicken breasts", + "freshly ground pepper", + "sun-dried tomatoes", + "butter", + "smoked gouda" + ] + }, + { + "id": 10730, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "white rice", + "red bell pepper", + "olive oil", + "cilantro", + "salt", + "cumin", + "canned black beans", + "chili powder", + "purple onion", + "oregano", + "zucchini", + "button mushrooms", + "shredded cheese" + ] + }, + { + "id": 48973, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "lemon", + "ras el hanout", + "chuck", + "kosher salt", + "low-fat greek yogurt", + "extra-virgin olive oil", + "fresh mint", + "minced garlic", + "ground black pepper", + "dipping sauces", + "ground lamb", + "fresh ginger", + "mint sprigs", + "salt" + ] + }, + { + "id": 8931, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "onion powder", + "fresh lime juice", + "ground cumin", + "pepper", + "flour tortillas", + "salt", + "coriander", + "black beans", + "diced red onions", + "red pepper", + "chopped cilantro", + "water", + "jalapeno chilies", + "shredded pepper jack cheese", + "mango" + ] + }, + { + "id": 2315, + "cuisine": "moroccan", + "ingredients": [ + "lemon", + "garlic cloves", + "olive oil", + "vegetable broth", + "fava beans", + "paprika", + "cumin", + "cayenne", + "salt" + ] + }, + { + "id": 34848, + "cuisine": "italian", + "ingredients": [ + "cream", + "garlic", + "fresh basil", + "olive oil", + "red bell pepper", + "crushed tomatoes", + "penne pasta", + "sugar", + "roma tomatoes" + ] + }, + { + "id": 25894, + "cuisine": "filipino", + "ingredients": [ + "water", + "pork bouillon cube", + "pork", + "garlic", + "noodles", + "veggies", + "onions", + "soy sauce", + "oil" + ] + }, + { + "id": 25372, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "quinoa", + "green chilies", + "chicken broth", + "corn", + "garlic", + "cumin", + "fresh cilantro", + "diced tomatoes", + "onions", + "black beans", + "olive oil", + "salt" + ] + }, + { + "id": 12639, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "almond extract", + "pure vanilla extract", + "coffee liqueur", + "cinnamon sticks", + "half & half", + "mexican chocolate", + "sugar", + "whole milk" + ] + }, + { + "id": 17827, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "sugar", + "vanilla extract", + "vegetable oil cooking spray", + "peaches", + "all-purpose flour", + "ground cinnamon", + "slivered almonds", + "ice water", + "margarine", + "firmly packed brown sugar", + "water", + "salt" + ] + }, + { + "id": 16468, + "cuisine": "thai", + "ingredients": [ + "green curry paste", + "broccoli", + "parboiled rice", + "coconut milk", + "leeks", + "carrots", + "silken tofu", + "red pepper" + ] + }, + { + "id": 31224, + "cuisine": "spanish", + "ingredients": [ + "dried thyme", + "green peas", + "green beans", + "olive oil", + "white rice", + "butter beans", + "saffron threads", + "paprika", + "salt", + "dried rosemary", + "tomatoes", + "rabbit", + "garlic cloves", + "chicken" + ] + }, + { + "id": 22559, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "corn tortillas", + "tomato sauce", + "diced tomatoes", + "cooked chicken", + "shredded cheddar cheese", + "red enchilada sauce" + ] + }, + { + "id": 47864, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "sea scallops", + "mussels", + "jasmine rice", + "shrimp", + "unsweetened coconut milk", + "broccoli slaw", + "Thai red curry paste", + "fresh basil", + "water", + "fresh lime juice" + ] + }, + { + "id": 41736, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red bell pepper", + "green bell pepper", + "canned tomatoes", + "water", + "sweet italian sausage", + "arborio rice", + "dry white wine", + "onions" + ] + }, + { + "id": 35857, + "cuisine": "filipino", + "ingredients": [ + "butter", + "brown sugar", + "orange juice", + "satsuma imo" + ] + }, + { + "id": 35314, + "cuisine": "british", + "ingredients": [ + "milk", + "eggs", + "all-purpose flour", + "beef drippings", + "salt" + ] + }, + { + "id": 7690, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "large eggs", + "salt", + "bread slices", + "bananas", + "whipping cream", + "salted peanuts", + "sugar", + "butter", + "all-purpose flour", + "granulated sugar", + "vanilla extract", + "creamy peanut butter" + ] + }, + { + "id": 46390, + "cuisine": "french", + "ingredients": [ + "radishes", + "solid white tuna", + "garlic cloves", + "olive oil", + "green leaf lettuce", + "anchovy fillets", + "tomatoes", + "hard-boiled egg", + "black olives", + "fresh lemon juice", + "fresh basil", + "green onions", + "green pepper", + "cucumber" + ] + }, + { + "id": 44829, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "salt", + "potato chips", + "pepper", + "fresh lemon juice", + "sliced almonds", + "sharp cheddar cheese", + "onions", + "chicken breasts", + "diced celery" + ] + }, + { + "id": 2357, + "cuisine": "japanese", + "ingredients": [ + "green tea", + "baking powder", + "egg yolks", + "cake flour", + "water", + "black sesame seeds", + "white sugar", + "egg whites", + "vanilla extract" + ] + }, + { + "id": 44527, + "cuisine": "southern_us", + "ingredients": [ + "dark rum", + "light rum", + "amaretto liqueur", + "pineapple juice", + "lemon juice", + "cocktail cherries", + "orange juice", + "orange", + "grenadine syrup" + ] + }, + { + "id": 22909, + "cuisine": "irish", + "ingredients": [ + "tumeric", + "sweet potatoes", + "lamb shoulder", + "freshly ground pepper", + "ground cumin", + "soft goat's cheese", + "unsalted butter", + "extra-virgin olive oil", + "ground allspice", + "onions", + "water", + "baby spinach", + "salt", + "garlic cloves", + "milk", + "paprika", + "all-purpose flour", + "carrots" + ] + }, + { + "id": 2318, + "cuisine": "southern_us", + "ingredients": [ + "water", + "garlic", + "crab boil", + "crawfish", + "lemon", + "cayenne pepper", + "onions", + "corn", + "salt", + "small red potato", + "bell pepper", + "hot sauce", + "celery" + ] + }, + { + "id": 28422, + "cuisine": "vietnamese", + "ingredients": [ + "fresh shiitake mushrooms", + "salt", + "baby corn", + "water", + "cauliflower florets", + "carrots", + "fish sauce", + "rice wine", + "oil", + "kale", + "garlic", + "ground white pepper" + ] + }, + { + "id": 17241, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "monkfish fillets", + "red pepper", + "cumin seed", + "chopped cilantro fresh", + "picholine olives", + "bay leaves", + "garlic", + "flat leaf parsley", + "fresh cilantro", + "coarse salt", + "sweet paprika", + "celery", + "preserved lemon", + "green bell pepper, slice", + "extra-virgin olive oil", + "carrots" + ] + }, + { + "id": 18116, + "cuisine": "moroccan", + "ingredients": [ + "fat free less sodium chicken broth", + "ground red pepper", + "salt", + "cooking spray", + "reduced-fat sour cream", + "chopped cilantro", + "curry powder", + "large garlic cloves", + "ground coriander", + "butternut squash", + "1% low-fat milk", + "ground cumin" + ] + }, + { + "id": 31927, + "cuisine": "italian", + "ingredients": [ + "semolina", + "ravioli", + "grated nutmeg", + "fresh sage", + "grated parmesan cheese", + "extra-virgin olive oil", + "flat leaf parsley", + "reduced sodium chicken broth", + "butternut squash", + "salt", + "dough", + "ground black pepper", + "butter", + "toasted almonds" + ] + }, + { + "id": 21299, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "boneless skinless chicken breasts", + "onions", + "soy sauce", + "garlic", + "brown sugar", + "vegetable oil", + "fresh basil leaves", + "Sriracha", + "crushed red pepper" + ] + }, + { + "id": 37577, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "chicken", + "zucchini", + "parmesan cheese", + "bow-tie pasta" + ] + }, + { + "id": 37551, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "napa cabbage", + "dark sesame oil", + "sliced green onions", + "kosher salt", + "ginger", + "corn starch", + "soy sauce", + "ground pork", + "shrimp", + "chicken broth", + "wonton wrappers", + "garlic", + "ground white pepper" + ] + }, + { + "id": 26125, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "flour", + "chicken wingettes", + "corn starch", + "honey", + "sesame oil", + "rice vinegar", + "water", + "green onions", + "garlic", + "canola oil", + "sesame seeds", + "ginger", + "Gochujang base" + ] + }, + { + "id": 16674, + "cuisine": "mexican", + "ingredients": [ + "serrano chile", + "tomatillos", + "avocado", + "salt" + ] + }, + { + "id": 17891, + "cuisine": "southern_us", + "ingredients": [ + "sesame oil", + "sweet paprika", + "honey", + "diced tomatoes", + "chopped parsley", + "Sriracha", + "extra-virgin olive oil", + "onions", + "sugar", + "heavy cream", + "garlic cloves" + ] + }, + { + "id": 45308, + "cuisine": "french", + "ingredients": [ + "shallots", + "all-purpose flour", + "unsalted butter", + "cheese", + "heavy whipping cream", + "ground black pepper", + "ice water", + "grated nutmeg", + "large eggs", + "salt" + ] + }, + { + "id": 3687, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "peeled fresh ginger", + "garlic cloves", + "jasmine rice", + "peanut oil", + "bok choy", + "pork", + "lime wedges", + "cucumber", + "green chile", + "fresh cilantro", + "scallions" + ] + }, + { + "id": 5971, + "cuisine": "mexican", + "ingredients": [ + "chuck roast", + "red pepper", + "salt", + "smoked paprika", + "cumin", + "garlic powder", + "chili powder", + "cilantro", + "green pepper", + "corn tortillas", + "black pepper", + "guacamole", + "shredded lettuce", + "salsa", + "sour cream", + "diced green chilies", + "onion powder", + "cheese", + "taco toppings", + "onions" + ] + }, + { + "id": 6187, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "coconut oil", + "fresh ginger", + "garlic", + "cumin", + "clove", + "white onion", + "cinnamon", + "ghee", + "tomato paste", + "water", + "sea salt", + "brown basmati rice", + "red lentils", + "fresh spinach", + "garam masala", + "cardamom" + ] + }, + { + "id": 10186, + "cuisine": "korean", + "ingredients": [ + "bean threads", + "shredded carrots", + "garlic", + "green beans", + "soy sauce", + "flank steak", + "dried shiitake mushrooms", + "pepper", + "sesame oil", + "yellow onion", + "sugar", + "green onions", + "salt", + "toasted sesame seeds" + ] + }, + { + "id": 29407, + "cuisine": "italian", + "ingredients": [ + "water", + "semisweet chocolate", + "whipping cream", + "milk chocolate", + "unsalted butter", + "light corn syrup", + "roasted hazelnuts", + "vanilla beans", + "egg yolks", + "sour cream", + "sugar", + "large egg yolks", + "half & half", + "Frangelico" + ] + }, + { + "id": 35501, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "cooked chicken", + "garlic", + "sliced green onions", + "flour tortillas", + "onion powder", + "fresh lime juice", + "salsa verde", + "chili powder", + "cream cheese", + "ground cumin", + "cooking spray", + "cheese", + "chopped cilantro" + ] + }, + { + "id": 31045, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "onions", + "eggs", + "vegetable oil", + "chicken bouillon", + "snow peas", + "instant rice", + "beansprouts" + ] + }, + { + "id": 40937, + "cuisine": "italian", + "ingredients": [ + "shallots", + "small white beans", + "bay leaf", + "calamari", + "garlic cloves", + "thyme sprigs", + "extra-virgin olive oil", + "fresh lemon juice", + "onions", + "crushed red pepper", + "flat leaf parsley" + ] + }, + { + "id": 12604, + "cuisine": "mexican", + "ingredients": [ + "water", + "salt", + "chili powder", + "cayenne pepper", + "garlic powder", + "all-purpose flour", + "tomato paste", + "vegetable oil", + "cumin" + ] + }, + { + "id": 30888, + "cuisine": "chinese", + "ingredients": [ + "boneless pork shoulder", + "water", + "corn oil", + "corn starch", + "firmly packed brown sugar", + "fresh ginger", + "chinese five-spice powder", + "asian eggplants", + "steamed rice", + "rice wine", + "soy sauce", + "green onions", + "garlic cloves" + ] + }, + { + "id": 11313, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "meatballs", + "garlic", + "ground cayenne pepper", + "spaghetti", + "fresh basil", + "olive oil", + "diced tomatoes", + "sauce", + "fresh parsley", + "eggs", + "kosher salt", + "grated parmesan cheese", + "salt", + "ground beef", + "black pepper", + "parmesan cheese", + "crushed red pepper flakes", + "garlic cloves", + "fresh basil leaves" + ] + }, + { + "id": 40120, + "cuisine": "korean", + "ingredients": [ + "fish sauce", + "green onions", + "ginger", + "sweet rice flour", + "kosher salt", + "daikon", + "carrots", + "water", + "red pepper flakes", + "shrimp", + "sugar", + "napa cabbage", + "garlic cloves" + ] + }, + { + "id": 10731, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "water", + "sugar", + "raspberry preserves", + "slivered almonds", + "large egg whites", + "sliced almonds", + "almond extract" + ] + }, + { + "id": 21295, + "cuisine": "italian", + "ingredients": [ + "fennel bulb", + "salt", + "white bread", + "ricotta cheese", + "cooking spray", + "ground black pepper", + "fresh tarragon" + ] + }, + { + "id": 27853, + "cuisine": "british", + "ingredients": [ + "kosher salt", + "all-purpose flour", + "chocolate covered english toffee", + "granulated sugar", + "light brown sugar", + "unsalted butter", + "corn starch", + "pecans", + "vanilla extract" + ] + }, + { + "id": 34279, + "cuisine": "british", + "ingredients": [ + "fresh blueberries", + "salt", + "Swerve Sweetener", + "whipping cream", + "cream of tartar", + "vanilla", + "raspberry liqueur", + "egg whites", + "vanilla extract" + ] + }, + { + "id": 28415, + "cuisine": "thai", + "ingredients": [ + "chile paste with garlic", + "peeled fresh ginger", + "loosely packed fresh basil leaves", + "Thai fish sauce", + "red cabbage", + "watercress", + "cilantro leaves", + "fresh lime juice", + "brown sugar", + "flank steak", + "unsalted dry roast peanuts", + "fresh mint", + "cooking spray", + "cracked black pepper", + "carrots" + ] + }, + { + "id": 30776, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "orange peel", + "coriander seeds", + "crushed red pepper", + "chopped cilantro fresh", + "low sodium soy sauce", + "large garlic cloves", + "rib", + "szechwan peppercorns", + "salt", + "chicken" + ] + }, + { + "id": 40212, + "cuisine": "mexican", + "ingredients": [ + "lime", + "chile pepper", + "cilantro leaves", + "corn oil", + "garlic", + "honey", + "fresh thyme leaves", + "kosher salt", + "flank steak", + "purple onion" + ] + }, + { + "id": 40426, + "cuisine": "brazilian", + "ingredients": [ + "chopped green bell pepper", + "merluza", + "onions", + "tomatoes", + "yellow bell pepper", + "flat leaf parsley", + "chopped garlic", + "shell-on shrimp", + "salt", + "chopped cilantro fresh", + "pepper", + "extra-virgin olive oil", + "fresh lime juice", + "plantains" + ] + }, + { + "id": 22867, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "shredded lettuce", + "chopped tomatoes", + "ground beef", + "Old El Paso™ taco seasoning mix", + "ripe olives", + "taco sauce", + "Pillsbury™ Refrigerated Crescent Dinner Rolls", + "nacho cheese tortilla chips" + ] + }, + { + "id": 29947, + "cuisine": "cajun_creole", + "ingredients": [ + "cider vinegar", + "ground red pepper", + "salt", + "ketchup", + "green onions", + "paprika", + "prepared horseradish", + "vegetable oil", + "lemon juice", + "black pepper", + "prepared mustard", + "chopped celery" + ] + }, + { + "id": 21348, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "apricot preserves", + "sugar", + "vanilla extract", + "vegetable oil cooking spray", + "refrigerated piecrusts", + "apricots", + "cream", + "all-purpose flour" + ] + }, + { + "id": 12892, + "cuisine": "thai", + "ingredients": [ + "cooking oil", + "fresh basil", + "roasted peanuts", + "water", + "shrimp", + "spring roll wrappers", + "sauce" + ] + }, + { + "id": 27854, + "cuisine": "southern_us", + "ingredients": [ + "lime zest", + "butter", + "granulated sugar", + "sweetened condensed milk", + "large egg yolks", + "heavy cream", + "graham cracker crumbs", + "key lime juice" + ] + }, + { + "id": 32976, + "cuisine": "jamaican", + "ingredients": [ + "tarragon vinegar", + "chopped fresh thyme", + "garlic cloves", + "eggs", + "chives", + "salt", + "boiling water", + "pepper", + "vegetable oil", + "all-purpose flour", + "ground black pepper", + "dried salted codfish", + "onions" + ] + }, + { + "id": 33981, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "stewed tomatoes", + "cooking spray", + "polenta", + "ground turkey breast", + "garlic cloves", + "ground red pepper", + "italian seasoning" + ] + }, + { + "id": 3272, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "sea scallops", + "large garlic cloves", + "Thai fish sauce", + "chopped fresh mint", + "serrano chilies", + "lemongrass", + "vegetable oil", + "garlic chili sauce", + "fresh lime juice", + "bean threads", + "water", + "shallots", + "garlic cloves", + "beansprouts", + "snow peas", + "sugar", + "shredded carrots", + "salted roast peanuts", + "cucumber", + "chopped cilantro fresh" + ] + }, + { + "id": 28967, + "cuisine": "mexican", + "ingredients": [ + "celery ribs", + "chili powder", + "poblano chiles", + "dried oregano", + "hominy", + "garlic", + "onions", + "ground cumin", + "black pepper", + "parsley", + "fresh lime juice", + "chicken", + "jalapeno chilies", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 39072, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "garlic", + "ricotta cheese", + "frozen chopped spinach" + ] + }, + { + "id": 6861, + "cuisine": "french", + "ingredients": [ + "olive oil", + "fresh lemon juice", + "garlic cloves", + "dijon style mustard", + "heavy cream" + ] + }, + { + "id": 17171, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "fresh cilantro", + "freshly ground pepper", + "lime juice", + "extra-virgin olive oil", + "kosher salt", + "tuna steaks", + "fresh pineapple" + ] + }, + { + "id": 19662, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "sweet potatoes", + "baton", + "soda water", + "eggs", + "ground black pepper", + "mint sprigs", + "scallions", + "canola oil", + "leaves", + "ice water", + "cayenne pepper", + "ground turmeric", + "kosher salt", + "lettuce leaves", + "all-purpose flour", + "medium shrimp" + ] + }, + { + "id": 33090, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "pepper", + "salt", + "center cut pork chops", + "diced onions", + "sausage casings", + "diced tomatoes", + "garlic cloves", + "sliced green onions", + "green chile", + "chicken breasts", + "shredded parmesan cheese", + "italian seasoning", + "pasta", + "green bell pepper", + "orzo", + "celery" + ] + }, + { + "id": 34560, + "cuisine": "irish", + "ingredients": [ + "candy bar", + "frozen whip topping, thaw", + "instant pudding mix", + "fudge brownie mix", + "coffee liqueur" + ] + }, + { + "id": 47831, + "cuisine": "italian", + "ingredients": [ + "sugar", + "vegetable oil", + "garlic cloves", + "water", + "crushed red pepper", + "italian seasoning", + "black pepper", + "diced tomatoes", + "onions", + "tomato paste", + "dried basil", + "salt" + ] + }, + { + "id": 29510, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "sweetened condensed milk", + "lime", + "cold water" + ] + }, + { + "id": 36682, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "salt", + "bay leaf", + "brandy", + "dry white wine", + "fresh mushrooms", + "tomato paste", + "low sodium chicken broth", + "all-purpose flour", + "marjoram", + "white pepper", + "extra-virgin olive oil", + "chicken leg quarters" + ] + }, + { + "id": 11972, + "cuisine": "brazilian", + "ingredients": [ + "fish fillets", + "Tabasco Pepper Sauce", + "cashew butter", + "cooked shrimp", + "chicken stock", + "jalapeno chilies", + "garlic", + "coconut milk", + "plum tomatoes", + "lime", + "dende oil", + "salt", + "dried shrimp", + "fresh ginger", + "cilantro", + "cilantro leaves", + "onions" + ] + }, + { + "id": 38296, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "bourbon whiskey", + "all-purpose flour", + "cooking spray", + "vanilla extract", + "unsweetened cocoa powder", + "large eggs", + "butter", + "semi-sweet chocolate morsels", + "baking powder", + "salt" + ] + }, + { + "id": 12395, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "olive oil", + "garlic cloves", + "large egg yolks", + "fresh lemon juice", + "water", + "salt" + ] + }, + { + "id": 44781, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "yellow hominy", + "radish slices", + "Mexican cheese", + "onions", + "Mazola Corn Oil", + "minced garlic", + "shredded cabbage", + "Spice Islands Bay Leaves", + "corn tortillas", + "avocado", + "tostadas", + "jalapeno chilies", + "lime wedges", + "sour cream", + "Mazola® Chicken Flavor Bouillon Powder", + "Spice Islands Oregano", + "water", + "boneless skinless chicken breasts", + "cilantro", + "fresh lime juice" + ] + }, + { + "id": 27444, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh rosemary", + "lemon", + "hot sauce", + "shrimp", + "ground black pepper", + "garlic", + "beer", + "crusty bread", + "worcestershire sauce", + "creole seasoning", + "clove", + "butter", + "salt", + "oil" + ] + }, + { + "id": 25240, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "corn tortillas", + "cumin", + "chicken broth", + "lard", + "adobo sauce", + "garlic", + "chipotles in adobo", + "eggs", + "ancho chile pepper", + "onions" + ] + }, + { + "id": 19887, + "cuisine": "indian", + "ingredients": [ + "lime", + "chili powder", + "garlic cloves", + "red chili peppers", + "ground black pepper", + "Knorr Chicken Stock Pots", + "basmati rice", + "fresh ginger root", + "Flora Cuisine", + "onions", + "fresh coriander", + "chicken breasts", + "Elmlea single", + "ground turmeric" + ] + }, + { + "id": 20072, + "cuisine": "mexican", + "ingredients": [ + "lime", + "chili powder", + "cayenne pepper", + "avocado", + "jalapeno chilies", + "cilantro", + "cumin", + "hominy", + "diced tomatoes", + "onions", + "chicken stock", + "pork loin", + "garlic" + ] + }, + { + "id": 44945, + "cuisine": "mexican", + "ingredients": [ + "bread crumbs", + "carrots", + "chopped cilantro fresh", + "eggs", + "hominy", + "ground turkey", + "fresh leav spinach", + "low salt chicken broth", + "dried oregano", + "tomato sauce", + "green chilies", + "onions" + ] + }, + { + "id": 44201, + "cuisine": "thai", + "ingredients": [ + "shallots", + "poblano chiles", + "cilantro leaves", + "japanese eggplants", + "garlic", + "fresh lime juice", + "Thai fish sauce" + ] + }, + { + "id": 48404, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "salsa", + "refrigerated pizza dough", + "canola oil", + "sweet onion", + "chopped cilantro", + "shredded pepper jack cheese", + "chicken" + ] + }, + { + "id": 32208, + "cuisine": "thai", + "ingredients": [ + "coconut oil", + "red curry paste", + "yellow peppers", + "boneless skinless chicken breasts", + "coconut milk", + "basil leaves", + "yellow onion", + "red pepper", + "cooked quinoa" + ] + }, + { + "id": 24844, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "bay leaves", + "ground cumin", + "boneless pork shoulder roast", + "ground coriander", + "ground cinnamon", + "salt", + "garlic powder", + "dried oregano" + ] + }, + { + "id": 35535, + "cuisine": "southern_us", + "ingredients": [ + "table salt", + "ear of corn", + "large eggs", + "grits", + "milk", + "white cornmeal", + "butter" + ] + }, + { + "id": 30453, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "nam prik", + "fish sauce", + "squid", + "thai basil", + "chiles", + "oil" + ] + }, + { + "id": 28896, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "black beans", + "cream cheese", + "rotelle", + "corn", + "ranch dip" + ] + }, + { + "id": 26346, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "knorr pasta side", + "Sriracha", + "large shrimp", + "lime juice", + "creamy peanut butter", + "eggs", + "vegetable oil" + ] + }, + { + "id": 43046, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "dried thyme", + "tomatoes with juice", + "cayenne pepper", + "soy sauce", + "bacon", + "garlic", + "onions", + "cooked ham", + "ground black pepper", + "white rice", + "medium shrimp", + "chicken stock", + "chorizo", + "paprika", + "all-purpose flour", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 30856, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "apple cider vinegar", + "garlic salt", + "lime juice", + "chipotles in adobo", + "top round roast", + "garlic", + "chili powder", + "onions" + ] + }, + { + "id": 17083, + "cuisine": "mexican", + "ingredients": [ + "green cabbage", + "boneless skinless chicken breasts", + "purple onion", + "reduced sodium chicken broth", + "lime wedges", + "dried oregano", + "canned black beans", + "chili powder", + "salt", + "hominy", + "garlic", + "canola oil" + ] + }, + { + "id": 9870, + "cuisine": "italian", + "ingredients": [ + "garlic", + "grated parmesan cheese", + "cavatelli", + "broccoli", + "butter", + "sliced mushrooms" + ] + }, + { + "id": 23185, + "cuisine": "italian", + "ingredients": [ + "spinach leaves", + "water", + "red wine", + "flour for dusting", + "pepper", + "large eggs", + "provolone cheese", + "bread crumbs", + "prosciutto", + "salt", + "romano cheese", + "olive oil", + "ground pork", + "ground beef" + ] + }, + { + "id": 4988, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "garlic", + "ground cumin", + "olive oil", + "onions", + "orange", + "pork shoulder", + "table salt", + "jalapeno chilies", + "dried oregano" + ] + }, + { + "id": 15604, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "reduced fat italian dressing", + "salsa", + "tomatoes", + "Mexican cheese blend", + "shredded lettuce", + "onions", + "corn", + "lean ground beef", + "taco seasoning reduced sodium", + "black beans", + "flour tortillas", + "reduced-fat sour cream", + "ground cumin" + ] + }, + { + "id": 5978, + "cuisine": "mexican", + "ingredients": [ + "scallion greens", + "fresh cilantro", + "banana peppers", + "monterey jack" + ] + }, + { + "id": 3391, + "cuisine": "irish", + "ingredients": [ + "milk", + "butter", + "non stick spray", + "white pepper", + "garlic powder", + "salt", + "eggs", + "seasoning salt", + "idaho potatoes", + "chopped parsley", + "water", + "onion powder", + "all-purpose flour" + ] + }, + { + "id": 12338, + "cuisine": "southern_us", + "ingredients": [ + "water", + "lemon juice", + "sugar", + "rum", + "orange", + "bacardi", + "mint sprigs" + ] + }, + { + "id": 7295, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "red pepper", + "oil", + "light soy sauce", + "cornflour", + "beansprouts", + "ground black pepper", + "chili sauce", + "toasted sesame oil", + "skinless chicken breast fillets", + "spring onions", + "chinese five-spice powder", + "noodles" + ] + }, + { + "id": 15594, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "shredded cheddar cheese", + "flour tortillas", + "condensed cream of chicken soup", + "chili powder" + ] + }, + { + "id": 20637, + "cuisine": "irish", + "ingredients": [ + "sugar", + "color food green", + "all-purpose flour", + "eggs", + "almond extract", + "pudding powder", + "brown sugar", + "butter", + "butterscotch chips", + "baking soda", + "vanilla extract", + "chopped walnuts" + ] + }, + { + "id": 16257, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "fresh lemon juice", + "water", + "potatoes", + "chicken bouillon", + "ground black pepper", + "dried rosemary", + "dried thyme", + "garlic" + ] + }, + { + "id": 49043, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "sweet potatoes", + "large garlic cloves", + "bay leaf", + "unsalted butter", + "dry white wine", + "carrots", + "water", + "leeks", + "crème fraîche", + "finely chopped onion", + "baking potatoes", + "chopped pecans" + ] + }, + { + "id": 108, + "cuisine": "southern_us", + "ingredients": [ + "pork", + "sweet potatoes", + "salt", + "juice", + "mayonaise", + "hot pepper sauce", + "worcestershire sauce", + "lemon juice", + "ground black pepper", + "pimentos", + "sharp cheddar cheese", + "minced garlic", + "green onions", + "mild cheddar cheese" + ] + }, + { + "id": 38841, + "cuisine": "irish", + "ingredients": [ + "cheddar cheese", + "dried chile", + "eggs", + "butter", + "dried parsley", + "black pepper", + "sour cream", + "red potato", + "sea salt", + "gluten-free flour" + ] + }, + { + "id": 44090, + "cuisine": "chinese", + "ingredients": [ + "water", + "worcestershire sauce", + "chinese five-spice powder", + "sweet bean sauce", + "eggs", + "pork tenderloin", + "tomato ketchup", + "corn starch", + "plum sauce", + "salt", + "oil", + "black vinegar", + "sugar", + "Shaoxing wine", + "chili sauce", + "toasted sesame seeds" + ] + }, + { + "id": 2538, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "salt", + "eggs", + "buttermilk", + "vegetable shortening", + "bread flour", + "granulated sugar", + "cake flour" + ] + }, + { + "id": 7156, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "coarse salt", + "white wine", + "shallots", + "garlic", + "asparagus", + "butter", + "olive oil", + "ravioli", + "thyme" + ] + }, + { + "id": 25202, + "cuisine": "indian", + "ingredients": [ + "vidalia onion", + "peeled fresh ginger", + "fresh lemon juice", + "red lentils", + "fat free less sodium chicken broth", + "crushed red pepper", + "cinnamon sticks", + "fat free yogurt", + "vegetable oil", + "cucumber", + "flatbread", + "water", + "salt" + ] + }, + { + "id": 48062, + "cuisine": "japanese", + "ingredients": [ + "shiitake", + "tamari soy sauce", + "konbu", + "green tea bags", + "vegetable broth", + "scallions", + "toasted sesame oil", + "baby spinach", + "soba noodles", + "carrots", + "white miso", + "firm tofu", + "lemon juice" + ] + }, + { + "id": 38997, + "cuisine": "vietnamese", + "ingredients": [ + "low sodium soy sauce", + "shredded carrots", + "crushed red pepper", + "beansprouts", + "sesame seeds", + "green onions", + "dark sesame oil", + "dried mushrooms", + "water", + "peeled fresh ginger", + "rice vinegar", + "bok choy", + "hoisin sauce", + "vegetable oil", + "garlic cloves", + "rice paper" + ] + }, + { + "id": 16409, + "cuisine": "filipino", + "ingredients": [ + "chicken legs", + "olive oil", + "salt", + "chorizo", + "potatoes", + "cabbage", + "pepper", + "garbanzo beans", + "onions", + "tomatoes", + "water", + "garlic", + "plantains" + ] + }, + { + "id": 47082, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "crushed red pepper", + "pasta", + "olive oil", + "fresh herbs", + "pancetta", + "pepper", + "salt", + "tomatoes", + "cheese", + "onions" + ] + }, + { + "id": 36115, + "cuisine": "mexican", + "ingredients": [ + "pepper sauce", + "large eggs", + "olive oil", + "coarse salt", + "large egg whites", + "flour tortillas", + "pepper jack" + ] + }, + { + "id": 23609, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "white rice", + "cajun seasoning", + "onions", + "diced tomatoes", + "red beans", + "ground beef" + ] + }, + { + "id": 35239, + "cuisine": "vietnamese", + "ingredients": [ + "pepper", + "meat", + "orange juice", + "sugar", + "orange", + "salt", + "minced ginger", + "garlic", + "corn starch", + "soy sauce", + "tapioca starch", + "rice vinegar" + ] + }, + { + "id": 19172, + "cuisine": "indian", + "ingredients": [ + "pineapple", + "diced celery", + "hearts of romaine", + "cucumber", + "salt", + "carrots", + "garbanzo beans", + "fresh lemon juice", + "mango" + ] + }, + { + "id": 4433, + "cuisine": "mexican", + "ingredients": [ + "butter", + "sugar", + "ground cinnamon", + "frozen pastry puff sheets" + ] + }, + { + "id": 37545, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "kidney beans", + "bulgur", + "red bell pepper", + "crushed tomatoes", + "chili powder", + "garlic cloves", + "ground cumin", + "water", + "jalapeno chilies", + "ground coriander", + "onions", + "ground cinnamon", + "olive oil", + "white wine vinegar", + "carrots" + ] + }, + { + "id": 1557, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "apples", + "frozen peas", + "green olives", + "boneless skinless chicken breasts", + "frozen corn kernels", + "potatoes", + "salt", + "mayonaise", + "raisins", + "carrots" + ] + }, + { + "id": 11635, + "cuisine": "italian", + "ingredients": [ + "milk", + "lean ground beef", + "salt", + "mozzarella cheese", + "egg yolks", + "stewed tomatoes", + "onions", + "white wine", + "olive oil", + "butter", + "all-purpose flour", + "pepper", + "dried sage", + "pasta shells", + "dried rosemary" + ] + }, + { + "id": 15955, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "fresh mushrooms", + "garlic", + "boneless skinless chicken breasts", + "onions", + "green pepper" + ] + }, + { + "id": 48618, + "cuisine": "thai", + "ingredients": [ + "parsnips", + "green onions", + "cayenne pepper", + "carrots", + "dried oregano", + "coconut sugar", + "minced garlic", + "rice noodles", + "ground coriander", + "celery", + "turnips", + "kosher salt", + "apple cider vinegar", + "roasted peanuts", + "beansprouts", + "ground cumin", + "coconut oil", + "lime", + "dried chickpeas", + "maple sugar", + "bay leaf" + ] + }, + { + "id": 35334, + "cuisine": "cajun_creole", + "ingredients": [ + "oysters", + "all-purpose flour", + "garlic cloves", + "lump crab meat", + "chopped celery", + "okra", + "peeled tomatoes", + "hot sauce", + "ham", + "fat free less sodium chicken broth", + "vegetable oil", + "chopped onion", + "medium shrimp" + ] + }, + { + "id": 43805, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "apple cider vinegar", + "peppercorns", + "sugar", + "bay leaves", + "pork butt", + "potatoes", + "onions", + "water", + "garlic cloves" + ] + }, + { + "id": 35657, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese", + "refried beans", + "salsa" + ] + }, + { + "id": 41867, + "cuisine": "thai", + "ingredients": [ + "fresh ginger root", + "cayenne pepper", + "ground turmeric", + "fish sauce", + "vegetable oil", + "fresh lime juice", + "green onions", + "coconut milk", + "water", + "chicken meat", + "chopped cilantro fresh" + ] + }, + { + "id": 30338, + "cuisine": "spanish", + "ingredients": [ + "rosemary sprigs", + "white wine vinegar", + "red bell pepper", + "chicken stock", + "fresh thyme", + "salt", + "olive oil", + "purple onion", + "turkey breast", + "black peppercorns", + "bay leaves", + "allspice berries" + ] + }, + { + "id": 20546, + "cuisine": "british", + "ingredients": [ + "fresh chives", + "butter", + "all-purpose flour", + "dried thyme", + "garlic", + "milk", + "cracked black pepper", + "eggs", + "beef rib roast", + "salt" + ] + }, + { + "id": 27659, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "french bread", + "extra-virgin olive oil", + "beef tenderloin steaks", + "ground black pepper", + "chopped fresh thyme", + "salt", + "cider vinegar", + "cooking spray", + "port", + "tomatoes", + "finely chopped onion", + "pecorino romano cheese", + "corn syrup" + ] + }, + { + "id": 39485, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "spanish chorizo", + "onions", + "black pepper", + "extra-virgin olive oil", + "garlic cloves", + "potatoes", + "scallions", + "manchego cheese", + "salt", + "sour cream" + ] + }, + { + "id": 7547, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "fresh basil", + "balsamic vinegar", + "grated parmesan cheese", + "baguette", + "green pesto" + ] + }, + { + "id": 45062, + "cuisine": "russian", + "ingredients": [ + "eggs", + "butter", + "cabbage", + "pepper", + "salt", + "milk", + "all-purpose flour", + "active dry yeast", + "white sugar" + ] + }, + { + "id": 18036, + "cuisine": "southern_us", + "ingredients": [ + "butter pecan cake mix", + "schnapps", + "vegetable oil", + "eggs", + "chopped pecans" + ] + }, + { + "id": 24974, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "garlic", + "carrots", + "ground cumin", + "honey", + "cayenne pepper", + "onions", + "dried currants", + "greek style plain yogurt", + "chopped parsley", + "olive oil", + "chickpeas", + "ground turmeric" + ] + }, + { + "id": 1593, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "light soy sauce", + "ground pork", + "scallions", + "water", + "Shaoxing wine", + "salt", + "chinese black vinegar", + "pork neck", + "minced ginger", + "sesame oil", + "all-purpose flour", + "aspic", + "warm water", + "pork rind", + "ginger", + "ground white pepper" + ] + }, + { + "id": 1702, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "peanut oil", + "low salt chicken broth", + "sugar", + "ginger", + "garlic chili sauce", + "large shrimp", + "cooked rice", + "dry sherry", + "garlic cloves", + "red bell pepper", + "soy sauce", + "crushed red pepper", + "corn starch" + ] + }, + { + "id": 14523, + "cuisine": "french", + "ingredients": [ + "large eggs", + "small red potato", + "capers", + "Niçoise olives", + "italian salad dressing", + "dried tarragon leaves", + "mixed greens", + "tuna steaks", + "green beans" + ] + }, + { + "id": 30117, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "olive oil", + "beef broth", + "green bell pepper", + "vegetable oil", + "chopped cilantro fresh", + "tomato paste", + "flank steak", + "onions", + "tomato sauce", + "garlic", + "ground cumin" + ] + }, + { + "id": 7730, + "cuisine": "jamaican", + "ingredients": [ + "roma tomatoes", + "green onions", + "thyme", + "bread", + "serrano peppers", + "green pepper", + "chopped cilantro", + "light beer", + "butter", + "thyme sprigs", + "diced red onions", + "jamaican jerk spice", + "shrimp", + "chopped garlic" + ] + }, + { + "id": 34989, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "garlic cloves", + "tomatillos", + "serrano peppers", + "chopped cilantro fresh", + "salt" + ] + }, + { + "id": 7707, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "fresh thyme", + "garlic", + "carrots", + "vegetable bouillon cube", + "water", + "potatoes", + "yellow split peas", + "celery", + "pepper", + "cooking oil", + "salt", + "coconut milk", + "fresh corn", + "fresh ginger", + "jamaican pumpkin", + "cayenne pepper", + "onions" + ] + }, + { + "id": 41753, + "cuisine": "japanese", + "ingredients": [ + "water", + "cabbage", + "eggs", + "salt", + "flour", + "sausage links", + "carrots" + ] + }, + { + "id": 35814, + "cuisine": "irish", + "ingredients": [ + "irish cream liqueur", + "large eggs", + "semisweet chocolate", + "sugar", + "whipping cream" + ] + }, + { + "id": 3145, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "garlic cloves", + "diced tomatoes", + "corn tortillas", + "vegetable oil", + "taco toppings", + "boneless chicken skinless thigh", + "salt", + "chipotles in adobo" + ] + }, + { + "id": 30933, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "salt", + "diced tomatoes", + "diced onions", + "garlic", + "jalapeno chilies", + "fresh lime juice" + ] + }, + { + "id": 21158, + "cuisine": "french", + "ingredients": [ + "pepper", + "salt", + "herbs", + "eggs", + "butter", + "milk" + ] + }, + { + "id": 16611, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "baking potatoes", + "corn tortillas", + "taco seasoning mix", + "enchilada sauce", + "monterey jack", + "milk", + "salsa", + "onions", + "olive oil", + "pinto beans" + ] + }, + { + "id": 23794, + "cuisine": "mexican", + "ingredients": [ + "extra-virgin olive oil", + "lime juice", + "onions", + "kosher salt", + "cilantro leaves", + "roma tomatoes", + "serrano chile" + ] + }, + { + "id": 4404, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "bell pepper", + "chopped parsley", + "long grain white rice", + "celery ribs", + "ground black pepper", + "salt", + "onions", + "olive oil", + "chili powder", + "coconut milk", + "chopped tomatoes", + "Tabasco Pepper Sauce", + "kidney" + ] + }, + { + "id": 36606, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "red bell pepper", + "fresh basil", + "tomatoes", + "polenta", + "cooking spray" + ] + }, + { + "id": 30976, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "cream cheese", + "baking powder", + "eggs", + "lemon", + "milk", + "corn starch" + ] + }, + { + "id": 16504, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vegetable oil", + "cornmeal", + "saltines", + "minced onion", + "all-purpose flour", + "ground black pepper", + "salt", + "eggs", + "frogs legs", + "peanut oil" + ] + }, + { + "id": 47400, + "cuisine": "filipino", + "ingredients": [ + "pork", + "garlic", + "soy sauce", + "peppercorns", + "vinegar", + "sprite" + ] + }, + { + "id": 6968, + "cuisine": "french", + "ingredients": [ + "shortening", + "all-purpose flour", + "light corn syrup", + "brown sugar", + "chopped pecans" + ] + }, + { + "id": 7983, + "cuisine": "italian", + "ingredients": [ + "Italian parsley leaves", + "toasted pine nuts", + "olive oil", + "fresh oregano", + "fresh leav spinach", + "salt", + "fresh basil leaves", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 11386, + "cuisine": "cajun_creole", + "ingredients": [ + "kidney beans", + "low salt chicken broth", + "cooked rice", + "smoked sausage", + "cajun seasoning", + "onions", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 3157, + "cuisine": "chinese", + "ingredients": [ + "caster sugar", + "dry sherry", + "soy sauce", + "fresh ginger root", + "oyster sauce", + "ground cinnamon", + "honey", + "chinese five-spice powder", + "ketchup", + "hoisin sauce", + "pork shoulder" + ] + }, + { + "id": 38036, + "cuisine": "southern_us", + "ingredients": [ + "country ham", + "corn kernels", + "salt", + "milk", + "lager", + "freshly ground pepper", + "sweet onion", + "butter", + "large shrimp", + "sugar pea", + "unsalted butter", + "ear of corn" + ] + }, + { + "id": 5974, + "cuisine": "southern_us", + "ingredients": [ + "banana squash", + "greek yogurt", + "honey", + "honey graham crackers", + "vanilla almondmilk", + "whipped cream", + "key lime juice", + "egg yolks", + "graham cracker pie crust" + ] + }, + { + "id": 27971, + "cuisine": "vietnamese", + "ingredients": [ + "haricots verts", + "sweet chili sauce", + "carrots", + "chopped garlic", + "turnips", + "spring roll wrappers", + "shallots", + "corn starch", + "eggs", + "peanuts", + "shrimp", + "lettuce", + "red chili peppers", + "salt", + "cucumber" + ] + }, + { + "id": 16465, + "cuisine": "italian", + "ingredients": [ + "almonds", + "baking powder", + "orange zest", + "ground ginger", + "pistachios", + "cake flour", + "brown sugar", + "egg yolks", + "white sugar", + "unsalted butter", + "vanilla extract" + ] + }, + { + "id": 36042, + "cuisine": "japanese", + "ingredients": [ + "granulated sugar", + "dipping sauces", + "decorating sugars", + "all-purpose flour", + "large egg yolks", + "butter", + "large eggs", + "salt" + ] + }, + { + "id": 40646, + "cuisine": "greek", + "ingredients": [ + "feta cheese crumbles", + "lime juice", + "avocado", + "plum tomatoes", + "garlic" + ] + }, + { + "id": 25775, + "cuisine": "italian", + "ingredients": [ + "halibut fillets", + "lemon wedge", + "hazelnut oil", + "sugar", + "cooking spray", + "whole wheat bread", + "red bell pepper", + "pepper", + "ground red pepper", + "salt", + "slivered almonds", + "ground black pepper", + "red wine vinegar", + "garlic cloves" + ] + }, + { + "id": 44581, + "cuisine": "jamaican", + "ingredients": [ + "fresh cilantro", + "egg noodles", + "heavy whipping cream", + "pepper", + "jerk paste", + "salt", + "chicken stock", + "olive oil", + "garlic", + "chopped cilantro fresh", + "lime", + "dry white wine", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 16556, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "shallots", + "yellow split peas", + "large eggs", + "salt", + "garam masala", + "garlic", + "freshly ground pepper", + "red lentils", + "low sodium chicken broth", + "cilantro leaves" + ] + }, + { + "id": 5727, + "cuisine": "brazilian", + "ingredients": [ + "cocoa powder", + "large egg yolks", + "salted butter", + "chocolate sprinkles", + "condensed milk" + ] + }, + { + "id": 6435, + "cuisine": "french", + "ingredients": [ + "pancetta", + "duck fat", + "salt", + "duck drumsticks", + "pepper", + "shallots", + "carrots", + "orange zest", + "chicken stock", + "Toulouse sausage", + "garlic cloves", + "sea salt flakes", + "olive oil", + "coco", + "chopped parsley" + ] + }, + { + "id": 6568, + "cuisine": "irish", + "ingredients": [ + "low-fat buttermilk", + "raisins", + "sugar", + "baking powder", + "all-purpose flour", + "cooking spray", + "salt", + "baking soda", + "butter" + ] + }, + { + "id": 49377, + "cuisine": "irish", + "ingredients": [ + "water", + "vegetable oil", + "all-purpose flour", + "leg of lamb", + "pepper", + "new potatoes", + "salt", + "carrots", + "frozen pastry puff sheets", + "top sirloin steak", + "beef broth", + "onions", + "dried tarragon leaves", + "bay leaves", + "garlic", + "beer" + ] + }, + { + "id": 35904, + "cuisine": "moroccan", + "ingredients": [ + "dried apricot", + "yellow onion", + "leg of lamb", + "plum tomatoes", + "ground ginger", + "large garlic cloves", + "ground allspice", + "low sodium beef broth", + "yukon gold potatoes", + "chickpeas", + "cinnamon sticks", + "olive oil", + "ras el hanout", + "carrots", + "bay leaf" + ] + }, + { + "id": 37016, + "cuisine": "korean", + "ingredients": [ + "cauliflower", + "reduced-sodium tamari sauce", + "sesame oil", + "carrots", + "roasted sesame seeds", + "mushrooms", + "Gochujang base", + "kimchi", + "brown rice vinegar", + "zucchini", + "fried eggs", + "asparagus spears", + "honey", + "green onions", + "garlic cloves" + ] + }, + { + "id": 32855, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "salt", + "water", + "sweet potatoes", + "tawny port", + "whipping cream", + "sugar", + "half & half" + ] + }, + { + "id": 23346, + "cuisine": "mexican", + "ingredients": [ + "pepper jack", + "chopped onion", + "sausage casings", + "chile pepper", + "flour tortillas", + "roast red peppers, drain", + "refried beans", + "garlic" + ] + }, + { + "id": 7465, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "garlic powder", + "cayenne pepper", + "dried basil", + "paprika", + "white pepper", + "onion powder", + "dried oregano", + "dried thyme", + "salt" + ] + }, + { + "id": 37120, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "yellow mustard", + "salt", + "tomatoes", + "jalapeno chilies", + "cracked black pepper", + "onions", + "tumeric", + "vegetable oil", + "garlic", + "potatoes", + "cilantro", + "chicken pieces" + ] + }, + { + "id": 6681, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "salt", + "fromage blanc", + "unsalted butter", + "large egg yolks", + "corn starch", + "sugar", + "lemon" + ] + }, + { + "id": 22406, + "cuisine": "thai", + "ingredients": [ + "thai basil", + "onions", + "soy sauce", + "garlic cloves", + "honey", + "oyster sauce", + "red chili peppers", + "pumpkin" + ] + }, + { + "id": 7221, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "buttermilk", + "lemon juice", + "cinnamon", + "all-purpose flour", + "sugar", + "vanilla", + "butter", + "pie shell" + ] + }, + { + "id": 30563, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "pitas", + "vegetable oil", + "greek yogurt", + "serrano chile", + "ground cumin", + "pepper", + "boneless skinless chicken breasts", + "salt", + "fresh mint", + "plum tomatoes", + "kosher salt", + "garlic powder", + "balsamic vinegar", + "ground cayenne pepper", + "ground turmeric", + "fresh cilantro", + "onion powder", + "ground coriander", + "onions", + "saffron" + ] + }, + { + "id": 41348, + "cuisine": "mexican", + "ingredients": [ + "fresh lime juice", + "white onion", + "serrano chile", + "avocado", + "chopped cilantro fresh", + "tomatillos" + ] + }, + { + "id": 42974, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "buttermilk", + "all-purpose flour", + "large egg yolks", + "large eggs", + "vanilla extract", + "brown sugar", + "granulated sugar", + "heavy cream", + "chopped pecans", + "baking soda", + "baking powder", + "salt" + ] + }, + { + "id": 37217, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "warm water", + "bread flour", + "sugar", + "salt", + "active dry yeast" + ] + }, + { + "id": 31249, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "ricotta salata", + "salt", + "fresh basil", + "extra-virgin olive oil", + "cherry tomatoes", + "spaghetti" + ] + }, + { + "id": 18202, + "cuisine": "russian", + "ingredients": [ + "powdered sugar", + "large egg yolks", + "salt", + "heavy whipping cream", + "sugar", + "large eggs", + "apricot preserves", + "ground cinnamon", + "ground cloves", + "blanched hazelnuts", + "greek yogurt", + "grated orange peel", + "unsalted butter", + "all-purpose flour", + "unsweetened cocoa powder" + ] + }, + { + "id": 16716, + "cuisine": "mexican", + "ingredients": [ + "fresh dill", + "chopped hazelnuts", + "oil", + "dried basil", + "cauliflower florets", + "fresh asparagus", + "minced garlic", + "chili powder", + "celery seed", + "celery ribs", + "kidney beans", + "salt" + ] + }, + { + "id": 11295, + "cuisine": "italian", + "ingredients": [ + "gorgonzola dolce", + "flat leaf parsley", + "pizza doughs", + "walnuts", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 42095, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "corn", + "cooked chicken", + "garlic", + "ground cumin", + "chicken broth", + "jalapeno chilies", + "vegetable oil", + "corn tortillas", + "avocado", + "poblano peppers", + "chili powder", + "sour cream", + "pepper", + "flour", + "butter", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 30804, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "chees fresh mozzarella", + "fresh basil", + "green tomatoes", + "freshly ground pepper", + "olive oil", + "salt", + "brown sugar", + "balsamic vinegar", + "garlic cloves" + ] + }, + { + "id": 8210, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "old bay seasoning", + "lemon juice", + "light brown sugar", + "butter", + "garlic", + "onions", + "water", + "bacon", + "shrimp", + "chicken stock", + "2% reduced-fat milk", + "salt", + "corn grits" + ] + }, + { + "id": 46450, + "cuisine": "southern_us", + "ingredients": [ + "cornish hens", + "melted butter", + "stuffing" + ] + }, + { + "id": 2257, + "cuisine": "french", + "ingredients": [ + "all-purpose flour", + "large eggs", + "unsalted butter", + "confectioners sugar", + "salt" + ] + }, + { + "id": 26101, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "granulated sugar", + "black moss", + "baby carrots", + "snow peas", + "straw mushrooms", + "shiitake", + "peeled fresh ginger", + "gluten", + "bean curd", + "soy sauce", + "black fungus", + "lily buds", + "napa cabbage", + "bamboo shoots", + "deep-fried tofu", + "baby bok choy", + "water", + "steamed white rice", + "vegetable oil", + "baby corn", + "nuts" + ] + }, + { + "id": 37242, + "cuisine": "indian", + "ingredients": [ + "white vinegar", + "ground allspice", + "vegetable oil", + "chicken", + "plain yogurt", + "lemon juice", + "salt" + ] + }, + { + "id": 48920, + "cuisine": "vietnamese", + "ingredients": [ + "boneless skinless chicken breasts", + "carrots", + "sugar pea", + "spices", + "onions", + "pepper", + "teriyaki sauce", + "cooking spray", + "broccoli" + ] + }, + { + "id": 25335, + "cuisine": "italian", + "ingredients": [ + "plain yogurt", + "rotelle", + "zucchini", + "italian sausage", + "dried mint flakes", + "olive oil", + "fresh mint" + ] + }, + { + "id": 24648, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "fennel", + "butter", + "ground coriander", + "fresh parsley", + "olive oil", + "vegetable stock", + "grated lemon zest", + "fresh mint", + "pepper", + "dry white wine", + "salt", + "red bell pepper", + "fresh rosemary", + "grated parmesan cheese", + "garlic", + "fresh lemon juice", + "onions" + ] + }, + { + "id": 29388, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "ketchup", + "garlic", + "sugar", + "fresh cilantro", + "popcorn chicken", + "tomato purée", + "water", + "corn starch", + "soy sauce", + "ginger", + "onions" + ] + }, + { + "id": 6014, + "cuisine": "italian", + "ingredients": [ + "water", + "potato gnocchi", + "ground pepper", + "walnuts", + "grated parmesan cheese", + "arugula", + "olive oil", + "salt" + ] + }, + { + "id": 1800, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "sweet potatoes", + "cilantro", + "sour cream", + "black beans", + "olive oil", + "brown rice", + "taco seasoning", + "lime juice", + "green onions", + "salsa", + "chopped cilantro", + "shredded cheddar cheese", + "bell pepper", + "whole wheat tortillas", + "red enchilada sauce" + ] + }, + { + "id": 18091, + "cuisine": "italian", + "ingredients": [ + "vinaigrette dressing", + "black olives", + "ground black pepper", + "fresh basil leaves", + "fresh mozzarella", + "cherry tomatoes", + "salt" + ] + }, + { + "id": 8075, + "cuisine": "southern_us", + "ingredients": [ + "seafood seasoning", + "all-purpose flour", + "pepper", + "buttermilk", + "water", + "salt", + "catfish fillets", + "vegetable oil", + "cornmeal" + ] + }, + { + "id": 19602, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "whipping cream", + "shrimp", + "brandy", + "butter", + "garlic cloves", + "onions", + "tomato paste", + "dry white wine", + "cayenne pepper", + "bay leaf", + "peeled tomatoes", + "fish stock", + "carrots" + ] + }, + { + "id": 45951, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "basil", + "peanut oil", + "iceberg lettuce", + "fish sauce", + "nuoc nam", + "rice vermicelli", + "beansprouts", + "peanuts", + "cilantro sprigs", + "shrimp", + "sugar", + "red pepper flakes", + "garlic", + "onions" + ] + }, + { + "id": 30142, + "cuisine": "southern_us", + "ingredients": [ + "rolled oats", + "baking powder", + "salt", + "rosewater", + "eggs", + "unsalted butter", + "buttermilk", + "grated lemon zest", + "cornmeal", + "sugar", + "crumb topping", + "vanilla extract", + "dark brown sugar", + "blackberries", + "baking soda", + "cinnamon", + "all-purpose flour", + "ground cardamom" + ] + }, + { + "id": 35178, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "green onions", + "dark sesame oil", + "tomato paste", + "rice sticks", + "light coconut milk", + "snow peas", + "fresh cilantro", + "ground red pepper", + "garlic cloves", + "water", + "peeled fresh ginger", + "salt" + ] + }, + { + "id": 23311, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "salt", + "vegetable oil", + "granulated sugar", + "anise seed", + "heavy cream" + ] + }, + { + "id": 36163, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "instant yeast", + "water", + "bread flour" + ] + }, + { + "id": 29611, + "cuisine": "french", + "ingredients": [ + "chicken stock", + "chopped onion", + "veal chops", + "carrots", + "butter", + "bay leaf", + "fresh thyme", + "garlic cloves" + ] + }, + { + "id": 47873, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh oregano", + "fresh basil leaves", + "diced tomatoes", + "garlic cloves", + "rigatoni", + "grated parmesan cheese", + "hot Italian sausages", + "arugula", + "crushed tomatoes", + "dry red wine", + "onions" + ] + }, + { + "id": 38156, + "cuisine": "vietnamese", + "ingredients": [ + "lemon juice", + "white pepper", + "salt" + ] + }, + { + "id": 48352, + "cuisine": "chinese", + "ingredients": [ + "cooking spray", + "salt", + "canola oil", + "lower sodium soy sauce", + "brown rice", + "dark sesame oil", + "fresh ginger", + "green onions", + "rice vinegar", + "large eggs", + "green peas", + "medium shrimp" + ] + }, + { + "id": 14044, + "cuisine": "japanese", + "ingredients": [ + "large eggs", + "salt", + "unsalted butter", + "baking powder", + "bittersweet chocolate", + "granulated sugar", + "ginger", + "sweetened condensed milk", + "candy canes", + "flour", + "cardamom" + ] + }, + { + "id": 2654, + "cuisine": "mexican", + "ingredients": [ + "low-fat shredded cheddar cheese", + "baby portobello mushrooms", + "large eggs", + "sea salt", + "red bell pepper", + "yellow corn meal", + "black beans", + "baking powder", + "garlic", + "ground cumin", + "chile powder", + "skim milk", + "jalapeno chilies", + "diced tomatoes", + "dried oregano", + "coconut oil", + "zucchini", + "apple cider vinegar", + "diced yellow onion" + ] + }, + { + "id": 14079, + "cuisine": "chinese", + "ingredients": [ + "sea bass", + "salt", + "light soy sauce", + "scallions", + "sugar", + "peanut oil", + "fresh ginger" + ] + }, + { + "id": 5779, + "cuisine": "italian", + "ingredients": [ + "nonfat mayonnaise", + "fresh parmesan cheese", + "worcestershire sauce", + "sourdough bread", + "red wine vinegar", + "garlic cloves", + "pepper", + "dijon mustard", + "anchovy paste", + "romaine lettuce", + "olive oil", + "cajun seasoning" + ] + }, + { + "id": 34464, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "all purpose unbleached flour", + "baking powder", + "salt", + "whole milk", + "cracked black pepper", + "unsalted butter", + "chopped fresh thyme" + ] + }, + { + "id": 16307, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "wasabi powder", + "dry white wine", + "cooking spray", + "rice vinegar", + "yellow miso", + "flank steak" + ] + }, + { + "id": 13045, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "garlic", + "diced tomatoes in juice", + "kosher salt", + "jalapeno chilies", + "tortilla chips", + "chopped cilantro fresh", + "black beans", + "quinoa", + "salsa", + "sour cream", + "corn", + "vegetable broth", + "shredded cheese" + ] + }, + { + "id": 41574, + "cuisine": "greek", + "ingredients": [ + "water", + "long-grain rice", + "salt", + "low salt chicken broth", + "large eggs", + "fresh lemon juice", + "white pepper", + "lemon slices" + ] + }, + { + "id": 9890, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "chopped cilantro fresh", + "tostada shells", + "salsa", + "canned black beans", + "cream cheese", + "butter" + ] + }, + { + "id": 393, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "cumin seed", + "canola oil", + "pastry", + "chili powder", + "onions", + "garam masala", + "salt", + "frozen peas", + "potatoes", + "mustard seeds" + ] + }, + { + "id": 39395, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "peanut oil", + "light soy sauce", + "sea salt", + "halibut fillets", + "cilantro sprigs", + "dark soy sauce", + "green onions", + "toasted sesame oil" + ] + }, + { + "id": 34982, + "cuisine": "southern_us", + "ingredients": [ + "green onions", + "salt", + "red bell pepper", + "quickcooking grits", + "whipping cream", + "low salt chicken broth", + "ground black pepper", + "chopped fresh thyme", + "garlic cloves", + "thyme sprigs", + "hot pepper sauce", + "butter", + "feta cheese crumbles", + "large shrimp" + ] + }, + { + "id": 7907, + "cuisine": "irish", + "ingredients": [ + "low-fat buttermilk", + "whole wheat flour", + "salt", + "baking soda", + "all-purpose flour", + "cooking spray" + ] + }, + { + "id": 7020, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "yuca", + "vegetable oil" + ] + }, + { + "id": 40491, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "green onions", + "bread crumb fresh", + "half & half", + "white cornmeal", + "cream style corn", + "butter", + "sugar", + "large eggs", + "salt" + ] + }, + { + "id": 21619, + "cuisine": "italian", + "ingredients": [ + "mint", + "lemon", + "watermelon", + "sugar", + "mint sprigs", + "anisette" + ] + }, + { + "id": 3121, + "cuisine": "british", + "ingredients": [ + "salt", + "unsalted butter", + "chopped fresh mint", + "cracked black pepper", + "frozen peas", + "water", + "flat leaf parsley" + ] + }, + { + "id": 23583, + "cuisine": "indian", + "ingredients": [ + "amchur", + "garlic", + "cumin seed", + "bay leaf", + "ground cumin", + "coriander powder", + "cilantro leaves", + "black salt", + "chaat masala", + "kale", + "salt", + "oil", + "onions", + "tomatoes", + "chili powder", + "green chilies", + "lemon juice", + "mango" + ] + }, + { + "id": 8927, + "cuisine": "italian", + "ingredients": [ + "feta cheese", + "salt", + "fresh basil leaves", + "extra-virgin olive oil", + "fresh mint", + "black pepper", + "linguine", + "flat leaf parsley", + "asparagus", + "scallions", + "frozen peas" + ] + }, + { + "id": 27948, + "cuisine": "italian", + "ingredients": [ + "capers", + "lemon wedge", + "chopped parsley", + "unsalted butter", + "purple onion", + "hot red pepper flakes", + "extra-virgin olive oil", + "sourdough baguette", + "red vermouth", + "chicken livers" + ] + }, + { + "id": 37974, + "cuisine": "moroccan", + "ingredients": [ + "eggplant", + "extra-virgin olive oil", + "chopped cilantro fresh", + "coarse salt", + "sweet paprika", + "finely chopped fresh parsley", + "garlic", + "ground cumin", + "paprika", + "fresh lemon juice" + ] + }, + { + "id": 4942, + "cuisine": "french", + "ingredients": [ + "shallots", + "grated lemon peel", + "anchovy fillets", + "unsalted butter", + "fresh lemon juice", + "new york strip steaks" + ] + }, + { + "id": 27052, + "cuisine": "indian", + "ingredients": [ + "chicken stock", + "raisins", + "couscous", + "curry powder", + "extra-virgin olive oil", + "slivered almonds", + "cilantro", + "ground black pepper", + "salt" + ] + }, + { + "id": 47740, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "bread flour", + "active dry yeast", + "kosher salt", + "vegetable shortening" + ] + }, + { + "id": 33386, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "baguette", + "fish stock", + "California bay leaves", + "saffron threads", + "fish fillets", + "lobster", + "extra-virgin olive oil", + "boiling potatoes", + "mussels", + "black pepper", + "rouille", + "garlic cloves", + "large shrimp", + "cockles", + "fronds", + "sea salt", + "onions" + ] + }, + { + "id": 20173, + "cuisine": "chinese", + "ingredients": [ + "Japanese mountain yam", + "corn oil", + "wild rice", + "water", + "ground pork", + "carrots", + "medium eggs", + "shiitake", + "salt", + "dumplings", + "dark soy sauce", + "cooking oil", + "essence", + "cucumber" + ] + }, + { + "id": 32848, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "salt", + "corn starch", + "mirin", + "wax beans", + "oil", + "yellow peppers", + "water", + "cutlet", + "scallions", + "onions", + "sugar", + "flour", + "ginger", + "garlic cloves" + ] + }, + { + "id": 35873, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "cracked black pepper", + "fresh parsley", + "grape tomatoes", + "sweet potatoes", + "fresh lime juice", + "avocado", + "jalapeno chilies", + "lamb", + "ground cumin", + "ground chipotle chile pepper", + "Himalayan salt", + "ghee" + ] + }, + { + "id": 12174, + "cuisine": "thai", + "ingredients": [ + "chili oil", + "oyster sauce", + "fresh basil leaves", + "black pepper", + "salt", + "chillies", + "garlic", + "fillets", + "caster sugar", + "fresh mushrooms", + "onions" + ] + }, + { + "id": 20428, + "cuisine": "southern_us", + "ingredients": [ + "fresh chives", + "mango chutney", + "salt", + "ground coriander", + "celery ribs", + "peanuts", + "red pepper", + "rich chicken stock", + "ground turmeric", + "curry powder", + "butter", + "yellow onion", + "chopped pecans", + "black pepper", + "chunky peanut butter", + "heavy cream", + "sweet paprika", + "ground cumin" + ] + }, + { + "id": 34886, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "purple onion", + "sour cream", + "honey", + "vine ripened tomatoes", + "scallions", + "chopped cilantro", + "lime wedges", + "salt", + "chipotles in adobo", + "olive oil", + "shredded sharp cheddar cheese", + "garlic cloves", + "chicken" + ] + }, + { + "id": 17259, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "paprika", + "salt", + "cayenne pepper", + "monterey jack", + "black beans", + "chili powder", + "vegetable broth", + "hot sauce", + "corn tortillas", + "cheddar cheese", + "ground black pepper", + "cilantro", + "frozen corn", + "ground coriander", + "ground cumin", + "lettuce", + "lime", + "diced tomatoes", + "garlic", + "yellow onion", + "cooked quinoa" + ] + }, + { + "id": 8915, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "salt", + "onion powder", + "rubbed sage", + "eggs", + "vegetable oil", + "chicken leg quarters", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 4859, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "water", + "salsa verde", + "boneless skinless chicken breasts", + "shredded lettuce", + "salsa", + "olives", + "kosher salt", + "honey", + "flour tortillas", + "onion powder", + "salt", + "smoked paprika", + "ground cumin", + "beans", + "lime juice", + "ground black pepper", + "chili powder", + "garlic", + "shredded cheese", + "dried oregano", + "avocado", + "pepper", + "olive oil", + "cooking spray", + "lime wedges", + "cilantro leaves", + "sour cream" + ] + }, + { + "id": 10295, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "orange juice", + "shrimp", + "ground cumin", + "water", + "purple onion", + "mixed greens", + "fresh lime juice", + "avocado", + "cilantro sprigs", + "freshly ground pepper", + "red bell pepper", + "jalapeno chilies", + "salt", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 20331, + "cuisine": "spanish", + "ingredients": [ + "plain flour", + "parsley", + "minced beef", + "saffron", + "bread crumbs", + "salt", + "carrots", + "pork", + "paprika", + "garlic cloves", + "olive oil", + "free range egg", + "onions" + ] + }, + { + "id": 41743, + "cuisine": "italian", + "ingredients": [ + "low-fat plain yogurt", + "finely chopped onion", + "noodles", + "olive oil", + "lemon", + "light sour cream", + "chopped green bell pepper", + "blue cheese", + "pitted kalamata olives", + "red sockeye", + "italian seasoning" + ] + }, + { + "id": 7389, + "cuisine": "italian", + "ingredients": [ + "lime juice", + "chopped onion", + "sea salt", + "dried rosemary", + "tomatoes", + "garlic", + "chopped green bell pepper", + "dried oregano" + ] + }, + { + "id": 18230, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "onions", + "salt", + "garlic", + "chopped cilantro fresh", + "cayenne pepper" + ] + }, + { + "id": 14313, + "cuisine": "jamaican", + "ingredients": [ + "hot pepper sauce", + "mango", + "salt", + "purple onion", + "lime", + "chopped cilantro fresh" + ] + }, + { + "id": 21405, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "salt", + "water", + "bacon", + "carrots", + "turnips", + "chopped fresh thyme", + "pearl barley", + "ground black pepper", + "lamb shoulder", + "onions" + ] + }, + { + "id": 27407, + "cuisine": "spanish", + "ingredients": [ + "large egg whites", + "manzanilla", + "ground coriander", + "tomato sauce", + "cooking spray", + "fresh oregano", + "fresh parsley", + "ground turkey breast", + "dry bread crumbs", + "garlic cloves", + "black pepper", + "paprika", + "chopped onion" + ] + }, + { + "id": 2067, + "cuisine": "cajun_creole", + "ingredients": [ + "jasmine rice", + "bay leaves", + "paprika", + "garlic salt", + "andouille sausage", + "bell pepper", + "rotelle", + "onions", + "chicken broth", + "olive oil", + "chili powder", + "garlic", + "red kidney beans", + "water", + "red beans", + "stewed tomatoes", + "italian seasoning" + ] + }, + { + "id": 43003, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "beef tongue", + "vegetable oil", + "corn tortillas", + "fresh cilantro", + "lemon juice", + "tomatoes", + "salt", + "onions" + ] + }, + { + "id": 4676, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "vegetable oil", + "carrots", + "sugar", + "bell pepper", + "skinless chicken breasts", + "bamboo shoots", + "steamed white rice", + "salt", + "corn starch", + "minced ginger", + "Shaoxing wine", + "garlic chili sauce", + "black vinegar" + ] + }, + { + "id": 43419, + "cuisine": "cajun_creole", + "ingredients": [ + "prepared horseradish", + "fresh tarragon", + "lump crab meat", + "dijon mustard", + "fresh lemon juice", + "mayonaise", + "ground black pepper", + "salt", + "pepper", + "ground red pepper" + ] + }, + { + "id": 33400, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "goji berries", + "shiitake", + "garlic", + "corn starch", + "light soy sauce", + "ginger", + "oyster sauce", + "dark soy sauce", + "chicken breasts", + "scallions" + ] + }, + { + "id": 38825, + "cuisine": "jamaican", + "ingredients": [ + "tomatoes", + "lime", + "vegetable oil", + "scallions", + "curry powder", + "meat", + "ground allspice", + "pepper", + "dried thyme", + "garlic", + "coconut milk", + "water", + "ground black pepper", + "salt", + "onions" + ] + }, + { + "id": 17974, + "cuisine": "french", + "ingredients": [ + "egg whites", + "water", + "confectioners sugar", + "almond meal", + "granulated sugar" + ] + }, + { + "id": 18972, + "cuisine": "mexican", + "ingredients": [ + "zucchini", + "butter", + "green chilies", + "whole milk", + "chopped onion", + "ground cumin", + "corn kernels", + "chili powder", + "grated jack cheese", + "flour tortillas", + "all-purpose flour", + "chopped cilantro fresh" + ] + }, + { + "id": 4440, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "beef broth", + "chopped parsley", + "ground cumin", + "eggs", + "water", + "sliced shallots", + "dried oregano", + "minced garlic", + "red bell pepper", + "chipotle chile powder", + "red potato", + "salt", + "roast beef", + "canola oil" + ] + }, + { + "id": 26405, + "cuisine": "southern_us", + "ingredients": [ + "apple cider vinegar", + "honey", + "salt", + "ground black pepper", + "ketchup", + "red pepper flakes" + ] + }, + { + "id": 42555, + "cuisine": "italian", + "ingredients": [ + "chestnut mushrooms", + "thyme leaves", + "white wine", + "sauce", + "chicken breasts", + "olive oil", + "chopped onion" + ] + }, + { + "id": 12862, + "cuisine": "thai", + "ingredients": [ + "chicken wings", + "cilantro", + "chopped cilantro", + "sweet chili sauce", + "oil", + "fish sauce", + "chili sauce", + "light brown sugar", + "lemongrass", + "ground white pepper" + ] + }, + { + "id": 37174, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "onions", + "salt", + "pepper", + "waxy potatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 28871, + "cuisine": "british", + "ingredients": [ + "pepper", + "butter", + "beef broth", + "frozen pastry puff sheets", + "beef tenderloin", + "onions", + "liver pate", + "red wine", + "fresh mushrooms", + "egg yolks", + "salt" + ] + }, + { + "id": 17486, + "cuisine": "chinese", + "ingredients": [ + "sugar pea", + "green onions", + "carrots", + "fresh ginger", + "dark sesame oil", + "vegetable oil cooking spray", + "large eggs", + "garlic cloves", + "light soy sauce", + "brown rice" + ] + }, + { + "id": 3804, + "cuisine": "irish", + "ingredients": [ + "coffee", + "whipping cream", + "sugar", + "Irish whiskey" + ] + }, + { + "id": 23569, + "cuisine": "brazilian", + "ingredients": [ + "garlic powder", + "smoked pork", + "black beans", + "bacon", + "dried oregano", + "chicken broth", + "bay leaves", + "basmati rice", + "olive oil", + "salt" + ] + }, + { + "id": 47084, + "cuisine": "french", + "ingredients": [ + "capers", + "garlic", + "pepper", + "lemon juice", + "pitted kalamata olives", + "salt", + "olive oil", + "fresh parsley" + ] + }, + { + "id": 37304, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "ground black pepper", + "scallions", + "soy sauce", + "garlic", + "sugar", + "sesame oil", + "large shrimp", + "olive oil", + "chili sauce" + ] + }, + { + "id": 46834, + "cuisine": "korean", + "ingredients": [ + "eggs", + "cayenne", + "scallions", + "soy sauce", + "sesame oil", + "cabbage", + "chiles", + "meat", + "noodles", + "chicken stock", + "sweet chili sauce", + "chili pepper flakes", + "chopped garlic" + ] + }, + { + "id": 9972, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "cayenne", + "ground allspice", + "onions", + "red kidney beans", + "garlic powder", + "Tabasco Pepper Sauce", + "sausages", + "ground cloves", + "ground black pepper", + "salt", + "ground white pepper", + "celery ribs", + "dried thyme", + "bay leaves", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 19203, + "cuisine": "vietnamese", + "ingredients": [ + "pork", + "garlic", + "cooked white rice", + "soy sauce", + "peanut oil", + "fish sauce", + "lemongrass", + "nuoc cham", + "sugar", + "ground black pepper", + "sliced shallots" + ] + }, + { + "id": 4888, + "cuisine": "filipino", + "ingredients": [ + "vinegar", + "white sugar", + "pineapple chunks", + "bacon", + "water chestnuts", + "soy sauce", + "chicken livers" + ] + }, + { + "id": 3378, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "large eggs", + "lo mein noodles", + "butter", + "fresh cilantro", + "green onions", + "brown sugar", + "Sriracha", + "crushed red pepper" + ] + }, + { + "id": 16812, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "mushrooms", + "polenta", + "zucchini", + "sausages", + "olive oil", + "marinara sauce", + "red bell pepper", + "finely chopped onion", + "garlic cloves" + ] + }, + { + "id": 26230, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "cream cheese", + "flour tortillas", + "sliced green onions", + "lime juice", + "sour cream", + "picante sauce", + "jalapeno chilies" + ] + }, + { + "id": 49013, + "cuisine": "filipino", + "ingredients": [ + "water", + "salt", + "peppercorns", + "pork shanks", + "vinegar", + "garlic cloves", + "brown sugar", + "bananas", + "oil", + "soy sauce", + "bay leaves", + "onions" + ] + }, + { + "id": 41305, + "cuisine": "southern_us", + "ingredients": [ + "cornbread", + "trout", + "salt", + "thick-cut bacon", + "kale", + "paprika", + "lemon juice", + "olive oil", + "purple onion", + "fillets", + "pepper", + "red wine vinegar", + "pumpkin seeds", + "ground cumin" + ] + }, + { + "id": 2462, + "cuisine": "japanese", + "ingredients": [ + "sea scallops", + "wasabi paste", + "teriyaki sauce", + "sesame seeds", + "green onions" + ] + }, + { + "id": 36990, + "cuisine": "mexican", + "ingredients": [ + "large egg whites", + "semisweet chocolate", + "salt", + "sugar", + "unsalted butter", + "vanilla extract", + "large egg yolks", + "mint sprigs", + "fresh raspberries", + "ground cinnamon", + "instant espresso powder", + "whipping cream" + ] + }, + { + "id": 39575, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "peanuts", + "szechwan peppercorns", + "garlic", + "white sesame seeds", + "soy sauce", + "base", + "ponzu", + "scallions", + "chili flakes", + "white pepper", + "goma", + "ground pork", + "oil", + "red chili peppers", + "mirin", + "sesame oil", + "salt", + "noodles" + ] + }, + { + "id": 17973, + "cuisine": "japanese", + "ingredients": [ + "frozen edamame beans", + "soy sauce", + "vegetable oil", + "carrots", + "sake", + "vinegar", + "dried shiitake mushrooms", + "shiso", + "minced chicken", + "spring onions", + "firm tofu", + "eggs", + "granulated sugar", + "salt", + "ginger root" + ] + }, + { + "id": 31321, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "bourbon whiskey", + "vanilla extract", + "pecans", + "large eggs", + "bacon", + "dark brown sugar", + "sugar", + "flour", + "light corn syrup", + "eggs", + "unsalted butter", + "ice water", + "bacon grease" + ] + }, + { + "id": 16270, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "garlic powder", + "diced tomatoes", + "cayenne pepper", + "onions", + "other vegetables", + "Tabasco Pepper Sauce", + "garlic", + "okra", + "broth", + "black pepper", + "bay leaves", + "vegetable broth", + "chickpeas", + "yellow peppers", + "dried thyme", + "all purpose unbleached flour", + "salt", + "flavoring" + ] + }, + { + "id": 34451, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "cracked black pepper", + "cognac", + "szechwan peppercorns", + "crème fraîche", + "shallots", + "salt", + "beef tenderloin steaks", + "watercress", + "beef broth" + ] + }, + { + "id": 35406, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "corn tortillas", + "bacon", + "corn kernels", + "salsa" + ] + }, + { + "id": 33820, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "Shaoxing wine", + "ground pork", + "toasted sesame oil", + "minced ginger", + "napa cabbage", + "ramps", + "kosher salt", + "vegetable oil", + "all-purpose flour", + "boiling water", + "sugar", + "fresh ginger", + "bacon", + "chinkiang vinegar" + ] + }, + { + "id": 31310, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "reduced fat milk", + "center cut loin pork chop", + "fresh sage", + "ground black pepper", + "all-purpose flour", + "fontina cheese", + "prosciutto", + "salt", + "sage leaves", + "olive oil", + "dry white wine", + "polenta" + ] + }, + { + "id": 409, + "cuisine": "korean", + "ingredients": [ + "cooked rice", + "sweet chili sauce", + "mirin", + "ginger", + "lemon juice", + "brown sugar", + "honey", + "green onions", + "Gochujang base", + "spinach", + "lime juice", + "Sriracha", + "garlic", + "chicken thighs", + "eggs", + "soy sauce", + "sesame seeds", + "sesame oil", + "orange juice" + ] + }, + { + "id": 14343, + "cuisine": "italian", + "ingredients": [ + "chicken bouillon granules", + "olive oil", + "garlic", + "boneless skinless chicken breast halves", + "pepper", + "grated parmesan cheese", + "bow-tie pasta", + "water", + "butter", + "carrots", + "chicken broth", + "zucchini", + "salt" + ] + }, + { + "id": 34434, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "onions", + "red wine", + "top sirloin steak", + "chunky pasta sauce", + "garlic" + ] + }, + { + "id": 42451, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "corn starch", + "Shaoxing wine", + "scallions", + "lobster", + "all-purpose flour", + "ground white pepper", + "sugar", + "sesame oil", + "oil" + ] + }, + { + "id": 20022, + "cuisine": "british", + "ingredients": [ + "water", + "beef tenderloin", + "Burgundy wine", + "cold water", + "dried basil", + "salt", + "liver pate", + "beaten eggs", + "shortening", + "beef bouillon granules", + "all-purpose flour" + ] + }, + { + "id": 36757, + "cuisine": "korean", + "ingredients": [ + "persimmon", + "pinenuts", + "fresh ginger", + "sugar" + ] + }, + { + "id": 24212, + "cuisine": "indian", + "ingredients": [ + "clove", + "coconut", + "cinnamon", + "juice", + "canola oil", + "tumeric", + "finely chopped onion", + "garlic", + "medium shrimp", + "green cardamom pods", + "water", + "bay leaves", + "cilantro leaves", + "basmati rice", + "serrano chilies", + "lime", + "ginger", + "coconut milk" + ] + }, + { + "id": 12129, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh lemon juice", + "fresh rosemary", + "salt", + "chicken", + "cannellini beans", + "grated lemon peel", + "sugar", + "garlic cloves" + ] + }, + { + "id": 34321, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "shallots", + "vegetable broth", + "arborio rice", + "green onions", + "butter", + "freshly ground pepper", + "minced garlic", + "dry white wine", + "garden peas", + "fresh parsley", + "parmigiano reggiano cheese", + "vine leaves", + "salt" + ] + }, + { + "id": 22146, + "cuisine": "cajun_creole", + "ingredients": [ + "prepared horseradish", + "anchovy paste", + "grated orange", + "mayonaise", + "worcestershire sauce", + "lemon juice", + "creole mustard", + "old bay seasoning", + "grated lemon zest", + "sweet pickle", + "paprika", + "chopped cilantro" + ] + }, + { + "id": 8163, + "cuisine": "mexican", + "ingredients": [ + "pure maple syrup", + "shredded cheddar cheese", + "tortillas", + "cilantro", + "fresh lime juice", + "black beans", + "corn", + "boneless skinless chicken breasts", + "salt", + "romaine lettuce", + "fresh cilantro", + "green onions", + "extra-virgin olive oil", + "ground cumin", + "avocado", + "pepper", + "cherry tomatoes", + "lime wedges", + "cayenne pepper" + ] + }, + { + "id": 32635, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "sharp cheddar cheese", + "butter", + "quickcooking grits", + "okra pods", + "water", + "salt" + ] + }, + { + "id": 36054, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "all-purpose flour", + "leg of lamb", + "saffron", + "tomato purée", + "shallots", + "ground coriander", + "flat leaf parsley", + "ground ginger", + "clear honey", + "lemon rind", + "cinnamon sticks", + "lamb stock", + "pitted Medjool dates", + "garlic cloves", + "coriander" + ] + }, + { + "id": 5123, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "granulated sugar", + "marinade", + "yellow bell pepper", + "red bell pepper", + "pepper", + "Sriracha", + "top sirloin steak", + "garlic cloves", + "black pepper", + "zucchini", + "sesame oil", + "salt", + "onions", + "chinese rice wine", + "water", + "mushrooms", + "ginger", + "corn starch" + ] + }, + { + "id": 19129, + "cuisine": "cajun_creole", + "ingredients": [ + "diced tomatoes", + "salt", + "smoked paprika", + "white rice", + "okra", + "onions", + "chicken stock", + "garlic", + "sausages", + "deveined shrimp", + "green pepper", + "celery" + ] + }, + { + "id": 7842, + "cuisine": "chinese", + "ingredients": [ + "molasses", + "ginger", + "garlic cloves", + "sesame oil", + "rice vinegar", + "steak", + "jalapeno chilies", + "navel oranges", + "corn starch", + "low sodium soy sauce", + "red pepper flakes", + "scallions", + "canola oil" + ] + }, + { + "id": 7128, + "cuisine": "japanese", + "ingredients": [ + "tamarind extract", + "chili powder", + "paneer", + "ground turmeric", + "tomatoes", + "coriander seeds", + "ginger", + "cumin seed", + "sugar", + "garam masala", + "peas", + "oil", + "cream", + "butter", + "green chilies" + ] + }, + { + "id": 32882, + "cuisine": "british", + "ingredients": [ + "beef drippings", + "salt", + "milk", + "eggs", + "parsley", + "water", + "all-purpose flour" + ] + }, + { + "id": 40445, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "garlic", + "couscous", + "ground cinnamon", + "apricot halves", + "all-purpose flour", + "ground cumin", + "ground ginger", + "pitted green olives", + "lamb shoulder", + "onions", + "black pepper", + "paprika", + "carrots" + ] + }, + { + "id": 39934, + "cuisine": "thai", + "ingredients": [ + "sugar", + "green onions", + "chinese cabbage", + "fresh lime juice", + "fish sauce", + "shredded carrots", + "seasoned rice wine vinegar", + "red bell pepper", + "fresh basil", + "chili paste", + "salt", + "cucumber", + "serrano chile", + "bean threads", + "pork", + "purple onion", + "peanut oil", + "chopped fresh mint" + ] + }, + { + "id": 20567, + "cuisine": "italian", + "ingredients": [ + "pepper", + "shredded mozzarella cheese", + "meat", + "salt", + "lasagna noodles", + "meat sauce" + ] + }, + { + "id": 1206, + "cuisine": "greek", + "ingredients": [ + "strawberries", + "honey", + "phyllo dough", + "greek yogurt", + "unsalted butter" + ] + }, + { + "id": 46031, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "salted butter", + "salt", + "pure vanilla extract", + "fruit", + "ice water", + "corn starch", + "sugar", + "unsalted butter", + "lemon juice", + "shortening", + "ground nutmeg", + "all-purpose flour" + ] + }, + { + "id": 2124, + "cuisine": "thai", + "ingredients": [ + "sweet soy sauce", + "ginger root", + "sugar", + "sunflower oil", + "salmon fillets", + "spring onions", + "red chili peppers", + "cilantro leaves" + ] + }, + { + "id": 3359, + "cuisine": "mexican", + "ingredients": [ + "roma tomatoes", + "kosher salt", + "chopped cilantro fresh", + "white onion", + "garlic cloves", + "lime juice", + "serrano chile" + ] + }, + { + "id": 34593, + "cuisine": "indian", + "ingredients": [ + "cherry tomatoes", + "garam masala", + "salt", + "ghee", + "chicken", + "red chili peppers", + "coriander seeds", + "garlic", + "cumin seed", + "methi", + "tomatoes", + "sun-dried tomatoes", + "coriander powder", + "cilantro leaves", + "mixed bell peppers", + "ground cumin", + "pepper", + "ginger piece", + "purple onion", + "lemon juice", + "ground turmeric" + ] + }, + { + "id": 23469, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "green onions", + "oyster sauce", + "soy sauce", + "extra firm tofu", + "garlic", + "chicken broth", + "ground black pepper", + "ground pork", + "corn starch", + "water", + "cooking oil", + "salt" + ] + }, + { + "id": 2509, + "cuisine": "italian", + "ingredients": [ + "pepper", + "lemon juice", + "fresh green bean", + "olive oil", + "capers", + "salt" + ] + }, + { + "id": 28184, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "garlic cloves", + "water", + "white vinegar", + "serrano peppers", + "sugar", + "fresh lime juice" + ] + }, + { + "id": 6914, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "fresh shiitake mushrooms", + "garlic cloves", + "oysters", + "vegetable oil", + "dried mushrooms", + "gyoza", + "salt", + "soy sauce", + "shallots", + "toasted sesame oil" + ] + }, + { + "id": 25481, + "cuisine": "french", + "ingredients": [ + "walnut halves", + "mixed greens", + "salt", + "walnut oil", + "goat cheese", + "pepper", + "lemon juice" + ] + }, + { + "id": 48630, + "cuisine": "thai", + "ingredients": [ + "pepper", + "honey", + "sesame oil", + "chili sauce", + "toasted sesame oil", + "black pepper", + "lemongrass", + "reduced sodium soy sauce", + "red pepper", + "carrots", + "fresh basil leaves", + "fish sauce", + "water", + "fresh ginger", + "lean ground beef", + "roasted peanuts", + "toasted sesame seeds", + "jasmine rice", + "lime", + "green onions", + "garlic", + "coconut milk" + ] + }, + { + "id": 32437, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "salted butter", + "cracked black pepper", + "baguette", + "fresh lemon juice" + ] + }, + { + "id": 28959, + "cuisine": "brazilian", + "ingredients": [ + "superfine sugar", + "cachaca", + "crushed ice", + "lime" + ] + }, + { + "id": 19378, + "cuisine": "mexican", + "ingredients": [ + "chili", + "onion tops", + "chicken stock", + "chopped cilantro fresh", + "tomatillos" + ] + }, + { + "id": 48285, + "cuisine": "french", + "ingredients": [ + "vanilla extract", + "fat free milk", + "bittersweet chocolate", + "sugar", + "salt", + "large eggs", + "unsweetened cocoa powder" + ] + }, + { + "id": 7189, + "cuisine": "vietnamese", + "ingredients": [ + "pickled carrots", + "cilantro", + "bamboo shoots", + "pork", + "roasted rice powder", + "nuoc mam", + "sugar", + "ground black pepper", + "garlic", + "baguette", + "shallots", + "fresh pork fat" + ] + }, + { + "id": 44120, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "full fat cream cheese", + "walnuts", + "eating apple", + "cheese" + ] + }, + { + "id": 10860, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "bacon", + "green pepper", + "chopped parsley", + "unsalted butter", + "salt", + "juice", + "water", + "white cheddar cheese", + "garlic cloves", + "grits", + "green onions", + "yellow onion", + "shrimp" + ] + }, + { + "id": 48936, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "green onions", + "hot water", + "cooked chicken breasts", + "flour tortillas", + "creamy peanut butter", + "beansprouts", + "ground black pepper", + "salt", + "red bell pepper", + "shredded carrots", + "garlic chili sauce", + "fresh lime juice" + ] + }, + { + "id": 32808, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "kosher salt", + "onions", + "black pepper", + "russet potatoes", + "olive oil" + ] + }, + { + "id": 27369, + "cuisine": "indian", + "ingredients": [ + "peaches", + "curry powder", + "pineapple slices", + "light brown sugar", + "cherries", + "oleo", + "pears" + ] + }, + { + "id": 7335, + "cuisine": "chinese", + "ingredients": [ + "black peppercorns", + "silken tofu", + "chili oil", + "cilantro leaves", + "oil", + "cinnamon sticks", + "green cardamom pods", + "sugar", + "dry white wine", + "chile de arbol", + "cumin seed", + "pork shoulder boston butt", + "bay leaf", + "tomato paste", + "kosher salt", + "szechwan peppercorns", + "thai chile", + "scallions", + "low salt chicken broth", + "chopped garlic", + "fish sauce", + "whole cloves", + "ginger", + "chopped onion", + "konbu", + "fermented black beans" + ] + }, + { + "id": 20295, + "cuisine": "chinese", + "ingredients": [ + "pork belly", + "chinese five-spice powder", + "ground black pepper", + "water", + "rock salt", + "sugar", + "salt" + ] + }, + { + "id": 41832, + "cuisine": "french", + "ingredients": [ + "sourdough bread", + "purple onion", + "capers", + "roasted red peppers", + "garlic cloves", + "tomatoes", + "olive oil", + "brine-cured black olives", + "anchovies", + "solid white tuna" + ] + }, + { + "id": 38389, + "cuisine": "irish", + "ingredients": [ + "pepper", + "vegetable oil", + "salt", + "milk", + "butter", + "frozen peas and carrots", + "water", + "russet potatoes", + "ground turkey", + "chicken gravy mix", + "cooking spray", + "cheese", + "onions" + ] + }, + { + "id": 49681, + "cuisine": "italian", + "ingredients": [ + "salami", + "fresh parsley", + "breadstick", + "pickled okra", + "kalamata", + "crackers", + "roasted red peppers", + "goat cheese" + ] + }, + { + "id": 12754, + "cuisine": "indian", + "ingredients": [ + "salt", + "sugar", + "coconut milk", + "cooked rice", + "rice", + "coconut", + "yeast" + ] + }, + { + "id": 11839, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "olive oil", + "dry red wine", + "whole wheat penne", + "dried porcini mushrooms", + "finely chopped onion", + "salt", + "warm water", + "ground black pepper", + "chopped celery", + "parmigiano-reggiano cheese", + "crushed tomatoes", + "parmigiano reggiano cheese", + "carrots" + ] + }, + { + "id": 15706, + "cuisine": "british", + "ingredients": [ + "water", + "vegetable oil", + "cinnamon sticks", + "demerara sugar", + "olive oil", + "red wine", + "allspice", + "tomato purée", + "rosemary", + "red wine vinegar", + "onions", + "black pepper", + "beef", + "salt" + ] + }, + { + "id": 1995, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "green pepper", + "ziti", + "marinara sauce", + "ground beef", + "mozzarella cheese", + "brats" + ] + }, + { + "id": 42178, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "minced garlic", + "tortilla chips", + "ground cumin", + "spanish rice", + "cilantro leaves", + "sour cream", + "reduced sodium chicken broth", + "extra-virgin olive oil", + "rotisserie chicken", + "shredded cheddar cheese", + "sauce", + "onions" + ] + }, + { + "id": 33600, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "baby spinach", + "avocado", + "lime", + "taco shells", + "cilantro", + "grape tomatoes", + "center cut bacon" + ] + }, + { + "id": 5373, + "cuisine": "italian", + "ingredients": [ + "pecorino cheese", + "fusilli", + "freshly ground pepper", + "cherry tomatoes", + "extra-virgin olive oil", + "plain dry bread crumb", + "loosely packed fresh basil leaves", + "garlic cloves", + "parmigiano reggiano cheese", + "salt" + ] + }, + { + "id": 36672, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "guajillo", + "red radishes", + "ground cumin", + "clove", + "white hominy", + "garlic", + "oregano", + "avocado", + "lime", + "cilantro", + "pork shoulder", + "tostada shells", + "bay leaves", + "salt", + "cabbage" + ] + }, + { + "id": 5915, + "cuisine": "mexican", + "ingredients": [ + "cooked rice", + "chicken breasts", + "black beans", + "cream cheese", + "colby cheese", + "green enchilada sauce", + "tortillas" + ] + }, + { + "id": 35276, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "apples", + "softened butter", + "cream", + "butter", + "salt", + "hot water", + "nutmeg", + "cinnamon", + "vanilla extract", + "cinnamon sugar", + "granulated sugar", + "buttermilk", + "all-purpose flour", + "confectioners sugar" + ] + }, + { + "id": 44426, + "cuisine": "jamaican", + "ingredients": [ + "tomatoes", + "habanero pepper", + "garlic cloves", + "water", + "cilantro", + "onions", + "ketchup", + "meat", + "thyme", + "curry powder", + "scallions", + "cumin" + ] + }, + { + "id": 20991, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "white rice flour", + "butter", + "pork sausages", + "flour", + "xanthan gum", + "pepper", + "salt" + ] + }, + { + "id": 31217, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "purple onion", + "fresh cilantro", + "frozen corn", + "lime juice", + "salt", + "jalapeno chilies" + ] + }, + { + "id": 518, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "tortillas", + "yellow corn", + "ground cumin", + "low-fat cottage cheese", + "rotelle", + "red enchilada sauce", + "shredded reduced fat cheddar cheese", + "chili powder", + "garlic", + "lean ground turkey", + "garlic powder", + "reduced-fat sour cream", + "onions" + ] + }, + { + "id": 38441, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "onions", + "large eggs", + "shredded sharp cheddar cheese", + "tomatoes", + "paprika", + "cracker crumbs", + "salt" + ] + }, + { + "id": 46629, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "peeled shrimp", + "brown sugar", + "green onions", + "chicken stock", + "fresh ginger root", + "boneless pork loin", + "chinese rice wine", + "wonton wrappers" + ] + }, + { + "id": 19140, + "cuisine": "chinese", + "ingredients": [ + "fillet red snapper", + "vegetable oil", + "medium dry sherry", + "scallions", + "fresh ginger", + "salt", + "sesame oil", + "serrano chile" + ] + }, + { + "id": 27709, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "whipped topping", + "butter", + "yellow cake mix", + "peaches in heavy syrup" + ] + }, + { + "id": 6291, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "coriander powder", + "mustard oil", + "tomatoes", + "red chili peppers", + "panch phoran", + "ground cumin", + "asafoetida", + "potatoes", + "ground turmeric", + "red chili powder", + "eggplant", + "salt" + ] + }, + { + "id": 40504, + "cuisine": "british", + "ingredients": [ + "water", + "large eggs", + "salt", + "ground ginger", + "unsalted butter", + "heavy cream", + "light brown sugar", + "baking soda", + "baking powder", + "all-purpose flour", + "pitted date", + "granulated sugar", + "vanilla" + ] + }, + { + "id": 20240, + "cuisine": "mexican", + "ingredients": [ + "tortilla wraps", + "cucumber", + "avocado", + "salt", + "coriander", + "cheddar cheese", + "onions", + "tomatoes", + "lemon juice" + ] + }, + { + "id": 30291, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "granulated sugar", + "baking powder", + "salt", + "shortening", + "peaches", + "egg yolks", + "mint sprigs", + "confectioners sugar", + "toasted pecans", + "unsalted butter", + "cooking spray", + "whipping cream", + "almond liqueur", + "coarse sugar", + "ground nutmeg", + "fresh blueberries", + "buttermilk", + "all-purpose flour" + ] + }, + { + "id": 31543, + "cuisine": "italian", + "ingredients": [ + "linguine", + "plum tomatoes", + "balsamic vinegar", + "garlic cloves", + "olive oil", + "salt", + "kalamata", + "arugula" + ] + }, + { + "id": 6081, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking powder", + "okra", + "water", + "salt", + "pepper", + "vegetable oil", + "cornmeal", + "finely chopped onion", + "all-purpose flour" + ] + }, + { + "id": 42627, + "cuisine": "indian", + "ingredients": [ + "water", + "lime wedges", + "onions", + "unsweetened coconut milk", + "fresh ginger", + "salt", + "curry powder", + "vegetable oil", + "serrano chile", + "sugar", + "shell-on shrimp", + "fresh lime juice" + ] + }, + { + "id": 12482, + "cuisine": "cajun_creole", + "ingredients": [ + "white pepper", + "chile pepper", + "worcestershire sauce", + "all-purpose flour", + "celery", + "chicken stock", + "ground black pepper", + "butter", + "paprika", + "cayenne pepper", + "sliced green onions", + "diced onions", + "garlic powder", + "vegetable oil", + "diced tomatoes", + "hot sauce", + "dried oregano", + "cooked rice", + "onion powder", + "ground thyme", + "salt", + "shrimp" + ] + }, + { + "id": 41112, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "shredded mozzarella cheese", + "milk", + "casings", + "large eggs", + "red bell pepper", + "green bell pepper", + "basil leaves", + "Italian bread" + ] + }, + { + "id": 27879, + "cuisine": "moroccan", + "ingredients": [ + "eggs", + "garlic", + "ground lamb", + "bread crumbs", + "red bell pepper", + "red chili peppers", + "rice", + "chicken stock", + "moroccan seasoning", + "onions" + ] + }, + { + "id": 24123, + "cuisine": "mexican", + "ingredients": [ + "lime", + "rotisserie chicken", + "avocado", + "broccoli", + "bread", + "purple onion", + "plum tomatoes", + "pinenuts", + "sauce" + ] + }, + { + "id": 26118, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "plums", + "kale", + "ground black pepper", + "goat cheese", + "almonds", + "tamari soy sauce", + "honey", + "dijon mustard", + "lemon juice" + ] + }, + { + "id": 47179, + "cuisine": "southern_us", + "ingredients": [ + "vanilla extract", + "egg whites", + "white sugar", + "water", + "chopped walnuts", + "light corn syrup" + ] + }, + { + "id": 46054, + "cuisine": "jamaican", + "ingredients": [ + "ground black pepper", + "ground thyme", + "cayenne pepper", + "ground ginger", + "chile pepper", + "salt", + "fresh thyme", + "paprika", + "allspice", + "brown sugar", + "cinnamon", + "grated nutmeg" + ] + }, + { + "id": 1831, + "cuisine": "irish", + "ingredients": [ + "water", + "beef broth", + "cabbage", + "red potato", + "beef brisket", + "carrots", + "white vinegar", + "olive oil", + "beer", + "parsnips", + "all-purpose flour", + "onions" + ] + }, + { + "id": 38363, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "fresh basil", + "refrigerated pizza dough", + "fontina cheese", + "grated parmesan cheese", + "cherry tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 30361, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "coriander seeds", + "chili powder", + "salt", + "ghee", + "pepper", + "unsalted butter", + "ginger", + "cumin seed", + "fenugreek leaves", + "water", + "yoghurt", + "garlic", + "chopped cilantro", + "boneless chicken skinless thigh", + "garam masala", + "heavy cream", + "yellow onion" + ] + }, + { + "id": 41388, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "water", + "smoked ham hocks", + "hot pepper", + "pepper", + "field peas" + ] + }, + { + "id": 12688, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "poblano peppers", + "cinnamon", + "ground pork", + "onions", + "clove", + "jack cheese", + "flour", + "diced tomatoes", + "sauce", + "oregano", + "slivered almonds", + "jalapeno chilies", + "raisins", + "garlic", + "pimento stuffed green olives", + "chicken broth", + "cider vinegar", + "corn oil", + "cilantro", + "oil", + "cumin" + ] + }, + { + "id": 18244, + "cuisine": "cajun_creole", + "ingredients": [ + "lump crab meat", + "hot pepper sauce", + "salt", + "canola mayonnaise", + "black pepper", + "water", + "shallots", + "red bell pepper", + "fresh chives", + "panko", + "cajun seasoning", + "cream cheese, soften", + "minced garlic", + "cooking spray", + "lemon juice" + ] + }, + { + "id": 48120, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "mushrooms", + "smoked paprika", + "cheddar cheese", + "Sriracha", + "salt", + "ground cumin", + "tomatoes", + "fresh coriander", + "garlic", + "long grain white rice", + "black pepper", + "flour tortillas", + "oil" + ] + }, + { + "id": 6444, + "cuisine": "vietnamese", + "ingredients": [ + "thai basil", + "mung bean sprouts", + "kosher salt", + "scallions", + "pork", + "yellow onion", + "chopped cilantro fresh", + "fish sauce", + "meat bones", + "noodles" + ] + }, + { + "id": 47540, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "serrano peppers", + "yellow onion", + "cumin", + "chicken stock", + "flour tortillas", + "non-fat sour cream", + "chopped cilantro", + "avocado", + "ground pepper", + "butter", + "garlic cloves", + "jack cheese", + "flour", + "salt", + "cooked chicken breasts" + ] + }, + { + "id": 25668, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "nuts", + "white cake mix", + "cocktail cherries", + "milk", + "boiling water", + "white frostings", + "vegetable oil" + ] + }, + { + "id": 26566, + "cuisine": "vietnamese", + "ingredients": [ + "tomatoes", + "water", + "celery ribs", + "fish sauce", + "tamarind paste", + "mint", + "palm sugar", + "cod", + "red chili peppers", + "beansprouts" + ] + }, + { + "id": 48954, + "cuisine": "italian", + "ingredients": [ + "traditional italian sauce", + "pepperoni", + "part-skim ricotta cheese", + "bread", + "shredded mozzarella cheese" + ] + }, + { + "id": 28186, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "whole milk", + "granulated sugar", + "vanilla extract", + "unsalted butter", + "cinnamon", + "french bread" + ] + }, + { + "id": 4287, + "cuisine": "italian", + "ingredients": [ + "capers", + "garlic cloves", + "french bread", + "olive oil flavored cooking spray", + "balsamic vinegar", + "plum tomatoes", + "olive oil", + "fresh basil leaves" + ] + }, + { + "id": 39586, + "cuisine": "southern_us", + "ingredients": [ + "chile powder", + "buttermilk", + "freshly ground pepper", + "bone in skinless chicken thigh", + "sweet paprika", + "kosher salt", + "cayenne pepper", + "canola oil", + "brown sugar", + "all-purpose flour", + "smoked paprika" + ] + }, + { + "id": 33978, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "dry mustard", + "snapper fillets", + "fat free less sodium chicken broth", + "clam juice", + "salt", + "red bell pepper", + "tomato paste", + "habanero pepper", + "purple onion", + "garlic cloves", + "honey", + "chopped fresh thyme", + "yellow onion" + ] + }, + { + "id": 3577, + "cuisine": "chinese", + "ingredients": [ + "tofu", + "balsamic vinegar", + "ginger", + "Chinese egg noodles", + "organic soy sauce", + "red wine", + "roasted peanuts", + "red chili peppers", + "vegetable stock", + "garlic", + "sesame chili oil", + "szechwan peppercorns", + "sea salt", + "scallions" + ] + }, + { + "id": 30074, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "tortilla chips", + "cheese", + "chopped cilantro fresh", + "russet potatoes", + "sour cream", + "milk", + "salsa" + ] + }, + { + "id": 3381, + "cuisine": "mexican", + "ingredients": [ + "pinto beans", + "water", + "lard", + "salt" + ] + }, + { + "id": 17571, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "Shaoxing wine", + "ginger", + "corn starch", + "wide rice noodles", + "water", + "flank steak", + "oil", + "dark soy sauce", + "light soy sauce", + "sesame oil", + "oyster sauce", + "white pepper", + "green onions", + "garlic", + "beansprouts" + ] + }, + { + "id": 25556, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "ground black pepper", + "low sodium chicken broth", + "chipotle chile powder", + "cumin", + "corn kernels", + "poblano peppers", + "garlic cloves", + "onions", + "kosher salt", + "Mexican cheese blend", + "extra-virgin olive oil", + "roasted tomatoes", + "quinoa", + "jalapeno chilies", + "red bell pepper", + "dried oregano" + ] + }, + { + "id": 27111, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "ground black pepper", + "roasting chickens", + "onions", + "beans", + "instant chicken bouillon granules", + "thyme", + "black peppercorns", + "potatoes", + "carrots", + "turnips", + "water", + "salt", + "chopped parsley" + ] + }, + { + "id": 40146, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "balsamic vinegar", + "red bell pepper", + "bay leaves", + "garlic cloves", + "water", + "purple onion", + "butter beans", + "olive oil", + "salt" + ] + }, + { + "id": 49360, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "marinara sauce", + "mozzarella cheese", + "flat leaf parsley", + "french baguette", + "sweet italian sausage", + "grated parmesan cheese" + ] + }, + { + "id": 37268, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "salt", + "ginger root", + "water", + "rice wine", + "duck", + "five-spice powder", + "caster sugar", + "bean paste", + "rice vinegar", + "onions", + "honey", + "red", + "oil" + ] + }, + { + "id": 40195, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "creole seasoning", + "red bell pepper", + "celery ribs", + "olive oil", + "garlic cloves", + "vegetable bouillon cube", + "water", + "long-grain rice", + "onions", + "red kidney beans", + "salt", + "smoked paprika", + "sliced green onions" + ] + }, + { + "id": 319, + "cuisine": "irish", + "ingredients": [ + "club soda", + "lime", + "ice cubes", + "Irish whiskey" + ] + }, + { + "id": 44053, + "cuisine": "italian", + "ingredients": [ + "water", + "raisins", + "sugar", + "red wine vinegar", + "hot water", + "ground black pepper", + "salt", + "pinenuts", + "butter", + "onions" + ] + }, + { + "id": 12313, + "cuisine": "southern_us", + "ingredients": [ + "garlic", + "collards", + "pepper", + "bacon fat", + "salt", + "smoked ham hocks", + "water", + "yellow onion" + ] + }, + { + "id": 10830, + "cuisine": "indian", + "ingredients": [ + "lime", + "green chile", + "cilantro leaves", + "mint leaves", + "salt" + ] + }, + { + "id": 39860, + "cuisine": "mexican", + "ingredients": [ + "chili", + "tortilla chips", + "black olives", + "shredded cheddar cheese", + "chunky salsa" + ] + }, + { + "id": 10412, + "cuisine": "korean", + "ingredients": [ + "sugar", + "rice vinegar", + "canola oil", + "sesame seeds", + "carrots", + "minced garlic", + "dark sesame oil", + "low sodium soy sauce", + "ground red pepper", + "cucumber" + ] + }, + { + "id": 8926, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "capers", + "lemon", + "tuna", + "grated parmesan cheese", + "fresh lemon juice", + "olive oil", + "large garlic cloves", + "flat leaf parsley" + ] + }, + { + "id": 9012, + "cuisine": "french", + "ingredients": [ + "calvados", + "bacon", + "all-purpose flour", + "ground black pepper", + "giblet", + "garlic", + "chicken stock", + "mushrooms", + "sea salt", + "ham", + "unsalted butter", + "red wine", + "bouquet garni" + ] + }, + { + "id": 49024, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "low-fat buttermilk", + "lemon juice", + "ground black pepper", + "boneless skinless chicken breasts", + "olive oil", + "lemon zest", + "chopped pecans", + "tomatoes", + "peaches", + "salsa" + ] + }, + { + "id": 2736, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "large garlic cloves", + "garlic cloves", + "free-range chickens", + "artichokes", + "coarse kosher salt", + "ground black pepper", + "extra-virgin olive oil", + "fresh lemon juice", + "olive oil", + "lemon", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 9063, + "cuisine": "mexican", + "ingredients": [ + "sliced black olives", + "grating cheese", + "black pepper", + "large flour tortillas", + "fresh basil", + "pizza sauce", + "medium tomatoes", + "portabello mushroom" + ] + }, + { + "id": 13189, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "cumin", + "celery ribs", + "enchilada sauce", + "chili powder", + "chicken", + "tomatoes", + "onions" + ] + }, + { + "id": 30720, + "cuisine": "mexican", + "ingredients": [ + "chunky mild salsa", + "Mexican cheese blend", + "chopped cilantro fresh", + "nonstick spray", + "vermicelli", + "cooked chicken breasts" + ] + }, + { + "id": 30577, + "cuisine": "french", + "ingredients": [ + "nutmeg", + "vanilla extract", + "pears", + "large eggs", + "salt", + "sugar", + "1% low-fat milk", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 38988, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "basil leaves", + "cilantro leaves", + "sweet chili sauce", + "vegetable oil", + "red chili peppers", + "rice noodles", + "beansprouts", + "lime", + "sirloin steak" + ] + }, + { + "id": 8511, + "cuisine": "mexican", + "ingredients": [ + "whole milk", + "yellow onion", + "monterey jack", + "unsalted butter", + "garlic", + "chopped cilantro", + "cheddar cheese", + "diced tomatoes", + "sour cream", + "jalapeno chilies", + "all-purpose flour", + "serrano chile" + ] + }, + { + "id": 47251, + "cuisine": "spanish", + "ingredients": [ + "salt", + "baby potatoes", + "olive oil", + "dried oregano", + "orange", + "chicken thighs", + "purple onion", + "chorizo sausage" + ] + }, + { + "id": 49065, + "cuisine": "irish", + "ingredients": [ + "butter", + "light cream", + "scallions", + "kosher salt", + "cracked black pepper", + "russet potatoes" + ] + }, + { + "id": 34133, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "hass avocado", + "jalapeno chilies", + "white onion", + "chopped cilantro fresh", + "coarse salt" + ] + }, + { + "id": 29320, + "cuisine": "greek", + "ingredients": [ + "eggplant", + "butter", + "garlic cloves", + "dried oregano", + "crushed tomatoes", + "grated parmesan cheese", + "chopped celery", + "flat leaf parsley", + "olive oil", + "whole milk", + "all-purpose flour", + "onions", + "ground cinnamon", + "large egg yolks", + "portabello mushroom", + "carrots" + ] + }, + { + "id": 39201, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "tortilla chips", + "American cheese" + ] + }, + { + "id": 48888, + "cuisine": "mexican", + "ingredients": [ + "tostadas", + "salt", + "fresh lime juice", + "ketchup", + "lime slices", + "cucumber", + "avocado", + "white onion", + "hot sauce", + "chopped cilantro fresh", + "saltines", + "olive oil", + "shrimp" + ] + }, + { + "id": 46980, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "chile pepper", + "all-purpose flour", + "pork stew meat", + "onion salt", + "garlic salt", + "water", + "vegetable oil", + "onions", + "tomato sauce", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 39754, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "garlic", + "mushrooms", + "scallions", + "cooking oil", + "salt", + "monkfish fillets", + "heavy cream" + ] + }, + { + "id": 41597, + "cuisine": "italian", + "ingredients": [ + "Alfredo sauce", + "tilapia fillets", + "garlic", + "butter", + "olive oil", + "creole seasoning" + ] + }, + { + "id": 34660, + "cuisine": "japanese", + "ingredients": [ + "olive oil", + "ume plum vinegar", + "fillets", + "agave nectar", + "salmon" + ] + }, + { + "id": 13830, + "cuisine": "southern_us", + "ingredients": [ + "dry mustard", + "whole cloves", + "dark brown sugar", + "bourbon whiskey", + "smoked fully cooked ham", + "navel oranges" + ] + }, + { + "id": 10260, + "cuisine": "southern_us", + "ingredients": [ + "dry white wine", + "bacon", + "pepper", + "butter", + "garlic cloves", + "tomatoes", + "shallots", + "salt", + "green onions", + "fresh green bean", + "shrimp" + ] + }, + { + "id": 28218, + "cuisine": "italian", + "ingredients": [ + "whipping cream", + "blackberries", + "sugar", + "crème fraîche", + "hazelnuts", + "Frangelico", + "unflavored gelatin", + "vanilla extract" + ] + }, + { + "id": 22294, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "lime", + "peanut oil", + "boneless chicken skinless thigh", + "sesame seeds", + "onions", + "red chili peppers", + "superfine sugar", + "garlic cloves", + "chicken stock", + "lemongrass", + "amaranth" + ] + }, + { + "id": 30092, + "cuisine": "mexican", + "ingredients": [ + "lime rind", + "ground black pepper", + "corn tortillas", + "grated orange", + "sugar", + "halibut fillets", + "tequila", + "arugula", + "chipotle chile", + "salt", + "fresh lime juice", + "warm water", + "olive oil", + "reduced fat mayonnaise", + "chopped cilantro fresh" + ] + }, + { + "id": 37546, + "cuisine": "filipino", + "ingredients": [ + "shrimp paste", + "coconut cream", + "onions", + "crab", + "garlic", + "oil", + "mussels", + "ginger", + "squid", + "pepper", + "salt", + "shrimp" + ] + }, + { + "id": 40071, + "cuisine": "italian", + "ingredients": [ + "walnuts", + "pecorino romano cheese", + "extra-virgin olive oil", + "Belgian endive" + ] + }, + { + "id": 5154, + "cuisine": "southern_us", + "ingredients": [ + "ground ginger", + "kosher salt", + "ground black pepper", + "root beer", + "whiskey", + "celery salt", + "brown sugar", + "olive oil", + "onion powder", + "dry mustard", + "light brown sugar", + "hamburger buns", + "ground nutmeg", + "balsamic vinegar", + "garlic salt", + "ground cinnamon", + "pork shoulder roast", + "barbecue sauce", + "paprika" + ] + }, + { + "id": 36977, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "fresh tarragon", + "clams", + "dry white wine", + "linguine", + "crusty bread", + "red pepper flakes", + "garlic", + "beefsteak tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 38271, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "brown lentils", + "onions", + "greek seasoning", + "vegetable stock", + "red bell pepper", + "ground black pepper", + "feta cheese crumbles", + "oregano", + "green bell pepper", + "stewed tomatoes", + "bay leaf" + ] + }, + { + "id": 36391, + "cuisine": "spanish", + "ingredients": [ + "potatoes", + "green pepper", + "white wine vinegar", + "onions", + "red pepper", + "garlic cloves", + "olive oil", + "salt" + ] + }, + { + "id": 24727, + "cuisine": "italian", + "ingredients": [ + "crusty bread", + "dry white wine", + "onions", + "pepper", + "thyme", + "italian sausage", + "olive oil", + "red bell pepper", + "kosher salt", + "garlic", + "polenta" + ] + }, + { + "id": 14598, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "chicken breast halves", + "salt", + "ground cumin", + "green chile", + "fresh cilantro", + "diced tomatoes", + "garlic salt", + "red potato", + "water", + "sliced carrots", + "chopped onion", + "reduced fat sharp cheddar cheese", + "bay leaves", + "paprika", + "nonfat evaporated milk" + ] + }, + { + "id": 17822, + "cuisine": "korean", + "ingredients": [ + "salt", + "cucumber", + "pickled radish", + "english cucumber", + "lobster", + "rice", + "toasted sesame seeds", + "sesame oil", + "carrots" + ] + }, + { + "id": 37368, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "bay leaves", + "butter", + "chopped onion", + "andouille sausage links", + "kosher salt", + "Tabasco Pepper Sauce", + "large garlic cloves", + "diced celery", + "green bell pepper", + "green onions", + "ground thyme", + "long-grain rice", + "tomato paste", + "crawfish", + "vegetable oil", + "stewed tomatoes" + ] + }, + { + "id": 18258, + "cuisine": "japanese", + "ingredients": [ + "tobiko", + "abura age", + "sugar", + "salt", + "sushi rice", + "rice vinegar" + ] + }, + { + "id": 19711, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "grated parmesan cheese", + "salt", + "corn", + "fresh thyme leaves", + "ground black pepper", + "butter", + "chicken broth", + "shallots" + ] + }, + { + "id": 49098, + "cuisine": "spanish", + "ingredients": [ + "granny smith apples", + "red wine", + "peaches", + "white sugar", + "bananas", + "cinnamon sticks", + "lemon-lime soda" + ] + }, + { + "id": 27965, + "cuisine": "mexican", + "ingredients": [ + "poblano peppers", + "cointreau", + "blackberries", + "silver tequila" + ] + }, + { + "id": 19758, + "cuisine": "japanese", + "ingredients": [ + "tumeric", + "vegetable oil", + "cumin seed", + "coriander", + "tomatoes", + "water", + "salt", + "lemon juice", + "frozen chopped spinach", + "tomato sauce", + "channa dal", + "garlic cloves", + "red chili powder", + "garam masala", + "green chilies", + "onions" + ] + }, + { + "id": 34180, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "cayenne", + "salt", + "chopped cilantro", + "fresh ginger", + "garlic", + "lemon juice", + "ground cumin", + "tumeric", + "cooking oil", + "okra", + "onions", + "water", + "diced tomatoes", + "ground coriander", + "frozen peas" + ] + }, + { + "id": 11321, + "cuisine": "spanish", + "ingredients": [ + "egg yolks", + "warm water", + "golden syrup", + "vanilla extract", + "milk" + ] + }, + { + "id": 5465, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime juice", + "broccoli florets", + "cilantro", + "unsweetened coconut milk", + "chili pepper", + "roma tomatoes", + "spring onions", + "galangal", + "brown sugar", + "lemongrass", + "mushrooms", + "carrots", + "tofu", + "water", + "pumpkin purée", + "sea salt", + "onions" + ] + }, + { + "id": 43490, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "salt", + "melted fat", + "baking powder", + "chopped onion", + "flour", + "cayenne pepper", + "sugar", + "beaten eggs", + "cornmeal" + ] + }, + { + "id": 44994, + "cuisine": "filipino", + "ingredients": [ + "water", + "butter", + "cheddar cheese", + "flour", + "eggs", + "evaporated milk", + "vanilla extract", + "sugar", + "baking powder" + ] + }, + { + "id": 37754, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "chopped fresh thyme", + "low salt chicken broth", + "kale", + "apple cider vinegar", + "salt", + "corn bread", + "ground black pepper", + "bacon", + "chopped pecans", + "sweet potatoes & yams", + "large eggs", + "dry mustard", + "onions" + ] + }, + { + "id": 43541, + "cuisine": "mexican", + "ingredients": [ + "red snapper", + "olive oil", + "sour cream", + "fresh cilantro", + "red bell pepper", + "mozzarella cheese", + "pineapple", + "green bell pepper", + "flour tortillas", + "onions" + ] + }, + { + "id": 12609, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "corn tortillas", + "mayonaise", + "salsa", + "shredded sharp cheddar cheese", + "olive oil", + "hot sauce" + ] + }, + { + "id": 41591, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "celery seed", + "green cabbage", + "vegetable oil", + "apple cider vinegar", + "onions", + "sugar", + "carrots" + ] + }, + { + "id": 38857, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "ground beef", + "avocado", + "tortilla chips", + "iceberg lettuce", + "cherry tomatoes", + "onions", + "taco sauce", + "sour cream" + ] + }, + { + "id": 32161, + "cuisine": "moroccan", + "ingredients": [ + "salt and ground black pepper", + "chickpeas", + "chopped cilantro fresh", + "green onions", + "carrots", + "ground cumin", + "feta cheese", + "fresh lemon juice", + "plum tomatoes", + "olive oil", + "cayenne pepper", + "red bell pepper" + ] + }, + { + "id": 48399, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "roasting chickens", + "onions", + "lime rind", + "salt", + "chipotle chile powder", + "green chile", + "butter", + "fresh lime juice", + "ground cumin", + "tomatillos", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 29200, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "prosciutto", + "dry bread crumbs", + "olive oil", + "dry white wine", + "low salt chicken broth", + "rosemary sprigs", + "minced onion", + "garlic cloves", + "fresh parmesan cheese", + "chicken breast halves" + ] + }, + { + "id": 14505, + "cuisine": "mexican", + "ingredients": [ + "zucchini", + "frozen corn", + "chopped cilantro", + "black beans", + "sea salt", + "enchilada sauce", + "white corn tortillas", + "chili powder", + "yellow onion", + "ground cumin", + "garlic powder", + "shredded pepper jack cheese", + "red bell pepper" + ] + }, + { + "id": 27691, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "chopped onion", + "tomatoes", + "cooking spray", + "dried oregano", + "chopped green bell pepper", + "Italian turkey sausage", + "minced garlic", + "cannellini beans" + ] + }, + { + "id": 27794, + "cuisine": "italian", + "ingredients": [ + "unsalted margarine", + "all-purpose flour", + "eggs", + "ground cinnamon", + "white sugar", + "baking powder" + ] + }, + { + "id": 40544, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "kosher salt", + "jalapeno chilies", + "chopped onion", + "crab", + "ground black pepper", + "large garlic cloves", + "iceberg lettuce", + "jack cheese", + "olive oil", + "green onions", + "fresh lime juice", + "taco shells", + "roma tomatoes", + "cilantro leaves" + ] + }, + { + "id": 29759, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "arugula", + "portabello mushroom", + "orecchiette", + "large garlic cloves", + "plum tomatoes", + "olive oil", + "brie cheese" + ] + }, + { + "id": 5377, + "cuisine": "italian", + "ingredients": [ + "pepper", + "extra-virgin olive oil", + "bass fillets", + "clams", + "dry white wine", + "salt", + "mussels", + "shallots", + "garlic cloves", + "halibut fillets", + "crushed red pepper", + "flat leaf parsley" + ] + }, + { + "id": 30112, + "cuisine": "mexican", + "ingredients": [ + "orange", + "mirin", + "scallions", + "kosher salt", + "ground black pepper", + "kiwi fruits", + "skirt steak", + "sugar", + "lime", + "ancho powder", + "onions", + "Budweiser", + "fresh cilantro", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 21992, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "dry sherry", + "peanut oil", + "tomatoes", + "sesame seeds", + "maple syrup", + "boneless skinless chicken breast halves", + "red leaf lettuce", + "salt", + "chinese five-spice powder", + "soy sauce", + "fresh ginger root", + "all-purpose flour" + ] + }, + { + "id": 9210, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "juice", + "cooked rice", + "sesame oil", + "eggs", + "spring onions", + "cabbage", + "black pepper", + "bacon slices" + ] + }, + { + "id": 29946, + "cuisine": "southern_us", + "ingredients": [ + "green chile", + "whole milk", + "sharp cheddar cheese", + "unsalted butter", + "salt", + "ground black pepper", + "green onions", + "grits", + "grated parmesan cheese", + "cilantro leaves" + ] + }, + { + "id": 42575, + "cuisine": "italian", + "ingredients": [ + "veal stock", + "low salt chicken broth", + "grated parmesan cheese", + "fettucine", + "sage leaves", + "butter" + ] + }, + { + "id": 31008, + "cuisine": "french", + "ingredients": [ + "hot smoked paprika", + "ground black pepper", + "asparagus spears", + "fresh lemon juice", + "salt", + "beef tenderloin steaks" + ] + }, + { + "id": 2132, + "cuisine": "french", + "ingredients": [ + "milk", + "salt", + "pepper", + "cheese", + "eggs", + "bacon", + "cream", + "paprika" + ] + }, + { + "id": 20301, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "salt", + "chopped fresh chives", + "freshly ground pepper", + "half & half", + "fresh oregano", + "grape tomatoes", + "cheese", + "fresh parsley" + ] + }, + { + "id": 25647, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "crushed red pepper flakes", + "snow peas", + "ground black pepper", + "vegetable oil", + "corn starch", + "water", + "sesame oil", + "firm tofu", + "chicken broth", + "water chestnuts", + "red wine vinegar", + "red bell pepper" + ] + }, + { + "id": 400, + "cuisine": "british", + "ingredients": [ + "baking soda", + "butter", + "chopped hazelnuts", + "sour cream", + "large eggs", + "all-purpose flour", + "brown sugar", + "cinnamon" + ] + }, + { + "id": 42396, + "cuisine": "chinese", + "ingredients": [ + "szechwan peppercorns", + "scallions", + "cold water", + "salt", + "oil", + "star anise", + "chinese five-spice powder", + "sesame seeds", + "all-purpose flour", + "boiling water" + ] + }, + { + "id": 4758, + "cuisine": "italian", + "ingredients": [ + "fettuccine pasta", + "grated parmesan cheese", + "salt", + "olive oil", + "chicken breasts", + "kefir", + "flour", + "garlic cloves", + "chicken broth", + "ground pepper", + "basil" + ] + }, + { + "id": 37432, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "asparagus", + "garlic cloves", + "olive oil", + "salt", + "water", + "cooking spray", + "ground black pepper", + "lemon rind" + ] + }, + { + "id": 28405, + "cuisine": "chinese", + "ingredients": [ + "fresh shiitake mushrooms", + "chinese five-spice powder", + "peeled fresh ginger", + "top sirloin steak", + "snow peas", + "green onions", + "cilantro leaves", + "hoisin sauce", + "sesame oil", + "garlic chili sauce" + ] + }, + { + "id": 9562, + "cuisine": "italian", + "ingredients": [ + "rosemary", + "sausages", + "olive oil", + "cherry tomatoes", + "flat leaf parsley", + "penne", + "chestnut mushrooms" + ] + }, + { + "id": 22724, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "large eggs", + "grated lemon peel", + "olive oil", + "truffle oil", + "all-purpose flour", + "black truffles", + "ground black pepper", + "whole milk ricotta cheese", + "water", + "unsalted butter", + "salt" + ] + }, + { + "id": 2467, + "cuisine": "italian", + "ingredients": [ + "ground round", + "water", + "garlic", + "bay leaf", + "tomato paste", + "seasoned bread crumbs", + "olive oil", + "fresh oregano", + "spaghetti", + "sugar", + "crushed tomatoes", + "salt", + "fresh parsley", + "eggs", + "pepper", + "grated parmesan cheese", + "chopped onion" + ] + }, + { + "id": 17589, + "cuisine": "thai", + "ingredients": [ + "seasoning", + "cilantro sprigs", + "chopped cilantro fresh", + "water", + "oyster sauce", + "lean ground pork", + "chinese cabbage", + "large garlic cloves", + "beansprouts" + ] + }, + { + "id": 45472, + "cuisine": "brazilian", + "ingredients": [ + "juice", + "frozen strawberries" + ] + }, + { + "id": 21080, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "cream cheese", + "powdered sugar", + "vanilla extract" + ] + }, + { + "id": 30731, + "cuisine": "spanish", + "ingredients": [ + "arborio rice", + "hungarian paprika", + "purple onion", + "boneless skinless chicken breast halves", + "mussels", + "olive oil", + "yellow bell pepper", + "flat leaf parsley", + "tomatoes", + "fennel bulb", + "salt", + "large shrimp", + "saffron threads", + "black pepper", + "low sodium chicken broth", + "garlic cloves", + "chorizo sausage" + ] + }, + { + "id": 35259, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "salt", + "arborio rice", + "extra-virgin olive oil", + "parmagiano reggiano", + "dry white wine", + "beef broth", + "dried porcini mushrooms", + "garlic", + "flat leaf parsley" + ] + }, + { + "id": 15657, + "cuisine": "japanese", + "ingredients": [ + "sake", + "cooking oil", + "fresh ginger root", + "white sugar", + "soy sauce", + "garlic", + "mirin", + "chicken" + ] + }, + { + "id": 764, + "cuisine": "japanese", + "ingredients": [ + "rice", + "dal", + "ginger", + "oil", + "spinach", + "green chilies", + "green gram", + "salt", + "asafetida powder" + ] + }, + { + "id": 43044, + "cuisine": "indian", + "ingredients": [ + "chicken breasts", + "low-fat yogurt", + "tandoori spices", + "ginger", + "ground turmeric", + "red chili powder", + "cracked black pepper", + "methi", + "coriander powder", + "meat tenderizer", + "saffron" + ] + }, + { + "id": 6442, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "grated lemon zest", + "low-fat plain yogurt", + "garlic", + "fresh lemon juice", + "extra-virgin olive oil", + "english cucumber", + "fresh dill", + "salt" + ] + }, + { + "id": 7979, + "cuisine": "greek", + "ingredients": [ + "dried lentils", + "ground black pepper", + "grated lemon zest", + "thyme", + "pitted kalamata olives", + "extra-virgin olive oil", + "fresh lemon juice", + "plum tomatoes", + "rosemary sprigs", + "green onions", + "garlic cloves", + "fresh parsley", + "water", + "salt", + "carrots", + "dried oregano" + ] + }, + { + "id": 41989, + "cuisine": "southern_us", + "ingredients": [ + "cayenne pepper", + "coarse salt", + "water", + "grits", + "white cheddar cheese" + ] + }, + { + "id": 18793, + "cuisine": "irish", + "ingredients": [ + "smoked salmon", + "cooking spray", + "salt", + "olive oil", + "butter", + "fat free milk", + "white cheddar cheese", + "black pepper", + "yukon gold potatoes" + ] + }, + { + "id": 29449, + "cuisine": "russian", + "ingredients": [ + "potatoes", + "onions", + "pepper", + "salt", + "water", + "fresh parsley", + "fish fillets", + "lemon" + ] + }, + { + "id": 14078, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "navel oranges", + "sweetened condensed milk", + "ground cinnamon", + "sweet potatoes", + "ground allspice", + "ground nutmeg", + "vanilla extract", + "orange zest", + "mini marshmallows", + "salt" + ] + }, + { + "id": 24696, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "vodka", + "fresh ginger", + "egg whites", + "scallions", + "sugar", + "store bought low sodium chicken stock", + "baking soda", + "Shaoxing wine", + "corn starch", + "chiles", + "kosher salt", + "peanuts", + "flour", + "oil", + "boneless chicken skinless thigh", + "minced garlic", + "steamed white rice", + "baking powder", + "Chinese rice vinegar" + ] + }, + { + "id": 15132, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "whole milk", + "rennet", + "cold water", + "citric acid" + ] + }, + { + "id": 4964, + "cuisine": "southern_us", + "ingredients": [ + "turnip greens", + "lemon pepper", + "turnips", + "bacon", + "hot pepper sauce", + "onions", + "sugar", + "salt" + ] + }, + { + "id": 34788, + "cuisine": "cajun_creole", + "ingredients": [ + "parsley flakes", + "pepper", + "dri leav thyme", + "pepper sauce", + "smoked sausage", + "medium shrimp", + "cooked rice", + "diced tomatoes", + "garlic cloves", + "celery ribs", + "green bell pepper", + "salt", + "onions" + ] + }, + { + "id": 2176, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "fresh ginger", + "ground pork", + "carrots", + "savoy cabbage", + "minced garlic", + "green onions", + "rice vinegar", + "rice paper", + "ground chicken", + "peanuts", + "salt", + "canola oil", + "bean threads", + "honey", + "red pepper flakes", + "cayenne pepper" + ] + }, + { + "id": 14940, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "jicama", + "chopped cilantro fresh", + "radishes", + "fresh lemon juice", + "nonfat yogurt", + "cilantro sprigs", + "ground cumin", + "green onions", + "carrots" + ] + }, + { + "id": 18957, + "cuisine": "thai", + "ingredients": [ + "tapioca flour", + "salt", + "white sugar", + "flaked coconut", + "coconut milk", + "bananas", + "coconut cream", + "arrowroot starch", + "rice flour" + ] + }, + { + "id": 37413, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "salt", + "half & half", + "bacon", + "white cornmeal", + "sugar", + "vegetable oil", + "softened butter", + "green onions", + "shredded sharp cheddar cheese", + "boiling water" + ] + }, + { + "id": 4584, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon juice", + "water", + "salt", + "chicken", + "lemon zest", + "dried rosemary", + "ground black pepper", + "onions" + ] + }, + { + "id": 9318, + "cuisine": "spanish", + "ingredients": [ + "water", + "cannellini beans", + "Italian turkey sausage", + "olive oil", + "salt", + "fat free less sodium chicken broth", + "sweet potatoes", + "chopped onion", + "kale", + "crushed red pepper", + "garlic cloves" + ] + }, + { + "id": 39892, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "lettuce leaves", + "worcestershire sauce", + "large shrimp", + "creole mustard", + "prepared horseradish", + "red wine vinegar", + "onions", + "tomatoes", + "green onions", + "paprika", + "ketchup", + "vegetable oil", + "flat leaf parsley" + ] + }, + { + "id": 7829, + "cuisine": "french", + "ingredients": [ + "vegetable oil", + "fine sea salt", + "russet potatoes" + ] + }, + { + "id": 10759, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "green onions", + "chopped celery", + "fresh parsley leaves", + "chicken broth", + "ground black pepper", + "vegetable oil", + "yellow onion", + "long grain white rice", + "cooked ham", + "Tabasco Pepper Sauce", + "salt", + "medium shrimp", + "tomatoes", + "cayenne", + "fryer chickens", + "garlic cloves" + ] + }, + { + "id": 36417, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "peanuts", + "urad dal", + "oil", + "cumin", + "tumeric", + "coriander powder", + "green chilies", + "lemon juice", + "mustard", + "grated coconut", + "chana dal", + "okra", + "onions", + "red chili powder", + "garam masala", + "salt", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 20980, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "bay leaves", + "salt", + "grits", + "chicken broth", + "parmesan cheese", + "lemon", + "chopped parsley", + "chicken stock", + "olive oil", + "green onions", + "shrimp", + "spicy sausage", + "flour", + "garlic", + "onions" + ] + }, + { + "id": 33540, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "vegetable oil", + "large eggs", + "all-purpose flour", + "baking powder", + "milk", + "salt" + ] + }, + { + "id": 24473, + "cuisine": "southern_us", + "ingredients": [ + "oysters", + "cooking spray", + "chopped onion", + "sliced green onions", + "fat free less sodium chicken broth", + "ground black pepper", + "salt", + "bay leaf", + "lump crab meat", + "chopped green bell pepper", + "all-purpose flour", + "nonfat evaporated milk", + "black pepper", + "dried thyme", + "chopped celery", + "garlic cloves" + ] + }, + { + "id": 13981, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "butter", + "onions", + "parsley sprigs", + "cooking spray", + "garlic cloves", + "black pepper", + "baking potatoes", + "fresh parsley", + "white bread", + "reduced fat milk", + "salt" + ] + }, + { + "id": 42981, + "cuisine": "brazilian", + "ingredients": [ + "whole milk", + "sugar", + "condensed milk", + "eggs", + "vanilla extract", + "water" + ] + }, + { + "id": 9936, + "cuisine": "chinese", + "ingredients": [ + "water", + "fresh green bean", + "brown sugar", + "sesame oil", + "garlic cloves", + "fresh ginger root", + "crushed red pepper flakes", + "soy sauce", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 8419, + "cuisine": "greek", + "ingredients": [ + "pita wedges", + "zucchini", + "red bell pepper", + "kosher salt", + "extra-virgin olive oil", + "hummus", + "fresh oregano leaves", + "lemon", + "golden zucchini", + "minced garlic", + "purple onion", + "olives" + ] + }, + { + "id": 21530, + "cuisine": "thai", + "ingredients": [ + "asparagus", + "boneless skinless chicken breast halves", + "water", + "green onions", + "jasmine rice", + "shredded carrots", + "snow peas", + "curry powder", + "light coconut milk" + ] + }, + { + "id": 5117, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "salt", + "fresh lemon juice", + "ground cumin", + "plain low-fat yogurt", + "peeled fresh ginger", + "ground coriander", + "ground turmeric", + "boneless chicken skinless thigh", + "ground red pepper", + "garlic cloves", + "canola oil", + "hungarian sweet paprika", + "cooking spray", + "chopped onion", + "serrano chile" + ] + }, + { + "id": 17805, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "corn flour", + "sake", + "ginger", + "eggs", + "flour", + "chicken thighs", + "soy sauce", + "garlic" + ] + }, + { + "id": 3858, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "tahini", + "fresh tarragon", + "fresh lemon juice", + "honey", + "lemon", + "garlic cloves", + "ceci bean", + "kosher salt", + "balsamic vinegar", + "purple onion", + "flat leaf parsley", + "olive oil", + "red pepper flakes", + "toasted pine nuts" + ] + }, + { + "id": 45725, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "tomato sauce", + "dry red wine", + "fresh oregano", + "ripe olives", + "ground round", + "minced garlic", + "crushed red pepper", + "fresh mushrooms", + "fresh parsley", + "fresh basil", + "sugar", + "chopped celery", + "green pepper", + "bay leaf", + "tomato paste", + "vegetable oil cooking spray", + "grated parmesan cheese", + "salt", + "carrots", + "spaghetti" + ] + }, + { + "id": 32223, + "cuisine": "southern_us", + "ingredients": [ + "whipping cream", + "quickcooking grits", + "butter", + "chicken stock" + ] + }, + { + "id": 9444, + "cuisine": "italian", + "ingredients": [ + "dry yeast", + "extra-virgin olive oil", + "sea salt", + "water", + "all-purpose flour" + ] + }, + { + "id": 33215, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "baking soda", + "buttermilk", + "kosher salt", + "baking powder", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 11641, + "cuisine": "italian", + "ingredients": [ + "eggs", + "butter", + "cream cheese", + "unsweetened cocoa powder", + "shredded coconut", + "vanilla extract", + "confectioners sugar", + "shortening", + "buttermilk", + "chopped pecans", + "baking soda", + "all-purpose flour", + "white sugar" + ] + }, + { + "id": 26791, + "cuisine": "british", + "ingredients": [ + "golden brown sugar", + "dried apricot", + "all-purpose flour", + "unsalted butter", + "vanilla extract", + "large eggs", + "salt", + "baking soda", + "baking powder", + "sour cream" + ] + }, + { + "id": 36866, + "cuisine": "mexican", + "ingredients": [ + "large flour tortillas", + "shredded cheddar cheese", + "red enchilada sauce", + "stew meat", + "beef stock cubes", + "refried beans" + ] + }, + { + "id": 44008, + "cuisine": "mexican", + "ingredients": [ + "Mexican oregano", + "chopped cilantro", + "tequila", + "garlic", + "ground cumin", + "ground black pepper", + "fresh lime juice" + ] + }, + { + "id": 1035, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "sausages", + "fresh basil", + "cooking spray", + "dough", + "fresh parmesan cheese", + "black pepper", + "diced tomatoes" + ] + }, + { + "id": 27496, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "water", + "flour", + "garlic", + "ground beef", + "pie crust", + "sugar", + "meat filling", + "ice water", + "oil", + "tomato sauce", + "milk", + "butter", + "salt", + "onions", + "frozen sweet peas", + "pepper", + "potatoes", + "raisins", + "carrots" + ] + }, + { + "id": 34319, + "cuisine": "japanese", + "ingredients": [ + "crab meat", + "sushi rice", + "dry sherry", + "nori sheets", + "sugar", + "water", + "rice vinegar", + "avocado", + "gari", + "salt", + "cucumber", + "wasabi", + "soy sauce", + "short-grain rice", + "fresh lemon juice" + ] + }, + { + "id": 40288, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "onions", + "eggs", + "jalapeno chilies", + "garlic cloves", + "ground black pepper", + "taco seasoning", + "pie dough", + "diced tomatoes", + "ground beef" + ] + }, + { + "id": 18075, + "cuisine": "korean", + "ingredients": [ + "mild pork sausage", + "green onions", + "large eggs", + "dipping sauces", + "granulated sugar", + "ice water", + "white flour", + "cooking oil", + "kimchi" + ] + }, + { + "id": 8065, + "cuisine": "cajun_creole", + "ingredients": [ + "creole mustard", + "paprika", + "mayonaise", + "lemon juice", + "horseradish", + "garlic cloves", + "green onions", + "fresh parsley" + ] + }, + { + "id": 9833, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "diced tomatoes", + "freshly ground pepper", + "roasted red peppers", + "yellow onion", + "chicken thighs", + "olive oil", + "salt", + "juice", + "saffron threads", + "large garlic cloves", + "fresh oregano", + "long grain white rice" + ] + }, + { + "id": 24339, + "cuisine": "italian", + "ingredients": [ + "crushed cornflakes", + "ground black pepper", + "cooking spray", + "italian seasoning", + "large egg whites", + "extra firm tofu", + "crushed red pepper", + "water", + "minced onion", + "vegetable oil", + "fresh parmesan cheese", + "marinara sauce", + "salt" + ] + }, + { + "id": 4707, + "cuisine": "mexican", + "ingredients": [ + "vegetable juice", + "chili powder", + "chicken thighs", + "green bell pepper", + "water", + "salt", + "ground cumin", + "picante sauce", + "chicken drumsticks", + "dried oregano", + "sugar", + "cooking spray", + "onions" + ] + }, + { + "id": 7902, + "cuisine": "british", + "ingredients": [ + "light brown sugar", + "bread dough", + "navel oranges", + "unsalted butter", + "mincemeat" + ] + }, + { + "id": 27177, + "cuisine": "italian", + "ingredients": [ + "sugar", + "lasagna noodles", + "extra-virgin olive oil", + "garlic cloves", + "black pepper", + "whole milk", + "all-purpose flour", + "hot water", + "fresh basil", + "unsalted butter", + "diced tomatoes", + "chopped onion", + "dried porcini mushrooms", + "parmigiano reggiano cheese", + "salt", + "juice" + ] + }, + { + "id": 21233, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "low salt chicken broth", + "whipping cream", + "fresh parsley", + "fresh spinach", + "crumbled gorgonzola", + "garlic cloves", + "polenta" + ] + }, + { + "id": 340, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh basil leaves", + "tomatoes", + "garlic", + "chili flakes", + "onions", + "dry red wine", + "pears" + ] + }, + { + "id": 38654, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "chopped fresh chives", + "olive oil", + "pecorino romano cheese", + "zucchini", + "salt", + "large eggs" + ] + }, + { + "id": 19761, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "buttermilk", + "cheddar cheese", + "green onions", + "irish bacon", + "granulated sugar", + "all-purpose flour", + "kosher salt", + "vegetable oil" + ] + }, + { + "id": 20733, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "light coconut milk", + "curry paste", + "fish sauce", + "sweet potatoes", + "garlic cloves", + "chicken stock", + "lime", + "peanut oil", + "onions", + "minced ginger", + "boneless skinless chicken breasts", + "green beans" + ] + }, + { + "id": 34335, + "cuisine": "irish", + "ingredients": [ + "fat free yogurt", + "cooking spray", + "all-purpose flour", + "whole wheat flour", + "butter", + "grated orange", + "large egg whites", + "baking powder", + "strawberries", + "sugar", + "baking soda", + "salt" + ] + }, + { + "id": 41660, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "peas", + "chopped fresh mint", + "parmesan cheese", + "ricotta cheese", + "garlic cloves", + "lemon zest", + "butter", + "refrigerated fettuccine", + "pepper", + "half & half", + "salt" + ] + }, + { + "id": 32127, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "tomato salsa", + "flour tortillas", + "cheese", + "spring onions", + "rice", + "fat free yogurt", + "cajun seasoning" + ] + }, + { + "id": 28483, + "cuisine": "thai", + "ingredients": [ + "chiles", + "sweet soy sauce", + "garlic cloves", + "dark soy sauce", + "boneless chicken skinless thigh", + "thai chile", + "canola oil", + "long beans", + "dark molasses", + "regular soy sauce", + "holy basil", + "fish sauce", + "water", + "yellow onion" + ] + }, + { + "id": 16065, + "cuisine": "brazilian", + "ingredients": [ + "basmati", + "fresh cilantro", + "bay leaves", + "garlic", + "beef rib short", + "pancetta", + "black beans", + "olive oil", + "sea salt", + "rice", + "thyme", + "manioc flour", + "orange", + "ground black pepper", + "paprika", + "homemade stock", + "pork sausages", + "black pepper", + "linguica", + "spices", + "yellow onion", + "scallions" + ] + }, + { + "id": 8815, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "garlic cloves", + "extra-virgin olive oil", + "fresh marjoram", + "crushed red pepper", + "coriander seeds", + "sourdough baguette" + ] + }, + { + "id": 32054, + "cuisine": "japanese", + "ingredients": [ + "beef stock", + "fresh spinach", + "roast beef", + "sake", + "button mushrooms", + "soy sauce", + "onions" + ] + }, + { + "id": 12033, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "extra firm tofu", + "water", + "brewed coffee", + "brown sugar", + "mascarpone", + "cake", + "brandy", + "granulated sugar", + "unsweetened cocoa powder" + ] + }, + { + "id": 24061, + "cuisine": "southern_us", + "ingredients": [ + "capers", + "red wine vinegar", + "olive oil", + "pimento stuffed green olives", + "vidalia onion", + "fresh oregano", + "fresh basil", + "meat", + "sourdough baguette" + ] + }, + { + "id": 4109, + "cuisine": "cajun_creole", + "ingredients": [ + "shucked oysters", + "fish stock", + "scallions", + "thyme", + "green bell pepper", + "vegetable oil", + "okra", + "juice", + "onions", + "celery ribs", + "lump crab meat", + "bacon", + "garlic cloves", + "flat leaf parsley", + "tomatoes", + "cayenne", + "all-purpose flour", + "California bay leaves", + "medium shrimp" + ] + }, + { + "id": 14233, + "cuisine": "mexican", + "ingredients": [ + "cream", + "minced beef", + "iceberg lettuce", + "corn kernels", + "cocoa powder", + "tortillas", + "oil", + "diced tomatoes", + "onions" + ] + }, + { + "id": 5101, + "cuisine": "italian", + "ingredients": [ + "capers", + "potatoes", + "bread dough", + "olive oil", + "shredded mozzarella cheese", + "dried rosemary", + "fresh rosemary", + "ground pepper", + "feta cheese crumbles", + "jack cheese", + "salt", + "onions" + ] + }, + { + "id": 43741, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "soy sauce", + "ginger", + "daikon", + "dashi" + ] + }, + { + "id": 812, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "Thai fish sauce", + "brown sugar", + "grapefruit", + "avocado", + "purple onion", + "chopped cilantro fresh", + "red chili peppers", + "uncook medium shrimp, peel and devein" + ] + }, + { + "id": 17820, + "cuisine": "brazilian", + "ingredients": [ + "bread crumbs", + "cooking oil", + "salt", + "rice flour", + "water", + "chicken cutlets", + "chili sauce", + "pepper", + "egg yolks", + "salsa", + "onions", + "milk", + "butter", + "garlic cloves" + ] + }, + { + "id": 25184, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "fish fingers", + "warm water", + "mirin", + "shrimp", + "asparagus", + "salt", + "soy sauce", + "large eggs" + ] + }, + { + "id": 12719, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "diced tomatoes", + "salt", + "olive oil", + "cracked black pepper", + "peeled deveined shrimp", + "crushed red pepper flakes", + "fresh parsley", + "butter", + "garlic" + ] + }, + { + "id": 22975, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "lemon juice", + "clove", + "salt", + "fresno chiles", + "coriander seeds", + "dried red chile peppers", + "red chili peppers", + "cumin seed" + ] + }, + { + "id": 28439, + "cuisine": "mexican", + "ingredients": [ + "water", + "lard", + "white vinegar", + "Mexican oregano", + "ancho chile pepper", + "pork", + "salt", + "bay leaf", + "pepper", + "garlic cloves", + "cumin" + ] + }, + { + "id": 34255, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "dry yeast", + "crushed red pepper", + "mozzarella cheese", + "all purpose unbleached flour", + "soft fresh goat cheese", + "warm water", + "large garlic cloves", + "salt", + "swiss chard", + "extra-virgin olive oil" + ] + }, + { + "id": 47217, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "salt", + "black beans", + "large eggs", + "shredded cheese", + "tortillas", + "salsa", + "pepper", + "butter" + ] + }, + { + "id": 2980, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "red chili peppers", + "pitted green olives", + "cilantro leaves", + "preserved lemon", + "mint leaves", + "fish stock", + "plum tomatoes", + "whitefish", + "olive oil", + "lemon", + "garlic cloves", + "vidalia onion", + "dry white wine", + "salt", + "ground cumin" + ] + }, + { + "id": 41353, + "cuisine": "thai", + "ingredients": [ + "low sodium soy sauce", + "fresh coriander", + "fresh ginger", + "vegetable oil", + "soba noodles", + "brown sugar", + "lemongrass", + "extra firm tofu", + "garlic", + "toasted sesame oil", + "pepper", + "lime", + "shallots", + "salt", + "fish sauce", + "water", + "shiitake", + "thai chile", + "coconut milk" + ] + }, + { + "id": 8897, + "cuisine": "chinese", + "ingredients": [ + "vegetables", + "oil", + "red chili peppers", + "skinless salmon fillets", + "oyster sauce", + "fresh ginger root", + "garlic cloves", + "honey", + "teriyaki sauce" + ] + }, + { + "id": 36003, + "cuisine": "jamaican", + "ingredients": [ + "water", + "fresh lime juice", + "vanilla extract", + "soursop", + "sweetened condensed milk", + "grated nutmeg" + ] + }, + { + "id": 16859, + "cuisine": "british", + "ingredients": [ + "pepper", + "bay leaves", + "garlic cloves", + "onions", + "rosemary", + "salt", + "celery", + "water", + "lamb neck", + "carrots", + "beef bones", + "potatoes", + "lamb", + "fresh parsley" + ] + }, + { + "id": 33946, + "cuisine": "french", + "ingredients": [ + "large eggs", + "chocolate chips", + "unsalted butter", + "vanilla extract", + "vanilla sugar", + "all-purpose flour", + "baking soda", + "sea salt" + ] + }, + { + "id": 19452, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "poha", + "cilantro leaves", + "nuts", + "tumeric", + "chili powder", + "oil", + "tomatoes", + "seeds", + "green chilies", + "mustard", + "sugar", + "salt", + "lemon juice" + ] + }, + { + "id": 4042, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "beef stock", + "purple onion", + "diced onions", + "lime", + "cilantro", + "corn tortillas", + "ground cloves", + "beef brisket", + "garlic", + "chipotle peppers", + "cider vinegar", + "bay leaves", + "salsa" + ] + }, + { + "id": 24937, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "red bell pepper", + "unsweetened coconut milk", + "brown sugar", + "curry paste", + "fish sauce", + "fresh lime juice", + "tomatoes", + "chicken fingers", + "onions" + ] + }, + { + "id": 161, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "coconut extract", + "cream of coconut", + "dark chocolate chip" + ] + }, + { + "id": 26658, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "water", + "yellow onion", + "collard greens", + "whole milk", + "chicken broth", + "large eggs", + "thick-cut bacon", + "pepper", + "salt" + ] + }, + { + "id": 27966, + "cuisine": "southern_us", + "ingredients": [ + "bacon", + "collard greens", + "white sugar", + "seasoning", + "onions", + "salt and ground black pepper", + "cabbage" + ] + }, + { + "id": 46093, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "garlic cloves", + "plum tomatoes", + "green olives", + "extra-virgin olive oil", + "onions", + "mayonaise", + "spanish paprika", + "broth", + "halibut fillets", + "serrano ham" + ] + }, + { + "id": 21169, + "cuisine": "jamaican", + "ingredients": [ + "water", + "kidney beans", + "yellow onion", + "dried thyme", + "scotch bonnet chile", + "garlic cloves", + "lime", + "vegetable oil", + "long-grain rice", + "chicken stock", + "fresh ginger", + "salt", + "coconut milk" + ] + }, + { + "id": 955, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "vegetable oil", + "warm water", + "masa harina", + "dough", + "shredded lettuce" + ] + }, + { + "id": 25759, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "butter", + "large eggs", + "all-purpose flour", + "sugar", + "salt", + "baking powder", + "cultured buttermilk" + ] + }, + { + "id": 7746, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "fresh thyme", + "salt", + "coconut milk", + "water", + "cooking oil", + "shrimp", + "onions", + "green bell pepper", + "curry powder", + "curry sauce", + "corn starch", + "ketchup", + "hot pepper sauce", + "garlic", + "red bell pepper" + ] + }, + { + "id": 48218, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "vegetable oil", + "chopped cilantro fresh", + "orzo pasta", + "jalape", + "curry powder", + "canned beef broth", + "ground lamb", + "tomatoes", + "peeled fresh ginger", + "ground cardamom" + ] + }, + { + "id": 10275, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "vegetable oil", + "white cornmeal", + "large eggs", + "salt", + "self rising flour", + "buttermilk", + "sugar", + "jalapeno chilies", + "onions" + ] + }, + { + "id": 44885, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "prepared horseradish", + "green onions", + "butter", + "essence", + "corn starch", + "sweet onion", + "minced onion", + "parsley", + "salt", + "green pepper", + "medium shrimp", + "milk", + "ground black pepper", + "green tomatoes", + "yellow mustard", + "cayenne pepper", + "celery", + "yellow corn meal", + "whole grain mustard", + "large eggs", + "vegetable oil", + "all-purpose flour", + "lemon juice" + ] + }, + { + "id": 7562, + "cuisine": "southern_us", + "ingredients": [ + "kale", + "mustard greens", + "onions", + "olive oil", + "garlic", + "cherry tomatoes", + "cajun seasoning", + "broth", + "andouille sausage", + "ground black pepper", + "lemon juice" + ] + }, + { + "id": 23129, + "cuisine": "indian", + "ingredients": [ + "seedless cucumber", + "cumin seed", + "minced garlic", + "plain yogurt", + "chopped cilantro fresh", + "freshly ground pepper" + ] + }, + { + "id": 25600, + "cuisine": "italian", + "ingredients": [ + "ground red pepper", + "all-purpose flour", + "cooking spray", + "paprika", + "fresh parsley", + "bouillon", + "butter", + "fresh lemon juice", + "dry white wine", + "lemon slices", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 42918, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "baking powder", + "lemon rind", + "sugar", + "salt", + "eggs", + "egg whites", + "all-purpose flour", + "slivered almonds", + "vegetable oil", + "fresh lemon juice" + ] + }, + { + "id": 41042, + "cuisine": "italian", + "ingredients": [ + "fresh mozzarella balls", + "baby spinach", + "cream cheese", + "pepper", + "flour", + "pizza doughs", + "parmesan cheese", + "bacon", + "seasoning", + "artichok heart marin", + "salt" + ] + }, + { + "id": 49353, + "cuisine": "thai", + "ingredients": [ + "whole wheat buns", + "pepper", + "shredded carrots", + "salt", + "coconut milk", + "soy sauce", + "lime", + "napa cabbage", + "creamy peanut butter", + "brown sugar", + "fresh cilantro", + "green onions", + "rice vinegar", + "lean ground turkey", + "sweet chili sauce", + "peanuts", + "ginger", + "garlic cloves" + ] + }, + { + "id": 27836, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "wholemeal flour", + "tumeric", + "sunflower oil", + "plain flour", + "zucchini", + "fresh coriander", + "cumin seed" + ] + }, + { + "id": 9319, + "cuisine": "french", + "ingredients": [ + "mascarpone", + "bread slices", + "rye", + "green onions", + "pumpernickel", + "fresh dill", + "radishes", + "crackers", + "smoked trout fillets", + "fresh lemon juice" + ] + }, + { + "id": 10498, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "baking powder", + "chicken fillets", + "soy sauce", + "salt", + "sugar", + "lemon", + "chicken broth", + "cooking oil", + "corn starch" + ] + }, + { + "id": 14275, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "heavy cream", + "vanilla ice cream", + "unsalted butter", + "peaches", + "all-purpose flour", + "sugar", + "baking powder" + ] + }, + { + "id": 22429, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "green onions", + "cayenne pepper", + "dried oregano", + "kosher salt", + "sliced black olives", + "onion powder", + "corn tortillas", + "avocado", + "salsa verde", + "chili powder", + "shredded cheese", + "ground cumin", + "refried beans", + "roma tomatoes", + "salsa", + "ground beef" + ] + }, + { + "id": 48928, + "cuisine": "greek", + "ingredients": [ + "lamb shanks", + "fresh lemon juice", + "chicken broth", + "lemon", + "olive oil", + "onions", + "fresh dill", + "artichokes" + ] + }, + { + "id": 14393, + "cuisine": "cajun_creole", + "ingredients": [ + "pecan halves", + "extra firm tofu", + "vanilla extract", + "confectioners sugar", + "water", + "gluten", + "sorghum flour", + "baking soda", + "sprinkles", + "xanthan gum", + "sugar", + "cinnamon", + "salt" + ] + }, + { + "id": 39182, + "cuisine": "chinese", + "ingredients": [ + "water", + "confectioners sugar", + "wonton wrappers", + "canola", + "bittersweet chocolate", + "chinese five-spice powder" + ] + }, + { + "id": 47950, + "cuisine": "thai", + "ingredients": [ + "shallots", + "fish sauce", + "thai chile", + "lime" + ] + }, + { + "id": 11160, + "cuisine": "thai", + "ingredients": [ + "fresh coriander", + "Flora pro.activ", + "garlic cloves", + "thai green curry paste", + "eggplant", + "vegetable oil", + "green beans", + "coconut", + "spring onions", + "lemon juice", + "noodles", + "chicken stock", + "boneless chicken breast", + "red pepper", + "Thai fish sauce" + ] + }, + { + "id": 608, + "cuisine": "french", + "ingredients": [ + "spinach", + "paprika", + "pearl barley", + "ground turmeric", + "diced onions", + "water", + "salt", + "lentils", + "black pepper", + "bulgur wheat", + "ground allspice", + "ground cumin", + "plain low-fat yogurt", + "olive oil", + "chickpeas", + "bay leaf" + ] + }, + { + "id": 24353, + "cuisine": "filipino", + "ingredients": [ + "water", + "salt", + "white vinegar", + "bay leaves", + "pork butt", + "ground black pepper", + "oil", + "soy sauce", + "crushed garlic", + "chicken" + ] + }, + { + "id": 45417, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "large eggs", + "salt", + "chopped pecans", + "baking soda", + "butter", + "cream cheese", + "sugar", + "vegetable oil", + "all-purpose flour", + "ground cinnamon", + "bananas", + "vanilla extract", + "crushed pineapple" + ] + }, + { + "id": 18500, + "cuisine": "thai", + "ingredients": [ + "roasted cashews", + "kale", + "shallots", + "garlic cloves", + "ground cumin", + "tumeric", + "extra firm tofu", + "Thai red curry paste", + "fresh lime juice", + "brown sugar", + "fresh ginger", + "sea salt", + "coconut milk", + "lime zest", + "water", + "sweet potatoes", + "creamy peanut butter", + "canola oil" + ] + }, + { + "id": 6333, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "salt", + "red lentils", + "vegetable stock", + "oil", + "garam masala", + "broccoli", + "black pepper", + "garlic", + "onions" + ] + }, + { + "id": 15526, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "cheese", + "thyme", + "onions", + "dry vermouth", + "shallots", + "garlic cloves", + "bay leaf", + "unsalted butter", + "white wine vinegar", + "country bread", + "low sodium chicken broth", + "freshly ground pepper", + "flat leaf parsley" + ] + }, + { + "id": 40393, + "cuisine": "cajun_creole", + "ingredients": [ + "powdered sugar", + "superfine sugar", + "cinnamon", + "oil", + "melted butter", + "warm water", + "granulated sugar", + "salt", + "food colouring", + "unsalted butter", + "vanilla extract", + "sour cream", + "eggs", + "active dry yeast", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 22799, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "garlic cloves", + "fat-free mayonnaise", + "pepper", + "worcestershire sauce", + "boiling water", + "sun-dried tomatoes", + "salt", + "italian seasoning", + "whole wheat hamburger buns", + "lean ground beef", + "fresh basil leaves" + ] + }, + { + "id": 26015, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "thai basil", + "red curry paste", + "noodles", + "fresh basil", + "green curry paste", + "vegetable broth", + "coconut milk", + "coconut oil", + "fresh ginger", + "garlic", + "lime leaves", + "fresh cilantro", + "spring onions", + "red bell pepper" + ] + }, + { + "id": 8466, + "cuisine": "thai", + "ingredients": [ + "boneless chicken breast", + "coconut milk", + "sugar", + "vegetable oil", + "fish sauce", + "zucchini", + "thai green curry paste", + "soy sauce", + "cuttlefish balls" + ] + }, + { + "id": 28548, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "garlic powder", + "purple onion", + "avocado", + "fresh cilantro", + "chili powder", + "oil", + "tomato sauce", + "lasagna noodles", + "salt", + "lean ground turkey", + "corn", + "onion powder", + "ground cumin" + ] + }, + { + "id": 12527, + "cuisine": "french", + "ingredients": [ + "peaches", + "strawberries", + "fresh orange juice", + "brown sugar" + ] + }, + { + "id": 14905, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "chile de arbol", + "tamarind paste", + "ground turmeric", + "brown mustard seeds", + "garlic", + "chopped cilantro", + "canola oil", + "curry leaves", + "ginger", + "serrano", + "toor dal", + "red chile powder", + "thai chile", + "cumin seed", + "plum tomatoes" + ] + }, + { + "id": 2840, + "cuisine": "mexican", + "ingredients": [ + "yellow corn meal", + "cream style corn", + "salt", + "carnitas", + "green chile", + "baking powder", + "enchilada sauce", + "eggs", + "granulated sugar", + "all-purpose flour", + "milk", + "vegetable oil", + "white cheese" + ] + }, + { + "id": 36799, + "cuisine": "french", + "ingredients": [ + "olive oil", + "pasta shells", + "plum tomatoes", + "vegetable oil spray", + "red bell pepper", + "eggplant", + "garlic cloves", + "halibut fillets", + "zucchini", + "herbes de provence" + ] + }, + { + "id": 30105, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped green bell pepper", + "chopped celery", + "chopped onion", + "reduced fat sharp cheddar cheese", + "ground red pepper", + "all-purpose flour", + "crayfish", + "fettucine", + "grated parmesan cheese", + "salt", + "garlic cloves", + "black pepper", + "diced tomatoes", + "margarine", + "evaporated skim milk" + ] + }, + { + "id": 49560, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "snails", + "onions", + "soy sauce", + "garlic", + "cucumber", + "brown sugar", + "red pepper flakes", + "carrots", + "vinegar", + "Gochujang base", + "noodles" + ] + }, + { + "id": 35882, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "salt", + "large egg yolks", + "cinnamon sticks", + "milk", + "corn starch", + "vanilla extract", + "orange zest" + ] + }, + { + "id": 3662, + "cuisine": "mexican", + "ingredients": [ + "lean ground beef", + "fresh lime juice", + "shredded cheddar cheese", + "rice", + "black beans", + "salsa", + "chopped cilantro fresh", + "guacamole", + "chopped onion" + ] + }, + { + "id": 27088, + "cuisine": "brazilian", + "ingredients": [ + "hearts of palm", + "green onions", + "corn starch", + "milk", + "salt", + "onions", + "lime juice", + "cheese", + "chopped parsley", + "tomatoes", + "parmesan cheese", + "shrimp", + "peppercorns" + ] + }, + { + "id": 9675, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "parsley", + "unsalted butter", + "salt", + "parmesan cheese", + "garlic", + "pasta", + "parmigiano reggiano cheese" + ] + }, + { + "id": 32560, + "cuisine": "italian", + "ingredients": [ + "starchy potatoes", + "salt", + "large eggs", + "spinach", + "all-purpose flour" + ] + }, + { + "id": 21802, + "cuisine": "mexican", + "ingredients": [ + "golden raisins", + "hot water", + "sliced green onions", + "corn husks", + "salt", + "fat free cream cheese", + "non-fat sour cream", + "masa dough", + "egg whites", + "goat cheese", + "olives" + ] + }, + { + "id": 11281, + "cuisine": "italian", + "ingredients": [ + "cooked brown rice", + "parmesan cheese", + "garlic cloves", + "fresh basil", + "olive oil", + "heavy cream", + "pepper", + "ground chicken breast", + "onions", + "tomato sauce", + "orange bell pepper", + "salt" + ] + }, + { + "id": 9285, + "cuisine": "french", + "ingredients": [ + "butternut squash", + "acorn squash", + "onions", + "sugar", + "large garlic cloves", + "low salt chicken broth", + "fresh sage", + "butter", + "grated Gruyère cheese", + "fresh thyme", + "whipping cream", + "bread slices" + ] + }, + { + "id": 12019, + "cuisine": "british", + "ingredients": [ + "worcestershire sauce", + "low-fat milk", + "beer", + "condensed cheddar cheese soup", + "cayenne pepper" + ] + }, + { + "id": 36733, + "cuisine": "french", + "ingredients": [ + "black pepper", + "rouille", + "garlic cloves", + "fish fillets", + "lobster", + "extra-virgin olive oil", + "boiling potatoes", + "saffron threads", + "baguette", + "fish stock", + "California bay leaves", + "tomatoes", + "fronds", + "sea salt", + "onions" + ] + }, + { + "id": 41541, + "cuisine": "mexican", + "ingredients": [ + "KRAFT Shredded Pepper Jack Cheese with a TOUCH OF PHILADELPHIA", + "baby spinach leaves", + "green onions", + "eggs", + "cherry tomatoes", + "milk", + "mexican chorizo" + ] + }, + { + "id": 34267, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger", + "chicken", + "pork neck", + "salt", + "yellow rock sugar", + "water", + "yellow onion" + ] + }, + { + "id": 12827, + "cuisine": "spanish", + "ingredients": [ + "ground red pepper", + "diced tomatoes", + "salt", + "red bell pepper", + "ground cumin", + "lump crab meat", + "chili powder", + "green peas", + "long-grain rice", + "fresh parsley", + "andouille sausage", + "meat", + "cracked black pepper", + "chopped onion", + "medium shrimp", + "olive oil", + "clam juice", + "chopped celery", + "garlic cloves", + "sliced green onions" + ] + }, + { + "id": 1688, + "cuisine": "chinese", + "ingredients": [ + "water", + "red pepper flakes", + "brown sugar", + "flank steak", + "corn starch", + "low sodium soy sauce", + "green onions", + "ginger", + "minced garlic", + "vegetable oil" + ] + }, + { + "id": 34661, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "fresh basil leaves", + "mozzarella balls", + "cherry tomatoes", + "italian salad dressing" + ] + }, + { + "id": 48910, + "cuisine": "french", + "ingredients": [ + "mayonaise", + "fresh lemon juice", + "roasted red peppers", + "chopped garlic", + "cayenne", + "hot water", + "saffron threads", + "extra-virgin olive oil" + ] + }, + { + "id": 791, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "pitted black olives", + "marinara sauce", + "spinach", + "grated parmesan cheese", + "penne pasta", + "pepper", + "cauliflower florets" + ] + }, + { + "id": 17999, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "grated parmesan cheese", + "extra-virgin olive oil", + "chickpeas", + "italian seasoning", + "romaine lettuce", + "artichoke hearts", + "coarse salt", + "black olives", + "cucumber", + "pasta", + "honey", + "small pasta", + "garlic", + "pepperoni", + "black pepper", + "diced red onions", + "red pepper flakes", + "white wine vinegar", + "plum tomatoes" + ] + }, + { + "id": 32435, + "cuisine": "mexican", + "ingredients": [ + "watermelon", + "salted roast peanuts", + "honeydew", + "avocado", + "cantaloupe", + "english cucumber", + "green cabbage", + "jicama", + "lemon juice", + "radishes", + "crema", + "seedless red grapes" + ] + }, + { + "id": 31807, + "cuisine": "russian", + "ingredients": [ + "finely chopped fresh parsley", + "butter", + "dried dillweed", + "black pepper", + "boneless skinless chicken breasts", + "all-purpose flour", + "cold water", + "large eggs", + "lemon", + "garlic powder", + "vegetable oil", + "dry bread crumbs" + ] + }, + { + "id": 17433, + "cuisine": "french", + "ingredients": [ + "saffron threads", + "whitefish", + "water", + "parsley leaves", + "dry white wine", + "garlic cloves", + "onions", + "tomato paste", + "fish fillets", + "fennel bulb", + "bay leaves", + "salt", + "hot water", + "celery ribs", + "tomatoes", + "dried thyme", + "lobster", + "parsley", + "carrots", + "mussels", + "black peppercorns", + "olive oil", + "leeks", + "littleneck clams", + "ground white pepper" + ] + }, + { + "id": 41299, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "part-skim mozzarella cheese", + "part-skim ricotta cheese", + "black pepper", + "parmigiano reggiano cheese", + "plum tomatoes", + "spinach", + "garlic powder", + "crushed red pepper", + "pizza crust", + "shallots", + "dried oregano" + ] + }, + { + "id": 7662, + "cuisine": "chinese", + "ingredients": [ + "sauce", + "frozen broccoli", + "frozen popcorn chicken", + "brown rice" + ] + }, + { + "id": 35013, + "cuisine": "korean", + "ingredients": [ + "sweet mini bells", + "green onions", + "sesame seeds", + "bbq sauce", + "boneless beef chuck roast" + ] + }, + { + "id": 8608, + "cuisine": "mexican", + "ingredients": [ + "chicken legs", + "unsalted butter", + "ice water", + "salt", + "white vinegar", + "black pepper", + "bay leaves", + "all purpose unbleached flour", + "smoked paprika", + "green olives", + "large eggs", + "large garlic cloves", + "spanish chorizo", + "eggs", + "reduced sodium chicken broth", + "dry white wine", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 28310, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "paprika", + "fresh parsley", + "reduced fat cheddar cheese", + "cooking spray", + "salt", + "large eggs", + "purple onion", + "black pepper", + "baking potatoes", + "garlic cloves" + ] + }, + { + "id": 28846, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "pizza crust", + "red enchilada sauce", + "taco seasoned cheese" + ] + }, + { + "id": 25346, + "cuisine": "italian", + "ingredients": [ + "sugar", + "lemon", + "ladyfingers", + "large eggs", + "mascarpone", + "water", + "liqueur" + ] + }, + { + "id": 21761, + "cuisine": "british", + "ingredients": [ + "irish cream liqueur", + "flour", + "double cream", + "orange", + "baking powder", + "maple syrup", + "sugar", + "large eggs", + "butter", + "whiskey", + "ground cloves", + "bay leaves", + "fine sea salt" + ] + }, + { + "id": 18553, + "cuisine": "vietnamese", + "ingredients": [ + "eggs", + "garlic", + "fish sauce", + "rice", + "chili pepper", + "shrimp", + "spring onions" + ] + }, + { + "id": 24292, + "cuisine": "thai", + "ingredients": [ + "seeds", + "coriander seeds", + "long pepper", + "cumin seed", + "szechwan peppercorns" + ] + }, + { + "id": 12073, + "cuisine": "indian", + "ingredients": [ + "ground chicken", + "chinese ginger", + "naan", + "diced onions", + "coriander seeds", + "chutney", + "bread crumbs", + "chickpeas", + "ground cumin", + "tumeric", + "salt", + "couscous" + ] + }, + { + "id": 39894, + "cuisine": "french", + "ingredients": [ + "prepared horseradish", + "dried dillweed", + "sour cream", + "dry mustard" + ] + }, + { + "id": 24637, + "cuisine": "chinese", + "ingredients": [ + "chili pepper", + "vinegar", + "ground pork", + "scallions", + "sugar", + "light soy sauce", + "spring onions", + "cooking wine", + "corn starch", + "black pepper", + "eggplant", + "sesame oil", + "salt", + "ginger root", + "eggs", + "water", + "flour", + "ginger", + "garlic cloves" + ] + }, + { + "id": 3345, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "vegetable oil", + "celery", + "taco seasoning mix", + "beef tongue", + "black pepper", + "salt", + "onions", + "leeks", + "carrots" + ] + }, + { + "id": 9783, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "cilantro", + "scallions", + "eggplant", + "chili bean paste", + "corn starch", + "soy sauce", + "ginger", + "garlic cloves", + "chicken stock", + "szechwan peppercorns", + "peanut oil", + "chinkiang vinegar" + ] + }, + { + "id": 7260, + "cuisine": "italian", + "ingredients": [ + "pepper", + "cook egg hard", + "chopped fresh mint", + "tomatoes", + "olive oil", + "garlic cloves", + "baguette", + "salt", + "capers", + "fresh tarragon", + "fresh parsley" + ] + }, + { + "id": 20730, + "cuisine": "indian", + "ingredients": [ + "powdered sugar", + "cardamom seeds", + "clarified butter", + "pistachios", + "all-purpose flour", + "semolina", + "salt", + "saffron", + "chopped almonds", + "gram flour" + ] + }, + { + "id": 1875, + "cuisine": "southern_us", + "ingredients": [ + "chiles", + "vinegar", + "onions", + "white vinegar", + "kosher salt", + "ham hock", + "black pepper", + "peas", + "serrano chile", + "sugar", + "bay leaves", + "smoked ham hocks" + ] + }, + { + "id": 32244, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "orange", + "leeks", + "salt", + "bay leaf", + "fish", + "mussels", + "water", + "lobster", + "garlic", + "celery", + "saffron", + "white wine", + "olive oil", + "parsley", + "shrimp", + "onions", + "pepper", + "fennel", + "littleneck clams", + "thyme", + "peppercorns" + ] + }, + { + "id": 41883, + "cuisine": "indian", + "ingredients": [ + "mint", + "honey", + "basmati rice", + "mixed spice", + "garlic", + "spinach", + "cilantro", + "cauliflower", + "lime", + "coconut milk" + ] + }, + { + "id": 44465, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "dried thyme", + "grated nutmeg", + "ground cloves", + "paprika", + "ground allspice", + "sugar", + "ground black pepper", + "cayenne pepper", + "curry powder", + "salt" + ] + }, + { + "id": 45213, + "cuisine": "southern_us", + "ingredients": [ + "biscuits", + "low sodium chicken broth", + "poultry seasoning", + "frozen peas", + "black pepper", + "heavy cream", + "celery", + "kosher salt", + "all-purpose flour", + "onions", + "boneless chicken skinless thigh", + "dry white wine", + "carrots" + ] + }, + { + "id": 47955, + "cuisine": "thai", + "ingredients": [ + "shallots", + "chinese cabbage", + "large garlic cloves", + "fresh lime juice", + "coarse salt", + "Thai fish sauce", + "lemongrass", + "thai chile" + ] + }, + { + "id": 1852, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "salsa", + "boneless chicken skinless thigh", + "vegetable oil", + "iceberg lettuce", + "mayonaise", + "flour tortillas", + "hot sauce", + "shredded cheddar cheese", + "salt" + ] + }, + { + "id": 9449, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "chili oil", + "chinese five-spice powder", + "soy sauce", + "Sriracha", + "rice vinegar", + "chicken wings", + "honey", + "paprika", + "garlic cloves", + "sweet chili sauce", + "sesame oil", + "scallions" + ] + }, + { + "id": 41483, + "cuisine": "french", + "ingredients": [ + "pastry", + "eggs", + "apples", + "sugar", + "butter" + ] + }, + { + "id": 22823, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "red wine", + "pork shoulder", + "ground black pepper", + "sauce", + "fresh rosemary", + "garlic", + "dill weed" + ] + }, + { + "id": 23359, + "cuisine": "mexican", + "ingredients": [ + "boneless pork shoulder", + "fat", + "garlic", + "dried oregano", + "chili powder", + "onions", + "salt", + "ground cumin" + ] + }, + { + "id": 23326, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "ground pepper", + "sweet mini bells", + "grits", + "milk", + "old bay seasoning", + "smoked paprika", + "andouille sausage", + "flour", + "shrimp", + "pancetta", + "olive oil", + "sea salt", + "bamboo shoots" + ] + }, + { + "id": 17567, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "cooking spray", + "chopped fresh mint", + "salt", + "ground black pepper", + "small red potato" + ] + }, + { + "id": 12141, + "cuisine": "thai", + "ingredients": [ + "tilapia fillets", + "cilantro", + "fish sauce", + "chili", + "coconut milk", + "lime juice", + "oil", + "sugar", + "green curry paste", + "lime leaves" + ] + }, + { + "id": 21955, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "shrimp", + "extra-virgin olive oil", + "grits", + "butter", + "onions", + "white pepper", + "salt" + ] + }, + { + "id": 44816, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "fresh ginger", + "dry sherry", + "pea pods", + "red bell pepper", + "black pepper", + "green onions", + "garlic", + "rice vinegar", + "boneless chicken skinless thigh", + "cooking spray", + "cilantro", + "salt", + "asian noodles", + "water", + "sesame oil", + "fat-free chicken broth", + "carrots" + ] + }, + { + "id": 3280, + "cuisine": "southern_us", + "ingredients": [ + "balsamic vinegar", + "smoked paprika", + "garlic", + "greens", + "vegetable broth", + "ginger root", + "purple onion", + "dried cranberries" + ] + }, + { + "id": 6954, + "cuisine": "chinese", + "ingredients": [ + "baking soda", + "vegetable oil", + "corn starch", + "sugar", + "flour", + "rice vinegar", + "brown sugar", + "reduced sodium soy sauce", + "garlic", + "water", + "boneless skinless chicken breasts", + "broccoli" + ] + }, + { + "id": 38325, + "cuisine": "french", + "ingredients": [ + "sugar", + "ground black pepper", + "salt", + "prosciutto", + "fresh thyme leaves", + "ground coriander", + "fat free less sodium chicken broth", + "cooking spray", + "strawberries", + "sherry vinegar", + "cheese", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 44112, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "finely chopped onion", + "chopped celery", + "fresh mushrooms", + "olive oil", + "reduced-fat sour cream", + "cayenne pepper", + "garlic cloves", + "water", + "chili powder", + "salt", + "long-grain rice", + "fresh tomatoes", + "reduced sodium soy sauce", + "paprika", + "green pepper", + "fresh parsley" + ] + }, + { + "id": 37293, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "angel hair", + "half & half", + "fresh parsley", + "chicken stock", + "grated parmesan cheese", + "salt", + "pepper", + "butter" + ] + }, + { + "id": 21062, + "cuisine": "thai", + "ingredients": [ + "canned low sodium chicken broth", + "shiitake", + "cooking oil", + "chopped cilantro", + "lean ground pork", + "cayenne", + "scallions", + "soy sauce", + "short-grain rice", + "salt", + "green bell pepper", + "lime juice", + "radishes", + "red bell pepper" + ] + }, + { + "id": 17127, + "cuisine": "british", + "ingredients": [ + "white bread", + "sea salt", + "marrow bones", + "shallots", + "flat leaf parsley", + "capers", + "extra-virgin olive oil", + "ground black pepper", + "fresh lemon juice" + ] + }, + { + "id": 31481, + "cuisine": "italian", + "ingredients": [ + "polenta", + "water", + "salt" + ] + }, + { + "id": 1729, + "cuisine": "chinese", + "ingredients": [ + "minced chicken", + "fresh ginger root", + "agar agar flakes", + "warm water", + "flour", + "cooking wine", + "sugar", + "ground black pepper", + "sesame oil", + "chicken stock", + "soy sauce", + "spring onions", + "oil" + ] + }, + { + "id": 20868, + "cuisine": "italian", + "ingredients": [ + "campari", + "sweet vermouth", + "fresh orange juice", + "gin" + ] + }, + { + "id": 41447, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "foie gras", + "veal demi-glace", + "dry red wine", + "vanilla beans", + "cracked black pepper", + "tawny port", + "seedless red grapes" + ] + }, + { + "id": 557, + "cuisine": "jamaican", + "ingredients": [ + "water", + "green onions", + "okra", + "blue crabs", + "fresh thyme", + "salt", + "onions", + "taro leaf", + "garlic", + "coconut milk", + "pig", + "habanero pepper", + "cubed pumpkin" + ] + }, + { + "id": 37515, + "cuisine": "italian", + "ingredients": [ + "bacon", + "garlic powder", + "breadstick", + "grated parmesan cheese" + ] + }, + { + "id": 1927, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "garlic", + "ricotta cheese", + "lasagna noodles", + "ground beef", + "cheese" + ] + }, + { + "id": 30687, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "jalapeno chilies", + "beef tongue", + "tomatoes", + "salt", + "vegetable oil", + "onions" + ] + }, + { + "id": 5439, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "onions", + "tomatoes", + "ground turkey breast", + "salt", + "shredded cheddar cheese", + "seasoned black beans", + "cumin", + "green bell pepper", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 19111, + "cuisine": "french", + "ingredients": [ + "water", + "whipping cream", + "large egg yolks", + "vanilla extract", + "sugar", + "light corn syrup", + "ground cardamom", + "unsalted butter", + "plums" + ] + }, + { + "id": 23293, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "dumpling wrappers", + "firm tofu", + "water", + "garlic", + "corn starch", + "kosher salt", + "vegetables", + "scallions", + "neutral oil", + "minced ginger", + "rice vinegar", + "toasted sesame oil" + ] + }, + { + "id": 17491, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "garlic cloves", + "lime juice", + "white sugar", + "water", + "chillies", + "rice vinegar" + ] + }, + { + "id": 4289, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "ketchup", + "salt", + "green beans", + "pork", + "water", + "carrots", + "lumpia skins", + "soy sauce", + "vegetable oil", + "corn starch", + "onions", + "sugar", + "black pepper", + "garlic cloves", + "beansprouts" + ] + }, + { + "id": 15047, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "corn oil", + "all-purpose flour", + "sugar", + "buttermilk", + "powdered sugar", + "baking powder", + "cornmeal", + "milk", + "salt" + ] + }, + { + "id": 26970, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "bay leaves", + "celery", + "andouille sausage", + "olive oil", + "cajun seasoning", + "dried parsley", + "green bell pepper", + "dried thyme", + "dried sage", + "onions", + "minced garlic", + "kidney beans", + "cayenne pepper", + "long grain white rice" + ] + }, + { + "id": 28816, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "salt", + "sugar", + "flour", + "pepper", + "beaten eggs", + "melted butter", + "cream style corn" + ] + }, + { + "id": 14131, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "salt", + "white sugar", + "ground cinnamon", + "unsalted butter", + "fresh lemon juice", + "peaches", + "all-purpose flour", + "boiling water", + "brown sugar", + "baking powder", + "corn starch" + ] + }, + { + "id": 6488, + "cuisine": "russian", + "ingredients": [ + "plain yogurt", + "garlic cloves", + "kasha", + "zucchini", + "onions", + "olive oil", + "red bell pepper", + "chicken broth", + "large eggs" + ] + }, + { + "id": 17700, + "cuisine": "filipino", + "ingredients": [ + "ginger", + "onions", + "water", + "patis", + "chicken", + "garlic", + "green papaya", + "vegetable oil", + "pepper leaves" + ] + }, + { + "id": 10440, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "fennel bulb", + "grated lemon zest", + "fresh parmesan cheese", + "shallots", + "medium shrimp", + "arborio rice", + "ground black pepper", + "butter", + "fronds", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 33022, + "cuisine": "spanish", + "ingredients": [ + "sausage links", + "hungarian paprika", + "large garlic cloves", + "low salt chicken broth", + "mussels", + "pepper", + "dry white wine", + "salt", + "large shrimp", + "tomatoes", + "olive oil", + "lemon wedge", + "rice", + "saffron threads", + "sugar pea", + "asparagus", + "littleneck clams", + "onions" + ] + }, + { + "id": 34644, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "whole wheat spaghetti noodles", + "sea salt", + "soy sauce", + "garlic", + "veggies" + ] + }, + { + "id": 5017, + "cuisine": "british", + "ingredients": [ + "brown sugar", + "flour", + "salt", + "rolled oats", + "cinnamon", + "sugar", + "baking powder", + "milk", + "butter" + ] + }, + { + "id": 2235, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "green onions", + "rice vermicelli", + "shrimp", + "ground chicken", + "hot pepper sauce", + "red pepper", + "garlic", + "fish sauce", + "peanuts", + "vegetable oil", + "vegetable broth", + "beansprouts", + "fresh coriander", + "granulated sugar", + "Heinz Tomato Ketchup", + "gingerroot" + ] + }, + { + "id": 36072, + "cuisine": "indian", + "ingredients": [ + "mace", + "french fried onions", + "cilantro leaves", + "green chilies", + "cumin", + "mint", + "bay leaves", + "cracked black pepper", + "green cardamom", + "ghee", + "ginger paste", + "clove", + "coriander powder", + "sea salt", + "cayenne pepper", + "cinnamon sticks", + "chicken", + "water", + "yoghurt", + "white rice", + "brown cardamom", + "ground turmeric", + "ground cumin" + ] + }, + { + "id": 14115, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "vegetable oil", + "enchilada sauce", + "flour tortillas", + "rice", + "shredded mild cheddar cheese", + "diced tomatoes", + "ground chicken", + "jalapeno chilies", + "chopped onion" + ] + }, + { + "id": 32501, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "olive oil", + "jalapeno chilies", + "worcestershire sauce", + "cayenne pepper", + "smoked paprika", + "dried oregano", + "andouille sausage", + "ground black pepper", + "chicken breasts", + "garlic", + "okra pods", + "onions", + "fresh prawn", + "orange bell pepper", + "green onions", + "diced tomatoes", + "wild rice", + "celery", + "dried thyme", + "vinegar", + "red rice", + "hot sauce", + "carrots", + "long grain white rice" + ] + }, + { + "id": 13540, + "cuisine": "chinese", + "ingredients": [ + "peanut oil", + "szechwan peppercorns" + ] + }, + { + "id": 22095, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "salt", + "beef tendons", + "oil", + "water", + "pork and beans", + "beef shank", + "onions" + ] + }, + { + "id": 22468, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "salt", + "onions", + "olive oil", + "vegetable broth", + "celery", + "fava beans", + "diced tomatoes", + "long-grain rice", + "yellow peppers", + "fresh thyme leaves", + "garlic", + "bay leaf" + ] + }, + { + "id": 46230, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "garlic cloves", + "thai chile", + "asian fish sauce", + "rice vinegar", + "warm water", + "fresh lime juice" + ] + }, + { + "id": 14229, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "Best Foods® Real Mayonnaise", + "ground black pepper", + "paprika", + "kosher salt", + "russet potatoes", + "Kraft Miracle Whip Dressing", + "yellow onion" + ] + }, + { + "id": 602, + "cuisine": "moroccan", + "ingredients": [ + "mint sprigs", + "sugar", + "green tea" + ] + }, + { + "id": 45300, + "cuisine": "italian", + "ingredients": [ + "chopped ham", + "pitted black olives", + "sausages", + "tomatoes", + "zesty italian dressing", + "green olives", + "shredded mozzarella cheese", + "pasta", + "green onions" + ] + }, + { + "id": 756, + "cuisine": "spanish", + "ingredients": [ + "tomato juice", + "purple onion", + "celery ribs", + "extra-virgin olive oil", + "red bell pepper", + "red wine", + "cucumber", + "tomatoes", + "garlic" + ] + }, + { + "id": 9142, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "dried apricot", + "ras el hanout", + "cilantro leaves", + "cinnamon sticks", + "almonds", + "extra-virgin olive oil", + "salt", + "fresh lemon juice", + "water", + "large garlic cloves", + "purple onion", + "chickpeas", + "couscous", + "black pepper", + "mint leaves", + "crushed red pepper", + "grated lemon zest", + "escarole" + ] + }, + { + "id": 11013, + "cuisine": "french", + "ingredients": [ + "dried basil", + "dried oregano", + "bay leaf", + "marjoram", + "rubbed sage", + "dried rosemary" + ] + }, + { + "id": 28239, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "crisco", + "shredded monterey jack cheese", + "enchilada sauce", + "green chile", + "fresh cilantro", + "cooked chicken", + "all-purpose flour", + "corn tortillas", + "chicken broth", + "shredded cheddar cheese", + "green onions", + "salt", + "sour cream", + "tomato sauce", + "garlic powder", + "chili powder", + "oil", + "ground cumin" + ] + }, + { + "id": 118, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "garlic cloves", + "salsa verde", + "butter", + "onions", + "chicken breasts", + "Mexican cheese", + "diced green chilies", + "cream cheese" + ] + }, + { + "id": 6189, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "spinach", + "green onions", + "pepper", + "Alfredo sauce", + "fettucine", + "grated parmesan cheese" + ] + }, + { + "id": 29638, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "orange marmalade", + "adobo sauce", + "cider vinegar", + "green onions", + "boneless chicken skinless thigh", + "cooking spray", + "pepper", + "salt" + ] + }, + { + "id": 29724, + "cuisine": "korean", + "ingredients": [ + "vegetable oil", + "carrots", + "eggs", + "chili sauce", + "toasted sesame seeds", + "chicken stock", + "baby spinach", + "toasted sesame oil", + "cooked turkey", + "long-grain rice" + ] + }, + { + "id": 19088, + "cuisine": "spanish", + "ingredients": [ + "chicken broth", + "garlic cloves", + "frozen peas", + "saffron threads", + "olive oil", + "red bell pepper", + "chicken", + "green bell pepper", + "fresh parsley leaves", + "plum tomatoes", + "arborio rice", + "paprika", + "onions" + ] + }, + { + "id": 30478, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "small red potato", + "chicken bouillon granules", + "olive oil", + "water", + "dried oregano", + "diced onions", + "green pepper" + ] + }, + { + "id": 49108, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "italian seasoning", + "roast red peppers, drain", + "hellmann' or best food real mayonnais", + "garlic powder", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 29360, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "miso", + "scallions", + "spinach", + "mirin", + "firm tofu", + "soy sauce", + "dried soba", + "konbu", + "water", + "dried bonito flakes", + "carrots" + ] + }, + { + "id": 42408, + "cuisine": "french", + "ingredients": [ + "egg substitute", + "cooking spray", + "fat-free mayonnaise", + "whole grain dijon mustard", + "sliced ham", + "fat free milk", + "gruyere cheese", + "ground black pepper", + "Italian bread" + ] + }, + { + "id": 20306, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "red cabbage", + "carrots", + "green cabbage", + "olive oil", + "cilantro leaves", + "lime", + "lime wedges", + "tostada shells", + "agave nectar", + "roasting chickens" + ] + }, + { + "id": 35263, + "cuisine": "mexican", + "ingredients": [ + "clove", + "whipped cream", + "chocolate syrup", + "coffee beans", + "brown sugar", + "vanilla", + "water", + "cinnamon sticks" + ] + }, + { + "id": 7751, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "sea salt", + "toasted sesame oil", + "coconut oil", + "water chestnuts", + "freshly ground pepper", + "brussels sprouts", + "extra firm tofu", + "Gochujang base", + "soy sauce", + "furikake", + "garlic cloves" + ] + }, + { + "id": 49334, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "crushed red pepper flakes", + "chicken", + "ground black pepper", + "salt", + "water", + "purple onion", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 46050, + "cuisine": "thai", + "ingredients": [ + "chile paste", + "rice wine", + "ground coriander", + "fresh basil", + "lemon grass", + "rice vinegar", + "chopped fresh mint", + "peanuts", + "purple onion", + "fresh lime juice", + "soy sauce", + "flank steak", + "dark sesame oil", + "garlic salt" + ] + }, + { + "id": 35418, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "jalapeno chilies", + "garlic cloves", + "ancho chile pepper", + "ground cumin", + "avocado", + "water", + "salsa", + "sour cream", + "oregano", + "dried black beans", + "vegetable oil", + "juice", + "fresh lime juice", + "fresh coriander", + "purple onion", + "red bell pepper", + "onions" + ] + }, + { + "id": 12875, + "cuisine": "italian", + "ingredients": [ + "and cook drain pasta ziti", + "vegetable oil", + "prego fresh mushroom italian sauce", + "bone-in pork chops" + ] + }, + { + "id": 47235, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "rice wine", + "seasoned rice wine vinegar", + "corn starch", + "egg yolks", + "ice water", + "scallions", + "water", + "vegetable oil", + "all-purpose flour", + "sugar", + "baking powder", + "salt", + "shrimp" + ] + }, + { + "id": 42201, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "ground nutmeg", + "ground cinnamon", + "evaporated milk", + "vanilla extract", + "single crust pie", + "flour", + "navy beans", + "sugar", + "butter" + ] + }, + { + "id": 21860, + "cuisine": "moroccan", + "ingredients": [ + "hot red pepper flakes", + "baby greens", + "yellow bell pepper", + "yams", + "pepper", + "sea salt", + "garlic", + "curry paste", + "granny smith apples", + "cinnamon", + "vegetable broth", + "coconut milk", + "green chile", + "lime", + "diced tomatoes", + "chickpeas", + "chopped cilantro fresh" + ] + }, + { + "id": 28090, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "spring onions", + "soy sauce", + "ground pork", + "brown sugar", + "wonton wrappers", + "chicken broth", + "black pepper", + "salt" + ] + }, + { + "id": 41376, + "cuisine": "french", + "ingredients": [ + "water", + "mint sprigs", + "unflavored gelatin", + "whole milk", + "sugar", + "buttermilk", + "vanilla beans", + "strawberries" + ] + }, + { + "id": 31829, + "cuisine": "italian", + "ingredients": [ + "fronds", + "fennel bulb", + "salt", + "fennel seeds", + "ground black pepper", + "trout fillet", + "prosciutto", + "lemon wedge", + "fresh lemon juice", + "olive oil", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 29868, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "amchur", + "salt", + "oil", + "masala", + "red chili powder", + "cinnamon", + "rajma", + "bay leaf", + "fenugreek leaves", + "garam masala", + "cilantro leaves", + "jeera", + "ground cumin", + "fennel seeds", + "milk", + "star anise", + "curds", + "onions" + ] + }, + { + "id": 2915, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "fresh coriander", + "fresh ginger", + "salt", + "fresh parsley", + "preserved lemon", + "fresh cilantro", + "potatoes", + "sweet paprika", + "saffron", + "green olives", + "water", + "ground black pepper", + "roasting chickens", + "onions", + "chiles", + "olive oil", + "bay leaves", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 45773, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "sauce", + "yellow corn meal", + "butter", + "water", + "salt", + "grated parmesan cheese" + ] + }, + { + "id": 41956, + "cuisine": "mexican", + "ingredients": [ + "pinto beans", + "tortillas", + "salsa verde", + "chicken", + "shredded cheese" + ] + }, + { + "id": 29060, + "cuisine": "mexican", + "ingredients": [ + "fresh basil", + "green onions", + "garlic cloves", + "fresh pineapple", + "tomatoes", + "chipotle chile", + "dry sherry", + "shrimp", + "avocado", + "sugar", + "lime wedges", + "fresh lemon juice", + "ground cumin", + "low sodium soy sauce", + "olive oil", + "salt", + "adobo sauce" + ] + }, + { + "id": 33786, + "cuisine": "thai", + "ingredients": [ + "rice vinegar", + "water", + "red jalapeno peppers", + "tapioca flour", + "garlic cloves", + "palm sugar" + ] + }, + { + "id": 14645, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "salsa", + "green chile", + "olive oil", + "shredded Monterey Jack cheese", + "shredded cheddar cheese", + "onions", + "pork", + "flour tortillas" + ] + }, + { + "id": 29475, + "cuisine": "filipino", + "ingredients": [ + "vegetable oil", + "carrots", + "green onions", + "garlic", + "soy sauce", + "ground pork", + "cabbage", + "eggs", + "lumpia wrappers", + "onions" + ] + }, + { + "id": 27645, + "cuisine": "chinese", + "ingredients": [ + "tahini", + "chili oil", + "minced garlic", + "sesame oil", + "peanut oil", + "soy sauce", + "chinese noodles", + "bone-in chicken breasts", + "water", + "red wine vinegar" + ] + }, + { + "id": 14701, + "cuisine": "southern_us", + "ingredients": [ + "processed cheese", + "chopped pecans", + "red chili peppers", + "worcestershire sauce", + "mayonaise", + "pimentos", + "extra sharp cheddar cheese", + "hot pepper sauce", + "chopped onion" + ] + }, + { + "id": 33462, + "cuisine": "italian", + "ingredients": [ + "milk", + "garlic", + "ground black pepper", + "cream cheese, soften", + "parmesan cheese", + "salt", + "butter" + ] + }, + { + "id": 6020, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "dried thyme", + "butter", + "chopped onion", + "pepper", + "half & half", + "salt", + "melted butter", + "garlic powder", + "chopped celery", + "carrots", + "biscuits", + "water", + "chicken breasts", + "all-purpose flour" + ] + }, + { + "id": 30949, + "cuisine": "japanese", + "ingredients": [ + "shiro miso", + "sesame seeds", + "soy sauce", + "water", + "spinach", + "sesame paste" + ] + }, + { + "id": 45782, + "cuisine": "filipino", + "ingredients": [ + "green mango", + "tomatoes", + "salt", + "pepper", + "onions", + "cilantro" + ] + }, + { + "id": 11910, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "salt", + "ground cumin", + "fresh orange juice", + "fresh parsley", + "golden raisins", + "fresh lemon juice", + "grated carrot", + "chopped cilantro fresh" + ] + }, + { + "id": 20883, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "olive oil", + "pepper", + "vinegar" + ] + }, + { + "id": 40746, + "cuisine": "mexican", + "ingredients": [ + "gold tequila", + "kiwi", + "triple sec", + "superfine sugar", + "ice cubes", + "fresh lime juice" + ] + }, + { + "id": 24763, + "cuisine": "southern_us", + "ingredients": [ + "white bread", + "ground sage", + "poultry seasoning", + "pepper", + "cooking spray", + "bread mix", + "large eggs", + "diced celery", + "diced onions", + "fat free milk", + "fat free reduced sodium chicken broth" + ] + }, + { + "id": 33388, + "cuisine": "indian", + "ingredients": [ + "baby spinach leaves", + "yoghurt", + "salt", + "coconut milk", + "ground cumin", + "plain flour", + "garam masala", + "lamb fillet", + "pomegranate", + "basmati rice", + "chicken stock", + "fresh ginger", + "chili powder", + "green chilies", + "onions", + "tomatoes", + "ground black pepper", + "vegetable oil", + "garlic cloves", + "ground turmeric" + ] + }, + { + "id": 11413, + "cuisine": "moroccan", + "ingredients": [ + "sherry vinegar", + "baby spinach", + "chickpeas", + "olive oil", + "dijon mustard", + "extra-virgin olive oil", + "red bell pepper", + "eggplant", + "harissa", + "purple onion", + "fresh mint", + "kosher salt", + "ground black pepper", + "yellow bell pepper", + "vinaigrette" + ] + }, + { + "id": 35671, + "cuisine": "southern_us", + "ingredients": [ + "dressing", + "water", + "boneless pork loin", + "hamburger buns", + "salt", + "brown sugar", + "barbecue sauce", + "cabbage", + "black pepper", + "hot sauce" + ] + }, + { + "id": 30631, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "ground black pepper", + "olive oil", + "dried oregano", + "tomatoes", + "anchovy fillets" + ] + }, + { + "id": 20689, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "parsley", + "water", + "lean ground beef", + "italian sausage", + "lasagna noodles", + "ricotta cheese", + "pasta sauce", + "grated parmesan cheese", + "oregano" + ] + }, + { + "id": 41346, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic", + "chopped cooked ham", + "vegetables", + "pizza doughs", + "olive oil", + "salt", + "tomatoes", + "ricotta cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 25437, + "cuisine": "thai", + "ingredients": [ + "cilantro root", + "chicken", + "garlic", + "salt", + "lemongrass", + "peppercorns" + ] + }, + { + "id": 40027, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "ground black pepper", + "salt", + "onions", + "fresh ginger root", + "bay leaves", + "ground cardamom", + "ground cumin", + "olive oil", + "whole peeled tomatoes", + "skinless chicken thighs", + "ground turmeric", + "ground nutmeg", + "garlic", + "cinnamon sticks" + ] + }, + { + "id": 29880, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "all-purpose flour", + "pure vanilla extract", + "cinnamon", + "ricotta", + "amaretti", + "grated lemon zest", + "sugar", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 35584, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "napa cabbage", + "garlic", + "shrimp", + "white sugar", + "chinese rice wine", + "shallots", + "ground pork", + "rice vinegar", + "dumplings", + "mirin", + "cilantro", + "salt", + "ground white pepper", + "sugar", + "sesame oil", + "ginger", + "scallions", + "bird chile" + ] + }, + { + "id": 6899, + "cuisine": "indian", + "ingredients": [ + "chile powder", + "water", + "large garlic cloves", + "ground turmeric", + "green chile", + "peeled fresh ginger", + "ground coriander", + "tomatoes", + "curry powder", + "salt", + "mango", + "unsweetened coconut milk", + "coconut oil", + "sea bass fillets", + "black mustard seeds" + ] + }, + { + "id": 2248, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "butter", + "asparagus", + "salt", + "ground black pepper", + "heavy cream", + "grated parmesan cheese", + "grated nutmeg" + ] + }, + { + "id": 49209, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "white miso", + "chili paste", + "ramen noodles", + "ginger", + "soft-boiled egg", + "toasted sesame oil", + "dashi", + "miso paste", + "large free range egg", + "spices", + "togarashi", + "scallions", + "nori", + "chicken stock", + "sesame seeds", + "ground black pepper", + "shallots", + "ground pork", + "dried shiitake mushrooms", + "sesame paste", + "water", + "soy milk", + "mirin", + "vegetable oil", + "garlic", + "dark brown sugar", + "onions" + ] + }, + { + "id": 1256, + "cuisine": "mexican", + "ingredients": [ + "fat-free reduced-sodium chicken broth", + "Taco Bell Taco Seasoning Mix", + "rotisserie chicken", + "lime", + "diced tomatoes", + "Velveeta", + "butter", + "onions", + "flour", + "tortilla chips" + ] + }, + { + "id": 26519, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "vegetable oil", + "rice vinegar", + "chinese chives", + "sugar", + "regular soy sauce", + "ground pork", + "scallions", + "sake", + "fresh ginger", + "napa cabbage", + "all-purpose flour", + "toasted sesame oil", + "soy sauce", + "sesame oil", + "garlic", + "corn starch" + ] + }, + { + "id": 44614, + "cuisine": "korean", + "ingredients": [ + "honey", + "rice vinegar", + "soy sauce", + "green onions", + "lotus roots", + "water", + "sesame oil", + "brown sugar", + "sesame seeds", + "apple juice" + ] + }, + { + "id": 44122, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "tapioca starch", + "rice flour", + "minced garlic", + "ground pork", + "canola oil", + "kosher salt", + "shallots", + "dried shrimp", + "fish sauce", + "ground black pepper", + "banana leaves" + ] + }, + { + "id": 6788, + "cuisine": "southern_us", + "ingredients": [ + "water", + "green tomatoes", + "almond flour", + "cayenne pepper", + "olive oil", + "onion powder", + "eggs", + "garlic powder" + ] + }, + { + "id": 30910, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "salt", + "buttermilk", + "all-purpose flour" + ] + }, + { + "id": 15954, + "cuisine": "mexican", + "ingredients": [ + "Sriracha", + "purple onion", + "greek yogurt", + "dried oregano", + "olive oil", + "chili powder", + "ground coriander", + "corn tortillas", + "ground black pepper", + "garlic", + "juice", + "skirt steak", + "kosher salt", + "jalapeno chilies", + "ear of corn", + "fresh mint", + "ground cumin" + ] + }, + { + "id": 24361, + "cuisine": "french", + "ingredients": [ + "water", + "chopped fresh thyme", + "filet", + "ground black pepper", + "sea salt", + "corn starch", + "olive oil", + "butter", + "cabernet sauvignon", + "shallots", + "beef broth", + "white mushrooms" + ] + }, + { + "id": 44921, + "cuisine": "british", + "ingredients": [ + "eau de vie", + "strawberries", + "cookies", + "granulated sugar", + "heavy cream" + ] + }, + { + "id": 21347, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "french bread", + "garlic cloves", + "tomatoes", + "cayenne", + "basil", + "oregano", + "olive oil", + "butter", + "onions", + "eggs", + "bell pepper", + "salt" + ] + }, + { + "id": 18738, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "mandarin oranges", + "red wine vinegar", + "chopped cilantro fresh", + "olive oil", + "salt", + "black beans", + "red pepper" + ] + }, + { + "id": 16546, + "cuisine": "italian", + "ingredients": [ + "whole wheat spaghetti", + "garlic", + "black pepper", + "butter", + "baby spinach", + "salt", + "parmigiano reggiano cheese", + "basil" + ] + }, + { + "id": 25685, + "cuisine": "italian", + "ingredients": [ + "baking soda", + "baking powder", + "grated lemon zest", + "egg substitute", + "orange marmalade", + "salt", + "powdered sugar", + "granulated sugar", + "extra-virgin olive oil", + "fresh lemon juice", + "fat free milk", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 38321, + "cuisine": "italian", + "ingredients": [ + "genoa salami", + "kosher salt", + "lemon", + "Italian bread", + "fresh basil", + "radishes", + "extra-virgin olive oil", + "pitted kalamata olives", + "zucchini", + "provolone cheese", + "breadstick", + "pepper", + "cracked black pepper", + "crackers" + ] + }, + { + "id": 17933, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "diced tomatoes", + "beef sausage", + "olive oil", + "garlic", + "shredded cheddar cheese", + "white rice", + "onions", + "red beans", + "green pepper" + ] + }, + { + "id": 36940, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "epazote", + "fresh lime juice", + "mussels", + "coarse salt", + "hot water", + "unsalted butter", + "salsa", + "plum tomatoes", + "corn oil", + "garlic cloves" + ] + }, + { + "id": 12036, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "vegetable oil", + "fresh ginger", + "crushed red pepper", + "orange", + "loin pork roast", + "cold water", + "mirin", + "toasted sesame oil" + ] + }, + { + "id": 39752, + "cuisine": "french", + "ingredients": [ + "capers", + "Italian parsley leaves", + "garlic cloves", + "fresh thyme leaves", + "anchovy fillets", + "olives", + "dried tomatoes", + "Niçoise olives", + "fresh oregano leaves", + "extra-virgin olive oil", + "fresh basil leaves" + ] + }, + { + "id": 41977, + "cuisine": "greek", + "ingredients": [ + "spinach", + "black olives", + "juice", + "feta cheese", + "zest", + "black-eyed peas", + "salt", + "sun-dried tomatoes in oil", + "green onions", + "garlic cloves" + ] + }, + { + "id": 23970, + "cuisine": "italian", + "ingredients": [ + "shiitake", + "baby spinach", + "oyster mushrooms", + "cremini mushrooms", + "shallots", + "bacon slices", + "garlic cloves", + "Madeira", + "ground black pepper", + "asiago", + "salt", + "homemade chicken stock", + "chopped fresh thyme", + "extra-virgin olive oil", + "carnaroli rice" + ] + }, + { + "id": 22155, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "chana dal", + "salt", + "garlic cloves", + "coriander powder", + "ginger", + "green chilies", + "ground turmeric", + "garam masala", + "chili powder", + "cilantro leaves", + "ghee", + "finely chopped onion", + "urad dal", + "cumin seed" + ] + }, + { + "id": 37340, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "eggs", + "baking powder", + "white sugar", + "whole milk", + "heavy whipping cream", + "evaporated milk", + "vanilla extract", + "sweetened condensed milk" + ] + }, + { + "id": 44312, + "cuisine": "italian", + "ingredients": [ + "sugar", + "parmigiano reggiano cheese", + "ricotta", + "mint", + "olive oil", + "chilled seltzer", + "squash blossoms", + "hot red pepper flakes", + "large egg yolks", + "all-purpose flour", + "plum tomatoes", + "water", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 11986, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lemongrass", + "fish balls", + "lime juice", + "salt", + "green beans", + "brown sugar", + "mushrooms", + "oil", + "chicken broth", + "minced ginger", + "red curry paste", + "coconut milk" + ] + }, + { + "id": 15616, + "cuisine": "japanese", + "ingredients": [ + "water", + "konbu", + "sugar", + "sea salt", + "mirin", + "sushi rice", + "rice vinegar" + ] + }, + { + "id": 35171, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "low sodium chicken stock", + "roasted tomatoes", + "fresh cilantro", + "brown rice", + "smoked paprika", + "large shrimp", + "andouille chicken sausage", + "scallions", + "oregano", + "spanish onion", + "garlic", + "red bell pepper", + "cumin" + ] + }, + { + "id": 36328, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper", + "plum tomatoes", + "kosher salt", + "new york strip steaks", + "fresh basil", + "ciabatta", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 30415, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "extra-virgin olive oil", + "mushrooms", + "purple onion", + "dry red wine", + "chopped fresh sage", + "water", + "whipping cream" + ] + }, + { + "id": 40475, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "pie crust", + "butter", + "sugar", + "corn starch", + "almond extract" + ] + }, + { + "id": 46092, + "cuisine": "italian", + "ingredients": [ + "whole wheat pasta", + "olive oil", + "table salt", + "garlic cloves", + "fresh spinach", + "low-fat cream cheese", + "water", + "fresh lemon juice" + ] + }, + { + "id": 39224, + "cuisine": "vietnamese", + "ingredients": [ + "fresh red chili", + "warm water", + "thai basil", + "large garlic cloves", + "freshly ground pepper", + "beansprouts", + "romaine lettuce", + "lemongrass", + "green leaf lettuce", + "rice vermicelli", + "garlic cloves", + "fresh lime juice", + "fish sauce", + "water", + "bawang goreng", + "grated carrot", + "english cucumber", + "fresh mint", + "sugar", + "unsalted roasted peanuts", + "vegetable oil", + "purple onion", + "carrots", + "chuck" + ] + }, + { + "id": 4480, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "cinnamon", + "maple syrup", + "granulated sugar", + "1% low-fat milk", + "turbinado", + "cooking spray", + "gruyere cheese", + "egg substitute", + "butter", + "pears" + ] + }, + { + "id": 17072, + "cuisine": "italian", + "ingredients": [ + "red chili peppers", + "fresh thyme", + "lemon", + "tomatoes", + "mozzarella cheese", + "grated parmesan cheese", + "salt", + "bread crumb fresh", + "large eggs", + "garlic", + "fresh basil", + "pepper", + "chicken breasts", + "all-purpose flour" + ] + }, + { + "id": 41724, + "cuisine": "french", + "ingredients": [ + "sugar", + "vanilla extract", + "powdered sugar", + "half & half", + "Grand Marnier", + "grated orange peel", + "butter", + "bread slices", + "large eggs", + "maple syrup" + ] + }, + { + "id": 26156, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "salt", + "chopped cilantro fresh", + "balsamic vinegar", + "garlic cloves", + "cilantro sprigs", + "bread slices", + "ground red pepper", + "dark sesame oil" + ] + }, + { + "id": 49573, + "cuisine": "british", + "ingredients": [ + "ground ginger", + "cider vinegar", + "green tomatoes", + "mustard seeds", + "tumeric", + "whole cloves", + "salt", + "light brown sugar", + "black pepper", + "bay leaves", + "yellow onion", + "green bell pepper", + "zucchini", + "cinnamon", + "celery seed" + ] + }, + { + "id": 8306, + "cuisine": "french", + "ingredients": [ + "flour", + "salt", + "sole fillet", + "lemon", + "fresh parsley", + "butter", + "lemon juice", + "ground black pepper", + "heavy cream" + ] + }, + { + "id": 15207, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "honey", + "peeled fresh ginger", + "crushed red pepper", + "fresh lemon juice", + "cider vinegar", + "lower sodium soy sauce", + "chicken drumsticks", + "salt", + "canola oil", + "brown sugar", + "lemongrass", + "cooking spray", + "fresh orange juice", + "garlic cloves", + "black pepper", + "annatto seeds", + "butter", + "purple onion", + "chicken thighs" + ] + }, + { + "id": 48852, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "rice vinegar", + "chili flakes", + "fresh ginger", + "green beans", + "minced garlic", + "ground white pepper", + "sugar", + "vegetable oil" + ] + }, + { + "id": 13336, + "cuisine": "russian", + "ingredients": [ + "granulated sugar", + "all-purpose flour", + "eggs", + "vanilla extract", + "walnuts", + "baking powder", + "cream cheese", + "unsalted butter", + "cocktail cherries" + ] + }, + { + "id": 47054, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "poblano chiles", + "black pepper", + "cooking spray", + "dried oregano", + "reduced fat sharp cheddar cheese", + "flour tortillas", + "onions", + "black beans", + "salt", + "mango" + ] + }, + { + "id": 7433, + "cuisine": "thai", + "ingredients": [ + "light soy sauce", + "bell pepper", + "garlic", + "fish sauce", + "peanuts", + "rice noodles", + "beansprouts", + "honey", + "chicken breasts", + "carrots", + "lime", + "zucchini", + "red pepper flakes" + ] + }, + { + "id": 30857, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "ancho powder", + "cayenne pepper", + "chicken", + "self rising flour", + "paprika", + "ground coriander", + "garlic powder", + "buttermilk", + "cilantro leaves", + "adobo sauce", + "ketchup", + "vegetable oil", + "salt", + "chipotles in adobo" + ] + }, + { + "id": 18956, + "cuisine": "indian", + "ingredients": [ + "cornflour", + "figs", + "lemon juice", + "fat", + "sugar substitute", + "low-fat milk" + ] + }, + { + "id": 47199, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "yoghurt", + "water", + "sugar", + "vegetable oil", + "flour" + ] + }, + { + "id": 965, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "ice cream", + "vanilla ice cream", + "matcha green tea powder", + "confectioners sugar", + "water", + "almond extract", + "granulated sugar", + "ground almonds" + ] + }, + { + "id": 7982, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "flank steak", + "salt", + "broccoli florets", + "vegetable oil", + "fish sauce", + "low sodium chicken broth", + "garlic", + "fresh ginger", + "rice noodles", + "red curry paste" + ] + }, + { + "id": 4921, + "cuisine": "southern_us", + "ingredients": [ + "tasso", + "fresh thyme", + "pepper", + "salt", + "brewed coffee", + "all-purpose flour", + "chicken broth", + "butter" + ] + }, + { + "id": 5431, + "cuisine": "moroccan", + "ingredients": [ + "large eggs", + "onions", + "black pepper", + "salt", + "challa", + "extra-virgin olive oil", + "boiling potatoes", + "cuban peppers", + "cumin seed" + ] + }, + { + "id": 6786, + "cuisine": "italian", + "ingredients": [ + "baking soda", + "baking powder", + "shredded mozzarella cheese", + "kosher salt", + "large eggs", + "extra-virgin olive oil", + "pepperoni slices", + "ground black pepper", + "buttermilk", + "italian seasoning", + "parmesan cheese", + "marinara sauce", + "all-purpose flour" + ] + }, + { + "id": 41711, + "cuisine": "japanese", + "ingredients": [ + "wasabi paste", + "soy sauce", + "pickled carrots", + "nori", + "ahi", + "gari", + "salt", + "eggs", + "sushi rice", + "butter", + "avocado", + "sugar", + "water", + "rice vinegar" + ] + }, + { + "id": 840, + "cuisine": "british", + "ingredients": [ + "cheddar cheese", + "cod fillets", + "bay leaf", + "pepper", + "butter", + "onions", + "smoked haddock", + "potatoes", + "fresh parsley", + "plain flour", + "milk", + "salt" + ] + }, + { + "id": 20846, + "cuisine": "italian", + "ingredients": [ + "citron", + "ricotta cheese", + "confectioners sugar" + ] + }, + { + "id": 42282, + "cuisine": "italian", + "ingredients": [ + "pesto", + "tuna steaks", + "dry bread crumbs", + "capers", + "ground black pepper", + "shallots", + "water", + "dry white wine", + "spinach", + "cooking spray", + "balsamic vinegar" + ] + }, + { + "id": 47092, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "water", + "lime wedges", + "boiling water", + "white onion", + "tortillas", + "garlic", + "green cabbage", + "kosher salt", + "radishes", + "chopped onion", + "chiles", + "hominy", + "chicken drumsticks", + "dried oregano" + ] + }, + { + "id": 36238, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "small new potatoes", + "salt", + "red wine vinegar", + "purple onion", + "kalamata", + "dried oregano" + ] + }, + { + "id": 31763, + "cuisine": "indian", + "ingredients": [ + "capsicum", + "cilantro leaves", + "idli", + "carrots", + "chili powder", + "oil", + "water", + "salt", + "onions" + ] + }, + { + "id": 9668, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "purple onion", + "romaine lettuce", + "kalamata", + "lemon juice", + "tomatoes", + "ground black pepper", + "english cucumber", + "fresh oregano leaves", + "extra-virgin olive oil", + "feta cheese crumbles" + ] + }, + { + "id": 24145, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "hamburger buns", + "finely chopped onion", + "grated carrot", + "pickle relish", + "Pam No-Stick Cooking Spray", + "dijon mustard", + "bacon slices", + "fresh parsley", + "Morton Salt", + "pepper", + "green leaf lettuce", + "dill pickles", + "vidalia onion", + "beef", + "cheese slices", + "Jimmy Dean Pork Sausage" + ] + }, + { + "id": 4393, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "chicken bouillon", + "achiote paste", + "pepper", + "orange juice", + "soy sauce", + "paprika" + ] + }, + { + "id": 18369, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "flour tortillas", + "ground beef", + "lettuce", + "pepper", + "purple onion", + "ketchup", + "worcestershire sauce", + "mustard", + "pepper jack", + "salt" + ] + }, + { + "id": 2535, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "vegetable oil", + "penne pasta", + "frozen spinach", + "milk", + "portabello mushroom", + "minced garlic", + "butter", + "soy sauce", + "dried basil", + "all-purpose flour" + ] + }, + { + "id": 34408, + "cuisine": "mexican", + "ingredients": [ + "oxtails", + "dried guajillo chiles", + "canola oil", + "kosher salt", + "lime wedges", + "plum tomatoes", + "white onion", + "yukon gold potatoes", + "cooked white rice", + "ground black pepper", + "garlic", + "dried oregano" + ] + }, + { + "id": 47796, + "cuisine": "italian", + "ingredients": [ + "basil pesto sauce", + "tuna", + "tomatoes", + "prepared mustard", + "lettuce", + "rye bread", + "mayonaise", + "garlic" + ] + }, + { + "id": 14665, + "cuisine": "italian", + "ingredients": [ + "pasta", + "dried basil", + "red wine", + "all-purpose flour", + "chicken pieces", + "dried oregano", + "eggs", + "parmesan cheese", + "garlic", + "carrots", + "onions", + "green bell pepper", + "ground black pepper", + "salt", + "celery", + "white sugar", + "tomato paste", + "olive oil", + "tomatoes with juice", + "fresh mushrooms", + "fresh parsley" + ] + }, + { + "id": 5191, + "cuisine": "italian", + "ingredients": [ + "pesto", + "salt", + "panko breadcrumbs", + "tomatoes", + "olive oil", + "ground turkey", + "pepper", + "garlic cloves", + "eggs", + "grated parmesan cheese", + "onions" + ] + }, + { + "id": 13113, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "chopped fresh thyme", + "mozzarella cheese", + "large eggs", + "all-purpose flour", + "plain dry bread crumb", + "ground black pepper", + "salt", + "olive oil", + "grated parmesan cheese", + "flat leaf parsley" + ] + }, + { + "id": 42970, + "cuisine": "mexican", + "ingredients": [ + "boneless pork shoulder", + "chili powder", + "ground cumin", + "dried cornhusks", + "salt", + "garlic powder", + "masa", + "tomato paste", + "vegetable oil" + ] + }, + { + "id": 16822, + "cuisine": "mexican", + "ingredients": [ + "fat free less sodium chicken broth", + "cooking spray", + "diced tomatoes", + "garlic cloves", + "ground cumin", + "water", + "ground red pepper", + "chopped onion", + "chopped cilantro", + "black pepper", + "olive oil", + "chili powder", + "low-fat cream cheese", + "bone in chicken thighs", + "shredded cheddar cheese", + "green onions", + "salt", + "corn tortillas" + ] + }, + { + "id": 49607, + "cuisine": "french", + "ingredients": [ + "sugar", + "butter", + "unsalted butter", + "milk", + "vanilla extract", + "eggs", + "flour" + ] + }, + { + "id": 13684, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "white sugar", + "milk", + "vanilla extract", + "eggs", + "butter", + "egg noodles", + "salt" + ] + }, + { + "id": 19170, + "cuisine": "italian", + "ingredients": [ + "basil", + "large eggs", + "freshly ground pepper", + "unsalted butter", + "salt", + "wheat bread", + "extra-virgin olive oil" + ] + }, + { + "id": 27232, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "ground allspice", + "ground black pepper", + "large garlic cloves", + "chicken livers", + "sage leaves", + "coarse salt", + "garlic cloves", + "french bread", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 25419, + "cuisine": "thai", + "ingredients": [ + "vegetable oil", + "japanese eggplants", + "unsweetened coconut milk", + "green beans", + "fresh basil", + "boneless skinless chicken breast halves", + "Thai red curry paste" + ] + }, + { + "id": 5417, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "maldon sea salt", + "unsalted butter", + "baguette", + "radishes" + ] + }, + { + "id": 672, + "cuisine": "british", + "ingredients": [ + "bread", + "yellow mustard", + "extra sharp cheddar cheese", + "eggs", + "hot sauce", + "tomatoes", + "rabbit", + "butter", + "beer" + ] + }, + { + "id": 45675, + "cuisine": "french", + "ingredients": [ + "sugar", + "vanilla extract", + "egg yolks", + "nonfat dry milk", + "salt", + "reduced fat milk", + "coffee beans" + ] + }, + { + "id": 20298, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "all purpose unbleached flour", + "coarse salt", + "ground white pepper", + "large eggs", + "grated nutmeg", + "russet potatoes" + ] + }, + { + "id": 30391, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "chopped cilantro fresh", + "pita bread", + "fresh lemon juice", + "red kidney beans", + "garlic cloves", + "ground cumin", + "vegetables", + "sour cream" + ] + }, + { + "id": 33464, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "bell pepper", + "crabmeat", + "onions", + "chicken broth", + "olive oil", + "all-purpose flour", + "celery", + "black pepper", + "salt", + "celery seed", + "cajun spice mix", + "garlic", + "shrimp" + ] + }, + { + "id": 19692, + "cuisine": "mexican", + "ingredients": [ + "Mexican seasoning mix", + "cilantro leaves", + "rotisserie chicken", + "fresh lime juice", + "guacamole", + "hot sauce", + "sour cream", + "corn kernels", + "salsa", + "chutney", + "canola oil", + "green chile", + "dipping sauces", + "cream cheese", + "corn tortillas" + ] + }, + { + "id": 47896, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "onions", + "pepper", + "salt", + "water", + "ham hock", + "ham steak", + "jalapeno chilies" + ] + }, + { + "id": 13499, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "salt and ground black pepper", + "chili powder", + "cayenne pepper", + "panko breadcrumbs", + "diced onions", + "water", + "flour", + "butter", + "diced celery", + "green bell pepper", + "chilegarlic sauce", + "vegetable oil", + "catfish", + "long grain and wild rice mix", + "tomato paste", + "crushed tomatoes", + "seafood seasoning", + "worcestershire sauce", + "corn starch" + ] + }, + { + "id": 21843, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "lard", + "pepper", + "whole chicken", + "salt", + "water", + "fat" + ] + }, + { + "id": 48728, + "cuisine": "indian", + "ingredients": [ + "green bell pepper", + "potatoes", + "ginger", + "cilantro leaves", + "green beans", + "masala", + "fennel seeds", + "milk", + "chili powder", + "paneer", + "cumin seed", + "basmati rice", + "cauliflower", + "plain yogurt", + "french fried onions", + "green peas", + "cardamom pods", + "cashew nuts", + "saffron", + "tomatoes", + "garam masala", + "chilli paste", + "salt", + "carrots", + "ground turmeric" + ] + }, + { + "id": 33627, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "freshly ground pepper", + "chopped cilantro", + "lime zest", + "large garlic cloves", + "thai jasmine rice", + "snow peas", + "vegetable oil", + "scallions", + "medium shrimp", + "tomatoes", + "crushed red pepper", + "fresh lime juice", + "asian fish sauce" + ] + }, + { + "id": 45903, + "cuisine": "italian", + "ingredients": [ + "water", + "roasted red peppers", + "dried oregano", + "vidalia onion", + "brown hash potato", + "salt", + "egg substitute", + "ground black pepper", + "feta cheese crumbles", + "frozen chopped spinach", + "dried basil", + "butter" + ] + }, + { + "id": 8276, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "lime", + "hoisin sauce", + "cinnamon", + "cilantro leaves", + "carrots", + "noodles", + "green cabbage", + "chicken bones", + "coriander seeds", + "shallots", + "thai chile", + "yellow onion", + "celery", + "cooked chicken breasts", + "black pepper", + "fresh ginger", + "green onions", + "star anise", + "hot sauce", + "beansprouts", + "peppercorns", + "rock sugar", + "water", + "thai basil", + "daikon", + "purple onion", + "cardamom", + "chopped cilantro", + "chicken" + ] + }, + { + "id": 19997, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "salt", + "chopped fresh mint", + "sliced green onions", + "fresh basil", + "star anise", + "fresh lime juice", + "serrano chile", + "peeled fresh ginger", + "dried rice noodles", + "chopped cilantro fresh", + "green onions", + "beef broth", + "boneless sirloin steak" + ] + }, + { + "id": 5075, + "cuisine": "indian", + "ingredients": [ + "salt", + "fenugreek", + "coconut oil", + "rice", + "black gram" + ] + }, + { + "id": 47018, + "cuisine": "jamaican", + "ingredients": [ + "unsweetened shredded dried coconut", + "bananas", + "red apples", + "water", + "vegetable oil", + "dark molasses", + "brown rice", + "curry powder", + "onions" + ] + }, + { + "id": 49374, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "milk", + "butter", + "carrots", + "chicken thighs", + "shortening", + "half & half", + "salt", + "celery", + "stock", + "flour", + "garlic", + "chopped parsley", + "frozen peas", + "pepper", + "baking powder", + "all-purpose flour", + "onions" + ] + }, + { + "id": 19915, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "parmigiano reggiano cheese", + "chanterelle", + "cremini mushrooms", + "sun-dried tomatoes", + "shallots", + "fresh parsley", + "arborio rice", + "olive oil", + "dry white wine", + "garlic cloves", + "black pepper", + "asparagus", + "salt", + "boiling water" + ] + }, + { + "id": 35705, + "cuisine": "mexican", + "ingredients": [ + "cream of tartar", + "milk", + "vegetable oil", + "salt", + "powdered sugar", + "mini m&ms", + "butter", + "eggs", + "baking soda", + "almond extract", + "sugar", + "flour", + "vanilla" + ] + }, + { + "id": 17363, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "beef sausage", + "shredded cheddar cheese", + "hot sauce", + "pepper", + "salt", + "grits", + "kale", + "garlic cloves" + ] + }, + { + "id": 383, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "quick-cooking oats", + "vanilla extract", + "confectioners sugar", + "ground cinnamon", + "baking soda", + "2% reduced-fat milk", + "all-purpose flour", + "glaze", + "sugar", + "butter", + "salt", + "sour cream", + "eggs", + "baking powder", + "peach slices", + "peach pie filling" + ] + }, + { + "id": 11166, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "plain low-fat yogurt", + "salt", + "finely chopped onion", + "pitas", + "plum tomatoes" + ] + }, + { + "id": 38725, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "grated lemon peel", + "powdered sugar", + "grappa", + "seedless red grapes" + ] + }, + { + "id": 2478, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "salt", + "ground black pepper", + "butter", + "feta cheese crumbles", + "large eggs", + "whipping cream", + "fresh basil leaves", + "pitted kalamata olives", + "green onions", + "oil" + ] + }, + { + "id": 11927, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "arrowroot powder", + "beef jerky", + "dried porcini mushrooms", + "chopped fresh thyme", + "garlic", + "bisquick", + "Madeira", + "salt and ground black pepper", + "button mushrooms", + "diced yellow onion", + "soy sauce", + "egg whites", + "beef tenderloin", + "frozen chopped spinach, thawed and squeezed dry" + ] + }, + { + "id": 9839, + "cuisine": "french", + "ingredients": [ + "milk", + "salt", + "dark chocolate", + "butter", + "yeast", + "sugar", + "vanilla extract", + "bread flour", + "egg yolks", + "all-purpose flour" + ] + }, + { + "id": 12332, + "cuisine": "italian", + "ingredients": [ + "guanciale", + "large eggs", + "ground black pepper", + "extra-virgin olive oil", + "parmigiano reggiano cheese", + "pasta", + "pecorino romano cheese" + ] + }, + { + "id": 906, + "cuisine": "mexican", + "ingredients": [ + "cod", + "salsa", + "corn chips", + "avocado", + "sour cream", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 41206, + "cuisine": "spanish", + "ingredients": [ + "large garlic cloves", + "olive oil", + "red bell pepper", + "extra-virgin olive oil", + "sherry wine vinegar", + "fresh parsley" + ] + }, + { + "id": 36112, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "bell pepper", + "bread slices", + "tomatoes", + "large eggs", + "cayenne pepper", + "jambon de bayonne", + "butter", + "onions", + "olive oil", + "large garlic cloves" + ] + }, + { + "id": 44007, + "cuisine": "mexican", + "ingredients": [ + "spinach", + "olive oil", + "green pepper", + "lime juice", + "chipotle", + "black beans", + "tortillas", + "onions", + "fresh cilantro", + "sweet potatoes" + ] + }, + { + "id": 15344, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "boneless skinless chicken breast halves", + "chicken broth", + "sun-dried tomatoes", + "salt", + "olives", + "dried basil", + "ground black pepper", + "onions", + "angel hair", + "artichoke hearts", + "feta cheese crumbles", + "dried oregano" + ] + }, + { + "id": 26362, + "cuisine": "italian", + "ingredients": [ + "instant espresso powder", + "savoiardi", + "marsala wine", + "coffee liqueur", + "unsweetened cocoa powder", + "large egg yolks", + "heavy cream", + "sugar", + "mascarpone", + "hot water" + ] + }, + { + "id": 7356, + "cuisine": "chinese", + "ingredients": [ + "cooked rice", + "minced garlic", + "green chilies", + "corn starch", + "black beans", + "green onions", + "oyster sauce", + "sugar", + "peeled fresh ginger", + "peanut oil", + "hot water", + "chinese black mushrooms", + "dry sherry", + "shrimp" + ] + }, + { + "id": 29106, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "salt", + "bacon bits", + "vegetable oil", + "self-rising cornmeal", + "green onions", + "sour cream", + "eggs", + "buttermilk" + ] + }, + { + "id": 7672, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "buttermilk", + "jalapeno chilies", + "self-rising cornmeal", + "large eggs", + "chopped onion", + "cream style corn", + "vegetable oil" + ] + }, + { + "id": 2424, + "cuisine": "korean", + "ingredients": [ + "olive oil", + "bean paste", + "noodles", + "sugar", + "prawns", + "cucumber", + "chicken stock", + "mirin", + "corn starch", + "water", + "red cabbage", + "onions" + ] + }, + { + "id": 32366, + "cuisine": "jamaican", + "ingredients": [ + "milk", + "cinnamon", + "oil", + "eggs", + "flour", + "salt", + "sugar", + "baking powder", + "cane sugar", + "nutmeg", + "bananas", + "vanilla", + "lemon juice" + ] + }, + { + "id": 3049, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "dried oregano", + "pepper", + "garlic", + "lemon juice", + "romaine lettuce", + "kalamata", + "croutons", + "egg substitute", + "purple onion", + "feta cheese crumbles" + ] + }, + { + "id": 48970, + "cuisine": "italian", + "ingredients": [ + "diced onions", + "olive oil", + "vegetable broth", + "black pepper", + "diced tomatoes", + "frozen mixed vegetables", + "pesto", + "zucchini", + "garlic cloves", + "water", + "cheese tortellini", + "dried oregano" + ] + }, + { + "id": 31865, + "cuisine": "thai", + "ingredients": [ + "jalapeno chilies", + "vinegar" + ] + }, + { + "id": 881, + "cuisine": "southern_us", + "ingredients": [ + "egg substitute", + "vegetable oil cooking spray", + "quickcooking grits", + "nonfat buttermilk", + "cornbread mix", + "reduced fat cheddar cheese", + "vegetable oil" + ] + }, + { + "id": 20718, + "cuisine": "italian", + "ingredients": [ + "romaine lettuce", + "chicken breasts", + "croutons", + "dressing", + "parmesan cheese", + "salt", + "tomatoes", + "dijon mustard", + "oil", + "pepper", + "cheese tortellini", + "sour cream" + ] + }, + { + "id": 19151, + "cuisine": "italian", + "ingredients": [ + "chives", + "salt", + "parmesan cheese", + "red wine vinegar", + "chopped fresh herbs", + "balsamic vinegar", + "garlic cloves", + "ground black pepper", + "extra-virgin olive oil", + "arugula" + ] + }, + { + "id": 48828, + "cuisine": "italian", + "ingredients": [ + "chopped fresh chives", + "boneless skinless chicken breast halves", + "ground chipotle chile pepper", + "brie cheese", + "lemon wedge", + "prosciutto", + "freshly ground pepper" + ] + }, + { + "id": 10387, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "heavy cream", + "pecan halves", + "large eggs", + "unsweetened chocolate", + "cream sweeten whip", + "unsalted butter", + "all-purpose flour", + "pecans", + "bourbon whiskey", + "bittersweet chocolate" + ] + }, + { + "id": 23711, + "cuisine": "british", + "ingredients": [ + "caster sugar", + "currant", + "suet", + "citrus peel", + "medium eggs", + "self rising flour", + "milk", + "salt" + ] + }, + { + "id": 12119, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "bread ciabatta", + "peaches", + "ground black pepper", + "honey", + "ricotta" + ] + }, + { + "id": 11266, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "salt", + "pineapple", + "mango", + "jalapeno chilies", + "fresh lime juice", + "black pepper", + "purple onion", + "ground cumin" + ] + }, + { + "id": 35656, + "cuisine": "mexican", + "ingredients": [ + "sliced olives", + "cream of mushroom soup", + "cream of chicken soup", + "taco seasoning", + "shredded cheddar cheese", + "boneless skinless chicken breasts", + "flour tortillas", + "enchilada sauce" + ] + }, + { + "id": 26193, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "wild salmon", + "cayenne", + "cream cheese", + "cottage cheese", + "salt", + "chopped fresh chives", + "fresh lime juice" + ] + }, + { + "id": 43929, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "marinara sauce", + "garlic cloves", + "chopped green bell pepper", + "salt", + "red bell pepper", + "fresh rosemary", + "parmigiano reggiano cheese", + "chopped onion", + "bone in chicken thighs", + "ground black pepper", + "chopped celery", + "sliced mushrooms" + ] + }, + { + "id": 34965, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "beef", + "shredded lettuce", + "sour cream", + "ground cumin", + "ground chuck", + "tortillas", + "onion powder", + "sauce", + "masa harina", + "sugar", + "garlic powder", + "chili powder", + "paprika", + "garlic salt", + "tostada shells", + "seasoning salt", + "beef bouillon powder", + "diced tomatoes", + "dried minced onion" + ] + }, + { + "id": 42952, + "cuisine": "filipino", + "ingredients": [ + "water", + "peppercorns", + "bay leaves", + "cooking oil", + "pork belly", + "salt" + ] + }, + { + "id": 43239, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "ground black pepper", + "cucumber", + "green cabbage", + "olive oil", + "salt", + "honey", + "red cabbage", + "granny smith apples", + "dried cherry", + "pumpkin seeds" + ] + }, + { + "id": 33579, + "cuisine": "thai", + "ingredients": [ + "large egg yolks", + "salt", + "whole milk", + "coconut milk", + "granulated sugar", + "corn starch", + "white bread", + "pandanus leaf" + ] + }, + { + "id": 20112, + "cuisine": "mexican", + "ingredients": [ + "chili habanero pepper", + "cilantro leaves", + "pork", + "extra-virgin olive oil", + "sour cream", + "lime", + "garlic", + "corn tortillas", + "sea salt", + "scallions" + ] + }, + { + "id": 29220, + "cuisine": "mexican", + "ingredients": [ + "cremini mushrooms", + "oyster mushrooms", + "fresh lime juice", + "rocket leaves", + "tomato salsa", + "rolls", + "shiitake", + "salt", + "chopped cilantro", + "soft goat's cheese", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 14972, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "red pepper flakes", + "dark sesame oil", + "sesame seeds", + "corn syrup", + "steak", + "minced garlic", + "sauce", + "kimchi", + "lettuce", + "apple cider vinegar", + "Gochujang base", + "somen" + ] + }, + { + "id": 11586, + "cuisine": "indian", + "ingredients": [ + "lime", + "oil", + "garlic paste", + "mackerel", + "red chile powder", + "juice", + "tumeric", + "salt" + ] + }, + { + "id": 17191, + "cuisine": "cajun_creole", + "ingredients": [ + "honey", + "extra-virgin olive oil", + "ground white pepper", + "coarse salt", + "cognac", + "ground black pepper", + "cayenne pepper", + "green beans", + "paprika", + "garlic cloves" + ] + }, + { + "id": 10834, + "cuisine": "thai", + "ingredients": [ + "water", + "sesame seeds", + "salt", + "gingerroot", + "fresh cilantro", + "vegetable oil", + "creamy peanut butter", + "ground lamb", + "lime juice", + "egg roll wrappers", + "hot sauce", + "fresh mint", + "minced garlic", + "honey", + "teriyaki sauce", + "dark sesame oil", + "ground cumin" + ] + }, + { + "id": 9650, + "cuisine": "cajun_creole", + "ingredients": [ + "red kidney beans", + "creole seasoning", + "sliced green onions", + "green bell pepper", + "long-grain rice", + "celery ribs", + "smoked chicken sausages", + "onions", + "water", + "garlic cloves" + ] + }, + { + "id": 11629, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "vegetable oil", + "pork chops", + "panko breadcrumbs", + "pepper", + "salt", + "flour" + ] + }, + { + "id": 31257, + "cuisine": "greek", + "ingredients": [ + "dried currants", + "coarse salt", + "garlic", + "bechamel", + "aleppo", + "eggplant", + "yellow bell pepper", + "freshly ground pepper", + "plum tomatoes", + "olive oil", + "idaho potatoes", + "ras el hanout", + "onions", + "ground cinnamon", + "lean ground beef", + "dry red wine", + "kefalotyri", + "ground lamb" + ] + }, + { + "id": 21287, + "cuisine": "korean", + "ingredients": [ + "water", + "extra firm tofu", + "baby spinach", + "carrots", + "kosher salt", + "lower sodium soy sauce", + "peeled fresh ginger", + "Gochujang base", + "shiitake mushroom caps", + "sugar", + "short-grain rice", + "large eggs", + "crushed red pepper", + "beansprouts", + "minced garlic", + "unsalted butter", + "apple cider vinegar", + "dark sesame oil" + ] + }, + { + "id": 22236, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "dandelion greens", + "large garlic cloves", + "hot red pepper flakes", + "salt" + ] + }, + { + "id": 42308, + "cuisine": "moroccan", + "ingredients": [ + "crushed tomatoes", + "paprika", + "lemon juice", + "onions", + "zucchini", + "salt", + "ground cayenne pepper", + "dried oregano", + "fresh ginger root", + "garlic", + "carrots", + "ground turmeric", + "chicken broth", + "boneless skinless chicken breasts", + "chickpeas", + "celery", + "ground cumin" + ] + }, + { + "id": 15008, + "cuisine": "french", + "ingredients": [ + "beans", + "red pepper flakes", + "carrots", + "plum tomatoes", + "diced onions", + "fennel", + "garlic cloves", + "bay leaf", + "celery ribs", + "olive oil", + "garlic", + "chopped parsley", + "prepar pesto", + "fresh thyme", + "diced celery", + "onions" + ] + }, + { + "id": 25959, + "cuisine": "irish", + "ingredients": [ + "sugar", + "all-purpose flour", + "unsalted butter" + ] + }, + { + "id": 33065, + "cuisine": "mexican", + "ingredients": [ + "pepper jack", + "garlic", + "all potato purpos", + "chopped onion", + "jalapeno chilies", + "oil", + "taco shells", + "cilantro" + ] + }, + { + "id": 1126, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "grated kefalotiri", + "leeks", + "ground cumin", + "eggplant", + "walnuts", + "cheddar cheese", + "phyllo" + ] + }, + { + "id": 6885, + "cuisine": "indian", + "ingredients": [ + "extra firm tofu", + "salt", + "curry powder", + "light coconut milk", + "mango", + "minced ginger", + "garlic", + "sesame oil", + "chopped cilantro" + ] + }, + { + "id": 29013, + "cuisine": "spanish", + "ingredients": [ + "zinfandel", + "merlot", + "dry red wine", + "burgundy", + "orange", + "pinot noir", + "lemon", + "sparkling mineral water" + ] + }, + { + "id": 43707, + "cuisine": "italian", + "ingredients": [ + "light butter", + "vanilla", + "ground black pepper", + "firmly packed light brown sugar", + "strawberries", + "amaretto" + ] + }, + { + "id": 42537, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "fresh tarragon", + "fresh lemon juice", + "minced garlic", + "extra-virgin olive oil", + "baguette", + "crushed red pepper flakes", + "plum tomatoes", + "finely chopped fresh parsley", + "garlic" + ] + }, + { + "id": 3146, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "tempeh", + "hot water", + "soy sauce", + "salt", + "red chili peppers", + "garlic", + "vegetable oil", + "roasted peanuts" + ] + }, + { + "id": 34526, + "cuisine": "mexican", + "ingredients": [ + "part-skim mozzarella cheese", + "salsa", + "fresh lemon juice", + "fresh cilantro", + "jalapeno chilies", + "chopped onion", + "tomatoes", + "flour tortillas", + "margarine", + "medium shrimp", + "corn kernels", + "salt", + "garlic cloves" + ] + }, + { + "id": 31868, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "pimento stuffed green olives", + "cherry tomatoes", + "garlic", + "olive oil", + "salt", + "dry white wine", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 27347, + "cuisine": "french", + "ingredients": [ + "reduced sodium chicken broth", + "dry white wine", + "rabbit", + "onions", + "cold water", + "unsalted butter", + "chopped fresh thyme", + "corn starch", + "whole grain mustard", + "vegetable oil", + "salt", + "black pepper", + "dijon mustard", + "large garlic cloves", + "thyme sprigs" + ] + }, + { + "id": 38359, + "cuisine": "mexican", + "ingredients": [ + "honey", + "salt", + "fresh lime juice", + "coleslaw", + "mayonaise", + "flour tortillas", + "all-purpose flour", + "adobo sauce", + "eggs", + "salt and ground black pepper", + "cilantro leaves", + "chipotles in adobo", + "ground cumin", + "tilapia fillets", + "vegetable oil", + "cayenne pepper", + "panko breadcrumbs" + ] + }, + { + "id": 34426, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "water chestnuts", + "hot sauce", + "cooked chicken breasts", + "vegetable oil cooking spray", + "fresh cilantro", + "reduced sodium teriyaki sauce", + "gingerroot", + "ground cumin", + "minced garlic", + "sesame seeds", + "vegetable oil", + "fresh mint", + "water", + "egg roll wrappers", + "salt", + "apricots" + ] + }, + { + "id": 20234, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "vegetable oil", + "shrimp", + "chopped cilantro fresh", + "grape tomatoes", + "jalapeno chilies", + "salt", + "tequila", + "avocado", + "olive oil", + "shredded lettuce", + "smoked paprika", + "cumin", + "lime juice", + "chili powder", + "cayenne pepper", + "corn tortillas" + ] + }, + { + "id": 15289, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "basil", + "cherry tomatoes", + "flour", + "salt", + "ground black pepper", + "cooking spray", + "corn kernels", + "grated parmesan cheese", + "1% low-fat milk" + ] + }, + { + "id": 46167, + "cuisine": "greek", + "ingredients": [ + "ground red pepper", + "sun-dried tomatoes in oil", + "dried basil", + "garlic cloves", + "mayonaise", + "chickpeas", + "grated parmesan cheese", + "lemon juice" + ] + }, + { + "id": 30186, + "cuisine": "indian", + "ingredients": [ + "cinnamon sticks", + "butter", + "onions", + "water", + "bay leaf", + "salt", + "basmati rice" + ] + }, + { + "id": 20606, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "warm water", + "all-purpose flour", + "active dry yeast", + "sugar", + "salt" + ] + }, + { + "id": 12611, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "salt", + "corn tortillas" + ] + }, + { + "id": 2172, + "cuisine": "italian", + "ingredients": [ + "grated orange peel", + "garlic", + "black peppercorns", + "lemon", + "salt", + "chili flakes", + "extra-virgin olive oil", + "flat leaf parsley", + "sherry vinegar", + "artichokes" + ] + }, + { + "id": 27209, + "cuisine": "italian", + "ingredients": [ + "eggs", + "prosciutto", + "unbaked pie crusts", + "ricotta cheese", + "cooked ham", + "grated parmesan cheese", + "genoa salami", + "mozzarella cheese" + ] + }, + { + "id": 19403, + "cuisine": "jamaican", + "ingredients": [ + "pepper sauce", + "seasoning salt", + "garlic", + "black pepper", + "potatoes", + "skinless chicken thighs", + "jamaican curry powder", + "fresh thyme", + "scallions", + "Jamaican allspice", + "water", + "bell pepper", + "onions" + ] + }, + { + "id": 42587, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "chicken broth", + "shrimp", + "diced tomatoes", + "cooked rice", + "gumbo" + ] + }, + { + "id": 11243, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "olive oil", + "guacamole", + "butter", + "ground allspice", + "ground cumin", + "shredded cheddar cheese", + "unsalted butter", + "russet potatoes", + "cilantro", + "sour cream", + "kosher salt", + "cayenne", + "flank steak", + "worcestershire sauce", + "orange juice", + "lime juice", + "jalapeno chilies", + "red wine vinegar", + "garlic", + "dried oregano" + ] + }, + { + "id": 41731, + "cuisine": "indian", + "ingredients": [ + "bread crumbs", + "paneer", + "oil", + "cheese", + "all-purpose flour", + "coriander", + "chana dal", + "salt", + "corn starch", + "chili flakes", + "garlic", + "green chilies", + "masala" + ] + }, + { + "id": 22754, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "diced tomatoes", + "ground cumin", + "diced green chilies", + "chopped cilantro fresh", + "yellow hominy", + "shredded Monterey Jack cheese", + "minced garlic", + "salt" + ] + }, + { + "id": 26183, + "cuisine": "mexican", + "ingredients": [ + "baby spinach", + "pumpkin seeds", + "heavy whipping cream", + "vegetable oil", + "anise", + "low salt chicken broth", + "chopped cilantro fresh", + "butter", + "grated jack cheese", + "poblano chiles", + "corn husks", + "hierba santa", + "bass fillets", + "corn tortillas" + ] + }, + { + "id": 44003, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large garlic cloves", + "salt", + "medium shrimp", + "cockles", + "basil leaves", + "crushed red pepper", + "thyme sprigs", + "mussels", + "bottled clam juice", + "extra-virgin olive oil", + "squid", + "tentacles", + "italian plum tomatoes", + "linguine", + "freshly ground pepper" + ] + }, + { + "id": 36675, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "sugar", + "shallots", + "red chili peppers", + "large garlic cloves", + "fish sauce", + "lime juice" + ] + }, + { + "id": 28946, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "smoked sausage", + "celery", + "red kidney beans", + "white rice", + "margarine", + "green bell pepper", + "garlic", + "creole seasoning", + "ground black pepper", + "salt", + "onions" + ] + }, + { + "id": 29468, + "cuisine": "indian", + "ingredients": [ + "shell-on shrimp", + "garlic cloves", + "ground turmeric", + "fresh curry leaves", + "ginger", + "onions", + "coconut", + "ground coriander", + "serrano chile", + "tomatoes", + "vegetable oil", + "mustard seeds", + "ground cumin" + ] + }, + { + "id": 8647, + "cuisine": "mexican", + "ingredients": [ + "piloncillo", + "large egg yolks", + "strawberries", + "vanilla beans", + "dark rum", + "chopped fresh mint", + "unsweetened coconut milk", + "large egg whites", + "sweetened coconut flakes", + "mango", + "sugar", + "flour tortillas", + "coarse kosher salt" + ] + }, + { + "id": 21945, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "capsicum", + "oyster sauce", + "clove", + "black pepper", + "salt", + "chicken fillets", + "soy sauce", + "ginger", + "dried chile", + "red chili powder", + "water", + "oil" + ] + }, + { + "id": 18450, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "unsalted butter", + "olive oil", + "all-purpose flour", + "chicken stock", + "veal loin", + "prosciutto" + ] + }, + { + "id": 15577, + "cuisine": "french", + "ingredients": [ + "sliced almonds", + "salt", + "butter", + "pepper", + "lemon juice", + "fresh green bean" + ] + }, + { + "id": 23590, + "cuisine": "southern_us", + "ingredients": [ + "mint", + "large egg yolks", + "jalapeno chilies", + "shallots", + "salt", + "fresh lime juice", + "pepper", + "radishes", + "chives", + "yellow bell pepper", + "garlic cloves", + "asian fish sauce", + "shucked oysters", + "unsalted butter", + "whole milk", + "vegetable oil", + "all-purpose flour", + "chopped cilantro", + "stone-ground cornmeal", + "large eggs", + "baking powder", + "extra-virgin olive oil", + "red bell pepper", + "grated orange" + ] + }, + { + "id": 15202, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "salt", + "olive oil", + "portabello mushroom", + "red bell pepper", + "mozzarella cheese", + "basil leaves", + "pizza doughs", + "ground black pepper", + "garlic" + ] + }, + { + "id": 10944, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "water chestnuts", + "ground pork", + "dark soy sauce", + "light soy sauce", + "sesame oil", + "minced ginger", + "Shaoxing wine", + "corn starch", + "sugar", + "enokitake", + "napa cabbage" + ] + }, + { + "id": 21386, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "star anise", + "chicken legs", + "fresh ginger", + "ice", + "soy sauce", + "hoisin sauce", + "orange zest", + "cold water", + "curing salt", + "dark brown sugar" + ] + }, + { + "id": 12644, + "cuisine": "british", + "ingredients": [ + "ground ginger", + "heavy whipping cream", + "graham cracker crumbs", + "sweetened condensed milk", + "bananas", + "white sugar", + "butter" + ] + }, + { + "id": 17224, + "cuisine": "mexican", + "ingredients": [ + "chili flakes", + "garlic powder", + "dried parsley", + "tomato sauce", + "chili powder", + "cumin", + "water", + "onion powder", + "olive oil", + "brown rice flour" + ] + }, + { + "id": 18125, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "cinnamon", + "ground coriander", + "panko breadcrumbs", + "olive oil", + "garlic", + "fresh parsley", + "ground cumin", + "eggs", + "diced tomatoes", + "fresh mint", + "ground lamb", + "ground black pepper", + "salt", + "onions" + ] + }, + { + "id": 34489, + "cuisine": "french", + "ingredients": [ + "sea salt", + "chestnuts", + "crème fraîche", + "ground black pepper", + "chicken stock", + "star anise" + ] + }, + { + "id": 7074, + "cuisine": "italian", + "ingredients": [ + "turkey legs", + "salt", + "juice", + "black pepper", + "lemon zest", + "anchovy fillets", + "onions", + "reduced sodium chicken broth", + "dry white wine", + "garlic cloves", + "orange zest", + "tomatoes", + "olive oil", + "all-purpose flour", + "flat leaf parsley" + ] + }, + { + "id": 9537, + "cuisine": "spanish", + "ingredients": [ + "chicken stock", + "olive oil", + "onion powder", + "dri leav thyme", + "onions", + "white pepper", + "ground nutmeg", + "salt", + "shrimp", + "black pepper", + "garlic powder", + "paprika", + "ham", + "dried oregano", + "dried basil", + "dry white wine", + "all-purpose flour", + "chicken pieces" + ] + }, + { + "id": 27986, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "shredded cheddar cheese", + "enchilada sauce", + "beef stew meat", + "refried beans" + ] + }, + { + "id": 35707, + "cuisine": "greek", + "ingredients": [ + "water", + "celery", + "eggs", + "lemon", + "chicken", + "orzo pasta", + "onions", + "kosher salt", + "carrots" + ] + }, + { + "id": 32984, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "low sodium chicken broth", + "italian chicken sausage", + "grated parmesan cheese", + "chardonnay", + "sweet onion", + "ground black pepper", + "sweet peas", + "arborio rice", + "olive oil", + "garlic" + ] + }, + { + "id": 16913, + "cuisine": "chinese", + "ingredients": [ + "chili oil", + "yardlong beans", + "hoisin sauce", + "sauce", + "vegetable oil" + ] + }, + { + "id": 18633, + "cuisine": "jamaican", + "ingredients": [ + "sauce", + "jerk seasoning", + "chicken breasts" + ] + }, + { + "id": 1752, + "cuisine": "french", + "ingredients": [ + "parsley sprigs", + "unsalted butter", + "all-purpose flour", + "bay leaf", + "black peppercorns", + "veal breast", + "crème fraîche", + "thyme sprigs", + "water", + "leeks", + "fresh lemon juice", + "onions", + "large egg yolks", + "mushrooms", + "carrots", + "boneless veal shoulder" + ] + }, + { + "id": 39465, + "cuisine": "british", + "ingredients": [ + "brussels sprouts", + "ground black pepper", + "all-purpose flour", + "kosher salt", + "vegetable oil", + "eggs", + "unsalted butter", + "onions", + "milk", + "russet potatoes" + ] + }, + { + "id": 11984, + "cuisine": "mexican", + "ingredients": [ + "salt", + "fresh lime juice", + "pepper", + "jelly", + "salsa", + "center cut loin pork chop", + "cooking spray", + "tequila" + ] + }, + { + "id": 36601, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "baking powder", + "gala apples", + "granulated sugar", + "vanilla extract", + "honey", + "butter", + "blackberries", + "firmly packed light brown sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 39053, + "cuisine": "southern_us", + "ingredients": [ + "chocolate", + "peanuts", + "vanilla cream" + ] + }, + { + "id": 24171, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "ginger", + "canola oil", + "trout", + "garlic cloves", + "Shaoxing wine", + "fermented black beans", + "soy sauce", + "scallions" + ] + }, + { + "id": 21484, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "marinade", + "rice", + "salad oil", + "green bell pepper", + "pepper", + "salt", + "oyster sauce", + "sake", + "chicken breasts", + "sauce", + "corn starch", + "chicken stock", + "soy sauce", + "ginger", + "garlic cloves", + "celery" + ] + }, + { + "id": 9470, + "cuisine": "italian", + "ingredients": [ + "water", + "zucchini", + "salt", + "fettucine", + "olive oil", + "whole milk", + "cherry tomatoes", + "mint leaves", + "minced garlic", + "ground black pepper", + "buttermilk" + ] + }, + { + "id": 29464, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "salt", + "ripe olives", + "tomato sauce", + "chicken breast halves", + "shredded mozzarella cheese", + "angel hair", + "zucchini", + "fresh mushrooms", + "onions", + "pepper", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 41893, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "fresh thyme leaves", + "grated lemon peel", + "broccoli florets", + "fresh lemon juice", + "olive oil", + "butter", + "grated parmesan cheese", + "dried fettuccine" + ] + }, + { + "id": 27550, + "cuisine": "mexican", + "ingredients": [ + "lime", + "butter", + "shredded mozzarella cheese", + "jalapeno chilies", + "all-purpose flour", + "corn tortillas", + "poblano peppers", + "garlic", + "sour cream", + "fresh cilantro", + "half & half", + "fresh mushrooms", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 13761, + "cuisine": "indian", + "ingredients": [ + "golden raisins", + "cilantro", + "lentils", + "water", + "brown rice", + "fine sea salt", + "coconut milk", + "tomato paste", + "green onions", + "ginger", + "carrots", + "curry powder", + "butter", + "split peas" + ] + }, + { + "id": 16305, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "half & half", + "chopped fresh thyme", + "arugula", + "salmon fillets", + "fresh parmesan cheese", + "leeks", + "garlic cloves", + "fat free less sodium chicken broth", + "ground black pepper", + "dry white wine", + "thyme", + "arborio rice", + "garnish", + "cooking spray", + "sea salt", + "plum tomatoes" + ] + }, + { + "id": 42878, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "olive oil", + "chicken", + "ketchup", + "balsamic vinegar", + "frozen orange juice concentrate", + "flour", + "kosher salt", + "boneless chicken" + ] + }, + { + "id": 42632, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "pecorino romano cheese", + "cayenne pepper", + "toasted pecans", + "grated parmesan cheese", + "sea salt", + "spinach leaves", + "lemon zest", + "lemon", + "flat leaf parsley", + "olive oil", + "basil leaves", + "garlic" + ] + }, + { + "id": 40679, + "cuisine": "mexican", + "ingredients": [ + "slaw mix", + "barbecue sauce", + "nonstick spray", + "low-fat sesame-ginger dressing", + "skinless chicken breasts", + "wonton wrappers", + "chopped cilantro fresh" + ] + }, + { + "id": 23552, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "salt", + "soda", + "chinese five-spice powder", + "instant yeast", + "all-purpose flour", + "sugar", + "ice water", + "oil" + ] + }, + { + "id": 8510, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "pork loin", + "cilantro", + "ground cumin", + "chile powder", + "white hominy", + "chile pepper", + "enchilada sauce", + "bacon drippings", + "kosher salt", + "Mexican oregano", + "garlic", + "chicken stock", + "jalapeno chilies", + "bacon", + "onions" + ] + }, + { + "id": 24497, + "cuisine": "mexican", + "ingredients": [ + "stew", + "water", + "cilantro", + "bay leaf", + "tomatoes", + "olive oil", + "garlic", + "cumin", + "red potato", + "light beer", + "salt", + "adobo", + "achiote", + "scallions" + ] + }, + { + "id": 6140, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "crushed red pepper flakes", + "brown sugar", + "green onions", + "garlic cloves", + "soy sauce", + "sesame oil", + "pears", + "pork tenderloin", + "rice vinegar" + ] + }, + { + "id": 18048, + "cuisine": "mexican", + "ingredients": [ + "roma tomatoes", + "hot sauce", + "iceberg lettuce", + "grilled chicken", + "salsa", + "chopped cilantro", + "cheddar cheese", + "vegetable oil", + "corn tortillas", + "guacamole", + "sour cream" + ] + }, + { + "id": 43781, + "cuisine": "cajun_creole", + "ingredients": [ + "dinner rolls", + "sausages", + "green leaf lettuce", + "cajun seasoning", + "remoulade", + "ground beef" + ] + }, + { + "id": 21464, + "cuisine": "vietnamese", + "ingredients": [ + "rice sticks", + "rice vinegar", + "fresh lime juice", + "chopped cilantro fresh", + "sugar", + "fresh shiitake mushrooms", + "carrots", + "mung bean sprouts", + "iceberg lettuce", + "chili", + "cilantro leaves", + "fresh mint", + "fresh basil leaves", + "fish sauce", + "olive oil", + "garlic cloves", + "medium shrimp", + "hothouse cucumber" + ] + }, + { + "id": 111, + "cuisine": "mexican", + "ingredients": [ + "salt", + "lime", + "tomatoes", + "onions", + "cilantro" + ] + }, + { + "id": 12922, + "cuisine": "spanish", + "ingredients": [ + "fillet red snapper", + "diced tomatoes", + "chopped cilantro fresh", + "ground red pepper", + "salsa", + "cooking spray", + "salt", + "ground cumin", + "green olives", + "lime wedges", + "pinto beans" + ] + }, + { + "id": 34688, + "cuisine": "southern_us", + "ingredients": [ + "mini marshmallows", + "carrots", + "ground cinnamon", + "raisins", + "flaked coconut", + "plain yogurt", + "pineapple" + ] + }, + { + "id": 39177, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "tortilla chips", + "shredded cheddar cheese", + "chopped onion", + "salsa", + "ground turkey", + "bow-tie pasta", + "taco seasoning" + ] + }, + { + "id": 6805, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "bay leaf", + "dried pinto beans", + "onions", + "vegetable oil", + "chipotles in adobo", + "kosher salt", + "garlic" + ] + }, + { + "id": 43282, + "cuisine": "mexican", + "ingredients": [ + "lemon slices", + "apple cider", + "tequila", + "fresh lemon juice", + "salt", + "orange liqueur" + ] + }, + { + "id": 21214, + "cuisine": "french", + "ingredients": [ + "shallots", + "salt", + "dijon mustard", + "white wine vinegar", + "dried tarragon leaves", + "whipping cream", + "green peppercorns", + "fresh tarragon", + "cognac" + ] + }, + { + "id": 37430, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "sour cream", + "mayonaise", + "green onions", + "jalapeno chilies", + "shredded cheddar cheese", + "mexicorn" + ] + }, + { + "id": 23224, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "garam masala", + "rice", + "black mustard seeds", + "red chili powder", + "salt", + "cumin seed", + "ground turmeric", + "tomatoes", + "coriander powder", + "green chilies", + "onions", + "ground fennel", + "asafoetida", + "cilantro leaves", + "oil" + ] + }, + { + "id": 37205, + "cuisine": "british", + "ingredients": [ + "pepper", + "baking potatoes", + "self rising flour", + "oil", + "fish fillets", + "lemon wedge", + "water", + "salt" + ] + }, + { + "id": 45106, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "garlic powder", + "romaine lettuce leaves", + "plum tomatoes", + "olive oil", + "dijon mustard", + "lemon juice", + "dried basil", + "baby greens", + "purple onion", + "dried oregano", + "feta cheese", + "red wine vinegar", + "cucumber" + ] + }, + { + "id": 20911, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "finely chopped onion", + "chopped celery", + "garlic cloves", + "applewood smoked bacon", + "savoy cabbage", + "ground black pepper", + "chopped fresh thyme", + "chopped fresh sage", + "flat leaf parsley", + "olive oil", + "yukon gold potatoes", + "pearl barley", + "green beans", + "water", + "cannellini beans", + "salt", + "carrots", + "sliced green onions" + ] + }, + { + "id": 30065, + "cuisine": "russian", + "ingredients": [ + "eggs", + "salt", + "onions", + "bay leaves", + "carrots", + "vegetable oil", + "ground beef", + "potatoes", + "dill tips" + ] + }, + { + "id": 19645, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "globe eggplant", + "white wine vinegar", + "fresh basil", + "heirloom tomatoes", + "mozzarella cheese", + "plum tomatoes" + ] + }, + { + "id": 15278, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cheese slices", + "garlic cloves", + "vegetable oil cooking spray", + "light mayonnaise", + "purple onion", + "frozen spinach", + "refrigerated pizza dough", + "balsamic vinegar", + "olive oil", + "chicken breast halves", + "italian seasoning" + ] + }, + { + "id": 22930, + "cuisine": "cajun_creole", + "ingredients": [ + "baking soda", + "oil", + "whole milk", + "confectioners sugar", + "sugar", + "buttermilk", + "bread flour", + "active dry yeast", + "salt" + ] + }, + { + "id": 38547, + "cuisine": "greek", + "ingredients": [ + "plain yogurt", + "cucumber", + "grated lemon zest", + "fresh dill", + "garlic cloves", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 5801, + "cuisine": "southern_us", + "ingredients": [ + "mini marshmallows", + "sweetened condensed milk", + "semi-sweet chocolate morsels", + "dry roasted peanuts" + ] + }, + { + "id": 14902, + "cuisine": "italian", + "ingredients": [ + "chili flakes", + "chopped tomatoes", + "garlic cloves", + "salad", + "baguette", + "zucchini", + "mozzarella cheese", + "roasted red peppers", + "oregano leaves", + "tomatoes", + "eggplant", + "basil" + ] + }, + { + "id": 14461, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "bay leaves", + "littleneck clams", + "sweet onion", + "hot pepper", + "olive oil", + "large garlic cloves", + "crushed tomatoes", + "dry white wine", + "red bell pepper" + ] + }, + { + "id": 42256, + "cuisine": "french", + "ingredients": [ + "boneless skinless chicken breasts", + "condensed cream of chicken soup", + "butter", + "white wine", + "diced ham", + "shredded swiss cheese" + ] + }, + { + "id": 44944, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "fresh lemon juice", + "plum tomatoes", + "greek seasoning", + "fresh thyme", + "feta cheese crumbles", + "olive oil", + "shrimp", + "french baguette", + "green onions", + "chopped parsley" + ] + }, + { + "id": 25180, + "cuisine": "japanese", + "ingredients": [ + "melted butter", + "panko breadcrumbs", + "large eggs", + "italian seasoning", + "zucchini", + "garlic salt", + "grated parmesan cheese" + ] + }, + { + "id": 22854, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "garlic", + "cream cheese", + "milk", + "all-purpose flour", + "butter", + "salsa", + "boneless chicken skinless thigh", + "bow-tie pasta" + ] + }, + { + "id": 41328, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "sherry", + "linguine", + "water", + "clove garlic, fine chop", + "ground ginger", + "Lipton® Recipe Secrets® Onion Soup Mix", + "bok choy" + ] + }, + { + "id": 18959, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "nonfat yogurt", + "dried rosemary", + "olive oil", + "salt", + "vegetable oil cooking spray", + "pita bread rounds", + "boneless lamb", + "garlic powder", + "cucumber" + ] + }, + { + "id": 29512, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "cheese tortellini", + "butter", + "pepper", + "heavy cream", + "marinara sauce", + "salt" + ] + }, + { + "id": 19514, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "sea salt", + "parmigiano reggiano cheese", + "penne rigate", + "olive oil", + "anchovy fillets", + "tomatoes", + "red pepper flakes", + "flat leaf parsley" + ] + }, + { + "id": 8697, + "cuisine": "mexican", + "ingredients": [ + "bread", + "tortilla chips", + "jalapeno chilies", + "jack cheese", + "cream cheese", + "butter" + ] + }, + { + "id": 31256, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "yellow onion", + "ground beef", + "jumbo pasta shells", + "taco seasoning", + "mozzarella cheese", + "cream cheese", + "salsa", + "enchilada sauce" + ] + }, + { + "id": 20165, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "extra-virgin olive oil", + "vegetable oil spray", + "fresh lemon juice", + "fingerling potatoes", + "grated lemon peel", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 10512, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "egg yolks", + "fresh lemon juice", + "lemon zest", + "garlic cloves", + "white pepper", + "white truffle oil", + "fresh asparagus" + ] + }, + { + "id": 41799, + "cuisine": "jamaican", + "ingredients": [ + "pepper sauce", + "green onions", + "garlic", + "long-grain rice", + "ground turmeric", + "pork tenderloin", + "no-salt-added black beans", + "ground allspice", + "fresh lime juice", + "dried thyme", + "sliced carrots", + "chopped onion", + "red bell pepper", + "vegetable oil cooking spray", + "ground red pepper", + "salt", + "no salt added chicken broth" + ] + }, + { + "id": 9474, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "fresh lemon juice", + "olive oil", + "salt", + "fettucine", + "asparagus", + "dried oregano", + "fresh parmesan cheese", + "grated lemon zest" + ] + }, + { + "id": 19751, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "chopped cilantro fresh", + "pineapple juice", + "brown sugar", + "fresh lemon juice", + "purple onion", + "mango" + ] + }, + { + "id": 14209, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "green onions", + "granulated sugar", + "ginger", + "garlic powder", + "sesame oil", + "soy sauce", + "beef" + ] + }, + { + "id": 25532, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "vanilla extract", + "powdered sugar", + "large eggs", + "heavy whipping cream", + "cream of tartar", + "semisweet chocolate", + "salt", + "sugar", + "dark rum" + ] + }, + { + "id": 46737, + "cuisine": "british", + "ingredients": [ + "fresh blueberries", + "greek style plain yogurt", + "powdered sugar", + "vanilla extract", + "lemon juice", + "heavy cream", + "blueberries", + "granulated sugar", + "salt", + "corn starch" + ] + }, + { + "id": 30881, + "cuisine": "filipino", + "ingredients": [ + "lemongrass", + "salt", + "leeks", + "ground black pepper", + "chicken", + "banana leaves" + ] + }, + { + "id": 26912, + "cuisine": "mexican", + "ingredients": [ + "corn husks", + "chopped onion", + "masa dough", + "fat free less sodium chicken broth", + "hot sauce", + "hot water", + "roast breast of chicken", + "non-fat sour cream", + "fresh lemon juice", + "pork sausages", + "saffron threads", + "cooking spray", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 13877, + "cuisine": "indian", + "ingredients": [ + "mustard", + "tumeric", + "vinegar", + "boneless chicken", + "oil", + "tomato purée", + "black pepper", + "chili powder", + "salt", + "ginger paste", + "tomatoes", + "sugar", + "capsicum", + "ginger", + "onions", + "garlic paste", + "garam masala", + "red capsicum", + "tomato ketchup", + "ground cumin" + ] + }, + { + "id": 26093, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "celery", + "kidney beans", + "broth", + "kielbasa", + "long grain white rice", + "olive oil", + "onions" + ] + }, + { + "id": 3986, + "cuisine": "british", + "ingredients": [ + "black pepper", + "worcestershire sauce", + "mustard", + "large eggs", + "stilton cheese", + "white vinegar", + "finely chopped onion", + "salt", + "chicken broth", + "vegetable oil" + ] + }, + { + "id": 34605, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "water", + "radishes", + "cheese", + "pork shoulder", + "cabbage", + "chiles", + "olive oil", + "queso fresco", + "salt", + "dried oregano", + "chicken stock", + "lime", + "cake", + "garlic", + "onions", + "pepper", + "hominy", + "cilantro", + "tortilla chips", + "cumin" + ] + }, + { + "id": 45008, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "green tomatoes", + "salt", + "ground cumin", + "yellow corn meal", + "cooking spray", + "cilantro sprigs", + "chopped cilantro fresh", + "water", + "green onions", + "1% low-fat milk", + "shredded Monterey Jack cheese", + "jalapeno chilies", + "queso fresco", + "garlic cloves" + ] + }, + { + "id": 37239, + "cuisine": "british", + "ingredients": [ + "coffee extract", + "vanilla essence", + "dates", + "bicarbonate of soda", + "self rising flour", + "boiling water", + "eggs", + "caster sugar", + "golden syrup", + "black treacle", + "butter" + ] + }, + { + "id": 9841, + "cuisine": "italian", + "ingredients": [ + "yellow tomato", + "extra-virgin olive oil", + "fresh basil", + "freshly ground pepper", + "chees fresh mozzarella", + "tomatoes", + "salt" + ] + }, + { + "id": 4744, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "green pepper", + "onions", + "celery ribs", + "diced tomatoes", + "garlic cloves", + "sugar", + "hot sauce", + "flat leaf parsley", + "green onions", + "creole seasoning" + ] + }, + { + "id": 17242, + "cuisine": "cajun_creole", + "ingredients": [ + "paprika", + "ground black pepper", + "ground white pepper", + "garlic powder", + "cayenne pepper", + "chili powder" + ] + }, + { + "id": 32874, + "cuisine": "italian", + "ingredients": [ + "capers", + "water", + "diced tomatoes", + "diced onions", + "sugar", + "chopped green bell pepper", + "garlic cloves", + "pitted kalamata olives", + "olive oil", + "cauliflower florets", + "tomato paste", + "black pepper", + "red wine vinegar" + ] + }, + { + "id": 46077, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic", + "chicken broth", + "jalapeno chilies", + "onions", + "whole peeled tomatoes", + "vermicelli noodles", + "fresh cilantro", + "vegetable oil", + "cumin" + ] + }, + { + "id": 10668, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "jalapeno chilies", + "garlic", + "cayenne pepper", + "black beans", + "olive oil", + "brown rice", + "cilantro leaves", + "curly kale", + "cherry tomatoes", + "shallots", + "salt", + "cumin", + "lime juice", + "salsa verde", + "chili powder", + "hot sauce" + ] + }, + { + "id": 31801, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "soy sauce", + "angel hair", + "stir fry vegetable blend" + ] + }, + { + "id": 21829, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "leeks", + "salt", + "corn starch", + "chicken stock", + "ground black pepper", + "ground sichuan pepper", + "garlic cloves", + "soy sauce", + "chicken breasts", + "peanut oil", + "chinese black vinegar", + "chinese rice wine", + "egg whites", + "ginger", + "garlic chili sauce" + ] + }, + { + "id": 28252, + "cuisine": "greek", + "ingredients": [ + "canned low sodium chicken broth", + "boneless skinless chicken breasts", + "fresh parsley", + "feta cheese", + "salt", + "ground black pepper", + "lemon juice", + "cherry tomatoes", + "ziti", + "dried oregano" + ] + }, + { + "id": 64, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "butter", + "ground cumin", + "onion powder", + "salt", + "ground black pepper", + "paprika", + "boneless chop pork", + "vegetable oil", + "cayenne pepper" + ] + }, + { + "id": 24827, + "cuisine": "russian", + "ingredients": [ + "sugar", + "egg yolks", + "unsalted butter", + "cream cheese", + "vanilla sugar", + "cottage cheese", + "whipping cream" + ] + }, + { + "id": 8987, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "chili", + "chopped fresh thyme", + "sweet paprika", + "shrimp", + "tomatoes", + "ground black pepper", + "yellow onion", + "garlic cloves", + "chicken broth", + "olive oil", + "salt", + "long-grain rice", + "boneless skinless chicken breast halves", + "green bell pepper", + "unsalted butter", + "cayenne pepper", + "ham" + ] + }, + { + "id": 33478, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "parmesan cheese", + "extra-virgin olive oil", + "italian seasoning", + "olive oil", + "coarse salt", + "white wine vinegar", + "mozzarella cheese", + "fresh thyme", + "garlic", + "pasta", + "artichoke hearts", + "baby spinach", + "fresh lemon juice" + ] + }, + { + "id": 17894, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "salt", + "calamansi juice", + "white sugar", + "powdered sugar", + "all-purpose flour", + "butter" + ] + }, + { + "id": 17390, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "light soy sauce", + "red wine vinegar", + "boneless pork loin", + "ground white pepper", + "dried black mushrooms", + "reduced sodium chicken broth", + "lily buds", + "cilantro leaves", + "peanut oil", + "sugar", + "large eggs", + "tree ear mushrooms", + "firm tofu", + "bamboo shoots", + "scallion greens", + "kosher salt", + "sesame oil", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 11238, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "ricotta cheese", + "prosciutto", + "fresh parsley leaves", + "tomato sauce", + "cheese", + "large eggs", + "prepared lasagne" + ] + }, + { + "id": 11447, + "cuisine": "cajun_creole", + "ingredients": [ + "crawfish", + "vegetable oil", + "garlic cloves", + "mayonaise", + "green onions", + "worcestershire sauce", + "large eggs", + "cajun seasoning", + "lemon juice", + "bread crumbs", + "ground red pepper", + "cilantro sprigs" + ] + }, + { + "id": 23663, + "cuisine": "italian", + "ingredients": [ + "sliced tomatoes", + "fresh mozzarella", + "grated parmesan cheese", + "fresh basil", + "tapenade", + "frozen pastry puff sheets" + ] + }, + { + "id": 11222, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "zucchini", + "onions", + "pepper", + "salt", + "hominy", + "fresh lime juice", + "fat free less sodium chicken broth", + "vegetable oil" + ] + }, + { + "id": 27075, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "garlic", + "cayenne pepper", + "paprika", + "salt", + "ground cumin", + "garam masala", + "purple onion", + "ground cardamom", + "ginger", + "skin on bone in chicken legs" + ] + }, + { + "id": 11084, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "salt", + "shrimp", + "mussels", + "black pepper", + "crabmeat", + "saffron", + "clams", + "fish fillets", + "cayenne pepper", + "onions", + "pure olive oil", + "cilantro", + "garlic cloves" + ] + }, + { + "id": 38153, + "cuisine": "mexican", + "ingredients": [ + "water", + "corn chips", + "cream cheese", + "ground beef", + "cumin", + "avocado", + "garlic powder", + "garlic", + "sour cream", + "chopped cilantro fresh", + "diced onions", + "olive oil", + "shredded lettuce", + "pinto beans", + "coriander", + "masa harina", + "shredded cheddar cheese", + "chili powder", + "salt", + "fresh lime juice", + "dried oregano" + ] + }, + { + "id": 35130, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "garam masala", + "cayenne pepper", + "ground cardamom", + "plain low-fat yogurt", + "fresh ginger", + "heavy cream", + "freshly ground pepper", + "ground turmeric", + "chile powder", + "peeled tomatoes", + "vegetable oil", + "ground coriander", + "onions", + "sugar", + "almonds", + "salt", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 23276, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "carrots", + "tomato sauce", + "salt", + "onions", + "green peas", + "low salt chicken broth", + "minced garlic", + "frozen corn kernels", + "long grain white rice" + ] + }, + { + "id": 7472, + "cuisine": "indian", + "ingredients": [ + "diced tomatoes", + "curry", + "cinnamon sticks", + "dhal", + "ginger", + "cumin seed", + "onions", + "serrano chilies", + "garlic", + "mustard seeds", + "ground turmeric", + "crushed red pepper flakes", + "salt", + "coconut milk" + ] + }, + { + "id": 22187, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "red wine vinegar", + "fresh oregano", + "lime", + "jalapeno chilies", + "garlic", + "kosher salt", + "parsley leaves", + "crushed red pepper flakes", + "medium shrimp", + "olive oil", + "shallots", + "cilantro leaves" + ] + }, + { + "id": 19197, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "baking powder", + "chopped fresh sage", + "unsalted butter", + "salt", + "baking soda", + "buttermilk", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 38420, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "dried oregano", + "dry white wine", + "fresh lemon juice", + "pepper", + "garlic cloves", + "salt" + ] + }, + { + "id": 2028, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cooking oil", + "corn starch", + "spring roll wrappers", + "water", + "napa cabbage", + "pork shoulder", + "sugar", + "shiitake", + "peanut oil", + "kosher salt", + "Shaoxing wine", + "beansprouts" + ] + }, + { + "id": 3824, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "salt", + "ground cumin", + "chili pepper", + "ground red pepper", + "long-grain rice", + "black pepper", + "sea scallops", + "cilantro leaves", + "water", + "lime wedges", + "ground turmeric" + ] + }, + { + "id": 27451, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "asparagus", + "scallions", + "shiitake", + "sesame oil", + "white sesame seeds", + "eggs", + "swiss chard", + "garlic", + "jasmine rice", + "gochugaru", + "carrots" + ] + }, + { + "id": 31599, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "pasta sauce", + "rigatoni", + "italian sausage", + "shredded mozzarella cheese", + "grated parmesan cheese" + ] + }, + { + "id": 34722, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "ground red pepper", + "chickpeas", + "onions", + "lower sodium chicken broth", + "salt", + "fresh lemon juice", + "ground lamb", + "ground cinnamon", + "extra-virgin olive oil", + "ground coriander", + "chopped cilantro fresh", + "golden raisins", + "grated lemon zest", + "carrots", + "ground cumin" + ] + }, + { + "id": 48802, + "cuisine": "italian", + "ingredients": [ + "flat leaf parsley", + "artichoke hearts", + "large garlic cloves", + "olive oil" + ] + }, + { + "id": 24241, + "cuisine": "mexican", + "ingredients": [ + "water", + "roast", + "beef base", + "dried oregano", + "adobo", + "garlic powder", + "jalapeno chilies", + "hot sauce", + "ground cumin", + "olive oil", + "bell pepper", + "chili powder", + "beef roast", + "black pepper", + "diced green chilies", + "bay leaves", + "onions" + ] + }, + { + "id": 7254, + "cuisine": "french", + "ingredients": [ + "brandy", + "vanilla ice cream", + "frozen pastry puff sheets", + "unsalted butter", + "sugar", + "bosc pears" + ] + }, + { + "id": 13831, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "buttermilk", + "vegetables", + "chicken livers", + "kosher salt", + "hot sauce", + "flour", + "panko breadcrumbs" + ] + }, + { + "id": 24086, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "green chilies", + "whole milk", + "self rising flour", + "pork sausages", + "vegetable shortening" + ] + }, + { + "id": 49361, + "cuisine": "indian", + "ingredients": [ + "frozen spinach", + "ground black pepper", + "lamb", + "onions", + "minced ginger", + "diced tomatoes", + "coconut milk", + "ground cumin", + "kosher salt", + "lemon", + "ground coriander", + "ground turmeric", + "garam masala", + "garlic", + "ghee" + ] + }, + { + "id": 11078, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "cayenne", + "vegetable stock", + "paprika", + "wild rice", + "celery ribs", + "dried thyme", + "bay leaves", + "sea salt", + "hot sauce", + "scallions", + "water", + "sweet potatoes", + "red wine vinegar", + "extra-virgin olive oil", + "freshly ground pepper", + "tomato paste", + "kidney beans", + "arrowroot", + "diced tomatoes", + "yellow onion", + "garlic cloves" + ] + }, + { + "id": 36044, + "cuisine": "mexican", + "ingredients": [ + "cream of celery soup", + "lime juice", + "colby jack cheese", + "red bell pepper", + "oregano", + "black beans", + "boneless skinless chicken breasts", + "butter", + "chopped cilantro fresh", + "frozen sweet corn", + "olive oil", + "chili powder", + "garlic salt", + "ground cumin", + "chicken broth", + "minced garlic", + "chives", + "rice", + "chunky salsa" + ] + }, + { + "id": 42305, + "cuisine": "chinese", + "ingredients": [ + "fresh shiitake mushrooms", + "chinese five-spice powder", + "peeled fresh ginger", + "top sirloin steak", + "snow peas", + "hoisin sauce", + "sesame oil", + "garlic chili sauce", + "green onions", + "cilantro leaves" + ] + }, + { + "id": 9162, + "cuisine": "british", + "ingredients": [ + "powdered sugar", + "hazelnuts", + "unsalted butter", + "whole milk", + "Grand Marnier", + "sparkling rosé wine", + "whole almonds", + "raspberries", + "self rising flour", + "whipping cream", + "oil", + "pecans", + "pinenuts", + "vanilla pods", + "cornflour", + "gelatin sheet", + "raspberry jam", + "marsala wine", + "caster sugar", + "egg yolks", + "free range egg", + "lemon juice" + ] + }, + { + "id": 31255, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "bread crumb fresh", + "vegetable oil", + "ricotta", + "meatloaf", + "fettucine", + "large eggs", + "pecorino romano cheese", + "California bay leaves", + "onions", + "black pepper", + "whole milk", + "salt", + "juice", + "dried oregano", + "tomatoes", + "olive oil", + "fresh mozzarella", + "garlic cloves", + "flat leaf parsley" + ] + }, + { + "id": 26277, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "sugar", + "miso paste", + "scallions", + "celery leaves", + "ketchup", + "salt", + "ground white pepper", + "sweet potato starch", + "oysters", + "rice vinegar", + "eggs", + "soy sauce", + "vegetables", + "corn starch" + ] + }, + { + "id": 22664, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "marjoram", + "ground cumin", + "minced garlic", + "ground beef", + "dried rosemary", + "sea salt", + "dried oregano", + "dried thyme", + "onions", + "ground lamb" + ] + }, + { + "id": 23090, + "cuisine": "spanish", + "ingredients": [ + "california chile", + "roasted red peppers", + "salt", + "olive oil", + "deveined shrimp", + "flat leaf parsley", + "sherry vinegar", + "garlic", + "pepper", + "roma tomatoes", + "toasted almonds" + ] + }, + { + "id": 27422, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "ground nutmeg", + "lemon", + "milk", + "baking powder", + "all-purpose flour", + "sugar", + "granulated sugar", + "salt", + "ground cinnamon", + "peaches in light syrup", + "butter", + "corn starch" + ] + }, + { + "id": 6778, + "cuisine": "italian", + "ingredients": [ + "boneless chicken breast", + "italian salad dressing", + "bbq sauce" + ] + }, + { + "id": 46144, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "baking powder", + "flour", + "milk", + "salt" + ] + }, + { + "id": 39032, + "cuisine": "irish", + "ingredients": [ + "milk", + "shallots", + "salt", + "unsalted butter", + "russet potatoes", + "freshly ground pepper", + "mace", + "napa cabbage", + "grated nutmeg", + "curly kale", + "leeks", + "bacon slices" + ] + }, + { + "id": 46687, + "cuisine": "italian", + "ingredients": [ + "pecorino romano cheese", + "prosciutto", + "extra-virgin olive oil", + "water", + "all purpose unbleached flour", + "large eggs", + "salt" + ] + }, + { + "id": 6803, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "all-purpose flour", + "butter", + "cinnamon", + "sugar", + "salt" + ] + }, + { + "id": 29749, + "cuisine": "southern_us", + "ingredients": [ + "turbinado", + "unsalted butter", + "fresh lemon juice", + "sugar", + "salt", + "heavy whipping cream", + "peaches", + "all-purpose flour", + "cornmeal", + "ground cinnamon", + "baking powder", + "corn starch" + ] + }, + { + "id": 42006, + "cuisine": "russian", + "ingredients": [ + "mashed potatoes", + "all-purpose flour", + "prepared horseradish", + "caviar", + "fresh dill", + "sour cream", + "vegetable oil" + ] + }, + { + "id": 39143, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "black-eyed peas", + "dried thyme", + "garlic cloves", + "water", + "ground black pepper", + "tomatoes", + "olive oil", + "onions" + ] + }, + { + "id": 5898, + "cuisine": "mexican", + "ingredients": [ + "clove", + "black pepper", + "lime", + "lime wedges", + "red radishes", + "onions", + "black peppercorns", + "kosher salt", + "jalapeno chilies", + "purple onion", + "red bell pepper", + "ground cumin", + "tomatoes", + "white onion", + "coriander seeds", + "cilantro", + "carrots", + "skirt steak", + "chipotle chile", + "lime juice", + "chili powder", + "garlic cloves", + "corn tortillas" + ] + }, + { + "id": 23739, + "cuisine": "italian", + "ingredients": [ + "sugar", + "egg whites", + "all-purpose flour", + "green cardamom pods", + "unsalted butter", + "golden raisins", + "candied orange peel", + "large eggs", + "salt", + "saffron threads", + "active dry yeast", + "whole milk" + ] + }, + { + "id": 4784, + "cuisine": "vietnamese", + "ingredients": [ + "canola oil", + "shallots" + ] + }, + { + "id": 19795, + "cuisine": "french", + "ingredients": [ + "vanilla ice cream", + "large eggs", + "unsalted butter", + "sugar", + "frozen pastry puff sheets", + "rhubarb", + "raspberry preserves" + ] + }, + { + "id": 13618, + "cuisine": "indian", + "ingredients": [ + "almonds", + "butter", + "fresh spinach", + "jalapeno chilies", + "firm tofu", + "fresh ginger", + "shallots", + "sour cream", + "garam masala", + "salt" + ] + }, + { + "id": 25770, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "garlic", + "frozen peas", + "dried thyme", + "Irish whiskey", + "yellow onion", + "ground black pepper", + "paprika", + "carrots", + "seasoning salt", + "beef stock", + "lamb shoulder" + ] + }, + { + "id": 26205, + "cuisine": "italian", + "ingredients": [ + "milk", + "apricot preserves", + "heavy cream", + "sugar", + "corn starch" + ] + }, + { + "id": 19435, + "cuisine": "korean", + "ingredients": [ + "milk", + "salt", + "warm water", + "dry yeast", + "white sugar", + "white flour", + "cinnamon", + "peanuts", + "dark brown sugar" + ] + }, + { + "id": 23630, + "cuisine": "japanese", + "ingredients": [ + "extra light olive oil", + "reduced sodium soy sauce", + "japanese eggplants", + "sugar", + "scallions", + "mirin" + ] + }, + { + "id": 3707, + "cuisine": "indian", + "ingredients": [ + "kasuri methi", + "pepper", + "cilantro leaves", + "cream", + "salt", + "cheese cubes", + "oil" + ] + }, + { + "id": 31758, + "cuisine": "greek", + "ingredients": [ + "light sour cream", + "cucumber", + "dill", + "salt", + "garlic cloves" + ] + }, + { + "id": 18407, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "champagne", + "kosher salt", + "shallots", + "oysters", + "chopped fresh thyme", + "sugar", + "ground black pepper", + "thyme sprigs" + ] + }, + { + "id": 45543, + "cuisine": "italian", + "ingredients": [ + "warm water", + "parmigiano reggiano cheese", + "cornmeal", + "olive oil", + "all-purpose flour", + "dried oregano", + "garlic powder", + "margarine", + "active dry yeast", + "salt", + "white sugar" + ] + }, + { + "id": 10853, + "cuisine": "italian", + "ingredients": [ + "manicotti shells", + "garlic powder", + "pepper", + "ricotta cheese", + "pasta sauce", + "grated parmesan cheese", + "italian sausage", + "part-skim mozzarella cheese", + "italian seasoning" + ] + }, + { + "id": 39756, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "ground chipotle chile pepper", + "lime", + "jalapeno chilies", + "garlic", + "rice flour", + "chopped cilantro", + "tomatoes", + "pepper", + "cayenne", + "chipotle puree", + "vinaigrette", + "corn tortillas", + "mayonaise", + "lime juice", + "red cabbage", + "paprika", + "oil", + "fillets", + "green cabbage", + "white onion", + "garlic powder", + "Mexican beer", + "salt", + "sour cream", + "oregano" + ] + }, + { + "id": 47243, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "pepper", + "ground black pepper", + "salt", + "dried oregano", + "tri-tip roast", + "fresh cilantro", + "cilantro", + "tequila", + "avocado", + "lime juice", + "red wine vinegar", + "garlic cloves", + "ground cumin", + "soy sauce", + "olive oil", + "garlic", + "sour cream" + ] + }, + { + "id": 22476, + "cuisine": "italian", + "ingredients": [ + "garbanzo beans", + "pepperoni", + "vinaigrette dressing", + "provolone cheese", + "lettuce", + "pepperoncini", + "ripe olives", + "cherry tomatoes", + "fresh mushrooms" + ] + }, + { + "id": 24313, + "cuisine": "mexican", + "ingredients": [ + "cooked rice", + "bell pepper", + "sauce", + "lime", + "beaten eggs", + "chicken", + "pepper", + "jalapeno chilies", + "chopped parsley", + "olive oil", + "salt" + ] + }, + { + "id": 37019, + "cuisine": "mexican", + "ingredients": [ + "lean ground beef", + "taco seasoning", + "diced tomatoes", + "wonton wrappers", + "sharp cheddar cheese" + ] + }, + { + "id": 29844, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "green onions", + "tomatoes", + "salad greens", + "fresh lime juice", + "avocado", + "fresh cilantro", + "salt", + "black pepper", + "jalapeno chilies", + "fresh parsley" + ] + }, + { + "id": 40029, + "cuisine": "french", + "ingredients": [ + "haricots verts", + "ground black pepper", + "extra-virgin olive oil", + "grape tomatoes", + "balsamic vinegar", + "anchovy fillets", + "pasta", + "solid white tuna in oil", + "red wine vinegar", + "Niçoise olives", + "capers", + "shallots", + "salt" + ] + }, + { + "id": 24629, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "cannellini beans", + "onions", + "olive oil", + "garlic", + "black pepper", + "baby spinach", + "ditalini pasta", + "salt" + ] + }, + { + "id": 1683, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "dried basil", + "salt", + "fennel seeds", + "white wine", + "ground black pepper", + "garlic cloves", + "penne", + "olive oil", + "ground coriander", + "fresh basil", + "chicken breast tenders", + "diced tomatoes" + ] + }, + { + "id": 26894, + "cuisine": "greek", + "ingredients": [ + "sun-dried tomatoes", + "red wine vinegar", + "purple onion", + "couscous", + "sunflower seeds", + "dijon mustard", + "basil", + "garlic cloves", + "feta cheese", + "diced tomatoes", + "salt", + "dried oregano", + "black pepper", + "green onions", + "extra-virgin olive oil", + "cucumber" + ] + }, + { + "id": 31544, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "fresh parsley", + "pita bread", + "chopped fresh thyme", + "ground pepper", + "ouzo", + "cheese" + ] + }, + { + "id": 34188, + "cuisine": "cajun_creole", + "ingredients": [ + "sandwich rolls", + "prepared horseradish", + "green pepper", + "ketchup", + "soup", + "ground beef", + "brown sugar", + "vinegar", + "bay leaf", + "pepper", + "salt", + "onions" + ] + }, + { + "id": 20731, + "cuisine": "italian", + "ingredients": [ + "eggs", + "extra-virgin olive oil", + "parmigiano reggiano cheese", + "noodles", + "black pepper", + "garlic cloves", + "Italian parsley leaves" + ] + }, + { + "id": 46456, + "cuisine": "vietnamese", + "ingredients": [ + "stock", + "minced ginger", + "ground pork", + "silken tofu", + "cilantro", + "scallions", + "soy sauce", + "peanuts", + "salt", + "minced garlic", + "crushed red pepper flakes" + ] + }, + { + "id": 26803, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "ground black pepper", + "dry red wine", + "ground beef", + "pancetta", + "crushed tomatoes", + "beef stock", + "salt", + "dried oregano", + "fresh basil", + "parmigiano reggiano cheese", + "garlic", + "onions", + "celery ribs", + "olive oil", + "whole milk", + "carrots" + ] + }, + { + "id": 12229, + "cuisine": "italian", + "ingredients": [ + "angel hair", + "butter", + "salt", + "snow peas", + "chicken broth", + "grated parmesan cheese", + "heavy cream", + "garlic cloves", + "zucchini", + "florets", + "broccoli", + "tomatoes", + "basil leaves", + "peas", + "asparagus spears" + ] + }, + { + "id": 3047, + "cuisine": "british", + "ingredients": [ + "Scotch whisky", + "orange bitters", + "sweet vermouth", + "olives", + "crushed ice" + ] + }, + { + "id": 41276, + "cuisine": "mexican", + "ingredients": [ + "margarita mix", + "lime", + "guava", + "tequila", + "orange juice" + ] + }, + { + "id": 43122, + "cuisine": "japanese", + "ingredients": [ + "panko", + "carrots", + "sugar", + "vegetable oil", + "white vinegar", + "large eggs", + "center cut pork chops", + "water", + "scallions" + ] + }, + { + "id": 29595, + "cuisine": "thai", + "ingredients": [ + "avocado", + "roasted peanuts", + "sprouts", + "hummus", + "Sriracha", + "garlic chili sauce", + "cream cheese" + ] + }, + { + "id": 23835, + "cuisine": "korean", + "ingredients": [ + "vegetable oil", + "pork shoulder boston butt", + "sake", + "Gochujang base", + "ginger", + "mirin", + "garlic cloves" + ] + }, + { + "id": 6809, + "cuisine": "italian", + "ingredients": [ + "roasted red peppers", + "cream cheese", + "pesto" + ] + }, + { + "id": 18550, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "chili powder", + "mayonaise", + "jalapeno chilies", + "cilantro", + "corn", + "butter", + "cotija", + "green onions", + "garlic" + ] + }, + { + "id": 39975, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "garlic cloves", + "tomatoes", + "chees fresco queso", + "vegetable oil", + "corn tortillas", + "white onion", + "salt" + ] + }, + { + "id": 41061, + "cuisine": "southern_us", + "ingredients": [ + "spice cake mix", + "applesauce", + "blackberry jam", + "buttermilk", + "ground cinnamon", + "vegetable oil", + "large eggs", + "frosting" + ] + }, + { + "id": 48817, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "corn tortillas", + "cilantro", + "salsa verde", + "carnitas", + "avocado", + "purple onion" + ] + }, + { + "id": 30251, + "cuisine": "italian", + "ingredients": [ + "green olives", + "eggplant", + "fresh oregano", + "capers", + "red wine vinegar", + "garlic cloves", + "grape tomatoes", + "extra-virgin olive oil", + "celery ribs", + "vidalia onion", + "crushed red pepper" + ] + }, + { + "id": 5416, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "abura age", + "potatoes", + "kelp", + "konnyaku", + "beef", + "cinnamon", + "onions", + "soy sauce", + "kampyo", + "katsuo dashi", + "carrots", + "sake", + "water", + "mirin", + "salt" + ] + }, + { + "id": 36974, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "flour", + "Sargento® Traditional Cut Shredded 4 Cheese Mexican", + "iceberg lettuce", + "pepper", + "garlic", + "corn tortillas", + "milk", + "salt", + "ground beef", + "red chili powder", + "butter", + "chopped onion" + ] + }, + { + "id": 5697, + "cuisine": "indian", + "ingredients": [ + "sugar", + "golden raisins", + "mustard seeds", + "garam masala", + "red pepper flakes", + "mango", + "white vinegar", + "peeled fresh ginger", + "garlic", + "kosher salt", + "vegetable oil", + "onions" + ] + }, + { + "id": 46484, + "cuisine": "chinese", + "ingredients": [ + "glutinous rice flour", + "dates", + "vegetable oil", + "candy", + "large eggs", + "white sesame seeds" + ] + }, + { + "id": 11819, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "ground nutmeg", + "flour", + "cream sauce", + "ground cinnamon", + "unsalted butter", + "salt", + "ground ginger", + "peaches", + "quick-cooking oats", + "raspberries", + "granulated sugar", + "corn starch" + ] + }, + { + "id": 33929, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "beef", + "carrots", + "black pepper", + "green onions", + "snow peas", + "low sodium soy sauce", + "vegetables", + "garlic cloves", + "sugar", + "mushrooms", + "onions" + ] + }, + { + "id": 46961, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "sage leaves", + "dry white wine", + "trout", + "olive oil", + "butter" + ] + }, + { + "id": 14757, + "cuisine": "spanish", + "ingredients": [ + "water", + "fresh parsley", + "vegetable oil", + "chuck roast", + "fajita seasoning mix", + "cooked rice", + "stewed tomatoes" + ] + }, + { + "id": 32517, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "pecorino romano cheese", + "ditalini pasta", + "unsalted chicken stock" + ] + }, + { + "id": 31777, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "dry bread crumbs", + "chopped fresh mint", + "extra-virgin olive oil", + "fresh lemon juice", + "black pepper", + "fresh oregano", + "cherrystone clams" + ] + }, + { + "id": 6233, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper flakes", + "yellow onion", + "feta cheese", + "garlic", + "chopped bell pepper", + "extra-virgin olive oil", + "thin pizza crust", + "herbs", + "salt" + ] + }, + { + "id": 18906, + "cuisine": "italian", + "ingredients": [ + "pasta", + "ground black pepper", + "fresh lemon juice", + "kosher salt", + "parmigiano reggiano cheese", + "pancetta", + "minced garlic", + "extra-virgin olive oil", + "pinenuts", + "asparagus" + ] + }, + { + "id": 48224, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "all purpose unbleached flour", + "bread flour", + "instant yeast", + "salt", + "warm water", + "extra-virgin olive oil", + "grated parmesan cheese", + "white sugar" + ] + }, + { + "id": 7809, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "white cornmeal", + "buttermilk", + "butter", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 15459, + "cuisine": "italian", + "ingredients": [ + "dry yeast", + "salt", + "warm water", + "all-purpose flour", + "cooking spray" + ] + }, + { + "id": 6696, + "cuisine": "spanish", + "ingredients": [ + "chicken breasts", + "salt", + "boiling potatoes", + "olive oil", + "paprika", + "sherry wine", + "brandy", + "red wine", + "garlic cloves", + "chorizo sausage", + "bay leaves", + "canned tomatoes", + "onions" + ] + }, + { + "id": 23445, + "cuisine": "chinese", + "ingredients": [ + "ginger", + "oil", + "honey", + "salt", + "water", + "garlic", + "corn starch", + "sesame seeds", + "rice vinegar" + ] + }, + { + "id": 18567, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "extra-virgin olive oil", + "bay leaf", + "water", + "dry white wine", + "all-purpose flour", + "meat fats", + "ground nutmeg", + "butter", + "garlic cloves", + "rosemary sprigs", + "potatoes", + "salt", + "plum tomatoes" + ] + }, + { + "id": 32768, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "spring onions", + "fish", + "pepper", + "salt", + "sugar", + "shallots", + "olive oil", + "rice" + ] + }, + { + "id": 8660, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "bay leaves", + "scallions", + "olive oil", + "red pepper", + "onions", + "kosher salt", + "red wine vinegar", + "long-grain rice", + "chicken broth", + "ground black pepper", + "garlic", + "ground cumin" + ] + }, + { + "id": 11698, + "cuisine": "french", + "ingredients": [ + "red wine vinegar", + "fresh oregano", + "olives", + "black pepper", + "purple onion", + "garlic cloves", + "chopped fresh thyme", + "salt", + "flat leaf parsley", + "fresh rosemary", + "extra-virgin olive oil", + "chickpeas" + ] + }, + { + "id": 13147, + "cuisine": "jamaican", + "ingredients": [ + "bread crumbs", + "jalapeno chilies", + "salt", + "garlic cloves", + "tumeric", + "curry powder", + "ground red pepper", + "dri leav thyme", + "chunky salsa", + "nutmeg", + "water", + "refrigerated crescent rolls", + "salsa", + "juice", + "fruit", + "ground pepper", + "lean ground beef", + "chopped onion" + ] + }, + { + "id": 27536, + "cuisine": "indian", + "ingredients": [ + "salt", + "wheat flour", + "tumeric", + "green chilies", + "cabbage", + "garam masala", + "oil", + "atta", + "cilantro leaves", + "ghee" + ] + }, + { + "id": 18724, + "cuisine": "indian", + "ingredients": [ + "salmon fillets", + "ground mustard", + "mustard seeds", + "salt", + "cumin seed", + "fennel seeds", + "cayenne pepper", + "mustard oil", + "cayenne", + "green chilies", + "ground turmeric" + ] + }, + { + "id": 25729, + "cuisine": "greek", + "ingredients": [ + "grated parmesan cheese", + "orzo", + "dried oregano", + "fresh basil", + "dry white wine", + "garlic cloves", + "olive oil", + "diced tomatoes", + "feta cheese crumbles", + "medium shrimp uncook", + "crushed red pepper" + ] + }, + { + "id": 46568, + "cuisine": "italian", + "ingredients": [ + "warm water", + "flour", + "flat leaf parsley", + "olive oil", + "sea salt", + "active dry yeast", + "all purpose unbleached flour", + "sugar", + "unsalted butter", + "garlic" + ] + }, + { + "id": 23816, + "cuisine": "moroccan", + "ingredients": [ + "hot pepper sauce", + "pimento stuffed green olives", + "mayonaise", + "lemon peel" + ] + }, + { + "id": 18731, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "yellow onion", + "bittersweet chocolate", + "boneless chicken skinless thigh", + "diced tomatoes", + "ancho chile pepper", + "ground cinnamon", + "coarse salt", + "garlic cloves", + "ground cumin", + "sliced almonds", + "extra-virgin olive oil", + "chipotles in adobo" + ] + }, + { + "id": 1872, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "grated parmesan cheese", + "garlic powder", + "boneless skinless chicken breast halves", + "pasta sauce", + "swiss cheese" + ] + }, + { + "id": 46528, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger", + "cilantro leaves", + "roast beef", + "asian fish sauce", + "rice stick noodles", + "vegetable oil", + "beansprouts", + "serrano chile", + "shallots", + "beef broth", + "fresh lime juice", + "water", + "loosely packed fresh basil leaves", + "fresh mint", + "snow peas" + ] + }, + { + "id": 42708, + "cuisine": "chinese", + "ingredients": [ + "honey", + "balsamic vinegar", + "olive oil spray", + "low sodium soy sauce", + "Sriracha", + "ginger", + "sesame seeds", + "chicken drumsticks", + "water", + "chives", + "garlic" + ] + }, + { + "id": 10000, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "grated parmesan cheese", + "onions", + "dried basil", + "sweet italian sausage", + "frozen chopped spinach", + "whole peeled tomatoes", + "fresh parsley", + "green bell pepper", + "orzo pasta", + "chopped garlic" + ] + }, + { + "id": 38457, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "flour", + "bay leaf", + "ground black pepper", + "large garlic cloves", + "ground cumin", + "pork shoulder butt", + "salt", + "reduced sodium chicken broth", + "vegetable oil", + "onions" + ] + }, + { + "id": 46885, + "cuisine": "cajun_creole", + "ingredients": [ + "mayonaise", + "low-fat buttermilk", + "salt", + "tomatoes", + "oysters", + "french bread", + "cornmeal", + "black pepper", + "egg whites", + "dry bread crumbs", + "vegetable oil cooking spray", + "garlic powder", + "ground red pepper", + "iceberg lettuce" + ] + }, + { + "id": 34947, + "cuisine": "french", + "ingredients": [ + "balsamic vinegar", + "pepper", + "canola oil", + "salt", + "foie gras" + ] + }, + { + "id": 34056, + "cuisine": "southern_us", + "ingredients": [ + "water", + "lemon juice", + "granulated sugar" + ] + }, + { + "id": 40757, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cooking spray", + "corn tortillas", + "ground cumin", + "lime", + "reduced-fat sour cream", + "iceberg lettuce", + "lower sodium chicken broth", + "garlic powder", + "salsa", + "shredded Monterey Jack cheese", + "shredded cheddar cheese", + "boneless skinless chicken breasts", + "chipotle chile powder" + ] + }, + { + "id": 28369, + "cuisine": "thai", + "ingredients": [ + "caster sugar", + "spring onions", + "garlic cloves", + "tiger prawn", + "fish sauce", + "egg noodles", + "ginger", + "chillies", + "lime", + "red pepper", + "beansprouts", + "soy sauce", + "water chestnuts", + "oil", + "coriander" + ] + }, + { + "id": 32944, + "cuisine": "french", + "ingredients": [ + "vegetable oil cooking spray", + "pepper", + "shallots", + "garlic cloves", + "fresh basil", + "black pepper", + "coulis", + "salt", + "tomatoes", + "sugar", + "olive oil", + "basil", + "red bell pepper", + "spinach leaves", + "skim milk", + "eggplant", + "yellow bell pepper" + ] + }, + { + "id": 13544, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "tapioca flour", + "salt", + "eggs", + "grating cheese", + "milk" + ] + }, + { + "id": 33130, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "butter", + "water", + "mixed nuts", + "caster sugar", + "grated lemon zest", + "honey", + "phyllo pastry" + ] + }, + { + "id": 19273, + "cuisine": "french", + "ingredients": [ + "dried thyme", + "green onions", + "ground turkey", + "chicken broth", + "salt and ground black pepper", + "purple onion", + "bay leaf", + "olive oil", + "red wine", + "dried minced onion", + "dried tarragon leaves", + "flour", + "feta cheese crumbles", + "fresh parsley" + ] + }, + { + "id": 17494, + "cuisine": "irish", + "ingredients": [ + "milk", + "all-purpose flour", + "grated parmesan cheese", + "baking soda", + "eggs", + "salt" + ] + }, + { + "id": 25133, + "cuisine": "korean", + "ingredients": [ + "honey", + "mushrooms", + "sauce", + "onions", + "soy sauce", + "ground black pepper", + "ginger", + "baby carrots", + "pears", + "brown sugar", + "sesame seeds", + "sesame oil", + "chopped onion", + "short rib", + "minced garlic", + "potatoes", + "garlic", + "scallions", + "kiwi" + ] + }, + { + "id": 4038, + "cuisine": "italian", + "ingredients": [ + "broccoli rabe", + "red pepper flakes", + "warm water", + "coarse salt", + "salt", + "baking powder", + "all purpose unbleached flour", + "olive oil", + "large garlic cloves" + ] + }, + { + "id": 34737, + "cuisine": "italian", + "ingredients": [ + "chopped fresh sage", + "whole peeled tomatoes", + "white beans", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 25255, + "cuisine": "chinese", + "ingredients": [ + "water", + "soy sauce", + "wood ear mushrooms", + "pork leg", + "minced garlic" + ] + }, + { + "id": 32588, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "pork", + "mint leaves", + "garlic", + "celery", + "ground turmeric", + "mint", + "milk", + "crushed red pepper flakes", + "scallions", + "dried parsley", + "ground cumin", + "eggs", + "pepper", + "mango chutney", + "green chilies", + "onions", + "chicken", + "bread", + "chiles", + "garam masala", + "ginger", + "carrots", + "glaze" + ] + }, + { + "id": 45766, + "cuisine": "southern_us", + "ingredients": [ + "potatoes", + "okra", + "salt", + "cornmeal", + "vegetable oil", + "freshly ground pepper", + "all-purpose flour" + ] + }, + { + "id": 42139, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "all-purpose flour", + "soft shelled crabs", + "milk", + "oil", + "eggs", + "salt" + ] + }, + { + "id": 46890, + "cuisine": "irish", + "ingredients": [ + "tomato paste", + "beef rib roast", + "shallots", + "demi-glace", + "black pepper", + "dijon mustard", + "dry red wine", + "cumin", + "kosher salt", + "fresh thyme", + "garlic", + "allspice", + "sugar", + "unsalted butter", + "cinnamon", + "coriander" + ] + }, + { + "id": 33288, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "paprika", + "pasta water", + "mozzarella cheese", + "half & half", + "garlic cloves", + "fettuccine pasta", + "parmesan cheese", + "crushed red pepper flakes", + "dried basil", + "mushrooms", + "shrimp" + ] + }, + { + "id": 35653, + "cuisine": "brazilian", + "ingredients": [ + "açai", + "frozen banana", + "maca powder", + "coconut cream", + "spinach leaves", + "coconut milk" + ] + }, + { + "id": 18563, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "onions", + "salt", + "chile pepper", + "chopped garlic" + ] + }, + { + "id": 15783, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "cracked black pepper", + "prosciutto", + "honeydew melon", + "fresh mint", + "cantaloupe", + "fresh lemon juice", + "ground black pepper", + "mint sprigs" + ] + }, + { + "id": 9884, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "chopped onion", + "olive oil", + "salt", + "tuna steaks", + "all-purpose flour", + "pepper", + "mint sprigs" + ] + }, + { + "id": 8399, + "cuisine": "italian", + "ingredients": [ + "bulk italian sausag", + "italian style stewed tomatoes", + "ground beef", + "dried oregano", + "tomato paste", + "olive oil", + "dri leav thyme", + "marjoram", + "dried basil", + "diced tomatoes", + "onions", + "tomato sauce", + "garlic powder", + "herb seasoning", + "white sugar" + ] + }, + { + "id": 18348, + "cuisine": "british", + "ingredients": [ + "eggs", + "malt vinegar", + "white pepper", + "onions", + "dried split peas", + "salt", + "fresh rosemary", + "butter" + ] + }, + { + "id": 18399, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "garlic", + "orange juice", + "sugar", + "jalapeno chilies", + "salt", + "fresh ginger", + "white wine vinegar", + "onions", + "soy sauce", + "chicken drumsticks", + "ground allspice" + ] + }, + { + "id": 42292, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "jalapeno chilies", + "fresh lime", + "kosher salt", + "garlic", + "fire roasted diced tomatoes", + "fresh cilantro" + ] + }, + { + "id": 2546, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "chiles", + "tomatoes", + "salt", + "lime juice" + ] + }, + { + "id": 26948, + "cuisine": "moroccan", + "ingredients": [ + "lamb", + "sweet potatoes", + "apricots", + "crushed tomatoes", + "red bell pepper", + "spices", + "clarified butter" + ] + }, + { + "id": 29570, + "cuisine": "thai", + "ingredients": [ + "grained" + ] + }, + { + "id": 36437, + "cuisine": "korean", + "ingredients": [ + "flour", + "baby zucchini", + "large eggs", + "sea salt", + "roasted sesame seeds", + "vegetable oil", + "Kikkoman Soy Sauce", + "rice vinegar" + ] + }, + { + "id": 38727, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "ground black pepper", + "salt", + "fresh parsley", + "canned low sodium chicken broth", + "garlic", + "ham", + "chicken thighs", + "green bell pepper", + "chicken drumsticks", + "rice", + "onions", + "olive oil", + "canned tomatoes", + "red bell pepper" + ] + }, + { + "id": 24342, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "minced ginger", + "yellow onion", + "string beans", + "coarse salt", + "brown mustard seeds" + ] + }, + { + "id": 214, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime wedges", + "chopped fresh mint", + "calamari", + "long-grain rice", + "lime rind", + "crushed red pepper", + "sliced green onions", + "green chile", + "shallots", + "fresh lime juice" + ] + }, + { + "id": 5414, + "cuisine": "spanish", + "ingredients": [ + "avocado", + "crushed red pepper", + "low salt chicken broth", + "vegetable oil", + "chopped onion", + "plum tomatoes", + "green peas", + "long-grain rice", + "chili powder", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 7772, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "large eggs", + "garlic", + "fresh oregano", + "ground black pepper", + "lemon wedge", + "dry bread crumbs", + "greens", + "olive oil", + "grated parmesan cheese", + "salt", + "ground meat", + "grated romano cheese", + "red pepper flakes", + "yellow onion" + ] + }, + { + "id": 26580, + "cuisine": "mexican", + "ingredients": [ + "tostada shells", + "vegetable oil", + "boneless skinless chicken breast halves", + "white hominy", + "salt", + "water", + "garlic", + "dried oregano", + "chicken broth", + "chili powder", + "onions" + ] + }, + { + "id": 30292, + "cuisine": "chinese", + "ingredients": [ + "vegetables", + "rice wine", + "chillies", + "pork", + "yellow bean sauce", + "rice", + "mirin", + "garlic", + "coriander", + "soy sauce", + "spring onions", + "oyster sauce" + ] + }, + { + "id": 13344, + "cuisine": "french", + "ingredients": [ + "turkey bacon", + "maple syrup", + "cooking spray", + "large eggs", + "black pepper", + "crepes" + ] + }, + { + "id": 40871, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "chopped garlic", + "Italian bread", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 4796, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "gai lan", + "toasted sesame oil" + ] + }, + { + "id": 4996, + "cuisine": "russian", + "ingredients": [ + "chicken broth", + "pepper", + "frozen pastry puff sheets", + "all-purpose flour", + "fresh dill", + "salt and ground black pepper", + "button mushrooms", + "long grain white rice", + "eggs", + "water", + "butter", + "lemon juice", + "salmon fillets", + "finely chopped onion", + "salt", + "cabbage" + ] + }, + { + "id": 6045, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "large eggs", + "corn tortillas", + "tomatoes", + "fat free milk", + "salt", + "large egg whites", + "cooking spray", + "black pepper", + "finely chopped onion", + "nopalitos" + ] + }, + { + "id": 14853, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "butter", + "grated nutmeg", + "black pepper", + "salt", + "eggs", + "cheese", + "chopped fresh chives", + "crème fraîche" + ] + }, + { + "id": 41489, + "cuisine": "southern_us", + "ingredients": [ + "sea bass", + "minced garlic", + "shallots", + "lump crab meat", + "salt and ground black pepper", + "all-purpose flour", + "crawfish", + "half & half", + "fresh parsley", + "white pepper", + "mild olive oil", + "butter" + ] + }, + { + "id": 19803, + "cuisine": "chinese", + "ingredients": [ + "beef shank", + "dried red chile peppers", + "rock sugar", + "star anise", + "dark soy sauce", + "Shaoxing wine", + "soy sauce", + "chinese cinnamon" + ] + }, + { + "id": 42683, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "diced tomatoes", + "carrots", + "dried oregano", + "chicken broth", + "bread crumbs", + "salt", + "ground beef", + "tomato sauce", + "white rice", + "celery", + "ground cumin", + "eggs", + "garlic powder", + "cilantro leaves", + "onions" + ] + }, + { + "id": 37901, + "cuisine": "irish", + "ingredients": [ + "vegetable oil", + "potatoes", + "salt", + "flour", + "butter" + ] + }, + { + "id": 21034, + "cuisine": "japanese", + "ingredients": [ + "white vinegar", + "vegetable oil", + "persian cucumber", + "toasted sesame oil", + "short-grain rice", + "cilantro leaves", + "garlic cloves", + "chive blossoms", + "peeled fresh ginger", + "tuna fillets", + "nori sheets", + "kosher salt", + "thai chile", + "scallions", + "toasted sesame seeds" + ] + }, + { + "id": 14309, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetables", + "fermented black beans", + "kosher salt", + "garlic", + "baby bok choy", + "water", + "corn starch", + "white pepper", + "sesame oil" + ] + }, + { + "id": 24879, + "cuisine": "southern_us", + "ingredients": [ + "water", + "garlic", + "chopped cilantro fresh", + "peanuts", + "creamy peanut butter", + "olive oil", + "hot sauce", + "ground cumin", + "pepper", + "cilantro sprigs", + "fresh lime juice" + ] + }, + { + "id": 40596, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "low sodium chicken broth", + "red pepper flakes", + "all-purpose flour", + "low sodium soy sauce", + "hoisin sauce", + "boneless skinless chicken breasts", + "salt", + "light brown sugar", + "baking soda", + "green onions", + "garlic", + "corn starch", + "black pepper", + "egg whites", + "vegetable oil", + "rice vinegar" + ] + }, + { + "id": 10140, + "cuisine": "french", + "ingredients": [ + "raisins", + "powdered sugar", + "nuts", + "egg yolks" + ] + }, + { + "id": 7434, + "cuisine": "russian", + "ingredients": [ + "ground black pepper", + "salt", + "mayonaise", + "hard-boiled egg", + "lemon juice", + "roast breast of chicken", + "potatoes", + "sweet peas", + "pickles", + "spicy brown mustard", + "carrots" + ] + }, + { + "id": 1553, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "vegetable oil", + "pork sausages", + "green onions", + "salt", + "large eggs", + "buttermilk", + "yellow corn meal", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 27358, + "cuisine": "italian", + "ingredients": [ + "nutmeg", + "minced garlic", + "salt", + "pasta sauce", + "ricotta cheese", + "lemon juice", + "fresh spinach", + "butter", + "oven-ready lasagna noodles", + "eggs", + "fresh thyme", + "shredded mozzarella cheese" + ] + }, + { + "id": 27364, + "cuisine": "spanish", + "ingredients": [ + "cabrales", + "extra-virgin olive oil", + "vidalia onion", + "chopped fresh chives", + "olive oil", + "sliced almonds", + "sherry wine vinegar" + ] + }, + { + "id": 38999, + "cuisine": "indian", + "ingredients": [ + "yellow mustard seeds", + "vegetable oil", + "chopped cilantro", + "sweet onion", + "freshly ground pepper", + "cauliflower", + "unsalted butter", + "fresh lemon juice", + "curry powder", + "salt" + ] + }, + { + "id": 42976, + "cuisine": "mexican", + "ingredients": [ + "zucchini", + "purple onion", + "pepper", + "jalapeno chilies", + "tortilla chips", + "avocado", + "roma tomatoes", + "salt", + "lime", + "cilantro" + ] + }, + { + "id": 20185, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "red pepper flakes", + "pepperoni", + "pepper", + "salt", + "dried basil", + "green pepper", + "tomato sauce", + "unsalted butter", + "pizza doughs" + ] + }, + { + "id": 276, + "cuisine": "russian", + "ingredients": [ + "gold potatoes", + "purple onion", + "carrots", + "low-fat mayonnaise", + "dill pickles", + "kosher salt", + "white wine vinegar", + "ham", + "hard-boiled egg", + "sweet peas" + ] + }, + { + "id": 16123, + "cuisine": "chinese", + "ingredients": [ + "unsalted roasted peanuts", + "vegetable broth", + "chinese black vinegar", + "low sodium soy sauce", + "cooking oil", + "corn starch", + "zucchini", + "garlic", + "red chili peppers", + "boneless skinless chicken breasts", + "red bell pepper" + ] + }, + { + "id": 20780, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "beef broth", + "ground beef", + "ground cumin", + "olive oil", + "garlic cloves", + "puff pastry", + "pepper", + "hot sauce", + "onions", + "eggs", + "salt", + "smoked paprika", + "oregano" + ] + }, + { + "id": 6797, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "pepper", + "dried sage", + "salt", + "chicken stock", + "herb seasoned stuffing", + "unsalted butter", + "buttermilk", + "sugar", + "sweet onion", + "baking powder", + "all-purpose flour", + "yellow corn meal", + "kosher salt", + "large eggs", + "chopped celery" + ] + }, + { + "id": 13889, + "cuisine": "moroccan", + "ingredients": [ + "tea bags", + "water", + "sugar", + "mint leaves" + ] + }, + { + "id": 189, + "cuisine": "greek", + "ingredients": [ + "italian plum tomatoes", + "onions", + "olive oil", + "salt", + "medium shrimp uncook", + "freshly ground pepper", + "dry white wine", + "dried oregano" + ] + }, + { + "id": 7598, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "fat free milk", + "dry white wine", + "strawberries", + "egg substitute", + "granulated sugar", + "vanilla extract", + "corn starch", + "ground cinnamon", + "water", + "fresh blueberries", + "salt", + "blackberries", + "french baguette", + "ground nutmeg", + "butter", + "fresh raspberries" + ] + }, + { + "id": 31959, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "olive oil", + "large eggs", + "beef broth", + "cinnamon sticks", + "chopped cilantro fresh", + "ground cinnamon", + "panko", + "golden raisins", + "cayenne pepper", + "coarse kosher salt", + "saffron threads", + "baby spinach leaves", + "ground black pepper", + "diced tomatoes", + "carrots", + "onions", + "tumeric", + "ground nutmeg", + "lemon wedge", + "garlic cloves", + "ground beef" + ] + }, + { + "id": 38750, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "mild olive oil", + "caesar salad dressing", + "romaine lettuce", + "bacon", + "grated parmesan cheese", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 9436, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "large garlic cloves", + "chopped cilantro", + "extra firm tofu", + "salt", + "diced red onions", + "cilantro", + "avocado", + "tomatillos", + "baked tortilla chips" + ] + }, + { + "id": 46114, + "cuisine": "mexican", + "ingredients": [ + "parmesan cheese", + "salt", + "frozen chopped spinach, thawed and squeezed dry", + "sliced green onions", + "roasted red peppers", + "cream cheese", + "corn tortillas", + "large eggs", + "enchilada sauce", + "chopped cilantro fresh", + "shredded mild cheddar cheese", + "salsa", + "sour cream" + ] + }, + { + "id": 30566, + "cuisine": "vietnamese", + "ingredients": [ + "lime", + "roasted peanuts", + "asian fish sauce", + "green onions", + "peanut oil", + "chicken", + "sugar", + "salt", + "chopped cilantro fresh", + "napa cabbage", + "freshly ground pepper" + ] + }, + { + "id": 35011, + "cuisine": "filipino", + "ingredients": [ + "flour", + "salt", + "sugar", + "butter", + "egg yolks", + "sweetened condensed milk", + "evaporated milk", + "ice water" + ] + }, + { + "id": 25182, + "cuisine": "indian", + "ingredients": [ + "clove", + "salt", + "carrots", + "cashew nuts", + "water", + "green chilies", + "bay leaf", + "cumin", + "grated coconut", + "rice", + "cinnamon sticks", + "peppercorns", + "fresh green peas", + "coconut", + "cardamom", + "ghee" + ] + }, + { + "id": 18778, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "Bertolli Garlic Alfredo Sauce", + "sun-dried tomatoes", + "penne pasta", + "dry white wine", + "Bertolli® Classico Olive Oil", + "onions" + ] + }, + { + "id": 45822, + "cuisine": "italian", + "ingredients": [ + "warm water", + "vanilla extract", + "bread flour", + "butter", + "dry milk powder", + "mixed dried fruit", + "salt", + "eggs", + "bread machine yeast", + "white sugar" + ] + }, + { + "id": 49498, + "cuisine": "british", + "ingredients": [ + "steak sauce", + "green onions", + "beef tenderloin steaks", + "red potato", + "butter", + "eggs", + "refrigerated piecrusts", + "leeks", + "dry mustard" + ] + }, + { + "id": 18910, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "dry bread crumbs", + "olive oil", + "garlic", + "fresh parsley", + "lemon", + "fillets", + "ground black pepper", + "salt" + ] + }, + { + "id": 41600, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "dry white wine", + "coconut milk", + "garam masala", + "alaskan king salmon", + "unsalted butter", + "heavy cream", + "curry powder", + "vegetable oil" + ] + }, + { + "id": 16413, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "baguette", + "plum tomatoes", + "garlic cloves" + ] + }, + { + "id": 14354, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "coriander powder", + "salt", + "ground turmeric", + "pepper", + "chili powder", + "oil", + "sugar", + "potatoes", + "cilantro leaves", + "cumin", + "garam masala", + "garlic", + "onions" + ] + }, + { + "id": 44951, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "vegetable oil", + "ground black pepper", + "large garlic cloves", + "sesame seeds", + "tomatillos", + "minced onion", + "salt" + ] + }, + { + "id": 24118, + "cuisine": "southern_us", + "ingredients": [ + "almond extract", + "sour cream", + "firmly packed light brown sugar", + "whipping cream", + "unsalted butter", + "corn starch", + "sweetened coconut flakes" + ] + }, + { + "id": 23176, + "cuisine": "spanish", + "ingredients": [ + "serrano ham", + "vegetable oil", + "manchego cheese", + "preserves" + ] + }, + { + "id": 21623, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "groundnut", + "spring onions", + "pak choi", + "beansprouts", + "sugar", + "Shaoxing wine", + "ginger", + "carrots", + "fish sauce", + "water", + "sesame oil", + "garlic cloves", + "white pepper", + "mushrooms", + "salt", + "corn flour" + ] + }, + { + "id": 44207, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dried basil", + "salt", + "Italian cheese", + "mild Italian sausage", + "dried oregano", + "pasta sauce", + "ground black pepper", + "yellow onion", + "pasta", + "minced garlic", + "ricotta cheese" + ] + }, + { + "id": 36064, + "cuisine": "southern_us", + "ingredients": [ + "candy canes", + "cocktail cherries", + "mint sprigs", + "cake", + "candy", + "pecan halves", + "frosting" + ] + }, + { + "id": 28492, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "bacon", + "coarse salt", + "vegetable oil", + "onions", + "pepper flakes", + "red wine vinegar" + ] + }, + { + "id": 10805, + "cuisine": "mexican", + "ingredients": [ + "zucchini", + "purple onion", + "chopped cilantro fresh", + "chili powder", + "corn tortillas", + "olive oil", + "pineapple", + "fresh lime juice", + "jicama", + "halibut", + "serrano chile" + ] + }, + { + "id": 28682, + "cuisine": "italian", + "ingredients": [ + "prebaked pizza crusts", + "broccoli florets", + "garlic cloves", + "fresh basil", + "part-skim mozzarella cheese", + "purple onion", + "kosher salt", + "portabello mushroom", + "red bell pepper", + "olive oil", + "crushed red pepper", + "olive oil flavored cooking spray" + ] + }, + { + "id": 14345, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "garlic cloves", + "olive oil", + "cilantro sprigs", + "processed cheese", + "chopped onion", + "diced tomatoes", + "cream cheese, soften" + ] + }, + { + "id": 26280, + "cuisine": "french", + "ingredients": [ + "salt", + "minced garlic", + "flat leaf parsley", + "unsalted butter", + "boiling potatoes", + "black pepper", + "goose fat" + ] + }, + { + "id": 8047, + "cuisine": "mexican", + "ingredients": [ + "corn husks", + "lard", + "sugar", + "raisins", + "dough", + "baking powder", + "water", + "red food coloring" + ] + }, + { + "id": 33157, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "baking powder", + "lemon juice", + "sugar", + "butter", + "milk", + "salt", + "peaches", + "all-purpose flour" + ] + }, + { + "id": 41538, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "jalapeno chilies", + "garlic", + "pepper", + "chili powder", + "chopped cilantro", + "chili pepper", + "serrano peppers", + "salt", + "chicken broth", + "poblano peppers", + "tomatillos", + "cumin" + ] + }, + { + "id": 9279, + "cuisine": "japanese", + "ingredients": [ + "fat free beef broth", + "large eggs", + "soba", + "sugar", + "beef tenderloin", + "low sodium soy sauce", + "peeled fresh ginger", + "sliced green onions", + "large egg whites", + "beansprouts" + ] + }, + { + "id": 38585, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "salt", + "fresh lemon juice", + "boneless skinless chicken breasts", + "ground coriander", + "ground cumin", + "ground black pepper", + "sweet paprika", + "fresh parsley", + "fresh cilantro", + "chili powder", + "garlic cloves" + ] + }, + { + "id": 44978, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "fresh lemon juice", + "black pepper", + "sea salt", + "dried oregano", + "potatoes", + "fresh parsley", + "dried thyme", + "extra-virgin olive oil" + ] + }, + { + "id": 10898, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "skinless salmon fillets", + "soy sauce", + "sake", + "red miso" + ] + }, + { + "id": 43728, + "cuisine": "mexican", + "ingredients": [ + "french bread", + "onions", + "taco seasoning mix", + "salsa", + "shredded cheddar cheese", + "vegetable oil", + "boneless skinless chicken breast halves", + "tomato juice", + "red bell pepper" + ] + }, + { + "id": 2592, + "cuisine": "southern_us", + "ingredients": [ + "dry mustard", + "medium cheddar cheese", + "cayenne pepper", + "cheddar cheese", + "garlic", + "worcestershire sauce", + "beer" + ] + }, + { + "id": 35690, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "vegetable oil", + "shrimp", + "shiitake", + "ham", + "frozen peas", + "large eggs", + "oyster sauce", + "long grain white rice", + "kosher salt", + "scallions", + "ground white pepper" + ] + }, + { + "id": 1837, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "parmesan cheese", + "italian seasoning", + "olive oil", + "fresh mozzarella", + "pepper", + "marinara sauce", + "eggplant", + "fresh basil leaves" + ] + }, + { + "id": 38347, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "olive oil", + "1% low-fat milk", + "large egg whites", + "granulated sugar", + "salt", + "sliced almonds", + "large egg yolks", + "crushed red pepper", + "fresh rosemary", + "honey", + "dry yeast", + "all-purpose flour" + ] + }, + { + "id": 33694, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "olive oil", + "ras el hanout", + "cinnamon sticks", + "chicken", + "tumeric", + "golden raisins", + "salt", + "chopped parsley", + "saffron threads", + "black pepper", + "butter", + "cayenne pepper", + "chopped cilantro", + "tomatoes", + "honey", + "garlic", + "chickpeas", + "onions" + ] + }, + { + "id": 21005, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "boneless skinless chicken breasts", + "salt", + "tomatoes", + "fresh ginger root", + "garlic", + "clarified butter", + "lime juice", + "heavy cream", + "ginger root", + "red chili peppers", + "garam masala", + "purple onion" + ] + }, + { + "id": 48245, + "cuisine": "italian", + "ingredients": [ + "white vinegar", + "olive oil", + "garlic", + "mozzarella cheese", + "vegetable oil", + "fresh basil", + "salt and ground black pepper", + "anchovy fillets", + "tomatoes", + "eggplant", + "all-purpose flour" + ] + }, + { + "id": 44105, + "cuisine": "italian", + "ingredients": [ + "pepperoni slices", + "pepperoni", + "basil", + "sausages", + "water", + "shredded mozzarella cheese", + "tomato sauce", + "penne pasta" + ] + }, + { + "id": 36802, + "cuisine": "mexican", + "ingredients": [ + "corn", + "salsa", + "black pepper", + "bell pepper", + "sour cream", + "olive oil", + "yellow onion", + "kosher salt", + "guacamole", + "skirt steak" + ] + }, + { + "id": 36236, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "hot pepper sauce", + "creamy peanut butter", + "fish sauce", + "water", + "sesame oil", + "boneless skinless chicken breast halves", + "jasmine rice", + "unsalted cashews", + "onions", + "brown sugar", + "fresh ginger root", + "garlic" + ] + }, + { + "id": 21035, + "cuisine": "southern_us", + "ingredients": [ + "grape tomatoes", + "lemon", + "english cucumber", + "dressing", + "radishes", + "roasting chickens", + "chopped fresh mint", + "olive oil", + "chickpeas", + "flat leaf parsley", + "pita chips", + "purple onion", + "fresh lemon juice" + ] + }, + { + "id": 27024, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "ground beef", + "tomatoes", + "garlic powder", + "ground cumin", + "pepper", + "onions", + "green bell pepper", + "salt" + ] + }, + { + "id": 32380, + "cuisine": "mexican", + "ingredients": [ + "red potato", + "hot pepper", + "hot chili powder", + "beef broth", + "shredded cabbage", + "lime wedges", + "garlic", + "chopped cilantro fresh", + "white hominy", + "chile pepper", + "diced tomatoes", + "onions", + "flank steak", + "queso fresco", + "salt", + "ground cumin" + ] + }, + { + "id": 3298, + "cuisine": "jamaican", + "ingredients": [ + "kosher salt", + "unsalted butter", + "crushed pineapple", + "milk", + "flour", + "pepper", + "grated parmesan cheese", + "eggs", + "honey", + "baking powder" + ] + }, + { + "id": 33323, + "cuisine": "thai", + "ingredients": [ + "scallion greens", + "dry roasted peanuts", + "crushed red pepper", + "mung bean sprouts", + "fish sauce", + "lime wedges", + "peanut oil", + "wide rice noodles", + "large eggs", + "rice vinegar", + "brown sugar", + "garlic", + "shrimp" + ] + }, + { + "id": 13710, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "fresh parsley", + "unsalted butter", + "crushed red pepper", + "olive oil", + "linguine", + "dry white wine", + "shrimp" + ] + }, + { + "id": 35291, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "light corn syrup", + "unsalted butter", + "nonstick spray", + "baking soda", + "salted dry roasted peanuts", + "coarse salt" + ] + }, + { + "id": 29412, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "olive oil", + "asiago", + "garlic cloves", + "fresh basil", + "shallots", + "penne pasta", + "shiitake", + "vegetable broth", + "asparagus spears" + ] + }, + { + "id": 18070, + "cuisine": "thai", + "ingredients": [ + "cremini mushrooms", + "cilantro leaves", + "kaffir lime leaves", + "lemon grass", + "fresh lime juice", + "chicken broth", + "fresh ginger", + "coconut milk", + "fish sauce", + "deveined shrimp", + "serrano chile" + ] + }, + { + "id": 11024, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "fresh dill", + "plum tomatoes", + "flour tortillas", + "smoked salmon", + "light cream cheese" + ] + }, + { + "id": 16299, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "evapor low-fat milk", + "sugar", + "corn syrup", + "water", + "and fat free half half", + "butter" + ] + }, + { + "id": 8526, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "frozen corn kernels", + "yellow corn meal", + "baking powder", + "eggs", + "salt", + "milk" + ] + }, + { + "id": 49609, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "nonfat ricotta cheese", + "prosciutto", + "boneless skinless chicken breast halves", + "frozen chopped spinach", + "marinara sauce", + "sun-dried tomatoes", + "cooking spray" + ] + }, + { + "id": 3290, + "cuisine": "mexican", + "ingredients": [ + "barbecue sauce", + "chipotles in adobo", + "tomato paste", + "purple onion", + "shredded Monterey Jack cheese", + "whole wheat tortillas", + "canola oil", + "cider vinegar", + "portobello caps" + ] + }, + { + "id": 14585, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "onion powder", + "ground cumin", + "boneless pork shoulder roast", + "cayenne", + "cinnamon", + "brown sugar", + "garlic powder", + "vegetable oil", + "ground cloves", + "chili powder", + "ground oregano" + ] + }, + { + "id": 2304, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "cockles", + "snow peas", + "dashi", + "sake" + ] + }, + { + "id": 4224, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "tomato salsa", + "fresh lemon juice", + "guacamole", + "salt", + "ground cumin", + "bell pepper", + "purple onion", + "skirt steak", + "olive oil", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 36953, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "flour tortillas", + "reduced-fat sour cream", + "ground cumin", + "fresh cilantro", + "lean ground beef", + "taco seasoning reduced sodium", + "black beans", + "reduced fat italian dressing", + "salsa", + "Mexican cheese blend", + "shredded lettuce", + "onions" + ] + }, + { + "id": 25695, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "napa cabbage", + "rice vinegar", + "mint", + "cooked chicken", + "garlic", + "fresh lime juice", + "ground black pepper", + "cilantro", + "carrots", + "sugar", + "vegetable oil", + "vietnamese fish sauce", + "onions" + ] + }, + { + "id": 25253, + "cuisine": "southern_us", + "ingredients": [ + "green tomatoes", + "pepper", + "tarragon vinegar", + "sugar", + "salt" + ] + }, + { + "id": 2829, + "cuisine": "irish", + "ingredients": [ + "yellow peas", + "vegetable broth", + "onions", + "bay leaves", + "salt", + "water", + "cracked black pepper", + "carrots", + "potatoes", + "lamb shoulder" + ] + }, + { + "id": 30469, + "cuisine": "mexican", + "ingredients": [ + "Kraft Sharp Cheddar Cheese", + "full fat sour cream", + "tomatoes", + "cooked chicken", + "poblano peppers", + "scallions", + "fresh cilantro", + "colby jack cheese" + ] + }, + { + "id": 8191, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "sliced green onions", + "pepper", + "salt", + "filet mignon steaks", + "sliced mushrooms", + "marsala wine", + "butter" + ] + }, + { + "id": 23659, + "cuisine": "mexican", + "ingredients": [ + "shredded low-fat cheddar cheese", + "boneless skinless chicken breasts", + "olive oil", + "frozen corn", + "black beans", + "whole wheat tortillas", + "barbecue sauce" + ] + }, + { + "id": 12120, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "green beans", + "ginger", + "skirt steak", + "coconut oil", + "fresh basil leaves", + "cooked rice", + "garlic" + ] + }, + { + "id": 11498, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "zucchini", + "olive oil", + "greek seasoning", + "salt" + ] + }, + { + "id": 15670, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "freshly ground pepper", + "balsamic vinegar", + "coarse salt", + "chicken thighs", + "garlic" + ] + }, + { + "id": 10750, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "garlic", + "coriander", + "diced onions", + "chili powder", + "Mexican cheese", + "cumin", + "flour tortillas", + "red enchilada sauce", + "chopped cilantro fresh", + "red kidney beans", + "diced tomatoes", + "ground turkey", + "italian seasoning" + ] + }, + { + "id": 20822, + "cuisine": "greek", + "ingredients": [ + "pinenuts", + "extra-virgin olive oil", + "brine", + "golden raisins", + "ricotta", + "fennel bulb", + "salt", + "brine-cured olives", + "kalamata", + "Italian bread" + ] + }, + { + "id": 32607, + "cuisine": "mexican", + "ingredients": [ + "sweet corn", + "cream", + "chiles", + "queso anejo", + "unsalted butter" + ] + }, + { + "id": 23869, + "cuisine": "chinese", + "ingredients": [ + "water", + "egg whites", + "crushed red pepper flakes", + "sugar", + "baking soda", + "boneless skinless chicken breasts", + "garlic cloves", + "white vinegar", + "fresh ginger", + "green onions", + "all-purpose flour", + "soy sauce", + "hoisin sauce", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 33185, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper flakes", + "kosher salt", + "grated parmesan cheese", + "whole wheat fettuccine", + "swiss chard", + "garlic", + "cherry tomatoes", + "cannellini beans" + ] + }, + { + "id": 3607, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "chili paste", + "garlic", + "beansprouts", + "cooked shrimp", + "soy sauce", + "green onions", + "spring rolls", + "toasted sesame oil", + "pork", + "hoisin sauce", + "cilantro leaves", + "fresh mint", + "natural peanut butter", + "water", + "rice noodles", + "carrots", + "fresh lime juice" + ] + }, + { + "id": 17629, + "cuisine": "filipino", + "ingredients": [ + "olive oil", + "garlic", + "fish sauce", + "green onions", + "onions", + "chicken broth", + "vermicelli", + "dried shiitake mushrooms", + "white pepper", + "chicken meat" + ] + }, + { + "id": 45953, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "chicken breasts", + "sweet pepper", + "ground cumin", + "red kidney beans", + "shredded cheddar cheese", + "extra-virgin olive oil", + "rice", + "chili pepper", + "prepar salsa", + "cilantro leaves", + "seasoning", + "corn", + "garlic", + "garlic salt" + ] + }, + { + "id": 11807, + "cuisine": "british", + "ingredients": [ + "eggs", + "cinnamon", + "cake flour", + "apricot jam", + "sliced almonds", + "lemon", + "hot water", + "powdered sugar", + "butter", + "salt", + "yeast", + "caster sugar", + "buttermilk", + "cake mix" + ] + }, + { + "id": 29252, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "crushed red pepper", + "rigatoni", + "fresh basil", + "parmesan cheese", + "garlic cloves", + "green bell pepper", + "mild Italian sausage", + "red bell pepper", + "chicken broth", + "olive oil", + "purple onion" + ] + }, + { + "id": 7621, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "leaves", + "star anise", + "water", + "vinegar", + "soy sauce", + "pork leg", + "oil", + "shiitake", + "Shaoxing wine" + ] + }, + { + "id": 13497, + "cuisine": "brazilian", + "ingredients": [ + "honey", + "powdered sugar", + "butter", + "coconut", + "vanilla extract", + "eggs", + "egg yolks" + ] + }, + { + "id": 34423, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "black pepper", + "grated parmesan cheese", + "walnuts", + "unsalted butter", + "broccoli", + "kosher salt", + "florets", + "orecchiette" + ] + }, + { + "id": 48551, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "Mexican oregano", + "taco seasoning", + "chopped green chilies", + "white beans", + "ground cumin", + "crushed tomatoes", + "garlic", + "marjoram", + "cooked chicken", + "cayenne pepper" + ] + }, + { + "id": 31996, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "bacon", + "cabbage" + ] + }, + { + "id": 7075, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "ground black pepper", + "extra-virgin olive oil", + "celery ribs", + "kosher salt", + "red pepper flakes", + "chopped fresh sage", + "pasta", + "freshly grated parmesan", + "diced tomatoes", + "onions", + "sage leaves", + "fresh rosemary", + "cannellini beans", + "garlic" + ] + }, + { + "id": 25939, + "cuisine": "british", + "ingredients": [ + "ground ginger", + "tangerine", + "ground nutmeg", + "baking powder", + "all-purpose flour", + "pure maple syrup", + "bread crumbs", + "large eggs", + "vanilla extract", + "gran marnier", + "ground cinnamon", + "ground cloves", + "unsalted butter", + "fresh cranberries", + "calimyrna figs", + "dried currants", + "golden brown sugar", + "dark rum", + "salt", + "dried cranberries" + ] + }, + { + "id": 39083, + "cuisine": "italian", + "ingredients": [ + "spinach leaves", + "diced tomatoes", + "white kidney beans", + "italian sausage", + "low-sodium fat-free chicken broth", + "onions", + "pepper", + "garlic", + "fennel bulb", + "salt" + ] + }, + { + "id": 29321, + "cuisine": "irish", + "ingredients": [ + "russet potatoes", + "unsalted butter", + "grated nutmeg", + "sugar", + "apples", + "coarse salt" + ] + }, + { + "id": 5777, + "cuisine": "vietnamese", + "ingredients": [ + "chicken wings", + "water", + "sugar", + "chili sauce", + "fish sauce", + "lime juice", + "minced garlic" + ] + }, + { + "id": 46277, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "cooking spray", + "flat leaf parsley", + "seasoned bread crumbs", + "fresh parmesan cheese", + "salt", + "black pepper", + "garlic powder", + "lean ground beef", + "dried oregano", + "dried basil", + "finely chopped onion", + "tomato basil sauce" + ] + }, + { + "id": 10114, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "granulated sugar", + "salt", + "pure vanilla extract", + "peaches", + "vegetable shortening", + "baking soda", + "baking powder", + "all-purpose flour", + "ground cinnamon", + "unsalted butter", + "buttermilk" + ] + }, + { + "id": 32931, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "lemon grass", + "pineapple", + "red bell pepper", + "chopped cilantro fresh", + "fish sauce", + "lime", + "shallots", + "salt", + "medium shrimp", + "soy sauce", + "fresh ginger root", + "chile pepper", + "peanut oil", + "white sugar", + "fresh basil", + "water", + "unsalted butter", + "garlic", + "coconut milk" + ] + }, + { + "id": 42403, + "cuisine": "italian", + "ingredients": [ + "baby spinach", + "salt", + "black pepper", + "heavy cream", + "shredded mozzarella cheese", + "potato gnocchi", + "all-purpose flour", + "ground nutmeg", + "part-skim ricotta cheese" + ] + }, + { + "id": 4035, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "rice", + "sausages", + "mung bean sprouts", + "soy sauce", + "loin pork roast", + "scallions", + "dried red chile peppers", + "large eggs", + "peanut oil", + "kimchi", + "water", + "salt", + "garlic cloves", + "toasted sesame oil" + ] + }, + { + "id": 38688, + "cuisine": "japanese", + "ingredients": [ + "sesame oil", + "kosher salt", + "soya bean" + ] + }, + { + "id": 29943, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "ground pork", + "dry bread crumbs", + "chopped cilantro fresh", + "ground black pepper", + "garlic", + "ground beef", + "chicken broth", + "vegetable oil", + "salt", + "onions", + "water", + "tomatoes with juice", + "chipotles in adobo", + "ground cumin" + ] + }, + { + "id": 16442, + "cuisine": "southern_us", + "ingredients": [ + "dried basil", + "shredded sharp cheddar cheese", + "freshly ground pepper", + "cooked ham", + "buttermilk cornbread", + "hot sauce", + "vegetable oil cooking spray", + "large eggs", + "salt", + "milk", + "worcestershire sauce", + "dried dillweed" + ] + }, + { + "id": 826, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "raisins", + "onions", + "brown sugar", + "lamb stew meat", + "all-purpose flour", + "chicken stock", + "curry powder", + "salt", + "granny smith apples", + "butter", + "lemon juice" + ] + }, + { + "id": 47767, + "cuisine": "indian", + "ingredients": [ + "coarse salt", + "fresh mint", + "water", + "cilantro sprigs", + "serrano chile", + "coconut", + "frozen banana leaf", + "ground cumin", + "salmon", + "large garlic cloves", + "fresh lime juice" + ] + }, + { + "id": 39635, + "cuisine": "chinese", + "ingredients": [ + "butter lettuce", + "minced ginger", + "szechwan peppercorns", + "star anise", + "toasted sesame seeds", + "celery ribs", + "kosher salt", + "cayenne", + "red pepper flakes", + "dark brown sugar", + "soy sauce", + "eggplant", + "sesame oil", + "rice vinegar", + "canola oil", + "brown sugar", + "minced garlic", + "sherry", + "ginger", + "scallions" + ] + }, + { + "id": 549, + "cuisine": "french", + "ingredients": [ + "water", + "boneless beef chuck roast", + "carrots", + "pepper", + "olive oil", + "beef broth", + "flat leaf parsley", + "fresh rosemary", + "pearl onions", + "salt", + "corn starch", + "minced garlic", + "button mushrooms", + "cabernet sauvignon", + "thick-cut bacon" + ] + }, + { + "id": 23509, + "cuisine": "indian", + "ingredients": [ + "mace", + "cardamom seeds", + "fennel seeds", + "whole cloves", + "cinnamon sticks", + "ground nutmeg", + "cumin seed", + "black peppercorns", + "bay leaves" + ] + }, + { + "id": 31813, + "cuisine": "thai", + "ingredients": [ + "salt", + "chili", + "rice vinegar", + "sugar", + "cilantro leaves", + "shallots", + "cucumber" + ] + }, + { + "id": 3658, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "spring onions", + "chicken", + "olive oil", + "garlic", + "chicken broth", + "hard-boiled egg", + "calamansi", + "rolled oats", + "ginger" + ] + }, + { + "id": 34458, + "cuisine": "southern_us", + "ingredients": [ + "tumeric", + "pimentos", + "cayenne pepper", + "chopped cilantro fresh", + "potatoes", + "cilantro sprigs", + "garlic cloves", + "canned chicken broth", + "butter", + "chopped onion", + "long grain white rice", + "dry white wine", + "smoked sausage", + "shrimp" + ] + }, + { + "id": 38883, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "all-purpose flour", + "polenta", + "large eggs", + "sour cream", + "sugar", + "baking powder", + "grated lemon peel", + "olive oil", + "lemon juice" + ] + }, + { + "id": 31175, + "cuisine": "french", + "ingredients": [ + "shallots", + "ground pepper", + "salt", + "dijon mustard", + "dried mixed herbs", + "olive oil", + "wine vinegar" + ] + }, + { + "id": 10850, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "large eggs", + "double-acting baking powder", + "yellow corn meal", + "buttermilk", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 41432, + "cuisine": "irish", + "ingredients": [ + "cooking spray", + "vanilla extract", + "chopped pecans", + "large eggs", + "stout", + "unsweetened chocolate", + "brown sugar", + "baking powder", + "salt", + "granulated sugar", + "butter", + "all-purpose flour" + ] + }, + { + "id": 36853, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "flour tortillas", + "chopped cilantro fresh", + "fresh tomatoes", + "vegetable oil", + "avocado", + "pumpkin", + "ground cumin", + "salt and ground black pepper", + "vegetable stock" + ] + }, + { + "id": 11694, + "cuisine": "italian", + "ingredients": [ + "water", + "grated parmesan cheese", + "shredded mozzarella cheese", + "prosciutto", + "cracked black pepper", + "bulk italian sausag", + "ricotta cheese", + "chopped parsley", + "eggs", + "large eggs", + "pizza doughs" + ] + }, + { + "id": 33080, + "cuisine": "korean", + "ingredients": [ + "sugar", + "baby spinach", + "chopped garlic", + "mushrooms", + "carrots", + "safflower oil", + "tamari soy sauce", + "bean threads", + "sesame oil", + "onions" + ] + }, + { + "id": 47587, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "berries", + "unflavored gelatin", + "non-fat sour cream", + "nonfat block cream cheese", + "water", + "chèvre", + "gingersnap", + "nonfat ricotta cheese" + ] + }, + { + "id": 39850, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "low-sodium low-fat chicken broth", + "canola oil", + "kosher salt", + "orange marmalade", + "boneless skinless chicken breast halves", + "fresh ginger", + "ground coriander", + "sliced almonds", + "ground black pepper", + "scallions" + ] + }, + { + "id": 47791, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "fat free less sodium beef broth", + "chopped onion", + "red kidnei beans, rins and drain", + "cannellini beans", + "crushed red pepper", + "carrots", + "ground round", + "fresh parmesan cheese", + "chopped celery", + "garlic cloves", + "black pepper", + "ditalini", + "salt", + "italian seasoning" + ] + }, + { + "id": 12209, + "cuisine": "french", + "ingredients": [ + "monkfish", + "dried thyme", + "potatoes", + "sea salt", + "fish", + "rosemary", + "lobster", + "soup", + "saffron", + "water", + "olive oil", + "rouille", + "croutons", + "peeled tomatoes", + "red mullet", + "bay leaves", + "onions" + ] + }, + { + "id": 848, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "Mexican beer", + "salt", + "fresh lime juice", + "orange bell pepper", + "jalapeno chilies", + "reduced-fat sour cream", + "salsa", + "boneless skinless chicken breast halves", + "flour tortillas", + "worcestershire sauce", + "cilantro leaves", + "onions", + "lower sodium soy sauce", + "cooking spray", + "yellow bell pepper", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 35813, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "ranch dressing", + "fresh parsley", + "red potato", + "grated parmesan cheese", + "salt", + "white vinegar", + "minced garlic", + "bacon", + "mayonaise", + "prepared mustard", + "chopped onion" + ] + }, + { + "id": 3021, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "egg yolks", + "grated parmesan cheese", + "ricotta", + "large eggs", + "salt", + "tomato sauce", + "flour" + ] + }, + { + "id": 40011, + "cuisine": "russian", + "ingredients": [ + "extra sharp white cheddar cheese", + "vegetable oil", + "onions", + "water", + "large eggs", + "all-purpose flour", + "ground nutmeg", + "baking potatoes", + "black pepper", + "unsalted butter", + "salt" + ] + }, + { + "id": 8002, + "cuisine": "southern_us", + "ingredients": [ + "crispy bacon", + "mild salsa", + "mustard greens", + "purple onion", + "nutmeg", + "water", + "unsalted butter", + "vegetable broth", + "sharp cheddar cheese", + "eggs", + "olive oil", + "whole milk", + "garlic", + "grits", + "kosher salt", + "ground black pepper", + "gouda", + "hot sauce" + ] + }, + { + "id": 3088, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "corn", + "salt", + "white pepper", + "apple cider vinegar", + "tree ears", + "soy sauce", + "soft tofu", + "scallions", + "chicken broth", + "water", + "ground pork", + "bamboo shoots" + ] + }, + { + "id": 29345, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "pepper", + "salt", + "red bell pepper", + "mussels", + "chopped almonds", + "garlic cloves", + "fresh parsley", + "clams", + "crushed tomatoes", + "chopped onion", + "medium shrimp", + "vegetable oil cooking spray", + "dry sherry", + "low sodium 96% fat free ham" + ] + }, + { + "id": 837, + "cuisine": "italian", + "ingredients": [ + "biscuit dough", + "ground beef", + "sliced black olives", + "sausages", + "shredded cheddar cheese", + "shredded mozzarella cheese", + "onions", + "pizza sauce", + "sliced mushrooms" + ] + }, + { + "id": 1022, + "cuisine": "french", + "ingredients": [ + "reduced fat milk", + "maple syrup", + "ground cinnamon", + "vanilla extract", + "butter oil", + "whole wheat bread", + "blueberries", + "large eggs", + "salt" + ] + }, + { + "id": 31458, + "cuisine": "italian", + "ingredients": [ + "wheat bran", + "sun-dried tomatoes", + "boiling water", + "active dry yeast", + "powdered milk", + "water", + "quinoa", + "bread flour", + "dried basil", + "salt" + ] + }, + { + "id": 38194, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "white wine", + "red pepper flakes", + "flat leaf parsley", + "hard shelled clams", + "fresh thyme leaves", + "Italian bread", + "kosher salt", + "extra-virgin olive oil" + ] + }, + { + "id": 10101, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "sesame oil", + "garlic", + "soy sauce", + "ground pork", + "corn starch", + "fish sauce", + "wonton wrappers", + "scallions", + "ground black pepper", + "ginger", + "toasted sesame oil" + ] + }, + { + "id": 27561, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "extra-virgin olive oil", + "fresh basil", + "roasted red peppers", + "fresh lemon juice", + "white tuna in water", + "sourdough bread", + "purple onion", + "capers", + "fennel bulb" + ] + }, + { + "id": 1341, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "lemon", + "water", + "navel oranges", + "brandy", + "fresh orange juice", + "Cointreau Liqueur", + "dry red wine" + ] + }, + { + "id": 17592, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "olive oil", + "bread flour", + "active dry yeast", + "white sugar", + "garlic" + ] + }, + { + "id": 46814, + "cuisine": "japanese", + "ingredients": [ + "black peppercorns", + "honey", + "cinnamon", + "salt", + "coriander", + "clove", + "cream", + "garam masala", + "kasuri methi", + "green chilies", + "ginger paste", + "garlic paste", + "mace", + "butter", + "tomato ketchup", + "cashew nuts", + "tomatoes", + "red chile powder", + "yoghurt", + "paneer", + "mustard oil", + "ground cumin" + ] + }, + { + "id": 14746, + "cuisine": "cajun_creole", + "ingredients": [ + "large egg whites", + "cooking spray", + "sliced mushrooms", + "crawfish", + "processed cheese", + "hot sauce", + "seasoning", + "large eggs", + "non-fat sour cream", + "water", + "chopped fresh chives", + "ham" + ] + }, + { + "id": 7995, + "cuisine": "mexican", + "ingredients": [ + "corn", + "ground beef", + "salsa", + "pasta spiral", + "condensed cream of chicken soup", + "Mexican cheese" + ] + }, + { + "id": 7027, + "cuisine": "mexican", + "ingredients": [ + "cauliflower florets", + "heavy whipping cream", + "kosher salt", + "green chilies", + "shredded sharp cheddar cheese", + "chopped cilantro fresh", + "butter", + "mexican chorizo" + ] + }, + { + "id": 20478, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "heavy cream", + "freshly ground pepper", + "flat leaf parsley", + "dried pasta", + "large eggs", + "all-purpose flour", + "garlic cloves", + "milk", + "grated parmesan cheese", + "dry bread crumbs", + "ground turkey", + "chicken broth", + "shiitake", + "salt", + "scallions" + ] + }, + { + "id": 5259, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "olive oil", + "hard-boiled egg", + "canned tomatoes", + "onions", + "capers", + "large eggs", + "lean ground beef", + "smoked paprika", + "eggs", + "unsalted butter", + "parsley", + "salt", + "ground cumin", + "pepper", + "flour", + "ice water", + "red bell pepper" + ] + }, + { + "id": 35935, + "cuisine": "jamaican", + "ingredients": [ + "ground black pepper", + "scallions", + "scotch bonnet chile", + "butternut squash", + "thyme", + "homemade chicken stock", + "salt" + ] + }, + { + "id": 45859, + "cuisine": "italian", + "ingredients": [ + "prepar pesto", + "meat", + "freshly ground pepper", + "olive oil", + "sea salt", + "onions", + "fresh leav spinach", + "ravioli", + "garlic cloves", + "fresh rosemary", + "low sodium chicken broth", + "diced tomatoes" + ] + }, + { + "id": 48187, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "boneless skinless chicken breasts", + "chopped cilantro fresh", + "avocado", + "chopped tomatoes", + "tomato salsa", + "Cholula Hot Sauce", + "onion powder", + "iceberg lettuce", + "green chile", + "flour tortillas", + "purple onion" + ] + }, + { + "id": 11958, + "cuisine": "vietnamese", + "ingredients": [ + "black pepper", + "rice vinegar", + "fish sauce", + "jalapeno chilies", + "chicken thighs", + "water", + "oil", + "sugar", + "garlic" + ] + }, + { + "id": 17467, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "cilantro", + "carrots", + "cumin", + "clove", + "chili powder", + "garlic", + "onions", + "tomatoes", + "cinnamon", + "salt", + "frozen peas", + "cauliflower", + "potatoes", + "ginger", + "mustard seeds", + "canola oil" + ] + }, + { + "id": 42830, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "chili powder", + "fresh mint", + "ground cumin", + "tomatoes", + "ground black pepper", + "garlic", + "olive oil spray", + "fresh red chili", + "garam masala", + "ginger", + "onions", + "lean minced beef", + "yoghurt", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 34000, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "grated lemon zest", + "caster sugar", + "vanilla extract", + "ammonium bicarbonate", + "plain flour", + "butter", + "chopped walnuts", + "honey", + "salt" + ] + }, + { + "id": 47232, + "cuisine": "jamaican", + "ingredients": [ + "water", + "ground black pepper", + "salt", + "pepper", + "ground nutmeg", + "garlic", + "boneless skinless chicken breast halves", + "brown sugar", + "dried thyme", + "vegetable oil", + "onions", + "ground ginger", + "lime", + "green onions", + "ground allspice" + ] + }, + { + "id": 16784, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "butter", + "sour cream", + "vanilla ice cream", + "lemon extract", + "all-purpose flour", + "sugar", + "large eggs", + "sauce", + "bananas", + "vanilla extract", + "glaze" + ] + }, + { + "id": 40760, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "chees fresco queso", + "chopped cilantro fresh", + "butter", + "garlic cloves", + "chili powder", + "chopped onion", + "dried oregano", + "large eggs", + "diced tomatoes", + "poblano chiles" + ] + }, + { + "id": 5520, + "cuisine": "vietnamese", + "ingredients": [ + "minced garlic", + "spices", + "green cabbage", + "egg noodles", + "carrots", + "beef", + "oil", + "soy sauce", + "vegetable oil" + ] + }, + { + "id": 39070, + "cuisine": "italian", + "ingredients": [ + "lemon", + "artichokes" + ] + }, + { + "id": 3333, + "cuisine": "southern_us", + "ingredients": [ + "sliced almonds", + "peach slices", + "sweetened condensed milk", + "pure vanilla extract", + "unsalted butter", + "almond meal", + "brown sugar", + "cinnamon", + "cream cheese", + "peaches", + "sea salt" + ] + }, + { + "id": 26052, + "cuisine": "thai", + "ingredients": [ + "bottled clam juice", + "boneless skinless chicken breasts", + "fresh lime juice", + "fat free less sodium chicken broth", + "mushrooms", + "red curry paste", + "large shrimp", + "sugar", + "fresh ginger", + "onion tops", + "snow peas", + "fish sauce", + "minced garlic", + "light coconut milk", + "chopped cilantro fresh" + ] + }, + { + "id": 17739, + "cuisine": "french", + "ingredients": [ + "sugar", + "half & half", + "large egg yolks", + "tea bags" + ] + }, + { + "id": 49444, + "cuisine": "indian", + "ingredients": [ + "cheddar cheese", + "olive oil", + "yoghurt", + "all-purpose flour", + "thyme", + "dough", + "pepper", + "reduced fat milk", + "purple onion", + "kale leaves", + "broth", + "nutmeg", + "active dry yeast", + "sweet potatoes", + "salt", + "carrots", + "sugar", + "whole wheat flour", + "butter", + "broccoli", + "onions" + ] + }, + { + "id": 11184, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "red pepper", + "low-fat natural yogurt", + "flour tortillas", + "skinless chicken breasts", + "coriander", + "lime", + "Flora Cuisine", + "onions", + "chili powder", + "smoked paprika" + ] + }, + { + "id": 34808, + "cuisine": "french", + "ingredients": [ + "water", + "semisweet chocolate", + "unsalted butter", + "sugar", + "large eggs" + ] + }, + { + "id": 47775, + "cuisine": "french", + "ingredients": [ + "water", + "large eggs", + "all-purpose flour", + "sugar", + "unsalted butter", + "vanilla", + "granny smith apples", + "calvados", + "salt", + "ground cinnamon", + "large egg yolks", + "baking powder" + ] + }, + { + "id": 45947, + "cuisine": "british", + "ingredients": [ + "powdered sugar", + "fresh mint", + "heavy cream", + "sugar", + "blackberries", + "vanilla" + ] + }, + { + "id": 37030, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "yoghurt", + "rice", + "sliced mushrooms", + "stone flower", + "garlic paste", + "cilantro leaves", + "green chilies", + "onions", + "clove", + "mint", + "star anise", + "green cardamom", + "cinnamon sticks", + "fennel seeds", + "mace", + "grated nutmeg", + "oil", + "shahi jeera" + ] + }, + { + "id": 48695, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "ginger", + "ground turmeric", + "moong dal", + "garam masala", + "cumin seed", + "lime", + "salt", + "asafetida", + "water", + "chili powder", + "ghee" + ] + }, + { + "id": 12707, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "reduced fat milk", + "butter", + "corn syrup", + "ground nutmeg", + "cooking spray", + "vanilla extract", + "sugar", + "french bread", + "raisins", + "large eggs", + "bourbon whiskey", + "salt" + ] + }, + { + "id": 12904, + "cuisine": "japanese", + "ingredients": [ + "asafoetida", + "garam masala", + "chili powder", + "oil", + "daal", + "coriander powder", + "ginger", + "lentils", + "fennel seeds", + "baking soda", + "flour", + "green chilies", + "semolina", + "cooking oil", + "salt" + ] + }, + { + "id": 8051, + "cuisine": "french", + "ingredients": [ + "potatoes", + "green beans", + "calvados", + "heavy cream", + "butter", + "chicken thighs", + "zucchini", + "carrots" + ] + }, + { + "id": 24621, + "cuisine": "thai", + "ingredients": [ + "smooth natural peanut butter", + "fresh ginger", + "garlic", + "curry paste", + "homemade chicken stock", + "splenda", + "peanut oil", + "lite coconut milk", + "ground black pepper", + "rice vinegar", + "soy sauce", + "boneless skinless chicken breasts", + "chopped cilantro" + ] + }, + { + "id": 12227, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "salsa", + "cooked rice", + "red pepper", + "taco seasoning", + "avocado", + "chicken breasts", + "green pepper", + "black beans", + "yellow corn", + "onions" + ] + }, + { + "id": 23769, + "cuisine": "french", + "ingredients": [ + "granny smith apples", + "crème de framboise", + "dry hard cider" + ] + }, + { + "id": 49293, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "green onions", + "garlic", + "brown sugar", + "asparagus", + "sesame oil", + "red miso", + "low sodium soy sauce", + "fresh ginger", + "fresh shiitake mushrooms", + "soba noodles", + "sunflower seeds", + "black sesame seeds", + "extra-virgin olive oil", + "hot water" + ] + }, + { + "id": 36922, + "cuisine": "mexican", + "ingredients": [ + "beef sausage", + "barbecue sauce", + "cheddar cheese", + "tortilla chips" + ] + }, + { + "id": 39114, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "lemon grass", + "salt", + "coconut milk", + "curry powder", + "shallots", + "garlic cloves", + "coriander", + "brown sugar", + "potatoes", + "oil", + "chicken fillets", + "chicken legs", + "peanuts", + "ginger", + "carrots", + "ground turmeric" + ] + }, + { + "id": 1580, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "butter", + "semi-sweet chocolate morsels", + "graham cracker crumbs", + "all-purpose flour", + "large eggs", + "vanilla", + "bourbon whiskey", + "chopped pecans" + ] + }, + { + "id": 6377, + "cuisine": "jamaican", + "ingredients": [ + "water", + "salt", + "creamed coconut", + "peas", + "onions", + "dried thyme", + "long-grain rice", + "pepper", + "garlic" + ] + }, + { + "id": 6721, + "cuisine": "moroccan", + "ingredients": [ + "chiles", + "honey", + "paprika", + "grated lemon zest", + "basmati rice", + "fresh cilantro", + "sweet potatoes", + "garlic", + "flat leaf parsley", + "kosher salt", + "ground black pepper", + "cauliflower florets", + "fresh lemon juice", + "ground cumin", + "water", + "Anaheim chile", + "extra-virgin olive oil", + "red bell pepper" + ] + }, + { + "id": 28155, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "salt", + "pepper", + "green onions", + "tomato basil sauce", + "wide egg noodles", + "lean ground beef", + "sour cream", + "parmesan cheese", + "large garlic cloves" + ] + }, + { + "id": 40666, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "ground black pepper", + "sweet italian sausage", + "olive oil", + "cannellini beans", + "sage", + "seasoned bread crumbs", + "grated parmesan cheese", + "onions", + "chicken broth", + "fennel", + "garlic" + ] + }, + { + "id": 49517, + "cuisine": "japanese", + "ingredients": [ + "warm water", + "sugar cookie dough", + "eggs", + "active dry yeast", + "bread flour", + "milk", + "salt", + "sugar", + "unsalted butter" + ] + }, + { + "id": 48037, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "lime", + "cilantro stems", + "apple cider vinegar", + "sour cream", + "mayonaise", + "orange bell pepper", + "chili powder", + "salt", + "dried oregano", + "romaine lettuce", + "olive oil", + "flank steak", + "garlic", + "onions", + "avocado", + "kosher salt", + "ground black pepper", + "onion powder", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 4434, + "cuisine": "italian", + "ingredients": [ + "angel hair", + "butter", + "olive oil", + "crushed red pepper", + "kosher salt", + "garlic", + "dry white wine", + "medium shrimp" + ] + }, + { + "id": 15244, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "homemade chicken stock", + "green olives", + "duck" + ] + }, + { + "id": 29824, + "cuisine": "mexican", + "ingredients": [ + "low salt chicken broth", + "onions", + "zucchini", + "flat leaf parsley", + "olive oil", + "red bell pepper", + "long grain white rice", + "pumpkin seeds", + "golden zucchini" + ] + }, + { + "id": 38129, + "cuisine": "russian", + "ingredients": [ + "baking apples", + "all-purpose flour", + "butter", + "eggs", + "vanilla extract", + "baking powder", + "white sugar" + ] + }, + { + "id": 2166, + "cuisine": "indian", + "ingredients": [ + "mixed spice", + "cumin seed", + "chicken wings", + "vegetable oil", + "fresh mint", + "plain yogurt", + "coarse salt", + "water", + "carrots" + ] + }, + { + "id": 24782, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "garlic", + "lime juice", + "carrots", + "chili paste", + "water", + "vietnamese fish sauce" + ] + }, + { + "id": 44245, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "garlic cloves", + "bacon", + "fresh green bean", + "pepper", + "salt" + ] + }, + { + "id": 5342, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "garlic", + "ground beef", + "spinach", + "sesame oil", + "rice", + "eggs", + "pickled radish", + "salt", + "skirt steak", + "sugar", + "vegetable oil", + "carrots" + ] + }, + { + "id": 38698, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "salt", + "garlic cloves", + "peeled fresh ginger", + "chopped onion", + "ground cumin", + "garam masala", + "chickpeas", + "chopped cilantro fresh", + "tomatoes", + "ground red pepper", + "organic vegetable broth" + ] + }, + { + "id": 21573, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "olive oil", + "cheese dip", + "black beans", + "garlic", + "jalapeno chilies", + "onions" + ] + }, + { + "id": 24125, + "cuisine": "indian", + "ingredients": [ + "fresh red chili", + "lime", + "flour", + "lime wedges", + "chutney", + "tumeric", + "fresh ginger", + "yoghurt", + "sea salt", + "bicarbonate of soda", + "olive oil", + "sweet potatoes", + "baking potatoes", + "coriander", + "chickpea flour", + "red chili peppers", + "ground black pepper", + "spring onions", + "mustard seeds" + ] + }, + { + "id": 11785, + "cuisine": "brazilian", + "ingredients": [ + "chicken wings", + "flour", + "salt", + "lime", + "vegetable oil", + "chopped parsley", + "pepper", + "lime wedges", + "garlic cloves", + "olive oil", + "red pepper flakes" + ] + }, + { + "id": 3842, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "freshly ground pepper", + "garlic", + "large shrimp", + "grated parmesan cheese", + "fresh parsley", + "seasoning salt", + "dry bread crumbs" + ] + }, + { + "id": 20682, + "cuisine": "italian", + "ingredients": [ + "frozen spinach", + "grated parmesan cheese", + "shredded mozzarella cheese", + "garlic powder", + "hot italian pork sausage", + "onions", + "olive oil", + "pizza sauce", + "oil", + "egg roll wrappers", + "green pepper" + ] + }, + { + "id": 910, + "cuisine": "southern_us", + "ingredients": [ + "vegetable stock", + "chopped onion", + "collard greens", + "garlic", + "olive oil", + "crushed red pepper", + "tomatoes", + "butter" + ] + }, + { + "id": 180, + "cuisine": "italian", + "ingredients": [ + "bread, cut french into loaf", + "hellmann' or best food real mayonnais", + "boneless chicken cutlet", + "zucchini", + "wish-bone" + ] + }, + { + "id": 17917, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "granulated garlic", + "pepper", + "red pepper", + "fresh lime juice", + "avocado", + "kosher salt", + "jicama", + "garlic", + "cumin", + "tomatoes", + "silken tofu", + "brown rice", + "salt", + "chile powder", + "black beans", + "jalapeno chilies", + "cilantro", + "yellow peppers" + ] + }, + { + "id": 30224, + "cuisine": "french", + "ingredients": [ + "active dry yeast", + "fine salt", + "dry milk powder", + "eggs", + "granulated sugar", + "all-purpose flour", + "large egg yolks", + "whole milk", + "fleur de sel", + "mineral water", + "unsalted butter", + "butter" + ] + }, + { + "id": 13199, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "fat skimmed chicken broth", + "polenta", + "nonfat milk" + ] + }, + { + "id": 39750, + "cuisine": "spanish", + "ingredients": [ + "potatoes", + "onions", + "eggs", + "salt", + "extra-virgin olive oil", + "pepper", + "garlic cloves" + ] + }, + { + "id": 28958, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "Sriracha", + "garlic", + "brown sugar", + "lime", + "vegetable oil", + "jasmine rice", + "chicken breasts", + "coconut milk", + "natural peanut butter", + "fresh ginger", + "cilantro" + ] + }, + { + "id": 12971, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "cornmeal", + "baking soda", + "salt", + "sugar", + "buttermilk", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 31221, + "cuisine": "french", + "ingredients": [ + "pecans", + "vanilla", + "large eggs", + "all-purpose flour", + "unsalted butter", + "salt", + "baking powder", + "confectioners sugar" + ] + }, + { + "id": 2851, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "oil", + "broiler-fryer chicken", + "all-purpose flour", + "eggs", + "paprika", + "garlic salt", + "pepper", + "poultry seasoning" + ] + }, + { + "id": 32655, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chicken cutlets", + "salt", + "pepper", + "grated parmesan cheese", + "chees fresh mozzarella", + "large eggs", + "butter", + "all-purpose flour", + "milk", + "marinara sauce", + "linguine" + ] + }, + { + "id": 20063, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "crushed red pepper", + "vegetable oil", + "salt", + "cider vinegar", + "purple onion", + "vegetable broth", + "dark brown sugar" + ] + }, + { + "id": 45970, + "cuisine": "thai", + "ingredients": [ + "ground ginger", + "pepper", + "vegetable oil", + "garlic salt", + "molasses", + "sesame seeds", + "salsa", + "sliced green onions", + "soy sauce", + "water", + "balsamic vinegar", + "glass noodles", + "boneless chop pork", + "chili powder", + "peanut butter" + ] + }, + { + "id": 48347, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "chopped celery", + "elbow macaroni", + "garbanzo beans", + "chopped onion", + "flat leaf parsley", + "grated parmesan cheese", + "garlic cloves", + "bay leaf", + "olive oil", + "crushed red pepper", + "low salt chicken broth" + ] + }, + { + "id": 14218, + "cuisine": "southern_us", + "ingredients": [ + "1% low-fat cottage cheese", + "cracked black pepper", + "corn mix muffin", + "pimentos", + "vegetable oil cooking spray", + "finely chopped onion", + "margarine", + "egg substitute", + "frozen chopped broccoli" + ] + }, + { + "id": 29600, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "dried apricot", + "garlic cloves", + "red lentils", + "olive oil", + "tomato ketchup", + "onions", + "boneless chicken skinless thigh", + "mint leaves", + "cinnamon sticks", + "chicken stock", + "coriander seeds", + "sweet paprika", + "ground cumin" + ] + }, + { + "id": 47354, + "cuisine": "southern_us", + "ingredients": [ + "coarse salt", + "Hatch Green Chiles", + "unsalted butter", + "all-purpose flour", + "corn kernels", + "heavy cream", + "monterey jack", + "large eggs", + "scallions" + ] + }, + { + "id": 46488, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "cayenne pepper", + "chili powder", + "cumin", + "onion powder", + "paprika" + ] + }, + { + "id": 6491, + "cuisine": "thai", + "ingredients": [ + "fresh ginger", + "green onions", + "salt", + "baby bok choy", + "jalapeno chilies", + "sesame oil", + "chopped cilantro", + "chicken broth", + "Sriracha", + "boneless skinless chicken breasts", + "rice vinegar", + "soy sauce", + "chinese noodles", + "garlic" + ] + }, + { + "id": 24045, + "cuisine": "indian", + "ingredients": [ + "ginger", + "chopped tomatoes", + "curry paste", + "garlic cloves", + "vegetable oil", + "onions" + ] + }, + { + "id": 42019, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic powder", + "salsa", + "ground beef", + "taco shells", + "colby jack cheese", + "corn starch", + "ground cumin", + "tomato sauce", + "guacamole", + "cayenne pepper", + "dried oregano", + "lettuce", + "refried beans", + "chili powder", + "dried minced onion" + ] + }, + { + "id": 8895, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "green onions", + "lime juice", + "jalapeno chilies", + "salt", + "canned black beans", + "ground pepper", + "purple onion", + "cherry tomatoes", + "sweet corn kernels", + "chopped cilantro" + ] + }, + { + "id": 17208, + "cuisine": "italian", + "ingredients": [ + "garlic cloves", + "baguette", + "extra-virgin olive oil" + ] + }, + { + "id": 35586, + "cuisine": "russian", + "ingredients": [ + "kale", + "crushed red pepper flakes", + "kosher salt", + "russet potatoes", + "onions", + "reduced sodium chicken broth", + "olive oil", + "spanish chorizo", + "pepper", + "large garlic cloves" + ] + }, + { + "id": 44669, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "large eggs", + "all-purpose flour", + "water", + "butter", + "grated lemon peel", + "unsalted butter", + "vanilla extract", + "sugar", + "baking powder", + "lemon juice" + ] + }, + { + "id": 14374, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "carrots", + "cabbage", + "milk", + "celery seed", + "white vinegar", + "salt", + "onions", + "mayonaise", + "lemon juice", + "white sugar" + ] + }, + { + "id": 41681, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "green peas", + "fresh lime juice", + "lower sodium soy sauce", + "green onions", + "garlic cloves", + "long grain white rice", + "white onion", + "peeled fresh ginger", + "rice vinegar", + "boneless skinless chicken breast halves", + "hoisin sauce", + "chili paste with garlic", + "corn starch", + "canola oil" + ] + }, + { + "id": 12474, + "cuisine": "thai", + "ingredients": [ + "sugar", + "ground pepper", + "garlic", + "chicken", + "eggs", + "lime", + "rice noodles", + "chinese chives", + "tofu", + "chili pepper", + "radishes", + "liquid", + "fish sauce", + "peanuts", + "vegetable oil", + "beansprouts" + ] + }, + { + "id": 34, + "cuisine": "greek", + "ingredients": [ + "pepper", + "grated parmesan cheese", + "salt", + "ground cinnamon", + "ground nutmeg", + "lean ground beef", + "ground allspice", + "tomato paste", + "water", + "half & half", + "all-purpose flour", + "eggs", + "macaroni", + "butter", + "onions" + ] + }, + { + "id": 3367, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "enchilada sauce", + "ground beef", + "salt", + "sour cream", + "ground cumin", + "chili powder", + "pinto beans", + "onions", + "black beans", + "green chilies", + "corn tortillas" + ] + }, + { + "id": 31655, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "sausages", + "portabello mushroom", + "sliced black olives", + "pasta sauce", + "garlic" + ] + }, + { + "id": 29623, + "cuisine": "indian", + "ingredients": [ + "sugar", + "powdered milk", + "all-purpose flour", + "milk", + "butter", + "yeast", + "water", + "baking powder", + "oil", + "eggs", + "sesame seeds", + "salt" + ] + }, + { + "id": 40169, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "cod fillets", + "fish stock", + "dry bread crumbs", + "sea scallops", + "medium dry sherry", + "heavy cream", + "fresh lemon juice", + "pasta", + "unsalted butter", + "large eggs", + "extra-virgin olive oil", + "medium shrimp", + "milk", + "fennel bulb", + "leeks", + "all-purpose flour" + ] + }, + { + "id": 42528, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "milk", + "all-purpose flour", + "large egg yolks", + "large eggs" + ] + }, + { + "id": 517, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "tomatoes", + "chopped cilantro", + "chipotles in adobo", + "white onion" + ] + }, + { + "id": 20276, + "cuisine": "russian", + "ingredients": [ + "water", + "onions", + "pork", + "flour", + "eggs", + "beef", + "black pepper", + "salt" + ] + }, + { + "id": 49173, + "cuisine": "mexican", + "ingredients": [ + "fresh orange juice", + "chiles", + "garlic cloves", + "olive oil", + "ancho chile pepper", + "salt" + ] + }, + { + "id": 15355, + "cuisine": "vietnamese", + "ingredients": [ + "unsalted butter", + "yellow onion", + "chuck", + "brown sugar", + "star anise", + "cinnamon sticks", + "jalapeno chilies", + "carrots", + "baguette", + "salt", + "low sodium beef stock" + ] + }, + { + "id": 295, + "cuisine": "jamaican", + "ingredients": [ + "white vinegar", + "carrots", + "pimentos", + "cho-cho", + "onions", + "habanero" + ] + }, + { + "id": 23671, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "bay leaves", + "cardamom pods", + "onions", + "ginger paste", + "clove", + "garam masala", + "green peas", + "ghee", + "basmati rice", + "tomatoes", + "cooking oil", + "salt", + "ground beef", + "ground turmeric", + "water", + "chile pepper", + "cinnamon sticks", + "chopped cilantro fresh", + "ground cumin" + ] + }, + { + "id": 40567, + "cuisine": "indian", + "ingredients": [ + "tikka masala curry paste", + "fresh ginger", + "lemon", + "coriander", + "clove", + "black pepper", + "garam masala", + "greek yogurt", + "skinless chicken fillets", + "tumeric", + "chopped tomatoes", + "purple onion", + "fresh red chili", + "sliced almonds", + "butter", + "coconut milk" + ] + }, + { + "id": 5501, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "chili powder", + "salsa", + "canola oil", + "green bell pepper", + "frozen whole kernel corn", + "non-fat sour cream", + "dried oregano", + "diced onions", + "shredded reduced fat cheddar cheese", + "cracked black pepper", + "corn tortillas", + "ground cumin", + "black beans", + "cooking spray", + "salt", + "iceberg lettuce" + ] + }, + { + "id": 44034, + "cuisine": "thai", + "ingredients": [ + "baby spinach leaves", + "Thai fish sauce", + "sunflower oil", + "red pepper", + "tiger prawn", + "garlic cloves" + ] + }, + { + "id": 47850, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "fresh lemon juice", + "butter", + "lemon zest", + "orange zest", + "fresh orange juice" + ] + }, + { + "id": 44648, + "cuisine": "mexican", + "ingredients": [ + "black turtle beans", + "garlic", + "chickpeas", + "ground black pepper", + "salt", + "onions", + "olive oil", + "passata", + "sweet corn", + "ground cinnamon", + "dried pinto beans", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 23976, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "dried basil", + "butter", + "celery", + "chicken broth", + "corn mix muffin", + "cream style corn", + "salt", + "dried oregano", + "eggs", + "milk", + "ground black pepper", + "cayenne pepper", + "plain yogurt", + "dried thyme", + "garlic", + "onions" + ] + }, + { + "id": 21491, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "yellow onion", + "fresh oregano leaves", + "ravioli", + "flat leaf parsley", + "chicken broth", + "fresh thyme leaves", + "carrots", + "ground black pepper", + "extra-virgin olive oil", + "frozen peas" + ] + }, + { + "id": 20717, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "cider vinegar", + "chickpeas", + "onions", + "ground cinnamon", + "cayenne", + "juice", + "mussels", + "sugar", + "paprika", + "flat leaf parsley", + "tomatoes", + "olive oil", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 34609, + "cuisine": "southern_us", + "ingredients": [ + "yellow squash", + "diced tomatoes", + "onions", + "bell pepper", + "salt", + "olive oil", + "garlic", + "vodka", + "jalapeno chilies", + "shrimp" + ] + }, + { + "id": 18443, + "cuisine": "southern_us", + "ingredients": [ + "barbecue sauce", + "cracked black pepper", + "boston butt", + "pineapple", + "chili powder", + "sweet onion", + "apple cider vinegar" + ] + }, + { + "id": 8694, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken skinless thigh", + "chipotles in adobo", + "vegetable oil", + "knorr chicken flavor bouillon cube", + "onions", + "tomato sauce", + "sliced mushrooms" + ] + }, + { + "id": 14124, + "cuisine": "moroccan", + "ingredients": [ + "lower sodium beef broth", + "apricot halves", + "ground coriander", + "couscous", + "slivered almonds", + "ground black pepper", + "grated lemon zest", + "leg of lamb", + "ground cumin", + "diced onions", + "honey", + "salt", + "fresh lemon juice", + "fresh parsley", + "minced garlic", + "peeled fresh ginger", + "orange juice", + "cinnamon sticks" + ] + }, + { + "id": 2695, + "cuisine": "japanese", + "ingredients": [ + "shichimi togarashi", + "rice crackers", + "cream cheese", + "white miso" + ] + }, + { + "id": 20618, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "salad", + "flour tortillas", + "lean minced beef", + "red kidney beans", + "sour cream" + ] + }, + { + "id": 19444, + "cuisine": "irish", + "ingredients": [ + "instant pudding mix", + "sprinkles", + "whipped cream", + "milk", + "OREO® Cookies", + "color food green" + ] + }, + { + "id": 640, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "cheese", + "spaghetti", + "bell pepper", + "whole wheat breadcrumbs", + "grated parmesan cheese", + "salt", + "pasta sauce", + "parsley", + "ground turkey" + ] + }, + { + "id": 45134, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil", + "all-purpose flour", + "onions", + "black pepper", + "diced tomatoes", + "beef sausage", + "green bell pepper", + "cajun seasoning", + "okra", + "chicken", + "bay leaves", + "salt", + "celery" + ] + }, + { + "id": 14599, + "cuisine": "thai", + "ingredients": [ + "sweet potatoes", + "Thai red curry paste", + "olive oil", + "vegetable stock", + "skim milk", + "spring onions", + "coriander", + "egg noodles", + "skinless salmon fillets" + ] + }, + { + "id": 36658, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "fresh lime juice", + "french baguette", + "green onions", + "garlic cloves", + "avocado", + "garlic powder", + "hot sauce", + "plum tomatoes", + "fresh cilantro", + "white wine vinegar", + "ground white pepper" + ] + }, + { + "id": 49660, + "cuisine": "italian", + "ingredients": [ + "fat free milk", + "fettucine", + "sliced mushrooms", + "pasta sauce", + "fresh parsley", + "clams", + "non-fat sour cream" + ] + }, + { + "id": 24032, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "hoisin sauce", + "low sodium chicken stock", + "scallion greens", + "minced garlic", + "vegetable oil", + "corn starch", + "soy sauce", + "sesame oil", + "shrimp", + "chiles", + "fresh ginger", + "rice vinegar", + "chinese chili paste" + ] + }, + { + "id": 12961, + "cuisine": "japanese", + "ingredients": [ + "red pepper flakes", + "cane sugar", + "sake", + "awase miso", + "veggies", + "mirin", + "firm tofu" + ] + }, + { + "id": 35902, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "arugula", + "garlic cloves", + "walnuts", + "whole wheat pasta", + "gorgonzola" + ] + }, + { + "id": 30280, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "chocolate baking bar" + ] + }, + { + "id": 2402, + "cuisine": "moroccan", + "ingredients": [ + "warm water", + "chopped fresh thyme", + "salt", + "chopped fresh mint", + "olive oil", + "kalamata", + "flat leaf parsley", + "black pepper", + "large garlic cloves", + "fresh lemon juice", + "chicken broth", + "red grape", + "extra-virgin olive oil", + "couscous" + ] + }, + { + "id": 6173, + "cuisine": "british", + "ingredients": [ + "ice water", + "flour", + "baking powder", + "shortening", + "salt" + ] + }, + { + "id": 45234, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "parmesan cheese", + "garlic", + "olive oil", + "red wine", + "spaghetti", + "smoked streaky bacon", + "beef", + "onions", + "sun-dried tomatoes", + "extra-virgin olive oil", + "plum tomatoes" + ] + }, + { + "id": 3057, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic", + "fresh basil", + "boneless beef rib eye steaks", + "fresh parsley", + "fresh rosemary", + "olive oil", + "fresh oregano", + "white pepper", + "balsamic vinegar" + ] + }, + { + "id": 23305, + "cuisine": "mexican", + "ingredients": [ + "cottage cheese", + "frozen broccoli", + "butter", + "corn bread", + "jalapeno chilies", + "chopped onion", + "eggs", + "frozen corn", + "monterey jack" + ] + }, + { + "id": 15956, + "cuisine": "vietnamese", + "ingredients": [ + "large eggs", + "scallions", + "vietnamese rice paper", + "salt", + "wood ear mushrooms", + "pork", + "peeled fresh ginger", + "garlic cloves", + "lump crab meat", + "peanut oil", + "chopped cilantro fresh" + ] + }, + { + "id": 47645, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "white wine", + "butter", + "eggs", + "vegetable stock", + "seafood", + "plain flour", + "vegetable oil", + "lemon", + "bread crumbs", + "watercress" + ] + }, + { + "id": 49237, + "cuisine": "thai", + "ingredients": [ + "water", + "jalapeno chilies", + "fresh lemon juice", + "chopped cilantro fresh", + "black peppercorns", + "fresh ginger", + "green onions", + "cooked white rice", + "large shrimp", + "unsweetened coconut milk", + "nam pla", + "bay leaves", + "garlic chili sauce", + "grated lemon peel", + "bottled clam juice", + "wafer", + "boneless skinless chicken breasts", + "onions" + ] + }, + { + "id": 7639, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "fresh blueberries", + "vanilla extract", + "cream cheese", + "white vinegar", + "unsalted butter", + "buttermilk", + "salt", + "baking soda", + "baking powder", + "cake flour", + "unsweetened cocoa powder", + "powdered sugar", + "large eggs", + "red food coloring", + "fresh raspberries" + ] + }, + { + "id": 23227, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "all-purpose flour", + "onions", + "chopped fresh thyme", + "fresh lemon juice", + "yellow bell pepper", + "red bell pepper", + "olive oil", + "garlic cloves", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 35381, + "cuisine": "irish", + "ingredients": [ + "stewing beef", + "russet potatoes", + "carrots", + "sugar", + "bay leaves", + "large garlic cloves", + "onions", + "tomato paste", + "beef stock", + "butter", + "fresh parsley", + "dried thyme", + "vegetable oil", + "worcestershire sauce" + ] + }, + { + "id": 37142, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "all-purpose flour", + "ground cinnamon", + "baking powder", + "white sugar", + "cream of tartar", + "shortening", + "orange juice", + "anise seed", + "salt" + ] + }, + { + "id": 37653, + "cuisine": "italian", + "ingredients": [ + "eggs", + "fennel bulb", + "center cut pork chops", + "panko", + "lemon", + "olive oil", + "grated parmesan cheese", + "arugula", + "ground black pepper", + "salt" + ] + }, + { + "id": 21189, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "red wine", + "whole peeled tomatoes", + "fresh parsley", + "tomato paste", + "garlic" + ] + }, + { + "id": 34392, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "portabello mushroom", + "chicken broth", + "butter", + "veal chops", + "fresh rosemary", + "red wine" + ] + }, + { + "id": 13177, + "cuisine": "brazilian", + "ingredients": [ + "swiss cheese", + "oil", + "salt", + "large egg whites", + "dry bread crumbs", + "parsley" + ] + }, + { + "id": 13512, + "cuisine": "chinese", + "ingredients": [ + "fennel seeds", + "beef tendons", + "szechwan peppercorns", + "ginger root", + "sugar", + "Shaoxing wine", + "star anise", + "dark soy sauce", + "cassia cinnamon", + "daikon", + "dried red chile peppers", + "water", + "chenpi", + "carrots" + ] + }, + { + "id": 7496, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "garlic powder", + "cilantro", + "low sodium chicken stock", + "red bell pepper", + "cornmeal", + "diced onions", + "black beans", + "boneless skinless chicken breasts", + "salt", + "green chilies", + "rotel tomatoes", + "green bell pepper", + "diced red onions", + "garlic", + "grated jack cheese", + "sour cream", + "cumin", + "avocado", + "olive oil", + "chili powder", + "salsa", + "hot water", + "corn tortillas" + ] + }, + { + "id": 3400, + "cuisine": "indian", + "ingredients": [ + "salmon fillets", + "fresh cilantro", + "ground black pepper", + "garlic", + "ground ginger", + "plain yogurt", + "garlic powder", + "cardamom seeds", + "bay leaf", + "white vinegar", + "ground cloves", + "red chile powder", + "ginger", + "cucumber", + "ground cinnamon", + "kosher salt", + "garam masala", + "thai chile", + "canola oil" + ] + }, + { + "id": 47913, + "cuisine": "mexican", + "ingredients": [ + "crescent rolls", + "shredded mozzarella cheese", + "tomatoes", + "cream cheese", + "ripe olives", + "shredded lettuce", + "sour cream", + "shredded cheddar cheese", + "taco seasoning", + "ground beef" + ] + }, + { + "id": 15306, + "cuisine": "moroccan", + "ingredients": [ + "chicken consomme", + "chicken thigh fillets", + "garlic cloves", + "coriander", + "zucchini", + "ginger", + "celery", + "olive oil", + "diced tomatoes", + "lemon juice", + "ground cumin", + "chili flakes", + "sweet potatoes", + "chickpeas", + "onions" + ] + }, + { + "id": 28285, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh basil", + "grated parmesan cheese", + "crushed red pepper flakes", + "heavy whipping cream", + "scallops", + "shredded swiss cheese", + "shrimp", + "fettuccine pasta", + "green onions", + "salt", + "chopped parsley", + "ground black pepper", + "chopped fresh thyme", + "ground white pepper" + ] + }, + { + "id": 37280, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "golden brown sugar", + "heavy whipping cream", + "large egg whites", + "chunky", + "sugar", + "vanilla extract", + "coarse kosher salt", + "bittersweet chocolate chips", + "salted peanuts", + "unsweetened cocoa powder" + ] + }, + { + "id": 1770, + "cuisine": "mexican", + "ingredients": [ + "boneless chuck roast", + "chipotles in adobo", + "tomatoes", + "vegetable oil", + "onions", + "hominy", + "adobo sauce", + "water", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 18892, + "cuisine": "mexican", + "ingredients": [ + "polenta prepar", + "salsa", + "chili powder", + "chopped cilantro fresh", + "refried beans", + "ground beef", + "chicken broth", + "shredded sharp cheddar cheese", + "ground cumin" + ] + }, + { + "id": 44403, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "sesame oil", + "salt", + "chinese five-spice powder", + "pork shoulder butt", + "red pepper", + "green pepper", + "corn starch", + "water", + "coarse sea salt", + "all-purpose flour", + "oil", + "Shaoxing wine", + "garlic", + "peanut oil", + "ground white pepper" + ] + }, + { + "id": 22974, + "cuisine": "jamaican", + "ingredients": [ + "hot pepper sauce", + "jamaican pumpkin", + "onions", + "ketchup", + "cod fish", + "long-grain rice", + "green bell pepper", + "cooking oil", + "salt", + "cabbage", + "black pepper", + "bacon", + "hot water" + ] + }, + { + "id": 10165, + "cuisine": "mexican", + "ingredients": [ + "fresh marjoram", + "granulated sugar", + "salt", + "plantains", + "piloncillo", + "water", + "bay leaves", + "carrots", + "chiles", + "olive oil", + "purple onion", + "chopped garlic", + "cider vinegar", + "fresh thyme", + "ground allspice" + ] + }, + { + "id": 13647, + "cuisine": "cajun_creole", + "ingredients": [ + "rosemary", + "butter", + "beer", + "jumbo shrimp", + "Tabasco Pepper Sauce", + "basil", + "oregano", + "french bread", + "worcestershire sauce", + "thyme", + "black pepper", + "clam juice", + "garlic" + ] + }, + { + "id": 20721, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "cinnamon", + "corn starch", + "unsalted butter", + "salt", + "peaches", + "butter", + "boiling water", + "sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 22058, + "cuisine": "italian", + "ingredients": [ + "baguette", + "fleur de sel", + "rocket leaves", + "extra-virgin olive oil", + "pink peppercorns", + "burrata", + "garlic cloves" + ] + }, + { + "id": 4606, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "kimchi", + "seasoned rice wine vinegar", + "toasted sesame seeds", + "flour tortillas", + "toasted sesame oil", + "avocado", + "cilantro leaves" + ] + }, + { + "id": 3243, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "minced garlic", + "watercress", + "rice vinegar", + "soy sauce", + "cooking oil", + "purple onion", + "oyster sauce", + "sugar", + "lime", + "cracked black pepper", + "beef sirloin", + "tomatoes", + "kosher salt", + "sesame oil", + "salt" + ] + }, + { + "id": 41757, + "cuisine": "irish", + "ingredients": [ + "clove", + "whole allspice", + "yukon gold potatoes", + "hot mustard", + "ale", + "green cabbage", + "white onion", + "baby carrots", + "black peppercorns", + "beef brisket", + "bay leaf" + ] + }, + { + "id": 8027, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "taco shells", + "fine sea salt", + "fresh lemon juice", + "romaine lettuce", + "ground black pepper", + "salsa", + "chopped cilantro fresh", + "avocado", + "sugar", + "jalapeno chilies", + "liquid", + "fish fillets", + "olive oil", + "purple onion", + "fresh lime juice" + ] + }, + { + "id": 4654, + "cuisine": "spanish", + "ingredients": [ + "dry white wine", + "large garlic cloves", + "bay leaf", + "black pepper", + "brown rice", + "salt", + "large shrimp", + "lemon wedge", + "crushed red pepper", + "fresh parsley", + "olive oil", + "butter", + "lemon slices" + ] + }, + { + "id": 23522, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "smoked sausage", + "lower sodium chicken broth", + "chopped green bell pepper", + "fresh parsley", + "kidney beans", + "medium shrimp", + "minced garlic", + "diced tomatoes" + ] + }, + { + "id": 37079, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "cinnamon", + "brown sugar", + "bourbon whiskey", + "plums", + "oats", + "flour", + "butter", + "sugar", + "thickeners" + ] + }, + { + "id": 21234, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "vegetable stock", + "olive oil", + "sliced almonds", + "cauliflower", + "harissa paste" + ] + }, + { + "id": 13602, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "green chilies", + "ground cumin", + "cilantro sprigs", + "garlic cloves", + "low-fat ricotta cheese", + "sharp cheddar cheese", + "fresh oregano", + "feta cheese crumbles" + ] + }, + { + "id": 17136, + "cuisine": "chinese", + "ingredients": [ + "white vinegar", + "boneless chicken thighs", + "low sodium chicken broth", + "peanut oil", + "brown sugar", + "fresh ginger", + "cayenne pepper", + "orange peel", + "cold water", + "large egg whites", + "garlic", + "corn starch", + "soy sauce", + "baking soda", + "orange juice", + "orange zest" + ] + }, + { + "id": 22527, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "crushed garlic", + "cooked shrimp", + "tomato juice", + "purple onion", + "ketchup", + "hot pepper sauce", + "fresh lime juice", + "avocado", + "prepared horseradish", + "salt" + ] + }, + { + "id": 40409, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "cayenne", + "onions", + "green bell pepper", + "salt", + "scallion greens", + "vegetable oil", + "chicken", + "water", + "all-purpose flour" + ] + }, + { + "id": 28293, + "cuisine": "japanese", + "ingredients": [ + "garlic paste", + "salt", + "coriander powder", + "mustard seeds", + "bananas", + "oil", + "curry leaves", + "chili powder", + "ground turmeric" + ] + }, + { + "id": 39293, + "cuisine": "indian", + "ingredients": [ + "clove", + "vegetables", + "chili powder", + "ground cardamom", + "ground ginger", + "cooking oil", + "cumin seed", + "baby potatoes", + "ground fennel", + "garam masala", + "salt", + "hot water", + "asafoetida", + "yoghurt", + "mustard oil" + ] + }, + { + "id": 24315, + "cuisine": "mexican", + "ingredients": [ + "chopped green chilies", + "garlic", + "sour cream", + "taco seasoning mix", + "colby jack cheese", + "red enchilada sauce", + "medium shrimp", + "sweet onion", + "jalapeno chilies", + "ear of corn", + "corn tortillas", + "olive oil", + "cilantro", + "red bell pepper", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 6277, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "crabmeat", + "onions", + "salt", + "garlic cloves", + "water", + "okra", + "greens", + "salt pork", + "coconut milk" + ] + }, + { + "id": 17382, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "pancetta", + "spinach" + ] + }, + { + "id": 33160, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "ginger", + "bay leaf", + "tumeric", + "chili powder", + "paneer", + "cumin", + "spinach", + "garam masala", + "garlic", + "onions", + "cream", + "diced tomatoes", + "green chilies" + ] + }, + { + "id": 40374, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "fresh cilantro", + "diced tomatoes", + "green chilies", + "pepper", + "guacamole", + "salt", + "ground beef", + "coconut oil", + "sweet potatoes", + "garlic", + "smoked paprika", + "tomato paste", + "lime juice", + "green onions", + "yellow onion", + "ground cumin" + ] + }, + { + "id": 49512, + "cuisine": "jamaican", + "ingredients": [ + "jerk seasoning", + "soy", + "large shrimp", + "olive oil" + ] + }, + { + "id": 26102, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "ricotta cheese", + "ground turkey", + "eggs", + "green onions", + "salsa", + "flour tortillas", + "diced tomatoes", + "water", + "chile pepper", + "sour cream" + ] + }, + { + "id": 14493, + "cuisine": "italian", + "ingredients": [ + "chicken breasts", + "shredded mozzarella cheese", + "olive oil", + "salt", + "parmesan cheese", + "sauce", + "whole wheat pizza dough", + "diced tomatoes", + "fresh parsley" + ] + }, + { + "id": 14698, + "cuisine": "japanese", + "ingredients": [ + "black cod fillets", + "vegetable oil", + "sake", + "white miso", + "sugar", + "mirin", + "gari" + ] + }, + { + "id": 16093, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "potatoes", + "cardamom pods", + "onions", + "chicken broth", + "fresh cilantro", + "garlic", + "carrots", + "ground cumin", + "red lentils", + "curry powder", + "butter", + "ground coriander", + "ground turmeric", + "ground cinnamon", + "fresh ginger", + "green chilies", + "coconut milk" + ] + }, + { + "id": 1739, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "lemongrass", + "shrimp paste", + "paprika", + "low salt chicken broth", + "sambal ulek", + "water", + "green onions", + "vegetable oil", + "garlic cloves", + "chopped cilantro fresh", + "sugar", + "basil leaves", + "lime wedges", + "salt", + "bird chile", + "Vietnamese coriander", + "shredded cabbage", + "rice noodles", + "beef rib short", + "onions" + ] + }, + { + "id": 28070, + "cuisine": "italian", + "ingredients": [ + "capers", + "butter", + "boneless skinless chicken breast halves", + "radicchio", + "garlic cloves", + "fennel seeds", + "dijon mustard", + "fresh lemon juice", + "olive oil", + "anchovy fillets" + ] + }, + { + "id": 31267, + "cuisine": "italian", + "ingredients": [ + "melted butter", + "garlic", + "boneless skinless chicken breasts", + "flat leaf parsley", + "olive oil", + "dry bread crumbs", + "cheese", + "grated lemon peel" + ] + }, + { + "id": 39657, + "cuisine": "mexican", + "ingredients": [ + "butter", + "confectioners sugar", + "all-purpose flour", + "vanilla extract", + "chopped walnuts" + ] + }, + { + "id": 25362, + "cuisine": "italian", + "ingredients": [ + "eggs", + "vanilla extract", + "white sugar", + "baking powder", + "chopped walnuts", + "anise seed", + "butter", + "anise extract", + "egg yolks", + "all-purpose flour" + ] + }, + { + "id": 45031, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "clear honey", + "cumin seed", + "fresh mint", + "ground lamb", + "chopped tomatoes", + "paprika", + "lemon juice", + "chopped fresh mint", + "fresh ginger", + "harissa paste", + "garlic cloves", + "onions", + "lamb stock", + "coriander seeds", + "salt", + "cinnamon sticks", + "saffron" + ] + }, + { + "id": 15440, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "bacon", + "coarse salt", + "freshly ground pepper", + "olive oil", + "low sodium canned chicken stock", + "red wine vinegar", + "onions" + ] + }, + { + "id": 15376, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper flakes", + "ground turkey", + "fresh basil", + "grated parmesan cheese", + "shredded mozzarella cheese", + "eggs", + "lasagna noodles", + "fresh oregano", + "onions", + "crushed tomatoes", + "ricotta cheese", + "garlic cloves" + ] + }, + { + "id": 45161, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "chopped garlic", + "fresh lime", + "fish sauce", + "chile pepper", + "water" + ] + }, + { + "id": 2756, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "salt", + "cold water", + "unsalted butter", + "cayenne", + "fresh lemon juice", + "white pepper", + "white wine vinegar" + ] + }, + { + "id": 44148, + "cuisine": "indian", + "ingredients": [ + "chicken broth", + "garam masala", + "chili powder", + "ginger", + "chopped cilantro", + "minced garlic", + "bay leaves", + "butter", + "ground coriander", + "basmati rice", + "pepper", + "jalapeno chilies", + "lime wedges", + "salt", + "onions", + "tomato paste", + "olive oil", + "boneless skinless chicken breasts", + "heavy cream", + "ground cardamom" + ] + }, + { + "id": 40587, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "sour cream", + "bacon bits", + "green onions", + "shredded cheddar cheese", + "tortilla chips", + "guacamole", + "ground beef" + ] + }, + { + "id": 47768, + "cuisine": "southern_us", + "ingredients": [ + "celery salt", + "low fat low sodium chicken broth", + "bone in chicken thighs", + "ground black pepper", + "salt", + "whole wheat flour", + "grapeseed oil", + "low-fat buttermilk", + "sweet paprika" + ] + }, + { + "id": 48919, + "cuisine": "southern_us", + "ingredients": [ + "cinnamon", + "bisquick", + "sugar", + "peach slices", + "vanilla ice cream", + "butter", + "milk", + "vanilla extract" + ] + }, + { + "id": 6884, + "cuisine": "italian", + "ingredients": [ + "eggs", + "water", + "basil dried leaves", + "fresh parsley", + "italian seasoning", + "tomato sauce", + "lasagna noodles", + "sweet italian sausage", + "garlic salt", + "spinach", + "ground black pepper", + "part-skim ricotta cheese", + "onions", + "tomato paste", + "minced garlic", + "grated parmesan cheese", + "shredded mozzarella cheese", + "dried oregano" + ] + }, + { + "id": 49112, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "fresh lemon juice", + "sugar", + "whipping cream", + "water", + "lemon verbena", + "lemon peel" + ] + }, + { + "id": 9989, + "cuisine": "southern_us", + "ingredients": [ + "green onions", + "salt", + "flat leaf parsley", + "bacon slices", + "fresh lemon juice", + "butter", + "hot sauce", + "quickcooking grits", + "shredded sharp cheddar cheese", + "shrimp" + ] + }, + { + "id": 12192, + "cuisine": "french", + "ingredients": [ + "baguette", + "cooking spray", + "less sodium beef broth", + "ground black pepper", + "gruyere cheese", + "tomato paste", + "chips", + "yellow onion", + "dried thyme", + "dry sherry", + "garlic cloves" + ] + }, + { + "id": 40581, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "pecan halves", + "light corn syrup", + "pie crust", + "large eggs", + "brown sugar", + "vanilla extract" + ] + }, + { + "id": 20706, + "cuisine": "chinese", + "ingredients": [ + "honey", + "rice vinegar", + "soy sauce", + "hoisin sauce", + "pork spareribs", + "sake", + "fresh ginger", + "chinese five-spice powder", + "ketchup", + "garlic", + "lemon juice" + ] + }, + { + "id": 2804, + "cuisine": "mexican", + "ingredients": [ + "vegan cheese", + "salt", + "canola oil", + "tomato purée", + "chili powder", + "corn tortillas", + "jalapeno chilies", + "yellow onion", + "ground cumin", + "black beans", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 24936, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "garlic powder", + "garlic", + "ground cumin", + "kosher salt", + "low-fat mayonnaise", + "dried parsley", + "low-fat sour cream", + "pork tenderloin", + "ground coriander", + "pepper", + "cilantro", + "dried oregano" + ] + }, + { + "id": 37048, + "cuisine": "mexican", + "ingredients": [ + "water", + "flank steak", + "salt", + "dijon mustard", + "extra-virgin olive oil", + "garlic cloves", + "ground black pepper", + "Italian parsley leaves", + "cilantro leaves", + "capers", + "cooking spray", + "cornichons", + "fresh lime juice" + ] + }, + { + "id": 39624, + "cuisine": "french", + "ingredients": [ + "sugar", + "milk", + "berries", + "vanilla beans", + "half & half", + "orange", + "large eggs", + "water", + "large egg yolks", + "fresh lemon juice" + ] + }, + { + "id": 40008, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "guacamole", + "escarole", + "chipotle chile", + "olive oil", + "purple onion", + "avocado", + "lime", + "white wine vinegar", + "black beans", + "ground black pepper", + "cilantro leaves" + ] + }, + { + "id": 37947, + "cuisine": "indian", + "ingredients": [ + "water", + "purple onion", + "five-spice powder", + "peeled fresh ginger", + "fresh lemon juice", + "canola oil", + "jalapeno chilies", + "salt", + "ground turmeric", + "red lentils", + "butter", + "chopped cilantro fresh" + ] + }, + { + "id": 8589, + "cuisine": "southern_us", + "ingredients": [ + "yellow summer squash", + "bacon slices", + "zucchini", + "onions" + ] + }, + { + "id": 45264, + "cuisine": "italian", + "ingredients": [ + "water", + "garlic", + "sliced mushrooms", + "green bell pepper", + "olive oil", + "chopped onion", + "italian tomatoes", + "ground black pepper", + "pork loin chops", + "dried basil", + "salt", + "dried oregano" + ] + }, + { + "id": 20068, + "cuisine": "french", + "ingredients": [ + "coriander seeds", + "parsley", + "salt", + "dried thyme", + "bay leaves", + "garlic", + "onions", + "ground black pepper", + "mackerel fillets", + "carrots", + "olive oil", + "dry white wine", + "wine vinegar", + "peppercorns" + ] + }, + { + "id": 5381, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "fine sea salt", + "cold water", + "leeks", + "goat cheese", + "sage leaves", + "large eggs", + "all-purpose flour", + "olive oil", + "butternut squash" + ] + }, + { + "id": 45794, + "cuisine": "vietnamese", + "ingredients": [ + "hard-boiled egg", + "oyster sauce", + "chinese sausage", + "dried shiitake mushrooms", + "white sugar", + "self rising flour", + "barbecued pork", + "milk", + "ground pork", + "onions" + ] + }, + { + "id": 32574, + "cuisine": "thai", + "ingredients": [ + "caramels", + "teas", + "sugar", + "half & half", + "corn starch", + "large eggs", + "whipped cream", + "kosher salt", + "whole milk", + "cashew nuts" + ] + }, + { + "id": 11008, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "pepper", + "golden raisins", + "paprika", + "couscous", + "preserved lemon", + "olive oil", + "butter", + "fat skimmed chicken broth", + "chopped cilantro fresh", + "ground cinnamon", + "minced garlic", + "chicken breast halves", + "salt", + "onions", + "tumeric", + "pistachios", + "raisins", + "fresh mint", + "ground cumin" + ] + }, + { + "id": 4652, + "cuisine": "mexican", + "ingredients": [ + "water", + "non-fat sour cream", + "black beans", + "cooking spray", + "chopped cilantro fresh", + "chili", + "corn tortillas", + "pepper", + "chicken breasts", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 45360, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "all-purpose flour", + "yellow corn meal", + "unsalted butter", + "buttermilk", + "chopped onion", + "fresh basil", + "roasted red peppers", + "salt", + "grated jack cheese", + "baking soda", + "baking powder", + "frozen corn kernels" + ] + }, + { + "id": 33571, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "large garlic cloves", + "fresh lemon juice", + "cilantro stems", + "tortilla chips", + "onions", + "jalapeno chilies", + "stewed tomatoes", + "fresh lime juice", + "green onions", + "green chilies", + "ground cumin" + ] + }, + { + "id": 32652, + "cuisine": "spanish", + "ingredients": [ + "salt", + "onions", + "olive oil", + "carrots", + "potatoes", + "red bell pepper", + "green bell pepper", + "lentils", + "chorizo sausage" + ] + }, + { + "id": 19396, + "cuisine": "spanish", + "ingredients": [ + "manchego cheese", + "balsamic vinegar", + "green olives", + "sherry vinegar", + "salt", + "radicchio", + "extra-virgin olive oil", + "pepper", + "shallots" + ] + }, + { + "id": 46768, + "cuisine": "french", + "ingredients": [ + "extra-virgin olive oil", + "Piment d'Espelette", + "almonds", + "fleur de sel", + "dri leav thyme" + ] + }, + { + "id": 19698, + "cuisine": "japanese", + "ingredients": [ + "salt", + "granulated sugar", + "medium-grain rice", + "water", + "rice vinegar", + "vegetable oil" + ] + }, + { + "id": 19070, + "cuisine": "indian", + "ingredients": [ + "melted butter", + "salt", + "yeast", + "water", + "oil", + "sugar", + "all-purpose flour", + "baking soda", + "full-fat plain yogurt" + ] + }, + { + "id": 38227, + "cuisine": "filipino", + "ingredients": [ + "corn starch", + "water", + "sugar", + "coconut milk", + "sweetened coconut flakes" + ] + }, + { + "id": 6447, + "cuisine": "italian", + "ingredients": [ + "cottage cheese", + "large eggs", + "balsamic vinegar", + "fresh oregano", + "marjoram", + "crushed tomatoes", + "lasagna noodles, cooked and drained", + "sea salt", + "shredded mozzarella cheese", + "ground chuck", + "grated parmesan cheese", + "red wine", + "freshly ground pepper", + "dried oregano", + "fresh basil", + "olive oil", + "whole milk ricotta cheese", + "yellow onion", + "garlic cloves" + ] + }, + { + "id": 48714, + "cuisine": "chinese", + "ingredients": [ + "tofu", + "fresh chili", + "garlic", + "brine", + "sugar", + "water spinach", + "salt" + ] + }, + { + "id": 28734, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "chives", + "all-purpose flour", + "milk", + "bacon slices", + "sugar", + "baking powder", + "unsalted butter", + "salt" + ] + }, + { + "id": 3048, + "cuisine": "mexican", + "ingredients": [ + "milk", + "salt", + "onions", + "ground cumin", + "baking powder", + "lard", + "dried oregano", + "bay leaves", + "all-purpose flour", + "pork butt roast", + "eggs", + "garlic", + "chipotle salsa", + "masa harina" + ] + }, + { + "id": 28201, + "cuisine": "italian", + "ingredients": [ + "peeled tomatoes", + "dried chile", + "pasta", + "extra-virgin olive oil", + "pecorino cheese", + "salt", + "guanciale", + "sauce tomato", + "onions" + ] + }, + { + "id": 26780, + "cuisine": "indian", + "ingredients": [ + "clove", + "red chili peppers", + "bay leaves", + "cumin seed", + "ground turmeric", + "tomato purée", + "salt and ground black pepper", + "ginger", + "onions", + "tomatoes", + "curry powder", + "vegetable oil", + "garlic cloves", + "black peppercorns", + "potatoes", + "chickpeas", + "coriander" + ] + }, + { + "id": 24194, + "cuisine": "spanish", + "ingredients": [ + "saltpeter", + "minced garlic", + "cayenne pepper", + "white sugar", + "hog casings", + "brandy", + "crushed red pepper flakes", + "fresh pork fat", + "pork", + "red wine vinegar", + "ascorbic acid", + "dried oregano", + "fennel seeds", + "black pepper", + "salt", + "cumin seed" + ] + }, + { + "id": 32019, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "dashi", + "tofu", + "miso paste" + ] + }, + { + "id": 26875, + "cuisine": "spanish", + "ingredients": [ + "minced garlic", + "salt", + "dry sherry", + "olive oil", + "chopped parsley", + "chili flakes", + "deveined shrimp" + ] + }, + { + "id": 20544, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "Shaoxing wine", + "salt", + "corn starch", + "dark soy sauce", + "water", + "ginger", + "scallions", + "soy sauce", + "chicken meat", + "rice vinegar", + "sugar", + "hoisin sauce", + "garlic", + "oil" + ] + }, + { + "id": 7280, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "milk", + "pasta sauce", + "chicken stock", + "parmesan cheese" + ] + }, + { + "id": 28584, + "cuisine": "british", + "ingredients": [ + "rump roast", + "all-purpose flour", + "garlic powder", + "milk", + "freshly ground pepper", + "eggs", + "salt" + ] + }, + { + "id": 41914, + "cuisine": "mexican", + "ingredients": [ + "cottage cheese", + "butter", + "cheese dip", + "eggs", + "green onions", + "cream cheese", + "colby cheese", + "chile pepper", + "sour cream", + "tomatoes", + "sliced black olives", + "tortilla chips" + ] + }, + { + "id": 4539, + "cuisine": "french", + "ingredients": [ + "pepper", + "egg whites", + "salt", + "crumbled goat cheese", + "cayenne", + "butter", + "onions", + "milk", + "flour", + "thyme sprigs", + "freshly grated parmesan", + "egg yolks", + "bay leaf" + ] + }, + { + "id": 14134, + "cuisine": "french", + "ingredients": [ + "chopped fresh chives", + "extra-virgin olive oil", + "parsley sprigs", + "large garlic cloves", + "fresh lemon juice", + "shallots", + "ham", + "dried porcini mushrooms", + "button mushrooms" + ] + }, + { + "id": 2630, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "feta cheese crumbles", + "garlic cloves", + "navel oranges", + "arugula", + "honey", + "fresh lemon juice" + ] + }, + { + "id": 45017, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "mozzarella cheese", + "parmesan cheese", + "pasta", + "ground beef" + ] + }, + { + "id": 3062, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "ground red pepper", + "chopped cilantro fresh", + "peeled fresh ginger", + "garlic cloves", + "cooking spray", + "paprika", + "ground cumin", + "plain low-fat yogurt", + "boneless skinless chicken breasts", + "fresh lemon juice" + ] + }, + { + "id": 24572, + "cuisine": "japanese", + "ingredients": [ + "wasabi paste", + "nori", + "avocado", + "rice vinegar", + "sushi rice", + "smoked salmon", + "cucumber" + ] + }, + { + "id": 31216, + "cuisine": "irish", + "ingredients": [ + "large eggs", + "currant", + "sugar", + "butter", + "flour", + "salt", + "baking soda", + "buttermilk" + ] + }, + { + "id": 33146, + "cuisine": "cajun_creole", + "ingredients": [ + "barbecue sauce", + "worcestershire sauce", + "garlic salt", + "sugar", + "red wine", + "sauce", + "cajun seasoning", + "paprika", + "black pepper", + "red pepper", + "bbq sauce" + ] + }, + { + "id": 21496, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "green onions", + "corn tortillas", + "sliced black olives", + "green enchilada sauce", + "tomatoes", + "chicken breasts", + "lettuce", + "jalapeno chilies", + "shredded cheese" + ] + }, + { + "id": 43798, + "cuisine": "cajun_creole", + "ingredients": [ + "large eggs", + "vanilla extract", + "red delicious apples", + "butter", + "crushed pineapple", + "evaporated milk", + "raisins", + "sugar", + "french bread", + "sauce" + ] + }, + { + "id": 8143, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "vegetable oil", + "fresh lemon juice", + "sugar", + "jalapeno chilies", + "salt", + "pork tenderloin", + "light coconut milk", + "chopped fresh mint", + "rice sticks", + "peeled fresh ginger", + "garlic cloves" + ] + }, + { + "id": 19791, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "dry yeast", + "bread flour", + "fresh rosemary", + "olive oil", + "onions", + "pitted kalamata olives", + "salt", + "pancetta", + "sugar", + "hot water" + ] + }, + { + "id": 32423, + "cuisine": "french", + "ingredients": [ + "saffron threads", + "mayonaise", + "ground black pepper", + "garlic", + "garlic cloves", + "chervil", + "fennel", + "fish stock", + "cayenne pepper", + "tomato paste", + "kosher salt", + "leeks", + "bouquet garni", + "flat leaf parsley", + "tomatoes", + "olive oil", + "russet potatoes", + "seafood", + "onions" + ] + }, + { + "id": 48812, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "bacon slices", + "red bell pepper", + "orange bell pepper", + "yellow bell pepper", + "garlic cloves", + "fresh basil", + "kalamata", + "bow-tie pasta", + "ground black pepper", + "salt", + "plum tomatoes" + ] + }, + { + "id": 21356, + "cuisine": "mexican", + "ingredients": [ + "soy sauce", + "chile pepper", + "chopped cilantro fresh", + "chopped green bell pepper", + "sliced mushrooms", + "frozen chopped spinach", + "corn oil", + "dried minced onion", + "lime juice", + "tempeh" + ] + }, + { + "id": 39701, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "lemon juice", + "water", + "jicama", + "large shrimp", + "dijon mustard", + "chopped cilantro", + "olive oil", + "salt", + "mango" + ] + }, + { + "id": 36021, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "zucchini", + "salt", + "orange bell pepper", + "apple cider vinegar", + "onions", + "black pepper", + "pimentos", + "corn starch", + "ground nutmeg", + "dry mustard", + "ground turmeric" + ] + }, + { + "id": 25527, + "cuisine": "irish", + "ingredients": [ + "milk", + "white sugar", + "butter", + "self rising flour", + "eggs", + "raisins" + ] + }, + { + "id": 30525, + "cuisine": "italian", + "ingredients": [ + "dry bread crumbs", + "boneless skinless chicken breasts", + "salad dressing" + ] + }, + { + "id": 14227, + "cuisine": "greek", + "ingredients": [ + "dried thyme", + "large garlic cloves", + "red bell pepper", + "dry vermouth", + "feta cheese", + "brown shrimp", + "tomatoes", + "olive oil", + "linguine", + "pitted black olives", + "green onions", + "fresh lemon juice" + ] + }, + { + "id": 30238, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "bread", + "salt", + "garlic", + "tomatoes" + ] + }, + { + "id": 7543, + "cuisine": "french", + "ingredients": [ + "baby leaf lettuce", + "fresh thyme", + "asparagus spears", + "olive oil", + "balsamic vinegar", + "fresh basil leaves", + "cherry tomatoes", + "shallots", + "green beans", + "fresh basil", + "dijon mustard", + "fresh tarragon" + ] + }, + { + "id": 33034, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "arugula", + "vegetable stock", + "flat leaf parsley", + "mascarpone", + "risotto rice", + "smoked salmon", + "grated lemon zest", + "onions" + ] + }, + { + "id": 43409, + "cuisine": "greek", + "ingredients": [ + "all-purpose flour", + "corn starch", + "safflower oil", + "chopped onion", + "dried oregano", + "chickpeas", + "chopped fresh mint", + "olive oil", + "scallions" + ] + }, + { + "id": 49713, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "large eggs", + "creole seasoning", + "romano cheese", + "roasted red peppers", + "baking mix", + "canola oil", + "fresh basil", + "milk", + "chicken breast halves", + "cream cheese, soften", + "vidalia onion", + "chicken flavor stuffing mix", + "bacon slices", + "onion gravy" + ] + }, + { + "id": 43632, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "eggs", + "salsa", + "flour tortillas", + "sour cream", + "fontina cheese", + "bacon slices" + ] + }, + { + "id": 35949, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "parmigiano reggiano cheese", + "salt", + "dried oregano", + "ground black pepper", + "marinara sauce", + "meatloaf", + "water", + "large eggs", + "Italian seasoned breadcrumbs", + "finely chopped fresh parsley", + "garlic", + "spaghetti" + ] + }, + { + "id": 8561, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "corn tortillas", + "salsa", + "cilantro", + "avocado", + "goat cheese" + ] + }, + { + "id": 42446, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "boneless skinless chicken breasts", + "shredded mozzarella cheese", + "garlic powder", + "Philadelphia Cream Cheese", + "artichoke hearts", + "basil", + "milk", + "lasagna noodles", + "Kraft Grated Parmesan Cheese" + ] + }, + { + "id": 26968, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "vegetable stock", + "onions", + "pepper", + "shredded mozzarella cheese", + "fresh basil", + "salt", + "grated parmesan cheese", + "oil" + ] + }, + { + "id": 49588, + "cuisine": "indian", + "ingredients": [ + "English mustard", + "parmesan cheese", + "chili powder", + "onions", + "white wine", + "yoghurt", + "curry", + "cumin", + "garlic paste", + "lobster", + "double cream", + "coriander", + "lime", + "brown mustard seeds", + "ghee", + "saffron" + ] + }, + { + "id": 24729, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "freshly ground pepper", + "sweet onion", + "crème fraîche", + "olive oil", + "frozen pizza dough", + "salt", + "fresh basil leaves" + ] + }, + { + "id": 21306, + "cuisine": "thai", + "ingredients": [ + "canned chicken broth", + "basil", + "sliced green onions", + "serrano chilies", + "lemongrass", + "sliced mushrooms", + "unsweetened coconut milk", + "boneless chicken skinless thigh", + "garlic chili sauce", + "fish sauce", + "fresh ginger", + "fresh lime juice" + ] + }, + { + "id": 32149, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "salt", + "tomato sauce", + "lean ground beef", + "white sugar", + "ground black pepper", + "onions", + "dried basil", + "butter", + "dried oregano" + ] + }, + { + "id": 42980, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "self rising flour", + "salt", + "active dry yeast", + "baking spray", + "water", + "large eggs", + "italian seasoning", + "garlic powder", + "butter" + ] + }, + { + "id": 8313, + "cuisine": "italian", + "ingredients": [ + "water", + "parmesan cheese", + "garlic", + "whole wheat rigatoni", + "olive oil", + "heirloom tomatoes", + "shredded cheese", + "spinach", + "kale", + "lemon", + "salt", + "pesto", + "almonds", + "basil" + ] + }, + { + "id": 12144, + "cuisine": "southern_us", + "ingredients": [ + "apple cider vinegar", + "cayenne pepper", + "water", + "hot sauce", + "onions", + "pepper", + "salt", + "bacon grease", + "low sodium chicken broth", + "kale leaves", + "smoked ham hocks" + ] + }, + { + "id": 30334, + "cuisine": "irish", + "ingredients": [ + "chicken stock", + "beef stock", + "asparagus spears", + "zucchini", + "carrots", + "beef tenderloin steaks", + "unsalted butter", + "dry red wine", + "red bell pepper", + "olive oil", + "fresh shiitake mushrooms", + "green beans" + ] + }, + { + "id": 5608, + "cuisine": "thai", + "ingredients": [ + "milk", + "curry", + "chicken breasts", + "celery", + "green onions", + "coconut milk", + "red pepper" + ] + }, + { + "id": 45857, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "green peas", + "wild rice", + "fontina cheese", + "cooking spray", + "salt", + "asparagus", + "1% low-fat milk", + "sliced green onions", + "fresh parmesan cheese", + "chopped fresh thyme", + "all-purpose flour" + ] + }, + { + "id": 5994, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "vegetable oil", + "cayenne pepper", + "brown sugar", + "green onions", + "ground thyme", + "onions", + "soy sauce", + "boneless skinless chicken breasts", + "salt", + "nutmeg", + "cider vinegar", + "cinnamon", + "ground allspice" + ] + }, + { + "id": 43404, + "cuisine": "southern_us", + "ingredients": [ + "egg yolks", + "maple syrup", + "nutmeg", + "cinnamon", + "dark brown sugar", + "sweet potatoes", + "pie shell", + "plain yogurt", + "salt", + "chopped pecans" + ] + }, + { + "id": 7431, + "cuisine": "russian", + "ingredients": [ + "beef broth", + "onions", + "red wine vinegar", + "cucumber", + "black pepper", + "beets", + "salt", + "sour cream" + ] + }, + { + "id": 12558, + "cuisine": "french", + "ingredients": [ + "olive oil", + "Niçoise olives", + "milk", + "basil", + "yeast", + "flour", + "freshly ground pepper", + "cherry tomatoes", + "salt", + "dried oregano" + ] + }, + { + "id": 38364, + "cuisine": "irish", + "ingredients": [ + "white bread", + "large free range egg", + "pure vanilla extract", + "cream", + "whipped cream", + "sugar", + "butter", + "rhubarb", + "milk" + ] + }, + { + "id": 32804, + "cuisine": "chinese", + "ingredients": [ + "powdered sugar", + "vanilla extract", + "plain flour", + "evaporated milk", + "caster sugar", + "hot water", + "eggs", + "butter" + ] + }, + { + "id": 6180, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "muscovado sugar", + "garlic cloves", + "fish sauce", + "hard-boiled egg", + "green chilies", + "onions", + "black peppercorns", + "water", + "salt", + "bay leaf", + "pork", + "cane vinegar", + "oil" + ] + }, + { + "id": 43361, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "red chili peppers", + "sprouts", + "coconut milk", + "fish sauce", + "lemongrass", + "button mushrooms", + "chopped cilantro", + "coconut sugar", + "boneless chicken skinless thigh", + "sea salt", + "fresh lime juice", + "chicken broth", + "coconut oil", + "green onions", + "garlic cloves", + "galangal" + ] + }, + { + "id": 29870, + "cuisine": "southern_us", + "ingredients": [ + "dressing", + "processed cheese", + "milk", + "water", + "butter", + "potatoes" + ] + }, + { + "id": 30796, + "cuisine": "mexican", + "ingredients": [ + "cold water", + "salt", + "olive oil", + "dried black beans", + "onions", + "cilantro sprigs" + ] + }, + { + "id": 36069, + "cuisine": "southern_us", + "ingredients": [ + "lime zest", + "whipped cream", + "corn starch", + "egg whites", + "pie shell", + "sweetened condensed milk", + "egg yolks", + "meringue", + "key lime juice", + "sugar", + "salt", + "heavy whipping cream" + ] + }, + { + "id": 40769, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "chili powder", + "cumin", + "garlic powder", + "salt", + "water", + "onion salt", + "flour", + "oil" + ] + }, + { + "id": 7423, + "cuisine": "moroccan", + "ingredients": [ + "red wine", + "ground cumin", + "capers", + "leg of lamb", + "pitted black olives", + "onions", + "ground ginger", + "garlic" + ] + }, + { + "id": 40817, + "cuisine": "jamaican", + "ingredients": [ + "tomatoes", + "sugar", + "lime juice", + "cooking oil", + "paprika", + "salt", + "scallions", + "browning", + "tomato sauce", + "water", + "fresh thyme", + "flour", + "garlic", + "cayenne pepper", + "hot water", + "allspice", + "coconut oil", + "kosher salt", + "hot pepper sauce", + "bell pepper", + "rosemary leaves", + "tomato ketchup", + "thyme", + "chicken", + "brown sugar", + "black pepper", + "habanero hot sauce", + "potatoes", + "ginger", + "yellow onion", + "carrots", + "oregano" + ] + }, + { + "id": 22558, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame oil", + "beansprouts", + "rib eye steaks", + "ground black pepper", + "garlic cloves", + "water", + "sauce", + "Korean chile flakes", + "leeks", + "kelp" + ] + }, + { + "id": 3678, + "cuisine": "vietnamese", + "ingredients": [ + "white pepper", + "tapioca starch", + "bird chile", + "lime", + "vegetable oil", + "silken tofu", + "green onions", + "soy sauce", + "granulated sugar", + "salt" + ] + }, + { + "id": 5471, + "cuisine": "irish", + "ingredients": [ + "whole wheat flour", + "large eggs", + "anise", + "light molasses", + "all purpose unbleached flour", + "dried pear", + "baking soda", + "old-fashioned oats", + "salt", + "unsalted butter", + "buttermilk", + "liqueur" + ] + }, + { + "id": 8737, + "cuisine": "british", + "ingredients": [ + "active dry yeast", + "non stick spray", + "sugar", + "butter", + "milk", + "salt", + "flour", + "cornmeal" + ] + }, + { + "id": 18211, + "cuisine": "mexican", + "ingredients": [ + "red grape", + "pomegranate seeds", + "salt", + "avocado", + "purple onion", + "peaches", + "serrano chile" + ] + }, + { + "id": 398, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "red bell pepper", + "salt", + "chicken thighs", + "extra-virgin olive oil", + "onions", + "hot red pepper flakes", + "garlic cloves" + ] + }, + { + "id": 35506, + "cuisine": "italian", + "ingredients": [ + "egg yolks", + "salt", + "sugar", + "baking powder", + "unsalted butter", + "lemon", + "eggs", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 29219, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "half & half", + "sour cream", + "avocado", + "fresh ginger", + "butter", + "minced garlic", + "green onions", + "fresh lime juice", + "chicken stock", + "finely chopped onion", + "salt" + ] + }, + { + "id": 18118, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "flour", + "cheddar cheese", + "butter", + "green chile", + "vegetable oil", + "bread", + "pepper jack", + "salt" + ] + }, + { + "id": 5087, + "cuisine": "japanese", + "ingredients": [ + "medium dry sherry", + "gingerroot", + "soy sauce", + "white wine vinegar", + "honey", + "salt", + "chicken breasts", + "garlic cloves" + ] + }, + { + "id": 11110, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "chopped parsley", + "rosemary", + "bucatini", + "olive oil", + "thyme", + "bread crumb fresh", + "garlic cloves", + "sage" + ] + }, + { + "id": 36850, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "green beans", + "sugar", + "chilli bean sauce", + "sake", + "ginger", + "minced pork", + "soy sauce", + "scallions" + ] + }, + { + "id": 11380, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "sugar", + "garlic", + "whipping cream", + "olive oil", + "salt" + ] + }, + { + "id": 23940, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "cooking oil", + "rolls", + "mayonaise", + "salt", + "eggs", + "red pepper", + "shrimp", + "lettuce", + "black pepper", + "all-purpose flour" + ] + }, + { + "id": 5895, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "butter", + "chopped celery", + "red bell pepper", + "cooked rice", + "flour", + "worcestershire sauce", + "chopped onion", + "onions", + "shrimp stock", + "ground black pepper", + "lemon", + "hot sauce", + "celery", + "minced garlic", + "cajun seasoning", + "diced tomatoes", + "shrimp" + ] + }, + { + "id": 46194, + "cuisine": "mexican", + "ingredients": [ + "bone-in chicken breast halves", + "salt", + "reduced fat cream cheese", + "chili powder", + "corn starch", + "crispy bacon", + "chile pepper", + "cold water", + "reduced sodium chicken broth", + "lemon juice" + ] + }, + { + "id": 26372, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "bacon", + "yellow onion", + "tomato sauce", + "flank steak", + "garlic", + "eggs", + "beef stock", + "chees fresh mozzarella", + "hot Italian sausages", + "pepper", + "red wine", + "salt" + ] + }, + { + "id": 29075, + "cuisine": "indian", + "ingredients": [ + "spices", + "green chilies", + "ground turmeric", + "water", + "salt", + "chopped cilantro", + "canola oil", + "fresh ginger", + "chickpeas", + "onions", + "garlic", + "hot water", + "cabbage" + ] + }, + { + "id": 39735, + "cuisine": "italian", + "ingredients": [ + "mussels", + "olive oil", + "bay leaves", + "squid", + "onions", + "tentacles", + "fennel bulb", + "clam juice", + "shrimp", + "cod", + "kosher salt", + "whole peeled tomatoes", + "crushed red pepper flakes", + "country bread", + "fennel seeds", + "ground black pepper", + "dry white wine", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 11778, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "jalapeno chilies", + "purple onion", + "panko breadcrumbs", + "ground chipotle chile pepper", + "cilantro", + "carrots", + "lime", + "garlic", + "corn tortillas", + "cotija", + "flour", + "nopales" + ] + }, + { + "id": 45749, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "japanese cucumber", + "cilantro leaves", + "green papaya", + "spring roll wrappers", + "palm sugar", + "grapeseed oil", + "garlic cloves", + "large shrimp", + "peanuts", + "mint leaves", + "rice", + "noodles", + "fish sauce", + "tamarind juice", + "romaine lettuce leaves", + "carrots" + ] + }, + { + "id": 119, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "linguine", + "margarine", + "chicken broth", + "chicken breast halves", + "all-purpose flour", + "fresh mushrooms", + "fontina cheese", + "half & half", + "salt", + "chopped onion", + "minced garlic", + "dry sherry", + "dry bread crumbs", + "ground white pepper" + ] + }, + { + "id": 18895, + "cuisine": "irish", + "ingredients": [ + "firmly packed brown sugar", + "low-fat milk", + "coffee", + "water", + "ground cinnamon", + "bourbon whiskey" + ] + }, + { + "id": 26080, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "tamari soy sauce", + "white sesame seeds", + "radishes", + "scallions", + "shiso", + "black sesame seeds", + "cucumber", + "canola oil", + "beans", + "rice vinegar", + "toasted sesame oil" + ] + }, + { + "id": 40307, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "garlic", + "shredded carrots", + "ground turkey", + "fresh ginger", + "salt", + "Boston lettuce", + "I Can't Believe It's Not Butter!® Spread" + ] + }, + { + "id": 20403, + "cuisine": "chinese", + "ingredients": [ + "water", + "chicken", + "chinese rice wine", + "green onions", + "fresh ginger", + "sugar", + "salt" + ] + }, + { + "id": 35475, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "minced garlic", + "garlic powder", + "chili powder", + "sour cream", + "lettuce", + "ketchup", + "honey", + "guacamole", + "worcestershire sauce", + "ground cumin", + "cheddar cheese", + "fresh lime", + "tortillas", + "apple cider vinegar", + "chipotles in adobo", + "chicken broth", + "pepper", + "chopped tomatoes", + "boneless skinless chicken breasts", + "salt" + ] + }, + { + "id": 27234, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "basil leaves", + "cognac", + "picholine", + "dijon mustard", + "anchovy fillets", + "fresh lemon juice", + "capers", + "extra-virgin olive oil", + "garlic cloves", + "large eggs", + "goat cheese", + "bread slices" + ] + }, + { + "id": 17706, + "cuisine": "french", + "ingredients": [ + "waxy potatoes", + "salt", + "freshly ground pepper", + "heavy cream" + ] + }, + { + "id": 11884, + "cuisine": "southern_us", + "ingredients": [ + "vanilla", + "unsalted butter", + "sugar", + "cake flour", + "large eggs" + ] + }, + { + "id": 1447, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "water", + "collard greens", + "dried red chile peppers", + "smoked pork neck bones" + ] + }, + { + "id": 26298, + "cuisine": "greek", + "ingredients": [ + "dried lentils", + "olive oil", + "dry bread crumbs", + "ground cumin", + "large egg whites", + "crushed red pepper", + "cooked white rice", + "kosher salt", + "ground black pepper", + "sauce", + "water", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 45918, + "cuisine": "italian", + "ingredients": [ + "pasta", + "fresh basil leaves", + "mozzarella cheese", + "tomato sauce", + "shredded mozzarella cheese" + ] + }, + { + "id": 1793, + "cuisine": "thai", + "ingredients": [ + "light brown sugar", + "shiitake", + "cilantro leaves", + "coconut milk", + "fish sauce", + "palm sugar", + "cucumber", + "chicken broth", + "thai basil", + "red curry paste", + "boneless pork shoulder", + "fresh ginger", + "sliced carrots", + "baby corn" + ] + }, + { + "id": 15575, + "cuisine": "irish", + "ingredients": [ + "lemon curd", + "whipping cream", + "mint sprigs", + "orange liqueur", + "orange", + "strawberries", + "sugar", + "shortbread cookies" + ] + }, + { + "id": 30669, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "onions", + "corn kernel whole", + "garam masala", + "cumin seed", + "chopped cilantro fresh", + "olive oil", + "lemon", + "frozen peas", + "whole milk", + "red bell pepper", + "ground turmeric" + ] + }, + { + "id": 20693, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "grated parmesan cheese", + "garlic", + "fresh parsley leaves", + "table salt", + "lasagna noodles", + "diced tomatoes", + "salt", + "fresh basil", + "ground black pepper", + "red pepper flakes", + "part-skim ricotta cheese", + "crushed tomatoes", + "large eggs", + "extra-virgin olive oil", + "shredded mozzarella cheese" + ] + }, + { + "id": 20271, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "refried beans", + "tortilla chips", + "cumin", + "chicken broth", + "shredded cheddar cheese", + "diced tomatoes", + "sour cream", + "avocado", + "pepper", + "diced green chilies", + "enchilada sauce", + "boneless chicken skinless thigh", + "corn", + "salt", + "chopped cilantro" + ] + }, + { + "id": 9759, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "dough", + "ground black pepper", + "fresh parmesan cheese", + "fresh basil", + "cooking spray" + ] + }, + { + "id": 9234, + "cuisine": "indian", + "ingredients": [ + "buttermilk", + "fenugreek seeds", + "oil", + "water", + "salt", + "green chilies", + "ginger", + "rice", + "poha", + "cilantro leaves", + "cumin seed" + ] + }, + { + "id": 18404, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "large eggs", + "cilantro leaves", + "tamarind paste", + "medium shrimp", + "unsalted roasted peanuts", + "lime wedges", + "dried rice noodles", + "scallions", + "table salt", + "shallots", + "rice vinegar", + "peanut oil", + "boiling water", + "palm sugar", + "garlic", + "cayenne pepper", + "beansprouts" + ] + }, + { + "id": 5656, + "cuisine": "indian", + "ingredients": [ + "lemon", + "stewed tomatoes", + "black mustard seeds", + "chili pepper", + "cilantro", + "salt", + "ghee", + "fennel seeds", + "raw sugar", + "garlic", + "dried chile", + "masoor dal", + "ginger", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 38155, + "cuisine": "chinese", + "ingredients": [ + "Sriracha", + "gai lan", + "chicken", + "oil", + "rice stick noodles", + "garlic cloves" + ] + }, + { + "id": 11542, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "fresh ginger", + "cinnamon", + "oil", + "onions", + "plain flour", + "canola", + "yoghurt", + "garlic", + "cooking cream", + "nutmeg", + "steamed rice", + "chicken breasts", + "salt", + "chillies", + "fresh coriander", + "garam masala", + "diced tomatoes", + "lemon juice", + "cumin" + ] + }, + { + "id": 45974, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "yellow onion", + "fettucine", + "crushed red pepper flakes", + "large shrimp", + "virgin olive oil", + "diced tomatoes", + "flat leaf parsley", + "kosher salt", + "garlic" + ] + }, + { + "id": 3051, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "heavy cream", + "frozen peas", + "fresh ginger", + "shallots", + "smoked paprika", + "boneless skinless chicken breasts", + "garlic", + "basmati rice", + "garam masala", + "vegetable oil", + "roasted tomatoes" + ] + }, + { + "id": 25744, + "cuisine": "indian", + "ingredients": [ + "clove", + "kosher salt", + "vegetable oil", + "grated nutmeg", + "cardamom pods", + "onions", + "spinach leaves", + "mace", + "garlic", + "chickpeas", + "juice", + "ground turmeric", + "ground cinnamon", + "fresh ginger", + "star anise", + "cayenne pepper", + "cumin seed", + "cashew nuts", + "black peppercorns", + "coriander seeds", + "cilantro leaves", + "green chilies", + "coconut milk" + ] + }, + { + "id": 48771, + "cuisine": "southern_us", + "ingredients": [ + "key lime juice", + "vanilla yogurt", + "sweetened condensed milk" + ] + }, + { + "id": 39440, + "cuisine": "mexican", + "ingredients": [ + "water", + "large garlic cloves", + "kosher salt", + "capon", + "ground cumin", + "unsalted butter", + "chopped cilantro fresh", + "red chile powder", + "carrots" + ] + }, + { + "id": 33122, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "water chestnuts", + "black moss", + "oyster sauce", + "snow peas", + "peanuts", + "mung bean noodles", + "salt", + "bamboo shoots", + "canola oil", + "water", + "lily buds", + "wood mushrooms", + "carrots", + "nuts", + "tofu", + "dried oysters", + "sesame oil", + "dried shiitake mushrooms", + "bean curd" + ] + }, + { + "id": 32373, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "mushrooms", + "no-salt-added black beans", + "corn tortillas", + "dried oregano", + "salsa verde", + "lime wedges", + "hot sauce", + "onions", + "light sour cream", + "frozen whole kernel corn", + "queso fresco", + "poblano chiles", + "chopped cilantro fresh", + "olive oil", + "chili powder", + "salt", + "fresh lime juice", + "ground cumin" + ] + }, + { + "id": 13516, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "ground beef", + "taco sauce", + "scallions", + "tomatoes", + "shells", + "colby cheese", + "sour cream" + ] + }, + { + "id": 10589, + "cuisine": "brazilian", + "ingredients": [ + "dried black beans", + "bell pepper", + "cayenne pepper", + "sour cream", + "water", + "salt", + "garlic cloves", + "cumin", + "black pepper", + "cilantro", + "orange juice", + "onions", + "tomatoes", + "olive oil", + "salsa", + "carrots" + ] + }, + { + "id": 24065, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "chopped onion", + "dried oregano", + "garlic", + "dried parsley", + "white rice", + "ground beef", + "chicken broth", + "chopped celery", + "pork sausages" + ] + }, + { + "id": 8405, + "cuisine": "southern_us", + "ingredients": [ + "grated parmesan cheese", + "white cornmeal", + "egg substitute", + "vegetable oil", + "vegetable oil cooking spray", + "ground red pepper", + "fat-free buttermilk", + "all-purpose flour" + ] + }, + { + "id": 45654, + "cuisine": "southern_us", + "ingredients": [ + "cream cheese", + "boiling water", + "jello", + "chopped pecans", + "crushed pineapple", + "mini marshmallows", + "sour cream" + ] + }, + { + "id": 32320, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "avocado", + "tomatillos", + "cilantro stems", + "garlic powder", + "salt" + ] + }, + { + "id": 45350, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "crushed tomatoes", + "garlic", + "onions", + "bread crumbs", + "ricotta cheese", + "hot Italian sausages", + "black pepper", + "lean ground beef", + "salt", + "eggs", + "water", + "heavy cream", + "chopped parsley" + ] + }, + { + "id": 3573, + "cuisine": "korean", + "ingredients": [ + "water", + "white rice", + "sesame oil", + "deveined shrimp", + "rice wine", + "salt" + ] + }, + { + "id": 43744, + "cuisine": "spanish", + "ingredients": [ + "honey", + "ice cream", + "cinnamon", + "figs", + "crème fraîche" + ] + }, + { + "id": 4559, + "cuisine": "japanese", + "ingredients": [ + "ginger juice", + "soy sauce", + "sugar", + "sake", + "ground chicken" + ] + }, + { + "id": 40579, + "cuisine": "irish", + "ingredients": [ + "chicken stock", + "parsley", + "garlic cloves", + "potatoes", + "yellow onion", + "ground pepper", + "bacon", + "pork sausages", + "dried sage", + "oil" + ] + }, + { + "id": 2012, + "cuisine": "italian", + "ingredients": [ + "pepper", + "bacon", + "brie cheese", + "herbs", + "purple onion", + "baguette", + "garlic", + "fresh thyme leaves", + "cream cheese" + ] + }, + { + "id": 10817, + "cuisine": "italian", + "ingredients": [ + "honey", + "all-purpose flour", + "eggs", + "vanilla extract", + "grated lemon peel", + "candy sprinkles", + "oil", + "sugar", + "salt" + ] + }, + { + "id": 15119, + "cuisine": "southern_us", + "ingredients": [ + "cayenne", + "dried oregano", + "kosher salt", + "dri leav thyme", + "chili powder", + "ground black pepper", + "pork shoulder boston butt" + ] + }, + { + "id": 28530, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "salsa", + "flour tortillas", + "ground beef", + "olive oil", + "sour cream", + "cooked rice", + "guacamole" + ] + }, + { + "id": 16343, + "cuisine": "italian", + "ingredients": [ + "cream of tartar", + "vanilla extract", + "semi-sweet chocolate morsels", + "water", + "strawberries", + "sugar", + "salt", + "blackberries", + "white vinegar", + "large egg whites", + "whipped topping" + ] + }, + { + "id": 24555, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "french bread", + "paprika", + "garlic cloves", + "jumbo shrimp", + "minced garlic", + "lemon wedge", + "crushed red pepper", + "plum tomatoes", + "slivered almonds", + "roasted red peppers", + "red wine vinegar", + "salt", + "hazelnuts", + "cooking spray", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 29416, + "cuisine": "french", + "ingredients": [ + "sliced almonds", + "amaretto", + "granulated sugar", + "fresh lemon juice", + "peaches", + "crepes", + "powdered sugar", + "fat-free cottage cheese", + "cream cheese, soften" + ] + }, + { + "id": 41053, + "cuisine": "greek", + "ingredients": [ + "green bell pepper", + "eggplant", + "salt", + "dill weed", + "tomatoes", + "pepper", + "fresh green bean", + "fresh mushrooms", + "tomato sauce", + "potatoes", + "fresh oregano", + "onions", + "fresh basil", + "olive oil", + "summer squash", + "garlic cloves" + ] + }, + { + "id": 9294, + "cuisine": "southern_us", + "ingredients": [ + "cream style corn", + "eggs", + "sour cream", + "vegetable oil", + "milk", + "cornmeal" + ] + }, + { + "id": 27168, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "garlic", + "tomatoes", + "cod fillets", + "fresh parsley", + "olive oil", + "salt", + "penne", + "red pepper flakes" + ] + }, + { + "id": 46669, + "cuisine": "french", + "ingredients": [ + "granulated sugar", + "all-purpose flour", + "large egg yolks", + "butter", + "tart apples", + "ground nutmeg", + "salt", + "firmly packed brown sugar", + "large eggs", + "walnuts" + ] + }, + { + "id": 40150, + "cuisine": "indian", + "ingredients": [ + "milk", + "salt", + "melted butter", + "sesame seeds", + "olive oil", + "bread flour", + "sugar", + "baking powder" + ] + }, + { + "id": 8515, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "portabello mushroom", + "lime", + "Thai fish sauce", + "sugar", + "Thai red curry paste", + "spring onions", + "chicken" + ] + }, + { + "id": 158, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "mango chutney", + "hummus", + "pepper", + "roasted red peppers", + "purple onion", + "spinach", + "tortillas", + "cheese", + "cherry tomatoes", + "chives", + "salt" + ] + }, + { + "id": 1070, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "mint leaves", + "ground beef", + "ground pepper", + "paprika", + "onions", + "fresh coriander", + "cinnamon", + "fresh parsley", + "beef", + "salt", + "cumin" + ] + }, + { + "id": 40021, + "cuisine": "british", + "ingredients": [ + "olive oil", + "butter", + "white mushrooms", + "frozen peas", + "cauliflower", + "lean ground beef", + "carrots", + "onions", + "fresh thyme leaves", + "all-purpose flour", + "yukon gold", + "ground black pepper", + "salt", + "low sodium beef broth", + "low-fat milk" + ] + }, + { + "id": 16620, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "vegetable oil", + "large eggs", + "water", + "fine sea salt", + "baking powder" + ] + }, + { + "id": 49448, + "cuisine": "indian", + "ingredients": [ + "water", + "chili powder", + "oil", + "garam masala", + "salt", + "lime juice", + "crushed garlic", + "chicken", + "cream", + "yoghurt", + "cumin seed" + ] + }, + { + "id": 11124, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "pecorino romano cheese", + "pancetta", + "unsalted butter", + "linguine", + "ground black pepper", + "Italian parsley leaves", + "cream", + "parmigiano reggiano cheese" + ] + }, + { + "id": 19526, + "cuisine": "thai", + "ingredients": [ + "basil leaves", + "yellow curry paste", + "lobster", + "cayenne pepper", + "kaffir lime leaves", + "salt", + "coconut milk", + "vegetable oil", + "hot curry powder" + ] + }, + { + "id": 49557, + "cuisine": "vietnamese", + "ingredients": [ + "marrow", + "eye of the round", + "hoisin sauce", + "lime wedges", + "ginger", + "scallions", + "chile sauce", + "fennel seeds", + "thai basil", + "oxtails", + "cinnamon", + "vietnamese fish sauce", + "bird chile", + "clove", + "coriander seeds", + "beef brisket", + "rice noodles", + "star anise", + "beansprouts", + "black peppercorns", + "yellow rock sugar", + "shallots", + "cilantro", + "black cardamom pods", + "onions" + ] + }, + { + "id": 12327, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "chopped cilantro", + "minced garlic", + "Anaheim chile", + "pinto beans", + "ground cumin", + "chicken stock", + "ground black pepper", + "pink beans", + "onions", + "water", + "lime wedges", + "ground turkey" + ] + }, + { + "id": 1783, + "cuisine": "spanish", + "ingredients": [ + "crusty bread", + "garlic", + "red bell pepper", + "cooked ham", + "fresh parsley leaves", + "hot red pepper flakes", + "salt", + "large shrimp", + "olive oil", + "sherry wine" + ] + }, + { + "id": 25794, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "corn tortillas", + "green onions", + "coarse kosher salt", + "lime wedges", + "poblano chiles", + "avocado", + "garlic cloves", + "skirt steak" + ] + }, + { + "id": 26830, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "zucchini", + "ground beef", + "pepper", + "salt", + "fresh basil leaves", + "lasagna noodles", + "shredded mozzarella cheese", + "italian seasoning", + "romano cheese", + "ricotta cheese", + "onions" + ] + }, + { + "id": 4940, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "garbanzo beans", + "chili powder", + "smoked paprika", + "tomato paste", + "olive oil", + "tortillas", + "salt", + "onions", + "low sodium vegetable broth", + "garlic powder", + "onion powder", + "red bell pepper", + "shelled hemp seeds", + "nutritional yeast", + "roma tomatoes", + "all-purpose flour", + "cumin" + ] + }, + { + "id": 2731, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "olive oil", + "dry white wine", + "salt", + "carrots", + "lamb shanks", + "lemon peel", + "diced tomatoes", + "ground coriander", + "fresh parsley", + "fresh rosemary", + "ground black pepper", + "chopped fresh thyme", + "chopped onion", + "low salt chicken broth", + "capocollo", + "bay leaves", + "chopped celery", + "garlic cloves", + "grated lemon peel" + ] + }, + { + "id": 11732, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "toasted slivered almonds", + "greens", + "avocado", + "sprouts", + "serrano chile", + "mung beans", + "broth", + "posole", + "scallions", + "olives" + ] + }, + { + "id": 21055, + "cuisine": "italian", + "ingredients": [ + "butter", + "ground black pepper", + "salt", + "meat-filled tortellini", + "garlic", + "ground sage", + "flat leaf parsley" + ] + }, + { + "id": 20900, + "cuisine": "italian", + "ingredients": [ + "butter", + "fresh parmesan cheese", + "chinese cabbage", + "shredded carrots", + "lemon juice", + "pepper", + "salt" + ] + }, + { + "id": 13358, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "shredded cheddar cheese", + "ground beef", + "green enchilada sauce", + "salsa verde" + ] + }, + { + "id": 26310, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "cucumber", + "clove", + "olive oil", + "bread", + "pepper", + "red bell pepper", + "tomatoes", + "white wine vinegar" + ] + }, + { + "id": 22568, + "cuisine": "indian", + "ingredients": [ + "saffron threads", + "mango chutney", + "salt", + "slivered almonds", + "currant", + "basmati rice", + "chicken broth", + "butter", + "chopped onion", + "pepper", + "garlic" + ] + }, + { + "id": 45483, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "pork country-style ribs", + "honey", + "molasses", + "barbecue sauce" + ] + }, + { + "id": 43156, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "Asian chili sauce", + "dark brown sugar", + "flank steak", + "fresh orange juice", + "grated orange", + "green onions", + "vegetable oil", + "corn starch", + "soy sauce", + "brown rice", + "rice vinegar" + ] + }, + { + "id": 22119, + "cuisine": "spanish", + "ingredients": [ + "granny smith apples", + "pimentos", + "raisins", + "cinnamon sticks", + "water", + "vegetable oil", + "salt", + "slivered almonds", + "jalapeno chilies", + "large garlic cloves", + "chopped onion", + "pepper", + "ground sirloin", + "diced tomatoes" + ] + }, + { + "id": 38013, + "cuisine": "japanese", + "ingredients": [ + "potato starch", + "vegetable oil", + "chicken thighs", + "soy sauce", + "ginger", + "sake", + "lemon", + "granulated sugar", + "garlic" + ] + }, + { + "id": 13882, + "cuisine": "italian", + "ingredients": [ + "celery salt", + "white wine", + "chopped fresh thyme", + "salt", + "dried mushrooms", + "fresh rosemary", + "water", + "garlic", + "ground beef", + "tomatoes", + "pepper", + "butter", + "flat leaf parsley", + "tomato sauce", + "olive oil", + "granulated white sugar", + "onions" + ] + }, + { + "id": 7609, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "celery seed", + "cayenne pepper", + "kosher salt", + "ground cumin", + "brown sugar", + "mustard powder" + ] + }, + { + "id": 26184, + "cuisine": "indian", + "ingredients": [ + "lemon", + "garlic cloves", + "coriander", + "pepper", + "salt", + "onions", + "plain yogurt", + "paprika", + "ginger root", + "cumin", + "garam masala", + "cayenne pepper", + "chicken thighs" + ] + }, + { + "id": 25357, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "green onions", + "pearl barley", + "water", + "vegetable broth", + "rocket leaves", + "parmesan cheese", + "salt", + "pepper", + "cilantro", + "orecchiette" + ] + }, + { + "id": 4821, + "cuisine": "indian", + "ingredients": [ + "hot red pepper flakes", + "coconut", + "vegetable oil", + "ground cumin", + "minced garlic", + "sweet potatoes", + "cayenne pepper", + "green chile", + "water", + "brown mustard seeds", + "ground turmeric", + "fresh curry leaves", + "kidney beans", + "salt" + ] + }, + { + "id": 7601, + "cuisine": "indian", + "ingredients": [ + "salt", + "onions", + "potatoes", + "green chilies", + "cilantro leaves", + "teas", + "oil" + ] + }, + { + "id": 31710, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "sugar", + "gruyere cheese", + "large eggs", + "water", + "salt" + ] + }, + { + "id": 1935, + "cuisine": "thai", + "ingredients": [ + "unsalted chicken stock", + "szechwan peppercorns", + "ground pork", + "peanut butter", + "ground cumin", + "chili paste", + "vegetable oil", + "star anise", + "scallions", + "soy sauce", + "sesame oil", + "ginger", + "ground coriander", + "chili flakes", + "Shaoxing wine", + "cinnamon", + "garlic", + "noodles" + ] + }, + { + "id": 48458, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "chopped fresh mint", + "crushed red pepper", + "mango chutney", + "lamb rib chops", + "salt" + ] + }, + { + "id": 30278, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "dry sherry", + "shiitake mushroom caps", + "arborio rice", + "dried thyme", + "salt", + "dried porcini mushrooms", + "olive oil", + "garlic cloves", + "water", + "vegetable broth", + "boiling water" + ] + }, + { + "id": 3539, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "yardlong beans", + "grated carrot", + "persian cucumber", + "boneless skinless chicken breast halves", + "kaffir lime leaves", + "olive oil", + "daikon", + "thai chile", + "celery", + "plum tomatoes", + "fish sauce", + "palm sugar", + "large garlic cloves", + "cilantro leaves", + "fresh lime juice", + "green cabbage", + "lemongrass", + "green onions", + "salted roast peanuts", + "fresh lemon juice", + "chopped cilantro fresh" + ] + }, + { + "id": 44494, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "balsamic vinegar", + "fresh mint", + "unsalted butter", + "purple onion", + "kosher salt", + "garlic", + "eggs", + "zucchini", + "waxy potatoes" + ] + }, + { + "id": 10603, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cooking spray", + "crumbled gorgonzola", + "olive oil", + "all-purpose flour", + "warm water", + "salt", + "onions", + "dry yeast", + "chopped walnuts" + ] + }, + { + "id": 11578, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "olive oil", + "butternut squash", + "chopped onion", + "fat free less sodium chicken broth", + "cooking spray", + "all-purpose flour", + "sugar", + "ground black pepper", + "bacon slices", + "chopped fresh sage", + "warm water", + "dry yeast", + "salt", + "cornmeal" + ] + }, + { + "id": 19039, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "ground nutmeg", + "dill", + "chopped parsley", + "eggs", + "milk", + "garlic", + "medium-grain rice", + "ground beef", + "chicken broth", + "water", + "ground pork", + "ground allspice", + "flat leaf parsley", + "black pepper", + "olive oil", + "sauce", + "lemon juice", + "onions" + ] + }, + { + "id": 4617, + "cuisine": "italian", + "ingredients": [ + "prebaked pizza crusts", + "cheese", + "minced garlic", + "tomatoes" + ] + }, + { + "id": 10268, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "ginger", + "oil", + "pepper", + "shells", + "fresh spinach", + "garlic", + "onions", + "tomatoes", + "water", + "salt" + ] + }, + { + "id": 42623, + "cuisine": "indian", + "ingredients": [ + "clove", + "sugar", + "vegetable oil", + "garlic", + "red bell pepper", + "unsweetened shredded dried coconut", + "kosher salt", + "fresh green bean", + "cumin seed", + "ground cumin", + "tomatoes", + "plain yogurt", + "vegetable stock", + "cayenne pepper", + "onions", + "tumeric", + "fresh ginger", + "cilantro", + "black mustard seeds" + ] + }, + { + "id": 23895, + "cuisine": "indian", + "ingredients": [ + "chile pepper", + "cucumber", + "salt", + "plain yogurt", + "chopped cilantro" + ] + }, + { + "id": 10203, + "cuisine": "french", + "ingredients": [ + "ice water", + "large egg yolks", + "all-purpose flour", + "sugar", + "salt", + "unsalted butter" + ] + }, + { + "id": 48276, + "cuisine": "brazilian", + "ingredients": [ + "lime juice", + "sugar", + "unsweetened almond milk", + "orange zest", + "avocado", + "cinnamon" + ] + }, + { + "id": 2035, + "cuisine": "mexican", + "ingredients": [ + "water", + "black olives", + "sour cream", + "tomatoes", + "guacamole", + "salsa", + "avocado", + "flour tortillas", + "shredded sharp cheddar cheese", + "ground beef", + "green olives", + "shredded lettuce", + "taco seasoning" + ] + }, + { + "id": 5555, + "cuisine": "southern_us", + "ingredients": [ + "canola", + "large eggs", + "light corn syrup", + "dark brown sugar", + "bittersweet chocolate chips", + "white chocolate chips", + "butter", + "cayenne pepper", + "pecans", + "ground black pepper", + "crumbs", + "vanilla extract", + "corn starch", + "shortening", + "unsalted butter", + "bourbon whiskey", + "salt", + "chocolate chips" + ] + }, + { + "id": 49315, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "honey", + "red wine vinegar", + "grape tomatoes", + "feta cheese", + "fresh lemon juice", + "fresh basil", + "olive oil", + "orzo", + "pinenuts", + "green onions" + ] + }, + { + "id": 28765, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "chile pepper", + "mustard seeds", + "split black lentils", + "dried chickpeas", + "dried red chile peppers", + "grated coconut", + "cooking oil", + "fresh lemon juice", + "mango", + "water", + "salt", + "asafoetida powder" + ] + }, + { + "id": 29823, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "zucchini", + "pinto beans", + "chorizo sausage", + "olive oil", + "tomatoes with juice", + "onions", + "cooked rice", + "lean ground beef", + "chopped cilantro", + "ground cumin", + "ground black pepper", + "fine sea salt", + "dried oregano" + ] + }, + { + "id": 15559, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "blanched almonds", + "garlic powder", + "grating cheese", + "chicken", + "pepper", + "ground thyme", + "fresh parsley", + "quick oats", + "salt" + ] + }, + { + "id": 41683, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "unsalted butter", + "garlic", + "ground cayenne pepper", + "lump crab meat", + "clam juice", + "all-purpose flour", + "white corn", + "green onions", + "salt", + "onions", + "dried thyme", + "heavy cream", + "ground white pepper" + ] + }, + { + "id": 35029, + "cuisine": "japanese", + "ingredients": [ + "pistachios", + "carrots", + "sugar", + "raisins", + "cashew nuts", + "cinnamon", + "ghee", + "milk", + "cardamom pods" + ] + }, + { + "id": 24873, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "cilantro sprigs", + "pumpkin seeds", + "chicken broth", + "tomatillos", + "purple onion", + "corn tortillas", + "cooked chicken", + "garlic", + "sour cream", + "serrano chilies", + "poblano chilies", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 15770, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "boneless skinless chicken breasts", + "garlic", + "sausages", + "onions", + "black pepper", + "butter", + "cayenne pepper", + "celery", + "brussels sprouts", + "rotelle", + "salt", + "thyme", + "oregano", + "minute rice", + "paprika", + "green pepper", + "cooked shrimp" + ] + }, + { + "id": 25285, + "cuisine": "french", + "ingredients": [ + "fresh thyme", + "garlic cloves", + "turnips", + "butter", + "celery root", + "leeks", + "low salt chicken broth", + "parsnips", + "whipping cream" + ] + }, + { + "id": 42769, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "celery", + "cabbage", + "smoked sausage", + "onions", + "stewed tomatoes", + "ground beef", + "chopped garlic", + "rice", + "garlic salt" + ] + }, + { + "id": 24019, + "cuisine": "mexican", + "ingredients": [ + "cider vinegar", + "wax beans", + "red bell pepper", + "sugar", + "jalapeno chilies", + "purple onion", + "red kidnei beans, rins and drain", + "olive oil", + "dry mustard", + "black pepper", + "unsweetened apple juice", + "green beans" + ] + }, + { + "id": 34293, + "cuisine": "spanish", + "ingredients": [ + "sweet onion", + "yellow bell pepper", + "fresh lemon juice", + "tomatoes", + "ground black pepper", + "english cucumber", + "large shrimp", + "fresh basil", + "seafood seasoning", + "garlic cloves", + "olive oil", + "salt", + "red bell pepper" + ] + }, + { + "id": 41103, + "cuisine": "southern_us", + "ingredients": [ + "top round steak", + "breakfast sausages", + "cayenne pepper", + "kosher salt", + "buttermilk", + "eggs", + "whole milk", + "all-purpose flour", + "black pepper", + "vegetable oil" + ] + }, + { + "id": 4181, + "cuisine": "italian", + "ingredients": [ + "eggs", + "lemon zest", + "vanilla extract", + "whole wheat flour", + "butter", + "honey", + "ricotta cheese", + "slivered almonds", + "graham cracker crumbs", + "pumpkin seeds" + ] + }, + { + "id": 5242, + "cuisine": "brazilian", + "ingredients": [ + "water", + "salt", + "flavoring", + "red potato", + "olive oil", + "garlic cloves", + "fresh parsley", + "tomatoes", + "dried thyme", + "yellow onion", + "red bell pepper", + "dried black beans", + "ground black pepper", + "carrots", + "ground cumin" + ] + }, + { + "id": 19925, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "unsalted butter", + "rigatoni", + "olive oil", + "garlic", + "parmesan cheese", + "fresh mushrooms", + "grape tomatoes", + "cannellini beans" + ] + }, + { + "id": 13744, + "cuisine": "greek", + "ingredients": [ + "pepper", + "boneless skinless chicken breast halves", + "salt", + "tzatziki", + "purple onion", + "cumin" + ] + }, + { + "id": 21976, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "part-skim mozzarella cheese", + "canola oil", + "pepperoni turkei", + "flour tortillas" + ] + }, + { + "id": 7432, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "ground black pepper", + "diced tomatoes", + "carrots", + "onions", + "tomato paste", + "dried basil", + "lean ground beef", + "beef broth", + "red bell pepper", + "pork sausages", + "green bell pepper", + "dried thyme", + "beef stock cubes", + "sausages", + "celery", + "dried oregano", + "minced garlic", + "bay leaves", + "crushed red pepper flakes", + "sliced mushrooms", + "white sugar" + ] + }, + { + "id": 12183, + "cuisine": "french", + "ingredients": [ + "caraway seeds", + "unsalted butter", + "sweet onion", + "yukon gold potatoes", + "kosher salt", + "duck fat", + "ground black pepper" + ] + }, + { + "id": 21450, + "cuisine": "cajun_creole", + "ingredients": [ + "large eggs", + "monterey jack", + "creole seasoning", + "french bread", + "fresh parsley" + ] + }, + { + "id": 15274, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "buttermilk", + "sauce", + "grated parmesan cheese", + "garlic", + "fresh parsley", + "large eggs", + "chees fresh mozzarella", + "Italian bread", + "kosher salt", + "vegetable oil", + "all-purpose flour", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 38884, + "cuisine": "chinese", + "ingredients": [ + "maltose", + "walnut halves", + "dried dates", + "ground cinnamon", + "salt", + "canola" + ] + }, + { + "id": 30066, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "couscous", + "tomatoes", + "chickpeas", + "herbs", + "canola oil", + "chicken legs", + "sauce" + ] + }, + { + "id": 46177, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless chicken skinless thigh", + "diced tomatoes", + "bay leaf", + "cumin", + "tomato paste", + "green onions", + "smoked paprika", + "long grain white rice", + "bell pepper", + "mexican chorizo", + "onions", + "chicken broth", + "vegetable oil", + "celery", + "oregano" + ] + }, + { + "id": 39866, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "garlic cloves", + "chicken broth", + "smoked sausage", + "onions", + "brown rice", + "fresh parsley", + "green bell pepper", + "salt" + ] + }, + { + "id": 33004, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "shiitake", + "coconut milk", + "kaffir lime leaves", + "curry powder", + "green onions", + "medium shrimp", + "water", + "lemon grass", + "galangal", + "fish sauce", + "lime juice", + "red pepper flakes" + ] + }, + { + "id": 42697, + "cuisine": "chinese", + "ingredients": [ + "ramps", + "all purpose unbleached flour", + "hot water" + ] + }, + { + "id": 41424, + "cuisine": "italian", + "ingredients": [ + "cream", + "chili powder", + "margarine", + "chicken thighs", + "chicken broth", + "water chestnuts", + "Tabasco Pepper Sauce", + "celery", + "spaghetti", + "cream of celery soup", + "bell pepper", + "peas", + "cream of mushroom soup", + "cheddar cheese", + "chicken breasts", + "broccoli", + "onions" + ] + }, + { + "id": 10728, + "cuisine": "vietnamese", + "ingredients": [ + "salad", + "fish sauce", + "water", + "ground pork", + "oil", + "spring roll wrappers", + "minced garlic", + "tree ear mushrooms", + "yellow onion", + "bean threads", + "sugar", + "ground black pepper", + "dipping sauces", + "carrots", + "eggs", + "ground chicken", + "green onions", + "salt", + "corn starch" + ] + }, + { + "id": 4723, + "cuisine": "italian", + "ingredients": [ + "pepper", + "grated parmesan cheese", + "white sugar", + "tomato sauce", + "garlic powder", + "ricotta cheese", + "eggs", + "dried basil", + "lean ground beef", + "dried oregano", + "mozzarella cheese", + "lasagna noodles", + "salt" + ] + }, + { + "id": 15094, + "cuisine": "italian", + "ingredients": [ + "sugar", + "whipped cream", + "ground ginger", + "brewed coffee", + "water", + "ground allspice", + "ground cinnamon", + "amaretto" + ] + }, + { + "id": 38, + "cuisine": "southern_us", + "ingredients": [ + "oysters", + "clam juice", + "chopped celery", + "okra", + "medium shrimp", + "bay leaves", + "diced tomatoes", + "hot sauce", + "garlic cloves", + "chopped green bell pepper", + "cajun seasoning", + "all-purpose flour", + "long-grain rice", + "vegetable oil", + "bacon slices", + "chopped onion", + "hot water" + ] + }, + { + "id": 11536, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "garam masala", + "garlic", + "lemon juice", + "tofu", + "cream", + "serrano peppers", + "cayenne pepper", + "chopped cilantro fresh", + "cauliflower", + "fresh ginger root", + "paprika", + "ground coriander", + "ground cumin", + "plain yogurt", + "unsalted butter", + "salt", + "frozen peas" + ] + }, + { + "id": 5519, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "noodles", + "heavy cream", + "butter", + "salt" + ] + }, + { + "id": 18814, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "cooking spray", + "garlic cloves", + "curry powder", + "vegetable oil", + "low-fat plain yogurt", + "lime juice", + "chicken fingers", + "kosher salt", + "mango chutney" + ] + }, + { + "id": 9471, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "dried thyme", + "old bay seasoning", + "hot sauce", + "bay leaf", + "dried oregano", + "pepper", + "cajun seasoning", + "salt", + "okra pods", + "onions", + "reduced sodium chicken broth", + "boneless skinless chicken breasts", + "garlic", + "cayenne pepper", + "medium shrimp", + "canola oil", + "green bell pepper", + "water", + "butter", + "all-purpose flour", + "celery", + "long grain white rice" + ] + }, + { + "id": 38412, + "cuisine": "italian", + "ingredients": [ + "saffron threads", + "sugar", + "lemon wedge", + "pinot noir", + "carrots", + "onions", + "tomato paste", + "peeled tomatoes", + "parsley", + "fresh oregano", + "thyme sprigs", + "mussels", + "water", + "sliced carrots", + "salt", + "celery", + "fish", + "fish fillets", + "olive oil", + "chopped fresh thyme", + "garlic cloves", + "fresh parsley" + ] + }, + { + "id": 24388, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "ditalini", + "garlic cloves", + "kosher salt", + "crushed red pepper flakes", + "onions", + "celery ribs", + "olive oil", + "chickpeas", + "fresh rosemary", + "Italian parsley leaves", + "carrots" + ] + }, + { + "id": 34096, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "sweet onion", + "all-purpose flour", + "fresh parsley", + "red chili peppers", + "cajun seasoning", + "shrimp", + "plum tomatoes", + "sausage links", + "olive oil", + "beer", + "boneless skinless chicken breast halves", + "minced garlic", + "diced tomatoes", + "celery" + ] + }, + { + "id": 26578, + "cuisine": "mexican", + "ingredients": [ + "lime", + "taco seasoning", + "olive oil", + "cooked shrimp" + ] + }, + { + "id": 6643, + "cuisine": "chinese", + "ingredients": [ + "chicken wings", + "soy sauce", + "brown sugar", + "garlic powder" + ] + }, + { + "id": 2111, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "butter", + "fresh mushrooms", + "dried basil", + "green onions", + "linguine", + "red bell pepper", + "garlic powder", + "cajun seasoning", + "salt", + "boneless skinless chicken breast halves", + "green bell pepper", + "grated parmesan cheese", + "heavy cream", + "lemon pepper" + ] + }, + { + "id": 7114, + "cuisine": "indian", + "ingredients": [ + "cumin seed", + "water", + "frozen peas", + "chicken broth", + "onions", + "coarse salt" + ] + }, + { + "id": 43376, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "fresh ginger", + "rice noodles", + "culantro", + "chopped cilantro fresh", + "rock sugar", + "water", + "thai basil", + "salt", + "fat", + "chicken", + "clove", + "black pepper", + "coriander seeds", + "cilantro", + "scallions", + "serrano chile", + "mint", + "lime", + "cooked chicken", + "yellow onion", + "beansprouts" + ] + }, + { + "id": 14507, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "bay leaves", + "black peppercorns", + "water", + "pork shoulder", + "black beans", + "garlic", + "brown sugar", + "vinegar" + ] + }, + { + "id": 3411, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "cilantro", + "salsa", + "cumin", + "chicken breasts", + "salt", + "rice", + "minced garlic", + "cracked black pepper", + "cayenne pepper", + "black beans", + "chili powder", + "frozen corn", + "dried oregano" + ] + }, + { + "id": 26265, + "cuisine": "japanese", + "ingredients": [ + "pepper", + "purple onion", + "flavored oil", + "garlic", + "rice vinegar", + "ginger", + "salt", + "toasted sesame oil", + "tamari soy sauce", + "carrots" + ] + }, + { + "id": 32292, + "cuisine": "greek", + "ingredients": [ + "tomato sauce", + "diced tomatoes", + "salt", + "olive oil", + "garlic", + "feta cheese crumbles", + "pepper", + "kalamata", + "yellow onion", + "capers", + "balsamic vinegar", + "crushed red pepper" + ] + }, + { + "id": 39497, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "white sugar", + "sesame seeds", + "salt", + "msg", + "garlic", + "chicken", + "ground black pepper", + "peanut oil" + ] + }, + { + "id": 41917, + "cuisine": "southern_us", + "ingredients": [ + "Jameson Irish Whiskey", + "unsalted butter", + "salt", + "dark brown sugar", + "sugar", + "light corn syrup", + "corn syrup", + "dark chocolate", + "large eggs", + "all-purpose flour", + "heavy whipping cream", + "light brown sugar", + "water", + "vanilla", + "chopped walnuts" + ] + }, + { + "id": 30130, + "cuisine": "jamaican", + "ingredients": [ + "tumeric", + "dried thyme", + "butter", + "diced tomatoes in juice", + "cumin", + "water", + "flour", + "scallions", + "onions", + "pepper", + "cardamon", + "beef broth", + "ground beef", + "allspice", + "eggs", + "milk", + "dry white wine", + "garlic cloves", + "dried parsley" + ] + }, + { + "id": 17009, + "cuisine": "mexican", + "ingredients": [ + "boneless pork shoulder", + "garlic", + "canola oil", + "jalapeno chilies", + "ground coriander", + "poblano peppers", + "beef broth", + "ground cumin", + "serrano peppers", + "onions" + ] + }, + { + "id": 23261, + "cuisine": "vietnamese", + "ingredients": [ + "whitefish fillets", + "freshly ground pepper", + "canola oil", + "sugar", + "shallots", + "black cod", + "peeled fresh ginger", + "garlic cloves", + "soy sauce", + "thai chile", + "asian fish sauce" + ] + }, + { + "id": 17336, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "flour", + "cilantro", + "cumin", + "honey", + "lime wedges", + "mahi mahi fillets", + "sliced green onions", + "lime", + "chili powder", + "salt", + "cabbage", + "plain yogurt", + "flour tortillas", + "vegetable oil", + "chopped cilantro" + ] + }, + { + "id": 3627, + "cuisine": "italian", + "ingredients": [ + "pepper", + "butter", + "fresh lemon juice", + "eggplant", + "garlic", + "fresh spinach", + "grated parmesan cheese", + "salt", + "olive oil", + "cracked black pepper", + "bows" + ] + }, + { + "id": 34463, + "cuisine": "french", + "ingredients": [ + "water", + "large eggs", + "tarragon", + "kosher salt", + "dijon mustard", + "chopped parsley", + "Emmenthal", + "chives", + "chervil", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 4941, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "sea salt", + "kiwifruit", + "mango", + "Tabasco Green Pepper Sauce", + "cucumber", + "green onions" + ] + }, + { + "id": 22330, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "turkey broth", + "salt", + "chopped cilantro", + "lime juice", + "tomatillos", + "tortilla chips", + "monterey jack", + "black beans", + "jalapeno chilies", + "yellow onion", + "oregano", + "cooked turkey", + "garlic", + "sour cream", + "ground cumin" + ] + }, + { + "id": 30275, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "pepper", + "low sodium chicken broth", + "salt", + "tomato sauce", + "ground black pepper", + "extra-virgin olive oil", + "pinenuts", + "large eggs", + "purple onion", + "parmigiano-reggiano cheese", + "milk", + "baby spinach", + "white sandwich bread" + ] + }, + { + "id": 44005, + "cuisine": "italian", + "ingredients": [ + "swiss chard", + "salt", + "fontina", + "ground black pepper", + "pork chops", + "olive oil", + "grated parmesan cheese" + ] + }, + { + "id": 46023, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "extra-virgin olive oil", + "balsamic vinegar", + "fresh basil leaves", + "pepper", + "salt", + "chees fresh mozzarella" + ] + }, + { + "id": 27160, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "garlic", + "ground cumin", + "fresh tomatoes", + "flour tortillas", + "salsa", + "frozen chopped spinach", + "kidney beans", + "salt", + "diced onions", + "water", + "chili powder", + "sour cream" + ] + }, + { + "id": 20148, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "low sodium chicken broth", + "colby jack cheese", + "long-grain rice", + "olive oil", + "green onions", + "diced tomatoes", + "cumin", + "pepper", + "guacamole", + "chili powder", + "sour cream", + "black beans", + "garlic powder", + "boneless skinless chicken breasts", + "diced yellow onion" + ] + }, + { + "id": 42972, + "cuisine": "italian", + "ingredients": [ + "rocket leaves", + "white wine", + "low sodium chicken broth", + "freshly ground pepper", + "arborio rice", + "fresh marjoram", + "unsalted butter", + "sea salt", + "grape tomatoes", + "olive oil", + "balsamic vinegar", + "garlic cloves", + "fresh rosemary", + "boneless chicken skinless thigh", + "grated parmesan cheese", + "purple onion" + ] + }, + { + "id": 40963, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "cayenne", + "whipping cream", + "canola oil", + "eggs", + "ground black pepper", + "pan drippings", + "rice bran oil", + "garlic powder", + "meat", + "round steaks", + "milk", + "flour", + "salt" + ] + }, + { + "id": 48562, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "whitefish fillets", + "sesame seeds", + "sesame oil", + "cilantro leaves", + "black pepper", + "coconut", + "lemon grass", + "garlic", + "red chili peppers", + "lime juice", + "fresh ginger root", + "red pepper", + "Thai fish sauce", + "plain flour", + "groundnut", + "lime", + "Japanese soy sauce", + "salt" + ] + }, + { + "id": 21721, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "beef brisket", + "vegetable oil", + "eggs", + "ground black pepper", + "green onions", + "salt", + "water", + "rice cakes", + "garlic", + "fish sauce", + "beef", + "sesame oil" + ] + }, + { + "id": 11876, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "sugar", + "all-purpose flour", + "soda" + ] + }, + { + "id": 22417, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salsa", + "lime juice", + "pepper", + "salt" + ] + }, + { + "id": 30264, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "ground sichuan pepper", + "scallions", + "sugar", + "fresh shiitake mushrooms", + "salt", + "chinese rice wine", + "fresh ginger", + "chili bean sauce", + "green beans", + "red chili peppers", + "sesame oil", + "peanut oil" + ] + }, + { + "id": 37094, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "red food coloring", + "hoisin sauce", + "chinese five-spice powder", + "soy sauce", + "garlic", + "spareribs", + "dry sherry" + ] + }, + { + "id": 39370, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "large eggs", + "cilantro leaves", + "rice flour", + "sesame seeds", + "vegetable oil", + "all-purpose flour", + "soy sauce", + "large egg yolks", + "salt", + "scallions", + "water", + "sesame oil", + "rice vinegar", + "serrano chile" + ] + }, + { + "id": 27189, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "ground black pepper", + "extra-virgin olive oil", + "fresh basil leaves", + "minced garlic", + "cannellini beans", + "salt", + "pitted kalamata olives", + "cooking spray", + "purple onion", + "water", + "red wine vinegar", + "Italian bread" + ] + }, + { + "id": 18224, + "cuisine": "italian", + "ingredients": [ + "dry yeast", + "warm water", + "sea salt", + "semolina flour", + "all purpose unbleached flour", + "water" + ] + }, + { + "id": 4202, + "cuisine": "thai", + "ingredients": [ + "bread crumbs", + "ground lamb", + "coconut milk", + "green curry paste", + "steak seasoning" + ] + }, + { + "id": 49007, + "cuisine": "southern_us", + "ingredients": [ + "carambola", + "orange juice", + "peach schnapps", + "vodka" + ] + }, + { + "id": 19053, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "carrots", + "kosher salt", + "crushed red pepper", + "fresh basil", + "garlic", + "dried oregano", + "celery ribs", + "ground black pepper", + "yellow onion" + ] + }, + { + "id": 36670, + "cuisine": "french", + "ingredients": [ + "duck breasts", + "mushrooms", + "rosemary leaves", + "chopped parsley", + "olive oil", + "fresh thyme leaves", + "oyster mushrooms", + "chopped garlic", + "pepper", + "foie gras", + "garlic", + "duck drumsticks", + "tomatoes", + "duck fat", + "butter", + "salt" + ] + }, + { + "id": 33175, + "cuisine": "french", + "ingredients": [ + "parmigiano reggiano cheese", + "frozen pastry puff sheets" + ] + }, + { + "id": 46818, + "cuisine": "filipino", + "ingredients": [ + "water", + "raisins", + "carrots", + "tomato sauce", + "potatoes", + "garlic", + "cooking oil", + "ground pork", + "onions", + "pepper", + "hard-boiled egg", + "salt" + ] + }, + { + "id": 27122, + "cuisine": "mexican", + "ingredients": [ + "milk", + "butter", + "huitlacoche", + "vegetable oil", + "poblano chiles", + "flour", + "salt", + "chile sauce", + "queso fresco", + "corn tortillas" + ] + }, + { + "id": 2632, + "cuisine": "mexican", + "ingredients": [ + "cilantro", + "tomatoes", + "salt", + "avocado", + "purple onion", + "lime juice" + ] + }, + { + "id": 22488, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "water", + "chopped cilantro fresh", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 40645, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "soft fresh goat cheese", + "red wine vinegar", + "plum tomatoes", + "fusilli", + "fresh basil leaves", + "large garlic cloves" + ] + }, + { + "id": 16085, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "leeks", + "Chianti", + "beets", + "butter" + ] + }, + { + "id": 36958, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "jalape", + "macaroni", + "arugula", + "pinenuts", + "extra-virgin olive oil", + "large garlic cloves" + ] + }, + { + "id": 46606, + "cuisine": "mexican", + "ingredients": [ + "chili beans", + "black beans", + "beer", + "tomato sauce", + "whole kernel corn, drain", + "onions", + "tomatoes", + "chicken breasts", + "taco seasoning", + "cheddar cheese", + "tortilla chips", + "sour cream" + ] + }, + { + "id": 47445, + "cuisine": "vietnamese", + "ingredients": [ + "purple onion", + "medium shrimp", + "honeydew melon", + "fresh mint", + "cashew nuts", + "sugar", + "cilantro leaves", + "fresh basil leaves", + "vietnamese fish sauce", + "fresh lime juice", + "serrano chile" + ] + }, + { + "id": 16131, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "rigatoni", + "minced garlic", + "kalamata", + "sun-dried tomatoes", + "feta cheese crumbles", + "tomatoes", + "basil" + ] + }, + { + "id": 31987, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "bell pepper", + "onions", + "chicken broth", + "lime", + "chicken tenderloin", + "dried oregano", + "kosher salt", + "chili powder", + "long grain white rice", + "double concentrate tomato paste", + "olive oil", + "cilantro", + "ground cumin" + ] + }, + { + "id": 43470, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "basil", + "onions", + "bell pepper", + "okra", + "tomatoes", + "garlic", + "italian seasoning", + "flour", + "oil" + ] + }, + { + "id": 39427, + "cuisine": "chinese", + "ingredients": [ + "dumpling wrappers", + "green onions", + "rice vinegar", + "green cabbage", + "Sriracha", + "red pepper flakes", + "frozen peas", + "fresh ginger", + "sesame oil", + "beansprouts", + "low sodium soy sauce", + "shredded carrots", + "garlic" + ] + }, + { + "id": 7564, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "garlic", + "onions", + "water", + "oil", + "pepper", + "salt", + "tomatoes", + "stewing beef", + "chayotes" + ] + }, + { + "id": 15284, + "cuisine": "filipino", + "ingredients": [ + "chicken broth", + "garlic", + "shrimp", + "pork belly", + "pancit bihon", + "onions", + "low sodium soy sauce", + "salt", + "green beans", + "celery ribs", + "ground black pepper", + "carrots" + ] + }, + { + "id": 35643, + "cuisine": "korean", + "ingredients": [ + "Korean chile flakes", + "radishes", + "garlic", + "oil", + "chopped garlic", + "soy sauce", + "green onions", + "sauce", + "mung bean sprouts", + "eggs", + "zucchini", + "dried shiitake mushrooms", + "shrimp powder", + "sesame seeds", + "sesame oil", + "english cucumber", + "fern" + ] + }, + { + "id": 7342, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "butter", + "fresh parsley", + "kosher salt", + "dry white wine", + "heavy cream", + "angel hair", + "low sodium chicken broth", + "lemon", + "olive oil", + "boneless skinless chicken breasts", + "all-purpose flour" + ] + }, + { + "id": 14936, + "cuisine": "japanese", + "ingredients": [ + "coconut extract", + "coconut milk", + "melted butter", + "baking powder", + "sweet rice flour", + "eggs", + "vanilla extract", + "milk", + "white sugar" + ] + }, + { + "id": 47640, + "cuisine": "indian", + "ingredients": [ + "water", + "coriander powder", + "ginger", + "oil", + "fenugreek leaves", + "garam masala", + "raw sugar", + "purple onion", + "ground turmeric", + "tomatoes", + "leaves", + "chili powder", + "garlic", + "coconut milk", + "tumeric", + "ground cashew", + "crushed red pepper flakes", + "salt", + "ground cumin" + ] + }, + { + "id": 12379, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "garlic", + "ground beef", + "lime", + "bacon", + "salt", + "oregano", + "shredded cheddar cheese", + "chili powder", + "purple onion", + "roasted tomatoes", + "kidney beans", + "cilantro", + "beef broth", + "cumin" + ] + }, + { + "id": 41139, + "cuisine": "mexican", + "ingredients": [ + "hot sauce", + "tortilla chips", + "frozen corn kernels", + "avocado", + "chicken noodle soup" + ] + }, + { + "id": 3840, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "bacon pieces", + "onions", + "kale", + "garlic", + "chicken broth", + "russet potatoes", + "flour", + "heavy whipping cream" + ] + }, + { + "id": 26332, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger", + "tamari soy sauce", + "cucumber", + "hamburger buns", + "ground pork", + "carrots", + "white sugar", + "fish sauce", + "green onions", + "garlic chili sauce", + "chopped fresh mint", + "fresh basil", + "mirin", + "rice vinegar", + "toasted sesame oil" + ] + }, + { + "id": 3294, + "cuisine": "italian", + "ingredients": [ + "wine", + "extra-virgin olive oil", + "dry white wine", + "octopuses", + "garlic", + "whole peppercorn", + "lemon" + ] + }, + { + "id": 12115, + "cuisine": "italian", + "ingredients": [ + "sugar", + "all-purpose flour", + "powdered sugar", + "large egg whites", + "pinenuts", + "slivered almonds", + "salt" + ] + }, + { + "id": 15139, + "cuisine": "southern_us", + "ingredients": [ + "sherry vinegar", + "salt", + "water", + "dark leafy greens", + "garlic cloves", + "jasmine rice", + "parmigiano reggiano cheese", + "freshly ground pepper", + "olive oil", + "vegetable broth" + ] + }, + { + "id": 39381, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "purple onion", + "black pepper", + "fresh lime juice", + "tomatoes", + "cilantro leaves", + "kosher salt", + "serrano chile" + ] + }, + { + "id": 47870, + "cuisine": "russian", + "ingredients": [ + "olive oil", + "beef tenderloin", + "heavy cream", + "onions", + "unsalted butter", + "chopped parsley", + "button mushrooms" + ] + }, + { + "id": 641, + "cuisine": "indian", + "ingredients": [ + "sugar", + "almonds", + "vegetable oil", + "freshly ground pepper", + "ground turmeric", + "low-fat plain yogurt", + "fresh cilantro", + "chicken breasts", + "cayenne pepper", + "ground cardamom", + "crushed tomatoes", + "garam masala", + "heavy cream", + "garlic cloves", + "ground cumin", + "tomato sauce", + "fresh ginger", + "chili powder", + "ground coriander", + "onions" + ] + }, + { + "id": 3264, + "cuisine": "italian", + "ingredients": [ + "ground pepper", + "heavy cream", + "butter", + "fettucine", + "cheese" + ] + }, + { + "id": 48545, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "green onions", + "salt", + "frozen peas", + "white onion", + "butter", + "oyster sauce", + "soy sauce", + "sesame oil", + "rice", + "pepper", + "garlic", + "carrots" + ] + }, + { + "id": 24058, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "tortilla chips", + "crushed red pepper", + "oregano", + "Kraft Miracle Whip Dressing", + "sour cream", + "milk", + "salt", + "cumin" + ] + }, + { + "id": 11451, + "cuisine": "british", + "ingredients": [ + "frozen hash browns", + "salt", + "beef gravy", + "lean ground beef", + "carrots", + "ketchup", + "refrigerated piecrusts", + "onions", + "pepper", + "garlic cloves" + ] + }, + { + "id": 24926, + "cuisine": "british", + "ingredients": [ + "butter", + "milk", + "salt", + "all purpose unbleached flour", + "active dry yeast", + "white sugar" + ] + }, + { + "id": 42258, + "cuisine": "korean", + "ingredients": [ + "eggs", + "baking powder", + "milk", + "rice flour", + "sweet red bean paste", + "salt", + "batter" + ] + }, + { + "id": 21120, + "cuisine": "japanese", + "ingredients": [ + "boneless chicken thighs", + "mirin", + "salt", + "dark soy sauce", + "water", + "bell pepper", + "cooked white rice", + "soy sauce", + "granulated sugar", + "stuffing", + "pepper", + "large eggs", + "sauce" + ] + }, + { + "id": 12323, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "olive oil", + "ginger", + "tumeric", + "sweet potatoes", + "black mustard seeds", + "red lentils", + "garam masala", + "garlic", + "white onion", + "vegetable stock", + "curry paste" + ] + }, + { + "id": 36956, + "cuisine": "indian", + "ingredients": [ + "spinach", + "potatoes", + "coconut milk", + "pepper", + "salt", + "ground cumin", + "tumeric", + "cannellini beans", + "apple puree", + "chili flakes", + "chopped tomatoes", + "carrots" + ] + }, + { + "id": 17909, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "large egg yolks", + "heavy cream", + "unflavored gelatin", + "vanilla beans", + "cherries", + "kirsch", + "sugar", + "large egg whites", + "whole milk", + "unsweetened cocoa powder", + "cold water", + "water", + "granulated sugar", + "confectioners sugar" + ] + }, + { + "id": 27529, + "cuisine": "mexican", + "ingredients": [ + "lime slices", + "chipotles in adobo", + "ground black pepper", + "salt", + "corn", + "queso fresco", + "unsalted butter", + "fresh lime juice" + ] + }, + { + "id": 21218, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "dry white wine", + "black pepper", + "sea scallops", + "carrots", + "pinenuts", + "leeks", + "flat leaf parsley", + "olive oil", + "clove garlic, fine chop" + ] + }, + { + "id": 31095, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "olive oil", + "garlic cloves", + "salmon", + "ginger", + "toasted sesame seeds", + "soy sauce", + "green onions", + "toasted sesame oil", + "honey", + "rice vinegar" + ] + }, + { + "id": 8732, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "taco shells", + "oil", + "boneless skinless chicken breasts", + "water" + ] + }, + { + "id": 26255, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "cachaca", + "strawberries", + "lemon", + "english cucumber" + ] + }, + { + "id": 7378, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "salt", + "chili flakes", + "dried apricot", + "mustard seeds", + "coriander seeds", + "lemon juice", + "sugar", + "lemon" + ] + }, + { + "id": 16632, + "cuisine": "greek", + "ingredients": [ + "plain yogurt", + "chicken breasts", + "dried dill", + "dried oregano", + "romaine lettuce", + "ground nutmeg", + "salt", + "cucumber", + "minced garlic", + "cinnamon", + "lemon juice", + "ground cloves", + "roma tomatoes", + "greek style plain yogurt", + "naan" + ] + }, + { + "id": 35766, + "cuisine": "southern_us", + "ingredients": [ + "chili", + "whipping cream", + "butter", + "red bell pepper", + "quickcooking grits", + "garlic cloves", + "chicken stock", + "yellow bell pepper", + "monterey jack" + ] + }, + { + "id": 17323, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "self-rising cornmeal", + "large eggs", + "butter", + "buttermilk" + ] + }, + { + "id": 2442, + "cuisine": "spanish", + "ingredients": [ + "Boston lettuce", + "shell-on shrimp", + "purple onion", + "lobster meat", + "sea scallops", + "navel oranges", + "chopped fresh mint", + "watermelon", + "fresh orange juice", + "fresh lime juice", + "chiles", + "peeled fresh ginger", + "salt" + ] + }, + { + "id": 4826, + "cuisine": "italian", + "ingredients": [ + "eggs", + "salt", + "grated parmesan cheese", + "bread dough", + "pepper", + "shredded mozzarella cheese", + "frozen chopped spinach", + "ricotta cheese", + "italian seasoning" + ] + }, + { + "id": 29915, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "red bell pepper", + "shiitake", + "scallions", + "boiling water", + "minced garlic", + "red pepper flakes", + "fermented black beans", + "cold water", + "extra firm tofu", + "corn starch" + ] + }, + { + "id": 15784, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "basil", + "bean soup", + "escarole", + "cooking spray" + ] + }, + { + "id": 2088, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "evaporated milk", + "softened butter", + "water", + "all-purpose flour", + "bread crumbs", + "salt", + "yeast", + "eggs", + "milk", + "oil" + ] + }, + { + "id": 11833, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "vanilla extract", + "egg whites", + "sweetened condensed milk", + "milk", + "Philadelphia Cream Cheese", + "Morton Salt", + "egg yolks" + ] + }, + { + "id": 890, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "long grain white rice", + "tomato sauce", + "lard", + "chicken broth", + "salt", + "plum tomatoes", + "chili powder", + "onions" + ] + }, + { + "id": 9154, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "cream", + "green onions", + "green pepper", + "reduced fat cheddar cheese", + "flour tortillas", + "extra-virgin olive oil", + "pinto beans", + "vegetable oil cooking spray", + "minced garlic", + "shredded lettuce", + "chopped onion", + "nonfat mayonnaise", + "jalapeno chilies", + "salsa", + "chopped cilantro fresh" + ] + }, + { + "id": 34925, + "cuisine": "moroccan", + "ingredients": [ + "capers", + "olive oil", + "salt", + "fresh lemon juice", + "black pepper", + "cooking spray", + "lemon rind", + "ground cumin", + "halibut fillets", + "paprika", + "garlic cloves", + "parsley sprigs", + "garnish", + "cilantro leaves", + "flat leaf parsley" + ] + }, + { + "id": 35919, + "cuisine": "irish", + "ingredients": [ + "sugar", + "croissants", + "milk", + "heavy cream", + "water", + "bourbon whiskey", + "large eggs" + ] + }, + { + "id": 3368, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "parmesan cheese", + "shredded mozzarella cheese", + "tomato sauce", + "part-skim ricotta cheese", + "vegetables", + "fresh parsley" + ] + }, + { + "id": 3794, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "pitas", + "black olives", + "cucumber", + "boneless, skinless chicken breast", + "butter", + "dill", + "dried oregano", + "plain yogurt", + "ground black pepper", + "salt", + "onions", + "olive oil", + "garlic", + "lemon juice" + ] + }, + { + "id": 13982, + "cuisine": "italian", + "ingredients": [ + "fresh tomatoes", + "olive oil", + "half & half", + "all-purpose flour", + "white wine", + "grated parmesan cheese", + "red pepper flakes", + "fresh parsley", + "black pepper", + "lemon zest", + "chicken cutlets", + "scallions", + "minced garlic", + "low sodium chicken broth", + "sea salt", + "spaghetti" + ] + }, + { + "id": 48595, + "cuisine": "french", + "ingredients": [ + "1% low-fat milk", + "sugar", + "cinnamon sticks", + "large egg yolks" + ] + }, + { + "id": 48700, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "ponzu", + "wasabi paste" + ] + }, + { + "id": 2744, + "cuisine": "italian", + "ingredients": [ + "pepper", + "freshly ground pepper", + "pork rib chops", + "juice", + "salt", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 8494, + "cuisine": "italian", + "ingredients": [ + "pesto sauce", + "garlic", + "boneless skinless chicken breasts", + "sun-dried tomatoes in oil", + "olive oil", + "bow-tie pasta", + "crushed red pepper flakes" + ] + }, + { + "id": 21497, + "cuisine": "french", + "ingredients": [ + "ham steak", + "unsalted butter", + "thyme", + "cauliflower", + "pepper", + "goat cheese", + "kosher salt", + "heavy cream", + "bread crumbs", + "whole milk", + "onions" + ] + }, + { + "id": 5253, + "cuisine": "cajun_creole", + "ingredients": [ + "corn kernels", + "salt", + "onions", + "green bell pepper", + "vegetable oil", + "ground cayenne pepper", + "tomato paste", + "ground black pepper", + "red bell pepper", + "water", + "garlic", + "ground beef" + ] + }, + { + "id": 26072, + "cuisine": "southern_us", + "ingredients": [ + "hot pepper sauce", + "buttermilk", + "chicken", + "garlic powder", + "vegetable oil", + "salt", + "brown sugar", + "dried sage", + "paprika", + "ground black pepper", + "crushed garlic", + "all-purpose flour" + ] + }, + { + "id": 47295, + "cuisine": "greek", + "ingredients": [ + "salt", + "diced tomatoes", + "cucumber", + "quinoa", + "feta cheese crumbles", + "purple onion", + "ripe olives" + ] + }, + { + "id": 18281, + "cuisine": "chinese", + "ingredients": [ + "baby bok choy", + "fresh ginger", + "sesame oil", + "chicken stock", + "black pepper", + "boneless skinless chicken breasts", + "ginger", + "soy sauce", + "green onions", + "wonton wrappers", + "sugar", + "white pepper", + "rice wine", + "salt" + ] + }, + { + "id": 47774, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "fresh oregano", + "fresh basil", + "extra-virgin olive oil", + "diced tomatoes", + "fresh parsley", + "kosher salt", + "garlic" + ] + }, + { + "id": 37705, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking powder", + "salt", + "tart apples", + "sugar", + "vanilla extract", + "oil", + "grated orange peel", + "butter", + "orange juice", + "whole milk", + "cake flour", + "confectioners sugar" + ] + }, + { + "id": 39332, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "Tabasco Pepper Sauce", + "salt", + "chicken", + "hot pepper sauce", + "buttermilk", + "chopped fresh sage", + "garlic powder", + "vegetable shortening", + "all-purpose flour", + "onion powder", + "paprika", + "freshly ground pepper" + ] + }, + { + "id": 17736, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "chili powder", + "ground red pepper", + "ground cumin", + "brown sugar", + "dry mustard" + ] + }, + { + "id": 47037, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "marinade", + "tomato ketchup", + "chopped garlic", + "water", + "cornflour", + "oil", + "caster sugar", + "worcestershire sauce", + "sauce", + "chicken", + "sugar", + "light soy sauce", + "salt", + "onions" + ] + }, + { + "id": 30921, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "unsalted butter", + "grated horseradish", + "eggs", + "asiago", + "flour", + "frozen corn" + ] + }, + { + "id": 36547, + "cuisine": "korean", + "ingredients": [ + "ham", + "Gochujang base", + "cucumber", + "fried eggs", + "carrots", + "rice", + "kimchi" + ] + }, + { + "id": 38645, + "cuisine": "italian", + "ingredients": [ + "bacon", + "tomato sauce", + "spaghetti", + "sweet onion", + "sliced mushrooms" + ] + }, + { + "id": 37638, + "cuisine": "italian", + "ingredients": [ + "pecans", + "ground black pepper", + "olive oil", + "fresh basil leaves", + "kosher salt", + "garlic", + "parmesan cheese" + ] + }, + { + "id": 2792, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "provolone cheese", + "cooked chicken", + "Alfredo sauce", + "olive oil", + "penne pasta" + ] + }, + { + "id": 21160, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "refried beans", + "flour", + "red pepper flakes", + "salsa", + "cumin", + "shredded cheddar cheese", + "ground black pepper", + "onion powder", + "paprika", + "sour cream", + "corn tortilla chips", + "garlic powder", + "chili powder", + "shredded lettuce", + "taco seasoning", + "water", + "flour tortillas", + "lean ground beef", + "salt", + "oregano" + ] + }, + { + "id": 18397, + "cuisine": "southern_us", + "ingredients": [ + "water", + "grits", + "unsalted butter", + "milk", + "kosher salt", + "heavy cream" + ] + }, + { + "id": 42574, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "cream of mushroom soup", + "rice", + "cream of chicken soup", + "ground beef", + "french onion soup", + "sausages" + ] + }, + { + "id": 17303, + "cuisine": "mexican", + "ingredients": [ + "pinto beans", + "water", + "lard", + "salt" + ] + }, + { + "id": 35342, + "cuisine": "italian", + "ingredients": [ + "yellow bell pepper", + "red bell pepper", + "unsalted butter", + "anchovy fillets", + "green onions", + "garlic cloves", + "celery ribs", + "extra-virgin olive oil" + ] + }, + { + "id": 43058, + "cuisine": "italian", + "ingredients": [ + "cooked rice", + "balsamic vinegar", + "pepper", + "garlic cloves", + "fresh spinach", + "salt", + "olive oil", + "red bell pepper" + ] + }, + { + "id": 16080, + "cuisine": "italian", + "ingredients": [ + "rolls", + "pasta sauce", + "oven-ready lasagna noodles", + "shredded mozzarella cheese", + "ricotta cheese", + "dried parsley" + ] + }, + { + "id": 11473, + "cuisine": "irish", + "ingredients": [ + "pinenuts", + "salt", + "black pepper", + "ground black pepper", + "goat cheese", + "fresh leav spinach", + "sesame oil", + "leg of lamb", + "fennel seeds", + "dried thyme", + "all-purpose flour" + ] + }, + { + "id": 28714, + "cuisine": "greek", + "ingredients": [ + "large eggs", + "oil", + "fresh marjoram", + "extra-virgin olive oil", + "kefalotyri", + "fresh thyme leaves", + "feta cheese crumbles", + "black pepper", + "cheese", + "phyllo pastry" + ] + }, + { + "id": 35046, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "vanilla extract", + "hazelnuts", + "whole milk", + "all-purpose flour", + "baking soda", + "baking powder", + "sour cream", + "sugar", + "large eggs", + "salt" + ] + }, + { + "id": 18708, + "cuisine": "mexican", + "ingredients": [ + "ground chipotle chile pepper", + "seeds", + "sour cream", + "avocado", + "refried beans", + "salt", + "shredded cheddar cheese", + "black olives", + "ground cumin", + "tomatoes", + "Anaheim chile", + "bacon fat" + ] + }, + { + "id": 2834, + "cuisine": "filipino", + "ingredients": [ + "milk", + "salt", + "ground cinnamon", + "unsalted butter", + "all-purpose flour", + "eggs", + "baking powder", + "white sugar", + "brown sugar", + "vanilla extract", + "fresh pineapple" + ] + }, + { + "id": 49025, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "chicken", + "jalapeno chilies", + "corn tortillas", + "salsa verde", + "sour cream", + "ground cumin", + "shredded sharp cheddar cheese", + "chopped cilantro" + ] + }, + { + "id": 2130, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "fresh ginger", + "rice vinegar", + "cucumber", + "baby spinach leaves", + "vegetable oil", + "roasted peanuts", + "toasted sesame oil", + "sugar pea", + "sesame seeds", + "creamy peanut butter", + "red bell pepper", + "honey", + "purple onion", + "carrots" + ] + }, + { + "id": 34014, + "cuisine": "southern_us", + "ingredients": [ + "piecrust", + "sweetened condensed milk", + "lime zest", + "lime slices", + "egg yolks", + "key lime juice", + "powdered sugar", + "whipping cream" + ] + }, + { + "id": 37945, + "cuisine": "russian", + "ingredients": [ + "pepper", + "garlic", + "carrots", + "celery ribs", + "potatoes", + "dill", + "onions", + "water", + "salt", + "sour cream", + "fresh dill", + "lemon", + "beets", + "cabbage" + ] + }, + { + "id": 47553, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "whole milk", + "salt", + "pure vanilla extract", + "large eggs", + "heavy cream", + "unsalted butter", + "raisins", + "corn starch", + "baguette", + "bourbon whiskey", + "ground allspice" + ] + }, + { + "id": 39909, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "ground black pepper", + "mustard powder", + "minced garlic", + "salt", + "red wine vinegar", + "dried oregano" + ] + }, + { + "id": 49586, + "cuisine": "russian", + "ingredients": [ + "horseradish", + "beets", + "cider vinegar", + "salt", + "sugar" + ] + }, + { + "id": 22998, + "cuisine": "filipino", + "ingredients": [ + "ground chicken", + "raisins", + "sharp cheddar cheese", + "pepper", + "salt", + "onions", + "sweet pickle", + "green peas", + "sausages", + "eggs", + "chorizo", + "all-purpose flour" + ] + }, + { + "id": 40691, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "Kraft Grated Parmesan Cheese", + "italian sausage", + "red pepper", + "pizza sauce", + "Velveeta", + "penne pasta" + ] + }, + { + "id": 15868, + "cuisine": "korean", + "ingredients": [ + "rice wine", + "brown sugar", + "sirloin steak", + "low sodium soy sauce", + "sesame oil", + "minced garlic", + "chili sauce" + ] + }, + { + "id": 37087, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "chili powder", + "onions", + "garlic paste", + "bell pepper", + "oil", + "red chili powder", + "garam masala", + "cilantro leaves", + "chicken", + "tomatoes", + "cream", + "salt", + "cumin" + ] + }, + { + "id": 1133, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "extra-virgin olive oil", + "fresh basil leaves", + "yellow bell pepper", + "red bell pepper", + "orange bell pepper", + "garlic", + "dried oregano" + ] + }, + { + "id": 37435, + "cuisine": "jamaican", + "ingredients": [ + "veggie patties", + "bread crumbs", + "vegetables", + "flour", + "garlic", + "margarine", + "jamaica", + "carrots", + "onions", + "shortening", + "water", + "beef", + "veggies", + "broccoli", + "Italian seasoned breadcrumbs", + "oil", + "squash", + "dough", + "pepper", + "leaves", + "ackee", + "salt", + "rolls", + "scallions", + "thyme", + "cabbage", + "cauliflower", + "black pepper", + "curry powder", + "bell pepper", + "crust", + "beef broth", + "liquid", + "Equal Sweetener", + "ground beef" + ] + }, + { + "id": 12549, + "cuisine": "thai", + "ingredients": [ + "reduced fat coconut milk", + "lime", + "Thai red curry paste", + "red chili peppers", + "basil", + "bamboo shoots", + "eggs", + "vegetable oil", + "green beans", + "lean minced beef", + "ginger", + "basmati rice" + ] + }, + { + "id": 4852, + "cuisine": "italian", + "ingredients": [ + "water", + "ground black pepper", + "organic vegetable broth", + "arborio rice", + "olive oil", + "dry white wine", + "dried oregano", + "dried basil", + "pumpkin", + "garlic cloves", + "cremini mushrooms", + "fresh parmesan cheese", + "shallots" + ] + }, + { + "id": 18968, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "onions", + "pasta sauce", + "garlic", + "italian sausage", + "cheese", + "fresh spinach", + "jumbo pasta shells" + ] + }, + { + "id": 17992, + "cuisine": "french", + "ingredients": [ + "olive oil", + "Niçoise olives", + "fresh marjoram", + "salt", + "onions", + "sugar", + "all-purpose flour", + "yeast", + "warm water", + "anchovy fillets" + ] + }, + { + "id": 47493, + "cuisine": "french", + "ingredients": [ + "all-purpose flour", + "milk", + "melted butter", + "large eggs" + ] + }, + { + "id": 30964, + "cuisine": "indian", + "ingredients": [ + "tea bags", + "yoghurt", + "oil", + "plain flour", + "pink lentil", + "salt", + "onions", + "clove", + "water", + "teas", + "cinnamon sticks", + "tomatoes", + "flour", + "chickpeas" + ] + }, + { + "id": 18996, + "cuisine": "spanish", + "ingredients": [ + "fresh tomatoes", + "fish stock", + "garlic cloves", + "dry white wine", + "canned tomatoes", + "flat leaf parsley", + "ground pepper", + "extra-virgin olive oil", + "tuna", + "green bell pepper", + "russet potatoes", + "salt", + "onions" + ] + }, + { + "id": 39740, + "cuisine": "italian", + "ingredients": [ + "baguette", + "extra-virgin olive oil" + ] + }, + { + "id": 15455, + "cuisine": "italian", + "ingredients": [ + "loaves", + "olive oil", + "sliced ham", + "sundried tomato paste", + "mozzarella cheese", + "gherkins", + "olives", + "crisps", + "artichokes", + "pickled onion", + "pizza toppings", + "pepper", + "provolone cheese" + ] + }, + { + "id": 48284, + "cuisine": "mexican", + "ingredients": [ + "whole allspice", + "pork tenderloin", + "mint sprigs", + "fresh lime juice", + "vegetable oil cooking spray", + "Anaheim chile", + "pineapple", + "fresh mint", + "black peppercorns", + "coriander seeds", + "raisins", + "cinnamon sticks", + "piloncillo", + "papaya", + "whole cloves", + "salt", + "sliced green onions" + ] + }, + { + "id": 1908, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "green chilies", + "chickpea flour", + "ginger", + "dried red chile peppers", + "mung beans", + "garlic cloves", + "curry leaves", + "salt", + "onions" + ] + }, + { + "id": 2468, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "mushrooms", + "red bell pepper", + "milk", + "butter", + "cooked ham", + "green onions", + "spaghetti", + "grated parmesan cheese", + "cream cheese" + ] + }, + { + "id": 41298, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "salt", + "olive oil", + "corn", + "fresh lime juice", + "avocado", + "diced tomatoes" + ] + }, + { + "id": 24266, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "boneless skinless chicken breasts", + "oil", + "ground black pepper", + "all-purpose flour", + "buttermilk" + ] + }, + { + "id": 46680, + "cuisine": "french", + "ingredients": [ + "large eggs", + "salt", + "pure maple syrup", + "bosc pears", + "ground cinnamon", + "half & half", + "all-purpose flour", + "golden brown sugar", + "vanilla extract" + ] + }, + { + "id": 8743, + "cuisine": "indian", + "ingredients": [ + "sugar", + "salt", + "coriander", + "tomatoes", + "coriander powder", + "oil", + "milk", + "cumin seed", + "ground turmeric", + "red chili powder", + "paneer", + "onions" + ] + }, + { + "id": 43291, + "cuisine": "spanish", + "ingredients": [ + "ground red pepper", + "blanched almonds", + "red bell pepper", + "hazelnuts", + "salt", + "hot water", + "tomato paste", + "extra-virgin olive oil", + "smoked paprika", + "bread", + "red wine vinegar", + "garlic cloves", + "ancho chile pepper" + ] + }, + { + "id": 18353, + "cuisine": "italian", + "ingredients": [ + "eggs", + "pepper", + "prosciutto", + "salt", + "white wine", + "milk", + "heavy cream", + "shredded mozzarella cheese", + "fresh spinach", + "minced garlic", + "vegetable oil", + "all-purpose flour", + "seasoned bread crumbs", + "garlic powder", + "paprika", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 34906, + "cuisine": "southern_us", + "ingredients": [ + "green beans", + "water", + "ham hock" + ] + }, + { + "id": 21266, + "cuisine": "italian", + "ingredients": [ + "white bread", + "ground black pepper", + "salt", + "low moisture mozzarella", + "large egg whites", + "pizza sauce", + "pizza doughs", + "flat leaf parsley", + "warm water", + "parmigiano reggiano cheese", + "yellow onion", + "garlic cloves", + "olive oil", + "ground veal", + "hot Italian sausages" + ] + }, + { + "id": 47778, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "tomato juice", + "butter", + "green beans", + "Louisiana Hot Sauce", + "bell pepper", + "rice", + "chicken", + "chicken broth", + "boneless chicken breast", + "smoked sausage", + "onions", + "corn", + "flour", + "okra" + ] + }, + { + "id": 534, + "cuisine": "mexican", + "ingredients": [ + "poblano chilies", + "honey", + "hot water", + "red wine vinegar", + "ancho chile pepper", + "whipping cream" + ] + }, + { + "id": 35617, + "cuisine": "french", + "ingredients": [ + "olive oil", + "red wine vinegar", + "red bell pepper", + "spinach leaves", + "zucchini", + "cayenne pepper", + "tomato paste", + "eggplant", + "portabello mushroom", + "flat leaf parsley", + "minced garlic", + "chopped fresh thyme", + "chopped onion" + ] + }, + { + "id": 24234, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "boneless skinless chicken breasts", + "purple onion", + "lemon juice", + "cheddar cheese", + "olive oil", + "red pepper", + "cayenne pepper", + "ground cumin", + "avocado", + "kosher salt", + "chili powder", + "salsa", + "sour cream", + "jack cheese", + "tortillas", + "garlic", + "green pepper" + ] + }, + { + "id": 28579, + "cuisine": "korean", + "ingredients": [ + "stock", + "green onions", + "Gochujang base", + "carrots", + "honey", + "sesame oil", + "garlic cloves", + "chicken", + "soy sauce", + "rice wine", + "green chilies", + "onions", + "Korean chile flakes", + "potatoes", + "ginger", + "oyster sauce" + ] + }, + { + "id": 41263, + "cuisine": "mexican", + "ingredients": [ + "salt", + "pepper", + "chopped cilantro", + "red wine vinegar", + "sliced green onions", + "tomatoes", + "poblano chiles" + ] + }, + { + "id": 30164, + "cuisine": "mexican", + "ingredients": [ + "frozen whole kernel corn", + "vegetable oil", + "tequila", + "sliced green onions", + "ground pepper", + "flank steak", + "garlic", + "shredded Monterey Jack cheese", + "flour tortillas", + "red pepper", + "sour cream", + "ground cumin", + "lime juice", + "jalapeno chilies", + "diced tomatoes", + "chopped cilantro fresh" + ] + }, + { + "id": 37296, + "cuisine": "mexican", + "ingredients": [ + "ice cubes", + "triple sec", + "seedless green grape", + "fresh lime juice", + "water", + "sugar", + "tequila" + ] + }, + { + "id": 2529, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "club soda", + "mint sprigs", + "lemon", + "sugar", + "ice" + ] + }, + { + "id": 31205, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "chutney", + "purple onion", + "fresh cilantro", + "rounds", + "yoghurt" + ] + }, + { + "id": 20450, + "cuisine": "korean", + "ingredients": [ + "low sodium soy sauce", + "fresh ginger", + "large garlic cloves", + "sugar", + "sesame seeds", + "kimchi", + "water", + "sesame oil", + "cooked rice", + "boneless chuck roast", + "scallions" + ] + }, + { + "id": 43395, + "cuisine": "french", + "ingredients": [ + "sugar", + "bourbon whiskey", + "confectioners sugar", + "semisweet chocolate", + "all-purpose flour", + "unsalted butter", + "salt", + "pecans", + "egg whites", + "unsweetened chocolate" + ] + }, + { + "id": 4199, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "olive oil", + "ground beef", + "kosher salt", + "garlic", + "white onion", + "ground black pepper", + "eggs", + "mozzarella cheese", + "flat leaf parsley" + ] + }, + { + "id": 36966, + "cuisine": "spanish", + "ingredients": [ + "hard shelled clams", + "zucchini", + "fresh parsley leaves", + "water", + "dry white wine", + "spaghetti", + "sausage links", + "fideos", + "onions", + "olive oil", + "garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 38676, + "cuisine": "thai", + "ingredients": [ + "five spice", + "fresh coriander", + "asparagus", + "rice noodles", + "runny honey", + "fresh red chili", + "tumeric", + "sesame seeds", + "spring onions", + "light coconut milk", + "chicken thighs", + "fish sauce", + "lime", + "butternut squash", + "ginger", + "peanut butter", + "kaffir lime leaves", + "soy sauce", + "organic chicken", + "sesame oil", + "garlic" + ] + }, + { + "id": 8831, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "red wine vinegar", + "toasted pine nuts", + "cornmeal", + "green bell pepper", + "chopped fresh chives", + "yellow bell pepper", + "soft fresh goat cheese", + "olive oil", + "wonton wrappers", + "chopped onion", + "red bell pepper", + "tomatoes", + "grated parmesan cheese", + "butter", + "fresh herbs", + "olives" + ] + }, + { + "id": 32163, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "all-purpose flour", + "dry yeast", + "cooking spray", + "warm water", + "extra-virgin olive oil" + ] + }, + { + "id": 3549, + "cuisine": "italian", + "ingredients": [ + "sausage links", + "ground black pepper", + "fresh parsley leaves", + "olive oil", + "ricotta cheese", + "kosher salt", + "marinara sauce", + "won ton wrappers", + "shredded mozzarella cheese" + ] + }, + { + "id": 1473, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "buttermilk", + "caraway seeds", + "large eggs", + "salt", + "baking soda", + "whole milk", + "all-purpose flour", + "parmigiano reggiano cheese", + "white cheddar cheese" + ] + }, + { + "id": 36686, + "cuisine": "korean", + "ingredients": [ + "carrot sticks", + "garlic", + "gochugaru", + "scallions", + "soy sauce", + "salt", + "fish sauce", + "ginger", + "cabbage" + ] + }, + { + "id": 43097, + "cuisine": "southern_us", + "ingredients": [ + "cinnamon", + "vanilla extract", + "sugar", + "buttermilk", + "sorghum syrup", + "melted butter", + "lemon", + "salt", + "self rising flour", + "apples" + ] + }, + { + "id": 28597, + "cuisine": "southern_us", + "ingredients": [ + "ground cloves", + "unsalted butter", + "all-purpose flour", + "powdered sugar", + "baking soda", + "buttermilk", + "cane syrup", + "ground cinnamon", + "kosher salt", + "large eggs", + "ground allspice", + "sugar", + "ground nutmeg", + "ginger", + "sour cream" + ] + }, + { + "id": 25296, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "tilapia fillets", + "paprika", + "chipotles in adobo", + "white onion", + "garlic powder", + "dried dill", + "canola oil", + "green cabbage", + "kosher salt", + "cayenne", + "corn tortillas", + "ground cumin", + "mayonaise", + "lime", + "greek style plain yogurt", + "dried oregano" + ] + }, + { + "id": 16426, + "cuisine": "filipino", + "ingredients": [ + "green bell pepper", + "lime juice", + "diced tomatoes", + "fresh sea bass", + "jalapeno chilies", + "gingerroot", + "pepper", + "minced onion", + "salt", + "white vinegar", + "minced garlic", + "spring onions", + "red bell pepper" + ] + }, + { + "id": 37784, + "cuisine": "italian", + "ingredients": [ + "cheese", + "thin pizza crust", + "plum tomatoes", + "cooking spray", + "salt", + "red bell pepper", + "japanese eggplants", + "chicken breasts", + "garlic cloves", + "flat leaf parsley", + "olive oil", + "purple onion", + "sliced mushrooms", + "italian seasoning" + ] + }, + { + "id": 1968, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "ground pork", + "Italian bread", + "warm water", + "parsley", + "salt", + "eggs", + "pepper", + "garlic", + "ground beef", + "romano cheese", + "ground veal", + "fresh oregano" + ] + }, + { + "id": 29591, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "sesame oil", + "cooking wine", + "corn starch", + "sugar", + "fresh ginger", + "napa cabbage", + "rice vinegar", + "soy sauce", + "chili paste", + "ground pork", + "scallions", + "water", + "wonton wrappers", + "salt", + "toasted sesame oil" + ] + }, + { + "id": 2122, + "cuisine": "thai", + "ingredients": [ + "sugar", + "shallots", + "fresh mint", + "Boston lettuce", + "lemongrass", + "oil", + "sliced green onions", + "fish sauce", + "ground chicken", + "cilantro leaves", + "fresh lime juice", + "chiles", + "chili paste", + "low salt chicken broth" + ] + }, + { + "id": 9151, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "beer", + "sour cream", + "dressing", + "diced tomatoes", + "pinto beans", + "taco seasoning mix", + "shredded cheese", + "ground beef", + "beans", + "whole kernel corn, drain", + "fritos" + ] + }, + { + "id": 47635, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "salt", + "frozen chopped spinach", + "ricotta cheese", + "boneless skinless chicken breast halves", + "pepper", + "shredded mozzarella cheese", + "eggs", + "garlic" + ] + }, + { + "id": 44541, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "grated parmesan cheese", + "garlic", + "heavy whipping cream", + "dried thyme", + "ground black pepper", + "dry white wine", + "all-purpose flour", + "onions", + "spinach", + "ground nutmeg", + "mushrooms", + "salt", + "celery", + "olive oil", + "lasagna noodles", + "tomatoes with juice", + "carrots" + ] + }, + { + "id": 26677, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "chicken breasts", + "cabbage", + "cider vinegar", + "water chestnuts", + "crushed red pepper", + "low sodium soy sauce", + "hoisin sauce", + "unsalted dry roast peanuts", + "minced garlic", + "lettuce leaves", + "dark sesame oil" + ] + }, + { + "id": 39706, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "tomatoes", + "garlic", + "avocado", + "chile pepper", + "lime juice", + "onions" + ] + }, + { + "id": 5850, + "cuisine": "british", + "ingredients": [ + "horseradish", + "large eggs", + "all-purpose flour", + "frozen peas", + "large egg whites", + "heavy cream", + "roast beef", + "milk", + "worcestershire sauce", + "garlic cloves", + "boiling potatoes", + "unsalted butter", + "salt", + "onions" + ] + }, + { + "id": 6258, + "cuisine": "russian", + "ingredients": [ + "sorrel", + "unsalted butter", + "scallions", + "onions", + "celery ribs", + "fresh dill", + "salt", + "sour cream", + "parsnips", + "hard-boiled egg", + "carrots", + "boiling potatoes", + "chicken stock", + "ground black pepper", + "dill", + "fresh parsley" + ] + }, + { + "id": 42195, + "cuisine": "russian", + "ingredients": [ + "vanilla", + "unsalted butter", + "all-purpose flour", + "poppy seeds", + "sugar", + "salt" + ] + }, + { + "id": 26327, + "cuisine": "chinese", + "ingredients": [ + "baking soda", + "oyster sauce", + "peanut oil", + "gai lan" + ] + }, + { + "id": 46792, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "green onions", + "salt", + "celery ribs", + "large eggs", + "buttermilk", + "cornmeal", + "sugar", + "baking powder", + "all-purpose flour", + "bacon drippings", + "baking soda", + "butter", + "herb seasoned stuffing mix" + ] + }, + { + "id": 21620, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "milk", + "bacon", + "collard greens", + "onion powder", + "shredded cheese", + "biscuits", + "pepper", + "butter", + "grits", + "eggs", + "olive oil", + "salt" + ] + }, + { + "id": 15846, + "cuisine": "mexican", + "ingredients": [ + "cheese", + "chopped cilantro fresh", + "barbecue sauce", + "fajita size flour tortillas", + "barbecued pork", + "sliced green onions", + "green onions", + "sour cream" + ] + }, + { + "id": 8663, + "cuisine": "korean", + "ingredients": [ + "cooking spray", + "canola oil", + "brown sugar", + "salt", + "boneless skinless chicken breasts", + "lower sodium soy sauce", + "garlic cloves" + ] + }, + { + "id": 1179, + "cuisine": "chinese", + "ingredients": [ + "water", + "crushed red pepper", + "soy sauce", + "vegetable oil", + "cooked shrimp", + "ground ginger", + "honey", + "corn starch", + "ketchup", + "garlic", + "sliced green onions" + ] + }, + { + "id": 11178, + "cuisine": "chinese", + "ingredients": [ + "fish sauce", + "large eggs", + "ground pork", + "ghee", + "ground black pepper", + "fresh shiitake mushrooms", + "toasted sesame oil", + "asparagus", + "shallots", + "chopped cilantro", + "water", + "green onions", + "coconut aminos" + ] + }, + { + "id": 43971, + "cuisine": "jamaican", + "ingredients": [ + "ground black pepper", + "ground cayenne pepper", + "ground ginger", + "ground allspice", + "basil dried leaves", + "ground cumin", + "garlic powder", + "sweet paprika" + ] + }, + { + "id": 5031, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "reduced sodium black beans", + "white vinegar", + "jalapeno chilies", + "garlic cloves", + "dried oregano", + "reduced sodium chicken broth", + "chicken breasts", + "carrots", + "ground cumin", + "pepper", + "purple onion", + "chopped cilantro" + ] + }, + { + "id": 21213, + "cuisine": "thai", + "ingredients": [ + "dark soy sauce", + "lime juice", + "mirin", + "roasted peanuts", + "serrano chile", + "lime zest", + "kosher salt", + "lemon grass", + "rice vinegar", + "chopped fresh mint", + "fish sauce", + "fresh ginger root", + "chile pepper", + "peanut oil", + "cold water", + "minced garlic", + "extra large shrimp", + "peanut butter", + "chopped cilantro fresh" + ] + }, + { + "id": 7587, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "black pepper", + "quinoa", + "green onions", + "garlic", + "sour cream", + "green bell pepper", + "water", + "jalapeno chilies", + "diced tomatoes", + "greek yogurt", + "crackers", + "red kidney beans", + "black beans", + "zucchini", + "chili powder", + "carrots", + "onions", + "celery ribs", + "tomato sauce", + "olive oil", + "chips", + "cheese", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 4477, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "queso fresco", + "yellow onion", + "olive oil", + "extra-virgin olive oil", + "roasting chickens", + "fresh cilantro", + "tomatillos", + "tortilla chips", + "jalapeno chilies", + "salt", + "garlic cloves" + ] + }, + { + "id": 21556, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "large eggs", + "low salt chicken broth", + "bread crumb fresh", + "unsalted butter", + "all-purpose flour", + "freshly grated parmesan", + "dry white wine", + "onions", + "arborio rice", + "prosciutto", + "vegetable oil" + ] + }, + { + "id": 6308, + "cuisine": "french", + "ingredients": [ + "Pernod Liqueur", + "whipping cream", + "leeks", + "fresh parsley", + "mussels", + "red bell pepper", + "dry white wine" + ] + }, + { + "id": 21999, + "cuisine": "french", + "ingredients": [ + "Belgian endive", + "shallots", + "garlic cloves", + "whole grain dijon mustard", + "extra-virgin olive oil", + "chopped cilantro fresh", + "radicchio", + "fresh tarragon", + "frisee", + "chopped fresh chives", + "white wine vinegar" + ] + }, + { + "id": 45984, + "cuisine": "thai", + "ingredients": [ + "jalapeno chilies", + "ginger", + "oil", + "tomatoes", + "butter", + "garlic", + "coconut milk", + "green cabbage", + "sweet potatoes", + "vegetable broth", + "lentils", + "tumeric", + "cilantro", + "salt", + "onions" + ] + }, + { + "id": 1859, + "cuisine": "italian", + "ingredients": [ + "jalapeno chilies", + "sugar", + "salt", + "honeydew melon", + "water", + "fresh lime juice" + ] + }, + { + "id": 35828, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "lettuce leaves", + "button mushrooms", + "garlic cloves", + "kecap manis", + "sesame oil", + "cilantro leaves", + "soy sauce", + "spring onions", + "ginger", + "cooked quinoa", + "Shaoxing wine", + "lime wedges", + "peanut oil" + ] + }, + { + "id": 1033, + "cuisine": "moroccan", + "ingredients": [ + "mint", + "dried apricot", + "lamb shoulder", + "couscous", + "ground cinnamon", + "fresh ginger", + "cilantro", + "salt", + "saffron", + "chicken stock", + "pepper", + "raisins", + "curry", + "onions", + "prunes", + "almonds", + "garlic", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 20635, + "cuisine": "irish", + "ingredients": [ + "orange", + "celery", + "cold water", + "golden delicious apples", + "cabbage", + "beef brisket", + "onions", + "pickling spices", + "margarine" + ] + }, + { + "id": 29917, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "baking soda", + "salt", + "brown sugar", + "vanilla extract", + "white sugar", + "rolled oats", + "mexican chocolate", + "eggs", + "butter", + "all-purpose flour" + ] + }, + { + "id": 7698, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "pork shoulder", + "chicken broth", + "vegetable oil", + "dried oregano", + "kosher salt", + "garlic", + "ground cumin", + "chili powder", + "onions" + ] + }, + { + "id": 9608, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "salt", + "sesame seeds", + "top sirloin", + "carrots", + "ground black pepper", + "garlic", + "white sugar", + "msg", + "sesame oil", + "yellow onion" + ] + }, + { + "id": 24920, + "cuisine": "italian", + "ingredients": [ + "water", + "baking powder", + "chopped pecans", + "large eggs", + "salt", + "semi-sweet chocolate morsels", + "baking soda", + "vegetable oil", + "sour cream", + "sugar", + "egg yolks", + "all-purpose flour", + "dried cranberries" + ] + }, + { + "id": 29973, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "crushed red pepper", + "olive oil", + "plum tomatoes", + "minced garlic", + "salt", + "bread", + "ground black pepper", + "dried oregano" + ] + }, + { + "id": 37894, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "garlic", + "tomatillos", + "chopped cilantro fresh", + "pepper", + "salt" + ] + }, + { + "id": 8841, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "minced ginger", + "marinade", + "broccoli", + "corn starch", + "brown sugar", + "kosher salt", + "broccoli florets", + "crushed red pepper flakes", + "round steaks", + "chinese rice wine", + "water", + "rice wine", + "garlic", + "peanut oil", + "soy sauce", + "hoisin sauce", + "sesame oil", + "sauce", + "onions" + ] + }, + { + "id": 20789, + "cuisine": "french", + "ingredients": [ + "chocolate morsels", + "almond filling", + "sliced almonds", + "croissants" + ] + }, + { + "id": 37531, + "cuisine": "southern_us", + "ingredients": [ + "mashed potatoes", + "chives", + "buttermilk", + "granulated sugar", + "onion powder", + "all-purpose flour", + "baking soda", + "baking powder", + "shredded sharp cheddar cheese", + "large eggs", + "butter", + "garlic salt" + ] + }, + { + "id": 6963, + "cuisine": "italian", + "ingredients": [ + "water", + "garlic", + "crumbled gorgonzola", + "tomatoes", + "boneless skinless chicken breasts", + "shredded mozzarella cheese", + "italian seasoning", + "olive oil", + "baked pizza crust", + "onions", + "fresh spinach", + "pizza sauce", + "sliced mushrooms" + ] + }, + { + "id": 7937, + "cuisine": "spanish", + "ingredients": [ + "smoked sweet Spanish paprika", + "anchovy fillets", + "fresh parsley", + "white wine vinegar", + "garlic cloves", + "extra-virgin olive oil", + "cumin seed", + "cherry tomatoes", + "purple onion", + "escarole" + ] + }, + { + "id": 47293, + "cuisine": "italian", + "ingredients": [ + "eggs", + "semisweet chocolate", + "all-purpose flour", + "sugar", + "baking powder", + "vegetable oil cooking spray", + "egg whites", + "water", + "vanilla extract" + ] + }, + { + "id": 30229, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "black olives", + "flour tortillas", + "sour cream", + "chopped tomatoes", + "chopped onion", + "chicken meat" + ] + }, + { + "id": 38733, + "cuisine": "italian", + "ingredients": [ + "eau de vie", + "prosecco", + "plums", + "water", + "sugar" + ] + }, + { + "id": 6336, + "cuisine": "italian", + "ingredients": [ + "eggs", + "cheese", + "vegetable oil cooking spray", + "prego traditional italian sauce", + "shredded mozzarella cheese", + "boneless skinless chicken breasts" + ] + }, + { + "id": 15298, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "zucchini", + "bacon", + "carrots", + "red kidney beans", + "olive oil", + "shredded cabbage", + "elbow macaroni", + "italian seasoning", + "tomatoes", + "grated parmesan cheese", + "garlic", + "celery", + "frozen chopped spinach", + "water", + "leeks", + "salt", + "fresh parsley" + ] + }, + { + "id": 6622, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic", + "flat leaf parsley", + "celery ribs", + "fresh thyme", + "yellow onion", + "plum tomatoes", + "olive oil", + "all-purpose flour", + "bay leaf", + "black pepper", + "dry red wine", + "carrots", + "chicken" + ] + }, + { + "id": 48206, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "ground black pepper", + "chili powder", + "tequila", + "lime juice", + "bell pepper", + "large garlic cloves", + "chopped cilantro fresh", + "kosher salt", + "flour tortillas", + "vegetable oil", + "sour cream", + "sweet onion", + "flank steak", + "salsa" + ] + }, + { + "id": 44674, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "salt", + "yoghurt", + "cumin", + "cayenne", + "cucumber", + "paprika" + ] + }, + { + "id": 48869, + "cuisine": "italian", + "ingredients": [ + "great northern beans", + "vegetable broth", + "bay leaf", + "olive oil", + "carrots", + "kale", + "garlic cloves", + "onions", + "tomatoes", + "butternut squash", + "thyme sprigs" + ] + }, + { + "id": 46083, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "water", + "heavy cream", + "garlic cloves", + "pork shoulder", + "saffron", + "tomatoes", + "crimini mushrooms", + "cumin seed", + "chopped cilantro", + "basmati rice", + "tomato paste", + "bay leaves", + "cardamom pods", + "cinnamon sticks", + "onions", + "clove", + "garam masala", + "ginger", + "greek yogurt", + "ghee", + "low-fat milk" + ] + }, + { + "id": 30576, + "cuisine": "thai", + "ingredients": [ + "radishes", + "Thai fish sauce", + "sesame oil", + "roast beef", + "green onions", + "grate lime peel", + "romaine lettuce", + "vegetable oil", + "fresh lime juice" + ] + }, + { + "id": 36309, + "cuisine": "indian", + "ingredients": [ + "coconut", + "oil", + "plain flour", + "poppy seeds", + "ghee", + "milk", + "ground cardamom", + "powdered sugar", + "khoa" + ] + }, + { + "id": 36052, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "rice vinegar", + "soy sauce", + "teriyaki sauce", + "garlic chili sauce", + "chicken wings", + "sesame oil", + "non stick spray", + "honey", + "garlic", + "sliced green onions" + ] + }, + { + "id": 22092, + "cuisine": "mexican", + "ingredients": [ + "fresh rosemary", + "beef stock", + "beef tenderloin steaks", + "chili", + "dry red wine", + "water", + "butter", + "plum tomatoes", + "chicken stock", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 12182, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "cumin seed", + "serrano chile", + "kosher salt", + "baby spinach", + "split peas", + "tumeric", + "unsalted butter", + "garlic cloves", + "water", + "rice", + "lemon juice" + ] + }, + { + "id": 16802, + "cuisine": "italian", + "ingredients": [ + "vanilla ice cream", + "plums", + "unsalted butter", + "rum", + "sugar", + "toast" + ] + }, + { + "id": 2505, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "chopped green bell pepper", + "cilantro sprigs", + "corn starch", + "tomatoes", + "boneless chicken thighs", + "chili powder", + "chopped onion", + "ground cumin", + "cooked rice", + "water", + "vegetable oil", + "garlic cloves", + "sugar", + "chicken breast halves", + "salt", + "unsweetened cocoa powder" + ] + }, + { + "id": 18508, + "cuisine": "thai", + "ingredients": [ + "lime", + "red pepper", + "fish sauce", + "zucchini", + "carrots", + "thai basil", + "cilantro", + "soy sauce", + "vegetable oil", + "fresh mint" + ] + }, + { + "id": 28202, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "salt", + "dried pinto beans", + "chicken broth", + "ham hock" + ] + }, + { + "id": 45227, + "cuisine": "italian", + "ingredients": [ + "radishes", + "beets", + "pepper", + "salt", + "crostini", + "extra-virgin olive oil", + "frozen peas", + "watermelon", + "goat cheese" + ] + }, + { + "id": 16872, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "bay leaves", + "chipotles in adobo", + "chicken broth", + "lime juice", + "garlic", + "ground cumin", + "white onion", + "apple cider vinegar", + "dried oregano", + "ground cloves", + "chuck roast", + "salt" + ] + }, + { + "id": 19229, + "cuisine": "japanese", + "ingredients": [ + "dark soy sauce", + "honey", + "boneless chicken thighs", + "mirin", + "sake", + "Japanese soy sauce", + "water", + "dark brown sugar" + ] + }, + { + "id": 44307, + "cuisine": "french", + "ingredients": [ + "cherry tomatoes", + "red wine vinegar", + "purple onion", + "flat leaf parsley", + "capers", + "ground black pepper", + "kalamata", + "garlic cloves", + "salmon fillets", + "dijon mustard", + "anchovy paste", + "green beans", + "olive oil", + "shell pasta", + "salt" + ] + }, + { + "id": 29783, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "pepper jack", + "salsa", + "cumin", + "milk", + "cilantro", + "sour cream", + "pepper", + "chili powder", + "rolls", + "avocado", + "garlic powder", + "salt", + "coriander" + ] + }, + { + "id": 178, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "vegetable bouillon", + "garlic", + "cumin", + "red lentils", + "water", + "paprika", + "ground coriander", + "black pepper", + "Himalayan salt", + "purple onion", + "coconut oil", + "lime", + "ginger", + "coconut milk" + ] + }, + { + "id": 6354, + "cuisine": "italian", + "ingredients": [ + "breadstick", + "italian seasoning", + "grated parmesan cheese", + "part-skim mozzarella cheese", + "pizza sauce" + ] + }, + { + "id": 32332, + "cuisine": "southern_us", + "ingredients": [ + "spinach", + "cane vinegar", + "garlic cloves", + "ground black pepper", + "paprika", + "chicken thighs", + "chicken stock", + "unsalted butter", + "navel oranges", + "pearl onions", + "sea salt", + "fresh mint" + ] + }, + { + "id": 27598, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "vanilla extract", + "sweet potatoes", + "white sugar", + "cream", + "butter", + "egg yolks", + "pie shell" + ] + }, + { + "id": 9502, + "cuisine": "japanese", + "ingredients": [ + "olive oil", + "togarashi", + "sea salt", + "green onions", + "nori", + "frozen shelled edamame", + "rice vinegar" + ] + }, + { + "id": 11255, + "cuisine": "jamaican", + "ingredients": [ + "dark soy sauce", + "onion powder", + "yellow onion", + "thyme", + "celery salt", + "fresh ginger", + "paprika", + "scallions", + "allspice", + "black pepper", + "vegetable oil", + "sauce", + "garlic salt", + "stew", + "coriander powder", + "salt", + "garlic cloves" + ] + }, + { + "id": 43336, + "cuisine": "italian", + "ingredients": [ + "prunes", + "olive oil", + "garlic", + "chicken", + "capers", + "coarse salt", + "flat leaf parsley", + "green olives", + "bay leaves", + "freshly ground pepper", + "light brown sugar", + "white wine", + "red wine vinegar", + "dried oregano" + ] + }, + { + "id": 438, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "large eggs", + "salt", + "tomatoes", + "pepper", + "butter", + "shredded mozzarella cheese", + "seasoned bread crumbs", + "grated parmesan cheese", + "all-purpose flour", + "fresh basil", + "olive oil", + "linguine", + "center cut pork chops" + ] + }, + { + "id": 13864, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "chopped cilantro fresh", + "fresh ginger root", + "dried shiitake mushrooms", + "long grain white rice", + "green onions", + "sausages", + "chicken", + "dark soy sauce", + "salt", + "boiling water" + ] + }, + { + "id": 23500, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "paprika", + "dried thyme", + "onion powder", + "ground cumin", + "dried basil", + "ground red pepper", + "dried oregano", + "garlic powder", + "old bay seasoning" + ] + }, + { + "id": 24838, + "cuisine": "chinese", + "ingredients": [ + "honey", + "all-purpose flour", + "boneless skinless chicken breast halves", + "green bell pepper", + "crushed red pepper flakes", + "chinese five-spice powder", + "vegetable oil", + "yellow onion", + "black pepper", + "teriyaki sauce", + "toasted sesame seeds" + ] + }, + { + "id": 43357, + "cuisine": "southern_us", + "ingredients": [ + "watermelon", + "sugar", + "fresh lemon juice", + "ice cubes", + "lemon wedge", + "water" + ] + }, + { + "id": 37580, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "salt", + "milk", + "fusilli", + "ground black pepper", + "butter", + "fontina", + "egg yolks" + ] + }, + { + "id": 21425, + "cuisine": "korean", + "ingredients": [ + "ketchup", + "sesame oil", + "rice vinegar", + "brown sugar", + "honey", + "garlic", + "canola oil", + "chicken wings", + "water", + "thai chile", + "corn starch", + "soy sauce", + "sesame seeds", + "salt" + ] + }, + { + "id": 38539, + "cuisine": "italian", + "ingredients": [ + "American cheese", + "unsalted butter", + "canned tomatoes", + "pepperoni", + "evaporated milk", + "vegetable oil", + "soppressata", + "corn starch", + "eggs", + "sliced black olives", + "extra-virgin olive oil", + "hot Italian sausages", + "fresh basil leaves", + "mozzarella cheese", + "grated parmesan cheese", + "pepperoncini", + "elbow macaroni" + ] + }, + { + "id": 21465, + "cuisine": "korean", + "ingredients": [ + "salt", + "water", + "long grain white rice", + "dates", + "pinenuts", + "white sugar" + ] + }, + { + "id": 669, + "cuisine": "italian", + "ingredients": [ + "eggs", + "water", + "pastina", + "chicken", + "celery ribs", + "romano cheese", + "leeks", + "carrots", + "parsley sprigs", + "egg whites", + "salt", + "clove", + "pepper", + "large garlic cloves", + "bay leaf" + ] + }, + { + "id": 4949, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "low sodium chicken broth", + "cumin seed", + "corn starch", + "canola oil", + "phyllo dough", + "kosher salt", + "boneless skinless chicken breasts", + "diced celery", + "frozen peas", + "parsnips", + "jalapeno chilies", + "ginger", + "carrots", + "Madras curry powder", + "lite coconut milk", + "cooking spray", + "garlic cloves", + "onions" + ] + }, + { + "id": 33924, + "cuisine": "cajun_creole", + "ingredients": [ + "cabbage lettuce", + "Hellmann's® Real Mayonnaise", + "horseradish sauce", + "ketchup", + "paprika", + "creole seasoning", + "spinach", + "butter", + "hoagie rolls", + "large shrimp", + "garlic powder", + "garlic", + "lemon juice" + ] + }, + { + "id": 30131, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "chopped fresh thyme", + "fresh oregano", + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "eggplant", + "cracked black pepper", + "flat leaf parsley", + "baguette", + "sea salt", + "garlic cloves" + ] + }, + { + "id": 48124, + "cuisine": "french", + "ingredients": [ + "pepper", + "port", + "chopped onion", + "saltines", + "fresh thyme leaves", + "margarine", + "pistachios", + "non-fat sour cream", + "ground allspice", + "meat", + "salt", + "duck liver" + ] + }, + { + "id": 2219, + "cuisine": "indian", + "ingredients": [ + "mint sprigs", + "sugar", + "fresh mint", + "gingerroot", + "water", + "mango" + ] + }, + { + "id": 12705, + "cuisine": "mexican", + "ingredients": [ + "great northern beans", + "green chilies", + "pork picnic roast", + "onions", + "worcestershire sauce", + "garlic pepper seasoning", + "chicken broth", + "salsa" + ] + }, + { + "id": 206, + "cuisine": "japanese", + "ingredients": [ + "water", + "butter", + "white flour", + "egg yolks", + "yeast", + "sugar", + "powdered milk", + "salt", + "eggs", + "egg whites", + "lemon" + ] + }, + { + "id": 44072, + "cuisine": "italian", + "ingredients": [ + "lower sodium chicken broth", + "Italian parsley leaves", + "chopped walnuts", + "olive oil", + "salt", + "onions", + "large garlic cloves", + "anchovy fillets", + "spaghetti", + "black pepper", + "crushed red pepper", + "red bell pepper" + ] + }, + { + "id": 30666, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "coarse salt", + "corn starch", + "large egg whites", + "brown rice", + "scallions", + "honey", + "vegetable oil", + "garlic cloves", + "soy sauce", + "ground pepper", + "broccoli", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 22553, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "ricotta", + "fresh rosemary", + "grated parmesan cheese", + "fresh basil leaves", + "sage leaves", + "large eggs", + "onions", + "kosher salt", + "extra-virgin olive oil" + ] + }, + { + "id": 39990, + "cuisine": "jamaican", + "ingredients": [ + "cold water", + "chiles", + "ground black pepper", + "scotch bonnet chile", + "scallions", + "canned low sodium chicken broth", + "water", + "large eggs", + "all-purpose flour", + "ground beef", + "scallion greens", + "bread crumb fresh", + "unsalted butter", + "salt", + "lard", + "tumeric", + "curry powder", + "chopped fresh thyme", + "ground allspice", + "onions" + ] + }, + { + "id": 44606, + "cuisine": "mexican", + "ingredients": [ + "chopped green chilies", + "boneless pork loin", + "onions", + "water", + "garlic", + "adobo sauce", + "ground cumin", + "chicken broth", + "white hominy", + "chipotle peppers", + "dried oregano", + "ground black pepper", + "bay leaf", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 25389, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "salt", + "chickpea flour", + "chili powder", + "cooking spray", + "cilantro leaves", + "water", + "finger chili" + ] + }, + { + "id": 19169, + "cuisine": "korean", + "ingredients": [ + "eggs", + "green onions", + "carrots", + "water", + "seafood", + "kosher salt", + "all-purpose flour", + "chinese chives", + "zucchini", + "rice flour" + ] + }, + { + "id": 11878, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "fresh orange juice", + "grated orange", + "ground ginger", + "butter", + "fresh lemon juice", + "light brown sugar", + "sweet potatoes", + "grated nutmeg", + "black pepper", + "salt" + ] + }, + { + "id": 10962, + "cuisine": "italian", + "ingredients": [ + "sugar", + "olive oil", + "heavy cream", + "chopped parsley", + "kosher salt", + "prosciutto", + "penne pasta", + "vodka", + "parmesan cheese", + "diced tomatoes", + "tomato paste", + "sweet onion", + "red pepper flakes", + "garlic cloves" + ] + }, + { + "id": 40206, + "cuisine": "moroccan", + "ingredients": [ + "fresh rosemary", + "fresh lemon juice", + "sea salt", + "lemon", + "crushed red pepper" + ] + }, + { + "id": 36067, + "cuisine": "japanese", + "ingredients": [ + "salt", + "sweet onion", + "toasted sesame seeds", + "fresh dill", + "rice vinegar", + "japanese cucumber" + ] + }, + { + "id": 45792, + "cuisine": "japanese", + "ingredients": [ + "mushrooms", + "celery", + "soy sauce", + "round steaks", + "fresh spinach", + "butter", + "onions", + "beef stock", + "peanut oil" + ] + }, + { + "id": 19746, + "cuisine": "italian", + "ingredients": [ + "fresh mozzarella", + "flat leaf parsley", + "ground black pepper", + "wine vinegar", + "olive oil", + "garlic", + "zucchini", + "salt" + ] + }, + { + "id": 18990, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "light coconut milk", + "cumin", + "fresh leav spinach", + "coarse salt", + "garlic cloves", + "fresh tomatoes", + "garam masala", + "yellow onion", + "water", + "ginger", + "paneer cheese" + ] + }, + { + "id": 38165, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "extra-virgin olive oil", + "parsley sprigs", + "red wine vinegar", + "garlic cloves", + "white vinegar", + "large eggs", + "cumin seed", + "baguette", + "sea salt", + "white mushrooms" + ] + }, + { + "id": 35103, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "nonfat milk", + "onions", + "dried basil", + "chopped celery", + "rubbed sage", + "italian sausage", + "french bread", + "garlic cloves", + "dried rosemary", + "swiss chard", + "salt", + "chopped parsley" + ] + }, + { + "id": 34099, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "whole milk", + "granulated sugar", + "water", + "hass avocado" + ] + }, + { + "id": 44769, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "crushed red pepper flakes", + "knorr homestyl stock beef", + "sesame oil", + "boneless sirloin steak", + "firmly packed brown sugar", + "broccoli florets", + "corn starch", + "water", + "vegetable oil" + ] + }, + { + "id": 15353, + "cuisine": "british", + "ingredients": [ + "sugar", + "whole milk", + "salt", + "rhubarb", + "large egg whites", + "heavy cream", + "vanilla custard", + "unsalted shelled pistachio", + "large egg yolks", + "vanilla extract", + "fino sherry", + "syrup", + "almond extract", + "all-purpose flour" + ] + }, + { + "id": 20205, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "green onions", + "fresh lime juice", + "brown sugar", + "lower sodium soy sauce", + "garlic cloves", + "spinach", + "chile paste", + "dark sesame oil", + "canola oil", + "cremini mushrooms", + "large eggs", + "Chinese egg noodles" + ] + }, + { + "id": 18492, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "garlic", + "black mustard seeds", + "canola oil", + "curry leaves", + "ginger", + "fenugreek seeds", + "frozen peas", + "yukon gold potatoes", + "yellow onion", + "chopped cilantro", + "asafoetida", + "thai chile", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 23647, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "Italian parsley leaves", + "hot water", + "parmigiano-reggiano cheese", + "cooking spray", + "salt", + "parsley sprigs", + "ricotta cheese", + "fresh lemon juice", + "zucchini", + "loosely packed fresh basil leaves" + ] + }, + { + "id": 3814, + "cuisine": "russian", + "ingredients": [ + "sugar", + "salt", + "melted butter", + "instant yeast", + "milk", + "all-purpose flour", + "eggs", + "vegetable oil" + ] + }, + { + "id": 12094, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "parmesan cheese", + "heavy cream", + "noodles", + "large egg yolks", + "whole milk", + "corn starch", + "pepper", + "grated parmesan cheese", + "salt", + "garlic powder", + "onion powder", + "fresh parsley" + ] + }, + { + "id": 2932, + "cuisine": "japanese", + "ingredients": [ + "reduced sodium vegetable broth", + "lemon zest", + "soba noodles", + "radishes", + "nigari tofu", + "toasted sesame oil", + "reduced sodium soy sauce", + "green onions", + "lemon juice", + "wasabi paste", + "mirin", + "vegetable oil", + "shiitake mushroom caps" + ] + }, + { + "id": 18554, + "cuisine": "italian", + "ingredients": [ + "sugar", + "salt", + "ice water", + "apricots", + "unsalted butter", + "all-purpose flour", + "cherries", + "apricot preserves" + ] + }, + { + "id": 27571, + "cuisine": "chinese", + "ingredients": [ + "tofu", + "soy sauce", + "rice wine", + "salt", + "scallions", + "snow peas", + "chiles", + "egg noodles", + "yellow bell pepper", + "firm tofu", + "chopped cilantro", + "sugar", + "hoisin sauce", + "tamari soy sauce", + "peanut oil", + "onions", + "stock", + "shiitake", + "ginger", + "broccoli", + "carrots", + "chopped garlic" + ] + }, + { + "id": 4483, + "cuisine": "jamaican", + "ingredients": [ + "tomato paste", + "boneless chicken breast halves", + "cayenne pepper", + "light molasses", + "red wine vinegar", + "plantains", + "olive oil", + "chopped fresh thyme", + "ground allspice", + "finely chopped onion", + "large garlic cloves" + ] + }, + { + "id": 33382, + "cuisine": "italian", + "ingredients": [ + "romaine lettuce", + "dijon mustard", + "anchovy paste", + "olive oil", + "red wine vinegar", + "red bell pepper", + "black pepper", + "rye bread", + "garlic", + "fresh parmesan cheese", + "yellow bell pepper", + "fat-free mayonnaise" + ] + }, + { + "id": 34549, + "cuisine": "british", + "ingredients": [ + "mincemeat", + "pie crust", + "large egg yolks" + ] + }, + { + "id": 19238, + "cuisine": "mexican", + "ingredients": [ + "water", + "vegetable oil", + "shredded Monterey Jack cheese", + "flour tortillas", + "chopped cilantro fresh", + "refried beans", + "taco seasoning", + "green onions", + "chicken" + ] + }, + { + "id": 44468, + "cuisine": "mexican", + "ingredients": [ + "lean ground turkey", + "garlic powder", + "paprika", + "cumin", + "water", + "lettuce leaves", + "onions", + "tomato sauce", + "bell pepper", + "salt", + "shredded reduced fat cheddar cheese", + "chili powder", + "oregano" + ] + }, + { + "id": 27476, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "garlic", + "kosher salt", + "heavy cream", + "rigatoni", + "sugar", + "red pepper flakes", + "dried oregano", + "olive oil", + "diced tomatoes" + ] + }, + { + "id": 9231, + "cuisine": "spanish", + "ingredients": [ + "jalapeno chilies", + "orange juice", + "onions", + "watermelon", + "extra-virgin olive oil", + "fresh lime juice", + "seedless cucumber", + "yellow bell pepper", + "garlic cloves", + "ground black pepper", + "salt", + "fresh parsley" + ] + }, + { + "id": 14594, + "cuisine": "greek", + "ingredients": [ + "cream cheese", + "roast red peppers, drain", + "hot pepper sauce", + "feta cheese crumbles", + "olive oil", + "lemon juice", + "half & half", + "ground white pepper" + ] + }, + { + "id": 12799, + "cuisine": "southern_us", + "ingredients": [ + "reduced fat whipped topping", + "poppy seeds", + "sugar", + "cookies", + "kiwi", + "clementines", + "orange marmalade", + "cream cheese, soften", + "lemon zest", + "vanilla extract" + ] + }, + { + "id": 49523, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "enchilada sauce", + "beans", + "chili powder", + "greek yogurt", + "chiles", + "chicken breasts", + "Mexican cheese", + "bouillon cube", + "red pepper", + "cumin" + ] + }, + { + "id": 15543, + "cuisine": "greek", + "ingredients": [ + "bread crumbs", + "feta cheese", + "garlic", + "elbow macaroni", + "capers", + "olive oil", + "havarti cheese", + "grated nutmeg", + "milk", + "flour", + "salt", + "onions", + "spinach", + "sun-dried tomatoes", + "kalamata", + "freshly ground pepper" + ] + }, + { + "id": 5005, + "cuisine": "greek", + "ingredients": [ + "dill", + "cucumber", + "lemon juice", + "cream cheese", + "clove", + "feta cheese crumbles" + ] + }, + { + "id": 31350, + "cuisine": "korean", + "ingredients": [ + "seasoned rice wine vinegar", + "tamari soy sauce", + "coleslaw", + "salt" + ] + }, + { + "id": 1371, + "cuisine": "japanese", + "ingredients": [ + "frozen orange juice concentrate", + "sesame oil", + "peeled fresh ginger", + "low salt chicken broth", + "yellow miso", + "rice vinegar", + "shallots", + "chopped cilantro fresh" + ] + }, + { + "id": 42844, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "penne pasta", + "arugula", + "kosher salt", + "cannellini beans", + "garlic cloves", + "ground black pepper", + "shelled pistachios", + "peeled tomatoes", + "pecorino romano cheese", + "fresh basil leaves" + ] + }, + { + "id": 24140, + "cuisine": "italian", + "ingredients": [ + "Bertolli® Classico Olive Oil", + "sliced mushrooms", + "rigatoni or large tube pasta", + "bertolli vineyard premium collect marinara with burgundi wine sauc", + "whipping heavy cream", + "ground beef", + "yellow onion" + ] + }, + { + "id": 15146, + "cuisine": "cajun_creole", + "ingredients": [ + "creole seasoning", + "french bread", + "salt", + "unsalted butter" + ] + }, + { + "id": 39347, + "cuisine": "italian", + "ingredients": [ + "eggs", + "white sugar", + "ricotta cheese", + "yellow cake mix", + "vanilla extract" + ] + }, + { + "id": 43934, + "cuisine": "thai", + "ingredients": [ + "vegetable oil cooking spray", + "vegetable oil", + "gingerroot", + "green chile", + "lemon grass", + "large garlic cloves", + "medium shrimp", + "fresh basil", + "water", + "chili oil", + "fresh lime juice", + "fish sauce", + "shallots", + "fresh mushrooms" + ] + }, + { + "id": 46010, + "cuisine": "jamaican", + "ingredients": [ + "eggs", + "lime wedges", + "ground allspice", + "dried thyme", + "dry bread crumbs", + "red snapper", + "bananas", + "cayenne pepper", + "kosher salt", + "vegetable oil", + "five-spice powder" + ] + }, + { + "id": 47972, + "cuisine": "greek", + "ingredients": [ + "water", + "orange zest", + "herbs", + "fresh orange juice", + "honey" + ] + }, + { + "id": 14472, + "cuisine": "japanese", + "ingredients": [ + "dried bonito flakes", + "olive oil", + "soy sauce", + "japanese eggplants", + "lemon juice" + ] + }, + { + "id": 23015, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "Thai fish sauce", + "chicken stock", + "root vegetables", + "galangal", + "prawns", + "lime leaves", + "lime juice", + "green chilies" + ] + }, + { + "id": 38867, + "cuisine": "chinese", + "ingredients": [ + "ground black pepper", + "rice vinegar", + "jumbo shrimp", + "peeled fresh ginger", + "beansprouts", + "egg roll wrappers", + "peanut oil", + "sweet chili sauce", + "less sodium soy sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 8067, + "cuisine": "indian", + "ingredients": [ + "salt", + "mung bean sprouts", + "buckwheat flour", + "water", + "onions" + ] + }, + { + "id": 4756, + "cuisine": "southern_us", + "ingredients": [ + "lump crab meat", + "medium dry sherry", + "cayenne", + "salt", + "sweet onion", + "chopped celery", + "saltines", + "unsalted butter", + "fresh lemon juice" + ] + }, + { + "id": 7988, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "eggs", + "onions", + "butter", + "green bell pepper" + ] + }, + { + "id": 34956, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "lean ground beef", + "green bell pepper", + "corn chips", + "ground cumin", + "green chile", + "processed cheese", + "iceberg lettuce", + "tomatoes", + "garlic powder", + "onions" + ] + }, + { + "id": 30318, + "cuisine": "filipino", + "ingredients": [ + "base", + "pepper", + "oil", + "chicken wings", + "salt", + "garlic powder" + ] + }, + { + "id": 7490, + "cuisine": "thai", + "ingredients": [ + "salt", + "chili flakes", + "garlic cloves", + "white vinegar", + "maple syrup", + "water", + "corn starch" + ] + }, + { + "id": 12513, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "lard", + "salt", + "baking powder", + "white sugar", + "biscuits", + "all-purpose flour" + ] + }, + { + "id": 49306, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "fresh orange juice", + "guajillo", + "tomatillos", + "chile de arbol", + "large garlic cloves" + ] + }, + { + "id": 37092, + "cuisine": "irish", + "ingredients": [ + "Guinness Beer", + "worcestershire sauce", + "garlic cloves", + "black pepper", + "pastry dough", + "all-purpose flour", + "onions", + "tomato paste", + "large eggs", + "salt", + "thyme sprigs", + "water", + "vegetable oil", + "beef broth", + "chuck" + ] + }, + { + "id": 31416, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "levain bread", + "olive oil", + "fresh basil leaves", + "pesto", + "roasting chickens", + "roasted red peppers" + ] + }, + { + "id": 7920, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "fresh basil leaves", + "whole wheat pasta", + "fresh mozzarella", + "grated parmesan cheese", + "grape tomatoes", + "heavy cream" + ] + }, + { + "id": 7136, + "cuisine": "italian", + "ingredients": [ + "garlic and herb seasoning", + "diced tomatoes", + "sliced black olives", + "boneless skinless chicken breast halves", + "olive oil", + "sliced mushrooms", + "angel hair", + "grated parmesan cheese" + ] + }, + { + "id": 34339, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "wonton wrappers", + "egg whites", + "dried oregano" + ] + }, + { + "id": 1993, + "cuisine": "italian", + "ingredients": [ + "dry red wine", + "beef broth", + "veal shanks", + "lemon", + "canned tomatoes", + "freshly ground pepper", + "flat leaf parsley", + "celery ribs", + "extra-virgin olive oil", + "yellow onion", + "carrots", + "sea salt", + "all-purpose flour", + "garlic cloves" + ] + }, + { + "id": 48984, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic", + "jalapeno chilies", + "salt", + "pepper", + "purple onion", + "cilantro" + ] + }, + { + "id": 18207, + "cuisine": "chinese", + "ingredients": [ + "vinegar", + "butter", + "corn flour", + "soy sauce", + "mixed vegetables", + "cilantro leaves", + "garlic paste", + "spring onions", + "salt", + "onions", + "black pepper", + "vegetable stock", + "chili sauce" + ] + }, + { + "id": 25540, + "cuisine": "southern_us", + "ingredients": [ + "cocoa", + "vanilla", + "eggs", + "flour", + "mint extract", + "milk", + "marshmallow creme", + "sugar", + "butter" + ] + }, + { + "id": 22421, + "cuisine": "irish", + "ingredients": [ + "light brown sugar", + "granulated sugar", + "vanilla lowfat yogurt", + "strawberries" + ] + }, + { + "id": 1830, + "cuisine": "greek", + "ingredients": [ + "capers", + "eggplant", + "salt", + "fresh lemon juice", + "tomatoes", + "water", + "extra-virgin olive oil", + "garlic cloves", + "black pepper", + "balsamic vinegar", + "yellow split peas", + "onions", + "fresh basil", + "honey", + "purple onion", + "California bay leaves" + ] + }, + { + "id": 10937, + "cuisine": "russian", + "ingredients": [ + "olive oil", + "salt", + "plain flour", + "parsley", + "onions", + "potatoes", + "sour cream", + "eggs", + "butter", + "smoked rashers" + ] + }, + { + "id": 9483, + "cuisine": "thai", + "ingredients": [ + "scallops", + "squid", + "onions", + "fresh red chili", + "coconut", + "garlic chili sauce", + "water", + "oil", + "fish sauce", + "coconut cream", + "shrimp" + ] + }, + { + "id": 35272, + "cuisine": "mexican", + "ingredients": [ + "cooked rice", + "fresh cilantro", + "red wine vinegar", + "frozen corn", + "black pepper", + "green onions", + "extra-virgin olive oil", + "ground cumin", + "sugar", + "kidney beans", + "red pepper", + "garlic cloves", + "black beans", + "chili powder", + "salt" + ] + }, + { + "id": 1165, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "beets", + "water", + "large garlic cloves", + "greens", + "unsalted butter", + "gingerroot", + "arborio rice", + "dry white wine", + "onions" + ] + }, + { + "id": 16499, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "peanuts", + "red pepper flakes", + "boneless, skinless chicken breast", + "sherry", + "scallions", + "soy sauce", + "cooking oil", + "white wine vinegar", + "water", + "sesame oil", + "corn starch" + ] + }, + { + "id": 11745, + "cuisine": "italian", + "ingredients": [ + "part-skim ricotta cheese", + "cannoli shells", + "mini chocolate chips", + "confectioners sugar", + "vanilla extract" + ] + }, + { + "id": 21431, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "boneless skinless chicken breast halves", + "green chilies", + "cayenne pepper", + "corn tortilla chips", + "Mexican cheese" + ] + }, + { + "id": 27814, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken skinless thigh", + "jalapeno chilies", + "salt", + "chopped cilantro fresh", + "white hominy", + "epazote", + "green pumpkin seeds", + "water", + "tomatillos", + "California bay leaves", + "white onion", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 37913, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "ground pork", + "garlic cloves", + "ground black pepper", + "crushed red pepper", + "fresh parsley", + "dried thyme", + "dry red wine", + "ground turkey", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 40153, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "olive oil", + "fresh brussels sprouts", + "dry red wine", + "dried chestnuts", + "unsalted butter", + "pancetta", + "water", + "dry bread crumbs" + ] + }, + { + "id": 46143, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "vanilla", + "eggs", + "butter", + "gluten-free flour", + "yellow corn meal", + "baking powder", + "salt", + "sugar", + "buttermilk" + ] + }, + { + "id": 48158, + "cuisine": "indian", + "ingredients": [ + "coconut", + "mango chutney", + "ground coriander", + "fresh ginger root", + "sunflower oil", + "onions", + "chopped tomatoes", + "lemon", + "garlic cloves", + "tumeric", + "prawns", + "green chilies", + "coriander" + ] + }, + { + "id": 39045, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "light soy sauce", + "roasted peanuts", + "corn starch", + "sugar", + "garlic", + "oil", + "black vinegar", + "dark soy sauce", + "sesame oil", + "scallions", + "ginger root", + "chili pepper", + "green pepper", + "shrimp" + ] + }, + { + "id": 10945, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium beef broth", + "chopped onion", + "veal shanks", + "ground black pepper", + "all-purpose flour", + "garlic cloves", + "marsala wine", + "chopped celery", + "baby carrots", + "flat leaf parsley", + "olive oil", + "salt", + "lemon rind" + ] + }, + { + "id": 17338, + "cuisine": "spanish", + "ingredients": [ + "water", + "potatoes", + "yellow onion", + "white pepper", + "unsalted butter", + "dried salted codfish", + "milk", + "flour", + "olive oil", + "heavy cream" + ] + }, + { + "id": 19383, + "cuisine": "french", + "ingredients": [ + "white chocolate", + "whipping cream", + "ice cubes", + "bananas", + "vanilla extract", + "sugar", + "butter", + "mint", + "egg yolks", + "cranberries" + ] + }, + { + "id": 9617, + "cuisine": "spanish", + "ingredients": [ + "unflavored gelatin", + "lemon", + "warm water", + "eggs", + "milk", + "sugar", + "cinnamon sticks" + ] + }, + { + "id": 19948, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "lemon", + "garlic", + "naan", + "tomato paste", + "garam masala", + "cilantro", + "cayenne pepper", + "ground cumin", + "plain yogurt", + "paprika", + "purple onion", + "mango", + "mint", + "vegetable oil", + "ginger", + "shredded mozzarella cheese" + ] + }, + { + "id": 14403, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "salt", + "fresh basil leaves", + "catfish fillets", + "large eggs", + "all-purpose flour", + "pesto", + "vegetable oil", + "freshly ground pepper", + "herbs", + "lemon slices" + ] + }, + { + "id": 16945, + "cuisine": "greek", + "ingredients": [ + "salt", + "greek yogurt", + "garlic", + "cucumber", + "olive oil", + "lemon juice", + "mint", + "dill" + ] + }, + { + "id": 4854, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "celery salt", + "water", + "ham hock", + "collard greens", + "olive oil", + "pepper", + "hot sauce" + ] + }, + { + "id": 7109, + "cuisine": "southern_us", + "ingredients": [ + "blackberries", + "peach slices", + "mint leaves", + "Jose Cuervo" + ] + }, + { + "id": 37077, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "purple onion", + "pickle relish", + "capers", + "shallots", + "reduced fat mayonnaise", + "tomatoes", + "hot pepper sauce", + "hoagie rolls", + "romaine lettuce", + "cajun seasoning", + "large shrimp" + ] + }, + { + "id": 19547, + "cuisine": "russian", + "ingredients": [ + "chicken stock", + "milk", + "salt", + "yeast", + "sugar", + "confit", + "softened butter", + "eggs", + "flour", + "chopped walnuts", + "cumin", + "orange", + "plums", + "chopped cilantro" + ] + }, + { + "id": 41709, + "cuisine": "thai", + "ingredients": [ + "lime", + "sunflower oil", + "coriander", + "fish sauce", + "turkey breast steaks", + "garlic cloves", + "mint", + "chili powder", + "purple onion", + "red chili peppers", + "rice noodles", + "green beans" + ] + }, + { + "id": 35763, + "cuisine": "irish", + "ingredients": [ + "butter", + "corn starch", + "all-purpose flour", + "sugar" + ] + }, + { + "id": 21935, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "milk", + "cayenne", + "lemon", + "smoked paprika", + "pepper", + "panko", + "chives", + "oil", + "oregano", + "mayonaise", + "garlic powder", + "red cabbage", + "salt", + "cornmeal", + "baguette", + "ground black pepper", + "onion powder", + "shrimp", + "mango" + ] + }, + { + "id": 854, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "grated parmesan cheese", + "salt", + "ground black pepper", + "whole milk ricotta cheese", + "fresh fava bean", + "large eggs", + "butter", + "ground nutmeg", + "leeks", + "all-purpose flour" + ] + }, + { + "id": 37775, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "butter", + "grated parmesan cheese", + "celery root", + "olive oil", + "low salt chicken broth", + "leeks" + ] + }, + { + "id": 45289, + "cuisine": "british", + "ingredients": [ + "eggs", + "milk", + "canola oil", + "powdered sugar", + "heavy cream", + "pure maple syrup", + "English muffins", + "sugar", + "vanilla" + ] + }, + { + "id": 34220, + "cuisine": "southern_us", + "ingredients": [ + "water", + "dried sage", + "heavy cream", + "chopped parsley", + "salt and ground black pepper", + "chicken breast halves", + "salt", + "whole wheat flour", + "baking powder", + "chopped celery", + "garlic powder", + "onion powder", + "all-purpose flour" + ] + }, + { + "id": 19137, + "cuisine": "italian", + "ingredients": [ + "anchovies", + "crushed red pepper flakes", + "penn pasta, cook and drain", + "small capers, rins and drain", + "Bertolli® Classico Olive Oil", + "bertolli organic tradit sauc", + "pitted kalamata olives", + "finely chopped fresh parsley" + ] + }, + { + "id": 26407, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "red chili peppers", + "cornish game hens", + "fresh basil leaves", + "kaffir lime leaves", + "cherry tomatoes", + "Thai red curry paste", + "tomato paste", + "straw mushrooms", + "grapeseed oil", + "fish sauce", + "golden brown sugar", + "low salt chicken broth" + ] + }, + { + "id": 30899, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "capsicum", + "salt", + "lemon juice", + "masala", + "dinner rolls", + "potatoes", + "green peas", + "green chilies", + "onions", + "cauliflower", + "sugar", + "butter", + "cilantro leaves", + "carrots", + "tomatoes", + "lemon wedge", + "purple onion", + "oil", + "ground turmeric" + ] + }, + { + "id": 22810, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "yellow onion", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 25923, + "cuisine": "indian", + "ingredients": [ + "semolina flour", + "green peas", + "black mustard seeds", + "cherry tomatoes", + "cumin seed", + "clarified butter", + "water", + "raw cashews", + "coarse kosher salt", + "curry leaves", + "peeled fresh ginger", + "garlic cloves", + "serrano chile" + ] + }, + { + "id": 22798, + "cuisine": "chinese", + "ingredients": [ + "haricots verts", + "light soy sauce", + "broccoli florets", + "shallots", + "cornflour", + "Madras curry powder", + "groundnut", + "dijon mustard", + "Shaoxing wine", + "peas", + "salt", + "fresh tomatoes", + "ground black pepper", + "chopped fresh chives", + "sesame oil", + "extra-virgin olive oil", + "fillet of beef", + "water chestnuts", + "spring onions", + "cauliflower florets", + "oyster sauce" + ] + }, + { + "id": 49124, + "cuisine": "thai", + "ingredients": [ + "cauliflower", + "kosher salt", + "vegetable oil", + "acorn squash", + "carrots", + "fresh basil", + "peanuts", + "ginger", + "tamarind concentrate", + "fresh lime juice", + "kaffir lime leaves", + "jasmine rice", + "vegetable stock", + "firm tofu", + "red bell pepper", + "unsweetened coconut milk", + "fish sauce", + "shallots", + "chile de arbol", + "kabocha squash" + ] + }, + { + "id": 38374, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "purple onion", + "corn starch", + "milk", + "shredded pepper jack cheese", + "bread crumbs", + "flour", + "elbow macaroni", + "shredded cheddar cheese", + "butter", + "mexican chorizo" + ] + }, + { + "id": 13687, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "sherry", + "ground pork", + "soy sauce", + "sesame oil", + "corn starch", + "sugar", + "green onions", + "oyster sauce", + "water", + "wonton wrappers", + "ground white pepper" + ] + }, + { + "id": 23491, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "prepared lasagne", + "mozzarella cheese", + "salt", + "cottage cheese", + "marinara sauce", + "pepper", + "ground beef" + ] + }, + { + "id": 5028, + "cuisine": "french", + "ingredients": [ + "potatoes", + "gruyere cheese", + "water", + "yukon gold potatoes", + "shredded mozzarella cheese", + "whole milk", + "salt", + "unsalted butter", + "garlic" + ] + }, + { + "id": 22710, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "unsalted butter", + "olive oil", + "garlic cloves", + "chicken stock", + "dry white wine", + "parmesan cheese", + "onions" + ] + }, + { + "id": 15486, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "baking powder", + "masa", + "pasilla chiles", + "prawns", + "sauce", + "shredded cheddar cheese", + "corn oil", + "shredded Monterey Jack cheese", + "frozen chopped spinach", + "corn husks", + "condensed chicken broth" + ] + }, + { + "id": 33779, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "vanilla extract", + "sugar", + "cooking spray", + "yellow corn meal", + "reduced fat milk", + "salt", + "water", + "butter" + ] + }, + { + "id": 4246, + "cuisine": "korean", + "ingredients": [ + "sugar", + "garlic", + "sesame seeds", + "onions", + "soy sauce", + "beef heart", + "ground ginger", + "sesame oil" + ] + }, + { + "id": 25257, + "cuisine": "mexican", + "ingredients": [ + "limeade concentrate", + "gold tequila", + "Mexican beer", + "lime" + ] + }, + { + "id": 28620, + "cuisine": "filipino", + "ingredients": [ + "water", + "chinese parsley", + "shrimp", + "onions", + "tofu", + "hard-boiled egg", + "garlic", + "calamansi", + "smoked & dried fish", + "fish sauce", + "rice noodles", + "squid", + "annatto", + "cooking oil", + "ground pork", + "corn starch", + "cabbage" + ] + }, + { + "id": 6138, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "chinese five-spice powder", + "boar", + "ginger", + "chinese black vinegar", + "soy sauce", + "Shaoxing wine", + "garlic cloves", + "honey", + "chile bean paste", + "fresh chile" + ] + }, + { + "id": 49462, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "crushed red pepper flakes", + "onions", + "fresh rosemary", + "new potatoes", + "garlic cloves", + "black pepper", + "heavy cream", + "bread dough", + "grated parmesan cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 12876, + "cuisine": "mexican", + "ingredients": [ + "beans", + "cheese", + "guacamole", + "sour cream", + "diced tomatoes", + "sliced black olives", + "taco seasoning" + ] + }, + { + "id": 45244, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "white rice", + "grated parmesan cheese", + "yellow onion", + "chicken broth", + "butter", + "olive oil", + "salt" + ] + }, + { + "id": 26128, + "cuisine": "russian", + "ingredients": [ + "raisins", + "sugar", + "all-purpose flour", + "eggs", + "salt", + "vegetable oil", + "farmer cheese" + ] + }, + { + "id": 5939, + "cuisine": "greek", + "ingredients": [ + "port wine", + "cinnamon sticks", + "quinces", + "water", + "white sugar", + "clove", + "heavy cream" + ] + }, + { + "id": 17946, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "garlic", + "bay leaf", + "sea salt", + "spaghetti squash", + "roma tomatoes", + "yellow onion", + "black pepper", + "basil", + "carrots" + ] + }, + { + "id": 23370, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "olive oil", + "salt", + "( oz.) tomato paste", + "minced garlic", + "shallots", + "chopped parsley", + "pepper", + "dry white wine", + "shrimp", + "dried oregano", + "dried basil", + "diced tomatoes", + "spaghetti" + ] + }, + { + "id": 47350, + "cuisine": "chinese", + "ingredients": [ + "water", + "jalapeno chilies", + "yellow bell pepper", + "roasted peanuts", + "ground beef", + "buns", + "vinegar", + "dry sherry", + "peanut butter", + "corn starch", + "mayonaise", + "hoisin sauce", + "sesame oil", + "garlic", + "scallions", + "soy sauce", + "shredded carrots", + "ginger", + "sauce", + "red bell pepper" + ] + }, + { + "id": 13485, + "cuisine": "cajun_creole", + "ingredients": [ + "food colouring", + "granulated sugar", + "vegetable oil", + "milk", + "cake", + "salt", + "shortening", + "large eggs", + "lemon", + "ground cinnamon", + "active dry yeast", + "decorating sugars", + "all-purpose flour" + ] + }, + { + "id": 18662, + "cuisine": "southern_us", + "ingredients": [ + "table salt", + "baking powder", + "baking soda", + "cake flour", + "sugar", + "buttermilk", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 3223, + "cuisine": "japanese", + "ingredients": [ + "chives", + "lemon juice", + "soy sauce", + "hot chili sauce", + "white sesame seeds", + "mayonaise", + "brown rice", + "toasted almonds", + "black sesame seeds", + "seaweed" + ] + }, + { + "id": 1771, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "flat leaf parsley", + "pepper", + "salt", + "rigatoni", + "tomato sauce", + "garlic", + "chopped garlic", + "parmesan cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 32791, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "mussels", + "diced tomatoes", + "flat leaf parsley", + "clam juice", + "spaghettini", + "tomato paste", + "crushed red pepper" + ] + }, + { + "id": 28337, + "cuisine": "mexican", + "ingredients": [ + "evaporated milk", + "whipping cream", + "large eggs", + "strawberries", + "sugar", + "mint sprigs", + "sweetened condensed milk", + "unsalted butter", + "cake flour" + ] + }, + { + "id": 48395, + "cuisine": "italian", + "ingredients": [ + "garlic", + "balsamic vinegar", + "plum tomatoes", + "fresh basil", + "Italian bread", + "extra-virgin olive oil" + ] + }, + { + "id": 20219, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "coarse salt", + "olive oil", + "hot water", + "dried porcini mushrooms", + "all purpose unbleached flour", + "brine-cured olives", + "dry yeast" + ] + }, + { + "id": 37298, + "cuisine": "filipino", + "ingredients": [ + "tomato sauce", + "cooking oil", + "garlic", + "water", + "bay leaves", + "onions", + "soy sauce", + "potatoes", + "salt", + "ground black pepper", + "lemon", + "chuck" + ] + }, + { + "id": 41675, + "cuisine": "indian", + "ingredients": [ + "extra firm tofu", + "ground allspice", + "ground cumin", + "russet potatoes", + "frozen peas", + "vegetable oil", + "onions", + "diced tomatoes", + "chopped cilantro fresh" + ] + }, + { + "id": 22902, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "water", + "long-grain rice", + "salt", + "lime", + "chopped cilantro" + ] + }, + { + "id": 12740, + "cuisine": "italian", + "ingredients": [ + "baby spinach", + "lemon", + "olive oil" + ] + }, + { + "id": 33078, + "cuisine": "jamaican", + "ingredients": [ + "nutmeg", + "vegetable oil", + "garlic cloves", + "pepper", + "paprika", + "allspice", + "ground cinnamon", + "scotch bonnet chile", + "thyme", + "pork tenderloin", + "salt", + "ground cumin" + ] + }, + { + "id": 7029, + "cuisine": "cajun_creole", + "ingredients": [ + "parsnips", + "sweet potatoes", + "vegetable broth", + "banana peppers", + "canola oil", + "celery ribs", + "file powder", + "chile pepper", + "all-purpose flour", + "roasted tomatoes", + "black-eyed peas", + "red beans", + "garlic", + "smoked paprika", + "green bell pepper", + "serrano peppers", + "cajun seasoning", + "okra", + "onions" + ] + }, + { + "id": 10501, + "cuisine": "southern_us", + "ingredients": [ + "butternut squash", + "white sugar", + "vanilla extract", + "butter", + "sweetened condensed milk", + "eggs", + "heavy whipping cream" + ] + }, + { + "id": 4041, + "cuisine": "vietnamese", + "ingredients": [ + "eggs", + "butter", + "salt", + "granulated sugar", + "vanilla extract", + "milk", + "ginger", + "all-purpose flour", + "baking powder", + "cooking wine" + ] + }, + { + "id": 33626, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "white hominy", + "bay leaves", + "garlic", + "pork shoulder", + "water", + "low sodium chicken broth", + "vegetable oil", + "dried guajillo chiles", + "kosher salt", + "jalapeno chilies", + "Mexican oregano", + "white beans", + "ground cumin", + "avocado", + "fresh cilantro", + "serrano peppers", + "chile de arbol", + "ancho chile pepper" + ] + }, + { + "id": 35654, + "cuisine": "indian", + "ingredients": [ + "Quorn Chik''n Tenders", + "vegetable broth", + "ground coriander", + "ground turmeric", + "garam masala", + "diced tomatoes", + "chickpeas", + "onions", + "chili powder", + "garlic", + "cumin seed", + "ground cumin", + "tomato purée", + "vegetable oil", + "salt", + "black mustard seeds" + ] + }, + { + "id": 1172, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "all-purpose flour", + "buttermilk", + "cayenne pepper", + "large eggs", + "hot sauce", + "neutral oil", + "paprika", + "dill pickles" + ] + }, + { + "id": 26952, + "cuisine": "mexican", + "ingredients": [ + "bouillon powder", + "garlic cloves", + "diced tomatoes", + "cooking oil", + "ground cumin", + "chicken broth", + "white rice" + ] + }, + { + "id": 2123, + "cuisine": "chinese", + "ingredients": [ + "sambal ulek", + "fresh ginger", + "lean ground beef", + "chinese five-spice powder", + "onions", + "chinese rice wine", + "sliced cucumber", + "garlic", + "pasta water", + "soy sauce", + "sesame oil", + "creamy peanut butter", + "beansprouts", + "brown sugar", + "jalapeno chilies", + "sprouts", + "Chinese egg noodles", + "black vinegar" + ] + }, + { + "id": 43004, + "cuisine": "french", + "ingredients": [ + "bread", + "sugar", + "vanilla extract", + "caramel sauce", + "eggs", + "milk", + "crème fraîche", + "melted butter", + "orange", + "salt", + "brioche", + "heavy cream", + "Grand Marnier" + ] + }, + { + "id": 39903, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "zucchini", + "purple onion", + "corn tortillas", + "green bell pepper", + "olive oil", + "garlic", + "red bell pepper", + "ground cumin", + "corn", + "cilantro", + "enchilada sauce", + "dried oregano", + "black beans", + "ground black pepper", + "shredded sharp cheddar cheese", + "sour cream" + ] + }, + { + "id": 112, + "cuisine": "southern_us", + "ingredients": [ + "toasted pecans", + "large eggs", + "salt", + "blackberry jam", + "baking soda", + "buttermilk", + "ground allspice", + "ground cinnamon", + "ground cloves", + "butter", + "all-purpose flour", + "powdered sugar", + "granulated sugar", + "vanilla extract" + ] + }, + { + "id": 2873, + "cuisine": "italian", + "ingredients": [ + "eggs", + "extra-virgin olive oil", + "pepper", + "tomatoes", + "salt" + ] + }, + { + "id": 43064, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "cassia cinnamon", + "salt", + "ground turmeric", + "chicken stock", + "fresh ginger", + "vegetable oil", + "ground coriander", + "green cardamom pods", + "minced garlic", + "pumpkin", + "yellow onion", + "tomato paste", + "garam masala", + "shoulder meat", + "chopped cilantro fresh" + ] + }, + { + "id": 17239, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "yaki-nori", + "hass avocado", + "sesame seeds", + "rice vinegar", + "ginger paste", + "sushi rice", + "salt", + "large shrimp", + "sugar", + "vegetable oil", + "asparagus spears" + ] + }, + { + "id": 49384, + "cuisine": "mexican", + "ingredients": [ + "kale", + "spices", + "purple onion", + "lime", + "queso fresco", + "garlic", + "avocado", + "whole peeled tomatoes", + "ground pork", + "hominy", + "cilantro", + "corn tortillas" + ] + }, + { + "id": 17951, + "cuisine": "jamaican", + "ingredients": [ + "roast", + "garlic cloves", + "tomatoes", + "sea salt", + "onions", + "pepper", + "paprika", + "vegetable oil", + "thyme sprigs" + ] + }, + { + "id": 38775, + "cuisine": "italian", + "ingredients": [ + "Bartlett Pear", + "salt", + "mascarpone", + "fresh lemon juice", + "black pepper", + "walnuts", + "extra-virgin olive oil", + "arugula" + ] + }, + { + "id": 39158, + "cuisine": "greek", + "ingredients": [ + "plain yogurt", + "lemon", + "dried oregano", + "ground pepper", + "salt", + "chicken breast halves", + "fresh parsley", + "olive oil", + "large garlic cloves" + ] + }, + { + "id": 27990, + "cuisine": "french", + "ingredients": [ + "mussels", + "finely chopped onion", + "olive oil", + "finely chopped fresh parsley", + "black pepper", + "dry white wine" + ] + }, + { + "id": 48960, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "butter", + "milk", + "salt", + "sugar", + "rapid rise yeast", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 39056, + "cuisine": "thai", + "ingredients": [ + "reduced sodium soy sauce", + "sunflower oil", + "coriander", + "spring onions", + "chili sauce", + "snow peas", + "rice noodles", + "firm tofu", + "masala", + "fresh ginger root", + "red pepper", + "beansprouts" + ] + }, + { + "id": 13397, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "vegetable oil", + "diced tomatoes", + "beets", + "beef stock", + "red wine vinegar", + "yellow onion", + "sour cream", + "stew meat", + "shredded cabbage", + "large garlic cloves", + "rolls", + "pepper", + "russet potatoes", + "salt", + "carrots" + ] + }, + { + "id": 27061, + "cuisine": "japanese", + "ingredients": [ + "chat masala", + "cumin seed", + "methi", + "mashed potatoes", + "salt", + "wheat flour", + "whole wheat flour", + "oil", + "red chili powder", + "green chilies", + "ghee" + ] + }, + { + "id": 7797, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "sour cream", + "Jiffy Corn Muffin Mix", + "whole kernel corn, drain", + "cream style corn" + ] + }, + { + "id": 41048, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "white sesame seeds", + "crushed red pepper flakes", + "toasted sesame oil", + "rice vinegar", + "sugar", + "cucumber" + ] + }, + { + "id": 29981, + "cuisine": "russian", + "ingredients": [ + "plain flour", + "buttermilk", + "baking powder", + "xanthan gum", + "butter", + "eggs", + "buckwheat flour" + ] + }, + { + "id": 22760, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "lard", + "vinegar", + "salt", + "unsalted butter", + "buttermilk", + "cornmeal", + "eggs", + "apple cider vinegar", + "all-purpose flour" + ] + }, + { + "id": 3826, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "mirin", + "scallions", + "kosher salt", + "ginger", + "soy sauce", + "lime wedges", + "chicken thighs", + "smoked sea salt", + "dried shiitake mushrooms" + ] + }, + { + "id": 16359, + "cuisine": "chinese", + "ingredients": [ + "water", + "green onions", + "corn starch", + "soy sauce", + "hoisin sauce", + "red pepper flakes", + "brown sugar", + "fresh ginger", + "sesame oil", + "canola oil", + "ketchup", + "extra firm tofu", + "rice vinegar" + ] + }, + { + "id": 40314, + "cuisine": "french", + "ingredients": [ + "sugar", + "pastry tart shell", + "cream sweeten whip", + "large eggs", + "prunes", + "hazelnuts", + "grated orange", + "roasted hazelnuts", + "crème fraîche" + ] + }, + { + "id": 5690, + "cuisine": "thai", + "ingredients": [ + "boneless chicken breast", + "sweet chili sauce", + "green onions", + "soy sauce", + "bell pepper", + "sesame seeds", + "onions" + ] + }, + { + "id": 48467, + "cuisine": "italian", + "ingredients": [ + "orange bell pepper", + "chopped fresh thyme", + "salt", + "red bell pepper", + "fresh rosemary", + "cooking spray", + "extra-virgin olive oil", + "garlic cloves", + "fennel seeds", + "ground black pepper", + "yellow bell pepper", + "chopped fresh sage", + "boneless skinless chicken breast halves", + "fresh basil", + "balsamic vinegar", + "crushed red pepper", + "fresh lemon juice" + ] + }, + { + "id": 1694, + "cuisine": "indian", + "ingredients": [ + "carrots", + "milk", + "cashew nuts", + "sugar", + "ghee", + "ground cardamom" + ] + }, + { + "id": 345, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "fresh coriander", + "boneless chicken", + "fish sauce", + "fresh ginger", + "garlic cloves", + "spinach leaves", + "lime", + "oil", + "red chili peppers", + "Himalayan salt" + ] + }, + { + "id": 38545, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "ras el hanout", + "onions", + "eggs", + "vegetable stock", + "lentils", + "parsley", + "salt", + "puff pastry", + "pepper", + "garlic", + "carrots" + ] + }, + { + "id": 48947, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "extra-virgin olive oil", + "pinenuts", + "Italian parsley leaves", + "pecorino cheese", + "lemon", + "tagliarini", + "ground black pepper", + "sea salt" + ] + }, + { + "id": 38331, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "sliced almonds", + "cilantro leaves", + "adobo sauce", + "chipotle chile", + "raisins", + "garlic cloves", + "ground cumin", + "boneless chicken skinless thigh", + "extra-virgin olive oil", + "ancho chile pepper", + "ground cinnamon", + "coarse salt", + "yellow onion", + "bittersweet chocolate" + ] + }, + { + "id": 36134, + "cuisine": "chinese", + "ingredients": [ + "black bean sauce", + "garlic cloves", + "teriyaki sauce", + "fresh ginger", + "pork spareribs", + "vegetable oil", + "garlic chili sauce" + ] + }, + { + "id": 12444, + "cuisine": "indian", + "ingredients": [ + "kaffir lime leaves", + "whole cloves", + "cardamom seeds", + "grated nutmeg", + "coconut milk", + "lemongrass", + "cinnamon", + "garlic", + "peanut oil", + "chicken", + "kosher salt", + "shallots", + "thai chile", + "rice", + "ground turmeric", + "fennel seeds", + "coriander seeds", + "ginger", + "candlenuts", + "cumin seed" + ] + }, + { + "id": 18240, + "cuisine": "mexican", + "ingredients": [ + "sour cream", + "onion powder", + "adobo sauce", + "cream cheese", + "chopped cilantro", + "garlic powder", + "chipotles in adobo" + ] + }, + { + "id": 25869, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "fish sauce", + "lemongrass", + "pork cutlets", + "minced garlic", + "chili sauce", + "brown sugar", + "lime" + ] + }, + { + "id": 15138, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "salt", + "Balsamico Bianco", + "black pepper", + "broccoli florets", + "orecchiette", + "chicken broth", + "grated parmesan cheese", + "softened butter", + "olive oil", + "toasted pine nuts" + ] + }, + { + "id": 3871, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "kielbasa", + "onions", + "ground cloves", + "bay leaves", + "low salt chicken broth", + "chicken", + "green bell pepper", + "olive oil", + "cayenne pepper", + "long grain white rice", + "minced garlic", + "chili powder", + "fresh parsley" + ] + }, + { + "id": 38101, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "spring onions", + "oil", + "chinese rice wine", + "light soy sauce", + "ginger", + "corn flour", + "dark soy sauce", + "water", + "sesame oil", + "oyster sauce", + "pork", + "shiitake", + "cornflour" + ] + }, + { + "id": 35354, + "cuisine": "thai", + "ingredients": [ + "dry roasted peanuts", + "butter", + "Thai fish sauce", + "potatoes", + "garlic", + "onions", + "curry powder", + "stewing steak", + "coconut milk", + "beef stock", + "peanut butter", + "browning" + ] + }, + { + "id": 35924, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "finely chopped onion", + "water", + "celery", + "chestnuts", + "baking potatoes", + "unsalted butter", + "celery root" + ] + }, + { + "id": 5449, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "coarse sea salt", + "whipping cream", + "allspice", + "ground black pepper", + "large eggs", + "cornichons", + "garlic cloves", + "dried thyme", + "minced onion", + "ground pork", + "cognac", + "ham steak", + "dijon mustard", + "bacon", + "salt" + ] + }, + { + "id": 8484, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "ice water", + "cinnamon", + "sugar", + "salt" + ] + }, + { + "id": 48266, + "cuisine": "brazilian", + "ingredients": [ + "bacon", + "manioc flour", + "vegetable oil" + ] + }, + { + "id": 9368, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "bay leaves", + "garlic", + "calamansi", + "vinegar", + "ginger", + "catfish", + "peppercorns", + "fried garlic", + "green onions", + "salt", + "onions", + "sugar", + "roma tomatoes", + "star anise", + "oil" + ] + }, + { + "id": 33633, + "cuisine": "french", + "ingredients": [ + "panko", + "all-purpose flour", + "whole milk", + "muenster cheese", + "salad", + "butter", + "ground cumin", + "large eggs", + "red bell pepper" + ] + }, + { + "id": 40766, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "ground cumin", + "chopped cilantro fresh", + "boneless skinless chicken breast halves", + "crumbs", + "Country Crock® Spread" + ] + }, + { + "id": 20174, + "cuisine": "italian", + "ingredients": [ + "pesto", + "salt", + "red bell pepper", + "crushed red pepper", + "shredded zucchini", + "parmigiano-reggiano cheese", + "purple onion", + "fresh lemon juice", + "ground black pepper", + "bow-tie pasta" + ] + }, + { + "id": 49310, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "ground red pepper", + "minced garlic", + "yellow mustard", + "cider vinegar", + "vegetable oil", + "fresh basil", + "honey" + ] + }, + { + "id": 754, + "cuisine": "mexican", + "ingredients": [ + "corn", + "white bread", + "chile pepper", + "refried beans", + "mozzarella cheese", + "squash blossoms" + ] + }, + { + "id": 39120, + "cuisine": "mexican", + "ingredients": [ + "ancho chili ground pepper", + "tomatoes with juice", + "eggs", + "diced green chilies", + "onions", + "olive oil", + "chopped cilantro", + "black beans", + "grating cheese", + "ground cumin" + ] + }, + { + "id": 43499, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "minced garlic", + "white rice", + "carrots", + "white sugar", + "rib eye steaks", + "soy sauce", + "green onions", + "dried shiitake mushrooms", + "beansprouts", + "fresh spinach", + "water", + "salt", + "cucumber", + "nori", + "eggs", + "pepper", + "sesame oil", + "chili bean paste", + "toasted sesame seeds" + ] + }, + { + "id": 38202, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "chopped pecans", + "baking soda", + "vanilla extract", + "white sugar", + "heavy cream", + "confectioners sugar", + "butter", + "salt" + ] + }, + { + "id": 12840, + "cuisine": "french", + "ingredients": [ + "cherries", + "all-purpose flour", + "sugar", + "whole milk", + "heavy whipping cream", + "kosher salt", + "vanilla extract", + "powdered sugar", + "large eggs", + "grated lemon zest" + ] + }, + { + "id": 11999, + "cuisine": "italian", + "ingredients": [ + "baguette", + "salt", + "tomatoes", + "parmesan cheese", + "fresh basil", + "garlic", + "olive oil", + "cream cheese, soften" + ] + }, + { + "id": 2196, + "cuisine": "british", + "ingredients": [ + "chicken stock", + "yukon gold potatoes", + "sunflower oil", + "freshly ground pepper", + "olive oil", + "red wine", + "all-purpose flour", + "milk", + "red wine vinegar", + "purple onion", + "unsalted butter", + "sea salt", + "banger" + ] + }, + { + "id": 7045, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "vegetables", + "vegetable stock", + "tamarind paste", + "sliced green onions", + "eggs", + "soy sauce", + "lime wedges", + "unsalted dry roast peanuts", + "peanut oil", + "chili flakes", + "fresh coriander", + "rice noodles", + "sauce", + "beansprouts", + "diced onions", + "baby bok choy", + "ground black pepper", + "garlic", + "chili sauce" + ] + }, + { + "id": 19227, + "cuisine": "korean", + "ingredients": [ + "red pepper flakes", + "green onions", + "salt", + "msg", + "garlic", + "napa cabbage" + ] + }, + { + "id": 24088, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "kidney beans", + "black gram", + "cumin seed", + "onions", + "tomatoes", + "water", + "ginger", + "green chilies", + "almond milk", + "asafoetida", + "vegan butter", + "cashew milk", + "garlic cloves", + "red chili powder", + "garam masala", + "salt", + "oil", + "ground turmeric" + ] + }, + { + "id": 4121, + "cuisine": "british", + "ingredients": [ + "dried currants", + "unsalted butter", + "golden raisins", + "dark brown sugar", + "candied orange peel", + "baking soda", + "dark rum", + "all-purpose flour", + "fruit", + "self rising flour", + "raisins", + "golden syrup", + "water", + "large eggs", + "salt", + "grated orange" + ] + }, + { + "id": 10434, + "cuisine": "russian", + "ingredients": [ + "water", + "garlic cloves", + "pierogi", + "salt", + "fresh dill", + "bacon slices", + "savoy cabbage", + "olive oil", + "onions" + ] + }, + { + "id": 47322, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "chips", + "non-fat sour cream", + "long-grain rice", + "dried thyme", + "worcestershire sauce", + "33% less sodium cooked ham", + "celery", + "vegetable oil cooking spray", + "ground red pepper", + "hot sauce", + "garlic cloves", + "reduced fat sharp cheddar cheese", + "black-eyed peas", + "diced tomatoes", + "chopped onion" + ] + }, + { + "id": 8872, + "cuisine": "italian", + "ingredients": [ + "espresso", + "chocolate shavings", + "vanilla extract", + "sugar", + "heavy whipping cream" + ] + }, + { + "id": 5694, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn", + "chopped cilantro fresh", + "black-eyed peas", + "fresh lime juice", + "sweet onion", + "garlic cloves", + "picante sauce", + "tortilla chips", + "plum tomatoes" + ] + }, + { + "id": 6068, + "cuisine": "indian", + "ingredients": [ + "non dairy yogurt", + "baby spinach", + "ginger", + "yellow onion", + "kale", + "lemon", + "extra-virgin olive oil", + "ground coriander", + "pepper", + "cinnamon", + "tomatoes with juice", + "chickpeas", + "mustard", + "garam masala", + "large garlic cloves", + "salt" + ] + }, + { + "id": 22572, + "cuisine": "southern_us", + "ingredients": [ + "light molasses", + "okra", + "black-eyed peas", + "cayenne pepper", + "olive oil", + "purple onion", + "andouille sausage", + "apple cider vinegar", + "yams" + ] + }, + { + "id": 32628, + "cuisine": "british", + "ingredients": [ + "water", + "beef liver", + "grass-fed butter", + "bacon", + "garlic powder", + "onions", + "pepper", + "coconut flour" + ] + }, + { + "id": 39940, + "cuisine": "indian", + "ingredients": [ + "soda", + "oil", + "ground turmeric", + "water", + "cilantro leaves", + "mustard seeds", + "ginger paste", + "salt", + "lemon juice", + "green gram", + "coconut", + "green chilies", + "asafoetida powder" + ] + }, + { + "id": 33584, + "cuisine": "british", + "ingredients": [ + "eggs", + "all-purpose flour", + "2% reduced-fat milk", + "salt", + "vegetable oil" + ] + }, + { + "id": 44108, + "cuisine": "french", + "ingredients": [ + "english breakfast tea bags", + "boiling water", + "mint sprigs", + "ice water", + "sugar", + "fresh lemon juice" + ] + }, + { + "id": 9097, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "baby spinach", + "garlic", + "light sour cream", + "nonfat greek yogurt", + "crushed red pepper flakes", + "pasta water", + "tomato paste", + "sun-dried tomatoes", + "diced tomatoes", + "salt", + "pepper", + "granulated sugar", + "dried fettuccine" + ] + }, + { + "id": 16447, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "garden peas", + "nori", + "garlic shoots", + "ramen noodles", + "scallions", + "eggs", + "shiitake", + "ginger", + "vegetable demi-glace", + "lemon", + "arugula" + ] + }, + { + "id": 32579, + "cuisine": "korean", + "ingredients": [ + "table salt", + "leeks", + "onions", + "kosher salt", + "pickling cucumbers", + "sugar", + "green onions", + "chile powder", + "water", + "garlic" + ] + }, + { + "id": 20243, + "cuisine": "italian", + "ingredients": [ + "low sodium worcestershire sauce", + "fresh parmesan cheese", + "fresh parsley", + "water", + "turkey kielbasa", + "sugar", + "cooking spray", + "polenta", + "yellow squash", + "red bell pepper" + ] + }, + { + "id": 5240, + "cuisine": "italian", + "ingredients": [ + "italian pizza crust", + "whole chicken", + "crumbled blue cheese", + "provolone cheese", + "vegetable oil cooking spray", + "buffalo" + ] + }, + { + "id": 37394, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "baking powder", + "all-purpose flour", + "unsalted butter", + "vanilla extract", + "almonds", + "anise", + "sugar", + "large eggs", + "salt" + ] + }, + { + "id": 46248, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "milk", + "french fries", + "salsa", + "sour cream", + "shredded cheddar cheese", + "garlic powder", + "bacon", + "cayenne pepper", + "ground cumin", + "pepper", + "olive oil", + "russet potatoes", + "hot sauce", + "chunky salsa", + "lime juice", + "flour tortillas", + "salt", + "corn starch" + ] + }, + { + "id": 9556, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "salt", + "chopped cilantro fresh", + "tomato paste", + "extra-virgin olive oil", + "ground beef", + "ground lamb", + "ground ginger", + "large eggs", + "garlic cloves", + "cumin", + "tomatoes", + "purple onion", + "fresh parsley" + ] + }, + { + "id": 4955, + "cuisine": "chinese", + "ingredients": [ + "celery ribs", + "black pepper", + "green onions", + "rice vinegar", + "chinese five-spice powder", + "rib", + "eggs", + "garlic powder", + "worcestershire sauce", + "low sodium chicken stock", + "beansprouts", + "ground ginger", + "yellow squash", + "vegetable oil", + "all-purpose flour", + "corn starch", + "bok choy", + "soy sauce", + "mushrooms", + "salt", + "scallions", + "toasted sesame oil" + ] + }, + { + "id": 32401, + "cuisine": "southern_us", + "ingredients": [ + "dill pickles", + "dry roasted peanuts", + "mayonaise", + "frozen peas", + "lettuce leaves" + ] + }, + { + "id": 33883, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "salt", + "lemongrass", + "chicken", + "tumeric", + "peppercorns", + "garlic" + ] + }, + { + "id": 45831, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "green bell pepper", + "vine ripened tomatoes", + "extra-virgin olive oil", + "large shrimp", + "hard shelled clams", + "shallots", + "sea salt", + "onions", + "mussels", + "dry vermouth", + "fish stock", + "garlic cloves", + "crayfish", + "sorrel", + "dry white wine", + "heavy cream", + "red bell pepper" + ] + }, + { + "id": 28384, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "shallots", + "rice vinegar", + "sesame paste", + "seedless cucumber", + "butter", + "scallions", + "toasted sesame oil", + "fresh ginger", + "garlic", + "oil", + "soy sauce", + "rice wine", + "peanut oil", + "Chinese egg noodles" + ] + }, + { + "id": 31160, + "cuisine": "italian", + "ingredients": [ + "capers", + "extra-virgin olive oil", + "artichoke hearts", + "crusty bread", + "garlic cloves", + "pitted green olives" + ] + }, + { + "id": 34972, + "cuisine": "japanese", + "ingredients": [ + "red chili peppers", + "radishes", + "ginger", + "snow peas", + "wasabi paste", + "sesame seeds", + "wasabi powder", + "cilantro leaves", + "scallion greens", + "soy sauce", + "mirin", + "peas", + "nori", + "ginger juice", + "extra firm silken tofu", + "crushed red pepper flakes", + "cucumber" + ] + }, + { + "id": 7661, + "cuisine": "moroccan", + "ingredients": [ + "water", + "salt", + "dried apricot", + "couscous", + "coriander seeds", + "flat leaf parsley", + "extra-virgin olive oil" + ] + }, + { + "id": 8390, + "cuisine": "moroccan", + "ingredients": [ + "dried apricot", + "garlic cloves", + "chicken stock", + "chickpeas", + "coriander", + "ras el hanout", + "onions", + "olive oil", + "skinless chicken breasts" + ] + }, + { + "id": 45302, + "cuisine": "french", + "ingredients": [ + "pepper", + "nutritional yeast", + "leeks", + "chickpea flour", + "water", + "miso paste", + "salt", + "minced garlic", + "almonds", + "lemon", + "sliced almonds", + "olive oil", + "herbs", + "garlic cloves" + ] + }, + { + "id": 5968, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "honey", + "butter", + "ketchup", + "minced garlic", + "dijon mustard", + "sauce", + "cider vinegar", + "peaches", + "worcestershire sauce", + "molasses", + "sweet onion", + "bourbon whiskey", + "dark brown sugar" + ] + }, + { + "id": 9918, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "sugar", + "meyer lemon", + "large eggs" + ] + }, + { + "id": 43652, + "cuisine": "italian", + "ingredients": [ + "milk", + "vegetable oil", + "white sugar", + "mild Italian sausage", + "salt", + "ground black pepper", + "ricotta cheese", + "eggs", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 2330, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "large eggs", + "all-purpose flour", + "toasted sesame seeds", + "ground black pepper", + "vegetable oil", + "boneless pork loin", + "dashi", + "lemon wedge", + "yellow onion", + "panko breadcrumbs", + "mirin", + "coarse salt", + "scallions" + ] + }, + { + "id": 34576, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "soy sauce", + "stir fry vegetable blend", + "chicken broth", + "gingerroot", + "cooked chicken" + ] + }, + { + "id": 34962, + "cuisine": "italian", + "ingredients": [ + "brewed coffee", + "sugar", + "unsweetened cocoa powder", + "ladyfingers", + "cream cheese, soften", + "marsala wine" + ] + }, + { + "id": 12866, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "ground red pepper", + "all-purpose flour", + "celery ribs", + "green onions", + "salt", + "grits", + "chopped green bell pepper", + "heavy cream", + "onions", + "andouille sausage", + "butter", + "shrimp" + ] + }, + { + "id": 37096, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "garlic cloves", + "chopped cilantro fresh", + "Mexican oregano", + "fresh lime juice", + "canola oil", + "tomatoes", + "fine sea salt", + "fresh parsley", + "snapper head", + "corn tortillas", + "serrano chile" + ] + }, + { + "id": 37266, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "flat leaf parsley", + "feta cheese", + "olive oil", + "sun-dried tomatoes in oil", + "fresh dill", + "scallions" + ] + }, + { + "id": 2983, + "cuisine": "italian", + "ingredients": [ + "pepper", + "minced onion", + "tomatoes with juice", + "boneless skinless chicken breast halves", + "eggs", + "milk", + "butter", + "dry bread crumbs", + "minced garlic", + "grated parmesan cheese", + "salt", + "dried oregano", + "sugar", + "olive oil", + "heavy cream", + "shredded mozzarella cheese" + ] + }, + { + "id": 43957, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "chopped celery", + "boneless skinless chicken breast halves", + "black pepper", + "finely chopped onion", + "hot sauce", + "andouille sausage", + "chopped green bell pepper", + "salt", + "dried thyme", + "cooking spray", + "fresh parsley" + ] + }, + { + "id": 2002, + "cuisine": "thai", + "ingredients": [ + "romaine lettuce", + "lime", + "green onions", + "napa cabbage", + "rice vinegar", + "cucumber", + "soy sauce", + "red cabbage", + "sesame oil", + "garlic", + "peanut butter", + "sugar", + "peanuts", + "boneless skinless chicken breasts", + "cilantro", + "edamame", + "red bell pepper", + "pepper", + "shredded carrots", + "vegetable oil", + "salt", + "chili sauce" + ] + }, + { + "id": 35503, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "buttermilk", + "panko breadcrumbs", + "kosher salt", + "pies", + "hot sauce", + "unsalted butter", + "boneless chicken cutlet", + "honey", + "vegetable oil", + "cayenne pepper" + ] + }, + { + "id": 1625, + "cuisine": "cajun_creole", + "ingredients": [ + "red beans", + "cayenne pepper", + "minced garlic", + "salt", + "bay leaf", + "smoked sausage", + "rice", + "seasoning salt", + "meat bones", + "onions" + ] + }, + { + "id": 12582, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "chunky salsa", + "Swanson Chicken Broth", + "small white beans", + "frozen whole kernel corn", + "garlic", + "ground cumin", + "boneless skinless chicken breasts", + "onions" + ] + }, + { + "id": 17770, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "drippings", + "broiler-fryers", + "water", + "all-purpose flour", + "black pepper", + "salt" + ] + }, + { + "id": 10840, + "cuisine": "southern_us", + "ingredients": [ + "steak sauce", + "breast of lamb", + "Tabasco Pepper Sauce", + "lima beans", + "diced celery", + "onions", + "pepper", + "potatoes", + "worcestershire sauce", + "okra", + "shanks", + "chicken", + "tomato purée", + "beef shank", + "red pepper", + "green pepper", + "carrots", + "cabbage", + "cold water", + "corn", + "bourbon whiskey", + "salt", + "veal shanks", + "chopped parsley" + ] + }, + { + "id": 41271, + "cuisine": "vietnamese", + "ingredients": [ + "butter lettuce", + "grated carrot", + "rice flour", + "cilantro", + "salt", + "pork shoulder", + "unsweetened coconut milk", + "deveined shrimp", + "oil", + "sliced green onions", + "water", + "powdered turmeric", + "beansprouts" + ] + }, + { + "id": 38766, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "cornmeal", + "pepper", + "salt", + "eggs", + "buttermilk", + "green tomatoes", + "all-purpose flour" + ] + }, + { + "id": 14175, + "cuisine": "mexican", + "ingredients": [ + "orange bell pepper", + "fajita seasoning mix", + "lime", + "chicken breasts", + "low sodium salt", + "low-fat cheese", + "olive oil", + "chopped cilantro" + ] + }, + { + "id": 15160, + "cuisine": "jamaican", + "ingredients": [ + "grated orange peel", + "butter", + "hot water", + "ground cinnamon", + "granulated sugar", + "vanilla", + "cassava", + "nutmeg", + "grated coconut", + "raisins", + "coconut milk", + "brown sugar", + "baking powder", + "salt" + ] + }, + { + "id": 42232, + "cuisine": "italian", + "ingredients": [ + "ground ginger", + "ground cloves", + "raisins", + "dried fig", + "prunes", + "honey", + "salt", + "ground cinnamon", + "hazelnuts", + "Dutch-processed cocoa powder", + "sugar", + "almonds", + "all-purpose flour" + ] + }, + { + "id": 4070, + "cuisine": "french", + "ingredients": [ + "sugar", + "whipping cream", + "large egg yolks", + "vanilla beans", + "forest fruit", + "golden brown sugar", + "raspberry liqueur" + ] + }, + { + "id": 41951, + "cuisine": "italian", + "ingredients": [ + "whole milk", + "sea salt", + "water", + "lemon" + ] + }, + { + "id": 15733, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "Philadelphia Cream Cheese", + "rotel tomatoes" + ] + }, + { + "id": 33270, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "loin pork roast", + "corn starch", + "baking powder", + "scallions", + "active dry yeast", + "cake flour", + "lard", + "sugar", + "vegetable oil", + "oyster sauce" + ] + }, + { + "id": 6774, + "cuisine": "korean", + "ingredients": [ + "ground black pepper", + "ground pork", + "kosher salt", + "napa cabbage", + "onions", + "eggs", + "brown rice", + "korean chile paste", + "minced garlic", + "bacon" + ] + }, + { + "id": 4716, + "cuisine": "french", + "ingredients": [ + "pitted kalamata olives", + "feta cheese", + "fresh oregano", + "water", + "red wine vinegar", + "tomatoes", + "olive oil", + "salt", + "fresh marjoram", + "leeks", + "cinnamon sticks" + ] + }, + { + "id": 18152, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "butter", + "fresh tomatoes", + "parmesan cheese", + "salt", + "fresh basil", + "sun-dried tomatoes", + "garlic", + "milk", + "ground black pepper", + "cream cheese, soften" + ] + }, + { + "id": 47231, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "pork shoulder roast" + ] + }, + { + "id": 18310, + "cuisine": "italian", + "ingredients": [ + "butter", + "confectioners sugar", + "sherry", + "salt", + "eggs", + "vanilla extract", + "white sugar", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 22827, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "flat leaf parsley", + "kosher salt", + "white rice", + "frozen peas", + "shallots", + "medium shrimp", + "olive oil", + "spanish chorizo", + "saffron" + ] + }, + { + "id": 10946, + "cuisine": "italian", + "ingredients": [ + "pesto", + "ricotta", + "pepper", + "gnocchi", + "kosher salt", + "green beans", + "heavy cream" + ] + }, + { + "id": 26652, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon juice", + "chicken broth", + "butter", + "noodles", + "chicken breasts", + "fresh parsley", + "pepper", + "salt" + ] + }, + { + "id": 47292, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless chicken skinless thigh", + "vegetable oil", + "celery", + "dried oregano", + "green bell pepper", + "dried basil", + "cayenne pepper", + "onions", + "andouille sausage", + "hungarian paprika", + "dri leav thyme", + "plum tomatoes", + "chicken broth", + "minced garlic", + "deveined shrimp", + "cooked white rice" + ] + }, + { + "id": 29794, + "cuisine": "southern_us", + "ingredients": [ + "cherry pie filling", + "cherry gelatin", + "water", + "diet dr. pepper", + "crushed pineapple" + ] + }, + { + "id": 25483, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "butter", + "pork roast", + "sugar", + "prepared mustard", + "hot sauce", + "cider vinegar", + "worcestershire sauce", + "garlic cloves", + "pepper", + "salt" + ] + }, + { + "id": 2715, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "pepper", + "balsamic vinegar", + "grape tomatoes", + "basil leaves", + "salt", + "baguette", + "butter" + ] + }, + { + "id": 4513, + "cuisine": "japanese", + "ingredients": [ + "dough", + "potatoes", + "salt", + "kalonji", + "sugar", + "maida flour", + "peanut oil", + "tumeric", + "vegetable oil", + "green chilies", + "warm water", + "green peas", + "ghee" + ] + }, + { + "id": 29442, + "cuisine": "mexican", + "ingredients": [ + "corn flour", + "salt", + "water", + "fat" + ] + }, + { + "id": 34960, + "cuisine": "moroccan", + "ingredients": [ + "cold water", + "sherry vinegar", + "yellow onion", + "boiling water", + "tomato purée", + "ras el hanout", + "red bell pepper", + "ground cumin", + "ground cinnamon", + "extra-virgin olive oil", + "cucumber", + "plum tomatoes", + "pitas", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 34105, + "cuisine": "irish", + "ingredients": [ + "champagne", + "stout" + ] + }, + { + "id": 19831, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "red wine", + "red bell pepper", + "bay leaves", + "garlic", + "onions", + "olive oil", + "tomatoes with juice", + "celery", + "lean ground beef", + "beef broth", + "italian seasoning" + ] + }, + { + "id": 5458, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "tomatoes", + "fresh lime juice", + "avocado", + "purple onion", + "olive oil", + "chopped cilantro fresh" + ] + }, + { + "id": 14178, + "cuisine": "mexican", + "ingredients": [ + "ground pepper", + "salsa", + "ground cumin", + "flour tortillas", + "garlic cloves", + "red cabbage", + "flat iron steaks", + "cheddar cheese", + "coarse salt", + "fresh lime juice" + ] + }, + { + "id": 36676, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "Stonefire Italian Thin Pizza Crust", + "tomatoes", + "Alfredo sauce", + "roast breast of chicken", + "parmesan cheese", + "fresh basil", + "cooked bacon" + ] + }, + { + "id": 26745, + "cuisine": "irish", + "ingredients": [ + "black pepper", + "beef bouillon granules", + "salt", + "red bell pepper", + "olive oil", + "red wine", + "calf liver", + "sweet onion", + "butter", + "all-purpose flour", + "cold water", + "chopped green bell pepper", + "garlic", + "fresh mushrooms" + ] + }, + { + "id": 9105, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "salt", + "water", + "sesame oil", + "soybean sprouts", + "ground black pepper", + "vegetable oil", + "celery", + "pepper flakes", + "beef brisket", + "garlic", + "onions" + ] + }, + { + "id": 28807, + "cuisine": "greek", + "ingredients": [ + "green olives", + "salt", + "cucumber", + "extra-virgin olive oil", + "juice", + "chopped parsley", + "ground black pepper", + "dill", + "red bell pepper", + "tomatoes", + "purple onion", + "feta cheese crumbles", + "dried oregano" + ] + }, + { + "id": 24916, + "cuisine": "chinese", + "ingredients": [ + "water", + "vegetable broth", + "chopped cilantro fresh", + "converted rice", + "firm tofu", + "peeled fresh ginger", + "rice vinegar", + "low sodium soy sauce", + "green peas", + "dark sesame oil" + ] + }, + { + "id": 32980, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "whole peeled tomatoes", + "freshly ground pepper", + "ketchup", + "large garlic cloves", + "boneless pork shoulder roast", + "Tabasco Pepper Sauce", + "onions", + "water", + "salt" + ] + }, + { + "id": 40632, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "mirin", + "scallions", + "canola oil", + "water", + "yellow onion", + "boneless rib eye steaks", + "soy sauce", + "napa cabbage", + "carrots", + "sake", + "shiitake", + "firm tofu", + "glass noodles" + ] + }, + { + "id": 8628, + "cuisine": "indian", + "ingredients": [ + "flour", + "cumin seed", + "amchur", + "ginger", + "bitter gourd", + "chili", + "poppy seeds", + "oil", + "coriander seeds", + "salt" + ] + }, + { + "id": 5716, + "cuisine": "spanish", + "ingredients": [ + "stock", + "extra-virgin olive oil", + "turkey breast", + "water", + "dried chickpeas", + "thyme sprigs", + "brandy", + "salt", + "celery", + "yukon gold potatoes", + "veal shanks" + ] + }, + { + "id": 39155, + "cuisine": "italian", + "ingredients": [ + "chopped fresh chives", + "extra-virgin olive oil", + "cherry tomatoes", + "whole wheat bread", + "lobster meat", + "fresh basil", + "shallots", + "fresh lemon juice", + "ground black pepper", + "sea salt" + ] + }, + { + "id": 37407, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "bouillon cube", + "all-purpose flour", + "chicken broth", + "corn", + "vegetable oil", + "celery", + "pepper", + "chicken breasts", + "okra", + "cooked rice", + "frozen lima beans", + "salt", + "onions" + ] + }, + { + "id": 26321, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "light corn syrup", + "bread", + "large eggs", + "salt", + "light brown sugar", + "granulated sugar", + "vanilla extract", + "pecans", + "cinnamon" + ] + }, + { + "id": 36774, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "bird chile", + "minced garlic", + "fresh lime juice" + ] + }, + { + "id": 19037, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "ground cloves", + "golden brown sugar", + "English toffee bits", + "vanilla extract", + "sugar", + "large egg whites", + "unsalted butter", + "light corn syrup", + "crème fraîche", + "ground ginger", + "gingersnap cookie crumbs", + "honey", + "pumpkin", + "whipping cream", + "ground cardamom", + "pecans", + "water", + "ground nutmeg", + "whipped cream", + "salt" + ] + }, + { + "id": 28374, + "cuisine": "chinese", + "ingredients": [ + "lime juice", + "rice vinegar", + "soy sauce", + "ginger", + "gai lan", + "grapeseed oil", + "fresno chiles", + "kosher salt", + "garlic" + ] + }, + { + "id": 9377, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "garlic cloves", + "salt", + "chicken", + "bread", + "peanut butter", + "mexican chocolate", + "onions" + ] + }, + { + "id": 42150, + "cuisine": "italian", + "ingredients": [ + "rose petals", + "ground coriander", + "olive oil", + "red wine", + "chicken", + "ground black pepper", + "salt", + "syrup", + "leeks", + "dill weed" + ] + }, + { + "id": 27580, + "cuisine": "indian", + "ingredients": [ + "green chile", + "coconut", + "rice", + "ground cumin", + "chiles", + "banana leaves", + "black mustard seeds", + "coconut oil", + "red swiss chard", + "garlic cloves", + "water", + "salt", + "ground turmeric" + ] + }, + { + "id": 16596, + "cuisine": "french", + "ingredients": [ + "grated parmesan cheese", + "butter", + "fresh mushrooms", + "ground nutmeg", + "shredded swiss cheese", + "salt", + "shrimp", + "sea scallops", + "half & half", + "dry sherry", + "lemon juice", + "dijon mustard", + "shallots", + "all-purpose flour", + "ground white pepper" + ] + }, + { + "id": 282, + "cuisine": "korean", + "ingredients": [ + "soy bean paste", + "sea salt", + "sauce", + "toasted sesame seeds", + "soy sauce", + "lettuce leaves", + "white rice", + "korean chile paste", + "pears", + "sesame", + "mirin", + "ginger", + "dark brown sugar", + "short rib", + "black pepper", + "spring onions", + "garlic", + "toasted sesame oil" + ] + }, + { + "id": 8127, + "cuisine": "chinese", + "ingredients": [ + "chinese plum sauce", + "ground pork", + "soy sauce", + "large eggs", + "scallions", + "hoisin sauce", + "garlic", + "fresh ginger", + "barbecue sauce", + "panko breadcrumbs" + ] + }, + { + "id": 43681, + "cuisine": "greek", + "ingredients": [ + "kasseri", + "olive oil", + "garlic", + "chopped onion", + "ground lamb", + "eggs", + "lean ground beef", + "salt", + "pimento stuffed green olives", + "ground cinnamon", + "ground black pepper", + "black olives", + "flat leaf parsley", + "tomato sauce", + "dry red wine", + "dry bread crumbs", + "dried oregano" + ] + }, + { + "id": 4526, + "cuisine": "italian", + "ingredients": [ + "red pepper", + "Bob Evans Italian Sausage", + "provolone cheese", + "pasta sauce", + "green pepper", + "sub buns", + "onions" + ] + }, + { + "id": 39126, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "lemon", + "ground cumin", + "chickpea flour", + "sesame seeds", + "salt", + "olive oil", + "garlic", + "pepper", + "sweet potatoes", + "ground coriander" + ] + }, + { + "id": 4436, + "cuisine": "italian", + "ingredients": [ + "salt", + "grated parmesan cheese", + "vegetable oil", + "pepper", + "all-purpose flour" + ] + }, + { + "id": 45775, + "cuisine": "mexican", + "ingredients": [ + "extra lean ground beef", + "cheese", + "zesty italian dressing", + "green pepper", + "flour tortillas", + "salsa", + "red pepper", + "chopped cilantro" + ] + }, + { + "id": 30247, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "reduced-fat sour cream", + "ground cumin", + "chili powder", + "corn tortillas", + "olive oil", + "purple onion", + "pepper", + "shredded lettuce", + "medium shrimp" + ] + }, + { + "id": 24761, + "cuisine": "southern_us", + "ingredients": [ + "water", + "lemon slices", + "tea bags", + "no-calorie sweetener", + "mint sprigs" + ] + }, + { + "id": 4376, + "cuisine": "italian", + "ingredients": [ + "capers", + "ground black pepper", + "anchovy paste", + "crushed tomatoes", + "butter", + "dry bread crumbs", + "spinach", + "veal", + "salt", + "olive oil", + "red wine", + "fresh parsley" + ] + }, + { + "id": 35294, + "cuisine": "indian", + "ingredients": [ + "clove", + "tumeric", + "garam masala", + "ginger", + "green cardamom", + "chopped cilantro", + "canola oil", + "black peppercorns", + "kosher salt", + "bay leaves", + "lamb shoulder", + "cumin seed", + "basmati rice", + "tomatoes", + "plain yogurt", + "mint leaves", + "garlic", + "brown cardamom", + "serrano chile", + "food colouring", + "rose water", + "crushed red pepper flakes", + "yellow onion", + "cinnamon sticks", + "saffron" + ] + }, + { + "id": 37927, + "cuisine": "chinese", + "ingredients": [ + "coconut", + "red pepper", + "chinese five-spice powder", + "low sodium soy sauce", + "sesame oil", + "garlic", + "cooked quinoa", + "vegetables", + "ginger", + "chopped cilantro", + "lean ground turkey", + "red pepper flakes", + "scallions" + ] + }, + { + "id": 37684, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "salt", + "pure vanilla extract", + "evaporated milk", + "sweetened condensed milk", + "water", + "hot water", + "eggs", + "instant espresso powder" + ] + }, + { + "id": 15429, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "parmigiano reggiano cheese", + "yellow onion", + "arborio rice", + "unsalted butter", + "salt", + "ground black pepper", + "butternut squash", + "water", + "finely chopped fresh parsley", + "beef broth" + ] + }, + { + "id": 8688, + "cuisine": "mexican", + "ingredients": [ + "milk", + "guava", + "corn starch", + "sugar", + "baking soda", + "water", + "cinnamon sticks" + ] + }, + { + "id": 38312, + "cuisine": "chinese", + "ingredients": [ + "peeled fresh ginger", + "garlic cloves", + "hoisin sauce", + "rice vinegar", + "low sodium soy sauce", + "dry sherry", + "boneless skinless chicken breast halves", + "cooking spray", + "dark sesame oil" + ] + }, + { + "id": 10839, + "cuisine": "southern_us", + "ingredients": [ + "water", + "onions", + "butter", + "black-eyed peas", + "smoked ham hocks", + "black pepper", + "salt" + ] + }, + { + "id": 7419, + "cuisine": "spanish", + "ingredients": [ + "arborio rice", + "olive oil", + "garlic cloves", + "dried oregano", + "green bell pepper", + "jalapeno chilies", + "onions", + "chicken broth", + "zucchini", + "red bell pepper", + "saffron threads", + "dried thyme", + "lemon wedge", + "plum tomatoes" + ] + }, + { + "id": 2246, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "garlic cloves", + "onions", + "soy sauce", + "rice vinegar", + "red bell pepper", + "rice wine", + "carrots", + "cabbage", + "broccoli florets", + "soba noodles", + "ginger root" + ] + }, + { + "id": 26458, + "cuisine": "filipino", + "ingredients": [ + "fruit", + "water", + "lime", + "sugar" + ] + }, + { + "id": 5677, + "cuisine": "mexican", + "ingredients": [ + "poblano peppers", + "purple onion", + "crimini mushrooms", + "flour tortillas", + "goat cheese", + "olive oil", + "large garlic cloves" + ] + }, + { + "id": 27169, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "frozen peas", + "olive oil", + "carrots", + "paneer", + "onions", + "curry powder", + "lentils", + "ground cumin" + ] + }, + { + "id": 4156, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "red capsicum", + "garlic chili sauce", + "chicken", + "red chili powder", + "vinegar", + "chili sauce", + "carrots", + "coriander powder", + "salt", + "lemon juice", + "garlic paste", + "capsicum", + "oil", + "spaghetti" + ] + }, + { + "id": 17686, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated lemon zest", + "crushed red pepper flakes", + "chopped parsley", + "shaved parmesan cheese", + "fresh lemon juice", + "salt", + "spaghetti" + ] + }, + { + "id": 43451, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "jicama", + "lime", + "paprika", + "orange", + "pineapple", + "cayenne", + "salt" + ] + }, + { + "id": 34850, + "cuisine": "italian", + "ingredients": [ + "pernod", + "olive oil", + "fennel bulb", + "garlic", + "shrimp", + "arborio rice", + "kosher salt", + "asparagus", + "lemon", + "lemon rind", + "onions", + "chicken stock", + "rosemary", + "unsalted butter", + "peas", + "lemon juice", + "boiling water", + "black pepper", + "mascarpone", + "mint leaves", + "fine sea salt", + "ground white pepper" + ] + }, + { + "id": 23505, + "cuisine": "vietnamese", + "ingredients": [ + "minced garlic", + "broccoli", + "vegetable oil", + "red bell pepper", + "low sodium chicken broth", + "oyster sauce", + "cauliflower", + "red pepper flakes", + "long grain white rice" + ] + }, + { + "id": 33980, + "cuisine": "italian", + "ingredients": [ + "honey", + "white wine vinegar", + "pepper", + "extra-virgin olive oil", + "salt", + "grated parmesan cheese", + "purple onion", + "dried basil", + "garlic", + "dried oregano" + ] + }, + { + "id": 40605, + "cuisine": "indian", + "ingredients": [ + "coconut flakes", + "yukon gold potatoes", + "all-purpose flour", + "rice flour", + "ground turmeric", + "cold water", + "semolina flour", + "ginger", + "cumin seed", + "frozen peas", + "chiles", + "vegetable oil", + "chickpeas", + "onions", + "ground cinnamon", + "curry powder", + "salt", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 28905, + "cuisine": "chinese", + "ingredients": [ + "granulated sugar", + "toasted sesame oil", + "broccoli", + "fresh ginger", + "oyster sauce", + "salt", + "canola oil" + ] + }, + { + "id": 10927, + "cuisine": "indian", + "ingredients": [ + "pepper", + "vegetable oil", + "fenugreek seeds", + "ghee", + "tomatoes", + "coriander powder", + "garlic", + "smoked paprika", + "ground cumin", + "water", + "ginger", + "carrots", + "onions", + "tumeric", + "shredded cabbage", + "salt", + "red bell pepper" + ] + }, + { + "id": 17470, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "green chilies", + "avocado", + "lean ground beef", + "sour cream", + "lettuce", + "Mexican cheese blend", + "taco seasoning", + "pizza crust", + "salsa" + ] + }, + { + "id": 48009, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "sweet onion", + "red bell pepper", + "pepper", + "salt", + "ground chipotle chile pepper", + "lime", + "ground cumin", + "mayonaise", + "fresh cilantro", + "sweet corn" + ] + }, + { + "id": 18917, + "cuisine": "british", + "ingredients": [ + "water", + "oil", + "baking powder", + "corn starch", + "salt", + "seasoning", + "all-purpose flour" + ] + }, + { + "id": 32265, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "allspice", + "nutmeg", + "salt", + "sugar", + "thyme", + "clove", + "onion powder" + ] + }, + { + "id": 20694, + "cuisine": "irish", + "ingredients": [ + "ground black pepper", + "garlic", + "butter", + "scallions", + "potatoes", + "salt", + "milk", + "peas", + "fresh parsley" + ] + }, + { + "id": 13547, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "salt", + "prosciutto", + "chopped fresh chives", + "frozen peas", + "ground black pepper", + "yukon gold potatoes", + "truffle oil", + "vegetable oil" + ] + }, + { + "id": 1041, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "olive oil", + "orzo", + "chopped cilantro", + "tumeric", + "unsalted butter", + "chickpeas", + "cumin", + "tomatoes", + "ground black pepper", + "salt", + "onions", + "water", + "cinnamon", + "lentils" + ] + }, + { + "id": 39926, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "baby carrots", + "eggs", + "steamed white rice", + "white onion", + "frozen peas", + "coconut oil", + "sesame oil" + ] + }, + { + "id": 1144, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "sea salt", + "lime", + "sour cream", + "corn", + "cayenne pepper", + "parmesan cheese" + ] + }, + { + "id": 1274, + "cuisine": "russian", + "ingredients": [ + "parsnips", + "ground black pepper", + "vegetable oil", + "salt", + "sour cream", + "cremini mushrooms", + "bay leaves", + "vegetable broth", + "sauerkraut juice", + "marjoram", + "fresh dill", + "leeks", + "cracked black pepper", + "ground allspice", + "celery", + "caraway seeds", + "sauerkraut", + "dry white wine", + "garlic", + "carrots" + ] + }, + { + "id": 13885, + "cuisine": "greek", + "ingredients": [ + "fresh basil", + "eggplant", + "red wine vinegar", + "fresh parsley", + "tomatoes", + "olive oil", + "potatoes", + "okra", + "white sugar", + "green bell pepper", + "zucchini", + "fresh oregano", + "chopped fresh mint", + "capers", + "salt and ground black pepper", + "garlic", + "onions" + ] + }, + { + "id": 37383, + "cuisine": "thai", + "ingredients": [ + "spinach leaves", + "sweet potatoes", + "light coconut milk", + "jasmine rice", + "basil", + "dark brown sugar", + "fish fillets", + "lime wedges", + "salt", + "lime zest", + "mint leaves", + "Thai red curry paste", + "asian fish sauce" + ] + }, + { + "id": 46480, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "water", + "salt", + "soy sauce", + "mirin", + "scallions", + "sugar", + "chili paste", + "rice vinegar", + "sushi rice", + "garlic", + "toasted sesame oil" + ] + }, + { + "id": 3465, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "garlic cloves", + "white onion", + "black beans", + "olive oil" + ] + }, + { + "id": 39416, + "cuisine": "indian", + "ingredients": [ + "ghee", + "chapati flour", + "salt", + "oil" + ] + }, + { + "id": 25408, + "cuisine": "jamaican", + "ingredients": [ + "ground black pepper", + "salt", + "onion powder", + "allspice", + "sugar", + "cinnamon", + "ground red pepper", + "thyme" + ] + }, + { + "id": 21279, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "mirin", + "seaweed", + "dashi", + "daikon", + "soy sauce", + "green onions", + "shiitake", + "soba noodles" + ] + }, + { + "id": 44948, + "cuisine": "mexican", + "ingredients": [ + "frozen whole kernel corn", + "cornmeal", + "water", + "salt", + "masa harina", + "baking powder", + "splenda no calorie sweetener", + "milk", + "margarine" + ] + }, + { + "id": 10420, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "mango", + "shredded cheddar cheese", + "butter", + "cooked chicken", + "fresh cilantro", + "bbq sauce" + ] + }, + { + "id": 34540, + "cuisine": "chinese", + "ingredients": [ + "avocado", + "olive oil", + "soy sauce", + "balsamic vinegar", + "romaine lettuce", + "chili powder", + "corn", + "firm tofu" + ] + }, + { + "id": 9292, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "white sugar", + "mirin" + ] + }, + { + "id": 36766, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "olive oil", + "cinnamon", + "couscous", + "ground cumin", + "boneless chicken skinless thigh", + "ground black pepper", + "lemon juice", + "garlic salt", + "chicken broth", + "eggplant", + "all-purpose flour", + "onions", + "ground ginger", + "water", + "dried apricot", + "carrots", + "dried cranberries" + ] + }, + { + "id": 8213, + "cuisine": "british", + "ingredients": [ + "kosher salt", + "old bay seasoning", + "canola oil", + "flour", + "cayenne pepper", + "cod fillets", + "malt vinegar", + "russet potatoes", + "beer" + ] + }, + { + "id": 17956, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "hot sauce", + "hamburger buns", + "chunky peanut butter", + "chopped cilantro", + "fresh ginger", + "cayenne pepper", + "soy sauce", + "lean ground beef" + ] + }, + { + "id": 2191, + "cuisine": "french", + "ingredients": [ + "mayonaise", + "red wine vinegar", + "fresh parsley", + "dijon mustard", + "garlic cloves", + "prepared horseradish", + "paprika", + "vegetable oil", + "fresh lemon juice" + ] + }, + { + "id": 32759, + "cuisine": "greek", + "ingredients": [ + "mint", + "dried minced onion", + "minced garlic", + "marjoram", + "dried basil", + "dried oregano", + "dried thyme" + ] + }, + { + "id": 48035, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "garlic", + "beer", + "ground cumin", + "tomatillos", + "fresh oregano", + "pork shoulder", + "chicken stock", + "cilantro", + "green chilies", + "onions", + "jalapeno chilies", + "cayenne pepper", + "oil" + ] + }, + { + "id": 3681, + "cuisine": "italian", + "ingredients": [ + "hazelnuts", + "semisweet chocolate", + "large egg yolks", + "chocolate glaze", + "sugar", + "unsalted butter" + ] + }, + { + "id": 15026, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crimini mushrooms", + "bow-tie pasta", + "half & half", + "button mushrooms", + "hot water", + "zucchini", + "shallots", + "corn starch", + "nutmeg", + "sherry", + "garlic" + ] + }, + { + "id": 6298, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "eggs", + "corn starch", + "oyster sauce", + "chives", + "dumplings" + ] + }, + { + "id": 22560, + "cuisine": "thai", + "ingredients": [ + "ground black pepper", + "coconut cream", + "coconut milk", + "kosher salt", + "basil leaves", + "carrots", + "onions", + "lime", + "veggies", + "applesauce", + "fish sauce", + "mint leaves", + "beef rib short", + "thai green curry paste" + ] + }, + { + "id": 32659, + "cuisine": "italian", + "ingredients": [ + "red wine", + "spaghetti", + "crushed tomatoes", + "salt", + "fresh basil", + "garlic", + "cooking oil", + "squid" + ] + }, + { + "id": 38402, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "lard", + "white onion", + "fine sea salt", + "cold water", + "dried pinto beans", + "corn tortillas", + "queso manchego", + "garlic cloves" + ] + }, + { + "id": 15114, + "cuisine": "french", + "ingredients": [ + "sugar", + "reduced fat milk", + "fresh raspberries", + "large egg whites", + "vanilla extract", + "water", + "cooking spray", + "large eggs", + "salt" + ] + }, + { + "id": 5358, + "cuisine": "chinese", + "ingredients": [ + "lime", + "red pepper", + "beef", + "cucumber", + "olive oil", + "ginger", + "soy sauce", + "rice noodles", + "coriander" + ] + }, + { + "id": 15849, + "cuisine": "mexican", + "ingredients": [ + "melted butter", + "fresh cilantro", + "green onions", + "garlic salt", + "black beans", + "roasted red peppers", + "chili powder", + "cooked rice", + "Mexican cheese blend", + "chicken breasts", + "ground cumin", + "lime juice", + "flour tortillas", + "sour cream" + ] + }, + { + "id": 34911, + "cuisine": "jamaican", + "ingredients": [ + "white rum", + "dark rum", + "water", + "pineapple juice", + "lime juice", + "coconut rum", + "frozen fruit", + "cherry syrup" + ] + }, + { + "id": 5196, + "cuisine": "irish", + "ingredients": [ + "butter", + "onions", + "water", + "carrots", + "chopped celery", + "marjoram", + "pork hocks", + "green split peas" + ] + }, + { + "id": 35102, + "cuisine": "chinese", + "ingredients": [ + "water", + "fully cooked ham", + "corn starch", + "egg whites", + "firm tofu", + "ground beef", + "cream style corn", + "vegetable oil", + "medium shrimp", + "leeks", + "fresh mushrooms" + ] + }, + { + "id": 32496, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "freshly grated parmesan", + "red pepper flakes", + "fresh oregano", + "onions", + "milk", + "marinara sauce", + "salt", + "garlic cloves", + "olive oil", + "ground sirloin", + "dry bread crumbs", + "flat leaf parsley", + "dried pasta", + "large egg yolks", + "dry red wine", + "freshly ground pepper" + ] + }, + { + "id": 35094, + "cuisine": "british", + "ingredients": [ + "eggs", + "unsalted butter", + "ground almonds", + "sliced almonds", + "egg yolks", + "plain flour", + "caster sugar", + "lemon", + "raspberry jam", + "egg whites" + ] + }, + { + "id": 2494, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "evaporated milk", + "cinnamon", + "ground cinnamon", + "water", + "pumpkin", + "all-purpose flour", + "piloncillo", + "milk", + "baking powder", + "cinnamon sticks", + "clove", + "shortening", + "granulated sugar", + "salt" + ] + }, + { + "id": 27577, + "cuisine": "british", + "ingredients": [ + "large eggs", + "salt", + "grated lemon peel", + "water", + "vanilla extract", + "fresh lemon juice", + "sugar", + "fresh blueberries", + "cream cheese", + "unsalted butter", + "pound cake", + "heavy whipping cream" + ] + }, + { + "id": 32834, + "cuisine": "greek", + "ingredients": [ + "light brown sugar", + "milk", + "all-purpose flour", + "sugar", + "vanilla extract", + "unsweetened cocoa powder", + "eggs", + "baking soda", + "greek style plain yogurt", + "mini chocolate chips", + "salt" + ] + }, + { + "id": 23591, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "mustard seeds", + "salt", + "jaggery", + "red chili peppers", + "onions", + "curry leaves", + "peanut oil" + ] + }, + { + "id": 38407, + "cuisine": "filipino", + "ingredients": [ + "pork", + "water", + "ginger", + "onions", + "white vinegar", + "water chestnuts, drained and chopped", + "large eggs", + "carrots", + "soy sauce", + "fresh ginger", + "garlic cloves", + "bamboo shoots", + "brown sugar", + "black pepper", + "wonton wrappers", + "corn starch" + ] + }, + { + "id": 10571, + "cuisine": "indian", + "ingredients": [ + "yellow mustard seeds", + "fresh cilantro", + "spices", + "cilantro", + "fenugreek seeds", + "plain yogurt", + "fresh ginger", + "lemon", + "salt", + "cucumber", + "black pepper", + "olive oil", + "russet potatoes", + "garlic", + "cumin seed", + "cauliflower", + "pepper", + "turmeric root", + "red pepper flakes", + "yellow onion", + "frozen peas" + ] + }, + { + "id": 25319, + "cuisine": "mexican", + "ingredients": [ + "lime", + "hass avocado", + "salt", + "jalapeno chilies", + "tomatoes", + "scallions" + ] + }, + { + "id": 6552, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "sugar", + "chocolate", + "coffee", + "white chocolate", + "cake mix" + ] + }, + { + "id": 14839, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "mussels", + "yukon gold potatoes", + "fresh parsley", + "broccoli rabe", + "anchovy filets", + "water", + "garlic" + ] + }, + { + "id": 7085, + "cuisine": "cajun_creole", + "ingredients": [ + "white wine", + "cajun seasoning", + "vegetable oil", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 29884, + "cuisine": "italian", + "ingredients": [ + "swordfish fillets", + "dried oregano", + "large garlic cloves", + "hot water", + "extra-virgin olive oil", + "fresh parsley", + "fresh lemon juice" + ] + }, + { + "id": 20944, + "cuisine": "french", + "ingredients": [ + "fresh blueberries", + "maple syrup", + "powdered sugar", + "vanilla extract", + "whole nutmegs", + "riesling", + "cream cheese", + "lime rind", + "non-fat sour cream", + "fresh lime juice" + ] + }, + { + "id": 43523, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "coconut milk", + "prawns", + "fresh red chili", + "curry paste" + ] + }, + { + "id": 18480, + "cuisine": "japanese", + "ingredients": [ + "rice flour", + "cold water", + "salt" + ] + }, + { + "id": 3694, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "garlic", + "coconut milk", + "spices", + "firm tofu", + "curry leaf", + "red lentils", + "cilantro", + "tamarind concentrate", + "cherries", + "yellow onion", + "ghee" + ] + }, + { + "id": 8240, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "sesame seeds", + "flank steak", + "carrots", + "soy sauce", + "cooking oil", + "sesame oil", + "onions", + "sugar pea", + "bell pepper", + "orange juice", + "grated orange", + "fresh ginger", + "green onions", + "garlic cloves" + ] + }, + { + "id": 39459, + "cuisine": "mexican", + "ingredients": [ + "corn", + "jalapeno chilies", + "salt", + "red bell pepper", + "avocado", + "cherry tomatoes", + "cilantro", + "pinto beans", + "lime", + "grapeseed oil", + "garlic cloves", + "cumin", + "black beans", + "kidney beans", + "purple onion", + "smoked paprika" + ] + }, + { + "id": 20702, + "cuisine": "cajun_creole", + "ingredients": [ + "crawfish", + "butter", + "chicken stock cubes", + "creole seasoning", + "celery ribs", + "parmesan cheese", + "whipping cream", + "all-purpose flour", + "fresh parsley", + "pepper", + "diced tomatoes", + "salt", + "garlic cloves", + "green bell pepper", + "green onions", + "linguine", + "hot sauce", + "onions" + ] + }, + { + "id": 25781, + "cuisine": "italian", + "ingredients": [ + "meatballs", + "shredded mozzarella cheese", + "apple jelly", + "salt", + "ground black pepper", + "hoagie rolls", + "pizza sauce", + "italian seasoning" + ] + }, + { + "id": 20867, + "cuisine": "french", + "ingredients": [ + "olive oil", + "poppy seeds", + "dry white wine", + "low salt chicken broth", + "dijon mustard", + "white wine vinegar", + "red potato", + "shallots", + "fresh parsley" + ] + }, + { + "id": 8630, + "cuisine": "korean", + "ingredients": [ + "white vinegar", + "sesame seeds", + "english cucumber", + "sugar", + "extract", + "Korean chile flakes", + "shallots", + "garlic cloves", + "pepper", + "salt" + ] + }, + { + "id": 32287, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chicken breast halves", + "ground allspice", + "low salt chicken broth", + "tomatoes", + "annatto seeds", + "salt", + "lemon juice", + "ground cumin", + "water", + "banana leaves", + "orange juice", + "onions", + "swiss chard", + "cilantro sprigs", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 22518, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "fresh thyme leaves", + "olives", + "olive oil", + "garlic cloves", + "anchovies", + "pizza doughs", + "ground black pepper", + "onions" + ] + }, + { + "id": 17514, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "eggplant", + "cooking spray", + "organic vegetable broth", + "fresh parsley", + "kosher salt", + "zucchini", + "chopped fresh thyme", + "red bell pepper", + "tomatoes", + "olive oil", + "extra firm tofu", + "fresh orange juice", + "herbes de provence", + "vidalia onion", + "ground black pepper", + "rosé wine", + "garlic cloves", + "olives" + ] + }, + { + "id": 11637, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "olive oil", + "oregano", + "rosemary", + "thyme", + "chicken legs", + "garlic" + ] + }, + { + "id": 28735, + "cuisine": "spanish", + "ingredients": [ + "green olives", + "potatoes", + "olive oil", + "salt", + "pepper", + "sweet pepper", + "tomatoes", + "cod fillets" + ] + }, + { + "id": 13012, + "cuisine": "moroccan", + "ingredients": [ + "hungarian sweet paprika", + "ground black pepper", + "garlic cloves", + "olive oil", + "diced tomatoes", + "red bell pepper", + "eggplant", + "salt", + "ground cumin", + "tomato paste", + "cooking spray", + "fresh lemon juice" + ] + }, + { + "id": 9180, + "cuisine": "italian", + "ingredients": [ + "pecorino cheese", + "large eggs", + "parmesan cheese", + "garlic cloves", + "black pepper", + "salt", + "pancetta", + "unsalted butter", + "spaghetti" + ] + }, + { + "id": 3515, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "dry milk powder", + "bread flour", + "active dry yeast", + "salt", + "garlic salt", + "olive oil", + "margarine", + "white sugar", + "water", + "parmesan cheese", + "shredded mozzarella cheese", + "dried rosemary" + ] + }, + { + "id": 9923, + "cuisine": "southern_us", + "ingredients": [ + "quickcooking grits", + "margarine", + "water", + "cheese", + "vegetable oil cooking spray", + "ground red pepper", + "large eggs", + "salt" + ] + }, + { + "id": 12628, + "cuisine": "indian", + "ingredients": [ + "milk", + "ghee", + "moong dal", + "millet", + "jaggery", + "water", + "salt", + "cardamon", + "cashew nuts" + ] + }, + { + "id": 24319, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "flour tortillas", + "chopped tomatoes", + "salsa", + "shredded cheddar cheese", + "non-fat sour cream", + "chopped green bell pepper", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 5448, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "shredded monterey jack cheese", + "corn tortillas", + "knorr chipotl minicub", + "nopales", + "sugar", + "garlic", + "onions", + "vegetable oil", + "sour cream" + ] + }, + { + "id": 46624, + "cuisine": "irish", + "ingredients": [ + "butter", + "cabbage", + "leeks", + "whole wheat breadcrumbs", + "green onions", + "fresh parsley", + "water", + "bacon" + ] + }, + { + "id": 44350, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "thai basil", + "cilantro", + "fresh herbs", + "fish sauce", + "water", + "hoisin sauce", + "dried rice noodles", + "london broil", + "beef bones", + "lime", + "spices", + "hot chili sauce", + "onions", + "mint", + "chili pepper", + "beef", + "ginger", + "beansprouts" + ] + }, + { + "id": 43085, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "large eggs", + "sour cream", + "milk", + "salt", + "shredded cheddar cheese", + "baking powder", + "onions", + "unsalted butter", + "garlic cloves" + ] + }, + { + "id": 45177, + "cuisine": "filipino", + "ingredients": [ + "cooked rice", + "bay leaves", + "oil", + "tumeric", + "chicken stock cubes", + "hot water", + "mung beans", + "chili sauce", + "onions", + "chicken wings", + "small potatoes", + "garlic cloves" + ] + }, + { + "id": 33021, + "cuisine": "british", + "ingredients": [ + "vanilla extract", + "graham cracker crumbs", + "confectioners sugar", + "butter", + "sweetened condensed milk", + "bananas", + "heavy whipping cream" + ] + }, + { + "id": 12077, + "cuisine": "french", + "ingredients": [ + "clove", + "day old bread", + "sea salt", + "carrots", + "celery root", + "turnips", + "horseradish", + "bay leaves", + "bouquet garni", + "peppercorns", + "mustard", + "leeks", + "garlic", + "onions", + "rutabaga", + "beef", + "cornichons", + "pickled onion", + "marrow bones" + ] + }, + { + "id": 19903, + "cuisine": "mexican", + "ingredients": [ + "mint sprigs", + "fresh mint", + "sugar", + "fresh raspberries", + "water", + "fresh lemon juice", + "rose hip tea bags" + ] + }, + { + "id": 11456, + "cuisine": "korean", + "ingredients": [ + "water", + "sauce", + "eggs", + "green onions", + "pepper flakes", + "sesame seeds", + "chinese chives", + "soy sauce", + "sesame oil" + ] + }, + { + "id": 41243, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "prosciutto", + "provolone cheese", + "shiitake", + "dry white wine", + "veal scallops", + "olive oil", + "green onions", + "garlic cloves", + "tomatoes", + "eggplant", + "butter" + ] + }, + { + "id": 2120, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "maple syrup", + "extra-virgin olive oil", + "ground black pepper", + "salt", + "shallots", + "fresh lemon juice" + ] + }, + { + "id": 43701, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "flank steak", + "scallions", + "chinese rice wine", + "fresh ginger", + "garlic", + "corn starch", + "ketchup", + "vegetable oil", + "garlic chili sauce", + "sugar", + "hoisin sauce", + "salt", + "red bell pepper" + ] + }, + { + "id": 268, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "unsalted butter", + "shredded parmesan cheese", + "rosemary", + "baking powder", + "thyme", + "kosher salt", + "french bread", + "sweet corn", + "yellow corn meal", + "ground black pepper", + "heavy cream", + "onions" + ] + }, + { + "id": 15161, + "cuisine": "french", + "ingredients": [ + "strawberry syrup", + "vanilla extract", + "powdered sugar", + "croissants", + "milk", + "butter", + "cream sweeten whip", + "large eggs" + ] + }, + { + "id": 24302, + "cuisine": "cajun_creole", + "ingredients": [ + "bell pepper", + "old bay seasoning", + "salt", + "garlic powder", + "onion powder", + "bacon", + "broth", + "pepper", + "green onions", + "heavy cream", + "lemon pepper", + "lobster", + "spices", + "garlic", + "oregano" + ] + }, + { + "id": 34114, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "light brown sugar", + "reduced sodium soy sauce" + ] + }, + { + "id": 24715, + "cuisine": "french", + "ingredients": [ + "yolk", + "fine granulated sugar", + "unsalted butter", + "vanilla extract", + "semisweet chocolate", + "Grand Marnier", + "heavy cream" + ] + }, + { + "id": 26617, + "cuisine": "southern_us", + "ingredients": [ + "pork", + "boneless pork loin", + "water", + "salt", + "pepper", + "rice" + ] + }, + { + "id": 5452, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "white pepper", + "scallions", + "cooked white rice", + "green bell pepper", + "salt", + "carrots", + "dark soy sauce", + "purple onion", + "oil", + "fresh green peas", + "soy sauce", + "fresh mushrooms", + "mung bean sprouts" + ] + }, + { + "id": 49616, + "cuisine": "greek", + "ingredients": [ + "pepper", + "chopped fresh mint", + "grape leaves", + "salt", + "ground lamb", + "water", + "long grain white rice", + "pinenuts", + "onions" + ] + }, + { + "id": 4918, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "finely chopped onion", + "worcestershire sauce", + "milk", + "lean ground beef", + "dried parsley", + "bread crumb fresh", + "barbecue sauce", + "peach preserves", + "hot pepper sauce", + "cajun seasoning" + ] + }, + { + "id": 18977, + "cuisine": "french", + "ingredients": [ + "beef stock", + "button mushrooms", + "garlic cloves", + "onions", + "pepper", + "butter", + "salt", + "bread slices", + "eggs", + "red wine vinegar", + "bacon slices", + "chopped parsley", + "pearl onions", + "beaujolais", + "thyme sprig", + "bay leaf" + ] + }, + { + "id": 43379, + "cuisine": "southern_us", + "ingredients": [ + "sesame seeds", + "vegetable shortening", + "warm water", + "unsalted butter", + "cake flour", + "sugar", + "baking soda", + "buttermilk", + "active dry yeast", + "baking powder", + "salt" + ] + }, + { + "id": 10796, + "cuisine": "irish", + "ingredients": [ + "large eggs", + "corn starch", + "sugar", + "salt", + "blackberries", + "butter", + "frozen blueberries", + "raspberries", + "fresh lemon juice" + ] + }, + { + "id": 3866, + "cuisine": "italian", + "ingredients": [ + "fresh leav spinach", + "ground nutmeg", + "lemon", + "chopped fresh sage", + "semolina flour", + "fennel", + "whole milk ricotta cheese", + "salt", + "pinenuts", + "grated parmesan cheese", + "garlic", + "freshly ground pepper", + "rocket leaves", + "olive oil", + "chopped fresh chives", + "fine sea salt", + "fresh chervil" + ] + }, + { + "id": 34979, + "cuisine": "spanish", + "ingredients": [ + "golden raisins", + "salsa", + "ground cumin", + "slivered almonds", + "cilantro sprigs", + "garlic cloves", + "ground cinnamon", + "boneless skinless chicken breasts", + "chopped onion", + "olive oil", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 19536, + "cuisine": "southern_us", + "ingredients": [ + "pie dough", + "all-purpose flour", + "ground cinnamon", + "peaches", + "large egg whites", + "sugar", + "cooking spray" + ] + }, + { + "id": 30784, + "cuisine": "southern_us", + "ingredients": [ + "cream sherry", + "sugar", + "navel oranges", + "sea salt", + "coconut" + ] + }, + { + "id": 34205, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "cilantro leaves", + "carrots", + "rice noodles", + "skinless chicken breasts", + "cucumber", + "lime", + "rice vinegar", + "Thai fish sauce", + "red pepper", + "baby gem lettuce", + "pancake" + ] + }, + { + "id": 1319, + "cuisine": "italian", + "ingredients": [ + "meat", + "provolone cheese", + "tomatoes", + "pitted olives", + "shredded lettuce", + "italian salad dressing", + "vinegar", + "purple onion" + ] + }, + { + "id": 16486, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "zucchini", + "extra-virgin olive oil", + "garlic cloves", + "fresh rosemary", + "eggplant", + "dry white wine", + "sweet mini bells", + "plum tomatoes", + "fresh sage", + "vegetable oil spray", + "dried lavender blossoms", + "halibut", + "fennel seeds", + "fresh marjoram", + "fresh thyme", + "purple onion", + "fresh lemon juice" + ] + }, + { + "id": 2407, + "cuisine": "chinese", + "ingredients": [ + "fish sauce", + "sesame oil", + "minced pork", + "long beans", + "light soy sauce", + "ground white pepper", + "beans", + "garlic", + "dark soy sauce", + "peanuts", + "corn flour" + ] + }, + { + "id": 2080, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "vinegar", + "garlic", + "chicken broth", + "pepper", + "green onions", + "chicken", + "soy sauce", + "flour", + "orange juice", + "eggs", + "Sriracha", + "vegetable oil", + "orange zest" + ] + }, + { + "id": 43515, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "sherry vinegar", + "tomatoes", + "olive oil", + "orange", + "ice water", + "bread", + "milk", + "green pepper" + ] + }, + { + "id": 43456, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "paprika", + "corn", + "onion salt", + "shredded cheese", + "black beans", + "chili powder", + "salt", + "cooking spray", + "diced tomatoes", + "ground cumin" + ] + }, + { + "id": 32283, + "cuisine": "spanish", + "ingredients": [ + "pinenuts", + "raisins", + "shallots", + "fresh spinach", + "golden delicious apples", + "olive oil" + ] + }, + { + "id": 35142, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "chopped fresh thyme", + "all-purpose flour", + "water", + "shallots", + "extra-virgin olive oil", + "kosher salt", + "cooking spray", + "butter", + "fresh lemon juice", + "parmigiano reggiano cheese", + "baking potatoes", + "grated lemon zest" + ] + }, + { + "id": 39622, + "cuisine": "italian", + "ingredients": [ + "garlic", + "pepper", + "onions", + "chicken stock", + "salt", + "olive oil", + "frozen peas" + ] + }, + { + "id": 3221, + "cuisine": "southern_us", + "ingredients": [ + "southern comfort", + "orange juice", + "water", + "sour mix" + ] + }, + { + "id": 36701, + "cuisine": "indian", + "ingredients": [ + "kaffir lime leaves", + "crushed tomatoes", + "plums", + "lamb", + "mustard seeds", + "tumeric", + "cinnamon", + "yellow onion", + "cumin seed", + "coconut sugar", + "garam masala", + "salt", + "coconut cream", + "ghee", + "red chili peppers", + "ginger", + "fenugreek seeds", + "garlic cloves" + ] + }, + { + "id": 1065, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "salt", + "sugar", + "all-purpose flour", + "ice water" + ] + }, + { + "id": 38701, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "paprika", + "cream cheese", + "canola oil", + "chicken breasts", + "salt", + "fresh lime juice", + "ground cumin", + "ground black pepper", + "garlic", + "corn tortillas", + "shredded Monterey Jack cheese", + "chili powder", + "yellow onion", + "chopped cilantro" + ] + }, + { + "id": 20545, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "yoghurt", + "extra-virgin olive oil", + "fresh mint", + "olive oil", + "chicken breasts", + "ground allspice", + "frozen peas", + "pepper", + "spring onions", + "black olives", + "couscous", + "fresh red chili", + "feta cheese", + "lemon", + "cucumber", + "dried oregano" + ] + }, + { + "id": 8175, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "coriander seeds", + "cinnamon", + "green cardamom", + "cumin seed", + "ginger paste", + "red chili peppers", + "whole garam masala", + "salt", + "green chilies", + "onions", + "tumeric", + "coriander powder", + "kasuri methi", + "brown cardamom", + "oil", + "ground cumin", + "clove", + "water", + "garbonzo bean", + "cilantro leaves", + "liquid", + "masala" + ] + }, + { + "id": 5742, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "olive oil", + "purple onion", + "feta cheese crumbles", + "romaine lettuce", + "boneless skinless chicken breasts", + "greek style plain yogurt", + "cucumber", + "black pepper", + "kalamata", + "dried dillweed", + "dried oregano", + "tomatoes", + "kosher salt", + "garlic", + "fresh lemon juice" + ] + }, + { + "id": 32600, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "garlic", + "smoked paprika", + "olive oil", + "crushed red pepper flakes", + "fresh parsley leaves", + "shallots", + "lamb", + "fresh mint", + "kosher salt", + "lemon", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 30775, + "cuisine": "indian", + "ingredients": [ + "flatbread", + "jalapeno chilies", + "ginger", + "ground beef", + "kosher salt", + "lemon", + "coconut milk", + "tumeric", + "lettuce leaves", + "garlic", + "onions", + "garam masala", + "cilantro", + "ghee" + ] + }, + { + "id": 9298, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "sesame oil", + "salt", + "mint", + "sliced cucumber", + "slaw mix", + "red bell pepper", + "fish sauce", + "flank steak", + "ginger", + "chopped cilantro", + "brown sugar", + "shallots", + "thai chile" + ] + }, + { + "id": 3807, + "cuisine": "italian", + "ingredients": [ + "green cabbage", + "zucchini", + "carrots", + "olive oil", + "white beans", + "onions", + "celery ribs", + "parmesan cheese", + "beef broth", + "plum tomatoes", + "red potato", + "salt", + "green beans" + ] + }, + { + "id": 42317, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "yellow onion", + "sugar", + "balsamic vinegar", + "italian seasoning", + "low sodium fat free vegetable broth", + "garlic cloves", + "crushed tomatoes", + "salt" + ] + }, + { + "id": 3501, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "green onions", + "chinese noodles", + "chinese five-spice powder", + "pork tenderloin", + "salt", + "water", + "peeled fresh ginger", + "canola oil" + ] + }, + { + "id": 26883, + "cuisine": "italian", + "ingredients": [ + "brewed coffee", + "vanilla extract", + "whipping cream", + "caramel topping" + ] + }, + { + "id": 14685, + "cuisine": "thai", + "ingredients": [ + "eggs", + "kosher salt", + "flour", + "red pepper flakes", + "oil", + "celery", + "salad", + "fish sauce", + "sesame seeds", + "baking powder", + "persian cucumber", + "shrimp", + "frozen peas", + "ground ginger", + "soy sauce", + "shredded carrots", + "sesame oil", + "frozen corn kernels", + "coconut milk", + "mint", + "waffle", + "green onions", + "rice vinegar", + "garlic cloves", + "chopped cilantro" + ] + }, + { + "id": 3790, + "cuisine": "italian", + "ingredients": [ + "extra lean ground beef", + "lasagna noodles, cooked and drained", + "garlic", + "fresh basil", + "freshly grated parmesan", + "diced tomatoes", + "eggs", + "mozzarella cheese", + "balsamic vinegar", + "provolone cheese", + "pasta sauce", + "low-fat ricotta", + "crushed red pepper flakes" + ] + }, + { + "id": 16685, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "strawberries", + "powdered sugar", + "light corn syrup", + "pears", + "pineapple", + "champagne", + "orange", + "whipping cream", + "kiwi" + ] + }, + { + "id": 40050, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "ground pork", + "eggs", + "sesame oil", + "chinese cabbage", + "green onions", + "garlic", + "soy sauce", + "wonton wrappers" + ] + }, + { + "id": 33488, + "cuisine": "french", + "ingredients": [ + "prunes", + "sherry wine vinegar", + "organic chicken broth", + "shallots", + "thyme sprigs", + "olive oil", + "chopped fresh thyme", + "free-range chickens", + "armagnac" + ] + }, + { + "id": 10338, + "cuisine": "italian", + "ingredients": [ + "lemon zest", + "chopped fresh mint", + "olive oil", + "salt", + "black pepper", + "linguine", + "zucchini", + "garlic cloves" + ] + }, + { + "id": 5450, + "cuisine": "japanese", + "ingredients": [ + "tofu", + "butternut", + "kale", + "fresh shiitake mushrooms", + "rich chicken stock", + "bok choy", + "chard", + "ground cloves", + "coffee", + "dried shiitake mushrooms", + "scallions", + "cauliflower", + "soy sauce", + "mirin", + "ginger", + "seaweed", + "peppercorns", + "shiro miso", + "water", + "green onions", + "soft-boiled egg", + "garlic cloves" + ] + }, + { + "id": 29158, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "okra", + "vegetable oil", + "long grain white rice", + "spices", + "minced garlic", + "onions" + ] + }, + { + "id": 33442, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "fresh lemon juice", + "large egg whites", + "slivered almonds" + ] + }, + { + "id": 21564, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "corn", + "garlic", + "ground beef", + "black beans", + "guacamole", + "taco seasoning", + "tomatoes", + "salsa verde", + "purple onion", + "onions", + "water", + "cheese", + "sour cream" + ] + }, + { + "id": 1686, + "cuisine": "french", + "ingredients": [ + "sugar", + "all-purpose flour", + "semisweet chocolate", + "powdered sugar", + "large eggs", + "unsalted butter" + ] + }, + { + "id": 15461, + "cuisine": "french", + "ingredients": [ + "mussels", + "black peppercorns", + "milk", + "dry white wine", + "extra-virgin olive oil", + "oil", + "tomato paste", + "fresh sea bass", + "fresh thyme", + "fresh tarragon", + "salt", + "fresh parsley", + "chicken stock", + "pepper", + "fennel bulb", + "parsley", + "garlic", + "carrots", + "saffron threads", + "tomatoes", + "oysters", + "bay leaves", + "littleneck clams", + "squid tube", + "onions" + ] + }, + { + "id": 34686, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "ground turmeric", + "thai chile", + "red bell pepper", + "plain yogurt", + "garlic", + "onions", + "coriander seeds", + "lemon juice", + "ground lamb" + ] + }, + { + "id": 38753, + "cuisine": "chinese", + "ingredients": [ + "honey", + "spareribs", + "Shaoxing wine", + "hoisin sauce", + "soy sauce", + "chinese five-spice powder" + ] + }, + { + "id": 29977, + "cuisine": "vietnamese", + "ingredients": [ + "honey", + "rice vinegar", + "oyster sauce", + "pepper", + "large garlic cloves", + "fresh mushrooms", + "grated orange", + "soy sauce", + "olive oil", + "chopped onion", + "corn starch", + "minced ginger", + "salt", + "orange juice", + "chicken" + ] + }, + { + "id": 29662, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "granulated sugar", + "vanilla", + "semi-sweet chocolate morsels", + "baking soda", + "baking powder", + "all-purpose flour", + "powdered sugar", + "large eggs", + "salt", + "miniature semisweet chocolate chips", + "unsalted butter", + "heavy cream", + "chopped walnuts" + ] + }, + { + "id": 21107, + "cuisine": "japanese", + "ingredients": [ + "water", + "shredded carrots", + "fresh lemon juice", + "dashi kombu", + "watercress", + "yellow miso", + "daikon", + "green onion bottoms", + "fresh dill", + "olive oil", + "onion tops" + ] + }, + { + "id": 8778, + "cuisine": "jamaican", + "ingredients": [ + "tomatoes", + "fresh thyme", + "butter", + "salt", + "fish", + "pepper", + "flour", + "sunflower oil", + "scallions", + "water", + "apple cider vinegar", + "garlic", + "onions", + "ketchup", + "bell pepper", + "lemon", + "sauce" + ] + }, + { + "id": 26431, + "cuisine": "spanish", + "ingredients": [ + "tapioca flour", + "extra-virgin olive oil", + "almond flour", + "salt", + "water", + "coconut flour", + "eggs", + "butter" + ] + }, + { + "id": 1057, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "vegetables", + "oyster sauce", + "sugar", + "fresh ginger", + "garlic", + "toasted sesame oil", + "sugar pea", + "baking soda", + "scallions", + "skirt steak", + "dark soy sauce", + "store bought low sodium chicken stock", + "Shaoxing wine", + "corn starch" + ] + }, + { + "id": 33454, + "cuisine": "jamaican", + "ingredients": [ + "lime zest", + "black pepper", + "chopped fresh thyme", + "codfish", + "seasoning", + "garlic powder", + "anise", + "scallion greens", + "bread crumbs", + "scotch bonnet chile", + "olive oil spray", + "mayonaise", + "ackee", + "creole seasoning" + ] + }, + { + "id": 46937, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "butter", + "crème fraîche", + "large shrimp", + "tomatoes", + "olive oil", + "salt", + "tagliatelle", + "pepper", + "red wine", + "cayenne pepper", + "chorizo sausage", + "tomato paste", + "fresh cilantro", + "garlic", + "scallions" + ] + }, + { + "id": 103, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "collard greens", + "purple onion", + "hot red pepper flakes", + "dark brown sugar", + "chicken broth", + "bacon" + ] + }, + { + "id": 42620, + "cuisine": "mexican", + "ingredients": [ + "spinach", + "corn", + "green onions", + "black beans", + "tortillas", + "cilantro", + "pepper", + "pepper jack", + "salt", + "cheddar cheese", + "olive oil", + "boneless skinless chicken breasts" + ] + }, + { + "id": 9632, + "cuisine": "jamaican", + "ingredients": [ + "chicken", + "jerk marinade" + ] + }, + { + "id": 23061, + "cuisine": "chinese", + "ingredients": [ + "oyster sauce", + "salt", + "coleslaw", + "water chestnuts", + "egg roll skins", + "oil", + "char siu" + ] + }, + { + "id": 26297, + "cuisine": "southern_us", + "ingredients": [ + "dark corn syrup", + "vanilla extract", + "pecan halves", + "refrigerated piecrusts", + "chopped pecans", + "sugar", + "butter", + "large eggs", + "salt" + ] + }, + { + "id": 39275, + "cuisine": "mexican", + "ingredients": [ + "ground chicken", + "cream style corn", + "chopped cilantro", + "green chile", + "corn mix muffin", + "salt", + "ground cumin", + "eggs", + "pepper", + "ground red pepper", + "monterey jack", + "cheddar cheese", + "milk", + "red enchilada sauce" + ] + }, + { + "id": 39252, + "cuisine": "southern_us", + "ingredients": [ + "bread crumbs", + "flour", + "salt", + "herbs", + "butter", + "Boursin", + "pepper", + "whole milk", + "sharp cheddar cheese", + "melted butter", + "jalapeno chilies", + "garlic", + "elbow macaroni" + ] + }, + { + "id": 20613, + "cuisine": "mexican", + "ingredients": [ + "barbecue sauce", + "ranch dressing" + ] + }, + { + "id": 18295, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "goat cheese", + "garlic", + "spaghetti", + "salt", + "arugula", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 44774, + "cuisine": "british", + "ingredients": [ + "cheese", + "brown ale", + "whole wheat bread", + "English mustard" + ] + }, + { + "id": 13407, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "orange bell pepper", + "salt", + "medium shrimp", + "cream of celery soup", + "shrimp and crab boil seasoning", + "green onions", + "creole seasoning", + "onions", + "reduced sodium cream of mushroom soup", + "water", + "butter", + "celery", + "cream", + "cream style corn", + "frozen corn", + "fresh parsley" + ] + }, + { + "id": 28240, + "cuisine": "southern_us", + "ingredients": [ + "horseradish", + "shredded coleslaw mix", + "sugar", + "salt", + "cider vinegar", + "mayonaise", + "ground pepper" + ] + }, + { + "id": 39051, + "cuisine": "mexican", + "ingredients": [ + "tomato salsa", + "crab meat", + "coriander", + "jicama", + "fresh lime juice" + ] + }, + { + "id": 14322, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "bay leaves", + "chorizo sausage", + "chicken stock", + "water", + "salt", + "minced garlic", + "vegetable oil", + "black beans", + "pork tenderloin", + "onions" + ] + }, + { + "id": 4382, + "cuisine": "korean", + "ingredients": [ + "chicken wings", + "crushed red pepper flakes", + "rice vinegar", + "toasted sesame oil", + "honey", + "fine sea salt", + "scallions", + "large egg whites", + "ginger", + "apple juice", + "toasted sesame seeds", + "baking soda", + "tamari soy sauce", + "garlic cloves" + ] + }, + { + "id": 671, + "cuisine": "southern_us", + "ingredients": [ + "cream", + "cayenne", + "whole milk", + "sirloin steak", + "panko breadcrumbs", + "garlic powder", + "large eggs", + "vegetable oil", + "beef broth", + "seasoning salt", + "self rising flour", + "onion powder", + "all-purpose flour", + "fresh chives", + "ground black pepper", + "gravy", + "pan drippings", + "smoked paprika" + ] + }, + { + "id": 39119, + "cuisine": "greek", + "ingredients": [ + "pepper", + "basil", + "onion powder", + "garlic powder", + "oregano", + "sugar", + "sea salt" + ] + }, + { + "id": 6244, + "cuisine": "mexican", + "ingredients": [ + "chipotles in adobo", + "mayonaise", + "plain yogurt" + ] + }, + { + "id": 43885, + "cuisine": "french", + "ingredients": [ + "large eggs", + "sugar", + "all-purpose flour", + "whole milk", + "unsalted butter" + ] + }, + { + "id": 10959, + "cuisine": "indian", + "ingredients": [ + "ground fennel", + "mushrooms", + "salt", + "lemon juice", + "ghee", + "ground turmeric", + "potatoes", + "peas", + "green chilies", + "coconut milk", + "cashew nuts", + "tomatoes", + "cinnamon", + "cilantro leaves", + "carrots", + "onions", + "clove", + "mint leaves", + "garlic", + "cardamom", + "bay leaf", + "basmati rice" + ] + }, + { + "id": 30987, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "sesame oil", + "scallions", + "Sriracha", + "rice", + "minced ginger", + "garlic", + "frozen peas", + "soy sauce", + "fresh shiitake mushrooms", + "peanut oil" + ] + }, + { + "id": 22874, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "grated parmesan cheese", + "oven-ready lasagna noodles", + "fennel seeds", + "olive oil", + "lean ground beef", + "onions", + "crushed tomatoes", + "dry white wine", + "low salt chicken broth", + "seasoning", + "large eggs", + "ricotta cheese", + "fresh basil leaves" + ] + }, + { + "id": 4474, + "cuisine": "filipino", + "ingredients": [ + "ground pork", + "rice paper", + "black pepper", + "salt", + "garlic", + "water chestnuts", + "carrots" + ] + }, + { + "id": 280, + "cuisine": "indian", + "ingredients": [ + "salt", + "onions", + "pepper", + "green chilies", + "ground cumin", + "eggs", + "cilantro leaves", + "ground turmeric", + "paneer", + "oil" + ] + }, + { + "id": 5271, + "cuisine": "greek", + "ingredients": [ + "parmesan cheese", + "seasoning salt", + "greek style plain yogurt", + "pepper", + "boneless skinless chicken breasts", + "garlic powder" + ] + }, + { + "id": 16443, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "boiling onions", + "veal for stew", + "olive oil", + "red potato", + "fresh oregano" + ] + }, + { + "id": 26514, + "cuisine": "chinese", + "ingredients": [ + "tomato paste", + "fresh ginger", + "ground pork", + "corn starch", + "chicken stock", + "sugar", + "green onions", + "chili bean paste", + "black vinegar", + "dark soy sauce", + "prepared horseradish", + "salt", + "celery", + "asian eggplants", + "light soy sauce", + "sesame oil", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 27413, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "salt", + "ground black pepper", + "ground red pepper", + "garlic powder" + ] + }, + { + "id": 15697, + "cuisine": "thai", + "ingredients": [ + "green curry paste", + "vegetable oil", + "coconut milk", + "fish sauce", + "thai basil", + "peas", + "kaffir lime", + "eggplant", + "cilantro", + "lime leaves", + "pork", + "palm sugar", + "yellow bell pepper" + ] + }, + { + "id": 27980, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "fettucine", + "cream cheese", + "butter", + "milk" + ] + }, + { + "id": 42597, + "cuisine": "indian", + "ingredients": [ + "water", + "vegetable oil", + "salt", + "soft fresh goat cheese", + "fresh ginger", + "dry mustard", + "ground coriander", + "ground cumin", + "crushed tomatoes", + "mustard greens", + "all-purpose flour", + "chopped cilantro fresh", + "semolina flour", + "shallots", + "crushed red pepper", + "garlic cloves" + ] + }, + { + "id": 40804, + "cuisine": "japanese", + "ingredients": [ + "honey", + "salt", + "sake", + "vegetable oil", + "soy sauce", + "ginger", + "mirin", + "chicken thighs" + ] + }, + { + "id": 5732, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "hoisin sauce", + "garlic", + "onions", + "brown sugar", + "fresh ginger", + "chicken breasts", + "dried chile", + "water", + "green onions", + "rice vinegar", + "chinese rice wine", + "peanuts", + "sesame oil", + "celery" + ] + }, + { + "id": 8783, + "cuisine": "italian", + "ingredients": [ + "ground cloves", + "confectioners sugar", + "almond extract", + "baking powder", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 21804, + "cuisine": "french", + "ingredients": [ + "active dry yeast", + "cornmeal", + "water", + "all-purpose flour", + "egg whites", + "warm water", + "salt" + ] + }, + { + "id": 1851, + "cuisine": "italian", + "ingredients": [ + "dried tarragon leaves", + "lean ground beef", + "fresh mushrooms", + "dried oregano", + "bay leaves", + "ground pork", + "celery", + "tomatoes", + "dried sage", + "salt", + "onions", + "ground black pepper", + "butter", + "carrots", + "dried rosemary" + ] + }, + { + "id": 15093, + "cuisine": "italian", + "ingredients": [ + "table salt", + "water", + "coarse salt", + "sugar", + "olive oil", + "crumbled gorgonzola", + "fontina", + "active dry yeast", + "all purpose unbleached flour", + "mozzarella cheese", + "freshly grated parmesan", + "onions" + ] + }, + { + "id": 42621, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "salt", + "water", + "lemon wedge", + "freshly ground pepper", + "white vinegar", + "grated parmesan cheese", + "dry bread crumbs", + "large egg yolks", + "vegetable oil", + "rib" + ] + }, + { + "id": 30995, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "garlic", + "wonton wrappers", + "cream cheese", + "green onions", + "crabmeat", + "worcestershire sauce" + ] + }, + { + "id": 48343, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "chile pepper", + "cayenne pepper", + "cream cheese, soften", + "milk", + "butter", + "chopped onion", + "sour cream", + "pepper jack", + "cracked black pepper", + "sharp cheddar cheese", + "corn tortillas", + "chicken breasts", + "salt", + "enchilada sauce", + "cumin" + ] + }, + { + "id": 12881, + "cuisine": "mexican", + "ingredients": [ + "lacinato kale", + "lime juice", + "vegetable broth", + "black beans", + "Sriracha", + "corn tortilla chips", + "quinoa", + "salt", + "avocado", + "pepper", + "cilantro" + ] + }, + { + "id": 19193, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "ricotta cheese", + "grated nutmeg", + "ground black pepper", + "extra-virgin olive oil", + "unsalted butter", + "all-purpose flour", + "large egg yolks", + "stewed tomatoes", + "flat leaf parsley" + ] + }, + { + "id": 22237, + "cuisine": "chinese", + "ingredients": [ + "peanut oil", + "onions" + ] + }, + { + "id": 37823, + "cuisine": "vietnamese", + "ingredients": [ + "chili paste", + "minced garlic", + "lime juice", + "sugar", + "asian fish sauce" + ] + }, + { + "id": 47366, + "cuisine": "thai", + "ingredients": [ + "chicken thigh fillets", + "cilantro leaves", + "Thai red curry paste", + "green beans", + "vegetable oil", + "yellow onion", + "fresh ginger", + "garlic", + "coconut milk" + ] + }, + { + "id": 37263, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "salt", + "confectioners sugar", + "dulce de leche", + "baking powder", + "pisco", + "granulated sugar", + "all-purpose flour", + "large egg yolks", + "vanilla", + "corn starch" + ] + }, + { + "id": 36569, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "water", + "mint leaves", + "rice vinegar", + "beansprouts", + "soy sauce", + "lemongrass", + "shredded lettuce", + "carrots", + "white sugar", + "brown sugar", + "lime juice", + "vegetable oil", + "garlic cloves", + "chillies", + "rice stick noodles", + "minced garlic", + "chili", + "cilantro", + "cucumber", + "chicken" + ] + }, + { + "id": 35794, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "spring onions", + "all-purpose flour", + "oil", + "bread crumbs", + "garlic", + "cream cheese", + "onions", + "celery stick", + "chicken breasts", + "sweet corn", + "carrots", + "chicken stock", + "water", + "salt", + "green chilies", + "coriander" + ] + }, + { + "id": 41472, + "cuisine": "italian", + "ingredients": [ + "cold water", + "superfine sugar", + "cream", + "frozen mixed berries", + "brandy", + "gelatin", + "vanilla beans", + "confectioners sugar" + ] + }, + { + "id": 514, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "dry red wine", + "lean beef", + "pepper", + "finely chopped onion", + "dry bread crumbs", + "spaghetti", + "sugar", + "large egg whites", + "shredded parmesan cheese", + "chopped parsley", + "tomato purée", + "dried basil", + "salt", + "fat" + ] + }, + { + "id": 6732, + "cuisine": "italian", + "ingredients": [ + "min", + "milk", + "flour", + "salt", + "italian sausage", + "spinach", + "ground nutmeg", + "butter", + "red bell pepper", + "part-skim mozzarella", + "parmesan cheese", + "mushrooms", + "oven-ready lasagna noodles", + "eggs", + "tomato sauce", + "ground black pepper", + "garlic" + ] + }, + { + "id": 49676, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chili powder", + "tortilla chips", + "sliced green onions", + "tomato sauce", + "guacamole", + "cilantro leaves", + "hot water", + "pico de gallo", + "sliced black olives", + "salt", + "taco seasoning", + "jack cheese", + "boneless skinless chicken breasts", + "hot sauce", + "sour cream" + ] + }, + { + "id": 9047, + "cuisine": "mexican", + "ingredients": [ + "water", + "large eggs", + "cream cheese", + "caramels", + "vanilla extract", + "flan", + "vanilla beans", + "whole milk", + "sweetened condensed milk", + "granulated sugar", + "granulated white sugar" + ] + }, + { + "id": 36960, + "cuisine": "filipino", + "ingredients": [ + "tomatoes", + "radishes", + "lemon juice", + "pork", + "salt", + "onions", + "string beans", + "beef brisket", + "bok choy", + "pepper", + "garlic cloves" + ] + }, + { + "id": 45519, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "unsweetened applesauce", + "butter", + "flour tortillas", + "cinnamon sugar" + ] + }, + { + "id": 12138, + "cuisine": "southern_us", + "ingredients": [ + "jasmine rice", + "salt", + "sweet onion", + "pepper", + "bacon drippings", + "black-eyed peas" + ] + }, + { + "id": 24407, + "cuisine": "southern_us", + "ingredients": [ + "bread crumbs", + "unsalted butter", + "sweet onion", + "salt", + "pepper", + "granulated sugar", + "eggs", + "yellow crookneck squash" + ] + }, + { + "id": 10464, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "low sodium chicken broth", + "salt", + "scallions", + "chicken", + "water", + "cajun seasoning", + "yellow onion", + "celery", + "andouille sausage", + "vegetable oil", + "all-purpose flour", + "garlic cloves", + "parsley leaves", + "diced tomatoes", + "okra", + "bay leaf" + ] + }, + { + "id": 40740, + "cuisine": "italian", + "ingredients": [ + "chicken thighs", + "grated parmesan cheese", + "italian salad dressing", + "baking potatoes" + ] + }, + { + "id": 18764, + "cuisine": "indian", + "ingredients": [ + "large eggs", + "white rice", + "green cardamom pods", + "golden raisins", + "grated nutmeg", + "light brown sugar", + "whole milk", + "vanilla extract", + "granulated sugar", + "heavy cream", + "grated lemon zest" + ] + }, + { + "id": 8270, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "roasted cashews", + "ground black pepper", + "yellow bell pepper", + "yams", + "cashew nuts", + "candied ginger", + "milk", + "large garlic cloves", + "salt", + "red bell pepper", + "basmati rice", + "clove", + "tumeric", + "butter", + "extra-virgin olive oil", + "cinnamon sticks", + "serrano chile", + "saffron threads", + "brussels sprouts", + "fresh ginger", + "raisins", + "yellow onion", + "onions", + "canola oil" + ] + }, + { + "id": 22813, + "cuisine": "french", + "ingredients": [ + "brioche", + "coarse salt", + "melted butter", + "ground black pepper", + "chicken livers", + "marsala wine", + "extra-virgin olive oil", + "vidalia onion", + "bay leaves" + ] + }, + { + "id": 13425, + "cuisine": "brazilian", + "ingredients": [ + "strawberries", + "bananas", + "frozen strawberries", + "raspberries", + "acai juice", + "granola", + "frozen banana" + ] + }, + { + "id": 18183, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "salt", + "cumin", + "brown sugar", + "crushed tomatoes", + "vegetable oil", + "cayenne pepper", + "water", + "onion powder", + "all-purpose flour", + "ground chipotle chile pepper", + "garlic powder", + "paprika", + "dried oregano" + ] + }, + { + "id": 9400, + "cuisine": "british", + "ingredients": [ + "whole wheat flour", + "raisins", + "light brown sugar", + "buttermilk", + "hot tea", + "baking powder", + "jam", + "unsalted butter", + "salt" + ] + }, + { + "id": 19318, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "bacon", + "sage", + "chicken stock", + "olive oil", + "celery", + "kosher salt", + "yellow onion", + "eggs", + "fresh thyme leaves", + "corn bread" + ] + }, + { + "id": 39190, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "purple onion", + "olive oil", + "red wine vinegar", + "plum tomatoes", + "pitted kalamata olives", + "large eggs", + "salt", + "baguette", + "lettuce leaves", + "albacore tuna in water" + ] + }, + { + "id": 43511, + "cuisine": "mexican", + "ingredients": [ + "tomato purée", + "apple cider vinegar", + "garlic", + "ground coriander", + "ground cumin", + "ground black pepper", + "paprika", + "cayenne pepper", + "oregano", + "water", + "cinnamon", + "salt", + "onions", + "chili powder", + "extra-virgin olive oil", + "cocoa powder", + "masa harina" + ] + }, + { + "id": 3303, + "cuisine": "greek", + "ingredients": [ + "purple onion", + "dried oregano", + "ground sirloin", + "garlic cloves", + "cherry tomatoes", + "frozen pizza dough", + "allspice", + "cinnamon", + "feta cheese crumbles" + ] + }, + { + "id": 6907, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "bone-in pork chops", + "rosemary sprigs", + "chives", + "pepper", + "fillets", + "pesto", + "cilantro sprigs" + ] + }, + { + "id": 26173, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil spray", + "buttermilk", + "heavy whipping cream", + "unsweetened cocoa powder", + "pecans", + "unsalted butter", + "all-purpose flour", + "semi-sweet chocolate morsels", + "sugar", + "large eggs", + "dark brown sugar", + "boiling water", + "powdered sugar", + "baking soda", + "vanilla extract", + "coarse kosher salt" + ] + }, + { + "id": 26394, + "cuisine": "vietnamese", + "ingredients": [ + "almond butter", + "sesame oil", + "carrots", + "fresh lime juice", + "reduced sodium soy sauce", + "rice", + "hot water", + "fresh cilantro", + "dipping sauces", + "corn starch", + "vermicelli noodles", + "brown sugar", + "extra firm tofu", + "garlic chili sauce", + "fresh mint" + ] + }, + { + "id": 47412, + "cuisine": "japanese", + "ingredients": [ + "Mizkan Rice Vinegar", + "black sesame seeds", + "carrots", + "mirin", + "salt", + "sesame oil" + ] + }, + { + "id": 34978, + "cuisine": "spanish", + "ingredients": [ + "beef stock", + "yellow onion", + "smoked paprika", + "kosher salt", + "kalamata", + "fresh parsley leaves", + "red bell pepper", + "diced tomatoes", + "beef rib short", + "rioja", + "olive oil", + "garlic", + "carrots", + "bay leaf" + ] + }, + { + "id": 4473, + "cuisine": "thai", + "ingredients": [ + "golden brown sugar", + "carrots", + "rice vinegar", + "fish sauce", + "garlic cloves", + "crushed red pepper" + ] + }, + { + "id": 33315, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "butternut squash", + "pasta", + "unsalted butter", + "olive oil", + "fresh sage", + "grated parmesan cheese" + ] + }, + { + "id": 49414, + "cuisine": "italian", + "ingredients": [ + "boneless skinless chicken breasts", + "garlic", + "chees fresh mozzarella", + "fresh basil leaves", + "balsamic vinegar", + "salt", + "roma tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 5759, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "parmesan cheese", + "basil", + "onions", + "eggs", + "crushed tomatoes", + "parsley", + "salt", + "italian sausage", + "pepper", + "whole milk ricotta cheese", + "garlic", + "sugar", + "olive oil", + "red wine", + "jumbo pasta shells" + ] + }, + { + "id": 22444, + "cuisine": "cajun_creole", + "ingredients": [ + "creole mustard", + "apple butter" + ] + }, + { + "id": 49710, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "salt", + "fat", + "plain whole-milk yogurt", + "romaine lettuce", + "cherry tomatoes", + "garlic cloves", + "fresh mint", + "seedless cucumber", + "lamb steaks", + "pita pockets", + "pitted kalamata olives", + "olive oil", + "fresh lemon juice", + "chopped fresh mint" + ] + }, + { + "id": 11621, + "cuisine": "thai", + "ingredients": [ + "eggs", + "sweet chili sauce", + "oyster sauce", + "fish sauce", + "all-purpose flour", + "fish fillets", + "green onions", + "chopped cilantro fresh", + "brown sugar", + "oil" + ] + }, + { + "id": 26043, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "country bread", + "pearl onions", + "red wine", + "lardons", + "large eggs", + "white mushrooms", + "slab bacon", + "salt", + "frisee" + ] + }, + { + "id": 21129, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "salt", + "black pepper", + "chopped onion", + "yellow summer squash", + "dry bread crumbs", + "butter", + "white sugar" + ] + }, + { + "id": 25241, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "buttermilk", + "caraway seeds", + "large eggs", + "salt", + "unsalted butter", + "raisins", + "sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 10305, + "cuisine": "mexican", + "ingredients": [ + "coconut oil", + "chili powder", + "ground beef", + "cumin", + "eggs", + "garlic powder", + "almond meal", + "garlic salt", + "olive oil", + "diced tomatoes", + "onions", + "shredded Monterey Jack cheese", + "green bell pepper", + "baking powder", + "salt", + "flax seed meal" + ] + }, + { + "id": 40451, + "cuisine": "italian", + "ingredients": [ + "butter", + "fresh asparagus", + "pepper", + "salt", + "pinenuts", + "garlic", + "prosciutto", + "fresh lemon juice" + ] + }, + { + "id": 26553, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "orange zest", + "sugar", + "all-purpose flour", + "large eggs", + "white cornmeal", + "fresh rosemary", + "buttermilk" + ] + }, + { + "id": 7611, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "green peas", + "oil", + "potatoes", + "green chilies", + "onions", + "asafoetida", + "salt", + "mustard seeds", + "ginger", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 40861, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "chile pepper", + "salt", + "artichok heart marin", + "white cheddar cheese", + "vegan Worcestershire sauce", + "chopped tomatoes", + "crushed garlic", + "Neufchâtel", + "round sourdough bread", + "green onions", + "non-fat sour cream" + ] + }, + { + "id": 20477, + "cuisine": "chinese", + "ingredients": [ + "ramen noodles", + "corn starch", + "fresh ginger", + "scallions", + "low sodium beef broth", + "sugar pea", + "vegetable oil", + "toasted sesame oil", + "reduced sodium soy sauce", + "garlic cloves", + "boneless sirloin steak" + ] + }, + { + "id": 23645, + "cuisine": "indian", + "ingredients": [ + "sugar", + "seeds", + "water", + "salt", + "syrup", + "plums", + "almonds" + ] + }, + { + "id": 6375, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "water", + "olive oil", + "garlic", + "chipotles in adobo", + "chicken broth", + "corn", + "coarse salt", + "sour cream", + "tomato paste", + "fresh cilantro", + "boneless skinless chicken breasts", + "shredded cheese", + "onions", + "black pepper", + "lime", + "diced tomatoes", + "corn tortillas" + ] + }, + { + "id": 21685, + "cuisine": "french", + "ingredients": [ + "white wine", + "bay scallops", + "all-purpose flour", + "fresh parsley", + "ground black pepper", + "butter", + "sliced mushrooms", + "milk", + "egg yolks", + "lemon juice", + "minced onion", + "salt", + "bay leaf" + ] + }, + { + "id": 29522, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "parmesan cheese", + "ground beef", + "parsley flakes", + "pepper", + "ricotta cheese", + "nutmeg", + "mozzarella cheese", + "lasagna noodles", + "eggs", + "water", + "salt" + ] + }, + { + "id": 30038, + "cuisine": "british", + "ingredients": [ + "cooking apples", + "butter", + "lemon juice", + "sugar", + "gingerroot", + "plums", + "pears" + ] + }, + { + "id": 8773, + "cuisine": "mexican", + "ingredients": [ + "hash brown", + "butter", + "Daisy Sour Cream", + "green onions", + "flour tortillas", + "salt", + "shredded cheddar cheese", + "bacon pieces" + ] + }, + { + "id": 45236, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella", + "cracked black pepper", + "fresh basil leaves", + "chicken cutlets", + "purple onion", + "kosher salt", + "garlic", + "tomatoes", + "balsamic vinegar", + "oil" + ] + }, + { + "id": 46073, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "water", + "bay leaves", + "chili powder", + "green cardamom", + "cinnamon sticks", + "basmati rice", + "clove", + "dried fruit", + "garam masala", + "french fried onions", + "cilantro leaves", + "cardamom", + "onions", + "saffron", + "garlic paste", + "lime juice", + "yoghurt", + "salt", + "green chilies", + "ghee", + "ground turmeric", + "caraway seeds", + "warm water", + "mint leaves", + "marinade", + "rice", + "ground cardamom", + "peppercorns", + "chicken" + ] + }, + { + "id": 13688, + "cuisine": "mexican", + "ingredients": [ + "lean ground beef", + "shredded cheddar cheese", + "red bell pepper", + "cooked rice", + "diced tomatoes", + "low sodium taco seasoning" + ] + }, + { + "id": 23203, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "apple cider vinegar", + "ground cumin", + "table salt", + "chili powder", + "cayenne pepper", + "brown sugar", + "ground turkey breast", + "paprika", + "water", + "onion powder", + "dried oregano" + ] + }, + { + "id": 32010, + "cuisine": "italian", + "ingredients": [ + "organic tomato", + "chicken broth", + "Italian bread", + "olive oil", + "onions", + "garlic cloves" + ] + }, + { + "id": 41706, + "cuisine": "moroccan", + "ingredients": [ + "cinnamon", + "medjool date", + "toasted almonds", + "orange" + ] + }, + { + "id": 44165, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "fat-free chicken broth", + "lemon pepper", + "green bell pepper", + "2% reduced-fat milk", + "fresh mushrooms", + "boneless skinless chicken breast halves", + "pasta", + "green onions", + "creole seasoning", + "red bell pepper", + "cold water", + "garlic powder", + "margarine", + "corn starch" + ] + }, + { + "id": 23034, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "ziti", + "crushed red pepper flakes", + "fresh parsley", + "eggplant", + "coarse salt", + "yellow onion", + "crushed tomatoes", + "whole milk ricotta cheese", + "extra-virgin olive oil", + "italian seasoning", + "black pepper", + "grated parmesan cheese", + "butter", + "shredded mozzarella cheese" + ] + }, + { + "id": 28780, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "salt", + "large egg yolks", + "sugar", + "all-purpose flour", + "unsalted butter" + ] + }, + { + "id": 19894, + "cuisine": "spanish", + "ingredients": [ + "large egg whites", + "potatoes", + "chopped onion", + "part-skim mozzarella cheese", + "manzanilla", + "red bell pepper", + "pepper", + "large eggs", + "salt", + "dried oregano", + "olive oil", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 37329, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "green onions", + "garlic", + "canola oil", + "garlic powder", + "parsley", + "ground turkey", + "fresh ginger", + "sesame oil", + "salt", + "eggs", + "ground pepper", + "red pepper flakes", + "toasted sesame seeds" + ] + }, + { + "id": 25738, + "cuisine": "italian", + "ingredients": [ + "sugar", + "part-skim mozzarella cheese", + "oil", + "minced garlic", + "zucchini", + "rotini", + "pepper", + "dijon mustard", + "hot water", + "sun-dried tomatoes", + "white wine vinegar" + ] + }, + { + "id": 46131, + "cuisine": "southern_us", + "ingredients": [ + "Tabasco Pepper Sauce", + "lemon juice", + "sliced green onions", + "water", + "garlic", + "chopped parsley", + "bacon", + "shrimp", + "salted butter", + "shredded sharp cheddar cheese", + "grits" + ] + }, + { + "id": 38550, + "cuisine": "british", + "ingredients": [ + "worcestershire sauce", + "cayenne pepper", + "unsalted butter", + "shredded sharp cheddar cheese", + "eggs", + "dry mustard", + "light beer", + "salt" + ] + }, + { + "id": 36242, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "bone-in chicken breasts", + "Mexican cheese blend", + "enchilada sauce", + "black beans", + "tortilla chips", + "chicken broth", + "frozen corn", + "chopped cilantro fresh" + ] + }, + { + "id": 39258, + "cuisine": "mexican", + "ingredients": [ + "pasta", + "orange bell pepper", + "red enchilada sauce", + "water", + "salt", + "onions", + "pepper", + "colby jack cheese", + "garlic cloves", + "olive oil", + "scallions", + "chicken" + ] + }, + { + "id": 34277, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "corn", + "bacon" + ] + }, + { + "id": 39746, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "salsa", + "low-fat sour cream", + "whole wheat tortillas", + "taco seasoning", + "lean ground turkey", + "sliced black olives", + "low-fat refried beans", + "cheddar cheese", + "shredded lettuce" + ] + }, + { + "id": 48013, + "cuisine": "jamaican", + "ingredients": [ + "brown sugar", + "onion powder", + "garlic powder", + "hot water", + "jamaican jerk spice", + "kosher salt", + "roasting chickens" + ] + }, + { + "id": 18391, + "cuisine": "italian", + "ingredients": [ + "water", + "zucchini", + "grated carrot", + "penne", + "fresh parmesan cheese", + "cooking spray", + "canadian bacon", + "grape tomatoes", + "fat free milk", + "broccoli florets", + "salt", + "pepper", + "ground black pepper", + "reduced-fat sour cream" + ] + }, + { + "id": 5905, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "chile pepper", + "garlic", + "shredded Monterey Jack cheese", + "cold water", + "honey", + "tomatillos", + "chopped cilantro", + "lime", + "coarse salt", + "hass avocado", + "warm water", + "ground black pepper", + "extra-virgin olive oil", + "masa harina" + ] + }, + { + "id": 11592, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "large eggs", + "vanilla extract", + "sugar", + "butter", + "vanilla ice cream", + "refrigerated piecrusts", + "salt", + "dark corn syrup", + "mint sprigs" + ] + }, + { + "id": 4973, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "baking powder", + "milk", + "salt", + "sugar", + "vegetable oil", + "self rising flour", + "cornmeal" + ] + }, + { + "id": 8948, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "chopped onion", + "pepper", + "garlic", + "dried parsley", + "tomato paste", + "vegetable oil", + "celery", + "crushed tomatoes", + "salt", + "dried oregano" + ] + }, + { + "id": 16958, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red wine vinegar", + "dried oregano", + "sausage links", + "balsamic vinegar", + "salt", + "dried basil", + "vine ripened tomatoes", + "french rolls", + "ground black pepper", + "purple onion" + ] + }, + { + "id": 49144, + "cuisine": "southern_us", + "ingredients": [ + "vinegar", + "celery salt", + "smoked ham hocks", + "hot sauce", + "collard greens" + ] + }, + { + "id": 9789, + "cuisine": "southern_us", + "ingredients": [ + "corn", + "chicken breasts", + "cream style corn", + "diced tomatoes", + "frozen lima beans", + "worcestershire sauce", + "ketchup", + "barbecue sauce", + "hot sauce" + ] + }, + { + "id": 8803, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "beaten eggs", + "dashi", + "onions", + "soy sauce", + "seaweed", + "sake", + "mirin", + "chicken" + ] + }, + { + "id": 33656, + "cuisine": "chinese", + "ingredients": [ + "roasted sesame seeds", + "chives", + "water", + "cooking oil", + "salt", + "dark soy sauce", + "egg noodles", + "sesame oil", + "light soy sauce", + "green onions", + "beansprouts" + ] + }, + { + "id": 23317, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "turkey meat", + "olive oil", + "diced tomatoes", + "onions", + "chicken broth", + "hominy", + "salt", + "fresh cilantro", + "large garlic cloves", + "red bell pepper" + ] + }, + { + "id": 26638, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "dried sardines", + "sake", + "kosher salt", + "ginger", + "sugar", + "water", + "garlic", + "pork belly", + "mirin" + ] + }, + { + "id": 15507, + "cuisine": "french", + "ingredients": [ + "chicken legs", + "diced tomatoes", + "olive oil", + "orange peel", + "dried thyme", + "low salt chicken broth", + "saffron threads", + "dry white wine", + "onions" + ] + }, + { + "id": 12668, + "cuisine": "french", + "ingredients": [ + "top loin", + "vegetable oil", + "french fri frozen", + "rub", + "large garlic cloves" + ] + }, + { + "id": 18675, + "cuisine": "italian", + "ingredients": [ + "angel hair", + "cream cheese with chives", + "white wine", + "boneless skinless chicken breast halves", + "butter", + "condensed golden mushroom soup", + "salad dressing" + ] + }, + { + "id": 6261, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "unsalted butter", + "all-purpose flour", + "white vinegar", + "shortening", + "plums", + "cold milk", + "large egg yolks", + "salt", + "eggs", + "granulated sugar", + "nectarines" + ] + }, + { + "id": 17608, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "macaroni", + "salt", + "tomatoes", + "part-skim mozzarella cheese", + "cooking spray", + "chopped onion", + "large egg whites", + "egg yolks", + "margarine", + "pepper", + "zucchini", + "balsamic vinegar", + "garlic cloves" + ] + }, + { + "id": 27733, + "cuisine": "thai", + "ingredients": [ + "coconut milk", + "salt", + "glutinous rice", + "sugar syrup" + ] + }, + { + "id": 44260, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "buttermilk", + "baking powder", + "all-purpose flour", + "honey", + "butter", + "large eggs", + "salt" + ] + }, + { + "id": 34456, + "cuisine": "japanese", + "ingredients": [ + "white rice", + "honey", + "water", + "salt", + "ginger" + ] + }, + { + "id": 26882, + "cuisine": "japanese", + "ingredients": [ + "light soy sauce", + "salt", + "large eggs", + "mirin", + "oil", + "sugar", + "regular soy sauce" + ] + }, + { + "id": 41879, + "cuisine": "cajun_creole", + "ingredients": [ + "green onions", + "penne pasta", + "fresh parsley", + "whipping cream", + "garlic cloves", + "butter", + "creole seasoning", + "grated parmesan cheese", + "hot sauce", + "shrimp" + ] + }, + { + "id": 2388, + "cuisine": "indian", + "ingredients": [ + "pita chips", + "assorted fresh vegetables", + "salt", + "plain yogurt", + "ground black pepper", + "large garlic cloves", + "cumin seed", + "pita bread", + "olive oil", + "ground red pepper", + "chickpeas", + "water", + "tahini", + "extra-virgin olive oil", + "lemon juice" + ] + }, + { + "id": 13933, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "olive oil", + "jicama", + "chopped cilantro fresh", + "tomatoes", + "honey", + "jalapeno chilies", + "fresh lime juice", + "black beans", + "feta cheese", + "garlic cloves", + "avocado", + "corn kernels", + "radishes", + "red bell pepper" + ] + }, + { + "id": 26115, + "cuisine": "thai", + "ingredients": [ + "water", + "fresh lime juice", + "garlic cloves", + "salt", + "jalapeno chilies" + ] + }, + { + "id": 45257, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "butter", + "orange marmalade", + "toasted pecans", + "carrots", + "rum" + ] + }, + { + "id": 6923, + "cuisine": "indian", + "ingredients": [ + "clove", + "tumeric", + "Biryani Masala", + "spices", + "green chilies", + "peppercorns", + "chicken", + "red chili powder", + "coriander seeds", + "mint leaves", + "cilantro leaves", + "ghee", + "basmati rice", + "tomatoes", + "mace", + "potatoes", + "salt", + "cinnamon sticks", + "shahi jeera", + "garlic paste", + "leaves", + "yoghurt", + "green cardamom", + "onions", + "saffron" + ] + }, + { + "id": 34805, + "cuisine": "mexican", + "ingredients": [ + "salt", + "large eggs", + "champagne vinegar", + "unsalted butter", + "all-purpose flour", + "ice water" + ] + }, + { + "id": 537, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "salt", + "ground cinnamon", + "butter", + "white sugar", + "evaporated milk", + "all-purpose flour", + "eggs", + "vanilla extract", + "yeast" + ] + }, + { + "id": 46318, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "parmigiano reggiano cheese", + "ground veal", + "ground beef", + "tomato sauce", + "coarse salt", + "Italian bread", + "oregano", + "parmigiano-reggiano cheese", + "large eggs", + "ground pork", + "onions", + "ground black pepper", + "ricotta cheese", + "flat leaf parsley" + ] + }, + { + "id": 10020, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "bread flour", + "salt", + "yellow corn meal", + "boiling water", + "dry yeast" + ] + }, + { + "id": 13580, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "granulated sugar", + "grated lemon zest", + "powdered sugar", + "roasted pistachios", + "fresh lemon juice", + "potato starch", + "large eggs", + "fresh raspberries", + "large egg whites", + "salt" + ] + }, + { + "id": 27820, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "sweet onion", + "grated parmesan cheese", + "whole wheat lasagna noodles", + "sage", + "mozzarella cheese", + "mascarpone", + "low sodium chicken", + "salt", + "nutmeg", + "olive oil", + "flour", + "ground chicken breast", + "low-fat milk", + "pepper", + "unsalted butter", + "butternut squash", + "panko breadcrumbs" + ] + }, + { + "id": 32242, + "cuisine": "irish", + "ingredients": [ + "brisket", + "freshly ground pepper", + "parsley", + "onions", + "English mustard", + "salt", + "cabbage", + "fresh thyme", + "carrots" + ] + }, + { + "id": 25737, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "sirloin steak", + "olive oil", + "chopped cilantro fresh", + "light soy sauce", + "red bell pepper", + "romaine lettuce", + "peanuts" + ] + }, + { + "id": 28281, + "cuisine": "japanese", + "ingredients": [ + "shiitake", + "extra-virgin olive oil", + "kale leaves", + "coconut oil", + "miso", + "tamari soy sauce", + "dressing", + "chicken breasts", + "buckwheat noodles", + "soba noodles", + "red chili peppers", + "large garlic cloves", + "yellow onion" + ] + }, + { + "id": 31392, + "cuisine": "southern_us", + "ingredients": [ + "purple onion", + "hot pepper sauce", + "chayotes", + "white vinegar", + "red bell pepper", + "chopped green bell pepper", + "sliced green onions" + ] + }, + { + "id": 34007, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "amaretto", + "granulated sugar", + "almonds", + "cream of tartar", + "egg whites" + ] + }, + { + "id": 6957, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "corn kernels", + "low sodium chicken broth", + "garlic cloves", + "peppercorns", + "pesto", + "zucchini", + "peas", + "green beans", + "tomatoes", + "water", + "fresh thyme", + "extra-virgin olive oil", + "onions", + "anise seed", + "swiss chard", + "cannellini beans", + "carrots" + ] + }, + { + "id": 17029, + "cuisine": "russian", + "ingredients": [ + "water", + "extra-virgin olive oil", + "fresh lemon juice", + "celery root", + "tomato paste", + "coarse salt", + "freshly ground pepper", + "chopped parsley", + "cabbage", + "store bought low sodium chicken stock", + "red wine vinegar", + "garlic cloves", + "onions", + "dry white wine", + "beets", + "carrots", + "short rib" + ] + }, + { + "id": 5572, + "cuisine": "indian", + "ingredients": [ + "plain flour", + "chili powder", + "lamb", + "onions", + "fresh ginger root", + "garlic", + "oil", + "water", + "butter", + "green chilies", + "ground turmeric", + "garam masala", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 36155, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "blackberries", + "sugar", + "walnuts", + "heavy cream", + "large egg whites", + "fresh lemon juice" + ] + }, + { + "id": 36316, + "cuisine": "moroccan", + "ingredients": [ + "pitted green olives", + "chickpeas", + "squash", + "ground cumin", + "hot red pepper flakes", + "paprika", + "garlic cloves", + "chicken thighs", + "cinnamon", + "salt", + "carrots", + "allspice", + "ground ginger", + "condensed chicken broth", + "lamb", + "onions" + ] + }, + { + "id": 4023, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "sour cream", + "red potato", + "ground pork", + "pepper", + "iceberg lettuce", + "fresh tomatoes", + "salt" + ] + }, + { + "id": 35594, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "pork", + "soup", + "stewed tomatoes", + "shrimp", + "stew", + "shortening", + "vegetables", + "cooked chicken", + "crabmeat", + "chicken", + "green bell pepper", + "oysters", + "green onions", + "seafood", + "celery", + "tomato paste", + "cooked ham", + "jalapeno chilies", + "parsley", + "okra" + ] + }, + { + "id": 24517, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "butter", + "all-purpose flour", + "pepper", + "dry white wine", + "gouda", + "dijon mustard", + "heavy cream", + "fresh parsley", + "sourdough bread", + "deli ham", + "salt" + ] + }, + { + "id": 2723, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "salt", + "pork chops", + "beer", + "pepper", + "cayenne pepper", + "chicken broth", + "bacon", + "onions" + ] + }, + { + "id": 8727, + "cuisine": "italian", + "ingredients": [ + "black olives", + "freshly ground pepper", + "thyme", + "extra-virgin olive oil", + "anchovy fillets", + "fresh lemon juice", + "snow peas", + "tomatoes", + "purple onion", + "tuna packed in olive oil", + "crusty rolls", + "eggs", + "salt", + "garlic cloves", + "flat leaf parsley" + ] + }, + { + "id": 29068, + "cuisine": "british", + "ingredients": [ + "sugar", + "lemon juice", + "unsalted butter", + "brandy", + "pears", + "simple syrup" + ] + }, + { + "id": 49570, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "carrots", + "jalapeno chilies", + "celery", + "pepper", + "low sodium chicken broth", + "onions", + "water", + "salt", + "smoked ham hocks" + ] + }, + { + "id": 12029, + "cuisine": "irish", + "ingredients": [ + "pie crust", + "whipping cream", + "chocolate cookie crumbs", + "irish cream liqueur", + "semi-sweet chocolate morsels", + "butter" + ] + }, + { + "id": 3655, + "cuisine": "french", + "ingredients": [ + "pearl onions", + "shallots", + "fresh tarragon", + "low salt chicken broth", + "veal breast", + "large garlic cloves", + "chopped fresh sage", + "onions", + "olive oil", + "chopped fresh thyme", + "anchovy fillets", + "rib", + "pernod", + "dry white wine", + "diced tomatoes", + "brine cured green olives", + "grated lemon peel" + ] + }, + { + "id": 17713, + "cuisine": "thai", + "ingredients": [ + "broccoli florets", + "Thai red curry paste", + "coconut milk", + "rice noodles", + "salt", + "sesame oil", + "vegetable broth", + "orange bell pepper", + "crushed garlic", + "sliced mushrooms" + ] + }, + { + "id": 10676, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "chili bean sauce", + "dark soy sauce", + "rice wine", + "white sugar", + "light soy sauce", + "vegetable oil", + "boneless skinless chicken breast halves", + "green onions", + "all-purpose flour" + ] + }, + { + "id": 30859, + "cuisine": "italian", + "ingredients": [ + "ladyfingers", + "water", + "anjou pears", + "chocolate curls", + "sugar", + "mascarpone", + "dry white wine", + "cinnamon sticks", + "green cardamom pods", + "white chocolate", + "crystallized ginger", + "Poire Williams", + "heavy whipping cream", + "powdered sugar", + "vanilla beans", + "peeled fresh ginger", + "juice" + ] + }, + { + "id": 29551, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic", + "chopped cilantro fresh", + "chicken broth", + "vegetable oil", + "onions", + "ground cumin", + "crushed tomatoes", + "sea salt", + "boneless skinless chicken breast halves", + "jalapeno chilies", + "corn tortillas", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 58, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "oil", + "baking powder", + "onions", + "eggs", + "salt", + "potatoes", + "garlic cloves" + ] + }, + { + "id": 5775, + "cuisine": "japanese", + "ingredients": [ + "vegetable oil", + "kosher salt", + "mirin", + "soy sauce", + "baby eggplants" + ] + }, + { + "id": 7659, + "cuisine": "mexican", + "ingredients": [ + "reduced fat monterey jack cheese", + "poblano chilies", + "olive oil", + "cayenne pepper", + "canned black beans", + "non-fat sour cream", + "tomato salsa", + "onions" + ] + }, + { + "id": 47059, + "cuisine": "chinese", + "ingredients": [ + "sherry", + "lard", + "salt", + "soy sauce", + "scallions", + "pork loin", + "cabbage" + ] + }, + { + "id": 39685, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "baguette", + "leeks", + "heavy cream", + "chinese celery", + "unsalted butter", + "shallots", + "salt", + "kosher salt", + "parsley leaves", + "baking potatoes", + "black pepper", + "olive oil", + "dry white wine", + "extra-virgin olive oil" + ] + }, + { + "id": 2543, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "garlic powder", + "sweet onion", + "bacon slices", + "reduced sodium chicken broth", + "crushed red pepper flakes", + "sun-dried tomatoes", + "salt" + ] + }, + { + "id": 1311, + "cuisine": "mexican", + "ingredients": [ + "water", + "fresh lime juice", + "ground cumin", + "bay leaves", + "pork butt", + "orange", + "onions", + "pepper", + "salt", + "dried oregano" + ] + }, + { + "id": 40369, + "cuisine": "italian", + "ingredients": [ + "pasta", + "cooking spray", + "garlic cloves", + "olives", + "parmigiano-reggiano cheese", + "crushed red pepper", + "medium shrimp", + "grape tomatoes", + "extra-virgin olive oil", + "fresh lemon juice", + "ground black pepper", + "salt", + "arugula" + ] + }, + { + "id": 18151, + "cuisine": "indian", + "ingredients": [ + "paprika", + "ground allspice", + "coriander seeds", + "white wine vinegar", + "fresh lime juice", + "light brown sugar", + "plums", + "gingerroot", + "large garlic cloves", + "salt" + ] + }, + { + "id": 24005, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "cilantro", + "cumin", + "pork", + "sea salt", + "pork shoulder", + "queso fresco", + "corn tortillas", + "chopped garlic", + "white onion", + "ancho powder", + "oregano" + ] + }, + { + "id": 40236, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "purple onion", + "avocado", + "sea scallops", + "chopped cilantro", + "orange", + "salt", + "chiles", + "lemon" + ] + }, + { + "id": 3882, + "cuisine": "vietnamese", + "ingredients": [ + "green onions", + "dried rice noodles", + "chopped fresh mint", + "sweet onion", + "rice vinegar", + "fresh lime juice", + "vegetable oil", + "salted peanuts", + "chopped cilantro fresh", + "sugar", + "crushed red pepper", + "cucumber", + "plum tomatoes" + ] + }, + { + "id": 7177, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "shallots", + "chili sauce", + "brown sugar", + "water", + "cornflour", + "white vinegar", + "minced garlic", + "sesame oil", + "soy sauce", + "eggplant", + "cilantro leaves" + ] + }, + { + "id": 47731, + "cuisine": "italian", + "ingredients": [ + "fettuccine pasta", + "whole peeled tomatoes", + "beef broth", + "dried oregano", + "dried basil", + "garlic", + "fresh parsley", + "green bell pepper", + "zucchini", + "salt", + "onions", + "pepper", + "dry red wine", + "sweet italian sausage" + ] + }, + { + "id": 32958, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "guacamole", + "buttermilk", + "cilantro leaves", + "grate lime peel", + "chopped cilantro fresh", + "chiles", + "self rising flour", + "vegetable oil", + "salt", + "halibut", + "corn tortillas", + "mayonaise", + "jalapeno chilies", + "tomatillos", + "seasoned rice wine vinegar", + "garlic cloves", + "fresh lime juice", + "hot pepper sauce", + "green onions", + "purple onion", + "salsa", + "sour cream" + ] + }, + { + "id": 46653, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "bay leaves", + "salt", + "fresh lime juice", + "ground cumin", + "pepper", + "cilantro", + "oil", + "onions", + "white onion", + "apple cider vinegar", + "beef broth", + "chipotles in adobo", + "chuck roast", + "garlic", + "corn tortillas", + "oregano" + ] + }, + { + "id": 8867, + "cuisine": "french", + "ingredients": [ + "sugar", + "egg whites", + "bread flour", + "water", + "salt", + "warm water", + "vegetable oil", + "active dry yeast", + "cornmeal" + ] + }, + { + "id": 26509, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "sugar", + "sake", + "beef steak", + "soy sauce" + ] + }, + { + "id": 4747, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "black sesame seeds", + "sea salt", + "toasted sesame oil", + "minced ginger", + "hoisin sauce", + "napa cabbage", + "rotisserie chicken", + "cashew nuts", + "Sriracha", + "green onions", + "white wine vinegar", + "chopped cilantro", + "Tamari Tamari", + "shredded carrots", + "chili oil", + "white sesame seeds" + ] + }, + { + "id": 3786, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "chili powder", + "fat-free chicken broth", + "carrots", + "ground cumin", + "black pepper", + "red pepper flakes", + "scallions", + "onions", + "table salt", + "apple cider vinegar", + "green pepper", + "ground turkey", + "tomatoes", + "kidney beans", + "paprika", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 563, + "cuisine": "chinese", + "ingredients": [ + "egg roll wrappers", + "pork sausages", + "frozen stir fry vegetable blend", + "oil", + "teriyaki sauce" + ] + }, + { + "id": 13361, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "peeled shrimp", + "chicken stock", + "old bay seasoning", + "grits", + "unsalted butter", + "shredded sharp cheddar cheese", + "kosher salt", + "heavy cream" + ] + }, + { + "id": 27904, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "macaroni", + "red pepper flakes", + "sliced green onions", + "tomato sauce", + "chili powder", + "frozen corn", + "seasoning", + "Red Gold® diced tomatoes", + "cheese", + "orange bell pepper", + "lean ground beef", + "dried oregano" + ] + }, + { + "id": 33948, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "spaghetti", + "unsalted butter", + "grated parmesan cheese", + "ground black pepper" + ] + }, + { + "id": 33046, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "grated parmesan cheese", + "lima beans", + "asparagus", + "salt", + "flat leaf parsley", + "unsalted butter", + "ricotta", + "pepper", + "garlic", + "baby carrots" + ] + }, + { + "id": 9073, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "cauliflower", + "oil-cured black olives", + "fresh parsley", + "ground pepper", + "salt", + "pecorino cheese", + "florets", + "onions" + ] + }, + { + "id": 31591, + "cuisine": "indian", + "ingredients": [ + "tamarind", + "black salt", + "dates", + "ground cumin", + "chili powder", + "jaggery", + "water", + "salt" + ] + }, + { + "id": 1477, + "cuisine": "british", + "ingredients": [ + "raspberry jam", + "creme anglaise", + "heavy cream", + "bartlett pears", + "warm water", + "sponge cake", + "pound cake", + "sherry", + "lemon", + "confectioners sugar", + "slivered almonds", + "dried tart cherries", + "vanilla extract" + ] + }, + { + "id": 2129, + "cuisine": "british", + "ingredients": [ + "butter", + "chopped walnuts", + "baking soda", + "vanilla extract", + "boiling water", + "eggs", + "dates", + "white sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 22862, + "cuisine": "spanish", + "ingredients": [ + "dry white wine", + "water", + "apple juice", + "calvados", + "cranberry juice", + "apples" + ] + }, + { + "id": 42389, + "cuisine": "italian", + "ingredients": [ + "water", + "macaroni", + "onions", + "tomatoes", + "olive oil", + "garlic", + "chicken stock", + "dried basil", + "grated parmesan cheese", + "dried oregano", + "fresh basil", + "zucchini", + "sausages" + ] + }, + { + "id": 40079, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "vegetable oil", + "green chilies", + "greek yogurt", + "flour", + "ginger", + "garlic cloves", + "garam masala", + "lemon", + "cumin seed", + "salmon", + "chili powder", + "salt", + "lemon juice" + ] + }, + { + "id": 31873, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "red cabbage", + "lime wedges", + "corn tortillas", + "lime", + "jicama", + "salt", + "cumin", + "light sour cream", + "olive oil", + "chili powder", + "cilantro leaves", + "tilapia fillets", + "shredded carrots", + "paprika", + "adobo sauce" + ] + }, + { + "id": 29096, + "cuisine": "cajun_creole", + "ingredients": [ + "diced onions", + "kosher salt", + "fresh thyme", + "diced celery", + "ground cloves", + "cayenne", + "bacon", + "diced bell pepper", + "water", + "cinnamon", + "chopped garlic", + "black pepper", + "whole peeled tomatoes", + "okra" + ] + }, + { + "id": 34429, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "grated Gruyère cheese", + "all-purpose flour", + "beef broth", + "french bread", + "onions" + ] + }, + { + "id": 8042, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "pesto", + "ricotta cheese", + "pizza crust", + "tomatoes", + "grated parmesan cheese" + ] + }, + { + "id": 31229, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "enchilada sauce", + "cherry tomatoes", + "taco seasoning", + "vegetarian refried beans", + "water", + "purple onion", + "coriander", + "olive oil", + "cumin seed" + ] + }, + { + "id": 9813, + "cuisine": "italian", + "ingredients": [ + "bread", + "crust", + "extra-virgin olive oil" + ] + }, + { + "id": 20646, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "fresh lemon juice", + "fresh rosemary", + "purple onion", + "extra-virgin olive oil", + "red bell pepper", + "swordfish steaks", + "salt" + ] + }, + { + "id": 15727, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "green onions", + "cooking wine", + "sugar", + "pork rind", + "ground pork", + "oyster sauce", + "cold water", + "light soy sauce", + "sesame oil", + "salt", + "water", + "flour", + "ginger" + ] + }, + { + "id": 49142, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "brown sugar", + "olive oil", + "cayenne pepper", + "dried oregano", + "light sour cream", + "lime juice", + "sweet potatoes", + "onions", + "seasoning", + "canned black beans", + "garlic powder", + "smoked paprika", + "cumin", + "green bell pepper", + "fresh cilantro", + "salt", + "canned corn" + ] + }, + { + "id": 45192, + "cuisine": "italian", + "ingredients": [ + "sugar", + "baking powder", + "milk", + "salt", + "rosemary", + "all-purpose flour", + "eggs", + "olive oil", + "polenta" + ] + }, + { + "id": 3252, + "cuisine": "southern_us", + "ingredients": [ + "water", + "baking powder", + "sour cream", + "cheddar cheese", + "unsalted butter", + "all-purpose flour", + "onions", + "black pepper", + "potatoes", + "red bell pepper", + "corned beef", + "baking soda", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 17260, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "large eggs", + "poblano chiles", + "white vinegar", + "water", + "all-purpose flour", + "white onion", + "large garlic cloves", + "monterey jack", + "sugar", + "corn oil", + "dried oregano" + ] + }, + { + "id": 14802, + "cuisine": "irish", + "ingredients": [ + "pepper", + "beer", + "cabbage", + "beef brisket", + "bay leaf", + "yukon gold potatoes", + "onions", + "water", + "carrots" + ] + }, + { + "id": 14816, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "rice wine", + "salt", + "chicken thighs", + "sugar", + "sesame seeds", + "sesame oil", + "corn starch", + "soy sauce", + "cooking oil", + "ginger", + "ginger root", + "chili pepper", + "szechwan peppercorns", + "scallions" + ] + }, + { + "id": 31115, + "cuisine": "japanese", + "ingredients": [ + "large egg whites", + "large eggs", + "sugar", + "mirin", + "scallions", + "reduced sodium soy sauce", + "boneless skinless chicken breasts", + "reduced sodium chicken broth", + "quick cooking brown rice" + ] + }, + { + "id": 15734, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "baking potatoes", + "cream cheese", + "shredded cheddar cheese", + "salt", + "chopped fresh chives", + "barbecued pork", + "pepper", + "white wine vinegar", + "fresh lemon juice" + ] + }, + { + "id": 27127, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "chili oil", + "boneless skinless chicken breast halves", + "curry powder", + "ground coriander", + "peanuts", + "coconut milk", + "water", + "peanut sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 22931, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cooking spray", + "paprika", + "plum tomatoes", + "dried thyme", + "queso fresco", + "corn tortillas", + "fat-free mayonnaise", + "minced garlic", + "ground red pepper", + "salt", + "dried oregano", + "white vinegar", + "garlic powder", + "buttermilk", + "medium shrimp", + "ground cumin" + ] + }, + { + "id": 9747, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "crushed red pepper flakes", + "ketchup", + "butter", + "mustard powder", + "brown sugar", + "hot pepper sauce", + "salt", + "cider vinegar", + "worcestershire sauce", + "fresh lemon juice" + ] + }, + { + "id": 48440, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "salt", + "monkfish", + "dry sherry", + "fresh parsley", + "slivered almonds", + "ground black pepper", + "red bell pepper", + "bottled clam juice", + "garlic", + "onions" + ] + }, + { + "id": 14820, + "cuisine": "japanese", + "ingredients": [ + "avocado", + "soba noodles", + "kirby cucumbers", + "mango", + "smoked salmon", + "seaweed", + "sauce" + ] + }, + { + "id": 48996, + "cuisine": "cajun_creole", + "ingredients": [ + "hot pepper sauce", + "low salt chicken broth", + "whole okra", + "diced tomatoes", + "dried thyme", + "all-purpose flour", + "boneless chicken skinless thigh", + "vegetable oil" + ] + }, + { + "id": 16193, + "cuisine": "greek", + "ingredients": [ + "cherry tomatoes", + "purple onion", + "green bell pepper", + "kalamata", + "fresh lemon juice", + "seedless cucumber", + "extra-virgin olive oil", + "feta cheese", + "fresh oregano" + ] + }, + { + "id": 35193, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "pork chops", + "hoisin sauce", + "sweet pepper", + "green beans", + "soy sauce", + "mirin", + "thai chile", + "chinese five-spice powder", + "honey", + "Sriracha", + "garlic", + "Chinese egg noodles", + "sugar", + "minced onion", + "ginger", + "peanut oil" + ] + }, + { + "id": 26961, + "cuisine": "chinese", + "ingredients": [ + "ground chicken", + "honey", + "green onions", + "ground ginger", + "cider vinegar", + "almond flour", + "tamari soy sauce", + "kosher salt", + "sesame seeds", + "red pepper", + "eggs", + "fresh cilantro", + "garlic powder" + ] + }, + { + "id": 40598, + "cuisine": "italian", + "ingredients": [ + "capers", + "swordfish steaks", + "red wine vinegar", + "fresh parsley", + "bottled clam juice", + "finely chopped onion", + "kalamata", + "sugar", + "olive oil", + "raisins", + "tomato paste", + "water", + "dry white wine", + "all-purpose flour" + ] + }, + { + "id": 40970, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "bay leaf", + "cumin", + "tomato paste", + "Mexican beer", + "beef broth", + "garlic salt", + "chile powder", + "ground black pepper", + "cilantro leaves", + "chipotle peppers", + "boneless beef roast", + "garlic", + "sauce", + "dried oregano" + ] + }, + { + "id": 8307, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "salt", + "canola oil", + "wonton wrappers", + "scallions", + "fresh ginger", + "rice vinegar", + "low sodium soy sauce", + "ground pork", + "large shrimp" + ] + }, + { + "id": 45108, + "cuisine": "southern_us", + "ingredients": [ + "green chile", + "corn", + "heavy cream", + "yellow onion", + "seasoned bread crumbs", + "coarse salt", + "shredded sharp cheddar cheese", + "sour cream", + "black pepper", + "grated parmesan cheese", + "garlic", + "cream cheese", + "eggs", + "milk", + "butter", + "all-purpose flour", + "cornmeal" + ] + }, + { + "id": 27947, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "honey", + "paprika", + "large shrimp", + "plain yogurt", + "lemon wedge", + "garlic", + "sliced almonds", + "garam masala", + "whipping cream", + "ground cumin", + "tomato paste", + "fresh cilantro", + "butter", + "tandoori paste" + ] + }, + { + "id": 25746, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking powder", + "grated lemon zest", + "peaches", + "vanilla extract", + "sugar", + "butter", + "corn starch", + "flour", + "salt" + ] + }, + { + "id": 14325, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "purple onion", + "coconut milk", + "ground turmeric", + "garlic paste", + "ground red pepper", + "cardamom pods", + "medium shrimp", + "black peppercorns", + "roma tomatoes", + "salt", + "bay leaf", + "ginger paste", + "green bell pepper", + "sunflower oil", + "cinnamon sticks", + "cashew nuts" + ] + }, + { + "id": 35980, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "jalapeno chilies", + "cilantro sprigs", + "shiitake mushroom caps", + "water", + "peeled fresh ginger", + "carrots", + "low sodium soy sauce", + "ground black pepper", + "green onions", + "cucumber", + "kosher salt", + "french bread", + "rice vinegar", + "canola oil" + ] + }, + { + "id": 29105, + "cuisine": "chinese", + "ingredients": [ + "celery ribs", + "sesame seeds", + "boneless skinless chicken breasts", + "salt", + "beansprouts", + "pepper", + "broccoli florets", + "red pepper", + "carrots", + "soy sauce", + "shiitake", + "sesame oil", + "chili sauce", + "olive oil", + "green onions", + "teriyaki sauce", + "baby corn" + ] + }, + { + "id": 34224, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "salt", + "olive oil", + "pecans", + "garlic cloves", + "grated parmesan cheese" + ] + }, + { + "id": 43853, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "dried oregano", + "dried basil", + "crushed red pepper flakes", + "white sugar", + "water", + "zucchini", + "onions", + "tomato sauce", + "grated romano cheese", + "pasta shells" + ] + }, + { + "id": 44119, + "cuisine": "southern_us", + "ingredients": [ + "green onions", + "garlic cloves", + "crawfish", + "butter", + "flat leaf parsley", + "green bell pepper", + "pimentos", + "cream cheese, soften", + "baguette", + "creole seasoning" + ] + }, + { + "id": 42586, + "cuisine": "french", + "ingredients": [ + "potatoes", + "salt", + "chicken bouillon", + "chives", + "ground black pepper", + "butter", + "nutmeg", + "leeks", + "sour cream" + ] + }, + { + "id": 10049, + "cuisine": "thai", + "ingredients": [ + "basa fillets", + "salt", + "Thai red curry paste", + "oyster sauce", + "vegetable oil", + "rice vinegar", + "fish sauce", + "cornflour", + "lime leaves" + ] + }, + { + "id": 44912, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "olive oil", + "large garlic cloves", + "fresh lemon juice", + "chopped cilantro fresh", + "hungarian sweet paprika", + "tumeric", + "ground black pepper", + "ground coriander", + "chicken thighs", + "tomatoes", + "eggplant", + "chicken drumsticks", + "onions", + "ground cumin", + "fennel seeds", + "water", + "celtic salt", + "blanched almonds", + "marjoram" + ] + }, + { + "id": 45011, + "cuisine": "korean", + "ingredients": [ + "chili pepper", + "white rice vinegar", + "fresh ginger", + "napa cabbage", + "gochugaru", + "scallions", + "minced garlic", + "coarse salt" + ] + }, + { + "id": 27600, + "cuisine": "mexican", + "ingredients": [ + "water", + "ice cubes", + "lemon", + "lime slices", + "piloncillo", + "jamaica" + ] + }, + { + "id": 38639, + "cuisine": "mexican", + "ingredients": [ + "water", + "elbow macaroni", + "salsa", + "corn", + "ground beef", + "tomato sauce", + "sharp cheddar cheese" + ] + }, + { + "id": 43168, + "cuisine": "greek", + "ingredients": [ + "pepper", + "feta cheese crumbles", + "butter", + "water", + "eggs", + "salt" + ] + }, + { + "id": 40260, + "cuisine": "italian", + "ingredients": [ + "meatballs", + "spinach leaves", + "shell pasta", + "chicken broth", + "pizza sauce", + "water" + ] + }, + { + "id": 47377, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "olive oil", + "lemon zest", + "peas", + "reduced sodium chicken broth", + "unsalted butter", + "mushrooms", + "onions", + "water", + "parmigiano reggiano cheese", + "dry white wine", + "chopped garlic", + "black pepper", + "asparagus", + "chopped fresh chives", + "salt" + ] + }, + { + "id": 29956, + "cuisine": "southern_us", + "ingredients": [ + "bread crumbs", + "lemon peel", + "coarse kosher salt", + "ground black pepper", + "fresh lemon juice", + "jerusalem artichokes", + "turbot fillets", + "unsalted butter", + "heavy whipping cream", + "fresh chives", + "fresh tarragon", + "flat leaf parsley" + ] + }, + { + "id": 16476, + "cuisine": "indian", + "ingredients": [ + "clove", + "water", + "raisins", + "black pepper", + "lemon zest", + "cinnamon sticks", + "molasses", + "fresh ginger root", + "garlic", + "cider vinegar", + "serrano peppers", + "mango" + ] + }, + { + "id": 45612, + "cuisine": "french", + "ingredients": [ + "pepper", + "oil", + "cranberry sauce", + "dry bread crumbs", + "salt", + "eggs", + "brie cheese" + ] + }, + { + "id": 41004, + "cuisine": "mexican", + "ingredients": [ + "salt", + "corn kernels", + "ancho chile pepper", + "fat free less sodium chicken broth", + "lard", + "baking powder", + "masa harina" + ] + }, + { + "id": 5561, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "napa cabbage", + "persimmon", + "toasted sesame seeds", + "mashed potatoes", + "pumpkin", + "ginger", + "kelp", + "Korean chile flakes", + "water", + "coarse sea salt", + "dried shiitake mushrooms", + "chiles", + "green onions", + "garlic", + "onions" + ] + }, + { + "id": 19512, + "cuisine": "italian", + "ingredients": [ + "sugar", + "espresso", + "ladyfingers", + "vanilla extract", + "unflavored gelatin", + "mascarpone", + "bittersweet chocolate", + "large egg yolks", + "heavy whipping cream" + ] + }, + { + "id": 21438, + "cuisine": "french", + "ingredients": [ + "dried thyme", + "shallots", + "sliced mushrooms", + "minced garlic", + "ground black pepper", + "fresh lemon juice", + "fresh basil", + "sea scallops", + "salt", + "tomato paste", + "olive oil", + "diced tomatoes" + ] + }, + { + "id": 12385, + "cuisine": "mexican", + "ingredients": [ + "corn tortilla chips", + "shredded cheddar cheese", + "garbanzo beans", + "lean ground beef", + "romaine lettuce", + "taco seasoning mix", + "chili powder", + "iceberg lettuce", + "green bell pepper", + "low-fat salad dressing", + "green onions", + "yellow bell pepper", + "tomatoes", + "ketchup", + "kidney beans", + "chile pepper" + ] + }, + { + "id": 17970, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "canola oil", + "canola", + "salt", + "water", + "buttermilk", + "eggs", + "self rising flour", + "cornmeal" + ] + }, + { + "id": 7546, + "cuisine": "chinese", + "ingredients": [ + "fish sauce", + "lime", + "red wine", + "onions", + "tomato paste", + "water", + "oxtails", + "garlic", + "ketchup", + "whole milk", + "virgin coconut oil", + "soy sauce", + "cherry tomatoes", + "all purpose unbleached flour" + ] + }, + { + "id": 43440, + "cuisine": "brazilian", + "ingredients": [ + "muscovado sugar", + "crushed ice", + "fresh lime", + "cachaca", + "sugar cane" + ] + }, + { + "id": 41679, + "cuisine": "cajun_creole", + "ingredients": [ + "yellow squash", + "salt", + "white onion", + "cajun seasoning", + "zucchini", + "cayenne pepper", + "mild olive oil", + "worcestershire sauce" + ] + }, + { + "id": 36522, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "salsa verde", + "red bell pepper", + "olive oil", + "purple onion", + "chopped cilantro fresh", + "pepper", + "chile pepper", + "tuna", + "mayonaise", + "orange bell pepper", + "salt", + "ground cumin" + ] + }, + { + "id": 24541, + "cuisine": "southern_us", + "ingredients": [ + "yellow mustard", + "ground cumin", + "finely chopped onion", + "salt", + "baked beans", + "turkey thigh", + "barbecue sauce", + "potato rolls" + ] + }, + { + "id": 20675, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "dried tarragon leaves", + "vinaigrette", + "salmon fillets", + "romaine lettuce leaves", + "red potato", + "hard-boiled egg", + "green beans", + "capers", + "green onions" + ] + }, + { + "id": 23781, + "cuisine": "french", + "ingredients": [ + "sweetened coconut flakes", + "chopped pecans", + "unflavored gelatin", + "1% low-fat milk", + "vanilla extract", + "dark chocolate chip", + "whipped topping" + ] + }, + { + "id": 37172, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "red pepper flakes", + "japanese eggplants", + "pasta", + "whole peeled tomatoes", + "garlic", + "ricotta salata", + "extra-virgin olive oil", + "tomato paste", + "basil leaves", + "dried oregano" + ] + }, + { + "id": 42812, + "cuisine": "japanese", + "ingredients": [ + "yellow miso", + "peeled fresh ginger", + "sliced green onions", + "mirin", + "dark sesame oil", + "sesame seeds", + "crushed red pepper", + "japanese eggplants", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 21148, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "bow-tie pasta", + "chicken broth", + "grated parmesan cheese", + "low sodium garbanzo beans", + "onions", + "spinach", + "large garlic cloves" + ] + }, + { + "id": 12001, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "fish sauce", + "garlic", + "sugar" + ] + }, + { + "id": 8576, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "grated parmesan cheese", + "butter", + "swiss chard", + "shredded swiss cheese", + "flour", + "garlic" + ] + }, + { + "id": 6276, + "cuisine": "cajun_creole", + "ingredients": [ + "fat free less sodium chicken broth", + "olive oil", + "diced tomatoes", + "bay leaf", + "long grain white rice", + "tomato paste", + "water", + "hot pepper sauce", + "chopped onion", + "fresh parsley", + "minced garlic", + "ground black pepper", + "paprika", + "medium shrimp", + "dried oregano", + "andouille sausage", + "dried thyme", + "onion powder", + "red bell pepper", + "garlic salt" + ] + }, + { + "id": 32784, + "cuisine": "irish", + "ingredients": [ + "fat free beef broth", + "black pepper", + "cooking spray", + "chopped onion", + "mashed potatoes", + "fat free milk", + "paprika", + "leg of lamb", + "tomato paste", + "water", + "worcestershire sauce", + "corn starch", + "green bell pepper", + "grated parmesan cheese", + "salt", + "frozen peas and carrots" + ] + }, + { + "id": 20220, + "cuisine": "southern_us", + "ingredients": [ + "fat free milk", + "salt", + "reduced fat whipped topping", + "pastry shell", + "orange peel", + "brown sugar", + "sweet potatoes", + "all-purpose flour", + "egg substitute", + "vanilla extract", + "pumpkin pie spice" + ] + }, + { + "id": 31454, + "cuisine": "mexican", + "ingredients": [ + "pecans", + "all-purpose flour", + "vanilla extract", + "unsalted butter", + "powdered sugar", + "salt" + ] + }, + { + "id": 41214, + "cuisine": "vietnamese", + "ingredients": [ + "pepper", + "green onions", + "extra-virgin olive oil", + "jalapeno chilies", + "cilantro", + "whole wheat thin spaghetti", + "lime juice", + "sesame oil", + "garlic cloves", + "fish sauce", + "low sodium chicken broth", + "button mushrooms", + "large shrimp" + ] + }, + { + "id": 44161, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "napa cabbage", + "corn starch", + "soy sauce", + "green onions", + "ground pork", + "fresh ginger", + "wonton wrappers", + "seasoned rice wine vinegar", + "egg whites", + "dry sherry" + ] + }, + { + "id": 20542, + "cuisine": "greek", + "ingredients": [ + "pitas", + "lemon", + "juice", + "kosher salt", + "mint leaves", + "fresh oregano", + "ground lamb", + "olive oil", + "chives", + "english cucumber", + "ground black pepper", + "garlic", + "greek yogurt" + ] + }, + { + "id": 20423, + "cuisine": "british", + "ingredients": [ + "eggs", + "butter", + "milk", + "flour", + "sausage links" + ] + }, + { + "id": 43572, + "cuisine": "mexican", + "ingredients": [ + "chicken bouillon", + "vegetable oil", + "onions", + "corn", + "garlic", + "milk", + "butter", + "chile pepper", + "rice" + ] + }, + { + "id": 1149, + "cuisine": "thai", + "ingredients": [ + "firmly packed brown sugar", + "thai green curry paste", + "reduced fat coconut milk", + "cooked chicken", + "bamboo shoots", + "chicken broth", + "soy sauce", + "fresh basil leaves", + "cooked rice", + "corn starch" + ] + }, + { + "id": 47325, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "yellow onion", + "fettuccine pasta", + "red pepper flakes", + "lemon", + "sardines", + "olive oil", + "garlic" + ] + }, + { + "id": 19956, + "cuisine": "thai", + "ingredients": [ + "white vinegar", + "thai chile", + "granulated sugar", + "water", + "kosher salt", + "garlic cloves" + ] + }, + { + "id": 2393, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chili powder", + "rice vinegar", + "beef steak", + "fresh ginger", + "vegetable oil", + "corn starch", + "red chili peppers", + "orange marmalade", + "garlic", + "cooked white rice", + "kosher salt", + "sesame oil", + "orange juice" + ] + }, + { + "id": 4170, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "baking soda", + "soy sauce", + "mentsuyu", + "sake", + "mirin", + "water" + ] + }, + { + "id": 44216, + "cuisine": "korean", + "ingredients": [ + "water", + "garlic cloves", + "sambal ulek", + "lower sodium soy sauce", + "canola oil", + "sugar", + "top sirloin steak", + "sliced green onions", + "rice sticks", + "fresh lime juice" + ] + }, + { + "id": 40066, + "cuisine": "french", + "ingredients": [ + "water", + "worcestershire sauce", + "onions", + "sugar", + "unsalted butter", + "all-purpose flour", + "ground black pepper", + "gruyere cheese", + "baguette", + "dry white wine", + "less sodium beef broth" + ] + }, + { + "id": 19911, + "cuisine": "french", + "ingredients": [ + "dried lavender blossoms", + "pears", + "fresh lemon juice", + "whole milk ricotta cheese", + "sugar", + "blackberries" + ] + }, + { + "id": 36234, + "cuisine": "vietnamese", + "ingredients": [ + "fennel seeds", + "low sodium chicken broth", + "chile de arbol", + "scallions", + "onions", + "unsalted roasted peanuts", + "vegetable oil", + "cilantro leaves", + "cinnamon sticks", + "ground black pepper", + "ginger", + "meat bones", + "mung bean sprouts", + "kosher salt", + "lime wedges", + "star anise", + "garlic cloves", + "thin rice stick noodles" + ] + }, + { + "id": 39768, + "cuisine": "chinese", + "ingredients": [ + "red beans", + "shortening", + "glutinous rice flour", + "powdered sugar", + "seeds", + "milk", + "carrots" + ] + }, + { + "id": 40201, + "cuisine": "french", + "ingredients": [ + "sugar", + "honey", + "buckwheat honey", + "garbanzo bean flour", + "flaxseed", + "sweet rice flour", + "pectin", + "tapioca flour", + "dry yeast", + "poppy seeds", + "buckwheat flour", + "double-acting baking powder", + "sponge", + "water", + "teff", + "sea salt", + "brown rice flour", + "psyllium husks", + "sunflower seeds", + "millet", + "grapeseed oil", + "gluten-free oat", + "oil" + ] + }, + { + "id": 30912, + "cuisine": "mexican", + "ingredients": [ + "crema mexicana", + "whole kernel corn, drain", + "chopped cilantro fresh", + "baking potatoes", + "garlic cloves", + "jalapeno chilies", + "cumin seed", + "salt", + "fresh lime juice" + ] + }, + { + "id": 35215, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "ginger", + "sugar", + "Shaoxing wine", + "oil", + "water", + "scallions", + "soy sauce", + "sesame oil", + "fish" + ] + }, + { + "id": 38844, + "cuisine": "italian", + "ingredients": [ + "baking potatoes", + "sage leaves", + "extra-virgin olive oil", + "kosher salt" + ] + }, + { + "id": 48616, + "cuisine": "mexican", + "ingredients": [ + "black peppercorns", + "jalapeno chilies", + "garlic cloves", + "corn tortillas", + "ground cumin", + "tomatoes", + "salsa verde", + "sharp cheddar cheese", + "heavy whipping cream", + "chopped cilantro fresh", + "cold water", + "kosher salt", + "ground red pepper", + "cream cheese, soften", + "boneless skinless chicken breast halves", + "celery ribs", + "lower sodium chicken broth", + "cooking spray", + "carrots", + "onions" + ] + }, + { + "id": 22950, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "salt", + "chile sauce", + "japanese rice", + "yellowfin", + "scallions", + "chili oil", + "rice vinegar", + "masago", + "yaki-nori", + "konbu" + ] + }, + { + "id": 34612, + "cuisine": "french", + "ingredients": [ + "white bread", + "dry white wine", + "all-purpose flour", + "olive oil", + "shallots", + "roquefort cheese", + "fresh shiitake mushrooms", + "brie cheese", + "vegetables", + "chopped fresh thyme" + ] + }, + { + "id": 41784, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "serrano chile", + "lime juice", + "salt", + "diced onions", + "chopped cilantro fresh" + ] + }, + { + "id": 15450, + "cuisine": "moroccan", + "ingredients": [ + "pitted kalamata olives", + "white wine vinegar", + "paprika", + "fresh parsley", + "tangerine", + "cayenne pepper", + "butter lettuce", + "extra-virgin olive oil", + "ground cumin" + ] + }, + { + "id": 27575, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "corn tortillas", + "green onions", + "enchilada sauce", + "chopped almonds", + "shredded sharp cheddar cheese", + "ripe olives", + "cooked chicken", + "sour cream" + ] + }, + { + "id": 9620, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "olive oil", + "rolls", + "pasta sauce", + "pickle spears", + "precooked meatballs", + "shredded mozzarella cheese" + ] + }, + { + "id": 30059, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger", + "rice vinegar", + "fresh lime juice", + "soy sauce", + "red pepper flakes", + "garlic cloves", + "hero rolls", + "cilantro leaves", + "carrots", + "sugar", + "flank steak", + "scallions" + ] + }, + { + "id": 6027, + "cuisine": "french", + "ingredients": [ + "shallots", + "ground black pepper", + "fine sea salt", + "salad", + "red wine vinegar", + "dijon mustard", + "hazelnut oil" + ] + }, + { + "id": 6429, + "cuisine": "mexican", + "ingredients": [ + "ground sirloin", + "green chilies", + "cheese", + "spaghetti", + "diced tomatoes", + "taco seasoning", + "green onions", + "green pepper" + ] + }, + { + "id": 10820, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "vegetable oil", + "onions", + "tomatoes", + "boneless chicken thighs", + "garlic cloves", + "pasta sauce", + "salt", + "italian seasoning", + "fettucine", + "grated parmesan cheese", + "fresh parsley" + ] + }, + { + "id": 1005, + "cuisine": "thai", + "ingredients": [ + "shallots", + "thai green curry paste", + "fresh basil", + "red bell pepper", + "unsweetened coconut milk", + "vegetable oil", + "boneless skinless chicken breast halves", + "fish sauce", + "fresh lime juice" + ] + }, + { + "id": 15618, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "fennel", + "vegetable oil", + "garlic", + "cumin", + "red snapper", + "fenugreek", + "ginger", + "onions", + "tomatoes", + "chili powder", + "white rice", + "ground turmeric", + "curry leaves", + "tamarind pulp", + "coarse salt", + "coconut milk", + "ground cumin" + ] + }, + { + "id": 35266, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "lime wedges", + "purple onion", + "whole kernel corn, drain", + "boneless skinless chicken breast halves", + "tomatoes", + "black-eyed peas", + "romaine lettuce leaves", + "cilantro leaves", + "tequila", + "black beans", + "chopped green bell pepper", + "garlic", + "green chilies", + "garlic salt", + "lime", + "paprika", + "salt", + "salad dressing", + "chopped cilantro fresh" + ] + }, + { + "id": 48131, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "broccoli", + "canola oil", + "red cabbage", + "rice vinegar", + "carrots", + "shiitake", + "chili oil", + "garlic cloves", + "fresh ginger", + "ramen noodles", + "firm tofu" + ] + }, + { + "id": 21364, + "cuisine": "indian", + "ingredients": [ + "salt", + "curds", + "all-purpose flour", + "sugar" + ] + }, + { + "id": 23486, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "all-purpose flour", + "confectioners sugar", + "eggs", + "vanilla extract", + "cream cheese", + "dark chocolate", + "crème fraîche", + "beer", + "unsalted butter", + "superfine white sugar", + "unsweetened cocoa powder" + ] + }, + { + "id": 48453, + "cuisine": "italian", + "ingredients": [ + "eggs", + "mushrooms", + "Spike Seasoning", + "black olives", + "green bell pepper", + "low fat mozzarella", + "olive oil", + "dried oregano" + ] + }, + { + "id": 5297, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "unsalted butter", + "heavy cream", + "grated lemon zest", + "grits", + "oysters", + "chives", + "garlic", + "ground cayenne pepper", + "olive oil", + "shallots", + "oyster mushrooms", + "roasted tomatoes", + "water", + "roma tomatoes", + "cracked black pepper", + "sherry wine" + ] + }, + { + "id": 21705, + "cuisine": "italian", + "ingredients": [ + "baking potatoes", + "low-fat marinara sauce", + "string cheese", + "italian seasoning", + "garlic powder" + ] + }, + { + "id": 39976, + "cuisine": "greek", + "ingredients": [ + "pita bread", + "rice vinegar", + "fresh mint", + "garlic", + "feta cheese crumbles", + "dried oregano", + "sliced tomatoes", + "salt", + "cucumber", + "ground lamb", + "black pepper", + "garlic cloves", + "sour cream" + ] + }, + { + "id": 23978, + "cuisine": "italian", + "ingredients": [ + "sugar", + "baking powder", + "eggs", + "dried apricot", + "salt", + "unsalted butter", + "vanilla", + "slivered almonds", + "flour", + "bittersweet chocolate" + ] + }, + { + "id": 22855, + "cuisine": "italian", + "ingredients": [ + "chard", + "olive oil", + "salt", + "pepper", + "apple cider vinegar", + "fresh parsley", + "fresh rosemary", + "grated parmesan cheese", + "spaghetti squash", + "minced garlic", + "chili pepper flakes" + ] + }, + { + "id": 23324, + "cuisine": "russian", + "ingredients": [ + "sugar", + "cinnamon", + "fresh blueberries", + "all-purpose flour", + "egg whites", + "salt", + "cold water", + "egg yolks", + "sour cream" + ] + }, + { + "id": 43188, + "cuisine": "russian", + "ingredients": [ + "vodka", + "sour cherries", + "sugar" + ] + }, + { + "id": 8962, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "purple onion", + "chopped cilantro", + "flour tortillas", + "Mexican cheese", + "Herdez Salsa Verde", + "rotisserie chicken", + "tomatoes", + "cilantro", + "sour cream" + ] + }, + { + "id": 21853, + "cuisine": "italian", + "ingredients": [ + "yellow squash", + "ground black pepper", + "sliced carrots", + "broccoli", + "1% low-fat cottage cheese", + "fresh parmesan cheese", + "cooking spray", + "all-purpose flour", + "nutmeg", + "part-skim mozzarella cheese", + "zucchini", + "salt", + "garlic cloves", + "frozen chopped spinach", + "olive oil", + "lasagna noodles", + "1% low-fat milk", + "chopped onion" + ] + }, + { + "id": 35782, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "asian pear", + "beef rib short", + "black pepper", + "extract", + "kiwi", + "soy sauce", + "sesame oil", + "onions", + "low sodium soy sauce", + "garlic powder", + "ginger" + ] + }, + { + "id": 31635, + "cuisine": "italian", + "ingredients": [ + "red bell pepper", + "cherry tomatoes", + "tortellini", + "dressing" + ] + }, + { + "id": 140, + "cuisine": "jamaican", + "ingredients": [ + "brown sugar", + "lime", + "cold water", + "lemon", + "molasses" + ] + }, + { + "id": 17402, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "green onions", + "nonfat yogurt", + "ground cumin", + "reduced-fat sour cream" + ] + }, + { + "id": 44845, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "cinnamon sticks", + "heavy cream", + "large eggs", + "ground cinnamon", + "vanilla extract" + ] + }, + { + "id": 34958, + "cuisine": "mexican", + "ingredients": [ + "fat free yogurt", + "pimentos", + "garlic cloves", + "olive oil", + "nopales", + "basmati rice", + "fat free less sodium chicken broth", + "non-fat sour cream", + "poblano chiles", + "cooking spray", + "chopped onion", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 17110, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "old bay seasoning", + "crabmeat", + "milk", + "dry sherry", + "corn starch", + "half & half", + "whipping cream", + "onions", + "celery ribs", + "butter", + "salt" + ] + }, + { + "id": 47524, + "cuisine": "russian", + "ingredients": [ + "large egg yolks", + "salt", + "brandy", + "baking powder", + "walnuts", + "ground cloves", + "vanilla extract", + "powdered sugar", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 31534, + "cuisine": "italian", + "ingredients": [ + "sugar", + "egg whites", + "eggs", + "baking soda", + "salt", + "white chocolate", + "vanilla extract", + "vegetable oil cooking spray", + "crystallized ginger", + "all-purpose flour" + ] + }, + { + "id": 47177, + "cuisine": "thai", + "ingredients": [ + "kosher salt", + "olive oil", + "garlic", + "thai green curry paste", + "unsalted chicken stock", + "fresh cilantro", + "green onions", + "carrots", + "lacinato kale", + "fresh lime", + "fresh ginger", + "dried rice noodles", + "scallops", + "lime", + "light coconut milk", + "shrimp" + ] + }, + { + "id": 9426, + "cuisine": "mexican", + "ingredients": [ + "serrano peppers", + "sweet pepper", + "shredded Monterey Jack cheese", + "white corn tortillas", + "vegetable oil", + "sour cream", + "tomatoes", + "lime wedges", + "nonstick spray", + "fresh cilantro", + "cilantro", + "onions" + ] + }, + { + "id": 4833, + "cuisine": "french", + "ingredients": [ + "black peppercorns", + "dry white wine", + "yellow onion", + "olive oil", + "chopped celery", + "bay leaf", + "water", + "garlic", + "thyme", + "ground black pepper", + "salt", + "fish" + ] + }, + { + "id": 894, + "cuisine": "irish", + "ingredients": [ + "shortening", + "cake flour", + "sour cream", + "ground nutmeg", + "all-purpose flour", + "granny smith apples", + "salt", + "white sugar", + "eggs", + "unsalted butter", + "lemon juice" + ] + }, + { + "id": 37834, + "cuisine": "russian", + "ingredients": [ + "large eggs", + "maple syrup", + "granulated sugar", + "buttermilk", + "baking soda", + "butter", + "all-purpose flour", + "kosher salt", + "vegetable oil", + "jam" + ] + }, + { + "id": 44370, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "baking soda", + "vegetable oil", + "Frangelico", + "whole wheat flour", + "cooking spray", + "coffee beans", + "large egg whites", + "large eggs", + "all-purpose flour", + "unsweetened cocoa powder", + "roasted hazelnuts", + "granulated sugar", + "salt", + "instant espresso" + ] + }, + { + "id": 42053, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "onions", + "green chile", + "garlic", + "shredded Monterey Jack cheese", + "chicken broth", + "vegetable oil", + "long grain white rice", + "tomato sauce", + "salt", + "ground cumin" + ] + }, + { + "id": 46809, + "cuisine": "japanese", + "ingredients": [ + "sake", + "rice vinegar", + "sesame oil", + "soy sauce", + "canola oil", + "sugar", + "gingerroot" + ] + }, + { + "id": 48637, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "chopped green bell pepper", + "kalamata", + "red bell pepper", + "fresh rosemary", + "olive oil", + "coarse salt", + "goat cheese", + "basil pesto sauce", + "garbanzo beans", + "balsamic vinegar", + "toasted pine nuts", + "country white bread", + "red leaf lettuce", + "teardrop tomatoes", + "purple onion" + ] + }, + { + "id": 12782, + "cuisine": "vietnamese", + "ingredients": [ + "reduced sodium chicken broth", + "rice noodles", + "scallions", + "snow peas", + "lime", + "basil", + "red bell pepper", + "shredded carrots", + "ginger", + "fresh lime juice", + "clove", + "boneless skinless chicken breasts", + "star anise", + "chopped cilantro fresh" + ] + }, + { + "id": 1210, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "peanut oil", + "splenda no calorie sweetener", + "eggs", + "zucchini", + "beansprouts", + "peanuts", + "scallions", + "chopped garlic", + "fish sauce", + "rice vinegar", + "chopped cilantro" + ] + }, + { + "id": 32143, + "cuisine": "mexican", + "ingredients": [ + "chile pepper", + "boneless pork loin", + "chicken broth", + "salt", + "celery", + "crushed garlic", + "peanut oil", + "tomatoes", + "salsa" + ] + }, + { + "id": 27336, + "cuisine": "korean", + "ingredients": [ + "red leaf lettuce", + "red pepper flakes", + "white vinegar", + "green onions", + "water", + "white sugar", + "soy sauce", + "sesame oil" + ] + }, + { + "id": 19019, + "cuisine": "italian", + "ingredients": [ + "spinach", + "sub buns", + "capers", + "olive oil", + "lemon juice", + "pepper", + "chickpeas", + "water", + "garlic cloves" + ] + }, + { + "id": 25893, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "bacon", + "milk", + "salt", + "large eggs", + "grits", + "unsalted butter", + "dried dillweed" + ] + }, + { + "id": 23811, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "sea salt", + "fresh mozzarella", + "extra-virgin olive oil", + "balsamic vinegar", + "cracked black pepper", + "heirloom tomatoes" + ] + }, + { + "id": 34015, + "cuisine": "irish", + "ingredients": [ + "pepper", + "salt", + "yukon gold potatoes", + "vegetable oil cooking spray", + "1% low-fat milk", + "green onions" + ] + }, + { + "id": 40844, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "crawfish", + "Tabasco Pepper Sauce", + "chili sauce", + "mayonaise", + "ground black pepper", + "purple onion", + "red bell pepper", + "sweet pickle relish", + "cherry tomatoes", + "old bay seasoning", + "lemon juice", + "lettuce", + "lump crab meat", + "green onions", + "salt" + ] + }, + { + "id": 3053, + "cuisine": "cajun_creole", + "ingredients": [ + "spinach", + "green onions", + "all-purpose flour", + "cabbage", + "bacon drippings", + "boneless chop pork", + "butter", + "onions", + "turnip greens", + "mustard greens", + "celery", + "lettuce", + "seasoning salt", + "salt", + "garlic salt" + ] + }, + { + "id": 45580, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "spring onions", + "pork belly", + "sweet chili sauce", + "chinese five-spice powder", + "fresh ginger root" + ] + }, + { + "id": 10287, + "cuisine": "thai", + "ingredients": [ + "lime", + "oil", + "sugar", + "red grape", + "salad", + "steamed rice", + "beansprouts", + "red chili peppers", + "beef rump steaks" + ] + }, + { + "id": 7962, + "cuisine": "cajun_creole", + "ingredients": [ + "white onion", + "jalapeno chilies", + "garlic", + "creole seasoning", + "red bell pepper", + "sliced green onions", + "chicken stock", + "pepper", + "boneless skinless chicken breasts", + "salt", + "okra", + "celery", + "green bell pepper", + "crushed tomatoes", + "brown rice", + "hot sauce", + "shrimp", + "bay leaf", + "andouille sausage", + "olive oil", + "yellow bell pepper", + "cayenne pepper", + "thyme", + "fresh parsley" + ] + }, + { + "id": 16637, + "cuisine": "chinese", + "ingredients": [ + "spring onions", + "carrots", + "dark soy sauce", + "rice", + "garlic", + "large eggs", + "oil" + ] + }, + { + "id": 2600, + "cuisine": "mexican", + "ingredients": [ + "cilantro sprigs", + "mole sauce", + "pepper", + "salt", + "vegetable oil cooking spray", + "non-fat sour cream", + "ground cumin", + "lime juice", + "turkey tenderloins" + ] + }, + { + "id": 1332, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "bow-tie pasta", + "parmesan cheese", + "grated parmesan cheese", + "olive oil", + "fennel bulb", + "lemon juice", + "prosciutto", + "salt" + ] + }, + { + "id": 32354, + "cuisine": "thai", + "ingredients": [ + "reduced fat coconut milk", + "lemon grass", + "red curry paste", + "medium shrimp", + "ground ginger", + "baby spinach leaves", + "rice noodles", + "fresh lime juice", + "soy sauce", + "green onions", + "sliced mushrooms", + "white sugar", + "chicken broth", + "olive oil", + "garlic", + "chopped cilantro" + ] + }, + { + "id": 44110, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "ground nutmeg", + "chicken breasts", + "cilantro", + "ground allspice", + "mayonaise", + "peanuts", + "lettuce leaves", + "slaw mix", + "salt", + "sugar", + "garlic powder", + "green onions", + "paprika", + "cayenne pepper", + "ground cinnamon", + "lime", + "jamaican jerk season", + "onion powder", + "crushed red pepper", + "dried parsley" + ] + }, + { + "id": 9983, + "cuisine": "southern_us", + "ingredients": [ + "quickcooking grits", + "water", + "salt", + "black pepper", + "butter", + "garlic powder", + "sharp cheddar cheese" + ] + }, + { + "id": 20314, + "cuisine": "korean", + "ingredients": [ + "water", + "fish stock", + "carrots", + "sugar", + "leeks", + "salt", + "onions", + "potato starch", + "flour", + "ponzu", + "chillies", + "pepper", + "sesame oil", + "sauce" + ] + }, + { + "id": 36885, + "cuisine": "japanese", + "ingredients": [ + "lime", + "sunflower oil", + "soba noodles", + "brown rice vinegar", + "basil leaves", + "purple onion", + "toasted sesame oil", + "tofu", + "eggplant", + "fine sea salt", + "garlic cloves", + "fresh cilantro", + "red pepper flakes", + "cane sugar", + "mango" + ] + }, + { + "id": 19976, + "cuisine": "southern_us", + "ingredients": [ + "chicken legs", + "old bay seasoning", + "canola oil", + "flour", + "all-purpose flour", + "ground black pepper", + "salt", + "eggs", + "buttermilk", + "cornmeal" + ] + }, + { + "id": 22013, + "cuisine": "indian", + "ingredients": [ + "shallots", + "phyllo pastry", + "curry powder", + "oil", + "salt", + "onions", + "beef", + "thyme" + ] + }, + { + "id": 31506, + "cuisine": "french", + "ingredients": [ + "eggs", + "flour", + "dijon mustard", + "grated Gruyère cheese", + "ground black pepper", + "butter", + "grated parmesan cheese" + ] + }, + { + "id": 42595, + "cuisine": "greek", + "ingredients": [ + "coarse salt", + "fresh lemon juice", + "freshly ground pepper", + "extra-virgin olive oil", + "greek yogurt", + "eggplant", + "garlic cloves" + ] + }, + { + "id": 49256, + "cuisine": "japanese", + "ingredients": [ + "cockles", + "bonito flakes", + "konbu", + "white miso", + "seaweed", + "water", + "fresh mushrooms", + "firm silken tofu", + "scallions" + ] + }, + { + "id": 34543, + "cuisine": "moroccan", + "ingredients": [ + "minced garlic", + "salt", + "ground cumin", + "hungarian paprika", + "leg of lamb", + "ground black pepper", + "chopped cilantro", + "olive oil", + "fresh lemon juice" + ] + }, + { + "id": 1309, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "egg whites", + "hot sauce", + "water", + "baking potatoes", + "vegetable oil cooking spray", + "balsamic vinegar", + "onions", + "eggs", + "fresh parmesan cheese", + "salt" + ] + }, + { + "id": 1461, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "black olives", + "green onions", + "ground beef", + "crescent rolls", + "taco seasoning", + "shredded cheddar cheese", + "diced tomatoes" + ] + }, + { + "id": 10443, + "cuisine": "vietnamese", + "ingredients": [ + "shrimp chips", + "corn oil" + ] + }, + { + "id": 40619, + "cuisine": "japanese", + "ingredients": [ + "amberjack fillet", + "rice vinegar", + "fresh pineapple", + "brown sugar", + "fresh orange juice", + "low sodium soy sauce", + "cooking spray", + "garlic cloves", + "red bell pepper", + "green bell pepper", + "peeled fresh ginger", + "fresh lemon juice" + ] + }, + { + "id": 49410, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "ground black pepper", + "paprika", + "sharp cheddar cheese", + "cheddar cheese", + "vegetable oil", + "all-purpose flour", + "sour cream", + "pecan halves", + "green onions", + "salt", + "chopped pecans", + "chicken broth", + "mayonaise", + "worcestershire sauce", + "hot sauce", + "cooked chicken breasts" + ] + }, + { + "id": 36854, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "garlic cloves", + "French bread loaves", + "kalamata", + "cucumber", + "green bell pepper", + "salt", + "oregano", + "tomatoes", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 31519, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "hot Italian sausages", + "dried oregano", + "pasta sauce", + "crushed red pepper", + "garlic cloves", + "olive oil", + "salt", + "onions", + "bread", + "ricotta cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 23425, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "capsicum", + "dried red chile peppers", + "water", + "salt", + "ginger paste", + "coconut oil", + "paneer", + "onions", + "garam masala", + "cumin seed", + "ground cumin" + ] + }, + { + "id": 35274, + "cuisine": "chinese", + "ingredients": [ + "haricots verts", + "soup", + "oil", + "sugar", + "spring onions", + "ajinomoto", + "plain flour", + "soy sauce", + "wonton wrappers", + "onions", + "stock", + "mushrooms", + "carrots" + ] + }, + { + "id": 46482, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "marsala wine", + "vegetable oil", + "fresh parsley", + "boneless skinless chicken breasts", + "corn starch", + "pepper", + "garlic", + "Green Giant™ sliced mushrooms" + ] + }, + { + "id": 7428, + "cuisine": "brazilian", + "ingredients": [ + "canned black beans", + "finely chopped onion", + "salt", + "carrots", + "white vinegar", + "orange slices", + "bay leaves", + "beef rib short", + "boneless pork shoulder", + "ground black pepper", + "bacon slices", + "garlic cloves", + "kale", + "low sodium chicken broth", + "smoked pork" + ] + }, + { + "id": 6316, + "cuisine": "southern_us", + "ingredients": [ + "smoked ham", + "pepper", + "Tabasco Pepper Sauce", + "collard greens", + "onion powder", + "garlic powder", + "salt" + ] + }, + { + "id": 49577, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "whole chicken", + "buttermilk", + "vegetable oil", + "pepper", + "salt" + ] + }, + { + "id": 14425, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "ground black pepper", + "vegetable oil", + "chinese five-spice powder", + "light soy sauce", + "Sriracha", + "sauce", + "onions", + "pork shoulder roast", + "mirin", + "rice vinegar", + "garlic cloves", + "chicken stock", + "peanuts", + "sesame oil", + "creamy peanut butter" + ] + }, + { + "id": 28274, + "cuisine": "japanese", + "ingredients": [ + "maple syrup", + "soya flour", + "rice cakes" + ] + }, + { + "id": 39061, + "cuisine": "british", + "ingredients": [ + "garlic", + "ground allspice", + "white sugar", + "ground nutmeg", + "malt vinegar", + "tart apples", + "ground ginger", + "plums", + "ground cayenne pepper", + "worcestershire sauce", + "salt", + "onions" + ] + }, + { + "id": 34878, + "cuisine": "irish", + "ingredients": [ + "rhubarb", + "finely chopped onion", + "paprika", + "dried currants", + "peeled fresh ginger", + "ground cardamom", + "brown sugar", + "jalapeno chilies", + "salt", + "cider vinegar", + "balsamic vinegar" + ] + }, + { + "id": 7466, + "cuisine": "chinese", + "ingredients": [ + "melted butter", + "ground black pepper", + "water", + "chicken leg quarters", + "mayonaise", + "salt", + "white vinegar", + "prepared horseradish", + "white sugar" + ] + }, + { + "id": 13787, + "cuisine": "chinese", + "ingredients": [ + "long-grain rice", + "water", + "salt" + ] + }, + { + "id": 42225, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "blue cheese", + "chives", + "cayenne pepper sauce", + "cooked chicken", + "lemon juice", + "light mayonnaise" + ] + }, + { + "id": 13491, + "cuisine": "korean", + "ingredients": [ + "sugar", + "garlic", + "spring onions", + "toasted sesame seeds", + "soy sauce", + "toasted sesame oil", + "sesame", + "chives" + ] + }, + { + "id": 48303, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "extra-virgin olive oil", + "ground black pepper", + "sea salt", + "bucatini", + "parmigiano reggiano cheese", + "tapenade", + "kosher salt", + "Italian parsley leaves", + "oil" + ] + }, + { + "id": 24842, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "asparagus", + "broccoli", + "water", + "flour", + "carrots", + "pepper", + "zucchini", + "oil", + "eggplant", + "baking powder" + ] + }, + { + "id": 5426, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "sesame oil", + "unsalted dry roast peanuts", + "chinese black vinegar", + "chinese rice wine", + "hoisin sauce", + "ginger", + "scallions", + "soy sauce", + "ground sichuan pepper", + "peanut oil", + "sugar", + "boneless skinless chicken breasts", + "garlic", + "corn starch" + ] + }, + { + "id": 7569, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "all-purpose flour", + "unsalted butter", + "paprika", + "cheddar cheese", + "heavy cream", + "dill", + "whole milk", + "salt" + ] + }, + { + "id": 30199, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "trout fillet", + "lime", + "garlic cloves", + "soy sauce", + "pak choi", + "fresh ginger root" + ] + }, + { + "id": 30841, + "cuisine": "french", + "ingredients": [ + "white wine", + "cod fillets", + "red wine", + "dry bread crumbs", + "fresh parsley", + "french baguette", + "olive oil", + "red pepper flakes", + "beef broth", + "bay leaf", + "saffron", + "cream", + "leeks", + "garlic", + "grated Gruyère cheese", + "onions", + "water", + "light mayonnaise", + "all-purpose flour", + "lemon juice", + "plum tomatoes" + ] + }, + { + "id": 21715, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "large eggs", + "peanut oil", + "chopped cilantro fresh", + "fish sauce", + "lime", + "ancho powder", + "red bell pepper", + "sambal ulek", + "sugar pea", + "rice noodles", + "scallions", + "brown sugar", + "unsalted roasted peanuts", + "garlic", + "fresh lime juice" + ] + }, + { + "id": 41610, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "2% reduced-fat milk", + "ground cinnamon", + "self rising flour", + "peaches", + "white sugar", + "syrup", + "butter" + ] + }, + { + "id": 2058, + "cuisine": "korean", + "ingredients": [ + "water", + "green onions", + "freshly ground pepper", + "white vinegar", + "Sriracha", + "yellow onion", + "short rib", + "steamed rice", + "rice vinegar", + "garlic cloves", + "soy sauce", + "hoisin sauce", + "dark brown sugar" + ] + }, + { + "id": 48704, + "cuisine": "italian", + "ingredients": [ + "lemon zest", + "extra-virgin olive oil", + "whole milk", + "salt", + "superfine sugar", + "baking powder", + "large eggs", + "cake flour" + ] + }, + { + "id": 25476, + "cuisine": "jamaican", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "water", + "salt", + "long grain white rice", + "light coconut milk", + "thyme sprigs", + "kidney beans", + "ground allspice" + ] + }, + { + "id": 20791, + "cuisine": "italian", + "ingredients": [ + "gaeta olives", + "dry red wine", + "caper berries", + "ground black pepper", + "fronds", + "salt", + "hot red pepper flakes", + "eel" + ] + }, + { + "id": 7882, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "purple onion", + "fresh parsley", + "black pepper", + "extra-virgin olive oil", + "fresh lemon juice", + "tomatoes", + "chopped green bell pepper", + "crabmeat", + "hot pepper sauce", + "salt", + "long grain and wild rice mix" + ] + }, + { + "id": 1316, + "cuisine": "mexican", + "ingredients": [ + "reduced fat monterey jack cheese", + "hot pepper sauce", + "all-purpose flour", + "sliced green onions", + "water", + "chile pepper", + "corn tortillas", + "tomato sauce", + "chili powder", + "chopped onion", + "ground cumin", + "olive oil", + "salt", + "95% lean ground beef" + ] + }, + { + "id": 48081, + "cuisine": "filipino", + "ingredients": [ + "chicken legs", + "vinegar", + "water", + "vegetable oil", + "black peppercorns", + "bay leaves", + "light soy sauce", + "garlic" + ] + }, + { + "id": 4054, + "cuisine": "british", + "ingredients": [ + "tart shells", + "dried fig", + "eggs", + "chopped walnuts", + "brown sugar", + "citron", + "raisins" + ] + }, + { + "id": 16067, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "italian seasoning", + "pepperoni slices", + "shredded mozzarella cheese", + "water", + "bisquick", + "pizza sauce" + ] + }, + { + "id": 32300, + "cuisine": "southern_us", + "ingredients": [ + "ladys house seasoning", + "rib eye steaks", + "cayenne pepper", + "cajun seasoning", + "light brown sugar" + ] + }, + { + "id": 10552, + "cuisine": "italian", + "ingredients": [ + "water", + "ground sirloin", + "polenta", + "kosher salt", + "cooking spray", + "garlic cloves", + "parmigiano-reggiano cheese", + "reduced fat milk", + "chopped onion", + "fresh basil", + "marinara sauce", + "crushed red pepper", + "dried oregano" + ] + }, + { + "id": 25431, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "shredded mozzarella cheese", + "eggs", + "ricotta cheese", + "lean ground beef", + "pasta sauce", + "penne pasta" + ] + }, + { + "id": 37783, + "cuisine": "british", + "ingredients": [ + "sugar", + "butter", + "confectioners sugar", + "eggs", + "vegetable oil", + "salt", + "milk", + "raisins", + "yeast", + "brown sugar", + "cinnamon", + "all-purpose flour" + ] + }, + { + "id": 16155, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "baking powder", + "granulated sugar", + "salt", + "unsalted butter", + "buttermilk", + "large eggs", + "white cornmeal" + ] + }, + { + "id": 21626, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "Thai red curry paste", + "fresh cilantro", + "canola oil", + "kosher salt", + "chickpeas", + "butternut squash" + ] + }, + { + "id": 43088, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "sour cream", + "avocado", + "red pepper", + "cooked chicken", + "salsa verde", + "shredded lettuce" + ] + }, + { + "id": 24864, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "dry sherry", + "corn starch", + "flank steak", + "scallions", + "onions", + "water", + "green pepper", + "ginger root", + "sugar", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 1679, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "peanut oil", + "chinese rice wine", + "garlic", + "green beans", + "fish sauce", + "ground black pepper", + "corn starch", + "soy sauce", + "flat iron steaks" + ] + }, + { + "id": 14616, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "mayonaise", + "chipotles in adobo", + "sour cream", + "chipotle chile" + ] + }, + { + "id": 49084, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "1% low-fat milk", + "corn tortillas", + "hot salsa", + "low-fat plain yogurt", + "cooked chicken", + "salt", + "dried oregano", + "pepper", + "shredded sharp cheddar cheese", + "chopped cilantro fresh", + "ground cumin", + "pitted black olives", + "stewed tomatoes", + "frozen corn kernels", + "sliced green onions" + ] + }, + { + "id": 30429, + "cuisine": "cajun_creole", + "ingredients": [ + "worcestershire sauce", + "cream cheese, soften", + "mayonaise", + "creole seasoning", + "green onions", + "fresh lemon juice", + "catfish fillets", + "chili sauce" + ] + }, + { + "id": 19684, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "honey", + "salt", + "pork butt", + "hamburger buns", + "white pepper", + "sesame oil", + "Chinese rose wine", + "black pepper", + "hoisin sauce", + "yellow onion", + "pickles", + "minced ginger", + "maltose", + "chinese five-spice powder" + ] + }, + { + "id": 36034, + "cuisine": "indian", + "ingredients": [ + "salmon fillets", + "jalapeno chilies", + "fresh lime juice", + "cherry tomatoes", + "garlic cloves", + "chopped cilantro fresh", + "plain yogurt", + "salt", + "onions", + "fresh ginger", + "ground cardamom", + "ground cumin" + ] + }, + { + "id": 933, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "ground black pepper", + "shredded parmesan cheese", + "fresh basil", + "french bread", + "plum tomatoes", + "kosher salt", + "balsamic vinegar" + ] + }, + { + "id": 22531, + "cuisine": "french", + "ingredients": [ + "sea salt", + "unsalted butter", + "white beans", + "water", + "garlic", + "shallots", + "ham" + ] + }, + { + "id": 16703, + "cuisine": "greek", + "ingredients": [ + "baking soda", + "chopped fresh chives", + "cream cheese", + "large shrimp", + "ground black pepper", + "salt", + "flat leaf parsley", + "ground nutmeg", + "extra-virgin olive oil", + "fresh lemon juice", + "grape leaves", + "zucchini", + "all-purpose flour", + "grated lemon peel" + ] + }, + { + "id": 2854, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "pepper", + "onions", + "medium eggs", + "salt", + "potatoes" + ] + }, + { + "id": 5190, + "cuisine": "spanish", + "ingredients": [ + "wine", + "sorbet", + "berries", + "blackberries", + "vanilla beans", + "mint sprigs", + "frozen strawberries", + "water", + "fresh blueberries", + "lemon juice", + "honey", + "fresh raspberries", + "fresh mint" + ] + }, + { + "id": 4270, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "lime juice", + "pepper jack", + "butter", + "salt", + "corn tortillas", + "chicken", + "cheddar cheese", + "cream of chicken soup", + "flour", + "cilantro", + "red bell pepper", + "onions", + "tomatoes", + "olive oil", + "bell pepper", + "ancho powder", + "cayenne pepper", + "cream of mushroom soup", + "chile powder", + "pepper", + "poblano peppers", + "half & half", + "garlic", + "sour cream", + "cumin" + ] + }, + { + "id": 32284, + "cuisine": "italian", + "ingredients": [ + "cooked meatballs", + "tomato sauce", + "pizza doughs", + "part-skim ricotta cheese", + "mozzarella cheese", + "frozen chopped spinach, thawed and squeezed dry" + ] + }, + { + "id": 12130, + "cuisine": "chinese", + "ingredients": [ + "water", + "salt", + "flour", + "eggs" + ] + }, + { + "id": 46656, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "Italian turkey sausage", + "ground turkey breast", + "red bell pepper", + "green bell pepper", + "cooking spray", + "onions", + "whole wheat hamburger buns", + "provolone cheese" + ] + }, + { + "id": 21495, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "fresh shiitake mushrooms", + "carrots", + "cashew nuts", + "water", + "sesame oil", + "corn starch", + "fresh ginger", + "garlic", + "red bell pepper", + "broccoli florets", + "fat-free chicken broth", + "bok choy" + ] + }, + { + "id": 18952, + "cuisine": "cajun_creole", + "ingredients": [ + "tilapia fillets", + "butter", + "chopped onion", + "fat free less sodium chicken broth", + "ground red pepper", + "salt", + "grape tomatoes", + "dried thyme", + "shuck corn", + "garlic cloves", + "black pepper", + "olive oil", + "chopped celery", + "poblano chiles" + ] + }, + { + "id": 7183, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "bread crumbs", + "grated parmesan cheese", + "garlic", + "onions", + "eggs", + "water", + "flour", + "bone-in chicken breasts", + "tomato purée", + "olive oil", + "vegetable oil", + "bone-in pork chops", + "green olives", + "ground nutmeg", + "lemon", + "celery" + ] + }, + { + "id": 690, + "cuisine": "italian", + "ingredients": [ + "black beans", + "penne pasta", + "green onions", + "salad dressing", + "sun-dried tomatoes", + "feta cheese crumbles", + "black olives" + ] + }, + { + "id": 19914, + "cuisine": "french", + "ingredients": [ + "fresh mushrooms", + "butter", + "helix snails", + "garlic" + ] + }, + { + "id": 2096, + "cuisine": "vietnamese", + "ingredients": [ + "mint", + "sugarcane", + "butter", + "fatback", + "medium shrimp", + "black pepper", + "large eggs", + "garlic", + "nuoc cham", + "fish sauce", + "palm sugar", + "cilantro", + "fresh herbs", + "canola oil", + "lemongrass", + "shallots", + "salt", + "corn starch" + ] + }, + { + "id": 24079, + "cuisine": "indian", + "ingredients": [ + "chopped nuts", + "whole milk", + "cardamom pods", + "rose essence", + "paneer", + "milk", + "maida flour", + "saffron", + "sugar", + "yellow food coloring", + "lemon juice" + ] + }, + { + "id": 35578, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "poblano chilies", + "chorizo sausage", + "large eggs", + "garlic cloves", + "bread crumbs", + "salt", + "ground cumin", + "frozen spinach", + "mushrooms", + "dried oregano" + ] + }, + { + "id": 46640, + "cuisine": "japanese", + "ingredients": [ + "chicken stock", + "curry powder", + "sunflower oil", + "fillets", + "eggs", + "garam masala", + "garlic cloves", + "onions", + "plain flour", + "honey", + "salt", + "bay leaf", + "soy sauce", + "vegetable oil", + "carrots", + "panko breadcrumbs" + ] + }, + { + "id": 15379, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "worcestershire sauce", + "hot sauce", + "celery", + "green bell pepper", + "unsalted butter", + "garlic", + "cayenne pepper", + "pepper", + "diced tomatoes", + "yellow onion", + "bay leaf", + "tomato sauce", + "green onions", + "salt", + "shrimp" + ] + }, + { + "id": 10784, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "kidney beans", + "cilantro", + "cumin seed", + "ground turmeric", + "black lentil", + "garlic paste", + "coriander powder", + "salt", + "cinnamon sticks", + "tomato purée", + "bengal gram", + "purple onion", + "ground cardamom", + "clove", + "cream", + "butter", + "green chilies", + "bay leaf" + ] + }, + { + "id": 4835, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "water", + "purple onion", + "seedless cucumber", + "farro", + "freshly ground pepper", + "grape tomatoes", + "red wine vinegar", + "yellow onion", + "celery ribs", + "kosher salt", + "extra-virgin olive oil", + "carrots" + ] + }, + { + "id": 30231, + "cuisine": "greek", + "ingredients": [ + "chicken stock", + "lemon juice", + "Uncle Ben's Original Converted Brand rice", + "olive oil", + "salt" + ] + }, + { + "id": 21420, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "fresh lemon juice", + "red wine vinegar", + "garlic cloves", + "sugar", + "salt", + "eggplant", + "walnuts" + ] + }, + { + "id": 47105, + "cuisine": "russian", + "ingredients": [ + "sugar", + "salt", + "semisweet chocolate", + "confectioners sugar", + "unsalted butter", + "all-purpose flour", + "large eggs", + "bittersweet chocolate" + ] + }, + { + "id": 4159, + "cuisine": "moroccan", + "ingredients": [ + "hungarian sweet paprika", + "preserved lemon", + "olive oil", + "flat leaf parsley", + "ground cumin", + "ground ginger", + "green bell pepper", + "large garlic cloves", + "phyllo pastry", + "rice stick noodles", + "melted butter", + "black cod fillets", + "red bell pepper", + "chopped cilantro fresh", + "tomato paste", + "tumeric", + "cracked black pepper", + "harissa sauce" + ] + }, + { + "id": 17301, + "cuisine": "indian", + "ingredients": [ + "strawberries", + "ice cubes", + "white sugar", + "low-fat yogurt", + "whole milk" + ] + }, + { + "id": 43950, + "cuisine": "french", + "ingredients": [ + "brandy", + "paprika", + "curry powder", + "chicken livers", + "black pepper", + "salt", + "unsalted butter", + "onions" + ] + }, + { + "id": 28931, + "cuisine": "italian", + "ingredients": [ + "chopped fresh thyme", + "soppressata", + "olive oil", + "small new potatoes", + "green beans", + "dried thyme", + "fresh mozzarella", + "lemon juice", + "ground black pepper", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 7144, + "cuisine": "jamaican", + "ingredients": [ + "scallions", + "coconut milk", + "red chili peppers", + "garlic cloves", + "long-grain rice", + "kidney beans", + "thyme" + ] + }, + { + "id": 255, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "salt", + "tagliatelle", + "garlic powder", + "heavy cream", + "ground white pepper", + "olive oil", + "crumbled blue cheese", + "lemon juice", + "dried basil", + "ground black pepper", + "toasted walnuts", + "dried oregano" + ] + }, + { + "id": 13340, + "cuisine": "moroccan", + "ingredients": [ + "orange liqueur", + "ginger ale", + "pomegranate juice", + "fresh lime juice", + "vodka" + ] + }, + { + "id": 780, + "cuisine": "french", + "ingredients": [ + "butter", + "lemon pepper", + "pork tenderloin", + "dijon style mustard", + "worcestershire sauce", + "parsley", + "lemon juice" + ] + }, + { + "id": 48491, + "cuisine": "italian", + "ingredients": [ + "white wine", + "garlic cloves", + "crushed red pepper flakes", + "spaghetti", + "kosher salt", + "flat leaf parsley", + "cockles", + "extra-virgin olive oil" + ] + }, + { + "id": 40865, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chopped fresh chives", + "all-purpose flour", + "sugar", + "zucchini", + "salt", + "white cornmeal", + "whole wheat flour", + "white truffle oil", + "cornmeal", + "cold water", + "mushroom caps", + "cheese", + "compressed yeast" + ] + }, + { + "id": 25534, + "cuisine": "mexican", + "ingredients": [ + "bell pepper", + "oil", + "purple onion", + "boneless skinless chicken breasts", + "shredded cheddar cheese", + "taco seasoning" + ] + }, + { + "id": 39805, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "vegetable oil", + "stewed tomatoes", + "rice", + "green bell pepper", + "green onions", + "worcestershire sauce", + "salt", + "bay leaf", + "celery ribs", + "dried thyme", + "cajun seasoning", + "garlic", + "chopped parsley", + "tomato sauce", + "Tabasco Pepper Sauce", + "bacon", + "yellow onion", + "medium shrimp" + ] + }, + { + "id": 802, + "cuisine": "southern_us", + "ingredients": [ + "cooked ham", + "pimentos", + "celery ribs", + "sweet onion", + "sour cream", + "sweet pickle", + "sharp cheddar cheese", + "pasta", + "prepared mustard" + ] + }, + { + "id": 490, + "cuisine": "indian", + "ingredients": [ + "ginger", + "lamb loin chops", + "plain yogurt", + "yellow onion", + "salt", + "garlic cloves", + "garam masala", + "cayenne pepper" + ] + }, + { + "id": 33497, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "potatoes", + "scallions", + "corn", + "vegetable oil", + "adobo seasoning", + "curry powder", + "meat", + "onions", + "black pepper", + "fresh thyme", + "garlic" + ] + }, + { + "id": 26008, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "purple onion", + "zucchini", + "garlic cloves", + "eggplant", + "penne pasta", + "tomatoes", + "basil leaves" + ] + }, + { + "id": 41190, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "parmigiano-reggiano cheese", + "egg yolks", + "garlic cloves", + "french bread", + "anchovy fillets", + "romaine lettuce", + "red wine vinegar" + ] + }, + { + "id": 26714, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "basil leaves", + "ground black pepper", + "light cream cheese", + "french baguette", + "light mayonnaise", + "cooking spray", + "plum tomatoes" + ] + }, + { + "id": 21355, + "cuisine": "french", + "ingredients": [ + "shallots", + "fresh lemon juice", + "unsalted butter", + "salt", + "dry white wine", + "rice vinegar", + "ground black pepper", + "heavy cream" + ] + }, + { + "id": 45270, + "cuisine": "spanish", + "ingredients": [ + "nutmeg", + "egg yolks", + "cinnamon sticks", + "orange", + "vanilla extract", + "sugar", + "lemon", + "milk", + "corn starch" + ] + }, + { + "id": 34270, + "cuisine": "mexican", + "ingredients": [ + "lime", + "zucchini", + "salt", + "cotija", + "corn husks", + "epazote", + "soft corn tortillas", + "olive oil", + "chili powder", + "red radishes", + "white onion", + "unsalted butter", + "garlic" + ] + }, + { + "id": 19211, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "dried thyme", + "chili powder", + "unsweetened cocoa powder", + "fat free less sodium chicken broth", + "finely chopped onion", + "green beans", + "sugar", + "olive oil", + "salt", + "minced garlic", + "cooking spray", + "chicken thighs" + ] + }, + { + "id": 37193, + "cuisine": "italian", + "ingredients": [ + "pepper", + "pasta", + "garlic", + "avocado", + "olive oil", + "spinach", + "lemon juice" + ] + }, + { + "id": 43996, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "salt", + "graham crackers", + "heavy cream", + "lemon juice", + "sugar", + "lemon", + "condensed milk", + "large egg yolks", + "vanilla extract", + "confectioners sugar" + ] + }, + { + "id": 26561, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "french bread", + "fresh lemon juice", + "ground black pepper", + "garlic", + "Crystal Hot Sauce", + "worcestershire sauce", + "large shrimp", + "unsalted butter", + "creole seasoning" + ] + }, + { + "id": 12239, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "chopped fresh thyme", + "thyme sprigs", + "olive oil", + "pizza doughs", + "white pepper", + "salt", + "fontina cheese", + "cracked black pepper", + "onions" + ] + }, + { + "id": 41473, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "oil", + "onion soup mix", + "corn tortillas", + "water", + "roast beef", + "hot sauce" + ] + }, + { + "id": 7390, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "extra-virgin olive oil", + "red potato", + "shallots", + "salt", + "chopped fresh chives", + "white wine vinegar", + "ground black pepper", + "fresh tarragon", + "fresh parsley" + ] + }, + { + "id": 2785, + "cuisine": "greek", + "ingredients": [ + "whole milk yoghurt", + "fresh lemon juice", + "water", + "chopped almonds", + "sugar", + "quinces", + "honey", + "lemon" + ] + }, + { + "id": 41728, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "cooking oil", + "onions", + "papaya", + "salt", + "water", + "chicken drumsticks", + "spinach", + "fresh ginger", + "garlic cloves" + ] + }, + { + "id": 14694, + "cuisine": "italian", + "ingredients": [ + "littleneck clams", + "garlic cloves", + "dry white wine", + "salt", + "cherry tomatoes", + "crushed red pepper", + "spaghetti", + "fresh basil", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 35725, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chili powder", + "sour cream", + "minced onion", + "shredded cheese", + "chicken breasts", + "medium salsa", + "tortillas", + "hot pepper", + "ground cumin" + ] + }, + { + "id": 34827, + "cuisine": "thai", + "ingredients": [ + "white vinegar", + "potatoes", + "vegetable oil", + "ground allspice", + "water", + "shrimp paste", + "salt", + "ground turmeric", + "lemon grass", + "chile pepper", + "candlenuts", + "ground ginger", + "boneless skinless chicken breasts", + "purple onion", + "mustard seeds" + ] + }, + { + "id": 17383, + "cuisine": "cajun_creole", + "ingredients": [ + "angel hair", + "green onions", + "garlic", + "white wine", + "worcestershire sauce", + "fresh mushrooms", + "andouille sausage", + "prepared mustard", + "salt", + "pepper", + "heavy cream", + "medium shrimp" + ] + }, + { + "id": 27330, + "cuisine": "irish", + "ingredients": [ + "flour", + "raisins", + "baking soda", + "butter", + "sugar", + "baking powder", + "salt", + "large eggs", + "buttermilk" + ] + }, + { + "id": 17094, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "condensed cream of mushroom soup", + "chicken broth", + "boneless skinless chicken breasts", + "onions", + "condensed cream of chicken soup", + "chile pepper", + "chili", + "corn tortillas" + ] + }, + { + "id": 49383, + "cuisine": "cajun_creole", + "ingredients": [ + "cracker meal", + "savory", + "celery", + "eggs", + "green onions", + "salt", + "onions", + "potatoes", + "garlic", + "fresh parsley", + "black pepper", + "meat", + "oil" + ] + }, + { + "id": 16856, + "cuisine": "southern_us", + "ingredients": [ + "egg whites", + "grated nutmeg", + "water", + "shredded sharp cheddar cheese", + "minced garlic", + "quickcooking grits", + "heavy whipping cream", + "large eggs", + "salt" + ] + }, + { + "id": 12623, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "light corn syrup", + "unsalted butter", + "semi-sweet chocolate morsels", + "baking soda", + "vanilla extract", + "granulated sugar" + ] + }, + { + "id": 6468, + "cuisine": "southern_us", + "ingredients": [ + "boneless chicken skinless thigh", + "large eggs", + "peanut oil", + "hamburger buns", + "kosher salt", + "paprika", + "sugar", + "ground black pepper", + "all-purpose flour", + "slaw", + "buttermilk" + ] + }, + { + "id": 39639, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "shredded cabbage", + "salsa", + "jalapeno chilies", + "salt", + "tomatoes", + "crusty sandwich rolls", + "(15 oz.) refried beans", + "pepper", + "purple onion" + ] + }, + { + "id": 30466, + "cuisine": "vietnamese", + "ingredients": [ + "coffee", + "sweetened condensed milk", + "half & half", + "ice" + ] + }, + { + "id": 30236, + "cuisine": "southern_us", + "ingredients": [ + "pastry", + "vanilla extract", + "eggs", + "butter", + "white sugar", + "light brown sugar", + "bourbon whiskey", + "all-purpose flour", + "single crust pie", + "heavy cream" + ] + }, + { + "id": 12521, + "cuisine": "southern_us", + "ingredients": [ + "vanilla ice cream", + "large eggs", + "salt", + "cornmeal", + "light brown sugar", + "unsalted butter", + "baking powder", + "fresh lemon juice", + "ground cinnamon", + "granulated sugar", + "vegetable shortening", + "corn starch", + "pure vanilla extract", + "peaches", + "whole milk", + "all-purpose flour", + "blackberries" + ] + }, + { + "id": 38497, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "Sriracha", + "peanut oil", + "cabbage", + "whitefish", + "kosher salt", + "cake flour", + "onions", + "black pepper", + "chili powder", + "corn tortillas", + "eggs", + "lime", + "beer", + "chopped cilantro fresh" + ] + }, + { + "id": 6532, + "cuisine": "southern_us", + "ingredients": [ + "coarse salt", + "peanut oil", + "ground black pepper", + "all-purpose flour", + "Tabasco Pepper Sauce", + "cayenne pepper", + "buttermilk", + "chicken" + ] + }, + { + "id": 34983, + "cuisine": "greek", + "ingredients": [ + "eggs", + "baby spinach", + "onions", + "feta cheese", + "garlic", + "dried oregano", + "olive oil", + "lemon", + "puff pastry", + "nutmeg", + "flour", + "cream cheese" + ] + }, + { + "id": 19557, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "butter", + "salt", + "black pepper", + "flour", + "paprika", + "eggs", + "garlic powder", + "worcestershire sauce", + "cube steaks", + "bread crumbs", + "onion powder", + "extra-virgin olive oil" + ] + }, + { + "id": 8606, + "cuisine": "italian", + "ingredients": [ + "capers", + "tuna steaks", + "lemon juice", + "tomatoes", + "black pepper", + "lemon rind", + "pitted kalamata olives", + "salt", + "fresh basil", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 24307, + "cuisine": "french", + "ingredients": [ + "small new potatoes", + "ground pepper", + "salt", + "extra-virgin olive oil", + "asparagus" + ] + }, + { + "id": 1905, + "cuisine": "vietnamese", + "ingredients": [ + "peeled fresh ginger", + "rice vermicelli", + "onions", + "plum tomatoes", + "chopped fresh chives", + "napa cabbage", + "duck drumsticks", + "chopped cilantro fresh", + "fish sauce", + "shallots", + "hot chili sauce", + "chopped fresh mint", + "sugar", + "lime wedges", + "low salt chicken broth", + "bamboo shoots" + ] + }, + { + "id": 25465, + "cuisine": "indian", + "ingredients": [ + "grated coconut", + "garam masala", + "oil", + "ground turmeric", + "garlic paste", + "water", + "salt", + "chicken pieces", + "tomatoes", + "fresh curry leaves", + "poppy seeds", + "coconut milk", + "ginger paste", + "red chili peppers", + "coriander seeds", + "cumin seed", + "onions" + ] + }, + { + "id": 32544, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "golden beets", + "walnuts", + "balsamic vinegar", + "low-fat goat cheese", + "oil" + ] + }, + { + "id": 19626, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "cassava", + "coconut milk", + "salt", + "ghee" + ] + }, + { + "id": 27203, + "cuisine": "japanese", + "ingredients": [ + "soy milk", + "peeled fresh ginger", + "brown sugar", + "crystallized ginger", + "1% low-fat milk", + "short-grain rice", + "heavy cream", + "water", + "granulated sugar", + "strawberries" + ] + }, + { + "id": 35243, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "cooking spray", + "garlic", + "skinless flounder fillets", + "panko", + "shallots", + "fresh lemon juice", + "fresh spinach", + "ground black pepper", + "old bay seasoning", + "flat leaf parsley", + "olive oil", + "dry white wine", + "salt" + ] + }, + { + "id": 37026, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cilantro", + "garlic cloves", + "avocado", + "flour tortillas", + "salt", + "adobo sauce", + "lime", + "white cheddar cheese", + "chipotles in adobo", + "eggs", + "chile pepper", + "cayenne pepper", + "cumin" + ] + }, + { + "id": 28827, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "hot sauce", + "apple cider vinegar", + "white sugar", + "butter", + "red pepper flakes" + ] + }, + { + "id": 20971, + "cuisine": "mexican", + "ingredients": [ + "beans", + "carrots", + "salsa", + "chicken thighs", + "corn", + "onions", + "chicken broth", + "tortilla chips" + ] + }, + { + "id": 13019, + "cuisine": "mexican", + "ingredients": [ + "corn tortilla chips", + "brown rice", + "garlic", + "corn tortillas", + "ground cumin", + "green chile", + "olive oil", + "coarse salt", + "sour cream", + "monterey jack", + "corn", + "lean ground beef", + "red bell pepper", + "oregano", + "black pepper", + "chili powder", + "yellow onion", + "low sodium beef broth" + ] + }, + { + "id": 9265, + "cuisine": "chinese", + "ingredients": [ + "pepper sauce", + "ground black pepper", + "sesame oil", + "soy sauce", + "flank steak", + "garlic cloves", + "sugar", + "broccoli florets", + "vegetable oil", + "water", + "rice wine", + "oyster sauce" + ] + }, + { + "id": 42230, + "cuisine": "greek", + "ingredients": [ + "pepper", + "extra-virgin olive oil", + "tomatoes", + "red wine vinegar", + "salt", + "feta cheese", + "purple onion", + "european cucumber", + "kalamata", + "fresh parsley" + ] + }, + { + "id": 16932, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "diced tomatoes", + "water", + "yellow onion", + "sugar", + "garlic", + "spinach", + "dried basil", + "hamburger" + ] + }, + { + "id": 41131, + "cuisine": "cajun_creole", + "ingredients": [ + "romaine lettuce", + "egg whites", + "salt", + "canola oil", + "water", + "low-fat mayonnaise", + "cornmeal", + "hoagie buns", + "cajun seasoning", + "dill pickles", + "tilapia fillets", + "purple onion", + "plum tomatoes" + ] + }, + { + "id": 22643, + "cuisine": "chinese", + "ingredients": [ + "honey mustard", + "soy sauce", + "starch", + "vegetable oil", + "corn starch", + "snow peas", + "white button mushrooms", + "olive oil", + "mushrooms", + "berries", + "beansprouts", + "mushroom soy sauce", + "sugar", + "flowering chives", + "sesame oil", + "carrots", + "bamboo shoots", + "chopped garlic", + "potato starch", + "black pepper", + "chinese barbecue sauce", + "coarse salt", + "king oyster mushroom", + "boiling water" + ] + }, + { + "id": 32969, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "olive oil", + "balsamic vinegar", + "corn starch", + "fresh basil", + "white onion", + "boneless chicken breast", + "heavy cream", + "rigatoni", + "white wine", + "parmesan cheese", + "butter", + "sliced mushrooms", + "marsala wine", + "kosher salt", + "low sodium chicken broth", + "garlic" + ] + }, + { + "id": 32586, + "cuisine": "mexican", + "ingredients": [ + "tomato salsa", + "monterey jack", + "avocado", + "fresh lime juice", + "chicken", + "sour cream", + "rice pilaf", + "chicken broth", + "chopped cilantro" + ] + }, + { + "id": 8708, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "vegetable stock", + "yellow onion", + "chicken", + "pepper flakes", + "green onions", + "anise", + "cinnamon sticks", + "tofu", + "fresh ginger", + "large garlic cloves", + "carrots", + "baby bok choy", + "rice noodles", + "broccoli", + "snow peas" + ] + }, + { + "id": 37727, + "cuisine": "italian", + "ingredients": [ + "broccoli rabe", + "onions", + "water", + "pasta shells", + "reduced sodium chicken broth", + "parmigiano reggiano cheese", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 43866, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "salt", + "large shrimp", + "olive oil", + "diced tomatoes", + "onions", + "dry white wine", + "flat leaf parsley", + "feta cheese", + "garlic", + "dried oregano" + ] + }, + { + "id": 25486, + "cuisine": "southern_us", + "ingredients": [ + "horseradish", + "milk", + "old bay seasoning", + "hot sauce", + "parsley flakes", + "ketchup", + "baking powder", + "paprika", + "bread", + "mayonaise", + "garlic powder", + "worcestershire sauce", + "eggs", + "lump crab meat", + "vegetable oil", + "salt" + ] + }, + { + "id": 44619, + "cuisine": "cajun_creole", + "ingredients": [ + "parsley flakes", + "boneless chicken breast", + "hot sauce", + "rotel tomatoes", + "chicken stock", + "instant rice", + "smoked sausage", + "garlic cloves", + "dried oregano", + "celery ribs", + "green bell pepper", + "green onions", + "cayenne pepper", + "onions", + "tomato paste", + "dried basil", + "salt", + "shrimp" + ] + }, + { + "id": 7534, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "heavy cream", + "butter", + "tart shells", + "chopped walnuts", + "eggs", + "raisins" + ] + }, + { + "id": 13447, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "coriander seeds", + "garlic", + "carrots", + "ground turmeric", + "tomato purée", + "fresh curry leaves", + "apples", + "cumin seed", + "onions", + "clove", + "red chili peppers", + "lemon", + "grated nutmeg", + "ghee", + "lamb stock", + "meat", + "salt", + "ginger root" + ] + }, + { + "id": 36669, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "vegetable oil", + "onions", + "corn kernels", + "okra", + "water", + "heavy cream", + "tomatoes", + "unsalted butter", + "cornmeal" + ] + }, + { + "id": 3617, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "chicken", + "artichoke hearts", + "shredded mozzarella cheese", + "mayonaise", + "salsa", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 11137, + "cuisine": "mexican", + "ingredients": [ + "guacamole", + "garlic", + "onions", + "chili powder", + "corn tortillas", + "cumin", + "chicken broth", + "queso fresco", + "chipotles in adobo", + "ranch dressing", + "salt", + "pork butt" + ] + }, + { + "id": 38315, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "red wine vinegar", + "white sugar", + "dijon mustard", + "peanut oil", + "sesame seeds", + "rice vinegar", + "sesame oil", + "fresh asparagus" + ] + }, + { + "id": 37220, + "cuisine": "french", + "ingredients": [ + "diced onions", + "fennel bulb", + "chopped celery", + "water", + "bay leaves", + "thyme sprigs", + "parsley sprigs", + "leeks", + "chardonnay", + "olive oil", + "garlic" + ] + }, + { + "id": 18434, + "cuisine": "mexican", + "ingredients": [ + "almond flour", + "prepar salsa", + "ground cumin", + "cheddar cheese", + "jalapeno chilies", + "cream cheese", + "eggs", + "garlic powder", + "salt", + "black pepper", + "bacon", + "ground turkey" + ] + }, + { + "id": 43867, + "cuisine": "french", + "ingredients": [ + "sugar", + "cooking spray", + "all-purpose flour", + "powdered sugar", + "large eggs", + "1% low-fat milk", + "unsweetened cocoa powder", + "large egg whites", + "vegetable oil", + "orange rind", + "large egg yolks", + "vanilla extract", + "chocolate sauce" + ] + }, + { + "id": 43034, + "cuisine": "thai", + "ingredients": [ + "chicken drumsticks", + "sweet chili sauce", + "garlic cloves", + "Thai red curry paste", + "orange" + ] + }, + { + "id": 40634, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "vegetable oil", + "red bell pepper", + "large shrimp", + "soy sauce", + "szechwan peppercorns", + "salted peanuts", + "white sugar", + "dark soy sauce", + "rice wine", + "garlic", + "dried red chile peppers", + "green bell pepper, slice", + "sesame oil", + "corn starch", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 47024, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon juice", + "fresh basil", + "salt", + "pepper", + "garlic cloves", + "tomato paste", + "diced tomatoes" + ] + }, + { + "id": 8789, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "vegetable broth", + "ground cumin", + "tomatoes", + "chili powder", + "onions", + "minced garlic", + "vegetable oil", + "shredded Monterey Jack cheese", + "brown rice", + "red bell pepper" + ] + }, + { + "id": 17156, + "cuisine": "spanish", + "ingredients": [ + "great northern beans", + "paprika", + "water", + "garlic cloves", + "hot red pepper flakes", + "spanish chorizo", + "tomato paste", + "bacon", + "onions" + ] + }, + { + "id": 49128, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "parmesan cheese", + "white cheddar cheese", + "bay leaf", + "bread crumbs", + "milk", + "parsley", + "cayenne pepper", + "black pepper", + "black truffles", + "flour", + "gruyere cheese", + "white onion", + "black truffle oil", + "butter", + "elbow macaroni" + ] + }, + { + "id": 16300, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "lime juice", + "vegetable oil", + "cumin", + "kosher salt", + "bay leaves", + "adobo sauce", + "black pepper", + "chuck roast", + "chipotle peppers", + "chicken broth", + "minced garlic", + "apple cider vinegar", + "oregano" + ] + }, + { + "id": 36726, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "salt", + "almonds", + "olive oil", + "all-purpose flour", + "warm water", + "ground black pepper" + ] + }, + { + "id": 14246, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "togarashi", + "red bell pepper", + "bonito flakes", + "garlic cloves", + "nori", + "soy sauce", + "ginger", + "shrimp", + "canola oil", + "udon", + "scallions", + "beansprouts" + ] + }, + { + "id": 1551, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "low sodium chicken broth", + "salt", + "pepper", + "lemon zest", + "butter", + "lemon juice", + "arborio rice", + "asparagus", + "dry white wine", + "garlic cloves", + "sweet onion", + "grated parmesan cheese", + "green peas", + "chopped fresh mint" + ] + }, + { + "id": 11293, + "cuisine": "french", + "ingredients": [ + "butter", + "white sugar", + "water", + "salt", + "skim milk", + "vanilla extract", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 15342, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vanilla", + "eggs", + "raisins", + "biscuits", + "cinnamon", + "salt", + "sugar", + "sweetened coconut flakes" + ] + }, + { + "id": 16554, + "cuisine": "mexican", + "ingredients": [ + "corn", + "diced tomatoes in juice", + "salsa", + "boneless skinless chicken breasts", + "black beans", + "pinto beans" + ] + }, + { + "id": 43398, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "vegetable oil", + "boneless skinless chicken breast halves", + "sesame seeds", + "fresh mushrooms", + "soy sauce", + "garlic", + "snow peas", + "ground ginger", + "water chestnuts", + "corn starch" + ] + }, + { + "id": 27922, + "cuisine": "cajun_creole", + "ingredients": [ + "mayonaise", + "yukon gold potatoes", + "celery", + "sugar", + "cajun seasoning", + "onions", + "cider vinegar", + "salt", + "creole mustard", + "hard-boiled egg", + "green pepper" + ] + }, + { + "id": 49328, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "rice wine", + "peanut oil", + "sea bass", + "white rice vinegar", + "ginger", + "sugar", + "pork loin", + "salt", + "light soy sauce", + "sesame oil", + "scallions" + ] + }, + { + "id": 22399, + "cuisine": "moroccan", + "ingredients": [ + "golden raisins", + "paprika", + "boneless skinless chicken breast halves", + "ground cinnamon", + "butter", + "low salt chicken broth", + "green olives", + "lemon", + "onions", + "refrigerated piecrusts", + "all-purpose flour", + "ground cumin" + ] + }, + { + "id": 30091, + "cuisine": "mexican", + "ingredients": [ + "fresh basil", + "oil", + "minced onion", + "tomatoes", + "freshly ground pepper", + "minced garlic" + ] + }, + { + "id": 29451, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "kidney beans", + "vegetable broth", + "hot sauce", + "white mushrooms", + "pepper", + "cajun seasoning", + "salt", + "okra", + "bay leaf", + "green bell pepper", + "zucchini", + "garlic", + "yellow onion", + "celery", + "olive oil", + "diced tomatoes", + "all-purpose flour", + "vegan Worcestershire sauce" + ] + }, + { + "id": 32383, + "cuisine": "indian", + "ingredients": [ + "salt", + "fresh lemon juice", + "curry powder", + "margarine", + "fresh parsley", + "water", + "grated lemon zest", + "low salt chicken broth", + "finely chopped onion", + "garlic cloves", + "basmati rice" + ] + }, + { + "id": 4899, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "butter", + "onions", + "tomatoes", + "ground black pepper", + "natural yogurt", + "basmati rice", + "tomato purée", + "chicken breasts", + "coconut milk", + "masala", + "bread", + "fresh ginger", + "salt", + "coriander" + ] + }, + { + "id": 35338, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "active dry yeast", + "sugar", + "salt", + "vegetable oil cooking spray", + "olive oil", + "warm water", + "all-purpose flour" + ] + }, + { + "id": 10145, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger root", + "star anise", + "beansprouts", + "green onions", + "dried rice noodles", + "beef shank", + "salt", + "onions", + "fish sauce", + "cilantro", + "beef sirloin" + ] + }, + { + "id": 33124, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "ground black pepper", + "canned tomatoes", + "celery", + "canned low sodium chicken broth", + "tubetti", + "salt", + "bay leaf", + "olive oil", + "red pepper flakes", + "chickpeas", + "onions", + "swiss chard", + "garlic", + "carrots", + "dried rosemary" + ] + }, + { + "id": 17520, + "cuisine": "filipino", + "ingredients": [ + "water", + "vinegar", + "carrots", + "soy sauce", + "pork leg", + "salt", + "brown sugar", + "bananas", + "garlic", + "onions", + "pepper", + "chinese sausage", + "oil" + ] + }, + { + "id": 3836, + "cuisine": "southern_us", + "ingredients": [ + "seasoning salt", + "sharp cheddar cheese", + "eggs", + "cracked black pepper", + "evaporated milk", + "elbow macaroni", + "sugar", + "cayenne pepper" + ] + }, + { + "id": 17356, + "cuisine": "filipino", + "ingredients": [ + "water", + "pork loin", + "onions", + "tomatoes", + "potatoes", + "patis", + "cooking oil", + "lemon", + "spinach", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 25266, + "cuisine": "french", + "ingredients": [ + "bittersweet chocolate chips", + "puff pastry", + "water", + "eggs" + ] + }, + { + "id": 17677, + "cuisine": "brazilian", + "ingredients": [ + "dulce de leche", + "unsweetened cocoa powder", + "butter", + "cooking spray", + "coconut flakes", + "sprinkles" + ] + }, + { + "id": 14281, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "butter", + "water", + "salt", + "ground cinnamon", + "vegetable oil", + "all-purpose flour", + "sugar", + "vanilla extract" + ] + }, + { + "id": 40655, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "zucchini", + "heirloom tomatoes", + "salt", + "chopped cilantro", + "avocado", + "olive oil", + "green onions", + "deveined shrimp", + "orange juice", + "ground cumin", + "corn kernels", + "flour tortillas", + "paprika", + "yellow onion", + "shredded Monterey Jack cheese", + "pepper", + "cayenne", + "coarse sea salt", + "shredded sharp cheddar cheese", + "garlic cloves" + ] + }, + { + "id": 3540, + "cuisine": "spanish", + "ingredients": [ + "granulated sugar", + "garlic", + "beer", + "plum tomatoes", + "ground cloves", + "large eggs", + "salt", + "shrimp", + "ground cumin", + "ground black pepper", + "butter", + "yellow onion", + "flat leaf parsley", + "kosher salt", + "vegetable oil", + "all-purpose flour", + "smoked paprika" + ] + }, + { + "id": 8705, + "cuisine": "british", + "ingredients": [ + "beef kidney", + "frozen pastry puff sheets", + "vegetable oil", + "all-purpose flour", + "pepper", + "beef stock", + "red wine", + "onions", + "eggs", + "potatoes", + "butter", + "sliced mushrooms", + "milk", + "beef for stew", + "salt", + "thick-cut bacon" + ] + }, + { + "id": 11628, + "cuisine": "chinese", + "ingredients": [ + "cooked rice", + "soy sauce", + "green onions", + "dried shiitake mushrooms", + "rock sugar", + "water", + "vegetable oil", + "garlic cloves", + "dark soy sauce", + "lean ground pork", + "shallots", + "chinese five-spice powder", + "chinese rice wine", + "hard-boiled egg", + "star anise" + ] + }, + { + "id": 49170, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "ice", + "strawberries", + "milk" + ] + }, + { + "id": 43222, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "fresh lime juice", + "red chili peppers", + "large garlic cloves", + "sugar" + ] + }, + { + "id": 40695, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "manchego cheese", + "white rice", + "sour cream", + "fresh cilantro", + "serrano peppers", + "salt", + "olive oil", + "green peas", + "carrots", + "water", + "potatoes", + "garlic", + "onions" + ] + }, + { + "id": 29202, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "garlic", + "cumin seed", + "ground cumin", + "red kidney beans", + "ground tumeric", + "green chilies", + "chopped cilantro fresh", + "cayenne", + "salt", + "onions", + "tomato sauce", + "extra-virgin olive oil", + "ground coriander", + "plum tomatoes" + ] + }, + { + "id": 17761, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "roma tomatoes", + "broccoli", + "rotini", + "roasted red peppers", + "yellow bell pepper", + "cucumber", + "minced garlic", + "artichok heart marin", + "oil", + "avocado", + "zucchini", + "purple onion", + "salad dressing" + ] + }, + { + "id": 36226, + "cuisine": "filipino", + "ingredients": [ + "pork tenderloin", + "liver", + "frozen peas", + "water", + "garlic", + "red bell pepper", + "soy sauce", + "bay leaves", + "oil", + "peppercorns", + "vinegar", + "salt", + "onions" + ] + }, + { + "id": 1901, + "cuisine": "southern_us", + "ingredients": [ + "marshmallows", + "mandarin orange segments", + "sweetened coconut flakes", + "pineapple chunks", + "clementine sections", + "cocktail cherries", + "light sour cream", + "cool whip", + "apples", + "pecan halves", + "red grape" + ] + }, + { + "id": 16762, + "cuisine": "spanish", + "ingredients": [ + "dried thyme", + "red pepper flakes", + "cayenne pepper", + "onions", + "chopped tomatoes", + "salt", + "garlic cloves", + "olive oil", + "red pepper", + "chickpeas", + "ground black pepper", + "spanish chorizo", + "bay leaf" + ] + }, + { + "id": 4637, + "cuisine": "jamaican", + "ingredients": [ + "spring onions", + "ground allspice", + "onions", + "pepper", + "ginger", + "long grain brown rice", + "red kidney beans", + "sea salt", + "thyme", + "water", + "garlic", + "coconut milk" + ] + }, + { + "id": 10447, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "cumin seed", + "extra-virgin olive oil", + "onions", + "ground black pepper", + "english cucumber", + "fat free yogurt", + "salt" + ] + }, + { + "id": 27738, + "cuisine": "british", + "ingredients": [ + "baking soda", + "baking powder", + "grated orange", + "dried currants", + "granulated sugar", + "raw sugar", + "white flour", + "large eggs", + "salt", + "unsalted butter", + "buttermilk" + ] + }, + { + "id": 46229, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "cilantro", + "ranch dressing", + "Tabasco Green Pepper Sauce", + "fresh lime juice", + "tomatillos" + ] + }, + { + "id": 6969, + "cuisine": "southern_us", + "ingredients": [ + "fresh lime juice", + "mint sprigs", + "chopped fresh mint", + "apple juice" + ] + }, + { + "id": 28592, + "cuisine": "italian", + "ingredients": [ + "whole milk ricotta cheese", + "fresh mint", + "raspberries", + "fresh orange juice", + "blackberries", + "sugar", + "mint sprigs", + "grated orange", + "honey", + "strawberries" + ] + }, + { + "id": 34716, + "cuisine": "jamaican", + "ingredients": [ + "fresh ginger root", + "yellow bell pepper", + "chopped cilantro fresh", + "brown sugar", + "habanero pepper", + "red bell pepper", + "olive oil", + "green onions", + "fresh lime juice", + "green bell pepper", + "bananas", + "salt" + ] + }, + { + "id": 7387, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "flour", + "salt", + "unsalted butter", + "cinnamon", + "large eggs", + "lemon", + "milk", + "vegetable oil" + ] + }, + { + "id": 30239, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "salt", + "ground black pepper", + "white sugar", + "large tomato", + "onions", + "chinese eggplants" + ] + }, + { + "id": 37431, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "cooking spray", + "garlic cloves", + "olive oil", + "salt", + "red bell pepper", + "fat free less sodium chicken broth", + "purple onion", + "fresh lemon juice", + "pitted kalamata olives", + "pork tenderloin", + "grated lemon zest", + "flat leaf parsley" + ] + }, + { + "id": 42677, + "cuisine": "indian", + "ingredients": [ + "shallots", + "asafetida", + "kosher salt", + "cumin seed", + "red chili peppers", + "ginger", + "canola oil", + "ground black pepper", + "greens" + ] + }, + { + "id": 6239, + "cuisine": "mexican", + "ingredients": [ + "vanilla extract", + "milk", + "sweetened condensed milk", + "eggs", + "white sugar", + "heavy cream" + ] + }, + { + "id": 30227, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "cool whip", + "salt", + "milk", + "Nilla Wafers", + "eggs", + "bananas", + "vanilla", + "muffin", + "flour" + ] + }, + { + "id": 17143, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "all-purpose flour", + "sausages", + "tomatoes", + "lean ground beef", + "grated Gruyère cheese", + "unsalted butter", + "grated nutmeg", + "hamburger buns", + "cooked bacon", + "freshly ground pepper" + ] + }, + { + "id": 2931, + "cuisine": "mexican", + "ingredients": [ + "jack", + "corn tortillas", + "lean ground beef", + "zucchini", + "diced onions", + "enchilada sauce" + ] + }, + { + "id": 9541, + "cuisine": "japanese", + "ingredients": [ + "lettuce leaves", + "red bell pepper", + "tofu", + "grated carrot", + "soy sauce", + "sushi nori", + "guacamole", + "cucumber" + ] + }, + { + "id": 18213, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "honey", + "cinnamon", + "ginger", + "garlic cloves", + "nutmeg", + "kosher salt", + "roma tomatoes", + "lemon", + "meat bones", + "diced tomatoes in juice", + "tumeric", + "olive oil", + "pitted green olives", + "extra-virgin olive oil", + "lemon juice", + "light butter", + "sweet onion", + "dried apricot", + "cilantro", + "chickpeas" + ] + }, + { + "id": 24078, + "cuisine": "french", + "ingredients": [ + "superfine sugar", + "self rising flour", + "unsalted butter", + "honey", + "chocolate", + "large free range egg" + ] + }, + { + "id": 37065, + "cuisine": "british", + "ingredients": [ + "cider vinegar", + "pectin", + "boiling water", + "fresh parsley", + "honey" + ] + }, + { + "id": 8621, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "baking soda", + "buttermilk", + "self rising flour", + "self-rising cornmeal", + "sugar", + "butter" + ] + }, + { + "id": 25337, + "cuisine": "cajun_creole", + "ingredients": [ + "king crab legs", + "chopped fresh chives", + "brioche", + "freshly grated parmesan", + "mustard", + "lump crab meat", + "fresh lime juice", + "mayonaise", + "unsalted butter" + ] + }, + { + "id": 30679, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cilantro", + "red bell pepper", + "cumin", + "olive oil", + "salt", + "onions", + "water", + "garlic", + "bay leaf", + "black pepper", + "red wine vinegar", + "scallions", + "oregano" + ] + }, + { + "id": 25678, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "garlic", + "white sesame seeds", + "sesame oil", + "scallions", + "chuck tender", + "gochugaru", + "broccoli", + "sweet potato vermicelli", + "light brown sugar", + "ginger", + "carrots" + ] + }, + { + "id": 11512, + "cuisine": "french", + "ingredients": [ + "mozzarella cheese", + "frozen pastry puff sheets", + "garlic cloves", + "large eggs", + "extra-virgin olive oil", + "tomatoes", + "grated parmesan cheese", + "whipping cream", + "fresh thyme", + "oil-cured black olives", + "soft fresh goat cheese" + ] + }, + { + "id": 3059, + "cuisine": "italian", + "ingredients": [ + "warm water", + "parmigiano reggiano cheese", + "salt", + "black pepper", + "basil leaves", + "garlic cloves", + "active dry yeast", + "fresh mozzarella", + "plum tomatoes", + "fresh basil", + "olive oil", + "all purpose unbleached flour" + ] + }, + { + "id": 30681, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "vegetable oil", + "lemon juice", + "coriander powder", + "salt", + "ginger paste", + "garam masala", + "butter", + "ground turmeric", + "chicken legs", + "chili powder", + "meat bones" + ] + }, + { + "id": 38984, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "cannellini beans", + "onions", + "olive oil", + "garlic", + "chicken stock", + "ground black pepper", + "sweet italian sausage", + "kosher salt", + "tubetti" + ] + }, + { + "id": 3711, + "cuisine": "italian", + "ingredients": [ + "Belgian endive", + "fennel bulb", + "pinenuts", + "watercress", + "parmesan cheese", + "extra-virgin olive oil", + "granny smith apples", + "balsamic vinegar" + ] + }, + { + "id": 17100, + "cuisine": "italian", + "ingredients": [ + "anise seed", + "cheese", + "celery", + "corn", + "sausages", + "noodles", + "pasta sauce", + "garlic", + "onions", + "sliced black olives", + "bbq sauce", + "italian seasoning" + ] + }, + { + "id": 31946, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "cornmeal", + "shucked oysters", + "vegetable oil", + "ground black pepper", + "seasoning salt", + "cajun seasoning" + ] + }, + { + "id": 33104, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "reduced-fat sour cream", + "fresh lime juice", + "ground cumin", + "black beans", + "sea salt", + "garlic cloves", + "iceberg lettuce", + "chipotle chile", + "whole wheat tortillas", + "salt", + "plum tomatoes", + "tofu", + "olive oil", + "purple onion", + "cooked white rice" + ] + }, + { + "id": 7883, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "chopped cilantro fresh", + "cucumber", + "jalape", + "tomatoes", + "sour cream" + ] + }, + { + "id": 14724, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "water", + "garlic cloves", + "dried currants", + "white wine vinegar", + "thyme sprigs", + "sugar", + "olive oil", + "fresh parsley leaves", + "white onion", + "salt", + "toast points" + ] + }, + { + "id": 32178, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "flat leaf spinach", + "salt", + "sesame oil", + "knoblauch" + ] + }, + { + "id": 39034, + "cuisine": "southern_us", + "ingredients": [ + "maida flour", + "baking powder", + "sugar", + "salt", + "butter" + ] + }, + { + "id": 3568, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "butter", + "ground cumin", + "tomatoes", + "Anaheim chile", + "adobo sauce", + "olive oil", + "corn tortillas", + "eggs", + "chili powder", + "onions" + ] + }, + { + "id": 11759, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "sour cream", + "garlic powder", + "ground coriander", + "chopped cilantro fresh", + "black beans", + "green chilies", + "corn tortillas", + "Mexican cheese blend", + "red enchilada sauce", + "ground cumin" + ] + }, + { + "id": 1786, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "green onions", + "prepar salsa", + "shredded reduced fat cheddar cheese", + "chili powder", + "onions", + "corn", + "brown rice", + "garlic", + "low-fat plain yogurt", + "flour tortillas", + "vegetable oil", + "cumin" + ] + }, + { + "id": 35559, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "hot sauce", + "chopped cilantro fresh", + "water", + "creamy peanut butter", + "fresh ginger root", + "coconut milk", + "fish sauce", + "garlic", + "fresh lime juice" + ] + }, + { + "id": 39709, + "cuisine": "chinese", + "ingredients": [ + "pork", + "wheat starch", + "tapioca", + "oil", + "celery", + "chicken broth", + "white pepper", + "jicama", + "dried shiitake mushrooms", + "carrots", + "boiling water", + "soy sauce", + "prawns", + "salt", + "oyster sauce", + "dried shrimp", + "brown sugar", + "radishes", + "cilantro", + "roasted peanuts", + "corn starch" + ] + }, + { + "id": 4646, + "cuisine": "jamaican", + "ingredients": [ + "green bell pepper", + "yellow bell pepper", + "green onions", + "red bell pepper", + "orange bell pepper", + "cilantro leaves", + "tomatoes", + "tomatillos", + "chopped garlic" + ] + }, + { + "id": 7120, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "rice vinegar", + "pickling salt", + "water", + "black peppercorns", + "daikon" + ] + }, + { + "id": 36060, + "cuisine": "mexican", + "ingredients": [ + "water", + "chives", + "shredded Monterey Jack cheese", + "guacamole", + "salt", + "fresh cilantro", + "canola oil cooking spray", + "black pepper", + "boneless skinless chicken breasts", + "corn tortillas" + ] + }, + { + "id": 29653, + "cuisine": "mexican", + "ingredients": [ + "water", + "Anaheim chile", + "salt", + "garlic cloves", + "ground turkey", + "iceberg lettuce", + "coriander seeds", + "diced tomatoes", + "bacon fat", + "red bell pepper", + "onions", + "olive oil", + "chili powder", + "mild cheddar cheese", + "pinto beans", + "corn tortillas", + "ground cumin", + "avocado", + "cayenne", + "cilantro", + "grated jack cheese", + "sour cream", + "dried oregano" + ] + }, + { + "id": 29085, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "garlic", + "ground cumin", + "pepper flakes", + "fresh ginger", + "top sirloin steak", + "corn starch", + "honey", + "vegetable oil", + "rice vinegar", + "chiles", + "green onions", + "ginger", + "chopped cilantro" + ] + }, + { + "id": 46366, + "cuisine": "french", + "ingredients": [ + "pasta", + "shallots", + "white wine vinegar", + "fresh parsley", + "water", + "dry mustard", + "freshly ground pepper", + "capers", + "fresh tarragon", + "salt", + "mussels", + "chopped fresh chives", + "extra-virgin olive oil", + "lemon juice" + ] + }, + { + "id": 39081, + "cuisine": "french", + "ingredients": [ + "sugar", + "whipping cream", + "semisweet chocolate", + "unsalted butter", + "raspberry liqueur", + "white chocolate", + "fresh raspberries" + ] + }, + { + "id": 36899, + "cuisine": "italian", + "ingredients": [ + "veal loin chops", + "red wine", + "balsamic vinegar", + "salt", + "ground black pepper", + "garlic", + "olive oil", + "vine ripened tomatoes", + "fresh herbs" + ] + }, + { + "id": 8813, + "cuisine": "southern_us", + "ingredients": [ + "light cream", + "crumbs", + "elbow macaroni", + "cheddar cheese", + "dijon mustard", + "salt", + "ground black pepper", + "butter", + "milk", + "flour", + "shredded cheese" + ] + }, + { + "id": 3044, + "cuisine": "indian", + "ingredients": [ + "cardamom pods", + "low-fat milk", + "finely ground coffee", + "sugar" + ] + }, + { + "id": 18180, + "cuisine": "korean", + "ingredients": [ + "baby bok choy", + "green onions", + "garlic", + "red bell pepper", + "jalapeno chilies", + "daikon", + "red miso", + "mushrooms", + "summer squash", + "medium firm tofu", + "water", + "sesame oil", + "hot sauce" + ] + }, + { + "id": 39812, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "shrimp", + "lemon wedge", + "fresh parsley", + "tomato sauce", + "garlic", + "rice pilaf", + "olive oil", + "smoked paprika" + ] + }, + { + "id": 40955, + "cuisine": "chinese", + "ingredients": [ + "water", + "ground pork", + "wine", + "shallots", + "five-spice powder", + "dark soy sauce", + "light soy sauce", + "garlic", + "sugar", + "vegetable oil" + ] + }, + { + "id": 33871, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "chopped fresh thyme", + "whole wheat breadcrumbs", + "pepper", + "salt", + "pears", + "pinenuts", + "heavy cream", + "chicken", + "ground cinnamon", + "peaches", + "sherry wine" + ] + }, + { + "id": 11853, + "cuisine": "indian", + "ingredients": [ + "kale", + "garlic", + "curry powder", + "sweet potatoes", + "white kidney beans", + "tomato sauce", + "olive oil", + "yellow onion", + "minced ginger", + "light coconut milk" + ] + }, + { + "id": 16680, + "cuisine": "southern_us", + "ingredients": [ + "egg whites", + "fresh lemon juice", + "yellow food coloring", + "white sugar", + "margarine spread", + "sweetened condensed milk", + "crumbs", + "fresh lime juice" + ] + }, + { + "id": 49662, + "cuisine": "italian", + "ingredients": [ + "triscuits", + "crackers", + "Philadelphia Light Cream Cheese", + "pesto", + "plum tomatoes", + "cheese" + ] + }, + { + "id": 8558, + "cuisine": "moroccan", + "ingredients": [ + "lemon", + "salt", + "chopped cilantro", + "pepper", + "paprika", + "ground cayenne pepper", + "green olives", + "salmon steaks", + "fresh lemon juice", + "ground cumin", + "olive oil", + "garlic", + "chopped parsley" + ] + }, + { + "id": 4886, + "cuisine": "italian", + "ingredients": [ + "ground ginger", + "sesame seeds", + "baking powder", + "grated orange", + "sugar", + "large eggs", + "salt", + "orange juice concentrate", + "baking soda", + "vanilla extract", + "large egg whites", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 31261, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "heavy cream", + "sharp cheddar cheese", + "chili", + "salt", + "monterey jack", + "pepper", + "turkey", + "ground beef", + "tomato paste", + "pepper jack", + "green chilies", + "chicken" + ] + }, + { + "id": 46269, + "cuisine": "chinese", + "ingredients": [ + "natural peanut butter", + "crushed red pepper flakes", + "chopped cilantro fresh", + "soy sauce", + "garlic", + "fettuccine pasta", + "vegetable broth", + "green onions", + "red bell pepper" + ] + }, + { + "id": 43943, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "pasta sauce", + "boneless skinless chicken breasts", + "mozzarella cheese" + ] + }, + { + "id": 2168, + "cuisine": "italian", + "ingredients": [ + "pepper", + "truffle oil", + "chanterelle", + "sherry vinegar", + "butter", + "milk", + "grated parmesan cheese", + "polenta", + "mascarpone", + "salt" + ] + }, + { + "id": 26170, + "cuisine": "thai", + "ingredients": [ + "low sodium soy sauce", + "creamy peanut butter", + "fresh ginger", + "cucumber", + "brown sugar", + "carrots", + "chicken breasts", + "fresh lime juice" + ] + }, + { + "id": 22446, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "unsalted butter", + "crushed red pepper flakes", + "kosher salt", + "beef stock", + "onions", + "sugar", + "potatoes", + "garlic cloves", + "parmesan cheese", + "butternut squash" + ] + }, + { + "id": 44877, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "olive oil", + "diced tomatoes", + "chickpeas", + "boneless chicken skinless thigh", + "parsley leaves", + "salt", + "ground turmeric", + "ground cinnamon", + "cayenne", + "garlic", + "carrots", + "chicken stock", + "kale", + "lemon", + "yellow onion", + "ground cumin" + ] + }, + { + "id": 45858, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "flank steak", + "asparagus spears", + "safflower oil", + "reduced sodium soy sauce", + "red miso", + "lime zest", + "ground black pepper", + "sesame oil", + "water", + "raw honey", + "carrots" + ] + }, + { + "id": 24950, + "cuisine": "southern_us", + "ingredients": [ + "egg whites", + "butter", + "confectioners sugar", + "water", + "baking powder", + "all-purpose flour", + "unsweetened cocoa powder", + "milk", + "vegetable oil", + "cream cheese", + "white cake mix", + "chocolate instant pudding", + "vanilla extract", + "white sugar" + ] + }, + { + "id": 16575, + "cuisine": "jamaican", + "ingredients": [ + "curry powder", + "salt", + "onions", + "extra-virgin olive oil", + "shrimp", + "serrano chile", + "dried thyme", + "scallions", + "broth", + "lite coconut milk", + "garlic", + "celery", + "mango" + ] + }, + { + "id": 24440, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "arugula", + "pecorino romano cheese", + "balsamic vinegar", + "pears", + "sugar", + "focaccia" + ] + }, + { + "id": 10707, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "olive oil", + "shrimp", + "baby spinach leaves", + "kalamata", + "dried oregano", + "sugar", + "red wine vinegar", + "feta cheese crumbles", + "pepper", + "salt" + ] + }, + { + "id": 20753, + "cuisine": "mexican", + "ingredients": [ + "fresh oregano leaves", + "crema mexican", + "lemon juice", + "tomatoes", + "olive oil", + "salt", + "cotija", + "finely chopped onion", + "white fleshed fish", + "avocado", + "pepper", + "lemon wedge", + "corn tortillas" + ] + }, + { + "id": 16267, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ground black pepper", + "chicken-flavored soup powder", + "romano cheese", + "manicotti pasta", + "garlic salt", + "tomato sauce", + "part-skim ricotta cheese", + "onions", + "frozen chopped spinach", + "dried thyme", + "shredded mozzarella cheese" + ] + }, + { + "id": 25752, + "cuisine": "mexican", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "water", + "salsa", + "fat free less sodium chicken broth", + "kidney beans", + "dried oregano", + "tomato sauce", + "dried basil", + "baked tortilla chips", + "minced garlic", + "frozen whole kernel corn" + ] + }, + { + "id": 8942, + "cuisine": "japanese", + "ingredients": [ + "wasabi", + "brown rice", + "smoked salmon", + "nori sheets", + "sesame seeds", + "cucumber", + "avocado", + "shoyu" + ] + }, + { + "id": 9002, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "worcestershire sauce", + "lemon juice", + "butter", + "ground rosemary", + "Tabasco Pepper Sauce", + "sea salt", + "shrimp", + "lemon", + "garlic" + ] + }, + { + "id": 19510, + "cuisine": "spanish", + "ingredients": [ + "sherry vinegar", + "extra-virgin olive oil", + "onions", + "kosher salt", + "smoked sweet Spanish paprika", + "garlic cloves", + "roasted red peppers", + "pain au levain", + "almonds", + "crushed red pepper flakes", + "lemon juice" + ] + }, + { + "id": 6445, + "cuisine": "mexican", + "ingredients": [ + "water", + "large flour tortillas", + "tomatoes", + "Mexican cheese blend", + "sour cream", + "lettuce", + "taco seasoning mix", + "cheese", + "tostada shells", + "cooking spray", + "ground beef" + ] + }, + { + "id": 46096, + "cuisine": "british", + "ingredients": [ + "coffee granules", + "baking powder", + "whipping cream", + "eggs", + "unsalted butter", + "dates", + "boiling water", + "baking soda", + "butter", + "salt", + "brown sugar", + "flour", + "vanilla" + ] + }, + { + "id": 18712, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "french bread", + "hot sauce", + "reduced fat mayonnaise", + "ground black pepper", + "worcestershire sauce", + "cajun seasoning mix", + "romaine lettuce", + "buttermilk", + "fry mix", + "catfish fillets", + "dijon mustard", + "salt", + "olive oil cooking spray" + ] + }, + { + "id": 28952, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "taco seasoning", + "olive oil", + "water", + "seasoning", + "chicken breasts" + ] + }, + { + "id": 13812, + "cuisine": "southern_us", + "ingredients": [ + "minced onion", + "salt", + "vegetable oil", + "collard greens", + "garlic cloves" + ] + }, + { + "id": 8721, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salted roast peanuts", + "water", + "vanilla extract", + "unsalted butter", + "salt", + "light corn syrup" + ] + }, + { + "id": 24556, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "salt", + "butter", + "sugar", + "all-purpose flour", + "yellow corn meal", + "apple cider" + ] + }, + { + "id": 8008, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "bosc pears", + "corn starch", + "vanilla beans", + "large eggs", + "salt", + "almond flour", + "whole milk", + "all-purpose flour", + "sugar", + "unsalted butter", + "phyllo" + ] + }, + { + "id": 6818, + "cuisine": "italian", + "ingredients": [ + "pasta", + "mozzarella cheese", + "unsalted butter", + "tomato sauce", + "broccoli rabe", + "boiling water", + "tomatoes", + "milk", + "all-purpose flour", + "sausage casings", + "olive oil", + "onions" + ] + }, + { + "id": 33344, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "chili powder", + "cumin", + "flour tortillas", + "salsa", + "leftover meat", + "frozen corn", + "monterey jack", + "black beans", + "bell pepper", + "yellow onion" + ] + }, + { + "id": 1779, + "cuisine": "japanese", + "ingredients": [ + "msg", + "vegetable oil", + "onions", + "chicken broth", + "mushrooms", + "beef sirloin", + "white sugar", + "water chestnuts", + "chopped celery", + "bamboo shoots", + "soy sauce", + "green onions", + "corn starch" + ] + }, + { + "id": 729, + "cuisine": "moroccan", + "ingredients": [ + "spices", + "pork loin chops", + "chicken broth", + "apples", + "pears", + "butter", + "onions", + "vegetable oil", + "salt" + ] + }, + { + "id": 18227, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "peeled fresh ginger", + "baby spinach", + "salt", + "carrots", + "green bell pepper", + "olive oil", + "baking potatoes", + "light coconut milk", + "garlic cloves", + "curry powder", + "lemon wedge", + "vegetable broth", + "chopped onion", + "serrano chile", + "black pepper", + "ground red pepper", + "diced tomatoes", + "chickpeas", + "green beans" + ] + }, + { + "id": 36207, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "bay leaves", + "tomato purée", + "beef tenderloin steaks", + "brine-cured olives", + "extra-virgin olive oil" + ] + }, + { + "id": 7644, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "yellow onion", + "kosher salt", + "ziti", + "red bell pepper", + "grated parmesan cheese", + "garlic cloves", + "mozzarella cheese", + "diced tomatoes" + ] + }, + { + "id": 36154, + "cuisine": "italian", + "ingredients": [ + "all purpose unbleached flour", + "warm water", + "active dry yeast", + "salt" + ] + }, + { + "id": 45550, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "simple syrup", + "mint sprigs", + "ice" + ] + }, + { + "id": 47865, + "cuisine": "mexican", + "ingredients": [ + "honey", + "shredded sharp cheddar cheese", + "barbecue sauce", + "boneless skinless chicken breast halves", + "flour tortillas", + "onions", + "vegetable oil", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 30913, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "water", + "green onions", + "garlic", + "lemon juice", + "fresh parsley", + "white button mushrooms", + "shredded cheddar cheese", + "grated parmesan cheese", + "bacon", + "peanut oil", + "celery", + "shrimp stock", + "pepper", + "unsalted butter", + "parsley", + "cayenne pepper", + "shrimp", + "black pepper", + "vegetables", + "Tabasco Pepper Sauce", + "salt", + "carrots", + "grits" + ] + }, + { + "id": 10055, + "cuisine": "chinese", + "ingredients": [ + "warm water", + "hoisin sauce", + "ground chicken breast", + "cilantro leaves", + "corn starch", + "dark soy sauce", + "lime juice", + "water chestnuts", + "garlic", + "scallions", + "iceberg lettuce", + "soy sauce", + "cooking oil", + "Mae Ploy Sweet Chili Sauce", + "dried shiitake mushrooms", + "ground white pepper", + "sugar", + "Sriracha", + "Shaoxing wine", + "salt", + "oyster sauce" + ] + }, + { + "id": 40687, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "corn tortillas", + "enchilada sauce", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 11171, + "cuisine": "british", + "ingredients": [ + "top round steak", + "whole milk", + "sharp cheddar cheese", + "large eggs", + "all-purpose flour", + "plum tomatoes", + "kosher salt", + "vegetable oil", + "freshly ground pepper", + "unsalted butter", + "worcestershire sauce", + "scallions" + ] + }, + { + "id": 49062, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "garlic", + "onions", + "potatoes", + "long-grain rice", + "water", + "salt", + "butter", + "bay leaf" + ] + }, + { + "id": 27438, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "shredded sharp cheddar cheese", + "chicken", + "flour tortillas", + "shredded mozzarella cheese", + "olive oil", + "shredded pepper jack cheese", + "roma tomatoes", + "sour cream" + ] + }, + { + "id": 38601, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "scallions", + "extra-virgin olive oil", + "chopped fresh mint", + "artichok heart marin", + "country loaf", + "parmesan cheese", + "purple onion", + "frozen peas" + ] + }, + { + "id": 41188, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "worcestershire sauce", + "garlic cloves", + "onions", + "celery ribs", + "quickcooking grits", + "all-purpose flour", + "shrimp", + "tomato paste", + "vegetable oil", + "creole seasoning", + "bay leaf", + "milk", + "salt", + "lemon juice" + ] + }, + { + "id": 1748, + "cuisine": "southern_us", + "ingredients": [ + "paprika", + "kosher salt", + "chicken pieces", + "black pepper", + "garlic", + "buttermilk" + ] + }, + { + "id": 30041, + "cuisine": "mexican", + "ingredients": [ + "coriander seeds", + "garlic cloves", + "water", + "cilantro leaves", + "onions", + "canned black beans", + "salt", + "fresh lime juice", + "corn", + "long-grain rice", + "ground cumin" + ] + }, + { + "id": 1925, + "cuisine": "thai", + "ingredients": [ + "salt", + "white sugar", + "mint", + "coconut milk", + "corn starch", + "mango", + "sticky rice", + "toasted sesame seeds" + ] + }, + { + "id": 624, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "butter", + "salt", + "garlic powder", + "worcestershire sauce", + "sharp cheddar cheese", + "baking powder", + "sea salt", + "sweet paprika", + "diced pimentos", + "buttermilk", + "all-purpose flour" + ] + }, + { + "id": 13298, + "cuisine": "italian", + "ingredients": [ + "semolina", + "cracked black pepper", + "bread flour", + "warm water", + "pecorino romano cheese", + "salt", + "cooking spray", + "crushed red pepper", + "dry yeast", + "extra-virgin olive oil" + ] + }, + { + "id": 12785, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "green onions", + "white sesame seeds", + "dark soy sauce", + "light soy sauce", + "beef tenderloin", + "water", + "sesame oil", + "onions", + "sugar", + "fresh ginger", + "garlic cloves" + ] + }, + { + "id": 40775, + "cuisine": "mexican", + "ingredients": [ + "fat free less sodium chicken broth", + "diced tomatoes", + "unsweetened chocolate", + "fresh lime juice", + "ground black pepper", + "chopped onion", + "ancho chile pepper", + "unsweetened cocoa powder", + "olive oil", + "salt", + "garlic cloves", + "chipotle chile powder", + "ground cinnamon", + "raisins", + "blanched almonds", + "corn tortillas" + ] + }, + { + "id": 46433, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "large eggs", + "plain breadcrumbs", + "water", + "vegetable oil", + "long grain white rice", + "black pepper", + "whole milk", + "scallions", + "unsalted butter", + "salt" + ] + }, + { + "id": 21968, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "garnish", + "veal stock", + "large egg whites", + "plum tomatoes", + "kosher salt", + "celery", + "black peppercorns", + "ground sirloin" + ] + }, + { + "id": 21470, + "cuisine": "chinese", + "ingredients": [ + "water", + "peeled fresh ginger", + "dry sherry", + "corn starch", + "spinach", + "water chestnuts", + "sesame oil", + "salt", + "eggs", + "light soy sauce", + "green onions", + "ground pork", + "ginger juice", + "low sodium chicken broth", + "wonton wrappers", + "shrimp" + ] + }, + { + "id": 35548, + "cuisine": "italian", + "ingredients": [ + "water", + "fresh lemon juice", + "garlic cloves", + "saffron threads", + "canola mayonnaise" + ] + }, + { + "id": 37636, + "cuisine": "southern_us", + "ingredients": [ + "ground cloves", + "red food coloring", + "watermelon", + "cinnamon sticks", + "water", + "salt", + "lemon", + "white sugar" + ] + }, + { + "id": 14027, + "cuisine": "italian", + "ingredients": [ + "fronds", + "carrots", + "chopped fresh thyme", + "pecorino cheese", + "extra-virgin olive oil", + "fennel bulb" + ] + }, + { + "id": 23042, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "garlic cloves", + "sesame seeds", + "red pepper flakes", + "fresh ginger", + "sesame oil", + "ground beef", + "brown sugar", + "ground black pepper", + "salt" + ] + }, + { + "id": 43762, + "cuisine": "italian", + "ingredients": [ + "red potato", + "garlic", + "kale", + "onions", + "water", + "heavy whipping cream", + "italian sausage", + "bacon", + "chicken" + ] + }, + { + "id": 15477, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "salt", + "dried tarragon leaves", + "shallots", + "melted butter", + "dry white wine", + "ground black pepper", + "white wine vinegar" + ] + }, + { + "id": 17407, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "sesame oil", + "garlic cloves", + "low sodium soy sauce", + "lettuce leaves", + "crushed red pepper", + "shiitake mushroom caps", + "cremini mushrooms", + "green onions", + "chinese cabbage", + "chopped cilantro fresh", + "water chestnuts", + "ground chicken breast", + "oyster sauce" + ] + }, + { + "id": 13652, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "low fat mozzarella", + "pasta sauce", + "finely chopped onion", + "Italian turkey sausage", + "eggs", + "low-fat cottage cheese", + "salt", + "minced garlic", + "whole wheat spaghetti", + "italian seasoning" + ] + }, + { + "id": 19554, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "spaghetti", + "reduced sodium soy sauce", + "garlic powder", + "stir fry vegetable blend", + "beef gravy", + "ground beef" + ] + }, + { + "id": 26788, + "cuisine": "mexican", + "ingredients": [ + "bread", + "sliced turkey", + "mayonaise", + "chipotle chile powder", + "cheddar cheese", + "cooked bacon", + "sprouts" + ] + }, + { + "id": 1235, + "cuisine": "brazilian", + "ingredients": [ + "water", + "margarine", + "brown sugar", + "bananas", + "whole wheat flour", + "toasted wheat germ", + "rolled oats", + "cinnamon" + ] + }, + { + "id": 46074, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "bread", + "balsamic vinegar", + "parmesan cheese", + "frozen peas", + "mint", + "extra-virgin olive oil" + ] + }, + { + "id": 32428, + "cuisine": "french", + "ingredients": [ + "bittersweet chocolate", + "large egg whites", + "sugar", + "large egg yolks" + ] + }, + { + "id": 24384, + "cuisine": "french", + "ingredients": [ + "kidney beans", + "vanilla extract", + "confectioners sugar", + "frozen pastry puff sheets", + "all-purpose flour", + "unsalted butter", + "salt", + "white sugar", + "eggs", + "almond extract", + "almond paste" + ] + }, + { + "id": 27497, + "cuisine": "french", + "ingredients": [ + "brown sugar", + "large egg yolks", + "butter", + "large egg whites", + "large eggs", + "salt", + "cream of tartar", + "fat free milk", + "cooking spray", + "all-purpose flour", + "vanilla beans", + "granulated sugar", + "vanilla extract" + ] + }, + { + "id": 13507, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "large eggs", + "cayenne pepper", + "onions", + "prunes", + "vegetables", + "vegetable oil", + "garlic cloves", + "ground turmeric", + "flatbread", + "garam masala", + "coarse salt", + "bay leaf", + "ground lamb", + "bread crumb fresh", + "peeled fresh ginger", + "ground coriander", + "chopped cilantro fresh" + ] + }, + { + "id": 885, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "thai chile", + "toasted sesame oil", + "lemongrass", + "reduced sodium soy sauce", + "carrots", + "asian noodles", + "olive oil", + "rice vinegar", + "cashew nuts", + "meal", + "pea pods", + "fresh asparagus" + ] + }, + { + "id": 41953, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "wheat flour", + "moong dal", + "salt", + "ground cumin", + "garam masala", + "oil", + "chili powder", + "ground turmeric" + ] + }, + { + "id": 48646, + "cuisine": "mexican", + "ingredients": [ + "balsamic vinegar", + "chili", + "garlic", + "black beans", + "worcestershire sauce", + "olive oil" + ] + }, + { + "id": 30156, + "cuisine": "mexican", + "ingredients": [ + "canela", + "blackberries", + "sugar", + "masa harina" + ] + }, + { + "id": 9796, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "crushed red pepper flakes", + "garlic cloves", + "white wine", + "ground black pepper", + "purple onion", + "juice", + "olive oil", + "littleneck clams", + "fresh parsley leaves", + "kosher salt", + "vegetable stock", + "zest", + "linguini" + ] + }, + { + "id": 39100, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "enchilada sauce", + "boneless skinless chicken breast halves", + "chili powder", + "corn tortillas", + "ground cumin", + "colby cheese", + "sour cream", + "iceberg lettuce", + "vegetable oil", + "onions" + ] + }, + { + "id": 22379, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "onions", + "salt", + "potatoes", + "corned beef", + "pepper", + "fresh parsley" + ] + }, + { + "id": 21772, + "cuisine": "french", + "ingredients": [ + "water", + "salt", + "capers", + "parsley", + "onions", + "vinegar", + "bay leaf", + "pepper", + "butter", + "skate" + ] + }, + { + "id": 11645, + "cuisine": "indian", + "ingredients": [ + "spinach", + "eggplant", + "raisins", + "orange juice", + "onions", + "curry powder", + "zucchini", + "garlic", + "carrots", + "green bell pepper", + "garbanzo beans", + "sea salt", + "blanched almonds", + "ground turmeric", + "ground cinnamon", + "olive oil", + "sweet potatoes", + "cayenne pepper", + "red bell pepper" + ] + }, + { + "id": 2135, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "unsalted butter", + "fine sea salt", + "asparagus", + "shallots", + "fresh peas" + ] + }, + { + "id": 41506, + "cuisine": "italian", + "ingredients": [ + "butter", + "fresh lemon juice", + "sugar", + "salt", + "ground cinnamon", + "1% low-fat milk", + "polenta", + "honey", + "frozen mixed berries" + ] + }, + { + "id": 20925, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "black pepper", + "active dry yeast", + "butter", + "salt", + "bread flour", + "warm water", + "milk", + "boneless skinless chicken breasts", + "garlic", + "white sugar", + "tomato sauce", + "minced garlic", + "jalapeno chilies", + "paprika", + "lemon juice", + "eggs", + "plain yogurt", + "fresh ginger", + "heavy cream", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 21595, + "cuisine": "southern_us", + "ingredients": [ + "saltines", + "paprika", + "cajun seasoning", + "skinless chicken breasts", + "garlic powder", + "salt", + "buttermilk", + "fresh parsley" + ] + }, + { + "id": 32534, + "cuisine": "greek", + "ingredients": [ + "herbs", + "cheese", + "sea salt", + "nonfat plain greek yogurt", + "extra-virgin olive oil" + ] + }, + { + "id": 46013, + "cuisine": "italian", + "ingredients": [ + "kale", + "marinara sauce", + "garlic", + "shredded mozzarella cheese", + "dried basil", + "ground black pepper", + "crushed red pepper flakes", + "pizza doughs", + "Gold Medal Flour", + "parmesan cheese", + "ricotta cheese", + "yellow onion", + "olive oil", + "mushrooms", + "salt" + ] + }, + { + "id": 19386, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "sesame oil", + "white sugar", + "fresh ginger", + "garlic", + "black pepper", + "red pepper flakes", + "mirin", + "rice vinegar" + ] + }, + { + "id": 32672, + "cuisine": "italian", + "ingredients": [ + "cooked turkey", + "portabello mushroom", + "fresh parsley", + "Alfredo sauce", + "shredded mozzarella cheese", + "frozen chopped spinach", + "ricotta cheese", + "oven-ready lasagna noodles", + "parmesan cheese", + "salt" + ] + }, + { + "id": 5459, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "jalapeno chilies", + "red bell pepper", + "low sodium soy sauce", + "fresh ginger", + "boneless skinless chicken breasts", + "onions", + "fresh cilantro", + "green onions", + "fresh lime juice", + "fresh basil", + "zucchini", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 35397, + "cuisine": "italian", + "ingredients": [ + "capers", + "whole milk", + "anchovy fillets", + "unsalted butter", + "fresh mozzarella", + "flat leaf parsley", + "olive oil", + "pane di casa", + "fresh lemon juice", + "large eggs", + "dry bread crumbs" + ] + }, + { + "id": 4221, + "cuisine": "spanish", + "ingredients": [ + "capers", + "tomato juice", + "salt", + "flat leaf parsley", + "green olives", + "sherry vinegar", + "purple onion", + "garlic cloves", + "mahi mahi", + "extra-virgin olive oil", + "freshly ground pepper", + "pitted black olives", + "red pepper", + "green pepper", + "brine" + ] + }, + { + "id": 6525, + "cuisine": "korean", + "ingredients": [ + "russet potatoes", + "gala apples", + "white pepper", + "celery", + "sugar", + "salt", + "pears", + "Kewpie Mayonnaise", + "toasted sesame seeds" + ] + }, + { + "id": 36145, + "cuisine": "japanese", + "ingredients": [ + "fresh leav spinach", + "agave nectar", + "tamari soy sauce", + "sesame seeds", + "green onions", + "water", + "extra firm tofu", + "peanut butter", + "white miso", + "sesame oil" + ] + }, + { + "id": 33756, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "onions", + "salt", + "garlic", + "ground lamb", + "tomato paste", + "beef broth" + ] + }, + { + "id": 9687, + "cuisine": "thai", + "ingredients": [ + "chile paste with garlic", + "lime wedges", + "chopped onion", + "water", + "light coconut milk", + "canola oil", + "sugar", + "diced tomatoes", + "garlic cloves", + "peeled fresh ginger", + "salt" + ] + }, + { + "id": 15787, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "vinegar", + "salt", + "onions", + "tomatoes", + "coriander powder", + "poppy seeds", + "green chilies", + "ground turmeric", + "minced ginger", + "chili powder", + "cilantro leaves", + "cashew nuts", + "grated coconut", + "beef", + "garlic", + "oil", + "masala" + ] + }, + { + "id": 18703, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "black beans", + "vegetables", + "paprika", + "garlic", + "scallions", + "rub", + "soy sauce", + "lime juice", + "jalapeno chilies", + "crushed red pepper flakes", + "yellow onion", + "ground cumin", + "avocado", + "jack cheese", + "water", + "radishes", + "cilantro", + "salt", + "cucumber", + "tomatoes", + "black pepper", + "olive oil", + "worcestershire sauce", + "ginger", + "ear of corn" + ] + }, + { + "id": 17446, + "cuisine": "french", + "ingredients": [ + "fresh leav spinach", + "ground white pepper", + "extra-virgin olive oil", + "coarse kosher salt", + "roasted garlic", + "large eggs", + "heavy whipping cream" + ] + }, + { + "id": 39033, + "cuisine": "italian", + "ingredients": [ + "sugar", + "egg yolks", + "pound cake", + "mascarpone", + "vanilla extract", + "raspberries", + "whipping cream", + "marsala wine", + "cinnamon" + ] + }, + { + "id": 15713, + "cuisine": "russian", + "ingredients": [ + "water", + "egg yolks", + "sour cream", + "egg whites", + "salt", + "yeast", + "milk", + "butter", + "caviar", + "sugar", + "flour", + "buckwheat flour" + ] + }, + { + "id": 38642, + "cuisine": "french", + "ingredients": [ + "grated parmesan cheese", + "grated Gruyère cheese", + "large egg yolks", + "all-purpose flour", + "freshly ground pepper", + "kosher salt", + "whole milk", + "xanthan gum", + "unsalted butter", + "grated nutmeg" + ] + }, + { + "id": 7019, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "pork shoulder butt", + "extra-virgin olive oil", + "chopped cilantro", + "cayenne", + "kalamata", + "lemon juice", + "pepper", + "dry white wine", + "garlic cloves", + "cider vinegar", + "potatoes", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 25704, + "cuisine": "greek", + "ingredients": [ + "tomato sauce", + "fresh green bean", + "bay leaf", + "water", + "salt", + "dried parsley", + "pepper", + "diced tomatoes", + "onions", + "olive oil", + "lemon juice" + ] + }, + { + "id": 16, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "fat free reduced sodium chicken broth", + "garlic cloves", + "fresh ginger", + "green peas", + "onions", + "fresh cilantro", + "diced tomatoes", + "cooked shrimp", + "red potato", + "vegetable oil", + "salt" + ] + }, + { + "id": 13028, + "cuisine": "southern_us", + "ingredients": [ + "seasoning", + "green onions", + "garlic cloves", + "bread crumbs", + "deveined shrimp", + "red bell pepper", + "mayonaise", + "vegetable oil", + "fresh lemon juice", + "large eggs", + "sauce" + ] + }, + { + "id": 35585, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "chopped onion", + "marsala wine", + "butter", + "italian seasoning", + "pasta sauce", + "Alfredo sauce", + "fresh mushrooms", + "water", + "beef stew meat" + ] + }, + { + "id": 19923, + "cuisine": "cajun_creole", + "ingredients": [ + "ground red pepper", + "mayonaise", + "fresh parsley", + "creole mustard", + "garlic cloves", + "green onions", + "sliced green onions" + ] + }, + { + "id": 18331, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "salt", + "fresh lemon juice", + "ground turmeric", + "butter", + "ground coriander", + "chopped cilantro fresh", + "peeled fresh ginger", + "cayenne pepper", + "chicken pieces", + "ground cumin", + "saffron threads", + "purple onion", + "garlic cloves", + "plain whole-milk yogurt" + ] + }, + { + "id": 11367, + "cuisine": "french", + "ingredients": [ + "capers", + "fresh herbs", + "olive oil", + "cornmeal", + "basil", + "olives", + "rosemary", + "bread dough" + ] + }, + { + "id": 28287, + "cuisine": "italian", + "ingredients": [ + "capers", + "extra-virgin olive oil", + "penne pasta", + "fresh basil", + "red wine", + "crushed red pepper", + "sliced mushrooms", + "tomatoes", + "ground black pepper", + "garlic", + "anchovy filets", + "green olives", + "bacon", + "salt", + "onions" + ] + }, + { + "id": 45613, + "cuisine": "vietnamese", + "ingredients": [ + "homemade chicken stock", + "lime juice", + "granulated sugar", + "ginger", + "yellow onion", + "fish sauce", + "black pepper", + "pearl onions", + "vegetable oil", + "purple onion", + "clove", + "beans", + "lime", + "boneless skinless chicken breasts", + "star anise", + "sugar", + "kosher salt", + "coriander seeds", + "cilantro", + "dried rice noodles" + ] + }, + { + "id": 7430, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "ragu cheesi classic alfredo sauc", + "cajun seasoning", + "boneless skinless chicken breasts", + "fettucine", + "butter" + ] + }, + { + "id": 12467, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "diced ham", + "onions", + "tomato paste", + "stewed tomatoes", + "medium shrimp", + "clove", + "vegetable oil", + "celery", + "long grain white rice", + "green bell pepper", + "garlic", + "fresh parsley" + ] + }, + { + "id": 38087, + "cuisine": "italian", + "ingredients": [ + "carbonated water", + "lemonade concentrate", + "orange juice", + "pineapple juice", + "zinfandel" + ] + }, + { + "id": 49519, + "cuisine": "french", + "ingredients": [ + "minced garlic", + "chopped parsley", + "chives", + "wild mushrooms", + "shallots", + "unsalted butter", + "tarragon" + ] + }, + { + "id": 30999, + "cuisine": "jamaican", + "ingredients": [ + "ground cloves", + "onion powder", + "mustard seeds", + "ground pepper", + "cayenne pepper", + "dried thyme", + "salt", + "onions", + "sugar", + "ground nutmeg", + "ground allspice" + ] + }, + { + "id": 3885, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "fresh marjoram", + "minced garlic", + "olive oil", + "garlic powder", + "large eggs", + "Alfredo sauce", + "vegetable oil", + "cajun seasoning", + "shredded romano cheese", + "basil dried leaves", + "salt", + "cayenne pepper", + "scallions", + "red bell pepper", + "boneless skinless chicken breast halves", + "soba", + "pasta sauce", + "kosher salt", + "milk", + "fresh ginger", + "ground black pepper", + "flour", + "cooked chicken", + "coarse salt", + "lemon", + "diced tomatoes", + "garlic", + "rice vinegar", + "Neufchâtel", + "garlic cloves", + "dried parsley", + "frozen artichoke hearts", + "penne", + "pepper", + "sweet onion", + "part-skim mozzarella cheese", + "parmigiano reggiano cheese", + "basil leaves", + "onion powder", + "red wine vinegar", + "red pepper flakes", + "orzo", + "crushed red pepper", + "all-purpose flour", + "freshly ground pepper", + "sliced mushrooms", + "panko breadcrumbs", + "plum tomatoes", + "fresh basil", + "fresh leav spinach", + "water", + "sun-dried tomatoes", + "ground pepper", + "grated parmesan cheese", + "boneless skinless chicken breasts", + "chicken cutlets", + "butter", + "multi-grain penne pasta", + "extra-virgin olive oil", + "cilantro leaves", + "green pepper", + "shredded mozzarella cheese", + "fresh parsley", + "spaghetti" + ] + }, + { + "id": 43547, + "cuisine": "japanese", + "ingredients": [ + "almond extract", + "french baguette", + "butter", + "granulated sugar" + ] + }, + { + "id": 21292, + "cuisine": "southern_us", + "ingredients": [ + "vinegar", + "onions", + "water", + "salt", + "ground black pepper", + "hot sauce", + "mustard", + "bacon" + ] + }, + { + "id": 13779, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "vegetable oil", + "snow peas", + "soy sauce", + "corn starch", + "avocado", + "green onions", + "boneless skinless chicken breast halves", + "cremini mushrooms", + "garlic" + ] + }, + { + "id": 27058, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "butter", + "garlic", + "olive oil", + "currant", + "flat leaf parsley", + "water", + "red pepper flakes", + "salt", + "cauliflower", + "grated parmesan cheese", + "linguine" + ] + }, + { + "id": 100, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "avocado", + "shallots", + "tomatoes", + "garlic", + "chili", + "chopped cilantro fresh" + ] + }, + { + "id": 7202, + "cuisine": "italian", + "ingredients": [ + "italian seasoning", + "olive oil", + "kosher salt", + "almonds" + ] + }, + { + "id": 36026, + "cuisine": "italian", + "ingredients": [ + "flour", + "confectioners sugar", + "eggs", + "salt", + "melted butter", + "baking powder", + "sugar", + "walnuts" + ] + }, + { + "id": 26513, + "cuisine": "japanese", + "ingredients": [ + "seaweed", + "salt", + "rice", + "sugar" + ] + }, + { + "id": 27587, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "cooking oil", + "salt", + "beef", + "garlic", + "coriander", + "ground black pepper", + "pineapple", + "onions", + "sugar", + "tapioca starch", + "scallions" + ] + }, + { + "id": 47419, + "cuisine": "thai", + "ingredients": [ + "cherry tomatoes", + "shrimp", + "galangal", + "lemongrass", + "cilantro leaves", + "lime leaves", + "fish sauce", + "low sodium chicken broth", + "white mushrooms", + "lime", + "garlic chili sauce", + "bird chile" + ] + }, + { + "id": 8865, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "fresh lemon juice", + "fresh oregano leaves", + "garlic cloves", + "fresh rosemary", + "grated lemon zest", + "salt" + ] + }, + { + "id": 18085, + "cuisine": "french", + "ingredients": [ + "red leaf lettuce", + "salt", + "chicken livers", + "baguette", + "dry red wine", + "cognac", + "vegetable oil spray", + "toasted walnuts", + "low salt chicken broth", + "fresh chives", + "unsalted butter", + "black mission figs", + "onions" + ] + }, + { + "id": 31932, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "peanut oil", + "water", + "walnut halves", + "glaze" + ] + }, + { + "id": 24033, + "cuisine": "italian", + "ingredients": [ + "ground ginger", + "water", + "salt", + "warm water", + "golden raisins", + "bread flour", + "melted butter", + "instant yeast", + "white sugar", + "fennel seeds", + "molasses", + "rye flour" + ] + }, + { + "id": 9070, + "cuisine": "mexican", + "ingredients": [ + "water", + "brown rice", + "salt", + "sour cream", + "pepper", + "green onions", + "yellow corn", + "shrimp", + "avocado", + "flour tortillas", + "butter", + "salsa", + "onions", + "black beans", + "bell pepper", + "heavy cream", + "garlic cloves" + ] + }, + { + "id": 7225, + "cuisine": "chinese", + "ingredients": [ + "water", + "salt", + "sugar", + "ginger", + "oil", + "dark soy sauce", + "rice wine", + "scallions", + "soy sauce", + "star anise", + "chicken" + ] + }, + { + "id": 10741, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh basil", + "ground black pepper", + "bay leaves", + "butter", + "cayenne pepper", + "fresh parsley", + "chicken stock", + "dried thyme", + "minced onion", + "baking powder", + "salt", + "red bell pepper", + "dried oregano", + "minced garlic", + "hot pepper sauce", + "green onions", + "buttermilk", + "ground white pepper", + "white sugar", + "eggs", + "evaporated milk", + "jalapeno chilies", + "onion powder", + "all-purpose flour", + "cornmeal" + ] + }, + { + "id": 24283, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "sunflower oil", + "dried oregano", + "ground cinnamon", + "stewing beef", + "garlic cloves", + "plain flour", + "chopped tomatoes", + "ginger", + "ground cumin", + "white onion", + "beef stock", + "chipotle paste" + ] + }, + { + "id": 29298, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "chili powder", + "dijon mustard", + "fresh lime juice", + "olive oil", + "sea salt", + "pepper", + "boneless skinless chicken breasts" + ] + }, + { + "id": 3808, + "cuisine": "mexican", + "ingredients": [ + "canned black beans", + "pepper", + "low sodium chicken broth", + "diced tomatoes", + "sweet peas", + "red bell pepper", + "onions", + "avocado", + "black beans", + "olive oil", + "colby jack cheese", + "black olives", + "long-grain rice", + "ground turkey", + "black pepper", + "corn kernels", + "green onions", + "garlic", + "cayenne pepper", + "sour cream", + "cumin", + "fire roasted diced tomatoes", + "kosher salt", + "jalapeno chilies", + "chili powder", + "salt", + "smoked paprika", + "chopped cilantro" + ] + }, + { + "id": 11503, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "water", + "cayenne", + "chile pepper", + "corn tortillas", + "canola oil", + "black beans", + "lime", + "green onions", + "sauce", + "garlic salt", + "cotija", + "milk", + "flour", + "cilantro leaves", + "panko breadcrumbs", + "avocado", + "kosher salt", + "cherry tomatoes", + "chili powder", + "sour cream", + "cabbage" + ] + }, + { + "id": 12188, + "cuisine": "southern_us", + "ingredients": [ + "liqueur", + "bourbon whiskey", + "fresh mint", + "sweet tea" + ] + }, + { + "id": 10578, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cheese", + "thyme", + "onions", + "avocado", + "Mexican oregano", + "salt", + "chipotle peppers", + "roma tomatoes", + "garlic", + "bay leaf", + "black pepper", + "cilantro", + "mexican chorizo", + "pork shoulder" + ] + }, + { + "id": 33678, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "parsnips", + "leeks", + "salt", + "flat leaf parsley", + "chicken", + "chicken stock", + "water", + "extra-virgin olive oil", + "California bay leaves", + "boiling potatoes", + "clove", + "black pepper", + "watercress", + "garlic cloves", + "onions", + "capers", + "fresh thyme", + "garlic", + "carrots", + "celery root" + ] + }, + { + "id": 18600, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "balsamic vinegar", + "salt", + "chopped parsley", + "black-eyed peas", + "yellow bell pepper", + "garlic cloves", + "onions", + "jalapeno chilies", + "bacon slices", + "red bell pepper", + "ground cumin", + "olive oil", + "red wine vinegar", + "freshly ground pepper", + "fresh parsley" + ] + }, + { + "id": 45262, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "olive oil", + "balsamic vinegar", + "yellow onion", + "cherry tomatoes", + "baby arugula", + "salt", + "fresh lemon juice", + "water", + "asparagus", + "crushed red pepper", + "garlic cloves", + "pinenuts", + "ground black pepper", + "pecorino romano cheese", + "chickpeas" + ] + }, + { + "id": 23914, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "herbs", + "basil", + "rice vinegar", + "cucumber", + "fish sauce", + "ground black pepper", + "balm", + "garlic", + "garlic cloves", + "mint", + "pork chops", + "shallots", + "thai chile", + "peanut oil", + "rice paper", + "lettuce", + "Vietnamese coriander", + "hoisin sauce", + "cilantro", + "creamy peanut butter", + "beansprouts" + ] + }, + { + "id": 30983, + "cuisine": "southern_us", + "ingredients": [ + "brandy", + "caramel topping", + "salt" + ] + }, + { + "id": 41494, + "cuisine": "indian", + "ingredients": [ + "figs", + "red wine vinegar", + "crystallized ginger", + "mustard seeds", + "clove", + "balsamic vinegar", + "honey", + "raisins" + ] + }, + { + "id": 41876, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "garlic powder", + "spring onions", + "oil", + "ground cloves", + "dark rum", + "salt", + "chicken pieces", + "brown sugar", + "ground pepper", + "malt vinegar", + "thyme", + "nutmeg", + "pepper", + "dried sage", + "ground allspice", + "mango" + ] + }, + { + "id": 28087, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "bacon grease" + ] + }, + { + "id": 14979, + "cuisine": "greek", + "ingredients": [ + "hamburger buns", + "sliced cucumber", + "english cucumber", + "dried oregano", + "tomatoes", + "ground turkey breast", + "purple onion", + "greek yogurt", + "pepper", + "lettuce leaves", + "feta cheese crumbles", + "vegetable oil cooking spray", + "lemon zest", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 8189, + "cuisine": "mexican", + "ingredients": [ + "sandwich rolls", + "lime", + "sour cream", + "tomatoes", + "round steaks", + "pickled jalapeno peppers", + "queso fresco", + "chopped cilantro fresh", + "avocado", + "romaine lettuce", + "pinto beans" + ] + }, + { + "id": 37964, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "thyme leaves", + "eggs", + "piquillo peppers", + "cod", + "ground black pepper", + "serrano ham", + "kosher salt", + "potato chips" + ] + }, + { + "id": 48820, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "mushrooms", + "rice vinegar", + "sesame seeds", + "sesame oil", + "scallions", + "safflower oil", + "shallots", + "english cucumber", + "Sriracha", + "buckwheat noodles" + ] + }, + { + "id": 27480, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "garlic", + "shredded cheese", + "taco seasoning mix", + "salsa", + "corn tortillas", + "ketchup", + "purple onion", + "sour cream", + "lettuce", + "olive oil", + "brown lentils" + ] + }, + { + "id": 47014, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "sea salt", + "chipotle", + "salsa", + "dried beans", + "garlic", + "white onion", + "epazote", + "pork lard" + ] + }, + { + "id": 22691, + "cuisine": "vietnamese", + "ingredients": [ + "boneless pork shoulder", + "minced garlic", + "water chestnuts", + "stir fry sauce", + "chopped cilantro fresh", + "ketchup", + "annatto seeds", + "shallots", + "diced yellow onion", + "chicken stock", + "light soy sauce", + "bawang goreng", + "yellow onion", + "canola oil", + "kosher salt", + "ground black pepper", + "red pepper flakes", + "scallions" + ] + }, + { + "id": 47210, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "fresh ginger", + "jalapeno chilies", + "salt", + "fresh lime juice", + "celery salt", + "lime", + "Sriracha", + "chicken breasts", + "carrots", + "canola oil", + "lime juice", + "dijon mustard", + "cilantro stems", + "garlic cloves", + "cabbage", + "lime zest", + "olive oil", + "chipotle", + "apple cider vinegar", + "corn tortillas" + ] + }, + { + "id": 46029, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "Italian parsley leaves", + "blanched almonds", + "haricots verts", + "garlic", + "sea salt" + ] + }, + { + "id": 15170, + "cuisine": "jamaican", + "ingredients": [ + "caribbean jerk seasoning", + "scallions", + "barbecue sauce", + "chicken drumsticks", + "dark rum" + ] + }, + { + "id": 20803, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "cherry tomatoes", + "sugar", + "frozen pastry puff sheets", + "sun-dried tomatoes" + ] + }, + { + "id": 44620, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "masa harina", + "sugar", + "salt", + "instant yeast", + "water", + "bread flour" + ] + }, + { + "id": 29002, + "cuisine": "italian", + "ingredients": [ + "pizza crust", + "fresh parsley", + "fontina", + "low-fat ricotta", + "roasted red peppers", + "romano cheese", + "soppressata" + ] + }, + { + "id": 31390, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "cherry preserves", + "bananas", + "peanut butter", + "honey", + "white sandwich bread" + ] + }, + { + "id": 36334, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "garlic", + "fresh ginger", + "toasted sesame oil", + "pear juice", + "scallions", + "brown sugar", + "ground black pepper", + "toasted sesame seeds" + ] + }, + { + "id": 27537, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "pepper", + "turnips", + "salt", + "cooking liquid" + ] + }, + { + "id": 36324, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "taco seasoning", + "beef", + "ground beef", + "diced tomatoes", + "seasoning", + "frozen corn kernels" + ] + }, + { + "id": 5442, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "coconut", + "water", + "coconut juice", + "cassava" + ] + }, + { + "id": 17473, + "cuisine": "greek", + "ingredients": [ + "sliced almonds", + "vegetable oil", + "extra-virgin olive oil", + "garlic cloves", + "fresh basil", + "eggplant", + "russet potatoes", + "garlic", + "sour cream", + "oil cured olives", + "whole milk", + "butter", + "dry bread crumbs", + "plum tomatoes", + "large egg whites", + "chopped fresh thyme", + "whipping cream", + "fresh lemon juice" + ] + }, + { + "id": 25227, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "grated parmesan cheese", + "garlic", + "crushed tomatoes", + "basil leaves", + "shredded mozzarella cheese", + "pasta", + "olive oil", + "red pepper flakes", + "sausage casings", + "ground black pepper", + "heavy cream" + ] + }, + { + "id": 47195, + "cuisine": "greek", + "ingredients": [ + "feta cheese crumbles", + "pitted kalamata olives", + "fresh basil", + "red bell pepper", + "boneless skinless chicken breasts" + ] + }, + { + "id": 4146, + "cuisine": "southern_us", + "ingredients": [ + "lime zest", + "egg yolks", + "lime juice", + "sweetened condensed milk", + "pie crust", + "extract", + "large eggs" + ] + }, + { + "id": 1392, + "cuisine": "southern_us", + "ingredients": [ + "lump crab meat", + "old bay seasoning", + "shrimp", + "cajun seasoning", + "stuffing mix", + "flounder", + "chopped celery", + "butter", + "chopped onion" + ] + }, + { + "id": 42616, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "unsalted butter", + "ground black pepper", + "gemelli", + "prosciutto", + "fresh parsley leaves", + "freshly grated parmesan", + "heavy cream" + ] + }, + { + "id": 36004, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime slices", + "fresh lime juice", + "chicken broth", + "salt", + "shredded Monterey Jack cheese", + "clove", + "cooked chicken", + "dried oregano", + "tortillas", + "cinnamon sticks" + ] + }, + { + "id": 27668, + "cuisine": "mexican", + "ingredients": [ + "cream of chicken soup", + "salt", + "pepper", + "chicken breasts", + "jalapeno chilies", + "enchilada sauce", + "tortillas", + "cheese" + ] + }, + { + "id": 26857, + "cuisine": "korean", + "ingredients": [ + "green onions", + "garlic", + "ground beef", + "soy sauce", + "red pepper flakes", + "gingerroot", + "wonton wrappers", + "firm tofu", + "toasted sesame seeds", + "vinegar", + "ground pork", + "kimchi" + ] + }, + { + "id": 42009, + "cuisine": "british", + "ingredients": [ + "raspberries", + "heavy whipping cream", + "vanilla", + "granulated sugar", + "mint", + "fresh raspberries" + ] + }, + { + "id": 2703, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "hot sauce", + "ramps", + "vinegar", + "cream cheese", + "ground white pepper", + "kosher salt", + "cayenne pepper", + "smoked paprika", + "mayonaise", + "pimentos", + "sharp cheddar cheese" + ] + }, + { + "id": 36406, + "cuisine": "cajun_creole", + "ingredients": [ + "whole okra", + "ground black pepper", + "shrimp", + "olive oil", + "creole seasoning", + "cherry tomatoes", + "ground red pepper", + "garlic powder", + "rice" + ] + }, + { + "id": 29419, + "cuisine": "italian", + "ingredients": [ + "whole wheat spaghetti", + "turkey meatballs", + "marinara sauce" + ] + }, + { + "id": 25536, + "cuisine": "thai", + "ingredients": [ + "water", + "extra firm tofu", + "salt", + "chinese chives", + "fish sauce", + "radishes", + "thai chile", + "garlic cloves", + "large shrimp", + "rice stick noodles", + "palm sugar", + "vegetable oil", + "tamarind paste", + "dried shrimp", + "lime", + "large eggs", + "salted peanuts", + "beansprouts" + ] + }, + { + "id": 26341, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sliced chicken", + "fresh ginger", + "minced garlic", + "mirin" + ] + }, + { + "id": 23209, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "light beer", + "red pepper", + "ripe olives", + "vegetable oil cooking spray", + "jalapeno chilies", + "red wine vinegar", + "green pepper", + "oregano", + "top round steak", + "flour tortillas", + "ground red pepper", + "garlic", + "yellow peppers", + "fresh cilantro", + "green onions", + "diced tomatoes", + "onions" + ] + }, + { + "id": 41399, + "cuisine": "italian", + "ingredients": [ + "manicotti shells", + "milk", + "large eggs", + "bread slices", + "ground round", + "small curd cottage cheese", + "salt", + "italian seasoning", + "pepper", + "parmesan cheese", + "shredded mozzarella cheese", + "pasta sauce", + "garlic powder", + "hot Italian sausages" + ] + }, + { + "id": 41955, + "cuisine": "russian", + "ingredients": [ + "chopped nuts", + "cocoa", + "butter", + "eggs", + "baking powder", + "vanilla extract", + "plain flour", + "rum", + "apples", + "sugar", + "cinnamon" + ] + }, + { + "id": 33596, + "cuisine": "mexican", + "ingredients": [ + "Mexican beer", + "ground cayenne pepper", + "pepper", + "garlic", + "dried oregano", + "boneless chicken skinless thigh", + "sea salt", + "corn tortillas", + "guacamole", + "dark sesame oil" + ] + }, + { + "id": 47707, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic", + "ground turkey", + "whole wheat rigatoni", + "butternut squash", + "yellow onion", + "half & half", + "salt", + "dried oregano", + "fresh spinach", + "vegetable broth", + "provolone cheese" + ] + }, + { + "id": 6448, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "olive oil", + "bell pepper", + "garlic cloves", + "frozen peas", + "tumeric", + "ground black pepper", + "purple onion", + "green beans", + "naan", + "tomatoes", + "garam masala", + "paprika", + "carrots", + "chopped cilantro fresh", + "sugar", + "potatoes", + "salt", + "ginger root" + ] + }, + { + "id": 20067, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "heavy cream", + "maple sugar", + "vegetable shortening", + "walnuts", + "ice water", + "all-purpose flour", + "large eggs", + "salt" + ] + }, + { + "id": 35473, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "gnocchi", + "water", + "yukon gold potatoes", + "chopped fresh sage", + "fat free less sodium chicken broth", + "hazelnut meal", + "all-purpose flour", + "large egg yolks", + "butter", + "garlic cloves" + ] + }, + { + "id": 41626, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "dhal", + "sweet potatoes", + "fresh spinach" + ] + }, + { + "id": 36188, + "cuisine": "cajun_creole", + "ingredients": [ + "lime juice", + "salt", + "seasoning", + "hot pepper sauce", + "garlic salt", + "water", + "butter", + "ground black pepper", + "flat iron steaks" + ] + }, + { + "id": 46972, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "zucchini", + "chopped onion", + "corn kernels", + "garlic", + "olive oil", + "salt", + "black pepper", + "chile pepper", + "plum tomatoes" + ] + }, + { + "id": 19545, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "flour", + "ham", + "baking soda", + "Royal Baking Powder", + "buttermilk", + "lard" + ] + }, + { + "id": 7886, + "cuisine": "mexican", + "ingredients": [ + "fine sea salt", + "tomatillos", + "pasilla", + "lard", + "garlic" + ] + }, + { + "id": 42911, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "won ton wrappers", + "cream cheese", + "crab meat", + "worcestershire sauce", + "garlic powder", + "oil" + ] + }, + { + "id": 12479, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "ground coriander", + "ground cumin", + "minced garlic", + "peas", + "naan", + "cauliflower", + "russet potatoes", + "cumin seed", + "fresh ginger", + "purple onion", + "ground turmeric" + ] + }, + { + "id": 19785, + "cuisine": "southern_us", + "ingredients": [ + "ground pepper", + "honey", + "hot sauce" + ] + }, + { + "id": 10977, + "cuisine": "russian", + "ingredients": [ + "eggs", + "dried apricot", + "ginger", + "nutmeg", + "kosher salt", + "cinnamon", + "dried cranberries", + "kasha", + "granny smith apples", + "golden raisins", + "dark brown sugar", + "melted butter", + "milk", + "raisins" + ] + }, + { + "id": 25906, + "cuisine": "mexican", + "ingredients": [ + "orange", + "mezcal", + "lemon zest", + "ice", + "single malt Scotch", + "liqueur", + "dry vermouth", + "chocolate" + ] + }, + { + "id": 20021, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "water", + "salt", + "grated coconut", + "chili powder", + "ground turmeric", + "eggs", + "coriander powder", + "onions", + "pepper", + "garlic", + "masala" + ] + }, + { + "id": 15373, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "salt", + "chillies", + "black peppercorns", + "vinegar", + "garlic cloves", + "onions", + "clove", + "coriander seeds", + "cumin seed", + "pork shoulder", + "sugar", + "potatoes", + "mustard seeds", + "ground turmeric" + ] + }, + { + "id": 47283, + "cuisine": "mexican", + "ingredients": [ + "guajillo chiles", + "olive oil", + "salt", + "sour cream", + "white onion", + "seeds", + "sauce", + "ground cumin", + "reduced sodium chicken broth", + "cooked chicken", + "pink beans", + "chopped cilantro fresh", + "dry roasted peanuts", + "stewed tomatoes", + "garlic cloves" + ] + }, + { + "id": 18733, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "ground pepper", + "rice vinegar", + "cooked white rice", + "ketchup", + "vegetable oil", + "garlic cloves", + "soy sauce", + "bell pepper", + "scallions", + "boneless, skinless chicken breast", + "coarse salt", + "corn starch" + ] + }, + { + "id": 19720, + "cuisine": "moroccan", + "ingredients": [ + "preserved lemon", + "cracked black pepper", + "couscous", + "olive oil", + "fresh lemon juice", + "onions", + "picholine olives", + "salt", + "fresh parsley", + "ground ginger", + "cinnamon", + "carrots", + "cumin" + ] + }, + { + "id": 959, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "water", + "salt", + "coconut flour", + "egg whites", + "cummin" + ] + }, + { + "id": 12185, + "cuisine": "indian", + "ingredients": [ + "water", + "cashew nuts", + "saffron threads", + "butter", + "cooking spray", + "sugar", + "ground cardamom" + ] + }, + { + "id": 36206, + "cuisine": "irish", + "ingredients": [ + "irish cream liqueur", + "heavy cream", + "fresh mushrooms", + "peanuts", + "bacon", + "heavy whipping cream", + "red potato", + "butter", + "provolone cheese", + "boneless skinless chicken breast halves", + "water", + "fresh green bean", + "shredded mozzarella cheese" + ] + }, + { + "id": 42604, + "cuisine": "korean", + "ingredients": [ + "fish sauce", + "green onions", + "salt", + "radishes", + "daikon", + "ground black pepper", + "sesame oil", + "pepper flakes", + "beef brisket", + "garlic" + ] + }, + { + "id": 24785, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "butter", + "parmigiano reggiano cheese", + "salt", + "black pepper", + "ground veal", + "vegetable oil", + "chopped onion" + ] + }, + { + "id": 39145, + "cuisine": "italian", + "ingredients": [ + "veal scallopini", + "flat leaf parsley", + "capers", + "red wine vinegar", + "unsalted butter", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 20759, + "cuisine": "french", + "ingredients": [ + "extra-virgin olive oil", + "brine-cured olives", + "cognac", + "capers", + "flat leaf parsley", + "anchovy fillets" + ] + }, + { + "id": 6994, + "cuisine": "mexican", + "ingredients": [ + "lime", + "light mayonnaise", + "ground pepper", + "coarse salt", + "corn husks", + "chili powder", + "grated parmesan cheese", + "butter" + ] + }, + { + "id": 34751, + "cuisine": "chinese", + "ingredients": [ + "water", + "green onions", + "dark sesame oil", + "low sodium soy sauce", + "ground black pepper", + "green peas", + "basmati rice", + "fresh ginger", + "vegetable oil", + "cooked shrimp", + "sake", + "large eggs", + "salt" + ] + }, + { + "id": 19660, + "cuisine": "italian", + "ingredients": [ + "pepper", + "part-skim ricotta cheese", + "spinach", + "egg whites", + "sauce", + "part-skim mozzarella", + "grated parmesan cheese", + "salt", + "bread crumbs", + "chicken cutlets", + "non stick spray" + ] + }, + { + "id": 8565, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "salt", + "baking powder", + "cornmeal", + "vegetable oil", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 44089, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "butter", + "marshmallow creme", + "baking soda", + "salt", + "white sugar", + "evaporated milk", + "vanilla extract", + "confectioners sugar", + "baking powder", + "all-purpose flour", + "unsweetened cocoa powder" + ] + }, + { + "id": 18878, + "cuisine": "spanish", + "ingredients": [ + "ground ginger", + "large garlic cloves", + "dry bread crumbs", + "lemon juice", + "dried oregano", + "fresh cilantro", + "yellow bell pepper", + "fresh oregano", + "frozen peas", + "tomatoes", + "ground veal", + "cayenne pepper", + "onions", + "olive oil", + "salt", + "long-grain rice", + "Madras curry powder" + ] + }, + { + "id": 32690, + "cuisine": "filipino", + "ingredients": [ + "coconut cream", + "brown sugar", + "coconut milk", + "sweet rice" + ] + }, + { + "id": 32095, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "sliced ham", + "mayonaise", + "butter", + "swiss cheese", + "french toast", + "sliced turkey" + ] + }, + { + "id": 42518, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "salted peanuts", + "fresh chile", + "boneless skinless chicken breasts", + "coconut milk", + "nam pla", + "butter oil", + "curry powder", + "salt", + "chopped cilantro" + ] + }, + { + "id": 18510, + "cuisine": "mexican", + "ingredients": [ + "melted butter", + "large eggs", + "all-purpose flour", + "unsalted butter", + "salt", + "sugar", + "cajeta", + "pecans", + "whole milk", + "cognac" + ] + }, + { + "id": 29632, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large eggs", + "Amaretti Cookies", + "unsalted butter", + "cinnamon", + "powdered sugar", + "semisweet chocolate", + "whipping cream", + "sliced almonds", + "almond extract", + "salt" + ] + }, + { + "id": 28045, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "fresh lime juice", + "jalapeno chilies", + "tomatoes", + "cilantro leaves" + ] + }, + { + "id": 4204, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sweet soy sauce", + "salt", + "eggs", + "lap cheong", + "green peas", + "shrimp", + "white pepper", + "cooking oil", + "rice", + "fish sauce", + "boneless chicken breast", + "garlic", + "fish" + ] + }, + { + "id": 28295, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "salt", + "chicken", + "flour", + "green chilies", + "pepper", + "cream cheese", + "shredded Monterey Jack cheese", + "chicken broth", + "butter", + "sour cream" + ] + }, + { + "id": 35852, + "cuisine": "cajun_creole", + "ingredients": [ + "shredded cheddar cheese", + "salted butter", + "cayenne pepper", + "water", + "whole milk", + "rotel tomatoes", + "minced garlic", + "extra large shrimp", + "smoked paprika", + "kosher salt", + "olive oil", + "cajun seasoning", + "polenta" + ] + }, + { + "id": 49207, + "cuisine": "thai", + "ingredients": [ + "cherry tomatoes", + "garlic", + "lemon", + "dried oregano", + "feta cheese", + "salt", + "pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 1480, + "cuisine": "thai", + "ingredients": [ + "shiro miso", + "soy sauce", + "kosher salt", + "butternut squash", + "butter", + "carrots", + "pork baby back ribs", + "gari", + "fresh ginger", + "vegetable oil", + "dried shiitake mushrooms", + "onions", + "sake", + "pork belly", + "lemongrass", + "green onions", + "large garlic cloves", + "mung bean sprouts", + "sugar", + "reduced sodium chicken broth", + "asian wheat noodles", + "watercress", + "konbu", + "chicken" + ] + }, + { + "id": 5000, + "cuisine": "southern_us", + "ingredients": [ + "biscuits", + "gravy", + "all-purpose flour", + "milk", + "buttermilk", + "baking soda", + "salt", + "sweet italian sausag links, cut into", + "baking powder", + "Country Crock® Spread" + ] + }, + { + "id": 10697, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "chicken breasts", + "rice", + "shredded cheddar cheese", + "salsa", + "black beans", + "chili powder", + "oregano", + "green onions", + "frozen corn kernels" + ] + }, + { + "id": 14260, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "part-skim ricotta cheese", + "refrigerated pizza dough", + "crumbled gorgonzola", + "fontina cheese", + "all-purpose flour", + "green onions" + ] + }, + { + "id": 935, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "chopped fresh thyme", + "cabernet sauvignon", + "ground black pepper", + "all-purpose flour", + "polenta", + "gremolata", + "butter", + "coarse kosher salt", + "vegetable oil", + "beef rib short" + ] + }, + { + "id": 32151, + "cuisine": "chinese", + "ingredients": [ + "water chestnuts", + "all-purpose flour", + "chinese black vinegar", + "soy sauce", + "peeled fresh ginger", + "scallions", + "pork", + "shell-on shrimp", + "peanut oil", + "water", + "sesame oil", + "oil" + ] + }, + { + "id": 38868, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "salt", + "chopped cilantro fresh", + "pepper", + "small pasta", + "salsa", + "black beans", + "Mexican cheese blend", + "frozen corn", + "cumin", + "avocado", + "lime juice", + "chili powder", + "garlic cloves" + ] + }, + { + "id": 24958, + "cuisine": "italian", + "ingredients": [ + "cheddar cheese", + "basil", + "chorizo sausage", + "wonton wrappers", + "ground beef", + "pepper", + "salt", + "pasta sauce", + "ricotta cheese", + "cumin" + ] + }, + { + "id": 25984, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "freshly ground pepper", + "fettucine", + "bell pepper", + "pesto sauce", + "salt", + "olive oil" + ] + }, + { + "id": 2574, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "coarse salt", + "masa harina", + "corn husks", + "freshly ground pepper", + "boneless skinless chicken breasts", + "lard", + "corn kernels", + "salsa" + ] + }, + { + "id": 4665, + "cuisine": "filipino", + "ingredients": [ + "tomato sauce", + "green bell pepper, slice", + "salt", + "carrots", + "pepper", + "potatoes", + "liver", + "onions", + "chili pepper", + "cooking oil", + "beef broth", + "red bell pepper", + "green olives", + "beef", + "bay leaves", + "garlic cloves" + ] + }, + { + "id": 2105, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "onions", + "kosher salt", + "garlic", + "large shrimp", + "fresh basil", + "olive oil", + "long grain white rice", + "pepper", + "carrots" + ] + }, + { + "id": 43734, + "cuisine": "french", + "ingredients": [ + "cointreau", + "vanilla sugar", + "bittersweet chocolate", + "unsalted butter", + "walnuts", + "bread crumb fresh", + "large eggs", + "orange", + "raisins" + ] + }, + { + "id": 38222, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "salt", + "breakfast sausages", + "onions", + "ground black pepper", + "all-purpose flour", + "biscuits", + "butter" + ] + }, + { + "id": 314, + "cuisine": "indian", + "ingredients": [ + "green onions", + "onions", + "ground black pepper", + "cauliflower florets", + "curry powder", + "unsalted cashews", + "frozen peas", + "potatoes", + "fine sea salt" + ] + }, + { + "id": 2282, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "scallions", + "rye", + "salt", + "cream cheese, soften", + "sugar", + "ground black pepper", + "fresh lemon juice", + "seedless cucumber", + "persian cucumber" + ] + }, + { + "id": 5715, + "cuisine": "spanish", + "ingredients": [ + "milk", + "vanilla extract", + "lemon", + "white sugar", + "egg yolks", + "cinnamon sticks", + "cornflour" + ] + }, + { + "id": 13328, + "cuisine": "mexican", + "ingredients": [ + "fontina cheese", + "bacon", + "flour tortillas", + "sour cream", + "eggs", + "salsa", + "green onions" + ] + }, + { + "id": 45679, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "bell pepper", + "purple onion", + "sour cream", + "ground black pepper", + "boneless skinless chicken breasts", + "ground coriander", + "olives", + "lime", + "guacamole", + "salsa", + "chopped cilantro fresh", + "tortillas", + "chili powder", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 22966, + "cuisine": "italian", + "ingredients": [ + "pasta", + "minced garlic", + "salt", + "fresh basil", + "artichok heart marin", + "fresh mushrooms", + "tomato paste", + "water", + "chopped onion", + "sugar", + "diced tomatoes" + ] + }, + { + "id": 21104, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "buttermilk", + "cornmeal", + "eggs", + "baking powder", + "all-purpose flour", + "baking soda", + "salt", + "sugar", + "vegetable oil", + "bacon grease" + ] + }, + { + "id": 1877, + "cuisine": "southern_us", + "ingredients": [ + "vanilla", + "peaches", + "sugar", + "Saigon cinnamon", + "whipped cream" + ] + }, + { + "id": 37512, + "cuisine": "mexican", + "ingredients": [ + "hominy", + "salt", + "black pepper", + "stewed tomatoes", + "onions", + "tomato paste", + "cilantro", + "lean beef", + "olive oil", + "garlic" + ] + }, + { + "id": 6204, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "ground black pepper", + "salt", + "parmesan cheese", + "baby spinach", + "fat free milk", + "mushrooms", + "dumplings", + "light alfredo sauce", + "ground nutmeg", + "large garlic cloves" + ] + }, + { + "id": 15786, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "red curry paste", + "fish sauce", + "sesame oil", + "creamy peanut butter", + "chili powder", + "cayenne pepper", + "brown sugar", + "vegetable oil", + "coconut milk" + ] + }, + { + "id": 27416, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "jalapeno chilies", + "yellow onion", + "unsalted butter", + "salt", + "lime", + "cilantro", + "corn tortillas", + "pepper", + "poblano", + "sauce" + ] + }, + { + "id": 49642, + "cuisine": "korean", + "ingredients": [ + "sugar", + "garlic", + "chile powder", + "fresh ginger", + "scallions", + "kosher salt", + "rice vinegar", + "fish sauce", + "pickling cucumbers" + ] + }, + { + "id": 27810, + "cuisine": "french", + "ingredients": [ + "granny smith apples", + "salt", + "unsalted butter", + "sugar", + "ice water", + "large egg whites", + "all-purpose flour" + ] + }, + { + "id": 18011, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "green onions", + "shrimp", + "spring roll wrappers", + "shiitake", + "garlic", + "crab meat", + "black pepper", + "sesame oil", + "cabbage", + "sugar", + "egg whites", + "carrots" + ] + }, + { + "id": 4967, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken breast", + "taco seasoning", + "tomatoes", + "salsa", + "red bell pepper", + "whole wheat tortillas", + "Mexican cheese", + "black beans", + "cream cheese" + ] + }, + { + "id": 31182, + "cuisine": "thai", + "ingredients": [ + "chile paste with garlic", + "water", + "cucumber", + "medium shrimp", + "sugar", + "sea scallops", + "fresh mint", + "fish sauce", + "lemongrass", + "red bell pepper", + "lump crab meat", + "purple onion", + "fresh lime juice" + ] + }, + { + "id": 24370, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "granulated sugar", + "vanilla", + "ground cinnamon", + "baking soda", + "sea salt", + "ground cumin", + "water", + "butter", + "smoked paprika", + "pecans", + "cayenne", + "light corn syrup" + ] + }, + { + "id": 47489, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "chicken", + "cream", + "chopped cilantro", + "chihuahua cheese", + "corn tortillas", + "salsa verde", + "onions" + ] + }, + { + "id": 39078, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "parsley", + "salt", + "shrimp", + "chicken broth", + "flour", + "worcestershire sauce", + "creole seasoning", + "celery", + "bell pepper", + "butter", + "hot sauce", + "thyme", + "tomatoes", + "green onions", + "garlic", + "lemon juice", + "onions" + ] + }, + { + "id": 12066, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "zucchini", + "onions", + "olive oil", + "large garlic cloves", + "green bell pepper", + "red wine vinegar", + "tomatoes", + "eggplant", + "goat cheese" + ] + }, + { + "id": 38800, + "cuisine": "mexican", + "ingredients": [ + "refried black beans", + "queso fresco", + "purple onion", + "onions", + "butternut squash", + "cilantro", + "oil", + "chorizo", + "cinnamon", + "salt", + "cumin", + "chili powder", + "garlic", + "corn tortillas" + ] + }, + { + "id": 26055, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "cilantro sprigs", + "kosher salt", + "jicama", + "garlic cloves", + "jalapeno chilies", + "scallions", + "lime", + "romaine lettuce leaves", + "large shrimp" + ] + }, + { + "id": 40674, + "cuisine": "italian", + "ingredients": [ + "capers", + "olive oil", + "garlic", + "water", + "heavy cream", + "boneless skinless chicken breast halves", + "mozzarella cheese", + "butter", + "fresh parsley", + "wine", + "salt and ground black pepper", + "corn starch" + ] + }, + { + "id": 38027, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "ground nutmeg", + "purple onion", + "ground cinnamon", + "curry powder", + "peeled fresh ginger", + "chopped fresh mint", + "cider vinegar", + "jalapeno chilies", + "ground allspice", + "brown sugar", + "olive oil", + "raisins", + "mango" + ] + }, + { + "id": 38700, + "cuisine": "british", + "ingredients": [ + "pepper", + "frozen pastry puff sheets", + "salt", + "haricots verts", + "olive oil", + "garlic", + "filet mignon steaks", + "shallots", + "eggs", + "shiitake", + "crushed red pepper" + ] + }, + { + "id": 4530, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "grating cheese", + "corn tortillas", + "boneless skinless chicken breasts", + "hot sauce", + "canola oil", + "roma tomatoes", + "salt", + "cumin", + "romaine lettuce", + "chili powder", + "sour cream" + ] + }, + { + "id": 33721, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "chicken pieces", + "red chili peppers", + "rice wine", + "cola", + "ground ginger", + "potatoes", + "onions", + "soy sauce", + "carrots", + "noodles" + ] + }, + { + "id": 1457, + "cuisine": "southern_us", + "ingredients": [ + "green tomatoes", + "self-rising cornmeal", + "pepper", + "bacon", + "refrigerated buttermilk biscuits", + "salt", + "mayonaise", + "buttermilk" + ] + }, + { + "id": 32546, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cilantro leaves", + "purple onion", + "mango", + "jalapeno chilies", + "red bell pepper", + "salt" + ] + }, + { + "id": 10532, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium chicken broth", + "Sriracha", + "ginger", + "corn starch", + "soy sauce", + "minced garlic", + "sesame oil", + "orange juice", + "chinese rice wine", + "kosher salt", + "boneless skinless chicken breasts", + "rice vinegar", + "grated orange", + "white pepper", + "sesame seeds", + "raw sugar", + "scallions" + ] + }, + { + "id": 7032, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "large eggs", + "peanut oil", + "cooked white rice", + "honey", + "sesame oil", + "chinese five-spice powder", + "white onion", + "pork tenderloin", + "scallions", + "frozen peas", + "hoisin sauce", + "garlic", + "carrots" + ] + }, + { + "id": 34879, + "cuisine": "italian", + "ingredients": [ + "sugar", + "heavy cream", + "egg yolks", + "ricotta", + "honey", + "salt", + "whole milk" + ] + }, + { + "id": 19254, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "egg yolks", + "all-purpose flour", + "sugar", + "unsalted butter", + "chocolate", + "corn starch", + "milk", + "heavy cream", + "cocoa powder", + "water", + "large eggs", + "salt", + "bittersweet chocolate" + ] + }, + { + "id": 35853, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "oil", + "onions", + "salt", + "gram flour", + "ginger", + "rice flour", + "clove", + "green chilies", + "asafoetida powder" + ] + }, + { + "id": 43043, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium soy sauce", + "corn starch", + "country crock calcium plus vitamin d", + "lemon juice", + "boneless skinless chicken breast halves", + "ground ginger", + "broccoli", + "onions", + "reduced sodium chicken broth", + "carrots", + "chopped cilantro fresh" + ] + }, + { + "id": 23401, + "cuisine": "filipino", + "ingredients": [ + "cantaloupe", + "water", + "white sugar", + "evaporated milk" + ] + }, + { + "id": 42183, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "whole peeled tomatoes", + "ground coriander", + "canola oil", + "tumeric", + "garam masala", + "ginger", + "onions", + "fresh cilantro", + "bone-in chicken", + "corn starch", + "ground cumin", + "plain yogurt", + "cayenne", + "garlic", + "serrano chile" + ] + }, + { + "id": 33548, + "cuisine": "italian", + "ingredients": [ + "boneless skinless chicken breast halves", + "hellmann' or best food real mayonnais", + "parmesan cheese", + "italian seasoned dry bread crumbs" + ] + }, + { + "id": 13671, + "cuisine": "southern_us", + "ingredients": [ + "turnip greens", + "margarine", + "hot pepper sauce", + "pepper", + "onions", + "brown sugar", + "cooking spray" + ] + }, + { + "id": 42368, + "cuisine": "mexican", + "ingredients": [ + "fresca", + "ground black pepper", + "extra-virgin olive oil", + "eggs", + "fresh cilantro", + "queso fresco", + "all-purpose flour", + "minced garlic", + "baking powder", + "salt", + "canned black beans", + "cooking spray", + "purple onion" + ] + }, + { + "id": 25787, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "garlic", + "basil leaves", + "parmesan cheese", + "salt", + "pecorino cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 39919, + "cuisine": "italian", + "ingredients": [ + "eggs", + "bread crumbs", + "grated parmesan cheese", + "garlic", + "celery", + "ground chicken", + "olive oil", + "diced tomatoes", + "yellow onion", + "italian seasoning", + "chicken broth", + "black pepper", + "garlic powder", + "orzo", + "carrots", + "fresh spinach", + "water", + "balsamic vinegar", + "salt", + "fresh parsley" + ] + }, + { + "id": 28213, + "cuisine": "brazilian", + "ingredients": [ + "palm oil", + "fresh cilantro", + "bell pepper", + "salt", + "ground cumin", + "fish sauce", + "olive oil", + "diced tomatoes", + "coconut milk", + "serrano chilies", + "lime", + "hard-boiled egg", + "garlic cloves", + "tomato paste", + "tilapia fillets", + "ground black pepper", + "paprika", + "onions" + ] + }, + { + "id": 5869, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "frozen pastry puff sheets", + "yams", + "vanilla ice cream", + "large eggs", + "pumpkin seeds", + "unsalted butter", + "salt", + "vegetable oil spray", + "vanilla extract" + ] + }, + { + "id": 41471, + "cuisine": "italian", + "ingredients": [ + "sugar", + "mild Italian sausage", + "garlic", + "dried parsley", + "tomato paste", + "dried basil", + "lean ground beef", + "fresh mushrooms", + "water", + "ground red pepper", + "salt", + "tomato sauce", + "parmesan cheese", + "linguine", + "onions" + ] + }, + { + "id": 45760, + "cuisine": "japanese", + "ingredients": [ + "salt", + "short-grain rice", + "cold water", + "rice vinegar", + "granulated sugar" + ] + }, + { + "id": 15148, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chili powder", + "purple onion", + "cumin", + "black beans", + "jalapeno chilies", + "sea salt", + "salsa", + "lettuce", + "zucchini", + "red pepper", + "soya cheese", + "lime", + "guacamole", + "garlic", + "cayenne pepper" + ] + }, + { + "id": 12483, + "cuisine": "moroccan", + "ingredients": [ + "water", + "cilantro sprigs", + "ground cardamom", + "slivered almonds", + "garbanzo beans", + "salt", + "grated lemon peel", + "fresh cilantro", + "extra-virgin olive oil", + "couscous", + "pitted date", + "green onions", + "fresh lemon juice" + ] + }, + { + "id": 49031, + "cuisine": "italian", + "ingredients": [ + "rosemary", + "salt", + "frozen chopped spinach, thawed and squeezed dry", + "fontina cheese", + "extra-virgin olive oil", + "freshly ground pepper", + "artichoke hearts", + "pizza doughs", + "pecorino cheese", + "purple onion", + "flour for dusting" + ] + }, + { + "id": 20681, + "cuisine": "french", + "ingredients": [ + "warm water", + "yeast", + "salted butter", + "caster sugar", + "plain flour", + "frozen raspberries" + ] + }, + { + "id": 2690, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "fresh cilantro", + "red pepper flakes", + "scallions", + "fresh lime juice", + "chicken stock", + "sugar", + "rice noodles", + "chili sauce", + "shrimp", + "brown sugar", + "shallots", + "tamarind paste", + "garlic cloves", + "chicken", + "eggs", + "kosher salt", + "vegetable oil", + "roasted peanuts", + "beansprouts" + ] + }, + { + "id": 38847, + "cuisine": "mexican", + "ingredients": [ + "milk", + "butter", + "salt", + "sugar", + "baking powder", + "frosting", + "sweetened condensed milk", + "large eggs", + "vanilla extract", + "grated lemon zest", + "evaporated milk", + "whipping cream", + "all-purpose flour" + ] + }, + { + "id": 36824, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "pizza sauce", + "fresh parmesan cheese", + "olive oil", + "pizza doughs" + ] + }, + { + "id": 6434, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "milk", + "baking powder", + "apricot preserves", + "eggs", + "chopped almonds", + "butter", + "confectioners sugar", + "candied orange peel", + "dark rum", + "salt", + "semi-sweet chocolate morsels", + "sugar", + "golden raisins", + "all-purpose flour", + "dried fig" + ] + }, + { + "id": 21215, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "salt", + "unsalted butter", + "almond extract", + "corn starch", + "powdered sugar", + "cherries", + "vanilla extract", + "grated lemon peel", + "almonds", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 18069, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "rice vinegar", + "tofu", + "cooking spray", + "grated orange", + "mirin", + "onion tops", + "low sodium soy sauce", + "peeled fresh ginger" + ] + }, + { + "id": 19168, + "cuisine": "southern_us", + "ingredients": [ + "turnips", + "water", + "all-purpose flour", + "chicken", + "parsnips", + "baking powder", + "fresh parsley", + "celery ribs", + "milk", + "carrots", + "fresh dill", + "coarse salt", + "onions" + ] + }, + { + "id": 4569, + "cuisine": "irish", + "ingredients": [ + "kumquats in syrup", + "irish bacon", + "dry mustard", + "parsley sprigs", + "lemon juice", + "kumquats" + ] + }, + { + "id": 3636, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "salt", + "fresh basil", + "unsalted butter", + "bread", + "olive oil", + "shredded mozzarella cheese", + "pepper", + "part-skim ricotta cheese" + ] + }, + { + "id": 6478, + "cuisine": "japanese", + "ingredients": [ + "lump crab meat", + "gyoza wrappers", + "pork", + "mirin", + "flour for dusting", + "fresh ginger", + "scallions", + "kosher salt", + "napa cabbage" + ] + }, + { + "id": 16587, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "extra-virgin olive oil", + "large egg yolks", + "salt", + "flour" + ] + }, + { + "id": 27772, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "butter", + "all-purpose flour", + "chopped pecans", + "mini marshmallows", + "frosting", + "xanthan gum", + "unsweetened cocoa powder", + "milk", + "vanilla", + "white rice flour", + "white sugar", + "eggs", + "tapioca starch", + "salt", + "brownies" + ] + }, + { + "id": 22766, + "cuisine": "mexican", + "ingredients": [ + "green cabbage", + "flour tortillas", + "fresh orange juice", + "sour cream", + "avocado", + "slaw", + "apple cider vinegar", + "fresh lemon juice", + "Louisiana Hot Sauce", + "serrano peppers", + "purple onion", + "fish", + "dressing", + "kosher salt", + "old bay seasoning", + "cucumber" + ] + }, + { + "id": 13486, + "cuisine": "korean", + "ingredients": [ + "fat free less sodium chicken broth", + "crushed red pepper", + "medium shrimp", + "reduced fat firm tofu", + "large eggs", + "dark sesame oil", + "zucchini", + "salt", + "black pepper", + "green onions", + "garlic cloves" + ] + }, + { + "id": 22372, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "vegetables", + "sour cream", + "sauerkraut", + "salt", + "red potato", + "whole wheat flour", + "green beans", + "pepper", + "vegetable oil", + "onions" + ] + }, + { + "id": 39004, + "cuisine": "moroccan", + "ingredients": [ + "nutmeg", + "pepper", + "cinnamon", + "dried chickpeas", + "cumin", + "beef bones", + "potatoes", + "shells", + "rice", + "eggs", + "chuck roast", + "paprika", + "yellow onion", + "black pepper", + "sweet potatoes", + "salt", + "oil" + ] + }, + { + "id": 12278, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "hard-boiled egg", + "button mushrooms", + "puff pastry", + "ground black pepper", + "butter", + "lemon juice", + "salmon", + "parsley", + "beaten eggs", + "basmati rice", + "lemon zest", + "sea salt", + "onions" + ] + }, + { + "id": 27180, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "large eggs", + "salt", + "nutmeg", + "sugar", + "butter", + "ground cinnamon", + "milk", + "vanilla extract", + "grated orange peel", + "french bread", + "strawberries" + ] + }, + { + "id": 13594, + "cuisine": "italian", + "ingredients": [ + "dried lentils", + "olive oil", + "diced celery", + "pancetta", + "wheat berries", + "chopped onion", + "water", + "salt", + "black pepper", + "swiss chard", + "carrots" + ] + }, + { + "id": 47454, + "cuisine": "greek", + "ingredients": [ + "baking powder", + "greek style plain yogurt", + "granulated sugar", + "salt", + "chopped walnuts", + "vanilla extract", + "cocoa powder", + "white chocolate chips", + "all-purpose flour", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 20233, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "self-rising cornmeal", + "sugar", + "butter", + "ground red pepper", + "milk", + "all-purpose flour" + ] + }, + { + "id": 20508, + "cuisine": "thai", + "ingredients": [ + "avocado", + "brown sugar", + "peanuts", + "marinade", + "orange juice", + "flavored oil", + "mango", + "salad", + "cherry tomatoes", + "Sriracha", + "napa cabbage", + "Chinese egg noodles", + "fresh lime juice", + "dressing", + "soy sauce", + "thai basil", + "sesame oil", + "scallions", + "Thai fish sauce", + "light brown sugar", + "filet mignon", + "fresh ginger", + "baby arugula", + "garlic", + "carrots", + "chopped cilantro" + ] + }, + { + "id": 34778, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "onion powder", + "ground cumin", + "cheddar cheese", + "beef", + "canola oil", + "lettuce", + "corn", + "sour cream", + "tomatoes", + "garlic powder", + "low sodium beef broth" + ] + }, + { + "id": 14994, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "paprika", + "onions", + "ground cumin", + "chili powder", + "cayenne pepper", + "dried oregano", + "chili beans", + "diced tomatoes", + "ground beef", + "masa harina", + "garlic powder", + "salt", + "pork sausages" + ] + }, + { + "id": 48108, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "purple onion", + "jalapeno chilies", + "lime", + "cilantro leaves", + "coarse salt" + ] + }, + { + "id": 18493, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "olive oil", + "frozen corn", + "pepper", + "green onions", + "plum tomatoes", + "black beans", + "jalapeno chilies", + "chopped cilantro fresh", + "avocado", + "lime juice", + "salt" + ] + }, + { + "id": 32581, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "baking powder", + "all-purpose flour", + "baking soda", + "buttermilk", + "brown sugar", + "butter", + "ground allspice", + "sweet potatoes", + "salt" + ] + }, + { + "id": 22960, + "cuisine": "french", + "ingredients": [ + "dark chocolate", + "egg yolks", + "unsweetened cocoa powder", + "milk", + "heavy cream", + "sugar", + "butter", + "eggs", + "flour", + "chocolate" + ] + }, + { + "id": 38808, + "cuisine": "chinese", + "ingredients": [ + "vegetable shortening", + "double-acting baking powder", + "almonds", + "all-purpose flour", + "almond extract", + "lard", + "sugar", + "beaten eggs" + ] + }, + { + "id": 24434, + "cuisine": "russian", + "ingredients": [ + "turnips", + "black pepper", + "bay leaves", + "butter", + "garlic cloves", + "onions", + "parsnips", + "potatoes", + "parsley", + "beets", + "sour cream", + "chuck", + "tomato paste", + "dried allspice berries", + "meat", + "soup bones", + "carrots", + "cabbage", + "cold water", + "water", + "beef base", + "salt", + "lemon juice", + "celery root" + ] + }, + { + "id": 24826, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "cake flour", + "sugar", + "all purpose unbleached flour", + "baking powder", + "salt", + "baking soda", + "buttermilk" + ] + }, + { + "id": 1958, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "ground black pepper", + "ginger", + "bay leaf", + "red lentils", + "cooked brown rice", + "diced tomatoes", + "garlic cloves", + "tumeric", + "sea salt", + "cumin seed", + "onions", + "green cardamom pods", + "water", + "cilantro", + "fresh lemon juice" + ] + }, + { + "id": 25148, + "cuisine": "greek", + "ingredients": [ + "boneless chicken skinless thigh", + "olive oil", + "kalamata", + "small red potato", + "tomato paste", + "water", + "balsamic vinegar", + "chopped onion", + "fat free less sodium chicken broth", + "ground black pepper", + "salt", + "flat leaf parsley", + "cremini mushrooms", + "dried thyme", + "red wine", + "garlic cloves" + ] + }, + { + "id": 42647, + "cuisine": "chinese", + "ingredients": [ + "water", + "garlic", + "dijon mustard", + "fresh ginger", + "fresh lemon juice", + "olive oil", + "tamari soy sauce" + ] + }, + { + "id": 16107, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "vegetable oil", + "sugar", + "reduced sodium soy sauce", + "cilantro sprigs", + "fish sauce", + "fresh ginger", + "Thai red curry paste", + "pepper", + "pork tenderloin", + "garlic cloves" + ] + }, + { + "id": 7638, + "cuisine": "italian", + "ingredients": [ + "port wine", + "raisins", + "peaches", + "freshly ground pepper", + "balsamic vinegar", + "fresh parsley", + "olive oil", + "salt" + ] + }, + { + "id": 43068, + "cuisine": "french", + "ingredients": [ + "artichoke hearts", + "dry red wine", + "carrots", + "lamb shanks", + "fresh thyme leaves", + "salt", + "olives", + "pepper", + "diced tomatoes", + "anchovy fillets", + "grated orange peel", + "savory", + "garlic", + "onions" + ] + }, + { + "id": 16185, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "water", + "red pepper", + "hot sauce", + "iceberg lettuce", + "black pepper", + "chili powder", + "garlic", + "onions", + "taco sauce", + "olive oil", + "paprika", + "ground beef", + "ground cumin", + "shredded cheddar cheese", + "onion powder", + "salt", + "dried oregano" + ] + }, + { + "id": 22971, + "cuisine": "italian", + "ingredients": [ + "pecorino cheese", + "lemon zest", + "fresh mint", + "kosher salt", + "heavy cream", + "orecchiette", + "black pepper", + "leeks", + "frozen peas", + "olive oil", + "garlic" + ] + }, + { + "id": 29074, + "cuisine": "mexican", + "ingredients": [ + "pickled jalapenos", + "flour tortillas", + "chili powder", + "sea salt", + "enchilada sauce", + "ground cumin", + "tomato paste", + "lime", + "jalapeno chilies", + "vegetable stock", + "black olives", + "onions", + "fresh cilantro", + "roma tomatoes", + "vegetable oil", + "cheese", + "sour cream", + "pico de gallo", + "refried beans", + "flour", + "queso fresco", + "salt", + "dried oregano" + ] + }, + { + "id": 42472, + "cuisine": "mexican", + "ingredients": [ + "rice", + "cumin", + "chicken broth", + "oil", + "tomato sauce", + "garlic salt", + "chopped onion" + ] + }, + { + "id": 2009, + "cuisine": "italian", + "ingredients": [ + "capers", + "white wine vinegar", + "tuna packed in olive oil", + "ground black pepper", + "salt", + "olive oil", + "purple onion", + "watercress", + "white beans" + ] + }, + { + "id": 14001, + "cuisine": "spanish", + "ingredients": [ + "water", + "ground black pepper", + "extra-virgin olive oil", + "flat leaf parsley", + "tomatoes", + "dried thyme", + "brown rice", + "pimento stuffed olives", + "saffron threads", + "fat free less sodium vegetable broth", + "chopped green bell pepper", + "chopped onion", + "cremini mushrooms", + "artichoke hearts", + "green peas", + "garlic cloves" + ] + }, + { + "id": 11552, + "cuisine": "southern_us", + "ingredients": [ + "baby lima beans", + "chopped green bell pepper", + "2% reduced-fat milk", + "garlic cloves", + "corn kernels", + "cooking spray", + "salt", + "sliced green onions", + "olive oil", + "baking potatoes", + "salsa", + "water", + "flour tortillas", + "shredded sharp cheddar cheese", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 726, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "ground black pepper", + "cucumber", + "kosher salt", + "balsamic vinegar", + "fresh dill", + "jalapeno chilies", + "onions", + "tomatoes", + "olive oil", + "lemon" + ] + }, + { + "id": 12906, + "cuisine": "irish", + "ingredients": [ + "water", + "salt", + "pork sausages", + "finely chopped fresh parsley", + "onions", + "bread", + "potatoes", + "thick-cut bacon", + "ground pepper", + "ham" + ] + }, + { + "id": 35765, + "cuisine": "southern_us", + "ingredients": [ + "vanilla ice cream", + "butter", + "peaches", + "all-purpose flour", + "sugar", + "vanilla", + "nutmeg", + "refrigerated piecrusts", + "chopped pecans" + ] + }, + { + "id": 49097, + "cuisine": "thai", + "ingredients": [ + "chicken breasts", + "garlic", + "peanut sauce", + "fresh mint", + "fresh cilantro", + "linguine", + "fresh basil leaves", + "mint sprigs", + "seasoned rice wine vinegar" + ] + }, + { + "id": 4518, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "unsalted butter", + "salt", + "sugar", + "light corn syrup", + "cold water", + "vegetable oil", + "baking soda", + "unsalted dry roast peanuts" + ] + }, + { + "id": 39558, + "cuisine": "italian", + "ingredients": [ + "honey", + "salt", + "balsamic vinegar", + "soy sauce", + "extra-virgin olive oil", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 5086, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "frozen peach slices", + "ground cinnamon", + "baking powder", + "grated lemon zest", + "sugar", + "butter", + "fresh lemon juice", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 43673, + "cuisine": "southern_us", + "ingredients": [ + "whipping cream", + "water", + "bourbon whiskey", + "sugar", + "corn starch" + ] + }, + { + "id": 42817, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "marjoram", + "chicken stock", + "red wine", + "arborio rice", + "unsalted butter", + "wild mushrooms", + "olive oil", + "onions" + ] + }, + { + "id": 49641, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "cumin seed", + "bone in chicken thighs", + "groundnut", + "large garlic cloves", + "greek yogurt", + "fennel seeds", + "butter", + "fat", + "fresh coriander", + "ginger", + "onions" + ] + }, + { + "id": 10844, + "cuisine": "french", + "ingredients": [ + "egg whites", + "lemon slices", + "sugar", + "whipping cream", + "fresh lemon juice", + "whole milk", + "fresh raspberries", + "large egg yolks", + "salt", + "grated lemon peel" + ] + }, + { + "id": 35674, + "cuisine": "thai", + "ingredients": [ + "parsnips", + "onions", + "coconut extract", + "jalape", + "chopped cilantro fresh", + "low sodium soy sauce", + "fresh ginger", + "chicken thighs", + "brown sugar", + "garlic", + "low-fat milk" + ] + }, + { + "id": 27087, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "garlic", + "tomato sauce", + "half & half", + "shredded mozzarella cheese", + "grated parmesan cheese", + "dry pasta", + "brown gravy", + "lean ground beef", + "dried oregano" + ] + }, + { + "id": 10456, + "cuisine": "italian", + "ingredients": [ + "pistachios", + "berries", + "vanilla extract", + "grated orange", + "cake", + "confectioners sugar", + "mascarpone", + "ricotta" + ] + }, + { + "id": 8079, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "raisins", + "sugar", + "flour", + "eggs", + "large eggs", + "heavy cream", + "kosher salt", + "baking powder" + ] + }, + { + "id": 25152, + "cuisine": "indian", + "ingredients": [ + "water", + "zucchini", + "chopped onion", + "tomatoes", + "eggplant", + "peeled fresh ginger", + "basmati rice", + "dried lentils", + "garam masala", + "salt", + "ground turmeric", + "olive oil", + "bay leaves", + "garlic cloves" + ] + }, + { + "id": 7652, + "cuisine": "southern_us", + "ingredients": [ + "fresh mozzarella", + "melted butter", + "biscuit dough", + "bacon", + "shredded cheddar cheese" + ] + }, + { + "id": 29358, + "cuisine": "spanish", + "ingredients": [ + "kale", + "coriander", + "green olives", + "ground beef", + "avocado", + "yams", + "cumin", + "green bell pepper", + "onions" + ] + }, + { + "id": 11149, + "cuisine": "filipino", + "ingredients": [ + "ground chipotle chile pepper", + "bay leaves", + "Equal Sweetener", + "water", + "white wine vinegar", + "soy sauce", + "boneless skinless chicken breasts", + "onions", + "ground black pepper", + "garlic puree" + ] + }, + { + "id": 45714, + "cuisine": "thai", + "ingredients": [ + "dry roasted peanuts", + "water chestnuts", + "rice vinegar", + "corn starch", + "snow peas", + "reduced sodium soy sauce", + "sesame oil", + "creamy peanut butter", + "coconut milk", + "water", + "shallots", + "chili sauce", + "red bell pepper", + "shredded carrots", + "rice noodles", + "gingerroot", + "fresh asparagus" + ] + }, + { + "id": 39199, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "extra-virgin olive oil", + "fresh parsley leaves", + "olives", + "kosher salt", + "loosely packed fresh basil leaves", + "garlic cloves", + "fresh mint", + "dry white wine", + "salt", + "red bell pepper", + "fresh marjoram", + "vegetable oil", + "anchovy fillets", + "penne rigate" + ] + }, + { + "id": 46789, + "cuisine": "french", + "ingredients": [ + "water", + "whipping cream", + "butter", + "shallots", + "salt", + "pepper", + "green peas" + ] + }, + { + "id": 47860, + "cuisine": "mexican", + "ingredients": [ + "pasta", + "onion powder", + "cream cheese", + "ground turkey", + "garlic powder", + "paprika", + "garlic cloves", + "ground cumin", + "shredded cheddar cheese", + "diced tomatoes", + "taco seasoning", + "onions", + "chili powder", + "cayenne pepper", + "sour cream" + ] + }, + { + "id": 18726, + "cuisine": "italian", + "ingredients": [ + "tomato basil sauce", + "lean ground beef", + "hot water", + "lasagna noodles", + "shredded mozzarella cheese", + "ricotta cheese" + ] + }, + { + "id": 40503, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "cayenne pepper", + "black beans", + "diced tomatoes", + "canola oil", + "reduced sodium chicken broth", + "chili powder", + "green chilies", + "corn", + "salt", + "ground cumin" + ] + }, + { + "id": 36721, + "cuisine": "moroccan", + "ingredients": [ + "fresh red chili", + "fresh ginger root", + "extra-virgin olive oil", + "garlic cloves", + "ground cumin", + "lamb stock", + "dates", + "ground coriander", + "couscous", + "ground cinnamon", + "pistachio nuts", + "salt", + "leg of lamb", + "saffron threads", + "fresh coriander", + "paprika", + "pomegranate", + "onions" + ] + }, + { + "id": 27051, + "cuisine": "french", + "ingredients": [ + "canned snails", + "snail shells", + "garlic cloves", + "freshly ground pepper", + "salted butter", + "flat leaf parsley" + ] + }, + { + "id": 48471, + "cuisine": "french", + "ingredients": [ + "shallots", + "olive oil", + "black pepper", + "salt", + "haricots verts", + "red wine vinegar" + ] + }, + { + "id": 7806, + "cuisine": "italian", + "ingredients": [ + "pasta", + "butter", + "grated parmesan cheese", + "minced garlic", + "medium shrimp", + "vegetable oil" + ] + }, + { + "id": 48880, + "cuisine": "mexican", + "ingredients": [ + "orange", + "garlic", + "adobo sauce", + "sazon", + "corn tortillas", + "fresh cilantro", + "purple onion", + "pork shoulder", + "avocado", + "extra-virgin olive oil", + "chipotles in adobo" + ] + }, + { + "id": 10662, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "florets", + "broccoli", + "balsamic vinegar", + "garlic", + "orecchiette", + "ground black pepper", + "diced tomatoes", + "fresh parsley", + "canned low sodium chicken broth", + "butter", + "salt" + ] + }, + { + "id": 33340, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "fresh basil", + "zucchini", + "tomatoes", + "ground black pepper", + "salt", + "mozzarella cheese", + "grated parmesan cheese" + ] + }, + { + "id": 21601, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "ground chicken breast", + "salt", + "cumin", + "unseasoned breadcrumbs", + "fresh ginger", + "paprika", + "garlic cloves", + "eggs", + "olive oil", + "lemon", + "cayenne pepper", + "tumeric", + "lemon wedge", + "cilantro", + "coriander" + ] + }, + { + "id": 8447, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "granulated tapioca", + "sesame seeds", + "salt", + "bananas", + "water", + "light coconut milk" + ] + }, + { + "id": 15893, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "garlic", + "olive oil", + "honey", + "soy sauce", + "chicken breasts" + ] + }, + { + "id": 21504, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "rice sticks", + "lime wedges", + "cardamom pods", + "fresh basil leaves", + "baby bok choy", + "lower sodium soy sauce", + "thai chile", + "beansprouts", + "snow peas", + "clove", + "water", + "peeled fresh ginger", + "yellow onion", + "fresh mint", + "brown sugar", + "lower sodium beef broth", + "star anise", + "garlic cloves", + "boneless sirloin steak" + ] + }, + { + "id": 32822, + "cuisine": "italian", + "ingredients": [ + "sugar", + "plum tomatoes", + "large garlic cloves", + "hot red pepper flakes", + "onions", + "olive oil" + ] + }, + { + "id": 13356, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "salt", + "water", + "shallots", + "haricots verts", + "dijon mustard", + "champagne vinegar", + "honey", + "extra-virgin olive oil" + ] + }, + { + "id": 15817, + "cuisine": "italian", + "ingredients": [ + "bread", + "pepper", + "red wine vinegar", + "diced celery", + "pinenuts", + "eggplant", + "pimento stuffed olives", + "onions", + "capers", + "pita chips", + "diced tomatoes", + "rib", + "sugar", + "olive oil", + "salt", + "ripe olives" + ] + }, + { + "id": 6202, + "cuisine": "indian", + "ingredients": [ + "pepper", + "heavy cream", + "cayenne pepper", + "onions", + "tomato paste", + "boneless skinless chicken breasts", + "garlic", + "curry paste", + "masala", + "ground ginger", + "curry powder", + "light coconut milk", + "greek yogurt", + "naan", + "tumeric", + "butter", + "salt", + "cooked white rice" + ] + }, + { + "id": 17320, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "light corn syrup", + "sugar", + "unsalted butter", + "salt", + "baking soda", + "vanilla extract", + "water", + "vegetable oil" + ] + }, + { + "id": 29912, + "cuisine": "chinese", + "ingredients": [ + "jasmine rice", + "garlic", + "carrot sticks", + "green onions", + "frozen peas", + "eggs", + "fresh ginger", + "onions", + "soy sauce", + "sesame oil" + ] + }, + { + "id": 8462, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "large shrimp", + "eggs", + "creole seasoning", + "flour", + "mayonaise", + "panko breadcrumbs" + ] + }, + { + "id": 10107, + "cuisine": "indian", + "ingredients": [ + "shredded coconut", + "radishes", + "chili powder", + "salt", + "carrots", + "ground black pepper", + "flour", + "cauliflower florets", + "green chilies", + "ground turmeric", + "chopped tomatoes", + "cooking oil", + "ginger", + "cilantro leaves", + "onions", + "turnips", + "coriander powder", + "capsicum", + "garlic", + "curds", + "cabbage" + ] + }, + { + "id": 29743, + "cuisine": "italian", + "ingredients": [ + "orange", + "dry white wine", + "sheep’s milk cheese", + "salt", + "grated lemon peel", + "arborio rice", + "large eggs", + "lime wedges", + "lemon", + "grate lime peel", + "grated orange peel", + "whole milk", + "vegetable oil", + "extra-virgin olive oil", + "panko breadcrumbs", + "fennel", + "shallots", + "butter", + "low salt chicken broth" + ] + }, + { + "id": 1474, + "cuisine": "spanish", + "ingredients": [ + "red potato", + "sliced carrots", + "olive oil", + "spanish chorizo", + "kale", + "baking potatoes", + "chicken broth", + "finely chopped onion", + "garlic cloves" + ] + }, + { + "id": 16868, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "eggs", + "fudge brownie mix", + "irish cream liqueur", + "confectioners sugar", + "vegetable oil" + ] + }, + { + "id": 8312, + "cuisine": "indian", + "ingredients": [ + "smoked haddock fillet", + "long-grain rice", + "ground turmeric", + "curry powder", + "vegetable oil", + "onions", + "eggs", + "bay leaves", + "chopped parsley", + "milk", + "ground coriander", + "coriander" + ] + }, + { + "id": 38640, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "lime", + "green chilies", + "chopped cilantro", + "curry leaves", + "pepper", + "red food coloring", + "garlic chili sauce", + "ginger paste", + "eggs", + "water", + "salt", + "corn starch", + "ground cumin", + "garlic paste", + "vegetable oil", + "cumin seed", + "chicken" + ] + }, + { + "id": 8718, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "light beer", + "chicken stock cubes", + "long grain white rice", + "green olives", + "olive oil", + "cilantro", + "onions", + "water", + "sazon", + "frozen mixed vegetables", + "tomato sauce", + "bell pepper", + "garlic", + "chicken thighs" + ] + }, + { + "id": 9706, + "cuisine": "mexican", + "ingredients": [ + "queso asadero", + "sour cream", + "enchilada sauce", + "corn tortilla chips" + ] + }, + { + "id": 28413, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "buttermilk", + "shortening", + "self rising flour" + ] + }, + { + "id": 38458, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "rolls", + "roast beef deli meat", + "mozzarella cheese", + "chips" + ] + }, + { + "id": 32913, + "cuisine": "mexican", + "ingredients": [ + "processed cheese", + "cream cheese", + "salsa", + "chili" + ] + }, + { + "id": 20215, + "cuisine": "jamaican", + "ingredients": [ + "lime juice", + "purple onion", + "jamaican jerk season", + "mango", + "ground black pepper", + "grate lime peel", + "boneless chop pork", + "garlic", + "hellmann' or best food light mayonnais" + ] + }, + { + "id": 41156, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "paprika", + "sliced green onions", + "mayonaise", + "large eggs", + "dry bread crumbs", + "aioli", + "apples", + "pepper", + "vegetable oil", + "pink salmon" + ] + }, + { + "id": 39743, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "bacon slices", + "dried rosemary", + "cannellini beans", + "chopped onion", + "dry white wine", + "fresh parsley", + "water", + "grated lemon zest" + ] + }, + { + "id": 43030, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "ground black pepper", + "green onions", + "purple onion", + "serrano chile", + "pure olive oil", + "pepper", + "red cabbage", + "red wine vinegar", + "cilantro leaves", + "kosher salt", + "boneless chicken breast", + "chili powder", + "salt", + "gold tequila", + "lime juice", + "jalapeno chilies", + "garlic", + "orange juice" + ] + }, + { + "id": 31406, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "sun-dried tomatoes in oil", + "crushed red pepper", + "italian seasoning" + ] + }, + { + "id": 13954, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "black mustard seeds", + "canola oil", + "curry leaves", + "thai chile", + "basmati rice", + "chana dal", + "fresh lime juice", + "asafoetida", + "garlic", + "ground turmeric" + ] + }, + { + "id": 44191, + "cuisine": "thai", + "ingredients": [ + "sugar", + "peanuts", + "dry white wine", + "egg noodles, cooked and drained", + "garlic cloves", + "curry powder", + "boneless chicken breast halves", + "salt", + "peanut oil", + "soy sauce", + "eggplant", + "shallots", + "grated lemon zest", + "unsweetened coconut milk", + "fresh ginger", + "lemon zest", + "cilantro leaves", + "freshly ground pepper" + ] + }, + { + "id": 20152, + "cuisine": "italian", + "ingredients": [ + "pasta", + "olive oil", + "cannellini beans", + "flat leaf parsley", + "kosher salt", + "ground black pepper", + "garlic", + "smoked ham hocks", + "celery ribs", + "flat leaf spinach", + "leeks", + "green beans", + "chicken broth", + "salsa verde", + "butternut squash", + "onions" + ] + }, + { + "id": 2627, + "cuisine": "southern_us", + "ingredients": [ + "crumbled blue cheese", + "salt", + "sugar", + "butter", + "baking powder", + "all-purpose flour", + "large eggs", + "heavy cream" + ] + }, + { + "id": 30078, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "cilantro leaves", + "chiles", + "ground black pepper", + "serrano chile", + "tomatoes", + "olive oil", + "shrimp", + "kosher salt", + "shallots", + "dried oregano" + ] + }, + { + "id": 29191, + "cuisine": "russian", + "ingredients": [ + "black pepper", + "garlic", + "sour cream", + "eggplant", + "all-purpose flour", + "water", + "salt", + "onions", + "tomatoes", + "paprika", + "fresh lemon juice" + ] + }, + { + "id": 4542, + "cuisine": "french", + "ingredients": [ + "basil leaves", + "lime rind", + "fresh lime juice", + "sugar", + "corn syrup", + "water" + ] + }, + { + "id": 46356, + "cuisine": "italian", + "ingredients": [ + "I Can't Believe It's Not Butter!® Spread", + "frozen broccoli florets", + "Ragu Golden Veggie Fettuccine Pasta", + "Ragu Classic Alfredo Sauce", + "boneless skinless chicken breasts" + ] + }, + { + "id": 6832, + "cuisine": "mexican", + "ingredients": [ + "water", + "salt", + "powdered sugar", + "large eggs", + "orange juice", + "ground cinnamon", + "unsalted butter", + "all-purpose flour", + "sugar", + "vegetable oil", + "dark brown sugar" + ] + }, + { + "id": 14258, + "cuisine": "chinese", + "ingredients": [ + "dry sherry", + "onions", + "water", + "tomato ketchup", + "worcestershire sauce", + "oil", + "bicarbonate of soda", + "fillet steaks", + "white sugar" + ] + }, + { + "id": 24600, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "potatoes", + "corn syrup", + "water", + "sesame oil", + "olive oil", + "garlic", + "sugar", + "sesame seeds", + "oyster mushrooms" + ] + }, + { + "id": 43723, + "cuisine": "russian", + "ingredients": [ + "unsalted butter", + "black pepper", + "chicken stock", + "fine sea salt", + "poussins" + ] + }, + { + "id": 27798, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "cornmeal", + "olive oil", + "salt", + "milk", + "green tomatoes", + "dried oregano", + "freshly grated parmesan", + "all-purpose flour" + ] + }, + { + "id": 5383, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "clam juice", + "corn tortillas", + "ground cumin", + "fat free less sodium chicken broth", + "green onions", + "garlic cloves", + "chopped cilantro fresh", + "lime juice", + "vegetable oil", + "red bell pepper", + "dried oregano", + "black pepper", + "jalapeno chilies", + "diced tomatoes", + "medium shrimp" + ] + }, + { + "id": 13858, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "garlic cloves", + "fresh parsley", + "pinenuts", + "grated parmesan cheese", + "greek yogurt", + "fresh basil", + "olive oil", + "lemon juice", + "pepper", + "salt", + "gemelli" + ] + }, + { + "id": 27742, + "cuisine": "greek", + "ingredients": [ + "parsley sprigs", + "salt", + "olive oil", + "chopped parsley", + "minced garlic", + "lemon juice", + "chicken legs", + "ground pepper", + "dried oregano" + ] + }, + { + "id": 7275, + "cuisine": "jamaican", + "ingredients": [ + "mayonaise", + "paprika", + "prepared mustard", + "pepper", + "salt", + "eggs", + "yellow mustard" + ] + }, + { + "id": 8335, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "salsa", + "black beans", + "chopped cilantro", + "refried beans", + "reduced-fat sour cream" + ] + }, + { + "id": 20474, + "cuisine": "spanish", + "ingredients": [ + "sea salt", + "blanched almonds", + "olive oil" + ] + }, + { + "id": 44808, + "cuisine": "mexican", + "ingredients": [ + "processed cheese", + "cream cheese", + "prepar salsa", + "ground beef" + ] + }, + { + "id": 10696, + "cuisine": "french", + "ingredients": [ + "fresh ginger", + "cumin seed", + "mustard seeds", + "cardamom seeds", + "fat", + "smoked ham hocks", + "fresh thyme leaves", + "small white beans", + "onions", + "sage leaves", + "salt", + "carrots" + ] + }, + { + "id": 14048, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "clove garlic, fine chop", + "Bertolli® Alfredo Sauce", + "fresh basil leaves", + "fettucine", + "onions", + "Bertolli® Classico Olive Oil", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 28279, + "cuisine": "cajun_creole", + "ingredients": [ + "genoa salami", + "sliced ham", + "mortadella", + "mozzarella cheese", + "olives", + "bread", + "provolone cheese" + ] + }, + { + "id": 29735, + "cuisine": "french", + "ingredients": [ + "sugar", + "grated parmesan cheese", + "hot water", + "fresh basil", + "large eggs", + "garlic cloves", + "bread flour", + "water", + "rapid rise yeast", + "cornmeal", + "olive oil", + "salt", + "fresh parsley" + ] + }, + { + "id": 6284, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "shredded lettuce", + "garlic powder", + "lean ground beef", + "tortilla chips", + "chili beans", + "flour tortillas", + "worcestershire sauce", + "plum tomatoes", + "shredded cheddar cheese", + "onion powder", + "salsa" + ] + }, + { + "id": 15828, + "cuisine": "mexican", + "ingredients": [ + "pinenuts", + "butter", + "ground cinnamon", + "granulated sugar", + "all-purpose flour", + "baking soda", + "vanilla", + "firmly packed brown sugar", + "large eggs" + ] + }, + { + "id": 614, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic", + "chipotle chile", + "cooked chicken", + "white onion", + "Mexican oregano", + "chicken broth", + "roma tomatoes", + "salt" + ] + }, + { + "id": 32877, + "cuisine": "french", + "ingredients": [ + "white wine", + "garlic", + "plum tomatoes", + "green onions", + "margarine", + "pepper", + "salt", + "mussels", + "extra-virgin olive oil", + "fresh parsley" + ] + }, + { + "id": 14622, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "pizza doughs", + "cremini mushrooms", + "grated parmesan cheese", + "all-purpose flour", + "fresh basil", + "mozzarella cheese", + "garlic", + "oil", + "pinenuts", + "red pepper flakes", + "yellow onion" + ] + }, + { + "id": 37850, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "black pepper", + "shredded mozzarella cheese", + "tomato sauce", + "purple onion", + "zucchini" + ] + }, + { + "id": 8929, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "color food green", + "almond paste", + "orange marmalade", + "all-purpose flour", + "unsalted butter", + "red food coloring", + "bittersweet chocolate" + ] + }, + { + "id": 28713, + "cuisine": "french", + "ingredients": [ + "large eggs", + "swiss cheese", + "fresh parsley", + "asparagus", + "whole milk", + "grated Gruyère cheese", + "ground black pepper", + "chopped fresh chives", + "salt", + "fresh marjoram", + "grated parmesan cheese", + "bread, cut french into loaf" + ] + }, + { + "id": 30601, + "cuisine": "indian", + "ingredients": [ + "coconut", + "oil", + "fenugreek seeds", + "jaggery", + "coriander seeds", + "dal", + "red chili peppers", + "cumin seed" + ] + }, + { + "id": 1398, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "avocado", + "garlic", + "chopped cilantro fresh", + "jalapeno chilies", + "fresh lime juice", + "tomatoes", + "purple onion", + "mango" + ] + }, + { + "id": 45964, + "cuisine": "mexican", + "ingredients": [ + "cilantro leaves", + "ground cumin", + "diced tomatoes", + "fresh lime juice", + "kosher salt", + "green chilies", + "garlic", + "onions" + ] + }, + { + "id": 43532, + "cuisine": "chinese", + "ingredients": [ + "short-grain rice", + "green onions", + "beef rib short", + "bamboo shoots", + "low sodium soy sauce", + "cooking spray", + "fat free less sodium beef broth", + "cinnamon sticks", + "water chestnuts", + "dry sherry", + "garlic cloves", + "grated orange", + "honey", + "peeled fresh ginger", + "crushed red pepper", + "shiitake mushroom caps" + ] + }, + { + "id": 33354, + "cuisine": "italian", + "ingredients": [ + "radishes", + "crème fraîche", + "smoked salmon", + "chives", + "tarragon", + "large eggs", + "cayenne pepper", + "dijon mustard", + "salt" + ] + }, + { + "id": 17414, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "flat leaf parsley", + "fresh basil", + "large garlic cloves", + "pepper", + "fresh oregano", + "tomatoes", + "chopped fresh thyme" + ] + }, + { + "id": 16530, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "shallots", + "ground coriander", + "couscous", + "pistachios", + "cilantro", + "smoked paprika", + "ground lamb", + "kosher salt", + "currant", + "feta cheese crumbles", + "allspice", + "ground cinnamon", + "dried apricot", + "garlic", + "fresh mint", + "ground cumin" + ] + }, + { + "id": 34706, + "cuisine": "italian", + "ingredients": [ + "savoy cabbage", + "kale", + "cannellini beans", + "crushed red pepper", + "plum tomatoes", + "celery ribs", + "water", + "fennel bulb", + "fine sea salt", + "onions", + "country white bread", + "dried thyme", + "yukon gold potatoes", + "garlic cloves", + "sage leaves", + "green chard", + "parmesan cheese", + "extra-virgin olive oil", + "carrots" + ] + }, + { + "id": 26637, + "cuisine": "greek", + "ingredients": [ + "fresh spinach", + "tahini", + "garlic", + "ground coriander", + "lime zest", + "whole wheat pita", + "sunflower oil", + "greek style plain yogurt", + "ground cumin", + "fresh cilantro", + "green onions", + "fine sea salt", + "fresh lime juice", + "fresh tomatoes", + "large eggs", + "crushed red pepper flakes", + "chickpeas" + ] + }, + { + "id": 48295, + "cuisine": "japanese", + "ingredients": [ + "fennel seeds", + "milk", + "all-purpose flour", + "water", + "khoa", + "clarified butter", + "sugar", + "semolina", + "ground cardamom", + "rose water", + "salt", + "saffron" + ] + }, + { + "id": 41151, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "no-salt-added black beans", + "purple onion", + "ground cumin", + "water", + "zucchini", + "extra-virgin olive oil", + "cayenne pepper", + "fresh tomatoes", + "ground black pepper", + "portabello mushroom", + "salt", + "chopped bell pepper", + "chili powder", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 6471, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "vanilla beans", + "diced red onions", + "whole milk", + "butter", + "simple syrup", + "oil", + "nutmeg", + "sugar", + "olive oil", + "chopped almonds", + "rosé wine", + "bitters", + "jam", + "fresh parsley", + "brown sugar", + "milk", + "vinegar", + "baking powder", + "lemon", + "salt", + "garlic cloves", + "ground cinnamon", + "black pepper", + "unsalted butter", + "flour", + "cinnamon", + "vanilla extract", + "all-purpose flour", + "whiskey" + ] + }, + { + "id": 28283, + "cuisine": "chinese", + "ingredients": [ + "peeled fresh ginger", + "sesame oil", + "firm tofu", + "asparagus spears", + "shiitake mushroom caps", + "mushroom caps", + "shallots", + "purple onion", + "corn starch", + "baby corn", + "mushroom soy sauce", + "fish sauce", + "dry white wine", + "large garlic cloves", + "oyster sauce", + "green beans", + "lotus roots", + "sugar", + "jicama", + "cilantro sprigs", + "carrots", + "low salt chicken broth", + "celery" + ] + }, + { + "id": 28598, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "dry white wine", + "all-purpose flour", + "fresh rosemary", + "fresh thyme", + "extra-virgin olive oil", + "soft fresh goat cheese", + "large egg yolks", + "large garlic cloves", + "grated Gruyère cheese", + "fresh basil", + "whole milk", + "salt" + ] + }, + { + "id": 36574, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "minced garlic", + "sliced almonds", + "fresh green bean", + "olive oil" + ] + }, + { + "id": 13460, + "cuisine": "vietnamese", + "ingredients": [ + "spring onions", + "roast beef", + "chili sauce", + "snow peas", + "mie", + "cashew nuts", + "oil" + ] + }, + { + "id": 39228, + "cuisine": "spanish", + "ingredients": [ + "baking potatoes", + "monterey jack", + "spanish chorizo", + "tomatoes with juice", + "ancho chile pepper" + ] + }, + { + "id": 39590, + "cuisine": "spanish", + "ingredients": [ + "unsalted butter", + "scallions", + "brandy", + "paprika", + "chorizo sausage", + "crusty bread", + "lemon wedge", + "medium shrimp", + "water", + "salt" + ] + }, + { + "id": 26461, + "cuisine": "spanish", + "ingredients": [ + "warm water", + "salt", + "semolina", + "active dry yeast", + "all purpose unbleached flour" + ] + }, + { + "id": 33927, + "cuisine": "chinese", + "ingredients": [ + "nutmeg", + "pinenuts", + "mace", + "corn oil", + "sticky rice", + "garlic cloves", + "chicken stock", + "sugar", + "shiitake", + "chinese sausage", + "cinnamon", + "freshly ground pepper", + "chestnuts", + "kosher salt", + "coriander seeds", + "shallots", + "turkey", + "clove", + "table salt", + "fresh ginger", + "unsalted butter", + "szechwan peppercorns", + "star anise" + ] + }, + { + "id": 17644, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "large eggs", + "unsalted butter", + "grits", + "sharp white cheddar cheese", + "freshly ground pepper" + ] + }, + { + "id": 1552, + "cuisine": "italian", + "ingredients": [ + "low-fat plain yogurt", + "eggplant", + "salt", + "tomato purée", + "olive oil", + "garlic", + "wheat germ", + "dried basil", + "grated parmesan cheese", + "dried oregano", + "water", + "ground black pepper", + "onions" + ] + }, + { + "id": 5364, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "chopped cilantro", + "avocado", + "orange juice", + "boneless pork shoulder", + "garlic", + "ground cumin", + "kosher salt", + "corn tortillas" + ] + }, + { + "id": 42327, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "rice wine", + "pepper flakes", + "sesame seeds", + "water", + "sesame oil", + "sugar", + "green onions" + ] + }, + { + "id": 19468, + "cuisine": "french", + "ingredients": [ + "whole milk", + "granulated sugar", + "unsalted butter", + "corn starch", + "egg yolks" + ] + }, + { + "id": 7301, + "cuisine": "french", + "ingredients": [ + "cayenne pepper", + "grated orange", + "olive oil", + "garlic cloves", + "capers", + "anchovy fillets", + "black olives", + "thyme leaves" + ] + }, + { + "id": 47411, + "cuisine": "italian", + "ingredients": [ + "water", + "lemon juice", + "tea bags", + "fresh ginger", + "honey", + "sugar", + "mint sprigs" + ] + }, + { + "id": 15007, + "cuisine": "chinese", + "ingredients": [ + "jicama", + "scallions", + "soy sauce", + "dry sherry", + "chicken thighs", + "eggs", + "vegetable oil", + "corn starch", + "flour tortillas", + "salt" + ] + }, + { + "id": 42146, + "cuisine": "russian", + "ingredients": [ + "stevia", + "sour cream", + "strawberries", + "brown sugar" + ] + }, + { + "id": 27642, + "cuisine": "indian", + "ingredients": [ + "clove", + "garam masala", + "salt", + "cinnamon sticks", + "sugar", + "peeled fresh ginger", + "cardamom pods", + "ground turmeric", + "chiles", + "bay leaves", + "yellow split peas", + "ghee", + "coconut", + "thai chile", + "cumin seed" + ] + }, + { + "id": 7678, + "cuisine": "thai", + "ingredients": [ + "water", + "ground pepper", + "red pepper flakes", + "tomatoes", + "kale", + "mushrooms", + "dried rice noodles", + "ground ginger", + "curry powder", + "zucchini", + "garlic", + "tumeric", + "yellow squash", + "baby spinach", + "chili sauce" + ] + }, + { + "id": 13394, + "cuisine": "british", + "ingredients": [ + "parsley", + "salt", + "ground nutmeg", + "paprika", + "sharp cheddar cheese", + "bread", + "butter", + "cayenne pepper", + "large eggs", + "dry mustard", + "beer" + ] + }, + { + "id": 30366, + "cuisine": "mexican", + "ingredients": [ + "black peppercorns", + "bay leaves", + "cumin seed", + "clove", + "guajillo chiles", + "large garlic cloves", + "skirt steak", + "tomatoes", + "white onion", + "chile de arbol", + "allspice", + "hot red pepper flakes", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 21026, + "cuisine": "indian", + "ingredients": [ + "butter", + "oil", + "amchur", + "salt", + "onions", + "atta", + "ginger", + "hot water", + "potatoes", + "green chilies", + "ground turmeric" + ] + }, + { + "id": 18753, + "cuisine": "italian", + "ingredients": [ + "sugar", + "active dry yeast", + "fine sea salt", + "Chianti", + "flour", + "grapes", + "extra-virgin olive oil", + "warm water", + "honey" + ] + }, + { + "id": 6526, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "orzo", + "kosher salt", + "Meyer lemon juice", + "large egg yolks", + "rotisserie chicken", + "low sodium chicken broth" + ] + }, + { + "id": 36088, + "cuisine": "greek", + "ingredients": [ + "russet potatoes", + "flat leaf parsley", + "olive oil", + "garlic cloves", + "chicken stock", + "fresh oregano", + "shallots", + "fresh lemon juice" + ] + }, + { + "id": 49276, + "cuisine": "southern_us", + "ingredients": [ + "whole wheat flour", + "chicken parts", + "buttermilk", + "cayenne pepper", + "sugar", + "unsalted butter", + "onion powder", + "salt", + "italian seasoning", + "eggs", + "garlic powder", + "baking powder", + "vanilla extract", + "corn starch", + "milk", + "flour", + "vegetable shortening", + "maple syrup" + ] + }, + { + "id": 28604, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "whole milk", + "extra-virgin olive oil", + "fettucine", + "ground veal", + "garlic cloves", + "tomatoes", + "chopped fresh thyme", + "chopped celery", + "pancetta", + "grated parmesan cheese", + "ground pork", + "onions" + ] + }, + { + "id": 22286, + "cuisine": "indian", + "ingredients": [ + "seeds", + "green chilies", + "peanuts", + "salt", + "carrots", + "curry leaves", + "green peas", + "cumin seed", + "potatoes", + "cilantro leaves", + "ghee" + ] + }, + { + "id": 7822, + "cuisine": "moroccan", + "ingredients": [ + "garlic", + "carrots", + "olive oil", + "ground allspice", + "honey", + "purple onion", + "chopped cilantro fresh", + "raisins", + "fresh lemon juice" + ] + }, + { + "id": 28524, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "chopped garlic", + "hot red pepper flakes", + "flat leaf parsley", + "fresh basil", + "linguine", + "octopuses", + "plum tomatoes" + ] + }, + { + "id": 41001, + "cuisine": "mexican", + "ingredients": [ + "lamb shanks", + "apple cider vinegar", + "garlic", + "tamales", + "guajillo chiles", + "pineapple", + "orange juice", + "fresh pineapple", + "sugar", + "vegetables", + "extra-virgin olive oil", + "canela", + "clove", + "orange", + "chile de arbol", + "cumin seed" + ] + }, + { + "id": 43952, + "cuisine": "spanish", + "ingredients": [ + "baby spinach", + "minced garlic", + "smoked paprika", + "black pepper", + "salt", + "halibut fillets", + "applewood smoked bacon" + ] + }, + { + "id": 26603, + "cuisine": "french", + "ingredients": [ + "salt", + "large eggs", + "bittersweet chocolate", + "unsalted butter", + "cognac", + "heavy cream" + ] + }, + { + "id": 48712, + "cuisine": "italian", + "ingredients": [ + "tuna steaks", + "onions", + "extra-virgin olive oil", + "loosely packed fresh basil leaves", + "plum tomatoes", + "capers", + "garlic cloves" + ] + }, + { + "id": 12640, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "thyme", + "cherry tomatoes", + "salt", + "dijon mustard", + "freshly ground pepper", + "rocket leaves", + "extra-virgin olive oil", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 23312, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "fresh cilantro", + "cayenne", + "sea salt", + "onions", + "coconut oil", + "full fat coconut milk", + "bone broth", + "cumin seed", + "ground cinnamon", + "fresh ginger", + "coriander powder", + "garlic", + "ground cumin", + "tumeric", + "garam masala", + "chicken drumsticks", + "ground cardamom" + ] + }, + { + "id": 28540, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "sesame seeds", + "ground coriander", + "turkey breast", + "ground cinnamon", + "ground cloves", + "salt", + "fat skimmed chicken broth", + "( oz.) tomato paste", + "red chili peppers", + "minced onion", + "unsweetened chocolate", + "corn tortillas", + "anise seed", + "chili", + "peanut butter", + "salad oil" + ] + }, + { + "id": 14419, + "cuisine": "italian", + "ingredients": [ + "dry red wine", + "flat leaf parsley", + "small pasta", + "purple onion", + "dried lentils", + "extra-virgin olive oil", + "pecorino romano cheese", + "sausages" + ] + }, + { + "id": 16478, + "cuisine": "thai", + "ingredients": [ + "low sodium soy sauce", + "plum sauce", + "chopped cilantro fresh", + "lime juice", + "salt", + "pepper", + "linguine", + "roast beef deli meat", + "green beans" + ] + }, + { + "id": 30602, + "cuisine": "italian", + "ingredients": [ + "garlic", + "pecorino romano cheese", + "fresh basil leaves", + "pinenuts", + "salt", + "extra-virgin olive oil" + ] + }, + { + "id": 47052, + "cuisine": "greek", + "ingredients": [ + "water", + "dry white wine", + "artichokes", + "fresh dill", + "veal", + "lemon", + "fresh lemon juice", + "ground black pepper", + "lemon wedge", + "chopped onion", + "fat free less sodium chicken broth", + "large eggs", + "sea salt", + "corn starch" + ] + }, + { + "id": 32116, + "cuisine": "british", + "ingredients": [ + "worcestershire sauce", + "baked beans", + "corned beef", + "baking potatoes", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 41497, + "cuisine": "indian", + "ingredients": [ + "sugar", + "cooking spray", + "long-grain rice", + "finely chopped onion", + "light coconut milk", + "curry powder", + "green peas", + "large shrimp", + "ground ginger", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 152, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "rice vinegar", + "onions", + "roast turkey", + "shredded lettuce", + "cucumber", + "cherry tomatoes", + "salt", + "sour cream", + "low-fat plain yogurt", + "pitas", + "garlic cloves", + "oregano" + ] + }, + { + "id": 7071, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "garlic", + "onions", + "chili powder", + "ground coriander", + "eggplant", + "salt", + "vegetable oil", + "ghee" + ] + }, + { + "id": 37721, + "cuisine": "moroccan", + "ingredients": [ + "caraway seeds", + "salt", + "smoked paprika", + "coriander seeds", + "dried chile peppers", + "olive oil", + "cumin seed", + "garlic", + "lemon juice" + ] + }, + { + "id": 28221, + "cuisine": "thai", + "ingredients": [ + "butter lettuce", + "ground pork", + "lime juice", + "garlic", + "Sriracha", + "chopped cilantro", + "fish sauce", + "vegetable oil", + "browning" + ] + }, + { + "id": 38195, + "cuisine": "southern_us", + "ingredients": [ + "crushed red pepper", + "apple cider vinegar", + "ketchup", + "brown sugar", + "salt" + ] + }, + { + "id": 23408, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "bean dip", + "jalapeno chilies", + "taco seasoning mix", + "sour cream", + "tomatoes", + "guacamole" + ] + }, + { + "id": 47319, + "cuisine": "chinese", + "ingredients": [ + "water", + "Shaoxing wine", + "toasted sesame seeds", + "dark soy sauce", + "pork ribs", + "scallions", + "light soy sauce", + "ginger", + "sugar", + "vinegar", + "oil" + ] + }, + { + "id": 33689, + "cuisine": "french", + "ingredients": [ + "vanilla ice cream", + "lemon zest", + "grated lemon zest", + "pie dough", + "fresh blueberries", + "corn starch", + "sugar", + "large eggs", + "fresh lemon juice", + "ground cinnamon", + "unsalted butter", + "salt" + ] + }, + { + "id": 36864, + "cuisine": "french", + "ingredients": [ + "butter", + "water", + "sweet rice flour", + "fine sea salt", + "large eggs" + ] + }, + { + "id": 40741, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "chopped cilantro fresh", + "lime juice", + "salt", + "avocado", + "garlic", + "green onions" + ] + }, + { + "id": 7642, + "cuisine": "french", + "ingredients": [ + "eggs", + "ground black pepper", + "bacon", + "garlic cloves", + "white pepper", + "veal", + "fresh pork fat", + "dried basil", + "pork liver", + "cognac", + "pork", + "cayenne", + "salt", + "allspice" + ] + }, + { + "id": 23633, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "jalapeno chilies", + "garlic cloves", + "ground cumin", + "skim milk", + "poblano peppers", + "ancho powder", + "rotel tomatoes", + "cheddar cheese", + "lime", + "low sodium chicken broth", + "corn starch", + "black pepper", + "minced onion", + "salt", + "canola oil" + ] + }, + { + "id": 2499, + "cuisine": "southern_us", + "ingredients": [ + "pepper sauce", + "vegetables", + "dry mustard", + "cayenne pepper", + "onions", + "chicken stock", + "honey", + "ancho powder", + "yellow onion", + "baby back ribs", + "water", + "apple cider vinegar", + "salt", + "lard", + "tomato sauce", + "unsalted butter", + "garlic", + "carrots" + ] + }, + { + "id": 39566, + "cuisine": "italian", + "ingredients": [ + "milk", + "egg roll wrappers", + "teleme", + "all-purpose flour", + "chicken thighs", + "large egg yolks", + "shallots", + "part-skim ricotta cheese", + "fat", + "chopped tomatoes", + "grated parmesan cheese", + "garlic", + "butter oil", + "fresh basil leaves", + "chicken broth", + "ground nutmeg", + "basil", + "salt", + "onions" + ] + }, + { + "id": 453, + "cuisine": "french", + "ingredients": [ + "ice water", + "all-purpose flour", + "plum tomatoes", + "unsalted butter", + "crème fraîche", + "thyme leaves", + "kosher salt", + "extra-virgin olive oil", + "freshly ground pepper", + "whole grain mustard", + "gruyere cheese", + "garlic cloves" + ] + }, + { + "id": 49355, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "roma tomatoes", + "American cheese", + "cilantro", + "cream", + "jalapeno chilies", + "jack cheese", + "olive oil", + "diced tomatoes and green chilies" + ] + }, + { + "id": 13814, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "ground black pepper", + "tuna packed in olive oil", + "celery", + "salad", + "fennel", + "mixed greens", + "flat leaf parsley", + "kosher salt", + "extra-virgin olive oil", + "fresh lemon juice", + "orange bell pepper", + "purple onion", + "tarragon" + ] + }, + { + "id": 48265, + "cuisine": "french", + "ingredients": [ + "eggs", + "sauce", + "sourdough bread", + "cooked ham", + "grated Gruyère cheese", + "melted butter", + "dijon mustard" + ] + }, + { + "id": 2065, + "cuisine": "greek", + "ingredients": [ + "large eggs", + "salt", + "dried oregano", + "plain yogurt", + "pecorino romano cheese", + "flat leaf parsley", + "zucchini", + "purple onion", + "chopped fresh mint", + "vegetable oil", + "whole wheat breadcrumbs" + ] + }, + { + "id": 44372, + "cuisine": "russian", + "ingredients": [ + "kosher salt", + "marjoram", + "tarragon", + "flat leaf parsley", + "large egg whites", + "chicken" + ] + }, + { + "id": 31227, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "vegetable oil cooking spray", + "chopped green bell pepper", + "non-fat sour cream", + "green chile", + "garlic powder", + "ground red pepper", + "ground cumin", + "tomatoes", + "tomato sauce", + "zucchini", + "baked tortilla chips", + "reduced fat sharp cheddar cheese", + "frozen whole kernel corn", + "chili powder" + ] + }, + { + "id": 9891, + "cuisine": "mexican", + "ingredients": [ + "tomatillo salsa", + "boneless skinless chicken breasts", + "chicken broth" + ] + }, + { + "id": 29356, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "scallions", + "fennel", + "serrano", + "lemon juice", + "jumbo shrimp", + "salt", + "chardonnay", + "chile pepper", + "freshly ground pepper", + "feta cheese crumbles" + ] + }, + { + "id": 28509, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "coconut water", + "fish sauce", + "oil", + "clams", + "lemongrass", + "galangal", + "chiles", + "lime leaves" + ] + }, + { + "id": 46041, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "olive oil", + "bow-tie pasta", + "summer squash", + "sun-dried tomatoes", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 20518, + "cuisine": "southern_us", + "ingredients": [ + "nutmeg", + "bourbon whiskey", + "vanilla beans", + "brandy", + "cinnamon sticks", + "clove", + "dark rum" + ] + }, + { + "id": 44851, + "cuisine": "southern_us", + "ingredients": [ + "cream", + "cinnamon", + "yeast", + "brown sugar", + "large eggs", + "all-purpose flour", + "nutmeg", + "water", + "salt", + "sugar", + "sweet potatoes", + "oil" + ] + }, + { + "id": 35255, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "hot chili", + "scallions", + "kosher salt", + "vegetable oil", + "black pepper", + "szechwan peppercorns", + "green beans", + "mustard", + "fresh ginger", + "garlic" + ] + }, + { + "id": 18047, + "cuisine": "italian", + "ingredients": [ + "salt", + "flour", + "eggs", + "russet potatoes" + ] + }, + { + "id": 39325, + "cuisine": "mexican", + "ingredients": [ + "boneless pork shoulder", + "fresh coriander", + "ear of corn", + "white vinegar", + "white onion", + "purple onion", + "fresh lime juice", + "avocado", + "jalapeno chilies", + "garlic cloves", + "tomatoes", + "vegetable oil", + "corn tortillas" + ] + }, + { + "id": 4714, + "cuisine": "spanish", + "ingredients": [ + "vanilla beans", + "heavy cream", + "sugar", + "whole milk", + "cinnamon sticks", + "orange", + "lemon", + "egg yolks", + "corn starch" + ] + }, + { + "id": 12532, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "whole milk", + "all-purpose flour", + "large eggs", + "butter", + "bittersweet chocolate", + "ground nutmeg", + "roasted pistachios", + "fresh lemon juice", + "yellow corn meal", + "cooking spray", + "salt", + "grated orange" + ] + }, + { + "id": 13128, + "cuisine": "italian", + "ingredients": [ + "capers", + "grated parmesan cheese", + "garlic cloves", + "chicken", + "marsala wine", + "mushrooms", + "onions", + "green bell pepper", + "marinara sauce", + "low salt chicken broth", + "olive oil", + "all-purpose flour", + "dried oregano" + ] + }, + { + "id": 10231, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "orange rind", + "teas" + ] + }, + { + "id": 32478, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "cooked bacon", + "elbow pasta", + "cottage cheese", + "unsalted butter", + "salt", + "shredded Monterey Jack cheese", + "cotija", + "shredded cheddar cheese", + "garlic", + "cumin", + "chipotle chile", + "whole milk", + "mustard powder" + ] + }, + { + "id": 32248, + "cuisine": "british", + "ingredients": [ + "milk", + "potatoes", + "worcestershire sauce", + "garlic cloves", + "ground black pepper", + "dry white wine", + "salt", + "celery", + "olive oil", + "beef stock", + "cheese", + "carrots", + "tomato purée", + "grated parmesan cheese", + "Tabasco Pepper Sauce", + "minced beef", + "onions" + ] + }, + { + "id": 22767, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "crushed garlic", + "salt", + "minced onion", + "stewed tomatoes", + "hot water", + "ground black pepper", + "deveined shrimp", + "all-purpose flour", + "chopped green bell pepper", + "rendered bacon fat", + "fresh parsley" + ] + }, + { + "id": 36797, + "cuisine": "italian", + "ingredients": [ + "milk", + "ground sausage", + "grated parmesan cheese", + "eggs", + "Italian seasoned breadcrumbs" + ] + }, + { + "id": 29435, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "unsalted butter", + "apple cider vinegar", + "hot sauce", + "ground black pepper", + "baking powder", + "heavy cream", + "milk", + "flour", + "buttermilk", + "cayenne", + "breakfast sausages", + "bacon" + ] + }, + { + "id": 23814, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "lemon juice", + "salt", + "bread flour", + "vegetable oil", + "white sugar", + "water", + "dry milk powder" + ] + }, + { + "id": 36519, + "cuisine": "indian", + "ingredients": [ + "sugar", + "pistachios", + "cashew nuts", + "milk", + "gram flour", + "orange", + "green cardamom", + "almonds", + "ghee" + ] + }, + { + "id": 24809, + "cuisine": "moroccan", + "ingredients": [ + "sliced almonds", + "salt", + "lemon", + "carrots", + "orange", + "orange flower water", + "powdered sugar", + "extra-virgin olive oil" + ] + }, + { + "id": 41369, + "cuisine": "vietnamese", + "ingredients": [ + "fresh lime juice", + "thai chile", + "water", + "sugar", + "soy" + ] + }, + { + "id": 26074, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "eggs", + "ditalini pasta", + "fresh asparagus", + "olive oil", + "fresh parsley", + "romano cheese", + "garlic", + "boiling water" + ] + }, + { + "id": 25601, + "cuisine": "italian", + "ingredients": [ + "garlic", + "extra-virgin olive oil" + ] + }, + { + "id": 25773, + "cuisine": "italian", + "ingredients": [ + "green bell pepper, slice", + "boneless chicken skinless thigh", + "white mushrooms", + "olive oil", + "ragu old world style sweet tomato basil pasta sauc", + "dri thyme leaves, crush", + "onions" + ] + }, + { + "id": 43854, + "cuisine": "mexican", + "ingredients": [ + "beef stock", + "ground allspice", + "oregano", + "ground cloves", + "apple cider vinegar", + "garlic cloves", + "ground cumin", + "pepper", + "salt", + "fresh lime juice", + "chuck roast", + "yellow onion", + "chipotles in adobo" + ] + }, + { + "id": 3279, + "cuisine": "southern_us", + "ingredients": [ + "low-fat plain yogurt", + "egg yolks", + "strawberries", + "mango", + "large eggs", + "whipping cream", + "key lime juice", + "sugar", + "strawberry jam", + "corn starch", + "frozen pound cake", + "milk", + "butter", + "toasted coconut" + ] + }, + { + "id": 35425, + "cuisine": "irish", + "ingredients": [ + "white wine", + "loin", + "clear honey", + "flat leaf parsley", + "Guinness Beer", + "champagne", + "muscovado sugar" + ] + }, + { + "id": 27998, + "cuisine": "greek", + "ingredients": [ + "greek seasoning", + "sauce", + "olive oil", + "flank steak", + "parsley sprigs" + ] + }, + { + "id": 30418, + "cuisine": "japanese", + "ingredients": [ + "water", + "sesame oil", + "dried shiitake mushrooms", + "Sriracha", + "ginger", + "panko breadcrumbs", + "kale", + "ramen noodles", + "scallions", + "shredded carrots", + "garlic", + "broth" + ] + }, + { + "id": 37041, + "cuisine": "italian", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "dried oregano", + "mozzarella cheese", + "large curd cottage cheese", + "pasta sauce", + "jumbo pasta shells", + "garlic powder", + "dried parsley" + ] + }, + { + "id": 1648, + "cuisine": "greek", + "ingredients": [ + "tomato paste", + "crushed red pepper", + "onions", + "olive oil", + "squid", + "dry red wine", + "fresh parsley", + "fresh basil", + "fresh oregano", + "plum tomatoes" + ] + }, + { + "id": 39446, + "cuisine": "russian", + "ingredients": [ + "water", + "dill seed", + "sugar", + "salt", + "white wine vinegar", + "seedless cucumber", + "garlic cloves" + ] + }, + { + "id": 27266, + "cuisine": "italian", + "ingredients": [ + "water", + "basil", + "penne pasta", + "oregano", + "olive oil", + "crushed red pepper", + "shrimp", + "crushed tomatoes", + "paprika", + "garlic cloves", + "chicken", + "heavy cream", + "salt", + "onions" + ] + }, + { + "id": 16511, + "cuisine": "irish", + "ingredients": [ + "baking powder", + "all-purpose flour", + "powdered sugar", + "vanilla extract", + "toasted pecans", + "salt", + "butter" + ] + }, + { + "id": 39429, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "broccoli rabe", + "parmesan cheese", + "italian sausage", + "garlic" + ] + }, + { + "id": 28179, + "cuisine": "mexican", + "ingredients": [ + "crushed red pepper", + "chili powder", + "oregano", + "beef shoulder roast", + "salt", + "garlic", + "cumin" + ] + }, + { + "id": 39298, + "cuisine": "korean", + "ingredients": [ + "ginger piece", + "salt", + "onions", + "pepper", + "napa cabbage", + "garlic cloves", + "pork belly", + "bay leaves", + "scallions", + "water", + "instant coffee", + "doenzang" + ] + }, + { + "id": 22815, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "salt", + "ground black pepper", + "rump roast", + "enchilada sauce", + "loin pork roast" + ] + }, + { + "id": 32643, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "fresh ginger", + "boneless skinless chicken breasts", + "garlic cloves", + "Mazola Corn Oil", + "large egg whites", + "baking soda", + "rice vinegar", + "sliced green onions", + "soy sauce", + "sesame seeds", + "sesame oil", + "corn starch", + "chicken stock", + "honey", + "chili paste", + "all-purpose flour" + ] + }, + { + "id": 4240, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "finely chopped onion", + "salt", + "black-eyed peas", + "cooking spray", + "long-grain rice", + "water", + "jalapeno chilies", + "canadian bacon", + "fat-free reduced-sodium chicken broth", + "hot pepper sauce", + "crushed red pepper", + "garlic cloves" + ] + }, + { + "id": 12337, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "chili powder", + "ground coriander", + "garam masala", + "sunflower oil", + "ground cumin", + "fresh ginger root", + "butter", + "mustard seeds", + "tomatoes", + "potatoes", + "ground tumeric" + ] + }, + { + "id": 48351, + "cuisine": "irish", + "ingredients": [ + "celery ribs", + "fresh oregano leaves", + "unsalted butter", + "heavy cream", + "all-purpose flour", + "mashed potatoes", + "large egg yolks", + "fresh thyme leaves", + "lamb shoulder", + "carrots", + "lamb stock", + "ground black pepper", + "russet potatoes", + "salt", + "canola oil", + "stew", + "kosher salt", + "fresh bay leaves", + "rosemary leaves", + "yellow onion" + ] + }, + { + "id": 15669, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "chicken breasts", + "yellow onion", + "ground cumin", + "coconut oil", + "fresh cilantro", + "ginger", + "coconut milk", + "pepper", + "chili powder", + "cayenne pepper", + "tomato sauce", + "garam masala", + "garlic", + "naan" + ] + }, + { + "id": 26299, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "peeled fresh ginger", + "crushed red pepper", + "fresh parmesan cheese", + "baby spinach", + "organic vegetable broth", + "olive oil", + "soya bean", + "salt", + "arborio rice", + "finely chopped onion", + "butter", + "garlic cloves" + ] + }, + { + "id": 20744, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "ginger", + "dried shrimp", + "string beans", + "Shaoxing wine", + "salt", + "chicken bouillon", + "garlic", + "sugar", + "ground pork", + "oil" + ] + }, + { + "id": 20044, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "red pepper flakes", + "short rib", + "mirin", + "dark brown sugar", + "fresh ginger", + "rice vinegar", + "garlic paste", + "sesame oil", + "scallions" + ] + }, + { + "id": 11410, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "vegetable oil", + "salt", + "green beans", + "cannellini beans", + "orzo", + "garlic cloves", + "kale", + "butternut squash", + "vegetable broth", + "carrots", + "ground black pepper", + "baking potatoes", + "chopped onion", + "dried oregano" + ] + }, + { + "id": 26915, + "cuisine": "italian", + "ingredients": [ + "chicken breast halves", + "cherry tomatoes", + "bocconcini", + "salt", + "olive oil", + "freshly ground pepper" + ] + }, + { + "id": 2985, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "raisins", + "brine-cured olives", + "balsamic vinegar", + "olive oil", + "fresh leav spinach", + "large garlic cloves" + ] + }, + { + "id": 25061, + "cuisine": "greek", + "ingredients": [ + "dry white wine", + "extra-virgin olive oil", + "elbow macaroni", + "salt and ground black pepper", + "lemon", + "garlic", + "onions", + "bay leaves", + "basil dried leaves", + "squid", + "dried oregano", + "crushed tomatoes", + "red wine vinegar", + "cheese", + "cinnamon sticks" + ] + }, + { + "id": 23834, + "cuisine": "italian", + "ingredients": [ + "flour tortillas", + "extra-virgin olive oil", + "onions", + "eggplant", + "balsamic vinegar", + "salt", + "green bell pepper", + "cannellini beans", + "crushed red pepper", + "italian seasoning", + "part-skim mozzarella cheese", + "diced tomatoes", + "red bell pepper" + ] + }, + { + "id": 10978, + "cuisine": "french", + "ingredients": [ + "sliced almonds", + "granulated sugar", + "vanilla", + "confectioners sugar", + "large egg yolks", + "whole milk", + "all-purpose flour", + "hazelnuts", + "unsalted butter", + "heavy cream", + "corn starch", + "water", + "large eggs", + "salt" + ] + }, + { + "id": 11156, + "cuisine": "indian", + "ingredients": [ + "spinach leaves", + "curry powder", + "chicken breasts", + "ginger", + "natural low-fat yogurt", + "fresh coriander", + "flour", + "clove garlic, fine chop", + "basmati rice", + "Flora Original", + "coriander seeds", + "Knorr Chicken Stock Cubes", + "onions", + "tumeric", + "olive oil", + "mango chutney", + "chickpeas" + ] + }, + { + "id": 21029, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "green onions", + "KRAFT Shredded Cheddar Cheese", + "Breakstone’s Sour Cream", + "refried beans", + "chili powder", + "sliced black olives", + "ground cumin" + ] + }, + { + "id": 12843, + "cuisine": "mexican", + "ingredients": [ + "oat bran", + "salt", + "baking powder", + "boiling water", + "all-purpose flour" + ] + }, + { + "id": 11384, + "cuisine": "thai", + "ingredients": [ + "dry sherry", + "lemon juice", + "cayenne pepper", + "light corn syrup", + "hot water", + "soy sauce", + "peanut butter" + ] + }, + { + "id": 9196, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "onions", + "chicken breast tenders", + "chili powder", + "corn tortillas", + "green bell pepper", + "cooking spray", + "red bell pepper", + "ground cumin", + "cherry tomatoes", + "romaine lettuce leaves", + "fresh lime juice" + ] + }, + { + "id": 17707, + "cuisine": "filipino", + "ingredients": [ + "bay leaves", + "onions", + "pork belly", + "sea salt", + "whole peppercorn", + "vegetable oil", + "water", + "garlic" + ] + }, + { + "id": 33238, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "garlic powder", + "red pepper flakes", + "cream cheese", + "fresh cilantro", + "jalapeno chilies", + "yellow corn", + "shredded cheddar cheese", + "ground black pepper", + "diced tomatoes", + "scallions", + "lime", + "chili powder", + "salt" + ] + }, + { + "id": 27101, + "cuisine": "french", + "ingredients": [ + "phyllo dough", + "yellow squash", + "zucchini", + "goat cheese", + "peeled tomatoes", + "eggplant", + "dry mustard", + "red bell pepper", + "pepper", + "olive oil", + "fresh thyme", + "garlic cloves", + "fresh basil", + "salad greens", + "finely chopped onion", + "salt", + "olive oil flavored cooking spray" + ] + }, + { + "id": 40452, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "scallions", + "watercress", + "chicken", + "soy sauce", + "red bell pepper", + "hot chili sauce" + ] + }, + { + "id": 46795, + "cuisine": "irish", + "ingredients": [ + "cooking spray", + "1% low-fat milk", + "reduced fat cheddar cheese", + "baking powder", + "all-purpose flour", + "large eggs", + "butter", + "rubbed sage", + "yellow corn meal", + "ground red pepper", + "salt" + ] + }, + { + "id": 42637, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "chopped onion", + "cajun style stewed tomatoes", + "crushed red pepper", + "shrimp", + "garlic", + "long-grain rice", + "vegetable oil cooking spray", + "green pepper" + ] + }, + { + "id": 19030, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "red pepper", + "cumin seed", + "chicken", + "vegetable shortening", + "meat tenderizer", + "ghee", + "fresh ginger root", + "paprika", + "ground cardamom", + "vegetable oil", + "garlic", + "lemon juice" + ] + }, + { + "id": 11092, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "green onions", + "ground cumin", + "tomatoes", + "garlic powder", + "shredded Monterey Jack cheese", + "taco seasoning mix", + "sour cream", + "refried beans", + "salsa" + ] + }, + { + "id": 9690, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "smoked sausage", + "dri leav thyme", + "tomato sauce", + "beef bouillon granules", + "salt", + "long-grain rice", + "parsley flakes", + "boneless chicken breast", + "jambalaya mix", + "oil", + "water", + "diced tomatoes", + "cayenne pepper", + "dried minced onion" + ] + }, + { + "id": 15034, + "cuisine": "jamaican", + "ingredients": [ + "lemon", + "garlic cloves", + "spinach", + "green pepper", + "onions", + "salt", + "coconut milk", + "hot pepper", + "okra" + ] + }, + { + "id": 749, + "cuisine": "spanish", + "ingredients": [ + "bread crumb fresh", + "leeks", + "kalamata", + "carrots", + "fresh rosemary", + "dijon mustard", + "shallots", + "garlic cloves", + "water", + "bay leaves", + "dry red wine", + "onions", + "tomatoes", + "olive oil", + "lamb neck", + "rack of lamb" + ] + }, + { + "id": 43944, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "lime juice", + "flour", + "heirloom tomatoes", + "smoked paprika", + "chipotles in adobo", + "ground cumin", + "mayonaise", + "milk", + "baking powder", + "salt", + "sweet yellow corn", + "dried oregano", + "burger buns", + "fresh cilantro", + "green onions", + "garlic", + "ground turkey", + "panko breadcrumbs", + "avocado", + "cotija", + "jalapeno chilies", + "chili powder", + "sharp cheddar cheese", + "smoked gouda", + "canola oil" + ] + }, + { + "id": 45312, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "scallions", + "brown sugar", + "ground thyme", + "garlic cloves", + "soy sauce", + "salt", + "nutmeg", + "cinnamon", + "allspice berries" + ] + }, + { + "id": 12938, + "cuisine": "russian", + "ingredients": [ + "mustard", + "green onions", + "sour cream", + "water", + "sausages", + "eggs", + "dill", + "potatoes", + "cucumber" + ] + }, + { + "id": 2775, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "water", + "dry white wine", + "garlic cloves", + "onions", + "fresh basil", + "mascarpone", + "salt", + "flat leaf parsley", + "arborio rice", + "fresh parmesan cheese", + "butter", + "carrots", + "saffron threads", + "black pepper", + "leeks", + "grated lemon zest", + "thyme sprigs" + ] + }, + { + "id": 42883, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "red bell pepper", + "italian sausage", + "yellow onion", + "bread", + "vegetable oil", + "fontina cheese", + "freshly ground pepper" + ] + }, + { + "id": 16377, + "cuisine": "mexican", + "ingredients": [ + "frozen whole kernel corn", + "chicken", + "shredded cheddar cheese", + "sour cream", + "black beans", + "fatfre cream of chicken soup", + "refrigerated piecrusts", + "Pace Chunky Salsa" + ] + }, + { + "id": 7901, + "cuisine": "jamaican", + "ingredients": [ + "vegetable oil", + "cold water", + "salt", + "butter", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 13733, + "cuisine": "italian", + "ingredients": [ + "shallots", + "salt", + "pinenuts", + "whipping cream", + "oil", + "romano cheese", + "bacon slices", + "freshly ground pepper", + "olive oil", + "linguine", + "flat leaf parsley" + ] + }, + { + "id": 16096, + "cuisine": "jamaican", + "ingredients": [ + "curry powder", + "garlic", + "onions", + "cooking oil", + "salt", + "boiling water", + "black pepper", + "potatoes", + "tomato ketchup", + "pepper", + "meat", + "thyme" + ] + }, + { + "id": 18275, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "chicken breasts", + "creamy peanut butter", + "brown sugar", + "quinoa", + "edamame", + "carrots", + "ground ginger", + "peanuts", + "rice vinegar", + "garlic cloves", + "sweet chili sauce", + "green onions", + "canned coconut milk", + "chopped cilantro" + ] + }, + { + "id": 46426, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "salt", + "eggs", + "boneless skinless chicken breasts", + "panko breadcrumbs", + "grated parmesan cheese", + "all-purpose flour", + "pepper", + "paprika" + ] + }, + { + "id": 23822, + "cuisine": "italian", + "ingredients": [ + "cognac", + "unsweetened cocoa powder", + "melted butter", + "confectioners sugar", + "raisins", + "sweetened condensed milk", + "biscuits", + "blanched almonds" + ] + }, + { + "id": 2887, + "cuisine": "indian", + "ingredients": [ + "chili flakes", + "red bell pepper", + "white wine vinegar", + "salt", + "sugar", + "onions" + ] + }, + { + "id": 16378, + "cuisine": "french", + "ingredients": [ + "haricots verts", + "walnuts", + "roquefort cheese", + "vinaigrette", + "red potato" + ] + }, + { + "id": 12214, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh herbs", + "large garlic cloves", + "penne", + "goat cheese", + "zucchini" + ] + }, + { + "id": 13663, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "spring onions", + "sunflower oil", + "toasted sesame oil", + "ground black pepper", + "szechwan peppercorns", + "salt", + "fresh ginger", + "bean paste", + "garlic", + "chili flakes", + "mushrooms", + "balsamic vinegar", + "firm tofu" + ] + }, + { + "id": 4454, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "leeks", + "arborio rice", + "olive oil", + "lemon wedge", + "fat free less sodium chicken broth", + "dry white wine", + "beet greens", + "fresh parmesan cheese" + ] + }, + { + "id": 28183, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "eggs", + "chopped pecans", + "butter pecan cake mix", + "frosting", + "water" + ] + }, + { + "id": 11615, + "cuisine": "chinese", + "ingredients": [ + "spring onions", + "garlic cloves", + "fresh ginger root", + "chinese five-spice powder", + "light soy sauce", + "rice wine", + "chicken thighs", + "clear honey", + "oil" + ] + }, + { + "id": 22780, + "cuisine": "greek", + "ingredients": [ + "fronds", + "dry white wine", + "mixed greens", + "chopped garlic", + "olive oil", + "shank half", + "feta cheese crumbles", + "fresh dill", + "fennel bulb", + "scallions", + "dried oregano", + "fennel seeds", + "ground black pepper", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 17566, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "whole milk", + "sugar", + "sweetened condensed milk", + "egg yolks", + "slivered almonds", + "Mexican vanilla extract" + ] + }, + { + "id": 33069, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "hot red pepper flakes", + "garlic cloves", + "anchovy fillets", + "olive oil", + "escarole" + ] + }, + { + "id": 24003, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "flank steak", + "baking soda", + "vegetable oil", + "water", + "marinade", + "sugar", + "broccoli florets", + "corn starch" + ] + }, + { + "id": 24589, + "cuisine": "italian", + "ingredients": [ + "vodka", + "reduced fat milk", + "basil", + "pasta", + "fresh parmesan cheese", + "ground red pepper", + "all-purpose flour", + "tomato sauce", + "finely chopped onion", + "butter", + "garlic cloves", + "water", + "half & half", + "salt" + ] + }, + { + "id": 2590, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "dried thyme", + "balsamic vinegar", + "hamburger", + "tomato paste", + "crushed tomatoes", + "beef stock", + "diced tomatoes", + "onions", + "kosher salt", + "olive oil", + "red pepper", + "fresh mushrooms", + "brown sugar", + "dried basil", + "bay leaves", + "garlic", + "dried oregano" + ] + }, + { + "id": 34084, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed light brown sugar", + "cracked black pepper", + "tea bags", + "sweet onion", + "garlic cloves", + "ice cubes", + "kosher salt", + "whole chicken", + "rosemary sprigs", + "lemon" + ] + }, + { + "id": 3093, + "cuisine": "filipino", + "ingredients": [ + "condensed milk", + "crushed ice", + "berries", + "small pearl tapioca", + "coconut milk" + ] + }, + { + "id": 27628, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cooking spray", + "lemon rind", + "unflavored gelatin", + "light pancake syrup", + "1% low-fat milk", + "vanilla beans", + "mint sprigs", + "raspberries", + "red currant jelly", + "corn starch" + ] + }, + { + "id": 47646, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "marinara sauce", + "fresh mushrooms", + "large eggs", + "garlic", + "olive oil", + "ziti", + "shredded mozzarella cheese", + "pasta", + "grated parmesan cheese", + "ricotta" + ] + }, + { + "id": 20412, + "cuisine": "filipino", + "ingredients": [ + "black peppercorns", + "vegetable oil", + "chicken legs", + "bay leaves", + "cooked rice", + "garlic cloves", + "white vinegar", + "soy sauce" + ] + }, + { + "id": 2557, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "dried chile peppers", + "onions", + "Madeira", + "salt", + "shrimp", + "celery ribs", + "butter", + "carrots", + "broth", + "andouille sausage", + "okra", + "red bell pepper" + ] + }, + { + "id": 22549, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "diced tomatoes", + "green chile", + "chili powder", + "ground cumin", + "green onions", + "whole kernel corn, drain", + "minced garlic", + "stewed tomatoes" + ] + }, + { + "id": 10757, + "cuisine": "thai", + "ingredients": [ + "black pepper", + "rice sticks", + "salt", + "garlic cloves", + "low sodium soy sauce", + "dry roasted peanuts", + "cooking spray", + "red curry paste", + "fresh lime juice", + "brown sugar", + "water", + "ground red pepper", + "chopped onion", + "reduced fat firm tofu", + "cider vinegar", + "large eggs", + "broccoli", + "carrots" + ] + }, + { + "id": 1193, + "cuisine": "indian", + "ingredients": [ + "half & half", + "unsalted shelled pistachio", + "cardamom seeds", + "sugar", + "blanched almonds", + "whole milk ricotta cheese" + ] + }, + { + "id": 41110, + "cuisine": "chinese", + "ingredients": [ + "back bacon", + "garlic", + "dark soy sauce", + "vegetable oil", + "chicken legs", + "water", + "oyster sauce", + "soy sauce", + "white rice" + ] + }, + { + "id": 28491, + "cuisine": "french", + "ingredients": [ + "frozen pastry puff sheets", + "brie cheese", + "sliced almonds" + ] + }, + { + "id": 11966, + "cuisine": "southern_us", + "ingredients": [ + "harissa", + "all-purpose flour", + "carrots", + "eggs", + "buttermilk", + "scallions", + "canned corn", + "yellow corn meal", + "olive oil mayonnaise", + "frozen corn", + "frozen peas", + "baking soda", + "salt", + "oil" + ] + }, + { + "id": 11224, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "sugar", + "coconut cream", + "kosher salt" + ] + }, + { + "id": 41533, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "red wine vinegar", + "fresh parsley", + "fontina cheese", + "cooking oil", + "salt", + "dried oregano", + "ground black pepper", + "red wine", + "onions", + "perciatelli", + "grated parmesan cheese", + "ground beef" + ] + }, + { + "id": 30332, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "ground cumin", + "poultry seasoning", + "grated parmesan cheese", + "italian seasoning" + ] + }, + { + "id": 684, + "cuisine": "mexican", + "ingredients": [ + "cooked turkey", + "enchilada sauce", + "plum tomatoes", + "vegetable oil", + "corn tortillas", + "chipotle chile", + "grated jack cheese", + "chopped cilantro fresh", + "finely chopped onion", + "sour cream" + ] + }, + { + "id": 74, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "oyster sauce", + "flank steak", + "scallions", + "napa cabbage leaves", + "rice vinegar", + "corn starch", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 6834, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "corn tortillas", + "chili", + "pumpkin seeds", + "water", + "fresh oregano", + "plum tomatoes", + "hard-boiled egg", + "low salt chicken broth" + ] + }, + { + "id": 15010, + "cuisine": "southern_us", + "ingredients": [ + "cream of chicken soup", + "poultry seasoning", + "biscuits", + "chopped celery", + "frozen mixed thawed vegetables,", + "boneless chicken breast halves", + "chicken gravy", + "black pepper", + "chopped onion", + "thyme" + ] + }, + { + "id": 35080, + "cuisine": "southern_us", + "ingredients": [ + "large egg whites", + "vanilla extract", + "applesauce", + "ground cinnamon", + "cooking spray", + "all-purpose flour", + "large egg yolks", + "salt", + "brown sugar", + "sweet potatoes", + "margarine" + ] + }, + { + "id": 13351, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "Tabasco Pepper Sauce", + "spanish chorizo", + "ham", + "turnips", + "kale", + "salt", + "yellow onion", + "green cabbage", + "potatoes", + "white beans", + "garlic cloves", + "water", + "worcestershire sauce", + "salt pork", + "chicken thighs" + ] + }, + { + "id": 44591, + "cuisine": "moroccan", + "ingredients": [ + "tomato purée", + "salt", + "flat leaf parsley", + "onions", + "ginger", + "cumin seed", + "harissa sauce", + "plain yogurt", + "freshly ground pepper", + "phyllo pastry", + "chopped fresh mint", + "ground cinnamon", + "extra-virgin olive oil", + "garlic cloves", + "ground beef" + ] + }, + { + "id": 4303, + "cuisine": "mexican", + "ingredients": [ + "fresh ginger", + "sugar", + "hibiscus flowers" + ] + }, + { + "id": 18090, + "cuisine": "thai", + "ingredients": [ + "light brown sugar", + "water", + "jalapeno chilies", + "chopped onion", + "red bell pepper", + "molasses", + "extra firm tofu", + "cayenne pepper", + "peanut oil", + "tomatoes", + "fresh cilantro", + "brown rice", + "creamy peanut butter", + "fresh mint", + "soy sauce", + "Sriracha", + "garlic", + "roasted peanuts", + "fresh lime juice" + ] + }, + { + "id": 49440, + "cuisine": "thai", + "ingredients": [ + "olive oil", + "ground cumin", + "soy sauce", + "ginger", + "red chili peppers", + "prawns", + "lemongrass", + "garlic cloves" + ] + }, + { + "id": 7816, + "cuisine": "french", + "ingredients": [ + "olive oil", + "thyme leaves", + "dried lavender", + "lemon zest", + "chicken", + "honey", + "salt" + ] + }, + { + "id": 47887, + "cuisine": "french", + "ingredients": [ + "grated parmesan cheese", + "grated Gruyère cheese", + "chicken broth", + "butter", + "chopped parsley", + "ground black pepper", + "salt", + "onions", + "dry white wine", + "croutons" + ] + }, + { + "id": 19735, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "flank steak", + "cayenne pepper", + "flour tortillas", + "vegetable oil", + "fresh lime juice", + "avocado", + "jalapeno chilies", + "yellow bell pepper", + "onions", + "kosher salt", + "Mexican oregano", + "garlic cloves" + ] + }, + { + "id": 8864, + "cuisine": "southern_us", + "ingredients": [ + "bouillon", + "zucchini", + "sliced carrots", + "onions", + "pepper", + "cooking spray", + "garlic cloves", + "dried tarragon leaves", + "broccoli florets", + "salt", + "dried rosemary", + "parsley flakes", + "water", + "mushrooms", + "corn starch" + ] + }, + { + "id": 10973, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "ginger", + "chicken", + "tomato paste", + "garam masala", + "nonfat yogurt plain", + "black pepper", + "heavy cream", + "garlic cloves", + "white vinegar", + "hungarian paprika", + "salt", + "ground cumin" + ] + }, + { + "id": 19052, + "cuisine": "italian", + "ingredients": [ + "bread rolls", + "pecorino romano cheese", + "butter", + "italian seasoning" + ] + }, + { + "id": 42880, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "vegetable oil", + "long grain white rice", + "water", + "onions", + "green bell pepper", + "stewed tomatoes" + ] + }, + { + "id": 1839, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "greek yogurt", + "dill", + "salt", + "cucumber" + ] + }, + { + "id": 35399, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "peaches", + "chopped cilantro fresh", + "olive oil", + "salt", + "fresh ginger", + "fresh lemon juice", + "sweet onion", + "jalapeno chilies" + ] + }, + { + "id": 11264, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "cooking spray", + "spaghetti", + "kosher salt", + "extra-virgin olive oil", + "grape tomatoes", + "chicken breast halves", + "dried oregano", + "pepper", + "garlic" + ] + }, + { + "id": 40263, + "cuisine": "irish", + "ingredients": [ + "heavy cream", + "sugar", + "beer", + "bittersweet chocolate chips" + ] + }, + { + "id": 42284, + "cuisine": "italian", + "ingredients": [ + "whole milk yoghurt", + "salt", + "eggs", + "lemon", + "chopped fresh mint", + "chopped fresh thyme", + "scallions", + "parmesan cheese", + "linguine" + ] + }, + { + "id": 37761, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "cooking oil", + "cabbage", + "slivered almonds", + "granulated sugar", + "salt", + "seasoning", + "sesame seeds", + "green onions", + "chicken", + "cider vinegar", + "reduced sodium soy sauce", + "oil" + ] + }, + { + "id": 6166, + "cuisine": "indian", + "ingredients": [ + "honey", + "garlic cloves", + "strong white bread flour", + "vegetable oil", + "yoghurt", + "yeast", + "water", + "salt" + ] + }, + { + "id": 16884, + "cuisine": "mexican", + "ingredients": [ + "crema", + "parmigiano reggiano cheese", + "queso anejo", + "lime", + "ear of corn", + "sea salt", + "ground chile" + ] + }, + { + "id": 36292, + "cuisine": "southern_us", + "ingredients": [ + "Velveeta", + "salt", + "milk", + "elbow macaroni", + "pepper", + "all-purpose flour", + "cheddar cheese", + "butter", + "monterey jack" + ] + }, + { + "id": 16709, + "cuisine": "japanese", + "ingredients": [ + "rice", + "canola oil", + "egg yolks", + "corn starch", + "baking soda", + "squid", + "salt", + "ice" + ] + }, + { + "id": 41512, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "finely chopped onion", + "garlic cloves", + "scallion greens", + "unsalted butter", + "salt", + "medium shrimp", + "cayenne", + "fish stock", + "juice", + "tomatoes", + "chopped green bell pepper", + "all-purpose flour", + "long grain white rice" + ] + }, + { + "id": 9776, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "cilantro", + "coconut milk", + "instant rice", + "olive oil", + "white wine vinegar", + "water", + "crushed red pepper flakes", + "chicken bouillon", + "black-eyed peas", + "salt" + ] + }, + { + "id": 25000, + "cuisine": "spanish", + "ingredients": [ + "orange bell pepper", + "red wine vinegar", + "purple onion", + "kosher salt", + "hot pepper sauce", + "worcestershire sauce", + "chopped cilantro fresh", + "tomatoes", + "ground black pepper", + "lemon", + "cucumber", + "lime", + "balsamic vinegar", + "extra-virgin olive oil" + ] + }, + { + "id": 22665, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "tortilla chips", + "chopped green chilies", + "onions", + "milk", + "garlic cloves", + "butter", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 15222, + "cuisine": "italian", + "ingredients": [ + "finely chopped onion", + "garlic cloves", + "angel hair", + "worcestershire sauce", + "shrimp", + "butter", + "fresh lemon juice", + "romano cheese", + "herb seasoning", + "fresh parsley" + ] + }, + { + "id": 16402, + "cuisine": "spanish", + "ingredients": [ + "atlantic cod fillets", + "olive oil", + "large garlic cloves", + "thyme", + "black pepper", + "shallots", + "salt", + "flat leaf parsley", + "lower sodium chicken broth", + "dry white wine", + "crushed red pepper", + "smoked paprika", + "sliced almonds", + "brown rice", + "fresh lemon juice", + "plum tomatoes" + ] + }, + { + "id": 24487, + "cuisine": "southern_us", + "ingredients": [ + "vegetable shortening", + "cayenne pepper", + "romano cheese", + "salt", + "baking powder", + "all-purpose flour", + "sugar", + "buttermilk", + "sharp cheddar cheese" + ] + }, + { + "id": 8343, + "cuisine": "chinese", + "ingredients": [ + "cabbage leaves", + "soy sauce", + "sesame oil", + "chinese black vinegar", + "chinese rice wine", + "pork chops", + "all-purpose flour", + "boiling water", + "chicken wings", + "water", + "star anise", + "pork shoulder", + "sugar", + "peeled fresh ginger", + "scallions" + ] + }, + { + "id": 39513, + "cuisine": "italian", + "ingredients": [ + "butter", + "boneless skinless chicken breast halves", + "sage leaves", + "chopped fresh sage", + "all-purpose flour", + "marsala wine", + "low salt chicken broth" + ] + }, + { + "id": 41389, + "cuisine": "irish", + "ingredients": [ + "water", + "ground red pepper", + "all-purpose flour", + "oats", + "finely chopped onion", + "butter", + "fresh parmesan cheese", + "baking powder", + "egg substitute", + "cooking spray", + "salt" + ] + }, + { + "id": 45387, + "cuisine": "british", + "ingredients": [ + "powdered sugar", + "unsalted butter", + "salt", + "orange zest", + "ground cinnamon", + "sultana", + "dried apricot", + "free-range eggs", + "brown sugar", + "instant yeast", + "apricot jam", + "strong white bread flour", + "milk", + "vegetable oil", + "dried cranberries" + ] + }, + { + "id": 17944, + "cuisine": "british", + "ingredients": [ + "crusty bread", + "leaves", + "hard-boiled egg", + "chutney", + "celery ribs", + "figs", + "unsalted butter", + "apples", + "cheddar cheese", + "ground black pepper", + "extra large eggs", + "virginia ham", + "kosher salt", + "radishes", + "baby carrots" + ] + }, + { + "id": 27930, + "cuisine": "mexican", + "ingredients": [ + "salt", + "pork loin", + "pork butt", + "water", + "lard", + "garlic" + ] + }, + { + "id": 25468, + "cuisine": "italian", + "ingredients": [ + "white pepper", + "leeks", + "lemon juice", + "arborio rice", + "olive oil", + "dry white wine", + "celery", + "water", + "butternut squash", + "low salt chicken broth", + "fresh sage", + "fresh parmesan cheese", + "salt" + ] + }, + { + "id": 35144, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "coriander seeds", + "kasuri methi", + "dried red chile peppers", + "tumeric", + "coriander powder", + "cumin seed", + "onions", + "tomatoes", + "garam masala", + "garlic", + "chopped cilantro", + "water", + "mushrooms", + "oil", + "ground cumin" + ] + }, + { + "id": 35458, + "cuisine": "russian", + "ingredients": [ + "eggs", + "active dry yeast", + "raisins", + "powdered sugar", + "flour", + "sprinkles", + "sugar", + "egg yolks", + "vanilla", + "milk", + "butter", + "salt" + ] + }, + { + "id": 10569, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "fresh cilantro", + "napa cabbage", + "chinese five-spice powder", + "beansprouts", + "white pepper", + "rice wine", + "garlic", + "shrimp", + "soy sauce", + "pork loin", + "rice vermicelli", + "carrots", + "onions", + "chinese black mushrooms", + "vegetable oil", + "salt", + "corn starch" + ] + }, + { + "id": 25789, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "fresh ginger", + "soy sauce", + "garlic cloves", + "baby bok choy", + "peanut oil", + "sugar", + "sesame oil" + ] + }, + { + "id": 7914, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "peanut oil", + "japanese eggplants", + "Shaoxing wine", + "chili bean paste", + "corn starch", + "sugar", + "ground pork", + "green chilies", + "black vinegar", + "low sodium chicken broth", + "garlic", + "scallions" + ] + }, + { + "id": 39028, + "cuisine": "british", + "ingredients": [ + "chicken broth", + "potatoes", + "garlic", + "sweet onion", + "ground thyme", + "puff pastry", + "eggs", + "chicken breasts", + "corn starch", + "rutabaga", + "ground black pepper", + "sea salt" + ] + }, + { + "id": 32349, + "cuisine": "indian", + "ingredients": [ + "bread", + "peeled fresh ginger", + "orange juice", + "sliced green onions", + "curry powder", + "cashew chop unsalt", + "fresh parsley", + "dried apricot", + "watercress", + "grated orange", + "seedless green grape", + "boneless skinless chicken breasts", + "reduced fat mayonnaise" + ] + }, + { + "id": 9560, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "chili powder", + "walnuts", + "ground cumin", + "water", + "purple onion", + "fresh lime juice", + "tomatoes", + "fine sea salt", + "fresh lemon juice", + "macadamia nuts", + "cayenne pepper", + "cumin" + ] + }, + { + "id": 21727, + "cuisine": "vietnamese", + "ingredients": [ + "beef bones", + "oxtails", + "water" + ] + }, + { + "id": 47134, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "broccoli", + "dried oregano", + "ricotta cheese", + "shredded mozzarella cheese", + "salt and ground black pepper", + "butter", + "sliced mushrooms", + "boneless skinless chicken breasts", + "baked pizza crust" + ] + }, + { + "id": 38172, + "cuisine": "italian", + "ingredients": [ + "eggs", + "fresh peas", + "heavy cream", + "prosciutto", + "yukon gold potatoes", + "water", + "flour", + "salt", + "ground black pepper", + "butter" + ] + }, + { + "id": 47976, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "large eggs", + "garlic", + "dried oregano", + "honey", + "vegetable oil", + "cayenne pepper", + "dried thyme", + "boneless skinless chicken breasts", + "all-purpose flour", + "soy sauce", + "ground black pepper", + "paprika", + "corn starch" + ] + }, + { + "id": 49042, + "cuisine": "korean", + "ingredients": [ + "sesame", + "sesame oil", + "scallions", + "noodles", + "sugar", + "salt", + "carrots", + "spinach", + "garlic", + "oil", + "soy sauce", + "dried shiitake mushrooms", + "onions" + ] + }, + { + "id": 12528, + "cuisine": "brazilian", + "ingredients": [ + "seeds", + "nuts", + "fruit", + "açai powder", + "unsweetened shredded dried coconut", + "granola", + "bananas", + "coconut water" + ] + }, + { + "id": 31236, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "green onions", + "canned coconut milk", + "salmon fillets", + "garlic", + "sour cream", + "cooked rice", + "paprika", + "butter oil", + "pepper", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 26334, + "cuisine": "southern_us", + "ingredients": [ + "tea bags", + "baking soda", + "water", + "liquor", + "vodka", + "granulated sugar", + "mint", + "orange" + ] + }, + { + "id": 18198, + "cuisine": "indian", + "ingredients": [ + "chicken stock", + "garam masala", + "garlic", + "chillies", + "chicken", + "brown sugar", + "meat", + "ground coriander", + "onions", + "ground cumin", + "tomatoes", + "potatoes", + "leg quarters", + "ghee", + "allspice", + "vegetables", + "ginger", + "juice", + "coriander" + ] + }, + { + "id": 48701, + "cuisine": "mexican", + "ingredients": [ + "roma tomatoes", + "purple onion", + "cilantro", + "jalapeno chilies", + "salt", + "lime", + "cracked black pepper" + ] + }, + { + "id": 30640, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "tomato sauce", + "shredded cheddar cheese", + "salt", + "garlic cloves", + "dried oregano", + "parsley flakes", + "cottage cheese", + "part-skim mozzarella cheese", + "sauce", + "dried minced onion", + "ground cinnamon", + "sugar", + "dried basil", + "jumbo pasta shells", + "frozen chopped spinach, thawed and squeezed dry", + "eggs", + "pepper", + "grated parmesan cheese", + "cream cheese", + "onions" + ] + }, + { + "id": 21372, + "cuisine": "mexican", + "ingredients": [ + "lime", + "chopped cilantro", + "avocado", + "purple onion", + "extra-virgin olive oil", + "tomatoes", + "salt" + ] + }, + { + "id": 13323, + "cuisine": "filipino", + "ingredients": [ + "black peppercorns", + "lime juice", + "chicken breasts", + "cilantro leaves", + "ketchup", + "Sriracha", + "red pepper flakes", + "bay leaf", + "fish sauce", + "honey", + "apple cider vinegar", + "garlic cloves", + "white vinegar", + "water", + "wheat free soy sauce", + "anise", + "chopped cilantro" + ] + }, + { + "id": 23672, + "cuisine": "mexican", + "ingredients": [ + "silver tequila", + "kosher salt", + "lemon-lime soda", + "ice cubes", + "triple sec", + "lime juice" + ] + }, + { + "id": 34340, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "cinnamon", + "chopped cilantro fresh", + "pork tenderloin", + "sweet paprika", + "ground cumin", + "shredded carrots", + "salt", + "liquid honey", + "pepper", + "green onions", + "lemon juice" + ] + }, + { + "id": 14257, + "cuisine": "italian", + "ingredients": [ + "pitted olives", + "roasted red peppers", + "french baguette", + "chopped celery" + ] + }, + { + "id": 14858, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "grated parmesan cheese", + "frozen bread dough", + "ripe olives", + "pepper", + "pizza sauce", + "provolone cheese", + "plum tomatoes", + "olive oil", + "salami", + "sliced ham", + "sliced green onions", + "mozzarella cheese", + "artichok heart marin", + "red pepper", + "onions" + ] + }, + { + "id": 42487, + "cuisine": "french", + "ingredients": [ + "granulated sugar", + "bartlett pears", + "large egg yolks", + "dessert wine", + "light brown sugar", + "raisins", + "lemon zest", + "orange zest" + ] + }, + { + "id": 19728, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "broccoli", + "coarse salt", + "broth", + "grated parmesan cheese", + "fresh lemon juice", + "ditalini" + ] + }, + { + "id": 44554, + "cuisine": "british", + "ingredients": [ + "milk", + "eggs", + "salt", + "medium eggs", + "flour", + "cream", + "sausages" + ] + }, + { + "id": 34619, + "cuisine": "mexican", + "ingredients": [ + "onions", + "kosher salt", + "dried black beans", + "canola oil", + "garlic" + ] + }, + { + "id": 9844, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "garlic salt", + "salsa", + "butter", + "ground cumin", + "long-grain rice" + ] + }, + { + "id": 15629, + "cuisine": "indian", + "ingredients": [ + "minced onion", + "vegetable broth", + "fresh lime juice", + "sugar", + "vegetable oil", + "cumin seed", + "water", + "cilantro sprigs", + "garlic cloves", + "red lentils", + "ground red pepper", + "salt", + "ground turmeric" + ] + }, + { + "id": 47536, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "pinto beans", + "chili powder", + "olive oil", + "ground cumin", + "tomatoes", + "salt" + ] + }, + { + "id": 1710, + "cuisine": "french", + "ingredients": [ + "sugar", + "puff pastry" + ] + }, + { + "id": 49151, + "cuisine": "italian", + "ingredients": [ + "eggs", + "orange", + "butter", + "sugar", + "baking powder", + "vanilla", + "slivered almonds", + "red raspberries", + "all purpose unbleached flour", + "water", + "almond extract", + "salt" + ] + }, + { + "id": 8567, + "cuisine": "vietnamese", + "ingredients": [ + "ground chicken", + "shallots", + "rice vinegar", + "serrano chile", + "kosher salt", + "vegetable oil", + "scallions", + "fish sauce", + "granulated sugar", + "garlic", + "corn starch", + "light brown sugar", + "lemongrass", + "rice vermicelli", + "carrots" + ] + }, + { + "id": 21897, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "yellow squash", + "unsalted butter", + "fresh rosemary", + "dried tagliatelle" + ] + }, + { + "id": 30967, + "cuisine": "southern_us", + "ingredients": [ + "green tomatoes", + "yellow corn meal", + "salt", + "vegetable oil", + "black pepper" + ] + }, + { + "id": 187, + "cuisine": "italian", + "ingredients": [ + "capers", + "ground black pepper", + "extra-virgin olive oil", + "kosher salt", + "heirloom tomatoes", + "fresh oregano", + "pitted kalamata olives", + "red wine vinegar", + "purple onion", + "minced garlic", + "anchovy paste" + ] + }, + { + "id": 38531, + "cuisine": "spanish", + "ingredients": [ + "tomato sauce", + "green onions", + "littleneck clams", + "chopped green bell pepper", + "turkey kielbasa", + "red bell pepper", + "water", + "dry white wine", + "garlic cloves", + "diced onions", + "mushrooms", + "clam juice" + ] + }, + { + "id": 36211, + "cuisine": "italian", + "ingredients": [ + "pepper", + "extra-virgin olive oil", + "cayenne pepper", + "onions", + "romano cheese", + "butter", + "salt", + "chopped parsley", + "Alfredo sauce", + "garlic", + "red bell pepper", + "cream", + "portabello mushroom", + "penne pasta", + "medium shrimp" + ] + }, + { + "id": 33332, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "diced tomatoes", + "chopped onion", + "grated parmesan cheese", + "linguine", + "fresh parsley", + "olive oil", + "dry red wine", + "anchovy fillets", + "clams", + "large garlic cloves", + "crushed red pepper" + ] + }, + { + "id": 27563, + "cuisine": "jamaican", + "ingredients": [ + "white vinegar", + "kidney beans", + "garlic", + "fresh coriander", + "capsicum", + "olive oil", + "white rice", + "chicken stock", + "hot pepper sauce" + ] + }, + { + "id": 28991, + "cuisine": "greek", + "ingredients": [ + "water", + "salt", + "tomato paste", + "ground pepper", + "oregano", + "olive oil", + "onions", + "fresh dill", + "green peas" + ] + }, + { + "id": 17521, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "green cardamom", + "ginger paste", + "clove", + "yoghurt", + "onions", + "coriander powder", + "ghee", + "red chili powder", + "salt", + "chicken" + ] + }, + { + "id": 40603, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "kosher salt", + "olive oil", + "white onion", + "serrano chile" + ] + }, + { + "id": 38301, + "cuisine": "indian", + "ingredients": [ + "ginger", + "ground coriander", + "cinnamon sticks", + "diced lamb", + "cayenne pepper", + "oil", + "onions", + "garam masala", + "cardamom pods", + "lemon juice", + "cashew nuts", + "fresh coriander", + "garlic", + "cumin seed", + "coconut milk" + ] + }, + { + "id": 32255, + "cuisine": "cajun_creole", + "ingredients": [ + "melted butter", + "half & half", + "onions", + "garlic powder", + "onion powder", + "crawfish", + "green onions", + "chicken stock", + "flour", + "cayenne pepper" + ] + }, + { + "id": 40667, + "cuisine": "mexican", + "ingredients": [ + "pork tenderloin", + "pineapple", + "corn tortillas", + "chopped garlic", + "pepper", + "chili powder", + "cilantro leaves", + "chopped cilantro fresh", + "ground cumin", + "radishes", + "queso fresco", + "juice", + "dried oregano", + "jalapeno chilies", + "salt", + "onions", + "canola oil" + ] + }, + { + "id": 35233, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "maple syrup", + "large eggs", + "milk", + "cream cheese", + "french bread" + ] + }, + { + "id": 5604, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "garbanzo beans", + "ground beef", + "tomato sauce", + "dried basil", + "macaroni", + "onions", + "fresh basil", + "water", + "fennel", + "roasted tomatoes", + "homemade chicken stock", + "olive oil", + "Italian turkey sausage", + "dried oregano" + ] + }, + { + "id": 40073, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "diced tomatoes", + "parmesan cheese", + "garlic cloves", + "green onions", + "dried basil", + "cheese" + ] + }, + { + "id": 28715, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "pizza doughs", + "red pepper flakes", + "shredded mozzarella cheese", + "artichoke hearts", + "crabmeat", + "minced garlic", + "shredded parmesan cheese" + ] + }, + { + "id": 29463, + "cuisine": "french", + "ingredients": [ + "sliced almonds", + "lemon juice", + "salt", + "butter", + "pepper", + "green beans" + ] + }, + { + "id": 14160, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "bacon", + "onions", + "butter", + "bow-tie pasta", + "black pepper", + "salt", + "roquefort cheese", + "heavy cream", + "fresh mushrooms" + ] + }, + { + "id": 38050, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "pepper", + "ground pork", + "brioche buns", + "ground sirloin", + "panko breadcrumbs", + "ketchup", + "whole milk", + "salt", + "wasabi paste", + "white onion", + "sesame oil" + ] + }, + { + "id": 37977, + "cuisine": "russian", + "ingredients": [ + "vegetables", + "green cabbage", + "salt", + "tomato paste" + ] + }, + { + "id": 24400, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "minced garlic", + "chili oil", + "Chinese sesame paste", + "pickled vegetables", + "sugar", + "minced ginger", + "ground pork", + "scallions", + "chinese rice wine", + "dry roasted peanuts", + "ground sichuan pepper", + "peanut oil", + "black rice vinegar", + "soy sauce", + "sesame oil", + "salt", + "Chinese egg noodles" + ] + }, + { + "id": 44540, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "shallots", + "coconut", + "garlic cloves", + "pork belly", + "cracked black pepper", + "hard-boiled egg" + ] + }, + { + "id": 35944, + "cuisine": "italian", + "ingredients": [ + "pesto", + "spaghetti", + "lemon", + "almonds", + "spinach", + "edamame" + ] + }, + { + "id": 46333, + "cuisine": "french", + "ingredients": [ + "whole milk", + "vegetable oil spray", + "all-purpose flour", + "salt", + "large eggs", + "grated Gruyère cheese" + ] + }, + { + "id": 22359, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "vegetable oil", + "white sugar", + "water", + "vanilla instant pudding", + "egg whites", + "marshmallow creme", + "white cake mix", + "preserves" + ] + }, + { + "id": 41024, + "cuisine": "southern_us", + "ingredients": [ + "green tomatoes", + "pimenton", + "yellow corn meal", + "coarse salt", + "vegetable oil", + "large eggs", + "freshly ground pepper" + ] + }, + { + "id": 41855, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "mini marshmallows", + "dark brown sugar", + "sweet potatoes", + "pure maple syrup", + "salt" + ] + }, + { + "id": 33031, + "cuisine": "chinese", + "ingredients": [ + "salt", + "long grain white rice" + ] + }, + { + "id": 14653, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "unsalted butter", + "chopped fresh chives", + "scallions", + "minced garlic", + "finely chopped fresh parsley", + "salt", + "red bell pepper", + "lump crab meat", + "dijon mustard", + "heavy cream", + "fresh lemon juice", + "fresh basil", + "large egg yolks", + "Sriracha", + "all-purpose flour", + "whole wheat sandwich bread" + ] + }, + { + "id": 38164, + "cuisine": "vietnamese", + "ingredients": [ + "butter lettuce", + "sesame oil", + "scallions", + "fresh mint", + "fresh cilantro", + "rice vinegar", + "carrots", + "soy sauce", + "rice noodles", + "garlic chili sauce", + "rice paper", + "avocado", + "hoisin sauce", + "peanut butter", + "shrimp" + ] + }, + { + "id": 30433, + "cuisine": "italian", + "ingredients": [ + "warm water", + "all purpose unbleached flour", + "cornmeal", + "fontina", + "gorgonzola dolce", + "salt", + "sage leaves", + "active dry yeast", + "extra-virgin olive oil", + "rocket leaves", + "parmigiano reggiano cheese", + "purple onion" + ] + }, + { + "id": 47907, + "cuisine": "chinese", + "ingredients": [ + "sweet potatoes", + "scallions", + "water", + "vegetable oil", + "scallion greens", + "peeled fresh ginger", + "black rice", + "salt" + ] + }, + { + "id": 1343, + "cuisine": "thai", + "ingredients": [ + "palm sugar", + "shallots", + "large eggs", + "cilantro leaves", + "water", + "jalapeno chilies", + "Thai fish sauce", + "tamarind pulp", + "vegetable oil" + ] + }, + { + "id": 34770, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "long grain white rice", + "swanson beef broth", + "ground beef", + "tomato sauce", + "green pepper", + "garlic powder", + "onions" + ] + }, + { + "id": 19955, + "cuisine": "mexican", + "ingredients": [ + "clove", + "pepper", + "garlic cloves", + "chili pepper", + "pumpkin seeds", + "boneless, skinless chicken breast", + "vegetable oil", + "onions", + "black peppercorns", + "water", + "ancho chile pepper" + ] + }, + { + "id": 29893, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "olive oil", + "ground sichuan pepper", + "scallions", + "chicken stock", + "dry roasted peanuts", + "sesame oil", + "dried rice noodles", + "pickled vegetables", + "minced garlic", + "low sodium gluten free soy sauce", + "salt", + "ground turkey", + "chinese rice wine", + "minced ginger", + "chili oil", + "Chinese sesame paste", + "black rice vinegar" + ] + }, + { + "id": 27562, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "water", + "salt", + "large egg yolks", + "all-purpose flour", + "cake flour" + ] + }, + { + "id": 46987, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "chicken", + "sugar", + "baking powder", + "flour", + "kosher salt", + "vegetable oil" + ] + }, + { + "id": 26625, + "cuisine": "italian", + "ingredients": [ + "water", + "eggs", + "frozen broccoli", + "shaved parmesan cheese", + "Johnsonville Mild Italian Sausage Links", + "basil" + ] + }, + { + "id": 41331, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "extra-virgin olive oil", + "ground black pepper", + "sea salt", + "pork chops", + "dried oregano" + ] + }, + { + "id": 30807, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "creamy peanut butter", + "Chinese egg noodles", + "toasted sesame seeds", + "garlic paste", + "garlic", + "scallions", + "cucumber", + "ginger", + "roasted peanuts", + "carrots", + "sugar", + "rice vinegar", + "sesame paste", + "toasted sesame oil" + ] + }, + { + "id": 38655, + "cuisine": "italian", + "ingredients": [ + "boneless, skinless chicken breast", + "poultry seasoning", + "yellow onion", + "green bell pepper" + ] + }, + { + "id": 27680, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "garlic cloves", + "olive oil", + "chopped onion", + "ground cumin", + "jalapeno chilies", + "ground coriander", + "dried black beans", + "vegetable stock", + "chopped cilantro fresh" + ] + }, + { + "id": 45786, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "soba", + "sesame oil", + "rice vinegar", + "soy sauce", + "cucumber" + ] + }, + { + "id": 32952, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "bay leaves", + "garlic chili sauce", + "water", + "salt", + "peppercorns", + "chicken feet", + "garlic", + "onions", + "vinegar", + "oil" + ] + }, + { + "id": 23641, + "cuisine": "italian", + "ingredients": [ + "hard-boiled egg", + "garlic cloves", + "water", + "extra-virgin olive oil", + "fresh basil leaves", + "tomatoes", + "kalamata", + "red bell pepper", + "prosciutto", + "salt" + ] + }, + { + "id": 29561, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "ground black pepper", + "cayenne pepper", + "long grain white rice", + "green bell pepper", + "apple cider vinegar", + "fresh parsley leaves", + "canola oil", + "chicken broth", + "kosher salt", + "sweet italian sausage", + "onions", + "light brown sugar", + "tomato sauce", + "garlic", + "celery" + ] + }, + { + "id": 33892, + "cuisine": "spanish", + "ingredients": [ + "salt", + "potatoes", + "large eggs", + "onions", + "extra-virgin olive oil" + ] + }, + { + "id": 13426, + "cuisine": "mexican", + "ingredients": [ + "ground pepper", + "vegetable oil", + "purple onion", + "pork tenderloin", + "large garlic cloves", + "dill pickles", + "baked ham", + "spicy brown mustard", + "flour tortillas", + "coarse salt", + "provolone cheese" + ] + }, + { + "id": 40604, + "cuisine": "cajun_creole", + "ingredients": [ + "coffee granules", + "vanilla extract", + "pecan halves", + "light corn syrup", + "butter", + "firmly packed light brown sugar", + "whipping cream" + ] + }, + { + "id": 45729, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "vanilla extract", + "almond extract", + "all-purpose flour", + "baking powder", + "salt", + "butter" + ] + }, + { + "id": 40918, + "cuisine": "greek", + "ingredients": [ + "avocado", + "cooked chicken", + "greek style plain yogurt", + "lime", + "purple onion", + "granulated garlic", + "onion powder", + "ground pepper", + "salt" + ] + }, + { + "id": 2469, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "spring onions", + "light soy sauce", + "cooking wine", + "pork belly", + "vegetable oil", + "chinese rock sugar", + "fresh ginger" + ] + }, + { + "id": 2898, + "cuisine": "chinese", + "ingredients": [ + "oysters", + "dried shrimp", + "scallops", + "pork ribs", + "winter melon", + "honey", + "peppercorns", + "water", + "salt" + ] + }, + { + "id": 42378, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "corn tortillas", + "prepared guacamole", + "chicken", + "green onions", + "chopped cilantro", + "tomatoes", + "red enchilada sauce" + ] + }, + { + "id": 44289, + "cuisine": "french", + "ingredients": [ + "fresh thyme", + "cheese", + "butter", + "fillets", + "crushed tomatoes", + "whipping cream", + "mushrooms", + "cognac" + ] + }, + { + "id": 40862, + "cuisine": "thai", + "ingredients": [ + "boneless chicken thighs", + "lower sodium soy sauce", + "lime wedges", + "canola oil", + "chicken stock", + "water", + "peeled fresh ginger", + "thai chile", + "baby bok choy", + "yellow squash", + "cilantro stems", + "garlic cloves", + "kosher salt", + "ground black pepper", + "rice vermicelli" + ] + }, + { + "id": 37418, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "shredded mozzarella cheese", + "minced garlic", + "sea salt", + "fresh basil leaves", + "fontina cheese", + "roma tomatoes", + "feta cheese crumbles", + "olive oil", + "baked pizza crust" + ] + }, + { + "id": 35595, + "cuisine": "italian", + "ingredients": [ + "cucumber", + "roma tomatoes", + "italian salad dressing", + "purple onion" + ] + }, + { + "id": 8481, + "cuisine": "korean", + "ingredients": [ + "hot red pepper flakes", + "pork belly", + "sesame oil", + "red chili peppers", + "minced garlic", + "scallions", + "sugar", + "black pepper", + "ginger", + "soy sauce", + "rice wine", + "onions" + ] + }, + { + "id": 11002, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "flour", + "shredded lettuce", + "cayenne pepper", + "avocado", + "garlic powder", + "boneless skinless chicken breasts", + "cilantro", + "crumbled gorgonzola", + "olive oil", + "green onions", + "buffalo sauce", + "corn starch", + "pepper", + "tortillas", + "ranch dressing", + "salt" + ] + }, + { + "id": 3750, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "salt", + "onions", + "onion powder", + "chicken in water", + "monterey jack", + "chicken broth", + "dri oregano leaves, crush", + "enchilada sauce", + "cream", + "uncooked vermicelli", + "cumin" + ] + }, + { + "id": 6852, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "Anaheim chile", + "cheese", + "corn tortillas", + "cremini mushrooms", + "olive oil", + "epazote", + "salsa", + "white onion", + "ground black pepper", + "cilantro sprigs", + "poblano chiles", + "corn kernels", + "queso fresco", + "garlic" + ] + }, + { + "id": 8993, + "cuisine": "mexican", + "ingredients": [ + "enchilada sauce", + "garlic", + "ground beef", + "jack cheese", + "sour cream", + "tortilla chips", + "onions" + ] + }, + { + "id": 19906, + "cuisine": "thai", + "ingredients": [ + "mint leaves", + "chopped cilantro", + "fish sauce", + "stevia", + "green cabbage", + "crushed red pepper flakes", + "sliced green onions", + "lime juice", + "salted peanuts" + ] + }, + { + "id": 23139, + "cuisine": "brazilian", + "ingredients": [ + "semisweet chocolate", + "chocolate sprinkles", + "light corn syrup", + "heavy cream", + "unsweetened cocoa powder", + "unsalted butter", + "sweetened condensed milk" + ] + }, + { + "id": 44385, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime juice", + "peanut butter", + "minced garlic", + "light coconut milk", + "brown sugar", + "peanuts", + "scallions", + "water", + "red curry paste" + ] + }, + { + "id": 15446, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "milk", + "salt", + "sugar", + "vegetable shortening", + "flour" + ] + }, + { + "id": 17144, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "olive oil", + "chicken breasts", + "paprika", + "salsa", + "shredded cheese", + "onions", + "chicken broth", + "pepper", + "flour tortillas", + "butter", + "garlic", + "yellow onion", + "sour cream", + "cumin", + "avocado", + "white onion", + "Sriracha", + "chili powder", + "cilantro", + "hot sauce", + "pinto beans", + "coriander", + "tomatoes", + "lime juice", + "jalapeno chilies", + "red pepper", + "salt", + "green pepper", + "chopped cilantro" + ] + }, + { + "id": 10360, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "salt", + "bittersweet chocolate", + "pie crust", + "heavy cream", + "chopped pecans", + "large eggs", + "all-purpose flour", + "unsalted butter", + "light corn syrup", + "confectioners sugar" + ] + }, + { + "id": 39484, + "cuisine": "mexican", + "ingredients": [ + "picante sauce", + "olive oil", + "fresh cilantro", + "sour cream", + "lime juice", + "salt", + "avocado", + "salad greens", + "monterey jack" + ] + }, + { + "id": 49545, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "spring onions", + "chinese five-spice powder", + "hoisin sauce", + "sesame oil", + "soy sauce", + "rice wine", + "cucumber", + "chinese pancakes", + "mushrooms", + "baby gem lettuce" + ] + }, + { + "id": 47200, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "green onions", + "sugar", + "honey", + "garlic", + "soy sauce", + "beef", + "salt", + "wine", + "steamed rice", + "sesame oil" + ] + }, + { + "id": 25160, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "zucchini", + "ground coriander", + "frozen peas", + "fresh ginger", + "butternut squash", + "small red potato", + "sugar", + "jalapeno chilies", + "garlic cloves", + "ground cumin", + "low-fat plain yogurt", + "cayenne", + "purple onion", + "chopped cilantro" + ] + }, + { + "id": 11828, + "cuisine": "italian", + "ingredients": [ + "tropical fruits", + "sugar", + "whipping cream", + "unflavored gelatin", + "buttermilk", + "water", + "vanilla extract" + ] + }, + { + "id": 47830, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "chopped onion", + "peperoncini", + "diced tomatoes", + "fresh basil leaves", + "crumbled ricotta salata cheese", + "garlic cloves", + "kosher salt", + "extra-virgin olive oil", + "spaghetti" + ] + }, + { + "id": 24100, + "cuisine": "french", + "ingredients": [ + "salt", + "unsalted butter", + "ice water", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 48899, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "large egg whites", + "grated parmesan cheese", + "olive oil spray", + "tomatoes", + "minced garlic", + "zucchini", + "chopped onion", + "tomato paste", + "bread crumbs", + "eggplant", + "beef sirloin", + "red potato", + "olive oil", + "low-fat white sauce", + "dried oregano" + ] + }, + { + "id": 1211, + "cuisine": "mexican", + "ingredients": [ + "Mexican seasoning mix", + "diced tomatoes", + "green pepper", + "minced garlic", + "reduced-fat sour cream", + "chopped onion", + "ground round", + "chili", + "salt", + "vegetable oil cooking spray", + "no-salt-added black beans", + "salsa" + ] + }, + { + "id": 221, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "frozen chopped broccoli", + "melted butter", + "flour", + "sour cream", + "cream of chicken soup", + "stuffing mix", + "shredded cheddar cheese", + "salt" + ] + }, + { + "id": 24238, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "chili powder", + "enchilada sauce", + "shredded cheddar cheese", + "garlic", + "masa harina", + "water", + "salt", + "ground cumin", + "chicken broth", + "vegetable oil", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 31000, + "cuisine": "british", + "ingredients": [ + "sugar", + "dates", + "baking powder", + "dark muscovado sugar", + "self rising flour", + "heavy cream", + "eggs", + "butter", + "whiskey" + ] + }, + { + "id": 38982, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "flour", + "salt", + "dried oregano", + "white vinegar", + "garlic powder", + "paprika", + "sweetened condensed milk", + "black pepper", + "lean ground beef", + "onions", + "pita bread", + "onion powder", + "cayenne pepper" + ] + }, + { + "id": 36378, + "cuisine": "greek", + "ingredients": [ + "eggs", + "cake flour", + "white sugar", + "baking soda", + "grated lemon zest", + "plain yogurt", + "salt", + "butter", + "lemon juice" + ] + }, + { + "id": 27799, + "cuisine": "italian", + "ingredients": [ + "water", + "ground beef", + "ricotta cheese", + "lasagna noodles", + "ragu old world style pasta sauc", + "shredded mozzarella cheese" + ] + }, + { + "id": 19539, + "cuisine": "thai", + "ingredients": [ + "fresh ginger", + "toasted sesame oil", + "water", + "hoisin sauce", + "minced garlic", + "Jif Creamy Peanut Butter", + "light soy sauce", + "dark brown sugar" + ] + }, + { + "id": 23544, + "cuisine": "mexican", + "ingredients": [ + "mora chiles", + "white onion", + "crema mexican", + "button mushrooms", + "canela", + "tomatoes", + "sugar", + "lime juice", + "fine salt", + "corn tortillas", + "chicken stock", + "spinach", + "water", + "jalapeno chilies", + "garlic cloves", + "ground cinnamon", + "habanero chile", + "ricotta salata", + "vegetable oil", + "chopped cilantro" + ] + }, + { + "id": 35978, + "cuisine": "irish", + "ingredients": [ + "buttermilk", + "whole wheat flour", + "bread flour", + "rolled oats", + "salt", + "baking soda" + ] + }, + { + "id": 44626, + "cuisine": "greek", + "ingredients": [ + "cooking spray", + "dried oregano", + "dried thyme", + "lemon wedge", + "black pepper", + "tuna steaks", + "olive oil", + "salt" + ] + }, + { + "id": 28449, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "oil", + "black pepper", + "bacon", + "spaghetti", + "grated parmesan cheese", + "salt", + "heavy cream", + "onions" + ] + }, + { + "id": 19847, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "bottled clam juice", + "shrimp", + "celery ribs", + "andouille sausage", + "garlic", + "onions", + "chicken stock", + "baby lima beans", + "cayenne pepper", + "green bell pepper", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 43789, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "granulated sugar", + "all-purpose flour", + "orange zest", + "figs", + "large egg yolks", + "heavy cream", + "ground cardamom", + "water", + "unsalted butter", + "salt", + "confectioners sugar", + "sesame seeds", + "cinnamon", + "orange flower water" + ] + }, + { + "id": 25820, + "cuisine": "italian", + "ingredients": [ + "melon", + "prosciutto" + ] + }, + { + "id": 20, + "cuisine": "italian", + "ingredients": [ + "lemon zest", + "fresh lemon juice", + "mayonaise", + "salt", + "heavy cream", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 29365, + "cuisine": "moroccan", + "ingredients": [ + "boiling water", + "green tea", + "mint leaves" + ] + }, + { + "id": 13034, + "cuisine": "greek", + "ingredients": [ + "frozen chopped spinach", + "feta cheese", + "onions", + "cottage cheese", + "butter", + "phyllo dough", + "large eggs", + "pepper", + "salt" + ] + }, + { + "id": 49082, + "cuisine": "spanish", + "ingredients": [ + "water", + "cooking spray", + "salt", + "fresh parsley", + "ground black pepper", + "paprika", + "garlic cloves", + "olive oil", + "red wine vinegar", + "blanched almonds", + "plum tomatoes", + "jumbo shrimp", + "french bread", + "crushed red pepper", + "ancho chile pepper" + ] + }, + { + "id": 36362, + "cuisine": "southern_us", + "ingredients": [ + "jasmine rice", + "double smoked bacon", + "salt", + "water", + "red pepper flakes", + "shrimp", + "unsalted butter", + "garlic", + "flat leaf parsley", + "pepper", + "fresh thyme", + "okra" + ] + }, + { + "id": 49164, + "cuisine": "southern_us", + "ingredients": [ + "crushed red pepper flakes", + "bay leaf", + "pepper", + "salt pork", + "garlic", + "onions", + "black-eyed peas", + "rice" + ] + }, + { + "id": 19699, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "large eggs", + "salted roast peanuts", + "fresh lime juice", + "fresh cilantro", + "sesame oil", + "garlic cloves", + "soy sauce", + "shredded carrots", + "scallions", + "Sriracha", + "rice noodles", + "beansprouts" + ] + }, + { + "id": 11267, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "flaked", + "dried oregano", + "cherry tomatoes", + "chicken thighs", + "Hellmann''s Light Mayonnaise" + ] + }, + { + "id": 30993, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cooking spray", + "balsamic vinegar", + "purple onion", + "chop fine pecan", + "peeled fresh ginger", + "bacon", + "ground pecans", + "brown sugar", + "pork tenderloin", + "vegetable oil", + "cracked black pepper", + "large egg whites", + "sweet potatoes", + "butter", + "all-purpose flour" + ] + }, + { + "id": 4004, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "pepper", + "chicken breasts", + "salt", + "cider vinegar", + "olive oil", + "ginger", + "onions", + "tomato purée", + "lime", + "red pepper", + "green chilies", + "tandoori spices", + "garam masala", + "garlic", + "coriander" + ] + }, + { + "id": 4462, + "cuisine": "vietnamese", + "ingredients": [ + "chicken broth", + "chicken bones", + "garlic", + "fresh lime juice", + "sugar", + "sesame oil", + "scallions", + "chicken", + "fish sauce", + "fresh ginger", + "cilantro leaves", + "truffle salt", + "bean threads", + "soy sauce", + "Tabasco Pepper Sauce", + "carrots" + ] + }, + { + "id": 46735, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "baking powder", + "all-purpose flour", + "ground black pepper", + "buttermilk", + "seasoning salt", + "vegetable shortening", + "sausages", + "melted butter", + "soda", + "salt" + ] + }, + { + "id": 23626, + "cuisine": "japanese", + "ingredients": [ + "salt", + "short-grain rice", + "cold water", + "rice vinegar", + "granulated sugar" + ] + }, + { + "id": 5269, + "cuisine": "filipino", + "ingredients": [ + "simple syrup", + "water", + "ice", + "granulated sugar", + "calamansi juice" + ] + }, + { + "id": 23050, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "low-fat pasta sauce", + "nonfat ricotta cheese", + "frozen chopped spinach", + "lasagna noodles", + "canadian bacon", + "vegetable oil cooking spray", + "grated parmesan cheese", + "onions", + "garlic powder", + "salt", + "italian seasoning" + ] + }, + { + "id": 1407, + "cuisine": "italian", + "ingredients": [ + "whole milk ricotta cheese", + "grated lemon peel", + "onions", + "sugar pea", + "fresh basil leaves", + "extra-virgin olive oil", + "orecchiette" + ] + }, + { + "id": 19365, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "fresh ginger", + "toasted sesame oil", + "water", + "garlic", + "hoisin sauce", + "white sugar" + ] + }, + { + "id": 41429, + "cuisine": "indian", + "ingredients": [ + "melted butter", + "instant yeast", + "raisins", + "onions", + "honey", + "chili powder", + "salt", + "ground cumin", + "ground cinnamon", + "fresh ginger root", + "butter", + "ground coriander", + "water", + "flaked coconut", + "garlic", + "bread flour" + ] + }, + { + "id": 23705, + "cuisine": "greek", + "ingredients": [ + "fresh basil", + "eggplant", + "garlic cloves", + "pepper", + "salt", + "grape tomatoes", + "balsamic vinegar", + "feta cheese crumbles", + "pizza shells", + "Mazola Canola Oil" + ] + }, + { + "id": 44125, + "cuisine": "italian", + "ingredients": [ + "pecorino cheese", + "stewed tomatoes", + "garlic cloves", + "large eggs", + "squid", + "bread crumb fresh", + "fine sea salt", + "fresh basil leaves", + "black pepper", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 10310, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "flour", + "poultry seasoning", + "chicken", + "milk", + "butter", + "oven-ready lasagna noodles", + "water", + "swiss cheese", + "fresh herbs", + "seasoned bread crumbs", + "parmesan cheese", + "salt", + "frozen peas" + ] + }, + { + "id": 28670, + "cuisine": "french", + "ingredients": [ + "foie gras", + "white sandwich bread", + "black truffles", + "whipping cream", + "fresh tarragon", + "large eggs", + "flat leaf parsley" + ] + }, + { + "id": 25221, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "green onions", + "onions", + "garlic powder", + "bacon", + "seasoning salt", + "butter", + "large shrimp", + "chicken stock", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 36167, + "cuisine": "japanese", + "ingredients": [ + "caster sugar", + "soba noodles", + "low sodium soy sauce", + "prawns", + "mirin", + "lemon juice", + "red chili peppers", + "broccoli" + ] + }, + { + "id": 10303, + "cuisine": "southern_us", + "ingredients": [ + "peas", + "ground beef", + "pepper", + "whole kernel corn, drain", + "potatoes", + "cream of mushroom soup", + "salt" + ] + }, + { + "id": 11037, + "cuisine": "cajun_creole", + "ingredients": [ + "jalapeno chilies", + "creole seasoning", + "green bell pepper", + "whipping cream", + "onions", + "fresh corn", + "butter", + "red bell pepper", + "crawfish", + "salt" + ] + }, + { + "id": 44126, + "cuisine": "french", + "ingredients": [ + "water", + "part-skim mozzarella cheese", + "garlic cloves", + "italian seasoning", + "tomatoes", + "olive oil", + "french bread", + "red bell pepper", + "yellow squash", + "zucchini", + "lemon juice", + "pepper", + "eggplant", + "balsamic vinegar", + "dried rosemary" + ] + }, + { + "id": 45271, + "cuisine": "italian", + "ingredients": [ + "beans", + "red wine vinegar", + "garlic cloves", + "cannellini beans", + "tomatoes with juice", + "polenta", + "red kidnei beans, rins and drain", + "chili powder", + "green chilies", + "ground cumin", + "olive oil", + "butter", + "onions" + ] + }, + { + "id": 1275, + "cuisine": "french", + "ingredients": [ + "pearl onions", + "mushrooms", + "warm water", + "asparagus", + "lemon", + "kosher salt", + "unsalted butter", + "chicken", + "olive oil", + "dry white wine" + ] + }, + { + "id": 46265, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "salt", + "barilla", + "green onions", + "plum tomatoes", + "parmigiano reggiano cheese", + "freshly ground pepper", + "asparagus", + "extra-virgin olive oil" + ] + }, + { + "id": 26856, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "salt", + "minced garlic", + "lemon", + "fresh tomatoes", + "flour tortillas", + "fresh parsley", + "olive oil", + "chicken tenderloin" + ] + }, + { + "id": 921, + "cuisine": "southern_us", + "ingredients": [ + "water", + "grits", + "garlic", + "mozzarella cheese", + "salt", + "milk" + ] + }, + { + "id": 38263, + "cuisine": "french", + "ingredients": [ + "potatoes", + "beer", + "onions", + "beef", + "all-purpose flour", + "chopped parsley", + "unsalted butter", + "salt", + "carrots", + "dried thyme", + "bay leaves", + "freshly ground pepper" + ] + }, + { + "id": 4314, + "cuisine": "mexican", + "ingredients": [ + "tamarind", + "large shrimp" + ] + }, + { + "id": 31323, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "parmigiano reggiano cheese", + "chili powder", + "old bay seasoning", + "garlic", + "dried parsley", + "ground black pepper", + "green onions", + "butter", + "bacon", + "grit quick", + "water", + "flour", + "onion powder", + "heavy cream", + "cayenne pepper", + "granulated garlic", + "lemon pepper seasoning", + "shallots", + "lemon", + "extra-virgin olive oil", + "shrimp" + ] + }, + { + "id": 9649, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "Mexican cheese blend", + "frozen corn", + "chicken", + "pepper", + "chili powder", + "chopped cilantro", + "black beans", + "poblano peppers", + "salsa", + "quinoa", + "salt", + "cumin" + ] + }, + { + "id": 6119, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "garlic", + "leaves", + "onions", + "sugar", + "oil", + "fish sauce", + "beef" + ] + }, + { + "id": 12666, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "sour cream", + "tex-mex shredded cheese", + "boneless skinless chicken breasts", + "red potato", + "salsa" + ] + }, + { + "id": 29131, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "green onions", + "vegetable oil", + "freshly ground pepper", + "fresh ginger", + "sesame oil", + "vegetable broth", + "coarse kosher salt", + "jasmine rice", + "fresh shiitake mushrooms", + "red wine vinegar", + "corn starch", + "low sodium soy sauce", + "broccoli rabe", + "Asian chili sauce", + "firm tofu" + ] + }, + { + "id": 35682, + "cuisine": "indian", + "ingredients": [ + "whole wheat flour", + "all-purpose flour", + "water", + "yoghurt", + "chopped cilantro", + "baking soda", + "oil", + "sesame seeds", + "salt", + "ghee" + ] + }, + { + "id": 27060, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "prosciutto", + "parmigiano reggiano cheese", + "penne", + "fresh basil leaves" + ] + }, + { + "id": 19325, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "rice vinegar", + "low sodium soy sauce", + "crushed red pepper flakes", + "corn starch", + "hoisin sauce", + "bone-in chicken breasts", + "honey", + "garlic", + "onions" + ] + }, + { + "id": 45936, + "cuisine": "italian", + "ingredients": [ + "eggs", + "lasagna noodles", + "nonfat ricotta cheese", + "pepper", + "salt", + "tomato sauce", + "grated parmesan cheese", + "part-skim mozzarella cheese", + "(10 oz.) frozen chopped spinach" + ] + }, + { + "id": 35476, + "cuisine": "cajun_creole", + "ingredients": [ + "sweet pickle relish", + "creole seasoning", + "hot dog bun", + "yellow peppers", + "andouille sausage", + "celery", + "purple onion" + ] + }, + { + "id": 7665, + "cuisine": "french", + "ingredients": [ + "salt", + "unsalted butter", + "large eggs", + "water", + "all-purpose flour" + ] + }, + { + "id": 3771, + "cuisine": "cajun_creole", + "ingredients": [ + "small red beans", + "bacon", + "purple onion", + "cooked rice", + "Sriracha", + "garlic", + "smoked ham hocks", + "pepper", + "stout", + "salt", + "chicken broth", + "olive oil", + "brats", + "green pepper" + ] + }, + { + "id": 22672, + "cuisine": "cajun_creole", + "ingredients": [ + "paprika", + "center cut pork chops", + "ground black pepper", + "cayenne pepper", + "extra-virgin olive oil", + "ground cumin", + "dried sage", + "garlic salt" + ] + }, + { + "id": 34230, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "coriander powder", + "cinnamon", + "oil", + "ground turmeric", + "red chili peppers", + "garam masala", + "chili powder", + "cumin seed", + "onions", + "fenugreek leaves", + "fresh ginger", + "sweet potatoes", + "green cardamom", + "bay leaf", + "tomatoes", + "water", + "pumpkin", + "salt", + "carrots", + "ground cumin" + ] + }, + { + "id": 1326, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "ground red pepper", + "english cucumber", + "coriander seeds", + "grated lemon zest", + "greek yogurt", + "black pepper", + "salt", + "garlic cloves", + "pork tenderloin", + "cumin seed", + "canola oil" + ] + }, + { + "id": 23111, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "rice", + "onions", + "salt", + "garlic cloves", + "vinegar", + "oil", + "eggs", + "chili sauce", + "celery" + ] + }, + { + "id": 45769, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "round loaf", + "dried sage", + "mushrooms", + "chopped fresh sage", + "fontina", + "butter" + ] + }, + { + "id": 34590, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "fresh dill", + "vegetable oil", + "garlic cloves", + "catfish fillets", + "green onions", + "rice vinegar", + "honey", + "non-fat sour cream", + "fresh parsley leaves" + ] + }, + { + "id": 2922, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "shredded cheddar cheese", + "lean ground beef", + "tomato sauce", + "lasagna noodles", + "water", + "tortilla chips" + ] + }, + { + "id": 41507, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "green onions", + "tortilla chips", + "shredded cheddar cheese", + "sliced black olives", + "garlic", + "tomatoes", + "ground black pepper", + "crushed red pepper flakes", + "ground turkey", + "refried beans", + "chopped fresh chives", + "hot sauce" + ] + }, + { + "id": 34795, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "flour tortillas", + "onions", + "shredded cheddar cheese", + "sour cream", + "cilantro", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 33253, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "salt", + "minced garlic", + "chopped cilantro fresh", + "tomato sauce", + "long-grain rice", + "vegetable oil", + "cumin" + ] + }, + { + "id": 43865, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "fettucine", + "shrimp", + "green peas", + "milk", + "soup mix" + ] + }, + { + "id": 6934, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "onions", + "pepper", + "green onions", + "tomatoes", + "jalapeno chilies", + "fresh cilantro", + "salt" + ] + }, + { + "id": 14787, + "cuisine": "french", + "ingredients": [ + "olive oil", + "yellow onion", + "chicken stock", + "russet potatoes" + ] + }, + { + "id": 45930, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "chicken breast halves", + "chopped onion", + "fresh parsley", + "ground ginger", + "fresh cilantro", + "salt", + "fresh lemon juice", + "reduced sodium chicken broth", + "cinnamon", + "garlic cloves", + "green olives", + "olive oil", + "grated lemon zest", + "chicken leg quarters" + ] + }, + { + "id": 7398, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "scallions", + "chicken broth", + "ginger", + "cold water", + "pepper", + "corn starch", + "eggs", + "salt" + ] + }, + { + "id": 6838, + "cuisine": "filipino", + "ingredients": [ + "celery ribs", + "kosher salt", + "leeks", + "cilantro", + "chinese five-spice powder", + "calamansi", + "celery leaves", + "orange", + "peeled fresh ginger", + "peanut oil", + "carrots", + "chinese chili paste", + "scallion greens", + "lemongrass", + "bay leaves", + "pineapple juice", + "garlic cloves", + "serrano chile", + "pork belly", + "sherry vinegar", + "shallots", + "freshly ground pepper", + "ground white pepper", + "orange zest" + ] + }, + { + "id": 15633, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic", + "dried red chile peppers", + "ground cumin", + "tri-tip roast", + "chili powder", + "beef broth", + "onions", + "ground black pepper", + "salt", + "celery", + "green bell pepper", + "chile pepper", + "carrots", + "plum tomatoes" + ] + }, + { + "id": 15741, + "cuisine": "mexican", + "ingredients": [ + "milk", + "cilantro", + "plum tomatoes", + "flour", + "yellow onion", + "diced green chilies", + "salt", + "butter", + "shredded cheese" + ] + }, + { + "id": 30945, + "cuisine": "filipino", + "ingredients": [ + "ground pork", + "onions", + "large eggs", + "salt", + "wonton wrappers", + "carrots", + "soy sauce", + "garlic", + "garlic salt" + ] + }, + { + "id": 16231, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "dill", + "garlic", + "yoghurt", + "cucumber", + "pepper", + "salt" + ] + }, + { + "id": 36330, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "onions", + "silken tofu", + "sesame oil", + "black pepper", + "white miso", + "dashi", + "daikon" + ] + }, + { + "id": 31639, + "cuisine": "italian", + "ingredients": [ + "string beans", + "red pepper flakes", + "prosciutto", + "purple onion", + "kosher salt", + "extra-virgin olive oil", + "fresh rosemary", + "ground black pepper", + "fresh lemon juice" + ] + }, + { + "id": 40629, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "vegetable oil", + "white sugar", + "eggs", + "golden raisins", + "all-purpose flour", + "ground cinnamon", + "sweet potatoes", + "salt", + "milk", + "baking powder", + "chopped pecans" + ] + }, + { + "id": 5620, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "black pepper", + "lime wedges", + "chopped celery", + "carrots", + "cold water", + "jumbo shrimp", + "olive oil", + "light coconut milk", + "red curry paste", + "bay leaf", + "mussels", + "black peppercorns", + "halibut fillets", + "littleneck clams", + "salt", + "red bell pepper", + "tomatoes", + "lime rind", + "cooking spray", + "garlic", + "chopped onion", + "chopped cilantro fresh" + ] + }, + { + "id": 25073, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "butter", + "chopped onion", + "white bread", + "large eggs", + "chopped celery", + "corn bread", + "large egg whites", + "vegetable broth", + "rubbed sage", + "saltines", + "cooking spray", + "salt" + ] + }, + { + "id": 34043, + "cuisine": "italian", + "ingredients": [ + "seasoned croutons", + "shredded Italian cheese", + "onions", + "chicken broth", + "salt and ground black pepper", + "pork loin chops", + "fresh rosemary", + "grated parmesan cheese", + "celery", + "fresh leav spinach", + "butter", + "chopped garlic" + ] + }, + { + "id": 4366, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "yoghurt", + "black cardamom pods", + "coriander", + "green cardamom pods", + "garam masala", + "vegetable oil", + "cinnamon sticks", + "ginger paste", + "tumeric", + "chili powder", + "ground coriander", + "boneless lamb", + "clove", + "bay leaves", + "salt", + "onions" + ] + }, + { + "id": 20424, + "cuisine": "mexican", + "ingredients": [ + "finely chopped onion", + "paprika", + "black pepper", + "butter", + "pinto beans", + "chili powder", + "garlic", + "milk", + "sea salt", + "cumin" + ] + }, + { + "id": 14445, + "cuisine": "french", + "ingredients": [ + "milk", + "fully cooked ham", + "eggs", + "grated parmesan cheese", + "all-purpose flour", + "hot pepper sauce", + "butter", + "cheddar cheese", + "french bread", + "mustard powder" + ] + }, + { + "id": 28616, + "cuisine": "mexican", + "ingredients": [ + "avocado dressing", + "chicken breasts", + "avocado", + "fresh cilantro", + "spring rolls", + "lettuce", + "canned black beans", + "yellow bell pepper", + "seasoning", + "jalapeno chilies", + "red bell pepper" + ] + }, + { + "id": 16748, + "cuisine": "mexican", + "ingredients": [ + "chili", + "chopped onion", + "corn tortillas", + "asadero", + "low salt chicken broth", + "chopped cilantro fresh", + "tomatillos", + "sour cream", + "plum tomatoes", + "Anaheim chile", + "garlic cloves", + "fresh lime juice" + ] + }, + { + "id": 44015, + "cuisine": "mexican", + "ingredients": [ + "bacon", + "avocado", + "goat cheese", + "whole wheat tortillas", + "smoked paprika", + "veggies" + ] + }, + { + "id": 44965, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "shredded sharp cheddar cheese", + "vidalia onion", + "large eggs", + "dried dillweed", + "vegetable oil cooking spray", + "butter", + "sour cream", + "cornbread mix", + "salt" + ] + }, + { + "id": 27304, + "cuisine": "spanish", + "ingredients": [ + "salt", + "dark rum", + "vanilla", + "sweetened condensed milk" + ] + }, + { + "id": 37165, + "cuisine": "chinese", + "ingredients": [ + "ice water", + "all-purpose flour", + "salt", + "large eggs", + "corn starch" + ] + }, + { + "id": 1973, + "cuisine": "cajun_creole", + "ingredients": [ + "light kidney beans", + "creole seasoning", + "sliced green onions", + "low-sodium fat-free chicken broth", + "garlic cloves", + "green bell pepper", + "long-grain rice", + "celery ribs", + "smoked chicken sausages", + "onions" + ] + }, + { + "id": 31924, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "ginger", + "water", + "lemongrass", + "coconut milk", + "curry", + "soy sauce", + "basil leaves" + ] + }, + { + "id": 48563, + "cuisine": "thai", + "ingredients": [ + "water", + "green onions", + "cilantro", + "chili sauce", + "coconut sugar", + "peanuts", + "sesame oil", + "tamari soy sauce", + "red bell pepper", + "lime juice", + "brown rice", + "garlic", + "carrots", + "sweet chili sauce", + "chili paste", + "veggies", + "sauce", + "mung bean sprouts" + ] + }, + { + "id": 29392, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "beans", + "salt pork" + ] + }, + { + "id": 25658, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "skinless chicken breasts", + "bamboo shoots", + "palm sugar", + "red bell pepper", + "water", + "oil", + "red curry paste", + "coconut milk" + ] + }, + { + "id": 33897, + "cuisine": "italian", + "ingredients": [ + "bread", + "balsamic vinegar", + "provolone cheese", + "capers", + "diced tomatoes", + "fresh basil", + "33% less sodium ham", + "garlic cloves", + "ground black pepper", + "salt" + ] + }, + { + "id": 29254, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "ground black pepper", + "orange", + "bourbon whiskey", + "kosher salt", + "unsalted butter", + "pecan halves", + "dried cherry", + "cayenne pepper" + ] + }, + { + "id": 45205, + "cuisine": "korean", + "ingredients": [ + "light soy sauce", + "sesame oil", + "chinese cabbage", + "green onions", + "white wine vinegar", + "chili powder", + "salt", + "fresh ginger root", + "garlic", + "white sugar" + ] + }, + { + "id": 13803, + "cuisine": "british", + "ingredients": [ + "unflavored gelatin", + "vegetable shortening", + "strawberries", + "sugar", + "all purpose unbleached flour", + "fresh lemon juice", + "ice water", + "salt", + "unsalted butter", + "whipping cream" + ] + }, + { + "id": 20651, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "thick-cut bacon", + "pepper", + "butter", + "milk", + "salt", + "curly kale", + "leeks" + ] + }, + { + "id": 43573, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "low-fat milk", + "large egg whites", + "salt", + "cayenne", + "all-purpose flour", + "corn kernels", + "butter" + ] + }, + { + "id": 831, + "cuisine": "thai", + "ingredients": [ + "lime rind", + "honey", + "sliced carrots", + "unsalted dry roast peanuts", + "corn starch", + "fat free less sodium chicken broth", + "fresh ginger", + "lime wedges", + "red curry paste", + "red bell pepper", + "sugar pea", + "water", + "boneless skinless chicken breasts", + "light coconut milk", + "peanut oil", + "fish sauce", + "jasmine rice", + "jalapeno chilies", + "large garlic cloves", + "chopped onion", + "chopped cilantro fresh" + ] + }, + { + "id": 43484, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "garlic cloves", + "canola oil", + "light coconut milk", + "chopped onion", + "chopped cilantro fresh", + "yukon gold potatoes", + "acorn squash", + "red bell pepper", + "ground cumin", + "ground ginger", + "crushed red pepper", + "ground allspice", + "ground turmeric" + ] + }, + { + "id": 47786, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "sugar", + "garlic chili sauce", + "water", + "fish sauce", + "garlic cloves" + ] + }, + { + "id": 8188, + "cuisine": "southern_us", + "ingredients": [ + "cinnamon", + "peaches", + "cake mix", + "lemon-lime soda" + ] + }, + { + "id": 25117, + "cuisine": "italian", + "ingredients": [ + "baby spinach leaves", + "low fat low sodium chicken broth", + "italian chicken sausage", + "extra-virgin olive oil", + "white wine", + "cheese tortellini", + "tomatoes", + "unsalted butter", + "garlic" + ] + }, + { + "id": 31426, + "cuisine": "mexican", + "ingredients": [ + "fresh corn", + "whole wheat tortillas", + "whole kernel corn, drain", + "black beans", + "vegetable broth", + "fresh tomatoes", + "diced tomatoes", + "taco seasoning", + "brown rice", + "salsa" + ] + }, + { + "id": 7439, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "all-purpose flour", + "vegetable oil", + "baking powder", + "white sugar", + "ground cinnamon", + "salt" + ] + }, + { + "id": 24216, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "green chilies", + "clove", + "red food coloring", + "onions", + "lime", + "salt", + "chicken", + "ginger", + "low-fat yogurt" + ] + }, + { + "id": 18128, + "cuisine": "indian", + "ingredients": [ + "pepper", + "capsicum", + "lemon juice", + "ground cumin", + "white bread slices", + "potatoes", + "cilantro leaves", + "onions", + "tomatoes", + "salted butter", + "salt", + "chutney", + "sugar", + "mint leaves", + "green chilies", + "chaat masala" + ] + }, + { + "id": 5421, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "diced tomatoes", + "yellow onion", + "garam masala", + "cilantro", + "chicken thighs", + "olive oil", + "paprika", + "coconut milk", + "coarse salt", + "garlic" + ] + }, + { + "id": 7036, + "cuisine": "italian", + "ingredients": [ + "lower sodium chicken broth", + "grated parmesan cheese", + "chopped onion", + "chicken sausage", + "crushed red pepper", + "polenta", + "water", + "diced tomatoes", + "garlic cloves", + "fresh basil", + "olive oil", + "fresh oregano" + ] + }, + { + "id": 14912, + "cuisine": "italian", + "ingredients": [ + "brie cheese", + "prepar pesto", + "sun-dried tomatoes in oil" + ] + }, + { + "id": 26929, + "cuisine": "indian", + "ingredients": [ + "lean minced beef", + "ginger", + "garlic cloves", + "frozen peas", + "curry powder", + "green chilies", + "fresh mint", + "fresh coriander", + "natural yogurt", + "cucumber", + "tumeric", + "brown rice", + "ground coriander", + "onions" + ] + }, + { + "id": 14369, + "cuisine": "indian", + "ingredients": [ + "purple onion", + "lemon juice", + "radishes", + "cumin seed", + "pepper", + "salt", + "plain whole-milk yogurt", + "mint leaves", + "english cucumber" + ] + }, + { + "id": 29398, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "salt", + "oil", + "garam masala", + "green chilies", + "toor dal", + "large tomato", + "cilantro leaves", + "onions", + "ginger", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 24855, + "cuisine": "indian", + "ingredients": [ + "water", + "gram flour", + "salt", + "chili powder", + "ground turmeric", + "spinach", + "oil" + ] + }, + { + "id": 37575, + "cuisine": "southern_us", + "ingredients": [ + "sliced almonds", + "cool whip", + "vanilla wafer crumbs", + "pure vanilla extract", + "bananas", + "English toffee bits", + "vanilla instant pudding", + "caramel ice cream topping", + "whole milk", + "cream cheese", + "powdered sugar", + "granulated sugar", + "butter" + ] + }, + { + "id": 28551, + "cuisine": "mexican", + "ingredients": [ + "low-fat sour cream", + "green onions", + "40% less sodium taco seasoning mix", + "water", + "chopped onion", + "shredded Monterey Jack cheese", + "fresh spinach", + "chicken breasts", + "corn tortillas", + "tomatoes", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 42811, + "cuisine": "indian", + "ingredients": [ + "lime juice", + "sweet potatoes", + "chickpeas", + "olive oil", + "greek style plain yogurt", + "chopped cilantro fresh", + "kosher salt", + "unsalted butter", + "yellow onion", + "curry powder", + "jalapeno chilies", + "cayenne pepper" + ] + }, + { + "id": 15544, + "cuisine": "southern_us", + "ingredients": [ + "golden brown sugar", + "worcestershire sauce", + "lemon wedge", + "large shrimp", + "unsalted butter", + "fresh lemon juice", + "baguette", + "old bay seasoning" + ] + }, + { + "id": 20565, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "jalapeno chilies", + "vegetable oil", + "fresh lime juice", + "white vinegar", + "dried thyme", + "green onions", + "ground allspice", + "sugar", + "bay leaves", + "garlic", + "chicken thighs", + "soy sauce", + "barbecue sauce", + "salt", + "browning" + ] + }, + { + "id": 26826, + "cuisine": "spanish", + "ingredients": [ + "bread crumbs", + "fideos", + "salt", + "garlic cloves", + "pig", + "large eggs", + "bacon", + "salt pork", + "smoked ham hocks", + "water", + "dried beef", + "spanish chorizo", + "veal shanks", + "green cabbage", + "olive oil", + "smoked sweet Spanish paprika", + "dried chickpeas", + "flat leaf parsley" + ] + }, + { + "id": 6474, + "cuisine": "thai", + "ingredients": [ + "lime", + "rice noodles", + "thai chile", + "soy", + "sugar", + "Sriracha", + "basil", + "cucumber", + "fish sauce", + "peanuts", + "daikon", + "carrots", + "lime juice", + "sesame oil", + "cilantro", + "red bell pepper" + ] + }, + { + "id": 15681, + "cuisine": "italian", + "ingredients": [ + "bread crumb fresh", + "basil leaves", + "black olives", + "spaghetti", + "chopped tomatoes", + "balsamic vinegar", + "freshly ground pepper", + "ricotta salata", + "dry white wine", + "salt", + "sea scallops", + "extra-virgin olive oil", + "oil" + ] + }, + { + "id": 21751, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "fresh lemon juice", + "tuna steaks", + "salt", + "cucumber", + "cherry tomatoes", + "kalamata", + "bow-tie pasta", + "dried oregano", + "cooking spray", + "purple onion", + "feta cheese crumbles" + ] + }, + { + "id": 45342, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "bananas", + "chicken breasts", + "raisins", + "onions", + "tomato paste", + "kosher salt", + "cayenne", + "cinnamon", + "garlic", + "red potato", + "water", + "fresh thyme", + "butter", + "cardamom pods", + "granny smith apples", + "ground black pepper", + "vegetable oil", + "ginger", + "coriander" + ] + }, + { + "id": 8431, + "cuisine": "southern_us", + "ingredients": [ + "fresh ginger", + "cocktail cherries", + "clove", + "garlic", + "light brown sugar", + "dijon mustard", + "pineapple juice", + "virginia ham", + "pineapple" + ] + }, + { + "id": 16382, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "tortilla chips", + "salsa", + "cheese", + "black beans", + "hot sauce" + ] + }, + { + "id": 18763, + "cuisine": "mexican", + "ingredients": [ + "brown gravy mix", + "stewed tomatoes", + "sour cream", + "chili powder", + "chopped onion", + "corn tortilla chips", + "frozen corn kernels", + "ground turkey", + "shredded lettuce", + "elbow macaroni" + ] + }, + { + "id": 17476, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "sprinkles", + "garlic cloves", + "pitted kalamata olives", + "cooking spray", + "linguine", + "onions", + "olive oil", + "dry red wine", + "red bell pepper", + "black pepper", + "diced tomatoes", + "goat cheese" + ] + }, + { + "id": 33148, + "cuisine": "chinese", + "ingredients": [ + "pork belly", + "oil", + "dark soy sauce", + "light soy sauce", + "water", + "sugar", + "Shaoxing wine" + ] + }, + { + "id": 20649, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "pineapple", + "fresh mint", + "curry powder", + "yoghurt", + "mixed greens", + "ground cumin", + "lime", + "raisins", + "lemon juice", + "slivered almonds", + "honey mustard dressing", + "purple onion", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 35483, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "unsalted butter", + "salt", + "sugar", + "baking powder", + "sliced green onions", + "chiles", + "large eggs", + "all-purpose flour", + "baking soda", + "buttermilk" + ] + }, + { + "id": 8455, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "canned black beans", + "pineapple", + "ground cumin" + ] + }, + { + "id": 21293, + "cuisine": "british", + "ingredients": [ + "tumeric", + "butter", + "tarragon", + "salad", + "water", + "garlic cloves", + "arugula", + "eggs", + "olive oil", + "lemon juice", + "basmati rice", + "red lentils", + "black pepper", + "salt", + "onions" + ] + }, + { + "id": 29226, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "sugar", + "all-purpose flour", + "sweet potatoes", + "water", + "oil" + ] + }, + { + "id": 12794, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "salt", + "dried oregano", + "olive oil", + "black olives", + "scallions", + "orzo", + "fresh oregano", + "large shrimp", + "feta cheese", + "white wine vinegar", + "lemon juice" + ] + }, + { + "id": 30259, + "cuisine": "french", + "ingredients": [ + "verjus", + "extra-virgin olive oil", + "dijon mustard", + "mayonaise", + "parsley leaves", + "asparagus", + "fresh lemon juice" + ] + }, + { + "id": 27873, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "parsley", + "yellow onion", + "black pepper", + "marinara sauce", + "ground veal", + "garlic cloves", + "grated parmesan cheese", + "red pepper flakes", + "Italian seasoned breadcrumbs", + "kosher salt", + "whole milk", + "ground pork", + "ground beef" + ] + }, + { + "id": 31250, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "olive oil", + "large garlic cloves", + "juice", + "onions", + "black pepper", + "bay leaves", + "dried pappardelle", + "flat leaf parsley", + "tomatoes", + "medium dry sherry", + "heavy cream", + "hot water", + "fresh basil leaves", + "dried porcini mushrooms", + "parmigiano reggiano cheese", + "salt", + "white mushrooms" + ] + }, + { + "id": 7725, + "cuisine": "mexican", + "ingredients": [ + "horseradish root", + "chopped fresh thyme", + "white wine vinegar", + "coarse kosher salt", + "olive oil", + "dry red wine", + "crème fraîche", + "flour tortillas", + "cilantro sprigs", + "boneless rib eye steaks", + "honey", + "red wine vinegar", + "purple onion" + ] + }, + { + "id": 26351, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "chicken breasts", + "garlic cloves", + "low sodium soy sauce", + "cooking spray", + "salt", + "fresh lime juice", + "curry powder", + "vegetable oil", + "red bell pepper", + "cooked rice", + "peeled fresh ginger", + "pineapple juice", + "fresh pineapple" + ] + }, + { + "id": 49301, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "parsley", + "salt", + "whole wheat bread cubes", + "extra-virgin olive oil", + "fresh basil leaves", + "parmesan cheese", + "purple onion", + "oil cured olives", + "red wine vinegar", + "lemon juice" + ] + }, + { + "id": 40546, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "paprika", + "onions", + "eggs", + "olive oil", + "salt", + "milk", + "extra-virgin olive oil", + "bread crumbs", + "flour", + "ham" + ] + }, + { + "id": 48627, + "cuisine": "french", + "ingredients": [ + "swiss chard", + "crushed red pepper", + "black pepper", + "chopped fresh thyme", + "garlic cloves", + "soft goat's cheese", + "chopped fresh chives", + "salt", + "olive oil", + "whole grain bread", + "red bell pepper" + ] + }, + { + "id": 40273, + "cuisine": "spanish", + "ingredients": [ + "beef shank", + "carrots", + "black peppercorns", + "salt", + "onions", + "celery ribs", + "fresh thyme", + "fresh parsley", + "water", + "California bay leaves", + "short rib" + ] + }, + { + "id": 13260, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "cinnamon", + "fruit", + "whole milk", + "allspice", + "nutmeg", + "large eggs", + "dark brown sugar", + "dried currants", + "frozen pastry puff sheets", + "white sugar" + ] + }, + { + "id": 15173, + "cuisine": "greek", + "ingredients": [ + "egg substitute", + "salt", + "feta cheese crumbles", + "romaine lettuce", + "kalamata", + "croutons", + "olive oil", + "garlic cloves", + "dried oregano", + "pepper", + "purple onion", + "lemon juice" + ] + }, + { + "id": 17140, + "cuisine": "cajun_creole", + "ingredients": [ + "french bread", + "salt", + "lemon juice", + "worcestershire sauce", + "creole seasoning", + "butter", + "hot sauce", + "shrimp", + "ground black pepper", + "garlic", + "beer" + ] + }, + { + "id": 38093, + "cuisine": "italian", + "ingredients": [ + "diced tomatoes", + "white sugar", + "tomato sauce", + "salt", + "garlic", + "dried oregano", + "olive oil", + "onions" + ] + }, + { + "id": 23714, + "cuisine": "mexican", + "ingredients": [ + "powdered sugar", + "fine salt", + "pure vanilla extract", + "unsalted butter", + "ground almonds", + "ground cinnamon", + "large eggs", + "ground cardamom", + "ground cloves", + "all purpose unbleached flour" + ] + }, + { + "id": 20268, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "fresh ginger", + "salt", + "crushed tomatoes", + "butter", + "water", + "ground black pepper", + "cayenne pepper", + "dried lentils", + "fresh cilantro", + "heavy cream" + ] + }, + { + "id": 3481, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "mustard oil", + "chillies", + "garam masala", + "ginger", + "garlic cloves", + "methi", + "lemon", + "cardamom", + "coriander", + "yoghurt", + "salt", + "king prawns" + ] + }, + { + "id": 37615, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil cooking spray", + "biscuit mix", + "parsley flakes", + "garlic powder", + "reduced fat sharp cheddar cheese", + "margarine", + "skim milk" + ] + }, + { + "id": 32919, + "cuisine": "greek", + "ingredients": [ + "agave nectar", + "pecans", + "greek yogurt" + ] + }, + { + "id": 3693, + "cuisine": "southern_us", + "ingredients": [ + "granny smith apples", + "cooking spray", + "salt", + "chopped pecans", + "vidalia onion", + "dried thyme", + "unsweetened apple juice", + "rubbed sage", + "pepper", + "bourbon whiskey", + "maple syrup", + "cornbread stuffing mix", + "water", + "loin pork roast", + "all-purpose flour" + ] + }, + { + "id": 95, + "cuisine": "southern_us", + "ingredients": [ + "soy sauce", + "lemon juice", + "rib eye steaks", + "bourbon whiskey", + "water", + "brown sugar", + "worcestershire sauce" + ] + }, + { + "id": 2631, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "baking powder", + "peanut oil", + "red snapper", + "minced onion", + "lemon wedge", + "corn flour", + "parsley sprigs", + "large eggs", + "buttermilk", + "cornmeal", + "baking soda", + "ground red pepper", + "salt" + ] + }, + { + "id": 556, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "water", + "salsa", + "ground black pepper", + "pinto beans", + "reduced sodium chicken broth", + "garlic", + "cumin" + ] + }, + { + "id": 15743, + "cuisine": "mexican", + "ingredients": [ + "frozen chopped spinach", + "black olives", + "shredded Monterey Jack cheese", + "evaporated milk", + "salsa", + "pepper", + "salt", + "red wine vinegar", + "cream cheese" + ] + }, + { + "id": 26229, + "cuisine": "filipino", + "ingredients": [ + "pork", + "green onions", + "oil", + "onions", + "pepper", + "garlic", + "calamansi", + "cabbage", + "soy sauce", + "rice noodles", + "carrots", + "large shrimp", + "chicken stock", + "boneless chicken breast", + "salt", + "celery" + ] + }, + { + "id": 41416, + "cuisine": "southern_us", + "ingredients": [ + "barbecue sauce", + "mayonaise", + "salt", + "salad", + "baking potatoes", + "pickles", + "pork loin chops" + ] + }, + { + "id": 9386, + "cuisine": "greek", + "ingredients": [ + "fat free less sodium chicken broth", + "shallots", + "feta cheese crumbles", + "tomatoes", + "dry white wine", + "salt", + "olive oil", + "fresh tarragon", + "black pepper", + "boneless skinless chicken breasts", + "all-purpose flour" + ] + }, + { + "id": 22635, + "cuisine": "vietnamese", + "ingredients": [ + "Vietnamese coriander", + "sesame seeds", + "boneless skinless chicken breasts", + "rice vinegar", + "serrano chile", + "dressing", + "fresh cilantro", + "ground black pepper", + "garlic", + "fresh lime juice", + "chicken", + "water", + "palm sugar", + "sesame oil", + "fresh mint", + "coleslaw", + "green cabbage", + "nam pla", + "shredded carrots", + "unsalted dry roast peanuts", + "onions" + ] + }, + { + "id": 43842, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "serrano chile", + "fresh lemon juice", + "Thai fish sauce", + "garlic cloves" + ] + }, + { + "id": 25200, + "cuisine": "chinese", + "ingredients": [ + "brown mushroom", + "red cabbage", + "rice vinegar", + "dark soy sauce", + "sesame seeds", + "sesame oil", + "Yakisoba noodles", + "low sodium soy sauce", + "water", + "broccoli florets", + "scallions", + "brown sugar", + "Sriracha", + "garlic", + "carrots" + ] + }, + { + "id": 38035, + "cuisine": "british", + "ingredients": [ + "bicarbonate of soda", + "water", + "plain flour", + "vanilla essence", + "butter", + "demerara sugar", + "baking powder", + "eggs", + "sugar", + "double cream" + ] + }, + { + "id": 10329, + "cuisine": "chinese", + "ingredients": [ + "ground black pepper", + "broccoli", + "corn starch", + "soy sauce", + "rice wine", + "beef sirloin", + "cooking oil", + "sauce", + "cubed beef", + "water", + "garlic", + "oyster sauce" + ] + }, + { + "id": 9310, + "cuisine": "mexican", + "ingredients": [ + "chile pepper", + "egg whites", + "low fat monterey jack cheese", + "water", + "cornmeal", + "boneless skinless chicken breasts" + ] + }, + { + "id": 30629, + "cuisine": "mexican", + "ingredients": [ + "lean ground beef", + "ketchup", + "cold water", + "onions", + "taco seasoning mix" + ] + }, + { + "id": 7852, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "large garlic cloves", + "cream cheese", + "cremini mushrooms", + "butter", + "Italian turkey sausage", + "lower sodium chicken broth", + "olive oil", + "chopped onion", + "water", + "diced tomatoes", + "polenta" + ] + }, + { + "id": 15158, + "cuisine": "cajun_creole", + "ingredients": [ + "mushrooms", + "salt", + "medium shrimp", + "water", + "butter", + "red bell pepper", + "fat free less sodium chicken broth", + "cajun seasoning", + "all-purpose flour", + "half & half", + "linguine", + "flat leaf parsley" + ] + }, + { + "id": 59, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "granny smith apples", + "cream cheese", + "brown sugar", + "butter", + "cinnamon" + ] + }, + { + "id": 40706, + "cuisine": "russian", + "ingredients": [ + "raspberry jam", + "butter", + "semisweet chocolate", + "salt", + "eggs", + "flour", + "chopped walnuts", + "sugar", + "chocolate" + ] + }, + { + "id": 4523, + "cuisine": "italian", + "ingredients": [ + "vanilla", + "sugar", + "chocolate sauce", + "unflavored gelatin", + "salt", + "half & half", + "chocolate sprinkles" + ] + }, + { + "id": 40061, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "dried bonito flakes", + "daikon", + "mirin", + "konbu", + "ginger" + ] + }, + { + "id": 44631, + "cuisine": "mexican", + "ingredients": [ + "chicken breast halves", + "extra-virgin olive oil", + "freshly ground pepper", + "lime", + "cilantro", + "fresh oregano", + "orange", + "ancho powder", + "salt", + "chayotes", + "poblano", + "purple onion", + "garlic cloves" + ] + }, + { + "id": 42590, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "paprika", + "onions", + "flank steak", + "salt", + "bell pepper", + "garlic", + "cumin", + "soy sauce", + "chili powder", + "green chilies" + ] + }, + { + "id": 8020, + "cuisine": "thai", + "ingredients": [ + "ground chicken", + "panko", + "boneless skinless chicken breasts", + "chopped cilantro", + "lime", + "jalapeno chilies", + "salt", + "lemongrass", + "water chestnuts", + "vegetable oil", + "fish sauce", + "fresh ginger", + "green onions", + "freshly ground pepper" + ] + }, + { + "id": 16573, + "cuisine": "italian", + "ingredients": [ + "pasta", + "grated parmesan cheese", + "sweet italian sausage", + "spicy sausage", + "salt", + "tomatoes", + "garlic", + "olive oil", + "yellow onion" + ] + }, + { + "id": 5889, + "cuisine": "italian", + "ingredients": [ + "garlic", + "kosher salt", + "fresh rosemary", + "Italian bread", + "salted butter" + ] + }, + { + "id": 1926, + "cuisine": "filipino", + "ingredients": [ + "water", + "red pepper", + "oil", + "tomato sauce", + "minced onion", + "ground pork", + "noodles", + "tomato paste", + "evaporated milk", + "grating cheese", + "seasoning mix", + "minced garlic", + "hot dogs", + "salt" + ] + }, + { + "id": 44873, + "cuisine": "italian", + "ingredients": [ + "capers", + "kalamata", + "fresh basil", + "grated parmesan cheese", + "garlic cloves", + "green olives", + "italian plum tomatoes", + "olive oil", + "linguine" + ] + }, + { + "id": 24699, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "baking powder", + "all-purpose flour", + "ground black pepper", + "buttermilk", + "seasoning salt", + "vegetable shortening", + "sausages", + "melted butter", + "soda", + "salt" + ] + }, + { + "id": 28309, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "ground black pepper", + "extra-virgin olive oil", + "white wine", + "boneless chicken breast", + "fresh lemon juice", + "capers", + "unsalted butter", + "all-purpose flour", + "minced garlic", + "sea salt", + "fresh parsley" + ] + }, + { + "id": 10670, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "coriander seeds", + "cinnamon sticks", + "clove", + "white onion", + "vegetable oil", + "green cardamom pods", + "boneless chicken skinless thigh", + "bay leaves", + "black peppercorns", + "curry powder", + "red pepper flakes" + ] + }, + { + "id": 31790, + "cuisine": "italian", + "ingredients": [ + "lemon wedge", + "fresh oregano", + "ground black pepper", + "crushed red pepper flakes", + "flat leaf parsley", + "coarse salt", + "garlic cloves", + "dry white wine", + "extra-virgin olive oil", + "large shrimp" + ] + }, + { + "id": 35917, + "cuisine": "mexican", + "ingredients": [ + "onions", + "jalapeno chilies", + "vinegar", + "carrots" + ] + }, + { + "id": 8365, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "cornmeal", + "warm water", + "all-purpose flour", + "cold water", + "salt", + "egg whites" + ] + }, + { + "id": 28108, + "cuisine": "southern_us", + "ingredients": [ + "country ham", + "buttermilk", + "chicken", + "unsalted butter", + "corn starch", + "coarse salt", + "lard", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 9205, + "cuisine": "thai", + "ingredients": [ + "lime rind", + "broccoli florets", + "brown rice", + "anchovy paste", + "chopped cilantro fresh", + "fresh spinach", + "lemon grass", + "chicken breasts", + "large garlic cloves", + "rice vinegar", + "fish sauce", + "water", + "jalapeno chilies", + "vegetable oil", + "crushed red pepper", + "sugar", + "zucchini", + "shallots", + "diced tomatoes", + "gingerroot" + ] + }, + { + "id": 19608, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "whole wheat spaghetti", + "garlic", + "ground black pepper", + "kalamata", + "capers", + "red pepper flakes", + "salt", + "baby arugula", + "extra-virgin olive oil" + ] + }, + { + "id": 17386, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "cooking spray", + "salt", + "large egg yolks", + "1% low-fat milk", + "bittersweet chocolate", + "cream of tartar", + "granulated sugar", + "Dutch-processed cocoa powder", + "large egg whites", + "vanilla extract", + "all-purpose flour" + ] + }, + { + "id": 18604, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "fresh ginger root", + "hot chili powder", + "chinese five-spice powder", + "light soy sauce", + "sesame oil", + "all-purpose flour", + "Madras curry powder", + "green bell pepper", + "chicken breasts", + "garlic", + "bamboo shoots", + "garlic powder", + "butter", + "scallions" + ] + }, + { + "id": 16338, + "cuisine": "cajun_creole", + "ingredients": [ + "melted butter", + "sugar", + "decorating sugars", + "raisins", + "low-fat milk", + "powdered sugar", + "active dry yeast", + "cinnamon", + "lemon juice", + "eggs", + "warm water", + "bourbon whiskey", + "salt", + "nutmeg", + "brown sugar", + "flour", + "butter", + "dried cranberries" + ] + }, + { + "id": 32895, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "large eggs", + "all purpose unbleached flour", + "sugar", + "vegetable oil", + "salt", + "vegetable oil cooking spray", + "baking powder", + "buttermilk", + "baking soda", + "butter" + ] + }, + { + "id": 12980, + "cuisine": "japanese", + "ingredients": [ + "roasted white sesame seeds", + "dried bonito flakes", + "sugar", + "miso", + "sake", + "mirin", + "rice vinegar", + "soy sauce", + "apples" + ] + }, + { + "id": 10526, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "salt", + "plum tomatoes", + "water", + "cilantro", + "corn tortillas", + "romaine lettuce", + "ground red pepper", + "sour cream", + "mango", + "lime juice", + "purple onion", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 42777, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chinese roast pork", + "lard", + "eggs", + "peas", + "ham", + "cooked chicken", + "scallions", + "bamboo shoots", + "cooked rice", + "salt", + "shrimp" + ] + }, + { + "id": 39118, + "cuisine": "british", + "ingredients": [ + "milk", + "flour", + "butter", + "garlic cloves", + "cheddar cheese", + "parmigiano reggiano cheese", + "chives", + "worcestershire sauce", + "onions", + "pepper", + "potatoes", + "fresh thyme leaves", + "salt", + "tomato paste", + "olive oil", + "beef stock", + "red wine", + "ground beef" + ] + }, + { + "id": 44624, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "cooked chicken", + "garlic", + "bay leaf", + "water", + "chile pepper", + "tortilla chips", + "cumin", + "black pepper", + "chili powder", + "salt", + "onions", + "corn", + "tomatoes with juice", + "enchilada sauce" + ] + }, + { + "id": 16832, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "extra-virgin olive oil", + "dried oregano", + "grated lemon zest", + "ground black pepper", + "fresh lemon juice" + ] + }, + { + "id": 35297, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "ancho chile pepper", + "diced tomatoes", + "orange juice", + "serrano chile", + "lime juice", + "salt", + "chopped cilantro fresh", + "yellow bell pepper", + "poblano chiles", + "boiling water" + ] + }, + { + "id": 14293, + "cuisine": "moroccan", + "ingredients": [ + "warm water", + "unsalted butter", + "yeast", + "honey", + "baking powder", + "skim milk", + "large eggs", + "semolina", + "salt" + ] + }, + { + "id": 1769, + "cuisine": "italian", + "ingredients": [ + "salad greens", + "grated parmesan cheese", + "medium shrimp", + "basil pesto sauce", + "dijon mustard", + "purple onion", + "fat-free mayonnaise", + "olive oil", + "cracked black pepper", + "olive oil flavored cooking spray", + "baguette", + "low-fat buttermilk", + "garlic cloves" + ] + }, + { + "id": 12494, + "cuisine": "southern_us", + "ingredients": [ + "egg whites", + "cream cheese", + "butter", + "shredded sharp cheddar cheese", + "french bread" + ] + }, + { + "id": 13563, + "cuisine": "greek", + "ingredients": [ + "all potato purpos", + "salt", + "rosemary sprigs", + "extra-virgin olive oil", + "lemon", + "lamb", + "ground black pepper", + "artichokes" + ] + }, + { + "id": 46776, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "butter", + "grated lemon peel", + "dry white wine", + "linguine", + "green onions", + "whipping cream", + "large shrimp", + "clam juice", + "garlic cloves" + ] + }, + { + "id": 37145, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "salt", + "breakfast sausages", + "sharp cheddar cheese", + "baking powder", + "all-purpose flour", + "baking soda", + "buttermilk" + ] + }, + { + "id": 43276, + "cuisine": "italian", + "ingredients": [ + "fennel", + "clams, well scrub", + "cod", + "vermouth", + "bertolli vineyard premium collect marinara with burgundi wine sauc", + "seafood stock", + "mussels, well scrubbed", + "Bertolli® Classico Olive Oil", + "dry white wine", + "large shrimp" + ] + }, + { + "id": 34922, + "cuisine": "italian", + "ingredients": [ + "part-skim ricotta cheese", + "oven-ready lasagna noodles", + "fresh parmesan cheese", + "salt", + "cooking spray", + "tomato basil sauce", + "fresh basil", + "crushed red pepper" + ] + }, + { + "id": 29107, + "cuisine": "southern_us", + "ingredients": [ + "fresh cilantro", + "cheese", + "cheddar cheese", + "whole milk", + "boiling water", + "eggs", + "cherry tomatoes", + "salt", + "pinenuts", + "butter", + "grits" + ] + }, + { + "id": 21460, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "Italian parsley leaves", + "couscous", + "peaches", + "orange juice", + "ground nutmeg", + "garlic", + "light brown sugar", + "red wine vinegar", + "rotisserie chicken" + ] + }, + { + "id": 686, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "unsalted butter", + "heavy cream", + "kosher salt", + "ice water", + "pecan halves", + "granulated sugar", + "light corn syrup", + "pure vanilla extract", + "large egg yolks", + "all purpose unbleached flour" + ] + }, + { + "id": 37004, + "cuisine": "thai", + "ingredients": [ + "frozen shelled edamame", + "garlic powder", + "ground ginger", + "lime juice", + "cilantro", + "soy sauce", + "sesame oil", + "brown sugar", + "olive oil", + "Thai red curry paste" + ] + }, + { + "id": 7188, + "cuisine": "mexican", + "ingredients": [ + "ranch dressing", + "sour cream", + "avocado" + ] + }, + { + "id": 8296, + "cuisine": "spanish", + "ingredients": [ + "sherry vinegar", + "blanched almonds", + "seedless green grape", + "extra-virgin olive oil", + "shrimp", + "ice water", + "garlic cloves", + "baguette", + "salt" + ] + }, + { + "id": 8939, + "cuisine": "greek", + "ingredients": [ + "sugar", + "cocoa powder", + "milk", + "chocolate syrup", + "greek style plain yogurt" + ] + }, + { + "id": 19707, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "salt", + "extra-virgin olive oil", + "egg yolks", + "lemon juice", + "pepper", + "garlic" + ] + }, + { + "id": 39996, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic cloves", + "salt", + "fresh mint", + "flour tortillas", + "leg of lamb", + "pepper", + "sauce", + "dried oregano" + ] + }, + { + "id": 22024, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper", + "onions", + "fresh sage", + "cannellini beans", + "juice", + "plum tomatoes", + "kosher salt", + "garlic", + "escarole", + "cooking spray", + "hot Italian sausages", + "arugula" + ] + }, + { + "id": 39980, + "cuisine": "southern_us", + "ingredients": [ + "cream of tartar", + "baking powder", + "all-purpose flour", + "sugar", + "butter", + "eggs", + "cinnamon", + "milk", + "salt" + ] + }, + { + "id": 37252, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "unsalted butter", + "chocolate shavings", + "chocolate sandwich cookies", + "eggs", + "milk", + "egg yolks", + "vanilla extract", + "OREO® Cookies", + "kosher salt", + "brewed coffee", + "heavy cream", + "corn starch", + "dark chocolate", + "instant espresso powder", + "crumbs", + "cocoa powder" + ] + }, + { + "id": 27386, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "unsalted butter", + "California bay leaves", + "celery root", + "saffron threads", + "lump crab meat", + "yukon gold potatoes", + "shrimp", + "tomatoes", + "fennel bulb", + "juice", + "canola oil", + "celery ribs", + "curry powder", + "ginger", + "onions" + ] + }, + { + "id": 35037, + "cuisine": "italian", + "ingredients": [ + "milk", + "large eggs", + "sea salt", + "black pepper", + "parmesan cheese", + "mushrooms", + "garlic", + "nutmeg", + "large egg yolks", + "flour", + "basil", + "mozzarella cheese", + "unsalted butter", + "shallots", + "ricotta" + ] + }, + { + "id": 31288, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "corn starch", + "sugar", + "medium dry sherry", + "balsamic vinegar", + "minced garlic", + "vegetable oil", + "baby bok choy", + "peeled fresh ginger", + "beef tenderloin" + ] + }, + { + "id": 8250, + "cuisine": "mexican", + "ingredients": [ + "margarita salt", + "orange liqueur", + "lime wedges", + "ice", + "lime slices", + "fresh lime juice", + "powdered sugar", + "tequila" + ] + }, + { + "id": 11117, + "cuisine": "jamaican", + "ingredients": [ + "milk", + "salt", + "onions", + "callaloo", + "garlic cloves", + "pepper", + "butter", + "coconut milk", + "pumpkin", + "scallions" + ] + }, + { + "id": 9611, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "penne pasta", + "jumbo shrimp", + "butter", + "roma tomatoes", + "fresh parsley", + "bread crumbs", + "heavy cream" + ] + }, + { + "id": 39972, + "cuisine": "vietnamese", + "ingredients": [ + "chinese celery", + "shallots", + "medium shrimp", + "Vietnamese coriander", + "pork loin", + "fresh lime juice", + "sugar", + "peanuts", + "root vegetables", + "fish sauce", + "kosher salt", + "thai chile" + ] + }, + { + "id": 36227, + "cuisine": "french", + "ingredients": [ + "crimini mushrooms", + "onions", + "pepper", + "salt", + "italian seasoning", + "red wine", + "chicken thighs", + "olive oil", + "rice" + ] + }, + { + "id": 20857, + "cuisine": "spanish", + "ingredients": [ + "white wine", + "flour", + "grated nutmeg", + "peppercorns", + "clove", + "almonds", + "garlic", + "chopped parsley", + "meat stock", + "bread", + "olive oil", + "ground pork", + "lemon juice", + "saffron", + "eggs", + "minced onion", + "salt", + "ground beef" + ] + }, + { + "id": 46284, + "cuisine": "indian", + "ingredients": [ + "fenugreek", + "ginger", + "green pepper", + "chillies", + "coriander seeds", + "lemon", + "purple onion", + "cardamom", + "fresh coriander", + "chili powder", + "garlic", + "mustard oil", + "chicken thighs", + "garam masala", + "red pepper", + "salt", + "greek yogurt" + ] + }, + { + "id": 36217, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "beefsteak tomatoes", + "fresh basil leaves", + "olive oil", + "garlic", + "pepper", + "dry white wine", + "fettucine", + "zucchini", + "ground turkey" + ] + }, + { + "id": 37221, + "cuisine": "italian", + "ingredients": [ + "dark rum", + "brewed espresso", + "vanilla frozen yogurt", + "sugar" + ] + }, + { + "id": 10015, + "cuisine": "mexican", + "ingredients": [ + "lime", + "jalapeno chilies", + "ancho powder", + "olive oil", + "chili powder", + "cumin", + "jack", + "chicken breasts", + "salt", + "fresh cilantro", + "tortillas", + "red pepper flakes" + ] + }, + { + "id": 7196, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame seeds", + "corn starch", + "cold water", + "ketchup", + "chicken breasts", + "white vinegar", + "soy sauce", + "garlic powder", + "brown sugar", + "honey", + "salt" + ] + }, + { + "id": 8644, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "chopped celery", + "long-grain rice", + "black-eyed peas", + "salt", + "fresh parsley", + "lump crab meat", + "purple onion", + "fresh lemon juice", + "tomatoes", + "extra-virgin olive oil", + "hot sauce" + ] + }, + { + "id": 9626, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "apple cider vinegar", + "okra", + "chiles", + "fennel", + "crushed red pepper", + "tomatoes", + "water", + "chopped celery", + "ground white pepper", + "kosher salt", + "white wine vinegar", + "carrots" + ] + }, + { + "id": 8972, + "cuisine": "filipino", + "ingredients": [ + "curry powder", + "white rice", + "coconut milk", + "bay leaves", + "salt", + "tiger prawn", + "olive oil", + "garlic", + "onions", + "pepper", + "fully cooked ham", + "chicken leg quarters" + ] + }, + { + "id": 43883, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "Haas avocados", + "mild green chiles", + "chopped cilantro", + "low sodium black beans", + "chili powder", + "scallions", + "ground cumin", + "taco shells", + "red cabbage", + "salt", + "oregano", + "pico de gallo", + "garlic powder", + "red wine vinegar", + "chicken fingers" + ] + }, + { + "id": 33930, + "cuisine": "japanese", + "ingredients": [ + "rice vinegar", + "kosher salt", + "white sugar", + "sushi rice", + "oil", + "water" + ] + }, + { + "id": 29658, + "cuisine": "mexican", + "ingredients": [ + "gluten free corn tortillas", + "fat free greek yogurt", + "chopped cilantro", + "tomatoes", + "lime", + "hot sauce", + "chicken", + "avocado", + "shredded cheddar cheese", + "shredded lettuce", + "onions", + "refried black beans", + "chili powder", + "smoked paprika" + ] + }, + { + "id": 24814, + "cuisine": "british", + "ingredients": [ + "white wine", + "sour cream", + "white button mushrooms", + "garlic cloves", + "butter", + "finely chopped onion", + "fresh parsley" + ] + }, + { + "id": 11638, + "cuisine": "southern_us", + "ingredients": [ + "gruyere cheese", + "milk", + "grits", + "black pepper", + "salt", + "butter" + ] + }, + { + "id": 5684, + "cuisine": "irish", + "ingredients": [ + "sugar", + "buttermilk", + "baking soda", + "all-purpose flour", + "dark molasses", + "salt", + "ground ginger", + "unsalted butter" + ] + }, + { + "id": 16778, + "cuisine": "thai", + "ingredients": [ + "red pepper flakes", + "brown sugar", + "onions", + "dark soy sauce", + "coconut milk", + "chunky peanut butter" + ] + }, + { + "id": 27033, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "water", + "mushrooms", + "salt", + "onions", + "tomato sauce", + "vinegar", + "parsley", + "thyme", + "sage", + "brown sugar", + "curry powder", + "chili powder", + "sauce", + "oregano", + "ground chuck", + "bell pepper", + "garlic", + "bay leaf" + ] + }, + { + "id": 44706, + "cuisine": "korean", + "ingredients": [ + "medium-grain rice", + "cold water" + ] + }, + { + "id": 6784, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "salt", + "roma tomatoes", + "basil", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 45346, + "cuisine": "greek", + "ingredients": [ + "pepper", + "garlic", + "lemon juice", + "chicken broth", + "feta cheese", + "dill", + "olive oil", + "salt", + "onions", + "spinach", + "parsley", + "rice" + ] + }, + { + "id": 6066, + "cuisine": "french", + "ingredients": [ + "large eggs", + "unsalted butter", + "unsweetened cocoa powder", + "all-purpose flour", + "sugar", + "bittersweet chocolate" + ] + }, + { + "id": 28465, + "cuisine": "italian", + "ingredients": [ + "sugar", + "salt", + "unsalted butter", + "cherry preserves", + "large egg yolks", + "all-purpose flour", + "powdered sugar", + "large eggs", + "grated lemon peel" + ] + }, + { + "id": 15564, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "yellow onion", + "bone in skin on chicken thigh", + "ground cinnamon", + "ground black pepper", + "carrots", + "ground cumin", + "olive oil", + "ground coriander", + "seedless red grapes", + "picholine olives", + "ground red pepper", + "flat leaf parsley" + ] + }, + { + "id": 29819, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chicken broth", + "butter", + "minute rice", + "eggs", + "onions" + ] + }, + { + "id": 31953, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "all-purpose flour", + "boiling water", + "ground cinnamon", + "unsalted butter", + "fresh lemon juice", + "brown sugar", + "baking powder", + "corn starch", + "ground nutmeg", + "salt", + "white sugar" + ] + }, + { + "id": 26642, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "butter", + "chopped fresh thyme", + "dry white wine", + "wild mushrooms", + "grated parmesan cheese", + "vegetable broth" + ] + }, + { + "id": 36103, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "garam masala", + "salt", + "peeled tomatoes", + "ginger", + "onions", + "tumeric", + "vegetable oil", + "hot water", + "honey", + "garlic" + ] + }, + { + "id": 5336, + "cuisine": "southern_us", + "ingredients": [ + "water", + "ground nutmeg", + "cayenne pepper", + "pork", + "olive oil", + "salt", + "red bell pepper", + "diced onions", + "seasoning salt", + "onion powder", + "rubbed sage", + "pepper", + "garlic powder", + "lima beans" + ] + }, + { + "id": 27338, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "half & half", + "tomato sauce", + "herbs", + "penne pasta", + "chicken broth", + "boneless chicken breast", + "garlic", + "pesto", + "flour" + ] + }, + { + "id": 41809, + "cuisine": "mexican", + "ingredients": [ + "all-purpose flour", + "baking powder", + "water", + "lard", + "salt" + ] + }, + { + "id": 36257, + "cuisine": "italian", + "ingredients": [ + "shredded cheddar cheese", + "sliced mushrooms", + "hamburger", + "lasagna noodles", + "ragu", + "shredded mozzarella cheese" + ] + }, + { + "id": 26709, + "cuisine": "british", + "ingredients": [ + "large eggs", + "corn starch", + "sugar", + "vanilla extract", + "ladyfingers", + "2% reduced-fat milk", + "grated orange", + "tawny port", + "fresh raspberries" + ] + }, + { + "id": 14747, + "cuisine": "italian", + "ingredients": [ + "dried sage", + "whipping cream", + "olive oil", + "large garlic cloves", + "sweet italian sausage", + "fettucine", + "shallots", + "crushed red pepper", + "grated parmesan cheese", + "diced tomatoes" + ] + }, + { + "id": 24357, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "lime", + "vegetable oil", + "pastry", + "corn husks", + "cotija", + "parmesan cheese", + "chile powder", + "ricotta salata", + "cayenne" + ] + }, + { + "id": 1103, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "water", + "vegetable oil", + "okra", + "brown sugar", + "coriander seeds", + "cilantro leaves", + "cinnamon sticks", + "chicken legs", + "curry powder", + "large garlic cloves", + "fresh lemon juice", + "fennel seeds", + "dry roasted peanuts", + "cayenne", + "gingerroot", + "boiling potatoes" + ] + }, + { + "id": 40505, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "linguine", + "red bell pepper", + "half & half", + "salt", + "parmigiano reggiano cheese", + "garlic", + "extra-virgin olive oil", + "freshly ground pepper" + ] + }, + { + "id": 29573, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "butter", + "fresh shiitake mushrooms", + "butternut squash", + "chopped fresh sage", + "pappardelle pasta", + "baby spinach" + ] + }, + { + "id": 29265, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "sweet potatoes", + "mustard seeds", + "garam masala", + "salt", + "onions", + "water", + "chili powder", + "coconut milk", + "curry leaves", + "coriander powder", + "oil" + ] + }, + { + "id": 24839, + "cuisine": "cajun_creole", + "ingredients": [ + "red pepper hot sauce", + "salami", + "pimento stuffed green olives", + "half & half", + "ham", + "refrigerated crescent rolls", + "flat leaf parsley", + "eggs", + "provolone cheese", + "oregano" + ] + }, + { + "id": 38472, + "cuisine": "italian", + "ingredients": [ + "slivered almonds", + "large eggs", + "salt", + "amaretto liqueur", + "brandy", + "anise", + "grated lemon peel", + "ground cinnamon", + "sugar", + "baking powder", + "all-purpose flour", + "grated orange peel", + "baking soda", + "vanilla extract" + ] + }, + { + "id": 27120, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "eggplant", + "stewed tomatoes", + "ground coriander", + "kosher salt", + "cayenne", + "vegetable broth", + "toasted almonds", + "diced onions", + "olive oil", + "zucchini", + "garlic", + "ground cumin", + "dried currants", + "garbanzo beans", + "cauliflower florets", + "carrots" + ] + }, + { + "id": 35032, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "baking soda", + "candy", + "peanuts", + "sauce", + "sugar", + "butter", + "karo syrup" + ] + }, + { + "id": 25232, + "cuisine": "mexican", + "ingredients": [ + "dinner rolls", + "crema mexican", + "sirloin tip", + "kosher salt", + "vegetable oil", + "avocado", + "lime", + "ancho powder", + "jack cheese", + "jalapeno chilies" + ] + }, + { + "id": 20056, + "cuisine": "japanese", + "ingredients": [ + "sake", + "flank steak", + "soy sauce", + "scallions", + "sugar", + "vegetable oil", + "mirin" + ] + }, + { + "id": 47026, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "grape juice", + "kosher salt", + "crushed red pepper", + "boneless skinless chicken breast halves", + "seedless green grape", + "dry white wine", + "onions", + "ground cumin", + "olive oil", + "ground coriander", + "chopped cilantro fresh" + ] + }, + { + "id": 37021, + "cuisine": "indian", + "ingredients": [ + "sugar", + "fresh lemon juice", + "milk", + "plain yogurt", + "salt" + ] + }, + { + "id": 39967, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "cayenne pepper", + "minced ginger", + "vegetable oil", + "onions", + "boneless skinless chicken breasts", + "cumin seed", + "chopped tomatoes", + "garlic", + "ground turmeric" + ] + }, + { + "id": 49687, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "shredded cabbage", + "cilantro leaves", + "shrimp", + "garlic paste", + "lime juice", + "garlic sauce", + "garlic cloves", + "red chili powder", + "pepper", + "marinade", + "oil", + "mayonaise", + "flour tortillas", + "salt", + "carrots" + ] + }, + { + "id": 186, + "cuisine": "spanish", + "ingredients": [ + "tomato purée", + "water", + "green pepper", + "oil", + "pork sausages", + "pork", + "peas", + "chopped onion", + "shrimp", + "chicken", + "cockles", + "artichoke hearts", + "rice", + "garlic cloves", + "chorizo sausage", + "crawfish", + "salt", + "squid", + "bay leaf" + ] + }, + { + "id": 21954, + "cuisine": "indian", + "ingredients": [ + "water", + "cumin seed", + "semolina flour", + "all-purpose flour", + "chutney", + "red chili powder", + "salt", + "oil", + "plain yogurt", + "chickpeas", + "boiling potatoes" + ] + }, + { + "id": 21092, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "chopped green chilies", + "garlic", + "chicken broth", + "boneless chicken breast", + "onions", + "lime", + "cilantro", + "cooked rice", + "rotelle" + ] + }, + { + "id": 22371, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "corn", + "vegetable oil", + "cilantro sprigs", + "fermented black beans", + "minced garlic", + "soft tofu", + "ground sichuan pepper", + "scallions", + "soy sauce", + "shiitake", + "red pepper", + "salt", + "water", + "bean paste", + "ginger", + "toasted sesame oil" + ] + }, + { + "id": 20014, + "cuisine": "italian", + "ingredients": [ + "eggs", + "milk", + "fresh mozzarella", + "bread crumbs", + "ground black pepper", + "tomato sauce", + "olive oil", + "kosher salt", + "boneless chicken breast" + ] + }, + { + "id": 4168, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "salt", + "green beans", + "yukon gold potatoes", + "garlic cloves", + "bay leaf", + "tentacles", + "freshly ground pepper", + "chopped parsley", + "extra-virgin olive oil", + "carrots", + "onions" + ] + }, + { + "id": 5316, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "corn tortillas", + "avocado", + "rotisserie chicken", + "Herdez Salsa Casera", + "oil", + "purple onion" + ] + }, + { + "id": 35088, + "cuisine": "british", + "ingredients": [ + "large egg yolks", + "vanilla", + "white bread", + "butter", + "whole milk", + "whipping cream", + "sugar", + "raisins" + ] + }, + { + "id": 38480, + "cuisine": "french", + "ingredients": [ + "fresh sage", + "fresh thyme leaves", + "thyme sprigs", + "new potatoes", + "extra-virgin olive oil", + "sage leaves", + "shallots", + "salt", + "pepper", + "red wine vinegar" + ] + }, + { + "id": 49176, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "worcestershire sauce", + "dried thyme", + "cajun seasoning", + "chicken", + "kosher salt", + "Tabasco Pepper Sauce", + "all-purpose flour", + "olive oil", + "buttermilk" + ] + }, + { + "id": 37177, + "cuisine": "french", + "ingredients": [ + "chicken bouillon granules", + "water", + "baking powder", + "salt", + "cream", + "mushrooms", + "deli ham", + "asparagus spears", + "eggs", + "milk", + "swiss cheese", + "all-purpose flour", + "shredded cheddar cheese", + "chives", + "butter", + "canola oil" + ] + }, + { + "id": 39088, + "cuisine": "russian", + "ingredients": [ + "eggs", + "black pepper", + "salt", + "pickles", + "green peas", + "fresh dill", + "potatoes", + "mayonaise", + "boneless skinless chicken breasts" + ] + }, + { + "id": 30760, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "salt", + "stewed tomatoes", + "onions", + "chili powder", + "ground beef", + "tomato sauce", + "garlic", + "dried oregano" + ] + }, + { + "id": 37797, + "cuisine": "southern_us", + "ingredients": [ + "white corn", + "salted butter", + "worcestershire sauce", + "butter beans", + "fresh tomatoes", + "minced garlic", + "barbecue sauce", + "cayenne pepper", + "Texas Pete Hot Sauce", + "ground black pepper", + "sea salt", + "homemade chicken stock", + "sweet onion", + "meat", + "sweet mustard" + ] + }, + { + "id": 40083, + "cuisine": "filipino", + "ingredients": [ + "black pepper", + "raisins", + "carrots", + "frozen peas", + "fish sauce", + "bell pepper", + "yellow onion", + "cooking fat", + "green bell pepper", + "potatoes", + "sea salt", + "chicken livers", + "tomato sauce", + "pork loin", + "garlic cloves", + "bay leaf" + ] + }, + { + "id": 47627, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "ground sirloin", + "dry bread crumbs", + "spaghetti", + "pecorino cheese", + "ground black pepper", + "coarse sea salt", + "flat leaf parsley", + "eggs", + "water", + "large garlic cloves", + "yellow onion", + "dried oregano", + "tomato sauce", + "grated parmesan cheese", + "extra-virgin olive oil", + "fresh basil leaves" + ] + }, + { + "id": 26806, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "water", + "hot pepper sauce", + "salt", + "celery", + "tomato sauce", + "dried thyme", + "bay leaves", + "bacon grease", + "onions", + "brown sugar", + "dried basil", + "chopped green bell pepper", + "cayenne pepper", + "medium shrimp", + "minced garlic", + "ground black pepper", + "green onions", + "carrots", + "dried rosemary" + ] + }, + { + "id": 17419, + "cuisine": "mexican", + "ingredients": [ + "pork chops", + "pickled jalapenos", + "monterey jack", + "flour tortillas", + "vegetables" + ] + }, + { + "id": 3235, + "cuisine": "thai", + "ingredients": [ + "reduced sodium chicken broth", + "vegetable oil", + "large shrimp", + "unsweetened coconut milk", + "broccolini", + "corn starch", + "water", + "salt", + "sugar", + "Sriracha", + "long grain white rice" + ] + }, + { + "id": 34093, + "cuisine": "french", + "ingredients": [ + "min", + "beef", + "beef broth", + "flat leaf parsley", + "stew", + "pepper", + "quinces", + "carrots", + "bay leaf", + "parsnips", + "fresh thyme", + "garlic cloves", + "celery", + "red potato", + "meal", + "hanger steak", + "cubed beef", + "onions" + ] + }, + { + "id": 36683, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "black beans", + "low sodium chicken broth", + "salt", + "andouille sausage", + "almond butter", + "brown rice", + "onions", + "brown sugar", + "minced garlic", + "boneless skinless chicken breasts", + "creole seasoning", + "tomato paste", + "tomato sauce", + "cayenne", + "diced tomatoes", + "sliced green onions" + ] + }, + { + "id": 24278, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "water", + "lettuce leaves", + "chopped onion", + "shrimp", + "tofu", + "pork", + "annatto seeds", + "crushed garlic", + "garlic cloves", + "lumpia skins", + "sugar", + "garbanzo beans", + "shredded cabbage", + "oil", + "corn starch", + "string beans", + "soy sauce", + "potatoes", + "salt", + "carrots" + ] + }, + { + "id": 3659, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "sugar", + "salted roast peanuts", + "light corn syrup", + "baking soda" + ] + }, + { + "id": 39259, + "cuisine": "southern_us", + "ingredients": [ + "egg whites", + "chopped pecans", + "light brown sugar", + "salt", + "vanilla extract", + "ground cinnamon", + "all-purpose flour" + ] + }, + { + "id": 7047, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cilantro leaves", + "chinese red rice vinegar", + "sesame oil", + "ginger" + ] + }, + { + "id": 30407, + "cuisine": "chinese", + "ingredients": [ + "diced onions", + "ground black pepper", + "corn starch", + "shortening", + "salt", + "beansprouts", + "cold water", + "pork loin", + "hot water", + "soy sauce", + "diced celery", + "white sugar" + ] + }, + { + "id": 21225, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "large eggs", + "garlic", + "ground black pepper", + "sesame oil", + "medium shrimp", + "Sriracha", + "ginger", + "won ton wrappers", + "green onions", + "cream cheese" + ] + }, + { + "id": 22135, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "peeled fresh ginger", + "fresh lime juice", + "reduced fat firm tofu", + "curry powder", + "crushed red pepper", + "chopped cilantro fresh", + "molasses", + "vegetable oil", + "chopped fresh mint", + "low sodium soy sauce", + "cooking spray", + "garlic cloves", + "cooked vermicelli" + ] + }, + { + "id": 9858, + "cuisine": "mexican", + "ingredients": [ + "chile pepper", + "cheese spread", + "condensed cream of mushroom soup" + ] + }, + { + "id": 41843, + "cuisine": "southern_us", + "ingredients": [ + "white bread", + "minced garlic", + "chopped celery", + "fresh parsley", + "black pepper", + "vegetable oil", + "dry bread crumbs", + "eggs", + "chopped green bell pepper", + "salt", + "sliced green onions", + "crawfish", + "cajun seasoning", + "chopped onion" + ] + }, + { + "id": 43526, + "cuisine": "chinese", + "ingredients": [ + "spring roll wrappers", + "sesame seeds", + "vegetable oil", + "rice vinegar", + "toasted sesame oil", + "water", + "hoisin sauce", + "ginger", + "carrots", + "soy sauce", + "shiitake", + "red pepper", + "scallions", + "savoy cabbage", + "fresh ginger", + "green onions", + "salt", + "corn starch" + ] + }, + { + "id": 25406, + "cuisine": "mexican", + "ingredients": [ + "white hominy", + "stewed tomatoes", + "chili", + "chicken breast halves", + "dried oregano", + "water", + "radishes", + "grated jack cheese", + "hot pepper sauce", + "shredded lettuce", + "sliced green onions" + ] + }, + { + "id": 35211, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "japanese rice", + "rice vinegar", + "salt", + "sake" + ] + }, + { + "id": 39719, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "sugar", + "salt", + "baking soda", + "salted peanuts", + "cayenne", + "dr. pepper" + ] + }, + { + "id": 38987, + "cuisine": "italian", + "ingredients": [ + "eggs", + "baking powder", + "grated parmesan cheese", + "oil", + "fresh basil", + "all-purpose flour", + "cold water", + "pumpkin" + ] + }, + { + "id": 30086, + "cuisine": "italian", + "ingredients": [ + "sliced black olives", + "italian salad dressing", + "cucumber", + "broccoli", + "tomatoes", + "rotini" + ] + }, + { + "id": 34992, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salt", + "onions", + "pepper", + "white rice", + "red bell pepper", + "green bell pepper", + "jalapeno chilies", + "hot sauce", + "cumin", + "olive oil", + "white cheddar cheese", + "sour cream" + ] + }, + { + "id": 8385, + "cuisine": "southern_us", + "ingredients": [ + "ground red pepper", + "all-purpose flour", + "paprika", + "salt", + "butter", + "sharp cheddar cheese" + ] + }, + { + "id": 1306, + "cuisine": "southern_us", + "ingredients": [ + "cake batter", + "pecans" + ] + }, + { + "id": 37903, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "steak", + "beef", + "yellow peppers", + "chopped tomatoes", + "onions", + "rosemary", + "garlic cloves", + "olives" + ] + }, + { + "id": 45116, + "cuisine": "cajun_creole", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "jalapeno chilies", + "butter", + "non-fat sour cream", + "garlic cloves", + "shredded Monterey Jack cheese", + "crawfish", + "green onions", + "yellow bell pepper", + "salt", + "corn tortillas", + "chopped green bell pepper", + "chili powder", + "1% low-fat milk", + "all-purpose flour", + "dried oregano", + "black pepper", + "cooking spray", + "paprika", + "purple onion", + "red bell pepper" + ] + }, + { + "id": 6175, + "cuisine": "thai", + "ingredients": [ + "cooking spray", + "red bell pepper", + "dressing", + "flank steak", + "peeled fresh ginger", + "coleslaw", + "pepper", + "salt" + ] + }, + { + "id": 44586, + "cuisine": "chinese", + "ingredients": [ + "beef", + "sesame oil", + "garlic", + "frozen broccoli", + "fresh pineapple", + "soy sauce", + "hoisin sauce", + "ginger", + "rice vinegar", + "carrots", + "honey", + "green onions", + "raw cashews", + "pineapple juice", + "toasted sesame seeds", + "baby bok choy", + "zucchini", + "red pepper", + "boneless skinless chicken", + "creamy peanut butter", + "sesame chili oil" + ] + }, + { + "id": 625, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "dried thyme", + "garlic", + "freshly ground pepper", + "green bell pepper", + "chicken breasts", + "hot sauce", + "fresh parsley", + "tomatoes", + "olive oil", + "salt", + "bay leaf", + "andouille sausage", + "worcestershire sauce", + "chopped onion", + "long grain white rice" + ] + }, + { + "id": 45592, + "cuisine": "indian", + "ingredients": [ + "crushed red pepper", + "white vinegar", + "hot water", + "sugar", + "serrano chile", + "purple onion" + ] + }, + { + "id": 2297, + "cuisine": "british", + "ingredients": [ + "russet potatoes", + "saffron", + "cod fillets", + "fresh herbs", + "olive oil", + "whipping cream", + "balsamic vinegar", + "arugula" + ] + }, + { + "id": 15871, + "cuisine": "brazilian", + "ingredients": [ + "tomato paste", + "water", + "french bread", + "lemon", + "bay leaf", + "fish fillets", + "olive oil", + "ground red pepper", + "ground coriander", + "tomatoes", + "oysters", + "dry white wine", + "crabmeat", + "onions", + "green bell pepper", + "ground nutmeg", + "parsley", + "garlic cloves" + ] + }, + { + "id": 20417, + "cuisine": "southern_us", + "ingredients": [ + "crushed tomatoes", + "diced tomatoes", + "creole seasoning", + "dried oregano", + "turnips", + "vegetables", + "garlic", + "green beans", + "dried thyme", + "vegetable broth", + "okra", + "baby lima beans", + "ground black pepper", + "hot smoked paprika", + "onions" + ] + }, + { + "id": 37062, + "cuisine": "mexican", + "ingredients": [ + "colby cheese", + "bacon", + "green onions", + "waffle fries", + "sour cream" + ] + }, + { + "id": 34147, + "cuisine": "cajun_creole", + "ingredients": [ + "honey", + "butter", + "ground black pepper", + "paprika", + "red chili powder", + "pork tenderloin", + "salt", + "water", + "cajun seasoning", + "dried oregano" + ] + }, + { + "id": 41387, + "cuisine": "southern_us", + "ingredients": [ + "nutmeg", + "cinnamon", + "milk", + "salt", + "water", + "butter", + "sweet potatoes", + "grits" + ] + }, + { + "id": 30436, + "cuisine": "italian", + "ingredients": [ + "broccoli florets", + "skate", + "water", + "garlic cloves", + "chicken broth", + "extra-virgin olive oil", + "pasta shell small", + "fresh lemon juice" + ] + }, + { + "id": 39688, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "olive oil", + "sea salt", + "chinese five-spice powder", + "milk", + "chili paste", + "grated nutmeg", + "chicken wings", + "ground black pepper", + "salt", + "garlic cloves", + "ground ginger", + "honey", + "flour", + "cayenne pepper" + ] + }, + { + "id": 10936, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "green pepper", + "eggs", + "cooked bacon", + "onions", + "red pepper", + "cream cheese", + "pepper", + "salt", + "corn kernel whole" + ] + }, + { + "id": 40776, + "cuisine": "korean", + "ingredients": [ + "mirin", + "rice wine", + "Gochujang base", + "pork loin", + "garlic", + "bok choy", + "cooking oil", + "ginger", + "white sesame seeds", + "green onions", + "purple onion" + ] + }, + { + "id": 42589, + "cuisine": "french", + "ingredients": [ + "capers", + "finely chopped fresh parsley", + "penne pasta", + "cherry tomatoes", + "black olives", + "tuna packed in water", + "red wine vinegar", + "green beans", + "olive oil", + "salt" + ] + }, + { + "id": 9011, + "cuisine": "southern_us", + "ingredients": [ + "frozen blackberries", + "butter", + "flour", + "water", + "sugar", + "refrigerated piecrusts" + ] + }, + { + "id": 40375, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "garlic", + "sea salt", + "olive oil", + "white wine vinegar" + ] + }, + { + "id": 34685, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "whole milk", + "taco seasoning", + "ground beef", + "green chile", + "chili", + "salt", + "enchilada sauce", + "eggs", + "shredded cheddar cheese", + "baking powder", + "garlic cloves", + "corn bread", + "brown sugar", + "olive oil", + "all-purpose flour", + "cornmeal" + ] + }, + { + "id": 25816, + "cuisine": "mexican", + "ingredients": [ + "condensed cream of chicken soup", + "processed cheese", + "ground cumin", + "evaporated milk", + "sour cream", + "shredded cheddar cheese", + "chile pepper", + "flour tortillas", + "chicken" + ] + }, + { + "id": 47375, + "cuisine": "thai", + "ingredients": [ + "rice stick noodles", + "lime", + "peeled shrimp", + "peanut oil", + "fish sauce", + "napa cabbage", + "tamarind paste", + "garlic cloves", + "eggs", + "honey", + "rice vinegar", + "scallions", + "fresh cilantro", + "red pepper flakes", + "roasted peanuts", + "mung bean sprouts" + ] + }, + { + "id": 40418, + "cuisine": "cajun_creole", + "ingredients": [ + "powdered sugar", + "dry yeast", + "whole milk", + "all-purpose flour", + "kosher salt", + "large eggs", + "vanilla extract", + "hot water", + "sugar", + "lemon zest", + "sprinkles", + "fresh lemon juice", + "ground cinnamon", + "unsalted butter", + "egg yolks", + "cake flour" + ] + }, + { + "id": 45247, + "cuisine": "irish", + "ingredients": [ + "kosher salt", + "freshly ground pepper", + "large eggs", + "dried fig", + "unsalted butter", + "boiling water", + "cheddar cheese", + "all-purpose flour" + ] + }, + { + "id": 27649, + "cuisine": "thai", + "ingredients": [ + "olive oil", + "chunky peanut butter", + "garlic", + "rice paper", + "salt and ground black pepper", + "napa cabbage", + "fresh lime juice", + "fresh ginger", + "sesame oil", + "hot sauce", + "shredded carrots", + "teriyaki sauce", + "medium shrimp" + ] + }, + { + "id": 27707, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "cinnamon sticks", + "clove", + "green cardamom", + "basmati rice", + "salt", + "onions", + "water", + "cumin seed" + ] + }, + { + "id": 35290, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "garlic", + "cucumber", + "sugar", + "green onions", + "rice vinegar", + "hard-boiled egg", + "buckwheat noodles", + "toasted sesame oil", + "soy sauce", + "red pepper", + "Gochujang base" + ] + }, + { + "id": 30600, + "cuisine": "chinese", + "ingredients": [ + "spring onions", + "salt", + "onions", + "black pepper", + "cornflour", + "garlic cloves", + "dark soy sauce", + "chicken breasts", + "green pepper", + "black bean sauce", + "chicken stock cubes", + "toasted sesame oil" + ] + }, + { + "id": 32677, + "cuisine": "italian", + "ingredients": [ + "cayenne", + "roma tomatoes", + "vine ripened tomatoes", + "yellow bell pepper", + "red bell pepper", + "japanese eggplants", + "yellow squash", + "zucchini", + "chile pepper", + "paprika", + "carrots", + "onions", + "pepper", + "poblano peppers", + "basil leaves", + "basil", + "salt", + "celery", + "olive oil", + "fresh thyme", + "crushed garlic", + "button mushrooms", + "smoked paprika", + "oregano" + ] + }, + { + "id": 28064, + "cuisine": "thai", + "ingredients": [ + "cooking oil", + "ground chicken breast", + "fresh chile", + "fish sauce", + "lettuce leaves", + "garlic", + "low sodium soy sauce", + "jalapeno chilies", + "cilantro", + "lime", + "shallots", + "purple onion" + ] + }, + { + "id": 38246, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "garlic", + "dried oregano", + "green bell pepper", + "dried thyme", + "celery", + "tomato sauce", + "diced tomatoes", + "onions", + "tomato paste", + "dried basil", + "sausage meat", + "dried rosemary" + ] + }, + { + "id": 6400, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "chopped fresh sage", + "low salt chicken broth", + "dried porcini mushrooms", + "dry white wine", + "carrots", + "onions", + "olive oil", + "chopped celery", + "shanks", + "boiling water", + "fresh rosemary", + "leeks", + "garlic cloves", + "flat leaf parsley" + ] + }, + { + "id": 18083, + "cuisine": "jamaican", + "ingredients": [ + "cooking oil", + "scallions", + "ground black pepper", + "butter", + "water", + "callaloo", + "onions", + "fresh thyme", + "salt" + ] + }, + { + "id": 20387, + "cuisine": "greek", + "ingredients": [ + "flatbread", + "cherry tomatoes", + "fresh oregano", + "large shrimp", + "romaine lettuce", + "low-fat greek yogurt", + "fresh lemon juice", + "black pepper", + "purple onion", + "cucumber", + "fresh dill", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 31973, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "chile pepper", + "onions", + "garam masala", + "poppy seeds", + "ground turmeric", + "water", + "vegetable oil", + "boneless skinless chicken breast halves", + "chili powder", + "salt" + ] + }, + { + "id": 36667, + "cuisine": "french", + "ingredients": [ + "butter", + "large eggs", + "unsweetened cocoa powder", + "vanilla sugar", + "all-purpose flour", + "unsalted butter", + "salt" + ] + }, + { + "id": 34304, + "cuisine": "french", + "ingredients": [ + "haricots verts", + "shallots", + "salt", + "peeled tomatoes", + "butter", + "flat leaf parsley", + "dry white wine", + "littleneck clams", + "fettucine", + "clam juice", + "garlic cloves" + ] + }, + { + "id": 36083, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "butter", + "peaches", + "vanilla", + "sugar", + "buttermilk", + "pie crust", + "flour" + ] + }, + { + "id": 41535, + "cuisine": "thai", + "ingredients": [ + "green curry paste", + "pea eggplants", + "coconut milk", + "red chili peppers", + "sweet potatoes", + "pineapple", + "lemongrass", + "basil leaves", + "filet", + "chicken stock", + "eggplant", + "shrimp paste", + "galangal" + ] + }, + { + "id": 40905, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "apple cider vinegar", + "cream cheese", + "country ham", + "dijon mustard", + "salt", + "toasted pecans", + "large eggs", + "peach preserves", + "vidalia onion", + "peaches", + "fat free greek yogurt", + "fresh parsley" + ] + }, + { + "id": 9640, + "cuisine": "japanese", + "ingredients": [ + "seeds", + "garlic", + "ground turmeric", + "water", + "lemon", + "oil", + "fish", + "chili powder", + "salt", + "cumin", + "coriander seeds", + "ginger", + "gram flour" + ] + }, + { + "id": 39831, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "pasta shells", + "cooking oil", + "ground beef", + "canned chopped tomatoes", + "salt", + "pesto", + "grated parmesan cheese", + "onions" + ] + }, + { + "id": 34659, + "cuisine": "greek", + "ingredients": [ + "water", + "garlic", + "ground lamb", + "ground cinnamon", + "potatoes", + "lemon juice", + "pasta", + "olive oil", + "salt", + "pepper", + "onion powder", + "dried oregano" + ] + }, + { + "id": 14672, + "cuisine": "southern_us", + "ingredients": [ + "mint", + "fresh mint", + "unsweetened iced tea", + "Madeira", + "simple syrup", + "lemonade", + "flavored vodka" + ] + }, + { + "id": 48423, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "coarse sea salt", + "carrots", + "flank steak", + "ras el hanout", + "ground cumin", + "vegetable oil", + "lemon juice", + "kosher salt", + "paprika", + "flat leaf parsley" + ] + }, + { + "id": 46762, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "diced green chilies", + "chili powder", + "scallions", + "cumin", + "kosher salt", + "flour tortillas", + "diced tomatoes", + "smoked paprika", + "black beans", + "Mexican cheese blend", + "lean ground beef", + "enchilada sauce", + "frozen sweet corn", + "olive oil", + "sliced olives", + "yellow onion", + "chopped cilantro" + ] + }, + { + "id": 26668, + "cuisine": "french", + "ingredients": [ + "grated parmesan cheese", + "olive oil", + "fresh basil leaves", + "garlic" + ] + }, + { + "id": 34683, + "cuisine": "japanese", + "ingredients": [ + "curry leaves", + "tamarind pulp", + "cilantro leaves", + "mustard seeds", + "ground turmeric", + "red chili peppers", + "chili powder", + "cumin seed", + "toor dal", + "asafetida", + "tomatoes", + "coriander powder", + "green chilies", + "onions", + "masala", + "water", + "salt", + "oil", + "jaggery" + ] + }, + { + "id": 842, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "salt", + "chopped cilantro fresh", + "jamaican jerk rub", + "red bell pepper", + "olive oil", + "shrimp", + "mango", + "avocado", + "purple onion", + "fresh lime juice" + ] + }, + { + "id": 26977, + "cuisine": "japanese", + "ingredients": [ + "ground black pepper", + "carrots", + "cabbage", + "eggs", + "vegetable oil", + "cooked white rice", + "green onions", + "beansprouts", + "soy sauce", + "green peas", + "pork sausages" + ] + }, + { + "id": 32123, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "boneless skinless chicken breast halves", + "wine", + "garlic", + "grapes", + "feta cheese crumbles", + "pitted kalamata olives", + "salt and ground black pepper" + ] + }, + { + "id": 7374, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "large garlic cloves", + "peeled tomatoes", + "lamb stew meat", + "fresh marjoram", + "feta cheese", + "orzo", + "baby lima beans", + "dry white wine", + "onions" + ] + }, + { + "id": 43236, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salt", + "melted butter", + "baking powder", + "low-fat cottage cheese", + "all-purpose flour", + "eggs", + "chile pepper" + ] + }, + { + "id": 8323, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "large eggs", + "Italian bread", + "black pepper", + "finely chopped onion", + "grated nutmeg", + "frozen spinach", + "dijon mustard", + "salt", + "milk", + "parmigiano reggiano cheese", + "grated Gruyère cheese" + ] + }, + { + "id": 6875, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "russet potatoes", + "olive oil", + "large garlic cloves", + "tomatoes", + "fresh thyme", + "onions", + "eggplant", + "thyme sprigs" + ] + }, + { + "id": 32066, + "cuisine": "british", + "ingredients": [ + "rolled oats", + "muscovado sugar", + "ground ginger", + "ground nutmeg", + "treacle", + "vegan margarine", + "whole wheat flour" + ] + }, + { + "id": 40849, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "cider vinegar", + "honey", + "beef cheek", + "sweet paprika", + "chiles", + "fresh cilantro", + "cilantro", + "salt", + "instant espresso", + "avocado", + "sugar", + "lime", + "garlic", + "beets", + "cumin", + "natural peanut butter", + "water", + "olive oil", + "purple onion", + "corn tortillas" + ] + }, + { + "id": 24897, + "cuisine": "thai", + "ingredients": [ + "green bell pepper", + "thai basil", + "rice noodles", + "tequila", + "tomatoes", + "brown sugar", + "chicken breasts", + "thai chile", + "fish sauce", + "green onions", + "butter", + "dark soy sauce", + "light soy sauce", + "sesame oil", + "garlic" + ] + }, + { + "id": 24403, + "cuisine": "thai", + "ingredients": [ + "chile powder", + "Thai fish sauce", + "tamarind", + "water", + "palm sugar" + ] + }, + { + "id": 14099, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "fresh parsley", + "large eggs", + "all-purpose flour", + "eggplant", + "vegetable oil", + "grated parmesan cheese", + "Italian seasoned breadcrumbs" + ] + }, + { + "id": 33778, + "cuisine": "filipino", + "ingredients": [ + "tomato paste", + "ground pepper", + "garlic", + "bay leaf", + "water", + "vegetable oil", + "cayenne pepper", + "ground cinnamon", + "chicken breasts", + "salt", + "onions", + "curry powder", + "ginger", + "coconut milk" + ] + }, + { + "id": 29126, + "cuisine": "indian", + "ingredients": [ + "amchur", + "garlic", + "chicken thighs", + "chili powder", + "green chilies", + "tamarind water", + "salt", + "fresh coriander", + "vegetable oil", + "onions" + ] + }, + { + "id": 36808, + "cuisine": "spanish", + "ingredients": [ + "water", + "bacon", + "onions", + "green bell pepper", + "Tabasco Pepper Sauce", + "garlic", + "chili powder", + "stewed tomatoes", + "kosher salt", + "worcestershire sauce", + "long-grain rice" + ] + }, + { + "id": 16200, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "garlic", + "onions", + "pepper", + "bay leaves", + "ham", + "leeks", + "salt", + "pork sausages", + "dried thyme", + "bacon slices", + "chopped parsley" + ] + }, + { + "id": 45719, + "cuisine": "mexican", + "ingredients": [ + "shredded Monterey Jack cheese", + "flour tortillas", + "green chile", + "Pace Picante Sauce" + ] + }, + { + "id": 29203, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "chili powder", + "salt", + "dried leaves oregano", + "shredded cheddar cheese", + "Old El Paso™ chopped green chiles", + "corn tortillas", + "ground cumin", + "plain yogurt", + "vegetable oil", + "rotisserie chicken", + "chopped cilantro fresh", + "finely chopped onion", + "cilantro", + "fresh lime juice" + ] + }, + { + "id": 22132, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "pepper", + "shanks", + "collard greens", + "carrots", + "SYD Hot Rub", + "onions" + ] + }, + { + "id": 43597, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "lemon juice", + "salt", + "cooking spray", + "dried oregano", + "black pepper", + "lamb loin chops" + ] + }, + { + "id": 24293, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "sauce", + "green cabbage" + ] + }, + { + "id": 31254, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "fleur de sel", + "radishes", + "white sandwich bread", + "coarse salt", + "hothouse cucumber", + "watercress" + ] + }, + { + "id": 8445, + "cuisine": "french", + "ingredients": [ + "salad greens", + "black olives", + "fresh lemon juice", + "salmon fillets", + "cooking spray", + "caesar salad dressing", + "ground black pepper", + "purple onion", + "capers", + "french bread", + "salt" + ] + }, + { + "id": 18631, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "wild mushrooms", + "unsalted butter", + "broccoli", + "chicken stock", + "salt", + "shallots", + "freshly ground pepper" + ] + }, + { + "id": 9756, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "bacon slices", + "freshly ground pepper", + "olive oil", + "white beans", + "corn bread", + "ham steak", + "salt", + "garlic cloves", + "celery ribs", + "unsalted butter", + "yellow onion" + ] + }, + { + "id": 39024, + "cuisine": "southern_us", + "ingredients": [ + "cheese", + "onions", + "peeled deveined shrimp", + "garlic chili sauce", + "chicken", + "tomato paste", + "garlic", + "celery root", + "bacon", + "thyme" + ] + }, + { + "id": 34670, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "apples", + "extra sharp cheddar cheese", + "brown sugar", + "lemon", + "all-purpose flour", + "ground cinnamon", + "baking powder", + "fine sea salt", + "unsalted butter", + "buttermilk", + "corn starch" + ] + }, + { + "id": 12028, + "cuisine": "japanese", + "ingredients": [ + "ginger", + "green onions", + "sesame oil", + "dashi", + "medium firm tofu" + ] + }, + { + "id": 45704, + "cuisine": "korean", + "ingredients": [ + "ground black pepper", + "ginger", + "brown sugar", + "green onions", + "lean steak", + "Sriracha", + "garlic", + "soy sauce", + "sesame oil", + "toasted sesame seeds" + ] + }, + { + "id": 3206, + "cuisine": "indian", + "ingredients": [ + "water", + "coriander powder", + "raisins", + "carrots", + "celery ribs", + "olive oil", + "potatoes", + "garlic", + "cashew nuts", + "curry powder", + "zucchini", + "apples", + "onions", + "parsnips", + "fresh ginger root", + "beef for stew", + "chinese five-spice powder", + "ground turmeric" + ] + }, + { + "id": 3154, + "cuisine": "vietnamese", + "ingredients": [ + "frozen chopped spinach", + "hot pepper sauce", + "vegetable oil", + "black pepper", + "green onions", + "salt", + "chicken stock", + "hoisin sauce", + "garlic", + "shrimp stock", + "fresh ginger root", + "rice noodles", + "medium shrimp" + ] + }, + { + "id": 2125, + "cuisine": "italian", + "ingredients": [ + "green beans", + "pesto sauce", + "linguini", + "red potato", + "vegan parmesan cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 30447, + "cuisine": "vietnamese", + "ingredients": [ + "flour", + "ginger", + "warm water", + "napa cabbage", + "salt", + "dough", + "green onions", + "grated carrot", + "shiitake", + "ground pork", + "oil" + ] + }, + { + "id": 36255, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "garlic", + "dried oregano", + "ground black pepper", + "ricotta cheese", + "elbow macaroni", + "salami", + "salt", + "cooking oil", + "summer squash", + "sun-dried tomatoes in oil" + ] + }, + { + "id": 3811, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "oil", + "capsicum", + "teas", + "onions", + "tomatoes", + "boneless chicken" + ] + }, + { + "id": 18004, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "frozen pizza dough", + "diced tomatoes", + "zucchini", + "dried oregano", + "olive oil", + "black olives" + ] + }, + { + "id": 22320, + "cuisine": "thai", + "ingredients": [ + "steamed rice", + "oil", + "fish sauce", + "garlic", + "fresh pineapple", + "shrimp paste", + "shrimp", + "dark soy sauce", + "cilantro", + "cashew nuts" + ] + }, + { + "id": 28591, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "salt", + "duck breasts", + "purple onion", + "stock", + "anise", + "flat leaf parsley", + "smoked bacon", + "green split peas" + ] + }, + { + "id": 42682, + "cuisine": "jamaican", + "ingredients": [ + "fresh ginger", + "water", + "sugar", + "lime juice" + ] + }, + { + "id": 6684, + "cuisine": "italian", + "ingredients": [ + "risotto", + "peanut oil", + "fresh mozzarella", + "large eggs", + "panko breadcrumbs", + "basil pesto sauce", + "all-purpose flour" + ] + }, + { + "id": 31570, + "cuisine": "italian", + "ingredients": [ + "frozen whole kernel corn", + "salt", + "sliced green onions", + "pepper", + "cooking spray", + "red bell pepper", + "zucchini", + "salsa", + "egg substitute", + "chili powder", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 34604, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "Tabasco Pepper Sauce", + "scallions", + "grits", + "chicken broth", + "ground black pepper", + "button mushrooms", + "fresh lemon juice", + "parmesan cheese", + "bacon", + "garlic cloves", + "canola oil", + "kosher salt", + "unsalted butter", + "hot sauce", + "medium shrimp" + ] + }, + { + "id": 48304, + "cuisine": "filipino", + "ingredients": [ + "tomato paste", + "pepper", + "salt", + "onions", + "sugar", + "cheese", + "oil", + "tomato sauce", + "hot dogs", + "beef broth", + "spaghetti", + "ketchup", + "garlic", + "ground beef" + ] + }, + { + "id": 2399, + "cuisine": "italian", + "ingredients": [ + "sugar", + "dough", + "large eggs", + "eggs" + ] + }, + { + "id": 15966, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "short-grain rice", + "garlic", + "large shrimp", + "mussels", + "chorizo", + "paprika", + "fresh parsley", + "chicken broth", + "olive oil", + "yellow bell pepper", + "plum tomatoes", + "saffron threads", + "kosher salt", + "chicken breast halves", + "purple onion" + ] + }, + { + "id": 41716, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "thai chile", + "coconut milk", + "paprika", + "salt", + "green papaya", + "cooking oil", + "garlic", + "onions", + "spinach", + "ginger", + "green chilies", + "chicken" + ] + }, + { + "id": 23959, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "cake flour", + "lemon vodka", + "baking powder", + "grated lemon zest", + "sugar", + "large eggs", + "salt", + "water", + "fresh thyme leaves", + "fresh lemon juice" + ] + }, + { + "id": 1590, + "cuisine": "mexican", + "ingredients": [ + "honey", + "yams", + "butter", + "white sugar" + ] + }, + { + "id": 34433, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "cognac", + "salt", + "onions", + "heavy cream", + "chicken livers", + "chicken broth", + "ground allspice" + ] + }, + { + "id": 36801, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "self rising flour", + "shortening", + "salt", + "butter" + ] + }, + { + "id": 25272, + "cuisine": "greek", + "ingredients": [ + "finely chopped onion", + "freshly ground pepper", + "salt", + "feta cheese crumbles", + "flank steak", + "garlic cloves", + "dry bread crumbs", + "olive oil flavored cooking spray" + ] + }, + { + "id": 31968, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "plum tomatoes", + "yellow squash", + "cooking spray", + "Italian bread", + "parmesan cheese", + "salt", + "fresh parsley", + "zucchini", + "red bell pepper" + ] + }, + { + "id": 33176, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "orange bell pepper", + "serrano chile", + "kosher salt", + "large garlic cloves", + "white onion", + "red wine vinegar", + "olive oil", + "flat leaf parsley" + ] + }, + { + "id": 36444, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "olive oil", + "fresh lime juice", + "minced garlic", + "flour for dusting", + "white wine", + "meat" + ] + }, + { + "id": 21376, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "lemongrass", + "yukon gold potatoes", + "garlic", + "galangal", + "water", + "shrimp paste", + "light coconut milk", + "coconut cream", + "fish sauce", + "curry powder", + "shallots", + "thai chile", + "ground coriander", + "tumeric", + "fresh cilantro", + "ginger", + "salt", + "chuck" + ] + }, + { + "id": 44660, + "cuisine": "mexican", + "ingredients": [ + "water", + "salsa", + "taco sauce", + "low sodium taco seasoning", + "shredded cheese", + "lettuce", + "beef", + "hot sauce", + "taco shells", + "diced tomatoes", + "sour cream" + ] + }, + { + "id": 2956, + "cuisine": "mexican", + "ingredients": [ + "tilapia fillets", + "lime wedges", + "corn tortillas", + "canola oil", + "brown sugar", + "jalapeno chilies", + "paprika", + "chopped cilantro fresh", + "avocado", + "garlic powder", + "reduced-fat sour cream", + "fresh lime juice", + "ground cumin", + "white onion", + "ground red pepper", + "salt", + "dried oregano" + ] + }, + { + "id": 40488, + "cuisine": "french", + "ingredients": [ + "almond flour", + "ice water", + "apricot jam", + "honey", + "butter", + "corn starch", + "cider vinegar", + "almond extract", + "all-purpose flour", + "turbinado", + "fresh thyme leaves", + "salt", + "apricots" + ] + }, + { + "id": 10232, + "cuisine": "chinese", + "ingredients": [ + "honey", + "red food coloring", + "soy sauce", + "pork tenderloin", + "oil", + "sugar", + "hoisin sauce", + "chinese five-spice powder", + "light soy sauce", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 1970, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "garam masala", + "cilantro", + "brown cardamom", + "basmati rice", + "white vinegar", + "water", + "chile pepper", + "salt", + "bay leaf", + "ginger paste", + "pepper", + "dried mint flakes", + "garlic", + "cinnamon sticks", + "chicken", + "tomatoes", + "olive oil", + "yellow food coloring", + "green cardamom", + "onions" + ] + }, + { + "id": 18566, + "cuisine": "jamaican", + "ingredients": [ + "ground black pepper", + "green onions", + "garlic", + "thyme", + "tomatoes", + "salted fish", + "yellow bell pepper", + "butter oil", + "cayenne", + "ackee", + "salt", + "onions", + "green bell pepper, slice", + "red pepper", + "ground allspice", + "thick-cut bacon" + ] + }, + { + "id": 29878, + "cuisine": "southern_us", + "ingredients": [ + "grated parmesan cheese", + "salt", + "butter", + "yellow hominy", + "grits", + "water", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 13324, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "hot pepper", + "garlic", + "lentils", + "basmati rice", + "cauliflower", + "garam masala", + "paprika", + "cayenne pepper", + "chopped cilantro", + "plain yogurt", + "vegetable oil", + "salt", + "mustard seeds", + "ground cumin", + "tomatoes", + "bell pepper", + "ginger", + "cumin seed", + "onions" + ] + }, + { + "id": 45068, + "cuisine": "japanese", + "ingredients": [ + "dressing", + "oil", + "broccoli", + "soy sauce", + "round steaks" + ] + }, + { + "id": 45082, + "cuisine": "mexican", + "ingredients": [ + "pasta", + "coarse salt", + "chopped cilantro fresh", + "olive oil", + "garlic", + "chicken broth", + "diced tomatoes", + "ground black pepper", + "onions" + ] + }, + { + "id": 26120, + "cuisine": "japanese", + "ingredients": [ + "water", + "ginger purée", + "corn starch", + "sake", + "mirin", + "soy sauce", + "white sugar" + ] + }, + { + "id": 25317, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "coriander seeds", + "shallots", + "fresh mushrooms", + "thyme", + "kosher salt", + "unsalted butter", + "extra-virgin olive oil", + "California bay leaves", + "black pepper", + "sherry vinegar", + "chopped fresh thyme", + "mixed greens", + "flat leaf parsley", + "brown chicken stock", + "minced garlic", + "leeks", + "goat cheese", + "carrots" + ] + }, + { + "id": 30193, + "cuisine": "mexican", + "ingredients": [ + "shredded lettuce", + "ground beef", + "tomato juice", + "taco seasoning", + "diced onions", + "diced tomatoes", + "fat-free cheddar cheese", + "chipotles in adobo" + ] + }, + { + "id": 46519, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "shortening", + "salt", + "ground cinnamon", + "all purpose unbleached flour", + "water", + "white sugar" + ] + }, + { + "id": 19352, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "corn", + "baking powder", + "onions", + "eggs", + "cream style corn", + "oil", + "light sour cream", + "salted butter", + "salt", + "sugar", + "flour", + "chopped parsley" + ] + }, + { + "id": 37607, + "cuisine": "italian", + "ingredients": [ + "grated orange peel", + "vegetable oil spray", + "whole milk", + "all-purpose flour", + "whole almonds", + "walnut pieces", + "unsalted butter", + "salt", + "powdered sugar", + "ground cloves", + "baking soda", + "anise", + "ground cinnamon", + "sugar", + "large egg yolks", + "golden raisins", + "grated lemon peel" + ] + }, + { + "id": 47668, + "cuisine": "greek", + "ingredients": [ + "plain yogurt", + "extra-virgin olive oil", + "fresh lemon juice", + "bread", + "red wine vinegar", + "purple onion", + "hothouse cucumber", + "boneless, skinless chicken breast", + "garlic", + "dried oregano", + "fresh tomatoes", + "lemon", + "salt" + ] + }, + { + "id": 47788, + "cuisine": "mexican", + "ingredients": [ + "chopped cilantro", + "tomatillos", + "large garlic cloves", + "water", + "serrano chile" + ] + }, + { + "id": 28185, + "cuisine": "indian", + "ingredients": [ + "whitefish fillets", + "rice", + "vegetable stock", + "curry paste", + "vegetable oil", + "garlic cloves", + "canned tomatoes", + "onions" + ] + }, + { + "id": 28134, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "oil", + "coarse salt", + "flour", + "squid" + ] + }, + { + "id": 26293, + "cuisine": "cajun_creole", + "ingredients": [ + "homemade chicken stock", + "unsalted butter", + "extra-virgin olive oil", + "celery", + "green bell pepper", + "crushed tomatoes", + "coarse salt", + "yellow onion", + "boneless chicken skinless thigh", + "fresh thyme", + "all-purpose flour", + "bay leaf", + "andouille sausage", + "ground black pepper", + "white rice", + "okra" + ] + }, + { + "id": 36991, + "cuisine": "french", + "ingredients": [ + "large eggs", + "pastry dough", + "semisweet chocolate" + ] + }, + { + "id": 14272, + "cuisine": "russian", + "ingredients": [ + "mushrooms", + "beef broth", + "onions", + "olive oil", + "diced tomatoes", + "garlic cloves", + "dried thyme", + "top sirloin steak", + "cayenne pepper", + "egg noodles", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 30974, + "cuisine": "italian", + "ingredients": [ + "part-skim ricotta cheese", + "ground black pepper", + "olive oil flavored cooking spray", + "dough", + "provolone cheese", + "broccoli florets", + "chicken" + ] + }, + { + "id": 35504, + "cuisine": "chinese", + "ingredients": [ + "pork baby back ribs", + "Sriracha", + "garlic", + "carrots", + "honey", + "green onions", + "rice vinegar", + "water", + "hoisin sauce", + "tamari soy sauce", + "onions", + "clove", + "sesame seeds", + "ginger", + "oyster sauce" + ] + }, + { + "id": 31628, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "leeks", + "beef tenderloin", + "oyster sauce", + "sugar", + "cooking oil", + "sesame oil", + "salt", + "dark soy sauce", + "water", + "marinade", + "garlic", + "corn starch", + "soy sauce", + "Shaoxing wine", + "ginger", + "Maggi" + ] + }, + { + "id": 12305, + "cuisine": "thai", + "ingredients": [ + "chili", + "fusilli", + "fresh basil leaves", + "eggplant", + "gingerroot", + "cherry tomatoes", + "vegetable oil", + "chopped garlic", + "unsweetened coconut milk", + "fresh shiitake mushrooms", + "scallions" + ] + }, + { + "id": 42821, + "cuisine": "moroccan", + "ingredients": [ + "finely chopped fresh parsley", + "fresh lemon juice", + "olive oil", + "beets", + "kosher salt", + "purple onion", + "chopped cilantro fresh", + "ground black pepper", + "cumin seed" + ] + }, + { + "id": 6692, + "cuisine": "brazilian", + "ingredients": [ + "manioc flour", + "salt", + "peanuts", + "light brown sugar", + "condensed milk" + ] + }, + { + "id": 21182, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "thai basil", + "hoisin sauce", + "star anise", + "cinnamon sticks", + "clove", + "white onion", + "hot pepper sauce", + "rice noodles", + "salt", + "chopped cilantro fresh", + "sugar", + "fresh ginger root", + "green onions", + "beef tenderloin", + "beansprouts", + "black peppercorns", + "lime", + "beef", + "daikon", + "yellow onion" + ] + }, + { + "id": 17867, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "white rice", + "vegetable oil", + "green bell pepper", + "enchilada sauce" + ] + }, + { + "id": 11415, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "ground red pepper", + "lamb chops", + "cinnamon sticks", + "saffron", + "tomatoes", + "milk", + "vegetable oil", + "black cardamom pods", + "onions", + "garlic paste", + "cooking oil", + "salt", + "lemon juice", + "basmati rice", + "clove", + "water", + "chile pepper", + "cilantro leaves", + "fresh mint", + "ginger paste" + ] + }, + { + "id": 31894, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "flour tortillas", + "salsa", + "mayonaise", + "boneless skinless chicken breasts", + "iceberg lettuce", + "romaine lettuce", + "green onions", + "salad dressing", + "shredded cheddar cheese", + "ranch dressing" + ] + }, + { + "id": 46960, + "cuisine": "italian", + "ingredients": [ + "feta cheese", + "whole wheat penne", + "pesto", + "roasted tomatoes", + "fresh basil", + "lemon", + "minced garlic", + "baby broccoli" + ] + }, + { + "id": 13842, + "cuisine": "spanish", + "ingredients": [ + "peach schnapps", + "white wine", + "frozen lemonade concentrate", + "nectarines", + "red grape" + ] + }, + { + "id": 43767, + "cuisine": "irish", + "ingredients": [ + "irish bacon", + "vegetable oil", + "eggs", + "black pudding", + "soda bread", + "potato bread", + "tomatoes", + "sausages" + ] + }, + { + "id": 22698, + "cuisine": "french", + "ingredients": [ + "large eggs", + "salt", + "unsalted butter", + "heavy cream", + "fresh lemon juice", + "sugar", + "whole milk", + "all-purpose flour", + "Nutella", + "vanilla extract" + ] + }, + { + "id": 39477, + "cuisine": "italian", + "ingredients": [ + "milk", + "chopped celery", + "petite peas", + "genoa salami", + "green onions", + "sour cream", + "sliced black olives", + "salad dressing mix", + "mayonaise", + "fusilli", + "fresh parsley" + ] + }, + { + "id": 5617, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "olive oil", + "cooking spray", + "salt", + "ground beef", + "minced garlic", + "finely chopped onion", + "cilantro", + "enchilada sauce", + "dried oregano", + "tomato paste", + "dried basil", + "flour tortillas", + "prepar salsa", + "Mexican cheese", + "ground cumin", + "tomato sauce", + "ground black pepper", + "chili powder", + "beef broth", + "chopped cilantro fresh" + ] + }, + { + "id": 37616, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "short-grain rice", + "garlic cloves", + "wild mushrooms", + "tofu", + "water", + "salt", + "cucumber", + "avocado", + "olive oil", + "rice vinegar", + "nori", + "soy sauce", + "ginger", + "shrimp", + "fish" + ] + }, + { + "id": 1263, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "avocado", + "plum tomatoes", + "minced garlic", + "fresh lime juice" + ] + }, + { + "id": 25234, + "cuisine": "southern_us", + "ingredients": [ + "water", + "light corn syrup", + "pure vanilla extract", + "baking soda", + "Fisher Pecans", + "salted butter", + "salt", + "ground cinnamon", + "granulated sugar" + ] + }, + { + "id": 16655, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "hoisin sauce", + "szechwan peppercorns", + "garlic", + "sugar", + "dry roasted peanuts", + "boneless skinless chicken breasts", + "balsamic vinegar", + "onions", + "pepper", + "green onions", + "sesame oil", + "corn starch", + "red chili peppers", + "water", + "rice wine", + "ginger", + "canola oil" + ] + }, + { + "id": 41318, + "cuisine": "indian", + "ingredients": [ + "crushed tomatoes", + "boneless skinless chicken breasts", + "salt", + "tumeric", + "fresh ginger", + "1% low-fat milk", + "cumin", + "fresh cilantro", + "chili powder", + "onions", + "fat free yogurt", + "garam masala", + "garlic", + "canola oil" + ] + }, + { + "id": 47607, + "cuisine": "italian", + "ingredients": [ + "Campbell's Condensed Cream of Mushroom Soup", + "broccoli florets", + "ground black pepper", + "butter", + "milk", + "boneless skinless chicken breasts", + "grated parmesan cheese", + "linguine" + ] + }, + { + "id": 6715, + "cuisine": "greek", + "ingredients": [ + "tahini", + "garlic", + "spring water", + "sea salt", + "lemon", + "garbanzo beans", + "paprika" + ] + }, + { + "id": 45563, + "cuisine": "russian", + "ingredients": [ + "honey", + "whipping cream", + "slivered almonds", + "poppy seeds", + "whole wheat cereal", + "raisins", + "chopped walnuts", + "water", + "vanilla", + "boiling water" + ] + }, + { + "id": 2780, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "queso fresco", + "garlic cloves", + "dried oregano", + "white onion", + "corn oil", + "salt", + "bay leaf", + "fresca", + "low sodium chicken broth", + "tomatillos", + "corn tortillas", + "shredded Monterey Jack cheese", + "dried thyme", + "vegetable oil", + "serrano", + "chopped cilantro fresh" + ] + }, + { + "id": 4357, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "sprinkles", + "bread", + "deli ham", + "roasted red peppers", + "crushed red pepper", + "spinach leaves", + "low-fat mayonnaise" + ] + }, + { + "id": 16756, + "cuisine": "french", + "ingredients": [ + "mayonaise", + "asparagus", + "worcestershire sauce", + "condensed cream of chicken soup", + "ground nutmeg", + "fully cooked ham", + "eggs", + "milk", + "cooked chicken", + "heavy whipping cream", + "sugar", + "grated parmesan cheese", + "all-purpose flour" + ] + }, + { + "id": 16867, + "cuisine": "french", + "ingredients": [ + "salted butter", + "mie", + "gruyere cheese", + "ham" + ] + }, + { + "id": 26527, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "garbanzo beans", + "fresh lemon juice", + "romaine lettuce", + "tapenade", + "olive oil", + "purple onion", + "pita bread", + "feta cheese" + ] + }, + { + "id": 49337, + "cuisine": "filipino", + "ingredients": [ + "russet potatoes", + "pork bouillon cube", + "canola oil", + "green bell pepper", + "garlic", + "bay leaf", + "tomato sauce", + "carrots", + "pork shoulder", + "water", + "red bell pepper", + "onions" + ] + }, + { + "id": 40577, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "shredded cheddar cheese", + "green onions", + "salt", + "cotija", + "roma tomatoes", + "cilantro", + "sour cream", + "Old El Paso Enchilada Sauce", + "lime", + "flank steak", + "taco seasoning", + "pepper", + "french fri frozen", + "garlic" + ] + }, + { + "id": 20997, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "leg of lamb", + "fine sea salt", + "dry red wine", + "fresh rosemary", + "garlic cloves" + ] + }, + { + "id": 24153, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "cooked rigatoni", + "cream cheese, soften", + "black pepper", + "fresh parmesan cheese", + "salt", + "tomatoes", + "olive oil", + "purple onion", + "fresh basil leaves", + "fat free less sodium chicken broth", + "balsamic vinegar", + "garlic cloves" + ] + }, + { + "id": 29899, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "flour for dusting", + "pizza sauce", + "prosciutto", + "rocket leaves", + "pizza doughs" + ] + }, + { + "id": 10491, + "cuisine": "mexican", + "ingredients": [ + "yellow bell pepper", + "freshly ground pepper", + "tomatoes", + "salt", + "chipotle peppers", + "extra-virgin olive oil", + "red bell pepper", + "zucchini", + "yellow onion", + "olive oil flavored cooking spray" + ] + }, + { + "id": 20938, + "cuisine": "french", + "ingredients": [ + "shallots", + "unsalted butter", + "tarragon", + "sea scallops", + "white wine vinegar", + "dry white wine" + ] + }, + { + "id": 37212, + "cuisine": "italian", + "ingredients": [ + "parsley sprigs", + "olive oil", + "cutlet", + "all-purpose flour", + "tomato paste", + "seasoned bread crumbs", + "fresh parmesan cheese", + "diced tomatoes", + "fresh parsley", + "sugar", + "part-skim mozzarella cheese", + "balsamic vinegar", + "garlic cloves", + "fresh basil", + "large egg whites", + "ground black pepper", + "salt" + ] + }, + { + "id": 8202, + "cuisine": "italian", + "ingredients": [ + "white sugar", + "water", + "lemon", + "vodka" + ] + }, + { + "id": 43177, + "cuisine": "vietnamese", + "ingredients": [ + "fresh basil", + "olive oil", + "grated carrot", + "garlic cloves", + "dry roasted peanuts", + "large eggs", + "salt", + "chopped cilantro fresh", + "sugar", + "hoisin sauce", + "crushed red pepper", + "fresh lime juice", + "bean threads", + "water", + "cooking spray", + "english cucumber" + ] + }, + { + "id": 48128, + "cuisine": "southern_us", + "ingredients": [ + "granulated garlic", + "ground red pepper", + "sharp cheddar cheese", + "ground black pepper", + "salt", + "extra sharp cheddar cheese", + "milk", + "butter", + "elbow macaroni", + "half & half", + "all-purpose flour" + ] + }, + { + "id": 38329, + "cuisine": "indian", + "ingredients": [ + "lime", + "salt", + "ground cumin", + "tomatoes", + "chile pepper", + "crushed pineapple", + "fresh ginger root", + "cilantro leaves", + "water", + "vegetable oil", + "cumin seed" + ] + }, + { + "id": 38484, + "cuisine": "filipino", + "ingredients": [ + "coconut milk", + "evaporated milk", + "eggs", + "sweetened condensed milk", + "yucca" + ] + }, + { + "id": 12363, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "lemon zest", + "salt", + "orange juice", + "carrots", + "slivered almonds", + "currant", + "chickpeas", + "garlic cloves", + "ground cumin", + "ground cinnamon", + "shallots", + "cayenne pepper", + "ground coriander", + "chopped fresh mint", + "honey", + "extra-virgin olive oil", + "ground allspice", + "lemon juice" + ] + }, + { + "id": 7738, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "goat cheese", + "pasta sauce", + "cooking spray" + ] + }, + { + "id": 22305, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "corn starch", + "peaches", + "all-purpose flour", + "unsalted butter", + "fresh lemon juice", + "sugar", + "salt", + "boiling water" + ] + }, + { + "id": 11997, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "large eggs", + "crushed red pepper", + "spaghetti", + "sausage casings", + "fat free less sodium chicken broth", + "cooking spray", + "garlic cloves", + "black pepper", + "grated parmesan cheese", + "salt", + "ground round", + "parsley leaves", + "whole wheat bread", + "onions" + ] + }, + { + "id": 48214, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "asparagus spears", + "fresh tarragon", + "lemon peel", + "soft fresh goat cheese", + "pasta", + "fresh lemon juice" + ] + }, + { + "id": 6010, + "cuisine": "moroccan", + "ingredients": [ + "fine sea salt", + "fresh lemon juice", + "lemon" + ] + }, + { + "id": 21488, + "cuisine": "japanese", + "ingredients": [ + "fresh udon", + "vegetable oil", + "scallions", + "shiitake", + "salt", + "pork", + "salsify", + "konbu", + "white miso", + "dried bonito flakes" + ] + }, + { + "id": 17238, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "parmesan cheese", + "garlic", + "ground beef", + "pepper", + "red pepper flakes", + "ricotta", + "onions", + "eggs", + "marinara sauce", + "salt", + "fresh parsley", + "pasta", + "olive oil", + "diced tomatoes", + "shredded mozzarella cheese", + "italian seasoning" + ] + }, + { + "id": 3261, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "lime juice", + "chile pepper", + "chiles", + "fresh cilantro", + "fish sauce", + "lemongrass", + "galangal", + "chicken broth", + "straw mushrooms", + "prawns" + ] + }, + { + "id": 34946, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "butter", + "black olives", + "pepper", + "onion powder", + "extra-virgin olive oil", + "red bell pepper", + "pasta sauce", + "jalapeno chilies", + "diced tomatoes", + "whole kernel corn, drain", + "angel hair", + "ground black pepper", + "chicken tenderloin", + "salt" + ] + }, + { + "id": 25190, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "large eggs", + "sour cream", + "baking soda", + "salt", + "honey", + "baking powder", + "cornmeal", + "melted butter", + "granulated sugar", + "all-purpose flour" + ] + }, + { + "id": 37039, + "cuisine": "southern_us", + "ingredients": [ + "filet mignon", + "ground black pepper", + "corn starch", + "large egg whites", + "low fat low sodium chicken broth", + "panko breadcrumbs", + "whole wheat flour", + "salt", + "sausage casings", + "nonfat greek yogurt", + "nonstick spray" + ] + }, + { + "id": 10821, + "cuisine": "french", + "ingredients": [ + "black pepper", + "extra-virgin olive oil", + "fresh parsley", + "fresh parmesan cheese", + "garlic cloves", + "tomatoes", + "cooking spray", + "thyme leaves", + "sourdough bread", + "salt" + ] + }, + { + "id": 30146, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "kosher salt", + "thyme", + "fresh basil", + "cracked black pepper", + "rosemary", + "oregano" + ] + }, + { + "id": 15608, + "cuisine": "french", + "ingredients": [ + "parsley sprigs", + "cooking spray", + "onions", + "large eggs", + "ground white pepper", + "water", + "salt", + "half & half", + "country bread" + ] + }, + { + "id": 13140, + "cuisine": "korean", + "ingredients": [ + "hot mustard", + "korean buckwheat noodles", + "vinegar", + "salt", + "white vinegar", + "soy sauce", + "radishes", + "vegetable broth", + "cucumber", + "sugar", + "sesame seeds", + "green onions", + "crushed ice", + "eggs", + "mustard sauce", + "asian pear", + "garlic", + "ginger root" + ] + }, + { + "id": 9251, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "butter", + "ground cumin", + "black pepper", + "ground coriander", + "ground cloves", + "salt", + "ground ginger", + "corn", + "dried oregano" + ] + }, + { + "id": 6393, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "chili powder", + "cumin", + "avocado", + "lime", + "ground black pepper", + "garlic", + "kosher salt", + "quinoa", + "vegetable broth", + "fire roasted diced tomatoes", + "corn kernels", + "jalapeno chilies", + "cilantro leaves" + ] + }, + { + "id": 9510, + "cuisine": "chinese", + "ingredients": [ + "large egg whites", + "cooking spray", + "ground ginger", + "sesame seeds", + "won ton wrappers", + "low sodium soy sauce", + "garlic powder" + ] + }, + { + "id": 7768, + "cuisine": "spanish", + "ingredients": [ + "manchego cheese", + "serrano ham", + "extra-virgin olive oil", + "unsalted butter", + "baguette", + "fig jam" + ] + }, + { + "id": 1269, + "cuisine": "british", + "ingredients": [ + "sugar", + "large eggs", + "bread slices", + "milk", + "whipping cream", + "dried currants", + "raisins", + "ground cinnamon", + "unsalted butter", + "grated nutmeg" + ] + }, + { + "id": 13572, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salt", + "pork shoulder roast", + "chile pepper", + "ground cumin", + "chili powder", + "dried oregano", + "garlic powder", + "dried pinto beans" + ] + }, + { + "id": 3530, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "cayenne pepper", + "ground cumin", + "tomato purée", + "salt", + "red bell pepper", + "red kidney beans", + "diced tomatoes", + "garlic cloves", + "chili powder", + "yellow onion", + "ground beef" + ] + }, + { + "id": 18648, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "ginger", + "squid", + "vinegar", + "garlic", + "honey", + "thai chile", + "onions", + "brown sugar", + "roma tomatoes", + "salt" + ] + }, + { + "id": 19886, + "cuisine": "japanese", + "ingredients": [ + "ketchup", + "ginger root", + "mirin", + "sake", + "garlic", + "sugar", + "sauce" + ] + }, + { + "id": 8916, + "cuisine": "indian", + "ingredients": [ + "green chile", + "vegetable oil", + "black mustard seeds", + "water", + "salt", + "long grain white rice", + "curry leaves", + "yukon gold potatoes", + "cumin seed", + "tumeric", + "urad dal", + "onions" + ] + }, + { + "id": 34040, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "dijon mustard", + "onion rings", + "ham steak", + "black-eyed peas", + "garlic", + "kosher salt", + "ground black pepper", + "kale leaves", + "olive oil", + "butter" + ] + }, + { + "id": 32336, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chunky tomato sauce", + "seasoned bread crumbs", + "salt and ground black pepper", + "ground beef", + "eggs", + "eggplant", + "shredded mozzarella cheese", + "water", + "grated parmesan cheese" + ] + }, + { + "id": 15317, + "cuisine": "korean", + "ingredients": [ + "pepper", + "ginger", + "sugar", + "green onions", + "garlic cloves", + "chicken legs", + "water", + "salt", + "soy sauce", + "sesame oil", + "chicken thighs" + ] + }, + { + "id": 25562, + "cuisine": "mexican", + "ingredients": [ + "hazelnuts", + "apple cider vinegar", + "cumin seed", + "corn tortillas", + "prunes", + "white onion", + "large garlic cloves", + "cinnamon sticks", + "allspice", + "red delicious apples", + "coriander seeds", + "anise", + "ancho chile pepper", + "clove", + "guajillo chiles", + "vegetable oil", + "low salt chicken broth", + "plantains" + ] + }, + { + "id": 33961, + "cuisine": "southern_us", + "ingredients": [ + "vanilla flavoring", + "cinnamon", + "granulated sugar", + "apple pie filling", + "unsalted butter", + "cream cheese", + "crescent rolls" + ] + }, + { + "id": 10527, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "olive oil", + "flour", + "greek yogurt", + "plain yogurt", + "zucchini", + "salt", + "panko breadcrumbs", + "white pepper", + "feta cheese", + "green onions", + "fresh mint", + "white vinegar", + "minced garlic", + "large eggs", + "cucumber" + ] + }, + { + "id": 39675, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "extra-virgin olive oil", + "onions", + "black pepper", + "sea bass fillets", + "brine-cured black olives", + "orange zest", + "water", + "stewed tomatoes", + "garlic cloves", + "dry white wine", + "salt", + "frozen artichoke hearts" + ] + }, + { + "id": 17204, + "cuisine": "mexican", + "ingredients": [ + "beef shoulder", + "chili powder", + "cumin", + "tomatoes", + "tomato juice", + "green pepper", + "corn kernels", + "mild cheddar cheese", + "sugar", + "red beans", + "onions" + ] + }, + { + "id": 28709, + "cuisine": "italian", + "ingredients": [ + "clams", + "red pepper flakes", + "pizza doughs", + "olive oil", + "wine vinegar", + "cherry tomatoes", + "garlic", + "mixed greens", + "ground black pepper", + "salt" + ] + }, + { + "id": 13314, + "cuisine": "southern_us", + "ingredients": [ + "bacon", + "onions", + "ground black pepper", + "ham", + "red pepper flakes", + "collards", + "salt" + ] + }, + { + "id": 22764, + "cuisine": "italian", + "ingredients": [ + "baking soda", + "vanilla extract", + "powdered sugar", + "butter", + "all-purpose flour", + "ricotta cheese", + "salt", + "sugar", + "red food coloring", + "sweetened condensed milk" + ] + }, + { + "id": 11687, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "rice noodles", + "ginger", + "soy sauce", + "chicken breasts", + "chilli paste", + "peanut butter", + "mirin", + "baby tatsoi", + "garlic", + "lime", + "sesame oil", + "cilantro", + "tamarind concentrate" + ] + }, + { + "id": 33895, + "cuisine": "greek", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "sugar", + "sweetened coconut flakes", + "greek yogurt", + "eggs", + "baking powder", + "juice", + "baking soda", + "salt" + ] + }, + { + "id": 14646, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "red cabbage", + "cilantro sprigs", + "mahi mahi fillets", + "adobo sauce", + "ground black pepper", + "cilantro stems", + "cayenne pepper", + "corn tortillas", + "cabbage", + "mayonaise", + "radishes", + "yellow bell pepper", + "sweet paprika", + "chipotles in adobo", + "garlic powder", + "jalapeno chilies", + "salt", + "sour cream", + "fresh pineapple" + ] + }, + { + "id": 27663, + "cuisine": "korean", + "ingredients": [ + "chicken stock", + "black pepper", + "sesame oil", + "salt", + "carrots", + "sugar", + "fresh ginger", + "red pepper", + "scallions", + "short rib", + "sake", + "water", + "pickling cucumbers", + "cayenne pepper", + "kimchi", + "turnips", + "soy sauce", + "sesame seeds", + "garlic", + "garlic cloves" + ] + }, + { + "id": 6, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "sesame oil", + "soy sauce", + "flowering garlic chives" + ] + }, + { + "id": 20553, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "salt", + "pepper", + "heavy cream", + "spaghetti", + "chicken broth", + "butter", + "dried parsley", + "olive oil", + "garlic" + ] + }, + { + "id": 2797, + "cuisine": "greek", + "ingredients": [ + "cream cheese", + "apples", + "Yoplait® Greek 2% caramel yogurt", + "coarse kosher salt", + "caramel topping" + ] + }, + { + "id": 30401, + "cuisine": "filipino", + "ingredients": [ + "pork", + "taro", + "fish sauce", + "tamarind", + "cabbage leaves", + "water", + "okra", + "horseradish", + "base" + ] + }, + { + "id": 2025, + "cuisine": "chinese", + "ingredients": [ + "garlic powder", + "sesame oil", + "corn starch", + "cooked rice", + "broccoli florets", + "boneless skinless chicken", + "canola oil", + "ground ginger", + "hoisin sauce", + "sliced carrots", + "salted cashews", + "soy sauce", + "sherry", + "rice vinegar" + ] + }, + { + "id": 30884, + "cuisine": "irish", + "ingredients": [ + "parsley sprigs", + "orange marmalade", + "ground nutmeg", + "carrots", + "vegetable oil spray", + "Irish whiskey", + "dijon mustard", + "corned beef" + ] + }, + { + "id": 25316, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "extra-virgin olive oil", + "rigatoni", + "mascarpone", + "Italian parsley leaves", + "purple onion", + "parmesan cheese", + "red pepper", + "garlic", + "ground black pepper", + "sea salt", + "yellow peppers" + ] + }, + { + "id": 13114, + "cuisine": "italian", + "ingredients": [ + "capers", + "salt", + "flat anchovy", + "vegetable oil", + "garlic cloves", + "parsley", + "freshly ground pepper", + "buffalo mozzarella", + "extra-virgin olive oil", + "red bell pepper" + ] + }, + { + "id": 10895, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "diced tomatoes", + "onions", + "olive oil", + "low salt chicken broth", + "boneless chicken skinless thigh", + "garlic cloves", + "dried oregano", + "celery ribs", + "pecorino romano cheese", + "escarole" + ] + }, + { + "id": 28935, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "processed cheese", + "quick-cooking hominy grits", + "water", + "salt", + "eggs", + "milk", + "shredded cheddar cheese", + "bacon" + ] + }, + { + "id": 42786, + "cuisine": "italian", + "ingredients": [ + "kale", + "smoked sausage", + "minced garlic", + "bacon", + "heavy whipping cream", + "potatoes", + "chopped onion", + "water", + "chicken soup base" + ] + }, + { + "id": 2534, + "cuisine": "british", + "ingredients": [ + "sugar", + "vanilla", + "unsalted butter", + "corn starch", + "large egg yolks", + "salt", + "whole milk" + ] + }, + { + "id": 30158, + "cuisine": "french", + "ingredients": [ + "mozzarella cheese", + "bread slices", + "sugar", + "beef broth", + "vegetable oil", + "onions", + "black pepper", + "sauce" + ] + }, + { + "id": 45178, + "cuisine": "greek", + "ingredients": [ + "light mayonnaise", + "feta cheese crumbles", + "pepper", + "salt", + "low-fat buttermilk", + "garlic cloves", + "reduced-fat sour cream" + ] + }, + { + "id": 40275, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "olive oil", + "salt", + "onions", + "tomato paste", + "ground chuck", + "dry red wine", + "cayenne pepper", + "dried oregano", + "celery salt", + "tomato sauce", + "worcestershire sauce", + "all-purpose flour", + "white sugar", + "tomatoes", + "dried basil", + "garlic", + "fresh mushrooms" + ] + }, + { + "id": 42864, + "cuisine": "mexican", + "ingredients": [ + "green chilies", + "cream of chicken soup", + "sour cream", + "shredded cheese", + "flour tortillas", + "roast beef" + ] + }, + { + "id": 38728, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "green onions", + "onions", + "garlic powder", + "diced tomatoes", + "potatoes", + "salt", + "shredded cheddar cheese", + "butter", + "chile sauce" + ] + }, + { + "id": 38453, + "cuisine": "mexican", + "ingredients": [ + "poblano peppers", + "green onions", + "sour cream", + "chorizo", + "potatoes", + "salt", + "chopped cilantro", + "shredded cheddar cheese", + "large eggs", + "butter", + "corn tortillas", + "garlic powder", + "half & half", + "yellow onion", + "chunky salsa" + ] + }, + { + "id": 43823, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "artichokes", + "shaved parmesan cheese", + "italian seasoning", + "parmesan cheese", + "panko breadcrumbs", + "olive oil", + "sea salt" + ] + }, + { + "id": 24163, + "cuisine": "french", + "ingredients": [ + "minced garlic", + "cooking spray", + "salt", + "tomatoes", + "olive oil", + "fresh orange juice", + "grated orange", + "halibut fillets", + "dry white wine", + "onions", + "pepper", + "fennel", + "chopped celery", + "italian seasoning" + ] + }, + { + "id": 33173, + "cuisine": "greek", + "ingredients": [ + "feta cheese crumbles", + "dry bread crumbs", + "pepper", + "dried oregano", + "vegetable oil cooking spray", + "plum tomatoes" + ] + }, + { + "id": 1850, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "flour tortillas", + "large shrimp", + "ancho", + "olive oil", + "grated jack cheese", + "fresh corn", + "fresh thyme", + "scallions", + "pepper", + "cayenne pepper" + ] + }, + { + "id": 7067, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "chopped fresh thyme", + "low sodium chicken broth", + "fresh asparagus", + "arborio rice", + "green onions", + "grated parmesan cheese", + "butter" + ] + }, + { + "id": 11121, + "cuisine": "indian", + "ingredients": [ + "water", + "yellow food coloring", + "salt", + "basmati rice", + "garam masala", + "red food coloring", + "chopped cilantro", + "fresh ginger root", + "lemon", + "cayenne pepper", + "chicken", + "plain yogurt", + "unsalted butter", + "garlic", + "onions" + ] + }, + { + "id": 1278, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "flour", + "corn", + "salt", + "sugar", + "baking powder", + "yellow corn meal", + "unsalted butter", + "sour cream" + ] + }, + { + "id": 33788, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "oil", + "cumin", + "fresh cilantro", + "tomatillos", + "corn tortillas", + "potatoes", + "salt", + "onions", + "ketchup", + "queso fresco", + "pinto beans" + ] + }, + { + "id": 32271, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "penne pasta", + "bacon", + "olive oil", + "onions" + ] + }, + { + "id": 49271, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "olive oil", + "sesame oil", + "all-purpose flour", + "white vinegar", + "water", + "boneless skinless chicken breasts", + "dry sherry", + "toasted sesame seeds", + "dark soy sauce", + "baking soda", + "vegetable oil", + "corn starch", + "chicken broth", + "chile paste", + "baking powder", + "garlic", + "white sugar" + ] + }, + { + "id": 936, + "cuisine": "chinese", + "ingredients": [ + "salt", + "vegetable oil", + "shrimp shells", + "cilantro leaves", + "garlic", + "white peppercorns" + ] + }, + { + "id": 4394, + "cuisine": "french", + "ingredients": [ + "brown sugar", + "butter", + "fresh lemon juice", + "water", + "salt", + "granny smith apples", + "ice water", + "ground cinnamon", + "large egg whites", + "all-purpose flour" + ] + }, + { + "id": 12150, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "bread flour", + "warm water", + "cornmeal", + "sugar", + "salt", + "olive oil", + "yeast" + ] + }, + { + "id": 47172, + "cuisine": "chinese", + "ingredients": [ + "water", + "sea salt", + "eggs", + "scallions", + "fish sauce" + ] + }, + { + "id": 40950, + "cuisine": "moroccan", + "ingredients": [ + "medium eggs", + "roasted hazelnuts", + "granulated sugar", + "vegetable oil", + "grated nutmeg", + "anise seed", + "honey", + "baking powder", + "cake flour", + "ground cardamom", + "ground cinnamon", + "water", + "instant yeast", + "ginger", + "ground coriander", + "saffron threads", + "coconut oil", + "unsalted butter", + "apple cider vinegar", + "salt", + "toasted sesame seeds" + ] + }, + { + "id": 24845, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "unsalted butter", + "self rising flour" + ] + }, + { + "id": 48731, + "cuisine": "indian", + "ingredients": [ + "reduced fat milk", + "basmati rice", + "sugar", + "sweetened coconut flakes", + "raisins", + "sliced almonds", + "ground cardamom" + ] + }, + { + "id": 8832, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "cinnamon sticks", + "light brown sugar", + "large garlic cloves", + "Mexican oregano", + "ancho chile pepper", + "kosher salt", + "turkey" + ] + }, + { + "id": 37195, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "unsalted butter", + "garlic", + "lime", + "Sriracha", + "bone in skin on chicken thigh", + "sweet chili sauce", + "reduced sodium soy sauce", + "cilantro leaves", + "peanuts", + "ginger" + ] + }, + { + "id": 32343, + "cuisine": "japanese", + "ingredients": [ + "white cabbage", + "chow mein noodles", + "spring onions", + "smoked streaky bacon", + "beansprouts" + ] + }, + { + "id": 14611, + "cuisine": "spanish", + "ingredients": [ + "eggplant", + "purple onion", + "olive oil", + "garlic", + "pepper", + "red pepper flakes", + "cumin", + "tomatoes", + "zucchini", + "dried oregano" + ] + }, + { + "id": 4395, + "cuisine": "french", + "ingredients": [ + "ham", + "butter", + "gruyere cheese", + "bread slices" + ] + }, + { + "id": 15611, + "cuisine": "mexican", + "ingredients": [ + "bosc pears", + "chopped cilantro fresh", + "sugar", + "fresh lime juice", + "serrano", + "white onion", + "chopped fresh mint" + ] + }, + { + "id": 9360, + "cuisine": "korean", + "ingredients": [ + "short-grain rice", + "lean ground beef", + "Gochujang base", + "sugar", + "mushrooms", + "rice vinegar", + "carrots", + "eggs", + "zucchini", + "ginger", + "garlic cloves", + "soy sauce", + "sesame oil", + "apple juice", + "beansprouts" + ] + }, + { + "id": 5467, + "cuisine": "indian", + "ingredients": [ + "ground cardamom", + "honey", + "mango", + "milk", + "vanilla yogurt", + "yoghurt" + ] + }, + { + "id": 4592, + "cuisine": "southern_us", + "ingredients": [ + "barbecue sauce", + "chopped cilantro fresh", + "chili powder", + "pork baby back ribs", + "purple onion", + "bourbon whiskey", + "ground cumin" + ] + }, + { + "id": 1389, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "leaves", + "sesame oil", + "doenzang", + "sugar", + "minced garlic", + "green leaf lettuce", + "salt", + "garlic chives", + "pepper", + "vinegar", + "ginger", + "onions", + "pork", + "honey", + "rice wine", + "oil" + ] + }, + { + "id": 8689, + "cuisine": "greek", + "ingredients": [ + "tomato sauce", + "ground nutmeg", + "butter", + "fines herbes", + "dried parsley", + "ground cinnamon", + "olive oil", + "grated parmesan cheese", + "garlic", + "ground white pepper", + "milk", + "ground black pepper", + "red wine", + "all-purpose flour", + "eggs", + "eggplant", + "lean ground beef", + "salt", + "onions" + ] + }, + { + "id": 37661, + "cuisine": "brazilian", + "ingredients": [ + "water", + "garlic", + "chopped cilantro fresh", + "cooked ham", + "chile pepper", + "red bell pepper", + "canola oil", + "sweet potatoes", + "salt", + "mango", + "black beans", + "tomatoes with juice", + "onions", + "chorizo sausage" + ] + }, + { + "id": 48803, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "boneless skinless chicken breasts", + "scallions", + "water chestnuts", + "romaine lettuce leaves", + "canola oil", + "hoisin sauce", + "red pepper", + "garlic cloves", + "cooked rice", + "mushrooms", + "teriyaki sauce" + ] + }, + { + "id": 32026, + "cuisine": "indian", + "ingredients": [ + "water", + "blanched almonds", + "ground red pepper", + "ground cumin", + "sugar", + "salt", + "cooking spray", + "fresh lemon juice" + ] + }, + { + "id": 14872, + "cuisine": "italian", + "ingredients": [ + "water", + "diced tomatoes", + "baby spinach leaves", + "knorr homestyl stock chicken", + "onions", + "ditalini pasta", + "carrots", + "white cannellini beans", + "vegetable oil" + ] + }, + { + "id": 15269, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "chili powder", + "ground beef", + "green chile", + "salsa verde", + "cilantro leaves", + "shredded Monterey Jack cheese", + "olive oil", + "diced tomatoes", + "cumin", + "Velveeta", + "ground black pepper", + "creole seasoning" + ] + }, + { + "id": 1711, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "green chilies", + "chopped cilantro fresh", + "chicken legs", + "vegetable oil", + "ghee", + "tomato purée", + "garam masala", + "cumin seed", + "ground turmeric", + "water", + "garlic", + "onions" + ] + }, + { + "id": 3602, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salted dry roasted peanuts", + "salt", + "okra", + "egg whites", + "peanut oil", + "baking mix" + ] + }, + { + "id": 6654, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "olive oil", + "chopped onion", + "chopped cilantro fresh", + "capers", + "diced tomatoes", + "fillets", + "water", + "fresh orange juice", + "fresh lime juice", + "green olives", + "cooking spray", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 41791, + "cuisine": "italian", + "ingredients": [ + "dry vermouth", + "olive oil", + "large shrimp", + "fennel fronds", + "large garlic cloves", + "orange", + "orange juice", + "grated orange peel", + "fennel bulb" + ] + }, + { + "id": 2250, + "cuisine": "japanese", + "ingredients": [ + "cream of tartar", + "egg whites", + "cream cheese", + "milk", + "butter", + "caster sugar", + "egg yolks", + "corn flour", + "lemon zest", + "cake flour" + ] + }, + { + "id": 48182, + "cuisine": "japanese", + "ingredients": [ + "wasabi", + "fresh ginger", + "sugar", + "fresh lime juice", + "salmon fillets", + "mirin", + "soy sauce" + ] + }, + { + "id": 40365, + "cuisine": "italian", + "ingredients": [ + "lemon wedge", + "fresh lemon juice", + "spaghetti", + "baking powder", + "squid", + "flat leaf parsley", + "unsalted butter", + "cayenne pepper", + "coarse kosher salt", + "olive oil", + "all-purpose flour", + "corn starch", + "canola oil" + ] + }, + { + "id": 29767, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "salt", + "cumin", + "black beans", + "onion powder", + "cayenne pepper", + "pepper", + "diced tomatoes", + "scallions", + "chicken broth", + "garlic powder", + "frozen corn", + "chicken" + ] + }, + { + "id": 4490, + "cuisine": "japanese", + "ingredients": [ + "dried bonito flakes", + "cold water", + "konbu" + ] + }, + { + "id": 19350, + "cuisine": "french", + "ingredients": [ + "shallots", + "button mushrooms", + "filet mignon steaks", + "canned beef broth", + "garlic cloves", + "Madeira", + "chopped fresh thyme", + "whipping cream", + "olive oil", + "butter" + ] + }, + { + "id": 32821, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "dried basil", + "large eggs", + "crushed red pepper", + "sliced mushrooms", + "fresh spinach", + "parmesan cheese", + "diced tomatoes", + "shredded mozzarella cheese", + "dried oregano", + "fresh basil", + "olive oil", + "ricotta cheese", + "salt", + "onions", + "fennel seeds", + "black pepper", + "lasagna noodles", + "cheese", + "garlic cloves" + ] + }, + { + "id": 17102, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lemon grass", + "white mushrooms", + "chicken broth", + "olive oil", + "chicken breasts", + "lime leaves", + "lime", + "zucchini", + "coconut milk", + "fresh basil", + "fresh ginger", + "red pepper", + "curry paste" + ] + }, + { + "id": 11614, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "ham", + "bacon", + "pineapple slices", + "jalapeno chilies", + "bbq sauce", + "mozzarella cheese", + "cilantro" + ] + }, + { + "id": 11829, + "cuisine": "french", + "ingredients": [ + "olive oil", + "tuna fillets", + "chopped fresh chives", + "black olives", + "French lentils", + "fresh lemon juice" + ] + }, + { + "id": 21493, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "avocado", + "purple onion", + "cilantro", + "lime", + "salt" + ] + }, + { + "id": 36223, + "cuisine": "korean", + "ingredients": [ + "reduced sodium soy sauce", + "napa cabbage", + "ground beef", + "water", + "sesame oil", + "golden zucchini", + "red chili peppers", + "green onions", + "soybean paste", + "reduced sodium beef stock", + "daikon", + "chopped garlic" + ] + }, + { + "id": 14575, + "cuisine": "japanese", + "ingredients": [ + "sunflower seeds", + "granulated sugar", + "umeboshi paste", + "tamari soy sauce", + "lemon juice", + "canola oil", + "eggplant", + "tahini", + "sea salt", + "peanut oil", + "snow peas", + "salad greens", + "extra firm tofu", + "red pepper flakes", + "soba noodles", + "sliced mushrooms", + "water", + "agave nectar", + "sesame oil", + "rice vinegar", + "carrots" + ] + }, + { + "id": 47431, + "cuisine": "vietnamese", + "ingredients": [ + "french baguette", + "sliced cucumber", + "chopped cilantro fresh", + "lime juice", + "hellmann' or best food real mayonnais", + "wish-bone light asian sesame ginger vinaigrette dressing", + "radishes", + "carrots", + "boneless, skinless chicken breast", + "asian chili red sauc" + ] + }, + { + "id": 11371, + "cuisine": "french", + "ingredients": [ + "pepper", + "salmon fillets", + "cooking spray", + "salt" + ] + }, + { + "id": 10088, + "cuisine": "greek", + "ingredients": [ + "fresh rosemary", + "feta cheese", + "harissa", + "purple onion", + "creole seasoning", + "greek yogurt", + "olive oil", + "roast", + "lemon", + "fresh oregano", + "lemon juice", + "pepper", + "radishes", + "russet potatoes", + "salt", + "oil", + "dried oregano", + "pitas", + "sliced cucumber", + "garlic", + "dried dill", + "cucumber" + ] + }, + { + "id": 40151, + "cuisine": "british", + "ingredients": [ + "crystallized ginger", + "all-purpose flour", + "orange zest", + "ground cinnamon", + "egg yolks", + "mincemeat", + "unsalted butter", + "orange juice", + "eggs", + "salt", + "confectioners sugar" + ] + }, + { + "id": 49398, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "large eggs", + "sesame oil", + "soy sauce", + "starch", + "salt", + "baby bok choy", + "Shaoxing wine", + "ground pork", + "minced ginger", + "green onions" + ] + }, + { + "id": 10363, + "cuisine": "french", + "ingredients": [ + "pure vanilla extract", + "water", + "large eggs", + "all-purpose flour", + "brown sugar", + "unsalted butter", + "almond extract", + "confectioners sugar", + "sugar", + "granulated sugar", + "salt", + "cream sweeten whip", + "large egg yolks", + "half & half", + "cranberries" + ] + }, + { + "id": 13805, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "whole wheat bread", + "garlic cloves", + "olive oil", + "cooking spray", + "provolone cheese", + "fresh parsley", + "tomatoes", + "ground black pepper", + "salt", + "sliced mushrooms", + "fresh basil", + "zucchini", + "frozen corn kernels", + "red bell pepper" + ] + }, + { + "id": 22593, + "cuisine": "indian", + "ingredients": [ + "soy sauce", + "salt", + "chicken", + "chili powder", + "ground turmeric", + "water", + "oil", + "garam masala", + "gram flour" + ] + }, + { + "id": 21776, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "bay scallops", + "clamato juice", + "lump crab meat", + "cilantro sprigs", + "chopped cilantro fresh", + "tomatoes", + "jalapeno chilies", + "baked tortilla chips", + "vidalia onion", + "lime wedges", + "fresh lime juice" + ] + }, + { + "id": 45619, + "cuisine": "southern_us", + "ingredients": [ + "salmon", + "tartar sauce", + "old bay seasoning", + "mayonaise" + ] + }, + { + "id": 21631, + "cuisine": "indian", + "ingredients": [ + "bread flour", + "vegetable oil", + "water", + "salt" + ] + }, + { + "id": 26503, + "cuisine": "italian", + "ingredients": [ + "fresh green peas", + "grated parmesan cheese", + "fresh lemon juice", + "grated lemon peel", + "fresh basil", + "extra-virgin olive oil", + "flat leaf parsley", + "pancetta", + "asparagus", + "garlic cloves", + "boiling water", + "fettucine", + "green onions", + "heavy whipping cream" + ] + }, + { + "id": 18291, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "purple onion", + "feta cheese crumbles", + "coarse salt", + "fresh parsley leaves", + "ground pepper", + "chickpeas", + "cucumber", + "bread", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 33737, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper flakes", + "dried oregano", + "tomato paste", + "bay leaves", + "onions", + "dried basil", + "red wine", + "white sugar", + "italian sausage", + "whole peeled tomatoes", + "garlic" + ] + }, + { + "id": 7167, + "cuisine": "mexican", + "ingredients": [ + "artichoke hearts", + "spinach", + "sour cream", + "tomatoes", + "tortilla chips", + "cheddar cheese" + ] + }, + { + "id": 35003, + "cuisine": "vietnamese", + "ingredients": [ + "tomato purée", + "red chili peppers", + "fresh ginger root", + "star anise", + "brown sugar", + "lemongrass", + "sweet potatoes", + "garlic cloves", + "fish sauce", + "lamb shanks", + "mint leaves", + "oil", + "lamb stock", + "lime", + "basil leaves", + "onions" + ] + }, + { + "id": 46214, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "mango", + "white onion", + "chopped cilantro", + "avocado", + "fresh lime juice", + "pomegranate seeds", + "serrano chile" + ] + }, + { + "id": 20871, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "tortillas", + "vegetable oil", + "cayenne pepper", + "onions", + "lime", + "chili powder", + "cilantro", + "red bell pepper", + "sugar", + "chicken breasts", + "paprika", + "corn starch", + "cumin", + "garlic powder", + "onion powder", + "salt", + "sour cream" + ] + }, + { + "id": 5849, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "oil", + "brown sugar", + "chili powder", + "cumin", + "flour", + "broth", + "crushed tomatoes", + "cayenne pepper" + ] + }, + { + "id": 36794, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "grated lemon zest", + "curry powder", + "chopped cilantro fresh", + "salt", + "plain yogurt", + "garlic cloves" + ] + }, + { + "id": 6988, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "ground pepper", + "rotisserie chicken", + "chicken stock", + "olive oil", + "garlic", + "cumin", + "fresh cilantro", + "worcestershire sauce", + "onions", + "avocado", + "lime", + "diced tomatoes", + "dried oregano" + ] + }, + { + "id": 49091, + "cuisine": "southern_us", + "ingredients": [ + "cayenne", + "butter", + "sweet potatoes", + "half & half", + "salt", + "ground black pepper", + "bourbon whiskey" + ] + }, + { + "id": 34747, + "cuisine": "russian", + "ingredients": [ + "olive oil", + "salt", + "onions", + "pepper", + "bay leaves", + "garlic cloves", + "cabbage", + "tomatoes", + "potatoes", + "beets", + "dried parsley", + "water", + "lemon", + "carrots" + ] + }, + { + "id": 1372, + "cuisine": "italian", + "ingredients": [ + "pasta", + "part-skim mozzarella cheese", + "italian seasoning", + "dough", + "pepper", + "sliced mushrooms", + "vegetable oil cooking spray", + "feta cheese crumbles", + "frozen chopped spinach", + "minced garlic", + "cornmeal" + ] + }, + { + "id": 15943, + "cuisine": "italian", + "ingredients": [ + "sugar", + "whipping cream", + "grated orange peel", + "dry white wine", + "dried cranberries", + "crystallized ginger", + "calimyrna figs", + "large egg yolks", + "sauce" + ] + }, + { + "id": 13024, + "cuisine": "french", + "ingredients": [ + "parsley leaves", + "fresh lemon juice", + "unsalted butter", + "salt" + ] + }, + { + "id": 46350, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "lime juice", + "chickpeas", + "sugar", + "asparagus", + "coconut milk", + "fish sauce", + "thai basil", + "oil", + "red chili peppers", + "zucchini", + "thai green curry paste" + ] + }, + { + "id": 34155, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "cumin seed", + "tomatoes", + "ginger", + "spices", + "onions", + "dried lentils", + "garlic" + ] + }, + { + "id": 3019, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "romano cheese", + "fresh basil leaves", + "butter", + "garlic cloves" + ] + }, + { + "id": 28130, + "cuisine": "cajun_creole", + "ingredients": [ + "white wine", + "cajun seasoning", + "medium shrimp", + "shallots", + "cracked black pepper", + "orecchiette", + "green onions", + "butter", + "plum tomatoes", + "baby spinach", + "garlic" + ] + }, + { + "id": 30948, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "olive oil", + "white wine vinegar", + "garlic cloves", + "parmigiano-reggiano cheese", + "ground black pepper", + "salt", + "escarole", + "great northern beans", + "fresh parmesan cheese", + "crushed red pepper", + "carrots", + "water", + "finely chopped onion", + "organic vegetable broth", + "thyme sprigs" + ] + }, + { + "id": 13308, + "cuisine": "italian", + "ingredients": [ + "sugar", + "instant espresso powder", + "baking powder", + "all-purpose flour", + "ground cinnamon", + "large egg yolks", + "unsalted butter", + "vanilla extract", + "heavy whipping cream", + "water", + "mascarpone", + "buttermilk", + "walnuts", + "powdered sugar", + "baking soda", + "large eggs", + "salt" + ] + }, + { + "id": 9686, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "salt", + "eggplant", + "onions", + "black pepper", + "red bell pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 38666, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "garlic powder", + "salt", + "sugar", + "chili powder", + "cumin", + "tomato sauce", + "ground red pepper", + "onions", + "water", + "paprika" + ] + }, + { + "id": 29167, + "cuisine": "cajun_creole", + "ingredients": [ + "sweet onion", + "green onions", + "paprika", + "grouper", + "thyme", + "pepper", + "bay leaves", + "sea salt", + "sauce", + "shrimp", + "oregano", + "fresh basil", + "ground pepper", + "pimentos", + "port", + "creole seasoning", + "celery", + "tomato sauce", + "roma tomatoes", + "bacon", + "hot sauce", + "garlic cloves", + "hickory smoke" + ] + }, + { + "id": 2070, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "extra-virgin olive oil", + "garlic cloves", + "dried oregano", + "sliced tomatoes", + "pitas", + "greek style plain yogurt", + "cucumber", + "lettuce", + "olive oil", + "salt", + "fresh lemon juice", + "pepper", + "chuck roast", + "dried dill", + "onions" + ] + }, + { + "id": 47265, + "cuisine": "french", + "ingredients": [ + "cayenne", + "heavy cream", + "large eggs", + "all-purpose flour", + "unsalted butter", + "salt", + "cheddar cheese", + "shredded swiss cheese" + ] + }, + { + "id": 41602, + "cuisine": "indian", + "ingredients": [ + "raisins", + "cardamom", + "boiling water", + "clove", + "rice", + "ghee", + "salt", + "bay leaf", + "cinnamon", + "oil", + "onions" + ] + }, + { + "id": 11852, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "mahi mahi fillets", + "ground cumin", + "balsamic vinegar", + "hothouse cucumber", + "green onions", + "serrano chile", + "cherries", + "chopped cilantro fresh" + ] + }, + { + "id": 7410, + "cuisine": "spanish", + "ingredients": [ + "baguette", + "salt", + "red bell pepper", + "sugar", + "balsamic vinegar", + "garlic cloves", + "pecan halves", + "dijon mustard", + "goat cheese", + "arugula", + "pitted date", + "extra-virgin olive oil", + "smoked paprika" + ] + }, + { + "id": 13287, + "cuisine": "greek", + "ingredients": [ + "plain yogurt", + "lemon juice", + "olive oil", + "kosher salt", + "cucumber", + "white vinegar", + "garlic" + ] + }, + { + "id": 35995, + "cuisine": "thai", + "ingredients": [ + "water", + "green onions", + "cilantro leaves", + "banana peppers", + "sugar", + "extra firm tofu", + "unsalted dry roast peanuts", + "peanut oil", + "fresh lime juice", + "fish sauce", + "lower sodium soy sauce", + "rice noodles", + "rice vinegar", + "beansprouts", + "boneless chicken skinless thigh", + "large eggs", + "salt", + "garlic cloves", + "dried shrimp" + ] + }, + { + "id": 41747, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic cloves", + "serrano chilies", + "grated parmesan cheese", + "plum tomatoes", + "olive oil", + "spaghetti", + "fresh basil", + "salt" + ] + }, + { + "id": 12624, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "pinto beans", + "reduced fat monterey jack cheese", + "large garlic cloves", + "chopped onion", + "chili powder", + "hot sauce", + "ground cumin", + "fat free less sodium chicken broth", + "diced tomatoes", + "baked tortilla chips" + ] + }, + { + "id": 37014, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "fine sea salt", + "flat leaf parsley", + "fettucine", + "dry white wine", + "freshly ground pepper", + "arugula", + "lobster", + "lemon slices", + "medium shrimp", + "water", + "shallots", + "fresh lemon juice" + ] + }, + { + "id": 31692, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "hummus", + "avocado", + "shredded lettuce", + "corn", + "tortilla wraps", + "diced tomatoes" + ] + }, + { + "id": 17197, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "lemon", + "thyme sprigs", + "feta cheese", + "extra-virgin olive oil", + "rosemary sprigs", + "bay leaves", + "garlic cloves", + "pitas", + "cracked black pepper", + "olives" + ] + }, + { + "id": 12510, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "shredded mozzarella cheese", + "bulk italian sausag", + "part-skim ricotta cheese", + "tomato sauce", + "basil dried leaves", + "onions", + "lasagna noodles", + "salt" + ] + }, + { + "id": 33659, + "cuisine": "japanese", + "ingredients": [ + "sesame", + "chives", + "garlic", + "garlic cloves", + "radishes", + "sesame oil", + "salt", + "olive oil", + "fresh shiitake mushrooms", + "tamari soy sauce", + "canola oil", + "lemon zest", + "chili oil", + "gyoza wrappers" + ] + }, + { + "id": 37804, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "white sesame seeds", + "dressing", + "tamari soy sauce", + "light agave nectar", + "kale", + "rice vinegar" + ] + }, + { + "id": 37419, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "pork tenderloin", + "long-grain rice", + "red bell pepper", + "fat free less sodium chicken broth", + "dry sherry", + "corn starch", + "celery", + "low sodium soy sauce", + "vegetable oil", + "garlic cloves", + "bok choy", + "water chestnuts", + "all-purpose flour", + "sliced mushrooms", + "sliced green onions" + ] + }, + { + "id": 38053, + "cuisine": "french", + "ingredients": [ + "skim milk", + "cooking spray", + "semolina flour", + "ground nutmeg", + "salt", + "vanilla beans", + "vanilla extract", + "sugar", + "large eggs" + ] + }, + { + "id": 17445, + "cuisine": "italian", + "ingredients": [ + "honey", + "pineapple juice concentrate", + "tuaca", + "large eggs", + "almond paste", + "sugar", + "large egg yolks", + "salt", + "sliced almonds", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 15425, + "cuisine": "jamaican", + "ingredients": [ + "coconut oil", + "red beans", + "scallions", + "chicken stock", + "fresh thyme", + "salt", + "onions", + "pepper", + "garlic", + "coconut milk", + "brown sugar", + "bay leaves", + "rice", + "allspice" + ] + }, + { + "id": 23520, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "kosher salt", + "garam masala", + "red pepper flakes", + "all-purpose flour", + "dried chile", + "basmati rice", + "tumeric", + "active dry yeast", + "yoghurt", + "diced tomatoes", + "ground coriander", + "onions", + "sugar", + "fresh ginger", + "vegetable oil", + "boneless skinless chicken", + "garlic cloves", + "clarified butter", + "melted butter", + "milk", + "whole milk yoghurt", + "heavy cream", + "cardamom pods", + "chopped cilantro", + "ground cumin" + ] + }, + { + "id": 38229, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "cheese", + "minced garlic", + "vegetables", + "prebaked pizza crusts" + ] + }, + { + "id": 22059, + "cuisine": "chinese", + "ingredients": [ + "corn starch", + "eggs", + "chicken broth", + "green onions" + ] + }, + { + "id": 49139, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "fillet red snapper", + "roma tomatoes", + "hot sauce", + "capers", + "lime", + "shallots", + "tostada shells", + "sea scallops", + "extra-virgin olive oil", + "green olives", + "lime juice", + "jalapeno chilies", + "chopped cilantro fresh" + ] + }, + { + "id": 20974, + "cuisine": "indian", + "ingredients": [ + "mooli", + "green chilies", + "onions", + "chili powder", + "oil", + "salt", + "mustard seeds", + "leaves", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 32718, + "cuisine": "mexican", + "ingredients": [ + "radishes", + "cilantro leaves", + "kosher salt", + "yukon gold potatoes", + "corn tortillas", + "cotija", + "large eggs", + "mexican chorizo", + "unsalted butter", + "extra-virgin olive oil" + ] + }, + { + "id": 34932, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "green onions", + "vegetable oil spray", + "flounder fillets", + "large egg whites", + "toasted wheat germ", + "curry powder", + "nonfat yogurt" + ] + }, + { + "id": 34107, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "pepper", + "vegetable oil", + "nopales", + "guajillo chiles", + "olive oil", + "beef fillet", + "beans", + "water", + "garlic", + "sugar", + "cream", + "apple cider vinegar", + "salt" + ] + }, + { + "id": 41652, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "butter", + "lemon juice", + "tomatoes", + "chili powder", + "rice", + "garam masala", + "cilantro leaves", + "broad beans", + "salt", + "onions" + ] + }, + { + "id": 22149, + "cuisine": "thai", + "ingredients": [ + "sugar", + "cilantro leaves", + "lime zest", + "fresh ginger", + "boneless skinless chicken breast halves", + "unsweetened coconut milk", + "green curry paste", + "fresh lime juice", + "chicken stock", + "basil leaves", + "asian fish sauce" + ] + }, + { + "id": 8525, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "lime slices", + "garlic", + "celery", + "horseradish", + "tomato juice", + "worcestershire sauce", + "okra", + "vodka", + "jalapeno chilies", + "cilantro", + "lemon juice", + "green olives", + "lime juice", + "cajun seasoning", + "salt" + ] + }, + { + "id": 9800, + "cuisine": "italian", + "ingredients": [ + "honey", + "red pepper flakes", + "marjoram", + "black pepper", + "grated parmesan cheese", + "salt", + "tomato paste", + "cayenne", + "basil", + "dried oregano", + "minced garlic", + "onion powder", + "hot water" + ] + }, + { + "id": 14727, + "cuisine": "russian", + "ingredients": [ + "chicken broth", + "minced onion", + "all-purpose flour", + "boiling water", + "white wine", + "heavy cream", + "freshly ground pepper", + "savoy cabbage", + "unsalted butter", + "salt", + "cooked white rice", + "pork", + "lemon", + "chopped onion", + "wild mushrooms" + ] + }, + { + "id": 44940, + "cuisine": "french", + "ingredients": [ + "pernod", + "white wine vinegar", + "fennel seeds", + "large garlic cloves", + "ground pepper", + "olive oil", + "salt" + ] + }, + { + "id": 15103, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "polenta", + "unsalted butter" + ] + }, + { + "id": 8156, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "ground black pepper", + "green peas", + "salt", + "dried oregano", + "marsala wine", + "grated parmesan cheese", + "garlic", + "sliced mushrooms", + "olive oil", + "crushed red pepper flakes", + "purple onion", + "red bell pepper", + "chicken stock", + "zucchini", + "yellow bell pepper", + "penne pasta" + ] + }, + { + "id": 36778, + "cuisine": "french", + "ingredients": [ + "cream sweeten whip", + "vanilla", + "large egg yolks", + "heavy cream", + "sugar", + "bittersweet chocolate" + ] + }, + { + "id": 3798, + "cuisine": "british", + "ingredients": [ + "self rising flour", + "vegetable oil", + "whole milk", + "heavy cream", + "large eggs", + "butter", + "sugar", + "baking powder", + "jam" + ] + }, + { + "id": 39079, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "vegetable oil", + "diced tomatoes", + "green chilies", + "potatoes", + "garden peas", + "salt", + "onions", + "fresh ginger root", + "double cream", + "garlic", + "carrots", + "fresh coriander", + "unsalted cashews", + "red pepper", + "green pepper" + ] + }, + { + "id": 18054, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "coarse salt", + "sweet paprika", + "iceberg lettuce", + "chile powder", + "ground black pepper", + "garlic", + "corn tortillas", + "instant espresso powder", + "cilantro sprigs", + "sour cream", + "ground cumin", + "light brown sugar", + "lime wedges", + "salsa", + "skirt steak" + ] + }, + { + "id": 15791, + "cuisine": "chinese", + "ingredients": [ + "chili sauce", + "Lipton Sparkling Diet Green Tea with Strawberry Kiwi", + "asian fish sauce", + "rolls", + "rice vinegar" + ] + }, + { + "id": 35756, + "cuisine": "southern_us", + "ingredients": [ + "fresh chives", + "processed cheese", + "sharp cheddar cheese", + "eggs", + "seasoning salt", + "salt", + "grits", + "water", + "chile pepper", + "dried parsley", + "white pepper", + "hot pepper sauce", + "margarine" + ] + }, + { + "id": 2503, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "shredded cheddar cheese", + "breakfast sausages", + "bread", + "large eggs", + "ramps", + "milk", + "dry mustard" + ] + }, + { + "id": 29206, + "cuisine": "french", + "ingredients": [ + "cognac", + "marzipan" + ] + }, + { + "id": 28395, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "vanilla extract", + "semi-sweet chocolate morsels", + "large egg whites", + "ice water", + "salt", + "sugar", + "butter", + "Dutch-processed cocoa powder", + "unsweetened cocoa powder", + "cooking spray", + "vegetable shortening", + "all-purpose flour" + ] + }, + { + "id": 49356, + "cuisine": "greek", + "ingredients": [ + "dried basil", + "garlic cloves", + "sliced green onions", + "ground red pepper", + "dried oregano", + "olive oil", + "feta cheese crumbles", + "sugar", + "diced tomatoes", + "large shrimp" + ] + }, + { + "id": 35943, + "cuisine": "japanese", + "ingredients": [ + "salmon fillets", + "low sodium soy sauce", + "mirin", + "honey", + "sake", + "cooking oil" + ] + }, + { + "id": 8203, + "cuisine": "italian", + "ingredients": [ + "instant espresso powder", + "amaretto", + "semisweet chocolate", + "whipping cream", + "sliced almonds", + "chocolate shavings", + "unsweetened cocoa powder", + "powdered sugar", + "angel food cake", + "Philadelphia Cream Cheese" + ] + }, + { + "id": 25151, + "cuisine": "korean", + "ingredients": [ + "jalapeno chilies", + "squid", + "medium shrimp", + "water", + "salt", + "corn starch", + "vegetable oil", + "scallions", + "large eggs", + "all-purpose flour", + "red bell pepper" + ] + }, + { + "id": 10349, + "cuisine": "mexican", + "ingredients": [ + "spices", + "ground beef", + "eggs", + "panko breadcrumbs", + "ground pork" + ] + }, + { + "id": 7348, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "salt", + "extra-virgin olive oil", + "diced yellow onion", + "chicken broth", + "purple onion", + "cumin seed", + "lemon", + "yellow split peas" + ] + }, + { + "id": 7973, + "cuisine": "chinese", + "ingredients": [ + "instant yeast", + "water", + "oil", + "all-purpose flour", + "whole wheat flour" + ] + }, + { + "id": 8393, + "cuisine": "vietnamese", + "ingredients": [ + "fresh basil", + "dry roasted peanuts", + "garlic cloves", + "fresh lime juice", + "fish sauce", + "hoisin sauce", + "cucumber", + "boiling water", + "chile paste with garlic", + "rice sticks", + "carrots", + "chopped fresh mint", + "sugar", + "mixed greens", + "beansprouts" + ] + }, + { + "id": 27273, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "flour tortillas", + "corn starch", + "reduced sodium soy sauce", + "slaw mix", + "minced garlic", + "sesame oil", + "pork loin chops", + "hoisin sauce", + "gingerroot" + ] + }, + { + "id": 14588, + "cuisine": "british", + "ingredients": [ + "shallots", + "button mushrooms", + "olive oil", + "sandwich bread", + "puff pastry", + "porcini", + "parsley", + "beef tenderloin", + "egg yolks", + "butter" + ] + }, + { + "id": 30018, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "pistachios", + "paprika", + "all-purpose flour", + "ground cumin", + "black pepper", + "pitted green olives", + "lamb shoulder", + "couscous", + "ground cinnamon", + "lemon wedge", + "garlic", + "carrots", + "kosher salt", + "apricot halves", + "cilantro leaves", + "onions" + ] + }, + { + "id": 24778, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "masoor dal", + "cilantro leaves", + "chopped garlic", + "coriander powder", + "ginger", + "jeera", + "garam masala", + "chili powder", + "green chilies", + "finely chopped onion", + "salt", + "ground turmeric" + ] + }, + { + "id": 17883, + "cuisine": "french", + "ingredients": [ + "water", + "whipping cream", + "sugar", + "light corn syrup", + "powdered sugar", + "frozen pastry puff sheets", + "unflavored gelatin", + "unsalted butter", + "berries" + ] + }, + { + "id": 35149, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "chopped celery", + "chopped garlic", + "andouille sausage", + "finely chopped onion", + "long-grain rice", + "chopped green bell pepper", + "salt", + "fat free less sodium chicken broth", + "cajun seasoning", + "chicken livers" + ] + }, + { + "id": 6350, + "cuisine": "spanish", + "ingredients": [ + "oloroso sherry", + "garlic cloves", + "sherry vinegar", + "plum tomatoes", + "extra-virgin olive oil", + "green bell pepper", + "cucumber" + ] + }, + { + "id": 10452, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "green onions", + "garlic", + "evaporated milk", + "finely chopped onion", + "cajun seasoning", + "rolls", + "crawfish", + "chopped green bell pepper", + "vegetable oil", + "salt", + "garlic powder", + "processed cheese", + "butter" + ] + }, + { + "id": 45892, + "cuisine": "russian", + "ingredients": [ + "sugar", + "vegetable oil", + "coffee", + "salad oil", + "milk", + "salt", + "eggs", + "flour", + "yeast" + ] + }, + { + "id": 29612, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped green bell pepper", + "ground red pepper", + "chopped onion", + "cooking spray", + "condensed reduced fat reduced sodium cream of mushroom soup", + "long grain white rice", + "crawfish", + "green onions", + "salt", + "processed cheese", + "garlic", + "wild rice" + ] + }, + { + "id": 11254, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "kosher salt", + "chicken", + "curry powder", + "black pepper", + "carrots" + ] + }, + { + "id": 175, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "freshly ground pepper", + "purple onion", + "fresh lime juice", + "tomatoes", + "salt", + "serrano peppers", + "garlic cloves" + ] + }, + { + "id": 27226, + "cuisine": "italian", + "ingredients": [ + "diced onions", + "dried basil", + "crushed red pepper", + "dried oregano", + "minced garlic", + "extra-virgin olive oil", + "fresh lemon juice", + "tomato paste", + "diced tomatoes", + "salt", + "crushed tomatoes", + "linguine", + "medium shrimp" + ] + }, + { + "id": 8001, + "cuisine": "british", + "ingredients": [ + "sugar", + "strawberries", + "heavy cream", + "OREO® Cookies" + ] + }, + { + "id": 47716, + "cuisine": "chinese", + "ingredients": [ + "canola", + "large eggs", + "juice", + "spring roll wrappers", + "vegetables", + "salt", + "bittersweet chocolate", + "large egg yolks", + "kumquats", + "heavy whipping cream", + "neutral oil", + "unsalted butter", + "Grand Marnier" + ] + }, + { + "id": 9546, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "shallots", + "water", + "garlic", + "sugar", + "thai chile", + "lime juice" + ] + }, + { + "id": 19359, + "cuisine": "vietnamese", + "ingredients": [ + "milk", + "spring onions", + "carrots", + "snow peas", + "sweet chili sauce", + "large eggs", + "oil", + "coconut milk", + "tumeric", + "baking soda", + "salt", + "beansprouts", + "fresh coriander", + "flour", + "oyster sauce", + "chicken fillets" + ] + }, + { + "id": 49131, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "fresh mint", + "tomatoes", + "crushed red pepper flakes", + "pasta", + "ground black pepper", + "natural pistachios", + "olive oil", + "garlic" + ] + }, + { + "id": 19713, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "sweet corn kernels", + "salsa", + "onions", + "ground cumin", + "spinach", + "ground black pepper", + "coarse salt", + "nonstick spray", + "olives", + "tomato paste", + "chopped tomatoes", + "chili powder", + "juice", + "chopped cilantro fresh", + "minced garlic", + "flour tortillas", + "frozen corn", + "sour cream", + "monterey jack" + ] + }, + { + "id": 6746, + "cuisine": "italian", + "ingredients": [ + "eggs", + "butter", + "salt", + "white sugar", + "warm water", + "raisins", + "grated lemon zest", + "dried currants", + "all purpose unbleached flour", + "nonfat yogurt plain", + "active dry yeast", + "vanilla extract", + "confectioners sugar" + ] + }, + { + "id": 25459, + "cuisine": "italian", + "ingredients": [ + "parsley", + "extra-virgin olive oil", + "freshly ground pepper", + "chives", + "red wine vinegar", + "garlic", + "tarragon", + "shallots", + "cook egg hard", + "salt", + "egg yolks", + "vegetable oil", + "cornichons", + "fresh lemon juice" + ] + }, + { + "id": 33814, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "cayenne pepper", + "fresh lime juice", + "low-fat sour cream", + "olive oil", + "cilantro", + "garlic cloves", + "cumin", + "avocado", + "honey", + "napa cabbage", + "tilapia", + "chopped cilantro", + "slaw", + "ground black pepper", + "salt", + "corn tortillas", + "mango" + ] + }, + { + "id": 47532, + "cuisine": "southern_us", + "ingredients": [ + "seasoned bread crumbs", + "paprika", + "boneless skinless chicken breast halves", + "garlic powder", + "all-purpose flour", + "milk", + "salt", + "eggs", + "ground black pepper", + "oil" + ] + }, + { + "id": 17006, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic", + "fresh green bean", + "vegetable oil", + "oyster sauce", + "red chili peppers", + "ginger" + ] + }, + { + "id": 4650, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "chicken breasts", + "fresh ginger root", + "honey", + "minced garlic", + "ground black pepper" + ] + }, + { + "id": 33753, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "white sugar", + "preserves", + "white rice", + "cold water", + "coconut milk" + ] + }, + { + "id": 14125, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "powdered sugar", + "crushed ice", + "simple syrup", + "coffee", + "fresh mint" + ] + }, + { + "id": 709, + "cuisine": "mexican", + "ingredients": [ + "sesame seeds", + "long grain white rice", + "reduced sodium chicken broth", + "mole poblano", + "salt", + "water", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 8432, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "chicken breasts", + "diced tomatoes", + "yellow onion", + "chopped garlic", + "chicken broth", + "flour tortillas", + "vegetable oil", + "all-purpose flour", + "pinto beans", + "pepper jack", + "chili powder", + "cilantro leaves", + "cayenne pepper", + "iceberg lettuce", + "lime", + "jalapeno chilies", + "red wine vinegar", + "salsa", + "sour cream" + ] + }, + { + "id": 23763, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "salt", + "ground cayenne pepper", + "ground nutmeg", + "ground coriander", + "ground cumin", + "ground cloves", + "ground allspice", + "ground turmeric", + "ground ginger", + "ground black pepper", + "ground white pepper" + ] + }, + { + "id": 44286, + "cuisine": "chinese", + "ingredients": [ + "chicken wings", + "salt", + "spring onions", + "ground pepper", + "oil", + "spices" + ] + }, + { + "id": 1517, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salsa", + "ground beef", + "chili powder", + "corn tortillas", + "milk", + "carrots", + "peas", + "tomato soup" + ] + }, + { + "id": 35640, + "cuisine": "chinese", + "ingredients": [ + "ground chuck", + "sesame oil", + "hot water", + "soy sauce", + "all-purpose flour", + "warm water", + "sweet bean paste", + "garlic chives", + "peeled fresh ginger", + "peanut oil" + ] + }, + { + "id": 42237, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "boneless skinless chicken breasts", + "fresh mushrooms", + "zucchini", + "all-purpose flour", + "italian salad dressing", + "garlic powder", + "salt", + "onions", + "pepper", + "vegetable oil", + "red bell pepper" + ] + }, + { + "id": 36659, + "cuisine": "southern_us", + "ingredients": [ + "tea bags", + "ice cubes", + "lemon slices", + "water" + ] + }, + { + "id": 13791, + "cuisine": "japanese", + "ingredients": [ + "chicken stock", + "mirin", + "soy sauce", + "vegetable oil", + "sake", + "boneless skinless chicken breasts", + "light brown sugar", + "kosher salt", + "scallions" + ] + }, + { + "id": 26350, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "red chili peppers", + "coriander seeds", + "cinnamon", + "lamb shoulder", + "coriander", + "mint", + "fresh ginger", + "yoghurt", + "paprika", + "salt", + "black peppercorns", + "coconut", + "whole cloves", + "red pepper", + "purple onion", + "tumeric", + "chopped tomatoes", + "vegetable oil", + "garlic", + "chillies" + ] + }, + { + "id": 49418, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "dried shiitake mushrooms", + "sliced shallots", + "brown sugar", + "green beans", + "thai green curry paste", + "fish sauce", + "firm tofu", + "fresh lime juice", + "unsweetened coconut milk", + "vegetable oil", + "red bell pepper" + ] + }, + { + "id": 39113, + "cuisine": "japanese", + "ingredients": [ + "wasabi paste", + "cucumber", + "avocado", + "water", + "sushi rice", + "nori", + "smoked salmon", + "rice vinegar" + ] + }, + { + "id": 6567, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "coriander seeds", + "boneless skinless chicken breasts", + "turmeric root", + "dried red chile peppers", + "mace", + "tamarind juice", + "vegetable oil", + "roasted peanuts", + "cumin", + "water", + "lemon grass", + "shrimp paste", + "garlic", + "galangal", + "fresh ginger", + "palm sugar", + "shallots", + "salt", + "ground turmeric" + ] + }, + { + "id": 16513, + "cuisine": "cajun_creole", + "ingredients": [ + "small red beans", + "dried thyme", + "garlic", + "long grain white rice", + "water", + "bay leaves", + "ham hock", + "celery ribs", + "turkey legs", + "ground red pepper", + "onions", + "pepper", + "bell pepper", + "salt", + "dried oregano" + ] + }, + { + "id": 17680, + "cuisine": "italian", + "ingredients": [ + "cheddar cheese", + "butter oil", + "penne", + "gruyere cheese", + "chile powder", + "sauce" + ] + }, + { + "id": 35368, + "cuisine": "mexican", + "ingredients": [ + "cooked rice", + "pumpkinseed kernels", + "salt", + "chopped cilantro fresh", + "ground black pepper", + "tomatillos", + "onions", + "ground cumin", + "fat free less sodium chicken broth", + "vegetable oil", + "garlic cloves", + "serrano chile", + "ground cinnamon", + "cooking spray", + "romaine lettuce leaves", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 35574, + "cuisine": "mexican", + "ingredients": [ + "soy sauce", + "corn tortillas", + "hot salsa", + "canned beef broth", + "chopped cilantro fresh", + "olive oil", + "fresh lime juice", + "chuck", + "dark brown sugar", + "chopped garlic" + ] + }, + { + "id": 32331, + "cuisine": "chinese", + "ingredients": [ + "honey", + "rice vinegar", + "soy sauce", + "fresh ginger root", + "olive oil", + "water", + "garlic" + ] + }, + { + "id": 34548, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "butter", + "fresh parsley", + "tomatoes", + "pitted black olives", + "corn starch", + "capers", + "chopped onion", + "eggs", + "macaroni", + "red bell pepper" + ] + }, + { + "id": 30751, + "cuisine": "mexican", + "ingredients": [ + "water", + "mexicorn", + "fresh parsley", + "eggs", + "pepperidge farm puff pastry", + "mixed greens", + "cooked chicken", + "Pace Picante Sauce", + "bread crumb fresh", + "colby jack cheese", + "sour cream" + ] + }, + { + "id": 40595, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "ground black pepper", + "cooking spray", + "garlic cloves", + "fresh parmesan cheese", + "large eggs", + "salt", + "onions", + "olive oil", + "dijon mustard", + "1% low-fat milk", + "fresh parsley", + "whole wheat bread toasted", + "ground nutmeg", + "broccoli florets", + "reduced fat swiss cheese" + ] + }, + { + "id": 44535, + "cuisine": "italian", + "ingredients": [ + "salt", + "olive oil", + "instant yeast", + "all-purpose flour" + ] + }, + { + "id": 4129, + "cuisine": "japanese", + "ingredients": [ + "lemongrass", + "garlic", + "canola oil", + "chicken broth", + "red pepper flakes", + "shrimp", + "miso paste", + "freshly ground pepper", + "kosher salt", + "cilantro", + "noodles" + ] + }, + { + "id": 13844, + "cuisine": "thai", + "ingredients": [ + "tamarind water", + "rice noodles", + "pressed tofu", + "medium shrimp", + "garlic chives", + "large eggs", + "dried Thai chili", + "Thai fish sauce", + "radishes", + "vegetable oil", + "tamarind paste", + "peanuts", + "lime wedges", + "simple syrup", + "beansprouts" + ] + }, + { + "id": 7557, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "dry bread crumbs", + "fresh lemon juice", + "fillet red snapper", + "salt", + "lemon rind", + "fontina cheese", + "butter", + "cream cheese", + "milk", + "all-purpose flour", + "freshly ground pepper" + ] + }, + { + "id": 27607, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "garlic", + "okra", + "onions", + "olive oil", + "green pepper", + "smoked paprika", + "oregano", + "crushed tomatoes", + "salt", + "thyme", + "marjoram", + "vegetable broth", + "frozen corn kernels", + "ground cayenne pepper" + ] + }, + { + "id": 18787, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "ground pork", + "corn starch", + "sugar", + "eggplant", + "salt", + "Doubanjiang", + "light soy sauce", + "thai chile", + "chinkiang vinegar", + "minced garlic", + "Shaoxing wine", + "peanut oil" + ] + }, + { + "id": 7727, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "guajillo chiles", + "seeds", + "salt", + "ancho chile pepper", + "unsweetened cocoa powder", + "chicken broth", + "ground cloves", + "cayenne", + "garlic", + "lard", + "masa harina", + "pecans", + "sesame seeds", + "turkey", + "ground allspice", + "dried cranberries", + "dried cornhusks", + "crushed tomatoes", + "vegetable oil", + "yellow onion", + "corn tortillas" + ] + }, + { + "id": 38515, + "cuisine": "italian", + "ingredients": [ + "baguette", + "large garlic cloves", + "bâtarde", + "burrata", + "mostarda", + "escarole", + "ground black pepper", + "extra-virgin olive oil", + "applewood smoked bacon", + "kosher salt", + "red wine vinegar", + "bread slices" + ] + }, + { + "id": 37796, + "cuisine": "korean", + "ingredients": [ + "green onions", + "ginger", + "daikon", + "red radishes", + "napa cabbage", + "garlic cloves", + "gochugaru", + "sea salt", + "carrots" + ] + }, + { + "id": 22561, + "cuisine": "japanese", + "ingredients": [ + "sea salt", + "dashi kombu", + "uni" + ] + }, + { + "id": 35220, + "cuisine": "french", + "ingredients": [ + "extra-virgin olive oil", + "egg yolks", + "lemon juice", + "garlic", + "ground black pepper", + "salt" + ] + }, + { + "id": 18504, + "cuisine": "french", + "ingredients": [ + "mussels", + "orange", + "fennel bulb", + "salt", + "plum tomatoes", + "baguette", + "prosciutto", + "heavy cream", + "bay leaf", + "tumeric", + "olive oil", + "dry white wine", + "celery", + "water", + "ground black pepper", + "garlic", + "onions" + ] + }, + { + "id": 20342, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "egg yolks", + "sea salt", + "ground black pepper", + "butter", + "onions", + "parmesan cheese", + "vegetable stock", + "risotto rice", + "white wine", + "fresh thyme", + "lemon" + ] + }, + { + "id": 8854, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "worcestershire sauce", + "long-grain rice", + "celery ribs", + "water", + "hot sauce", + "red bell pepper", + "pepper sauce", + "red beans", + "chopped onion", + "tomato sauce", + "smoked sausage", + "garlic cloves" + ] + }, + { + "id": 25002, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "ground black pepper", + "salt", + "ground cumin", + "red lentils", + "ground cloves", + "chili powder", + "ground cardamom", + "tumeric", + "cayenne", + "ground coriander", + "chicken broth", + "water", + "vegetable oil", + "onions" + ] + }, + { + "id": 36460, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "prepared guacamole", + "ground cumin", + "chili powder", + "sour cream", + "ground black pepper", + "pork loin chops", + "kosher salt", + "extra-virgin olive oil", + "garlic salt" + ] + }, + { + "id": 24421, + "cuisine": "brazilian", + "ingredients": [ + "baguette", + "coffee", + "milk", + "ham", + "orange", + "chocolate", + "bananas", + "white cheese" + ] + }, + { + "id": 45478, + "cuisine": "southern_us", + "ingredients": [ + "pie crust", + "ground nutmeg", + "butter", + "sweetened condensed milk", + "orange", + "large eggs", + "all-purpose flour", + "pecans", + "granulated sugar", + "vanilla extract", + "evaporated milk", + "sweet potatoes", + "dark brown sugar" + ] + }, + { + "id": 17329, + "cuisine": "italian", + "ingredients": [ + "vine tomatoes", + "fresh basil", + "garlic", + "pepper", + "salt", + "olive oil", + "spaghetti" + ] + }, + { + "id": 45320, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "fat free greek yogurt", + "salt", + "onions", + "yogurt dressing", + "ginger", + "sweet corn", + "Madras curry powder", + "tumeric", + "sunflower oil", + "green pepper", + "coriander", + "red lentils", + "potatoes", + "garlic", + "cumin seed", + "ground cumin" + ] + }, + { + "id": 34694, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "kosher salt", + "scallions", + "white vinegar", + "soy sauce", + "firm tofu", + "bamboo shoots", + "pork", + "dried shiitake mushrooms", + "ground white pepper", + "eggs", + "sesame oil", + "corn starch" + ] + }, + { + "id": 43677, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "potatoes", + "salt", + "urad dal split", + "onions", + "tumeric", + "red pepper", + "fenugreek seeds", + "mustard seeds", + "green chile", + "vegetable oil", + "cilantro leaves", + "garlic cloves", + "asafetida", + "short-grain rice", + "ginger", + "cumin seed", + "ghee" + ] + }, + { + "id": 2441, + "cuisine": "british", + "ingredients": [ + "sugar", + "salt", + "self rising flour", + "eggs", + "margarine" + ] + }, + { + "id": 21621, + "cuisine": "brazilian", + "ingredients": [ + "minced garlic", + "dende oil", + "cilantro leaves", + "fresh lime juice", + "tomato paste", + "fish stock", + "salt", + "coconut milk", + "olive oil", + "white rice", + "grouper", + "onions", + "sliced tomatoes", + "chile pepper", + "garlic", + "lemon juice" + ] + }, + { + "id": 34806, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "white onion", + "sea salt", + "olive oil", + "starchy potatoes", + "unsalted butter" + ] + }, + { + "id": 11653, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "low salt chicken broth", + "bacon slices", + "onions", + "sugar", + "whipping cream", + "long grain white rice", + "sliced carrots", + "fresh parsley" + ] + }, + { + "id": 15260, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "honey", + "chile pepper", + "fresh cilantro", + "sea scallops", + "orange juice", + "pepper", + "olive oil", + "salt", + "fish sauce", + "papaya", + "lemon grass", + "fresh basil leaves" + ] + }, + { + "id": 48036, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "cooked chicken", + "diced tomatoes", + "garlic cloves", + "arrowroot", + "whole wheat tortillas", + "salt", + "monterey jack", + "low sodium chicken broth", + "shallots", + "cilantro", + "smoked paprika", + "avocado", + "yoghurt", + "grapeseed oil", + "green chilies" + ] + }, + { + "id": 266, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "evaporated milk", + "apples", + "onions", + "tomato sauce", + "beef stock", + "enchilada sauce", + "eggs", + "olive oil", + "raisins", + "pepitas", + "cheddar cheese", + "flour", + "cooked meat", + "monterey jack" + ] + }, + { + "id": 28388, + "cuisine": "mexican", + "ingredients": [ + "butter", + "confectioners sugar", + "salt", + "vanilla extract", + "ground cinnamon", + "all-purpose flour" + ] + }, + { + "id": 1291, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "minced garlic", + "tomato sauce", + "diced tomatoes", + "extra lean ground beef", + "onions", + "green bell pepper", + "pepper", + "italian seasoning" + ] + }, + { + "id": 46781, + "cuisine": "chinese", + "ingredients": [ + "large egg whites", + "bread flour", + "vanilla extract", + "sugar" + ] + }, + { + "id": 31060, + "cuisine": "moroccan", + "ingredients": [ + "ground nutmeg", + "ground allspice", + "salmon fillets", + "mustard powder", + "ground cumin", + "ground cinnamon", + "cayenne pepper", + "white sugar", + "ground ginger", + "salt", + "fresh lime juice" + ] + }, + { + "id": 25438, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "sun-dried tomatoes", + "toasted pine nuts", + "basil pesto sauce", + "fusilli", + "corn starch", + "fresh basil", + "grated parmesan cheese", + "feta cheese crumbles", + "olive oil", + "garlic", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 28649, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "shallots", + "red pepper", + "freshly ground pepper", + "galangal", + "lime", + "turmeric root", + "garlic", + "chillies", + "kaffir lime leaves", + "mushrooms", + "cilantro root", + "buckwheat noodles", + "curry paste", + "lemongrass", + "vegetable stock", + "red preserved bean curd", + "coconut milk", + "kaffir lime" + ] + }, + { + "id": 25215, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "tea bags", + "mint sprigs", + "lemon", + "water" + ] + }, + { + "id": 1774, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "garlic cloves", + "pinenuts", + "extra-virgin olive oil", + "water", + "salt", + "ground black pepper", + "fresh mint" + ] + }, + { + "id": 15293, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "feta cheese crumbles", + "eggs", + "olive oil", + "onions", + "frozen chopped spinach", + "cottage cheese", + "sour cream", + "phyllo dough", + "ground black pepper" + ] + }, + { + "id": 47223, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "balsamic vinegar", + "strawberries", + "cranberries", + "jicama", + "navel oranges", + "freshly ground pepper", + "ground red pepper", + "pecorino romano cheese", + "orange juice", + "dried cranberries", + "shallots", + "salt", + "mixed greens" + ] + }, + { + "id": 28104, + "cuisine": "mexican", + "ingredients": [ + "frozen limeade", + "agave nectar", + "silver tequila", + "kosher salt", + "crushed ice", + "triple sec" + ] + }, + { + "id": 48643, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "sour cream", + "garlic", + "italian seasoning", + "New York Style Panetini® toasts", + "smoked gouda", + "italian sausage", + "sharp cheddar cheese" + ] + }, + { + "id": 29525, + "cuisine": "mexican", + "ingredients": [ + "lime", + "plum tomatoes", + "purple onion", + "poblano", + "kosher salt", + "chopped cilantro fresh" + ] + }, + { + "id": 9814, + "cuisine": "indian", + "ingredients": [ + "crushed tomatoes", + "heavy cream", + "salt", + "onions", + "tomato paste", + "chicken breasts", + "ginger", + "ground coriander", + "ground cumin", + "sugar", + "vegetable oil", + "garlic", + "greek yogurt", + "garam masala", + "cilantro", + "cayenne pepper", + "serrano chile" + ] + }, + { + "id": 29324, + "cuisine": "indian", + "ingredients": [ + "ground coriander", + "ground ginger", + "ground turmeric", + "mustard seeds", + "crushed red pepper flakes", + "ground cumin" + ] + }, + { + "id": 15439, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "carrots", + "garlic powder", + "broccoli", + "cabbage", + "soy sauce", + "rice vinegar", + "onions", + "brown rice", + "green pepper" + ] + }, + { + "id": 30006, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "garlic cloves", + "mayonaise", + "fresh lemon juice", + "olive oil" + ] + }, + { + "id": 746, + "cuisine": "mexican", + "ingredients": [ + "picante sauce", + "cooking spray", + "ground cumin", + "frozen whole kernel corn", + "garlic salt", + "fresh cilantro", + "chipotle chile powder", + "pork tenderloin", + "sliced green onions" + ] + }, + { + "id": 44354, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "garlic cloves", + "ketchup", + "salt", + "ginger root", + "sugar", + "vegetable oil", + "corn starch", + "water", + "rice vinegar" + ] + }, + { + "id": 17728, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cream cheese", + "vegetable oil", + "sugar", + "refrigerated piecrusts", + "dried apricot" + ] + }, + { + "id": 3565, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "active dry yeast", + "boneless chicken breast", + "salt", + "carrots", + "soy sauce", + "olive oil", + "chili oil", + "all-purpose flour", + "toasted sesame seeds", + "mozzarella cheese", + "fresh ginger", + "paprika", + "peanut butter", + "chopped cilantro fresh", + "warm water", + "honey", + "green onions", + "rice vinegar", + "black tea" + ] + }, + { + "id": 6382, + "cuisine": "mexican", + "ingredients": [ + "egg substitute", + "non-fat sour cream", + "green onions", + "hot sauce", + "Mexican cheese blend", + "salsa", + "vegetable oil cooking spray", + "wheat", + "pork sausages" + ] + }, + { + "id": 38187, + "cuisine": "italian", + "ingredients": [ + "roast turkey", + "giardiniera", + "ciabatta roll", + "olive oil", + "provolone cheese" + ] + }, + { + "id": 4391, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "olive oil", + "butter", + "fresh coriander", + "sweet potatoes", + "chopped fresh mint", + "prunes", + "clear honey", + "carrots", + "ground ginger", + "pearl onions", + "vegetable stock" + ] + }, + { + "id": 7799, + "cuisine": "southern_us", + "ingredients": [ + "lime rind", + "tomatillos", + "fresh lime juice", + "olive oil", + "okra", + "sweet onion", + "salt", + "chopped cilantro fresh", + "vegetable oil cooking spray", + "ground pepper", + "garlic cloves" + ] + }, + { + "id": 5310, + "cuisine": "vietnamese", + "ingredients": [ + "fresh cilantro", + "shallots", + "garlic cloves", + "chicken broth", + "olive oil", + "salt", + "ground turkey", + "lime", + "purple onion", + "fresh mint", + "lemongrass", + "fresh ginger", + "freshly ground pepper", + "asian fish sauce" + ] + }, + { + "id": 8594, + "cuisine": "greek", + "ingredients": [ + "sweet onion", + "zucchini", + "fresh mint", + "salt and ground black pepper", + "all-purpose flour", + "olive oil", + "potatoes", + "eggs", + "feta cheese", + "dry bread crumbs" + ] + }, + { + "id": 40286, + "cuisine": "british", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "all purpose unbleached flour", + "stilton cheese", + "cream of tartar", + "baking powder", + "sharp cheddar cheese", + "unsalted butter", + "buttermilk" + ] + }, + { + "id": 2020, + "cuisine": "indian", + "ingredients": [ + "flaked coconut", + "curry powder", + "cream cheese, soften", + "green onions", + "deveined shrimp" + ] + }, + { + "id": 7341, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "flour", + "sour cream", + "eggs", + "cajun seasoning", + "chicken breasts", + "cornmeal" + ] + }, + { + "id": 6959, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "swordfish", + "salt", + "extra-virgin olive oil", + "tomatoes", + "yellow onion" + ] + }, + { + "id": 9115, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "olive oil", + "butter", + "fat free less sodium chicken broth", + "ground nutmeg", + "yellow onion", + "water", + "ground black pepper", + "champagne", + "parmigiano-reggiano cheese", + "radicchio", + "salt" + ] + }, + { + "id": 8071, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "fresh lemon", + "orzo", + "brown lentils", + "fresh mint", + "tomato paste", + "ground black pepper", + "sea salt", + "chickpeas", + "smoked paprika", + "ground cumin", + "celery ribs", + "olive oil", + "red pepper flakes", + "yellow onion", + "fresh parsley leaves", + "saffron", + "ground cinnamon", + "cilantro stems", + "garlic", + "ground coriander", + "greens" + ] + }, + { + "id": 45137, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "monterey jack", + "lime", + "scallions", + "soft goat's cheese", + "cooked chicken", + "mushroom caps", + "chopped cilantro" + ] + }, + { + "id": 4507, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "salt", + "bacon", + "pepper", + "tortilla chips", + "cheese" + ] + }, + { + "id": 17088, + "cuisine": "british", + "ingredients": [ + "pepper", + "salt", + "ground beef", + "worcestershire sauce", + "yellow onion", + "cheddar cheese", + "peas", + "bay leaf", + "baking potatoes", + "margarine" + ] + }, + { + "id": 13898, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "green chilies", + "coriander", + "red chili powder", + "cilantro leaves", + "garlic cloves", + "tomatoes", + "bay leaves", + "gingerroot", + "ground turmeric", + "olive oil", + "chickpeas", + "onions" + ] + }, + { + "id": 19769, + "cuisine": "chinese", + "ingredients": [ + "savoy cabbage", + "white pepper", + "loin pork roast", + "chinese five-spice powder", + "eggs", + "shredded carrots", + "peanut oil", + "celery", + "green cabbage", + "egg roll wrappers", + "salt", + "oil", + "sugar", + "sesame oil", + "scallions", + "cooked shrimp" + ] + }, + { + "id": 44231, + "cuisine": "indian", + "ingredients": [ + "frozen vegetables", + "sunflower oil", + "basmati rice", + "mango chutney", + "curry paste", + "red lentils", + "vegetable stock", + "onions", + "tumeric", + "raisins", + "poppadoms" + ] + }, + { + "id": 36035, + "cuisine": "korean", + "ingredients": [ + "ground cinnamon", + "soy sauce", + "raisins", + "brown sugar", + "water", + "salt", + "chestnuts", + "pinenuts", + "jujube", + "sweet rice", + "sesame oil", + "walnuts" + ] + }, + { + "id": 32067, + "cuisine": "moroccan", + "ingredients": [ + "crushed tomatoes", + "spices", + "chickpeas", + "celery", + "saffron", + "tumeric", + "olive oil", + "lemon", + "garlic cloves", + "onions", + "ground ginger", + "fresh cilantro", + "cinnamon", + "sweet paprika", + "fresh parsley", + "water", + "vermicelli", + "salt", + "lentils", + "cumin" + ] + }, + { + "id": 32128, + "cuisine": "southern_us", + "ingredients": [ + "water", + "puff pastry", + "unsalted butter", + "sugar", + "egg yolks", + "peaches" + ] + }, + { + "id": 40334, + "cuisine": "italian", + "ingredients": [ + "ground pepper", + "garlic", + "butternut squash", + "half & half", + "rubbed sage", + "olive oil", + "coarse salt" + ] + }, + { + "id": 15167, + "cuisine": "mexican", + "ingredients": [ + "low sodium chicken broth", + "long grain white rice", + "white onion", + "vegetable oil", + "kosher salt", + "garlic cloves", + "roma tomatoes", + "bay leaf" + ] + }, + { + "id": 2661, + "cuisine": "italian", + "ingredients": [ + "penne", + "broccoli florets", + "olive oil", + "salt", + "roasted red peppers", + "fresh parsley", + "hot red pepper flakes", + "sweet turkey sausage" + ] + }, + { + "id": 41802, + "cuisine": "mexican", + "ingredients": [ + "lime", + "vegetable oil", + "flour tortillas", + "cayenne pepper", + "pepper jack", + "prepar salsa", + "serrano peppers" + ] + }, + { + "id": 10823, + "cuisine": "greek", + "ingredients": [ + "chicken broth", + "lemon", + "pepper", + "garlic cloves", + "red potato", + "salt", + "olive oil", + "dried oregano" + ] + }, + { + "id": 15919, + "cuisine": "greek", + "ingredients": [ + "chicken bouillon granules", + "ground nutmeg", + "marjoram", + "dried thyme", + "sea salt", + "dried oregano", + "ground cinnamon", + "onion powder", + "dried parsley", + "garlic powder", + "cracked black pepper" + ] + }, + { + "id": 32392, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "anchovies", + "dried shiitake mushrooms", + "coriander", + "tofu", + "minced garlic", + "marinade", + "pork shoulder", + "dried kelp", + "green onions", + "Gochujang base", + "broth", + "stew", + "water", + "red pepper flakes", + "onions" + ] + }, + { + "id": 36358, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "fennel bulb", + "fronds", + "fresh parsley", + "minced garlic", + "fresh lemon juice", + "chicken stock", + "olive oil", + "grated lemon peel" + ] + }, + { + "id": 4515, + "cuisine": "cajun_creole", + "ingredients": [ + "diced onions", + "smoked sausage", + "shrimp", + "crushed tomatoes", + "rice", + "chicken broth", + "chopped celery", + "chicken", + "cajun seasoning", + "carrots" + ] + }, + { + "id": 23095, + "cuisine": "southern_us", + "ingredients": [ + "dijon mustard", + "freshly ground pepper", + "shredded coleslaw mix", + "salt", + "gala apples", + "mayonaise", + "bacon slices", + "lemon juice", + "olive oil", + "hot sauce" + ] + }, + { + "id": 15976, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "minced ginger", + "vegetable oil", + "sirloin", + "ground black pepper", + "corn starch", + "minced garlic", + "mirin", + "toasted sesame oil", + "brown sugar", + "honey", + "salt" + ] + }, + { + "id": 24284, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken breasts", + "jambalaya rice mix", + "smoked sausage", + "chicken broth", + "rotelle", + "pepper", + "salt" + ] + }, + { + "id": 21060, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "black beans", + "garlic", + "ground cumin", + "chiles", + "lime wedges", + "yellow onion", + "avocado", + "cotija", + "vegetable oil", + "corn tortillas", + "eggs", + "peeled tomatoes", + "cilantro leaves" + ] + }, + { + "id": 41290, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper", + "capers", + "ground black pepper", + "flat leaf parsley", + "salt and ground black pepper", + "salt", + "pitted black olives", + "garlic", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 49505, + "cuisine": "italian", + "ingredients": [ + "fontina", + "parmesan cheese", + "saffron", + "chicken stock", + "white wine", + "salt", + "arborio rice", + "bread crumbs", + "flour", + "canola oil", + "eggs", + "olive oil", + "onions" + ] + }, + { + "id": 36572, + "cuisine": "brazilian", + "ingredients": [ + "pinenuts", + "sliced black olives", + "orange zest", + "olive oil", + "salt", + "brown sugar", + "garlic powder", + "brown basmati rice", + "water", + "chili powder" + ] + }, + { + "id": 174, + "cuisine": "japanese", + "ingredients": [ + "green chilies", + "mustard seeds", + "red chili powder", + "cumin seed", + "coriander", + "tomatoes", + "okra", + "onions", + "salt", + "oil", + "ground turmeric" + ] + }, + { + "id": 48713, + "cuisine": "french", + "ingredients": [ + "vanilla ice cream", + "quick-cooking oats", + "almond paste", + "peaches", + "all-purpose flour", + "ground cardamom", + "slivered almonds", + "butter", + "fresh lemon juice", + "light brown sugar", + "granulated sugar", + "grated lemon zest" + ] + }, + { + "id": 7897, + "cuisine": "chinese", + "ingredients": [ + "grated orange", + "vanilla ice cream", + "mandarin oranges" + ] + }, + { + "id": 20977, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "refrigerated piecrusts", + "freshly ground pepper", + "half & half", + "white cheddar cheese", + "grated parmesan cheese", + "bacon slices", + "plum tomatoes", + "cooked turkey", + "chopped fresh chives", + "salt" + ] + }, + { + "id": 45413, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "water", + "salt", + "ground ginger", + "unflavored gelatin", + "ground nutmeg", + "white sugar", + "ground cinnamon", + "pastry", + "pumpkin", + "single crust pie", + "evaporated milk", + "ground allspice" + ] + }, + { + "id": 14700, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil", + "purple onion", + "cider vinegar", + "cajun seasoning", + "whole grain roll", + "catfish fillets", + "slaw mix", + "salt", + "hot pepper sauce", + "sweet pepper", + "fat-free mayonnaise" + ] + }, + { + "id": 37619, + "cuisine": "mexican", + "ingredients": [ + "butter", + "cumin", + "ground black pepper", + "rice", + "lime", + "salt", + "low sodium chicken broth", + "chopped cilantro" + ] + }, + { + "id": 42463, + "cuisine": "italian", + "ingredients": [ + "polenta", + "fresh raspberries", + "maple syrup", + "vegetable oil" + ] + }, + { + "id": 27399, + "cuisine": "irish", + "ingredients": [ + "onions", + "water", + "corned beef", + "chicken broth", + "cabbage", + "carrots" + ] + }, + { + "id": 24007, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "olive oil", + "grated parmesan cheese", + "salt", + "white sugar", + "tomato sauce", + "ground nutmeg", + "garlic", + "dried parsley", + "dried basil", + "ground black pepper", + "Corn Flakes Cereal", + "garlic salt", + "eggs", + "chopped tomatoes", + "red wine", + "meatloaf", + "dried oregano" + ] + }, + { + "id": 29305, + "cuisine": "jamaican", + "ingredients": [ + "olive oil", + "chicken breasts", + "pineapple", + "coconut rum", + "blood orange", + "fresh thyme", + "cinnamon", + "garlic", + "allspice", + "chiles", + "fresh ginger", + "pomegranate molasses", + "cilantro", + "grapefruit", + "lime", + "green onions", + "Cara Cara orange", + "salt" + ] + }, + { + "id": 46064, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "italian seasoned dry bread crumbs", + "mozzarella cheese", + "ricotta cheese", + "eggs", + "bertolli four chees rosa sauc", + "fresh basil leaves", + "ground black pepper", + "rigatoni or large tube pasta" + ] + }, + { + "id": 1819, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "garlic", + "oyster sauce", + "soy sauce", + "sesame oil", + "broccoli", + "flank steak", + "rice vinegar", + "corn starch", + "water", + "vegetable oil", + "dark brown sugar" + ] + }, + { + "id": 1639, + "cuisine": "southern_us", + "ingredients": [ + "boneless pork shoulder", + "salt", + "ground black pepper", + "buns", + "barbecue sauce" + ] + }, + { + "id": 17360, + "cuisine": "japanese", + "ingredients": [ + "chicken breast tenders", + "watercress", + "sliced green onions", + "low sodium soy sauce", + "mirin", + "rice vinegar", + "radishes", + "crushed red pepper", + "sugar", + "cooking spray", + "dark sesame oil" + ] + }, + { + "id": 19121, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "red pepper", + "ground ginger", + "sesame oil", + "green onions", + "garlic", + "brown sugar", + "lean ground beef" + ] + }, + { + "id": 29499, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger", + "mint leaves", + "kirby cucumbers", + "garlic cloves", + "radishes", + "lime wedges", + "cilantro leaves", + "fresh lime juice", + "peanuts", + "meat", + "thai chile", + "carrots", + "sugar", + "jalapeno chilies", + "rice noodles", + "scallions", + "asian fish sauce" + ] + }, + { + "id": 10969, + "cuisine": "mexican", + "ingredients": [ + "low-fat sour cream", + "chili powder", + "garlic", + "corn flour", + "ground cumin", + "kosher salt", + "paprika", + "yellow onion", + "fresno chiles", + "boneless skinless chicken breasts", + "cracked black pepper", + "ground coriander", + "chipotles in adobo", + "white onion", + "vegetable oil", + "cilantro leaves", + "poblano chiles" + ] + }, + { + "id": 42512, + "cuisine": "greek", + "ingredients": [ + "orange", + "granulated sugar", + "vanilla extract", + "baking soda", + "baking powder", + "toasted walnuts", + "honey", + "large eggs", + "all-purpose flour", + "unsalted butter", + "coarse salt", + "greek yogurt" + ] + }, + { + "id": 41830, + "cuisine": "japanese", + "ingredients": [ + "miso paste", + "firm tofu", + "sweet chili sauce", + "ramen noodles", + "bok choy", + "eggs", + "green onions", + "oil", + "water", + "vegetable broth" + ] + }, + { + "id": 4978, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic", + "olive oil", + "cooking spray", + "dried oregano", + "fresh basil", + "marinara sauce", + "pepperoni", + "part-skim mozzarella cheese", + "chicken cutlets" + ] + }, + { + "id": 2790, + "cuisine": "irish", + "ingredients": [ + "ground ginger", + "butter", + "blackberries", + "water", + "rome apples", + "brown sugar", + "all-purpose flour", + "granulated sugar", + "lemon juice" + ] + }, + { + "id": 39242, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "fresh dill", + "cucumber", + "white vinegar", + "salt", + "large garlic cloves", + "greek yogurt" + ] + }, + { + "id": 6759, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "cocoa", + "all-purpose flour", + "vanilla", + "milk", + "white sugar" + ] + }, + { + "id": 44621, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "salt", + "plum tomatoes", + "lemon zest", + "extra-virgin olive oil", + "spaghettini", + "cherry tomatoes", + "basil", + "freshly ground pepper", + "crumbs", + "crushed red pepper", + "medium shrimp" + ] + }, + { + "id": 31666, + "cuisine": "southern_us", + "ingredients": [ + "barbecue sauce", + "cola soft drink", + "pork roast" + ] + }, + { + "id": 16588, + "cuisine": "italian", + "ingredients": [ + "broccoli rabe", + "garlic cloves", + "bread crumbs", + "extra-virgin olive oil", + "kosher salt", + "anchovy fillets", + "ground black pepper" + ] + }, + { + "id": 29762, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "salt", + "masa harina", + "catfish fillets", + "ground red pepper", + "hot sauce", + "ground black pepper", + "all-purpose flour", + "yellow corn meal", + "buttermilk", + "peanut oil" + ] + }, + { + "id": 13487, + "cuisine": "thai", + "ingredients": [ + "cooking spray", + "garlic cloves", + "sugar", + "salt", + "Sriracha", + "ground coriander", + "fish sauce", + "flank steak", + "fresh lime juice" + ] + }, + { + "id": 18471, + "cuisine": "japanese", + "ingredients": [ + "large eggs", + "soy sauce", + "vegetable oil", + "sugar", + "bonito flakes", + "water" + ] + }, + { + "id": 2156, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "dijon mustard", + "bone-in chicken breasts", + "flat leaf parsley", + "olive oil", + "cracked black pepper", + "garlic cloves", + "ground cumin", + "fennel seeds", + "ground black pepper", + "dry mustard", + "fresh mint", + "honey", + "mint sprigs", + "spanish paprika", + "serrano chile" + ] + }, + { + "id": 17196, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "garlic", + "boiling potatoes", + "fresh rosemary", + "olive oil", + "salt", + "swordfish steaks", + "wine vinegar", + "dried rosemary", + "capers", + "ground black pepper", + "fresh parsley" + ] + }, + { + "id": 2570, + "cuisine": "french", + "ingredients": [ + "hazelnuts", + "unsalted butter", + "warm water", + "instant espresso powder", + "cream of tartar", + "large egg whites", + "corn starch", + "sugar", + "large egg yolks" + ] + }, + { + "id": 28051, + "cuisine": "russian", + "ingredients": [ + "fresh spinach", + "egg yolks", + "salt", + "garlic cloves", + "onions", + "fresh dill", + "milk", + "vegetable oil", + "lemon rind", + "cream cheese, soften", + "pepper", + "mushrooms", + "all-purpose flour", + "lemon juice", + "salmon fillets", + "granulated sugar", + "butter", + "long-grain rice", + "sour cream" + ] + }, + { + "id": 24910, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "red bell pepper", + "bread", + "garlic", + "fresh cilantro", + "sweet paprika", + "chile pepper" + ] + }, + { + "id": 12276, + "cuisine": "italian", + "ingredients": [ + "pepper", + "hot water", + "pizza crust mix", + "part-skim mozzarella cheese", + "italian seasoning", + "yellow corn meal", + "turkey breakfast sausage", + "sliced mushrooms", + "tomato sauce", + "cooking spray" + ] + }, + { + "id": 20250, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "water", + "green onions", + "long grain white rice", + "red chili peppers", + "lemon grass", + "fresh mushrooms", + "bone-in chicken breast halves", + "base", + "chopped cilantro", + "fish sauce", + "chopped tomatoes", + "garlic" + ] + }, + { + "id": 23927, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "green tomatoes", + "garlic", + "sugar", + "russet potatoes", + "ground beef", + "collard greens", + "spices", + "purple onion", + "buns", + "old bay seasoning" + ] + }, + { + "id": 35832, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dry white wine", + "all-purpose flour", + "brandy extract", + "ground nutmeg", + "heavy cream", + "frozen chopped spinach", + "ground black pepper", + "salt", + "pepper", + "ricotta cheese", + "crumbled gorgonzola" + ] + }, + { + "id": 30994, + "cuisine": "japanese", + "ingredients": [ + "chestnut mushrooms", + "pak choi", + "chicken stock", + "mentsuyu", + "spring onions", + "ginger root", + "udon", + "roasting chickens" + ] + }, + { + "id": 3406, + "cuisine": "italian", + "ingredients": [ + "pepperoni slices", + "italian seasoning", + "chees mozzarella stick", + "refrigerated crescent rolls", + "garlic salt" + ] + }, + { + "id": 5038, + "cuisine": "chinese", + "ingredients": [ + "water", + "vegetable oil", + "chili bean sauce", + "pepper", + "egg whites", + "pangasius", + "ground white pepper", + "fresh ginger root", + "napa cabbage", + "corn starch", + "minced garlic", + "szechwan peppercorns", + "cilantro", + "celery" + ] + }, + { + "id": 14825, + "cuisine": "greek", + "ingredients": [ + "frozen chopped spinach", + "water", + "carrots", + "celery ribs", + "lamb shanks", + "orzo", + "chicken broth", + "olive oil", + "bay leaf", + "fresh spinach", + "grated parmesan cheese", + "onions" + ] + }, + { + "id": 20184, + "cuisine": "filipino", + "ingredients": [ + "vegetable oil", + "lumpia wrappers", + "cheddar cheese" + ] + }, + { + "id": 49481, + "cuisine": "italian", + "ingredients": [ + "water", + "dry white wine", + "garlic cloves", + "parmigiano reggiano cheese", + "bulgur", + "olive oil", + "salt", + "fresh parsley", + "butternut squash", + "chopped fresh sage" + ] + }, + { + "id": 37210, + "cuisine": "irish", + "ingredients": [ + "ground pepper", + "onions", + "nutmeg", + "flour", + "unsalted butter", + "boiling potatoes", + "eggs", + "salt" + ] + }, + { + "id": 41511, + "cuisine": "indian", + "ingredients": [ + "clove", + "red chili peppers", + "coriander seeds", + "lemon juice", + "cumin", + "garlic paste", + "eggplant", + "peanut oil", + "coriander", + "curry leaves", + "peanuts", + "green chilies", + "onions", + "mustard", + "coconut", + "green cardamom", + "cinnamon sticks" + ] + }, + { + "id": 22916, + "cuisine": "italian", + "ingredients": [ + "robiola", + "truffle oil", + "dough", + "garlic" + ] + }, + { + "id": 21641, + "cuisine": "irish", + "ingredients": [ + "Baileys Irish Cream Liqueur", + "corn syrup", + "vanilla wafer crumbs", + "powdered sugar", + "chocolate chips" + ] + }, + { + "id": 18326, + "cuisine": "mexican", + "ingredients": [ + "corn tortillas", + "salt", + "oil" + ] + }, + { + "id": 42022, + "cuisine": "southern_us", + "ingredients": [ + "corn kernels", + "whipping cream", + "baking powder", + "all-purpose flour", + "large eggs", + "salt", + "sugar", + "butter" + ] + }, + { + "id": 13506, + "cuisine": "indian", + "ingredients": [ + "ground nutmeg", + "ground coriander", + "tumeric", + "cardamon", + "ground cinnamon", + "ground black pepper", + "ground cumin", + "ground cloves", + "ginger" + ] + }, + { + "id": 26897, + "cuisine": "russian", + "ingredients": [ + "fresh ginger", + "lavender", + "raspberries", + "whey", + "cinnamon sticks", + "cayenne", + "beets", + "water", + "stevia" + ] + }, + { + "id": 2141, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "salt", + "sesame oil", + "peanut oil", + "ground black pepper", + "firm tofu", + "soy sauce", + "garlic" + ] + }, + { + "id": 45900, + "cuisine": "chinese", + "ingredients": [ + "ground black pepper", + "broccoli", + "soy sauce", + "sirloin steak", + "corn starch", + "chinese rice wine", + "cooking oil", + "oyster sauce", + "fresh ginger", + "garlic", + "chinese black vinegar" + ] + }, + { + "id": 47279, + "cuisine": "italian", + "ingredients": [ + "butter", + "low salt chicken broth", + "grated parmesan cheese", + "orzo", + "chopped fresh thyme", + "whipping cream", + "bacon" + ] + }, + { + "id": 43718, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "anchovy fillets", + "fresh dill", + "scotch", + "kippered herring fillets", + "olive oil", + "cayenne pepper", + "shallots", + "fresh lemon juice" + ] + }, + { + "id": 15441, + "cuisine": "french", + "ingredients": [ + "fresh shiitake mushrooms", + "fresh herbs", + "olive oil", + "garlic cloves", + "ground cumin", + "baguette", + "shallots", + "fresh parsley", + "curry powder", + "butter", + "cashew nuts" + ] + }, + { + "id": 9507, + "cuisine": "thai", + "ingredients": [ + "coriander seeds", + "lesser galangal", + "galangal", + "sugar", + "shallots", + "lime leaves", + "coconut", + "garlic", + "fillets", + "fresh turmeric", + "lemon grass", + "shrimp" + ] + }, + { + "id": 8317, + "cuisine": "italian", + "ingredients": [ + "avocado", + "dijon mustard", + "garlic", + "ground black pepper", + "anchovy paste", + "capers", + "tuna steaks", + "salt", + "olive oil", + "Italian parsley leaves", + "lemon juice" + ] + }, + { + "id": 1145, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "finely chopped onion", + "Bengali 5 Spice", + "dal", + "ground cumin", + "cauliflower", + "red chili peppers", + "diced tomatoes", + "ground coriander", + "frozen peas", + "chiles", + "zucchini", + "fine sea salt", + "chopped cilantro", + "chile powder", + "warm water", + "ginger", + "carrots", + "canola oil" + ] + }, + { + "id": 3343, + "cuisine": "italian", + "ingredients": [ + "milk chocolate", + "bittersweet chocolate", + "hazelnuts", + "hazelnut butter" + ] + }, + { + "id": 9111, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "oyster sauce", + "beef broth", + "dark soy sauce", + "corn starch" + ] + }, + { + "id": 6131, + "cuisine": "italian", + "ingredients": [ + "fat-free reduced-sodium chicken broth", + "prosciutto", + "garlic cloves", + "olive oil", + "cooked rigatoni", + "slivered almonds", + "grated parmesan cheese", + "fresh basil leaves", + "artichoke hearts", + "salt" + ] + }, + { + "id": 49474, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "lump crab meat", + "vegetable oil", + "all-purpose flour", + "bay leaf", + "celery ribs", + "habanero chile", + "dried thyme", + "garlic", + "freshly ground pepper", + "chicken stock", + "bottled clam juice", + "file powder", + "salt", + "red bell pepper", + "andouille sausage", + "oysters", + "worcestershire sauce", + "okra", + "onions" + ] + }, + { + "id": 38072, + "cuisine": "italian", + "ingredients": [ + "green onions", + "all-purpose flour", + "olive oil", + "old bay seasoning", + "condensed cream of potato soup", + "fettucine", + "butter", + "nonfat milk", + "garlic powder", + "salt", + "beef roast" + ] + }, + { + "id": 41019, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "buttermilk", + "cornmeal", + "eggs", + "hard cheese", + "smoked paprika", + "flour", + "corn starch", + "seasoning salt", + "green tomatoes", + "fleur de sel" + ] + }, + { + "id": 19509, + "cuisine": "french", + "ingredients": [ + "canned beef broth", + "boiling onions", + "Burgundy wine", + "mushrooms", + "bacon", + "cognac", + "tomato paste", + "large garlic cloves", + "dark brown sugar", + "chuck", + "chopped fresh thyme", + "all-purpose flour", + "carrots" + ] + }, + { + "id": 16806, + "cuisine": "chinese", + "ingredients": [ + "crisps", + "cooking oil", + "garlic", + "scallions", + "sugar", + "water", + "sesame oil", + "dried shiitake mushrooms", + "oyster sauce", + "white pepper", + "shallots", + "salt", + "yams", + "soy sauce", + "sweet soy sauce", + "ground pork", + "rice", + "dried shrimp" + ] + }, + { + "id": 26396, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "milk", + "fresh orange juice", + "grated orange", + "sugar", + "refrigerated piecrusts", + "all-purpose flour", + "cream sweeten whip", + "large eggs", + "salt", + "orange", + "butter", + "lemon juice" + ] + }, + { + "id": 30919, + "cuisine": "spanish", + "ingredients": [ + "unsalted butter", + "pecan halves", + "light brown sugar", + "apricot halves", + "dulce de leche" + ] + }, + { + "id": 46163, + "cuisine": "spanish", + "ingredients": [ + "finely chopped onion", + "light tuna packed in olive oil", + "frozen pastry puff sheets", + "capers", + "pimento stuffed green olives" + ] + }, + { + "id": 34312, + "cuisine": "french", + "ingredients": [ + "brandy", + "all-purpose flour", + "sugar", + "large eggs", + "salted butter", + "heavy whipping cream", + "frozen orange juice concentrate", + "plums" + ] + }, + { + "id": 41536, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "chayotes", + "salt", + "butter", + "onions", + "olive oil", + "fresh oregano" + ] + }, + { + "id": 1525, + "cuisine": "italian", + "ingredients": [ + "pepper", + "dry white wine", + "margarine", + "cold water", + "grated parmesan cheese", + "salt", + "dried tarragon leaves", + "half & half", + "all-purpose flour", + "minced onion", + "garlic" + ] + }, + { + "id": 37247, + "cuisine": "vietnamese", + "ingredients": [ + "eggs", + "Sriracha", + "cilantro", + "rice vinegar", + "water", + "sesame oil", + "vegetable broth", + "onions", + "soy sauce", + "roma tomatoes", + "ginger", + "scallions", + "celery salt", + "garlic powder", + "ramen noodles", + "garlic" + ] + }, + { + "id": 12108, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "pizza crust", + "feta cheese", + "mushrooms", + "cornmeal", + "italian sausage", + "pesto", + "active dry yeast", + "bell pepper", + "pepperoni", + "bread flour", + "sugar", + "mozzarella cheese", + "parmesan cheese", + "salt", + "onions", + "fresh basil", + "warm water", + "olive oil", + "wheels", + "ham" + ] + }, + { + "id": 8551, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "canola oil", + "self rising flour", + "eggs", + "lemon rind", + "milk" + ] + }, + { + "id": 13105, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "dark rum", + "grated orange", + "large egg yolks", + "Dutch-processed cocoa powder", + "large egg whites", + "1% low-fat milk", + "cooking spray", + "sweetened condensed milk" + ] + }, + { + "id": 43160, + "cuisine": "mexican", + "ingredients": [ + "clove", + "pork tenderloin", + "diced tomatoes", + "canola oil", + "tomato paste", + "jalapeno chilies", + "salt", + "ground cumin", + "whole wheat dough", + "raisins", + "dried oregano", + "ground cinnamon", + "chili powder", + "chopped onion" + ] + }, + { + "id": 48815, + "cuisine": "vietnamese", + "ingredients": [ + "fresh basil", + "lime", + "brown sugar", + "sparkling mineral water", + "dragon fruit", + "crushed ice", + "tangerine" + ] + }, + { + "id": 12516, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "green onions", + "cheese", + "taco seasoning", + "jasmine rice", + "extra-virgin olive oil", + "salt", + "taco shells", + "chicken breasts", + "black olives", + "taco toppings", + "lettuce", + "minced onion", + "vegetable broth", + "salsa" + ] + }, + { + "id": 16098, + "cuisine": "italian", + "ingredients": [ + "prebaked pizza crusts", + "shredded mozzarella cheese", + "loosely packed fresh basil leaves", + "ground black pepper", + "ham", + "tomatoes", + "hellmann' or best food real mayonnais" + ] + }, + { + "id": 11802, + "cuisine": "vietnamese", + "ingredients": [ + "green cabbage", + "garlic", + "cashew nuts", + "sugar", + "Japanese rice vinegar", + "fish sauce", + "salt", + "serrano chile", + "Vietnamese coriander", + "carrots" + ] + }, + { + "id": 17342, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "shallots", + "sour cream", + "garlic powder", + "low sodium chicken broth", + "cooked bacon", + "bacon salt", + "shredded carrots", + "baking potatoes", + "onions", + "ground black pepper", + "chopped fresh chives", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 7716, + "cuisine": "italian", + "ingredients": [ + "golden raisins", + "sugar", + "boiling onions", + "unsalted butter", + "bay leaf", + "flatbread", + "dry white wine" + ] + }, + { + "id": 12247, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "grated parmesan cheese", + "penne pasta", + "olive oil", + "vegetable broth", + "pinenuts", + "crushed red pepper flakes", + "sun-dried tomatoes", + "garlic" + ] + }, + { + "id": 7276, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "cherry tomatoes", + "pepper", + "pesto", + "spaghetti" + ] + }, + { + "id": 35337, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "ground veal", + "provolone cheese", + "italian seasoning", + "eggs", + "salami", + "garlic", + "ground beef", + "bread crumbs", + "butter", + "salt", + "onions", + "fennel seeds", + "pepper", + "ground pork", + "celery" + ] + }, + { + "id": 45783, + "cuisine": "greek", + "ingredients": [ + "water", + "freshly ground pepper", + "salt", + "large shrimp", + "extra-virgin olive oil", + "fresh lemon juice", + "pita bread", + "dill" + ] + }, + { + "id": 19087, + "cuisine": "thai", + "ingredients": [ + "fresh thyme", + "salted peanuts", + "lite coconut milk", + "chicken breasts", + "garlic cloves", + "coconut oil", + "green onions", + "vinaigrette", + "water", + "salt", + "long grain white rice" + ] + }, + { + "id": 40381, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "mutton", + "green chilies", + "ground turmeric", + "water", + "salt", + "cinnamon sticks", + "garlic paste", + "black cumin seeds", + "oil", + "bengal gram", + "green cardamom", + "coriander" + ] + }, + { + "id": 33775, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "provolone cheese", + "garlic bread", + "oil" + ] + }, + { + "id": 36844, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "olive oil", + "paprika", + "flat leaf parsley", + "pepper", + "sea salt", + "dry bread crumbs", + "ground lamb", + "white wine", + "large eggs", + "garlic", + "ground beef", + "milk", + "diced tomatoes", + "yellow onion" + ] + }, + { + "id": 11604, + "cuisine": "mexican", + "ingredients": [ + "whipping cream", + "light brown sugar", + "salt", + "butter", + "mexican chocolate" + ] + }, + { + "id": 32735, + "cuisine": "spanish", + "ingredients": [ + "ice cubes", + "red wine", + "plain seltzer", + "apricot nectar", + "orange", + "plums", + "lemon", + "green grape" + ] + }, + { + "id": 2061, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "salt", + "pasta sauce", + "grated parmesan cheese", + "ground beef", + "ground black pepper", + "chipotles in adobo", + "bread crumbs", + "green onions", + "spaghetti" + ] + }, + { + "id": 39170, + "cuisine": "indian", + "ingredients": [ + "water", + "garam masala", + "salt", + "sour cream", + "clove", + "milk", + "butter", + "cardamom pods", + "ground turmeric", + "crushed tomatoes", + "vegetable oil", + "cayenne pepper", + "onions", + "fresh spinach", + "fresh ginger root", + "garlic", + "ground coriander", + "chicken" + ] + }, + { + "id": 10886, + "cuisine": "mexican", + "ingredients": [ + "dijon mustard", + "American cheese", + "rolls", + "black beans", + "crema mexican", + "unsalted butter", + "beef hot dogs" + ] + }, + { + "id": 3626, + "cuisine": "italian", + "ingredients": [ + "whiskey", + "mayonaise", + "ketchup", + "tomato sauce" + ] + }, + { + "id": 17563, + "cuisine": "russian", + "ingredients": [ + "salt", + "water", + "yeast", + "baking powder", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 13333, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "vegetable broth", + "semi pearled farro", + "fresh oregano", + "lemon", + "salt", + "tomato sauce", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 3855, + "cuisine": "irish", + "ingredients": [ + "fresh chives", + "cracked black pepper", + "fat free milk", + "fat-free reduced-sodium chicken broth", + "leeks", + "steel-cut oats", + "whipped butter" + ] + }, + { + "id": 11274, + "cuisine": "japanese", + "ingredients": [ + "sake", + "fresh shiitake mushrooms", + "sugar", + "jack", + "dark soy sauce", + "mirin" + ] + }, + { + "id": 18046, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "cayenne pepper", + "pure vanilla extract", + "2% reduced-fat milk", + "corn starch", + "large egg yolks", + "fat", + "light brown sugar", + "salt", + "bittersweet chocolate" + ] + }, + { + "id": 18660, + "cuisine": "spanish", + "ingredients": [ + "red pepper flakes", + "fresh lemon juice", + "olive oil", + "sweet paprika", + "fresh parsley", + "black pepper", + "salt", + "shrimp", + "medium dry sherry", + "garlic cloves" + ] + }, + { + "id": 15947, + "cuisine": "chinese", + "ingredients": [ + "pork", + "prawns", + "sesame oil", + "garlic cloves", + "sesame seeds", + "lettuce leaves", + "dry sherry", + "soy sauce", + "water chestnuts", + "wonton wrappers", + "oyster sauce", + "fresh ginger root", + "spring onions", + "ginger" + ] + }, + { + "id": 47735, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "butter", + "lemon juice", + "granulated sugar", + "whipping cream", + "firmly packed light brown sugar", + "apples", + "chopped pecans", + "refrigerated piecrusts", + "all-purpose flour" + ] + }, + { + "id": 30450, + "cuisine": "thai", + "ingredients": [ + "eggs", + "ground peanut", + "vegetable oil", + "firm tofu", + "minced garlic", + "tamarind pulp", + "salt", + "white sugar", + "soy sauce", + "oriental radish", + "paprika", + "beansprouts", + "white vinegar", + "lime", + "chopped fresh chives", + "dried rice noodles" + ] + }, + { + "id": 27830, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "vegetable oil", + "pepper", + "salt", + "white onion", + "large garlic cloves", + "vermicelli", + "roasted tomatoes" + ] + }, + { + "id": 20524, + "cuisine": "british", + "ingredients": [ + "green bell pepper", + "brown mustard seeds", + "smoked paprika", + "kosher salt", + "yellow onion", + "sugar", + "green tomatoes", + "red bell pepper", + "chili flakes", + "cider vinegar", + "sweet paprika" + ] + }, + { + "id": 1369, + "cuisine": "greek", + "ingredients": [ + "wish bone red wine vinaigrett dress", + "feta cheese", + "refrigerated pizza dough" + ] + }, + { + "id": 36826, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "fresh parsley", + "veal cutlets", + "crushed red pepper", + "grated lemon peel", + "olive oil", + "artichokes", + "fresh basil leaves", + "butter", + "fresh lemon juice", + "plum tomatoes" + ] + }, + { + "id": 16978, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "fresh mint", + "boiling water", + "green tea" + ] + }, + { + "id": 28864, + "cuisine": "thai", + "ingredients": [ + "sugar pea", + "cilantro", + "scallions", + "coconut oil", + "lime juice", + "sauce", + "chicken thighs", + "toasted cashews", + "coconut aminos", + "onions", + "sunflower seeds", + "large eggs", + "spaghetti squash" + ] + }, + { + "id": 1078, + "cuisine": "japanese", + "ingredients": [ + "baking powder", + "white sugar", + "water", + "vanilla extract", + "potato starch", + "red food coloring", + "mochiko", + "coconut milk" + ] + }, + { + "id": 42771, + "cuisine": "indian", + "ingredients": [ + "water", + "curds", + "ghee", + "food colouring", + "rose essence", + "ground cardamom", + "baking soda", + "oil", + "saffron", + "sugar", + "maida flour", + "corn flour" + ] + }, + { + "id": 23740, + "cuisine": "french", + "ingredients": [ + "sugar", + "fresh parmesan cheese", + "garlic cloves", + "dried basil", + "balsamic vinegar", + "onions", + "black pepper", + "cooking spray", + "green beans", + "cherry tomatoes", + "salt", + "dried oregano" + ] + }, + { + "id": 19241, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "worcestershire sauce", + "coleslaw", + "barbecue sauce", + "pork roast", + "ground black pepper", + "salt", + "bread rolls", + "apple cider vinegar", + "ground cayenne pepper" + ] + }, + { + "id": 24076, + "cuisine": "greek", + "ingredients": [ + "salt", + "dried oregano", + "ground pepper", + "fresh oregano", + "olive oil", + "cayenne pepper", + "ground cumin", + "new potatoes", + "lemon juice" + ] + }, + { + "id": 24561, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "salt", + "vegetable oil", + "garlic cloves", + "jalapeno chilies", + "cilantro leaves", + "extra-virgin olive oil", + "fresh lime juice" + ] + }, + { + "id": 1024, + "cuisine": "jamaican", + "ingredients": [ + "jerk seasoning", + "salt", + "sweet potatoes", + "olive oil", + "chicken", + "pepper", + "green onions" + ] + }, + { + "id": 22703, + "cuisine": "french", + "ingredients": [ + "fronds", + "cracked black pepper", + "red bell pepper", + "fennel bulb", + "salt", + "olive oil", + "vegetable broth", + "onions", + "fennel seeds", + "basil", + "garlic cloves" + ] + }, + { + "id": 48691, + "cuisine": "korean", + "ingredients": [ + "eggs", + "sesame oil", + "garlic", + "shiitake", + "ginger", + "oil", + "soy sauce", + "veggies", + "Gochujang base", + "leeks", + "white rice" + ] + }, + { + "id": 8064, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "kielbasa", + "scallions", + "onions", + "melted butter", + "flour", + "salt", + "shrimp", + "cooked rice", + "mushrooms", + "creole seasoning", + "red bell pepper", + "chicken broth", + "chopped green bell pepper", + "chopped celery", + "oil" + ] + }, + { + "id": 49451, + "cuisine": "southern_us", + "ingredients": [ + "andouille sausage", + "parsley", + "garlic", + "bay leaf", + "whole milk", + "lemon", + "all-purpose flour", + "grits", + "olive oil", + "butter", + "gruyere cheese", + "onions", + "chicken stock", + "green onions", + "heavy cream", + "shrimp" + ] + }, + { + "id": 10588, + "cuisine": "greek", + "ingredients": [ + "zucchini", + "greek yogurt", + "canola oil", + "panko", + "feta cheese crumbles", + "grated lemon peel", + "fresh dill", + "garlic cloves", + "chopped fresh mint", + "large eggs", + "coarse kosher salt", + "sliced green onions" + ] + }, + { + "id": 28719, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "heavy cream", + "waxy potatoes", + "flour", + "extra-virgin olive oil", + "dry yeast", + "sea salt", + "water", + "fresh thyme leaves", + "garlic" + ] + }, + { + "id": 30579, + "cuisine": "italian", + "ingredients": [ + "sugar", + "fresh lemon juice", + "chilled prosecco", + "watermelon", + "lemon rind" + ] + }, + { + "id": 4045, + "cuisine": "greek", + "ingredients": [ + "ground blanched almonds", + "lemon zest", + "salt", + "cinnamon sticks", + "pure vanilla extract", + "unsalted butter", + "whole cloves", + "fresh lemon juice", + "water", + "large eggs", + "grated lemon zest", + "confectioners sugar", + "brandy", + "granulated sugar", + "baking powder", + "coarse semolina" + ] + }, + { + "id": 9769, + "cuisine": "thai", + "ingredients": [ + "chili pepper", + "white cabbage", + "garlic", + "fresh lime juice", + "sugar", + "fresh cilantro", + "green onions", + "oil", + "fish sauce", + "water", + "vinegar", + "peanut butter", + "green papaya", + "soy sauce", + "peanuts", + "boneless skinless chicken breasts", + "carrots" + ] + }, + { + "id": 452, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "white sugar", + "ground cinnamon", + "vanilla extract", + "light corn syrup", + "baking soda", + "salted peanuts" + ] + }, + { + "id": 47175, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "ground black pepper", + "worcestershire sauce", + "frozen corn kernels", + "garlic cloves", + "boneless sirloin steak", + "water", + "boneless skinless chicken breasts", + "salt", + "dark brown sugar", + "fresh parsley", + "tomato paste", + "dried thyme", + "baking potatoes", + "lima beans", + "okra", + "onions", + "cider vinegar", + "pork tenderloin", + "diced tomatoes", + "less sodium beef broth", + "carrots", + "canola oil" + ] + }, + { + "id": 16542, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "sugar", + "all-purpose flour", + "large eggs", + "white cornmeal", + "buttermilk" + ] + }, + { + "id": 31592, + "cuisine": "cajun_creole", + "ingredients": [ + "pitted kalamata olives", + "garlic powder", + "salt", + "green olives", + "dried thyme", + "ground red pepper", + "catfish fillets", + "water", + "cooking spray", + "red bell pepper", + "vidalia onion", + "olive oil", + "paprika" + ] + }, + { + "id": 36031, + "cuisine": "jamaican", + "ingredients": [ + "hot pepper sauce", + "berries", + "red snapper", + "cooking oil", + "red bell pepper", + "vinegar", + "carrots", + "pepper", + "salt", + "onions" + ] + }, + { + "id": 717, + "cuisine": "italian", + "ingredients": [ + "eggs", + "whole wheat breadcrumbs", + "parmesan cheese", + "olive oil", + "italian seasoning", + "zucchini" + ] + }, + { + "id": 21589, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "heavy cream", + "greek style plain yogurt", + "brown sugar", + "large eggs", + "salt", + "unsalted butter", + "vanilla extract", + "sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 10530, + "cuisine": "greek", + "ingredients": [ + "fat free less sodium chicken broth", + "boneless skinless chicken breasts", + "fresh dill", + "shredded carrots", + "fresh lemon juice", + "large eggs", + "salt", + "pepper", + "orzo" + ] + }, + { + "id": 33219, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "Ranch Style Beans", + "tomatoes", + "corn chips", + "avocado", + "green onions", + "romaine lettuce", + "salad dressing" + ] + }, + { + "id": 31857, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large egg whites", + "hazelnuts", + "salt" + ] + }, + { + "id": 28137, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "vegetable stock", + "Equal Sweetener", + "bamboo shoots", + "mushrooms", + "cilantro leaves", + "red bell pepper", + "brown basmati rice", + "vegetable oil", + "garlic cloves", + "toasted sesame oil", + "ground black pepper", + "ginger", + "carrots", + "boiling water" + ] + }, + { + "id": 26742, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "dried porcini mushrooms", + "ground black pepper", + "Italian parsley leaves", + "garlic cloves", + "thyme sprigs", + "black peppercorns", + "lower sodium beef broth", + "chopped fresh thyme", + "salt", + "corn starch", + "onions", + "parsley sprigs", + "boneless chuck roast", + "red wine", + "Niçoise olives", + "orange rind", + "boiling water", + "tomatoes", + "water", + "cooking spray", + "extra-virgin olive oil", + "carrots", + "bay leaf" + ] + }, + { + "id": 37833, + "cuisine": "mexican", + "ingredients": [ + "potatoes", + "salt", + "pepper", + "vegetable oil", + "ground beef", + "chile pepper", + "chopped onion", + "water", + "stewed tomatoes" + ] + }, + { + "id": 5538, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "dried thyme", + "kalamata", + "bay leaf", + "black pepper", + "eggplant", + "garlic cloves", + "penne", + "olive oil", + "salt", + "dried parsley", + "dried basil", + "finely chopped onion", + "shiraz" + ] + }, + { + "id": 4589, + "cuisine": "moroccan", + "ingredients": [ + "raw pistachios", + "purple onion", + "couscous", + "dried apricot", + "lemon juice", + "olive oil", + "salt", + "harissa", + "chopped parsley" + ] + }, + { + "id": 25497, + "cuisine": "mexican", + "ingredients": [ + "pumpkin seeds", + "corn tortillas", + "canola oil", + "sugar", + "tuna", + "chipotle peppers", + "avocado", + "scallions", + "fresh lime juice", + "ground cumin", + "salt", + "tequila", + "adobo sauce" + ] + }, + { + "id": 9461, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "fresh ginger", + "ground pork", + "minced garlic", + "green onions", + "nappa cabbage", + "water", + "wonton wrappers", + "toasted sesame oil", + "white pepper", + "water chestnuts", + "rice vinegar" + ] + }, + { + "id": 870, + "cuisine": "italian", + "ingredients": [ + "butter", + "sourdough bread", + "monterey jack", + "poppy seeds", + "green onions" + ] + }, + { + "id": 29405, + "cuisine": "japanese", + "ingredients": [ + "aka miso", + "dashi", + "scallions", + "tofu", + "seaweed", + "natto", + "sweet white miso" + ] + }, + { + "id": 13826, + "cuisine": "mexican", + "ingredients": [ + "water", + "dried pinto beans", + "pepper", + "serrano peppers", + "chopped onion", + "poblano peppers", + "salt", + "garlic oil", + "green onions", + "garlic cloves" + ] + }, + { + "id": 10365, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "fried eggs", + "frozen corn", + "frozen peas", + "mushrooms", + "garlic", + "cooked quinoa", + "zucchini", + "ginger", + "carrots", + "soy sauce", + "green onions", + "broccoli", + "onions" + ] + }, + { + "id": 32465, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "arugula", + "kosher salt", + "bocconcini", + "short pasta", + "garlic", + "pepper", + "red bell pepper" + ] + }, + { + "id": 6370, + "cuisine": "filipino", + "ingredients": [ + "pork", + "peanuts", + "beef", + "garlic", + "rice", + "string beans", + "water", + "bananas", + "shrimp paste", + "beef broth", + "onions", + "pepper", + "eggplant", + "oxtails", + "salt", + "bok choy", + "brown sugar", + "olive oil", + "annatto seeds", + "vegetable broth", + "peanut butter" + ] + }, + { + "id": 44583, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "seasoning salt", + "black pepper", + "chopped celery", + "collard greens", + "bacon slices", + "minced garlic", + "chopped onion" + ] + }, + { + "id": 18681, + "cuisine": "jamaican", + "ingredients": [ + "caribbean jerk seasoning", + "mushrooms", + "yellow onion", + "oregano", + "minced garlic", + "paprika", + "chicken base", + "pepper", + "parsley", + "corn starch", + "seasoning", + "water", + "salt", + "whiskey" + ] + }, + { + "id": 31151, + "cuisine": "brazilian", + "ingredients": [ + "collard greens", + "extra-virgin olive oil", + "coarse salt", + "garlic" + ] + }, + { + "id": 48569, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "cayenne pepper", + "black pepper", + "salt", + "catfish", + "diced tomatoes", + "dried dillweed", + "dried thyme", + "margarine" + ] + }, + { + "id": 22204, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "butter", + "chopped fresh sage", + "mascarpone", + "butternut squash", + "salt", + "ground black pepper", + "wonton wrappers", + "cayenne pepper", + "egg yolks", + "garlic" + ] + }, + { + "id": 36763, + "cuisine": "greek", + "ingredients": [ + "tomato paste", + "olive oil", + "beef broth", + "cinnamon sticks", + "celery ribs", + "anchovies", + "large garlic cloves", + "low salt chicken broth", + "juniper berries", + "bay leaves", + "carrots", + "onions", + "lamb shanks", + "ground nutmeg", + "merlot", + "thyme sprigs" + ] + }, + { + "id": 13483, + "cuisine": "italian", + "ingredients": [ + "garlic", + "flat leaf parsley", + "Italian bread", + "butter" + ] + }, + { + "id": 12037, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "salt", + "fresh ginger", + "long-grain rice", + "water", + "scallions", + "giblet", + "chicken" + ] + }, + { + "id": 3095, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "tomatoes", + "zucchini", + "ras el hanout", + "carrots", + "ground ginger", + "water", + "harissa", + "chickpeas", + "onions", + "turnips", + "tomato paste", + "olive oil", + "extra-virgin olive oil", + "blanched almonds", + "green cabbage", + "black pepper", + "butternut squash", + "salt", + "couscous" + ] + }, + { + "id": 18314, + "cuisine": "southern_us", + "ingredients": [ + "cremini mushrooms", + "dried thyme", + "all-purpose flour", + "frozen peas", + "reduced sodium chicken broth", + "coarse salt", + "carrots", + "boneless chicken skinless thigh", + "baking powder", + "freshly ground pepper", + "fresh dill", + "milk", + "butter", + "onions" + ] + }, + { + "id": 223, + "cuisine": "moroccan", + "ingredients": [ + "turnips", + "black pepper", + "lemon", + "sweet paprika", + "cumin", + "chicken broth", + "spices", + "chickpeas", + "onions", + "tomato paste", + "parsley", + "salt", + "carrots", + "red lentils", + "fresh ginger", + "garlic", + "bouquet", + "saffron" + ] + }, + { + "id": 37620, + "cuisine": "southern_us", + "ingredients": [ + "frozen cranberry juice concentrate", + "crushed pineapple", + "sugar", + "relish", + "syrup", + "all-purpose flour", + "butter", + "grated orange" + ] + }, + { + "id": 45620, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "canned tomatoes", + "minced garlic", + "angel hair", + "and fat free half half", + "parmesan cheese" + ] + }, + { + "id": 33337, + "cuisine": "italian", + "ingredients": [ + "tomato purée", + "fresh parmesan cheese", + "yukon gold potatoes", + "carrots", + "water", + "ground black pepper", + "chopped celery", + "green beans", + "country white bread", + "swiss chard", + "zucchini", + "garlic cloves", + "fresh parsley", + "cold water", + "olive oil", + "finely chopped onion", + "salt", + "borlotti beans" + ] + }, + { + "id": 32451, + "cuisine": "french", + "ingredients": [ + "turnips", + "lower sodium chicken broth", + "unsalted butter", + "dry white wine", + "rabbit", + "flat leaf parsley", + "fettucine", + "minced garlic", + "chopped fresh chives", + "heavy cream", + "stone ground mustard", + "bay leaf", + "black peppercorns", + "ground black pepper", + "leeks", + "fresh tarragon", + "carrots", + "canola oil", + "clove", + "kosher salt", + "dijon mustard", + "shallots", + "chopped celery", + "thyme sprigs" + ] + }, + { + "id": 39898, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "hot sauce", + "fresh cilantro", + "prepar salsa", + "ground cumin", + "lime juice", + "corn chips", + "onions", + "black beans", + "green onions", + "vegetable broth" + ] + }, + { + "id": 43411, + "cuisine": "japanese", + "ingredients": [ + "silken tofu", + "green onions", + "dashi", + "toasted sesame seeds", + "water", + "bonito", + "soy sauce", + "fresh ginger root", + "white sugar" + ] + }, + { + "id": 804, + "cuisine": "southern_us", + "ingredients": [ + "lime slices", + "orange juice", + "vodka", + "light rum", + "pineapple juice", + "orange liqueur", + "cherries", + "crushed ice" + ] + }, + { + "id": 4639, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "chuck roast", + "apple cider vinegar", + "chipotles in adobo", + "white onion", + "chopped tomatoes", + "bay leaves", + "salt", + "ground cumin", + "brown sugar", + "lime", + "flour tortillas", + "cilantro", + "oregano", + "minced garlic", + "ground black pepper", + "queso fresca", + "beef broth" + ] + }, + { + "id": 3389, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "peach nectar", + "sweet tea" + ] + }, + { + "id": 11747, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "cilantro", + "mashed potatoes", + "red pepper", + "garlic cloves", + "eggs", + "grating cheese", + "yellow peppers", + "mushrooms", + "salt" + ] + }, + { + "id": 13211, + "cuisine": "japanese", + "ingredients": [ + "pepper", + "salt", + "eggs", + "flour", + "oil", + "pork chops", + "seaweed", + "mayonaise", + "tonkatsu sauce", + "panko breadcrumbs" + ] + }, + { + "id": 2710, + "cuisine": "mexican", + "ingredients": [ + "chili", + "flour tortillas", + "sour cream", + "shredded mild cheddar cheese" + ] + }, + { + "id": 1924, + "cuisine": "indian", + "ingredients": [ + "chicken stock", + "parsnips", + "garlic", + "cumin seed", + "ground turmeric", + "red chili powder", + "fresh ginger root", + "dill", + "ghee", + "clove", + "fresh tomatoes", + "spices", + "green chilies", + "onions", + "spinach leaves", + "leaves", + "salt", + "leg of lamb" + ] + }, + { + "id": 18338, + "cuisine": "southern_us", + "ingredients": [ + "crumbled blue cheese", + "chopped fresh thyme", + "baking soda", + "baking powder", + "all purpose unbleached flour", + "ground black pepper", + "coarse salt", + "buttermilk", + "chopped fresh chives", + "vegetable shortening" + ] + }, + { + "id": 32012, + "cuisine": "mexican", + "ingredients": [ + "vanilla extract", + "ancho chili ground pepper", + "cream cheese", + "ground cinnamon", + "cayenne pepper", + "butter", + "confectioners sugar" + ] + }, + { + "id": 18347, + "cuisine": "italian", + "ingredients": [ + "guanciale", + "extra-virgin olive oil", + "fresh fava bean", + "water", + "salt", + "onions", + "lemon", + "fresh oregano", + "frozen peas", + "black pepper", + "artichokes", + "fresh lemon juice" + ] + }, + { + "id": 19998, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "lemon", + "extra-virgin olive oil", + "parmigiano reggiano cheese", + "sea salt", + "ground black pepper", + "portabello mushroom", + "arugula", + "balsamic vinegar", + "anchovy paste" + ] + }, + { + "id": 40800, + "cuisine": "southern_us", + "ingredients": [ + "pork", + "salt", + "shortening", + "baking powder", + "cornmeal", + "eggs", + "baking soda", + "all-purpose flour", + "sugar", + "buttermilk" + ] + }, + { + "id": 9107, + "cuisine": "chinese", + "ingredients": [ + "chopped green bell pepper", + "boneless skinless chicken breasts", + "orange juice", + "fat free less sodium chicken broth", + "water chestnuts", + "vegetable oil", + "cashew nuts", + "low sodium soy sauce", + "light pancake syrup", + "brown rice", + "corn starch", + "fresh ginger", + "green onions", + "mandarin oranges" + ] + }, + { + "id": 7056, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "paprika", + "dried parsley", + "mozzarella cheese", + "grated parmesan cheese", + "all-purpose flour", + "eggs", + "zucchini", + "salt", + "feta cheese", + "baking powder", + "onions" + ] + }, + { + "id": 15940, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "yellow squash", + "zucchini", + "garlic", + "red bell pepper", + "green bell pepper", + "eggplant", + "grated parmesan cheese", + "fresh oregano", + "nonfat ricotta cheese", + "frozen chopped spinach", + "pepper", + "lasagna noodles", + "marinara sauce", + "sliced mushrooms", + "part-skim mozzarella", + "olive oil", + "large eggs", + "salt", + "onions" + ] + }, + { + "id": 14081, + "cuisine": "southern_us", + "ingredients": [ + "cooked ham", + "frozen brussels sprouts", + "butter", + "sharp cheddar cheese", + "bread crumbs", + "baby carrots", + "turnips", + "lima beans", + "rubbed sage" + ] + }, + { + "id": 42899, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "diced tomatoes", + "sour cream", + "base", + "taco seasoning", + "onions", + "boneless chicken breast", + "salsa", + "celery", + "green onions", + "carrots" + ] + }, + { + "id": 39681, + "cuisine": "russian", + "ingredients": [ + "pitted black olives", + "stewing beef", + "stewed tomatoes", + "sausages", + "tomato paste", + "pepper", + "mushrooms", + "lemon slices", + "sour cream", + "pickles", + "flour", + "salt", + "carrots", + "capers", + "water", + "parsley root", + "ham", + "onions" + ] + }, + { + "id": 34897, + "cuisine": "mexican", + "ingredients": [ + "agave nectar", + "agave tequila", + "lime wedges", + "lime juice" + ] + }, + { + "id": 32145, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "fresh parsley", + "fresh chives", + "shallots", + "champagne", + "vegetable oil spray", + "fresh tarragon", + "champagne vinegar", + "black peppercorns", + "unsalted butter", + "shrimp" + ] + }, + { + "id": 8533, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "part-skim ricotta cheese", + "olive oil", + "lemon", + "penne pasta", + "baby arugula", + "salt", + "parmesan cheese", + "basil" + ] + }, + { + "id": 24818, + "cuisine": "mexican", + "ingredients": [ + "reduced fat cheddar cheese", + "red pepper", + "turkey sausage", + "onions", + "eggs", + "whole wheat tortillas", + "skim milk", + "green pepper" + ] + }, + { + "id": 23246, + "cuisine": "irish", + "ingredients": [ + "water", + "cabbage", + "garlic", + "potatoes", + "corned beef", + "pepper", + "salt" + ] + }, + { + "id": 17691, + "cuisine": "italian", + "ingredients": [ + "fettuccine pasta", + "green peas", + "grated parmesan cheese", + "ground black pepper", + "salt", + "low-fat sour cream", + "diced tomatoes" + ] + }, + { + "id": 34368, + "cuisine": "spanish", + "ingredients": [ + "warm water", + "honey", + "port", + "walnuts", + "ground cinnamon", + "molasses", + "unsalted butter", + "all-purpose flour", + "sugar", + "active dry yeast", + "large eggs", + "candied fruit", + "ground ginger", + "ground cloves", + "baking soda", + "salt", + "dried cranberries" + ] + }, + { + "id": 16794, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "fresh oregano", + "fresh lemon juice", + "pepper", + "purple onion", + "medium-grain rice", + "black pepper", + "artichokes", + "chickpeas", + "flat leaf parsley", + "red wine vinegar", + "salt", + "garlic cloves" + ] + }, + { + "id": 22206, + "cuisine": "filipino", + "ingredients": [ + "black peppercorns", + "garlic", + "vinegar", + "bay leaves", + "soy sauce", + "onions" + ] + }, + { + "id": 31700, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "ginger", + "fresh udon", + "spring onions", + "sake", + "mirin", + "salt", + "soy sauce", + "shichimi togarashi" + ] + }, + { + "id": 45955, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "green onions", + "crushed red pepper flakes", + "corn starch", + "soy sauce", + "sesame oil", + "peanut oil", + "green bell pepper", + "boneless skinless chicken breasts", + "roasted peanuts", + "red bell pepper", + "hoisin sauce", + "balsamic vinegar", + "garlic cloves" + ] + }, + { + "id": 23903, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "bay leaves", + "onions", + "olive oil", + "brown lentils", + "dried rosemary", + "water", + "red wine vinegar", + "dried oregano", + "tomato paste", + "salt and ground black pepper", + "carrots" + ] + }, + { + "id": 7038, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "large eggs", + "shredded sharp cheddar cheese", + "1% low-fat cottage cheese", + "cooking spray", + "cream cheese", + "low-fat sour cream", + "grated parmesan cheese", + "chopped onion", + "low fat chunky mushroom pasta sauce", + "part-skim mozzarella cheese", + "lasagna noodles, cooked and drained", + "sliced mushrooms" + ] + }, + { + "id": 35267, + "cuisine": "mexican", + "ingredients": [ + "chili", + "red bell pepper", + "cheddar cheese", + "white wine vinegar", + "chopped cilantro fresh", + "avocado", + "olive oil", + "chayotes", + "pepper", + "salt", + "sliced green onions" + ] + }, + { + "id": 5168, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "lime", + "sugar", + "mango" + ] + }, + { + "id": 3538, + "cuisine": "japanese", + "ingredients": [ + "boiled eggs", + "green onions", + "garlic", + "coconut milk", + "potatoes", + "button mushrooms", + "carrots", + "frozen peas", + "water", + "crushed red pepper flakes", + "curry", + "onions", + "soy sauce", + "bell pepper", + "ginger", + "cubed beef", + "ground turmeric" + ] + }, + { + "id": 42057, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "cheese", + "hominy", + "cream of mushroom soup" + ] + }, + { + "id": 17128, + "cuisine": "japanese", + "ingredients": [ + "chicken stock", + "dry sherry", + "chinese chives", + "regular soy sauce", + "salt", + "canola oil", + "fresh ginger", + "dipping sauces", + "ground beef", + "dough", + "sesame oil", + "ground white pepper" + ] + }, + { + "id": 42925, + "cuisine": "russian", + "ingredients": [ + "pure vanilla extract", + "large egg whites", + "salt", + "powdered sugar", + "baking soda", + "lemon juice", + "peppermint extract", + "large egg yolks", + "all-purpose flour", + "white vinegar", + "sugar", + "cookies", + "sour cream" + ] + }, + { + "id": 49511, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "barbecue sauce", + "cheese", + "brown sugar", + "finely chopped onion", + "cilantro", + "salsa", + "ground chicken", + "jalapeno chilies", + "ground pork", + "croutons", + "eggs", + "olive oil", + "worcestershire sauce", + "garlic" + ] + }, + { + "id": 11026, + "cuisine": "thai", + "ingredients": [ + "red pepper", + "roasted rice powder", + "juice", + "sugar", + "cilantro leaves", + "green onions", + "Thai fish sauce" + ] + }, + { + "id": 7304, + "cuisine": "cajun_creole", + "ingredients": [ + "bacon drippings", + "lump crab meat", + "beef bouillon", + "stewed tomatoes", + "all-purpose flour", + "onions", + "andouille sausage", + "water", + "cajun seasoning", + "chopped celery", + "okra", + "green bell pepper", + "gumbo file powder", + "bay leaves", + "garlic", + "dri leav thyme", + "white sugar", + "white vinegar", + "tomato sauce", + "hot pepper sauce", + "worcestershire sauce", + "salt", + "uncook medium shrimp, peel and devein" + ] + }, + { + "id": 19290, + "cuisine": "moroccan", + "ingredients": [ + "mayonaise", + "coriander seeds", + "white cheddar cheese", + "smoked paprika", + "pickle wedges", + "turkey", + "garlic cloves", + "arugula", + "sesame seeds buns", + "extra-virgin olive oil", + "fresh lemon juice", + "onion slices", + "corn chips", + "cumin seed", + "red bell pepper" + ] + }, + { + "id": 18361, + "cuisine": "italian", + "ingredients": [ + "pepper", + "diced tomatoes", + "green chile", + "large eggs", + "garlic cloves", + "olive oil", + "salt", + "garlic herb feta", + "baby spinach", + "pork sausages" + ] + }, + { + "id": 47792, + "cuisine": "french", + "ingredients": [ + "asparagus spears", + "crumbled blue cheese", + "salt", + "evaporated milk", + "cream cheese, soften" + ] + }, + { + "id": 39246, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "thai chile", + "coconut milk", + "water", + "garlic", + "onions", + "vinegar", + "salt", + "pork butt", + "bay leaves", + "oil", + "peppercorns" + ] + }, + { + "id": 7054, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "fresh thyme leaves", + "extra-virgin olive oil", + "wild mushrooms", + "ground black pepper", + "white truffle oil", + "salt", + "fresh thyme", + "butter", + "fresh parsley", + "dry vermouth", + "parmigiano reggiano cheese", + "orzo", + "onions" + ] + }, + { + "id": 4059, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "extra-virgin olive oil", + "low sodium parmesan cheese", + "white onion", + "cooking spray", + "garlic cloves", + "cherry tomatoes", + "basil leaves", + "linguini", + "black pepper", + "meatballs", + "salt" + ] + }, + { + "id": 34537, + "cuisine": "mexican", + "ingredients": [ + "tuna drained and flaked", + "sour cream", + "green onions", + "iceberg lettuce", + "taco shells", + "salsa", + "ground cumin", + "sliced black olives", + "celery" + ] + }, + { + "id": 2556, + "cuisine": "southern_us", + "ingredients": [ + "dry white wine", + "garlic cloves", + "mayonaise", + "butter", + "vidalia onion", + "shredded swiss cheese", + "water chestnuts, drained and chopped", + "hot sauce" + ] + }, + { + "id": 29875, + "cuisine": "southern_us", + "ingredients": [ + "low-fat plain yogurt", + "green onions", + "fat free cream cheese", + "prepared horseradish", + "worcestershire sauce", + "lump crab meat", + "ground red pepper", + "water chestnuts", + "hot sauce" + ] + }, + { + "id": 34237, + "cuisine": "russian", + "ingredients": [ + "flour", + "parsley root", + "pepper", + "shredded cabbage", + "carrots", + "tomato paste", + "bay leaves", + "pork stock", + "sauerkraut", + "butter", + "celery" + ] + }, + { + "id": 38508, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "crushed red pepper flakes", + "cooked rice", + "sesame oil", + "ground beef", + "ground ginger", + "green onions", + "garlic", + "brown sugar", + "vegetable oil" + ] + }, + { + "id": 6378, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "orange liqueur", + "confectioners sugar", + "orange zest" + ] + }, + { + "id": 7851, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "chili paste", + "water", + "fresh lime juice", + "fresh ginger", + "sugar", + "garlic cloves" + ] + }, + { + "id": 7915, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "jalapeno chilies", + "sour cream", + "avocado", + "shredded mild cheddar cheese", + "salt", + "chunky tomato salsa", + "cotija", + "large eggs", + "salsa", + "iceberg lettuce", + "lime", + "butter", + "corn tortillas" + ] + }, + { + "id": 34792, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "frozen pastry puff sheets", + "sliced mushrooms", + "roasted red peppers", + "purple onion", + "baby spinach leaves", + "chicken breasts", + "grated parmesan cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 21451, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "garlic cloves", + "salt", + "seedless cucumber", + "fresh lemon juice", + "greek style plain yogurt" + ] + }, + { + "id": 22747, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "eggs", + "salsa", + "Mexican cheese blend" + ] + }, + { + "id": 41238, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "greek style plain yogurt", + "sea salt", + "baking powder", + "whole wheat pastry flour", + "salt" + ] + }, + { + "id": 9320, + "cuisine": "cajun_creole", + "ingredients": [ + "crab", + "bell pepper", + "paprika", + "okra", + "thyme", + "ground black pepper", + "bay leaves", + "salt", + "carrots", + "fresh parsley", + "water", + "flour", + "garlic", + "oil", + "celery", + "no-salt-added diced tomatoes", + "seafood stock", + "worcestershire sauce", + "cayenne pepper", + "shrimp", + "onions" + ] + }, + { + "id": 23166, + "cuisine": "thai", + "ingredients": [ + "granny smith apples", + "vegetable oil", + "cilantro sprigs", + "thyme sprigs", + "yellow mustard seeds", + "apple cider vinegar", + "Thai red curry paste", + "cinnamon sticks", + "brown sugar", + "shallots", + "mint sprigs", + "apple juice", + "chicken stock", + "dry white wine", + "butter", + "garlic", + "chicken" + ] + }, + { + "id": 12545, + "cuisine": "chinese", + "ingredients": [ + "crab meat", + "sesame oil", + "sauce", + "salt and ground black pepper", + "garlic", + "ground white pepper", + "won ton wrappers", + "vegetable oil", + "cream cheese", + "green onions", + "purple onion" + ] + }, + { + "id": 43082, + "cuisine": "mexican", + "ingredients": [ + "light sour cream", + "Tabasco Green Pepper Sauce", + "enchilada sauce", + "green bell pepper", + "cooked chicken", + "onions", + "green chile", + "green onions", + "pinto beans", + "olive oil", + "low fat mozzarella", + "ground cumin" + ] + }, + { + "id": 31499, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "kielbasa", + "onions", + "collard greens", + "cayenne", + "scallions", + "ground black pepper", + "salt", + "canned low sodium chicken broth", + "cooking oil", + "long-grain rice" + ] + }, + { + "id": 32452, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "ground turmeric", + "ground cardamom", + "cinnamon", + "ground cumin", + "coriander" + ] + }, + { + "id": 47992, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "ghee", + "condensed milk", + "coconut", + "cocoa powder" + ] + }, + { + "id": 20344, + "cuisine": "japanese", + "ingredients": [ + "fish sauce", + "egg roll wrappers", + "vegetable oil", + "beansprouts", + "green cabbage", + "fresh ginger", + "green onions", + "red bell pepper", + "soy sauce", + "mirin", + "rice vinegar", + "cooked shrimp", + "dashi", + "large eggs", + "carrots", + "noodles" + ] + }, + { + "id": 15174, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "ground pepper", + "ricotta cheese", + "coarse salt", + "grated parmesan cheese", + "potato gnocchi" + ] + }, + { + "id": 24956, + "cuisine": "indian", + "ingredients": [ + "water", + "peeled fresh ginger", + "salt", + "leg of lamb", + "basmati rice", + "clove", + "ground black pepper", + "paprika", + "cumin seed", + "cinnamon sticks", + "tomato paste", + "bay leaves", + "purple onion", + "garlic cloves", + "chopped cilantro fresh", + "saffron threads", + "garam masala", + "ground red pepper", + "cardamom pods", + "greek yogurt", + "canola oil" + ] + }, + { + "id": 8137, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "tequila", + "montreal steak seasoning", + "ground beef", + "steak sauce", + "fresh lime juice", + "worcestershire sauce" + ] + }, + { + "id": 20829, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "fresh ginger", + "sweetener", + "star anise", + "water", + "black tea leaves", + "milk", + "cinnamon sticks" + ] + }, + { + "id": 9645, + "cuisine": "mexican", + "ingredients": [ + "white bread", + "white onion", + "coarse salt", + "ancho chile pepper", + "grape tomatoes", + "bananas", + "low sodium canned chicken stock", + "dried oregano", + "ground cinnamon", + "almonds", + "garlic", + "chipotle peppers", + "light brown sugar", + "ground cloves", + "vegetable oil", + "freshly ground pepper", + "unsweetened cocoa powder" + ] + }, + { + "id": 49352, + "cuisine": "southern_us", + "ingredients": [ + "evaporated milk", + "shrimp", + "large eggs", + "seasoning salt", + "vegetable oil", + "self rising flour" + ] + }, + { + "id": 37660, + "cuisine": "cajun_creole", + "ingredients": [ + "pure vanilla extract", + "eggs", + "bourbon whiskey", + "corn starch", + "cold water", + "sugar", + "raisins", + "ground cinnamon", + "french bread", + "grated nutmeg", + "cream of tartar", + "egg whites", + "heavy cream" + ] + }, + { + "id": 44704, + "cuisine": "brazilian", + "ingredients": [ + "cachaca", + "simple syrup", + "strawberries", + "lime wedges" + ] + }, + { + "id": 7403, + "cuisine": "indian", + "ingredients": [ + "mascarpone", + "cardamom pods", + "sugar", + "whipping cream", + "rose water", + "salt", + "pistachios", + "basmati rice" + ] + }, + { + "id": 42511, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "deep dish pie crust", + "pumpkin pie spice", + "evaporated milk", + "peach preserves", + "sweet potatoes", + "chopped pecans", + "brown sugar", + "salt" + ] + }, + { + "id": 49058, + "cuisine": "chinese", + "ingredients": [ + "stir fry sauce", + "canola oil", + "boneless chicken skinless thigh", + "freshly ground pepper", + "sugar pea", + "rice", + "sliced green onions", + "egg whites", + "corn starch" + ] + }, + { + "id": 46486, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "chopped cilantro fresh", + "pepper", + "extra-virgin olive oil", + "diced onions", + "tomatillos", + "lime juice", + "salt" + ] + }, + { + "id": 45664, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "fresh spinach", + "reduced sodium soy sauce", + "dry sherry", + "sea bass", + "fresh ginger", + "vegetable oil", + "sugar", + "green onions", + "garlic" + ] + }, + { + "id": 4764, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "okra", + "tomatoes", + "extra-virgin olive oil", + "water", + "vidalia onion", + "salt" + ] + }, + { + "id": 31704, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "fresh basil leaves", + "calamari", + "linguine", + "anchovies", + "crushed red pepper", + "large garlic cloves" + ] + }, + { + "id": 15087, + "cuisine": "southern_us", + "ingredients": [ + "pastry", + "white sugar", + "butter", + "gooseberries", + "double crust pie", + "all-purpose flour" + ] + }, + { + "id": 14367, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "tequila", + "feta cheese", + "garlic cloves", + "fresh orange juice", + "ancho chile pepper", + "olive oil", + "salt" + ] + }, + { + "id": 41604, + "cuisine": "thai", + "ingredients": [ + "minced ginger", + "lime wedges", + "crushed red pepper", + "asian fish sauce", + "sugar", + "black bean sauce", + "ground pork", + "onions", + "butter lettuce", + "peanuts", + "cilantro", + "ground beef", + "lime juice", + "shredded carrots", + "garlic", + "soy" + ] + }, + { + "id": 9433, + "cuisine": "indian", + "ingredients": [ + "water", + "all-purpose flour", + "unsalted butter", + "milk", + "salt" + ] + }, + { + "id": 19808, + "cuisine": "cajun_creole", + "ingredients": [ + "chili powder", + "salt", + "garlic cloves", + "black pepper", + "worcestershire sauce", + "hot sauce", + "large shrimp", + "ketchup", + "sub buns", + "dry bread crumbs", + "fresh lemon juice", + "olive oil", + "purple onion", + "leaf lettuce" + ] + }, + { + "id": 25334, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "green peas", + "extra sharp cheddar cheese", + "angel hair", + "broccoli florets", + "low-fat vegetable primavera spaghetti sauce", + "large eggs", + "salt", + "pepper", + "vegetable oil", + "carrots" + ] + }, + { + "id": 14914, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "salt", + "ground black pepper", + "bacon slices", + "light cream", + "butter", + "fresh parsley", + "cauliflower", + "large eggs", + "garlic" + ] + }, + { + "id": 24758, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "scotch", + "coriander", + "water", + "chili oil", + "gingerroot", + "soy sauce", + "Tabasco Pepper Sauce", + "rice vinegar", + "boneless skinless chicken breasts", + "orzo", + "garlic cloves" + ] + }, + { + "id": 9093, + "cuisine": "mexican", + "ingredients": [ + "pasta", + "corn kernels", + "salsa", + "canned black beans", + "roma tomatoes", + "tomato sauce", + "olive oil", + "ground turkey", + "avocado", + "shredded cheddar cheese", + "cilantro leaves" + ] + }, + { + "id": 5390, + "cuisine": "russian", + "ingredients": [ + "large eggs", + "heavy cream", + "black pepper", + "vegetable oil", + "dry bread crumbs", + "cremini mushrooms", + "chopped fresh chives", + "salt", + "unsalted butter", + "ground veal", + "white sandwich bread" + ] + }, + { + "id": 33935, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "cilantro", + "chili seasoning", + "oil", + "mozzarella cheese", + "sauce", + "meat" + ] + }, + { + "id": 862, + "cuisine": "southern_us", + "ingredients": [ + "fresh chives", + "large eggs", + "fresh lemon juice", + "mayonaise", + "corn", + "relish", + "lump crab meat", + "ground red pepper", + "okra pods", + "bread crumbs", + "olive oil", + "salt" + ] + }, + { + "id": 33119, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "whole milk", + "large eggs", + "all-purpose flour", + "yellow corn meal", + "butter" + ] + }, + { + "id": 20812, + "cuisine": "indian", + "ingredients": [ + "crushed tomatoes", + "jalapeno chilies", + "cilantro leaves", + "ground cumin", + "sugar", + "garam masala", + "heavy cream", + "ground coriander", + "boneless chicken skinless thigh", + "nonfat plain greek yogurt", + "salt", + "garlic cloves", + "diced onions", + "fresh ginger", + "butter", + "cayenne pepper" + ] + }, + { + "id": 9853, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "pepperoni turkei", + "pitted kalamata olives", + "cooking spray", + "oregano", + "roasted red peppers", + "oven-ready lasagna noodles", + "artichoke hearts", + "mushrooms" + ] + }, + { + "id": 33810, + "cuisine": "russian", + "ingredients": [ + "mace", + "cinnamon", + "cardamom", + "slivered almonds", + "peaches", + "ginger", + "confectioners sugar", + "honey", + "flour", + "jam", + "blackberries", + "eggs", + "baking soda", + "butter", + "lemon juice" + ] + }, + { + "id": 41069, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "all-purpose flour", + "garlic", + "flat leaf parsley", + "large eggs", + "grated lemon zest", + "ground black pepper", + "salt" + ] + }, + { + "id": 7668, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "coriander powder", + "ginger", + "onions", + "coconut", + "vinegar", + "salt", + "masala", + "pepper", + "beef", + "garlic", + "ground turmeric", + "curry leaves", + "garam masala", + "chili powder", + "mustard seeds" + ] + }, + { + "id": 21817, + "cuisine": "indian", + "ingredients": [ + "dried thyme", + "extra-virgin olive oil", + "fat", + "salad", + "lemon", + "fine sea salt", + "field lettuce", + "garlic", + "ground white pepper", + "tandoori spices", + "hamachi fillets", + "vinaigrette" + ] + }, + { + "id": 22360, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "cilantro leaves", + "onions", + "olive oil", + "red bell pepper", + "lime", + "taco seasoning", + "orange bell pepper", + "medium shrimp" + ] + }, + { + "id": 32675, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "garam masala", + "salt", + "chicken", + "curry leaves", + "water", + "ginger", + "cinnamon sticks", + "fresh spinach", + "crushed red pepper flakes", + "cumin seed", + "tomatoes", + "curry powder", + "garlic", + "onions" + ] + }, + { + "id": 7573, + "cuisine": "french", + "ingredients": [ + "calvados", + "heavy cream", + "sugar", + "strawberries", + "cinnamon" + ] + }, + { + "id": 21952, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dry pasta", + "red bell pepper", + "prepar pesto", + "dry white wine", + "garlic cloves", + "grated parmesan cheese", + "sweet italian sausage", + "onions", + "ground black pepper", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 48094, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "roasted red peppers", + "balsamic vinegar", + "honey", + "balsamic vinaigrette salad dressing", + "hot Italian sausages", + "olive oil", + "ravioli", + "onions", + "spinach", + "Alfredo sauce", + "cheese" + ] + }, + { + "id": 8325, + "cuisine": "french", + "ingredients": [ + "sugar", + "nonfat dry milk powder", + "brown sugar", + "egg substitute", + "gingerroot", + "skim milk", + "vanilla extract", + "vegetable oil cooking spray", + "water" + ] + }, + { + "id": 5354, + "cuisine": "french", + "ingredients": [ + "mace", + "crushed garlic", + "unbaked pie shells", + "chicken broth", + "ground sage", + "rendered bacon fat", + "onions", + "ground black pepper", + "ground pork", + "fresh parsley", + "cream", + "savory", + "salt" + ] + }, + { + "id": 42544, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "parmigiana-reggiano", + "rigatoni", + "tomatoes", + "coarse salt", + "olive oil" + ] + }, + { + "id": 20292, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "white rice", + "hot sauce", + "onions", + "green bell pepper", + "cajun seasoning", + "salt", + "celery", + "tomato purée", + "olive oil", + "garlic", + "shrimp", + "white wine", + "diced tomatoes", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 44608, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "large eggs", + "salt", + "unsweetened cocoa powder", + "milk", + "vanilla extract", + "chopped pecans", + "sugar", + "butter", + "all-purpose flour", + "mini marshmallows", + "frosting", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 24252, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "whipping cream", + "pecan halves", + "unsalted butter", + "cream ic peach", + "pecans", + "shortbread cookies", + "water", + "vanilla extract" + ] + }, + { + "id": 8167, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "dried thyme", + "garlic", + "celery", + "small red beans", + "Tabasco Pepper Sauce", + "cayenne pepper", + "collard greens", + "brown rice", + "salt", + "onions", + "black pepper", + "yellow bell pepper", + "smoked paprika" + ] + }, + { + "id": 40436, + "cuisine": "korean", + "ingredients": [ + "large garlic cloves", + "dark sesame oil", + "flank steak", + "tamari soy sauce", + "vegetable oil", + "grill seasoning", + "honey", + "red pepper flakes", + "scallions" + ] + }, + { + "id": 47614, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "dry white wine", + "crushed red pepper", + "olive oil", + "butter", + "fresh angel hair", + "littleneck clams", + "minced garlic", + "clam juice", + "flat leaf parsley" + ] + }, + { + "id": 38245, + "cuisine": "italian", + "ingredients": [ + "pepper", + "chicken breasts", + "dried tarragon leaves", + "cooking spray", + "oil", + "capers", + "olive oil", + "kalamata", + "pizza crust", + "dry white wine" + ] + }, + { + "id": 23644, + "cuisine": "spanish", + "ingredients": [ + "cava", + "sugar", + "orange juice", + "water", + "strawberries" + ] + }, + { + "id": 21786, + "cuisine": "mexican", + "ingredients": [ + "marinade", + "cilantro", + "diced tomatoes", + "boneless skinless chicken breasts", + "rice" + ] + }, + { + "id": 35273, + "cuisine": "southern_us", + "ingredients": [ + "andouille sausage", + "black-eyed peas", + "white rice", + "onions", + "pepper sauce", + "water", + "smoked ham", + "hot sauce", + "dried oregano", + "bacon drippings", + "pepper", + "bay leaves", + "salt", + "smoked ham hocks", + "green bell pepper", + "dried thyme", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 11411, + "cuisine": "italian", + "ingredients": [ + "hazelnuts", + "boneless skinless chicken breast halves", + "butter", + "Madeira", + "heavy whipping cream", + "shallots", + "canola oil" + ] + }, + { + "id": 43392, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "sea salt", + "dried oregano", + "eggs", + "ground black pepper", + "sliced ham", + "bread crumbs", + "lean ground beef", + "fresh parsley", + "tomato juice", + "garlic" + ] + }, + { + "id": 19413, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "onions", + "iceberg lettuce", + "vegetable oil", + "small capers, rins and drain", + "jalapeno chilies", + "chopped cilantro fresh", + "hellmann' or best food light mayonnais", + "avocado", + "red bell pepper", + "frozen crabmeat, thaw and drain" + ] + }, + { + "id": 31999, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "coconut milk", + "fish sauce", + "garlic", + "ground turmeric", + "curry powder", + "salt", + "chicken", + "hot pepper", + "white sugar" + ] + }, + { + "id": 49362, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "garlic", + "cayenne pepper", + "onions", + "fresh tomatoes", + "chili powder", + "shredded pepper jack cheese", + "ground turkey", + "ground cumin", + "olive oil", + "sweet pepper", + "sour cream", + "polenta", + "black beans", + "diced tomatoes", + "salsa", + "chipotles in adobo" + ] + }, + { + "id": 12087, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "purple onion", + "Mexican cheese", + "cumin", + "green bell pepper", + "chili powder", + "frozen corn", + "sour cream", + "guacamole", + "salt", + "red bell pepper", + "refried beans", + "cilantro", + "red enchilada sauce", + "corn tortillas" + ] + }, + { + "id": 6238, + "cuisine": "southern_us", + "ingredients": [ + "blackberry jam", + "buttermilk", + "spice cake mix", + "applesauce", + "large eggs", + "frosting", + "ground cinnamon", + "vegetable oil" + ] + }, + { + "id": 23785, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "quinoa", + "black beans", + "queso fresco" + ] + }, + { + "id": 37278, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "peanuts", + "jalapeno chilies", + "vegetable oil", + "chopped cilantro", + "mint", + "lime juice", + "hoisin sauce", + "shallots", + "rice vinegar", + "kosher salt", + "radishes", + "mint leaves", + "garlic", + "rice paper", + "sugar", + "lemongrass", + "extra firm tofu", + "sesame oil", + "carrots" + ] + }, + { + "id": 29101, + "cuisine": "filipino", + "ingredients": [ + "olive oil", + "fresh green bean", + "bok choy", + "prawns", + "salt", + "water", + "achiote powder", + "creamy peanut butter", + "eggplant", + "garlic", + "onions" + ] + }, + { + "id": 17626, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "ground nutmeg", + "purple onion", + "roasting chickens", + "ground cinnamon", + "dried thyme", + "dark rum", + "onion tops", + "ground ginger", + "lime juice", + "ground black pepper", + "salt", + "molasses", + "olive oil", + "malt vinegar", + "ground allspice" + ] + }, + { + "id": 29151, + "cuisine": "southern_us", + "ingredients": [ + "tea bags", + "sugar syrup", + "peaches", + "club soda", + "ginger ale", + "peach nectar", + "frozen lemonade concentrate", + "fresh mint" + ] + }, + { + "id": 28819, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garam masala", + "green chilies", + "frozen peas", + "garlic paste", + "potatoes", + "onions", + "red chili powder", + "coriander powder", + "cumin seed", + "ground turmeric", + "cauliflower", + "water", + "vegetable oil", + "coriander" + ] + }, + { + "id": 14971, + "cuisine": "thai", + "ingredients": [ + "chicken wings", + "salt", + "corn starch", + "garlic powder", + "ground coriander", + "sugar", + "cayenne pepper", + "ground cumin", + "onion powder", + "cumin seed" + ] + }, + { + "id": 568, + "cuisine": "british", + "ingredients": [ + "ground black pepper", + "vegetable oil", + "malt vinegar", + "soda water", + "fish fillets", + "flour", + "lemon", + "hot sauce", + "mayonaise", + "baking powder", + "cornichons", + "rice flour", + "capers", + "large eggs", + "russet potatoes", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 30360, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "garlic", + "pepper", + "diced tomatoes", + "onions", + "sugar", + "boneless chicken", + "coconut milk", + "tomato sauce", + "olive oil", + "salt" + ] + }, + { + "id": 30652, + "cuisine": "russian", + "ingredients": [ + "celery ribs", + "ground black pepper", + "cauliflower florets", + "green pepper", + "ground cayenne pepper", + "water", + "butter", + "canned tomatoes", + "fresh lemon juice", + "green cabbage", + "potatoes", + "whipping cream", + "dried dillweed", + "onions", + "red beets", + "red pepper", + "salt", + "carrots" + ] + }, + { + "id": 19575, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "vanilla extract", + "baking powder", + "all-purpose flour", + "corn kernels", + "salt", + "butter", + "sweetened condensed milk" + ] + }, + { + "id": 32060, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "chickpeas", + "onions", + "bread", + "chili powder", + "garlic cloves", + "ground turmeric", + "coriander powder", + "oil", + "basmati rice", + "fresh tomatoes", + "salt", + "ginger root", + "ground cumin" + ] + }, + { + "id": 46005, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "grated parmesan cheese", + "salt", + "carrots", + "sage leaves", + "large eggs", + "large garlic cloves", + "liver", + "ground black pepper", + "dry white wine", + "chopped onion", + "country bread", + "fennel bulb", + "butter", + "chopped walnuts", + "chicken" + ] + }, + { + "id": 26456, + "cuisine": "british", + "ingredients": [ + "black pepper", + "pastry dough", + "large egg yolks", + "salt", + "stilton", + "heavy cream", + "large eggs" + ] + }, + { + "id": 24264, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "olive oil", + "garlic cloves", + "cornish game hens", + "low salt chicken broth", + "rosemary sprigs", + "lemon" + ] + }, + { + "id": 14597, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "fresh ginger root", + "garlic", + "canola oil", + "kosher salt", + "jalapeno chilies", + "cumin seed", + "tumeric", + "garam masala", + "cayenne pepper", + "cauliflower", + "fresh cilantro", + "russet potatoes", + "onions" + ] + }, + { + "id": 36603, + "cuisine": "spanish", + "ingredients": [ + "flour", + "raisins", + "tomato paste", + "parsley", + "garlic cloves", + "hard-boiled egg", + "chickpeas", + "roasted almonds", + "vegetable stock", + "onions" + ] + }, + { + "id": 15304, + "cuisine": "spanish", + "ingredients": [ + "roasted red peppers", + "red wine", + "smoked paprika", + "crushed tomatoes", + "bay leaves", + "ground rosemary", + "onions", + "non fat chicken stock", + "paprika", + "chopped parsley", + "dried thyme", + "chili powder", + "skinless chicken thighs" + ] + }, + { + "id": 11600, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "red pepper flakes", + "corn starch", + "black pepper", + "green onions", + "rice vinegar", + "low sodium soy sauce", + "extra firm tofu", + "sea salt", + "honey", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 8076, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "plums", + "dried oregano", + "seedless cucumber", + "balsamic vinegar", + "ripe olives", + "pepper", + "extra-virgin olive oil", + "polenta", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 28043, + "cuisine": "british", + "ingredients": [ + "nutmeg", + "bread dough", + "honey", + "currant", + "caster sugar", + "lard" + ] + }, + { + "id": 43344, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "salt", + "canola oil", + "water", + "long-grain rice", + "peas", + "ground beef", + "pepper", + "sauce" + ] + }, + { + "id": 18436, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "mushrooms", + "garlic", + "lasagna noodles", + "green peas", + "shredded mozzarella cheese", + "eggs", + "grated parmesan cheese", + "dry red wine", + "onions", + "olive oil", + "sliced carrots", + "broccoli" + ] + }, + { + "id": 42720, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "green onions", + "white pepper", + "corn starch", + "soy sauce", + "ginger", + "chicken stock", + "enokitake" + ] + }, + { + "id": 11502, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "garlic cloves", + "tumeric", + "salt", + "onions", + "tomatoes", + "ginger", + "chillies", + "fresh coriander", + "free range egg" + ] + }, + { + "id": 31314, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "agave nectar", + "cracked black pepper", + "canola oil", + "fish sauce", + "watercress leaves", + "crushed garlic", + "rice vinegar", + "tomatoes", + "kosher salt", + "sesame oil", + "purple onion", + "sugar", + "lime", + "top sirloin", + "oyster sauce" + ] + }, + { + "id": 42892, + "cuisine": "indian", + "ingredients": [ + "tofu", + "baby spinach", + "cayenne pepper", + "tomato sauce", + "sea salt", + "ground cumin", + "low-fat coconut milk", + "large garlic cloves", + "ground coriander", + "frozen spinach", + "garam masala", + "ginger" + ] + }, + { + "id": 35876, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "ground mustard", + "flour", + "elbow pasta", + "unsalted butter", + "sharp cheddar cheese", + "water", + "salt", + "panko breadcrumbs" + ] + }, + { + "id": 12089, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "large eggs", + "salt", + "red bell pepper", + "olive oil", + "unsalted butter", + "coarse salt", + "garlic cloves", + "sugar", + "swiss chard", + "pastry dough", + "all-purpose flour", + "milk", + "prosciutto", + "whole milk ricotta cheese", + "provolone cheese" + ] + }, + { + "id": 35511, + "cuisine": "indian", + "ingredients": [ + "pepper", + "curds", + "salt", + "ground cumin", + "mint leaves", + "cucumber", + "ginger juice", + "green chilies" + ] + }, + { + "id": 16118, + "cuisine": "brazilian", + "ingredients": [ + "cranberry juice", + "orange juice", + "blackberries", + "lime", + "cachaca", + "lime juice", + "cabernet sauvignon", + "simple syrup", + "ice" + ] + }, + { + "id": 40608, + "cuisine": "italian", + "ingredients": [ + "pepper", + "veal chops", + "salt", + "tomatoes", + "unsalted butter", + "red wine vinegar", + "olive oil", + "large eggs", + "arugula", + "bread crumb fresh", + "dijon mustard", + "large garlic cloves" + ] + }, + { + "id": 33601, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "dried thyme", + "red pepper flakes", + "onions", + "minced garlic", + "black-eyed peas", + "flavoring", + "homemade chicken stock", + "olive oil", + "ham", + "water", + "apple cider vinegar", + "celery" + ] + }, + { + "id": 49071, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "garlic chili sauce", + "soy sauce", + "sesame oil", + "brown sugar", + "fresh ginger", + "chicken thighs", + "black pepper", + "rice vinegar" + ] + }, + { + "id": 10391, + "cuisine": "italian", + "ingredients": [ + "capers", + "olive oil", + "zucchini", + "garlic cloves", + "fresh basil", + "pinenuts", + "bulb fennel", + "white wine vinegar", + "toast", + "tomatoes", + "black pepper", + "eggplant", + "raisins", + "celery", + "green olives", + "kosher salt", + "granulated sugar", + "salt", + "onions" + ] + }, + { + "id": 6259, + "cuisine": "mexican", + "ingredients": [ + "lime", + "beer", + "chicken drumsticks", + "coarse salt" + ] + }, + { + "id": 43323, + "cuisine": "russian", + "ingredients": [ + "celery ribs", + "fennel bulb", + "peas", + "marjoram", + "spelt", + "shallots", + "carrots", + "olive oil", + "lemon", + "thyme", + "fennel fronds", + "dandelion greens", + "red russian kale" + ] + }, + { + "id": 16015, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "tortilla chips", + "cilantro sprigs", + "onions", + "jalapeno chilies", + "garlic cloves", + "salt" + ] + }, + { + "id": 10785, + "cuisine": "thai", + "ingredients": [ + "romaine lettuce", + "lime juice", + "flank steak", + "red bell pepper", + "fresh basil", + "Thai chili paste", + "ground black pepper", + "salt", + "sugar", + "cherry tomatoes", + "purple onion", + "fresh mint", + "fish sauce", + "water", + "cooking spray", + "cucumber" + ] + }, + { + "id": 29602, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "pork loin", + "tonkatsu sauce", + "ground black pepper", + "vegetable oil", + "panko breadcrumbs", + "turkey breast cutlets", + "lemon wedge", + "salt", + "flour", + "napa cabbage" + ] + }, + { + "id": 37381, + "cuisine": "southern_us", + "ingredients": [ + "butter crackers", + "large eggs", + "buttermilk", + "kosher salt", + "vegetable oil", + "fresh marjoram", + "gravy", + "all-purpose flour", + "ground pepper", + "top sirloin steak" + ] + }, + { + "id": 31043, + "cuisine": "mexican", + "ingredients": [ + "salt", + "jalapeno chilies", + "onions", + "tomatoes", + "fresh lime juice", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 34915, + "cuisine": "korean", + "ingredients": [ + "pepper", + "ginger", + "brown sugar", + "sesame oil", + "salt", + "green onions", + "garlic", + "soy sauce", + "red pepper flakes", + "ground beef" + ] + }, + { + "id": 747, + "cuisine": "italian", + "ingredients": [ + "low sodium canned chicken broth", + "parmigiano reggiano cheese", + "rosemary leaves", + "celery", + "parmesan cheese", + "red pepper flakes", + "white beans", + "kale", + "bay leaves", + "garlic", + "onions", + "kosher salt", + "ground black pepper", + "extra-virgin olive oil", + "carrots" + ] + }, + { + "id": 36898, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "italian eggplant", + "provolone cheese", + "marinara sauce", + "garlic", + "fresh basil leaves", + "herbs", + "extra-virgin olive oil", + "nonstick spray", + "coarse salt", + "parmagiano reggiano" + ] + }, + { + "id": 36633, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "fresh shiitake mushrooms", + "all-purpose flour", + "low salt chicken broth", + "green onions", + "linguine", + "green beans", + "peeled fresh ginger", + "vegetable oil", + "pork shoulder boston butt", + "hoisin sauce", + "sesame oil", + "chinese five-spice powder" + ] + }, + { + "id": 42462, + "cuisine": "cajun_creole", + "ingredients": [ + "baking soda", + "salt", + "meringue", + "sugar", + "ground black pepper", + "hot sauce", + "ground cinnamon", + "ground nutmeg", + "all-purpose flour", + "cane syrup", + "water", + "large eggs", + "peanut oil" + ] + }, + { + "id": 36597, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "milk", + "salt", + "pepper", + "butter", + "eggs", + "potatoes", + "corn tortillas", + "water", + "bacon slices" + ] + }, + { + "id": 20695, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "green onions", + "boneless chicken skinless thigh", + "soy sauce", + "crushed red pepper", + "sake", + "fresh ginger" + ] + }, + { + "id": 24296, + "cuisine": "french", + "ingredients": [ + "chopped almonds", + "evaporated skim milk", + "sugar", + "vanilla extract", + "almond extract", + "large eggs", + "sweetened condensed milk" + ] + }, + { + "id": 2353, + "cuisine": "thai", + "ingredients": [ + "coconut oil", + "potatoes", + "ginger", + "chickpeas", + "carrots", + "fresh lime juice", + "tomato purée", + "soy sauce", + "shallots", + "purple onion", + "cumin seed", + "coconut milk", + "ground cumin", + "brown sugar", + "thai basil", + "vegetable stock", + "tomato ketchup", + "yams", + "squash", + "chiles", + "bay leaves", + "garlic", + "ground coriander", + "ground white pepper", + "ground turmeric" + ] + }, + { + "id": 42143, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "garlic", + "soy sauce", + "vegetable oil", + "corn starch", + "flank steak", + "dark brown sugar", + "water", + "ginger" + ] + }, + { + "id": 33463, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "half & half", + "carrots", + "onions", + "pepper", + "butter", + "bay leaf", + "white wine", + "lean ground beef", + "celery", + "crushed tomatoes", + "salt", + "fresh parsley" + ] + }, + { + "id": 1847, + "cuisine": "italian", + "ingredients": [ + "fresh oregano leaves", + "olive oil", + "extra-virgin olive oil", + "kosher salt", + "mushrooms", + "black pepper", + "baby arugula", + "pecorino cheese", + "baguette", + "balsamic vinegar" + ] + }, + { + "id": 23225, + "cuisine": "italian", + "ingredients": [ + "peeled fresh ginger", + "cayenne pepper", + "mayonaise", + "ponzu", + "chopped cilantro fresh", + "tentacles", + "vegetable oil", + "fresh lime juice", + "calamari", + "all-purpose flour" + ] + }, + { + "id": 28876, + "cuisine": "french", + "ingredients": [ + "ketchup", + "red wine vinegar", + "shiitake mushroom caps", + "ground black pepper", + "ginger", + "watercress leaves", + "grapeseed oil", + "mango", + "soy sauce", + "boneless chicken breast halves", + "garlic" + ] + }, + { + "id": 19281, + "cuisine": "italian", + "ingredients": [ + "salt", + "potatoes", + "grated parmesan cheese", + "Ragu® Robusto!® Pasta Sauce", + "vegetable oil" + ] + }, + { + "id": 3032, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "sweet onion", + "duck", + "chicken broth", + "pepper", + "old bay seasoning", + "ham", + "pork", + "red wine vinegar", + "garlic cloves", + "collard greens", + "smoked bacon", + "salt", + "celery seed" + ] + }, + { + "id": 7686, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "dried apricot", + "white wine vinegar", + "ground cloves", + "vegetable oil", + "ground cardamom", + "sugar", + "peeled fresh ginger", + "cayenne pepper", + "water", + "lamb shoulder", + "onions" + ] + }, + { + "id": 12621, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "kidney beans", + "chopped celery", + "dried oregano", + "tomato paste", + "dried thyme", + "lean ground beef", + "chopped onion", + "dried basil", + "ditalini pasta", + "beef broth", + "minced garlic", + "olive oil", + "cracked black pepper", + "dried parsley" + ] + }, + { + "id": 3183, + "cuisine": "southern_us", + "ingredients": [ + "frozen whipped topping", + "lime zest", + "fresh lime juice", + "graham cracker crusts", + "eggs", + "sweetened condensed milk" + ] + }, + { + "id": 44878, + "cuisine": "moroccan", + "ingredients": [ + "boneless chicken thighs", + "flour", + "garlic", + "onions", + "ground ginger", + "olive oil", + "lemon", + "salt", + "ground cumin", + "chicken stock", + "pepper", + "parsley", + "powdered turmeric", + "saffron", + "pitted black olives", + "ground black pepper", + "sea salt", + "sweet paprika" + ] + }, + { + "id": 17177, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "plums", + "garlic cloves", + "sugar", + "lime juice", + "salt", + "vidalia onion", + "water", + "white wine vinegar", + "granny smith apples", + "jalapeno chilies", + "orange juice" + ] + }, + { + "id": 33681, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "ground black pepper", + "sun-dried tomatoes in oil", + "minced garlic", + "salt", + "olive oil", + "shredded mozzarella cheese", + "french baguette", + "balsamic vinegar", + "plum tomatoes" + ] + }, + { + "id": 30046, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "garlic", + "pepper", + "grated parmesan cheese", + "white sugar", + "tomato paste", + "olive oil", + "salt", + "water", + "red wine", + "dried oregano" + ] + }, + { + "id": 16601, + "cuisine": "british", + "ingredients": [ + "eggs", + "currant", + "self rising flour", + "chocolate chips", + "butter", + "caster sugar", + "salt" + ] + }, + { + "id": 23753, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "baking powder", + "milk", + "salt", + "cold water", + "active dry yeast", + "all-purpose flour", + "eggs", + "baking soda", + "white sugar" + ] + }, + { + "id": 38752, + "cuisine": "indian", + "ingredients": [ + "unsalted butter", + "extra-virgin olive oil", + "cumin seed", + "chopped fresh mint", + "ground black pepper", + "brown mustard seeds", + "ear of corn", + "chopped cilantro", + "peeled fresh ginger", + "salt", + "scallions", + "fresh dill", + "seeds", + "green chilies", + "lemon juice" + ] + }, + { + "id": 13567, + "cuisine": "japanese", + "ingredients": [ + "curry powder", + "cumin seed", + "salt", + "olive oil", + "onions", + "tomatoes", + "okra" + ] + }, + { + "id": 31345, + "cuisine": "japanese", + "ingredients": [ + "chicken legs", + "mirin", + "scallions", + "soy sauce", + "garlic", + "sake", + "ginger", + "ground black pepper", + "dark brown sugar" + ] + }, + { + "id": 1166, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "corn tortillas", + "salt", + "coleslaw", + "fresh cilantro", + "frozen corn kernels", + "chili powder", + "filet" + ] + }, + { + "id": 37421, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "purple onion", + "red wine vinegar", + "fillets", + "lime", + "corn tortillas", + "reduced-fat sour cream", + "fresh lime juice" + ] + }, + { + "id": 12634, + "cuisine": "chinese", + "ingredients": [ + "high-gluten flour", + "oysters", + "peanut oil", + "cold water", + "salt", + "baking powder" + ] + }, + { + "id": 16993, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "onion powder", + "cayenne pepper", + "parmesan cheese", + "paprika", + "olive oil spray", + "garlic powder", + "buttermilk", + "panko breadcrumbs", + "boneless skinless chicken breasts", + "hot sauce" + ] + }, + { + "id": 44890, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "tamarind paste", + "mustard seeds", + "plain yogurt", + "salt", + "dried chile peppers", + "ground turmeric", + "vegetable oil", + "long-grain rice", + "cashew nuts", + "water", + "cumin seed", + "fresh lime juice" + ] + }, + { + "id": 3684, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "serrano chile", + "cider vinegar", + "fresh lime juice", + "tomatoes", + "garlic cloves", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 36641, + "cuisine": "thai", + "ingredients": [ + "vegetable oil", + "roasted peanuts", + "red pepper", + "onions", + "napa cabbage", + "carrots", + "thai noodles", + "sauce", + "snow peas" + ] + }, + { + "id": 15661, + "cuisine": "french", + "ingredients": [ + "salt", + "fresh lemon juice", + "lemon wedge", + "fresh herbs", + "grated lemon zest", + "bass fillets", + "olive oil", + "freshly ground pepper", + "herbes de provence" + ] + }, + { + "id": 37010, + "cuisine": "cajun_creole", + "ingredients": [ + "warm water", + "butter", + "canola oil", + "powdered sugar", + "active dry yeast", + "salt", + "milk", + "vanilla", + "sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 32723, + "cuisine": "italian", + "ingredients": [ + "thyme sprigs", + "extra-virgin olive oil", + "fresh thyme leaves", + "orange zest", + "picholine olives", + "olives" + ] + }, + { + "id": 27042, + "cuisine": "greek", + "ingredients": [ + "egg yolks", + "chicken stock", + "fresh lemon juice", + "coarse salt", + "ground black pepper", + "long grain white rice" + ] + }, + { + "id": 23082, + "cuisine": "french", + "ingredients": [ + "olive oil", + "garlic", + "Burgundy wine", + "tomatoes", + "portabello mushroom", + "salt", + "italian seasoning", + "ground black pepper", + "gruyere cheese", + "chicken thighs", + "sweet onion", + "heavy cream", + "corn starch" + ] + }, + { + "id": 6816, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "baking powder", + "all-purpose flour", + "eggs", + "granulated sugar", + "sea salt", + "oil", + "ground black pepper", + "buttermilk", + "chili sauce", + "pepper", + "green onions", + "salt", + "cornmeal" + ] + }, + { + "id": 5365, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "shredded lettuce", + "cheddar cheese", + "green onions", + "sour cream", + "sliced black olives", + "taco seasoning", + "corn", + "russet potatoes", + "ground turkey" + ] + }, + { + "id": 35992, + "cuisine": "moroccan", + "ingredients": [ + "water", + "paprika", + "ground ginger", + "vegetable oil", + "onions", + "ground black pepper", + "salt", + "green olives", + "lemon", + "chicken" + ] + }, + { + "id": 12334, + "cuisine": "indian", + "ingredients": [ + "cilantro", + "cucumber", + "tomatoes", + "salt", + "purple onion", + "chaat masala", + "sugar", + "low-fat yogurt" + ] + }, + { + "id": 25813, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "basil", + "all-purpose flour", + "fontina cheese", + "zucchini", + "yellow bell pepper", + "champagne vinegar", + "ground black pepper", + "ice water", + "salt", + "japanese eggplants", + "grape tomatoes", + "fresh thyme leaves", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 10076, + "cuisine": "japanese", + "ingredients": [ + "water", + "curry sauce", + "carrots", + "shiitake", + "butter", + "curry powder", + "chicken breasts", + "onions", + "pepper", + "udon", + "salt" + ] + }, + { + "id": 48752, + "cuisine": "mexican", + "ingredients": [ + "Anaheim chile", + "Hidden Valley® Original Ranch Salad® Dressing & Seasoning Mix", + "cilantro leaves", + "hass avocado", + "purple onion", + "fresh lime juice", + "ground black pepper", + "red bell pepper" + ] + }, + { + "id": 30062, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "grated parmesan cheese", + "extra-virgin olive oil", + "garlic cloves", + "onions", + "dried porcini mushrooms", + "pappardelle", + "sweet italian sausage", + "low salt chicken broth", + "water", + "dry red wine", + "chopped fresh sage", + "flat leaf parsley", + "tomatoes", + "bay leaves", + "veal for stew", + "carrots" + ] + }, + { + "id": 16562, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "littleneck clams", + "garlic cloves", + "spanish chorizo", + "stewed tomatoes" + ] + }, + { + "id": 47005, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "vinegar", + "ground allspice", + "black peppercorns", + "ground nutmeg", + "salt", + "oil", + "ground cinnamon", + "lime", + "green onions", + "gingerroot", + "soy sauce", + "fresh thyme", + "pineapple juice", + "garlic cloves" + ] + }, + { + "id": 742, + "cuisine": "japanese", + "ingredients": [ + "sake", + "shoyu", + "mirin", + "dark brown sugar" + ] + }, + { + "id": 1436, + "cuisine": "british", + "ingredients": [ + "yellow cake mix", + "pie crust", + "strawberry jam", + "eggs", + "oil", + "cold water", + "water" + ] + }, + { + "id": 38742, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "Gochujang base", + "syrup", + "hot pepper", + "onions", + "cooking oil", + "sausages", + "ketchup", + "sweet pepper" + ] + }, + { + "id": 14248, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "fresh lemon juice", + "fat free less sodium chicken broth", + "salt", + "thyme sprigs", + "olive oil", + "garlic cloves", + "boneless skinless chicken breast halves", + "butter", + "herbes de provence" + ] + }, + { + "id": 3344, + "cuisine": "italian", + "ingredients": [ + "milk", + "large eggs", + "vanilla beans", + "granulated sugar", + "prunes", + "large egg yolks", + "confectioners sugar", + "panettone", + "unsalted butter", + "grappa" + ] + }, + { + "id": 16836, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "hoisin sauce", + "sesame oil", + "all-purpose flour", + "eggs", + "light soy sauce", + "pork loin", + "red wine", + "chinese five-spice powder", + "warm water", + "dry yeast", + "vegetable oil", + "freshly ground pepper", + "garlic paste", + "honey", + "green onions", + "salt", + "oil" + ] + }, + { + "id": 35706, + "cuisine": "mexican", + "ingredients": [ + "sour cream", + "shredded Monterey Jack cheese", + "avocado", + "corn tortillas", + "turkey breast", + "meat", + "canola oil" + ] + }, + { + "id": 31338, + "cuisine": "mexican", + "ingredients": [ + "cream", + "ancho chile pepper", + "manchego cheese", + "refried beans", + "chicken-flavored soup powder" + ] + }, + { + "id": 41295, + "cuisine": "cajun_creole", + "ingredients": [ + "red kidney beans", + "chopped tomatoes", + "purple onion", + "white wine", + "cajun seasoning", + "fresh parsley", + "collard greens", + "bay leaves", + "red bell pepper", + "low sodium vegetable broth", + "red rice" + ] + }, + { + "id": 48965, + "cuisine": "italian", + "ingredients": [ + "fronds", + "fresh oregano", + "fennel seeds", + "fennel bulb", + "varnish clams", + "italian sausage", + "clam juice", + "olive oil", + "red bell pepper" + ] + }, + { + "id": 37884, + "cuisine": "mexican", + "ingredients": [ + "white quinoa", + "lime", + "diced red onions", + "chopped cilantro", + "avocado", + "water", + "cherry tomatoes", + "sea salt", + "black beans", + "kale", + "gluten", + "chopped cilantro fresh", + "black pepper", + "lime juice", + "olive oil", + "hemp seeds" + ] + }, + { + "id": 47849, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic", + "salsa", + "cumin", + "black beans", + "roma tomatoes", + "purple onion", + "sour cream", + "mayonaise", + "corn husks", + "black olives", + "elbow macaroni", + "pepper", + "green onions", + "salt", + "chopped cilantro" + ] + }, + { + "id": 35438, + "cuisine": "french", + "ingredients": [ + "cider vinegar", + "potatoes", + "mayonaise", + "calvados", + "apple juice", + "ground black pepper", + "heavy cream", + "granny smith apples", + "parsley leaves", + "fresh lemon juice" + ] + }, + { + "id": 30755, + "cuisine": "mexican", + "ingredients": [ + "tri-tip roast", + "minced garlic", + "cooking spray", + "white wine", + "olive oil", + "onions", + "seasoning", + "crushed tomatoes", + "cayenne pepper", + "ancho chili ground pepper", + "ground black pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 29170, + "cuisine": "french", + "ingredients": [ + "water", + "vanilla extract", + "unsweetened chocolate", + "coffee liqueur", + "all-purpose flour", + "white sugar", + "baking soda", + "salt", + "confectioners sugar", + "eggs", + "baking powder", + "cream cheese", + "semisweet baking chocolate" + ] + }, + { + "id": 39753, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "hot sauce", + "lime juice" + ] + }, + { + "id": 25955, + "cuisine": "french", + "ingredients": [ + "cold water", + "chopped fresh thyme", + "salt", + "bay leaf", + "minced garlic", + "red wine", + "fresh mushrooms", + "pepper", + "butter", + "beef broth", + "shallots", + "worcestershire sauce", + "corn starch" + ] + }, + { + "id": 35363, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "lemon juice", + "roasted red peppers", + "fresh parsley leaves", + "fresh basil leaves", + "vegetable juice", + "garlic cloves", + "cucumber", + "sliced cucumber", + "banana peppers" + ] + }, + { + "id": 18769, + "cuisine": "southern_us", + "ingredients": [ + "ancho", + "cider vinegar", + "yellow onion", + "ketchup", + "worcestershire sauce", + "ground white pepper", + "tomato paste", + "unsalted butter", + "dark brown sugar", + "kosher salt", + "garlic", + "dr. pepper" + ] + }, + { + "id": 35694, + "cuisine": "italian", + "ingredients": [ + "diced tomatoes", + "onions", + "pepper", + "salt", + "olive oil", + "garlic cloves", + "crushed red pepper", + "italian seasoning" + ] + }, + { + "id": 45555, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "water", + "ground coriander", + "kosher salt", + "jalapeno chilies", + "onions", + "white button mushrooms", + "olive oil", + "cooked white rice", + "chile powder", + "minced garlic", + "green onions", + "ground cumin" + ] + }, + { + "id": 42679, + "cuisine": "southern_us", + "ingredients": [ + "mustard", + "bacon", + "ground black pepper", + "hot sauce", + "water", + "salt", + "vinegar", + "onions" + ] + }, + { + "id": 24197, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "cream cheese", + "chicken breasts", + "flour tortillas", + "black bean and corn salsa" + ] + }, + { + "id": 40573, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "fresh ginger", + "thai chile", + "chopped cilantro", + "lime juice", + "sweet potatoes", + "purple onion", + "pepper", + "pork tenderloin", + "vietnamese fish sauce", + "brussels sprouts", + "honey", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 29810, + "cuisine": "thai", + "ingredients": [ + "Jif Creamy Peanut Butter", + "chicken breasts", + "green onions", + "sauce", + "tortillas", + "shredded lettuce", + "cooked chicken" + ] + }, + { + "id": 39110, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "vegetable oil", + "corn starch", + "soy sauce", + "garlic", + "medium shrimp", + "sugar", + "ground pork", + "cooking sherry", + "cold water", + "water", + "salt" + ] + }, + { + "id": 27896, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "kosher salt", + "grated parmesan cheese", + "zucchini", + "pepper", + "cheese ravioli" + ] + }, + { + "id": 11854, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "dry yeast", + "salt", + "warm water", + "extra-virgin olive oil", + "bread flour", + "fresh basil", + "cooking spray", + "cornmeal", + "roasted red peppers", + "garlic" + ] + }, + { + "id": 46052, + "cuisine": "indian", + "ingredients": [ + "kidney beans", + "green chilies", + "garlic", + "coriander", + "garam masala", + "onions", + "tomatoes", + "salt" + ] + }, + { + "id": 30312, + "cuisine": "moroccan", + "ingredients": [ + "green olives", + "dried mint flakes", + "onions", + "orange juice concentrate", + "fat free less sodium chicken broth", + "salt", + "black pepper", + "chicken breast halves", + "ground cinnamon", + "olive oil", + "ground coriander" + ] + }, + { + "id": 27091, + "cuisine": "chinese", + "ingredients": [ + "ground chicken", + "garlic", + "oyster sauce", + "sugar", + "egg noodles", + "liquid", + "noodles", + "chicken stock", + "chile paste", + "cooking wine", + "corn starch", + "soy sauce", + "green onions", + "oil" + ] + }, + { + "id": 34493, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "grated Gruyère cheese", + "haricots verts", + "vermicelli", + "tomatoes", + "garlic", + "potatoes", + "boiling water" + ] + }, + { + "id": 15352, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "large egg yolks", + "salt", + "sugar", + "large eggs", + "fresh lemon juice", + "slivered almonds", + "unsalted butter", + "all-purpose flour", + "water", + "bosc pears" + ] + }, + { + "id": 15695, + "cuisine": "spanish", + "ingredients": [ + "triple sec", + "red apples", + "granny smith apples", + "lemon", + "dry white wine", + "club soda", + "orange", + "fresh orange juice" + ] + }, + { + "id": 44843, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "cilantro sprigs", + "ground black pepper", + "olive oil", + "oyster sauce", + "fish sauce", + "extra firm tofu" + ] + }, + { + "id": 27848, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "garlic", + "ground turmeric", + "glutinous rice", + "cooked brisket", + "tripe", + "fish sauce", + "cooking oil", + "homemade beef stock", + "water", + "ginger", + "onions" + ] + }, + { + "id": 2528, + "cuisine": "italian", + "ingredients": [ + "scallops", + "ground black pepper", + "fish stock", + "shrimp", + "arborio rice", + "calamari", + "vegetable oil", + "yellow onion", + "kosher salt", + "dry white wine", + "Italian parsley leaves", + "frozen peas", + "tentacles", + "olive oil", + "lemon", + "anchovy fillets" + ] + }, + { + "id": 1854, + "cuisine": "vietnamese", + "ingredients": [ + "liquid aminos", + "garlic powder", + "sesame oil", + "red bell pepper", + "ground ginger", + "lime juice", + "chili paste", + "stevia", + "beans", + "leaves", + "rice noodles", + "cabbage", + "fish sauce", + "fresh cilantro", + "green onions", + "carrots" + ] + }, + { + "id": 15979, + "cuisine": "indian", + "ingredients": [ + "water", + "evaporated milk", + "onions", + "frozen chopped spinach", + "olive oil", + "salt", + "curry powder", + "garlic", + "cumin", + "tomatoes", + "fresh ginger", + "chickpeas" + ] + }, + { + "id": 38256, + "cuisine": "chinese", + "ingredients": [ + "white vinegar", + "water", + "baking powder", + "all-purpose flour", + "chicken broth", + "chile paste", + "sesame oil", + "corn starch", + "dark soy sauce", + "baking soda", + "vegetable oil", + "toasted sesame seeds", + "soy sauce", + "boneless skinless chicken breasts", + "garlic", + "white sugar" + ] + }, + { + "id": 30161, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "orzo", + "boneless skinless chicken breast halves", + "dry white wine", + "fresh lemon juice", + "prosciutto", + "all-purpose flour", + "sage leaves", + "butter", + "low salt chicken broth" + ] + }, + { + "id": 25897, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "sesame seeds", + "salt", + "corn flour", + "tomatoes", + "black pepper", + "green onions", + "green chilies", + "ground turmeric", + "garlic paste", + "water", + "capsicum", + "oil", + "ginger paste", + "tofu", + "soy sauce", + "vinegar", + "chili sauce", + "onions" + ] + }, + { + "id": 4195, + "cuisine": "italian", + "ingredients": [ + "swiss chard", + "extra-virgin olive oil", + "lemon zest", + "freshly ground pepper", + "pasta", + "large garlic cloves", + "gorgonzola", + "unsalted butter", + "salt" + ] + }, + { + "id": 33766, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "garlic", + "dried oregano", + "tomato purée", + "red wine vinegar", + "flat leaf parsley", + "ground cinnamon", + "ground black pepper", + "yellow onion", + "fresh dill", + "extra-virgin olive oil", + "butter beans" + ] + }, + { + "id": 48233, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "oil", + "fish fillets", + "water", + "salt", + "corn starch", + "white pepper", + "ginger", + "oyster sauce", + "sugar", + "Shaoxing wine", + "scallions" + ] + }, + { + "id": 19896, + "cuisine": "italian", + "ingredients": [ + "water", + "cooking spray", + "yellow corn meal", + "sea salt", + "half & half" + ] + }, + { + "id": 33096, + "cuisine": "italian", + "ingredients": [ + "smoked mozzarella", + "acorn squash", + "dried oregano", + "dried basil", + "croutons", + "fresh tomatoes", + "freshly ground pepper", + "salt", + "onions" + ] + }, + { + "id": 21506, + "cuisine": "japanese", + "ingredients": [ + "green cabbage", + "mirin", + "garlic", + "mayonaise", + "hoisin sauce", + "scallions", + "whole wheat flour", + "lemon", + "carrots", + "eggs", + "zucchini", + "mizuna" + ] + }, + { + "id": 47578, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "potatoes", + "diced tomatoes", + "garlic cloves", + "ground black pepper", + "red pepper flakes", + "salt", + "ground cumin", + "olive oil", + "chili powder", + "boneless beef chuck roast", + "onions", + "poblano peppers", + "worcestershire sauce", + "beef broth" + ] + }, + { + "id": 45808, + "cuisine": "thai", + "ingredients": [ + "low sodium soy sauce", + "cherry tomatoes", + "green onions", + "baby carrots", + "water", + "reduced fat chunky peanut butter", + "cilantro leaves", + "beansprouts", + "dry roasted peanuts", + "Sriracha", + "purple onion", + "dark sesame oil", + "salad greens", + "peeled fresh ginger", + "rice vinegar", + "fresh mint" + ] + }, + { + "id": 38584, + "cuisine": "spanish", + "ingredients": [ + "red wine", + "herbes de provence", + "eggs", + "lean beef", + "beef stock cubes", + "onions", + "chopped tomatoes", + "garlic cloves" + ] + }, + { + "id": 15580, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "peeled fresh ginger", + "chopped onion", + "ground cumin", + "fat free less sodium chicken broth", + "chopped celery", + "chopped cilantro fresh", + "red lentils", + "ground black pepper", + "salt", + "ground turmeric", + "granny smith apples", + "light coconut milk", + "fresh lime juice" + ] + }, + { + "id": 6383, + "cuisine": "italian", + "ingredients": [ + "butter", + "organic vegetable broth", + "hot cherry pepper", + "capers", + "all-purpose flour", + "flat leaf parsley", + "olive oil", + "dry bread crumbs", + "boneless skinless chicken breast halves", + "salt", + "garlic cloves" + ] + }, + { + "id": 46379, + "cuisine": "korean", + "ingredients": [ + "white vinegar", + "gochugaru", + "white sugar", + "minced garlic", + "cucumber", + "salad", + "rock salt", + "sesame seeds", + "onions" + ] + }, + { + "id": 16828, + "cuisine": "filipino", + "ingredients": [ + "spring roll wrappers", + "water chestnuts", + "garlic", + "pepper", + "vegetable oil", + "soy sauce", + "egg yolks", + "salt", + "finely chopped onion", + "ground pork" + ] + }, + { + "id": 18913, + "cuisine": "mexican", + "ingredients": [ + "white corn tortillas", + "cooking spray", + "part-skim ricotta cheese", + "red bell pepper", + "Mexican cheese blend", + "shuck corn", + "salt", + "cooked chicken breasts", + "large eggs", + "1% low-fat milk", + "all-purpose flour", + "sliced green onions", + "ground black pepper", + "poblano", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 23332, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "white sugar", + "eggs", + "pie shell", + "white vinegar", + "vanilla extract", + "evaporated milk", + "cornmeal" + ] + }, + { + "id": 9965, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "whole milk", + "fettucine", + "unsalted butter", + "garlic", + "ground black pepper", + "heavy cream", + "kosher salt", + "grated parmesan cheese", + "fresh parsley leaves" + ] + }, + { + "id": 9259, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "fresh lime", + "flour tortillas", + "paprika", + "sauce", + "ground coriander", + "avocado", + "shredded cheddar cheese", + "olive oil", + "diced tomatoes", + "cilantro leaves", + "tortilla chips", + "chipotle peppers", + "pepper", + "spanish onion", + "jalapeno chilies", + "salt", + "frozen corn kernels", + "corn tortillas", + "chicken broth", + "minced garlic", + "ground black pepper", + "ancho powder", + "greek style plain yogurt", + "rotisserie chicken", + "ground cumin" + ] + }, + { + "id": 3423, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "turkey", + "tomato sauce", + "grated parmesan cheese", + "sausages", + "eggs", + "lasagna noodles", + "salt", + "mozzarella cheese", + "ricotta cheese", + "ground turkey" + ] + }, + { + "id": 5890, + "cuisine": "spanish", + "ingredients": [ + "coarse salt", + "bread", + "garlic", + "extra-virgin olive oil", + "tomatoes" + ] + }, + { + "id": 40837, + "cuisine": "mexican", + "ingredients": [ + "honey", + "corn starch", + "chocolate bars", + "vanilla extract", + "ground cinnamon", + "ancho powder", + "milk", + "salt" + ] + }, + { + "id": 31176, + "cuisine": "greek", + "ingredients": [ + "raw honey", + "skim milk", + "vanilla extract", + "dark chocolate", + "whipped cream", + "nonfat greek yogurt", + "powdered gelatin" + ] + }, + { + "id": 27784, + "cuisine": "italian", + "ingredients": [ + "lemon wedge", + "fillets", + "ground black pepper", + "salt", + "bread crumb fresh", + "extra-virgin olive oil", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 15867, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "beef broth", + "dried oregano", + "ground black pepper", + "garlic", + "pork spareribs", + "chili powder", + "salt", + "chopped cilantro fresh", + "water", + "dried pinto beans", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 29960, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "vegetable oil", + "salt", + "chopped cilantro fresh", + "crema mexicana", + "jalapeno chilies", + "garlic", + "red bell pepper", + "lime juice", + "low sodium chicken broth", + "purple onion", + "hass avocado", + "angel hair", + "poblano peppers", + "diced tomatoes", + "scallions", + "ground cumin" + ] + }, + { + "id": 12996, + "cuisine": "irish", + "ingredients": [ + "beef broth", + "spices", + "corned beef", + "beef brisket", + "cabbage", + "worcestershire sauce" + ] + }, + { + "id": 41578, + "cuisine": "mexican", + "ingredients": [ + "sliced black olives", + "chunky salsa", + "garlic powder", + "macaroni", + "mayonaise", + "chopped green bell pepper", + "ground black pepper", + "salt" + ] + }, + { + "id": 21544, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "vegetable oil", + "soy sauce", + "rice vinegar", + "salmon fillets", + "grapeseed oil", + "honey", + "garlic puree" + ] + }, + { + "id": 4031, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic cloves", + "pesto", + "sour cream", + "salt" + ] + }, + { + "id": 10516, + "cuisine": "french", + "ingredients": [ + "granulated sugar", + "pink food coloring", + "large egg whites", + "heavy cream", + "confectioners sugar", + "extract", + "blanched almonds", + "unsalted butter", + "salt", + "bittersweet chocolate" + ] + }, + { + "id": 49327, + "cuisine": "indian", + "ingredients": [ + "lime juice", + "vegetable oil", + "shrimp", + "black pepper", + "garam masala", + "purple onion", + "ground turmeric", + "kosher salt", + "peaches", + "cumin seed", + "avocado", + "coriander seeds", + "cilantro sprigs", + "serrano chile" + ] + }, + { + "id": 493, + "cuisine": "russian", + "ingredients": [ + "eggs", + "water", + "fresh shiitake mushrooms", + "fresh dill", + "frozen pastry puff sheets", + "butter", + "bottled clam juice", + "dry white wine", + "long grain white rice", + "salmon fillets", + "leeks", + "crème fraîche" + ] + }, + { + "id": 32055, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "fresh parmesan cheese", + "butter", + "penne pasta", + "red bell pepper", + "cremini mushrooms", + "artichoke hearts", + "cooking spray", + "all-purpose flour", + "asparagus spears", + "sweet onion", + "ground black pepper", + "dry sherry", + "shredded mozzarella cheese", + "fresh basil", + "olive oil", + "reduced fat milk", + "salt", + "garlic cloves" + ] + }, + { + "id": 28992, + "cuisine": "chinese", + "ingredients": [ + "rock sugar", + "hard-boiled egg", + "chinese parsley", + "chinese five-spice powder", + "water", + "shallots", + "star anise", + "pork", + "Shaoxing wine", + "ginger", + "oil", + "dark soy sauce", + "bai cai", + "cinnamon", + "garlic" + ] + }, + { + "id": 10424, + "cuisine": "indian", + "ingredients": [ + "large eggs", + "salt", + "cilantro", + "green chilies", + "butter", + "yellow onion", + "medium tomatoes", + "garlic", + "ground cumin" + ] + }, + { + "id": 11025, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "worcestershire sauce", + "onions", + "ground paprika", + "prepared mustard", + "hot sauce", + "ground pepper", + "garlic", + "mayonaise", + "vegetable oil", + "chili sauce" + ] + }, + { + "id": 30613, + "cuisine": "french", + "ingredients": [ + "kahlúa", + "milk", + "marshmallow creme", + "sugar", + "egg yolks", + "brown sugar", + "semisweet chocolate", + "sweet baking chocolate", + "whipping cream" + ] + }, + { + "id": 32192, + "cuisine": "russian", + "ingredients": [ + "baking soda", + "whole milk", + "all-purpose flour", + "smoked salmon", + "trout caviar", + "salt", + "sugar", + "large eggs", + "buckwheat flour", + "unsalted butter", + "chives", + "sour cream" + ] + }, + { + "id": 23452, + "cuisine": "french", + "ingredients": [ + "sugar", + "whipping cream", + "milk", + "vanilla beans", + "large egg yolks" + ] + }, + { + "id": 5858, + "cuisine": "italian", + "ingredients": [ + "lean ground pork", + "ground nutmeg", + "chopped celery", + "chicken livers", + "chopped ham", + "pepper", + "lean ground beef", + "chopped onion", + "tomato paste", + "olive oil", + "butter", + "carrots", + "white wine", + "beef stock", + "salt", + "heavy whipping cream" + ] + }, + { + "id": 46767, + "cuisine": "italian", + "ingredients": [ + "pepper", + "fresh oregano", + "corn kernels", + "fat free less sodium chicken broth", + "salt", + "stone-ground cornmeal" + ] + }, + { + "id": 33110, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "unsalted butter", + "butter", + "all-purpose flour", + "vanilla beans", + "large eggs", + "fine sea salt", + "cornmeal", + "baking soda", + "baking powder", + "maple syrup", + "liquid honey", + "water", + "granulated sugar", + "buttermilk", + "fresh raspberries" + ] + }, + { + "id": 38154, + "cuisine": "italian", + "ingredients": [ + "eggs", + "chicken breasts", + "pepper", + "salt", + "minced garlic", + "provolone cheese", + "bread", + "Italian herbs", + "ham" + ] + }, + { + "id": 19565, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "zucchini", + "scallions", + "fresh basil", + "toasted cashews", + "garlic", + "molasses", + "boneless skinless chicken breasts", + "corn starch", + "fish sauce", + "lime juice", + "peanut oil" + ] + }, + { + "id": 32335, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "artichoke hearts", + "finely chopped fresh parsley", + "paprika", + "plum tomatoes", + "pepper", + "sherry vinegar", + "cannellini beans", + "english cucumber", + "celery ribs", + "olive oil", + "dijon mustard", + "green onions", + "roast red peppers, drain", + "green olives", + "garlic powder", + "fresh thyme", + "salt" + ] + }, + { + "id": 8169, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "beef sirloin", + "garlic", + "sugar", + "salt", + "pepper" + ] + }, + { + "id": 14021, + "cuisine": "indian", + "ingredients": [ + "whole wheat flour", + "seeds", + "lemon juice", + "semolina", + "vermicelli", + "green chilies", + "puffed rice", + "water", + "mint leaves", + "salt", + "onions", + "sugar", + "potatoes", + "vegetable oil", + "chutney" + ] + }, + { + "id": 17397, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "chopped cilantro fresh", + "ground black pepper", + "milk", + "ground cumin", + "mayonaise", + "salt" + ] + }, + { + "id": 33569, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "szechwan peppercorns", + "rice vinegar", + "reduced sodium soy sauce", + "vegetable oil", + "toasted sesame oil", + "sugar", + "tahini", + "crushed red pepper flakes", + "sesame seeds", + "ramen noodles", + "scallions" + ] + }, + { + "id": 31732, + "cuisine": "mexican", + "ingredients": [ + "sweet onion", + "guacamole", + "garlic", + "red bell pepper", + "pepper", + "olive oil", + "butter", + "salt", + "chopped cilantro", + "pasilla chiles", + "lime", + "chicken breasts", + "shredded sharp cheddar cheese", + "sour cream", + "water", + "flour", + "yellow bell pepper", + "salsa", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 42602, + "cuisine": "indian", + "ingredients": [ + "flour", + "salt", + "water" + ] + }, + { + "id": 41333, + "cuisine": "greek", + "ingredients": [ + "baking potatoes", + "salt", + "olive oil", + "lemon juice", + "ground black pepper", + "dried oregano" + ] + }, + { + "id": 36630, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "all-purpose flour", + "eggs", + "baking powder", + "chicken bouillon granules", + "milk", + "chicken", + "shortening", + "salt" + ] + }, + { + "id": 47901, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "frozen peas", + "ricotta salata", + "salt", + "pepper", + "mint leaves", + "olive oil", + "onions" + ] + }, + { + "id": 41343, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "sweet potatoes", + "lemon rind", + "white onion", + "paprika", + "ground cumin", + "green olives", + "lemon", + "flat leaf parsley", + "olive oil", + "salt" + ] + }, + { + "id": 8293, + "cuisine": "filipino", + "ingredients": [ + "low sodium soy sauce", + "water", + "boneless chicken skinless thigh", + "sesame oil", + "brown sugar", + "green onions", + "minced garlic", + "coconut milk" + ] + }, + { + "id": 47356, + "cuisine": "british", + "ingredients": [ + "vanilla sugar", + "brandy", + "lemon", + "orange", + "Grand Marnier", + "double cream" + ] + }, + { + "id": 39808, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "coriander powder", + "heavy cream", + "brown cardamom", + "bay leaf", + "ginger paste", + "garlic paste", + "capsicum", + "salt", + "cumin seed", + "onions", + "clove", + "tumeric", + "chili powder", + "cilantro leaves", + "lemon juice", + "cashew nuts", + "melted butter", + "garam masala", + "vegetable oil", + "green cardamom", + "cinnamon sticks", + "chicken" + ] + }, + { + "id": 22806, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "chopped fresh chives", + "hazelnuts", + "asparagus", + "mascarpone", + "bow-tie pasta", + "olive oil", + "grated parmesan cheese" + ] + }, + { + "id": 38559, + "cuisine": "italian", + "ingredients": [ + "chicken legs", + "olive oil", + "diced tomatoes", + "fresh herbs", + "tomato paste", + "pepper", + "parsley", + "garlic", + "pasta", + "white wine", + "grated parmesan cheese", + "basil", + "sage", + "tomatoes", + "rosemary", + "butter", + "salt" + ] + }, + { + "id": 11059, + "cuisine": "thai", + "ingredients": [ + "fresh ginger", + "vegetable oil", + "jalapeno chilies", + "fresh lime juice", + "granulated sugar", + "garlic cloves", + "fish sauce", + "basil leaves" + ] + }, + { + "id": 14608, + "cuisine": "italian", + "ingredients": [ + "table salt", + "olive oil", + "seedless red grapes", + "water", + "coarse salt", + "sugar", + "ground black pepper", + "bread flour", + "active dry yeast", + "rosemary leaves" + ] + }, + { + "id": 41114, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "ground black pepper", + "carrots", + "fat free less sodium chicken broth", + "green peas", + "chopped cilantro fresh", + "diced onions", + "zucchini", + "couscous", + "olive oil", + "salt" + ] + }, + { + "id": 6163, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon juice", + "kalamata", + "capers", + "salt", + "ground black pepper", + "escarole" + ] + }, + { + "id": 35880, + "cuisine": "moroccan", + "ingredients": [ + "minced garlic", + "paprika", + "chicken", + "ground ginger", + "sliced black olives", + "onions", + "water", + "lemon juice", + "ground cumin", + "tumeric", + "cinnamon", + "sliced green olives" + ] + }, + { + "id": 14482, + "cuisine": "moroccan", + "ingredients": [ + "golden raisins", + "garbanzo beans", + "garlic oil", + "couscous", + "ground cinnamon", + "lemon" + ] + }, + { + "id": 39271, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "hoagie rolls", + "dried oregano", + "tomato sauce", + "mushrooms", + "freshly ground pepper", + "ground round", + "olive oil", + "provolone cheese", + "cuban peppers", + "garlic", + "onions" + ] + }, + { + "id": 17135, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "freshly ground pepper", + "canola oil", + "salt", + "fillets", + "buttermilk", + "corn starch", + "sandwich rolls", + "all-purpose flour", + "coleslaw" + ] + }, + { + "id": 1265, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "bell pepper", + "shredded mozzarella cheese", + "dried oregano", + "tomato sauce", + "parmesan cheese", + "all-purpose flour", + "onions", + "pepper flakes", + "olive oil", + "salt", + "fresh parsley", + "dough", + "dried basil", + "extra-virgin olive oil", + "turkey sausage links" + ] + }, + { + "id": 42688, + "cuisine": "spanish", + "ingredients": [ + "boneless, skinless chicken breast", + "red pepper flakes", + "lemon juice", + "tomatoes", + "olive oil", + "orzo", + "onions", + "chorizo", + "paprika", + "fresh parsley", + "green bell pepper", + "ground black pepper", + "salt" + ] + }, + { + "id": 22269, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "soft rolls", + "unsalted butter", + "black pepper", + "large eggs", + "kosher salt", + "swiss cheese" + ] + }, + { + "id": 4724, + "cuisine": "southern_us", + "ingredients": [ + "water", + "pimentos", + "salt", + "yellow corn meal", + "large egg whites", + "ground red pepper", + "fresh onion", + "sugar", + "shredded extra sharp cheddar cheese", + "summer squash", + "garlic cloves", + "black pepper", + "cooking spray", + "1% low-fat milk" + ] + }, + { + "id": 16016, + "cuisine": "southern_us", + "ingredients": [ + "lime juice", + "brown sugar", + "sweetened condensed milk", + "melted butter", + "graham cracker crumbs", + "lime zest", + "egg yolks" + ] + }, + { + "id": 48145, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "lime wedges", + "fajita size flour tortillas", + "light sour cream", + "mild salsa", + "salt", + "garlic cloves", + "avocado", + "chopped green chilies", + "purple onion", + "freshly ground pepper", + "chicken broth", + "green onions", + "cilantro leaves", + "pork butt roast" + ] + }, + { + "id": 15748, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "ground pork", + "peeled fresh ginger", + "wonton wrappers", + "corn starch", + "soy sauce", + "vegetable oil", + "dipping sauces", + "chives", + "dry sherry" + ] + }, + { + "id": 23843, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "pecorino romano cheese", + "orecchiette", + "broccoli rabe", + "garlic cloves", + "red pepper flakes" + ] + }, + { + "id": 5472, + "cuisine": "mexican", + "ingredients": [ + "red kidney beans", + "flour tortillas", + "water", + "knorr rice side cheddar broccoli", + "shredded cheddar cheese", + "green onions", + "salsa verde", + "ground beef" + ] + }, + { + "id": 6598, + "cuisine": "mexican", + "ingredients": [ + "triple sec", + "tequila", + "salt", + "frozen limeade", + "confectioners sugar", + "vanilla extract", + "ice" + ] + }, + { + "id": 48981, + "cuisine": "brazilian", + "ingredients": [ + "oats", + "bananas", + "vanilla extract", + "pure acai puree", + "unsweetened almond milk", + "cinnamon", + "forest fruit", + "coconut oil", + "granola", + "maple syrup", + "frozen banana", + "shredded coconut", + "sea salt", + "frozen blueberries" + ] + }, + { + "id": 32153, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "lemon", + "medium shrimp", + "white wine", + "baked ham", + "cayenne pepper", + "kosher salt", + "butter", + "flat leaf parsley", + "chicken broth", + "grated parmesan cheese", + "garlic", + "grits" + ] + }, + { + "id": 33171, + "cuisine": "brazilian", + "ingredients": [ + "ground black pepper", + "chimichurri", + "skirt steak", + "Italian parsley leaves", + "kosher salt", + "olives" + ] + }, + { + "id": 33902, + "cuisine": "korean", + "ingredients": [ + "spinach", + "green onions", + "garlic cloves", + "soy sauce", + "rice vermicelli", + "onions", + "sugar", + "sesame oil", + "carrots", + "rib eye steaks", + "shiitake", + "seasoned rice wine vinegar" + ] + }, + { + "id": 2863, + "cuisine": "french", + "ingredients": [ + "chicken stock", + "ground black pepper", + "butter", + "carrots", + "bay leaf", + "turnips", + "kosher salt", + "cannellini beans", + "chopped onion", + "flat leaf parsley", + "red potato", + "leeks", + "extra-virgin olive oil", + "country bread", + "smoked ham hocks", + "savoy cabbage", + "cider vinegar", + "chopped fresh thyme", + "garlic cloves", + "herbes de provence" + ] + }, + { + "id": 32963, + "cuisine": "cajun_creole", + "ingredients": [ + "seasoning", + "eggs", + "boudin", + "bread crumbs" + ] + }, + { + "id": 14619, + "cuisine": "italian", + "ingredients": [ + "eggs", + "vanilla extract", + "baking powder", + "all-purpose flour", + "hazelnuts", + "salt", + "ground cinnamon", + "butter", + "white sugar" + ] + }, + { + "id": 28567, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger", + "vietnamese fish sauce", + "chopped cilantro fresh", + "spareribs", + "apple cider vinegar", + "dark brown sugar", + "lime zest", + "cherries", + "tamarind paste", + "chopped garlic", + "soy sauce", + "fresh orange juice", + "fresh lime juice" + ] + }, + { + "id": 38737, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "eggplant", + "diced tomatoes", + "bow-tie pasta", + "onions", + "dried basil", + "grated parmesan cheese", + "garlic", + "carrots", + "dried oregano", + "celery salt", + "olive oil", + "dried mint flakes", + "salt", + "red bell pepper", + "pepper", + "feta cheese", + "crushed red pepper flakes", + "dried dillweed", + "marjoram" + ] + }, + { + "id": 34668, + "cuisine": "mexican", + "ingredients": [ + "chili", + "tequila", + "chiles", + "salt", + "tomatoes", + "garlic", + "chopped cilantro fresh", + "lime juice", + "chopped onion" + ] + }, + { + "id": 28163, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "egg whites", + "vegetable oil", + "oyster sauce", + "medium shrimp", + "minced garlic", + "rice wine", + "yellow onion", + "corn starch", + "white pepper", + "green onions", + "chili bean sauce", + "Chinese egg noodles", + "chicken stock", + "chili paste", + "marinade", + "sauce", + "red bell pepper" + ] + }, + { + "id": 39131, + "cuisine": "moroccan", + "ingredients": [ + "extra-virgin olive oil", + "garlic cloves", + "basmati rice", + "lemon wedge", + "yellow onion", + "flat leaf parsley", + "bay leaves", + "black olives", + "fresh lemon juice", + "chicken", + "spices", + "freshly ground pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 35664, + "cuisine": "mexican", + "ingredients": [ + "water", + "salt", + "dried oregano", + "green cabbage", + "hominy", + "freshly ground pepper", + "serrano chilies", + "chili powder", + "garlic cloves", + "celery ribs", + "olive oil", + "yellow onion", + "chicken" + ] + }, + { + "id": 39383, + "cuisine": "indian", + "ingredients": [ + "lime", + "unsalted cashews", + "purple onion", + "basmati rice", + "tomatoes", + "peaches", + "cilantro", + "clarified butter", + "chicken stock", + "garam masala", + "lime wedges", + "ginger root", + "bone in chicken thighs", + "fresh curry leaves", + "yoghurt", + "garlic", + "serrano chile" + ] + }, + { + "id": 4080, + "cuisine": "mexican", + "ingredients": [ + "mozzarella cheese", + "cilantro", + "onions", + "black pepper", + "bell pepper", + "oil", + "cumin", + "cooked rice", + "flour tortillas", + "salt", + "canned corn", + "black beans", + "butter", + "juice" + ] + }, + { + "id": 14413, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "minced garlic", + "ground nutmeg", + "green onions", + "salt", + "soy sauce", + "olive oil", + "boneless chicken breast", + "ground thyme", + "eggs", + "honey", + "ground sage", + "vegetable oil", + "cayenne pepper", + "black pepper", + "ground pepper", + "flour", + "paprika" + ] + }, + { + "id": 32251, + "cuisine": "chinese", + "ingredients": [ + "ground chicken", + "garlic", + "oyster sauce", + "chile sauce", + "sugar", + "lettuce leaves", + "peanut oil", + "ground white pepper", + "kosher salt", + "dried shiitake mushrooms", + "corn starch", + "soy sauce", + "rice wine", + "scallions", + "cashew nuts" + ] + }, + { + "id": 47141, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "flat leaf parsley", + "baking potatoes", + "scallions", + "unsalted butter", + "spanish chorizo", + "onions", + "paprika", + "garlic cloves" + ] + }, + { + "id": 18774, + "cuisine": "french", + "ingredients": [ + "roasted red peppers", + "old bay seasoning", + "chopped cilantro fresh", + "dried thyme", + "cooking spray", + "fresh parsley", + "eggplant", + "balsamic vinegar", + "onions", + "zucchini", + "kalamata", + "dried oregano" + ] + }, + { + "id": 16163, + "cuisine": "italian", + "ingredients": [ + "white cake mix", + "water", + "egg whites", + "vanilla extract", + "bittersweet chocolate", + "roasted hazelnuts", + "white chocolate chips", + "heavy cream", + "heavy whipping cream", + "raspberries", + "semisweet chocolate", + "chocolate", + "confectioners sugar", + "food colouring", + "unsalted butter", + "vegetable oil", + "cream cheese" + ] + }, + { + "id": 39563, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "finely chopped onion", + "salt", + "fresh sage", + "shiitake", + "mushrooms", + "fresh oregano", + "arborio rice", + "olive oil", + "grated parmesan cheese", + "beef broth", + "warm water", + "ground black pepper", + "dry red wine", + "garlic cloves" + ] + }, + { + "id": 3700, + "cuisine": "indian", + "ingredients": [ + "pita bread", + "mint leaves", + "greek style plain yogurt", + "ground cumin", + "lavash", + "salt", + "cayenne pepper", + "ground black pepper", + "cilantro leaves", + "garlic cloves", + "seedless cucumber", + "extra-virgin olive oil", + "grated lemon zest" + ] + }, + { + "id": 10931, + "cuisine": "greek", + "ingredients": [ + "lettuce", + "dried thyme", + "salt", + "leg of lamb", + "dried rosemary", + "pepper", + "mint sauce", + "fresh lemon juice", + "dried oregano", + "vegetable oil cooking spray", + "olive oil", + "chopped onion", + "low salt chicken broth", + "white wine", + "pita bread rounds", + "garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 38684, + "cuisine": "thai", + "ingredients": [ + "pepper", + "purple onion", + "tuna", + "sesame seeds", + "cucumber", + "lime", + "salt", + "sesame oil", + "red bell pepper" + ] + }, + { + "id": 42215, + "cuisine": "japanese", + "ingredients": [ + "asafoetida", + "cumin seed", + "toor dal", + "curry leaves", + "urad dal", + "mustard seeds", + "shredded coconut", + "oil", + "ground turmeric", + "spinach", + "salt", + "peppercorns" + ] + }, + { + "id": 31399, + "cuisine": "southern_us", + "ingredients": [ + "jalapeno chilies", + "salt", + "pepper", + "diced tomatoes", + "onions", + "bacon", + "celery", + "black-eyed peas", + "garlic" + ] + }, + { + "id": 12653, + "cuisine": "chinese", + "ingredients": [ + "salt", + "pepper", + "oil", + "szechwan peppercorns", + "ginger" + ] + }, + { + "id": 48211, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "cinnamon", + "light brown sugar", + "self rising flour", + "apples", + "unsalted butter", + "buttermilk", + "ground cinnamon", + "large eggs", + "salt" + ] + }, + { + "id": 45003, + "cuisine": "cajun_creole", + "ingredients": [ + "jalapeno chilies", + "garlic", + "cajun seasoning", + "lean ground beef", + "tomato paste", + "cilantro" + ] + }, + { + "id": 25188, + "cuisine": "british", + "ingredients": [ + "milk", + "onions", + "melted butter", + "potatoes", + "dried oregano", + "beef gravy", + "chicken stock cubes", + "cooking oil", + "pork sausages" + ] + }, + { + "id": 4119, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic cloves", + "baby spinach leaves", + "pear tomatoes", + "onions", + "olive oil", + "feta cheese crumbles", + "fat free less sodium chicken broth", + "salt", + "whole wheat penne" + ] + }, + { + "id": 28850, + "cuisine": "chinese", + "ingredients": [ + "cooked rice", + "ground pepper", + "coarse salt", + "corn starch", + "soy sauce", + "pork tenderloin", + "scallions", + "pineapple chunks", + "bell pepper", + "rice vinegar", + "frozen broccoli florets", + "vegetable oil", + "juice" + ] + }, + { + "id": 20502, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "green onions", + "garlic cloves", + "sugar", + "shiitake", + "red pepper flakes", + "sesame seeds", + "sesame oil", + "beef round", + "soy sauce", + "asian pear", + "dry sherry" + ] + }, + { + "id": 472, + "cuisine": "filipino", + "ingredients": [ + "leaves", + "salt pork", + "fish sauce", + "garlic", + "dried shrimp", + "spinach", + "mung beans", + "yellow onion", + "pepper", + "salt" + ] + }, + { + "id": 10862, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "flour tortillas", + "chicken meat", + "sliced black olives", + "butter", + "shredded cheddar cheese", + "chili powder", + "long-grain rice", + "picante sauce", + "green onions", + "garlic" + ] + }, + { + "id": 46831, + "cuisine": "japanese", + "ingredients": [ + "minced garlic", + "fresh lemon juice", + "orzo pasta", + "walnut oil", + "kosher salt", + "edamame", + "lemon zest", + "red bell pepper" + ] + }, + { + "id": 34509, + "cuisine": "british", + "ingredients": [ + "parmesan cheese", + "onions", + "pepper", + "butter", + "nutmeg", + "potatoes", + "pork sausages", + "milk", + "salt" + ] + }, + { + "id": 901, + "cuisine": "vietnamese", + "ingredients": [ + "peanuts", + "rice noodles", + "carrots", + "green cabbage", + "extra firm tofu", + "garlic", + "herbs", + "vegetable oil", + "soy sauce", + "serrano peppers", + "fresh lemon juice" + ] + }, + { + "id": 34957, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "frozen green beans", + "parmesan cheese", + "italian seasoning", + "minced garlic", + "salt", + "butter" + ] + }, + { + "id": 8295, + "cuisine": "irish", + "ingredients": [ + "powdered sugar", + "cooking spray", + "salt", + "ground ginger", + "ground nutmeg", + "butter", + "fresh lemon juice", + "molasses", + "baking powder", + "all-purpose flour", + "ground cinnamon", + "granulated sugar", + "1% low-fat milk", + "dried cranberries" + ] + }, + { + "id": 5356, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "okra", + "cherry tomatoes", + "corn kernel whole", + "lima beans", + "smoked bacon", + "balsamic vinaigrette" + ] + }, + { + "id": 49375, + "cuisine": "irish", + "ingredients": [ + "butter", + "baking soda", + "all-purpose flour", + "salt and ground black pepper", + "buttermilk", + "potatoes" + ] + }, + { + "id": 38133, + "cuisine": "southern_us", + "ingredients": [ + "boneless moulard duck breast halves", + "habanero chile", + "yellow bell pepper", + "onions", + "kielbasa (not low fat)", + "fresh shiitake mushrooms", + "red bell pepper", + "black pepper", + "breakfast sausages", + "flat leaf parsley", + "hot red pepper flakes", + "reduced sodium chicken broth", + "salt", + "long grain white rice" + ] + }, + { + "id": 13187, + "cuisine": "southern_us", + "ingredients": [ + "pie crust", + "lemon", + "sugar", + "eggs", + "butter" + ] + }, + { + "id": 32498, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "finely chopped onion", + "all-purpose flour", + "red bell pepper", + "dried rosemary", + "dried porcini mushrooms", + "unsalted butter", + "large garlic cloves", + "hot water", + "plum tomatoes", + "milk", + "grated parmesan cheese", + "grated nutmeg", + "white mushrooms", + "pepper flakes", + "olive oil", + "balsamic vinegar", + "sweet italian sausage", + "prepared lasagne" + ] + }, + { + "id": 25879, + "cuisine": "southern_us", + "ingredients": [ + "sage leaves", + "unsalted butter", + "salt", + "shredded cheddar cheese", + "buttermilk", + "sugar", + "baking powder", + "all-purpose flour", + "baking soda", + "bacon slices" + ] + }, + { + "id": 23862, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "ground nutmeg", + "parsley", + "Italian bread", + "black pepper", + "fresh thyme", + "vegetable broth", + "onions", + "bread crumbs", + "chili powder", + "salt", + "eggs", + "unsalted butter", + "buttermilk", + "cornmeal" + ] + }, + { + "id": 37088, + "cuisine": "korean", + "ingredients": [ + "sesame oil", + "sesame seeds", + "cayenne pepper", + "green onions", + "beansprouts", + "minced garlic", + "salt" + ] + }, + { + "id": 7616, + "cuisine": "mexican", + "ingredients": [ + "sauce", + "fat free milk", + "fat free cream cheese", + "garlic cloves", + "feta cheese", + "chopped cilantro fresh" + ] + }, + { + "id": 11394, + "cuisine": "french", + "ingredients": [ + "instant coffee", + "unsweetened cocoa powder", + "semisweet chocolate", + "vanilla extract", + "heavy cream", + "coffee liqueur", + "bittersweet chocolate" + ] + }, + { + "id": 19078, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "butter", + "hot sauce", + "smoked paprika", + "italian seasoning", + "pepper", + "smoked sausage", + "shrimp", + "celery", + "basmati", + "garlic", + "carrots", + "diced tomatoes in juice", + "chicken stock", + "bell pepper", + "salt", + "thyme", + "onions" + ] + }, + { + "id": 32815, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "fresh lemon", + "extra-virgin olive oil", + "chicken", + "fresh rosemary", + "red wine vinegar", + "garlic", + "pepper", + "Italian parsley leaves", + "dried oregano", + "white wine", + "butter", + "salt" + ] + }, + { + "id": 34695, + "cuisine": "chinese", + "ingredients": [ + "water", + "rice wine", + "garlic", + "corn starch", + "soy sauce", + "mirin", + "cilantro", + "oil", + "bok choy", + "eggs", + "shiitake", + "sesame oil", + "salt", + "beansprouts", + "white onion", + "zucchini", + "ginger", + "carrots", + "broth" + ] + }, + { + "id": 3134, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "all-purpose flour", + "pepper", + "port", + "carrots", + "chicken legs", + "fresh thyme leaves", + "fat skimmed chicken broth", + "olive oil", + "salt", + "onions" + ] + }, + { + "id": 49094, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "olive oil", + "purple onion", + "avocado", + "cottage cheese", + "red pepper", + "black mustard seeds", + "red chili peppers", + "flour tortillas", + "cilantro leaves", + "tomatoes", + "lime", + "pineapple rings", + "yellow peppers" + ] + }, + { + "id": 12800, + "cuisine": "chinese", + "ingredients": [ + "cooking wine", + "sugar", + "rice flour", + "Japanese turnips", + "dried shrimp", + "bacon", + "dried mushrooms" + ] + }, + { + "id": 35413, + "cuisine": "spanish", + "ingredients": [ + "grated orange peel", + "dry white wine", + "crushed red pepper", + "large shrimp", + "tomato paste", + "peeled tomatoes", + "large garlic cloves", + "fresh oregano", + "saffron threads", + "pepper", + "shallots", + "salt", + "fettucine", + "olive oil", + "whipping cream", + "fresh parsley" + ] + }, + { + "id": 18498, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "sesame oil", + "rice vinegar", + "corn starch", + "water", + "napa cabbage", + "scallions", + "bamboo shoots", + "black pepper", + "vegetable oil", + "rolls", + "shiitake mushroom caps", + "fresh ginger", + "ground pork", + "carrots" + ] + }, + { + "id": 2426, + "cuisine": "mexican", + "ingredients": [ + "chili", + "black olives", + "green onions", + "shredded cheddar cheese", + "cream cheese" + ] + }, + { + "id": 1478, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "amchur", + "vegan butter", + "garlic cloves", + "ground fennel", + "tomato sauce", + "coriander powder", + "chickpeas", + "onions", + "ground cinnamon", + "ground black pepper", + "salt", + "ground cardamom", + "ground ginger", + "water", + "habanero powder", + "brown lentils", + "soy yogurt" + ] + }, + { + "id": 12763, + "cuisine": "french", + "ingredients": [ + "eggs", + "dijon mustard", + "shrimp", + "nutmeg", + "pepper", + "heavy cream", + "crab", + "butter", + "chicken broth", + "shredded cheddar cheese", + "salt" + ] + }, + { + "id": 19963, + "cuisine": "mexican", + "ingredients": [ + "mushrooms", + "chopped cilantro", + "chopped green bell pepper", + "chopped onion", + "peppered bacon", + "cherry tomatoes", + "salt", + "boneless skinless chicken breast halves", + "flour tortillas", + "red bell pepper" + ] + }, + { + "id": 41183, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "bacon", + "celery", + "mayonaise", + "freshly ground pepper", + "onions", + "grape tomatoes", + "salt", + "fresh parsley", + "mustard", + "potatoes", + "sour cream", + "pickle relish" + ] + }, + { + "id": 29523, + "cuisine": "chinese", + "ingredients": [ + "almond extract", + "water", + "confectioners sugar", + "eggs", + "cake flour", + "baking powder", + "white sugar" + ] + }, + { + "id": 41017, + "cuisine": "irish", + "ingredients": [ + "chicken stock", + "butter", + "drambuie", + "almonds", + "apples", + "pepper", + "heavy cream", + "boneless skinless chicken breast halves", + "flour", + "salt" + ] + }, + { + "id": 38923, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "sliced almonds", + "unsalted butter", + "phyllo", + "flat leaf parsley", + "ground ginger", + "black pepper", + "olive oil", + "dry sherry", + "confectioners sugar", + "ground cumin", + "chiles", + "reduced sodium chicken broth", + "large eggs", + "salt", + "onions", + "saffron threads", + "squabs", + "water", + "vegetable oil", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 461, + "cuisine": "southern_us", + "ingredients": [ + "nonfat buttermilk", + "salt", + "baking powder", + "baking soda", + "all-purpose flour", + "butter" + ] + }, + { + "id": 11836, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "boneless chicken breast", + "basil", + "salt and ground black pepper", + "heavy cream", + "grated parmesan cheese", + "spaghetti" + ] + }, + { + "id": 35441, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "mango", + "fresh coriander", + "onions", + "jalapeno chilies", + "cumin", + "granny smith apples", + "fresh lime juice" + ] + }, + { + "id": 17839, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "cinnamon", + "blueberries", + "coconut oil", + "fresh blueberries", + "salt", + "brown sugar", + "granulated sugar", + "vanilla", + "almonds", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 16391, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "heirloom tomatoes", + "flat leaf parsley", + "green onions", + "extra-virgin olive oil", + "oil cured olives", + "orzo", + "chopped fresh mint", + "sherry wine vinegar", + "fresh lemon juice" + ] + }, + { + "id": 19541, + "cuisine": "italian", + "ingredients": [ + "whipped cream", + "instant espresso powder", + "sugar", + "lemon zest" + ] + }, + { + "id": 37260, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "chicken thighs", + "orange marmalade", + "flour", + "soy sauce", + "barbecue sauce" + ] + }, + { + "id": 31283, + "cuisine": "vietnamese", + "ingredients": [ + "chicken stock", + "green onions", + "beansprouts", + "fresh ginger root", + "garlic", + "lemon grass", + "Chinese egg noodles", + "fish sauce", + "cooked chicken", + "bok choy" + ] + }, + { + "id": 25538, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "flour", + "thai chile", + "peppercorns", + "soy sauce", + "vinegar", + "sprite", + "oil", + "water", + "bay leaves", + "garlic", + "fish sauce", + "pork leg", + "shallots", + "salt" + ] + }, + { + "id": 32525, + "cuisine": "french", + "ingredients": [ + "leeks", + "salt", + "bay leaf", + "water", + "shallots", + "ham", + "unsalted pistachios", + "dry white wine", + "freshly ground pepper", + "unsalted butter", + "heavy cream", + "fresh lemon juice" + ] + }, + { + "id": 351, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "baking powder", + "heavy cream", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 17504, + "cuisine": "cajun_creole", + "ingredients": [ + "jalapeno chilies", + "onions", + "cotija", + "coarse salt", + "bay leaves", + "ground cumin", + "kidney beans", + "low sodium chicken stock" + ] + }, + { + "id": 29927, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "salt", + "grated parmesan cheese", + "lemon juice", + "olive oil", + "garlic cloves", + "cold water", + "loosely packed fresh basil leaves" + ] + }, + { + "id": 30544, + "cuisine": "italian", + "ingredients": [ + "eggs", + "crushed tomatoes", + "whole wheat spaghetti", + "italian seasoning", + "tomato paste", + "water", + "cooking spray", + "dry bread crumbs", + "pepper", + "grated parmesan cheese", + "salt", + "ground chicken", + "dried basil", + "diced tomatoes" + ] + }, + { + "id": 36389, + "cuisine": "italian", + "ingredients": [ + "semolina flour", + "fine sea salt", + "extra large eggs", + "flour", + "grated nutmeg", + "extra-virgin olive oil" + ] + }, + { + "id": 8255, + "cuisine": "chinese", + "ingredients": [ + "water", + "vegetable shortening", + "toasted sesame seeds", + "egg yolks", + "confectioners sugar", + "superfine sugar", + "cake flour", + "sweet rice flour", + "butter", + "candy" + ] + }, + { + "id": 12902, + "cuisine": "korean", + "ingredients": [ + "shrimp", + "salt", + "large eggs", + "broth", + "scallions" + ] + }, + { + "id": 26252, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "all-purpose flour", + "unsalted butter", + "vanilla extract", + "bittersweet chocolate", + "egg whites", + "salt", + "light corn syrup", + "confectioners sugar" + ] + }, + { + "id": 26595, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "green onions", + "fresh lime juice", + "avocado", + "sea scallops", + "garlic cloves", + "mango", + "jumbo shrimp", + "lime slices", + "tequila", + "ground cumin", + "olive oil", + "shallots", + "chopped fresh mint" + ] + }, + { + "id": 41693, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "fresh mint", + "salt", + "cucumber", + "low-fat plain yogurt", + "ground cumin" + ] + }, + { + "id": 44249, + "cuisine": "mexican", + "ingredients": [ + "enchilada sauce", + "frozen corn kernels", + "boneless skinless chicken breast halves", + "chorizo", + "sour cream", + "tortilla chips", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 800, + "cuisine": "greek", + "ingredients": [ + "pearl onions", + "dry red wine", + "dried rosemary", + "sugar", + "red wine vinegar", + "cinnamon sticks", + "tomatoes", + "olive oil", + "small red potato", + "lamb shanks", + "large garlic cloves", + "bay leaf" + ] + }, + { + "id": 9822, + "cuisine": "british", + "ingredients": [ + "brown sugar", + "crystallized ginger", + "porridge oats", + "ground ginger", + "white flour", + "softened butter", + "black treacle", + "vinegar", + "bicarbonate of soda", + "milk", + "golden syrup" + ] + }, + { + "id": 28191, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "bacon slices", + "honey", + "baking powder", + "sharp cheddar cheese", + "melted butter", + "chopped fresh chives", + "salt", + "baking soda", + "buttermilk", + "bread flour" + ] + }, + { + "id": 18246, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "fat free milk", + "crushed red pepper", + "flat leaf parsley", + "yellow corn meal", + "olive oil", + "dry red wine", + "salt", + "dried rosemary", + "water", + "fresh parmesan cheese", + "purple onion", + "boiling water", + "cremini mushrooms", + "sun-dried tomatoes", + "gruyere cheese", + "garlic cloves" + ] + }, + { + "id": 9736, + "cuisine": "korean", + "ingredients": [ + "chinese black mushrooms", + "red pepper", + "carrots", + "boiling potatoes", + "soy sauce", + "sesame oil", + "scallions", + "onions", + "molasses", + "dates", + "garlic cloves", + "asian fish sauce", + "cold water", + "radishes", + "beef rib short", + "hot water" + ] + }, + { + "id": 31142, + "cuisine": "italian", + "ingredients": [ + "cannellini beans", + "garlic", + "celery", + "white wine", + "sea salt", + "freshly ground pepper", + "fresh basil leaves", + "olive oil", + "crushed red pepper flakes", + "carrots", + "chopped garlic", + "progresso reduced sodium chicken broth", + "bacon", + "yellow onion", + "bay leaf" + ] + }, + { + "id": 49406, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "sweet potatoes", + "salt", + "milk", + "raisins", + "white sugar", + "ground cinnamon", + "ground nutmeg", + "light corn syrup", + "eggs", + "flaked coconut", + "chopped pecans" + ] + }, + { + "id": 42048, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "boneless chicken skinless thigh", + "olive oil", + "butter", + "garlic cloves", + "fire roasted diced tomatoes", + "honey", + "lime wedges", + "ground coriander", + "soy", + "tumeric", + "minced ginger", + "nonfat greek yogurt", + "chopped onion", + "dried chile", + "ground cinnamon", + "kosher salt", + "garam masala", + "ginger", + "fresh lemon juice" + ] + }, + { + "id": 8246, + "cuisine": "cajun_creole", + "ingredients": [ + "evaporated milk", + "chopped green bell pepper", + "worcestershire sauce", + "chopped onion", + "ground cumin", + "sausage casings", + "ground black pepper", + "green onions", + "salt", + "ground cayenne pepper", + "eggs", + "ground nutmeg", + "bay leaves", + "garlic", + "ground white pepper", + "ketchup", + "hot pepper sauce", + "butter", + "dry bread crumbs", + "ground beef" + ] + }, + { + "id": 15212, + "cuisine": "indian", + "ingredients": [ + "broccolini", + "curry", + "jasmine rice", + "butternut squash", + "onions", + "olive oil", + "firm tofu", + "water", + "1% low-fat milk" + ] + }, + { + "id": 12786, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "sourdough loaf", + "chopped celery", + "black pepper", + "turkey stock", + "onions", + "chestnuts", + "large eggs", + "chopped fresh sage", + "prunes", + "unsalted butter", + "salt" + ] + }, + { + "id": 47781, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "wonton skins", + "coriander", + "fish sauce", + "water chestnuts", + "oil", + "eggs", + "bay scallops", + "salt", + "pork", + "sesame oil", + "corn flour" + ] + }, + { + "id": 22009, + "cuisine": "moroccan", + "ingredients": [ + "ras el hanout", + "onions", + "olive oil", + "leg of lamb", + "garlic cloves", + "apricot halves", + "coarse kosher salt" + ] + }, + { + "id": 31623, + "cuisine": "jamaican", + "ingredients": [ + "tumeric", + "jalapeno chilies", + "fatfree lowsodium chicken broth", + "cumin", + "crab meat", + "dried thyme", + "chili powder", + "coconut milk", + "allspice", + "fresh spinach", + "butternut squash", + "rubbed sage", + "plantains", + "ground ginger", + "olive oil", + "garlic", + "onions" + ] + }, + { + "id": 41938, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "whole wheat flour", + "buttermilk", + "large eggs", + "dark brown sugar", + "baking soda", + "salt" + ] + }, + { + "id": 46984, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "leeks", + "garlic", + "konbu", + "fresh ginger", + "baby spinach", + "soft-boiled egg", + "chicken", + "water", + "vegetable oil", + "salt", + "soba", + "pork baby back ribs", + "pork shoulder butt", + "shoyu", + "scallions" + ] + }, + { + "id": 39195, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "garlic cloves", + "black pepper", + "grated parmesan cheese", + "grape tomatoes", + "large eggs", + "boiling potatoes", + "large egg whites", + "salt" + ] + }, + { + "id": 34874, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "salt", + "onions", + "diced tomatoes", + "celery", + "boneless skinless chicken breasts", + "cayenne pepper", + "green bell pepper", + "garlic", + "bay leaf" + ] + }, + { + "id": 5006, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "purple onion", + "fresh coriander", + "chillies", + "black pepper", + "salt", + "avocado", + "lime" + ] + }, + { + "id": 9722, + "cuisine": "mexican", + "ingredients": [ + "tostada shells", + "lime", + "purple onion", + "avocado", + "lump crab meat", + "cilantro sprigs", + "plum tomatoes", + "black pepper", + "jalapeno chilies", + "cilantro leaves", + "mayonaise", + "olive oil", + "salt" + ] + }, + { + "id": 27802, + "cuisine": "italian", + "ingredients": [ + "blood orange", + "fresh parsley", + "extra-virgin olive oil", + "crushed red pepper", + "green onions" + ] + }, + { + "id": 3262, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "dry bread crumbs", + "fresh lemon juice", + "ground cumin", + "bean threads", + "green onions", + "sweet paprika", + "fresh parsley", + "fresh chives", + "butter", + "garlic cloves", + "chopped cilantro fresh", + "medium shrimp uncook", + "sauce", + "phyllo pastry" + ] + }, + { + "id": 22839, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "boneless skinless chicken breasts", + "sour cream", + "jack cheese", + "ground black pepper", + "garlic", + "chicken", + "fresh cilantro", + "vegetable oil", + "corn tortillas", + "kosher salt", + "cooking spray", + "enchilada sauce" + ] + }, + { + "id": 8349, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "garlic", + "safflower oil", + "tomatillos", + "garlic cloves", + "serrano chilies", + "queso fresco", + "crème fraîche", + "white onion", + "sea salt", + "corn tortillas" + ] + }, + { + "id": 1375, + "cuisine": "french", + "ingredients": [ + "shredded swiss cheese", + "large eggs", + "salt", + "frozen pie crust", + "baby spinach", + "half & half", + "sliced ham" + ] + }, + { + "id": 11924, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "cream cheese", + "guacamole", + "onions", + "flour tortillas", + "taco seasoning", + "chicken breasts" + ] + }, + { + "id": 4427, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "garlic powder", + "chili powder", + "salsa", + "onions", + "tomato sauce", + "taco seasoning mix", + "jalapeno chilies", + "paprika", + "cream cheese", + "chicken broth", + "shredded cheddar cheese", + "bell pepper", + "raisins", + "cayenne pepper", + "cumin", + "black beans", + "olive oil", + "chicken breasts", + "salt", + "chopped pecans" + ] + }, + { + "id": 3449, + "cuisine": "mexican", + "ingredients": [ + "black peppercorns", + "salt", + "fresh masa", + "mole paste", + "lard", + "chicken stock", + "banana leaves", + "onions", + "drumstick", + "garlic cloves", + "masa harina" + ] + }, + { + "id": 28759, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "water", + "vegetable oil", + "garlic", + "black mustard seeds", + "ground cloves", + "garam masala", + "sea salt", + "yellow onion", + "chuck", + "tumeric", + "fresh ginger", + "cinnamon", + "greek style plain yogurt", + "basmati rice", + "cider vinegar", + "ground black pepper", + "paprika", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 30845, + "cuisine": "spanish", + "ingredients": [ + "manchego cheese", + "purple onion", + "fresh parsley", + "chipotle chile", + "dry sherry", + "roast red peppers, drain", + "balsamic vinegar", + "garlic cloves", + "olive oil", + "linguine", + "red bell pepper" + ] + }, + { + "id": 3291, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "idaho potatoes", + "garlic cloves", + "white vinegar", + "hard-boiled egg", + "paprika", + "onions", + "black pepper", + "bacon", + "celery seed", + "celery ribs", + "light mayonnaise", + "salt", + "brown mustard" + ] + }, + { + "id": 13259, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "bananas", + "jackfruit", + "spring roll wrappers" + ] + }, + { + "id": 2217, + "cuisine": "vietnamese", + "ingredients": [ + "olive oil", + "broccoli", + "sirloin steak", + "onions", + "green bell pepper, slice", + "red bell pepper", + "garlic" + ] + }, + { + "id": 37900, + "cuisine": "filipino", + "ingredients": [ + "minced garlic", + "bell pepper", + "worcestershire sauce", + "corn starch", + "sugar", + "hoisin sauce", + "sesame oil", + "ginger", + "fish fillets", + "water", + "green onions", + "apple cider", + "cucumber", + "ketchup", + "egg whites", + "coarse salt", + "oyster sauce" + ] + }, + { + "id": 46622, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "flank steak", + "fat", + "sugar", + "ground pepper", + "paprika", + "ground cumin", + "minced garlic", + "cayenne", + "salt", + "ground cinnamon", + "fresh ginger", + "red wine vinegar", + "coriander" + ] + }, + { + "id": 47305, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "fresh mint", + "jalapeno chilies", + "salt", + "vegetable oil", + "garlic cloves", + "fresh cilantro", + "Italian parsley leaves", + "ground cumin" + ] + }, + { + "id": 21319, + "cuisine": "mexican", + "ingredients": [ + "frying oil", + "eggs", + "salt", + "avocado", + "vegetable oil", + "bread crumbs" + ] + }, + { + "id": 45104, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil cooking spray", + "vegetable oil", + "all-purpose flour", + "low-fat buttermilk", + "salt", + "pineapple slices", + "baking soda", + "vanilla extract", + "lemon juice", + "brown sugar", + "baking powder", + "maple syrup" + ] + }, + { + "id": 37782, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "butter", + "peaches" + ] + }, + { + "id": 21871, + "cuisine": "brazilian", + "ingredients": [ + "lime juice", + "coarse salt", + "salt", + "onions", + "ground black pepper", + "sirloin steak", + "flat leaf parsley", + "lime", + "large garlic cloves", + "garlic cloves", + "dried oregano", + "white onion", + "bell pepper", + "dry red wine", + "bay leaf" + ] + }, + { + "id": 24623, + "cuisine": "mexican", + "ingredients": [ + "knorr homestyl stock chicken", + "rotisserie chicken", + "water", + "vegetable oil", + "chili powder", + "onions", + "chip plain tortilla", + "diced tomatoes" + ] + }, + { + "id": 7847, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "semolina", + "salt", + "fat free milk", + "parmigiano reggiano cheese" + ] + }, + { + "id": 24585, + "cuisine": "japanese", + "ingredients": [ + "amchur", + "oil", + "red chili powder", + "okra", + "kalonji", + "salt", + "onions", + "tumeric", + "cumin seed" + ] + }, + { + "id": 43201, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "rotisserie chicken", + "flour tortillas", + "black beans" + ] + }, + { + "id": 39682, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "minced garlic", + "ricotta cheese", + "toasted walnuts", + "spinach", + "pepper", + "grated parmesan cheese", + "salt", + "fresh basil leaves", + "black pepper", + "lasagna noodles", + "garlic", + "low-fat mozzarella cheese", + "pesto", + "olive oil", + "extra-virgin olive oil", + "walnuts" + ] + }, + { + "id": 8744, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "ground coriander", + "tomatoes", + "cayenne pepper", + "chopped cilantro fresh", + "eggplant", + "sweet paprika", + "ground cumin", + "ginger", + "onions" + ] + }, + { + "id": 34381, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "jalapeno chilies", + "garlic", + "ground beef", + "black beans", + "red pepper", + "oil", + "avocado", + "brown rice", + "salsa", + "cumin", + "corn kernels", + "paprika", + "Mexican cheese" + ] + }, + { + "id": 3683, + "cuisine": "mexican", + "ingredients": [ + "stock", + "olive oil", + "tomatillos", + "sharp cheddar cheese", + "ground cumin", + "water", + "vegetable oil", + "ground pork", + "garlic cloves", + "lime", + "coarse salt", + "cilantro leaves", + "sour cream", + "black beans", + "poblano peppers", + "ancho powder", + "scallions" + ] + }, + { + "id": 7044, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "brown rice", + "cayenne pepper", + "ground cumin", + "chicken stock", + "pepper", + "diced tomatoes", + "bay leaf", + "ground paprika", + "green onions", + "salt", + "large shrimp", + "andouille sausage", + "butter", + "celery" + ] + }, + { + "id": 9477, + "cuisine": "mexican", + "ingredients": [ + "Mexican seasoning mix", + "garlic salt", + "cooking spray", + "low-fat flour tortillas" + ] + }, + { + "id": 26630, + "cuisine": "spanish", + "ingredients": [ + "flour tortillas", + "hot salsa", + "avocado", + "butter", + "fat-free refried beans", + "large eggs", + "reduced-fat sour cream" + ] + }, + { + "id": 14722, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "purple onion", + "greek-style vinaigrette", + "artichoke hearts", + "cucumber", + "fresh basil", + "cherry tomatoes", + "small red potato", + "fresh spinach", + "feta cheese" + ] + }, + { + "id": 34998, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "malt vinegar", + "olive oil", + "cajun seasoning", + "eye of round roast", + "dried thyme", + "hot pepper sauce", + "salt", + "prepared horseradish", + "garlic" + ] + }, + { + "id": 25725, + "cuisine": "southern_us", + "ingredients": [ + "green cabbage", + "water", + "red wine vinegar", + "carrots", + "ground turmeric", + "yellow mustard seeds", + "bell pepper", + "ground allspice", + "fresh parsley", + "ground cinnamon", + "chili", + "yellow onion", + "celery seed", + "celery ribs", + "ground cloves", + "green tomatoes", + "iodized salt", + "white sugar" + ] + }, + { + "id": 24340, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "tomato sauce", + "all-purpose flour", + "pepper", + "beef broth", + "salt" + ] + }, + { + "id": 30233, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "unsalted butter", + "salt", + "fresh parsley leaves", + "minced garlic", + "dry white wine", + "grated lemon zest", + "thyme sprigs", + "parsley sprigs", + "finely chopped onion", + "all-purpose flour", + "carrots", + "chicken broth", + "olive oil", + "chopped celery", + "veal shanks", + "bay leaf" + ] + }, + { + "id": 20181, + "cuisine": "italian", + "ingredients": [ + "honey", + "hot water", + "sugar", + "butter", + "unsweetened cocoa powder", + "egg yolks", + "grated orange", + "marsala wine", + "vanilla wafers" + ] + }, + { + "id": 15768, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "walnuts", + "boneless skinless chicken breast halves", + "ground red pepper", + "salt", + "fresh lemon juice", + "ground black pepper", + "Italian parsley leaves", + "garlic cloves", + "white bread", + "baby spinach", + "fatfree lowsodium chicken broth", + "flat leaf parsley" + ] + }, + { + "id": 4509, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "pepper", + "salt", + "red bell pepper", + "chicken broth", + "brown rice", + "hot sauce", + "onions", + "tomato paste", + "water", + "frozen corn", + "medium shrimp", + "andouille sausage", + "cajun seasoning", + "garlic cloves", + "instant tapioca" + ] + }, + { + "id": 33558, + "cuisine": "southern_us", + "ingredients": [ + "crawfish", + "cayenne pepper", + "butter", + "whole kernel corn, drain", + "green onions", + "cream cheese", + "cream", + "condensed cream of mushroom soup", + "condensed cream of potato soup" + ] + }, + { + "id": 49454, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "semolina", + "large eggs", + "all purpose unbleached flour", + "yellow onion", + "boneless chicken skinless thigh", + "ground nutmeg", + "dry white wine", + "crushed red pepper", + "garlic cloves", + "black pepper", + "parmigiano reggiano cheese", + "butter", + "salt", + "plum tomatoes", + "baby spinach leaves", + "fat free milk", + "egg yolks", + "extra-virgin olive oil", + "fresh oregano" + ] + }, + { + "id": 35282, + "cuisine": "greek", + "ingredients": [ + "greek seasoning", + "scallions", + "lemon", + "cucumber", + "cherry tomatoes", + "feta cheese crumbles", + "cream cheese", + "hummus" + ] + }, + { + "id": 47914, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "cayenne", + "extra sharp cheddar cheese", + "unsalted butter", + "milk", + "all-purpose flour" + ] + }, + { + "id": 26766, + "cuisine": "mexican", + "ingredients": [ + "shredded reduced fat cheddar cheese", + "salsa", + "whole wheat tortillas", + "chopped cilantro", + "cooked chicken", + "taco seasoning", + "purple onion" + ] + }, + { + "id": 25848, + "cuisine": "italian", + "ingredients": [ + "peaches", + "sugar", + "hot water", + "orange juice", + "chilled prosecco" + ] + }, + { + "id": 32272, + "cuisine": "brazilian", + "ingredients": [ + "fine salt", + "sweetened condensed milk", + "granulated sugar", + "vegetable oil", + "unsweetened cocoa powder", + "ground cinnamon", + "whole milk", + "sourdough baguette", + "large eggs", + "vanilla extract" + ] + }, + { + "id": 1803, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "coriander seeds", + "urad dal", + "onions", + "clove", + "garlic paste", + "cinnamon", + "cilantro leaves", + "chicken", + "tomatoes", + "bay leaves", + "salt", + "ground turmeric", + "fennel seeds", + "black pepper", + "sunflower oil", + "ground cardamom", + "ginger paste" + ] + }, + { + "id": 15259, + "cuisine": "vietnamese", + "ingredients": [ + "baby bok choy", + "wonton skins", + "Chinese egg noodles", + "regular soy sauce", + "salt", + "broth", + "white pepper", + "garlic", + "dried shrimp", + "cold water", + "sesame oil", + "scallions" + ] + }, + { + "id": 19726, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "beansprouts", + "soy sauce", + "long-grain rice", + "eggs", + "vegetable oil", + "frozen peas", + "spring onions", + "ground white pepper" + ] + }, + { + "id": 37427, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "milk", + "whipping cream", + "tea bags", + "whole cloves", + "dark chocolate", + "fresh ginger", + "cardamom pods", + "ground cinnamon", + "firmly packed light brown sugar", + "star anise" + ] + }, + { + "id": 16268, + "cuisine": "vietnamese", + "ingredients": [ + "prawns", + "rice paper", + "water", + "rice vermicelli", + "lettuce", + "basil", + "hoisin sauce", + "carrots" + ] + }, + { + "id": 18723, + "cuisine": "cajun_creole", + "ingredients": [ + "russet potatoes", + "flat leaf parsley", + "lemon", + "onions", + "creole seasoning", + "unsalted butter", + "garlic cloves" + ] + }, + { + "id": 18441, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "butter", + "ground cinnamon", + "large eggs", + "salt", + "pie crust", + "ground nutmeg", + "heavy cream", + "pecans", + "sweet potatoes", + "maple syrup" + ] + }, + { + "id": 43420, + "cuisine": "french", + "ingredients": [ + "pepper", + "apple cider", + "ground allspice", + "chicken broth", + "ground black pepper", + "all-purpose flour", + "pork loin chops", + "olive oil", + "salt", + "corn starch", + "cream", + "butter", + "grated nutmeg" + ] + }, + { + "id": 13659, + "cuisine": "italian", + "ingredients": [ + "fresh basil leaves", + "extra-virgin olive oil", + "chopped garlic", + "diced tomatoes", + "dried oregano", + "sugar", + "( oz.) tomato paste" + ] + }, + { + "id": 34311, + "cuisine": "korean", + "ingredients": [ + "dressing", + "egg yolks", + "ground white pepper", + "sesame seeds", + "carrots", + "yellowfin tuna", + "spring onions", + "coriander", + "pinenuts", + "chinese cabbage" + ] + }, + { + "id": 26825, + "cuisine": "indian", + "ingredients": [ + "pepper", + "parsley", + "salt", + "ground pepper", + "lemon", + "olive oil", + "butter", + "lemon juice", + "chicken broth", + "chicken breasts", + "heavy cream" + ] + }, + { + "id": 30772, + "cuisine": "vietnamese", + "ingredients": [ + "bread", + "garlic", + "butter", + "spring onions", + "sugar", + "salt" + ] + }, + { + "id": 12529, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "fresh cilantro", + "garlic cloves", + "avocado", + "salt", + "jalapeno chilies", + "fresh lime juice" + ] + }, + { + "id": 8977, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "bay leaves", + "mutton", + "green chilies", + "ghee", + "garam masala", + "cinnamon", + "cilantro leaves", + "oil", + "ginger paste", + "red chili powder", + "yellow food coloring", + "salt", + "curds", + "onions", + "nutmeg", + "mint leaves", + "lemon", + "rice", + "cardamom" + ] + }, + { + "id": 19954, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "egg whites", + "all-purpose flour", + "sugar", + "vanilla extract", + "slivered almonds", + "almond extract", + "eggs", + "baking soda", + "salt" + ] + }, + { + "id": 32699, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "all-purpose flour", + "vegetable oil", + "breakfast sausages", + "pepper", + "salt" + ] + }, + { + "id": 4579, + "cuisine": "indian", + "ingredients": [ + "water", + "all-purpose flour", + "honey", + "ghee", + "active dry yeast", + "greek yogurt", + "kosher salt", + "cilantro", + "canola oil" + ] + }, + { + "id": 16813, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "rosemary sprigs", + "water", + "jalapeno chilies", + "paprika", + "cayenne pepper", + "onions", + "blue crabs", + "white pepper", + "ground black pepper", + "vegetable oil", + "all-purpose flour", + "garlic cloves", + "chile powder", + "shucked oysters", + "dried thyme", + "bay leaves", + "salt", + "beer", + "dried oregano", + "green bell pepper", + "crab", + "file powder", + "red pepper flakes", + "hot sauce", + "shrimp" + ] + }, + { + "id": 47600, + "cuisine": "southern_us", + "ingredients": [ + "baby lima beans", + "garlic", + "onions", + "bacon slices", + "frozen corn kernels", + "roasted red peppers", + "salt", + "white rice", + "freshly ground pepper" + ] + }, + { + "id": 3184, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "part-skim mozzarella cheese", + "chopped celery", + "chopped onion", + "pepper", + "grated parmesan cheese", + "fresh oregano", + "no salt added chicken broth", + "tomato sauce", + "fresh thyme", + "hot sauce", + "fresh mushrooms", + "tomato paste", + "eggplant", + "green onions", + "green pepper", + "fresh parsley" + ] + }, + { + "id": 35896, + "cuisine": "indian", + "ingredients": [ + "spinach", + "butter", + "onions", + "garam masala", + "mustard seeds", + "ground cumin", + "water", + "salt", + "ground turmeric", + "red lentils", + "chili powder", + "coconut milk" + ] + }, + { + "id": 34941, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "turkey", + "bay leaf", + "vegetable oil", + "salt", + "cumin", + "water", + "garlic", + "onions", + "dried black beans", + "red wine vinegar", + "hot sauce" + ] + }, + { + "id": 3189, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "self rising flour", + "nonstick spray", + "active dry yeast", + "vegetable shortening", + "water", + "butter", + "baking soda", + "buttermilk" + ] + }, + { + "id": 24110, + "cuisine": "southern_us", + "ingredients": [ + "port wine", + "egg whites", + "butter", + "mixed fruit", + "baking powder", + "white sugar", + "brandy", + "egg yolks", + "all-purpose flour", + "ground nutmeg", + "bourbon whiskey" + ] + }, + { + "id": 46411, + "cuisine": "indian", + "ingredients": [ + "low-fat plain yogurt", + "fresh ginger", + "vegetable oil", + "coriander", + "fresh cilantro", + "fenugreek", + "salt", + "crushed tomatoes", + "garam masala", + "garlic", + "cumin", + "tomato paste", + "milk", + "boneless skinless chicken breasts", + "onions" + ] + }, + { + "id": 31695, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped green bell pepper", + "long grain white rice", + "water", + "cayenne pepper", + "chopped fresh thyme", + "plum tomatoes", + "kidney beans", + "bottled italian dressing" + ] + }, + { + "id": 4134, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "fresh cilantro", + "lemon juice", + "tomatoes", + "green onions", + "sour cream", + "tomato paste", + "chili", + "pinto beans", + "shredded cheddar cheese", + "diced tomatoes", + "ripe olives" + ] + }, + { + "id": 32198, + "cuisine": "korean", + "ingredients": [ + "honey", + "red pepper flakes", + "onions", + "lean ground turkey", + "green onions", + "garlic", + "sesame seeds", + "ginger", + "soy sauce", + "sesame oil", + "salt" + ] + }, + { + "id": 9311, + "cuisine": "mexican", + "ingredients": [ + "lean ground turkey", + "chili powder", + "salt", + "cumin", + "tomato paste", + "lime", + "garlic", + "reduced-fat cheese", + "pepper", + "diced tomatoes", + "sweet corn", + "Kroger Black Beans", + "bell pepper", + "purple onion", + "tricolor quinoa" + ] + }, + { + "id": 7220, + "cuisine": "french", + "ingredients": [ + "black pepper", + "1% low-fat milk", + "garlic cloves", + "cooking spray", + "all-purpose flour", + "ground cumin", + "olive oil", + "salt", + "shredded Monterey Jack cheese", + "chipotle chile", + "yukon gold potatoes", + "chopped onion" + ] + }, + { + "id": 3931, + "cuisine": "japanese", + "ingredients": [ + "flour", + "eggs", + "oil", + "tonkatsu sauce", + "pork chops", + "panko breadcrumbs" + ] + }, + { + "id": 36760, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "fresh ginger", + "coconut milk", + "fish sauce", + "lime juice", + "button mushrooms", + "chopped cilantro fresh", + "sodium reduced chicken broth", + "boneless skinless chicken breasts", + "frozen peas", + "brown sugar", + "lemongrass", + "red curry paste" + ] + }, + { + "id": 841, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "ground tumeric", + "garlic cloves", + "ground cinnamon", + "lemon zest", + "salt", + "onions", + "chicken stock", + "boneless chicken breast", + "extra-virgin olive oil", + "chopped cilantro", + "green olives", + "meyer lemon", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 14441, + "cuisine": "french", + "ingredients": [ + "honey", + "pineapple slices", + "vanilla extract", + "frozen pastry puff sheets", + "sugar", + "part-skim ricotta cheese" + ] + }, + { + "id": 37576, + "cuisine": "british", + "ingredients": [ + "whole milk", + "all-purpose flour", + "baking powder", + "raisins", + "unsalted butter", + "salt" + ] + }, + { + "id": 47539, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "sliced mushrooms", + "fresh basil", + "bacon", + "onions", + "white wine", + "salt", + "chicken", + "tomatoes", + "ground black pepper", + "fresh parsley" + ] + }, + { + "id": 32407, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "sugar", + "ground red pepper", + "peanut oil", + "serrano chile", + "prunes", + "kosher salt", + "cilantro sprigs", + "lemon juice", + "ground cumin", + "ground ginger", + "pitted date", + "baking powder", + "garlic cloves", + "sliced green onions", + "spinach", + "water", + "all-purpose flour", + "chopped cilantro fresh" + ] + }, + { + "id": 4597, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "hot sauce", + "crushed red pepper flakes", + "pork butt roast", + "butter", + "lemon juice", + "white vinegar", + "salt", + "white sugar" + ] + }, + { + "id": 9964, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "active dry yeast", + "chopped garlic", + "fresh rosemary", + "salt", + "water", + "bread flour" + ] + }, + { + "id": 26446, + "cuisine": "southern_us", + "ingredients": [ + "lemon zest", + "ginger", + "natural sugar", + "all purpose unbleached flour", + "salt", + "brown sugar", + "baking powder", + "vanilla extract", + "water", + "peach slices", + "vanilla soy milk" + ] + }, + { + "id": 10963, + "cuisine": "chinese", + "ingredients": [ + "lean ground pork", + "fresh ginger", + "napa cabbage", + "chicken broth", + "kosher salt", + "Shaoxing wine", + "ground white pepper", + "soy sauce", + "water", + "green onions", + "beans", + "water chestnuts", + "peanut oil" + ] + }, + { + "id": 28574, + "cuisine": "chinese", + "ingredients": [ + "quick-cooking tapioca", + "boneless skinless chicken breasts", + "red bell pepper", + "bamboo shoots", + "low sodium soy sauce", + "pepper", + "chopped celery", + "beansprouts", + "kosher salt", + "asian rice noodles", + "baby corn", + "brown sugar", + "water", + "carrots", + "onions" + ] + }, + { + "id": 40678, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "flour tortillas", + "purple onion", + "black pepper", + "cilantro", + "sweet mini bells", + "cheddar cheese", + "jalapeno chilies", + "salt", + "lime juice", + "black olives", + "red bell pepper" + ] + }, + { + "id": 42581, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "garam masala", + "salt", + "ghee", + "pepper", + "chili powder", + "mustard seeds", + "ground turmeric", + "tomatoes", + "coriander powder", + "oil", + "onions", + "ground fennel", + "pearl onions", + "garlic", + "coconut milk", + "chicken" + ] + }, + { + "id": 27757, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "mint leaves", + "water", + "salt", + "chat masala", + "vegetable oil", + "whole wheat flour" + ] + }, + { + "id": 6048, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "water", + "fresh spinach", + "firm tofu", + "miso paste" + ] + }, + { + "id": 38820, + "cuisine": "moroccan", + "ingredients": [ + "raw honey", + "hot water", + "mint leaves", + "hibiscus" + ] + }, + { + "id": 28863, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "bocconcini", + "dry bread crumbs", + "large eggs" + ] + }, + { + "id": 22904, + "cuisine": "southern_us", + "ingredients": [ + "dark rum", + "fresh pineapple", + "brandy", + "carbonated water", + "sugar", + "lemon", + "liqueur", + "green tea", + "champagne" + ] + }, + { + "id": 1873, + "cuisine": "irish", + "ingredients": [ + "rump roast", + "cooking spray", + "poppy seeds", + "onions", + "ground black pepper", + "butter", + "corn starch", + "kosher salt", + "fresh thyme leaves", + "fat free less sodium beef broth", + "fat free milk", + "baking potatoes", + "beer" + ] + }, + { + "id": 30017, + "cuisine": "mexican", + "ingredients": [ + "tomato purée", + "cooked turkey", + "finely chopped onion", + "carrots", + "fat free less sodium chicken broth", + "ground black pepper", + "chopped celery", + "chipotle chile", + "olive oil", + "chili powder", + "adobo sauce", + "minced garlic", + "white hominy", + "salt" + ] + }, + { + "id": 38660, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "vegetable oil", + "ground allspice", + "pickled jalapeno peppers", + "dried thyme", + "salt", + "garlic cloves", + "black pepper", + "cinnamon", + "scallions", + "chicken wings", + "Tabasco Pepper Sauce", + "grated nutmeg", + "onions" + ] + }, + { + "id": 43941, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "light soy sauce", + "garlic", + "corn starch", + "gai lan", + "minced ginger", + "white rice", + "oyster sauce", + "chicken legs", + "water", + "vegetable oil", + "dried shiitake mushrooms", + "boneless chicken thighs", + "Shaoxing wine", + "salt" + ] + }, + { + "id": 6534, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "ground red pepper", + "chopped onion", + "kidney beans", + "chopped celery", + "dried thyme", + "smoked sausage", + "chopped green bell pepper", + "rice" + ] + }, + { + "id": 11692, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "broccoli florets", + "oil", + "sesame seeds", + "chicken breasts", + "corn starch", + "soy sauce", + "green onions", + "garlic cloves", + "white vinegar", + "hoisin sauce", + "red pepper flakes", + "cashew nuts" + ] + }, + { + "id": 41280, + "cuisine": "italian", + "ingredients": [ + "broccoli rabe", + "heavy cream", + "fresh yeast", + "olive oil", + "fresh mozzarella", + "extra-virgin olive oil", + "garlic cloves", + "kosher salt", + "ground black pepper", + "crushed red pepper flakes", + "liquid", + "parmesan cheese", + "buttermilk", + "black olives" + ] + }, + { + "id": 13146, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "water", + "chili powder", + "paneer", + "cumin", + "tomatoes", + "garam masala", + "cilantro", + "cream yogurt", + "tomato paste", + "fresh ginger", + "butter", + "yellow onion", + "brown sugar", + "bay leaves", + "garlic", + "naan" + ] + }, + { + "id": 16088, + "cuisine": "british", + "ingredients": [ + "potatoes", + "peas", + "corn starch", + "corn", + "butter", + "beef broth", + "dried rosemary", + "shredded cheddar cheese", + "lean ground beef", + "garlic", + "onions", + "fresh thyme", + "worcestershire sauce", + "carrots" + ] + }, + { + "id": 37043, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "mirin", + "mizuna", + "sake", + "lime juice", + "daikon", + "hot sauce", + "low sodium soy sauce", + "boneless chicken skinless thigh", + "rice noodles", + "rice vinegar", + "sugar", + "ground black pepper", + "salt", + "canola oil" + ] + }, + { + "id": 25748, + "cuisine": "indian", + "ingredients": [ + "dried chickpeas", + "coconut", + "black mustard seeds", + "curry leaves", + "green chilies", + "salt" + ] + }, + { + "id": 28245, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "ground black pepper", + "garlic", + "cumin", + "lime juice", + "apple cider vinegar", + "chipotles in adobo", + "kosher salt", + "bay leaves", + "beef broth", + "ground cloves", + "boneless chuck roast", + "vegetable oil", + "oregano" + ] + }, + { + "id": 2801, + "cuisine": "italian", + "ingredients": [ + "spinach", + "milk", + "lean ground beef", + "salt", + "chicken livers", + "tomato paste", + "lean ground pork", + "grated parmesan cheese", + "butter", + "ham", + "onions", + "eggs", + "pepper", + "beef stock", + "bacon", + "carrots", + "dried oregano", + "semolina flour", + "ground nutmeg", + "ricotta cheese", + "all-purpose flour", + "celery" + ] + }, + { + "id": 11723, + "cuisine": "southern_us", + "ingredients": [ + "navy beans", + "sugar", + "milk", + "vegetable oil", + "dry mustard", + "ham hock", + "ground cinnamon", + "ground cloves", + "bay leaves", + "extra large eggs", + "cayenne pepper", + "light brown sugar", + "blackstrap molasses", + "kosher salt", + "baking powder", + "cracked black pepper", + "garlic cloves", + "yellow corn meal", + "ketchup", + "unsalted butter", + "worcestershire sauce", + "yellow onion" + ] + }, + { + "id": 22646, + "cuisine": "mexican", + "ingredients": [ + "egg substitute", + "salt", + "green chile", + "jalapeno chilies", + "fat free milk", + "corn tortillas", + "reduced fat sharp cheddar cheese", + "cooking spray" + ] + }, + { + "id": 29212, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "fresh cilantro", + "lemon grass", + "vegetable broth", + "carrots", + "white wine", + "olive oil", + "chile pepper", + "garlic", + "saffron", + "plain yogurt", + "sweet onion", + "brown rice", + "light coconut milk", + "red bell pepper", + "fish sauce", + "water", + "fresh ginger root", + "garlic sauce", + "broccoli" + ] + }, + { + "id": 33960, + "cuisine": "indian", + "ingredients": [ + "paprika", + "ground turmeric", + "water", + "halibut", + "kosher salt", + "cilantro", + "olive oil", + "ground coriander" + ] + }, + { + "id": 301, + "cuisine": "mexican", + "ingredients": [ + "hamburger buns", + "cheese", + "diced onions", + "jalapeno chilies", + "olive oil", + "ground beef", + "Old El Paso Enchilada Sauce", + "cilantro" + ] + }, + { + "id": 27158, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "coriander seeds", + "brown mustard seeds", + "lemon", + "natural yogurt", + "red bell pepper", + "cauliflower", + "red chili peppers", + "fresh ginger root", + "spices", + "diced tomatoes", + "peanut oil", + "tumeric", + "garbanzo beans", + "balsamic vinegar", + "sea salt", + "fenugreek seeds", + "onions", + "tomato paste", + "fresh cilantro", + "ground black pepper", + "butter", + "garlic", + "cumin seed" + ] + }, + { + "id": 25822, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "fresh ginger", + "vegetable oil", + "garlic", + "chopped fresh mint", + "ground chicken", + "sliced carrots", + "mint sprigs", + "dark brown sugar", + "chopped cilantro fresh", + "soy sauce", + "Sriracha", + "red pepper flakes", + "purple onion", + "cashew nuts", + "lime zest", + "lime juice", + "lime wedges", + "cilantro", + "scallions", + "iceberg lettuce" + ] + }, + { + "id": 20322, + "cuisine": "italian", + "ingredients": [ + "orange flower water", + "unflavored gelatin", + "fresh lemon juice", + "prosecco", + "fresh raspberries", + "sugar" + ] + }, + { + "id": 47148, + "cuisine": "irish", + "ingredients": [ + "dried thyme", + "large eggs", + "all-purpose flour", + "fresh parsley", + "black pepper", + "ground black pepper", + "1% low-fat milk", + "grated lemon zest", + "water", + "rib-eye roast", + "salt", + "garlic cloves", + "Madeira", + "large egg whites", + "cooking spray", + "beef broth" + ] + }, + { + "id": 23973, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "raisins", + "onions", + "ground cinnamon", + "pork tenderloin", + "salsa", + "ground cumin", + "flour tortillas", + "salt", + "chopped cilantro fresh", + "slivered almonds", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 47924, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "canola oil", + "red wine vinegar" + ] + }, + { + "id": 29344, + "cuisine": "brazilian", + "ingredients": [ + "vanilla", + "milk", + "caster sugar", + "dry coconut" + ] + }, + { + "id": 46359, + "cuisine": "indian", + "ingredients": [ + "seedless cucumber", + "chives", + "olive oil", + "orange zest", + "black pepper", + "nonfat yogurt", + "minced garlic", + "scallions" + ] + }, + { + "id": 33409, + "cuisine": "irish", + "ingredients": [ + "brewed coffee", + "irish cream liqueur", + "whipped cream", + "Irish whiskey", + "ground nutmeg" + ] + }, + { + "id": 25615, + "cuisine": "french", + "ingredients": [ + "asparagus", + "grated nutmeg", + "black pepper", + "pastry dough", + "large eggs", + "grated Gruyère cheese", + "kosher salt", + "heavy cream" + ] + }, + { + "id": 36796, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "scallions", + "white vinegar", + "napa cabbage", + "chopped garlic", + "asian pear", + "asian fish sauce", + "hot red pepper flakes", + "ginger" + ] + }, + { + "id": 13218, + "cuisine": "thai", + "ingredients": [ + "eggs", + "pepper", + "thai chile", + "onions", + "soy sauce", + "chicken breasts", + "scallions", + "fish sauce", + "egg whites", + "garlic", + "tomatoes", + "kosher salt", + "vegetable oil", + "Jasmine brown rice" + ] + }, + { + "id": 2410, + "cuisine": "indian", + "ingredients": [ + "lime", + "coffee", + "salt", + "tumeric", + "fresh ginger", + "cracked black pepper", + "chicken legs", + "olive oil", + "cilantro", + "greek yogurt", + "tandoori spices", + "garam masala", + "garlic" + ] + }, + { + "id": 26331, + "cuisine": "french", + "ingredients": [ + "pepper", + "center cut bacon", + "all-purpose flour", + "garlic cloves", + "mushrooms", + "salt", + "long-grain rice", + "dried thyme", + "shallots", + "beef broth", + "small red potato", + "skinless chicken pieces", + "dry red wine", + "baby carrots", + "dried rosemary" + ] + }, + { + "id": 46779, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "matcha green tea powder", + "egg whites", + "mirin", + "bread flour", + "egg yolks" + ] + }, + { + "id": 3375, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "ice", + "peaches", + "water", + "fresh lemon juice" + ] + }, + { + "id": 46040, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "dried pinto beans", + "ground cumin", + "lean ground beef", + "salt", + "chili powder", + "garlic", + "tomato paste", + "diced tomatoes", + "onions" + ] + }, + { + "id": 21358, + "cuisine": "chinese", + "ingredients": [ + "anise", + "ground ginger", + "crushed red pepper" + ] + }, + { + "id": 14713, + "cuisine": "spanish", + "ingredients": [ + "egg whites", + "honey", + "white sugar", + "almonds", + "hazelnuts", + "cinnamon" + ] + }, + { + "id": 44872, + "cuisine": "southern_us", + "ingredients": [ + "cremini mushrooms", + "garlic powder", + "freshly ground pepper", + "kosher salt", + "butter", + "low sodium beef broth", + "boneless chop pork", + "large eggs", + "Italian seasoned panko bread crumbs", + "milk", + "all-purpose flour", + "canola oil" + ] + }, + { + "id": 14130, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "ground black pepper", + "yellow onion", + "olive oil", + "yellow bell pepper", + "garlic cloves", + "halibut fillets", + "dry white wine", + "fresh oregano", + "orange bell pepper", + "salt", + "red bell pepper" + ] + }, + { + "id": 37554, + "cuisine": "filipino", + "ingredients": [ + "grated coconut", + "baking powder", + "coconut milk", + "eggs", + "bananas", + "ice cream", + "fresh ginger", + "vegetable oil", + "white flour", + "palm sugar", + "salt" + ] + }, + { + "id": 29540, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "grated parmesan cheese", + "dried parsley", + "water", + "shredded mozzarella cheese", + "lasagna noodles", + "sour cream", + "cottage cheese", + "breakfast sausages" + ] + }, + { + "id": 43788, + "cuisine": "chinese", + "ingredients": [ + "ground chicken", + "green onions", + "gingerroot", + "won ton wrappers", + "salt", + "corn starch", + "water", + "vegetable oil", + "garlic cloves", + "green cabbage", + "egg whites", + "dark sesame oil" + ] + }, + { + "id": 9261, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "all-purpose flour", + "slivered almonds", + "almond extract", + "ground cumin", + "unsalted butter", + "cumin seed", + "sugar", + "salt" + ] + }, + { + "id": 30853, + "cuisine": "british", + "ingredients": [ + "whole milk", + "chopped fresh sage", + "kosher salt", + "bacon slices", + "butter", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 42084, + "cuisine": "southern_us", + "ingredients": [ + "fresh thyme leaves", + "liquid", + "fresh thyme", + "frozen corn kernels", + "sliced green onions", + "olive oil", + "salt", + "onions", + "green bell pepper", + "peas", + "red bell pepper" + ] + }, + { + "id": 35480, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "large egg yolks", + "salt", + "solid pack pumpkin", + "cinnamon", + "ground ginger", + "large eggs", + "cognac", + "milk", + "heavy cream" + ] + }, + { + "id": 36478, + "cuisine": "korean", + "ingredients": [ + "eggs", + "soy sauce", + "olive oil", + "bell pepper", + "broccoli", + "noodles", + "brown sugar", + "minced garlic", + "shiitake", + "red pepper", + "carrots", + "spinach", + "pepper", + "sesame seeds", + "sesame oil", + "scallions", + "sugar", + "water", + "beef", + "salt", + "onions" + ] + }, + { + "id": 1714, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "sea salt", + "flour", + "olive oil" + ] + }, + { + "id": 4014, + "cuisine": "southern_us", + "ingredients": [ + "slivered almonds", + "lemon", + "fresh parsley", + "trout", + "all-purpose flour", + "butter", + "lemon juice", + "pepper", + "salt" + ] + }, + { + "id": 36018, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "cinnamon", + "tart apples", + "fresh ginger root", + "yellow onion", + "white pepper", + "white wine vinegar", + "white sugar", + "ground nutmeg", + "ground cardamom" + ] + }, + { + "id": 995, + "cuisine": "jamaican", + "ingredients": [ + "jamaican jerk season", + "onions", + "sandwich buns", + "barbecue sauce", + "cola", + "boneless pork shoulder", + "dri leav thyme" + ] + }, + { + "id": 44209, + "cuisine": "italian", + "ingredients": [ + "baby greens", + "flat leaf parsley", + "crabmeat", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 16008, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "chicken stock cubes", + "long-grain rice", + "chicken", + "vegetable oil", + "dark brown sugar", + "red bell pepper", + "sweet chili sauce", + "green pepper", + "green beans", + "savoy cabbage", + "cilantro", + "scallions", + "frozen peas" + ] + }, + { + "id": 17061, + "cuisine": "southern_us", + "ingredients": [ + "extra-virgin olive oil", + "fresh lemon juice", + "bay leaves", + "lemon rind", + "thyme sprigs", + "kosher salt", + "crushed red pepper", + "okra pods", + "kalamata", + "garlic cloves" + ] + }, + { + "id": 13968, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "all-purpose flour", + "shortening", + "red pepper", + "ground black pepper", + "salt", + "buttermilk", + "chicken" + ] + }, + { + "id": 3833, + "cuisine": "mexican", + "ingredients": [ + "instant white rice", + "oil", + "salsa", + "chicken broth", + "onions" + ] + }, + { + "id": 17841, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "french bread", + "red bell pepper", + "eggplant", + "balsamic vinegar", + "olive oil", + "cooking spray", + "onions", + "pesto", + "part-skim mozzarella cheese", + "salt" + ] + }, + { + "id": 33711, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "frozen pound cake", + "strawberries", + "sugar", + "orange rind", + "butter" + ] + }, + { + "id": 15552, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "salt", + "pork chops", + "garlic powder", + "apricot nectar", + "vegetable oil" + ] + }, + { + "id": 35541, + "cuisine": "italian", + "ingredients": [ + "lime", + "grate lime peel", + "sugar", + "butter", + "unflavored gelatin", + "mascarpone", + "fresh lime juice", + "raspberries", + "whipping cream" + ] + }, + { + "id": 39662, + "cuisine": "mexican", + "ingredients": [ + "ground beef", + "baked beans", + "hamburger buns", + "taco seasoning" + ] + }, + { + "id": 12599, + "cuisine": "thai", + "ingredients": [ + "vegetable oil", + "cilantro leaves", + "fish fillets", + "green peas", + "coconut milk", + "eggs", + "Thai red curry paste", + "green beans", + "black pepper", + "salt", + "onions" + ] + }, + { + "id": 45607, + "cuisine": "indian", + "ingredients": [ + "milk", + "sweetened condensed milk", + "kewra water", + "paneer", + "nuts", + "ground cardamom" + ] + }, + { + "id": 10619, + "cuisine": "italian", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "broccoli rabe", + "salt", + "ground black pepper", + "ricotta", + "olive oil", + "garlic" + ] + }, + { + "id": 33736, + "cuisine": "indian", + "ingredients": [ + "brown mustard seeds", + "naan", + "safflower oil", + "cucumber", + "tomatoes", + "salt", + "ground cumin", + "plain yogurt", + "chopped fresh mint" + ] + }, + { + "id": 40797, + "cuisine": "french", + "ingredients": [ + "fresh dill", + "cooking spray", + "garlic cloves", + "white bread", + "ground black pepper", + "salt", + "water", + "baking potatoes", + "boneless skinless chicken breast halves", + "large egg whites", + "butter" + ] + }, + { + "id": 5287, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "instant rice", + "chopped cilantro fresh", + "chicken broth", + "onions", + "vegetable oil" + ] + }, + { + "id": 14068, + "cuisine": "filipino", + "ingredients": [ + "lemon", + "carrots", + "green bell pepper", + "coconut aminos", + "cooked chicken breasts", + "garlic", + "onions", + "rice noodles", + "extra virgin coconut oil" + ] + }, + { + "id": 41319, + "cuisine": "southern_us", + "ingredients": [ + "cream sweeten whip", + "unsalted butter", + "baking powder", + "ground allspice", + "firmly packed brown sugar", + "jasmine", + "salt", + "sour cream", + "ground cinnamon", + "baking soda", + "large eggs", + "all-purpose flour", + "mint", + "granulated sugar", + "vanilla extract", + "chopped pecans" + ] + }, + { + "id": 16120, + "cuisine": "french", + "ingredients": [ + "croissant dough", + "sea salt flakes", + "eggs", + "chocolate sticks", + "semisweet chocolate" + ] + }, + { + "id": 47936, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "roasted red peppers", + "ground cumin", + "ground black pepper", + "sour cream", + "Spike Seasoning", + "green onions", + "Mexican cheese blend", + "yellow peppers" + ] + }, + { + "id": 23143, + "cuisine": "brazilian", + "ingredients": [ + "baby spinach", + "chicken-flavored soup powder", + "pepper", + "yellow onion", + "tomatoes", + "salt", + "coconut milk", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 36439, + "cuisine": "british", + "ingredients": [ + "grated orange peel", + "semisweet chocolate", + "orange juice", + "large egg yolks", + "whipping cream", + "corn starch", + "sugar", + "whole milk", + "cranberries", + "ground ginger", + "crystallized ginger", + "Grand Marnier", + "frozen pound cake" + ] + }, + { + "id": 5737, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "chop fine pecan", + "long-grain rice", + "olive oil", + "salt", + "low salt chicken broth", + "finely chopped onion", + "orange juice", + "sugar", + "golden raisins", + "carrots" + ] + }, + { + "id": 35837, + "cuisine": "southern_us", + "ingredients": [ + "chopped ham", + "sweet pickle", + "pickle relish", + "hamburger buns", + "bacon", + "cheddar cheese", + "barbecue sauce", + "sweet chili sauce", + "onions" + ] + }, + { + "id": 555, + "cuisine": "italian", + "ingredients": [ + "tomatoes with juice", + "orecchiette", + "parmesan cheese", + "salt", + "broccoli florets", + "sweet italian sausage", + "olive oil", + "garlic" + ] + }, + { + "id": 38959, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "diced tomatoes", + "cucumber", + "soy sauce", + "rice vinegar", + "toasted sesame seeds", + "baby greens", + "oil", + "romaine lettuce", + "grapeseed oil", + "carrots" + ] + }, + { + "id": 12720, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "ice", + "cachaca", + "sugar" + ] + }, + { + "id": 19460, + "cuisine": "indian", + "ingredients": [ + "peeled fresh ginger", + "ground coriander", + "cooking spray", + "salt", + "ground cumin", + "olive oil", + "purple onion", + "fresh mint", + "pattypan squash", + "fresh lemon juice" + ] + }, + { + "id": 43099, + "cuisine": "irish", + "ingredients": [ + "pepper", + "salt", + "potatoes", + "butter", + "milk", + "scallions" + ] + }, + { + "id": 1845, + "cuisine": "jamaican", + "ingredients": [ + "beef", + "scallions", + "water", + "flour", + "red kidney beans", + "cooking oil", + "thyme", + "stewing beef", + "salt" + ] + }, + { + "id": 8752, + "cuisine": "indian", + "ingredients": [ + "fat free less sodium chicken broth", + "ground coriander", + "onions", + "reduced-fat sour cream", + "carrots", + "olive oil", + "garlic cloves", + "chopped cilantro fresh", + "salt", + "fresh lime juice" + ] + }, + { + "id": 23749, + "cuisine": "italian", + "ingredients": [ + "salt", + "thin pizza crust", + "pesto", + "shredded mozzarella cheese", + "boneless skinless chicken breasts", + "oil", + "freshly ground pepper" + ] + }, + { + "id": 21745, + "cuisine": "italian", + "ingredients": [ + "garbanzo beans", + "balsamic vinegar", + "bocconcini", + "olive oil", + "dijon mustard", + "Italian parsley leaves", + "green beans", + "hot red pepper flakes", + "roasted red peppers", + "red wine vinegar", + "garlic cloves", + "artichoke hearts", + "salami", + "pepperoncini", + "rotini" + ] + }, + { + "id": 15560, + "cuisine": "british", + "ingredients": [ + "pepper", + "vegetable oil", + "carrots", + "sodium reduced beef broth", + "dried thyme", + "garlic", + "boiling potatoes", + "tomato paste", + "milk", + "worcestershire sauce", + "onions", + "cheddar cheese", + "lean ground beef", + "salt" + ] + }, + { + "id": 20386, + "cuisine": "mexican", + "ingredients": [ + "salt", + "Quinoa Flour", + "hot water", + "brown rice flour", + "olive oil" + ] + }, + { + "id": 16166, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "tortilla chips", + "pepper", + "salt", + "sour cream", + "onion powder", + "(15 oz.) refried beans", + "shredded cheddar cheese", + "salsa", + "ground beef" + ] + }, + { + "id": 41084, + "cuisine": "thai", + "ingredients": [ + "thai basil", + "ground pork", + "red bell pepper", + "wide rice noodles", + "lime wedges", + "garlic", + "sweet soy sauce", + "thai chile", + "onions", + "fish sauce", + "vegetable oil", + "rice vinegar" + ] + }, + { + "id": 39279, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "canned tomatoes", + "cardamom pods", + "onions", + "tumeric", + "double cream", + "rice", + "cinnamon sticks", + "clove", + "chicken breasts", + "cilantro leaves", + "garlic cloves", + "fenugreek", + "ginger", + "green chilies", + "ghee" + ] + }, + { + "id": 25956, + "cuisine": "indian", + "ingredients": [ + "sugar", + "peaches", + "water", + "plain yogurt" + ] + }, + { + "id": 2018, + "cuisine": "filipino", + "ingredients": [ + "ginger", + "carrots", + "peppercorns", + "sugar", + "salt", + "onions", + "white vinegar", + "garlic", + "red bell pepper", + "raisins", + "green pepper", + "green papaya" + ] + }, + { + "id": 43844, + "cuisine": "italian", + "ingredients": [ + "sweet italian sausage", + "peeled tomatoes", + "extra-virgin olive oil", + "hot red pepper flakes" + ] + }, + { + "id": 8545, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "buttermilk", + "all-purpose flour", + "baking soda", + "frosting", + "large eggs", + "salt", + "sugar", + "vanilla extract" + ] + }, + { + "id": 24103, + "cuisine": "thai", + "ingredients": [ + "ground chicken", + "hot chili sauce", + "chopped fresh mint", + "fish sauce", + "green onions", + "fresh lime juice", + "dry roasted peanuts", + "dark sesame oil", + "chopped cilantro fresh", + "lettuce leaves", + "oyster sauce" + ] + }, + { + "id": 18320, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "cooking oil", + "corn starch", + "chicken broth", + "ground black pepper", + "garlic", + "soy sauce", + "broccoli florets", + "sirloin", + "Sriracha", + "oyster sauce" + ] + }, + { + "id": 32042, + "cuisine": "japanese", + "ingredients": [ + "scallion greens", + "konbu", + "soft tofu", + "cold water", + "dried bonito flakes", + "shiro miso" + ] + }, + { + "id": 40222, + "cuisine": "brazilian", + "ingredients": [ + "meyer lemon", + "crushed ice", + "granulated white sugar", + "fresh thyme", + "cachaca" + ] + }, + { + "id": 1794, + "cuisine": "spanish", + "ingredients": [ + "baking potatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 9176, + "cuisine": "mexican", + "ingredients": [ + "chili", + "grate lime peel", + "ground cumin", + "green onions", + "chopped cilantro fresh", + "finely chopped onion", + "fresh lime juice", + "avocado", + "poblano chilies", + "plum tomatoes" + ] + }, + { + "id": 2617, + "cuisine": "greek", + "ingredients": [ + "grape tomatoes", + "shallots", + "fillets", + "olive oil", + "lemon", + "leaf parsley", + "baby spinach", + "feta cheese", + "garlic" + ] + }, + { + "id": 225, + "cuisine": "filipino", + "ingredients": [ + "guava", + "salt", + "chinese spinach", + "pork", + "water", + "yams", + "bok choy", + "fresh tomatoes", + "pepper", + "green chilies", + "lime leaves", + "white onion", + "daikon", + "juice", + "broth" + ] + }, + { + "id": 33631, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "part-skim mozzarella cheese", + "salt", + "pasta sauce", + "Alfredo sauce", + "pasta", + "ground black pepper", + "nonstick spray", + "yellow summer squash", + "vegetable oil" + ] + }, + { + "id": 16349, + "cuisine": "italian", + "ingredients": [ + "parsley leaves", + "garlic cloves", + "white beans", + "Italian bread", + "walnuts", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 19446, + "cuisine": "italian", + "ingredients": [ + "clams", + "olive oil", + "garlic cloves", + "fettucine", + "red pepper flakes", + "fresh parsley", + "pepper", + "salt", + "tomato paste", + "clam juice", + "juice" + ] + }, + { + "id": 10094, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "florets", + "garlic cloves", + "curry powder", + "extra-virgin olive oil", + "couscous", + "tumeric", + "ginger", + "carrots", + "boneless skinless chicken breasts", + "broccoli", + "onions" + ] + }, + { + "id": 18476, + "cuisine": "mexican", + "ingredients": [ + "tomato purée", + "vegetable oil", + "salt", + "red kidney beans", + "flour tortillas", + "cheese", + "onions", + "ground black pepper", + "red pepper", + "green pepper", + "tomatoes", + "chili powder", + "garlic" + ] + }, + { + "id": 27859, + "cuisine": "mexican", + "ingredients": [ + "coconut oil", + "cilantro leaves", + "water", + "long grain white rice", + "white onion", + "garlic cloves", + "salt" + ] + }, + { + "id": 35633, + "cuisine": "thai", + "ingredients": [ + "sugar", + "salt", + "chili paste", + "water", + "vinegar" + ] + }, + { + "id": 15162, + "cuisine": "british", + "ingredients": [ + "milk", + "worcestershire sauce", + "flour", + "beer", + "cayenne", + "dry mustard", + "cheddar cheese", + "butter" + ] + }, + { + "id": 11822, + "cuisine": "greek", + "ingredients": [ + "shallots", + "fresh lemon juice", + "lamb rib chops", + "extra-virgin olive oil", + "grated lemon peel", + "large garlic cloves", + "chopped fresh mint", + "sugar", + "fresh oregano" + ] + }, + { + "id": 32456, + "cuisine": "french", + "ingredients": [ + "olive oil", + "sliced carrots", + "salt", + "chuck", + "cremini mushrooms", + "flour", + "red wine", + "bouquet", + "chicken stock", + "chopped tomatoes", + "butter", + "freshly ground pepper", + "pearl onions", + "beef stock", + "bacon", + "onions" + ] + }, + { + "id": 20774, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "onions", + "condensed cream of chicken soup", + "carrots", + "biscuit dough", + "boneless skinless chicken breasts", + "celery" + ] + }, + { + "id": 1579, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "potatoes", + "bacon slices", + "low-fat buttermilk", + "leeks", + "dry bread crumbs", + "fat free less sodium chicken broth", + "large eggs", + "butter", + "grated Gruyère cheese", + "ground black pepper", + "cooking spray", + "salt" + ] + }, + { + "id": 26483, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "tuna", + "wasabi powder", + "french bread", + "olive oil", + "cracked black pepper" + ] + }, + { + "id": 30515, + "cuisine": "italian", + "ingredients": [ + "eggs", + "lady fingers", + "mascarpone", + "unsweetened cocoa powder", + "sugar", + "cognac", + "coffee" + ] + }, + { + "id": 10129, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "noodles", + "Frank's® RedHot® Original Cayenne Pepper Sauce", + "salt", + "butter", + "pepper", + "shredded cheese" + ] + }, + { + "id": 25294, + "cuisine": "southern_us", + "ingredients": [ + "pizza crust", + "maldon sea salt", + "plum tomatoes", + "pecorino cheese", + "extra-virgin olive oil", + "thick-cut bacon", + "collard green leaves", + "garlic cloves", + "red pepper flakes", + "buffalo" + ] + }, + { + "id": 36674, + "cuisine": "mexican", + "ingredients": [ + "crushed tomatoes", + "flank steak", + "onions", + "jalapeno chilies", + "sea salt", + "ground cumin", + "bell pepper", + "apple cider vinegar", + "olives", + "green onions", + "garlic" + ] + }, + { + "id": 35912, + "cuisine": "cajun_creole", + "ingredients": [ + "white wine", + "green onions", + "garlic", + "okra", + "fresh basil", + "ground pepper", + "heirloom tomatoes", + "cayenne pepper", + "onions", + "kosher salt", + "spices", + "hot sauce", + "fresh parsley", + "andouille sausage", + "fresh thyme", + "white rice", + "bacon grease" + ] + }, + { + "id": 42726, + "cuisine": "thai", + "ingredients": [ + "sweet soy sauce", + "vegetable oil", + "bird chile", + "basil leaves", + "garlic", + "bell pepper", + "ground pork", + "onions", + "fish sauce", + "rice noodles", + "rice vinegar" + ] + }, + { + "id": 28353, + "cuisine": "japanese", + "ingredients": [ + "savoy cabbage", + "sesame oil", + "garlic", + "dijon mustard", + "furikake", + "japanese eggplants", + "white miso", + "chicken cutlets", + "panko breadcrumbs", + "mirin", + "tonkatsu sauce" + ] + }, + { + "id": 24439, + "cuisine": "vietnamese", + "ingredients": [ + "pearl onions", + "kirby cucumbers", + "soy sauce", + "boneless skinless chicken breasts", + "hot sauce", + "mayonaise", + "Sriracha", + "cilantro sprigs", + "baguette", + "shallots", + "carrots" + ] + }, + { + "id": 8057, + "cuisine": "korean", + "ingredients": [ + "black peppercorns", + "bay leaves", + "salt", + "white sugar", + "sesame seeds", + "ginger", + "onions", + "dark soy sauce", + "chili powder", + "beef rib short", + "leaves", + "garlic", + "habas" + ] + }, + { + "id": 7805, + "cuisine": "indian", + "ingredients": [ + "green cabbage", + "kosher salt", + "peeled fresh ginger", + "fresh lime juice", + "sliced green onions", + "black pepper", + "red cabbage", + "fresh mint", + "serrano chile", + "grape tomatoes", + "dry roasted peanuts", + "ground red pepper", + "chopped cilantro fresh", + "ground cumin", + "sugar", + "garam masala", + "white wine vinegar", + "chaat masala" + ] + }, + { + "id": 10909, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "cayenne pepper", + "garlic", + "white sugar", + "salt", + "ground cumin", + "olive oil", + "ground mustard" + ] + }, + { + "id": 43682, + "cuisine": "french", + "ingredients": [ + "onion soup mix", + "garlic", + "fish", + "water", + "dry white wine", + "mussels, well scrubbed", + "tomatoes", + "lobster", + "clams, well scrub", + "olive oil", + "parsley", + "thyme leaves" + ] + }, + { + "id": 32922, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic", + "chicken wings", + "ginger", + "cinnamon sticks", + "water", + "scallions", + "sugar", + "star anise" + ] + }, + { + "id": 42461, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "pickles", + "salt", + "mustard oil", + "onions", + "red chili powder", + "seeds", + "curds", + "mustard seeds", + "basmati rice", + "tomatoes", + "mint leaves", + "fenugreek seeds", + "lemon juice", + "coriander", + "clove", + "garlic paste", + "paneer", + "cumin seed", + "cinnamon sticks", + "ground turmeric" + ] + }, + { + "id": 20986, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "instant banana cream pudding", + "vanilla wafers", + "powdered sugar", + "large eggs", + "cream sweeten whip", + "bananas", + "cream cheese", + "yellow cake mix", + "butter" + ] + }, + { + "id": 22872, + "cuisine": "mexican", + "ingredients": [ + "zucchini", + "extra-virgin olive oil", + "tomatoes", + "jalapeno chilies", + "salt", + "fresh cilantro", + "green onions", + "garlic cloves", + "ground black pepper", + "queso blanco", + "fresh lime juice" + ] + }, + { + "id": 13772, + "cuisine": "chinese", + "ingredients": [ + "Shaoxing wine", + "peanut oil", + "sugar", + "peeled shrimp", + "corn starch", + "ginger", + "garlic chili sauce", + "light soy sauce", + "salt" + ] + }, + { + "id": 38262, + "cuisine": "mexican", + "ingredients": [ + "ricotta cheese", + "sour cream", + "garlic", + "shredded Monterey Jack cheese", + "butter", + "corn tortillas", + "frozen chopped spinach", + "enchilada sauce", + "sliced green onions" + ] + }, + { + "id": 18405, + "cuisine": "southern_us", + "ingredients": [ + "vanilla", + "salt", + "sugar", + "all-purpose flour", + "milk", + "oil" + ] + }, + { + "id": 24263, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "extra-virgin olive oil", + "ground cumin", + "fresh oregano leaves", + "diced tomatoes", + "fine sea salt", + "chili powder", + "garlic", + "black beans", + "white rice", + "cilantro leaves" + ] + }, + { + "id": 18433, + "cuisine": "japanese", + "ingredients": [ + "chicken legs", + "mirin", + "bamboo shoots", + "kosher salt", + "sauce", + "sake", + "shichimi togarashi", + "light brown sugar", + "water", + "scallions" + ] + }, + { + "id": 28802, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "dry white wine", + "garlic cloves", + "fresh parsley", + "finely chopped onion", + "crushed red pepper flakes", + "red bell pepper", + "olive oil", + "yukon gold potatoes", + "carrots", + "yellowfin tuna", + "Anaheim chile", + "vegetable broth", + "bay leaf" + ] + }, + { + "id": 11903, + "cuisine": "italian", + "ingredients": [ + "chickpea flour", + "white wine", + "extra-virgin olive oil", + "onions", + "slivered almonds", + "ground black pepper", + "salt", + "nutmeg", + "olive oil", + "garlic", + "sage", + "vegan coffee creamer", + "sweet potatoes", + "all-purpose flour" + ] + }, + { + "id": 12176, + "cuisine": "southern_us", + "ingredients": [ + "bread crumbs", + "flour", + "paprika", + "red bell pepper", + "parmesan cheese", + "butter", + "grated nutmeg", + "oysters", + "mushrooms", + "salt", + "ground black pepper", + "heavy cream", + "scallions" + ] + }, + { + "id": 44137, + "cuisine": "japanese", + "ingredients": [ + "baking soda", + "vanilla extract", + "cream cheese", + "plain yogurt", + "vegetable oil", + "salt", + "white sugar", + "eggs", + "green tea", + "cake flour", + "confectioners sugar", + "milk", + "butter", + "all-purpose flour" + ] + }, + { + "id": 12179, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "balsamic vinegar", + "onions", + "minced garlic", + "turkey kielbasa", + "fresh mushrooms", + "olive oil", + "onion powder", + "red bell pepper", + "grated parmesan cheese", + "yellow bell pepper", + "steak seasoning" + ] + }, + { + "id": 14559, + "cuisine": "southern_us", + "ingredients": [ + "white sugar", + "apple cider", + "apples", + "brown sugar" + ] + }, + { + "id": 29578, + "cuisine": "french", + "ingredients": [ + "jumbo shrimp", + "dried thyme", + "sea scallops", + "anchovy paste", + "dijon", + "olive oil", + "red wine vinegar", + "sugar", + "cherry tomatoes", + "tuna steaks", + "Niçoise olives", + "red leaf lettuce", + "yellow squash", + "wax beans", + "red bell pepper" + ] + }, + { + "id": 33357, + "cuisine": "chinese", + "ingredients": [ + "chili pepper", + "green onions", + "peanut oil", + "pork spare ribs", + "star anise", + "light soy sauce", + "ginger", + "chinese black vinegar", + "sugar", + "Shaoxing wine", + "meat bones" + ] + }, + { + "id": 48534, + "cuisine": "british", + "ingredients": [ + "dark chocolate", + "caramels", + "extract", + "salt", + "unsweetened almond milk", + "Knox unflavored gelatin", + "mashed banana", + "lemon juice", + "coconut oil", + "sucanat", + "whipped cream", + "vanilla bean paste", + "stevia extract", + "bananas", + "graham cracker crumbs", + "light coconut milk" + ] + }, + { + "id": 44071, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "Mexican oregano", + "queso anejo", + "chorizo sausage", + "black pepper", + "corn oil", + "salt", + "onions", + "macaroni", + "garlic", + "sour cream", + "water", + "chile pepper", + "diced tomatoes in juice" + ] + }, + { + "id": 7217, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "soy sauce", + "paprika", + "roasted peanuts", + "ground white pepper", + "fish sauce", + "spring onions", + "cayenne pepper", + "shrimp", + "chillies", + "eggs", + "thai noodles", + "garlic", + "oil", + "beansprouts", + "brown sugar", + "lime wedges", + "tamarind paste", + "corn starch", + "chicken thighs" + ] + }, + { + "id": 26632, + "cuisine": "korean", + "ingredients": [ + "sugar", + "flank steak", + "canola oil", + "short-grain rice", + "kimchi", + "minced garlic", + "dark sesame oil", + "sliced green onions", + "low sodium soy sauce", + "lettuce leaves", + "toasted sesame seeds" + ] + }, + { + "id": 37816, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "butter", + "active dry yeast", + "all-purpose flour", + "milk", + "salt", + "egg yolks", + "white sugar" + ] + }, + { + "id": 43536, + "cuisine": "korean", + "ingredients": [ + "sugar", + "green onions", + "sesame seeds", + "soy sauce", + "garlic", + "vinegar" + ] + }, + { + "id": 9270, + "cuisine": "japanese", + "ingredients": [ + "rice wine", + "sushi grade tuna", + "soy sauce", + "vegetable oil", + "lime juice", + "wasabi powder", + "mayonaise", + "sesame oil" + ] + }, + { + "id": 3555, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "reduced-fat sour cream", + "frozen whole kernel corn", + "chicken breasts", + "reduced fat monterey jack cheese", + "cooking spray", + "salsa", + "flour tortillas", + "no-salt-added black beans" + ] + }, + { + "id": 47995, + "cuisine": "italian", + "ingredients": [ + "pepperoni slices", + "large garlic cloves", + "fresh parsley", + "olive oil", + "shredded mozzarella cheese", + "dried oregano", + "dried basil", + "frozen bread dough", + "plum tomatoes", + "grated parmesan cheese", + "cornmeal" + ] + }, + { + "id": 42785, + "cuisine": "japanese", + "ingredients": [ + "chile paste", + "grapeseed oil", + "carrots", + "sugar", + "reduced-sodium tamari sauce", + "soba noodles", + "fresh ginger", + "rice vinegar", + "minced garlic", + "mirin", + "scallions" + ] + }, + { + "id": 45084, + "cuisine": "indian", + "ingredients": [ + "vegetables", + "lemon wedge", + "cumin seed", + "mixed bell peppers", + "soy sauce", + "yoghurt", + "tomato ketchup", + "coriander", + "cottage cheese", + "garam masala", + "salt", + "baby corn", + "tomatoes", + "bananas", + "chili powder", + "oil", + "ground turmeric" + ] + }, + { + "id": 32910, + "cuisine": "italian", + "ingredients": [ + "garlic", + "olive oil", + "Texas toast bread", + "clams", + "crushed red pepper", + "traditional italian sauce", + "flat leaf parsley" + ] + }, + { + "id": 31997, + "cuisine": "russian", + "ingredients": [ + "sugar", + "milk", + "almond extract", + "softened butter", + "grated lemon peel", + "mixed fruit", + "unsalted butter", + "beaten eggs", + "toasted slivered almonds", + "warm water", + "active dry yeast", + "vanilla extract", + "ground cardamom", + "slivered almonds", + "water", + "flour", + "salt", + "confectioners sugar" + ] + }, + { + "id": 46892, + "cuisine": "japanese", + "ingredients": [ + "gyoza", + "ground pork", + "scallions", + "white pepper", + "sesame oil", + "garlic", + "corn starch", + "sake", + "base", + "ginger", + "oil", + "water", + "ponzu", + "salt", + "cabbage" + ] + }, + { + "id": 521, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "kosher salt", + "garlic", + "pinenuts", + "extra-virgin olive oil", + "parmesan cheese" + ] + }, + { + "id": 30028, + "cuisine": "greek", + "ingredients": [ + "green bell pepper", + "extra-virgin olive oil", + "feta cheese crumbles", + "dried oregano", + "lettuce leaves", + "pepperoncini", + "cucumber", + "pita bread rounds", + "purple onion", + "ground white pepper", + "kalamata", + "lemon juice", + "red bell pepper" + ] + }, + { + "id": 35885, + "cuisine": "korean", + "ingredients": [ + "egg yolks", + "seaweed", + "water", + "green onions", + "black pepper", + "beef stock", + "rice cakes", + "salt" + ] + }, + { + "id": 36798, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "artichokes", + "lemon", + "flat leaf parsley", + "dry white wine", + "garlic cloves", + "fettucine", + "extra-virgin olive oil" + ] + }, + { + "id": 11273, + "cuisine": "jamaican", + "ingredients": [ + "pimentos", + "cinnamon sticks", + "milk", + "salt", + "water", + "chocolate", + "ground nutmeg", + "condensed milk" + ] + }, + { + "id": 18030, + "cuisine": "cajun_creole", + "ingredients": [ + "diced tomatoes", + "rice", + "worcestershire sauce", + "creole seasoning", + "onions", + "butter", + "green pepper", + "celery", + "chicken broth", + "cayenne pepper", + "shrimp" + ] + }, + { + "id": 28662, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "coarse salt", + "arborio rice", + "leeks", + "fresh lemon juice", + "low sodium chicken broth", + "bacon", + "ground pepper", + "dry white wine", + "frozen peas" + ] + }, + { + "id": 11495, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "Italian seasoned breadcrumbs", + "cheese ravioli", + "vegetable oil", + "freshly grated parmesan", + "buttermilk" + ] + }, + { + "id": 17902, + "cuisine": "cajun_creole", + "ingredients": [ + "active dry yeast", + "vegetable oil", + "eggs", + "unsalted butter", + "all-purpose flour", + "evaporated milk", + "salt", + "warm water", + "granulated sugar", + "confectioners sugar" + ] + }, + { + "id": 10417, + "cuisine": "indian", + "ingredients": [ + "green chilies", + "methi", + "water", + "oil", + "cumin seed", + "salt", + "rice flour" + ] + }, + { + "id": 41231, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "cajun seasoning", + "cooked shrimp", + "dried oregano", + "andouille sausage", + "cayenne pepper", + "dried parsley", + "dried thyme", + "diced tomatoes in juice", + "boneless skinless chicken breast halves", + "green bell pepper", + "chopped celery", + "onions" + ] + }, + { + "id": 11428, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "onions", + "tomatoes", + "summer squash", + "flour tortillas", + "shredded cheddar cheese", + "salt" + ] + }, + { + "id": 36514, + "cuisine": "chinese", + "ingredients": [ + "water", + "szechwan peppercorns", + "dark leafy greens", + "garlic", + "sesame paste", + "sugar", + "mi", + "chili oil", + "ground pork", + "chinese five-spice powder", + "dark soy sauce", + "peanuts", + "cinnamon", + "crushed red pepper flakes", + "scallions", + "noodles", + "soy sauce", + "Shaoxing wine", + "sweet bean paste", + "star anise", + "oil" + ] + }, + { + "id": 20453, + "cuisine": "filipino", + "ingredients": [ + "evaporated milk", + "white sugar", + "eggs", + "cake flour", + "baking powder", + "water", + "margarine" + ] + }, + { + "id": 19043, + "cuisine": "thai", + "ingredients": [ + "green onions", + "large shrimp", + "fish sauce", + "red curry paste", + "fresh basil", + "light coconut milk", + "canola oil", + "sugar", + "chopped onion" + ] + }, + { + "id": 48010, + "cuisine": "filipino", + "ingredients": [ + "tomato sauce", + "green peas", + "red bell pepper", + "beef brisket", + "garlic", + "onions", + "potatoes", + "beef broth", + "green bell pepper", + "vegetable oil", + "carrots" + ] + }, + { + "id": 2277, + "cuisine": "southern_us", + "ingredients": [ + "salted butter", + "buttermilk", + "large eggs", + "cake flour", + "baking soda", + "heavy cream", + "sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 43391, + "cuisine": "russian", + "ingredients": [ + "coconut oil", + "flour", + "all-purpose flour", + "molasses", + "vanilla extract", + "ground cinnamon", + "baking soda", + "salt", + "sugar", + "raisins", + "hot water" + ] + }, + { + "id": 37758, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "sharp cheddar cheese", + "olive oil", + "salt", + "red bell pepper", + "ground pepper", + "fresh oregano", + "onions", + "yukon gold potatoes", + "garlic cloves" + ] + }, + { + "id": 29779, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "diced tomatoes", + "dried oregano", + "mozzarella cheese", + "grated parmesan cheese", + "spaghetti", + "sugar", + "ground black pepper", + "garlic", + "fresh basil", + "olive oil", + "dry red wine" + ] + }, + { + "id": 35210, + "cuisine": "greek", + "ingredients": [ + "water", + "dried chickpeas", + "oregano", + "ground black pepper", + "onions", + "olive oil", + "lemon juice", + "salt", + "dried parsley" + ] + }, + { + "id": 21977, + "cuisine": "filipino", + "ingredients": [ + "base", + "fish sauce", + "oil", + "mackerel", + "water" + ] + }, + { + "id": 40502, + "cuisine": "russian", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "vegetable oil", + "milk", + "butter", + "flour" + ] + }, + { + "id": 28650, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "cannellini beans", + "pitas", + "crushed red pepper", + "rosemary", + "extra-virgin olive oil", + "prosciutto", + "salted roasted almonds" + ] + }, + { + "id": 5854, + "cuisine": "italian", + "ingredients": [ + "reduced fat milk", + "large egg yolks", + "salt", + "honey", + "mint sprigs", + "nonfat dry milk", + "nonfat evaporated milk" + ] + }, + { + "id": 2730, + "cuisine": "italian", + "ingredients": [ + "cream of chicken soup", + "low-fat cream cheese", + "chicken breasts", + "low sodium chicken broth", + "pasta", + "zesty italian dressing" + ] + }, + { + "id": 32829, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "yukon gold potatoes", + "chicken", + "olive oil", + "paprika", + "minced garlic", + "lemon", + "ground black pepper", + "salt" + ] + }, + { + "id": 46197, + "cuisine": "italian", + "ingredients": [ + "spinach leaves", + "olive oil", + "salt", + "water", + "grated parmesan cheese", + "pinenuts", + "ground black pepper", + "oil", + "cherry tomatoes", + "fusilli" + ] + }, + { + "id": 32138, + "cuisine": "indian", + "ingredients": [ + "self rising flour", + "vegetable oil", + "cumin", + "tumeric", + "green onions", + "salt", + "flour", + "garlic", + "water", + "baking powder", + "onions" + ] + }, + { + "id": 5409, + "cuisine": "italian", + "ingredients": [ + "avocado", + "basil pesto sauce", + "mango", + "pitted black olives", + "penne pasta", + "tomatoes", + "grated parmesan cheese", + "fresh spinach", + "oil" + ] + }, + { + "id": 10220, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "yellow onion", + "pancetta", + "cannellini beans", + "salt", + "parmesan cheese", + "canned tomatoes", + "italian seasoning", + "pepper", + "parsley", + "penne pasta" + ] + }, + { + "id": 25023, + "cuisine": "mexican", + "ingredients": [ + "meat", + "processed cheese", + "cream cheese", + "green onions", + "milk", + "worcestershire sauce" + ] + }, + { + "id": 24059, + "cuisine": "filipino", + "ingredients": [ + "garlic powder", + "beansprouts", + "ground sausage", + "onions", + "soy sauce", + "carrots", + "vegetable oil", + "lumpia skins" + ] + }, + { + "id": 5496, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "salt", + "chicken", + "vegetable oil", + "fajita size flour tortillas", + "jalapeno chilies", + "salsa", + "bacon", + "cream cheese" + ] + }, + { + "id": 11766, + "cuisine": "italian", + "ingredients": [ + "pepper", + "cannellini beans", + "fresh parsley", + "chicken broth", + "parmesan cheese", + "salt", + "italian sausage", + "olive oil", + "crushed red pepper", + "plum tomatoes", + "fresh spinach", + "unsalted butter", + "garlic cloves" + ] + }, + { + "id": 44924, + "cuisine": "spanish", + "ingredients": [ + "baguette", + "salt", + "ground black pepper", + "diced tomatoes in juice", + "garlic", + "bay leaf", + "olive oil", + "green beans" + ] + }, + { + "id": 9233, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "jalapeno chilies", + "ground cumin", + "corn", + "cilantro leaves", + "kosher salt", + "garlic", + "avocado", + "lime", + "onions" + ] + }, + { + "id": 32482, + "cuisine": "spanish", + "ingredients": [ + "chicken stock", + "olive oil", + "fresh thyme", + "salt", + "flat leaf parsley", + "chorizo sausage", + "pancetta", + "hot red pepper flakes", + "ground black pepper", + "red pepper", + "squid", + "frozen peas", + "tomatoes", + "short-grain rice", + "dry white wine", + "green pepper", + "chicken thighs", + "clams", + "spanish onion", + "prawns", + "paprika", + "garlic cloves", + "saffron" + ] + }, + { + "id": 10910, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "diced tomatoes", + "ground cumin", + "garam masala", + "ground coriander", + "fresh cilantro", + "dried chickpeas", + "baby spinach leaves", + "ground black pepper", + "ground turmeric" + ] + }, + { + "id": 41367, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "flour tortillas", + "salt", + "black pepper", + "diced green chilies", + "butter", + "onions", + "chopped tomatoes", + "chili powder", + "all-purpose flour", + "milk", + "zucchini", + "garlic", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 43826, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "fresh ginger root", + "sweet potatoes", + "scallions", + "chopped cilantro fresh", + "lime", + "ground black pepper", + "extra-virgin olive oil", + "bay leaf", + "curry powder", + "garam masala", + "tamari almonds", + "garlic cloves", + "dried lentils", + "swiss chard", + "jalapeno chilies", + "vegetable broth", + "onions" + ] + }, + { + "id": 43385, + "cuisine": "italian", + "ingredients": [ + "warm water", + "vital wheat gluten", + "instant yeast", + "all-purpose flour", + "water", + "salt", + "eggs", + "raisins" + ] + }, + { + "id": 24643, + "cuisine": "italian", + "ingredients": [ + "cockles", + "dry white wine", + "flat leaf parsley", + "bottled clam juice", + "linguine", + "dried oregano", + "hot red pepper flakes", + "extra-virgin olive oil", + "onions", + "unsalted butter", + "garlic cloves" + ] + }, + { + "id": 3162, + "cuisine": "southern_us", + "ingredients": [ + "crawfish", + "butter", + "onions", + "salt and ground black pepper", + "diced tomatoes", + "minced garlic", + "condensed cream of mushroom soup", + "green bell pepper", + "processed cheese", + "cayenne pepper" + ] + }, + { + "id": 23011, + "cuisine": "japanese", + "ingredients": [ + "wakame", + "watercress", + "oil", + "spring onions", + "soba noodles", + "fresh lime juice", + "Japanese soy sauce", + "salt", + "beansprouts", + "vegetable oil", + "seaweed" + ] + }, + { + "id": 35785, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "cayenne pepper", + "seasoning salt", + "vegetable oil", + "milk", + "flour", + "garlic powder", + "broiler-fryers" + ] + }, + { + "id": 9579, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "boneless skinless chicken breasts", + "corn starch", + "black pepper", + "fresh ginger root", + "salt", + "white sugar", + "chicken broth", + "water", + "vegetable oil", + "bok choy", + "white wine", + "water chestnuts", + "fresh mushrooms", + "snow peas" + ] + }, + { + "id": 13685, + "cuisine": "filipino", + "ingredients": [ + "shrimp paste", + "salt", + "coconut milk", + "thai chile", + "oil", + "ground pork", + "coconut cream", + "onions", + "pepper", + "garlic", + "green beans" + ] + }, + { + "id": 20834, + "cuisine": "cajun_creole", + "ingredients": [ + "crushed tomatoes", + "boneless skinless chicken breasts", + "cayenne pepper", + "sausages", + "olive oil", + "worcestershire sauce", + "long-grain rice", + "fresh parsley", + "water", + "dijon mustard", + "beef broth", + "garlic cloves", + "onions", + "dried thyme", + "fully cooked ham", + "green pepper", + "uncook medium shrimp, peel and devein" + ] + }, + { + "id": 25172, + "cuisine": "italian", + "ingredients": [ + "finely chopped onion", + "extra-virgin olive oil", + "guanciale", + "pecorino romano cheese", + "bucatini", + "balsamic vinegar", + "garlic cloves", + "cherry tomatoes", + "peperoncino" + ] + }, + { + "id": 35862, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "onions", + "kosher salt", + "dry red wine", + "tomato juice", + "boneless skinless chicken breast halves", + "curry powder", + "chutney" + ] + }, + { + "id": 35204, + "cuisine": "italian", + "ingredients": [ + "eggs", + "pepper", + "broccoli florets", + "button mushrooms", + "red bell pepper", + "tomato sauce", + "lasagna noodles", + "butter", + "garlic", + "vidalia onion", + "parmesan cheese", + "ricotta cheese", + "extra-virgin olive oil", + "oregano", + "mozzarella cheese", + "zucchini", + "red pepper flakes", + "salt" + ] + }, + { + "id": 24405, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "fish sauce", + "lime juice", + "white vinegar", + "water", + "sugar", + "garlic cloves" + ] + }, + { + "id": 38832, + "cuisine": "russian", + "ingredients": [ + "ground cloves", + "unsalted butter", + "ground allspice", + "ground cinnamon", + "large egg yolks", + "lemon zest", + "large egg whites", + "semisweet chocolate", + "blanched almonds", + "sugar", + "almonds", + "salt" + ] + }, + { + "id": 5128, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "peeled prawns", + "garlic cloves", + "dark soy sauce", + "leaves", + "purple onion", + "frozen peas", + "cooked brown rice", + "vegetable oil", + "coriander", + "fish sauce", + "large eggs", + "chili sauce" + ] + }, + { + "id": 43921, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "salt", + "minced garlic", + "soy sauce", + "beef sirloin", + "ground black pepper" + ] + }, + { + "id": 8670, + "cuisine": "cajun_creole", + "ingredients": [ + "green onions", + "sausages", + "cornbread stuffing mix", + "chopped fresh thyme", + "rubbed sage", + "onions", + "andouille sausage", + "butter", + "low salt chicken broth", + "hot pepper sauce", + "chopped celery", + "red bell pepper" + ] + }, + { + "id": 8130, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken skinless thigh", + "sesame oil", + "corn starch", + "sugar", + "green onions", + "dry sherry", + "fresh ginger", + "worcestershire sauce", + "cashew nuts", + "soy sauce", + "corn oil", + "rice" + ] + }, + { + "id": 13043, + "cuisine": "italian", + "ingredients": [ + "chopped celery", + "onions", + "olive oil", + "flat leaf parsley", + "fresh basil", + "garlic cloves", + "plum tomatoes", + "tuna steaks", + "bay leaf" + ] + }, + { + "id": 7871, + "cuisine": "japanese", + "ingredients": [ + "tumeric", + "prawns", + "ginger", + "oil", + "clove", + "garam masala", + "cinnamon", + "salt", + "onions", + "shredded coconut", + "bay leaves", + "garlic", + "cardamom", + "red chili powder", + "coriander powder", + "cilantro", + "coconut cream" + ] + }, + { + "id": 28867, + "cuisine": "cajun_creole", + "ingredients": [ + "fillet red snapper", + "unsalted butter", + "fresh parsley", + "coars ground black pepper", + "dried thyme", + "fresh lemon juice", + "kosher salt", + "lemon wedge", + "dried basil", + "crushed red pepper" + ] + }, + { + "id": 42407, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "green onions", + "flour tortillas", + "monterey jack", + "unsalted butter", + "sour cream", + "chicken broth", + "flour", + "chicken" + ] + }, + { + "id": 24126, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "okra", + "bacon drippings" + ] + }, + { + "id": 20952, + "cuisine": "vietnamese", + "ingredients": [ + "bean threads", + "whole cloves", + "canned beef broth", + "romaine lettuce", + "flank steak", + "star anise", + "fish sauce", + "green onions", + "large garlic cloves", + "fresh ginger", + "lemon wedge", + "onions" + ] + }, + { + "id": 22630, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "grated parmesan cheese", + "fresh mushrooms", + "italian seasoning", + "ground black pepper", + "garlic", + "onions", + "dried basil", + "vegetable oil", + "fresh parsley", + "green bell pepper", + "egg noodles", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 42845, + "cuisine": "southern_us", + "ingredients": [ + "fresh rosemary", + "butter", + "salt", + "dried red chile peppers", + "garlic bulb", + "dry white wine", + "crushed red pepper", + "shrimp", + "bay leaves", + "white wine vinegar", + "lemon juice", + "rosemary sprigs", + "extra-virgin olive oil", + "lemon slices", + "dried oregano" + ] + }, + { + "id": 33425, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "jalapeno chilies", + "rice", + "thyme sprigs", + "oysters", + "peas", + "garlic cloves", + "onions", + "kosher salt", + "apple cider vinegar", + "scallions", + "bay leaf", + "celery ribs", + "unsalted butter", + "cayenne pepper", + "carrots" + ] + }, + { + "id": 34710, + "cuisine": "mexican", + "ingredients": [ + "tomato juice", + "salt", + "ice cubes", + "coarse salt", + "hot pepper sauce", + "beer", + "soy sauce", + "lemon" + ] + }, + { + "id": 49026, + "cuisine": "mexican", + "ingredients": [ + "cooked rice", + "enchilada sauce", + "corn", + "cumin", + "black beans", + "dried oregano", + "shredded cheese" + ] + }, + { + "id": 43595, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "ground black pepper", + "lime juice", + "cilantro leaves", + "kosher salt", + "leeks", + "eggplant", + "canola oil" + ] + }, + { + "id": 31353, + "cuisine": "indian", + "ingredients": [ + "eggs", + "whole milk", + "rosewater", + "sugar", + "all-purpose flour", + "saffron", + "semolina flour", + "baking powder", + "ghee", + "plain yogurt", + "cardamom pods" + ] + }, + { + "id": 21064, + "cuisine": "japanese", + "ingredients": [ + "chicken wings", + "salt", + "water", + "corn starch", + "soy sauce", + "oil", + "white vinegar", + "beaten eggs", + "white sugar" + ] + }, + { + "id": 3709, + "cuisine": "vietnamese", + "ingredients": [ + "Vietnamese coriander", + "scallions", + "soup", + "fresh ginger", + "beef steak", + "black pepper", + "salt" + ] + }, + { + "id": 27104, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "kosher salt", + "rolls", + "veal tongue", + "vegetable oil", + "onions", + "tomatoes", + "ground black pepper", + "liquid", + "fresh mexican cheese", + "black beans", + "crema", + "iceberg lettuce" + ] + }, + { + "id": 6801, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dried basil", + "bay leaves", + "ground pork", + "dried parsley", + "colby cheese", + "lasagna noodles", + "lean ground beef", + "shredded mozzarella cheese", + "dried oregano", + "tomato paste", + "cottage cheese", + "grated parmesan cheese", + "crushed garlic", + "onions", + "fresh tomatoes", + "ground black pepper", + "mushrooms", + "salt", + "white sugar" + ] + }, + { + "id": 35505, + "cuisine": "indian", + "ingredients": [ + "sugar", + "potatoes", + "long grain white rice", + "coconut", + "urad dal", + "kosher salt", + "cilantro", + "chana dal", + "ghee" + ] + }, + { + "id": 24780, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "garam masala", + "hot chili powder", + "garlic cloves", + "black pepper", + "chicken breasts", + "sea salt", + "onions", + "curry leaves", + "water", + "vegetable oil", + "cilantro leaves", + "ground turmeric", + "tomatoes", + "fresh ginger root", + "lemon", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 5320, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "sunflower oil", + "oyster sauce", + "red chili peppers", + "Shaoxing wine", + "rice", + "chicken stock", + "broccolini", + "cornflour", + "soy sauce", + "rump steak", + "chinese five-spice powder" + ] + }, + { + "id": 36424, + "cuisine": "japanese", + "ingredients": [ + "chicken stock", + "zucchini", + "vegetable oil", + "toasted sesame oil", + "green bell pepper", + "green onions", + "fresh green bean", + "eggs", + "shredded carrots", + "napa cabbage", + "soy sauce", + "cooked chicken", + "all-purpose flour" + ] + }, + { + "id": 35478, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "jalapeno chilies", + "Jose Cuervo Gold Tequila", + "minced garlic", + "extra-virgin olive oil", + "kosher salt", + "boneless skinless chicken breasts", + "ground black pepper", + "ground coriander" + ] + }, + { + "id": 49017, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "onions", + "water", + "salt", + "eggs", + "vegetable oil", + "milk", + "cornmeal" + ] + }, + { + "id": 10793, + "cuisine": "southern_us", + "ingredients": [ + "chuck roast", + "pepperoncini", + "butter", + "brown gravy mix", + "ranch dip mix" + ] + }, + { + "id": 39179, + "cuisine": "cajun_creole", + "ingredients": [ + "deli ham", + "croissants", + "poppy seeds", + "cheese slices", + "creole mustard", + "butter" + ] + }, + { + "id": 19824, + "cuisine": "indian", + "ingredients": [ + "sugar", + "ghee", + "almonds", + "milk", + "apples" + ] + }, + { + "id": 40537, + "cuisine": "italian", + "ingredients": [ + "golden raisins", + "salt", + "ground nutmeg", + "extra-virgin olive oil", + "mustard greens", + "escarole", + "ground black pepper", + "garlic" + ] + }, + { + "id": 40516, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "onion powder", + "oil", + "eggs", + "dried thyme", + "salt", + "heavy whipping cream", + "broiler-fryer chicken", + "creamy gravy", + "all-purpose flour", + "milk", + "paprika", + "rubbed sage" + ] + }, + { + "id": 19966, + "cuisine": "brazilian", + "ingredients": [ + "cooking spray", + "salt", + "garlic cloves", + "serrano chile", + "water", + "lime wedges", + "chopped onion", + "fresh lime juice", + "fish", + "brown sugar", + "peeled fresh ginger", + "grouper", + "carrots", + "basmati rice", + "peeled tomatoes", + "light coconut milk", + "beer", + "chopped cilantro fresh" + ] + }, + { + "id": 33002, + "cuisine": "southern_us", + "ingredients": [ + "turnip greens", + "sea salt", + "turnips", + "olive oil", + "onions", + "kale", + "freshly ground pepper", + "chicken broth", + "mustard greens" + ] + }, + { + "id": 1308, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "vegetable oil", + "chipotles in adobo", + "bone-in chicken breast halves", + "salt", + "tostada shells", + "garlic", + "onions", + "chicken bouillon granules", + "pepper", + "sour cream" + ] + }, + { + "id": 29788, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning", + "iceberg lettuce", + "tomatoes", + "onions", + "catalina dressing", + "ground beef", + "shredded cheddar cheese", + "doritos" + ] + }, + { + "id": 30488, + "cuisine": "chinese", + "ingredients": [ + "cilantro stems", + "scallions", + "sushi rice", + "ginger", + "water", + "thai chile", + "grapeseed oil" + ] + }, + { + "id": 5029, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "purple onion", + "tomatoes", + "Tabasco Pepper Sauce", + "cilantro leaves", + "avocado", + "lime", + "salt", + "red chili peppers", + "garlic" + ] + }, + { + "id": 22713, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garam masala", + "salt", + "cardamom", + "plantains", + "clove", + "water", + "cinnamon", + "oil", + "ground turmeric", + "cream", + "chili powder", + "green chilies", + "onions", + "garlic paste", + "coriander powder", + "cilantro leaves", + "bay leaf", + "ginger paste" + ] + }, + { + "id": 30810, + "cuisine": "mexican", + "ingredients": [ + "picante sauce", + "ground beef", + "chili powder", + "minced onion", + "chorizo sausage", + "pitted black olives", + "mexican style 4 cheese blend" + ] + }, + { + "id": 25517, + "cuisine": "japanese", + "ingredients": [ + "konbu", + "dried bonito flakes" + ] + }, + { + "id": 3086, + "cuisine": "moroccan", + "ingredients": [ + "ground red pepper", + "garlic cloves", + "chopped cilantro fresh", + "olive oil", + "salt", + "couscous", + "ground cinnamon", + "paprika", + "fresh lemon juice", + "ground cumin", + "cooking spray", + "grouper", + "fresh parsley" + ] + }, + { + "id": 18019, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "smoked sausage", + "onions", + "cinnamon", + "creole seasoning", + "oregano", + "bouillon cube", + "meat bones", + "coriander", + "red kidney beans", + "garlic", + "smoked paprika", + "cumin" + ] + }, + { + "id": 43969, + "cuisine": "chinese", + "ingredients": [ + "powdered sugar", + "instant yeast", + "liquid", + "unsalted butter", + "cake flour", + "milk", + "powdered milk", + "bread flour", + "granulated sugar", + "salt" + ] + }, + { + "id": 2862, + "cuisine": "mexican", + "ingredients": [ + "fish sauce", + "boneless beef short ribs", + "cilantro", + "ground black pepper", + "chili powder", + "ghee", + "kosher salt", + "bone broth", + "garlic cloves", + "tomato paste", + "radishes", + "tomato salsa", + "onions" + ] + }, + { + "id": 21476, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "white vinegar", + "canola mayonnaise", + "ground black pepper" + ] + }, + { + "id": 21135, + "cuisine": "spanish", + "ingredients": [ + "pork ribs", + "salt pork", + "olive oil", + "salt", + "black beans", + "garlic", + "onions", + "pepper", + "morcilla", + "chorizo sausage" + ] + }, + { + "id": 9941, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "salsa", + "ground cumin", + "eggs", + "jalapeno chilies", + "tortilla chips", + "garlic powder", + "green pepper", + "black pepper", + "chili powder", + "ground beef" + ] + }, + { + "id": 49303, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "mole paste", + "radishes", + "garlic", + "white onion", + "tortillas", + "lime wedges", + "cooked turkey", + "white hominy", + "vegetable oil", + "green cabbage", + "salsa verde", + "low sodium chicken broth", + "cilantro leaves" + ] + }, + { + "id": 11359, + "cuisine": "indian", + "ingredients": [ + "almonds", + "chili powder", + "green cardamom", + "cinnamon sticks", + "ginger paste", + "coconut", + "garam masala", + "mutton", + "curds", + "coriander", + "milk", + "coriander powder", + "salt", + "oil", + "ground turmeric", + "garlic paste", + "leaves", + "poppy seeds", + "green chilies", + "onions" + ] + }, + { + "id": 49212, + "cuisine": "moroccan", + "ingredients": [ + "chicken legs", + "dried apricot", + "ground coriander", + "almonds", + "garlic", + "ground turmeric", + "chicken broth", + "ale", + "salt", + "olive oil", + "ginger", + "onions" + ] + }, + { + "id": 38772, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "roasted red peppers", + "olive oil", + "provolone cheese", + "fresh leav spinach", + "rolls", + "avocado", + "smoked turkey breast" + ] + }, + { + "id": 25127, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "scallions", + "soy sauce", + "red pepper flakes", + "brown sugar", + "sesame oil", + "garlic cloves", + "water", + "firm tofu" + ] + }, + { + "id": 1522, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "unsalted butter", + "salt", + "eggs", + "buttermilk", + "orange zest", + "peaches", + "vanilla", + "turbinado", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 4677, + "cuisine": "japanese", + "ingredients": [ + "baby bok choy", + "mirin", + "rice vinegar", + "sliced green onions", + "low sodium soy sauce", + "honey", + "vegetable broth", + "dark sesame oil", + "sake", + "sesame seeds", + "crushed red pepper", + "garlic cloves", + "water", + "peeled fresh ginger", + "soba noodles" + ] + }, + { + "id": 46136, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "diced tomatoes", + "black beans", + "taco seasoning", + "cheddar cheese", + "tortilla chips", + "corn", + "ground meat" + ] + }, + { + "id": 18318, + "cuisine": "korean", + "ingredients": [ + "kimchi juice", + "sesame oil", + "oil", + "eggs", + "green onions", + "sauce", + "onions", + "low sodium soy sauce", + "pepper", + "salt", + "kimchi", + "cooked rice", + "shallots", + "Gochujang base" + ] + }, + { + "id": 19421, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "all-purpose flour", + "baking soda", + "buttermilk", + "yellow corn meal", + "dried sage", + "double-acting baking powder", + "unsalted butter", + "salt" + ] + }, + { + "id": 5671, + "cuisine": "spanish", + "ingredients": [ + "potatoes", + "eggs", + "oil", + "pepper", + "onions", + "salt" + ] + }, + { + "id": 24609, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "shallots", + "scallions", + "sugar", + "ground black pepper", + "top sirloin steak", + "fish sauce", + "peanuts", + "sesame oil", + "minced garlic", + "sweet soy sauce", + "salt" + ] + }, + { + "id": 7673, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "large eggs", + "sea salt", + "safflower oil", + "shredded cabbage", + "scallions", + "soy sauce", + "flour", + "shredded zucchini", + "Sriracha", + "sesame oil", + "toasted sesame seeds" + ] + }, + { + "id": 40394, + "cuisine": "italian", + "ingredients": [ + "lobster", + "shells", + "pepper", + "shellfish", + "chopped parsley", + "risotto", + "butter", + "salt", + "grated parmesan cheese", + "garlic", + "fish" + ] + }, + { + "id": 49564, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "finely chopped onion", + "fresh lemon juice", + "asparagus", + "leeks", + "water", + "large eggs", + "celery", + "chicken broth", + "unsalted butter", + "dill tips" + ] + }, + { + "id": 38143, + "cuisine": "southern_us", + "ingredients": [ + "tomato paste", + "bacon", + "boiling water", + "hot pepper sauce", + "onions", + "tomato sauce", + "salt", + "long grain white rice", + "worcestershire sauce", + "white sugar" + ] + }, + { + "id": 13644, + "cuisine": "japanese", + "ingredients": [ + "silken tofu", + "soba noodles", + "buckwheat", + "enokitake", + "konbu", + "soy sauce", + "bonito flakes", + "buttercup squash", + "water", + "scallions" + ] + }, + { + "id": 35496, + "cuisine": "indian", + "ingredients": [ + "sea salt", + "lemon juice", + "ground cumin", + "peanuts", + "cilantro leaves", + "chaat masala", + "tomatoes", + "salt", + "onions", + "chili powder", + "green chilies", + "ground turmeric" + ] + }, + { + "id": 17134, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "sweet paprika", + "lemon juice", + "plain yogurt", + "fenugreek", + "mustard oil", + "ground cumin", + "chile paste", + "pork loin", + "garlic cloves", + "bread", + "garam masala", + "ground coriander", + "cucumber" + ] + }, + { + "id": 2643, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "red pepper flakes", + "fresh parsley", + "pepper", + "garlic", + "chicken broth", + "dry white wine", + "salt", + "boneless chop pork", + "extra-virgin olive oil" + ] + }, + { + "id": 13129, + "cuisine": "chinese", + "ingredients": [ + "honey", + "whole chicken", + "soy sauce", + "dry sherry", + "fresh ginger root", + "garlic cloves", + "orange", + "chinese five-spice powder" + ] + }, + { + "id": 39206, + "cuisine": "british", + "ingredients": [ + "mayonaise", + "mango chutney", + "smoked turkey breast", + "fresh lemon juice", + "stilton", + "fresh parsley leaves", + "rocket leaves", + "french bread" + ] + }, + { + "id": 3872, + "cuisine": "mexican", + "ingredients": [ + "large garlic cloves", + "corn tortillas", + "skirt steak", + "ground black pepper", + "salt", + "chipotle chile powder", + "dried oregano", + "cooking spray", + "red bell pepper", + "onions", + "canola oil", + "brown sugar", + "reduced-fat sour cream", + "fresh lime juice", + "plum tomatoes" + ] + }, + { + "id": 49656, + "cuisine": "chinese", + "ingredients": [ + "fat free less sodium chicken broth", + "green onions", + "arborio rice", + "water", + "salt", + "dry roasted peanuts", + "bacon slices", + "sushi rice", + "peeled fresh ginger" + ] + }, + { + "id": 47420, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "finely chopped onion", + "salt", + "radicchio", + "low sodium chicken broth", + "water", + "parmigiano reggiano cheese", + "California bay leaves", + "unsalted butter", + "dry red wine" + ] + }, + { + "id": 27105, + "cuisine": "russian", + "ingredients": [ + "warm water", + "large eggs", + "active dry yeast", + "all purpose unbleached flour", + "mozzarella cheese", + "havarti cheese", + "unsalted butter", + "salt" + ] + }, + { + "id": 22361, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "red pepper", + "pinto beans", + "caster sugar", + "chili powder", + "green pepper", + "dried oregano", + "zucchini", + "salt", + "onions", + "minced garlic", + "red wine vinegar", + "sweet corn" + ] + }, + { + "id": 43493, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "whole wheat tortillas", + "avocado", + "chipotle", + "hot sauce", + "nutritional yeast", + "salsa", + "lime", + "shredded carrots" + ] + }, + { + "id": 19650, + "cuisine": "korean", + "ingredients": [ + "green cabbage", + "water", + "sesame seeds", + "ground red pepper", + "salt", + "sugar", + "honey", + "cooking spray", + "baking powder", + "dark sesame oil", + "minced garlic", + "fresh ginger", + "green onions", + "dry sherry", + "canola oil", + "low sodium soy sauce", + "large egg whites", + "ground black pepper", + "ground sirloin", + "all-purpose flour" + ] + }, + { + "id": 5275, + "cuisine": "spanish", + "ingredients": [ + "manchego cheese", + "fresh parsley", + "black olives", + "pepper", + "anchovy fillets", + "extra-virgin olive oil" + ] + }, + { + "id": 28660, + "cuisine": "southern_us", + "ingredients": [ + "cherry tomatoes", + "all-purpose flour", + "green onions", + "ground allspice", + "clam juice", + "okra", + "smoked bacon", + "cajun seasoning", + "shrimp" + ] + }, + { + "id": 29874, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "chopped fresh thyme", + "salt", + "black truffle oil", + "cracked black pepper", + "active dry yeast", + "extra-virgin olive oil", + "water", + "sea salt", + "bread flour" + ] + }, + { + "id": 33228, + "cuisine": "russian", + "ingredients": [ + "salt", + "large eggs", + "cake flour", + "water", + "all-purpose flour" + ] + }, + { + "id": 49421, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "basil leaves", + "mozzarella cheese", + "pizza sauce", + "ground black pepper", + "pepperoni" + ] + }, + { + "id": 47925, + "cuisine": "vietnamese", + "ingredients": [ + "boneless beef short ribs", + "garlic", + "paprika", + "shallots", + "ginger" + ] + }, + { + "id": 20945, + "cuisine": "spanish", + "ingredients": [ + "fresh oregano leaves", + "vegetable broth", + "fresh basil leaves", + "green bell pepper", + "pepper", + "lemon juice", + "fresh marjoram", + "balsamic vinegar", + "cucumber", + "tomatoes", + "white onion", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 6368, + "cuisine": "greek", + "ingredients": [ + "fresh spinach", + "diced tomatoes", + "fresh parsley", + "balsamic vinegar", + "fresh mushrooms", + "fresh basil", + "red wine vinegar", + "feta cheese crumbles", + "sliced black olives", + "extra-virgin olive oil", + "spaghetti" + ] + }, + { + "id": 1724, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "chilegarlic sauce", + "green onions", + "shoepeg corn", + "mayonaise", + "lime", + "jalapeno chilies", + "yellow corn", + "sour cream", + "shredded cheddar cheese", + "Mexican cheese blend", + "diced tomatoes", + "cream cheese", + "white corn", + "taco seasoning mix", + "cooking spray", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 45522, + "cuisine": "japanese", + "ingredients": [ + "ground pepper", + "cilantro", + "scallions", + "seedless cucumber", + "tahini", + "peanut butter", + "cashew nuts", + "soy sauce", + "chili paste", + "rice vinegar", + "garlic cloves", + "fresh ginger", + "sesame oil", + "soba noodles" + ] + }, + { + "id": 3236, + "cuisine": "southern_us", + "ingredients": [ + "whipped cream", + "vanilla instant pudding", + "bananas", + "whipping cream", + "cold water", + "turkey", + "Nilla Wafers", + "condensed milk" + ] + }, + { + "id": 513, + "cuisine": "thai", + "ingredients": [ + "catfish fillets", + "roasted rice powder", + "kaffir lime leaves", + "banana leaves", + "chicken stock", + "vegetable oil", + "nam pla", + "Thai red curry paste" + ] + }, + { + "id": 8226, + "cuisine": "chinese", + "ingredients": [ + "chicken bouillon granules", + "water", + "garlic", + "ground cinnamon", + "pork tenderloin", + "lemon juice", + "ground ginger", + "honey", + "salt", + "soy sauce", + "dry sherry", + "corn starch" + ] + }, + { + "id": 23502, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "bay leaves", + "garlic cloves", + "lemongrass", + "salt", + "chicken", + "soy sauce", + "calamansi juice", + "onions", + "fish sauce", + "ground black pepper", + "oil" + ] + }, + { + "id": 722, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "lemon", + "catfish fillets", + "granulated sugar", + "cayenne pepper", + "creole mustard", + "unsalted butter", + "paprika", + "kosher salt", + "vegetable oil", + "dri leav thyme" + ] + }, + { + "id": 5731, + "cuisine": "mexican", + "ingredients": [ + "white hominy", + "lime wedges", + "cilantro", + "pepper", + "radishes", + "tomatillos", + "poblano chiles", + "chicken stock", + "boneless chicken breast", + "vegetable oil", + "salt", + "water", + "jalapeno chilies", + "large garlic cloves", + "onions" + ] + }, + { + "id": 7424, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "chili powder", + "chopped cilantro fresh", + "soy sauce", + "flour tortillas", + "frozen corn", + "zucchini", + "purple onion", + "shredded Monterey Jack cheese", + "olive oil", + "worcestershire sauce", + "large shrimp" + ] + }, + { + "id": 10229, + "cuisine": "southern_us", + "ingredients": [ + "saltines", + "cooking oil", + "eggs", + "chicken breasts" + ] + }, + { + "id": 18106, + "cuisine": "french", + "ingredients": [ + "cold water", + "unflavored gelatin", + "fresh chives", + "chopped fresh thyme", + "shelled pistachios", + "black peppercorns", + "picholine olives", + "leeks", + "garlic", + "thyme sprigs", + "Madeira", + "black pepper", + "shallots", + "salt", + "fennel seeds", + "parsley sprigs", + "large egg whites", + "rabbit", + "carrots" + ] + }, + { + "id": 15388, + "cuisine": "indian", + "ingredients": [ + "chicken breast halves", + "gingerroot", + "fresh lime juice", + "ground red pepper", + "salt", + "couscous", + "black pepper", + "chicken drumsticks", + "ground coriander", + "chicken thighs", + "nonfat yogurt", + "paprika", + "garlic cloves", + "ground turmeric" + ] + }, + { + "id": 14200, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "sugar", + "cinnamon sugar", + "peaches", + "butter" + ] + }, + { + "id": 46919, + "cuisine": "indian", + "ingredients": [ + "melted butter", + "garlic", + "yeast", + "kosher salt", + "all-purpose flour", + "warm water", + "salt", + "cilantro", + "greek yogurt" + ] + }, + { + "id": 43026, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "pepper", + "soya bean", + "whole kernel corn, drain", + "italian seasoning", + "green olives", + "olive oil", + "diced tomatoes", + "onions", + "tomatoes", + "dried basil", + "red wine", + "okra", + "pitted black olives", + "grated parmesan cheese", + "salt", + "dried oregano" + ] + }, + { + "id": 33284, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "white wine vinegar", + "dried oregano", + "clove", + "chili powder", + "pork shoulder", + "olive oil", + "salt", + "ground cumin", + "brown sugar", + "lime wedges", + "onions" + ] + }, + { + "id": 26789, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "pepper", + "cheese", + "fresh lime juice", + "tomatoes", + "cracked black pepper", + "garlic cloves", + "baguette", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 260, + "cuisine": "thai", + "ingredients": [ + "garlic", + "fresh ginger root", + "Thai fish sauce", + "flank steak", + "toasted sesame oil", + "chili sauce" + ] + }, + { + "id": 21760, + "cuisine": "japanese", + "ingredients": [ + "lemon twists", + "ice", + "crystallized ginger", + "sake", + "ginger ale", + "peeled fresh ginger" + ] + }, + { + "id": 43153, + "cuisine": "greek", + "ingredients": [ + "purple onion", + "plain yogurt", + "cucumber", + "pepper", + "chopped garlic", + "mint", + "salt" + ] + }, + { + "id": 25757, + "cuisine": "indian", + "ingredients": [ + "water", + "herbs", + "coconut milk", + "tumeric", + "curry powder", + "chili powder", + "curry paste", + "sugar", + "lime juice", + "salt", + "black pepper", + "cayenne", + "lentils" + ] + }, + { + "id": 12658, + "cuisine": "italian", + "ingredients": [ + "pepper", + "cooked chicken", + "milk", + "spaghetti", + "shredded cheddar cheese", + "salt", + "condensed cream of chicken soup", + "pimentos" + ] + }, + { + "id": 22395, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "bay leaves", + "onions", + "garlic powder", + "boneless beef chuck roast", + "tomato sauce", + "chili powder", + "ground black pepper", + "salt" + ] + }, + { + "id": 20596, + "cuisine": "italian", + "ingredients": [ + "brown gravy mix", + "beef stock cubes", + "dried oregano", + "boneless skinless turkey breasts", + "garlic", + "green bell pepper", + "worcestershire sauce", + "white vinegar", + "water", + "onions" + ] + }, + { + "id": 30630, + "cuisine": "italian", + "ingredients": [ + "sambuca", + "vanilla ice cream", + "mixed dried fruit", + "biscotti" + ] + }, + { + "id": 40447, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "salt", + "minced garlic", + "green onions", + "cider vinegar", + "golden raisins", + "peeled fresh ginger", + "nectarines" + ] + }, + { + "id": 27833, + "cuisine": "spanish", + "ingredients": [ + "beans", + "bay leaf", + "saffron threads", + "salt pork", + "sausage casings", + "sausages", + "water", + "serrano ham" + ] + }, + { + "id": 29051, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "orzo", + "shrimp", + "feta cheese", + "fresh oregano", + "olive oil", + "crushed red pepper", + "onions", + "fennel bulb", + "fresh lemon juice" + ] + }, + { + "id": 27524, + "cuisine": "korean", + "ingredients": [ + "sugar", + "green onions", + "dried shiitake mushrooms", + "cucumber", + "mirin", + "sesame oil", + "carrots", + "soy sauce", + "marinade", + "garlic cloves", + "onions", + "rib eye steaks", + "rice cakes", + "vegetable oil", + "ground white pepper" + ] + }, + { + "id": 7885, + "cuisine": "jamaican", + "ingredients": [ + "bread crumbs", + "dijon mustard", + "all-purpose flour", + "milk", + "butter", + "mozzarella cheese", + "grated parmesan cheese", + "elbow macaroni", + "cheddar cheese", + "ground nutmeg", + "salt" + ] + }, + { + "id": 23397, + "cuisine": "chinese", + "ingredients": [ + "cider vinegar", + "sherry", + "corn starch", + "soy sauce", + "extra firm tofu", + "garlic cloves", + "fresh ginger", + "maple syrup", + "water", + "vegetable oil", + "fermented black beans" + ] + }, + { + "id": 37711, + "cuisine": "indian", + "ingredients": [ + "reduced fat coconut milk", + "mint leaves", + "yellow curry paste", + "naan", + "lime", + "sunflower oil", + "mustard seeds", + "lemongrass", + "vegetable stock", + "cardamom pods", + "pumpkin", + "chickpeas", + "onions" + ] + }, + { + "id": 193, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "chuck roast", + "onions", + "garlic powder", + "beef broth", + "tomato paste", + "chili powder", + "cumin" + ] + }, + { + "id": 28990, + "cuisine": "southern_us", + "ingredients": [ + "bay leaves", + "fresh lemon juice", + "hot sauce", + "salt", + "shrimp", + "shrimp and crab boil seasoning", + "creole seasoning" + ] + }, + { + "id": 28868, + "cuisine": "russian", + "ingredients": [ + "boiled eggs", + "salt", + "mayonaise", + "potatoes", + "ham", + "fresh dill", + "pepper", + "sweet peas", + "pickles", + "green onions", + "carrots" + ] + }, + { + "id": 29849, + "cuisine": "southern_us", + "ingredients": [ + "lemonade concentrate" + ] + }, + { + "id": 34292, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "broccoli rabe", + "gnocchi", + "parmesan cheese", + "garlic cloves", + "crushed red pepper" + ] + }, + { + "id": 35112, + "cuisine": "british", + "ingredients": [ + "potatoes", + "ground beef", + "rutabaga", + "salt", + "pie crust", + "butter", + "onions", + "pepper", + "carrots" + ] + }, + { + "id": 42177, + "cuisine": "japanese", + "ingredients": [ + "salt", + "soy sauce", + "persian cucumber", + "sugar", + "rice vinegar", + "sesame seeds" + ] + }, + { + "id": 37883, + "cuisine": "french", + "ingredients": [ + "water", + "crème fraîche", + "fennel seeds", + "zucchini", + "onions", + "olive oil", + "garlic cloves", + "pernod", + "fresh thyme" + ] + }, + { + "id": 19657, + "cuisine": "korean", + "ingredients": [ + "white onion", + "sesame oil", + "spinach", + "shiitake", + "carrots", + "honey", + "extra-virgin olive oil", + "soy sauce", + "zucchini", + "toasted sesame seeds" + ] + }, + { + "id": 6751, + "cuisine": "mexican", + "ingredients": [ + "large egg whites", + "salt", + "green chile", + "ground black pepper", + "large egg yolks", + "all-purpose flour", + "cheddar cheese", + "vegetable shortening" + ] + }, + { + "id": 28140, + "cuisine": "moroccan", + "ingredients": [ + "ground cloves", + "cayenne pepper", + "carrots", + "chile powder", + "olive oil", + "ground allspice", + "ground cumin", + "ground ginger", + "ground black pepper", + "sweet paprika", + "ground cinnamon", + "salt", + "ground coriander" + ] + }, + { + "id": 15013, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "asparagus", + "broccoli", + "snow peas", + "freshly grated parmesan", + "zucchini", + "fresh basil leaves", + "plum tomatoes", + "olive oil", + "unsalted butter", + "garlic cloves", + "petits pois", + "chicken broth", + "prosciutto", + "heavy cream", + "spaghetti" + ] + }, + { + "id": 8776, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "onions", + "salt", + "waxy potatoes", + "large eggs" + ] + }, + { + "id": 7890, + "cuisine": "moroccan", + "ingredients": [ + "grated orange peel", + "fresh orange juice", + "garlic cloves", + "ground cumin", + "garbanzo beans", + "purple onion", + "low salt chicken broth", + "ground cinnamon", + "peeled fresh ginger", + "ground coriander", + "chopped cilantro fresh", + "olive oil", + "dry red wine", + "leg of lamb" + ] + }, + { + "id": 14359, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "palm sugar", + "red curry paste", + "lemongrass", + "ginger", + "shrimp", + "jasmine rice", + "cilantro", + "scallions", + "lime", + "garlic", + "red bell pepper" + ] + }, + { + "id": 7623, + "cuisine": "japanese", + "ingredients": [ + "water", + "napa cabbage leaves", + "scallions", + "toasted sesame oil", + "sake", + "jalapeno chilies", + "ginger", + "konbu", + "chile sauce", + "chicken legs", + "shiitake", + "napa cabbage", + "garlic cloves", + "onions", + "soy sauce", + "shell-on shrimp", + "firm tofu", + "carrots", + "soba" + ] + }, + { + "id": 42810, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "salt", + "pie dough", + "reduced fat milk", + "sugar", + "large eggs", + "peaches", + "all-purpose flour" + ] + }, + { + "id": 1857, + "cuisine": "mexican", + "ingredients": [ + "corn", + "jalapeno chilies", + "red pepper flakes", + "sour cream", + "seasoning", + "tortillas", + "green onions", + "enchilada sauce", + "taco seasoning mix", + "cooking spray", + "salsa", + "black beans", + "pepper jack", + "cooked chicken", + "Mexican cheese" + ] + }, + { + "id": 47779, + "cuisine": "italian", + "ingredients": [ + "garbanzo beans", + "chopped fresh sage", + "baby spinach leaves", + "extra-virgin olive oil", + "low salt chicken broth", + "fresh rosemary", + "grated parmesan cheese", + "garlic cloves", + "olive oil", + "white beans", + "onions" + ] + }, + { + "id": 7940, + "cuisine": "indian", + "ingredients": [ + "smoked sea salt", + "scallions", + "cauliflower", + "vegetable oil", + "green beans", + "tumeric", + "red pepper flakes", + "brown mustard seeds", + "hot water" + ] + }, + { + "id": 16568, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "rigatoni", + "shredded cheddar cheese" + ] + }, + { + "id": 4741, + "cuisine": "mexican", + "ingredients": [ + "light brown sugar", + "cayenne", + "whole milk", + "vanilla extract", + "olive oil", + "large eggs", + "balsamic vinegar", + "unsweetened cocoa powder", + "powdered sugar", + "granulated sugar", + "vegetable oil", + "salt", + "baking soda", + "flour", + "cinnamon" + ] + }, + { + "id": 6251, + "cuisine": "chinese", + "ingredients": [ + "evaporated milk", + "eggs", + "white sugar", + "tart shells", + "water" + ] + }, + { + "id": 8655, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "sea salt", + "water", + "Belgian endive", + "unsalted butter", + "sugar" + ] + }, + { + "id": 3174, + "cuisine": "vietnamese", + "ingredients": [ + "mung beans", + "sugar", + "glutinous rice", + "sesame", + "salt" + ] + }, + { + "id": 48924, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "puff pastry sheets", + "frozen stir fry vegetable blend", + "eggs" + ] + }, + { + "id": 23338, + "cuisine": "french", + "ingredients": [ + "large eggs", + "parsley", + "ham", + "mustard", + "green onions", + "low-fat mayonnaise", + "white bread", + "cooking spray", + "chopped fresh thyme", + "ground black pepper", + "fresh thyme leaves", + "salt" + ] + }, + { + "id": 40749, + "cuisine": "chinese", + "ingredients": [ + "mushrooms", + "garlic cloves", + "canola oil", + "ground pork", + "onions", + "sea salt", + "carrots", + "chicken", + "eggroll wrappers", + "cabbage" + ] + }, + { + "id": 24734, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "ground coriander", + "ground cumin", + "tumeric", + "garlic", + "ginger root", + "tomatoes", + "mustard greens", + "fresh lemon juice", + "olive oil", + "salt", + "onions" + ] + }, + { + "id": 27892, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "salt", + "seasoning", + "jamaican jerk marinade", + "coconut milk", + "water", + "long-grain rice", + "black beans", + "boneless chicken breast" + ] + }, + { + "id": 14796, + "cuisine": "indian", + "ingredients": [ + "spinach", + "chili powder", + "ground cumin", + "red lentils", + "black pepper", + "ground coriander", + "tumeric", + "vegetable stock", + "ground ginger", + "fresh coriander", + "coconut milk" + ] + }, + { + "id": 28284, + "cuisine": "italian", + "ingredients": [ + "marinade", + "olive oil", + "pepper", + "salt", + "chicken breasts" + ] + }, + { + "id": 34491, + "cuisine": "french", + "ingredients": [ + "fresh dill", + "russet potatoes", + "half & half", + "mcintosh apples", + "black pepper", + "butter", + "chicken broth", + "leeks", + "salt" + ] + }, + { + "id": 46883, + "cuisine": "irish", + "ingredients": [ + "sugar", + "maple syrup", + "salted butter", + "sweetened condensed milk", + "bittersweet chocolate chips", + "all-purpose flour", + "sea salt" + ] + }, + { + "id": 21192, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "dried thyme", + "purple onion", + "black pepper", + "cooking spray", + "ground allspice", + "boneless chicken skinless thigh", + "jalapeno chilies", + "salt", + "low sodium soy sauce", + "cider vinegar", + "ground red pepper" + ] + }, + { + "id": 18488, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "green onions", + "yellow onion", + "roasted cashews", + "soy sauce", + "vegetable oil", + "dark soy sauce", + "red chili peppers", + "boneless skinless chicken breasts", + "fish sauce", + "water", + "garlic" + ] + }, + { + "id": 2832, + "cuisine": "vietnamese", + "ingredients": [ + "honey", + "garlic", + "asparagus", + "toasted sesame oil", + "olive oil", + "scallions", + "soy sauce", + "boneless skinless chicken breasts", + "toasted sesame seeds" + ] + }, + { + "id": 23231, + "cuisine": "russian", + "ingredients": [ + "celery ribs", + "cider vinegar", + "potatoes", + "beets", + "onions", + "tomato purée", + "chopped tomatoes", + "butter", + "sour cream", + "caraway seeds", + "honey", + "vegetable stock", + "carrots", + "black pepper", + "red cabbage", + "salt", + "dill weed" + ] + }, + { + "id": 37981, + "cuisine": "korean", + "ingredients": [ + "stock", + "rice cakes", + "chicken", + "beef", + "scallions", + "pork", + "firm tofu", + "eggs", + "mirin", + "kimchi" + ] + }, + { + "id": 42742, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "onions", + "butter", + "olive oil", + "Italian bread", + "green onions", + "gorgonzola" + ] + }, + { + "id": 21568, + "cuisine": "vietnamese", + "ingredients": [ + "minced garlic", + "nuoc mam", + "pepper", + "fresh green bean", + "soy sauce", + "vegetable oil", + "yellow onion", + "tomatoes", + "water", + "salt" + ] + }, + { + "id": 12202, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "peeled fresh ginger", + "red curry paste", + "canola oil", + "white onion", + "salt", + "scallions", + "chicken stock", + "basil", + "freshly ground pepper", + "water", + "cilantro leaves", + "carrots" + ] + }, + { + "id": 39343, + "cuisine": "french", + "ingredients": [ + "dry vermouth", + "dijon mustard", + "roasting chickens", + "fat free less sodium chicken broth", + "salt", + "black pepper", + "chopped fresh thyme", + "garlic cloves", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 896, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "large eggs", + "all-purpose flour", + "zucchini", + "baking powder", + "feta cheese", + "chives", + "fresh mint", + "curly parsley", + "lemon zest", + "red pepper flakes" + ] + }, + { + "id": 21767, + "cuisine": "spanish", + "ingredients": [ + "spinach", + "ground black pepper", + "chickpeas", + "ham hock", + "saffron threads", + "olive oil", + "dried salted codfish", + "smoked paprika", + "onions", + "cooked ham", + "garlic", + "cumin seed", + "bay leaf", + "eggs", + "sherry vinegar", + "salt", + "country bread" + ] + }, + { + "id": 43582, + "cuisine": "spanish", + "ingredients": [ + "chorizo", + "lemon wedge", + "salt", + "chicken broth", + "short-grain rice", + "paprika", + "chicken", + "saffron threads", + "olive oil", + "diced tomatoes", + "onions", + "green bell pepper", + "ground black pepper", + "green peas" + ] + }, + { + "id": 31814, + "cuisine": "mexican", + "ingredients": [ + "frozen whole kernel corn", + "reduced-fat sour cream", + "cooking spray", + "reduced fat cheddar cheese", + "boneless skinless chicken breasts", + "flour tortillas", + "salsa" + ] + }, + { + "id": 1469, + "cuisine": "italian", + "ingredients": [ + "genoa salami", + "water packed artichoke hearts", + "feta cheese crumbles", + "dried basil", + "garlic cloves", + "ripe olives", + "baguette", + "baby spinach", + "roast red peppers, drain", + "olive oil", + "lemon juice" + ] + }, + { + "id": 1738, + "cuisine": "mexican", + "ingredients": [ + "white corn tortillas", + "chili powder", + "iceberg lettuce", + "olive oil", + "chipotle chile powder", + "sugar", + "salt", + "ground cumin", + "avocado", + "salsa verde", + "large shrimp" + ] + }, + { + "id": 37596, + "cuisine": "italian", + "ingredients": [ + "radicchio", + "salt", + "sugar", + "white wine vinegar", + "anchovy fillets", + "olive oil", + "purple onion", + "flat leaf parsley", + "large garlic cloves", + "chickpeas" + ] + }, + { + "id": 2056, + "cuisine": "mexican", + "ingredients": [ + "grilled chicken breasts", + "Mexican cheese blend", + "tostada shells", + "sour cream", + "romaine lettuce", + "salsa", + "refried beans" + ] + }, + { + "id": 4298, + "cuisine": "italian", + "ingredients": [ + "pepper jack", + "salad dressing", + "grated parmesan cheese", + "zucchini", + "shredded cheddar cheese", + "italian style seasoning" + ] + }, + { + "id": 29832, + "cuisine": "mexican", + "ingredients": [ + "pepper jack", + "vegetable oil", + "won ton wrappers" + ] + }, + { + "id": 24575, + "cuisine": "russian", + "ingredients": [ + "warm water", + "whole wheat flour", + "crème fraîche", + "eggs", + "milk", + "vegetable oil", + "all-purpose flour", + "sugar", + "active dry yeast", + "salt", + "smoked salmon", + "fresh chives", + "unsalted butter", + "buckwheat flour" + ] + }, + { + "id": 19408, + "cuisine": "indian", + "ingredients": [ + "water", + "shallots", + "cardamom pods", + "boneless skinless chicken breast halves", + "clove", + "fresh ginger root", + "garlic", + "coconut milk", + "olive oil", + "star anise", + "cinnamon sticks", + "fresh curry leaves", + "tamarind juice", + "salt", + "curry paste" + ] + }, + { + "id": 29459, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "apple cider vinegar", + "ham", + "black-eyed peas", + "crushed red pepper", + "sweet onion", + "vegetable broth", + "dijon mustard", + "dark brown sugar" + ] + }, + { + "id": 32792, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless chicken thighs", + "okra", + "plum tomatoes", + "green bell pepper", + "vegetable oil", + "garlic cloves", + "andouille sausage", + "creole seasoning", + "onions", + "chicken broth", + "green onions", + "long-grain rice" + ] + }, + { + "id": 25087, + "cuisine": "mexican", + "ingredients": [ + "Philadelphia Cream Cheese", + "Velveeta", + "ground cumin", + "tomatoes", + "tortilla chips", + "black beans" + ] + }, + { + "id": 15710, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "anchovy fillets", + "dried thyme", + "salt", + "onions", + "olive oil", + "all-purpose flour", + "tomato paste", + "ice water", + "garlic cloves" + ] + }, + { + "id": 5827, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "cilantro", + "onions", + "avocado", + "jalapeno chilies", + "garlic cloves", + "water", + "salt", + "tomatoes", + "tomatillos", + "chipotle peppers" + ] + }, + { + "id": 43751, + "cuisine": "indian", + "ingredients": [ + "mayonaise", + "cilantro leaves", + "shallots", + "peeled fresh ginger", + "fresh lemon juice", + "yukon gold potatoes" + ] + }, + { + "id": 11279, + "cuisine": "italian", + "ingredients": [ + "pepper", + "red wine vinegar", + "lemon juice", + "chicken legs", + "olive oil", + "anchovy fillets", + "green olives", + "dry white wine", + "garlic cloves", + "water", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 33182, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "salt", + "potatoes", + "chorizo sausage", + "large eggs", + "onions", + "green olives", + "paprika" + ] + }, + { + "id": 41452, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "peeled fresh ginger", + "sugar", + "anjou pears", + "light corn syrup", + "unsalted butter", + "whipped cream", + "water", + "frozen pastry puff sheets" + ] + }, + { + "id": 23771, + "cuisine": "mexican", + "ingredients": [ + "citrus", + "cole slaw mix", + "olive oil", + "shrimp", + "avocado", + "red pepper", + "flour tortillas", + "yellow peppers" + ] + }, + { + "id": 20457, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "fine sea salt", + "lime juice", + "chopped cilantro", + "pepper", + "purple onion", + "deveined shrimp", + "mango" + ] + }, + { + "id": 31335, + "cuisine": "brazilian", + "ingredients": [ + "black turtle beans", + "parsley", + "beef tongue", + "onions", + "pig", + "pork ribs", + "salt", + "ham hock", + "chorizo sausage", + "smoked bacon", + "vegetable oil", + "garlic cloves", + "cumin", + "pepper", + "dried beef", + "beef sirloin", + "bay leaf" + ] + }, + { + "id": 7754, + "cuisine": "french", + "ingredients": [ + "pure olive oil", + "fennel bulb", + "white wine vinegar", + "small red potato", + "ground black pepper", + "extra-virgin olive oil", + "oil", + "fresh tuna steaks", + "kosher salt", + "dijon mustard", + "purple onion", + "green beans", + "baby artichokes", + "vine ripened tomatoes", + "vinaigrette", + "arugula" + ] + }, + { + "id": 4664, + "cuisine": "irish", + "ingredients": [ + "eggs", + "oil", + "salt", + "milk", + "flour" + ] + }, + { + "id": 27253, + "cuisine": "indian", + "ingredients": [ + "clove", + "garam masala", + "kasuri methi", + "oil", + "ghee", + "ground ginger", + "chili powder", + "curds", + "cinnamon sticks", + "ground turmeric", + "fennel seeds", + "coriander powder", + "salt", + "cardamom", + "onions", + "tomatoes", + "spices", + "cumin seed", + "bay leaf", + "baby potatoes" + ] + }, + { + "id": 11931, + "cuisine": "french", + "ingredients": [ + "fresh oregano leaves", + "calamata olives", + "fresh thyme leaves", + "all-purpose flour", + "tomatoes", + "olive oil", + "shredded swiss cheese", + "garlic", + "tomato paste", + "pepper", + "large eggs", + "butter", + "anchovy fillets", + "fresh marjoram", + "dijon mustard", + "shallots", + "salt" + ] + }, + { + "id": 18214, + "cuisine": "italian", + "ingredients": [ + "butter", + "peaches", + "bittersweet chocolate", + "brown sugar", + "Amaretti Cookies", + "cooking spray" + ] + }, + { + "id": 16444, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "cilantro leaves", + "lemon juice", + "whole milk yoghurt", + "ground coriander", + "ground cumin", + "fresh ginger", + "cardamom pods", + "chicken", + "black peppercorns", + "sea salt", + "garlic cloves" + ] + }, + { + "id": 35884, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "kosher salt", + "chopped cilantro fresh", + "tomatoes", + "tortilla chips", + "avocado", + "jalapeno chilies", + "white onion", + "fresh lime juice" + ] + }, + { + "id": 21565, + "cuisine": "italian", + "ingredients": [ + "sweet onion", + "ground black pepper", + "baking potatoes", + "large egg whites", + "chopped fresh chives", + "non-fat sour cream", + "fresh parmesan cheese", + "cooking spray", + "salt", + "dried thyme", + "large eggs", + "bacon slices" + ] + }, + { + "id": 12858, + "cuisine": "irish", + "ingredients": [ + "orange", + "english cucumber", + "lemon", + "sprite", + "mint", + "persian cucumber" + ] + }, + { + "id": 7143, + "cuisine": "thai", + "ingredients": [ + "lime zest", + "fresh cilantro", + "rice vinegar", + "beansprouts", + "fish sauce", + "rice noodles", + "garlic cloves", + "sliced green onions", + "eggs", + "boneless skinless chicken breasts", + "salted peanuts", + "fresh lime juice", + "brown sugar", + "vegetable oil", + "garlic chili sauce" + ] + }, + { + "id": 23349, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "cracked black pepper", + "cooked rice", + "paprika", + "ground cumin", + "curry powder", + "greek style plain yogurt", + "minced garlic", + "salt" + ] + }, + { + "id": 18837, + "cuisine": "british", + "ingredients": [ + "cookies", + "heavy whipping cream", + "strawberries", + "vanilla extract", + "condensed milk" + ] + }, + { + "id": 38774, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "diced tomatoes", + "onions", + "green bell pepper", + "ground black pepper", + "carrots", + "chicken broth", + "garbanzo beans", + "frozen corn", + "ground cumin", + "black beans", + "chili powder", + "ground turkey" + ] + }, + { + "id": 39667, + "cuisine": "french", + "ingredients": [ + "sugar", + "1% low-fat milk", + "hot water", + "butter", + "all-purpose flour", + "large egg whites", + "raspberry sauce", + "instant espresso", + "cooking spray", + "salt", + "unsweetened cocoa powder" + ] + }, + { + "id": 14900, + "cuisine": "irish", + "ingredients": [ + "corn oil", + "salt", + "eggs", + "buttermilk", + "white sugar", + "baking powder", + "all-purpose flour", + "baking soda", + "raisins" + ] + }, + { + "id": 27991, + "cuisine": "mexican", + "ingredients": [ + "red chili peppers", + "salt", + "lettuce", + "garlic powder", + "corn tortillas", + "tomatoes", + "cheese", + "refried beans", + "hamburger" + ] + }, + { + "id": 28610, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "artichok heart marin", + "pepper", + "coarse salt", + "stock", + "yukon gold potatoes", + "olive oil", + "onions" + ] + }, + { + "id": 25026, + "cuisine": "spanish", + "ingredients": [ + "fresh tomatoes", + "garlic", + "anchovies", + "ham", + "extra-virgin olive oil", + "crusty bread", + "serrano" + ] + }, + { + "id": 1626, + "cuisine": "korean", + "ingredients": [ + "celery ribs", + "ground white pepper", + "canola oil", + "brown rice", + "kimchi", + "carrots", + "frozen peas", + "soy sauce", + "beansprouts", + "fried rice" + ] + }, + { + "id": 6755, + "cuisine": "chinese", + "ingredients": [ + "sweet soy sauce", + "tomato paste", + "sesame oil", + "chicken thigh fillets", + "sesame seeds" + ] + }, + { + "id": 9104, + "cuisine": "indian", + "ingredients": [ + "unsweetened shredded dried coconut", + "chile pepper", + "cumin seed", + "shredded carrots", + "white rice flour", + "mung beans", + "salt", + "chopped cilantro fresh", + "water", + "vegetable oil", + "asafoetida powder" + ] + }, + { + "id": 22537, + "cuisine": "mexican", + "ingredients": [ + "crema mexicana", + "cilantro", + "avocado", + "corn oil", + "salt", + "red chile sauce", + "purple onion", + "cotija", + "epazote", + "corn tortillas" + ] + }, + { + "id": 48091, + "cuisine": "chinese", + "ingredients": [ + "wine", + "water chestnuts", + "dark sesame oil", + "bok choy", + "ground ginger", + "white pepper", + "green onions", + "oil", + "sugar", + "regular soy sauce", + "chinese roast pork", + "dark soy sauce", + "water", + "garlic", + "corn starch" + ] + }, + { + "id": 24911, + "cuisine": "southern_us", + "ingredients": [ + "top round steak", + "all-purpose flour", + "apple cider vinegar", + "eggs", + "oil" + ] + }, + { + "id": 12191, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "garlic salt", + "self rising flour", + "shortening" + ] + }, + { + "id": 4323, + "cuisine": "italian", + "ingredients": [ + "steamed rice", + "anchovy paste", + "orange juice", + "cooking oil", + "black olives", + "ground black pepper", + "garlic", + "grated orange", + "butter", + "cornish hens" + ] + }, + { + "id": 40520, + "cuisine": "chinese", + "ingredients": [ + "warm water", + "ginger", + "oil", + "chili flakes", + "green onions", + "rice vinegar", + "soy sauce", + "salt", + "brown sugar", + "worcestershire sauce", + "all-purpose flour" + ] + }, + { + "id": 4017, + "cuisine": "mexican", + "ingredients": [ + "lime", + "chopped cilantro", + "cauliflower", + "scallions", + "extra-virgin olive oil", + "kosher salt", + "garlic cloves" + ] + }, + { + "id": 29829, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large eggs", + "all-purpose flour", + "confectioners sugar", + "unsalted pistachios", + "cinnamon", + "orange flower water", + "bittersweet chocolate", + "marsala wine", + "vegetable oil", + "ricotta", + "lard", + "candied orange peel", + "baking soda", + "salt", + "goat cheese", + "unsweetened cocoa powder" + ] + }, + { + "id": 27439, + "cuisine": "spanish", + "ingredients": [ + "large egg yolks", + "orange zest", + "lime zest", + "heavy cream", + "brown sugar", + "cinnamon sticks", + "whole milk" + ] + }, + { + "id": 2345, + "cuisine": "mexican", + "ingredients": [ + "40% less sodium taco seasoning", + "salsa", + "ground sirloin", + "mini phyllo dough shells", + "shredded Monterey Jack cheese", + "green chile", + "non-fat sour cream" + ] + }, + { + "id": 19502, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "extra-virgin olive oil", + "vegetable oil spray", + "fresh lemon juice", + "fingerling potatoes", + "grated lemon peel", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 27667, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "diced tomatoes", + "bay leaf", + "chili beans", + "butter", + "salt", + "onions", + "clove", + "chili powder", + "paprika", + "ground beef", + "tomato sauce", + "red pepper", + "green pepper" + ] + }, + { + "id": 25965, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "chopped pecans", + "ground nutmeg", + "salt", + "light brown sugar", + "butter", + "blackberries", + "peaches", + "all-purpose flour" + ] + }, + { + "id": 29521, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "flat leaf parsley", + "bread crumb fresh", + "pecorino romano cheese", + "black pepper", + "veal cutlets", + "white onion", + "garlic cloves" + ] + }, + { + "id": 45043, + "cuisine": "mexican", + "ingredients": [ + "fresh corn", + "flour", + "diced tomatoes", + "pepper", + "chili powder", + "ground cumin", + "black beans", + "chicken breasts", + "Mexican cheese", + "fresh poblano pepper", + "green onions", + "salt" + ] + }, + { + "id": 30677, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "chili powder", + "chutney", + "diced potatoes", + "diced green chilies", + "salt", + "ground cumin", + "curry powder", + "raisins", + "frozen peas", + "soy sauce", + "flour tortillas", + "ground coriander" + ] + }, + { + "id": 7791, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime juice", + "soy sauce", + "peanut oil", + "brown sugar", + "garlic", + "fresh red chili", + "white wine", + "large shrimp" + ] + }, + { + "id": 5412, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "mint leaves", + "anise", + "salt", + "coriander", + "saffron", + "clove", + "milk", + "shallots", + "garlic", + "cardamom", + "basmati rice", + "nutmeg", + "almonds", + "vegetable oil", + "purple onion", + "ghee", + "nuts", + "tumeric", + "yoghurt", + "ginger", + "green chilies", + "cashew nuts", + "chicken" + ] + }, + { + "id": 24791, + "cuisine": "indian", + "ingredients": [ + "dry coconut", + "sweetened condensed milk", + "cardamom", + "ravva", + "roasted cashews", + "ghee" + ] + }, + { + "id": 27693, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "grated parmesan cheese", + "cream", + "garlic", + "pinenuts", + "ravioli", + "olive oil", + "goat cheese" + ] + }, + { + "id": 16373, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "vanilla extract", + "whipping cream", + "sugar" + ] + }, + { + "id": 22992, + "cuisine": "irish", + "ingredients": [ + "pepper", + "fresh thyme", + "salt", + "ground lamb", + "celery ribs", + "olive oil", + "butter", + "carrots", + "milk", + "potatoes", + "beef broth", + "fresh rosemary", + "whole wheat flour", + "garlic", + "onions" + ] + }, + { + "id": 32427, + "cuisine": "vietnamese", + "ingredients": [ + "ice", + "egg yolks", + "club soda", + "sweetened condensed milk" + ] + }, + { + "id": 10103, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken bouillon granules", + "dried basil", + "chopped green bell pepper", + "red pepper flakes", + "carrots", + "water", + "olive oil", + "bay leaves", + "chopped celery", + "dried oregano", + "white wine", + "dried thyme", + "whole peeled tomatoes", + "garlic", + "smoked paprika", + "orange", + "salt and ground black pepper", + "clam juice", + "chopped onion", + "saffron" + ] + }, + { + "id": 26409, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh lemon juice", + "fennel bulb", + "manchego cheese", + "rocket leaves", + "bresaola" + ] + }, + { + "id": 40216, + "cuisine": "french", + "ingredients": [ + "pastry", + "dough" + ] + }, + { + "id": 39801, + "cuisine": "southern_us", + "ingredients": [ + "water", + "baby greens", + "shallots", + "freshly ground pepper", + "wild mushrooms", + "milk", + "dry white wine", + "white wine vinegar", + "thyme", + "sugar", + "large egg yolks", + "chives", + "salt", + "grits", + "red beets", + "unsalted butter", + "extra-virgin olive oil", + "rice flour" + ] + }, + { + "id": 1157, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "vegetable oil spray", + "vegetable oil", + "dark brown sugar", + "cream of tartar", + "yellow cake mix", + "semisweet chocolate", + "whipping cream", + "sugar", + "unsalted butter", + "almond extract", + "sour cream", + "pecan halves", + "water", + "large eggs", + "vanilla extract" + ] + }, + { + "id": 29218, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "ground black pepper", + "vegetable oil", + "ground cardamom", + "basmati rice", + "chicken stock", + "fresh ginger root", + "chili powder", + "cardamom", + "onions", + "ground cumin", + "clove", + "plain yogurt", + "skinless chicken pieces", + "salt", + "fresh mint", + "saffron", + "tomatoes", + "potatoes", + "garlic", + "cinnamon sticks", + "ground turmeric" + ] + }, + { + "id": 1930, + "cuisine": "italian", + "ingredients": [ + "water", + "dried navy beans", + "flat leaf parsley", + "rosemary sprigs", + "diced tomatoes", + "juice", + "lamb shanks", + "extra-virgin olive oil", + "carrots", + "celery ribs", + "olive oil", + "garlic cloves", + "onions" + ] + }, + { + "id": 13262, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "paprika", + "seasoning", + "onion powder", + "salt", + "milk", + "Corn Flakes Cereal", + "eggs", + "butter", + "chicken pieces" + ] + }, + { + "id": 35720, + "cuisine": "korean", + "ingredients": [ + "ground ginger", + "green onions", + "ground beef", + "brown sugar", + "crushed red pepper flakes", + "cooked rice", + "sesame oil", + "soy sauce", + "garlic" + ] + }, + { + "id": 36509, + "cuisine": "japanese", + "ingredients": [ + "lime juice", + "beer", + "chili flakes", + "flank steak", + "canola oil", + "fresh ginger", + "scallions", + "soy sauce", + "ramen noodles" + ] + }, + { + "id": 28453, + "cuisine": "greek", + "ingredients": [ + "cherry tomatoes", + "yellow bell pepper", + "oregano", + "frozen spinach", + "olive oil", + "garlic", + "chicken", + "mozzarella cheese", + "ground black pepper", + "garlic salt", + "chicken broth", + "quinoa", + "tzatziki" + ] + }, + { + "id": 26223, + "cuisine": "irish", + "ingredients": [ + "milk", + "russet potatoes", + "large eggs", + "all-purpose flour", + "unsalted butter", + "salt", + "black pepper", + "chives" + ] + }, + { + "id": 47296, + "cuisine": "southern_us", + "ingredients": [ + "cold water", + "unsalted butter", + "butter", + "golden syrup", + "pecans", + "large eggs", + "salt", + "pecan halves", + "semisweet chocolate", + "granulated white sugar", + "light brown sugar", + "cream", + "bourbon whiskey", + "all-purpose flour" + ] + }, + { + "id": 457, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "refried beans", + "shredded cheddar cheese", + "onions", + "flour tortillas" + ] + }, + { + "id": 44423, + "cuisine": "mexican", + "ingredients": [ + "cayenne", + "fresh lime juice", + "lime zest", + "salt", + "bell pepper", + "sea scallops", + "cilantro leaves" + ] + }, + { + "id": 17021, + "cuisine": "chinese", + "ingredients": [ + "green cabbage", + "scallions", + "chili pepper", + "thick-cut bacon", + "soy sauce", + "chinkiang vinegar", + "garlic" + ] + }, + { + "id": 30358, + "cuisine": "mexican", + "ingredients": [ + "taco sauce", + "lime", + "jalapeno chilies", + "purple onion", + "scallions", + "black beans", + "kidney beans", + "chicken meat", + "tortilla chips", + "sour cream", + "minced garlic", + "ground black pepper", + "prepar salsa", + "sharp cheddar cheese", + "ground cumin", + "jack cheese", + "corn kernels", + "chili powder", + "salt", + "red bell pepper" + ] + }, + { + "id": 45440, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "chili pepper", + "cabbage", + "soy sauce", + "salt", + "szechwan peppercorns" + ] + }, + { + "id": 16574, + "cuisine": "thai", + "ingredients": [ + "peanut butter", + "boneless, skinless chicken breast", + "chili sauce", + "soy sauce", + "hellmann' or best food real mayonnais", + "peanuts" + ] + }, + { + "id": 12003, + "cuisine": "vietnamese", + "ingredients": [ + "tomatoes", + "lemon grass", + "vegetable oil", + "carrots", + "chicken", + "red chili peppers", + "bay leaves", + "garlic", + "curry paste", + "sugar", + "starch", + "idaho potatoes", + "coconut milk", + "chicken broth", + "curry powder", + "shallots", + "salt", + "onions" + ] + }, + { + "id": 8884, + "cuisine": "italian", + "ingredients": [ + "potatoes", + "tomato sauce", + "salt", + "butter", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 7558, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "red bell pepper", + "peeled fresh ginger", + "salt", + "canola oil", + "sugar pea", + "large garlic cloves", + "white sesame seeds", + "corn kernels", + "crushed red pepper", + "large shrimp" + ] + }, + { + "id": 10116, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "olive oil", + "dried oregano", + "dried basil", + "crushed red pepper", + "tomato sauce", + "garlic", + "italian seasoning", + "dried thyme", + "salt" + ] + }, + { + "id": 3976, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "whipping cream", + "polenta", + "jack cheese", + "green onions", + "flat leaf parsley", + "fresh thyme", + "salt", + "water", + "butter", + "grated lemon peel" + ] + }, + { + "id": 19995, + "cuisine": "italian", + "ingredients": [ + "butter", + "flour", + "garlic cloves", + "mozzarella cheese", + "pizza doughs", + "pizza sauce" + ] + }, + { + "id": 40033, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "Campbell's Condensed Cheddar Cheese Soup", + "italian salad dressing", + "avocado", + "boneless skinless chicken breasts", + "flour tortillas", + "chunky salsa" + ] + }, + { + "id": 4842, + "cuisine": "thai", + "ingredients": [ + "sugar", + "Thai red curry paste", + "fresh basil", + "cherry tomatoes", + "fresh lime juice", + "rice stick noodles", + "water", + "salt", + "fish sauce", + "flank steak", + "fresh asparagus" + ] + }, + { + "id": 42933, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "whole milk", + "red potato" + ] + }, + { + "id": 30241, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "salt", + "frozen peas", + "vegetable oil", + "carrots", + "green onions", + "rice", + "soy sauce", + "beaten eggs", + "fresh parsley" + ] + }, + { + "id": 8112, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "cayenne", + "yellow onion", + "ground cumin", + "garam masala", + "russet potatoes", + "frozen peas", + "kosher salt", + "whole peeled tomatoes", + "ground coriander", + "ground black pepper", + "ginger", + "canola oil" + ] + }, + { + "id": 28322, + "cuisine": "greek", + "ingredients": [ + "sugar", + "pitas", + "cucumber", + "minced garlic", + "salt", + "dried oregano", + "black pepper", + "finely chopped onion", + "plum tomatoes", + "plain low-fat yogurt", + "salad greens", + "dried dill", + "ground lamb" + ] + }, + { + "id": 34559, + "cuisine": "filipino", + "ingredients": [ + "black pepper", + "egg whites", + "paprika", + "diced bell pepper", + "dried thyme", + "green onions", + "salt", + "water", + "golden raisins", + "cilantro", + "green olives", + "olive oil", + "empanada", + "cooked chicken breasts" + ] + }, + { + "id": 46461, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "white wine vinegar", + "large egg yolks", + "vegetable oil", + "boneless rib eye steaks", + "unsalted butter", + "fresh tarragon", + "shallots", + "fresh lemon juice" + ] + }, + { + "id": 23765, + "cuisine": "moroccan", + "ingredients": [ + "spanish onion", + "chickpeas", + "raw almond", + "tumeric", + "extra-virgin olive oil", + "pitted prunes", + "cumin", + "raisins", + "sweet paprika", + "boiling water", + "black pepper", + "salt", + "couscous" + ] + }, + { + "id": 27806, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "garlic", + "green peppercorns", + "olive oil", + "water", + "chopped cilantro", + "brown sugar", + "yardlong beans" + ] + }, + { + "id": 3572, + "cuisine": "french", + "ingredients": [ + "canned low sodium chicken broth", + "dry white wine", + "fresh parsley", + "cooking oil", + "salt", + "ground black pepper", + "butter", + "chicken", + "flour", + "garlic cloves" + ] + }, + { + "id": 32334, + "cuisine": "japanese", + "ingredients": [ + "vegetable oil", + "yuzu", + "ground white pepper", + "egg yolks", + "lemon juice", + "miso paste", + "salt" + ] + }, + { + "id": 24465, + "cuisine": "italian", + "ingredients": [ + "vegetable bouillon", + "red lentils", + "canned tomatoes", + "water", + "onions", + "salt and ground black pepper" + ] + }, + { + "id": 33233, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "English muffins", + "confectioners sugar", + "honey", + "heavy cream", + "peaches" + ] + }, + { + "id": 1577, + "cuisine": "italian", + "ingredients": [ + "fresh tomatoes", + "salt", + "grated parmesan cheese", + "ground beef", + "fresh basil", + "garlic", + "black pepper", + "bow-tie pasta" + ] + }, + { + "id": 37050, + "cuisine": "southern_us", + "ingredients": [ + "remoulade", + "green tomatoes", + "extra-virgin olive oil", + "crab boil", + "romaine lettuce", + "large eggs", + "lemon", + "all-purpose flour", + "white sandwich bread", + "water", + "bay leaves", + "buttermilk", + "cayenne pepper", + "applewood smoked bacon", + "yellow corn meal", + "ground black pepper", + "vegetable oil", + "salt", + "medium shrimp" + ] + }, + { + "id": 9284, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "sour cream", + "olive oil", + "cayenne pepper", + "cumin", + "paprika", + "onions", + "potatoes", + "garlic cloves" + ] + }, + { + "id": 26953, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "finely chopped onion", + "shallots", + "chopped fresh sage", + "fresh spinach", + "fresh parmesan cheese", + "cooking spray", + "gruyere cheese", + "bay leaf", + "warm water", + "mushroom caps", + "sweet potatoes", + "all-purpose flour", + "fat free milk", + "lasagna noodles", + "sea salt", + "garlic cloves" + ] + }, + { + "id": 2692, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "pork tenderloin", + "greens", + "red chili peppers", + "ginger", + "chili flakes", + "spring onions", + "soy sauce", + "chinese five-spice powder" + ] + }, + { + "id": 21222, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "serrano chile", + "fresh lime juice", + "white onion", + "chopped cilantro" + ] + }, + { + "id": 31893, + "cuisine": "british", + "ingredients": [ + "pie crust", + "flour", + "beef stew meat", + "kosher salt", + "cracked black pepper", + "eggs", + "vegetable oil", + "onions", + "beef kidney", + "beef stock", + "white mushrooms" + ] + }, + { + "id": 26885, + "cuisine": "mexican", + "ingredients": [ + "spinach", + "butter", + "flour tortillas", + "portobello caps", + "shredded cheddar cheese", + "garlic", + "vegetable oil" + ] + }, + { + "id": 41654, + "cuisine": "chinese", + "ingredients": [ + "all-purpose flour", + "cold water", + "boiling water" + ] + }, + { + "id": 23208, + "cuisine": "italian", + "ingredients": [ + "pepper", + "lemon", + "italian salad dressing", + "artichoke hearts", + "penne pasta", + "cherry tomatoes", + "salt", + "garbanzo beans", + "fresh basil leaves" + ] + }, + { + "id": 47437, + "cuisine": "russian", + "ingredients": [ + "potatoes", + "sausages", + "dill pickles", + "cucumber", + "hard-boiled egg", + "carrots", + "mayonaise", + "ham", + "onions" + ] + }, + { + "id": 43024, + "cuisine": "greek", + "ingredients": [ + "fresh marjoram", + "green onions", + "grated lemon peel", + "pitted kalamata olives", + "dijon mustard", + "feta cheese crumbles", + "olive oil", + "fresh lemon juice", + "cherry tomatoes", + "orzo" + ] + }, + { + "id": 8324, + "cuisine": "french", + "ingredients": [ + "chervil", + "peppercorns", + "bay leaves", + "fish", + "coarse salt", + "extra-virgin olive oil" + ] + }, + { + "id": 48765, + "cuisine": "chinese", + "ingredients": [ + "honey", + "garlic", + "corn starch", + "low sodium soy sauce", + "fresh ginger root", + "salt", + "stir fry vegetable blend", + "water", + "crushed red pepper flakes", + "orange juice", + "pepper", + "chicken breasts", + "rice", + "canola oil" + ] + }, + { + "id": 12039, + "cuisine": "moroccan", + "ingredients": [ + "water", + "salt", + "anise seed", + "olive oil", + "bread flour", + "active dry yeast", + "white sugar", + "semolina flour", + "sesame seeds" + ] + }, + { + "id": 13418, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "spaghetti", + "ground black pepper", + "garlic", + "large eggs", + "fresh parsley leaves", + "kosher salt", + "bacon" + ] + }, + { + "id": 30397, + "cuisine": "irish", + "ingredients": [ + "whole milk", + "cheddar cheese", + "all-purpose flour", + "cauliflower", + "fine sea salt", + "unsalted butter" + ] + }, + { + "id": 2912, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "garlic", + "onions", + "olive oil", + "sea salt", + "shrimp", + "skim milk", + "hot pepper sauce", + "shredded sharp cheddar cheese", + "grits", + "garlic powder", + "diced tomatoes", + "ground cayenne pepper" + ] + }, + { + "id": 39065, + "cuisine": "thai", + "ingredients": [ + "lettuce leaves", + "linguine", + "fresh lime juice", + "sugar", + "green onions", + "cilantro leaves", + "chopped cilantro fresh", + "fish sauce", + "peeled fresh ginger", + "unsalted dry roast peanuts", + "medium shrimp", + "shredded carrots", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 47813, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "kale", + "red pepper flakes", + "cumin seed", + "cashew nuts", + "tumeric", + "garam masala", + "salt", + "onions", + "tomato paste", + "nutritional yeast", + "garlic", + "ginger root", + "low sodium vegetable broth", + "unsweetened soymilk", + "chickpeas", + "coriander" + ] + }, + { + "id": 23259, + "cuisine": "southern_us", + "ingredients": [ + "garlic cloves", + "lemon", + "fresh parsley", + "butter", + "shrimp", + "freshly ground pepper", + "italian salad dressing" + ] + }, + { + "id": 8368, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "boneless skinless chicken breasts", + "salsa", + "sliced green onions", + "water", + "non-fat sour cream", + "iceberg lettuce", + "avocado", + "flour tortillas", + "salt", + "monterey jack", + "black beans", + "ground red pepper", + "fresh lime juice", + "ground cumin" + ] + }, + { + "id": 46674, + "cuisine": "italian", + "ingredients": [ + "finely chopped fresh parsley", + "garlic cloves", + "lemon" + ] + }, + { + "id": 16976, + "cuisine": "irish", + "ingredients": [ + "tomato paste", + "olive oil", + "beef stock", + "basil", + "carrots", + "sugar", + "stewing beef", + "russet potatoes", + "yellow onion", + "celery", + "wine", + "Guinness Beer", + "bay leaves", + "salt", + "thyme", + "pepper", + "flour", + "worcestershire sauce", + "garlic cloves" + ] + }, + { + "id": 12924, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "bay leaves", + "all-purpose flour", + "olive oil", + "heavy cream", + "white sugar", + "tomato purée", + "garam masala", + "salt", + "ground turmeric", + "water", + "chili powder", + "onions" + ] + }, + { + "id": 35490, + "cuisine": "french", + "ingredients": [ + "butter", + "all-purpose flour", + "ground sirloin", + "whipping cream", + "chopped fresh thyme", + "salt", + "ground black pepper", + "dry red wine", + "chopped onion" + ] + }, + { + "id": 47352, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "whole chicken", + "salt", + "ground pepper", + "lemon juice", + "greek seasoning", + "grated lemon zest" + ] + }, + { + "id": 10454, + "cuisine": "japanese", + "ingredients": [ + "boneless chicken skinless thigh", + "sake", + "mirin", + "granulated sugar", + "soy sauce", + "green onions" + ] + }, + { + "id": 34098, + "cuisine": "italian", + "ingredients": [ + "yellow crookneck squash", + "cannellini beans", + "penne", + "fennel bulb", + "large garlic cloves", + "dry vermouth", + "italian style stewed tomatoes", + "green onions", + "white onion", + "zucchini", + "vegetable broth" + ] + }, + { + "id": 29493, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "leaves", + "salt", + "onions", + "red chili powder", + "coriander powder", + "oil", + "tomatoes", + "garam masala", + "cilantro leaves", + "ground turmeric", + "garlic paste", + "button mushrooms", + "jeera" + ] + }, + { + "id": 458, + "cuisine": "french", + "ingredients": [ + "ice water", + "all-purpose flour", + "salt", + "unsalted butter" + ] + }, + { + "id": 11571, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "baking powder", + "milk", + "white cornmeal", + "eggs", + "butter" + ] + }, + { + "id": 41571, + "cuisine": "spanish", + "ingredients": [ + "tomato salsa", + "hothouse cucumber", + "roasted red peppers", + "red bell pepper", + "tomato juice", + "diced tomatoes", + "red wine vinegar", + "chopped cilantro fresh" + ] + }, + { + "id": 8671, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "red cabbage", + "tartar sauce", + "fish fingers", + "corn tortillas", + "salsa" + ] + }, + { + "id": 8404, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "salt", + "pork shoulder", + "corn", + "cheese", + "taco seasoning", + "water", + "cilantro", + "salsa", + "polenta", + "light beer", + "garlic", + "pinto beans" + ] + }, + { + "id": 32833, + "cuisine": "japanese", + "ingredients": [ + "papaya", + "pumpkin", + "melon", + "sugar", + "bananas", + "Bengali 5 Spice", + "ground cumin", + "rice bran", + "eggplant", + "poppy seeds", + "ginger paste", + "water", + "potatoes", + "salt" + ] + }, + { + "id": 33480, + "cuisine": "greek", + "ingredients": [ + "pinenuts", + "fresh parsley", + "grape leaves", + "lemon", + "olive oil", + "onions", + "fresh dill", + "white rice" + ] + }, + { + "id": 26491, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "scallions", + "white sugar", + "pork", + "Shaoxing wine", + "corn starch", + "eggs", + "water", + "oil", + "soy sauce", + "ginger", + "chinese black vinegar" + ] + }, + { + "id": 34671, + "cuisine": "spanish", + "ingredients": [ + "water", + "sweetened condensed milk", + "ground cinnamon", + "vanilla extract", + "large eggs", + "sugar", + "1% low-fat milk" + ] + }, + { + "id": 9256, + "cuisine": "brazilian", + "ingredients": [ + "collard greens", + "garlic", + "olive oil", + "smoked paprika", + "sea salt", + "lime", + "beer" + ] + }, + { + "id": 2413, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "lasagna noodles", + "garlic", + "fresh parsley", + "dried basil", + "ricotta cheese", + "all-purpose flour", + "chicken", + "milk", + "grated parmesan cheese", + "salt", + "onions", + "frozen chopped spinach", + "ground pepper", + "butter", + "shredded mozzarella cheese" + ] + }, + { + "id": 944, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "sliced black olives", + "onion powder", + "crushed red pepper flakes", + "salsa", + "shredded cheddar cheese", + "cooked chicken", + "paprika", + "salt", + "ground cumin", + "pepper", + "green onions", + "vegetable oil", + "garlic", + "dried oregano", + "tomatoes", + "garlic powder", + "chili powder", + "cilantro", + "sweet mini bells" + ] + }, + { + "id": 13756, + "cuisine": "japanese", + "ingredients": [ + "mochiko", + "water", + "granulated sugar", + "kosher salt", + "light corn syrup" + ] + }, + { + "id": 5080, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "raisins", + "onions", + "warm water", + "active dry yeast", + "salt", + "bread crumbs", + "olive oil", + "anchovy fillets", + "cold water", + "crushed tomatoes", + "crushed red pepper flakes", + "bread flour" + ] + }, + { + "id": 13091, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "ground nutmeg", + "ground ginger", + "sugar", + "cinnamon", + "pie crust", + "brown sugar", + "sweet potatoes", + "eggs", + "evaporated milk" + ] + }, + { + "id": 18941, + "cuisine": "mexican", + "ingredients": [ + "loosely packed fresh basil leaves", + "cantaloupe", + "fresh lemon juice" + ] + }, + { + "id": 13268, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "basil leaves", + "garlic powder", + "tomato paste", + "oregano" + ] + }, + { + "id": 44157, + "cuisine": "thai", + "ingredients": [ + "sugar", + "cooking oil", + "fish sauce", + "fresh cilantro", + "fresh mint", + "spinach leaves", + "lime juice", + "top sirloin", + "chiles", + "cherry tomatoes", + "sliced shallots" + ] + }, + { + "id": 24665, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "deep dish pie crust", + "large eggs", + "all-purpose flour", + "golden brown sugar", + "vanilla extract", + "pure maple syrup", + "butter", + "chopped pecans" + ] + }, + { + "id": 46146, + "cuisine": "greek", + "ingredients": [ + "low-fat greek yogurt", + "carrots", + "fresh dill", + "vegetables", + "reduced fat mayonnaise", + "black pepper", + "hot sauce", + "garlic powder", + "feta cheese crumbles" + ] + }, + { + "id": 30889, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "vanilla bean paste", + "2% reduced-fat milk", + "eggs", + "sweetened condensed milk" + ] + }, + { + "id": 32787, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "diced tomatoes", + "tomatoes", + "cream of chicken soup", + "sour cream", + "lettuce", + "Mexican cheese blend", + "salsa", + "milk", + "cooked chicken", + "doritos" + ] + }, + { + "id": 42584, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "frozen corn", + "lime juice", + "cilantro", + "minced garlic", + "green onions", + "avocado", + "cherry tomatoes", + "salt" + ] + }, + { + "id": 9427, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "cooking spray", + "rack of lamb", + "chopped cilantro fresh", + "water", + "extra-virgin olive oil", + "fresh lemon juice", + "dried plum", + "ground black pepper", + "salt", + "onions", + "black pepper", + "paprika", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 8892, + "cuisine": "chinese", + "ingredients": [ + "pork", + "hoisin sauce", + "napa cabbage", + "corn starch", + "red chili powder", + "black pepper", + "bell pepper", + "garlic", + "onions", + "chinese rice wine", + "water", + "meat", + "oyster sauce", + "boiling water", + "soy sauce", + "sambal chile paste", + "ginger", + "cinnamon sticks" + ] + }, + { + "id": 39713, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "fresh lemon juice", + "capers", + "dry white wine", + "boneless skinless chicken breast halves", + "olive oil", + "fresh parsley", + "black pepper", + "salt" + ] + }, + { + "id": 15870, + "cuisine": "filipino", + "ingredients": [ + "green onions", + "cayenne pepper", + "white sugar", + "eggs", + "garlic", + "oil", + "boneless skinless chicken breasts", + "white rice flour", + "soy sauce", + "salt", + "corn starch" + ] + }, + { + "id": 11524, + "cuisine": "southern_us", + "ingredients": [ + "warm water", + "vegetable oil", + "red food coloring", + "white vinegar", + "large eggs", + "buttermilk", + "cream cheese", + "baking soda", + "butter", + "devil's food cake mix", + "powdered sugar", + "chop fine pecan", + "vanilla" + ] + }, + { + "id": 16042, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "white wine", + "sesame oil", + "shrimp", + "soy sauce", + "water chestnuts", + "salt", + "sugar", + "fresh ginger root", + "napa cabbage", + "corn starch", + "chicken broth", + "lean ground pork", + "green onions", + "oil" + ] + }, + { + "id": 3670, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "chopped pecans", + "bacon", + "butter", + "white sugar", + "maple syrup" + ] + }, + { + "id": 37322, + "cuisine": "indian", + "ingredients": [ + "fat free yogurt", + "crystallized ginger", + "ground cardamom", + "saffron threads", + "water", + "golden raisins", + "cashew nuts", + "vodka", + "granulated sugar", + "ghee", + "powdered sugar", + "semolina", + "non-fat sour cream" + ] + }, + { + "id": 11901, + "cuisine": "spanish", + "ingredients": [ + "dried lentils", + "bay leaves", + "salt", + "fresh parsley", + "olive oil", + "paprika", + "ham", + "pepper", + "red wine vinegar", + "garlic cloves", + "onions", + "chicken broth", + "potatoes", + "smoked sausage", + "carrots" + ] + }, + { + "id": 45035, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "vanilla extract", + "carrots", + "ground cinnamon", + "large eggs", + "all-purpose flour", + "canola oil", + "ground nutmeg", + "salt", + "chopped pecans", + "sugar", + "golden raisins", + "crushed pineapple" + ] + }, + { + "id": 49478, + "cuisine": "italian", + "ingredients": [ + "fresh cheese", + "baby spinach", + "salt", + "sun-dried tomatoes", + "extra-virgin olive oil", + "cherry tomatoes", + "red pepper flakes", + "goat cheese", + "pinenuts", + "fresh thyme", + "garlic" + ] + }, + { + "id": 43170, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "olive oil", + "onions", + "pastry", + "raisins", + "double crust pie", + "pepper", + "salt", + "green olives", + "potatoes" + ] + }, + { + "id": 20794, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "powdered sugar", + "cream cheese, soften", + "vanilla extract" + ] + }, + { + "id": 8774, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "cracked black pepper", + "garlic cloves", + "veal cutlets", + "all-purpose flour", + "mushrooms", + "salt", + "butter", + "beef broth" + ] + }, + { + "id": 3704, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "part-skim ricotta cheese", + "grated parmesan cheese", + "fresh thyme", + "goat cheese", + "refrigerated pizza dough" + ] + }, + { + "id": 20116, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "shredded lettuce", + "chunky salsa", + "lime zest", + "jalapeno chilies", + "chopped cilantro fresh", + "black beans", + "sour cream", + "sliced green onions", + "red chili peppers", + "black olives", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 30837, + "cuisine": "spanish", + "ingredients": [ + "mussels", + "pimentos", + "squid", + "long grain white rice", + "saffron threads", + "bottled clam juice", + "green peas", + "shrimp", + "chicken stock", + "lemon wedge", + "garlic cloves", + "chicken", + "clams", + "olive oil", + "bacon slices", + "onions" + ] + }, + { + "id": 43603, + "cuisine": "chinese", + "ingredients": [ + "Imperial Sugar Light Brown Sugar", + "apple cider vinegar", + "salt", + "large eggs", + "red pepper flakes", + "ground black pepper", + "vegetable oil", + "corn starch", + "kosher salt", + "boneless skinless chicken breasts", + "buffalo sauce" + ] + }, + { + "id": 26696, + "cuisine": "thai", + "ingredients": [ + "Thai fish sauce", + "light coconut milk", + "red curry paste", + "sweetened coconut flakes", + "large shrimp" + ] + }, + { + "id": 45318, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "ground beef", + "butter", + "ricotta cheese", + "spaghetti", + "italian sauce", + "shredded mozzarella cheese" + ] + }, + { + "id": 37976, + "cuisine": "russian", + "ingredients": [ + "dried fruit", + "sugar", + "water" + ] + }, + { + "id": 8736, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "vinegar", + "salt", + "cinnamon sticks", + "ground cumin", + "brown sugar", + "ginger", + "cumin seed", + "ground turmeric", + "curry leaves", + "curry powder", + "garlic", + "mustard seeds", + "canola oil", + "fish sauce", + "crushed red pepper flakes", + "green chilies", + "onions" + ] + }, + { + "id": 157, + "cuisine": "indian", + "ingredients": [ + "ginger", + "oil", + "water", + "salt", + "onions", + "curry leaves", + "green peas", + "mustard seeds", + "semolina", + "green chilies" + ] + }, + { + "id": 30242, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "sweet onion", + "plum tomatoes", + "fresh basil", + "crumbled gorgonzola", + "fresh rosemary", + "cheese", + "baguette", + "garlic pepper seasoning" + ] + }, + { + "id": 7463, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "orange", + "chipotle", + "frozen corn", + "onions", + "fresh coriander", + "olive oil", + "lime wedges", + "long-grain rice", + "oregano", + "fresh leav spinach", + "milk", + "bay leaves", + "beef rib short", + "coriander", + "chicken broth", + "crushed tomatoes", + "finely chopped onion", + "salt", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 34424, + "cuisine": "italian", + "ingredients": [ + "water", + "chopped onion", + "arborio rice", + "olive oil", + "champagne", + "dried basil", + "feta cheese crumbles", + "fat free less sodium chicken broth", + "fresh parmesan cheese" + ] + }, + { + "id": 23646, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "salsa", + "shredded cheddar cheese", + "sour cream", + "black beans", + "rice", + "diced tomatoes", + "chopped cilantro fresh" + ] + }, + { + "id": 36679, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "corn tortillas", + "all-purpose flour", + "salt", + "cod fillets", + "beer" + ] + }, + { + "id": 21834, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "vanilla extract", + "fresh lemon juice", + "turbinado", + "baking powder", + "salt", + "granulated sugar", + "1% low-fat milk", + "ground cinnamon", + "butter", + "all-purpose flour" + ] + }, + { + "id": 1180, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "asparagus", + "salt", + "black pepper", + "olive oil", + "white wine vinegar", + "arborio rice", + "cherry tomatoes", + "green peas", + "lemon juice", + "water", + "pecorino romano cheese", + "chopped onion" + ] + }, + { + "id": 9569, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "sliced almonds", + "vanilla extract", + "peaches", + "cream cheese, soften", + "sugar", + "amaretto" + ] + }, + { + "id": 21837, + "cuisine": "japanese", + "ingredients": [ + "egg yolks", + "salt", + "sardines", + "mayonaise", + "wasabi powder", + "beer", + "vegetable oil", + "all-purpose flour", + "water", + "butter", + "corn starch" + ] + }, + { + "id": 34664, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "fish fillets", + "soy sauce" + ] + }, + { + "id": 47699, + "cuisine": "mexican", + "ingredients": [ + "morel", + "garlic cloves", + "water", + "coarse salt", + "plum tomatoes", + "chopped leaves", + "unsalted butter", + "poblano chiles", + "olive oil", + "salsa" + ] + }, + { + "id": 3398, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "jalapeno chilies", + "salt", + "pinto beans", + "cumin", + "avocado", + "olive oil", + "paprika", + "yellow onion", + "sour cream", + "lime", + "chili powder", + "cilantro leaves", + "hot water", + "monterey jack", + "cheddar cheese", + "roma tomatoes", + "crushed red pepper", + "tortilla chips", + "ground beef" + ] + }, + { + "id": 47667, + "cuisine": "mexican", + "ingredients": [ + "crushed tomatoes", + "hot sauce", + "dried oregano", + "black beans", + "Mexican cheese blend", + "oven-ready lasagna noodles", + "garlic powder", + "frozen corn kernels", + "cumin", + "kosher salt", + "green onions", + "chopped cilantro" + ] + }, + { + "id": 32150, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "garlic", + "fresh mushrooms", + "scallops", + "cajun seasoning", + "all-purpose flour", + "frozen vegetables", + "salt", + "milk", + "butter", + "chopped onion" + ] + }, + { + "id": 33353, + "cuisine": "french", + "ingredients": [ + "eggs", + "zucchini", + "salt", + "prosciutto", + "basil", + "lemon juice", + "parmigiano-reggiano cheese", + "basil leaves", + "toasted pine nuts", + "tomatoes", + "mascarpone", + "garlic", + "ground cumin" + ] + }, + { + "id": 29351, + "cuisine": "italian", + "ingredients": [ + "whole peeled tomatoes", + "extra-virgin olive oil", + "coarse salt", + "spaghetti", + "basil leaves", + "garlic cloves", + "fresh mozzarella" + ] + }, + { + "id": 27307, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "white sugar", + "water", + "lima beans", + "salt", + "chile pepper", + "whole kernel corn, drain" + ] + }, + { + "id": 16438, + "cuisine": "french", + "ingredients": [ + "milk", + "butter", + "white bread", + "dijon mustard", + "all-purpose flour", + "ground nutmeg", + "gruyere cheese", + "cooked ham", + "shallots", + "fat skimmed chicken broth" + ] + }, + { + "id": 10337, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "fresh oregano", + "feta cheese crumbles", + "cooked chicken", + "freshly ground pepper", + "artichok heart marin", + "pizza doughs", + "roast red peppers, drain", + "kalamata", + "shredded mozzarella cheese" + ] + }, + { + "id": 43146, + "cuisine": "indian", + "ingredients": [ + "water", + "cooking oil", + "mustard seeds", + "coriander powder", + "salt", + "fresh ginger", + "ground red pepper", + "onions", + "fresh curry leaves", + "cod fillets", + "tamarind paste" + ] + }, + { + "id": 43695, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "unsweetened almond milk", + "yellow onion", + "Madras curry powder", + "coconut oil", + "paprika", + "chickpeas", + "coconut sugar", + "sea salt", + "cayenne pepper", + "cumin", + "tomato sauce", + "garlic", + "ceylon cinnamon" + ] + }, + { + "id": 26538, + "cuisine": "french", + "ingredients": [ + "black peppercorns", + "veal knuckle", + "onions", + "tomato paste", + "carrots", + "bay leaf", + "water", + "flat leaf parsley", + "celery ribs", + "leeks", + "thyme sprigs" + ] + }, + { + "id": 22134, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "crushed red pepper flakes", + "green onions", + "cooked white rice", + "soy sauce", + "garlic", + "ground ginger", + "lean ground beef" + ] + }, + { + "id": 11919, + "cuisine": "italian", + "ingredients": [ + "pepper", + "extra-virgin olive oil", + "thyme", + "olive oil", + "salt", + "rosemary", + "purple onion", + "parmesan cheese", + "pizza doughs" + ] + }, + { + "id": 38866, + "cuisine": "moroccan", + "ingredients": [ + "chicken broth", + "chunky peanut butter", + "onions", + "pepper", + "salt", + "ground cumin", + "green bell pepper", + "garlic", + "frozen peas", + "Crisco Pure Canola Oil", + "couscous" + ] + }, + { + "id": 3275, + "cuisine": "irish", + "ingredients": [ + "whole wheat flour", + "salt", + "butter", + "baking powder", + "all-purpose flour", + "water", + "whipping cream" + ] + }, + { + "id": 12158, + "cuisine": "cajun_creole", + "ingredients": [ + "hot pepper sauce", + "worcestershire sauce", + "corn starch", + "diced onions", + "chili powder", + "garlic", + "chopped green bell pepper", + "stewed tomatoes", + "medium shrimp", + "tomato sauce", + "butter", + "chopped celery" + ] + }, + { + "id": 34507, + "cuisine": "mexican", + "ingredients": [ + "chipotles in adobo", + "cilantro leaves", + "salsa", + "lime juice" + ] + }, + { + "id": 14783, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "fat-free parmesan cheese", + "bay leaf", + "dry white wine", + "garlic", + "white sugar", + "brandy", + "ground thyme", + "all-purpose flour", + "french bread", + "vegetable broth", + "onions" + ] + }, + { + "id": 16490, + "cuisine": "southern_us", + "ingredients": [ + "low-fat sour cream", + "baking soda", + "salt", + "grits", + "sugar", + "cooking spray", + "all-purpose flour", + "large egg whites", + "butter", + "grated lemon zest", + "large egg yolks", + "vanilla extract", + "white cornmeal" + ] + }, + { + "id": 41908, + "cuisine": "mexican", + "ingredients": [ + "fresca", + "coriander seeds", + "jalapeno chilies", + "large garlic cloves", + "lard", + "tomatoes", + "pasilla chiles", + "chopped green bell pepper", + "baking powder", + "salt", + "garlic salt", + "chiles", + "pork shoulder butt", + "flour", + "cilantro sprigs", + "pimento stuffed green olives", + "dried cornhusks", + "warm water", + "beef bouillon", + "russet potatoes", + "cumin seed", + "masa" + ] + }, + { + "id": 42758, + "cuisine": "southern_us", + "ingredients": [ + "green tea bags", + "seltzer water", + "rum", + "whiskey", + "sugar", + "orange liqueur", + "fresh lemon juice", + "boiling water" + ] + }, + { + "id": 19285, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "snow peas", + "sesame seeds", + "large garlic cloves", + "sugar pea", + "vegetable oil", + "hot red pepper flakes", + "peeled fresh ginger", + "green peas" + ] + }, + { + "id": 45223, + "cuisine": "italian", + "ingredients": [ + "all purpose unbleached flour", + "active dry yeast", + "warm water", + "salt", + "olive oil" + ] + }, + { + "id": 2206, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "vegetable oil", + "onions", + "dijon mustard", + "green pepper", + "yellow squash", + "white wine vinegar", + "sugar", + "jicama", + "orange juice" + ] + }, + { + "id": 49286, + "cuisine": "japanese", + "ingredients": [ + "japanese rice", + "curry powder", + "shiitake", + "green onions", + "carrots", + "sugar", + "pearl onions", + "potatoes", + "vegetable oil", + "ground beef", + "sake", + "minced ginger", + "mirin", + "shichimi togarashi", + "red bell pepper", + "rib eye steaks", + "soy sauce", + "dashi", + "pumpkin", + "yellow bell pepper" + ] + }, + { + "id": 38629, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "ground black pepper", + "vegetable oil", + "tartar sauce", + "seasoning salt", + "whole milk", + "all-purpose flour", + "garlic powder", + "onion powder", + "cayenne pepper", + "yellow corn meal", + "large eggs", + "salt", + "ground white pepper" + ] + }, + { + "id": 39108, + "cuisine": "indian", + "ingredients": [ + "salt", + "plain yogurt", + "ice", + "white sugar", + "ice water" + ] + }, + { + "id": 26225, + "cuisine": "southern_us", + "ingredients": [ + "sweet potatoes & yams", + "butter", + "honey" + ] + }, + { + "id": 40419, + "cuisine": "southern_us", + "ingredients": [ + "beef bouillon", + "vidalia onion", + "paprika", + "butter", + "pepper", + "salt" + ] + }, + { + "id": 20030, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "rosemary", + "red pepper flakes", + "thyme", + "black pepper", + "eggplant", + "garlic", + "fresh tomatoes", + "olive oil", + "yellow bell pepper", + "red bell pepper", + "italian sausage", + "kosher salt", + "zucchini", + "chopped onion" + ] + }, + { + "id": 4519, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "sirloin steak", + "toasted sesame oil", + "soy sauce", + "ground black pepper", + "fresh mushrooms", + "sesame seeds", + "cooking wine", + "onions", + "caster sugar", + "spring onions", + "juice" + ] + }, + { + "id": 23112, + "cuisine": "italian", + "ingredients": [ + "broccoli florets", + "salt", + "skim milk", + "cracked black pepper", + "fresh parsley", + "fettucine", + "butter", + "all-purpose flour", + "grated parmesan cheese", + "part-skim ricotta cheese" + ] + }, + { + "id": 36380, + "cuisine": "italian", + "ingredients": [ + "grated orange peel", + "prosciutto", + "olive oil", + "dried thyme", + "ground black pepper", + "artichoke hearts" + ] + }, + { + "id": 38274, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "vegetable oil", + "cream style corn", + "cornmeal", + "sugar", + "greek yogurt", + "baking powder" + ] + }, + { + "id": 4672, + "cuisine": "french", + "ingredients": [ + "active dry yeast", + "sugar", + "salt", + "vegetable oil cooking spray", + "egg whites", + "warm water", + "bread flour" + ] + }, + { + "id": 26990, + "cuisine": "french", + "ingredients": [ + "water", + "vanilla extract", + "apricot halves", + "sugar" + ] + }, + { + "id": 33045, + "cuisine": "spanish", + "ingredients": [ + "manchego cheese", + "quince paste" + ] + }, + { + "id": 35174, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "cayenne pepper sauce", + "whole wheat tortillas", + "cut up cooked chicken", + "chopped celery", + "Country Crock® Spread", + "carrots" + ] + }, + { + "id": 7864, + "cuisine": "southern_us", + "ingredients": [ + "colby cheese", + "butter", + "monterey jack", + "flour", + "sharp cheddar cheese", + "white pepper", + "salt", + "whole milk", + "elbow macaroni" + ] + }, + { + "id": 34023, + "cuisine": "mexican", + "ingredients": [ + "radishes", + "epazote", + "grated jack cheese", + "chile colorado", + "white onion", + "mushrooms", + "cilantro leaves", + "corn tortillas", + "kosher salt", + "vegetable oil", + "goat cheese", + "chopped cilantro fresh", + "chiles", + "finely chopped onion", + "large garlic cloves", + "sour cream" + ] + }, + { + "id": 1416, + "cuisine": "filipino", + "ingredients": [ + "Accent Seasoning", + "boneless skinless chicken breasts", + "carrots", + "celery ribs", + "black pepper", + "oil", + "cabbage", + "chicken broth", + "rice sticks", + "garlic cloves", + "soy sauce", + "lemon", + "onions" + ] + }, + { + "id": 16766, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "cream style corn", + "baking powder", + "chopped cilantro fresh", + "large egg whites", + "finely chopped onion", + "salt", + "pepper", + "frozen whole kernel corn", + "shredded sharp cheddar cheese", + "yellow corn meal", + "yellow squash", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 16126, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chili powder", + "sour cream", + "eggs", + "ground black pepper", + "salt", + "ground cumin", + "avocado", + "diced green chilies", + "lean ground beef", + "onions", + "green chile", + "Mexican cheese blend", + "salsa" + ] + }, + { + "id": 21400, + "cuisine": "greek", + "ingredients": [ + "crushed red pepper flakes", + "dried oregano", + "olive oil", + "feta cheese" + ] + }, + { + "id": 19600, + "cuisine": "british", + "ingredients": [ + "bread crumbs", + "muscovado sugar", + "dried fruit", + "almonds", + "cooking apples", + "eggs", + "mixed spice", + "butter", + "brandy", + "self rising flour", + "orange juice" + ] + }, + { + "id": 49541, + "cuisine": "irish", + "ingredients": [ + "fresh lime juice", + "Irish whiskey", + "ginger beer", + "lime wedges" + ] + }, + { + "id": 6053, + "cuisine": "southern_us", + "ingredients": [ + "lemon", + "ground black pepper", + "boneless skinless chicken breast halves", + "lime", + "creole style seasoning", + "dijon mustard" + ] + }, + { + "id": 35982, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "large eggs", + "paprika", + "ground cumin", + "ground black pepper", + "ground thyme", + "ground white pepper", + "garlic powder", + "onion powder", + "salt", + "boneless chicken breast halves", + "buttermilk", + "oregano" + ] + }, + { + "id": 3754, + "cuisine": "indian", + "ingredients": [ + "chicken breasts", + "ginger", + "garlic cloves", + "basmati rice", + "sliced almonds", + "vegetable oil", + "cardamom pods", + "coriander", + "ground cumin", + "mixed vegetables", + "green chilies", + "onions", + "ground turmeric", + "yoghurt", + "vegetable stock", + "ground almonds", + "frozen peas" + ] + }, + { + "id": 3212, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "garlic", + "tomato sauce", + "ground black pepper", + "dried oregano", + "water", + "lean ground beef", + "tomato paste", + "onion soup mix", + "salt" + ] + }, + { + "id": 9733, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "salt", + "escarole", + "chicken stock", + "ditalini", + "freshly ground pepper", + "large eggs", + "plain breadcrumbs", + "minced onion", + "ground veal", + "carrots" + ] + }, + { + "id": 5966, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "flour", + "peaches", + "salt", + "honey", + "baking powder", + "eggs", + "unsalted butter" + ] + }, + { + "id": 31975, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "Shaoxing wine", + "oil", + "soy sauce", + "salt", + "beansprouts", + "sugar", + "sesame oil", + "ground white pepper", + "egg noodles", + "scallions" + ] + }, + { + "id": 12865, + "cuisine": "mexican", + "ingredients": [ + "salt", + "pork shoulder", + "corn tortillas", + "beef broth", + "chunky tomato salsa", + "water", + "fresh tomato salsa" + ] + }, + { + "id": 11179, + "cuisine": "italian", + "ingredients": [ + "Johnsonville® Mild Italian Ground Sausage", + "eggs", + "Kraft Grated Parmesan Cheese", + "dry bread crumbs", + "milk", + "onions" + ] + }, + { + "id": 23849, + "cuisine": "italian", + "ingredients": [ + "red wine", + "beef rib short", + "ground black pepper", + "salt", + "dried oregano", + "bacon", + "fresh lemon juice", + "butter", + "beef broth" + ] + }, + { + "id": 43927, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "vegetable stock", + "salt", + "ground ginger", + "mango chutney", + "garlic", + "onions", + "tomatoes", + "vegetable oil", + "malt vinegar", + "red lentils", + "potatoes", + "cauliflower florets", + "fresh parsley" + ] + }, + { + "id": 1391, + "cuisine": "chinese", + "ingredients": [ + "chinese noodles", + "walnuts", + "sesame seeds", + "salt", + "celery", + "lettuce", + "green onions", + "peanut oil", + "boneless chicken breast halves", + "seasoned rice wine vinegar", + "white sugar" + ] + }, + { + "id": 38324, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "sherry", + "fresh basil", + "olive oil", + "garlic cloves", + "arborio rice", + "corn kernels", + "shallots", + "black pepper", + "fresh parmesan cheese", + "lobster meat" + ] + }, + { + "id": 30944, + "cuisine": "moroccan", + "ingredients": [ + "fat free less sodium chicken broth", + "fresh orange juice", + "ground coriander", + "cooking spray", + "lamb loin chops", + "garlic salt", + "olive oil", + "grated carrot", + "couscous", + "ground cinnamon", + "green onions", + "sweet paprika", + "ground cumin" + ] + }, + { + "id": 46250, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "bay leaves", + "raisins", + "cilantro leaves", + "onions", + "coriander powder", + "vegetable oil", + "garlic", + "green chilies", + "nuts", + "garam masala", + "chili powder", + "ginger", + "essence", + "basmati rice", + "tomatoes", + "mint leaves", + "butter", + "salt", + "cardamom", + "saffron" + ] + }, + { + "id": 45356, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "butter", + "cumin seed", + "tomatoes", + "chili powder", + "cilantro leaves", + "onions", + "red lentils", + "french fried onions", + "lemon", + "garlic cloves", + "tumeric", + "vegetable oil", + "ground coriander" + ] + }, + { + "id": 18936, + "cuisine": "southern_us", + "ingredients": [ + "blanched almond flour", + "agave nectar", + "eggs", + "Earth Balance Natural Buttery Spread", + "dough", + "sea salt", + "baking soda" + ] + }, + { + "id": 35323, + "cuisine": "cajun_creole", + "ingredients": [ + "red kidney beans", + "dried thyme", + "vegetable broth", + "rice", + "andouille sausage", + "green onions", + "salt", + "green bell pepper", + "olive oil", + "garlic", + "celery", + "water", + "cajun seasoning", + "yellow onion" + ] + }, + { + "id": 2606, + "cuisine": "mexican", + "ingredients": [ + "soy sauce", + "olive oil", + "garlic", + "dried oregano", + "lime juice", + "chili powder", + "lemon juice", + "black pepper", + "flank steak", + "orange juice", + "ground cumin", + "fresh cilantro", + "paprika", + "chipotle peppers" + ] + }, + { + "id": 43799, + "cuisine": "irish", + "ingredients": [ + "ground walnuts", + "salt", + "dried cranberries", + "whole wheat flour", + "baking powder", + "grated lemon zest", + "large eggs", + "all-purpose flour", + "fat free milk", + "butter", + "cream cheese, soften" + ] + }, + { + "id": 26432, + "cuisine": "british", + "ingredients": [ + "eggs", + "all-purpose flour", + "butter", + "salt", + "Madeira", + "white sugar" + ] + }, + { + "id": 30027, + "cuisine": "italian", + "ingredients": [ + "ground pepper", + "extra-virgin olive oil", + "chopped parsley", + "reduced sodium chicken broth", + "boneless skinless chicken breasts", + "salt", + "capers", + "dry white wine", + "garlic", + "sweet onion", + "lemon", + "all-purpose flour" + ] + }, + { + "id": 32070, + "cuisine": "brazilian", + "ingredients": [ + "cachaca", + "lime", + "granulated sugar" + ] + }, + { + "id": 42051, + "cuisine": "cajun_creole", + "ingredients": [ + "crawfish", + "butter", + "garlic cloves", + "spinach", + "mushrooms", + "salt", + "black pepper", + "green onions", + "fresh oregano", + "fresh parmesan cheese", + "part-skim ricotta cheese", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 2138, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "hot pepper sauce", + "chipotles in adobo", + "kidney beans", + "lean ground beef", + "ground cumin", + "shredded cheddar cheese", + "chili powder", + "onions", + "garlic powder", + "diced tomatoes" + ] + }, + { + "id": 38307, + "cuisine": "indian", + "ingredients": [ + "salt", + "greek yogurt", + "carrots", + "black mustard seeds", + "ground cumin", + "fresh cilantro", + "cucumber" + ] + }, + { + "id": 41095, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "fresh chevre", + "red wine vinegar", + "radicchio", + "soppressata", + "peperoncini", + "extra-virgin olive oil" + ] + }, + { + "id": 27195, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "ground pork", + "cilantro leaves", + "bay leaf", + "crumbles", + "garlic", + "garlic cloves", + "long grain white rice", + "eggs", + "cheese", + "oil", + "onions", + "chipotle", + "salt", + "corn tortillas", + "oregano" + ] + }, + { + "id": 13133, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "honey", + "sherry", + "pork spareribs", + "chinese mustard", + "Sriracha", + "sesame oil", + "brown sugar", + "reduced sodium soy sauce", + "onion powder", + "toasted sesame seeds", + "chicken stock", + "minced garlic", + "hoisin sauce", + "chinese five-spice powder" + ] + }, + { + "id": 29930, + "cuisine": "british", + "ingredients": [ + "fresh sage", + "kosher salt", + "pie dough", + "pork meat", + "eggs", + "ground black pepper", + "bread crumbs", + "onions" + ] + }, + { + "id": 24559, + "cuisine": "mexican", + "ingredients": [ + "corn", + "salsa", + "chicken breasts", + "black beans" + ] + }, + { + "id": 15382, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "lobster", + "salt", + "fresh parsley leaves", + "mild olive oil", + "dende oil", + "green pepper", + "onions", + "sea bass", + "spring onions", + "cilantro leaves", + "coconut milk", + "lime", + "garlic", + "freshly ground pepper" + ] + }, + { + "id": 19603, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "lettuce leaves", + "apples", + "bone-in short ribs", + "red chili peppers", + "ground black pepper", + "sesame oil", + "scallions", + "roasted sesame seeds", + "peeled fresh ginger", + "garlic", + "cooked white rice", + "soy sauce", + "granulated sugar", + "vegetable oil", + "korean chile" + ] + }, + { + "id": 1491, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "nectarines", + "pecan halves", + "large egg yolks" + ] + }, + { + "id": 32216, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chili oil", + "scallions", + "toasted sesame seeds", + "bean paste", + "cilantro leaves", + "chinkiang vinegar", + "silken tofu", + "garlic", + "sesame paste", + "sugar", + "szechwan peppercorns", + "cumin seed", + "celery" + ] + }, + { + "id": 4100, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "corn chips", + "cream cheese, soften", + "blue corn tortilla chips", + "salsa", + "lime juice", + "cheese", + "chopped cilantro fresh", + "chips", + "salt" + ] + }, + { + "id": 41086, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "fine sea salt", + "cumin seed", + "rose petals", + "cayenne pepper", + "carrots", + "almonds", + "plums", + "fresh lemon juice", + "extra-virgin olive oil", + "chickpeas", + "fresh mint" + ] + }, + { + "id": 31074, + "cuisine": "korean", + "ingredients": [ + "lemon juice", + "butter", + "pears", + "brown sugar", + "orange zest", + "ginger" + ] + }, + { + "id": 35172, + "cuisine": "indian", + "ingredients": [ + "sugar", + "fresh ginger", + "butter", + "ground coriander", + "kosher salt", + "nonfat plain greek yogurt", + "cilantro", + "ground cumin", + "boneless chicken skinless thigh", + "garam masala", + "heavy cream", + "onions", + "cooked rice", + "crushed tomatoes", + "jalapeno chilies", + "garlic" + ] + }, + { + "id": 5440, + "cuisine": "jamaican", + "ingredients": [ + "plain flour", + "curry powder", + "green onions", + "dry bread crumbs", + "tumeric", + "ground black pepper", + "ice water", + "ground beef", + "eggs", + "olive oil", + "butter", + "garlic cloves", + "chicken stock", + "shortening", + "pastry dough", + "salt", + "onions" + ] + }, + { + "id": 41433, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "ground black pepper", + "celery", + "pasta", + "kosher salt", + "garlic cloves", + "plum tomatoes", + "tomato paste", + "French lentils", + "carrots", + "pecorino cheese", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 9376, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil cooking spray", + "vegetable oil", + "chopped onion", + "ground pepper", + "chopped celery", + "halibut fillets", + "dry red wine", + "shrimp", + "tomatoes", + "fresh thyme", + "salt" + ] + }, + { + "id": 18161, + "cuisine": "mexican", + "ingredients": [ + "red kidney beans", + "chili powder", + "dried parsley", + "lime juice", + "frozen corn kernels", + "cumin", + "black beans", + "vegetable oil", + "chunky salsa", + "garbanzo beans", + "pinto beans" + ] + }, + { + "id": 31136, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "yellow onion", + "garlic", + "diced tomatoes", + "long-grain rice", + "chicken stock", + "cilantro leaves" + ] + }, + { + "id": 17203, + "cuisine": "cajun_creole", + "ingredients": [ + "black-eyed peas", + "Gold Medal All Purpose Flour", + "chopped garlic", + "andouille sausage", + "cooked chicken", + "peanut oil", + "progresso reduced sodium chicken broth", + "chopped green bell pepper", + "creole seasoning", + "sweet onion", + "chopped celery", + "shrimp" + ] + }, + { + "id": 30962, + "cuisine": "indian", + "ingredients": [ + "ravva", + "curds", + "seeds", + "flour", + "wheat flour", + "salt" + ] + }, + { + "id": 17297, + "cuisine": "filipino", + "ingredients": [ + "prawns", + "acorn squash", + "onions", + "caster sugar", + "clove garlic, fine chop", + "green beans", + "butter", + "firm tofu", + "fresh ginger", + "salt", + "coconut milk" + ] + }, + { + "id": 17570, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "heavy cream", + "ground beef", + "olive oil", + "red pepper flakes", + "carrots", + "pancetta", + "bell pepper", + "white rice", + "grated parmesan cheese", + "red wine", + "celery" + ] + }, + { + "id": 29134, + "cuisine": "jamaican", + "ingredients": [ + "olive oil", + "salt", + "red bell pepper", + "ginger", + "scallions", + "onions", + "dark rum", + "ground allspice", + "fresh lime juice", + "chiles", + "garlic", + "leg of lamb", + "mango" + ] + }, + { + "id": 23948, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "shredded pepper jack cheese", + "shredded cheddar cheese", + "flour tortillas", + "red enchilada sauce", + "tomatoes", + "sliced black olives", + "taco seasoning", + "water", + "lean ground beef" + ] + }, + { + "id": 49412, + "cuisine": "spanish", + "ingredients": [ + "egg yolks", + "lemon zest", + "ground almonds", + "ground cinnamon", + "orange blossom honey", + "egg whites" + ] + }, + { + "id": 29797, + "cuisine": "greek", + "ingredients": [ + "strawberries", + "greek yogurt", + "lemon juice", + "sugar" + ] + }, + { + "id": 39186, + "cuisine": "thai", + "ingredients": [ + "jasmine rice" + ] + }, + { + "id": 7247, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "vegetable oil", + "cooked turkey", + "onions", + "water", + "salt", + "fresh tomatoes", + "garlic powder", + "chopped cilantro fresh" + ] + }, + { + "id": 9944, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "sea salt", + "nuoc cham", + "fish sauce", + "hot pepper", + "garlic cloves", + "pepper", + "rice vinegar", + "rice flour", + "Rice Krispies Cereal", + "lime", + "peanut oil", + "fillets" + ] + }, + { + "id": 6052, + "cuisine": "japanese", + "ingredients": [ + "milk", + "butter", + "lemon juice", + "egg whites", + "salt", + "granulated sugar", + "cake flour", + "corn starch", + "cream of tartar", + "egg yolks", + "cream cheese" + ] + }, + { + "id": 34360, + "cuisine": "italian", + "ingredients": [ + "baguette", + "balsamic reduction", + "fresh rosemary", + "salt", + "pepper", + "goat cheese", + "green onions", + "seedless red grapes" + ] + }, + { + "id": 25054, + "cuisine": "korean", + "ingredients": [ + "red chili powder", + "soy sauce", + "fresh ginger", + "green onions", + "sticky rice", + "beef rib short", + "nashi", + "water", + "jalapeno chilies", + "sesame oil", + "salt", + "brown sugar", + "black pepper", + "sesame seeds", + "spring onions", + "garlic", + "oil", + "sugar", + "red leaf lettuce", + "flanken short ribs", + "rice wine", + "soybean paste", + "onions" + ] + }, + { + "id": 28504, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "shredded sharp cheddar cheese", + "saltines", + "cajun seasoning", + "elbow macaroni", + "milk", + "all-purpose flour", + "Velveeta", + "butter", + "onions" + ] + }, + { + "id": 34204, + "cuisine": "french", + "ingredients": [ + "eggplant", + "cooking spray", + "1% low-fat milk", + "garlic cloves", + "plum tomatoes", + "black pepper", + "ground black pepper", + "asiago", + "all-purpose flour", + "cream cheese, soften", + "fresh basil", + "ground nutmeg", + "dry white wine", + "salt", + "red bell pepper", + "olive oil", + "zucchini", + "crepes", + "chopped onion", + "fresh parsley" + ] + }, + { + "id": 26202, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "herbs", + "tomato sauce", + "salt", + "pepper", + "frozen stir fry vegetable blend", + "cooked rice", + "basil" + ] + }, + { + "id": 30106, + "cuisine": "southern_us", + "ingredients": [ + "cocoa", + "butter", + "salt", + "white vinegar", + "baking soda", + "red food coloring", + "cream cheese frosting", + "buttermilk", + "all-purpose flour", + "sugar", + "large eggs", + "vanilla extract" + ] + }, + { + "id": 10626, + "cuisine": "filipino", + "ingredients": [ + "sweet rice", + "coconut milk", + "water", + "brown sugar" + ] + }, + { + "id": 32464, + "cuisine": "southern_us", + "ingredients": [ + "lemonade concentrate", + "crushed ice", + "water", + "vodka", + "peaches" + ] + }, + { + "id": 48188, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "spring onions", + "garlic", + "carrots", + "peanuts", + "ginger", + "rice vinegar", + "chicken thighs", + "fresh coriander", + "szechwan peppercorns", + "runny honey", + "cucumber", + "red chili peppers", + "cress", + "cornflour", + "oil" + ] + }, + { + "id": 34765, + "cuisine": "french", + "ingredients": [ + "white sugar", + "heavy cream", + "egg yolks", + "chocolate chips", + "vanilla extract" + ] + }, + { + "id": 8496, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "guajillo chiles", + "coarse salt", + "ancho chile pepper", + "avocado", + "white corn tortillas", + "lime wedges", + "garlic cloves", + "dried oregano", + "serrano chilies", + "white onion", + "vine ripened tomatoes", + "fresh lime juice", + "black peppercorns", + "fresh coriander", + "peanut oil", + "plum tomatoes" + ] + }, + { + "id": 9514, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "rice wine", + "garlic", + "kimchi", + "chicken broth", + "kosher salt", + "ginger", + "scallions", + "chile powder", + "pork belly", + "sesame oil", + "rice vinegar", + "canola oil", + "sugar", + "shiitake", + "white rice", + "medium firm tofu" + ] + }, + { + "id": 32503, + "cuisine": "indian", + "ingredients": [ + "eggs", + "meat", + "red food coloring", + "serrano chile", + "kosher salt", + "paprika", + "corn starch", + "soy sauce", + "chicken wing drummettes", + "garlic", + "canola oil", + "flour", + "ginger", + "chutney" + ] + }, + { + "id": 38665, + "cuisine": "japanese", + "ingredients": [ + "sake", + "pepper", + "soy sauce", + "salt", + "sugar", + "mirin", + "boneless chicken thighs" + ] + }, + { + "id": 215, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "corn", + "queso fresco", + "chili powder" + ] + }, + { + "id": 26535, + "cuisine": "italian", + "ingredients": [ + "garlic bulb", + "extra-virgin olive oil", + "parmesan cheese", + "plum tomatoes", + "fat-free reduced-sodium chicken broth", + "gnocchi", + "sage leaves", + "cracked black pepper" + ] + }, + { + "id": 3579, + "cuisine": "southern_us", + "ingredients": [ + "grapeseed oil", + "kosher salt", + "wondra flour", + "ground red pepper", + "boneless chicken skinless thigh", + "peanut butter" + ] + }, + { + "id": 34677, + "cuisine": "british", + "ingredients": [ + "worcestershire sauce", + "filet", + "frozen pastry puff sheets", + "garlic", + "ground black pepper", + "heavy cream", + "onions", + "fresh thyme leaves", + "salt" + ] + }, + { + "id": 25878, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "spaghetti", + "peeled tomatoes", + "salt", + "fresh basil", + "chees fresh mozzarella", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 1806, + "cuisine": "mexican", + "ingredients": [ + "guacamole", + "cilantro leaves", + "hot pepper sauce", + "cheese", + "cooked chicken breasts", + "corn tortilla chips", + "spring onions", + "salsa", + "jalapeno chilies", + "crème fraîche" + ] + }, + { + "id": 7855, + "cuisine": "french", + "ingredients": [ + "fresh thyme", + "cracked black pepper", + "bay leaf", + "water", + "dry white wine", + "all-purpose flour", + "bread ciabatta", + "beef stock", + "gruyere cheese", + "unsalted butter", + "sea salt", + "yellow onion" + ] + }, + { + "id": 20443, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "olive oil", + "boneless skinless chicken breasts", + "purple onion", + "toasted sesame oil", + "brown sugar", + "sesame seeds", + "crushed red pepper flakes", + "rice vinegar", + "grape tomatoes", + "fresh ginger", + "mandarin oranges", + "salt", + "pepper", + "black sesame seeds", + "garlic", + "mixed greens" + ] + }, + { + "id": 138, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "plum tomatoes", + "fresh thyme leaves", + "feta cheese", + "oil cured olives", + "freshly ground pepper" + ] + }, + { + "id": 34651, + "cuisine": "southern_us", + "ingredients": [ + "water", + "butter", + "onions", + "bone-in chicken breast halves", + "baking powder", + "all-purpose flour", + "condensed cream of chicken soup", + "ground black pepper", + "salt", + "chicken broth", + "milk", + "vegetable shortening" + ] + }, + { + "id": 2046, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "water", + "boneless chicken breast", + "rice vinegar", + "canola oil", + "chicken stock", + "sweet chili sauce", + "sesame seeds", + "red pepper flakes", + "corn starch", + "soy sauce", + "honey", + "sesame oil", + "garlic cloves", + "ground ginger", + "pepper", + "chili paste", + "salt", + "panko breadcrumbs" + ] + }, + { + "id": 46180, + "cuisine": "italian", + "ingredients": [ + "miniature chocolate chips", + "sugar", + "pound cake", + "ricotta cheese" + ] + }, + { + "id": 48425, + "cuisine": "mexican", + "ingredients": [ + "chili flakes", + "avocado", + "jalapeno chilies", + "feta cheese", + "tortilla wraps", + "hummus" + ] + }, + { + "id": 46543, + "cuisine": "chinese", + "ingredients": [ + "mushrooms", + "carrots", + "cashew nuts", + "soy sauce", + "vegetable oil", + "celery", + "chicken broth", + "chicken breasts", + "corn starch", + "water chestnuts", + "pea pods", + "onions" + ] + }, + { + "id": 3801, + "cuisine": "italian", + "ingredients": [ + "sea salt", + "red bell pepper", + "eggs", + "garlic", + "bacon", + "crushed red pepper", + "italian sausage", + "basil", + "onions" + ] + }, + { + "id": 10179, + "cuisine": "italian", + "ingredients": [ + "leg of lamb", + "sea salt", + "fresh rosemary", + "garlic cloves" + ] + }, + { + "id": 21468, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil cooking spray", + "flour tortillas", + "salsa", + "sliced green onions", + "green chile", + "water", + "non-fat sour cream", + "iceberg lettuce", + "white vinegar", + "tomato sauce", + "chili powder", + "hot sauce", + "ground cumin", + "reduced fat monterey jack cheese", + "pork", + "garlic", + "oregano" + ] + }, + { + "id": 42182, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "vanilla", + "french bread", + "whiskey", + "milk", + "margarine", + "raisins", + "sucralose sweetener" + ] + }, + { + "id": 47080, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "sesame oil", + "garlic cloves", + "curry powder", + "Thai red curry paste", + "coconut milk", + "cooked rice", + "fresh ginger", + "peeled shrimp", + "soy sauce", + "cilantro", + "red bell pepper" + ] + }, + { + "id": 31346, + "cuisine": "mexican", + "ingredients": [ + "water", + "dri oregano leaves, crush", + "cooked chicken", + "corn tortillas", + "Mexican cheese blend", + "Campbell's Condensed Cream of Chicken Soup", + "green chile", + "chili powder" + ] + }, + { + "id": 38486, + "cuisine": "french", + "ingredients": [ + "minced garlic", + "eggplant", + "lemon juice", + "tomatoes", + "large egg whites", + "salt", + "reduced fat mayonnaise", + "dried basil", + "zucchini", + "red bell pepper", + "pepper", + "olive oil", + "dry bread crumbs" + ] + }, + { + "id": 35827, + "cuisine": "french", + "ingredients": [ + "black peppercorns", + "beef broth", + "olive oil", + "filet mignon", + "cognac", + "butter" + ] + }, + { + "id": 19874, + "cuisine": "russian", + "ingredients": [ + "nutmeg", + "butter", + "thyme", + "pepper", + "beef broth", + "onions", + "light cream", + "lemon juice", + "eggs", + "salt", + "ground beef" + ] + }, + { + "id": 16147, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salsa", + "Campbell's Condensed Tomato Soup", + "water", + "ground beef", + "flour tortillas" + ] + }, + { + "id": 19891, + "cuisine": "southern_us", + "ingredients": [ + "diced pimentos", + "sugar", + "white cheddar cheese", + "granulated garlic", + "onion powder", + "cayenne pepper", + "cheddar cheese", + "white pepper", + "salt", + "mayonaise", + "paprika", + "cream cheese" + ] + }, + { + "id": 4216, + "cuisine": "indian", + "ingredients": [ + "peeled tomatoes", + "peanut oil", + "onions", + "mild curry powder", + "jalapeno chilies", + "garlic cloves", + "unsweetened coconut milk", + "fresh ginger", + "freshly ground pepper", + "large shrimp", + "sugar", + "salt", + "chopped cilantro" + ] + }, + { + "id": 36807, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "olive oil", + "green onions", + "garlic cloves", + "water", + "leeks", + "salt", + "ground turkey", + "bread crumbs", + "reduced fat milk", + "linguine", + "corn starch", + "marsala wine", + "dried thyme", + "golden raisins", + "grated lemon zest" + ] + }, + { + "id": 48329, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "peanuts", + "boneless skinless chicken breasts", + "carrots", + "chicken stock", + "lime rind", + "granulated sugar", + "garlic", + "red bell pepper", + "rice stick noodles", + "ketchup", + "hot pepper sauce", + "vegetable oil", + "corn starch", + "eggs", + "lime juice", + "green onions", + "gingerroot", + "beansprouts" + ] + }, + { + "id": 21270, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "pizza sauce", + "crescent rolls", + "italian sausage", + "pepperoni" + ] + }, + { + "id": 36023, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "cilantro leaves", + "corn tortillas", + "cheddar cheese", + "coarse salt", + "freshly ground pepper", + "iceberg lettuce", + "avocado", + "ground sirloin", + "yellow onion", + "dried oregano", + "lime", + "tomato salsa", + "sour cream", + "ground cumin" + ] + }, + { + "id": 28091, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "bay leaves", + "bacon slices", + "onions", + "leeks", + "butter", + "thyme sprigs", + "pork shoulder roast", + "dry white wine", + "salt", + "low sodium chicken broth", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 23480, + "cuisine": "thai", + "ingredients": [ + "coconut milk", + "water", + "bamboo shoots", + "fish sauce", + "ground beef", + "red curry paste" + ] + }, + { + "id": 26369, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless chicken skinless thigh", + "vegetable oil", + "beer", + "onions", + "chicken stock", + "gumbo file", + "all-purpose flour", + "celery", + "italian sausage", + "pepper", + "salt", + "shrimp", + "green bell pepper", + "bay leaves", + "cayenne pepper", + "cooked white rice" + ] + }, + { + "id": 8909, + "cuisine": "vietnamese", + "ingredients": [ + "eggs", + "corn oil", + "corn starch", + "water", + "all-purpose flour", + "chile sauce", + "sugar", + "salt", + "coconut milk", + "corn kernels", + "coconut cream" + ] + }, + { + "id": 41897, + "cuisine": "chinese", + "ingredients": [ + "lamb shanks", + "dry sherry", + "garlic cloves", + "fresh ginger", + "peanut oil", + "boiling water", + "steamed white rice", + "chinese five-spice powder", + "sliced green onions", + "black bean garlic sauce", + "dried shiitake mushrooms", + "chopped cilantro fresh" + ] + }, + { + "id": 5683, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "yukon gold potatoes", + "ground coriander", + "onions", + "ground ginger", + "garbanzo beans", + "salt", + "ground cardamom", + "cauliflower", + "olive oil", + "diced tomatoes", + "cumin seed", + "ground turmeric", + "ground cinnamon", + "garam masala", + "cayenne pepper", + "coconut milk" + ] + }, + { + "id": 816, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "American cheese", + "cream of tomato soup", + "milk", + "white sugar", + "butter" + ] + }, + { + "id": 15481, + "cuisine": "greek", + "ingredients": [ + "pepper", + "salt", + "olive oil", + "sweet onion", + "dried oregano", + "tomatoes", + "fresh green bean" + ] + }, + { + "id": 33394, + "cuisine": "japanese", + "ingredients": [ + "black sesame seeds", + "cayenne pepper", + "soy sauce", + "linguine", + "fresh ginger", + "rice vinegar", + "green onions", + "toasted sesame oil" + ] + }, + { + "id": 35792, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "star anise", + "lemon juice", + "light brown sugar", + "fresh ginger", + "purple onion", + "mango", + "tumeric", + "cardamon", + "salt", + "ground cumin", + "cider vinegar", + "garlic", + "nigella seeds" + ] + }, + { + "id": 42767, + "cuisine": "mexican", + "ingredients": [ + "orange", + "vegetable oil", + "orange juice", + "sugar", + "large eggs", + "salt", + "lard", + "piloncillo", + "lime", + "anise", + "cinnamon sticks", + "water", + "dark rum", + "all-purpose flour" + ] + }, + { + "id": 8102, + "cuisine": "brazilian", + "ingredients": [ + "manioc flour", + "sausage links", + "orange", + "kale", + "large eggs", + "bacon", + "ground coriander", + "breakfast sausage links", + "chorizo sausage", + "adobo style seasoning", + "white wine", + "fresh cilantro", + "olive oil", + "pork tenderloin", + "beef tenderloin", + "scallions", + "cooked white rice", + "ground cumin", + "pico de gallo", + "dried black beans", + "water", + "lime", + "unsalted butter", + "lemon", + "purple onion", + "ground cayenne pepper", + "greens", + "tomatoes", + "farofa", + "kosher salt", + "spanish onion", + "ground black pepper", + "bay leaves", + "garlic", + "ham hock", + "serrano chile" + ] + }, + { + "id": 47862, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "large eggs", + "yellow corn meal", + "water", + "cooked shrimp", + "fontina cheese", + "prosciutto", + "fresh chives", + "pizza doughs" + ] + }, + { + "id": 30534, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "large eggs", + "garlic", + "frozen peas", + "white pepper", + "sesame oil", + "spam", + "soy sauce", + "green onions", + "frozen corn", + "cooked rice", + "Sriracha", + "vegetable oil", + "carrots" + ] + }, + { + "id": 39721, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "lime", + "flank steak", + "queso fresco", + "corn tortillas", + "kosher salt", + "ground black pepper", + "onion powder", + "garlic", + "soy sauce", + "olive oil", + "chili powder", + "cilantro", + "cumin", + "lime juice", + "guacamole", + "apple cider vinegar", + "fresh oregano" + ] + }, + { + "id": 23627, + "cuisine": "british", + "ingredients": [ + "lemon juice", + "sugar", + "gingerroot", + "seville oranges" + ] + }, + { + "id": 23102, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "boneless skinless chicken breasts", + "corn tortillas", + "sweet onion", + "cayenne pepper", + "black beans", + "red pepper", + "cumin", + "olive oil", + "enchilada sauce" + ] + }, + { + "id": 40956, + "cuisine": "mexican", + "ingredients": [ + "red potato", + "paprika", + "yellow onion", + "chopped cilantro", + "ground black pepper", + "chile de arbol", + "fatback", + "canola oil", + "kosher salt", + "ground pork", + "ground coriander", + "oregano", + "apple cider vinegar", + "garlic", + "dried guajillo chiles", + "ground cumin" + ] + }, + { + "id": 31316, + "cuisine": "filipino", + "ingredients": [ + "granulated sugar", + "vanilla extract", + "whole milk", + "mango", + "mung beans", + "yams", + "unsweetened coconut milk", + "heavy cream" + ] + }, + { + "id": 14114, + "cuisine": "italian", + "ingredients": [ + "Gold Medal Flour", + "extra-virgin olive oil", + "warm water", + "honey", + "active dry yeast", + "garlic salt", + "kosher salt", + "granulated sugar" + ] + }, + { + "id": 47515, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "ice water", + "maple syrup", + "brown rice syrup", + "large eggs", + "vanilla extract", + "fresh lemon juice", + "large egg whites", + "vegetable shortening", + "all-purpose flour", + "pecan halves", + "bourbon whiskey", + "salt", + "fat free frozen top whip" + ] + }, + { + "id": 16885, + "cuisine": "chinese", + "ingredients": [ + "salt", + "sugar", + "garlic cloves", + "english cucumber", + "sesame oil", + "black vinegar" + ] + }, + { + "id": 29007, + "cuisine": "mexican", + "ingredients": [ + "egg whites", + "cocktail cherries", + "sweetened condensed milk", + "milk", + "baking powder", + "heavy whipping cream", + "egg yolks", + "all-purpose flour", + "evaporated milk", + "vanilla extract", + "white sugar" + ] + }, + { + "id": 17037, + "cuisine": "mexican", + "ingredients": [ + "fresh coriander", + "corn tortillas", + "vegetable oil", + "jalapeno chilies", + "onions", + "tomatoes", + "tomatillos" + ] + }, + { + "id": 6156, + "cuisine": "italian", + "ingredients": [ + "minced onion", + "ground beef", + "pasta sauce", + "salt", + "lasagna noodles", + "garlic salt", + "mozzarella cheese", + "large curd cottage cheese" + ] + }, + { + "id": 9843, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "Sriracha", + "worcestershire sauce", + "shrimp", + "sugar", + "lime", + "rice noodles", + "rice vinegar", + "fish sauce", + "fresh cilantro", + "large eggs", + "garlic", + "beansprouts", + "ketchup", + "peanuts", + "vegetable oil", + "scallions" + ] + }, + { + "id": 15107, + "cuisine": "indian", + "ingredients": [ + "ginger", + "rice flour", + "onions", + "sugar", + "green chilies", + "ghee", + "curry leaves", + "salt", + "chopped cilantro", + "peppercorns", + "maida flour", + "cumin seed", + "sooji" + ] + }, + { + "id": 49247, + "cuisine": "mexican", + "ingredients": [ + "chile pepper", + "onions", + "garlic", + "ground cumin", + "diced tomatoes", + "white sugar", + "whole peeled tomatoes", + "salt" + ] + }, + { + "id": 25994, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "lemon", + "red bell pepper", + "ground turmeric", + "hungarian sweet paprika", + "ground pepper", + "salt", + "onions", + "saffron threads", + "fish fillets", + "large garlic cloves", + "flat leaf parsley", + "brine-cured olives", + "vegetable oil", + "carrots", + "chopped cilantro fresh" + ] + }, + { + "id": 42093, + "cuisine": "italian", + "ingredients": [ + "canned low sodium chicken broth", + "zucchini", + "pasta shells", + "celery", + "dried rosemary", + "fresh rosemary", + "olive oil", + "raisins", + "dry bread crumbs", + "fresh parsley", + "crushed tomatoes", + "grated parmesan cheese", + "salt", + "ground beef", + "eggs", + "ground black pepper", + "garlic", + "carrots", + "onions" + ] + }, + { + "id": 5445, + "cuisine": "mexican", + "ingredients": [ + "triple sec", + "ice cubes", + "fresh lime juice", + "fresh lemon juice", + "silver tequila" + ] + }, + { + "id": 1554, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cilantro leaves", + "kosher salt", + "ground black pepper", + "orange", + "jalapeno chilies", + "white vinegar", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 27872, + "cuisine": "moroccan", + "ingredients": [ + "celery ribs", + "ground cinnamon", + "butter", + "all-purpose flour", + "chopped cilantro fresh", + "tomatoes", + "vermicelli", + "salt", + "onions", + "ground ginger", + "stewing beef", + "lemon", + "chickpeas", + "dried fig", + "tomato paste", + "ground black pepper", + "dates", + "flat leaf parsley" + ] + }, + { + "id": 20892, + "cuisine": "chinese", + "ingredients": [ + "baby bok choy", + "shaoxing", + "boiling water", + "romaine lettuce", + "ginger", + "oyster sauce", + "low sodium soy sauce", + "fat free less sodium chicken broth", + "garlic cloves", + "canola oil", + "sugar", + "dried shiitake mushrooms", + "corn starch" + ] + }, + { + "id": 13342, + "cuisine": "filipino", + "ingredients": [ + "pure vanilla extract", + "evaporated milk", + "sugar", + "condensed milk", + "eggs", + "salt", + "water" + ] + }, + { + "id": 31905, + "cuisine": "jamaican", + "ingredients": [ + "brown sugar", + "pepper", + "large garlic cloves", + "fresh lime juice", + "soy sauce", + "olive oil", + "grated nutmeg", + "onions", + "black pepper", + "fresh thyme leaves", + "ground allspice", + "kosher salt", + "cinnamon", + "scallions" + ] + }, + { + "id": 31662, + "cuisine": "chinese", + "ingredients": [ + "spring onions", + "long-grain rice", + "eggs", + "chinese five-spice powder", + "frozen petit pois", + "salt", + "toasted sesame oil", + "soy sauce", + "oil" + ] + }, + { + "id": 35551, + "cuisine": "indian", + "ingredients": [ + "white pepper", + "garam masala", + "green chilies", + "cinnamon sticks", + "cashew nuts", + "sugar", + "vegetables", + "salt", + "ground cardamom", + "onions", + "garlic paste", + "cream", + "paneer", + "oil", + "ghee", + "clove", + "plain yogurt", + "poppy seeds", + "kewra water", + "bay leaf", + "shahi jeera" + ] + }, + { + "id": 44635, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "powdered milk", + "bread flour", + "water", + "butter", + "caster sugar", + "soft buns", + "plain flour", + "instant yeast", + "salt" + ] + }, + { + "id": 41382, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "black beans", + "lime wedges", + "salt", + "shredded Monterey Jack cheese", + "grape tomatoes", + "jalapeno chilies", + "cilantro sprigs", + "fresh lime juice", + "cotija", + "cooking spray", + "purple onion", + "chopped cilantro fresh", + "smoked salmon", + "flour tortillas", + "reduced-fat sour cream", + "whole kernel corn, drain" + ] + }, + { + "id": 16667, + "cuisine": "japanese", + "ingredients": [ + "cold water", + "sesame oil", + "soy sauce", + "brown sugar", + "corn starch", + "garlic powder" + ] + }, + { + "id": 4333, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "chorizo", + "beef", + "green onions", + "cilantro", + "broccoli", + "olives", + "tomato paste", + "cheddar cheese", + "smoked sea salt", + "zucchini", + "queso fresco", + "garlic", + "red bell pepper", + "cumin", + "tomatoes", + "tomato sauce", + "ground pepper", + "jalapeno chilies", + "ancho powder", + "purple onion", + "seasoning mix", + "green bell pepper", + "taco seasoning mix", + "lasagna noodles", + "chili powder", + "cheese", + "smoked paprika", + "oregano" + ] + }, + { + "id": 39799, + "cuisine": "vietnamese", + "ingredients": [ + "coffee", + "sweetened condensed milk" + ] + }, + { + "id": 36859, + "cuisine": "spanish", + "ingredients": [ + "andouille sausage", + "finely chopped onion", + "diced tomatoes", + "red bell pepper", + "ground cumin", + "ground cinnamon", + "frozen whole kernel corn", + "lime wedges", + "garlic cloves", + "large shrimp", + "arborio rice", + "olive oil", + "Anaheim chile", + "salt", + "chopped cilantro fresh", + "fat free less sodium chicken broth", + "zucchini", + "paprika", + "fresh lime juice" + ] + }, + { + "id": 1191, + "cuisine": "spanish", + "ingredients": [ + "chicken broth", + "cooked chicken", + "shrimp", + "diced onions", + "ground black pepper", + "rice", + "green bell pepper", + "lemon", + "celery", + "mussels", + "minced garlic", + "green peas", + "chorizo sausage" + ] + }, + { + "id": 23180, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "extra firm tofu", + "salt", + "minced ginger", + "vegetable oil", + "oil", + "minced garlic", + "leeks", + "green pepper", + "celery ribs", + "light soy sauce", + "cracked black pepper", + "corn starch" + ] + }, + { + "id": 3574, + "cuisine": "vietnamese", + "ingredients": [ + "dark soy sauce", + "sugar", + "radishes", + "shallots", + "garlic", + "brown sugar", + "water", + "pork tenderloin", + "ginger", + "carrots", + "white vinegar", + "mayonaise", + "ground black pepper", + "jalapeno chilies", + "cilantro sprigs", + "fish sauce", + "french baguette", + "Sriracha", + "coarse salt", + "english cucumber" + ] + }, + { + "id": 6620, + "cuisine": "italian", + "ingredients": [ + "spelt", + "ground black pepper", + "garlic cloves", + "salad greens", + "vegetable broth", + "water", + "parmigiano reggiano cheese", + "chardonnay", + "olive oil", + "purple onion" + ] + }, + { + "id": 34440, + "cuisine": "brazilian", + "ingredients": [ + "orange juice", + "eggs", + "sugar" + ] + }, + { + "id": 34316, + "cuisine": "italian", + "ingredients": [ + "almond extract", + "slivered almonds", + "white sugar", + "egg whites" + ] + }, + { + "id": 21803, + "cuisine": "mexican", + "ingredients": [ + "pepperidge farm puff pastry sheets", + "prego traditional italian sauce", + "pitted olives", + "pace picante sauce", + "shredded cheddar cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 33884, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "oxtails", + "garlic", + "onions", + "fava beans", + "fresh ginger root", + "chile pepper", + "allspice berries", + "water", + "green onions", + "salt", + "soy sauce", + "fresh thyme", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 5638, + "cuisine": "mexican", + "ingredients": [ + "ground pepper", + "butter", + "corn tortillas", + "guacamole", + "garlic", + "lime", + "chili powder", + "frozen corn", + "cotija", + "chicken breasts", + "salt" + ] + }, + { + "id": 1961, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "fresh mozzarella", + "ground black pepper", + "shredded mozzarella cheese", + "prosciutto", + "pasta shells", + "tomato sauce", + "grated parmesan cheese" + ] + }, + { + "id": 27483, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "salt", + "chicken pieces", + "celery ribs", + "olive oil", + "carrots", + "snow peas", + "tomatoes", + "garlic", + "corn starch", + "water", + "oyster sauce", + "onions" + ] + }, + { + "id": 40357, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "green onions", + "salt", + "sugar", + "large eggs", + "chopped fresh thyme", + "grated Gruyère cheese", + "large egg whites", + "mushrooms", + "whipping cream", + "cold water", + "unsalted butter", + "shallots", + "all-purpose flour" + ] + }, + { + "id": 21670, + "cuisine": "italian", + "ingredients": [ + "sugar", + "olive oil", + "nutritional yeast", + "mushrooms", + "purple onion", + "carrots", + "tomato purée", + "dried porcini mushrooms", + "chopped tomatoes", + "dijon mustard", + "red wine", + "green pepper", + "bay leaf", + "plain flour", + "soy sauce", + "sun-dried tomatoes", + "lasagne", + "vegetable stock", + "salt", + "celery", + "fresh tomatoes", + "black pepper", + "soy milk", + "vegan margarine", + "garlic", + "green chilies", + "dried oregano" + ] + }, + { + "id": 32900, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "free-range chickens", + "cinnamon sticks", + "red chili peppers", + "ginger", + "onions", + "chicken stock", + "vegetables", + "rice", + "chicken", + "plain flour", + "hoisin sauce", + "garlic cloves" + ] + }, + { + "id": 16470, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "extra firm tofu", + "garlic cloves", + "fresh basil", + "fresh ginger", + "vegetable oil", + "lime juice", + "sesame oil", + "red bell pepper", + "brown sugar", + "chili paste", + "broccoli" + ] + }, + { + "id": 3989, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "lime juice", + "Italian parsley leaves", + "chopped onion", + "onions", + "tomatoes", + "black pepper", + "lime slices", + "cilantro leaves", + "chipotle peppers", + "canola oil", + "beans", + "salsa verde", + "garlic", + "corn tortillas", + "skirt steak", + "pico de gallo", + "kosher salt", + "green onions", + "rice", + "chopped cilantro", + "ground cumin" + ] + }, + { + "id": 9614, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "water", + "yoghurt", + "onions", + "tomato paste", + "cream", + "garam masala", + "garlic", + "black pepper", + "fresh ginger", + "cilantro", + "tomato sauce", + "olive oil", + "butter", + "chicken thighs" + ] + }, + { + "id": 2162, + "cuisine": "brazilian", + "ingredients": [ + "bay leaves", + "baby back ribs", + "dried black beans", + "sausages", + "garlic", + "onions", + "olive oil", + "carne seca" + ] + }, + { + "id": 39127, + "cuisine": "southern_us", + "ingredients": [ + "chicken breasts", + "barbecue sauce" + ] + }, + { + "id": 16779, + "cuisine": "thai", + "ingredients": [ + "olive oil", + "red curry paste", + "brown sugar", + "cooking spray", + "fresh lime juice", + "fish sauce", + "lemon grass", + "rice", + "jumbo shrimp", + "light coconut milk", + "chopped cilantro fresh" + ] + }, + { + "id": 24102, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "vegetable oil", + "pork sausages", + "grated parmesan cheese", + "shredded mozzarella cheese", + "egg whites", + "oven-ready lasagna noodles", + "zucchini", + "ricotta cheese" + ] + }, + { + "id": 9721, + "cuisine": "chinese", + "ingredients": [ + "duck stock", + "red chili peppers", + "granulated sugar", + "ginger", + "long grain white rice", + "duck breasts", + "kosher salt", + "loose leaf black tea", + "peanut oil", + "brown sugar", + "soy sauce", + "Shaoxing wine", + "star anise", + "black peppercorns", + "baby bok choy", + "shiitake", + "szechwan peppercorns", + "toasted sesame oil" + ] + }, + { + "id": 39358, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "chicken breasts", + "cumin seed", + "clove", + "water", + "salt", + "onions", + "red chili peppers", + "ginger", + "oil", + "tomatoes", + "garam masala", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 2770, + "cuisine": "brazilian", + "ingredients": [ + "salt", + "onions", + "habanero pepper", + "garlic cloves", + "vegetable oil", + "hot water", + "long-grain rice" + ] + }, + { + "id": 35859, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "chili powder", + "garlic cloves", + "ground cumin", + "lime juice", + "cooking spray", + "yellow onion", + "corn tortillas", + "fresh cilantro", + "seeds", + "firm tofu", + "chopped cilantro fresh", + "grape tomatoes", + "olive oil", + "salt", + "red bell pepper" + ] + }, + { + "id": 1183, + "cuisine": "british", + "ingredients": [ + "large eggs", + "salt", + "milk", + "all-purpose flour", + "butter" + ] + }, + { + "id": 16579, + "cuisine": "cajun_creole", + "ingredients": [ + "pasta", + "half & half", + "salt", + "fresh parsley", + "ground black pepper", + "butter", + "crab boil", + "crawfish", + "green onions", + "all-purpose flour", + "onions", + "grated parmesan cheese", + "garlic", + "celery" + ] + }, + { + "id": 9157, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "olives", + "cherry tomatoes", + "chiffonade", + "marinara sauce", + "nutritional yeast", + "purple onion" + ] + }, + { + "id": 26879, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "pepper", + "shiitake", + "apple cider vinegar", + "salt", + "carrots", + "panko breadcrumbs", + "eggs", + "ketchup", + "honey", + "water chestnuts", + "lean ground beef", + "chinese five-spice powder", + "red bell pepper", + "sugar pea", + "milk", + "hoisin sauce", + "sesame oil", + "pineapple juice", + "corn starch", + "chopped cilantro fresh", + "brown sugar", + "jasmine rice", + "sesame seeds", + "green onions", + "garlic", + "oil", + "fresh parsley" + ] + }, + { + "id": 10390, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "grated parmesan cheese", + "extra-virgin olive oil", + "fresh mint", + "ground black pepper", + "red pepper flakes", + "garlic cloves", + "large eggs", + "basil", + "fresh parsley leaves", + "chopped tomatoes", + "ricotta cheese", + "all-purpose flour", + "fresh basil leaves" + ] + }, + { + "id": 15738, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "fresh mint", + "zucchini", + "zucchini blossoms", + "pinenuts", + "fine sea salt", + "mint sprigs", + "fresh lemon juice" + ] + }, + { + "id": 31258, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "flat leaf parsley", + "black pepper", + "salt", + "dried porcini mushrooms", + "button mushrooms", + "water", + "garlic cloves" + ] + }, + { + "id": 7540, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 15826, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato purée", + "green onions", + "chopped celery", + "green pepper", + "white wine", + "cajun seasoning", + "all-purpose flour", + "garlic cloves", + "black pepper", + "turtle", + "salt", + "chopped onion", + "tomato paste", + "bay leaves", + "butter", + "hot sauce" + ] + }, + { + "id": 31669, + "cuisine": "italian", + "ingredients": [ + "sugar", + "eggplant", + "fresh mozzarella", + "flat leaf parsley", + "tomatoes", + "water", + "large eggs", + "garlic cloves", + "arugula", + "plain dry bread crumb", + "parmigiano reggiano cheese", + "basil", + "onions", + "hot red pepper flakes", + "olive oil", + "basil leaves", + "juice" + ] + }, + { + "id": 34669, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "butter", + "cooking spray", + "fresh orange juice", + "sea scallops", + "paprika", + "green onions", + "salt" + ] + }, + { + "id": 20623, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "raw sugar", + "ground chicken", + "shallots", + "soy sauce", + "yuzu", + "kosher salt", + "vegetable oil" + ] + }, + { + "id": 7786, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "olive oil", + "ground sirloin", + "fresh basil leaves", + "minced garlic", + "ground black pepper", + "crushed red pepper flakes", + "dried pasta", + "ground nutmeg", + "heavy cream", + "dried oregano", + "tomato paste", + "crushed tomatoes", + "grated parmesan cheese", + "dry red wine" + ] + }, + { + "id": 48998, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "vegetable broth", + "chicken", + "eggs", + "short-grain rice", + "rice vinegar", + "soy sauce", + "salt", + "sake", + "mirin", + "onions" + ] + }, + { + "id": 23181, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "canned low sodium chicken broth", + "cheese tortellini", + "spinach", + "grated parmesan cheese", + "water", + "garlic" + ] + }, + { + "id": 29983, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "salt", + "fresh dill", + "cajun seasoning", + "fresh lemon juice", + "garlic powder", + "tilapia", + "mayonaise", + "lemon", + "sour cream" + ] + }, + { + "id": 9527, + "cuisine": "british", + "ingredients": [ + "fresh mint", + "sugar", + "raspberry vinegar", + "boiling water" + ] + }, + { + "id": 21063, + "cuisine": "chinese", + "ingredients": [ + "vegetables", + "scallions", + "light soy sauce", + "szechwan peppercorns", + "corn starch", + "red chili peppers", + "boneless skinless chicken breasts", + "garlic cloves", + "peanuts", + "ginger" + ] + }, + { + "id": 48546, + "cuisine": "southern_us", + "ingredients": [ + "jalapeno chilies", + "whole kernel corn, drain", + "diced tomatoes", + "italian salad dressing", + "pimentos", + "red bell pepper", + "black-eyed peas", + "chopped onion" + ] + }, + { + "id": 46157, + "cuisine": "indian", + "ingredients": [ + "pepper", + "beef stock", + "rice", + "ground turmeric", + "green cardamom pods", + "chopped tomatoes", + "lamb shoulder", + "garlic cloves", + "red lentils", + "honey", + "sunflower oil", + "ground coriander", + "ground cumin", + "red chili peppers", + "fresh ginger root", + "salt", + "onions" + ] + }, + { + "id": 27285, + "cuisine": "mexican", + "ingredients": [ + "salt", + "vinegar", + "tomatoes", + "onions", + "chile pepper" + ] + }, + { + "id": 25070, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "lime", + "large garlic cloves", + "chopped cilantro", + "monterey jack", + "water", + "bay leaves", + "sour cream", + "pork butt roast", + "ground cumin", + "pepper", + "jalapeno chilies", + "purple onion", + "onions", + "canola oil", + "chicken broth", + "orange", + "chili powder", + "corn tortillas", + "dried oregano" + ] + }, + { + "id": 26162, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "dry fettuccine", + "hot Italian sausages", + "olive oil", + "garlic", + "arugula", + "cherry tomatoes", + "red wine vinegar", + "fresh basil leaves", + "black pepper", + "freshly grated parmesan", + "purple onion" + ] + }, + { + "id": 6357, + "cuisine": "chinese", + "ingredients": [ + "beaten eggs", + "chicken", + "black peppercorns", + "carrots", + "celery ribs", + "yellow onion", + "kosher salt", + "long grain white rice" + ] + }, + { + "id": 42168, + "cuisine": "chinese", + "ingredients": [ + "pork", + "low sodium chicken broth", + "corn starch", + "chinese mustard", + "light soy sauce", + "cooking wine", + "white pepper", + "sesame oil", + "sugar", + "fresh ginger root", + "medium firm tofu" + ] + }, + { + "id": 8437, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "beaten eggs", + "sugar", + "cream style corn", + "corn starch", + "seasoning salt", + "whole kernel corn, drain", + "butter-margarine blend", + "dry mustard", + "dried minced onion" + ] + }, + { + "id": 49657, + "cuisine": "indian", + "ingredients": [ + "jasmine rice", + "cumin seed", + "vegetable oil", + "water", + "salt" + ] + }, + { + "id": 25448, + "cuisine": "french", + "ingredients": [ + "sauce", + "fresh tarragon", + "lemon juice" + ] + }, + { + "id": 27857, + "cuisine": "mexican", + "ingredients": [ + "natural peanut butter", + "sesame seeds", + "sea salt", + "yellow onion", + "chicken broth", + "black pepper", + "chili powder", + "paprika", + "brownies", + "ground cloves", + "chicken breasts", + "diced tomatoes", + "cayenne pepper", + "coconut oil", + "sweetener", + "cinnamon", + "garlic", + "bay leaf" + ] + }, + { + "id": 21343, + "cuisine": "italian", + "ingredients": [ + "whole wheat pasta", + "artichoke hearts", + "flour", + "garlic cloves", + "pepper", + "parmesan cheese", + "butter", + "fresh basil leaves", + "fresh spinach", + "evaporated milk", + "cannellini beans", + "onions", + "pancetta", + "sun-dried tomatoes", + "roasted red peppers", + "salt", + "low-fat milk" + ] + }, + { + "id": 23950, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "baking powder", + "free range egg", + "ground ginger", + "ground cloves", + "salt", + "powdered sugar", + "vegetable oil", + "dark brown sugar", + "plain flour", + "unsalted butter", + "grated nutmeg" + ] + }, + { + "id": 28393, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "purple onion", + "corn tortillas", + "white vinegar", + "cooked turkey", + "vegetable oil", + "orange juice", + "lime juice", + "red cabbage", + "yellow onion", + "oregano", + "chicken broth", + "ground black pepper", + "salt", + "serrano chile" + ] + }, + { + "id": 12963, + "cuisine": "british", + "ingredients": [ + "egg yolks", + "all-purpose flour", + "english walnuts", + "baking powder", + "white sugar", + "egg whites", + "dates" + ] + }, + { + "id": 35184, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "butter", + "grated nutmeg", + "eggs", + "yellow squash", + "salt", + "fresh parsley", + "corn kernels", + "buttermilk", + "cayenne pepper", + "sugar", + "chopped fresh chives", + "all-purpose flour" + ] + }, + { + "id": 38166, + "cuisine": "southern_us", + "ingredients": [ + "orzo pasta", + "celery", + "white sugar", + "crushed tomatoes", + "cayenne pepper", + "onions", + "boneless chicken skinless thigh", + "salt", + "cooked shrimp", + "green bell pepper", + "garlic", + "bay leaf", + "italian seasoning" + ] + }, + { + "id": 44517, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "whole wheat penne rigate", + "extra-virgin olive oil", + "fresh parmesan cheese", + "fresh basil leaves", + "tomatoes", + "crushed red pepper" + ] + }, + { + "id": 42741, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "bacon", + "sauce", + "grated parmesan cheese", + "all-purpose flour", + "freshly ground pepper", + "unsalted butter", + "turkey", + "grated Gruyère cheese", + "tomatoes", + "refrigerated crescent rolls", + "grated nutmeg" + ] + }, + { + "id": 45905, + "cuisine": "indian", + "ingredients": [ + "melted butter", + "baking soda", + "sugar", + "wheat flour", + "eggs", + "curds", + "milk", + "yeast" + ] + }, + { + "id": 38691, + "cuisine": "indian", + "ingredients": [ + "purple onion", + "mustard seeds", + "fish", + "tamarind juice", + "green chilies", + "ground turmeric", + "grated coconut", + "salt", + "coriander", + "chili powder", + "oil", + "mango" + ] + }, + { + "id": 9109, + "cuisine": "french", + "ingredients": [ + "rooster", + "mushrooms", + "thyme sprigs", + "tomato paste", + "ground pepper", + "unsmoked bacon", + "clarified butter", + "parsley sprigs", + "leeks", + "carrots", + "burgundy", + "celery ribs", + "kosher salt", + "goose", + "onions" + ] + }, + { + "id": 42609, + "cuisine": "french", + "ingredients": [ + "gruyere cheese", + "frozen pastry puff sheets", + "fig jam" + ] + }, + { + "id": 30121, + "cuisine": "french", + "ingredients": [ + "white wine", + "cassis liqueur" + ] + }, + { + "id": 46808, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "Breyers® Natural Vanilla Ice Cream", + "dark corn syrup", + "bittersweet chocolate", + "sugar", + "chopped pecans", + "pie crust", + "vanilla extract", + "Country Crock® Spread" + ] + }, + { + "id": 6249, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "fresh lemon juice", + "brioche", + "foie gras", + "olive oil", + "jam", + "unsalted butter" + ] + }, + { + "id": 17111, + "cuisine": "southern_us", + "ingredients": [ + "frozen pie crust", + "all-purpose flour", + "pecan halves", + "bourbon whiskey", + "eggs", + "salted butter", + "semi-sweet chocolate morsels", + "sugar", + "vanilla extract" + ] + }, + { + "id": 43656, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "romano cheese", + "sirloin steak", + "flat leaf parsley", + "vegetable oil cooking spray", + "olive oil", + "beef broth", + "fresh basil", + "minced garlic", + "dry red wine", + "cooked ham", + "finely chopped onion", + "freshly ground pepper" + ] + }, + { + "id": 5655, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ricotta cheese", + "oregano", + "pepper", + "jumbo shells", + "pasta sauce", + "salt", + "grated parmesan cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 30929, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "vanilla extract", + "bread", + "wheat", + "lemon juice", + "light brown sugar", + "granulated sugar", + "salt", + "ground cinnamon", + "butter" + ] + }, + { + "id": 36863, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic", + "green onions", + "toasted sesame oil", + "fresh ginger", + "red bell pepper", + "thin spaghetti", + "vegetable oil", + "snow peas" + ] + }, + { + "id": 48269, + "cuisine": "chinese", + "ingredients": [ + "chinese rock sugar", + "dried apricot", + "pitted prunes", + "sweet rice", + "sour cherries", + "cold water", + "walnut halves", + "peanut oil", + "candied orange peel", + "chinese jujubes", + "sweetened red beans" + ] + }, + { + "id": 28347, + "cuisine": "italian", + "ingredients": [ + "pepper", + "basil leaves", + "olive oil", + "salt", + "pitted kalamata olives", + "roasted red peppers", + "olive oil cooking spray", + "baguette", + "cannellini beans" + ] + }, + { + "id": 952, + "cuisine": "greek", + "ingredients": [ + "plain yogurt", + "milk" + ] + }, + { + "id": 48144, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "coconut", + "garlic", + "cumin seed", + "coriander", + "tumeric", + "sunflower oil", + "crème fraîche", + "carrots", + "cashew nuts", + "chicken stock", + "potatoes", + "salt", + "black mustard seeds", + "frozen peas", + "pepper", + "ginger", + "natural yogurt", + "onions", + "ground cumin" + ] + }, + { + "id": 25067, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "scallions", + "canola oil", + "spring roll wrappers", + "fresh ginger", + "napa cabbage", + "glass noodles", + "lean ground pork", + "coarse salt", + "corn starch", + "sugar", + "large eggs", + "dry sherry", + "chopped garlic" + ] + }, + { + "id": 41093, + "cuisine": "italian", + "ingredients": [ + "eggs", + "cheese", + "butter", + "pasta" + ] + }, + { + "id": 34414, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking powder", + "fresh parsley", + "cream", + "salt", + "tomatoes", + "pepper", + "all-purpose flour", + "sugar", + "butter", + "corn kernel whole" + ] + }, + { + "id": 5335, + "cuisine": "italian", + "ingredients": [ + "cinnamon", + "corn starch", + "sugar", + "sea salt", + "dark chocolate", + "whipped cream", + "milk", + "vanilla extract" + ] + }, + { + "id": 33800, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "sambal chile paste", + "salt", + "glass noodles", + "olive oil", + "frying oil", + "carrots", + "pepper", + "spring onions", + "chili sauce", + "spring roll wrappers", + "minced meat", + "worcestershire sauce", + "ginger root" + ] + }, + { + "id": 21315, + "cuisine": "mexican", + "ingredients": [ + "colby jack cheese", + "garlic cloves", + "onions", + "table salt", + "vegetable oil", + "red bell pepper", + "light brown sugar", + "chili powder", + "elbow macaroni", + "ground cumin", + "crushed tomatoes", + "diced tomatoes", + "ground beef" + ] + }, + { + "id": 820, + "cuisine": "french", + "ingredients": [ + "black peppercorns", + "shiitake", + "vegetable oil", + "button mushrooms", + "celery", + "chicken stock", + "pearl onions", + "leeks", + "red wine", + "carrots", + "chicken thighs", + "rosemary", + "ground black pepper", + "butter", + "salt", + "onions", + "chicken legs", + "veal demi-glace", + "bay leaves", + "bacon", + "thyme" + ] + }, + { + "id": 23556, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "red wine vinegar", + "butter", + "pepper", + "chanterelle" + ] + }, + { + "id": 36957, + "cuisine": "mexican", + "ingredients": [ + "lime", + "chili powder", + "lemon juice", + "cumin", + "capers", + "tortillas", + "salt", + "steak", + "pepper", + "shredded cabbage", + "dill", + "oregano", + "cherry tomatoes", + "cilantro", + "sour cream", + "sliced green onions" + ] + }, + { + "id": 45411, + "cuisine": "indian", + "ingredients": [ + "vinegar", + "cayenne pepper", + "catfish fillets", + "garlic", + "ground cumin", + "vegetable oil", + "ground coriander", + "fresh ginger", + "salt" + ] + }, + { + "id": 13991, + "cuisine": "southern_us", + "ingredients": [ + "egg yolks", + "cinnamon rolls", + "pecans", + "vanilla extract", + "confectioners sugar", + "ground cinnamon", + "half & half", + "heavy whipping cream", + "sugar", + "salt" + ] + }, + { + "id": 21832, + "cuisine": "southern_us", + "ingredients": [ + "Ritz Crackers", + "onions", + "seasoning", + "sour cream", + "butter", + "cheddar cheese", + "squash" + ] + }, + { + "id": 40825, + "cuisine": "greek", + "ingredients": [ + "pepper", + "feta cheese crumbles", + "dressing", + "pepperoni turkei", + "whole wheat pita bread rounds", + "zucchini", + "romaine lettuce", + "purple onion" + ] + }, + { + "id": 33074, + "cuisine": "thai", + "ingredients": [ + "crumbles", + "mint leaves", + "cilantro leaves", + "glutinous rice", + "chili", + "shallots", + "fish sauce", + "lime juice", + "basil leaves", + "scallions", + "pork", + "palm sugar", + "vegetable oil" + ] + }, + { + "id": 18552, + "cuisine": "spanish", + "ingredients": [ + "mussels", + "white wine", + "lemon", + "squid", + "onions", + "chicken broth", + "ground black pepper", + "garlic", + "red bell pepper", + "large shrimp", + "arborio rice", + "olive oil", + "green peas", + "sausages", + "boneless skinless chicken breast halves", + "tomatoes", + "fresh thyme", + "salt", + "flat leaf parsley", + "saffron" + ] + }, + { + "id": 26852, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "grated parmesan cheese", + "spaghetti", + "ground black pepper", + "cayenne pepper", + "olive oil", + "salt", + "large eggs", + "flat leaf parsley" + ] + }, + { + "id": 34755, + "cuisine": "indian", + "ingredients": [ + "water", + "garlic", + "onions", + "tomatoes", + "coriander seeds", + "green chilies", + "red lentils", + "olive oil", + "salt", + "ground cumin", + "fresh coriander", + "ginger", + "mustard seeds" + ] + }, + { + "id": 38512, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "diced tomatoes", + "corn tortillas", + "chicken", + "diced red onions", + "vegetable oil", + "garlic", + "coriander", + "jack cheese", + "chili powder", + "extra-virgin olive oil", + "onions", + "ground cumin", + "agave nectar", + "queso fresco", + "hot sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 14335, + "cuisine": "indian", + "ingredients": [ + "unsalted butter" + ] + }, + { + "id": 1141, + "cuisine": "french", + "ingredients": [ + "fat free yogurt", + "all-purpose flour", + "cooking spray", + "nectarines", + "large eggs", + "vanilla soy milk", + "sugar", + "vanilla extract" + ] + }, + { + "id": 31432, + "cuisine": "filipino", + "ingredients": [ + "corn", + "sugar", + "coconut milk", + "sweet rice", + "coconut cream", + "water" + ] + }, + { + "id": 29898, + "cuisine": "cajun_creole", + "ingredients": [ + "Red Gold® diced tomatoes", + "cooked rice", + "kielbasa", + "red beans", + "hot pepper sauce", + "onions" + ] + }, + { + "id": 18617, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "oatmeal", + "buttermilk", + "flour", + "whole wheat flour", + "salt" + ] + }, + { + "id": 38095, + "cuisine": "chinese", + "ingredients": [ + "hard-boiled egg", + "napa cabbage", + "fresh lemon juice", + "soy sauce", + "green onions", + "dried shiitake mushrooms", + "chopped cilantro fresh", + "sugar", + "peeled fresh ginger", + "rice vinegar", + "Chinese egg noodles", + "minced garlic", + "sesame oil", + "peanut oil" + ] + }, + { + "id": 1659, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "leeks", + "thyme", + "dijon mustard", + "extra-virgin olive oil", + "chicken stock", + "hard-boiled egg", + "white wine vinegar", + "unsalted butter", + "dry white wine", + "flat leaf parsley" + ] + }, + { + "id": 48626, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "lemongrass", + "chicken legs", + "dried chile", + "chicken stock", + "fresh ginger", + "drumstick" + ] + }, + { + "id": 18864, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "whipping cream", + "fresh basil leaves", + "sugar", + "light corn syrup", + "corn starch", + "large egg whites", + "white wine vinegar", + "pink peppercorns", + "strawberries" + ] + }, + { + "id": 44864, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "milk", + "extra-virgin olive oil", + "scallions", + "fresh parsley", + "black peppercorns", + "coarse salt", + "all-purpose flour", + "shrimp shells", + "fresh basil leaves", + "shrimp stock", + "water", + "butter", + "hot sauce", + "bay leaf", + "tomato paste", + "bay leaves", + "garlic", + "shrimp", + "onions" + ] + }, + { + "id": 46630, + "cuisine": "italian", + "ingredients": [ + "honey", + "baby spinach", + "broccoli", + "whole wheat pizza dough", + "dried tart cherries", + "white wine vinegar", + "semolina flour", + "parmesan cheese", + "garlic", + "sunflower seeds", + "shallots", + "part-skim ricotta cheese" + ] + }, + { + "id": 35462, + "cuisine": "indian", + "ingredients": [ + "cayenne", + "cumin seed", + "sugar", + "extra-virgin olive oil", + "plain whole-milk yogurt", + "large garlic cloves", + "chopped cilantro", + "kosher salt", + "purple onion", + "japanese eggplants" + ] + }, + { + "id": 11486, + "cuisine": "greek", + "ingredients": [ + "pepper", + "salt", + "ground beef", + "vegetable oil", + "ground coriander", + "white sugar", + "ground nutmeg", + "cayenne pepper", + "onions", + "ground cinnamon", + "raisins", + "flat leaf parsley" + ] + }, + { + "id": 40668, + "cuisine": "british", + "ingredients": [ + "sultana", + "baking powder", + "salt", + "milk", + "double cream", + "caster sugar", + "butter", + "jam", + "eggs", + "self rising flour", + "currant" + ] + }, + { + "id": 18743, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "roasted red peppers", + "fresh parmesan cheese", + "balsamic vinegar", + "part-skim mozzarella cheese", + "cooking spray", + "tomatoes", + "ground black pepper", + "polenta" + ] + }, + { + "id": 10528, + "cuisine": "french", + "ingredients": [ + "balsamic vinegar", + "orange juice", + "pepper", + "salt", + "fresh lime juice", + "olive oil", + "toasted walnuts", + "romano cheese", + "grapefruit juice", + "fresh lemon juice" + ] + }, + { + "id": 19744, + "cuisine": "brazilian", + "ingredients": [ + "cheddar cheese", + "low-fat milk", + "starch", + "eggs", + "sunflower oil", + "parmesan cheese" + ] + }, + { + "id": 10146, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "kale leaves", + "onions", + "extra-virgin olive oil", + "sausages", + "yukon gold potatoes", + "freshly ground pepper", + "large eggs", + "salt", + "rib" + ] + }, + { + "id": 32056, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "crushed red pepper", + "broth", + "fish sauce", + "rice noodles", + "coconut milk", + "sesame oil", + "shrimp", + "curry powder", + "garlic", + "chopped cilantro" + ] + }, + { + "id": 6695, + "cuisine": "indian", + "ingredients": [ + "sugar", + "garam masala", + "heavy cream", + "garlic cloves", + "crushed tomatoes", + "serrano peppers", + "cayenne pepper", + "ground cumin", + "boneless chicken skinless thigh", + "cayenne", + "salt", + "onions", + "low-fat plain yogurt", + "fresh ginger", + "vegetable oil", + "ground coriander" + ] + }, + { + "id": 35089, + "cuisine": "italian", + "ingredients": [ + "butter", + "clam sauce", + "red potato", + "garlic cloves", + "finely chopped fresh parsley", + "fresh lemon juice", + "fettucine", + "extra-virgin olive oil" + ] + }, + { + "id": 15615, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil cooking spray", + "ground pepper", + "all-purpose flour", + "fat free milk", + "cajun seasoning", + "pepper", + "vegetable oil", + "center cut pork chops", + "nonfat buttermilk", + "garlic powder", + "salt" + ] + }, + { + "id": 22697, + "cuisine": "southern_us", + "ingredients": [ + "refrigerated piecrusts", + "pie filling", + "lemon" + ] + }, + { + "id": 5004, + "cuisine": "filipino", + "ingredients": [ + "boneless chicken skinless thigh", + "spring onions", + "onions", + "lime", + "low sodium chicken stock", + "jasmine rice", + "vegetable oil", + "saffron", + "fish sauce", + "fresh ginger", + "garlic cloves" + ] + }, + { + "id": 23840, + "cuisine": "chinese", + "ingredients": [ + "mint leaves", + "carrots", + "caster sugar", + "rice noodles", + "soy sauce", + "spring onions", + "minced pork", + "lime", + "rice vinegar" + ] + }, + { + "id": 41064, + "cuisine": "french", + "ingredients": [ + "olive oil", + "purple onion", + "fresh parsley", + "pepper", + "red wine vinegar", + "oil", + "haricots verts", + "dijon mustard", + "bulgur", + "arugula", + "cherry tomatoes", + "kalamata", + "fresh lemon juice" + ] + }, + { + "id": 44183, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "bacon", + "crackers", + "tomatoes", + "vegetables", + "greek style plain yogurt", + "cooked turkey", + "grated nutmeg", + "baguette", + "pecorino romano cheese", + "cream cheese" + ] + }, + { + "id": 16030, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "vanilla beans", + "sweetened condensed milk", + "milk chocolate", + "light corn syrup", + "sugar", + "butter", + "water", + "salt" + ] + }, + { + "id": 12622, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "ice cubes", + "frozen limeade concentrate", + "brandy", + "tequila", + "cold water", + "lime" + ] + }, + { + "id": 11929, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "water", + "garlic powder", + "lemon", + "Bragg Liquid Aminos", + "ancho chile pepper", + "cashew nuts", + "liquid smoke", + "jackfruit", + "white miso", + "mushrooms", + "vegetable broth", + "smoked paprika", + "roasted tomatoes", + "olive oil spray", + "avocado", + "pepper", + "nutritional yeast", + "onion powder", + "garlic", + "red bell pepper", + "onions", + "cumin", + "white vinegar", + "green chile", + "olive oil", + "sliced black olives", + "heirloom tomatoes", + "salt", + "corn tortillas", + "pasilla pepper" + ] + }, + { + "id": 13059, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "vegetables", + "yellow onion", + "bay leaf", + "red lentils", + "water", + "Bengali 5 Spice", + "cumin seed", + "plum tomatoes", + "kosher salt", + "cilantro", + "fenugreek seeds", + "basmati rice", + "fennel seeds", + "lime", + "garlic", + "mustard seeds" + ] + }, + { + "id": 45837, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "potatoes", + "garlic", + "oil", + "onions", + "ground cumin", + "fresh ginger root", + "chile pepper", + "ground coriander", + "bay leaf", + "chopped cilantro fresh", + "phyllo dough", + "chili powder", + "salt", + "ground cardamom", + "frozen peas", + "ground black pepper", + "vegetable oil", + "cumin seed", + "ground beef", + "ground turmeric" + ] + }, + { + "id": 547, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "olive oil", + "salt", + "olive oil flavored cooking spray", + "capers", + "baguette", + "golden raisins", + "fresh lemon juice", + "vidalia onion", + "dried basil", + "yellow bell pepper", + "red bell pepper", + "pinenuts", + "eggplant", + "garlic cloves" + ] + }, + { + "id": 11867, + "cuisine": "southern_us", + "ingredients": [ + "chili powder", + "okra", + "garlic paste", + "salt", + "yellow corn meal", + "buttermilk", + "oil", + "black pepper", + "all-purpose flour" + ] + }, + { + "id": 34179, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "sauce", + "panko breadcrumbs", + "avocado", + "boneless skinless chicken breasts", + "oil", + "egg whites", + "tortilla chips", + "pico de gallo", + "cilantro", + "white cheese" + ] + }, + { + "id": 23996, + "cuisine": "italian", + "ingredients": [ + "cheese tortellini", + "cherry tomatoes", + "flat leaf parsley", + "zucchini", + "italian salad dressing", + "kosher salt", + "cracked black pepper" + ] + }, + { + "id": 4869, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "red food coloring", + "butter extract", + "unsweetened cocoa powder", + "white vinegar", + "butter", + "salt", + "confectioners sugar", + "eggs", + "buttermilk", + "all-purpose flour", + "white sugar", + "baking soda", + "vanilla extract", + "cream cheese" + ] + }, + { + "id": 29140, + "cuisine": "southern_us", + "ingredients": [ + "refrigerated buttermilk biscuits", + "pepper", + "cooked chicken", + "water", + "chicken bouillon granules", + "cream of chicken soup" + ] + }, + { + "id": 11020, + "cuisine": "french", + "ingredients": [ + "milk", + "cream cheese, soften", + "whipping cream", + "unsalted butter", + "unsweetened cocoa powder", + "powdered sugar", + "vanilla extract" + ] + }, + { + "id": 32763, + "cuisine": "filipino", + "ingredients": [ + "water", + "eggs", + "flour" + ] + }, + { + "id": 32973, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "littleneck clams", + "orecchiette", + "shallots", + "flat leaf parsley", + "dry white wine", + "fresh oregano", + "chopped fresh thyme", + "chopped garlic" + ] + }, + { + "id": 25004, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "cashew butter", + "ground black pepper", + "chopped garlic", + "fresh basil", + "oat milk", + "whole wheat fettuccine", + "olive oil", + "frozen peas" + ] + }, + { + "id": 31895, + "cuisine": "moroccan", + "ingredients": [ + "swordfish steaks", + "cilantro", + "cumin", + "parsley", + "garlic cloves", + "paprika", + "lemon juice", + "olive oil", + "lemon rind" + ] + }, + { + "id": 40147, + "cuisine": "french", + "ingredients": [ + "vanilla extract", + "unsweetened cocoa powder", + "heavy cream", + "white sugar", + "egg yolks", + "confectioners sugar", + "egg whites", + "salt" + ] + }, + { + "id": 20186, + "cuisine": "italian", + "ingredients": [ + "dijon mustard", + "garlic cloves", + "capers", + "buttermilk", + "red wine vinegar", + "flat leaf parsley", + "pepper", + "salt" + ] + }, + { + "id": 49477, + "cuisine": "japanese", + "ingredients": [ + "wasabi", + "gari", + "coarse salt", + "lemon juice", + "sugar", + "lump crab meat", + "rice vinegar", + "toasted sesame seeds", + "mayonaise", + "fresh chives", + "nori paper", + "radish sprouts", + "sushi rice", + "water", + "freshly ground pepper", + "large shrimp" + ] + }, + { + "id": 49679, + "cuisine": "italian", + "ingredients": [ + "garlic", + "unsalted butter", + "heavy whipping cream", + "black pepper", + "salt", + "grated parmesan cheese", + "dried parsley" + ] + }, + { + "id": 48398, + "cuisine": "southern_us", + "ingredients": [ + "flaked coconut", + "gingersnap cookies", + "unsalted butter" + ] + }, + { + "id": 2693, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "salt", + "fontina", + "ziti", + "ground black pepper", + "fresh parsley", + "olive oil", + "garlic" + ] + }, + { + "id": 46721, + "cuisine": "french", + "ingredients": [ + "eggs", + "milk", + "orange juice", + "orange zest", + "orange", + "all-purpose flour", + "grated orange", + "vanilla ice cream", + "vanilla extract", + "orange liqueur", + "sugar", + "salt", + "clarified butter" + ] + }, + { + "id": 1762, + "cuisine": "moroccan", + "ingredients": [ + "salt", + "olive oil", + "harissa", + "hot red pepper flakes", + "ground cumin" + ] + }, + { + "id": 43679, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "rice noodles", + "juice", + "chicken", + "eggs", + "spring onions", + "salt", + "beansprouts", + "white vinegar", + "palm sugar", + "crushed garlic", + "red bell pepper", + "fish sauce", + "chili powder", + "roasted peanuts", + "chopped cilantro" + ] + }, + { + "id": 44736, + "cuisine": "italian", + "ingredients": [ + "water", + "pecorino romano cheese", + "eggplant", + "tomato paste", + "large eggs", + "olive oil", + "fine sea salt" + ] + }, + { + "id": 33575, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "diced tomatoes", + "garlic cloves", + "country white bread", + "lime wedges", + "whipping cream", + "ancho chile pepper", + "chipotle chile", + "vegetable oil", + "dark brown sugar", + "boneless skinless chicken breast halves", + "pumpkin", + "cilantro sprigs", + "low salt chicken broth" + ] + }, + { + "id": 38990, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "celery", + "black-eyed peas", + "ham", + "smoked ham hocks", + "tomatoes", + "garlic", + "carrots", + "olive oil", + "kale leaves", + "onions" + ] + }, + { + "id": 44014, + "cuisine": "greek", + "ingredients": [ + "unsalted butter", + "eggs", + "vanilla", + "flour", + "sugar", + "walnuts" + ] + }, + { + "id": 28152, + "cuisine": "indian", + "ingredients": [ + "grated coconut", + "peeled fresh ginger", + "water", + "fresh lemon juice", + "kosher salt", + "garlic cloves", + "fresh cilantro", + "ground cumin" + ] + }, + { + "id": 29361, + "cuisine": "french", + "ingredients": [ + "water", + "dill", + "whole milk", + "onions", + "celery ribs", + "baking potatoes", + "unsalted butter", + "carrots" + ] + }, + { + "id": 41154, + "cuisine": "italian", + "ingredients": [ + "sugar", + "unsweetened cocoa powder", + "tea bags", + "vanilla bean paste", + "ladyfingers", + "whipping cream", + "mascarpone" + ] + }, + { + "id": 24722, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "salt", + "mung beans", + "eggs", + "grapeseed oil", + "water", + "all-purpose flour" + ] + }, + { + "id": 33107, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "guacamole", + "corn tortillas", + "cottage cheese", + "salsa", + "cheddar cheese", + "green onions", + "chopped cilantro fresh", + "eggs", + "milk", + "sour cream" + ] + }, + { + "id": 3452, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "butter", + "honey", + "all-purpose flour", + "active dry yeast", + "salt", + "warm water", + "large eggs" + ] + }, + { + "id": 3054, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "green onions", + "Gochujang base", + "lettuce", + "honey", + "ginger", + "onions", + "jasmine rice", + "sesame oil", + "garlic cloves", + "soy sauce", + "pork chops", + "apples", + "pears" + ] + }, + { + "id": 15549, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "bacon", + "carrots", + "ground cumin", + "parsnips", + "potatoes", + "lima beans", + "celery", + "beef bouillon granules", + "garlic", + "mole sauce", + "water", + "red wine", + "beef heart", + "onions" + ] + }, + { + "id": 14623, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "crushed red pepper", + "onions", + "pasta", + "dry white wine", + "carrots", + "grated lemon peel", + "fresh marjoram", + "diced tomatoes", + "low salt chicken broth", + "andouille chicken sausage", + "garlic cloves", + "chicken thighs" + ] + }, + { + "id": 15393, + "cuisine": "indian", + "ingredients": [ + "chat masala", + "grated coconut", + "potatoes", + "cilantro", + "salt", + "green chilies", + "corn starch", + "ground cumin", + "ajwain", + "garam masala", + "chili powder", + "kasuri methi", + "all-purpose flour", + "oil", + "coriander", + "sugar", + "water", + "mint leaves", + "ginger", + "cilantro leaves", + "cumin seed", + "jeera", + "tomatoes", + "black pepper", + "fresh peas", + "dates", + "garlic", + "tamarind paste", + "lemon juice", + "ground turmeric" + ] + }, + { + "id": 8039, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "chopped green bell pepper", + "chopped onion", + "olive oil", + "chili powder", + "pepper", + "jalapeno chilies", + "boneless skinless chicken breast halves", + "hot pepper sauce", + "salt" + ] + }, + { + "id": 26854, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "chopped celery", + "eggs", + "wonton wrappers", + "cooked chicken", + "chili sauce", + "diced green chilies", + "sweet and sour sauce" + ] + }, + { + "id": 21018, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "purple onion", + "refrigerated piecrusts", + "brie cheese", + "kalamata", + "plum tomatoes", + "grated parmesan cheese", + "fresh oregano" + ] + }, + { + "id": 38971, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "baking mix", + "sour cream", + "lime" + ] + }, + { + "id": 21260, + "cuisine": "indian", + "ingredients": [ + "ground red pepper", + "canola oil", + "minced garlic", + "chopped cilantro fresh", + "plain low-fat yogurt", + "salt", + "garam masala", + "large shrimp" + ] + }, + { + "id": 12096, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "goat cheese", + "pesto", + "pizza sauce", + "plum tomatoes", + "refrigerated pizza dough", + "shredded mozzarella cheese", + "pinenuts", + "havarti cheese" + ] + }, + { + "id": 43486, + "cuisine": "french", + "ingredients": [ + "white onion", + "pumpkin seeds", + "extra-virgin olive oil", + "chopped fresh mint", + "tomatillos", + "fresh lime juice", + "trout", + "poblano chiles" + ] + }, + { + "id": 36858, + "cuisine": "italian", + "ingredients": [ + "oil-cured black olives", + "freshly ground pepper", + "bread crumb fresh", + "extra-virgin olive oil", + "fish", + "green olives", + "lemon wedge", + "sardines", + "rosemary", + "salt" + ] + }, + { + "id": 40559, + "cuisine": "greek", + "ingredients": [ + "eggplant", + "butter", + "garlic cloves", + "dried oregano", + "crushed tomatoes", + "grated parmesan cheese", + "chopped celery", + "flat leaf parsley", + "ground cinnamon", + "large egg yolks", + "portabello mushroom", + "carrots", + "olive oil", + "whole milk", + "all-purpose flour", + "onions" + ] + }, + { + "id": 30129, + "cuisine": "greek", + "ingredients": [ + "rosemary sprigs", + "chop fine pecan", + "salt", + "pepper", + "butter", + "cream cheese, soften", + "seasoned bread crumbs", + "egg yolks", + "all-purpose flour", + "fresh rosemary", + "large eggs", + "kalamata", + "sour cream" + ] + }, + { + "id": 42776, + "cuisine": "mexican", + "ingredients": [ + "potatoes", + "ground beef", + "chopped green chilies", + "frozen corn", + "water", + "diced tomatoes", + "onions", + "hominy", + "salsa" + ] + }, + { + "id": 37333, + "cuisine": "russian", + "ingredients": [ + "granulated sugar", + "whipping cream", + "blanched almonds", + "cream style cottage cheese", + "salt", + "egg yolks", + "vanilla extract", + "butter", + "candied fruit" + ] + }, + { + "id": 42746, + "cuisine": "japanese", + "ingredients": [ + "salt", + "caster sugar", + "rice", + "dried kelp", + "rice vinegar", + "water" + ] + }, + { + "id": 5624, + "cuisine": "spanish", + "ingredients": [ + "fideos", + "extra-virgin olive oil", + "California bay leaves", + "sugar", + "fish stock", + "spanish chorizo", + "flat leaf parsley", + "minced garlic", + "diced tomatoes", + "chopped onion", + "mussels", + "dry white wine", + "salt", + "juice" + ] + }, + { + "id": 12692, + "cuisine": "mexican", + "ingredients": [ + "sliced black olives", + "KRAFT Mexican Style Finely Shredded Four Cheese", + "refried beans", + "green onions", + "sour cream", + "chips", + "salsa", + "taco seasoning mix", + "shredded lettuce", + "crackers" + ] + }, + { + "id": 14203, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "dry white wine", + "extra-virgin olive oil", + "olive oil", + "butter", + "flat leaf parsley", + "low sodium vegetable broth", + "shallots", + "salt", + "lobster", + "diced tomatoes" + ] + }, + { + "id": 27585, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "rice noodles", + "shrimp", + "lime", + "tom yum paste", + "garlic", + "gai lan", + "coconut milk powder", + "ginger", + "thai basil", + "cilantro" + ] + }, + { + "id": 13253, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "vegetable oil", + "sour cream", + "jalapeno chilies", + "tomatillos", + "chopped cilantro fresh", + "ground pepper", + "coarse salt", + "corn tortillas", + "cotija", + "boneless skinless chicken breasts", + "garlic cloves" + ] + }, + { + "id": 7468, + "cuisine": "italian", + "ingredients": [ + "sweet onion", + "dry white wine", + "salt", + "arborio rice", + "shredded extra sharp cheddar cheese", + "butter", + "sliced green onions", + "olive oil", + "pimentos", + "garlic cloves", + "pepper", + "low sodium chicken broth", + "bacon" + ] + }, + { + "id": 3395, + "cuisine": "vietnamese", + "ingredients": [ + "ground black pepper", + "nuoc mam", + "soy sauce", + "meat", + "chinese five-spice powder", + "cornish game hens", + "salt", + "honey", + "garlic", + "ground cumin" + ] + }, + { + "id": 27840, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dry white wine", + "onions", + "sausage casings", + "ground black pepper", + "salt", + "light cream", + "garlic", + "rigatoni", + "crushed tomatoes", + "grated parmesan cheese", + "fresh parsley" + ] + }, + { + "id": 401, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper flakes", + "flat leaf parsley", + "coarse salt", + "whole wheat linguine", + "extra-virgin olive oil", + "lemon", + "garlic cloves" + ] + }, + { + "id": 19534, + "cuisine": "filipino", + "ingredients": [ + "fresh ginger", + "peas", + "garlic salt", + "tomato sauce", + "potatoes", + "red bell pepper", + "ground black pepper", + "oyster sauce", + "chicken", + "soy sauce", + "vegetable oil", + "onions" + ] + }, + { + "id": 8578, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "parmesan cheese", + "onions", + "clove", + "black pepper", + "butter", + "eggs", + "parsley", + "pasta", + "white wine", + "bacon" + ] + }, + { + "id": 6627, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium soy sauce", + "pineapple", + "corn starch", + "sliced almonds", + "green onions", + "oil", + "mirin", + "white wine vinegar", + "ginger root", + "pepper", + "boneless skinless chicken breasts", + "garlic cloves" + ] + }, + { + "id": 8645, + "cuisine": "french", + "ingredients": [ + "fresh thyme", + "salt", + "ground black pepper", + "butter", + "cooking spray", + "roasting chickens", + "dijon mustard", + "fresh tarragon" + ] + }, + { + "id": 4069, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "flour tortillas", + "sour cream", + "cheddar cheese", + "green enchilada sauce", + "sliced olives" + ] + }, + { + "id": 2739, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "warm water", + "ground nutmeg", + "sanding sugar", + "sugar syrup", + "brown sugar", + "milk", + "golden raisins", + "salt", + "melted butter", + "sugar", + "active dry yeast", + "cinnamon", + "all-purpose flour", + "powdered sugar", + "water", + "unsalted butter", + "vanilla", + "chopped pecans" + ] + }, + { + "id": 16679, + "cuisine": "irish", + "ingredients": [ + "milk", + "extra-virgin olive oil", + "red potato", + "baby spinach", + "salt", + "parsley", + "garlic", + "cheddar cheese", + "butter", + "ground lamb" + ] + }, + { + "id": 43964, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "water", + "cumin seed", + "tumeric", + "salt", + "dried red chile peppers", + "asafoetida", + "ginger", + "lemon juice", + "moong dal", + "green chilies", + "canola oil" + ] + }, + { + "id": 36397, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "low sodium chicken broth", + "garlic cloves", + "finely chopped onion", + "salt", + "dried oregano", + "black pepper", + "flour", + "poblano chiles", + "jalapeno chilies", + "oil", + "cumin" + ] + }, + { + "id": 6019, + "cuisine": "italian", + "ingredients": [ + "cheese tortellini", + "freshly ground pepper", + "water", + "white wine vinegar", + "garlic", + "flat leaf parsley", + "vegetable oil", + "salt" + ] + }, + { + "id": 25470, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "unsalted butter", + "roasted garlic", + "lemon juice", + "mayonaise", + "garlic powder", + "paprika", + "rolls", + "onions", + "tomatoes", + "olive oil", + "blackening seasoning", + "cayenne pepper", + "shrimp", + "kosher salt", + "ground nutmeg", + "romaine lettuce leaves", + "cumin seed", + "dried oregano" + ] + }, + { + "id": 38436, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "salt", + "cucumber", + "ground turmeric", + "lime", + "ginger", + "cumin seed", + "fillets", + "fresh coriander", + "goat", + "cardamom pods", + "fresh mint", + "olive oil", + "purple onion", + "garlic cloves", + "chillies" + ] + }, + { + "id": 3394, + "cuisine": "italian", + "ingredients": [ + "butter", + "ham", + "grated parmesan cheese", + "basil dried leaves", + "boneless skinless chicken breast halves", + "dried tarragon leaves", + "paprika", + "garlic salt", + "swiss cheese", + "dry bread crumbs" + ] + }, + { + "id": 10016, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "cooking spray", + "ice water", + "large egg whites", + "butter", + "all-purpose flour", + "cider vinegar", + "baking powder", + "paprika", + "chorizo", + "yukon gold potatoes", + "salt" + ] + }, + { + "id": 20657, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "fresh ginger", + "garlic", + "coconut milk", + "cumin", + "tomato sauce", + "curry powder", + "heavy cream", + "oil", + "coriander", + "tumeric", + "water", + "boneless skinless chicken breasts", + "salt", + "onions", + "sugar", + "fresh cilantro", + "paprika", + "cardamom", + "cashew nuts" + ] + }, + { + "id": 46120, + "cuisine": "french", + "ingredients": [ + "apple cider vinegar", + "sugar", + "salt", + "ice water", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 6656, + "cuisine": "japanese", + "ingredients": [ + "ground cardamom", + "milk", + "nuts", + "sugar", + "ghee", + "grated carrot" + ] + }, + { + "id": 39511, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "cream style corn", + "evaporated milk", + "corn starch", + "eggs", + "butter" + ] + }, + { + "id": 8233, + "cuisine": "italian", + "ingredients": [ + "green olives", + "olive oil", + "sea salt", + "slivered almonds", + "ground black pepper", + "purple onion", + "capers", + "eggplant", + "garlic", + "tomatoes", + "herb vinegar", + "Italian parsley leaves", + "dried oregano" + ] + }, + { + "id": 543, + "cuisine": "mexican", + "ingredients": [ + "garbanzo beans", + "salt", + "monterey jack", + "avocado", + "fat-free chicken broth", + "dried oregano", + "chicken meat", + "cooked white rice", + "chile pepper", + "chipotles in adobo" + ] + }, + { + "id": 47800, + "cuisine": "indian", + "ingredients": [ + "salt", + "grated coconut", + "long-grain rice", + "broad beans", + "rice", + "water", + "coconut milk" + ] + }, + { + "id": 14772, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "converted rice", + "chopped cilantro fresh", + "chile powder", + "minced garlic", + "rice", + "ground cumin", + "black beans", + "diced tomatoes", + "dried oregano", + "chicken stock", + "finely chopped onion", + "fresh lime juice" + ] + }, + { + "id": 16963, + "cuisine": "french", + "ingredients": [ + "fresh lemon juice", + "butter", + "salt", + "ground cumin" + ] + }, + { + "id": 5215, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "canola oil", + "lower sodium soy sauce", + "lemongrass", + "sambal ulek", + "boneless skinless chicken breasts" + ] + }, + { + "id": 29498, + "cuisine": "cajun_creole", + "ingredients": [ + "red beans", + "salt", + "bay leaf", + "andouille sausage", + "canned tomatoes", + "garlic cloves", + "chili powder", + "cayenne pepper", + "onions", + "chicken broth", + "red pepper", + "rice", + "cumin" + ] + }, + { + "id": 26572, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "unsalted butter", + "heavy cream", + "organic unsalted butter", + "whole wheat pastry flour", + "baking powder", + "free range egg", + "pure vanilla extract", + "baking soda", + "bourbon whiskey", + "fresh mint", + "mint", + "raw cane sugar", + "fine sea salt", + "wildflower honey" + ] + }, + { + "id": 8040, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "scallions", + "milk", + "baking potatoes", + "sugar", + "fresh peas", + "ground black pepper", + "salt" + ] + }, + { + "id": 4122, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "finely chopped onion", + "nonfat ricotta cheese", + "reduced fat reduced sodium tomato and herb pasta sauce", + "part-skim mozzarella cheese", + "cream cheese, soften", + "italian seasoning", + "pepper", + "garlic cloves", + "oregano", + "frozen chopped spinach", + "fresh parmesan cheese", + "manicotti" + ] + }, + { + "id": 18846, + "cuisine": "russian", + "ingredients": [ + "eggs", + "all-purpose flour", + "sea salt", + "ground beef", + "water", + "garlic cloves", + "ground pork", + "onions" + ] + }, + { + "id": 24451, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "melted butter", + "salt", + "milk", + "cornmeal", + "large eggs", + "boiling water" + ] + }, + { + "id": 25561, + "cuisine": "british", + "ingredients": [ + "pork", + "finely chopped onion", + "all-purpose flour", + "shortening", + "water", + "apples", + "cold water", + "shredded cheddar cheese", + "dried sage", + "sugar", + "milk", + "salt" + ] + }, + { + "id": 13337, + "cuisine": "mexican", + "ingredients": [ + "chicken breast halves", + "organic chicken broth", + "honey", + "butter", + "hominy", + "chopped cilantro fresh", + "chiles", + "balsamic vinegar", + "ground cumin" + ] + }, + { + "id": 36440, + "cuisine": "filipino", + "ingredients": [ + "garlic powder", + "dried oregano", + "light brown sugar", + "pork shoulder", + "dijon mustard", + "ground cumin", + "kosher salt", + "peppercorns" + ] + }, + { + "id": 13182, + "cuisine": "japanese", + "ingredients": [ + "red chili peppers", + "vegetable oil", + "eggplant", + "soy sauce", + "salt", + "sugar", + "sesame oil" + ] + }, + { + "id": 25037, + "cuisine": "indian", + "ingredients": [ + "methi leaves", + "coriander powder", + "paneer", + "oil", + "water", + "green peas", + "cilantro leaves", + "ground turmeric", + "pepper", + "yoghurt", + "salt", + "onions", + "garam masala", + "garlic", + "green chilies", + "ground cumin" + ] + }, + { + "id": 5549, + "cuisine": "mexican", + "ingredients": [ + "salt", + "pinto beans", + "water", + "light cream cheese", + "salsa", + "chicken breasts", + "taco seasoning" + ] + }, + { + "id": 19715, + "cuisine": "southern_us", + "ingredients": [ + "frozen whole kernel corn", + "baking powder", + "white cornmeal", + "sugar", + "jalapeno chilies", + "salt", + "Mexican cheese blend", + "vegetable oil", + "boiling water", + "fresh cilantro", + "half & half", + "softened butter" + ] + }, + { + "id": 32202, + "cuisine": "greek", + "ingredients": [ + "lemon rind", + "salt", + "chopped cilantro fresh", + "ground black pepper", + "fresh parsley", + "fat free yogurt", + "cucumber" + ] + }, + { + "id": 4389, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cannellini beans", + "carrots", + "fat free less sodium chicken broth", + "sherry", + "chopped onion", + "black pepper", + "prosciutto", + "chopped celery", + "fresh parsley", + "water", + "bay leaves", + "garlic cloves" + ] + }, + { + "id": 42996, + "cuisine": "thai", + "ingredients": [ + "dairy free coconut ice cream", + "light brown sugar", + "cookies", + "unsweetened shredded dried coconut", + "heavy cream", + "granulated sugar", + "unsalted dry roast peanuts" + ] + }, + { + "id": 485, + "cuisine": "jamaican", + "ingredients": [ + "peach schnapps", + "unsweetened pineapple juice", + "orange juice", + "coconut rum", + "gold tequila", + "margarita mix" + ] + }, + { + "id": 28084, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "butter", + "shallots", + "whipping cream", + "grated parmesan cheese", + "cheese tortellini", + "chopped fresh thyme" + ] + }, + { + "id": 9744, + "cuisine": "chinese", + "ingredients": [ + "pancake batter", + "water chestnuts", + "rice vinegar", + "canola oil", + "boneless chop pork", + "hoisin sauce", + "cilantro leaves", + "corn starch", + "low sodium soy sauce", + "shiitake", + "ginger", + "carrots", + "savoy cabbage", + "sesame seeds", + "fresh orange juice", + "scallions" + ] + }, + { + "id": 35909, + "cuisine": "italian", + "ingredients": [ + "salami", + "extra-virgin olive oil", + "dried oregano", + "ground black pepper", + "red wine vinegar", + "provolone cheese", + "kosher salt", + "fusilli", + "purple onion", + "artichok heart marin", + "Italian parsley leaves", + "oil" + ] + }, + { + "id": 10710, + "cuisine": "southern_us", + "ingredients": [ + "dijon mustard", + "salt", + "sugar", + "fresh thyme leaves", + "ham", + "black pepper", + "vegetable oil", + "fresh thyme", + "pineapple juice" + ] + }, + { + "id": 19073, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "yellow onion", + "bacon", + "grated parmesan cheese", + "black pepper", + "linguine" + ] + }, + { + "id": 38503, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "pork spareribs", + "brown sugar", + "chili powder", + "oregano", + "barbecue sauce", + "garlic salt", + "white pepper", + "paprika", + "cumin" + ] + }, + { + "id": 28133, + "cuisine": "southern_us", + "ingredients": [ + "Tabasco Pepper Sauce", + "water", + "kosher salt", + "old bay seasoning", + "peanuts" + ] + }, + { + "id": 13821, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "dry sherry", + "bok choy", + "soy sauce", + "chicken breast halves", + "fat skimmed chicken broth", + "fresh ginger", + "salt", + "white pepper", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 47720, + "cuisine": "southern_us", + "ingredients": [ + "bread crumb fresh", + "cinnamon", + "unsalted butter", + "salt", + "water", + "apples", + "light brown sugar", + "nonfat vanilla frozen yogurt" + ] + }, + { + "id": 20461, + "cuisine": "moroccan", + "ingredients": [ + "canned chicken broth", + "raisins", + "tomatoes", + "dried thyme", + "couscous", + "ground cinnamon", + "butter", + "dried basil", + "chickpeas" + ] + }, + { + "id": 42452, + "cuisine": "spanish", + "ingredients": [ + "plain low-fat yogurt", + "fat-free mayonnaise", + "ground red pepper", + "white vinegar", + "paprika", + "tomato sauce", + "ground cumin" + ] + }, + { + "id": 29480, + "cuisine": "italian", + "ingredients": [ + "sugar", + "part-skim mozzarella cheese", + "onion powder", + "garlic cloves", + "crushed tomatoes", + "lasagna noodles", + "salt", + "pepper", + "garlic powder", + "part-skim ricotta cheese", + "dried oregano", + "dried basil", + "zucchini", + "cream cheese" + ] + }, + { + "id": 22315, + "cuisine": "french", + "ingredients": [ + "beef bones", + "chopped celery", + "black peppercorns", + "bay leaves", + "thyme sprigs", + "cold water", + "parsley sprigs", + "yellow onion", + "tomato paste", + "cooking spray", + "carrots" + ] + }, + { + "id": 8073, + "cuisine": "japanese", + "ingredients": [ + "spinach", + "sesame oil", + "rice vinegar", + "cauliflower", + "sushi rice", + "sea salt", + "nori", + "avocado", + "water", + "cauliflower florets", + "sugar", + "chili oil", + "toasted sesame seeds" + ] + }, + { + "id": 47047, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "cinnamon sticks", + "ice cubes", + "dried hibiscus blossoms" + ] + }, + { + "id": 34847, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "parmesan cheese", + "garlic", + "fresh parsley", + "eggs", + "dried basil", + "low sodium chicken broth", + "carrots", + "kosher salt", + "swiss chard", + "yellow onion", + "italian seasoning", + "black pepper", + "olive oil", + "tubetti", + "ground beef" + ] + }, + { + "id": 8793, + "cuisine": "indian", + "ingredients": [ + "chicken legs", + "peeled fresh ginger", + "purple onion", + "cinnamon sticks", + "warm water", + "chili powder", + "cardamom pods", + "tumeric", + "Turkish bay leaves", + "salt", + "clove", + "whole milk yoghurt", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 30798, + "cuisine": "korean", + "ingredients": [ + "ketchup", + "garlic", + "scallions", + "low sodium soy sauce", + "sesame seeds", + "rice vinegar", + "chicken wings", + "sesame oil", + "dark brown sugar", + "fresh ginger", + "crushed red pepper" + ] + }, + { + "id": 25856, + "cuisine": "chinese", + "ingredients": [ + "savoy cabbage", + "butter", + "oil", + "ginger paste", + "pepper", + "chinese five-spice powder", + "chicken noodle soup", + "soy sauce", + "salt", + "onions", + "lean minced beef", + "ground coriander", + "noodles" + ] + }, + { + "id": 29634, + "cuisine": "mexican", + "ingredients": [ + "coconut oil", + "orange", + "garlic", + "smoked paprika", + "liquid smoke", + "jackfruit", + "red pepper flakes", + "salt", + "cumin", + "soy sauce", + "lime slices", + "purple onion", + "corn tortillas", + "avocado", + "lime juice", + "cilantro", + "cayenne pepper" + ] + }, + { + "id": 49238, + "cuisine": "irish", + "ingredients": [ + "large eggs", + "all-purpose flour", + "fish fillets", + "malt vinegar", + "peanut oil", + "russet potatoes", + "beer", + "milk", + "salt" + ] + }, + { + "id": 4861, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "chopped fresh thyme", + "fresh mushrooms", + "eggplant", + "salt", + "marjoram", + "fresh basil", + "extra-virgin olive oil", + "freshly ground pepper", + "monkfish", + "white wine vinegar", + "garlic cloves" + ] + }, + { + "id": 44152, + "cuisine": "greek", + "ingredients": [ + "green bell pepper", + "lemon", + "olive oil", + "yellow onion", + "soy sauce", + "garlic", + "pork tenderloin", + "dried oregano" + ] + }, + { + "id": 22370, + "cuisine": "moroccan", + "ingredients": [ + "turnips", + "minced garlic", + "salt", + "ground cayenne pepper", + "ground cinnamon", + "butternut squash", + "oil", + "ground cumin", + "tomato paste", + "low sodium chicken broth", + "chickpeas", + "onions", + "boneless chicken thighs", + "raisins", + "carrots" + ] + }, + { + "id": 24560, + "cuisine": "japanese", + "ingredients": [ + "green cabbage", + "stock", + "ketchup", + "tonkatsu sauce", + "canola oil", + "eggs", + "mayonaise", + "baking powder", + "corn starch", + "seasoning", + "sake", + "green onions", + "all-purpose flour", + "dark soy sauce", + "sugar", + "worcestershire sauce", + "medium shrimp" + ] + }, + { + "id": 8366, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "Shaoxing wine", + "salt", + "dried shrimp", + "dark soy sauce", + "shiitake", + "sticky rice", + "oil", + "chicken stock", + "white pepper", + "sesame oil", + "scallions", + "onions", + "warm water", + "chinese sausage", + "cilantro", + "oyster sauce" + ] + }, + { + "id": 26979, + "cuisine": "indian", + "ingredients": [ + "salt", + "curry powder", + "cumin seed", + "chickpea flour", + "okra", + "olive oil" + ] + }, + { + "id": 21044, + "cuisine": "spanish", + "ingredients": [ + "chili", + "extra-virgin olive oil", + "varnish clams", + "bay leaves", + "fresh lemon juice", + "minced onion", + "garlic cloves", + "dry sherry", + "fresh parsley" + ] + }, + { + "id": 11336, + "cuisine": "cajun_creole", + "ingredients": [ + "shortening", + "smoked sausage", + "long-grain rice", + "chicken", + "bell pepper", + "hot sauce", + "sliced mushrooms", + "minced garlic", + "salt", + "diced celery", + "sliced green onions", + "diced onions", + "beef stock", + "cayenne pepper", + "chopped parsley" + ] + }, + { + "id": 32288, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "salt", + "eggs", + "butter", + "chopped pecans", + "pecan halves", + "vanilla extract", + "cane syrup", + "rum", + "pie shell" + ] + }, + { + "id": 48582, + "cuisine": "korean", + "ingredients": [ + "eggs", + "beef stock", + "rice cakes" + ] + }, + { + "id": 3148, + "cuisine": "southern_us", + "ingredients": [ + "water", + "vegetable oil", + "vegetable shortening", + "grated lemon zest", + "large eggs", + "cinnamon", + "salt", + "unsalted butter", + "dried apple", + "apple cider", + "confectioners sugar", + "light brown sugar", + "baking powder", + "ice water", + "all-purpose flour" + ] + }, + { + "id": 31820, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "boneless chicken breast", + "frozen peas and carrots", + "canola oil", + "eggs", + "pepper", + "salt", + "onions", + "white vinegar", + "ketchup", + "sesame oil", + "cooked white rice", + "sugar", + "minced garlic", + "corn starch", + "garlic salt" + ] + }, + { + "id": 1285, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "freshly ground pepper", + "olive oil", + "shallots", + "asparagus tips", + "Madeira", + "mushrooms", + "beef tenderloin steaks", + "unsalted butter", + "cognac" + ] + }, + { + "id": 31696, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "red bell pepper", + "extra firm tofu", + "fajita size flour tortillas", + "sweet onion", + "salt", + "ground cumin", + "cider vinegar", + "vegetable oil", + "chunky salsa" + ] + }, + { + "id": 37064, + "cuisine": "cajun_creole", + "ingredients": [ + "collard greens", + "leeks", + "butter", + "cayenne pepper", + "low salt chicken broth", + "fresh leav spinach", + "mustard greens", + "chopped celery", + "rice", + "sliced green onions", + "file powder", + "watercress", + "all-purpose flour", + "ham", + "sugar", + "vegetable oil", + "large garlic cloves", + "fresh oregano", + "flat leaf parsley" + ] + }, + { + "id": 13163, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "parmesan cheese", + "bread crumbs", + "freshly ground pepper", + "eggs", + "portabello mushroom", + "olive oil" + ] + }, + { + "id": 2395, + "cuisine": "italian", + "ingredients": [ + "ground round", + "diced tomatoes", + "shredded mozzarella cheese", + "parmesan cheese", + "salt", + "italian seasoning", + "pepper", + "whipping cream", + "onions", + "manicotti shells", + "dry white wine", + "hot Italian sausages" + ] + }, + { + "id": 5877, + "cuisine": "italian", + "ingredients": [ + "ice", + "limoncello", + "syrup", + "club soda", + "lemon wedge" + ] + }, + { + "id": 10607, + "cuisine": "mexican", + "ingredients": [ + "canned black beans", + "vegetable oil", + "chopped cilantro", + "avocado", + "corn kernels", + "garlic", + "kosher salt", + "tomatillos", + "onions", + "corn tortilla chips", + "serrano peppers", + "toasted pumpkinseeds" + ] + }, + { + "id": 477, + "cuisine": "greek", + "ingredients": [ + "sliced black olives", + "angel hair", + "pimentos", + "green onions", + "feta cheese" + ] + }, + { + "id": 5212, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken gizzards", + "sea salt", + "chicken livers", + "celery ribs", + "unsalted butter", + "cayenne pepper", + "flat leaf parsley", + "ground black pepper", + "yellow onion", + "red bell pepper", + "chicken stock", + "green onions", + "garlic cloves", + "long grain white rice" + ] + }, + { + "id": 977, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "spaghetti", + "butter", + "dried basil" + ] + }, + { + "id": 3793, + "cuisine": "cajun_creole", + "ingredients": [ + "capers", + "green onions", + "garlic", + "fresh parsley", + "olive oil", + "sea salt", + "red bell pepper", + "pimento stuffed green olives", + "lemon zest", + "dry red wine", + "celery", + "crushed tomatoes", + "chili powder", + "freshly ground pepper", + "onions" + ] + }, + { + "id": 7270, + "cuisine": "greek", + "ingredients": [ + "milk", + "baking powder", + "farmer cheese", + "olive oil", + "sea salt", + "ground white pepper", + "active dry yeast", + "butter", + "ground allspice", + "saffron threads", + "egg yolks", + "all-purpose flour" + ] + }, + { + "id": 11333, + "cuisine": "mexican", + "ingredients": [ + "crumbled blue cheese", + "coarse kosher salt", + "buffalo sauce", + "chicken breasts", + "shredded Monterey Jack cheese", + "flour tortillas", + "cream cheese" + ] + }, + { + "id": 5089, + "cuisine": "mexican", + "ingredients": [ + "clove", + "cinnamon", + "cumin seed", + "seville orange juice", + "garlic", + "pork butt", + "black peppercorns", + "banana leaves", + "allspice berries", + "annatto seeds", + "salt", + "oregano" + ] + }, + { + "id": 43712, + "cuisine": "irish", + "ingredients": [ + "eggs", + "baking powder", + "salt", + "baking soda", + "buttermilk", + "flour", + "raisins", + "sugar", + "butter" + ] + }, + { + "id": 10753, + "cuisine": "filipino", + "ingredients": [ + "sugar pea", + "egg whites", + "garlic", + "pepper", + "broccoli florets", + "salt", + "honey", + "boneless skinless chicken breasts", + "corn starch", + "soy sauce", + "olive oil", + "red pepper" + ] + }, + { + "id": 32441, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "shredded cheese", + "chicken", + "salt", + "hummus", + "soft taco size flour tortillas", + "enchilada sauce", + "rice", + "chopped cilantro fresh" + ] + }, + { + "id": 18779, + "cuisine": "thai", + "ingredients": [ + "lime", + "rice noodles", + "cilantro leaves", + "lime leaves", + "chicken broth", + "green onions", + "ginger", + "beansprouts", + "lemon grass", + "cilantro", + "carrots", + "curry paste", + "fish sauce", + "chicken breasts", + "salt", + "coconut milk" + ] + }, + { + "id": 38182, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "sesame oil", + "rice vinegar", + "lettuce", + "sesame seeds", + "red pepper flakes", + "soy sauce", + "lean ground beef", + "ground ginger", + "green onions", + "garlic" + ] + }, + { + "id": 287, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "cracked black pepper", + "cooking oil", + "oyster sauce", + "palm sugar", + "garlic cloves", + "dark soy sauce", + "chicken breasts" + ] + }, + { + "id": 8133, + "cuisine": "mexican", + "ingredients": [ + "butter", + "lime", + "corn", + "chillies", + "lime wedges" + ] + }, + { + "id": 1790, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "corn starch", + "light brown sugar", + "rice vinegar", + "water", + "soy sauce", + "pineapple juice" + ] + }, + { + "id": 43550, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "peasant bread" + ] + }, + { + "id": 12095, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "romaine lettuce", + "salad dressing", + "olive oil", + "purple onion" + ] + }, + { + "id": 10637, + "cuisine": "italian", + "ingredients": [ + "garlic", + "red bell pepper", + "ground black pepper", + "fresh lemon juice", + "olive oil", + "anchovy fillets", + "kosher salt", + "crushed red pepper", + "fresh parsley" + ] + }, + { + "id": 41418, + "cuisine": "filipino", + "ingredients": [ + "rolls", + "ground chicken", + "ground beef", + "water", + "ground sausage" + ] + }, + { + "id": 21096, + "cuisine": "southern_us", + "ingredients": [ + "tomatillos", + "salt", + "chopped cilantro fresh", + "poblano peppers", + "extra-virgin olive oil", + "shrimp", + "yellow corn meal", + "bacon", + "freshly ground pepper", + "low-fat milk", + "low sodium chicken broth", + "garlic", + "onions" + ] + }, + { + "id": 38944, + "cuisine": "cajun_creole", + "ingredients": [ + "ground paprika", + "ground black pepper", + "ground white pepper", + "dried basil", + "onion powder", + "dried oregano", + "salmon fillets", + "unsalted butter", + "ground cayenne pepper", + "dried thyme", + "salt" + ] + }, + { + "id": 13899, + "cuisine": "mexican", + "ingredients": [ + "flour", + "salt", + "soy milk", + "canola oil", + "baking powder" + ] + }, + { + "id": 7409, + "cuisine": "italian", + "ingredients": [ + "capers", + "garlic cloves", + "red wine vinegar", + "flat anchovy", + "dijon mustard", + "fresh parsley leaves", + "white bread", + "extra-virgin olive oil" + ] + }, + { + "id": 16578, + "cuisine": "southern_us", + "ingredients": [ + "creole mustard", + "garlic powder", + "parsley leaves", + "onion powder", + "garlic", + "diced celery", + "iceberg lettuce", + "ketchup", + "ground black pepper", + "smoked sweet Spanish paprika", + "worcestershire sauce", + "salt", + "celery seed", + "kosher salt", + "diced red onions", + "green tomatoes", + "paprika", + "hot sauce", + "flat leaf parsley", + "yellow corn meal", + "prepared horseradish", + "egg yolks", + "lemon", + "white wine vinegar", + "shrimp", + "canola oil" + ] + }, + { + "id": 14036, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "bawang goreng", + "scallions", + "chicken stock", + "thai basil", + "ginger", + "chicken", + "lime", + "cilantro", + "mung bean sprouts", + "fish sauce", + "jalapeno chilies", + "rice vermicelli" + ] + }, + { + "id": 24787, + "cuisine": "moroccan", + "ingredients": [ + "chicken broth", + "ground cloves", + "cilantro leaves", + "dried lentils", + "ground black pepper", + "onions", + "lamb for stew", + "potatoes", + "ground cinnamon", + "olive oil", + "couscous" + ] + }, + { + "id": 39292, + "cuisine": "mexican", + "ingredients": [ + "dough", + "monterey jack", + "corn husks", + "salsa verde", + "poblano peppers" + ] + }, + { + "id": 32703, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "ginger", + "sambal ulek", + "lemon grass", + "red bell pepper", + "chicken broth", + "olive oil", + "garlic", + "sugar", + "mushrooms", + "coconut milk" + ] + }, + { + "id": 40344, + "cuisine": "spanish", + "ingredients": [ + "salt and ground black pepper", + "cucumber", + "extra-virgin olive oil", + "dried parsley", + "tomatoes", + "garlic", + "bacon", + "onions" + ] + }, + { + "id": 20416, + "cuisine": "jamaican", + "ingredients": [ + "fresh thyme", + "scallions", + "water", + "salt", + "pepper", + "garlic", + "chicken thighs", + "ground black pepper", + "ground allspice" + ] + }, + { + "id": 33695, + "cuisine": "mexican", + "ingredients": [ + "msg", + "lean ground beef", + "all-purpose flour", + "boiling water", + "shredded extra sharp cheddar cheese", + "diced tomatoes", + "taco seasoning", + "sliced black olives", + "vegetable oil", + "salsa", + "iceberg lettuce", + "avocado", + "instant yeast", + "salt", + "sour cream" + ] + }, + { + "id": 43852, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "purple onion", + "mango", + "avocado", + "jalapeno chilies", + "chopped cilantro", + "pork tenderloin", + "pineapple juice", + "lime juice", + "sea salt", + "fresh pineapple" + ] + }, + { + "id": 20371, + "cuisine": "vietnamese", + "ingredients": [ + "lettuce", + "lemongrass", + "shallots", + "hot sauce", + "pickled vegetables", + "mayonaise", + "radishes", + "cilantro leaves", + "carrots", + "fish sauce", + "ground black pepper", + "salt", + "chinese five-spice powder", + "sugar", + "french bread", + "rice vinegar", + "minced pork" + ] + }, + { + "id": 45534, + "cuisine": "vietnamese", + "ingredients": [ + "milk", + "french fries", + "Sriracha", + "salted roast peanuts", + "garlic powder", + "cilantro", + "mayonaise", + "hoisin sauce" + ] + }, + { + "id": 20299, + "cuisine": "british", + "ingredients": [ + "mustard", + "butter", + "tarragon", + "milk", + "all-purpose flour", + "cheddar cheese", + "salt", + "cauliflower", + "parsley", + "fresh herbs" + ] + }, + { + "id": 24647, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "salt", + "cumin", + "crushed tomatoes", + "chili powder", + "lemon juice", + "tumeric", + "extra firm tofu", + "oil", + "soy yogurt", + "olive oil", + "paprika", + "chopped cilantro" + ] + }, + { + "id": 10799, + "cuisine": "greek", + "ingredients": [ + "pitas", + "salt", + "ground flaxseed", + "cherry tomatoes", + "black olives", + "greek yogurt", + "lettuce", + "garlic", + "low-fat feta", + "olive oil", + "purple onion", + "ground beef" + ] + }, + { + "id": 11616, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "minced garlic", + "green onions", + "bone-in chicken breast halves", + "cooking spray", + "star anise", + "sambal ulek", + "hoisin sauce", + "dry sherry", + "fat free less sodium chicken broth", + "peeled fresh ginger", + "cinnamon sticks" + ] + }, + { + "id": 32610, + "cuisine": "chinese", + "ingredients": [ + "water", + "long grain white rice" + ] + }, + { + "id": 8784, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "green onions", + "salt", + "cranberry sauce", + "dried thyme", + "bacon slices", + "chicken", + "pepper", + "refrigerated piecrusts", + "all-purpose flour", + "celery ribs", + "water", + "green peas", + "carrots" + ] + }, + { + "id": 11731, + "cuisine": "mexican", + "ingredients": [ + "serrano chilies", + "white onion", + "olive oil", + "lime wedges", + "purple onion", + "fresh lime juice", + "sugar", + "fresh cilantro", + "bay leaves", + "chilean sea bass fillets", + "garlic cloves", + "romaine lettuce", + "kosher salt", + "jalapeno chilies", + "red wine vinegar", + "freshly ground pepper", + "frozen orange juice concentrate", + "honey", + "Mexican oregano", + "crema", + "corn tortillas" + ] + }, + { + "id": 13243, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "cold water", + "boiling water", + "tea bags", + "ice cubes" + ] + }, + { + "id": 43123, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "paneer", + "curry paste", + "diced onions", + "baking soda", + "green chilies", + "water", + "shredded zucchini", + "chickpea flour", + "potatoes", + "rice flour" + ] + }, + { + "id": 46150, + "cuisine": "russian", + "ingredients": [ + "black pepper", + "salt", + "fresh parsley", + "vegetable oil", + "sour cream", + "water", + "garlic cloves", + "onions", + "tomato sauce", + "paprika", + "chicken pieces" + ] + }, + { + "id": 31620, + "cuisine": "mexican", + "ingredients": [ + "ancho powder", + "sour cream", + "cotija", + "garlic", + "mayonaise", + "shuck corn", + "lime", + "cilantro leaves" + ] + }, + { + "id": 34299, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "red bell pepper", + "white sugar", + "pineapple chunks", + "water", + "onions", + "green bell pepper", + "red curry paste", + "bamboo shoots", + "jasmine rice", + "coconut milk", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 36865, + "cuisine": "spanish", + "ingredients": [ + "brown sugar", + "cream sherry", + "vanilla beans", + "salt", + "sugar", + "white rice", + "firmly packed brown sugar", + "milk", + "cinnamon sticks" + ] + }, + { + "id": 9335, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "butter", + "fresh lime juice", + "black pepper", + "dry white wine", + "linguine", + "chopped cilantro fresh", + "peeled fresh ginger", + "whipping cream", + "chopped cilantro", + "sea scallops", + "shallots", + "salt", + "plum tomatoes" + ] + }, + { + "id": 44036, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "black sesame seeds", + "fresh leav spinach", + "sesame oil" + ] + }, + { + "id": 15602, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "bay leaves", + "diced tomatoes", + "okra", + "onions", + "bell pepper", + "crushed garlic", + "salt", + "celery", + "olive oil", + "chicken breasts", + "kielbasa", + "shrimp", + "bone broth", + "cajun seasoning", + "hot sauce", + "chicken base" + ] + }, + { + "id": 41500, + "cuisine": "vietnamese", + "ingredients": [ + "hamburger buns", + "shredded carrots", + "scallions", + "fish sauce", + "light soy sauce", + "sesame oil", + "panko breadcrumbs", + "brown sugar", + "red cabbage", + "seasoned rice wine vinegar", + "chopped cilantro fresh", + "broccoli slaw", + "tuna steaks", + "chopped fresh mint" + ] + }, + { + "id": 38677, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "salt", + "dried thyme", + "red pepper flakes", + "dried oregano", + "garlic powder", + "paprika", + "onion powder", + "cayenne pepper" + ] + }, + { + "id": 15568, + "cuisine": "southern_us", + "ingredients": [ + "condensed cream of mushroom soup", + "chopped onion", + "white sugar", + "chicken broth", + "dry bread crumbs", + "cornbread stuffing mix", + "chopped celery", + "crabmeat", + "chopped green bell pepper", + "margarine", + "medium shrimp" + ] + }, + { + "id": 33925, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "water chestnuts", + "ground pork", + "onions", + "soy sauce", + "hoisin sauce", + "low sodium chicken broth", + "garlic", + "low sodium soy sauce", + "duck sauce", + "jalapeno chilies", + "sweet and sour sauce", + "chopped cilantro fresh", + "bread crumb fresh", + "large eggs", + "barbecue sauce", + "scallions" + ] + }, + { + "id": 36950, + "cuisine": "vietnamese", + "ingredients": [ + "lemon zest", + "rice vinegar", + "garlic", + "white sugar", + "ginger", + "bird chile", + "salt" + ] + }, + { + "id": 22012, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "vegetable bouillon", + "diced tomatoes", + "celery", + "seasoning salt", + "potatoes", + "salt", + "cumin", + "olive oil", + "chili powder", + "carrots", + "water", + "hominy", + "garlic", + "onions" + ] + }, + { + "id": 42252, + "cuisine": "italian", + "ingredients": [ + "celery heart", + "purple onion", + "cherry tomatoes", + "sea salt", + "arugula", + "capers", + "red wine vinegar", + "brine-cured black olives", + "bibb lettuce", + "extra-virgin olive oil" + ] + }, + { + "id": 6920, + "cuisine": "french", + "ingredients": [ + "whole wheat flour", + "whole wheat bread", + "eggs", + "grated parmesan cheese", + "dried oregano", + "tomatoes", + "zucchini", + "nonfat yogurt plain", + "low-fat cottage cheese", + "butter" + ] + }, + { + "id": 6686, + "cuisine": "southern_us", + "ingredients": [ + "hot water", + "apple cider vinegar", + "sugar", + "pork shoulder", + "Tabasco Pepper Sauce" + ] + }, + { + "id": 22738, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "anise seed", + "liqueur", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 36929, + "cuisine": "french", + "ingredients": [ + "beef stock", + "black olives", + "garlic cloves", + "fresh parsley", + "ground black pepper", + "extra-virgin olive oil", + "baby carrots", + "bay leaf", + "red wine", + "salt", + "carrots", + "onions", + "celery ribs", + "diced tomatoes", + "all-purpose flour", + "herbes de provence", + "short rib" + ] + }, + { + "id": 8066, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "lemon", + "all-purpose flour", + "grits", + "unsalted butter", + "garlic", + "scallions", + "water", + "bacon", + "sharp cheddar cheese", + "large shrimp", + "chicken stock", + "Tabasco Pepper Sauce", + "salt", + "onions" + ] + }, + { + "id": 6232, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "boneless skinless chicken breasts", + "Rotel Diced Tomatoes & Green Chilies", + "olive oil", + "rice", + "seasoning", + "water", + "salt", + "tomato sauce", + "Mexican cheese blend", + "sour cream" + ] + }, + { + "id": 25454, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "grated parmesan cheese", + "purple onion", + "fresh parsley", + "mayonaise", + "olive oil", + "garlic", + "pepperoncini", + "romaine lettuce", + "cherry tomatoes", + "red pepper flakes", + "salt", + "iceberg lettuce", + "sugar", + "vinegar", + "black olives", + "lemon juice" + ] + }, + { + "id": 21563, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "ricotta cheese", + "salt", + "onions", + "tomato paste", + "mozzarella cheese", + "grated parmesan cheese", + "basil", + "ground beef", + "italian sausage", + "black pepper", + "lasagna noodles", + "diced tomatoes", + "sauce", + "eggs", + "pepper", + "parsley", + "garlic", + "fresh parsley" + ] + }, + { + "id": 24207, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "peanuts", + "black sesame seeds", + "yellow bell pepper", + "carrots", + "angel hair", + "sweet chili sauce", + "ground black pepper", + "sesame oil", + "rice vinegar", + "cooked shrimp", + "soy sauce", + "garlic powder", + "green onions", + "salt", + "red bell pepper", + "green bell pepper", + "fresh cilantro", + "tahini", + "napa cabbage", + "peanut butter" + ] + }, + { + "id": 18890, + "cuisine": "moroccan", + "ingredients": [ + "butter", + "salt", + "tumeric", + "paprika", + "chicken thighs", + "cinnamon", + "ginger", + "cumin", + "lemon", + "cayenne pepper" + ] + }, + { + "id": 35018, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "paneer", + "onions", + "tumeric", + "chili powder", + "cilantro leaves", + "ginger paste", + "tomatoes", + "capsicum", + "salt", + "cumin", + "amchur", + "kasuri methi", + "oil" + ] + }, + { + "id": 22076, + "cuisine": "irish", + "ingredients": [ + "ground black pepper", + "salt", + "celery seed", + "virginia ham", + "bay leaves", + "fresh lemon juice", + "fresh parsley", + "oysters", + "shells", + "rock salt", + "celery root", + "celery ribs", + "unsalted butter", + "grated lemon zest", + "heavy whipping cream" + ] + }, + { + "id": 23427, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "olive oil", + "zucchini", + "garlic", + "cucumber", + "chili flakes", + "water", + "shiitake", + "spring onions", + "sauce", + "beef steak", + "black pepper", + "sesame seeds", + "Sriracha", + "kiwi fruits", + "onions", + "fish sauce", + "honey", + "mirin", + "sesame oil", + "rice" + ] + }, + { + "id": 20628, + "cuisine": "southern_us", + "ingredients": [ + "butter-margarine blend", + "vanilla instant pudding", + "eggs", + "orange juice", + "yellow cake mix", + "chopped pecans", + "sugar", + "oil" + ] + }, + { + "id": 43402, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "large eggs", + "water", + "salt", + "milk", + "pepper", + "butter" + ] + }, + { + "id": 15680, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "rice noodles", + "carrots", + "low sodium vegetable broth", + "ginger", + "water", + "cracked black pepper", + "Earth Balance Buttery Spread", + "chard", + "miso paste", + "garlic" + ] + }, + { + "id": 2930, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "white sugar", + "yellow mustard" + ] + }, + { + "id": 43302, + "cuisine": "indian", + "ingredients": [ + "oil", + "water", + "atta", + "ghee", + "salt" + ] + }, + { + "id": 12999, + "cuisine": "japanese", + "ingredients": [ + "barley miso", + "walnuts", + "blanched almonds", + "warm water" + ] + }, + { + "id": 36619, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "fava beans", + "extra-virgin olive oil", + "fresh parmesan cheese", + "part-skim ricotta cheese", + "pasta", + "mint sprigs", + "chopped fresh mint" + ] + }, + { + "id": 4058, + "cuisine": "british", + "ingredients": [ + "powdered sugar", + "whole milk", + "strawberries", + "cream sherry", + "heavy cream", + "corn starch", + "sugar", + "cake", + "fresh raspberries", + "raspberry jam", + "egg yolks", + "vanilla extract", + "heavy whipping cream" + ] + }, + { + "id": 311, + "cuisine": "cajun_creole", + "ingredients": [ + "brown sugar", + "green onions", + "fresh lime juice", + "olive oil", + "creole seasoning", + "cherry tomatoes", + "salt", + "chopped cilantro fresh", + "boneless chops", + "red bell pepper" + ] + }, + { + "id": 5142, + "cuisine": "mexican", + "ingredients": [ + "yellow bell pepper", + "red bell pepper", + "olive oil", + "fresh oregano", + "zucchini", + "cumin seed", + "purple onion", + "poblano chiles" + ] + }, + { + "id": 37805, + "cuisine": "italian", + "ingredients": [ + "water", + "italian plum tomatoes", + "fresh parsley", + "tomato paste", + "olive oil", + "lean ground beef", + "spaghetti", + "dried basil", + "bay leaves", + "onions", + "tomato sauce", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 5949, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "mayonaise", + "salsa", + "eggs", + "shredded lettuce", + "refried beans" + ] + }, + { + "id": 7836, + "cuisine": "french", + "ingredients": [ + "truffles", + "egg yolks", + "filet", + "bread crumbs", + "potatoes", + "beaten eggs", + "glace de viande", + "Madeira", + "ground black pepper", + "butter", + "fat", + "light cream", + "flour", + "salt" + ] + }, + { + "id": 45724, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "cilantro", + "capers", + "lemon", + "yellow onion", + "eggs", + "potatoes", + "garlic", + "chiles", + "sea salt" + ] + }, + { + "id": 41248, + "cuisine": "italian", + "ingredients": [ + "pepper", + "large eggs", + "garlic", + "roasted red peppers", + "parsley", + "onions", + "olive oil", + "marinara sauce", + "salt", + "mozzarella cheese", + "parmigiano reggiano cheese", + "casings" + ] + }, + { + "id": 25827, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salsa", + "romaine lettuce", + "boneless skinless chicken breasts", + "onions", + "tomatoes", + "flour tortillas", + "sour cream", + "black beans", + "chili powder", + "ground cumin" + ] + }, + { + "id": 44551, + "cuisine": "spanish", + "ingredients": [ + "white vinegar", + "diced tomatoes", + "sour cream", + "low-fat plain yogurt", + "garlic cloves", + "sliced green onions", + "chicken broth", + "salt", + "fresh parsley", + "pepper", + "cucumber" + ] + }, + { + "id": 13200, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "green onions", + "rice vinegar", + "Sriracha", + "ramen noodles", + "honey", + "sesame oil", + "ground ginger", + "large eggs", + "cilantro leaves" + ] + }, + { + "id": 5691, + "cuisine": "korean", + "ingredients": [ + "pepper", + "red pepper", + "brown sugar", + "sesame oil", + "salt", + "ground ginger", + "green onions", + "garlic", + "soy sauce", + "lean ground beef", + "rice" + ] + }, + { + "id": 30424, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "ground pepper", + "vegetable oil", + "fish sauce", + "minced garlic", + "Shaoxing wine", + "crab", + "asparagus", + "large shrimp", + "sugar", + "vegetarian oyster sauce", + "shallots" + ] + }, + { + "id": 7093, + "cuisine": "moroccan", + "ingredients": [ + "dried apricot", + "lemon", + "chopped fresh mint", + "Quorn crumbles", + "couscous", + "ground cumin", + "unsalted cashews", + "sunflower oil", + "ground turmeric", + "ground cinnamon", + "vegetable stock", + "onions" + ] + }, + { + "id": 26192, + "cuisine": "jamaican", + "ingredients": [ + "grated coconut", + "cinnamon", + "cornmeal", + "nutmeg", + "flour", + "vanilla", + "milk", + "butter", + "sugar", + "baking powder", + "salt" + ] + }, + { + "id": 15184, + "cuisine": "greek", + "ingredients": [ + "pasta", + "extra-virgin olive oil", + "feta cheese crumbles", + "boneless skinless chicken breasts", + "fresh lemon juice", + "sliced black olives", + "chopped onion", + "fresh spinach", + "garlic" + ] + }, + { + "id": 21686, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "butter", + "penne pasta", + "pepper", + "flour", + "gruyere cheese", + "grated parmesan cheese", + "white cheddar cheese", + "milk", + "half & half", + "salt" + ] + }, + { + "id": 3971, + "cuisine": "french", + "ingredients": [ + "red potato", + "extra-virgin olive oil", + "black pepper", + "dry bread crumbs", + "fresh basil", + "salt", + "tomatoes", + "chopped fresh thyme", + "garlic cloves" + ] + }, + { + "id": 49346, + "cuisine": "thai", + "ingredients": [ + "fresh ginger", + "cilantro leaves", + "fresh lime juice", + "honey", + "crushed red pepper", + "garlic cloves", + "olive oil", + "salt", + "shrimp", + "unsalted dry roast peanuts", + "rice" + ] + }, + { + "id": 37315, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "garam masala", + "juice", + "sea salt flakes", + "chickpea flour", + "lime", + "natural yogurt", + "nigella seeds", + "fresh coriander", + "sunflower oil", + "carrots", + "ground ginger", + "fresh ginger", + "free range egg", + "ground turmeric" + ] + }, + { + "id": 38558, + "cuisine": "italian", + "ingredients": [ + "basil", + "oregano", + "tomato sauce", + "garlic", + "marinara sauce", + "beef broth", + "dry red wine" + ] + }, + { + "id": 48406, + "cuisine": "british", + "ingredients": [ + "beef drippings", + "beef rib roast", + "all-purpose flour", + "marjoram", + "horseradish", + "milk", + "purple onion", + "garlic cloves", + "eggs", + "pepper", + "cracked black pepper", + "beef broth", + "cream", + "dried thyme", + "salt", + "onions" + ] + }, + { + "id": 34222, + "cuisine": "filipino", + "ingredients": [ + "water", + "miso", + "oil", + "tomatoes", + "radishes", + "garlic", + "leaves", + "ginger", + "onions", + "fish sauce", + "base", + "catfish" + ] + }, + { + "id": 4397, + "cuisine": "mexican", + "ingredients": [ + "water", + "taco seasoning", + "minute rice", + "chicken broth", + "juice" + ] + }, + { + "id": 48943, + "cuisine": "french", + "ingredients": [ + "large eggs", + "buckwheat flour", + "sugar", + "1% low-fat milk", + "butter", + "all-purpose flour", + "water", + "salt" + ] + }, + { + "id": 7037, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "shallots", + "salt", + "water", + "chees fresh mozzarella", + "couscous", + "black pepper", + "diced tomatoes", + "garlic cloves", + "basil leaves", + "extra-virgin olive oil" + ] + }, + { + "id": 48499, + "cuisine": "moroccan", + "ingredients": [ + "whole wheat pita", + "boneless skinless chicken breasts", + "ground cardamom", + "low-fat plain yogurt", + "finely chopped onion", + "salt", + "chopped cilantro fresh", + "coriander seeds", + "ground red pepper", + "cucumber", + "sugar", + "cooking spray", + "mixed greens", + "ground cumin" + ] + }, + { + "id": 4853, + "cuisine": "italian", + "ingredients": [ + "garlic", + "water", + "salt", + "rump roast", + "crushed red pepper", + "cracked black pepper", + "dried oregano" + ] + }, + { + "id": 44786, + "cuisine": "russian", + "ingredients": [ + "large eggs", + "fresh mushrooms", + "dried porcini mushrooms", + "vegetable broth", + "boiling water", + "vegetable oil", + "garlic cloves", + "buckwheat groats", + "onions" + ] + }, + { + "id": 27301, + "cuisine": "chinese", + "ingredients": [ + "dumpling wrappers", + "vegetable oil", + "corn starch", + "cold water", + "fresh ginger root", + "salt", + "chinese black vinegar", + "light soy sauce", + "ground pork", + "toasted sesame oil", + "fresh cilantro", + "granulated sugar", + "scallions" + ] + }, + { + "id": 18394, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "epazote", + "chorizo sausage", + "Knorr Chicken Flavor Bouillon", + "onions", + "water", + "bacon", + "tomatoes", + "vegetable oil", + "serrano chile" + ] + }, + { + "id": 14263, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "fresh cilantro", + "diced tomatoes", + "long-grain rice", + "frozen peas", + "minced garlic", + "olive oil", + "yellow onion", + "ham", + "chicken", + "pepper", + "dried thyme", + "salt", + "mussels, well scrubbed", + "saffron", + "chicken broth", + "chorizo", + "lemon wedge", + "cumin seed", + "bay leaf" + ] + }, + { + "id": 25158, + "cuisine": "moroccan", + "ingredients": [ + "min", + "minced garlic", + "chicken breasts", + "couscous", + "canola oil", + "saffron threads", + "fresh tomatoes", + "low sodium vegetable broth", + "artichokes", + "chopped cilantro fresh", + "preserved lemon", + "minced ginger", + "apricot halves", + "cashew nuts", + "chicken", + "ground cinnamon", + "tumeric", + "ground nutmeg", + "yellow onion", + "olives" + ] + }, + { + "id": 44331, + "cuisine": "mexican", + "ingredients": [ + "pure vanilla extract", + "whole milk", + "cinnamon sticks", + "granulated sugar", + "heavy cream", + "water", + "yolk", + "bittersweet chocolate", + "large eggs", + "salt" + ] + }, + { + "id": 45054, + "cuisine": "cajun_creole", + "ingredients": [ + "low sodium chicken broth", + "diced tomatoes", + "fresh parsley", + "andouille sausage", + "worcestershire sauce", + "vegetable seasoning", + "cajun seasoning", + "long-grain rice", + "ground red pepper", + "garlic", + "sliced green onions" + ] + }, + { + "id": 9404, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "fresh ginger", + "cilantro", + "cumin seed", + "tumeric", + "jalapeno chilies", + "salt", + "ghee", + "tomatoes", + "garam masala", + "garlic", + "mustard seeds", + "water", + "new potatoes", + "ground coriander", + "frozen peas" + ] + }, + { + "id": 28145, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "tortillas", + "salsa", + "garlic salt", + "lime juice", + "chili powder", + "red bell pepper", + "romaine lettuce", + "green onions", + "low-fat yogurt", + "light sour cream", + "Mexican cheese blend", + "lean ground beef", + "chopped cilantro" + ] + }, + { + "id": 23393, + "cuisine": "french", + "ingredients": [ + "water", + "fresh lime juice", + "sugar", + "strawberries", + "fresh orange juice", + "grated orange", + "lime rind", + "tequila" + ] + }, + { + "id": 46467, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "flaked coconut", + "mustard seeds", + "onions", + "fresh curry leaves", + "split black lentils", + "salt", + "dried red chile peppers", + "chopped cilantro fresh", + "tomatoes", + "bengal gram", + "chile pepper", + "asafoetida powder", + "white sugar", + "peanuts", + "cooking oil", + "cumin seed", + "cooked white rice", + "ground turmeric" + ] + }, + { + "id": 994, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "red curry paste", + "tomato sauce", + "leeks", + "ground beef", + "lime zest", + "minced ginger", + "garlic cloves", + "soy sauce", + "light coconut milk" + ] + }, + { + "id": 32840, + "cuisine": "chinese", + "ingredients": [ + "milk", + "green onions", + "salt", + "corn starch", + "sugar", + "vegetables", + "ground pork", + "oil", + "soy sauce", + "Shaoxing wine", + "ginger", + "garlic cloves", + "active dry yeast", + "sesame oil", + "all-purpose flour" + ] + }, + { + "id": 27135, + "cuisine": "mexican", + "ingredients": [ + "salted cashews", + "bananas", + "sugar", + "fresh lemon juice" + ] + }, + { + "id": 11990, + "cuisine": "italian", + "ingredients": [ + "water", + "vegetable oil", + "diced onions", + "grated parmesan cheese", + "sliced mushrooms", + "italian sausage", + "pizza sauce", + "italian seasoning", + "chopped tomatoes", + "sausages" + ] + }, + { + "id": 46405, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "fresh cilantro", + "shallots", + "dark sesame oil", + "boneless chicken thighs", + "ground black pepper", + "garlic", + "kosher salt", + "jalapeno chilies", + "all-purpose flour", + "soy sauce", + "fresh ginger", + "vegetable oil", + "sweet rice wine" + ] + }, + { + "id": 27532, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "extra-virgin olive oil", + "gnocchi", + "water", + "broccoli florets", + "chopped walnuts", + "ground black pepper", + "salt", + "cooked chicken breasts", + "parmesan cheese", + "Italian parsley leaves", + "garlic cloves" + ] + }, + { + "id": 10224, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "coarse salt", + "yellow onion", + "cherry tomatoes", + "extra-virgin olive oil", + "freshly ground pepper", + "peeled fresh ginger", + "cilantro leaves", + "garlic cloves", + "curry powder", + "baby spinach", + "chickpeas" + ] + }, + { + "id": 6941, + "cuisine": "vietnamese", + "ingredients": [ + "dark soy sauce", + "boneless chicken skinless thigh", + "green onions", + "salt", + "medium shrimp", + "sugar", + "chinese sausage", + "lemon", + "garlic cloves", + "fish sauce", + "fresh ginger", + "napa cabbage", + "yellow onion", + "canola oil", + "soy sauce", + "low sodium chicken broth", + "rice vermicelli", + "carrots" + ] + }, + { + "id": 29092, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "cantaloupe" + ] + }, + { + "id": 48860, + "cuisine": "brazilian", + "ingredients": [ + "minced garlic", + "kosher salt", + "shallots", + "pepper", + "butter", + "collard greens", + "olive oil" + ] + }, + { + "id": 7774, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "crushed pretzels", + "unsalted butter", + "vanilla", + "butter", + "pie shell", + "eggs", + "light corn syrup" + ] + }, + { + "id": 31828, + "cuisine": "italian", + "ingredients": [ + "bay leaves", + "diced tomatoes", + "sausage meat", + "butter", + "extra-virgin olive oil", + "onions", + "mushrooms", + "paprika", + "thyme", + "tomato sauce", + "red wine", + "garlic", + "oregano" + ] + }, + { + "id": 5466, + "cuisine": "italian", + "ingredients": [ + "egg roll wrappers", + "shredded mozzarella cheese", + "pepper", + "ricotta cheese", + "garlic salt", + "fresh basil", + "large eggs", + "onions", + "parmesan cheese", + "tomato basil sauce", + "italian-style meatballs" + ] + }, + { + "id": 30057, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "kalamata", + "olive oil", + "fresh oregano leaves", + "hot dog bun", + "kosher salt", + "plum tomatoes" + ] + }, + { + "id": 15407, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "mushrooms", + "all-purpose flour", + "thyme sprigs", + "chuck", + "unsalted butter", + "large garlic cloves", + "carrots", + "onions", + "clove", + "bay leaves", + "dry red wine", + "celery", + "thick-cut bacon", + "brandy", + "vegetable oil", + "boiling onions", + "fresh parsley" + ] + }, + { + "id": 1865, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "grated lemon peel", + "dry white wine", + "low salt chicken broth", + "arborio rice", + "shallots", + "fresh parsley", + "grated parmesan cheese", + "fresh lemon juice" + ] + }, + { + "id": 2584, + "cuisine": "mexican", + "ingredients": [ + "clove", + "white onion", + "Mexican beer", + "dried oregano", + "pasilla chiles", + "olive oil", + "garlic cloves", + "white vinegar", + "guajillo chiles", + "fine salt", + "skirt steak", + "adobo", + "kosher salt", + "cumin seed" + ] + }, + { + "id": 42982, + "cuisine": "italian", + "ingredients": [ + "white chocolate", + "white sugar", + "butter", + "unsweetened cocoa powder", + "baking powder", + "semi-sweet chocolate morsels", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 39783, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "boneless skinless chicken breast halves", + "mushrooms", + "chopped pecans", + "cooking spray", + "egg noodles, cooked and drained", + "water", + "shallots", + "chopped parsley" + ] + }, + { + "id": 10272, + "cuisine": "southern_us", + "ingredients": [ + "paprika", + "milk", + "cut up cooked chicken", + "mushroom soup", + "Bisquick Baking Mix", + "and carrot green pea" + ] + }, + { + "id": 49520, + "cuisine": "mexican", + "ingredients": [ + "corn", + "jalapeno chilies", + "chopped cilantro fresh", + "lime juice", + "chopped tomatoes", + "yellow onion", + "avocado", + "olive oil", + "salt", + "low sodium vegetable broth", + "quinoa", + "scallions" + ] + }, + { + "id": 13683, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "lime wedges", + "cilantro leaves", + "cabbage", + "green bell pepper", + "lime", + "jalapeno chilies", + "purple onion", + "corn tortillas", + "avocado", + "white onion", + "garlic powder", + "yellow bell pepper", + "red bell pepper", + "ground chipotle chile pepper", + "cherry tomatoes", + "chili powder", + "salt", + "cumin" + ] + }, + { + "id": 28275, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "milk", + "pure vanilla extract", + "baking soda", + "water" + ] + }, + { + "id": 39253, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "cayenne", + "bay leaves", + "salt", + "ham hock", + "water", + "chopped green bell pepper", + "cajun seasoning", + "chopped onion", + "celery seed", + "dried thyme", + "file powder", + "garlic", + "peanut oil", + "greens", + "andouille sausage", + "garlic powder", + "flour", + "chopped celery", + "sweet paprika", + "dried oregano" + ] + }, + { + "id": 2305, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "all-purpose flour", + "heavy cream", + "baking powder", + "melted butter", + "salt" + ] + }, + { + "id": 17997, + "cuisine": "irish", + "ingredients": [ + "wheat bran", + "old-fashioned oats", + "dark brown sugar", + "baking soda", + "salt", + "whole wheat flour", + "buttermilk", + "toasted wheat germ", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 12353, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "peaches", + "salt", + "cold water", + "sweetener", + "all purpose unbleached flour", + "water", + "vegetable shortening", + "piecrust", + "arrowroot starch", + "canola oil" + ] + }, + { + "id": 39880, + "cuisine": "mexican", + "ingredients": [ + "butter", + "white mushrooms", + "flour tortillas", + "yellow onion", + "olive oil", + "cilantro", + "sour cream", + "bell pepper", + "shredded cheese" + ] + }, + { + "id": 11101, + "cuisine": "cajun_creole", + "ingredients": [ + "frozen pastry puff sheets", + "chicken meat", + "all-purpose flour", + "water", + "cajun seasoning", + "garlic", + "flavoring", + "finely chopped onion", + "butter", + "beaten eggs", + "red bell pepper", + "sausage links", + "whole milk", + "white rice", + "shrimp" + ] + }, + { + "id": 28506, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "garam masala", + "bay leaves", + "purple onion", + "cumin seed", + "cinnamon sticks", + "ground turmeric", + "saffron threads", + "olive oil", + "mint leaves", + "large garlic cloves", + "rice", + "leg of lamb", + "ghee", + "kosher salt", + "ground black pepper", + "marinade", + "yellow onion", + "garlic cloves", + "ground cayenne pepper", + "tomato sauce", + "fresh ginger root", + "curry sauce", + "paprika", + "cardamom pods", + "cucumber", + "basmati rice" + ] + }, + { + "id": 26737, + "cuisine": "japanese", + "ingredients": [ + "large egg whites", + "all-purpose flour", + "milk chocolate", + "baking powder", + "bittersweet chocolate", + "sugar", + "unsalted butter", + "ground cardamom", + "water", + "salt", + "sweetened condensed milk" + ] + }, + { + "id": 17013, + "cuisine": "southern_us", + "ingredients": [ + "heavy cream", + "okra", + "fresh tomato salsa", + "large eggs", + "all-purpose flour", + "shrimp", + "green bell pepper", + "salt", + "freshly ground pepper", + "onions", + "jalapeno chilies", + "peanut oil", + "sour cream" + ] + }, + { + "id": 11859, + "cuisine": "indian", + "ingredients": [ + "boneless chicken breast", + "cooking oil", + "curry sauce", + "cooked rice", + "cilantro" + ] + }, + { + "id": 47743, + "cuisine": "mexican", + "ingredients": [ + "shredded reduced fat cheddar cheese", + "taco seasoning", + "ground chicken", + "garlic", + "olives", + "chili oil", + "onions", + "black beans", + "tortilla chips", + "hot salsa" + ] + }, + { + "id": 18001, + "cuisine": "mexican", + "ingredients": [ + "water", + "baked tortilla chips", + "ground cumin", + "minced garlic", + "stewed tomatoes", + "chopped cilantro fresh", + "chicken breast tenders", + "salt", + "canola oil", + "fat free less sodium chicken broth", + "lime", + "chipotle chile powder" + ] + }, + { + "id": 21482, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "bacon", + "all-purpose flour", + "bay leaf", + "andouille sausage", + "vegetable oil", + "salt", + "celery", + "chicken stock", + "bell pepper", + "garlic", + "ground allspice", + "lacinato kale", + "ground black pepper", + "yellow lentils", + "creole seasoning", + "onions" + ] + }, + { + "id": 17568, + "cuisine": "vietnamese", + "ingredients": [ + "low sodium soy sauce", + "shiitake", + "green onions", + "corn starch", + "brown sugar", + "sherry", + "organic vegetable broth", + "large shrimp", + "cooked rice", + "ground black pepper", + "salt", + "bok choy", + "chile paste", + "peeled fresh ginger", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 46139, + "cuisine": "french", + "ingredients": [ + "olive oil", + "shallots", + "unsalted butter", + "new york strip steaks", + "ground pepper", + "salt", + "brandy", + "veal", + "low sodium beef stock" + ] + }, + { + "id": 13236, + "cuisine": "southern_us", + "ingredients": [ + "rosemary sprigs", + "garlic powder", + "onion powder", + "garlic", + "thyme", + "chicken", + "kosher salt", + "cayenne", + "buttermilk", + "Diamond Crystal® Kosher Salt", + "flat leaf parsley", + "black peppercorns", + "water", + "bay leaves", + "paprika", + "peanut oil", + "brine", + "clover honey", + "ground black pepper", + "lemon", + "all-purpose flour", + "fleur de sel" + ] + }, + { + "id": 43450, + "cuisine": "greek", + "ingredients": [ + "butter", + "flat leaf parsley", + "grape tomatoes", + "garlic", + "lemon", + "medium shrimp", + "dry white wine", + "feta cheese crumbles" + ] + }, + { + "id": 17762, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "anchovy paste", + "lemon juice", + "tuna steaks", + "garlic", + "ground black pepper", + "linguine", + "flat leaf parsley", + "pitted green olives", + "salt" + ] + }, + { + "id": 6619, + "cuisine": "thai", + "ingredients": [ + "corn syrup", + "mango", + "garlic sauce" + ] + }, + { + "id": 33010, + "cuisine": "southern_us", + "ingredients": [ + "red wine vinegar", + "salt", + "pepper", + "garlic", + "chicken broth", + "fresh green bean", + "chopped cilantro", + "unsalted butter", + "purple onion" + ] + }, + { + "id": 47266, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "green pepper", + "avocado", + "roma tomatoes", + "onions", + "corn", + "rice", + "romaine lettuce", + "cooked chicken" + ] + }, + { + "id": 15739, + "cuisine": "french", + "ingredients": [ + "water", + "semisweet chocolate", + "fresh lemon juice", + "unsalted butter", + "vanilla extract", + "kirsch", + "sugar", + "cherries", + "Dutch-processed cocoa powder", + "grated lemon peel", + "large egg yolks", + "whipping cream", + "corn starch" + ] + }, + { + "id": 26065, + "cuisine": "mexican", + "ingredients": [ + "guacamole", + "Old El Paso™ refried beans", + "chicken", + "jack cheese", + "salsa", + "flour tortillas" + ] + }, + { + "id": 19500, + "cuisine": "korean", + "ingredients": [ + "water", + "pepper", + "sesame oil", + "soy sauce", + "beef brisket", + "minced garlic", + "salt" + ] + }, + { + "id": 3219, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "linguine", + "tomatoes", + "sea salt", + "juice", + "red pepper flakes", + "garlic", + "cockles", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 6916, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "tomatillos", + "lard", + "jalapeno chilies", + "salt", + "cooked chicken breasts", + "corn husks", + "garlic", + "onions", + "baking powder", + "cumin seed" + ] + }, + { + "id": 23497, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "pastina", + "pesto", + "water", + "fresh lemon juice", + "chicken breast tenders", + "salt", + "black pepper", + "fresh parmesan cheese", + "celery" + ] + }, + { + "id": 20047, + "cuisine": "greek", + "ingredients": [ + "bread crumbs", + "feta cheese", + "butter", + "all-purpose flour", + "tomato paste", + "eggplant", + "vegetable oil", + "salt", + "milk", + "beef stock", + "garlic", + "onions", + "pepper", + "egg yolks", + "ground veal", + "fresh parsley" + ] + }, + { + "id": 49497, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "peanuts", + "rice noodles", + "oil", + "water", + "chili powder", + "rice vinegar", + "chinese chives", + "sugar", + "large eggs", + "garlic", + "shrimp", + "large egg whites", + "lime wedges", + "firm tofu", + "beansprouts" + ] + }, + { + "id": 4183, + "cuisine": "irish", + "ingredients": [ + "apple juice", + "cabbage", + "brown sugar", + "carrots", + "small red potato", + "corned beef", + "prepared mustard", + "onions" + ] + }, + { + "id": 19866, + "cuisine": "filipino", + "ingredients": [ + "water", + "glutinous rice flour", + "sesame seeds", + "coconut", + "caster sugar", + "salt" + ] + }, + { + "id": 27236, + "cuisine": "mexican", + "ingredients": [ + "orange juice", + "silver tequila", + "syrup", + "pineapple juice" + ] + }, + { + "id": 45253, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "water", + "jalapeno chilies", + "margarine", + "low salt chicken broth", + "fat free yogurt", + "crushed tomatoes", + "yellow bell pepper", + "garlic cloves", + "medium shrimp", + "dried currants", + "curry powder", + "peeled fresh ginger", + "chopped onion", + "red bell pepper", + "black pepper", + "quinces", + "salt", + "corn starch", + "sliced green onions" + ] + }, + { + "id": 48184, + "cuisine": "spanish", + "ingredients": [ + "low-fat sour cream", + "salt", + "honey", + "grated orange", + "plain low-fat yogurt", + "artichokes", + "fresh dill", + "orange juice" + ] + }, + { + "id": 34895, + "cuisine": "mexican", + "ingredients": [ + "lime", + "medium salsa", + "onions", + "eggs", + "vegetable oil", + "chipotles in adobo", + "tomatoes", + "pepper jack", + "corn tortillas", + "black beans", + "cilantro sprigs", + "adobo sauce" + ] + }, + { + "id": 45768, + "cuisine": "cajun_creole", + "ingredients": [ + "fettucine", + "dried thyme", + "grated parmesan cheese", + "paprika", + "diced yellow onion", + "minced garlic", + "garlic powder", + "turkey sausage", + "cayenne pepper", + "large shrimp", + "black pepper", + "olive oil", + "onion powder", + "salt", + "dried oregano", + "chicken stock", + "dried basil", + "essence seasoning", + "heavy cream", + "green pepper" + ] + }, + { + "id": 37334, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "garlic powder", + "chili powder", + "black olives", + "cumin", + "kosher salt", + "green onions", + "diced tomatoes", + "sour cream", + "white onion", + "low sodium chicken broth", + "lean ground beef", + "hot sauce", + "avocado", + "olive oil", + "colby jack cheese", + "paprika", + "rotini" + ] + }, + { + "id": 26285, + "cuisine": "filipino", + "ingredients": [ + "tomatoes", + "beef bouillon", + "salt", + "pepper", + "potatoes", + "onions", + "water", + "garlic", + "fish sauce", + "cooking oil", + "ground beef" + ] + }, + { + "id": 37388, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "purple onion", + "canola oil", + "tomatoes", + "lime juice", + "shredded lettuce", + "sour cream", + "chicken broth", + "shredded cheddar cheese", + "guacamole", + "frozen corn", + "black beans", + "quinoa", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 49583, + "cuisine": "french", + "ingredients": [ + "mint sprigs", + "fresh lemon juice", + "ground black pepper", + "crème fraîche", + "granulated sugar", + "strawberries", + "light brown sugar", + "raspberry vinegar" + ] + }, + { + "id": 13906, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "pinenuts", + "fresh basil leaves", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 9786, + "cuisine": "chinese", + "ingredients": [ + "custard powder", + "vanilla extract", + "sugar", + "unsalted butter", + "all-purpose flour", + "powdered sugar", + "evaporated milk", + "salt", + "water", + "large eggs" + ] + }, + { + "id": 9817, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "white pepper", + "garlic", + "sugar", + "rice wine", + "potato starch", + "soy sauce", + "sesame oil", + "five spice", + "pork chops", + "sauce" + ] + }, + { + "id": 1695, + "cuisine": "italian", + "ingredients": [ + "sugar", + "finely chopped onion", + "red wine vinegar", + "capers", + "olive oil", + "country style italian bread", + "plum tomatoes", + "green olives", + "pinenuts", + "parsley leaves", + "chopped celery", + "parsley sprigs", + "eggplant", + "golden raisins" + ] + }, + { + "id": 17133, + "cuisine": "southern_us", + "ingredients": [ + "graham cracker crumbs", + "sweetened condensed milk", + "cool whip", + "fresh lemon juice", + "sugar", + "butter", + "large egg yolks", + "grated lemon zest" + ] + }, + { + "id": 29110, + "cuisine": "vietnamese", + "ingredients": [ + "stewing hen", + "Sriracha", + "rice vermicelli", + "fresh basil", + "lime", + "mint sprigs", + "beansprouts", + "cold water", + "chicken bones", + "jalapeno chilies", + "salt", + "fish sauce", + "fresh ginger", + "cilantro sprigs", + "cooked chicken breasts" + ] + }, + { + "id": 4087, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "green onions", + "pinto beans", + "green bell pepper", + "chile pepper", + "bread mix", + "ranch dressing", + "bacon bits", + "shredded cheddar cheese", + "whole kernel corn, drain" + ] + }, + { + "id": 43475, + "cuisine": "thai", + "ingredients": [ + "half & half", + "sugar", + "black tea", + "cardamom pods", + "water", + "sweetened condensed milk" + ] + }, + { + "id": 15097, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "fresh thyme", + "red snapper", + "olive oil", + "sea salt", + "rosemary", + "lemon", + "brandy", + "lemon grass", + "freshly ground pepper" + ] + }, + { + "id": 28910, + "cuisine": "mexican", + "ingredients": [ + "chicken bouillon", + "hot water", + "pasta", + "olive oil", + "garlic salt", + "fresh cilantro", + "onions", + "tomatoes", + "ground black pepper", + "ground cumin" + ] + }, + { + "id": 6900, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "orange roughy fillet", + "chopped celery", + "garlic cloves", + "large shrimp", + "olive oil", + "sea salt", + "all-purpose flour", + "onions", + "water", + "sea bass fillets", + "crushed red pepper", + "fresh parsley", + "tentacles", + "dry white wine", + "extra-virgin olive oil", + "squid", + "plum tomatoes" + ] + }, + { + "id": 43036, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "baking powder", + "cooking spray", + "all-purpose flour", + "almonds", + "almond extract" + ] + }, + { + "id": 11088, + "cuisine": "italian", + "ingredients": [ + "pepper", + "red pepper flakes", + "garlic", + "fresh basil", + "baby spinach", + "cheese", + "water", + "diced tomatoes", + "onions", + "italian sausage", + "dried basil", + "cheese tortellini", + "chicken" + ] + }, + { + "id": 13636, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "seasoning mix", + "tortillas", + "shredded Monterey Jack cheese", + "sour cream", + "shredded cheddar cheese", + "chopped cilantro" + ] + }, + { + "id": 2512, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "salsa", + "avocado", + "sirloin steak", + "masa harina", + "kosher salt", + "canola oil", + "cotija", + "nopales" + ] + }, + { + "id": 40094, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "active dry yeast", + "bread crumbs", + "butter", + "warm water", + "flour", + "eggs", + "milk", + "salt" + ] + }, + { + "id": 41621, + "cuisine": "filipino", + "ingredients": [ + "ginger", + "whole chicken", + "lemongrass", + "garlic", + "onions", + "fresh spinach", + "thai chile", + "coconut milk", + "papaya", + "salt" + ] + }, + { + "id": 19384, + "cuisine": "mexican", + "ingredients": [ + "water", + "diced tomatoes", + "chili beans", + "kidney beans", + "ground beef", + "taco seasoning mix", + "liquid", + "tomato sauce", + "chile pepper", + "onions" + ] + }, + { + "id": 27815, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "ham", + "olive oil", + "garlic", + "swiss chard", + "salt", + "pepper", + "grated parmesan cheese" + ] + }, + { + "id": 31571, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "salt", + "soy sauce", + "low sodium chicken broth", + "napa cabbage", + "eggs", + "fresh ginger root", + "vegetable oil", + "corn starch", + "msg", + "green onions", + "ground pork" + ] + }, + { + "id": 18074, + "cuisine": "southern_us", + "ingredients": [ + "nutmeg", + "whole wheat flour", + "sea salt", + "smoked gouda", + "milk", + "onion powder", + "sharp cheddar cheese", + "black pepper", + "parmesan cheese", + "dry mustard", + "noodles", + "dried thyme", + "butter", + "bay leaf" + ] + }, + { + "id": 40651, + "cuisine": "mexican", + "ingredients": [ + "nacho chips", + "green pepper", + "iceberg lettuce", + "cheddar cheese", + "red pepper", + "sour cream", + "tomatoes", + "green onions", + "taco seasoning", + "french dressing", + "salsa", + "ground beef" + ] + }, + { + "id": 998, + "cuisine": "french", + "ingredients": [ + "lettuce leaves", + "green peas", + "ground black pepper", + "shallots", + "unsalted butter", + "sea salt", + "water", + "spring onions", + "carrots" + ] + }, + { + "id": 35801, + "cuisine": "italian", + "ingredients": [ + "capers", + "baby arugula", + "fresh lemon juice", + "eggplant", + "lamb shoulder", + "coarse kosher salt", + "olive oil", + "large garlic cloves", + "red bell pepper", + "ground black pepper", + "fresh oregano" + ] + }, + { + "id": 35965, + "cuisine": "french", + "ingredients": [ + "sage leaves", + "zucchini", + "fresh parsley leaves", + "bread crumb fresh", + "garlic cloves", + "celery ribs", + "oil-cured black olives", + "plum tomatoes", + "olive oil", + "small white beans" + ] + }, + { + "id": 25210, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "ground black pepper", + "ground veal", + "ground beef", + "spanish onion", + "large eggs", + "fat", + "white bread", + "olive oil", + "marinara sauce", + "flat leaf parsley", + "milk", + "grated romano cheese", + "salt", + "chopped garlic" + ] + }, + { + "id": 262, + "cuisine": "japanese", + "ingredients": [ + "yuzu juice", + "grapefruit", + "kosher salt", + "grated lemon zest", + "lime zest", + "grapefruit juice", + "fresh lime juice", + "sugar", + "thai chile" + ] + }, + { + "id": 2003, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "large eggs", + "light soy sauce", + "daikon", + "water", + "vegetable oil", + "sugar", + "mirin", + "bonito" + ] + }, + { + "id": 40676, + "cuisine": "filipino", + "ingredients": [ + "water", + "squid", + "noodles", + "chicken broth", + "mushrooms", + "celery", + "cooking oil", + "corn starch", + "soy sauce", + "salt", + "onions" + ] + }, + { + "id": 43141, + "cuisine": "japanese", + "ingredients": [ + "sushi rice", + "shrimp", + "water", + "nori sheets", + "smoked eel", + "avocado", + "sauce" + ] + }, + { + "id": 5065, + "cuisine": "mexican", + "ingredients": [ + "water", + "white hominy", + "crimini mushrooms", + "yellow onion", + "chicken broth", + "olive oil", + "jalapeno chilies", + "cheese", + "lime juice", + "poblano peppers", + "cilantro", + "bulgur", + "southwest seasoning", + "salsa verde", + "chips", + "salt" + ] + }, + { + "id": 25949, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "paprika", + "vegetable oil cooking spray", + "pepper", + "yellow corn meal", + "salt" + ] + }, + { + "id": 23365, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "minced onion", + "SYD Hot Rub", + "thyme", + "onions", + "celery ribs", + "water", + "red beans", + "salt", + "lard", + "pepper", + "bay leaves", + "white rice", + "ham hock", + "green bell pepper", + "garlic powder", + "butter", + "scallions", + "celery" + ] + }, + { + "id": 41391, + "cuisine": "french", + "ingredients": [ + "quail eggs", + "dijon mustard", + "celery", + "whole grain mustard", + "fresh tarragon", + "safflower oil", + "asparagus", + "white wine vinegar", + "kosher salt", + "shallots" + ] + }, + { + "id": 29044, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "sugar", + "beaten eggs", + "double-acting baking powder", + "vanilla extract", + "mincemeat", + "milk", + "salt" + ] + }, + { + "id": 43155, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "chopped onion", + "corn chips", + "Ranch Style Beans", + "shredded cheddar cheese", + "salad dressing", + "cilantro" + ] + }, + { + "id": 27467, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "water", + "clarified butter", + "salt", + "milk", + "polenta" + ] + }, + { + "id": 26169, + "cuisine": "italian", + "ingredients": [ + "uncooked ziti", + "pecorino romano cheese", + "onions", + "olive oil", + "salt", + "water", + "crushed red pepper", + "tomato paste", + "fennel bulb", + "sweet italian sausage" + ] + }, + { + "id": 24031, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "boneless skinless chicken breasts", + "mozzarella cheese", + "garlic", + "shredded basil", + "balsamic vinegar", + "olive oil" + ] + }, + { + "id": 44204, + "cuisine": "japanese", + "ingredients": [ + "ginger paste", + "mustard oil", + "green chilies", + "hot water" + ] + }, + { + "id": 30599, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "dried chile", + "apple cider", + "mcintosh apples", + "unsalted butter" + ] + }, + { + "id": 26750, + "cuisine": "indian", + "ingredients": [ + "soda", + "salt", + "carrots", + "asafoetida", + "chilli paste", + "curds", + "oats", + "buttermilk", + "cilantro leaves", + "mustard seeds", + "ravva", + "green peas", + "oil" + ] + }, + { + "id": 13313, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "low salt chicken broth", + "butter", + "yellow corn meal", + "bacon", + "pepper" + ] + }, + { + "id": 24143, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "pepper jack", + "pinto beans", + "water", + "tortilla chips", + "chicken breasts" + ] + }, + { + "id": 5564, + "cuisine": "mexican", + "ingredients": [ + "water", + "boneless skinless chicken breasts", + "Ranch Style Beans", + "kidney beans", + "diced tomatoes", + "taco seasoning mix", + "ranch dressing", + "onions", + "black beans", + "white hominy", + "pinto beans" + ] + }, + { + "id": 20559, + "cuisine": "mexican", + "ingredients": [ + "broiler-fryer chicken", + "paprika", + "long grain white rice", + "chicken stock", + "ground black pepper", + "yellow onion", + "olive oil", + "salt", + "oregano", + "tomato paste", + "flour", + "garlic cloves" + ] + }, + { + "id": 15696, + "cuisine": "mexican", + "ingredients": [ + "extra-virgin olive oil", + "red wine vinegar", + "fresh parsley", + "kosher salt", + "garlic", + "red pepper flakes", + "oregano" + ] + }, + { + "id": 45983, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "cucumber", + "pepper", + "purple onion", + "tomatoes", + "black olives", + "dried oregano", + "olive oil", + "salt" + ] + }, + { + "id": 437, + "cuisine": "mexican", + "ingredients": [ + "navy beans", + "black-eyed peas", + "fresh lime juice", + "black beans", + "salt", + "adobo sauce", + "green bell pepper", + "diced tomatoes", + "chipotle peppers", + "sweet onion", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 26177, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "green pepper", + "extra-virgin olive oil", + "cucumber", + "celtic salt", + "garlic cloves", + "white wine vinegar" + ] + }, + { + "id": 21329, + "cuisine": "french", + "ingredients": [ + "chives", + "salt", + "heavy cream", + "freshly ground pepper", + "garlic", + "russet potatoes", + "grated Gruyère cheese" + ] + }, + { + "id": 1933, + "cuisine": "cajun_creole", + "ingredients": [ + "romaine lettuce", + "unsalted butter", + "worcestershire sauce", + "hot sauce", + "flat leaf parsley", + "kosher salt", + "vegetable oil", + "garlic", + "freshly ground pepper", + "mustard", + "rosemary", + "lemon", + "white wine vinegar", + "shrimp", + "french baguette", + "egg yolks", + "cornichons", + "creole seasoning" + ] + }, + { + "id": 47008, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "soft taco size flour tortillas", + "chopped cilantro", + "Mexican cheese blend", + "frozen corn", + "chicken", + "salsa verde", + "salt", + "cumin", + "black beans", + "chili powder", + "sour cream" + ] + }, + { + "id": 3058, + "cuisine": "italian", + "ingredients": [ + "firmly packed light brown sugar", + "half & half", + "ground cinnamon", + "bourbon whiskey", + "coffee" + ] + }, + { + "id": 9677, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "peeled fresh ginger", + "peanut oil", + "serrano chile", + "brown sugar", + "leeks", + "unsalted dry roast peanuts", + "fresh lime juice", + "reduced fat firm tofu", + "less sodium mushroom flavored soy sauce", + "light coconut milk", + "garlic cloves", + "basmati rice", + "water", + "butternut squash", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 47837, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "garlic cloves", + "mustard", + "ground pork", + "dried chile", + "szechwan peppercorns", + "green beans", + "soy sauce", + "oil", + "coarse kosher salt" + ] + }, + { + "id": 3159, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "white wine vinegar", + "almonds", + "boiling water", + "olive oil", + "artichokes", + "saffron threads", + "paprika", + "dried fig" + ] + }, + { + "id": 37766, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "bean sauce", + "fermented black beans", + "chile powder", + "water", + "scallions", + "tofu", + "soy sauce", + "peanut oil", + "pork butt", + "chicken stock", + "szechwan peppercorns", + "corn starch" + ] + }, + { + "id": 47088, + "cuisine": "british", + "ingredients": [ + "mayonaise", + "stilton cheese", + "butter", + "bread slices", + "prepared horseradish", + "roast beef", + "purple onion", + "arugula" + ] + }, + { + "id": 3128, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "pork loin", + "yellow onion", + "minced garlic", + "red pepper flakes", + "white sugar", + "black pepper", + "green onions", + "Gochujang base", + "fresh ginger root", + "rice vinegar", + "canola oil" + ] + }, + { + "id": 18685, + "cuisine": "moroccan", + "ingredients": [ + "chili flakes", + "olive oil", + "ground coriander", + "seedless red grapes", + "curry powder", + "garlic", + "leg of lamb", + "black pepper", + "paprika", + "lemon juice", + "ground cumin", + "dried thyme", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 30839, + "cuisine": "cajun_creole", + "ingredients": [ + "canned low sodium chicken broth", + "cayenne", + "scallions", + "onions", + "green bell pepper", + "ground black pepper", + "salt", + "medium shrimp", + "steamed rice", + "cooking oil", + "celery", + "dried thyme", + "flour", + "bay leaf" + ] + }, + { + "id": 40124, + "cuisine": "mexican", + "ingredients": [ + "water", + "cilantro", + "sour cream", + "boneless skinless chicken breasts", + "salsa", + "corn tortillas", + "garlic powder", + "salt", + "shredded colby", + "pepper", + "chili powder", + "cream cheese", + "cumin" + ] + }, + { + "id": 40981, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "yoghurt", + "olive oil", + "fresh lemon juice", + "ground black pepper" + ] + }, + { + "id": 21645, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "bay leaves", + "habanero", + "canola oil", + "fennel seeds", + "kosher salt", + "cinnamon", + "white wine vinegar", + "clove", + "juniper berries", + "scotch bonnet chile", + "star anise", + "chiles", + "jalapeno chilies", + "red wine vinegar", + "serrano" + ] + }, + { + "id": 46670, + "cuisine": "italian", + "ingredients": [ + "cauliflower", + "parmigiano reggiano cheese", + "water", + "carnaroli rice", + "chicken stock", + "leeks", + "unsalted butter" + ] + }, + { + "id": 3258, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cooking spray", + "extra-virgin olive oil", + "thyme sprigs", + "nectarines", + "capers", + "peaches", + "chopped fresh thyme", + "salt", + "boneless skinless chicken breast halves", + "fresh basil", + "black pepper", + "shallots", + "purple onion", + "fresh parsley", + "pitted kalamata olives", + "french bread", + "red wine vinegar", + "fresh lemon juice", + "plum tomatoes" + ] + }, + { + "id": 39770, + "cuisine": "thai", + "ingredients": [ + "fish fillets", + "salt", + "green beans", + "red chili peppers", + "oil", + "fish sauce", + "red curry paste", + "coriander", + "eggs", + "spring onions", + "corn flour" + ] + }, + { + "id": 34842, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "plum tomatoes", + "onions", + "olive oil", + "spaghetti", + "garlic cloves" + ] + }, + { + "id": 9472, + "cuisine": "italian", + "ingredients": [ + "cheese", + "water", + "polenta corn meal", + "salt", + "butter" + ] + }, + { + "id": 17274, + "cuisine": "italian", + "ingredients": [ + "turkey breast cutlets", + "white wine vinegar", + "tomatoes", + "minced garlic", + "black pepper", + "salt", + "fresh rosemary", + "olive oil" + ] + }, + { + "id": 17179, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "plum wine", + "garlic cloves", + "bottled chili sauce", + "beef stock", + "crushed red pepper", + "peanuts", + "dry red wine", + "peanut oil", + "fresh ginger", + "butter", + "rack of lamb" + ] + }, + { + "id": 32776, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "ground white pepper", + "fettucine", + "heavy cream", + "coarse salt", + "chicken", + "unsalted butter", + "garlic" + ] + }, + { + "id": 16036, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "garam masala", + "green chilies", + "ground turmeric", + "asafoetida", + "ginger", + "lemon juice", + "arhar dal", + "tomatoes", + "water", + "salt", + "onions", + "spinach", + "coriander powder", + "oil", + "cumin" + ] + }, + { + "id": 20678, + "cuisine": "chinese", + "ingredients": [ + "honey", + "chicken fingers", + "fresh cilantro", + "green onions", + "toasted sesame oil", + "soy sauce", + "fresh ginger root", + "garlic cloves", + "lime", + "seasoned rice wine vinegar", + "toasted sesame seeds" + ] + }, + { + "id": 34174, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "butter", + "large eggs", + "vanilla extract", + "sugar", + "light corn syrup", + "refrigerated piecrusts", + "salt" + ] + }, + { + "id": 21069, + "cuisine": "italian", + "ingredients": [ + "fontina", + "fat free milk", + "baking potatoes", + "water", + "large eggs", + "salt", + "black pepper", + "swiss chard", + "butter", + "large egg whites", + "cooking spray", + "fresh parsley" + ] + }, + { + "id": 16221, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "fresh ginger", + "whole milk yoghurt", + "cinnamon", + "cilantro leaves", + "juice", + "ground turmeric", + "clove", + "crushed tomatoes", + "coriander seeds", + "bay leaves", + "garlic", + "cardamom pods", + "onions", + "fennel seeds", + "lime", + "garam masala", + "chili powder", + "lamb shoulder", + "cumin seed", + "basmati rice", + "kosher salt", + "mace", + "potatoes", + "star anise", + "green chilies", + "ghee" + ] + }, + { + "id": 11787, + "cuisine": "mexican", + "ingredients": [ + "cayenne", + "purple onion", + "chopped cilantro", + "lime juice", + "bacon", + "sweet corn", + "black beans", + "jalapeno chilies", + "salt", + "ground cumin", + "olive oil", + "garlic", + "red bell pepper" + ] + }, + { + "id": 2053, + "cuisine": "korean", + "ingredients": [ + "salt", + "green onions", + "gingerroot", + "garlic", + "dried red chile peppers", + "chinese cabbage" + ] + }, + { + "id": 7911, + "cuisine": "french", + "ingredients": [ + "peppermint schnapps", + "fresh raspberries", + "sugar", + "vanilla extract", + "egg yolks", + "fresh mint", + "whipping cream", + "candy" + ] + }, + { + "id": 18487, + "cuisine": "thai", + "ingredients": [ + "low sodium soy sauce", + "broccoli slaw", + "olive oil", + "peanut butter", + "fish sauce", + "papaya", + "sliced cucumber", + "cooked chicken breasts", + "mint", + "lime", + "peanuts", + "boy choy", + "red chili peppers", + "honey", + "red pepper flakes" + ] + }, + { + "id": 41839, + "cuisine": "thai", + "ingredients": [ + "nutmeg", + "fish sauce", + "ground cloves", + "chili powder", + "cayenne pepper", + "chicken pieces", + "cumin", + "kaffir lime leaves", + "red chili peppers", + "curry sauce", + "paprika", + "red bell pepper", + "onions", + "tomatoes", + "tumeric", + "lime", + "cinnamon", + "ground coriander", + "galangal", + "tomato paste", + "dark soy sauce", + "soy sauce", + "shrimp paste", + "garlic", + "coconut milk", + "fresh basil leaves" + ] + }, + { + "id": 45889, + "cuisine": "mexican", + "ingredients": [ + "pork", + "corn tortillas", + "red chile sauce", + "chopped cilantro", + "pepper jack", + "sour cream" + ] + }, + { + "id": 2842, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "sweet potatoes", + "purple onion", + "cinnamon sticks", + "olive oil", + "garlic", + "cilantro leaves", + "black pepper", + "red pepper", + "salt", + "chillies", + "dark chocolate", + "potatoes", + "white wine vinegar", + "chicken leg quarters" + ] + }, + { + "id": 13934, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "black pepper", + "sesame oil", + "salt", + "oyster sauce", + "beansprouts", + "snow peas", + "chinese rice wine", + "green onions", + "ginger", + "chinese five-spice powder", + "red bell pepper", + "noodles", + "brown sugar", + "mushrooms", + "crushed red pepper flakes", + "fry mix", + "corn starch", + "celery", + "cabbage", + "soy sauce", + "chicken breasts", + "garlic", + "chow mein noodles", + "baby corn", + "spaghetti" + ] + }, + { + "id": 43015, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "red wine vinegar", + "ground white pepper", + "vegetable oil", + "dry red wine", + "shallots", + "Italian parsley leaves", + "hanger steak", + "salt" + ] + }, + { + "id": 43579, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cucumber", + "pepper", + "salt", + "rocket leaves", + "balsamic vinegar", + "cherry tomatoes", + "alfalfa sprouts" + ] + }, + { + "id": 28116, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "heavy cream", + "carrots", + "olive oil", + "purple onion", + "ground beef", + "tomatoes", + "ground pork", + "celery", + "coarse salt", + "freshly ground pepper" + ] + }, + { + "id": 2387, + "cuisine": "italian", + "ingredients": [ + "water", + "baking powder", + "candied ginger", + "large eggs", + "salt", + "baking soda", + "vanilla", + "sugar", + "dried apricot", + "all-purpose flour" + ] + }, + { + "id": 12511, + "cuisine": "italian", + "ingredients": [ + "lime juice", + "Italian bread", + "bacon slices", + "mozzarella cheese", + "vinaigrette", + "bibb lettuce", + "plum tomatoes" + ] + }, + { + "id": 33875, + "cuisine": "italian", + "ingredients": [ + "water", + "medium shrimp", + "arborio rice", + "fennel bulb", + "unsalted butter", + "onions", + "chicken broth", + "dry white wine" + ] + }, + { + "id": 861, + "cuisine": "southern_us", + "ingredients": [ + "green tomatoes", + "oil", + "buttermilk", + "cornmeal" + ] + }, + { + "id": 39580, + "cuisine": "irish", + "ingredients": [ + "baking powder", + "all-purpose flour", + "dried currants", + "buttermilk", + "butter", + "white sugar", + "baking soda", + "salt" + ] + }, + { + "id": 31150, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "white sugar", + "water", + "butter", + "cream of tartar", + "dark rum", + "egg whites", + "cashew nuts" + ] + }, + { + "id": 13056, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red wine", + "arborio rice", + "shallots", + "garlic", + "artichok heart marin", + "asiago", + "chicken broth", + "butter", + "lamb" + ] + }, + { + "id": 37709, + "cuisine": "italian", + "ingredients": [ + "Boston lettuce", + "ground black pepper", + "salt", + "pinenuts", + "balsamic vinegar", + "sugar", + "dijon mustard", + "Bartlett Pear", + "prosciutto", + "extra-virgin olive oil" + ] + }, + { + "id": 11818, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "plum tomatoes", + "fresh basil", + "salt", + "crushed red pepper", + "orecchiette", + "chees fresh mozzarella", + "garlic cloves" + ] + }, + { + "id": 34777, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "anchovy paste", + "spaghetti", + "canned low sodium chicken broth", + "red pepper flakes", + "salt", + "butter", + "garlic", + "olive oil", + "bacon", + "escarole" + ] + }, + { + "id": 27049, + "cuisine": "french", + "ingredients": [ + "red potato", + "tuna steaks", + "tomatoes", + "dijon mustard", + "lemon juice", + "ground black pepper", + "fresh green bean", + "bibb lettuce", + "white wine vinegar" + ] + }, + { + "id": 28334, + "cuisine": "indian", + "ingredients": [ + "salt", + "curry powder", + "sour cream", + "cayenne pepper", + "mango chutney", + "chopped cilantro" + ] + }, + { + "id": 32326, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "hoisin sauce", + "dried shiitake mushrooms", + "dried shrimp", + "chinese sausage", + "bacon", + "rice flour", + "Sriracha", + "cilantro leaves", + "toasted sesame oil", + "soy sauce", + "daikon", + "scallions", + "toasted sesame seeds" + ] + }, + { + "id": 44780, + "cuisine": "southern_us", + "ingredients": [ + "chicken wings", + "honey", + "flour", + "cayenne pepper", + "ground ginger", + "orange", + "ground black pepper", + "paprika", + "dried oregano", + "water", + "garlic powder", + "onion powder", + "mustard powder", + "eggs", + "dried thyme", + "ground sage", + "salt", + "canola oil" + ] + }, + { + "id": 39824, + "cuisine": "italian", + "ingredients": [ + "eggs", + "salt", + "olive oil", + "spaghetti", + "pepper", + "ground beef", + "white bread", + "grated parmesan cheese" + ] + }, + { + "id": 22307, + "cuisine": "spanish", + "ingredients": [ + "chorizo sausage", + "oysters", + "dry sherry" + ] + }, + { + "id": 40717, + "cuisine": "moroccan", + "ingredients": [ + "fresh coriander", + "lemon", + "olive oil", + "fresh lemon juice", + "tomatoes", + "dry white wine", + "fillets", + "preserved lemon", + "coarse salt", + "brine" + ] + }, + { + "id": 47953, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "black sesame seeds", + "garlic cloves", + "low sodium soy sauce", + "sesame seeds", + "salt", + "white vinegar", + "olive oil", + "boneless skinless chicken breasts", + "toasted sesame oil", + "brown sugar", + "flour", + "low sodium chicken stock" + ] + }, + { + "id": 21114, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "organic cane sugar", + "sea salt", + "almond milk", + "kamut flour", + "agave nectar", + "vanilla bean paste", + "kiwi", + "vanilla beans", + "peaches", + "strawberries", + "corn starch", + "nutritional yeast", + "butter", + "fresh lemon juice" + ] + }, + { + "id": 10777, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "unsalted butter", + "arborio rice", + "prosciutto", + "garlic cloves", + "saffron threads", + "fresh parmesan cheese", + "shallots", + "white wine", + "ground black pepper" + ] + }, + { + "id": 13718, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "lemon grass", + "fresh mushrooms", + "fish sauce", + "clove garlic, fine chop", + "fillets", + "fresh basil", + "tom yum paste", + "lime leaves", + "fresh coriander", + "green chilies", + "fresh lime juice" + ] + }, + { + "id": 6060, + "cuisine": "spanish", + "ingredients": [ + "lemon zest", + "fresh lemon juice", + "sherry vinegar", + "extra-virgin olive oil", + "plum tomatoes", + "sliced almonds", + "harissa", + "red bell pepper", + "ground black pepper", + "salt", + "chopped garlic" + ] + }, + { + "id": 12215, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "corn", + "butter", + "salt", + "pepper", + "boneless skinless chicken breasts", + "garlic", + "wheat flour", + "parsley flakes", + "half & half", + "bacon", + "poultry seasoning", + "milk", + "baking powder", + "purple onion" + ] + }, + { + "id": 6897, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "boneless skinless chicken breasts", + "frozen corn", + "onions", + "green bell pepper", + "olive oil", + "onion powder", + "garlic cloves", + "chunky salsa", + "shredded reduced fat cheddar cheese", + "chili powder", + "cayenne pepper", + "whole grain pasta", + "black beans", + "ground black pepper", + "salt", + "sour cream", + "ground cumin" + ] + }, + { + "id": 48355, + "cuisine": "thai", + "ingredients": [ + "low sodium soy sauce", + "olive oil", + "salt", + "cucumber", + "coleslaw", + "honey", + "mandarin oranges", + "Thai fish sauce", + "serrano chile", + "black pepper", + "napa cabbage", + "garlic cloves", + "fresh lime juice", + "sliced green onions", + "fresh basil", + "light pancake syrup", + "cilantro leaves", + "beef tenderloin steaks", + "grated orange" + ] + }, + { + "id": 24626, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "sauce", + "parmesan cheese", + "roast turkey", + "bread slices", + "bacon slices" + ] + }, + { + "id": 17694, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "unsalted butter", + "powdered sugar", + "active dry yeast", + "extra-virgin olive oil", + "Gold Medal Flour", + "granulated sugar", + "warm water", + "honey", + "canola oil" + ] + }, + { + "id": 546, + "cuisine": "mexican", + "ingredients": [ + "green pepper", + "water", + "Velveeta", + "oil", + "salsa" + ] + }, + { + "id": 11798, + "cuisine": "french", + "ingredients": [ + "Boston lettuce", + "fresh thyme", + "shallots", + "anchovy paste", + "green beans", + "fresh basil", + "dijon mustard", + "potatoes", + "red wine vinegar", + "salt", + "capers", + "finely chopped fresh parsley", + "tuna steaks", + "large garlic cloves", + "brine-cured black olives", + "cherry tomatoes", + "large eggs", + "vegetable oil", + "extra-virgin olive oil" + ] + }, + { + "id": 44981, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "shallots", + "boneless skinless chicken breast halves", + "mozzarella cheese", + "large eggs", + "all-purpose flour", + "fresh basil", + "panko", + "crushed red pepper", + "dried oregano", + "crushed tomatoes", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 42564, + "cuisine": "brazilian", + "ingredients": [ + "granulated sugar", + "pecans", + "flaked coconut", + "parmesan cheese", + "sweetened condensed milk", + "egg yolks" + ] + }, + { + "id": 21228, + "cuisine": "brazilian", + "ingredients": [ + "agave nectar", + "berries", + "yoghurt" + ] + }, + { + "id": 4552, + "cuisine": "thai", + "ingredients": [ + "light soy sauce", + "garlic", + "dark soy sauce", + "chicken breasts", + "oyster sauce", + "eggs", + "basil leaves", + "oil", + "sugar", + "thai chile" + ] + }, + { + "id": 3278, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "pizza sauce", + "fresh parmesan cheese", + "pizza doughs", + "part-skim mozzarella cheese", + "pepperoni turkei", + "cremini mushrooms", + "cooking spray" + ] + }, + { + "id": 45741, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "mango", + "fish sauce", + "thai chile", + "sugar", + "garlic", + "kosher salt", + "cayenne pepper" + ] + }, + { + "id": 17296, + "cuisine": "mexican", + "ingredients": [ + "virgin coconut oil", + "lime", + "ear of corn", + "fresh cilantro", + "sea salt", + "ground black pepper", + "smoked paprika" + ] + }, + { + "id": 48166, + "cuisine": "chinese", + "ingredients": [ + "store bought low sodium chicken broth", + "large eggs", + "rice", + "chinese buns", + "Dungeness crabs", + "ginger", + "garlic cloves", + "sweet chili sauce", + "shallots", + "peanut oil", + "sliced green onions", + "tomato paste", + "parsley leaves", + "thai chile", + "corn starch" + ] + }, + { + "id": 43182, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "lean ground beef", + "garlic cloves", + "tomato sauce", + "jalapeno chilies", + "cilantro", + "dried oregano", + "shredded cheddar cheese", + "chili powder", + "green chilies", + "cumin", + "diced onions", + "tortillas", + "vegetable oil", + "sour cream" + ] + }, + { + "id": 16064, + "cuisine": "filipino", + "ingredients": [ + "water", + "salt", + "ox tongue", + "butter", + "onions", + "ground black pepper", + "white mushrooms", + "condensed soup", + "garlic" + ] + }, + { + "id": 40017, + "cuisine": "indian", + "ingredients": [ + "cane sugar", + "powdered milk", + "unsweetened cocoa powder", + "water", + "cashew nuts", + "vanilla extract" + ] + }, + { + "id": 2877, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "milk", + "garlic", + "onions", + "nutmeg", + "bread crumbs", + "parmesan cheese", + "ground meat", + "sugar", + "olive oil", + "salt", + "tomatoes", + "pepper", + "parsley", + "herbes de provence" + ] + }, + { + "id": 25322, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "butter", + "lemon extract", + "almond extract", + "sour cream", + "flour", + "vanilla extract", + "sugar", + "soda", + "salt" + ] + }, + { + "id": 44212, + "cuisine": "brazilian", + "ingredients": [ + "large eggs", + "vegetable oil", + "powdered sugar", + "whole milk", + "fresh lime juice", + "grated parmesan cheese", + "long-grain rice", + "sugar", + "baking powder" + ] + }, + { + "id": 49270, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "Biryani Masala", + "star anise", + "green chilies", + "onions", + "tomatoes", + "water", + "mint leaves", + "rice", + "cinnamon sticks", + "ground turmeric", + "red chili powder", + "mace", + "yoghurt", + "green cardamom", + "bay leaf", + "cumin", + "clove", + "boiled eggs", + "potatoes", + "salt", + "oil", + "shahi jeera" + ] + }, + { + "id": 32897, + "cuisine": "italian", + "ingredients": [ + "fresh parsley", + "salt", + "olives", + "pepper", + "spaghetti", + "garlic cloves" + ] + }, + { + "id": 1870, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "green onions", + "peanut butter", + "pork shoulder roast", + "low sodium teriyaki sauce", + "long grain white rice", + "water", + "red pepper flakes", + "red bell pepper", + "peanuts", + "rice vinegar" + ] + }, + { + "id": 23483, + "cuisine": "italian", + "ingredients": [ + "warm water", + "bread flour", + "olive oil", + "sugar", + "salt", + "active dry yeast", + "italian seasoning" + ] + }, + { + "id": 413, + "cuisine": "russian", + "ingredients": [ + "sugar", + "smoked kielbasa", + "salt", + "cabbage", + "unsalted butter", + "onions", + "red potato", + "beer" + ] + }, + { + "id": 34425, + "cuisine": "french", + "ingredients": [ + "olive oil", + "diced tomatoes", + "fresh parsley", + "large eggs", + "garlic cloves", + "dried thyme", + "ground red pepper", + "red bell pepper", + "chopped green bell pepper", + "salt" + ] + }, + { + "id": 21917, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "chives", + "lemon juice", + "rosemary sprigs", + "zucchini", + "orzo", + "chicken broth", + "ground black pepper", + "deveined shrimp", + "ouzo", + "lemon zest", + "salt" + ] + }, + { + "id": 41738, + "cuisine": "thai", + "ingredients": [ + "white onion", + "ground black pepper", + "extra-virgin olive oil", + "white wine", + "fresh ginger", + "sea salt", + "thai green curry paste", + "lime juice", + "vegetable oil", + "hamachi", + "unsweetened coconut milk", + "lemongrass", + "heavy cream", + "garlic cloves" + ] + }, + { + "id": 33420, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "salt", + "sour cream", + "jalapeno chilies", + "cream cheese", + "ground black pepper", + "hot sauce", + "smoked gouda", + "purple onion", + "mexican chorizo" + ] + }, + { + "id": 18770, + "cuisine": "italian", + "ingredients": [ + "water", + "beets", + "olive oil", + "chicken", + "honey", + "freshly ground pepper", + "white wine", + "salt" + ] + }, + { + "id": 10493, + "cuisine": "indian", + "ingredients": [ + "tomato juice", + "crushed ice", + "celery stick", + "balsamic vinegar", + "fresh lime juice", + "vodka", + "fine sea salt", + "Madras curry powder", + "ground black pepper", + "fresh lemon juice" + ] + }, + { + "id": 10381, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "yoghurt", + "garlic", + "cumin", + "black pepper", + "paprika", + "chicken fingers", + "tumeric", + "onion powder", + "salt", + "garam masala", + "ginger", + "lemon juice" + ] + }, + { + "id": 40116, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "potatoes", + "ground black pepper", + "creole seasoning", + "garlic powder", + "paprika", + "andouille sausage", + "chopped green bell pepper", + "chopped onion" + ] + }, + { + "id": 37490, + "cuisine": "chinese", + "ingredients": [ + "baby bok choy", + "fat free less sodium beef broth", + "chinese five-spice powder", + "shiitake mushroom caps", + "peeled fresh ginger", + "crushed red pepper", + "Chinese egg noodles", + "sliced green onions", + "kosher salt", + "star anise", + "garlic cloves", + "sirloin tip roast", + "low sodium soy sauce", + "dry sherry", + "peanut oil", + "carrots" + ] + }, + { + "id": 14852, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "fresh ginger", + "garlic", + "chinese black vinegar", + "red chili peppers", + "hoisin sauce", + "peanut oil", + "white sugar", + "soy sauce", + "green onions", + "corn starch", + "dry roasted peanuts", + "chicken breasts", + "toasted sesame oil" + ] + }, + { + "id": 46056, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "ground beef", + "beans", + "salsa", + "tomatoes", + "green onions", + "olives", + "shredded cheddar cheese", + "taco seasoning" + ] + }, + { + "id": 11219, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "chopped cilantro fresh", + "pepper", + "salsa", + "avocado", + "salt", + "green onions", + "tortilla chips" + ] + }, + { + "id": 33038, + "cuisine": "french", + "ingredients": [ + "boneless pork shoulder", + "dried thyme", + "large garlic cloves", + "carrots", + "fresh parsley", + "tomato paste", + "olive oil", + "diced tomatoes", + "low salt chicken broth", + "onions", + "bread crumb fresh", + "dry white wine", + "kielbasa", + "celery", + "great northern beans", + "grated parmesan cheese", + "bacon slices", + "red bell pepper" + ] + }, + { + "id": 40506, + "cuisine": "french", + "ingredients": [ + "water", + "all-purpose flour", + "Burgundy wine", + "chicken bouillon", + "bacon", + "carrots", + "italian seasoning", + "parsley", + "fresh mushrooms", + "onions", + "pepper", + "salt", + "chicken pieces" + ] + }, + { + "id": 41607, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "crackers", + "cider vinegar", + "ranch dressing", + "pork", + "black-eyed peas", + "pepper", + "red bell pepper" + ] + }, + { + "id": 32975, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "large eggs", + "grated nutmeg", + "corn", + "salt", + "whole milk" + ] + }, + { + "id": 43670, + "cuisine": "italian", + "ingredients": [ + "butter", + "long-grain rice", + "salt", + "water", + "chopped fresh sage", + "white wine vinegar", + "garlic cloves" + ] + }, + { + "id": 2173, + "cuisine": "italian", + "ingredients": [ + "heavy cream", + "prosciutto", + "salt", + "peas", + "grated parmesan cheese", + "bow-tie pasta" + ] + }, + { + "id": 35241, + "cuisine": "mexican", + "ingredients": [ + "flour", + "sour cream", + "jack cheese", + "butter", + "chicken broth", + "chicken breasts", + "diced green chilies", + "penne pasta" + ] + }, + { + "id": 28345, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "kosher salt", + "basil dried leaves", + "dried leaves oregano", + "baby spinach leaves", + "cheese tortellini", + "chopped onion", + "sugar", + "diced tomatoes", + "garlic", + "chicken stock", + "Jimmy Dean All Natural Regular Pork Sausage", + "cracked black pepper", + "dried red chile peppers" + ] + }, + { + "id": 48464, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "lemon", + "chopped cilantro", + "kosher salt", + "green pepper", + "sweet onion", + "dark brown sugar", + "chiles", + "ginger" + ] + }, + { + "id": 37246, + "cuisine": "british", + "ingredients": [ + "cream of tartar", + "unsalted butter", + "all-purpose flour", + "sugar", + "poppy seeds", + "grated orange peel", + "large eggs", + "orange juice", + "baking soda", + "salt" + ] + }, + { + "id": 9762, + "cuisine": "japanese", + "ingredients": [ + "tomatoes", + "sugar", + "butter", + "onions", + "fenugreek leaves", + "cream", + "gingerroot", + "ground turmeric", + "garlic flakes", + "cottage cheese", + "salt", + "cashew nuts", + "red chili powder", + "garam masala", + "ghee" + ] + }, + { + "id": 9879, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "olive oil", + "crushed red pepper", + "fresh basil", + "stewed tomatoes", + "onions", + "fennel seeds", + "bay scallops", + "salt", + "minced garlic", + "linguine", + "large shrimp" + ] + }, + { + "id": 23283, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dried thyme", + "shredded mozzarella cheese", + "pasta sauce", + "grated parmesan cheese", + "dried oregano", + "sausage casings", + "garlic powder", + "oven-ready lasagna noodles", + "dried basil", + "ricotta cheese" + ] + }, + { + "id": 32754, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "green onions", + "plain whole-milk yogurt", + "peeled fresh ginger", + "fresh lime juice", + "sugar", + "cilantro", + "serrano chile" + ] + }, + { + "id": 1363, + "cuisine": "british", + "ingredients": [ + "pepper", + "salt", + "split peas", + "butter" + ] + }, + { + "id": 5438, + "cuisine": "british", + "ingredients": [ + "milk", + "margarine", + "luke warm water", + "large eggs", + "dry yeast", + "sugar", + "cake flour" + ] + }, + { + "id": 29410, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "lemon", + "onions", + "blue crabs", + "green onions", + "salt", + "water", + "garlic", + "panko breadcrumbs", + "mayonaise", + "butter", + "red bell pepper" + ] + }, + { + "id": 39587, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "vegetable oil spray", + "smoked paprika" + ] + }, + { + "id": 33177, + "cuisine": "mexican", + "ingredients": [ + "salt", + "minced onion", + "chopped cilantro fresh", + "fresh lime juice", + "jalapeno chilies", + "plum tomatoes" + ] + }, + { + "id": 48270, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "vegetable oil", + "chopped cooked meat", + "salt", + "fresh ginger", + "slaw mix", + "egg roll wrappers", + "garlic cloves" + ] + }, + { + "id": 46058, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "chili powder", + "dried oregano", + "chicken stock", + "garlic powder", + "vegetable oil", + "brown sugar", + "ground black pepper", + "all-purpose flour", + "crushed tomatoes", + "onion powder", + "cumin" + ] + }, + { + "id": 43163, + "cuisine": "french", + "ingredients": [ + "water", + "crème fraîche", + "ground cinnamon", + "golden delicious apples", + "large eggs", + "all-purpose flour", + "sugar", + "butter" + ] + }, + { + "id": 16194, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "fresh parmesan cheese", + "cooking spray", + "salt", + "yellow corn meal", + "fat free milk", + "jalapeno chilies", + "purple onion", + "whole wheat flour", + "large eggs", + "chili powder", + "olive oil", + "frozen whole kernel corn", + "baking powder" + ] + }, + { + "id": 11957, + "cuisine": "italian", + "ingredients": [ + "sweet vermouth", + "ice cubes", + "dry gin", + "twists", + "campari" + ] + }, + { + "id": 13766, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "salt", + "egg whites", + "flour", + "superfine sugar", + "unsweetened cocoa powder" + ] + }, + { + "id": 34124, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "water", + "grated parmesan cheese", + "dried oregano", + "mayonaise", + "ground black pepper", + "lemon juice", + "dried basil", + "red wine vinegar" + ] + }, + { + "id": 18371, + "cuisine": "italian", + "ingredients": [ + "sausage links", + "purple onion", + "red bell pepper", + "red potato", + "yellow bell pepper", + "garlic cloves", + "black pepper", + "salt", + "fresh parsley", + "cooking spray", + "fresh oregano" + ] + }, + { + "id": 26663, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "salt", + "catfish fillets", + "butter", + "lemon juice", + "dijon mustard", + "oil", + "mayonaise", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 39912, + "cuisine": "brazilian", + "ingredients": [ + "raw honey", + "vanilla extract", + "butter", + "shredded coconut", + "coconut milk" + ] + }, + { + "id": 32424, + "cuisine": "irish", + "ingredients": [ + "caraway seeds", + "butter", + "salt", + "large eggs", + "currant", + "baking soda", + "buttermilk", + "all-purpose flour", + "baking powder", + "granulated white sugar" + ] + }, + { + "id": 34884, + "cuisine": "korean", + "ingredients": [ + "light brown sugar", + "bell pepper", + "garlic cloves", + "extra-lean ground beef", + "sesame oil", + "low sodium soy sauce", + "spring onions", + "Sriracha", + "ginger" + ] + }, + { + "id": 39802, + "cuisine": "moroccan", + "ingredients": [ + "tomato purée", + "cooking spray", + "cinnamon", + "onions", + "garlic powder", + "mushrooms", + "canned tomatoes", + "cumin", + "dried apricot", + "vegetable stock", + "chickpeas", + "cherry tomatoes", + "sweet potatoes", + "hot chili powder", + "coriander" + ] + }, + { + "id": 22186, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "baking powder", + "salt", + "sweet sherry", + "strawberry jam", + "vanilla", + "sugar", + "large eggs", + "heavy cream", + "corn starch", + "large egg yolks", + "whole milk", + "cake flour" + ] + }, + { + "id": 37635, + "cuisine": "chinese", + "ingredients": [ + "chinese celery", + "sea salt", + "dried chile", + "chicken stock", + "flank steak", + "scallions", + "Shaoxing wine", + "chili bean paste", + "canola oil", + "dark soy sauce", + "szechwan peppercorns", + "corn starch" + ] + }, + { + "id": 36944, + "cuisine": "vietnamese", + "ingredients": [ + "honey", + "sesame oil", + "Equal Sweetener", + "sesame seeds", + "ground pork", + "canola oil", + "eggs", + "onion soup mix", + "gyoza wrappers", + "pepper", + "green onions", + "sauce" + ] + }, + { + "id": 4411, + "cuisine": "irish", + "ingredients": [ + "chicken stock", + "leeks", + "salt", + "pepper", + "butter", + "white onion", + "russet potatoes", + "flour", + "2% reduced-fat milk" + ] + }, + { + "id": 14758, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "basil leaves", + "red bell pepper", + "eggplant", + "black olives", + "tomatoes", + "fresh thyme", + "salt", + "olive oil", + "garlic", + "rigatoni" + ] + }, + { + "id": 27016, + "cuisine": "italian", + "ingredients": [ + "turkey broth", + "cannellini beans", + "carrots", + "olive oil", + "turkey", + "fresh parsley", + "pepper", + "pumpkin", + "garlic cloves", + "dried oregano", + "celery ribs", + "grated parmesan cheese", + "salt", + "onions" + ] + }, + { + "id": 46552, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "pastry dough", + "strawberry jam", + "sauce" + ] + }, + { + "id": 43497, + "cuisine": "filipino", + "ingredients": [ + "salt and ground black pepper", + "elbow macaroni", + "chicken broth", + "boneless skinless chicken breasts", + "onions", + "celery ribs", + "evaporated milk", + "carrots", + "water", + "butter", + "cabbage" + ] + }, + { + "id": 3310, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "kasu", + "gingerroot", + "vegetable oil", + "rice vinegar", + "white miso", + "chilean sea bass fillets", + "mirin", + "tamari soy sauce" + ] + }, + { + "id": 1822, + "cuisine": "southern_us", + "ingredients": [ + "cinnamon", + "brown sugar", + "lemon", + "butter", + "granny smith apples", + "white sugar" + ] + }, + { + "id": 42303, + "cuisine": "chinese", + "ingredients": [ + "ground chicken", + "cilantro", + "corn starch", + "sambal ulek", + "peanuts", + "rice vinegar", + "corn tortillas", + "honey", + "garlic", + "red bell pepper", + "soy sauce", + "sesame oil", + "scallions", + "celery" + ] + }, + { + "id": 45739, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "bacon", + "chopped parsley", + "grated parmesan cheese", + "salt", + "pepper", + "garlic", + "vegetable oil", + "round steaks" + ] + }, + { + "id": 13309, + "cuisine": "italian", + "ingredients": [ + "pasta", + "ground black pepper", + "garlic", + "parmesan cheese", + "butter", + "roast red peppers, drain", + "fresh basil", + "parsley", + "salt", + "vegetables", + "heavy cream", + "onions" + ] + }, + { + "id": 17740, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "kosher salt", + "shallots", + "purple onion", + "chicken", + "fish sauce", + "low sodium chicken broth", + "cilantro sprigs", + "curry paste", + "cooked rice", + "ground black pepper", + "vegetable oil", + "fresh lime juice", + "light brown sugar", + "red chile powder", + "yukon gold potatoes", + "wheat beer" + ] + }, + { + "id": 435, + "cuisine": "japanese", + "ingredients": [ + "kale", + "scallions", + "tenderloin steaks", + "vegetable oil", + "toasted sesame oil", + "sugar", + "tamari soy sauce", + "toasted sesame seeds", + "mirin", + "red miso" + ] + }, + { + "id": 16567, + "cuisine": "vietnamese", + "ingredients": [ + "spring roll wrappers", + "beans", + "shredded cabbage", + "fish sauce", + "ground pepper", + "yellow onion", + "lean ground turkey", + "garlic powder", + "ground pork", + "eggs", + "sugar", + "shredded carrots", + "corn starch" + ] + }, + { + "id": 48931, + "cuisine": "cajun_creole", + "ingredients": [ + "diced tomatoes", + "chopped onion", + "fresh parsley", + "olive oil", + "beef broth", + "JOHNSONVILLE Hot & Spicy Sausage Slices", + "minced garlic", + "chopped celery", + "long-grain rice", + "cajun seasoning", + "green pepper", + "diced tomatoes and green chilies" + ] + }, + { + "id": 13723, + "cuisine": "french", + "ingredients": [ + "ground cloves", + "egg yolks", + "maple syrup", + "toasted pecans", + "ground nutmeg", + "cinnamon", + "sugar", + "pumpkin purée", + "whipping cream", + "ground ginger", + "vanilla beans", + "dark rum", + "white sugar" + ] + }, + { + "id": 26292, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "grated parmesan cheese", + "extra-virgin olive oil", + "vodka", + "asiago", + "ground white pepper", + "kosher salt", + "heavy cream", + "penne rigate", + "fresh basil", + "butter", + "roasted garlic" + ] + }, + { + "id": 2531, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "vanilla extract", + "agave nectar", + "unsalted butter", + "cream cheese", + "croissant dough", + "cinnamon" + ] + }, + { + "id": 4857, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "olive oil", + "salt", + "minced garlic", + "ground black pepper", + "asparagus spears", + "penne", + "fresh parmesan cheese", + "carrots", + "sweet onion", + "whipping cream" + ] + }, + { + "id": 40044, + "cuisine": "russian", + "ingredients": [ + "beef shank", + "canned beef broth", + "savoy cabbage", + "russet potatoes", + "carrots", + "fresh dill", + "red wine vinegar", + "onions", + "nonfat yogurt", + "beets" + ] + }, + { + "id": 27713, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "fresh lemon juice", + "white onion", + "salt", + "plum tomatoes", + "cooking spray", + "chopped cilantro", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 28833, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "boneless skinless chicken breasts", + "onions", + "whole wheat pastry flour", + "baking soda", + "carrots", + "garlic powder", + "salt", + "marjoram", + "milk", + "low sodium chicken broth", + "celery" + ] + }, + { + "id": 7919, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "salt", + "baking powder", + "milk", + "yellow corn meal", + "butter" + ] + }, + { + "id": 25123, + "cuisine": "indian", + "ingredients": [ + "salt", + "ghee", + "vegetable oil", + "flat leaf parsley", + "whole wheat flour", + "cumin seed", + "water", + "all-purpose flour" + ] + }, + { + "id": 39461, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "water chestnuts", + "wonton wrappers", + "cabbage", + "water", + "sesame oil", + "salt", + "caster sugar", + "spring onions", + "chili oil", + "pork", + "fresh ginger root", + "vegetable oil", + "rice vinegar" + ] + }, + { + "id": 28132, + "cuisine": "greek", + "ingredients": [ + "unsalted butter", + "confectioners sugar", + "all-purpose flour", + "vanilla extract", + "clove", + "chopped pecans" + ] + }, + { + "id": 8646, + "cuisine": "southern_us", + "ingredients": [ + "pork shoulder roast", + "sugar", + "hot red pepper flakes", + "cider vinegar" + ] + }, + { + "id": 39628, + "cuisine": "mexican", + "ingredients": [ + "light sour cream", + "hominy", + "diced tomatoes", + "canola oil", + "minced garlic", + "ground red pepper", + "chopped onion", + "fat free less sodium chicken broth", + "chopped green bell pepper", + "salt", + "ground cumin", + "tomato paste", + "ground black pepper", + "chili powder", + "center cut pork chops" + ] + }, + { + "id": 42398, + "cuisine": "vietnamese", + "ingredients": [ + "pork", + "vegetable oil", + "thai chile", + "fresh lime juice", + "ground turmeric", + "shucked oysters", + "large eggs", + "mint sprigs", + "scallions", + "mung bean sprouts", + "cold water", + "water", + "bacon", + "fine sea salt", + "chopped cilantro", + "sugar", + "lettuce leaves", + "grated carrot", + "rice flour", + "asian fish sauce" + ] + }, + { + "id": 21857, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "garlic cloves", + "sweet onion", + "cilantro leaves", + "lime", + "tortilla chips", + "tomatoes", + "salt" + ] + }, + { + "id": 13222, + "cuisine": "british", + "ingredients": [ + "cold water", + "potatoes", + "onions", + "beef shoulder", + "salt", + "suet", + "lard", + "black pepper", + "flour" + ] + }, + { + "id": 8347, + "cuisine": "british", + "ingredients": [ + "cold water", + "granulated sugar", + "all-purpose flour", + "eggs", + "currant", + "lard", + "nutmeg", + "butter", + "lemon juice", + "brown sugar", + "salt", + "allspice" + ] + }, + { + "id": 32311, + "cuisine": "french", + "ingredients": [ + "sugar", + "frozen pastry puff sheets", + "unsalted butter", + "gala apples" + ] + }, + { + "id": 3316, + "cuisine": "mexican", + "ingredients": [ + "corn", + "garlic", + "flour", + "fat", + "zucchini", + "salt", + "pepper", + "lime wedges", + "chopped cilantro fresh" + ] + }, + { + "id": 36894, + "cuisine": "mexican", + "ingredients": [ + "fresh orange juice", + "pepper", + "salt", + "tomatoes", + "purple onion", + "cilantro", + "fresh lime juice" + ] + }, + { + "id": 35339, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "eggs", + "spaghetti", + "pancetta", + "parmagiano reggiano", + "olive oil" + ] + }, + { + "id": 3972, + "cuisine": "italian", + "ingredients": [ + "vermicelli", + "medium shrimp", + "crushed tomatoes", + "garlic", + "onions", + "water", + "red pepper flakes", + "fresh parsley", + "cooking oil", + "salt" + ] + }, + { + "id": 46198, + "cuisine": "indian", + "ingredients": [ + "chopped tomatoes", + "cumin seed", + "vegetable oil", + "onions", + "potatoes", + "mustard seeds", + "chili", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 3789, + "cuisine": "italian", + "ingredients": [ + "cheese", + "part-skim mozzarella cheese", + "nonstick spray", + "fresh basil", + "garlic", + "cooked meatballs" + ] + }, + { + "id": 16452, + "cuisine": "mexican", + "ingredients": [ + "salt", + "Mexican oregano", + "garlic", + "water", + "dried red chile peppers" + ] + }, + { + "id": 39266, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "salsa", + "chili powder", + "monterey jack", + "flour tortillas", + "sour cream", + "black beans", + "onion powder", + "ground cumin" + ] + }, + { + "id": 37167, + "cuisine": "thai", + "ingredients": [ + "palm sugar", + "peeled fresh ginger", + "creamy peanut butter", + "arbol chile", + "coriander seeds", + "cooking spray", + "light coconut milk", + "Thai fish sauce", + "low sodium soy sauce", + "granulated sugar", + "shallots", + "cumin seed", + "fresh lime juice", + "lemongrass", + "pork tenderloin", + "sea salt", + "garlic cloves", + "ground turmeric" + ] + }, + { + "id": 24246, + "cuisine": "italian", + "ingredients": [ + "genoa salami", + "marinade", + "olive oil", + "portabello mushroom", + "salad", + "vegetables", + "linguine", + "fresh basil", + "asiago" + ] + }, + { + "id": 17394, + "cuisine": "southern_us", + "ingredients": [ + "seasoning", + "large eggs", + "peanut oil", + "water", + "salt", + "dill pickles", + "black pepper", + "parsley", + "garlic cloves", + "evaporated milk", + "all-purpose flour", + "chicken" + ] + }, + { + "id": 45170, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "fresh lime juice", + "purple onion", + "salt", + "habanero chile", + "dried oregano" + ] + }, + { + "id": 7677, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "chopped fresh sage", + "butter", + "vegetable-filled ravioli", + "shallots", + "chopped pecans", + "parmesan cheese", + "whipping cream" + ] + }, + { + "id": 37590, + "cuisine": "mexican", + "ingredients": [ + "whole milk", + "black pepper", + "salt", + "cheese", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 3409, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "jumbo shrimp", + "green beans", + "kaffir lime leaves", + "green curry paste", + "fresh basil leaves", + "serrano chilies", + "salt", + "light brown sugar", + "jasmine rice", + "Thai fish sauce" + ] + }, + { + "id": 27363, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "vegetable shortening", + "seasoning salt", + "buttermilk", + "hot pepper sauce", + "worcestershire sauce", + "flour", + "chicken" + ] + }, + { + "id": 19977, + "cuisine": "mexican", + "ingredients": [ + "water", + "cilantro sprigs", + "chopped pecans", + "chipotle chile", + "seeds", + "ground allspice", + "canela", + "clove", + "olive oil", + "rack of lamb", + "adobo sauce", + "white onion", + "anise", + "garlic cloves" + ] + }, + { + "id": 10428, + "cuisine": "jamaican", + "ingredients": [ + "pig", + "fresh thyme leaves", + "okra", + "crab", + "vegetable oil", + "onions", + "spinach", + "green onions", + "dasheen", + "pepper", + "garlic" + ] + }, + { + "id": 17667, + "cuisine": "thai", + "ingredients": [ + "puff pastry sheets", + "peanuts", + "creamy peanut butter", + "chopped cilantro fresh", + "olive oil", + "green onions", + "fresh lime juice", + "pepper", + "boneless chicken breast", + "beansprouts", + "sweet chili sauce", + "reduced sodium soy sauce", + "garlic cloves" + ] + }, + { + "id": 2361, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "low salt chicken broth", + "parmesan cheese", + "green onions", + "onions", + "fresh basil", + "asparagus", + "artichokes", + "arborio rice", + "prosciutto", + "lemon", + "frozen peas" + ] + }, + { + "id": 32021, + "cuisine": "italian", + "ingredients": [ + "fresh parsley", + "chicken breasts" + ] + }, + { + "id": 38065, + "cuisine": "spanish", + "ingredients": [ + "milk", + "leeks", + "hot pepper sauce", + "uncook medium shrimp, peel and devein", + "olive oil", + "garlic", + "eggs", + "potatoes" + ] + }, + { + "id": 35608, + "cuisine": "southern_us", + "ingredients": [ + "Madeira", + "vegetable broth", + "chopped fresh thyme", + "biscuits", + "butter", + "fresh shiitake mushrooms", + "all-purpose flour" + ] + }, + { + "id": 1340, + "cuisine": "spanish", + "ingredients": [ + "evaporated milk", + "sugar", + "gingersnap cookies", + "melted butter", + "calabaza", + "eggs", + "condensed milk" + ] + }, + { + "id": 49307, + "cuisine": "mexican", + "ingredients": [ + "habanero chile", + "pink grapefruit juice", + "kosher salt", + "tequila" + ] + }, + { + "id": 4352, + "cuisine": "thai", + "ingredients": [ + "leaf lettuce", + "asian fish sauce", + "sugar", + "carrots", + "serrano chilies", + "garlic cloves", + "seedless cucumber", + "fresh lime juice" + ] + }, + { + "id": 41773, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "sea salt", + "barbecue sauce", + "green cabbage" + ] + }, + { + "id": 5852, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "extra-virgin olive oil", + "fresh leav spinach", + "chicken breasts", + "seasoning", + "tortillas", + "ground cumin", + "kosher salt", + "prepar salsa" + ] + }, + { + "id": 27893, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "red bell pepper, sliced", + "onions", + "tomatoes", + "ragu cheesi doubl cheddar sauc", + "chip plain tortilla", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 28644, + "cuisine": "southern_us", + "ingredients": [ + "chopped fresh chives", + "hot sauce", + "parsley sprigs", + "dry mustard", + "mayonaise", + "fresh tarragon", + "lemon juice", + "large eggs", + "salt" + ] + }, + { + "id": 22128, + "cuisine": "mexican", + "ingredients": [ + "shrimp", + "chipotle salsa", + "lime wedges" + ] + }, + { + "id": 29187, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "cayenne pepper", + "peeled fresh ginger", + "unsalted butter", + "ground cumin", + "salted mixed nuts" + ] + }, + { + "id": 9655, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "large eggs", + "salt", + "chicharron", + "refried beans", + "lime wedges", + "yellow onion", + "avocado", + "pepper", + "jalapeno chilies", + "hot sauce", + "mayonaise", + "unsalted butter", + "cilantro", + "rolls" + ] + }, + { + "id": 31418, + "cuisine": "russian", + "ingredients": [ + "butter", + "fresh lemon juice", + "chopped onion", + "cabbage", + "shredded carrots", + "beets", + "beef broth", + "sour cream" + ] + }, + { + "id": 6310, + "cuisine": "italian", + "ingredients": [ + "dark chocolate", + "coffee liqueur", + "sugar", + "cream cheese", + "ladyfingers", + "whipping cream", + "coffee granules", + "hot water" + ] + }, + { + "id": 18570, + "cuisine": "filipino", + "ingredients": [ + "melted butter", + "grated parmesan cheese", + "tilapia fillets", + "pepper", + "almond meal", + "rub", + "garlic powder" + ] + }, + { + "id": 40649, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "ground black pepper", + "ground beef", + "eggs", + "almond flour", + "marinara sauce", + "dried oregano", + "mozzarella cheese", + "grated parmesan cheese", + "fresh parsley", + "warm water", + "garlic powder", + "onion flakes" + ] + }, + { + "id": 14401, + "cuisine": "greek", + "ingredients": [ + "veal", + "cayenne pepper", + "all-purpose flour", + "flat leaf parsley", + "olive oil", + "beef broth", + "red wine vinegar", + "garlic cloves" + ] + }, + { + "id": 12722, + "cuisine": "mexican", + "ingredients": [ + "fresh orange juice", + "granulated sugar", + "pumpkin seeds", + "paprika", + "firmly packed light brown sugar", + "salt" + ] + }, + { + "id": 31701, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "chili powder", + "chicken", + "garlic paste", + "mint leaves", + "oil", + "tomatoes", + "coriander powder", + "salt", + "coconut", + "yoghurt", + "onions" + ] + }, + { + "id": 15534, + "cuisine": "jamaican", + "ingredients": [ + "black peppercorns", + "white wine vinegar", + "canola oil", + "pepper", + "cinnamon sticks", + "molasses", + "salt", + "allspice", + "clove", + "green onions", + "fresh lime juice" + ] + }, + { + "id": 2761, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "active dry yeast", + "all-purpose flour", + "sugar", + "vanilla extract", + "shortening", + "pineapple", + "corn starch", + "water", + "salt" + ] + }, + { + "id": 38135, + "cuisine": "french", + "ingredients": [ + "semisweet chocolate", + "honey", + "crepes", + "half & half", + "low-fat coffee ice cream" + ] + }, + { + "id": 25453, + "cuisine": "japanese", + "ingredients": [ + "plain flour", + "amchur", + "coriander powder", + "salt", + "coriander", + "sugar", + "baking soda", + "yoghurt", + "oil", + "red chili powder", + "whole wheat flour", + "potatoes", + "green chilies", + "dough", + "mozzarella cheese", + "garam masala", + "paneer", + "onions" + ] + }, + { + "id": 21206, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "onions", + "shredded mozzarella cheese", + "dried oregano", + "butter", + "plum tomatoes", + "dried thyme", + "phyllo pastry" + ] + }, + { + "id": 45585, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "kosher salt", + "ricotta cheese", + "ciabatta", + "Italian bread", + "green olives", + "olive oil", + "raisins", + "toasted pine nuts", + "fresh basil", + "minced garlic", + "red wine vinegar", + "fresh oregano", + "flat leaf parsley", + "sugar", + "eggplant", + "chopped celery", + "red bell pepper" + ] + }, + { + "id": 34054, + "cuisine": "mexican", + "ingredients": [ + "ice", + "tequila", + "lime juice", + "liqueur" + ] + }, + { + "id": 22614, + "cuisine": "french", + "ingredients": [ + "pernod", + "orange liqueur", + "clove", + "dry white wine", + "bay leaves", + "sugar", + "navel oranges" + ] + }, + { + "id": 44831, + "cuisine": "brazilian", + "ingredients": [ + "skate wing", + "garlic", + "onions", + "lime", + "oil", + "pepper", + "salt", + "tomatoes", + "cilantro", + "coconut milk" + ] + }, + { + "id": 20854, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "peaches in heavy syrup" + ] + }, + { + "id": 18765, + "cuisine": "french", + "ingredients": [ + "green cabbage", + "water", + "chickpeas", + "fresh parsley", + "red potato", + "sliced carrots", + "chopped onion", + "caraway seeds", + "olive oil", + "dried dill", + "pepper", + "vegetable broth", + "celery" + ] + }, + { + "id": 20683, + "cuisine": "thai", + "ingredients": [ + "natural peanut butter", + "water", + "green onions", + "slaw mix", + "garlic cloves", + "frozen edamame beans", + "sugar pea", + "asparagus", + "cooked fettuccini", + "rice vinegar", + "tofu", + "soy sauce", + "peanuts", + "chicken breasts", + "salt", + "chili garlic paste", + "eggs", + "pepper", + "granulated sugar", + "sesame oil", + "peanut oil" + ] + }, + { + "id": 16144, + "cuisine": "mexican", + "ingredients": [ + "corn oil", + "salt", + "plum tomatoes", + "eggs", + "lean ground beef", + "shredded mozzarella cheese", + "chile pepper", + "all-purpose flour", + "pepper", + "garlic", + "onions" + ] + }, + { + "id": 18594, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "garlic cloves", + "reduced sodium chicken broth", + "frozen corn", + "onions", + "black beans", + "green pepper", + "ground turmeric", + "olive oil", + "long-grain rice", + "ground cumin" + ] + }, + { + "id": 46858, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "garlic", + "taco shells", + "taco seasoning", + "shredded cheddar cheese", + "onions", + "lean ground beef", + "chunky salsa" + ] + }, + { + "id": 33740, + "cuisine": "russian", + "ingredients": [ + "pepper", + "bay leaves", + "salt", + "radishes", + "meat", + "cucumber", + "kefir", + "green onions", + "dill", + "eggs", + "potatoes", + "parsley", + "sour cream" + ] + }, + { + "id": 29544, + "cuisine": "thai", + "ingredients": [ + "green chile", + "lime", + "extra firm tofu", + "cilantro", + "cumin seed", + "coconut milk", + "long beans", + "soy sauce", + "thai basil", + "shallots", + "garlic", + "carrots", + "green bell pepper", + "coriander seeds", + "cilantro stems", + "ginger", + "scallions", + "galangal", + "kaffir lime leaves", + "straw mushrooms", + "lemon grass", + "sesame oil", + "green chilies", + "baby corn" + ] + }, + { + "id": 42080, + "cuisine": "chinese", + "ingredients": [ + "pork", + "green onions", + "beansprouts", + "eggs", + "light soy sauce", + "oil", + "soy sauce", + "sesame oil", + "frozen peas", + "cooked rice", + "finely chopped onion", + "carrots" + ] + }, + { + "id": 41272, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "butternut squash", + "vegetable oil", + "large shrimp", + "water", + "green onions", + "fresh lemon juice", + "minced garlic", + "peeled fresh ginger", + "dry mustard", + "ground cumin", + "ground cloves", + "dijon mustard", + "ground red pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 6547, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "all-purpose flour", + "sugar", + "vanilla wafer crumbs", + "chopped pecans", + "firmly packed brown sugar", + "butter", + "cream cheese", + "dark corn syrup", + "vanilla extract", + "heavy whipping cream" + ] + }, + { + "id": 2460, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "whole kernel corn, drain", + "salt", + "medium shrimp", + "diced tomatoes", + "green beans", + "pepper", + "bow-tie pasta" + ] + }, + { + "id": 46038, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "sour cream", + "mayonaise", + "condensed cream of mushroom soup", + "cooked chicken breasts", + "shredded cheddar cheese", + "chopped onion", + "condensed cream of chicken soup", + "grated parmesan cheese", + "garlic salt" + ] + }, + { + "id": 7209, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "salt", + "eggs", + "russet potatoes", + "greens", + "chard", + "flour", + "butter oil", + "milk", + "lemon" + ] + }, + { + "id": 9056, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "lime", + "blackpepper", + "ground cloves", + "olive oil", + "corn tortillas", + "chiles", + "honey", + "cayenne pepper", + "boneless pork shoulder", + "kosher salt", + "white wine vinegar", + "ground cumin" + ] + }, + { + "id": 41800, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "oil", + "flank steak", + "garlic chili sauce", + "fresh ginger", + "garlic cloves", + "brown sugar", + "rice vinegar" + ] + }, + { + "id": 21797, + "cuisine": "mexican", + "ingredients": [ + "lime", + "tomatillos", + "monterey jack", + "kosher salt", + "jalapeno chilies", + "purple onion", + "flour tortillas", + "cilantro", + "store bought low sodium chicken stock", + "boneless skinless chicken breasts", + "juice" + ] + }, + { + "id": 44880, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "red wine vinegar", + "chopped onion", + "whole grain mustard", + "purple onion", + "water", + "red wine", + "mayonaise", + "fresh thyme", + "new york strip steaks" + ] + }, + { + "id": 9183, + "cuisine": "italian", + "ingredients": [ + "parsley leaves", + "salt", + "olive oil", + "linguine", + "hot red pepper flakes", + "large garlic cloves", + "dry white wine" + ] + }, + { + "id": 34005, + "cuisine": "southern_us", + "ingredients": [ + "large garlic cloves", + "carrots", + "olive oil", + "cayenne pepper", + "ground cumin", + "smoked bacon", + "yellow onion", + "shanks", + "black-eyed peas", + "low sodium chicken stock" + ] + }, + { + "id": 19232, + "cuisine": "italian", + "ingredients": [ + "lime wedges", + "cantaloupe", + "mint leaves", + "manchego cheese" + ] + }, + { + "id": 2397, + "cuisine": "irish", + "ingredients": [ + "black pepper", + "pastry dough", + "all-purpose flour", + "onions", + "green peppercorns", + "Guinness Beer", + "worcestershire sauce", + "garlic cloves", + "water", + "vegetable oil", + "beef broth", + "chuck", + "tomato paste", + "large eggs", + "salt", + "thyme sprigs" + ] + }, + { + "id": 8635, + "cuisine": "chinese", + "ingredients": [ + "tangerine", + "salt", + "eggs", + "water", + "cinnamon sticks", + "dark soy sauce", + "black tea leaves", + "soy sauce", + "star anise" + ] + }, + { + "id": 34242, + "cuisine": "french", + "ingredients": [ + "water", + "extra-virgin olive oil", + "garlic cloves", + "fresh rosemary", + "ground black pepper", + "anchovy fillets", + "whole grain mustard", + "black olives", + "lemon juice", + "capers", + "coarse salt", + "black mission figs" + ] + }, + { + "id": 44817, + "cuisine": "korean", + "ingredients": [ + "miso paste", + "apples", + "sliced shallots", + "eggs", + "ramen noodles", + "garlic cloves", + "broth", + "green onions", + "lemon slices", + "onions", + "water", + "ginger", + "kimchi" + ] + }, + { + "id": 5163, + "cuisine": "italian", + "ingredients": [ + "fava beans", + "shallots", + "garden peas", + "lower sodium chicken broth", + "dry white wine", + "pecorino romano cheese", + "strozzapreti", + "ground black pepper", + "butter", + "salt", + "prosciutto", + "whole milk ricotta cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 8529, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "white rice", + "orange juice", + "minced garlic", + "rice wine", + "rice vinegar", + "orange zest", + "pepper", + "chicken breasts", + "salt", + "corn starch", + "brown sugar", + "water", + "vegetable oil", + "hot chili sauce" + ] + }, + { + "id": 31080, + "cuisine": "british", + "ingredients": [ + "large egg yolks", + "heavy cream", + "double-acting baking powder", + "sugar", + "unsalted butter", + "salt", + "dried currants", + "cinnamon", + "all-purpose flour", + "pecans", + "baking soda", + "vanilla" + ] + }, + { + "id": 29367, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "buttermilk", + "panko breadcrumbs", + "kosher salt", + "pies", + "hot sauce", + "biscuits", + "unsalted butter", + "boneless chicken cutlet", + "honey", + "vegetable oil", + "cayenne pepper" + ] + }, + { + "id": 41788, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "deveined shrimp", + "cucumber", + "hot pepper sauce", + "salt", + "cilantro", + "bloody mary mix", + "lime", + "purple onion", + "plum tomatoes" + ] + }, + { + "id": 45442, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "extra-virgin olive oil", + "cayenne pepper", + "corn tortillas", + "unsalted butter", + "salt", + "low sodium chicken stock", + "ground cumin", + "green bell pepper", + "garlic", + "skinless chicken breasts", + "chopped cilantro fresh", + "chili powder", + "yellow onion", + "tortilla chips" + ] + }, + { + "id": 3562, + "cuisine": "greek", + "ingredients": [ + "finely chopped onion", + "crushed red pepper flakes", + "feta cheese crumbles", + "ground lamb", + "mint", + "sliced cucumber", + "salt", + "cucumber", + "sliced tomatoes", + "mint leaves", + "garlic", + "pita pockets", + "olive oil", + "lemon", + "greek style plain yogurt", + "dried oregano" + ] + }, + { + "id": 48606, + "cuisine": "southern_us", + "ingredients": [ + "molasses", + "bay leaves", + "all-purpose flour", + "fresh thyme", + "coarse salt", + "chicken", + "granulated sugar", + "vegetable oil", + "cornmeal", + "cold water", + "large eggs", + "crushed red pepper flakes" + ] + }, + { + "id": 2734, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium chicken broth", + "zucchini", + "scallions", + "sliced mushrooms", + "fresh ginger", + "boneless skinless chicken breasts", + "oyster sauce", + "canola oil", + "kosher salt", + "shredded carrots", + "garlic cloves", + "bok choy", + "reduced sodium soy sauce", + "rice wine", + "corn starch" + ] + }, + { + "id": 27387, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "roasted peanuts", + "mint leaves", + "green papaya", + "prawns", + "carrots", + "bawang goreng" + ] + }, + { + "id": 38615, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "large garlic cloves", + "fresh basil leaves", + "kosher salt", + "chicken breasts", + "hearts of romaine", + "black pepper", + "cooking spray", + "white wine vinegar", + "flatbread", + "olive oil", + "chees fresh mozzarella" + ] + }, + { + "id": 11403, + "cuisine": "greek", + "ingredients": [ + "tomato paste", + "olive oil", + "garlic", + "long-grain rice", + "marjoram", + "pepper", + "dry white wine", + "salt", + "onions", + "eggs", + "potatoes", + "lamb shoulder", + "kefalotyri", + "boneless pork shoulder", + "water", + "parsley", + "all-purpose flour", + "chopped fresh mint" + ] + }, + { + "id": 41492, + "cuisine": "filipino", + "ingredients": [ + "garlic", + "coconut", + "oil", + "soy sauce", + "rice vinegar", + "bay leaves", + "pork shoulder" + ] + }, + { + "id": 47572, + "cuisine": "spanish", + "ingredients": [ + "garlic cloves", + "olive oil", + "basmati rice", + "chicken broth", + "onions", + "zucchini" + ] + }, + { + "id": 13920, + "cuisine": "italian", + "ingredients": [ + "grapes", + "yellow onion", + "extra-virgin olive oil", + "salt", + "pepper", + "sweet italian sausage" + ] + }, + { + "id": 28174, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "strawberries", + "jalapeno chilies", + "chopped cilantro fresh", + "purple onion", + "ground black pepper", + "fresh lime juice" + ] + }, + { + "id": 42931, + "cuisine": "italian", + "ingredients": [ + "table salt", + "active dry yeast", + "minced garlic", + "coarse salt", + "sugar", + "olive oil", + "fresh rosemary", + "water", + "all purpose unbleached flour" + ] + }, + { + "id": 25150, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cilantro", + "cotija", + "pico de gallo", + "corn tortillas", + "carne asada" + ] + }, + { + "id": 49472, + "cuisine": "mexican", + "ingredients": [ + "cracked black pepper", + "tequila", + "hot pepper sauce", + "chopped onion", + "fresh dill", + "garlic", + "jalapeno chilies", + "dill pickles" + ] + }, + { + "id": 37409, + "cuisine": "moroccan", + "ingredients": [ + "sausage casings", + "chopped parsley", + "diced tomatoes", + "onions", + "vegetable oil", + "couscous", + "ground cinnamon", + "chickpeas", + "ground cumin" + ] + }, + { + "id": 48702, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "salt", + "green beans", + "toasted almonds", + "grated lemon peel", + "lemon", + "garlic cloves", + "low salt chicken broth", + "couscous", + "ground turmeric", + "ground cinnamon", + "extra-virgin olive oil", + "carrots", + "red bell pepper", + "chopped cilantro fresh", + "ground ginger", + "raisins", + "fresh lemon juice", + "cucumber", + "boneless skinless chicken breast halves", + "ground cumin" + ] + }, + { + "id": 30627, + "cuisine": "thai", + "ingredients": [ + "tangerine zest", + "vegetable oil", + "beef steak", + "ground ginger", + "chinese noodles", + "purple onion", + "tangerine", + "butternut squash", + "fresh mushrooms", + "hoisin sauce", + "dry sherry", + "cabbage" + ] + }, + { + "id": 19520, + "cuisine": "italian", + "ingredients": [ + "slivered almonds", + "whipping heavy cream", + "store-bought pound cake", + "semi-sweet chocolate morsels", + "sugar", + "orange juice", + "almond extract" + ] + }, + { + "id": 33262, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "hot water", + "brown sugar", + "glutinous rice flour", + "rice flour" + ] + }, + { + "id": 35207, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "water", + "onion powder", + "cayenne pepper", + "shrimp tails", + "dried basil", + "garlic", + "ground turmeric", + "soy sauce", + "curry powder", + "sesame oil", + "dried minced onion", + "seasoned bread crumbs", + "mirin", + "salt" + ] + }, + { + "id": 21885, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "bacon", + "pie crust", + "butter", + "eggs", + "heavy cream", + "ground black pepper", + "salt" + ] + }, + { + "id": 5796, + "cuisine": "southern_us", + "ingredients": [ + "chopped green bell pepper", + "medium shrimp", + "fat free less sodium chicken broth", + "quickcooking grits", + "sliced green onions", + "fat free milk", + "worcestershire sauce", + "reduced fat sharp cheddar cheese", + "cooking spray", + "plum tomatoes" + ] + }, + { + "id": 289, + "cuisine": "indian", + "ingredients": [ + "clove", + "honey", + "cilantro", + "cinnamon sticks", + "tomatoes", + "butter", + "salt", + "cumin", + "tomato paste", + "garam masala", + "cashew butter", + "coriander", + "fenugreek leaves", + "heavy cream", + "cayenne pepper", + "chicken" + ] + }, + { + "id": 18147, + "cuisine": "chinese", + "ingredients": [ + "fish sauce", + "olive oil", + "garlic", + "shrimp tails", + "sesame oil", + "beansprouts", + "soy sauce", + "fresh ginger", + "ground white pepper", + "sambal ulek", + "kale", + "wonton wrappers", + "less sodium chicken broth" + ] + }, + { + "id": 1016, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "hungarian paprika", + "all-purpose flour", + "dried oregano", + "andouille sausage", + "green onions", + "garlic cloves", + "green bell pepper", + "bay leaves", + "peanut oil", + "canola oil", + "celery ribs", + "dried thyme", + "chicken breasts", + "onions" + ] + }, + { + "id": 28128, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "cajun seasoning", + "onions", + "green onions", + "smoked sausage", + "chicken", + "bell pepper", + "garlic", + "roux", + "tasso", + "parsley", + "celery" + ] + }, + { + "id": 17782, + "cuisine": "italian", + "ingredients": [ + "raspberries", + "evaporated cane juice", + "unflavored gelatin", + "honey", + "olive oil cooking spray", + "pure vanilla extract", + "orange", + "fresh orange juice", + "skim milk", + "unsweetened soymilk" + ] + }, + { + "id": 11496, + "cuisine": "indian", + "ingredients": [ + "whole allspice", + "coriander seeds", + "cardamom pods", + "ground turmeric", + "black peppercorns", + "fresh ginger", + "persian cucumber", + "fresh lime juice", + "light brown sugar", + "kosher salt", + "vegetable oil", + "garlic cloves", + "white vinegar", + "red chili peppers", + "brown mustard seeds", + "cumin seed" + ] + }, + { + "id": 25129, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "milk", + "garlic", + "bay leaf", + "water", + "grated parmesan cheese", + "sausages", + "onions", + "chicken broth", + "orange", + "tapioca starch", + "carrots", + "canola oil", + "black beans", + "olive oil", + "salt", + "chopped cilantro" + ] + }, + { + "id": 36734, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "garam masala", + "salt", + "cashew nuts", + "fresh coriander", + "chili powder", + "oil", + "ground cumin", + "cream", + "fenugreek", + "green chilies", + "chicken", + "tomatoes", + "water", + "butter", + "onions" + ] + }, + { + "id": 28412, + "cuisine": "mexican", + "ingredients": [ + "ground pepper", + "coarse salt", + "jalapeno chilies", + "cheddar cheese", + "cream cheese" + ] + }, + { + "id": 1507, + "cuisine": "jamaican", + "ingredients": [ + "tumeric", + "white pepper", + "water", + "flour", + "worcestershire sauce", + "Equal Sweetener", + "cold water", + "black pepper", + "jerk seasoning", + "fresh thyme", + "tvp", + "oil", + "dough", + "ground cloves", + "cream", + "vegan margarine", + "scotch bonnet chile", + "salt", + "allspice", + "marmite", + "ketchup", + "bread crumbs", + "curry powder", + "green onions", + "garlic", + "onions" + ] + }, + { + "id": 46607, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "garlic", + "ground beef", + "shredded cheddar cheese", + "oil", + "pepper", + "salt", + "onions", + "chili powder", + "corn tortillas" + ] + }, + { + "id": 21102, + "cuisine": "korean", + "ingredients": [ + "ground black pepper", + "green onions", + "apple juice", + "chinese black vinegar", + "water", + "mirin", + "extra-virgin olive oil", + "corn starch", + "fresh ginger", + "boneless beef short ribs", + "garlic", + "toasted sesame oil", + "low sodium soy sauce", + "asian pear", + "ponzu", + "dark brown sugar", + "cooked white rice" + ] + }, + { + "id": 22043, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "chopped cilantro fresh", + "chicken meat", + "vegetable oil", + "chicken broth", + "onions" + ] + }, + { + "id": 26370, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "ground black pepper", + "yellow onion", + "coconut juice", + "soy sauce", + "garlic", + "oil", + "red chili peppers", + "green onions", + "filet", + "fish sauce", + "water", + "salt", + "fish" + ] + }, + { + "id": 6708, + "cuisine": "jamaican", + "ingredients": [ + "nutmeg", + "olive oil", + "shallots", + "crushed red pepper flakes", + "pancetta", + "parmigiana-reggiano", + "whole milk", + "yellow mustard", + "gruyere cheese", + "fruit", + "flour", + "butter", + "white cheddar cheese", + "pasta", + "minced garlic", + "bagel chips", + "sea salt", + "jamaican jerk" + ] + }, + { + "id": 39057, + "cuisine": "japanese", + "ingredients": [ + "water", + "coriander powder", + "salt", + "onions", + "eggplant", + "chili powder", + "cumin seed", + "ground turmeric", + "tomatoes", + "garam masala", + "garlic", + "oil", + "ground cumin", + "fresh ginger", + "potatoes", + "cilantro leaves", + "frozen peas" + ] + }, + { + "id": 20713, + "cuisine": "italian", + "ingredients": [ + "sugar", + "semi-sweet chocolate morsels", + "egg whites", + "sliced almonds", + "almond paste" + ] + }, + { + "id": 17695, + "cuisine": "japanese", + "ingredients": [ + "gari", + "vegetable oil", + "scallions", + "sugar", + "water", + "seasoned rice wine vinegar", + "shiso", + "sushi rice", + "seeds", + "california avocado", + "toasted nori", + "wasabi paste", + "seedless cucumber", + "salt", + "carrots" + ] + }, + { + "id": 667, + "cuisine": "indian", + "ingredients": [ + "white onion", + "ground black pepper", + "boneless skinless chicken breasts", + "peanut oil", + "fresh lime juice", + "ground cumin", + "water", + "unsalted butter", + "paprika", + "ground cardamom", + "basmati rice", + "kosher salt", + "cayenne", + "heavy cream", + "ground coriander", + "chopped cilantro fresh", + "tomato purée", + "ground nutmeg", + "peeled fresh ginger", + "garlic", + "greek yogurt", + "naan" + ] + }, + { + "id": 931, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "onions", + "olive oil", + "taco seasoning", + "water", + "diced tomatoes", + "Velveeta", + "lean ground beef" + ] + }, + { + "id": 40622, + "cuisine": "mexican", + "ingredients": [ + "condensed cream of chicken soup", + "ranch dressing", + "Mexican cheese blend", + "sour cream", + "chopped green chilies", + "butter", + "flour tortillas", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 11869, + "cuisine": "spanish", + "ingredients": [ + "pinenuts", + "bacon slices", + "onions", + "pecan halves", + "vegetable oil", + "garlic cloves", + "slivered almonds", + "butter", + "fresh parsley", + "chopped ham", + "low sodium chicken broth", + "yellow rice" + ] + }, + { + "id": 19522, + "cuisine": "southern_us", + "ingredients": [ + "vanilla extract", + "flour", + "sweetened condensed milk", + "pecans", + "semi-sweet chocolate morsels", + "butter" + ] + }, + { + "id": 44221, + "cuisine": "southern_us", + "ingredients": [ + "active dry yeast", + "buttermilk", + "baking powder", + "all-purpose flour", + "sugar", + "vegetable shortening", + "baking soda", + "salt" + ] + }, + { + "id": 27868, + "cuisine": "thai", + "ingredients": [ + "baby spinach leaves", + "green onions", + "red bell pepper", + "fresh basil", + "extra firm tofu", + "salted roast peanuts", + "olive oil", + "large garlic cloves", + "fresh lime juice", + "soy sauce", + "peeled fresh ginger", + "crushed red pepper" + ] + }, + { + "id": 48130, + "cuisine": "southern_us", + "ingredients": [ + "quickcooking grits", + "water", + "salt", + "pepper", + "butter", + "shredded extra sharp cheddar cheese", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 29698, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "vegetable oil", + "bacon grease", + "cold water", + "refried beans", + "salsa", + "lard", + "shredded cheddar cheese", + "all-purpose flour", + "sour cream", + "cheddar cheese", + "jalapeno chilies", + "yellow onion", + "chorizo sausage" + ] + }, + { + "id": 37122, + "cuisine": "russian", + "ingredients": [ + "vodka", + "chuck roast", + "greek style plain yogurt", + "onions", + "fresh dill", + "red beets", + "yukon gold potatoes", + "carrots", + "horseradish", + "kosher salt", + "red cabbage", + "garlic cloves", + "canola oil", + "sugar", + "lower sodium beef broth", + "red wine vinegar", + "ground white pepper" + ] + }, + { + "id": 27018, + "cuisine": "british", + "ingredients": [ + "flour", + "worcestershire sauce", + "bay leaf", + "black pepper", + "beef stock", + "oil", + "onions", + "egg yolks", + "salt", + "kidney", + "milk", + "pastry shell", + "chuck steaks" + ] + }, + { + "id": 33195, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil spray", + "roasted peanuts", + "sugar", + "unsalted butter", + "pure vanilla extract", + "baking soda", + "water", + "light corn syrup" + ] + }, + { + "id": 47473, + "cuisine": "italian", + "ingredients": [ + "brandy", + "chocolate shavings", + "cocoa powder", + "powdered sugar", + "mascarpone", + "vanilla extract", + "sugar", + "flour", + "espresso", + "ladyfingers", + "large egg yolks", + "heavy cream" + ] + }, + { + "id": 36345, + "cuisine": "italian", + "ingredients": [ + "white bread", + "olive oil", + "dried oregano", + "black pepper", + "cannellini beans", + "fettucine", + "artichoke hearts", + "kosher salt", + "garlic" + ] + }, + { + "id": 12251, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "white wine", + "linguine", + "large shrimp", + "tomatoes", + "red pepper flakes", + "fresh parsley", + "pepper", + "garlic" + ] + }, + { + "id": 47823, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "sauce", + "corn tortillas", + "mozzarella cheese", + "butternut squash", + "sour cream", + "corn", + "chopped onion", + "pitted black olives", + "olive oil", + "grated jack cheese" + ] + }, + { + "id": 40361, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "flour tortillas", + "sour cream", + "hot sausage", + "bbq sauce", + "purple onion", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 5505, + "cuisine": "indian", + "ingredients": [ + "chile powder", + "tumeric", + "salt", + "eggs", + "vegetable oil", + "coriander", + "tomatoes", + "chile pepper", + "onions", + "garlic paste", + "butter" + ] + }, + { + "id": 5186, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "purple onion", + "fennel", + "miso paste", + "fat skimmed chicken broth", + "fresh chives", + "butter" + ] + }, + { + "id": 40320, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "heavy whipping cream", + "provolone cheese", + "butter", + "grated romano cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 14610, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "chopped celery", + "chopped cilantro", + "chicken stock", + "olive oil", + "brown lentils", + "minced ginger", + "salt", + "onions", + "minced garlic", + "ground black pepper", + "carrots" + ] + }, + { + "id": 12749, + "cuisine": "korean", + "ingredients": [ + "fish sauce", + "napa cabbage", + "garlic cloves", + "fresh ginger", + "red pepper", + "kosher salt", + "daikon", + "shrimp", + "cold water", + "granulated sugar", + "scallions" + ] + }, + { + "id": 776, + "cuisine": "spanish", + "ingredients": [ + "slivered almonds", + "low sodium chicken broth", + "onions", + "chicken legs", + "ground black pepper", + "flat leaf parsley", + "white bread", + "olive oil", + "garlic cloves", + "saffron threads", + "kosher salt", + "dry sherry" + ] + }, + { + "id": 40903, + "cuisine": "japanese", + "ingredients": [ + "sea scallops", + "soba noodles", + "fresh ginger", + "extra-virgin olive oil", + "canola oil", + "white miso", + "rice vinegar", + "minced garlic", + "mirin", + "scallions" + ] + }, + { + "id": 29770, + "cuisine": "chinese", + "ingredients": [ + "honey", + "green onions", + "salt", + "egg whites", + "brown rice", + "corn starch", + "sesame seeds", + "chicken breasts", + "garlic cloves", + "soy sauce", + "broccoli florets", + "vegetable oil" + ] + }, + { + "id": 46224, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "regular soy sauce", + "cooking wine", + "ground white pepper", + "dark soy sauce", + "bell pepper", + "boneless chicken cutlet", + "corn starch", + "peanuts", + "ginger", + "scallions", + "pepper", + "hot chili oil", + "salt", + "black vinegar" + ] + }, + { + "id": 36544, + "cuisine": "thai", + "ingredients": [ + "white wine vinegar", + "ginger root", + "light soy sauce", + "carrots", + "chopped cilantro", + "spring roll wrappers", + "leaf lettuce", + "cooked shrimp", + "mirin", + "cucumber" + ] + }, + { + "id": 35392, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "napa cabbage", + "black rice vinegar", + "light soy sauce", + "green onions", + "toasted sesame oil", + "ground black pepper", + "ground pork", + "Shaoxing wine", + "salt" + ] + }, + { + "id": 15023, + "cuisine": "italian", + "ingredients": [ + "water", + "garlic", + "plum tomatoes", + "arborio rice", + "green onions", + "coconut milk", + "white wine", + "fresh tarragon", + "frozen peas", + "olive oil", + "wild rice" + ] + }, + { + "id": 35070, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "butter", + "hot water", + "chicken thighs", + "ground cumin", + "parsley", + "cayenne pepper", + "phyllo pastry", + "ground turmeric", + "cinnamon", + "lemon juice", + "onions", + "saffron", + "powdered sugar", + "garlic", + "toasted almonds", + "coriander" + ] + }, + { + "id": 17422, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "chili powder", + "paprika", + "ground coriander", + "ground cinnamon", + "fresh ginger", + "veggies", + "yellow split peas", + "onions", + "olive oil", + "lemon", + "vegetable broth", + "garlic cloves", + "tumeric", + "chili paste", + "diced tomatoes", + "ground mustard", + "ground cumin" + ] + }, + { + "id": 14444, + "cuisine": "mexican", + "ingredients": [ + "taco bell home originals", + "shredded lettuce", + "KRAFT Shredded Cheddar Cheese", + "chopped tomatoes", + "tortilla chips", + "green onions" + ] + }, + { + "id": 13946, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "shell-on shrimp", + "squid", + "spaghetti", + "mussels", + "water", + "basil", + "California bay leaves", + "octopuses", + "basil leaves", + "garlic cloves", + "tentacles", + "unsalted butter", + "extra-virgin olive oil", + "juice" + ] + }, + { + "id": 6015, + "cuisine": "mexican", + "ingredients": [ + "barbecue sauce", + "cilantro", + "flour tortillas", + "butter", + "monterey jack", + "pepper", + "boneless skinless chicken breasts", + "salt", + "jalapeno chilies", + "pineapple" + ] + }, + { + "id": 14417, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "red wine vinegar", + "italian seasoning", + "low-fat spaghetti sauce", + "zucchini", + "mushrooms", + "chopped onion", + "penne", + "chopped green bell pepper", + "cooking spray", + "salt", + "water", + "fresh thyme", + "chicken breasts", + "garlic cloves" + ] + }, + { + "id": 30249, + "cuisine": "filipino", + "ingredients": [ + "vegetable oil", + "all-purpose flour", + "large eggs", + "butter", + "milk", + "yellow food coloring", + "white sugar", + "baking powder", + "salt" + ] + }, + { + "id": 5374, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "butter", + "sweet potatoes", + "orange juice" + ] + }, + { + "id": 1034, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "bacon", + "lemon juice", + "butter", + "sharp cheddar cheese", + "grits", + "parsley", + "button mushrooms", + "shrimp", + "heavy cream", + "garlic cloves" + ] + }, + { + "id": 4621, + "cuisine": "french", + "ingredients": [ + "tomato purée", + "beef shin", + "chestnut mushrooms", + "red wine", + "chopped parsley", + "peppercorns", + "plain flour", + "baguette", + "ground black pepper", + "vegetable oil", + "salt", + "bay leaf", + "clove", + "sugar", + "rosemary", + "parsley", + "garlic", + "lardons", + "free-range eggs", + "nutmeg", + "milk", + "parsley leaves", + "butter", + "thyme", + "onions" + ] + }, + { + "id": 25839, + "cuisine": "italian", + "ingredients": [ + "green bell pepper, slice", + "sweet italian sausag links, cut into", + "ragu old world style sweet tomato basil pasta sauc", + "garlic", + "olive oil", + "onions" + ] + }, + { + "id": 8263, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "cinnamon sticks", + "nuts", + "water" + ] + }, + { + "id": 48450, + "cuisine": "chinese", + "ingredients": [ + "lean ground pork", + "oyster sauce", + "white sugar", + "eggs", + "sesame oil", + "corn starch", + "chicken stock", + "green onions", + "shrimp", + "soy sauce", + "wonton wrappers", + "bok choy" + ] + }, + { + "id": 539, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "black pepper", + "jalapeno chilies", + "salt", + "sour cream", + "avocado", + "picante sauce", + "chili powder", + "frozen corn", + "cumin", + "brown rice", + "cilantro leaves", + "bay leaf", + "green chile", + "shredded cheddar cheese", + "vegetable broth", + "garlic cloves" + ] + }, + { + "id": 783, + "cuisine": "southern_us", + "ingredients": [ + "sliced salami", + "grated parmesan cheese", + "sliced ham", + "dried basil", + "pitted green olives", + "dried oregano", + "mozzarella cheese", + "oil-cured black olives", + "Italian bread", + "olive oil", + "provolone cheese" + ] + }, + { + "id": 12143, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "clove", + "white vinegar", + "cinnamon sticks", + "sugar" + ] + }, + { + "id": 46425, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "water", + "rice wine", + "frozen corn kernels", + "white pepper", + "chicken breasts", + "firm tofu", + "eggs", + "fresh ginger", + "sesame oil", + "corn starch", + "five spice", + "green onions", + "garlic" + ] + }, + { + "id": 40770, + "cuisine": "spanish", + "ingredients": [ + "red pepper flakes", + "chopped garlic", + "avocado", + "shrimp", + "extra-virgin olive oil", + "dry white wine", + "fresh parsley" + ] + }, + { + "id": 16755, + "cuisine": "southern_us", + "ingredients": [ + "dried basil", + "all-purpose flour", + "sugar", + "baking powder", + "skim milk", + "salt", + "low-fat sour cream", + "minced onion", + "margarine" + ] + }, + { + "id": 22416, + "cuisine": "moroccan", + "ingredients": [ + "peaches", + "medjool date", + "orange liqueur", + "sugar" + ] + }, + { + "id": 29129, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "pistachios", + "raisins", + "milk", + "baking powder", + "sugar", + "yoghurt", + "salt", + "plain flour", + "active dry yeast", + "vegetable oil" + ] + }, + { + "id": 42484, + "cuisine": "italian", + "ingredients": [ + "orange bell pepper", + "purple onion", + "garlic cloves", + "olive oil", + "crushed red pepper flakes", + "freshly ground pepper", + "fresh mozzarella", + "fresh oregano", + "country bread", + "kosher salt", + "red wine vinegar", + "soppressata" + ] + }, + { + "id": 14821, + "cuisine": "italian", + "ingredients": [ + "bread", + "olive oil", + "potatoes", + "garlic cloves", + "fresh basil", + "red cabbage", + "vegetable stock", + "onions", + "green cabbage", + "zucchini", + "cannellini beans", + "carrots", + "celery ribs", + "fresh tomatoes", + "grated parmesan cheese", + "chopped fresh thyme" + ] + }, + { + "id": 45391, + "cuisine": "jamaican", + "ingredients": [ + "oxtails", + "thyme", + "seasoning salt", + "garlic cloves", + "black pepper", + "scallions", + "onions", + "cherry tomatoes", + "sherry wine" + ] + }, + { + "id": 14032, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "olive oil", + "low salt chicken broth", + "ground cumin", + "prunes", + "all-purpose flour", + "boneless skinless chicken breast halves", + "honey", + "fresh lemon juice", + "chopped cilantro fresh", + "ground cinnamon", + "large garlic cloves", + "onions" + ] + }, + { + "id": 43698, + "cuisine": "italian", + "ingredients": [ + "egg yolks", + "brewed espresso", + "unsweetened cocoa powder", + "granulated sugar", + "whipping cream", + "orange liqueur", + "mini marshmallows", + "vanilla extract", + "chocolate candy bars", + "graham crackers", + "mint sprigs", + "cream cheese, soften" + ] + }, + { + "id": 39997, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "olive oil", + "garlic", + "bay leaf", + "plain yogurt", + "lemon", + "cayenne pepper", + "white sugar", + "ground cinnamon", + "fresh ginger root", + "salt", + "onions", + "curry powder", + "paprika", + "coconut milk", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 48442, + "cuisine": "southern_us", + "ingredients": [ + "salted butter", + "water", + "milk & cream" + ] + }, + { + "id": 37896, + "cuisine": "italian", + "ingredients": [ + "cracked black pepper", + "fat", + "roma tomatoes", + "salt", + "polenta", + "diced tomatoes", + "garlic cloves", + "gremolata", + "dry red wine", + "fresh basil leaves" + ] + }, + { + "id": 46666, + "cuisine": "indian", + "ingredients": [ + "petite peas", + "water", + "ground turmeric", + "dry roasted peanuts", + "basmati rice", + "salt" + ] + }, + { + "id": 7134, + "cuisine": "italian", + "ingredients": [ + "frozen pastry puff sheets", + "shredded mozzarella cheese", + "diced onions", + "extra-virgin olive oil", + "dried rosemary", + "sun-dried tomatoes", + "garlic", + "green onions", + "crumbled gorgonzola" + ] + }, + { + "id": 16771, + "cuisine": "chinese", + "ingredients": [ + "water", + "bean paste", + "chicken", + "pepper", + "green onions", + "ginger", + "minced garlic", + "meat", + "peppercorns", + "sugar", + "soft tofu", + "rice wine" + ] + }, + { + "id": 10134, + "cuisine": "french", + "ingredients": [ + "stock", + "pearl onions", + "bay leaves", + "thyme", + "homemade chicken stock", + "ground black pepper", + "garlic", + "chicken", + "kosher salt", + "unsalted butter", + "carrots", + "cremini mushrooms", + "slab bacon", + "dry red wine", + "flat leaf parsley" + ] + }, + { + "id": 22026, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "fresh peas", + "ground coriander", + "onions", + "basmati rice", + "crushed tomatoes", + "paneer", + "garlic cloves", + "chopped cilantro fresh", + "garam masala", + "all-purpose flour", + "ghee", + "serrano chile", + "water", + "peeled fresh ginger", + "cumin seed", + "frozen peas" + ] + }, + { + "id": 4050, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "garlic cloves", + "black pepper", + "salt", + "tomatoes", + "cauliflower florets", + "ground red pepper", + "chopped onion" + ] + }, + { + "id": 45333, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "sour cream", + "fresh rosemary", + "cornmeal", + "buttermilk" + ] + }, + { + "id": 39213, + "cuisine": "southern_us", + "ingredients": [ + "liquid smoke", + "black pepper", + "leaves", + "salt", + "smoked paprika", + "cooked rice", + "olive oil", + "vegetable broth", + "cayenne pepper", + "celery ribs", + "dried thyme", + "bay leaves", + "hot sauce", + "onions", + "green bell pepper", + "black-eyed peas", + "garlic", + "scallions" + ] + }, + { + "id": 2430, + "cuisine": "mexican", + "ingredients": [ + "unsweetened coconut milk", + "curry powder", + "empanada dough", + "cooked chicken", + "garlic", + "kosher salt", + "active dry yeast", + "unsalted butter", + "cracked black pepper", + "lard", + "eggs", + "milk", + "ground nutmeg", + "russet potatoes", + "all-purpose flour", + "water", + "olive oil", + "grated parmesan cheese", + "apples", + "chopped cilantro fresh" + ] + }, + { + "id": 35870, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "beef bouillon granules", + "salt", + "hot water", + "pepper", + "dry white wine", + "veal shanks", + "onions", + "parsley sprigs", + "fresh thyme", + "all-purpose flour", + "bay leaf", + "olive oil", + "butter", + "carrots" + ] + }, + { + "id": 15329, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "fine sea salt", + "cream cheese", + "ground cumin", + "garlic powder", + "chili powder", + "salsa", + "sour cream", + "avocado", + "low sodium chicken broth", + "purple onion", + "sharp cheddar cheese", + "ground black pepper", + "onion powder", + "skinless chicken breasts", + "chipotles in adobo" + ] + }, + { + "id": 20601, + "cuisine": "russian", + "ingredients": [ + "milk", + "salt", + "smoked salmon", + "large eggs", + "buckwheat flour", + "unsalted butter", + "crème fraîche", + "fresh dill", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 32846, + "cuisine": "french", + "ingredients": [ + "light corn syrup", + "sugar", + "egg whites", + "vanilla extract" + ] + }, + { + "id": 37525, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "shallots", + "fresh lemon juice", + "sourdough bread", + "grated lemon zest", + "fresh basil leaves", + "kosher salt", + "extra-virgin olive oil", + "fresno chiles", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 9574, + "cuisine": "russian", + "ingredients": [ + "eggs", + "heavy cream", + "sour cream", + "milk", + "buckwheat flour", + "active dry yeast", + "all-purpose flour", + "sugar", + "salt" + ] + }, + { + "id": 10430, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "butter", + "cream cheese, soften", + "water", + "lemon juice", + "brandy", + "crepes", + "blackberries", + "ground cinnamon", + "granulated sugar", + "corn starch" + ] + }, + { + "id": 27215, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "tuna steaks", + "extra-virgin olive oil", + "green beans", + "dijon mustard", + "yukon gold potatoes", + "salt", + "water", + "cooking spray", + "fresh tarragon", + "mixed greens", + "large eggs", + "red wine vinegar", + "Niçoise olives" + ] + }, + { + "id": 43330, + "cuisine": "japanese", + "ingredients": [ + "tomato purée", + "vegetable oil", + "chopped cilantro", + "garam masala", + "salt", + "frozen peas", + "garlic paste", + "paprika", + "onions", + "potatoes", + "bay leaf", + "white sugar" + ] + }, + { + "id": 10735, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "hot pepper sauce", + "garlic cloves", + "romaine lettuce", + "sherry vinegar", + "blanched almonds", + "water", + "salt", + "pepper", + "extra-virgin olive oil", + "serrano ham" + ] + }, + { + "id": 25533, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "basil", + "oil", + "pepper", + "Tabasco Pepper Sauce", + "salt", + "oregano", + "marinade", + "paprika", + "celery seed", + "garlic powder", + "buttermilk", + "poultry seasoning", + "chicken" + ] + }, + { + "id": 11858, + "cuisine": "japanese", + "ingredients": [ + "avocado", + "umeboshi paste", + "shiso leaves", + "sushi rice" + ] + }, + { + "id": 165, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "baking powder", + "confectioners sugar", + "lemon zest", + "cake flour", + "granulated sugar", + "vanilla", + "large eggs", + "salt" + ] + }, + { + "id": 15755, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "mushrooms", + "salt", + "cotija", + "beef", + "baking powder", + "fat skimmed chicken broth", + "tomatoes", + "chili", + "shredded cabbage", + "(15 oz.) refried beans", + "pork", + "flour", + "reduced-fat sour cream", + "chicken" + ] + }, + { + "id": 14525, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "pinenuts", + "feta cheese", + "salt", + "vidalia onion", + "water", + "cooking spray", + "red bell pepper", + "capers", + "minced garlic", + "fresh parmesan cheese", + "pizza doughs", + "black pepper", + "olive oil", + "yellow bell pepper", + "cornmeal" + ] + }, + { + "id": 30554, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "pizza doughs", + "fresh mozzarella", + "arugula" + ] + }, + { + "id": 639, + "cuisine": "indian", + "ingredients": [ + "fruit", + "ghee", + "khoa", + "orange", + "sugar", + "ground cardamom" + ] + }, + { + "id": 27370, + "cuisine": "spanish", + "ingredients": [ + "shell-on shrimp", + "fresh lemon juice", + "large garlic cloves", + "extra-virgin olive oil", + "hot red pepper flakes", + "fine sea salt" + ] + }, + { + "id": 30351, + "cuisine": "thai", + "ingredients": [ + "rice stick noodles", + "peanuts", + "paprika", + "beansprouts", + "sugar", + "large eggs", + "garlic cloves", + "lime", + "vegetable oil", + "tamarind concentrate", + "fish sauce", + "extra firm tofu", + "scallions", + "medium shrimp" + ] + }, + { + "id": 24553, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "broccoli rabe", + "sliced carrots", + "salt", + "dried oregano", + "savoy cabbage", + "kale", + "cannellini beans", + "chopped celery", + "country bread", + "parmigiano-reggiano cheese", + "dried thyme", + "yukon gold potatoes", + "crushed red pepper", + "plum tomatoes", + "water", + "cooking spray", + "extra-virgin olive oil", + "chopped onion" + ] + }, + { + "id": 20004, + "cuisine": "mexican", + "ingredients": [ + "plain yogurt", + "Mexican cheese blend", + "dried dillweed", + "ground cumin", + "top round steak", + "olive oil", + "salt", + "chopped cilantro fresh", + "lime", + "flour tortillas", + "onions", + "mayonaise", + "salt and ground black pepper", + "cayenne pepper", + "dried oregano" + ] + }, + { + "id": 24408, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "oyster sauce", + "chinese eggplants", + "white sugar", + "garlic powder", + "corn starch", + "water", + "crushed red pepper flakes", + "canola oil" + ] + }, + { + "id": 33009, + "cuisine": "japanese", + "ingredients": [ + "baking soda", + "all-purpose flour", + "eggs", + "butter", + "miso paste", + "sugar", + "raw sugar" + ] + }, + { + "id": 3728, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "chili powder", + "granulated garlic", + "ground black pepper", + "cayenne pepper", + "fresh chives", + "pepper jack", + "tasso", + "olive oil", + "russet potatoes" + ] + }, + { + "id": 41814, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "boneless skinless chicken breasts", + "oil", + "white pepper", + "salt", + "corn starch", + "soy sauce", + "baking powder", + "lemon juice", + "chicken broth", + "large eggs", + "lemon slices" + ] + }, + { + "id": 23387, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "extra-virgin olive oil", + "scallions", + "fava beans", + "pattypan squash", + "baby zucchini", + "sorrel", + "chives", + "salt", + "garlic cloves", + "milk", + "peas", + "freshly ground pepper" + ] + }, + { + "id": 35433, + "cuisine": "italian", + "ingredients": [ + "lemon", + "fresh basil leaves", + "salt and ground black pepper", + "garlic", + "parmesan cheese", + "walnuts", + "extra-virgin olive oil" + ] + }, + { + "id": 28054, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "white wine vinegar", + "chipotles in adobo", + "ground cinnamon", + "chili powder", + "ground coriander", + "chopped cilantro fresh", + "fresh ginger", + "rice", + "onions", + "ground cloves", + "large garlic cloves", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 17020, + "cuisine": "japanese", + "ingredients": [ + "spinach", + "garlic cloves", + "japanese rice", + "ginger", + "butternut squash", + "onions", + "chicken broth", + "extra-virgin olive oil" + ] + }, + { + "id": 4830, + "cuisine": "italian", + "ingredients": [ + "prepar pesto", + "parmigiano reggiano cheese", + "salt", + "flat leaf parsley", + "ground black pepper", + "fresh mozzarella", + "garlic cloves", + "milk", + "marinara sauce", + "Italian seasoned breadcrumbs", + "eggs", + "finely chopped onion", + "extra-virgin olive oil", + "ground turkey" + ] + }, + { + "id": 25261, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "provolone cheese", + "part-skim mozzarella cheese", + "Italian turkey sausage", + "pizza crust", + "yellow bell pepper", + "dried oregano", + "tomato paste", + "cooking spray", + "red bell pepper" + ] + }, + { + "id": 24002, + "cuisine": "spanish", + "ingredients": [ + "vegetables", + "garlic", + "water", + "dijon mustard", + "kosher salt", + "ground black pepper", + "juice", + "large egg yolks", + "extra-virgin olive oil" + ] + }, + { + "id": 3593, + "cuisine": "italian", + "ingredients": [ + "fresh basil leaves", + "soft fresh goat cheese", + "red bell pepper", + "country bread" + ] + }, + { + "id": 6423, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "olive oil", + "salt", + "coriander seeds", + "ground cumin", + "ground cinnamon", + "sirloin steak" + ] + }, + { + "id": 1161, + "cuisine": "italian", + "ingredients": [ + "eggs", + "butter", + "all-purpose flour", + "yellow food coloring", + "salt", + "semi-sweet chocolate morsels", + "almond extract", + "red food coloring", + "white sugar", + "seedless raspberry jam", + "color food green", + "almond paste" + ] + }, + { + "id": 33469, + "cuisine": "italian", + "ingredients": [ + "salami", + "parmigiano reggiano cheese", + "pizza doughs", + "large eggs", + "provolone cheese", + "bell pepper" + ] + }, + { + "id": 41648, + "cuisine": "greek", + "ingredients": [ + "salt", + "cucumber", + "red wine vinegar", + "feta cheese crumbles", + "vegetable oil", + "small red potato", + "sliced green onions", + "pepper", + "dill", + "red bell pepper" + ] + }, + { + "id": 21678, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "dried cranberries", + "egg yolks", + "orange juice", + "flaked coconut", + "chopped pecans", + "sugar", + "candied cherries" + ] + }, + { + "id": 31033, + "cuisine": "filipino", + "ingredients": [ + "vegetable broth", + "oil", + "cornstarch noodles", + "tofu", + "tamari soy sauce", + "green beans", + "garlic", + "carrots", + "pepper", + "salt", + "onions" + ] + }, + { + "id": 25943, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "pork spareribs", + "barbecue sauce", + "freshly ground pepper" + ] + }, + { + "id": 10014, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "green onions", + "crushed red pepper flakes", + "chili sauce", + "vermicelli noodles", + "avocado", + "curry powder", + "sesame oil", + "garlic", + "red bell pepper", + "lettuce", + "water", + "boneless skinless chicken breasts", + "ginger", + "carrots", + "rice paper", + "brown sugar", + "hoisin sauce", + "basil", + "peanut butter", + "fresh lime juice" + ] + }, + { + "id": 48470, + "cuisine": "chinese", + "ingredients": [ + "store bought low sodium chicken broth", + "Shaoxing wine", + "lean beef", + "kosher salt", + "szechwan peppercorns", + "corn starch", + "dark soy sauce", + "seeds", + "scallions", + "vegetables", + "chili bean paste", + "celery" + ] + }, + { + "id": 48438, + "cuisine": "italian", + "ingredients": [ + "pasta", + "anchovies", + "chopped tomatoes", + "red wine", + "cinnamon sticks", + "clove", + "chili pepper", + "sun-dried tomatoes", + "red wine vinegar", + "salt", + "pecorino cheese", + "spanish onion", + "bay leaves", + "basil", + "dried oregano", + "black pepper", + "olive oil", + "meat", + "garlic", + "sage" + ] + }, + { + "id": 42017, + "cuisine": "vietnamese", + "ingredients": [ + "boneless pork shoulder", + "cider vinegar", + "shredded cabbage", + "peanut oil", + "asian fish sauce", + "sugar", + "peanuts", + "salt", + "onions", + "mint", + "Japanese turnips", + "large garlic cloves", + "carrots", + "mushroom soy sauce", + "romaine lettuce", + "water", + "crushed red pepper", + "fresh lime juice" + ] + }, + { + "id": 22504, + "cuisine": "italian", + "ingredients": [ + "radicchio", + "ciabatta", + "kosher salt", + "cheese", + "extra-virgin olive oil", + "ground black pepper", + "ham" + ] + }, + { + "id": 6055, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "turkey", + "salt", + "coriander", + "fresh cilantro", + "ginger", + "peanut butter", + "plain yogurt", + "dry mustard", + "cayenne pepper", + "cumin", + "red pepper flakes", + "garlic", + "fresh lemon juice" + ] + }, + { + "id": 48727, + "cuisine": "cajun_creole", + "ingredients": [ + "pecans", + "splenda no calorie sweetener", + "whole milk", + "salted butter", + "Splenda Brown Sugar Blend", + "vanilla extract" + ] + }, + { + "id": 11455, + "cuisine": "korean", + "ingredients": [ + "flanken short ribs", + "soy sauce", + "garlic cloves", + "brown sugar", + "green onions", + "water", + "toasted sesame oil" + ] + }, + { + "id": 13529, + "cuisine": "italian", + "ingredients": [ + "milk", + "eggs", + "oil", + "dry bread crumbs", + "pitted black olives", + "gorgonzola" + ] + }, + { + "id": 47756, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken skinless thigh", + "lo mein noodles", + "crushed red pepper flakes", + "chinese rice wine", + "kosher salt", + "fresh shiitake mushrooms", + "corn starch", + "white pepper", + "green onions", + "peanut oil", + "soy sauce", + "fresh ginger", + "napa cabbage", + "toasted sesame oil" + ] + }, + { + "id": 40791, + "cuisine": "italian", + "ingredients": [ + "clams", + "garlic powder", + "heavy cream", + "dried parsley", + "green bell pepper", + "butter", + "fresh mushrooms", + "chicken broth", + "grated parmesan cheese", + "broccoli", + "pasta", + "ground black pepper", + "all-purpose flour", + "dried oregano" + ] + }, + { + "id": 42603, + "cuisine": "japanese", + "ingredients": [ + "red chili powder", + "amchur", + "seeds", + "all-purpose flour", + "sooji", + "warm water", + "garam masala", + "peas", + "cumin seed", + "fennel seeds", + "fresh coriander", + "potatoes", + "salt", + "oil", + "heeng", + "coriander seeds", + "ginger", + "green chilies" + ] + }, + { + "id": 32099, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "purple onion", + "eggplant", + "cumin seed", + "garlic paste", + "green chilies", + "cilantro", + "oil" + ] + }, + { + "id": 28897, + "cuisine": "french", + "ingredients": [ + "lamb neck", + "butter", + "olive oil", + "shallots", + "lamb racks", + "chicken stock", + "dry white wine", + "red currant jelly", + "fresh thyme", + "red wine vinegar", + "all-purpose flour" + ] + }, + { + "id": 28919, + "cuisine": "irish", + "ingredients": [ + "instant espresso powder", + "dark brown sugar", + "sugar", + "whipping cream", + "large egg whites", + "chocolate covered coffee beans", + "Irish whiskey" + ] + }, + { + "id": 21854, + "cuisine": "japanese", + "ingredients": [ + "sake", + "granulated sugar", + "heavy cream", + "orange", + "fat free ice cream", + "water", + "cooking spray", + "salt", + "brown sugar", + "sesame seeds", + "butter" + ] + }, + { + "id": 23538, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "garlic cloves", + "extra-virgin olive oil", + "dried currants", + "boneless pork loin", + "kosher salt", + "arugula" + ] + }, + { + "id": 47107, + "cuisine": "vietnamese", + "ingredients": [ + "rice stick noodles", + "sugar", + "peanuts", + "jalapeno chilies", + "mint sprigs", + "nuoc cham", + "fish sauce", + "water", + "ground black pepper", + "green onions", + "crushed red pepper flakes", + "ground meat", + "fresh basil", + "sweet chili sauce", + "thai basil", + "sliced cucumber", + "cilantro", + "corn starch", + "romaine lettuce", + "lime juice", + "Sriracha", + "coarse salt", + "garlic cloves", + "beansprouts" + ] + }, + { + "id": 6733, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "boneless skinless chicken breasts", + "grits", + "ground black pepper", + "salt", + "green onions", + "garlic cloves", + "flour", + "butter oil" + ] + }, + { + "id": 27741, + "cuisine": "thai", + "ingredients": [ + "garlic paste", + "granulated sugar", + "toasted sesame oil", + "water", + "creamy peanut butter", + "soy sauce", + "hoisin sauce", + "lime juice", + "garlic cloves" + ] + }, + { + "id": 44848, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "heavy cream", + "bacon grease", + "black pepper", + "onion powder", + "hot sauce", + "sugar", + "green onions", + "cheese", + "corn starch", + "corn", + "butter", + "creole seasoning" + ] + }, + { + "id": 10587, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "boneless skinless chicken breasts", + "jalapeno chilies", + "tortilla chips", + "shredded cheddar cheese", + "rotelle", + "green onions" + ] + }, + { + "id": 30618, + "cuisine": "mexican", + "ingredients": [ + "frozen chopped spinach", + "olive oil", + "white corn tortillas", + "ground black pepper", + "kosher salt", + "fresh basil leaves", + "fresh tomatoes", + "feta cheese" + ] + }, + { + "id": 19034, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "butter", + "taco seasoning", + "flour tortillas", + "salsa", + "olive oil", + "cilantro", + "cheddar cheese", + "chicken breast halves", + "frozen corn kernels" + ] + }, + { + "id": 37931, + "cuisine": "southern_us", + "ingredients": [ + "molasses", + "butter", + "onions", + "collard greens", + "olive oil", + "garlic cloves", + "chicken broth", + "pepper", + "salt", + "risotto", + "bacon slices" + ] + }, + { + "id": 42654, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "Mexican oregano", + "sour cream", + "chiles", + "poblano peppers", + "cilantro sprigs", + "chicken thighs", + "chicken broth", + "white hominy", + "lime wedges", + "onions", + "kosher salt", + "radishes", + "garlic cloves" + ] + }, + { + "id": 10845, + "cuisine": "italian", + "ingredients": [ + "angel hair", + "chili pepper flakes", + "fresh parsley", + "ground black pepper", + "salt", + "grated parmesan cheese", + "chopped fresh herbs", + "olive oil", + "garlic" + ] + }, + { + "id": 13282, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "yellow mustard", + "potatoes", + "pepper", + "salt", + "sweet pickle relish", + "hard-boiled egg" + ] + }, + { + "id": 21152, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "cider vinegar", + "butter", + "sour cream", + "skim milk", + "ground black pepper", + "purple onion", + "pasta", + "kosher salt", + "flour", + "hot sauce", + "cheddar cheese", + "smoked bacon", + "crumbled corn bread" + ] + }, + { + "id": 34894, + "cuisine": "french", + "ingredients": [ + "pepper", + "butter", + "asparagus spears", + "large eggs", + "salt", + "swiss cheese", + "all-purpose flour", + "milk", + "dry mustard" + ] + }, + { + "id": 294, + "cuisine": "indian", + "ingredients": [ + "semolina", + "ginger", + "cumin seed", + "red chili powder", + "flour", + "salt", + "lemon juice", + "coriander powder", + "green peas", + "oil", + "water", + "yukon gold potatoes", + "green chilies", + "onions" + ] + }, + { + "id": 24656, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "vegetable oil", + "celery", + "slivered almonds", + "bulgur wheat", + "greek style seasoning", + "raisins", + "onions", + "chicken broth", + "lamb stew meat", + "ground allspice" + ] + }, + { + "id": 6910, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "onion powder", + "purple onion", + "smoked paprika", + "black beans", + "red cabbage", + "shredded lettuce", + "frozen corn kernels", + "oregano", + "avocado", + "lime", + "lime wedges", + "cayenne pepper", + "red bell pepper", + "tilapia fillets", + "chili powder", + "garlic", + "rice", + "cumin" + ] + }, + { + "id": 36657, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "ginger", + "oil", + "clove", + "capsicum", + "salt", + "coriander powder", + "paneer", + "tomatoes", + "chili powder", + "cilantro leaves" + ] + }, + { + "id": 18270, + "cuisine": "italian", + "ingredients": [ + "pepper", + "all-purpose flour", + "fresh basil", + "diced tomatoes", + "and fat free half half", + "tomato paste", + "olive oil", + "chopped onion", + "fat free less sodium chicken broth", + "garlic" + ] + }, + { + "id": 40631, + "cuisine": "southern_us", + "ingredients": [ + "bay leaves", + "salt", + "chicken", + "unsalted butter", + "heavy cream", + "onions", + "whole milk", + "garlic", + "bisquick", + "pepper", + "parsley", + "celery" + ] + }, + { + "id": 21157, + "cuisine": "indian", + "ingredients": [ + "garlic powder", + "lemon", + "salt", + "low fat plain yoghurt", + "spices", + "paprika", + "coriander", + "dried basil", + "cinnamon", + "ginger", + "cumin", + "onion powder", + "chicken drumsticks", + "cayenne pepper" + ] + }, + { + "id": 8653, + "cuisine": "chinese", + "ingredients": [ + "salad oil", + "black bean sauce", + "fresh bean", + "corn starch", + "pork", + "onions" + ] + }, + { + "id": 39592, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "all-purpose flour", + "refrigerated biscuits", + "milk", + "rolls", + "salt" + ] + }, + { + "id": 43988, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "plain yogurt", + "lemon", + "curry paste", + "bread", + "sugar", + "butter", + "cardamom seeds", + "basmati rice", + "clove", + "red chili peppers", + "double cream", + "garlic", + "tomato purée", + "boneless chicken breast", + "sunflower oil", + "onions" + ] + }, + { + "id": 16908, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic cloves", + "olive oil", + "chicken", + "egg roll wrappers", + "ground ginger", + "slaw mix" + ] + }, + { + "id": 32685, + "cuisine": "cajun_creole", + "ingredients": [ + "onion soup mix", + "butter", + "cayenne pepper", + "red bell pepper", + "black pepper", + "boneless skinless chicken breasts", + "salt", + "sausages", + "onions", + "water", + "chile pepper", + "all-purpose flour", + "shrimp", + "green bell pepper", + "zucchini", + "crushed red pepper flakes", + "oil", + "celery" + ] + }, + { + "id": 40843, + "cuisine": "mexican", + "ingredients": [ + "beans", + "cayenne pepper", + "bay leaf", + "red chili peppers", + "coarse salt", + "beer", + "dried oregano", + "tomatoes", + "olive oil", + "chopped onion", + "ground beef", + "pickled jalapenos", + "crushed red pepper flakes", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 25681, + "cuisine": "british", + "ingredients": [ + "ground black pepper", + "Italian parsley leaves", + "garlic cloves", + "vegetable oil", + "salt", + "onions", + "sage leaves", + "red wine", + "gravy granules", + "leeks", + "ground pork", + "hot water" + ] + }, + { + "id": 48087, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "fresh lime", + "coarse salt", + "skinless chicken thighs", + "tumeric", + "ground black pepper", + "garlic", + "boiling water", + "chicken legs", + "fresh ginger", + "paprika", + "saffron powder", + "saffron threads", + "plain yogurt", + "chili powder", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 40069, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "dry white wine", + "salt", + "fresh basil", + "half & half", + "chees fresh mozzarella", + "grape tomatoes", + "leeks", + "extra-virgin olive oil", + "arborio rice", + "ground black pepper", + "balsamic vinegar" + ] + }, + { + "id": 42884, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "shallots", + "garlic cloves", + "ground cumin", + "sugar", + "cooking spray", + "salt", + "boneless skinless chicken breast halves", + "black pepper", + "peeled fresh ginger", + "ground coriander", + "serrano chile", + "tomatoes", + "olive oil", + "red wine vinegar", + "mustard seeds" + ] + }, + { + "id": 38348, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "garlic cloves", + "guajillo", + "ground cumin", + "salt", + "ground cloves", + "dried oregano" + ] + }, + { + "id": 27851, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "minced garlic", + "ground black pepper", + "yoghurt", + "lemon", + "turkey thigh", + "fresh lemon juice", + "ground cumin", + "black pepper", + "olive oil", + "bell pepper", + "balsamic vinegar", + "ginger", + "salt", + "smoked paprika", + "brown sugar", + "curry powder", + "chili paste", + "chili powder", + "diced tomatoes", + "purple onion", + "ground cardamom", + "ground ginger", + "kosher salt", + "garam masala", + "chopped fresh chives", + "ground thyme", + "apples", + "english cucumber", + "cumin" + ] + }, + { + "id": 24694, + "cuisine": "italian", + "ingredients": [ + "prego traditional italian sauce", + "italian pork sausage", + "grated parmesan cheese", + "olive oil", + "onions", + "pasta", + "red pepper" + ] + }, + { + "id": 6242, + "cuisine": "jamaican", + "ingredients": [ + "potatoes", + "onions", + "curry powder", + "garlic", + "vegetable oil", + "chicken", + "hot pepper sauce", + "salt" + ] + }, + { + "id": 40883, + "cuisine": "japanese", + "ingredients": [ + "caraway seeds", + "coriander seeds", + "baby carrots", + "cauliflower", + "water", + "rice vinegar", + "celery ribs", + "kosher salt", + "florets", + "sugar", + "shichimi togarashi", + "beets" + ] + }, + { + "id": 44330, + "cuisine": "indian", + "ingredients": [ + "butter", + "peanut butter", + "chuck", + "curry powder", + "unsalted dry roast peanuts", + "coconut milk", + "brown sugar", + "garlic", + "Thai fish sauce", + "potatoes", + "beef broth", + "onions" + ] + }, + { + "id": 11888, + "cuisine": "southern_us", + "ingredients": [ + "ham hock", + "water", + "long grain white rice", + "hot red pepper flakes", + "onions", + "black-eyed peas" + ] + }, + { + "id": 26845, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "zucchini", + "salt", + "cumin", + "water", + "paprika", + "red bell pepper", + "pepper", + "potatoes", + "garlic cloves", + "tomatoes", + "eggplant", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 17268, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "extra-virgin olive oil", + "cumin", + "ground chipotle chile pepper", + "chicken breasts", + "garlic cloves", + "lime", + "freshly ground pepper", + "kosher salt", + "onion powder", + "adobo sauce" + ] + }, + { + "id": 41712, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "ground black pepper", + "sea salt", + "waxy potatoes", + "olive oil", + "aioli", + "garlic", + "plum tomatoes", + "spanish onion", + "cayenne", + "extra-virgin olive oil", + "smoked paprika", + "mayonaise", + "sherry vinegar", + "lemon", + "hot smoked paprika", + "ground cumin" + ] + }, + { + "id": 12956, + "cuisine": "korean", + "ingredients": [ + "honey", + "red wine vinegar", + "chicken wings", + "olive oil", + "red pepper", + "soy sauce", + "sesame oil", + "garlic", + "black pepper", + "parsley" + ] + }, + { + "id": 33693, + "cuisine": "italian", + "ingredients": [ + "egg whites", + "all-purpose flour", + "eggs", + "baking powder", + "white sugar", + "chopped almonds", + "bittersweet chocolate", + "baking soda", + "salt", + "orange zest" + ] + }, + { + "id": 13117, + "cuisine": "french", + "ingredients": [ + "coarse sugar", + "unsalted butter", + "salt", + "dark brown sugar", + "large egg whites", + "golden delicious apples", + "apple juice", + "ground cinnamon", + "whole wheat flour", + "vegetable shortening", + "ground allspice", + "water", + "granulated sugar", + "all-purpose flour", + "fresh lemon juice" + ] + }, + { + "id": 48974, + "cuisine": "thai", + "ingredients": [ + "light brown sugar", + "peeled fresh ginger", + "red bell pepper", + "fish sauce", + "red curry paste", + "large shrimp", + "fresh basil", + "light coconut milk", + "fresh lime juice", + "fat free less sodium chicken broth", + "sliced mushrooms", + "sliced green onions" + ] + }, + { + "id": 33282, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "ras el hanout", + "sugar", + "canned beef broth", + "onions", + "vegetable oil spray", + "yams", + "butternut squash", + "red bell pepper" + ] + }, + { + "id": 38021, + "cuisine": "french", + "ingredients": [ + "garlic cloves", + "fine sea salt", + "extra-virgin olive oil", + "crusty bread" + ] + }, + { + "id": 10610, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "cooked chicken", + "chipotles in adobo", + "knorr chicken flavor bouillon cube", + "garlic", + "chopped cilantro fresh", + "water", + "vegetable oil", + "onions", + "flour tortillas", + "hellmann' or best food real mayonnais", + "sliced green onions" + ] + }, + { + "id": 42190, + "cuisine": "vietnamese", + "ingredients": [ + "shallots", + "chile sauce", + "sugar", + "salt", + "lemongrass", + "all-purpose flour", + "fish sauce", + "ground pork", + "canola oil" + ] + }, + { + "id": 6972, + "cuisine": "thai", + "ingredients": [ + "sugar", + "lime wedges", + "fresh lime juice", + "sesame seeds", + "dark sesame oil", + "olive oil", + "hot sauce", + "chopped cilantro fresh", + "low sodium soy sauce", + "sea scallops", + "corn starch" + ] + }, + { + "id": 33035, + "cuisine": "british", + "ingredients": [ + "chili flakes", + "mixed vegetables", + "onions", + "olive oil", + "garlic cloves", + "cherry tomatoes", + "free range egg", + "ground turmeric", + "garam masala", + "mustard seeds" + ] + }, + { + "id": 10558, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "flour", + "steak", + "chicken broth", + "milk", + "freshly ground pepper", + "pepper", + "salt", + "eggs", + "duck fat", + "oil" + ] + }, + { + "id": 16865, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "frozen chopped spinach, thawed and squeezed dry", + "pepper", + "purple onion", + "yukon gold potatoes", + "olive oil", + "salt" + ] + }, + { + "id": 22041, + "cuisine": "southern_us", + "ingredients": [ + "low sodium chicken broth", + "hot Italian sausages", + "country ham", + "diced tomatoes", + "tomato paste", + "brown rice", + "shrimp", + "chopped green bell pepper", + "chopped onion" + ] + }, + { + "id": 6917, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "jalapeno chilies", + "salt", + "eggs", + "mirin", + "cilantro", + "pork shoulder", + "brown sugar", + "zucchini", + "tamari soy sauce", + "white sugar", + "dashi", + "green onions", + "carrots" + ] + }, + { + "id": 46067, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "red pepper flakes", + "lemon wedge", + "fresh lemon juice", + "honey", + "chicken drumsticks", + "soy sauce", + "vegetable oil" + ] + }, + { + "id": 23731, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "frozen cheese ravioli", + "pasta sauce", + "shredded mozzarella cheese", + "small curd cottage cheese" + ] + }, + { + "id": 29474, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "lemon", + "ground cumin", + "pepper", + "baby arugula", + "thyme", + "pita bread", + "feta cheese", + "chickpeas", + "kosher salt", + "ground black pepper", + "spanish paprika" + ] + }, + { + "id": 42021, + "cuisine": "vietnamese", + "ingredients": [ + "minced garlic", + "pork tenderloin", + "lettuce leaves", + "rice vermicelli", + "rice vinegar", + "beansprouts", + "fish sauce", + "lower sodium soy sauce", + "cooking spray", + "ginger", + "unsalted dry roast peanuts", + "garlic cloves", + "canola oil", + "lemongrass", + "mint leaves", + "shallots", + "thai chile", + "english cucumber", + "serrano chile", + "sugar", + "ground black pepper", + "basil leaves", + "grated carrot", + "cilantro leaves", + "fresh lemon juice" + ] + }, + { + "id": 15863, + "cuisine": "indian", + "ingredients": [ + "chicken legs", + "nonfat yogurt", + "cilantro sprigs", + "ground cardamom", + "minced garlic", + "paprika", + "salt", + "raita", + "ground cinnamon", + "ground black pepper", + "ginger", + "ground coriander", + "ground cumin", + "ground cloves", + "lemon", + "purple onion", + "onions" + ] + }, + { + "id": 13790, + "cuisine": "filipino", + "ingredients": [ + "lime juice", + "green onions", + "boneless skinless chicken breast halves", + "olive oil", + "fresh oregano", + "fresh cilantro", + "salt", + "ground cumin", + "pepper", + "fresh thyme", + "garlic cloves" + ] + }, + { + "id": 8161, + "cuisine": "mexican", + "ingredients": [ + "textured soy protein", + "boiling water", + "cooking spray", + "onions", + "Mexican cheese blend", + "chipotles in adobo", + "tomatoes", + "garlic", + "ground cumin" + ] + }, + { + "id": 16208, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "sour cream", + "frozen potatoes", + "Old El Paso Taco Seasoning Mix", + "guacamole", + "ground beef", + "water", + "shredded lettuce", + "chunky salsa" + ] + }, + { + "id": 34488, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "kosher salt", + "duck fat", + "garlic cloves", + "bread and butter pickle slices", + "whole grain mustard", + "fresh thyme leaves", + "pork butt", + "white wine", + "ground black pepper", + "crushed red pepper", + "chicken stock", + "baguette", + "bay leaves", + "onions" + ] + }, + { + "id": 43898, + "cuisine": "italian", + "ingredients": [ + "amaretto", + "orange liqueur", + "lime slices", + "confectioners sugar", + "orange slices", + "crushed ice", + "sweet and sour mix", + "tequila" + ] + }, + { + "id": 40133, + "cuisine": "indian", + "ingredients": [ + "strawberry syrup", + "strawberries", + "(14 oz.) sweetened condensed milk", + "evaporated milk", + "whipping cream", + "unsalted roasted pistachios", + "ground cardamom" + ] + }, + { + "id": 4681, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "whipping cream", + "blackberries", + "egg yolks", + "salt", + "milk", + "vanilla extract", + "mint sprigs", + "all-purpose flour" + ] + }, + { + "id": 13879, + "cuisine": "russian", + "ingredients": [ + "ground black pepper", + "filet", + "fresh coriander", + "lemon", + "onions", + "fresh basil", + "red wine vinegar", + "scallions", + "dried basil", + "salt" + ] + }, + { + "id": 8019, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "fresh lime juice", + "garlic cloves", + "avocado", + "chopped cilantro fresh" + ] + }, + { + "id": 46541, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "coriander powder", + "butter", + "curry", + "ground turmeric", + "tomato purée", + "honey", + "marinade", + "paprika", + "oil", + "lime juice", + "chicken breasts", + "heavy cream", + "salt", + "ground cumin", + "garlic paste", + "garam masala", + "spices", + "cilantro", + "methi" + ] + }, + { + "id": 39443, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "white wine vinegar", + "fresh lemon juice", + "water", + "extra-virgin olive oil", + "garlic cloves", + "black peppercorns", + "boneless skinless chicken breasts", + "salt", + "white bread", + "cooking spray", + "crushed red pepper", + "fresh mint" + ] + }, + { + "id": 30759, + "cuisine": "cajun_creole", + "ingredients": [ + "fat free yogurt", + "ground red pepper", + "salt", + "ground cumin", + "capers", + "olive oil", + "paprika", + "fresh lime juice", + "black pepper", + "low-fat mayonnaise", + "ground coriander", + "lime rind", + "garlic powder", + "cilantro sprigs", + "large shrimp" + ] + }, + { + "id": 17794, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "cooking spray", + "celery", + "cabbage", + "ground black pepper", + "ginger", + "spaghetti", + "water", + "vegetable oil", + "onions", + "reduced sodium soy sauce", + "garlic", + "cooked chicken breasts" + ] + }, + { + "id": 8851, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "salt", + "fresh lemon juice", + "chopped garlic", + "water", + "cooking oil", + "cayenne pepper", + "onions", + "fresh coriander", + "garam masala", + "natural yogurt", + "fillets", + "ground cumin", + "curry powder", + "passata", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 32203, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "bay leaves", + "salt", + "whole kernel corn, drain", + "chopped cilantro fresh", + "tomato paste", + "ground black pepper", + "lime wedges", + "turkey tenderloins", + "garlic cloves", + "ground cumin", + "fat free less sodium chicken broth", + "chopped green bell pepper", + "diced tomatoes", + "chopped onion", + "pinto beans", + "avocado", + "olive oil", + "chili powder", + "all-purpose flour", + "baked tortilla chips", + "serrano chile" + ] + }, + { + "id": 31992, + "cuisine": "french", + "ingredients": [ + "greek seasoning", + "unsalted butter", + "pepper", + "lemon slices", + "olive oil", + "yellow onion", + "salmon fillets", + "salt" + ] + }, + { + "id": 8569, + "cuisine": "cajun_creole", + "ingredients": [ + "red potato", + "ground pepper", + "green onions", + "worcestershire sauce", + "salt", + "ears", + "ketchup", + "ground black pepper", + "lemon", + "artichokes", + "creole seasoning", + "flat leaf parsley", + "mustard", + "kosher salt", + "asparagus", + "yellow mustard", + "shells", + "liquid", + "celery", + "andouille sausage", + "prepared horseradish", + "vegetable oil", + "garlic", + "yellow onion", + "shrimp" + ] + }, + { + "id": 25338, + "cuisine": "british", + "ingredients": [ + "parsnips", + "unsalted butter", + "yellow onion", + "olive oil", + "russet potatoes", + "kosher salt", + "chives", + "carrots", + "brussels sprouts", + "ground black pepper", + "heavy cream" + ] + }, + { + "id": 25185, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "egg whites", + "purple onion", + "juice", + "coriander", + "spring roll wrappers", + "fresh ginger root", + "sesame oil", + "chili sauce", + "beansprouts", + "celery root", + "soy sauce", + "parsley leaves", + "vegetable oil", + "garlic cloves", + "celery", + "fresh red chili", + "sesame seeds", + "leeks", + "rice vinegar", + "carrots", + "yellow peppers" + ] + }, + { + "id": 43618, + "cuisine": "southern_us", + "ingredients": [ + "liquid smoke", + "black pepper", + "whole grain dijon mustard", + "sea salt", + "ketchup", + "honey", + "onion powder", + "sauce", + "molasses", + "garlic powder", + "worcestershire sauce", + "apple juice", + "pork baby back ribs", + "water", + "bourbon whiskey", + "salt" + ] + }, + { + "id": 21781, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "chicken", + "kosher salt", + "butter", + "chopped cilantro fresh", + "shallots", + "fresh lemon juice", + "fresh ginger", + "extra-virgin olive oil", + "piri-piri sauce" + ] + }, + { + "id": 27244, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "onions", + "instant rice", + "chili powder", + "canola oil", + "green bell pepper", + "whole peeled tomatoes", + "boneless skinless chicken breast halves", + "water", + "onion powder" + ] + }, + { + "id": 36105, + "cuisine": "vietnamese", + "ingredients": [ + "dressing", + "lime juice", + "green onions", + "carrots", + "fresh basil", + "Sriracha", + "peanut butter", + "toasted sesame oil", + "brown sugar", + "extra firm tofu", + "garlic chili sauce", + "noodles", + "low sodium soy sauce", + "fresh ginger", + "rice noodles", + "hot water" + ] + }, + { + "id": 30780, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "tahini", + "cheese", + "tortilla chips", + "lime", + "green onions", + "purple onion", + "sweet chili sauce", + "bell pepper", + "garlic", + "carrots", + "fish sauce", + "fresh ginger", + "cilantro", + "edamame" + ] + }, + { + "id": 42824, + "cuisine": "chinese", + "ingredients": [ + "neutral oil", + "baking soda", + "bell pepper", + "sesame oil", + "rice flour", + "tomatoes", + "kosher salt", + "large eggs", + "sherry", + "rice vinegar", + "onions", + "ketchup", + "ground black pepper", + "pork tenderloin", + "pineapple", + "corn starch", + "low sodium soy sauce", + "water", + "egg whites", + "splenda", + "garlic cloves" + ] + }, + { + "id": 34684, + "cuisine": "french", + "ingredients": [ + "clove", + "horseradish", + "bay leaves", + "ham hock", + "thick-cut bacon", + "red potato", + "juniper berries", + "brats", + "fresh parsley", + "mustard", + "red delicious apples", + "pinot blanc", + "knockwurst", + "allspice", + "black peppercorns", + "sauerkraut", + "kielbasa", + "onions" + ] + }, + { + "id": 10667, + "cuisine": "vietnamese", + "ingredients": [ + "romaine lettuce", + "fresh ginger", + "shallots", + "freshly ground pepper", + "fresh mint", + "fresh cilantro", + "green onions", + "purple onion", + "carrots", + "asian fish sauce", + "soy sauce", + "bibb lettuce", + "thai chile", + "garlic cloves", + "toasted sesame oil", + "fresh basil", + "lime", + "flank steak", + "salt", + "cucumber", + "glass noodles" + ] + }, + { + "id": 15907, + "cuisine": "moroccan", + "ingredients": [ + "fat free less sodium chicken broth", + "crushed red pepper", + "ground cardamom", + "onions", + "pitted date", + "cooking spray", + "garlic cloves", + "couscous", + "ground ginger", + "orange", + "salt", + "leg of lamb", + "chopped cilantro fresh", + "slivered almonds", + "olive oil", + "ground coriander", + "cinnamon sticks", + "ground cumin" + ] + }, + { + "id": 20305, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "jalapeno chilies", + "garlic", + "red bell pepper", + "chile paste", + "flank steak", + "yellow onion", + "brown sugar", + "sherry", + "cilantro leaves", + "canola oil", + "fresh ginger", + "red pepper flakes", + "corn starch" + ] + }, + { + "id": 45467, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "chile paste", + "rice vinegar", + "red bell pepper", + "low sodium soy sauce", + "ketchup", + "green onions", + "garlic cloves", + "canola oil", + "diced onions", + "brown sugar", + "peeled fresh ginger", + "dark sesame oil", + "fresh pineapple", + "dark soy sauce", + "fat free less sodium chicken broth", + "boneless skinless chicken breasts", + "corn starch" + ] + }, + { + "id": 40583, + "cuisine": "vietnamese", + "ingredients": [ + "meat", + "frozen banana leaf" + ] + }, + { + "id": 19314, + "cuisine": "russian", + "ingredients": [ + "sugar", + "unsalted butter", + "salt", + "cream cheese", + "powdered sugar", + "large egg yolks", + "vanilla extract", + "farmer cheese", + "honey", + "large eggs", + "all-purpose flour", + "orange juice", + "rhubarb", + "vegetable oil spray", + "whole milk", + "strawberries", + "ground cardamom" + ] + }, + { + "id": 13014, + "cuisine": "brazilian", + "ingredients": [ + "black beans", + "parsley", + "bay leaf", + "olive oil", + "salt", + "pepper", + "worcestershire sauce", + "chicken broth", + "shallots", + "garlic cloves" + ] + }, + { + "id": 36827, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "sugar", + "apricots", + "ice cubes", + "cachaca", + "water" + ] + }, + { + "id": 28210, + "cuisine": "mexican", + "ingredients": [ + "water", + "garlic cloves", + "long grain white rice", + "boneless skinless chicken breasts", + "onions", + "ground cumin", + "poblano peppers", + "enchilada sauce", + "canola oil", + "fresh leav spinach", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 8251, + "cuisine": "mexican", + "ingredients": [ + "ground beef", + "flour tortillas", + "monterey jack", + "prepar salsa" + ] + }, + { + "id": 24534, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "chopped cilantro", + "spaghetti squash", + "large eggs", + "cheddar cheese", + "mexican chorizo" + ] + }, + { + "id": 40969, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "ground beef", + "tomatoes", + "shredded mozzarella cheese", + "lettuce", + "garlic", + "sliced green onions", + "Wish-Bone Italian Dressing", + "hoagi or roll" + ] + }, + { + "id": 24112, + "cuisine": "italian", + "ingredients": [ + "shiitake", + "large garlic cloves", + "salt", + "pasta", + "vegetable stock", + "peas", + "baby zucchini", + "leeks", + "basil", + "white beans", + "italian tomatoes", + "wax beans", + "extra-virgin olive oil", + "freshly ground pepper" + ] + }, + { + "id": 11339, + "cuisine": "indian", + "ingredients": [ + "milk", + "bay leaves", + "purple onion", + "brown cardamom", + "red chili powder", + "garam masala", + "kasuri methi", + "all-purpose flour", + "ghee", + "black peppercorns", + "amchur", + "ginger", + "salt", + "dried chile", + "cottage cheese", + "coriander powder", + "garlic", + "green cardamom", + "cumin" + ] + }, + { + "id": 4774, + "cuisine": "spanish", + "ingredients": [ + "tumeric", + "salt", + "onions", + "tomatoes", + "olive oil", + "garlic cloves", + "saffron", + "black pepper", + "long-grain rice", + "boneless skinless chicken breast halves", + "green bell pepper", + "smoked sausage", + "shrimp" + ] + }, + { + "id": 47244, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "all-purpose flour", + "milk", + "buttermilk", + "whole wheat flour", + "salt", + "vegetable oil", + "white sugar" + ] + }, + { + "id": 42987, + "cuisine": "moroccan", + "ingredients": [ + "cauliflower", + "chopped tomatoes", + "sweet potatoes", + "paprika", + "chickpeas", + "red chili peppers", + "dried apricot", + "red pepper", + "salt", + "ground cumin", + "eggplant", + "harissa paste", + "raisins", + "cayenne pepper", + "ground ginger", + "zucchini", + "vegetable stock", + "garlic", + "onions" + ] + }, + { + "id": 40349, + "cuisine": "southern_us", + "ingredients": [ + "shiitake", + "dry white wine", + "salt", + "sliced green onions", + "water", + "fresh thyme", + "butter", + "shrimp", + "smoked bacon", + "whole milk", + "garlic", + "grits", + "warm water", + "salted butter", + "shallots", + "freshly ground pepper" + ] + }, + { + "id": 40016, + "cuisine": "french", + "ingredients": [ + "mussels", + "sea scallops", + "dry white wine", + "chopped parsley", + "halibut fillets", + "leeks", + "butter", + "onions", + "large egg yolks", + "bay leaves", + "crème fraîche", + "parsley sprigs", + "fennel bulb", + "clam juice", + "thyme sprigs" + ] + }, + { + "id": 21046, + "cuisine": "chinese", + "ingredients": [ + "peeled fresh ginger", + "noodles", + "hoisin sauce", + "salt", + "water", + "green onions", + "five-spice powder", + "pork tenderloin", + "peanut oil" + ] + }, + { + "id": 13052, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "olive oil", + "salt", + "minced garlic", + "cracked black pepper", + "sugar", + "basil", + "dried oregano", + "crushed tomatoes", + "crushed red pepper" + ] + }, + { + "id": 17893, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "plain yogurt", + "coriander powder", + "ghee", + "ground cumin", + "tumeric", + "garam masala", + "chili powder", + "chicken thighs", + "garlic paste", + "pepper", + "cassia cinnamon", + "onions", + "sliced almonds", + "ground cashew", + "salt", + "coriander" + ] + }, + { + "id": 13148, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "flank steak", + "broccoli", + "toasted sesame oil", + "fresh ginger", + "garlic", + "oyster sauce", + "water", + "vegetable oil", + "scallions", + "light brown sugar", + "low sodium chicken broth", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 22401, + "cuisine": "mexican", + "ingredients": [ + "chicken bouillon", + "jalapeno chilies", + "black olives", + "bay leaf", + "water", + "extra-virgin olive oil", + "blanched almonds", + "chicken", + "black pepper", + "chile pepper", + "salt", + "onions", + "capers", + "sesame seeds", + "garlic", + "celery" + ] + }, + { + "id": 25239, + "cuisine": "thai", + "ingredients": [ + "sugar", + "fresh ginger", + "purple onion", + "red bell pepper", + "tomatoes", + "pepper", + "cooking oil", + "chili sauce", + "soy sauce", + "pork chops", + "salt", + "coconut milk", + "fish sauce", + "lime juice", + "cilantro", + "garlic cloves" + ] + }, + { + "id": 30981, + "cuisine": "italian", + "ingredients": [ + "sugar", + "asiago", + "chopped onion", + "tomato sauce", + "olive oil", + "salt", + "fresh parsley", + "fresh basil", + "black pepper", + "diced tomatoes", + "garlic cloves", + "penne", + "ground turkey breast", + "fresh oregano" + ] + }, + { + "id": 17661, + "cuisine": "russian", + "ingredients": [ + "fish fillets", + "water", + "sea salt", + "fresh parsley", + "reduced sodium vegetable broth", + "potatoes", + "shrimp", + "celery stick", + "olive oil", + "carrots", + "onions", + "pepper", + "bay leaves", + "Mrs. Dash" + ] + }, + { + "id": 5795, + "cuisine": "indian", + "ingredients": [ + "lime", + "cardamon", + "cilantro", + "cayenne pepper", + "basmati rice", + "ground cinnamon", + "ground black pepper", + "boneless skinless chicken breasts", + "garlic", + "greek yogurt", + "ground cumin", + "tomato paste", + "garam masala", + "whole peeled tomatoes", + "ginger", + "ground coriander", + "ground turmeric", + "kosher salt", + "cayenne", + "heavy cream", + "yellow onion", + "ghee" + ] + }, + { + "id": 49445, + "cuisine": "southern_us", + "ingredients": [ + "cream of chicken soup", + "chicken broth", + "frozen peas and carrots", + "cooked chicken", + "refrigerated buttermilk biscuits" + ] + }, + { + "id": 23474, + "cuisine": "cajun_creole", + "ingredients": [ + "black-eyed peas", + "lean ground beef", + "ground black pepper", + "onions", + "garlic powder", + "creole seasoning", + "water", + "chopped green bell pepper", + "long grain white rice" + ] + }, + { + "id": 36745, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "yoghurt", + "rice", + "sirloin", + "water", + "currant", + "onions", + "ground ginger", + "minced garlic", + "vegetable oil", + "ground cayenne pepper", + "slivered almonds", + "curry powder", + "vegetable broth", + "ground cumin" + ] + }, + { + "id": 44827, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "Thai fish sauce", + "lime juice", + "sugar", + "garlic cloves", + "water", + "dried shrimp" + ] + }, + { + "id": 23235, + "cuisine": "russian", + "ingredients": [ + "chicken broth", + "ground black pepper", + "potato flakes", + "celery", + "white kidney beans", + "soy sauce", + "garlic", + "red bell pepper", + "onions", + "white vinegar", + "water", + "beets", + "chicken-flavored soup powder", + "white sugar", + "green bell pepper", + "potatoes", + "carrots", + "dill weed" + ] + }, + { + "id": 6945, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "tomato sauce", + "candied jalapeno", + "cayenne", + "cilantro", + "red bell pepper", + "chicken", + "chicken broth", + "white onion", + "olive oil", + "onion powder", + "purple onion", + "polenta", + "tomato paste", + "black beans", + "corn", + "chili powder", + "white cheddar cheese", + "yellow peppers", + "green bell pepper", + "pepper", + "garlic powder", + "paprika", + "salt", + "cumin" + ] + }, + { + "id": 48417, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "molasses", + "cooking spray", + "chopped onion", + "marjoram", + "saffron", + "ground cloves", + "cherry tomatoes", + "salt", + "fresh lime juice", + "dried oregano", + "chiles", + "fresh cilantro", + "watercress", + "ancho chile pepper", + "plum tomatoes", + "jumbo shrimp", + "fat free yogurt", + "chili powder", + "garlic cloves", + "boiling water", + "ground cumin" + ] + }, + { + "id": 5054, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "parmesan cheese", + "extra-virgin olive oil", + "freshly ground pepper", + "borlotti beans", + "savoy cabbage", + "kale", + "large garlic cloves", + "chickpeas", + "thyme sprigs", + "pancetta", + "italian tomatoes", + "leeks", + "salt", + "carrots", + "onions", + "celery ribs", + "water", + "bay leaves", + "hot sauce", + "green beans", + "sage" + ] + }, + { + "id": 48086, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "olive oil", + "tomato salsa", + "black olives", + "onions", + "crab", + "jalapeno chilies", + "worcestershire sauce", + "(10 oz.) frozen chopped spinach, thawed and squeezed dry", + "jack cheese", + "cayenne", + "whole wheat tortillas", + "salt", + "pepper", + "chili powder", + "garlic", + "flat leaf parsley" + ] + }, + { + "id": 47362, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "crushed tomatoes", + "onion powder", + "sausage links", + "whole peeled tomatoes", + "white sugar", + "tomato sauce", + "garlic powder", + "onions", + "hoagie buns", + "grated parmesan cheese", + "italian seasoning" + ] + }, + { + "id": 18222, + "cuisine": "italian", + "ingredients": [ + "milk", + "cooked chicken", + "vegetables", + "spaghetti", + "garlic powder", + "condensed cream of mushroom soup", + "grated parmesan cheese" + ] + }, + { + "id": 44127, + "cuisine": "greek", + "ingredients": [ + "beet greens", + "feta cheese crumbles", + "olive oil", + "fresh lemon juice", + "pepper", + "dried oregano" + ] + }, + { + "id": 29790, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "salt", + "tri-tip roast", + "honey", + "dry red wine", + "water", + "dry mustard", + "baby portobello mushrooms", + "olive oil", + "garlic" + ] + }, + { + "id": 27093, + "cuisine": "southern_us", + "ingredients": [ + "rum", + "brown sugar", + "butter", + "ground cinnamon", + "banana liqueur", + "bananas", + "lemon juice" + ] + }, + { + "id": 18006, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "sugar", + "vanilla", + "blanched almonds", + "grapes", + "salt", + "large eggs", + "cognac" + ] + }, + { + "id": 1962, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "kosher salt", + "boneless skinless chicken breasts", + "tomatoes", + "ground black pepper", + "eggplant", + "extra-virgin olive oil" + ] + }, + { + "id": 16472, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "chili powder", + "salt", + "beer", + "cheddar cheese", + "pepper", + "shredded lettuce", + "cayenne pepper", + "greek yogurt", + "avocado", + "boneless, skinless chicken breast", + "onion powder", + "salsa", + "smoked paprika", + "black beans", + "garlic powder", + "cilantro", + "chopped onion", + "cumin" + ] + }, + { + "id": 20529, + "cuisine": "mexican", + "ingredients": [ + "pickled jalapenos", + "low sodium chicken broth", + "cilantro", + "cumin", + "cotija", + "jalapeno chilies", + "vegetable oil", + "corn tortillas", + "tomatoes", + "crema mexican", + "radish slices", + "salt", + "avocado", + "white onion", + "cooked chicken", + "garlic" + ] + }, + { + "id": 8943, + "cuisine": "cajun_creole", + "ingredients": [ + "black-eyed peas", + "cilantro", + "corn kernels", + "cajun seasoning", + "celery", + "ketchup", + "fully cooked ham", + "sour cream", + "hot pepper sauce", + "purple onion" + ] + }, + { + "id": 20870, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "tomatillos", + "goat cheese", + "serrano chile", + "ground black pepper", + "garlic", + "onions", + "fresca", + "sea salt", + "mexican chorizo", + "avocado", + "vegetable oil", + "capellini", + "chopped cilantro fresh" + ] + }, + { + "id": 10877, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "bird chile", + "shredded carrots", + "warm water", + "fresh lime juice", + "fish sauce", + "garlic" + ] + }, + { + "id": 49482, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "kosher salt", + "baking powder", + "cream cheese", + "southern comfort", + "unsalted butter", + "cake flour", + "coconut oil", + "vegetable oil spray", + "buttermilk", + "unsweetened shredded dried coconut", + "sugar", + "large eggs", + "coconut chips" + ] + }, + { + "id": 15513, + "cuisine": "italian", + "ingredients": [ + "salt", + "boiling potatoes", + "black pepper", + "fresh lemon juice", + "anchovy fillets", + "chopped garlic", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 5211, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "tea bags", + "boiling water" + ] + }, + { + "id": 16455, + "cuisine": "italian", + "ingredients": [ + "cranberry beans", + "red wine vinegar", + "freshly ground pepper", + "pasta", + "water", + "extra-virgin olive oil", + "flat leaf parsley", + "string beans", + "large garlic cloves", + "green beans", + "chicken stock", + "grated parmesan cheese", + "salt", + "onions" + ] + }, + { + "id": 32996, + "cuisine": "japanese", + "ingredients": [ + "water", + "worcestershire sauce", + "pork bones", + "brisket", + "spring onions", + "garlic cloves", + "soy sauce", + "mirin", + "ginger", + "shredded coconut", + "ramen noodles", + "beansprouts" + ] + }, + { + "id": 39111, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "varnish clams", + "extra-virgin olive oil", + "shrimp", + "mussels", + "squid", + "flat leaf parsley", + "ground black pepper", + "lemon juice", + "ice" + ] + }, + { + "id": 6544, + "cuisine": "indian", + "ingredients": [ + "korma paste", + "boneless skinless chicken breasts", + "greek yogurt", + "chicken stock", + "ground almonds", + "coriander", + "golden caster sugar", + "ginger", + "onions", + "sultana", + "garlic cloves" + ] + }, + { + "id": 16427, + "cuisine": "mexican", + "ingredients": [ + "crab", + "red pepper", + "corn tortillas", + "cheddar cheese", + "water", + "salt", + "onions", + "jack cheese", + "grapeseed oil", + "medium salsa", + "cream", + "garlic", + "chopped cilantro" + ] + }, + { + "id": 38009, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "fresh orange juice", + "thyme sprigs", + "lime rind", + "cooking spray", + "grated lemon zest", + "dried thyme", + "passion fruit", + "fresh lemon juice", + "sugar", + "french bread", + "cheese" + ] + }, + { + "id": 31276, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon rind", + "black pepper", + "cooking spray", + "flat leaf parsley", + "minced garlic", + "salt", + "asparagus", + "fresh lemon juice" + ] + }, + { + "id": 23321, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "okra", + "scallion greens", + "chicken drumsticks", + "chicken thighs", + "celery ribs", + "vegetable oil", + "onions", + "chicken broth", + "hot sauce", + "pork sausages" + ] + }, + { + "id": 20899, + "cuisine": "mexican", + "ingredients": [ + "pectin", + "chopped onion", + "ground cumin", + "lime zest", + "garlic", + "chopped cilantro fresh", + "white vinegar", + "jalapeno chilies", + "white sugar", + "peaches", + "red bell pepper" + ] + }, + { + "id": 46105, + "cuisine": "french", + "ingredients": [ + "baking apples", + "vegetable oil", + "sugar", + "calvados", + "organic butter", + "ground cinnamon", + "baking soda", + "all-purpose flour", + "plain yogurt", + "large eggs" + ] + }, + { + "id": 46071, + "cuisine": "irish", + "ingredients": [ + "beef brisket", + "water", + "sour cream", + "pickling spices", + "small red potato", + "prepared horseradish", + "cabbage" + ] + }, + { + "id": 43580, + "cuisine": "japanese", + "ingredients": [ + "honey", + "green onions", + "dark sesame oil", + "cremini mushrooms", + "white miso", + "rice vinegar", + "canola oil", + "low sodium soy sauce", + "sesame seeds", + "ginger", + "snow peas", + "minced garlic", + "extra firm tofu", + "soba noodles" + ] + }, + { + "id": 31301, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "fresh lemon", + "cilantro leaves", + "coconut milk", + "fish", + "pepper", + "curry", + "oil", + "ground turmeric", + "grated coconut", + "chili powder", + "green chilies", + "onions", + "ground cumin", + "coriander powder", + "salt", + "garlic cloves", + "masala" + ] + }, + { + "id": 5674, + "cuisine": "mexican", + "ingredients": [ + "enchilada sauce", + "corn tortillas", + "Mexican cheese", + "zucchini", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 41241, + "cuisine": "chinese", + "ingredients": [ + "egg roll wrappers", + "oil", + "fresh cilantro", + "chicken breasts", + "bamboo shoots", + "peanuts", + "grated carrot", + "romaine lettuce", + "green onions", + "Soy Vay® Toasted Sesame Dressing & Marinade" + ] + }, + { + "id": 13872, + "cuisine": "french", + "ingredients": [ + "beef stock", + "black peppercorns", + "cracked black pepper", + "olive oil", + "new york strip steaks", + "jack daniels", + "heavy cream" + ] + }, + { + "id": 28617, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "onions", + "green chilies", + "salt", + "potatoes", + "wheat flour" + ] + }, + { + "id": 42477, + "cuisine": "french", + "ingredients": [ + "ice water", + "large egg yolks", + "unsalted butter", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 30274, + "cuisine": "russian", + "ingredients": [ + "brussels sprouts", + "caraway seeds", + "extra-virgin olive oil" + ] + }, + { + "id": 39942, + "cuisine": "moroccan", + "ingredients": [ + "pitted black olives", + "olive oil", + "chickpeas", + "bay leaf", + "ground cumin", + "black peppercorns", + "fresh coriander", + "cinnamon", + "cumin seed", + "coriander", + "figs", + "vegetable stock", + "green chilies", + "onions", + "spinach", + "orange", + "salt", + "black mustard seeds", + "chopped garlic" + ] + }, + { + "id": 22167, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "purple onion", + "fresh rosemary", + "balsamic vinegar", + "all-purpose flour", + "olive oil", + "salt", + "semolina flour", + "crushed red pepper flakes", + "gorgonzola" + ] + }, + { + "id": 1242, + "cuisine": "southern_us", + "ingredients": [ + "pancetta", + "freshly ground pepper", + "water", + "collard greens", + "canola oil", + "red pepper flakes" + ] + }, + { + "id": 36350, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "carrots", + "cabbage", + "salt", + "ground turmeric", + "ground cumin", + "vegetable oil", + "gram flour", + "chicken", + "fresh coriander", + "ground coriander", + "masala" + ] + }, + { + "id": 49571, + "cuisine": "mexican", + "ingredients": [ + "water", + "salt", + "green chile", + "meat seasoning", + "carrots", + "tomatoes", + "potatoes", + "yellow onion", + "pepper", + "beef stew meat", + "celery" + ] + }, + { + "id": 13784, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "tomatoes", + "whole wheat thin italian pizza crust", + "pepperoni slices" + ] + }, + { + "id": 27256, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "chopped walnuts", + "fat free less sodium chicken broth", + "extra-virgin olive oil", + "fresh parmesan cheese", + "salt", + "basil leaves", + "garlic cloves" + ] + }, + { + "id": 21179, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "poppy seeds", + "cornmeal", + "water", + "cooking spray", + "mustard seeds", + "sesame seeds", + "extra-virgin olive oil", + "bread flour", + "warm water", + "dry yeast", + "salt" + ] + }, + { + "id": 27070, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "steak", + "chestnuts", + "fennel bulb", + "Bordelaise sauce", + "unsalted butter", + "leaves" + ] + }, + { + "id": 35454, + "cuisine": "indian", + "ingredients": [ + "chili flakes", + "nonfat yogurt", + "purple onion", + "fresh ginger", + "shredded carrots", + "english cucumber", + "ground pepper", + "vegetable oil", + "basmati rice", + "granny smith apples", + "zucchini", + "salt" + ] + }, + { + "id": 35712, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "carrots", + "salt", + "daikon", + "sugar", + "rice vinegar" + ] + }, + { + "id": 6002, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "salsa verde", + "green chile", + "salad oil", + "eggs", + "salt", + "jack cheese", + "corn tortillas" + ] + }, + { + "id": 45551, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "basil leaves", + "pepper", + "fresh mozzarella", + "olive oil", + "sea salt", + "quinoa" + ] + }, + { + "id": 24021, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "ground nutmeg", + "chicken breasts", + "salt", + "cucumber", + "ground cinnamon", + "cider vinegar", + "dijon mustard", + "hot pepper", + "ground allspice", + "onions", + "mayonaise", + "water", + "cooking oil", + "fresh thyme leaves", + "scallions", + "chopped garlic", + "soy sauce", + "ground black pepper", + "apple cider vinegar", + "cayenne pepper", + "sour cream" + ] + }, + { + "id": 18564, + "cuisine": "indian", + "ingredients": [ + "salted cashews", + "vegetable stock", + "basmati rice", + "frozen vegetables", + "curry paste", + "raisins" + ] + }, + { + "id": 49056, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "raisins", + "corn tortillas", + "minced garlic", + "salt", + "chopped cilantro fresh", + "slivered almonds", + "diced tomatoes", + "chipotle chile powder", + "avocado", + "ground turkey breast", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 5937, + "cuisine": "italian", + "ingredients": [ + "yellow squash", + "fresh thyme", + "red bell pepper", + "tomato purée", + "eggplant", + "salt", + "oregano", + "olive oil", + "crushed red pepper flakes", + "onions", + "pepper", + "zucchini", + "garlic cloves" + ] + }, + { + "id": 47188, + "cuisine": "italian", + "ingredients": [ + "butter", + "purple onion", + "cooked chicken breasts", + "roma tomatoes", + "heavy cream", + "bow-tie pasta", + "Alfredo sauce", + "bacon", + "garlic salt", + "ground black pepper", + "asiago", + "salt", + "chopped garlic" + ] + }, + { + "id": 47842, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "ground black pepper", + "butter", + "cayenne pepper", + "shredded Monterey Jack cheese", + "diced onions", + "chopped green chilies", + "chili powder", + "salt", + "sour cream", + "water", + "flour tortillas", + "garlic", + "oil", + "ground cumin", + "chicken bouillon", + "garlic powder", + "onion powder", + "all-purpose flour", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 37411, + "cuisine": "irish", + "ingredients": [ + "dressing", + "beets", + "Boston lettuce", + "cucumber", + "reduced fat sharp cheddar cheese", + "diced celery", + "diced onions", + "large eggs" + ] + }, + { + "id": 40507, + "cuisine": "thai", + "ingredients": [ + "eggplant", + "vegetable oil", + "oil", + "chicken broth", + "basil leaves", + "garlic", + "palm sugar", + "thai chile", + "soy sauce", + "chicken breasts", + "patis" + ] + }, + { + "id": 6339, + "cuisine": "italian", + "ingredients": [ + "hazelnuts", + "baking powder", + "unsalted butter", + "all-purpose flour", + "sugar", + "Nutella", + "bittersweet chocolate", + "milk chocolate", + "large eggs" + ] + }, + { + "id": 8614, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "ground black pepper", + "chopped fresh thyme", + "hot sauce", + "low salt chicken broth", + "celery ribs", + "kosher salt", + "bay leaves", + "paprika", + "okra", + "chopped garlic", + "green bell pepper", + "steamed rice", + "vegetable oil", + "all-purpose flour", + "scallions", + "boneless chicken skinless thigh", + "file powder", + "worcestershire sauce", + "cayenne pepper", + "onions" + ] + }, + { + "id": 42702, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "flour", + "soybean paste", + "dark soy sauce", + "pork rind", + "ginger", + "chinese black vinegar", + "kosher salt", + "sesame oil", + "ground white pepper", + "pork belly", + "napa cabbage leaves", + "scallions" + ] + }, + { + "id": 29967, + "cuisine": "french", + "ingredients": [ + "bread crumb fresh", + "whole milk", + "shelled pistachios", + "finely chopped onion", + "ground veal", + "thyme leaves", + "prunes", + "large eggs", + "ground pork", + "flat leaf parsley", + "olive oil", + "large garlic cloves", + "chicken livers" + ] + }, + { + "id": 47748, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "flour", + "napa cabbage", + "eggs", + "minced ginger", + "rice wine", + "corn starch", + "chicken broth", + "white pepper", + "green onions", + "ground pork", + "soy sauce", + "water chestnuts", + "sesame oil" + ] + }, + { + "id": 30965, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "anchovy fillets", + "romaine lettuce", + "grated parmesan cheese", + "fresh lemon juice", + "mayonaise", + "worcestershire sauce", + "bread", + "dijon mustard", + "garlic cloves" + ] + }, + { + "id": 36660, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "rice flour", + "taro", + "oyster-flavor sauc", + "bacon", + "dried shrimp", + "dried scallops", + "salt", + "dried mushrooms" + ] + }, + { + "id": 32177, + "cuisine": "french", + "ingredients": [ + "mushrooms", + "Burgundy wine", + "herbs", + "egg noodles, cooked and drained", + "condensed cream of mushroom soup", + "beef roast", + "beef bouillon", + "chopped onion" + ] + }, + { + "id": 47363, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "dark molasses", + "garlic powder", + "worcestershire sauce", + "flavoring", + "brown sugar", + "water", + "onion powder", + "cracked black pepper", + "tomato paste", + "red chili peppers", + "minced onion", + "paprika", + "whiskey", + "pork baby back ribs", + "honey", + "vegetable oil", + "salt" + ] + }, + { + "id": 20291, + "cuisine": "russian", + "ingredients": [ + "ketchup", + "fine sea salt", + "garlic cloves", + "chuck", + "caraway seeds", + "paprika", + "cayenne pepper", + "marjoram", + "olive oil", + "all-purpose flour", + "hot water", + "tomato paste", + "worcestershire sauce", + "hot sauce", + "onions" + ] + }, + { + "id": 21706, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "frozen pizza dough", + "grated parmesan cheese", + "olive oil", + "onions", + "sweet potatoes" + ] + }, + { + "id": 44563, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "radishes", + "fresh lemon juice", + "black pepper", + "artichokes", + "great northern beans", + "extra-virgin olive oil", + "sliced green onions", + "asparagus", + "salt" + ] + }, + { + "id": 47855, + "cuisine": "mexican", + "ingredients": [ + "cheese", + "sour cream", + "shredded cheddar cheese", + "margarine", + "chicken", + "green chile", + "salsa", + "onions", + "tortillas", + "enchilada sauce" + ] + }, + { + "id": 24461, + "cuisine": "indian", + "ingredients": [ + "cooking oil", + "yellow onion", + "ground turmeric", + "tomatoes", + "garlic", + "coconut milk", + "ground ginger", + "potatoes", + "cayenne pepper", + "chicken", + "curry powder", + "salt", + "frozen peas" + ] + }, + { + "id": 46377, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "shredded mozzarella cheese", + "pasta sauce", + "lean ground beef", + "egg whites", + "dried oregano", + "cottage cheese", + "manicotti pasta" + ] + }, + { + "id": 19696, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "garlic cloves", + "cooking spray", + "bread dough", + "dried thyme", + "fresh lemon juice", + "capers", + "anchovy fillets" + ] + }, + { + "id": 42999, + "cuisine": "chinese", + "ingredients": [ + "unsweetened dried coconut", + "fine sea salt", + "virgin coconut oil", + "cane sugar", + "baking powder", + "all-purpose flour", + "pure vanilla extract", + "mandarin oranges", + "corn starch" + ] + }, + { + "id": 21744, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "shallots", + "sesame seeds", + "canola oil", + "white miso", + "japanese eggplants", + "sake", + "mirin" + ] + }, + { + "id": 18007, + "cuisine": "thai", + "ingredients": [ + "water", + "garlic cloves", + "chopped cilantro fresh", + "brown sugar", + "vegetable oil", + "thai green curry paste", + "fish sauce", + "lime wedges", + "coconut milk", + "jumbo shrimp", + "scallions", + "onions" + ] + }, + { + "id": 11533, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "lime", + "sea bass fillets", + "chopped parsley", + "lettuce", + "pepper", + "jalapeno chilies", + "salt", + "oregano", + "white vinegar", + "fillet red snapper", + "halibut fillets", + "black olives", + "onions", + "avocado", + "fresh cilantro", + "Tabasco Pepper Sauce", + "green pepper" + ] + }, + { + "id": 10781, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "chopped pecans", + "ground cinnamon", + "salt", + "firmly packed brown sugar", + "all-purpose flour", + "butter", + "cake batter" + ] + }, + { + "id": 46158, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "self rising flour", + "butter", + "garlic powder", + "ground red pepper", + "salt", + "honey", + "large eggs", + "buttermilk", + "ground black pepper", + "vegetable oil", + "chicken pieces" + ] + }, + { + "id": 7499, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "greek yogurt", + "salt", + "garlic", + "red wine vinegar", + "cucumber" + ] + }, + { + "id": 17583, + "cuisine": "italian", + "ingredients": [ + "baby spinach leaves", + "cooking spray", + "pizza doughs", + "part-skim mozzarella cheese", + "extra-virgin olive oil", + "minced garlic", + "pizza sauce", + "plum tomatoes", + "fresh parmesan cheese", + "part-skim ricotta cheese" + ] + }, + { + "id": 34752, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "tomatoes", + "red bell pepper", + "pepper", + "onions", + "salt" + ] + }, + { + "id": 32262, + "cuisine": "indian", + "ingredients": [ + "pinenuts", + "canned tomatoes", + "garlic cloves", + "onions", + "fresh spinach", + "cayenne", + "salt", + "cinnamon sticks", + "clove", + "coriander seeds", + "lamb shoulder", + "fresh lemon juice", + "ground cumin", + "plain yogurt", + "vegetable oil", + "gingerroot", + "bay leaf" + ] + }, + { + "id": 20209, + "cuisine": "vietnamese", + "ingredients": [ + "baguette", + "jalapeno chilies", + "garlic", + "cilantro leaves", + "carrots", + "mayonaise", + "ground black pepper", + "vegetable oil", + "crushed red pepper", + "english cucumber", + "lime juice", + "chile pepper", + "vietnamese fish sauce", + "rice vinegar", + "sugar", + "pork tenderloin", + "daikon", + "salt", + "scallions" + ] + }, + { + "id": 32532, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salsa", + "flour tortillas", + "long grain white rice", + "refried beans", + "sour cream", + "romaine lettuce", + "low sodium chicken broth" + ] + }, + { + "id": 39323, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato purée", + "pepper", + "bay leaves", + "butter", + "cayenne pepper", + "dill seed", + "onions", + "pork", + "dried thyme", + "fully cooked ham", + "apple pie spice", + "rice", + "mustard seeds", + "canola oil", + "whole peppercorn", + "water", + "boneless skinless chicken breasts", + "diced tomatoes", + "green pepper", + "shrimp", + "chicken thighs", + "celery ribs", + "polish sausage", + "coriander seeds", + "chili powder", + "salt", + "garlic cloves", + "fresh parsley", + "allspice" + ] + }, + { + "id": 25924, + "cuisine": "italian", + "ingredients": [ + "baby spinach", + "salt", + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "fusilli", + "crushed red pepper", + "prosciutto", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 8360, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "egg whites", + "blue cheese", + "fresh basil", + "large eggs", + "chopped fresh thyme", + "salt", + "milk", + "quickcooking grits", + "whipping cream", + "green chile", + "grated parmesan cheese", + "butter", + "garlic cloves" + ] + }, + { + "id": 1010, + "cuisine": "southern_us", + "ingredients": [ + "white onion", + "vegetable oil", + "chopped celery", + "ripe olives", + "black pepper", + "chopped green bell pepper", + "garlic", + "low sodium beef broth", + "sliced green onions", + "tomato sauce", + "beef", + "diced tomatoes", + "all-purpose flour", + "grits", + "fresh basil", + "hot pepper sauce", + "chopped fresh thyme", + "salt", + "fresh parsley" + ] + }, + { + "id": 2662, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "garam masala", + "cilantro", + "skinless chicken breasts", + "fresh ginger", + "vegetable oil", + "purple onion", + "pepper", + "chili powder", + "garlic", + "ground turmeric", + "tomato paste", + "light cream", + "lemon", + "salt" + ] + }, + { + "id": 44686, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "cream of chicken soup", + "shredded cheddar cheese", + "salsa", + "beans", + "chile pepper", + "avocado", + "sliced black olives", + "sour cream" + ] + }, + { + "id": 17376, + "cuisine": "mexican", + "ingredients": [ + "fresh basil", + "chicken breasts", + "hummus", + "flour tortillas", + "salt", + "pepper", + "vine ripened tomatoes", + "avocado", + "shredded carrots", + "cucumber" + ] + }, + { + "id": 40755, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "flour", + "butter", + "white sugar", + "pecan halves", + "evaporated milk", + "baking powder", + "vanilla", + "cream of tartar", + "honey", + "egg yolks", + "sprinkles", + "brown sugar", + "lemon extract", + "cinnamon", + "salt" + ] + }, + { + "id": 39089, + "cuisine": "italian", + "ingredients": [ + "cold water", + "salt", + "flour", + "sage leaves", + "cracked black pepper", + "olive oil" + ] + }, + { + "id": 25885, + "cuisine": "southern_us", + "ingredients": [ + "ice", + "vanilla ice cream", + "sports drink" + ] + }, + { + "id": 47492, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "penne rigate", + "pinenuts", + "salt", + "black pepper", + "parmigiano reggiano cheese", + "chopped garlic", + "olive oil", + "mixed greens" + ] + }, + { + "id": 5625, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "provolone cheese", + "chili powder" + ] + }, + { + "id": 28093, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "potatoes", + "cayenne pepper", + "cashew nuts", + "dried currants", + "fresh ginger root", + "garlic", + "onions", + "garbanzo beans", + "diced tomatoes", + "coconut milk", + "ground cumin", + "curry powder", + "garam masala", + "salt", + "frozen peas" + ] + }, + { + "id": 20296, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "ricotta cheese", + "grated parmesan cheese", + "asparagus spears", + "olive oil", + "green onions", + "chopped fresh mint", + "large eggs", + "salt" + ] + }, + { + "id": 26258, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chinese five-spice powder", + "hoisin sauce", + "honey", + "dry sherry" + ] + }, + { + "id": 5077, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "bay leaves", + "hot sauce", + "corn tortillas", + "fresh rosemary", + "olive oil", + "purple onion", + "garlic cloves", + "lime juice", + "Mexican oregano", + "orange juice", + "skirt steak", + "kosher salt", + "guacamole", + "salsa", + "Mexican lager beer" + ] + }, + { + "id": 10551, + "cuisine": "italian", + "ingredients": [ + "water", + "chopped onion", + "pepper", + "olive oil", + "chunky pasta sauce", + "long-grain rice", + "chicken breast tenders", + "creole seasoning" + ] + }, + { + "id": 9494, + "cuisine": "mexican", + "ingredients": [ + "low-fat sour cream", + "garlic powder", + "boneless skinless chicken breasts", + "cayenne pepper", + "olive oil", + "tortillas", + "paprika", + "chopped cilantro fresh", + "avocado", + "chopped tomatoes", + "bell pepper", + "salt", + "cumin", + "shredded cheddar cheese", + "ground pepper", + "chili powder", + "onions" + ] + }, + { + "id": 20719, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "meyer lemon", + "onions", + "green olives", + "garlic cloves", + "ground cumin", + "ground cinnamon", + "paprika", + "chicken", + "olive oil", + "low salt chicken broth" + ] + }, + { + "id": 39136, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "yellow onion", + "medium shrimp", + "black pepper", + "diced tomatoes", + "diced ham", + "canola oil", + "fat free less sodium chicken broth", + "chopped celery", + "long grain brown rice", + "chopped green bell pepper", + "garlic cloves", + "dried parsley" + ] + }, + { + "id": 9370, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "fresh mushrooms", + "olive oil", + "black olives", + "steak seasoning", + "mozzarella cheese", + "flank steak", + "sausages", + "garlic powder", + "mortadella", + "italian seasoning" + ] + }, + { + "id": 24170, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "large eggs", + "garlic", + "peanuts", + "vegetable oil", + "fresh lime juice", + "fish sauce", + "lo mein noodles", + "red pepper flakes", + "soy sauce", + "green onions", + "cilantro leaves" + ] + }, + { + "id": 25385, + "cuisine": "cajun_creole", + "ingredients": [ + "honey", + "spicy brown mustard", + "minced garlic", + "hot sauce", + "green onions" + ] + }, + { + "id": 46608, + "cuisine": "italian", + "ingredients": [ + "capers", + "water", + "crushed red pepper", + "boneless skinless chicken breast halves", + "romano cheese", + "sherry vinegar", + "garlic cloves", + "marsala wine", + "olive oil", + "salt", + "dried oregano", + "frozen chopped spinach", + "seasoned bread crumbs", + "golden raisins", + "corn starch" + ] + }, + { + "id": 23308, + "cuisine": "italian", + "ingredients": [ + "water", + "parsley leaves", + "cake flour", + "large egg yolks", + "large garlic cloves", + "olive oil", + "dry white wine", + "porcini", + "unsalted butter", + "extra-virgin olive oil" + ] + }, + { + "id": 6761, + "cuisine": "cajun_creole", + "ingredients": [ + "crab", + "corn", + "green onions", + "hot sauce", + "chopped parsley", + "crab claws", + "unsalted butter", + "chopped celery", + "red bell pepper", + "chicken broth", + "minced garlic", + "chopped green bell pepper", + "salt", + "heavy whipping cream", + "lump crab meat", + "dried thyme", + "dry white wine", + "chopped onion", + "roux" + ] + }, + { + "id": 41551, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "jalapeno chilies", + "salt", + "ground beef", + "water", + "cooking oil", + "purple onion", + "frozen corn kernels", + "eggs", + "ground black pepper", + "diced tomatoes", + "dry bread crumbs", + "dried oregano", + "canned low sodium chicken broth", + "zucchini", + "garlic", + "fresh oregano", + "ground cumin" + ] + }, + { + "id": 14133, + "cuisine": "southern_us", + "ingredients": [ + "country ham", + "dijon mustard", + "salt", + "celery ribs", + "sugar", + "apple cider vinegar", + "celery", + "eggs", + "ground black pepper", + "extra-virgin olive oil", + "mayonaise", + "chives", + "ham" + ] + }, + { + "id": 35161, + "cuisine": "irish", + "ingredients": [ + "kosher salt", + "whole milk", + "salt", + "black pepper", + "leeks", + "russet potatoes", + "kale", + "shallots", + "grated nutmeg", + "unsalted butter", + "napa cabbage", + "onion tops" + ] + }, + { + "id": 15458, + "cuisine": "spanish", + "ingredients": [ + "mussels", + "ground black pepper", + "littleneck clams", + "garlic cloves", + "fresh parsley", + "saffron threads", + "frozen whole kernel corn", + "green peas", + "chopped onion", + "red bell pepper", + "water", + "dry white wine", + "orzo", + "sausages", + "dried oregano", + "olive oil", + "paprika", + "salt", + "shrimp" + ] + }, + { + "id": 40894, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "jalapeno chilies", + "wild rice", + "cumin", + "lime", + "tomatillos", + "sour cream", + "green chile", + "poblano peppers", + "extra-virgin olive oil", + "onions", + "kosher salt", + "chicken breasts", + "garlic cloves" + ] + }, + { + "id": 29851, + "cuisine": "southern_us", + "ingredients": [ + "tahini", + "fresh lemon juice", + "pitas", + "salt", + "black-eyed peas", + "garlic cloves", + "fresh chives", + "paprika", + "ground cumin" + ] + }, + { + "id": 28262, + "cuisine": "korean", + "ingredients": [ + "honey", + "juice", + "soy sauce", + "rice wine", + "sugar", + "green onions", + "chopped garlic", + "pepper", + "sesame oil" + ] + }, + { + "id": 11236, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "red wine vinegar", + "plum tomatoes", + "avocado", + "black-eyed peas", + "shoepeg corn", + "olive oil", + "salt", + "ground cumin", + "black pepper", + "green onions", + "chopped cilantro fresh" + ] + }, + { + "id": 41257, + "cuisine": "italian", + "ingredients": [ + "orange bell pepper", + "dry white wine", + "arborio rice", + "asparagus bean", + "crabmeat", + "Swanson Chicken Broth", + "chopped onion", + "olive oil", + "grated parmesan cheese" + ] + }, + { + "id": 25456, + "cuisine": "greek", + "ingredients": [ + "flour", + "lemon juice", + "vegetable oil", + "calamari" + ] + }, + { + "id": 14789, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "salt", + "fresh lime juice", + "pasilla chiles", + "chicken breasts", + "oil", + "roasted red peppers", + "yellow onion", + "shredded Monterey Jack cheese", + "minced garlic", + "chili powder", + "corn tortillas" + ] + }, + { + "id": 3813, + "cuisine": "irish", + "ingredients": [ + "sugar", + "buttermilk", + "large eggs", + "all-purpose flour", + "baking soda", + "salt", + "golden raisins" + ] + }, + { + "id": 42794, + "cuisine": "italian", + "ingredients": [ + "pepper", + "green onions", + "garlic cloves", + "fresh basil", + "parmesan cheese", + "peas", + "olive oil", + "balsamic vinegar", + "fresh lemon juice", + "french baguette", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 12590, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "cayenne pepper", + "stock", + "rice wine", + "fish sauce", + "garlic", + "chili" + ] + }, + { + "id": 16046, + "cuisine": "jamaican", + "ingredients": [ + "cooked brown rice", + "jalapeno chilies", + "ginger", + "black-eyed peas", + "vegetable oil", + "ground allspice", + "minced garlic", + "chili powder", + "yellow onion", + "ground ginger", + "ground nutmeg", + "button mushrooms", + "panko breadcrumbs" + ] + }, + { + "id": 3848, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "chicken breasts", + "carrots", + "chipotle chile", + "vegetable oil", + "chicken broth", + "lime wedges", + "onions", + "zucchini", + "chickpeas" + ] + }, + { + "id": 3396, + "cuisine": "thai", + "ingredients": [ + "eggplant", + "heavy cream", + "fish sauce", + "water chestnuts", + "coconut milk", + "thai basil", + "red curry paste", + "water", + "chicken breasts", + "bamboo shoots" + ] + }, + { + "id": 2802, + "cuisine": "mexican", + "ingredients": [ + "triple sec", + "ice", + "frozen limeade concentrate", + "gold tequila" + ] + }, + { + "id": 46166, + "cuisine": "italian", + "ingredients": [ + "sugar", + "balsamic vinegar", + "freshly ground pepper", + "baguette", + "purple onion", + "plum tomatoes", + "pepper", + "garlic", + "roast red peppers, drain", + "olive oil", + "salt" + ] + }, + { + "id": 15856, + "cuisine": "greek", + "ingredients": [ + "fresh spinach", + "salt", + "butter-flavored spray", + "fat free milk", + "lemon juice", + "dill weed", + "phyllo dough", + "butter", + "feta cheese crumbles", + "fresh asparagus", + "dried thyme", + "all-purpose flour", + "nonstick spray" + ] + }, + { + "id": 25950, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "salt", + "frozen peas", + "tomato sauce", + "red pepper", + "coconut milk", + "curry powder", + "garlic", + "onions", + "ground ginger", + "extra firm tofu", + "carrots", + "ground cumin" + ] + }, + { + "id": 5229, + "cuisine": "cajun_creole", + "ingredients": [ + "ground cloves", + "unsalted butter", + "ground cardamom", + "eggs", + "almond flour", + "lemon", + "ceylon cinnamon", + "orange", + "granulated sugar", + "corn starch", + "hazelnut flour", + "large egg yolks", + "vanilla bean paste" + ] + }, + { + "id": 21183, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "chili oil", + "white sugar", + "fresh ginger root", + "vegetable oil", + "salt", + "water", + "sesame oil", + "ground pork", + "cabbage", + "water chestnuts", + "wonton wrappers", + "rice vinegar" + ] + }, + { + "id": 2307, + "cuisine": "mexican", + "ingredients": [ + "minced onion", + "chili powder", + "dry bread crumbs", + "taco sauce", + "french bread", + "butter", + "dried oregano", + "large eggs", + "tomatillos", + "lean beef", + "jack cheese", + "guacamole", + "garlic", + "ground cumin" + ] + }, + { + "id": 25650, + "cuisine": "italian", + "ingredients": [ + "Italian cheese", + "garlic", + "chopped onion", + "green bell pepper", + "mild Italian sausage", + "shredded sharp cheddar cheese", + "ground beef", + "pepper", + "chopped celery", + "rotini", + "tomato sauce", + "diced tomatoes", + "salt" + ] + }, + { + "id": 35349, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "large egg whites", + "lasagna noodles", + "cream cheese, soften", + "sugar", + "artichoke hearts", + "crushed red pepper", + "pasta sauce", + "olive oil", + "low-fat ricotta cheese", + "tomatoes", + "sweet onion", + "parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 17341, + "cuisine": "japanese", + "ingredients": [ + "black pepper", + "free range chicken breasts", + "ginger", + "Soy Vay® Veri Veri Teriyaki® Marinade & Sauce", + "carrots", + "serrano chilies", + "boneless skin on chicken thighs", + "sesame oil", + "garlic", + "english cucumber", + "flat leaf parsley", + "savoy cabbage", + "kosher salt", + "shallots", + "extra-virgin olive oil", + "rice vinegar", + "red bell pepper", + "slivered almonds", + "udon", + "cilantro", + "herb dressing", + "scallions" + ] + }, + { + "id": 10644, + "cuisine": "mexican", + "ingredients": [ + "lamb strips", + "flour tortillas", + "green chilies", + "ground cumin", + "tomatoes", + "olive oil", + "garlic", + "red bell pepper", + "avocado", + "lime juice", + "yellow bell pepper", + "lemon juice", + "white onion", + "green bell pepper, slice", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 49446, + "cuisine": "japanese", + "ingredients": [ + "rice vinegar", + "vegetable oil", + "white sugar", + "soy sauce", + "cucumber", + "salt" + ] + }, + { + "id": 23546, + "cuisine": "southern_us", + "ingredients": [ + "white pepper", + "meat bones", + "garlic powder", + "onions", + "water", + "ham hock", + "salt", + "butter beans" + ] + }, + { + "id": 23101, + "cuisine": "greek", + "ingredients": [ + "uncooked ziti", + "large eggs", + "butter", + "all-purpose flour", + "ground lamb", + "bread crumbs", + "cooking spray", + "diced tomatoes", + "feta cheese crumbles", + "ground cinnamon", + "olive oil", + "ground sirloin", + "salt", + "dried oregano", + "fresh oregano leaves", + "reduced fat milk", + "large garlic cloves", + "chopped onion" + ] + }, + { + "id": 2886, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "garlic cloves", + "chipotle chile", + "cooking spray", + "chopped onion", + "chopped cilantro fresh", + "ground black pepper", + "fresh oregano", + "fresh lime juice", + "fat free less sodium chicken broth", + "bay leaves", + "pork roast", + "ground cumin" + ] + }, + { + "id": 20797, + "cuisine": "southern_us", + "ingredients": [ + "light soy sauce", + "quickcooking grits", + "scallions", + "ground black pepper", + "grapeseed oil", + "eggs", + "unsalted butter", + "bacon", + "dashi", + "coarse salt", + "medium shrimp" + ] + }, + { + "id": 3910, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "spaghettini", + "fresh basil", + "large garlic cloves", + "cherry tomatoes", + "fresh lemon juice", + "clams", + "grated parmesan cheese" + ] + }, + { + "id": 31601, + "cuisine": "chinese", + "ingredients": [ + "tofu", + "ground pork", + "shallots", + "corn starch", + "water", + "hot bean paste", + "rice wine" + ] + }, + { + "id": 47934, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "yellow miso", + "garlic cloves", + "water", + "leeks", + "fennel bulb", + "japanese eggplants" + ] + }, + { + "id": 36212, + "cuisine": "vietnamese", + "ingredients": [ + "beansprouts", + "lettuce leaves", + "cucumber", + "mint" + ] + }, + { + "id": 44867, + "cuisine": "british", + "ingredients": [ + "eggs", + "all-purpose flour", + "prepared horseradish", + "roast beef", + "milk", + "au jus gravy", + "salt", + "canola oil" + ] + }, + { + "id": 10827, + "cuisine": "irish", + "ingredients": [ + "Irish whiskey", + "maraschino", + "pernod", + "curaçao", + "crushed ice", + "olives", + "Angostura bitters", + "orange peel" + ] + }, + { + "id": 12991, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "green peas", + "mustard seeds", + "whole wheat dough", + "sweet potatoes", + "chopped onion", + "olive oil", + "salt", + "water", + "ground red pepper", + "garlic cloves" + ] + }, + { + "id": 3308, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "soy sauce", + "sugar", + "eggs", + "water" + ] + }, + { + "id": 613, + "cuisine": "japanese", + "ingredients": [ + "dashi kombu", + "dried bonito", + "tamari soy sauce", + "water", + "mirin", + "brown rice", + "orange juice concentrate", + "olive oil", + "peeled fresh ginger", + "salt", + "sugar", + "ahi tuna steaks", + "green onions", + "rice vinegar" + ] + }, + { + "id": 42787, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "anise", + "sugar", + "cooking spray", + "melted butter", + "chopped almonds", + "all-purpose flour", + "large egg whites", + "baking powder" + ] + }, + { + "id": 21124, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "garlic cloves", + "italian seasoning", + "tomato sauce" + ] + }, + { + "id": 42034, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "fresh ginger", + "garlic cloves", + "cashew nuts", + "kaffir lime leaves", + "lime", + "Thai eggplants", + "green beans", + "fresh basil", + "green curry paste", + "peanut oil", + "coconut milk", + "fresh cilantro", + "spring onions", + "corn starch", + "chicken" + ] + }, + { + "id": 43961, + "cuisine": "thai", + "ingredients": [ + "kosher salt", + "rice powder", + "shallots", + "stock", + "lemongrass", + "mint leaves", + "chopped cilantro", + "soy sauce", + "ground black pepper", + "mushrooms", + "chile powder", + "lime juice", + "granulated sugar", + "vegetable oil" + ] + }, + { + "id": 40885, + "cuisine": "brazilian", + "ingredients": [ + "bittersweet chocolate", + "chocolate sprinkles", + "salted butter", + "sweetened condensed milk" + ] + }, + { + "id": 46076, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "salt", + "shrimp", + "serrano chilies", + "fresh thyme", + "cayenne pepper", + "chicken broth", + "ground black pepper", + "yellow onion", + "plum tomatoes", + "green bell pepper", + "gumbo file", + "garlic cloves" + ] + }, + { + "id": 10251, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "white wine vinegar", + "mussels", + "shallots", + "dry white wine", + "onions", + "unsalted butter", + "flat leaf parsley" + ] + }, + { + "id": 16515, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "fresh tarragon", + "balsamic vinegar", + "salt", + "shallots", + "extra-virgin olive oil", + "heirloom tomatoes" + ] + }, + { + "id": 33092, + "cuisine": "greek", + "ingredients": [ + "pepper", + "salt", + "new potatoes", + "olive oil", + "dried oregano", + "mayonaise", + "red wine vinegar" + ] + }, + { + "id": 4735, + "cuisine": "french", + "ingredients": [ + "olive oil", + "white wine vinegar", + "onions", + "dijon mustard", + "ham", + "ground black pepper", + "salt", + "gruyere cheese", + "fresh parsley" + ] + }, + { + "id": 31875, + "cuisine": "southern_us", + "ingredients": [ + "Jell-O Gelatin", + "color food green", + "sweetened condensed milk", + "egg whites", + "fresh lime juice", + "lemon zest", + "bitters", + "pie crust", + "egg yolks", + "boiling water" + ] + }, + { + "id": 23550, + "cuisine": "southern_us", + "ingredients": [ + "pickles", + "french bread", + "hot sauce", + "bibb lettuce", + "buttermilk", + "cornmeal", + "pepper", + "beefsteak tomatoes", + "filet", + "mayonaise", + "flour", + "salt", + "canola oil" + ] + }, + { + "id": 45109, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "salt", + "fresh cilantro", + "chili powder", + "ghee", + "potatoes", + "cumin seed", + "amchur", + "chile pepper", + "coriander" + ] + }, + { + "id": 985, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "reduced fat milk", + "spelt", + "salt", + "sugar", + "cooking spray", + "vanilla beans", + "ground cardamom" + ] + }, + { + "id": 29905, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "heavy cream", + "tomatoes", + "shrimp heads", + "yellow onion", + "unsalted butter", + "salt", + "ouzo", + "lemon", + "garlic cloves" + ] + }, + { + "id": 17186, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "cheese tortellini", + "onions", + "butter", + "salt", + "ground black pepper", + "peas", + "heavy cream", + "ham" + ] + }, + { + "id": 29800, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "turnip greens", + "pork shoulder", + "water" + ] + }, + { + "id": 12350, + "cuisine": "italian", + "ingredients": [ + "spaghetti", + "cracked black pepper", + "pecorino romano cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 38375, + "cuisine": "mexican", + "ingredients": [ + "corn", + "button mushrooms", + "boiling water", + "ground cumin", + "corn husks", + "salt", + "canola oil", + "olive oil", + "vegetable broth", + "oregano", + "red chili peppers", + "large garlic cloves", + "onions", + "masa harina" + ] + }, + { + "id": 40959, + "cuisine": "irish", + "ingredients": [ + "water", + "baking soda", + "buttermilk", + "carrots", + "onions", + "olive oil", + "potatoes", + "all-purpose flour", + "bay leaf", + "dried thyme", + "herbs", + "salt", + "rib", + "whole wheat flour", + "baking powder", + "cubed meat", + "fresh parsley" + ] + }, + { + "id": 9616, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "sun-dried tomatoes", + "plum tomatoes", + "grape tomatoes", + "brine-cured black olives", + "water", + "boiling potatoes", + "chicken legs", + "extra-virgin olive oil" + ] + }, + { + "id": 12610, + "cuisine": "japanese", + "ingredients": [ + "beef", + "sugar", + "ginger", + "sake", + "mirin", + "soy sauce" + ] + }, + { + "id": 48444, + "cuisine": "spanish", + "ingredients": [ + "sourdough bread", + "extra-virgin olive oil", + "flat leaf parsley", + "green onions", + "salt", + "ground black pepper", + "crushed red pepper", + "large shrimp", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 24928, + "cuisine": "italian", + "ingredients": [ + "salmon fillets", + "fresh lemon", + "penne pasta", + "olive oil", + "garlic", + "fresh asparagus", + "white pepper", + "heavy cream", + "dried dillweed", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 31202, + "cuisine": "irish", + "ingredients": [ + "vanilla extract", + "irish cream liqueur", + "white sugar", + "brown sugar", + "heavy whipping cream", + "half & half" + ] + }, + { + "id": 38912, + "cuisine": "french", + "ingredients": [ + "warm water", + "sea salt", + "orange zest", + "table salt", + "active dry yeast", + "all-purpose flour", + "anise seed", + "water", + "extra-virgin olive oil", + "sugar", + "all purpose unbleached flour", + "orange flower water" + ] + }, + { + "id": 7012, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "large eggs", + "dashi", + "nori", + "sushi rice", + "salt", + "mirin" + ] + }, + { + "id": 20673, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "radishes", + "Italian parsley leaves", + "baby carrots", + "olive oil", + "dry white wine", + "cilantro leaves", + "small red potato", + "sugar pea", + "asparagus", + "watercress", + "grated lemon zest", + "fresh lemon juice", + "fat free less sodium chicken broth", + "mint leaves", + "salt", + "garlic cloves" + ] + }, + { + "id": 25884, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "ground cayenne pepper", + "kosher salt", + "hot sauce", + "blue crabs", + "bay leaves", + "ground black pepper", + "celery seed" + ] + }, + { + "id": 38714, + "cuisine": "indian", + "ingredients": [ + "ice cubes", + "vanilla extract", + "honey", + "ground cardamom", + "ground cinnamon", + "1% low-fat milk", + "nonfat yogurt", + "mango" + ] + }, + { + "id": 2879, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "active dry yeast", + "all-purpose flour", + "warm water", + "salt", + "shortening", + "sweet potatoes" + ] + }, + { + "id": 12648, + "cuisine": "italian", + "ingredients": [ + "hazelnuts", + "cream cheese", + "granulated sugar", + "bittersweet chocolate", + "unsalted butter", + "sour cream", + "pure vanilla extract", + "large eggs", + "crackers" + ] + }, + { + "id": 30657, + "cuisine": "chinese", + "ingredients": [ + "fat free less sodium chicken broth", + "chopped cilantro fresh", + "hoisin sauce", + "sliced green onions", + "won ton wrappers", + "cooked chicken breasts", + "low sodium soy sauce", + "sliced mushrooms" + ] + }, + { + "id": 42738, + "cuisine": "french", + "ingredients": [ + "salted butter", + "bread flour", + "cold water", + "white sugar", + "sea salt", + "water", + "yeast" + ] + }, + { + "id": 16577, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "salt", + "dark soy sauce", + "szechwan peppercorns", + "scallions", + "Shaoxing wine", + "peanut oil", + "sugar", + "ginger", + "duck drumsticks" + ] + }, + { + "id": 7559, + "cuisine": "indian", + "ingredients": [ + "semolina", + "ghee", + "saffron threads", + "vegetable oil", + "white sugar", + "bananas", + "cashew nuts", + "milk", + "raisins" + ] + }, + { + "id": 13376, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "iceberg lettuce", + "fresh cilantro", + "red bell pepper", + "black beans", + "cream cheese", + "mango", + "taco seasoning mix", + "sour cream" + ] + }, + { + "id": 6742, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "fresh oregano", + "lemon", + "greek yogurt", + "black pepper", + "salt", + "garlic powder", + "cucumber" + ] + }, + { + "id": 34779, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "all-purpose flour", + "chicken pan drippings", + "milk", + "salt" + ] + }, + { + "id": 38641, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "vanilla extract", + "sugar", + "whipped cream", + "bittersweet chocolate", + "coffee", + "whipping cream", + "cookies", + "orange liqueur" + ] + }, + { + "id": 36785, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "baking powder", + "paprika", + "chicken thighs", + "cayenne", + "chicken drumsticks", + "hot sauce", + "garlic powder", + "vegetable oil", + "salt", + "eggs", + "flour", + "worcestershire sauce", + "dark brown sugar" + ] + }, + { + "id": 43078, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "lemon pudding", + "cold milk", + "water", + "sugar", + "oil", + "eggs", + "lemon" + ] + }, + { + "id": 46442, + "cuisine": "french", + "ingredients": [ + "ice water", + "apples" + ] + }, + { + "id": 30691, + "cuisine": "thai", + "ingredients": [ + "water", + "shrimp", + "sugar", + "Thai red curry paste", + "lime leaves", + "fish sauce", + "pineapple", + "coconut milk", + "squirt", + "oil" + ] + }, + { + "id": 10624, + "cuisine": "jamaican", + "ingredients": [ + "diced onions", + "ground black pepper", + "vegetable oil", + "tomato ketchup", + "sliced green onions", + "minced garlic", + "large eggs", + "salt", + "ground allspice", + "cold water", + "fresh thyme", + "vegetable shortening", + "minced beef", + "water", + "hot pepper", + "all-purpose flour", + "ground turmeric" + ] + }, + { + "id": 39874, + "cuisine": "korean", + "ingredients": [ + "ketchup", + "green onions", + "cucumber", + "pears", + "brown sugar", + "panko", + "ginger", + "toasted sesame oil", + "sesame seeds", + "lean ground beef", + "korean chile paste", + "soy sauce", + "lettuce leaves", + "rice vinegar", + "chopped garlic" + ] + }, + { + "id": 26449, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "scallions", + "soy sauce", + "cilantro leaves", + "toasted sesame seeds", + "sugar", + "chili oil", + "carrots", + "olive oil", + "rice vinegar", + "cabbage" + ] + }, + { + "id": 578, + "cuisine": "russian", + "ingredients": [ + "capsicum", + "chicken", + "tamarind juice", + "oil", + "ketchup", + "salt", + "teas", + "onions" + ] + }, + { + "id": 30128, + "cuisine": "russian", + "ingredients": [ + "hazelnuts", + "all-purpose flour", + "vanilla extract", + "butter", + "powdered sugar", + "salt" + ] + }, + { + "id": 9083, + "cuisine": "greek", + "ingredients": [ + "triscuits", + "purple onion", + "celery", + "feta cheese", + "carrots", + "fresh parsley", + "pita chips", + "greek style plain yogurt", + "hummus", + "tomatoes", + "kalamata", + "cucumber", + "crackers" + ] + }, + { + "id": 49018, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil cooking spray", + "corn tortillas", + "salt" + ] + }, + { + "id": 30932, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "queso fresco", + "garlic cloves", + "kosher salt", + "beef broth", + "onions", + "black pepper", + "cilantro", + "ground beef", + "tomatoes", + "zucchini", + "cayenne pepper", + "cumin" + ] + }, + { + "id": 30413, + "cuisine": "japanese", + "ingredients": [ + "gari", + "prawns", + "tomato ketchup", + "oyster sauce", + "honey", + "ramen noodles", + "seaweed", + "onions", + "dashi", + "mixed seafood", + "squid", + "carrots", + "soy sauce", + "ground black pepper", + "worcestershire sauce", + "oil", + "cabbage" + ] + }, + { + "id": 24151, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "chicken legs", + "garlic", + "bay leaf", + "ground cumin", + "ground cinnamon", + "olive oil", + "juice", + "apricots", + "chicken broth", + "black pepper", + "salt", + "onions", + "prunes", + "pitted green olives", + "chopped parsley", + "plum tomatoes" + ] + }, + { + "id": 42027, + "cuisine": "indian", + "ingredients": [ + "large free range egg", + "maple syrup", + "garlic cloves", + "olive oil", + "fine sea salt", + "cayenne pepper", + "onions", + "garam masala", + "salt", + "ground coriander", + "ground cumin", + "pepper", + "sweet potatoes", + "greek style plain yogurt", + "ground beef" + ] + }, + { + "id": 28503, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "garlic", + "shallots", + "white sugar", + "mirin", + "fillets", + "soy sauce", + "sesame oil" + ] + }, + { + "id": 19433, + "cuisine": "jamaican", + "ingredients": [ + "green bell pepper", + "cooking oil", + "salt", + "onions", + "pork chops", + "worcestershire sauce", + "thyme", + "steak sauce", + "hot pepper sauce", + "garlic", + "red bell pepper", + "black pepper", + "butter", + "tomato ketchup" + ] + }, + { + "id": 759, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "napa cabbage", + "sugar", + "soft tofu", + "chinese rice wine", + "hoisin sauce", + "medium dry sherry", + "pork butt" + ] + }, + { + "id": 36166, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "hoisin sauce", + "napa cabbage", + "sliced mushrooms", + "water", + "shredded carrots", + "shrimp", + "minced garlic", + "flour tortillas", + "peanut oil", + "Sriracha", + "green onions", + "corn starch" + ] + }, + { + "id": 43240, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic", + "nonfat buttermilk", + "basil", + "oregano", + "nonfat mayonnaise", + "paprika", + "tomato juice", + "onions" + ] + }, + { + "id": 3, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "sesame oil", + "frozen peas", + "cooked rice", + "bell pepper", + "peanut oil", + "large eggs", + "garlic", + "soy sauce", + "green onions", + "carrots" + ] + }, + { + "id": 4257, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "cracker crumbs", + "cornmeal", + "self rising flour", + "cajun seasoning", + "milk", + "green tomatoes", + "large eggs", + "cracked black pepper" + ] + }, + { + "id": 19685, + "cuisine": "mexican", + "ingredients": [ + "superfine sugar", + "cointreau", + "juice", + "ice cubes", + "lime wedges", + "kosher salt", + "tequila" + ] + }, + { + "id": 9380, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "chicken breasts", + "red enchilada sauce", + "flour tortillas", + "cream cheese", + "green onions", + "green chilies", + "cream of chicken soup", + "black olives" + ] + }, + { + "id": 12883, + "cuisine": "british", + "ingredients": [ + "button mushrooms", + "puff pastry", + "cream", + "oil", + "parsley", + "steak", + "pâté" + ] + }, + { + "id": 36564, + "cuisine": "spanish", + "ingredients": [ + "chicken bouillon", + "vinegar", + "parsley", + "garlic", + "chipotles in adobo", + "ketchup", + "hungarian paprika", + "bay leaves", + "cilantro", + "sherry wine", + "eggs", + "spanish onion", + "flour", + "red pepper", + "green pepper", + "cold water", + "water", + "egg whites", + "vegetable shortening", + "salt", + "chicken thighs" + ] + }, + { + "id": 45721, + "cuisine": "irish", + "ingredients": [ + "whole grain dijon mustard", + "dry white wine", + "small red potato", + "unsalted butter", + "salt", + "onions", + "water", + "reduced fat milk", + "garlic cloves", + "cabbage", + "ground black pepper", + "bacon", + "carrots" + ] + }, + { + "id": 42579, + "cuisine": "british", + "ingredients": [ + "ice cream", + "strawberries", + "meringue nests", + "double cream" + ] + }, + { + "id": 7959, + "cuisine": "italian", + "ingredients": [ + "pure vanilla extract", + "corn husks", + "green figs", + "sugar", + "unsalted butter", + "aged balsamic vinegar", + "mascarpone", + "raspberries", + "Amaretti Cookies" + ] + }, + { + "id": 15674, + "cuisine": "southern_us", + "ingredients": [ + "liquid smoke", + "pork baby back ribs", + "dry rub", + "olive oil" + ] + }, + { + "id": 11240, + "cuisine": "greek", + "ingredients": [ + "frozen chopped spinach", + "sun-dried tomatoes", + "fresh oregano", + "basmati rice", + "water", + "butter cooking spray", + "freshly ground pepper", + "phyllo dough", + "feta cheese", + "chopped onion", + "olive oil", + "salt", + "garlic cloves" + ] + }, + { + "id": 19604, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "all-purpose flour", + "cooked chicken", + "sour cream", + "evaporated milk", + "salsa", + "eggs", + "chile pepper", + "monterey jack" + ] + }, + { + "id": 25111, + "cuisine": "chinese", + "ingredients": [ + "ground chicken", + "sesame oil", + "scallions", + "Boston lettuce", + "honey", + "rice vinegar", + "onions", + "water", + "garlic", + "garlic chili sauce", + "soy sauce", + "fresh ginger", + "peanut butter" + ] + }, + { + "id": 23229, + "cuisine": "mexican", + "ingredients": [ + "spanish rice", + "salt", + "onions", + "ground paprika", + "bell pepper", + "oil", + "Mexican cheese blend", + "salsa", + "ground cumin", + "black beans", + "jalapeno chilies", + "sour cream" + ] + }, + { + "id": 43432, + "cuisine": "french", + "ingredients": [ + "capers", + "worcestershire sauce", + "lemon juice", + "dijon mustard", + "garlic cloves", + "roasted red peppers", + "anchovy paste", + "light mayonnaise", + "dill pickles" + ] + }, + { + "id": 3953, + "cuisine": "mexican", + "ingredients": [ + "water", + "cashew nuts", + "sugar", + "vanilla extract", + "pitted date", + "fine sea salt", + "ground cinnamon", + "unsweetened soymilk", + "unsweetened cocoa powder" + ] + }, + { + "id": 3915, + "cuisine": "korean", + "ingredients": [ + "sugar", + "beef", + "salt", + "water", + "sesame oil", + "cucumber", + "soy sauce", + "spring onions", + "carrots", + "eggs", + "shiitake", + "garlic" + ] + }, + { + "id": 21454, + "cuisine": "japanese", + "ingredients": [ + "fish sauce", + "sesame oil", + "soy sauce", + "garlic", + "fresh udon", + "florets", + "prawns", + "chillies" + ] + }, + { + "id": 41528, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "cider vinegar", + "lime wedges", + "chopped cilantro", + "cotija", + "sweet onion", + "salt", + "avocado", + "water", + "ancho powder", + "cumin", + "black pepper", + "chuck roast", + "garlic cloves" + ] + }, + { + "id": 374, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "warm water", + "all-purpose flour", + "salt", + "green onions", + "toasted sesame oil" + ] + }, + { + "id": 13400, + "cuisine": "italian", + "ingredients": [ + "pepper", + "whole wheat spaghetti", + "sweet italian sausage", + "onions", + "parmesan cheese", + "garlic", + "flat leaf parsley", + "dried basil", + "diced tomatoes", + "carrots", + "chicken broth", + "potatoes", + "salt", + "celery" + ] + }, + { + "id": 12343, + "cuisine": "jamaican", + "ingredients": [ + "red kidney beans", + "coconut", + "ice water", + "scallions", + "onions", + "pepper", + "bay leaves", + "fresh pork fat", + "chinese spinach", + "chopped garlic", + "nutmeg", + "beef", + "salt", + "yams", + "cumin", + "water", + "ground thyme", + "okra", + "red bell pepper" + ] + }, + { + "id": 14107, + "cuisine": "italian", + "ingredients": [ + "butter", + "black pepper", + "salt", + "heavy cream", + "grated parmesan cheese", + "noodles" + ] + }, + { + "id": 47628, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "color food green", + "key lime juice", + "large egg yolks", + "whipped topping", + "lime", + "crushed graham crackers", + "lime zest", + "butter", + "sweetened condensed milk" + ] + }, + { + "id": 11252, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "light brown sugar", + "vanilla extract", + "butter", + "pie crust" + ] + }, + { + "id": 22673, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "olive oil", + "hot sauce", + "white sugar", + "capers", + "pitted green olives", + "garlic cloves", + "cumin", + "tomatoes", + "prepared horseradish", + "portobello caps", + "dried oregano", + "green chile", + "diced tomatoes", + "fresh parsley", + "italian seasoning" + ] + }, + { + "id": 40834, + "cuisine": "thai", + "ingredients": [ + "coconut extract", + "lime peel", + "fresh mint", + "low sodium soy sauce", + "honey", + "rice vinegar", + "fish sauce", + "large garlic cloves", + "large shrimp", + "lemongrass", + "crushed red pepper", + "low-fat milk" + ] + }, + { + "id": 48143, + "cuisine": "irish", + "ingredients": [ + "warm water", + "potatoes", + "salt", + "celery seed", + "ground black pepper", + "worcestershire sauce", + "corn starch", + "sage", + "water", + "vegetable oil", + "carrots", + "onions", + "beef bouillon", + "beef stew meat", + "sliced mushrooms" + ] + }, + { + "id": 40611, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "water chestnuts", + "teriyaki sauce", + "red bell pepper", + "olive oil", + "chicken breasts", + "fresh mushrooms", + "soy sauce", + "fresh ginger root", + "brown rice", + "lemon juice", + "water", + "green onions", + "salt", + "celery" + ] + }, + { + "id": 3620, + "cuisine": "mexican", + "ingredients": [ + "coke zero", + "pepper", + "chili powder", + "brown sugar", + "chili", + "salt", + "tomato sauce", + "garlic powder", + "cumin", + "green chile", + "water", + "loin pork roast" + ] + }, + { + "id": 28899, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "white cornmeal", + "salt", + "buttermilk", + "bacon drippings", + "hot water" + ] + }, + { + "id": 4265, + "cuisine": "italian", + "ingredients": [ + "bread crumb fresh", + "fresh parmesan cheese", + "fresh lemon juice", + "capers", + "low-fat spaghetti sauce", + "dry red wine", + "fettucine", + "pinenuts", + "flank steak", + "fresh parsley", + "vegetable oil cooking spray", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 36581, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "onions", + "reduced fat cheddar cheese", + "whole kernel corn, drain", + "tomato sauce", + "non-fat sour cream", + "refried beans", + "ground turkey" + ] + }, + { + "id": 17890, + "cuisine": "japanese", + "ingredients": [ + "caster sugar", + "green cardamom pods", + "vegetable oil", + "milk", + "dried fruit", + "carrots" + ] + }, + { + "id": 44943, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "cayenne pepper", + "Gourmet Garden garlic paste", + "frozen whole kernel corn", + "Pompeian Canola Oil and Extra Virgin Olive Oil", + "onions", + "Johnsonville Andouille", + "salt", + "Tuttorosso Diced Tomatoes", + "large shrimp", + "brown sugar", + "green pepper", + "celery" + ] + }, + { + "id": 34859, + "cuisine": "mexican", + "ingredients": [ + "chili pepper", + "salt", + "avocado", + "jalapeno chilies", + "juice", + "vinegar", + "sweet corn", + "sugar", + "purple onion", + "chopped cilantro" + ] + }, + { + "id": 32340, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "ground beef", + "pasta sauce", + "basil", + "spaghetti", + "pepper", + "onions", + "tomato sauce", + "salt", + "oregano" + ] + }, + { + "id": 4881, + "cuisine": "spanish", + "ingredients": [ + "milk", + "sugar", + "ground nutmeg", + "coffee granules", + "chocolate syrup", + "whipped cream" + ] + }, + { + "id": 3488, + "cuisine": "italian", + "ingredients": [ + "shallots", + "garlic cloves", + "pork", + "penne pasta", + "wild mushrooms", + "spinach leaves", + "crushed red pepper", + "low salt chicken broth", + "olive oil", + "provolone cheese" + ] + }, + { + "id": 13558, + "cuisine": "indian", + "ingredients": [ + "peeled deveined shrimp", + "olive oil", + "coconut milk", + "water", + "cilantro", + "kosher salt", + "finely chopped onion", + "curry powder", + "ground cardamom" + ] + }, + { + "id": 46644, + "cuisine": "mexican", + "ingredients": [ + "orange", + "garlic salt", + "avocado", + "cilantro", + "tomatoes", + "purple onion", + "chile pepper", + "kiwi" + ] + }, + { + "id": 24908, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "green onions", + "organic vegetable broth", + "plum tomatoes", + "kosher salt", + "habanero pepper", + "calabaza", + "carrots", + "curry powder", + "cooking spray", + "yellow onion", + "red bell pepper", + "zucchini", + "chopped fresh thyme", + "garlic cloves" + ] + }, + { + "id": 48694, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "salt", + "garlic powder", + "pork butt", + "water", + "oil", + "red food coloring" + ] + }, + { + "id": 30740, + "cuisine": "cajun_creole", + "ingredients": [ + "active dry yeast", + "2% reduced-fat milk", + "hot sauce", + "catfish fillets", + "vegetable oil", + "all-purpose flour", + "egg whites", + "old bay seasoning", + "tartar sauce", + "diced onions", + "lemon wedge", + "salt", + "beer" + ] + }, + { + "id": 17598, + "cuisine": "greek", + "ingredients": [ + "zucchini", + "chopped onion", + "tomatoes", + "fresh green bean", + "russet potatoes", + "flat leaf parsley", + "olive oil", + "cayenne pepper" + ] + }, + { + "id": 39888, + "cuisine": "chinese", + "ingredients": [ + "garlic powder", + "white rice", + "eggs", + "chili powder", + "frozen peas", + "ground ginger", + "green onions", + "oil", + "soy sauce", + "onion powder" + ] + }, + { + "id": 12562, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "garlic", + "celery", + "soy sauce", + "vegetable oil", + "shrimp", + "lean ground beef", + "oyster sauce", + "cabbage", + "msg", + "wonton wrappers", + "beansprouts" + ] + }, + { + "id": 32234, + "cuisine": "italian", + "ingredients": [ + "beans", + "ground black pepper", + "diced tomatoes", + "garlic salt", + "kosher salt", + "chili powder", + "extra-virgin olive oil", + "reduced sodium chicken broth", + "finely chopped onion", + "tortellini", + "ground cumin", + "minced garlic", + "lean ground beef", + "chopped cilantro" + ] + }, + { + "id": 23044, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "shredded Monterey Jack cheese", + "finely chopped onion", + "corn tortillas", + "red chile sauce", + "salt", + "cheddar cheese", + "fat-free cottage cheese" + ] + }, + { + "id": 14930, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed brown sugar", + "dry sherry", + "spicy brown mustard", + "cooked bone in ham", + "orange juice", + "clove", + "red currant jelly" + ] + }, + { + "id": 29171, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "peeled fresh ginger", + "crepes", + "sliced green onions", + "green cabbage", + "hoisin sauce", + "dry sherry", + "wood ear mushrooms", + "water", + "vegetable oil", + "corn starch", + "low sodium soy sauce", + "pork loin", + "button mushrooms", + "boiling water" + ] + }, + { + "id": 6878, + "cuisine": "french", + "ingredients": [ + "vegetable oil", + "garlic", + "dried thyme", + "paprika", + "salt", + "ground black pepper", + "dry mustard", + "dried tarragon leaves", + "worcestershire sauce", + "white wine vinegar" + ] + }, + { + "id": 28101, + "cuisine": "italian", + "ingredients": [ + "capers", + "ground black pepper", + "large shrimp", + "tomatoes", + "crushed tomatoes", + "garlic", + "pitted black olives", + "red pepper flakes", + "dried rosemary", + "fresh rosemary", + "olive oil", + "salt" + ] + }, + { + "id": 8196, + "cuisine": "italian", + "ingredients": [ + "bulk italian sausag", + "chicken broth", + "cannellini beans", + "olive oil", + "tomato sauce", + "escarole" + ] + }, + { + "id": 26672, + "cuisine": "italian", + "ingredients": [ + "grating cheese", + "risotto", + "plain breadcrumbs", + "eggs", + "salt", + "olive oil", + "panko breadcrumbs" + ] + }, + { + "id": 37363, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "grated parmesan cheese", + "refrigerated four cheese ravioli", + "fresh tomatoes", + "Alfredo sauce", + "white wine" + ] + }, + { + "id": 14104, + "cuisine": "cajun_creole", + "ingredients": [ + "crusty bread", + "dry white wine", + "paprika", + "chopped garlic", + "olive oil", + "butter", + "cayenne pepper", + "sourdough bread", + "Tabasco Pepper Sauce", + "garlic", + "dried rosemary", + "green onions", + "worcestershire sauce", + "shrimp" + ] + }, + { + "id": 25608, + "cuisine": "filipino", + "ingredients": [ + "cooking oil", + "salt", + "garlic", + "rice" + ] + }, + { + "id": 30362, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "beef broth", + "fresh spinach", + "worcestershire sauce", + "ground beef", + "tomato purée", + "part-skim mozzarella cheese", + "penne pasta", + "pepper", + "salt", + "italian seasoning" + ] + }, + { + "id": 31617, + "cuisine": "filipino", + "ingredients": [ + "pork", + "water", + "garlic", + "oil", + "eggs", + "pork belly", + "butter", + "salt", + "chillies", + "mayonaise", + "pepper", + "ginger", + "coconut vinegar", + "pork cheeks", + "soy sauce", + "bay leaves", + "purple onion", + "calamansi" + ] + }, + { + "id": 29028, + "cuisine": "italian", + "ingredients": [ + "red cabbage", + "garlic cloves", + "extra-virgin olive oil", + "caraway seeds", + "chopped onion", + "red wine vinegar", + "low salt chicken broth" + ] + }, + { + "id": 34924, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "garam masala", + "garlic", + "cumin seed", + "tomatoes", + "coriander seeds", + "raw cashews", + "green chilies", + "cauliflower", + "water", + "ginger", + "salt", + "coriander", + "tumeric", + "chili powder", + "purple onion", + "ghee" + ] + }, + { + "id": 8535, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "shrimp paste", + "garlic cloves", + "chopped cilantro fresh", + "fresh turmeric", + "lemongrass", + "dried Thai chili", + "dried guajillo chiles", + "kaffir lime leaves", + "thai basil", + "beef broth", + "galangal", + "kosher salt", + "shallots", + "carrots", + "chuck" + ] + }, + { + "id": 30431, + "cuisine": "southern_us", + "ingredients": [ + "cold water", + "ground red pepper", + "sesame seeds", + "kosher salt", + "all-purpose flour", + "unsalted butter" + ] + }, + { + "id": 33785, + "cuisine": "mexican", + "ingredients": [ + "honey", + "boneless country pork ribs", + "baking powder", + "all-purpose flour", + "garlic cloves", + "poblano chiles", + "yellow corn meal", + "coriander seeds", + "large eggs", + "chili powder", + "frozen corn kernels", + "low salt chicken broth", + "chopped cilantro fresh", + "white onion", + "unsalted butter", + "whole milk", + "salt", + "cumin seed", + "coarse kosher salt", + "green bell pepper", + "salsa verde", + "jalapeno chilies", + "vegetable oil", + "sharp cheddar cheese", + "sour cream", + "dried oregano" + ] + }, + { + "id": 4151, + "cuisine": "greek", + "ingredients": [ + "butter", + "small curd cottage cheese", + "eggs", + "phyllo pastry", + "feta cheese" + ] + }, + { + "id": 3270, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chicken meat", + "scallions", + "sugar", + "hoisin sauce", + "garlic", + "corn starch", + "dark soy sauce", + "water", + "ginger", + "oil", + "red chili peppers", + "Shaoxing wine", + "salt", + "Chinese rice vinegar" + ] + }, + { + "id": 25143, + "cuisine": "italian", + "ingredients": [ + "kale", + "garlic", + "balsamic vinegar", + "salt and ground black pepper", + "olive oil" + ] + }, + { + "id": 21466, + "cuisine": "southern_us", + "ingredients": [ + "vidalia onion", + "balsamic vinegar", + "bourbon whiskey", + "dark brown sugar", + "kosher salt", + "butter", + "fresh thyme leaves" + ] + }, + { + "id": 13692, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "unsalted butter", + "chopped celery", + "tomato juice", + "bacon", + "garlic cloves", + "cayenne", + "dry mustard", + "long grain white rice", + "kosher salt", + "finely chopped onion", + "hot smoked paprika" + ] + }, + { + "id": 49625, + "cuisine": "southern_us", + "ingredients": [ + "red wine vinegar", + "collards", + "olive oil", + "scallions", + "lean bacon", + "small red potato", + "dijon style mustard" + ] + }, + { + "id": 28869, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "garlic salt", + "grated parmesan cheese", + "dried rosemary", + "dried basil", + "french bread", + "dried thyme", + "butter" + ] + }, + { + "id": 39217, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "salt", + "bacon drippings", + "freshly ground pepper", + "butter" + ] + }, + { + "id": 45844, + "cuisine": "french", + "ingredients": [ + "fronds", + "kosher salt", + "butter", + "lobster", + "orange", + "champagne" + ] + }, + { + "id": 39953, + "cuisine": "mexican", + "ingredients": [ + "baking soda", + "red pepper", + "semisweet chocolate chunks", + "ground cinnamon", + "large eggs", + "salt", + "unsalted butter", + "vanilla extract", + "golden brown sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 40251, + "cuisine": "chinese", + "ingredients": [ + "baby bok choy", + "vegetable oil", + "carrots", + "green onions", + "nappa cabbage", + "soy sauce", + "sauce", + "beansprouts", + "chicken broth", + "sesame oil", + "chow mein noodles" + ] + }, + { + "id": 5945, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "all-purpose flour", + "fettucine", + "1% low-fat milk", + "applewood smoked bacon", + "parmigiano reggiano cheese", + "fresh parsley", + "minced garlic", + "salt" + ] + }, + { + "id": 33297, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "minced onion", + "salt", + "white vinegar", + "water", + "jalapeno chilies", + "corn starch", + "shredded cheddar cheese", + "flour tortillas", + "cayenne pepper", + "cold water", + "refried beans", + "chili powder", + "ground beef" + ] + }, + { + "id": 12847, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "fresh lime juice", + "coarse salt", + "olive oil", + "long grain white rice", + "garlic cloves" + ] + }, + { + "id": 48410, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "vegetable oil", + "radishes", + "sugar", + "cucumber" + ] + }, + { + "id": 17709, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "all purpose unbleached flour", + "unsalted butter", + "oil", + "baking powder", + "cornmeal", + "evaporated milk", + "salt" + ] + }, + { + "id": 9033, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "beef bouillon granules", + "orange juice", + "brown sugar", + "lime", + "loin pork roast", + "fresh cilantro", + "onion powder", + "oregano", + "soy sauce", + "garlic powder", + "salt" + ] + }, + { + "id": 48073, + "cuisine": "italian", + "ingredients": [ + "capers", + "pork tenderloin", + "lemon juice", + "water", + "salt", + "pepper", + "cooking spray", + "fresh parsley", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 43766, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "oil", + "white rice", + "fine egg noodles", + "salt" + ] + }, + { + "id": 30996, + "cuisine": "irish", + "ingredients": [ + "lamb cutlet", + "russet potatoes", + "salt", + "seasoning", + "Guinness Beer", + "worcestershire sauce", + "thyme", + "rosemary", + "sliced leeks", + "carrots", + "lamb stock", + "parsley", + "garlic", + "onions" + ] + }, + { + "id": 36364, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "ginger", + "tamarind paste", + "coconut milk", + "tomato paste", + "chili powder", + "cooked meat", + "green beans", + "ground cumin", + "lemongrass", + "purple onion", + "carrots", + "greens", + "red chili peppers", + "garlic", + "ground coriander", + "coriander" + ] + }, + { + "id": 12984, + "cuisine": "thai", + "ingredients": [ + "honey mustard", + "chicken drumsticks", + "sweet chili sauce", + "panko breadcrumbs", + "eggs", + "sea salt", + "vegetable oil" + ] + }, + { + "id": 17861, + "cuisine": "french", + "ingredients": [ + "olive oil", + "butter", + "onions", + "black pepper", + "dry white wine", + "cheese", + "potatoes", + "bacon", + "cream", + "chives", + "garlic cloves" + ] + }, + { + "id": 17866, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "garlic", + "pepper", + "lemon", + "almond milk", + "cherry tomatoes", + "basil", + "cucumber", + "avocado", + "basil leaves", + "salt" + ] + }, + { + "id": 32691, + "cuisine": "mexican", + "ingredients": [ + "reduced fat monterey jack cheese", + "large egg yolks", + "salt", + "poblano chiles", + "large egg whites", + "ground black pepper", + "chopped onion", + "canola oil", + "fresh cilantro", + "salsa verde", + "all-purpose flour", + "cornmeal", + "chopped tomatoes", + "cooking spray", + "goat cheese" + ] + }, + { + "id": 14002, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "beef tenderloin", + "sake", + "green onions", + "mirin", + "sugar", + "sesame oil" + ] + }, + { + "id": 39887, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "all-purpose flour", + "boneless skinless chicken breast halves", + "chicken broth", + "baking soda", + "dry sherry", + "toasted sesame seeds", + "white vinegar", + "chile paste", + "vegetable oil", + "corn starch", + "canola oil", + "soy sauce", + "baking powder", + "garlic", + "white sugar" + ] + }, + { + "id": 39331, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "olive oil", + "garlic", + "canned low sodium chicken broth", + "mushrooms", + "fresh parsley", + "angel hair", + "ground black pepper", + "salt", + "dried thyme", + "red pepper flakes", + "onions" + ] + }, + { + "id": 47497, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "sugar", + "buttermilk", + "table salt", + "baking powder", + "baking soda", + "all-purpose flour" + ] + }, + { + "id": 35498, + "cuisine": "greek", + "ingredients": [ + "spinach", + "lemon", + "garlic cloves", + "navy beans", + "feta cheese", + "extra-virgin olive oil", + "garbanzo beans", + "kalamata", + "dried oregano", + "tomato paste", + "low sodium chicken broth", + "yellow onion" + ] + }, + { + "id": 13510, + "cuisine": "british", + "ingredients": [ + "butter", + "confectioners sugar", + "all-purpose flour", + "jam", + "white sugar", + "eggs", + "ground almonds" + ] + }, + { + "id": 19334, + "cuisine": "italian", + "ingredients": [ + "eggs", + "vegetable oil", + "white sugar", + "egg whites", + "salt", + "sesame seeds", + "red wine", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 8908, + "cuisine": "french", + "ingredients": [ + "sourdough bread", + "pink lady apple", + "thyme leaves", + "black pepper", + "unsalted butter", + "yellow onion", + "lower sodium beef broth", + "bay leaves", + "grated Gruyère cheese", + "Madeira", + "sherry vinegar", + "apple cider", + "thyme sprigs" + ] + }, + { + "id": 11332, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "chopped fresh thyme", + "pitted kalamata olives", + "anchovy fillets", + "capers", + "garlic", + "olive oil", + "lemon juice" + ] + }, + { + "id": 7250, + "cuisine": "mexican", + "ingredients": [ + "feta cheese", + "flour", + "garlic", + "tortilla chips", + "canned low sodium chicken broth", + "cayenne", + "chili powder", + "salt", + "ground cumin", + "ground black pepper", + "boneless skinless chicken breasts", + "purple onion", + "sour cream", + "sugar", + "cooking oil", + "paprika", + "cilantro leaves" + ] + }, + { + "id": 29605, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "whole kernel corn, drain", + "chopped cilantro fresh", + "black beans", + "red enchilada sauce", + "jack cheese", + "scallions", + "cooked chicken", + "corn tortillas" + ] + }, + { + "id": 29147, + "cuisine": "italian", + "ingredients": [ + "eggs", + "shredded parmesan cheese", + "heavy cream", + "thick-cut bacon", + "cooked chicken", + "scallions", + "linguine" + ] + }, + { + "id": 44092, + "cuisine": "italian", + "ingredients": [ + "Domino Confectioners Sugar", + "cream cheese, soften", + "biscotti", + "half & half", + "sorbet", + "toasted slivered almonds" + ] + }, + { + "id": 4620, + "cuisine": "british", + "ingredients": [ + "ground black pepper", + "cayenne pepper", + "all purpose unbleached flour", + "unsalted butter", + "extra sharp white cheddar cheese", + "salt" + ] + }, + { + "id": 2696, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "spring onions", + "sugar", + "beef", + "oil", + "sake", + "water", + "ginger", + "soy sauce", + "egg whites", + "oyster sauce" + ] + }, + { + "id": 3349, + "cuisine": "moroccan", + "ingredients": [ + "instant couscous", + "frozen peas", + "diced tomatoes", + "chickpeas", + "ground cumin", + "salt", + "chopped cilantro", + "dried currants", + "cayenne pepper", + "boiling water" + ] + }, + { + "id": 35663, + "cuisine": "southern_us", + "ingredients": [ + "celery salt", + "black pepper", + "cayenne pepper", + "ground cinnamon", + "paprika", + "ground cardamom", + "ground ginger", + "mace", + "ground allspice", + "ground cloves", + "dry mustard" + ] + }, + { + "id": 30448, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "taco seasoning", + "tomatoes", + "green onions", + "avocado", + "jalapeno chilies", + "fresh cilantro", + "non dairy sour cream" + ] + }, + { + "id": 1691, + "cuisine": "italian", + "ingredients": [ + "red potato", + "italian seasoning", + "olive oil", + "bread crumbs", + "parmesan cheese" + ] + }, + { + "id": 47180, + "cuisine": "cajun_creole", + "ingredients": [ + "hungarian paprika", + "peanut oil", + "onions", + "chicken broth", + "green onions", + "shrimp", + "canola oil", + "celery ribs", + "bay leaves", + "garlic cloves", + "dried oregano", + "green bell pepper", + "all-purpose flour", + "thyme" + ] + }, + { + "id": 38612, + "cuisine": "thai", + "ingredients": [ + "green leaf lettuce", + "garlic", + "chopped cilantro", + "lime juice", + "thai chile", + "carrots", + "large eggs", + "simple syrup", + "Thai fish sauce", + "chinese celery", + "vegetable oil", + "yellow onion" + ] + }, + { + "id": 6492, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "sliced carrots", + "dark brown sugar", + "canola oil", + "lower sodium soy sauce", + "cilantro leaves", + "green beans", + "water", + "light coconut milk", + "organic vegetable broth", + "peeled fresh ginger", + "red curry paste", + "fresh lime juice" + ] + }, + { + "id": 13874, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "yellow corn meal", + "buttermilk", + "butter", + "soft-wheat flour", + "self-rising cornmeal" + ] + }, + { + "id": 42541, + "cuisine": "mexican", + "ingredients": [ + "sweetened condensed milk", + "whipping cream", + "dark brown sugar" + ] + }, + { + "id": 33986, + "cuisine": "southern_us", + "ingredients": [ + "unbaked pie crusts", + "buttermilk", + "white sugar", + "sweet potatoes", + "salt", + "baking soda", + "vanilla extract", + "eggs", + "butter", + "all-purpose flour" + ] + }, + { + "id": 12907, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "honey", + "finely chopped onion", + "heavy cream", + "cashew nuts", + "water", + "unsalted butter", + "marinade", + "salt", + "garlic paste", + "garam masala", + "yoghurt", + "paneer", + "ground turmeric", + "tomatoes", + "lime juice", + "coriander powder", + "spices", + "oil" + ] + }, + { + "id": 10235, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "kidney beans", + "diced tomatoes", + "hot pork sausage", + "crushed tomatoes", + "jalapeno chilies", + "beer", + "onions", + "black beans", + "ground black pepper", + "chili sauce", + "ground beef", + "taco seasoning mix", + "ranch dressing", + "red bell pepper" + ] + }, + { + "id": 15020, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "pear tomatoes", + "pancetta", + "grated parmesan cheese", + "squash", + "kosher salt", + "baby arugula", + "fresh parsley", + "zucchini", + "orzo" + ] + }, + { + "id": 5773, + "cuisine": "indian", + "ingredients": [ + "yellow corn meal", + "light molasses", + "maple syrup", + "vanilla beans", + "cinnamon", + "vanilla ice cream", + "unsalted butter", + "dark brown sugar", + "milk", + "ginger" + ] + }, + { + "id": 36279, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "penne pasta", + "onions", + "water", + "portabello mushroom", + "red bell pepper", + "plain yogurt", + "tahini", + "lemon juice", + "olive oil", + "garlic", + "chopped parsley" + ] + }, + { + "id": 17960, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "fresh parmesan cheese", + "olive oil flavored cooking spray", + "dough", + "artichoke hearts", + "sliced mushrooms", + "tomato sauce", + "prosciutto", + "nonfat ricotta cheese", + "pepper", + "garlic cloves" + ] + }, + { + "id": 3293, + "cuisine": "british", + "ingredients": [ + "mixed dried fruit", + "oil", + "boiling water", + "caster sugar", + "butter", + "fast-rising active dry yeast", + "strong white bread flour", + "muscovado sugar", + "flour for dusting", + "water", + "salt", + "lard" + ] + }, + { + "id": 37215, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "ginger", + "garlic cloves", + "low sodium vegetable stock", + "lime", + "red curry paste", + "coconut oil", + "sweet onion", + "salt", + "coconut milk", + "pepper", + "butternut squash", + "roasted peanuts" + ] + }, + { + "id": 26196, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "all-purpose flour", + "large eggs", + "salt", + "olive oil" + ] + }, + { + "id": 13368, + "cuisine": "indian", + "ingredients": [ + "sugar", + "peeled fresh ginger", + "bay leaf", + "sliced green onions", + "flatbread", + "cooking spray", + "cinnamon sticks", + "mango", + "ice cubes", + "water", + "cardamom pods", + "large shrimp", + "clove", + "kosher salt", + "black tea leaves", + "white peppercorns" + ] + }, + { + "id": 10122, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "vanilla extract", + "pastry cream", + "unsalted butter", + "corn starch", + "sugar", + "tart shells", + "strawberries", + "vanilla beans", + "whole milk" + ] + }, + { + "id": 16552, + "cuisine": "thai", + "ingredients": [ + "sugar", + "reduced sodium soy sauce", + "freshly ground pepper", + "fresh lime juice", + "kosher salt", + "lime wedges", + "garlic cloves", + "fresh basil leaves", + "fish sauce", + "steamed rice", + "vegetable oil", + "carrots", + "red chili peppers", + "low sodium chicken broth", + "scallions", + "ground beef" + ] + }, + { + "id": 4998, + "cuisine": "mexican", + "ingredients": [ + "boneless pork shoulder", + "water", + "chili powder", + "white onion", + "hominy", + "cracked black pepper", + "kosher salt", + "low sodium chicken broth", + "garlic cloves", + "avocado", + "olive oil", + "cilantro" + ] + }, + { + "id": 34865, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "chopped garlic", + "herbs", + "salt", + "extra-virgin olive oil", + "grated parmesan cheese", + "freshly ground pepper" + ] + }, + { + "id": 2857, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "peanuts", + "ginger", + "scallions", + "red chili peppers", + "sesame oil", + "shaoxing", + "sugar", + "boneless skinless chicken breasts", + "garlic", + "corn starch", + "chicken stock", + "soy sauce", + "balsamic vinegar", + "peanut oil" + ] + }, + { + "id": 21422, + "cuisine": "italian", + "ingredients": [ + "heavy cream", + "fresh lemon juice", + "grated parmesan cheese", + "grated lemon zest", + "hot red pepper flakes", + "peas", + "gnocchi", + "baby spinach", + "garlic cloves" + ] + }, + { + "id": 48424, + "cuisine": "southern_us", + "ingredients": [ + "chopped nuts", + "heavy whipping cream", + "butter", + "vanilla extract", + "baking soda", + "white sugar" + ] + }, + { + "id": 3339, + "cuisine": "indian", + "ingredients": [ + "chile pepper", + "onions", + "tomatoes", + "peanut powder", + "clarified butter", + "salt", + "white sugar", + "shredded cabbage", + "cumin seed", + "chopped cilantro fresh" + ] + }, + { + "id": 18448, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "chicken breasts", + "shredded cheddar cheese", + "flour tortillas", + "condensed cream of mushroom soup", + "diced green chilies", + "butter", + "milk", + "green onions", + "sour cream" + ] + }, + { + "id": 12309, + "cuisine": "british", + "ingredients": [ + "honey", + "dried apricot", + "light corn syrup", + "fresh lemon juice", + "water", + "semisweet chocolate", + "whipped cream", + "fresh raspberries", + "sugar", + "large egg yolks", + "half & half", + "whipping cream", + "corn starch", + "white chocolate", + "unsalted butter", + "dark rum", + "pound cake", + "liqueur" + ] + }, + { + "id": 43246, + "cuisine": "mexican", + "ingredients": [ + "salt", + "boiling water", + "water", + "garlic cloves", + "ground cumin", + "tomato sauce", + "chopped onion", + "dried oregano", + "tomatillos", + "dried chile" + ] + }, + { + "id": 24027, + "cuisine": "french", + "ingredients": [ + "golden brown sugar", + "whipping cream", + "sugar", + "ground nutmeg", + "brandy", + "dark rum", + "large egg yolks", + "salt" + ] + }, + { + "id": 48193, + "cuisine": "mexican", + "ingredients": [ + "water", + "garlic", + "fresh oregano", + "canola oil", + "avocado", + "chili powder", + "fresh chili", + "corn tortillas", + "brown rice", + "salt", + "anasazi beans", + "pepper", + "summer squash", + "salsa", + "onions" + ] + }, + { + "id": 47395, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "picante sauce" + ] + }, + { + "id": 40081, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "pork spareribs", + "sherry", + "crushed garlic", + "honey" + ] + }, + { + "id": 20218, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "low salt chicken broth", + "fresh basil", + "garlic cloves", + "heavy whipping cream", + "saffron threads", + "dry white wine", + "paccheri", + "white onion", + "fresh lemon juice", + "chicken thighs" + ] + }, + { + "id": 38185, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "roma tomatoes", + "red bell pepper", + "sliced black olives", + "salt", + "olive oil", + "jalapeno chilies", + "fresh lime juice", + "diced red onions", + "whole kernel corn, drain" + ] + }, + { + "id": 6328, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "ginger", + "garlic cloves", + "tumeric", + "fenugreek", + "green chilies", + "frozen peas", + "potatoes", + "salt", + "onions", + "fresh coriander", + "chili powder", + "oil", + "plum tomatoes" + ] + }, + { + "id": 30237, + "cuisine": "french", + "ingredients": [ + "mint sprigs", + "dark brown sugar", + "sugar", + "vanilla extract", + "whipping cream", + "egg yolks", + "strawberries" + ] + }, + { + "id": 10426, + "cuisine": "jamaican", + "ingredients": [ + "brown sugar", + "vegetables", + "worcestershire sauce", + "scallions", + "nutmeg", + "minced ginger", + "cinnamon", + "garlic", + "white vinegar", + "soy sauce", + "tortillas", + "fresh orange juice", + "allspice", + "chili flakes", + "olive oil", + "tempeh", + "salt" + ] + }, + { + "id": 18374, + "cuisine": "southern_us", + "ingredients": [ + "chopped ham", + "black-eyed peas", + "chopped onion", + "dried thyme", + "mustard greens", + "long grain white rice", + "water", + "whole grain dijon mustard", + "garlic cloves", + "olive oil", + "salt" + ] + }, + { + "id": 11771, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "buttermilk" + ] + }, + { + "id": 46502, + "cuisine": "greek", + "ingredients": [ + "lemon", + "chickpeas", + "extra-virgin olive oil", + "fresh parsley", + "sea salt", + "smoked paprika", + "plain yogurt", + "garlic" + ] + }, + { + "id": 43212, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "all-purpose flour", + "chili powder", + "green onions", + "eggs", + "Pace Picante Sauce" + ] + }, + { + "id": 31092, + "cuisine": "italian", + "ingredients": [ + "jack cheese", + "low sodium chicken broth", + "zucchini", + "juice", + "prepar pesto", + "elbow macaroni", + "tomatoes", + "grated parmesan cheese" + ] + }, + { + "id": 16273, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "diced tomatoes", + "long grain brown rice", + "diced green chilies", + "vegetable broth", + "cumin", + "sweet onion", + "extra-virgin olive oil", + "chopped cilantro", + "sea salt", + "garlic" + ] + }, + { + "id": 30425, + "cuisine": "italian", + "ingredients": [ + "pepper", + "heavy cream", + "carrots", + "bay leaf", + "chicken", + "chicken broth", + "parsley", + "salt", + "celery", + "oregano", + "rosemary", + "basil", + "thyme", + "onions", + "frozen spinach", + "olive oil", + "garlic", + "gnocchi", + "marjoram" + ] + }, + { + "id": 3638, + "cuisine": "indian", + "ingredients": [ + "seedless green grape", + "cumin seed", + "salt", + "crushed red pepper", + "yogurt cheese", + "brown sugar", + "chopped walnuts" + ] + }, + { + "id": 15851, + "cuisine": "mexican", + "ingredients": [ + "fresh lime juice", + "avocado", + "chopped cilantro fresh", + "kosher salt" + ] + }, + { + "id": 5146, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "linguine", + "gingerroot", + "water", + "rice vinegar", + "corn starch", + "minced garlic", + "scotch", + "scallions", + "sugar", + "vegetable oil", + "clams, well scrub", + "fermented black beans" + ] + }, + { + "id": 33446, + "cuisine": "italian", + "ingredients": [ + "penne pasta", + "grated parmesan cheese", + "plum tomatoes", + "fresh basil", + "italian salad dressing", + "purple onion" + ] + }, + { + "id": 21929, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "garlic cloves", + "pepper", + "poblano peppers", + "low sodium chicken stock", + "unsalted butter", + "sweet corn", + "sliced green onions", + "sweet onion", + "half & half", + "tortilla chips" + ] + }, + { + "id": 37519, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "whole milk", + "mixed greens", + "water", + "bacon", + "unsalted butter", + "all-purpose flour", + "brown sugar", + "baking powder" + ] + }, + { + "id": 20921, + "cuisine": "cajun_creole", + "ingredients": [ + "ground pepper", + "ground pork", + "celery", + "chicken stock", + "green onions", + "garlic cloves", + "onions", + "cooked rice", + "chili powder", + "chicken livers", + "canola oil", + "jalapeno chilies", + "salt", + "fresh parsley" + ] + }, + { + "id": 9220, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "cumin seed", + "whole cloves", + "salt", + "basmati rice", + "garam masala", + "butter", + "onions", + "water", + "vegetable oil", + "frozen mixed vegetables" + ] + }, + { + "id": 24202, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "boneless skinless chicken breasts", + "fat-free chicken broth", + "garlic powder", + "onion powder", + "enchilada sauce", + "Jiffy Corn Muffin Mix", + "yellow corn", + "ground cumin", + "water", + "chili powder", + "all-purpose flour" + ] + }, + { + "id": 16723, + "cuisine": "japanese", + "ingredients": [ + "boneless chicken skinless thigh", + "udon", + "carrots", + "spinach", + "mirin", + "scallions", + "shiitake", + "littleneck clams", + "snow peas", + "light soy sauce", + "napa cabbage leaves", + "shrimp" + ] + }, + { + "id": 44488, + "cuisine": "mexican", + "ingredients": [ + "water", + "green enchilada sauce", + "pinto beans", + "vegetarian chicken", + "garlic powder", + "salt", + "chopped cilantro fresh", + "vegetable bouillon", + "diced tomatoes", + "corn tortillas", + "pepper", + "chili powder", + "frozen corn", + "ground cumin" + ] + }, + { + "id": 43743, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "purple onion", + "jalapeno chilies", + "chopped cilantro fresh", + "lime", + "salt", + "garlic", + "plum tomatoes" + ] + }, + { + "id": 17393, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "pitted date", + "onions", + "brown sugar", + "fresh cilantro", + "ground cumin", + "tumeric", + "lemon juice", + "green olives", + "water", + "chicken thighs" + ] + }, + { + "id": 4533, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "olive oil", + "water", + "Philadelphia Cooking Creme", + "prosciutto" + ] + }, + { + "id": 19417, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "kalamata", + "water", + "lemon", + "pasta shells", + "capers", + "white italian tuna in olive oil", + "extra-virgin olive oil", + "artichoke hearts", + "Italian parsley leaves", + "salt" + ] + }, + { + "id": 40398, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "salt", + "fontina cheese", + "mushrooms", + "cooking spray", + "polenta", + "fresh basil", + "Alfredo sauce" + ] + }, + { + "id": 31830, + "cuisine": "indian", + "ingredients": [ + "sesame seeds", + "chile pepper", + "cilantro leaves", + "coconut milk", + "fresh ginger root", + "garlic", + "ground coriander", + "kalonji", + "tomato purée", + "chili powder", + "salt", + "cumin seed", + "ground turmeric", + "eggplant", + "vegetable oil", + "fenugreek seeds", + "onions" + ] + }, + { + "id": 21602, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "sliced almonds", + "red wine vinegar", + "country bread", + "seedless green grape", + "whole milk", + "blanched almonds", + "kosher salt", + "large garlic cloves", + "green apples" + ] + }, + { + "id": 16995, + "cuisine": "vietnamese", + "ingredients": [ + "coconut juice", + "minced garlic", + "thai chile", + "brown sugar", + "green onions", + "caramel sauce", + "fish sauce", + "cooking oil", + "steak", + "black pepper", + "shallots" + ] + }, + { + "id": 18682, + "cuisine": "indian", + "ingredients": [ + "peeled fresh ginger", + "organic vegetable broth", + "canola oil", + "red lentils", + "purple onion", + "chopped cilantro fresh", + "spices", + "garlic cloves", + "tomato paste", + "salt", + "basmati rice" + ] + }, + { + "id": 16237, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "garlic", + "olive oil", + "chicken", + "dried basil", + "dry bread crumbs", + "parmesan cheese" + ] + }, + { + "id": 15345, + "cuisine": "jamaican", + "ingredients": [ + "flounder", + "baby spinach", + "lime juice", + "flour tortillas", + "tomatoes", + "jamaican jerk season", + "mango", + "fresh cilantro", + "chile pepper" + ] + }, + { + "id": 2355, + "cuisine": "southern_us", + "ingredients": [ + "raisins", + "orange", + "white sugar", + "dates", + "orange juice" + ] + }, + { + "id": 25944, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "garlic", + "onions", + "tumeric", + "chili powder", + "oil", + "ground cumin", + "extra firm tofu", + "salt", + "plum tomatoes", + "garam masala", + "cilantro", + "lemon juice" + ] + }, + { + "id": 41219, + "cuisine": "italian", + "ingredients": [ + "fresh lemon juice", + "butter", + "grated lemon peel", + "large garlic cloves", + "asparagus", + "flat leaf parsley" + ] + }, + { + "id": 30733, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "curry powder", + "salt", + "onions", + "coconut oil", + "sweet potatoes", + "red bell pepper", + "chicken", + "brown sugar", + "fresh ginger root", + "garlic cloves", + "ground turmeric", + "pepper", + "cilantro", + "coconut milk" + ] + }, + { + "id": 18502, + "cuisine": "southern_us", + "ingredients": [ + "romano cheese", + "roasted red peppers", + "creole seasoning", + "canola oil", + "vidalia onion", + "chicken flavor stuffing mix", + "bacon slices", + "onion gravy", + "black pepper", + "large eggs", + "Bisquick Original All-Purpose Baking Mix", + "fresh basil", + "milk", + "chicken breast halves", + "cream cheese, soften" + ] + }, + { + "id": 13527, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "potatoes", + "nopalitos", + "tomatoes", + "salt", + "jalapeno chilies", + "onions" + ] + }, + { + "id": 17028, + "cuisine": "french", + "ingredients": [ + "whole milk", + "salt", + "large egg yolks", + "raisins", + "large eggs", + "whipping cream", + "powdered sugar", + "golden raisins", + "all-purpose flour" + ] + }, + { + "id": 29231, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "all-purpose flour", + "pickle juice", + "bread and butter pickle slices", + "hot pepper sauce", + "buttermilk", + "garlic cloves", + "mayonaise", + "unsalted butter", + "purple onion", + "cabbage", + "sandwich rolls", + "ground black pepper", + "boneless skinless chicken breasts", + "peanut oil" + ] + }, + { + "id": 6820, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "bacon", + "pork sausages", + "kosher salt", + "ground black pepper", + "ham", + "stock", + "Guinness Beer", + "yellow onion", + "water", + "russet potatoes", + "fresh parsley" + ] + }, + { + "id": 6863, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "paprika", + "chopped cilantro", + "fresh curry leaves", + "cumin seed", + "ground turmeric", + "kosher salt", + "peanut oil", + "jaggery", + "chickpea flour", + "black-eyed peas", + "tamarind concentrate", + "asafetida" + ] + }, + { + "id": 6301, + "cuisine": "brazilian", + "ingredients": [ + "red chili peppers", + "ground black pepper", + "salt", + "shrimp", + "cashew nuts", + "minced garlic", + "lime wedges", + "cilantro leaves", + "coconut milk", + "long grain white rice", + "olive oil", + "fish stock", + "blanched almonds", + "dried shrimp", + "minced ginger", + "sea bass fillets", + "chopped onion", + "fresh lime juice" + ] + }, + { + "id": 27504, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "ground pork", + "scallions", + "chicken stock", + "giblet", + "salt", + "fresh parsley", + "bacon drippings", + "flour", + "garlic", + "ground beef", + "pepper flakes", + "worcestershire sauce", + "green pepper", + "onions" + ] + }, + { + "id": 28488, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "jam", + "hoisin sauce", + "pork ribs", + "rice vinegar", + "garlic" + ] + }, + { + "id": 45274, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "basil leaves", + "sweet pepper", + "fresh marjoram", + "extra-virgin olive oil", + "salt", + "lime juice", + "garlic", + "freshly ground pepper", + "chiles", + "green tomatoes", + "purple onion" + ] + }, + { + "id": 9184, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "ground nutmeg", + "ice cream", + "bartlett pears", + "french baguette", + "dry white wine", + "salt", + "sugar", + "large eggs", + "mint sprigs", + "caramel sauce", + "milk", + "butter", + "pansies" + ] + }, + { + "id": 26248, + "cuisine": "irish", + "ingredients": [ + "mustard", + "cider", + "brown sugar", + "clove", + "ham" + ] + }, + { + "id": 19042, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "salt", + "garlic cloves", + "skim milk", + "chives", + "chopped onion", + "asparagus", + "bow-tie pasta", + "egg substitute", + "bacon slices", + "freshly ground pepper" + ] + }, + { + "id": 21203, + "cuisine": "southern_us", + "ingredients": [ + "white pepper", + "whole milk", + "red pepper", + "all-purpose flour", + "onions", + "sugar", + "salted butter", + "butter", + "garlic", + "flat leaf parsley", + "crawfish", + "green onions", + "old bay seasoning", + "Italian seasoned breadcrumbs", + "black pepper", + "egg whites", + "buttermilk", + "salt", + "celery" + ] + }, + { + "id": 45649, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "yoghurt", + "chili sauce", + "pepper", + "salt", + "lemon juice", + "red chili powder", + "paneer", + "oil", + "ground ginger", + "amchur", + "tomato ketchup", + "ground turmeric" + ] + }, + { + "id": 4046, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "salt", + "chopped parsley", + "olive oil", + "garlic cloves", + "chicken thighs", + "water", + "long-grain rice", + "onions", + "chicken broth", + "lemon zest", + "lemon juice", + "dried oregano" + ] + }, + { + "id": 6302, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "water", + "chili powder", + "green cardamom", + "onions", + "tomatoes", + "cream", + "coriander powder", + "paneer", + "ground cardamom", + "ground cumin", + "black pepper", + "almonds", + "poppy seeds", + "oil", + "ground turmeric", + "ground cinnamon", + "fresh coriander", + "yoghurt", + "salt", + "bay leaf" + ] + }, + { + "id": 36122, + "cuisine": "korean", + "ingredients": [ + "honey", + "sesame oil", + "soy sauce", + "pork chops", + "garlic", + "olive oil", + "ginger", + "black pepper", + "Sriracha" + ] + }, + { + "id": 26130, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "green onions", + "sweet onion", + "zucchini", + "dried parsley", + "salt and ground black pepper", + "lemon juice", + "yellow squash", + "orzo pasta" + ] + }, + { + "id": 6463, + "cuisine": "french", + "ingredients": [ + "whole grain dijon mustard", + "salt", + "boneless chicken skinless thigh", + "orange marmalade", + "garlic cloves", + "ground black pepper", + "orange juice", + "fat free less sodium chicken broth", + "cooking spray", + "sliced green onions" + ] + }, + { + "id": 40635, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "vanilla extract", + "sugar", + "baking powder", + "all-purpose flour", + "large eggs", + "salt", + "honey", + "teas", + "grated lemon peel" + ] + }, + { + "id": 39239, + "cuisine": "mexican", + "ingredients": [ + "corn chips", + "cream cheese", + "shredded cheddar cheese", + "chili" + ] + }, + { + "id": 34518, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "capers", + "extra-virgin olive oil", + "onions", + "tomatoes", + "red wine vinegar", + "flat leaf parsley", + "eggplant", + "salt" + ] + }, + { + "id": 39832, + "cuisine": "greek", + "ingredients": [ + "pepper", + "greek style plain yogurt", + "diced onions", + "kalamata", + "lemon juice", + "sliced tomatoes", + "tortillas", + "chunk light tuna in water", + "baby spinach leaves", + "salt", + "feta cheese crumbles" + ] + }, + { + "id": 23859, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "butter", + "all-purpose flour", + "bananas", + "salt", + "evaporated milk", + "vanilla extract", + "sugar", + "egg yolks", + "vanilla wafers" + ] + }, + { + "id": 6556, + "cuisine": "italian", + "ingredients": [ + "veal cutlets", + "fresh lemon juice", + "fat free less sodium chicken broth", + "salt", + "flat leaf parsley", + "capers", + "butter", + "ground white pepper", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 8683, + "cuisine": "mexican", + "ingredients": [ + "red kidnei beans, rins and drain", + "fat free milk", + "hot sauce", + "large egg whites", + "chili powder", + "ground cumin", + "chili", + "cornbread mix", + "chopped onion", + "green chile", + "olive oil", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 7888, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "whole wheat flour", + "baking powder", + "milk", + "large eggs", + "salt", + "sugar", + "baking soda", + "vegetable oil", + "honey", + "cooking spray", + "sour cream" + ] + }, + { + "id": 7808, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "large shrimp", + "butter", + "broccoli florets", + "angel hair", + "sun-dried tomatoes in oil" + ] + }, + { + "id": 33908, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "olive oil", + "ginger", + "red bell pepper", + "pepper", + "vegetable stock", + "oil", + "red chili peppers", + "spring onions", + "salt", + "fish", + "lime", + "cilantro", + "garlic cloves" + ] + }, + { + "id": 5098, + "cuisine": "spanish", + "ingredients": [ + "fresh basil", + "bay leaves", + "spanish paprika", + "ground black pepper", + "garlic", + "olive oil", + "button mushrooms", + "chorizo sausage", + "chicken broth", + "potatoes", + "purple onion" + ] + }, + { + "id": 48591, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic", + "stir fry vegetable blend", + "vegetable oil", + "chicken fillets", + "sesame oil", + "cilantro leaves", + "sprouts", + "noodles" + ] + }, + { + "id": 45992, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "deveined shrimp", + "red chili powder", + "garam masala", + "salt", + "curry powder", + "ginger", + "garlic paste", + "paprika", + "canola oil" + ] + }, + { + "id": 1000, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "sour cream", + "boiling potatoes", + "salt", + "corn tortillas", + "vegetable oil", + "white cheese", + "cabbage", + "avocado", + "Mexican cheese", + "chopped cilantro" + ] + }, + { + "id": 30195, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "jalapeno chilies", + "tortilla chips", + "fresh lime juice", + "avocado", + "white onion", + "cilantro leaves", + "juice", + "chile sauce", + "green olives", + "kosher salt", + "halibut", + "cucumber", + "dried oregano", + "cotija", + "extra-virgin olive oil", + "fresh lemon juice", + "serrano chile" + ] + }, + { + "id": 31983, + "cuisine": "thai", + "ingredients": [ + "water", + "coconut cream", + "agar", + "eggs", + "pandanus leaf", + "palm sugar", + "white sugar" + ] + }, + { + "id": 48906, + "cuisine": "italian", + "ingredients": [ + "frozen whip topping, thaw", + "cookies", + "vanilla ice cream", + "chocolate fudge ice cream", + "sugar", + "almond extract", + "frozen raspberries", + "lemon juice" + ] + }, + { + "id": 12541, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "peanut oil", + "coriander", + "chicken thigh fillets", + "yellow onion", + "carrots", + "canned corn", + "Shaoxing wine", + "ginger", + "garlic cloves", + "frozen peas", + "chicken stock", + "shallots", + "rice", + "chillies" + ] + }, + { + "id": 41158, + "cuisine": "italian", + "ingredients": [ + "water", + "pasta shells", + "fresh parsley", + "capers", + "pecorino romano cheese", + "garlic cloves", + "tomatoes", + "olive oil", + "brine-cured black olives", + "onions", + "fresh marjoram", + "yellow bell pepper", + "red bell pepper" + ] + }, + { + "id": 39405, + "cuisine": "moroccan", + "ingredients": [ + "tomato purée", + "chopped tomatoes", + "salt", + "fresh mint", + "water", + "garlic", + "carrots", + "ground turmeric", + "black pepper", + "zucchini", + "chickpeas", + "couscous", + "ground cinnamon", + "olive oil", + "purple onion", + "smoked paprika" + ] + }, + { + "id": 16826, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "flour tortillas", + "sour cream", + "shredded Monterey Jack cheese", + "lime", + "garlic", + "boneless skinless chicken breast halves", + "tomatoes", + "olive oil", + "salt", + "chopped cilantro fresh", + "pepper", + "jalapeno chilies", + "onions" + ] + }, + { + "id": 45303, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "reduced-fat sour cream", + "Tabasco Green Pepper Sauce", + "long grain white rice", + "grated parmesan cheese", + "mozzarella cheese", + "scallions" + ] + }, + { + "id": 45310, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "cooking spray", + "onions", + "tomatoes", + "minced garlic", + "grouper", + "black pepper", + "salt", + "dried oregano", + "capers", + "olive oil", + "flat leaf parsley" + ] + }, + { + "id": 6040, + "cuisine": "chinese", + "ingredients": [ + "glutinous rice", + "pineapple", + "raisins", + "sugar", + "salt" + ] + }, + { + "id": 14676, + "cuisine": "italian", + "ingredients": [ + "rocket leaves", + "large garlic cloves", + "olive oil", + "penne pasta", + "cherry tomatoes", + "crushed red pepper", + "chicken breasts", + "feta cheese crumbles" + ] + }, + { + "id": 26241, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "salt", + "olive oil", + "veal scallops", + "pepper", + "all-purpose flour", + "chicken stock", + "butter" + ] + }, + { + "id": 38048, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "butter", + "sweet potatoes", + "pie shell", + "sugar", + "salt", + "nutmeg", + "cinnamon" + ] + }, + { + "id": 33581, + "cuisine": "spanish", + "ingredients": [ + "green olives", + "boneless skinless chicken breasts", + "garlic", + "long grain white rice", + "prosciutto", + "extra-virgin olive oil", + "yellow onion", + "capers", + "diced tomatoes", + "salt", + "saffron", + "ground black pepper", + "vegetable broth", + "smoked paprika" + ] + }, + { + "id": 4, + "cuisine": "italian", + "ingredients": [ + "orange peel", + "cookies", + "vanilla ice cream", + "gran marnier" + ] + }, + { + "id": 36596, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "fresh lime juice", + "ground black pepper", + "salt", + "plum tomatoes", + "tomatoes", + "garlic", + "chopped cilantro fresh", + "jalapeno chilies", + "celery" + ] + }, + { + "id": 386, + "cuisine": "french", + "ingredients": [ + "baguette", + "garlic", + "white button mushrooms", + "shallots", + "parsley leaves", + "white wine", + "butter" + ] + }, + { + "id": 47672, + "cuisine": "french", + "ingredients": [ + "sugar", + "dry red wine", + "sherry wine vinegar", + "fresh parsley", + "cornish game hens", + "all-purpose flour", + "chicken stock", + "butter", + "onions" + ] + }, + { + "id": 37104, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "serrano chile", + "tomatoes", + "dried pinto beans", + "onions", + "fresh cilantro", + "garlic cloves", + "water", + "salt pork" + ] + }, + { + "id": 12489, + "cuisine": "southern_us", + "ingredients": [ + "granulated garlic", + "baking powder", + "cayenne pepper", + "chicken", + "ground black pepper", + "fine sea salt", + "dried rosemary", + "dried thyme", + "buttermilk", + "dried oregano", + "dried sage", + "all-purpose flour", + "canola oil" + ] + }, + { + "id": 33467, + "cuisine": "japanese", + "ingredients": [ + "ajwain", + "coriander powder", + "all-purpose flour", + "asafetida", + "garlic paste", + "amchur", + "chili powder", + "oil", + "ground cumin", + "dough", + "water", + "flour", + "cumin seed", + "ginger paste", + "moong dal", + "garam masala", + "salt", + "ghee" + ] + }, + { + "id": 6739, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "water", + "basil leaves", + "all-purpose flour", + "whole nutmegs", + "fat free less sodium chicken broth", + "large eggs", + "crushed red pepper", + "chickpeas", + "kosher salt", + "chopped fresh chives", + "salt", + "garlic cloves", + "hazelnuts", + "mascarpone", + "extra-virgin olive oil", + "grated lemon zest" + ] + }, + { + "id": 28589, + "cuisine": "greek", + "ingredients": [ + "tomato paste", + "baby spinach", + "garlic cloves", + "dried oregano", + "olive oil", + "vegetable broth", + "fresh parsley", + "pepper", + "diced tomatoes", + "feta cheese crumbles", + "dried rosemary", + "greek seasoning", + "garbanzo beans", + "salt", + "onions" + ] + }, + { + "id": 36986, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "chicken breasts", + "carrots", + "sugar", + "salt", + "soba", + "sake", + "vegetable oil", + "onions", + "peeled fresh ginger", + "chinese cabbage" + ] + }, + { + "id": 8450, + "cuisine": "southern_us", + "ingredients": [ + "teas", + "vanilla beans", + "apple juice concentrate", + "lemon", + "fresh ginger", + "cinnamon sticks" + ] + }, + { + "id": 27003, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "water", + "vegetable oil", + "boiling potatoes", + "black pepper", + "large eggs", + "grated nutmeg", + "large egg yolks", + "salt" + ] + }, + { + "id": 34149, + "cuisine": "mexican", + "ingredients": [ + "zucchini", + "yellow onion", + "ground cumin", + "black beans", + "diced tomatoes", + "pinto beans", + "tomato paste", + "coarse salt", + "garlic cloves", + "ground pepper", + "extra-virgin olive oil", + "chipotle chile powder" + ] + }, + { + "id": 22459, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "flour", + "cilantro", + "monterey jack", + "avocado", + "chorizo", + "green onions", + "beer", + "pickled jalapenos", + "whole milk", + "tortilla chips", + "refried black beans", + "unsalted butter", + "lime wedges", + "sour cream" + ] + }, + { + "id": 45151, + "cuisine": "indian", + "ingredients": [ + "water", + "tamarind concentrate", + "salt", + "cayenne pepper", + "dates" + ] + }, + { + "id": 1712, + "cuisine": "russian", + "ingredients": [ + "mayonaise", + "fresh peas", + "medium shrimp", + "rock shrimp", + "kosher salt", + "yukon gold potatoes", + "fresh dill", + "sweet onion", + "carrots", + "pickles", + "large eggs" + ] + }, + { + "id": 49251, + "cuisine": "irish", + "ingredients": [ + "romaine lettuce", + "whole grain dijon mustard", + "extra-virgin olive oil", + "chicken-apple sausage", + "dijon mustard", + "fresh lemon juice", + "reduced fat cheddar cheese", + "ground black pepper", + "cornichons", + "soda bread", + "honey", + "balsamic vinegar", + "chutney" + ] + }, + { + "id": 39669, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "miso", + "garlic cloves", + "minced ginger", + "bonito flakes", + "rice vinegar", + "onions", + "soy sauce", + "yuzu", + "crushed red pepper flakes", + "konbu", + "fennel", + "vegetable stock", + "oil" + ] + }, + { + "id": 6823, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "garlic cloves", + "water", + "white wine vinegar", + "ground black pepper", + "salt", + "pinenuts", + "extra-virgin olive oil", + "fresh basil leaves" + ] + }, + { + "id": 17935, + "cuisine": "italian", + "ingredients": [ + "freshly ground pepper", + "table salt", + "italian seasoning", + "olive oil", + "bread slices" + ] + }, + { + "id": 26641, + "cuisine": "southern_us", + "ingredients": [ + "ground pepper", + "cayenne pepper", + "light brown sugar", + "soft sandwich rolls", + "pork shoulder boston butt", + "barbecue sauce", + "garlic cloves", + "cider vinegar", + "coarse salt" + ] + }, + { + "id": 20519, + "cuisine": "indian", + "ingredients": [ + "fresh tomatoes", + "eggplant", + "garlic", + "kosher salt", + "vegetable oil", + "onions", + "tumeric", + "garam masala", + "chopped cilantro", + "lime juice", + "hot green chile" + ] + }, + { + "id": 49116, + "cuisine": "japanese", + "ingredients": [ + "dried bonito flakes", + "konbu", + "water" + ] + }, + { + "id": 9199, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "garlic powder", + "salt", + "carrots", + "chopped cilantro fresh", + "chiles", + "sea salt", + "ground coriander", + "corn tortillas", + "mango", + "ground cinnamon", + "diced red onions", + "salsa", + "olive oil cooking spray", + "dried oregano", + "cauliflower", + "lime juice", + "paprika", + "scallions", + "chipotle chile powder", + "ground cumin" + ] + }, + { + "id": 524, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "salt", + "tomato paste", + "extra-virgin olive oil", + "dried rosemary", + "water", + "garlic", + "ground black pepper", + "dried oregano" + ] + }, + { + "id": 9299, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "yellow mustard", + "oil", + "canola", + "large eggs", + "salt", + "cornmeal", + "self rising flour", + "buttermilk", + "shrimp", + "milk", + "cajun seasoning", + "cayenne pepper" + ] + }, + { + "id": 47101, + "cuisine": "italian", + "ingredients": [ + "pure vanilla extract", + "large egg yolks", + "unsalted butter", + "amaretto", + "salt", + "chocolatecovered espresso beans", + "mini chocolate chips", + "instant espresso powder", + "large eggs", + "heavy cream", + "confectioners sugar", + "sugar", + "baking soda", + "semisweet chocolate", + "buttermilk", + "cocoa powder", + "water", + "mascarpone", + "baking powder", + "cake flour", + "boiling water" + ] + }, + { + "id": 25550, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "minced garlic", + "anchovy fillets", + "butter", + "olive oil", + "sardines" + ] + }, + { + "id": 6103, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "sesame oil", + "green onions", + "peanut oil", + "hoisin sauce", + "red pepper flakes", + "soy sauce", + "flank steak", + "white sugar" + ] + }, + { + "id": 36285, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "bread, cut into italian loaf", + "italian seasoning", + "pepper", + "shredded mozzarella cheese", + "mayonaise", + "meatballs", + "water", + "cream cheese, soften" + ] + }, + { + "id": 18425, + "cuisine": "irish", + "ingredients": [ + "pepper", + "salt", + "potatoes", + "onions", + "bacon", + "pork sausages", + "water", + "chopped parsley" + ] + }, + { + "id": 32322, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "paprika", + "monterey jack", + "seasoning salt", + "large eggs", + "elbow macaroni", + "skim milk", + "unsalted butter", + "freshly ground pepper", + "evaporated milk", + "coarse salt", + "extra sharp cheddar cheese" + ] + }, + { + "id": 36388, + "cuisine": "indian", + "ingredients": [ + "whole milk", + "cardamon", + "rice", + "pistachios" + ] + }, + { + "id": 28428, + "cuisine": "southern_us", + "ingredients": [ + "water", + "butter", + "reduced fat cheddar cheese", + "cooking spray", + "dry bread crumbs", + "large egg whites", + "salt", + "pepper", + "quickcooking grits" + ] + }, + { + "id": 48044, + "cuisine": "british", + "ingredients": [ + "eggs", + "self rising flour", + "margarine", + "caster sugar" + ] + }, + { + "id": 7471, + "cuisine": "southern_us", + "ingredients": [ + "organic cane sugar", + "all purpose unbleached flour", + "brown sugar", + "unsalted butter", + "salt", + "baking soda", + "whole milk yoghurt", + "eggs", + "peaches", + "vanilla extract" + ] + }, + { + "id": 36127, + "cuisine": "mexican", + "ingredients": [ + "processed cheese", + "chopped onion", + "green chile", + "garlic", + "boneless skinless chicken breast halves", + "tomatoes", + "butter", + "sour cream", + "seasoning salt", + "salsa", + "dried oregano" + ] + }, + { + "id": 15086, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "green onions", + "unsalted dry roast peanuts", + "fresh lime juice", + "shredded carrots", + "vegetable oil", + "freshly ground pepper", + "chopped cilantro fresh", + "angel hair", + "water chestnuts", + "green peas", + "garlic cloves", + "fresh ginger", + "sesame oil", + "seasoned rice wine vinegar", + "medium shrimp" + ] + }, + { + "id": 38330, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "vegetable oil", + "fresh lime juice", + "jalapeno chilies", + "garlic cloves", + "fresh coriander", + "canned tomatoes", + "onions", + "chicken breasts", + "corn tortillas" + ] + }, + { + "id": 26683, + "cuisine": "italian", + "ingredients": [ + "dry bread crumbs", + "zucchini", + "shredded mozzarella cheese", + "pasta sauce", + "burger style crumbles", + "grated parmesan cheese" + ] + }, + { + "id": 45723, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "water", + "butter", + "dry mustard", + "onions", + "ketchup", + "cream style corn", + "worcestershire sauce", + "hot sauce", + "chicken", + "light brown sugar", + "fresh ginger", + "lemon", + "salt", + "corn kernel whole", + "pepper", + "vegetable oil", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 33248, + "cuisine": "southern_us", + "ingredients": [ + "cream of tartar", + "whole milk", + "sharp cheddar cheese", + "baking soda", + "butter", + "sugar", + "baking powder", + "flour", + "salt" + ] + }, + { + "id": 19858, + "cuisine": "italian", + "ingredients": [ + "pizza sauce", + "flour for dusting", + "pizza doughs", + "extra-virgin olive oil", + "dried oregano", + "garlic cloves" + ] + }, + { + "id": 44655, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped green bell pepper", + "chopped fresh thyme", + "yellow onion", + "yukon gold", + "hungarian sweet paprika", + "meat", + "garlic", + "cream cheese, soften", + "ground red pepper", + "butter", + "fresh oregano", + "olive oil", + "onion powder", + "salt", + "celery" + ] + }, + { + "id": 18653, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sauce", + "cooking oil", + "asparagus", + "ginger paste", + "brown sugar", + "szechwan peppercorns" + ] + }, + { + "id": 41336, + "cuisine": "filipino", + "ingredients": [ + "low sodium soy sauce", + "shrimp", + "rice stick noodles", + "oil", + "onions", + "celery ribs", + "garlic", + "chicken pieces", + "chicken broth", + "carrots", + "cabbage" + ] + }, + { + "id": 33324, + "cuisine": "indian", + "ingredients": [ + "sugar", + "mustard seeds", + "white vinegar", + "golden raisins", + "mango", + "crystallized ginger", + "onions", + "hot red pepper flakes", + "garlic cloves" + ] + }, + { + "id": 44679, + "cuisine": "southern_us", + "ingredients": [ + "fresh sage", + "ham", + "cola soft drink", + "firmly packed light brown sugar", + "yellow mustard" + ] + }, + { + "id": 38490, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "golden raisins", + "cauliflower florets", + "cayenne pepper", + "chopped cilantro fresh", + "tomato paste", + "pepper", + "veggies", + "paneer", + "onions", + "ground cumin", + "cream", + "vegetable stock", + "garlic", + "ground cardamom", + "canola oil", + "ground cinnamon", + "garam masala", + "ginger", + "salt", + "cashew nuts" + ] + }, + { + "id": 21194, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "whole milk", + "farmer cheese", + "fresh blueberries", + "salt", + "corn starch", + "sugar", + "egg yolks", + "all-purpose flour", + "large eggs", + "butter", + "large curd cottage cheese" + ] + }, + { + "id": 12031, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "butter", + "creole seasoning", + "potatoes", + "garlic", + "corn", + "lemon", + "shell-on shrimp", + "sauce" + ] + }, + { + "id": 11175, + "cuisine": "italian", + "ingredients": [ + "whole wheat pastry flour", + "marinara sauce", + "pepper", + "salt", + "seasoned bread crumbs", + "egg whites", + "frozen cheese ravioli", + "grated romano cheese", + "panko breadcrumbs" + ] + }, + { + "id": 46385, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "sesame oil", + "rice vinegar", + "peeled fresh ginger", + "salmon steaks", + "white miso", + "lime wedges", + "mirin", + "vegetable oil" + ] + }, + { + "id": 48524, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "strawberries", + "water", + "sweet red bean paste", + "corn starch", + "mochiko" + ] + }, + { + "id": 9737, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "garlic", + "ground black pepper", + "boneless beef roast", + "coarse salt" + ] + }, + { + "id": 40330, + "cuisine": "british", + "ingredients": [ + "baking powder", + "salt", + "unsalted butter", + "vegetable shortening", + "sour cream", + "large eggs", + "poppy seeds", + "sugar", + "almond extract", + "all-purpose flour" + ] + }, + { + "id": 40341, + "cuisine": "moroccan", + "ingredients": [ + "celery ribs", + "black pepper", + "beef bouillon", + "diced tomatoes", + "carrots", + "canola oil", + "eggs", + "garbanzo beans", + "vermicelli", + "salt", + "onions", + "tomato paste", + "fresh cilantro", + "flour", + "ginger", + "fresh parsley", + "tumeric", + "garlic powder", + "cinnamon", + "lentils", + "saffron" + ] + }, + { + "id": 31803, + "cuisine": "chinese", + "ingredients": [ + "water", + "baking powder", + "cooking spray", + "all-purpose flour", + "sesame seeds", + "salt", + "green onions", + "canola oil" + ] + }, + { + "id": 38659, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "pure vanilla extract", + "apples", + "sugar", + "puff pastry", + "teas" + ] + }, + { + "id": 2660, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "black beans", + "fresh cilantro", + "Mexican cheese blend", + "jalapeno chilies", + "boneless skinless chicken breasts", + "salt", + "greek yogurt", + "tomatoes", + "crushed tomatoes", + "garlic powder", + "hand", + "soup", + "vegetable broth", + "tortilla chips", + "onions", + "tomato paste", + "low sodium vegetable broth", + "olive oil", + "tortillas", + "guacamole", + "chili powder", + "cayenne pepper", + "corn tortillas", + "lime zest", + "pico de gallo", + "fresh lime", + "salsa verde", + "bell pepper", + "green onions", + "purple onion", + "pinto beans", + "cumin" + ] + }, + { + "id": 31521, + "cuisine": "mexican", + "ingredients": [ + "creole style seasoning", + "onions", + "cheddar cheese", + "corn tortillas", + "tomato paste", + "sliced mushrooms", + "tomato sauce", + "ripe olives" + ] + }, + { + "id": 6839, + "cuisine": "mexican", + "ingredients": [ + "chicken bouillon", + "chopped onion", + "chicken broth", + "condensed cream of mushroom soup", + "boneless skinless chicken breast halves", + "condensed cream of chicken soup", + "diced tomatoes", + "monterey jack", + "chili beans", + "flour tortillas", + "red bell pepper" + ] + }, + { + "id": 5528, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "unsalted butter", + "garlic powder", + "shredded romano cheese", + "large egg yolks", + "half & half", + "ground black pepper", + "shredded parmesan cheese" + ] + }, + { + "id": 21475, + "cuisine": "thai", + "ingredients": [ + "salmon", + "soy sauce", + "scallions", + "fresh ginger", + "sweet chili sauce" + ] + }, + { + "id": 40051, + "cuisine": "southern_us", + "ingredients": [ + "cornbread", + "black-eyed peas", + "butter", + "mayonaise", + "green onions", + "red bell pepper", + "sweet onion", + "vegetable oil", + "sour cream", + "yellow corn meal", + "large eggs", + "garlic cloves" + ] + }, + { + "id": 33360, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "serrano peppers", + "plum tomatoes", + "onions", + "sea salt" + ] + }, + { + "id": 1994, + "cuisine": "southern_us", + "ingredients": [ + "crawfish", + "bourbon whiskey", + "whipping cream", + "chopped fresh sage", + "chopped cilantro fresh", + "lump crab meat", + "oysters", + "butter", + "chopped onion", + "chopped pecans", + "cornbread", + "pepper", + "chile pepper", + "chopped celery", + "garlic cloves", + "chicken broth", + "chorizo", + "fresh thyme leaves", + "salt", + "carrots" + ] + }, + { + "id": 37543, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "part-skim mozzarella cheese", + "margarine", + "celery", + "tomato sauce", + "basil", + "chopped onion", + "vegetable oil cooking spray", + "cutlet", + "green pepper", + "oregano", + "pepper", + "salt", + "no salt added chicken broth" + ] + }, + { + "id": 42263, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "salt", + "corn husks", + "fresh lime juice", + "ancho chili ground pepper", + "sour cream", + "mayonaise", + "lime wedges" + ] + }, + { + "id": 37956, + "cuisine": "italian", + "ingredients": [ + "egg whites", + "vanilla extract", + "chopped pecans", + "shortening", + "flaked coconut", + "margarine", + "white sugar", + "egg yolks", + "all-purpose flour", + "confectioners sugar", + "baking soda", + "buttermilk", + "cream cheese" + ] + }, + { + "id": 6482, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "ground black pepper", + "jalapeno chilies", + "applewood smoked bacon", + "corn kernels", + "granulated sugar", + "buttermilk", + "eggs", + "unsalted butter", + "coarse sea salt", + "ground cumin", + "baking soda", + "finely chopped onion", + "lemon juice" + ] + }, + { + "id": 22522, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "garlic", + "brown sugar", + "worcestershire sauce", + "unsulphured molasses", + "navy beans", + "yellow mustard", + "dark brown sugar", + "ketchup", + "bacon" + ] + }, + { + "id": 22259, + "cuisine": "italian", + "ingredients": [ + "port wine", + "unsalted butter", + "vanilla extract", + "sugar", + "ricotta cheese", + "all-purpose flour", + "eggs", + "mini chocolate chips", + "cinnamon", + "canola oil", + "powdered sugar", + "egg yolks", + "salt" + ] + }, + { + "id": 48864, + "cuisine": "filipino", + "ingredients": [ + "ground ginger", + "shiitake", + "water chestnuts", + "vegetable oil", + "sauce", + "toasted sesame seeds", + "honey", + "hoisin sauce", + "rice noodles", + "rice vinegar", + "red bell pepper", + "pepper", + "zucchini", + "sesame oil", + "pea pods", + "scallions", + "soy sauce", + "beef", + "broccoli florets", + "garlic", + "orange juice", + "bamboo shoots" + ] + }, + { + "id": 11050, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "semisweet chocolate", + "bread flour", + "unsalted butter", + "almond extract", + "water", + "baking powder", + "kosher salt", + "large eggs" + ] + }, + { + "id": 8991, + "cuisine": "vietnamese", + "ingredients": [ + "garlic", + "meat", + "lemongrass", + "oil", + "chili powder" + ] + }, + { + "id": 26129, + "cuisine": "italian", + "ingredients": [ + "green onions", + "oil", + "mayonaise", + "salt", + "green beans", + "black olives", + "carrots", + "milk", + "all-purpose flour", + "spaghetti" + ] + }, + { + "id": 29114, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "salt", + "dried oregano", + "chile pepper", + "pork shoulder", + "water", + "cooking sherry", + "cilantro", + "onions" + ] + }, + { + "id": 20163, + "cuisine": "french", + "ingredients": [ + "water", + "egg yolks", + "corn starch", + "unsalted butter", + "heavy cream", + "sugar", + "egg whites", + "vanilla extract", + "milk", + "dark rum", + "toasted slivered almonds" + ] + }, + { + "id": 37639, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "flank steak", + "corn starch", + "water", + "ginger", + "soy sauce", + "vegetable oil", + "green onions", + "garlic" + ] + }, + { + "id": 3353, + "cuisine": "italian", + "ingredients": [ + "flour for dusting", + "extra-virgin olive oil", + "pizza doughs", + "kosher salt", + "hot water" + ] + }, + { + "id": 5753, + "cuisine": "italian", + "ingredients": [ + "water", + "all purpose unbleached flour", + "large eggs", + "salt" + ] + }, + { + "id": 28229, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "dried minced onion", + "chicken bouillon", + "dried parsley", + "water", + "corn starch" + ] + }, + { + "id": 11780, + "cuisine": "italian", + "ingredients": [ + "aged balsamic vinegar", + "parmigiano reggiano cheese" + ] + }, + { + "id": 34845, + "cuisine": "cajun_creole", + "ingredients": [ + "dark rum", + "vanilla ice cream", + "cinnamon", + "brown sugar", + "banana liqueur", + "bananas", + "butter" + ] + }, + { + "id": 31302, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "curry powder", + "all-purpose flour", + "mayonaise", + "whole milk", + "tomatoes", + "olive oil", + "fresh lemon juice", + "catfish fillets", + "baguette", + "lettuce leaves" + ] + }, + { + "id": 31368, + "cuisine": "japanese", + "ingredients": [ + "boneless chicken skinless thigh", + "sugar", + "vegetable oil", + "soy sauce", + "scallions", + "sake", + "mirin" + ] + }, + { + "id": 46787, + "cuisine": "italian", + "ingredients": [ + "parsley", + "plum tomatoes", + "pasta", + "garlic", + "red pepper flakes", + "olive oil", + "salt" + ] + }, + { + "id": 7548, + "cuisine": "italian", + "ingredients": [ + "fontina", + "extra-virgin olive oil", + "ground black pepper", + "garlic cloves", + "prosciutto", + "pizza doughs", + "baby arugula" + ] + }, + { + "id": 16324, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "mirin", + "rice vinegar", + "sesame seeds", + "napa cabbage", + "scallions", + "olive oil", + "Sriracha", + "soba noodles", + "shiitake", + "garlic", + "toasted sesame oil" + ] + }, + { + "id": 8072, + "cuisine": "british", + "ingredients": [ + "kosher salt", + "vegetable oil", + "merlot", + "horseradish", + "parsley leaves", + "portabello mushroom", + "pearl onions", + "rib roast", + "carrots", + "celery ribs", + "veal", + "red currant jelly" + ] + }, + { + "id": 38413, + "cuisine": "thai", + "ingredients": [ + "white bread", + "vegetable oil", + "Thai fish sauce", + "garlic powder", + "ground pork", + "white pepper", + "cilantro", + "medium shrimp", + "large eggs", + "scallions" + ] + }, + { + "id": 24567, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "vegetable oil", + "gyoza wrappers", + "corn starch", + "frozen chopped spinach", + "black pepper", + "garlic", + "scallions", + "soy sauce", + "ginger", + "dried shiitake mushrooms", + "toasted sesame oil", + "frozen shelled edamame", + "flour", + "salt", + "carrots" + ] + }, + { + "id": 5746, + "cuisine": "southern_us", + "ingredients": [ + "boneless chicken breast", + "chicken broth", + "onions", + "biscuits", + "frozen mixed vegetables", + "cream of chicken soup" + ] + }, + { + "id": 5391, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "pepper", + "butter", + "onions", + "cheddar cheese", + "broccoli florets", + "ham", + "cream", + "green onions", + "celery", + "fresh corn", + "potatoes", + "salt" + ] + }, + { + "id": 13509, + "cuisine": "irish", + "ingredients": [ + "russet", + "butter", + "milk", + "scallions", + "green cabbage", + "sea salt", + "ground black pepper" + ] + }, + { + "id": 4991, + "cuisine": "mexican", + "ingredients": [ + "Alfredo sauce", + "chopped cilantro", + "water", + "corn tortillas", + "shredded Monterey Jack cheese", + "extra-lean ground beef", + "chipotle peppers", + "vegetable oil", + "Country Crock® Spread" + ] + }, + { + "id": 41754, + "cuisine": "italian", + "ingredients": [ + "salt", + "white sugar", + "brandy", + "ground almonds", + "shortening", + "all-purpose flour", + "lemon zest", + "fresh lemon juice" + ] + }, + { + "id": 37533, + "cuisine": "italian", + "ingredients": [ + "baguette", + "chopped fresh chives", + "pear nectar", + "sugar", + "crumbled blue cheese", + "shallots", + "chopped pecans", + "olive oil", + "bosc pears", + "salt", + "cider vinegar", + "dried apricot", + "chopped fresh thyme", + "cinnamon sticks" + ] + }, + { + "id": 15494, + "cuisine": "southern_us", + "ingredients": [ + "vanilla ice cream", + "dark rum", + "peaches", + "ground cinnamon", + "unsalted butter", + "golden brown sugar", + "vanilla extract" + ] + }, + { + "id": 18535, + "cuisine": "filipino", + "ingredients": [ + "olive oil", + "salt", + "large tomato", + "bitter melon", + "ground black pepper", + "soy sauce", + "large eggs" + ] + }, + { + "id": 13325, + "cuisine": "southern_us", + "ingredients": [ + "granny smith apples", + "ground nutmeg", + "grated lemon zest", + "sugar", + "water", + "raisins", + "ground cinnamon", + "ground cloves", + "golden raisins", + "fresh lemon juice", + "firmly packed brown sugar", + "cider vinegar", + "green tomatoes", + "grated orange" + ] + }, + { + "id": 48684, + "cuisine": "brazilian", + "ingredients": [ + "linguica", + "ground black pepper", + "beef rib short", + "dried black beans", + "pork chops", + "boneless pork loin", + "onions", + "olive oil", + "bacon", + "garlic cloves", + "chicken stock", + "stewing beef", + "salt", + "carne seca" + ] + }, + { + "id": 15156, + "cuisine": "mexican", + "ingredients": [ + "fennel seeds", + "water", + "salsa verde", + "peeled fresh ginger", + "chopped celery", + "carrots", + "boneless skinless chicken breast halves", + "baby bok choy", + "olive oil", + "radishes", + "kohlrabi", + "chopped onion", + "fresh lime juice", + "ground turmeric", + "fresh basil", + "fresh cilantro", + "ground black pepper", + "shallots", + "salt", + "flat leaf parsley", + "serrano chile", + "fat free less sodium chicken broth", + "coriander seeds", + "leeks", + "fresh tarragon", + "garlic cloves", + "bay leaf", + "ground cumin" + ] + }, + { + "id": 3283, + "cuisine": "cajun_creole", + "ingredients": [ + "tilapia fillets", + "unsalted butter", + "celery salt", + "garlic powder", + "dried thyme", + "paprika", + "pepper", + "cayenne" + ] + }, + { + "id": 40046, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "roasted red peppers", + "garlic cloves", + "fat free less sodium chicken broth", + "bacon slices", + "fresh parmesan cheese", + "salt", + "black pepper", + "green peas", + "onions" + ] + }, + { + "id": 6495, + "cuisine": "thai", + "ingredients": [ + "tomato paste", + "curry powder", + "green onions", + "yellow onion", + "coconut milk", + "yellow mustard seeds", + "peanuts", + "vegetable oil", + "garlic cloves", + "ground turmeric", + "pineapple chunks", + "lime juice", + "boneless skinless chicken breasts", + "cumin seed", + "chopped cilantro", + "ground ginger", + "soy sauce", + "coriander seeds", + "chicken stock cubes", + "red bell pepper" + ] + }, + { + "id": 40897, + "cuisine": "italian", + "ingredients": [ + "bacon", + "green cauliflower", + "broccoli", + "bread crumb fresh", + "extra-virgin olive oil", + "large garlic cloves", + "orecchiette" + ] + }, + { + "id": 13330, + "cuisine": "french", + "ingredients": [ + "chopped fresh chives", + "fresh parsley", + "plain yogurt", + "goat cheese", + "fresh basil", + "salt", + "olive oil", + "freshly ground pepper" + ] + }, + { + "id": 34398, + "cuisine": "greek", + "ingredients": [ + "crushed garlic", + "greek style plain yogurt", + "chives", + "cucumber", + "salt" + ] + }, + { + "id": 4214, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "plums", + "grated lemon peel", + "balsamic vinegar", + "shredded mozzarella cheese", + "boneless skinless chicken breasts", + "salt", + "italian seasoning", + "linguine", + "fresh basil leaves" + ] + }, + { + "id": 4135, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "chili paste", + "garlic", + "cooked white rice", + "kosher salt", + "bacon", + "scallions", + "frozen peas", + "soy sauce", + "vegetable oil", + "cilantro leaves", + "onions", + "ground black pepper", + "ginger", + "toasted sesame oil" + ] + }, + { + "id": 18586, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped fresh thyme", + "red bell pepper", + "andouille sausage", + "cajun seasoning", + "large shrimp", + "creole mustard", + "red wine vinegar", + "onions", + "vegetable oil", + "low salt chicken broth" + ] + }, + { + "id": 16453, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "boiling potatoes", + "frozen chopped spinach", + "jalapeno chilies", + "carrots", + "fresh ginger", + "ground coriander", + "ground cumin", + "tumeric", + "butter", + "green split peas" + ] + }, + { + "id": 32851, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "ground beef", + "refried beans", + "crescent rolls", + "shredded cheddar cheese", + "sliced black olives", + "taco seasoning mix", + "green onions" + ] + }, + { + "id": 28380, + "cuisine": "moroccan", + "ingredients": [ + "dried plum", + "fat free less sodium chicken broth", + "salt", + "couscous", + "pitted kalamata olives", + "peeled fresh ginger", + "chopped onion", + "ground turmeric", + "ground cinnamon", + "olive oil", + "grated lemon zest", + "chopped cilantro fresh", + "fennel seeds", + "boneless chicken skinless thigh", + "apricot halves", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 37656, + "cuisine": "russian", + "ingredients": [ + "ground cloves", + "granulated sugar", + "all-purpose flour", + "walnut halves", + "unsalted butter", + "baking powder", + "whole almonds", + "superfine sugar", + "baking spray", + "pure vanilla extract", + "kosher salt", + "large eggs" + ] + }, + { + "id": 38852, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "green onions", + "chopped onion", + "corn", + "cilantro", + "red chili peppers", + "lime wedges", + "pork roast", + "diced green chilies", + "cheese" + ] + }, + { + "id": 45163, + "cuisine": "thai", + "ingredients": [ + "chile paste", + "yellow bell pepper", + "oyster sauce", + "soy sauce", + "zucchini", + "yellow onion", + "boneless skinless chicken breast halves", + "chicken broth", + "yellow squash", + "broccoli", + "white sugar", + "ketchup", + "unsalted cashews", + "fresh mushrooms", + "canola oil" + ] + }, + { + "id": 36100, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "sugar", + "whole milk", + "water", + "peeled fresh ginger", + "eggs", + "crystallized ginger" + ] + }, + { + "id": 33257, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "olive oil", + "dry white wine", + "carrots", + "onions", + "pork belly", + "large eggs", + "peas", + "flat leaf parsley", + "kosher salt", + "grated parmesan cheese", + "garlic cloves", + "bay leaf", + "black peppercorns", + "coriander seeds", + "pecorino romano cheese", + "low salt chicken broth", + "spaghetti" + ] + }, + { + "id": 25908, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "olive oil", + "cheese", + "sherry wine", + "black beans", + "capsicum", + "rice", + "onions", + "stock", + "jalapeno chilies", + "salsa", + "sour cream", + "lime", + "cilantro", + "garlic cloves", + "oregano" + ] + }, + { + "id": 48566, + "cuisine": "irish", + "ingredients": [ + "color food green", + "fudge brownie mix", + "eggs", + "all-purpose flour", + "vanilla", + "sugar", + "cream cheese" + ] + }, + { + "id": 6380, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "grated coconut", + "cumin seed", + "chopped cilantro fresh", + "red chili peppers", + "purple onion", + "nigella seeds", + "sugar", + "vegetable oil", + "mustard seeds", + "brussels sprouts", + "kosher salt", + "fresh lemon juice", + "ground turmeric" + ] + }, + { + "id": 4697, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "butter", + "fontina cheese", + "boneless chicken breast halves", + "prosciutto", + "low salt chicken broth", + "marsala wine", + "herb cheese" + ] + }, + { + "id": 43750, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "panko breadcrumbs", + "milk", + "russet potatoes", + "pepper", + "green onions", + "unsalted butter", + "salt" + ] + }, + { + "id": 32905, + "cuisine": "cajun_creole", + "ingredients": [ + "green olives", + "provolone cheese", + "dried oregano", + "salami", + "crusty rolls", + "garlic", + "fresh parsley", + "olive oil", + "sliced ham" + ] + }, + { + "id": 15151, + "cuisine": "mexican", + "ingredients": [ + "beef stock", + "vidalia onion", + "garlic cloves", + "tomatoes", + "rice", + "water" + ] + }, + { + "id": 28701, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "curry powder", + "peeled fresh ginger", + "vegetable broth", + "ground allspice", + "ground turmeric", + "turnips", + "parsnips", + "dried apricot", + "diced tomatoes", + "grated lemon zest", + "carrots", + "green cabbage", + "black pepper", + "sweet potatoes", + "paprika", + "chopped onion", + "couscous", + "dried lentils", + "olive oil", + "ground red pepper", + "salt", + "fresh lemon juice", + "ground cumin" + ] + }, + { + "id": 23784, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "yoghurt", + "plums", + "large egg yolks", + "unsalted butter", + "vanilla extract", + "all-purpose flour", + "ground cinnamon", + "peaches", + "baking powder", + "salt", + "baking soda", + "half & half", + "granulated white sugar", + "bing cherries" + ] + }, + { + "id": 10971, + "cuisine": "spanish", + "ingredients": [ + "water", + "garlic cloves", + "extra-virgin olive oil", + "onions", + "cannellini beans", + "smoked paprika", + "spinach", + "oil" + ] + }, + { + "id": 47753, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "boneless skinless chicken breasts", + "salt", + "fresh rosemary", + "ground black pepper", + "balsamic vinegar", + "dried oregano", + "fennel seeds", + "garlic powder", + "shallots", + "red bell pepper", + "fat free less sodium chicken broth", + "cooking spray", + "yellow bell pepper" + ] + }, + { + "id": 37355, + "cuisine": "italian", + "ingredients": [ + "water", + "red bell pepper", + "wish-bone light country italian dressing", + "flat leaf parsley", + "quinoa", + "white mushrooms", + "zucchini", + "sliced green onions" + ] + }, + { + "id": 44501, + "cuisine": "thai", + "ingredients": [ + "granulated sugar", + "coconut milk", + "salt", + "pandanus leaf", + "mango", + "water", + "thai jasmine rice" + ] + }, + { + "id": 41817, + "cuisine": "italian", + "ingredients": [ + "finely chopped onion", + "butter", + "arborio rice", + "butternut squash", + "pancetta", + "grated parmesan cheese", + "low salt chicken broth", + "olive oil", + "dry white wine" + ] + }, + { + "id": 41475, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "mushrooms", + "dark sesame oil", + "iceberg lettuce", + "sugar", + "dijon mustard", + "rice vinegar", + "lemon juice", + "brown sugar", + "olive oil", + "boneless skinless chicken breasts", + "garlic cloves", + "soy sauce", + "water chestnuts", + "yellow onion", + "hot water" + ] + }, + { + "id": 47612, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "worcestershire sauce", + "skirt steak", + "lime", + "orange juice", + "garlic powder", + "corn tortillas", + "white onion", + "cilantro", + "ground cumin" + ] + }, + { + "id": 28804, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "tomatoes", + "knorr garlic minicub", + "lime juice", + "serrano chilies", + "chopped cilantro fresh" + ] + }, + { + "id": 20498, + "cuisine": "italian", + "ingredients": [ + "pistachios", + "strawberry ice cream", + "chocolate ice cream" + ] + }, + { + "id": 9612, + "cuisine": "brazilian", + "ingredients": [ + "chili", + "lamb chops", + "onions", + "black beans", + "bay leaves", + "garlic cloves", + "chorizo sausage", + "tomatoes", + "pork chops", + "allspice berries", + "dried oregano", + "smoked bacon", + "parsley", + "carrots" + ] + }, + { + "id": 19302, + "cuisine": "mexican", + "ingredients": [ + "bell pepper", + "chopped onion", + "tomato sauce", + "cheese", + "chopped cilantro", + "pecans", + "raisins", + "garlic cloves", + "beef", + "shells", + "cumin" + ] + }, + { + "id": 40859, + "cuisine": "italian", + "ingredients": [ + "bread", + "pizza sauce", + "cheddar cheese", + "ground meat", + "angel hair", + "veggies", + "pasta sauce", + "pepperoni" + ] + }, + { + "id": 15721, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "purple onion", + "apple cider vinegar", + "toasted slivered almonds", + "broccoli florets", + "salt", + "mayonaise", + "bacon", + "frozen peas" + ] + }, + { + "id": 9694, + "cuisine": "brazilian", + "ingredients": [ + "bee pollen", + "açai", + "honey", + "almond milk", + "bananas" + ] + }, + { + "id": 27084, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "paprika", + "fennel seeds", + "red pepper flakes", + "cayenne pepper", + "Alexia Waffle Fries", + "onion flakes", + "garlic powder", + "sea salt", + "oregano" + ] + }, + { + "id": 46347, + "cuisine": "korean", + "ingredients": [ + "garlic", + "spring onions", + "beansprouts", + "salt", + "sesame oil", + "toasted sesame seeds" + ] + }, + { + "id": 25291, + "cuisine": "vietnamese", + "ingredients": [ + "white vinegar", + "lime", + "fish sauce", + "thai chile", + "sugar", + "garlic", + "warm water" + ] + }, + { + "id": 16383, + "cuisine": "french", + "ingredients": [ + "semisweet chocolate", + "1% low-fat milk", + "cream filled chocolate sandwich cookies", + "crème de menthe", + "fat free frozen top whip", + "sugar", + "chocolate" + ] + }, + { + "id": 15717, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "garlic", + "chicken wings", + "lime", + "chili sauce", + "soy sauce", + "salt", + "fish sauce", + "spring onions", + "chinese five-spice powder" + ] + }, + { + "id": 12564, + "cuisine": "italian", + "ingredients": [ + "baby spinach leaves", + "large garlic cloves", + "arborio rice", + "grated parmesan cheese", + "low salt chicken broth", + "olive oil", + "chopped onion", + "fresh basil", + "dry white wine", + "large shrimp" + ] + }, + { + "id": 36241, + "cuisine": "southern_us", + "ingredients": [ + "vidalia onion", + "potatoes", + "pepper", + "bacon drippings", + "salt" + ] + }, + { + "id": 34658, + "cuisine": "italian", + "ingredients": [ + "butter-margarine blend", + "brown hash potato", + "1% low-fat milk", + "dried basil", + "cooking spray", + "salt", + "black pepper", + "large eggs", + "gruyere cheese", + "large egg whites", + "leeks", + "spaghetti squash" + ] + }, + { + "id": 12429, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "red bell pepper", + "cayenne", + "salt", + "sesame seeds", + "dried soba", + "sliced green onions", + "sugar", + "shredded carrots", + "rice vinegar" + ] + }, + { + "id": 44028, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "lamb stock", + "parsley", + "medjool date", + "tomato purée", + "clear honey", + "leg of lamb", + "olives", + "plain flour", + "coriander seeds", + "garlic cloves", + "coriander", + "preserved lemon", + "shallots", + "cinnamon sticks", + "saffron" + ] + }, + { + "id": 16130, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "cinnamon", + "crushed red pepper", + "carrots", + "red lentils", + "sweet onion", + "paprika", + "garlic cloves", + "cumin", + "fresh cilantro", + "diced tomatoes", + "salt", + "coriander", + "tumeric", + "olive oil", + "vegetable broth", + "fresh lemon juice" + ] + }, + { + "id": 46958, + "cuisine": "brazilian", + "ingredients": [ + "powdered sugar", + "avocado", + "whipping cream", + "lime juice" + ] + }, + { + "id": 48962, + "cuisine": "cajun_creole", + "ingredients": [ + "crushed tomatoes", + "ground red pepper", + "all-purpose flour", + "cooked rice", + "chopped green bell pepper", + "chopped celery", + "onions", + "chicken broth", + "olive oil", + "cajun seasoning", + "shrimp", + "minced garlic", + "bay leaves", + "salt" + ] + }, + { + "id": 47895, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "lime juice", + "dried guajillo chiles", + "kosher salt", + "roast", + "black pepper", + "brewed coffee", + "oregano", + "minced garlic", + "extra-virgin olive oil" + ] + }, + { + "id": 49430, + "cuisine": "british", + "ingredients": [ + "eggs", + "balsamic vinegar", + "stilton cheese", + "mustard", + "muscovado sugar", + "hot sauce", + "sourdough bread", + "purple onion", + "parmesan cheese", + "crème fraîche" + ] + }, + { + "id": 10914, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "butter", + "pork loin", + "garlic cloves", + "fresh sage", + "extra-virgin olive oil", + "russet potatoes" + ] + }, + { + "id": 20193, + "cuisine": "italian", + "ingredients": [ + "asiago", + "salt", + "olive oil", + "dry red wine", + "chopped onion", + "pepper", + "diced tomatoes", + "penne pasta", + "mushroom caps", + "garlic", + "chopped parsley" + ] + }, + { + "id": 15046, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "coriander", + "tofu", + "minced garlic", + "oil", + "pepper", + "chili sauce", + "sugar", + "water", + "ground meat" + ] + }, + { + "id": 10311, + "cuisine": "french", + "ingredients": [ + "slivered almonds", + "bosc pears", + "vanilla extract", + "powdered sugar", + "large eggs", + "ice water", + "corn starch", + "sugar", + "dry white wine", + "salt", + "water", + "butter", + "all-purpose flour" + ] + }, + { + "id": 1720, + "cuisine": "moroccan", + "ingredients": [ + "powdered sugar", + "orange flower water", + "butter", + "plain flour", + "dates", + "water" + ] + }, + { + "id": 37275, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "baking powder", + "all-purpose flour", + "unsalted butter", + "satsumas", + "kosher salt", + "lemon", + "semolina flour", + "large eggs", + "salt" + ] + }, + { + "id": 18481, + "cuisine": "italian", + "ingredients": [ + "white wine", + "garlic", + "red bell pepper", + "green bell pepper, slice", + "yellow onion", + "dried basil", + "purple onion", + "dried oregano", + "butter", + "sweet italian sausage" + ] + }, + { + "id": 43417, + "cuisine": "japanese", + "ingredients": [ + "honey", + "salmon fillets", + "rice vinegar", + "low sodium soy sauce", + "fresh ginger", + "minced garlic", + "orange juice" + ] + }, + { + "id": 46413, + "cuisine": "italian", + "ingredients": [ + "green olives", + "veal cutlets", + "fettucine", + "cooking spray", + "corn starch", + "black pepper", + "salt", + "fat free less sodium chicken broth", + "fresh lemon juice" + ] + }, + { + "id": 44484, + "cuisine": "japanese", + "ingredients": [ + "stock", + "pepper", + "garlic", + "sugar", + "fresh ginger", + "noodles", + "sake", + "dashi", + "salt", + "soy sauce", + "sesame oil", + "nori" + ] + }, + { + "id": 2895, + "cuisine": "spanish", + "ingredients": [ + "clove", + "fresh orange juice", + "club soda", + "orange", + "cinnamon sticks", + "lemon", + "orange rind", + "sugar", + "merlot" + ] + }, + { + "id": 32318, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "green onions", + "creamy peanut butter", + "beansprouts", + "chilegarlic sauce", + "garlic", + "english cucumber", + "cooked chicken breasts", + "soy sauce", + "ginger", + "roasted peanuts", + "toasted sesame oil", + "sesame seed paste", + "chinese noodles", + "rice vinegar", + "carrots" + ] + }, + { + "id": 40497, + "cuisine": "spanish", + "ingredients": [ + "vidalia onion", + "extra-virgin olive oil", + "red bell pepper", + "sherry vinegar", + "garlic cloves", + "tomatoes", + "chopped green bell pepper", + "cucumber", + "sugar", + "salt", + "ground cumin" + ] + }, + { + "id": 42464, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "cajun seasoning", + "canola oil", + "water", + "onions", + "andouille sausage", + "scallions", + "celery ribs", + "low sodium chicken broth", + "basmati rice" + ] + }, + { + "id": 25165, + "cuisine": "indian", + "ingredients": [ + "lime", + "lime wedges", + "purple onion", + "chopped cilantro", + "fresh ginger", + "chicken drumsticks", + "green chilies", + "mint", + "low-fat greek yogurt", + "garlic", + "cucumber", + "olive oil", + "spices", + "salt" + ] + }, + { + "id": 20245, + "cuisine": "brazilian", + "ingredients": [ + "yucca root", + "coconut cream", + "palm oil", + "olive oil", + "coriander", + "lime", + "onions", + "tomatoes", + "prawns" + ] + }, + { + "id": 15634, + "cuisine": "spanish", + "ingredients": [ + "pinenuts", + "extra-virgin olive oil", + "cinnamon sticks", + "chicken stock", + "lemon zest", + "rotisserie chicken", + "tawny port", + "sour cherries", + "orange zest", + "prunes", + "dried apricot", + "juice" + ] + }, + { + "id": 8637, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "olive oil", + "white wine vinegar", + "green bell pepper", + "crushed garlic", + "onions", + "eggs", + "green onions", + "cucumber", + "tomato paste", + "water", + "black olives" + ] + }, + { + "id": 6342, + "cuisine": "mexican", + "ingredients": [ + "water", + "tortilla chips", + "chicken", + "cheddar cheese", + "diced tomatoes", + "sour cream", + "eggs", + "unsalted butter", + "taco seasoning", + "white corn", + "white beans", + "bisquick" + ] + }, + { + "id": 6641, + "cuisine": "korean", + "ingredients": [ + "garlic", + "short rib", + "mirin", + "dark brown sugar", + "soy sauce", + "rice vinegar", + "green onions", + "toasted sesame oil" + ] + }, + { + "id": 37520, + "cuisine": "indian", + "ingredients": [ + "mace", + "diced tomatoes", + "garlic cloves", + "ground turmeric", + "whole cloves", + "cilantro leaves", + "ghee", + "cayenne", + "purple onion", + "cinnamon sticks", + "fresh ginger", + "sea salt", + "cardamom pods", + "basmati rice" + ] + }, + { + "id": 40621, + "cuisine": "southern_us", + "ingredients": [ + "cream sweeten whip", + "baking soda", + "vegetable oil", + "all-purpose flour", + "milk", + "baking powder", + "heavy cream", + "large egg yolks", + "bourbon whiskey", + "salt", + "sugar", + "large eggs", + "lemon", + "beets" + ] + }, + { + "id": 41934, + "cuisine": "irish", + "ingredients": [ + "green onions", + "milk", + "salt", + "potatoes", + "pepper", + "butter" + ] + }, + { + "id": 22197, + "cuisine": "mexican", + "ingredients": [ + "salt", + "jicama", + "lime", + "chili powder" + ] + }, + { + "id": 44293, + "cuisine": "cajun_creole", + "ingredients": [ + "horseradish", + "ground black pepper", + "ground red pepper", + "ground white pepper", + "water", + "vinegar", + "paprika", + "mayonaise", + "minced onion", + "parsley", + "celery", + "creole mustard", + "olive oil", + "shrimp heads", + "salt" + ] + }, + { + "id": 36077, + "cuisine": "french", + "ingredients": [ + "shortening", + "bacon", + "chopped onion", + "eggs", + "flour", + "salt", + "cold water", + "milk", + "gruyere cheese", + "freshly ground pepper", + "fresh spinach", + "large garlic cloves", + "dried dill" + ] + }, + { + "id": 28614, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "tartlet shells", + "unsalted butter", + "fresh lemon juice", + "sugar", + "lemon zest", + "large egg whites", + "large eggs" + ] + }, + { + "id": 48439, + "cuisine": "spanish", + "ingredients": [ + "mussels", + "jumbo shrimp", + "smoked sweet Spanish paprika", + "garlic cloves", + "paella rice", + "sugar", + "fish stock", + "onions", + "saffron threads", + "tomatoes", + "dry white wine", + "squid", + "tentacles", + "olive oil", + "salt" + ] + }, + { + "id": 38279, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "shredded cheddar cheese", + "extra-virgin olive oil", + "fresh lime juice", + "cooked rice", + "diced green chilies", + "tortilla chips", + "ground cumin", + "chicken broth", + "fresh cilantro", + "roasted garlic", + "onions", + "kosher salt", + "boneless skinless chicken breasts", + "rotel tomatoes" + ] + }, + { + "id": 19317, + "cuisine": "cajun_creole", + "ingredients": [ + "old bay seasoning", + "lemon juice", + "cajun seasoning", + "hot sauce", + "ground pepper", + "worcestershire sauce", + "shrimp", + "butter", + "garlic cloves" + ] + }, + { + "id": 19171, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "lemon slices", + "fresh parsley", + "large garlic cloves", + "lemon juice", + "dried oregano", + "diced tomatoes", + "feta cheese crumbles", + "sliced green onions", + "green onions", + "freshly ground pepper", + "spaghetti" + ] + }, + { + "id": 43843, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "crushed ice", + "granulated sugar", + "cachaca" + ] + }, + { + "id": 39003, + "cuisine": "japanese", + "ingredients": [ + "peanuts", + "sweet potatoes", + "broccoli", + "japanese eggplants", + "yellow squash", + "zucchini", + "dipping sauces", + "wild mushrooms", + "large egg yolks", + "cake", + "shishito chile", + "safflower oil", + "granulated sugar", + "carbonated water", + "snow peas" + ] + }, + { + "id": 9481, + "cuisine": "indian", + "ingredients": [ + "slivered almonds", + "rice", + "frozen peas", + "ground ginger", + "olive oil", + "onions", + "water", + "cumin seed", + "peppercorns", + "tumeric", + "raisins", + "coriander" + ] + }, + { + "id": 29625, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "feta cheese", + "garlic", + "tomatoes", + "refried beans", + "minced onion", + "ground cumin", + "kosher salt", + "tortillas", + "chopped cilantro", + "eggs", + "olive oil", + "jalapeno chilies" + ] + }, + { + "id": 14587, + "cuisine": "french", + "ingredients": [ + "leeks", + "beaten eggs", + "ground black pepper", + "butter", + "thyme leaves", + "mushrooms", + "salt", + "frozen pastry puff sheets", + "garlic" + ] + }, + { + "id": 35250, + "cuisine": "moroccan", + "ingredients": [ + "shortening", + "confectioners sugar", + "rose water", + "boiling water", + "semolina flour", + "white sugar", + "ground walnuts" + ] + }, + { + "id": 4624, + "cuisine": "japanese", + "ingredients": [ + "cooking spray", + "rice vinegar", + "yellow miso", + "flank steak", + "dry white wine", + "mirin", + "wasabi powder" + ] + }, + { + "id": 23773, + "cuisine": "indian", + "ingredients": [ + "fat free less sodium chicken broth", + "peeled fresh ginger", + "green peas", + "garlic cloves", + "ground turmeric", + "black pepper", + "sweet potatoes", + "diced tomatoes", + "ground coriander", + "onions", + "olive oil", + "ground red pepper", + "chickpeas", + "bay leaf", + "curry powder", + "boneless skinless chicken breasts", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 35284, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "grated parmesan cheese", + "garlic", + "spaghetti", + "olive oil", + "coarse salt", + "ground beef", + "milk", + "dry white wine", + "carrots", + "tomato paste", + "ground pepper", + "ground pork", + "onions" + ] + }, + { + "id": 22663, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "lemon", + "smoked sausage", + "celery", + "corn", + "garlic", + "red bliss potato", + "canola oil", + "spices", + "artichokes", + "cayenne pepper", + "kosher salt", + "button mushrooms", + "shells", + "onions" + ] + }, + { + "id": 8242, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "fresh basil leaves", + "pinenuts", + "garlic", + "zucchini", + "olive oil", + "shredded parmesan cheese" + ] + }, + { + "id": 46091, + "cuisine": "italian", + "ingredients": [ + "pepper", + "fresh basil", + "salt", + "tomato purée", + "onions", + "tomatoes", + "butter" + ] + }, + { + "id": 5166, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "grated parmesan cheese", + "ricotta cheese", + "sliced mushrooms", + "frozen chopped spinach", + "lasagna noodles", + "pimentos", + "reduced fat alfredo sauce", + "cream of chicken soup", + "dry white wine", + "butter", + "onions", + "cottage cheese", + "large eggs", + "cooked chicken", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 34734, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic", + "onions", + "crushed tomatoes", + "butter", + "carrots", + "brown sugar", + "bay leaves", + "salt", + "dried oregano", + "dried basil", + "extra-virgin olive oil", + "celery" + ] + }, + { + "id": 44509, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "rendered bacon fat", + "onions", + "habanero", + "garlic cloves", + "red wine vinegar", + "scallions", + "green bell pepper", + "extra-virgin olive oil", + "red bell pepper" + ] + }, + { + "id": 32356, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "cayenne pepper", + "eggs", + "diced tomatoes", + "cornmeal", + "chili powder", + "boneless pork loin", + "milk", + "salt", + "corn kernel whole" + ] + }, + { + "id": 28841, + "cuisine": "chinese", + "ingredients": [ + "salad greens", + "sesame seeds", + "green onions", + "boiling water", + "green tea bags", + "honey", + "asian pear", + "garlic cloves", + "cherry tomatoes", + "green tea", + "salt", + "fish sauce", + "olive oil", + "extra firm tofu", + "fresh lime juice" + ] + }, + { + "id": 5786, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "pâté", + "cucumber", + "daikon", + "cooked meat", + "mayonaise", + "Maggi", + "tofu", + "cilantro", + "rolls" + ] + }, + { + "id": 15972, + "cuisine": "french", + "ingredients": [ + "french bread", + "brie cheese", + "granulated sugar", + "butter", + "dry white wine", + "corn starch", + "sun-dried tomatoes", + "shallots" + ] + }, + { + "id": 22075, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "hot sauce", + "yellow corn meal", + "old bay seasoning", + "catfish fillets", + "cajun seasoning", + "kosher salt", + "cracked black pepper" + ] + }, + { + "id": 35993, + "cuisine": "jamaican", + "ingredients": [ + "water", + "long-grain rice", + "red kidney beans", + "scotch bonnet chile", + "thyme sprigs", + "coconut", + "hot water", + "kosher salt", + "scallions" + ] + }, + { + "id": 43473, + "cuisine": "british", + "ingredients": [ + "raspberry preserves", + "raspberries", + "crust", + "custard dessert mix", + "whipping cream", + "cream sherry" + ] + }, + { + "id": 37249, + "cuisine": "korean", + "ingredients": [ + "water", + "chile pepper", + "apple juice concentrate", + "rice wine", + "ginger", + "agave nectar", + "red pepper flakes", + "toasted sesame seeds", + "soy sauce", + "sesame oil", + "garlic" + ] + }, + { + "id": 37057, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "taco seasoning", + "cayenne pepper", + "olive oil", + "fresh lime juice", + "herb seasoning" + ] + }, + { + "id": 37572, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "extra-virgin olive oil", + "orange zest", + "boneless pork shoulder", + "cilantro", + "fresh lime juice", + "mint leaves", + "garlic cloves", + "ground cumin", + "kosher salt", + "fresh orange juice", + "oregano" + ] + }, + { + "id": 11389, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "bananas", + "2% reduced-fat milk", + "Nilla Wafers", + "all-purpose flour", + "granulated sugar", + "vanilla extract" + ] + }, + { + "id": 23865, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "cooking spray", + "taco seasoning", + "black beans", + "cheese", + "ground beef", + "cheddar cheese", + "wonton wrappers", + "sour cream", + "lettuce", + "water", + "salsa" + ] + }, + { + "id": 20905, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "fresh basil", + "pork loin chops", + "garlic cloves", + "olive oil", + "flat leaf parsley" + ] + }, + { + "id": 2154, + "cuisine": "mexican", + "ingredients": [ + "water", + "guacamole", + "vegetable oil", + "yellow onion", + "olive oil", + "chili powder", + "garlic", + "sour cream", + "refried beans", + "boneless skinless chicken breasts", + "paprika", + "ground coriander", + "tomato sauce", + "Mexican cheese blend", + "large flour tortillas", + "salsa", + "cumin" + ] + }, + { + "id": 18122, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "fresh mint", + "sugar", + "freshly ground pepper", + "plum tomatoes", + "salt", + "spaghetti", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 33567, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "cooking spray", + "orange juice", + "dijon mustard", + "crushed red pepper", + "large shrimp", + "reduced fat creamy peanut butter", + "vegetable oil", + "chile sauce", + "orange marmalade", + "salt" + ] + }, + { + "id": 28637, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "lettuce leaves", + "extra lean ground beef", + "sauce", + "pita rounds", + "purple onion", + "greek seasoning", + "feta cheese" + ] + }, + { + "id": 27620, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "extra-virgin olive oil", + "flat leaf parsley", + "water", + "green onions", + "fresh lemon juice", + "capers", + "zucchini", + "garlic cloves", + "fresh basil leaves", + "olive oil", + "Italian parsley leaves", + "green beans" + ] + }, + { + "id": 43349, + "cuisine": "italian", + "ingredients": [ + "green chile", + "large eggs", + "garlic cloves", + "pepper", + "diced tomatoes", + "garlic herb feta", + "baby spinach", + "olive oil", + "salt" + ] + }, + { + "id": 30039, + "cuisine": "irish", + "ingredients": [ + "mashed potatoes", + "potatoes", + "salt", + "milk", + "baking powder", + "eggs", + "green onions", + "all-purpose flour", + "garlic powder", + "butter" + ] + }, + { + "id": 28915, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "water", + "crushed red pepper", + "diced onions", + "tomato sauce", + "eggplant", + "garlic cloves", + "spinach", + "olive oil", + "salt", + "tomatoes", + "penne", + "fresh parmesan cheese" + ] + }, + { + "id": 19628, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "lime", + "tomatoes", + "cilantro", + "avocado", + "cayenne", + "minced garlic", + "salt" + ] + }, + { + "id": 29613, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper sauce", + "butter", + "bay leaf", + "hot pepper sauce", + "worcestershire sauce", + "large shrimp", + "angel hair", + "vegetable oil", + "fines herbes", + "dried thyme", + "lemon", + "fresh parsley" + ] + }, + { + "id": 33506, + "cuisine": "jamaican", + "ingredients": [ + "plain flour", + "sugar", + "bananas", + "baking powder", + "eggs", + "caster sugar", + "unsalted butter", + "vanilla extract", + "bicarbonate of soda", + "lime juice", + "dry coconut", + "salt", + "lime zest", + "toasted pecans", + "milk", + "dark rum", + "cream cheese" + ] + }, + { + "id": 41555, + "cuisine": "french", + "ingredients": [ + "sweet cherries", + "all-purpose flour", + "sugar", + "large eggs", + "kirsch", + "vanilla beans", + "whole milk", + "sour cream", + "mascarpone", + "heavy whipping cream" + ] + }, + { + "id": 24397, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "shredded lettuce", + "corn tortillas", + "cumin", + "pepper", + "salt", + "onions", + "green chile", + "cheese", + "chopped cilantro", + "large eggs", + "oil", + "olive oil spray" + ] + }, + { + "id": 29016, + "cuisine": "italian", + "ingredients": [ + "cold water", + "vanilla instant pudding", + "sweetened condensed milk", + "kahlúa", + "cream cheese, soften", + "whipped topping", + "instant espresso", + "ladyfingers", + "hot water", + "unsweetened cocoa powder" + ] + }, + { + "id": 26003, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large egg yolks", + "salt", + "fresh pineapple", + "vanilla beans", + "coffee", + "heavy whipping cream", + "ladyfingers", + "large egg whites", + "black tea leaves", + "bittersweet chocolate", + "water", + "mascarpone", + "cognac" + ] + }, + { + "id": 27185, + "cuisine": "russian", + "ingredients": [ + "water", + "Tabasco Pepper Sauce", + "beets", + "onions", + "black peppercorns", + "potatoes", + "hot sauce", + "lemon juice", + "ground cumin", + "kidney beans", + "salt", + "oil", + "cabbage", + "sugar", + "bay leaves", + "mrs. dash seasoning mix", + "carrots" + ] + }, + { + "id": 44016, + "cuisine": "italian", + "ingredients": [ + "ground red pepper", + "salt", + "rotini", + "olive oil", + "diced tomatoes", + "garlic cloves", + "dried oregano", + "sugar", + "chili powder", + "all-purpose flour", + "fresh parsley", + "sea scallops", + "paprika", + "corn starch" + ] + }, + { + "id": 16939, + "cuisine": "mexican", + "ingredients": [ + "serrano chilies", + "green onions", + "rice vinegar", + "large egg whites", + "queso fresco", + "salad oil", + "black beans", + "baking powder", + "all-purpose flour", + "large egg yolks", + "salt", + "ground cumin" + ] + }, + { + "id": 14305, + "cuisine": "vietnamese", + "ingredients": [ + "bean threads", + "Sriracha", + "vegetable stock", + "cinnamon sticks", + "lime", + "green onions", + "ginger", + "onions", + "clove", + "coriander seeds", + "rice noodles", + "star anise", + "frozen shelled edamame", + "kecap manis", + "cilantro", + "bok choy" + ] + }, + { + "id": 27897, + "cuisine": "japanese", + "ingredients": [ + "cooked brown rice", + "lemon", + "nori", + "bone broth", + "beef rib short", + "fresh ginger", + "tamari soy sauce", + "fresh shiitake mushrooms", + "scallions" + ] + }, + { + "id": 38989, + "cuisine": "french", + "ingredients": [ + "water", + "lobster", + "salt", + "parsnips", + "fresh thyme", + "chopped celery", + "onions", + "olive oil", + "dry white wine", + "carrots", + "fennel bulb", + "garlic", + "fresh parsley" + ] + }, + { + "id": 44767, + "cuisine": "japanese", + "ingredients": [ + "dark soy sauce", + "mirin", + "chili powder", + "corn starch", + "spinach leaves", + "light soy sauce", + "green onions", + "salt", + "boiling water", + "sugar", + "udon", + "rice noodles", + "ground white pepper", + "eggs", + "dashi", + "boneless skinless chicken breasts", + "rice vinegar" + ] + }, + { + "id": 36126, + "cuisine": "mexican", + "ingredients": [ + "red chili peppers", + "radishes", + "salt", + "dried oregano", + "hot red pepper flakes", + "white hominy", + "garlic", + "corn tortillas", + "avocado", + "white onion", + "lime wedges", + "pork country-style ribs", + "iceberg lettuce", + "chicken broth", + "water", + "vegetable oil", + "hot water" + ] + }, + { + "id": 34955, + "cuisine": "italian", + "ingredients": [ + "cauliflower", + "garlic", + "almond milk", + "gluten", + "freshly ground pepper", + "nutritional yeast", + "salt", + "extra-virgin olive oil", + "lemon juice" + ] + }, + { + "id": 31938, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "cooking oil", + "black vinegar", + "soy sauce", + "ginger", + "red chili peppers", + "green onions", + "eggplant", + "garlic" + ] + }, + { + "id": 27555, + "cuisine": "chinese", + "ingredients": [ + "wine", + "light soy sauce", + "green onions", + "salt", + "dough", + "water", + "hoisin sauce", + "sesame oil", + "oil", + "sugar", + "honey", + "baking powder", + "chinese five-spice powder", + "dark soy sauce", + "active dry yeast", + "flour", + "cake flour", + "char siu" + ] + }, + { + "id": 21813, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "jalapeno chilies", + "cayenne pepper", + "chipotles in adobo", + "oregano", + "chicken broth", + "ground black pepper", + "garlic", + "sour cream", + "onions", + "green cabbage", + "garlic powder", + "baby spinach", + "carrots", + "medium shrimp", + "monterey jack", + "kosher salt", + "unsalted butter", + "all-purpose flour", + "corn tortillas", + "chopped cilantro fresh" + ] + }, + { + "id": 33755, + "cuisine": "irish", + "ingredients": [ + "brown sugar", + "baking soda", + "baking powder", + "large egg whites", + "low-fat buttermilk", + "all-purpose flour", + "whole wheat pastry flour", + "dried cherry", + "butter", + "rolled oats", + "crystallized ginger", + "salt" + ] + }, + { + "id": 1818, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "fresh lime juice", + "taco seasoning", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 4420, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "asadero", + "garlic", + "beer", + "dried oregano", + "ground cloves", + "chuck roast", + "diced tomatoes", + "ground allspice", + "chopped cilantro", + "chiles", + "lime juice", + "bacon", + "yellow onion", + "bay leaf", + "ground cumin", + "muenster", + "kosher salt", + "russet potatoes", + "beef broth", + "corn tortillas", + "monterey jack" + ] + }, + { + "id": 42543, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "vegetable oil", + "fresh lime juice", + "tomatoes", + "ground red pepper", + "sauce", + "chopped cilantro fresh", + "dark molasses", + "shallots", + "okra", + "garam masala", + "worcestershire sauce", + "chopped fresh mint" + ] + }, + { + "id": 27949, + "cuisine": "irish", + "ingredients": [ + "salt", + "freshly ground pepper", + "savoy cabbage", + "butter" + ] + }, + { + "id": 29789, + "cuisine": "japanese", + "ingredients": [ + "pepper", + "white rice", + "large eggs", + "onions", + "large egg whites", + "salt", + "shredded cabbage", + "nori" + ] + }, + { + "id": 15300, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "baking soda", + "buttermilk", + "warm water", + "baking powder", + "all-purpose flour", + "shortening", + "granulated sugar", + "salt", + "active dry yeast", + "butter" + ] + }, + { + "id": 49308, + "cuisine": "indian", + "ingredients": [ + "dijon mustard", + "curry powder", + "salt", + "butter", + "honey", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 8980, + "cuisine": "spanish", + "ingredients": [ + "baking powder", + "powdered sugar", + "vanilla extract", + "sugar", + "all-purpose flour", + "eggs", + "butter" + ] + }, + { + "id": 9713, + "cuisine": "southern_us", + "ingredients": [ + "black olives", + "garlic cloves", + "pepper", + "hot sauce", + "eggs", + "salt", + "fresh parsley", + "olive oil", + "grated lemon zest" + ] + }, + { + "id": 42737, + "cuisine": "thai", + "ingredients": [ + "salted roast peanuts", + "white sugar", + "soy sauce", + "toasted sesame oil", + "garlic chili sauce", + "canola oil", + "hot chili oil", + "fresh lime juice" + ] + }, + { + "id": 14103, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic", + "black beans", + "asadero", + "cactus pad", + "mixed spice", + "flour tortillas", + "purple onion", + "crushed tomatoes", + "cilantro", + "long grain white rice" + ] + }, + { + "id": 37641, + "cuisine": "southern_us", + "ingredients": [ + "bread crumbs", + "flour", + "salt", + "milk", + "dry mustard", + "pepper", + "butter", + "elbow macaroni", + "light cream", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 40106, + "cuisine": "mexican", + "ingredients": [ + "grenadine syrup", + "orange", + "tequila", + "ice cubes", + "orange juice", + "cocktail cherries" + ] + }, + { + "id": 34170, + "cuisine": "japanese", + "ingredients": [ + "sake", + "ground black pepper", + "garlic", + "olive oil", + "mirin", + "kosher salt", + "unsalted butter", + "filet", + "garlic chives", + "fresh ginger", + "fresh shiitake mushrooms" + ] + }, + { + "id": 40614, + "cuisine": "italian", + "ingredients": [ + "pepper", + "fennel bulb", + "dry white wine", + "olive oil", + "low sodium chicken broth", + "salt", + "sweet onion", + "grated parmesan cheese", + "butter", + "arborio rice", + "prosciutto", + "bosc pears", + "garlic cloves" + ] + }, + { + "id": 6396, + "cuisine": "italian", + "ingredients": [ + "radicchio leaves", + "large garlic cloves", + "onions", + "fresh oregano leaves", + "vegetable broth", + "kosher salt", + "italian pork sausage", + "giant white beans", + "extra-virgin olive oil" + ] + }, + { + "id": 9159, + "cuisine": "chinese", + "ingredients": [ + "gai lan", + "garlic", + "vegetables", + "kosher salt", + "oyster sauce", + "sesame oil" + ] + }, + { + "id": 13372, + "cuisine": "southern_us", + "ingredients": [ + "cajun seasoning", + "catfish fillets", + "salt", + "bacon", + "yellow corn meal" + ] + }, + { + "id": 5808, + "cuisine": "italian", + "ingredients": [ + "sugar", + "garlic", + "fresh mint", + "ground black pepper", + "bow-tie pasta", + "ricotta salata", + "salt", + "tomatoes", + "extra-virgin olive oil", + "grated lemon zest" + ] + }, + { + "id": 5985, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "dried thyme", + "worcestershire sauce", + "salt", + "sugar", + "chicken breasts", + "garlic", + "flat leaf parsley", + "green bell pepper", + "bay leaves", + "diced tomatoes", + "shrimp", + "celery ribs", + "pepper", + "cajun seasoning", + "smoked sausage", + "onions" + ] + }, + { + "id": 25251, + "cuisine": "spanish", + "ingredients": [ + "sea salt", + "white sandwich bread", + "hard-boiled egg", + "garlic", + "sherry vinegar", + "extra-virgin olive oil", + "plum tomatoes", + "shallots", + "serrano ham" + ] + }, + { + "id": 40137, + "cuisine": "korean", + "ingredients": [ + "water", + "cooking oil", + "salt", + "scallions", + "soy sauce", + "cayenne", + "paprika", + "firm tofu", + "ground black pepper", + "sesame oil", + "rice vinegar", + "celery", + "boneless chop pork", + "zucchini", + "garlic", + "rice" + ] + }, + { + "id": 48865, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic cloves", + "lime", + "medium shrimp", + "black pepper", + "corn tortillas", + "avocado", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 38564, + "cuisine": "jamaican", + "ingredients": [ + "dried thyme", + "margarine", + "allspice", + "stewed tomatoes", + "green chilies", + "black-eyed peas", + "rice", + "green bell pepper", + "frozen corn", + "okra" + ] + }, + { + "id": 21340, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "baking powder", + "margarine", + "powdered sugar", + "baking spray", + "cake flour", + "bananas", + "vanilla extract", + "macadamia nuts", + "dark rum", + "salt" + ] + }, + { + "id": 48047, + "cuisine": "irish", + "ingredients": [ + "kosher salt", + "lemon", + "orange", + "water", + "sugar", + "red grapefruit" + ] + }, + { + "id": 36840, + "cuisine": "thai", + "ingredients": [ + "black peppercorns", + "fruit", + "meat", + "serrano", + "coconut milk", + "tumeric", + "green curry paste", + "shallots", + "cumin seed", + "lime zest", + "sugar", + "shrimp paste", + "cilantro root", + "garlic cloves", + "fish sauce", + "lemongrass", + "seeds", + "Thai eggplants", + "galangal" + ] + }, + { + "id": 21831, + "cuisine": "southern_us", + "ingredients": [ + "minced garlic", + "chips", + "coarse salt", + "peanut oil", + "chicken thighs", + "ground black pepper", + "onion powder", + "cayenne pepper", + "lard", + "garlic powder", + "baking powder", + "all-purpose flour", + "coca-cola", + "liquid smoke", + "large eggs", + "Tabasco Pepper Sauce", + "sauce", + "flat leaf parsley" + ] + }, + { + "id": 44375, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "instant espresso powder", + "cinnamon sticks", + "vanilla beans", + "whipping cream", + "large egg yolks", + "coffee beans" + ] + }, + { + "id": 35923, + "cuisine": "cajun_creole", + "ingredients": [ + "salt", + "mayonaise", + "slaw mix", + "creole mustard", + "jelly" + ] + }, + { + "id": 10277, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "salt", + "ground black pepper", + "karashi", + "short rib", + "sugar", + "balsamic vinegar" + ] + }, + { + "id": 28803, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "bone-in pork chops", + "salt", + "paprika", + "powdered garlic", + "pepper", + "all-purpose flour" + ] + }, + { + "id": 17085, + "cuisine": "filipino", + "ingredients": [ + "self raising flour", + "pandan extract", + "eggs", + "vegetable oil", + "cream of tartar", + "egg whites", + "sugar", + "coconut milk" + ] + }, + { + "id": 19275, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "cooked shrimp", + "sweet onion", + "vegetable oil", + "sugar", + "large eggs", + "white cornmeal", + "cream style corn", + "buttermilk" + ] + }, + { + "id": 8476, + "cuisine": "italian", + "ingredients": [ + "Tipo 00 flour", + "semolina", + "extra-virgin olive oil", + "large free range egg" + ] + }, + { + "id": 20407, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "ground black pepper", + "sesame oil", + "salt", + "canola oil", + "ketchup", + "hoisin sauce", + "chili paste with garlic", + "corn starch", + "soy sauce", + "boneless chicken breast", + "dry sherry", + "rice vinegar", + "sliced green onions", + "water", + "egg whites", + "garlic", + "dried red chile peppers" + ] + }, + { + "id": 19025, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "chicken cutlets", + "garlic cloves", + "eggs", + "crushed tomatoes", + "red pepper flakes", + "fresh basil leaves", + "sugar", + "olive oil", + "salt", + "dried oregano", + "bread crumbs", + "grated parmesan cheese", + "yellow onion" + ] + }, + { + "id": 43522, + "cuisine": "mexican", + "ingredients": [ + "lime", + "rice", + "coriander", + "avocado", + "tortillas", + "king prawns", + "cherry tomatoes", + "garlic cloves", + "chili pepper", + "red pepper", + "onions" + ] + }, + { + "id": 9297, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "smoked ham hocks", + "salt", + "water", + "pinto beans" + ] + }, + { + "id": 22533, + "cuisine": "italian", + "ingredients": [ + "bay leaves", + "celery", + "salt and ground black pepper", + "white beans", + "italian seasoning", + "turkey legs", + "diced tomatoes", + "onions", + "grated parmesan cheese", + "carrots" + ] + }, + { + "id": 40113, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "pepper", + "bacon", + "red bell pepper", + "southern comfort", + "butter", + "salt", + "brown sugar", + "water", + "purple onion", + "Heinz Ketchup", + "white pepper", + "heavy cream", + "grit quick" + ] + }, + { + "id": 36274, + "cuisine": "southern_us", + "ingredients": [ + "fresh green bean", + "chicken broth", + "salt", + "bacon", + "ground black pepper" + ] + }, + { + "id": 43912, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "ground nutmeg", + "cinnamon", + "ground ginger", + "ground cloves", + "egg whites", + "dark brown sugar", + "eggs", + "kosher salt", + "sweet potatoes", + "unsweetened almond milk", + "unsalted butter", + "vanilla extract" + ] + }, + { + "id": 13322, + "cuisine": "indian", + "ingredients": [ + "shredded coconut", + "green onions", + "yellow onion", + "cabbage", + "fresh tomatoes", + "olive oil", + "salt", + "chopped cilantro", + "curry powder", + "garlic", + "coconut milk", + "pepper", + "butter", + "carrots" + ] + }, + { + "id": 15989, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "vegetable oil", + "flour", + "salt", + "sugar", + "vanilla", + "eggs", + "baking powder" + ] + }, + { + "id": 10123, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "lime juice", + "whole wheat tortillas", + "purple onion", + "mango", + "spanish rice", + "jalapeno chilies", + "cracked black pepper", + "chipotles in adobo", + "tilapia fillets", + "slaw mix", + "garlic", + "chipotle chile powder", + "black beans", + "garlic powder", + "cilantro", + "salt", + "canola oil" + ] + }, + { + "id": 49366, + "cuisine": "italian", + "ingredients": [ + "sugar", + "garlic cloves", + "tomatoes", + "olive oil", + "arugula", + "penne", + "pecorino romano cheese", + "dried oregano", + "dried thyme", + "onions" + ] + }, + { + "id": 25962, + "cuisine": "mexican", + "ingredients": [ + "carrots", + "jalapeno chilies", + "cabbage", + "lime", + "chopped cilantro fresh", + "purple onion" + ] + }, + { + "id": 30643, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "jalapeno chilies", + "salt", + "garlic cloves", + "diced green chilies", + "diced tomatoes", + "cayenne pepper", + "cumin", + "poblano peppers", + "paprika", + "pork roast", + "sage", + "white pepper", + "seeds", + "yellow onion", + "oregano" + ] + }, + { + "id": 387, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "hot Italian sausages", + "mushrooms", + "onions", + "grated parmesan cheese", + "red bell pepper", + "penne pasta", + "italian salad dressing" + ] + }, + { + "id": 44472, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "cooking spray", + "carrots", + "part-skim mozzarella cheese", + "salt", + "olive oil", + "part-skim ricotta cheese", + "spaghetti", + "fresh spinach", + "large eggs", + "garlic cloves" + ] + }, + { + "id": 48220, + "cuisine": "french", + "ingredients": [ + "french bread", + "gruyere cheese", + "onions", + "dried thyme", + "dry mustard", + "beer", + "butter", + "beef broth", + "ground black pepper", + "garlic", + "bay leaf" + ] + }, + { + "id": 30572, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "arugula", + "lemon zest", + "penne", + "extra-virgin olive oil", + "parmigiano reggiano cheese" + ] + }, + { + "id": 25114, + "cuisine": "greek", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "fresh parsley", + "frozen chopped spinach", + "feta cheese", + "vegetable oil", + "ground cinnamon", + "finely chopped onion", + "butter", + "phyllo dough", + "shredded swiss cheese" + ] + }, + { + "id": 24604, + "cuisine": "spanish", + "ingredients": [ + "turnips", + "fronds", + "fennel bulb", + "vegetable broth", + "fresh parsley", + "arborio rice", + "garbanzo beans", + "dry white wine", + "baby carrots", + "plum tomatoes", + "water", + "asparagus", + "paprika", + "garlic cloves", + "saffron threads", + "olive oil", + "new potatoes", + "salt", + "onions" + ] + }, + { + "id": 47111, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "garlic", + "brown sugar", + "vinegar", + "oil", + "honey", + "salt", + "soy sauce", + "cracked black pepper", + "chicken" + ] + }, + { + "id": 43449, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "lemon", + "white vinegar", + "watermelon", + "seasoning", + "pickling salt", + "water" + ] + }, + { + "id": 8572, + "cuisine": "moroccan", + "ingredients": [ + "chicken breast halves", + "ground cumin", + "honey", + "salsa", + "olive oil", + "ripe olives", + "ground cinnamon", + "raisins" + ] + }, + { + "id": 245, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "granulated sugar", + "cornmeal", + "baking soda", + "salt", + "honey", + "buttermilk", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 31538, + "cuisine": "french", + "ingredients": [ + "French lentils", + "celery root", + "minced garlic", + "crumbled blue cheese", + "fresh rosemary", + "ground nutmeg", + "olive oil", + "white wine vinegar" + ] + }, + { + "id": 1893, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed brown sugar", + "ground ginger", + "ground nutmeg", + "grated orange", + "orange juice", + "vegetable oil cooking spray", + "chopped pecans", + "ground cinnamon", + "sweet potatoes" + ] + }, + { + "id": 30616, + "cuisine": "chinese", + "ingredients": [ + "sugar pea", + "pork tenderloin", + "red pepper flakes", + "rice vinegar", + "brown sugar", + "water", + "shallots", + "garlic", + "corn starch", + "pepper", + "sherry", + "ginger", + "rice", + "soy sauce", + "asparagus", + "sesame oil", + "salt" + ] + }, + { + "id": 44134, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "ground cumin", + "ground cinnamon", + "allspice", + "ground ginger", + "ground coriander", + "ground black pepper" + ] + }, + { + "id": 38071, + "cuisine": "mexican", + "ingredients": [ + "yellow squash", + "roma tomatoes", + "cilantro", + "grated jack cheese", + "onions", + "corn", + "zucchini", + "guacamole", + "salsa", + "sour cream", + "olive oil", + "low sodium chicken broth", + "salt", + "long-grain rice", + "lime", + "flour tortillas", + "seasoned black beans", + "hot sauce", + "chopped cilantro" + ] + }, + { + "id": 4110, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "quinces", + "red currant jelly", + "onions", + "celery ribs", + "vegetable oil", + "dry red wine", + "dried cranberries", + "veal demi-glace", + "lemon", + "garlic cloves", + "juniper berries", + "cinnamon", + "lamb shoulder" + ] + }, + { + "id": 47868, + "cuisine": "mexican", + "ingredients": [ + "cayenne", + "ground allspice", + "canola oil", + "jack cheese", + "salt", + "ancho chile pepper", + "cooked rice", + "garlic", + "sour cream", + "ground cumin", + "cactus paddles", + "yellow onion", + "oregano" + ] + }, + { + "id": 5330, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "garlic powder", + "salt", + "cornmeal", + "meat cuts", + "vinegar", + "cayenne pepper", + "black pepper", + "prepared horseradish", + "all-purpose flour", + "mustard", + "pepper", + "red wine vinegar", + "oil" + ] + }, + { + "id": 21766, + "cuisine": "southern_us", + "ingredients": [ + "bacon slices", + "cooked chicken", + "bread slices", + "melted butter", + "sauce", + "shredded swiss cheese", + "plum tomatoes" + ] + }, + { + "id": 22144, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "black pepper", + "spanish onion", + "garlic powder", + "vegetable oil", + "salt", + "bay leaf", + "chicken stock", + "fresh oregano leaves", + "water", + "chopped tomatoes", + "onion powder", + "dried salted codfish", + "cayenne pepper", + "oregano", + "eggs", + "kosher salt", + "dried thyme", + "ground black pepper", + "paprika", + "all-purpose flour", + "onions", + "tomato sauce", + "minced garlic", + "olive oil", + "unsalted butter", + "crushed red pepper flakes", + "essence", + "fresh basil leaves" + ] + }, + { + "id": 25857, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cayenne", + "butter", + "lime juice", + "jalapeno chilies", + "all-purpose flour", + "tomatoes", + "large eggs", + "salt", + "milk", + "green onions" + ] + }, + { + "id": 28969, + "cuisine": "southern_us", + "ingredients": [ + "fruit", + "rub", + "sauce", + "pork baby back ribs" + ] + }, + { + "id": 16239, + "cuisine": "russian", + "ingredients": [ + "olive oil", + "caviar", + "baking potatoes", + "chopped fresh chives", + "sour cream" + ] + }, + { + "id": 47633, + "cuisine": "mexican", + "ingredients": [ + "extra lean ground beef", + "sliced black olives", + "fusilli", + "taco seasoning mix", + "green onions", + "salsa", + "shredded cheddar cheese", + "jalapeno chilies", + "salt", + "olive oil", + "ranch dressing", + "red bell pepper" + ] + }, + { + "id": 28436, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "hot sauce", + "fresh lime juice", + "bell pepper", + "cucumber", + "chopped cilantro fresh", + "peanuts", + "peanut butter", + "toasted sesame seeds", + "garlic", + "rice crackers", + "ground cumin" + ] + }, + { + "id": 9772, + "cuisine": "jamaican", + "ingredients": [ + "habanero pepper", + "scallions", + "onions", + "black pepper", + "garlic", + "thyme", + "green bell pepper", + "ackee", + "codfish", + "olive oil", + "salt", + "red bell pepper" + ] + }, + { + "id": 1881, + "cuisine": "french", + "ingredients": [ + "purple onion", + "green beans", + "dijon mustard", + "freshly ground pepper", + "white vinegar", + "salt", + "fresh parsley", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 48262, + "cuisine": "korean", + "ingredients": [ + "pork", + "salt", + "corn tortillas", + "sugar", + "chili pepper", + "Gochujang base", + "soy sauce", + "rice vinegar", + "pickles", + "sesame oil", + "english cucumber" + ] + }, + { + "id": 4660, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "greens", + "roasted almonds", + "red grape", + "frisee", + "asparagus", + "salt", + "sherry vinegar", + "shallots", + "serrano ham" + ] + }, + { + "id": 15130, + "cuisine": "jamaican", + "ingredients": [ + "cold water", + "pepper", + "unsalted butter", + "rum", + "salt", + "ground cardamom", + "ground turmeric", + "tomatoes", + "water", + "fresh thyme", + "vegetable oil", + "all-purpose flour", + "chopped parsley", + "ground cumin", + "jamaican rum", + "fresh ginger", + "flour", + "vegetable shortening", + "ground allspice", + "ground beef", + "tumeric", + "ground black pepper", + "egg yolks", + "garlic", + "scallions", + "onions" + ] + }, + { + "id": 21327, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "freshly ground pepper", + "parmesan cheese", + "croutons", + "olive oil", + "garlic cloves", + "romaine lettuce", + "worcestershire sauce", + "fresh lemon juice" + ] + }, + { + "id": 21320, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "napa cabbage", + "rice vinegar", + "spring onions", + "ginger", + "sesame seeds", + "red pepper flakes", + "romaine lettuce", + "sesame oil", + "garlic" + ] + }, + { + "id": 39751, + "cuisine": "japanese", + "ingredients": [ + "chicken stock", + "dashi", + "soup", + "butter", + "scallions", + "water", + "mirin", + "sesame oil", + "dried bonito flakes", + "soy sauce", + "ground black pepper", + "chives", + "sea salt", + "toasted sesame seeds", + "corn", + "bay scallops", + "ramen noodles", + "frozen corn" + ] + }, + { + "id": 32062, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "dry mustard", + "condensed chicken broth", + "all-purpose flour", + "vegetable oil", + "salt", + "pork chops, 1 inch thick" + ] + }, + { + "id": 7290, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "shallots", + "white miso", + "low sodium chicken broth", + "chopped cilantro fresh", + "fava beans", + "unsalted butter", + "chopped fresh thyme", + "canola", + "cod fillets", + "ginger" + ] + }, + { + "id": 14031, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "rice", + "lettuce", + "cilantro", + "onions", + "guacamole", + "greek yogurt", + "tomatoes", + "salsa", + "carnitas" + ] + }, + { + "id": 13585, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "peanut butter", + "vegetable oil", + "soy sauce", + "fresh green bean", + "boneless skinless chicken breasts", + "fresh parsley" + ] + }, + { + "id": 35684, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "hot pepper sauce", + "vegetable oil", + "rolls", + "cheddar cheese", + "panko", + "green tomatoes", + "all-purpose flour", + "shredded mozzarella cheese", + "kosher salt", + "roasted red peppers", + "bacon", + "cream cheese", + "garlic powder", + "large eggs", + "paprika", + "freshly ground pepper" + ] + }, + { + "id": 17157, + "cuisine": "italian", + "ingredients": [ + "water", + "balsamic vinegar", + "toasted pine nuts", + "tomato sauce", + "sun-dried tomatoes", + "whole wheat fusilli", + "arugula", + "fresh basil", + "olive oil", + "rotisserie chicken", + "sliced mushrooms", + "sugar", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 14142, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "poblano peppers", + "salt", + "fajita seasoning mix", + "black beans", + "vegetable oil", + "red bell pepper", + "pepper", + "diced tomatoes", + "onions", + "green bell pepper", + "boneless skinless chicken breasts", + "hot sauce" + ] + }, + { + "id": 3894, + "cuisine": "korean", + "ingredients": [ + "pepper flakes", + "radishes", + "garlic", + "chinese chives", + "sugar", + "napa cabbage", + "sauce", + "sweet rice flour", + "fish sauce", + "green onions", + "salt", + "onions", + "turbinado", + "water", + "ginger", + "carrots" + ] + }, + { + "id": 19175, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "egg whites", + "garlic", + "ground chicken", + "sesame oil", + "corn starch", + "white pepper", + "worcestershire sauce", + "white sugar", + "soy sauce", + "rice wine", + "salt" + ] + }, + { + "id": 40752, + "cuisine": "southern_us", + "ingredients": [ + "clove", + "brewed coffee", + "cinnamon sticks", + "orange", + "fresh orange juice", + "triple sec", + "fresh lemon juice", + "brandy", + "lemon" + ] + }, + { + "id": 3056, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "flowering chives", + "garlic", + "toasted sesame seeds", + "shiitake", + "sesame oil", + "ramen", + "gyoza", + "ground pork", + "onions", + "dashi", + "mirin", + "aka miso", + "sliced green onions" + ] + }, + { + "id": 9119, + "cuisine": "italian", + "ingredients": [ + "eggs", + "olive oil", + "red pepper flakes", + "yellow onion", + "San Marzano tomatoes", + "sugar", + "parsley", + "ground pork", + "spaghetti", + "green bell pepper", + "parmesan cheese", + "sea salt", + "ground beef", + "nutmeg", + "black pepper", + "ricotta cheese", + "garlic", + "italian seasoning" + ] + }, + { + "id": 20493, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "garlic", + "polenta prepar", + "orange bell pepper", + "yellow onion", + "olive oil", + "salt", + "bulk italian sausag", + "fresh mozzarella", + "fresh oregano" + ] + }, + { + "id": 264, + "cuisine": "greek", + "ingredients": [ + "dry white wine", + "salt", + "fresh lemon juice", + "olive oil", + "orzo", + "garlic cloves", + "peeled tomatoes", + "littleneck clams", + "chopped onion", + "fresh parsley", + "water", + "clam juice", + "fresh oregano", + "feta cheese crumbles" + ] + }, + { + "id": 48111, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "fresh ginger", + "button mushrooms", + "carrots", + "black pepper", + "boneless chicken", + "salt", + "snow peas", + "soy sauce", + "sesame oil", + "garlic", + "corn starch", + "chicken stock", + "water", + "crushed red pepper flakes", + "oyster sauce" + ] + }, + { + "id": 14465, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "baking powder", + "all-purpose flour", + "sugar", + "cake flour", + "coconut milk", + "coconut oil", + "sea salt", + "Edam", + "cooking spray", + "frozen banana leaf" + ] + }, + { + "id": 8687, + "cuisine": "thai", + "ingredients": [ + "mussels", + "thai green curry paste", + "lemongrass", + "asian fish sauce", + "kaffir lime leaves", + "fresh basil leaves", + "coconut milk" + ] + }, + { + "id": 24478, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "buttermilk", + "bread flour", + "baking soda", + "peanut oil", + "active dry yeast", + "salt", + "whole milk", + "confectioners sugar" + ] + }, + { + "id": 22791, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "butter", + "salt", + "fresh parsley", + "chicken broth", + "green onions", + "garlic", + "diced celery", + "porcini", + "fennel bulb", + "heavy cream", + "fresh salmon", + "saffron", + "curry powder", + "portabello mushroom", + "lemon slices", + "onions" + ] + }, + { + "id": 46534, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "palm sugar", + "cilantro leaves", + "tomatoes", + "lemongrass", + "chicken breasts", + "galangal", + "red chili peppers", + "mushrooms", + "coconut milk", + "kaffir lime leaves", + "lime", + "shallots", + "onions" + ] + }, + { + "id": 26783, + "cuisine": "spanish", + "ingredients": [ + "turkey bacon", + "salt", + "pepper", + "potatoes", + "chorizo sausage", + "eggs", + "olive oil", + "yellow onion", + "milk", + "diced tomatoes" + ] + }, + { + "id": 35599, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "dried apricot", + "vegetable oil", + "all-purpose flour", + "black pepper", + "peeled fresh ginger", + "currant", + "turkey tenderloins", + "brown sugar", + "cooking spray", + "balsamic vinegar", + "apricot nectar", + "fat free less sodium chicken broth", + "shallots", + "salt" + ] + }, + { + "id": 8827, + "cuisine": "irish", + "ingredients": [ + "milk", + "salt", + "sugar", + "large eggs", + "dried currants", + "baking powder", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 35120, + "cuisine": "filipino", + "ingredients": [ + "eggplant", + "salt", + "vegetable oil", + "soy sauce", + "red wine vinegar", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 4213, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken bouillon", + "green onions", + "red beans", + "bay leaf", + "water", + "smoked sausage", + "blackening seasoning", + "celery" + ] + }, + { + "id": 48384, + "cuisine": "japanese", + "ingredients": [ + "water", + "green onions", + "sauce", + "brown rice vinegar", + "sesame seeds", + "lemon", + "avocado", + "orange", + "brown rice", + "nori", + "brown sugar", + "extra firm tofu", + "fine sea salt" + ] + }, + { + "id": 20927, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "canola oil", + "onions", + "salt", + "fresh cilantro", + "long grain white rice" + ] + }, + { + "id": 33513, + "cuisine": "french", + "ingredients": [ + "sea bass", + "extra-virgin olive oil", + "bay leaves", + "freshly ground pepper", + "lemon wedge", + "fennel", + "salt" + ] + }, + { + "id": 3575, + "cuisine": "chinese", + "ingredients": [ + "fish sauce", + "ground pork", + "ground white pepper", + "sesame oil", + "salt", + "chicken broth", + "wonton wrappers", + "scallions", + "water", + "deveined shrimp" + ] + }, + { + "id": 6933, + "cuisine": "italian", + "ingredients": [ + "roasted red peppers", + "salt", + "minced garlic", + "half & half", + "feta cheese crumbles", + "black pepper", + "finely chopped onion", + "smoked chicken sausages", + "parmesan cheese", + "extra-virgin olive oil", + "noodles" + ] + }, + { + "id": 31133, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "buttermilk", + "green chilies", + "mustard seeds", + "grated coconut", + "salt", + "oil", + "ground turmeric", + "asafoetida", + "ginger", + "curds", + "white sesame seeds", + "chili powder", + "cilantro leaves", + "gram flour" + ] + }, + { + "id": 46965, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "browning", + "brown sugar", + "tomato ketchup", + "cornflour", + "water", + "chinese five-spice powder" + ] + }, + { + "id": 38675, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "beef rib short", + "sesame oil", + "green onions", + "white sugar", + "soy sauce", + "garlic" + ] + }, + { + "id": 8896, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "scallions", + "shredded Monterey Jack cheese", + "diced green chilies", + "frozen corn kernels", + "cumin", + "shredded cheddar cheese", + "salt", + "enchilada sauce", + "light sour cream", + "flour tortillas", + "cream cheese", + "chicken" + ] + }, + { + "id": 32455, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "ground cumin", + "water", + "salt", + "minced garlic", + "passata", + "ground black pepper", + "long-grain rice" + ] + }, + { + "id": 49191, + "cuisine": "mexican", + "ingredients": [ + "lime", + "butter", + "ground coriander", + "smoked cheddar cheese", + "ground cumin", + "black beans", + "hot pepper sauce", + "purple onion", + "sour cream", + "chopped cilantro", + "fire roasted diced tomatoes", + "corn kernels", + "garlic", + "scallions", + "chipotles in adobo", + "pepper", + "vegetable oil", + "salt", + "corn tortillas", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 47256, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "lemon zest", + "all-purpose flour", + "unsalted butter", + "salt", + "sweetened condensed milk", + "large egg yolks", + "baking powder", + "lemon juice", + "sesame seeds", + "basil leaves", + "berries" + ] + }, + { + "id": 10040, + "cuisine": "italian", + "ingredients": [ + "flour", + "sage leaves", + "onions", + "salt", + "olive oil" + ] + }, + { + "id": 46533, + "cuisine": "indian", + "ingredients": [ + "zucchini", + "red pepper", + "onions", + "potatoes", + "passata", + "coriander", + "butternut squash", + "rice", + "masala", + "eggplant", + "vegetable oil", + "coconut milk" + ] + }, + { + "id": 48020, + "cuisine": "italian", + "ingredients": [ + "bacon", + "spaghettini", + "canned low sodium chicken broth", + "salt", + "garlic", + "onions", + "grated parmesan cheese", + "scallions" + ] + }, + { + "id": 28831, + "cuisine": "british", + "ingredients": [ + "pepper", + "lemon wedge", + "fish fillets", + "vinegar", + "dry bread crumbs", + "medium eggs", + "olive oil", + "salt", + "white flour", + "potatoes" + ] + }, + { + "id": 32121, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "water", + "cinnamon", + "cumin", + "white pepper", + "fresh ginger", + "garlic cloves", + "white onion", + "chopped tomatoes", + "coriander", + "lamb shanks", + "olive oil", + "grated lemon zest" + ] + }, + { + "id": 849, + "cuisine": "italian", + "ingredients": [ + "boneless skinless chicken breasts", + "cayenne pepper", + "frozen peas", + "fettucine", + "salt", + "garlic cloves", + "butter", + "and fat free half half", + "grated parmesan cheese", + "all-purpose flour", + "onions" + ] + }, + { + "id": 10075, + "cuisine": "jamaican", + "ingredients": [ + "dried thyme", + "all-purpose flour", + "onions", + "tomato paste", + "oxtails", + "carrots", + "ground black pepper", + "ground allspice", + "water", + "salt", + "bay leaf" + ] + }, + { + "id": 13252, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "baby spinach leaves", + "butternut squash", + "flour tortillas", + "mozzarella cheese", + "butter" + ] + }, + { + "id": 16151, + "cuisine": "greek", + "ingredients": [ + "green bell pepper", + "lemon", + "dried oregano", + "olive oil", + "garlic cloves", + "lamb loin", + "salt", + "ground black pepper", + "onions" + ] + }, + { + "id": 5613, + "cuisine": "mexican", + "ingredients": [ + "fat free less sodium chicken broth", + "salt", + "corn tortillas", + "ground cumin", + "green onions", + "garlic cloves", + "chopped cilantro fresh", + "cooking spray", + "cream cheese", + "onions", + "fresh leav spinach", + "chicken breasts", + "poblano chiles", + "masa harina" + ] + }, + { + "id": 26455, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "ginger", + "coconut milk", + "green onions", + "shrimp", + "thai green curry paste", + "low sodium chicken broth", + "garlic cloves", + "fresh lime juice", + "fish sauce", + "sesame oil", + "red bell pepper" + ] + }, + { + "id": 20494, + "cuisine": "chinese", + "ingredients": [ + "shiitake", + "flank steak", + "less sodium beef broth", + "bok choy", + "cooking spray", + "crushed red pepper", + "carrots", + "sliced green onions", + "low sodium soy sauce", + "peeled fresh ginger", + "rice vinegar", + "hot water", + "hoisin sauce", + "large garlic cloves", + "dark sesame oil", + "soba" + ] + }, + { + "id": 39369, + "cuisine": "indian", + "ingredients": [ + "ground paprika", + "boneless chicken breast", + "salt", + "ghee", + "tomatoes", + "pepper", + "heavy cream", + "natural yogurt", + "red chili peppers", + "chili powder", + "cilantro leaves", + "ground cumin", + "ground cinnamon", + "fresh ginger", + "cracked black pepper", + "garlic cloves" + ] + }, + { + "id": 6329, + "cuisine": "mexican", + "ingredients": [ + "ground chicken", + "guacamole seasoning mix", + "cheddar cheese", + "minced onion", + "lime", + "chopped cilantro fresh", + "bread ciabatta", + "prepar salsa" + ] + }, + { + "id": 2667, + "cuisine": "mexican", + "ingredients": [ + "shredded reduced fat cheddar cheese", + "chili powder", + "frozen corn kernels", + "cumin", + "black beans", + "nonfat greek yogurt", + "salt", + "onions", + "tomatoes", + "olive oil", + "garlic", + "red bell pepper", + "pepper", + "jalapeno chilies", + "spaghetti squash", + "dried oregano" + ] + }, + { + "id": 46367, + "cuisine": "brazilian", + "ingredients": [ + "sazon goya", + "cilantro", + "orange zest", + "chicken stock", + "pimentos", + "rice", + "minced garlic", + "extra-virgin olive oil", + "green olives", + "boneless skinless chicken breasts", + "orange juice" + ] + }, + { + "id": 4220, + "cuisine": "italian", + "ingredients": [ + "turnips", + "leeks", + "jerusalem artichokes", + "parsnips", + "cheese", + "cauliflower", + "extra-virgin olive oil", + "celery root", + "Belgian endive", + "fennel bulb", + "champagne vinegar" + ] + }, + { + "id": 33803, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "tomato salsa", + "salad oil", + "shredded cabbage", + "all-purpose flour", + "lingcod", + "salt", + "corn tortillas", + "lime wedges", + "beer" + ] + }, + { + "id": 16087, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken skinless thigh", + "pea pods", + "carrots", + "chicken broth", + "vegetable oil", + "gingerroot", + "celery", + "cold water", + "water chestnuts", + "fresh mushrooms", + "corn starch", + "soy sauce", + "garlic", + "chow mein noodles", + "onions" + ] + }, + { + "id": 36232, + "cuisine": "southern_us", + "ingredients": [ + "syrup", + "vanilla yogurt", + "light brown sugar", + "salt", + "granola", + "ground cinnamon", + "corn starch" + ] + }, + { + "id": 33688, + "cuisine": "mexican", + "ingredients": [ + "water", + "ground beef", + "flour tortillas", + "Campbell's Condensed Tomato Soup", + "shredded cheddar cheese", + "pace picante sauce" + ] + }, + { + "id": 6903, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "ground red pepper", + "fresh lime juice", + "lime rind" + ] + }, + { + "id": 49394, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "garlic cloves", + "tomatillos", + "chiles", + "salt", + "water" + ] + }, + { + "id": 18869, + "cuisine": "indian", + "ingredients": [ + "chicken", + "chicken breasts" + ] + }, + { + "id": 5523, + "cuisine": "italian", + "ingredients": [ + "chopped cooked ham", + "grated parmesan cheese", + "jumbo pasta shells", + "prepar pesto", + "Alfredo sauce", + "shredded mozzarella cheese", + "frozen chopped spinach", + "garlic powder", + "ricotta cheese", + "ground beef", + "pasta sauce", + "cooking spray", + "crabmeat" + ] + }, + { + "id": 29048, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "almonds", + "yoghurt", + "raisins", + "garlic", + "green chilies", + "bay leaf", + "basmati rice", + "clove", + "milk", + "potatoes", + "chili powder", + "green peas", + "green cardamom", + "green beans", + "onions", + "cumin", + "water", + "garam masala", + "seeds", + "ginger", + "salt", + "carrots", + "ghee", + "ground turmeric", + "black pepper", + "mace", + "mushrooms", + "cinnamon", + "star anise", + "brown cardamom", + "fresh mint", + "cashew nuts", + "saffron" + ] + }, + { + "id": 32731, + "cuisine": "french", + "ingredients": [ + "pernod", + "butter", + "fennel seeds", + "fennel bulb", + "fronds", + "salmon fillets", + "shallots" + ] + }, + { + "id": 21759, + "cuisine": "british", + "ingredients": [ + "whole milk", + "grated Gruyère cheese", + "pumpernickel bread", + "all-purpose flour", + "dry mustard", + "beer", + "unsalted butter", + "cornichons", + "sliced ham" + ] + }, + { + "id": 14887, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "herbs", + "butter cooking spray", + "active dry yeast", + "baking powder", + "all-purpose flour", + "warm water", + "low-fat buttermilk", + "salt", + "yellow corn meal", + "baking soda", + "butter" + ] + }, + { + "id": 29913, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "zucchini", + "salt", + "yellow summer squash", + "cilantro", + "scallions", + "cheddar cheese", + "Ritz Crackers", + "green chilies", + "pepper", + "garlic", + "onions" + ] + }, + { + "id": 24012, + "cuisine": "chinese", + "ingredients": [ + "cooking oil", + "garlic cloves", + "brown sugar", + "ginger", + "Shaoxing wine", + "black vinegar", + "light soy sauce", + "whole chicken" + ] + }, + { + "id": 28928, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "sliced almonds", + "large eggs", + "salt", + "chicken thighs", + "tumeric", + "olive oil", + "brown mustard seeds", + "cinnamon sticks", + "black pepper", + "unsalted butter", + "phyllo", + "onions", + "ground cinnamon", + "water", + "low sodium chicken broth", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 26164, + "cuisine": "french", + "ingredients": [ + "french baguette", + "dijon mustard", + "minced garlic", + "loosely packed fresh basil leaves", + "nonfat mayonnaise", + "balsamic vinegar", + "roast breast of chicken", + "part-skim mozzarella cheese", + "onions" + ] + }, + { + "id": 36533, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "green beans", + "brats", + "cabbage", + "granular no-calorie sucralose sweetener", + "salt", + "butter", + "onions" + ] + }, + { + "id": 34202, + "cuisine": "moroccan", + "ingredients": [ + "chili flakes", + "sliced almonds", + "butternut squash", + "red pepper", + "chickpeas", + "hazelnuts", + "caramels", + "lemon", + "salt", + "cumin", + "pastry", + "olive oil", + "cinnamon", + "purple onion", + "phyllo pastry", + "powdered sugar", + "pepper", + "pomegranate molasses", + "paprika", + "garlic cloves" + ] + }, + { + "id": 10706, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "frozen mixed vegetables", + "diced tomatoes", + "ranch dressing", + "ground turkey", + "chicken broth", + "chopped onion" + ] + }, + { + "id": 27447, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "salt", + "chicken thighs", + "tomatoes", + "vegetable oil", + "garlic cloves", + "dried oregano", + "chipotle chile", + "queso fresco", + "juice", + "water", + "spanish chorizo", + "boiling potatoes" + ] + }, + { + "id": 11923, + "cuisine": "japanese", + "ingredients": [ + "asparagus", + "sauce", + "red bell pepper", + "japanese rice", + "vegetable oil", + "scallions", + "wasabi", + "mushrooms", + "english cucumber", + "soy sauce", + "rice vinegar", + "nori sheets" + ] + }, + { + "id": 35831, + "cuisine": "japanese", + "ingredients": [ + "avocado", + "spring onions", + "toasted sesame seeds", + "sushi rice", + "skinless salmon fillets", + "red chili peppers", + "lemon", + "light soy sauce", + "cilantro leaves" + ] + }, + { + "id": 25420, + "cuisine": "mexican", + "ingredients": [ + "rum", + "shrimp", + "jerk marinade", + "crema", + "corn tortillas", + "pineapple", + "sour cream", + "pineapple salsa", + "coconut cream", + "cabbage" + ] + }, + { + "id": 24227, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "cauliflower flowerets", + "broccoli florets", + "pea pods", + "vegetable oil cooking spray", + "olive oil", + "sliced carrots", + "canned low sodium chicken broth", + "minced garlic", + "dry white wine", + "romano cheese", + "zucchini", + "red pepper" + ] + }, + { + "id": 8716, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "garlic", + "carrots", + "snow peas", + "sugar", + "sesame oil", + "chinese five-spice powder", + "sliced mushrooms", + "dark soy sauce", + "Shaoxing wine", + "scallions", + "hot water", + "orange", + "dark leafy greens", + "oil", + "noodles" + ] + }, + { + "id": 2299, + "cuisine": "southern_us", + "ingredients": [ + "kirsch", + "water", + "sugar", + "blackberries", + "peaches" + ] + }, + { + "id": 26136, + "cuisine": "korean", + "ingredients": [ + "sugar", + "oysters", + "mushrooms", + "salt", + "greens", + "eggs", + "meat marinade", + "beef", + "sesame oil", + "root vegetables", + "spinach", + "pepper", + "asian pear", + "crushed garlic", + "toasted sesame seeds", + "chicken broth", + "soy sauce", + "sesame seeds", + "korean vermicelli", + "yellow onion" + ] + }, + { + "id": 9412, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "penne pasta", + "fresh basil leaves", + "olive oil", + "chopped celery", + "carrots", + "pepper", + "garlic", + "fat", + "fresh bean", + "prosciutto", + "salt", + "onions" + ] + }, + { + "id": 14738, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "carrots", + "chicken broth", + "salt", + "onions", + "celery ribs", + "bay leaves", + "thyme sprigs", + "pork belly", + "garlic cloves" + ] + }, + { + "id": 40087, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salt", + "olive oil", + "chipotles in adobo", + "fresh cilantro", + "fresh lime juice", + "garlic" + ] + }, + { + "id": 43954, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "heavy whipping cream", + "cold milk", + "cream cheese", + "all-purpose flour", + "confectioners sugar", + "chocolate instant pudding", + "chopped walnuts" + ] + }, + { + "id": 38748, + "cuisine": "italian", + "ingredients": [ + "flour tortillas", + "shredded mozzarella cheese", + "pepperoni", + "ragu pizza quick sauc" + ] + }, + { + "id": 13359, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "full fat coconut milk", + "large garlic cloves", + "onions", + "cauliflower", + "crushed tomatoes", + "cinnamon", + "oil", + "cumin", + "pepper", + "chili powder", + "salt", + "coriander", + "brown sugar", + "fresh ginger", + "tandoori seasoning", + "lemon juice" + ] + }, + { + "id": 48418, + "cuisine": "mexican", + "ingredients": [ + "soy sauce", + "jalapeno chilies", + "paprika", + "sour cream", + "pico de gallo", + "honey", + "chili powder", + "dill", + "cumin", + "lime", + "boneless skinless chicken breasts", + "ginger", + "garlic salt", + "mayonaise", + "tortillas", + "apple cider vinegar", + "tequila" + ] + }, + { + "id": 47691, + "cuisine": "japanese", + "ingredients": [ + "sweet rice", + "chestnuts", + "black sesame seeds", + "japanese rice", + "water", + "sake", + "salt" + ] + }, + { + "id": 44123, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "boned lamb shoulder", + "garlic cloves", + "cracked black pepper", + "pancetta", + "fat" + ] + }, + { + "id": 28839, + "cuisine": "italian", + "ingredients": [ + "water", + "ground black pepper", + "all-purpose flour", + "chopped fresh mint", + "fresh basil", + "eggplant", + "baking powder", + "garlic cloves", + "mozzarella cheese", + "fresh parmesan cheese", + "salt", + "toasted wheat germ", + "olive oil", + "cooking spray", + "fresh oregano", + "plum tomatoes" + ] + }, + { + "id": 26497, + "cuisine": "mexican", + "ingredients": [ + "seasoning", + "bock beer", + "olive oil", + "sour cream", + "pina colada mix", + "chicken fingers", + "jalapeno chilies", + "onions" + ] + }, + { + "id": 10812, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "boneless chicken breast", + "lemon juice", + "honey", + "onion powder", + "vodka", + "large eggs", + "corn starch", + "garlic powder", + "hot sauce" + ] + }, + { + "id": 48662, + "cuisine": "thai", + "ingredients": [ + "greater galangal", + "coriander seeds", + "cilantro root", + "kaffir lime leaves", + "shrimp paste", + "salt", + "lemongrass", + "shallots", + "chopped garlic", + "black peppercorns", + "seeds", + "serrano chile" + ] + }, + { + "id": 31414, + "cuisine": "italian", + "ingredients": [ + "grated lemon zest", + "oregano", + "salt", + "lemon juice", + "extra-virgin olive oil", + "garlic cloves", + "capers", + "freshly ground pepper", + "large shrimp" + ] + }, + { + "id": 40183, + "cuisine": "spanish", + "ingredients": [ + "yukon gold potatoes", + "flat leaf parsley", + "hard shelled clams", + "spanish chorizo", + "extra-virgin olive oil", + "onions", + "dry white wine", + "red bell pepper" + ] + }, + { + "id": 15764, + "cuisine": "thai", + "ingredients": [ + "sweet chili sauce", + "garlic", + "onions", + "fish sauce", + "lime juice", + "oil", + "roasted cashews", + "ground chicken", + "cilantro leaves", + "butter lettuce", + "sweet soy sauce", + "white sesame seeds" + ] + }, + { + "id": 22962, + "cuisine": "italian", + "ingredients": [ + "bacon", + "chicken stock", + "chopped parsley", + "arborio rice", + "garlic", + "dry white wine", + "cooked shrimp" + ] + }, + { + "id": 28790, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "sirloin steak", + "fresh parsley", + "cooking oil", + "worcestershire sauce", + "gorgonzola", + "shallots", + "heavy cream", + "rigatoni", + "canned low sodium chicken broth", + "portabello mushroom", + "salt" + ] + }, + { + "id": 8406, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "boneless skinless chicken breasts", + "salt", + "cashew nuts", + "green bell pepper", + "water", + "sesame oil", + "corn starch", + "white pepper", + "rice wine", + "oyster sauce", + "sugar", + "baking soda", + "ginger", + "onions" + ] + }, + { + "id": 48465, + "cuisine": "chinese", + "ingredients": [ + "hot red pepper flakes", + "fresh coriander", + "salt", + "soy sauce", + "sesame oil", + "scallions", + "sugar", + "sesame seeds", + "capellini", + "seedless cucumber", + "white wine vinegar" + ] + }, + { + "id": 1856, + "cuisine": "french", + "ingredients": [ + "vegetable oil", + "garlic cloves", + "bacon", + "egg substitute", + "fresh lemon juice" + ] + }, + { + "id": 40572, + "cuisine": "british", + "ingredients": [ + "large eggs", + "all-purpose flour", + "extra sharp white cheddar cheese", + "whipping cream", + "sugar", + "baking powder", + "unsalted butter", + "salt" + ] + }, + { + "id": 49077, + "cuisine": "southern_us", + "ingredients": [ + "bacon", + "field peas", + "basil pesto sauce", + "salt", + "basmati rice", + "fresh thyme", + "freshly ground pepper", + "diced tomatoes", + "onions" + ] + }, + { + "id": 19495, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "lemon juice", + "butter", + "cinnamon", + "sugar", + "apples" + ] + }, + { + "id": 7243, + "cuisine": "italian", + "ingredients": [ + "baguette", + "lemon", + "preserved lemon", + "fennel bulb", + "tuna", + "green olives", + "ground black pepper", + "extra-virgin olive oil", + "kosher salt", + "harissa" + ] + }, + { + "id": 48623, + "cuisine": "french", + "ingredients": [ + "fromage blanc", + "water", + "extra-virgin olive oil", + "fresh chives", + "slab bacon", + "crème fraîche", + "sugar", + "spanish onion", + "salt", + "kosher salt", + "dry yeast", + "all-purpose flour" + ] + }, + { + "id": 13727, + "cuisine": "italian", + "ingredients": [ + "water", + "vegetable broth", + "shredded Monterey Jack cheese", + "frozen whole kernel corn", + "ground coriander", + "ground cumin", + "olive oil", + "hot sauce", + "sliced green onions", + "arborio rice", + "roasted red peppers", + "garlic cloves" + ] + }, + { + "id": 46747, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "honey", + "apple cider vinegar", + "coconut milk", + "tumeric", + "bell pepper", + "sea salt", + "coconut oil", + "zucchini", + "lemon", + "curry paste", + "curry powder", + "chicken breasts", + "cucumber" + ] + }, + { + "id": 32158, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "teas", + "peach nectar", + "peaches", + "fresh lemon juice" + ] + }, + { + "id": 17907, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "ground allspice", + "phyllo dough", + "lean ground beef", + "ground cinnamon", + "cooking oil", + "ground cumin", + "crushed tomatoes", + "paprika" + ] + }, + { + "id": 29281, + "cuisine": "italian", + "ingredients": [ + "eggs", + "vanilla extract", + "baking powder", + "white sugar", + "ground walnuts", + "all-purpose flour", + "butter", + "unsweetened cocoa powder" + ] + }, + { + "id": 7745, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "zucchini", + "freshly ground pepper", + "olive oil", + "cheese tortellini", + "asparagus spears", + "minced garlic", + "sliced carrots", + "hot water", + "canned low sodium chicken broth", + "sun-dried tomatoes", + "salt" + ] + }, + { + "id": 42437, + "cuisine": "japanese", + "ingredients": [ + "teriyaki sauce", + "chicken broth", + "diced chicken", + "garlic", + "brown sugar" + ] + }, + { + "id": 25999, + "cuisine": "italian", + "ingredients": [ + "sugar", + "red grapefruit", + "ground nutmeg", + "vin santo", + "navel oranges", + "cream of tartar", + "large eggs" + ] + }, + { + "id": 8201, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "water", + "liquid", + "tea leaves", + "dark soy sauce", + "star anise", + "black peppercorns", + "light soy sauce", + "cinnamon sticks", + "light brown sugar", + "dried orange peel", + "salt" + ] + }, + { + "id": 10615, + "cuisine": "irish", + "ingredients": [ + "irish cream liqueur", + "large eggs", + "salt", + "sugar", + "semisweet chocolate", + "whipping cream", + "water", + "Irish whiskey", + "all-purpose flour", + "powdered sugar", + "instant espresso powder", + "vegetable shortening", + "semisweet baking chocolate" + ] + }, + { + "id": 19540, + "cuisine": "japanese", + "ingredients": [ + "pepper", + "crushed garlic", + "salt", + "eggs", + "chicken thigh fillets", + "ginger", + "flour", + "shoyu", + "oil", + "sake", + "sesame oil", + "cornflour" + ] + }, + { + "id": 31644, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "ground red pepper", + "tartar sauce", + "crackers", + "mayonaise", + "green onions", + "salt", + "fresh parsley", + "vegetable oil cooking spray", + "lettuce leaves", + "chopped celery", + "shrimp", + "kaiser rolls", + "lemon", + "lemon juice" + ] + }, + { + "id": 35899, + "cuisine": "vietnamese", + "ingredients": [ + "butter lettuce", + "rice noodles", + "fresh mint", + "green onions", + "peanut sauce", + "lime wedges", + "rotisserie chicken", + "papaya", + "salted roast peanuts", + "rice paper" + ] + }, + { + "id": 46102, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "granulated sugar", + "whipped cream", + "ground cinnamon", + "ground nutmeg", + "baking powder", + "ground allspice", + "pure vanilla extract", + "water", + "sweet potatoes", + "all-purpose flour", + "brown sugar", + "unsalted butter", + "buttermilk", + "orange zest" + ] + }, + { + "id": 20597, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper flakes", + "garlic cloves", + "kosher salt", + "unsalted butter", + "strozzapreti", + "flat leaf spinach", + "lemon peel", + "freshly ground pepper", + "panko", + "grated lemon zest", + "fresh lemon juice" + ] + }, + { + "id": 24724, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "fresh lemon juice", + "ground turmeric", + "kosher salt", + "cilantro leaves", + "carrots", + "lemon wedge", + "whole milk greek yogurt", + "olive oil", + "garlic cloves", + "Vadouvan curry" + ] + }, + { + "id": 44294, + "cuisine": "italian", + "ingredients": [ + "water", + "large eggs", + "salt", + "ground black pepper", + "lemon wedge", + "center cut pork chops", + "olive oil", + "cooking spray", + "garlic cloves", + "parmigiano reggiano cheese", + "whole wheat bread", + "italian seasoning" + ] + }, + { + "id": 7379, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "organic vegetable broth", + "minced garlic", + "large eggs", + "flat leaf parsley", + "bread", + "ground black pepper", + "smoked paprika", + "water", + "salt" + ] + }, + { + "id": 48905, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "extra-virgin olive oil", + "bell pepper", + "salt", + "black pepper", + "purple onion", + "red wine vinegar", + "dried oregano" + ] + }, + { + "id": 21642, + "cuisine": "french", + "ingredients": [ + "crusty whole wheat toast", + "fresh thyme", + "garlic", + "ground black pepper", + "cannellini beans", + "onions", + "olive oil", + "bay leaves", + "salt", + "celery ribs", + "zucchini", + "diced tomatoes" + ] + }, + { + "id": 16890, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "black-eyed peas", + "salt", + "onions", + "green bell pepper", + "butter", + "ham hock", + "chicken broth", + "brown rice", + "cayenne pepper", + "pepper", + "garlic", + "celery" + ] + }, + { + "id": 38323, + "cuisine": "chinese", + "ingredients": [ + "glutinous rice", + "black rice", + "walnuts", + "peanuts", + "red beans", + "water", + "mung beans", + "longan", + "corn flakes", + "jujube" + ] + }, + { + "id": 6908, + "cuisine": "italian", + "ingredients": [ + "eggs", + "all-purpose flour", + "olive oil", + "water", + "salt" + ] + }, + { + "id": 33495, + "cuisine": "mexican", + "ingredients": [ + "guacamole", + "corn tortillas", + "chili powder", + "green onions", + "medium shrimp", + "cooking spray", + "salt" + ] + }, + { + "id": 5650, + "cuisine": "mexican", + "ingredients": [ + "pasta sauce", + "grated parmesan cheese", + "taco shells", + "angel hair" + ] + }, + { + "id": 43645, + "cuisine": "chinese", + "ingredients": [ + "powdered sugar", + "whipping cream", + "regular sugar", + "vegetable oil", + "all-purpose flour", + "eggs", + "mandarin oranges", + "essence", + "baking powder", + "salt", + "juice" + ] + }, + { + "id": 34225, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "large garlic cloves", + "parsley sprigs", + "mushrooms", + "steak", + "prosciutto", + "provolone cheese", + "marsala wine", + "shallots", + "beef tenderloin steaks" + ] + }, + { + "id": 30963, + "cuisine": "french", + "ingredients": [ + "pepper", + "large eggs", + "dry sherry", + "lime", + "butter", + "asparagus spears", + "orange", + "frozen pastry puff sheets", + "salt", + "bay scallops", + "lemon", + "fresh asparagus" + ] + }, + { + "id": 2686, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken breast", + "monterey jack", + "black beans", + "Mrs. Dash", + "enchilada sauce", + "fresh cilantro", + "olive oil spray" + ] + }, + { + "id": 47108, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "half & half", + "flat leaf parsley", + "finely chopped onion", + "chopped fresh thyme", + "radicchio", + "dry white wine", + "arborio rice", + "grated parmesan cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 2260, + "cuisine": "british", + "ingredients": [ + "hazelnuts", + "all purpose unbleached flour", + "raspberry preserves", + "salt", + "unsalted butter", + "whipping cream", + "sugar", + "baking powder" + ] + }, + { + "id": 7443, + "cuisine": "italian", + "ingredients": [ + "fresh chives", + "parmesan cheese", + "polenta", + "large egg whites", + "nonfat milk", + "pepper", + "salt", + "sage leaves", + "large egg yolks", + "fat skimmed chicken broth" + ] + }, + { + "id": 28014, + "cuisine": "thai", + "ingredients": [ + "sugar", + "salt", + "sesame oil", + "cucumber", + "green onions", + "rice vinegar", + "red pepper flakes" + ] + }, + { + "id": 27227, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "cooked chicken", + "shredded cheese", + "diced green chilies", + "light cream cheese", + "black beans", + "salsa", + "green onions", + "tortilla chips" + ] + }, + { + "id": 12107, + "cuisine": "thai", + "ingredients": [ + "water", + "salt", + "toasted shredded coconut", + "table syrup", + "coconut milk", + "seeds" + ] + }, + { + "id": 38532, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "salad greens", + "english cucumber", + "lime juice", + "white rice", + "fresh mint", + "light brown sugar", + "fresh cilantro", + "salt", + "steak", + "fish sauce", + "peanuts", + "garlic chili sauce" + ] + }, + { + "id": 43893, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "shredded lettuce", + "garlic cloves", + "ground cumin", + "picante sauce", + "cheese", + "ripe olives", + "green onions", + "green pepper", + "onions", + "black beans", + "diced tomatoes", + "corn tortillas" + ] + }, + { + "id": 45511, + "cuisine": "mexican", + "ingredients": [ + "coconut oil", + "garlic powder", + "frozen corn", + "tomato sauce", + "onion powder", + "ground cumin", + "cheddar cheese", + "chili powder", + "red bell pepper", + "lean ground turkey", + "fresh cilantro", + "purple onion" + ] + }, + { + "id": 34517, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "shredded cheese", + "olive oil", + "carnitas", + "corn kernels", + "enchilada sauce", + "tortillas" + ] + }, + { + "id": 17478, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "coconut milk", + "crushed red pepper", + "garlic powder", + "fresh lime juice", + "peanut butter" + ] + }, + { + "id": 25112, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "garlic", + "ground cumin", + "ground black pepper", + "canola oil", + "kosher salt", + "pinto beans", + "vegetable shortening", + "masa harina" + ] + }, + { + "id": 47192, + "cuisine": "italian", + "ingredients": [ + "baby lima beans", + "leeks", + "low salt chicken broth", + "asparagus", + "carrots", + "olive oil", + "fresh fava bean", + "fresh basil", + "grated parmesan cheese", + "green beans" + ] + }, + { + "id": 31429, + "cuisine": "indian", + "ingredients": [ + "chicken stock", + "curry powder", + "chicken drumsticks", + "runny honey", + "yellow peppers", + "red chili peppers", + "yoghurt", + "ground tumeric", + "fat", + "tomato purée", + "olive oil", + "ginger", + "chickpeas", + "basmati rice", + "fresh coriander", + "lemon", + "garlic", + "onions" + ] + }, + { + "id": 17012, + "cuisine": "southern_us", + "ingredients": [ + "dark brown sugar", + "vegetable oil", + "black-eyed peas", + "pimenton", + "coarse salt" + ] + }, + { + "id": 48071, + "cuisine": "korean", + "ingredients": [ + "pinenuts", + "cinnamon", + "honey", + "fresh ginger", + "water" + ] + }, + { + "id": 42130, + "cuisine": "cajun_creole", + "ingredients": [ + "salted butter", + "chopped pecans", + "brown sugar", + "vanilla extract", + "whole milk", + "granulated sugar" + ] + }, + { + "id": 8580, + "cuisine": "french", + "ingredients": [ + "eggs", + "water crackers", + "crescent dinner rolls", + "brie cheese" + ] + }, + { + "id": 47399, + "cuisine": "southern_us", + "ingredients": [ + "spicy sausage", + "large eggs", + "onion powder", + "shredded cheddar cheese", + "half & half", + "salt", + "black pepper", + "egg whites", + "butter", + "buttermilk biscuits", + "garlic powder", + "chives", + "ground mustard" + ] + }, + { + "id": 48007, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "heavy whipping cream", + "ground black pepper", + "salt", + "cheese tortellini", + "grated parmesan cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 6165, + "cuisine": "french", + "ingredients": [ + "light sour cream", + "butternut squash", + "all-purpose flour", + "large eggs", + "salt", + "sugar", + "baking powder", + "chopped fresh sage", + "ground nutmeg", + "butter" + ] + }, + { + "id": 46011, + "cuisine": "greek", + "ingredients": [ + "ground ginger", + "tahini", + "chickpeas", + "garlic cloves", + "dijon mustard", + "salt", + "orange juice", + "ground cumin", + "parsley leaves", + "rice vinegar", + "ground coriander", + "low sodium soy sauce", + "paprika", + "chopped onion", + "ground turmeric" + ] + }, + { + "id": 30782, + "cuisine": "italian", + "ingredients": [ + "sugar", + "egg yolks", + "all-purpose flour", + "coconut extract", + "low-fat buttermilk", + "extract", + "chopped pecans", + "vegetable oil cooking spray", + "egg whites", + "vanilla extract", + "orange rind", + "light butter", + "baking soda", + "kumquats", + "icing" + ] + }, + { + "id": 29955, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "tumeric", + "beef", + "garlic", + "carrots", + "chili flakes", + "pepper", + "diced tomatoes", + "beef broth", + "basmati rice", + "pot roast", + "olive oil", + "cilantro", + "spaghetti squash", + "cumin", + "ground ginger", + "white onion", + "cinnamon", + "salt", + "cinnamon sticks" + ] + }, + { + "id": 29883, + "cuisine": "indian", + "ingredients": [ + "garlic", + "onions", + "pepper", + "oil", + "cayenne", + "carrots", + "tumeric", + "salt", + "curry leaf" + ] + }, + { + "id": 18931, + "cuisine": "indian", + "ingredients": [ + "warm water", + "spices", + "melted butter", + "flour", + "salt", + "baking soda", + "fresh yeast", + "brown sugar", + "yoghurt", + "oil" + ] + }, + { + "id": 45845, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "fresh lime juice", + "orange liqueur", + "pears" + ] + }, + { + "id": 35182, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "salt", + "sugar", + "baking powder", + "grated jack cheese", + "grated parmesan cheese", + "all-purpose flour", + "baking soda", + "buttermilk", + "sharp cheddar cheese" + ] + }, + { + "id": 6690, + "cuisine": "italian", + "ingredients": [ + "slivered almonds", + "linguine", + "large garlic cloves", + "plum tomatoes", + "olive oil", + "fresh basil leaves", + "pecorino cheese", + "sprinkles" + ] + }, + { + "id": 3778, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "boneless skinless chicken breasts", + "rice vinegar", + "chicken stock", + "large egg whites", + "garlic", + "corn starch", + "soy sauce", + "sesame oil", + "peanut oil", + "chinese rice wine", + "granulated sugar", + "salt" + ] + }, + { + "id": 2036, + "cuisine": "italian", + "ingredients": [ + "chopped green bell pepper", + "salt", + "pepper", + "basil", + "feta cheese crumbles", + "diced onions", + "diced tomatoes", + "fresh mushrooms", + "water", + "garlic", + "ground beef" + ] + }, + { + "id": 29244, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "ginger", + "cumin seed", + "asafetida", + "garam masala", + "salt", + "coriander", + "vegetables", + "garlic", + "onions", + "ground cumin", + "red kidney beans", + "coriander powder", + "green chilies", + "ground turmeric" + ] + }, + { + "id": 17537, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "rocket leaves", + "butter", + "grissini", + "prosciutto" + ] + }, + { + "id": 32460, + "cuisine": "thai", + "ingredients": [ + "olive oil", + "garlic cloves", + "lemongrass", + "shallots", + "fresh mint", + "fresh red chili", + "fresh ginger root", + "king prawns", + "lime", + "cilantro leaves" + ] + }, + { + "id": 24764, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "dried fettuccine", + "grated parmesan cheese", + "unsalted butter", + "chopped parsley", + "kosher salt", + "heavy cream" + ] + }, + { + "id": 26242, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "garlic", + "medium shrimp", + "spanish onion", + "fish stock", + "chopped cilantro", + "nuts", + "jalapeno chilies", + "blanched almonds", + "cooked white rice", + "sea bass fillets", + "coconut milk", + "dried shrimp" + ] + }, + { + "id": 13373, + "cuisine": "southern_us", + "ingredients": [ + "dressing", + "turkey bacon", + "romaine lettuce", + "onions", + "tomatoes", + "green pepper", + "corn mix muffin" + ] + }, + { + "id": 33322, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "swiss chard", + "whole milk ricotta cheese", + "water", + "large eggs", + "chopped fresh mint", + "eggplant", + "grated parmesan cheese", + "kosher salt", + "ground black pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 33097, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped onion", + "olive oil flavored cooking spray", + "chopped green bell pepper", + "garlic cloves", + "crushed red pepper", + "medium shrimp", + "cajun style stewed tomatoes", + "long-grain rice" + ] + }, + { + "id": 3150, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "tomatillos", + "pepitas", + "store bought low sodium chicken stock", + "romaine lettuce leaves", + "pepper", + "epazote", + "lard", + "white onion", + "minced garlic", + "cilantro leaves" + ] + }, + { + "id": 48172, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "heavy cream", + "flat leaf parsley", + "chopped tomatoes", + "freshly ground pepper", + "dried oregano", + "olive oil", + "yellow onion", + "ground beef", + "grated parmesan cheese", + "garlic cloves", + "rigatoni" + ] + }, + { + "id": 20283, + "cuisine": "mexican", + "ingredients": [ + "cilantro", + "lime", + "ground cumin", + "water", + "chicken", + "paprika" + ] + }, + { + "id": 48724, + "cuisine": "indian", + "ingredients": [ + "jaggery", + "milk", + "yoghurt" + ] + }, + { + "id": 976, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "shredded lettuce", + "taco seasoning mix", + "shredded cheddar cheese", + "Hidden Valley® Original Ranch® Dressing", + "tomatoes", + "lean ground beef" + ] + }, + { + "id": 37681, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "linguine", + "fresh lime juice", + "unsweetened coconut milk", + "peeled fresh ginger", + "low salt chicken broth", + "sliced green onions", + "broccoli florets", + "corn starch", + "boneless skinless chicken breast halves", + "fresh basil", + "Thai red curry paste", + "red bell pepper" + ] + }, + { + "id": 22198, + "cuisine": "french", + "ingredients": [ + "eggplant", + "red bell pepper", + "bread crumb fresh", + "anchovy fillets", + "plum tomatoes", + "olive oil", + "garlic cloves", + "chopped fresh thyme", + "olives" + ] + }, + { + "id": 26374, + "cuisine": "mexican", + "ingredients": [ + "tenderloin roast", + "chopped fresh chives", + "ancho chile pepper", + "chipotle chile", + "olive oil", + "butter", + "water", + "shallots", + "fresh parsley", + "guajillo chiles", + "ground black pepper", + "salt" + ] + }, + { + "id": 37373, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "tomatoes", + "extra-virgin olive oil", + "flat leaf parsley", + "dry white wine", + "garlic cloves", + "fish fillets", + "purple onion" + ] + }, + { + "id": 17932, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "cucumber", + "avocado", + "lemon juice", + "serrano chile", + "salt", + "chopped cilantro", + "lime juice", + "shrimp" + ] + }, + { + "id": 36046, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "salt", + "cumin", + "olive oil", + "vegetable broth", + "smoked paprika", + "green bell pepper", + "Mexican oregano", + "garlic", + "onions", + "corn kernels", + "diced tomatoes", + "hot sauce" + ] + }, + { + "id": 36106, + "cuisine": "cajun_creole", + "ingredients": [ + "brown rice", + "cayenne pepper", + "celery", + "ground black pepper", + "salt", + "thyme", + "oregano", + "tomatoes", + "garlic", + "green pepper", + "onions", + "red beans", + "hot sauce", + "smoked paprika" + ] + }, + { + "id": 32422, + "cuisine": "moroccan", + "ingredients": [ + "haddock fillets", + "garlic cloves", + "boiling potatoes", + "olive oil", + "salt", + "flat leaf parsley", + "tomatoes", + "yellow bell pepper", + "fresh lemon juice", + "ground cumin", + "cayenne", + "sweet paprika", + "chopped cilantro fresh" + ] + }, + { + "id": 22641, + "cuisine": "japanese", + "ingredients": [ + "milk", + "cream cheese", + "egg yolks", + "white sugar", + "egg whites", + "corn starch", + "cream of tartar", + "all-purpose flour" + ] + }, + { + "id": 24998, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "pitted date", + "vegetable oil", + "slivered almonds", + "honey", + "chopped cilantro fresh", + "ground cinnamon", + "pearl onions", + "fresh parsley", + "ground ginger", + "water", + "lamb shoulder" + ] + }, + { + "id": 35647, + "cuisine": "indian", + "ingredients": [ + "salt", + "fresh coriander", + "chopped fresh mint", + "cucumber", + "yoghurt", + "ground cumin" + ] + }, + { + "id": 32226, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chicken", + "noodles", + "snow peas", + "cucumber", + "pears" + ] + }, + { + "id": 6726, + "cuisine": "cajun_creole", + "ingredients": [ + "corn", + "cilantro", + "salt", + "okra pods", + "celery", + "head on shrimp", + "jalapeno chilies", + "garlic", + "okra", + "carrots", + "celery ribs", + "olive oil", + "extra-virgin olive oil", + "sweet corn", + "lemon juice", + "onions", + "pepper", + "parsley", + "sweet pepper", + "fresh lemon juice", + "shrimp" + ] + }, + { + "id": 39946, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "garlic", + "water", + "corn starch", + "chiles", + "rice vinegar", + "sherry", + "white sugar" + ] + }, + { + "id": 46791, + "cuisine": "thai", + "ingredients": [ + "japanese style bread crumbs", + "peeled shrimp", + "vegetable oil", + "ground white pepper", + "baking powder", + "garlic", + "kosher salt", + "cilantro root" + ] + }, + { + "id": 7900, + "cuisine": "mexican", + "ingredients": [ + "cayenne", + "mayonaise", + "ear of corn", + "cotija" + ] + }, + { + "id": 18670, + "cuisine": "chinese", + "ingredients": [ + "ground black pepper", + "hot bean paste", + "garlic cloves", + "sugar", + "rice wine", + "dark sesame oil", + "white vinegar", + "hot chili oil", + "sauce", + "japanese eggplants", + "soy sauce", + "vegetable oil", + "scallions" + ] + }, + { + "id": 10804, + "cuisine": "italian", + "ingredients": [ + "ground pepper", + "purple onion", + "fresh basil leaves", + "coarse salt", + "english cucumber", + "cannellini beans", + "provolone cheese", + "plum tomatoes", + "olive oil", + "red wine vinegar", + "country bread" + ] + }, + { + "id": 11488, + "cuisine": "indian", + "ingredients": [ + "whole wheat flour", + "all-purpose flour", + "vegetable oil", + "seeds", + "water", + "salt" + ] + }, + { + "id": 40711, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "garlic cloves", + "onion powder", + "garlic powder", + "dried guajillo chiles", + "apple cider vinegar" + ] + }, + { + "id": 2289, + "cuisine": "french", + "ingredients": [ + "butter", + "eggs", + "salt", + "sugar", + "all-purpose flour", + "2% reduced-fat milk" + ] + }, + { + "id": 26425, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "crushed red pepper", + "extra-virgin olive oil", + "pecorino romano cheese", + "garlic cloves", + "fresh basil", + "linguine" + ] + }, + { + "id": 3676, + "cuisine": "italian", + "ingredients": [ + "water", + "instant yeast", + "whole wheat flour", + "olive oil", + "salt", + "semolina flour", + "herbs" + ] + }, + { + "id": 16211, + "cuisine": "jamaican", + "ingredients": [ + "fresh spinach", + "chives", + "garlic", + "onions", + "chicken broth", + "olive oil", + "scotch bonnet chile", + "red bell pepper", + "black pepper", + "fresh thyme leaves", + "okra", + "green bell pepper", + "pumpkin", + "sea salt", + "coconut milk" + ] + }, + { + "id": 31038, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "crust", + "melted butter", + "heavy cream", + "lime zest", + "egg yolks", + "sweetened condensed milk", + "lime juice", + "crushed graham crackers" + ] + }, + { + "id": 44187, + "cuisine": "thai", + "ingredients": [ + "basil leaves", + "crushed red pepper", + "firmly packed light brown sugar", + "chicken breasts", + "red bell pepper", + "light soy sauce", + "yellow bell pepper", + "snow peas", + "lime zest", + "green onions", + "creamy peanut butter" + ] + }, + { + "id": 19703, + "cuisine": "french", + "ingredients": [ + "bread", + "granny smith apples", + "salt", + "butter lettuce", + "balsamic vinegar", + "chicken broth", + "foie gras", + "sugar", + "butter" + ] + }, + { + "id": 48315, + "cuisine": "italian", + "ingredients": [ + "broccoli rabe", + "fettucine", + "anchovy fillets", + "tomatoes", + "extra-virgin olive oil", + "ricotta salata", + "garlic cloves" + ] + }, + { + "id": 41394, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chicken wings", + "oil", + "brown sugar", + "ground ginger", + "garlic powder" + ] + }, + { + "id": 45197, + "cuisine": "mexican", + "ingredients": [ + "corn husks", + "sour cream", + "mayonaise", + "cheese", + "chili powder", + "ground cumin", + "lime", + "salt" + ] + }, + { + "id": 22180, + "cuisine": "chinese", + "ingredients": [ + "pork", + "salt", + "shrimp", + "white pepper", + "oil", + "chicken", + "chicken bouillon", + "scallions", + "bean curd", + "sugar", + "sesame oil", + "carrots" + ] + }, + { + "id": 49277, + "cuisine": "mexican", + "ingredients": [ + "dough", + "scallions", + "large eggs", + "sharp cheddar cheese", + "unsalted butter", + "canadian bacon" + ] + }, + { + "id": 42036, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vanilla extract", + "pecan halves", + "egg yolks", + "corn starch", + "unsalted butter", + "salt", + "sugar", + "heavy cream", + "flavoring" + ] + }, + { + "id": 47876, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "garlic powder", + "freshly ground pepper", + "dried oregano", + "eggs", + "dried thyme", + "ricotta cheese", + "ground beef", + "dried basil", + "lasagna noodles", + "shredded mozzarella cheese", + "fresh basil", + "freshly grated parmesan", + "crushed red pepper", + "fresh parsley" + ] + }, + { + "id": 9535, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "chinese chives", + "chinese rice wine", + "sesame oil", + "dumpling wrappers", + "soy sauce", + "ground pork" + ] + }, + { + "id": 43986, + "cuisine": "jamaican", + "ingredients": [ + "fresh ginger root", + "diced tomatoes", + "ground coriander", + "canola oil", + "dried thyme", + "callaloo", + "okra", + "fresh lime juice", + "tumeric", + "finely chopped onion", + "salt", + "garlic cloves", + "water", + "sweet potatoes", + "ground allspice", + "coconut milk" + ] + }, + { + "id": 39648, + "cuisine": "italian", + "ingredients": [ + "sweet onion", + "kalamata", + "pepper", + "artichok heart marin", + "fennel bulb", + "lemon juice", + "orange", + "lettuce leaves" + ] + }, + { + "id": 18092, + "cuisine": "korean", + "ingredients": [ + "cold water", + "green onions", + "shrimp", + "scallops", + "all-purpose flour", + "eggs", + "red pepper", + "canola oil", + "mussels", + "rice powder", + "squid" + ] + }, + { + "id": 28972, + "cuisine": "southern_us", + "ingredients": [ + "ground red pepper", + "olive oil", + "salt", + "paprika", + "sweet potatoes" + ] + }, + { + "id": 9716, + "cuisine": "southern_us", + "ingredients": [ + "lemon", + "single crust pie", + "all-purpose flour", + "eggs", + "salt", + "sugar" + ] + }, + { + "id": 13873, + "cuisine": "filipino", + "ingredients": [ + "sauce", + "water", + "adobo", + "granulated white sugar" + ] + }, + { + "id": 15375, + "cuisine": "french", + "ingredients": [ + "cold water", + "egg yolks", + "salt", + "fresh mint", + "sugar", + "butter", + "strawberries", + "rose water", + "vanilla extract", + "corn starch", + "shortening", + "half & half", + "all-purpose flour" + ] + }, + { + "id": 9601, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "water chestnuts", + "old ginger", + "sugar", + "salted fish", + "chinese parsley", + "white pepper", + "sesame oil", + "minced pork", + "soy sauce", + "Shaoxing wine", + "corn flour" + ] + }, + { + "id": 17615, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "lemon", + "sweet tea", + "cracked black pepper", + "shallots", + "garlic", + "olive oil", + "chicken drumsticks" + ] + }, + { + "id": 29890, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "cayenne", + "salt", + "olive oil", + "lemon wedge", + "dried oregano", + "catfish fillets", + "ground black pepper", + "large garlic cloves", + "dried thyme", + "unsalted butter", + "sweet paprika" + ] + }, + { + "id": 28858, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "egg yolks", + "ice water", + "granulated sugar" + ] + }, + { + "id": 14181, + "cuisine": "mexican", + "ingredients": [ + "fresh orange juice", + "watermelon", + "fresh lime juice", + "lime slices", + "frozen limeade concentrate" + ] + }, + { + "id": 22588, + "cuisine": "italian", + "ingredients": [ + "shortening", + "golden raisins", + "hot water", + "ground cinnamon", + "milk", + "butter", + "dried fig", + "slivered almonds", + "baking powder", + "white sugar", + "eggs", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 4123, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "pistachios", + "semisweet chocolate", + "heavy cream" + ] + }, + { + "id": 34450, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "boneless skinless chicken breasts", + "creole seasoning", + "onions", + "dried thyme", + "peeled shrimp", + "chopped parsley", + "reduced sodium chicken broth", + "diced tomatoes", + "long-grain rice", + "dried oregano", + "green bell pepper", + "bay leaves", + "hot sauce", + "celery" + ] + }, + { + "id": 47488, + "cuisine": "italian", + "ingredients": [ + "mussels", + "broccolini", + "extra-virgin olive oil", + "asparagus spears", + "crusty bread", + "basil", + "salt", + "oysters", + "littleneck clams", + "carrots", + "tomatoes", + "radishes", + "purple onion" + ] + }, + { + "id": 34406, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "red bell pepper", + "garlic", + "olive oil", + "orecchiette", + "sweet italian sausage" + ] + }, + { + "id": 7970, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salt", + "eggs", + "chile pepper", + "onions", + "milk", + "all-purpose flour", + "pepper", + "lean ground beef" + ] + }, + { + "id": 23648, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "snapper fillets", + "ground cumin", + "green bell pepper", + "purple onion", + "red bell pepper", + "vegetable oil", + "lemon pepper", + "vegetable oil cooking spray", + "salsa", + "fresh lime juice" + ] + }, + { + "id": 17454, + "cuisine": "chinese", + "ingredients": [ + "flank steak", + "red bell pepper", + "peeled fresh ginger", + "rice vinegar", + "canola oil", + "lower sodium soy sauce", + "yellow bell pepper", + "toasted sesame seeds", + "green onions", + "garlic chili sauce" + ] + }, + { + "id": 5955, + "cuisine": "italian", + "ingredients": [ + "salt and ground black pepper", + "sweet pepper", + "eggs", + "red pepper flakes", + "olive oil", + "bacon", + "potatoes", + "feta cheese crumbles" + ] + }, + { + "id": 45348, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "heavy whipping cream", + "large egg whites", + "ground cinnamon", + "Amaretti Cookies", + "raspberries", + "grated lemon peel" + ] + }, + { + "id": 42992, + "cuisine": "indian", + "ingredients": [ + "urad dal", + "fruit juice", + "oil", + "peppercorns", + "salt", + "onions", + "papad", + "chutney", + "masala" + ] + }, + { + "id": 48961, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "garlic", + "long grain white rice", + "chicken broth", + "olive oil", + "medium shrimp", + "fresh basil", + "russet potatoes", + "onions", + "curry powder", + "carrots" + ] + }, + { + "id": 42175, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "chinese wheat noodles", + "ground white pepper", + "yellow rock sugar", + "vegetable oil", + "salt", + "chopped cilantro fresh", + "fresh ginger", + "szechwan peppercorns", + "star anise", + "onions", + "baby bok choy", + "beef shank", + "large garlic cloves", + "chili bean paste", + "plum tomatoes" + ] + }, + { + "id": 17139, + "cuisine": "italian", + "ingredients": [ + "warm water", + "parmigiano reggiano cheese", + "all-purpose flour", + "sugar", + "unsalted butter", + "salt", + "active dry yeast", + "large eggs", + "mortadella", + "fontina", + "prosciutto", + "cheese" + ] + }, + { + "id": 2578, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "potatoes", + "cumin seed", + "ground turmeric", + "red chili peppers", + "salt", + "cardamom", + "garlic paste", + "cinnamon", + "oil", + "tomatoes", + "coriander seeds", + "curds", + "onions" + ] + }, + { + "id": 25674, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "black pepper", + "yoghurt", + "onions", + "clove", + "garlic paste", + "fenugreek", + "grated nutmeg", + "cumin", + "tomato paste", + "chili pepper", + "cardamom seeds", + "coriander", + "frozen chopped spinach", + "ground cinnamon", + "amchur", + "paneer", + "ground turmeric" + ] + }, + { + "id": 32406, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "corn oil", + "all-purpose flour", + "onions", + "chicken broth", + "file powder", + "garlic", + "celery", + "crab meat", + "andouille sausage", + "old bay seasoning", + "ground cayenne pepper", + "chicken", + "tomatoes", + "bay leaves", + "salt", + "medium shrimp" + ] + }, + { + "id": 43732, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "mozzarella cheese", + "tomatoes", + "ground black pepper" + ] + }, + { + "id": 38792, + "cuisine": "indian", + "ingredients": [ + "clove", + "ginger", + "oil", + "cinnamon sticks", + "greens", + "pepper", + "salt", + "carrots", + "peppercorns", + "cabbage", + "red chili powder", + "green peas", + "lemon juice", + "onions", + "masala", + "amchur", + "green chilies", + "green beans", + "basmati rice" + ] + }, + { + "id": 30586, + "cuisine": "mexican", + "ingredients": [ + "Mexican seasoning mix", + "salt", + "fresh lime juice", + "salmon fillets", + "slaw mix", + "sour cream", + "pico de gallo", + "olive oil", + "cilantro leaves", + "mayonaise", + "cracked black pepper", + "corn tortillas" + ] + }, + { + "id": 39122, + "cuisine": "french", + "ingredients": [ + "unflavored gelatin", + "coffee granules", + "vanilla extract", + "powdered sugar", + "large eggs", + "chocolate morsels", + "ladyfingers", + "granulated sugar", + "cinnamon sticks", + "cold water", + "milk", + "whipping cream" + ] + }, + { + "id": 40576, + "cuisine": "irish", + "ingredients": [ + "salt", + "melted butter", + "all-purpose flour", + "potatoes" + ] + }, + { + "id": 2908, + "cuisine": "mexican", + "ingredients": [ + "chicken", + "shredded cheese", + "green chilies", + "corn tortillas" + ] + }, + { + "id": 49556, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "pitted green olives", + "boneless skinless chicken breast halves", + "chicken broth", + "dry white wine", + "onions", + "ground black pepper", + "garlic cloves", + "olive oil", + "meyer lemon", + "chopped cilantro fresh" + ] + }, + { + "id": 33570, + "cuisine": "greek", + "ingredients": [ + "mayonaise", + "milk", + "chicken breasts", + "plain whole-milk yogurt", + "tomatoes", + "kosher salt", + "garlic powder", + "lemon juice", + "sugar", + "olive oil", + "large garlic cloves", + "dried oregano", + "pita bread", + "cider vinegar", + "ground black pepper", + "cucumber" + ] + }, + { + "id": 36651, + "cuisine": "mexican", + "ingredients": [ + "frozen whole kernel corn", + "cilantro sprigs", + "ground cumin", + "jalapeno chilies", + "shredded Monterey Jack cheese", + "flour tortillas", + "non-fat sour cream", + "vegetable oil cooking spray", + "fat-free refried beans", + "sliced green onions" + ] + }, + { + "id": 4458, + "cuisine": "french", + "ingredients": [ + "ground ginger", + "ground nutmeg", + "dark brown sugar", + "vanilla beans", + "salt", + "large egg yolks", + "maple syrup", + "ground cloves", + "half & half", + "cinnamon sticks" + ] + }, + { + "id": 46204, + "cuisine": "jamaican", + "ingredients": [ + "olive oil", + "garlic", + "ground allspice", + "hamburger buns", + "ground nutmeg", + "dry bread crumbs", + "fresh ginger root", + "salt", + "long grain white rice", + "black beans", + "habanero pepper", + "chopped onion" + ] + }, + { + "id": 3806, + "cuisine": "indian", + "ingredients": [ + "pearl onions", + "paneer", + "ghee", + "tumeric", + "coriander seeds", + "asafetida powder", + "water", + "peeled fresh ginger", + "cinnamon sticks", + "spinach", + "red chile powder", + "garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 21889, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "salt", + "white rice", + "vegetable oil", + "garlic" + ] + }, + { + "id": 22742, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "salt", + "Madras curry powder", + "canned low sodium chicken broth", + "lamb shoulder", + "onions", + "peas", + "cayenne pepper", + "ground cumin", + "pie crust", + "extra-virgin olive oil", + "ground coriander" + ] + }, + { + "id": 36492, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "seeds", + "chickpeas", + "water", + "purple onion", + "safflower oil", + "hot green chile", + "chopped cilantro", + "cayenne", + "salt" + ] + }, + { + "id": 21330, + "cuisine": "mexican", + "ingredients": [ + "lime", + "large garlic cloves", + "onions", + "ground cumin", + "green onions", + "pork shoulder boston butt", + "dried oregano", + "green chile", + "meat", + "low salt chicken broth", + "canola oil", + "white hominy", + "ancho powder", + "chopped cilantro fresh" + ] + }, + { + "id": 12976, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "ground turmeric", + "salt", + "baking potatoes", + "ground cumin", + "olive oil", + "onions" + ] + }, + { + "id": 45392, + "cuisine": "mexican", + "ingredients": [ + "water", + "piloncillo", + "tomatillos", + "sugar", + "cinnamon sticks", + "vanilla beans" + ] + }, + { + "id": 47401, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "broth", + "duck breasts", + "green onions", + "soy sauce", + "noodles", + "sake", + "mushrooms" + ] + }, + { + "id": 3360, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "zucchini", + "salt", + "onions", + "pepper", + "bone in skinless chicken thigh", + "carrots", + "tomatoes", + "chili powder", + "chickpeas", + "ground turmeric", + "chicken stock", + "water", + "cinnamon", + "couscous" + ] + }, + { + "id": 10151, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "cream cheese", + "mayonaise", + "black olives", + "pitted green olives", + "flour tortillas", + "salsa" + ] + }, + { + "id": 5291, + "cuisine": "french", + "ingredients": [ + "sugar", + "1% low-fat milk", + "large eggs", + "all-purpose flour", + "ground cinnamon", + "butter", + "water", + "salt" + ] + }, + { + "id": 25368, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "fat free less sodium beef broth", + "garlic cloves", + "chopped fresh mint", + "pitted date", + "fresh orange juice", + "ground coriander", + "couscous", + "saffron threads", + "dried apricot", + "chopped onion", + "leg of lamb", + "ground black pepper", + "salt", + "carrots", + "ground cumin" + ] + }, + { + "id": 38634, + "cuisine": "irish", + "ingredients": [ + "milk", + "all-purpose flour", + "fresh dill", + "butter", + "spinach leaves", + "green onions", + "ground nutmeg" + ] + }, + { + "id": 12070, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "rotisserie chicken", + "avocado", + "lime", + "taco shells", + "salsa", + "fresh cilantro", + "sour cream" + ] + }, + { + "id": 4296, + "cuisine": "french", + "ingredients": [ + "sugar", + "flour", + "water", + "crust", + "granny smith apples", + "ice water", + "apricot jelly", + "unsalted butter", + "salt" + ] + }, + { + "id": 22102, + "cuisine": "korean", + "ingredients": [ + "pickles", + "vinegar", + "apples", + "honey", + "sesame oil", + "salt", + "water", + "green onions", + "garlic", + "pepper flakes", + "sesame seeds", + "kirby cucumbers", + "green chilies" + ] + }, + { + "id": 29246, + "cuisine": "korean", + "ingredients": [ + "gari", + "extra firm tofu", + "nori", + "short-grain rice", + "hot sauce", + "soy sauce", + "gochugaru", + "toasted sesame seeds", + "salmon", + "sesame oil" + ] + }, + { + "id": 35606, + "cuisine": "moroccan", + "ingredients": [ + "malt syrup", + "quinoa", + "sweet potatoes", + "broccoli", + "chopped cilantro", + "ground cumin", + "olive oil", + "bell pepper", + "button mushrooms", + "ground coriander", + "ground turmeric", + "stock", + "potatoes", + "sea salt", + "chickpeas", + "onions", + "tomatoes", + "eggplant", + "harissa paste", + "garlic", + "carrots", + "dried rosemary" + ] + }, + { + "id": 32308, + "cuisine": "chinese", + "ingredients": [ + "tomato purée", + "clear honey", + "pork spare ribs", + "worcestershire sauce", + "dijon mustard", + "red wine vinegar", + "soy sauce", + "muscovado sugar" + ] + }, + { + "id": 1415, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "unsalted butter", + "vanilla extract", + "crushed peppermint candy", + "white vinegar", + "baking soda", + "buttermilk", + "all-purpose flour", + "unsweetened cocoa powder", + "powdered sugar", + "mascarpone", + "red food coloring", + "cream cheese", + "kosher salt", + "large eggs", + "cake flour", + "sour cream" + ] + }, + { + "id": 11545, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "fat free less sodium chicken broth", + "ground coriander", + "ancho chile pepper", + "black pepper", + "golden raisins", + "garlic cloves", + "boneless skinless chicken breast halves", + "boneless chicken skinless thigh", + "olive oil", + "unsweetened chocolate", + "onions", + "tomatoes", + "sliced almonds", + "salt", + "orange rind", + "ground cumin" + ] + }, + { + "id": 19868, + "cuisine": "chinese", + "ingredients": [ + "chili flakes", + "dashi", + "sesame oil", + "corn starch", + "water", + "vinegar", + "ginger", + "fennel seeds", + "dumpling wrappers", + "white rice vinegar", + "salt", + "soy sauce", + "fennel", + "ground pork", + "ground white pepper" + ] + }, + { + "id": 8613, + "cuisine": "irish", + "ingredients": [ + "salt and ground black pepper", + "beer", + "sausage links", + "beef stock", + "onions", + "potatoes", + "carrots", + "smoked bacon", + "heavy cream", + "dried parsley" + ] + }, + { + "id": 36047, + "cuisine": "moroccan", + "ingredients": [ + "preserved lemon", + "lemon", + "chicken thighs", + "olive oil", + "garlic cloves", + "saffron", + "fresh coriander", + "purple onion", + "olives", + "ground ginger", + "cinnamon", + "chopped parsley" + ] + }, + { + "id": 5058, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil spray", + "chopped onion", + "tomato sauce", + "balsamic vinegar", + "andouille sausage", + "chili powder", + "ground cumin", + "rib pork chops", + "dark brown sugar" + ] + }, + { + "id": 40830, + "cuisine": "italian", + "ingredients": [ + "crusty bread", + "olive oil", + "red wine", + "plums", + "chillies", + "fresh basil", + "black pepper", + "herbs", + "sea salt", + "carrots", + "spaghetti", + "fresh rosemary", + "back bacon rashers", + "fresh bay leaves", + "beef stock cubes", + "minced beef", + "onions", + "tomato purée", + "cherry tomatoes", + "grated parmesan cheese", + "garlic", + "celery", + "dried oregano" + ] + }, + { + "id": 48241, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "lemon", + "oil", + "ground cumin", + "clove", + "coriander powder", + "salt", + "onions", + "garam masala", + "ginger", + "coconut milk", + "spinach", + "pumpkin", + "chickpeas", + "ground turmeric" + ] + }, + { + "id": 48174, + "cuisine": "indian", + "ingredients": [ + "radishes", + "purple onion", + "fresh coriander", + "vegetable oil", + "ground lamb", + "plain yogurt", + "mango chutney", + "fresh lime juice", + "coriander seeds", + "paprika", + "ground cumin" + ] + }, + { + "id": 44344, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "garlic powder", + "butter", + "salt", + "ground beef", + "ground cumin", + "tumeric", + "curry powder", + "baking powder", + "garlic", + "ground coriander", + "flax seed meal", + "cold water", + "water", + "stevia powder", + "ground pork", + "stevia", + "onions", + "ground cloves", + "dried thyme", + "scotch bonnet chile", + "coconut flour", + "cream cheese, soften", + "allspice" + ] + }, + { + "id": 28030, + "cuisine": "french", + "ingredients": [ + "chicken stock", + "pearl onions", + "red wine", + "salt pork", + "onions", + "water", + "fresh thyme", + "all-purpose flour", + "bay leaf", + "tomato paste", + "ground black pepper", + "button mushrooms", + "carrots", + "chicken thighs", + "kosher salt", + "unsalted butter", + "garlic", + "celery" + ] + }, + { + "id": 14767, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "sweet potatoes", + "fine sea salt", + "fresh lime juice", + "avocado", + "potatoes", + "cilantro", + "salsa", + "ground pepper", + "chili powder", + "purple onion", + "ground cumin", + "tomatoes", + "jalapeno chilies", + "extra-virgin olive oil", + "dinosaur kale" + ] + }, + { + "id": 934, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "soy sauce", + "rice", + "glutinous rice", + "banana leaves", + "chinese sausage", + "lard" + ] + }, + { + "id": 1524, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "grated coconut", + "urad dal", + "fenugreek seeds", + "dal", + "jaggery", + "asafoetida", + "corn", + "salt", + "oil", + "onions", + "red chili peppers", + "coriander seeds", + "cilantro leaves", + "mustard seeds", + "toor dal", + "tomatoes", + "water", + "garlic", + "cumin seed", + "ghee", + "ground turmeric" + ] + }, + { + "id": 13624, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "salt", + "grated parmesan cheese", + "starch", + "milk", + "margarine" + ] + }, + { + "id": 34899, + "cuisine": "british", + "ingredients": [ + "sugar", + "salt", + "vegetable oil cooking spray", + "dry yeast", + "hot water", + "warm water", + "all-purpose flour", + "shortening", + "nonfat powdered milk" + ] + }, + { + "id": 41202, + "cuisine": "italian", + "ingredients": [ + "capers", + "extra-virgin olive oil", + "fresh basil leaves", + "cooked rigatoni", + "freshly ground pepper", + "parmesan cheese", + "salt", + "plum tomatoes", + "chees fresh mozzarella", + "garlic cloves" + ] + }, + { + "id": 30243, + "cuisine": "indian", + "ingredients": [ + "minced ginger", + "half & half", + "garlic", + "chopped onion", + "cumin", + "tomato sauce", + "garam masala", + "cinnamon", + "greek style plain yogurt", + "lemon juice", + "olive oil", + "chicken breasts", + "salt", + "garlic cloves", + "pepper", + "jalapeno chilies", + "cilantro", + "cayenne pepper", + "basmati rice" + ] + }, + { + "id": 28158, + "cuisine": "french", + "ingredients": [ + "shallots", + "olive oil", + "chopped fresh sage", + "dijon mustard", + "fresh rosemary", + "white wine vinegar" + ] + }, + { + "id": 29528, + "cuisine": "indian", + "ingredients": [ + "dried lentils", + "crushed tomatoes", + "raisins", + "ground cumin", + "pepper", + "kidney beans", + "salt", + "white onion", + "olive oil", + "garlic", + "curry powder", + "garbanzo beans", + "cayenne pepper" + ] + }, + { + "id": 6603, + "cuisine": "mexican", + "ingredients": [ + "ice cubes", + "ground black pepper", + "hot sauce", + "lime", + "worcestershire sauce", + "frozen orange juice concentrate", + "Mexican beer", + "cayenne pepper", + "tomato juice", + "salt" + ] + }, + { + "id": 39396, + "cuisine": "italian", + "ingredients": [ + "pecorino romano cheese", + "flat leaf parsley", + "bread crumb fresh", + "salt", + "extra-virgin olive oil", + "ground black pepper", + "waxy potatoes" + ] + }, + { + "id": 10254, + "cuisine": "brazilian", + "ingredients": [ + "cold water", + "lime", + "sugar", + "sweetened condensed milk" + ] + }, + { + "id": 17532, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "chipotle chile", + "pineapple salsa", + "pineapple", + "purple onion", + "canola oil", + "avocado", + "pickles", + "lime juice", + "whole milk", + "cilantro", + "Ranch Style Beans", + "mayonaise", + "black pepper", + "hot dogs", + "bacon", + "salt", + "mustard", + "ketchup", + "olive oil", + "hot dog bun", + "garlic", + "chipotles in adobo" + ] + }, + { + "id": 6406, + "cuisine": "greek", + "ingredients": [ + "white rice", + "black pepper", + "poultry seasoning", + "salt", + "butter", + "chicken" + ] + }, + { + "id": 25714, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "salt", + "quick-cooking oats", + "golden brown sugar", + "golden syrup" + ] + }, + { + "id": 31646, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "salsa", + "guacamole", + "flour tortillas", + "eggs", + "grating cheese" + ] + }, + { + "id": 772, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "yellow onion", + "pepper", + "garlic", + "boneless skinless chicken breast halves", + "ground cinnamon", + "baking potatoes", + "corn tortillas", + "lime", + "salt", + "canola oil" + ] + }, + { + "id": 14006, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "sugar", + "balsamic vinegar", + "roma tomatoes", + "salt", + "baguette", + "basil" + ] + }, + { + "id": 41521, + "cuisine": "indian", + "ingredients": [ + "mace", + "spring onions", + "green chilies", + "cabbage", + "beans", + "bell pepper", + "garlic", + "carrots", + "olive oil", + "mushrooms", + "salt", + "celery", + "soy sauce", + "vinegar", + "star anise", + "long-grain rice" + ] + }, + { + "id": 41381, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "green onions", + "red bell pepper", + "canola oil", + "chicken stock", + "lemongrass", + "garlic cloves", + "chopped cilantro fresh", + "sugar", + "light coconut milk", + "fresh lime juice", + "sambal ulek", + "peeled fresh ginger", + "sliced mushrooms", + "cooked chicken breasts" + ] + }, + { + "id": 43342, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "tumeric", + "potatoes", + "star anise", + "rice", + "chaat masala", + "red chili powder", + "mace", + "yoghurt", + "plums", + "onions", + "tomatoes", + "red chili peppers", + "mint leaves", + "mutton", + "oil", + "curry leaves", + "garlic paste", + "garam masala", + "yellow food coloring", + "salt", + "coriander" + ] + }, + { + "id": 8043, + "cuisine": "mexican", + "ingredients": [ + "water", + "chili powder", + "salt", + "green chilies", + "chicken stock", + "flour tortillas", + "whipping cream", + "rice", + "onions", + "olive oil", + "butter", + "salsa", + "taco seasoning", + "American cheese", + "chicken breasts", + "garlic", + "cream cheese" + ] + }, + { + "id": 12409, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "olive oil", + "salt", + "molasses", + "bourbon whiskey", + "cider vinegar", + "shallots", + "sugar", + "vinegar", + "freshly ground pepper" + ] + }, + { + "id": 17278, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "ground sirloin", + "Italian bread", + "large eggs", + "salt", + "spaghetti", + "ground black pepper", + "large garlic cloves", + "flat leaf parsley", + "milk", + "grated parmesan cheese", + "sauce" + ] + }, + { + "id": 4375, + "cuisine": "italian", + "ingredients": [ + "fresh tomatoes", + "prosciutto", + "white wine vinegar", + "sausages", + "dried basil", + "red pepper flakes", + "provolone cheese", + "dried oregano", + "red leaf lettuce", + "sub buns", + "purple onion", + "fresh parsley", + "genoa salami", + "olive oil", + "garlic", + "dill pickles" + ] + }, + { + "id": 32657, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "chat masala", + "oil", + "garlic paste", + "yoghurt", + "gram flour", + "fish fillets", + "salt", + "ginger paste", + "red chili powder", + "ajwain", + "lemon juice" + ] + }, + { + "id": 26747, + "cuisine": "greek", + "ingredients": [ + "greek seasoning", + "olive oil", + "red potato", + "lemon" + ] + }, + { + "id": 23923, + "cuisine": "french", + "ingredients": [ + "duck fat", + "ground black pepper", + "duck" + ] + }, + { + "id": 8257, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "eggs", + "vanilla", + "butter", + "corn syrup", + "pecans", + "crust" + ] + }, + { + "id": 41638, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "garlic cloves", + "kosher salt", + "crushed red pepper flakes", + "onions", + "fresh basil", + "unsalted butter", + "bucatini", + "peeled tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 39700, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cooking wine", + "wood ear mushrooms", + "sugar", + "chicken wing drummettes", + "scallions", + "dark soy sauce", + "soaking liquid", + "dried shiitake mushrooms", + "warm water", + "ginger", + "oil" + ] + }, + { + "id": 39172, + "cuisine": "italian", + "ingredients": [ + "warm water", + "salt", + "olive oil", + "white sugar", + "active dry yeast", + "cornmeal", + "black olives", + "bread flour" + ] + }, + { + "id": 15321, + "cuisine": "french", + "ingredients": [ + "burgers", + "roasted red peppers", + "brioche buns", + "goat cheese" + ] + }, + { + "id": 28824, + "cuisine": "cajun_creole", + "ingredients": [ + "butter", + "salt", + "corn starch", + "cooked rice", + "crushed red pepper flakes", + "green pepper", + "green onions", + "garlic", + "shrimp", + "diced tomatoes", + "cayenne pepper", + "onions" + ] + }, + { + "id": 38079, + "cuisine": "moroccan", + "ingredients": [ + "white wine", + "flour", + "red pepper flakes", + "salt", + "chicken", + "chicken broth", + "pepper", + "cinnamon", + "garlic", + "flat leaf parsley", + "white onion", + "bay leaves", + "ginger", + "lemon juice", + "tumeric", + "olive oil", + "pitted green olives", + "black olives", + "cumin" + ] + }, + { + "id": 10294, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "salt", + "garlic", + "freshly ground pepper", + "plums", + "olive oil", + "yellow onion" + ] + }, + { + "id": 10897, + "cuisine": "italian", + "ingredients": [ + "pepper", + "low-fat ricotta cheese", + "noodles", + "parmesan cheese", + "low-fat mozzarella cheese", + "dried basil", + "salt", + "pasta sauce", + "egg whites", + "fresh basil leaves" + ] + }, + { + "id": 27540, + "cuisine": "italian", + "ingredients": [ + "whole wheat spaghetti", + "chickpeas", + "extra-virgin olive oil", + "frozen chopped broccoli", + "garlic cloves", + "hot red pepper flakes", + "salt" + ] + }, + { + "id": 2968, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "olive oil", + "cilantro", + "tortilla chips", + "cumin", + "chicken stock", + "lime", + "queso fresco", + "salt", + "dried oregano", + "avocado", + "water", + "radishes", + "garlic", + "onions", + "pepper", + "hominy", + "cheese", + "pork shoulder", + "cabbage" + ] + }, + { + "id": 3586, + "cuisine": "russian", + "ingredients": [ + "sugar", + "butter", + "all-purpose flour", + "active dry yeast", + "salt", + "milk", + "heavy cream", + "egg yolks", + "buckwheat flour" + ] + }, + { + "id": 19968, + "cuisine": "mexican", + "ingredients": [ + "cider vinegar", + "salt", + "ripe olives", + "ground black pepper", + "lemon juice", + "dried oregano", + "olive oil", + "frozen corn kernels", + "onions", + "avocado", + "garlic", + "red bell pepper" + ] + }, + { + "id": 37586, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "dry white wine", + "oyster sauce", + "thai basil", + "shells", + "canola oil", + "sugar", + "littleneck clams", + "serrano chile", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 23204, + "cuisine": "italian", + "ingredients": [ + "milk", + "butter", + "sharp cheddar cheese", + "pepper", + "green onions", + "salt", + "panko breadcrumbs", + "pasta", + "flour", + "buffalo sauce", + "gorgonzola", + "fresh cilantro", + "boneless skinless chicken breasts", + "grated jack cheese" + ] + }, + { + "id": 1912, + "cuisine": "indian", + "ingredients": [ + "tapioca flour", + "ghee", + "organic coconut milk", + "almond flour", + "salt" + ] + }, + { + "id": 37161, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "shallots", + "white wine vinegar", + "dried oregano", + "ground black pepper", + "large garlic cloves", + "salad oil", + "honey", + "red wine vinegar", + "red bell pepper", + "dijon mustard", + "red pepper flakes", + "marjoram" + ] + }, + { + "id": 12370, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "low salt chicken broth", + "salt", + "long grain white rice", + "olive oil", + "serrano chile", + "dressing", + "garlic cloves" + ] + }, + { + "id": 41150, + "cuisine": "indian", + "ingredients": [ + "saffron threads", + "olive oil", + "spices", + "garlic", + "sweet paprika", + "chili", + "baking powder", + "peas", + "tamarind paste", + "rice flour", + "kosher salt", + "ground black pepper", + "ginger", + "chickpeas", + "cardamom", + "tumeric", + "coriander seeds", + "russet potatoes", + "cilantro leaves", + "cumin seed" + ] + }, + { + "id": 44345, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "cooking spray", + "shredded low-fat mozzarella cheese", + "dried oregano", + "water", + "shredded carrots", + "low-fat pasta sauce", + "onions", + "eggs", + "ground turkey breast", + "large garlic cloves", + "oven-ready lasagna noodles", + "frozen chopped spinach", + "low-fat cottage cheese", + "mushrooms", + "vegetable juice cocktail", + "dried rosemary" + ] + }, + { + "id": 14243, + "cuisine": "italian", + "ingredients": [ + "fresh lemon juice", + "water", + "sugar", + "fresh orange juice" + ] + }, + { + "id": 12056, + "cuisine": "southern_us", + "ingredients": [ + "black beans", + "potatoes", + "white rice", + "celery", + "dried oregano", + "dried split peas", + "crushed tomatoes", + "butter", + "elbow macaroni", + "onions", + "green bell pepper", + "water", + "beef stock", + "round steaks", + "bay leaf", + "cabbage", + "beef soup bones", + "salt and ground black pepper", + "red wine", + "carrots", + "marjoram" + ] + }, + { + "id": 33291, + "cuisine": "italian", + "ingredients": [ + "pear tomatoes", + "flatbread", + "chickpeas", + "pitted green olives", + "fennel", + "flat leaf parsley" + ] + }, + { + "id": 40230, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "ground black pepper", + "salt", + "olive oil", + "purple onion", + "green bell pepper", + "garlic", + "eggs", + "sweet potatoes", + "fresh basil leaves" + ] + }, + { + "id": 23934, + "cuisine": "french", + "ingredients": [ + "eggs", + "egg whites", + "salt", + "white sugar", + "semisweet chocolate", + "vegetable oil", + "chopped walnuts", + "brewed coffee", + "vanilla extract", + "heavy whipping cream", + "unsalted butter", + "egg yolks", + "all-purpose flour", + "unsweetened cocoa powder" + ] + }, + { + "id": 23863, + "cuisine": "southern_us", + "ingredients": [ + "corn", + "green pepper", + "tomatoes", + "ranch dressing", + "pinto beans", + "cornbread", + "zucchini", + "shredded cheese", + "vidalia onion", + "salsa", + "yellow peppers" + ] + }, + { + "id": 28531, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "tilapia fillets", + "hot pepper sauce", + "cilantro", + "fresh lime juice", + "tomatoes", + "honey", + "seafood seasoning", + "garlic", + "cumin", + "white vinegar", + "pepper", + "ground black pepper", + "chili powder", + "salt", + "cabbage", + "light sour cream", + "lime", + "tortillas", + "extra-virgin olive oil", + "adobo sauce" + ] + }, + { + "id": 10191, + "cuisine": "italian", + "ingredients": [ + "sugar", + "olive oil", + "dry red wine", + "water", + "shallots", + "California bay leaves", + "fronds", + "balsamic vinegar", + "bass fillets", + "black pepper", + "golden raisins", + "salt" + ] + }, + { + "id": 30521, + "cuisine": "thai", + "ingredients": [ + "jumbo shrimp", + "jalapeno chilies", + "coconut milk", + "lime", + "cilantro", + "water", + "large garlic cloves", + "long grain white rice", + "red chili powder", + "olive oil", + "salt" + ] + }, + { + "id": 927, + "cuisine": "indian", + "ingredients": [ + "rose water", + "khoa", + "sugar", + "baking soda", + "ground cardamom", + "milk", + "oil", + "water", + "maida flour", + "saffron" + ] + }, + { + "id": 1928, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "slaw mix", + "shrimp", + "jalapeno chilies", + "salt", + "chopped cilantro", + "flour tortillas", + "cilantro sprigs", + "red bell pepper", + "cider vinegar", + "vegetable oil", + "cumin seed" + ] + }, + { + "id": 45364, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "green tomatoes", + "onions", + "ground cloves", + "salt", + "green bell pepper", + "chile pepper", + "white sugar", + "white vinegar", + "prepared horseradish", + "ground allspice" + ] + }, + { + "id": 48052, + "cuisine": "italian", + "ingredients": [ + "ditalini pasta", + "white kidney beans", + "frozen chopped spinach, thawed and squeezed dry", + "chunky pasta sauce" + ] + }, + { + "id": 6828, + "cuisine": "italian", + "ingredients": [ + "garlic", + "celery", + "pepper", + "yellow onion", + "oregano", + "sweet potatoes", + "lard", + "tomato sauce", + "salt", + "ground beef" + ] + }, + { + "id": 17184, + "cuisine": "thai", + "ingredients": [ + "pepper", + "garlic puree", + "sugar", + "cilantro", + "sherry", + "chicken thighs", + "soy sauce", + "salt" + ] + }, + { + "id": 11805, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "whole milk", + "garlic cloves", + "freshly grated parmesan", + "provolone cheese", + "boneless skinless chicken breast halves", + "olive oil", + "butter", + "penne rigate", + "cremini mushrooms", + "flour", + "oil" + ] + }, + { + "id": 47674, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "broccoli", + "lemon wedge", + "water", + "garlic", + "olive oil", + "salt" + ] + }, + { + "id": 37663, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "tomatoes", + "zesty italian dressing", + "angel hair" + ] + }, + { + "id": 16136, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "fresh asparagus", + "salsa", + "garlic", + "chopped cilantro" + ] + }, + { + "id": 10682, + "cuisine": "southern_us", + "ingredients": [ + "mace", + "crushed red pepper flakes", + "ground cardamom", + "ground ginger", + "ground black pepper", + "ground allspice", + "ground cloves", + "bay leaves", + "sweet paprika", + "celery salt", + "ground nutmeg", + "dry mustard", + "ground white pepper" + ] + }, + { + "id": 21009, + "cuisine": "italian", + "ingredients": [ + "low-fat balsamic vinaigrette", + "part-skim ricotta cheese", + "canadian bacon", + "part-skim mozzarella cheese", + "walnuts", + "pears", + "honey", + "pizza doughs", + "gorgonzola", + "broccoli florets", + "mixed greens" + ] + }, + { + "id": 12993, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "diced red onions", + "shredded lettuce", + "salsa", + "ground cumin", + "avocado", + "shredded cheddar cheese", + "chili powder", + "black olives", + "sour cream", + "taco shells", + "boneless skinless chicken breasts", + "garlic", + "rice", + "pickled jalapenos", + "corn", + "coarse salt", + "white wine vinegar", + "dried oregano" + ] + }, + { + "id": 7529, + "cuisine": "japanese", + "ingredients": [ + "white onion", + "green onions", + "carrots", + "milk", + "salt", + "water", + "vegetable oil", + "celery", + "chicken bouillon", + "mushrooms", + "all-purpose flour" + ] + }, + { + "id": 23457, + "cuisine": "chinese", + "ingredients": [ + "chicken wings", + "hoisin sauce", + "ginger root", + "soy sauce", + "chinese five-spice powder", + "brown sugar", + "sesame oil", + "whiskey", + "honey", + "garlic cloves" + ] + }, + { + "id": 36423, + "cuisine": "greek", + "ingredients": [ + "large egg whites", + "cooking spray", + "salt", + "sugar", + "dry yeast", + "anise", + "nonfat dry milk", + "butter", + "all-purpose flour", + "warm water", + "large eggs", + "candied cherries" + ] + }, + { + "id": 34520, + "cuisine": "chinese", + "ingredients": [ + "boneless chop pork", + "brown sugar", + "vegetable oil", + "ground ginger", + "garlic powder", + "soy sauce", + "lemon juice" + ] + }, + { + "id": 49302, + "cuisine": "italian", + "ingredients": [ + "penne", + "baby spinach", + "all-purpose flour", + "cooked chicken breasts", + "ground black pepper", + "1% low-fat milk", + "chopped onion", + "fresh parmesan cheese", + "butter", + "salsa", + "cooking spray", + "salt", + "garlic cloves" + ] + }, + { + "id": 41780, + "cuisine": "korean", + "ingredients": [ + "chili flakes", + "pepper", + "daikon", + "chicken stock", + "sugar", + "sesame oil", + "chicken legs", + "soy sauce", + "vegetable oil", + "sake", + "mirin", + "garlic cloves" + ] + }, + { + "id": 48867, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "ground pepper", + "old bay seasoning", + "ground cayenne pepper", + "honey", + "pumpkin", + "vegetable broth", + "chopped cilantro", + "cuban peppers", + "jalapeno chilies", + "sea salt", + "fresh lime juice", + "red potato", + "olive oil", + "lime slices", + "garlic", + "ground cumin" + ] + }, + { + "id": 42363, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "pepperoni turkei", + "cremini mushrooms", + "cooking spray", + "olive oil", + "pizza sauce", + "dough", + "fresh parmesan cheese", + "cornmeal" + ] + }, + { + "id": 6050, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "flour", + "white onion", + "olives", + "cold water", + "salt", + "olive oil" + ] + }, + { + "id": 33024, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "white onion", + "chopped cilantro", + "ketchup", + "cooked shrimp", + "tomatoes", + "fresh lime juice", + "green cabbage", + "tortilla chips", + "serrano chile" + ] + }, + { + "id": 27512, + "cuisine": "southern_us", + "ingredients": [ + "fresh cilantro", + "ornamental kale", + "purple onion", + "olive oil", + "jalape", + "fresh pineapple", + "roasted bell peppers", + "dijon mustard", + "celery", + "cider vinegar", + "black-eyed peas", + "cilantro sprigs" + ] + }, + { + "id": 21433, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "ground black pepper", + "extra-virgin olive oil", + "sour cream", + "white onion", + "cooking spray", + "garlic cloves", + "long grain white rice", + "saffron threads", + "kosher salt", + "green peas", + "red bell pepper", + "chorizo sausage", + "boneless chicken skinless thigh", + "reduced fat milk", + "all-purpose flour", + "pimento stuffed green olives" + ] + }, + { + "id": 20630, + "cuisine": "mexican", + "ingredients": [ + "crema mexicana", + "roma tomatoes", + "ancho chile pepper", + "kosher salt", + "asadero", + "bay leaf", + "piloncillo", + "fresh thyme", + "fresh oregano", + "unsalted butter", + "garlic", + "onions" + ] + }, + { + "id": 28129, + "cuisine": "brazilian", + "ingredients": [ + "palm oil", + "cayenne", + "garlic cloves", + "black pepper", + "diced tomatoes", + "onions", + "green bell pepper", + "shell-on shrimp", + "fresh lemon juice", + "unsweetened coconut milk", + "olive oil", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 7486, + "cuisine": "italian", + "ingredients": [ + "granulated sugar", + "navel oranges", + "orange zest", + "heavy cream", + "confectioners sugar", + "whole milk", + "salt", + "unflavored gelatin", + "fresh orange juice", + "sour cream" + ] + }, + { + "id": 109, + "cuisine": "korean", + "ingredients": [ + "cayenne pepper", + "onions", + "sesame seeds", + "dark sesame oil", + "salt", + "lemon juice", + "edamame", + "cucumber" + ] + }, + { + "id": 5281, + "cuisine": "greek", + "ingredients": [ + "fresh lemon juice", + "olives", + "olive oil", + "onions", + "potatoes", + "white sandwich bread", + "milk", + "roe" + ] + }, + { + "id": 6315, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "dried thyme", + "butter", + "all-purpose flour", + "celery", + "milk", + "baking powder", + "garlic", + "carrots", + "dried parsley", + "dried basil", + "chicken breasts", + "salt", + "dumplings", + "water", + "soup", + "cracked black pepper", + "yellow onion", + "bay leaf" + ] + }, + { + "id": 6199, + "cuisine": "french", + "ingredients": [ + "sweet onion", + "gruyere cheese", + "vegetable oil cooking spray", + "butter", + "beef broth", + "low sodium worcestershire sauce", + "french bread", + "salt", + "pepper", + "dry sherry", + "margarine" + ] + }, + { + "id": 18933, + "cuisine": "italian", + "ingredients": [ + "capers", + "tagliatelle", + "purple onion", + "extra-virgin olive oil", + "arugula", + "tomatoes", + "ricotta" + ] + }, + { + "id": 20954, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "eggplant", + "crushed red pepper", + "spaghetti", + "crushed tomatoes", + "mushrooms", + "chopped onion", + "black pepper", + "fresh parmesan cheese", + "salt", + "olive oil", + "chopped fresh thyme", + "garlic cloves" + ] + }, + { + "id": 5856, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "water", + "salt", + "red bell pepper", + "olive oil", + "chopped onion", + "fresh parsley", + "potatoes", + "carrots" + ] + }, + { + "id": 22321, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "heavy whipping cream", + "sugar", + "dark rum", + "whole milk", + "marsala wine", + "vanilla extract" + ] + }, + { + "id": 32505, + "cuisine": "french", + "ingredients": [ + "savoy cabbage", + "dried thyme", + "heavy cream", + "salt", + "garlic cloves", + "ground cumin", + "tomato paste", + "unsalted butter", + "dry red wine", + "cognac", + "duck drumsticks", + "chicken stock", + "ground black pepper", + "paprika", + "cayenne pepper", + "carrots", + "rosemary sprigs", + "shallots", + "bouquet garni", + "chinese five-spice powder", + "allspice" + ] + }, + { + "id": 7823, + "cuisine": "southern_us", + "ingredients": [ + "red wine vinegar", + "smoked paprika", + "roasted red peppers", + "salt", + "pecan halves", + "extra-virgin olive oil", + "ground red pepper", + "garlic cloves" + ] + }, + { + "id": 20599, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "mexican chorizo", + "ground chipotle chile pepper", + "ground coriander", + "ground cumin", + "butter", + "onions", + "jack cheese", + "turkey meat" + ] + }, + { + "id": 6142, + "cuisine": "mexican", + "ingredients": [ + "meat", + "vegetables", + "taco seasoning", + "water", + "rice", + "canned beans" + ] + }, + { + "id": 17243, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ricotta cheese", + "white sugar", + "double crust pie", + "pastry", + "candied lemon peel", + "candied orange peel", + "vanilla extract", + "ground cinnamon", + "milk", + "cooked white rice" + ] + }, + { + "id": 14897, + "cuisine": "thai", + "ingredients": [ + "sugar", + "bell pepper", + "linguine", + "fresh parsley", + "white pepper", + "red pepper", + "fresh oregano", + "fresh basil", + "chili pepper", + "vegetable broth", + "carrots", + "soy sauce", + "mushrooms", + "garlic" + ] + }, + { + "id": 33057, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "cooking oil", + "amaretto", + "large eggs", + "bittersweet chocolate" + ] + }, + { + "id": 31872, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "leeks", + "vegetable oil", + "salt", + "beef round", + "ground black pepper", + "shallots", + "extra-virgin olive oil", + "tarragon", + "burgers", + "confit", + "dry red wine", + "brie cheese", + "french bread", + "parsley", + "garlic", + "herbes de provence" + ] + }, + { + "id": 1612, + "cuisine": "korean", + "ingredients": [ + "rice syrup", + "green onions", + "corn syrup", + "cucumber", + "noodles", + "sesame seeds", + "sesame oil", + "green chilies", + "dried red chile peppers", + "brown sugar", + "ground black pepper", + "vegetable oil", + "oyster sauce", + "onions", + "red chili peppers", + "mushrooms", + "garlic", + "carrots", + "chicken thighs" + ] + }, + { + "id": 9763, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "carrots", + "daikon", + "distilled vinegar", + "hot water", + "sugar", + "salt" + ] + }, + { + "id": 16657, + "cuisine": "italian", + "ingredients": [ + "bread crumb fresh", + "ground black pepper", + "anchovy fillets", + "kale", + "grated parmesan cheese", + "orecchiette", + "olive oil", + "crushed red pepper flakes", + "kosher salt", + "unsalted butter", + "garlic cloves" + ] + }, + { + "id": 47013, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "chopped onion", + "mayonaise", + "salt", + "eggs", + "ground black pepper", + "spanish paprika", + "tomato sauce", + "potatoes" + ] + }, + { + "id": 21087, + "cuisine": "french", + "ingredients": [ + "light sour cream", + "vanilla beans", + "ice water", + "salt", + "brown sugar", + "whole milk", + "vanilla extract", + "armagnac", + "whole wheat pastry flour", + "butter", + "plums", + "powdered sugar", + "granulated sugar", + "whole wheat bread", + "all-purpose flour" + ] + }, + { + "id": 7894, + "cuisine": "southern_us", + "ingredients": [ + "wheels", + "lemon juice", + "brown sugar", + "peach nectar", + "bourbon whiskey", + "water", + "peach slices" + ] + }, + { + "id": 43208, + "cuisine": "southern_us", + "ingredients": [ + "minced garlic", + "salt", + "pepper", + "bacon slices", + "mixed greens", + "cider vinegar", + "chile pepper", + "hot sauce", + "pork", + "sweet onion", + "frozen corn" + ] + }, + { + "id": 1379, + "cuisine": "indian", + "ingredients": [ + "water", + "cinnamon sticks", + "green cardamom pods", + "salt", + "basmati rice", + "saffron threads", + "raisins", + "ghee", + "clove", + "yellow onion" + ] + }, + { + "id": 30763, + "cuisine": "irish", + "ingredients": [ + "vegetable oil cooking spray", + "2% reduced-fat milk", + "egg whites", + "all-purpose flour", + "sugar", + "salt", + "eggs", + "pan drippings" + ] + }, + { + "id": 4695, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "chives", + "toasted sesame seeds", + "honey", + "corn starch", + "water", + "sesame oil", + "tofu", + "mirin", + "onions" + ] + }, + { + "id": 22002, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "coarse salt", + "yellow onion", + "garam masala", + "garlic", + "frozen peas", + "serrano chilies", + "ginger", + "ground beef", + "lime wedges", + "cilantro leaves", + "canola oil" + ] + }, + { + "id": 33429, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "salt", + "dried oregano", + "great northern beans", + "bay leaves", + "green pepper", + "soy sauce", + "Tabasco Pepper Sauce", + "celery", + "white pepper", + "garlic", + "onions" + ] + }, + { + "id": 43278, + "cuisine": "indian", + "ingredients": [ + "lettuce", + "coarse salt", + "cayenne pepper", + "chopped fresh mint", + "ground cumin", + "pickled carrots", + "garlic", + "freshly ground pepper", + "naan", + "warm water", + "ground tumeric", + "sauce", + "chopped cilantro fresh", + "olive oil", + "greek style plain yogurt", + "cucumber", + "ground lamb" + ] + }, + { + "id": 39284, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "water", + "spaghetti", + "fat free less sodium chicken broth", + "fresh parsley", + "large garlic cloves", + "dried oregano" + ] + }, + { + "id": 44956, + "cuisine": "italian", + "ingredients": [ + "boneless chicken skinless thigh", + "garlic", + "fresh rosemary", + "bertolli vodka sauc made with fresh cream", + "Bertolli® Classico Olive Oil", + "sliced mushrooms", + "green bell pepper", + "balsamic vinegar" + ] + }, + { + "id": 46947, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "all purpose unbleached flour", + "unsalted butter", + "salt", + "baking powder", + "corn starch", + "baking soda", + "buttermilk" + ] + }, + { + "id": 36831, + "cuisine": "italian", + "ingredients": [ + "pasta", + "dry white wine", + "salt", + "italian seasoning", + "olive oil", + "lemon", + "shrimp", + "black pepper", + "butter", + "garlic cloves", + "grated parmesan cheese", + "heavy cream", + "dried parsley" + ] + }, + { + "id": 41186, + "cuisine": "indian", + "ingredients": [ + "bananas", + "chili powder", + "chaat masala", + "mint leaves", + "black salt", + "ground cumin", + "potatoes", + "apples", + "mango", + "sweet potatoes", + "lemon juice" + ] + }, + { + "id": 35495, + "cuisine": "british", + "ingredients": [ + "lettuce leaves", + "sweet gherkin", + "pickled onion", + "white bread", + "branston pickle", + "cheddar cheese", + "cucumber" + ] + }, + { + "id": 45, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "cinnamon", + "vanilla", + "peach juice", + "granulated sugar", + "peach slices", + "all-purpose flour", + "milk", + "butter", + "salt", + "caramel sauce", + "eggs", + "baking powder", + "light corn syrup", + "pie shell" + ] + }, + { + "id": 17052, + "cuisine": "french", + "ingredients": [ + "almonds", + "rum", + "almond paste", + "water", + "granulated sugar", + "almond extract", + "vanilla beans", + "large eggs", + "fresh orange juice", + "unsalted butter", + "croissants", + "confectioners sugar" + ] + }, + { + "id": 15571, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "cracked black pepper", + "vinegar", + "cumin", + "garlic powder", + "red bell pepper", + "diced onions", + "jalapeno chilies" + ] + }, + { + "id": 47250, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "diced tomatoes", + "garlic cloves", + "dried oregano", + "chipotle chile", + "cooking spray", + "chopped onion", + "adobo sauce", + "black beans", + "queso fresco", + "cumin seed", + "chopped cilantro fresh", + "part-skim mozzarella cheese", + "salt", + "corn tortillas" + ] + }, + { + "id": 25555, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "cucumber", + "arugula", + "oil", + "onions", + "extra-virgin olive oil", + "flat leaf parsley", + "grated lemon peel", + "fresh lemon juice", + "chopped fresh mint" + ] + }, + { + "id": 38498, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "salt", + "sweet potatoes", + "unsalted butter", + "orange zest", + "molasses", + "fresh orange juice" + ] + }, + { + "id": 6412, + "cuisine": "mexican", + "ingredients": [ + "salt", + "white onion", + "fresh lime juice", + "habanero chile", + "garlic cloves", + "tomatillos", + "chopped cilantro fresh" + ] + }, + { + "id": 16282, + "cuisine": "cajun_creole", + "ingredients": [ + "crawfish", + "prepared horseradish", + "paprika", + "creole seasoning", + "chopped garlic", + "ground ginger", + "olive oil", + "baking powder", + "salt", + "chopped parsley", + "water", + "green onions", + "chopped celery", + "lemon juice", + "canola oil", + "mayonaise", + "whole grain mustard", + "Tabasco Pepper Sauce", + "all-purpose flour", + "onions" + ] + }, + { + "id": 7681, + "cuisine": "jamaican", + "ingredients": [ + "light brown sugar", + "kosher salt", + "ground thyme", + "ground cinnamon", + "ground black pepper", + "garlic cloves", + "nutmeg", + "pepper", + "red pepper flakes", + "pork", + "vegetable oil", + "allspice" + ] + }, + { + "id": 34383, + "cuisine": "mexican", + "ingredients": [ + "white hominy", + "chopped onion", + "pork", + "salt", + "red chili peppers", + "garlic", + "dried oregano", + "pig feet", + "boneless pork loin" + ] + }, + { + "id": 907, + "cuisine": "jamaican", + "ingredients": [ + "dark soy sauce", + "lime juice", + "scotch bonnet chile", + "chillies", + "ground cinnamon", + "brandy", + "sherry", + "grated nutmeg", + "allspice", + "ground ginger", + "brown sugar", + "dried thyme", + "hot chili powder", + "onions", + "jamaican rum", + "cider vinegar", + "peeled fresh ginger", + "garlic cloves" + ] + }, + { + "id": 45389, + "cuisine": "mexican", + "ingredients": [ + "smoked ham", + "juice", + "red pepper flakes", + "sliced green onions", + "pineapple chunks", + "cream cheese", + "flour tortillas", + "shredded mozzarella cheese" + ] + }, + { + "id": 3073, + "cuisine": "french", + "ingredients": [ + "helix snails", + "egg yolks", + "pepper", + "salt", + "phyllo dough", + "butter", + "melted butter", + "minced garlic", + "heavy whipping cream" + ] + }, + { + "id": 21801, + "cuisine": "chinese", + "ingredients": [ + "boneless, skinless chicken breast", + "olive oil", + "salt", + "lemon juice", + "chili flakes", + "minced garlic", + "spring onions", + "sauce", + "chicken", + "plain flour", + "pepper", + "fresh ginger root", + "rice vinegar", + "browning", + "soy sauce", + "water", + "cornflour", + "orange juice", + "orange zest" + ] + }, + { + "id": 42923, + "cuisine": "french", + "ingredients": [ + "chocolate syrup", + "vanilla extract", + "whipped topping", + "raspberries", + "cooking spray", + "dry bread crumbs", + "powdered sugar", + "large egg whites", + "Dutch-processed cocoa powder", + "sugar", + "large egg yolks", + "salt" + ] + }, + { + "id": 9684, + "cuisine": "italian", + "ingredients": [ + "white cannellini beans", + "parmesan cheese", + "elbow macaroni", + "dried oregano", + "fresh basil", + "dried basil", + "salt", + "fresh parsley", + "tomatoes", + "pepper", + "butter", + "carrots", + "sugar", + "olive oil", + "garlic cloves", + "onions" + ] + }, + { + "id": 28770, + "cuisine": "italian", + "ingredients": [ + "boneless pork shoulder", + "beef", + "garlic cloves", + "sausage links", + "pecorino romano cheese", + "flat leaf parsley", + "pancetta", + "olive oil", + "pork country-style ribs", + "onions", + "tomatoes", + "Turkish bay leaves", + "juice" + ] + }, + { + "id": 22840, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "sesame oil", + "beef", + "garlic", + "sugar", + "rice wine", + "sesame seeds", + "red pepper" + ] + }, + { + "id": 43255, + "cuisine": "cajun_creole", + "ingredients": [ + "hot pepper sauce", + "salt", + "large shrimp", + "butter", + "chopped fresh mint", + "bay leaves", + "fresh lemon juice", + "ground black pepper", + "worcestershire sauce", + "bottled italian dressing" + ] + }, + { + "id": 274, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "yellow onion", + "black pepper", + "cayenne", + "chicken broth", + "frozen broccoli florets", + "long-grain rice", + "shredded cheddar cheese", + "cream of chicken soup" + ] + }, + { + "id": 35864, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "dried basil", + "onions", + "olive oil", + "oregano", + "tomatoes", + "garlic" + ] + }, + { + "id": 45486, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "garlic", + "coriander", + "garam masala", + "salt", + "cumin", + "tumeric", + "chicken breasts", + "cayenne pepper", + "plain yogurt", + "paprika", + "lemon juice" + ] + }, + { + "id": 29606, + "cuisine": "mexican", + "ingredients": [ + "tostada shells", + "taco seasoning", + "cheese", + "refried beans", + "veggie crumbles", + "pico de gallo", + "rice" + ] + }, + { + "id": 31934, + "cuisine": "french", + "ingredients": [ + "freshly grated parmesan", + "button mushrooms", + "polenta", + "water", + "shallots", + "ground white pepper", + "canola oil", + "milk", + "butter", + "flat leaf parsley", + "salmon fillets", + "mushrooms", + "fine sea salt", + "chopped garlic" + ] + }, + { + "id": 24886, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "shredded mozzarella cheese", + "condensed cream of chicken soup", + "salt", + "condensed cream of celery soup", + "dry bread crumbs", + "melted butter", + "bourbon whiskey", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 9195, + "cuisine": "indian", + "ingredients": [ + "ice cubes", + "hot water", + "raw sugar", + "low-fat plain yogurt", + "mango", + "salt" + ] + }, + { + "id": 12884, + "cuisine": "jamaican", + "ingredients": [ + "beef", + "salt", + "eggs", + "butter", + "mushroom soy sauce", + "green onions", + "flavored oil", + "garlic powder", + "white rice" + ] + }, + { + "id": 33796, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "artichoke hearts", + "garlic cloves", + "whole wheat pita rounds", + "crushed red pepper", + "grape tomatoes", + "part-skim mozzarella cheese", + "olive oil", + "purple onion" + ] + }, + { + "id": 23717, + "cuisine": "italian", + "ingredients": [ + "white wine", + "heavy cream", + "spinach", + "parmesan cheese", + "garlic", + "eggs", + "olive oil", + "orzo", + "bread crumbs", + "chicken breasts", + "crushed red pepper" + ] + }, + { + "id": 27687, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "leaves", + "garlic", + "medium shrimp", + "kosher salt", + "vegetable oil", + "beansprouts", + "white pepper", + "shallots", + "rice vinegar", + "boiling water", + "sugar", + "shiitake", + "rice vermicelli", + "bird chile" + ] + }, + { + "id": 23163, + "cuisine": "japanese", + "ingredients": [ + "pork loin", + "soy sauce", + "ginger root", + "sake", + "oil", + "mirin", + "cabbage" + ] + }, + { + "id": 48653, + "cuisine": "thai", + "ingredients": [ + "reduced sodium beef broth", + "reduced sodium soy sauce", + "fresh mushrooms", + "cooked brown rice", + "broccoli florets", + "asparagus spears", + "sugar", + "cooking oil", + "corn starch", + "top round steak", + "fresh ginger", + "green onions", + "nonstick spray" + ] + }, + { + "id": 10161, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "salt", + "red pepper flakes", + "ground black pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 1240, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "garlic", + "ground ginger", + "tahini", + "water", + "mayonaise", + "paprika" + ] + }, + { + "id": 48749, + "cuisine": "italian", + "ingredients": [ + "white onion", + "chicken breasts", + "parmagiano reggiano", + "tomatoes", + "ground black pepper", + "salt", + "celery", + "green bell pepper", + "mushrooms", + "all-purpose flour", + "olive oil", + "garlic", + "red bell pepper" + ] + }, + { + "id": 38070, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "bamboo shoots", + "mitsuba", + "mirin", + "dashi", + "unagi", + "sugar", + "rice" + ] + }, + { + "id": 35427, + "cuisine": "thai", + "ingredients": [ + "mint leaves", + "juice", + "sugar", + "thai chile", + "fresh lime juice", + "watercress", + "Thai fish sauce", + "peanuts", + "garlic" + ] + }, + { + "id": 42037, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "salt", + "fresh curry leaves", + "split black lentils", + "dried red chile peppers", + "sesame seeds", + "vegetable oil", + "bengal gram", + "cumin seed" + ] + }, + { + "id": 41262, + "cuisine": "italian", + "ingredients": [ + "lemon extract", + "vegetable oil", + "powdered sugar", + "cooking spray", + "grated lemon zest", + "sugar", + "baking powder", + "fresh lemon juice", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 28387, + "cuisine": "indian", + "ingredients": [ + "clove", + "peeled fresh ginger", + "large garlic cloves", + "cumin seed", + "plum tomatoes", + "coriander seeds", + "dry white wine", + "lamb racks", + "chopped fresh mint", + "celery ribs", + "bay leaves", + "vegetable oil", + "chopped onion", + "ground turmeric", + "black peppercorns", + "lamb neck", + "cardamom seeds", + "low salt chicken broth" + ] + }, + { + "id": 3945, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "spaghettini", + "freshly grated parmesan", + "extra-virgin olive oil", + "basil", + "boiling potatoes", + "ground black pepper", + "fine sea salt" + ] + }, + { + "id": 30937, + "cuisine": "japanese", + "ingredients": [ + "tomato sauce", + "curry powder", + "raisins", + "carrots", + "soy sauce", + "bell pepper", + "garlic", + "onions", + "sugar", + "beef bouillon", + "worcestershire sauce", + "ground beef", + "pepper", + "butter", + "salt" + ] + }, + { + "id": 18403, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "cayenne pepper", + "white vinegar", + "salt", + "chicken pieces", + "honey", + "poultry seasoning", + "shortening", + "all-purpose flour" + ] + }, + { + "id": 38026, + "cuisine": "french", + "ingredients": [ + "sugar", + "egg yolks", + "milk" + ] + }, + { + "id": 19113, + "cuisine": "french", + "ingredients": [ + "red potato", + "hard-boiled egg", + "salt", + "olives", + "olive oil", + "shallots", + "fresh lemon juice", + "pepper", + "lettuce leaves", + "white beans", + "caper berries", + "dijon mustard", + "vine ripened tomatoes", + "green beans" + ] + }, + { + "id": 36730, + "cuisine": "greek", + "ingredients": [ + "pepper", + "cucumber", + "salt", + "chopped fresh mint", + "garlic", + "fresh parsley", + "low-fat plain yogurt", + "fresh lemon juice" + ] + }, + { + "id": 13829, + "cuisine": "italian", + "ingredients": [ + "pitted black olives", + "olive oil", + "fresh oregano", + "capers", + "pepper", + "salt", + "white vinegar", + "tomato sauce", + "eggplant", + "onions", + "celery ribs", + "sugar", + "pitted green olives" + ] + }, + { + "id": 15061, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "butter", + "liquid", + "almonds", + "salt", + "sugar", + "vanilla extract", + "baking soda", + "all-purpose flour" + ] + }, + { + "id": 37100, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "sour cream", + "chopped pecans", + "brown sugar" + ] + }, + { + "id": 21949, + "cuisine": "french", + "ingredients": [ + "buttermilk", + "whipping cream" + ] + }, + { + "id": 33921, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "bay leaves", + "salt", + "Emmenthal", + "cheese", + "elbow macaroni", + "white bread", + "cooking spray", + "1% low-fat milk", + "rubbed sage", + "fresh parmesan cheese", + "butter", + "all-purpose flour" + ] + }, + { + "id": 27354, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "bay leaves", + "lemon rind", + "boneless pork shoulder roast", + "whole milk", + "salt", + "thyme", + "ground black pepper", + "brown rice", + "fresh lemon juice", + "sage leaves", + "cooking spray", + "garlic", + "rubbed sage" + ] + }, + { + "id": 12849, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "white wine", + "parsley", + "spaghetti", + "crimini mushrooms", + "salt", + "pepper", + "crushed red pepper flakes" + ] + }, + { + "id": 26336, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red pepper flakes", + "flour", + "pizza doughs", + "artichoke hearts", + "garlic", + "spinach", + "parsley", + "onions" + ] + }, + { + "id": 16186, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "rosemary", + "large garlic cloves", + "mozzarella cheese", + "pizza doughs" + ] + }, + { + "id": 12449, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "basil leaves", + "garlic cloves", + "burrata", + "freshly ground pepper", + "short pasta", + "coarse salt" + ] + }, + { + "id": 42949, + "cuisine": "cajun_creole", + "ingredients": [ + "reduced fat cream cheese", + "boneless skinless chicken breasts", + "sliced green onions", + "cooked rice", + "olive oil", + "onions", + "chicken stock", + "minced garlic", + "creole seasoning", + "andouille sausage", + "roasted red peppers", + "dried oregano" + ] + }, + { + "id": 16982, + "cuisine": "thai", + "ingredients": [ + "fruit", + "sugar", + "fresh mint", + "salt", + "glutinous rice", + "coconut milk" + ] + }, + { + "id": 31097, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "fresh ginger", + "silver", + "orange", + "club soda", + "kosher salt", + "tamarind paste", + "ice cubes", + "water", + "fresh lime juice" + ] + }, + { + "id": 48180, + "cuisine": "mexican", + "ingredients": [ + "condensed cream of chicken soup", + "condensed cream of mushroom soup", + "chopped green chilies", + "onions", + "shredded cheddar cheese", + "corn tortillas", + "chicken broth", + "cooked chicken" + ] + }, + { + "id": 36540, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "sun-dried tomatoes", + "golden raisins", + "ground allspice", + "boneless chicken skinless thigh", + "ground nutmeg", + "salt", + "couscous", + "chicken broth", + "garbanzo beans", + "purple onion", + "ground white pepper", + "olive oil", + "zucchini", + "cilantro leaves", + "ground cumin" + ] + }, + { + "id": 6518, + "cuisine": "italian", + "ingredients": [ + "ground pepper", + "extra-virgin olive oil", + "balsamic vinegar", + "coarse salt", + "grape tomatoes", + "ricotta cheese" + ] + }, + { + "id": 14154, + "cuisine": "moroccan", + "ingredients": [ + "brandy", + "ground black pepper", + "light brown sugar", + "honey", + "onions", + "kosher salt", + "golden raisins", + "ground cinnamon", + "olive oil" + ] + }, + { + "id": 44653, + "cuisine": "moroccan", + "ingredients": [ + "capers", + "water", + "olive oil", + "large eggs", + "kalamata", + "garlic cloves", + "fresh parsley", + "ground lamb", + "black pepper", + "kale", + "feta cheese", + "chili powder", + "salt", + "smoked paprika", + "frozen peas", + "tumeric", + "fresh cilantro", + "pitas", + "dried apricot", + "purple onion", + "fresh parsley leaves", + "onions", + "ground cumin", + "flatbread", + "pepper", + "dried thyme", + "asparagus", + "lemon", + "mustard powder", + "fresh mint", + "dried fig" + ] + }, + { + "id": 19032, + "cuisine": "southern_us", + "ingredients": [ + "tomato sauce", + "apple cider vinegar", + "purple onion", + "water", + "extra-virgin olive oil", + "cumin", + "habanero chile", + "sea salt", + "ground white pepper", + "tomato paste", + "cayenne", + "garlic" + ] + }, + { + "id": 49401, + "cuisine": "french", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "garlic cloves", + "pepper", + "bacon slices", + "cream", + "baby spinach", + "olive oil", + "salt" + ] + }, + { + "id": 18699, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "vanilla extract", + "lemon peel", + "cinnamon sticks", + "large egg yolks", + "corn starch", + "brown sugar", + "whole milk", + "orange peel" + ] + }, + { + "id": 44274, + "cuisine": "moroccan", + "ingredients": [ + "garbanzo beans", + "fat skimmed chicken broth", + "ground cinnamon", + "garlic", + "onions", + "tomato paste", + "dried apricot", + "chopped parsley", + "olive oil", + "lamb loin chops" + ] + }, + { + "id": 11868, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "flour tortillas", + "purple onion", + "greek yogurt", + "black beans", + "olive oil", + "sweet potatoes", + "garlic cloves", + "cumin", + "lime", + "half & half", + "salt", + "adobo sauce", + "pepper", + "manchego cheese", + "lime wedges", + "smoked paprika" + ] + }, + { + "id": 20350, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "salt", + "thyme", + "paprika", + "broiler-fryers", + "vegetable oil", + "all-purpose flour", + "ground white pepper", + "whipping cream", + "freshly ground pepper" + ] + }, + { + "id": 34200, + "cuisine": "japanese", + "ingredients": [ + "Japanese soy sauce", + "salt", + "tobiko", + "vegetable oil", + "toasted nori", + "lump crab meat", + "mirin", + "seasoned rice wine vinegar", + "water", + "beaten eggs" + ] + }, + { + "id": 18501, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "pitted green olives", + "garlic cloves", + "marjoram", + "dried thyme", + "vegetable oil", + "crabmeat", + "flat leaf parsley", + "warm water", + "jalapeno chilies", + "salt", + "masa dough", + "plum tomatoes", + "white onion", + "baking powder", + "all-purpose flour", + "lard", + "dried oregano" + ] + }, + { + "id": 16419, + "cuisine": "japanese", + "ingredients": [ + "flour", + "warm water", + "salt" + ] + }, + { + "id": 30134, + "cuisine": "thai", + "ingredients": [ + "sweet chili sauce", + "sirloin steak", + "sesame seeds", + "corn starch", + "honey", + "salt", + "soy sauce", + "sesame oil", + "canola oil" + ] + }, + { + "id": 42998, + "cuisine": "mexican", + "ingredients": [ + "swiss cheese", + "whole milk", + "all-purpose flour", + "eggs", + "salt", + "baking powder", + "lard" + ] + }, + { + "id": 9955, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "olive oil", + "boneless skinless chicken breast halves", + "eggs", + "dijon style mustard", + "water", + "all-purpose flour", + "puff pastry sheets", + "ground nutmeg" + ] + }, + { + "id": 38239, + "cuisine": "thai", + "ingredients": [ + "salad", + "honey", + "kirby cucumbers", + "vinaigrette", + "carrots", + "low sodium soy sauce", + "ground black pepper", + "red pepper flakes", + "roasted peanuts", + "chopped cilantro", + "water", + "bell pepper", + "rice vinegar", + "oil", + "lime", + "green onions", + "peanut butter", + "garlic cloves" + ] + }, + { + "id": 33886, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "lemon", + "coconut", + "baking powder", + "all-purpose flour", + "vanilla flavoring", + "large eggs", + "buttermilk", + "almonds", + "butter", + "nuts" + ] + }, + { + "id": 21258, + "cuisine": "italian", + "ingredients": [ + "manicotti shells", + "cream cheese", + "mozzarella cheese", + "pasta sauce", + "ground sausage" + ] + }, + { + "id": 33612, + "cuisine": "mexican", + "ingredients": [ + "salt", + "cooked quinoa", + "smoked paprika", + "chopped cilantro fresh", + "cayenne pepper", + "onions", + "green chile", + "ancho chile pepper", + "cumin" + ] + }, + { + "id": 26759, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "garam masala", + "chutney", + "kosher salt", + "greek yogurt", + "plain yogurt", + "garlic cloves", + "large shrimp", + "coconut oil", + "peeled fresh ginger", + "fresh lime juice" + ] + }, + { + "id": 25798, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vegetable oil", + "poultry seasoning", + "bread crumbs", + "grated parmesan cheese", + "salt", + "garlic powder", + "chicken tenderloin", + "pepper", + "onion powder", + "all-purpose flour" + ] + }, + { + "id": 45810, + "cuisine": "italian", + "ingredients": [ + "fresh orange juice", + "water", + "cabernet sauvignon", + "sugar", + "frozen mixed berries", + "orange" + ] + }, + { + "id": 41373, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "japanese pumpkin", + "sugar", + "dashi" + ] + }, + { + "id": 49059, + "cuisine": "southern_us", + "ingredients": [ + "apple cider vinegar", + "soy milk", + "all-purpose flour", + "coconut oil", + "salt", + "baking powder" + ] + }, + { + "id": 19040, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime", + "vegetable oil", + "garlic cloves", + "soy sauce", + "broccoli florets", + "roasted peanuts", + "brown sugar", + "Sriracha", + "cilantro", + "eggs", + "lime juice", + "rice noodles", + "scallions" + ] + }, + { + "id": 15895, + "cuisine": "chinese", + "ingredients": [ + "spring onions", + "salt", + "light soy sauce", + "chili oil", + "red chili peppers", + "sesame oil", + "essence", + "mushrooms", + "garlic" + ] + }, + { + "id": 1703, + "cuisine": "indian", + "ingredients": [ + "butter", + "apples", + "chicken thighs", + "pepper", + "heavy cream", + "sliced mushrooms", + "condensed cream of mushroom soup", + "salt", + "curry powder", + "paprika", + "onions" + ] + }, + { + "id": 26049, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "bell pepper", + "garlic", + "pepper", + "peeled fresh ginger", + "large shrimp", + "chili pepper", + "sherry", + "salt", + "asparagus", + "sesame oil" + ] + }, + { + "id": 35472, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "barbecue sauce", + "brown sugar", + "pepper", + "worcestershire sauce", + "liquid smoke", + "beans", + "yellow mustard", + "pork", + "garlic powder", + "thick-cut bacon" + ] + }, + { + "id": 29962, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "cherry tomatoes", + "pinenuts", + "linguini", + "pesto", + "olive oil", + "water", + "large shrimp" + ] + }, + { + "id": 21328, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "hoisin sauce", + "chenpi", + "corn starch", + "dark soy sauce", + "fresh ginger", + "flank steak", + "chili bean sauce", + "orange", + "Shaoxing wine", + "szechwan peppercorns", + "dried red chile peppers", + "light soy sauce", + "green onions", + "vegetable oil" + ] + }, + { + "id": 21481, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "paneer", + "oil", + "capsicum", + "cilantro leaves", + "onions", + "coriander powder", + "salt", + "lemon juice", + "tomatoes", + "chili powder", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 32760, + "cuisine": "mexican", + "ingredients": [ + "chopped green bell pepper", + "Mexican beer", + "fresh oregano", + "poblano chiles", + "ground black pepper", + "tomatillos", + "all-purpose flour", + "garlic cloves", + "water", + "potatoes", + "beef stew meat", + "chopped onion", + "chopped cilantro fresh", + "olive oil", + "queso fresco", + "salt", + "less sodium beef broth", + "ground cumin" + ] + }, + { + "id": 15810, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "cilantro leaves", + "celtic salt", + "jalapeno chilies", + "garlic cloves", + "extra-virgin olive oil" + ] + }, + { + "id": 14355, + "cuisine": "italian", + "ingredients": [ + "strawberries", + "granulated sugar", + "water", + "fresh lemon juice", + "egg whites" + ] + }, + { + "id": 9693, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken breast", + "corn starch", + "green bell pepper", + "green onions", + "snow peas", + "ground ginger", + "low sodium chicken broth", + "cashew nuts", + "soy sauce", + "garlic", + "canola oil" + ] + }, + { + "id": 16172, + "cuisine": "indian", + "ingredients": [ + "chicken broth", + "diced tomatoes", + "sweet paprika", + "ground black pepper", + "paprika", + "onions", + "olive oil", + "reduced-fat sour cream", + "roast red peppers, drain", + "caraway seeds", + "boneless skinless chicken breasts", + "salt" + ] + }, + { + "id": 28789, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "oil", + "biscuit dough", + "ground turkey", + "tomato sauce", + "cajun seasoning mix", + "grated jack cheese", + "onions" + ] + }, + { + "id": 5043, + "cuisine": "italian", + "ingredients": [ + "milk", + "butter", + "fresh asparagus", + "pepper", + "grated parmesan cheese", + "red bell pepper", + "fontina cheese", + "artichoke hearts", + "all-purpose flour", + "rigatoni", + "olive oil", + "salt", + "arugula" + ] + }, + { + "id": 42337, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "low salt chicken broth", + "crushed tomatoes", + "cilantro leaves", + "ground cumin", + "ground cinnamon", + "top sirloin steak", + "chipotles in adobo", + "grated orange peel", + "purple onion", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 28447, + "cuisine": "indian", + "ingredients": [ + "large garlic cloves", + "chopped cilantro fresh", + "kosher salt", + "roasting chickens", + "garam masala", + "onions", + "extra-virgin olive oil", + "plain whole-milk yogurt" + ] + }, + { + "id": 24740, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "fresh lime juice", + "avocado", + "purple onion", + "extra-virgin olive oil", + "mango", + "habanero chile", + "cilantro leaves" + ] + }, + { + "id": 32845, + "cuisine": "french", + "ingredients": [ + "pasta", + "grated parmesan cheese", + "sour cream", + "white onion", + "crème fraîche", + "chopped garlic", + "white wine", + "salt", + "boneless skinless chicken breast halves", + "pepper", + "fresh mushrooms" + ] + }, + { + "id": 5658, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "frozen peas", + "soy sauce", + "chili paste", + "rice vinegar", + "vegan chicken flavored bouillon", + "fresh ginger", + "garlic", + "bamboo shoots", + "silken tofu", + "fresh shiitake mushrooms", + "sliced mushrooms" + ] + }, + { + "id": 33042, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "pepper", + "salt", + "eggs", + "bacon", + "shredded cheddar cheese", + "sliced green onions" + ] + }, + { + "id": 36538, + "cuisine": "moroccan", + "ingredients": [ + "unsalted butter", + "vegetable broth", + "ground cinnamon", + "golden raisins", + "slivered almonds", + "dates", + "dried apricot", + "couscous" + ] + }, + { + "id": 33111, + "cuisine": "greek", + "ingredients": [ + "large egg yolks", + "baby zucchini", + "cheese", + "extra-virgin olive oil", + "dried oregano", + "ricotta" + ] + }, + { + "id": 2411, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "chicken breasts", + "garlic", + "cardamom pods", + "fat", + "garam masala", + "heavy cream", + "cilantro leaves", + "ground coriander", + "ground turmeric", + "fresh ginger", + "butter", + "salt", + "ground almonds", + "ground cayenne pepper", + "ground cinnamon", + "bay leaves", + "diced tomatoes", + "yellow onion", + "oil", + "ground cumin" + ] + }, + { + "id": 44065, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "chopped green bell pepper", + "fresh oregano", + "ground cumin", + "fresh cilantro", + "boneless skinless chicken breasts", + "corn tortillas", + "white onion", + "lime slices", + "low salt chicken broth", + "olive oil", + "apple cider vinegar", + "fresh lime juice" + ] + }, + { + "id": 11922, + "cuisine": "southern_us", + "ingredients": [ + "country ham", + "sea scallops", + "salt", + "chorizo", + "cajun seasoning", + "medium shrimp", + "minced garlic", + "unsalted butter", + "scallions", + "tomatoes", + "water", + "heavy cream", + "grits" + ] + }, + { + "id": 15155, + "cuisine": "italian", + "ingredients": [ + "jalapeno chilies", + "flat leaf parsley", + "pitted kalamata olives", + "extra-virgin olive oil", + "parmesan cheese", + "garlic", + "pecans", + "lemon" + ] + }, + { + "id": 49441, + "cuisine": "moroccan", + "ingredients": [ + "chicken broth", + "fresh ginger", + "salt", + "couscous", + "ground cumin", + "lamb cutlet", + "paprika", + "cayenne pepper", + "onions", + "ground cinnamon", + "lemon zest", + "cilantro leaves", + "fresh parsley", + "clove", + "olive oil", + "kalamata", + "carrots", + "ground turmeric" + ] + }, + { + "id": 2352, + "cuisine": "thai", + "ingredients": [ + "sugar", + "extra firm tofu", + "tamarind paste", + "mung bean sprouts", + "garlic chives", + "water", + "garlic", + "oil", + "medium eggs", + "white pepper", + "shallots", + "roasted peanuts", + "chinese turnip", + "fish sauce", + "thai noodles", + "cilantro leaves", + "shrimp" + ] + }, + { + "id": 38838, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "fire roasted diced tomatoes", + "onion powder", + "ground cumin", + "chicken stock", + "chili powder", + "unsweetened cocoa powder", + "garlic powder", + "salt" + ] + }, + { + "id": 15258, + "cuisine": "thai", + "ingredients": [ + "sake", + "broccoli florets", + "vegetable broth", + "corn starch", + "brown sugar", + "honey", + "vegetable oil", + "carrots", + "spaghetti", + "ground ginger", + "sugar pea", + "sesame oil", + "creamy peanut butter", + "onions", + "soy sauce", + "ground red pepper", + "garlic", + "red bell pepper" + ] + }, + { + "id": 3504, + "cuisine": "jamaican", + "ingredients": [ + "nutmeg", + "rum", + "coconut milk", + "water", + "condensed milk", + "coconut sugar", + "vanilla", + "fresh ginger", + "baby carrots" + ] + }, + { + "id": 38037, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "coconut milk powder", + "vegetable oil", + "cinnamon sticks", + "clove", + "water", + "ground red pepper", + "cardamom pods", + "chopped cilantro fresh", + "green bell pepper", + "boneless skinless chicken breasts", + "salt", + "onions", + "fennel seeds", + "coriander seeds", + "chile pepper", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 14519, + "cuisine": "moroccan", + "ingredients": [ + "dried apricot", + "garlic", + "ground coriander", + "ground cumin", + "lamb shanks", + "chilli paste", + "cayenne pepper", + "onions", + "chicken stock", + "cinnamon", + "cilantro leaves", + "lemon juice", + "salt and ground black pepper", + "extra-virgin olive oil", + "chickpeas", + "dried oregano" + ] + }, + { + "id": 40697, + "cuisine": "british", + "ingredients": [ + "rolled oats", + "vanilla extract", + "egg yolks", + "corn starch", + "self rising flour", + "salt", + "butter", + "white sugar" + ] + }, + { + "id": 48629, + "cuisine": "russian", + "ingredients": [ + "ground cinnamon", + "vegetable oil", + "vanilla extract", + "large eggs", + "apples", + "large curd cottage cheese", + "sugar", + "butter", + "salt", + "water", + "hoop cheese", + "all-purpose flour" + ] + }, + { + "id": 4601, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "baking powder", + "all-purpose flour", + "evaporated milk", + "vanilla", + "kahlua", + "large eggs", + "(14 oz.) sweetened condensed milk", + "milk", + "whipped cream", + "strawberries" + ] + }, + { + "id": 32751, + "cuisine": "mexican", + "ingredients": [ + "crema mexicana", + "chili powder", + "chees fresco queso", + "corn tortillas", + "chiles", + "green onions", + "deveined shrimp", + "coarse kosher salt", + "green chile", + "sweet potatoes & yams", + "vegetable oil", + "purple onion", + "chopped cilantro fresh", + "parsnips", + "salsa verde", + "large garlic cloves", + "cumin seed", + "dried oregano" + ] + }, + { + "id": 24327, + "cuisine": "indian", + "ingredients": [ + "salt", + "flour", + "tumeric", + "oil", + "chili powder" + ] + }, + { + "id": 41744, + "cuisine": "southern_us", + "ingredients": [ + "crawfish", + "green onions", + "garlic", + "fresh parsley", + "tomato paste", + "salt and ground black pepper", + "butter", + "cayenne pepper", + "sweet onion", + "pastry shell", + "hot sauce", + "green bell pepper", + "flour", + "vegetable broth", + "celery" + ] + }, + { + "id": 45443, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "rib eye steaks", + "cooking spray", + "fresh lemon juice", + "ground black pepper", + "garlic cloves", + "fresh rosemary", + "chopped fresh thyme", + "spaghetti" + ] + }, + { + "id": 20216, + "cuisine": "jamaican", + "ingredients": [ + "boneless chop pork", + "garlic", + "hellmann' or best food light mayonnais", + "ground black pepper", + "grate lime peel", + "lime juice", + "purple onion", + "jamaican jerk season", + "mango" + ] + }, + { + "id": 28390, + "cuisine": "italian", + "ingredients": [ + "vegetable bouillon", + "spaghetti squash", + "minced garlic", + "stewed tomatoes", + "onions", + "black pepper", + "parmesan cheese", + "shredded mozzarella cheese", + "dried basil", + "black olives" + ] + }, + { + "id": 31962, + "cuisine": "italian", + "ingredients": [ + "lime", + "black olives", + "ground cumin", + "pinenuts", + "extra-virgin olive oil", + "ground cayenne pepper", + "rocket leaves", + "red wine vinegar", + "salt", + "pepper", + "garlic", + "fresh basil leaves" + ] + }, + { + "id": 31354, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "water", + "garlic cloves", + "cider vinegar", + "salt", + "sliced carrots", + "iceberg lettuce" + ] + }, + { + "id": 47501, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "old bay seasoning", + "coconut milk", + "lime", + "oil", + "fresh cod", + "pepper", + "salt", + "onions", + "bell pepper", + "garlic cloves" + ] + }, + { + "id": 26688, + "cuisine": "chinese", + "ingredients": [ + "ginger", + "soy sauce", + "sauce", + "garlic", + "honey", + "shrimp" + ] + }, + { + "id": 19710, + "cuisine": "french", + "ingredients": [ + "mussels", + "parsley leaves", + "water", + "garlic cloves", + "pernod", + "salt", + "olive oil", + "fresh chervil" + ] + }, + { + "id": 39571, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "chickpeas", + "chopped cilantro fresh", + "tomatoes", + "vegetable oil", + "garlic cloves", + "ground black pepper", + "cardamom pods", + "basmati rice", + "kosher salt", + "ginger", + "onions" + ] + }, + { + "id": 14476, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "rice cakes", + "bean sauce", + "canola oil", + "sugar", + "ginger", + "toasted sesame oil", + "soy sauce", + "garlic", + "bamboo shoots", + "spinach", + "napa cabbage", + "beansprouts" + ] + }, + { + "id": 47268, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "tumeric", + "salt", + "corn flour", + "red chili powder", + "ginger", + "oil", + "garlic paste", + "chicken strips", + "lemon juice", + "curry leaves", + "garam masala", + "green chilies", + "onions" + ] + }, + { + "id": 21390, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk biscuits", + "ham", + "butter", + "cheddar cheese", + "poppy seeds" + ] + }, + { + "id": 34083, + "cuisine": "italian", + "ingredients": [ + "diced tomatoes", + "pasta sauce", + "ground beef", + "tomato sauce", + "italian seasoning", + "sugar" + ] + }, + { + "id": 40477, + "cuisine": "southern_us", + "ingredients": [ + "red pepper flakes", + "canola oil", + "ranch dressing", + "saltines" + ] + }, + { + "id": 8386, + "cuisine": "russian", + "ingredients": [ + "water", + "bay leaves", + "lemon juice", + "cabbage", + "cooking oil", + "beets", + "onions", + "ketchup", + "potatoes", + "freshly ground pepper", + "broth", + "kidney beans", + "dill", + "carrots" + ] + }, + { + "id": 24618, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "cooking spray", + "white bread", + "ground black pepper", + "tomatoes", + "low-fat buttermilk", + "large egg whites", + "chopped cilantro fresh" + ] + }, + { + "id": 2613, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "russet potatoes", + "pinto beans", + "pico de gallo", + "unsalted butter", + "bacon", + "corn tortillas", + "olive oil", + "large eggs", + "salt", + "dried oregano", + "ground black pepper", + "jalapeno chilies", + "yellow onion", + "ground cumin" + ] + }, + { + "id": 21987, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "taco seasoning mix", + "sour cream", + "shredded cheddar cheese", + "vegetable oil", + "ground beef", + "green chile", + "green onions", + "corn tortillas", + "refried beans", + "black olives", + "plum tomatoes" + ] + }, + { + "id": 8361, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salt", + "sour cream", + "lean ground beef", + "tortilla chips", + "chili powder", + "jumbo pasta shells", + "shredded Monterey Jack cheese", + "taco sauce", + "butter", + "cream cheese" + ] + }, + { + "id": 48089, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "ground black pepper", + "large eggs", + "garlic", + "sesame seeds", + "Sriracha", + "boneless skinless chicken breasts", + "honey", + "reduced sodium soy sauce", + "green onions", + "panko", + "hoisin sauce", + "ginger" + ] + }, + { + "id": 42943, + "cuisine": "japanese", + "ingredients": [ + "prosciutto", + "fresh lemon juice", + "haricots verts", + "grated lemon zest", + "large eggs", + "mayonaise", + "scallions" + ] + }, + { + "id": 47746, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "boneless skinless chicken breasts", + "corn starch", + "mirin", + "salt", + "snow peas", + "leeks", + "rice vinegar", + "canola oil", + "sesame seeds", + "garlic", + "toasted sesame oil" + ] + }, + { + "id": 5571, + "cuisine": "italian", + "ingredients": [ + "salted butter", + "spaghettini", + "sambal ulek", + "purple onion", + "preserved lemon", + "crabmeat", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 24966, + "cuisine": "korean", + "ingredients": [ + "low sodium soy sauce", + "fresh ginger", + "beef rib short", + "pears", + "water", + "green onions", + "garlic cloves", + "honey", + "rice wine", + "onions", + "kosher salt", + "ground black pepper", + "oil" + ] + }, + { + "id": 15432, + "cuisine": "mexican", + "ingredients": [ + "whipped cream", + "milk", + "ground cinnamon", + "cinnamon sticks", + "ibarra" + ] + }, + { + "id": 30487, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "unsalted butter", + "vegetable oil", + "fresh parsley leaves", + "olive oil", + "mushrooms", + "peas", + "minced garlic", + "lemon zest", + "lemon", + "large shrimp", + "hot red pepper flakes", + "ground black pepper", + "dry white wine", + "linguine" + ] + }, + { + "id": 13379, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "tortillas", + "pork", + "butter" + ] + }, + { + "id": 46251, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "corn starch", + "chicken broth", + "sesame seeds", + "sesame oil", + "ground ginger", + "curry powder", + "boneless skinless chicken breasts", + "cashew nuts", + "brown sugar", + "bell pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 488, + "cuisine": "french", + "ingredients": [ + "pearl onions", + "button mushrooms", + "beef stew meat", + "dried minced onion", + "pitted black olives", + "bacon", + "garlic", + "orange peel", + "cold water", + "beef bouillon", + "dry red wine", + "corn starch", + "dried thyme", + "green peas", + "salt", + "boiling water" + ] + }, + { + "id": 39256, + "cuisine": "vietnamese", + "ingredients": [ + "half & half", + "kosher salt", + "sweetened condensed milk", + "coffee", + "egg yolks" + ] + }, + { + "id": 6266, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "jalapeno chilies", + "cornmeal", + "milk", + "salt", + "shredded cheddar cheese", + "vegetable oil", + "eggs", + "cream style corn", + "chopped onion" + ] + }, + { + "id": 38003, + "cuisine": "chinese", + "ingredients": [ + "slivered almonds", + "poppy seeds", + "mustard powder", + "apple cider vinegar", + "purple onion", + "white sugar", + "vegetable oil", + "salt", + "mandarin orange segments", + "bacon", + "torn romain lettuc leav" + ] + }, + { + "id": 33333, + "cuisine": "italian", + "ingredients": [ + "sliced almonds", + "egg whites", + "golden raisins", + "salt", + "milk", + "flour", + "heavy cream", + "white sugar", + "eggs", + "lemon zest", + "dark rum", + "vanilla extract", + "yeast", + "water", + "chopped almonds", + "butter", + "candied fruit" + ] + }, + { + "id": 9402, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "baking powder", + "corn kernels", + "salt", + "sugar", + "2% reduced-fat milk", + "yellow corn meal", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 9235, + "cuisine": "italian", + "ingredients": [ + "chopped fresh chives", + "bacon slices", + "butter", + "muffin mix", + "buttermilk cornbread", + "shredded sharp cheddar cheese", + "large eggs", + "buttermilk" + ] + }, + { + "id": 45860, + "cuisine": "irish", + "ingredients": [ + "dry yeast", + "water", + "molasses", + "salt", + "whole wheat flour" + ] + }, + { + "id": 39215, + "cuisine": "italian", + "ingredients": [ + "pepper", + "penne pasta", + "fresh basil", + "diced tomatoes", + "garlic cloves", + "olive oil", + "parmagiano reggiano", + "mozzarella cheese", + "salt", + "oregano" + ] + }, + { + "id": 21912, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "shallots", + "flat leaf parsley", + "kosher salt", + "fresh thyme", + "paprika", + "tumeric", + "fennel bulb", + "russet potatoes", + "ground cumin", + "olive oil", + "roma tomatoes", + "whole chicken" + ] + }, + { + "id": 38063, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "softened butter", + "American cheese", + "pesto sauce", + "Italian bread", + "provolone cheese" + ] + }, + { + "id": 4885, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "salt", + "lime wedges", + "chicken thighs", + "chicken breast halves", + "mole sauce", + "ground black pepper", + "chicken drumsticks", + "chopped cilantro fresh" + ] + }, + { + "id": 20302, + "cuisine": "southern_us", + "ingredients": [ + "caster sugar", + "glucose syrup", + "eggs", + "baking soda", + "salt", + "plain flour", + "unsalted roasted peanuts", + "butter", + "dark chocolate", + "baking powder", + "cocoa powder" + ] + }, + { + "id": 38278, + "cuisine": "italian", + "ingredients": [ + "Italian seasoned breadcrumbs", + "milk", + "cheese sticks", + "marinara sauce" + ] + }, + { + "id": 28017, + "cuisine": "southern_us", + "ingredients": [ + "rub", + "kosher salt", + "barbecue sauce", + "cracked black pepper", + "garlic cloves", + "pork baby back ribs", + "water", + "chili powder", + "yellow onion", + "tomato paste", + "cider vinegar", + "bourbon whiskey", + "chile de arbol", + "smoked paprika", + "liquid smoke", + "ketchup", + "ground black pepper", + "worcestershire sauce", + "dark brown sugar" + ] + }, + { + "id": 19058, + "cuisine": "french", + "ingredients": [ + "cheddar cheese", + "leeks", + "salt", + "ground black pepper", + "baking potatoes", + "celery root", + "water", + "whole milk", + "chopped onion", + "turnips", + "french bread", + "butter" + ] + }, + { + "id": 33555, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "orange flower water", + "ground cinnamon", + "navel oranges" + ] + }, + { + "id": 30549, + "cuisine": "southern_us", + "ingredients": [ + "fresh rosemary", + "fresh parmesan cheese", + "cannellini beans", + "purple onion", + "olive oil", + "french bread", + "sea salt", + "boiling water", + "sun-dried tomatoes", + "cooking spray", + "crushed red pepper", + "grits", + "black pepper", + "finely chopped fresh parsley", + "butter", + "garlic cloves" + ] + }, + { + "id": 46707, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "rotelle", + "Mexican cheese", + "corn kernel whole", + "chicken broth", + "boneless skinless chicken breasts", + "salt", + "onions", + "kidney beans", + "vegetable oil", + "rotel tomatoes", + "sugar", + "chili powder", + "tortilla chips", + "chopped cilantro fresh" + ] + }, + { + "id": 22365, + "cuisine": "korean", + "ingredients": [ + "sugar", + "sesame seeds", + "green onions", + "black pepper", + "asian pear", + "sprite", + "honey", + "mirin", + "garlic cloves", + "soy sauce", + "flanken short ribs", + "sesame oil" + ] + }, + { + "id": 2615, + "cuisine": "italian", + "ingredients": [ + "shredded carrots", + "garlic", + "frozen chopped spinach", + "pecorino romano cheese", + "onions", + "cannellini beans", + "escarole", + "olive oil", + "diced tomatoes", + "chicken" + ] + }, + { + "id": 35812, + "cuisine": "italian", + "ingredients": [ + "bread crumb fresh", + "parmigiano reggiano cheese", + "provolone cheese", + "water", + "artichokes", + "chopped garlic", + "reduced sodium chicken broth", + "lemon", + "flat leaf parsley", + "olive oil", + "soppressata" + ] + }, + { + "id": 536, + "cuisine": "indian", + "ingredients": [ + "saffron threads", + "cardamom pods", + "pistachios", + "hot water", + "yoghurt", + "powdered sugar", + "shelled pistachios" + ] + }, + { + "id": 11827, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red wine vinegar", + "purple onion", + "fresh mint", + "pinenuts", + "grated parmesan cheese", + "part-skim ricotta cheese", + "fresh parsley leaves", + "large eggs", + "garlic", + "mixed greens", + "ground black pepper", + "red pepper flakes", + "salt", + "fresh basil leaves" + ] + }, + { + "id": 483, + "cuisine": "filipino", + "ingredients": [ + "tofu", + "red miso", + "green onions", + "stock", + "spring onions" + ] + }, + { + "id": 32564, + "cuisine": "moroccan", + "ingredients": [ + "white pepper", + "beef brisket", + "stewed tomatoes", + "fresh parsley", + "preserved lemon", + "water", + "bay leaves", + "garlic cloves", + "ground turmeric", + "oil cured olives", + "ground black pepper", + "peeled fresh ginger", + "diced celery", + "kosher salt", + "cooking spray", + "chopped onion", + "chopped cilantro fresh" + ] + }, + { + "id": 6902, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "cornflake cereal", + "low-fat buttermilk", + "creole seasoning", + "vegetable oil cooking spray", + "salt", + "lemon wedge" + ] + }, + { + "id": 24596, + "cuisine": "irish", + "ingredients": [ + "Irish whiskey", + "large eggs", + "vanilla extract", + "irish cream liqueur", + "butter", + "french bread", + "confectioners sugar" + ] + }, + { + "id": 17099, + "cuisine": "italian", + "ingredients": [ + "shredded cheddar cheese", + "dry bread crumbs", + "vegetable oil", + "onions", + "eggs", + "condensed tomato soup", + "ground cumin", + "tomato juice", + "chopped pecans" + ] + }, + { + "id": 33859, + "cuisine": "thai", + "ingredients": [ + "light brown sugar", + "lemon grass", + "red curry paste", + "chopped cilantro fresh", + "fish sauce", + "vegetable oil", + "fresh lime juice", + "chicken broth", + "fresh shiitake mushrooms", + "coconut milk", + "fresh ginger", + "salt", + "medium shrimp" + ] + }, + { + "id": 39789, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "red pepper flakes", + "large eggs", + "all-purpose flour", + "olive oil", + "garlic", + "grated parmesan cheese", + "broccoli" + ] + }, + { + "id": 47115, + "cuisine": "italian", + "ingredients": [ + "port wine", + "non-fat sour cream", + "sugar", + "blueberries", + "unflavored gelatin", + "salt", + "cold water", + "low-fat buttermilk", + "sweetened condensed milk" + ] + }, + { + "id": 6516, + "cuisine": "southern_us", + "ingredients": [ + "nutmeg", + "flour", + "pecans", + "cinnamon", + "eggs", + "sweet potatoes", + "light brown sugar", + "unsalted butter", + "salt" + ] + }, + { + "id": 45549, + "cuisine": "mexican", + "ingredients": [ + "salt", + "jalapeno chilies", + "garlic cloves", + "avocado", + "cilantro leaves", + "purple onion", + "fresh lime juice" + ] + }, + { + "id": 14050, + "cuisine": "cajun_creole", + "ingredients": [ + "yellow corn meal", + "frozen whole kernel corn", + "whipping cream", + "red bell pepper", + "green bell pepper", + "butter", + "all-purpose flour", + "fresh basil", + "vegetable oil", + "salt", + "onions", + "catfish fillets", + "pepper", + "buttermilk", + "creole seasoning" + ] + }, + { + "id": 24122, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "sour cream", + "tomato salsa", + "corn chips", + "chopped cilantro", + "Mexican cheese blend", + "scallions" + ] + }, + { + "id": 43262, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "cream cheese", + "ground beef", + "salt", + "shredded cheese", + "pasta shapes", + "garlic", + "taco seasoning", + "onions", + "salsa", + "sour cream" + ] + }, + { + "id": 14677, + "cuisine": "jamaican", + "ingredients": [ + "water", + "cho-cho", + "carrots", + "black pepper", + "hot pepper sauce", + "salt", + "onions", + "bananas", + "butter", + "red bell pepper", + "pepper", + "fresh thyme", + "scallions", + "fish" + ] + }, + { + "id": 46742, + "cuisine": "southern_us", + "ingredients": [ + "coconut", + "whipped topping", + "coco", + "white cake mix", + "sweetened condensed milk" + ] + }, + { + "id": 43381, + "cuisine": "italian", + "ingredients": [ + "orange liqueur", + "peach nectar", + "white wine", + "frozen peach slices" + ] + }, + { + "id": 19335, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "ground black pepper", + "olive oil flavored cooking spray", + "light alfredo sauce", + "fresh parmesan cheese", + "dry white wine", + "angel hair", + "sun-dried tomatoes", + "mushrooms", + "fat free less sodium chicken broth", + "prosciutto", + "green peas" + ] + }, + { + "id": 45603, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "boneless beef chuck roast", + "corn starch", + "cooked rice", + "broccoli florets", + "garlic cloves", + "soy sauce", + "sauce", + "beef", + "oil" + ] + }, + { + "id": 17588, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "chives", + "water", + "large eggs", + "fresh parsley leaves", + "kosher salt", + "dijon mustard", + "all-purpose flour", + "olive oil", + "grated parmesan cheese" + ] + }, + { + "id": 3699, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "chopped celery", + "fresh parsley leaves", + "green onions", + "garlic cloves", + "jalapeno chilies", + "long-grain rice", + "field peas", + "olive oil", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 39069, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "top sirloin", + "broccoli florets", + "sesame oil", + "corn starch", + "fresh ginger", + "chinese pea pods", + "peanut oil", + "brown sugar", + "sherry", + "large garlic cloves", + "red bell pepper" + ] + }, + { + "id": 49073, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "lamb rib chops", + "dijon mustard", + "hot water", + "unsalted butter", + "rosemary leaves", + "dried porcini mushrooms", + "large garlic cloves", + "flat leaf parsley" + ] + }, + { + "id": 19114, + "cuisine": "greek", + "ingredients": [ + "red wine vinegar", + "kefalotyri", + "salt", + "extra-virgin olive oil", + "arugula", + "ground black pepper", + "beets" + ] + }, + { + "id": 34308, + "cuisine": "southern_us", + "ingredients": [ + "salt and ground black pepper", + "worcestershire sauce", + "pork roast", + "barbecue sauce", + "garlic", + "brewed coffee", + "crushed red pepper flakes", + "onions", + "water", + "bourbon whiskey", + "beef broth" + ] + }, + { + "id": 15672, + "cuisine": "chinese", + "ingredients": [ + "salt", + "chopped cilantro fresh", + "scallions", + "peanut oil", + "garlic", + "shrimp" + ] + }, + { + "id": 16110, + "cuisine": "italian", + "ingredients": [ + "cream cheese", + "boneless skinless chicken breasts", + "italian salad dressing", + "condensed cream of chicken soup", + "italian salad dressing mix", + "shredded parmesan cheese" + ] + }, + { + "id": 40888, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "boneless skinless chicken breasts", + "yogurt cheese", + "cooking spray", + "salt", + "reduced fat milk", + "almond meal", + "saffron threads", + "peeled fresh ginger", + "fresh lemon juice" + ] + }, + { + "id": 1825, + "cuisine": "cajun_creole", + "ingredients": [ + "fettucine", + "green onions", + "cheese", + "fresh parsley", + "celery ribs", + "andouille sausage", + "butter", + "garlic cloves", + "green bell pepper", + "cajun seasoning", + "all-purpose flour", + "onions", + "chicken broth", + "grated parmesan cheese", + "heavy cream", + "shrimp" + ] + }, + { + "id": 25916, + "cuisine": "chinese", + "ingredients": [ + "boneless skinless chicken breasts", + "seasoning", + "vegetable oil", + "soy sauce", + "orange juice", + "honey" + ] + }, + { + "id": 21154, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "salt", + "sour cream", + "tomatillo salsa", + "boneless skinless chicken breasts", + "all-purpose flour", + "monterey jack", + "chicken stock", + "flour tortillas", + "cilantro leaves", + "onions", + "chopped tomatoes", + "extra-virgin olive oil", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 28671, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dark rum", + "all-purpose flour", + "semisweet chocolate", + "heavy cream", + "white sugar", + "mascarpone", + "rum", + "confectioners sugar", + "brewed coffee", + "vanilla extract", + "boiling water" + ] + }, + { + "id": 21237, + "cuisine": "jamaican", + "ingredients": [ + "brown sugar", + "cooking spray", + "fresh lime juice", + "fresh cilantro", + "purple onion", + "boneless skinless chicken breast halves", + "black pepper", + "crushed red pepper", + "chopped fresh mint", + "jamaican jerk season", + "salt", + "mango" + ] + }, + { + "id": 67, + "cuisine": "irish", + "ingredients": [ + "chicken broth", + "potatoes", + "garlic cloves", + "cabbage", + "cider vinegar", + "smoked sausage", + "thyme", + "pepper", + "salt", + "onions", + "sugar", + "bay leaves", + "carrots" + ] + }, + { + "id": 8994, + "cuisine": "thai", + "ingredients": [ + "water", + "fish sauce", + "tamarind paste", + "whitefish", + "watermelon", + "sugar", + "curry paste" + ] + }, + { + "id": 19009, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "butter", + "all-purpose flour", + "granulated sugar", + "vanilla extract", + "powdered sugar", + "egg yolks", + "vanilla wafers", + "bananas", + "whipping cream", + "frozen blueberries" + ] + }, + { + "id": 8479, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "salt", + "fresh parsley", + "green bell pepper", + "low sodium chicken broth", + "chicken livers", + "ground black pepper", + "rice", + "onions", + "andouille sausage", + "garlic", + "red bell pepper" + ] + }, + { + "id": 31785, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "chicken", + "water", + "butter", + "dried tarragon leaves", + "dry white wine", + "olive oil", + "salt" + ] + }, + { + "id": 36984, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "sherry vinegar", + "butter", + "lentils", + "onions", + "water", + "dijon mustard", + "salt", + "flat leaf parsley", + "eggs", + "ground black pepper", + "garlic", + "chicken livers", + "olive oil", + "grated parmesan cheese", + "mixed greens", + "cornmeal" + ] + }, + { + "id": 19257, + "cuisine": "cajun_creole", + "ingredients": [ + "parsley sprigs", + "blackening seasoning", + "butter", + "catfish fillets", + "fresh parmesan cheese", + "mushrooms", + "shrimp", + "fat free less sodium chicken broth", + "cooking spray", + "long-grain rice", + "light alfredo sauce", + "low-fat buttermilk", + "green onions", + "fresh parsley" + ] + }, + { + "id": 47734, + "cuisine": "chinese", + "ingredients": [ + "cilantro stems", + "boneless ham", + "chicken", + "salt", + "garlic cloves", + "fresh ginger", + "scallions", + "iceberg lettuce", + "cold water", + "dried rice noodles", + "Smithfield Ham" + ] + }, + { + "id": 17892, + "cuisine": "british", + "ingredients": [ + "brandy", + "peach slices", + "whipped cream", + "sugar" + ] + }, + { + "id": 16441, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "water", + "chili powder", + "peanut oil", + "ground cumin", + "tomato purée", + "plain yogurt", + "half & half", + "salt", + "corn starch", + "black pepper", + "garam masala", + "butter", + "lemon juice", + "garlic paste", + "white onion", + "shallots", + "cayenne pepper", + "bay leaf" + ] + }, + { + "id": 36692, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "rosemary", + "extra-virgin olive oil", + "lima beans", + "smoked paprika", + "bread crumbs", + "leeks", + "grated lemon zest", + "garlic cloves", + "flat leaf parsley", + "tomatoes", + "ground black pepper", + "spanish chorizo", + "anchovy fillets", + "low salt chicken broth", + "kosher salt", + "bay leaves", + "yellow onion", + "thyme" + ] + }, + { + "id": 14794, + "cuisine": "southern_us", + "ingredients": [ + "grated parmesan cheese", + "fresh lemon juice", + "kosher salt", + "extra-virgin olive oil", + "fresh tomatoes", + "shallots", + "grits", + "unsalted butter", + "freshly ground pepper" + ] + }, + { + "id": 10468, + "cuisine": "chinese", + "ingredients": [ + "egg roll wrappers", + "peeled fresh ginger", + "chopped onion", + "sliced green onions", + "black pepper", + "cooking spray", + "chopped celery", + "garlic cloves", + "large egg whites", + "shredded cabbage", + "rice vinegar", + "carrots", + "low sodium soy sauce", + "ground turkey breast", + "vegetable oil", + "dark sesame oil" + ] + }, + { + "id": 7180, + "cuisine": "japanese", + "ingredients": [ + "baking powder", + "coconut milk", + "sugar", + "vanilla extract", + "water", + "corn starch", + "matcha green tea powder", + "sweet rice flour" + ] + }, + { + "id": 49716, + "cuisine": "indian", + "ingredients": [ + "water", + "cinnamon", + "garlic", + "cardamom", + "onions", + "clove", + "mint leaves", + "star anise", + "green chilies", + "bay leaf", + "basmati rice", + "vegetables", + "ginger", + "salt", + "cucumber", + "cashew nuts", + "fennel seeds", + "chili powder", + "grated carrot", + "curds", + "ghee", + "ground turmeric" + ] + }, + { + "id": 324, + "cuisine": "british", + "ingredients": [ + "caster sugar", + "bran flakes", + "double cream", + "sea salt flakes", + "mascarpone", + "crumbs", + "free range egg", + "plain flour", + "vanilla pods", + "butter", + "golden syrup", + "milk", + "egg yolks", + "salt" + ] + }, + { + "id": 15203, + "cuisine": "mexican", + "ingredients": [ + "water", + "vegetable oil", + "fresh lemon juice", + "spinach", + "flour tortillas", + "garlic cloves", + "onions", + "pepper jack", + "scallions", + "sour cream", + "canned black beans", + "mushrooms", + "enchilada sauce" + ] + }, + { + "id": 22310, + "cuisine": "italian", + "ingredients": [ + "crème fraîche", + "frozen peas", + "pesto sauce", + "bows", + "olive oil", + "fresh basil leaves", + "tomatoes", + "chicken fillets" + ] + }, + { + "id": 19695, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "red wine vinegar", + "corn tortillas", + "fresh cilantro", + "chili powder", + "salt", + "medium shrimp", + "sugar", + "red cabbage", + "garlic", + "chipotles in adobo", + "lime", + "lime wedges", + "sour cream", + "ground cumin" + ] + }, + { + "id": 41229, + "cuisine": "indian", + "ingredients": [ + "food colouring", + "garlic", + "tomato purée", + "tandoori spices", + "green chilies", + "plain yogurt", + "salt", + "fish fillets", + "ginger", + "oil" + ] + }, + { + "id": 48263, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "vegetable stock", + "green chilies", + "onions", + "chopped tomatoes", + "star anise", + "cinnamon sticks", + "basmati rice", + "garlic paste", + "spices", + "oil", + "shahi jeera", + "clove", + "mint leaves", + "green cardamom", + "bay leaf", + "ground turmeric" + ] + }, + { + "id": 8633, + "cuisine": "italian", + "ingredients": [ + "low sodium chicken broth", + "garlic", + "olive oil", + "stewed tomatoes", + "fresh parsley", + "pasta", + "cannellini beans", + "chopped onion", + "ground black pepper", + "basil dried leaves" + ] + }, + { + "id": 46106, + "cuisine": "italian", + "ingredients": [ + "sugar", + "dried tart cherries", + "salt", + "dried cranberries", + "large eggs", + "butter", + "grated lemon zest", + "baking soda", + "almond extract", + "all-purpose flour", + "slivered almonds", + "baking powder", + "vanilla extract", + "orange rind" + ] + }, + { + "id": 5343, + "cuisine": "chinese", + "ingredients": [ + "water", + "fine sea salt", + "soy sauce", + "shallots", + "serrano chile", + "sugar", + "green onions", + "yellow split peas", + "potsticker wrappers", + "sunflower oil" + ] + }, + { + "id": 16190, + "cuisine": "greek", + "ingredients": [ + "phyllo dough", + "large egg whites", + "crumbled blue cheese", + "feta cheese crumbles", + "semolina flour", + "ground black pepper", + "cooking spray", + "cheddar cheese", + "fat free milk", + "jalapeno chilies", + "fat free yogurt", + "chopped green bell pepper", + "salt" + ] + }, + { + "id": 44498, + "cuisine": "mexican", + "ingredients": [ + "broccoli", + "flour tortillas", + "cheddar cheese", + "grilled chicken strips", + "brown rice" + ] + }, + { + "id": 1546, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "diced tomatoes", + "taco seasoning", + "brown rice", + "salsa", + "black beans", + "vegetable broth", + "fresh corn", + "whole wheat tortillas", + "whole kernel corn, drain" + ] + }, + { + "id": 26904, + "cuisine": "mexican", + "ingredients": [ + "salt", + "chicken", + "finely chopped onion", + "garlic cloves", + "white wine", + "green chilies", + "butter", + "toasted almonds" + ] + }, + { + "id": 24380, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "butter", + "jalapeno chilies", + "red bell pepper", + "zucchini", + "salsa", + "green onions", + "chopped cilantro fresh" + ] + }, + { + "id": 10160, + "cuisine": "southern_us", + "ingredients": [ + "vanilla ice cream", + "unsalted butter", + "baking powder", + "pecans", + "milk", + "large eggs", + "chocolate sauce", + "brown sugar", + "baking soda", + "flour", + "whiskey", + "ground cinnamon", + "molasses", + "granulated sugar", + "salt" + ] + }, + { + "id": 5665, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "heavy cream", + "sharp cheddar cheese", + "baking powder", + "salt", + "unsalted butter", + "bacon", + "eggs", + "butter", + "all-purpose flour" + ] + }, + { + "id": 17337, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "ground allspice", + "salt", + "onions", + "grated lemon zest", + "ground lamb", + "butter", + "fresh parsley" + ] + }, + { + "id": 6029, + "cuisine": "japanese", + "ingredients": [ + "aonori", + "oyster sauce", + "onions", + "white pepper", + "scallions", + "beni shoga", + "chuno sauce", + "dried bonito flakes", + "carrots", + "vegetable oil", + "Chinese egg noodles", + "cabbage" + ] + }, + { + "id": 32978, + "cuisine": "british", + "ingredients": [ + "milk", + "salt", + "eggs", + "flour" + ] + }, + { + "id": 33070, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "chopped walnuts", + "raisins", + "red bell pepper", + "harissa", + "fresh lemon juice", + "fine sea salt" + ] + }, + { + "id": 30369, + "cuisine": "italian", + "ingredients": [ + "sugar", + "white wine vinegar", + "olive oil", + "dried oregano", + "mayonaise", + "heavy cream", + "dried basil", + "flat leaf parsley" + ] + }, + { + "id": 43023, + "cuisine": "italian", + "ingredients": [ + "genoa salami", + "romaine lettuce leaves", + "pimento stuffed green olives", + "mustard", + "cheese slices", + "Italian bread", + "parmesan cheese", + "mortadella", + "plum tomatoes", + "mayonaise", + "bacon slices", + "italian salad dressing" + ] + }, + { + "id": 8346, + "cuisine": "italian", + "ingredients": [ + "butter", + "fresh fava bean", + "large egg yolks", + "beef tenderloin", + "onions", + "olive oil", + "whipping cream", + "fresh lemon juice", + "ground black pepper", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 38465, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "kalamata", + "bow-tie pasta", + "red wine vinegar", + "salt", + "part-skim mozzarella cheese", + "crushed red pepper", + "grape tomatoes", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 33673, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "bay scallops", + "imitation crab meat", + "eggs", + "olive oil", + "ricotta cheese", + "Italian cheese", + "Alfredo sauce", + "shrimp", + "baby portobello mushrooms", + "lasagna noodles", + "garlic" + ] + }, + { + "id": 31902, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "apple cider vinegar", + "fresh lemon juice", + "firmly packed brown sugar", + "olive oil", + "garlic cloves", + "sweet onion", + "salt", + "pepper", + "worcestershire sauce" + ] + }, + { + "id": 34583, + "cuisine": "southern_us", + "ingredients": [ + "cream of tartar", + "honey", + "heavy whipping cream", + "kosher salt", + "strawberry preserves", + "sugar", + "large eggs", + "white cornmeal", + "water", + "buttermilk" + ] + }, + { + "id": 9743, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salt", + "corn tortillas", + "white onion", + "garlic cloves", + "chopped cilantro fresh", + "cotija", + "liquid", + "chipotles in adobo", + "chicken stock", + "vegetable oil", + "sour cream", + "chicken" + ] + }, + { + "id": 19044, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "vegetable oil", + "chopped cilantro fresh", + "ground round", + "shredded reduced fat cheddar cheese", + "40% less sodium taco seasoning mix", + "green bell pepper", + "chili", + "pinto beans", + "romaine lettuce", + "frozen whole kernel corn", + "onions" + ] + }, + { + "id": 2900, + "cuisine": "mexican", + "ingredients": [ + "Italian parsley leaves", + "garlic cloves", + "olive oil", + "salt", + "red wine vinegar", + "cilantro leaves", + "crushed red pepper", + "ground cumin" + ] + }, + { + "id": 39800, + "cuisine": "chinese", + "ingredients": [ + "water", + "peanut oil", + "snow peas", + "brown sugar", + "beef broth", + "corn starch", + "ground ginger", + "flank steak", + "scallions", + "soy sauce", + "rice", + "noodles" + ] + }, + { + "id": 40889, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "vine ripened tomatoes", + "garlic cloves", + "kosher salt", + "cayenne", + "lemon", + "slab bacon", + "shell-on shrimp", + "all-purpose flour", + "sugar", + "hominy", + "red wine vinegar", + "bay leaf" + ] + }, + { + "id": 33776, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "sour cream", + "chicken broth", + "flour", + "diced green chilies", + "chicken breasts", + "Mexican cheese blend", + "butter" + ] + }, + { + "id": 32956, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "ginger", + "mirin", + "boneless, skinless chicken breast", + "vegetable oil" + ] + }, + { + "id": 5314, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "honey", + "green onions", + "ginger", + "white vinegar", + "soy sauce", + "finely chopped onion", + "sesame oil", + "salt", + "eggs", + "sesame seeds", + "boneless skinless chicken breasts", + "garlic", + "cold water", + "pepper", + "flour", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 46639, + "cuisine": "greek", + "ingredients": [ + "eggs", + "milk", + "garlic", + "plum tomatoes", + "water", + "butter", + "bulgur", + "fresh basil", + "eggplant", + "salt", + "pepper", + "ground nutmeg", + "all-purpose flour" + ] + }, + { + "id": 15677, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "bacon" + ] + }, + { + "id": 33724, + "cuisine": "french", + "ingredients": [ + "roasted hazelnuts", + "dijon mustard", + "mixed greens", + "avocado", + "dried basil", + "salt", + "pepper", + "balsamic vinegar", + "sliced beets", + "crusty bread", + "olive oil", + "goat cheese" + ] + }, + { + "id": 2026, + "cuisine": "southern_us", + "ingredients": [ + "water", + "turnips", + "ham hock", + "collard greens" + ] + }, + { + "id": 34184, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "vodka", + "orange", + "steamed white rice", + "baking powder", + "juice", + "dried orange peel", + "store bought low sodium chicken stock", + "peanuts", + "flour", + "scallions", + "Chinese rice vinegar", + "sugar", + "kosher salt", + "fresh ginger", + "egg whites", + "broccoli", + "corn starch", + "boneless chicken skinless thigh", + "minced garlic", + "baking soda", + "Shaoxing wine", + "oil" + ] + }, + { + "id": 20912, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "bacon", + "red chile sauce", + "pink beans", + "brown sugar", + "dry mustard", + "minced garlic", + "onions" + ] + }, + { + "id": 48512, + "cuisine": "british", + "ingredients": [ + "vegetable oil", + "all-purpose flour", + "orange roughy", + "water", + "malt vinegar", + "russet potatoes" + ] + }, + { + "id": 41718, + "cuisine": "korean", + "ingredients": [ + "coconut aminos", + "scallions", + "organic chicken broth", + "kosher salt", + "coconut vinegar", + "chopped cilantro fresh", + "fish sauce", + "beef rib short", + "garlic cloves", + "ginger", + "freshly ground pepper", + "pears" + ] + }, + { + "id": 45855, + "cuisine": "spanish", + "ingredients": [ + "minced garlic", + "shrimp", + "extra-virgin olive oil", + "sea salt", + "medium dry sherry", + "fresh parsley" + ] + }, + { + "id": 8278, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "andouille sausage", + "bread", + "cream cheese", + "Velveeta" + ] + }, + { + "id": 45449, + "cuisine": "southern_us", + "ingredients": [ + "dried cranberries", + "black pepper", + "rolls", + "fresh rosemary", + "orange zest" + ] + }, + { + "id": 5876, + "cuisine": "greek", + "ingredients": [ + "pepper", + "fresh parsley", + "fresh oregano", + "fresh lemon juice", + "orzo" + ] + }, + { + "id": 7384, + "cuisine": "italian", + "ingredients": [ + "catfish fillets", + "dijon mustard", + "garlic", + "olive oil", + "Italian parsley leaves", + "lemon juice", + "capers", + "small new potatoes", + "salt", + "ground black pepper", + "anchovy paste" + ] + }, + { + "id": 33239, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "cayenne pepper", + "kosher salt", + "onion powder", + "oregano", + "chili powder", + "smoked paprika", + "garlic powder", + "red pepper flakes", + "ground cumin" + ] + }, + { + "id": 47320, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "salt", + "milk", + "oil", + "water", + "lemon rind", + "dark chocolate", + "flour" + ] + }, + { + "id": 6566, + "cuisine": "french", + "ingredients": [ + "water", + "salt", + "green olives", + "bay leaves", + "thyme sprigs", + "tomatoes", + "olive oil", + "garlic cloves", + "pepper", + "baking potatoes", + "onions" + ] + }, + { + "id": 6601, + "cuisine": "mexican", + "ingredients": [ + "water", + "paprika", + "tomato sauce", + "minced onion", + "garlic salt", + "white vinegar", + "garlic powder", + "cayenne pepper", + "sugar", + "chili powder", + "cumin" + ] + }, + { + "id": 26902, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "carrots", + "rice noodles", + "toasted sesame seeds", + "spring roll wrappers", + "oil", + "green onions", + "cucumber" + ] + }, + { + "id": 6074, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "butter", + "heavy whipping cream", + "rosemary sprigs", + "french bread", + "dry bread crumbs", + "fresh rosemary", + "grated parmesan cheese", + "salt", + "fresh parsley", + "oysters", + "shallots", + "ground white pepper" + ] + }, + { + "id": 14, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "balsamic vinegar", + "toasted pine nuts", + "kosher salt", + "golden raisins", + "part-skim ricotta cheese", + "grated parmesan cheese", + "baby spinach", + "fresh basil leaves", + "pepper", + "fusilli", + "scallions" + ] + }, + { + "id": 35592, + "cuisine": "irish", + "ingredients": [ + "butter", + "water", + "fresh parsley leaves", + "yukon gold potatoes", + "carrots", + "parsley sprigs", + "salt" + ] + }, + { + "id": 36982, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "water", + "purple onion", + "cucumber", + "tomato paste", + "kosher salt", + "clove garlic, fine chop", + "orange juice", + "black pepper", + "eggplant", + "tzatziki", + "ground cumin", + "pita bread", + "olive oil", + "boneless pork loin", + "chopped fresh mint" + ] + }, + { + "id": 49458, + "cuisine": "filipino", + "ingredients": [ + "green cabbage", + "green onions", + "garlic", + "garlic powder", + "lumpia wrappers", + "chopped onion", + "soy sauce", + "vegetable oil", + "salt", + "ground black pepper", + "ground pork", + "carrots" + ] + }, + { + "id": 22687, + "cuisine": "vietnamese", + "ingredients": [ + "nuoc cham", + "medium shrimp", + "rice vermicelli", + "hass avocado", + "carrots", + "rice paper", + "watercress", + "red bell pepper" + ] + }, + { + "id": 38705, + "cuisine": "southern_us", + "ingredients": [ + "prepared mustard", + "elbow macaroni", + "evaporated milk", + "worcestershire sauce", + "butter", + "extra sharp cheddar cheese", + "large eggs", + "cayenne pepper" + ] + }, + { + "id": 11890, + "cuisine": "chinese", + "ingredients": [ + "instant rice", + "green onions", + "33% less sodium smoked fully cooked ham", + "large egg whites", + "stir fry sauce", + "white pepper", + "vegetable oil", + "large eggs", + "beansprouts" + ] + }, + { + "id": 3139, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "flat leaf parsley", + "italian sausage", + "chopped onion", + "grated parmesan cheese", + "low salt chicken broth", + "white rice" + ] + }, + { + "id": 6422, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "salt", + "whole milk", + "large eggs", + "all-purpose flour", + "water", + "grating cheese" + ] + }, + { + "id": 8470, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "pecorino romano cheese", + "fresh oregano", + "fresh basil", + "dry white wine", + "pappardelle", + "onions", + "mushrooms", + "large garlic cloves", + "sausages", + "crushed tomatoes", + "butter", + "diced tomatoes" + ] + }, + { + "id": 17022, + "cuisine": "spanish", + "ingredients": [ + "anise seed", + "extra-virgin olive oil", + "orange zest", + "sesame seeds", + "all-purpose flour", + "instant yeast", + "cane sugar", + "water", + "salt" + ] + }, + { + "id": 20102, + "cuisine": "mexican", + "ingredients": [ + "pitas", + "tomatillos", + "cumin seed", + "avocado", + "chips", + "salt", + "dried oregano", + "kosher salt", + "cooking spray", + "chopped onion", + "jalapeno chilies", + "non-fat sour cream", + "chopped cilantro fresh" + ] + }, + { + "id": 19406, + "cuisine": "italian", + "ingredients": [ + "parsley", + "linguine", + "parmesan cheese", + "basil", + "ground oregano", + "clams", + "clam juice", + "garlic", + "olive oil", + "butter", + "crushed red pepper" + ] + }, + { + "id": 39274, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "vegetable oil", + "Thai fish sauce", + "thai green curry paste", + "lime", + "sweet corn", + "coconut milk", + "lime juice", + "dried rice noodles", + "beansprouts", + "raw tiger prawn", + "water chestnuts", + "pak choi", + "toasted sesame oil" + ] + }, + { + "id": 27716, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "fat", + "poblano" + ] + }, + { + "id": 4528, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "shredded extra sharp cheddar cheese", + "shredded Monterey Jack cheese", + "white onion", + "corn tortillas", + "gravy" + ] + }, + { + "id": 2988, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "bay leaves", + "ancho powder", + "fresh thyme", + "coarse sea salt", + "garlic cloves", + "sugar", + "baking powder", + "cayenne pepper", + "fresh sage", + "flour", + "buttermilk", + "chicken thighs" + ] + }, + { + "id": 11161, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "water", + "rice flour", + "asafoetida", + "salt", + "tumeric", + "green chilies", + "curry leaves", + "cayenne", + "onions" + ] + }, + { + "id": 26283, + "cuisine": "spanish", + "ingredients": [ + "tomato juice", + "pimentos", + "croutons", + "olive oil", + "chopped fresh chives", + "salt", + "plum tomatoes", + "green bell pepper", + "hot pepper sauce", + "garlic", + "onions", + "ground black pepper", + "red wine vinegar", + "cucumber" + ] + }, + { + "id": 37614, + "cuisine": "british", + "ingredients": [ + "bay leaves", + "sunflower oil", + "frozen peas", + "smoked haddock fillet", + "double cream", + "fresh parsley", + "medium curry powder", + "butter", + "free range egg", + "basmati rice", + "ground black pepper", + "lemon", + "onions" + ] + }, + { + "id": 13846, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "salt", + "soy sauce", + "shichimi togarashi", + "fresh udon", + "spring onions", + "dashi", + "ginger" + ] + }, + { + "id": 44417, + "cuisine": "italian", + "ingredients": [ + "sugar", + "flour", + "vanilla extract", + "dried fig", + "slivered almonds", + "dried apricot", + "lemon", + "lemon juice", + "powdered sugar", + "large eggs", + "butter", + "corn syrup", + "milk", + "baking powder", + "salt" + ] + }, + { + "id": 32250, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "finely chopped onion", + "cilantro leaves", + "lemon juice", + "garam masala", + "flour", + "green chilies", + "ground cumin", + "water", + "potatoes", + "all-purpose flour", + "ground turmeric", + "coriander powder", + "salt", + "oil" + ] + }, + { + "id": 16358, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "sour cream", + "fresh cilantro", + "taco seasoning", + "ground beef", + "water", + "salt", + "corn tortillas", + "colby jack cheese", + "enchilada sauce", + "chunky salsa" + ] + }, + { + "id": 47566, + "cuisine": "italian", + "ingredients": [ + "carnation", + "ground black pepper", + "sun-dried tomatoes", + "evaporated low-fat 2% milk", + "dried basil", + "cheese", + "garlic powder", + "penne pasta" + ] + }, + { + "id": 31977, + "cuisine": "japanese", + "ingredients": [ + "beef", + "rice", + "sugar", + "ginger", + "boiling water", + "soy sauce", + "bonito", + "sake", + "mirin", + "onions" + ] + }, + { + "id": 45611, + "cuisine": "italian", + "ingredients": [ + "black truffles", + "dry white wine", + "vegetable broth", + "grated parmesan cheese", + "white truffle oil", + "fresh parsley", + "arborio rice", + "leeks", + "butter", + "onions", + "shiitake", + "fresh thyme leaves", + "whipping cream" + ] + }, + { + "id": 41922, + "cuisine": "cajun_creole", + "ingredients": [ + "red kidney beans", + "scallions", + "fresh parsley", + "cooked brown rice", + "red miso", + "green bell pepper", + "garlic cloves", + "onions", + "bay leaves", + "thyme" + ] + }, + { + "id": 29598, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "peanuts", + "green pumpkin seeds", + "onions", + "kosher salt", + "cilantro", + "ancho chile pepper", + "plum tomatoes", + "ground cloves", + "vegetable oil", + "dried guajillo chiles", + "boiling water", + "ground cinnamon", + "sesame seeds", + "garlic cloves", + "corn tortillas" + ] + }, + { + "id": 12954, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "corn starch", + "chicken broth", + "unsalted butter", + "apple cider vinegar", + "light brown sugar", + "sesame seeds", + "chicken breasts", + "eggs", + "wing sauce", + "vegetable oil" + ] + }, + { + "id": 36770, + "cuisine": "french", + "ingredients": [ + "swanson beef broth", + "vegetable oil", + "dry white wine", + "onions", + "sugar", + "shredded swiss cheese", + "french bread", + "all-purpose flour" + ] + }, + { + "id": 20476, + "cuisine": "japanese", + "ingredients": [ + "salmon fillets", + "cracked black pepper", + "brown sugar", + "grapeseed oil", + "rice vinegar", + "sake", + "sea salt", + "soy sauce", + "ginger" + ] + }, + { + "id": 47904, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "poblano chiles", + "mango", + "papaya", + "salt", + "chopped cilantro fresh", + "pineapple", + "fresh lime juice", + "pasilla", + "purple onion", + "chipotles in adobo" + ] + }, + { + "id": 36363, + "cuisine": "italian", + "ingredients": [ + "juniper berries", + "extra-virgin olive oil", + "lentils", + "lamb shanks", + "dry red wine", + "diced celery", + "chopped fresh mint", + "chopped fresh thyme", + "purple onion", + "carrots", + "chicken stock", + "butter", + "all-purpose flour", + "bay leaf" + ] + }, + { + "id": 14016, + "cuisine": "french", + "ingredients": [ + "olive oil", + "red wine", + "garlic cloves", + "white onion", + "flour", + "fresh mushrooms", + "bay leaf", + "tomato paste", + "ground black pepper", + "salt", + "lardons", + "dried thyme", + "beef stock", + "cognac", + "chicken" + ] + }, + { + "id": 10857, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "all-purpose flour", + "fresh parsley", + "chicken broth", + "butter", + "chopped parsley", + "parmesan cheese", + "ham", + "grits", + "white pepper", + "worcestershire sauce", + "cooked shrimp" + ] + }, + { + "id": 7344, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "eggs", + "grating cheese", + "flour tortillas", + "salsa verde", + "salt" + ] + }, + { + "id": 23695, + "cuisine": "irish", + "ingredients": [ + "baby carrots", + "cabbage", + "seasoning", + "small red potato", + "beef brisket", + "onions", + "clove", + "garlic cloves" + ] + }, + { + "id": 18547, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "unsalted butter", + "buttermilk", + "yellow onion", + "bay leaf", + "olive oil", + "low sodium chicken broth", + "salt", + "flat leaf parsley", + "dried thyme", + "large eggs", + "garlic", + "carrots", + "frozen peas", + "boneless chicken skinless thigh", + "ground black pepper", + "baking powder", + "all-purpose flour", + "celery" + ] + }, + { + "id": 3727, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "pepper", + "baking powder", + "diced tomatoes", + "beef broth", + "cumin", + "tomato sauce", + "milk", + "butter", + "salt", + "celery", + "eggs", + "water", + "chili powder", + "garlic", + "yellow onion", + "red kidney beans", + "sugar", + "honey", + "worcestershire sauce", + "all-purpose flour", + "ground beef" + ] + }, + { + "id": 9362, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "dried basil", + "linguine", + "dried parsley", + "sugar", + "water", + "grated parmesan cheese", + "garlic cloves", + "vegetable oil cooking spray", + "pepper", + "large eggs", + "salt", + "dried oregano", + "extra lean ground beef", + "crushed tomatoes", + "red wine", + "onions" + ] + }, + { + "id": 6564, + "cuisine": "indian", + "ingredients": [ + "teas", + "whole chicken", + "white vinegar", + "salt", + "lemon", + "onions", + "yoghurt", + "green chilies" + ] + }, + { + "id": 15145, + "cuisine": "southern_us", + "ingredients": [ + "bell pepper", + "garlic cloves", + "onions", + "dried thyme", + "salt", + "celery", + "black-eyed peas", + "rice", + "bay leaf", + "pepper", + "butter", + "smoked paprika" + ] + }, + { + "id": 39249, + "cuisine": "thai", + "ingredients": [ + "ginger", + "squash", + "fresh cilantro", + "red curry paste", + "onions", + "roasted red peppers", + "garlic cloves", + "butter", + "coconut milk" + ] + }, + { + "id": 35133, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "balsamic vinegar", + "dried chile", + "tomatoes", + "ground black pepper", + "extra-virgin olive oil", + "water", + "red wine vinegar", + "onions", + "collard greens", + "Spanish smoked paprika", + "garlic" + ] + }, + { + "id": 47337, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "garlic", + "bisquick", + "celery ribs", + "boneless skinless chicken breasts", + "chopped onion", + "flour", + "chicken stock cubes", + "frozen peas", + "chicken broth", + "butter", + "carrots" + ] + }, + { + "id": 37485, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "seasoned bread crumbs", + "vegetable oil", + "garlic", + "saffron threads", + "fresh spinach", + "pepper", + "sea salt", + "onions", + "eggs", + "mozzarella cheese", + "butter", + "all-purpose flour", + "arborio rice", + "white wine", + "grated parmesan cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 38445, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "honey", + "salt", + "boneless chicken skinless thigh", + "mirin", + "flavored oil", + "sake", + "fresh ginger", + "scallions", + "pepper", + "black sesame seeds" + ] + }, + { + "id": 4438, + "cuisine": "filipino", + "ingredients": [ + "unsalted butter", + "coconut flakes", + "glutinous rice flour", + "eggs", + "baking powder", + "brown sugar", + "coconut milk" + ] + }, + { + "id": 18184, + "cuisine": "southern_us", + "ingredients": [ + "paprika", + "eggs", + "cornmeal", + "plain flour", + "salt", + "green tomatoes", + "canola oil" + ] + }, + { + "id": 12361, + "cuisine": "japanese", + "ingredients": [ + "salt", + "chopped fresh mint", + "vegetable oil", + "scallions", + "soy sauce", + "soba noodles", + "sugar", + "rice vinegar" + ] + }, + { + "id": 8728, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "vegetable oil", + "chicken thighs", + "sugar", + "red pepper flakes", + "gluten free soy sauce", + "green onions", + "rice vinegar", + "rice wine", + "corn starch" + ] + }, + { + "id": 6729, + "cuisine": "greek", + "ingredients": [ + "green onions", + "organic milk", + "greek yogurt", + "butter", + "potatoes" + ] + }, + { + "id": 40463, + "cuisine": "italian", + "ingredients": [ + "baby arugula", + "spaghetti", + "olive oil", + "shredded parmesan cheese", + "black pepper", + "salt", + "sun-dried tomatoes", + "walnuts" + ] + }, + { + "id": 11594, + "cuisine": "greek", + "ingredients": [ + "purple onion", + "green bell pepper", + "feta cheese crumbles", + "tomatoes", + "lemon juice", + "olive oil", + "cucumber" + ] + }, + { + "id": 10595, + "cuisine": "indian", + "ingredients": [ + "fresh basil", + "water", + "shallots", + "garlic cloves", + "serrano chile", + "baby bok choy", + "broccoli florets", + "dark sesame oil", + "chopped fresh mint", + "ground cumin", + "sugar", + "lower sodium soy sauce", + "light coconut milk", + "fresh lime juice", + "long grain white rice", + "kaffir lime leaves", + "kosher salt", + "peeled fresh ginger", + "ground coriander", + "chopped cilantro fresh" + ] + }, + { + "id": 42920, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "ground black pepper", + "cilantro", + "ground cumin", + "black beans", + "cooked chicken", + "onions", + "green chile", + "roasted red peppers", + "salt", + "chicken stock", + "minced garlic", + "Mexican oregano", + "chopped cilantro fresh" + ] + }, + { + "id": 8264, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "mascarpone", + "heavy whipping cream", + "water", + "strawberries", + "blackberries", + "ladyfingers", + "lime peel", + "fresh raspberries", + "sugar", + "fresh blueberries", + "fresh lime juice" + ] + }, + { + "id": 23654, + "cuisine": "japanese", + "ingredients": [ + "gari", + "white sesame seeds", + "sesame oil", + "sliced green onions", + "crisps", + "wasabi powder", + "water", + "king salmon" + ] + }, + { + "id": 16693, + "cuisine": "southern_us", + "ingredients": [ + "cayenne", + "buttermilk", + "chicken wings", + "vegetable shortening", + "black peppercorns", + "coarse salt", + "onions", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 1693, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "salt", + "white sugar", + "white vinegar", + "bay leaves", + "coconut milk", + "water", + "chicken leg quarters", + "black peppercorns", + "garlic", + "onions" + ] + }, + { + "id": 41726, + "cuisine": "french", + "ingredients": [ + "black pepper", + "shallots", + "tarragon", + "unsalted butter", + "white wine vinegar", + "large egg yolks", + "fresh tarragon", + "cold water", + "dry white wine", + "salt" + ] + }, + { + "id": 28389, + "cuisine": "japanese", + "ingredients": [ + "miso", + "cod fillets", + "mirin" + ] + }, + { + "id": 4021, + "cuisine": "russian", + "ingredients": [ + "cold water", + "sugar", + "flour", + "salt", + "eggs", + "finely chopped onion", + "garlic", + "fresh parsley", + "chopmeat", + "pepper", + "egg yolks", + "farmer cheese", + "mashed potatoes", + "finely chopped fresh parsley", + "corn oil", + "scallions" + ] + }, + { + "id": 15333, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "anchovy fillets", + "large eggs", + "purple onion", + "capers", + "extra-virgin olive oil", + "canned tuna", + "vine ripened tomatoes", + "salt" + ] + }, + { + "id": 2929, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "cayenne pepper", + "ground ginger", + "poppy seeds", + "toasted sesame seeds", + "tangerine", + "paprika", + "szechwan peppercorns", + "nori sheets" + ] + }, + { + "id": 31234, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "juniper berries", + "beef", + "parsley", + "all-purpose flour", + "warm water", + "kosher salt", + "bay leaves", + "dry red wine", + "carrots", + "tomato paste", + "dried porcini mushrooms", + "ground black pepper", + "arrowroot", + "chopped celery", + "plum tomatoes", + "fresh rosemary", + "white wine", + "fresh thyme", + "butter", + "chopped onion" + ] + }, + { + "id": 38466, + "cuisine": "indian", + "ingredients": [ + "flour", + "cumin seed", + "wheat flour", + "curry leaves", + "cilantro leaves", + "rice flour", + "onions", + "salt", + "oil", + "sooji", + "water", + "green chilies", + "mustard seeds" + ] + }, + { + "id": 1737, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "monkfish fillets", + "dry white wine", + "garlic cloves", + "saffron", + "mussels", + "peeled tomatoes", + "potatoes", + "fish stock", + "shrimp", + "black pepper", + "sea scallops", + "butter", + "carrots", + "diced onions", + "olive oil", + "leeks", + "snapper fillets", + "celery" + ] + }, + { + "id": 19786, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "hearts of romaine", + "anchovy fillets", + "white wine vinegar", + "fresh lemon juice", + "parmigiano reggiano cheese", + "garlic cloves" + ] + }, + { + "id": 29286, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "cheese", + "olive oil", + "baking potatoes", + "mexican chorizo", + "fresh cilantro", + "vegetable oil", + "scallions", + "avocado", + "flour tortillas", + "salsa" + ] + }, + { + "id": 7081, + "cuisine": "italian", + "ingredients": [ + "hazelnuts", + "whipped cream", + "Frangelico", + "ladyfingers", + "semisweet chocolate", + "salt", + "large egg yolks", + "vanilla extract", + "sugar", + "half & half", + "corn starch" + ] + }, + { + "id": 21947, + "cuisine": "russian", + "ingredients": [ + "eggs", + "vegetable oil", + "cabbage", + "potatoes", + "salt", + "ground black pepper", + "butter", + "flour", + "onions" + ] + }, + { + "id": 26730, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "corn starch", + "garlic powder", + "coarse salt", + "ground cumin", + "black pepper", + "onion powder", + "smoked paprika", + "Mexican oregano", + "cayenne pepper" + ] + }, + { + "id": 11131, + "cuisine": "mexican", + "ingredients": [ + "serrano chilies", + "long-grain rice", + "ground black pepper", + "water", + "chopped cilantro fresh", + "knorr chicken flavor bouillon" + ] + }, + { + "id": 16398, + "cuisine": "italian", + "ingredients": [ + "fresh parsley", + "marinara sauce", + "crushed red pepper", + "mussels" + ] + }, + { + "id": 35122, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "field peas", + "bacon slices", + "water", + "onions", + "fresh spinach", + "salt" + ] + }, + { + "id": 39205, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "sea salt", + "active dry yeast", + "egg yolks", + "cake yeast", + "sugar", + "granulated sugar", + "all-purpose flour", + "water", + "large eggs", + "orange flower water" + ] + }, + { + "id": 18614, + "cuisine": "southern_us", + "ingredients": [ + "cream style corn", + "corn kernel whole", + "sugar", + "salt", + "eggs", + "butter", + "milk", + "all-purpose flour" + ] + }, + { + "id": 1716, + "cuisine": "chinese", + "ingredients": [ + "coconut oil", + "fresh coriander", + "hoisin sauce", + "coconut flour", + "warm water", + "orange", + "onion powder", + "chinese five-spice powder", + "duck breasts", + "water", + "green onions", + "salt", + "eggs", + "tapioca flour", + "fresh ginger", + "sesame oil", + "garlic cloves" + ] + }, + { + "id": 6815, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "zucchini", + "garlic", + "tomato sauce", + "part-skim mozzarella cheese", + "red wine vinegar", + "salt", + "vegetable oil cooking spray", + "eggplant", + "grated parmesan cheese", + "part-skim ricotta cheese", + "tomatoes", + "pepper", + "lasagna noodles", + "red pepper", + "fresh oregano" + ] + }, + { + "id": 7137, + "cuisine": "southern_us", + "ingredients": [ + "ham steak", + "milk", + "all-purpose flour", + "double-acting baking powder", + "yellow corn meal", + "baby lima beans", + "unsalted butter", + "garlic cloves", + "cheddar cheese", + "dried thyme", + "frozen corn", + "onions", + "chicken broth", + "water", + "salt", + "carrots" + ] + }, + { + "id": 8556, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "extra-virgin olive oil", + "fresh lemon juice", + "black pepper", + "shallots", + "all-purpose flour", + "marsala wine", + "mushrooms", + "salt", + "boneless skinless chicken breast halves", + "reduced sodium chicken broth", + "heavy cream", + "chopped fresh sage" + ] + }, + { + "id": 20074, + "cuisine": "french", + "ingredients": [ + "yellow squash", + "vinaigrette", + "kosher salt", + "cracked black pepper", + "romaine lettuce", + "zucchini", + "plum tomatoes", + "eggplant", + "fillets" + ] + }, + { + "id": 11707, + "cuisine": "french", + "ingredients": [ + "shortening", + "all-purpose flour", + "orange zest", + "vanilla extract", + "confectioners sugar", + "cream", + "hot water", + "eggs", + "salt", + "white sugar" + ] + }, + { + "id": 32799, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "fresh oregano", + "butter", + "large shrimp", + "ground black pepper", + "garlic cloves", + "fresh rosemary", + "salt" + ] + }, + { + "id": 35497, + "cuisine": "japanese", + "ingredients": [ + "green cabbage", + "garlic", + "corn starch", + "soy sauce", + "pineapple juice", + "brown sugar", + "rice vinegar", + "fresh ginger", + "Yakisoba noodles" + ] + }, + { + "id": 47125, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "red chili peppers", + "fresh parsley", + "garlic", + "brandy", + "large shrimp" + ] + }, + { + "id": 34256, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "lemon wedge", + "creole seasoning", + "grits", + "lemon zest", + "salt", + "garlic cloves", + "olive oil", + "gouda", + "freshly ground pepper", + "light butter", + "green onions", + "hot chili sauce", + "shrimp" + ] + }, + { + "id": 30638, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "bay leaf", + "water", + "salt", + "red lentils", + "light coconut milk", + "olive oil", + "chopped onion" + ] + }, + { + "id": 36524, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "chili powder", + "garlic", + "chicken", + "hot pepper sauce", + "diced tomatoes", + "ground cayenne pepper", + "green bell pepper", + "worcestershire sauce", + "smoked sausage", + "bay leaves", + "white rice", + "onions" + ] + }, + { + "id": 47622, + "cuisine": "chinese", + "ingredients": [ + "tofu", + "honey", + "salt", + "soy sauce", + "red food coloring", + "oyster sauce", + "pork", + "hoisin sauce", + "chinese five-spice powder", + "white pepper", + "cooking wine" + ] + }, + { + "id": 37685, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "large eggs", + "white cornmeal", + "butter", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 30808, + "cuisine": "indian", + "ingredients": [ + "granulated sugar", + "ice", + "water", + "ground cardamom", + "fine salt", + "mango", + "lime juice", + "plain whole-milk yogurt" + ] + }, + { + "id": 48856, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "shallots", + "cayenne pepper", + "black beans", + "garlic", + "fresh lime juice", + "sugar", + "extra-virgin olive oil", + "red bell pepper", + "lime zest", + "corn kernels", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 1102, + "cuisine": "indian", + "ingredients": [ + "firmly packed brown sugar", + "cayenne", + "ground cardamom", + "fennel seeds", + "pepper", + "butter", + "chopped cilantro fresh", + "salmon fillets", + "lemon wedge", + "lemon juice", + "ground cinnamon", + "sweet onion", + "ground coriander" + ] + }, + { + "id": 29513, + "cuisine": "cajun_creole", + "ingredients": [ + "corn husks", + "salt", + "green bell pepper", + "green onions", + "onions", + "crawfish", + "butter", + "white sugar", + "tomatoes", + "ground black pepper", + "cayenne pepper" + ] + }, + { + "id": 20001, + "cuisine": "southern_us", + "ingredients": [ + "active dry yeast", + "sugar", + "all-purpose flour", + "shortening", + "salt", + "warm water" + ] + }, + { + "id": 22455, + "cuisine": "french", + "ingredients": [ + "fresh green bean", + "plum tomatoes", + "flank steak", + "purple onion", + "ranch dressing", + "Niçoise olives", + "small new potatoes", + "mixed greens" + ] + }, + { + "id": 24359, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "buttermilk", + "cube steaks", + "cream", + "large eggs", + "all-purpose flour", + "garlic powder", + "salt", + "pepper", + "frying oil", + "cayenne pepper" + ] + }, + { + "id": 28874, + "cuisine": "indian", + "ingredients": [ + "cayenne", + "garlic", + "onions", + "water", + "vegetable oil", + "cilantro leaves", + "tomato paste", + "lemon wedge", + "salt", + "ground cumin", + "curry powder", + "ginger", + "shrimp" + ] + }, + { + "id": 43593, + "cuisine": "mexican", + "ingredients": [ + "onion powder", + "garlic powder", + "cayenne pepper", + "paprika", + "chili powder", + "ground cumin" + ] + }, + { + "id": 37857, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "tomatillos", + "jalapeno chilies", + "salt", + "lime", + "garlic", + "cilantro stems", + "onions" + ] + }, + { + "id": 25093, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "diced tomatoes", + "rotini", + "chicken broth", + "cooked meatballs", + "garlic cloves", + "parmesan cheese", + "crushed red pepper", + "fresh parsley", + "fresh spinach", + "cannellini beans", + "veget soup mix" + ] + }, + { + "id": 15343, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "tomatoes", + "garlic cloves", + "table salt", + "fresh lime juice", + "avocado", + "sweet corn kernels", + "chopped cilantro fresh" + ] + }, + { + "id": 32473, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "green onions", + "dark sesame oil", + "low sodium soy sauce", + "cooking spray", + "dry mustard", + "kimchi", + "mirin", + "ground pork", + "corn starch", + "gyoza skins", + "peeled fresh ginger", + "rice vinegar", + "shiitake mushroom caps" + ] + }, + { + "id": 39164, + "cuisine": "southern_us", + "ingredients": [ + "water", + "grated parmesan cheese", + "salt", + "carrots", + "grape tomatoes", + "olive oil", + "Tabasco Pepper Sauce", + "ham", + "ground white pepper", + "white wine", + "unsalted butter", + "chopped celery", + "fresh lemon juice", + "grits", + "fresh lima beans", + "corn kernels", + "shallots", + "chopped onion", + "shrimp" + ] + }, + { + "id": 34176, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "napa cabbage", + "rice vinegar", + "soy sauce", + "green onions", + "ginger", + "dumplings", + "chinese rice wine", + "mirin", + "ground pork", + "garlic cloves", + "black pepper", + "sesame oil", + "dipping sauces" + ] + }, + { + "id": 35244, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "active dry yeast", + "vegetable oil", + "chopped onion", + "onions", + "tomato paste", + "warm water", + "olive oil", + "salt", + "garlic cloves", + "dried rosemary", + "fresh basil", + "pepper", + "parmesan cheese", + "all-purpose flour", + "red bell pepper", + "sugar", + "dried basil", + "diced tomatoes", + "shredded mozzarella cheese", + "dried oregano" + ] + }, + { + "id": 38811, + "cuisine": "korean", + "ingredients": [ + "pepper", + "sesame oil", + "rice vinegar", + "korean chile paste", + "low sodium soy sauce", + "egg whites", + "ginger", + "rice flour", + "serrano chile", + "granulated sugar", + "light corn syrup", + "garlic cloves", + "toasted sesame seeds", + "fish sauce", + "green onions", + "salt", + "ground turkey" + ] + }, + { + "id": 2640, + "cuisine": "mexican", + "ingredients": [ + "tostitos", + "salt", + "chopped cilantro fresh", + "tomatoes", + "garlic cloves", + "avocado", + "tortilla chips", + "pepper", + "lemon juice" + ] + }, + { + "id": 22218, + "cuisine": "moroccan", + "ingredients": [ + "preserved lemon", + "extra-virgin olive oil", + "harissa", + "salt", + "pepper", + "garlic", + "white vinegar", + "cilantro", + "carrots" + ] + }, + { + "id": 2291, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "green bell pepper", + "coriander powder", + "lemon", + "salt", + "green chilies", + "onions", + "tomato purée", + "cream", + "chili powder", + "kasuri methi", + "tomato ketchup", + "cinnamon sticks", + "ginger paste", + "clove", + "garlic paste", + "garam masala", + "vegetable oil", + "paneer", + "brown cardamom", + "red bell pepper", + "tomatoes", + "sugar", + "yoghurt", + "cornflour", + "cilantro leaves", + "cumin seed", + "olives" + ] + }, + { + "id": 21725, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "monterey jack", + "butter", + "onion tops", + "cornbread mix" + ] + }, + { + "id": 23404, + "cuisine": "indian", + "ingredients": [ + "chicken breasts", + "diced tomatoes", + "coconut cream", + "coriander", + "tumeric", + "butter", + "garlic", + "coconut milk", + "cumin", + "cinnamon", + "cilantro", + "ground coriander", + "cashew nuts", + "fresh ginger", + "red pepper flakes", + "salt", + "onions" + ] + }, + { + "id": 44696, + "cuisine": "japanese", + "ingredients": [ + "gyoza", + "carrots", + "sliced green onions", + "chicken broth", + "ginger", + "mung bean sprouts", + "ground black pepper", + "flat leaf parsley", + "soy sauce", + "extra-virgin olive oil", + "frozen peas" + ] + }, + { + "id": 42156, + "cuisine": "british", + "ingredients": [ + "kosher salt", + "all-purpose flour", + "milk", + "eggs", + "fat" + ] + }, + { + "id": 35151, + "cuisine": "indian", + "ingredients": [ + "sugar", + "ground coriander", + "ground ginger", + "paprika", + "ground cumin", + "ground cinnamon", + "cayenne pepper", + "saffron threads", + "ground black pepper", + "coarse kosher salt" + ] + }, + { + "id": 4359, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "ground coriander", + "anise seed", + "red pepper flakes", + "vegetable oil", + "chopped cilantro fresh", + "lime", + "garlic" + ] + }, + { + "id": 38560, + "cuisine": "french", + "ingredients": [ + "smoked salmon", + "shallots", + "asparagus", + "olive oil", + "soft fresh goat cheese", + "lemon peel" + ] + }, + { + "id": 34599, + "cuisine": "italian", + "ingredients": [ + "water", + "parmigiano reggiano cheese", + "roasted almonds", + "polenta", + "milk", + "gorgonzola dolce", + "unsalted butter" + ] + }, + { + "id": 32640, + "cuisine": "greek", + "ingredients": [ + "garlic", + "dill weed", + "pepper", + "lemon juice", + "plain yogurt", + "salt", + "extra-virgin olive oil", + "cucumber" + ] + }, + { + "id": 36240, + "cuisine": "southern_us", + "ingredients": [ + "watermelon", + "kosher salt", + "ice", + "sugar", + "lemon", + "water" + ] + }, + { + "id": 45931, + "cuisine": "spanish", + "ingredients": [ + "sliced almonds", + "raisins", + "garlic cloves", + "swiss chard", + "freshly ground pepper", + "kosher salt", + "dry sherry", + "fresh lemon juice", + "olive oil", + "grated lemon zest", + "fresno chiles" + ] + }, + { + "id": 8843, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "mirin", + "salt", + "carrots", + "minced ginger", + "Tabasco Pepper Sauce", + "scallions", + "ketchup", + "sesame oil", + "peanut oil", + "savoy cabbage", + "pork chops", + "worcestershire sauce", + "Chinese egg noodles" + ] + }, + { + "id": 48881, + "cuisine": "french", + "ingredients": [ + "milk", + "confectioners sugar", + "unsweetened chocolate", + "vanilla extract", + "butter" + ] + }, + { + "id": 12387, + "cuisine": "irish", + "ingredients": [ + "mozzarella cheese", + "sweet italian sausage", + "ground lamb", + "garlic", + "italian seasoning", + "parmigiano reggiano cheese", + "provolone cheese", + "tomato sauce", + "crushed red pepper", + "rigatoni" + ] + }, + { + "id": 10409, + "cuisine": "cajun_creole", + "ingredients": [ + "hot pepper sauce", + "margarine", + "celery", + "condensed cream of chicken soup", + "green onions", + "chopped onion", + "tomato paste", + "chopped green bell pepper", + "cayenne pepper", + "fresh parsley", + "minced garlic", + "salt", + "shrimp" + ] + }, + { + "id": 47751, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "fennel bulb", + "sea bass fillets", + "chopped onion", + "saffron threads", + "water", + "dry white wine", + "diced tomatoes", + "bay leaf", + "bottled clam juice", + "butternut squash", + "dry sherry", + "garlic cloves", + "clams", + "fronds", + "chopped fresh thyme", + "extra-virgin olive oil" + ] + }, + { + "id": 19762, + "cuisine": "russian", + "ingredients": [ + "cider vinegar", + "vegetable oil", + "salt", + "large eggs", + "pickled beets", + "onions", + "red cabbage", + "baking potatoes", + "dry bread crumbs", + "black pepper", + "chopped fresh chives", + "confit duck leg" + ] + }, + { + "id": 18114, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "fresh lime juice", + "tomatillos", + "chopped onion", + "jalapeno chilies", + "chopped cilantro fresh" + ] + }, + { + "id": 49479, + "cuisine": "moroccan", + "ingredients": [ + "mint leaves", + "sugar", + "boiling water", + "green tea" + ] + }, + { + "id": 1312, + "cuisine": "southern_us", + "ingredients": [ + "soy sauce", + "bone-in chicken", + "honey", + "ketchup", + "brown sugar", + "garlic powder" + ] + }, + { + "id": 18881, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "pepper", + "salt", + "romaine lettuce", + "extra-virgin olive oil", + "fresh basil", + "balsamic vinegar", + "olives", + "red chili peppers", + "purple onion" + ] + }, + { + "id": 27403, + "cuisine": "mexican", + "ingredients": [ + "tilapia fillets", + "chili powder", + "mango", + "promise buttery spread", + "corn tortillas", + "lime juice", + "garlic", + "jicama", + "chopped cilantro fresh" + ] + }, + { + "id": 44376, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "boiling potatoes", + "chopped onion", + "oil", + "coarse salt" + ] + }, + { + "id": 37155, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "fresh parsley", + "kosher salt", + "extra-virgin olive oil", + "parmesan cheese", + "uncooked rigatoni", + "heavy cream", + "plum tomatoes" + ] + }, + { + "id": 30588, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "extra-virgin olive oil", + "unsalted butter", + "garlic cloves", + "frozen chopped broccoli", + "orecchiette", + "pinenuts", + "scallions" + ] + }, + { + "id": 82, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "cinnamon", + "oil", + "red chili peppers", + "cilantro leaves", + "mustard seeds", + "garlic paste", + "salt", + "cardamom", + "clove", + "potatoes", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 37716, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "deli ham", + "unsalted butter", + "salt", + "sugar", + "buttermilk", + "self rising flour" + ] + }, + { + "id": 12839, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "grated parmesan cheese", + "salt", + "dried oregano", + "pepper", + "yellow squash", + "diced tomatoes", + "rotini", + "tomato sauce", + "dried thyme", + "mushrooms", + "red bell pepper", + "bulk italian sausag", + "zucchini", + "garlic", + "onions" + ] + }, + { + "id": 20242, + "cuisine": "mexican", + "ingredients": [ + "corn chips", + "sour cream", + "shredded cheddar cheese", + "shredded lettuce", + "fresh tomatoes", + "lean ground beef", + "taco seasoning mix", + "salsa" + ] + }, + { + "id": 23383, + "cuisine": "italian", + "ingredients": [ + "gyoza", + "grated parmesan cheese", + "salt", + "water", + "ground black pepper", + "chopped fresh thyme", + "garlic cloves", + "large egg whites", + "large eggs", + "butter", + "fresh rosemary", + "swiss chard", + "ricotta cheese", + "chopped fresh sage" + ] + }, + { + "id": 38529, + "cuisine": "southern_us", + "ingredients": [ + "water", + "buttermilk", + "all-purpose flour", + "ganache", + "butter", + "salt", + "sugar", + "large eggs", + "frosting", + "unsweetened cocoa powder", + "baking soda", + "vanilla extract", + "glaze" + ] + }, + { + "id": 19532, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "boneless skinless chicken breasts", + "mirin", + "shiitake", + "yellow bell pepper", + "sugar", + "green onions" + ] + }, + { + "id": 9727, + "cuisine": "chinese", + "ingredients": [ + "chicken legs", + "water", + "ginger", + "oyster sauce", + "soy sauce", + "Shaoxing wine", + "scallions", + "sugar", + "black fungus", + "salt", + "corn starch", + "white pepper", + "sesame oil", + "oil" + ] + }, + { + "id": 9132, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "salt", + "plain flour", + "potatoes", + "onions", + "large eggs", + "carrots", + "red chili peppers", + "meat" + ] + }, + { + "id": 17409, + "cuisine": "korean", + "ingredients": [ + "chile powder", + "sesame seeds", + "vegetable oil", + "garlic cloves", + "sugar", + "green onions", + "new york strip steaks", + "kimchi", + "soy sauce", + "sesame oil", + "Gochujang base", + "fleur de sel", + "sake", + "large eggs", + "white rice", + "asparagus spears" + ] + }, + { + "id": 4362, + "cuisine": "italian", + "ingredients": [ + "light cream", + "scallions", + "salt", + "sun-dried tomatoes", + "bow-tie pasta", + "ground black pepper", + "fresh parsley" + ] + }, + { + "id": 14156, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "peaches", + "all-purpose flour", + "large eggs", + "fresh lemon juice", + "nutmeg", + "butter", + "fresh mint" + ] + }, + { + "id": 49001, + "cuisine": "italian", + "ingredients": [ + "whole milk", + "mozzarella cheese", + "anchovy fillets", + "unsalted butter", + "crusty bread", + "extra-virgin olive oil" + ] + }, + { + "id": 30960, + "cuisine": "french", + "ingredients": [ + "parsley sprigs", + "veal knuckle", + "black peppercorns", + "carrots", + "onions", + "celery ribs", + "water", + "thyme sprigs", + "tomato paste", + "leeks", + "bay leaf" + ] + }, + { + "id": 45870, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "chopped cilantro fresh", + "part-skim mozzarella cheese", + "purple onion", + "green chile", + "non-fat sour cream", + "ground cumin", + "flour tortillas", + "salsa" + ] + }, + { + "id": 33979, + "cuisine": "thai", + "ingredients": [ + "radishes", + "garlic cloves", + "boneless sirloin steak", + "fish sauce", + "lettuce leaves", + "chopped fresh mint", + "chile paste with garlic", + "cooking spray", + "fresh lime juice", + "serrano chile", + "sugar", + "peeled fresh ginger", + "chopped cilantro fresh" + ] + }, + { + "id": 20958, + "cuisine": "french", + "ingredients": [ + "cremini mushrooms", + "green onions", + "crepes", + "flat leaf parsley", + "ground black pepper", + "chopped fresh thyme", + "salt", + "fresh chives", + "dry white wine", + "oyster mushrooms", + "shiitake mushroom caps", + "cooking spray", + "butter", + "cream cheese" + ] + }, + { + "id": 25314, + "cuisine": "french", + "ingredients": [ + "sugar", + "salt", + "confectioners sugar", + "vegetable oil", + "grated lemon zest", + "large eggs", + "all-purpose flour", + "vanilla extract", + "ricotta" + ] + }, + { + "id": 14055, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "rice wine", + "walnuts", + "red bell pepper", + "minced garlic", + "shiitake", + "sesame oil", + "organic sugar", + "gluten free soy sauce", + "chili pepper", + "olive oil", + "szechwan peppercorns", + "scallions", + "snow peas", + "water", + "boneless chicken breast", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 38814, + "cuisine": "italian", + "ingredients": [ + "red chili peppers", + "vegetable oil", + "onions", + "salt and ground black pepper", + "garlic", + "dried basil", + "diced tomatoes", + "italian seasoning", + "hot pepper sauce", + "rotini" + ] + }, + { + "id": 45811, + "cuisine": "italian", + "ingredients": [ + "all purpose unbleached flour", + "olive oil", + "large eggs", + "water" + ] + }, + { + "id": 11700, + "cuisine": "mexican", + "ingredients": [ + "salt", + "ground black pepper", + "onions", + "tomatoes", + "nopales", + "vegetable oil" + ] + }, + { + "id": 3516, + "cuisine": "italian", + "ingredients": [ + "cold water", + "salt", + "active dry yeast", + "cornmeal", + "extra-virgin olive oil", + "bread flour", + "warm water", + "biga" + ] + }, + { + "id": 28456, + "cuisine": "indian", + "ingredients": [ + "shallots", + "salt", + "mustard seeds", + "grated coconut", + "ginger", + "green chilies", + "coriander", + "pepper", + "garlic", + "oil", + "ground turmeric", + "curry leaves", + "chili powder", + "chickpeas", + "onions" + ] + }, + { + "id": 18490, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "coriander powder", + "french fried onions", + "ginger", + "rice", + "shrimp", + "basmati rice", + "lime juice", + "bay leaves", + "spices", + "salt", + "oil", + "onions", + "masala", + "water", + "mint leaves", + "marinade", + "garlic", + "green chilies", + "jeera", + "ground turmeric", + "tomatoes", + "garam masala", + "yoghurt", + "cilantro", + "cilantro leaves", + "rice flour", + "cashew nuts" + ] + }, + { + "id": 41740, + "cuisine": "mexican", + "ingredients": [ + "Boston lettuce", + "fresh cilantro", + "paprika", + "chopped onion", + "garlic cloves", + "fat free less sodium chicken broth", + "radishes", + "salt", + "ground coriander", + "dried oregano", + "water", + "raisins", + "beef broth", + "baked tortilla chips", + "ground cumin", + "black pepper", + "hominy", + "stewed tomatoes", + "pork roast", + "chipotles in adobo" + ] + }, + { + "id": 33975, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "chopped tomatoes", + "kalamata", + "fresh lime juice", + "fresh coriander", + "jalapeno chilies", + "scallions", + "scrod fillets", + "radishes", + "white wine vinegar", + "olive oil", + "vegetable oil", + "corn tortillas" + ] + }, + { + "id": 35745, + "cuisine": "italian", + "ingredients": [ + "pepper", + "balsamic vinegar", + "goat cheese", + "fresh basil", + "olive oil", + "purple onion", + "plum tomatoes", + "yellow squash", + "chopped fresh thyme", + "garlic cloves", + "penne", + "zucchini", + "salt" + ] + }, + { + "id": 15452, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "chili powder", + "oil", + "guacamole", + "large flour tortillas", + "cumin", + "Mexican cheese blend", + "onion powder", + "garlic salt", + "water", + "boneless skinless chicken breasts", + "salsa", + "chicken" + ] + }, + { + "id": 49654, + "cuisine": "greek", + "ingredients": [ + "finely chopped onion", + "olive oil", + "dill", + "feta cheese", + "frozen spinach", + "phyllo" + ] + }, + { + "id": 40694, + "cuisine": "cajun_creole", + "ingredients": [ + "salad", + "provolone cheese", + "peperoncini", + "hard salami", + "giardiniera", + "swiss cheese", + "ham", + "bread", + "mortadella" + ] + }, + { + "id": 42189, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "amaretto liqueur", + "amaretti", + "unsalted butter", + "sugar", + "apricots" + ] + }, + { + "id": 31447, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "amber rum", + "ice cubes", + "orange", + "clove", + "water", + "peeled fresh ginger", + "sorrel", + "lime" + ] + }, + { + "id": 5897, + "cuisine": "indian", + "ingredients": [ + "amchur", + "salt", + "mashed potatoes", + "finely chopped onion", + "coriander", + "garam masala", + "ghee", + "millet flour", + "chilli paste" + ] + }, + { + "id": 40891, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "salt", + "black pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 21660, + "cuisine": "french", + "ingredients": [ + "large eggs", + "salt", + "bittersweet chocolate", + "sugar", + "cake flour", + "confectioners sugar", + "baking powder", + "chestnut purée", + "ground cinnamon", + "vanilla extract", + "crème fraîche" + ] + }, + { + "id": 12682, + "cuisine": "russian", + "ingredients": [ + "sugar", + "milk", + "butter", + "all-purpose flour", + "brandy", + "large eggs", + "vanilla extract", + "blanched almonds", + "warm water", + "active dry yeast", + "raisins", + "grated lemon zest", + "powdered sugar", + "dried orange peel", + "golden raisins", + "salt" + ] + }, + { + "id": 46916, + "cuisine": "russian", + "ingredients": [ + "ground cloves", + "baking soda", + "cinnamon", + "nonfat vanilla yogurt", + "pitted date", + "dried apricot", + "salt", + "whole wheat pastry flour", + "ground nutmeg", + "raisins", + "eggs", + "honey", + "baking powder", + "chopped walnuts" + ] + }, + { + "id": 27110, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "watermelon", + "kosher salt", + "pickling spices", + "peeled fresh ginger", + "white vinegar", + "cider vinegar" + ] + }, + { + "id": 34749, + "cuisine": "italian", + "ingredients": [ + "pasta", + "dijon", + "salami", + "garlic", + "fresh lemon juice", + "plum tomatoes", + "fresh rosemary", + "olive oil", + "balsamic vinegar", + "salt", + "celery", + "pepper", + "sliced black olives", + "red wine vinegar", + "provolone cheese", + "fresh parsley", + "tomato paste", + "honey", + "vegetable oil", + "purple onion", + "red bell pepper" + ] + }, + { + "id": 46185, + "cuisine": "cajun_creole", + "ingredients": [ + "hot pepper sauce", + "garlic", + "sliced mushrooms", + "red beans", + "creole seasoning", + "quick cooking brown rice", + "sweet pepper", + "water", + "diced tomatoes", + "chopped onion" + ] + }, + { + "id": 9397, + "cuisine": "spanish", + "ingredients": [ + "water", + "fresh lime juice", + "boneless pork shoulder", + "ground black pepper", + "dried oregano", + "orange", + "onions", + "kosher salt", + "bay leaves", + "ground cumin" + ] + }, + { + "id": 17881, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "green chilies", + "kosher salt", + "green enchilada sauce", + "boneless chicken skinless thigh", + "flour tortillas", + "olive oil", + "shredded pepper jack cheese" + ] + }, + { + "id": 45226, + "cuisine": "french", + "ingredients": [ + "ladyfingers", + "confectioners sugar", + "heavy cream", + "rhubarb", + "fresh lemon juice", + "granulated sugar", + "kirsch" + ] + }, + { + "id": 9603, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "chili powder", + "shredded Monterey Jack cheese", + "cooking spray", + "corn tortillas", + "taco sauce", + "garlic cloves", + "sliced green onions", + "fat-free cottage cheese", + "extra sharp cheddar cheese" + ] + }, + { + "id": 20891, + "cuisine": "japanese", + "ingredients": [ + "milk", + "cornflour", + "lemon juice", + "egg yolks", + "salt", + "egg whites", + "cake flour", + "sugar", + "butter", + "cream cheese" + ] + }, + { + "id": 43558, + "cuisine": "french", + "ingredients": [ + "dried tarragon leaves", + "shallots", + "shiitake mushroom caps", + "sea scallops", + "salt", + "olive oil", + "reduced-fat sour cream", + "dijon mustard", + "champagne" + ] + }, + { + "id": 38440, + "cuisine": "mexican", + "ingredients": [ + "chopped green chilies", + "green onions", + "canola oil", + "black beans", + "low sodium chicken broth", + "garlic", + "lime zest", + "ground black pepper", + "boneless skinless chicken breasts", + "lime juice", + "Minute White Rice", + "salt" + ] + }, + { + "id": 43737, + "cuisine": "moroccan", + "ingredients": [ + "clove", + "fresh coriander", + "almonds", + "granulated sugar", + "red pepper flakes", + "cardamom pods", + "fresh parsley leaves", + "confectioners sugar", + "saffron threads", + "black peppercorns", + "coriander seeds", + "unsalted butter", + "cinnamon", + "ras el hanout", + "garlic cloves", + "low salt chicken broth", + "fennel seeds", + "sesame seeds", + "ground nutmeg", + "large eggs", + "anise", + "cuminseed", + "fresh lemon juice", + "onions", + "ground ginger", + "mace", + "ground black pepper", + "chicken parts", + "phyllo", + "allspice berries", + "hot water" + ] + }, + { + "id": 17222, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "chicken broth", + "green peas" + ] + }, + { + "id": 47967, + "cuisine": "italian", + "ingredients": [ + "fresh sage", + "pumpkin purée", + "salt", + "olive oil", + "heavy cream", + "pepper", + "butter", + "herbes de provence", + "fettucine", + "freshly grated parmesan", + "garlic" + ] + }, + { + "id": 20837, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "white sugar", + "pie crust", + "all-purpose flour", + "butter", + "semi-sweet chocolate morsels", + "eggs", + "chopped walnuts" + ] + }, + { + "id": 17778, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "garlic cloves", + "corn oil", + "watercress", + "kosher salt" + ] + }, + { + "id": 34912, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "large egg yolks", + "bosc pears", + "allspice", + "ground cinnamon", + "water", + "lemon zest", + "salt", + "ground cloves", + "ground nutmeg", + "butter", + "sugar", + "honey", + "cooking spray", + "lemon rind" + ] + }, + { + "id": 3000, + "cuisine": "italian", + "ingredients": [ + "polenta prepar", + "zucchini", + "carrots", + "olive oil", + "purple onion", + "garlic salt", + "yellow squash", + "grated parmesan cheese", + "red bell pepper", + "pasta sauce", + "ground black pepper", + "shredded mozzarella cheese" + ] + }, + { + "id": 22953, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "cook egg hard", + "ground black pepper", + "mayonaise", + "salt", + "saltines", + "green onions" + ] + }, + { + "id": 26009, + "cuisine": "mexican", + "ingredients": [ + "kale", + "whole wheat tortillas", + "garlic cloves", + "ground cumin", + "avocado", + "jalapeno chilies", + "cilantro", + "sour cream", + "olive oil", + "sea salt", + "feta cheese crumbles", + "canned black beans", + "chili powder", + "purple onion", + "fresh lime juice" + ] + }, + { + "id": 40176, + "cuisine": "italian", + "ingredients": [ + "shredded cheddar cheese", + "green peas", + "lasagna noodles", + "shredded mozzarella cheese", + "corn", + "cauliflower florets", + "pasta sauce", + "broccoli florets" + ] + }, + { + "id": 24152, + "cuisine": "russian", + "ingredients": [ + "cooking oil", + "celery", + "flour", + "black pepper", + "beef stock cubes", + "potatoes", + "onions" + ] + }, + { + "id": 30833, + "cuisine": "greek", + "ingredients": [ + "chicken bouillon", + "olive oil", + "fresh lemon juice", + "fresh leav spinach", + "salt", + "dried oregano", + "black pepper", + "feta cheese", + "boneless skinless chicken breast halves", + "tomatoes", + "water", + "all-purpose flour" + ] + }, + { + "id": 21261, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "catfish fillets", + "cornmeal", + "pepper" + ] + }, + { + "id": 25302, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "lettuce leaves", + "peanut oil", + "water chestnuts", + "green onions", + "corn starch", + "ground chicken", + "peeled fresh ginger", + "oyster sauce", + "Fuyu persimmons", + "fresh orange juice" + ] + }, + { + "id": 45380, + "cuisine": "indian", + "ingredients": [ + "active dry yeast", + "greek yogurt", + "eggs", + "flour", + "sugar", + "grapeseed oil", + "warm water", + "salt" + ] + }, + { + "id": 46745, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "fat free milk", + "all-purpose flour", + "ground cumin", + "fat free yogurt", + "boneless skinless chicken breasts", + "sour cream", + "fresh spinach", + "flour tortillas", + "green chilies", + "shredded reduced fat cheddar cheese", + "salt", + "sliced green onions" + ] + }, + { + "id": 16003, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "star anise", + "beansprouts", + "fish sauce", + "rice noodles", + "salt", + "coriander", + "spring onions", + "garlic", + "onions", + "sugar", + "ginger", + "cinnamon sticks", + "beef steak" + ] + }, + { + "id": 22541, + "cuisine": "italian", + "ingredients": [ + "pizza sauce", + "flour tortillas", + "low moisture mozzarella", + "grated parmesan cheese", + "extra-virgin olive oil", + "basil leaves" + ] + }, + { + "id": 45728, + "cuisine": "mexican", + "ingredients": [ + "large flour tortillas", + "olives", + "jalapeno chilies", + "cream cheese", + "green chile", + "salsa", + "green onions", + "taco seasoning" + ] + }, + { + "id": 47255, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime", + "salt", + "galangal", + "kaffir lime leaves", + "lemongrass", + "cilantro root", + "chopped cilantro", + "tofu", + "sugar", + "vegetable stock", + "bird chile", + "chiles", + "cherry tomatoes", + "tamarind paste" + ] + }, + { + "id": 26366, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "olive oil", + "salt", + "seasoned bread crumbs", + "grated parmesan cheese", + "white wine", + "eggplant", + "fresh parsley", + "pepper", + "garlic" + ] + }, + { + "id": 40562, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "chopped cilantro fresh", + "Old El Paso Enchilada Sauce", + "shredded lettuce", + "tomatoes", + "2% reduced-fat milk", + "cooked chicken breasts", + "steamer", + "red bell pepper" + ] + }, + { + "id": 28196, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "cooking oil", + "minced garlic", + "thai chile", + "ground chicken", + "shallots", + "lime", + "holy basil" + ] + }, + { + "id": 7695, + "cuisine": "thai", + "ingredients": [ + "lime", + "sliced carrots", + "garlic chili sauce", + "coconut sugar", + "extra firm tofu", + "tamari soy sauce", + "brown rice noodles", + "Sriracha", + "peanut sauce", + "fresh cilantro", + "brown rice", + "tamarind concentrate" + ] + }, + { + "id": 8770, + "cuisine": "southern_us", + "ingredients": [ + "jalapeno chilies", + "purple onion", + "peach nectar", + "chopped cilantro fresh", + "dried apricot", + "fresh lemon juice", + "peaches", + "balsamic vinegar" + ] + }, + { + "id": 38451, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "salt", + "onions", + "light cream", + "red bell pepper", + "water", + "elbow macaroni", + "pepper", + "butter", + "chopped parsley" + ] + }, + { + "id": 41208, + "cuisine": "filipino", + "ingredients": [ + "Knox unflavored gelatin", + "Nestle Table Cream", + "graham crackers", + "cream cheese", + "sweet cream butter", + "vanilla extract", + "mango", + "water", + "condensed milk" + ] + }, + { + "id": 3551, + "cuisine": "chinese", + "ingredients": [ + "hot red pepper flakes", + "fresh ginger", + "lean ground beef", + "rice", + "black pepper", + "green onions", + "salt", + "carrots", + "soy sauce", + "flour", + "rice vermicelli", + "garlic cloves", + "eggs", + "white onion", + "sesame oil", + "beef broth" + ] + }, + { + "id": 32425, + "cuisine": "vietnamese", + "ingredients": [ + "asian eggplants", + "red chili peppers", + "salted fish", + "garlic", + "fish fillets", + "water", + "spring onions", + "medium shrimp", + "black peppercorns", + "pork belly", + "bawang goreng", + "oil", + "sugar", + "lemongrass", + "shallots" + ] + }, + { + "id": 3341, + "cuisine": "mexican", + "ingredients": [ + "smoked paprika", + "avocado oil", + "corn tortillas", + "salt" + ] + }, + { + "id": 48022, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "coarse salt", + "tamarind", + "ancho chile pepper", + "clove", + "corn oil", + "pork baby back ribs", + "Mexican oregano" + ] + }, + { + "id": 11906, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "heavy cream", + "whole milk", + "granulated sugar", + "amaretto" + ] + }, + { + "id": 25370, + "cuisine": "british", + "ingredients": [ + "sugar", + "semisweet chocolate", + "butter", + "eggs", + "milk", + "rum", + "cream", + "flour", + "powdered sugar", + "baking soda", + "baking powder" + ] + }, + { + "id": 49452, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "cooking spray", + "ginger", + "ground turkey", + "fish sauce", + "hot pepper", + "garlic cloves", + "chili flakes", + "green onions", + "red curry paste", + "tomato paste", + "zucchini", + "basil", + "coconut milk" + ] + }, + { + "id": 19407, + "cuisine": "jamaican", + "ingredients": [ + "eggs", + "seasoned bread crumbs", + "green onions", + "pastry", + "water", + "salt", + "tomato sauce", + "pepper", + "lean ground beef", + "soy sauce", + "vinegar", + "Maggi" + ] + }, + { + "id": 2663, + "cuisine": "indian", + "ingredients": [ + "water", + "vegetable oil", + "onions", + "fresh ginger root", + "garlic", + "garbanzo beans", + "spices", + "tomatoes", + "garam masala", + "salt" + ] + }, + { + "id": 41530, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "purple onion", + "tequila", + "chipotle chile", + "flour tortillas", + "salsa", + "orange bell pepper", + "salt", + "lime juice", + "chicken breasts", + "orange juice" + ] + }, + { + "id": 32945, + "cuisine": "chinese", + "ingredients": [ + "pork", + "egg whites", + "dark meat", + "bamboo shoots", + "spring roll wrappers", + "sweet red bean paste", + "green onions", + "cooking sherry", + "powdered sugar", + "egg roll wrappers", + "vegetable oil", + "mung bean sprouts", + "soy sauce", + "mushrooms", + "corn starch", + "cabbage" + ] + }, + { + "id": 4985, + "cuisine": "french", + "ingredients": [ + "white chocolate", + "whipping cream", + "cold water", + "almonds", + "walnuts", + "honey", + "vanilla extract", + "unflavored gelatin", + "large eggs", + "gran marnier" + ] + }, + { + "id": 6008, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "sour cream", + "whole wheat tortillas", + "red beans", + "creole seasoning" + ] + }, + { + "id": 8709, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "chopped garlic", + "soy sauce", + "ginger", + "vegetable oil", + "honey", + "baby back ribs" + ] + }, + { + "id": 1835, + "cuisine": "mexican", + "ingredients": [ + "pepper jack", + "enchilada sauce", + "cream cheese" + ] + }, + { + "id": 14422, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "butter", + "shredded Monterey Jack cheese", + "yellow corn meal", + "baking powder", + "all-purpose flour", + "cream style corn", + "salt", + "eggs", + "chile pepper", + "white sugar" + ] + }, + { + "id": 38057, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "taco seasoning", + "shredded cheddar cheese", + "romaine lettuce hearts", + "black beans", + "doritos", + "catalina dressing", + "lean ground beef" + ] + }, + { + "id": 28181, + "cuisine": "thai", + "ingredients": [ + "mushrooms", + "crushed red pepper", + "chopped onion", + "chopped cilantro fresh", + "fish sauce", + "vegetable oil", + "rice vinegar", + "beansprouts", + "boneless skinless chicken breasts", + "salt", + "carrots", + "brown sugar", + "light coconut milk", + "red curry paste", + "fresh lime juice" + ] + }, + { + "id": 31539, + "cuisine": "mexican", + "ingredients": [ + "whole wheat tortilla wraps", + "chopped tomatoes", + "frozen corn", + "pepper", + "red pepper", + "ground cumin", + "black beans", + "sweet potatoes", + "cayenne pepper", + "olive oil", + "salt" + ] + }, + { + "id": 19033, + "cuisine": "southern_us", + "ingredients": [ + "emerils original essence", + "salt", + "flour", + "chicken", + "granulated sugar", + "peanut oil", + "buttermilk" + ] + }, + { + "id": 30992, + "cuisine": "southern_us", + "ingredients": [ + "gravy master", + "salt", + "tomato sauce", + "green onions", + "black pepper", + "garlic", + "bell pepper" + ] + }, + { + "id": 1249, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "ketchup", + "boneless skinless chicken breast halves", + "brown sugar", + "worcestershire sauce", + "garlic powder" + ] + }, + { + "id": 21351, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "plum tomatoes", + "grated parmesan cheese", + "fresh oregano", + "perciatelli", + "crushed red pepper", + "large garlic cloves", + "raw almond" + ] + }, + { + "id": 16699, + "cuisine": "southern_us", + "ingredients": [ + "white cheddar cheese", + "butter", + "garlic cloves", + "quickcooking grits", + "hot sauce", + "milk", + "salt" + ] + }, + { + "id": 14964, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "salt", + "penne", + "1% low-fat milk", + "marinara sauce", + "flat leaf parsley", + "vodka", + "crushed red pepper" + ] + }, + { + "id": 10004, + "cuisine": "korean", + "ingredients": [ + "ground black pepper", + "liquid", + "silken tofu", + "vegetable oil", + "toasted sesame oil", + "kosher salt", + "reduced sodium soy sauce", + "scallions", + "large egg yolks", + "Gochujang base", + "toasted sesame seeds" + ] + }, + { + "id": 47718, + "cuisine": "british", + "ingredients": [ + "grated parmesan cheese", + "balsamic vinegar", + "carrots", + "frozen peas", + "chopped tomatoes", + "beef stock", + "garlic", + "herbes de provence", + "dijon mustard", + "bay leaves", + "yellow onion", + "ground beef", + "tomato paste", + "potatoes", + "red wine vinegar", + "sour cream" + ] + }, + { + "id": 28936, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "buttermilk", + "butter", + "pie shell", + "flour", + "vanilla", + "eggs", + "lemon", + "lemon juice" + ] + }, + { + "id": 9714, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "shredded mozzarella cheese", + "fresh spinach", + "ricotta cheese", + "onions", + "grated parmesan cheese", + "ground sausage", + "dried oregano", + "eggs", + "lasagna noodles, cooked and drained", + "garlic cloves" + ] + }, + { + "id": 25242, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "crimini mushrooms", + "coarse salt", + "orange juice", + "chopped cilantro", + "fresh ginger root", + "vegetable oil", + "garlic", + "scallions", + "water chestnuts", + "wonton wrappers", + "green pepper", + "chinese five-spice powder", + "lime juice", + "sesame oil", + "ground pork", + "freshly ground pepper", + "orange zest" + ] + }, + { + "id": 25012, + "cuisine": "southern_us", + "ingredients": [ + "knorr leek recip mix", + "stuffing", + "frozen whole kernel corn", + "orange juice", + "water", + "I Can't Believe It's Not Butter!® Spread", + "chop fine pecan" + ] + }, + { + "id": 6841, + "cuisine": "vietnamese", + "ingredients": [ + "thai basil", + "shallots", + "cilantro leaves", + "fresh dill", + "jalapeno chilies", + "vegetable oil", + "fresh lime juice", + "rib eye steaks", + "reduced sodium soy sauce", + "rice noodles", + "fresh mint", + "sugar", + "flour", + "vietnamese fish sauce" + ] + }, + { + "id": 40609, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "onions", + "collard greens", + "salt", + "seasoning", + "red pepper flakes", + "apple cider vinegar", + "smoked ham hocks" + ] + }, + { + "id": 19340, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "chopped green bell pepper", + "marjoram", + "saffron threads", + "minced garlic", + "chopped onion", + "no-salt-added diced tomatoes", + "clam juice", + "chorizo sausage", + "instant rice", + "water", + "medium shrimp" + ] + }, + { + "id": 3102, + "cuisine": "indian", + "ingredients": [ + "butter", + "milk", + "all-purpose flour", + "sugar", + "salt", + "instant yeast" + ] + }, + { + "id": 1885, + "cuisine": "southern_us", + "ingredients": [ + "crawfish", + "fish stock", + "fresh tarragon", + "ground cayenne pepper", + "brandy", + "chopped fresh thyme", + "diced tomatoes", + "all-purpose flour", + "bay leaf", + "tomato paste", + "leeks", + "heavy cream", + "salt", + "celery", + "white pepper", + "butter", + "paprika", + "carrots" + ] + }, + { + "id": 48997, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "parmesan cheese", + "angel hair", + "butter", + "water", + "garlic cloves" + ] + }, + { + "id": 17744, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "tapioca flour", + "salt", + "milk", + "eggs", + "grating cheese" + ] + }, + { + "id": 22257, + "cuisine": "southern_us", + "ingredients": [ + "cream", + "ground nutmeg", + "salt", + "brown sugar", + "milk", + "butter", + "ground cinnamon", + "water", + "baking powder", + "sugar", + "frozen peaches", + "all purpose unbleached flour" + ] + }, + { + "id": 20274, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "enchilada sauce", + "nonfat cream cheese", + "purple onion", + "corn tortillas", + "green onions", + "fat skimmed chicken broth", + "jack cheese", + "smoked trout" + ] + }, + { + "id": 37798, + "cuisine": "southern_us", + "ingredients": [ + "shredded mild cheddar cheese", + "worcestershire sauce", + "mustard powder", + "milk", + "butter", + "all-purpose flour", + "fresh asparagus", + "eggs", + "deviled ham", + "salt", + "onions", + "ground black pepper", + "heavy cream", + "cereal flakes" + ] + }, + { + "id": 37988, + "cuisine": "russian", + "ingredients": [ + "sugar", + "frozen raspberries", + "starch", + "water" + ] + }, + { + "id": 36979, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "shredded mozzarella cheese", + "fresh basil", + "extra-virgin olive oil", + "gnocchi", + "tomatoes", + "balsamic vinegar", + "garlic cloves", + "kosher salt", + "shredded parmesan cheese" + ] + }, + { + "id": 17777, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "shredded mozzarella cheese", + "dried oregano", + "tomato sauce", + "garlic", + "onions", + "water", + "salt", + "noodles", + "tomato paste", + "ricotta cheese", + "ground beef" + ] + }, + { + "id": 42733, + "cuisine": "indian", + "ingredients": [ + "pitas", + "raisins", + "garlic cloves", + "canola oil", + "kosher salt", + "cooking spray", + "chopped onion", + "chopped cilantro fresh", + "sugar", + "jalapeno chilies", + "diced tomatoes", + "mustard seeds", + "curry powder", + "peeled fresh ginger", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 48746, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "cardoons", + "vegetable oil", + "water", + "all-purpose flour", + "large eggs" + ] + }, + { + "id": 43942, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "vanilla extract", + "white chocolate", + "whipping cream", + "ladyfingers", + "coffee", + "cream cheese, soften", + "powdered sugar", + "dark rum", + "chocolate morsels" + ] + }, + { + "id": 18274, + "cuisine": "italian", + "ingredients": [ + "all-purpose flour", + "eggs", + "baking powder", + "confectioners sugar" + ] + }, + { + "id": 35542, + "cuisine": "southern_us", + "ingredients": [ + "diced tomatoes", + "chicken broth", + "cheese", + "quickcooking grits", + "salt", + "bacon slices" + ] + }, + { + "id": 28838, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "pepper", + "cilantro sprigs", + "chipotle chile", + "finely chopped onion", + "garlic cloves", + "green chile", + "olive oil", + "salt", + "black beans", + "chili powder", + "adobo sauce" + ] + }, + { + "id": 19800, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "pepper", + "olive oil", + "chicken breasts", + "garlic", + "cayenne pepper", + "red bell pepper", + "white vinegar", + "soy sauce", + "lime", + "vegetables", + "chili powder", + "purple onion", + "rice", + "monterey jack", + "green bell pepper", + "lime juice", + "garlic powder", + "marinade", + "crema", + "sweet corn", + "sour cream", + "liquid smoke", + "black beans", + "honey", + "cayenne", + "cilantro", + "salt", + "smoked paprika", + "ground cumin" + ] + }, + { + "id": 44533, + "cuisine": "mexican", + "ingredients": [ + "green enchilada sauce", + "corn tortillas", + "green chilies", + "cilantro", + "shredded Monterey Jack cheese", + "chicken breasts", + "sour cream" + ] + }, + { + "id": 2957, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "salt", + "mustard seeds", + "fat free yogurt", + "ground red pepper", + "garlic cloves", + "basmati rice", + "peeled fresh ginger", + "all-purpose flour", + "chopped cilantro fresh", + "white onion", + "diced tomatoes", + "leg of lamb", + "ground cumin" + ] + }, + { + "id": 12566, + "cuisine": "italian", + "ingredients": [ + "sugar", + "baking powder", + "semi-sweet chocolate morsels", + "white chocolate chips", + "salt", + "large eggs", + "all-purpose flour", + "unsalted butter", + "vanilla extract", + "unsweetened cocoa powder" + ] + }, + { + "id": 37200, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "garlic", + "corned beef", + "water", + "oil", + "pepper", + "salt", + "frozen sweet peas", + "potatoes", + "onions" + ] + }, + { + "id": 21243, + "cuisine": "filipino", + "ingredients": [ + "dry rub", + "tilapia", + "olive oil" + ] + }, + { + "id": 7824, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "raspberry vinegar", + "mango", + "agave nectar", + "red bell pepper", + "olive oil", + "carrots", + "lime zest", + "jicama", + "fresh mint" + ] + }, + { + "id": 37539, + "cuisine": "greek", + "ingredients": [ + "lemon zest", + "grated lemon zest", + "mayonaise", + "worcestershire sauce", + "lemon juice", + "greek seasoning", + "ground red pepper", + "chili sauce", + "prepared horseradish", + "hot sauce", + "onions" + ] + }, + { + "id": 12716, + "cuisine": "cajun_creole", + "ingredients": [ + "large eggs", + "butter", + "fresh parsley", + "mayonaise", + "cooked chicken", + "garlic cloves", + "creole mustard", + "green onions", + "creole seasoning", + "bread crumbs", + "vegetable oil", + "red bell pepper" + ] + }, + { + "id": 48866, + "cuisine": "italian", + "ingredients": [ + "extra-lean ground beef", + "butter", + "carrots", + "tomato paste", + "whole milk", + "dry red wine", + "pancetta", + "freshly grated parmesan", + "large garlic cloves", + "onions", + "olive oil", + "bay leaves", + "beef broth" + ] + }, + { + "id": 13073, + "cuisine": "chinese", + "ingredients": [ + "low sodium chicken broth", + "vegetable oil", + "red bell pepper", + "honey", + "boneless skinless chicken breasts", + "crushed red pepper", + "snow peas", + "soy sauce", + "unsalted cashews", + "garlic", + "onions", + "fresh ginger", + "sesame oil", + "corn starch" + ] + }, + { + "id": 8622, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "regular soy sauce", + "cider vinegar", + "corn starch", + "ketchup", + "salt", + "water" + ] + }, + { + "id": 33067, + "cuisine": "thai", + "ingredients": [ + "sugar", + "green curry paste", + "star anise", + "fat skimmed chicken broth", + "red bell pepper", + "pepper", + "thai basil", + "canned coconut milk", + "green beans", + "asian fish sauce", + "kaffir lime leaves", + "halibut fillets", + "vegetable oil", + "cumin seed", + "grate lime peel", + "jasmine rice", + "coriander seeds", + "salt", + "corn starch", + "fresh basil leaves" + ] + }, + { + "id": 11617, + "cuisine": "jamaican", + "ingredients": [ + "water", + "ice water", + "light brown sugar", + "flour", + "grated nutmeg", + "coconut", + "salt", + "shortening", + "butter" + ] + }, + { + "id": 17000, + "cuisine": "vietnamese", + "ingredients": [ + "agave nectar", + "scallions", + "fresh mint", + "lime juice", + "rice noodles", + "carrots", + "gluten-free tamari", + "water", + "extra firm tofu", + "unsalted peanut butter", + "toasted sesame oil", + "fresh cilantro", + "garlic", + "red bell pepper" + ] + }, + { + "id": 31917, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "Shaoxing wine", + "scallions", + "japanese eggplants", + "white vinegar", + "minced garlic", + "vegetable oil", + "chinkiang vinegar", + "sugar", + "fresh ginger", + "cilantro leaves", + "bird chile", + "kosher salt", + "bean paste", + "corn starch" + ] + }, + { + "id": 2119, + "cuisine": "chinese", + "ingredients": [ + "bay leaves", + "soy sauce", + "orange juice", + "garlic powder", + "lemon juice", + "chicken wings", + "onion powder" + ] + }, + { + "id": 28270, + "cuisine": "italian", + "ingredients": [ + "dried lentils", + "purple onion", + "ground black pepper", + "flat leaf parsley", + "olive oil", + "salt", + "fresh basil", + "red wine vinegar" + ] + }, + { + "id": 49708, + "cuisine": "italian", + "ingredients": [ + "ragu old world style pasta sauc", + "boneless skinless chicken breast halves", + "garlic powder", + "plain dry bread crumb", + "italian seasoning", + "eggs", + "shredded mozzarella cheese" + ] + }, + { + "id": 25224, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "heavy cream", + "masala", + "tomato sauce", + "vegetable oil", + "cayenne pepper", + "boneless skinless chicken breasts", + "salt", + "minced garlic", + "butter", + "onions" + ] + }, + { + "id": 9135, + "cuisine": "irish", + "ingredients": [ + "cream", + "mushrooms", + "all-purpose flour", + "mashed potatoes", + "Irish whiskey", + "salt", + "milk", + "watercress", + "onions", + "fillet medallions", + "potatoes", + "cracked black pepper" + ] + }, + { + "id": 29159, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "all-purpose flour", + "unsalted butter", + "double-acting baking powder", + "low-fat buttermilk", + "sugar", + "salt" + ] + }, + { + "id": 32849, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "baking soda", + "salt", + "sour cream", + "yellow corn meal", + "sugar", + "lemon", + "freshly ground pepper", + "onions", + "cornbread", + "eggs", + "butter", + "sweet italian sausage", + "chopped parsley", + "chicken broth", + "olive oil", + "buttermilk", + "chopped pecans" + ] + }, + { + "id": 24418, + "cuisine": "russian", + "ingredients": [ + "sugar", + "unsalted butter", + "heavy cream", + "canola oil", + "milk", + "egg yolks", + "vanilla extract", + "kosher salt", + "flour", + "poppy seeds", + "eggs", + "active dry yeast", + "lemon", + "ground poppy seed" + ] + }, + { + "id": 28244, + "cuisine": "indian", + "ingredients": [ + "cayenne", + "fresh lemon juice", + "curry powder", + "salt", + "cauliflower", + "florets", + "olive oil", + "cilantro leaves" + ] + }, + { + "id": 14614, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "large garlic cloves", + "onions", + "pepper", + "butter", + "whole wheat thin spaghetti", + "frozen chopped spinach", + "fat free milk", + "salt", + "tomato sauce", + "large eggs", + "feta cheese crumbles" + ] + }, + { + "id": 49683, + "cuisine": "brazilian", + "ingredients": [ + "palm oil", + "potatoes", + "chopped cilantro", + "black pepper", + "salt", + "tomatoes", + "shelled shrimp", + "onions", + "olive oil", + "coconut milk" + ] + }, + { + "id": 19629, + "cuisine": "brazilian", + "ingredients": [ + "peeled fresh ginger", + "sauce", + "cayenne", + "salt", + "chopped garlic", + "olive oil", + "vegetable oil", + "chopped onion", + "black-eyed peas", + "crushed red pepper flakes", + "dried shrimp" + ] + }, + { + "id": 25207, + "cuisine": "french", + "ingredients": [ + "pitted kalamata olives", + "honey", + "char fillets", + "fresh lemon juice", + "orange", + "dijon mustard", + "freshly ground pepper", + "pinenuts", + "olive oil", + "shallots", + "herbes de provence", + "kosher salt", + "baby greens", + "fresh orange juice", + "orange zest" + ] + }, + { + "id": 1273, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "diced tomatoes", + "cooking spray", + "onions", + "french bread", + "Italian turkey sausage", + "part-skim mozzarella cheese", + "crushed red pepper" + ] + }, + { + "id": 42653, + "cuisine": "chinese", + "ingredients": [ + "extra firm tofu", + "salt", + "pepper", + "sesame oil", + "white sugar", + "soy sauce", + "green onions", + "chinese black vinegar", + "olive oil", + "garlic" + ] + }, + { + "id": 46395, + "cuisine": "italian", + "ingredients": [ + "baguette", + "salt", + "balsamic vinegar", + "goat cheese", + "ground black pepper", + "fresh oregano", + "extra-virgin olive oil", + "plum tomatoes" + ] + }, + { + "id": 30843, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "cream", + "butter", + "cayenne pepper", + "black pepper", + "jalapeno chilies", + "garlic", + "chopped cilantro fresh", + "tomato sauce", + "fresh ginger", + "paprika", + "lemon juice", + "plain yogurt", + "boneless skinless chicken breasts", + "salt", + "ground cumin" + ] + }, + { + "id": 33504, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "fresh mushrooms", + "canola oil", + "broccoli", + "celery", + "rice sticks", + "carrots", + "chinese cabbage", + "onions" + ] + }, + { + "id": 14639, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "bell pepper", + "chickpeas", + "onions", + "olive oil", + "raisins", + "ground cayenne pepper", + "ground ginger", + "potatoes", + "salt", + "chopped parsley", + "pepper", + "lemon", + "carrots", + "ground cumin" + ] + }, + { + "id": 35058, + "cuisine": "italian", + "ingredients": [ + "baby spinach", + "lemon juice", + "pecans", + "garlic", + "parmesan cheese", + "salt", + "extra-virgin olive oil" + ] + }, + { + "id": 8058, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salsa", + "green bell pepper", + "mackerel fillets", + "onions", + "flour tortillas", + "salad dressing", + "shredded cheddar cheese", + "all-purpose flour" + ] + }, + { + "id": 25628, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "freshly ground pepper", + "snow peas", + "soy sauce", + "vegetable oil", + "red bell pepper", + "sugar", + "peeled fresh ginger", + "scallions", + "long grain white rice", + "boneless, skinless chicken breast", + "salt", + "low sodium store bought chicken stock" + ] + }, + { + "id": 35095, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "unsalted butter", + "all-purpose flour", + "water", + "vegetable oil", + "tiger prawn", + "black pepper", + "green onions", + "garlic cloves", + "honey", + "salt" + ] + }, + { + "id": 9522, + "cuisine": "filipino", + "ingredients": [ + "salt", + "chili pepper", + "onions", + "guava", + "bok choy", + "water", + "large shrimp" + ] + }, + { + "id": 39257, + "cuisine": "british", + "ingredients": [ + "ground ginger", + "molasses", + "unsalted butter", + "heavy cream", + "ground allspice", + "ground cloves", + "baking soda", + "vegetable oil", + "grated lemon zest", + "ground cinnamon", + "water", + "lemon zest", + "salt", + "fresh lemon juice", + "sugar", + "large egg yolks", + "large eggs", + "all-purpose flour", + "frozen blueberries" + ] + }, + { + "id": 29944, + "cuisine": "indian", + "ingredients": [ + "stone flower", + "asafoetida", + "water", + "ginger", + "green cardamom", + "oil", + "onions", + "tomatoes", + "kabuli channa", + "fennel", + "salt", + "green chilies", + "dried red chile peppers", + "curry leaves", + "black pepper", + "coriander seeds", + "garlic", + "brown cardamom", + "mustard seeds", + "ground turmeric", + "clove", + "stock", + "grated coconut", + "cinnamon", + "cilantro leaves", + "cumin seed", + "bay leaf" + ] + }, + { + "id": 18277, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "cooked chicken", + "salsa", + "guacamole", + "butter", + "ground cumin", + "flour tortillas", + "dri oregano leaves, crush", + "sour cream", + "green onions", + "diced tomatoes" + ] + }, + { + "id": 27933, + "cuisine": "southern_us", + "ingredients": [ + "purple onion", + "shredded coleslaw mix", + "carrots", + "barbecue sauce", + "salt" + ] + }, + { + "id": 39221, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes" + ] + }, + { + "id": 177, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "olive oil", + "garlic cloves", + "capers", + "diced tomatoes", + "pitted kalamata olives", + "crushed red pepper", + "fresh basil", + "asiago", + "spaghetti" + ] + }, + { + "id": 32483, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "roasted red peppers", + "roast beef", + "garlic powder", + "provolone cheese", + "torpedo rolls", + "au jus mix" + ] + }, + { + "id": 38266, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "fat free milk", + "all-purpose flour", + "ground cumin", + "fat free yogurt", + "boneless skinless chicken breasts", + "sour cream", + "fresh spinach", + "flour tortillas", + "green chilies", + "shredded reduced fat cheddar cheese", + "salt", + "sliced green onions" + ] + }, + { + "id": 39889, + "cuisine": "southern_us", + "ingredients": [ + "hash brown", + "salt", + "reduced-fat sour cream", + "garlic cloves", + "chopped fresh chives", + "freshly ground pepper", + "reduced fat cream of mushroom soup", + "cheese" + ] + }, + { + "id": 38075, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "salt", + "nori", + "sugar", + "baking powder", + "sauce", + "eggs", + "flour", + "bonito", + "cabbage", + "pork belly", + "Kewpie Mayonnaise", + "toasted sesame oil" + ] + }, + { + "id": 5810, + "cuisine": "jamaican", + "ingredients": [ + "water", + "salt", + "fresh lime juice", + "brown sugar", + "fresh thyme leaves", + "ground allspice", + "peeled fresh ginger", + "onion tops", + "pepper", + "purple onion", + "garlic cloves" + ] + }, + { + "id": 14837, + "cuisine": "moroccan", + "ingredients": [ + "fresh cilantro", + "purple onion", + "fresh lemon juice", + "salmon fillets", + "ground black pepper", + "chickpeas", + "ground cumin", + "olive oil", + "cayenne pepper", + "smoked paprika", + "kosher salt", + "lemon", + "ground coriander" + ] + }, + { + "id": 38787, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "olive oil", + "shredded sharp cheddar cheese", + "sour cream", + "pepper", + "dried thyme", + "tomatillos", + "red bell pepper", + "sweet onion", + "egg yolks", + "salt", + "self-rising cornmeal", + "corn kernels", + "green tomatoes", + "garlic cloves" + ] + }, + { + "id": 44821, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "Shaoxing wine", + "scallions", + "vegetables", + "ginger", + "yellow chives", + "store bought low sodium chicken stock", + "hot pepper", + "corn starch", + "soy sauce", + "lobster", + "salt" + ] + }, + { + "id": 8022, + "cuisine": "italian", + "ingredients": [ + "pastry", + "grated parmesan cheese", + "onions", + "double crust pie", + "bread crumbs", + "sweet italian sausage", + "lean ground pork", + "salt", + "fresh rosemary", + "ground black pepper", + "fresh parsley" + ] + }, + { + "id": 41033, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "ginger", + "ground cumin", + "bread crumbs", + "flour", + "onions", + "jalapeno chilies", + "fresh parsley leaves", + "garam masala", + "chili powder", + "frozen peas" + ] + }, + { + "id": 14944, + "cuisine": "british", + "ingredients": [ + "dark brown sugar", + "dark rum", + "grated nutmeg", + "unsalted butter" + ] + }, + { + "id": 15639, + "cuisine": "brazilian", + "ingredients": [ + "ice cubes", + "vodka", + "lime", + "sugar" + ] + }, + { + "id": 43195, + "cuisine": "italian", + "ingredients": [ + "spanish onion", + "salt", + "extra-virgin olive oil", + "chopped fresh thyme", + "carrots", + "tomatoes", + "garlic" + ] + }, + { + "id": 41445, + "cuisine": "french", + "ingredients": [ + "salmon fillets", + "extra-virgin olive oil", + "phyllo pastry", + "dijon mustard", + "anchovy fillets", + "pitted kalamata olives", + "grated lemon zest", + "fresh basil leaves", + "capers", + "large garlic cloves", + "fresh lemon juice" + ] + }, + { + "id": 616, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "garlic", + "corn starch", + "cooking oil", + "beef sirloin", + "leaves", + "broccoli", + "onions", + "broccoli stems", + "oyster sauce" + ] + }, + { + "id": 32510, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "sesame oil", + "water", + "salt", + "roasted sesame seeds", + "mung bean sprouts", + "spring onions" + ] + }, + { + "id": 30542, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "pork ribs", + "garlic", + "carrots", + "onions", + "lime", + "basil leaves", + "cilantro leaves", + "beansprouts", + "rice sticks", + "spring onions", + "squid", + "chillies", + "soy sauce", + "pork tenderloin", + "salt", + "shrimp", + "peppercorns" + ] + }, + { + "id": 18678, + "cuisine": "italian", + "ingredients": [ + "sugar", + "purple onion", + "plum tomatoes", + "olive oil", + "all-purpose flour", + "water", + "salt", + "guanciale", + "potatoes", + "garlic cloves" + ] + }, + { + "id": 49064, + "cuisine": "italian", + "ingredients": [ + "ground pepper", + "sugar", + "extra-virgin olive oil", + "orange", + "salt", + "romaine lettuce leaves" + ] + }, + { + "id": 3451, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "oil", + "eggs", + "salt", + "seasoning", + "boneless chicken breast", + "bread crumbs", + "all-purpose flour" + ] + }, + { + "id": 47584, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onion powder", + "cumin", + "fresh spinach", + "brown rice", + "salsa", + "sweet potatoes", + "whole wheat tortillas", + "black beans", + "chili powder", + "oil" + ] + }, + { + "id": 49424, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "eggplant", + "garlic", + "chopped cilantro", + "water", + "jalapeno chilies", + "ground coriander", + "ground cumin", + "tomatoes", + "cooking oil", + "salt", + "onions", + "fresh ginger", + "baking potatoes", + "lemon juice" + ] + }, + { + "id": 14949, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "basil", + "fresh basil", + "puff pastry", + "cooking spray" + ] + }, + { + "id": 49535, + "cuisine": "mexican", + "ingredients": [ + "water", + "Pace Chunky Salsa", + "boneless skinless chicken breasts", + "flour tortillas", + "condensed fiesta nacho cheese soup" + ] + }, + { + "id": 36297, + "cuisine": "mexican", + "ingredients": [ + "cooked turkey", + "cream cheese", + "chile pepper", + "ground cumin", + "chili beans", + "salsa", + "flour tortillas", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 850, + "cuisine": "korean", + "ingredients": [ + "salt", + "black pepper", + "corn starch", + "garlic cloves", + "russet potatoes", + "onions" + ] + }, + { + "id": 24401, + "cuisine": "southern_us", + "ingredients": [ + "shredded sharp cheddar cheese", + "frozen broccoli florets", + "freshly ground pepper", + "salt", + "quickcooking grits" + ] + }, + { + "id": 49581, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salsa", + "corn tortillas", + "grating cheese", + "scallions", + "guacamole", + "hot sauce", + "refried beans", + "salt", + "sour cream" + ] + }, + { + "id": 29342, + "cuisine": "spanish", + "ingredients": [ + "triple sec", + "fresh orange juice", + "cinnamon sticks", + "sugar", + "lime slices", + "lemon slices", + "allspice", + "brandy", + "carbonated water", + "fresh lemon juice", + "clove", + "orange slices", + "dry red wine", + "fresh lime juice" + ] + }, + { + "id": 44444, + "cuisine": "italian", + "ingredients": [ + "orange juice concentrate", + "pork tenderloin", + "kosher salt", + "italian seasoning", + "sugar", + "garlic", + "water" + ] + }, + { + "id": 22352, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "dried oregano", + "olive oil", + "dried basil", + "spaghetti" + ] + }, + { + "id": 23619, + "cuisine": "mexican", + "ingredients": [ + "water", + "salsa", + "grated orange peel", + "fresh orange juice", + "corn tortillas", + "brandy", + "fine sea salt", + "fresh tomato salsa", + "boneless country pork ribs", + "garlic cloves" + ] + }, + { + "id": 38158, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic", + "olive oil", + "green onions", + "fresh parsley", + "fettucine", + "half & half", + "medium shrimp", + "parmigiano reggiano cheese", + "low-fat cream cheese" + ] + }, + { + "id": 13639, + "cuisine": "italian", + "ingredients": [ + "pasta", + "garlic", + "fresh thyme leaves", + "olive oil", + "roast red peppers, drain", + "butter" + ] + }, + { + "id": 25157, + "cuisine": "southern_us", + "ingredients": [ + "lemon juice", + "blood orange juice", + "cinnamon sticks", + "honey", + "hot water", + "bourbon whiskey" + ] + }, + { + "id": 15210, + "cuisine": "italian", + "ingredients": [ + "navel oranges", + "olive oil", + "salt", + "green olives", + "purple onion", + "ground black pepper", + "flat leaf parsley" + ] + }, + { + "id": 38431, + "cuisine": "italian", + "ingredients": [ + "ditalini pasta", + "salt", + "dried oregano", + "pepper", + "cannellini beans", + "onions", + "tomato sauce", + "mushrooms", + "escarole", + "olive oil", + "garlic", + "white sugar" + ] + }, + { + "id": 7233, + "cuisine": "indian", + "ingredients": [ + "tandoori spices", + "chili powder", + "chicken", + "garlic paste", + "vinegar", + "salt", + "ground pepper", + "vegetable oil", + "food colouring", + "yoghurt", + "methi" + ] + }, + { + "id": 17404, + "cuisine": "italian", + "ingredients": [ + "finely chopped onion", + "garlic", + "medium shrimp", + "dried pasta", + "butter", + "crushed red pepper", + "fresh basil", + "dry white wine", + "sweet pepper", + "olive oil", + "whipping cream", + "shredded parmesan cheese" + ] + }, + { + "id": 2525, + "cuisine": "moroccan", + "ingredients": [ + "chicken broth", + "diced tomatoes", + "flat leaf parsley", + "honey", + "purple onion", + "ground cumin", + "fresh thyme", + "chickpeas", + "minced garlic", + "extra-virgin olive oil", + "couscous" + ] + }, + { + "id": 25134, + "cuisine": "greek", + "ingredients": [ + "sugar", + "unsalted butter", + "all-purpose flour", + "orange", + "baking powder", + "blanched almonds", + "brandy", + "large eggs", + "orange juice", + "baking soda", + "lemon" + ] + }, + { + "id": 18182, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "grated orange", + "dry vermouth", + "lemon juice", + "fresh chives", + "large shrimp", + "fresh orange juice" + ] + }, + { + "id": 3745, + "cuisine": "british", + "ingredients": [ + "curry powder", + "extra-virgin olive oil", + "scallions", + "fresh dill", + "hard-boiled egg", + "white wine vinegar", + "smoked & dried fish", + "kosher salt", + "yoghurt", + "yellow onion", + "milk", + "garlic", + "basmati rice" + ] + }, + { + "id": 48806, + "cuisine": "southern_us", + "ingredients": [ + "mixed vegetables", + "chuck roast", + "beef broth", + "worcestershire sauce", + "barbecue sauce" + ] + }, + { + "id": 4776, + "cuisine": "southern_us", + "ingredients": [ + "vanilla beans", + "large eggs", + "heavy cream", + "white bread", + "unsalted butter", + "whole milk", + "large egg yolks", + "chop fine pecan", + "dark brown sugar", + "dark corn syrup", + "granulated sugar", + "bourbon whiskey" + ] + }, + { + "id": 19796, + "cuisine": "chinese", + "ingredients": [ + "milk", + "large eggs", + "all-purpose flour", + "large egg yolks", + "almond extract", + "sesame seeds", + "baking powder", + "sugar", + "almonds", + "butter" + ] + }, + { + "id": 38579, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "dry bread crumbs", + "vegetable oil", + "bocconcini" + ] + }, + { + "id": 41100, + "cuisine": "brazilian", + "ingredients": [ + "vodka", + "salt", + "tomatoes", + "olive oil", + "cooked shrimp", + "dough", + "pepper", + "all-purpose flour", + "warm water", + "vegetable oil", + "onions" + ] + }, + { + "id": 16537, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "dry white wine", + "onions", + "olive oil", + "garlic", + "chicken broth", + "butter", + "grated parmesan cheese", + "chopped parsley" + ] + }, + { + "id": 46978, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "palm sugar", + "red curry paste", + "coconut milk", + "fish sauce", + "thai chile", + "dark brown sugar", + "eggs", + "basil leaves", + "halibut", + "kosher salt", + "frozen banana leaf", + "corn starch" + ] + }, + { + "id": 21533, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "Mexican oregano", + "garlic cloves", + "ground cumin", + "potatoes", + "guajillo", + "onions", + "pepper", + "vegetable oil", + "corn tortillas", + "bay leaves", + "salt", + "skirt steak" + ] + }, + { + "id": 5282, + "cuisine": "southern_us", + "ingredients": [ + "flaked coconut", + "salt", + "white sugar", + "eggs", + "buttermilk", + "chopped pecans", + "butter", + "all-purpose flour", + "semi-sweet chocolate morsels", + "baking soda", + "vanilla extract", + "heavy whipping cream" + ] + }, + { + "id": 32887, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "whipping cream", + "grits", + "salmon fillets", + "dry white wine", + "grated jack cheese", + "capers", + "half & half", + "salt", + "water", + "butter", + "garlic cloves" + ] + }, + { + "id": 46233, + "cuisine": "italian", + "ingredients": [ + "low-fat spaghetti sauce", + "cooking spray", + "fat free cream cheese", + "eggplant", + "salt", + "fresh basil leaves", + "spinach leaves", + "part-skim mozzarella cheese", + "garlic cloves", + "nonfat ricotta cheese", + "pinenuts", + "fresh parmesan cheese", + "fresh parsley leaves" + ] + }, + { + "id": 38743, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "sausages", + "crushed garlic", + "frozen peas", + "parmesan cheese", + "onions", + "butter", + "chicken" + ] + }, + { + "id": 31488, + "cuisine": "french", + "ingredients": [ + "rosemary", + "dry red wine", + "onions", + "kosher salt", + "vegetable oil", + "thyme", + "celery ribs", + "ground black pepper", + "skin on bone in chicken legs", + "thick-cut bacon", + "tomato paste", + "low sodium chicken broth", + "carrots", + "wild mushrooms" + ] + }, + { + "id": 44634, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "italian plum tomatoes", + "garlic cloves", + "dried oregano", + "olive oil", + "paprika", + "fresh parsley", + "grated parmesan cheese", + "dry red wine", + "onions", + "dried basil", + "fusilli", + "ground beef" + ] + }, + { + "id": 20908, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "half & half", + "salt", + "ground black pepper", + "chicken breasts", + "nonfat greek yogurt", + "crushed garlic", + "fresh ginger", + "lemon zest", + "extra-virgin olive oil" + ] + }, + { + "id": 8730, + "cuisine": "brazilian", + "ingredients": [ + "palm oil", + "olive oil", + "salt", + "onions", + "yuca", + "ginger", + "coconut milk", + "tomatoes", + "cilantro", + "red bell pepper", + "pepper", + "garlic", + "medium shrimp" + ] + }, + { + "id": 48871, + "cuisine": "moroccan", + "ingredients": [ + "clove", + "coriander seeds", + "salt", + "chopped garlic", + "black peppercorns", + "paprika", + "cinnamon sticks", + "ground ginger", + "cayenne", + "cumin seed", + "quail", + "extra-virgin olive oil", + "chopped cilantro fresh" + ] + }, + { + "id": 40756, + "cuisine": "italian", + "ingredients": [ + "buttermilk cornbread", + "muffin mix", + "large eggs", + "buttermilk", + "butter", + "jalapeno chilies", + "shredded pepper jack cheese" + ] + }, + { + "id": 5178, + "cuisine": "french", + "ingredients": [ + "white chocolate", + "raspberry preserves", + "vanilla extract", + "sugar", + "unsalted butter", + "whipping cream", + "large egg yolks", + "ice water", + "salt", + "crystallized ginger", + "all purpose unbleached flour", + "fresh raspberries" + ] + }, + { + "id": 406, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "water", + "ground black pepper", + "sour cream", + "ground cumin", + "black beans", + "corn kernels", + "vegetable broth", + "olives", + "tomatoes", + "Gold Medal Flour", + "green onions", + "corn tortillas", + "avocado", + "kosher salt", + "olive oil", + "frozen chopped spinach, thawed and squeezed dry", + "monterey jack" + ] + }, + { + "id": 12260, + "cuisine": "thai", + "ingredients": [ + "mustard", + "brown sugar", + "prawns", + "chili flakes", + "peanuts", + "oil", + "clove", + "fish sauce", + "leaves", + "eggs", + "lime", + "rice noodles" + ] + }, + { + "id": 12626, + "cuisine": "italian", + "ingredients": [ + "pepper", + "broccoli florets", + "asiago", + "lemon juice", + "arborio rice", + "olive oil", + "dry white wine", + "garlic", + "chicken broth", + "grated parmesan cheese", + "butter", + "salt", + "sweet onion", + "chopped fresh chives", + "heavy cream" + ] + }, + { + "id": 8038, + "cuisine": "indian", + "ingredients": [ + "white onion", + "fresh ginger", + "paprika", + "garlic cloves", + "ground turmeric", + "plain yogurt", + "lime", + "vegetable oil", + "cumin seed", + "chopped cilantro fresh", + "lime juice", + "wafer", + "cayenne pepper", + "chopped fresh mint", + "water", + "coriander seeds", + "salt", + "chicken thighs", + "hothouse cucumber" + ] + }, + { + "id": 26685, + "cuisine": "indian", + "ingredients": [ + "coconut", + "salt", + "curds", + "ground cumin", + "curry leaves", + "vermicelli", + "rice", + "ground turmeric", + "semolina", + "cilantro leaves", + "carrots", + "pepper", + "ginger", + "green chilies", + "bottle gourd" + ] + }, + { + "id": 43517, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "salt", + "large eggs", + "semolina", + "whole milk", + "parmigiano reggiano cheese" + ] + }, + { + "id": 2488, + "cuisine": "brazilian", + "ingredients": [ + "salt", + "manioc flour", + "butter" + ] + }, + { + "id": 43124, + "cuisine": "indian", + "ingredients": [ + "red kidney beans", + "fresh ginger root", + "garlic", + "cumin seed", + "white sugar", + "tomatoes", + "ground red pepper", + "cilantro leaves", + "ghee", + "ground cumin", + "clove", + "garam masala", + "salt", + "dried red chile peppers", + "ground turmeric", + "water", + "vegetable oil", + "ground coriander", + "onions" + ] + }, + { + "id": 41196, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "chinese sausage", + "chicken broth", + "pepper", + "salt", + "soy sauce", + "sesame oil", + "gai lan", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 20458, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "fresh lemon juice", + "cracker crumbs", + "egg yolks", + "sweetened condensed milk", + "grated lemon zest" + ] + }, + { + "id": 26802, + "cuisine": "indian", + "ingredients": [ + "eggplant", + "oil", + "vegetable stock", + "onions", + "reduced fat coconut milk", + "button mushrooms", + "coriander", + "potatoes", + "curry paste" + ] + }, + { + "id": 24393, + "cuisine": "irish", + "ingredients": [ + "eggs", + "potatoes", + "pepper", + "all-purpose flour", + "skim milk", + "salt", + "mashed potatoes", + "olive oil" + ] + }, + { + "id": 34506, + "cuisine": "spanish", + "ingredients": [ + "turkey", + "cayenne pepper", + "long grain white rice", + "salt", + "red bell pepper", + "dried oregano", + "smoked sausage", + "low salt chicken broth", + "plum tomatoes", + "olive oil", + "yellow onion", + "frozen peas", + "saffron" + ] + }, + { + "id": 40783, + "cuisine": "cajun_creole", + "ingredients": [ + "Johnsonville Smoked Sausage", + "green onions", + "celery", + "hot pepper sauce", + "cajun seasoning", + "green bell pepper", + "vegetable oil", + "onions", + "Uncle Ben's Ready Rice Whole Grain Brown Rice", + "garlic" + ] + }, + { + "id": 27849, + "cuisine": "southern_us", + "ingredients": [ + "bananas", + "salt", + "sugar", + "egg yolks", + "all-purpose flour", + "egg whites", + "vanilla wafers", + "milk", + "vanilla extract" + ] + }, + { + "id": 40986, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "fennel bulb", + "fronds", + "butter", + "sweet onion", + "half & half", + "wine", + "ground black pepper", + "chicken soup base" + ] + }, + { + "id": 6527, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "sesame seeds", + "beef tenderloin", + "water", + "green onions", + "soy sauce", + "ground black pepper", + "garlic", + "lettuce", + "honey", + "sesame oil" + ] + }, + { + "id": 42929, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "fresh orange juice", + "cream cheese, soften", + "egg yolks", + "vanilla extract", + "grated orange", + "large eggs", + "whipping cream", + "sweetened condensed milk", + "cream sweeten whip", + "mint leaves", + "berries" + ] + }, + { + "id": 8745, + "cuisine": "british", + "ingredients": [ + "dried thyme", + "beef stock cubes", + "all-purpose flour", + "ground white pepper", + "cheddar cheese", + "corn oil", + "heavy cream", + "yellow onion", + "browning", + "red potato", + "egg yolks", + "worcestershire sauce", + "grated nutmeg", + "ground beef", + "water", + "butter", + "salt", + "sauce" + ] + }, + { + "id": 9359, + "cuisine": "french", + "ingredients": [ + "eggs", + "dijon mustard", + "shredded cheddar cheese", + "deli ham", + "bread crumbs", + "chicken breasts", + "olive oil" + ] + }, + { + "id": 41949, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "salt", + "jalapeno chilies", + "pepper", + "guacamole", + "nonfat yogurt", + "lemon juice" + ] + }, + { + "id": 13240, + "cuisine": "vietnamese", + "ingredients": [ + "halibut fillets", + "Thai fish sauce", + "water", + "green onions", + "sugar", + "ground black pepper", + "chopped cilantro fresh", + "lemongrass", + "garlic" + ] + }, + { + "id": 36495, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "butter", + "sugar", + "salt", + "sweet potatoes", + "all-purpose flour" + ] + }, + { + "id": 22312, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "pie shell", + "large eggs", + "cornmeal", + "granulated sugar", + "fresh lemon juice", + "salt", + "grated lemon peel" + ] + }, + { + "id": 20935, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "cooking oil", + "chicken breasts", + "garlic", + "okra", + "crawfish", + "gumbo file", + "stewed tomatoes", + "hot sauce", + "celery", + "black pepper", + "flour", + "fryer chickens", + "salt", + "carrots", + "olive oil", + "bay leaves", + "white rice", + "cayenne pepper", + "onions" + ] + }, + { + "id": 5906, + "cuisine": "mexican", + "ingredients": [ + "red chili peppers", + "water", + "coriander powder", + "salt", + "cooked brown rice", + "lime juice", + "spring onions", + "garlic cloves", + "pepper", + "corn", + "capsicum", + "red kidney beans", + "fresh coriander", + "taco seasoning mix", + "passata" + ] + }, + { + "id": 24820, + "cuisine": "italian", + "ingredients": [ + "pecorino cheese", + "bucatini", + "guanciale", + "red pepper flakes", + "olive oil", + "flat leaf parsley", + "dry white wine", + "plum tomatoes" + ] + }, + { + "id": 28844, + "cuisine": "irish", + "ingredients": [ + "coffee", + "salt", + "chocolate syrup", + "almond extract", + "Irish whiskey", + "sweetened condensed milk", + "evaporated milk", + "vanilla extract" + ] + }, + { + "id": 30455, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "capsicum", + "chopped celery", + "green chilies", + "tomato sauce", + "light soy sauce", + "ginger", + "rice vinegar", + "corn starch", + "cauliflower", + "water", + "chili powder", + "salt", + "oil", + "soy sauce", + "spring onions", + "garlic", + "all-purpose flour" + ] + }, + { + "id": 31118, + "cuisine": "british", + "ingredients": [ + "granary bread", + "marmite", + "unsalted butter" + ] + }, + { + "id": 38105, + "cuisine": "russian", + "ingredients": [ + "sauerkraut", + "salt", + "mushrooms", + "sour cream", + "ground black pepper", + "chopped onion", + "vegetable oil" + ] + }, + { + "id": 35295, + "cuisine": "indian", + "ingredients": [ + "chicken wings", + "chopped onion", + "ground ginger", + "large garlic cloves", + "curry powder", + "ground cumin", + "plain yogurt", + "chopped cilantro fresh" + ] + }, + { + "id": 8830, + "cuisine": "brazilian", + "ingredients": [ + "arrow root", + "sunflower oil", + "plain yogurt", + "salt", + "water", + "eggs", + "parmesan cheese" + ] + }, + { + "id": 30299, + "cuisine": "southern_us", + "ingredients": [ + "cake", + "chicken", + "slaw", + "purple onion", + "cornbread", + "cracked black pepper", + "barbecue sauce", + "plum tomatoes" + ] + }, + { + "id": 30728, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "pesto", + "salt", + "linguine", + "pepper" + ] + }, + { + "id": 28601, + "cuisine": "moroccan", + "ingredients": [ + "hot pepper sauce", + "currant", + "fresh mint", + "ground cumin", + "low sodium vegetable broth", + "sweet potatoes", + "garlic cloves", + "onions", + "ground cinnamon", + "broccoli florets", + "salt", + "couscous", + "olive oil", + "red pepper flakes", + "red bell pepper", + "saffron" + ] + }, + { + "id": 12267, + "cuisine": "jamaican", + "ingredients": [ + "hot pepper", + "ham", + "water", + "salt", + "stew meat", + "peas", + "fresh thyme", + "yams" + ] + }, + { + "id": 27675, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "vanilla", + "brown sugar", + "cinnamon", + "all-purpose flour", + "eggs", + "baking powder", + "salt", + "peaches", + "buttermilk", + "white sugar" + ] + }, + { + "id": 17564, + "cuisine": "greek", + "ingredients": [ + "mayonaise", + "greek seasoning", + "fresh lemon juice", + "mild olive oil" + ] + }, + { + "id": 38276, + "cuisine": "indian", + "ingredients": [ + "boneless skinless chicken breasts", + "green peas", + "long-grain rice", + "curry powder", + "sliced carrots", + "all-purpose flour", + "chopped cilantro fresh", + "lime rind", + "ground red pepper", + "salt", + "fresh lime juice", + "fat free milk", + "vegetable oil", + "chopped onion" + ] + }, + { + "id": 36433, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "asian fish sauce", + "shrimp", + "lime wedges", + "sweet chili sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 24521, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "fresh orange juice", + "fresh lime juice", + "flour tortillas", + "hot sauce", + "ground cumin", + "vegetable oil spray", + "purple onion", + "skirt steak", + "kosher salt", + "lime wedges", + "beer" + ] + }, + { + "id": 27464, + "cuisine": "french", + "ingredients": [ + "pepper", + "garlic", + "fat skimmed chicken broth", + "thick-cut bacon", + "sugar", + "dry red wine", + "sausages", + "onions", + "tomatoes", + "boned duck breast halves", + "salt", + "thyme sprigs", + "great northern beans", + "fresh thyme leaves", + "duck", + "bay leaf" + ] + }, + { + "id": 474, + "cuisine": "vietnamese", + "ingredients": [ + "mint", + "garlic sauce", + "chinese chives", + "rice noodles", + "shrimp", + "butter lettuce", + "salt", + "rice paper", + "cold water", + "cilantro", + "pork loin chops" + ] + }, + { + "id": 43248, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "minced onion", + "fresh parsley", + "fat free less sodium chicken broth", + "salt", + "arborio rice", + "fresh thyme", + "olive oil", + "shiitake mushroom caps" + ] + }, + { + "id": 31455, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "pepper", + "dried minced onion", + "chicken broth", + "all-purpose flour", + "milk" + ] + }, + { + "id": 15892, + "cuisine": "chinese", + "ingredients": [ + "honey", + "green onions", + "cilantro", + "salt", + "broccoli slaw", + "peanuts", + "sesame oil", + "garlic", + "chili sauce", + "soy sauce", + "fresh ginger", + "chicken breasts", + "ginger", + "peanut butter", + "lime", + "shredded carrots", + "rice noodles", + "fat-free chicken broth", + "beansprouts" + ] + }, + { + "id": 29700, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "olive oil", + "vinaigrette", + "arugula", + "seasoning", + "water", + "zucchini", + "fresh lemon juice", + "pepper", + "quinoa", + "garlic cloves", + "fresh basil", + "honey", + "salt", + "roasted tomatoes" + ] + }, + { + "id": 30452, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "unsalted butter", + "buttermilk", + "olive oil", + "gravy", + "all-purpose flour", + "biscuits", + "ground black pepper", + "baking powder", + "cayenne pepper", + "sweet onion", + "half & half", + "salt" + ] + }, + { + "id": 4479, + "cuisine": "irish", + "ingredients": [ + "cauliflower", + "salt", + "florets", + "Kerrygold Pure Irish Butter", + "sour cream", + "heavy cream" + ] + }, + { + "id": 41080, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "fresh ginger", + "diced tomatoes", + "freshly ground pepper", + "fresh lime juice", + "cauliflower", + "fresh cilantro", + "yukon gold potatoes", + "chickpeas", + "juice", + "serrano chilies", + "olive oil", + "florets", + "liquid", + "coarse kosher salt", + "water", + "garam masala", + "yellow onion", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 16648, + "cuisine": "french", + "ingredients": [ + "chicken cutlets", + "pepper", + "salt", + "spinach leaves", + "gruyere cheese", + "unsalted butter", + "ham" + ] + }, + { + "id": 24232, + "cuisine": "jamaican", + "ingredients": [ + "rum", + "white sugar", + "vodka", + "pineapple juice", + "lime slices", + "fresh lime juice", + "fruit", + "bitters" + ] + }, + { + "id": 45640, + "cuisine": "mexican", + "ingredients": [ + "ice cubes", + "salt", + "lime", + "fresh lime juice", + "lime juice", + "tequila", + "triple sec" + ] + }, + { + "id": 26179, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "cooking spray", + "chinese cabbage", + "corn starch", + "sugar", + "lower sodium soy sauce", + "rice vinegar", + "garlic chili sauce", + "medium shrimp", + "brown sugar", + "large egg whites", + "wonton wrappers", + "dark sesame oil", + "fresh lime juice", + "fish sauce", + "water", + "peeled fresh ginger", + "edamame", + "hot water" + ] + }, + { + "id": 32468, + "cuisine": "british", + "ingredients": [ + "blood orange", + "baking powder", + "crème fraîche", + "tangerine", + "unsalted butter", + "heavy cream", + "dark brown sugar", + "kosher salt", + "granulated sugar", + "extra large eggs", + "medjool date", + "toffee sauce", + "baking soda", + "kumquats", + "all-purpose flour" + ] + }, + { + "id": 35618, + "cuisine": "mexican", + "ingredients": [ + "chile pepper", + "salt", + "ground cumin", + "ground black pepper", + "diced tomatoes", + "onions", + "vegetable oil", + "beef broth", + "potatoes", + "beef stew meat", + "garlic salt" + ] + }, + { + "id": 36768, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "garlic", + "whole kernel corn, drain", + "onions", + "chicken broth", + "chile pepper", + "all-purpose flour", + "red bell pepper", + "chopped cilantro fresh", + "black beans", + "stewed tomatoes", + "rice", + "ground cayenne pepper", + "olive oil", + "salt", + "pinto beans", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 25122, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "sour cream", + "lettuce", + "wheat", + "green onions", + "chunky salsa", + "refried beans", + "cheese" + ] + }, + { + "id": 8883, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "shredded mozzarella cheese", + "lean ground beef", + "italian seasoning", + "lasagna noodles", + "garlic salt", + "tomato paste", + "part-skim ricotta cheese" + ] + }, + { + "id": 15936, + "cuisine": "southern_us", + "ingredients": [ + "bread", + "okra", + "salami", + "whole grain dijon mustard", + "pecans" + ] + }, + { + "id": 1821, + "cuisine": "indian", + "ingredients": [ + "clove", + "whole milk yoghurt", + "vegetable oil", + "garlic cloves", + "tumeric", + "peeled fresh ginger", + "salt", + "chicken legs", + "bay leaves", + "purple onion", + "cinnamon sticks", + "warm water", + "chili powder", + "cardamom pods" + ] + }, + { + "id": 34276, + "cuisine": "cajun_creole", + "ingredients": [ + "louisiana hot sauce", + "crawfish", + "cayenne pepper", + "mayonaise", + "butter", + "cream cheese", + "crusty bread", + "green onions", + "creole seasoning", + "kosher salt", + "garlic", + "red bell pepper" + ] + }, + { + "id": 12745, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "garlic cloves", + "chicken wings", + "peanut oil", + "chili flakes", + "rice vinegar", + "celery", + "kosher salt", + "chinese five-spice powder" + ] + }, + { + "id": 30157, + "cuisine": "british", + "ingredients": [ + "maple extract", + "light molasses", + "whipping cream", + "powdered sugar", + "large egg yolks", + "baking powder", + "all-purpose flour", + "golden brown sugar", + "unsalted butter", + "salt", + "pecans", + "baking soda", + "buttermilk" + ] + }, + { + "id": 31315, + "cuisine": "indian", + "ingredients": [ + "corn flakes", + "cilantro leaves", + "puffed rice", + "unsalted cashews", + "cayenne pepper", + "fresh lime", + "mango chutney", + "onions", + "potatoes", + "tomato ketchup" + ] + }, + { + "id": 40261, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "garlic powder", + "sweet italian sausage", + "chicken bouillon", + "ground thyme", + "onions", + "instant rice", + "boneless skinless chicken breasts", + "hot water", + "tomatoes", + "olive oil", + "salt", + "frozen peas" + ] + }, + { + "id": 7455, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "lime", + "peanut oil", + "brown sugar", + "Thai red curry paste", + "fish sauce", + "watercress", + "scallions", + "mussels", + "lite coconut milk", + "garlic" + ] + }, + { + "id": 3664, + "cuisine": "mexican", + "ingredients": [ + "chicken meat", + "kosher salt", + "chopped cilantro fresh", + "jack cheese", + "corn tortillas", + "vegetable oil" + ] + }, + { + "id": 13780, + "cuisine": "mexican", + "ingredients": [ + "water", + "diced tomatoes", + "whole kernel corn, drain", + "Mexican cheese blend", + "seasoned ground turkey", + "onions", + "quinoa", + "garlic", + "sour cream", + "red kidney beans", + "guacamole", + "salsa", + "sliced green onions" + ] + }, + { + "id": 42740, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "lime juice", + "flour tortillas", + "boneless skinless chicken breast halves", + "tomatoes", + "honey", + "corn starch", + "avocado", + "lime", + "vegetable oil", + "gold tequila", + "ground black pepper", + "garlic salt" + ] + }, + { + "id": 2719, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "green onions", + "cumin", + "roasted red peppers", + "salt", + "ground black pepper", + "chicken breasts", + "chicken broth", + "flour", + "cayenne pepper" + ] + }, + { + "id": 5857, + "cuisine": "greek", + "ingredients": [ + "pepper", + "diced tomatoes", + "onions", + "feta cheese", + "medium shrimp", + "olive oil", + "salt", + "white wine", + "garlic powder", + "fresh parsley" + ] + }, + { + "id": 7710, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "heavy cream", + "extra-virgin olive oil", + "pinenuts", + "unsalted butter", + "crushed red pepper flakes", + "purple onion", + "cremini mushrooms", + "asparagus", + "basil", + "fine sea salt", + "homemade vegetable stock", + "parmigiano reggiano cheese", + "dried fettuccine" + ] + }, + { + "id": 3853, + "cuisine": "chinese", + "ingredients": [ + "water chestnuts", + "worcestershire sauce", + "boneless skinless chicken breast halves", + "pinenuts", + "peeled fresh ginger", + "rice vinegar", + "lettuce leaves", + "salt", + "hoisin sauce", + "vegetable oil", + "scallions" + ] + }, + { + "id": 23977, + "cuisine": "chinese", + "ingredients": [ + "pork neck", + "hoisin sauce", + "light soy sauce", + "red food coloring", + "white pepper", + "red preserved bean curd", + "honey", + "chinese five-spice powder" + ] + }, + { + "id": 43459, + "cuisine": "moroccan", + "ingredients": [ + "water", + "large garlic cloves", + "chickpeas", + "ground cumin", + "green bell pepper", + "vegetable oil", + "salt", + "carrots", + "ground ginger", + "eggplant", + "raisins", + "ground allspice", + "tumeric", + "cinnamon", + "cayenne pepper", + "onions" + ] + }, + { + "id": 40915, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "margarine", + "black peppercorns", + "all-purpose flour", + "onions", + "1% low-fat milk", + "ground white pepper", + "salt", + "bay leaf" + ] + }, + { + "id": 11738, + "cuisine": "filipino", + "ingredients": [ + "sweetened condensed milk", + "sugar", + "avocado", + "milk" + ] + }, + { + "id": 46286, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "canned tomatoes", + "low salt chicken broth", + "fresh rosemary", + "dry red wine", + "veal shoulder", + "onions", + "large garlic cloves", + "chopped celery", + "flat leaf parsley", + "pitted kalamata olives", + "extra-virgin olive oil", + "carrots", + "grated lemon peel" + ] + }, + { + "id": 37126, + "cuisine": "thai", + "ingredients": [ + "chile paste", + "butter", + "chicken wings", + "chilegarlic sauce", + "oil", + "honey", + "all-purpose flour", + "sweet chili sauce", + "hot pepper sauce" + ] + }, + { + "id": 21263, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "marinara sauce", + "freshly grated parmesan", + "fresh basil leaves", + "part-skim mozzarella", + "whole wheat pizza crust", + "prosciutto" + ] + }, + { + "id": 12093, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "dried thyme", + "chopped celery", + "red miso", + "tomato paste", + "reduced sodium chicken broth", + "finely chopped onion", + "salt", + "bok choy", + "lean ground pork", + "ground black pepper", + "sweet pepper", + "nonstick spray", + "sake", + "shredded coleslaw mix", + "green onions", + "rice vinegar" + ] + }, + { + "id": 23462, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "yukon gold potatoes", + "chopped onion", + "frozen peas", + "water", + "vegetable oil", + "ground coriander", + "plum tomatoes", + "garam masala", + "ginger", + "garlic cloves", + "cumin", + "tumeric", + "meat", + "salt", + "chopped cilantro" + ] + }, + { + "id": 14210, + "cuisine": "italian", + "ingredients": [ + "hazelnut butter", + "large eggs", + "granulated sugar", + "bittersweet chocolate", + "milk chocolate", + "heavy cream", + "Nutella" + ] + }, + { + "id": 4785, + "cuisine": "chinese", + "ingredients": [ + "all purpose unbleached flour", + "salt", + "vanilla extract", + "egg whites", + "white sugar" + ] + }, + { + "id": 47374, + "cuisine": "southern_us", + "ingredients": [ + "head on shrimp", + "vine ripened tomatoes", + "cayenne pepper", + "green onion bottoms", + "diced onions", + "olive oil", + "salt", + "fresh parsley leaves", + "andouille sausage", + "shallots", + "onion tops", + "sour cream", + "shrimp stock", + "minced garlic", + "butter", + "sweet paprika", + "grits" + ] + }, + { + "id": 26140, + "cuisine": "vietnamese", + "ingredients": [ + "hot water", + "kahlua", + "ice", + "sweetened condensed milk", + "coffee" + ] + }, + { + "id": 24565, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "red cabbage", + "buttermilk", + "hot sauce", + "green cabbage", + "cider vinegar", + "jalapeno chilies", + "purple onion", + "celery seed", + "horseradish", + "ground black pepper", + "green onions", + "salt", + "sugar", + "shredded carrots", + "dry mustard", + "fresh lemon juice" + ] + }, + { + "id": 2102, + "cuisine": "mexican", + "ingredients": [ + "roma tomatoes", + "kosher salt", + "vegetable oil", + "jalapeno chilies", + "finely chopped onion" + ] + }, + { + "id": 5642, + "cuisine": "spanish", + "ingredients": [ + "tomato juice", + "fresh orange juice", + "green olives", + "worcestershire sauce", + "fresh lime juice", + "ground black pepper", + "hot sauce", + "brown sugar", + "sea salt", + "brine" + ] + }, + { + "id": 41160, + "cuisine": "british", + "ingredients": [ + "raspberry jam", + "raspberries", + "heavy whipping cream", + "white chocolate", + "almond extract", + "sugar", + "water", + "biscuits", + "sliced almonds", + "fresh raspberries" + ] + }, + { + "id": 28606, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "orange zest", + "unsalted butter", + "salt", + "black pepper", + "orzo", + "chicken stock", + "chopped fresh thyme" + ] + }, + { + "id": 12492, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "dried shrimp", + "garlic cloves", + "asian fish sauce", + "thai chile", + "green papaya", + "fresh lime juice" + ] + }, + { + "id": 33212, + "cuisine": "mexican", + "ingredients": [ + "sour cream", + "Lipton® Recipe Secrets® Onion Soup Mix", + "TABASCO® Chipotle Pepper Sauce", + "Hellmann's® Real Mayonnaise" + ] + }, + { + "id": 48489, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "ground black pepper", + "lime juice", + "salt", + "garlic powder", + "tomatoes", + "purple onion" + ] + }, + { + "id": 3248, + "cuisine": "mexican", + "ingredients": [ + "lime", + "flank steak", + "salt", + "white vinegar", + "garlic powder", + "paprika", + "dried oregano", + "olive oil", + "chili powder", + "ground white pepper", + "soy sauce", + "ground black pepper", + "garlic", + "ground cumin" + ] + }, + { + "id": 39729, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "butter", + "large eggs", + "salt", + "baking powder", + "white cornmeal", + "baking soda", + "buttermilk" + ] + }, + { + "id": 2906, + "cuisine": "southern_us", + "ingredients": [ + "worcestershire sauce", + "tomato juice", + "ground black pepper", + "white vinegar", + "crushed red pepper flakes" + ] + }, + { + "id": 1997, + "cuisine": "spanish", + "ingredients": [ + "capers", + "brewed coffee", + "salt", + "sliced mushrooms", + "pitted date", + "cracked black pepper", + "long-grain rice", + "rump roast", + "taro", + "beef broth", + "chayotes", + "finely chopped onion", + "dry red wine", + "garlic cloves" + ] + }, + { + "id": 9696, + "cuisine": "southern_us", + "ingredients": [ + "shredded extra sharp cheddar cheese", + "dry mustard", + "bread crumbs", + "whole milk", + "grated nutmeg", + "black pepper", + "grated parmesan cheese", + "all-purpose flour", + "unsalted butter", + "coarse salt", + "elbow macaroni" + ] + }, + { + "id": 331, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "prepared mustard", + "pepper", + "salt", + "sweet relish", + "garlic", + "eggs", + "potatoes", + "celery" + ] + }, + { + "id": 14544, + "cuisine": "italian", + "ingredients": [ + "clams", + "clam juice", + "salt", + "dry white wine", + "littleneck clams", + "fresh lemon juice", + "lemon wedge", + "linguine", + "chopped parsley", + "ground black pepper", + "butter", + "garlic cloves" + ] + }, + { + "id": 8397, + "cuisine": "japanese", + "ingredients": [ + "ketchup", + "mustard powder", + "soy sauce", + "worcestershire sauce" + ] + }, + { + "id": 43164, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "low sodium chicken broth", + "garlic cloves", + "snow peas", + "lo mein noodles", + "vegetable oil", + "oyster sauce", + "shiitake", + "peeled fresh ginger", + "garlic chili sauce", + "broccoli florets", + "scallions", + "toasted sesame oil" + ] + }, + { + "id": 41871, + "cuisine": "greek", + "ingredients": [ + "fennel bulb", + "salt", + "arugula", + "romaine lettuce", + "watercress", + "toasted pine nuts", + "fresh dill", + "red wine vinegar", + "scallions", + "borage", + "ground black pepper", + "extra-virgin olive oil", + "fresh mint" + ] + }, + { + "id": 11459, + "cuisine": "japanese", + "ingredients": [ + "large eggs", + "medium shrimp", + "soy sauce", + "grated lemon zest", + "chicken broth", + "mushrooms", + "mirin", + "scallions" + ] + }, + { + "id": 43487, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "green onions", + "corn starch", + "eggs", + "fresh ginger", + "ground pork", + "white sugar", + "chicken broth", + "water", + "dry sherry", + "toasted sesame oil", + "soy sauce", + "water chestnuts", + "salt" + ] + }, + { + "id": 15819, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "peanuts", + "szechwan peppercorns", + "sherry wine", + "chili pepper", + "boneless skinless chicken breasts", + "ginger", + "soy sauce", + "green onions", + "sesame oil", + "corn starch", + "water", + "apple cider vinegar", + "garlic" + ] + }, + { + "id": 14809, + "cuisine": "cajun_creole", + "ingredients": [ + "turkey", + "fresh thyme leaves", + "onions", + "crushed garlic", + "butter beans", + "tomatoes", + "carrots" + ] + }, + { + "id": 33970, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "sauce", + "cream sweeten whip", + "graham cracker crumbs", + "ground cinnamon", + "granulated sugar", + "granny smith apples", + "grated nutmeg" + ] + }, + { + "id": 13212, + "cuisine": "irish", + "ingredients": [ + "beef bouillon granules", + "salt", + "freshly ground pepper", + "ground round", + "stewed tomatoes", + "chopped onion", + "bay leaf", + "dried thyme", + "cheese", + "fresh mushrooms", + "frozen peas", + "mashed potatoes", + "red wine vinegar", + "all-purpose flour", + "garlic cloves" + ] + }, + { + "id": 14786, + "cuisine": "brazilian", + "ingredients": [ + "vanilla essence", + "sweetened condensed milk", + "salt", + "cocoa powder", + "butter", + "chocolate sprinkles" + ] + }, + { + "id": 26829, + "cuisine": "filipino", + "ingredients": [ + "plain flour", + "pepper", + "butter", + "garlic", + "sugar", + "instant yeast", + "star anise", + "oyster sauce", + "cold water", + "soy sauce", + "vegetable oil", + "cornflour", + "onions", + "eggs", + "water", + "ground pork", + "salt" + ] + }, + { + "id": 38709, + "cuisine": "italian", + "ingredients": [ + "fusilli", + "chopped fresh mint", + "pepper", + "ricotta", + "salt", + "grated parmesan cheese", + "edamame" + ] + }, + { + "id": 25501, + "cuisine": "greek", + "ingredients": [ + "cooking spray", + "crushed red pepper", + "fresh lemon juice", + "black pepper", + "pitted green olives", + "garlic cloves", + "grated orange", + "tuna steaks", + "salt", + "orange rind", + "fennel seeds", + "dry white wine", + "Greek black olives", + "couscous" + ] + }, + { + "id": 47178, + "cuisine": "southern_us", + "ingredients": [ + "creole mustard", + "file powder", + "hot sauce", + "pepper", + "chopped fresh chives", + "fresh parsley", + "mayonaise", + "lemon zest", + "lemon juice", + "bread and butter pickles", + "salt" + ] + }, + { + "id": 27979, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "ground cloves", + "green onions", + "chutney", + "white vinegar", + "soy sauce", + "ground nutmeg", + "ground white pepper", + "sugar", + "honey", + "duck", + "ground cinnamon", + "orange", + "plum jam", + "fresh parsley" + ] + }, + { + "id": 29504, + "cuisine": "mexican", + "ingredients": [ + "lime", + "flour tortillas", + "tomatillos", + "salt", + "shredded Monterey Jack cheese", + "ground black pepper", + "jalapeno chilies", + "extra-virgin olive oil", + "onion rings", + "honey", + "crema mexican", + "chicken meat", + "cilantro leaves", + "ground cumin", + "chicken stock", + "poblano peppers", + "shredded swiss cheese", + "garlic", + "onions" + ] + }, + { + "id": 2398, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "garlic powder", + "rotini", + "dried basil", + "pepperoni", + "dried oregano", + "kosher salt", + "ground black pepper", + "fresh parsley", + "sausage casings", + "olive oil", + "shredded mozzarella cheese" + ] + }, + { + "id": 24697, + "cuisine": "mexican", + "ingredients": [ + "boneless pork shoulder", + "salt", + "Mexican oregano", + "dried guajillo chiles", + "tomatillos", + "water", + "garlic cloves" + ] + }, + { + "id": 44909, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "olive oil", + "heavy cream", + "all-purpose flour", + "eggs", + "green tomatoes", + "basil", + "onions", + "sugar", + "buttermilk", + "garlic", + "canola oil", + "tomatoes", + "fresh thyme", + "SYD Hot Rub", + "sauce" + ] + }, + { + "id": 11916, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "salt", + "chili powder", + "ground cumin", + "pork tenderloin", + "cayenne pepper", + "brown sugar", + "garlic" + ] + }, + { + "id": 24291, + "cuisine": "moroccan", + "ingredients": [ + "butter", + "semolina", + "all-purpose flour", + "baking powder", + "yeast", + "honey", + "salt" + ] + }, + { + "id": 38854, + "cuisine": "thai", + "ingredients": [ + "chili pepper", + "peanuts", + "tamarind paste", + "chicken", + "fish sauce", + "minced garlic", + "green onions", + "shrimp", + "eggs", + "pepper", + "cooking oil", + "firm tofu", + "sugar", + "lime juice", + "rice noodles", + "beansprouts" + ] + }, + { + "id": 47249, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "tomatillos", + "garlic cloves", + "watermelon radishes", + "jalapeno chilies", + "yellow onion", + "chopped cilantro fresh", + "chicken stock", + "hominy", + "salt", + "pepitas", + "boneless chicken skinless thigh", + "vegetable oil", + "cumin seed", + "dried oregano" + ] + }, + { + "id": 33113, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh thyme", + "green onions", + "cayenne pepper", + "chicken", + "andouille sausage", + "flour", + "garlic", + "onions", + "bell pepper", + "worcestershire sauce", + "rib", + "file powder", + "bay leaves", + "salt", + "canola oil" + ] + }, + { + "id": 37327, + "cuisine": "italian", + "ingredients": [ + "sugar", + "active dry yeast", + "Italian parsley leaves", + "fresh herbs", + "pinenuts", + "baby greens", + "cheese", + "fresh basil leaves", + "warm water", + "whole wheat flour", + "extra-virgin olive oil", + "harissa sauce", + "kosher salt", + "grated parmesan cheese", + "all-purpose flour" + ] + }, + { + "id": 26596, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "buttermilk", + "celery seed", + "ground black pepper", + "chicken fingers", + "olive oil", + "cayenne pepper", + "flour", + "rice flour" + ] + }, + { + "id": 22126, + "cuisine": "mexican", + "ingredients": [ + "serrano chilies", + "pork tenderloin", + "salt", + "onions", + "pepper", + "epazote", + "lima beans", + "masa", + "parsley sprigs", + "tomatillos", + "beef broth", + "chopped cilantro fresh", + "fennel", + "garlic", + "chopped parsley" + ] + }, + { + "id": 32938, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "red pepper flakes", + "beansprouts", + "fish sauce", + "green onions", + "carrots", + "chopped nuts", + "lime juice", + "cilantro", + "brown sugar", + "rice noodles", + "shrimp" + ] + }, + { + "id": 47284, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "large egg yolks", + "grated nutmeg", + "olive oil", + "parmigiano reggiano cheese", + "garlic cloves", + "eggplant", + "salt", + "plum tomatoes", + "water", + "lasagna noodles", + "ricotta" + ] + }, + { + "id": 6364, + "cuisine": "mexican", + "ingredients": [ + "processed cheese", + "whole kernel corn, drain", + "flour tortillas", + "diced tomatoes", + "vegetable oil", + "potatoes", + "peas" + ] + }, + { + "id": 22238, + "cuisine": "mexican", + "ingredients": [ + "beef brisket", + "garlic cloves", + "kosher salt", + "apple cider vinegar", + "chipotles in adobo", + "clove", + "flour tortillas", + "bay leaf", + "lime", + "beef broth", + "onions" + ] + }, + { + "id": 25625, + "cuisine": "southern_us", + "ingredients": [ + "pork rind", + "garlic", + "celery", + "cooked ham", + "hot pepper", + "chopped onion", + "green bell pepper", + "black-eyed peas", + "salt", + "pepper", + "cajun seasoning", + "red bell pepper" + ] + }, + { + "id": 22865, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "fresh lemon", + "flat leaf parsley", + "olives", + "saffron threads", + "preserved lemon", + "extra-virgin olive oil", + "onions", + "red potato", + "crushed garlic", + "bay leaf", + "ground cumin", + "ground ginger", + "hungarian paprika", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 13476, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "sea salt", + "red wine vinegar", + "shallots", + "chicken", + "olive oil", + "Italian parsley leaves" + ] + }, + { + "id": 38692, + "cuisine": "greek", + "ingredients": [ + "ground cloves", + "chopped almonds", + "phyllo pastry", + "honey", + "vanilla extract", + "water", + "lemon", + "white sugar", + "ground cinnamon", + "unsalted butter", + "cinnamon sticks" + ] + }, + { + "id": 42394, + "cuisine": "filipino", + "ingredients": [ + "water", + "unsweetened cocoa powder", + "sugar", + "salt", + "vanilla", + "glutinous rice", + "boiling water" + ] + }, + { + "id": 14563, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "buttermilk", + "large eggs", + "white cornmeal", + "baking powder", + "baking soda", + "salt" + ] + }, + { + "id": 25082, + "cuisine": "british", + "ingredients": [ + "water", + "salt", + "active dry yeast", + "white sugar", + "milk", + "cornmeal", + "baking soda", + "bread flour" + ] + }, + { + "id": 36065, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "potato gnocchi", + "parmesan cheese", + "kosher salt", + "unsalted butter" + ] + }, + { + "id": 15555, + "cuisine": "italian", + "ingredients": [ + "water", + "veal", + "ground paprika", + "garlic powder", + "eggs", + "olive oil", + "bread crumbs", + "parmesan cheese" + ] + }, + { + "id": 30702, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "cracked black pepper", + "dried basil", + "onion powder", + "kosher salt", + "ground red pepper", + "crushed red pepper", + "dried thyme", + "paprika" + ] + }, + { + "id": 1323, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "vanilla extract", + "baking soda", + "almond extract", + "all-purpose flour", + "milk", + "baking powder", + "salt", + "crumb topping", + "butter", + "cream cheese, soften" + ] + }, + { + "id": 41117, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "chili", + "cilantro leaves", + "kosher salt", + "garlic", + "Marcona almonds", + "grated lemon zest" + ] + }, + { + "id": 29815, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "fresh corn", + "bacon", + "okra", + "tomatoes", + "hot pepper sauce", + "chopped onion", + "black pepper", + "garlic" + ] + }, + { + "id": 41127, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "flour tortillas", + "olive oil", + "chipotle peppers", + "shredded cheddar cheese", + "salt", + "asparagus" + ] + }, + { + "id": 46221, + "cuisine": "chinese", + "ingredients": [ + "red pepper", + "cooked rice", + "Kung Pao sauce", + "broccoli", + "vegetable oil", + "cooked chicken breasts" + ] + }, + { + "id": 22490, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cilantro sprigs", + "queso fresco", + "cooked brown rice", + "diced tomatoes", + "chili powder", + "ground cumin" + ] + }, + { + "id": 19741, + "cuisine": "southern_us", + "ingredients": [ + "black beans", + "jalapeno chilies", + "purple onion", + "almond milk", + "collard greens", + "water", + "cilantro", + "ear of corn", + "grits", + "tomatoes", + "pepper", + "corn oil", + "salt", + "smoked paprika", + "sugar", + "lime", + "garlic", + "bbq sauce" + ] + }, + { + "id": 38974, + "cuisine": "mexican", + "ingredients": [ + "dark chocolate", + "serrano peppers", + "garlic", + "raw almond", + "coriander seeds", + "seeds", + "orange juice", + "chicken thighs", + "safflower oil", + "golden raisins", + "canned tomatoes", + "onions", + "black peppercorns", + "fresh thyme", + "vegetable stock", + "cinnamon sticks", + "pasilla pepper" + ] + }, + { + "id": 40339, + "cuisine": "irish", + "ingredients": [ + "large eggs", + "all-purpose flour", + "mashed potatoes", + "baking powder", + "potatoes", + "milk", + "salt" + ] + }, + { + "id": 28095, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "capers", + "flour", + "chopped parsley", + "chicken stock", + "grated parmesan cheese", + "lemon juice", + "pepper", + "butter", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 30685, + "cuisine": "filipino", + "ingredients": [ + "fresh tomatoes", + "daikon", + "lean beef", + "bok choy", + "pepper", + "salt", + "yams", + "white onion", + "pineapple", + "green chilies", + "water", + "beef broth", + "chinese spinach" + ] + }, + { + "id": 45742, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "diced tomatoes", + "guacamole", + "salsa", + "green onions", + "Mexican cheese blend", + "non-fat sour cream" + ] + }, + { + "id": 4281, + "cuisine": "southern_us", + "ingredients": [ + "brandy", + "bourbon whiskey", + "egg yolks", + "milk", + "heavy cream", + "sugar", + "rum" + ] + }, + { + "id": 40296, + "cuisine": "moroccan", + "ingredients": [ + "orange", + "all-purpose flour", + "garlic cloves", + "ground cumin", + "saffron threads", + "fresh ginger", + "lamb", + "flat leaf parsley", + "olive oil", + "yellow onion", + "carrots", + "crushed tomatoes", + "beef stock", + "freshly ground pepper", + "dried dates" + ] + }, + { + "id": 5986, + "cuisine": "chinese", + "ingredients": [ + "zucchini", + "salad dressing", + "green onions", + "boneless skinless chicken breast halves", + "orange juice", + "broccoli florets", + "red bell pepper" + ] + }, + { + "id": 23076, + "cuisine": "french", + "ingredients": [ + "cheddar cheese", + "flour", + "salt", + "diced onions", + "milk", + "heavy cream", + "diced ham", + "cold water", + "large eggs", + "dry mustard", + "chopped parsley", + "pepper", + "butter", + "all-purpose flour" + ] + }, + { + "id": 15869, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "water", + "shallots", + "cucumber", + "fish sauce", + "long buns", + "pickled carrots", + "cilantro", + "salmon", + "lime juice", + "daikon", + "bird chile", + "mayonaise", + "baguette", + "jalapeno chilies", + "garlic" + ] + }, + { + "id": 12998, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "whole milk", + "low salt chicken broth", + "ground nutmeg", + "butter", + "fresh parsley", + "panko", + "dry white wine", + "serrano ham", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 45502, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large egg yolks", + "vanilla", + "water", + "golden raisins", + "all-purpose flour", + "sliced almonds", + "large eggs", + "salt", + "grated orange peel", + "active dry yeast", + "butter", + "grated lemon peel" + ] + }, + { + "id": 43654, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "whole grain mustard", + "smoked paprika", + "chicken stock", + "brown sugar", + "garlic", + "onions", + "jack daniels", + "chili flakes", + "worcestershire sauce", + "duck drumsticks", + "ground ginger", + "black pepper", + "salt", + "ground cumin" + ] + }, + { + "id": 41006, + "cuisine": "mexican", + "ingredients": [ + "refrigerated crescent rolls", + "melted butter", + "white sugar", + "ground cinnamon", + "cream cheese", + "vanilla extract" + ] + }, + { + "id": 41847, + "cuisine": "italian", + "ingredients": [ + "basil pesto sauce", + "roasted red peppers", + "Italian bread", + "mascarpone", + "extra-virgin olive oil", + "pitted black olives", + "ground black pepper", + "salt", + "mozzarella cheese", + "large garlic cloves" + ] + }, + { + "id": 10648, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "okra", + "vegetable oil", + "ground black pepper", + "cornmeal", + "salt" + ] + }, + { + "id": 10214, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "garlic", + "jalapeno chilies", + "onions", + "Mexican beer", + "water", + "salt" + ] + }, + { + "id": 41732, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "grated parmesan cheese", + "garlic cloves", + "ground black pepper", + "salt", + "low-fat cottage cheese", + "baby spinach", + "lasagna noodles", + "shredded cheese" + ] + }, + { + "id": 8430, + "cuisine": "brazilian", + "ingredients": [ + "baobab fruit powder", + "sweet cherries", + "kale", + "almond milk", + "açai" + ] + }, + { + "id": 15773, + "cuisine": "indian", + "ingredients": [ + "bread", + "coconut cream", + "mild curry paste", + "coriander", + "brown sugar", + "lentils", + "lime" + ] + }, + { + "id": 37294, + "cuisine": "italian", + "ingredients": [ + "low sodium tomato paste", + "italian seasoning", + "tomato sauce", + "lean ground beef", + "olive oil", + "shredded mozzarella cheese", + "frozen chopped spinach", + "refrigerated pizza dough" + ] + }, + { + "id": 18373, + "cuisine": "moroccan", + "ingredients": [ + "pitted date", + "dried apricot", + "all purpose unbleached flour", + "large eggs", + "vegetable oil", + "chopped walnuts", + "sesame seeds", + "baking powder", + "salt", + "sugar", + "chopped almonds", + "cinnamon" + ] + }, + { + "id": 24096, + "cuisine": "vietnamese", + "ingredients": [ + "mint", + "chicken breasts", + "cardamom seeds", + "carrots", + "lemongrass", + "sunflower oil", + "cinnamon candy canes", + "onions", + "fish sauce", + "chili powder", + "garlic", + "green beans", + "peanuts", + "star anise", + "bean sauce", + "coriander" + ] + }, + { + "id": 28268, + "cuisine": "greek", + "ingredients": [ + "chicken stock", + "cooked chicken", + "fresh parsley", + "garbanzo beans", + "juice", + "minced garlic", + "fresh oregano", + "onions", + "greek seasoning", + "base", + "feta cheese crumbles" + ] + }, + { + "id": 32459, + "cuisine": "thai", + "ingredients": [ + "dark soy sauce", + "caster sugar", + "palm sugar", + "shallots", + "salt", + "cucumber", + "warm water", + "peanuts", + "boneless chicken breast", + "cilantro root", + "firm tofu", + "chillies", + "fish sauce", + "lemongrass", + "tamarind pulp", + "vegetable oil", + "cilantro leaves", + "beansprouts", + "black peppercorns", + "boneless chicken thighs", + "fresh ginger root", + "spring onions", + "sweet pepper", + "garlic cloves", + "snow peas" + ] + }, + { + "id": 48448, + "cuisine": "korean", + "ingredients": [ + "Korean chile flakes", + "ground black pepper", + "mung bean sprouts", + "yellow peppers", + "white vinegar", + "sugar", + "grapeseed oil", + "toasted sesame seeds", + "spinach", + "sesame oil", + "onions", + "canola oil", + "vinaigrette dressing", + "soy sauce", + "garlic cloves", + "noodles" + ] + }, + { + "id": 43441, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "aioli", + "all-purpose flour", + "panko", + "green tomatoes", + "olive oil", + "large eggs", + "cornmeal", + "ground black pepper", + "coarse salt" + ] + }, + { + "id": 34334, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper", + "fresh parsley", + "fresh parmesan cheese", + "salt", + "sun-dried tomatoes", + "purple onion", + "plum tomatoes", + "pitted kalamata olives", + "ground black pepper", + "bow-tie pasta" + ] + }, + { + "id": 45680, + "cuisine": "mexican", + "ingredients": [ + "beef stock cubes", + "yellow onion", + "canola oil", + "green chile", + "garlic", + "enchilada sauce", + "diced tomatoes", + "pork roast", + "ground cumin", + "black pepper", + "salt", + "dried oregano" + ] + }, + { + "id": 10671, + "cuisine": "spanish", + "ingredients": [ + "baguette", + "lemon", + "purple onion", + "olive oil", + "sea salt", + "cucumber", + "water", + "heirloom tomatoes", + "garlic cloves", + "black pepper", + "red wine vinegar", + "yellow bell pepper", + "flat leaf parsley" + ] + }, + { + "id": 2227, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "penne pasta", + "fresh spinach", + "garlic", + "ground turkey", + "tomato paste", + "corn", + "taco seasoning", + "tomato sauce", + "salsa", + "onions" + ] + }, + { + "id": 26756, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "sugar", + "bay leaves", + "paneer", + "green cardamom", + "garlic paste", + "ajwain", + "Himalayan salt", + "salt", + "oil", + "black peppercorns", + "red chili peppers", + "yoghurt", + "purple onion", + "brown cardamom", + "clove", + "tumeric", + "bell pepper", + "star anise", + "fenugreek seeds", + "cumin" + ] + }, + { + "id": 30717, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "reduced sodium chicken broth", + "chenpi", + "beef rib short", + "red chili peppers", + "peeled fresh ginger", + "chinese wheat noodles", + "garlic cloves", + "light brown sugar", + "soy sauce", + "cilantro stems", + "star anise", + "mung bean sprouts", + "hot red pepper flakes", + "water", + "mustard greens", + "scallions" + ] + }, + { + "id": 26744, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "salt", + "plain whole-milk yogurt", + "catfish fillets", + "vegetable oil", + "ground coriander", + "peeled fresh ginger", + "dry bread crumbs", + "ground cumin", + "green chile", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 38316, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "kalamata", + "new potatoes", + "leg of lamb", + "chopped tomatoes", + "garlic cloves", + "lemon", + "oregano" + ] + }, + { + "id": 43501, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "garlic", + "cumin", + "ground cloves", + "chuck roast", + "fresh lime juice", + "chipotle chile", + "apple cider vinegar", + "oregano", + "chicken broth", + "olive oil", + "salt" + ] + }, + { + "id": 12964, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "dried porcini mushrooms", + "ground black pepper", + "arrowroot", + "chopped celery", + "plum tomatoes", + "fresh rosemary", + "white wine", + "fresh thyme", + "butter", + "flour for dusting", + "warm water", + "kosher salt", + "bay leaves", + "dry red wine", + "carrots", + "chicken broth", + "juniper berries", + "beef", + "parsley", + "chopped onion" + ] + }, + { + "id": 36095, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "garlic cloves", + "chicken broth", + "red beans", + "onions", + "celery ribs", + "water", + "sausages", + "cooked rice", + "creole seasoning" + ] + }, + { + "id": 46437, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "roma tomatoes", + "cilantro", + "smoked paprika", + "cumin", + "jack cheese", + "olive oil", + "red wine vinegar", + "salt", + "chipotles in adobo", + "chicken broth", + "water", + "potatoes", + "garlic", + "corn tortillas", + "white onion", + "poblano peppers", + "shredded lettuce", + "salsa", + "oregano" + ] + }, + { + "id": 7346, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt pork", + "vegetable oil", + "field peas", + "water", + "okra pods", + "salt" + ] + }, + { + "id": 14410, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "vanilla extract", + "whole milk", + "sugar", + "whipping cream", + "french bread", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 26026, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "ground black pepper", + "salt", + "sea scallops", + "vegetable oil", + "mayonaise", + "panko", + "dry mustard", + "large egg yolks", + "green onions", + "chopped cilantro fresh" + ] + }, + { + "id": 49544, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "large eggs", + "tartar sauce", + "cracker crumbs", + "fillets", + "pepper", + "all-purpose flour" + ] + }, + { + "id": 7333, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "Sriracha", + "tempura batter", + "mayonaise", + "water", + "rice vinegar", + "cold water", + "sushi rice", + "salt", + "sugar", + "mirin", + "shrimp" + ] + }, + { + "id": 3634, + "cuisine": "korean", + "ingredients": [ + "chestnuts", + "flanken short ribs", + "rice wine", + "carrots", + "soy sauce", + "green onions", + "light corn syrup", + "onions", + "brown sugar", + "potatoes", + "dates", + "toasted sesame oil", + "water", + "fresh shiitake mushrooms", + "garlic" + ] + }, + { + "id": 39877, + "cuisine": "chinese", + "ingredients": [ + "Sriracha", + "garlic", + "frozen peas and carrots", + "low sodium soy sauce", + "green onions", + "skinless chicken breasts", + "large eggs", + "salt", + "canola oil", + "ground black pepper", + "sesame oil", + "cooked long-grain brown rice" + ] + }, + { + "id": 43913, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "lean ground beef", + "ricotta", + "onions", + "olive oil", + "garlic", + "carrots", + "spinach", + "fresh mozzarella", + "freshly ground pepper", + "ziti", + "salt", + "celery" + ] + }, + { + "id": 7219, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "salt", + "caraway seeds", + "raisins", + "cold milk", + "vegetable shortening", + "sugar", + "cake flour" + ] + }, + { + "id": 32729, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "red pepper", + "onions", + "parmesan cheese", + "Bisquick Baking Mix", + "cheddar cheese", + "sour cream", + "cold water", + "Kraft Miracle Whip Dressing", + "ground beef" + ] + }, + { + "id": 24127, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "dry white wine", + "Italian turkey sausage", + "fennel seeds", + "olive oil", + "large garlic cloves", + "oven-ready lasagna noodles", + "crushed tomatoes", + "whole milk ricotta cheese", + "carrots", + "fresh basil", + "grated parmesan cheese", + "fresh oregano", + "onions" + ] + }, + { + "id": 14941, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "egg roll wrappers", + "ground pork", + "chinese five-spice powder", + "water", + "sesame seeds", + "sesame oil", + "all-purpose flour", + "coleslaw", + "soy sauce", + "fresh ginger", + "onion powder", + "garlic", + "fresh lime juice", + "honey", + "fresh ginger root", + "red pepper flakes", + "orange juice", + "canola oil" + ] + }, + { + "id": 31309, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "chives", + "peanut oil", + "peanuts", + "lemon", + "beansprouts", + "brown sugar", + "rice noodles", + "king prawns", + "eggs", + "spring onions", + "garlic" + ] + }, + { + "id": 12667, + "cuisine": "filipino", + "ingredients": [ + "low sodium soy sauce", + "water chestnuts", + "onions", + "black pepper", + "carrots", + "canola oil", + "pork", + "frozen spring roll wrappers", + "cabbage", + "garlic powder", + "ground beef" + ] + }, + { + "id": 27454, + "cuisine": "cajun_creole", + "ingredients": [ + "green pepper", + "red beans", + "onions", + "water", + "sausages", + "rice" + ] + }, + { + "id": 21830, + "cuisine": "indian", + "ingredients": [ + "salt", + "water", + "white sugar", + "all-purpose flour", + "vegetable oil" + ] + }, + { + "id": 43144, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "garlic", + "fresh spinach", + "olive oil", + "walnuts", + "romano cheese", + "grated parmesan cheese", + "fresh basil", + "pinenuts", + "black olives" + ] + }, + { + "id": 29998, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "crushed red pepper", + "fennel seeds", + "large garlic cloves", + "low salt chicken broth", + "dry white wine", + "pork shoulder boston butt", + "black peppercorns", + "extra-virgin olive oil" + ] + }, + { + "id": 2904, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "eggs", + "salt", + "baked ham", + "mayonaise", + "pickled okra" + ] + }, + { + "id": 36921, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "cooking spray", + "asparagus spears", + "warm water", + "ground black pepper", + "all-purpose flour", + "pancetta", + "fresh parmesan cheese", + "sea salt", + "dried thyme", + "dry yeast", + "garlic cloves" + ] + }, + { + "id": 47087, + "cuisine": "japanese", + "ingredients": [ + "chicken breasts", + "garlic", + "scallions", + "water", + "braggs liquid aminos", + "sauce", + "Truvía® natural sweetener", + "rice vinegar", + "nonstick spray", + "mushrooms", + "ginger", + "soba noodles" + ] + }, + { + "id": 23009, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "garlic powder", + "chili powder", + "salt", + "cinnamon sticks", + "ground cumin", + "bread", + "pepper", + "zucchini", + "paprika", + "garlic cloves", + "oregano", + "black beans", + "lean ground meat", + "diced tomatoes", + "salsa", + "onions", + "green bell pepper", + "corn", + "jalapeno chilies", + "crushed red pepper flakes", + "carrots", + "cumin" + ] + }, + { + "id": 32458, + "cuisine": "indian", + "ingredients": [ + "cardamom", + "powdered sugar", + "ghee", + "flour" + ] + }, + { + "id": 29237, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "jalapeno chilies", + "crushed red pepper", + "corn starch", + "fresh cilantro", + "fresh shiitake mushrooms", + "peanut oil", + "flavoring", + "curry powder", + "green onions", + "salt", + "nonstick spray", + "fat free milk", + "sweet pepper", + "Chinese egg noodles", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 12103, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "chili flakes", + "onions", + "tomatoes", + "lemon juice", + "ground black pepper" + ] + }, + { + "id": 34207, + "cuisine": "moroccan", + "ingredients": [ + "white vinegar", + "garlic", + "ground cumin", + "harissa", + "freshly ground pepper", + "peanuts", + "salt", + "swiss chard", + "sweet paprika" + ] + }, + { + "id": 36199, + "cuisine": "irish", + "ingredients": [ + "lamb stock", + "chives", + "flat leaf parsley", + "ground black pepper", + "extra-virgin olive oil", + "kosher salt", + "lamb stew meat", + "onions", + "red potato", + "fresh thyme", + "carrots" + ] + }, + { + "id": 44103, + "cuisine": "indian", + "ingredients": [ + "chopped green bell pepper", + "purple onion", + "fresh parsley", + "olive oil", + "paprika", + "red bell pepper", + "red cabbage", + "salt", + "boneless skinless chicken breast halves", + "frozen chopped spinach", + "peeled fresh ginger", + "garlic cloves", + "ground turmeric" + ] + }, + { + "id": 28397, + "cuisine": "southern_us", + "ingredients": [ + "corn salsa", + "ancho powder", + "pork tenderloin", + "bacon slices", + "olive oil", + "cracked black pepper", + "balsamic vinegar" + ] + }, + { + "id": 23381, + "cuisine": "mexican", + "ingredients": [ + "water", + "diced tomatoes", + "sour cream", + "black beans", + "beef bouillon", + "salt", + "onions", + "hot pepper sauce", + "garlic", + "celery", + "shredded cheddar cheese", + "bacon", + "carrots", + "ground cumin" + ] + }, + { + "id": 28976, + "cuisine": "italian", + "ingredients": [ + "kahlúa", + "coffee beans", + "ladyfingers", + "granulated sugar", + "brown sugar", + "cream cheese, soften", + "cold water", + "mascarpone", + "unsweetened cocoa powder" + ] + }, + { + "id": 45180, + "cuisine": "southern_us", + "ingredients": [ + "water", + "minced onion", + "cajun seasoning", + "rice vinegar", + "corn grits", + "hot pepper sauce", + "dry white wine", + "yellow bell pepper", + "fresh lemon juice", + "large shrimp", + "olive oil", + "whole milk", + "old bay seasoning", + "garlic cloves", + "plum tomatoes", + "andouille sausage", + "unsalted butter", + "shallots", + "whipping cream", + "red bell pepper" + ] + }, + { + "id": 47039, + "cuisine": "spanish", + "ingredients": [ + "rosemary sprigs", + "olives", + "extra-virgin olive oil", + "thyme sprigs", + "manchego cheese" + ] + }, + { + "id": 36959, + "cuisine": "indian", + "ingredients": [ + "clove", + "mushrooms", + "ginger", + "green cardamom", + "onions", + "garam masala", + "lemon", + "salt", + "oil", + "spinach", + "cinnamon", + "star anise", + "green chilies", + "coriander powder", + "button mushrooms", + "cilantro leaves", + "jeera" + ] + }, + { + "id": 22927, + "cuisine": "mexican", + "ingredients": [ + "low sodium chicken broth", + "chopped onion", + "minced garlic", + "cheese", + "chopped cilantro fresh", + "ground turkey sausage", + "salsa", + "vegetable oil cooking spray", + "tomato salsa", + "corn tortillas" + ] + }, + { + "id": 46360, + "cuisine": "greek", + "ingredients": [ + "lamb rib roast", + "fresh lemon juice", + "honey", + "chopped walnuts", + "firmly packed brown sugar", + "lemon rind", + "garlic salt", + "dried mint flakes", + "garlic cloves" + ] + }, + { + "id": 32589, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "diced tomatoes", + "chopped green bell pepper", + "chopped celery", + "olive oil", + "littleneck clams", + "white wine", + "green onions" + ] + }, + { + "id": 5724, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "whole milk", + "grated lemon zest", + "ground beef", + "parmigiano reggiano cheese", + "ground pork", + "Italian bread", + "spaghetti", + "olive oil", + "ground veal", + "garlic cloves", + "onions", + "large eggs", + "extra-virgin olive oil", + "flat leaf parsley", + "oregano" + ] + }, + { + "id": 23493, + "cuisine": "italian", + "ingredients": [ + "pepper", + "dry white wine", + "garlic cloves", + "eggs", + "grated parmesan cheese", + "heavy cream", + "pasta sheets", + "unsalted butter", + "shallots", + "thyme", + "roasted hazelnuts", + "pumpkin", + "salt" + ] + }, + { + "id": 44627, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "olive oil", + "onions", + "fish fillets", + "salt", + "sambal ulek", + "garlic", + "pepper", + "coconut milk" + ] + }, + { + "id": 41474, + "cuisine": "moroccan", + "ingredients": [ + "pitted black olives", + "fresh lemon juice", + "cilantro leaves", + "feta cheese crumbles", + "extra-virgin olive oil", + "carrots", + "cumin seed" + ] + }, + { + "id": 24431, + "cuisine": "moroccan", + "ingredients": [ + "meyer lemon", + "kosher salt" + ] + }, + { + "id": 41234, + "cuisine": "french", + "ingredients": [ + "fish fillets", + "shallots", + "grapefruit", + "unsalted butter", + "heavy cream", + "bottled clam juice", + "grapefruit juice", + "dry white wine", + "fresh tarragon" + ] + }, + { + "id": 4879, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "chili powder", + "small red potato", + "salt and ground black pepper", + "butter", + "chorizo sausage", + "salsa verde", + "cream cheese", + "olive oil", + "large flour tortillas", + "chopped cilantro fresh" + ] + }, + { + "id": 6741, + "cuisine": "brazilian", + "ingredients": [ + "granulated sugar", + "key lime", + "cachaca" + ] + }, + { + "id": 42636, + "cuisine": "southern_us", + "ingredients": [ + "hot pepper sauce", + "green onions", + "hominy grits", + "grated parmesan cheese", + "shredded sharp cheddar cheese", + "unsalted butter", + "garlic", + "applewood smoked bacon", + "whole milk", + "salt" + ] + }, + { + "id": 33900, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "garlic cloves", + "radishes", + "pumpkin seeds", + "chopped cilantro fresh", + "romaine lettuce", + "boneless pork loin", + "onions", + "corn oil", + "low salt chicken broth" + ] + }, + { + "id": 10352, + "cuisine": "thai", + "ingredients": [ + "spinach", + "halibut fillets", + "jalapeno chilies", + "red bell pepper", + "sliced green onions", + "black pepper", + "lemon grass", + "sliced carrots", + "fresh lime juice", + "water", + "asparagus", + "salt", + "chopped cilantro fresh", + "fish sauce", + "thai noodles", + "peeled fresh ginger", + "shiitake mushroom caps" + ] + }, + { + "id": 15714, + "cuisine": "chinese", + "ingredients": [ + "chiles", + "light soy sauce", + "garlic", + "canola oil", + "boneless pork shoulder", + "kosher salt", + "chinese wheat noodles", + "chinese chives", + "sugar", + "bean paste", + "corn starch", + "sambal ulek", + "water", + "ginger", + "black vinegar" + ] + }, + { + "id": 39417, + "cuisine": "italian", + "ingredients": [ + "water", + "red wine", + "garlic cloves", + "dried oregano", + "mushroom caps", + "salt", + "chopped cilantro fresh", + "tomatoes", + "butter", + "chopped onion", + "polenta", + "olive oil", + "chees fresco queso", + "chipotles in adobo" + ] + }, + { + "id": 18843, + "cuisine": "jamaican", + "ingredients": [ + "red kidney beans", + "garlic", + "fresh thyme", + "freshly ground pepper", + "pepper", + "salt", + "unsweetened coconut milk", + "green onions", + "long-grain rice" + ] + }, + { + "id": 33936, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken breast", + "sour cream", + "shredded cheddar cheese", + "pizza sauce", + "salsa verde", + "hot sauce", + "kaiser rolls" + ] + }, + { + "id": 852, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "cassia cinnamon", + "star anise", + "scallions", + "chicken", + "clove", + "fresh ginger", + "free-range chickens", + "salt", + "onions", + "white pepper", + "serrano peppers", + "garlic", + "chopped cilantro", + "stock", + "yellow rock sugar", + "cilantro", + "rice vinegar", + "noodles" + ] + }, + { + "id": 27639, + "cuisine": "filipino", + "ingredients": [ + "butter", + "cassava", + "eggs", + "iodized salt", + "sugar substitute", + "coconut milk", + "pineapple" + ] + }, + { + "id": 32693, + "cuisine": "jamaican", + "ingredients": [ + "yoghurt", + "garlic", + "chicken", + "curry powder", + "vegetable oil", + "scallions", + "pepper", + "mango chutney", + "rice", + "allspice", + "potatoes", + "ginger", + "coconut milk" + ] + }, + { + "id": 21545, + "cuisine": "chinese", + "ingredients": [ + "gluten-free hoisin sauce", + "Chinese rose wine", + "coconut oil", + "sesame oil", + "bamboo shoots", + "pork cubes", + "honey", + "chinese five-spice powder", + "white pepper", + "tamari soy sauce" + ] + }, + { + "id": 14348, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "palm vinegar", + "soy sauce", + "garlic", + "water", + "salt", + "black peppercorns", + "bay leaves", + "chicken pieces" + ] + }, + { + "id": 2465, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "enchilada sauce", + "onion tops", + "flour tortillas", + "chicken", + "tomatoes", + "shredded cheese" + ] + }, + { + "id": 44743, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "fresh lemon juice", + "sugar", + "capellini", + "black pepper", + "garlic cloves", + "fresh basil", + "salt" + ] + }, + { + "id": 39023, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "dark brown sugar", + "vanilla", + "butter", + "chopped pecans", + "biscuits", + "butter flavor shortening" + ] + }, + { + "id": 27441, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "cayenne", + "french bread", + "beaten eggs", + "scallion greens", + "sweet pickle", + "dijon mustard", + "vegetable oil", + "mayonaise", + "unsalted butter", + "lettuce leaves", + "dry bread crumbs", + "capers", + "lump crab meat", + "minced onion", + "worcestershire sauce" + ] + }, + { + "id": 31289, + "cuisine": "southern_us", + "ingredients": [ + "cumin seed", + "granulated garlic", + "spanish paprika" + ] + }, + { + "id": 3039, + "cuisine": "thai", + "ingredients": [ + "lime", + "garlic", + "pork loin chops", + "crushed red pepper flakes", + "creamy peanut butter", + "green onions", + "rice vinegar", + "red bell pepper", + "teriyaki sauce", + "roasted peanuts" + ] + }, + { + "id": 11148, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "kasuri methi", + "cumin seed", + "bay leaf", + "tomatoes", + "capsicum", + "salt", + "cardamom", + "ground turmeric", + "clove", + "coriander seeds", + "paneer", + "oil", + "onions", + "red chili powder", + "cinnamon", + "cilantro leaves", + "dried red chile peppers" + ] + }, + { + "id": 5603, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "chipotle chile", + "garlic", + "cottage cheese", + "tortillas", + "water", + "salt" + ] + }, + { + "id": 16876, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "purple onion", + "cucumber", + "dried oregano", + "cooking spray", + "garlic cloves", + "boneless skinless chicken breast halves", + "tahini", + "salt", + "greek yogurt", + "iceberg lettuce", + "pitas", + "extra-virgin olive oil", + "fresh lemon juice", + "plum tomatoes" + ] + }, + { + "id": 13031, + "cuisine": "cajun_creole", + "ingredients": [ + "ice cubes", + "salt", + "onions", + "lemon", + "shrimp", + "shrimp and crab boil seasoning", + "sauce", + "corn husks", + "small red potato" + ] + }, + { + "id": 44609, + "cuisine": "italian", + "ingredients": [ + "whole milk", + "butter", + "all-purpose flour", + "confectioners sugar", + "ground cinnamon", + "dry white wine", + "vanilla extract", + "unsweetened chocolate", + "miniature semisweet chocolate chips", + "eggs", + "vegetable oil", + "salt", + "corn starch", + "unsweetened cocoa powder", + "rum", + "extra-virgin olive oil", + "grated lemon zest", + "white sugar" + ] + }, + { + "id": 43548, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "cumin seed", + "hothouse cucumber", + "tomatoes", + "cilantro leaves", + "mustard seeds", + "vegetable oil", + "fat", + "red potato", + "nonfat yogurt plain", + "onions" + ] + }, + { + "id": 34985, + "cuisine": "french", + "ingredients": [ + "lime rind", + "extra-virgin olive oil", + "fresh lime juice", + "ground black pepper", + "garlic cloves", + "fresh parmesan cheese", + "salt", + "fresh basil leaves", + "cooking spray", + "fillets" + ] + }, + { + "id": 44822, + "cuisine": "brazilian", + "ingredients": [ + "bouillon powder", + "potatoes", + "garlic cloves", + "spicy sausage", + "kale", + "yellow onion", + "water", + "salt", + "dried oregano", + "white wine", + "olive oil", + "freshly ground pepper" + ] + }, + { + "id": 21531, + "cuisine": "japanese", + "ingredients": [ + "ground black pepper", + "sugar", + "chicken carcass", + "sake", + "mirin", + "soy sauce", + "chicken" + ] + }, + { + "id": 42359, + "cuisine": "indian", + "ingredients": [ + "melted butter", + "active dry yeast", + "whole milk", + "all-purpose flour", + "plain yogurt", + "baking soda", + "cheese", + "water", + "herbs", + "garlic", + "sugar", + "whole wheat flour", + "baking powder", + "onions" + ] + }, + { + "id": 23612, + "cuisine": "jamaican", + "ingredients": [ + "salt", + "water", + "breadfruit" + ] + }, + { + "id": 29290, + "cuisine": "italian", + "ingredients": [ + "minced onion", + "basil", + "crumbs", + "oregano", + "marinara sauce", + "garlic", + "garlic powder", + "lean ground beef" + ] + }, + { + "id": 26430, + "cuisine": "moroccan", + "ingredients": [ + "vegetable oil", + "sweet paprika", + "ground cumin", + "harissa", + "green chilies", + "chopped cilantro fresh", + "ground cinnamon", + "garlic", + "fresh lemon juice", + "cayenne", + "salt", + "carrots" + ] + }, + { + "id": 20269, + "cuisine": "chinese", + "ingredients": [ + "msg", + "sherry", + "corn starch", + "medium shrimp", + "sugar", + "egg whites", + "vegetable oil", + "beansprouts", + "chicken broth", + "water", + "sesame oil", + "sliced mushrooms", + "bamboo shoots", + "white pepper", + "water chestnuts", + "salt", + "celery" + ] + }, + { + "id": 25249, + "cuisine": "french", + "ingredients": [ + "parsley sprigs", + "butter", + "low salt chicken broth", + "chestnuts", + "shallots", + "cognac", + "black truffles", + "turkey", + "thyme sprigs", + "bay leaves", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 38687, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "all-purpose flour", + "squash", + "milk", + "ricotta cheese", + "butter oil", + "onions", + "curry powder", + "large eggs", + "grated nutmeg", + "dry lasagna", + "fresh ginger", + "salt", + "fat skimmed chicken broth" + ] + }, + { + "id": 24448, + "cuisine": "mexican", + "ingredients": [ + "Old El Paso™ refried beans", + "sour cream", + "water", + "Old El Paso™ Thick 'n Chunky salsa", + "ground beef", + "American cheese", + "Pillsbury™ Refrigerated Crescent Dinner Rolls", + "ripe olives", + "Old El Paso™ taco seasoning mix", + "chopped onion" + ] + }, + { + "id": 8155, + "cuisine": "spanish", + "ingredients": [ + "minced garlic", + "zucchini", + "chopped onion", + "eggplant", + "extra-virgin olive oil", + "red bell pepper", + "ground black pepper", + "salt", + "fresh parsley", + "peeled tomatoes", + "chopped fresh thyme", + "smoked paprika" + ] + }, + { + "id": 25228, + "cuisine": "italian", + "ingredients": [ + "baby spinach", + "italian seasoning", + "chicken broth", + "oil", + "penne pasta", + "meatballs", + "onions" + ] + }, + { + "id": 10577, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "dry bread crumbs", + "bread", + "evaporated milk", + "bread flour", + "active dry yeast", + "margarine", + "eggs", + "salt" + ] + }, + { + "id": 25927, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "shredded mozzarella cheese", + "marinara sauce", + "zucchini", + "fresh parsley", + "pepperoni" + ] + }, + { + "id": 5030, + "cuisine": "mexican", + "ingredients": [ + "turkey ham", + "flour tortillas", + "shredded Monterey Jack cheese", + "salsa", + "corn kernels", + "chopped cilantro fresh" + ] + }, + { + "id": 1092, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "fresh parmesan cheese", + "green peas", + "dried thyme", + "shallots", + "medium shrimp", + "water", + "dry white wine", + "grated lemon zest", + "arborio rice", + "olive oil", + "clam juice", + "snow peas" + ] + }, + { + "id": 37371, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "minced ginger", + "rice vinegar", + "dried chile", + "soy sauce", + "garlic powder", + "scallions", + "sugar substitute", + "almond flour", + "xanthan gum", + "ground turkey", + "water", + "sesame oil", + "flavored oil" + ] + }, + { + "id": 39348, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "Alfredo sauce", + "canola oil", + "italian sausage", + "won ton wrappers", + "black olives", + "mozzarella cheese", + "chicken breasts", + "tomatoes", + "green onions", + "banana peppers" + ] + }, + { + "id": 42563, + "cuisine": "mexican", + "ingredients": [ + "grated parmesan cheese", + "fusilli", + "salad oil", + "jalapeno chilies", + "salt", + "roma tomatoes", + "red wine vinegar", + "reduced sodium kidney beans", + "fresh cilantro", + "green onions", + "red bell pepper" + ] + }, + { + "id": 15909, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "green onions", + "all-purpose flour", + "soy sauce", + "mirin", + "vegetable oil", + "corn starch", + "sugar", + "fresh ginger", + "sesame oil", + "shrimp", + "vodka", + "large eggs", + "garlic", + "seltzer water" + ] + }, + { + "id": 4415, + "cuisine": "italian", + "ingredients": [ + "salt", + "penne rigate", + "grated pecorino", + "broccoli", + "extra-virgin olive oil", + "freshly ground pepper" + ] + }, + { + "id": 46346, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "black pepper", + "red wine vinegar", + "garlic cloves", + "spinach", + "artichoke hearts", + "salt", + "fresh parsley", + "green bell pepper", + "cannellini beans", + "provolone cheese", + "fresh basil", + "olive oil", + "purple onion", + "celery" + ] + }, + { + "id": 9189, + "cuisine": "cajun_creole", + "ingredients": [ + "whole grain mustard", + "paprika", + "mayonaise", + "finely chopped fresh parsley", + "hot sauce", + "ketchup", + "green onions", + "garlic cloves", + "ground black pepper", + "chopped celery" + ] + }, + { + "id": 31053, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "salad", + "tuna fillets", + "olive oil", + "spanish paprika", + "salt" + ] + }, + { + "id": 17027, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed light brown sugar", + "refrigerated piecrusts", + "all-purpose flour", + "large eggs", + "light corn syrup", + "chocolate morsels", + "sugar", + "butter", + "chopped pecans", + "bourbon whiskey", + "vanilla extract" + ] + }, + { + "id": 40026, + "cuisine": "irish", + "ingredients": [ + "ground ginger", + "ground cloves", + "white sugar", + "eggs", + "salt", + "ground cinnamon", + "baking soda", + "shortening", + "all-purpose flour" + ] + }, + { + "id": 19870, + "cuisine": "french", + "ingredients": [ + "shallots", + "grate lime peel", + "mayonaise", + "coarse sea salt", + "sherry wine vinegar", + "Piment d'Espelette", + "ground black pepper", + "fresh lemon juice" + ] + }, + { + "id": 19415, + "cuisine": "southern_us", + "ingredients": [ + "plain yogurt", + "salt", + "large eggs", + "white cornmeal", + "corn kernels", + "all-purpose flour", + "sugar", + "butter" + ] + }, + { + "id": 40465, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "olive oil", + "flat leaf parsley", + "extra-virgin olive oil", + "parmigiano reggiano cheese", + "spaghetti" + ] + }, + { + "id": 33089, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "baguette", + "salt", + "truffle oil", + "manchego cheese", + "asparagus spears" + ] + }, + { + "id": 27155, + "cuisine": "jamaican", + "ingredients": [ + "seasoning salt", + "onions", + "pepper", + "meat", + "curry powder", + "garlic", + "fresh thyme", + "allspice" + ] + }, + { + "id": 23944, + "cuisine": "indian", + "ingredients": [ + "phyllo dough", + "finely chopped onion", + "mustard seeds", + "curry powder", + "green peas", + "kosher salt", + "yukon gold potatoes", + "canola oil", + "fresh ginger", + "cumin seed" + ] + }, + { + "id": 1583, + "cuisine": "indian", + "ingredients": [ + "water", + "cumin seed", + "ginger paste", + "garlic paste", + "mustard greens", + "ghee", + "fresh spinach", + "salt", + "white sugar", + "tomatoes", + "finely chopped onion", + "dried red chile peppers" + ] + }, + { + "id": 3081, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "1% low-fat milk", + "smoked salmon", + "half & half", + "cream cheese", + "pepper", + "extra-virgin olive oil", + "scallions", + "diced onions", + "large eggs", + "salt" + ] + }, + { + "id": 15326, + "cuisine": "french", + "ingredients": [ + "angel hair", + "potatoes", + "fine sea salt", + "fresh basil leaves", + "zucchini", + "extra-virgin olive oil", + "carrots", + "ground black pepper", + "sea salt", + "coco", + "grated parmesan cheese", + "garlic", + "green beans" + ] + }, + { + "id": 4558, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "dry white wine", + "banana leaves", + "mahi mahi fillets", + "plum tomatoes", + "bay leaves", + "fresh orange juice", + "garlic cloves", + "fresh lime juice", + "ground black pepper", + "tomato salsa", + "achiote paste", + "coarse kosher salt", + "lime", + "epazote", + "extra-virgin olive oil", + "pickled onion", + "dried oregano" + ] + }, + { + "id": 35154, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "salt", + "ground turmeric", + "chickpea flour", + "cauliflower florets", + "oil", + "chili powder", + "ground coriander", + "water", + "garlic", + "onions" + ] + }, + { + "id": 18514, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "boneless skinless chicken breasts" + ] + }, + { + "id": 29902, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "ground black pepper", + "garlic salt", + "ground cumin", + "chicken broth", + "lime", + "diced celery", + "chopped cilantro fresh", + "minced garlic", + "extra-virgin olive oil", + "noodles", + "white onion", + "salsa verde", + "carrots", + "chicken" + ] + }, + { + "id": 33277, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "fresh ginger", + "garlic", + "red bell pepper", + "tomatoes", + "curry powder", + "chili powder", + "chickpeas", + "onions", + "fresh leav spinach", + "garam masala", + "salt", + "cooked quinoa", + "green chile", + "olive oil", + "red pepper flakes", + "smoked paprika", + "cumin" + ] + }, + { + "id": 7750, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "shallots", + "extra-virgin olive oil", + "ground black pepper", + "red wine vinegar", + "top loin steaks", + "balsamic vinegar", + "salt", + "fresh rosemary", + "baby arugula", + "large garlic cloves" + ] + }, + { + "id": 4113, + "cuisine": "french", + "ingredients": [ + "tomato sauce", + "butter", + "button mushrooms", + "carrots", + "rosemary sprigs", + "bay leaves", + "sea salt", + "garlic cloves", + "chicken thighs", + "chicken broth", + "tapioca flour", + "bacon", + "cognac", + "cooking fat", + "black pepper", + "red wine", + "yellow onion", + "thyme leaves" + ] + }, + { + "id": 16108, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "orange", + "lard", + "sugar", + "salt", + "ground cinnamon", + "brandy", + "ground almonds", + "powdered sugar", + "flour" + ] + }, + { + "id": 38637, + "cuisine": "italian", + "ingredients": [ + "guanciale", + "onions", + "fresh peas", + "frozen peas" + ] + }, + { + "id": 39086, + "cuisine": "korean", + "ingredients": [ + "potato starch", + "baking soda", + "spring onions", + "salt", + "toasted sesame seeds", + "chicken wings", + "dark soy", + "ginger", + "Gochujang base", + "sweet rice flour", + "plain flour", + "ground black pepper", + "sesame oil", + "rice vinegar", + "chicken", + "fish sauce", + "egg whites", + "garlic", + "dark brown sugar" + ] + }, + { + "id": 44150, + "cuisine": "french", + "ingredients": [ + "instant espresso powder", + "salt", + "sugar", + "butter", + "large eggs", + "all-purpose flour", + "water", + "1% low-fat milk" + ] + }, + { + "id": 27941, + "cuisine": "southern_us", + "ingredients": [ + "cajun spice mix", + "finely chopped onion", + "freshly ground pepper", + "crawfish", + "all-purpose flour", + "low salt chicken broth", + "smoked bacon", + "cayenne pepper", + "chopped garlic", + "kosher salt", + "jalapeno chilies", + "scallions" + ] + }, + { + "id": 7462, + "cuisine": "mexican", + "ingredients": [ + "roasted tomatoes", + "hot sauce", + "canola oil", + "white onion", + "serrano chile", + "garlic cloves" + ] + }, + { + "id": 49569, + "cuisine": "southern_us", + "ingredients": [ + "smoked turkey", + "jalapeno chilies", + "hot sauce", + "bay leaf", + "country ham", + "parsley leaves", + "crushed red pepper", + "carrots", + "collard greens", + "black-eyed peas", + "apple cider vinegar", + "croutons", + "celery ribs", + "sweet onion", + "brown rice", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 9991, + "cuisine": "irish", + "ingredients": [ + "large egg yolks", + "sugar", + "chocolate", + "heavy cream", + "Guinness Beer" + ] + }, + { + "id": 46319, + "cuisine": "italian", + "ingredients": [ + "pepper", + "large eggs", + "sweet italian sausage", + "roasted red peppers", + "shredded sharp cheddar cheese", + "zucchini", + "salt", + "milk", + "green onions", + "Italian bread" + ] + }, + { + "id": 36599, + "cuisine": "mexican", + "ingredients": [ + "processed cheese", + "cheddar cheese", + "corn tortillas", + "vegetable oil", + "chili", + "onions" + ] + }, + { + "id": 14620, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "whole milk", + "garlic cloves", + "serrano chile", + "tomato paste", + "olive oil", + "salt", + "onions", + "ground cumin", + "pepper", + "yukon gold potatoes", + "chopped cilantro", + "ground lamb", + "cooked rice", + "garam masala", + "ground coriander", + "frozen peas" + ] + }, + { + "id": 44709, + "cuisine": "moroccan", + "ingredients": [ + "chicken legs", + "ground black pepper", + "onions", + "ground ginger", + "olive oil", + "cinnamon", + "toasted sesame seeds", + "sugar", + "boneless skinless chicken breasts", + "chicken thighs", + "prunes", + "almonds", + "salt", + "saffron" + ] + }, + { + "id": 34693, + "cuisine": "japanese", + "ingredients": [ + "sake", + "kosher salt", + "dried shiitake mushrooms", + "chicken stock", + "soy sauce", + "rice cakes", + "mitsuba", + "kamaboko", + "carrots", + "spinach", + "boneless chicken skinless thigh", + "daikon" + ] + }, + { + "id": 48173, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "buttermilk", + "self-rising cornmeal", + "white bread", + "vegetable oil", + "poultry seasoning", + "crackers", + "cornbread", + "self rising flour", + "salt", + "onions", + "chicken stock", + "butter", + "celery", + "sage" + ] + }, + { + "id": 32506, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "fresh ginger", + "cracked black pepper", + "sake", + "olive oil", + "fresh shiitake mushrooms", + "garlic chives", + "minced garlic", + "mirin", + "filet mignon steaks", + "unsalted butter" + ] + }, + { + "id": 28988, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "sliced olives", + "corn tortillas", + "dried oregano", + "shredded cheddar cheese", + "chili powder", + "dried minced onion", + "ground cumin", + "chicken broth", + "crushed tomatoes", + "spices", + "onions", + "tomatoes", + "garlic powder", + "sour cream", + "broth" + ] + }, + { + "id": 46979, + "cuisine": "italian", + "ingredients": [ + "red pepper flakes", + "penne pasta", + "crushed tomatoes", + "garlic", + "extra-virgin olive oil", + "red bell pepper", + "parmesan cheese", + "salt" + ] + }, + { + "id": 37878, + "cuisine": "mexican", + "ingredients": [ + "chile pepper", + "salt", + "pepper", + "tomatillos", + "onions", + "avocado", + "lean ground beef", + "corn tortillas", + "potatoes", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 32364, + "cuisine": "japanese", + "ingredients": [ + "dark soy sauce", + "fresh shiitake mushrooms", + "sugar", + "sake", + "mirin" + ] + }, + { + "id": 16464, + "cuisine": "irish", + "ingredients": [ + "black pepper", + "gold potatoes", + "green onions", + "cayenne pepper", + "milk", + "unsalted butter", + "salt", + "cream sauce", + "low-fat sour cream", + "panko", + "cake", + "mild cheddar cheese", + "sliced green onions", + "minced garlic", + "hot pepper sauce", + "vegetable oil", + "lemon juice" + ] + }, + { + "id": 12478, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "rice vinegar", + "mung bean sprouts", + "low sodium soy sauce", + "grated carrot", + "sesame paste", + "light brown sugar", + "ground sichuan pepper", + "persian cucumber", + "chilegarlic sauce", + "garlic", + "Chinese egg noodles" + ] + }, + { + "id": 8249, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "fresh ginger", + "salt", + "oyster sauce", + "sugar", + "broccoli florets", + "peanut oil", + "ground white pepper", + "chinese rice wine", + "baking soda", + "yellow onion", + "corn starch", + "light soy sauce", + "flank steak", + "garlic cloves" + ] + }, + { + "id": 34409, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "bay leaves", + "tomato ketchup", + "ground black pepper", + "vegetable oil", + "tomato sauce", + "beef brisket", + "yellow onion", + "onion soup mix", + "marinade", + "coca-cola" + ] + }, + { + "id": 44168, + "cuisine": "spanish", + "ingredients": [ + "wheat bread", + "green bell pepper", + "oil-cured black olives", + "vegetable broth", + "tomatoes", + "sweet onion", + "cauliflower florets", + "garlic cloves", + "green cabbage", + "fresh leav spinach", + "chopped fresh thyme", + "sweet paprika", + "fresh rosemary", + "radishes", + "extra-virgin olive oil", + "fresh parsley" + ] + }, + { + "id": 24679, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "meyer lemon", + "coarse salt" + ] + }, + { + "id": 47398, + "cuisine": "jamaican", + "ingredients": [ + "curry powder", + "potatoes", + "chicken", + "fresh thyme", + "garlic cloves", + "ground black pepper", + "salt", + "cooking oil", + "onions" + ] + }, + { + "id": 47581, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "cream", + "butter", + "cardamom", + "chicken", + "red chili powder", + "coriander powder", + "cumin seed", + "cashew nuts", + "fenugreek leaves", + "garam masala", + "salt", + "onions", + "garlic paste", + "bay leaves", + "oil", + "ground turmeric" + ] + }, + { + "id": 29382, + "cuisine": "indian", + "ingredients": [ + "coconut", + "vinegar", + "salt", + "ground turmeric", + "curry leaves", + "coriander powder", + "kappa", + "mustard seeds", + "garam masala", + "chili powder", + "oil", + "pepper", + "beef", + "garlic", + "onions" + ] + }, + { + "id": 35073, + "cuisine": "french", + "ingredients": [ + "pepper", + "salt", + "dry vermouth", + "butter", + "green onions", + "crabmeat", + "swiss cheese", + "cooked shrimp" + ] + }, + { + "id": 29038, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "ground black pepper", + "butter", + "green pepper", + "oregano", + "minced garlic", + "converted rice", + "chopped celery", + "thyme", + "andouille sausage", + "ground red pepper", + "dry mustard", + "chopped onion", + "sliced green onions", + "crushed tomatoes", + "chicken breast halves", + "salt", + "ground white pepper" + ] + }, + { + "id": 11324, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "ginger root", + "rice vinegar", + "salt", + "beets" + ] + }, + { + "id": 12166, + "cuisine": "british", + "ingredients": [ + "whipping cream", + "meringue", + "strawberries", + "sugar", + "confectioners sugar" + ] + }, + { + "id": 34564, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "coconut milk", + "honey", + "apple cider vinegar", + "blanched almond flour", + "large eggs", + "baking soda", + "sea salt" + ] + }, + { + "id": 16329, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "green pumpkin seeds", + "chopped garlic", + "chicken broth", + "stuffing", + "chopped cilantro fresh", + "unsalted butter", + "poblano chiles", + "ground cumin", + "white onion", + "heavy cream", + "dried oregano" + ] + }, + { + "id": 29037, + "cuisine": "indian", + "ingredients": [ + "water", + "curds", + "atta", + "butter", + "instant yeast", + "softened butter", + "sugar", + "salt" + ] + }, + { + "id": 7834, + "cuisine": "french", + "ingredients": [ + "capers", + "dijon mustard", + "cognac", + "water", + "shallots", + "fresh lemon juice", + "salmon fillets", + "wheat", + "fresh parsley leaves", + "smoked salmon", + "unsalted butter", + "grated lemon zest", + "Italian bread" + ] + }, + { + "id": 14974, + "cuisine": "greek", + "ingredients": [ + "garlic powder", + "smoked paprika", + "pepper", + "sweet potatoes", + "romano cheese", + "egg whites", + "cumin", + "rosemary", + "greek style plain yogurt" + ] + }, + { + "id": 154, + "cuisine": "italian", + "ingredients": [ + "vanilla beans", + "vanilla extract", + "unsalted pistachios", + "whole milk", + "heavy whipping cream", + "kosher salt", + "almond extract", + "sugar", + "large eggs", + "strawberries" + ] + }, + { + "id": 45570, + "cuisine": "indian", + "ingredients": [ + "celery ribs", + "peeled fresh ginger", + "chopped onion", + "mustard seeds", + "clove", + "vegetable oil", + "garlic cloves", + "ground turmeric", + "coriander seeds", + "vegetable broth", + "carrots", + "plum tomatoes", + "red lentils", + "chives", + "cumin seed", + "dried chile" + ] + }, + { + "id": 34923, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "freshly grated parmesan", + "white mushrooms", + "sage leaves", + "won ton wrappers", + "garlic cloves", + "parsnips", + "unsalted butter", + "onions", + "olive oil", + "portabello mushroom" + ] + }, + { + "id": 40925, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "flour", + "lemon", + "peaches", + "butter", + "vanilla ice cream", + "almond extract", + "chopped pecans", + "brown sugar", + "bourbon whiskey", + "maple syrup" + ] + }, + { + "id": 17950, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "jalapeno chilies", + "chopped cilantro fresh", + "olive oil", + "beef stew meat", + "lime", + "green onions", + "dried oregano", + "salsa verde", + "onions" + ] + }, + { + "id": 23992, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "fresh shiitake mushrooms", + "green beans", + "chicken stock", + "beef stock", + "asparagus spears", + "unsalted butter", + "dry red wine", + "red bell pepper", + "zucchini", + "carrots", + "beef tenderloin steaks" + ] + }, + { + "id": 32863, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "cilantro leaves", + "salt", + "garam masala", + "rice" + ] + }, + { + "id": 16743, + "cuisine": "vietnamese", + "ingredients": [ + "sweet chili sauce", + "spring onions", + "sprouts", + "carrots", + "kaffir lime leaves", + "peanuts", + "sesame oil", + "cilantro leaves", + "snow peas", + "lime juice", + "capsicum", + "rice vermicelli", + "fillets", + "fish sauce", + "mint leaves", + "large garlic cloves", + "chinese cabbage" + ] + }, + { + "id": 17318, + "cuisine": "italian", + "ingredients": [ + "fresh coriander", + "fresh orange juice", + "grated orange", + "tomatoes", + "shallots", + "fresh lemon juice", + "unsalted butter", + "all-purpose flour", + "sea bass", + "red wine vinegar", + "Italian bread" + ] + }, + { + "id": 24987, + "cuisine": "thai", + "ingredients": [ + "celery ribs", + "red cabbage", + "soy sauce", + "japanese peanuts", + "avocado", + "shredded carrots", + "lettuce", + "olive oil", + "lemon" + ] + }, + { + "id": 39002, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "egg yolks", + "white sugar", + "ground walnuts", + "salt", + "honey", + "butter", + "milk", + "egg whites", + "all-purpose flour" + ] + }, + { + "id": 48409, + "cuisine": "mexican", + "ingredients": [ + "water", + "brown rice", + "vegetable broth", + "black beans", + "olive oil", + "cilantro", + "chopped cilantro fresh", + "lime juice", + "tomatillos", + "onions", + "minced garlic", + "Mexican oregano", + "tomatoes with juice", + "ground cumin" + ] + }, + { + "id": 42077, + "cuisine": "greek", + "ingredients": [ + "quinoa", + "kalamata", + "garlic cloves", + "red chili peppers", + "butter", + "vine tomatoes", + "mint leaves", + "extra-virgin olive oil", + "chicken", + "feta cheese", + "lemon", + "purple onion" + ] + }, + { + "id": 23213, + "cuisine": "russian", + "ingredients": [ + "mayonaise", + "fresh parsley", + "olive oil", + "salmon", + "onions", + "eggs", + "baking potatoes" + ] + }, + { + "id": 3941, + "cuisine": "filipino", + "ingredients": [ + "avocado", + "sugar", + "ice cubes", + "powdered milk" + ] + }, + { + "id": 13248, + "cuisine": "italian", + "ingredients": [ + "penne pasta", + "green peas", + "gorgonzola", + "pepper", + "heavy whipping cream", + "salt", + "asparagus tips" + ] + }, + { + "id": 3304, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "black pepper", + "paprika", + "fresh parsley", + "chicken legs", + "olive oil", + "salt", + "cumin", + "chicken broth", + "fresh cilantro", + "curry", + "onions", + "tumeric", + "baking potatoes", + "celery" + ] + }, + { + "id": 47651, + "cuisine": "chinese", + "ingredients": [ + "broccoli florets", + "yellow onion", + "minced garlic", + "butter", + "noodles", + "green bell pepper", + "chicken breasts", + "sauce", + "olive oil", + "paprika" + ] + }, + { + "id": 32476, + "cuisine": "korean", + "ingredients": [ + "diced onions", + "black pepper", + "sesame oil", + "soy sauce", + "mirin", + "pear juice", + "green onions", + "red chili peppers", + "beef", + "garlic" + ] + }, + { + "id": 42816, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "boiling potatoes", + "soy sauce", + "carrots", + "sake", + "vegetable oil", + "chuck", + "sugar", + "scallions" + ] + }, + { + "id": 34032, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "ground black pepper", + "vietnamese fish sauce", + "bird chile", + "black peppercorns", + "steamed rice", + "shallots", + "scallions", + "boneless chicken skinless thigh", + "fresh ginger", + "vegetable oil", + "cinnamon sticks", + "chicken stock", + "fresh cilantro", + "granulated sugar", + "dark brown sugar", + "chopped garlic" + ] + }, + { + "id": 23458, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "all-purpose flour", + "bone-in chicken breast halves", + "dry white wine", + "olive oil", + "salt", + "dijon mustard", + "heavy whipping cream" + ] + }, + { + "id": 22450, + "cuisine": "brazilian", + "ingredients": [ + "whipping cream", + "avocado", + "fresh lemon juice", + "superfine sugar", + "salt" + ] + }, + { + "id": 40887, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "salt", + "dry white wine", + "parmigiano", + "unsalted butter", + "yellow onion", + "organic chicken", + "heavy cream" + ] + }, + { + "id": 26249, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "flour", + "pineapple", + "red bell pepper", + "white vinegar", + "pepper", + "boneless skinless chicken breasts", + "salt", + "canola oil", + "cold water", + "water", + "red pepper flakes", + "corn starch", + "sugar", + "green onions", + "garlic", + "onions" + ] + }, + { + "id": 32412, + "cuisine": "irish", + "ingredients": [ + "flour", + "potatoes", + "milk", + "salt", + "brown sugar", + "butter" + ] + }, + { + "id": 21168, + "cuisine": "mexican", + "ingredients": [ + "seasoning", + "shredded cheddar cheese", + "chicken breast halves", + "sour cream", + "brown sugar", + "flour tortillas", + "shredded lettuce", + "ground cumin", + "pepper", + "flank steak", + "salt", + "tomatoes", + "garlic powder", + "chili powder", + "italian salad dressing" + ] + }, + { + "id": 44058, + "cuisine": "vietnamese", + "ingredients": [ + "dark soy sauce", + "beef", + "walnuts", + "pepper", + "garlic", + "ginger juice", + "rice wine", + "onions", + "honey", + "kiwi fruits" + ] + }, + { + "id": 14549, + "cuisine": "italian", + "ingredients": [ + "swiss cheese", + "ground black pepper", + "onions", + "baby spinach leaves", + "salt", + "large eggs", + "canola oil" + ] + }, + { + "id": 41385, + "cuisine": "irish", + "ingredients": [ + "pepper", + "carrots", + "fresh green bean", + "onions", + "potatoes", + "pork shoulder", + "salt", + "cabbage" + ] + }, + { + "id": 19640, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "soy sauce", + "other vegetables", + "boneless skinless chicken breasts", + "salt", + "garlic cloves", + "chinese rice wine", + "pepper", + "Sriracha", + "onion powder", + "sauce", + "snow peas", + "eggs", + "black pepper", + "garlic powder", + "marinade", + "cayenne pepper", + "corn starch", + "bread", + "sugar", + "water", + "flour", + "ginger", + "oil" + ] + }, + { + "id": 11726, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "zucchini", + "garlic", + "lime", + "chicken breasts", + "chopped cilantro", + "coconut oil", + "jalapeno chilies", + "coconut milk", + "chicken broth", + "green curry paste", + "red pepper", + "onions" + ] + }, + { + "id": 13770, + "cuisine": "southern_us", + "ingredients": [ + "orange juice concentrate", + "strawberry extract", + "bananas", + "strawberries", + "low-fat buttermilk", + "orange rind", + "sugar", + "vanilla extract" + ] + }, + { + "id": 15102, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "sour cream", + "salt", + "adobo sauce", + "pepper", + "fresh lime juice", + "salsa" + ] + }, + { + "id": 29097, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "jalapeno chilies", + "onions", + "flour tortillas", + "fresh lime juice", + "fat free less sodium chicken broth", + "pork tenderloin", + "chopped cilantro", + "ground black pepper", + "salt", + "plum tomatoes" + ] + }, + { + "id": 34547, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "artificial sweetener", + "cauliflower florets", + "onions", + "mint", + "cooking spray", + "passata", + "frozen peas", + "mild curry powder", + "potatoes", + "garlic", + "coriander", + "water", + "red pepper", + "natural yogurt" + ] + }, + { + "id": 6717, + "cuisine": "southern_us", + "ingredients": [ + "biscuits", + "butter", + "freshly ground pepper", + "country ham", + "all-purpose flour", + "brown sugar", + "salt", + "brewed coffee", + "hot sauce" + ] + }, + { + "id": 42978, + "cuisine": "mexican", + "ingredients": [ + "fire roasted diced tomatoes", + "corn kernels", + "jalapeno chilies", + "cilantro leaves", + "kosher salt", + "quinoa", + "vegetable broth", + "black beans", + "olive oil", + "chili powder", + "cumin", + "avocado", + "lime", + "ground black pepper", + "garlic" + ] + }, + { + "id": 20914, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "ground cinnamon", + "cayenne", + "salt", + "red bell pepper", + "chicken broth", + "honey", + "butternut squash", + "garlic cloves", + "onions", + "caraway seeds", + "black pepper", + "zucchini", + "cornish hens", + "fresh parsley", + "turnips", + "tomatoes", + "olive oil", + "paprika", + "fresh lemon juice", + "ground cumin" + ] + }, + { + "id": 25957, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "rice", + "peanuts", + "shrimp", + "spinach", + "scallions", + "ginger" + ] + }, + { + "id": 42240, + "cuisine": "indian", + "ingredients": [ + "white vinegar", + "fat free less sodium chicken broth", + "baking potatoes", + "chopped onion", + "ground cardamom", + "black peppercorns", + "cooking spray", + "salt", + "cumin seed", + "chopped cilantro fresh", + "sugar", + "ground red pepper", + "boneless pork loin", + "garlic cloves", + "ground cinnamon", + "fresh ginger", + "diced tomatoes", + "ground coriander", + "mustard seeds" + ] + }, + { + "id": 43328, + "cuisine": "italian", + "ingredients": [ + "sugar", + "dry yeast", + "olive oil", + "salt", + "warm water", + "cooking spray", + "whole wheat flour", + "all-purpose flour" + ] + }, + { + "id": 31021, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "paprika", + "garlic cloves", + "mango", + "avocado", + "green onions", + "salt", + "fresh lime juice", + "jalapeno chilies", + "purple onion", + "corn tortillas", + "canola oil", + "tilapia fillets", + "ground red pepper", + "cumin seed", + "chopped cilantro fresh" + ] + }, + { + "id": 27837, + "cuisine": "italian", + "ingredients": [ + "red pepper flakes", + "oil", + "olive oil", + "garlic", + "pinenuts", + "linguine", + "fresh parsley", + "sea scallops", + "salt" + ] + }, + { + "id": 6738, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "pizza doughs", + "cooking spray", + "nonfat ricotta cheese", + "fresh parmesan cheese", + "garlic cloves", + "yellow corn meal", + "gruyere cheese" + ] + }, + { + "id": 35916, + "cuisine": "french", + "ingredients": [ + "red wine", + "salt", + "bay leaf", + "olive oil", + "black olives", + "tuna", + "basil", + "green pepper", + "onions", + "fresh tomatoes", + "garlic", + "anchovy fillets" + ] + }, + { + "id": 11825, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "garlic", + "chopped parsley", + "capers", + "orzo", + "lemon juice", + "honey", + "salt", + "grape tomatoes", + "extra-virgin olive oil", + "feta cheese crumbles" + ] + }, + { + "id": 1616, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "sugar", + "butter" + ] + }, + { + "id": 16527, + "cuisine": "korean", + "ingredients": [ + "fresh rosemary", + "balsamic vinegar", + "olive oil", + "pepper", + "salt", + "fresh thyme leaves" + ] + }, + { + "id": 26222, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "large eggs", + "dried fish flakes", + "silken tofu", + "soy sauce", + "green onions", + "sake", + "water" + ] + }, + { + "id": 5579, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "chili powder", + "ground almonds", + "ground turmeric", + "plain yogurt", + "garlic", + "onions", + "ground cinnamon", + "heavy cream", + "ground white pepper", + "chicken stock", + "cooking oil", + "canned tomatoes", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 37117, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salsa", + "seasoning mix", + "flour tortillas", + "green chilies", + "garlic powder", + "cream cheese", + "ripe olives", + "picante sauce", + "green onions", + "sour cream" + ] + }, + { + "id": 36395, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "cilantro", + "garlic cloves", + "lettuce leaves", + "black olives", + "chorizo sausage", + "ground black pepper", + "extra-virgin olive oil", + "arugula", + "balsamic vinegar", + "baby zucchini", + "chicken" + ] + }, + { + "id": 38875, + "cuisine": "moroccan", + "ingredients": [ + "clove", + "paprika", + "allspice", + "cayenne", + "salt", + "ground black pepper", + "garlic", + "ground cumin", + "cinnamon", + "ground coriander" + ] + }, + { + "id": 31059, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "salt", + "unsweetened coconut milk", + "shallots", + "ground white pepper", + "all potato purpos", + "yellow curry paste", + "chicken broth", + "vegetable oil", + "chicken" + ] + }, + { + "id": 38190, + "cuisine": "japanese", + "ingredients": [ + "water", + "ghee", + "salt", + "all-purpose flour", + "sunflower oil" + ] + }, + { + "id": 13283, + "cuisine": "spanish", + "ingredients": [ + "dry white wine", + "spanish paprika", + "olive oil", + "garlic", + "large shrimp", + "lemon", + "flat leaf parsley", + "ground black pepper", + "salt" + ] + }, + { + "id": 25206, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "shortcakes", + "heavy whipping cream", + "self rising flour", + "whipped cream", + "granulated sugar", + "butter", + "full fat cream cheese", + "pure vanilla extract", + "lemon-lime soda", + "strawberries" + ] + }, + { + "id": 32174, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium soy sauce", + "toasted sesame seeds", + "cilantro leaves", + "vegetable oil", + "sliced green onions", + "scallops", + "toasted sesame oil" + ] + }, + { + "id": 28149, + "cuisine": "indian", + "ingredients": [ + "grated coconut", + "garlic cloves", + "ground cumin", + "spinach", + "salt", + "dried chile", + "curry leaves", + "shallots", + "mustard seeds", + "coconut oil", + "green chilies", + "ground turmeric" + ] + }, + { + "id": 29897, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "ginger", + "mustard seeds", + "chopped tomatoes", + "chili powder", + "chickpeas", + "tumeric", + "sweet potatoes", + "cilantro leaves", + "ground cumin", + "garam masala", + "vegetable stock", + "garlic cloves" + ] + }, + { + "id": 15572, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "chicken breast halves", + "all-purpose flour", + "dried oregano", + "fat free less sodium chicken broth", + "crushed red pepper", + "garlic cloves", + "black pepper", + "pitted green olives", + "chopped onion", + "angel hair", + "olive oil", + "salt", + "seedless red grapes" + ] + }, + { + "id": 15538, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "apple cider vinegar", + "purple onion", + "red bell pepper", + "yellow corn meal", + "dijon mustard", + "buttermilk", + "all-purpose flour", + "boneless skinless chicken breast halves", + "ground black pepper", + "vegetable oil", + "salt", + "cooked white rice", + "romaine lettuce", + "chopped green bell pepper", + "bacon", + "cayenne pepper" + ] + }, + { + "id": 1826, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "top sirloin", + "onions", + "soy sauce", + "ground black pepper", + "fresh mushrooms", + "sesame seeds", + "cooking wine", + "white sugar", + "pear juice", + "green onions", + "toasted sesame oil" + ] + }, + { + "id": 43873, + "cuisine": "mexican", + "ingredients": [ + "cider vinegar", + "lime wedges", + "garlic cloves", + "chiles", + "pork tenderloin", + "salsa", + "corn tortillas", + "fresh cilantro", + "salt", + "sour cream", + "sugar", + "ground red pepper", + "cumin seed", + "dried oregano" + ] + }, + { + "id": 24363, + "cuisine": "indian", + "ingredients": [ + "peeled fresh ginger", + "fresh lemon juice", + "raita", + "ground black pepper", + "ground coriander", + "ground turmeric", + "salt", + "boneless skinless chicken breast halves", + "ground cumin", + "cooking spray", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 29961, + "cuisine": "irish", + "ingredients": [ + "eggs", + "unsalted butter", + "dark brown sugar", + "superfine sugar", + "salt", + "unsweetened cocoa powder", + "cream cheese frosting", + "stout", + "sour cream", + "pure vanilla extract", + "baking soda", + "all-purpose flour" + ] + }, + { + "id": 48221, + "cuisine": "japanese", + "ingredients": [ + "smoked salmon", + "cucumber", + "sushi rice", + "wasabi paste", + "nori", + "avocado", + "rice vinegar" + ] + }, + { + "id": 9074, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "vegetable oil", + "parmesan cheese", + "milk", + "salt", + "tapioca starch" + ] + }, + { + "id": 28757, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "pepper", + "carrots", + "fresh basil", + "Alfredo sauce", + "chicken broth", + "lasagna noodles", + "cream of mushroom soup", + "Italian cheese", + "cooked chicken" + ] + }, + { + "id": 26126, + "cuisine": "chinese", + "ingredients": [ + "wine", + "sesame oil", + "soy sauce", + "corn starch", + "sugar", + "oyster sauce", + "light soy sauce", + "ground white pepper" + ] + }, + { + "id": 36497, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "baby spinach", + "salt", + "ground black pepper", + "extra-virgin olive oil", + "fresh lemon juice", + "water", + "mustard greens", + "garlic cloves", + "finely chopped onion", + "crushed red pepper", + "basmati rice" + ] + }, + { + "id": 4153, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "pecan halves", + "dark brown sugar", + "pure vanilla extract", + "granulated sugar", + "evaporated milk" + ] + }, + { + "id": 34474, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "ground red pepper", + "cilantro leaves", + "cinnamon sticks", + "ground cumin", + "ground ginger", + "ground black pepper", + "paprika", + "chopped onion", + "bone in chicken thighs", + "unsalted chicken stock", + "dried apricot", + "garlic", + "ground coriander", + "canola oil", + "honey", + "lemon wedge", + "chickpeas", + "ground turmeric" + ] + }, + { + "id": 12834, + "cuisine": "chinese", + "ingredients": [ + "celery ribs", + "vegetable oil", + "carrots", + "chicken thighs", + "soy sauce", + "chili oil", + "chopped cilantro", + "sesame oil", + "chinese five-spice powder", + "onions", + "chicken stock", + "chili pepper flakes", + "bok choy" + ] + }, + { + "id": 43369, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "bacon", + "mustard powder", + "eggs", + "salt", + "onions", + "tomatoes", + "paprika", + "salad dressing", + "lime juice", + "cayenne pepper" + ] + }, + { + "id": 20475, + "cuisine": "southern_us", + "ingredients": [ + "agave nectar", + "cinnamon", + "egg whites", + "pecans", + "sea salt" + ] + }, + { + "id": 5478, + "cuisine": "italian", + "ingredients": [ + "pizza sauce", + "breadstick", + "italian seasoning", + "shredded mozzarella cheese", + "grated parmesan cheese" + ] + }, + { + "id": 8665, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "vegetable oil", + "sweet peas", + "frozen chopped spinach", + "curry powder", + "garlic", + "ground cumin", + "pepper", + "red pepper flakes", + "onions", + "chicken broth", + "garbanzo beans", + "salt" + ] + }, + { + "id": 30261, + "cuisine": "chinese", + "ingredients": [ + "sea bass", + "green onions", + "peanut oil", + "chili pepper", + "sesame oil", + "Shaoxing wine", + "ginger", + "soy sauce", + "szechwan peppercorns" + ] + }, + { + "id": 17332, + "cuisine": "italian", + "ingredients": [ + "nonfat greek yogurt", + "1% low-fat milk", + "unflavored gelatin", + "chocolate shavings", + "semisweet chocolate", + "unsweetened cocoa powder", + "sugar", + "vanilla extract" + ] + }, + { + "id": 20830, + "cuisine": "italian", + "ingredients": [ + "refrigerated pizza dough", + "kosher salt", + "garlic", + "rosemary", + "black pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 922, + "cuisine": "french", + "ingredients": [ + "sugar", + "heavy cream", + "large egg whites", + "apricots", + "pure vanilla extract", + "almond extract", + "unsweetened cocoa powder", + "water", + "confectioners sugar" + ] + }, + { + "id": 22789, + "cuisine": "french", + "ingredients": [ + "fresh chives", + "bacon", + "fat skimmed chicken broth", + "potatoes", + "salt", + "ground pepper", + "dry sherry", + "half & half", + "chopped onion" + ] + }, + { + "id": 29784, + "cuisine": "italian", + "ingredients": [ + "peaches", + "grated lemon zest", + "nectarines", + "cantaloupe", + "blueberries", + "kiwifruit", + "strawberries", + "sugar", + "fresh orange juice", + "grappa" + ] + }, + { + "id": 34019, + "cuisine": "cajun_creole", + "ingredients": [ + "bacon drippings", + "onion powder", + "paprika", + "cornmeal", + "garlic powder", + "sea salt", + "thyme", + "dried oregano", + "black pepper", + "cajun seasoning", + "cayenne pepper", + "marjoram", + "lemon wedge", + "basil", + "fillets", + "cumin" + ] + }, + { + "id": 11487, + "cuisine": "russian", + "ingredients": [ + "Belgian endive", + "red wine vinegar", + "chives", + "vegetable oil", + "dijon mustard", + "walnut oil" + ] + }, + { + "id": 29497, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "pizza doughs", + "olive oil", + "mozzarella cheese", + "arugula", + "prosciutto" + ] + }, + { + "id": 41752, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "sesame seeds", + "garlic cloves", + "cold water", + "water", + "boneless skinless chicken breasts", + "soy sauce", + "green onions", + "corn starch", + "ground ginger", + "honey", + "sesame oil" + ] + }, + { + "id": 47503, + "cuisine": "chinese", + "ingredients": [ + "roasted cashews", + "reduced sodium soy sauce", + "purple onion", + "boneless skinless chicken breast halves", + "snow pea pods", + "garlic", + "corn starch", + "water", + "water chestnuts", + "oyster sauce", + "canola oil", + "fresh ginger", + "sweet pepper", + "toasted sesame oil" + ] + }, + { + "id": 45332, + "cuisine": "russian", + "ingredients": [ + "cold water", + "chocolate glaze", + "butter", + "lemon juice", + "dark chocolate", + "egg whites", + "all-purpose flour", + "eggs", + "unsalted butter", + "vanilla extract", + "sugar", + "agar", + "condensed milk" + ] + }, + { + "id": 6881, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "shallots", + "galangal", + "chiles", + "lemon zest", + "salt", + "mussels", + "thai basil", + "garlic", + "coconut", + "cooking oil", + "lemon juice" + ] + }, + { + "id": 11823, + "cuisine": "moroccan", + "ingredients": [ + "garbanzo beans", + "vegetable broth", + "chopped cilantro fresh", + "saffron threads", + "russet potatoes", + "cinnamon sticks", + "butternut squash", + "garlic cloves", + "ground cumin", + "olive oil", + "diced tomatoes", + "onions" + ] + }, + { + "id": 1347, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "bacon", + "frozen corn kernels", + "sliced green onions", + "bread", + "cooking spray", + "salt", + "plum tomatoes", + "ground black pepper", + "1% low-fat milk", + "ground coriander", + "ground cumin", + "large eggs", + "part-skim ricotta cheese", + "chopped cilantro fresh" + ] + }, + { + "id": 47229, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chinese eggplants", + "chinkiang vinegar", + "minced ginger", + "scallions", + "sugar", + "Shaoxing wine", + "garlic chili sauce", + "minced garlic", + "hot pepper" + ] + }, + { + "id": 1239, + "cuisine": "vietnamese", + "ingredients": [ + "small yellow onion", + "crabmeat", + "chopped cilantro fresh", + "tapioca pearls", + "medium shrimp", + "canola oil", + "boneless skinless chicken breasts", + "scallions", + "long grain white rice", + "chicken stock", + "salt", + "dried wood ear mushrooms" + ] + }, + { + "id": 35734, + "cuisine": "irish", + "ingredients": [ + "salt", + "buttermilk", + "pastry flour", + "baking soda" + ] + }, + { + "id": 24312, + "cuisine": "french", + "ingredients": [ + "honey", + "heavy cream", + "lemon", + "fromage blanc", + "strawberries" + ] + }, + { + "id": 12501, + "cuisine": "japanese", + "ingredients": [ + "water", + "vegetable oil", + "salt", + "soba", + "pork baby back ribs", + "pork shoulder butt", + "shoyu", + "scallions", + "fresh ginger", + "baby spinach", + "soft-boiled egg", + "chicken", + "soy sauce", + "leeks", + "garlic", + "konbu" + ] + }, + { + "id": 32908, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "salt", + "onions", + "apricot halves", + "leg of lamb", + "grated orange", + "low sodium chicken broth", + "orange juice", + "chopped fresh mint", + "garlic", + "cinnamon sticks" + ] + }, + { + "id": 20330, + "cuisine": "french", + "ingredients": [ + "granulated sugar", + "confectioners sugar", + "large egg whites", + "1% low-fat milk", + "cream of tartar", + "vanilla", + "coffee granules", + "corn starch" + ] + }, + { + "id": 12988, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "chopped pecans", + "baking soda", + "salt", + "light brown sugar", + "baking powder", + "sour cream", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 7958, + "cuisine": "chinese", + "ingredients": [ + "pork", + "cooking oil", + "bamboo shoots", + "chinese rice wine", + "chinese black mushrooms", + "napa cabbage", + "sugar", + "ground black pepper", + "corn starch", + "chicken broth", + "soy sauce", + "rice cakes" + ] + }, + { + "id": 6252, + "cuisine": "cajun_creole", + "ingredients": [ + "chili pepper", + "diced tomatoes", + "salt", + "shrimp", + "milk", + "extra-virgin olive oil", + "margarine", + "onions", + "pepper", + "crushed red pepper flakes", + "all-purpose flour", + "toast", + "chopped bell pepper", + "chopped celery", + "creole seasoning", + "grits" + ] + }, + { + "id": 49619, + "cuisine": "mexican", + "ingredients": [ + "low sodium chicken broth", + "salt", + "white onion", + "vegetable oil", + "dried oregano", + "tomato paste", + "mushrooms", + "ancho chile pepper", + "water", + "large garlic cloves" + ] + }, + { + "id": 33356, + "cuisine": "russian", + "ingredients": [ + "whole grain mustard", + "salt", + "bay leaf", + "brandy", + "crimini mushrooms", + "oil", + "beef steak", + "beef stock", + "crème fraîche", + "onions", + "pepper", + "butter", + "flat leaf parsley" + ] + }, + { + "id": 843, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "vegetable broth", + "arborio rice", + "dry white wine", + "saffron threads", + "grated parmesan cheese", + "olive oil", + "peas" + ] + }, + { + "id": 9273, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "tomatillos", + "chopped cilantro fresh", + "salt", + "serrano chile", + "white onion", + "fresh lime juice" + ] + }, + { + "id": 5814, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "pie shell", + "sweetened coconut flakes", + "corn starch", + "butter", + "crushed pineapple", + "granulated sugar", + "vanilla" + ] + }, + { + "id": 3952, + "cuisine": "chinese", + "ingredients": [ + "bibb lettuce", + "green onions", + "onions", + "olive oil", + "shredded carrots", + "ginger", + "soy sauce", + "hoisin sauce", + "lean ground beef", + "toasted sesame seeds", + "peanuts", + "water chestnuts", + "garlic" + ] + }, + { + "id": 40688, + "cuisine": "southern_us", + "ingredients": [ + "fat free milk", + "corn mix muffin", + "country ham", + "chopped pecans", + "egg substitute" + ] + }, + { + "id": 12459, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "unsalted butter", + "red wine", + "fresh lemon juice", + "onions", + "honey", + "spices", + "fresh parsley leaves", + "bay leaf", + "parsley sprigs", + "bosc pears", + "salt", + "carrots", + "orange zest", + "juniper berries", + "vegetable oil", + "all-purpose flour", + "duck drumsticks" + ] + }, + { + "id": 29911, + "cuisine": "japanese", + "ingredients": [ + "cooked brown rice", + "large eggs", + "scallions", + "fresh ginger", + "edamame", + "minced garlic", + "ponzu", + "shrimp", + "eggplant", + "peanut oil" + ] + }, + { + "id": 27664, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "water", + "sesame oil", + "chicken", + "soy sauce", + "cooking oil", + "garlic", + "red chili peppers", + "fresh ginger", + "cilantro", + "crawfish", + "szechwan peppercorns", + "salt" + ] + }, + { + "id": 17345, + "cuisine": "indian", + "ingredients": [ + "whole milk", + "saffron", + "fruit", + "ghee", + "sugar", + "rice", + "rose water", + "mango" + ] + }, + { + "id": 39339, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "vegetable oil", + "white wine vinegar", + "corn starch", + "cold water", + "dried basil", + "worcestershire sauce", + "beef broth", + "pepper", + "cajun seasoning", + "salt", + "onions", + "mashed potatoes", + "beef", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 3399, + "cuisine": "italian", + "ingredients": [ + "pepper", + "zucchini", + "onions", + "chicken broth", + "whole grain rice", + "salt", + "olive oil", + "garlic", + "eggs", + "parmesan cheese", + "fresh parsley" + ] + }, + { + "id": 49284, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "whipping cream", + "vegetable oil", + "filet mignon", + "epazote", + "olive oil", + "poblano chiles" + ] + }, + { + "id": 24698, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "pork tenderloin", + "red pepper", + "garlic cloves", + "ground ginger", + "fresh ginger", + "sesame oil", + "beef broth", + "bok choy", + "soy sauce", + "garlic powder", + "vegetable oil", + "chinese five-spice powder", + "onions", + "kosher salt", + "sherry", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 26903, + "cuisine": "french", + "ingredients": [ + "olive oil", + "crimini mushrooms", + "linguine", + "fresh parsley leaves", + "tomato paste", + "boneless skinless chicken breasts", + "cipollini onions", + "all-purpose flour", + "ground black pepper", + "fresh thyme leaves", + "garlic", + "pancetta", + "unsalted butter", + "red wine", + "salt" + ] + }, + { + "id": 20415, + "cuisine": "southern_us", + "ingredients": [ + "fresh ginger", + "cinnamon sticks", + "cider vinegar", + "lemon", + "watermelon", + "salt", + "sugar", + "mace" + ] + }, + { + "id": 29969, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "red wine vinegar", + "tomatoes", + "olive oil", + "ripe olives", + "seasoning salt", + "garlic cloves", + "green chile", + "green onions" + ] + }, + { + "id": 42414, + "cuisine": "french", + "ingredients": [ + "full fat coconut milk", + "arrowroot flour", + "unsweetened shredded dried coconut", + "sea salt", + "coconut water", + "coconut oil", + "vanilla powder", + "eggs", + "bananas", + "pitted prunes" + ] + }, + { + "id": 34079, + "cuisine": "mexican", + "ingredients": [ + "curry powder", + "cumin", + "avocado", + "garlic", + "white onion", + "salt", + "bread", + "lime" + ] + }, + { + "id": 35780, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "black pepper", + "ground red pepper", + "cumin seed", + "chicken thighs", + "whole allspice", + "coriander seeds", + "salt", + "couscous", + "sugar", + "ground nutmeg", + "chickpeas", + "onions", + "ground cinnamon", + "olive oil", + "raisins", + "low salt chicken broth" + ] + }, + { + "id": 15473, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "okra", + "milk", + "salt", + "ground black pepper", + "all-purpose flour", + "vegetable shortening", + "cornmeal" + ] + }, + { + "id": 2994, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "sake", + "salmon steaks", + "sugar", + "mirin" + ] + }, + { + "id": 4795, + "cuisine": "mexican", + "ingredients": [ + "water", + "corn tortillas", + "eggs", + "chopped onion", + "salt", + "shredded Monterey Jack cheese", + "tomato sauce", + "oil" + ] + }, + { + "id": 2482, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "boneless chicken", + "sauce", + "garlic paste", + "green onions", + "all-purpose flour", + "corn flour", + "tomato paste", + "sugar", + "purple onion", + "chili sauce", + "eggs", + "white pepper", + "salt", + "oil" + ] + }, + { + "id": 45147, + "cuisine": "spanish", + "ingredients": [ + "chili pepper", + "potatoes", + "garlic cloves", + "white wine", + "olive oil", + "green pepper", + "onions", + "pepper", + "sea salt", + "tuna", + "tomatoes", + "water", + "paprika", + "fresh parsley" + ] + }, + { + "id": 39551, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "vinegar", + "water", + "chili paste", + "sugar", + "chopped garlic" + ] + }, + { + "id": 24417, + "cuisine": "cajun_creole", + "ingredients": [ + "mayonaise", + "cajun seasoning", + "monterey jack", + "parmesan cheese", + "garlic", + "crawfish", + "butter", + "tomatoes", + "french bread", + "fresh parsley" + ] + }, + { + "id": 35463, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "ground black pepper", + "salt", + "water", + "sweet potatoes", + "minced garlic", + "unsalted butter", + "yellow onion", + "unsweetened coconut milk", + "leaves", + "chopped fresh thyme" + ] + }, + { + "id": 43339, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "flour tortillas", + "onions", + "ground chuck", + "diced tomatoes", + "tomato sauce", + "cream style cottage cheese", + "Mexican cheese blend", + "fresh parsley" + ] + }, + { + "id": 13369, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "garlic", + "dried parsley", + "grated parmesan cheese", + "Italian bread", + "ground black pepper", + "fines herbes", + "dried oregano", + "butter", + "marjoram" + ] + }, + { + "id": 37845, + "cuisine": "chinese", + "ingredients": [ + "orange", + "honey", + "boiling water", + "ice cubes", + "sweetened condensed milk" + ] + }, + { + "id": 48706, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "garam masala", + "chili powder", + "onions", + "fenugreek leaves", + "water", + "cooking oil", + "garlic", + "tomato sauce", + "fresh ginger", + "half & half", + "salt", + "tandoori spices", + "nonfat yogurt", + "butter" + ] + }, + { + "id": 44213, + "cuisine": "french", + "ingredients": [ + "fresh chives", + "dijon mustard", + "salt", + "cherry tomatoes", + "red wine vinegar", + "green beans", + "ground pepper", + "garlic", + "long grain white rice", + "olive oil", + "light tuna packed in olive oil", + "chopped parsley" + ] + }, + { + "id": 43447, + "cuisine": "irish", + "ingredients": [ + "large egg whites", + "baking powder", + "all-purpose flour", + "sugar", + "baking soda", + "1% low-fat milk", + "dried strawberries", + "whole wheat flour", + "butter", + "grated orange", + "fat free yogurt", + "cooking spray", + "salt" + ] + }, + { + "id": 18885, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "boneless chicken skinless thigh", + "crushed red pepper", + "fresh basil", + "butter", + "garlic cloves", + "green bell pepper", + "whipping cream", + "red bell pepper", + "fettucine", + "grated parmesan cheese", + "purple onion" + ] + }, + { + "id": 3518, + "cuisine": "mexican", + "ingredients": [ + "serrano chilies", + "beef", + "sour cream", + "shredded Monterey Jack cheese", + "green bell pepper", + "coarse salt", + "( oz.) tomato paste", + "bread mix", + "chili powder", + "chopped cilantro fresh", + "ground cumin", + "(14.5 oz.) diced tomatoes", + "corn kernels", + "yellow onion", + "canola oil" + ] + }, + { + "id": 38443, + "cuisine": "italian", + "ingredients": [ + "white bread", + "chees fresh mozzarella", + "raspberry jam", + "light brown sugar", + "olive oil", + "fresh rosemary", + "salt" + ] + }, + { + "id": 24080, + "cuisine": "jamaican", + "ingredients": [ + "condensed milk", + "vanilla", + "grated nutmeg", + "water", + "carrots" + ] + }, + { + "id": 20491, + "cuisine": "japanese", + "ingredients": [ + "wasabi paste", + "salt", + "japanese rice", + "caster sugar", + "tuna", + "white vinegar", + "gari", + "cucumber", + "avocado", + "dipping sauces", + "nori" + ] + }, + { + "id": 5236, + "cuisine": "cajun_creole", + "ingredients": [ + "cauliflower", + "sugar", + "garlic powder", + "old bay seasoning", + "vegetable broth", + "andouille sausage", + "olive oil", + "flour", + "sea salt", + "saffron powder", + "Louisiana Hot Sauce", + "nutritional yeast", + "sherry", + "paprika", + "oregano", + "tomato paste", + "white onion", + "cayenne", + "vegan butter", + "green pepper" + ] + }, + { + "id": 46364, + "cuisine": "filipino", + "ingredients": [ + "pork", + "garlic", + "ground black pepper", + "green beans", + "water", + "salt", + "low sodium soy sauce", + "vegetable oil", + "onions" + ] + }, + { + "id": 5839, + "cuisine": "french", + "ingredients": [ + "clove", + "dijon mustard", + "carrots", + "onions", + "cold water", + "boneless chuck roast", + "cornichons", + "bay leaf", + "turnips", + "kosher salt", + "leeks", + "thyme sprigs", + "veal stock", + "beef shank", + "beef rib short", + "fresh parsley" + ] + }, + { + "id": 15735, + "cuisine": "korean", + "ingredients": [ + "neutral oil", + "fresh ginger", + "garlic", + "cucumber", + "soy sauce", + "cracked black pepper", + "scallions", + "sugar", + "cilantro", + "Gochujang base", + "chopped cilantro", + "cooked rice", + "flank steak", + "rice vinegar", + "kimchi" + ] + }, + { + "id": 15531, + "cuisine": "indian", + "ingredients": [ + "salt", + "water", + "whole wheat flour", + "all purpose unbleached flour" + ] + }, + { + "id": 12698, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "crushed red pepper flakes", + "onions", + "tomato paste", + "coarse salt", + "freshly ground pepper", + "whole milk ricotta cheese", + "garlic", + "rigatoni", + "olive oil", + "chees fresh mozzarella", + "dried oregano" + ] + }, + { + "id": 43331, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "shredded pepper jack cheese", + "Mexican oregano", + "cream cheese", + "taco seasoning mix", + "salsa", + "salt", + "sour cream" + ] + }, + { + "id": 47705, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "baking powder", + "yellow corn meal", + "large eggs", + "salt", + "cream style corn", + "vegetable oil", + "sugar", + "flour", + "onions" + ] + }, + { + "id": 40359, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "dried thyme", + "green onions", + "salt", + "fresh lime juice", + "ketchup", + "ground black pepper", + "scotch bonnet chile", + "dark brown sugar", + "soy sauce", + "ground nutmeg", + "vegetable oil", + "ground allspice", + "chicken", + "ground ginger", + "water", + "dark rum", + "malt vinegar", + "garlic cloves" + ] + }, + { + "id": 20083, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "butter", + "salt", + "quickcooking grits", + "whipping cream", + "minced garlic", + "bacon", + "chicken broth", + "green onions", + "peeled shrimp" + ] + }, + { + "id": 1690, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "cayenne pepper", + "sugar", + "lemon juice", + "horseradish", + "pepper", + "table salt", + "apple cider vinegar" + ] + }, + { + "id": 18948, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "chicken breasts", + "cayenne pepper", + "dried oregano", + "black beans", + "garlic powder", + "onion powder", + "garlic salt", + "canola oil", + "romaine lettuce", + "cherry tomatoes", + "chili powder", + "chopped cilantro", + "cumin", + "water", + "sweet corn kernels", + "salt", + "long grain white rice", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 18886, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "lime", + "fresh cilantro", + "tilapia", + "olive oil" + ] + }, + { + "id": 13064, + "cuisine": "chinese", + "ingredients": [ + "almonds", + "water", + "nuts", + "puff pastry", + "honey" + ] + }, + { + "id": 15110, + "cuisine": "cajun_creole", + "ingredients": [ + "gin", + "orange flower water", + "egg whites", + "fresh lime juice", + "heavy cream", + "club soda", + "superfine sugar", + "fresh lemon juice" + ] + }, + { + "id": 14890, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "ground black pepper", + "cilantro sprigs", + "fresh lime juice", + "avocado", + "cherry tomatoes", + "vegetable oil", + "carrots", + "chopped cilantro fresh", + "chipotle chile", + "feta cheese", + "queso fresco", + "corn tortillas", + "chicken", + "corn", + "jalapeno chilies", + "garlic cloves", + "onions" + ] + }, + { + "id": 12245, + "cuisine": "italian", + "ingredients": [ + "lemon slices", + "olive oil", + "garlic cloves", + "fronds", + "striped bass", + "coarse salt", + "fresh lemon juice" + ] + }, + { + "id": 18817, + "cuisine": "moroccan", + "ingredients": [ + "firmly packed brown sugar", + "ground cloves", + "salt", + "ground cinnamon", + "solid pack pumpkin", + "unsalted butter", + "ground ginger", + "semolina flour", + "milk", + "all-purpose flour", + "eggs", + "sugar", + "baking powder" + ] + }, + { + "id": 9929, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "finely chopped fresh parsley", + "vegetable broth", + "garlic cloves", + "water", + "cheese tortellini", + "baby zucchini", + "arugula", + "olive oil", + "green peas", + "baby carrots", + "sliced green onions", + "fresh chives", + "pattypan squash", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 42633, + "cuisine": "moroccan", + "ingredients": [ + "Italian parsley leaves", + "fresh mint", + "ground black pepper", + "extra-virgin olive oil", + "kosher salt", + "ginger", + "jalapeno chilies", + "cilantro leaves" + ] + }, + { + "id": 6538, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "Mexican cheese blend", + "chopped onion", + "ground beef", + "chopped bell pepper", + "shredded lettuce", + "taco seasoning", + "water", + "sliced olives", + "tortilla chips", + "avocado", + "refried beans", + "salsa", + "sour cream" + ] + }, + { + "id": 18107, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "boneless skinless chicken breasts", + "garlic", + "grated parmesan cheese", + "heavy cream", + "freshly grated parmesan", + "butter", + "penne pasta", + "white pepper", + "broccoli florets", + "paprika" + ] + }, + { + "id": 13131, + "cuisine": "french", + "ingredients": [ + "pepper", + "bacon", + "beef broth", + "Burgundy wine", + "black peppercorns", + "chuck roast", + "salt", + "carrots", + "onions", + "brandy", + "butter", + "all-purpose flour", + "bay leaf", + "tomato paste", + "olive oil", + "garlic", + "fresh mushrooms", + "fresh parsley" + ] + }, + { + "id": 21286, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "oil", + "salt", + "spring onions", + "chopped garlic", + "chicken legs", + "sauce" + ] + }, + { + "id": 26029, + "cuisine": "french", + "ingredients": [ + "butter", + "sausages", + "bacon", + "green onions", + "cream cheese", + "worcestershire sauce" + ] + }, + { + "id": 16251, + "cuisine": "greek", + "ingredients": [ + "salt", + "active dry yeast", + "white sugar", + "warm water", + "all-purpose flour", + "vegetable oil" + ] + }, + { + "id": 13773, + "cuisine": "thai", + "ingredients": [ + "coriander seeds", + "creamy peanut butter", + "fresh lime juice", + "chili", + "chopped onion", + "low salt chicken broth", + "soy sauce", + "pork tenderloin", + "dark brown sugar", + "lemongrass", + "onion tops", + "garlic cloves" + ] + }, + { + "id": 16173, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "minced garlic", + "sesame oil", + "boneless chicken thighs", + "sesame seeds", + "lemon juice", + "soy sauce", + "honey", + "ginger", + "black pepper", + "rice wine" + ] + }, + { + "id": 27900, + "cuisine": "mexican", + "ingredients": [ + "pickled jalapenos", + "lime", + "reduced-fat sour cream", + "cilantro leaves", + "navy beans", + "water", + "cooking spray", + "cracked black pepper", + "medium shrimp", + "kosher salt", + "flour tortillas", + "cilantro", + "Neufchâtel", + "avocado", + "fresh cilantro", + "old bay seasoning", + "garlic", + "cumin" + ] + }, + { + "id": 29827, + "cuisine": "mexican", + "ingredients": [ + "salt", + "masa harina", + "hot water" + ] + }, + { + "id": 36835, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "mexicorn", + "jalapeno chilies", + "shredded cheddar cheese", + "sour cream", + "green chile", + "green onions" + ] + }, + { + "id": 21979, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "peas", + "thyme sprigs", + "olive oil", + "garlic cloves", + "base", + "carrots", + "pepper", + "salt", + "onions" + ] + }, + { + "id": 16415, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "chicken breasts", + "onions", + "prunes", + "olive oil", + "salt", + "pears", + "honey", + "ras el hanout", + "chopped cilantro fresh", + "tumeric", + "almonds", + "medjool date" + ] + }, + { + "id": 44795, + "cuisine": "thai", + "ingredients": [ + "tomatoes", + "black pepper", + "green onions", + "dry bread crumbs", + "hamburger buns", + "fresh ginger root", + "grated carrot", + "fresh tuna steaks", + "eggs", + "light soy sauce", + "sesame oil", + "chopped cilantro fresh", + "ketchup", + "lettuce leaves", + "salt", + "ground cumin" + ] + }, + { + "id": 27267, + "cuisine": "french", + "ingredients": [ + "fresh tomatoes", + "ground black pepper", + "salt", + "dried oregano", + "ground cinnamon", + "dried basil", + "extra-virgin olive oil", + "crumbled gorgonzola", + "chicken broth", + "dry vermouth", + "chopped fresh thyme", + "fresh oregano", + "fresh basil", + "dried thyme", + "garlic", + "onions" + ] + }, + { + "id": 5230, + "cuisine": "italian", + "ingredients": [ + "Italian parsley leaves", + "gemelli", + "cherry tomatoes", + "walnuts", + "grated lemon peel", + "extra-virgin olive oil", + "medium shrimp", + "butter", + "fresh lemon juice", + "chopped garlic" + ] + }, + { + "id": 10432, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "unsalted butter", + "paprika", + "milk", + "Tabasco Pepper Sauce", + "canola oil", + "kosher salt", + "flour", + "steak", + "ground black pepper", + "buttermilk" + ] + }, + { + "id": 19370, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "onion powder", + "cream cheese", + "ground cumin", + "cooked chicken", + "shredded pepper jack cheese", + "chopped parsley", + "cooking spray", + "garlic", + "scallions", + "kosher salt", + "chili powder", + "salsa", + "fresh lime juice" + ] + }, + { + "id": 22497, + "cuisine": "southern_us", + "ingredients": [ + "maple syrup", + "white cornmeal", + "bacon fat", + "salt", + "boiling water" + ] + }, + { + "id": 23925, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "chopped fresh thyme", + "salt", + "potatoes", + "large garlic cloves", + "olive oil", + "solid white tuna", + "California bay leaves", + "capers", + "whole milk", + "extra-virgin olive oil" + ] + }, + { + "id": 23304, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "white sugar", + "heavy cream", + "vanilla beans" + ] + }, + { + "id": 47143, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "half & half", + "crushed red pepper", + "frozen chopped spinach", + "dried basil", + "fresh angel hair", + "all-purpose flour", + "minced garlic", + "cooking spray", + "salt", + "roast breast of chicken", + "fresh parmesan cheese", + "reduced-fat sour cream", + "onions" + ] + }, + { + "id": 43264, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "sirloin tip roast", + "crushed garlic", + "brown sugar", + "dr pepper", + "taco sauce", + "pork shoulder" + ] + }, + { + "id": 27778, + "cuisine": "irish", + "ingredients": [ + "ground black pepper", + "ground allspice", + "cabbage", + "potatoes", + "celery", + "beef brisket", + "carrots", + "bay leaves", + "onions" + ] + }, + { + "id": 447, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "cooking spray", + "salt", + "sugar", + "chicken drumsticks", + "fresh ginger", + "fresh orange juice", + "sake", + "green onions", + "fresh lemon juice" + ] + }, + { + "id": 41778, + "cuisine": "italian", + "ingredients": [ + "pecorino romano cheese", + "fresh mint", + "baguette", + "salt", + "mint", + "extra-virgin olive oil", + "bartlett pears", + "ground black pepper", + "edamame" + ] + }, + { + "id": 39691, + "cuisine": "indian", + "ingredients": [ + "whole milk", + "ground cardamom", + "dry milk powder", + "saffron threads", + "condensed milk", + "pistachio nuts", + "white sugar" + ] + }, + { + "id": 2573, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "sour cream", + "refried beans", + "green chile" + ] + }, + { + "id": 46393, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "steak", + "five spice", + "stir fry sauce", + "red pepper", + "noodles", + "spring onions", + "cornflour" + ] + }, + { + "id": 5300, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "tilapia fillets", + "cooking spray", + "lemon wedge", + "ground turmeric", + "sugar", + "lower sodium soy sauce", + "green onions", + "dark sesame oil", + "minced garlic", + "ground black pepper", + "shallots", + "peanut oil", + "fresh dill", + "sweet onion", + "peeled fresh ginger", + "unsalted dry roast peanuts" + ] + }, + { + "id": 42719, + "cuisine": "brazilian", + "ingredients": [ + "fish fillets", + "medium shrimp uncook", + "garlic cloves", + "olive oil", + "crushed red pepper", + "chopped cilantro fresh", + "green bell pepper", + "green onions", + "fresh lime juice", + "unsweetened coconut milk", + "chopped tomatoes", + "chopped onion" + ] + }, + { + "id": 3769, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "russet potatoes", + "salt", + "ground black pepper", + "jalapeno chilies", + "peas", + "olives", + "large eggs", + "yellow mustard", + "carrots", + "pearl onions", + "crema mexican", + "Italian parsley leaves", + "onions" + ] + }, + { + "id": 16593, + "cuisine": "brazilian", + "ingredients": [ + "pork", + "vegetable oil", + "feet", + "dried black beans", + "bay leaves", + "garlic", + "pork ribs", + "pork tongue", + "pork sausages", + "salt and ground black pepper", + "bacon", + "yellow onion" + ] + }, + { + "id": 1495, + "cuisine": "cajun_creole", + "ingredients": [ + "sweet onion", + "turkey sausage", + "cayenne pepper", + "light red kidney beans", + "red beans", + "extra-virgin olive oil", + "green bell pepper", + "bay leaves", + "yellow bell pepper", + "black pepper", + "brown rice", + "garlic" + ] + }, + { + "id": 42386, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "jalapeno chilies", + "bacon", + "cream cheese", + "milk", + "baking powder", + "all-purpose flour", + "brown sugar", + "chopped fresh chives", + "salt", + "cornmeal", + "unsalted butter", + "buttermilk", + "goat cheese" + ] + }, + { + "id": 31220, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "oil", + "chili powder", + "chicken breasts", + "fresh lime juice", + "salt" + ] + }, + { + "id": 47042, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "salsa", + "white vinegar", + "pork tenderloin", + "lemon juice", + "fresh blueberries", + "garlic cloves", + "brown sugar", + "rum", + "bread slices" + ] + }, + { + "id": 30953, + "cuisine": "moroccan", + "ingredients": [ + "minced garlic", + "finely chopped fresh parsley", + "chopped cilantro fresh", + "olive oil", + "paprika", + "ground cumin", + "water", + "boneless skinless chicken breasts", + "saffron", + "kosher salt", + "cayenne", + "lemon juice" + ] + }, + { + "id": 11005, + "cuisine": "italian", + "ingredients": [ + "genoa salami", + "grated parmesan cheese", + "fresh spinach", + "shredded mozzarella cheese", + "pasta sauce", + "ricotta", + "baguette" + ] + }, + { + "id": 16880, + "cuisine": "french", + "ingredients": [ + "strawberries", + "low-fat buttermilk", + "sugar", + "light corn syrup" + ] + }, + { + "id": 47892, + "cuisine": "spanish", + "ingredients": [ + "cayenne", + "demi baguette", + "chile powder", + "paprika", + "poblano chiles", + "pepper", + "garlic", + "chorizo", + "salt" + ] + }, + { + "id": 32636, + "cuisine": "french", + "ingredients": [ + "baguette", + "whole milk", + "cayenne pepper", + "cod fillets", + "extra-virgin olive oil", + "ground black pepper", + "large garlic cloves", + "fresh lemon juice", + "red potato", + "parmigiano reggiano cheese", + "grated lemon zest" + ] + }, + { + "id": 34388, + "cuisine": "cajun_creole", + "ingredients": [ + "white onion", + "Tabasco Pepper Sauce", + "canned tomatoes", + "green bell pepper", + "ground black pepper", + "fryer chickens", + "cayenne pepper", + "andouille sausage", + "bay leaves", + "garlic", + "diced celery", + "kosher salt", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 16967, + "cuisine": "southern_us", + "ingredients": [ + "dark corn syrup", + "vanilla extract", + "half & half", + "dark brown sugar", + "egg yolks", + "salt", + "butter", + "corn starch" + ] + }, + { + "id": 10060, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic", + "snow peas", + "crab meat", + "vegetable oil", + "bok choy", + "minced onion", + "oil", + "won ton wrappers", + "cream cheese" + ] + }, + { + "id": 13392, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "ground pepper", + "penne pasta", + "dried oregano", + "olive oil", + "diced tomatoes", + "garlic cloves", + "dried basil", + "red pepper flakes", + "cream cheese", + "tomato paste", + "parmesan cheese", + "salt", + "onions" + ] + }, + { + "id": 7297, + "cuisine": "irish", + "ingredients": [ + "flour", + "salt", + "butter", + "decorating sugars", + "corn starch", + "sugar", + "vanilla" + ] + }, + { + "id": 19693, + "cuisine": "british", + "ingredients": [ + "water", + "fresh raspberries", + "white bread", + "white sugar", + "whipped cream" + ] + }, + { + "id": 31170, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "water", + "baby spinach", + "sausage casings", + "dry white wine", + "salt", + "romano cheese", + "shallots", + "garlic cloves", + "lower sodium chicken broth", + "mushrooms", + "extra-virgin olive oil" + ] + }, + { + "id": 37759, + "cuisine": "indian", + "ingredients": [ + "nonfat yogurt", + "fresh pineapple", + "purple onion", + "raita", + "chicken breasts", + "masala", + "red bell pepper" + ] + }, + { + "id": 37744, + "cuisine": "vietnamese", + "ingredients": [ + "groundnut", + "lime juice", + "spring onions", + "rice flour", + "ground turmeric", + "fish sauce", + "fresh coriander", + "vegetables", + "garlic cloves", + "coconut milk", + "caster sugar", + "shiitake", + "sea salt", + "beansprouts", + "red chili peppers", + "water", + "lettuce leaves", + "king prawns", + "onions" + ] + }, + { + "id": 11877, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "ground black pepper", + "grated lemon zest", + "poblano chiles", + "kosher salt", + "red wine vinegar", + "garlic cloves", + "chicken", + "olive oil", + "purple onion", + "red bell pepper", + "fresh rosemary", + "chili powder", + "cayenne pepper", + "fresh basil leaves" + ] + }, + { + "id": 42012, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "buttermilk", + "salt", + "flat leaf parsley", + "sugar", + "dijon mustard", + "extra-virgin olive oil", + "fresh lemon juice", + "water", + "shallots", + "cornichons", + "corn starch", + "capers", + "cayenne", + "fresh tarragon", + "anchovy fillets", + "celery root" + ] + }, + { + "id": 48274, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "eggs", + "baking powder", + "vegetable oil cooking spray", + "vegetable oil", + "yellow corn meal", + "skim milk", + "all-purpose flour" + ] + }, + { + "id": 1814, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "fish stock", + "flat leaf parsley", + "capers", + "pitted green olives", + "garlic cloves", + "plum tomatoes", + "ground black pepper", + "extra-virgin olive oil", + "onions", + "tuna steaks", + "salt", + "fresh basil leaves" + ] + }, + { + "id": 31017, + "cuisine": "british", + "ingredients": [ + "chicken stock", + "milk", + "butter", + "garlic", + "sour cream", + "ketchup", + "ground sirloin", + "worcestershire sauce", + "garlic cloves", + "onions", + "porcini", + "flour", + "red wine", + "salt", + "celery", + "pepper", + "yukon gold potatoes", + "extra-virgin olive oil", + "carrots" + ] + }, + { + "id": 28494, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "hot pepper sauce", + "worcestershire sauce", + "ground allspice", + "large shrimp", + "crushed tomatoes", + "bay leaves", + "bow-tie pasta", + "onions", + "andouille sausage", + "grated parmesan cheese", + "diced tomatoes", + "garlic cloves", + "ground cumin", + "celery ribs", + "olive oil", + "green onions", + "cayenne pepper", + "dried oregano" + ] + }, + { + "id": 35341, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "fresh cilantro", + "chicken breasts", + "sour cream", + "black beans", + "jalapeno chilies", + "diced tomatoes", + "corn kernel whole", + "green chile", + "Mexican cheese blend", + "chili powder", + "corn tortillas", + "red kidney beans", + "minced garlic", + "ground red pepper", + "tortilla chips", + "ground cumin" + ] + }, + { + "id": 14661, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "grated parmesan cheese", + "olive oil", + "garlic", + "pepper", + "parsley", + "eggs", + "eggplant", + "salt" + ] + }, + { + "id": 22682, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "peanuts", + "garlic", + "shrimp", + "chile sauce", + "water", + "green onions", + "english cucumber", + "chopped fresh mint", + "fresh basil", + "lime juice", + "rice noodles", + "carrots", + "chopped cilantro fresh", + "brown sugar", + "fresh ginger root", + "chinese cabbage", + "beansprouts" + ] + }, + { + "id": 22694, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "flour tortillas", + "salt", + "serrano chile", + "salsa verde", + "portabello mushroom", + "fresh lime juice", + "olive oil", + "queso fresco", + "garlic cloves", + "ground black pepper", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 29141, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "grating cheese", + "celery", + "cauliflower", + "chili powder", + "green chilies", + "ground cumin", + "olive oil", + "sea salt", + "onions", + "boneless skinless chicken breasts", + "salsa", + "oregano" + ] + }, + { + "id": 49528, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "sour cream", + "garlic powder", + "fresh lime juice", + "celery salt", + "ground black pepper", + "ground cumin", + "tomatillo salsa", + "cream cheese" + ] + }, + { + "id": 1276, + "cuisine": "thai", + "ingredients": [ + "palm sugar", + "garlic cloves", + "eggs", + "shallots", + "coriander", + "fish sauce", + "vegetable oil", + "red chili peppers", + "tamarind paste" + ] + }, + { + "id": 10131, + "cuisine": "indian", + "ingredients": [ + "sweet chili sauce", + "ground cumin", + "lemon juice", + "plain yogurt", + "chopped cilantro fresh" + ] + }, + { + "id": 25875, + "cuisine": "french", + "ingredients": [ + "medium eggs", + "unsalted butter", + "caster sugar", + "salt", + "strong white bread flour", + "instant yeast", + "water" + ] + }, + { + "id": 2914, + "cuisine": "japanese", + "ingredients": [ + "dashi kombu", + "bonito flakes", + "dashi", + "water", + "konbu" + ] + }, + { + "id": 2984, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "pork loin", + "enchilada sauce", + "vegetable oil", + "onions", + "mushrooms", + "salsa" + ] + }, + { + "id": 17411, + "cuisine": "mexican", + "ingredients": [ + "red potato", + "sour cream", + "vegetable oil", + "mexican chorizo", + "green onions", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 2209, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "flounder fillets", + "capers", + "baby spinach", + "long-grain rice", + "dry white wine", + "all-purpose flour", + "black pepper", + "butter", + "fresh lemon juice" + ] + }, + { + "id": 28885, + "cuisine": "moroccan", + "ingredients": [ + "chicken legs", + "olive oil", + "lemon", + "ginger", + "carrots", + "ground cumin", + "drumstick", + "cilantro stems", + "diced tomatoes", + "ground coriander", + "onions", + "tumeric", + "garbanzo beans", + "large garlic cloves", + "cayenne pepper", + "green beans", + "ground cinnamon", + "water", + "chicken breast halves", + "paprika", + "fresh lemon juice", + "chopped fresh mint" + ] + }, + { + "id": 13119, + "cuisine": "moroccan", + "ingredients": [ + "eggs", + "fat free less sodium chicken broth", + "raisins", + "black pepper", + "finely chopped fresh parsley", + "dry bread crumbs", + "slivered almonds", + "ground turkey breast", + "salt", + "vidalia onion", + "ground black pepper", + "ras el hanout" + ] + }, + { + "id": 16321, + "cuisine": "spanish", + "ingredients": [ + "fat free less sodium chicken broth", + "vegetable oil", + "fresh onion", + "chopped cilantro fresh", + "ground round", + "cooking spray", + "chopped onion", + "corn tortillas", + "seasoned bread crumbs", + "diced tomatoes", + "garlic cloves", + "ground cumin", + "avocado", + "water", + "salsa", + "poblano chiles" + ] + }, + { + "id": 39607, + "cuisine": "greek", + "ingredients": [ + "yellow bell pepper", + "baby spinach leaves", + "pasta sauce", + "goat cheese", + "prepared pizza crust" + ] + }, + { + "id": 8384, + "cuisine": "italian", + "ingredients": [ + "whole peeled tomatoes", + "garlic cloves", + "fresh oregano leaves", + "red pepper flakes", + "coarse salt", + "ground pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 31215, + "cuisine": "italian", + "ingredients": [ + "basil", + "white wine vinegar", + "grated parmesan cheese", + "dry mustard", + "vegetable oil", + "garlic", + "seasoning salt", + "paprika", + "oregano" + ] + }, + { + "id": 1489, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "plum tomatoes", + "fine sea salt" + ] + }, + { + "id": 8165, + "cuisine": "indian", + "ingredients": [ + "diced tomatoes", + "onions", + "olive oil", + "garlic cloves", + "curry powder", + "vegetable broth", + "plain whole-milk yogurt", + "fresh ginger", + "lentils" + ] + }, + { + "id": 18087, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh corn", + "yellow onion", + "andouille sausage links", + "spices", + "celery ribs", + "crawfish", + "sauce", + "red potato", + "lemon" + ] + }, + { + "id": 4207, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "scallions", + "canola oil", + "cremini mushrooms", + "rice wine", + "carrots", + "eggs", + "shiitake", + "oyster sauce", + "gari", + "white rice", + "frozen peas" + ] + }, + { + "id": 10779, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "salt", + "ham", + "baking powder", + "cream cheese", + "grits", + "baking soda", + "all-purpose flour", + "shrimp", + "eggs", + "butter", + "scallions" + ] + }, + { + "id": 45911, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "carrots", + "fat-free chicken broth", + "saffron", + "turnips", + "salt", + "leeks", + "chopped cilantro fresh" + ] + }, + { + "id": 35205, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "large garlic cloves", + "cashew nuts", + "ground cumin", + "unsalted butter", + "salt", + "plain whole-milk yogurt", + "cayenne", + "diced tomatoes", + "chopped cilantro fresh", + "peeled fresh ginger", + "onions", + "chicken" + ] + }, + { + "id": 942, + "cuisine": "japanese", + "ingredients": [ + "fresh udon", + "tempeh", + "garlic chili sauce", + "vegetable demi-glace", + "mirin", + "ginger", + "soy sauce", + "cilantro", + "gai lan", + "hoisin sauce", + "garlic" + ] + }, + { + "id": 29775, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "red wine vinegar", + "black sesame seeds", + "salt", + "Sriracha", + "sea salt", + "sugar", + "sesame oil", + "cucumber" + ] + }, + { + "id": 29836, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "vegetables", + "chinese chives", + "lo mein noodles", + "garlic", + "shiitake mushroom caps", + "light soy sauce", + "Shaoxing wine", + "toasted sesame oil", + "dark soy sauce", + "white cabbage", + "ground white pepper" + ] + }, + { + "id": 28663, + "cuisine": "mexican", + "ingredients": [ + "corn", + "sour cream", + "instant rice", + "salsa", + "corn chips", + "black beans", + "Mexican cheese" + ] + }, + { + "id": 22272, + "cuisine": "chinese", + "ingredients": [ + "fennel seeds", + "szechwan peppercorns", + "ground cinnamon", + "clove", + "star anise" + ] + }, + { + "id": 36710, + "cuisine": "mexican", + "ingredients": [ + "havarti cheese", + "sour cream", + "salsa", + "bread", + "chicken" + ] + }, + { + "id": 11286, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "sweet onion", + "quinoa", + "fresh basil", + "dried basil", + "salt", + "mozzarella cheese", + "olive oil", + "garlic cloves", + "black lentil", + "pepper", + "feta cheese" + ] + }, + { + "id": 39176, + "cuisine": "mexican", + "ingredients": [ + "Swanson Chicken Broth", + "red pepper", + "avocado", + "green onions", + "garlic", + "lime juice", + "chili powder", + "sour cream", + "lettuce leaves", + "cilantro" + ] + }, + { + "id": 18321, + "cuisine": "mexican", + "ingredients": [ + "salt", + "lime", + "baby carrots", + "cayenne pepper", + "chili powder", + "cucumber" + ] + }, + { + "id": 36526, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "crushed tomatoes", + "ground black pepper", + "garlic", + "flat leaf parsley", + "sugar", + "olive oil", + "red wine", + "yellow onion", + "fresh basil leaves", + "eggs", + "milk", + "meatballs", + "salt", + "ground beef", + "bread crumbs", + "freshly grated parmesan", + "ground pork", + "sauce", + "spaghetti" + ] + }, + { + "id": 40930, + "cuisine": "japanese", + "ingredients": [ + "water", + "white miso", + "ponzu", + "scallions", + "olive oil", + "sesame oil", + "edamame", + "soy sauce", + "shiitake", + "napa cabbage", + "firm tofu", + "dumpling wrappers", + "chilegarlic sauce", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 17399, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "freshly grated parmesan", + "garlic cloves", + "dried rosemary", + "hot red pepper flakes", + "finely chopped onion", + "small red potato", + "whole wheat pasta", + "prosciutto", + "fresh parsley leaves", + "olive oil", + "dry white wine", + "frozen peas" + ] + }, + { + "id": 2623, + "cuisine": "irish", + "ingredients": [ + "all-purpose flour", + "sparkling sugar", + "butter", + "dark brown sugar" + ] + }, + { + "id": 36450, + "cuisine": "cajun_creole", + "ingredients": [ + "chili powder", + "fresh lemon juice", + "olive oil", + "salt", + "black pepper", + "worcestershire sauce", + "large shrimp", + "unsalted butter", + "garlic cloves" + ] + }, + { + "id": 1233, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "granulated sugar", + "red wine vinegar", + "scallions", + "sliced mushrooms", + "minced garlic", + "rice noodles", + "ginger", + "hearts of romaine", + "fried wonton strips", + "canned chicken broth", + "sesame oil", + "ground pork", + "oil", + "bok choy", + "olive oil", + "wonton wrappers", + "rice vinegar", + "toasted slivered almonds", + "chicken" + ] + }, + { + "id": 18524, + "cuisine": "italian", + "ingredients": [ + "chickpeas", + "sea salt", + "water", + "extra-virgin olive oil" + ] + }, + { + "id": 5469, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "lemon", + "baby spinach", + "lemon juice", + "low sodium chicken broth", + "garlic", + "angel hair", + "butter" + ] + }, + { + "id": 23087, + "cuisine": "southern_us", + "ingredients": [ + "fresh chives", + "baking powder", + "all-purpose flour", + "celery", + "chicken", + "milk", + "coarse salt", + "frozen corn", + "bay leaf", + "fresh rosemary", + "large eggs", + "garlic", + "flat leaf parsley", + "frozen peas", + "ground black pepper", + "butter", + "carrots", + "onions" + ] + }, + { + "id": 1386, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "minced ginger", + "salt", + "chopped cilantro", + "black pepper", + "lemon wedge", + "smoked paprika", + "boneless chicken skinless thigh", + "garam masala", + "ground coriander", + "ground cumin", + "minced garlic", + "hot chili powder", + "greek yogurt" + ] + }, + { + "id": 34646, + "cuisine": "thai", + "ingredients": [ + "kosher salt", + "Sriracha", + "creamy peanut butter", + "lime juice", + "rice vinegar", + "hot water", + "minced garlic", + "red pepper flakes", + "scallions", + "soy sauce", + "palm sugar", + "red curry paste" + ] + }, + { + "id": 31827, + "cuisine": "mexican", + "ingredients": [ + "orange", + "paprika", + "onions", + "kosher salt", + "butter", + "fresh parsley", + "ground cumin", + "cooking spray", + "garlic cloves", + "chicken", + "ground black pepper", + "fresh oregano", + "chopped cilantro fresh" + ] + }, + { + "id": 39863, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "butter", + "fresh lemon juice", + "cream sweeten whip", + "refrigerated piecrusts", + "dark brown sugar", + "granulated sugar", + "vanilla extract", + "bartlett pears", + "ground cinnamon", + "egg whites", + "all-purpose flour" + ] + }, + { + "id": 8936, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "green onions", + "brown sugar", + "miso paste", + "fresh sea bass", + "sake", + "mirin" + ] + }, + { + "id": 39664, + "cuisine": "thai", + "ingredients": [ + "lime", + "red pepper", + "scallions", + "soy sauce", + "boneless skinless chicken breasts", + "vegetable broth", + "peanuts", + "cilantro", + "cumin", + "white onion", + "brown rice", + "creamy peanut butter" + ] + }, + { + "id": 16362, + "cuisine": "korean", + "ingredients": [ + "spring onions", + "garlic cloves", + "black pepper", + "sesame oil", + "porterhouse steaks", + "rice wine", + "dried chile", + "light soy sauce", + "button mushrooms" + ] + }, + { + "id": 32273, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "garlic", + "eggs", + "bacon", + "parmesan cheese", + "salt", + "whole wheat spaghetti", + "frozen peas" + ] + }, + { + "id": 29879, + "cuisine": "irish", + "ingredients": [ + "black peppercorns", + "potatoes", + "chopped cilantro fresh", + "turnips", + "beef brisket", + "onions", + "water", + "carrots", + "kosher salt", + "bay leaves", + "cabbage" + ] + }, + { + "id": 44724, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "firmly packed brown sugar", + "chopped pecans", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 11069, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "avocado", + "chili", + "grated orange peel", + "jicama", + "fresh cilantro" + ] + }, + { + "id": 36109, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "garam masala", + "seeds", + "paneer", + "onions", + "red chili powder", + "amchur", + "yoghurt", + "kasuri methi", + "gram flour", + "ground cumin", + "tomatoes", + "lime juice", + "bell pepper", + "ginger", + "oil", + "ground turmeric", + "caraway seeds", + "black pepper", + "coriander powder", + "large garlic cloves", + "salt", + "chaat masala" + ] + }, + { + "id": 37250, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "sour cream", + "tomatoes", + "salsa", + "flour tortillas", + "shredded cheddar cheese", + "rice" + ] + }, + { + "id": 7057, + "cuisine": "cajun_creole", + "ingredients": [ + "parmesan cheese", + "creole style seasoning", + "butter", + "spaghetti", + "ground black pepper", + "shrimp", + "teriyaki sauce" + ] + }, + { + "id": 40541, + "cuisine": "japanese", + "ingredients": [ + "frozen broccoli", + "cheese tortellini", + "hot sauce", + "broth" + ] + }, + { + "id": 42513, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "cayenne pepper", + "garlic cloves", + "whole wheat spaghetti", + "salt", + "red enchilada sauce", + "cumin", + "boneless skinless chicken breasts", + "cilantro", + "sharp cheddar cheese", + "onions", + "olive oil", + "red pepper", + "green pepper", + "smoked paprika" + ] + }, + { + "id": 5436, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "baking soda", + "bacon", + "kosher salt", + "buttermilk", + "large eggs", + "cornmeal" + ] + }, + { + "id": 12791, + "cuisine": "thai", + "ingredients": [ + "tofu", + "dry roasted peanuts", + "large eggs", + "vegetable oil", + "serrano chile", + "fish sauce", + "fresh cilantro", + "green onions", + "garlic cloves", + "brown sugar", + "large egg whites", + "lime wedges", + "beansprouts", + "rice stick noodles", + "water", + "peeled fresh ginger", + "chili sauce" + ] + }, + { + "id": 49400, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "spring onions", + "toasted sesame oil", + "trout", + "sea salt", + "fresh ginger root", + "rice wine", + "Japanese soy sauce", + "garlic" + ] + }, + { + "id": 25587, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "vegetable oil", + "corn tortillas", + "water", + "garlic cloves", + "onions", + "pasilla chiles", + "salt", + "Ibarra Chocolate", + "tomatoes", + "mulato chiles", + "ancho chile pepper", + "plantains" + ] + }, + { + "id": 40427, + "cuisine": "italian", + "ingredients": [ + "plain flour", + "sun-dried tomatoes", + "broccoli", + "penne", + "butter", + "fresh basil leaves", + "capers", + "mascarpone", + "anchovy fillets", + "milk", + "skinless salmon fillets", + "mature cheddar" + ] + }, + { + "id": 2042, + "cuisine": "southern_us", + "ingredients": [ + "kale", + "red pepper flakes", + "grits", + "spanish onion", + "lemon", + "sharp cheddar cheese", + "parmesan cheese", + "garlic", + "sesame seeds", + "vegetable broth" + ] + }, + { + "id": 26579, + "cuisine": "french", + "ingredients": [ + "sugar", + "pears", + "wine", + "apple jelly" + ] + }, + { + "id": 37713, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "marinade", + "fresh ginger", + "Gochujang base", + "honey", + "garlic", + "pork ribs", + "onions" + ] + }, + { + "id": 43157, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "ground nutmeg", + "pork tenderloin", + "veal rib chops", + "onions", + "celery ribs", + "parmesan cheese", + "grated parmesan cheese", + "extra-virgin olive oil", + "carrots", + "fresh leav spinach", + "ground black pepper", + "shallots", + "salt", + "chicken thighs", + "sage leaves", + "large egg yolks", + "large eggs", + "butter", + "all-purpose flour" + ] + }, + { + "id": 26790, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "unsalted butter", + "cajun seasoning", + "hot sauce", + "roasted tomatoes", + "celery ribs", + "sourdough loaf", + "chili powder", + "white rice", + "garlic cloves", + "large shrimp", + "pepper", + "green onions", + "worcestershire sauce", + "yellow onion", + "oregano", + "green bell pepper", + "olive oil", + "parsley", + "salt", + "red bell pepper" + ] + }, + { + "id": 7052, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "dry white wine", + "garlic cloves", + "parmigiano-reggiano cheese", + "olive oil", + "salt", + "boiling water", + "arborio rice", + "dried thyme", + "butter", + "bay leaf", + "dried porcini mushrooms", + "ground black pepper", + "chopped onion" + ] + }, + { + "id": 39092, + "cuisine": "southern_us", + "ingredients": [ + "dijon mustard", + "chicken", + "kosher salt", + "lemon", + "collard greens", + "multigrain cereal", + "olive oil", + "garlic" + ] + }, + { + "id": 32780, + "cuisine": "filipino", + "ingredients": [ + "whole peppercorn", + "cooking oil", + "salt", + "water", + "garlic", + "pork butt", + "red chili peppers", + "bay leaves", + "oyster sauce", + "white vinegar", + "light soy sauce", + "granulated white sugar" + ] + }, + { + "id": 39342, + "cuisine": "french", + "ingredients": [ + "pepper", + "bouquet garni", + "carrots", + "beef", + "all-purpose flour", + "burgundy", + "olive oil", + "salt", + "onions", + "parsley", + "garlic cloves" + ] + }, + { + "id": 25843, + "cuisine": "korean", + "ingredients": [ + "rice syrup", + "garlic", + "sesame seeds", + "Gochujang base", + "olive oil", + "corn syrup", + "sesame oil", + "squid" + ] + }, + { + "id": 41430, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "oil", + "curry leaves", + "urad dal", + "onions", + "idli", + "mustard seeds", + "tomatoes", + "salt" + ] + }, + { + "id": 12466, + "cuisine": "irish", + "ingredients": [ + "horseradish", + "dijon mustard", + "salt", + "london broil", + "pepper", + "heavy cream", + "lemon juice", + "olive oil", + "garlic", + "sour cream", + "soy sauce", + "chopped fresh thyme", + "rounds" + ] + }, + { + "id": 45796, + "cuisine": "southern_us", + "ingredients": [ + "lime rind", + "egg yolks", + "key lime juice", + "sugar", + "unsalted butter", + "heavy whipping cream", + "raspberries", + "salt", + "eggs", + "honey", + "fresh raspberries" + ] + }, + { + "id": 40832, + "cuisine": "french", + "ingredients": [ + "water", + "salt pork", + "boiling potatoes", + "salt", + "carrots", + "unsalted butter", + "summer savory", + "chicken", + "black pepper", + "all-purpose flour", + "onions" + ] + }, + { + "id": 10887, + "cuisine": "japanese", + "ingredients": [ + "reduced sodium soy sauce", + "extra-virgin olive oil", + "honey", + "uncle bens", + "lemon juice", + "brown sugar", + "boneless skinless chicken breasts", + "garlic", + "sesame seeds", + "ginger" + ] + }, + { + "id": 16902, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "purple onion", + "cumin seed", + "red lentils", + "vegetable oil", + "cayenne pepper", + "ground turmeric", + "yellow mustard seeds", + "yellow onion", + "coconut milk", + "curry leaves", + "sea salt", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 9338, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "baking powder", + "vegetable shortening", + "onions", + "eggs", + "curry powder", + "lean ground beef", + "scallions", + "water", + "hot pepper", + "salt", + "ground turmeric", + "bread crumb fresh", + "flour", + "ground thyme", + "oil" + ] + }, + { + "id": 16891, + "cuisine": "mexican", + "ingredients": [ + "tortilla chips", + "pickled jalapenos", + "cheddar cheese", + "monterey jack", + "chili" + ] + }, + { + "id": 48764, + "cuisine": "vietnamese", + "ingredients": [ + "large egg whites", + "whole milk", + "strained yogurt", + "cream of tartar", + "granulated sugar", + "coffee beans", + "almond flour", + "espresso", + "sweetened condensed milk", + "kosher salt", + "tapioca starch", + "confectioners sugar" + ] + }, + { + "id": 41051, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "sea salt", + "cumin seed", + "asafoetida", + "potatoes", + "cilantro leaves", + "juice", + "water", + "garlic", + "black mustard seeds", + "tumeric", + "nut oil", + "ground coriander", + "onions" + ] + }, + { + "id": 34480, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "mozzarella cheese", + "all purpose unbleached flour", + "pecorino cheese", + "vegetable shortening", + "olive oil", + "chopped fresh mint" + ] + }, + { + "id": 27484, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "tomato paste", + "chicken breasts", + "pesto" + ] + }, + { + "id": 5040, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "green bell pepper, slice", + "red pepper flakes", + "garlic", + "oil", + "cumin", + "olive oil", + "flank steak", + "yellow bell pepper", + "cilantro leaves", + "sour cream", + "lime juice", + "flour tortillas", + "worcestershire sauce", + "salt", + "red bell pepper", + "sugar", + "orange bell pepper", + "chili powder", + "cheese", + "salsa", + "onions" + ] + }, + { + "id": 26469, + "cuisine": "italian", + "ingredients": [ + "chili powder", + "shredded cheese", + "unsalted butter", + "cooked bacon", + "red pepper flakes", + "chives", + "artisan bread" + ] + }, + { + "id": 32328, + "cuisine": "british", + "ingredients": [ + "pudding", + "fresh rosemary", + "cracked black pepper", + "standing rib roast", + "dry mustard", + "coarse salt" + ] + }, + { + "id": 16635, + "cuisine": "mexican", + "ingredients": [ + "water", + "long grain white rice", + "cinnamon sticks", + "sugar" + ] + }, + { + "id": 48260, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "butter", + "ground coriander", + "ground cumin", + "minced onion", + "all-purpose flour", + "red bell pepper", + "ground black pepper", + "salt", + "low salt chicken broth", + "andouille sausage", + "pork tenderloin", + "cayenne pepper", + "fresh parsley" + ] + }, + { + "id": 5896, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "chopped celery", + "chopped onion", + "chicken broth", + "butter", + "salt", + "plum tomatoes", + "olive oil", + "crushed red pepper", + "ripe olives", + "mozzarella cheese", + "orzo", + "all-purpose flour" + ] + }, + { + "id": 5772, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "purple onion", + "fresh basil", + "grated parmesan cheese", + "tomatoes", + "ground black pepper", + "salt", + "pizza shells", + "fresh mozzarella" + ] + }, + { + "id": 9478, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "butter", + "plain yogurt", + "whole kernel corn, drain", + "corn mix muffin", + "cream style corn" + ] + }, + { + "id": 47853, + "cuisine": "british", + "ingredients": [ + "bénédictine", + "sweet vermouth", + "twists", + "water", + "scotch" + ] + }, + { + "id": 27813, + "cuisine": "chinese", + "ingredients": [ + "sugar substitute", + "sesame oil", + "sweet pepper", + "quinoa", + "mandarin oranges", + "fresh parsley", + "kosher salt", + "balsamic vinegar", + "feta cheese crumbles", + "green onions", + "extra-virgin olive oil" + ] + }, + { + "id": 49057, + "cuisine": "southern_us", + "ingredients": [ + "cream cheese frosting", + "cranberries", + "sweetened coconut flakes", + "pecans", + "mint sprigs", + "cake", + "orange rind" + ] + }, + { + "id": 21985, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "finely chopped onion", + "shredded low-fat jarlsberg cheese", + "large egg whites", + "cooking spray", + "italian seasoning", + "chopped bell pepper", + "large eggs", + "salt", + "asparagus", + "33% less sodium ham" + ] + }, + { + "id": 23610, + "cuisine": "thai", + "ingredients": [ + "tomatoes", + "soy sauce", + "orange bell pepper", + "dried rice noodles", + "cooked shrimp", + "fish sauce", + "dry roasted peanuts", + "sesame oil", + "carrots", + "dressing", + "sugar", + "lime juice", + "garlic", + "beansprouts", + "fresh basil", + "fresh coriander", + "green onions", + "chili sauce", + "deep-fried tofu" + ] + }, + { + "id": 16332, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "water chestnuts", + "scallions", + "ground white pepper", + "hoisin sauce", + "gyoza wrappers", + "shrimp", + "egg whites", + "fresh pork fat", + "corn starch", + "kosher salt", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 26941, + "cuisine": "spanish", + "ingredients": [ + "wine", + "peach schnapps", + "green apples", + "brandy", + "carbonated water", + "sugar", + "lemon", + "peaches", + "navel oranges" + ] + }, + { + "id": 31375, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "egg yolks", + "vanilla wafers", + "bananas", + "vanilla extract", + "sweetened condensed milk", + "water", + "whole milk", + "corn starch", + "cream of tartar", + "egg whites", + "salt" + ] + }, + { + "id": 25074, + "cuisine": "mexican", + "ingredients": [ + "red chili peppers", + "vegetable oil", + "corn tortillas", + "water", + "purple onion", + "extra sharp cheddar cheese", + "fresh coriander", + "large garlic cloves", + "onions", + "avocado", + "cooked turkey", + "chili sauce" + ] + }, + { + "id": 23292, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "water", + "smoked sausage", + "pepper", + "garlic powder", + "cooked white rice", + "smoked hog jowl", + "black-eyed peas", + "salt", + "shredded cheddar cheese", + "butter", + "onions" + ] + }, + { + "id": 21244, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "all-purpose flour", + "seasoned bread crumbs", + "ground red pepper", + "olive oil", + "chicken breasts", + "tomato sauce", + "egg whites", + "shredded mozzarella cheese" + ] + }, + { + "id": 6366, + "cuisine": "french", + "ingredients": [ + "rum", + "pitted prunes", + "vanilla sugar", + "salt", + "eggs", + "baking powder", + "white sugar", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 46215, + "cuisine": "southern_us", + "ingredients": [ + "warm water", + "vegetable shortening", + "baking soda", + "cake flour", + "active dry yeast", + "buttermilk", + "sugar", + "baking powder", + "salt" + ] + }, + { + "id": 4769, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "lime wedges", + "flour tortillas", + "salsa", + "large eggs", + "no-salt-added black beans", + "cooking spray", + "fresh lime juice" + ] + }, + { + "id": 16728, + "cuisine": "jamaican", + "ingredients": [ + "brown sugar", + "baking powder", + "ground nutmeg", + "butter", + "flour", + "salt", + "baking soda", + "cinnamon" + ] + }, + { + "id": 18350, + "cuisine": "moroccan", + "ingredients": [ + "prunes", + "honey", + "purple onion", + "ground ginger", + "white wine", + "sesame seeds", + "cinnamon sticks", + "saffron threads", + "tumeric", + "olive oil", + "blanched almonds", + "ground cinnamon", + "water", + "lamb shoulder" + ] + }, + { + "id": 26018, + "cuisine": "korean", + "ingredients": [ + "green onions", + "kimchi", + "sugar", + "Gochujang base", + "tofu", + "beef stew meat", + "water", + "rice" + ] + }, + { + "id": 2921, + "cuisine": "italian", + "ingredients": [ + "reduced fat milk", + "corn starch", + "large egg yolks", + "and fat free half half", + "ground cinnamon", + "vanilla extract", + "sweetened condensed milk", + "instant espresso granules", + "salt" + ] + }, + { + "id": 19779, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "sweet potatoes", + "salt", + "ground cumin", + "olive oil", + "poblano", + "dried oregano", + "corn kernels", + "chili powder", + "onions", + "ground black pepper", + "garlic", + "monterey jack" + ] + }, + { + "id": 20584, + "cuisine": "indian", + "ingredients": [ + "garlic", + "broth", + "kale", + "oil", + "beans", + "salt", + "cumin", + "garam masala", + "coriander" + ] + }, + { + "id": 17652, + "cuisine": "moroccan", + "ingredients": [ + "cayenne", + "lemon juice", + "pepper", + "salt", + "olive oil", + "ground coriander", + "ancho", + "paprika", + "ground cumin" + ] + }, + { + "id": 28024, + "cuisine": "moroccan", + "ingredients": [ + "water", + "salt", + "fresh parsley", + "ground cinnamon", + "extra-virgin olive oil", + "garlic cloves", + "ground ginger", + "chili powder", + "ground coriander", + "ground cumin", + "pepper", + "white wine vinegar", + "carrots" + ] + }, + { + "id": 24801, + "cuisine": "italian", + "ingredients": [ + "white wine", + "lemon", + "dried oregano", + "mussels", + "olive oil", + "linguini", + "dried basil", + "garlic", + "crushed tomatoes", + "crushed red pepper flakes" + ] + }, + { + "id": 10663, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "water chestnuts", + "napa cabbage", + "accent", + "nuts", + "dark soy sauce", + "soaking liquid", + "vegetable oil", + "carrots", + "snow peas", + "shiitake", + "sesame oil", + "salt", + "bamboo shoots", + "sugar", + "lily buds", + "ginger", + "bean curd stick" + ] + }, + { + "id": 827, + "cuisine": "french", + "ingredients": [ + "skinless mahi mahi fillets", + "tapenade", + "olive oil", + "cherry tomatoes", + "purple onion", + "red wine vinegar" + ] + }, + { + "id": 47885, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "fresh basil", + "lemon wedge", + "parmesan cheese", + "angel hair", + "light cream cheese" + ] + }, + { + "id": 37428, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "extra-virgin olive oil", + "salmon fillets", + "whole wheat baguette", + "salt", + "vegetable oil cooking spray", + "red wine vinegar", + "green beans", + "fresh basil", + "cherry tomatoes", + "purple onion" + ] + }, + { + "id": 36975, + "cuisine": "japanese", + "ingredients": [ + "salmon fillets", + "brown sugar", + "miso paste", + "fresh basil", + "soy sauce", + "sake", + "mirin" + ] + }, + { + "id": 20771, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "butter", + "frozen chopped spinach", + "green onions", + "garlic cloves", + "challa", + "large eggs", + "sauce", + "fresh dill", + "baking powder" + ] + }, + { + "id": 23100, + "cuisine": "italian", + "ingredients": [ + "eggs", + "quick-cooking oats", + "italian style seasoning", + "ground beef", + "seasoned bread crumbs", + "ground turkey", + "italian sausage", + "vegetable oil", + "onions" + ] + }, + { + "id": 3503, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "dandelion greens", + "pizza doughs", + "shiitake", + "extra-virgin olive oil", + "water", + "large garlic cloves", + "freshly ground pepper", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 27046, + "cuisine": "southern_us", + "ingredients": [ + "bone-in chicken breast halves", + "light mayonnaise", + "salt", + "white vinegar", + "ground red pepper", + "cracked black pepper", + "cooking spray", + "paprika", + "chipotle chile powder", + "garlic powder", + "onion powder", + "fresh lemon juice" + ] + }, + { + "id": 25640, + "cuisine": "irish", + "ingredients": [ + "fat free less sodium chicken broth", + "ground black pepper", + "green onions", + "stout", + "chuck steaks", + "fat free milk", + "bay leaves", + "butter", + "dark brown sugar", + "olive oil", + "finely chopped onion", + "baking potatoes", + "salt", + "carrots", + "fresh rosemary", + "prepared horseradish", + "mushrooms", + "reduced-fat sour cream", + "garlic cloves" + ] + }, + { + "id": 16135, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "garlic powder", + "onion powder", + "corn tortillas", + "lime", + "zucchini", + "sour cream", + "canola oil", + "golden brown sugar", + "chili powder", + "coarse kosher salt", + "slaw", + "hot spanish paprika", + "red bell pepper", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 5418, + "cuisine": "indian", + "ingredients": [ + "boneless chicken breast", + "masala", + "coconut milk", + "cilantro", + "tomato purée", + "roasted tomatoes" + ] + }, + { + "id": 13378, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "rice noodles", + "scallions", + "soy sauce", + "asian pear", + "hot chili sauce", + "baby bok choy", + "granulated sugar", + "rice vinegar", + "garlic cloves", + "water", + "chives", + "beef rib short" + ] + }, + { + "id": 1186, + "cuisine": "italian", + "ingredients": [ + "white italian tuna in olive oil", + "roast red peppers, drain", + "penne", + "extra-virgin olive oil", + "large garlic cloves", + "escarole", + "grated parmesan cheese", + "crushed red pepper" + ] + }, + { + "id": 18040, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "cucumber", + "flour tortillas", + "sour cream", + "corn kernels", + "tuna", + "salsa", + "cumin" + ] + }, + { + "id": 15294, + "cuisine": "southern_us", + "ingredients": [ + "andouille sausage", + "chili powder", + "ground cumin", + "vegetable oil spray", + "chopped onion", + "rib pork chops", + "dark brown sugar", + "tomato sauce", + "balsamic vinegar" + ] + }, + { + "id": 43166, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "enchilada sauce", + "green pepper", + "brown rice", + "cooked chicken breasts", + "chili flakes", + "shredded cheese" + ] + }, + { + "id": 31916, + "cuisine": "russian", + "ingredients": [ + "min", + "flour", + "salt", + "sugar", + "raisins", + "glaze", + "powdered sugar", + "egg yolks", + "oil", + "melted butter", + "milk", + "vanilla", + "yeast" + ] + }, + { + "id": 5841, + "cuisine": "french", + "ingredients": [ + "turkey kielbasa", + "onions", + "cannellini beans", + "salt", + "black pepper", + "garlic", + "boneless skinless chicken breast halves", + "dry white wine", + "fresh parsley" + ] + }, + { + "id": 30293, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "bacon drippings", + "red bell pepper", + "collard greens", + "onions", + "dry white wine" + ] + }, + { + "id": 31900, + "cuisine": "spanish", + "ingredients": [ + "water", + "chopped cilantro fresh", + "cherry tomatoes", + "corn kernels", + "polenta", + "sausage casings", + "chees fresco queso" + ] + }, + { + "id": 47058, + "cuisine": "vietnamese", + "ingredients": [ + "peanuts", + "dried rice noodles", + "fresh lime juice", + "napa cabbage", + "cucumber", + "chopped fresh mint", + "fish sauce", + "garlic", + "fresh mint", + "white sugar", + "jalapeno chilies", + "carrots", + "chopped cilantro" + ] + }, + { + "id": 33145, + "cuisine": "indian", + "ingredients": [ + "durum wheat flour", + "clarified butter", + "kosher salt" + ] + }, + { + "id": 25671, + "cuisine": "indian", + "ingredients": [ + "plain low-fat yogurt", + "quinoa", + "garlic cloves", + "chopped cilantro fresh", + "water", + "currant", + "chopped fresh mint", + "sliced green onions", + "olive oil", + "english cucumber", + "Madras curry powder", + "kosher salt", + "baby spinach", + "diced celery", + "mango" + ] + }, + { + "id": 36754, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "shredded cheddar cheese", + "red bell pepper", + "black beans", + "whole kernel corn, drain", + "flour tortillas" + ] + }, + { + "id": 26290, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "black bean garlic sauce", + "soft tofu", + "sesame oil", + "molasses", + "halibut fillets", + "peeled fresh ginger", + "dark soy sauce", + "minced garlic", + "regular soy sauce", + "green onions", + "soy sauce", + "water", + "Shaoxing wine" + ] + }, + { + "id": 37424, + "cuisine": "filipino", + "ingredients": [ + "bananas", + "sugar", + "oil", + "rolls", + "jackfruit" + ] + }, + { + "id": 41944, + "cuisine": "italian", + "ingredients": [ + "prepared pasta sauce", + "tomato purée", + "onions", + "olive oil", + "fresh basil", + "mincemeat" + ] + }, + { + "id": 33343, + "cuisine": "vietnamese", + "ingredients": [ + "bone marrow", + "chiles", + "banh pho rice noodles", + "salt", + "beansprouts", + "clove", + "sirloin", + "ground black pepper", + "star anise", + "cinnamon sticks", + "spearmint", + "leaves", + "lime wedges", + "yellow onion", + "chopped cilantro", + "fish sauce", + "yellow rock sugar", + "ginger", + "scallions", + "chuck" + ] + }, + { + "id": 46046, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "pasta sauce", + "2% low-fat cottage cheese", + "fresh basil", + "grated parmesan cheese", + "plain dry bread crumb", + "shredded mozzarella cheese" + ] + }, + { + "id": 48651, + "cuisine": "indian", + "ingredients": [ + "sugar", + "herbs", + "hot water", + "active dry yeast", + "baking powder", + "milk", + "flour", + "greek yogurt", + "melted butter", + "baking soda", + "salt" + ] + }, + { + "id": 10332, + "cuisine": "italian", + "ingredients": [ + "pecorino romano cheese", + "fresh fava bean", + "dry white wine", + "crushed red pepper", + "finely chopped onion", + "extra-virgin olive oil", + "plum tomatoes", + "italian sausage", + "large garlic cloves", + "pasta sheets" + ] + }, + { + "id": 47782, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "dried thyme", + "all-purpose flour", + "veal shanks", + "dried basil", + "salt", + "garlic cloves", + "dried rosemary", + "water", + "dry red wine", + "grated lemon zest", + "onions", + "black pepper", + "olive oil", + "beef broth", + "fresh parsley" + ] + }, + { + "id": 20487, + "cuisine": "southern_us", + "ingredients": [ + "grated parmesan cheese", + "salt", + "grits", + "chicken broth", + "ground red pepper", + "shrimp", + "green onions", + "dry bread crumbs", + "large eggs", + "butter", + "red bell pepper" + ] + }, + { + "id": 21777, + "cuisine": "french", + "ingredients": [ + "golden delicious apples", + "crème fraîche", + "vanilla ice cream", + "whipped cream", + "lemon juice", + "butter", + "all-purpose flour", + "sugar", + "vanilla" + ] + }, + { + "id": 7599, + "cuisine": "southern_us", + "ingredients": [ + "seasoning salt", + "vegetable oil", + "cornmeal", + "flour", + "buttermilk", + "green tomatoes", + "Mrs. Dash", + "large eggs", + "cajun seasoning", + "garlic salt" + ] + }, + { + "id": 7454, + "cuisine": "southern_us", + "ingredients": [ + "water", + "peanuts", + "kosher salt" + ] + }, + { + "id": 24884, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chips", + "ground beef", + "avocado", + "brown hash potato", + "chile pepper", + "dried oregano", + "shredded cheddar cheese", + "chili powder", + "chunky salsa", + "reduced sodium beef broth", + "yellow hominy", + "sour cream", + "ground cumin" + ] + }, + { + "id": 11397, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cooking spray", + "chopped onion", + "dried basil", + "extra-virgin olive oil", + "plum tomatoes", + "ground black pepper", + "salt", + "dried oregano", + "water", + "dry red wine", + "garlic cloves" + ] + }, + { + "id": 33658, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "ras el hanout", + "thyme", + "figs", + "sherry wine vinegar", + "garlic cloves", + "grated lemon peel", + "dry white wine", + "salt", + "low salt chicken broth", + "chicken legs", + "shallots", + "baby carrots", + "couscous" + ] + }, + { + "id": 27218, + "cuisine": "chinese", + "ingredients": [ + "roasted sesame seeds", + "oil", + "brown sugar", + "instant yeast", + "sugar", + "flour", + "water", + "all-purpose flour" + ] + }, + { + "id": 36689, + "cuisine": "mexican", + "ingredients": [ + "fresh orange juice", + "water", + "fresh lime juice", + "tequila", + "agave nectar", + "mango" + ] + }, + { + "id": 27906, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "boiling water", + "tea bags", + "lemon slices", + "cold water", + "mint sprigs", + "lemonade concentrate", + "fresh mint" + ] + }, + { + "id": 3587, + "cuisine": "italian", + "ingredients": [ + "pepper", + "egg noodles", + "salt", + "parsley flakes", + "artichoke hearts", + "beef stock", + "fresh parsley", + "sun-dried tomatoes", + "flour", + "yellow onion", + "wine", + "roasted red peppers", + "garlic", + "chuck" + ] + }, + { + "id": 23297, + "cuisine": "indian", + "ingredients": [ + "beets", + "canola oil", + "plain yogurt", + "black mustard seeds", + "cumin seed", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 47392, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "fresh lemon juice", + "part-skim mozzarella cheese", + "part-skim ricotta cheese", + "dried basil", + "grated parmesan cheese", + "ground black pepper", + "salt" + ] + }, + { + "id": 35736, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "cumin", + "avocado", + "salsa", + "salt", + "fresh cilantro", + "greek yogurt" + ] + }, + { + "id": 47555, + "cuisine": "indian", + "ingredients": [ + "parsley sprigs", + "minced onion", + "light mayonnaise", + "chopped celery", + "garlic cloves", + "lump crab meat", + "cooking spray", + "dry mustard", + "dry bread crumbs", + "black pepper", + "large eggs", + "butter", + "salt", + "red bell pepper", + "curry powder", + "ground red pepper", + "ginger", + "grated lemon zest" + ] + }, + { + "id": 37550, + "cuisine": "mexican", + "ingredients": [ + "boiling potatoes", + "vegetable oil", + "masa harina", + "warm water", + "dried oregano", + "mexican chorizo" + ] + }, + { + "id": 45851, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "kosher salt", + "black mustard seeds", + "sugar", + "ground red pepper", + "canola oil", + "tomatoes", + "curry powder", + "ground turmeric", + "red chili peppers", + "cumin seed" + ] + }, + { + "id": 27967, + "cuisine": "thai", + "ingredients": [ + "shallots", + "cilantro leaves", + "galangal", + "lemongrass", + "ground pork", + "fresh mint", + "lettuce leaves", + "salt", + "bird chile", + "kaffir lime leaves", + "lime wedges", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 26157, + "cuisine": "irish", + "ingredients": [ + "chicken broth", + "onions", + "milk", + "shredded cheddar cheese", + "Country Crock® Spread", + "baking potatoes" + ] + }, + { + "id": 48590, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "sour cream", + "cheddar cheese", + "salsa", + "tomatoes", + "lean ground beef", + "chili", + "tortilla chips" + ] + }, + { + "id": 27027, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "lime", + "lean ground beef", + "monterey jack", + "hamburger buns", + "jalapeno chilies", + "salt", + "minced garlic", + "chili powder", + "chopped cilantro", + "avocado", + "minced onion", + "diced tomatoes" + ] + }, + { + "id": 20959, + "cuisine": "british", + "ingredients": [ + "brussels sprouts", + "baking potatoes", + "chopped celery", + "unsalted butter", + "heavy cream", + "ground sage", + "lemon", + "ground white pepper", + "finely chopped onion", + "bacon" + ] + }, + { + "id": 42886, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "chili", + "corn tortillas", + "shredded cheddar cheese", + "enchilada sauce", + "chili powder", + "onions" + ] + }, + { + "id": 38343, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "heavy cream", + "unsalted butter", + "salt", + "baking soda", + "vanilla extract", + "light brown sugar", + "granulated sugar" + ] + }, + { + "id": 20728, + "cuisine": "russian", + "ingredients": [ + "powdered sugar", + "ricotta cheese", + "oil", + "baking soda", + "vanilla extract", + "sugar", + "buttermilk", + "eggs", + "vinegar", + "all-purpose flour" + ] + }, + { + "id": 14294, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "tarragon", + "mayonaise", + "hot sauce", + "capers", + "salt", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 20734, + "cuisine": "italian", + "ingredients": [ + "vanilla extract", + "all-purpose flour", + "eggs", + "white sugar", + "salt" + ] + }, + { + "id": 34462, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "tequila", + "strawberries", + "lime wedges", + "fresh lime juice", + "cointreau", + "crushed ice" + ] + }, + { + "id": 17181, + "cuisine": "greek", + "ingredients": [ + "finely chopped fresh parsley", + "dill", + "black pepper", + "stewed tomatoes", + "green beans", + "finely chopped onion", + "garlic cloves", + "olive oil", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 8678, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "frozen spinach", + "cream cheese", + "penne pasta", + "chicken broth", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 21349, + "cuisine": "french", + "ingredients": [ + "whole grain mustard", + "salt", + "tarragon vinegar", + "Tabasco Pepper Sauce", + "mayonaise", + "dijon mustard", + "flat leaf parsley", + "capers", + "ground black pepper", + "scallions" + ] + }, + { + "id": 18455, + "cuisine": "japanese", + "ingredients": [ + "red chili peppers", + "ginger", + "sansho", + "cold water", + "cake", + "rice vinegar", + "potato flour", + "wasabi paste", + "chiffonade", + "seaweed", + "canola oil", + "dashi", + "tamari soy sauce", + "corn starch" + ] + }, + { + "id": 14903, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "salt", + "potatoes", + "milk", + "onions", + "salad", + "sunflower oil" + ] + }, + { + "id": 43211, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "olive oil", + "flour", + "shredded sharp cheddar cheese", + "pork sausages", + "bread crumbs", + "macaroni", + "red pepper flakes", + "creole seasoning", + "American cheese", + "bell pepper", + "garlic", + "onions", + "grape tomatoes", + "ground black pepper", + "whole milk", + "salt" + ] + }, + { + "id": 44409, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "purple onion", + "red bell pepper", + "olive oil", + "firm tofu", + "chopped cilantro fresh", + "lime", + "salt", + "corn tortillas", + "chili powder", + "scallions", + "chopped garlic" + ] + }, + { + "id": 38235, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "grated parmesan cheese", + "colby jack cheese", + "hot sauce", + "cornbread mix", + "green onions", + "butter", + "red bell pepper", + "ground nutmeg", + "half & half", + "onion powder", + "ground mustard", + "black pepper", + "large eggs", + "breakfast sausages", + "salt" + ] + }, + { + "id": 49257, + "cuisine": "chinese", + "ingredients": [ + "green cabbage", + "flour tortillas", + "boneless skinless chicken breasts", + "garlic cloves", + "water", + "orange marmalade", + "shredded zucchini", + "oyster sauce", + "low sodium soy sauce", + "shredded carrots", + "bouillon granules", + "fresh lemon juice", + "hoisin sauce", + "mushrooms", + "dark sesame oil" + ] + }, + { + "id": 11185, + "cuisine": "thai", + "ingredients": [ + "cooked rice", + "lime", + "boneless skinless chicken breasts", + "coconut", + "spring onions", + "snow peas", + "fresh coriander", + "mushrooms", + "tamarind paste", + "soy sauce", + "fresh ginger root", + "Flora Cuisine" + ] + }, + { + "id": 35555, + "cuisine": "southern_us", + "ingredients": [ + "house seasoning", + "pepper", + "salt", + "pepper sauce", + "garlic powder", + "chicken", + "black pepper", + "self rising flour", + "eggs", + "water", + "oil" + ] + }, + { + "id": 37384, + "cuisine": "italian", + "ingredients": [ + "water", + "dry white wine", + "garlic", + "dried rosemary", + "chicken sausage", + "ricotta cheese", + "flat leaf parsley", + "crushed tomatoes", + "fusilli", + "salt", + "olive oil", + "red pepper flakes", + "onions" + ] + }, + { + "id": 5074, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "sour cream", + "eggs", + "jalapeno chilies", + "shredded cheddar cheese", + "guacamole", + "tomatoes", + "flour tortillas", + "onions" + ] + }, + { + "id": 35945, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "chopped fresh thyme", + "all-purpose flour", + "semolina", + "garlic", + "warm water", + "extra-virgin olive oil", + "fresh oregano", + "dry yeast", + "salt" + ] + }, + { + "id": 31573, + "cuisine": "british", + "ingredients": [ + "potatoes", + "worcestershire sauce", + "cheddar cheese", + "butter", + "carrots", + "swede", + "minced beef", + "water", + "beef stock cubes", + "onions" + ] + }, + { + "id": 45525, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "cracked black pepper", + "fresh lime juice", + "sake", + "grapefruit juice", + "rice vinegar", + "shallots", + "salt", + "fresh ginger", + "fresh orange juice", + "fresh lemon juice" + ] + }, + { + "id": 30430, + "cuisine": "french", + "ingredients": [ + "haricots verts", + "butter", + "veal shoulder", + "celery root", + "chicken stock", + "bay leaves", + "all-purpose flour", + "thyme sprigs", + "fresh chives", + "button mushrooms", + "fresh lemon juice", + "turnips", + "pearl onions", + "whipping cream", + "carrots" + ] + }, + { + "id": 11001, + "cuisine": "cajun_creole", + "ingredients": [ + "bread crumbs", + "unbleached flour", + "vegetable oil", + "white wine vinegar", + "Cholula Hot Sauce", + "baking powder", + "garlic", + "garlic cloves", + "white pepper", + "large egg yolks", + "lemon wedge", + "fine sea salt", + "lump crab meat", + "pimentos", + "extra-virgin olive oil", + "scallions" + ] + }, + { + "id": 18192, + "cuisine": "italian", + "ingredients": [ + "green onions", + "pasta", + "bacon", + "Alfredo sauce", + "grated parmesan cheese" + ] + }, + { + "id": 2705, + "cuisine": "italian", + "ingredients": [ + "baguette", + "butter", + "fresh parmesan cheese", + "sugar", + "ground black pepper", + "dried basil", + "chopped onion" + ] + }, + { + "id": 2436, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "sesame oil", + "soy sauce", + "tuna steaks", + "salt", + "pepper", + "green onions", + "sugar", + "fresh ginger root", + "garlic" + ] + }, + { + "id": 38834, + "cuisine": "indian", + "ingredients": [ + "saffron threads", + "yellow food coloring", + "parsley flakes", + "long grain white rice", + "diced onions", + "butter", + "water" + ] + }, + { + "id": 12518, + "cuisine": "japanese", + "ingredients": [ + "bread crumbs", + "ground pork", + "oil", + "eggs", + "ground nutmeg", + "dry red wine", + "onions", + "milk", + "tonkatsu sauce", + "ground beef", + "ketchup", + "ground black pepper", + "salt" + ] + }, + { + "id": 35973, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "ground red pepper", + "all-purpose flour", + "cornmeal", + "ground black pepper", + "buttermilk", + "fresh lemon juice", + "canola mayonnaise", + "prepared horseradish", + "baking powder", + "peanut oil", + "onions", + "large eggs", + "salt", + "flat leaf parsley", + "pickle relish" + ] + }, + { + "id": 37597, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "corn tortillas", + "cotija", + "bacon", + "avocado", + "butter", + "large eggs", + "small red potato" + ] + }, + { + "id": 30336, + "cuisine": "mexican", + "ingredients": [ + "taco sauce", + "lean ground beef", + "garlic salt", + "tomatoes", + "flour tortillas", + "shredded lettuce", + "shredded Monterey Jack cheese", + "refried beans", + "butter", + "corn kernel whole", + "green bell pepper", + "chili powder", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 39987, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "chopped fresh thyme", + "red bell pepper", + "black pepper", + "sweet onion", + "cheese", + "polenta", + "water", + "extra-virgin olive oil", + "fresh parsley", + "kosher salt", + "mushrooms", + "1% low-fat milk" + ] + }, + { + "id": 947, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "sugar", + "cachaca", + "water", + "brown sugar", + "plums" + ] + }, + { + "id": 31922, + "cuisine": "chinese", + "ingredients": [ + "water", + "dark brown sugar", + "plantains", + "white rum", + "peeled fresh ginger", + "corn starch", + "low sodium soy sauce", + "pork tenderloin", + "peanut oil", + "sliced green onions", + "fat free less sodium chicken broth", + "pink peppercorns", + "serrano chile" + ] + }, + { + "id": 41455, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "romaine lettuce", + "poblano peppers", + "Mexican oregano", + "purple onion", + "chopped cilantro", + "oregano", + "ancho", + "pepper", + "roma tomatoes", + "cilantro", + "roasted garlic", + "serrano chile", + "canola oil", + "avocado", + "white onion", + "flour tortillas", + "lime wedges", + "salt", + "pork butt", + "cumin", + "chicken broth", + "refried beans", + "serrano peppers", + "cracked black pepper", + "garlic cloves", + "key lime" + ] + }, + { + "id": 12367, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "ground black pepper", + "purple onion", + "serrano chile", + "avocado", + "fresh cilantro", + "gluten", + "ground coriander", + "ground cumin", + "lime zest", + "kosher salt", + "albacore", + "greek style plain yogurt", + "coleslaw", + "gluten free corn tortillas", + "olive oil", + "ancho powder", + "fresh lime juice" + ] + }, + { + "id": 8287, + "cuisine": "italian", + "ingredients": [ + "vanilla instant pudding", + "unsweetened cocoa powder", + "brewed coffee", + "fat free frozen top whip", + "cold water", + "cream cheese, soften", + "cake", + "sweetened condensed milk" + ] + }, + { + "id": 23222, + "cuisine": "indian", + "ingredients": [ + "spinach", + "milk", + "butter", + "ghee", + "garlic paste", + "black pepper", + "cinnamon", + "green chilies", + "red chili powder", + "sugar", + "coriander powder", + "salt", + "plum tomatoes", + "bread", + "minced chicken", + "garam masala", + "ginger", + "onions" + ] + }, + { + "id": 26254, + "cuisine": "filipino", + "ingredients": [ + "pork", + "green onions", + "carrots", + "chicken broth", + "lime", + "vegetable oil", + "onions", + "soy sauce", + "rice noodles", + "celery", + "fish sauce", + "shiitake", + "garlic cloves", + "cabbage" + ] + }, + { + "id": 26594, + "cuisine": "indian", + "ingredients": [ + "methi leaves", + "kale", + "agave nectar", + "sea salt", + "ground coriander", + "cider vinegar", + "garam masala", + "chili powder", + "garlic", + "ground cumin", + "tumeric", + "eggplant", + "new potatoes", + "ginger", + "chillies", + "tomatoes", + "water", + "dijon mustard", + "vegetable oil", + "purple onion" + ] + }, + { + "id": 26107, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "salt", + "semisweet chocolate", + "sugar", + "large eggs", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 8856, + "cuisine": "greek", + "ingredients": [ + "Knorr® Vegetable recipe mix", + "water chestnuts", + "hellmann' or best food light mayonnais", + "frozen chopped spinach, thawed and squeezed dry", + "nonfat plain greek yogurt", + "sliced green onions" + ] + }, + { + "id": 11301, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "water", + "large garlic cloves", + "chickpeas", + "ground cumin", + "green bell pepper", + "vegetable oil", + "salt", + "carrots", + "tomatoes", + "eggplant", + "raisins", + "ground allspice", + "tumeric", + "cinnamon", + "cayenne pepper", + "onions" + ] + }, + { + "id": 7277, + "cuisine": "indian", + "ingredients": [ + "diced onions", + "cayenne", + "salt", + "olive oil", + "whole wheat tortillas", + "ground turmeric", + "curry powder", + "chile pepper", + "dried chickpeas", + "fresh ginger", + "garlic", + "ground cumin" + ] + }, + { + "id": 31382, + "cuisine": "italian", + "ingredients": [ + "fresh dill", + "sun-dried tomatoes", + "toasted pine nuts", + "pasta", + "pepper", + "lemon pepper seasoning", + "white wine", + "parmesan cheese", + "frozen peas", + "chicken broth", + "olive oil", + "garlic" + ] + }, + { + "id": 37179, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "bay leaves", + "cayenne pepper", + "chipotle peppers", + "tomato paste", + "garlic powder", + "vegetable broth", + "thyme", + "oregano", + "liquid smoke", + "black-eyed peas", + "diced tomatoes", + "okra", + "onions", + "black pepper", + "bell pepper", + "salt", + "celery" + ] + }, + { + "id": 44652, + "cuisine": "french", + "ingredients": [ + "milk", + "garlic", + "yukon gold potatoes", + "ground black pepper", + "raclette", + "kosher salt", + "heavy cream" + ] + }, + { + "id": 23752, + "cuisine": "french", + "ingredients": [ + "sugar", + "butter", + "black olives", + "onions", + "peeled tomatoes", + "rabbit", + "oil", + "pepper", + "red wine", + "salt", + "mushrooms", + "garlic", + "bay leaf" + ] + }, + { + "id": 47565, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "garlic", + "chopped cilantro", + "tomatoes", + "potatoes", + "salt", + "cumin", + "ground black pepper", + "non-fat sour cream", + "dried oregano", + "extra lean ground beef", + "shredded lettuce", + "sharp cheddar cheese", + "canola oil" + ] + }, + { + "id": 46048, + "cuisine": "filipino", + "ingredients": [ + "large eggs", + "garlic cloves", + "soy sauce", + "vegetable oil", + "pepper", + "salt", + "cooked rice", + "green onions" + ] + }, + { + "id": 45340, + "cuisine": "italian", + "ingredients": [ + "chopped tomatoes", + "pork sausages", + "short pasta", + "garlic cloves", + "chili powder", + "olive oil", + "onions" + ] + }, + { + "id": 45435, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "freshly ground pepper", + "frozen spinach", + "french bread", + "mayonaise", + "large garlic cloves", + "grated parmesan cheese", + "cream cheese, soften" + ] + }, + { + "id": 12897, + "cuisine": "french", + "ingredients": [ + "sole", + "large egg yolks", + "1% low-fat milk", + "dry vermouth", + "light mayonnaise", + "baguette", + "clam juice", + "capers", + "ground red pepper", + "fresh parsley" + ] + }, + { + "id": 34786, + "cuisine": "moroccan", + "ingredients": [ + "fresh tomatoes", + "chicken breasts", + "lemon juice", + "ground cumin", + "coriander powder", + "paprika", + "harissa sauce", + "olive oil", + "chicken drumsticks", + "fresh mint", + "celtic salt", + "garlic cloves", + "ground turmeric" + ] + }, + { + "id": 11520, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "minced garlic", + "fresh parsley", + "peeled tomatoes", + "spaghetti", + "black pepper", + "salt" + ] + }, + { + "id": 8331, + "cuisine": "greek", + "ingredients": [ + "lamb stock", + "lemon", + "lamb shoulder", + "onions", + "ground cinnamon", + "olive oil", + "dry red wine", + "bay leaf", + "pepper", + "fresh green bean", + "salt", + "dried oregano", + "tomato sauce", + "chopped tomatoes", + "garlic", + "fresh parsley" + ] + }, + { + "id": 34890, + "cuisine": "thai", + "ingredients": [ + "serrano chilies", + "water", + "shallots", + "red bell pepper", + "sugar", + "olive oil", + "seasoned rice wine vinegar", + "chicken", + "fish sauce", + "lemongrass", + "salt", + "onions", + "soy sauce", + "yardlong beans", + "garlic cloves" + ] + }, + { + "id": 21703, + "cuisine": "southern_us", + "ingredients": [ + "cold water", + "boneless skinless chicken breasts", + "cream of chicken soup", + "onions", + "chicken broth", + "butter", + "self rising flour" + ] + }, + { + "id": 45662, + "cuisine": "indian", + "ingredients": [ + "water", + "flour", + "oil", + "red chili powder", + "peanuts", + "okra", + "ground cumin", + "amchur", + "salt", + "ground turmeric", + "asafoetida", + "coriander seeds", + "cumin seed" + ] + }, + { + "id": 45077, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "balsamic vinegar", + "onions", + "olive oil", + "salt", + "pepper", + "fresh tarragon", + "gorgonzola", + "frozen pastry puff sheets", + "brie cheese" + ] + }, + { + "id": 15732, + "cuisine": "greek", + "ingredients": [ + "pepper", + "salt", + "fresh dill", + "lemon", + "olive oil", + "cucumber", + "plain yogurt", + "garlic" + ] + }, + { + "id": 21615, + "cuisine": "mexican", + "ingredients": [ + "baguette", + "salt and ground black pepper", + "tomatoes", + "corn kernels", + "basil", + "avocado", + "lime juice", + "beef", + "mayonaise", + "olive oil", + "garlic" + ] + }, + { + "id": 2909, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "feta cheese crumbles", + "water", + "garlic powder", + "eggs", + "almond flour", + "ground turkey", + "olive oil", + "fresh thyme leaves" + ] + }, + { + "id": 43512, + "cuisine": "italian", + "ingredients": [ + "garlic", + "salmon fillets", + "chopped parsley", + "parmesan cheese" + ] + }, + { + "id": 33471, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "beef", + "dry sherry", + "freshly ground pepper", + "garlic paste", + "vegetable oil", + "yellow bell pepper", + "corn starch", + "low sodium soy sauce", + "sesame oil", + "basil", + "oyster sauce", + "sugar", + "large garlic cloves", + "purple onion", + "red bell pepper" + ] + }, + { + "id": 24082, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "garlic", + "cauliflower", + "dried basil", + "sweet onion", + "black pepper", + "olive oil" + ] + }, + { + "id": 2081, + "cuisine": "italian", + "ingredients": [ + "shortening", + "baking powder", + "confectioners sugar", + "granulated sugar", + "all-purpose flour", + "milk", + "butter", + "table salt", + "large eggs", + "anise extract" + ] + }, + { + "id": 575, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "vanilla extract", + "dark corn syrup", + "butter", + "pie filling", + "pastry", + "chop fine pecan", + "all-purpose flour", + "shortening", + "baking soda", + "buttermilk" + ] + }, + { + "id": 34087, + "cuisine": "french", + "ingredients": [ + "onion soup mix", + "onions", + "black pepper", + "red wine", + "kosher salt", + "beef broth", + "rump roast", + "french bread", + "canola oil" + ] + }, + { + "id": 34266, + "cuisine": "thai", + "ingredients": [ + "fresh ginger", + "sugar", + "flank steak", + "chili paste", + "soy sauce", + "rice vinegar" + ] + }, + { + "id": 45454, + "cuisine": "greek", + "ingredients": [ + "low sodium chicken broth", + "fresh oregano", + "extra-virgin olive oil", + "flat leaf parsley", + "shallots", + "lemon juice", + "red potato", + "garlic" + ] + }, + { + "id": 26601, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "leeks", + "red bell pepper", + "tomato paste", + "parmesan cheese", + "large garlic cloves", + "chicken stock", + "eggplant", + "chopped fresh thyme", + "onions", + "fresh basil", + "unsalted butter", + "fresh lemon juice" + ] + }, + { + "id": 8970, + "cuisine": "mexican", + "ingredients": [ + "feta cheese", + "coriander", + "sweet potatoes", + "flour tortillas", + "sliced chorizo" + ] + }, + { + "id": 19573, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "toasted sesame oil", + "soy sauce", + "ginger", + "buckwheat soba noodles", + "miso", + "broth", + "mirin", + "carrots" + ] + }, + { + "id": 14537, + "cuisine": "italian", + "ingredients": [ + "water", + "zucchini", + "salt", + "mozzarella cheese", + "eggplant", + "butter", + "fresh basil leaves", + "peeled tomatoes", + "grated parmesan cheese", + "cayenne pepper", + "fresh basil", + "olive oil", + "coarse salt", + "cornmeal" + ] + }, + { + "id": 14152, + "cuisine": "british", + "ingredients": [ + "water", + "golden raisins", + "bread flour", + "instant yeast", + "salt", + "milk", + "butter", + "egg yolks", + "white sugar" + ] + }, + { + "id": 185, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "lemon juice", + "dried thyme", + "egg yolks", + "minced garlic", + "sliced black olives", + "boneless skinless chicken breast halves", + "olive oil", + "salt" + ] + }, + { + "id": 18612, + "cuisine": "mexican", + "ingredients": [ + "yellow corn meal", + "ground chuck", + "active dry yeast", + "jalapeno chilies", + "cinnamon", + "sour cream", + "eggs", + "ground cloves", + "large egg yolks", + "pimentos", + "raisins", + "plum tomatoes", + "tomato paste", + "sugar", + "milk", + "finely chopped onion", + "vegetable oil", + "all-purpose flour", + "ground cumin", + "hot red pepper flakes", + "minced garlic", + "unsalted butter", + "chili powder", + "salt", + "dried oregano" + ] + }, + { + "id": 19153, + "cuisine": "cajun_creole", + "ingredients": [ + "egg whites", + "fresh parsley", + "bread crumb fresh", + "large garlic cloves", + "ground cumin", + "creole mustard", + "cajun seasoning", + "onions", + "dried thyme", + "ground turkey" + ] + }, + { + "id": 39000, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "all-purpose flour", + "ground cinnamon", + "peaches", + "vegetable oil cooking spray", + "butter", + "refrigerated buttermilk biscuits" + ] + }, + { + "id": 38751, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "pepper", + "chopped green bell pepper", + "chopped onion", + "red bell pepper", + "grated orange peel", + "curry powder", + "butter", + "ground cardamom", + "ground cumin", + "unsweetened shredded dried coconut", + "minced garlic", + "dried apricot", + "cranberries", + "brown basmati rice", + "slivered almonds", + "fresh ginger", + "salt", + "grate lime peel" + ] + }, + { + "id": 8449, + "cuisine": "greek", + "ingredients": [ + "hot pepper sauce", + "salt", + "anise seed", + "ricotta cheese", + "noodles", + "olive oil", + "garlic", + "tomatoes", + "sliced black olives", + "lemon juice" + ] + }, + { + "id": 47910, + "cuisine": "mexican", + "ingredients": [ + "water", + "meat", + "ancho chile pepper", + "pork", + "corn kernels", + "garlic", + "onions", + "lettuce", + "lime", + "red pepper flakes", + "bay leaf", + "guajillo chiles", + "radishes", + "salt", + "oregano" + ] + }, + { + "id": 650, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "shiitake", + "cilantro", + "coriander", + "tofu", + "olive oil", + "organic coconut milk", + "carrots", + "chili pepper", + "fresh ginger", + "sea salt", + "onions", + "low sodium vegetable broth", + "sweet potatoes", + "garlic" + ] + }, + { + "id": 45489, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "sesame oil", + "oyster sauce", + "white pepper", + "chinese five-spice powder", + "chicken thighs", + "soy sauce", + "scallions", + "white sesame seeds", + "honey", + "oil" + ] + }, + { + "id": 18140, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "lemon pepper", + "plain yogurt", + "salt", + "chopped cilantro fresh", + "sweet onion", + "cumin seed", + "cilantro sprigs", + "cucumber" + ] + }, + { + "id": 47114, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "ground sirloin", + "fresh mint", + "diced onions", + "olive oil", + "garlic", + "plum tomatoes", + "water", + "white rice", + "onions", + "tomato sauce", + "egg whites", + "salt" + ] + }, + { + "id": 24222, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "salt", + "fat free milk", + "garlic", + "dried rosemary", + "cream of tartar", + "fresh parmesan cheese", + "all-purpose flour", + "large egg whites", + "cooking spray", + "dry bread crumbs" + ] + }, + { + "id": 41081, + "cuisine": "cajun_creole", + "ingredients": [ + "sausage links", + "brown rice", + "uncook medium shrimp, peel and devein", + "canola oil", + "celery ribs", + "garlic powder", + "cayenne pepper", + "onions", + "dried thyme", + "diced tomatoes", + "red bell pepper", + "chicken broth", + "boneless skinless chicken breasts", + "okra", + "marjoram" + ] + }, + { + "id": 25868, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "buttermilk", + "barley flour", + "powdered sugar", + "large eggs", + "vanilla extract", + "sugar", + "baking powder", + "salt", + "baking soda", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 21298, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "black pepper", + "garam masala", + "raisins", + "salt", + "ground coriander", + "bay leaf", + "basmati rice", + "clove", + "brown sugar", + "curry powder", + "cinnamon", + "ginger", + "cayenne pepper", + "mustard seeds", + "chicken thighs", + "ground cumin", + "tomato purée", + "water", + "shallots", + "heavy cream", + "yellow onion", + "cumin seed", + "chopped cilantro", + "ground turmeric", + "chicken stock", + "coconut oil", + "coconut", + "lemon", + "garlic", + "cardamom pods", + "greek yogurt", + "frozen peas" + ] + }, + { + "id": 13531, + "cuisine": "filipino", + "ingredients": [ + "salt", + "cassava", + "margarine", + "grated coconut", + "sweetened condensed milk" + ] + }, + { + "id": 17195, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "pork belly", + "dark soy sauce", + "water", + "sugar", + "Shaoxing wine", + "soy sauce", + "tofu puffs" + ] + }, + { + "id": 44018, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "baking soda", + "salt", + "unsalted butter", + "all-purpose flour", + "sugar", + "buttermilk" + ] + }, + { + "id": 17529, + "cuisine": "thai", + "ingredients": [ + "silken tofu", + "fresh ginger", + "shallots", + "brown sugar", + "fresh cilantro", + "chili paste", + "lemongrass", + "full fat coconut milk", + "vegetable broth", + "soy sauce", + "lime", + "crimini mushrooms" + ] + }, + { + "id": 27147, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "baking powder", + "sugar", + "vanilla", + "coconut flakes", + "butter", + "milk", + "sweet rice flour" + ] + }, + { + "id": 33056, + "cuisine": "indian", + "ingredients": [ + "clove", + "black peppercorns", + "garam masala", + "cumin seed", + "bay leaf", + "ground turmeric", + "curry leaves", + "water", + "salt", + "garlic cloves", + "onions", + "ground cumin", + "fennel seeds", + "red chili powder", + "ginger", + "oil", + "ghee", + "chicken", + "saffron threads", + "tomatoes", + "fresh ginger", + "green cardamom", + "cinnamon sticks", + "basmati rice" + ] + }, + { + "id": 29589, + "cuisine": "italian", + "ingredients": [ + "cavatappi", + "cannellini beans", + "olive oil", + "salt", + "pepper", + "asiago", + "spinach leaves", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 13542, + "cuisine": "mexican", + "ingredients": [ + "capers", + "jalapeno chilies", + "extra-virgin olive oil", + "fillets", + "lime rind", + "butter", + "cilantro leaves", + "onions", + "sugar", + "bay leaves", + "salt", + "fresh lime juice", + "tomatoes", + "dried thyme", + "pitted green olives", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 24898, + "cuisine": "irish", + "ingredients": [ + "black pepper", + "malt vinegar", + "beer", + "cooking spray", + "dry bread crumbs", + "garlic salt", + "large egg whites", + "all-purpose flour", + "fresh parsley", + "vegetable oil", + "grouper" + ] + }, + { + "id": 23986, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "cajun seasoning", + "oil", + "avocado", + "dijon mustard", + "salt", + "arugula", + "black pepper", + "balsamic vinegar", + "mixed greens", + "sliced black olives", + "garlic", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 14383, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "salt and ground black pepper", + "diced tomatoes", + "ground coriander", + "onions", + "chicken bouillon", + "new potatoes", + "all-purpose flour", + "corn starch", + "water", + "chili powder", + "cardamom pods", + "sour cream", + "lamb shanks", + "ground nutmeg", + "button mushrooms", + "carrots" + ] + }, + { + "id": 5743, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "flavoring", + "vanilla flavoring", + "salt", + "eggs", + "self rising flour", + "sugar", + "oil" + ] + }, + { + "id": 2155, + "cuisine": "japanese", + "ingredients": [ + "sesame oil", + "scallions", + "sugar", + "rice vinegar", + "white sesame seeds", + "kosher salt", + "shiso leaves", + "japanese cucumber", + "freshly ground pepper" + ] + }, + { + "id": 3712, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "fresh ginger", + "peanut butter", + "onions", + "brown sugar", + "cilantro", + "coconut milk", + "fish sauce", + "chicken breasts", + "red bell pepper", + "frozen peas", + "lime juice", + "red curry paste", + "cooked white rice" + ] + }, + { + "id": 11227, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "lamb stew meat", + "garlic cloves", + "blood orange", + "ground black pepper", + "salt", + "onions", + "ground cinnamon", + "olive oil", + "lamb shoulder chops", + "fresh parsley", + "water", + "peeled fresh ginger", + "ground allspice" + ] + }, + { + "id": 29786, + "cuisine": "indian", + "ingredients": [ + "asafoetida", + "garlic", + "black mustard seeds", + "sliced tomatoes", + "cherry tomatoes", + "cumin seed", + "water", + "cayenne pepper", + "ground turmeric", + "curry leaves", + "yellow lentils", + "oil" + ] + }, + { + "id": 21076, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "vanilla extract", + "cream cheese", + "unsalted butter" + ] + }, + { + "id": 38606, + "cuisine": "british", + "ingredients": [ + "eggs", + "salt", + "water", + "pepper", + "oil", + "plain flour", + "milk" + ] + }, + { + "id": 1071, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "minced garlic", + "paprika", + "cayenne pepper", + "ground ginger", + "boneless chicken thighs", + "flour", + "salt", + "corn starch", + "soy sauce", + "water", + "ginger", + "oil", + "eggs", + "black pepper", + "chilli paste", + "rice vinegar" + ] + }, + { + "id": 8371, + "cuisine": "mexican", + "ingredients": [ + "pepper jack", + "whole wheat potato buns", + "kosher salt", + "cooking spray", + "avocado", + "red cabbage", + "salsa verde", + "lean beef" + ] + }, + { + "id": 20634, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "salt", + "turbinado", + "heavy cream", + "large egg yolks", + "mango", + "granulated sugar" + ] + }, + { + "id": 10658, + "cuisine": "thai", + "ingredients": [ + "low sodium soy sauce", + "lemongrass", + "pork tenderloin", + "salt", + "Thai fish sauce", + "brown sugar", + "fresh cilantro", + "cooking spray", + "rice vinegar", + "fresh lime juice", + "caraway seeds", + "water", + "Anaheim chile", + "fresh orange juice", + "garlic cloves", + "sliced green onions", + "granny smith apples", + "ground black pepper", + "peeled fresh ginger", + "beets", + "chopped fresh mint" + ] + }, + { + "id": 34544, + "cuisine": "french", + "ingredients": [ + "shallots", + "boneless magret duck breast halves", + "raspberries", + "demi-glace", + "sugar", + "raspberry vinegar", + "unsalted butter", + "garlic cloves" + ] + }, + { + "id": 45573, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "english cucumber", + "serrano", + "pummelo", + "peanuts", + "asian fish sauce" + ] + }, + { + "id": 30723, + "cuisine": "indian", + "ingredients": [ + "sugar", + "vegetable oil", + "salt", + "red bell pepper", + "dried basil", + "sweetened coconut flakes", + "fresh lemon juice", + "curry powder", + "diced tomatoes", + "all-purpose flour", + "large shrimp", + "cooked rice", + "shallots", + "light coconut milk", + "low salt chicken broth" + ] + }, + { + "id": 8584, + "cuisine": "indian", + "ingredients": [ + "fenugreek", + "long-grain rice", + "boiling potatoes", + "salt", + "ghee", + "vegetable oil", + "mustard seeds", + "dhal", + "tumeric", + "green chilies", + "onions" + ] + }, + { + "id": 8492, + "cuisine": "korean", + "ingredients": [ + "silken tofu", + "hot pepper", + "toasted sesame oil", + "ground black pepper", + "scallions", + "large egg yolks", + "vegetable oil", + "toasted sesame seeds", + "kosher salt", + "reduced sodium soy sauce", + "kimchi" + ] + }, + { + "id": 41030, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "all-purpose flour", + "buttermilk", + "vinegar", + "sea salt" + ] + }, + { + "id": 43314, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "minced garlic", + "pitted olives", + "chopped cilantro fresh", + "capers", + "bay leaves", + "poblano chiles", + "tomatoes", + "olive oil", + "red bell pepper", + "white onion", + "yellow bell pepper", + "fresh parsley" + ] + }, + { + "id": 46896, + "cuisine": "italian", + "ingredients": [ + "flour for dusting", + "all-purpose flour", + "large eggs" + ] + }, + { + "id": 2818, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "Shaoxing wine", + "water", + "garlic cloves", + "soy sauce", + "sauce", + "spareribs", + "fresh ginger", + "black vinegar" + ] + }, + { + "id": 15842, + "cuisine": "cajun_creole", + "ingredients": [ + "ground nutmeg", + "hot water", + "vanilla extract", + "sweetened condensed milk", + "large eggs", + "bread slices", + "ground cinnamon", + "sauce" + ] + }, + { + "id": 16539, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cooking spray", + "chopped onion", + "fresh spinach", + "ground black pepper", + "boneless skinless chicken breasts", + "sliced mushrooms", + "penne", + "reduced fat milk", + "fresh oregano", + "red bell pepper", + "reduced fat sharp cheddar cheese", + "fresh parmesan cheese", + "2% low-fat cottage cheese", + "condensed reduced fat reduced sodium cream of chicken soup" + ] + }, + { + "id": 14945, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "boneless skin on chicken thighs", + "gravy", + "vegetable shortening", + "peanut oil", + "fresh dill", + "garlic powder", + "unsalted butter", + "onion powder", + "all-purpose flour", + "cheddar cheese", + "baking soda", + "large eggs", + "vegetable oil", + "cayenne pepper", + "kosher salt", + "ground black pepper", + "baking powder", + "buttermilk" + ] + }, + { + "id": 39009, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "Shaoxing wine", + "chinkiang vinegar", + "ketchup", + "salt", + "soy sauce", + "peeled fresh ginger", + "dark soy sauce", + "water", + "pork spareribs" + ] + }, + { + "id": 38459, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "tomatillos", + "shredded cheese", + "roast turkey", + "turkey stock", + "crème fraîche", + "onions", + "tomatoes", + "jalapeno chilies", + "salt", + "corn tortillas", + "pepper", + "vegetable oil", + "yellow onion", + "serrano chile" + ] + }, + { + "id": 10814, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "coarse salt", + "garlic cloves", + "curry powder", + "cilantro leaves", + "cashew nuts", + "boneless chicken skinless thigh", + "green peas", + "onions", + "peeled fresh ginger", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 7687, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "tomatoes with juice", + "ground cumin", + "jalapeno chilies", + "salt", + "lime", + "garlic", + "sugar", + "rotelle", + "chopped onion" + ] + }, + { + "id": 26104, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "za'atar", + "balsamic vinegar", + "sweet corn", + "cumin", + "lime juice", + "jalapeno chilies", + "cilantro", + "white sugar", + "black beans", + "ground black pepper", + "red pepper", + "shrimp", + "ground cumin", + "brown sugar", + "olive oil", + "green onions", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 46728, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "enokitake", + "firm tofu", + "miso paste", + "choy sum", + "shiitake", + "ramen noodles", + "scallions", + "vegetable demi-glace", + "hoisin sauce", + "garlic" + ] + }, + { + "id": 46162, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "fresh lime juice", + "avocado", + "yellow onion", + "chopped cilantro fresh", + "salt", + "medium shrimp", + "pepper", + "celery", + "plum tomatoes" + ] + }, + { + "id": 31386, + "cuisine": "mexican", + "ingredients": [ + "seasoning salt", + "chili powder", + "chopped cilantro", + "tomatoes", + "salsa verde", + "cream cheese", + "garlic powder", + "shredded lettuce", + "olives", + "shredded cheddar cheese", + "green onions", + "sour cream" + ] + }, + { + "id": 8094, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "green onions", + "garlic cloves", + "pita bread rounds", + "chickpeas", + "feta cheese crumbles", + "fresh cilantro", + "crushed red pepper", + "fresh lemon juice", + "tomatoes", + "tahini", + "english cucumber", + "fresh mint" + ] + }, + { + "id": 16532, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "fresh rosemary", + "sea salt", + "bread dough" + ] + }, + { + "id": 37524, + "cuisine": "cajun_creole", + "ingredients": [ + "large eggs", + "pecans", + "frosting", + "butter pecan cake mix", + "vegetable oil", + "water" + ] + }, + { + "id": 23145, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "potatoes", + "button mushrooms", + "onions", + "lemongrass", + "beef stock cubes", + "carrots", + "curry powder", + "bay leaves", + "garlic cloves", + "chuck", + "olive oil", + "diced tomatoes", + "fresh parsley" + ] + }, + { + "id": 27382, + "cuisine": "mexican", + "ingredients": [ + "water", + "oliv pit ripe", + "green onions", + "chunky salsa", + "tomatoes", + "chicken breasts", + "Campbell's Condensed Cheddar Cheese Soup", + "tortilla chips" + ] + }, + { + "id": 40979, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "chopped cilantro fresh", + "salt", + "water" + ] + }, + { + "id": 44968, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "active dry yeast", + "all purpose unbleached flour", + "pepperoni", + "tomato sauce", + "chopped green bell pepper", + "salt", + "white sugar", + "yellow corn meal", + "olive oil", + "garlic", + "shredded mozzarella cheese", + "warm water", + "grated parmesan cheese", + "chopped onion", + "dried oregano" + ] + }, + { + "id": 32932, + "cuisine": "spanish", + "ingredients": [ + "short-grain rice", + "lemon", + "smoked paprika", + "kosher salt", + "lobster", + "peas", + "saffron threads", + "seafood stock", + "green garlic", + "flat leaf parsley", + "olive oil", + "leeks", + "spanish chorizo" + ] + }, + { + "id": 37459, + "cuisine": "russian", + "ingredients": [ + "large eggs", + "ricotta cheese", + "sour cream", + "melted butter", + "green onions", + "salt", + "whole milk", + "whipping cream", + "black pepper", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 6776, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "salt", + "flour", + "unsalted butter", + "plain flour", + "ice water" + ] + }, + { + "id": 2332, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "red wine vinegar", + "cucumber", + "olive oil", + "chopped onion", + "tomatoes", + "chopped green bell pepper", + "garlic cloves", + "water", + "salt" + ] + }, + { + "id": 14506, + "cuisine": "jamaican", + "ingredients": [ + "cold water", + "white onion", + "dried thyme", + "lean ground beef", + "shortening", + "water", + "flour", + "margarine", + "eggs", + "pepper", + "ground black pepper", + "salt", + "bread crumbs", + "curry powder", + "beef stock", + "oil" + ] + }, + { + "id": 1709, + "cuisine": "italian", + "ingredients": [ + "semisweet chocolate", + "sliced almonds", + "bread", + "rum", + "unsalted butter" + ] + }, + { + "id": 34928, + "cuisine": "british", + "ingredients": [ + "bread crumb fresh", + "dried sage", + "cayenne", + "all-purpose flour", + "large eggs", + "sausages", + "dried thyme", + "vegetable oil" + ] + }, + { + "id": 34964, + "cuisine": "cajun_creole", + "ingredients": [ + "white wine", + "chopped celery", + "thyme", + "heavy cream", + "long-grain rice", + "cayenne", + "salt", + "onions", + "tomato paste", + "extra-virgin olive oil", + "shrimp" + ] + }, + { + "id": 43346, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "hoisin sauce", + "unsalted dry roast peanuts", + "corn starch", + "soy sauce", + "sesame oil", + "scallions", + "red chili peppers", + "boneless skinless chicken breasts", + "peanut oil", + "chinese black vinegar", + "chinese rice wine", + "fresh ginger", + "ground sichuan pepper", + "garlic cloves" + ] + }, + { + "id": 16420, + "cuisine": "italian", + "ingredients": [ + "pasta", + "pepper", + "garlic", + "cherry peppers", + "white wine", + "grated parmesan cheese", + "squid", + "cream", + "crushed red pepper flakes", + "corn starch", + "fresh basil", + "olive oil", + "salt" + ] + }, + { + "id": 48501, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "chopped bell pepper", + "reduced-fat sour cream", + "ground turkey", + "ground cumin", + "pasta", + "water", + "green onions", + "garlic cloves", + "chopped cilantro fresh", + "black beans", + "Mexican cheese blend", + "salsa", + "fresh lime juice", + "40% less sodium taco seasoning", + "olive oil", + "salt", + "ripe olives" + ] + }, + { + "id": 27530, + "cuisine": "mexican", + "ingredients": [ + "salt", + "vine ripened tomatoes", + "purple onion", + "green tomatoes", + "fresh lime juice" + ] + }, + { + "id": 23484, + "cuisine": "french", + "ingredients": [ + "butter", + "beef liver", + "onions", + "bacon", + "chopped parsley", + "red wine", + "croutons", + "chives", + "garlic", + "seasoned flour" + ] + }, + { + "id": 31222, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "black pepper", + "chopped fresh thyme", + "garlic cloves", + "onions", + "chestnuts", + "low sodium chicken broth", + "white beans", + "thyme sprigs", + "tomatoes", + "water", + "extra-virgin olive oil", + "juice", + "cavolo nero", + "parmigiano reggiano cheese", + "salt", + "rib" + ] + }, + { + "id": 1146, + "cuisine": "korean", + "ingredients": [ + "water", + "brown sugar", + "beef rib short", + "jalapeno chilies", + "soy sauce" + ] + }, + { + "id": 45692, + "cuisine": "indian", + "ingredients": [ + "cream", + "ground cardamom", + "cooking oil", + "white bread", + "pistachio nuts", + "water", + "white sugar" + ] + }, + { + "id": 28507, + "cuisine": "greek", + "ingredients": [ + "vegetable oil", + "feta cheese crumbles", + "chopped green bell pepper", + "white wine vinegar", + "red bell pepper", + "tomatoes", + "black olives", + "cucumber", + "diced red onions", + "salt" + ] + }, + { + "id": 21138, + "cuisine": "greek", + "ingredients": [ + "pepper", + "dill", + "cucumber", + "olive oil", + "garlic cloves", + "sweet onion", + "dill tips", + "plain yogurt", + "salt", + "lemon juice" + ] + }, + { + "id": 36963, + "cuisine": "chinese", + "ingredients": [ + "spring roll wrappers", + "soy sauce", + "sesame oil", + "oyster sauce", + "pork fillet", + "chinese rice wine", + "mushrooms", + "cornflour", + "beansprouts", + "cold water", + "sugar", + "spring onions", + "garlic", + "coriander", + "fresh prawn", + "fresh ginger", + "vegetable oil", + "chicken-flavored soup powder" + ] + }, + { + "id": 46094, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salt", + "large garlic cloves", + "serrano chile", + "white onion", + "fresh lime juice", + "cilantro" + ] + }, + { + "id": 44180, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "baking powder", + "apple cider", + "carrots", + "tumeric", + "low sodium chicken broth", + "ground thyme", + "all-purpose flour", + "onions", + "kosher salt", + "half & half", + "heavy cream", + "diced celery", + "chicken", + "yellow corn meal", + "olive oil", + "butter", + "salt", + "fresh parsley" + ] + }, + { + "id": 4158, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "salt", + "cabbage", + "mayonaise", + "Sriracha", + "oil", + "eggs", + "panko", + "scallions", + "pepper", + "bonito flakes", + "shrimp meat" + ] + }, + { + "id": 12627, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "red chili peppers", + "peeled fresh ginger", + "candlenuts", + "galangal", + "tumeric", + "lemongrass", + "rice noodles", + "beansprouts", + "onions", + "chicken stock", + "water", + "chicken breast halves", + "garlic cloves", + "medium shrimp", + "sugar", + "olive oil", + "cilantro sprigs", + "blacan", + "bean curd" + ] + }, + { + "id": 37916, + "cuisine": "italian", + "ingredients": [ + "salad greens", + "fresh orange juice", + "grated orange", + "ground cinnamon", + "prosciutto", + "salt", + "tomatoes", + "olive oil", + "purple onion", + "fish fillets", + "balsamic vinegar", + "all-purpose flour" + ] + }, + { + "id": 25588, + "cuisine": "chinese", + "ingredients": [ + "lime", + "garlic", + "canola oil", + "brown sugar", + "Sriracha", + "juice", + "head on shrimp", + "shallots", + "chopped cilantro", + "ground black pepper", + "salt" + ] + }, + { + "id": 1006, + "cuisine": "chinese", + "ingredients": [ + "pork", + "salt", + "carrots", + "cooked rice", + "zucchini", + "peanut oil", + "eggs", + "pepper", + "broccoli", + "celery", + "dark soy sauce", + "green onions", + "garlic chili sauce" + ] + }, + { + "id": 28582, + "cuisine": "russian", + "ingredients": [ + "ground cinnamon", + "cheese", + "ground allspice", + "unsalted butter", + "all-purpose flour", + "sugar", + "salt", + "dried cranberries", + "large eggs", + "toasted walnuts" + ] + }, + { + "id": 16249, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "shallots", + "extra-virgin olive oil", + "pancetta", + "corn husks", + "butter", + "crushed red pepper", + "guanciale", + "chopped fresh chives", + "lemon", + "garlic cloves", + "swordfish steaks", + "fresh thyme leaves", + "fine sea salt" + ] + }, + { + "id": 17365, + "cuisine": "thai", + "ingredients": [ + "boneless skinless chicken breasts", + "salt", + "curry powder", + "garlic", + "sugar", + "diced tomatoes", + "onions", + "tomato sauce", + "vegetable oil", + "coconut milk" + ] + }, + { + "id": 14737, + "cuisine": "japanese", + "ingredients": [ + "ginger syrup", + "stem ginger", + "caster sugar", + "cornflour", + "cream", + "double cream", + "large egg yolks", + "vanilla extract" + ] + }, + { + "id": 25682, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "buttermilk", + "flour", + "icing", + "sugar", + "vanilla", + "butter" + ] + }, + { + "id": 11500, + "cuisine": "italian", + "ingredients": [ + "frozen broad beans", + "lemon juice", + "fresh oregano", + "cherries", + "steak", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 21966, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "serrano chile", + "extra-virgin olive oil", + "jumbo shrimp", + "english cucumber", + "lime juice" + ] + }, + { + "id": 3276, + "cuisine": "vietnamese", + "ingredients": [ + "Shaoxing wine", + "Maggi", + "garlic", + "unsalted butter", + "salt", + "linguine" + ] + }, + { + "id": 20800, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "hot pepper sauce", + "vegetable oil", + "long-grain rice", + "celery ribs", + "boneless chicken thighs", + "ground red pepper", + "salt", + "shrimp", + "cooked ham", + "green onions", + "diced tomatoes", + "garlic cloves", + "chicken broth", + "ground black pepper", + "chicken breasts", + "yellow onion", + "fresh parsley" + ] + }, + { + "id": 13867, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dry white wine", + "garlic cloves", + "cooking spray", + "salt", + "flat leaf parsley", + "ground black pepper", + "diced tomatoes", + "thyme", + "water", + "leeks", + "grouper", + "medium shrimp" + ] + }, + { + "id": 15159, + "cuisine": "japanese", + "ingredients": [ + "yukon gold potatoes", + "scallions", + "frozen peas", + "store bought low sodium chicken stock", + "apples", + "carrots", + "cooked rice", + "ginger", + "garlic cloves", + "canola oil", + "flank steak", + "curry", + "onions" + ] + }, + { + "id": 5865, + "cuisine": "cajun_creole", + "ingredients": [ + "black peppercorns", + "coriander seeds", + "lemon", + "crushed red pepper", + "onions", + "whole allspice", + "whole cloves", + "paprika", + "salt", + "seasoning", + "water", + "ground red pepper", + "garlic", + "mustard seeds", + "crawfish", + "bay leaves", + "shuck corn", + "small red potato" + ] + }, + { + "id": 39941, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cooking oil", + "water", + "minced garlic", + "oyster sauce", + "yardlong beans" + ] + }, + { + "id": 19279, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "lemon", + "pork loin chops", + "tomatoes", + "orzo", + "ground pepper", + "fresh oregano" + ] + }, + { + "id": 34935, + "cuisine": "mexican", + "ingredients": [ + "sliced black olives", + "avocado", + "corn tortillas", + "shredded mozzarella cheese", + "hot pepper sauce" + ] + }, + { + "id": 13935, + "cuisine": "japanese", + "ingredients": [ + "sake", + "chicken thighs", + "light soy sauce", + "sugar", + "toasted sesame seeds", + "mirin" + ] + }, + { + "id": 14937, + "cuisine": "cajun_creole", + "ingredients": [ + "cooking spray", + "salt", + "garlic powder", + "onion powder", + "large shrimp", + "dried thyme", + "ground red pepper", + "dried oregano", + "ground black pepper", + "paprika" + ] + }, + { + "id": 43869, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "fresh ginger", + "salt", + "corn starch", + "chicken stock", + "large egg whites", + "boneless skinless chicken breasts", + "chili sauce", + "soy sauce", + "sesame seeds", + "rice vinegar", + "toasted sesame oil", + "brown sugar", + "honey", + "garlic", + "peanut oil" + ] + }, + { + "id": 32319, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "leaf lettuce", + "hamburger buns", + "Velveeta", + "Ro-Tel Diced Tomatoes & Green Chilies", + "ground sirloin" + ] + }, + { + "id": 503, + "cuisine": "italian", + "ingredients": [ + "pasta", + "potatoes", + "salt", + "green cabbage", + "butter", + "sage leaves", + "black pepper", + "garlic", + "fontina cheese", + "cheese" + ] + }, + { + "id": 2745, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "paprika", + "cayenne pepper", + "black pepper", + "all-purpose flour", + "olive oil spray", + "yellow corn meal", + "salt", + "lemon pepper", + "large eggs", + "hot sauce" + ] + }, + { + "id": 20902, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "crushed red pepper", + "sugar", + "basil", + "bay leaf", + "tomato sauce", + "onion powder", + "salt", + "pepper", + "garlic", + "oregano" + ] + }, + { + "id": 37273, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "corn husks", + "cilantro leaves", + "lime", + "green onions", + "water", + "quinoa", + "plum tomatoes", + "olive oil", + "salt" + ] + }, + { + "id": 49177, + "cuisine": "chinese", + "ingredients": [ + "vegetables", + "salt", + "sugar", + "garlic", + "fresh basil leaves", + "chinese eggplants", + "corn starch", + "light soy sauce", + "chili bean sauce" + ] + }, + { + "id": 17018, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "brown rice", + "frozen corn", + "canola oil", + "shredded cheddar cheese", + "garlic", + "onions", + "pepper", + "chili powder", + "hot sauce", + "ground cumin", + "tomato purée", + "bell pepper", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 26231, + "cuisine": "italian", + "ingredients": [ + "pepper", + "basil leaves", + "shredded mozzarella cheese", + "chicken breast fillets", + "sun-dried tomatoes", + "salt", + "olive oil", + "mushrooms", + "eggs", + "panko", + "shredded parmesan cheese" + ] + }, + { + "id": 11057, + "cuisine": "jamaican", + "ingredients": [ + "chicken breast halves", + "carrots", + "frozen peas", + "dried thyme", + "coarse salt", + "cooked white rice", + "curry powder", + "vegetable oil", + "coconut milk", + "ground cumin", + "ground pepper", + "garlic cloves", + "onions" + ] + }, + { + "id": 10192, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "ground red pepper", + "salt", + "chopped fresh mint", + "pitas", + "ground sirloin", + "garlic cloves", + "dried oregano", + "garlic powder", + "onion powder", + "fresh lemon juice", + "ground lamb", + "fat free yogurt", + "cooking spray", + "purple onion", + "cucumber" + ] + }, + { + "id": 9225, + "cuisine": "french", + "ingredients": [ + "shredded cheddar cheese", + "beef gravy", + "french fri frozen" + ] + }, + { + "id": 26339, + "cuisine": "italian", + "ingredients": [ + "cracked black pepper", + "dri leav rosemari", + "dried oregano", + "olive oil", + "bread dough", + "feta cheese" + ] + }, + { + "id": 48405, + "cuisine": "mexican", + "ingredients": [ + "bay leaves", + "corn tortillas", + "chopped cilantro fresh", + "pepper", + "hot sauce", + "chipotles in adobo", + "cabbage", + "radishes", + "sour cream", + "onions", + "chuck", + "kosher salt", + "garlic", + "fresh lime juice", + "dried oregano" + ] + }, + { + "id": 19615, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "olive oil", + "diced tomatoes", + "crabmeat", + "clarified butter", + "shucked oysters", + "seafood seasoning", + "salt", + "uncook medium shrimp, peel and devein", + "water", + "bay leaves", + "all-purpose flour", + "onions", + "green bell pepper", + "ground black pepper", + "garlic", + "okra" + ] + }, + { + "id": 31275, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "butternut squash", + "all-purpose flour", + "pasta", + "freshly grated parmesan", + "heavy cream", + "rosemary sprigs", + "unsalted butter", + "salt", + "milk", + "vegetable oil", + "dried rosemary" + ] + }, + { + "id": 5900, + "cuisine": "southern_us", + "ingredients": [ + "oil", + "salt", + "pepper", + "okra" + ] + }, + { + "id": 38707, + "cuisine": "french", + "ingredients": [ + "white pepper", + "mushroom caps", + "salt", + "lump crab meat", + "flour", + "fresh lemon juice", + "unsalted butter", + "shallots", + "fat free milk", + "cooking spray", + "bechamel" + ] + }, + { + "id": 19104, + "cuisine": "irish", + "ingredients": [ + "cider vinegar", + "fresh orange juice", + "kosher salt", + "shallots", + "sugar", + "peeled fresh ginger", + "cranberries", + "olive oil", + "ground allspice" + ] + }, + { + "id": 37137, + "cuisine": "british", + "ingredients": [ + "cream", + "balsamic vinegar", + "bicarbonate of soda", + "unsalted butter", + "vanilla extract", + "eggs", + "caster sugar", + "dates", + "brown sugar", + "self rising flour" + ] + }, + { + "id": 37629, + "cuisine": "chinese", + "ingredients": [ + "ginger", + "red bell pepper", + "organic chicken broth", + "coarse salt", + "soba noodles", + "boneless skinless chicken breast halves", + "garlic", + "fresh lime juice", + "red pepper flakes", + "scallions", + "snow peas" + ] + }, + { + "id": 20249, + "cuisine": "mexican", + "ingredients": [ + "Campbell's Condensed Tomato Soup", + "ground beef", + "flour tortillas", + "milk", + "shredded cheddar cheese", + "salsa" + ] + }, + { + "id": 23796, + "cuisine": "mexican", + "ingredients": [ + "chihuahua cheese", + "ground black pepper", + "fine sea salt", + "carrots", + "arbol chile", + "lime", + "flour tortillas", + "garlic cloves", + "ancho chile pepper", + "chicken", + "San Marzano tomatoes", + "coriander seeds", + "queso fresco", + "dill seed", + "celery", + "cooked turkey", + "unsalted butter", + "cumin seed", + "sour cream", + "onions" + ] + }, + { + "id": 3116, + "cuisine": "italian", + "ingredients": [ + "nutmeg", + "lasagne", + "tomato basil sauce", + "mozzarella cheese", + "egg yolks", + "fresh parsley", + "fresh spinach", + "parmigiano reggiano cheese", + "ricotta", + "pepper", + "salt" + ] + }, + { + "id": 23086, + "cuisine": "southern_us", + "ingredients": [ + "cooked bacon", + "green tomatoes", + "buttermilk", + "preserves" + ] + }, + { + "id": 10989, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "lime wedges", + "chopped cilantro fresh", + "ground cumin", + "fat free less sodium chicken broth", + "golden raisins", + "chopped onion", + "plum tomatoes", + "sliced almonds", + "jalapeno chilies", + "salt", + "basmati rice", + "fresh ginger", + "boneless skinless chicken breasts", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 9016, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "olive oil", + "boneless skinless chicken breasts", + "onions", + "black pepper", + "bay leaves", + "carrots", + "tomato sauce", + "garlic powder", + "garlic", + "cumin", + "tomatoes", + "kosher salt", + "dry white wine", + "red bell pepper" + ] + }, + { + "id": 22138, + "cuisine": "indian", + "ingredients": [ + "salt", + "scallions", + "curry leaves", + "mustard powder", + "medium shrimp", + "cayenne pepper", + "fresh lemon juice", + "tumeric", + "cumin seed", + "canola oil" + ] + }, + { + "id": 1476, + "cuisine": "greek", + "ingredients": [ + "salt", + "fresh mint", + "chicken broth", + "long-grain rice", + "olive oil", + "feta cheese crumbles", + "freshly ground pepper", + "onions" + ] + }, + { + "id": 3011, + "cuisine": "brazilian", + "ingredients": [ + "milk", + "avocado", + "sugar", + "ice" + ] + }, + { + "id": 28311, + "cuisine": "mexican", + "ingredients": [ + "sesame oil", + "chicken stock cubes", + "green chile", + "cilantro", + "rice vinegar", + "tomatillos", + "salt", + "jalapeno chilies", + "garlic" + ] + }, + { + "id": 11743, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "kalamata", + "flat leaf parsley", + "tuna packed in water", + "ground black pepper", + "purple onion", + "butter lettuce", + "sherry vinegar", + "extra-virgin olive oil", + "kosher salt", + "artichok heart marin", + "feta cheese crumbles" + ] + }, + { + "id": 31660, + "cuisine": "korean", + "ingredients": [ + "eggs", + "carrots", + "shredded cabbage", + "soy sauce", + "bread", + "butter" + ] + }, + { + "id": 46175, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "cooking spray", + "salt", + "onions", + "spelt", + "diced tomatoes", + "green beans", + "black pepper", + "lamb stew meat", + "garlic cloves", + "fresh basil", + "water", + "dry red wine", + "bay leaf" + ] + }, + { + "id": 48336, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh basil", + "chopped green bell pepper", + "cajun seasoning", + "chopped onion", + "minced garlic", + "green onions", + "chopped celery", + "rotini", + "crawfish", + "grated parmesan cheese", + "heavy cream", + "ham", + "olive oil", + "chopped fresh thyme", + "hot sauce", + "fresh parsley" + ] + }, + { + "id": 26920, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "olive oil", + "garlic", + "sugar", + "egg noodles", + "green bell pepper", + "eggplant", + "onions", + "water", + "diced tomatoes" + ] + }, + { + "id": 37288, + "cuisine": "italian", + "ingredients": [ + "pepper", + "shredded swiss cheese", + "salt", + "garlic salt", + "chicken broth", + "half & half", + "yellow bell pepper", + "red bell pepper", + "grated parmesan cheese", + "chicken tenderloin", + "sliced mushrooms", + "ground black pepper", + "butter", + "all-purpose flour", + "spaghetti" + ] + }, + { + "id": 49126, + "cuisine": "indian", + "ingredients": [ + "green bell pepper", + "garam masala", + "corn starch", + "water", + "salt", + "lite coconut milk", + "chicken breasts", + "onions", + "tomato paste", + "curry powder", + "garlic cloves" + ] + }, + { + "id": 25259, + "cuisine": "korean", + "ingredients": [ + "low sodium chicken broth", + "ginger", + "low sodium beef broth", + "lemongrass", + "green onions", + "garlic", + "soft tofu", + "thai chile", + "coriander", + "shredded carrots", + "daikon", + "kimchi" + ] + }, + { + "id": 28994, + "cuisine": "irish", + "ingredients": [ + "eggs", + "ground nutmeg", + "salt", + "ground cloves", + "baking powder", + "chopped walnuts", + "shortening", + "potatoes", + "all-purpose flour", + "ground cinnamon", + "milk", + "raisins", + "white sugar" + ] + }, + { + "id": 48833, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "tortilla chips", + "pepper", + "chicken tenderloin", + "jack cheese", + "boneless skinless chicken breasts", + "onions", + "taco seasoning mix", + "salsa" + ] + }, + { + "id": 6734, + "cuisine": "indian", + "ingredients": [ + "amaretto liqueur", + "cream of coconut", + "2% reduced-fat milk", + "ground cardamom", + "whole cloves", + "lemon rind", + "ground ginger", + "star anise", + "coconut milk" + ] + }, + { + "id": 8947, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "yellow corn meal", + "baking powder", + "large eggs", + "all-purpose flour", + "shortening", + "buttermilk" + ] + }, + { + "id": 13168, + "cuisine": "french", + "ingredients": [ + "lemon zest", + "freshly ground pepper", + "crème fraîche", + "Meyer lemon juice", + "salt" + ] + }, + { + "id": 7127, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "shredded cheddar cheese", + "cream style corn", + "salt", + "green bell pepper", + "garlic powder", + "pimentos", + "onions", + "eggs", + "seasoning salt", + "jalapeno chilies", + "cayenne pepper", + "crawfish", + "baking soda", + "vegetable oil" + ] + }, + { + "id": 19368, + "cuisine": "vietnamese", + "ingredients": [ + "lettuce", + "lemongrass", + "shallots", + "hot sauce", + "pickled vegetables", + "mayonaise", + "radishes", + "cilantro leaves", + "carrots", + "fish sauce", + "ground black pepper", + "salt", + "chinese five-spice powder", + "sugar", + "french bread", + "rice vinegar", + "minced pork" + ] + }, + { + "id": 49411, + "cuisine": "italian", + "ingredients": [ + "orange", + "butter", + "veal shanks", + "plum tomatoes", + "pepper", + "dry white wine", + "garlic cloves", + "onions", + "olive oil", + "lemon", + "carrots", + "veal stock", + "flour", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 15726, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "ground cloves", + "spring onions", + "ground white pepper", + "sugar", + "honey", + "jam", + "fresh parsley", + "ground cinnamon", + "orange", + "malt vinegar", + "chutney", + "soy sauce", + "ground nutmeg", + "duck" + ] + }, + { + "id": 5631, + "cuisine": "southern_us", + "ingredients": [ + "butter-margarine blend", + "salt", + "sweet potatoes", + "chopped pecans", + "ground cloves", + "maple syrup", + "brown sugar", + "fresh orange juice" + ] + }, + { + "id": 26316, + "cuisine": "chinese", + "ingredients": [ + "egg whites", + "dried shiitake mushrooms", + "garlic cloves", + "water", + "green onions", + "gingerroot", + "boiling water", + "frozen chopped spinach", + "water chestnuts", + "dark sesame oil", + "corn starch", + "won ton wrappers", + "vegetable oil", + "long-grain rice" + ] + }, + { + "id": 37633, + "cuisine": "jamaican", + "ingredients": [ + "ground ginger", + "lime", + "ground black pepper", + "pimentos", + "orange juice", + "brown sugar", + "olive oil", + "dark rum", + "white wine vinegar", + "thyme leaves", + "ground cinnamon", + "chili", + "chips", + "garlic", + "scallions", + "soy sauce", + "ground nutmeg", + "pork loin", + "salt", + "onions" + ] + }, + { + "id": 19880, + "cuisine": "cajun_creole", + "ingredients": [ + "louisiana hot sauce", + "bay leaves", + "heavy cream", + "yellow onion", + "tomatoes", + "ground black pepper", + "cajun seasoning", + "extra-virgin olive oil", + "cooked white rice", + "andouille sausage", + "roasted red peppers", + "worcestershire sauce", + "garlic", + "boneless skinless chicken breast halves", + "kosher salt", + "dry white wine", + "deveined shrimp", + "celery" + ] + }, + { + "id": 1160, + "cuisine": "mexican", + "ingredients": [ + "reduced sodium vegetable broth", + "ground pepper", + "scallions", + "corn kernels", + "coarse salt", + "corn tortillas", + "black beans", + "pepper jack", + "frozen chopped spinach, thawed and squeezed dry", + "tomato paste", + "olive oil", + "all-purpose flour", + "ground cumin" + ] + }, + { + "id": 43072, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "sauce", + "roasted garlic", + "peppercorns", + "sweetened coconut flakes", + "peanut oil", + "curry powder", + "flat iron steaks", + "ground cumin" + ] + }, + { + "id": 4997, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "dry white wine", + "garlic cloves", + "water", + "fresh oregano", + "flat leaf parsley", + "hot red pepper flakes", + "fish stock", + "fresh lemon juice", + "arborio rice", + "olive oil", + "squid" + ] + }, + { + "id": 5091, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "large eggs", + "double-acting baking powder", + "yellow corn meal", + "finely chopped onion", + "all-purpose flour", + "milk", + "lean bacon", + "sour cream", + "unsalted butter", + "salt" + ] + }, + { + "id": 17593, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "purple onion", + "chicken", + "tomatoes", + "olive oil", + "garlic cloves", + "celery ribs", + "water", + "salt", + "fresh rosemary", + "dry white wine", + "carrots" + ] + }, + { + "id": 35491, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "shredded cheddar cheese", + "diced tomatoes", + "taco seasoning", + "ground cumin", + "black pepper", + "lean ground meat", + "salt", + "sour cream", + "biscuits", + "garlic powder", + "crushed red pepper flakes", + "lemon juice", + "pepper", + "jalapeno chilies", + "cream cheese", + "onions" + ] + }, + { + "id": 44558, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "honey", + "bacon slices", + "fresh basil leaves", + "pepper", + "green onions", + "roasting chickens", + "salad greens", + "lemon", + "garlic cloves", + "pecan halves", + "unsalted butter", + "salt" + ] + }, + { + "id": 25324, + "cuisine": "italian", + "ingredients": [ + "diced tomatoes", + "italian seasoning", + "olive oil", + "sweet italian sausage", + "beef broth", + "penn pasta, cook and drain", + "onions" + ] + }, + { + "id": 13819, + "cuisine": "italian", + "ingredients": [ + "pepper", + "rice", + "pasta sauce", + "basil", + "black pepper", + "salt", + "mild Italian sausage", + "pinto beans" + ] + }, + { + "id": 6629, + "cuisine": "italian", + "ingredients": [ + "water", + "lemon juice", + "ground black pepper", + "chicken", + "dry vermouth", + "salt", + "olive oil", + "dried oregano" + ] + }, + { + "id": 9998, + "cuisine": "mexican", + "ingredients": [ + "corn tortilla chips", + "purple onion", + "chopped cilantro fresh", + "avocado", + "jicama", + "garlic cloves", + "habanero chile", + "salt", + "mango", + "tomatoes", + "extra-virgin olive oil", + "shrimp" + ] + }, + { + "id": 27126, + "cuisine": "italian", + "ingredients": [ + "black olives", + "artichok heart marin", + "broccoli", + "tomatoes", + "purple onion", + "green onions", + "salad dressing" + ] + }, + { + "id": 26315, + "cuisine": "japanese", + "ingredients": [ + "sugar pea", + "fresh ginger root", + "lemon", + "baby corn", + "stock", + "fresh coriander", + "spring onions", + "broccoli", + "black pepper", + "prawns", + "garlic", + "chillies", + "fish sauce", + "lime", + "rice noodles", + "carrots" + ] + }, + { + "id": 36834, + "cuisine": "indian", + "ingredients": [ + "chicken broth", + "black pepper", + "jalapeno chilies", + "apples", + "cardamom", + "cumin", + "unsweetened coconut milk", + "roasted cashews", + "dried thyme", + "diced tomatoes", + "yellow onion", + "carrots", + "ground cinnamon", + "curry powder", + "butter", + "salt", + "garlic cloves", + "red lentils", + "tumeric", + "ground black pepper", + "paprika", + "scallions", + "ginger root" + ] + }, + { + "id": 18790, + "cuisine": "british", + "ingredients": [ + "flour", + "kidney", + "beef stock", + "puff pastry", + "egg yolks", + "onions", + "water", + "topside steak" + ] + }, + { + "id": 11795, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "grated parmesan cheese", + "onions", + "fennel seeds", + "English muffins", + "lean ground beef", + "italian seasoning", + "pepper", + "cheese slices", + "garlic salt", + "fresh basil", + "large eggs", + "fresh parsley" + ] + }, + { + "id": 13095, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "black pepper", + "flour", + "cayenne pepper", + "mayonaise", + "Sriracha", + "lemon", + "cornmeal", + "jumbo shrimp", + "garlic powder", + "onion powder", + "creole seasoning", + "mustard", + "soy sauce", + "cooking oil", + "hot sauce" + ] + }, + { + "id": 44487, + "cuisine": "jamaican", + "ingredients": [ + "milk", + "ice cubes", + "mango", + "seeds", + "sugar" + ] + }, + { + "id": 3135, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "red food coloring", + "lemon juice", + "chicken legs", + "amchur", + "salt", + "ground cumin", + "tandoori spices", + "kasuri methi", + "chaat masala", + "red chili powder", + "garam masala", + "curds" + ] + }, + { + "id": 1395, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "tortilla chips", + "minced garlic", + "tomatillos", + "onions", + "jalapeno chilies", + "fresh lime juice", + "water", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 11257, + "cuisine": "indian", + "ingredients": [ + "water", + "butternut squash", + "fenugreek seeds", + "chopped cilantro fresh", + "pepper", + "ground nutmeg", + "cayenne pepper", + "onions", + "tomato paste", + "fresh ginger root", + "salt", + "coconut milk", + "red lentils", + "curry powder", + "garlic", + "peanut oil" + ] + }, + { + "id": 2470, + "cuisine": "italian", + "ingredients": [ + "short-grain rice", + "hot water", + "soy sauce", + "scallions", + "ponzu", + "cabbage", + "fresh ginger", + "shrimp" + ] + }, + { + "id": 26722, + "cuisine": "mexican", + "ingredients": [ + "flour", + "salt", + "warm water", + "oil", + "baking powder" + ] + }, + { + "id": 49534, + "cuisine": "chinese", + "ingredients": [ + "ground black pepper", + "steel-cut oatmeal", + "dried lentils", + "wheatberries", + "brown rice", + "kosher salt", + "white rice" + ] + }, + { + "id": 13924, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "1% low-fat milk", + "yellow onion", + "chopped cilantro fresh", + "chili powder", + "salt", + "carrots", + "canola oil", + "corn", + "garlic", + "green chilies", + "monterey jack", + "turkey", + "all-purpose flour", + "celery", + "ground cumin" + ] + }, + { + "id": 20122, + "cuisine": "italian", + "ingredients": [ + "pomegranate juice", + "orange", + "ground black pepper", + "grated orange", + "chicken stock", + "pomegranate seeds", + "orange juice", + "pancetta", + "quail", + "salt", + "marsala wine", + "olive oil", + "chopped fresh mint" + ] + }, + { + "id": 16780, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "milk", + "fine sea salt", + "chopped fresh chives", + "unsalted butter", + "flat leaf parsley" + ] + }, + { + "id": 7964, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "scallions", + "lemongrass", + "shrimp", + "water", + "oil", + "fish sauce", + "hoisin sauce", + "onions" + ] + }, + { + "id": 7924, + "cuisine": "southern_us", + "ingredients": [ + "freshly grated parmesan", + "bacon", + "hot red pepper flakes", + "red wine vinegar", + "onions", + "olive oil", + "large garlic cloves", + "fusilli", + "collards" + ] + }, + { + "id": 2024, + "cuisine": "french", + "ingredients": [ + "honey", + "lemon rind", + "chocolate morsels", + "lemon", + "fresh mint", + "gelatin", + "fresh lemon juice", + "cream", + "cream cheese", + "sour cream" + ] + }, + { + "id": 23286, + "cuisine": "french", + "ingredients": [ + "eggs", + "milk", + "vanilla", + "grated orange peel", + "unsalted butter", + "orange juice", + "powdered sugar", + "ground nutmeg", + "maple syrup", + "ground cinnamon", + "sugar", + "croissants" + ] + }, + { + "id": 30420, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "garlic", + "fresh green bean", + "olive oil", + "boneless skinless chicken breast halves", + "diced tomatoes" + ] + }, + { + "id": 38948, + "cuisine": "french", + "ingredients": [ + "milk", + "sugar", + "eggs", + "flour" + ] + }, + { + "id": 29230, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "large eggs", + "low-fat milk", + "ground cinnamon", + "unsalted butter", + "mexican chocolate", + "water", + "vegetable oil", + "sugar", + "granulated sugar", + "all-purpose flour" + ] + }, + { + "id": 20448, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vegetable oil", + "large eggs", + "salt", + "baking soda", + "buttermilk", + "yellow corn meal", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 45357, + "cuisine": "indian", + "ingredients": [ + "garbanzo beans", + "vegetable oil", + "coconut milk", + "tomato paste", + "extra firm tofu", + "salt", + "curry powder", + "mushrooms", + "carrots", + "cauliflower", + "fresh ginger root", + "vegetable broth", + "onions" + ] + }, + { + "id": 46388, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "corn starch", + "sugar", + "green onions", + "pork", + "salt", + "dark soy sauce", + "vinegar", + "cucumber" + ] + }, + { + "id": 23706, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "bacon", + "milk", + "green onions", + "freshly ground pepper", + "japanese breadcrumbs", + "quickcooking grits", + "salt", + "extra sharp white cheddar cheese", + "vegetable oil" + ] + }, + { + "id": 5120, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "sea salt", + "microgreens", + "butter", + "buffalo mozzarella", + "white onion", + "vegetable stock", + "risotto rice", + "tomatoes", + "ground black pepper", + "garlic" + ] + }, + { + "id": 17711, + "cuisine": "french", + "ingredients": [ + "fresh thyme leaves", + "anchovy fillets", + "olive oil", + "chopped fresh thyme", + "olives", + "cooking spray", + "salt", + "white bread", + "balsamic vinegar", + "onions" + ] + }, + { + "id": 7009, + "cuisine": "french", + "ingredients": [ + "marrons glacés", + "heavy cream", + "chestnuts", + "large eggs", + "bittersweet chocolate", + "unsalted butter", + "salt", + "sugar", + "dark rum" + ] + }, + { + "id": 31558, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "jalapeno chilies", + "cilantro", + "oil", + "cheddar cheese", + "chicken breasts", + "salt", + "tomatoes", + "green onions", + "crushed red pepper flakes", + "cumin", + "pepper jack", + "queso blanco", + "yellow onion" + ] + }, + { + "id": 23539, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "salt", + "cocktail cherries", + "cola", + "apple cider vinegar", + "baby back ribs", + "dijon mustard", + "garlic chili sauce" + ] + }, + { + "id": 42854, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "pecorino romano cheese", + "chopped fresh sage", + "wild mushrooms", + "black truffle oil", + "ricotta cheese", + "salt", + "low salt chicken broth", + "prosciutto", + "butter", + "all-purpose flour", + "thyme sprigs", + "sage leaves", + "shallots", + "extra-virgin olive oil", + "ground white pepper" + ] + }, + { + "id": 43669, + "cuisine": "mexican", + "ingredients": [ + "condensed cream of chicken soup", + "jalapeno chilies", + "corn tortillas", + "water", + "lean ground beef", + "taco seasoning mix", + "shredded mozzarella cheese", + "plain yogurt", + "green onions" + ] + }, + { + "id": 3548, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dried basil", + "chinese cabbage", + "white pepper", + "salt", + "garlic cloves", + "cooked rice", + "ground veal", + "gingerroot", + "low sodium soy sauce", + "pinenuts", + "rice vinegar", + "large shrimp" + ] + }, + { + "id": 49072, + "cuisine": "mexican", + "ingredients": [ + "cayenne", + "baking powder", + "all-purpose flour", + "eggs", + "granulated sugar", + "mexican chocolate", + "chipotle chile powder", + "ground cinnamon", + "unsalted butter", + "almond meal", + "bittersweet chocolate", + "powdered sugar", + "coffee", + "salt" + ] + }, + { + "id": 12586, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "lean ground beef", + "all-purpose flour", + "unsalted butter", + "ice water", + "onions", + "ground black pepper", + "butter", + "lard", + "hard-boiled egg", + "salt" + ] + }, + { + "id": 1566, + "cuisine": "mexican", + "ingredients": [ + "slaw mix", + "fresh lime juice", + "olive oil", + "feta cheese crumbles", + "ground cumin", + "black beans", + "hot sauce", + "chopped cilantro fresh", + "green onions", + "corn tortillas" + ] + }, + { + "id": 45284, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "garlic powder", + "chili powder", + "cumin", + "beans", + "jalapeno chilies", + "salt", + "tomato sauce", + "diced green chilies", + "vegetable broth", + "lime", + "brown rice", + "garlic salt" + ] + }, + { + "id": 24229, + "cuisine": "jamaican", + "ingredients": [ + "jumbo shrimp", + "salt", + "canola oil", + "lime", + "garlic cloves", + "butter", + "thyme", + "pepper", + "scallions" + ] + }, + { + "id": 27622, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "buttermilk", + "bacon slices", + "peanut oil", + "cornmeal", + "fresh basil", + "ground black pepper", + "heirloom tomatoes", + "crème fraîche", + "fresh lemon juice", + "smoked ham hocks", + "fresh chives", + "red wine vinegar", + "peas", + "all-purpose flour", + "thyme", + "cherry tomatoes", + "baby okra", + "extra-virgin olive oil", + "garlic cloves", + "onions" + ] + }, + { + "id": 37574, + "cuisine": "british", + "ingredients": [ + "clove", + "brandy", + "flour", + "salt", + "dried currants", + "large eggs", + "raisins", + "nutmeg", + "light cream", + "cinnamon", + "candied fruit", + "brown sugar", + "suet", + "whipped cream", + "lemon rind" + ] + }, + { + "id": 4205, + "cuisine": "cajun_creole", + "ingredients": [ + "horseradish", + "radicchio", + "paprika", + "celery ribs", + "pepper", + "vegetable oil", + "scallions", + "creole mustard", + "crawfish", + "cayenne", + "all-purpose flour", + "romaine lettuce", + "distilled vinegar", + "salt" + ] + }, + { + "id": 36181, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "peanuts", + "rice noodles", + "oil", + "iceberg lettuce", + "ground ginger", + "curry powder", + "green onions", + "cilantro leaves", + "asian fish sauce", + "catfish fillets", + "sugar", + "cayenne", + "garlic", + "beansprouts", + "fresh dill", + "lime juice", + "shallots", + "rice vinegar", + "ground turmeric" + ] + }, + { + "id": 6870, + "cuisine": "italian", + "ingredients": [ + "celery stick", + "shallots", + "salt", + "pork sausages", + "Italian herbs", + "diced tomatoes", + "carrots", + "pepper", + "vegetable oil", + "garlic cloves", + "parmesan cheese", + "peas", + "smoked paprika" + ] + }, + { + "id": 12157, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "ground black pepper", + "diced tomatoes", + "all-purpose flour", + "celery", + "dried rosemary", + "dried thyme", + "russet potatoes", + "garlic", + "carrots", + "marjoram", + "rump roast", + "bay leaves", + "extra-virgin olive oil", + "yellow onion", + "fresh parsley", + "fresh basil", + "parmesan cheese", + "red wine vinegar", + "salt", + "low sodium beef broth", + "dried oregano" + ] + }, + { + "id": 11294, + "cuisine": "mexican", + "ingredients": [ + "lime", + "tomatoes", + "cayenne pepper", + "salt", + "white onion", + "chopped cilantro fresh" + ] + }, + { + "id": 16608, + "cuisine": "chinese", + "ingredients": [ + "honey", + "red pepper flakes", + "orange juice", + "sliced green onions", + "pepper", + "sesame seeds", + "rice vinegar", + "carrots", + "soy sauce", + "olive oil", + "salt", + "garlic cloves", + "water", + "boneless skinless chicken breasts", + "broccoli", + "corn starch" + ] + }, + { + "id": 22617, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "unsalted butter", + "buttermilk", + "grated lemon zest", + "cold water", + "cayenne", + "fresh thyme leaves", + "dry bread crumbs", + "chicken", + "olive oil", + "large eggs", + "paprika", + "fresh parsley leaves", + "freshly grated parmesan", + "shallots", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 34314, + "cuisine": "brazilian", + "ingredients": [ + "ice cubes", + "granulated sugar", + "lime", + "cold water" + ] + }, + { + "id": 22505, + "cuisine": "french", + "ingredients": [ + "fresh spinach", + "honey", + "artichok heart marin", + "garlic", + "fresh parsley", + "water", + "parmesan cheese", + "wheels", + "salt", + "pepper", + "olive oil", + "flour", + "crushed red pepper", + "milk", + "large eggs", + "butter", + "all-purpose flour" + ] + }, + { + "id": 42316, + "cuisine": "french", + "ingredients": [ + "olive oil", + "cornichons", + "white wine", + "shallots", + "flat leaf parsley", + "black pepper", + "dijon mustard", + "loin pork chops", + "fat free less sodium chicken broth", + "sea salt" + ] + }, + { + "id": 3999, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "dried pappardelle", + "celery stick", + "grated parmesan cheese", + "salt", + "carrots", + "fresh rosemary", + "unsalted butter", + "purple onion", + "garlic cloves", + "Chianti", + "meat", + "pearl barley", + "plum tomatoes" + ] + }, + { + "id": 49268, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "green onions", + "garlic", + "rice vinegar", + "serrano chile", + "fish sauce", + "granulated sugar", + "pickling cucumbers", + "salt", + "corn starch", + "canola oil", + "thai basil", + "green leaf lettuce", + "unsalted dry roast peanuts", + "dark brown sugar", + "large shrimp", + "white pepper", + "mint leaves", + "rice vermicelli", + "cilantro leaves", + "fresh lime juice" + ] + }, + { + "id": 45009, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "all-purpose flour", + "vegetable oil", + "ground black pepper", + "sardines", + "salt" + ] + }, + { + "id": 29830, + "cuisine": "mexican", + "ingredients": [ + "coconut oil", + "sweet potatoes", + "yellow onion", + "water", + "garlic", + "black beans", + "chili powder", + "ground cumin", + "tomatoes", + "zucchini", + "fine sea salt" + ] + }, + { + "id": 22388, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "salt", + "onions", + "tomato paste", + "ground black pepper", + "celery", + "olive oil", + "carrots", + "tomatoes", + "garlic", + "fresh parsley" + ] + }, + { + "id": 1605, + "cuisine": "french", + "ingredients": [ + "frozen pastry puff sheets", + "brie cheese", + "water", + "butter", + "shiitake", + "salt", + "egg yolks" + ] + }, + { + "id": 29123, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "butter", + "all-purpose flour", + "tomatoes", + "dried thyme", + "chopped celery", + "onions", + "water", + "garlic", + "green pepper", + "top round steak", + "ground red pepper", + "salt", + "grits" + ] + }, + { + "id": 25042, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "ground black pepper", + "gluten", + "kosher salt", + "jalapeno chilies", + "rice vinegar", + "lower sodium soy sauce", + "flank steak", + "carrots", + "sugar", + "radishes", + "cilantro leaves" + ] + }, + { + "id": 26356, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "olive oil", + "italian seasoning", + "quinoa", + "garlic" + ] + }, + { + "id": 1951, + "cuisine": "cajun_creole", + "ingredients": [ + "creole seasoning", + "smoked sausage", + "whole okra", + "red bell pepper", + "turkey tenderloins" + ] + }, + { + "id": 15551, + "cuisine": "italian", + "ingredients": [ + "sugar", + "bacon slices", + "California bay leaves", + "onions", + "fresh basil", + "large garlic cloves", + "fresh pork fat", + "Italian bread", + "tomatoes", + "olive oil", + "fresh oregano", + "juice", + "cold water", + "black pepper", + "salt", + "lentils", + "boiling potatoes" + ] + }, + { + "id": 3921, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "fresh lime juice", + "light brown sugar", + "garlic", + "water", + "fish sauce", + "bird chile" + ] + }, + { + "id": 9545, + "cuisine": "southern_us", + "ingredients": [ + "vanilla beans", + "lemon", + "grated nutmeg", + "ground ginger", + "unsalted butter", + "fine sea salt", + "fresh lemon juice", + "light brown sugar", + "peaches", + "vanilla extract", + "dark brown sugar", + "ground cinnamon", + "ice water", + "all-purpose flour", + "instant tapioca" + ] + }, + { + "id": 47153, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "chana dal", + "cumin seed", + "red chili peppers", + "salt", + "oil", + "asafoetida", + "ginger", + "urad dal split", + "grated coconut", + "green chilies", + "mustard seeds" + ] + }, + { + "id": 28100, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "onions", + "golden brown sugar", + "white wine vinegar", + "prosciutto", + "smoked gouda", + "butter" + ] + }, + { + "id": 41135, + "cuisine": "french", + "ingredients": [ + "butter" + ] + }, + { + "id": 5217, + "cuisine": "southern_us", + "ingredients": [ + "vanilla lowfat yogurt", + "fresh pineapple", + "peaches", + "coconut", + "chop fine pecan" + ] + }, + { + "id": 7514, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "onion powder", + "cayenne pepper", + "white pepper", + "potatoes", + "paprika", + "hot pepper sauce", + "vegetable oil", + "pepper", + "sweet potatoes", + "salt" + ] + }, + { + "id": 32120, + "cuisine": "korean", + "ingredients": [ + "roasted sesame seeds", + "minced garlic", + "sesame oil", + "fresh spinach", + "spring onions", + "water", + "salt" + ] + }, + { + "id": 20923, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "corn kernel whole", + "black beans", + "diced tomatoes", + "lean ground beef", + "taco seasoning mix", + "vegetable juice cocktail" + ] + }, + { + "id": 43387, + "cuisine": "thai", + "ingredients": [ + "cayenne", + "chili flakes", + "salt", + "pineapple", + "lime" + ] + }, + { + "id": 35143, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "vegetable broth", + "bay leaf", + "black-eyed peas", + "garlic cloves", + "ground sage", + "thyme", + "water", + "salt", + "onions" + ] + }, + { + "id": 20562, + "cuisine": "thai", + "ingredients": [ + "green curry paste", + "chopped cilantro fresh", + "garlic", + "canned coconut milk", + "shallots" + ] + }, + { + "id": 14991, + "cuisine": "french", + "ingredients": [ + "olive oil", + "red wine vinegar", + "feta cheese crumbles", + "pepper", + "red cabbage", + "salt", + "romaine lettuce", + "dijon mustard", + "paprika", + "water", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 3942, + "cuisine": "southern_us", + "ingredients": [ + "quickcooking grits", + "lemon juice", + "Oscar Mayer Bacon", + "fresh parsley", + "KRAFT Shredded Cheddar Cheese", + "garlic", + "green onions", + "medium shrimp" + ] + }, + { + "id": 33330, + "cuisine": "japanese", + "ingredients": [ + "yellow miso", + "dark brown sugar", + "grated orange peel", + "green onions", + "salmon fillets", + "mirin", + "soy sauce", + "orange juice" + ] + }, + { + "id": 31826, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "beefsteak tomatoes", + "extra-virgin olive oil", + "hot water", + "canola oil", + "ground black pepper", + "chile de arbol", + "ground coriander", + "chopped cilantro fresh", + "kosher salt", + "lemon", + "garlic", + "red bell pepper", + "ground cumin", + "halibut fillets", + "ancho powder", + "grated lemon zest", + "fresh mint" + ] + }, + { + "id": 47698, + "cuisine": "moroccan", + "ingredients": [ + "mint sprigs", + "sugar", + "boiling water", + "green tea" + ] + }, + { + "id": 33091, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "crushed tomatoes", + "garlic", + "brown sugar", + "red pepper flakes", + "capers", + "olive oil", + "yellow onion", + "pasta", + "anchovies", + "kalamata" + ] + }, + { + "id": 45477, + "cuisine": "southern_us", + "ingredients": [ + "cooking spray", + "self rising flour", + "crisco", + "buttermilk", + "flour" + ] + }, + { + "id": 17209, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil cooking spray", + "green onions", + "smoked sausage", + "fresh oregano", + "dried kidney beans", + "low sodium worcestershire sauce", + "bay leaves", + "garlic", + "hot sauce", + "long-grain rice", + "pepper", + "ground red pepper", + "chopped celery", + "green pepper", + "fresh parsley", + "water", + "cajun seasoning", + "salt", + "chopped onion", + "dried oregano" + ] + }, + { + "id": 43020, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic powder", + "garlic", + "seasoning salt", + "tomatillos", + "lime", + "jalapeno chilies", + "dried red chile peppers", + "boneless chop pork", + "ground black pepper", + "salt" + ] + }, + { + "id": 38160, + "cuisine": "chinese", + "ingredients": [ + "scallions", + "fresh shiitake mushrooms", + "wheat", + "bok choy", + "dried bonito flakes" + ] + }, + { + "id": 10902, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "hot sauce", + "onions", + "chicken broth", + "diced green chilies", + "juice", + "Tabasco Green Pepper Sauce", + "long-grain rice", + "ground cumin", + "lime juice", + "salsa", + "chopped cilantro" + ] + }, + { + "id": 3469, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "long grain white rice", + "kosher salt" + ] + }, + { + "id": 18269, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "cannellini beans", + "purple onion", + "red bell pepper", + "ground cumin", + "green bell pepper", + "ground black pepper", + "crushed garlic", + "frozen corn kernels", + "splenda no calorie sweetener", + "kidney beans", + "chili powder", + "salt", + "fresh lime juice", + "black beans", + "hot pepper sauce", + "red wine vinegar", + "lemon juice", + "chopped cilantro fresh" + ] + }, + { + "id": 18965, + "cuisine": "chinese", + "ingredients": [ + "scallion greens", + "chinese noodles", + "ground pork", + "soy sauce", + "vegetable oil", + "roasted peanuts", + "vegetables", + "chili oil", + "chinkiang vinegar", + "sugar", + "szechwan peppercorns", + "garlic" + ] + }, + { + "id": 19818, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "boneless chicken", + "oil", + "curry leaves", + "red chili peppers", + "all-purpose flour", + "tumeric", + "salt", + "lemon juice", + "eggs", + "black pepper", + "green chilies" + ] + }, + { + "id": 20558, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "all-purpose flour", + "baking powder", + "cornmeal", + "milk", + "rubbed sage", + "salt" + ] + }, + { + "id": 15591, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "sausage links", + "butter", + "eggs", + "flour", + "water", + "sour cream" + ] + }, + { + "id": 13238, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "cracked black pepper", + "no salt added chicken broth", + "grated parmesan cheese", + "salt", + "vegetable oil cooking spray", + "linguine", + "onions" + ] + }, + { + "id": 4392, + "cuisine": "chinese", + "ingredients": [ + "rice wine", + "toasted sesame oil", + "white pepper", + "salt", + "sugar", + "garlic", + "iceberg lettuce", + "regular soy sauce", + "salad oil" + ] + }, + { + "id": 39762, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "olive oil", + "crushed red pepper", + "dried oregano", + "crushed tomatoes", + "grated carrot", + "sliced mushrooms", + "tomato paste", + "bay leaves", + "salt", + "dried basil", + "garlic", + "onions" + ] + }, + { + "id": 24580, + "cuisine": "cajun_creole", + "ingredients": [ + "extra large shrimp", + "cracked black pepper", + "garlic cloves", + "brown sugar", + "cajun seasoning", + "linguine", + "flat leaf parsley", + "pecorino cheese", + "green onions", + "extra-virgin olive oil", + "lemon juice", + "soy sauce", + "lemon", + "salt" + ] + }, + { + "id": 12436, + "cuisine": "italian", + "ingredients": [ + "lemon zest", + "mayonaise", + "fresh lemon juice", + "fresh basil", + "garlic cloves", + "dijon mustard" + ] + }, + { + "id": 35751, + "cuisine": "italian", + "ingredients": [ + "pepper", + "lemon", + "baby arugula", + "salt", + "zucchini", + "extra-virgin olive oil", + "shaved parmesan cheese" + ] + }, + { + "id": 7755, + "cuisine": "italian", + "ingredients": [ + "dried sage", + "whipping cream", + "large egg yolks", + "tortellini", + "onions", + "crimini mushrooms", + "garlic cloves", + "grated parmesan cheese", + "bacon slices" + ] + }, + { + "id": 20482, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "sauce", + "oats", + "lean ground beef", + "green bell pepper", + "salt", + "large eggs", + "onions" + ] + }, + { + "id": 15340, + "cuisine": "italian", + "ingredients": [ + "capers", + "freshly grated parmesan", + "linguine", + "dried oregano", + "pepper", + "red pepper flakes", + "anchovy fillets", + "pitted black olives", + "italian plum tomatoes", + "salt", + "minced garlic", + "extra-virgin olive oil", + "fresh parsley" + ] + }, + { + "id": 990, + "cuisine": "chinese", + "ingredients": [ + "vinegar", + "ginger", + "pork fillet", + "sugar", + "rice wine", + "oil", + "dark soy sauce", + "spring onions", + "cornflour", + "greens", + "light soy sauce", + "sesame oil", + "Chinese egg noodles" + ] + }, + { + "id": 37849, + "cuisine": "italian", + "ingredients": [ + "bay leaf", + "olive oil", + "pancetta", + "onions", + "black-eyed peas" + ] + }, + { + "id": 11551, + "cuisine": "thai", + "ingredients": [ + "homemade chicken broth", + "rice noodles", + "scallions", + "sugar", + "basil", + "boneless skinless chicken breast halves", + "fish sauce", + "vegetable oil", + "juice", + "kosher salt", + "Thai red curry paste" + ] + }, + { + "id": 20554, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "grated nutmeg", + "unsalted butter", + "salt", + "baking soda", + "vanilla", + "granulated sugar", + "all-purpose flour" + ] + }, + { + "id": 497, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "eggs", + "sticky rice", + "green onions", + "serrano chile", + "sugar", + "ground pork" + ] + }, + { + "id": 17334, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "salt", + "lump crab meat", + "red pepper flakes", + "sesame oil", + "scallions", + "lime", + "ginger" + ] + }, + { + "id": 10592, + "cuisine": "southern_us", + "ingredients": [ + "apple cider", + "country ham", + "stuffing" + ] + }, + { + "id": 13822, + "cuisine": "southern_us", + "ingredients": [ + "ground cloves", + "ground black pepper", + "butter", + "creole seasoning", + "ground ginger", + "cider vinegar", + "bourbon whiskey", + "salt", + "ground cayenne pepper", + "brown sugar", + "garlic powder", + "cajun seasoning", + "tomato ketchup", + "onions", + "kosher salt", + "peaches", + "worcestershire sauce", + "pork spareribs" + ] + }, + { + "id": 43705, + "cuisine": "french", + "ingredients": [ + "olive oil", + "extra", + "zucchini", + "fresh mint", + "garnish", + "fresh lemon juice", + "tomatoes", + "mint leaves", + "flat leaf parsley" + ] + }, + { + "id": 9290, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "cornmeal", + "sugar", + "butter", + "grated lemon zest", + "white vinegar", + "refrigerated piecrusts", + "all-purpose flour", + "milk", + "vanilla extract", + "lemon juice" + ] + }, + { + "id": 19387, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "juice", + "vegetable oil", + "chicken", + "jalapeno chilies", + "corn tortillas", + "mayonaise", + "salt" + ] + }, + { + "id": 37496, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "jicama", + "tortilla chips", + "chopped cilantro fresh", + "crusty bread", + "green onions", + "grated Gruyère cheese", + "cooked shrimp", + "roasted red peppers", + "Mexican beer", + "grated jack cheese", + "jalapeno chilies", + "garlic", + "corn starch" + ] + }, + { + "id": 24683, + "cuisine": "mexican", + "ingredients": [ + "whole kernel corn, drain", + "vegetable oil", + "ground cumin", + "black beans", + "boneless skinless chicken breast halves", + "diced tomatoes" + ] + }, + { + "id": 35660, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "bird chile", + "vietnamese fish sauce", + "garlic", + "white sugar", + "hot water" + ] + }, + { + "id": 3934, + "cuisine": "mexican", + "ingredients": [ + "grilled chicken breasts", + "kosher salt", + "nonfat greek yogurt", + "flour", + "chili powder", + "sauce", + "chopped cilantro fresh", + "shredded low-fat cheddar cheese", + "black pepper", + "olive oil", + "flour tortillas", + "lettuce leaves", + "garlic", + "ancho chile pepper", + "cumin", + "avocado", + "fresh spinach", + "lime", + "finely chopped onion", + "guacamole", + "onion powder", + "smoked paprika", + "oregano", + "mango salsa", + "reduced sodium chicken broth", + "garlic powder", + "roma tomatoes", + "cooked chicken", + "cayenne pepper", + "coriander", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 26347, + "cuisine": "french", + "ingredients": [ + "sugar", + "golden delicious apples", + "grated orange peel", + "unsalted butter", + "eggs", + "honey", + "dough", + "vanilla beans" + ] + }, + { + "id": 31403, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "Gochujang base", + "sugar", + "sesame oil", + "roasted white sesame seeds", + "red miso", + "green onions", + "short rib" + ] + }, + { + "id": 15614, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "all-purpose flour", + "sugar", + "calvados", + "granny smith apples", + "ice water", + "unsalted butter", + "jelly" + ] + }, + { + "id": 12064, + "cuisine": "irish", + "ingredients": [ + "garlic powder", + "salt", + "cabbage", + "potatoes", + "sweet paprika", + "chicken", + "pepper", + "onion powder", + "thyme", + "water", + "bacon", + "onions" + ] + }, + { + "id": 42325, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cooking spray", + "salt", + "chopped cilantro fresh", + "lime rind", + "ancho powder", + "fresh lime juice", + "sliced green onions", + "light sour cream", + "boneless skinless chicken breasts", + "corn tortillas", + "canola oil", + "slaw", + "1% low-fat milk", + "garlic salt", + "ground cumin" + ] + }, + { + "id": 24132, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "jalapeno chilies", + "arugula", + "dressing", + "cucumber", + "avocado", + "navel oranges", + "fresh basil", + "ruby red grapefruit" + ] + }, + { + "id": 29180, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "polenta", + "tomato sauce", + "hot Italian sausages" + ] + }, + { + "id": 8380, + "cuisine": "french", + "ingredients": [ + "large eggs", + "chocolate chips", + "powdered sugar", + "butter", + "semisweet chocolate", + "hot water", + "frozen pastry puff sheets" + ] + }, + { + "id": 31598, + "cuisine": "moroccan", + "ingredients": [ + "mint sprigs", + "greek yogurt", + "water", + "orange flower water", + "honey", + "cardamom pods", + "sugar", + "navel oranges" + ] + }, + { + "id": 4286, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "all-purpose flour", + "butter", + "large eggs", + "sugar", + "vanilla extract" + ] + }, + { + "id": 40529, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "sea salt", + "shallots", + "purple onion", + "bay leaves", + "extra-virgin olive oil", + "pepper", + "fresh thyme leaves", + "loin" + ] + }, + { + "id": 7357, + "cuisine": "chinese", + "ingredients": [ + "fresh cilantro", + "scallions", + "chinese rice wine", + "peeled fresh ginger", + "chicken", + "egg noodles", + "carrots", + "water", + "salt" + ] + }, + { + "id": 9250, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salsa", + "onions", + "tomatoes", + "flour tortillas", + "sour cream", + "ground cumin", + "fresh cilantro", + "taco seasoning", + "italian salad dressing", + "black beans", + "shredded lettuce", + "ground beef" + ] + }, + { + "id": 13076, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "onions", + "butter oil", + "black beans", + "cooked rice", + "thyme" + ] + }, + { + "id": 20246, + "cuisine": "italian", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "fresh parmesan cheese", + "boneless skinless chicken breasts", + "condensed reduced fat reduced sodium cream of chicken soup", + "penne", + "cooking spray", + "fresh oregano", + "red bell pepper", + "olive oil", + "2% low-fat cottage cheese", + "chopped onion", + "fresh spinach", + "ground black pepper", + "2% reduced-fat milk", + "sliced mushrooms" + ] + }, + { + "id": 36989, + "cuisine": "french", + "ingredients": [ + "large eggs", + "dijon style mustard", + "olive oil", + "fresh parsley leaves", + "white wine vinegar" + ] + }, + { + "id": 31030, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "dry sherry", + "lump crab meat", + "chopped fresh chives", + "all-purpose flour", + "kosher salt", + "half & half", + "shells", + "ground black pepper", + "shallots" + ] + }, + { + "id": 32826, + "cuisine": "french", + "ingredients": [ + "eggs", + "ground black pepper", + "salt", + "onions", + "white wine", + "red pepper", + "green pepper", + "sugar", + "unsalted butter", + "cayenne pepper", + "tomatoes", + "olive oil", + "garlic", + "ham" + ] + }, + { + "id": 7089, + "cuisine": "moroccan", + "ingredients": [ + "green bell pepper", + "eggplant", + "salt", + "lemon juice", + "plum tomatoes", + "sambal ulek", + "olive oil", + "golden raisins", + "garlic cloves", + "ground turmeric", + "fat-free reduced-sodium chicken broth", + "pepper", + "zucchini", + "chickpeas", + "carrots", + "ground cumin", + "ground cinnamon", + "honey", + "sweet potatoes", + "ground coriander", + "onions" + ] + }, + { + "id": 32867, + "cuisine": "italian", + "ingredients": [ + "white chocolate", + "ground nutmeg", + "butter", + "unsweetened cocoa powder", + "roasted cashews", + "coffee granules", + "large eggs", + "salt", + "ground cinnamon", + "large egg whites", + "granulated sugar", + "vanilla extract", + "brown sugar", + "baking soda", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 18296, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "garlic", + "onions", + "baby spinach leaves", + "chili powder", + "salsa", + "canola oil", + "white button mushrooms", + "boneless skinless chicken breasts", + "salt", + "dried oregano", + "ground black pepper", + "reduced-fat sour cream", + "Mexican cheese", + "ground cumin" + ] + }, + { + "id": 10554, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "salt", + "water", + "chopped fresh thyme", + "fat free less sodium chicken broth", + "cooking spray", + "yellow onion", + "olive oil", + "baking potatoes" + ] + }, + { + "id": 2714, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "garlic", + "lemon juice", + "ghee", + "potatoes", + "salt", + "carrots", + "onions", + "ginger", + "frozen spring roll wrappers", + "mustard seeds", + "cauliflower", + "peas", + "cumin seed", + "chillies" + ] + }, + { + "id": 26287, + "cuisine": "spanish", + "ingredients": [ + "roasted almonds", + "serrano ham", + "chutney", + "manchego cheese", + "pepper", + "ripe olives" + ] + }, + { + "id": 43902, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "cilantro", + "sour cream", + "lime", + "shredded parmesan cheese", + "black pepper", + "salt", + "chili powder", + "ear of corn" + ] + }, + { + "id": 39469, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "rice vinegar", + "japanese cucumber", + "wakame", + "carrots" + ] + }, + { + "id": 46305, + "cuisine": "cajun_creole", + "ingredients": [ + "bell pepper", + "shredded mozzarella cheese", + "andouille sausage", + "boneless skinless chicken breasts", + "celery", + "Alfredo sauce", + "garlic cloves", + "lasagna noodles", + "cajun seasoning", + "onions" + ] + }, + { + "id": 22471, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "butter pecan ice cream", + "firmly packed light brown sugar", + "refrigerated piecrusts", + "ground cinnamon", + "egg whites", + "braeburn apple", + "granny smith apples", + "butter" + ] + }, + { + "id": 10535, + "cuisine": "french", + "ingredients": [ + "butter", + "olive oil", + "boiling onions", + "water", + "crème fraîche", + "yukon gold potatoes", + "fresh parsley" + ] + }, + { + "id": 33762, + "cuisine": "indian", + "ingredients": [ + "chiles", + "cinnamon", + "clove", + "amchur", + "cumin", + "corn", + "cardamom", + "fennel seeds", + "coriander seeds" + ] + }, + { + "id": 44705, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "roma tomatoes", + "salt", + "avocado", + "fresh cilantro", + "whole wheat tortillas", + "pepper", + "jalapeno chilies", + "onions", + "tomatoes", + "kidney beans", + "garlic" + ] + }, + { + "id": 48734, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "shallots", + "water", + "quickcooking grits", + "salt", + "hot pepper sauce", + "vegetable oil", + "corn kernels", + "green onions" + ] + }, + { + "id": 3584, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "rice wine", + "garlic", + "mushrooms", + "ginger", + "gai lan", + "sesame oil", + "corn starch" + ] + }, + { + "id": 7122, + "cuisine": "spanish", + "ingredients": [ + "canola oil", + "coarse sea salt", + "padron peppers", + "extra-virgin olive oil" + ] + }, + { + "id": 48823, + "cuisine": "french", + "ingredients": [ + "sirloin", + "pearl onions", + "salt", + "Burgundy wine", + "fresh chives", + "unsalted butter", + "all-purpose flour", + "sage", + "wide egg noodles", + "bacon", + "white mushrooms", + "pepper", + "beef stock", + "fresh parsley leaves" + ] + }, + { + "id": 41326, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "vinegar", + "pineapple", + "sauce", + "carrots", + "canola oil", + "hot red pepper flakes", + "pepper", + "starch", + "salt", + "beef sirloin", + "onions", + "potato starch", + "black pepper", + "egg whites", + "peas", + "green pepper", + "cucumber", + "sugar", + "water", + "mushrooms", + "rice vinegar", + "scallions", + "cabbage" + ] + }, + { + "id": 49208, + "cuisine": "italian", + "ingredients": [ + "vidalia", + "balsamic vinegar", + "garlic oil", + "zucchini", + "italian seasoning", + "sun-dried tomatoes", + "yellow bell pepper", + "chicken sausage", + "button mushrooms" + ] + }, + { + "id": 38658, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "sweet onion", + "salt", + "tomatoes", + "fresh oregano leaves", + "chees fresh mozzarella", + "fettuccine pasta", + "olive oil", + "cooked shrimp", + "spinach leaves", + "pepper", + "garlic" + ] + }, + { + "id": 3803, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "red pepper", + "garlic", + "water", + "sweet potatoes", + "vegetable broth", + "cumin", + "garbanzo beans", + "diced tomatoes", + "salt", + "spinach", + "quinoa", + "ginger", + "onions" + ] + }, + { + "id": 21836, + "cuisine": "french", + "ingredients": [ + "sour cream", + "heavy cream" + ] + }, + { + "id": 41164, + "cuisine": "british", + "ingredients": [ + "sugar", + "all-purpose flour", + "butter" + ] + }, + { + "id": 31621, + "cuisine": "southern_us", + "ingredients": [ + "hot red pepper flakes", + "smoked ham hocks", + "water", + "collard greens" + ] + }, + { + "id": 13852, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "fresh shiitake mushrooms", + "carrots", + "sesame seeds", + "white rice", + "kosher salt", + "ponzu", + "nori", + "low sodium soy sauce", + "mirin", + "rice vinegar" + ] + }, + { + "id": 5913, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "star anise", + "orange zest", + "chinese rock sugar", + "fresh ginger", + "garlic cloves", + "water", + "scallions", + "chinese rice wine", + "cilantro stems", + "pork butt" + ] + }, + { + "id": 39616, + "cuisine": "french", + "ingredients": [ + "bosc pears", + "cranberries", + "orange juice", + "sugar" + ] + }, + { + "id": 39476, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "large eggs", + "salt", + "ground cloves", + "butter", + "condensed milk", + "ground ginger", + "ground nutmeg", + "whipped cream", + "gingersnap cookies", + "sugar", + "sweet potatoes", + "all-purpose flour" + ] + }, + { + "id": 1345, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "fresh parmesan cheese", + "garlic cloves", + "fresh basil", + "salt", + "ground black pepper", + "plum tomatoes" + ] + }, + { + "id": 3439, + "cuisine": "korean", + "ingredients": [ + "cold water", + "chili pepper flakes", + "fresh ginger", + "garlic", + "green onions", + "chinese cabbage", + "sugar", + "sea salt" + ] + }, + { + "id": 5853, + "cuisine": "french", + "ingredients": [ + "sweet onion", + "bacon", + "flour", + "salt", + "olive oil", + "gruyere cheese", + "pepper", + "ice water", + "cream cheese" + ] + }, + { + "id": 25398, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "milk", + "large garlic cloves", + "salt", + "freshly ground pepper", + "fontina cheese", + "unsalted butter", + "heavy cream", + "grated nutmeg", + "pasta", + "radicchio", + "asiago", + "all-purpose flour", + "boiling water", + "dried porcini mushrooms", + "grated parmesan cheese", + "extra-virgin olive oil", + "chopped fresh sage" + ] + }, + { + "id": 28792, + "cuisine": "thai", + "ingredients": [ + "chili flakes", + "spring onions", + "fresh mint", + "sugar", + "sticky rice", + "fish sauce", + "shallots", + "minced pork", + "lime", + "culantro" + ] + }, + { + "id": 19419, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "apple cider vinegar", + "ketchup", + "granulated garlic", + "dr pepper", + "frozen meatballs" + ] + }, + { + "id": 36178, + "cuisine": "greek", + "ingredients": [ + "red potato", + "extra-virgin olive oil", + "zucchini", + "dried oregano", + "salt and ground black pepper", + "garlic", + "crimini mushrooms" + ] + }, + { + "id": 30268, + "cuisine": "mexican", + "ingredients": [ + "hot sauce", + "chopped cilantro fresh", + "avocado", + "whole wheat pita bread", + "feta cheese crumbles", + "salsa", + "vegetarian refried beans" + ] + }, + { + "id": 6865, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "baking soda", + "graham cracker crumbs", + "vanilla extract", + "semi-sweet chocolate morsels", + "pecans", + "granulated sugar", + "butter", + "all-purpose flour", + "marshmallows", + "crystallized ginger", + "baking powder", + "salt", + "shortening", + "large eggs", + "sea salt", + "sour cream" + ] + }, + { + "id": 26168, + "cuisine": "italian", + "ingredients": [ + "lemon zest", + "flat leaf parsley", + "extra-virgin olive oil", + "sea salt", + "chopped garlic", + "ground black pepper", + "Italian bread" + ] + }, + { + "id": 35952, + "cuisine": "mexican", + "ingredients": [ + "all-purpose flour", + "baking powder", + "shortening", + "hot water", + "salt" + ] + }, + { + "id": 21726, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "salt", + "plum tomatoes", + "pinenuts", + "grated parmesan cheese", + "fresh oregano", + "sugar", + "ground black pepper", + "penne pasta", + "olive oil", + "crushed red pepper", + "garlic cloves" + ] + }, + { + "id": 28554, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "asiago", + "olive oil", + "dry bread crumbs", + "pepper", + "salt", + "grated parmesan cheese", + "dried parsley" + ] + }, + { + "id": 36742, + "cuisine": "spanish", + "ingredients": [ + "pitted kalamata olives", + "olive oil", + "long grain white rice", + "chorizo", + "low salt chicken broth", + "fresh marjoram", + "diced tomatoes", + "water", + "frozen peas" + ] + }, + { + "id": 49593, + "cuisine": "cajun_creole", + "ingredients": [ + "polish sausage", + "red potato", + "deveined shrimp", + "corn", + "crawfish", + "crab boil" + ] + }, + { + "id": 12210, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "fresh basil", + "fresh rosemary", + "fresh oregano", + "fresh thyme" + ] + }, + { + "id": 27924, + "cuisine": "thai", + "ingredients": [ + "slaw", + "peeled fresh ginger", + "garlic chili sauce", + "sliced green onions", + "fish sauce", + "flour tortillas", + "rice vinegar", + "fresh lime juice", + "ground black pepper", + "flank steak", + "carrots", + "sugar", + "cooking spray", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 27314, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "butter", + "sour cream", + "poblano peppers", + "tortilla chips", + "olive oil", + "cheese", + "onions", + "potatoes", + "carrots" + ] + }, + { + "id": 25229, + "cuisine": "thai", + "ingredients": [ + "fresh red chili", + "zucchini", + "salted peanuts", + "scallions", + "minced garlic", + "seasoned rice wine vinegar", + "gingerroot", + "fresh mint", + "sugar", + "lime wedges", + "peanut oil", + "carrots", + "lemongrass", + "cilantro leaves", + "english cucumber", + "large shrimp" + ] + }, + { + "id": 47722, + "cuisine": "japanese", + "ingredients": [ + "sushi grade tuna", + "coconut oil", + "lemon pepper" + ] + }, + { + "id": 41729, + "cuisine": "korean", + "ingredients": [ + "sesame oil", + "kosher salt", + "rice vinegar", + "green onions", + "english cucumber", + "sugar", + "crushed red pepper flakes" + ] + }, + { + "id": 22592, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "hellmann' or best food real mayonnais", + "garlic", + "bread crumb fresh", + "salt", + "pork chops, 1 inch thick" + ] + }, + { + "id": 31357, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "lamb shoulder", + "onions", + "parsnips", + "potatoes", + "carrots", + "water", + "leeks", + "fresh parsley", + "fresh rosemary", + "ground black pepper", + "salt" + ] + }, + { + "id": 14925, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "lettuce leaves", + "rice vinegar", + "sesame seeds", + "sesame oil", + "onions", + "brown sugar", + "sweet potatoes", + "garlic", + "olive oil", + "green onions", + "korean chile paste" + ] + }, + { + "id": 17288, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "oil", + "potatoes", + "cilantro leaves", + "onions", + "garam masala", + "salt", + "wheat flour", + "flour", + "green chilies" + ] + }, + { + "id": 5044, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "cajun seasoning", + "sausages", + "large shrimp", + "tomato paste", + "olive oil", + "garlic", + "celery", + "chicken broth", + "boneless skinless chicken breasts", + "rice", + "onions", + "pepper", + "diced tomatoes", + "flat leaf parsley" + ] + }, + { + "id": 45710, + "cuisine": "cajun_creole", + "ingredients": [ + "hot italian turkey sausage links", + "casings", + "scallions", + "quick cooking brown rice", + "all-purpose flour", + "canola oil", + "chopped tomatoes", + "garlic", + "onions", + "reduced sodium chicken broth", + "cajun seasoning", + "okra" + ] + }, + { + "id": 25299, + "cuisine": "italian", + "ingredients": [ + "milk", + "ground cinnamon", + "ice", + "brewed espresso", + "sweetener" + ] + }, + { + "id": 22602, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "half & half", + "frozen peas", + "chicken broth", + "dried thyme", + "frozen carrots", + "pie crust", + "pepper", + "boneless skinless chicken breasts", + "dried rosemary", + "red potato", + "salted butter", + "all-purpose flour" + ] + }, + { + "id": 39377, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "kosher salt", + "crushed red pepper flakes", + "carrots", + "sausage casings", + "whole peeled tomatoes", + "freshly ground pepper", + "onions", + "fresh oregano leaves", + "grated parmesan cheese", + "garlic cloves", + "rigatoni", + "tomato paste", + "olive oil", + "ground pork", + "flat leaf parsley" + ] + }, + { + "id": 40241, + "cuisine": "italian", + "ingredients": [ + "sea salt", + "red bell pepper", + "black pepper", + "fresh oregano", + "extra-virgin olive oil", + "balsamic vinegar", + "garlic cloves" + ] + }, + { + "id": 41742, + "cuisine": "filipino", + "ingredients": [ + "eggplant", + "salt", + "eggs", + "cooking oil", + "tuna", + "chinese celery", + "garlic", + "onions", + "ground black pepper", + "red bell pepper" + ] + }, + { + "id": 2768, + "cuisine": "french", + "ingredients": [ + "mussels", + "olive oil", + "shallots", + "black olives", + "capers", + "zucchini", + "fine sea salt", + "tomatoes", + "fennel", + "extra-virgin olive oil", + "ground white pepper", + "fresh basil", + "cayenne", + "garlic", + "flat leaf parsley" + ] + }, + { + "id": 32941, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken legs", + "dried thyme", + "large garlic cloves", + "green pepper", + "medium shrimp", + "tomato paste", + "spanish onion", + "vegetable oil", + "cayenne pepper", + "scallions", + "celery ribs", + "chicken wings", + "file powder", + "salt", + "okra", + "chicken stock", + "andouille sausage", + "bay leaves", + "all-purpose flour", + "freshly ground pepper" + ] + }, + { + "id": 318, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "red cabbage", + "ginger", + "red curry paste", + "fresh cilantro", + "rice noodles", + "garlic", + "red bell pepper", + "lime juice", + "mushrooms", + "peeled shrimp", + "carrots", + "coconut oil", + "honey", + "crushed red pepper flakes", + "broccoli", + "coconut milk" + ] + }, + { + "id": 317, + "cuisine": "italian", + "ingredients": [ + "baguette", + "albacore tuna in water", + "part-skim mozzarella cheese", + "fat-free mayonnaise", + "sundried tomato pesto", + "pickled vegetables", + "pitted kalamata olives", + "parmesan cheese" + ] + }, + { + "id": 9007, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "garam masala", + "poppy seeds", + "green cardamom", + "bay leaf", + "curry leaves", + "tumeric", + "bone-in chicken", + "salt", + "oil", + "tomatoes", + "coconut", + "yoghurt", + "cilantro leaves", + "cinnamon sticks", + "clove", + "garlic paste", + "finely chopped onion", + "star anise", + "green chilies", + "shahi jeera" + ] + }, + { + "id": 18153, + "cuisine": "mexican", + "ingredients": [ + "feta cheese", + "avocado", + "purple onion", + "lime zest", + "ground black pepper", + "fresh tomatoes", + "salt" + ] + }, + { + "id": 33434, + "cuisine": "italian", + "ingredients": [ + "baguette", + "olive oil flavored cooking spray", + "garlic cloves" + ] + }, + { + "id": 9996, + "cuisine": "vietnamese", + "ingredients": [ + "baguette", + "cooking spray", + "garlic chili sauce", + "kosher salt", + "pork tenderloin", + "cilantro sprigs", + "fat-free mayonnaise", + "sugar", + "shredded carrots", + "daikon", + "cucumber", + "cider vinegar", + "jalapeno chilies", + "salt", + "sliced green onions" + ] + }, + { + "id": 36718, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "bell pepper", + "medium zucchini", + "eggplant", + "extra-virgin olive oil", + "onions", + "black pepper", + "large garlic cloves", + "flat leaf parsley", + "tomatoes", + "parmigiano reggiano cheese", + "salt", + "fresh basil leaves" + ] + }, + { + "id": 25814, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "chopped bell pepper", + "yellow bell pepper", + "tilapia", + "hearts of palm", + "ground black pepper", + "yellow onion", + "coconut milk", + "tomato paste", + "coconut", + "green onions", + "fatfree lowsodium chicken broth", + "chopped cilantro", + "fish sauce", + "fresh ginger", + "garlic", + "lemon juice" + ] + }, + { + "id": 10617, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "quinoa", + "garlic", + "hot water", + "sweet onion", + "roma tomatoes", + "okra", + "seasoning salt", + "vegan butter", + "vegetable seasoning", + "fresh corn", + "ground black pepper", + "cayenne pepper", + "red bell pepper" + ] + }, + { + "id": 44320, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "salt", + "chili powder", + "pepper", + "chopped pecans", + "orange juice concentrate", + "butter" + ] + }, + { + "id": 4792, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "anise", + "grated lemon peel", + "water", + "vanilla extract", + "sweetened condensed milk", + "whole milk", + "cinnamon sticks" + ] + }, + { + "id": 22523, + "cuisine": "filipino", + "ingredients": [ + "skinless salmon fillets", + "salt", + "curry powder", + "thai chile", + "coconut milk", + "pepper", + "ginger", + "oil", + "roma tomatoes", + "garlic", + "onions" + ] + }, + { + "id": 39154, + "cuisine": "russian", + "ingredients": [ + "soft goat's cheese", + "coriander seeds", + "large eggs", + "butter", + "cayenne pepper", + "fresh cilantro", + "ground black pepper", + "havarti cheese", + "all purpose unbleached flour", + "hot water", + "sugar", + "feta cheese", + "green onions", + "large garlic cloves", + "ramps", + "pure olive oil", + "active dry yeast", + "lemon zest", + "coarse salt", + "salt", + "fresh mint" + ] + }, + { + "id": 1596, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "dry white wine", + "all-purpose flour", + "cooked shrimp", + "grated parmesan cheese", + "butter", + "crabmeat", + "roasted red peppers", + "shallots", + "cayenne pepper", + "large egg whites", + "whole milk", + "salt", + "tarragon" + ] + }, + { + "id": 15579, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "tilapia fillets", + "ranch dressing", + "cayenne pepper", + "rotel tomatoes", + "black pepper", + "organic chicken", + "butter", + "rice", + "black beans", + "garlic powder", + "yellow onion", + "sour cream", + "chicken stock", + "olive oil", + "chili powder", + "sweet corn", + "cumin" + ] + }, + { + "id": 40248, + "cuisine": "moroccan", + "ingredients": [ + "cayenne", + "cinnamon sticks", + "coriander seeds", + "cumin seed", + "olive oil", + "paprika", + "chopped garlic", + "lamb rib chops", + "whole cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 6234, + "cuisine": "southern_us", + "ingredients": [ + "sweet potatoes", + "orange juice", + "firmly packed brown sugar", + "butter", + "bourbon whiskey", + "pumpkin pie spice", + "mini marshmallows", + "salt" + ] + }, + { + "id": 31699, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "bacon", + "farfalline", + "large eggs", + "parmigiano reggiano cheese", + "frozen peas" + ] + }, + { + "id": 32755, + "cuisine": "japanese", + "ingredients": [ + "sake", + "green onions", + "medium-grain rice", + "bottled clam juice", + "sea bass fillets", + "chopped cilantro fresh", + "soy sauce", + "sesame oil", + "garlic cloves", + "sesame seeds", + "ginger" + ] + }, + { + "id": 4116, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "grated parmesan cheese", + "mozzarella cheese", + "firm tofu", + "pasta sauce", + "ricotta cheese", + "lasagna noodles" + ] + }, + { + "id": 28800, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "all-purpose flour", + "brown sugar", + "sweet potatoes", + "chopped pecans", + "ground cinnamon", + "cooking spray", + "margarine", + "large egg whites", + "vanilla extract", + "nonfat evaporated milk" + ] + }, + { + "id": 40524, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "bread flour", + "milk", + "sugar", + "plain flour", + "honey" + ] + }, + { + "id": 12678, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "large garlic cloves", + "parsley leaves", + "gemelli", + "mozzarella cheese", + "extra-virgin olive oil", + "rocket leaves", + "red wine vinegar", + "fresh basil leaves" + ] + }, + { + "id": 40911, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "sea salt", + "ground black pepper", + "chopped fresh sage", + "minced garlic", + "boneless pork loin", + "kosher salt", + "extra-virgin olive oil" + ] + }, + { + "id": 18915, + "cuisine": "french", + "ingredients": [ + "plain yogurt", + "green onions", + "finely chopped fresh parsley", + "mayonaise", + "garlic cloves" + ] + }, + { + "id": 31580, + "cuisine": "filipino", + "ingredients": [ + "water", + "garlic", + "whole peppercorn", + "cooking oil", + "white sugar", + "vinegar", + "salt", + "soy sauce", + "bay leaves", + "chicken" + ] + }, + { + "id": 40059, + "cuisine": "italian", + "ingredients": [ + "pasta", + "olive oil", + "chili pepper", + "garlic cloves", + "sugar pea", + "prawns", + "cherry tomatoes", + "fresh basil leaves" + ] + }, + { + "id": 46970, + "cuisine": "french", + "ingredients": [ + "eggs", + "vanilla extract", + "white sugar", + "baking powder", + "all-purpose flour", + "egg yolks", + "salt", + "unsweetened cocoa powder", + "butter", + "confectioners sugar" + ] + }, + { + "id": 33303, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "refried beans", + "salsa", + "iceberg lettuce", + "fresh cilantro", + "guacamole", + "whole chicken", + "lime", + "green onions", + "sour cream", + "cotija", + "flour tortillas", + "cooked meat" + ] + }, + { + "id": 36419, + "cuisine": "korean", + "ingredients": [ + "seasoning", + "shiitake", + "scallions", + "silken tofu", + "udon", + "toasted sesame oil", + "spinach", + "miso paste", + "nori sheets", + "dressing", + "water", + "spices" + ] + }, + { + "id": 44957, + "cuisine": "thai", + "ingredients": [ + "white vinegar", + "salt", + "chili", + "pectin", + "garlic cloves", + "granulated sugar" + ] + }, + { + "id": 40410, + "cuisine": "spanish", + "ingredients": [ + "all-purpose flour", + "ground cinnamon", + "anise extract", + "blanched almonds", + "shortening", + "white sugar" + ] + }, + { + "id": 35163, + "cuisine": "korean", + "ingredients": [ + "cold water", + "all-purpose flour", + "sweet potatoes", + "salt", + "olive oil" + ] + }, + { + "id": 36284, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "cracked black pepper", + "chopped fresh mint", + "green onions", + "rice vinegar", + "fresh ginger", + "salt", + "chopped cilantro fresh", + "flank steak", + "ground coriander" + ] + }, + { + "id": 48024, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil cooking spray", + "parmesan cheese", + "chile pepper", + "ground white pepper", + "dried oregano", + "olive oil", + "chicken breast halves", + "salt", + "chopped cilantro fresh", + "ground cumin", + "pizza crust", + "jalapeno chilies", + "garlic", + "fresh basil leaves", + "sliced green onions", + "reduced fat monterey jack cheese", + "part-skim mozzarella cheese", + "chili powder", + "chopped onion", + "plum tomatoes" + ] + }, + { + "id": 38522, + "cuisine": "spanish", + "ingredients": [ + "sherry vinegar", + "red bell pepper", + "tomatoes", + "purple onion", + "seedless cucumber", + "salt", + "extra-virgin olive oil" + ] + }, + { + "id": 29814, + "cuisine": "mexican", + "ingredients": [ + "baking soda", + "cinnamon", + "cream of tartar", + "large eggs", + "unsweetened cocoa powder", + "chile powder", + "unsalted butter", + "all-purpose flour", + "sugar", + "coarse salt" + ] + }, + { + "id": 46559, + "cuisine": "southern_us", + "ingredients": [ + "cream of tartar", + "graham cracker crumbs", + "granulated sugar", + "sweetened condensed milk", + "firmly packed light brown sugar", + "butter", + "egg whites", + "key lime juice" + ] + }, + { + "id": 23477, + "cuisine": "southern_us", + "ingredients": [ + "tomato paste", + "black pepper", + "cayenne", + "spanish paprika", + "oregano", + "collard greens", + "dried thyme", + "salt", + "chipotle peppers", + "tomatoes", + "water", + "garlic", + "celery", + "green bell pepper", + "black-eyed peas", + "hot sauce", + "onions" + ] + }, + { + "id": 30972, + "cuisine": "british", + "ingredients": [ + "rump roast", + "potatoes", + "all-purpose flour", + "water", + "butter", + "onions", + "pepper", + "baking powder", + "carrots", + "milk", + "salt" + ] + }, + { + "id": 24799, + "cuisine": "irish", + "ingredients": [ + "black pepper", + "double cream", + "Irish whiskey", + "fresh lemon juice", + "lobster", + "salt", + "mustard", + "butter" + ] + }, + { + "id": 38121, + "cuisine": "thai", + "ingredients": [ + "steamed rice", + "yellow onion", + "asian fish sauce", + "fresh basil", + "corn oil", + "red bell pepper", + "light brown sugar", + "peanuts", + "beef sirloin", + "lime", + "Thai red curry paste", + "coconut milk" + ] + }, + { + "id": 17790, + "cuisine": "southern_us", + "ingredients": [ + "stone-ground cornmeal", + "large eggs", + "baking powder", + "extra-virgin olive oil", + "red bell pepper", + "grated orange", + "shucked oysters", + "unsalted butter", + "whole milk", + "vegetable oil", + "all-purpose flour", + "chopped cilantro", + "mint", + "large egg yolks", + "jalapeno chilies", + "shallots", + "salt", + "fresh lime juice", + "pepper", + "radishes", + "chives", + "yellow bell pepper", + "garlic cloves", + "asian fish sauce" + ] + }, + { + "id": 6146, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic", + "white onion", + "jalapeno chilies", + "green chilies", + "sugar", + "whole peeled tomatoes", + "salt", + "fresh cilantro", + "diced tomatoes", + "ground cumin" + ] + }, + { + "id": 23850, + "cuisine": "mexican", + "ingredients": [ + "bell pepper", + "diced tomatoes", + "ground beef", + "water", + "green onions", + "cayenne pepper", + "long grain white rice", + "shredded cheddar cheese", + "beef stock", + "salsa", + "onions", + "garlic powder", + "chili powder", + "smoked paprika", + "cumin" + ] + }, + { + "id": 44121, + "cuisine": "mexican", + "ingredients": [ + "roasted red peppers", + "garlic cloves", + "ground cumin", + "low-fat sour cream", + "cooking spray", + "fresh lime juice", + "flour tortillas", + "asparagus spears", + "chipotle chile", + "purple onion", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 21323, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "bell pepper", + "vegetable stock", + "shrimp", + "pepper", + "flour", + "diced tomatoes", + "onions", + "crushed tomatoes", + "bay leaves", + "salt", + "celery ribs", + "olive oil", + "salt free seasoning", + "garlic cloves" + ] + }, + { + "id": 244, + "cuisine": "japanese", + "ingredients": [ + "mushrooms", + "water", + "vegetable oil", + "soy sauce", + "rice wine", + "black bass", + "scallions" + ] + }, + { + "id": 30115, + "cuisine": "greek", + "ingredients": [ + "plain low-fat yogurt", + "olive oil", + "whole wheat tortillas", + "english cucumber", + "italian seasoning", + "water", + "baby spinach", + "salt", + "lemon juice", + "cherry tomatoes", + "tempeh", + "grated lemon zest", + "feta cheese crumbles", + "romaine lettuce", + "ground black pepper", + "paprika", + "garlic cloves" + ] + }, + { + "id": 36549, + "cuisine": "indian", + "ingredients": [ + "eggs", + "rice", + "frozen peas", + "mango chutney", + "curry paste", + "sunflower oil", + "onions", + "chopped tomatoes", + "greek yogurt" + ] + }, + { + "id": 36294, + "cuisine": "greek", + "ingredients": [ + "fresh basil", + "artichok heart marin", + "penne pasta", + "greek seasoning", + "olive oil", + "black olives", + "fresh parsley", + "sugar", + "red wine vinegar", + "freshly ground pepper", + "tomatoes", + "feta cheese", + "salt", + "sliced green onions" + ] + }, + { + "id": 46170, + "cuisine": "southern_us", + "ingredients": [ + "pork", + "bbq sauce", + "jack daniels", + "boston butt", + "honey whiskey", + "brown sugar", + "apple juice" + ] + }, + { + "id": 34774, + "cuisine": "southern_us", + "ingredients": [ + "large egg whites", + "cooking spray", + "salt", + "shiitake mushroom caps", + "ground black pepper", + "butter", + "provolone cheese", + "fresh parsley", + "water", + "large eggs", + "portabello mushroom", + "garlic cloves", + "grits", + "prosciutto", + "dry white wine", + "chopped onion", + "herbes de provence" + ] + }, + { + "id": 32667, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "pepper", + "garlic", + "calamansi", + "broth", + "glutinous rice", + "green onions", + "oil", + "onions", + "beef bones", + "water", + "salt", + "tripe", + "fried garlic", + "ginger", + "rock salt", + "peppercorns" + ] + }, + { + "id": 1660, + "cuisine": "vietnamese", + "ingredients": [ + "fresh cilantro", + "jalapeno chilies", + "rice noodles", + "garlic chili sauce", + "shiitake", + "sesame oil", + "basil", + "fresh ginger", + "green onions", + "butter", + "beansprouts", + "low sodium vegetable broth", + "hoisin sauce", + "lime wedges", + "salt" + ] + }, + { + "id": 31325, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "pepper", + "salt", + "vegetable oil", + "water", + "bone-in pork chops" + ] + }, + { + "id": 30815, + "cuisine": "korean", + "ingredients": [ + "warm water", + "all-purpose flour", + "vegetable oil", + "nuts", + "granulated sugar", + "yeast", + "brown sugar", + "salt" + ] + }, + { + "id": 43479, + "cuisine": "chinese", + "ingredients": [ + "water", + "dried shiitake mushrooms", + "beans", + "chicken stock cubes", + "onions", + "fresh ginger", + "scallions", + "black pepper", + "salt", + "chicken thighs" + ] + }, + { + "id": 46517, + "cuisine": "french", + "ingredients": [ + "eggs", + "egg yolks", + "white sugar", + "water", + "salt", + "shortening", + "vanilla extract", + "milk", + "all-purpose flour" + ] + }, + { + "id": 6971, + "cuisine": "french", + "ingredients": [ + "fat free less sodium chicken broth", + "dry white wine", + "yellow onion", + "shiitake mushroom caps", + "olive oil", + "fat free less sodium beef broth", + "garlic cloves", + "ground black pepper", + "salt", + "crumbled gorgonzola", + "baguette", + "chopped fresh thyme", + "grated Gruyère cheese", + "thyme sprigs" + ] + }, + { + "id": 13617, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "shredded cheddar cheese", + "green enchilada sauce", + "green chile", + "cooked chicken", + "tortillas", + "chicken" + ] + }, + { + "id": 34620, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "soda bread", + "salt" + ] + }, + { + "id": 45182, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "shallots", + "bocconcini", + "brine-cured olives", + "dijon mustard", + "extra-virgin olive oil", + "Italian bread", + "sugar", + "cooked chicken", + "salt", + "roasted red peppers", + "red wine vinegar", + "hearts of romaine" + ] + }, + { + "id": 47341, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "salt", + "mustard seeds", + "asafoetida", + "curds", + "split black lentils", + "oil", + "cooked rice", + "green chilies", + "coriander" + ] + }, + { + "id": 4186, + "cuisine": "mexican", + "ingredients": [ + "fresh oregano leaves", + "hot sauce", + "avocado", + "lime juice", + "garlic cloves", + "white onion", + "english cucumber", + "chicken broth", + "tomatillos", + "chopped cilantro" + ] + }, + { + "id": 43870, + "cuisine": "mexican", + "ingredients": [ + "egg whites", + "Old El Paso™ Thick 'n Chunky salsa", + "red bell pepper", + "chili powder", + "salt", + "monterey jack", + "boneless skinless chicken breasts", + "garlic", + "onions", + "vegetable oil", + "Pillsbury™ Crescent Recipe Creations® refrigerated seamless dough sheet" + ] + }, + { + "id": 12937, + "cuisine": "mexican", + "ingredients": [ + "american cheese slices", + "whipping cream", + "hot sauce", + "pico de gallo" + ] + }, + { + "id": 21521, + "cuisine": "italian", + "ingredients": [ + "bread", + "basil leaves", + "salt", + "ground black pepper", + "chees fresh mozzarella", + "tomatoes", + "balsamic vinegar", + "cooking spray", + "extra-virgin olive oil" + ] + }, + { + "id": 39203, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "fresh parsley", + "pepper", + "salt", + "olive oil", + "fresh oregano", + "red potato", + "crushed red pepper", + "onions" + ] + }, + { + "id": 22082, + "cuisine": "mexican", + "ingredients": [ + "Tabasco Pepper Sauce", + "fresh coriander", + "scallions", + "finely chopped onion", + "fresh lemon juice", + "vine ripened tomatoes" + ] + }, + { + "id": 6384, + "cuisine": "southern_us", + "ingredients": [ + "granny smith apples", + "apple cider", + "firmly packed brown sugar", + "large eggs", + "Italian bread", + "vegetable oil cooking spray", + "reduced fat milk", + "ground cinnamon", + "ground nutmeg", + "vanilla extract" + ] + }, + { + "id": 11090, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "mayonaise", + "ahi tuna steaks", + "salt", + "fresh parsley", + "piloncillo", + "water", + "apple cider vinegar", + "fresh lime juice", + "avocado", + "white onion", + "baby greens", + "ancho chile pepper", + "chopped cilantro fresh", + "red potato", + "olive oil", + "whipping cream", + "canela" + ] + }, + { + "id": 25426, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "sugar", + "buttermilk", + "caraway seeds", + "baking powder", + "dried currants", + "salt" + ] + }, + { + "id": 45548, + "cuisine": "chinese", + "ingredients": [ + "seasoning", + "meat marinade", + "pork tenderloin", + "sesame oil", + "peanut oil", + "carrots", + "bamboo shoots", + "sugar", + "vegetables", + "green onions", + "rice vinegar", + "oyster sauce", + "red bell pepper", + "chicken broth", + "fresh ginger", + "mixed mushrooms", + "ginger", + "garlic cloves", + "corn starch", + "soy sauce", + "zucchini", + "rice wine", + "sauce", + "Chinese egg noodles", + "onions" + ] + }, + { + "id": 44931, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "vegetable oil", + "lamb", + "preserved lemon", + "olive oil", + "garlic", + "onions", + "fresh cilantro", + "ginger", + "fresh parsley", + "fava beans", + "artichoke bottoms", + "salt", + "olives" + ] + }, + { + "id": 4761, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "stewing beef", + "red wine", + "all-purpose flour", + "bay leaf", + "olive oil", + "butter", + "salt", + "thyme", + "pearl onions", + "mushrooms", + "garlic", + "carrots", + "pepper", + "beef stock", + "bacon", + "yellow onion" + ] + }, + { + "id": 7369, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "shallots", + "salt", + "water", + "ground red pepper", + "white wine vinegar", + "green onions", + "butter", + "black peppercorns", + "dry white wine", + "fresh tarragon" + ] + }, + { + "id": 42959, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "crushed red pepper", + "garlic cloves", + "fresh spinach", + "cannellini beans", + "yellow onion", + "fresh rosemary", + "fresh thyme", + "dried shiitake mushrooms", + "boiling water", + "olive oil", + "chopped fresh thyme", + "organic vegetable broth" + ] + }, + { + "id": 33227, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "corn starch", + "large eggs", + "cream style corn", + "chicken broth", + "salt" + ] + }, + { + "id": 34446, + "cuisine": "greek", + "ingredients": [ + "strong white bread flour", + "yeast", + "olive oil", + "warm water", + "salt" + ] + }, + { + "id": 27499, + "cuisine": "italian", + "ingredients": [ + "shredded cheddar cheese", + "pitted olives", + "Wish-Bone Italian Dressing", + "red potato", + "rotel pasta, cook and drain" + ] + }, + { + "id": 22921, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "fresh lemon juice", + "olive oil", + "arugula", + "avocado", + "garlic", + "pasta", + "salt" + ] + }, + { + "id": 40808, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "chili powder", + "diced celery", + "chicken stock", + "sweet onion", + "tap water", + "smoked paprika", + "andouille sausage", + "vegetable oil", + "shrimp", + "diced bell pepper", + "brown rice", + "dark beer", + "chicken thighs" + ] + }, + { + "id": 27847, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "fresh mozzarella", + "firm tofu", + "rigatoni", + "large eggs", + "salt", + "onions", + "ground black pepper", + "extra-virgin olive oil", + "garlic cloves", + "frozen spinach", + "grated parmesan cheese", + "grated nutmeg", + "dried oregano" + ] + }, + { + "id": 1689, + "cuisine": "greek", + "ingredients": [ + "parmesan cheese", + "grill seasoning", + "nonfat plain greek yogurt", + "lemon zest", + "garlic cloves", + "boneless skinless chicken breasts" + ] + }, + { + "id": 40342, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "salsa", + "guacamole", + "chopped cilantro", + "hot dogs", + "tortilla chips", + "crema mexicana", + "hot dog bun" + ] + }, + { + "id": 41407, + "cuisine": "jamaican", + "ingredients": [ + "pork tenderloin", + "fresh orange juice", + "edible flowers", + "dark rum", + "jerk seasoning", + "cooking spray", + "grained", + "dijon mustard", + "red currant jelly" + ] + }, + { + "id": 7313, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cream cheese, soften", + "mint sprigs", + "preserv raspberri seedless", + "ladyfingers", + "fresh raspberries", + "heavy cream", + "orange liqueur" + ] + }, + { + "id": 40726, + "cuisine": "southern_us", + "ingredients": [ + "water", + "onions", + "scallions", + "unsalted butter", + "large shrimp", + "kosher salt", + "garlic cloves" + ] + }, + { + "id": 44670, + "cuisine": "spanish", + "ingredients": [ + "milk", + "oil", + "cod", + "flour", + "bread crumbs", + "butter", + "olive oil" + ] + }, + { + "id": 16234, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "vanilla", + "sugar", + "whole milk", + "corn starch", + "water", + "raisins", + "hot water", + "dough", + "unsalted butter", + "apricot preserves" + ] + }, + { + "id": 25304, + "cuisine": "mexican", + "ingredients": [ + "large garlic cloves", + "corn tortillas", + "pork shoulder", + "hominy", + "salt", + "hass avocado", + "dried oregano", + "lime", + "cilantro", + "bay leaf", + "onions", + "radishes", + "freshly ground pepper", + "chipotles in adobo", + "ground cumin" + ] + }, + { + "id": 5251, + "cuisine": "italian", + "ingredients": [ + "water", + "extra-virgin olive oil", + "dry yeast", + "milk", + "all-purpose flour", + "sugar", + "coarse salt" + ] + }, + { + "id": 25922, + "cuisine": "japanese", + "ingredients": [ + "frozen edamame beans", + "toasted sesame oil", + "tamari soy sauce", + "white onion", + "frozen peas", + "carrots" + ] + }, + { + "id": 27579, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "lemon zest", + "anchovy fillets", + "carrots", + "capers", + "cayenne", + "salt", + "fresh lemon juice", + "green olives", + "olive oil", + "cinnamon", + "sweet paprika", + "ground cumin", + "black pepper", + "sandwich bread", + "goat cheese", + "flat leaf parsley" + ] + }, + { + "id": 25952, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "apple cider vinegar", + "coleslaw", + "pepper", + "salt", + "boneless pork shoulder roast", + "vegetable oil", + "hamburger buns", + "hot pepper sauce", + "sweet paprika" + ] + }, + { + "id": 40434, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "large garlic cloves", + "spaghetti", + "zucchini", + "crushed red pepper", + "olive oil", + "fresh tarragon", + "mushrooms", + "fresh parsley" + ] + }, + { + "id": 24537, + "cuisine": "greek", + "ingredients": [ + "greek style plain yogurt", + "powdered sugar", + "pomegranate seeds" + ] + }, + { + "id": 22225, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "butter", + "orange juice", + "baking powder", + "all-purpose flour", + "light brown sugar", + "vegetable oil", + "ground allspice", + "whole milk", + "salt", + "grated orange" + ] + }, + { + "id": 26276, + "cuisine": "italian", + "ingredients": [ + "eggs", + "milk", + "ground veal", + "ground beef", + "leaf parsley", + "ground pepper", + "garlic", + "kosher salt", + "grapeseed oil", + "all-purpose flour", + "pecorino cheese", + "parmesan cheese", + "ground pork", + "white sandwich bread" + ] + }, + { + "id": 23611, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cheese", + "chipotles in adobo", + "vidalia onion", + "large eggs", + "garlic cloves", + "unsalted butter", + "scallions", + "grits", + "kosher salt", + "heavy cream", + "shrimp" + ] + }, + { + "id": 4622, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "Shaoxing wine", + "oil", + "dumpling wrappers", + "ground pork", + "water", + "sesame oil", + "soy sauce", + "vegetables", + "salt" + ] + }, + { + "id": 7692, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "large egg whites", + "parmigiano-reggiano cheese", + "chopped fresh thyme", + "large eggs" + ] + }, + { + "id": 45363, + "cuisine": "british", + "ingredients": [ + "tomato paste", + "butter", + "beef broth", + "egg whites", + "salt", + "fillets", + "pepper", + "dry sherry", + "fresh mushrooms", + "frozen pastry puff sheets", + "all-purpose flour", + "bay leaf" + ] + }, + { + "id": 2216, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "tomatoes", + "garlic", + "cilantro", + "monterey jack", + "chorizo", + "tequila" + ] + }, + { + "id": 13919, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "garlic cloves", + "dried basil", + "salt", + "green beans", + "arborio rice", + "dry white wine", + "feta cheese crumbles", + "olive oil", + "chopped onion", + "low salt chicken broth" + ] + }, + { + "id": 23366, + "cuisine": "russian", + "ingredients": [ + "chopped walnuts", + "light mayonnaise", + "carrots", + "garlic" + ] + }, + { + "id": 37000, + "cuisine": "italian", + "ingredients": [ + "white wine", + "grated parmesan cheese", + "salt", + "arborio rice", + "olive oil", + "baby spinach", + "pepper", + "shallots", + "chopped parsley", + "chicken stock", + "sea scallops", + "butter" + ] + }, + { + "id": 5615, + "cuisine": "cajun_creole", + "ingredients": [ + "dijon mustard", + "salt", + "black pepper", + "yolk", + "field lettuce", + "olive oil", + "white wine vinegar" + ] + }, + { + "id": 47571, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "curry powder", + "palm sugar", + "bawang goreng", + "yellow curry paste", + "mung bean sprouts", + "boneless chicken thighs", + "rice sticks", + "extra firm tofu", + "cilantro leaves", + "roasted peanuts", + "sodium free chicken stock", + "lime", + "granulated sugar", + "vegetable oil", + "coconut cream", + "boiled eggs", + "red chile powder", + "pickled radish", + "red curry paste", + "coconut milk" + ] + }, + { + "id": 25514, + "cuisine": "thai", + "ingredients": [ + "sesame seeds", + "rice vinegar", + "spaghetti", + "soy sauce", + "ginger", + "hot water", + "mayonaise", + "shredded carrots", + "peanut butter", + "canola oil", + "honey", + "garlic", + "toasted sesame oil" + ] + }, + { + "id": 13039, + "cuisine": "vietnamese", + "ingredients": [ + "ground chuck", + "chopped garlic", + "fish sauce", + "baking powder", + "ground pepper", + "sugar", + "ginger" + ] + }, + { + "id": 18859, + "cuisine": "moroccan", + "ingredients": [ + "fresh cilantro", + "lemon", + "garlic cloves", + "grated lemon peel", + "olive oil", + "paprika", + "fresh lemon juice", + "chicken", + "saffron threads", + "ground black pepper", + "salt", + "flat leaf parsley", + "ground cumin", + "water", + "oil-cured black olives", + "cayenne pepper", + "onions" + ] + }, + { + "id": 30603, + "cuisine": "spanish", + "ingredients": [ + "sherry vinegar", + "chopped onion", + "chopped fresh mint", + "pepper", + "raisins", + "fresh lemon juice", + "pinenuts", + "sliced carrots", + "garlic cloves", + "olive oil", + "salt", + "fresh parsley" + ] + }, + { + "id": 40643, + "cuisine": "moroccan", + "ingredients": [ + "pinenuts", + "sweet potatoes", + "yellow onion", + "couscous", + "ground cinnamon", + "honey", + "extra-virgin olive oil", + "organic vegetable broth", + "parsnips", + "olive oil", + "ras el hanout", + "carrots", + "kosher salt", + "raisins", + "chickpeas" + ] + }, + { + "id": 28206, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "red chili peppers", + "ginger", + "onions", + "ground cumin", + "crusty bread", + "lemon", + "flat leaf parsley", + "saffron", + "tomato purée", + "olive oil", + "cayenne pepper", + "coriander", + "lamb stock", + "kalamata", + "couscous", + "ground lamb" + ] + }, + { + "id": 38452, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "water", + "simple syrup", + "granulated sugar", + "fresh mint", + "powdered sugar", + "mint sprigs" + ] + }, + { + "id": 8021, + "cuisine": "thai", + "ingredients": [ + "lean ground beef", + "red bell pepper", + "jasmine rice", + "crushed red pepper", + "onions", + "soy sauce", + "garlic", + "chopped cilantro", + "green onions", + "carrots", + "asian fish sauce" + ] + }, + { + "id": 22194, + "cuisine": "chinese", + "ingredients": [ + "garlic powder", + "ground pork", + "water", + "shredded carrots", + "peanut oil", + "ground ginger", + "egg roll wrappers", + "all-purpose flour", + "sesame seeds", + "shredded cabbage" + ] + }, + { + "id": 35835, + "cuisine": "japanese", + "ingredients": [ + "water", + "chicken breasts", + "chicken stock", + "fresh ginger", + "yellow miso", + "soba noodles", + "baby spinach leaves", + "green onions" + ] + }, + { + "id": 47620, + "cuisine": "mexican", + "ingredients": [ + "garlic salt", + "sour cream", + "monterey jack", + "enchilada sauce", + "cooked chicken breasts", + "corn tortillas" + ] + }, + { + "id": 26159, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "cooking spray", + "black pepper", + "parmesan cheese", + "polenta", + "pancetta", + "dried thyme", + "sea salt", + "fat free less sodium chicken broth", + "swiss chard" + ] + }, + { + "id": 27994, + "cuisine": "southern_us", + "ingredients": [ + "refrigerated crescent rolls", + "ground cinnamon", + "butter", + "soda", + "granny smith apples", + "white sugar" + ] + }, + { + "id": 13591, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "chili", + "salt", + "onions", + "minced garlic", + "paprika", + "ground coriander", + "tumeric", + "garam masala", + "chickpeas", + "canola oil", + "tomatoes", + "minced ginger", + "cilantro", + "lemon juice" + ] + }, + { + "id": 43435, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "rice vinegar", + "stir fry vegetable blend", + "fresh ginger", + "garlic cloves", + "sweet chili sauce", + "oil", + "red chili peppers", + "salted butter", + "phyllo pastry" + ] + }, + { + "id": 16315, + "cuisine": "southern_us", + "ingredients": [ + "2% reduced-fat milk", + "water", + "grits", + "black pepper", + "salt", + "butter" + ] + }, + { + "id": 48645, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "roma tomatoes", + "lime juice", + "cilantro leaves", + "jalapeno chilies" + ] + }, + { + "id": 35407, + "cuisine": "italian", + "ingredients": [ + "powdered vanilla pudding mix", + "heavy cream", + "confectioners sugar", + "instant coffee", + "cream cheese", + "coffee liqueur", + "vanilla extract", + "water", + "butter", + "angel food cake mix" + ] + }, + { + "id": 34528, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "dried basil", + "large eggs", + "freshly ground pepper", + "dried pasta", + "parsley leaves", + "casings", + "dried oregano", + "kosher salt", + "panko", + "whole milk", + "ground turkey", + "minced garlic", + "parmigiano reggiano cheese", + "crushed red pepper" + ] + }, + { + "id": 12175, + "cuisine": "italian", + "ingredients": [ + "romaine lettuce", + "worcestershire sauce", + "caesar salad dressing", + "garlic powder", + "shredded parmesan cheese", + "black pepper", + "salt", + "lemon juice", + "grape tomatoes", + "grilled chicken", + "penne pasta" + ] + }, + { + "id": 17373, + "cuisine": "russian", + "ingredients": [ + "water", + "baking powder", + "sweetened condensed milk", + "sugar", + "white chocolate chips", + "vanilla", + "eggs", + "cool whip", + "poppy seeds", + "chocolate truffle", + "flour", + "chopped walnuts" + ] + }, + { + "id": 40664, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "milk", + "all-purpose flour", + "minced garlic", + "butter", + "boneless skinless chicken breast halves", + "black pepper", + "barbecue sauce", + "oil", + "water", + "salt", + "mesquite flavored seasoning mix" + ] + }, + { + "id": 38567, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "chili powder", + "arrowroot flour", + "curry powder", + "garlic", + "organic coconut oil", + "black pepper", + "sea salt", + "coconut milk", + "ground ginger", + "garam masala", + "skinless chicken breasts", + "onions" + ] + }, + { + "id": 3698, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "garlic cloves", + "freshly grated parmesan", + "tagliatelle", + "olive oil", + "low-fat crème fraîche", + "zucchini" + ] + }, + { + "id": 43832, + "cuisine": "italian", + "ingredients": [ + "fresh leav spinach", + "part-skim ricotta cheese", + "ground black pepper", + "oil", + "Italian cheese", + "goat cheese", + "fennel seeds", + "grated parmesan cheese" + ] + }, + { + "id": 18773, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "green onions", + "corn starch", + "boneless chicken thighs", + "vegetable oil", + "soy sauce", + "sesame oil", + "arugula", + "sake", + "fresh ginger", + "rice vinegar" + ] + }, + { + "id": 6712, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "jalapeno chilies", + "cilantro", + "chopped cilantro", + "green cabbage", + "pepper", + "lean ground beef", + "scallions", + "avocado", + "romaine lettuce", + "chili powder", + "tortilla chips", + "cumin", + "low-fat sour cream", + "brown rice", + "salt", + "cooked white rice" + ] + }, + { + "id": 16535, + "cuisine": "french", + "ingredients": [ + "pasta", + "water", + "stellette", + "crushed garlic", + "salt", + "tomatoes", + "bouillon cube", + "leeks", + "gruyere cheese", + "onions", + "chard", + "olive oil", + "zucchini", + "extra-virgin olive oil", + "celery", + "flageolet", + "gold potatoes", + "basil leaves", + "fine sea salt" + ] + }, + { + "id": 26199, + "cuisine": "italian", + "ingredients": [ + "pecorino romano cheese", + "white wine", + "rigatoni", + "guanciale", + "onions", + "ground black pepper" + ] + }, + { + "id": 36874, + "cuisine": "indian", + "ingredients": [ + "cumin seed" + ] + }, + { + "id": 3307, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "ground coriander", + "ground turmeric", + "ground nutmeg", + "vegetable oil", + "onions", + "garlic paste", + "chile pepper", + "chopped cilantro", + "garam masala", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 25216, + "cuisine": "italian", + "ingredients": [ + "fresh cilantro", + "tomatoes", + "filling", + "mascarpone", + "baguette", + "cilantro" + ] + }, + { + "id": 48631, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "chili powder", + "flour tortillas", + "enchilada sauce", + "garlic powder", + "lean ground beef", + "colby jack cheese" + ] + }, + { + "id": 11908, + "cuisine": "moroccan", + "ingredients": [ + "water", + "dried apricot", + "cinnamon sticks", + "slivered almonds", + "fresh ginger", + "lemon", + "onions", + "olive oil", + "chicken breasts", + "chopped cilantro", + "white wine", + "ground pepper", + "sea salt" + ] + }, + { + "id": 49663, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "fresh ginger root", + "red bell pepper", + "boneless chop pork", + "garlic", + "soy sauce", + "crushed red pepper flakes", + "honey", + "creamy peanut butter" + ] + }, + { + "id": 23815, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "cayenne pepper", + "onions", + "tomato paste", + "chili powder", + "taco seasoning", + "water", + "salsa", + "ground beef", + "fat-free refried beans", + "pizza doughs" + ] + }, + { + "id": 20121, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "water", + "ripe olives", + "part-skim mozzarella cheese", + "pasta sauce", + "cheese ravioli" + ] + }, + { + "id": 25784, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "cumin seed", + "ghee", + "red chili peppers", + "salt", + "mustard seeds", + "black peppercorns", + "urad dal", + "oil", + "tamarind extract", + "fenugreek seeds", + "dal" + ] + }, + { + "id": 5719, + "cuisine": "southern_us", + "ingredients": [ + "bell pepper", + "smoked turkey sausage", + "water", + "old bay seasoning", + "cooking spray", + "medium shrimp", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 4564, + "cuisine": "italian", + "ingredients": [ + "vegetable broth", + "olive oil", + "fennel bulb", + "garlic cloves" + ] + }, + { + "id": 31494, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "ground black pepper", + "red bell pepper", + "chopped cilantro fresh", + "corn", + "garlic", + "corn tortillas", + "rolled oats", + "chili powder", + "olive oil cooking spray", + "canned black beans", + "lime", + "scallions", + "small green chile" + ] + }, + { + "id": 22690, + "cuisine": "cajun_creole", + "ingredients": [ + "mayonaise", + "cajun seasoning", + "prepared horseradish", + "dill pickles" + ] + }, + { + "id": 41998, + "cuisine": "italian", + "ingredients": [ + "boneless skinless chicken breast halves", + "salt", + "pesto sauce", + "lemon juice" + ] + }, + { + "id": 30244, + "cuisine": "southern_us", + "ingredients": [ + "coconut oil", + "coconut flour", + "green tomatoes", + "pepper", + "salt", + "eggs", + "paprika" + ] + }, + { + "id": 32926, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vanilla", + "butter", + "cream cheese" + ] + }, + { + "id": 46452, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "peanuts", + "red pepper", + "cilantro leaves", + "sweet chili sauce", + "szechwan peppercorns", + "cornflour", + "soy sauce", + "spring onions", + "sea salt", + "skinless and boneless chicken breast fillet", + "fresh ginger", + "vegetable oil", + "garlic" + ] + }, + { + "id": 3299, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "vinegar", + "garlic salt", + "ketchup", + "salt", + "soy sauce", + "boneless skinless chicken breasts", + "canola oil", + "eggs", + "pepper", + "corn starch" + ] + }, + { + "id": 6032, + "cuisine": "indian", + "ingredients": [ + "clove", + "sugar", + "chicken breasts", + "salt", + "cinnamon sticks", + "tomatoes", + "minced garlic", + "paprika", + "oil", + "ghee", + "ground ginger", + "fresh coriander", + "chili powder", + "ground coriander", + "bay leaf", + "tumeric", + "water", + "purple onion", + "cardamom" + ] + }, + { + "id": 651, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "pork sirloin chops", + "garlic", + "water", + "splenda", + "soy sauce", + "bay leaves", + "ground black pepper", + "vegetable oil" + ] + }, + { + "id": 10657, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "baking powder", + "garlic", + "hot water", + "dried oregano", + "chicken broth", + "olive oil", + "diced tomatoes", + "all-purpose flour", + "onions", + "lime", + "butter", + "salt", + "wheat flour", + "canola oil", + "sugar", + "hominy", + "ancho powder", + "pork roast", + "boiling water" + ] + }, + { + "id": 923, + "cuisine": "italian", + "ingredients": [ + "hazelnuts", + "baking powder", + "all-purpose flour", + "granulated sugar", + "Dutch-processed cocoa powder", + "bittersweet chocolate", + "unsalted butter", + "vanilla", + "confectioners sugar", + "large eggs", + "salt" + ] + }, + { + "id": 34112, + "cuisine": "italian", + "ingredients": [ + "garlic", + "red wine", + "beef for stew", + "whole peppercorn", + "salt" + ] + }, + { + "id": 24124, + "cuisine": "thai", + "ingredients": [ + "thai basil", + "cilantro", + "beansprouts", + "mint", + "green leaf lettuce", + "shrimp", + "min", + "hoisin sauce", + "rice vermicelli", + "rice paper", + "honey", + "jicama", + "hot water" + ] + }, + { + "id": 43960, + "cuisine": "moroccan", + "ingredients": [ + "large eggs", + "all purpose unbleached flour", + "ice water", + "large shrimp", + "corn oil", + "salt", + "mayonaise", + "lemon" + ] + }, + { + "id": 3949, + "cuisine": "indian", + "ingredients": [ + "white onion", + "garam masala", + "cayenne pepper", + "minced ginger", + "heavy cream", + "bay leaf", + "minced garlic", + "chili powder", + "lemon juice", + "plain yogurt", + "crushed tomatoes", + "paneer", + "cumin" + ] + }, + { + "id": 2005, + "cuisine": "southern_us", + "ingredients": [ + "chicken wings", + "all-purpose flour", + "kosher salt", + "peanut oil", + "ground chipotle chile pepper", + "cayenne pepper", + "buttermilk" + ] + }, + { + "id": 14261, + "cuisine": "southern_us", + "ingredients": [ + "meat", + "dark brown sugar", + "eggs", + "salt", + "melted butter", + "vanilla extract", + "cornmeal", + "milk", + "Karo Corn Syrup" + ] + }, + { + "id": 6819, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "unsalted butter", + "malt vinegar", + "canola oil", + "ground nutmeg", + "lemon", + "ground cardamom", + "mace", + "yoghurt", + "cayenne pepper", + "lamb rib chops", + "garam masala", + "garlic", + "cumin" + ] + }, + { + "id": 32726, + "cuisine": "spanish", + "ingredients": [ + "white wine vinegar", + "cucumber", + "green onions", + "salt", + "fat free less sodium chicken broth", + "non-fat sour cream", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 7218, + "cuisine": "brazilian", + "ingredients": [ + "refried black beans", + "dende oil", + "buttermilk", + "salt", + "ground black pepper", + "crema", + "heavy cream", + "chopped cilantro" + ] + }, + { + "id": 22870, + "cuisine": "chinese", + "ingredients": [ + "water", + "seasoned rice wine vinegar", + "scallions", + "ginger", + "dark brown sugar", + "toasted sesame seeds", + "sesame oil", + "creamy peanut butter", + "garlic chili sauce", + "low sodium soy sauce", + "garlic", + "peanut oil", + "noodles" + ] + }, + { + "id": 17957, + "cuisine": "chinese", + "ingredients": [ + "ginger", + "boiling water", + "olive oil", + "all-purpose flour", + "low sodium soy sauce", + "rice vinegar", + "sesame seeds", + "scallions" + ] + }, + { + "id": 12844, + "cuisine": "italian", + "ingredients": [ + "potato gnocchi", + "fresh parsley", + "fresh peas", + "red pepper flakes", + "fresh rosemary", + "clove garlic, fine chop", + "large shrimp", + "green onions", + "extra-virgin olive oil" + ] + }, + { + "id": 16198, + "cuisine": "greek", + "ingredients": [ + "cracked black pepper", + "lemon", + "garlic", + "dijon mustard", + "extra-virgin olive oil", + "sea salt", + "dried oregano" + ] + }, + { + "id": 29055, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "pepper", + "scallions", + "ketchup", + "peas", + "cooked rice", + "butter", + "boneless chicken skinless thigh", + "salt" + ] + }, + { + "id": 46650, + "cuisine": "italian", + "ingredients": [ + "chickpea flour", + "cracked black pepper", + "water", + "fresh rosemary", + "salt", + "olive oil" + ] + }, + { + "id": 10012, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "jalapeno chilies", + "mexican chorizo", + "refried beans", + "salsa", + "tostada shells", + "cilantro leaves", + "greek yogurt", + "pepper jack", + "scallions" + ] + }, + { + "id": 18930, + "cuisine": "moroccan", + "ingredients": [ + "boneless chicken skinless thigh", + "chickpeas", + "plum tomatoes", + "hungarian sweet paprika", + "ground black pepper", + "chopped cilantro fresh", + "diced onions", + "olive oil", + "boneless skinless chicken breast halves", + "ground ginger", + "salt", + "ground turmeric" + ] + }, + { + "id": 16297, + "cuisine": "indian", + "ingredients": [ + "lean minced beef", + "garam masala", + "ginger", + "cilantro leaves", + "chicken stock", + "crushed tomatoes", + "yoghurt", + "purple onion", + "cumin seed", + "clove", + "black pepper", + "coriander powder", + "persimmon", + "green chilies", + "nutmeg", + "mace", + "grapeseed oil", + "salt", + "ground turmeric" + ] + }, + { + "id": 21919, + "cuisine": "spanish", + "ingredients": [ + "bay leaves", + "garlic cloves", + "white wine", + "extra-virgin olive oil", + "onions", + "eggs", + "parsley", + "ground beef", + "flour", + "salt" + ] + }, + { + "id": 19687, + "cuisine": "mexican", + "ingredients": [ + "egg noodles", + "medium shrimp", + "olive oil", + "shredded mozzarella cheese", + "diced tomatoes", + "ground black pepper", + "steak" + ] + }, + { + "id": 28237, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "spaghetti", + "capers", + "extra-virgin olive oil", + "gaeta olives", + "hot red pepper flakes", + "flat leaf parsley" + ] + }, + { + "id": 12261, + "cuisine": "thai", + "ingredients": [ + "lime", + "red pepper flakes", + "chicken fingers", + "low sodium soy sauce", + "zucchini", + "red pepper", + "carrots", + "ground ginger", + "sesame seeds", + "grapeseed oil", + "garlic cloves", + "fresh cilantro", + "green onions", + "peanut butter", + "beansprouts" + ] + }, + { + "id": 13809, + "cuisine": "french", + "ingredients": [ + "water", + "all-purpose flour", + "dried parsley", + "french baguette", + "ground black pepper", + "shredded mozzarella cheese", + "dried thyme", + "beef broth", + "white sugar", + "white wine", + "butter", + "onions" + ] + }, + { + "id": 9729, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "grated carrot", + "chopped fresh mint", + "rice stick noodles", + "plum sauce", + "medium shrimp", + "rice paper", + "sugar", + "salt", + "cabbage", + "ground black pepper", + "fresh lime juice", + "canola oil" + ] + }, + { + "id": 42485, + "cuisine": "southern_us", + "ingredients": [ + "corn", + "jalapeno chilies", + "creole seasoning", + "onions", + "celery ribs", + "olive oil", + "old bay seasoning", + "carrots", + "dried thyme", + "boneless skinless chicken breasts", + "garlic cloves", + "milk", + "cream style corn", + "all-purpose flour", + "corn starch" + ] + }, + { + "id": 28866, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "large eggs", + "garlic cloves", + "onions", + "olive oil", + "tapenade", + "thyme sprigs", + "water", + "black forest ham", + "red bell pepper", + "tomatoes", + "ground black pepper", + "salt", + "bay leaf" + ] + }, + { + "id": 44892, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "lime", + "barbecue sauce", + "cayenne pepper", + "kosher salt", + "flour tortillas", + "paprika", + "pickled onion", + "black pepper", + "garlic powder", + "chili powder", + "Mexican cheese", + "liquid smoke", + "cider vinegar", + "lager", + "cilantro", + "pork butt" + ] + }, + { + "id": 27371, + "cuisine": "british", + "ingredients": [ + "pie crust", + "bread crumbs", + "salt", + "fresh sage", + "fresh thyme", + "onions", + "mustard", + "ground black pepper", + "sharp cheddar cheese", + "eggs", + "ground pork" + ] + }, + { + "id": 20341, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "peeled fresh ginger", + "large garlic cloves", + "english cucumber", + "water", + "sesame oil", + "salt", + "fresh lime juice", + "jasmine rice", + "shallots", + "thai chile", + "garlic cloves", + "fresh ginger", + "watercress", + "cilantro leaves", + "chicken" + ] + }, + { + "id": 12903, + "cuisine": "spanish", + "ingredients": [ + "peasant bread", + "jalapeno chilies", + "grated lemon zest", + "cucumber", + "yellow peppers", + "sweet onion", + "fennel bulb", + "salt", + "fresh lemon juice", + "medium shrimp", + "lime zest", + "sea scallops", + "large garlic cloves", + "freshly ground pepper", + "fresh lime juice", + "cranberry beans", + "tomato juice", + "extra-virgin olive oil", + "scallions", + "chopped cilantro" + ] + }, + { + "id": 10238, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "bell pepper", + "hot sauce", + "long grain white rice", + "ground black pepper", + "salt", + "onions", + "black-eyed peas", + "garlic", + "celery", + "black pepper", + "crushed red pepper flakes", + "cubed ham" + ] + }, + { + "id": 36694, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "garlic cloves", + "ground black pepper", + "salt", + "olive oil", + "yellow bell pepper", + "red bell pepper", + "pork tenderloin", + "grated lemon zest" + ] + }, + { + "id": 37989, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic", + "oil", + "flour", + "okra", + "onions", + "tomatoes", + "rice", + "sausages", + "cajun seasoning", + "scallions", + "broth" + ] + }, + { + "id": 41341, + "cuisine": "filipino", + "ingredients": [ + "glutinous rice", + "coconut milk", + "coconut cream", + "water", + "coconut oil", + "dark brown sugar" + ] + }, + { + "id": 35197, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "crushed red pepper", + "chopped parsley", + "cumin", + "extra-virgin olive oil", + "cayenne pepper", + "bay leaf", + "red beans", + "salt", + "celery", + "cooked rice", + "garlic", + "sausages", + "onions" + ] + }, + { + "id": 44256, + "cuisine": "french", + "ingredients": [ + "vegetable oil cooking spray", + "zucchini", + "chickpeas", + "chopped garlic", + "fresh rosemary", + "eggplant", + "chopped fresh thyme", + "onions", + "fresh basil", + "ground black pepper", + "salt", + "plum tomatoes", + "tomato paste", + "olive oil", + "sherry wine vinegar", + "red bell pepper" + ] + }, + { + "id": 35516, + "cuisine": "italian", + "ingredients": [ + "pepper", + "nonfat cottage cheese", + "fresh basil", + "garlic", + "cannellini beans", + "grape tomatoes", + "salt" + ] + }, + { + "id": 27073, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "salsa verde", + "jalapeno chilies", + "garlic", + "chicken bouillon granules", + "water", + "flour tortillas", + "Mexican oregano", + "sour cream", + "pepper", + "beef", + "green onions", + "salt", + "green chile", + "olive oil", + "potatoes", + "heavy cream", + "cumin" + ] + }, + { + "id": 24749, + "cuisine": "italian", + "ingredients": [ + "soft goat's cheese", + "eggplant", + "fresh thyme leaves", + "salt", + "white wine", + "zucchini", + "garlic", + "fresh basil", + "ground black pepper", + "summer squash", + "onions", + "olive oil", + "roma tomatoes", + "sweet pepper" + ] + }, + { + "id": 7553, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless, skinless chicken breast", + "cayenne", + "salt", + "bay leaf", + "green bell pepper", + "dried thyme", + "flour", + "long-grain rice", + "dried oregano", + "crushed tomatoes", + "cooking oil", + "okra", + "onions", + "canned low sodium chicken broth", + "ground black pepper", + "smoked sausage", + "celery" + ] + }, + { + "id": 29683, + "cuisine": "southern_us", + "ingredients": [ + "crumb crust", + "heavy cream", + "semi-sweet chocolate morsels", + "unsalted butter", + "vanilla extract", + "coffee ice cream", + "light corn syrup", + "toffee bits", + "confectioners sugar" + ] + }, + { + "id": 35127, + "cuisine": "mexican", + "ingredients": [ + "tomatoes with juice", + "corn kernel whole", + "taco seasoning mix", + "ground beef", + "Ranch Style Beans", + "diced tomatoes", + "onions" + ] + }, + { + "id": 36209, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "brown sugar", + "bacon", + "butter", + "soy sauce", + "green beans" + ] + }, + { + "id": 36349, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "garlic", + "thyme", + "pork", + "basil", + "carrots", + "onions", + "red wine", + "salt", + "chopped parsley", + "bacon", + "lamb", + "orange rind" + ] + }, + { + "id": 49559, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "flat leaf parsley", + "black pepper", + "jalapeno chilies", + "pasta", + "marinara sauce", + "kosher salt", + "deveined shrimp" + ] + }, + { + "id": 27878, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "bay leaves", + "salt", + "rice", + "olive oil", + "worcestershire sauce", + "yellow onion", + "chicken thighs", + "pepper", + "chicken breasts", + "hot sauce", + "celery", + "chicken stock", + "andouille chicken sausage", + "garlic", + "creole seasoning" + ] + }, + { + "id": 5678, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "grated parmesan cheese", + "garlic", + "milk", + "butter", + "italian seasoning", + "fresh spinach", + "russet potatoes", + "onions", + "chicken broth", + "olive oil", + "heavy cream" + ] + }, + { + "id": 21015, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "piecrust", + "butter", + "pure maple syrup", + "large eggs", + "salt", + "pecans", + "sweet potatoes", + "ground cinnamon", + "ground nutmeg", + "heavy cream" + ] + }, + { + "id": 23193, + "cuisine": "french", + "ingredients": [ + "flower petals", + "unsalted butter", + "chopped walnuts", + "large egg yolks", + "yellow bell pepper", + "large egg whites", + "blue cheese", + "mesclun", + "milk", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 42073, + "cuisine": "indian", + "ingredients": [ + "seedless cucumber", + "coconut", + "basmati rice", + "coconut oil", + "fresh curry leaves", + "fenugreek seeds", + "ground cumin", + "chile powder", + "plain yogurt", + "hot green chile", + "ground turmeric", + "chiles", + "water", + "black mustard seeds" + ] + }, + { + "id": 7238, + "cuisine": "mexican", + "ingredients": [ + "salad oil", + "salt", + "garlic", + "chiltepín" + ] + }, + { + "id": 24805, + "cuisine": "italian", + "ingredients": [ + "avocado", + "bocconcini", + "cherry tomatoes", + "garlic olive oil", + "sourdough loaf", + "balsamic reduction", + "basil leaves" + ] + }, + { + "id": 13613, + "cuisine": "thai", + "ingredients": [ + "Thai chili paste", + "chili powder", + "lime leaves", + "fish sauce", + "lime juice", + "rolls", + "tomatoes", + "water", + "cilantro leaves", + "galangal", + "straw mushrooms", + "lemongrass", + "shrimp" + ] + }, + { + "id": 6130, + "cuisine": "irish", + "ingredients": [ + "water", + "color food green", + "confectioners sugar", + "eggs", + "baking powder", + "salt", + "chocolate chips", + "baking soda", + "vanilla extract", + "white sugar", + "irish cream liqueur", + "butter", + "all-purpose flour", + "unsweetened cocoa powder" + ] + }, + { + "id": 5453, + "cuisine": "italian", + "ingredients": [ + "salt and ground black pepper", + "fresh parsley", + "garlic", + "grated parmesan cheese", + "olive oil", + "rotini" + ] + }, + { + "id": 34917, + "cuisine": "french", + "ingredients": [ + "egg substitute", + "butter", + "salt", + "boiling water", + "sugar", + "semisweet chocolate", + "non-fat sour cream", + "fresh mint", + "baking soda", + "vanilla extract", + "fresh raspberries", + "unsweetened cocoa powder", + "seedless raspberry jam", + "cooking spray", + "cake flour", + "nonfat evaporated milk" + ] + }, + { + "id": 45297, + "cuisine": "british", + "ingredients": [ + "vegetable oil", + "beer", + "all-purpose flour", + "haddock fillets", + "boiling potatoes" + ] + }, + { + "id": 49407, + "cuisine": "french", + "ingredients": [ + "brine-cured olives", + "extra-virgin olive oil", + "french bread", + "tuna", + "sweet onion", + "fresh lemon juice", + "basil leaves", + "plum tomatoes" + ] + }, + { + "id": 35815, + "cuisine": "italian", + "ingredients": [ + "chopped almonds", + "unsweetened cocoa powder", + "chopped walnuts", + "chestnut purée", + "melted butter", + "white sugar" + ] + }, + { + "id": 47257, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "onion powder", + "dried oregano", + "boneless skinless chicken breasts", + "paprika", + "garlic powder", + "red pepper flakes", + "ground cumin", + "chicken broth", + "chili powder", + "salt" + ] + }, + { + "id": 880, + "cuisine": "southern_us", + "ingredients": [ + "minced garlic", + "shrimp", + "butter", + "lobster tails", + "hot pepper sauce", + "key lime juice", + "white wine", + "fresh mushrooms" + ] + }, + { + "id": 44629, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "butter", + "fresh cilantro", + "salt", + "picante sauce", + "cheese", + "flour tortillas" + ] + }, + { + "id": 24800, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "unsalted butter", + "cayenne pepper", + "milk", + "heavy cream", + "shrimp", + "water", + "sherry", + "lemon juice", + "ground black pepper", + "salt", + "grits" + ] + }, + { + "id": 15282, + "cuisine": "southern_us", + "ingredients": [ + "graham cracker crusts", + "walnuts", + "semisweet chocolate", + "unsalted butter", + "eggs", + "light corn syrup" + ] + }, + { + "id": 35567, + "cuisine": "italian", + "ingredients": [ + "eggs", + "pecorino romano cheese", + "ground round", + "large garlic cloves", + "plain dry bread crumb", + "sweet italian sausage", + "crushed tomatoes" + ] + }, + { + "id": 39827, + "cuisine": "chinese", + "ingredients": [ + "beef", + "szechwan peppercorns", + "soy sauce", + "low sodium chicken broth", + "vegetable oil", + "red chili peppers", + "sichuanese chili paste", + "sesame oil", + "kosher salt", + "Shaoxing wine", + "scallions" + ] + }, + { + "id": 39432, + "cuisine": "mexican", + "ingredients": [ + "bell pepper", + "salsa", + "cheese", + "chopped cilantro fresh", + "large flour tortillas", + "turkey meat", + "olive oil", + "purple onion", + "ground cumin" + ] + }, + { + "id": 37776, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "dried basil", + "dry red wine", + "fresh parsley", + "black pepper", + "jalapeno chilies", + "garlic cloves", + "sugar", + "olive oil", + "chopped onion", + "ground cumin", + "tomato paste", + "fresh cilantro", + "diced tomatoes", + "tequila" + ] + }, + { + "id": 40145, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "curry powder", + "sherry", + "fresh lemon juice", + "soy sauce", + "olive oil", + "apricot halves", + "chicken pieces", + "water", + "ground black pepper", + "garlic", + "dried oregano", + "prunes", + "honey", + "brown rice", + "thyme" + ] + }, + { + "id": 12136, + "cuisine": "korean", + "ingredients": [ + "red beans", + "pancake mix", + "vanilla extract", + "sugar", + "walnuts" + ] + }, + { + "id": 21539, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salad dressing", + "eggs", + "yellow mustard", + "Kraft Miracle Whip Dressing", + "onions", + "red potato", + "salt" + ] + }, + { + "id": 13488, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "cinnamon", + "salt", + "olive oil", + "ginger", + "lemon juice", + "pepper", + "paprika", + "boneless skinless chicken", + "cayenne", + "garlic", + "cumin" + ] + }, + { + "id": 28700, + "cuisine": "indian", + "ingredients": [ + "mint sprigs", + "chopped pecans", + "fat free yogurt", + "grated lemon zest", + "seedless red grapes", + "sugar", + "salt", + "chopped fresh mint", + "raisins", + "cumin seed" + ] + }, + { + "id": 34336, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "salt", + "oil", + "frozen peas", + "garam masala", + "green chilies", + "mustard seeds", + "asafetida", + "water", + "cilantro leaves", + "carrots", + "ground turmeric", + "tomatoes", + "chopped potatoes", + "cumin seed", + "onions" + ] + }, + { + "id": 37222, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "mirin", + "granulated sugar", + "scallions", + "fresh shiitake mushrooms" + ] + }, + { + "id": 33293, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "granulated sugar", + "chopped pecans", + "eggs", + "bourbon whiskey", + "pie crust", + "flour", + "semi-sweet chocolate morsels", + "pure vanilla extract", + "unsalted butter", + "salt" + ] + }, + { + "id": 41307, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "tapioca pearls", + "sugar", + "coarse sea salt", + "corn kernels", + "toasted sesame seeds", + "unsweetened coconut milk", + "bananas" + ] + }, + { + "id": 25899, + "cuisine": "brazilian", + "ingredients": [ + "superfine sugar", + "cachaca", + "lime juice", + "passion fruit juice" + ] + }, + { + "id": 18665, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "salsa", + "boneless beef chuck roast", + "beef broth" + ] + }, + { + "id": 11052, + "cuisine": "mexican", + "ingredients": [ + "milk", + "chili powder", + "tortilla chips", + "cotija", + "flour", + "garlic", + "chopped cilantro", + "refried black beans", + "olive oil", + "butter", + "shredded cheese", + "frozen sweet corn", + "sweet potatoes", + "salt" + ] + }, + { + "id": 42953, + "cuisine": "mexican", + "ingredients": [ + "chopped green chilies", + "onions", + "eggs", + "jalapeno chilies", + "canola oil", + "cream style corn", + "corn bread", + "shredded cheddar cheese", + "sour cream" + ] + }, + { + "id": 15272, + "cuisine": "mexican", + "ingredients": [ + "milk", + "whole kernel corn, drain", + "eggs", + "chili seasoning", + "cornmeal", + "seasoning salt", + "ripe olives", + "shredded cheddar cheese", + "diced tomatoes", + "ground beef" + ] + }, + { + "id": 35489, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "flour", + "pears", + "puff pastry sheets", + "pistachios", + "custard", + "almonds", + "butter", + "sugar", + "egg yolks" + ] + }, + { + "id": 41720, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "balsamic vinegar", + "chicken breasts", + "fresh mint", + "lemon zest", + "ground allspice", + "bourbon whiskey" + ] + }, + { + "id": 15356, + "cuisine": "korean", + "ingredients": [ + "kirby cucumbers", + "toasted sesame oil", + "sugar", + "rice vinegar", + "salt", + "toasted sesame seeds", + "gochugaru", + "scallions" + ] + }, + { + "id": 46952, + "cuisine": "mexican", + "ingredients": [ + "lime", + "lime wedges", + "sour cream", + "boneless chicken breast halves", + "salt", + "olive oil", + "garlic", + "cumin", + "black pepper", + "chili powder", + "tequila" + ] + }, + { + "id": 34050, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "fresh ginger", + "onions", + "fresh basil", + "raisins", + "firmly packed light brown sugar", + "garlic cloves", + "tomatoes", + "habanero pepper" + ] + }, + { + "id": 27654, + "cuisine": "southern_us", + "ingredients": [ + "avocado", + "salt", + "tomatillos", + "Anaheim chile", + "chopped cilantro fresh", + "black beans", + "fresh lime juice" + ] + }, + { + "id": 30378, + "cuisine": "southern_us", + "ingredients": [ + "cola soft drink", + "clove", + "spicy brown mustard", + "light brown sugar", + "bourbon whiskey", + "cooked bone in ham" + ] + }, + { + "id": 15098, + "cuisine": "japanese", + "ingredients": [ + "caster sugar", + "rice vinegar", + "smoked salmon", + "chives", + "avocado", + "sweet soy sauce", + "seaweed", + "sushi rice", + "lemon" + ] + }, + { + "id": 23495, + "cuisine": "french", + "ingredients": [ + "breasts halves", + "salt", + "black pepper", + "yoghurt", + "browning", + "cooking spray", + "tarragon", + "finely chopped onion", + "dry white wine" + ] + }, + { + "id": 46623, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "warm water", + "all-purpose flour", + "brown sugar", + "salt", + "active dry yeast" + ] + }, + { + "id": 6775, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "onions", + "large eggs", + "olive oil", + "yukon gold potatoes" + ] + }, + { + "id": 37725, + "cuisine": "mexican", + "ingredients": [ + "dried black beans", + "queso fresco", + "corn tortillas", + "guajillo chiles", + "crema", + "onions", + "avocado", + "corn oil", + "garlic cloves", + "water", + "salt" + ] + }, + { + "id": 17972, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "oil", + "red chili powder", + "salt", + "allspice", + "tomatoes", + "mutton", + "ground turmeric", + "garlic paste", + "cilantro leaves" + ] + }, + { + "id": 29928, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "lime juice", + "ground cumin", + "country crock calcium plus vitamin d", + "chili powder", + "garlic powder" + ] + }, + { + "id": 45030, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "raisins", + "blanched almonds", + "ground ginger", + "honey", + "ras el hanout", + "cinnamon sticks", + "saffron threads", + "water", + "lamb shoulder", + "garlic cloves", + "ground cinnamon", + "unsalted butter", + "salt", + "onions" + ] + }, + { + "id": 26711, + "cuisine": "southern_us", + "ingredients": [ + "cake mix or white yellow", + "oil", + "egg whites", + "cream cheese", + "powdered sugar", + "strawberries", + "glaze", + "cake", + "whipped topping" + ] + }, + { + "id": 27752, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "Gochujang base", + "sesame oil", + "kimchi", + "green onions", + "rice", + "water", + "vegetable oil" + ] + }, + { + "id": 39371, + "cuisine": "mexican", + "ingredients": [ + "lower sodium soy sauce", + "fresh lime juice", + "light beer", + "bloody mary mix", + "hot pepper sauce" + ] + }, + { + "id": 48115, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "black rice", + "shredded coconut", + "rice", + "fresh ginger", + "coconut milk", + "molasses", + "mung beans" + ] + }, + { + "id": 27197, + "cuisine": "italian", + "ingredients": [ + "Philadelphia Light Cream Cheese", + "penne pasta", + "zucchini", + "red pepper", + "boneless skinless chicken breasts", + "grating cheese", + "25% less sodium chicken broth", + "zesty italian dressing", + "fresh asparagus" + ] + }, + { + "id": 23642, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic", + "fresh spinach", + "olive oil", + "cream cheese", + "pasta", + "milk", + "salt", + "pesto", + "boneless skinless chicken breasts", + "onions" + ] + }, + { + "id": 17067, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "chives", + "scallions", + "baguette", + "gherkins", + "reduced fat mayonnaise", + "capers", + "paprika", + "lemon juice", + "olive oil", + "cayenne pepper", + "cooked shrimp" + ] + }, + { + "id": 31262, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "all-purpose flour", + "whole milk", + "ground black pepper", + "cayenne pepper", + "breakfast sausages" + ] + }, + { + "id": 10555, + "cuisine": "mexican", + "ingredients": [ + "Mexican oregano", + "ground cumin", + "ancho powder", + "garlic powder" + ] + }, + { + "id": 4027, + "cuisine": "vietnamese", + "ingredients": [ + "black pepper", + "Maggi", + "garlic", + "chicken drumsticks", + "canola oil", + "sugar", + "salt" + ] + }, + { + "id": 25347, + "cuisine": "chinese", + "ingredients": [ + "szechwan peppercorns", + "chili oil", + "salt", + "black rice vinegar", + "soy sauce", + "vegetable oil", + "ginger", + "ground beef", + "hot red pepper flakes", + "sesame oil", + "cilantro", + "Chinese sesame paste", + "green onions", + "mustard greens", + "garlic", + "noodles" + ] + }, + { + "id": 10791, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "unsalted butter", + "garlic", + "fresh spinach", + "ground black pepper", + "bacon", + "oysters", + "watercress", + "licorice root", + "lemon" + ] + }, + { + "id": 12437, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "shredded cheddar cheese", + "enchilada sauce", + "flour tortillas", + "ground beef", + "frozen corn" + ] + }, + { + "id": 38922, + "cuisine": "mexican", + "ingredients": [ + "jack", + "cilantro", + "jalapeno chilies", + "chicken", + "tortillas", + "bbq sauce", + "cheddar cheese", + "pineapple" + ] + }, + { + "id": 45471, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "napa cabbage", + "egg noodles, cooked and drained", + "soy sauce", + "vegetable oil", + "salt", + "beef brisket", + "garlic", + "water", + "star anise", + "onions" + ] + }, + { + "id": 23342, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "ground black pepper", + "scallions", + "chicken broth", + "chinese black mushrooms", + "salt", + "cremini mushrooms", + "corn oil", + "garlic cloves", + "soy sauce", + "fresh shiitake mushrooms", + "chopped cilantro fresh" + ] + }, + { + "id": 7255, + "cuisine": "japanese", + "ingredients": [ + "ground black pepper", + "all-purpose flour", + "eggs", + "chicken breasts", + "oil", + "sake", + "sea salt", + "panko", + "tonkatsu sauce" + ] + }, + { + "id": 11676, + "cuisine": "mexican", + "ingredients": [ + "canned black beans", + "chicken breast halves", + "fresh lime juice", + "tomatoes", + "hot pepper sauce", + "salsa", + "ground cumin", + "avocado", + "lime juice", + "shredded lettuce", + "chopped cilantro fresh", + "tostada shells", + "green onions", + "goat cheese" + ] + }, + { + "id": 25818, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "bay leaves", + "salt", + "cooked white rice", + "andouille sausage", + "olive oil", + "paprika", + "green pepper", + "dried oregano", + "dried thyme", + "onion powder", + "cayenne pepper", + "onions", + "beans", + "garlic powder", + "garlic", + "hot water" + ] + }, + { + "id": 8301, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "fresh basil leaves", + "ground black pepper", + "flat leaf parsley", + "honey", + "garlic", + "kosher salt", + "extra-virgin olive oil", + "dried oregano" + ] + }, + { + "id": 30768, + "cuisine": "british", + "ingredients": [ + "sugar", + "butter", + "milk", + "cornmeal", + "warm water", + "salt", + "active dry yeast", + "bread flour" + ] + }, + { + "id": 11209, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "bay leaves", + "cook egg hard", + "chicken thighs", + "black peppercorns", + "egg roll wrappers", + "vegetable oil", + "coconut vinegar", + "eggs", + "pickled jalapenos", + "chives", + "garlic", + "sugar", + "hoisin sauce", + "coarse salt", + "sour cream" + ] + }, + { + "id": 36632, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "fresh lime juice", + "light brown sugar", + "lemon zest", + "chopped cilantro", + "unsweetened coconut milk", + "fresh ginger", + "thai green curry paste", + "lime zest", + "basil", + "asian fish sauce" + ] + }, + { + "id": 11247, + "cuisine": "japanese", + "ingredients": [ + "gelatin", + "hot water", + "caster sugar", + "coffee" + ] + }, + { + "id": 34009, + "cuisine": "chinese", + "ingredients": [ + "garlic", + "pork shoulder", + "kosher salt", + "oil", + "chinese five-spice powder", + "ginger", + "ground white pepper" + ] + }, + { + "id": 5093, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "white rice", + "water", + "tomatillo salsa", + "salt", + "colby jack cheese" + ] + }, + { + "id": 37153, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "corn tortillas", + "chiles", + "butter", + "chopped garlic", + "lime", + "flat leaf parsley", + "white onion", + "shrimp", + "canola oil" + ] + }, + { + "id": 43173, + "cuisine": "french", + "ingredients": [ + "white asparagus", + "chopped fresh chives", + "black truffles", + "fresh lemon juice", + "kosher salt", + "hazelnut oil", + "chicken broth", + "sherry vinegar", + "fresh chervil" + ] + }, + { + "id": 5387, + "cuisine": "cajun_creole", + "ingredients": [ + "granulated garlic", + "ground black pepper", + "dried oregano", + "dried basil", + "paprika", + "kosher salt", + "onion powder", + "dried thyme", + "cayenne pepper" + ] + }, + { + "id": 35417, + "cuisine": "italian", + "ingredients": [ + "cream cheese", + "sun-dried tomatoes", + "pesto", + "provolone cheese", + "garlic" + ] + }, + { + "id": 7447, + "cuisine": "mexican", + "ingredients": [ + "shredded cabbage", + "hot sauce", + "ground cumin", + "vegetable oil cooking spray", + "ancho powder", + "shrimp", + "lime wedges", + "carrots", + "olive oil", + "salt", + "corn tortillas" + ] + }, + { + "id": 44483, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "shredded cheddar cheese", + "large eggs", + "creamed spinach" + ] + }, + { + "id": 37267, + "cuisine": "filipino", + "ingredients": [ + "savoy cabbage", + "soy sauce", + "ground allspice", + "oil", + "ground cumin", + "fish sauce", + "chili paste", + "eggroll wrappers", + "galangal", + "diced onions", + "garlic powder", + "beer", + "carrots", + "brown sugar", + "golden raisins", + "ground coriander", + "ground beef" + ] + }, + { + "id": 30346, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "green chilies", + "coriander", + "tumeric", + "garlic", + "ginger root", + "tomatoes", + "masoor dal", + "oil", + "water", + "salt", + "onions" + ] + }, + { + "id": 2763, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "self rising flour", + "buttermilk", + "yellow corn meal", + "chopped green bell pepper", + "ranch dressing", + "baking soda", + "large eggs", + "salt", + "granulated garlic", + "finely chopped onion", + "vegetable oil" + ] + }, + { + "id": 47122, + "cuisine": "irish", + "ingredients": [ + "Japanese turnips", + "salt", + "dumplings", + "lamb for stew", + "flour", + "carrots", + "onions", + "nutmeg", + "potatoes", + "fat", + "biscuit mix", + "pepper", + "parsley", + "thyme", + "boiling water" + ] + }, + { + "id": 11898, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "cheese", + "unsalted butter", + "polenta", + "parmesan cheese", + "yellow onion", + "bay leaves" + ] + }, + { + "id": 38084, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "large egg yolks", + "vanilla beans", + "half & half", + "kahlúa", + "sesame seeds", + "cream of tartar", + "large egg whites", + "pepitas" + ] + }, + { + "id": 36883, + "cuisine": "vietnamese", + "ingredients": [ + "fresh cilantro", + "rice vinegar", + "chile sauce", + "Boston lettuce", + "peanuts", + "carrots", + "fish sauce", + "fresh ginger", + "peanut oil", + "sugar", + "napa cabbage", + "shrimp" + ] + }, + { + "id": 29178, + "cuisine": "british", + "ingredients": [ + "eggs", + "salt", + "white vinegar", + "mushrooms", + "crumpet", + "egg yolks", + "cayenne pepper", + "marmite", + "butter", + "lemon juice" + ] + }, + { + "id": 204, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "garlic cloves", + "sliced green onions", + "vegetable oil cooking spray", + "dry white wine", + "low salt chicken broth", + "arborio rice", + "mushrooms", + "ham", + "water", + "chopped fresh thyme", + "fresh parsley" + ] + }, + { + "id": 5701, + "cuisine": "italian", + "ingredients": [ + "peeled tomatoes", + "butter", + "flat leaf parsley", + "grated parmesan cheese", + "penne pasta", + "olive oil", + "whipping cream", + "onions", + "sausage casings", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 19330, + "cuisine": "japanese", + "ingredients": [ + "bread", + "loin pork chops", + "salt", + "eggs", + "cabbage", + "all-purpose flour" + ] + }, + { + "id": 39544, + "cuisine": "italian", + "ingredients": [ + "spinach", + "green onions", + "chardonnay", + "olive oil", + "capellini", + "shredded Monterey Jack cheese", + "black pepper", + "salt", + "red bell pepper", + "mussels", + "half & half", + "garlic cloves" + ] + }, + { + "id": 17773, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "tortilla chips", + "chicken breasts", + "rotel tomatoes", + "guacamole", + "shredded cheese", + "non-fat sour cream", + "canned corn" + ] + }, + { + "id": 27867, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "fresh thyme", + "smoked ham", + "salt", + "flat leaf parsley", + "water", + "red beans", + "worcestershire sauce", + "yellow onion", + "bay leaf", + "pepper", + "bell pepper", + "cajun seasoning", + "hot sauce", + "celery", + "olive oil", + "green onions", + "smoked sausage", + "garlic cloves", + "cooked white rice" + ] + }, + { + "id": 30747, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "garlic", + "light soy sauce", + "peanut oil", + "minced ginger", + "salt", + "dark soy sauce", + "eggplant", + "corn starch" + ] + }, + { + "id": 20084, + "cuisine": "vietnamese", + "ingredients": [ + "shredded carrots", + "shrimp", + "rice paper", + "lettuce leaves", + "beansprouts", + "pork tenderloin", + "cucumber", + "tofu", + "rice vermicelli", + "fresh mint" + ] + }, + { + "id": 33396, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "frozen pastry puff sheets", + "salt", + "cinnamon sticks", + "frozen peas", + "pepper", + "fresh ginger", + "mango chutney", + "carrots", + "onions", + "curry powder", + "potatoes", + "all-purpose flour", + "roast beef", + "tomatoes", + "olive oil", + "golden raisins", + "beef broth", + "flat leaf parsley" + ] + }, + { + "id": 20575, + "cuisine": "southern_us", + "ingredients": [ + "soft-wheat flour", + "freshly ground pepper", + "tomatoes", + "dried thyme", + "bacon drippings", + "milk", + "vidalia onion", + "salt" + ] + }, + { + "id": 17331, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "hass avocado", + "ground black pepper", + "fresh herbs", + "coriander seeds", + "seedless watermelon", + "aged balsamic vinegar", + "heirloom tomatoes", + "regular cucumber" + ] + }, + { + "id": 21056, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "chili", + "mushrooms", + "onions", + "guajillo chiles", + "hominy", + "salt", + "lime juice", + "cooking oil", + "hot sauce", + "tomatoes", + "ground black pepper", + "garlic", + "dried oregano" + ] + }, + { + "id": 9014, + "cuisine": "cajun_creole", + "ingredients": [ + "romaine lettuce", + "french bread", + "oil", + "fat-free mayonnaise", + "olive oil", + "old bay seasoning", + "lemon juice", + "dijon mustard", + "purple onion", + "olive oil flavored cooking spray", + "jumbo shrimp", + "ground red pepper", + "garlic cloves" + ] + }, + { + "id": 28739, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "brie cheese", + "canola oil", + "flour tortillas", + "onions", + "dried thyme", + "tart apples", + "balsamic vinegar", + "dried rosemary" + ] + }, + { + "id": 30285, + "cuisine": "italian", + "ingredients": [ + "sugar", + "lemon juice", + "orange zest", + "nutmeg", + "cinnamon", + "polenta", + "unsalted butter", + "orange liqueur", + "brown sugar", + "whipped topping", + "blackberries" + ] + }, + { + "id": 24267, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "salt", + "large egg whites", + "baking powder", + "orange liqueur", + "sugar", + "large eggs", + "all-purpose flour", + "almonds", + "vanilla extract", + "orange zest" + ] + }, + { + "id": 33328, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "grated parmesan cheese", + "fresh parsley", + "ground black pepper", + "salt", + "olive oil", + "garlic", + "spaghetti", + "bread crumb fresh", + "fennel bulb", + "sardines" + ] + }, + { + "id": 7227, + "cuisine": "mexican", + "ingredients": [ + "cider vinegar", + "jalapeno chilies", + "vegetable oil", + "marjoram", + "dried thyme", + "jicama", + "garlic", + "black peppercorns", + "zucchini", + "sliced carrots", + "onions", + "water", + "bay leaves", + "cauliflower florets", + "dried oregano" + ] + }, + { + "id": 966, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "penne pasta", + "diced tomatoes", + "chopped garlic", + "grated parmesan cheese", + "shrimp", + "white wine", + "purple onion" + ] + }, + { + "id": 31122, + "cuisine": "filipino", + "ingredients": [ + "cooked ham", + "garlic", + "cooking oil", + "soy sauce", + "eggs", + "white rice" + ] + }, + { + "id": 36384, + "cuisine": "french", + "ingredients": [ + "pepper", + "orange marmalade", + "orange juice", + "chicken thighs", + "orange", + "purple onion", + "lemon juice", + "boned skinned duck breast halves", + "red wine vinegar", + "fat skimmed chicken broth", + "green olives", + "olive oil", + "salt", + "couscous" + ] + }, + { + "id": 39856, + "cuisine": "filipino", + "ingredients": [ + "quail eggs", + "chicken thigh fillets", + "oil", + "chicken livers", + "cabbage", + "water", + "salt", + "carrots", + "baby corn", + "pepper", + "garlic", + "oyster sauce", + "red bell pepper", + "cauliflower", + "bell pepper", + "broccoli", + "corn starch", + "onions" + ] + }, + { + "id": 43752, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "chile pepper", + "chopped cilantro fresh", + "tomatoes", + "fresh ginger root", + "cumin seed", + "olive oil", + "garlic", + "salmon", + "brown mustard seeds", + "onions" + ] + }, + { + "id": 29532, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "sugar", + "sesame seeds", + "orange flower water", + "saffron threads", + "tumeric", + "olive oil", + "salt", + "ground cinnamon", + "lamb shanks", + "almonds", + "ground white pepper", + "prunes", + "fresh cilantro", + "cinnamon", + "onions" + ] + }, + { + "id": 10226, + "cuisine": "chinese", + "ingredients": [ + "water", + "vegetable oil", + "cayenne pepper", + "spring onions", + "garlic", + "light soy sauce", + "cornflour", + "sugar", + "boneless skinless chicken breasts", + "white wine vinegar" + ] + }, + { + "id": 12670, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "white rice vinegar", + "coriander", + "clams", + "mo hanh", + "scallions", + "minced ginger", + "vegetable stock", + "boiling water", + "sugar", + "light soy sauce", + "shao hsing wine" + ] + }, + { + "id": 43995, + "cuisine": "indian", + "ingredients": [ + "sea salt", + "ghee", + "nigella seeds", + "runny honey", + "yeast", + "strong white bread flour", + "yoghurt natural low fat" + ] + }, + { + "id": 49599, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "flour", + "butter", + "goat cheese", + "tomatoes", + "cherry tomatoes", + "red capsicum", + "salt", + "avocado", + "lime", + "vegetable oil", + "purple onion", + "chorizo sausage", + "milk", + "shallots", + "garlic", + "chillies" + ] + }, + { + "id": 41986, + "cuisine": "french", + "ingredients": [ + "light cream", + "champagne", + "salt", + "seedless cucumber", + "scallions", + "sea bass fillets" + ] + }, + { + "id": 38565, + "cuisine": "thai", + "ingredients": [ + "baby spinach", + "red bell pepper", + "lite coconut milk", + "salt", + "brown sugar", + "extra-virgin olive oil", + "chopped cilantro fresh", + "extra firm tofu", + "red curry paste" + ] + }, + { + "id": 25021, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "lemon juice", + "olive oil", + "garlic cloves", + "salt", + "fresh green bean", + "chopped pecans" + ] + }, + { + "id": 44738, + "cuisine": "chinese", + "ingredients": [ + "clove", + "sugar", + "active dry yeast", + "vegetable oil", + "self-rising cake flour", + "lapsang souchong", + "plain flour", + "water", + "Sriracha", + "star anise", + "dark brown sugar", + "cinnamon sticks", + "black peppercorns", + "orange", + "hoisin sauce", + "fine sea salt", + "scallions", + "chicken", + "fennel seeds", + "warm water", + "fresh ginger", + "sea salt", + "roasting chickens", + "cucumber" + ] + }, + { + "id": 24756, + "cuisine": "french", + "ingredients": [ + "active dry yeast", + "cornmeal", + "salt", + "cooking spray", + "bread flour", + "warm water", + "all-purpose flour" + ] + }, + { + "id": 40170, + "cuisine": "mexican", + "ingredients": [ + "catfish fillets", + "minced garlic", + "red bell pepper", + "pico de gallo", + "flour tortillas", + "fajita seasoning mix", + "low sodium soy sauce", + "olive oil", + "onions", + "green bell pepper", + "jalapeno chilies", + "plum tomatoes" + ] + }, + { + "id": 17548, + "cuisine": "indian", + "ingredients": [ + "unsalted butter", + "chopped onion", + "chopped garlic", + "white distilled vinegar", + "vegetable oil", + "serrano chile", + "plain yogurt", + "peeled fresh ginger", + "ground coriander", + "chicken", + "cayenne", + "salt", + "ground turmeric" + ] + }, + { + "id": 27259, + "cuisine": "mexican", + "ingredients": [ + "shortening", + "vanilla extract", + "eggs", + "milk", + "ground cinnamon", + "molasses", + "all-purpose flour", + "brown sugar", + "baking soda" + ] + }, + { + "id": 48082, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "salt", + "sugar", + "lemon", + "water", + "whipping cream", + "ladyfingers", + "large eggs", + "fresh lemon juice" + ] + }, + { + "id": 44602, + "cuisine": "spanish", + "ingredients": [ + "orange", + "seltzer water", + "sugar", + "red wine" + ] + }, + { + "id": 9960, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "tomatillos", + "olive oil", + "fresh lime juice", + "black beans", + "salt", + "Tabasco Green Pepper Sauce", + "chopped cilantro" + ] + }, + { + "id": 24325, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "cooking spray", + "raspberry fruit spread", + "large egg yolks", + "corn starch", + "sugar", + "fresh raspberries", + "chocolate sauce", + "large egg whites", + "raspberry liqueur" + ] + }, + { + "id": 18066, + "cuisine": "italian", + "ingredients": [ + "baking soda", + "vanilla extract", + "baking powder", + "all-purpose flour", + "large eggs", + "salt", + "sugar", + "sweetened coconut flakes", + "whole nutmegs" + ] + }, + { + "id": 41089, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "ground coriander", + "ground cumin", + "red lentils", + "onion powder", + "chopped cilantro fresh", + "garlic powder", + "fresh lemon juice", + "steamed rice", + "sea salt", + "ground turmeric" + ] + }, + { + "id": 30353, + "cuisine": "mexican", + "ingredients": [ + "reduced fat monterey jack cheese", + "corn chips", + "salsa", + "onions", + "avocado", + "cherry tomatoes", + "garlic", + "nonstick spray", + "taco shells", + "chicken breast strips", + "baked tortilla chips", + "canola oil", + "frozen chopped spinach", + "chili powder", + "sweet pepper", + "corn tortillas" + ] + }, + { + "id": 33942, + "cuisine": "italian", + "ingredients": [ + "red chili peppers", + "prawns", + "garlic", + "sun-dried tomatoes", + "sea salt", + "arugula", + "white wine", + "lemon", + "spaghetti", + "tomato purée", + "ground black pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 32007, + "cuisine": "mexican", + "ingredients": [ + "milk", + "ground beef", + "pace picante sauce", + "flour tortillas", + "shredded cheddar cheese", + "condensed tomato soup" + ] + }, + { + "id": 19587, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "garlic powder", + "salt", + "instant rice", + "shredded cheddar cheese", + "chicken breasts", + "ground cumin", + "unbaked pie crusts", + "corn", + "prepar salsa", + "pepper", + "sliced black olives", + "sour cream" + ] + }, + { + "id": 26313, + "cuisine": "thai", + "ingredients": [ + "sugar", + "sweet potatoes", + "red curry paste", + "fish sauce", + "water", + "ginger", + "coconut milk", + "cooked rice", + "baby bok choy", + "boneless skinless chicken breasts", + "red bell pepper", + "coconut oil", + "lime", + "salt", + "snow peas" + ] + }, + { + "id": 37907, + "cuisine": "italian", + "ingredients": [ + "mussels", + "ground black pepper", + "fish stock", + "squid", + "fish fillets", + "roma tomatoes", + "loosely packed fresh basil leaves", + "garlic cloves", + "saffron threads", + "kosher salt", + "red pepper flakes", + "extra-virgin olive oil", + "flat leaf parsley", + "scallops", + "dry white wine", + "littleneck clams", + "shrimp" + ] + }, + { + "id": 39222, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "butter", + "sugar", + "vinegar", + "salt", + "french dressing", + "water", + "worcestershire sauce", + "ketchup", + "ground red pepper", + "fresh lemon juice" + ] + }, + { + "id": 20523, + "cuisine": "italian", + "ingredients": [ + "shredded cheddar cheese", + "quick-cooking oats", + "apple pie filling", + "eggs", + "lasagna noodles", + "all-purpose flour", + "white sugar", + "brown sugar", + "ricotta cheese", + "margarine", + "ground cinnamon", + "ground nutmeg", + "almond extract", + "sour cream" + ] + }, + { + "id": 33044, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "chorizo", + "vegetable oil", + "white sugar", + "tomato sauce", + "taco seasoning mix", + "corn tortillas", + "unsweetened cocoa powder", + "green chile", + "water", + "all-purpose flour", + "dried oregano", + "cotija", + "sliced black olives", + "onions" + ] + }, + { + "id": 31204, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "heavy cream", + "thick-cut bacon", + "morel", + "bow-tie pasta", + "garlic chives", + "salt", + "fresh peas", + "freshly ground pepper" + ] + }, + { + "id": 24587, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "plum tomatoes", + "whitefish fillets", + "basil leaves", + "salt", + "pinenuts", + "cooking spray", + "crushed red pepper", + "ground black pepper", + "orzo", + "garlic cloves" + ] + }, + { + "id": 24747, + "cuisine": "southern_us", + "ingredients": [ + "egg substitute", + "salt", + "dried oregano", + "reduced fat sharp cheddar cheese", + "zucchini", + "freshly ground pepper", + "yellow squash", + "chopped onion", + "vegetable oil cooking spray", + "1% low-fat milk", + "fresh parsley" + ] + }, + { + "id": 38152, + "cuisine": "chinese", + "ingredients": [ + "baking powder", + "evaporated milk", + "white sugar", + "cooking oil", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 12291, + "cuisine": "spanish", + "ingredients": [ + "kale", + "white beans", + "onions", + "dry white wine", + "carrots", + "potatoes", + "garlic cloves", + "chicken broth", + "vegetable oil", + "smoked chorizo" + ] + }, + { + "id": 42054, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "tortilla chips", + "dried oregano", + "black pepper", + "salt", + "baby carrots", + "lime juice", + "salsa", + "chopped cilantro", + "low-fat plain yogurt", + "cilantro", + "green chilies", + "ground cumin" + ] + }, + { + "id": 20349, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "cilantro", + "adobo sauce", + "avocado", + "lime", + "sweet potatoes", + "salt", + "taco shells", + "serrano peppers", + "garlic", + "onions", + "tomatoes", + "honey", + "guacamole", + "sauce" + ] + }, + { + "id": 22332, + "cuisine": "southern_us", + "ingredients": [ + "dough", + "sugar", + "bourbon whiskey", + "salt", + "candied orange peel", + "unsalted butter", + "whipping cream", + "grated orange peel", + "large eggs", + "vanilla extract", + "pecan halves", + "golden brown sugar", + "light corn syrup" + ] + }, + { + "id": 4191, + "cuisine": "indian", + "ingredients": [ + "hamburger buns", + "radicchio", + "ground red pepper", + "ground mustard", + "red bell pepper", + "ground cumin", + "minced garlic", + "finely chopped onion", + "lamb shoulder", + "fresh lemon juice", + "chopped fresh mint", + "olive oil", + "cooking spray", + "greek style plain yogurt", + "ground cardamom", + "ground turmeric", + "kosher salt", + "ground black pepper", + "shallots", + "ground coriander", + "whole nutmegs" + ] + }, + { + "id": 769, + "cuisine": "italian", + "ingredients": [ + "sugar", + "balsamic vinegar", + "fresh oregano", + "plum tomatoes", + "olive oil", + "crushed red pepper", + "bay leaf", + "minced garlic", + "basil", + "chopped onion", + "fresh basil", + "ground black pepper", + "salt", + "oregano" + ] + }, + { + "id": 47655, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "olive oil", + "penne", + "arugula", + "fresh basil", + "garlic cloves", + "fresh marjoram", + "large shrimp" + ] + }, + { + "id": 2240, + "cuisine": "irish", + "ingredients": [ + "egg whites", + "butter", + "grated lemon zest", + "light brown sugar", + "golden raisins", + "salt", + "whiskey", + "egg yolks", + "lemon", + "confectioners sugar", + "ground cloves", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 33894, + "cuisine": "italian", + "ingredients": [ + "eggs", + "egg yolks", + "diced ham", + "olive oil", + "linguine", + "onions", + "pepper", + "dry white wine", + "fresh parsley", + "parmesan cheese", + "garlic", + "frozen peas" + ] + }, + { + "id": 48202, + "cuisine": "japanese", + "ingredients": [ + "water", + "garlic", + "eggs", + "green onions", + "corn starch", + "dashi", + "salt", + "soy sauce", + "ginger" + ] + }, + { + "id": 41828, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "onions", + "littleneck clams", + "freshly ground pepper", + "dry white wine", + "salt", + "linguine", + "fresh parsley" + ] + }, + { + "id": 29543, + "cuisine": "japanese", + "ingredients": [ + "gari", + "boneless skinless chicken", + "sugar", + "cilantro", + "onions", + "sake", + "short-grain rice", + "oil", + "soy sauce", + "salt" + ] + }, + { + "id": 14043, + "cuisine": "italian", + "ingredients": [ + "bananas", + "salt", + "sugar", + "heavy cream", + "large eggs", + "peanuts", + "vanilla" + ] + }, + { + "id": 322, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "red curry paste", + "bamboo shoots", + "water", + "oil", + "palm sugar", + "red bell pepper", + "boneless skinless chicken breasts", + "coconut milk" + ] + }, + { + "id": 49596, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "bell pepper", + "garlic", + "cumin seed", + "cinnamon sticks", + "grape tomatoes", + "garam masala", + "crushed red pepper flakes", + "salt", + "green beans", + "onions", + "fresh ginger", + "seeds", + "curry", + "carrots", + "coconut milk", + "water", + "potatoes", + "button mushrooms", + "green chilies", + "mustard seeds", + "ground turmeric" + ] + }, + { + "id": 3156, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "salt", + "tamarind", + "urad dal", + "mustard seeds", + "water", + "sesame oil", + "cilantro leaves", + "chana dal", + "garlic", + "jeera" + ] + }, + { + "id": 23587, + "cuisine": "italian", + "ingredients": [ + "black olives", + "pepperoni slices", + "italian salad dressing", + "rotini", + "mozzarella cheese" + ] + }, + { + "id": 8221, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "flour tortillas", + "pickled jalapenos", + "seasoned black beans", + "Tabasco Green Pepper Sauce", + "chopped cilantro", + "fresh corn", + "chopped tomatoes" + ] + }, + { + "id": 21758, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "thai basil", + "sea salt", + "coconut milk", + "corn", + "Sriracha", + "red curry paste", + "fresh cilantro", + "ground pepper", + "garlic", + "fresh lime juice", + "chicken stock", + "olive oil", + "jalapeno chilies", + "yellow onion" + ] + }, + { + "id": 48638, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vanilla wafers", + "vanilla pudding", + "bananas", + "sweetened condensed milk", + "whipped cream" + ] + }, + { + "id": 38916, + "cuisine": "mexican", + "ingredients": [ + "tequila", + "coarse salt", + "lime", + "orange liqueur", + "limeade" + ] + }, + { + "id": 33373, + "cuisine": "vietnamese", + "ingredients": [ + "bean threads", + "large egg yolks", + "thai chile", + "garlic cloves", + "wood ear mushrooms", + "black pepper", + "vegetable oil", + "frozen spring roll wrappers", + "pork shoulder", + "sugar", + "shell-on shrimp", + "salt", + "carrots", + "asian fish sauce", + "warm water", + "shallots", + "rice vinegar", + "fresh lime juice" + ] + }, + { + "id": 5325, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "chili powder", + "poblano chiles", + "avocado", + "quinoa", + "purple onion", + "cumin", + "cheddar cheese", + "cilantro", + "tomato soup", + "fontina cheese", + "jalapeno chilies", + "red bell pepper" + ] + }, + { + "id": 37683, + "cuisine": "thai", + "ingredients": [ + "base", + "butter", + "carrots", + "molasses", + "peeled fresh ginger", + "jalape", + "ground cumin", + "pork tenderloin", + "large garlic cloves", + "chopped cilantro fresh", + "reduced sodium soy sauce", + "vegetable oil", + "orange juice" + ] + }, + { + "id": 33702, + "cuisine": "chinese", + "ingredients": [ + "water", + "dark sesame oil", + "fish sauce", + "chicken breast halves", + "shiitake mushroom caps", + "lo mein noodles", + "garlic cloves", + "white pepper", + "vegetable oil", + "sliced green onions" + ] + }, + { + "id": 36133, + "cuisine": "mexican", + "ingredients": [ + "salt", + "chopped cilantro", + "garlic cloves", + "oil", + "serrano chile", + "lime juice", + "shrimp" + ] + }, + { + "id": 44633, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "balsamic vinegar", + "Italian bread", + "olive oil", + "salt", + "capers", + "purple onion", + "tomatoes", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 11430, + "cuisine": "chinese", + "ingredients": [ + "cooking spray", + "garlic cloves", + "low sodium soy sauce", + "rice vinegar", + "boneless skinless chicken breast halves", + "light brown sugar", + "crushed red pepper", + "fresh lime juice", + "sake", + "dark sesame oil" + ] + }, + { + "id": 36224, + "cuisine": "chinese", + "ingredients": [ + "pea shoots", + "garlic", + "sesame oil", + "corn starch", + "black pepper", + "salt", + "chicken broth", + "vegetable oil", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 35335, + "cuisine": "chinese", + "ingredients": [ + "water chestnuts", + "salt", + "ground ginger", + "dry white wine", + "corn starch", + "green onions", + "peanut oil", + "scallops", + "clam juice", + "ground cayenne pepper" + ] + }, + { + "id": 4551, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "white pepper", + "rice wine", + "salt", + "soy sauce", + "green onions", + "wonton wrappers", + "baby bok choy", + "fresh ginger", + "sesame oil", + "chicken stock", + "black pepper", + "boneless skinless chicken breasts", + "ginger" + ] + }, + { + "id": 25996, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "water", + "coriander seeds", + "boneless skinless chicken breasts", + "vegetable oil", + "cilantro leaves", + "thai green curry paste", + "black peppercorns", + "lime", + "lemon grass", + "shallots", + "yellow bell pepper", + "cumin seed", + "onions", + "kaffir lime leaves", + "lemongrass", + "thai basil", + "shrimp paste", + "sea salt", + "green chilies", + "galangal", + "unsweetened coconut milk", + "green bell pepper", + "fresh ginger", + "cilantro stems", + "lime wedges", + "cilantro sprigs", + "garlic cloves" + ] + }, + { + "id": 36208, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "low-fat mozzarella cheese", + "low fat cream of celery soup", + "garlic", + "dried oregano", + "condensed cream of mushroom soup", + "boneless skinless chicken breast halves", + "water", + "chopped onion" + ] + }, + { + "id": 43939, + "cuisine": "italian", + "ingredients": [ + "butter", + "all-purpose flour", + "powdered sugar", + "Dutch-processed cocoa powder", + "vanilla", + "hazelnuts", + "salt" + ] + }, + { + "id": 26648, + "cuisine": "italian", + "ingredients": [ + "sweet vermouth", + "campari", + "gin", + "ice cubes", + "orange zest" + ] + }, + { + "id": 37028, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "all-purpose flour", + "ground cinnamon", + "vegetable oil", + "large marshmallows", + "sugar", + "cornflake cereal", + "sweet potatoes", + "ground allspice" + ] + }, + { + "id": 21735, + "cuisine": "greek", + "ingredients": [ + "lemon juice", + "olive oil", + "hot cherry pepper", + "greek yogurt", + "feta cheese" + ] + }, + { + "id": 28363, + "cuisine": "italian", + "ingredients": [ + "milk", + "grated parmesan cheese", + "all-purpose flour", + "frozen spinach", + "asparagus", + "large garlic cloves", + "olive oil", + "ricotta cheese", + "shredded mozzarella cheese", + "pesto", + "lasagna noodles", + "salt" + ] + }, + { + "id": 7630, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "sugar", + "sweet potatoes", + "vanilla extract", + "pecan halves", + "large eggs", + "2% reduced-fat milk", + "whiskey", + "eggs", + "unsalted butter", + "butter", + "dark brown sugar", + "challa", + "brown sugar", + "flour", + "heavy cream" + ] + }, + { + "id": 14938, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "butter", + "cayenne pepper", + "grated parmesan cheese", + "salt", + "cream cheese", + "black pepper", + "garlic", + "crabmeat", + "half & half", + "all-purpose flour" + ] + }, + { + "id": 17949, + "cuisine": "mexican", + "ingredients": [ + "water", + "zucchini", + "all-purpose flour", + "sugar", + "dried thyme", + "heavy cream", + "freshly ground pepper", + "white onion", + "unsalted butter", + "sea salt", + "eggs", + "milk", + "poblano chilies", + "frozen corn kernels" + ] + }, + { + "id": 36893, + "cuisine": "mexican", + "ingredients": [ + "sliced tomatoes", + "refried beans", + "carnitas", + "chiles", + "asadero", + "papalo", + "mayonaise", + "hass avocado", + "iceberg lettuce", + "buns", + "onion rings", + "canola oil" + ] + }, + { + "id": 30463, + "cuisine": "indian", + "ingredients": [ + "cold water", + "ground cardamom", + "nonfat yogurt", + "ice cubes", + "mango", + "splenda" + ] + }, + { + "id": 13457, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "butternut squash", + "butter", + "all-purpose flour", + "olive oil", + "lasagna noodles, cooked and drained", + "baby spinach", + "salt", + "parmigiano-reggiano cheese", + "reduced fat milk", + "shallots", + "asiago", + "garlic cloves", + "dried thyme", + "cooking spray", + "balsamic vinegar", + "crushed red pepper" + ] + }, + { + "id": 24390, + "cuisine": "russian", + "ingredients": [ + "ground black pepper", + "salt", + "pepper", + "pork loin", + "thyme", + "black peppercorns", + "bay leaves", + "oil", + "milk", + "garlic", + "dried rosemary" + ] + }, + { + "id": 13724, + "cuisine": "greek", + "ingredients": [ + "pepper", + "leg of lamb", + "salt", + "pesto", + "garlic cloves", + "garlic" + ] + }, + { + "id": 8055, + "cuisine": "japanese", + "ingredients": [ + "firm tofu", + "white miso", + "konbu", + "water", + "scallions", + "dried bonito flakes" + ] + }, + { + "id": 43806, + "cuisine": "indian", + "ingredients": [ + "cooking oil", + "mustard seeds", + "tomatoes", + "salt", + "dried red chile peppers", + "chile pepper", + "asafoetida powder", + "split black lentils", + "cilantro leaves", + "onions" + ] + }, + { + "id": 3201, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cherry tomatoes", + "cilantro", + "penne pasta", + "corn", + "fat free milk", + "salt", + "cumin", + "pepper", + "orange bell pepper", + "garlic", + "taco seasoning", + "avocado", + "lime", + "green onions", + "greek style plain yogurt" + ] + }, + { + "id": 6017, + "cuisine": "korean", + "ingredients": [ + "chiles", + "reduced sodium soy sauce", + "ginger", + "onions", + "silken tofu", + "green onions", + "kimchi", + "chopped garlic", + "pepper", + "vegetable oil", + "toasted sesame oil", + "reduced sodium chicken broth", + "pork ribs", + "salt", + "toasted sesame seeds" + ] + }, + { + "id": 6825, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "cajun seasoning", + "onions", + "salt and ground black pepper", + "celery", + "green onions", + "fresh parsley", + "crawfish", + "butter", + "condensed golden mushroom soup" + ] + }, + { + "id": 2729, + "cuisine": "brazilian", + "ingredients": [ + "green bell pepper", + "ground black pepper", + "purple onion", + "flat leaf parsley", + "corn", + "raisins", + "garlic cloves", + "water", + "butter", + "salt", + "long grain white rice", + "olive oil", + "bacon", + "red bell pepper" + ] + }, + { + "id": 32727, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic", + "chopped cilantro fresh", + "American cheese", + "chili powder", + "scallions", + "ground cumin", + "evaporated milk", + "cayenne pepper", + "monterey jack", + "kosher salt", + "poblano chilies", + "corn starch" + ] + }, + { + "id": 37486, + "cuisine": "vietnamese", + "ingredients": [ + "table salt", + "spring onions", + "vermicelli noodles", + "chicken", + "eggs", + "Vietnamese coriander", + "squid", + "onions", + "sugar", + "cilantro leaves", + "dried shrimp", + "fish sauce", + "pepper", + "ham", + "pork bones" + ] + }, + { + "id": 37187, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "shallots", + "celery", + "seafood seasoning", + "garlic cloves", + "grits", + "orange bell pepper", + "butter", + "onions", + "shrimp stock", + "dry white wine", + "shrimp" + ] + }, + { + "id": 42796, + "cuisine": "jamaican", + "ingredients": [ + "beef", + "yams", + "pepper", + "okra", + "water", + "scallions", + "black pepper", + "callaloo", + "coconut milk" + ] + }, + { + "id": 21576, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "malt vinegar", + "clove", + "bay leaves", + "onions", + "ground black pepper", + "cinnamon sticks", + "tentacles", + "dry red wine" + ] + }, + { + "id": 20439, + "cuisine": "thai", + "ingredients": [ + "clove", + "chili flakes", + "lime juice", + "ground nutmeg", + "chicken breasts", + "purple onion", + "oil", + "galangal", + "tomatoes", + "red chili peppers", + "peanuts", + "potatoes", + "sticky rice", + "cardamom pods", + "coconut milk", + "cold water", + "ground cinnamon", + "soy sauce", + "thai basil", + "shrimp paste", + "star anise", + "cumin seed", + "lime leaves", + "chicken stock", + "fish sauce", + "lemongrass", + "palm sugar", + "vegetable oil", + "roasted peanuts", + "garlic cloves", + "white peppercorns" + ] + }, + { + "id": 38304, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "all-purpose flour", + "honey", + "buttermilk", + "white cornmeal", + "baking powder", + "sour cream", + "baking soda", + "salt" + ] + }, + { + "id": 19094, + "cuisine": "thai", + "ingredients": [ + "sugar", + "carrots", + "fresh lime juice", + "crushed red pepper", + "cucumber", + "peanuts", + "Thai fish sauce", + "chopped fresh mint", + "purple onion", + "red bell pepper" + ] + }, + { + "id": 37164, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "red pepper", + "chicken breasts", + "garlic", + "curly kale", + "sesame oil", + "lemon grass", + "ginger" + ] + }, + { + "id": 19568, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "balsamic vinegar", + "green beans", + "beefsteak tomatoes", + "anchovy fillets", + "minced garlic", + "extra-virgin olive oil" + ] + }, + { + "id": 27405, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "sugar", + "garlic cloves", + "salt", + "loosely packed fresh basil leaves", + "plum tomatoes" + ] + }, + { + "id": 22467, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "sugar", + "cucumber", + "dried dill", + "vinegar", + "sour cream" + ] + }, + { + "id": 18049, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "water", + "kasuri methi", + "cumin seed", + "onions", + "red chili peppers", + "masoor dal", + "cilantro leaves", + "garlic cloves", + "arhar dal", + "tomatoes", + "cream", + "ginger", + "green chilies", + "ghee", + "asafoetida", + "garam masala", + "salt", + "oil", + "ground turmeric" + ] + }, + { + "id": 15418, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "heavy cream", + "pepper", + "lemon", + "lemon juice", + "nutmeg", + "chives", + "garlic", + "penne", + "butter", + "salt" + ] + }, + { + "id": 43065, + "cuisine": "italian", + "ingredients": [ + "jack cheese", + "butter", + "canned tomatoes", + "grated parmesan cheese", + "garlic", + "fresh basil leaves", + "fresh cheese", + "tortellini", + "dry bread crumbs", + "eggplant", + "vegetable broth", + "onions" + ] + }, + { + "id": 21538, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vanilla extract", + "ground cinnamon", + "large eggs", + "whole kernel corn, drain", + "ground nutmeg", + "all-purpose flour", + "sugar", + "butter", + "cornmeal" + ] + }, + { + "id": 42381, + "cuisine": "mexican", + "ingredients": [ + "butter", + "cream cheese", + "chicken breasts", + "cilantro", + "garlic salt", + "flour tortillas", + "diced tomatoes", + "shredded cheese", + "chili powder", + "whipping cream", + "cumin" + ] + }, + { + "id": 21782, + "cuisine": "british", + "ingredients": [ + "tomato paste", + "olive oil", + "fresh thyme leaves", + "fat", + "kosher salt", + "unsalted butter", + "all-purpose flour", + "carrots", + "dried porcini mushrooms", + "ground black pepper", + "russet potatoes", + "chuck steaks", + "celery ribs", + "milk", + "dry white wine", + "beef broth", + "onions" + ] + }, + { + "id": 39803, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "corn tortillas", + "olive oil", + "monterey jack", + "kosher salt", + "chopped cilantro fresh", + "sharp cheddar cheese", + "sliced green onions" + ] + }, + { + "id": 32644, + "cuisine": "mexican", + "ingredients": [ + "taco sauce", + "taco seasoning", + "ground pepper", + "chicken", + "reduced fat cream cheese", + "oil", + "green bell pepper", + "shells" + ] + }, + { + "id": 37726, + "cuisine": "moroccan", + "ingredients": [ + "tomato purée", + "merguez sausage", + "red wine vinegar", + "salt", + "sweet paprika", + "ground cumin", + "olive oil", + "egg yolks", + "white wine vinegar", + "ground caraway", + "lemon juice", + "ground black pepper", + "vegetable oil", + "purple onion", + "rolls", + "couscous", + "red chili peppers", + "dijon mustard", + "extra-virgin olive oil", + "cilantro leaves", + "garlic cloves" + ] + }, + { + "id": 38860, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "dijon mustard", + "fresh oregano", + "red wine vinegar", + "garlic cloves", + "ground black pepper", + "salt" + ] + }, + { + "id": 24392, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "champagne", + "lemon", + "lemon slices", + "peach nectar", + "fresh mint" + ] + }, + { + "id": 43249, + "cuisine": "french", + "ingredients": [ + "madeira wine", + "butter", + "beef tenderloin steaks", + "crumbled blue cheese", + "dry bread crumbs", + "reduced sodium beef broth", + "chives", + "sauce", + "pepper", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 26525, + "cuisine": "southern_us", + "ingredients": [ + "hot water", + "self-rising cornmeal" + ] + }, + { + "id": 31645, + "cuisine": "chinese", + "ingredients": [ + "tomatoes", + "sambal olek", + "onions", + "sugar", + "white wine vinegar", + "red chili peppers", + "chinese cabbage", + "olive oil", + "scallions" + ] + }, + { + "id": 2826, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "chopped pecans", + "saltines", + "baking powder", + "egg whites", + "white sugar", + "cream sweeten whip", + "vanilla extract" + ] + }, + { + "id": 1297, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "ground red pepper", + "chopped pecans", + "powdered sugar", + "salt", + "sorghum", + "bourbon whiskey", + "unsweetened cocoa powder", + "ground nutmeg", + "vanilla wafers" + ] + }, + { + "id": 26137, + "cuisine": "italian", + "ingredients": [ + "Frangelico", + "brewed coffee", + "ground cinnamon", + "whipped topping" + ] + }, + { + "id": 8615, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "mirin", + "garlic", + "beef rib short", + "soy sauce", + "ground black pepper", + "vegetable oil", + "rice", + "lettuce", + "sesame seeds", + "spring onions", + "salt", + "soy bean paste", + "granulated sugar", + "chilli paste", + "dark sesame oil" + ] + }, + { + "id": 11856, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "ground cumin", + "chili powder", + "long-grain rice", + "vegetable oil", + "onions", + "water", + "salt" + ] + }, + { + "id": 17210, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "butter", + "milk", + "firmly packed brown sugar", + "corn syrup", + "granulated sugar" + ] + }, + { + "id": 7059, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "corn starch", + "water", + "dashi powder", + "plain flour", + "Japanese soy sauce" + ] + }, + { + "id": 25973, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "poblano chilies", + "fresh lime juice", + "tomatoes", + "green onions", + "frozen corn kernels", + "red potato", + "watercress", + "garlic cloves", + "olive oil", + "yellow bell pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 35319, + "cuisine": "french", + "ingredients": [ + "fresh chives", + "whole milk ricotta cheese", + "fresh tarragon", + "fresh lemon juice", + "frozen pastry puff sheets", + "butter", + "gruyere cheese", + "fresh chervil", + "green onions", + "Italian parsley leaves", + "crème fraîche", + "large egg yolks", + "fresh thyme leaves", + "extra-virgin olive oil", + "wild mushrooms" + ] + }, + { + "id": 1581, + "cuisine": "indian", + "ingredients": [ + "table salt", + "garam masala", + "cayenne pepper", + "chopped cilantro fresh", + "crushed tomatoes", + "vegetable oil", + "garlic cloves", + "serrano chile", + "sugar", + "boneless skinless chicken breasts", + "ground coriander", + "plain whole-milk yogurt", + "tomato paste", + "fresh ginger", + "heavy cream", + "onions", + "ground cumin" + ] + }, + { + "id": 17792, + "cuisine": "mexican", + "ingredients": [ + "water", + "zucchini", + "salt", + "pearl barley", + "onions", + "avocado", + "diced green chilies", + "garlic", + "white beans", + "fat", + "oregano", + "lime", + "chili powder", + "cilantro leaves", + "oil", + "bone in skin on chicken thigh", + "pepper", + "poblano peppers", + "shredded sharp cheddar cheese", + "green pepper", + "greek yogurt", + "cumin" + ] + }, + { + "id": 11440, + "cuisine": "italian", + "ingredients": [ + "semolina flour", + "flour", + "warm water", + "salt", + "active dry yeast", + "sugar", + "extra-virgin olive oil" + ] + }, + { + "id": 26220, + "cuisine": "greek", + "ingredients": [ + "tomato sauce", + "green onions", + "feta cheese crumbles", + "sliced black olives", + "diced tomatoes", + "chopped green bell pepper", + "shredded mozzarella cheese", + "dried basil", + "whole wheat rotini pasta", + "dried oregano" + ] + }, + { + "id": 34582, + "cuisine": "spanish", + "ingredients": [ + "stock", + "ground black pepper", + "sour cherries", + "kirsch", + "mild olive oil", + "dry red wine", + "carrots", + "onions", + "rosemary sprigs", + "dried apricot", + "garlic cloves", + "bay leaf", + "boneless pork shoulder", + "pearl onions", + "salt", + "cinnamon sticks" + ] + }, + { + "id": 41669, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "roma tomatoes", + "garlic", + "avocado", + "fresh cilantro", + "chili powder", + "boneless skinless chicken breast halves", + "lime juice", + "crumbs", + "purple onion", + "mayonaise", + "lime", + "sea salt", + "chopped cilantro fresh" + ] + }, + { + "id": 27076, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "chili powder", + "onions", + "cooked rice", + "garam masala", + "salt", + "neutral oil", + "water", + "garlic", + "tomato paste", + "pepper", + "ginger", + "large shrimp" + ] + }, + { + "id": 14675, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "caster sugar", + "vegetable oil", + "glaze", + "soy sauce", + "lemon grass", + "garlic", + "red chili peppers", + "honey", + "ginger", + "chicken", + "pork belly", + "rice wine", + "salt" + ] + }, + { + "id": 49155, + "cuisine": "italian", + "ingredients": [ + "white sugar", + "egg whites", + "toasted slivered almonds" + ] + }, + { + "id": 10987, + "cuisine": "mexican", + "ingredients": [ + "colby jack cheese", + "cayenne pepper", + "chicken", + "ground black pepper", + "salt", + "sour cream", + "garlic powder", + "chili powder", + "enchilada sauce", + "ground cumin", + "green onions", + "frozen corn", + "corn tortillas" + ] + }, + { + "id": 22675, + "cuisine": "italian", + "ingredients": [ + "1% low-fat cottage cheese", + "low-fat marinara sauce", + "corn starch", + "spinach", + "large egg whites", + "ground nutmeg", + "dried basil", + "fresh parmesan cheese", + "water", + "won ton wrappers", + "garlic cloves" + ] + }, + { + "id": 13100, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "garlic", + "crushed red pepper flakes", + "green beans", + "sweet chili sauce", + "salt", + "vegetable broth", + "canola oil" + ] + }, + { + "id": 48236, + "cuisine": "italian", + "ingredients": [ + "canned low sodium chicken broth", + "veal", + "peas", + "olive oil", + "butter", + "onions", + "dry vermouth", + "mint leaves", + "salt", + "fettucine", + "ground black pepper", + "heavy cream" + ] + }, + { + "id": 16899, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "rice noodles", + "sauce", + "beansprouts", + "eggs", + "green onions", + "garlic", + "chow mein noodles", + "chicken", + "fish sauce", + "marinade", + "rice vinegar", + "corn starch", + "chicken stock", + "lime", + "vegetable oil", + "garlic chili sauce", + "chopped cilantro" + ] + }, + { + "id": 26721, + "cuisine": "italian", + "ingredients": [ + "sugar", + "tomatoes with juice", + "dried oregano", + "dried basil", + "salt", + "pepper", + "garlic", + "olive oil", + "onions" + ] + }, + { + "id": 20847, + "cuisine": "mexican", + "ingredients": [ + "Italian parsley leaves", + "fresh lemon juice", + "dijon mustard", + "anchovy fillets", + "green onions", + "garlic cloves", + "capers", + "extra-virgin olive oil", + "grated lemon peel" + ] + }, + { + "id": 34819, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "green pepper", + "skirt steak", + "tortillas", + "chipotle peppers", + "olive oil", + "white mushrooms", + "ranch dressing", + "onions" + ] + }, + { + "id": 7055, + "cuisine": "french", + "ingredients": [ + "sugar", + "half & half", + "dark chocolate", + "instant espresso powder", + "benne seed", + "large eggs", + "brandy", + "unsweetened cocoa powder" + ] + }, + { + "id": 47997, + "cuisine": "southern_us", + "ingredients": [ + "corn mix muffin", + "nonfat milk", + "low-fat cottage cheese", + "large eggs", + "shredded cheddar cheese" + ] + }, + { + "id": 24069, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "onions", + "soy sauce", + "sesame oil", + "short rib", + "white vinegar", + "water", + "white sugar", + "black pepper", + "dark brown sugar" + ] + }, + { + "id": 19449, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "ground black pepper", + "hot sauce", + "canned black beans", + "tomatillos", + "vidalia onion", + "finely chopped fresh parsley", + "fresh lime juice", + "corn kernels", + "salt" + ] + }, + { + "id": 10531, + "cuisine": "indian", + "ingredients": [ + "soy sauce", + "capsicum", + "ginger", + "onions", + "water", + "sesame oil", + "salt", + "pepper", + "chili powder", + "garlic", + "sugar", + "vinegar", + "boneless chicken", + "oil" + ] + }, + { + "id": 2339, + "cuisine": "mexican", + "ingredients": [ + "water", + "white hominy", + "pork roast", + "pepper", + "lime", + "shredded cabbage", + "ground cumin", + "fresh cilantro", + "finely chopped onion", + "corn tortillas", + "minced garlic", + "olive oil", + "salt" + ] + }, + { + "id": 26142, + "cuisine": "french", + "ingredients": [ + "sea salt", + "ground black pepper", + "unsalted butter", + "onions" + ] + }, + { + "id": 6190, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "hoisin sauce", + "unsalted dry roast peanuts", + "corn starch", + "soy sauce", + "sesame oil", + "scallions", + "red chili peppers", + "boneless skinless chicken breasts", + "peanut oil", + "chinese black vinegar", + "chinese rice wine", + "fresh ginger", + "ground sichuan pepper", + "garlic cloves" + ] + }, + { + "id": 2276, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "jalapeno chilies", + "diced tomatoes", + "ground cumin", + "chicken broth", + "fresh cilantro", + "chili powder", + "frozen corn", + "black beans", + "boneless skinless chicken breasts", + "salt", + "biscuit baking mix", + "olive oil", + "2% reduced-fat milk", + "onions" + ] + }, + { + "id": 46727, + "cuisine": "mexican", + "ingredients": [ + "onions", + "beef", + "seasoning", + "bell pepper" + ] + }, + { + "id": 39532, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "chili powder", + "chopped onion", + "ground black pepper", + "salsa", + "chopped green bell pepper", + "dry bread crumbs", + "whole wheat flour", + "salt", + "carrots" + ] + }, + { + "id": 10024, + "cuisine": "french", + "ingredients": [ + "quatre épices", + "shallots", + "muscovy", + "thyme", + "kosher salt", + "garlic", + "clove", + "bay leaves", + "rendered duck fat" + ] + }, + { + "id": 9728, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "hard-boiled egg", + "onions", + "vinegar", + "salt", + "water", + "garlic", + "soy sauce", + "potatoes", + "oil" + ] + }, + { + "id": 38012, + "cuisine": "southern_us", + "ingredients": [ + "purple onion", + "plum tomatoes", + "jalapeno chilies", + "fresh lime juice", + "extra-virgin olive oil", + "chopped cilantro fresh", + "pepper", + "salt" + ] + }, + { + "id": 16177, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "fresh parmesan cheese", + "part-skim ricotta cheese", + "polenta", + "water", + "diced tomatoes", + "chopped onion", + "black pepper", + "butter", + "salt", + "dried rosemary", + "tomato paste", + "olive oil", + "dry red wine", + "garlic cloves" + ] + }, + { + "id": 21784, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "cilantro", + "tortillas", + "onions", + "olive oil", + "salt", + "raisins", + "chorizo sausage" + ] + }, + { + "id": 42975, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "cracked black pepper", + "cayenne pepper", + "chicken stock", + "red beans", + "steamed brown rice", + "smoked ham hocks", + "beef stock", + "smoked sausage", + "onions", + "green bell pepper", + "grapeseed oil", + "salt" + ] + }, + { + "id": 12473, + "cuisine": "thai", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "coconut milk", + "lime", + "cilantro leaves", + "fresh basil leaves", + "lemongrass", + "garlic", + "bird chile", + "light brown sugar", + "ground black pepper", + "ground coriander", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 12243, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "tortillas", + "salt", + "yellow onion", + "lime", + "brown rice", + "frozen corn", + "cumin", + "black beans", + "cilantro stems", + "cilantro leaves", + "garlic cloves", + "jack", + "vegetable stock", + "salsa" + ] + }, + { + "id": 4497, + "cuisine": "italian", + "ingredients": [ + "lemon", + "fine sea salt", + "extra-virgin olive oil", + "tomatoes", + "garlic", + "crushed red pepper flakes" + ] + }, + { + "id": 11612, + "cuisine": "french", + "ingredients": [ + "olive oil", + "red wine vinegar", + "red bell pepper", + "shallots", + "cayenne pepper", + "half & half", + "vegetable broth", + "fresh basil", + "chopped fresh thyme", + "garlic cloves" + ] + }, + { + "id": 2228, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "shredded mozzarella cheese", + "garlic sauce", + "cottage cheese", + "penne pasta" + ] + }, + { + "id": 655, + "cuisine": "greek", + "ingredients": [ + "baby greens", + "extra-virgin olive oil", + "red wine vinegar", + "salt" + ] + }, + { + "id": 48773, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "sea scallops", + "red bell pepper", + "large shrimp", + "mussels", + "water", + "clam juice", + "onions", + "saffron threads", + "tomatoes", + "lobster", + "flat leaf parsley", + "hungarian sweet paprika", + "olive oil", + "large garlic cloves", + "spaghetti" + ] + }, + { + "id": 6645, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "grated nutmeg", + "penne", + "whole milk", + "fresh sage", + "parmigiano reggiano cheese", + "black pepper", + "gorgonzola dolce" + ] + }, + { + "id": 16919, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "sour cream", + "tomatoes", + "taco seasoning mix", + "green olives", + "guacamole", + "taco sauce" + ] + }, + { + "id": 42346, + "cuisine": "chinese", + "ingredients": [ + "spring roll wrappers", + "hoisin sauce", + "yellow onion", + "kosher salt", + "jicama", + "bean curd", + "sugar", + "green leaf lettuce", + "dried shrimp", + "eggs", + "Sriracha", + "garlic", + "canola oil" + ] + }, + { + "id": 45797, + "cuisine": "indian", + "ingredients": [ + "butternut squash", + "red pepper", + "curry paste", + "reduced fat coconut milk", + "coriander" + ] + }, + { + "id": 10525, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "flank steak", + "garlic", + "beansprouts", + "fish sauce", + "jalapeno chilies", + "rice noodles", + "beef broth", + "Sriracha", + "lime wedges", + "salt", + "pepper", + "green onions", + "cilantro", + "yellow onion" + ] + }, + { + "id": 15894, + "cuisine": "french", + "ingredients": [ + "waffle", + "blackberries", + "low-fat plain yogurt", + "honey", + "lime", + "raspberries", + "strawberries" + ] + }, + { + "id": 21072, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "broccoli florets", + "peanut butter", + "light brown sugar", + "lime", + "vegetable oil", + "snow peas", + "soy sauce", + "boneless skinless chicken breasts", + "coconut milk", + "chicken broth", + "fresh ginger", + "garlic" + ] + }, + { + "id": 40831, + "cuisine": "southern_us", + "ingredients": [ + "hellmann' or best food real mayonnais", + "sugar", + "carrots", + "green bell pepper", + "lemon juice", + "salt", + "cabbage" + ] + }, + { + "id": 26281, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "kalamata", + "pizza doughs", + "fresh thyme leaves", + "salt", + "sea salt flakes", + "sugar", + "anchovy paste", + "garlic cloves", + "black pepper", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 25712, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "lime", + "ground nutmeg", + "chicken breasts", + "orange juice", + "white vinegar", + "white onion", + "olive oil", + "ground sage", + "cayenne pepper", + "soy sauce", + "dried thyme", + "ground black pepper", + "salt", + "ground cinnamon", + "pepper", + "garlic powder", + "green onions", + "ground allspice" + ] + }, + { + "id": 14314, + "cuisine": "irish", + "ingredients": [ + "vegetable oil", + "red bell pepper", + "baking potatoes", + "green bell pepper", + "onions" + ] + }, + { + "id": 26935, + "cuisine": "italian", + "ingredients": [ + "spinach", + "dried basil", + "cooked bacon", + "chicken broth", + "minced garlic", + "ground black pepper", + "dried parsley", + "pasta", + "tomato sauce", + "garlic powder", + "salt", + "great northern beans", + "water", + "diced tomatoes" + ] + }, + { + "id": 2050, + "cuisine": "french", + "ingredients": [ + "almond flour", + "vanilla extract", + "granulated sugar", + "blanched almonds", + "unsalted butter", + "all-purpose flour", + "kosher salt", + "large eggs" + ] + }, + { + "id": 45661, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "salted roast peanuts", + "carrots", + "soy sauce", + "olive oil", + "duck breast halves", + "rice vinegar", + "chopped cilantro", + "mint", + "lime", + "sesame oil", + "vietnamese fish sauce", + "cucumber", + "black pepper", + "radishes", + "ginger", + "garlic cloves" + ] + }, + { + "id": 8441, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "cooking oil", + "lemon", + "pepper", + "hot dogs", + "salt", + "soy sauce", + "potatoes", + "garlic", + "tomato sauce", + "water", + "bay leaves", + "onions" + ] + }, + { + "id": 48558, + "cuisine": "thai", + "ingredients": [ + "mayonaise", + "red wine vinegar", + "jalapeno chilies", + "garlic paste", + "green onions", + "curry powder", + "chopped cilantro fresh" + ] + }, + { + "id": 28372, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken skinless thigh", + "red pepper", + "eggs", + "rice wine", + "corn starch", + "green onions", + "rice vinegar", + "soy sauce", + "vegetable oil", + "white sugar" + ] + }, + { + "id": 43277, + "cuisine": "italian", + "ingredients": [ + "peeled tomatoes", + "dry white wine", + "rubbed sage", + "yellow corn meal", + "prosciutto", + "all-purpose flour", + "sage", + "olive oil", + "salt", + "chicken thighs", + "water", + "ground black pepper", + "fresh lemon juice" + ] + }, + { + "id": 31116, + "cuisine": "japanese", + "ingredients": [ + "egg whites", + "salt", + "milk", + "cornflour", + "lemon juice", + "cream of tartar", + "egg yolks", + "cream cheese", + "unsalted butter", + "cake flour", + "fine granulated sugar" + ] + }, + { + "id": 7646, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "salt", + "refried beans", + "butter", + "dried oregano", + "flour tortillas", + "ground beef", + "chopped green chilies", + "paprika", + "ground cumin" + ] + }, + { + "id": 46495, + "cuisine": "mexican", + "ingredients": [ + "milk", + "monterey jack", + "cheddar cheese", + "chile pepper", + "eggs", + "evaporated milk", + "tomato sauce", + "all-purpose flour" + ] + }, + { + "id": 34150, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "salt", + "flat leaf parsley", + "water", + "whole milk", + "garlic cloves", + "ground black pepper", + "ground pork", + "Italian bread", + "tomato sauce", + "grated parmesan cheese", + "all-purpose flour", + "ground beef" + ] + }, + { + "id": 37750, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "chili paste", + "ginger", + "kimchi", + "silken tofu", + "miso", + "cooking wine", + "pork belly", + "green onions", + "garlic", + "onions", + "chili flakes", + "water", + "butter", + "juice" + ] + }, + { + "id": 30025, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "diced tomatoes", + "italian seasoning", + "globe eggplant", + "low fat mozzarella", + "salt", + "hot red pepper flakes", + "basil leaves", + "extra-virgin olive oil", + "olive oil", + "large garlic cloves", + "dried oregano" + ] + }, + { + "id": 26838, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "semisweet chocolate", + "vanilla ice cream", + "egg whites", + "hazelnuts", + "whipping cream", + "cream of tartar", + "granulated sugar", + "liqueur" + ] + }, + { + "id": 35231, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "cheddar cheese", + "cooking spray", + "garlic powder", + "chives", + "ice cubes", + "large eggs", + "grits" + ] + }, + { + "id": 41895, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "lime wedges", + "garlic cloves", + "large shrimp", + "chicken stock", + "lime", + "extra-virgin olive oil", + "yukon gold", + "ancho chili ground pepper", + "cilantro sprigs", + "chopped cilantro", + "fresh tomatoes", + "sweet potatoes", + "salt", + "onions" + ] + }, + { + "id": 31191, + "cuisine": "mexican", + "ingredients": [ + "pepper jack", + "onions", + "diced tomatoes", + "frozen bread dough", + "corn", + "ground turkey" + ] + }, + { + "id": 39041, + "cuisine": "mexican", + "ingredients": [ + "green tomatoes", + "jalapeno chilies", + "garlic cloves", + "pepper", + "diced tomatoes", + "green onions", + "chopped cilantro fresh" + ] + }, + { + "id": 24165, + "cuisine": "spanish", + "ingredients": [ + "asparagus", + "serrano ham", + "eggs", + "salt", + "peas", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 31950, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "canned black beans", + "diced tomatoes", + "pinto beans", + "ground cumin", + "green bell pepper", + "olive oil", + "chickpeas", + "dried oregano", + "tomato sauce", + "chili powder", + "garlic cloves", + "iceberg lettuce", + "reduced fat sharp cheddar cheese", + "taco shells", + "salsa", + "red bell pepper" + ] + }, + { + "id": 342, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "soy milk", + "vegetable oil", + "grated lemon zest", + "ground round", + "peeled fresh ginger", + "salt", + "corn starch", + "red chili peppers", + "green onions", + "all-purpose flour", + "Thai fish sauce", + "fresh basil", + "water chestnuts", + "light coconut milk", + "dark sesame oil" + ] + }, + { + "id": 16591, + "cuisine": "mexican", + "ingredients": [ + "quinoa", + "avocado", + "tortilla chips", + "salsa", + "mozzarella cheese" + ] + }, + { + "id": 30555, + "cuisine": "british", + "ingredients": [ + "pepper", + "salt", + "cod", + "flour", + "oil", + "garlic powder", + "beer", + "eggs", + "paprika", + "fish" + ] + }, + { + "id": 26602, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "green onions", + "fresh lime juice", + "white pepper", + "salt", + "canola oil", + "sugar", + "white wine vinegar", + "coleslaw", + "jalapeno chilies", + "red bell pepper" + ] + }, + { + "id": 23226, + "cuisine": "french", + "ingredients": [ + "all-purpose flour", + "unsalted butter", + "olives", + "confectioners sugar", + "extra-virgin olive oil" + ] + }, + { + "id": 46849, + "cuisine": "indian", + "ingredients": [ + "seeds", + "red", + "ground coriander", + "lime", + "lemon", + "salt", + "coriander", + "chili powder", + "garlic", + "chillies", + "nonfat plain greek yogurt", + "ginger", + "skinless chicken breasts", + "ground cumin" + ] + }, + { + "id": 49216, + "cuisine": "vietnamese", + "ingredients": [ + "ground black pepper", + "ground pork", + "shrimp", + "fish sauce", + "mung bean noodles", + "salt", + "crab meat", + "shredded carrots", + "garlic", + "vietnamese rice paper", + "shallots", + "small eggs" + ] + }, + { + "id": 5575, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "parmesan cheese", + "italian seasoning", + "fresh leav spinach", + "garlic powder", + "onions", + "olive oil", + "ricotta cheese", + "tomatoes", + "eggplant", + "garlic" + ] + }, + { + "id": 33868, + "cuisine": "japanese", + "ingredients": [ + "sake", + "water", + "konbu", + "baby bok choy", + "daikon", + "sugar", + "mirin", + "frozen edamame beans", + "soy sauce", + "scallions" + ] + }, + { + "id": 25785, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "provolone cheese", + "grated parmesan cheese", + "onions", + "mozzarella cheese", + "sour cream", + "pasta", + "lean ground beef" + ] + }, + { + "id": 19919, + "cuisine": "filipino", + "ingredients": [ + "chicken broth", + "green onions", + "patis", + "shrimp", + "cabbage", + "ground black pepper", + "lemon", + "carrots", + "onions", + "soy sauce", + "chicken breasts", + "pancit canton", + "green beans", + "shiitake", + "vegetable oil", + "garlic cloves", + "pork shoulder" + ] + }, + { + "id": 22375, + "cuisine": "mexican", + "ingredients": [ + "ground chicken", + "garlic", + "pepper", + "avocado", + "salt" + ] + }, + { + "id": 48783, + "cuisine": "french", + "ingredients": [ + "water", + "bay leaf", + "prunes", + "duck", + "juniper berries", + "thyme sprigs", + "red wine vinegar" + ] + }, + { + "id": 23217, + "cuisine": "french", + "ingredients": [ + "cranberry beans", + "zucchini", + "salt", + "onions", + "tomato paste", + "water", + "garlic", + "green beans", + "plum tomatoes", + "pinenuts", + "bay leaves", + "thyme", + "oregano", + "black pepper", + "potatoes", + "carrots", + "fresh basil leaves" + ] + }, + { + "id": 47912, + "cuisine": "italian", + "ingredients": [ + "pepper", + "cutlet", + "part-skim mozzarella", + "roasted red peppers", + "salt", + "olive oil", + "garlic", + "spinach", + "chicken breasts", + "olive oil spray" + ] + }, + { + "id": 43671, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "chili powder", + "enchilada sauce", + "tomatoes", + "sliced black olives", + "salt", + "ground beef", + "garlic powder", + "onion powder", + "sour cream", + "cheddar cheese", + "green onions", + "rice", + "ground cumin" + ] + }, + { + "id": 46249, + "cuisine": "british", + "ingredients": [ + "white vinegar", + "kosher salt", + "sugar", + "mint leaves" + ] + }, + { + "id": 47598, + "cuisine": "italian", + "ingredients": [ + "cottage cheese", + "white cheddar cheese", + "fresh parsley", + "eggs", + "part-skim mozzarella cheese", + "cream cheese, soften", + "italian seasoning", + "pasta sauce", + "lasagna noodles, cooked and drained", + "ground beef", + "bulk italian sausag", + "green pepper", + "onions" + ] + }, + { + "id": 42801, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "turkey kielbasa", + "cayenne pepper", + "onions", + "ground black pepper", + "fat-free chicken broth", + "medium shrimp", + "olive oil", + "diced tomatoes", + "long-grain rice", + "green bell pepper", + "hot pepper sauce", + "salt", + "fresh parsley" + ] + }, + { + "id": 29066, + "cuisine": "southern_us", + "ingredients": [ + "corn kernels", + "sugar", + "salt", + "butter", + "milk", + "corn starch" + ] + }, + { + "id": 26200, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "salt", + "green bell pepper", + "red pepper", + "onions", + "italian sausage", + "brown rice", + "celery", + "pepper", + "garlic" + ] + }, + { + "id": 9446, + "cuisine": "french", + "ingredients": [ + "bread crumbs", + "ground red pepper", + "milk", + "salt", + "shredded cheddar cheese", + "butter", + "large eggs" + ] + }, + { + "id": 46917, + "cuisine": "french", + "ingredients": [ + "flavored syrup", + "vanilla extract", + "coffee", + "reduced fat milk", + "caramel flavored syrup" + ] + }, + { + "id": 13541, + "cuisine": "southern_us", + "ingredients": [ + "cream of tartar", + "unsalted butter", + "cornmeal", + "cayenne", + "salt", + "corn kernels", + "whole milk", + "sugar", + "large eggs" + ] + }, + { + "id": 18705, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "Shaoxing wine", + "ground pepper", + "salt", + "soy sauce", + "diced chicken", + "vegetables", + "corn starch" + ] + }, + { + "id": 8373, + "cuisine": "cajun_creole", + "ingredients": [ + "broccoli", + "Italian herbs", + "fresh parsley", + "polish sausage", + "rice", + "stewed tomatoes", + "cooked chicken breasts" + ] + }, + { + "id": 28747, + "cuisine": "italian", + "ingredients": [ + "cannellini beans", + "escarole", + "prosciutto", + "crushed red pepper", + "fennel seeds", + "extra-virgin olive oil", + "polenta", + "water", + "garlic" + ] + }, + { + "id": 2738, + "cuisine": "mexican", + "ingredients": [ + "milk", + "salsa", + "ground cumin", + "mayonaise", + "butter", + "corn tortillas", + "green cabbage", + "lime", + "sour cream", + "kosher salt", + "large garlic cloves", + "large shrimp" + ] + }, + { + "id": 33430, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "crushed red pepper", + "shrimp", + "lump crab meat", + "olive oil", + "bow-tie pasta", + "oysters", + "salt", + "fresh parsley", + "pepper", + "butter", + "fresh lemon juice" + ] + }, + { + "id": 22093, + "cuisine": "french", + "ingredients": [ + "sugar", + "all-purpose flour", + "large eggs", + "salt", + "unsalted butter" + ] + }, + { + "id": 4471, + "cuisine": "french", + "ingredients": [ + "yellow squash", + "mushrooms", + "organic vegetable broth", + "flat leaf parsley", + "cherry tomatoes", + "cooking spray", + "crushed red pepper", + "red bell pepper", + "kosher salt", + "zucchini", + "extra-virgin olive oil", + "fresh lemon juice", + "fresh basil", + "finely chopped onion", + "tempeh", + "garlic cloves" + ] + }, + { + "id": 25953, + "cuisine": "southern_us", + "ingredients": [ + "safflower oil", + "low-fat buttermilk", + "sea salt", + "honey", + "baking powder", + "cayenne pepper", + "baking soda", + "coarse salt", + "chicken", + "water", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 46231, + "cuisine": "italian", + "ingredients": [ + "instant espresso powder", + "sugar", + "milk", + "corn starch" + ] + }, + { + "id": 22819, + "cuisine": "japanese", + "ingredients": [ + "avocado", + "tumeric", + "lime", + "ginger", + "coconut cream", + "spinach", + "grated coconut", + "garam masala", + "salt", + "mustard seeds", + "tomatoes", + "daal", + "red chile powder", + "garlic", + "cumin seed", + "coconut oil", + "lime juice", + "chile pepper", + "cilantro leaves", + "onions" + ] + }, + { + "id": 27090, + "cuisine": "russian", + "ingredients": [ + "unsalted butter", + "milk", + "preserves", + "all-purpose flour", + "active dry yeast" + ] + }, + { + "id": 48755, + "cuisine": "italian", + "ingredients": [ + "white wine", + "garlic", + "boneless skinless chicken breast halves", + "grated parmesan cheese", + "lemon juice", + "ground black pepper", + "salt", + "dried oregano", + "worcestershire sauce", + "dried parsley" + ] + }, + { + "id": 6771, + "cuisine": "korean", + "ingredients": [ + "minced ginger", + "salt", + "brown sugar", + "lean ground beef", + "garlic chili sauce", + "low sodium soy sauce", + "sesame oil", + "scallions", + "pepper", + "garlic", + "toasted sesame seeds" + ] + }, + { + "id": 43371, + "cuisine": "italian", + "ingredients": [ + "milk", + "Italian bread", + "tomato paste", + "extra-virgin olive oil", + "onions", + "pancetta", + "large eggs", + "flat leaf parsley", + "ground chicken", + "garlic cloves" + ] + }, + { + "id": 20069, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "zucchini", + "fresh lemon juice", + "yellow squash", + "basil leaves", + "whole wheat fettuccine", + "cherry tomatoes", + "lemon zest", + "arugula", + "olive oil", + "salt" + ] + }, + { + "id": 20511, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "potato gnocchi", + "garlic", + "ground beef", + "black pepper", + "meatballs", + "heavy cream", + "Italian seasoned breadcrumbs", + "baby spinach leaves", + "parmesan cheese", + "worcestershire sauce", + "yellow onion", + "italian seasoning", + "eggs", + "kosher salt", + "low sodium chicken broth", + "sea salt", + "bay leaf" + ] + }, + { + "id": 11837, + "cuisine": "vietnamese", + "ingredients": [ + "hot red pepper flakes", + "large eggs", + "scallions", + "asian fish sauce", + "minced garlic", + "white rice", + "beansprouts", + "sugar", + "corn oil", + "carrots", + "dry roasted peanuts", + "rice vinegar", + "chopped cilantro fresh" + ] + }, + { + "id": 40441, + "cuisine": "spanish", + "ingredients": [ + "sherry wine vinegar", + "garlic cloves", + "japanese eggplants", + "crushed red pepper", + "flat leaf parsley", + "panko", + "fresh oregano", + "golden zucchini", + "extra-virgin olive oil", + "red bell pepper" + ] + }, + { + "id": 35774, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "jalapeno chilies", + "salt", + "sour cream", + "frozen whole kernel corn", + "baking powder", + "scallions", + "yellow corn meal", + "large eggs", + "buttermilk", + "red bell pepper", + "baking soda", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 41553, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "shallots", + "rice", + "store bought low sodium chicken stock", + "ground pork", + "kosher salt", + "vegetable oil", + "sliced green onions", + "water", + "ginger" + ] + }, + { + "id": 22503, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "green onions", + "orange juice", + "nutmeg", + "vinegar", + "garlic", + "thyme", + "brown sugar", + "jalapeno chilies", + "salt", + "allspice", + "olive oil", + "cinnamon", + "gingerroot" + ] + }, + { + "id": 12642, + "cuisine": "korean", + "ingredients": [ + "chicken stock", + "soy sauce", + "beef", + "chilli paste", + "apple juice", + "beansprouts", + "spinach", + "honey", + "sesame oil", + "beef tenderloin", + "carrots", + "toasted sesame seeds", + "cooked rice", + "cider vinegar", + "shallots", + "sea salt", + "oil", + "kimchi", + "brown sugar", + "shiitake", + "fried eggs", + "garlic", + "cucumber" + ] + }, + { + "id": 550, + "cuisine": "brazilian", + "ingredients": [ + "juice", + "lime", + "ice", + "cold water", + "sweetened condensed milk", + "salt" + ] + }, + { + "id": 30610, + "cuisine": "british", + "ingredients": [ + "baking potatoes", + "chopped fresh chives", + "lemon zest", + "caviar", + "olive oil", + "crème fraîche" + ] + }, + { + "id": 12579, + "cuisine": "thai", + "ingredients": [ + "gari", + "green onions", + "dark sesame oil", + "butter lettuce", + "cooking oil", + "garlic", + "pepper sauce", + "hoisin sauce", + "lean ground beef", + "onions", + "soy sauce", + "water chestnuts", + "rice vinegar" + ] + }, + { + "id": 37905, + "cuisine": "thai", + "ingredients": [ + "beans", + "rice vinegar", + "fresh basil leaves", + "cilantro leaves", + "fresh mint", + "shredded carrots", + "roasted peanuts", + "cabbage", + "lettuce leaves", + "scallions", + "rice paper" + ] + }, + { + "id": 39466, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "Tabasco Pepper Sauce", + "celery", + "ground black pepper", + "salt", + "pork sausages", + "kosher salt", + "garlic", + "onions", + "green onions", + "beef broth", + "long grain white rice" + ] + }, + { + "id": 18181, + "cuisine": "italian", + "ingredients": [ + "light alfredo sauce", + "broccoli", + "vegetable oil", + "sliced mushrooms", + "pepper", + "chopped onion", + "fettucine", + "salt", + "apricots" + ] + }, + { + "id": 696, + "cuisine": "indian", + "ingredients": [ + "cardamom pods", + "onions", + "oil", + "cumin seed", + "basmati rice", + "chicken stock", + "cinnamon sticks" + ] + }, + { + "id": 16020, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "arugula", + "fresh basil", + "crushed red pepper", + "lemon juice", + "asparagus", + "toasted pine nuts", + "olive oil", + "salt", + "gnocchi" + ] + }, + { + "id": 25971, + "cuisine": "mexican", + "ingredients": [ + "low-fat sour cream", + "purple onion", + "lime", + "tortilla chips", + "black beans", + "salsa", + "chicken breasts", + "shredded cheese" + ] + }, + { + "id": 11176, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "bourbon whiskey", + "maple syrup", + "vanilla bean ice cream", + "sugar", + "granulated sugar", + "butter", + "corn starch", + "pecans", + "unsalted butter", + "cinnamon", + "dark brown sugar", + "water", + "flour", + "salt", + "allspice" + ] + }, + { + "id": 10373, + "cuisine": "southern_us", + "ingredients": [ + "dark corn syrup", + "unsalted butter", + "cinnamon", + "cream cheese", + "ground ginger", + "milk", + "egg whites", + "vanilla extract", + "Fisher Pecan Halves", + "light brown sugar", + "kosher salt", + "granulated sugar", + "heavy cream", + "chopped pecans", + "powdered sugar", + "ground nutmeg", + "baking powder", + "cake flour" + ] + }, + { + "id": 8443, + "cuisine": "southern_us", + "ingredients": [ + "peas", + "baking soda", + "okra", + "bacon", + "white sugar", + "pepper", + "salt" + ] + }, + { + "id": 4976, + "cuisine": "thai", + "ingredients": [ + "sweet chili sauce", + "egg whites", + "salt", + "corn starch", + "lime juice", + "baking powder", + "all-purpose flour", + "water", + "boneless skinless chicken breasts", + "cilantro leaves", + "sesame", + "cooking oil", + "garlic", + "oil" + ] + }, + { + "id": 40074, + "cuisine": "filipino", + "ingredients": [ + "water", + "canola oil", + "flour", + "bananas", + "brown sugar", + "lumpia wrappers" + ] + }, + { + "id": 34744, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "grating cheese", + "lettuce", + "olive oil", + "salt", + "lime juice", + "gluten", + "chile powder", + "whole wheat tortillas", + "sauce" + ] + }, + { + "id": 6891, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "prepar salsa", + "oregano", + "shredded cheddar cheese", + "whole kernel corn, drain", + "eggs", + "taco seasoning mix", + "ground turkey", + "cottage cheese", + "Azteca Flour Tortillas" + ] + }, + { + "id": 1094, + "cuisine": "italian", + "ingredients": [ + "water", + "shredded mozzarella cheese", + "extra-virgin olive oil", + "crumbled gorgonzola", + "cherry tomatoes", + "garlic cloves", + "yellow corn meal", + "salt", + "fresh basil leaves" + ] + }, + { + "id": 2610, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "grated parmesan cheese", + "fresh basil leaves", + "grape tomatoes", + "eggplant", + "yellow bell pepper", + "pinenuts", + "vegetable oil spray", + "heavy whipping cream", + "tomatoes", + "olive oil", + "large garlic cloves", + "rigatoni" + ] + }, + { + "id": 46331, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken breast halves", + "sour cream", + "shredded cheddar cheese", + "chile pepper", + "condensed cream of chicken soup", + "flour tortillas", + "milk", + "condensed cream of mushroom soup" + ] + }, + { + "id": 21902, + "cuisine": "southern_us", + "ingredients": [ + "corn husks", + "salt", + "unsalted butter", + "milk", + "freshly ground pepper" + ] + }, + { + "id": 11484, + "cuisine": "italian", + "ingredients": [ + "all-purpose flour", + "butter", + "salt", + "shredded cheddar cheese", + "crispy rice cereal" + ] + }, + { + "id": 42963, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "milk", + "all-purpose flour", + "sugar", + "I Can't Believe It's Not Butter!® Spread", + "brandy", + "apples", + "eggs", + "baking powder" + ] + }, + { + "id": 5882, + "cuisine": "french", + "ingredients": [ + "finely chopped fresh parsley", + "goat cheese", + "butter", + "garlic", + "mushrooms", + "puff pastry" + ] + }, + { + "id": 30956, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "cumin seed", + "light coconut milk", + "ground turmeric", + "diced tomatoes", + "mustard seeds", + "red chili peppers", + "salt", + "cooked chicken breasts" + ] + }, + { + "id": 15988, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "oil", + "shrimp", + "bamboo shoots", + "chicken stock", + "vegetable oil", + "oyster sauce", + "green beans", + "char siu", + "green onions", + "chow mein noodles", + "corn starch", + "dried mushrooms", + "sugar", + "cilantro leaves", + "carrots", + "celery" + ] + }, + { + "id": 11012, + "cuisine": "korean", + "ingredients": [ + "hot pepper", + "carrots", + "soy sauce", + "scallions", + "canola oil", + "jalapeno chilies", + "garlic cloves", + "sugar", + "squid", + "onions" + ] + }, + { + "id": 19017, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "heavy cream", + "sugar", + "jalapeno chilies", + "olive oil", + "onions", + "fresh cilantro", + "tomatillos" + ] + }, + { + "id": 29719, + "cuisine": "greek", + "ingredients": [ + "bell pepper", + "freshly ground pepper", + "couscous", + "lemon wedge", + "garlic cloves", + "cannellini beans", + "scallions", + "dried oregano", + "coarse salt", + "feta cheese crumbles" + ] + }, + { + "id": 367, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "dry sherry", + "ground coriander", + "dried cranberries", + "fresh cilantro", + "pistachios", + "yellow onion", + "cinnamon sticks", + "sugar pumpkin", + "fresh ginger", + "beef stew meat", + "garlic cloves", + "honey", + "lime wedges", + "ground allspice", + "fresh lime juice" + ] + }, + { + "id": 2142, + "cuisine": "thai", + "ingredients": [ + "salad dressing", + "extra firm tofu", + "chopped cilantro fresh", + "broccoli florets", + "basmati rice", + "fat free less sodium chicken broth", + "red bell pepper" + ] + }, + { + "id": 17227, + "cuisine": "indian", + "ingredients": [ + "clove", + "tumeric", + "yoghurt", + "salt", + "oil", + "chicken", + "red chili powder", + "almonds", + "heavy cream", + "green cardamom", + "cinnamon sticks", + "tomatoes", + "sugar", + "butter", + "cilantro leaves", + "lemon juice", + "garlic paste", + "garam masala", + "kasuri methi", + "green chilies", + "methi" + ] + }, + { + "id": 2620, + "cuisine": "korean", + "ingredients": [ + "honey", + "sesame oil", + "salt", + "red bell pepper", + "tomato paste", + "meat", + "garlic", + "hot sauce", + "cabbage", + "fresh ginger", + "vegetable oil", + "rice vinegar", + "toasted sesame seeds", + "pepper", + "whole wheat spaghetti", + "tamari soy sauce", + "scallions" + ] + }, + { + "id": 43109, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "deveined shrimp", + "ground turmeric", + "chile pepper", + "cilantro leaves", + "garam masala", + "salt", + "tomatoes", + "vegetable oil", + "onions" + ] + }, + { + "id": 10051, + "cuisine": "mexican", + "ingredients": [ + "large egg whites", + "all-purpose flour", + "corn kernels", + "achiote paste", + "chiles", + "medium shrimp uncook", + "garlic cloves", + "fillet red snapper", + "corn oil", + "chopped cilantro fresh" + ] + }, + { + "id": 1046, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "carrots", + "mint leaves", + "fine sea salt", + "Boston lettuce", + "extra-virgin olive oil", + "kirby cucumbers", + "hearts of romaine" + ] + }, + { + "id": 39561, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "spaghetti", + "thai basil", + "salt", + "fish sauce", + "garlic", + "butter", + "provolone cheese" + ] + }, + { + "id": 40647, + "cuisine": "brazilian", + "ingredients": [ + "fish fillets", + "cayenne", + "canned tomatoes", + "garlic cloves", + "water", + "haddock", + "green pepper", + "white wine", + "flour", + "salt", + "onions", + "tomato paste", + "olive oil", + "parsley", + "beau monde seasoning" + ] + }, + { + "id": 16745, + "cuisine": "indian", + "ingredients": [ + "vegetable oil spray", + "cumin seed", + "extra-virgin olive oil", + "kosher salt", + "carrots" + ] + }, + { + "id": 21326, + "cuisine": "moroccan", + "ingredients": [ + "capers", + "cauliflower florets", + "fresh parsley", + "olive oil", + "garlic cloves", + "lemon", + "lemon juice", + "water", + "salt" + ] + }, + { + "id": 9854, + "cuisine": "mexican", + "ingredients": [ + "Velveeta", + "green pepper", + "instant white rice", + "water", + "frozen peas", + "KRAFT Original Barbecue Sauce", + "ground pork" + ] + }, + { + "id": 36121, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "quinoa", + "salsa", + "onions", + "water", + "chili powder", + "ground turkey", + "minced garlic", + "bell pepper", + "enchilada sauce", + "cumin", + "cheddar cheese", + "fresh cilantro", + "diced tomatoes", + "fresh lime juice" + ] + }, + { + "id": 45960, + "cuisine": "japanese", + "ingredients": [ + "all-purpose flour", + "cold water", + "oil", + "soy sauce", + "panko breadcrumbs", + "broccoli" + ] + }, + { + "id": 22291, + "cuisine": "indian", + "ingredients": [ + "sugar", + "baking powder", + "milk", + "salt", + "thick curds", + "butter", + "baking soda", + "all-purpose flour" + ] + }, + { + "id": 6064, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "rotisserie chicken", + "shredded cheddar cheese", + "cream cheese", + "corn tortillas", + "green enchilada sauce", + "sour cream", + "finely chopped onion", + "green chilies", + "cumin" + ] + }, + { + "id": 25888, + "cuisine": "japanese", + "ingredients": [ + "sake", + "beef", + "onions", + "soy sauce", + "soup", + "sugar", + "mirin", + "steamed rice", + "ginger" + ] + }, + { + "id": 40209, + "cuisine": "french", + "ingredients": [ + "water", + "cooking spray", + "fresh lime juice", + "large egg whites", + "salt", + "mango", + "sugar", + "large egg yolks", + "corn starch", + "macadamia nuts", + "butter", + "sweetened condensed milk" + ] + }, + { + "id": 45415, + "cuisine": "jamaican", + "ingredients": [ + "garam masala", + "chaat masala", + "breadfruit", + "salt", + "garlic paste", + "chili powder", + "ground turmeric", + "pepper", + "coconut vinegar" + ] + }, + { + "id": 22736, + "cuisine": "italian", + "ingredients": [ + "pesto", + "red bell pepper", + "chees fresh mozzarella", + "french baguette", + "cornichons" + ] + }, + { + "id": 1641, + "cuisine": "italian", + "ingredients": [ + "cauliflower florets", + "black pepper", + "salt", + "water", + "coconut oil", + "garlic" + ] + }, + { + "id": 11200, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "jalapeno chilies", + "baked pizza crust", + "tomatoes", + "sliced black olives", + "purple onion", + "shredded mozzarella cheese", + "fresh basil", + "grated parmesan cheese", + "salt", + "ground black pepper", + "pizza sauce", + "fresh mushrooms" + ] + }, + { + "id": 41371, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "sharp cheddar cheese", + "kosher salt", + "butter", + "monterey jack", + "Velveeta", + "cajun seasoning", + "elbow macaroni", + "large eggs", + "cracked black pepper" + ] + }, + { + "id": 22649, + "cuisine": "mexican", + "ingredients": [ + "finely chopped onion", + "canola oil", + "pepper", + "salt", + "eggs", + "seeds", + "shredded cheddar cheese", + "shredded zucchini" + ] + }, + { + "id": 33075, + "cuisine": "indian", + "ingredients": [ + "lime", + "sugar", + "mango", + "lime zest", + "full-fat plain yogurt", + "kosher salt" + ] + }, + { + "id": 47394, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "lemon", + "corn starch", + "garlic powder", + "squid", + "milk", + "salt", + "flour", + "oil" + ] + }, + { + "id": 21938, + "cuisine": "thai", + "ingredients": [ + "sugar", + "cayenne pepper", + "cucumber", + "vegetable oil", + "long-grain rice", + "chopped cilantro", + "ground black pepper", + "scallions", + "fresh lime juice", + "salmon fillets", + "salt", + "carrots", + "asian fish sauce" + ] + }, + { + "id": 41256, + "cuisine": "french", + "ingredients": [ + "fennel seeds", + "hot red pepper flakes", + "water", + "extra-virgin olive oil", + "onions", + "saffron threads", + "tomatoes", + "black pepper", + "chopped fresh thyme", + "carrots", + "orange zest", + "tomato paste", + "sugar", + "Turkish bay leaves", + "salt", + "long grain white rice", + "celery ribs", + "fresh basil", + "reduced sodium chicken broth", + "large garlic cloves", + "flat leaf parsley" + ] + }, + { + "id": 40402, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "bacon", + "apple cider vinegar", + "cabbage", + "garlic powder", + "onions", + "brown sugar", + "worcestershire sauce" + ] + }, + { + "id": 43022, + "cuisine": "greek", + "ingredients": [ + "green bell pepper", + "salt", + "boneless skinless chicken breast halves", + "ground black pepper", + "nonfat yogurt plain", + "dried oregano", + "lemon zest", + "fresh lemon juice", + "dried rosemary", + "purple onion", + "feta cheese crumbles" + ] + }, + { + "id": 19561, + "cuisine": "french", + "ingredients": [ + "shredded swiss cheese", + "Alfredo sauce", + "kirsch", + "ground nutmeg", + "garlic cloves", + "dry white wine" + ] + }, + { + "id": 40968, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "sea bass fillets", + "pepitas", + "large eggs", + "salt", + "coriander seeds", + "butter", + "bread crumb fresh", + "lemon wedge", + "all-purpose flour" + ] + }, + { + "id": 40279, + "cuisine": "italian", + "ingredients": [ + "saffron threads", + "salt", + "plum tomatoes", + "unsalted butter", + "medium shrimp", + "dry white wine", + "onions", + "arborio rice", + "freshly ground pepper" + ] + }, + { + "id": 7475, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "peas", + "olive oil", + "seasoning salt", + "pasta", + "green onions" + ] + }, + { + "id": 22644, + "cuisine": "thai", + "ingredients": [ + "light brown sugar", + "lemongrass", + "ground white pepper", + "fish sauce", + "cilantro stems", + "chicken wings", + "Sriracha", + "chopped cilantro", + "sweet chili sauce", + "oil" + ] + }, + { + "id": 37991, + "cuisine": "filipino", + "ingredients": [ + "red pepper", + "salt", + "vegetable broth", + "shirataki", + "coconut milk", + "salmon fillets", + "peanut sauce" + ] + }, + { + "id": 14295, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "yoghurt", + "oil", + "cumin", + "garam masala", + "cilantro", + "onions", + "asafoetida", + "paprika", + "mustard seeds", + "red lentils", + "jalapeno chilies", + "ginger", + "coriander" + ] + }, + { + "id": 22341, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "water", + "shredded sharp cheddar cheese", + "milk", + "salt", + "pepper", + "quickcooking grits" + ] + }, + { + "id": 33135, + "cuisine": "mexican", + "ingredients": [ + "salt", + "chipotles in adobo", + "tomatillos", + "poblano chiles", + "white onion", + "cilantro leaves", + "large garlic cloves", + "fresh lime juice" + ] + }, + { + "id": 9857, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "garlic cloves", + "kosher salt", + "Italian parsley leaves", + "grated parmesan cheese", + "baguette", + "extra-virgin olive oil" + ] + }, + { + "id": 16183, + "cuisine": "thai", + "ingredients": [ + "peeled shrimp", + "coconut milk", + "fish sauce", + "fresh mushrooms", + "cooked rice", + "red curry paste", + "fresh basil leaves", + "cooking oil", + "red bell pepper" + ] + }, + { + "id": 39900, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "baby spinach", + "peaches", + "salad dressing" + ] + }, + { + "id": 25458, + "cuisine": "mexican", + "ingredients": [ + "sliced black olives", + "sour cream", + "eggs", + "margarine", + "ground beef", + "green onions", + "corn tortillas", + "shredded cheddar cheese", + "enchilada sauce" + ] + }, + { + "id": 28740, + "cuisine": "southern_us", + "ingredients": [ + "water", + "shredded sharp cheddar cheese", + "bacon salt", + "olive oil", + "onions", + "yellow corn meal", + "milk", + "enchilada sauce", + "black pepper", + "mushroom caps" + ] + }, + { + "id": 8794, + "cuisine": "italian", + "ingredients": [ + "baguette", + "whole peeled tomatoes", + "crushed red pepper flakes", + "fresh parsley leaves", + "vodka", + "unsalted butter", + "shallots", + "penne pasta", + "tomato paste", + "parmesan cheese", + "boneless skinless chicken breasts", + "garlic", + "fresh basil leaves", + "kosher salt", + "granulated sugar", + "heavy cream", + "garlic cloves" + ] + }, + { + "id": 47361, + "cuisine": "thai", + "ingredients": [ + "sugar", + "sea salt", + "fresh mint", + "shallots", + "shrimp", + "asian fish sauce", + "minced garlic", + "thai chile", + "fresh lime juice", + "lemongrass", + "scallions", + "serrano chile" + ] + }, + { + "id": 23890, + "cuisine": "japanese", + "ingredients": [ + "abura age", + "sugar", + "rice", + "sake", + "dashi", + "soy sauce", + "white sesame seeds" + ] + }, + { + "id": 5083, + "cuisine": "italian", + "ingredients": [ + "pepper", + "grated parmesan cheese", + "diced tomatoes", + "garlic cloves", + "boiling water", + "tomato paste", + "lasagna noodles", + "lean ground beef", + "garlic", + "fresh parsley", + "tomato sauce", + "large eggs", + "ricotta cheese", + "salt", + "onions", + "olive oil", + "cheese slices", + "basil", + "bay leaf", + "italian seasoning" + ] + }, + { + "id": 36507, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "garlic", + "onions", + "soy sauce", + "sirloin steak", + "carrots", + "brown sugar", + "red pepper flakes", + "broccoli", + "green onions", + "ginger", + "corn starch" + ] + }, + { + "id": 380, + "cuisine": "japanese", + "ingredients": [ + "sesame oil", + "chicken", + "soy sauce", + "oil", + "sake", + "skinless chicken breasts", + "fresh ginger", + "corn starch" + ] + }, + { + "id": 37132, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "large eggs", + "water", + "unsalted butter", + "fresh tarragon", + "kosher salt", + "prosciutto", + "shallots", + "fresh chives", + "parmesan cheese", + "fresh shiitake mushrooms" + ] + }, + { + "id": 44521, + "cuisine": "italian", + "ingredients": [ + "pasta", + "water", + "zucchini", + "garlic", + "carrots", + "dried oregano", + "pepper", + "condensed french onion soup", + "stewed tomatoes", + "chopped onion", + "ground beef", + "spinach", + "garbanzo beans", + "bacon", + "beef broth", + "celery", + "tomato purée", + "dried basil", + "red wine", + "salt", + "chopped parsley" + ] + }, + { + "id": 18456, + "cuisine": "korean", + "ingredients": [ + "salt", + "green onions", + "garlic cloves", + "crushed red pepper flakes", + "cabbage", + "sugar", + "gingerroot" + ] + }, + { + "id": 42676, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "peanuts", + "salt", + "corn starch", + "fish sauce", + "pepper", + "lettuce leaves", + "oil", + "onions", + "brown sugar", + "water", + "garlic", + "shrimp", + "eggs", + "pork belly", + "flour", + "peanut butter", + "nonstick spray" + ] + }, + { + "id": 16739, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "sauce", + "eggs", + "Tabasco Pepper Sauce", + "ground black pepper", + "sweet pickle relish", + "paprika" + ] + }, + { + "id": 26972, + "cuisine": "greek", + "ingredients": [ + "chicken stock", + "red wine vinegar", + "onions", + "olive oil", + "garlic cloves", + "tomato purée", + "dill", + "butter beans", + "lamb fillet", + "feta cheese crumbles" + ] + }, + { + "id": 27603, + "cuisine": "mexican", + "ingredients": [ + "salad", + "chili powder", + "salsa", + "ground cumin", + "liquid smoke", + "romaine lettuce", + "grapeseed oil", + "sour cream", + "pure maple syrup", + "tempeh", + "tortilla chips", + "avocado", + "black beans", + "salt", + "fresh lime juice" + ] + }, + { + "id": 40036, + "cuisine": "thai", + "ingredients": [ + "boneless skinless chicken", + "hoisin sauce", + "creamy peanut butter", + "minced ginger", + "cayenne pepper", + "sesame oil", + "scallions" + ] + }, + { + "id": 36332, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "olive oil", + "pepper", + "garlic cloves", + "fresh basil", + "salt", + "baguette", + "serrano ham" + ] + }, + { + "id": 24288, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "russet potatoes", + "garlic", + "olive oil", + "heavy cream", + "kosher salt", + "baby spinach", + "onions", + "chicken broth", + "ground black pepper", + "bacon" + ] + }, + { + "id": 26143, + "cuisine": "indian", + "ingredients": [ + "finely chopped onion", + "russet potatoes", + "red bell pepper", + "serrano chile", + "bread crumb fresh", + "vegetable oil", + "carrots", + "chaat masala", + "large eggs", + "paprika", + "chutney", + "peeled fresh ginger", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 30356, + "cuisine": "southern_us", + "ingredients": [ + "chocolate ice cream", + "southern comfort", + "butterscotch sauce", + "salted roast peanuts" + ] + }, + { + "id": 37241, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "onions", + "water", + "lard", + "red kidney beans", + "cayenne", + "smoked ham hocks", + "cooked rice", + "salt", + "chopped garlic" + ] + }, + { + "id": 28034, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "tomatoes", + "grated romano cheese", + "dried oregano", + "olive oil", + "fresh parsley", + "bread crumb fresh", + "garlic" + ] + }, + { + "id": 34037, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "sauce", + "onions", + "minced garlic", + "green onions", + "oil", + "peeled fresh ginger", + "medium-grain rice", + "bone in chicken thighs", + "water", + "salt", + "calamansi" + ] + }, + { + "id": 12329, + "cuisine": "spanish", + "ingredients": [ + "water", + "fresh tarragon", + "tomatoes", + "peaches", + "salt", + "olive oil", + "white wine vinegar", + "black pepper", + "shallots", + "crushed ice" + ] + }, + { + "id": 43468, + "cuisine": "korean", + "ingredients": [ + "pepper", + "beef tenderloin", + "lower sodium soy sauce", + "scallions", + "water", + "rice vinegar", + "splenda", + "garlic cloves" + ] + }, + { + "id": 9618, + "cuisine": "italian", + "ingredients": [ + "pasta", + "boneless skinless chicken breasts", + "Swanson Chicken Broth", + "garlic", + "vegetables", + "diced tomatoes", + "grated parmesan cheese", + "italian seasoning" + ] + }, + { + "id": 3271, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "duck egg", + "oyster sauce", + "soy sauce", + "green onions", + "boneless pork loin", + "ground black pepper", + "salt", + "long grain white rice", + "water", + "vegetable oil", + "century eggs" + ] + }, + { + "id": 16244, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "salt", + "oil", + "onions", + "water", + "chili powder", + "green cardamom", + "mustard seeds", + "ground cumin", + "tomatoes", + "pumpkin", + "dill", + "garlic cloves", + "ground turmeric", + "garam masala", + "green peas", + "cumin seed", + "cinnamon sticks" + ] + }, + { + "id": 10693, + "cuisine": "spanish", + "ingredients": [ + "whole cloves", + "cumin seed", + "cider vinegar", + "cayenne pepper", + "cinnamon sticks", + "black peppercorns", + "ground tumeric", + "garlic cloves", + "fresh ginger", + "tamarind paste" + ] + }, + { + "id": 25634, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "warm water", + "butter", + "active dry yeast", + "sugar", + "large eggs" + ] + }, + { + "id": 2253, + "cuisine": "indian", + "ingredients": [ + "white vinegar", + "sparkling lemonade", + "coconut sugar", + "cream", + "lime juice", + "garam masala", + "spring onions", + "duck egg", + "chili sauce", + "green chilies", + "chow mein noodles", + "noodles", + "cumin", + "cauliflower", + "tomatoes", + "shucked oysters", + "pepper", + "lime", + "prawns", + "ginger", + "purple onion", + "vinaigrette", + "beets", + "instant espresso", + "ground turmeric", + "bread", + "chili flakes", + "sugar", + "water", + "eggplant", + "lobster", + "garlic", + "salt", + "goat cheese", + "oil", + "toast", + "polenta", + "English mustard", + "mustard", + "tumeric", + "black truffles", + "milk", + "Nutella", + "chili powder", + "paneer", + "rice", + "walnuts", + "lotus roots", + "greens" + ] + }, + { + "id": 34904, + "cuisine": "cajun_creole", + "ingredients": [ + "diced tomatoes", + "red bell pepper", + "chicken broth", + "crushed red pepper", + "cooked white rice", + "celery ribs", + "garlic", + "smoked turkey sausage", + "red kidnei beans, rins and drain", + "green pepper", + "onions" + ] + }, + { + "id": 36453, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "chicken", + "romano cheese", + "cheese", + "onions", + "tomato sauce", + "shredded lettuce", + "corn tortillas", + "tomatoes", + "corn oil", + "sour cream" + ] + }, + { + "id": 1624, + "cuisine": "british", + "ingredients": [ + "heavy cream", + "unsalted butter", + "frozen peas", + "chicken stock", + "onions", + "fresh mint" + ] + }, + { + "id": 1357, + "cuisine": "indian", + "ingredients": [ + "baby spinach", + "garam masala", + "feta cheese", + "extra-virgin olive oil", + "nonfat plain greek yogurt" + ] + }, + { + "id": 34131, + "cuisine": "cajun_creole", + "ingredients": [ + "bay leaves", + "salt", + "creole seasoning", + "fresh parsley", + "milk", + "extra-virgin olive oil", + "beef broth", + "red bell pepper", + "tomatoes", + "red wine vinegar", + "all-purpose flour", + "round steaks", + "grits", + "unsalted butter", + "garlic", + "yellow onion", + "celery" + ] + }, + { + "id": 12788, + "cuisine": "greek", + "ingredients": [ + "pita bread rounds", + "boneless skinless chicken breast halves", + "olive oil", + "fresh lemon juice", + "fresh dill", + "large garlic cloves", + "dried oregano", + "nonfat yogurt", + "onions" + ] + }, + { + "id": 14782, + "cuisine": "mexican", + "ingredients": [ + "cooked rice", + "pepper", + "bell pepper", + "salt", + "soft corn tortillas", + "tomato paste", + "tomato sauce", + "lime", + "onion powder", + "garlic cloves", + "ground cumin", + "tomatoes", + "black beans", + "garlic powder", + "diced tomatoes", + "sour cream", + "avocado", + "green chile", + "fresh cilantro", + "chicken breasts", + "sharp cheddar cheese", + "Country Crock® Spread" + ] + }, + { + "id": 49487, + "cuisine": "irish", + "ingredients": [ + "salt", + "baking soda", + "all-purpose flour", + "buttermilk" + ] + }, + { + "id": 44434, + "cuisine": "italian", + "ingredients": [ + "onion powder", + "ground cumin", + "olive oil", + "poultry seasoning", + "celery salt", + "butter", + "garlic powder", + "Italian bread" + ] + }, + { + "id": 15275, + "cuisine": "moroccan", + "ingredients": [ + "boneless chicken skinless thigh", + "large garlic cloves", + "carrots", + "chopped fresh mint", + "ground ginger", + "fennel bulb", + "cayenne pepper", + "fresh parsley", + "ground cumin", + "fresh dill", + "lemon", + "ground coriander", + "onions", + "hungarian sweet paprika", + "olive oil", + "artichokes", + "low salt chicken broth", + "grated lemon peel" + ] + }, + { + "id": 47160, + "cuisine": "british", + "ingredients": [ + "milk", + "eggs", + "plain flour", + "salt", + "pepper" + ] + }, + { + "id": 45000, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "kosher salt", + "ground black pepper", + "guacamole", + "butter", + "cilantro", + "shredded cheese", + "beans", + "fresh cilantro", + "bell pepper", + "chili powder", + "worcestershire sauce", + "salsa", + "canola oil", + "avocado", + "black beans", + "canola", + "jalapeno chilies", + "lime wedges", + "paprika", + "yellow onion", + "ground cumin", + "brown sugar", + "lime juice", + "flour tortillas", + "chicken breasts", + "red pepper flakes", + "garlic", + "sour cream" + ] + }, + { + "id": 4628, + "cuisine": "japanese", + "ingredients": [ + "bonito flakes", + "konbu" + ] + }, + { + "id": 5835, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "baking powder", + "margarine", + "milk", + "salt", + "brown sugar", + "vanilla extract", + "white sugar", + "peaches", + "all-purpose flour" + ] + }, + { + "id": 36626, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "roma tomatoes", + "Mexican cheese blend", + "cilantro", + "refried beans", + "pizza sauce", + "ground chuck", + "flour tortillas", + "salt" + ] + }, + { + "id": 41088, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "hot sauce", + "purple onion", + "mango", + "jalapeno chilies", + "chopped cilantro fresh", + "chipotle chile", + "salt" + ] + }, + { + "id": 45249, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "cooking spray", + "goat cheese", + "fresh parmesan cheese", + "salt", + "swiss chard", + "vegetable broth", + "water", + "reduced-fat sour cream", + "garlic cloves" + ] + }, + { + "id": 33426, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "ground black pepper", + "spanish chorizo", + "large shrimp", + "mussels", + "kosher salt", + "lemon", + "spanish paprika", + "saffron threads", + "boneless chicken skinless thigh", + "low sodium chicken broth", + "yellow onion", + "paella rice", + "olive oil", + "Italian parsley leaves", + "garlic cloves" + ] + }, + { + "id": 13137, + "cuisine": "italian", + "ingredients": [ + "brandy", + "blanched almonds", + "cookies", + "vanilla ice cream", + "heavy cream", + "dark rum", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 4140, + "cuisine": "french", + "ingredients": [ + "pitted black olives", + "garlic cloves", + "ground black pepper", + "olive oil", + "fillets", + "capers", + "fresh thyme" + ] + }, + { + "id": 17118, + "cuisine": "chinese", + "ingredients": [ + "regular tofu", + "scallops", + "vinegar", + "salt", + "greens", + "potsticker wrappers", + "fresh ginger", + "green onions", + "oyster sauce", + "white pepper", + "shiitake", + "vegetable oil", + "frozen peas", + "soy sauce", + "water", + "water chestnuts", + "garlic cloves" + ] + }, + { + "id": 8308, + "cuisine": "italian", + "ingredients": [ + "boneless skinless chicken breasts", + "eggs", + "all-purpose flour", + "chicken stock", + "butter", + "pepper", + "fresh lemon juice" + ] + }, + { + "id": 42514, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "bacon", + "sliced mushrooms", + "cream", + "bone-in chicken breasts", + "white wine", + "salt", + "onions", + "celery ribs", + "fresh thyme leaves", + "garlic cloves" + ] + }, + { + "id": 24504, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "black olives", + "sour cream", + "parmigiano reggiano cheese", + "cream cheese", + "mozzarella cheese", + "green pepper", + "pizza sauce", + "pepperoni" + ] + }, + { + "id": 4603, + "cuisine": "vietnamese", + "ingredients": [ + "butternut squash", + "garlic cloves", + "soy sauce", + "vegetable oil", + "coriander", + "brown sugar", + "spring onions", + "green beans", + "fresh ginger root", + "vegetable stock", + "basmati rice" + ] + }, + { + "id": 33401, + "cuisine": "southern_us", + "ingredients": [ + "crawfish", + "chopped celery", + "ground red pepper", + "stuffing", + "chopped onion", + "chicken broth", + "butter" + ] + }, + { + "id": 8139, + "cuisine": "italian", + "ingredients": [ + "chees fresh mozzarella", + "tomatoes", + "extra-virgin olive oil", + "kosher salt", + "fresh basil leaves", + "ground black pepper" + ] + }, + { + "id": 16763, + "cuisine": "japanese", + "ingredients": [ + "boneless chicken thigh fillets", + "water", + "sake", + "shallots", + "soy sauce", + "garlic", + "brown sugar", + "mirin" + ] + }, + { + "id": 26796, + "cuisine": "indian", + "ingredients": [ + "clove", + "coriander seeds", + "ginger", + "cumin seed", + "ground turmeric", + "chiles", + "cinnamon", + "yellow onion", + "black mustard seeds", + "black peppercorns", + "hungarian paprika", + "garlic", + "palm vinegar", + "canola oil", + "light brown sugar", + "boneless chicken skinless thigh", + "small new potatoes", + "fenugreek seeds", + "cooked white rice" + ] + }, + { + "id": 14447, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "fresh ginger", + "chili powder", + "cumin seed", + "ground turmeric", + "lime", + "garam masala", + "salt", + "black mustard seeds", + "asafetida", + "water", + "coriander seeds", + "russet potatoes", + "garlic cloves", + "hing (powder)", + "cauliflower", + "amchur", + "jalapeno chilies", + "cilantro leaves", + "onions", + "canola oil" + ] + }, + { + "id": 5360, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "dried pappardelle", + "unsalted butter", + "coarse salt", + "flat leaf parsley", + "shallots", + "freshly ground pepper", + "mushrooms", + "taleggio" + ] + }, + { + "id": 21175, + "cuisine": "cajun_creole", + "ingredients": [ + "orange bell pepper", + "Italian parsley leaves", + "andouille sausage", + "low sodium chicken broth", + "onions", + "zucchini", + "peanut oil", + "low sodium cajun seasoning", + "brown rice", + "large shrimp" + ] + }, + { + "id": 41242, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic", + "white onion", + "flour tortillas", + "squash blossoms", + "jack cheese", + "cherry tomatoes", + "cilantro leaves", + "kosher salt", + "jalapeno chilies", + "thick-cut bacon" + ] + }, + { + "id": 3571, + "cuisine": "italian", + "ingredients": [ + "lemon", + "asparagus", + "extra-virgin olive oil", + "pecorino romano cheese" + ] + }, + { + "id": 23245, + "cuisine": "southern_us", + "ingredients": [ + "vodka", + "lemon wedge", + "cranberry juice", + "crushed ice", + "orange", + "orange liqueur", + "white wine", + "peach nectar" + ] + }, + { + "id": 48200, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "unsalted butter", + "pinenuts", + "brussels sprouts", + "extra-virgin olive oil" + ] + }, + { + "id": 1313, + "cuisine": "greek", + "ingredients": [ + "beans", + "cooking spray", + "dried dill", + "flat leaf parsley", + "honey", + "chopped celery", + "garlic cloves", + "ground black pepper", + "salt", + "carrots", + "crushed tomatoes", + "extra-virgin olive oil", + "chopped onion", + "dried oregano" + ] + }, + { + "id": 33405, + "cuisine": "indian", + "ingredients": [ + "milk", + "all-purpose flour", + "vegetable shortening", + "baking powder", + "water", + "salt" + ] + }, + { + "id": 36138, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "extra-virgin olive oil", + "chopped parsley", + "grated parmesan cheese", + "garlic cloves", + "linguine" + ] + }, + { + "id": 14954, + "cuisine": "mexican", + "ingredients": [ + "dried minced garlic", + "condensed tomato soup", + "chile pepper", + "unsweetened cocoa powder", + "finely chopped onion", + "cilantro", + "vegetable oil", + "ground cumin" + ] + }, + { + "id": 18929, + "cuisine": "southern_us", + "ingredients": [ + "white grapefruit juice", + "honey", + "jack daniels" + ] + }, + { + "id": 48751, + "cuisine": "indian", + "ingredients": [ + "eggs", + "cilantro", + "hamburger buns", + "ginger paste", + "garlic paste", + "ground lamb", + "garam masala" + ] + }, + { + "id": 12225, + "cuisine": "filipino", + "ingredients": [ + "water", + "yellow onion", + "spinach", + "ground black pepper", + "plum tomatoes", + "tamarind", + "okra", + "fish sauce", + "daikon", + "large shrimp" + ] + }, + { + "id": 32092, + "cuisine": "indian", + "ingredients": [ + "crushed tomatoes", + "chickpeas", + "basmati rice", + "baby spinach", + "onions", + "salt", + "chopped cilantro fresh", + "garam masala", + "greek yogurt", + "canola oil" + ] + }, + { + "id": 9306, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless chicken skinless thigh", + "chopped green bell pepper", + "diced tomatoes", + "chopped onion", + "large shrimp", + "dried thyme", + "ground red pepper", + "chopped celery", + "smoked turkey sausage", + "fat free less sodium chicken broth", + "boneless skinless chicken breasts", + "paprika", + "garlic cloves", + "sliced green onions", + "ground black pepper", + "vegetable oil", + "salt", + "long grain white rice" + ] + }, + { + "id": 42154, + "cuisine": "french", + "ingredients": [ + "honey", + "all-purpose flour", + "fromage blanc", + "pastry shell", + "lemon juice", + "sugar", + "balsamic vinegar", + "orange liqueur", + "nutmeg", + "large eggs", + "strawberries" + ] + }, + { + "id": 10262, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "boneless skinless chicken breasts", + "ground black pepper", + "medium salsa", + "low fat mozzarella" + ] + }, + { + "id": 7605, + "cuisine": "french", + "ingredients": [ + "sugar", + "dry yeast", + "1% low-fat milk", + "large egg whites", + "cooking spray", + "water", + "large eggs", + "salt", + "unsalted butter", + "all purpose unbleached flour" + ] + }, + { + "id": 36011, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "short-grain rice", + "cilantro", + "spanish chorizo", + "frozen peas", + "boneless chicken skinless thigh", + "bay leaves", + "garlic", + "medium shrimp", + "chicken broth", + "artichoke hearts", + "dry white wine", + "salt", + "onions", + "green olives", + "roasted red peppers", + "extra-virgin olive oil", + "smoked paprika", + "saffron" + ] + }, + { + "id": 23126, + "cuisine": "chinese", + "ingredients": [ + "sake", + "minced garlic", + "sesame oil", + "shiitake mushroom caps", + "sugar", + "mushroom caps", + "oyster sauce", + "cremini mushrooms", + "fresh ginger", + "vegetable oil", + "basmati rice", + "low sodium soy sauce", + "fat free less sodium chicken broth", + "green onions", + "corn starch" + ] + }, + { + "id": 29778, + "cuisine": "mexican", + "ingredients": [ + "orange", + "ice", + "tequila", + "orange bitters", + "sweet vermouth", + "mezcal" + ] + }, + { + "id": 2256, + "cuisine": "vietnamese", + "ingredients": [ + "salt", + "beef", + "tiger prawn", + "pepper", + "oil", + "spring onions" + ] + }, + { + "id": 27265, + "cuisine": "indian", + "ingredients": [ + "tandoori paste", + "boneless skinless chicken breasts", + "Philadelphia Cream Cheese" + ] + }, + { + "id": 30928, + "cuisine": "indian", + "ingredients": [ + "peeled fresh ginger", + "paprika", + "cooking spray", + "large garlic cloves", + "ground cumin", + "saffron threads", + "ground red pepper", + "salt", + "plain low-fat yogurt", + "boneless turkey breast", + "ground coriander" + ] + }, + { + "id": 10729, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "prosciutto", + "penne pasta", + "pepper", + "garlic", + "cider vinegar", + "italian style stewed tomatoes", + "chopped parsley", + "tomatoes", + "olive oil", + "salt" + ] + }, + { + "id": 1675, + "cuisine": "southern_us", + "ingredients": [ + "dry mustard", + "black pepper", + "elbow macaroni", + "1% low-fat milk", + "processed cheese" + ] + }, + { + "id": 16027, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "salt", + "butter", + "all-purpose flour", + "baking soda", + "buckwheat flour", + "buttermilk", + "white sugar" + ] + }, + { + "id": 19567, + "cuisine": "cajun_creole", + "ingredients": [ + "red kidney beans", + "water", + "salt", + "black pepper", + "lean ground beef", + "long grain white rice", + "green bell pepper", + "chili powder", + "onions", + "minced garlic", + "diced tomatoes" + ] + }, + { + "id": 8814, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "pepper", + "lasagna noodles", + "ricotta cheese", + "onions", + "eggs", + "milk", + "lean ground beef", + "all-purpose flour", + "italian seasoning", + "mozzarella cheese", + "parmesan cheese", + "vegetable oil", + "margarine", + "fresh rosemary", + "water", + "whole peeled tomatoes", + "salt", + "garlic salt" + ] + }, + { + "id": 10081, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "cooking spray", + "nutmeg", + "pepper", + "leeks", + "cheddar cheese", + "half & half", + "puff pastry", + "eggs", + "fresh thyme", + "bacon" + ] + }, + { + "id": 9670, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "whole milk", + "salt", + "tarragon leaves", + "grated parmesan cheese", + "butter", + "crabmeat", + "large egg yolks", + "dry white wine", + "all-purpose flour", + "cooked shrimp", + "roasted red peppers", + "shallots", + "cayenne pepper" + ] + }, + { + "id": 24317, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "salt", + "sake", + "ginger", + "chicken wings", + "sesame oil", + "chopped garlic", + "black pepper", + "cornflour" + ] + }, + { + "id": 2437, + "cuisine": "british", + "ingredients": [ + "bread", + "lamb kidneys", + "cracked black pepper", + "kosher salt", + "butter", + "chopped parsley", + "cayenne", + "worcestershire sauce", + "chicken stock", + "dijon mustard", + "all-purpose flour" + ] + }, + { + "id": 22032, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "plain whole-milk yogurt", + "unsalted butter", + "lemon juice", + "peaches", + "all-purpose flour", + "sugar", + "baking powder", + "corn starch" + ] + }, + { + "id": 13847, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "ricotta cheese", + "mozzarella cheese", + "oven-ready lasagna noodles", + "black pepper", + "salt", + "eggs", + "parmesan cheese", + "dried parsley" + ] + }, + { + "id": 41739, + "cuisine": "indian", + "ingredients": [ + "water", + "garam masala", + "baking potatoes", + "freshly ground pepper", + "ground turmeric", + "serrano chilies", + "lime", + "baking powder", + "cilantro leaves", + "garlic cloves", + "chickpea flour", + "fresh cilantro", + "green onions", + "salt", + "yams", + "sugar", + "fresh ginger", + "vegetable stock", + "peanut oil", + "fresh mint" + ] + }, + { + "id": 43637, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "buttermilk", + "butter", + "muffin mix", + "buttermilk cornbread", + "salt", + "large eggs", + "large garlic cloves" + ] + }, + { + "id": 49689, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cracked black pepper", + "half & half", + "grated nutmeg", + "large eggs", + "salt", + "frozen chopped spinach", + "chopped fresh thyme", + "onions" + ] + }, + { + "id": 11702, + "cuisine": "mexican", + "ingredients": [ + "double concentrate tomato paste", + "ground black pepper", + "long grain white rice", + "white onion", + "garlic cloves", + "tomato purée", + "rich chicken stock", + "kosher salt", + "lard" + ] + }, + { + "id": 42246, + "cuisine": "french", + "ingredients": [ + "vidalia onion", + "ground nutmeg", + "reduced-fat sour cream", + "fresh chives", + "baking potatoes", + "fat free less sodium chicken broth", + "butter", + "white pepper", + "reduced fat milk", + "salt" + ] + }, + { + "id": 8763, + "cuisine": "italian", + "ingredients": [ + "lemon juice", + "butter", + "large shrimp", + "olive oil", + "seasoning mix", + "linguine" + ] + }, + { + "id": 23062, + "cuisine": "italian", + "ingredients": [ + "new potatoes", + "italian seasoning", + "paprika", + "vegetable oil", + "olive oil", + "salt" + ] + }, + { + "id": 22418, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "spring onions", + "sugar", + "rice cakes", + "onions", + "syrup", + "cake", + "anchovies", + "chilli paste" + ] + }, + { + "id": 30180, + "cuisine": "brazilian", + "ingredients": [ + "cocoa", + "chocolate sprinkles", + "butter", + "vanilla essence", + "sweetened condensed milk", + "dry coconut" + ] + }, + { + "id": 4884, + "cuisine": "mexican", + "ingredients": [ + "tilapia fillets", + "Haas avocados", + "cilantro", + "white corn tortillas", + "fresh cilantro", + "lime wedges", + "garlic cloves", + "lime juice", + "jalapeno chilies", + "salt", + "pepper", + "olive oil", + "diced tomatoes", + "onions" + ] + }, + { + "id": 796, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "vegetable oil", + "baking soda", + "buttermilk", + "yellow corn meal", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 45212, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "garlic cloves", + "tea bags", + "lemon", + "onions", + "ice cubes", + "rosemary", + "chicken pieces", + "brown sugar", + "cracked black pepper" + ] + }, + { + "id": 25964, + "cuisine": "french", + "ingredients": [ + "olive oil", + "lemon", + "all-purpose flour", + "chicken broth", + "asparagus", + "fresh tarragon", + "fresh parsley", + "bone-in chicken breast halves", + "dry white wine", + "salt", + "onions", + "fresh ginger root", + "heavy cream", + "sour cream" + ] + }, + { + "id": 28182, + "cuisine": "italian", + "ingredients": [ + "spinach leaves", + "grated parmesan cheese", + "garlic cloves", + "tomatoes", + "ground nutmeg", + "chopped onion", + "fresh basil", + "wonton wrappers", + "olive oil", + "ricotta cheese" + ] + }, + { + "id": 30042, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "flour", + "butter", + "juice", + "lasagna noodles", + "dry white wine", + "grated nutmeg", + "celery", + "tomatoes", + "grated parmesan cheese", + "vegetable oil", + "sweet italian sausage", + "onions", + "hand", + "whole milk", + "salt", + "carrots" + ] + }, + { + "id": 11936, + "cuisine": "french", + "ingredients": [ + "water", + "cooking spray", + "black pepper", + "sherry vinegar", + "roquefort cheese", + "panko", + "beets", + "kosher salt", + "half & half" + ] + }, + { + "id": 4979, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "cilantro leaves", + "juice", + "clove", + "rustic bread", + "hot sauce", + "avocado", + "ground black pepper", + "zest", + "skirt steak", + "kosher salt", + "crema", + "scallions" + ] + }, + { + "id": 45727, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "cream of chicken soup", + "cheese", + "chiles", + "green enchilada sauce", + "flour tortillas" + ] + }, + { + "id": 4873, + "cuisine": "cajun_creole", + "ingredients": [ + "instant rice", + "garlic powder", + "paprika", + "water", + "vegetable oil", + "onions", + "polish sausage", + "hot pepper sauce", + "green pepper", + "sugar", + "dried thyme", + "diced tomatoes", + "dried oregano" + ] + }, + { + "id": 10511, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "garlic", + "chicken", + "light sour cream", + "chili powder", + "chopped cilantro fresh", + "lettuce", + "green onions", + "light cream cheese", + "shredded cheddar cheese", + "diced tomatoes", + "cumin" + ] + }, + { + "id": 41853, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "salt", + "ground cumin", + "water", + "vegetable oil", + "dried oregano", + "dried cornhusks", + "chili powder", + "chopped onion", + "pork tenderloin", + "paprika", + "masa harina" + ] + }, + { + "id": 3377, + "cuisine": "thai", + "ingredients": [ + "sugar", + "water", + "shallots", + "red curry paste", + "snow peas", + "fresh leav spinach", + "thai noodles", + "light coconut milk", + "garlic cloves", + "cooked chicken breasts", + "red chili peppers", + "curry powder", + "lime wedges", + "ground coriander", + "ground turmeric", + "fish sauce", + "fat free less sodium chicken broth", + "green onions", + "crushed red pepper", + "chopped cilantro fresh", + "canola oil" + ] + }, + { + "id": 9834, + "cuisine": "french", + "ingredients": [ + "plums", + "canola oil", + "sugar", + "all-purpose flour", + "unsalted butter", + "apricots", + "cold water", + "salt" + ] + }, + { + "id": 5116, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "extra-virgin olive oil", + "plum tomatoes", + "fresh rosemary", + "balsamic vinegar", + "beef tenderloin steaks", + "minced garlic", + "cracked black pepper", + "fresh parsley", + "cannellini beans", + "salt" + ] + }, + { + "id": 29391, + "cuisine": "mexican", + "ingredients": [ + "beef bouillon", + "corn tortillas", + "water", + "pinto beans", + "onions", + "salt", + "ground beef", + "ground black pepper", + "Mexican cheese" + ] + }, + { + "id": 25349, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "garlic powder", + "celery", + "Accent Seasoning", + "scallions", + "adobo seasoning", + "ground ginger", + "soy sauce", + "carrots", + "spring roll wrappers", + "ground pepper", + "ground beef" + ] + }, + { + "id": 44813, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "chinese chives", + "dumpling wrappers", + "ground pork", + "chinese rice wine", + "fresh ginger", + "ground white pepper", + "kosher salt", + "napa cabbage" + ] + }, + { + "id": 914, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "extra-virgin olive oil", + "lime", + "Mexican beer", + "shredded Monterey Jack cheese", + "black beans", + "jalapeno chilies", + "garlic", + "corn kernels", + "diced tomatoes" + ] + }, + { + "id": 40764, + "cuisine": "mexican", + "ingredients": [ + "corn", + "rice", + "pepper", + "cheese", + "cilantro", + "water", + "Wolf Brand Chili" + ] + }, + { + "id": 18454, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "dijon mustard", + "purple onion", + "olive oil", + "red beans", + "shrimp", + "water", + "bell pepper", + "rice", + "soy sauce", + "garlic powder", + "butter", + "Louisiana Cajun Seasoning" + ] + }, + { + "id": 39516, + "cuisine": "italian", + "ingredients": [ + "pepper", + "butter", + "dry white wine", + "salt", + "sea scallops", + "lemon", + "shallots", + "flat leaf parsley" + ] + }, + { + "id": 42770, + "cuisine": "italian", + "ingredients": [ + "genoa salami", + "roasted red peppers", + "penne pasta", + "olive oil", + "garlic", + "plum tomatoes", + "mozzarella cheese", + "balsamic vinegar", + "yellow onion", + "ground black pepper", + "black olives" + ] + }, + { + "id": 38011, + "cuisine": "moroccan", + "ingredients": [ + "water", + "onions", + "chicken", + "ground ginger", + "garbanzo beans", + "chopped garlic", + "olive oil", + "chopped cilantro fresh", + "tumeric", + "flat leaf parsley", + "saffron" + ] + }, + { + "id": 35009, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "eggplant", + "freshly ground pepper", + "olive oil", + "fresh mozzarella", + "oregano", + "kosher salt", + "whole peeled tomatoes", + "onions", + "bread crumb fresh", + "parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 46930, + "cuisine": "russian", + "ingredients": [ + "milk", + "rum", + "salt", + "warm water", + "flour", + "lemon", + "blanched almonds", + "sugar", + "dry yeast", + "butter", + "candied fruit", + "vanilla beans", + "egg yolks", + "raisins" + ] + }, + { + "id": 17826, + "cuisine": "greek", + "ingredients": [ + "avocado", + "extra-virgin olive oil", + "kosher salt", + "fresh lemon juice", + "mint", + "low-fat yogurt", + "minced garlic", + "cucumber" + ] + }, + { + "id": 5205, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "salt", + "chile pepper", + "garlic cloves", + "green tomatoes", + "nopales", + "vegetable oil", + "coriander" + ] + }, + { + "id": 6787, + "cuisine": "italian", + "ingredients": [ + "pasta", + "broccoli florets", + "olive oil", + "salt", + "grated parmesan cheese", + "pepper", + "garlic" + ] + }, + { + "id": 12603, + "cuisine": "spanish", + "ingredients": [ + "minced garlic", + "smoked paprika", + "dry red wine", + "olive oil", + "andouille sausage", + "fresh oregano" + ] + }, + { + "id": 24584, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "ground black pepper", + "chopped onion", + "dried lentils", + "curry powder", + "peeled fresh ginger", + "plain whole-milk yogurt", + "tomato purée", + "water", + "bay leaves", + "ground coriander", + "fat free less sodium chicken broth", + "olive oil", + "salt", + "ground cumin" + ] + }, + { + "id": 25547, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "orange rind", + "bourbon whiskey", + "milk", + "orange zest", + "chocolate ice cream" + ] + }, + { + "id": 30395, + "cuisine": "italian", + "ingredients": [ + "shredded mozzarella cheese", + "grated parmesan cheese", + "prego traditional italian sauce", + "spaghetti", + "boneless skinless chicken breasts" + ] + }, + { + "id": 3030, + "cuisine": "mexican", + "ingredients": [ + "corn", + "cheese", + "zucchini", + "onions", + "buttermilk", + "olive oil", + "garlic" + ] + }, + { + "id": 11289, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "all-purpose flour", + "milk", + "shredded sharp cheddar cheese", + "dry mustard", + "fresh parsley", + "baking powder", + "salt" + ] + }, + { + "id": 10643, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "shredded cheddar cheese", + "butter", + "garlic cloves", + "sugar", + "flour tortillas", + "salsa", + "dried oregano", + "green chile", + "roasted red peppers", + "salt", + "onions", + "pepper", + "cooked chicken", + "cream cheese", + "ground cumin" + ] + }, + { + "id": 11402, + "cuisine": "cajun_creole", + "ingredients": [ + "food colouring", + "active dry yeast", + "large eggs", + "cake flour", + "greens", + "ground cinnamon", + "beans", + "large egg yolks", + "light corn syrup", + "confectioners sugar", + "eggs", + "milk", + "unsalted butter", + "vanilla extract", + "bread flour", + "sugar", + "honey", + "almond extract", + "salt" + ] + }, + { + "id": 10176, + "cuisine": "indian", + "ingredients": [ + "eggplant", + "fresh lemon juice", + "plain yogurt", + "sesame oil", + "coriander seeds", + "chopped fresh mint", + "curry powder", + "crushed red pepper" + ] + }, + { + "id": 38303, + "cuisine": "southern_us", + "ingredients": [ + "chile paste", + "corn husks" + ] + }, + { + "id": 10237, + "cuisine": "moroccan", + "ingredients": [ + "salt", + "ground black pepper", + "couscous", + "water", + "lemon juice", + "extra-virgin olive oil", + "arugula" + ] + }, + { + "id": 46901, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "jalapeno chilies", + "salt", + "lime juice", + "extra-virgin olive oil", + "freshly ground pepper", + "seedless cucumber", + "mint leaves", + "cilantro leaves", + "sweet onion", + "garlic", + "hass avocado" + ] + }, + { + "id": 40928, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "shredded carrots", + "beansprouts", + "garlic powder", + "shredded cabbage", + "canola oil", + "ground black pepper", + "green onions", + "egg roll wrappers", + "corn starch" + ] + }, + { + "id": 10818, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "pork and beans", + "bacon", + "onions", + "yellow mustard", + "lemon juice", + "light brown sugar", + "maple syrup" + ] + }, + { + "id": 21541, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "garlic chili sauce", + "low sodium soy sauce", + "rice vinegar", + "bamboo shoots", + "chicken stock", + "green onions", + "carrots", + "shiitake", + "firm tofu" + ] + }, + { + "id": 14708, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "garlic powder", + "crushed red pepper", + "dried parsley", + "black pepper", + "onion powder", + "cayenne pepper", + "sugar", + "ground nutmeg", + "salt", + "dried thyme", + "paprika", + "ground allspice" + ] + }, + { + "id": 30811, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "water", + "roma tomatoes", + "Mexican oregano", + "cracked black pepper", + "tortilla chips", + "chopped cilantro fresh", + "kosher salt", + "sliced black olives", + "whole milk", + "vegetable oil", + "purple onion", + "corn starch", + "unsweetened cocoa powder", + "Velveeta", + "cider vinegar", + "beef brisket", + "bay leaves", + "ancho powder", + "salsa", + "sour cream", + "ground cumin", + "chipotle chile", + "dark lager", + "jalapeno chilies", + "apple cider vinegar", + "tomatoes with juice", + "pinto beans", + "extra sharp cheddar cheese" + ] + }, + { + "id": 6974, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "onion powder", + "ground pork", + "ground beef", + "tomato paste", + "pepper", + "granulated sugar", + "buttermilk", + "salt", + "onions", + "bread crumbs", + "garlic powder", + "red pepper flakes", + "garlic", + "fresh parsley", + "eggs", + "crushed tomatoes", + "grated parmesan cheese", + "diced tomatoes", + "flat leaf parsley", + "dried oregano" + ] + }, + { + "id": 32181, + "cuisine": "french", + "ingredients": [ + "eggplant", + "parmigiano reggiano cheese", + "vegetable stock", + "red bell pepper", + "tomato paste", + "zucchini", + "fresh thyme leaves", + "purple onion", + "polenta", + "unsalted butter", + "cooking spray", + "fresh chevre", + "fresh basil leaves", + "black pepper", + "whole peeled tomatoes", + "coarse salt", + "all-purpose flour", + "chopped garlic" + ] + }, + { + "id": 40732, + "cuisine": "indian", + "ingredients": [ + "sugar", + "coriander powder", + "salt", + "oil", + "ground turmeric", + "tomatoes", + "cream", + "kasuri methi", + "curds", + "onions", + "clove", + "cottage cheese", + "butter", + "green cardamom", + "cardamom", + "red chili powder", + "milk", + "garlic", + "cumin seed", + "cashew nuts" + ] + }, + { + "id": 20451, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "sweet paprika", + "granulated garlic", + "onion powder", + "dried thyme", + "dried oregano", + "black pepper", + "cayenne pepper" + ] + }, + { + "id": 24442, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "ground black pepper", + "large garlic cloves", + "garlic cloves", + "onions", + "fennel seeds", + "olive oil", + "dry white wine", + "extra-virgin olive oil", + "flat leaf parsley", + "kosher salt", + "flour", + "ground pork", + "ground turkey", + "chuck", + "cremini mushrooms", + "grated parmesan cheese", + "diced tomatoes", + "country bread", + "spaghetti" + ] + }, + { + "id": 6056, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "olive oil", + "rice vinegar", + "carrots", + "pepper", + "bacon slices", + "hot sauce", + "granny smith apples", + "red cabbage", + "pineapple juice", + "sweet onion", + "salt", + "lemon juice" + ] + }, + { + "id": 31124, + "cuisine": "french", + "ingredients": [ + "sugar", + "ground nutmeg", + "large egg yolks", + "vanilla extract", + "golden brown sugar", + "whipping cream", + "ground cinnamon", + "instant espresso powder" + ] + }, + { + "id": 22627, + "cuisine": "italian", + "ingredients": [ + "cauliflower", + "garlic", + "olive oil", + "rotini", + "pepper", + "salt", + "grated parmesan cheese" + ] + }, + { + "id": 9990, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "ground nutmeg", + "salt", + "dried thyme", + "paprika", + "ground allspice", + "black pepper", + "onion powder", + "cayenne pepper", + "ground cinnamon", + "garlic powder", + "crushed red pepper", + "dried parsley" + ] + }, + { + "id": 14627, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "king prawns", + "basmati rice", + "cilantro leaves", + "onions", + "vegetable oil", + "curry paste", + "tomatoes", + "garlic cloves", + "frozen peas" + ] + }, + { + "id": 38487, + "cuisine": "southern_us", + "ingredients": [ + "cherry tomatoes", + "hot sauce", + "mayonaise", + "pimentos", + "iceberg lettuce", + "andouille sausage", + "ground black pepper", + "sharp cheddar cheese", + "kosher salt", + "buttermilk" + ] + }, + { + "id": 32947, + "cuisine": "mexican", + "ingredients": [ + "french baguette", + "cracked black pepper", + "key lime juice", + "mayonaise", + "worcestershire sauce", + "garlic cloves", + "romaine lettuce", + "grated parmesan cheese", + "anchovy fillets", + "dijon mustard", + "extra-virgin olive oil" + ] + }, + { + "id": 14306, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "vegetable oil", + "chopped cilantro fresh", + "chiles", + "flank steak", + "purple onion", + "cayenne", + "yellow bell pepper", + "minced garlic", + "brown rice", + "salt" + ] + }, + { + "id": 30052, + "cuisine": "french", + "ingredients": [ + "sugar", + "tawny port", + "chopped fresh thyme", + "ground allspice", + "California bay leaves", + "duck breasts", + "kosher salt", + "large eggs", + "heavy cream", + "fatback", + "fresh marjoram", + "milk", + "shallots", + "dry red wine", + "shelled pistachios", + "ground ginger", + "black pepper", + "fresh thyme", + "red wine vinegar", + "cognac" + ] + }, + { + "id": 1563, + "cuisine": "southern_us", + "ingredients": [ + "shredded extra sharp cheddar cheese", + "kosher salt", + "crushed red pepper", + "half & half", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 12531, + "cuisine": "italian", + "ingredients": [ + "onions", + "fresh orange juice", + "balsamic vinegar", + "extra-virgin olive oil" + ] + }, + { + "id": 27679, + "cuisine": "indian", + "ingredients": [ + "halibut fillets", + "light coconut milk", + "garlic cloves", + "canola oil", + "fat free less sodium chicken broth", + "finely chopped onion", + "salt", + "fresh parsley", + "ground black pepper", + "crushed red pepper", + "fresh lemon juice", + "ground cumin", + "water", + "peeled fresh ginger", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 22355, + "cuisine": "southern_us", + "ingredients": [ + "cream sweeten whip", + "egg yolks", + "lime juice", + "sweetened condensed milk", + "graham crackers", + "butter", + "lime zest", + "granulated sugar" + ] + }, + { + "id": 86, + "cuisine": "moroccan", + "ingredients": [ + "water", + "boneless skinless chicken breasts", + "salt", + "lemon juice", + "garam masala", + "watercress", + "ground coriander", + "toasted almonds", + "honey", + "shallots", + "chickpeas", + "smoked paprika", + "pepper", + "dried apricot", + "extra-virgin olive oil", + "hearts of romaine", + "fresh parsley" + ] + }, + { + "id": 41267, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "shallots", + "2% reduced-fat milk", + "olive oil", + "grated parmesan cheese", + "baby spinach", + "all-purpose flour", + "unsalted butter", + "dry white wine", + "large garlic cloves", + "grated lemon peel", + "fontina cheese", + "large eggs", + "ricotta cheese", + "salt" + ] + }, + { + "id": 37289, + "cuisine": "cajun_creole", + "ingredients": [ + "paprika", + "ground black pepper", + "ground white pepper", + "garlic powder", + "cayenne pepper", + "chili powder" + ] + }, + { + "id": 7814, + "cuisine": "french", + "ingredients": [ + "milk", + "swiss cheese", + "all-purpose flour", + "sour cream", + "white wine", + "garlic powder", + "paprika", + "fresh mushrooms", + "boneless skinless chicken breast halves", + "eggs", + "olive oil", + "condensed cream of mushroom soup", + "dry bread crumbs", + "fresh parsley", + "curry powder", + "ground black pepper", + "salt", + "ham" + ] + }, + { + "id": 17787, + "cuisine": "mexican", + "ingredients": [ + "dried currants", + "salt", + "chayotes", + "jalapeno chilies", + "garlic cloves", + "cherry tomatoes", + "freshly ground pepper", + "chopped cilantro", + "purple onion", + "tequila" + ] + }, + { + "id": 1792, + "cuisine": "italian", + "ingredients": [ + "baking soda", + "dried tart cherries", + "sugar", + "semisweet chocolate", + "all-purpose flour", + "grated orange peel", + "unsalted butter", + "salt", + "hazelnuts", + "large eggs", + "unsweetened cocoa powder" + ] + }, + { + "id": 8026, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "sesame seeds", + "hot water", + "sugar", + "light corn syrup", + "butter cooking spray" + ] + }, + { + "id": 33608, + "cuisine": "japanese", + "ingredients": [ + "sake", + "broccoli florets", + "white wine vinegar", + "mustard seeds", + "water", + "yellow bell pepper", + "garlic cloves", + "ground black pepper", + "cauliflower florets", + "carrots", + "sugar", + "green onions", + "salt" + ] + }, + { + "id": 254, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "whole milk", + "semolina flour", + "unsalted butter", + "ground nutmeg", + "kosher salt", + "grated parmesan cheese" + ] + }, + { + "id": 415, + "cuisine": "brazilian", + "ingredients": [ + "cachaca", + "ice cubes", + "blackberries", + "white sugar", + "lime" + ] + }, + { + "id": 23736, + "cuisine": "italian", + "ingredients": [ + "ground cloves", + "egg whites", + "dark brown sugar", + "candied orange peel", + "ground black pepper", + "salt", + "baking soda", + "all purpose unbleached flour", + "whole almonds", + "unsalted butter", + "orange blossom honey" + ] + }, + { + "id": 21870, + "cuisine": "mexican", + "ingredients": [ + "fat free less sodium chicken broth", + "short-grain rice", + "ground sirloin", + "carrots", + "ground cumin", + "white bread", + "peeled tomatoes", + "zucchini", + "chopped onion", + "boiling water", + "lean ground pork", + "large egg whites", + "cooking spray", + "garlic cloves", + "dried oregano", + "fresh cilantro", + "ground black pepper", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 18444, + "cuisine": "indian", + "ingredients": [ + "salt", + "peanut oil", + "tamarind paste", + "red chili peppers", + "fenugreek seeds", + "cilantro leaves" + ] + }, + { + "id": 15413, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "lime", + "cilantro", + "avocado", + "black beans", + "bell pepper", + "salt", + "tomatoes", + "corn", + "jalapeno chilies", + "cumin", + "black pepper", + "kale", + "purple onion" + ] + }, + { + "id": 14733, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "brown rice", + "vegetable broth", + "peanuts", + "sesame oil", + "chili bean sauce", + "silken tofu", + "szechwan peppercorns", + "garlic", + "leeks", + "ginger", + "scallions" + ] + }, + { + "id": 47769, + "cuisine": "russian", + "ingredients": [ + "water", + "vegetable oil", + "sour cream", + "caraway seeds", + "unsalted butter", + "salt", + "onions", + "cold water", + "large egg yolks", + "baking potatoes", + "double-acting baking powder", + "fresh dill", + "large eggs", + "all-purpose flour", + "cabbage" + ] + }, + { + "id": 46004, + "cuisine": "mexican", + "ingredients": [ + "yellow onion", + "ground cumin", + "garlic", + "chopped cilantro", + "tomatillos", + "lard", + "salt", + "serrano chile" + ] + }, + { + "id": 120, + "cuisine": "italian", + "ingredients": [ + "hearts of palm", + "ground black pepper", + "fresh orange juice", + "Belgian endive", + "radicchio", + "shallots", + "cheese", + "kosher salt", + "sherry vinegar", + "baby spinach", + "honey", + "dijon mustard", + "extra-virgin olive oil" + ] + }, + { + "id": 36817, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "chopped garlic", + "large eggs", + "peanut oil", + "milk", + "rice", + "dried rosemary", + "butter", + "rice flour" + ] + }, + { + "id": 24495, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "lemon", + "shredded Monterey Jack cheese", + "fresh basil", + "pizza sauce", + "dried oregano", + "refrigerated pizza dough", + "dried parsley", + "potatoes", + "broccoli" + ] + }, + { + "id": 42497, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "pecorino romano cheese", + "radicchio", + "crushed red pepper", + "balsamic vinegar", + "garlic cloves", + "grated orange peel", + "extra-virgin olive oil" + ] + }, + { + "id": 18243, + "cuisine": "indian", + "ingredients": [ + "tandoori spices", + "salt", + "plain flour", + "lime wedges", + "cod", + "pepper", + "cumin", + "bread crumbs", + "beaten eggs" + ] + }, + { + "id": 25525, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "soy sauce", + "vegetable oil", + "all-purpose flour", + "toasted sesame oil", + "cooked rice", + "fresh ginger", + "salt", + "cayenne pepper", + "chicken legs", + "fresh cilantro", + "garlic", + "red curry paste", + "unsweetened coconut milk", + "brown sugar", + "ground black pepper", + "rice vinegar", + "creamy peanut butter" + ] + }, + { + "id": 15519, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "minced garlic", + "lemon", + "boneless skinless chicken", + "mustard seeds", + "chopped cilantro", + "frozen spinach", + "tomatoes", + "garam masala", + "paprika", + "ground coriander", + "chutney", + "baby potatoes", + "curry leaves", + "minced ginger", + "grapeseed oil", + "chickpeas", + "cinnamon sticks", + "onions", + "clove", + "tumeric", + "zucchini", + "salt", + "cumin seed", + "sour cream", + "ground cumin" + ] + }, + { + "id": 76, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "taco seasoning mix", + "non-fat sour cream", + "fresh cilantro", + "Mexican cheese blend", + "onions", + "black beans", + "extra-lean ground beef", + "corn tortillas", + "corn", + "jalapeno chilies" + ] + }, + { + "id": 39674, + "cuisine": "spanish", + "ingredients": [ + "boneless chicken skinless thigh", + "red wine vinegar", + "long-grain rice", + "green olives", + "honey", + "salt", + "tomatoes", + "pepper", + "purple onion", + "fresh parsley", + "tumeric", + "olive oil", + "spanish chorizo" + ] + }, + { + "id": 49222, + "cuisine": "japanese", + "ingredients": [ + "fish sauce", + "seafood stock", + "sesame oil", + "dried shiitake mushrooms", + "ginger paste", + "dashi", + "soft tofu", + "chilli paste", + "oil", + "ground black pepper", + "spring onions", + "garlic", + "konbu", + "white onion", + "prawns", + "ramen noodles", + "soft-boiled egg" + ] + }, + { + "id": 37015, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "buttermilk", + "flour", + "bacon grease", + "unsalted butter", + "salt", + "eggs", + "baking powder", + "cornmeal" + ] + }, + { + "id": 29256, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "red pepper flakes", + "medium shrimp", + "water", + "bell pepper", + "salt", + "onions", + "unsweetened coconut milk", + "ground black pepper", + "garlic", + "fresh parsley", + "crushed tomatoes", + "lemon", + "long-grain rice" + ] + }, + { + "id": 39319, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "water", + "asian", + "vegetable oil", + "beansprouts", + "white vinegar", + "pork", + "ground black pepper", + "shallots", + "cucumber", + "perilla", + "chiles", + "honey", + "mint leaves", + "garlic", + "fresh lime juice", + "sugar", + "peanuts", + "spring onions", + "oil", + "noodles" + ] + }, + { + "id": 46027, + "cuisine": "irish", + "ingredients": [ + "buttermilk", + "all-purpose flour", + "salt", + "baking soda" + ] + }, + { + "id": 40558, + "cuisine": "mexican", + "ingredients": [ + "melted butter", + "lean ground beef", + "mexican cooking sauce", + "monterey jack", + "refried beans", + "yellow onion", + "flour tortillas" + ] + }, + { + "id": 40616, + "cuisine": "french", + "ingredients": [ + "large garlic cloves", + "tomato paste", + "spanish paprika", + "hungarian sweet paprika", + "cayenne pepper", + "mayonaise", + "fresh lemon juice" + ] + }, + { + "id": 33893, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "enchilada sauce", + "cooked chicken breasts", + "cilantro", + "green chilies", + "corn tortillas", + "canola oil", + "jalapeno chilies", + "cream cheese", + "sour cream", + "cumin", + "garlic", + "shredded cheese", + "onions" + ] + }, + { + "id": 44227, + "cuisine": "indian", + "ingredients": [ + "clove", + "water", + "ginger", + "oil", + "dried dates", + "tumeric", + "eggplant", + "salt", + "cinnamon sticks", + "tomatoes", + "corn", + "garlic", + "black mustard seeds", + "curry leaf", + "white vinegar", + "sugar", + "chili powder", + "cumin seed", + "onions" + ] + }, + { + "id": 10018, + "cuisine": "indian", + "ingredients": [ + "salt", + "olive oil", + "fresh lime juice", + "sugar", + "scallions", + "hot green chile", + "ground cumin" + ] + }, + { + "id": 16760, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "chili powder", + "onions", + "kosher salt", + "serrano peppers", + "garlic", + "ground cumin", + "chicken stock", + "tortillas", + "diced tomatoes", + "monterey jack", + "pepper", + "boneless skinless chicken breasts", + "green pepper" + ] + }, + { + "id": 42369, + "cuisine": "thai", + "ingredients": [ + "green cabbage", + "water", + "green onions", + "garlic", + "canola oil", + "fish sauce", + "honey", + "cilantro", + "red bell pepper", + "low sodium soy sauce", + "lemongrass", + "boneless skinless chicken breasts", + "carrots", + "sugar", + "peanuts", + "yellow bell pepper", + "fresh lime juice" + ] + }, + { + "id": 20660, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "jalapeno chilies", + "chopped cilantro", + "lime juice", + "tortilla chips", + "black beans", + "purple onion", + "ground cumin", + "frozen whole kernel corn", + "salad dressing mix" + ] + }, + { + "id": 39007, + "cuisine": "british", + "ingredients": [ + "nutmeg", + "granny smith apples", + "egg yolks", + "cold water", + "brown sugar", + "mixed dried fruit", + "walnuts", + "eggs", + "mixed spice", + "butter", + "plain flour", + "brandy", + "powdered sugar icing", + "white sugar" + ] + }, + { + "id": 1540, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "fresh parmesan cheese", + "lasagna noodles, cooked and drained", + "frozen chopped spinach", + "low-fat marinara sauce", + "cooking spray", + "garlic cloves", + "egg substitute", + "ground turkey breast", + "chopped onion", + "parsley flakes", + "part-skim mozzarella cheese", + "fat-free cottage cheese" + ] + }, + { + "id": 29609, + "cuisine": "french", + "ingredients": [ + "mussels", + "italian plum tomatoes", + "basil", + "bay leaf", + "virgin olive oil", + "shallots", + "garlic cloves", + "pepper flakes", + "dry white wine", + "halibut", + "medium shrimp", + "bay scallops", + "clam juice", + "thyme" + ] + }, + { + "id": 1304, + "cuisine": "mexican", + "ingredients": [ + "hazelnuts", + "large garlic cloves", + "skinless boneless turkey breast halves", + "olive oil", + "Italian parsley leaves", + "adobo sauce", + "black peppercorns", + "bay leaves", + "bacon slices", + "fresh parsley", + "dried thyme", + "worcestershire sauce", + "fresh lime juice" + ] + }, + { + "id": 1095, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "butter oil", + "honey glazed ham", + "milk", + "pickled jalapenos", + "self rising flour" + ] + }, + { + "id": 6747, + "cuisine": "italian", + "ingredients": [ + "whole grain bread", + "beef deli roast slice thinli", + "olive oil cooking spray", + "dijon mustard", + "jelly", + "watercress", + "smoked gouda" + ] + }, + { + "id": 36712, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "carrots", + "nutmeg", + "unsalted butter", + "sugar", + "salt", + "ground black pepper" + ] + }, + { + "id": 7905, + "cuisine": "southern_us", + "ingredients": [ + "country ham", + "coriander seeds", + "bread and butter pickles", + "shallots", + "yellow onion", + "minced garlic", + "unsalted butter", + "pork tenderloin", + "vegetable oil", + "low salt chicken broth", + "light brown sugar", + "black-eyed peas", + "lemon peel", + "bay leaves", + "pork stock", + "sorghum syrup", + "kosher salt", + "ground black pepper", + "coffee", + "apple cider vinegar", + "cayenne pepper" + ] + }, + { + "id": 34445, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "tap water", + "sugar", + "vegetable oil", + "brown sugar", + "self rising flour", + "chopped pecans", + "cocoa", + "vanilla" + ] + }, + { + "id": 20839, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "cranberries", + "strawberries", + "boiling water", + "cranberry juice", + "diced celery", + "strawberry gelatin", + "crushed pineapple" + ] + }, + { + "id": 4618, + "cuisine": "french", + "ingredients": [ + "olive oil", + "all-purpose flour", + "onions", + "capers", + "chopped fresh thyme", + "garlic cloves", + "unsalted butter", + "anchovy fillets", + "olives", + "water", + "salt", + "bay leaf" + ] + }, + { + "id": 39430, + "cuisine": "french", + "ingredients": [ + "navy beans", + "vegetable oil", + "spaghetti squash", + "vegetable oil cooking spray", + "balsamic vinegar", + "ripe olives", + "leeks", + "salt", + "pepper", + "stewed tomatoes", + "celery" + ] + }, + { + "id": 20426, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "scallions", + "large eggs", + "green cabbage", + "boiling potatoes" + ] + }, + { + "id": 13765, + "cuisine": "mexican", + "ingredients": [ + "corn", + "chili powder", + "chopped cilantro", + "Mexican cheese blend", + "enchilada sauce", + "chicken", + "garlic powder", + "salt", + "cumin", + "black beans", + "flour tortillas", + "sour cream" + ] + }, + { + "id": 39340, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "freshly ground pepper", + "preserved lemon", + "oil-cured black olives", + "chopped cilantro fresh", + "fennel bulb", + "fresh lemon juice", + "sweet onion", + "salt" + ] + }, + { + "id": 101, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "bananas", + "salt", + "chocolate spread", + "cooking spray", + "sugar", + "large eggs", + "all-purpose flour", + "fat free milk", + "vanilla extract" + ] + }, + { + "id": 6152, + "cuisine": "japanese", + "ingredients": [ + "water", + "sugar pea", + "umeboshi", + "japanese rice", + "seasoned rice wine vinegar", + "gari" + ] + }, + { + "id": 10776, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "dry white wine", + "medium shrimp", + "chopped fresh chives", + "smoked paprika", + "marinara sauce", + "fresh lemon juice", + "polenta", + "olive oil", + "cooking spray", + "flat leaf parsley" + ] + }, + { + "id": 42220, + "cuisine": "thai", + "ingredients": [ + "vegetable stock", + "cilantro leaves", + "butternut squash", + "frozen green beans", + "reduced fat coconut milk", + "pineapple", + "onions", + "vegetable oil", + "Thai red curry paste" + ] + }, + { + "id": 12877, + "cuisine": "greek", + "ingredients": [ + "tomato paste", + "olive oil", + "onions", + "pepper", + "garlic", + "tomatoes", + "beef bouillon", + "long grain white rice", + "frozen chopped spinach", + "water", + "salt" + ] + }, + { + "id": 20967, + "cuisine": "indian", + "ingredients": [ + "mixed dried fruit", + "chopped onion", + "water", + "paprika", + "chicken", + "sugar", + "butter", + "long grain white rice", + "curry powder", + "salt" + ] + }, + { + "id": 7757, + "cuisine": "russian", + "ingredients": [ + "unsalted butter", + "salt", + "bread crumb fresh", + "cinnamon", + "walnuts", + "sugar", + "baking potatoes", + "all-purpose flour", + "large egg yolks", + "plums" + ] + }, + { + "id": 33200, + "cuisine": "italian", + "ingredients": [ + "sugar", + "baking powder", + "unsalted butter", + "blanched almonds", + "kosher salt", + "all-purpose flour", + "large eggs" + ] + }, + { + "id": 31303, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "butter", + "water", + "yeast", + "white flour", + "salt", + "eggs", + "milk" + ] + }, + { + "id": 26609, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "fresh cheese", + "sugar", + "strawberries", + "egg whites" + ] + }, + { + "id": 12406, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "diced tomatoes", + "onions", + "corn kernels", + "chicken breasts", + "salt", + "ground pepper", + "chili powder", + "green pepper", + "chicken stock", + "serrano peppers", + "garlic", + "monterey jack" + ] + }, + { + "id": 16355, + "cuisine": "mexican", + "ingredients": [ + "canola", + "chili powder", + "salt", + "long-grain rice", + "green chile", + "green onions", + "green enchilada sauce", + "frozen corn kernels", + "chipotle sauce", + "chicken stock", + "Mexican cheese blend", + "shredded lettuce", + "yellow onion", + "sour cream", + "black beans", + "boneless skinless chicken breasts", + "diced tomatoes", + "tortilla chips", + "cumin" + ] + }, + { + "id": 37558, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "garam masala", + "salt", + "ground ginger", + "curry powder", + "boneless skinless chicken breasts", + "onions", + "plain yogurt", + "granulated sugar", + "coconut milk", + "tomato paste", + "olive oil", + "garlic" + ] + }, + { + "id": 7266, + "cuisine": "french", + "ingredients": [ + "cremini mushrooms", + "medium egg noodles", + "reduced-fat sour cream", + "boneless skinless chicken breast halves", + "pepper", + "leeks", + "shiitake mushroom caps", + "fat free less sodium chicken broth", + "sherry", + "salt", + "olive oil", + "dry white wine", + "fresh parsley" + ] + }, + { + "id": 40166, + "cuisine": "indian", + "ingredients": [ + "salt", + "oil", + "ground turmeric", + "red chili peppers", + "green chilies", + "mustard seeds", + "spinach", + "cubed potatoes", + "lemon juice", + "ground cumin", + "coriander powder", + "cumin seed", + "onions" + ] + }, + { + "id": 9838, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "dill pickles", + "black pepper", + "cayenne pepper", + "eggs", + "ranch dressing", + "seasoned bread crumbs", + "peanut oil" + ] + }, + { + "id": 15180, + "cuisine": "chinese", + "ingredients": [ + "water", + "black rice" + ] + }, + { + "id": 42912, + "cuisine": "indian", + "ingredients": [ + "boneless skinless chicken breasts", + "cilantro leaves", + "cumin", + "minced garlic", + "paprika", + "lemon juice", + "plain yogurt", + "onion powder", + "cayenne pepper", + "garam masala", + "ginger", + "coriander" + ] + }, + { + "id": 28678, + "cuisine": "italian", + "ingredients": [ + "white wine", + "butter", + "capers", + "salt and ground black pepper", + "extra-virgin olive oil", + "tilapia fillets", + "button mushrooms", + "minced garlic", + "lemon" + ] + }, + { + "id": 33041, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "all-purpose flour", + "saltines", + "butter", + "green tomatoes", + "eggs", + "salt" + ] + }, + { + "id": 44379, + "cuisine": "chinese", + "ingredients": [ + "peanut oil", + "zucchini", + "onions", + "minced garlic", + "oyster sauce", + "salt" + ] + }, + { + "id": 4824, + "cuisine": "mexican", + "ingredients": [ + "hellmann’ or best food canola cholesterol free mayonnais", + "tomatoes", + "whole kernel corn, drain", + "purple onion", + "black beans", + "chopped cilantro fresh" + ] + }, + { + "id": 40289, + "cuisine": "jamaican", + "ingredients": [ + "red kidney beans", + "fresh thyme", + "serrano", + "coconut milk", + "cold water", + "ground black pepper", + "garlic", + "long-grain rice", + "ground cinnamon", + "scotch bonnet chile", + "ground allspice", + "smoked bacon", + "sea salt", + "scallions" + ] + }, + { + "id": 7779, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "bread machine yeast", + "bread", + "milk", + "warm water", + "salt", + "eggs", + "butter" + ] + }, + { + "id": 37281, + "cuisine": "greek", + "ingredients": [ + "fresh oregano", + "dry white wine", + "finely chopped onion", + "fresh lemon juice", + "all-purpose flour" + ] + }, + { + "id": 25203, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "rice vinegar", + "brown sugar", + "ginger", + "lime", + "garlic", + "low sodium soy sauce", + "vegetable oil" + ] + }, + { + "id": 42520, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "cilantro leaves", + "onions", + "garlic paste", + "chili powder", + "cumin seed", + "ground cumin", + "tomatoes", + "coriander powder", + "green chilies", + "ground turmeric", + "black-eyed peas", + "salt", + "oil" + ] + }, + { + "id": 39816, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "green leaf lettuce", + "olive oil", + "cucumber", + "feta cheese", + "dried oregano", + "pitted black olives", + "red wine vinegar" + ] + }, + { + "id": 7575, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "paprika", + "lime zest", + "minced garlic", + "dried oregano", + "kosher salt", + "loin pork chops", + "hot red pepper flakes", + "olive oil", + "ground cumin" + ] + }, + { + "id": 47355, + "cuisine": "mexican", + "ingredients": [ + "radishes", + "chopped cilantro fresh", + "corn kernels", + "green onions", + "jalapeno chilies", + "olive oil", + "fresh lime juice" + ] + }, + { + "id": 35344, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "pepper", + "sauce", + "panko breadcrumbs", + "granulated garlic", + "dried thyme", + "green pepper", + "oregano", + "ketchup", + "gravy", + "diced yellow onion", + "crushed cornflakes", + "salt", + "ground beef" + ] + }, + { + "id": 1247, + "cuisine": "indian", + "ingredients": [ + "water", + "vegetable stock", + "onions", + "tomatoes", + "olive oil", + "salt", + "curry powder", + "garlic", + "fresh coriander", + "chopped tomatoes", + "frozen mixed vegetables" + ] + }, + { + "id": 31265, + "cuisine": "italian", + "ingredients": [ + "pepper", + "ranch dressing", + "frozen chopped spinach", + "large eggs", + "jumbo pasta shells", + "parmesan cheese", + "ricotta cheese", + "fresh basil", + "marinara sauce", + "shredded mozzarella cheese" + ] + }, + { + "id": 10392, + "cuisine": "russian", + "ingredients": [ + "tomatoes", + "cracked black pepper", + "ground coriander", + "ground cumin", + "boneless skinless chicken breasts", + "green pepper", + "rapeseed oil", + "plain yogurt", + "salt", + "garlic cloves", + "tomato paste", + "chili powder", + "gingerroot", + "onions" + ] + }, + { + "id": 47252, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "sugar", + "diced tomatoes", + "angel hair", + "bacon", + "onions", + "cider vinegar", + "crushed red pepper" + ] + }, + { + "id": 46337, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "sesame oil", + "pork shoulder", + "lettuce", + "asian pear", + "Gochujang base", + "fresh ginger", + "corn syrup", + "onions", + "brown sugar", + "rice wine", + "scallions" + ] + }, + { + "id": 27297, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "cooked chicken", + "corn tortillas", + "green chile", + "garlic powder", + "red pepper", + "tomato paste", + "water", + "chili powder", + "canned black beans", + "flour tortillas", + "Campbell's Condensed Cream of Chicken Soup" + ] + }, + { + "id": 31284, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "chicken cutlets", + "chicken broth", + "ground black pepper", + "fresh lemon juice", + "olive oil", + "garlic", + "capers", + "unsalted butter", + "flat leaf parsley" + ] + }, + { + "id": 29486, + "cuisine": "chinese", + "ingredients": [ + "milk", + "flour", + "scallions", + "sugar", + "unsalted butter", + "cake flour", + "bread flour", + "water", + "instant yeast", + "salt", + "char siu", + "eggs", + "roasted sesame seeds", + "char siu sauce", + "oyster sauce" + ] + }, + { + "id": 903, + "cuisine": "italian", + "ingredients": [ + "solid white tuna in oil", + "purple onion", + "red wine vinegar", + "fresh parsley", + "cannellini beans", + "chopped fresh sage", + "extra-virgin olive oil" + ] + }, + { + "id": 8524, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "toasted sesame oil", + "wasabi paste", + "kosher salt", + "quail eggs", + "mayonaise", + "furikake" + ] + }, + { + "id": 24190, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "vegetables", + "salt", + "ginger paste", + "garlic paste", + "butter", + "coriander", + "fenugreek leaves", + "garam masala", + "onions", + "ground cumin", + "fresh spinach", + "paneer", + "ground turmeric" + ] + }, + { + "id": 6517, + "cuisine": "spanish", + "ingredients": [ + "white vinegar", + "salt", + "bay leaves", + "garlic cloves", + "extra-virgin olive oil", + "fresh parsley", + "jalapeno chilies", + "fresh oregano" + ] + }, + { + "id": 6758, + "cuisine": "french", + "ingredients": [ + "sherry vinegar", + "fresh thyme leaves", + "extra-virgin olive oil", + "fresh parsley leaves", + "large egg yolks", + "yukon gold potatoes", + "fresh tarragon", + "mesclun", + "fresh chervil", + "basil leaves", + "balsamic vinegar", + "goat cheese", + "thyme sprigs", + "shallots", + "heavy cream", + "brine-cured black olives", + "fresh basil leaves" + ] + }, + { + "id": 27552, + "cuisine": "italian", + "ingredients": [ + "baking powder", + "sugar", + "jam", + "eggs", + "butter", + "flour" + ] + }, + { + "id": 3144, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "shallots", + "garlic cloves", + "Japanese turnips", + "rice vermicelli", + "fresh lime juice", + "light brown sugar", + "radishes", + "bone-in chicken breasts", + "fresno chiles", + "kosher salt", + "vegetable oil", + "sweet basil" + ] + }, + { + "id": 29679, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "sour cream", + "lower sodium chicken broth", + "cilantro", + "ground cumin", + "vegetable oil", + "chunky salsa", + "black beans", + "chopped onion" + ] + }, + { + "id": 34727, + "cuisine": "spanish", + "ingredients": [ + "superfine sugar", + "corn starch", + "ground cinnamon", + "whole milk", + "nutmeg", + "egg yolks", + "demerara sugar", + "lemon" + ] + }, + { + "id": 11250, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "mirin", + "salt", + "medium firm tofu", + "sake", + "dashi", + "napa cabbage", + "lean beef", + "spinach", + "other vegetables", + "enokitake", + "seafood", + "chicken", + "pork", + "shiitake", + "harusame", + "scallions" + ] + }, + { + "id": 31661, + "cuisine": "italian", + "ingredients": [ + "grated orange peel", + "honey", + "butter", + "ground cardamom", + "pecan halves", + "ground cloves", + "dried tart cherries", + "all-purpose flour", + "dried mission figs", + "candied orange peel", + "hazelnuts", + "pitted Medjool dates", + "ground coriander", + "unsweetened cocoa powder", + "ground cinnamon", + "sugar", + "ground nutmeg", + "salt", + "ground white pepper" + ] + }, + { + "id": 16475, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "fresh lemon juice", + "salmon", + "chili powder", + "smoked salmon", + "chives", + "ground white pepper", + "olive oil", + "salt" + ] + }, + { + "id": 20604, + "cuisine": "italian", + "ingredients": [ + "roma tomatoes", + "lemon juice", + "fresh basil", + "salt", + "garlic", + "flat leaf parsley", + "olive oil", + "chopped onion" + ] + }, + { + "id": 48786, + "cuisine": "french", + "ingredients": [ + "white bread", + "grated Gruyère cheese", + "unsalted butter", + "sour cream", + "dijon style mustard", + "cooked ham", + "kirsch" + ] + }, + { + "id": 31113, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "grated parmesan cheese", + "eggplant", + "olive oil", + "large eggs" + ] + }, + { + "id": 3238, + "cuisine": "japanese", + "ingredients": [ + "sliced meat", + "vegetable oil", + "snow peas", + "sugar", + "mirin", + "carrots", + "sake", + "dashi", + "shirataki", + "soy sauce", + "potatoes", + "onions" + ] + }, + { + "id": 11453, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "mushrooms", + "salt", + "garlic cloves", + "plum tomatoes", + "garam masala", + "butter", + "cumin seed", + "onions", + "milk", + "spring onions", + "lamb", + "chillies", + "tumeric", + "potatoes", + "ginger", + "oil", + "frozen peas" + ] + }, + { + "id": 30527, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "extra-virgin olive oil", + "seedless red grapes", + "sliced almonds", + "ground black pepper", + "scallions", + "dried currants", + "honey", + "chopped celery", + "kosher salt", + "brown rice", + "fresh lemon juice" + ] + }, + { + "id": 34281, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "flour", + "sea salt", + "pizza doughs" + ] + }, + { + "id": 13311, + "cuisine": "greek", + "ingredients": [ + "large egg yolks", + "all-purpose flour", + "brandy", + "baking powder", + "pure vanilla extract", + "unsalted butter", + "confectioners sugar", + "ground cloves", + "salt" + ] + }, + { + "id": 13862, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "creole seasoning", + "sliced green onions", + "smoked chicken sausages", + "onions", + "green bell pepper", + "garlic cloves", + "red kidney beans", + "long-grain rice" + ] + }, + { + "id": 35557, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "Mexican cheese blend", + "onions", + "fresh tomatoes", + "corn", + "non-fat sour cream", + "fresh cilantro", + "jalapeno chilies", + "extra lean ground beef", + "taco seasoning mix", + "corn tortillas" + ] + }, + { + "id": 21510, + "cuisine": "southern_us", + "ingredients": [ + "edible flowers", + "vegetable oil", + "orange zest", + "sugar", + "baking powder", + "cake flour", + "buttercream frosting", + "kumquats", + "salt", + "cream of tartar", + "large eggs", + "fresh orange juice" + ] + }, + { + "id": 5961, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "dry white wine", + "garlic cloves", + "dijon mustard", + "heavy cream", + "allspice", + "olive oil", + "chopped fresh thyme", + "low salt chicken broth", + "pork tenderloin", + "fresh tarragon" + ] + }, + { + "id": 19960, + "cuisine": "italian", + "ingredients": [ + "pepper", + "zucchini", + "salt", + "aged balsamic vinegar", + "olive oil", + "basil leaves", + "red bell pepper", + "cherry tomatoes", + "mint leaves", + "english cucumber", + "pitted kalamata olives", + "feta cheese", + "yellow bell pepper", + "Italian bread" + ] + }, + { + "id": 508, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "tumeric", + "sunflower oil", + "frozen peas", + "ground cumin", + "mild curry powder", + "potatoes", + "ground coriander", + "basmati rice", + "ground cinnamon", + "pepper", + "salt", + "boiling water", + "cauliflower", + "whole almonds", + "raisins", + "carrots", + "saffron" + ] + }, + { + "id": 32090, + "cuisine": "indian", + "ingredients": [ + "sea salt", + "chickpeas", + "tamari soy sauce", + "olive oil" + ] + }, + { + "id": 42861, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "pizza sauce", + "garlic cloves", + "chopped green bell pepper", + "salt", + "part-skim mozzarella cheese", + "basil dried leaves", + "sliced mushrooms", + "penne", + "cooking spray", + "yellow onion" + ] + }, + { + "id": 26020, + "cuisine": "russian", + "ingredients": [ + "sliced almonds", + "dried apricot", + "candy sprinkles", + "bread flour", + "sponge", + "instant yeast", + "rum", + "vanilla extract", + "unsalted butter", + "cooking spray", + "buttermilk", + "sugar", + "large eggs", + "golden raisins", + "salt" + ] + }, + { + "id": 39714, + "cuisine": "french", + "ingredients": [ + "sugar", + "whipping cream", + "large egg yolks", + "fresh raspberries", + "milk", + "maple syrup", + "bananas", + "banana extract" + ] + }, + { + "id": 14800, + "cuisine": "french", + "ingredients": [ + "cremini mushrooms", + "sea salt", + "onions", + "riesling", + "crème fraîche", + "unsalted butter", + "cracked black pepper", + "chicken", + "bacon", + "flat leaf parsley" + ] + }, + { + "id": 11535, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "vegetable oil", + "smoked pork", + "onions", + "boneless chicken skinless thigh", + "onion tops", + "shrimp", + "green bell pepper", + "smoked sausage", + "creole seasoning", + "long grain white rice", + "water", + "beef broth", + "bay leaf" + ] + }, + { + "id": 39450, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "ground beef", + "garlic", + "chorizo sausage", + "cheese", + "cumin", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 12899, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salsa", + "boneless skinless chicken breasts", + "flour tortillas", + "taco seasoning", + "chicken broth", + "ranch dressing" + ] + }, + { + "id": 46110, + "cuisine": "spanish", + "ingredients": [ + "slivered almonds", + "ground black pepper", + "baking potatoes", + "salt", + "water", + "large eggs", + "extra-virgin olive oil", + "red bell pepper", + "white bread", + "sherry vinegar", + "cooking spray", + "crushed red pepper", + "plum tomatoes", + "egg substitute", + "tortillas", + "paprika", + "garlic cloves" + ] + }, + { + "id": 1050, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "salt", + "ground oregano", + "cotija", + "chile pepper", + "corn tortillas", + "cheddar cheese", + "zucchini", + "garlic cloves", + "ground cumin", + "fresh cilantro", + "mild green chiles", + "onions" + ] + }, + { + "id": 49167, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "vegetable oil", + "chopped cilantro", + "hash brown", + "scallions", + "frozen peas", + "cayenne", + "ginger", + "medium shrimp", + "tumeric", + "lime wedges", + "garlic cloves" + ] + }, + { + "id": 7169, + "cuisine": "japanese", + "ingredients": [ + "vegetable oil cooking spray", + "light soy sauce", + "rice wine", + "shrimp", + "smoked salmon", + "bottled lime juice", + "large eggs", + "rice vinegar", + "sliced green onions", + "wasabi", + "gari", + "granulated sugar", + "white rice", + "toasted sesame seeds", + "avocado", + "fresh leav spinach", + "roasted red peppers", + "salt", + "small capers, rins and drain" + ] + }, + { + "id": 23187, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "whole milk", + "grated nutmeg", + "chopped pecans", + "bread", + "cream", + "whipping cream", + "ground cardamom", + "sugar", + "butter", + "softened butter", + "whiskey", + "ground cinnamon", + "ground nutmeg", + "vanilla extract", + "corn starch" + ] + }, + { + "id": 36890, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "all-purpose flour", + "nutmeg", + "whipping cream", + "sugar", + "vanilla extract", + "butter" + ] + }, + { + "id": 13731, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cilantro", + "celery", + "red lentils", + "chili powder", + "garlic", + "olive oil", + "vegetable broth", + "onions", + "tumeric", + "diced tomatoes", + "hot sauce" + ] + }, + { + "id": 19123, + "cuisine": "southern_us", + "ingredients": [ + "ground red pepper", + "dark brown sugar", + "black peppercorns", + "paprika", + "chili powder", + "ground cumin", + "mace", + "salt" + ] + }, + { + "id": 44420, + "cuisine": "french", + "ingredients": [ + "sugar", + "part-skim ricotta cheese", + "unflavored gelatin", + "reduced-fat sour cream", + "cream cheese, soften", + "sweetener", + "goat cheese", + "cold water", + "gingersnap", + "berries" + ] + }, + { + "id": 45514, + "cuisine": "chinese", + "ingredients": [ + "tofu", + "szechwan peppercorns", + "chili bean paste", + "ground chile", + "lean ground pork", + "ginger", + "oil", + "chicken stock", + "chili oil", + "scallions", + "light soy sauce", + "garlic", + "corn starch" + ] + }, + { + "id": 30783, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "dried basil", + "fresh oregano", + "tomato sauce", + "bay leaves", + "sausages", + "fresh basil", + "olive oil", + "Italian turkey sausage", + "fennel seeds", + "minced garlic", + "diced tomatoes", + "dried oregano" + ] + }, + { + "id": 36256, + "cuisine": "moroccan", + "ingredients": [ + "slivered almonds", + "sweet potatoes", + "canned tomatoes", + "onions", + "pepper", + "extra-virgin olive oil", + "cumin seed", + "dried apricot", + "garlic", + "couscous", + "lamb shanks", + "harissa", + "salt" + ] + }, + { + "id": 42031, + "cuisine": "southern_us", + "ingredients": [ + "meat", + "pepper", + "oatmeal", + "eggs", + "salt", + "tomato juice", + "onions" + ] + }, + { + "id": 49399, + "cuisine": "greek", + "ingredients": [ + "lemon juice", + "olive oil", + "pepper", + "dried oregano", + "salt" + ] + }, + { + "id": 49168, + "cuisine": "japanese", + "ingredients": [ + "brown rice", + "water", + "green tea leaves" + ] + }, + { + "id": 39911, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "butter", + "garlic", + "okra", + "crab meat", + "dried thyme", + "sirloin steak", + "all-purpose flour", + "large shrimp", + "andouille sausage", + "salt and ground black pepper", + "worcestershire sauce", + "yellow onion", + "water", + "lemon", + "chopped celery", + "roasted tomatoes" + ] + }, + { + "id": 30373, + "cuisine": "greek", + "ingredients": [ + "bread crumbs", + "fennel bulb", + "ground lamb", + "mayonaise", + "olive oil", + "salt", + "minced garlic", + "shallots", + "hamburger buns", + "ground black pepper", + "dried oregano" + ] + }, + { + "id": 29584, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime", + "galangal", + "water", + "soup", + "white sugar", + "chiles", + "lemon grass", + "medium shrimp", + "kaffir lime leaves", + "chile paste", + "mushrooms" + ] + }, + { + "id": 32623, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "large eggs", + "orange", + "bittersweet chocolate", + "granulated sugar" + ] + }, + { + "id": 19205, + "cuisine": "french", + "ingredients": [ + "cooking spray", + "large eggs", + "salt", + "reduced fat milk", + "all-purpose flour", + "water", + "butter" + ] + }, + { + "id": 11708, + "cuisine": "italian", + "ingredients": [ + "granulated sugar", + "ricotta cheese", + "grated lemon zest", + "fresh blueberries", + "vanilla extract", + "fresh raspberries", + "large eggs", + "mint sprigs", + "strawberries", + "powdered sugar", + "cooking spray", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 46239, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "ground nutmeg", + "mixed peel", + "sugar", + "frozen pastry puff sheets", + "brown sugar", + "unsalted butter", + "orange zest", + "medium eggs", + "dried currants", + "flour" + ] + }, + { + "id": 30821, + "cuisine": "spanish", + "ingredients": [ + "almonds", + "peas", + "roast red peppers, drain", + "hot red pepper flakes", + "parmigiano reggiano cheese", + "salt", + "sherry vinegar", + "extra-virgin olive oil", + "white sandwich bread", + "reduced sodium chicken broth", + "large garlic cloves", + "corkscrew pasta" + ] + }, + { + "id": 48148, + "cuisine": "irish", + "ingredients": [ + "apricot preserves", + "soy sauce", + "brown sugar", + "corned beef", + "water" + ] + }, + { + "id": 36260, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "dry white wine", + "fat-free chicken broth", + "lemon juice", + "bay leaves", + "raisins", + "all-purpose flour", + "white onion", + "mushrooms", + "worcestershire sauce", + "garlic cloves", + "olive oil", + "boneless skinless chicken breasts", + "salt", + "thyme" + ] + }, + { + "id": 93, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "green onions", + "pepper", + "salt", + "european cucumber", + "purple onion", + "tomatoes", + "olive oil" + ] + }, + { + "id": 19643, + "cuisine": "thai", + "ingredients": [ + "large garlic cloves", + "fresh lime juice", + "cherry tomatoes", + "thai chile", + "green papaya", + "salted roast peanuts", + "dried shrimp", + "palm sugar", + "green beans", + "asian fish sauce" + ] + }, + { + "id": 28469, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "pitted date", + "ricotta salata" + ] + }, + { + "id": 35642, + "cuisine": "southern_us", + "ingredients": [ + "green pepper", + "sage", + "sweet potatoes", + "onions", + "black pepper", + "thyme", + "bacon fat", + "marjoram" + ] + }, + { + "id": 8911, + "cuisine": "italian", + "ingredients": [ + "whole milk", + "warm water", + "citric acid", + "rennet" + ] + }, + { + "id": 137, + "cuisine": "mexican", + "ingredients": [ + "scallions", + "fresh coriander", + "cherry peppers", + "tortilla chips", + "avocado", + "fresh lemon juice" + ] + }, + { + "id": 32217, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "sugar", + "white cornmeal", + "eggs", + "oil", + "flour" + ] + }, + { + "id": 40908, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "yellow mustard seeds", + "olive oil", + "sunflower oil", + "cumin seed", + "nigella seeds", + "canola oil", + "curry leaves", + "white onion", + "green onions", + "purple onion", + "fresh lemon juice", + "chopped fresh mint", + "tumeric", + "curry powder", + "yukon gold potatoes", + "firm tofu", + "greek yogurt", + "grated lemon peel", + "fennel seeds", + "baby spinach leaves", + "bay leaves", + "vegetable broth", + "black mustard seeds", + "fresh parsley" + ] + }, + { + "id": 26704, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "lime juice", + "sauce", + "galangal", + "brown sugar", + "chili paste", + "coconut milk", + "boneless chicken skinless thigh", + "cilantro leaves", + "lime leaves", + "white button mushrooms", + "lemongrass", + "green chilies" + ] + }, + { + "id": 20142, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "boneless skinless chicken breast halves", + "tomato sauce", + "salt", + "vegetable oil", + "shredded Monterey Jack cheese", + "cotija", + "taco seasoning" + ] + }, + { + "id": 40186, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken thighs", + "salt", + "sweet rice flour", + "vegetable oil", + "corn starch", + "green onions", + "oyster sauce", + "eggs", + "garlic", + "white sugar" + ] + }, + { + "id": 29618, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "cooking spray", + "1% low-fat milk", + "garlic cloves", + "ground black pepper", + "chopped fresh thyme", + "salt", + "Italian bread", + "cremini mushrooms", + "large eggs", + "dry mustard", + "chopped onion", + "fresh parmesan cheese", + "ground red pepper", + "chopped celery", + "turkey breast" + ] + }, + { + "id": 47117, + "cuisine": "filipino", + "ingredients": [ + "sesame seeds", + "water", + "sugar", + "glutinous rice flour", + "coconut" + ] + }, + { + "id": 34295, + "cuisine": "chinese", + "ingredients": [ + "green cabbage", + "black bean garlic sauce", + "garlic", + "mung bean sprouts", + "green chile", + "large eggs", + "scallions", + "neutral oil", + "fresh ginger", + "diced yellow onion", + "chopped cilantro fresh", + "jasmine rice", + "ground pork", + "carrots" + ] + }, + { + "id": 3765, + "cuisine": "indian", + "ingredients": [ + "lime", + "paprika", + "greek yogurt", + "mint", + "garam masala", + "salt", + "ground cumin", + "fresh ginger", + "garlic", + "ground turmeric", + "black pepper", + "chicken breasts", + "greek style plain yogurt" + ] + }, + { + "id": 23230, + "cuisine": "southern_us", + "ingredients": [ + "vanilla extract", + "powdered sugar", + "butter", + "cream cheese, soften" + ] + }, + { + "id": 5705, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "freshly ground pepper", + "italian salad dressing", + "white tuna in water", + "purple onion", + "red bell pepper", + "fresh green bean", + "mixed greens", + "black olives", + "dumplings" + ] + }, + { + "id": 24480, + "cuisine": "italian", + "ingredients": [ + "capers", + "diced tomatoes", + "fat", + "chicken", + "crimini mushrooms", + "dry red wine", + "gemelli", + "olive oil", + "basil", + "low salt chicken broth", + "fresh rosemary", + "sherry wine vinegar", + "purple onion", + "plum tomatoes" + ] + }, + { + "id": 35901, + "cuisine": "italian", + "ingredients": [ + "brewed coffee", + "chocolate morsels", + "whipping cream", + "butter" + ] + }, + { + "id": 44296, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper", + "extra-virgin olive oil", + "flat leaf parsley", + "clams", + "garlic cloves", + "linguine" + ] + }, + { + "id": 25691, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "rice vinegar", + "cooked rice", + "green onions", + "shrimp", + "hoisin sauce", + "peanut oil", + "sugar", + "salt" + ] + }, + { + "id": 16446, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "chopped onion", + "salad oil", + "tumeric", + "vegetable broth", + "ground cardamom", + "jalapeno chilies", + "cumin seed", + "chopped cilantro fresh", + "minced garlic", + "salt", + "lentils" + ] + }, + { + "id": 17432, + "cuisine": "korean", + "ingredients": [ + "shredded cheddar cheese", + "bacon", + "onions", + "sugar", + "gochugaru", + "scallions", + "olive oil", + "salt", + "pepper", + "russet potatoes", + "kimchi" + ] + }, + { + "id": 24213, + "cuisine": "italian", + "ingredients": [ + "whole peeled tomatoes", + "green beans", + "garlic", + "chicken meat", + "dried oregano", + "chopped green bell pepper", + "chopped onion" + ] + }, + { + "id": 49551, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "part-skim mozzarella cheese", + "vegetable oil", + "fresh parsley", + "tomato paste", + "crushed tomatoes", + "zucchini", + "oven-ready lasagna noodles", + "nonfat ricotta cheese", + "eggs", + "dried basil", + "butternut squash", + "ground turkey", + "italian seasoning", + "fennel seeds", + "water", + "ground black pepper", + "garlic", + "onions" + ] + }, + { + "id": 8685, + "cuisine": "italian", + "ingredients": [ + "flour", + "cream cheese", + "white sugar", + "butter", + "corn starch", + "ricotta cheese", + "lemon juice", + "eggs", + "vanilla extract", + "sour cream" + ] + }, + { + "id": 14917, + "cuisine": "southern_us", + "ingredients": [ + "vanilla ice cream", + "unsalted butter", + "white sandwich bread", + "cream sweeten whip", + "ground nutmeg", + "pitted prunes", + "pure maple syrup", + "granny smith apples", + "dark brown sugar", + "brandy", + "fresh orange juice" + ] + }, + { + "id": 49457, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "lamb rib chops", + "salt", + "olive oil", + "garlic" + ] + }, + { + "id": 41255, + "cuisine": "italian", + "ingredients": [ + "macadamia nuts", + "butter", + "pumpkin pie spice", + "pumpkin", + "salt", + "large eggs", + "vanilla extract", + "firmly packed brown sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 3868, + "cuisine": "french", + "ingredients": [ + "cocoa", + "butter", + "hazelnut liqueur", + "bananas", + "vanilla", + "melted butter", + "egg yolks", + "confectioners sugar", + "white flour", + "2% reduced-fat milk" + ] + }, + { + "id": 45239, + "cuisine": "greek", + "ingredients": [ + "zucchini", + "fresh lemon juice", + "pepper", + "purple onion", + "chopped parsley", + "kalamata", + "feta cheese crumbles", + "olive oil", + "chickpeas" + ] + }, + { + "id": 12921, + "cuisine": "indian", + "ingredients": [ + "cottage cheese", + "green onions", + "salt", + "coriander", + "chopped almonds", + "ginger", + "oil", + "bread crumbs", + "cracked black pepper", + "green chilies", + "chopped garlic", + "eggs", + "flour", + "chicken stock cubes", + "bread slices" + ] + }, + { + "id": 43066, + "cuisine": "mexican", + "ingredients": [ + "orange", + "egg yolks", + "eggs", + "unsalted butter", + "sea salt", + "water", + "granulated sugar", + "all-purpose flour", + "active dry yeast", + "decorating sugars" + ] + }, + { + "id": 302, + "cuisine": "french", + "ingredients": [ + "butter", + "bittersweet baking chocolate", + "coffee liqueur", + "whipping cream" + ] + }, + { + "id": 39862, + "cuisine": "indian", + "ingredients": [ + "cream", + "butter", + "paneer", + "cumin seed", + "tomato purée", + "garam masala", + "kasuri methi", + "cilantro leaves", + "black pepper", + "chili powder", + "garlic", + "chopped onion", + "chopped tomatoes", + "ginger", + "salt", + "cashew nuts" + ] + }, + { + "id": 36557, + "cuisine": "italian", + "ingredients": [ + "sweet onion", + "sweet italian sausage", + "green bell pepper", + "parmesan cheese", + "grits", + "garlic powder", + "garlic cloves", + "pepper", + "salt", + "italian seasoning" + ] + }, + { + "id": 28925, + "cuisine": "filipino", + "ingredients": [ + "boneless chicken skinless thigh", + "Shaoxing wine", + "crushed red pepper flakes", + "corn starch", + "brown sugar", + "sesame seeds", + "sesame oil", + "garlic", + "water", + "green onions", + "ginger", + "soy sauce", + "egg whites", + "calamansi juice", + "oil" + ] + }, + { + "id": 12900, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "refried beans", + "guacamole", + "rotisserie chicken", + "corn tortillas", + "pickled jalapenos", + "olive oil", + "salsa", + "pinto beans", + "ground cumin", + "fire roasted diced tomatoes", + "corn kernels", + "purple onion", + "red enchilada sauce", + "iceberg lettuce", + "chile powder", + "fresh cilantro", + "Mexican cheese blend", + "green chilies", + "sour cream" + ] + }, + { + "id": 14126, + "cuisine": "vietnamese", + "ingredients": [ + "white onion", + "lemon", + "sauce", + "tumeric", + "thai basil", + "salt", + "chicken", + "chicken broth", + "jasmine rice", + "garlic", + "oil", + "soy sauce", + "ground pepper", + "cilantro leaves" + ] + }, + { + "id": 24472, + "cuisine": "jamaican", + "ingredients": [ + "tomatoes", + "pigeon peas", + "onions", + "chopped ham", + "pepper", + "salt", + "sugar", + "olive oil", + "long grain white rice", + "tomato paste", + "water", + "celery" + ] + }, + { + "id": 9396, + "cuisine": "southern_us", + "ingredients": [ + "evaporated milk", + "half & half", + "all-purpose flour", + "cream of tartar", + "granulated sugar", + "salt", + "pure vanilla extract", + "bananas", + "butter", + "meringue", + "large egg yolks", + "egg whites", + "vanilla wafers" + ] + }, + { + "id": 32009, + "cuisine": "irish", + "ingredients": [ + "fresh parsley leaves", + "mayonaise", + "eggs", + "celery", + "color food green" + ] + }, + { + "id": 30672, + "cuisine": "italian", + "ingredients": [ + "Heinz Worcestershire Sauce", + "dried basil", + "lean ground beef", + "onions", + "tomato paste", + "Heinz Chili Sauce", + "lasagna noodles", + "shredded mozzarella cheese", + "lean ground pork", + "tomato juice", + "dri leav thyme", + "green bell pepper", + "olive oil", + "garlic", + "dried oregano" + ] + }, + { + "id": 24044, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "large garlic cloves", + "scallions", + "brown sugar", + "large eggs", + "peeled shrimp", + "beansprouts", + "fish sauce", + "extra firm tofu", + "paprika", + "red bell pepper", + "lime", + "rice noodles", + "rice vinegar", + "canola oil" + ] + }, + { + "id": 36183, + "cuisine": "british", + "ingredients": [ + "butter", + "ground white pepper", + "milk", + "chopped celery", + "onions", + "cauliflower", + "vegetable broth", + "stilton cheese", + "leeks", + "all-purpose flour" + ] + }, + { + "id": 49231, + "cuisine": "french", + "ingredients": [ + "ground ginger", + "egg yolks", + "sugar", + "cinnamon", + "vanilla beans", + "heavy cream", + "pumpkin purée", + "allspice" + ] + }, + { + "id": 30676, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "white onion", + "vegetable oil", + "ground turmeric", + "red chili powder", + "coriander powder", + "ground cardamom", + "tomato paste", + "garam masala", + "garlic", + "ground cumin", + "plain yogurt", + "boneless skinless chicken breasts", + "basmati rice" + ] + }, + { + "id": 42859, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "dried basil", + "crushed red pepper flakes", + "all-purpose flour", + "fresh basil leaves", + "ground fennel", + "fresh oregano leaves", + "grated parmesan cheese", + "garlic", + "onions", + "polenta", + "chicken broth", + "black pepper", + "bacon", + "salt", + "bone in skin on chicken thigh", + "dried oregano", + "pasta", + "tomato sauce", + "olive oil", + "button mushrooms", + "red bell pepper", + "plum tomatoes" + ] + }, + { + "id": 42591, + "cuisine": "irish", + "ingredients": [ + "salt", + "chicken broth", + "cabbage", + "butter" + ] + }, + { + "id": 45359, + "cuisine": "southern_us", + "ingredients": [ + "water", + "vanilla extract", + "pie crust", + "splenda", + "sweet potatoes", + "sugar", + "butter" + ] + }, + { + "id": 1344, + "cuisine": "southern_us", + "ingredients": [ + "pure maple syrup", + "large eggs", + "vanilla extract", + "golden brown sugar", + "light corn syrup", + "unsalted butter", + "crust", + "pecan halves", + "wheat", + "salt" + ] + }, + { + "id": 48004, + "cuisine": "southern_us", + "ingredients": [ + "seasoned bread crumbs", + "chicken breasts", + "all-purpose flour", + "walnut pieces", + "crumbled blue cheese", + "poppy seed dressing", + "olive oil", + "baby spinach", + "dried cranberries", + "large eggs", + "apples" + ] + }, + { + "id": 44546, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "sherry wine vinegar", + "olive oil", + "fresh basil leaves", + "water", + "fresh lemon juice", + "tomatoes", + "dijon mustard" + ] + }, + { + "id": 19533, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "butter", + "onions", + "ground nutmeg", + "shredded swiss cheese", + "canadian bacon", + "low-fat milk", + "tomato sauce", + "grated parmesan cheese", + "all-purpose flour", + "grated lemon peel", + "asparagus", + "ricotta cheese", + "garlic cloves" + ] + }, + { + "id": 11737, + "cuisine": "vietnamese", + "ingredients": [ + "tofu", + "lime", + "fresh ginger root", + "mushrooms", + "star anise", + "cinnamon sticks", + "broth", + "soy sauce", + "coriander seeds", + "Sriracha", + "rice noodles", + "scallions", + "onions", + "clove", + "unsalted vegetable stock", + "herbs", + "chile pepper", + "broccoli", + "beansprouts", + "seitan", + "bean curd skins", + "vegetables", + "hoisin sauce", + "napa cabbage", + "carrots", + "noodles" + ] + }, + { + "id": 8652, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "all-purpose flour", + "cold water", + "unsalted butter", + "cake flour", + "key lime juice", + "shortening", + "large eggs", + "salt", + "lime rind", + "butter", + "strawberries" + ] + }, + { + "id": 7856, + "cuisine": "british", + "ingredients": [ + "pitted date", + "unsalted butter", + "salt", + "milk", + "vanilla extract", + "rolled oats", + "large eggs", + "double-acting baking powder", + "light brown sugar", + "baking soda", + "cake flour" + ] + }, + { + "id": 16863, + "cuisine": "italian", + "ingredients": [ + "salt", + "shredded mozzarella cheese", + "olive oil", + "ricotta", + "ground beef", + "crushed tomatoes", + "yellow onion", + "chopped parsley", + "garlic", + "spaghetti squash" + ] + }, + { + "id": 31411, + "cuisine": "cajun_creole", + "ingredients": [ + "romaine lettuce", + "pepper", + "butter", + "English mustard", + "pickled jalapenos", + "pistachios", + "dill", + "mayonaise", + "water", + "salt", + "eggs", + "lump crab meat", + "flour", + "Meyer lemon juice" + ] + }, + { + "id": 4932, + "cuisine": "japanese", + "ingredients": [ + "sesame oil", + "fresh ginger root", + "soy sauce", + "garlic", + "mushroom caps" + ] + }, + { + "id": 30390, + "cuisine": "mexican", + "ingredients": [ + "lime", + "chili powder", + "onions", + "olive oil", + "onion powder", + "cumin", + "bell pepper", + "salt", + "black pepper", + "chicken breasts", + "smoked paprika" + ] + }, + { + "id": 13247, + "cuisine": "indian", + "ingredients": [ + "seeds", + "mustard seeds", + "red chili powder", + "oil", + "salt", + "cubed mango", + "garlic cloves" + ] + }, + { + "id": 22084, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "ground sirloin", + "salt", + "poblano chiles", + "slivered almonds", + "cooking spray", + "diced tomatoes", + "garlic cloves", + "ground cinnamon", + "water", + "brown rice", + "chopped onion", + "ground cumin", + "tomato sauce", + "part-skim mozzarella cheese", + "raisins", + "pimento stuffed olives" + ] + }, + { + "id": 26564, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh basil", + "canola oil", + "tomatoes", + "shrimp", + "yellow tomato", + "garlic cloves" + ] + }, + { + "id": 16689, + "cuisine": "cajun_creole", + "ingredients": [ + "coffee", + "water", + "chicory" + ] + }, + { + "id": 49291, + "cuisine": "indian", + "ingredients": [ + "water", + "frozen peas", + "cumin seed", + "coarse salt", + "chicken broth", + "onions" + ] + }, + { + "id": 16182, + "cuisine": "russian", + "ingredients": [ + "sweet onion", + "green bell pepper", + "tomatoes", + "sour cream", + "fresh dill" + ] + }, + { + "id": 25029, + "cuisine": "italian", + "ingredients": [ + "brandy", + "semisweet chocolate", + "hot water", + "cold water", + "raspberries", + "egg yolks", + "sliced almonds", + "egg whites", + "white sugar", + "ladyfingers", + "mascarpone", + "vanilla extract" + ] + }, + { + "id": 10437, + "cuisine": "thai", + "ingredients": [ + "lime", + "baby kale", + "ginger", + "tamarind paste", + "kaffir lime leaves", + "lemon grass", + "chicken breasts", + "light coconut milk", + "Thai fish sauce", + "chicken broth", + "honey", + "mushrooms", + "Thai red curry paste", + "garlic chili sauce", + "water", + "chili paste", + "cilantro", + "garlic", + "mung bean sprouts" + ] + }, + { + "id": 40196, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "radishes", + "purple onion", + "garlic cloves", + "black beans", + "feta cheese", + "chili powder", + "hot sauce", + "ground cumin", + "eggs", + "olive oil", + "jalapeno chilies", + "salt", + "corn tortillas", + "pepper", + "salsa verde", + "cilantro", + "cayenne pepper" + ] + }, + { + "id": 23733, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "unsalted butter", + "ground black pepper", + "collard greens", + "lardons" + ] + }, + { + "id": 312, + "cuisine": "indian", + "ingredients": [ + "cottage cheese", + "chili powder", + "salt" + ] + }, + { + "id": 21021, + "cuisine": "italian", + "ingredients": [ + "shortening", + "garlic powder", + "crushed red pepper flakes", + "marjoram", + "active dry yeast", + "chili powder", + "all-purpose flour", + "dried oregano", + "water", + "ground black pepper", + "salt", + "white sugar", + "tomato paste", + "dried basil", + "vegetable oil", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 13395, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "vegetable oil", + "garlic", + "olive oil", + "raisins", + "pimento stuffed olives", + "white onion", + "knorr reduc sodium chicken flavor bouillon", + "disco empanada frozen", + "tomatoes", + "jalapeno chilies", + "queso blanco", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 15666, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "vinegar", + "pork belly", + "garlic", + "water", + "onions", + "string beans", + "ground black pepper" + ] + }, + { + "id": 26557, + "cuisine": "chinese", + "ingredients": [ + "baby bok choy", + "minced garlic", + "Shaoxing wine", + "firm tofu", + "vermicelli noodles", + "sugar", + "soy sauce", + "water chestnuts", + "ground pork", + "corn starch", + "homemade chicken stock", + "kosher salt", + "egg yolks", + "ginger", + "ground white pepper", + "pork", + "canola", + "napa cabbage leaves", + "scallions", + "cooked white rice" + ] + }, + { + "id": 48966, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "balsamic vinegar", + "rotini", + "crumbled ricotta salata cheese", + "fresh thyme leaves", + "garlic cloves" + ] + }, + { + "id": 24903, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "ground nutmeg", + "all-purpose flour", + "honey", + "salt", + "active dry yeast", + "extra-virgin olive oil", + "powdered sugar", + "dry white wine", + "lard" + ] + }, + { + "id": 4779, + "cuisine": "italian", + "ingredients": [ + "pepper", + "paprika", + "lemon juice", + "garlic powder", + "all-purpose flour", + "artichoke hearts", + "salt", + "boneless skinless chicken breast halves", + "chicken stock", + "vegetable oil", + "fresh mushrooms" + ] + }, + { + "id": 47447, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "peanut butter", + "eggs", + "salt", + "confectioners sugar", + "sugar", + "pie shell", + "vanilla", + "corn starch" + ] + }, + { + "id": 2986, + "cuisine": "italian", + "ingredients": [ + "Johnsonville Mild Italian Sausage Links", + "shredded parmesan cheese", + "water", + "eggs", + "frozen broccoli", + "dried basil" + ] + }, + { + "id": 692, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "low-fat mozzarella cheese", + "finely chopped onion", + "extra-virgin olive oil", + "fresh basil", + "low-fat ricotta cheese", + "plum tomatoes", + "lasagna noodles", + "garlic cloves" + ] + }, + { + "id": 48767, + "cuisine": "southern_us", + "ingredients": [ + "tomato sauce", + "worcestershire sauce", + "green pepper", + "chicken broth", + "hash brown", + "salt", + "okra", + "green bell pepper", + "cooked chicken", + "lima beans", + "onions", + "celery ribs", + "pepper", + "diced tomatoes", + "barbecued pork" + ] + }, + { + "id": 35534, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "cream", + "chicken breasts", + "red", + "onions", + "garlic paste", + "fresh coriander", + "butter", + "salt", + "cumin", + "tomato purée", + "pepper", + "chili powder", + "curry", + "coriander", + "tumeric", + "chopped tomatoes", + "lemon", + "ghee", + "ginger paste" + ] + }, + { + "id": 46490, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "vegetables", + "chow mein noodles", + "tofu", + "light soy sauce", + "salt", + "beansprouts", + "white pepper", + "sesame oil", + "carrots", + "dark soy sauce", + "flowering chives", + "scallions" + ] + }, + { + "id": 38768, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garam masala", + "chickpeas", + "curry powder", + "ground red pepper", + "chopped cilantro fresh", + "sugar", + "finely chopped onion", + "rice", + "olive oil", + "salt", + "ground turmeric" + ] + }, + { + "id": 20223, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "extra-virgin olive oil", + "sun-dried tomatoes", + "garlic cloves", + "capers", + "ground black pepper", + "flat leaf parsley", + "water", + "oil" + ] + }, + { + "id": 32107, + "cuisine": "southern_us", + "ingredients": [ + "breakfast sausages", + "biscuit dough", + "condensed cream of mushroom soup", + "water" + ] + }, + { + "id": 40239, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "chopped green chilies", + "chili powder", + "salt", + "chopped cilantro", + "ground cumin", + "pepper", + "flour", + "heavy cream", + "sour cream", + "v 8 juice", + "tomatoes", + "unsalted butter", + "vegetable oil", + "cream cheese", + "onions", + "corn", + "boneless skinless chicken breasts", + "garlic", + "corn tortillas", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 7957, + "cuisine": "french", + "ingredients": [ + "egg whites", + "anise extract", + "salt", + "all-purpose flour", + "butter", + "confectioners sugar" + ] + }, + { + "id": 3458, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "avocado", + "garlic", + "jalapeno chilies", + "kosher salt", + "purple onion" + ] + }, + { + "id": 13044, + "cuisine": "mexican", + "ingredients": [ + "clove", + "refried beans", + "black olives", + "onions", + "tomatoes", + "corn chips", + "taco seasoning", + "tomato paste", + "colby jack cheese", + "salsa", + "water", + "vegetable oil", + "ground beef" + ] + }, + { + "id": 28596, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "grated parmesan cheese", + "salt", + "chicken broth", + "broccoli rabe", + "garlic", + "olive oil", + "crushed red pepper flakes", + "bulk italian sausag", + "butter", + "bow-tie pasta" + ] + }, + { + "id": 1062, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "jalapeno chilies", + "tortilla chips", + "ripe olives", + "chopped green chilies", + "green pepper", + "red bell pepper", + "fresh parsley", + "cheese soup", + "chopped onion", + "sour cream", + "dried oregano", + "shredded cheddar cheese", + "salsa", + "pimento stuffed olives", + "ground beef" + ] + }, + { + "id": 23335, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "corn husks", + "salt", + "masa harina", + "black pepper", + "baking powder", + "hot water", + "dried porcini mushrooms", + "unsalted butter", + "fresh mushrooms", + "minced garlic", + "epazote", + "onions" + ] + }, + { + "id": 38396, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "instant white rice", + "2% reduced-fat milk", + "yellow onion", + "lean ground beef", + "extra-virgin olive oil", + "instant rice", + "sea salt", + "tomato soup" + ] + }, + { + "id": 16278, + "cuisine": "italian", + "ingredients": [ + "butter", + "salt", + "lump crab meat", + "extra-virgin olive oil", + "scallions", + "ground black pepper", + "linguine", + "fresh parsley", + "dry white wine", + "garlic", + "plum tomatoes" + ] + }, + { + "id": 39211, + "cuisine": "cajun_creole", + "ingredients": [ + "Johnsonville Andouille", + "stewed tomatoes", + "shrimp", + "olive oil", + "green pepper", + "water", + "garlic", + "long grain white rice", + "diced tomatoes", + "chopped onion" + ] + }, + { + "id": 48895, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "baking powder", + "all-purpose flour", + "sage leaves", + "flour", + "buttermilk", + "nutritional yeast", + "butter", + "almond milk", + "sugar", + "sweet potatoes", + "salt" + ] + }, + { + "id": 42261, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "imitation crab meat", + "caster sugar", + "japanese cucumber", + "soy sauce", + "mirin", + "soba", + "eggs", + "vegetables", + "ham" + ] + }, + { + "id": 35169, + "cuisine": "southern_us", + "ingredients": [ + "oysters", + "ground red pepper", + "red bell pepper", + "grated parmesan cheese", + "salt", + "large eggs", + "butter", + "grits", + "water", + "green onions", + "dry bread crumbs" + ] + }, + { + "id": 45441, + "cuisine": "thai", + "ingredients": [ + "organic milk", + "Thai red curry paste", + "chicken breasts", + "ghee" + ] + }, + { + "id": 10198, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "cantaloupe", + "light sour cream", + "crushed pistachio", + "chopped fresh mint", + "fruit", + "light pancake syrup", + "avocado", + "orange", + "grapefruit" + ] + }, + { + "id": 30980, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "baking soda", + "butter", + "sauce", + "sugar", + "cooking spray", + "all-purpose flour", + "powdered sugar", + "large eggs", + "salt", + "1% low-fat buttermilk", + "baking powder", + "grated lemon zest" + ] + }, + { + "id": 26778, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "chile de arbol", + "turkey breast", + "mint leaves", + "garlic cloves", + "masa", + "tomatoes", + "vegetable oil", + "low salt chicken broth", + "water", + "achiote paste", + "onions" + ] + }, + { + "id": 24437, + "cuisine": "jamaican", + "ingredients": [ + "lump crab meat", + "salt", + "scallions", + "chicken broth", + "ground black pepper", + "salt pork", + "cooked white rice", + "pepper", + "hot sauce", + "thyme sprigs", + "pork", + "callaloo", + "okra", + "onions" + ] + }, + { + "id": 23128, + "cuisine": "british", + "ingredients": [ + "potatoes", + "salt", + "pepper", + "butter", + "milk", + "kippers", + "parsley" + ] + }, + { + "id": 22631, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "cheese", + "zucchini", + "red bell pepper", + "fresh basil", + "refrigerated pizza dough", + "olive oil", + "purple onion" + ] + }, + { + "id": 17551, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "butter", + "cake flour", + "canola oil", + "white vinegar", + "baking soda", + "red food coloring", + "cream cheese", + "milk", + "buttermilk", + "salt", + "eggs", + "granulated sugar", + "vanilla extract", + "cocoa powder" + ] + }, + { + "id": 47448, + "cuisine": "indian", + "ingredients": [ + "chile pepper", + "onions", + "paneer", + "white sugar", + "corn kernels", + "salt", + "chopped cilantro fresh", + "vegetable oil", + "cashew nuts" + ] + }, + { + "id": 33283, + "cuisine": "indian", + "ingredients": [ + "red potato", + "cooking spray", + "all-purpose flour", + "curry powder", + "1% low-fat milk", + "sliced green onions", + "tomato sauce", + "butter", + "garlic cloves", + "plain low-fat yogurt", + "fresh parmesan cheese", + "salt" + ] + }, + { + "id": 44934, + "cuisine": "vietnamese", + "ingredients": [ + "Vietnamese coriander", + "english cucumber", + "celery ribs", + "shallots", + "green papaya", + "pickled carrots", + "medium firm tofu", + "fish sauce", + "roasted peanuts", + "canola oil" + ] + }, + { + "id": 20605, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "coarse salt", + "baking soda", + "vanilla extract", + "peanuts", + "light corn syrup", + "unsalted butter" + ] + }, + { + "id": 44255, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "garam masala", + "red pepper", + "flour for dusting", + "milk", + "vegetable oil", + "green pepper", + "water", + "finely chopped onion", + "cheese", + "spinach", + "fresh ginger", + "coarse salt", + "green chilies" + ] + }, + { + "id": 30138, + "cuisine": "greek", + "ingredients": [ + "pinenuts", + "salt", + "long grain white rice", + "water", + "onions", + "pepper", + "lamb", + "vine leaves", + "chopped fresh mint" + ] + }, + { + "id": 41251, + "cuisine": "french", + "ingredients": [ + "mint sprigs", + "berries", + "sugar", + "grated lemon zest", + "heavy whipping cream", + "salt", + "fresh lemon juice", + "milk", + "orange juice" + ] + }, + { + "id": 26573, + "cuisine": "cajun_creole", + "ingredients": [ + "chili powder", + "dried oregano", + "seasoning salt", + "crushed red pepper", + "cooking spray", + "boneless pork loin", + "black pepper", + "garlic", + "ground cumin" + ] + }, + { + "id": 23515, + "cuisine": "italian", + "ingredients": [ + "genoa salami", + "olive oil", + "Italian bread", + "mozzarella cheese", + "balsamic vinegar", + "plum tomatoes", + "rocket leaves", + "prosciutto", + "fresh basil leaves", + "pepper", + "salt" + ] + }, + { + "id": 36567, + "cuisine": "italian", + "ingredients": [ + "fusilli", + "italian salad dressing", + "pepperoni slices", + "provolone cheese", + "green bell pepper", + "black olives", + "cherry tomatoes", + "white sugar" + ] + }, + { + "id": 16121, + "cuisine": "jamaican", + "ingredients": [ + "water", + "okra", + "medium shrimp", + "tomato purée", + "ground black pepper", + "garlic cloves", + "pepper", + "vegetable oil", + "red bell pepper", + "curry powder", + "scallions", + "onions" + ] + }, + { + "id": 23330, + "cuisine": "japanese", + "ingredients": [ + "avocado", + "short-grain rice", + "rice vinegar", + "crab meat", + "gari", + "salt", + "toasted nori", + "sugar", + "seeds", + "fresh lemon juice", + "wasabi", + "soy sauce", + "dry sherry", + "cucumber" + ] + }, + { + "id": 21489, + "cuisine": "indian", + "ingredients": [ + "urad dal", + "oil", + "parboiled rice", + "green chilies", + "onions", + "fenugreek seeds", + "bread slices", + "salt", + "carrots" + ] + }, + { + "id": 25723, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "salt", + "garlic", + "apple cider vinegar", + "mango", + "pepper", + "purple onion" + ] + }, + { + "id": 38973, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "refrigerated crescent rolls", + "shredded mozzarella cheese", + "dried oregano", + "dried basil", + "large eggs", + "fresh oregano", + "onions", + "milk", + "dijon mustard", + "salt", + "fresh parsley", + "pepper", + "yellow squash", + "butter", + "garlic cloves" + ] + }, + { + "id": 33439, + "cuisine": "vietnamese", + "ingredients": [ + "white vinegar", + "balm leaves", + "fresh lime juice", + "unsalted roasted peanuts", + "pork loin chops", + "sugar", + "salt", + "dried shrimp", + "sesame seeds", + "beansprouts" + ] + }, + { + "id": 35722, + "cuisine": "vietnamese", + "ingredients": [ + "eggs", + "pepper", + "pork chops", + "daikon", + "hot water", + "soy sauce", + "mo hanh", + "shallots", + "salt", + "minced pork", + "fish sauce", + "lemongrass", + "mushrooms", + "garlic", + "cucumber", + "tomatoes", + "beans", + "honey", + "vegetable oil", + "rice" + ] + }, + { + "id": 11051, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "olive oil", + "baby spinach", + "garlic cloves", + "penne", + "part-skim mozzarella cheese", + "2% reduced-fat milk", + "pepper", + "parmesan cheese", + "salt", + "egg substitute", + "large eggs", + "chopped onion" + ] + }, + { + "id": 42781, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "bay leaves", + "honey", + "vegetable oil", + "minced garlic", + "apple cider vinegar", + "black peppercorns", + "bone-in chicken" + ] + }, + { + "id": 14244, + "cuisine": "greek", + "ingredients": [ + "pita rounds", + "green onions", + "fresh parsley", + "feta cheese", + "cucumber", + "romaine lettuce", + "kalamata", + "tomatoes", + "mint leaves", + "salad dressing" + ] + }, + { + "id": 10811, + "cuisine": "cajun_creole", + "ingredients": [ + "evaporated milk", + "vanilla", + "food colouring", + "butter", + "candy", + "sugar", + "sprinkles", + "white chocolate chips", + "marshmallow creme" + ] + }, + { + "id": 8286, + "cuisine": "russian", + "ingredients": [ + "sugar", + "salt", + "eggs", + "water", + "sour cream", + "white pepper", + "beets", + "sour salt", + "lemon", + "boiling potatoes" + ] + }, + { + "id": 33190, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "mixed greens", + "sherry vinegar", + "extra-virgin olive oil", + "romaine lettuce", + "sea salt", + "escarole", + "ground black pepper", + "garlic" + ] + }, + { + "id": 30036, + "cuisine": "mexican", + "ingredients": [ + "seasoning salt", + "venison steaks", + "onions", + "vegetable oil", + "dried red chile peppers", + "water", + "beef stock cubes", + "bay leaf", + "Mexican oregano", + "all-purpose flour", + "ground cumin" + ] + }, + { + "id": 47504, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "whole milk", + "sanding sugar", + "cream", + "unsalted butter", + "cookies", + "caramels", + "coarse salt", + "all-purpose flour", + "water", + "large eggs", + "heavy cream" + ] + }, + { + "id": 468, + "cuisine": "jamaican", + "ingredients": [ + "chili pepper", + "vegetable oil", + "scallions", + "ground cumin", + "curry powder", + "salt", + "coconut milk", + "water", + "garlic", + "thyme", + "black pepper", + "potatoes", + "skinless chicken breasts", + "onions" + ] + }, + { + "id": 24133, + "cuisine": "russian", + "ingredients": [ + "malt", + "hops", + "barley", + "yeast", + "flaked oats" + ] + }, + { + "id": 43625, + "cuisine": "irish", + "ingredients": [ + "powdered sugar", + "large eggs", + "salt", + "baking soda", + "baking powder", + "grated orange", + "sugar", + "cooking spray", + "all-purpose flour", + "low-fat buttermilk", + "butter", + "dried cranberries" + ] + }, + { + "id": 35710, + "cuisine": "italian", + "ingredients": [ + "french bread", + "pepper", + "Italian turkey sausage", + "Jarlsberg", + "dijon mustard" + ] + }, + { + "id": 3860, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "purple onion", + "chillies", + "guacamole", + "tortilla chips", + "allspice", + "chopped tomatoes", + "root vegetables", + "coriander", + "mozzarella cheese", + "scotch bonnet chile", + "sour cream" + ] + }, + { + "id": 10524, + "cuisine": "french", + "ingredients": [ + "cheese", + "baguette", + "walnut oil", + "red delicious apples", + "mixed greens", + "apple cider vinegar" + ] + }, + { + "id": 48517, + "cuisine": "mexican", + "ingredients": [ + "picante sauce", + "garlic powder", + "sour cream", + "water", + "lasagna noodles", + "shredded Monterey Jack cheese", + "shredded cheddar cheese", + "sliced black olives", + "dried oregano", + "refried beans", + "lean ground beef", + "ground cumin" + ] + }, + { + "id": 33988, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "dry red wine", + "carrots", + "celery ribs", + "fresh thyme", + "all-purpose flour", + "plum tomatoes", + "olive oil", + "garlic", + "bay leaf", + "black pepper", + "Italian parsley leaves", + "yellow onion", + "chicken" + ] + }, + { + "id": 19838, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "soy sauce", + "thai basil", + "rice vermicelli", + "tamarind paste", + "sugar", + "fresh coriander", + "spring onions", + "garlic", + "beansprouts", + "brown sugar", + "chili pepper", + "shredded carrots", + "dipping sauces", + "rice", + "tofu", + "red chili peppers", + "water", + "arrowroot powder", + "rice vinegar", + "cooked shrimp" + ] + }, + { + "id": 35781, + "cuisine": "italian", + "ingredients": [ + "white bread", + "large eggs", + "extra-virgin olive oil", + "lemon juice", + "milk", + "vegetable oil", + "anchovy fillets", + "capers", + "dry white wine", + "all-purpose flour", + "flat leaf parsley", + "unsalted butter", + "fresh mozzarella", + "garlic cloves" + ] + }, + { + "id": 45946, + "cuisine": "mexican", + "ingredients": [ + "popcorn", + "coconut oil", + "dried chipotle pepper", + "agave nectar" + ] + }, + { + "id": 36482, + "cuisine": "chinese", + "ingredients": [ + "water", + "orange marmalade", + "salt", + "carrots", + "soy sauce", + "beef", + "ginger", + "beef broth", + "chinese rice wine", + "sesame seeds", + "sesame oil", + "broccoli", + "corn starch", + "black pepper", + "water chestnuts", + "garlic", + "oyster sauce" + ] + }, + { + "id": 34555, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "ground black pepper", + "butter", + "salt", + "white wine", + "low sodium chicken broth", + "garlic", + "red bell pepper", + "cajun spice mix", + "roma tomatoes", + "heavy cream", + "cayenne pepper", + "fettucine", + "olive oil", + "boneless skinless chicken breasts", + "purple onion", + "fresh parsley" + ] + }, + { + "id": 7811, + "cuisine": "french", + "ingredients": [ + "crusty bread", + "gruyere cheese", + "dry white wine", + "new potatoes", + "corn starch", + "apples" + ] + }, + { + "id": 8798, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "diced tomatoes", + "garlic cloves", + "fresh chorizo", + "jalapeno chilies", + "cayenne pepper", + "ground cumin", + "bell pepper", + "yellow onion", + "large shrimp", + "chicken stock", + "chili powder", + "long-grain rice" + ] + }, + { + "id": 32190, + "cuisine": "thai", + "ingredients": [ + "green chile", + "shallots", + "garlic cloves", + "lemon grass", + "peanut oil", + "chopped fresh mint", + "fish sauce", + "mint sprigs", + "fresh lime juice", + "red snapper", + "lime slices", + "gingerroot" + ] + }, + { + "id": 22250, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "gelatin", + "ground pork", + "rice flour", + "water", + "green onions", + "salt", + "ground white pepper", + "sugar", + "Shaoxing wine", + "ginger", + "flour for dusting", + "baking soda", + "sesame oil", + "glutinous rice flour" + ] + }, + { + "id": 5909, + "cuisine": "italian", + "ingredients": [ + "butternut squash", + "extra-virgin olive oil", + "ground black pepper", + "salt", + "balsamic vinegar" + ] + }, + { + "id": 4983, + "cuisine": "british", + "ingredients": [ + "ground pepper", + "russet potatoes", + "carrots", + "fresh thyme leaves", + "yellow onion", + "frozen peas", + "unsalted butter", + "all-purpose flour", + "ground beef", + "tomato paste", + "coarse salt", + "beer" + ] + }, + { + "id": 14418, + "cuisine": "italian", + "ingredients": [ + "warm water", + "all-purpose flour", + "vegetable oil", + "active dry yeast", + "cornmeal", + "salt" + ] + }, + { + "id": 27916, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "shredded mozzarella cheese", + "cheese ravioli", + "shredded Monterey Jack cheese", + "grated parmesan cheese", + "ground beef", + "diced tomatoes" + ] + }, + { + "id": 8887, + "cuisine": "vietnamese", + "ingredients": [ + "rice stick noodles", + "red chili peppers", + "peeled fresh ginger", + "sirloin steak", + "beansprouts", + "fish sauce", + "water", + "shallots", + "salt", + "fat free beef broth", + "black pepper", + "green onions", + "star anise", + "fresh basil leaves", + "sake", + "fresh cilantro", + "lime wedges", + "cinnamon sticks" + ] + }, + { + "id": 25066, + "cuisine": "irish", + "ingredients": [ + "mushrooms", + "salt", + "low sodium beef broth", + "low-fat milk", + "extra lean ground beef", + "worcestershire sauce", + "lentils", + "onions", + "pepper", + "garlic", + "carrots", + "frozen peas", + "low-fat sour cream", + "baking potatoes", + "all-purpose flour", + "celery" + ] + }, + { + "id": 3710, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "all-purpose flour", + "water", + "dried salted codfish", + "coarse sea salt", + "flat leaf parsley", + "olive oil", + "salt" + ] + }, + { + "id": 35582, + "cuisine": "filipino", + "ingredients": [ + "sweetened coconut flakes", + "water", + "coconut milk", + "corn starch", + "corn kernels", + "white sugar" + ] + }, + { + "id": 2963, + "cuisine": "mexican", + "ingredients": [ + "onion powder", + "Mexican cheese", + "kosher salt", + "dried dill", + "dried parsley", + "salsa", + "sour cream", + "garlic powder", + "tortilla chips" + ] + }, + { + "id": 48521, + "cuisine": "french", + "ingredients": [ + "olive oil", + "salt", + "chicken stock", + "shallots", + "sausages", + "unsalted butter", + "freshly ground pepper", + "water", + "red wine" + ] + }, + { + "id": 44446, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "chiles", + "Turkish bay leaves", + "green beans", + "coconut", + "black mustard seeds", + "black pepper", + "vegetable oil" + ] + }, + { + "id": 24459, + "cuisine": "british", + "ingredients": [ + "ground black pepper", + "eggs", + "all-purpose flour", + "salt", + "beef drippings", + "low-fat milk" + ] + }, + { + "id": 32684, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "pickling salt", + "yellow onion", + "fish sauce", + "gochugaru", + "daikon", + "asian pear", + "green onions", + "carrots", + "water", + "red cabbage", + "garlic" + ] + }, + { + "id": 30402, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "mushrooms", + "freshly ground pepper", + "unsalted butter", + "salt", + "tomato paste", + "water chestnuts", + "sweet italian sausage", + "shiitake", + "shallots", + "chopped parsley" + ] + }, + { + "id": 609, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chopped fresh sage", + "all purpose unbleached flour", + "dry yeast", + "warm water", + "fine sea salt" + ] + }, + { + "id": 5429, + "cuisine": "brazilian", + "ingredients": [ + "black pepper", + "vegetable oil", + "cilantro leaves", + "coconut milk", + "cherry tomatoes", + "garlic", + "green chilies", + "ground turmeric", + "lime", + "vegetable stock", + "cayenne pepper", + "onions", + "fresh ginger", + "salt", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 15078, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "corn kernels", + "ground white pepper", + "sugar", + "yellow onion", + "eggs", + "salt", + "Smithfield Ham", + "white bread", + "cream", + "ears" + ] + }, + { + "id": 21407, + "cuisine": "italian", + "ingredients": [ + "reduced sodium chicken broth", + "minced onion", + "salt", + "sugar", + "mascarpone", + "vegetable oil", + "flat leaf parsley", + "white pepper", + "unsalted butter", + "chopped fresh thyme", + "arborio rice", + "parmesan cheese", + "dry white wine", + "carrots" + ] + }, + { + "id": 11585, + "cuisine": "indian", + "ingredients": [ + "seeds", + "green peas", + "onions", + "warm water", + "maida flour", + "cilantro leaves", + "clove", + "chili powder", + "salt", + "sweet potatoes", + "ginger", + "oil" + ] + }, + { + "id": 1891, + "cuisine": "french", + "ingredients": [ + "eggs", + "baking powder", + "thin deli ham", + "water", + "vegetable oil", + "all-purpose flour", + "mayonaise", + "swiss cheese", + "salt", + "white bread", + "dijon mustard", + "butter" + ] + }, + { + "id": 19416, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "white cheddar cheese", + "hot water", + "yeast", + "olive oil", + "garlic cloves", + "ground beef", + "eggs", + "ground black pepper", + "carrots", + "onions", + "tomato sauce", + "salt", + "red bell pepper", + "bread flour" + ] + }, + { + "id": 5262, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "garlic powder", + "flour", + "yellow onion", + "cumin", + "chicken broth", + "lime", + "flour tortillas", + "butter", + "sour cream", + "avocado", + "fresh cilantro", + "poblano peppers", + "cooked chicken", + "shredded cheese", + "jack cheese", + "olive oil", + "jalapeno chilies", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 43793, + "cuisine": "chinese", + "ingredients": [ + "low sodium chicken broth", + "ham", + "water", + "salt", + "corn starch", + "sugar", + "sesame oil", + "Chinese egg noodles", + "light soy sauce", + "scallions" + ] + }, + { + "id": 20179, + "cuisine": "indian", + "ingredients": [ + "canned low sodium chicken broth", + "bananas", + "unsalted dry roast peanuts", + "chopped onion", + "cooked chicken breasts", + "skim milk", + "butter", + "all-purpose flour", + "lemon juice", + "vegetable oil cooking spray", + "green onions", + "salt", + "long-grain rice", + "curry powder", + "dry sherry", + "margarine", + "chutney" + ] + }, + { + "id": 11921, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "cilantro sprigs", + "black pepper", + "cooking spray", + "apricot preserves", + "olive oil", + "lamb loin chops", + "kosher salt", + "peeled fresh ginger" + ] + }, + { + "id": 13757, + "cuisine": "indian", + "ingredients": [ + "water", + "garlic", + "ghee", + "ginger", + "green chilies", + "coriander", + "curry leaves", + "raw cashews", + "coconut milk", + "ground turmeric", + "lemongrass", + "salt", + "onions" + ] + }, + { + "id": 19939, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "toasted sesame oil", + "fresh peas", + "scallions", + "reduced sodium soy sauce", + "shrimp", + "dashi powder", + "large eggs", + "shiitake mushroom caps" + ] + }, + { + "id": 24350, + "cuisine": "italian", + "ingredients": [ + "eggs", + "cherry tomatoes", + "ricotta cheese", + "salt", + "gnocchi", + "sugar", + "freshly grated parmesan", + "diced tomatoes", + "grated pecorino", + "fresh basil", + "olive oil", + "heavy cream", + "sauce", + "tomato paste", + "pepper", + "flour", + "garlic", + "shredded mozzarella cheese" + ] + }, + { + "id": 25710, + "cuisine": "italian", + "ingredients": [ + "flour", + "olive oil", + "cold water", + "salt", + "sugar", + "yeast" + ] + }, + { + "id": 10613, + "cuisine": "italian", + "ingredients": [ + "garlic cloves", + "chicken thighs", + "olive oil", + "fresh parsley", + "chicken broth", + "red bell pepper", + "hot cherry pepper", + "dry white wine", + "onions" + ] + }, + { + "id": 8149, + "cuisine": "italian", + "ingredients": [ + "sugar", + "crystallized ginger", + "all-purpose flour", + "hazelnuts", + "vanilla extract", + "unsweetened cocoa powder", + "baking soda", + "salt", + "white chocolate", + "large eggs", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 40917, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "baking powder", + "brown sugar", + "peaches", + "butter", + "sugar", + "flour", + "nutmeg", + "lemon extract", + "cinnamon" + ] + }, + { + "id": 43300, + "cuisine": "chinese", + "ingredients": [ + "blackberry jam", + "chinese five-spice powder", + "hoisin sauce", + "vegetable oil", + "chicken wings" + ] + }, + { + "id": 28366, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "garlic", + "softened butter", + "celery", + "white vinegar", + "shallots", + "bouquet garni", + "escargot", + "dry white wine", + "snails", + "carrots", + "onions", + "snail shells", + "red wine", + "salt", + "chopped parsley" + ] + }, + { + "id": 18626, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "organic vegetable broth", + "halibut fillets", + "chopped onion", + "italian seasoning", + "tomato paste", + "diced tomatoes", + "green beans", + "celery ribs", + "fusilli", + "garlic cloves" + ] + }, + { + "id": 24793, + "cuisine": "french", + "ingredients": [ + "garlic", + "frozen pastry puff sheets", + "fresh thyme leaves", + "olive oil", + "anchovy fillets" + ] + }, + { + "id": 44011, + "cuisine": "italian", + "ingredients": [ + "salt", + "semolina flour", + "compressed yeast", + "water", + "all purpose unbleached flour" + ] + }, + { + "id": 15862, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "lamb shanks", + "palm sugar", + "thai chile", + "fresh lime juice", + "garlic paste", + "thai basil", + "sea salt", + "fresh mint", + "fish sauce", + "lemon grass", + "Thai red curry paste", + "coconut milk", + "kaffir lime leaves", + "olive oil", + "green onions", + "fat" + ] + }, + { + "id": 36814, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "butter", + "sharp cheddar cheese", + "olive oil", + "garlic", + "grits", + "water", + "heavy cream", + "freshly ground pepper", + "parmesan cheese", + "salt", + "large shrimp" + ] + }, + { + "id": 1223, + "cuisine": "southern_us", + "ingredients": [ + "water", + "chopped fresh chives", + "onions", + "fennel seeds", + "ground black pepper", + "extra-virgin olive oil", + "whole grain dijon mustard", + "peas", + "kosher salt", + "vinegar", + "thyme" + ] + }, + { + "id": 31631, + "cuisine": "italian", + "ingredients": [ + "aged balsamic vinegar", + "fresh basil leaves", + "ricotta cheese", + "black mission figs", + "french baguette" + ] + }, + { + "id": 37259, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "large garlic cloves", + "ground coriander", + "white sandwich bread", + "ground chicken", + "white hominy", + "ground pork", + "poblano chiles", + "milk", + "ancho powder", + "frozen chopped spinach, thawed and squeezed dry", + "ground cumin", + "white onion", + "low sodium chicken broth", + "extra-virgin olive oil", + "chopped cilantro" + ] + }, + { + "id": 19610, + "cuisine": "italian", + "ingredients": [ + "garlic cloves", + "grated parmesan cheese", + "Italian bread", + "kosher salt", + "fleur de sel", + "extra-virgin olive oil" + ] + }, + { + "id": 15412, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "cajun seasoning", + "onions", + "green bell pepper", + "long-grain rice", + "chicken broth", + "smoked sausage", + "cooked chicken", + "fresh parsley" + ] + }, + { + "id": 44676, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "ground nutmeg", + "all-purpose flour", + "sugar", + "butter", + "water", + "salt", + "grated orange peel", + "vegetable oil" + ] + }, + { + "id": 3679, + "cuisine": "italian", + "ingredients": [ + "dried currants", + "veal", + "fresh parsley", + "pinenuts", + "whole grain bread", + "black pepper", + "cooking spray", + "dried rosemary", + "fresh parmesan cheese", + "salt" + ] + }, + { + "id": 4832, + "cuisine": "vietnamese", + "ingredients": [ + "bean threads", + "thai basil", + "chives", + "beansprouts", + "red chili peppers", + "mint leaves", + "garlic cloves", + "rice paper", + "fish sauce", + "prawns", + "ginger", + "coriander", + "golden caster sugar", + "lime", + "lettuce leaves", + "carrots" + ] + }, + { + "id": 16414, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "flour tortillas", + "salsa", + "boneless skinless chicken breast halves", + "shredded cheddar cheese", + "butter", + "red bell pepper", + "shredded Monterey Jack cheese", + "green bell pepper", + "chile pepper", + "chopped onion", + "chopped cilantro fresh", + "salt and ground black pepper", + "whipping cream", + "chipotles in adobo", + "ground cumin" + ] + }, + { + "id": 48586, + "cuisine": "mexican", + "ingredients": [ + "fresh orange juice", + "habanero chile", + "chopped cilantro fresh", + "tomatoes", + "fresh lime juice", + "white onion" + ] + }, + { + "id": 19148, + "cuisine": "indian", + "ingredients": [ + "vindaloo paste", + "black pepper", + "fresh mint", + "chicken legs", + "salt", + "plain yogurt", + "chopped cilantro fresh" + ] + }, + { + "id": 551, + "cuisine": "southern_us", + "ingredients": [ + "Hellmann's® Real Mayonnaise", + "self rising flour", + "milk", + "butter" + ] + }, + { + "id": 2416, + "cuisine": "italian", + "ingredients": [ + "mustard greens", + "short pasta", + "garlic cloves", + "olive oil", + "lemon" + ] + }, + { + "id": 43540, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "sweet rice flour", + "katakuriko", + "water", + "salt" + ] + }, + { + "id": 21321, + "cuisine": "chinese", + "ingredients": [ + "egg roll wrappers", + "carrots", + "light soy sauce", + "ground pork", + "eggs", + "cooking oil", + "cabbage", + "garlic powder", + "ginger" + ] + }, + { + "id": 26153, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "all-purpose flour", + "italian salad dressing", + "lemon", + "flat leaf parsley", + "fat free less sodium chicken broth", + "garlic cloves", + "italian seasoning", + "extra-virgin olive oil", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 14769, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "minced onion", + "all-purpose flour", + "red chili peppers", + "butter", + "dried parsley", + "chicken broth", + "bay leaves", + "medium shrimp", + "dried thyme", + "salt" + ] + }, + { + "id": 24659, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil", + "creole seasoning", + "salmon steaks", + "orange" + ] + }, + { + "id": 3730, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "basil leaves", + "large garlic cloves", + "juice", + "lemongrass", + "shallots", + "ginger", + "asian fish sauce", + "tamarind", + "vegetable oil", + "thai chile", + "kaffir lime leaves", + "boneless skinless chicken breasts", + "diced tomatoes", + "snow peas" + ] + }, + { + "id": 25355, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "maple syrup", + "brown sugar", + "worcestershire sauce", + "cider vinegar", + "mustard powder", + "pork baby back ribs", + "salt" + ] + }, + { + "id": 41469, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "almonds", + "cinnamon", + "ghee", + "garlic paste", + "coriander powder", + "brown cardamom", + "chicken", + "clove", + "red chili peppers", + "yoghurt", + "oil", + "ginger paste", + "red chili powder", + "garam masala", + "salt", + "onions" + ] + }, + { + "id": 46964, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "extra-virgin olive oil", + "plum tomatoes", + "fresh basil", + "meat", + "garlic cloves", + "dry white wine", + "crushed red pepper", + "orecchiette", + "crushed tomatoes", + "rabbit", + "onions" + ] + }, + { + "id": 17300, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "salt", + "chicken thighs", + "green bell pepper", + "cooking spray", + "fresh lemon juice", + "fat free less sodium chicken broth", + "grated lemon zest", + "dried oregano", + "ketchup", + "paprika", + "red bell pepper" + ] + }, + { + "id": 10281, + "cuisine": "french", + "ingredients": [ + "granny smith apples", + "butter", + "brown sugar", + "cinnamon ice cream", + "crepes", + "walnut pieces", + "blue cheese", + "brandy", + "cinnamon", + "grated nutmeg" + ] + }, + { + "id": 13590, + "cuisine": "moroccan", + "ingredients": [ + "chicken broth", + "olive oil", + "garlic cloves", + "red bell pepper", + "black pepper", + "cinnamon", + "juice", + "grated lemon peel", + "tumeric", + "chicken breast halves", + "fresh lemon juice", + "couscous", + "ground ginger", + "kosher salt", + "raisins", + "carrots", + "cumin" + ] + }, + { + "id": 43431, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "apple juice", + "firmly packed brown sugar", + "apple cider vinegar", + "kosher salt", + "paprika", + "white vinegar", + "ground red pepper" + ] + }, + { + "id": 44025, + "cuisine": "italian", + "ingredients": [ + "sugar", + "buttermilk", + "pomegranate juice", + "vegetable oil spray", + "whipping cream", + "orange", + "fresh orange juice", + "unflavored gelatin", + "vegetables" + ] + }, + { + "id": 37662, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "dry white wine", + "onions", + "lamb shanks", + "beef stock", + "garlic cloves", + "fresh rosemary", + "olive oil", + "button mushrooms", + "rigatoni", + "fresh basil", + "grated parmesan cheese", + "crushed red pepper" + ] + }, + { + "id": 33102, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "salt", + "chicken thighs", + "pepper", + "all-purpose flour", + "ginger", + "oil", + "sake", + "garlic", + "corn starch" + ] + }, + { + "id": 41825, + "cuisine": "italian", + "ingredients": [ + "shiitake", + "leeks", + "fontina cheese", + "asparagus", + "salt", + "ground black pepper", + "butter", + "eggs", + "grated parmesan cheese" + ] + }, + { + "id": 16694, + "cuisine": "french", + "ingredients": [ + "cider", + "garlic cloves", + "cayenne", + "salt", + "celery seed", + "sugar", + "worcestershire sauce", + "corn starch", + "catsup", + "chopped onion", + "salad oil" + ] + }, + { + "id": 11632, + "cuisine": "southern_us", + "ingredients": [ + "worcestershire sauce", + "ham", + "french bread", + "cream cheese", + "black pepper", + "hot sauce", + "sour cream", + "green onions", + "sharp cheddar cheese" + ] + }, + { + "id": 45316, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "salt", + "wild salmon", + "extra-virgin olive oil", + "red bell pepper", + "vinegar", + "garlic cloves", + "capers", + "fine sea salt", + "steak" + ] + }, + { + "id": 32260, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "chunky peanut butter", + "skinless chicken thighs", + "fresh ginger root", + "sesame oil", + "water", + "green onions", + "onions", + "brown sugar", + "hot pepper sauce", + "garlic" + ] + }, + { + "id": 23030, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "diced tomatoes", + "ghee", + "garam masala", + "ground cayenne pepper", + "black-eyed peas", + "garlic", + "kosher salt", + "ginger" + ] + }, + { + "id": 6887, + "cuisine": "brazilian", + "ingredients": [ + "celery ribs", + "olive oil", + "salt", + "onions", + "tomatoes", + "crushed garlic", + "freshly ground pepper", + "whitefish", + "ground pepper", + "coconut cream", + "coriander", + "brown sugar", + "lemon", + "bay leaf" + ] + }, + { + "id": 21030, + "cuisine": "french", + "ingredients": [ + "brandy", + "shallots", + "olive oil", + "all-purpose flour", + "black pepper", + "heavy cream", + "green peppercorns", + "beef stock", + "chopped parsley" + ] + }, + { + "id": 464, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "veggies", + "cilantro leaves", + "bay leaf", + "cumin", + "clove", + "chopped tomatoes", + "kasuri methi", + "oil", + "cashew nuts", + "coconut", + "star anise", + "green chilies", + "onions", + "red chili powder", + "garam masala", + "salt", + "cinnamon sticks", + "peppercorns" + ] + }, + { + "id": 31764, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "onions", + "pepper", + "salt", + "bacon", + "evaporated milk", + "celery" + ] + }, + { + "id": 25537, + "cuisine": "mexican", + "ingredients": [ + "imitation crab meat", + "skim milk", + "onions", + "low-fat sour cream", + "enchilada sauce", + "low-fat flour tortillas" + ] + }, + { + "id": 5225, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "green onions", + "long-grain rice", + "fresh parsley", + "crawfish", + "butter", + "chopped pecans", + "green bell pepper", + "lean ground beef", + "garlic cloves", + "onions", + "pepper", + "creole seasoning", + "red bell pepper" + ] + }, + { + "id": 2835, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "sweet potatoes", + "brown sugar", + "nutmeg", + "pastry", + "powdered sugar", + "salt" + ] + }, + { + "id": 35817, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "morel", + "butter", + "all-purpose flour", + "slivered almonds", + "bourbon whiskey", + "salt", + "sweetbreads", + "stock", + "parmesan cheese", + "heavy cream", + "sharp cheddar cheese", + "country ham", + "ground black pepper", + "dry mustard", + "celery seed" + ] + }, + { + "id": 5292, + "cuisine": "thai", + "ingredients": [ + "nam pla", + "salt", + "fresh mint", + "sugar", + "thai chile", + "rice flour", + "mango", + "soy sauce", + "garlic", + "corn starch", + "chicken", + "seeds", + "sauce", + "fresh lime juice" + ] + }, + { + "id": 2520, + "cuisine": "mexican", + "ingredients": [ + "American cheese", + "jalapeno chilies", + "milk", + "canola oil", + "fresh cilantro", + "monterey jack", + "tomatoes", + "finely chopped onion" + ] + }, + { + "id": 30170, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "paprika", + "cinnamon sticks", + "hot red pepper flakes", + "unsalted butter", + "orange juice", + "olive oil", + "salt", + "ground cumin", + "black pepper", + "boneless chicken breast", + "fresh lemon juice" + ] + }, + { + "id": 49288, + "cuisine": "southern_us", + "ingredients": [ + "pure maple syrup", + "whole milk", + "buttermilk", + "cayenne pepper", + "black pepper", + "salted mixed nuts", + "salt", + "canola oil", + "firmly packed brown sugar", + "boneless skinless chicken breasts", + "heavy cream", + "panko breadcrumbs", + "sweet potatoes", + "butter", + "all-purpose flour" + ] + }, + { + "id": 6062, + "cuisine": "french", + "ingredients": [ + "orange", + "sugar", + "bittersweet chocolate", + "fresh orange juice", + "water" + ] + }, + { + "id": 39039, + "cuisine": "italian", + "ingredients": [ + "prebaked pizza crusts", + "salt", + "minced garlic", + "tomatoes", + "green onions", + "shredded cheddar cheese", + "ground beef" + ] + }, + { + "id": 46505, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "chicken meat", + "chopped onion", + "tomatoes", + "green onions", + "black olives", + "dried parsley", + "flour tortillas", + "diced tomatoes", + "sour cream", + "tomato sauce", + "chili powder", + "salsa", + "dried oregano" + ] + }, + { + "id": 38864, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "vegetable oil", + "cooking spray", + "garlic cloves", + "lemongrass", + "thai chile", + "sugar", + "shallots", + "Thai fish sauce" + ] + }, + { + "id": 19086, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "sweetened coconut flakes", + "self rising flour", + "sugar", + "large eggs", + "unsalted butter" + ] + }, + { + "id": 10770, + "cuisine": "mexican", + "ingredients": [ + "half & half", + "light brown sugar", + "bittersweet chocolate", + "cayenne pepper", + "ground cinnamon" + ] + }, + { + "id": 12713, + "cuisine": "mexican", + "ingredients": [ + "rice", + "water", + "brown sugar", + "sauce" + ] + }, + { + "id": 32966, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "garlic", + "sour cream", + "cumin", + "avocado", + "chili powder", + "beef broth", + "onions", + "chuck roast", + "salsa", + "corn tortillas", + "shredded Monterey Jack cheese", + "green chile", + "cilantro", + "enchilada sauce", + "garlic salt" + ] + }, + { + "id": 9381, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "green onions", + "tomato soup", + "minced garlic", + "vegetable oil", + "corn kernel whole", + "picante sauce", + "chili powder", + "boneless skinless chicken breast halves", + "water", + "cilantro leaves", + "ground cumin" + ] + }, + { + "id": 32959, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil cooking spray", + "ground red pepper", + "green pepper", + "skim milk", + "salt", + "sugar", + "mexicorn", + "ground cumin", + "egg substitute", + "all-purpose flour" + ] + }, + { + "id": 16722, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt" + ] + }, + { + "id": 32750, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ground black pepper", + "vegetable oil", + "corn starch", + "white vinegar", + "water", + "baking powder", + "all-purpose flour", + "boneless skinless chicken breast halves", + "ketchup", + "green onions", + "salt", + "white sugar", + "eggs", + "fresh ginger root", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 21025, + "cuisine": "italian", + "ingredients": [ + "water", + "diced tomatoes", + "polenta", + "green bell pepper", + "part-skim mozzarella cheese", + "pepperoni", + "pepper", + "marinara sauce", + "onions", + "olive oil", + "salt", + "dried oregano" + ] + }, + { + "id": 2, + "cuisine": "french", + "ingredients": [ + "chicken broth", + "truffles", + "pimentos", + "green pepper", + "olives", + "roast turkey", + "egg yolks", + "heavy cream", + "tarragon leaves", + "eggs", + "flour", + "butter", + "scallions", + "cold water", + "unflavored gelatin", + "leeks", + "salt", + "aspic" + ] + }, + { + "id": 10331, + "cuisine": "italian", + "ingredients": [ + "meat sauce", + "ricotta", + "lasagna noodles", + "shredded mozzarella cheese" + ] + }, + { + "id": 46117, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "sharp cheddar cheese", + "dry mustard", + "milk", + "elbow macaroni", + "eggs", + "salt" + ] + }, + { + "id": 14673, + "cuisine": "indian", + "ingredients": [ + "clove", + "honey", + "cardamom pods", + "sugar", + "black", + "ice", + "black peppercorns", + "ginger", + "cinnamon sticks", + "milk", + "chai tea concentrate" + ] + }, + { + "id": 47006, + "cuisine": "mexican", + "ingredients": [ + "water", + "salt", + "ground cumin", + "vegetable oil", + "garlic cloves", + "chili", + "dark brown sugar", + "white onion", + "dried pinto beans", + "dried oregano" + ] + }, + { + "id": 21123, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "water", + "light beer", + "vegetable oil", + "oil", + "eggs", + "jalapeno chilies", + "baking powder", + "salt", + "greek yogurt", + "whitefish", + "flour tortillas", + "green onions", + "cilantro", + "corn starch", + "cotija", + "flour", + "chili powder", + "cilantro leaves", + "cornmeal" + ] + }, + { + "id": 372, + "cuisine": "mexican", + "ingredients": [ + "chocolate syrup", + "coffee", + "ground cinnamon", + "milk", + "dark brown sugar", + "water", + "vanilla extract", + "cream sweeten whip", + "ground nutmeg" + ] + }, + { + "id": 3455, + "cuisine": "italian", + "ingredients": [ + "sugar", + "garlic", + "plum tomatoes", + "eggplant", + "crushed red pepper", + "sausage casings", + "extra-virgin olive oil", + "salt", + "pepper", + "black olives", + "rigatoni" + ] + }, + { + "id": 16280, + "cuisine": "italian", + "ingredients": [ + "dry vermouth", + "scallions", + "unsalted butter", + "minced peperoncini", + "olive oil", + "veal scallops", + "all-purpose flour" + ] + }, + { + "id": 10541, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "ramen", + "green onions", + "soy sauce", + "peanut butter", + "Sriracha" + ] + }, + { + "id": 250, + "cuisine": "italian", + "ingredients": [ + "chopped ham", + "tomato sauce", + "lean ground beef", + "sausages", + "chicken", + "green bell pepper", + "ground black pepper", + "crushed red pepper flakes", + "rotini", + "pasta", + "mozzarella cheese", + "butter", + "sliced mushrooms", + "pasta sauce", + "grated parmesan cheese", + "salt", + "onions" + ] + }, + { + "id": 33872, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "sharp white cheddar cheese", + "green onions", + "sour cream", + "mayonaise", + "won ton wrappers", + "Sriracha", + "worcestershire sauce", + "lump crab meat", + "ground black pepper", + "sesame oil", + "soy sauce", + "garlic powder", + "grated parmesan cheese", + "cream cheese" + ] + }, + { + "id": 2443, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "kalamata", + "olive oil", + "all-purpose flour", + "lemon", + "fresh oregano", + "pita wedges", + "cheese" + ] + }, + { + "id": 15285, + "cuisine": "mexican", + "ingredients": [ + "triple sec", + "water", + "frozen limeade", + "tequila", + "lime" + ] + }, + { + "id": 29590, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "diced tomatoes", + "yellow onion", + "green bell pepper", + "orzo pasta", + "salt", + "ground cumin", + "chicken stock", + "olive oil", + "garlic", + "red bell pepper", + "black beans", + "chili powder", + "frozen corn" + ] + }, + { + "id": 46282, + "cuisine": "british", + "ingredients": [ + "melted butter", + "self rising flour", + "cinnamon", + "ground almonds", + "brown sugar", + "yoghurt", + "currant", + "apricot jam", + "powdered sugar", + "large eggs", + "lemon", + "softened butter", + "medium eggs", + "ground cloves", + "almond extract", + "vanilla extract", + "glaze" + ] + }, + { + "id": 4126, + "cuisine": "british", + "ingredients": [ + "olive oil", + "bacon", + "black", + "pepper", + "butter", + "salt", + "eggs", + "baked beans", + "button mushrooms", + "sausages", + "cherry tomatoes", + "whole wheat bread", + "maple syrup" + ] + }, + { + "id": 37763, + "cuisine": "french", + "ingredients": [ + "honey", + "shallots", + "herbes de provence", + "halibut fillets", + "ground black pepper", + "salt", + "pitted kalamata olives", + "olive oil", + "chopped fresh thyme", + "fresh parsley", + "salad greens", + "dijon mustard", + "fresh lemon juice" + ] + }, + { + "id": 25627, + "cuisine": "russian", + "ingredients": [ + "black peppercorns", + "leeks", + "dill", + "onions", + "caraway seeds", + "potatoes", + "parsley", + "carrots", + "green cabbage", + "radishes", + "bay leaves", + "garlic cloves", + "tomatoes", + "beef stock", + "butter", + "sour cream" + ] + }, + { + "id": 39784, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "unsalted butter", + "sweetened condensed milk", + "toasted pecans", + "milk chocolate", + "salt", + "coconut flakes", + "white chocolate", + "baking powder", + "roasted hazelnuts", + "water", + "all-purpose flour" + ] + }, + { + "id": 14252, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "garlic", + "yellow onion", + "ground cumin", + "lime", + "chicken tenderloin", + "cilantro leaves", + "corn tortillas", + "sugar", + "tomatillos", + "salt", + "sour cream", + "romaine lettuce", + "jalapeno chilies", + "shredded sharp cheddar cheese", + "smoked paprika" + ] + }, + { + "id": 41181, + "cuisine": "british", + "ingredients": [ + "boneless skinless chicken breast halves", + "marmite", + "yeast extract" + ] + }, + { + "id": 31031, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "water chestnuts", + "scallions", + "corn starch", + "chinese rice wine", + "fresh ginger", + "beaten eggs", + "garlic cloves", + "coriander", + "white pepper", + "sesame oil", + "oil", + "dried red chile peppers", + "sugar", + "vinegar", + "salt", + "shrimp" + ] + }, + { + "id": 30497, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "whole peeled tomatoes", + "chopped onion", + "dried oregano", + "pasta", + "dried basil", + "sliced carrots", + "dill pickles", + "tomato sauce", + "beef stock", + "fresh mushrooms", + "italian sausage", + "zucchini", + "garlic", + "fresh parsley" + ] + }, + { + "id": 38360, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "green onions", + "ginger", + "shrimp", + "fish sauce", + "baking soda", + "sesame oil", + "meat bones", + "broth", + "soy sauce", + "Shaoxing wine", + "wonton wrappers", + "oyster sauce", + "pork bones", + "lemongrass", + "chicken carcass", + "garlic", + "dried shrimp" + ] + }, + { + "id": 13203, + "cuisine": "thai", + "ingredients": [ + "pumpkin", + "Thai red curry paste", + "red chili peppers", + "vegetable stock", + "coconut milk", + "lime juice", + "sunflower oil", + "onions", + "lemongrass", + "ginger" + ] + }, + { + "id": 31919, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "cannellini beans", + "loin", + "milk", + "butter", + "olive oil", + "salt", + "pepper", + "dry white wine" + ] + }, + { + "id": 38702, + "cuisine": "cajun_creole", + "ingredients": [ + "absinthe", + "twists", + "simple syrup", + "bitters", + "ice", + "rye whiskey" + ] + }, + { + "id": 30873, + "cuisine": "cajun_creole", + "ingredients": [ + "mushrooms", + "cayenne pepper", + "boneless skinless chicken breast halves", + "green bell pepper", + "smoked sausage", + "celery", + "chicken broth", + "vegetable oil", + "carrots", + "long grain white rice", + "pepper", + "salt", + "onions" + ] + }, + { + "id": 35310, + "cuisine": "mexican", + "ingredients": [ + "salami", + "monterey jack", + "jalapeno chilies" + ] + }, + { + "id": 15718, + "cuisine": "french", + "ingredients": [ + "mixed mushrooms", + "fresh thyme", + "crème fraîche", + "unsalted butter", + "dry white wine", + "frozen pastry puff sheets", + "garlic cloves" + ] + }, + { + "id": 33205, + "cuisine": "indian", + "ingredients": [ + "dinner rolls", + "chile pepper", + "salt", + "chopped cilantro fresh", + "chopped garlic", + "finely chopped onion", + "butter", + "carrots", + "masala", + "fresh ginger", + "vegetable oil", + "lemon juice", + "plum tomatoes", + "cauliflower", + "potatoes", + "green peas", + "onions", + "cabbage" + ] + }, + { + "id": 3486, + "cuisine": "mexican", + "ingredients": [ + "Mexican oregano", + "garlic cloves", + "ground cumin", + "roasted pumpkin seeds", + "yellow onion", + "serrano chile", + "zucchini", + "vegetable broth", + "ancho chile pepper", + "white hominy", + "tomatillos", + "poblano chiles" + ] + }, + { + "id": 20950, + "cuisine": "japanese", + "ingredients": [ + "sake", + "meat", + "oil", + "soy sauce", + "garlic", + "sugar", + "ginger", + "potato starch", + "green onions", + "rice vinegar" + ] + }, + { + "id": 34841, + "cuisine": "mexican", + "ingredients": [ + "whitefish", + "jalapeno chilies", + "crema", + "cumin", + "pepper", + "cilantro", + "oil", + "pico de gallo", + "green onions", + "salt", + "cabbage", + "avocado", + "lime juice", + "garlic", + "corn tortillas" + ] + }, + { + "id": 8570, + "cuisine": "thai", + "ingredients": [ + "sugar", + "rice vinegar", + "purple onion", + "red pepper", + "persian cucumber", + "salt" + ] + }, + { + "id": 14811, + "cuisine": "southern_us", + "ingredients": [ + "large egg yolks", + "vegetable shortening", + "corn starch", + "sugar", + "unsalted butter", + "all-purpose flour", + "peaches", + "salt", + "instant tapioca", + "large egg whites", + "cinnamon", + "lemon juice" + ] + }, + { + "id": 32793, + "cuisine": "indian", + "ingredients": [ + "milk", + "basmati rice", + "pistachios", + "vanilla beans", + "saffron" + ] + }, + { + "id": 33952, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "garlic cloves", + "tomatoes", + "Mountain Dew Soda", + "corn starch", + "water", + "shrimp", + "sugar", + "oil", + "onions" + ] + }, + { + "id": 11851, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "sugar", + "vanilla extract", + "whole milk", + "water", + "salt" + ] + }, + { + "id": 16614, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "light corn syrup", + "granulated sugar", + "baking soda", + "vanilla", + "butter" + ] + }, + { + "id": 41118, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "rice vinegar", + "corn tortillas", + "cumin", + "avocado", + "chili powder", + "garlic cloves", + "medium shrimp", + "red cabbage", + "freshly ground pepper", + "bay leaf", + "canola oil", + "pico de gallo", + "salt", + "nonstick spray", + "chopped cilantro fresh" + ] + }, + { + "id": 31042, + "cuisine": "chinese", + "ingredients": [ + "gai lan", + "hong kong-style noodles", + "chinese chives", + "peanuts", + "corn starch", + "shiitake", + "garlic", + "soy sauce", + "ginger", + "cooking sherry" + ] + }, + { + "id": 49106, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "unsalted butter", + "whole milk", + "freshly ground pepper", + "celery ribs", + "olive oil", + "grated parmesan cheese", + "ground pork", + "onions", + "ground chuck", + "ground nutmeg", + "low sodium chicken broth", + "all-purpose flour", + "pancetta", + "crushed tomatoes", + "large eggs", + "dry white wine", + "carrots" + ] + }, + { + "id": 14785, + "cuisine": "japanese", + "ingredients": [ + "water", + "peeled fresh ginger", + "chinese cabbage", + "shiitake mushroom caps", + "fresh cilantro", + "lime wedges", + "carrots", + "snow peas", + "yellow miso", + "green onions", + "edamame", + "fresh lime juice", + "chile paste with garlic", + "udon", + "vegetable broth", + "red bell pepper" + ] + }, + { + "id": 6604, + "cuisine": "italian", + "ingredients": [ + "sugar", + "dried basil", + "ziti", + "corn starch", + "black pepper", + "large eggs", + "diced tomatoes", + "cottage cheese", + "olive oil", + "heavy cream", + "dried oregano", + "tomato sauce", + "mozzarella cheese", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 43322, + "cuisine": "jamaican", + "ingredients": [ + "chicken stock", + "coconut", + "salt", + "browning", + "white onion", + "white rice", + "thyme leaves", + "black pepper", + "spring onions", + "ground allspice", + "water", + "garlic", + "dried kidney beans" + ] + }, + { + "id": 21333, + "cuisine": "japanese", + "ingredients": [ + "brown rice", + "white rice", + "soy sauce" + ] + }, + { + "id": 32875, + "cuisine": "filipino", + "ingredients": [ + "eggplant", + "garlic", + "olive oil", + "beef stock cubes", + "onions", + "water", + "achiote powder", + "bok choy", + "long beans", + "oxtails", + "creamy peanut butter" + ] + }, + { + "id": 49289, + "cuisine": "french", + "ingredients": [ + "fresh thyme", + "shallots", + "all-purpose flour", + "carrots", + "olive oil", + "oxtails", + "large garlic cloves", + "fat", + "parsley sprigs", + "bay leaves", + "butter", + "beef broth", + "onions", + "ground nutmeg", + "crimini mushrooms", + "bacon", + "burgundy wine" + ] + }, + { + "id": 11835, + "cuisine": "mexican", + "ingredients": [ + "chopped bell pepper", + "chopped cilantro", + "pepper", + "spaghetti squash", + "plum tomatoes", + "cheddar cheese", + "chili powder", + "ground beef", + "minced garlic", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 5585, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "cannellini beans", + "onions", + "olive oil", + "salt", + "roma tomatoes", + "white beans", + "pepper", + "garlic", + "dried rosemary" + ] + }, + { + "id": 39697, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "flour tortillas", + "boneless beef chuck roast", + "ground cumin", + "avocado", + "chopped tomatoes", + "shredded lettuce", + "sour cream", + "lime", + "vegetable oil", + "freshly ground pepper", + "white onion", + "salsa verde", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 1773, + "cuisine": "indian", + "ingredients": [ + "melted butter", + "baking powder", + "all-purpose flour", + "plain yogurt", + "extra-virgin olive oil", + "sugar", + "crushed garlic", + "active dry yeast", + "salt" + ] + }, + { + "id": 35757, + "cuisine": "indian", + "ingredients": [ + "gin", + "black tea leaves", + "cinnamon sticks", + "saffron threads", + "water", + "salt", + "green cardamom pods", + "whole milk", + "ground cardamom", + "light brown sugar", + "pistachios", + "grated nutmeg" + ] + }, + { + "id": 10286, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "garlic", + "fresh lime juice", + "soy sauce", + "vegetable oil", + "dark brown sugar", + "sesame oil", + "cayenne pepper", + "boneless chicken skinless thigh", + "ginger", + "scallions" + ] + }, + { + "id": 43608, + "cuisine": "italian", + "ingredients": [ + "refrigerated pizza dough", + "parmesan cheese", + "prosciutto", + "rocket leaves", + "extra-virgin olive oil" + ] + }, + { + "id": 10996, + "cuisine": "cajun_creole", + "ingredients": [ + "low sodium broth", + "jalapeno chilies", + "all-purpose flour", + "celery", + "tony chachere's seasoning", + "parsley", + "carrots", + "spicy pork sausage", + "cooked rice", + "green onions", + "bacon grease", + "onions", + "bell pepper", + "lean ground beef", + "chicken livers" + ] + }, + { + "id": 48063, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "bacon", + "lemon juice", + "water", + "salt", + "grits", + "shredded cheddar cheese", + "garlic", + "shrimp", + "butter", + "cayenne pepper", + "sliced green onions" + ] + }, + { + "id": 26186, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "corn starch", + "forest mushroom", + "chicken stock", + "cider vinegar", + "firm tofu", + "cooked shrimp", + "eggs", + "water chestnuts", + "chicken fingers", + "chopped cilantro", + "cold water", + "lily flowers", + "sesame oil", + "dried red chile peppers", + "snow peas" + ] + }, + { + "id": 4155, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "extra-virgin olive oil", + "prosciutto", + "black pepper", + "balsamic vinegar", + "radicchio", + "salt" + ] + }, + { + "id": 30189, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "green onions", + "fresh lime juice", + "tomato sauce", + "cooking spray", + "light coconut milk", + "asian fish sauce", + "brown sugar", + "short-grain rice", + "ground sirloin", + "chopped cilantro", + "lime rind", + "leeks", + "red curry paste", + "iceberg lettuce" + ] + }, + { + "id": 45071, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "garlic", + "soy sauce", + "whole peppercorn", + "chicken pieces", + "bay leaves" + ] + }, + { + "id": 1442, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "wheat", + "salt", + "haricots verts", + "fresh coriander", + "ginger", + "lemon juice", + "daal", + "chili powder", + "green chilies", + "tomatoes", + "cooking oil", + "peas", + "carrots" + ] + }, + { + "id": 48097, + "cuisine": "japanese", + "ingredients": [ + "gari", + "nori", + "soy sauce", + "lemon", + "yellowfin tuna", + "carrots", + "wasabi paste", + "daikon" + ] + }, + { + "id": 35028, + "cuisine": "french", + "ingredients": [ + "haricots verts" + ] + }, + { + "id": 12355, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lemongrass", + "salt", + "garlic cloves", + "ground cumin", + "unsweetened coconut milk", + "boneless chicken skinless thigh", + "chunky peanut butter", + "peanut oil", + "fresh lime juice", + "brown sugar", + "granulated sugar", + "coconut cream", + "cucumber", + "serrano chilies", + "water", + "shallots", + "ground coriander", + "galangal" + ] + }, + { + "id": 6975, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "rotel tomatoes", + "chicken broth", + "garlic", + "onions", + "v8", + "comino", + "cream of chicken soup", + "green chilies", + "adobo seasoning" + ] + }, + { + "id": 16439, + "cuisine": "filipino", + "ingredients": [ + "tomato sauce", + "water", + "salt", + "frozen sweet peas", + "soy sauce", + "steamed white rice", + "ground beef", + "sugar", + "bananas", + "oil", + "eggs", + "pepper", + "garlic", + "onions" + ] + }, + { + "id": 40534, + "cuisine": "french", + "ingredients": [ + "water", + "extra-virgin olive oil", + "bacon", + "onions", + "ground black pepper", + "green beans", + "tomatoes", + "sea salt" + ] + }, + { + "id": 3956, + "cuisine": "italian", + "ingredients": [ + "eggs", + "kosher salt", + "grated parmesan cheese", + "portabello mushroom", + "shredded mozzarella cheese", + "sausage casings", + "dried thyme", + "ricotta cheese", + "jumbo pasta shells", + "dried oregano", + "shredded basil", + "minced garlic", + "shallots", + "grated nutmeg", + "flat leaf parsley", + "frozen spinach", + "black pepper", + "olive oil", + "red pepper flakes", + "sauce" + ] + }, + { + "id": 17671, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "italian seasoning", + "diced tomatoes", + "base", + "tomato sauce", + "spaghetti" + ] + }, + { + "id": 5003, + "cuisine": "mexican", + "ingredients": [ + "condensed cream of chicken soup", + "chili powder", + "boneless chicken breast halves", + "tortilla chips", + "cheese soup", + "condensed cream of mushroom soup", + "processed cheese" + ] + }, + { + "id": 26300, + "cuisine": "french", + "ingredients": [ + "rutabaga", + "shredded swiss cheese", + "dry bread crumbs", + "garlic powder", + "salt", + "onions", + "pepper", + "1% low-fat milk", + "rubbed sage", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 15883, + "cuisine": "indian", + "ingredients": [ + "water", + "cumin seed", + "onions", + "cilantro leaves", + "rice flour", + "salt", + "oil", + "curry leaves", + "green chilies", + "sooji" + ] + }, + { + "id": 43694, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "low sodium chicken broth", + "peanut oil", + "toasted sesame oil", + "water", + "rice vinegar", + "oyster sauce", + "minced garlic", + "flank steak", + "scallions", + "light brown sugar", + "fresh ginger", + "broccoli", + "corn starch" + ] + }, + { + "id": 9657, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "sesame oil", + "garlic", + "long beans", + "brown rice", + "ginger", + "panko breadcrumbs", + "hoisin sauce", + "cilantro", + "bird chile", + "ground chicken", + "lemon", + "scallions" + ] + }, + { + "id": 470, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic", + "dried oregano", + "lime", + "boneless skinless chicken breasts", + "ground coriander", + "lime zest", + "ground black pepper", + "salt", + "honey", + "ancho powder", + "tequila" + ] + }, + { + "id": 23399, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "enchilada sauce", + "onions", + "picante sauce", + "salt", + "ripe olives", + "garlic powder", + "corn tortillas", + "shredded cheddar cheese", + "oil", + "ground beef" + ] + }, + { + "id": 6985, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "hamburger buns", + "tomato sauce", + "chicken nugget", + "American cheese" + ] + }, + { + "id": 8414, + "cuisine": "french", + "ingredients": [ + "sliced almonds", + "sourdough", + "brie cheese", + "chopped parsley", + "prosciutto" + ] + }, + { + "id": 28193, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "water", + "grated parmesan cheese", + "shredded mozzarella cheese", + "tomato sauce", + "garlic powder", + "cheese ravioli", + "italian seasoning", + "sausage casings", + "olive oil", + "onion powder", + "fresh basil leaves", + "kosher salt", + "ground black pepper", + "diced tomatoes" + ] + }, + { + "id": 40019, + "cuisine": "thai", + "ingredients": [ + "romaine lettuce", + "thai basil", + "ginger", + "garlic chili sauce", + "toasted sesame seeds", + "fish sauce", + "olive oil", + "flank steak", + "english cucumber", + "fresh lime juice", + "ground cumin", + "avocado", + "cherry tomatoes", + "green onions", + "purple onion", + "carrots", + "chopped cilantro fresh", + "brown sugar", + "peanuts", + "red wine vinegar", + "garlic cloves", + "chopped fresh mint" + ] + }, + { + "id": 27224, + "cuisine": "indian", + "ingredients": [ + "crushed red pepper flakes", + "cinnamon sticks", + "red chili powder", + "salt", + "frozen chopped spinach", + "curry", + "onions", + "tumeric", + "green chilies" + ] + }, + { + "id": 35460, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "margarine", + "black pepper", + "garlic", + "onions", + "green bell pepper", + "condensed cream of mushroom soup", + "cayenne pepper", + "crawfish", + "salt", + "long grain white rice" + ] + }, + { + "id": 4900, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "vanilla extract", + "chopped pecans", + "pecan halves", + "light corn syrup", + "dark brown sugar", + "pastry shell", + "salt", + "unsalted butter", + "whipping cream", + "unsweetened chocolate" + ] + }, + { + "id": 44958, + "cuisine": "thai", + "ingredients": [ + "Sriracha", + "greek style plain yogurt", + "green onions", + "sweet chili sauce", + "shrimp" + ] + }, + { + "id": 3521, + "cuisine": "indian", + "ingredients": [ + "lemon", + "kosher salt", + "onions", + "cider vinegar", + "green chilies" + ] + }, + { + "id": 16847, + "cuisine": "french", + "ingredients": [ + "pure vanilla extract", + "unsalted butter", + "bittersweet chocolate", + "sugar", + "all-purpose flour", + "baking soda", + "fleur de sel", + "light brown sugar", + "Dutch-processed cocoa powder" + ] + }, + { + "id": 49186, + "cuisine": "italian", + "ingredients": [ + "shredded cheddar cheese", + "ricotta cheese", + "eggs", + "Alfredo sauce", + "spicy pork sausage", + "frozen chopped spinach", + "grated parmesan cheese", + "oven-ready lasagna noodles", + "ground black pepper", + "shredded mozzarella cheese" + ] + }, + { + "id": 30330, + "cuisine": "jamaican", + "ingredients": [ + "shortening", + "vanilla extract", + "white sugar", + "cold water", + "butter", + "all-purpose flour", + "egg whites", + "salt", + "plantains", + "eggs", + "red food coloring", + "grated nutmeg" + ] + }, + { + "id": 4132, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "cooking spray", + "black pepper", + "grated parmesan cheese", + "dried oregano", + "baguette", + "chips", + "garlic powder", + "salt" + ] + }, + { + "id": 45683, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "apple cider vinegar", + "sugar", + "garlic powder", + "salt", + "soy sauce", + "boneless skinless chicken breasts", + "corn starch", + "eggs", + "pepper", + "vegetable oil" + ] + }, + { + "id": 18354, + "cuisine": "irish", + "ingredients": [ + "powdered sugar", + "baking soda", + "cooking spray", + "non-fat sour cream", + "whole wheat pastry flour", + "chopped almonds", + "butter", + "all-purpose flour", + "ground cinnamon", + "rolled oats", + "reduced fat milk", + "vanilla extract", + "ground allspice", + "brown sugar", + "dried cherry", + "baking powder", + "salt" + ] + }, + { + "id": 12888, + "cuisine": "mexican", + "ingredients": [ + "cooked rice", + "orange bell pepper", + "flour tortillas", + "salsa", + "chopped cilantro fresh", + "black beans", + "grilled chicken", + "salt", + "fresh lime juice", + "romaine lettuce", + "chopped tomatoes", + "chili powder", + "shredded cheese", + "avocado", + "corn", + "diced red onions", + "greek style plain yogurt", + "adobo sauce" + ] + }, + { + "id": 25659, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "fettuccine pasta", + "salt", + "heavy cream", + "parmesan cheese" + ] + }, + { + "id": 4836, + "cuisine": "jamaican", + "ingredients": [ + "water", + "salt", + "kidney beans", + "coconut milk", + "dried thyme", + "long-grain rice", + "black pepper", + "garlic", + "onions" + ] + }, + { + "id": 18581, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "yellow onion", + "garlic", + "vegetable oil", + "medium-grain rice", + "tomato sauce", + "salt" + ] + }, + { + "id": 43878, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "large shrimp", + "shells", + "fine sea salt", + "ground black pepper", + "chinese five-spice powder" + ] + }, + { + "id": 20099, + "cuisine": "jamaican", + "ingredients": [ + "fruit", + "simple syrup", + "lemon", + "teas", + "soda water", + "brandy", + "red wine" + ] + }, + { + "id": 41130, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "red pepper", + "garlic cloves", + "fresh ginger", + "peanut butter", + "honey", + "rice vinegar", + "sesame oil", + "hot chili sauce" + ] + }, + { + "id": 48096, + "cuisine": "korean", + "ingredients": [ + "shiitake", + "baby spinach", + "carrots", + "large eggs", + "scallions", + "long grain white rice", + "Sriracha", + "english cucumber", + "toasted sesame oil", + "soy sauce", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 32573, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "lime juice", + "chili powder", + "ground coriander", + "chicken stock", + "boneless chicken skinless thigh", + "vegetables", + "garlic", + "onions", + "red chili peppers", + "lime", + "peas", + "thai green curry paste", + "fish sauce", + "fresh coriander", + "bell pepper", + "coconut cream", + "ground cumin" + ] + }, + { + "id": 32357, + "cuisine": "italian", + "ingredients": [ + "carbonated water", + "orange juice", + "grenadine syrup", + "peach schnapps" + ] + }, + { + "id": 47218, + "cuisine": "mexican", + "ingredients": [ + "nonfat greek yogurt", + "low-fat cream cheese", + "kosher salt", + "chili powder", + "monterey jack", + "part-skim mozzarella", + "cooked chicken", + "cumin", + "diced green chilies", + "green enchilada sauce" + ] + }, + { + "id": 10995, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "shredded carrots", + "salt", + "onions", + "pepper", + "brown rice", + "scallions", + "eggs", + "cooking spray", + "edamame", + "egg whites", + "garlic", + "oil" + ] + }, + { + "id": 31423, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "baking soda", + "buckwheat flour", + "black pepper", + "large eggs", + "sour cream", + "sugar", + "unsalted butter", + "all-purpose flour", + "smoked salmon", + "milk", + "salt" + ] + }, + { + "id": 36431, + "cuisine": "russian", + "ingredients": [ + "egg whites", + "salt", + "hard-boiled egg", + "cabbage", + "sugar", + "butter", + "flour", + "cream cheese" + ] + }, + { + "id": 15485, + "cuisine": "italian", + "ingredients": [ + "dijon mustard", + "prosciutto", + "fresh basil leaves", + "olive oil", + "red wine vinegar", + "extra large shrimp", + "chopped garlic" + ] + }, + { + "id": 21581, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "all-purpose flour", + "butter", + "confectioners sugar", + "eggs", + "mincemeat pie filling", + "ice water", + "grated orange" + ] + }, + { + "id": 4118, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "cayenne pepper", + "sugar", + "salt", + "buttermilk", + "sharp cheddar cheese", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 40974, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "granulated sugar", + "stuffing", + "dark soy sauce", + "water", + "bell pepper", + "cooked white rice", + "pepper", + "large eggs", + "sauce", + "boneless chicken thighs", + "mirin", + "salt" + ] + }, + { + "id": 48993, + "cuisine": "mexican", + "ingredients": [ + "oxtails", + "salt", + "frozen mixed vegetables", + "onions", + "olive oil", + "russet potatoes", + "lentils", + "celery", + "ground cumin", + "pepper", + "chili powder", + "long-grain rice", + "corn tortillas", + "cabbage", + "beef bouillon", + "beef stew meat", + "carrots", + "corn-on-the-cob" + ] + }, + { + "id": 12258, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "Mexican oregano", + "salt", + "ground cumin", + "water", + "vegetable oil", + "beef sirloin", + "garlic powder", + "paprika", + "red bell pepper", + "ground black pepper", + "garlic", + "onions" + ] + }, + { + "id": 1871, + "cuisine": "thai", + "ingredients": [ + "chili flakes", + "fresh coriander", + "spring onions", + "rice vinegar", + "brown sugar", + "egg noodles", + "vegetable oil", + "garlic cloves", + "fish sauce", + "lime juice", + "sesame oil", + "broccoli", + "dressing", + "soy sauce", + "peeled prawns", + "red pepper", + "carrots" + ] + }, + { + "id": 3046, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "salt", + "melted butter", + "baking powder", + "cornmeal", + "whole milk", + "all-purpose flour", + "eggs", + "vegetable oil", + "white sugar" + ] + }, + { + "id": 3876, + "cuisine": "mexican", + "ingredients": [ + "sweet potatoes", + "adobo sauce", + "black pepper", + "salt", + "chipotle chile", + "butter", + "fat free milk", + "maple syrup" + ] + }, + { + "id": 39245, + "cuisine": "french", + "ingredients": [ + "almond flour", + "jelly", + "large egg whites", + "salt", + "slivered almonds", + "granulated sugar", + "pure vanilla extract", + "instant espresso powder", + "confectioners sugar" + ] + }, + { + "id": 1582, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "bulk italian sausag", + "vegetable oil", + "chopped onion", + "fresh basil", + "light cream", + "garlic", + "lemon juice", + "eggs", + "dried basil", + "refrigerated piecrusts", + "shredded mozzarella cheese", + "pepper", + "dijon mustard", + "salt", + "dried oregano" + ] + }, + { + "id": 11752, + "cuisine": "italian", + "ingredients": [ + "spinach", + "olive oil", + "part-skim ricotta cheese", + "ground chicken", + "parmesan cheese", + "onions", + "pepper", + "lasagna noodles", + "light alfredo sauce", + "part-skim mozzarella cheese", + "salt" + ] + }, + { + "id": 22556, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "sesame oil", + "Gochujang base", + "asian fish sauce", + "honey", + "lime wedges", + "garlic cloves", + "boneless chicken thighs", + "chile pepper", + "chinese five-spice powder", + "hoisin sauce", + "rice vinegar", + "onions" + ] + }, + { + "id": 13707, + "cuisine": "southern_us", + "ingredients": [ + "minced garlic", + "jalapeno chilies", + "chopped celery", + "ground cumin", + "reduced fat sharp cheddar cheese", + "olive oil", + "boneless skinless chicken breasts", + "chopped onion", + "water", + "barbecue sauce", + "salt", + "frozen hash browns", + "chopped green bell pepper", + "chili powder", + "carrots" + ] + }, + { + "id": 40058, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "chopped cilantro", + "lime wedges", + "orange juice", + "lime juice", + "salt", + "pork shoulder", + "achiote paste", + "Mexican cheese" + ] + }, + { + "id": 26846, + "cuisine": "indian", + "ingredients": [ + "almonds", + "sugar", + "basmati rice", + "cardamom", + "milk" + ] + }, + { + "id": 25057, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "golden brown sugar", + "vanilla extract", + "hot water", + "hazelnuts", + "semisweet chocolate", + "corn starch", + "instant espresso powder", + "salt" + ] + }, + { + "id": 4636, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salt", + "vegetable oil", + "water", + "yellow onion", + "pasta", + "garlic" + ] + }, + { + "id": 26741, + "cuisine": "indian", + "ingredients": [ + "fresh tomatoes", + "seeds", + "green chilies", + "asafoetida powder", + "red chili powder", + "black pepper", + "garlic", + "black mustard seeds", + "ground turmeric", + "curry leaves", + "sugar", + "ginger", + "cumin seed", + "onions", + "green bell pepper", + "pandanus leaf", + "salt", + "cinnamon sticks", + "ground cumin" + ] + }, + { + "id": 8810, + "cuisine": "irish", + "ingredients": [ + "soy sauce", + "nutritional yeast", + "parsley", + "vital wheat gluten", + "salt", + "thyme", + "pepper", + "flax seeds", + "whole wheat bread", + "garlic", + "dark beer", + "onions", + "nutmeg", + "water", + "onion powder", + "ginger", + "cashew butter", + "sausages", + "marjoram", + "black pepper", + "ground sage", + "baking potatoes", + "vegetable broth", + "vegan bouillon cubes", + "flavoring" + ] + }, + { + "id": 30103, + "cuisine": "mexican", + "ingredients": [ + "ground chicken", + "cooking spray", + "ground turkey", + "taco seasoning mix", + "whole kernel corn, drain", + "green chile", + "egg whites", + "enchilada sauce", + "black beans", + "dry bread crumbs", + "chunky salsa" + ] + }, + { + "id": 12838, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "flat leaf parsley", + "baking potatoes", + "scallions", + "unsalted butter", + "spanish chorizo", + "onions", + "paprika", + "garlic cloves" + ] + }, + { + "id": 29294, + "cuisine": "mexican", + "ingredients": [ + "chicken meat", + "onions", + "pepper", + "salt", + "garlic", + "shredded Monterey Jack cheese", + "vegetable oil", + "corn tortillas" + ] + }, + { + "id": 44246, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "butter", + "cream", + "green tea powder", + "powdered sugar", + "all-purpose flour", + "baking powder" + ] + }, + { + "id": 30075, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "pappardelle", + "pinenuts", + "unsalted butter", + "radicchio", + "ricotta salata", + "butternut squash" + ] + }, + { + "id": 39809, + "cuisine": "japanese", + "ingredients": [ + "konbu", + "bonito flakes" + ] + }, + { + "id": 37810, + "cuisine": "thai", + "ingredients": [ + "lime zest", + "shrimp paste", + "cumin seed", + "lemongrass", + "garlic", + "peppercorns", + "chiles", + "shallots", + "galangal", + "coriander seeds", + "root vegetables" + ] + }, + { + "id": 49241, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "salt", + "chillies", + "tumeric", + "chili powder", + "oil", + "coriander", + "fenugreek leaves", + "potatoes", + "cumin seed", + "onions", + "water", + "ginger", + "gram flour" + ] + }, + { + "id": 24794, + "cuisine": "mexican", + "ingredients": [ + "fresh spinach", + "chili powder", + "non-fat sour cream", + "black beans", + "whole wheat tortillas", + "onions", + "cheddar cheese", + "vegetable oil", + "salsa", + "boneless skinless chicken breasts", + "garlic" + ] + }, + { + "id": 45067, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "minced ginger", + "green onions", + "buckwheat noodles", + "coconut milk", + "kosher salt", + "jalapeno chilies", + "red pepper flakes", + "carrots", + "boiling water", + "soy sauce", + "lime", + "crushed garlic", + "salted peanuts", + "chopped cilantro", + "water", + "chunky peanut butter", + "yellow bell pepper", + "red bell pepper", + "large shrimp" + ] + }, + { + "id": 42000, + "cuisine": "spanish", + "ingredients": [ + "canned low sodium chicken broth", + "olive oil", + "garlic", + "plum tomatoes", + "romaine lettuce", + "vermicelli", + "chickpeas", + "tumeric", + "cayenne", + "salt", + "water", + "paprika", + "onions" + ] + }, + { + "id": 35189, + "cuisine": "mexican", + "ingredients": [ + "cheese", + "tortillas", + "olives", + "tomato sauce", + "onions", + "cutlet" + ] + }, + { + "id": 32063, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "white wine vinegar", + "fresh parmesan cheese", + "salt", + "minced garlic", + "crushed red pepper", + "fresh leav spinach", + "extra-virgin olive oil", + "arugula" + ] + }, + { + "id": 45251, + "cuisine": "greek", + "ingredients": [ + "fat free yogurt", + "lemon wedge", + "grated lemon zest", + "feta cheese crumbles", + "chopped fresh mint", + "tomatoes", + "honey", + "extra-virgin olive oil", + "garlic cloves", + "flat leaf parsley", + "water", + "red wine vinegar", + "organic vegetable broth", + "cucumber", + "dried oregano", + "pitted kalamata olives", + "ground black pepper", + "purple onion", + "fresh lemon juice", + "medium shrimp" + ] + }, + { + "id": 49069, + "cuisine": "spanish", + "ingredients": [ + "red wine", + "kirschenliqueur", + "club soda", + "strawberries", + "peaches" + ] + }, + { + "id": 10566, + "cuisine": "mexican", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "non-fat sour cream", + "green chile", + "green onions", + "ripe olives", + "flour tortillas", + "cream cheese, soften", + "herbs", + "garlic cloves" + ] + }, + { + "id": 9096, + "cuisine": "mexican", + "ingredients": [ + "triple sec", + "fresh lime juice", + "ice cubes", + "grapefruit juice", + "agave nectar", + "pomegranate seeds", + "tequila" + ] + }, + { + "id": 42687, + "cuisine": "italian", + "ingredients": [ + "butter", + "water", + "polenta", + "ground black pepper", + "salt" + ] + }, + { + "id": 31081, + "cuisine": "japanese", + "ingredients": [ + "chiles", + "ground pepper", + "vegetable oil", + "cucumber", + "chicken broth", + "water", + "tamarind juice", + "gingerroot", + "fish sauce", + "fresh cilantro", + "shallots", + "garlic cloves", + "coconut juice", + "sugar", + "beef", + "salt", + "mushroom soy sauce" + ] + }, + { + "id": 9919, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "potatoes", + "seasoned rice wine vinegar", + "asparagus", + "extra-virgin olive oil", + "fresh basil leaves", + "cooking oil", + "salt", + "ground pepper", + "basil", + "salad oil" + ] + }, + { + "id": 33203, + "cuisine": "vietnamese", + "ingredients": [ + "ground black pepper", + "garlic", + "fish sauce", + "shallots", + "chopped cilantro", + "catfish fillets", + "green onions", + "fresh lime juice", + "water", + "red pepper flakes", + "white sugar" + ] + }, + { + "id": 17430, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "asiago", + "lemon juice", + "pimentos", + "purple onion", + "sourdough baguette", + "artichoke hearts", + "garlic", + "red bell pepper", + "pepper", + "parsley", + "salt" + ] + }, + { + "id": 21082, + "cuisine": "italian", + "ingredients": [ + "pepper", + "grated parmesan cheese", + "salt", + "dried oregano", + "pasta", + "whole peeled tomatoes", + "garlic", + "onions", + "olive oil", + "crushed red pepper flakes", + "chopped parsley", + "dried basil", + "cannellini beans", + "carrots" + ] + }, + { + "id": 14508, + "cuisine": "southern_us", + "ingredients": [ + "cocktail cherries", + "southern comfort", + "sloe gin", + "Galliano", + "orange juice", + "orange", + "liqueur" + ] + }, + { + "id": 37695, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "taco seasoning", + "chuck roast", + "salsa verde", + "canned corn", + "beef broth" + ] + }, + { + "id": 48862, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dried fettuccine", + "boneless skinless chicken breast halves", + "reduced sodium chicken broth", + "butter", + "lemon juice", + "capers", + "dry white wine", + "salt", + "pepper", + "paprika", + "corn starch" + ] + }, + { + "id": 1438, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "ice", + "liquor", + "mango nectar", + "lime", + "mango", + "cachaca" + ] + }, + { + "id": 27295, + "cuisine": "italian", + "ingredients": [ + "eggs", + "prosciutto", + "extra-virgin olive oil", + "juice", + "chicken stock", + "white wine", + "parmigiano reggiano cheese", + "garlic puree", + "tomatoes", + "swiss chard", + "bay leaves", + "freshly ground pepper", + "boneless pork shoulder", + "bread crumbs", + "fresh thyme", + "provolone cheese", + "tagliatelle" + ] + }, + { + "id": 49427, + "cuisine": "indian", + "ingredients": [ + "clove", + "water", + "ginger", + "cinnamon sticks", + "ghee", + "saffron", + "warm water", + "mixed vegetables", + "cardamom pods", + "bay leaf", + "cashew nuts", + "ground cinnamon", + "golden raisins", + "garlic", + "ground cayenne pepper", + "onions", + "ground cumin", + "kosher salt", + "cracked black pepper", + "ground coriander", + "chopped cilantro", + "basmati rice" + ] + }, + { + "id": 17624, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "button mushrooms", + "onions", + "potato gnocchi", + "sweet paprika", + "flank steak", + "yellow bell pepper", + "minced garlic", + "diced tomatoes", + "red bell pepper" + ] + }, + { + "id": 15667, + "cuisine": "southern_us", + "ingredients": [ + "grated parmesan cheese", + "salt", + "black pepper", + "butter", + "frozen corn kernels", + "whole milk", + "all-purpose flour", + "granulated sugar", + "heavy cream" + ] + }, + { + "id": 1600, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "collard greens", + "purple onion", + "bacon", + "cider vinegar" + ] + }, + { + "id": 21363, + "cuisine": "italian", + "ingredients": [ + "Bertolli® Classico Olive Oil", + "garlic", + "onions", + "water", + "asparagus", + "carrots", + "ground black pepper", + "broccoli", + "Bertolli® Alfredo Sauce", + "linguine", + "red bell pepper" + ] + }, + { + "id": 9114, + "cuisine": "italian", + "ingredients": [ + "red vermouth", + "garlic cloves", + "meatloaf", + "reduced sodium chicken broth", + "purple onion", + "corn starch", + "celery ribs", + "extra-virgin olive oil", + "fresh lemon juice", + "celery", + "hot red pepper flakes", + "linguine", + "carrots", + "ground cumin" + ] + }, + { + "id": 14226, + "cuisine": "greek", + "ingredients": [ + "avocado", + "garlic", + "chopped fresh mint", + "lemon", + "cucumber", + "pepper", + "salt", + "chopped cilantro fresh", + "red pepper flakes", + "sour cream" + ] + }, + { + "id": 39696, + "cuisine": "french", + "ingredients": [ + "parsley sprigs", + "beef stock", + "bouquet garni", + "sourdough bread", + "sea salt", + "thyme", + "juniper berries", + "dry sherry", + "freshly ground pepper", + "unsalted butter", + "gruyere cheese", + "onions" + ] + }, + { + "id": 46308, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "garlic cloves", + "onions", + "tomatoes", + "olive oil", + "sour cream", + "chicken", + "avocado", + "lime", + "chipotle paste", + "coriander", + "red chili peppers", + "coriander seeds", + "corn tortillas" + ] + }, + { + "id": 44508, + "cuisine": "chinese", + "ingredients": [ + "black peppercorns", + "soy sauce", + "star anise", + "whole chicken", + "brown sugar", + "yellow rock sugar", + "cilantro leaves", + "orange zest", + "dark soy sauce", + "fresh ginger", + "fine sea salt", + "dried red chile peppers", + "clove", + "chinese rice wine", + "low sodium chicken broth", + "scallions" + ] + }, + { + "id": 22244, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "light brown sugar", + "corn starch", + "unsweetened almond milk", + "unsweetened cocoa powder", + "pure vanilla extract", + "cinnamon" + ] + }, + { + "id": 36375, + "cuisine": "italian", + "ingredients": [ + "semisweet chocolate", + "vanilla extract", + "sugar", + "light corn syrup", + "amaretto", + "toasted almonds", + "large egg yolks", + "whipping cream" + ] + }, + { + "id": 47799, + "cuisine": "french", + "ingredients": [ + "milk", + "large eggs", + "button mushrooms", + "hot water", + "olive oil", + "grated parmesan cheese", + "salt", + "flat leaf parsley", + "dried porcini mushrooms", + "unsalted butter", + "all purpose unbleached flour", + "ham", + "melted butter", + "ground nutmeg", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 11872, + "cuisine": "italian", + "ingredients": [ + "extra large eggs", + "parmigiano reggiano cheese", + "sauce", + "kosher salt", + "extra-virgin olive oil", + "all purpose unbleached flour" + ] + }, + { + "id": 11558, + "cuisine": "thai", + "ingredients": [ + "canton noodles", + "red curry paste", + "chicken thighs", + "green bell pepper", + "ginger", + "vegan Worcestershire sauce", + "chicken demi-glace", + "cilantro", + "scallions", + "lime", + "garlic", + "white mushrooms" + ] + }, + { + "id": 24352, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "basil dried leaves", + "tomatoes", + "broccoli florets", + "water", + "rotini", + "Velveeta", + "boneless skinless chicken breasts" + ] + }, + { + "id": 5221, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "dark sesame oil", + "napa cabbage", + "sambal ulek", + "garlic", + "sesame seeds" + ] + }, + { + "id": 3799, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "mace", + "purple onion", + "green chilies", + "ground cumin", + "clove", + "water", + "bay leaves", + "green cardamom", + "ghee", + "lamb shanks", + "whole milk yoghurt", + "salt", + "ground coriander", + "black peppercorns", + "fresh ginger", + "garlic", + "brown cardamom", + "ground turmeric" + ] + }, + { + "id": 29635, + "cuisine": "italian", + "ingredients": [ + "dijon mustard", + "shredded cheddar cheese", + "dried pasta", + "salt", + "milk" + ] + }, + { + "id": 21144, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken skinless thigh", + "chives", + "shredded Monterey Jack cheese", + "sliced black olives", + "garlic", + "black pepper", + "chile pepper", + "condensed cream of chicken soup", + "flour tortillas", + "sour cream" + ] + }, + { + "id": 17395, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "salt", + "chopped cilantro fresh", + "2% low fat cheddar chees", + "garlic cloves", + "low sodium vegetable broth", + "salsa", + "cumin", + "black pepper", + "extra-virgin olive oil", + "corn tortillas" + ] + }, + { + "id": 14735, + "cuisine": "mexican", + "ingredients": [ + "dried black beans", + "vegetable oil", + "crema", + "jalapeno chilies", + "chees fresco queso", + "sauce", + "whole peeled tomatoes", + "butter", + "salt", + "eggs", + "shallots", + "garlic", + "corn tortillas" + ] + }, + { + "id": 15646, + "cuisine": "thai", + "ingredients": [ + "water", + "sesame oil", + "garlic", + "chili sauce", + "red bell pepper", + "sugar", + "green onions", + "napa cabbage", + "rice vinegar", + "carrots", + "natural peanut butter", + "lime", + "vegetable oil", + "salt", + "hearts of romaine", + "soy sauce", + "boneless skinless chicken breasts", + "cilantro", + "salted peanuts", + "cucumber" + ] + }, + { + "id": 6402, + "cuisine": "mexican", + "ingredients": [ + "blanched almonds", + "ice", + "water", + "long grain white rice", + "ground cinnamon", + "cinnamon sticks", + "vanilla", + "sweetened condensed milk" + ] + }, + { + "id": 43185, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "miso", + "enokitake", + "wakame", + "firm tofu" + ] + }, + { + "id": 31532, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "extra-virgin olive oil", + "large garlic cloves", + "crème fraîche", + "mayonaise", + "diced tomatoes", + "water", + "dried salted codfish" + ] + }, + { + "id": 32218, + "cuisine": "jamaican", + "ingredients": [ + "red chili peppers", + "chicken breasts", + "rice", + "red kidney beans", + "garam masala", + "garlic", + "coconut milk", + "soy sauce", + "capsicum", + "butter oil", + "garlic paste", + "vinegar", + "salt", + "onions" + ] + }, + { + "id": 39684, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "yellow onion", + "kosher salt", + "zucchini", + "arborio rice", + "ground black pepper", + "garlic cloves", + "low sodium vegetable broth", + "grated parmesan cheese" + ] + }, + { + "id": 25858, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ground black pepper", + "garlic", + "corn starch", + "chicken stock", + "eggplant", + "sesame oil", + "oyster sauce", + "water", + "green onions", + "chili sauce", + "white sugar", + "cooked rice", + "fresh ginger root", + "lean ground beef", + "shrimp" + ] + }, + { + "id": 20992, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "dry mustard", + "freshly ground pepper", + "romaine lettuce", + "lemon", + "salt", + "red wine vinegar", + "garlic", + "croutons", + "olive oil", + "worcestershire sauce", + "anchovy fillets" + ] + }, + { + "id": 20707, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "all-purpose flour", + "key lime juice", + "butter-margarine blend", + "cooking spray", + "whipped topping", + "brown sugar", + "large eggs", + "light cream cheese", + "lime rind", + "baking powder", + "toasted wheat germ" + ] + }, + { + "id": 47342, + "cuisine": "indian", + "ingredients": [ + "cilantro leaves", + "lemon juice", + "sweet potatoes", + "cumin seed", + "green chilies", + "chaat masala", + "chili powder", + "rock salt" + ] + }, + { + "id": 39881, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "pecorino romano cheese", + "chopped fresh sage", + "prepared lasagne", + "fresh rosemary", + "chopped fresh thyme", + "salt", + "chopped fresh mint", + "fresh marjoram", + "fresh tarragon", + "pasta sheets", + "plum tomatoes", + "dough", + "black pepper", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 46577, + "cuisine": "thai", + "ingredients": [ + "eggs", + "peanuts", + "yellow onion", + "chicken broth", + "brown sugar", + "zucchini", + "fresh herbs", + "white vinegar", + "fish sauce", + "chili paste", + "oil", + "brown rice noodles", + "soy sauce", + "red pepper", + "carrots" + ] + }, + { + "id": 23810, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "ground allspice", + "warm water", + "chickpeas", + "ground cumin", + "cayenne", + "garlic cloves", + "lamb rib chops", + "cinnamon", + "carrots" + ] + }, + { + "id": 32997, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "finely chopped onion", + "baking powder", + "garlic cloves", + "baking soda", + "large eggs", + "all-purpose flour", + "yellow corn meal", + "unsalted butter", + "whole milk", + "cayenne pepper", + "plain yogurt", + "pepper jack", + "salt" + ] + }, + { + "id": 23002, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "napa cabbage", + "dumplings", + "large eggs", + "ground pork", + "fresh ginger", + "cilantro", + "soy sauce", + "sesame oil", + "scallions" + ] + }, + { + "id": 18041, + "cuisine": "greek", + "ingredients": [ + "rosemary", + "lemon", + "salt", + "dijon mustard", + "paprika", + "leg of lamb", + "pepper", + "potatoes", + "garlic", + "oregano", + "olive oil", + "sea salt", + "thyme" + ] + }, + { + "id": 5919, + "cuisine": "mexican", + "ingredients": [ + "sour cream", + "monterey jack", + "kosher salt", + "onions", + "poblano chiles", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 5069, + "cuisine": "italian", + "ingredients": [ + "fresh raspberries", + "marsala wine", + "white sugar", + "egg yolks" + ] + }, + { + "id": 8252, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "country style bread", + "beefsteak tomatoes", + "garlic cloves", + "coriander seeds", + "cumin seed", + "black peppercorns", + "fine sea salt" + ] + }, + { + "id": 19932, + "cuisine": "japanese", + "ingredients": [ + "sake", + "dashi kombu", + "green onions", + "garlic", + "soy sauce", + "baking soda", + "ground pork", + "chili bean paste", + "sugar", + "corn", + "sesame oil", + "salt", + "thin spaghetti", + "water", + "miso paste", + "ginger", + "soft-boiled egg" + ] + }, + { + "id": 42569, + "cuisine": "italian", + "ingredients": [ + "skim milk", + "zucchini", + "all-purpose flour", + "light butter", + "lasagna noodles", + "salt", + "frozen artichoke hearts", + "frozen chopped spinach", + "ground black pepper", + "low-fat ricotta cheese", + "olive oil cooking spray", + "dried porcini mushrooms", + "grated parmesan cheese", + "grated nutmeg" + ] + }, + { + "id": 14810, + "cuisine": "italian", + "ingredients": [ + "country ham", + "pizza doughs", + "fresh mozzarella", + "fresh basil", + "extra-virgin olive oil", + "pepper", + "plum tomatoes" + ] + }, + { + "id": 35692, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "diced tomatoes", + "chopped cilantro fresh", + "fat free less sodium chicken broth", + "chili powder", + "garlic cloves", + "green bell pepper", + "boneless skinless chicken breasts", + "baked tortilla chips", + "ground cumin", + "olive oil", + "lime wedges", + "onions" + ] + }, + { + "id": 39240, + "cuisine": "spanish", + "ingredients": [ + "finely chopped fresh parsley", + "bay leaf", + "tomatoes", + "large garlic cloves", + "clams", + "dry white wine", + "onions", + "baby lima beans", + "extra-virgin olive oil" + ] + }, + { + "id": 7302, + "cuisine": "mexican", + "ingredients": [ + "lime", + "chile pepper", + "chopped cilantro fresh", + "white onion", + "yellow hominy", + "salt", + "ground black pepper", + "garlic", + "dried oregano", + "water", + "ground red pepper", + "tripe" + ] + }, + { + "id": 8946, + "cuisine": "french", + "ingredients": [ + "mushrooms", + "sprinkles", + "vegetable oil", + "hot water", + "shallots", + "garlic cloves", + "unsalted butter", + "heavy cream", + "chicken" + ] + }, + { + "id": 21769, + "cuisine": "indian", + "ingredients": [ + "granulated sugar", + "large egg yolks", + "heavy cream", + "light brown sugar", + "ground cardamom" + ] + }, + { + "id": 200, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "baking powder", + "fresh raspberries", + "brown sugar", + "low-fat buttermilk", + "butter", + "granulated sugar", + "green tomatoes", + "water", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 24113, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "garlic", + "minced beef", + "lime", + "tomato ketchup", + "Thai fish sauce", + "coconut", + "purple onion", + "roasted peanuts", + "brown sugar", + "jalapeno chilies", + "peanut butter", + "ground cumin" + ] + }, + { + "id": 32964, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "mustard greens", + "water", + "onions", + "sugar", + "bacon" + ] + }, + { + "id": 44861, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "white beans", + "tomatoes", + "garlic", + "tomato paste", + "vegetable broth", + "onions", + "kale", + "pasta shells" + ] + }, + { + "id": 6939, + "cuisine": "chinese", + "ingredients": [ + "fish sauce", + "beef stock", + "star anise", + "oil", + "fresh ginger", + "green onions", + "chinese cabbage", + "cinnamon sticks", + "light soy sauce", + "chinese noodles", + "garlic", + "oyster sauce", + "dark soy sauce", + "stewing beef", + "dry sherry", + "chinese five-spice powder", + "bok choy" + ] + }, + { + "id": 30607, + "cuisine": "french", + "ingredients": [ + "white wine", + "shallots", + "thyme", + "duck breasts", + "water", + "garlic", + "eggs", + "pepper", + "butter", + "truffle puree", + "flour", + "salt" + ] + }, + { + "id": 4634, + "cuisine": "spanish", + "ingredients": [ + "beefsteak tomatoes", + "kosher salt", + "garlic cloves", + "extra-virgin olive oil", + "baguette", + "serrano ham" + ] + }, + { + "id": 9978, + "cuisine": "vietnamese", + "ingredients": [ + "bologna", + "soy sauce", + "fresh cilantro", + "salami", + "ground pork", + "mayonaise", + "baguette", + "ground black pepper", + "daikon", + "carrots", + "white vinegar", + "sugar", + "water", + "finely chopped onion", + "chili oil", + "seasoning", + "kosher salt", + "garlic powder", + "vegetable oil", + "english cucumber" + ] + }, + { + "id": 23167, + "cuisine": "vietnamese", + "ingredients": [ + "fresh spinach", + "lemon grass", + "salt", + "water", + "paprika", + "hubbard squash", + "sugar", + "galanga", + "coconut milk", + "kaffir lime leaves", + "eggplant", + "stir fry sauce", + "ground turmeric" + ] + }, + { + "id": 38353, + "cuisine": "italian", + "ingredients": [ + "cooked ham", + "mushrooms", + "dough", + "garlic powder", + "sausages", + "mozzarella cheese", + "salami", + "pasta sauce", + "green bell pepper, slice", + "onions" + ] + }, + { + "id": 30659, + "cuisine": "korean", + "ingredients": [ + "eggs", + "chili pepper", + "vinegar", + "ginger", + "brown sugar", + "peanuts", + "starch", + "corn syrup", + "chicken wings", + "sesame seeds", + "flour", + "salt", + "soy sauce", + "ground black pepper", + "vegetable oil" + ] + }, + { + "id": 13443, + "cuisine": "vietnamese", + "ingredients": [ + "low-fat sweetened condensed milk", + "ice cubes", + "roast" + ] + }, + { + "id": 31658, + "cuisine": "french", + "ingredients": [ + "olive oil", + "green onions", + "small white beans", + "tomatoes", + "dijon mustard", + "white wine vinegar", + "water", + "lettuce leaves", + "salt", + "ground black pepper", + "garlic", + "olives" + ] + }, + { + "id": 12328, + "cuisine": "thai", + "ingredients": [ + "mint", + "orange bell pepper", + "japanese cucumber", + "garlic", + "minced garlic", + "thai basil", + "cilantro", + "shrimp", + "fish sauce", + "peanuts", + "shallots", + "rice vinegar", + "lime juice", + "palm sugar", + "thai chile" + ] + }, + { + "id": 24224, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "ground black pepper", + "butter", + "onions", + "tomato sauce", + "grated parmesan cheese", + "salt", + "dried basil", + "ricotta cheese", + "chopped parsley", + "eggs", + "zucchini", + "garlic", + "dried oregano" + ] + }, + { + "id": 42768, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "all-purpose flour", + "sugar", + "buttermilk", + "butter", + "white cornmeal", + "large eggs", + "salt" + ] + }, + { + "id": 12359, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "zucchini", + "crushed red pepper flakes", + "scallions", + "sesame chili oil", + "water", + "flank steak", + "garlic", + "toasted sesame oil", + "jasmine rice", + "green onions", + "ginger", + "corn starch", + "brown sugar", + "orange bell pepper", + "red pepper", + "peanut oil", + "toasted sesame seeds" + ] + }, + { + "id": 45469, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "purple onion", + "chopped fresh mint", + "extra-virgin olive oil", + "garlic cloves", + "cherry tomatoes", + "salt", + "tomatoes", + "linguine", + "fresh mint" + ] + }, + { + "id": 2523, + "cuisine": "british", + "ingredients": [ + "self rising flour", + "rolled oats", + "salt", + "butter", + "caster sugar", + "fresh raspberries" + ] + }, + { + "id": 36980, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "salt", + "tomato paste", + "vinegar", + "water", + "chicken", + "sugar", + "vegetable oil" + ] + }, + { + "id": 12861, + "cuisine": "cajun_creole", + "ingredients": [ + "lettuce leaves", + "creole seasoning", + "fresh basil", + "white wine vinegar", + "low salt chicken broth", + "mirlitons", + "pimentos", + "garlic cloves", + "olive oil", + "artichokes", + "fresh parsley" + ] + }, + { + "id": 8626, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "coconut", + "yoghurt", + "green cardamom", + "bay leaf", + "red chili powder", + "potatoes", + "kasuri methi", + "oil", + "shahi jeera", + "fenugreek leaves", + "garam masala", + "star anise", + "green chilies", + "onions", + "clove", + "garlic paste", + "mint leaves", + "cilantro leaves", + "cinnamon sticks" + ] + }, + { + "id": 33263, + "cuisine": "mexican", + "ingredients": [ + "chile pepper", + "eggs", + "garlic", + "butter", + "sweet onion", + "lobster tails" + ] + }, + { + "id": 20224, + "cuisine": "french", + "ingredients": [ + "sugar", + "baking powder", + "all-purpose flour", + "unsalted butter", + "plums", + "hazelnuts", + "vanilla", + "ground allspice", + "large eggs", + "salt" + ] + }, + { + "id": 30468, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "egg whites", + "cod fillets", + "cornmeal", + "ground black pepper", + "dry bread crumbs", + "olive oil", + "grated parmesan cheese", + "italian seasoning" + ] + }, + { + "id": 40999, + "cuisine": "southern_us", + "ingredients": [ + "chicken legs", + "dry white wine", + "onions", + "milk", + "margarine", + "pepper", + "poppy seeds", + "chicken broth", + "flour", + "Bisquick Baking Mix" + ] + }, + { + "id": 38372, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "plum tomatoes", + "cannellini beans", + "grated parmesan cheese", + "orecchiette", + "prepar pesto", + "garlic cloves" + ] + }, + { + "id": 10713, + "cuisine": "greek", + "ingredients": [ + "sugar", + "butter", + "honey", + "chopped walnuts", + "water", + "vanilla extract", + "phyllo dough", + "cinnamon" + ] + }, + { + "id": 38624, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "ground black pepper", + "all-purpose flour", + "crushed tomatoes", + "onion powder", + "cumin", + "kosher salt", + "chili powder", + "dried oregano", + "garlic powder", + "vegetable oil" + ] + }, + { + "id": 44565, + "cuisine": "mexican", + "ingredients": [ + "red snapper", + "green chile", + "pimentos", + "ground cinnamon", + "lime", + "ground white pepper", + "capers", + "olive oil", + "onions", + "tomatoes", + "green bell pepper", + "garlic" + ] + }, + { + "id": 34272, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "green onions", + "salt", + "okra", + "large shrimp", + "reduced sodium beef broth", + "hot pepper sauce", + "sweet pepper", + "chopped onion", + "ground white pepper", + "cajun spice mix", + "ground black pepper", + "garlic", + "all-purpose flour", + "long-grain rice", + "water", + "cooking oil", + "crushed red pepper", + "crabmeat", + "celery" + ] + }, + { + "id": 48950, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "salt", + "dried chile", + "sugar", + "sesame oil", + "oil", + "chicken stock", + "Shaoxing wine", + "scallions", + "noodles", + "pork", + "mustard greens", + "corn starch" + ] + }, + { + "id": 12461, + "cuisine": "french", + "ingredients": [ + "water", + "red wine vinegar", + "fresh parsley", + "dijon mustard", + "purple onion", + "thick-cut bacon", + "French lentils", + "chopped celery", + "onions", + "chopped fresh thyme", + "walnut oil", + "smoked ham hocks" + ] + }, + { + "id": 683, + "cuisine": "greek", + "ingredients": [ + "garlic", + "pepper", + "greek style plain yogurt", + "fresh dill", + "salt", + "lemon", + "english cucumber" + ] + }, + { + "id": 37703, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "tuna packed in olive oil", + "olive oil", + "salt", + "tomatoes", + "balsamic vinegar", + "spaghetti", + "fresh basil", + "garlic" + ] + }, + { + "id": 43940, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "cayenne pepper", + "vegetable oil", + "water", + "all-purpose flour", + "venison roast" + ] + }, + { + "id": 29122, + "cuisine": "filipino", + "ingredients": [ + "white sugar", + "water", + "ice cubes", + "cantaloupe" + ] + }, + { + "id": 23712, + "cuisine": "mexican", + "ingredients": [ + "all-purpose flour", + "baking powder", + "salt", + "shortening", + "hot water" + ] + }, + { + "id": 12237, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "button mushrooms", + "grana padano", + "shallots", + "spaghetti", + "olive oil", + "garlic cloves", + "butter", + "free-range eggs" + ] + }, + { + "id": 27434, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "salt", + "fat free less sodium chicken broth", + "golden raisins", + "fresh lime juice", + "fresh basil", + "finely chopped onion", + "couscous", + "pinenuts", + "extra-virgin olive oil", + "fresh parsley" + ] + }, + { + "id": 34499, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "diced tomatoes", + "garlic cloves", + "melted butter", + "ground black pepper", + "salt", + "bay leaf", + "boneless skin on chicken thighs", + "white wine vinegar", + "red bell pepper", + "green bell pepper", + "coarse sea salt", + "salsa" + ] + }, + { + "id": 48628, + "cuisine": "spanish", + "ingredients": [ + "bread crumbs", + "whole milk", + "diced onions", + "ground nutmeg", + "sea salt", + "whole wheat flour", + "butter", + "eggs", + "beef", + "extra-virgin olive oil" + ] + }, + { + "id": 31340, + "cuisine": "french", + "ingredients": [ + "large eggs", + "cream cheese", + "unsalted butter", + "salt", + "grated orange", + "semisweet chocolate", + "all-purpose flour", + "unsweetened cocoa powder", + "sugar", + "fresh orange juice", + "confectioners sugar" + ] + }, + { + "id": 37154, + "cuisine": "southern_us", + "ingredients": [ + "cream sweeten whip", + "granulated sugar", + "lemon", + "vanilla bean ice cream", + "pure vanilla extract", + "peaches", + "fresh blueberries", + "salt", + "yellow corn meal", + "unsalted butter", + "baking powder", + "all-purpose flour", + "baking soda", + "large eggs", + "buttermilk" + ] + }, + { + "id": 30209, + "cuisine": "italian", + "ingredients": [ + "sugar", + "ladyfingers", + "espresso", + "dark rum", + "vanilla ice cream" + ] + }, + { + "id": 1376, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "green onions", + "medium shrimp", + "sugar", + "lemon grass", + "fresh mint", + "minced garlic", + "ground black pepper", + "fresh lime juice", + "fish sauce", + "olive oil", + "asian chili red sauc" + ] + }, + { + "id": 39707, + "cuisine": "greek", + "ingredients": [ + "garbanzo beans", + "salt", + "paprika", + "fresh parsley", + "tahini", + "lemon juice", + "olive oil", + "garlic" + ] + }, + { + "id": 2805, + "cuisine": "irish", + "ingredients": [ + "walnut pieces", + "coffee granules", + "salt", + "large egg whites", + "Irish whiskey", + "light brown sugar", + "coffee ice cream", + "heavy cream", + "water", + "granulated sugar" + ] + }, + { + "id": 6177, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "paprika", + "tequila", + "boneless chicken skinless thigh", + "flour", + "orange juice", + "lime", + "cooking spray", + "garlic cloves", + "dri fruit tropic", + "garlic powder", + "salt", + "onions" + ] + }, + { + "id": 38162, + "cuisine": "thai", + "ingredients": [ + "salt", + "water", + "mango", + "thai jasmine rice", + "sugar", + "coconut milk" + ] + }, + { + "id": 46856, + "cuisine": "mexican", + "ingredients": [ + "corn husks", + "coarse salt", + "cherries", + "fresh lime juice", + "ground pepper", + "scallions", + "avocado", + "vegetable oil" + ] + }, + { + "id": 12393, + "cuisine": "italian", + "ingredients": [ + "butternut squash", + "lemon juice", + "water", + "garlic", + "celery root", + "nutmeg", + "vegetable broth", + "butter beans", + "olive oil", + "salt" + ] + }, + { + "id": 17840, + "cuisine": "cajun_creole", + "ingredients": [ + "all-purpose flour", + "vegetable oil" + ] + }, + { + "id": 10656, + "cuisine": "mexican", + "ingredients": [ + "Cointreau Liqueur", + "kosher salt", + "key lime", + "granulated sugar", + "key lime juice", + "tequila" + ] + }, + { + "id": 46796, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "cajeta", + "unsalted butter", + "chopped pecans", + "large eggs", + "bittersweet chocolate", + "sugar", + "salt" + ] + }, + { + "id": 40673, + "cuisine": "vietnamese", + "ingredients": [ + "mint", + "soy sauce", + "sesame oil", + "fresh mint", + "asian fish sauce", + "rice stick noodles", + "european cucumber", + "roasted rice powder", + "garlic cloves", + "skirt steak", + "chiles", + "lemongrass", + "vegetable oil", + "coriander", + "sugar", + "thai basil", + "cilantro leaves", + "fresh basil leaves" + ] + }, + { + "id": 9752, + "cuisine": "indian", + "ingredients": [ + "warm water", + "cooking spray", + "whole wheat flour", + "cornmeal", + "plain low-fat yogurt", + "dry yeast", + "bread flour", + "olive oil", + "sea salt" + ] + }, + { + "id": 47697, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "salt", + "buns", + "garam masala", + "panko breadcrumbs", + "eggs", + "fresh ginger", + "yellow onion", + "ground chicken", + "jalapeno chilies" + ] + }, + { + "id": 32087, + "cuisine": "chinese", + "ingredients": [ + "mushrooms", + "vegetable oil", + "oyster sauce", + "soft tofu", + "sesame oil", + "freshly ground pepper", + "dry white wine", + "large garlic cloves", + "corn starch", + "soy sauce", + "fresh shiitake mushrooms", + "peanut oil", + "onions" + ] + }, + { + "id": 34736, + "cuisine": "southern_us", + "ingredients": [ + "cooked rice", + "black-eyed peas", + "green onions", + "salt", + "black pepper", + "tahini", + "diced tomatoes", + "greens", + "Louisiana Hot Sauce", + "nutritional yeast", + "red wine vinegar", + "chopped parsley", + "liquid smoke", + "water", + "bay leaves", + "garlic" + ] + }, + { + "id": 9597, + "cuisine": "italian", + "ingredients": [ + "pepper", + "lean ground beef", + "all-purpose flour", + "eggs", + "sun-dried tomatoes", + "part-skim ricotta cheese", + "baguette", + "extra-virgin olive oil", + "garlic cloves", + "white wine", + "parmigiano reggiano cheese", + "salt" + ] + }, + { + "id": 3616, + "cuisine": "chinese", + "ingredients": [ + "chicken breasts", + "corn starch", + "light soy sauce", + "scallions", + "black vinegar", + "sugar", + "peanut oil", + "cucumber", + "peanuts", + "garlic chili sauce" + ] + }, + { + "id": 23786, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "dry white wine", + "diced tomatoes", + "California bay leaves", + "long grain white rice", + "green bell pepper", + "low sodium chicken broth", + "large garlic cloves", + "salt", + "pimento stuffed green olives", + "saffron threads", + "unsalted butter", + "vegetable oil", + "peas", + "onions", + "ground cumin", + "water", + "pimentos", + "fresh orange juice", + "fresh lime juice", + "chicken" + ] + }, + { + "id": 42049, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "chopped fresh mint", + "balsamic vinegar", + "orange" + ] + }, + { + "id": 9997, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "whipping cream", + "milk chocolate", + "coarse sea salt", + "roasted hazelnuts", + "bosc pears", + "tart crust", + "semisweet chocolate", + "raw sugar" + ] + }, + { + "id": 1097, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "honey", + "chili sauce", + "soy sauce", + "sesame oil", + "sesame seeds", + "chicken pieces" + ] + }, + { + "id": 35747, + "cuisine": "filipino", + "ingredients": [ + "coconut sugar", + "lumpia wrappers", + "jackfruit", + "coconut oil", + "plantains", + "water" + ] + }, + { + "id": 11515, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "cilantro", + "chorizo sausage", + "sour cream", + "eggs", + "corn tortillas" + ] + }, + { + "id": 7647, + "cuisine": "southern_us", + "ingredients": [ + "water", + "grits", + "whole milk", + "unsalted butter", + "kosher salt", + "heavy cream" + ] + }, + { + "id": 22091, + "cuisine": "french", + "ingredients": [ + "vegetable oil cooking spray", + "dijon mustard", + "star anise", + "freshly ground pepper", + "fresh rosemary", + "coriander seeds", + "red wine vinegar", + "cardamom pods", + "juniper berries", + "tenderloin", + "dry red wine", + "garlic cloves", + "olive oil", + "chopped fresh thyme", + "salt", + "bay leaf" + ] + }, + { + "id": 26626, + "cuisine": "irish", + "ingredients": [ + "vegetable oil", + "salt", + "baking potatoes" + ] + }, + { + "id": 30704, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "rice noodles", + "carrots", + "mirin", + "watercress", + "white sugar", + "shredded bamboo", + "vegetable oil", + "onions", + "soy sauce", + "boneless skinless chicken breasts", + "fresh mushrooms" + ] + }, + { + "id": 42290, + "cuisine": "indian", + "ingredients": [ + "jasmine rice", + "malt vinegar", + "tamarind concentrate", + "red chili peppers", + "jalapeno chilies", + "garlic cloves", + "coconut flakes", + "coriander seeds", + "cumin seed", + "onions", + "neutral oil", + "fresh ginger", + "salt", + "medium shrimp" + ] + }, + { + "id": 26738, + "cuisine": "mexican", + "ingredients": [ + "( oz.) tomato sauce", + "diced tomatoes", + "chopped onion", + "dried oregano", + "red beans", + "chopped celery", + "green chilies", + "ground cumin", + "ground black pepper", + "lean ground beef", + "green pepper", + "white sugar", + "garlic powder", + "chili powder", + "salt", + "ground cayenne pepper" + ] + }, + { + "id": 36110, + "cuisine": "indian", + "ingredients": [ + "baking potatoes", + "chopped cilantro fresh", + "puffed rice", + "chutney", + "plum tomatoes", + "purple onion", + "serrano chile", + "noodles", + "mango" + ] + }, + { + "id": 23930, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "thai basil", + "minced garlic", + "bird chile", + "brown sugar", + "crushed red pepper flakes", + "eggplant", + "onions" + ] + }, + { + "id": 7787, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "hot chili powder", + "smoked paprika", + "garam masala", + "oil", + "ground turmeric", + "fresh coriander", + "salt", + "greek yogurt", + "mushrooms", + "lemon juice", + "ground cumin" + ] + }, + { + "id": 2418, + "cuisine": "cajun_creole", + "ingredients": [ + "angel hair", + "heavy whipping cream", + "cajun seasoning", + "green onions", + "cooked shrimp", + "butter" + ] + }, + { + "id": 33757, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "extra-virgin olive oil", + "salt", + "mustard powder", + "ghee", + "ground cumin", + "ground cloves", + "lamb stew meat", + "canned tomatoes", + "low sodium chicken stock", + "coconut milk", + "frozen peas", + "marsala wine", + "coriander powder", + "garlic", + "cayenne pepper", + "carrots", + "onions", + "pepper", + "hot pepper", + "white wine vinegar", + "cubed potatoes", + "chopped cilantro", + "ground turmeric" + ] + }, + { + "id": 48072, + "cuisine": "irish", + "ingredients": [ + "large eggs", + "yukon gold potatoes", + "kosher salt", + "chives", + "corned beef", + "black pepper", + "whole milk", + "all-purpose flour", + "unsalted butter", + "onion powder" + ] + }, + { + "id": 45880, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "salt", + "salmon fillets", + "butter", + "chopped onion", + "swiss chard", + "2% reduced-fat milk", + "marjoram", + "eggs", + "ground black pepper", + "dry bread crumbs" + ] + }, + { + "id": 10394, + "cuisine": "indian", + "ingredients": [ + "clove", + "sugar", + "yoghurt", + "ground coriander", + "ground turmeric", + "ground cinnamon", + "ground black pepper", + "salt", + "ghee", + "ground ginger", + "chopped tomatoes", + "chili powder", + "garlic cloves", + "ground cumin", + "braising steak", + "vinegar", + "cardamom pods", + "onions" + ] + }, + { + "id": 36010, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "granulated sugar", + "salt", + "large egg yolks", + "vanilla extract", + "bittersweet chocolate", + "light brown sugar", + "coffee granules", + "1% low-fat milk", + "low-fat coffee ice cream", + "cooking spray", + "corn starch" + ] + }, + { + "id": 8297, + "cuisine": "italian", + "ingredients": [ + "purple onion", + "fresh rosemary", + "sliced mushrooms", + "salt", + "olive oil", + "chicken thighs" + ] + }, + { + "id": 1238, + "cuisine": "russian", + "ingredients": [ + "sugar", + "cranberries", + "potato flour", + "water" + ] + }, + { + "id": 10091, + "cuisine": "mexican", + "ingredients": [ + "fresh lemon juice", + "whole milk", + "sea salt", + "fresh oregano leaves" + ] + }, + { + "id": 3226, + "cuisine": "french", + "ingredients": [ + "french bread", + "all-purpose flour", + "flat leaf parsley", + "mussels", + "dry white wine", + "freshly ground pepper", + "bay leaves", + "margarine", + "thyme sprigs", + "finely chopped onion", + "salt", + "garlic cloves" + ] + }, + { + "id": 23958, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "vegetable oil", + "coconut milk", + "masala", + "garam masala", + "garlic", + "onions", + "curry powder", + "butter", + "curry paste", + "green cardamom pods", + "yoghurt", + "salt", + "chicken thighs" + ] + }, + { + "id": 22005, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "green onions", + "cilantro", + "fajita seasoning mix", + "black beans", + "zucchini", + "colby jack cheese", + "garlic cloves", + "ground black pepper", + "boneless skinless chicken breasts", + "salt", + "cumin", + "corn", + "bell pepper", + "diced tomatoes", + "onions" + ] + }, + { + "id": 43041, + "cuisine": "greek", + "ingredients": [ + "spinach", + "lemon", + "onions", + "olive oil", + "feta cheese crumbles", + "fresh dill", + "garlic", + "part-skim mozzarella cheese", + "cooked quinoa" + ] + }, + { + "id": 36387, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "penne pasta", + "black pepper", + "unsalted butter", + "frozen peas", + "prosciutto", + "onions", + "kosher salt", + "grated parmesan cheese", + "grated lemon peel" + ] + }, + { + "id": 40479, + "cuisine": "japanese", + "ingredients": [ + "whole grain dijon mustard", + "purple onion", + "salmon fillets", + "cooking spray", + "bow-tie pasta", + "fresh dill", + "ground black pepper", + "salt", + "olive oil", + "baby spinach", + "edamame" + ] + }, + { + "id": 11144, + "cuisine": "british", + "ingredients": [ + "caster sugar", + "clotted cream", + "golden syrup", + "vanilla extract" + ] + }, + { + "id": 1982, + "cuisine": "spanish", + "ingredients": [ + "green olives", + "fried eggs", + "salt", + "sour cream", + "chopped tomatoes", + "paprika", + "sweet corn", + "olive oil", + "grating cheese", + "green pepper", + "minced pork", + "jalapeno chilies", + "garlic", + "sweet paprika" + ] + }, + { + "id": 28854, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "salsa", + "flour tortillas", + "cream cheese", + "Mexican cheese blend", + "round steaks", + "mexicorn" + ] + }, + { + "id": 19773, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "linguine", + "tomatoes", + "yellow squash", + "pesto", + "sliced carrots", + "water", + "red bell pepper" + ] + }, + { + "id": 45864, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "salt", + "greek yogurt", + "baking powder", + "strawberries", + "milk", + "all-purpose flour", + "melted butter", + "lemon", + "lemon juice" + ] + }, + { + "id": 17389, + "cuisine": "mexican", + "ingredients": [ + "liquid smoke", + "worcestershire sauce", + "tequila", + "cooking oil", + "salt", + "onions", + "bell pepper", + "round steaks", + "ground black pepper", + "paprika", + "fresh lime juice" + ] + }, + { + "id": 16510, + "cuisine": "moroccan", + "ingredients": [ + "butter", + "fresh mint", + "ground cinnamon", + "fresh lemon juice", + "halibut fillets", + "carrots", + "cayenne pepper", + "grated lemon peel" + ] + }, + { + "id": 44299, + "cuisine": "italian", + "ingredients": [ + "chives", + "low-fat milk", + "unsalted butter", + "cheese", + "ground black pepper", + "all purpose unbleached flour", + "large eggs", + "fresh herbs" + ] + }, + { + "id": 5368, + "cuisine": "italian", + "ingredients": [ + "1% low-fat milk", + "asiago", + "all-purpose flour" + ] + }, + { + "id": 37644, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "olive oil", + "low sodium chicken broth", + "cayenne pepper", + "medjool date", + "kosher salt", + "almonds", + "garlic", + "cinnamon sticks", + "lamb loin", + "fresh ginger", + "paprika", + "freshly ground pepper", + "cumin", + "honey", + "lemon zest", + "yellow onion", + "couscous" + ] + }, + { + "id": 49661, + "cuisine": "italian", + "ingredients": [ + "Alfredo sauce", + "pasta sauce", + "pasta", + "hot Italian sausages", + "Italian cheese" + ] + }, + { + "id": 4174, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "lemon wedge", + "caesar salad dressing", + "dried rosemary", + "black pepper", + "bay leaves", + "worcestershire sauce", + "dried oregano", + "hot pepper sauce", + "butter", + "garlic cloves", + "baguette", + "dry white wine", + "paprika", + "large shrimp" + ] + }, + { + "id": 45576, + "cuisine": "greek", + "ingredients": [ + "fresh oregano", + "olive oil", + "red bell pepper", + "butter lettuce", + "feta cheese crumbles", + "eggplant", + "olives" + ] + }, + { + "id": 2635, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "lemon", + "water", + "tea bags", + "ice" + ] + }, + { + "id": 4694, + "cuisine": "southern_us", + "ingredients": [ + "stout", + "salt", + "crackers", + "butter", + "dry mustard", + "sharp cheddar cheese", + "rye bread", + "blue cheese", + "cayenne pepper", + "worcestershire sauce", + "white wine vinegar", + "garlic cloves" + ] + }, + { + "id": 44941, + "cuisine": "filipino", + "ingredients": [ + "chicken broth", + "fresh ginger", + "salt", + "carrots", + "pepper", + "garlic", + "freshly ground pepper", + "noodles", + "white vinegar", + "water", + "chicken stock cubes", + "oil", + "cabbage", + "soy sauce", + "thai chile", + "rice", + "onions" + ] + }, + { + "id": 5965, + "cuisine": "italian", + "ingredients": [ + "pastry", + "granulated sugar", + "powdered sugar", + "milk", + "all-purpose flour", + "slivered almonds", + "large egg yolks", + "grated lemon peel", + "pinenuts", + "large eggs" + ] + }, + { + "id": 3980, + "cuisine": "filipino", + "ingredients": [ + "water", + "water chestnuts", + "raisins", + "pineapple juice", + "corn starch", + "bamboo shoots", + "brown sugar", + "vinegar", + "flour", + "ginger", + "carrots", + "celery", + "hot pepper sauce", + "catsup", + "ground pork", + "garlic cloves", + "beansprouts", + "pepper", + "egg whites", + "vegetable oil", + "salt", + "shrimp", + "onions" + ] + }, + { + "id": 45536, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh basil", + "hot sauce", + "dried minced onion", + "olive oil", + "fresh lemon juice", + "green bell pepper", + "creole seasoning", + "couscous", + "tomatoes", + "lemon slices", + "flounder fillets" + ] + }, + { + "id": 7152, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "barbecue sauce", + "Thai fish sauce", + "clove", + "lime juice", + "capsicum", + "water", + "chicken breasts", + "onions", + "sugar", + "basil leaves", + "peanut oil" + ] + }, + { + "id": 31334, + "cuisine": "southern_us", + "ingredients": [ + "cauliflower", + "parsley", + "lemon juice", + "black pepper", + "lemon", + "coconut milk", + "chicken broth", + "butter", + "shrimp", + "garlic powder", + "salt", + "onions" + ] + }, + { + "id": 41861, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "yoghurt", + "onions", + "lime", + "green chilies", + "ginger paste", + "fresh coriander", + "curry", + "fish", + "chopped tomatoes", + "ghee", + "ground cumin" + ] + }, + { + "id": 1858, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "granulated sugar", + "roma tomatoes", + "sour cream", + "pork shoulder", + "pork belly", + "red cabbage", + "orange juice", + "honeydew", + "green cabbage", + "lime juice", + "cantaloupe", + "tequila", + "bay leaf", + "cotija", + "agave nectar", + "salt", + "corn tortillas", + "oregano" + ] + }, + { + "id": 29761, + "cuisine": "thai", + "ingredients": [ + "homemade chicken stock", + "thai basil", + "basil", + "ginger root", + "pepper", + "green onions", + "garlic cloves", + "baby bok choy", + "bonito flakes", + "salt", + "cooked shrimp", + "lime", + "rice noodles", + "beansprouts" + ] + }, + { + "id": 6542, + "cuisine": "korean", + "ingredients": [ + "sugar", + "mirin", + "sesame oil", + "corn syrup", + "black pepper", + "spring onions", + "garlic", + "iceberg lettuce", + "water", + "flank steak", + "hot sauce", + "soy sauce", + "finely chopped onion", + "red pepper", + "toasted sesame seeds" + ] + }, + { + "id": 17748, + "cuisine": "japanese", + "ingredients": [ + "kecap manis", + "soy sauce", + "rice vinegar", + "ginger", + "mirin", + "Thai fish sauce" + ] + }, + { + "id": 29091, + "cuisine": "southern_us", + "ingredients": [ + "hazelnuts", + "egg yolks", + "heavy cream", + "gingersnap crumbs", + "ground cinnamon", + "granulated sugar", + "cinnamon", + "maple syrup", + "white pepper", + "large eggs", + "butter", + "Grand Marnier", + "light brown sugar", + "mace", + "sweet potatoes", + "salt", + "orange zest" + ] + }, + { + "id": 30055, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "shrimp", + "pepper", + "vegetables", + "olive oil", + "monterey jack", + "corn mix muffin", + "large eggs" + ] + }, + { + "id": 48770, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "cucumber", + "garlic cloves", + "chopped fresh mint", + "fresh dill", + "fresh lemon juice", + "salt", + "greek yogurt" + ] + }, + { + "id": 28023, + "cuisine": "indian", + "ingredients": [ + "powdered sugar", + "sesame seeds", + "butter", + "ground cardamom", + "ground ginger", + "honey", + "cooking spray", + "salt", + "slivered almonds", + "granulated sugar", + "cake flour", + "brown sugar", + "ground nutmeg", + "ice water" + ] + }, + { + "id": 32156, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "grated parmesan cheese", + "tomato sauce", + "lasagna noodles", + "vegetable oil", + "frozen spinach", + "ground black pepper", + "whole milk ricotta cheese", + "kosher salt", + "large eggs", + "garlic cloves" + ] + }, + { + "id": 24356, + "cuisine": "greek", + "ingredients": [ + "pointed peppers", + "olive oil", + "red wine vinegar", + "garlic", + "fresh dill", + "yoghurt", + "sea salt", + "fresh mint", + "flatbread", + "ground black pepper", + "lemon", + "cucumber", + "pork", + "dried mint flakes", + "extra-virgin olive oil", + "dried oregano" + ] + }, + { + "id": 24863, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "salt", + "olive oil spray", + "cooked rice", + "garlic", + "onions", + "reduced fat shredded cheese", + "meat", + "red bell pepper", + "cumin", + "tomato sauce", + "fat-free chicken broth", + "chopped cilantro fresh" + ] + }, + { + "id": 2533, + "cuisine": "mexican", + "ingredients": [ + "steamer", + "red bell pepper", + "tomatoes", + "2% reduced-fat milk", + "cooked chicken breasts", + "green onions", + "chopped cilantro fresh", + "Old El Paso Enchilada Sauce", + "shredded lettuce" + ] + }, + { + "id": 47619, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "fresh oregano", + "pitted kalamata olives", + "cracked black pepper", + "garlic cloves", + "balsamic vinegar", + "english cucumber", + "cherry tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 17038, + "cuisine": "chinese", + "ingredients": [ + "mushrooms", + "garlic", + "scallions", + "soy sauce", + "red pepper flakes", + "broccoli", + "corn starch", + "canned low sodium chicken broth", + "sesame oil", + "salt", + "oyster sauce", + "cooking oil", + "florets", + "chinese cabbage", + "cashew nuts" + ] + }, + { + "id": 31615, + "cuisine": "filipino", + "ingredients": [ + "pork belly", + "garlic", + "soy sauce", + "water", + "onions", + "pepper", + "oil", + "kangkong", + "vinegar" + ] + }, + { + "id": 9079, + "cuisine": "french", + "ingredients": [ + "shallots", + "cherry tomatoes", + "white wine vinegar", + "field lettuce", + "salt", + "pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 22566, + "cuisine": "mexican", + "ingredients": [ + "milk", + "green pepper", + "tomato sauce", + "garlic powder", + "ground oregano", + "shredded cheddar cheese", + "salt", + "shredded Monterey Jack cheese", + "eggs", + "chopped green chilies", + "ground beef" + ] + }, + { + "id": 20427, + "cuisine": "mexican", + "ingredients": [ + "Herdez Salsa Verde", + "garlic salt", + "olive oil", + "onions", + "water", + "bone-in pork chops", + "black pepper", + "white rice" + ] + }, + { + "id": 16169, + "cuisine": "mexican", + "ingredients": [ + "vanilla beans", + "jalapeno chilies", + "freshly ground pepper", + "chopped fresh mint", + "fresh ginger", + "extra-virgin olive oil", + "fresh mint", + "kosher salt", + "sea scallops", + "purple onion", + "fresh lime juice", + "papaya", + "white truffle oil", + "juice", + "chopped cilantro fresh" + ] + }, + { + "id": 20537, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "large eggs", + "linguine", + "part-skim mozzarella cheese", + "leeks", + "salt", + "large egg whites", + "cooking spray", + "1% low-fat milk", + "fresh basil", + "ground black pepper", + "butter" + ] + }, + { + "id": 7741, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "extra firm tofu", + "rice", + "sesame seeds", + "red pepper flakes", + "olive oil", + "green onions", + "hoisin sauce", + "garlic" + ] + }, + { + "id": 2885, + "cuisine": "irish", + "ingredients": [ + "butter", + "spinach leaves", + "salt", + "rainbow trout", + "heavy cream", + "fennel", + "freshly ground pepper" + ] + }, + { + "id": 34782, + "cuisine": "filipino", + "ingredients": [ + "green bell pepper", + "pepper", + "salt", + "onions", + "tomato sauce", + "potatoes", + "carrots", + "fish sauce", + "water", + "oil", + "pork belly", + "garlic", + "red bell pepper" + ] + }, + { + "id": 10872, + "cuisine": "italian", + "ingredients": [ + "red swiss chard", + "dried apricot", + "port", + "fettucine", + "cooking oil", + "currant", + "ground black pepper", + "cinnamon", + "salt", + "pinenuts", + "grated parmesan cheese", + "garlic" + ] + }, + { + "id": 24253, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "chicken breasts", + "soy sauce", + "cilantro stems", + "red pepper flakes", + "brown sugar", + "mushrooms", + "sesame oil", + "fresh ginger", + "green onions", + "garlic" + ] + }, + { + "id": 33748, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon", + "lemon juice", + "zucchini", + "kalamata", + "penne rigate", + "ground black pepper", + "summer squash", + "carrots", + "fresh basil", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 23658, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chopped fresh thyme", + "garlic cloves", + "fresh rosemary", + "cooking spray", + "grated lemon zest", + "ground black pepper", + "salt", + "large shrimp", + "rosemary sprigs", + "ground red pepper", + "fresh oregano" + ] + }, + { + "id": 35562, + "cuisine": "greek", + "ingredients": [ + "baguette", + "grated lemon zest", + "extra-virgin olive oil", + "crackers", + "flatbread", + "fresh chevre", + "olives", + "cracked black pepper", + "thyme sprigs" + ] + }, + { + "id": 2321, + "cuisine": "spanish", + "ingredients": [ + "paprika", + "garlic cloves", + "water", + "purple onion", + "hothouse cucumber", + "tomatoes", + "extra-virgin olive oil", + "red bell pepper", + "sherry wine vinegar", + "country style bread", + "ground cumin" + ] + }, + { + "id": 19702, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "chopped pecans", + "pure vanilla extract", + "bourbon whiskey", + "Wholesome Sweeteners Organic Sugar", + "large eggs", + "gluten free cornmeal", + "kosher salt", + "gluten-free pie crust", + "unsweetened cocoa powder" + ] + }, + { + "id": 41627, + "cuisine": "filipino", + "ingredients": [ + "chicken wings", + "fresh ginger root", + "salt", + "glutinous rice", + "lemon", + "fish sauce", + "spring onions", + "onions", + "chicken stock", + "olive oil", + "garlic" + ] + }, + { + "id": 23639, + "cuisine": "thai", + "ingredients": [ + "prawns", + "Thai red curry paste", + "red chili peppers", + "red pepper", + "coconut milk", + "fish sauce", + "sesame oil", + "oil", + "lime", + "cilantro", + "snow peas" + ] + }, + { + "id": 32909, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "red wine vinegar", + "salt", + "black pepper", + "mahimahi", + "fresh parsley", + "pitted kalamata olives", + "extra-virgin olive oil", + "fresh oregano", + "cooking spray", + "purple onion" + ] + }, + { + "id": 27777, + "cuisine": "italian", + "ingredients": [ + "green onions", + "rice", + "feta cheese", + "garlic", + "sun-dried tomatoes in oil", + "olive oil", + "spices", + "toasted pine nuts", + "bell pepper", + "white beans" + ] + }, + { + "id": 44650, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "balsamic vinegar", + "salt", + "sugar", + "cannellini beans", + "extra-virgin olive oil", + "capers", + "cherry tomatoes", + "large garlic cloves", + "fresh basil", + "baguette", + "fresh mozzarella", + "green beans" + ] + }, + { + "id": 27608, + "cuisine": "chinese", + "ingredients": [ + "water", + "chinese rice wine", + "salt", + "fresh ginger", + "white pepper", + "varnish clams" + ] + }, + { + "id": 18544, + "cuisine": "italian", + "ingredients": [ + "red pepper flakes", + "yellow onion", + "garlic", + "carrots", + "extra-virgin olive oil", + "freshly ground pepper", + "tomatoes", + "salt", + "celery" + ] + }, + { + "id": 7129, + "cuisine": "jamaican", + "ingredients": [ + "water", + "onions", + "seasoning salt", + "curry powder", + "chicken", + "pepper", + "potatoes" + ] + }, + { + "id": 39631, + "cuisine": "french", + "ingredients": [ + "frozen pastry puff sheets", + "prosciutto", + "eggs", + "grated Gruyère cheese", + "fresh basil" + ] + }, + { + "id": 43169, + "cuisine": "japanese", + "ingredients": [ + "chili pepper", + "white miso", + "rice vinegar", + "olive oil", + "mirin", + "tilapia fillets", + "ground black pepper", + "scallions", + "sesame seeds", + "garlic" + ] + }, + { + "id": 15756, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "table salt", + "cinnamon", + "sugar", + "bread flour", + "unsalted butter", + "canola oil" + ] + }, + { + "id": 43999, + "cuisine": "brazilian", + "ingredients": [ + "bread crumbs", + "bay leaves", + "garlic", + "onions", + "chicken broth", + "lime", + "vegetable oil", + "cream cheese", + "pepper", + "chicken breasts", + "salt", + "eggs", + "flour", + "butter", + "carrots" + ] + }, + { + "id": 22325, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "almonds", + "chicken breasts", + "oil", + "cream", + "mint leaves", + "lemon", + "ground turmeric", + "garlic paste", + "garam masala", + "butter", + "cashew nuts", + "fresh coriander", + "yoghurt", + "salt" + ] + }, + { + "id": 43721, + "cuisine": "irish", + "ingredients": [ + "vegetable oil", + "irish bacon" + ] + }, + { + "id": 38291, + "cuisine": "greek", + "ingredients": [ + "whole wheat pita", + "extra-virgin olive oil", + "garlic cloves", + "cucumber", + "pitted kalamata olives", + "honey", + "salt", + "fresh lemon juice", + "black pepper", + "yellow bell pepper", + "chickpeas", + "feta cheese crumbles", + "cherry tomatoes", + "purple onion", + "hearts of romaine", + "fresh mint" + ] + }, + { + "id": 4105, + "cuisine": "southern_us", + "ingredients": [ + "fine grind white cornmeal", + "baking powder", + "milk", + "unsalted butter", + "eggs", + "salt" + ] + }, + { + "id": 6271, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "shallots", + "sausages", + "canola oil", + "hoisin sauce", + "salt", + "rice flour", + "red chili peppers", + "daikon", + "garlic chili sauce", + "green onions", + "chinese five-spice powder", + "dried shrimp" + ] + }, + { + "id": 26194, + "cuisine": "french", + "ingredients": [ + "sauerkraut", + "bay leaf", + "vegetable oil", + "caraway seeds", + "smoked sausage", + "dry white wine", + "onions" + ] + }, + { + "id": 25162, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "salt", + "unsalted butter", + "vanilla extract", + "large egg whites", + "light corn syrup", + "whole milk", + "cake flour" + ] + }, + { + "id": 34613, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "red bell pepper", + "dried basil", + "ground black pepper", + "apple juice", + "fresh parsley", + "dried thyme", + "whole peeled tomatoes", + "halibut steak", + "onions", + "tomato juice", + "salt", + "celery" + ] + }, + { + "id": 9193, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "vegetable oil", + "chopped cilantro", + "boneless skinless chicken breast halves", + "ground black pepper", + "unsweetened chocolate", + "onions", + "ground cumin", + "lime", + "fresh oregano", + "fresh parsley", + "chopped cilantro fresh", + "tomatoes", + "hot pepper", + "bay leaf", + "white sugar" + ] + }, + { + "id": 13581, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "green onions", + "garlic", + "pork butt", + "soy sauce", + "sesame oil", + "corn starch", + "snow peas", + "sugar", + "rice wine", + "salt", + "noodles", + "shiitake", + "vegetable oil", + "red bell pepper" + ] + }, + { + "id": 21795, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "purple onion", + "lemon juice", + "lemon", + "ground coriander", + "ground turmeric", + "harissa", + "salt", + "leg of lamb", + "paprika", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 27220, + "cuisine": "british", + "ingredients": [ + "Guinness Beer", + "butter", + "onions", + "granulated garlic", + "lemon pepper seasoning", + "carrots", + "honey mustard", + "lager beer", + "beef broth", + "honey", + "balsamic vinegar", + "leg of lamb" + ] + }, + { + "id": 39548, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "cooking oil", + "liver", + "eggplant", + "garlic", + "calamansi", + "ground black pepper", + "green chilies", + "onions", + "soy sauce", + "spring onions", + "red bell pepper" + ] + }, + { + "id": 19377, + "cuisine": "greek", + "ingredients": [ + "pita bread", + "olive oil", + "banana peppers", + "dried oregano", + "fresh spinach", + "purple onion", + "celery", + "fresh dill", + "garlic", + "cucumber", + "tomatoes", + "plain yogurt", + "fresh mushrooms", + "ground beef" + ] + }, + { + "id": 42554, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "garlic powder", + "non-fat sour cream", + "canola oil", + "white vinegar", + "water", + "cooking spray", + "salsa", + "low sodium soy sauce", + "seasoning salt", + "boneless skinless chicken breasts", + "red bell pepper", + "black pepper", + "flour tortillas", + "purple onion" + ] + }, + { + "id": 11338, + "cuisine": "mexican", + "ingredients": [ + "lime", + "chopped cilantro", + "pepper", + "salt", + "tomatoes", + "purple onion", + "tilapia fillets", + "cucumber" + ] + }, + { + "id": 2502, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "fresh lemon juice", + "garlic", + "extra-virgin olive oil", + "salt" + ] + }, + { + "id": 41436, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "poblano chiles", + "corn oil", + "plum tomatoes", + "water", + "onions", + "black pepper", + "chicken breasts", + "monterey jack" + ] + }, + { + "id": 10184, + "cuisine": "french", + "ingredients": [ + "firmly packed brown sugar", + "chopped pecans", + "golden delicious apples", + "brie cheese", + "brandy" + ] + }, + { + "id": 17350, + "cuisine": "french", + "ingredients": [ + "brown sugar", + "pepper", + "parsley", + "salt", + "bread crumbs", + "whole grain mustard", + "butter", + "thyme", + "lamb stock", + "rosemary", + "vegetable oil", + "rack of lamb", + "eggs", + "ruby port", + "shallots", + "garlic" + ] + }, + { + "id": 33670, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "Italian parsley leaves", + "red bell pepper", + "green bell pepper", + "shallots", + "extra-virgin olive oil", + "green olives", + "salami", + "yellow bell pepper", + "fresh oregano leaves", + "ziti", + "garlic cloves" + ] + }, + { + "id": 28481, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "ground black pepper", + "garlic", + "lime", + "green onions", + "kosher salt", + "jalapeno chilies", + "chopped cilantro", + "olive oil", + "tomatillos" + ] + }, + { + "id": 36518, + "cuisine": "mexican", + "ingredients": [ + "bread", + "vidalia onion", + "cooking spray", + "cilantro leaves", + "fresh lime juice", + "red snapper", + "ground black pepper", + "butter", + "garlic cloves", + "fat-free mayonnaise", + "capers", + "jalapeno chilies", + "salt", + "red bell pepper", + "avocado", + "large egg whites", + "tomatillos", + "ground coriander", + "chopped cilantro fresh" + ] + }, + { + "id": 30124, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "olive oil", + "garlic cloves", + "grits", + "black pepper", + "salt", + "celery seed", + "chicken broth", + "lump crab meat", + "all-purpose flour", + "onions", + "andouille sausage", + "old bay seasoning", + "shrimp" + ] + }, + { + "id": 6322, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "sour cream", + "black olives", + "vegetarian refried beans", + "taco seasoning mix", + "onions", + "tomatoes", + "salsa", + "iceberg lettuce" + ] + }, + { + "id": 42185, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chicken tenderloin", + "enchilada sauce", + "flour", + "frozen corn", + "milk", + "diced tomatoes", + "onions", + "chicken broth", + "butter", + "green pepper" + ] + }, + { + "id": 4262, + "cuisine": "brazilian", + "ingredients": [ + "crushed ice", + "key lime", + "superfine sugar", + "cachaca" + ] + }, + { + "id": 11974, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "honey", + "vegetable oil", + "grated nutmeg", + "black pepper", + "dried apricot", + "lamb shoulder chops", + "onions", + "saffron threads", + "water", + "sweet potatoes", + "salt", + "prunes", + "yellow squash", + "cinnamon", + "carrots" + ] + }, + { + "id": 10504, + "cuisine": "southern_us", + "ingredients": [ + "peach pie filling", + "pie crust", + "muffin" + ] + }, + { + "id": 14282, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cheese", + "quickcooking grits", + "margarine", + "ground red pepper", + "large eggs", + "salt" + ] + }, + { + "id": 36039, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "ginger", + "soba", + "sugar", + "green onions", + "cilantro leaves", + "hard-boiled egg", + "garlic", + "soy sauce", + "sesame oil", + "rice vinegar" + ] + }, + { + "id": 19451, + "cuisine": "italian", + "ingredients": [ + "pepper", + "shallots", + "chicken stock", + "grated parmesan cheese", + "salt", + "white wine", + "mushrooms", + "chopped parsley", + "arborio rice", + "olive oil", + "butter" + ] + }, + { + "id": 46156, + "cuisine": "jamaican", + "ingredients": [ + "red kidney beans", + "pork hocks", + "ground allspice", + "coconut", + "garlic", + "long-grain rice", + "water", + "scotch bonnet chile", + "scallions", + "fresh thyme", + "salt" + ] + }, + { + "id": 9957, + "cuisine": "italian", + "ingredients": [ + "sea bass fillets", + "juice", + "fennel bulb", + "fat-free chicken broth", + "hot red pepper flakes", + "extra-virgin olive oil", + "tomatoes", + "anchovy paste", + "onions" + ] + }, + { + "id": 28911, + "cuisine": "indian", + "ingredients": [ + "shredded coconut", + "paprika", + "onions", + "tumeric", + "vegetable oil", + "asafoetida powder", + "turnips", + "leaves", + "mustard seeds", + "water", + "salt" + ] + }, + { + "id": 45867, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "red wine vinegar", + "olives", + "feta cheese", + "fresh lemon juice", + "iceberg lettuce", + "olive oil", + "purple onion", + "dried oregano", + "garlic powder", + "cucumber" + ] + }, + { + "id": 44453, + "cuisine": "cajun_creole", + "ingredients": [ + "creole mustard", + "stuffing", + "salt", + "parsley sprigs", + "dry white wine", + "rib", + "cherry tomatoes", + "heavy cream", + "dried thyme", + "vegetable oil" + ] + }, + { + "id": 18924, + "cuisine": "french", + "ingredients": [ + "mayonaise", + "chopped parsley", + "fresh lemon juice", + "haricots verts", + "celery root" + ] + }, + { + "id": 31223, + "cuisine": "mexican", + "ingredients": [ + "bacon", + "bean soup mix", + "chili powder", + "garlic", + "water", + "crushed red pepper flakes", + "chile pepper", + "onions" + ] + }, + { + "id": 41970, + "cuisine": "southern_us", + "ingredients": [ + "dry sherry", + "butter", + "cayenne pepper", + "ground black pepper", + "salt", + "lemon", + "shrimp" + ] + }, + { + "id": 31047, + "cuisine": "irish", + "ingredients": [ + "buttermilk", + "white sugar", + "eggs", + "all-purpose flour", + "raisins", + "baking soda", + "margarine" + ] + }, + { + "id": 35655, + "cuisine": "mexican", + "ingredients": [ + "frozen whole kernel corn", + "boneless skinless chicken breast halves", + "onion powder", + "chunky salsa", + "Mexican cheese blend", + "long grain white rice", + "water", + "Campbell's Condensed Cream of Chicken Soup" + ] + }, + { + "id": 9643, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "ground black pepper", + "bay leaves", + "hot sauce", + "garlic cloves", + "lemon juice", + "onions", + "green bell pepper", + "fresh thyme", + "butter", + "scallions", + "sausages", + "medium shrimp", + "tomato paste", + "cayenne", + "coarse salt", + "fresh oregano", + "ham", + "red bell pepper", + "olive oil", + "jalapeno chilies", + "diced tomatoes", + "long-grain rice", + "diced celery", + "fresh parsley" + ] + }, + { + "id": 18325, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "salt", + "cornmeal", + "flour", + "cayenne pepper", + "crawfish", + "hot sauce", + "buttermilk", + "peanut oil" + ] + }, + { + "id": 16750, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "crushed red pepper", + "parmigiano-reggiano cheese", + "basil leaves", + "tomatoes", + "ground black pepper", + "garlic cloves", + "pinenuts", + "extra-virgin olive oil" + ] + }, + { + "id": 15953, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "pepperoncini", + "unsalted butter", + "hamburger buns", + "salami" + ] + }, + { + "id": 48604, + "cuisine": "chinese", + "ingredients": [ + "baby bok choy", + "sweet potatoes", + "chinese five-spice powder", + "rib eye steaks", + "kosher salt", + "vegetable oil", + "soy sauce", + "green onions", + "reduced sodium beef broth", + "fresh ginger", + "large garlic cloves" + ] + }, + { + "id": 25553, + "cuisine": "indian", + "ingredients": [ + "chili flakes", + "fresh ginger", + "baby spinach", + "salt", + "bird chile", + "tumeric", + "potatoes", + "heavy cream", + "lemon juice", + "chopped garlic", + "spinach", + "finely chopped onion", + "butter", + "grated nutmeg", + "chopped cilantro", + "fenugreek leaves", + "olive oil", + "vegetable oil", + "ginger", + "corn starch" + ] + }, + { + "id": 5956, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "rice vinegar", + "wasabi", + "dried bonito flakes", + "sesame oil", + "green onions", + "soba noodles" + ] + }, + { + "id": 30060, + "cuisine": "indian", + "ingredients": [ + "whole milk", + "lime" + ] + }, + { + "id": 38632, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "granulated sugar", + "celery seed", + "tumeric", + "coarse salt", + "onions", + "green bell pepper", + "green tomatoes", + "red bell pepper", + "water", + "mustard seeds", + "cabbage" + ] + }, + { + "id": 33246, + "cuisine": "thai", + "ingredients": [ + "fennel seeds", + "curry powder", + "shallots", + "cumin seed", + "chiles", + "coriander seeds", + "garlic", + "galangal", + "lime rind", + "shrimp paste", + "salt", + "white peppercorns", + "fresh turmeric", + "lemongrass", + "cilantro root", + "hot water" + ] + }, + { + "id": 18188, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "ham", + "salt", + "boiling water", + "parsley", + "pork sausages", + "pepper", + "yellow onion" + ] + }, + { + "id": 27250, + "cuisine": "korean", + "ingredients": [ + "radishes", + "salt", + "napa cabbage", + "red cabbage", + "scallions", + "chili paste", + "ginger" + ] + }, + { + "id": 44082, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "grated jack cheese", + "jalapeno chilies", + "corn tortillas", + "tomato sauce", + "sour cream", + "vegetable oil" + ] + }, + { + "id": 38345, + "cuisine": "mexican", + "ingredients": [ + "water", + "coarse salt", + "garlic cloves", + "white onion", + "Mexican oregano", + "fresh orange juice", + "ground black pepper", + "ancho powder", + "cider vinegar", + "achiote", + "ground allspice" + ] + }, + { + "id": 450, + "cuisine": "russian", + "ingredients": [ + "granulated sugar", + "vanilla", + "unsalted butter", + "golden raisins", + "confectioners sugar", + "large eggs", + "salt", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 43635, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "oil", + "pinenuts", + "pasta", + "olive oil", + "romano cheese", + "garlic cloves" + ] + }, + { + "id": 28216, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "lamb leg", + "kosher salt", + "garlic", + "fresh rosemary", + "dijon mustard", + "olive oil", + "lemon juice" + ] + }, + { + "id": 42162, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "extra-virgin olive oil", + "onions", + "fresh parmesan cheese", + "low salt chicken broth", + "shallots", + "flat leaf parsley", + "pepper", + "salt" + ] + }, + { + "id": 20408, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "potatoes", + "vegetable oil", + "salt", + "corn starch", + "ground cumin", + "tumeric", + "chopped tomatoes", + "butternut squash", + "paprika", + "ground coriander", + "bay leaf", + "water", + "unsalted butter", + "chili powder", + "cauliflower florets", + "garlic cloves", + "onions", + "fresh ginger", + "fenugreek", + "cinnamon", + "chickpeas", + "red bell pepper" + ] + }, + { + "id": 37335, + "cuisine": "brazilian", + "ingredients": [ + "black beans", + "chopped green bell pepper", + "garlic", + "onions", + "frozen orange juice concentrate", + "orange", + "Tabasco Pepper Sauce", + "lemon juice", + "cumin", + "crushed tomatoes", + "jalapeno chilies", + "chopped celery", + "dried oregano", + "molasses", + "olive oil", + "white rice", + "red bell pepper" + ] + }, + { + "id": 27263, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "Mexican oregano", + "ground cumin", + "ground cinnamon", + "minced garlic", + "fresh pork fat", + "hog casings", + "cider vinegar", + "ancho powder", + "ground cloves", + "ground black pepper", + "pork shoulder" + ] + }, + { + "id": 12027, + "cuisine": "russian", + "ingredients": [ + "tomato juice", + "whipping cream", + "beets", + "onions", + "fresh dill", + "green onions", + "salt", + "carrots", + "potatoes", + "canned tomatoes", + "garlic cloves", + "cabbage", + "water", + "butter", + "green pepper", + "celery" + ] + }, + { + "id": 48057, + "cuisine": "italian", + "ingredients": [ + "sliced black olives", + "garlic", + "sweet onion", + "extra-virgin olive oil", + "fresh parsley", + "fresh tomatoes", + "french bread", + "feta cheese crumbles", + "fresh basil", + "grated parmesan cheese", + "fresh oregano" + ] + }, + { + "id": 32394, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "lemon", + "striped bass", + "dried thyme", + "unsalted butter", + "salt", + "ground black pepper", + "paprika", + "ground white pepper", + "olive oil", + "chili powder", + "meat bones" + ] + }, + { + "id": 38448, + "cuisine": "korean", + "ingredients": [ + "pepper flakes", + "oysters", + "chives", + "shrimp", + "kosher salt", + "beef stock", + "yellow onion", + "sweet rice flour", + "sugar", + "fresh ginger", + "napa cabbage", + "brine", + "seasoning", + "minced garlic", + "green onions", + "sauce" + ] + }, + { + "id": 43112, + "cuisine": "italian", + "ingredients": [ + "durum wheat flour", + "water", + "flour for dusting" + ] + }, + { + "id": 6476, + "cuisine": "chinese", + "ingredients": [ + "salt", + "water", + "chopped garlic", + "vegetable oil", + "greens" + ] + }, + { + "id": 91, + "cuisine": "greek", + "ingredients": [ + "unsalted butter", + "hazelnuts", + "greek yogurt", + "sugar", + "plums", + "honey" + ] + }, + { + "id": 23503, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "peanut oil", + "salt and ground black pepper", + "onions", + "yellow summer squash", + "self-rising cornmeal", + "onion powder" + ] + }, + { + "id": 46709, + "cuisine": "greek", + "ingredients": [ + "dried basil", + "butter", + "spinach", + "vegetable oil", + "onions", + "eggs", + "feta cheese", + "fresh mushrooms", + "phyllo dough", + "ricotta cheese" + ] + }, + { + "id": 15330, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "fresh parsley", + "parsnips", + "garlic cloves", + "ground lamb", + "ground cinnamon", + "diced tomatoes", + "onions", + "penne", + "feta cheese crumbles" + ] + }, + { + "id": 31718, + "cuisine": "brazilian", + "ingredients": [ + "dried thyme", + "garlic cloves", + "fat free less sodium chicken broth", + "turkey kielbasa", + "fresh parsley", + "olive oil", + "chipotles in adobo", + "black beans", + "chopped onion" + ] + }, + { + "id": 9244, + "cuisine": "indian", + "ingredients": [ + "clove", + "eggs", + "cinnamon", + "oil", + "ground cumin", + "curry leaves", + "fresh cilantro", + "salt", + "coriander", + "tomatoes", + "chili powder", + "cardamom pods", + "ground turmeric", + "tomato paste", + "sugar", + "garlic", + "onions" + ] + }, + { + "id": 6425, + "cuisine": "italian", + "ingredients": [ + "coffee granules", + "bittersweet chocolate", + "sugar", + "1% low-fat milk", + "vanilla", + "unsweetened cocoa powder", + "sliced almonds", + "corn starch" + ] + }, + { + "id": 10915, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "water", + "Shaoxing wine", + "oyster sauce", + "canola oil", + "cold water", + "black pepper", + "white rice vinegar", + "garlic cloves", + "corn starch", + "sugar pea", + "hong kong-style noodles", + "scallions", + "shrimp", + "soy sauce", + "fresh ginger", + "sesame oil", + "carrots" + ] + }, + { + "id": 14470, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "brown mustard seeds", + "garlic", + "ground turmeric", + "water", + "sea salt", + "cumin seed", + "baby spinach leaves", + "chili powder", + "yellow onion", + "tomatoes", + "mung beans", + "ginger", + "carrots" + ] + }, + { + "id": 3217, + "cuisine": "french", + "ingredients": [ + "shortening", + "large eggs", + "warm water", + "all-purpose flour", + "sugar", + "salt", + "food colouring", + "active dry yeast", + "bread flour" + ] + }, + { + "id": 15328, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "berries", + "frozen blackberries", + "butter", + "sugar", + "whole milk", + "water", + "buttermilk" + ] + }, + { + "id": 33539, + "cuisine": "chinese", + "ingredients": [ + "honey", + "oil", + "garlic paste", + "spring onions", + "chili flakes", + "prawns", + "corn flour", + "soy sauce", + "tomato ketchup" + ] + }, + { + "id": 39930, + "cuisine": "vietnamese", + "ingredients": [ + "clove", + "water", + "thai basil", + "mushrooms", + "star anise", + "cinnamon sticks", + "toasted sesame seeds", + "cabbage", + "black peppercorns", + "fresh ginger", + "Sriracha", + "veggies", + "cardamom pods", + "mung bean sprouts", + "greens", + "fennel seeds", + "lime", + "swiss chard", + "spring onions", + "tamari soy sauce", + "bok choy", + "noodles", + "broccoli romanesco", + "cauliflower", + "spinach", + "coriander seeds", + "bell pepper", + "sea salt", + "carrots", + "onions", + "soba" + ] + }, + { + "id": 40763, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "onions", + "salt", + "ground cumin", + "water", + "frozen mixed vegetables", + "vegetable oil", + "basmati rice" + ] + }, + { + "id": 39562, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "pistachios", + "salt", + "garlic cloves", + "honey", + "ground red pepper", + "chickpeas", + "fat free less sodium chicken broth", + "golden raisins", + "cilantro leaves", + "ground cumin", + "olive oil", + "lamb stew meat", + "chopped onion" + ] + }, + { + "id": 429, + "cuisine": "italian", + "ingredients": [ + "whole milk", + "large egg yolks", + "bittersweet chocolate", + "heavy cream", + "granulated sugar", + "unsweetened cocoa powder" + ] + }, + { + "id": 17093, + "cuisine": "french", + "ingredients": [ + "olive oil", + "garlic cloves", + "reduced sodium chicken broth", + "dry bread crumbs", + "carrot sticks", + "pork tenderloin", + "thyme sprigs", + "dijon mustard", + "lentils" + ] + }, + { + "id": 15776, + "cuisine": "southern_us", + "ingredients": [ + "white onion", + "diced tomatoes", + "salt and ground black pepper", + "sour cream", + "shredded cheddar cheese", + "cream cheese", + "mayonaise", + "garlic powder" + ] + }, + { + "id": 22610, + "cuisine": "moroccan", + "ingredients": [ + "green olives", + "paprika", + "yellow onion", + "ground cumin", + "lemon", + "all-purpose flour", + "fat", + "olive oil", + "salt", + "freshly ground pepper", + "lamb shoulder chops", + "beef broth", + "fresh mint" + ] + }, + { + "id": 46863, + "cuisine": "british", + "ingredients": [ + "cod", + "vinegar", + "sea salt", + "tartar sauce", + "baking soda", + "corn oil", + "salt", + "water", + "potatoes", + "malt vinegar", + "ground black pepper", + "lemon wedge", + "all-purpose flour" + ] + }, + { + "id": 33613, + "cuisine": "korean", + "ingredients": [ + "sugar", + "sesame oil", + "garlic cloves", + "Sriracha", + "rice vinegar", + "soy sauce", + "ginger", + "toasted sesame seeds", + "flank steak", + "scallions" + ] + }, + { + "id": 2876, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "garlic herb spreadable cheese", + "purple onion", + "vegetable oil spray", + "refrigerated pizza dough", + "zucchini", + "flat leaf parsley" + ] + }, + { + "id": 7310, + "cuisine": "cajun_creole", + "ingredients": [ + "oysters", + "salt", + "celery ribs", + "large garlic cloves", + "freshly ground pepper", + "watercress", + "hot sauce", + "baguette", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 43356, + "cuisine": "french", + "ingredients": [ + "fresh thyme leaves", + "grated Gruyère cheese", + "unsalted butter", + "all-purpose flour", + "large eggs", + "cayenne pepper", + "kosher salt", + "asiago" + ] + }, + { + "id": 37871, + "cuisine": "italian", + "ingredients": [ + "water", + "extra-virgin olive oil", + "light brown sugar", + "egg whites", + "sesame seeds", + "bread flour", + "active dry yeast", + "salt" + ] + }, + { + "id": 12584, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "frozen corn", + "onions", + "black beans", + "garlic", + "enchilada sauce", + "frozen tater tots", + "green chilies", + "taco seasoning mix", + "black olives", + "ground beef" + ] + }, + { + "id": 49543, + "cuisine": "filipino", + "ingredients": [ + "large eggs", + "shells", + "crab meat", + "potatoes", + "onions", + "cooking oil", + "salt", + "ground pepper", + "garlic" + ] + }, + { + "id": 39687, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "anchovy fillets", + "broccoli rabe", + "gemelli", + "panko", + "garlic cloves", + "extra-virgin olive oil" + ] + }, + { + "id": 37688, + "cuisine": "italian", + "ingredients": [ + "pepper", + "whole wheat penne pasta", + "boneless skinless chicken breasts", + "garlic cloves", + "grated parmesan cheese", + "reduced fat alfredo sauce", + "frozen chopped broccoli" + ] + }, + { + "id": 49438, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "chinese rice wine", + "egg noodles", + "yellow onion", + "chicken stock", + "chinese celery", + "garlic", + "pork", + "green onions", + "canola oil" + ] + }, + { + "id": 21395, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "olive oil", + "onions", + "garlic bulb", + "chicken legs", + "thyme", + "tomatoes", + "red wine", + "pasta", + "red chili peppers", + "chopped parsley" + ] + }, + { + "id": 23689, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "hot water", + "fine sea salt", + "parsley sprigs", + "garlic cloves", + "white rice", + "canola oil" + ] + }, + { + "id": 11992, + "cuisine": "japanese", + "ingredients": [ + "lemongrass", + "napa cabbage", + "semi firm tofu", + "snow peas", + "sambal ulek", + "udon", + "rice vinegar", + "carrots", + "dashi kombu", + "tamari soy sauce", + "yams", + "sliced green onions", + "water", + "peeled fresh ginger", + "dried shiitake mushrooms", + "chopped cilantro fresh" + ] + }, + { + "id": 29494, + "cuisine": "chinese", + "ingredients": [ + "Sriracha", + "beer", + "garlic", + "char siu sauce", + "pickle juice", + "pork ribs", + "salt" + ] + }, + { + "id": 37332, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "salt", + "pepper", + "green onions", + "corn tortillas", + "cheddar cheese", + "sliced olives", + "hamburger", + "chili", + "diced tomatoes" + ] + }, + { + "id": 702, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "orzo", + "red bell pepper", + "grated parmesan cheese", + "frozen chopped spinach, thawed and squeezed dry", + "pepper", + "garlic", + "onions" + ] + }, + { + "id": 87, + "cuisine": "filipino", + "ingredients": [ + "less sodium soy sauce", + "onions", + "ground pepper", + "salt", + "water", + "garlic", + "lean ground beef", + "green beans" + ] + }, + { + "id": 8768, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "cilantro leaves", + "onions", + "paneer", + "cumin seed", + "capsicum", + "green chilies", + "salt", + "oil" + ] + }, + { + "id": 860, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "Thai red curry paste", + "chicken stock", + "lime juice", + "red chili peppers", + "coconut milk", + "chicken breast fillets", + "pumpkin" + ] + }, + { + "id": 36045, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "red wine vinegar", + "garlic cloves", + "sliced green onions", + "fresh basil", + "salad greens", + "salt", + "cucumber", + "green bell pepper", + "tomato juice", + "hot sauce", + "large shrimp", + "tomatoes", + "black pepper", + "extra-virgin olive oil", + "green beans" + ] + }, + { + "id": 40812, + "cuisine": "southern_us", + "ingredients": [ + "crystallized ginger", + "butter", + "softened butter", + "melted butter", + "baking powder", + "all-purpose flour", + "fresh blueberries", + "salt", + "granulated sugar", + "buttermilk", + "confectioners sugar" + ] + }, + { + "id": 39641, + "cuisine": "mexican", + "ingredients": [ + "fresh lime juice", + "water", + "sugar", + "fresh lemon juice" + ] + }, + { + "id": 21734, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "salt", + "corn starch", + "canola oil", + "catfish fillets", + "water", + "all-purpose flour", + "fresh lime juice", + "black pepper", + "seasoned rice wine vinegar", + "bok choy", + "sliced green onions", + "fish sauce", + "cooking spray", + "hot chili sauce", + "five-spice powder" + ] + }, + { + "id": 11019, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "baguette", + "cilantro", + "cucumber", + "sugar", + "shallots", + "oil", + "mayonaise", + "pickled carrots", + "garlic", + "pepper", + "daikon", + "shrimp" + ] + }, + { + "id": 18896, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lemon grass", + "egg noodles, cooked and drained", + "onions", + "red chili peppers", + "mixed vegetables", + "juice", + "coriander", + "brown sugar", + "chili powder", + "low sodium chicken stock", + "chicken thighs", + "green curry paste", + "garlic", + "coconut milk", + "cumin" + ] + }, + { + "id": 14386, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "corn kernels", + "chicken meat", + "cilantro leaves", + "sour cream", + "tomato sauce", + "garbanzo beans", + "purple onion", + "grated jack cheese", + "green bell pepper", + "kidney beans", + "prepar salsa", + "tortilla chips", + "minced garlic", + "ground black pepper", + "salt", + "sharp cheddar cheese" + ] + }, + { + "id": 3456, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "fresh thyme", + "field peas", + "kosher salt", + "short-grain rice", + "garlic cloves", + "chicken broth", + "water", + "bay leaves", + "smoked ham hocks", + "fresh rosemary", + "sweet onion", + "fatback" + ] + }, + { + "id": 14378, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "onions", + "green cabbage", + "prosciutto" + ] + }, + { + "id": 47120, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "ranch dressing", + "mozzarella cheese", + "pesto", + "butter", + "boneless skinless chicken breasts" + ] + }, + { + "id": 41874, + "cuisine": "british", + "ingredients": [ + "water", + "baking potatoes", + "beef broth", + "rosemary sprigs", + "whole milk", + "salt", + "thyme sprigs", + "spinach", + "unsalted butter", + "extra-virgin olive oil", + "carrots", + "lamb shanks", + "dry white wine", + "all-purpose flour", + "onions" + ] + }, + { + "id": 4282, + "cuisine": "indian", + "ingredients": [ + "ginger piece", + "green peas", + "all-purpose flour", + "ground turmeric", + "curry leaves", + "seeds", + "salt", + "oil", + "potatoes", + "garlic", + "green chilies", + "ground cumin", + "water", + "chili powder", + "cilantro leaves", + "mustard seeds" + ] + }, + { + "id": 21268, + "cuisine": "mexican", + "ingredients": [ + "milk", + "baking powder", + "heavy whipping cream", + "cream of tartar", + "egg yolks", + "all-purpose flour", + "egg whites", + "vanilla extract", + "sweetened condensed milk", + "evaporated milk", + "butter", + "white sugar" + ] + }, + { + "id": 698, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "dry sherry", + "ground ginger", + "flour", + "margarine", + "cold water", + "water", + "ground pork", + "eggs", + "green onions", + "corn starch" + ] + }, + { + "id": 3255, + "cuisine": "vietnamese", + "ingredients": [ + "clove", + "water", + "coriander seeds", + "salt", + "chopped cilantro fresh", + "fish sauce", + "lime", + "rice noodles", + "onions", + "fennel seeds", + "cooked turkey", + "chilegarlic sauce", + "cardamom pods", + "turkey carcass", + "fresh ginger", + "star anise", + "fresh basil leaves" + ] + }, + { + "id": 6063, + "cuisine": "chinese", + "ingredients": [ + "starch", + "ginger", + "soy", + "water", + "shallots", + "salt", + "regular tofu", + "bean paste", + "garlic", + "shiitake", + "szechwan peppercorns", + "oil" + ] + }, + { + "id": 23968, + "cuisine": "chinese", + "ingredients": [ + "chicken bouillon", + "Shaoxing wine", + "oil", + "bean curd skins", + "worcestershire sauce", + "yellow chives", + "potato starch", + "egg whites", + "salt", + "white pepper", + "sesame oil", + "shrimp" + ] + }, + { + "id": 27785, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "water", + "green onions", + "cilantro leaves", + "corn tortillas", + "black beans", + "crema mexican", + "Mexican oregano", + "sharp cheddar cheese", + "monterey jack", + "lower sodium chicken broth", + "olive oil", + "ground sirloin", + "chopped onion", + "fresh lime juice", + "kosher salt", + "cooking spray", + "garlic", + "ancho chile pepper", + "ground cumin" + ] + }, + { + "id": 21961, + "cuisine": "british", + "ingredients": [ + "salt", + "pepper", + "boiling potatoes", + "mashed potatoes", + "onions", + "butter", + "cabbage" + ] + }, + { + "id": 29118, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "chicken", + "bay leaves", + "freshly ground pepper", + "stone-ground cornmeal", + "all-purpose flour", + "fresh rosemary", + "sea salt", + "lard" + ] + }, + { + "id": 11277, + "cuisine": "southern_us", + "ingredients": [ + "all-purpose flour", + "dry mustard", + "shredded sharp cheddar cheese", + "apple cider" + ] + }, + { + "id": 9745, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "scallions", + "wonton wrappers", + "reduced sodium soy sauce" + ] + }, + { + "id": 28317, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "salt", + "green onions", + "asparagus", + "black pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 5735, + "cuisine": "filipino", + "ingredients": [ + "meat", + "dried rice noodles", + "lemon", + "onions", + "vegetable oil", + "carrots", + "soy sauce", + "garlic", + "cabbage" + ] + }, + { + "id": 21290, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "all-purpose flour", + "milk", + "fully cooked ham", + "shredded mozzarella cheese", + "lasagna noodles", + "margarine", + "dried thyme", + "garlic" + ] + }, + { + "id": 44522, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "salt", + "sugar", + "ground black pepper", + "olive oil", + "all-purpose flour", + "warm water", + "kalamata" + ] + }, + { + "id": 25663, + "cuisine": "indian", + "ingredients": [ + "pepper", + "salt", + "ground cumin", + "olive oil", + "lemon juice", + "cooking spray", + "chutney", + "minced garlic", + "lamb loin chops" + ] + }, + { + "id": 48526, + "cuisine": "brazilian", + "ingredients": [ + "kosher salt", + "fish stock", + "filet", + "cooked white rice", + "palm oil", + "thai basil", + "garlic", + "fresh lime juice", + "olive oil", + "cilantro", + "coconut milk", + "plum tomatoes", + "cuban peppers", + "ground black pepper", + "yellow onion", + "medium shrimp" + ] + }, + { + "id": 43305, + "cuisine": "korean", + "ingredients": [ + "garlic", + "toasted sesame seeds", + "soy sauce", + "scallions", + "sugar", + "rice vinegar", + "gochugaru", + "toasted sesame oil" + ] + }, + { + "id": 7366, + "cuisine": "spanish", + "ingredients": [ + "potatoes", + "garlic cloves", + "chili pepper", + "diced tomatoes", + "olive oil", + "cayenne pepper", + "sea salt", + "sage" + ] + }, + { + "id": 24084, + "cuisine": "indian", + "ingredients": [ + "green peas", + "chopped cilantro fresh", + "curry powder", + "dark sesame oil", + "instant rice", + "salt", + "large shrimp", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 39798, + "cuisine": "vietnamese", + "ingredients": [ + "dark soy sauce", + "ground black pepper", + "pork shoulder", + "lemongrass", + "garlic", + "fish sauce", + "shallots", + "honey", + "oil" + ] + }, + { + "id": 39677, + "cuisine": "southern_us", + "ingredients": [ + "whipped topping", + "sweetened coconut flakes", + "yellow cake mix", + "sweetened condensed milk", + "cream of coconut" + ] + }, + { + "id": 30230, + "cuisine": "jamaican", + "ingredients": [ + "lettuce", + "brown sugar", + "dried thyme", + "sandwich bread", + "salt", + "ground cinnamon", + "pork", + "onion powder", + "habanero", + "allspice", + "ground ginger", + "mayonaise", + "garlic powder", + "lemon", + "red bell pepper", + "low sodium soy sauce", + "black pepper", + "vegetable oil", + "purple onion" + ] + }, + { + "id": 8499, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "garlic powder", + "pasta sauce", + "olive oil", + "italian seasoning", + "eggs", + "bulk italian sausag", + "dry bread crumbs", + "black pepper", + "eggplant" + ] + }, + { + "id": 4445, + "cuisine": "italian", + "ingredients": [ + "fennel bulb", + "pizza doughs", + "kosher salt", + "crushed red pepper", + "olive oil", + "purple onion", + "tomatoes", + "parmigiano reggiano cheese", + "Italian turkey sausage" + ] + }, + { + "id": 9255, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "baking powder", + "chopped pecans", + "yellow corn meal", + "dried thyme", + "salt", + "milk", + "butter", + "sour cream", + "sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 26421, + "cuisine": "italian", + "ingredients": [ + "Alfredo sauce", + "grape tomatoes", + "shredded mozzarella cheese", + "cooked bacon", + "Pillsbury Thin Pizza Crust", + "arugula" + ] + }, + { + "id": 23482, + "cuisine": "southern_us", + "ingredients": [ + "fresh parmesan cheese", + "cooking spray", + "dried rosemary", + "dijon mustard", + "dry bread crumbs", + "ground black pepper", + "salt", + "honey", + "low-fat buttermilk", + "chicken thighs" + ] + }, + { + "id": 38954, + "cuisine": "italian", + "ingredients": [ + "low sodium chicken broth", + "peas", + "prosciutto", + "dry white wine", + "grated parmesan cheese", + "butter", + "orzo pasta", + "fresh basil leaves" + ] + }, + { + "id": 9123, + "cuisine": "mexican", + "ingredients": [ + "skim milk", + "vanilla extract", + "egg substitute", + "sugar" + ] + }, + { + "id": 5921, + "cuisine": "indian", + "ingredients": [ + "sea salt", + "sugar", + "Spring! Water", + "vegetable oil", + "basmati rice", + "urad dal" + ] + }, + { + "id": 46389, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "salt", + "curry paste", + "mussels", + "vegetable oil", + "coconut milk", + "brown sugar", + "garlic cloves", + "diced onions", + "vegetable stock", + "chopped cilantro" + ] + }, + { + "id": 7602, + "cuisine": "vietnamese", + "ingredients": [ + "green cabbage", + "boneless, skinless chicken breast", + "salt", + "sugar", + "peanuts", + "carrots", + "canned low sodium chicken broth", + "lime juice", + "scallions", + "soy sauce", + "red pepper flakes", + "chopped fresh mint" + ] + }, + { + "id": 18950, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "Italian turkey sausage", + "olive oil", + "minced garlic", + "roasted tomatoes", + "fresh oregano" + ] + }, + { + "id": 16160, + "cuisine": "italian", + "ingredients": [ + "sugar", + "orange juice", + "water", + "orange rind" + ] + }, + { + "id": 34004, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "pepper", + "jalapeno chilies", + "salt", + "shredded Monterey Jack cheese", + "cotija", + "feta cheese", + "cilantro", + "corn tortillas", + "white onion", + "agave nectar", + "garlic", + "chopped cilantro fresh", + "chiles", + "peeled tomatoes", + "vegetable oil", + "juice" + ] + }, + { + "id": 13875, + "cuisine": "french", + "ingredients": [ + "tawny port", + "fig jam", + "fresh lemon juice", + "toast points", + "unsalted butter", + "onions", + "chicken livers", + "allspice" + ] + }, + { + "id": 22115, + "cuisine": "indian", + "ingredients": [ + "water", + "semolina", + "baking powder", + "rose water", + "cardamon", + "ghee", + "coconut", + "granulated sugar", + "vegetable oil", + "plain flour", + "milk", + "powdered milk" + ] + }, + { + "id": 36368, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "sea salt", + "yellow onion", + "ground turmeric", + "eggplant", + "garlic", + "ground coriander", + "olive oil", + "diced tomatoes", + "chickpeas", + "ground cumin", + "ground ginger", + "pumpkin", + "cilantro leaves", + "ground cardamom" + ] + }, + { + "id": 43601, + "cuisine": "russian", + "ingredients": [ + "fresh orange", + "granulated sugar", + "salt", + "unsalted butter", + "golden raisins", + "confectioners sugar", + "active dry yeast", + "whole milk", + "blanched almonds", + "warm water", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 25865, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "salt", + "jalapeno chilies", + "chopped cilantro fresh", + "hot pepper sauce", + "fresh lime juice", + "garlic powder", + "green onions", + "plum tomatoes" + ] + }, + { + "id": 33423, + "cuisine": "spanish", + "ingredients": [ + "plain low-fat yogurt", + "artichokes", + "fresh dill", + "orange juice", + "honey", + "grated orange", + "low-fat sour cream", + "salt" + ] + }, + { + "id": 22099, + "cuisine": "southern_us", + "ingredients": [ + "parmesan cheese", + "bread slices", + "bacon slices", + "sliced turkey", + "plum tomatoes", + "sauce" + ] + }, + { + "id": 32358, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "warm water", + "garlic", + "onions", + "tomato sauce", + "whole wheat flour", + "green pepper", + "pizza toppings", + "olive oil", + "salt", + "yeast", + "sugar", + "flour", + "shredded mozzarella cheese" + ] + }, + { + "id": 35005, + "cuisine": "filipino", + "ingredients": [ + "lemongrass", + "freshly ground pepper", + "banana leaves", + "onions", + "calamansi juice", + "rock salt", + "fish sauce", + "garlic", + "chicken" + ] + }, + { + "id": 21439, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "frozen corn", + "enchilada sauce", + "lean ground beef", + "fajita size flour tortillas", + "cumin", + "chili powder", + "salsa", + "Mexican cheese", + "pepper", + "salt", + "green chilies" + ] + }, + { + "id": 4083, + "cuisine": "thai", + "ingredients": [ + "water", + "shallots", + "rice vinegar", + "warm water", + "cherry tomatoes", + "vegetable oil", + "onions", + "firmly packed brown sugar", + "tamarind", + "rice noodles", + "red bell pepper", + "fresh coriander", + "thai basil", + "garlic", + "asian fish sauce" + ] + }, + { + "id": 26899, + "cuisine": "italian", + "ingredients": [ + "green olives", + "extra-virgin olive oil", + "baguette", + "garlic cloves", + "pitted kalamata olives", + "crushed red pepper", + "fresh rosemary", + "anchovy paste", + "fresh lemon juice" + ] + }, + { + "id": 46600, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "ginger", + "soy sauce", + "green onions", + "oyster mushrooms", + "mirin", + "garlic", + "chili pepper", + "sesame oil", + "carrots" + ] + }, + { + "id": 7312, + "cuisine": "irish", + "ingredients": [ + "lemon zest", + "eggs", + "salt", + "butter", + "sugar", + "lemon juice" + ] + }, + { + "id": 16788, + "cuisine": "mexican", + "ingredients": [ + "milk", + "ground black pepper", + "butter", + "salsa", + "chopped cilantro fresh", + "fresh spinach", + "olive oil", + "flour tortillas", + "black olives", + "sour cream", + "lime", + "pepper jack", + "poblano chilies", + "cayenne pepper", + "ground cumin", + "lime juice", + "garlic powder", + "green onions", + "all-purpose flour", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 32779, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil", + "water", + "smoked turkey sausage", + "red beans" + ] + }, + { + "id": 29773, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "yellow onion", + "baguette", + "extra-virgin olive oil", + "plum tomatoes", + "kosher salt", + "hard-boiled egg", + "ham", + "sherry vinegar", + "garlic" + ] + }, + { + "id": 39349, + "cuisine": "irish", + "ingredients": [ + "cooking spray", + "grated lemon zest", + "fat free yogurt", + "non-fat sour cream", + "fresh lemon juice", + "trout fillet", + "dill", + "pepper", + "salt", + "cucumber" + ] + }, + { + "id": 17943, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "enchilada sauce", + "condensed cream of chicken soup", + "cooked chicken", + "ripe olives", + "shredded cheddar cheese", + "shredded lettuce", + "sliced green onions", + "flour tortillas", + "sour cream" + ] + }, + { + "id": 10089, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "green onions", + "flavored rice mix", + "hot pepper sauce", + "lemon juice", + "curry powder", + "worcestershire sauce", + "green bell pepper", + "artichok heart marin", + "pimento stuffed green olives" + ] + }, + { + "id": 42266, + "cuisine": "greek", + "ingredients": [ + "salt", + "plain yogurt", + "sour cream", + "pepper", + "chopped fresh mint", + "cucumber" + ] + }, + { + "id": 15623, + "cuisine": "thai", + "ingredients": [ + "spinach", + "Thai fish sauce", + "unsweetened coconut milk", + "red curry paste", + "medium shrimp", + "cooked rice", + "carrots", + "fresh coriander", + "red bell pepper" + ] + }, + { + "id": 26349, + "cuisine": "korean", + "ingredients": [ + "granulated sugar", + "club soda", + "pink grapefruit juice", + "sake" + ] + }, + { + "id": 23083, + "cuisine": "thai", + "ingredients": [ + "minced onion", + "fresh lemon juice", + "water", + "vegetable oil", + "soy sauce", + "chunky peanut butter", + "honey", + "garlic cloves" + ] + }, + { + "id": 12552, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "ground cinnamon", + "salt", + "ground ginger", + "egg whites", + "pecan halves", + "ground cayenne pepper" + ] + }, + { + "id": 21459, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "pork loin chops", + "garlic cloves", + "grated lemon peel", + "fresh rosemary", + "fresh lemon juice", + "olive oil", + "flat leaf parsley" + ] + }, + { + "id": 46063, + "cuisine": "british", + "ingredients": [ + "vegetable shortening", + "sugar", + "walnuts", + "margarine", + "semisweet vegan chocolate chips" + ] + }, + { + "id": 23364, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "green onions", + "feta cheese crumbles", + "spinach leaves", + "ground black pepper", + "salt", + "olive oil", + "shallots", + "greek yogurt", + "fresh dill", + "lemon zest", + "fresh lemon juice" + ] + }, + { + "id": 7790, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "dates", + "vegetable oil", + "sweet rice flour", + "water", + "toasted sesame seeds", + "almond extract" + ] + }, + { + "id": 34672, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "black bean sauce", + "garlic cloves", + "chopped cilantro fresh", + "black pepper", + "boneless skinless chicken breasts", + "toasted sesame oil", + "chicken bouillon", + "green onions", + "corn starch", + "boiling water", + "dark soy sauce", + "water", + "salt", + "onions" + ] + }, + { + "id": 25573, + "cuisine": "indian", + "ingredients": [ + "eggs", + "yellow onion", + "vegetable oil", + "greens", + "kosher salt", + "chillies", + "tomatoes", + "cilantro leaves" + ] + }, + { + "id": 25260, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "boneless chicken skinless thigh", + "vinegar", + "salt", + "cinnamon sticks", + "clove", + "tumeric", + "fresh ginger", + "brown mustard seeds", + "cumin seed", + "fennel seeds", + "chiles", + "coriander seeds", + "vegetable oil", + "garlic cloves", + "green cardamom pods", + "black peppercorns", + "coconut", + "shallots", + "yellow onion" + ] + }, + { + "id": 33700, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "pork loin", + "cilantro leaves", + "fresh mint", + "light brown sugar", + "salad greens", + "vegetable oil", + "hot water", + "fresh basil leaves", + "soy sauce", + "rice noodles", + "garlic chili sauce", + "fresh lime juice", + "fish sauce", + "shredded carrots", + "cilantro sprigs", + "cucumber" + ] + }, + { + "id": 48358, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "canola mayonnaise", + "nonfat buttermilk", + "shallots", + "greek yogurt", + "chopped fresh chives", + "fresh lemon juice", + "kosher salt", + "fresh tarragon", + "flat leaf parsley" + ] + }, + { + "id": 20187, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "dry white wine", + "flat leaf parsley", + "minced garlic", + "crushed red pepper", + "bottled clam juice", + "diced tomatoes", + "large shrimp", + "fettucine", + "olive oil", + "salt" + ] + }, + { + "id": 49150, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "beef consomme", + "chopped green bell pepper", + "beef rib short" + ] + }, + { + "id": 25688, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "mushrooms", + "corn starch", + "pesto", + "nonfat yogurt", + "salt", + "chopped cooked ham", + "( oz.) tomato sauce", + "garlic", + "onions", + "pepper", + "vermicelli", + "(10 oz.) frozen chopped spinach" + ] + }, + { + "id": 26610, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "salt", + "pitted black olives", + "dry white wine", + "chicken thighs", + "canned low sodium chicken broth", + "ground black pepper", + "onions", + "fresh rosemary", + "crushed tomatoes", + "garlic", + "dried rosemary" + ] + }, + { + "id": 4726, + "cuisine": "japanese", + "ingredients": [ + "sake", + "salt", + "soy sauce", + "salmon fillets", + "mirin" + ] + }, + { + "id": 39992, + "cuisine": "russian", + "ingredients": [ + "kosher salt", + "yukon gold potatoes", + "carrots", + "mayonaise", + "hard-boiled egg", + "beets", + "fresh dill", + "ground black pepper", + "yellow onion", + "sour cream", + "granny smith apples", + "rosé wine", + "filet" + ] + }, + { + "id": 21127, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "paprika", + "onions", + "bone-in chicken breast halves", + "bourbon whiskey", + "orange juice", + "green onions", + "salt", + "ground nutmeg", + "butter", + "freshly ground pepper" + ] + }, + { + "id": 139, + "cuisine": "chinese", + "ingredients": [ + "honey", + "low sodium chicken broth", + "sesame oil", + "salt", + "cold water", + "ground black pepper", + "boneless skinless chicken breasts", + "ginger", + "corn starch", + "white vinegar", + "sesame seeds", + "green onions", + "vegetable oil", + "yellow onion", + "soy sauce", + "large eggs", + "baking powder", + "garlic" + ] + }, + { + "id": 17877, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "chopped fresh thyme", + "dill", + "fresh rosemary", + "nonfat plain greek yogurt", + "salt", + "light sour cream", + "ground pepper", + "lemon", + "english cucumber", + "minced garlic", + "skinless chicken pieces", + "fresh oregano" + ] + }, + { + "id": 27114, + "cuisine": "mexican", + "ingredients": [ + "lemon", + "onions", + "pepper", + "salt", + "tomatoes", + "cilantro", + "jalapeno chilies", + "nopales" + ] + }, + { + "id": 2883, + "cuisine": "southern_us", + "ingredients": [ + "coconut extract", + "milk", + "baking powder", + "frosting", + "sugar", + "butter cake", + "buttermilk", + "softened butter", + "powdered sugar", + "baking soda", + "butter", + "salt", + "eggs", + "coconut", + "flour", + "vanilla" + ] + }, + { + "id": 44830, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "cayenne pepper", + "vegetable oil", + "ground turmeric", + "potatoes", + "onions", + "salt", + "ground cumin" + ] + }, + { + "id": 33663, + "cuisine": "mexican", + "ingredients": [ + "shredded cheese", + "water", + "taco seasoning", + "ground beef" + ] + }, + { + "id": 13522, + "cuisine": "british", + "ingredients": [ + "kosher salt", + "baking powder", + "beer", + "green tea", + "malt vinegar", + "cold water", + "potatoes", + "tartar sauce", + "cooking oil", + "all-purpose flour" + ] + }, + { + "id": 48431, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "granulated sugar", + "almond liqueur", + "cocoa", + "hot water", + "vanilla ice cream", + "vanilla extract", + "cold milk", + "coffee granules", + "cinnamon sticks" + ] + }, + { + "id": 24493, + "cuisine": "southern_us", + "ingredients": [ + "cornbread mix", + "shredded cheese", + "milk", + "diced tomatoes", + "shredded lettuce", + "sour cream", + "chili", + "Eggland's Best® eggs" + ] + }, + { + "id": 32545, + "cuisine": "french", + "ingredients": [ + "rosemary sprigs", + "fat free less sodium chicken broth", + "chopped onion", + "romano cheese", + "zinfandel", + "dried rosemary", + "penne", + "pork loin", + "Italian turkey sausage", + "tomatoes", + "black pepper", + "salt" + ] + }, + { + "id": 44842, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "olive oil", + "gluten free marinara sauce", + "garlic cloves", + "fresh oregano leaves", + "fresh parmesan cheese", + "cooking spray", + "shiitake mushroom caps", + "gluten free lasagna noodle", + "part-skim mozzarella cheese", + "ground black pepper", + "sliced mushrooms", + "large egg whites", + "ground nutmeg", + "part-skim ricotta cheese", + "italian seasoning" + ] + }, + { + "id": 39288, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "onions", + "boneless country pork ribs", + "red bell pepper", + "cilantro sprigs", + "corn tortillas", + "ground black pepper", + "salsa", + "dried oregano" + ] + }, + { + "id": 13910, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "all-purpose flour", + "water", + "butter", + "corn starch", + "milk", + "apricot halves", + "ground cinnamon", + "ground nutmeg", + "salt" + ] + }, + { + "id": 26569, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "cumin seed", + "asafoetida", + "salt", + "mustard seeds", + "tomatoes", + "cilantro", + "oil", + "fresh peas", + "green chilies", + "ground turmeric" + ] + }, + { + "id": 7042, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "rice noodles", + "sauce", + "dark soy sauce", + "thai basil", + "boneless chicken", + "plum tomatoes", + "sugar", + "vegetable oil", + "garlic cloves", + "green bell pepper", + "Anaheim chile", + "thai chile" + ] + }, + { + "id": 21606, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "milk", + "eggs", + "chile pepper", + "pepper", + "salt" + ] + }, + { + "id": 19651, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "anchovy fillets", + "large garlic cloves", + "fresh lemon juice", + "solid white tuna", + "freshly ground pepper", + "salt", + "sour cream" + ] + }, + { + "id": 48779, + "cuisine": "italian", + "ingredients": [ + "green onions", + "cream cheese, soften", + "tomato paste", + "cheese", + "roasted tomatoes", + "medium egg noodles", + "salt", + "italian seasoning", + "lean ground beef", + "sour cream" + ] + }, + { + "id": 14878, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "refried beans", + "chicken meat", + "sour cream", + "ground cumin", + "tomatoes", + "pepper", + "butter", + "red bell pepper", + "shredded Monterey Jack cheese", + "picante sauce", + "chili powder", + "green chilies", + "onions", + "colby cheese", + "flour tortillas", + "salt", + "ground beef" + ] + }, + { + "id": 4371, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "dijon mustard", + "cracked black pepper", + "garlic cloves", + "flat leaf parsley", + "pitted kalamata olives", + "red wine vinegar", + "purple onion", + "fresh lemon juice", + "jumbo shrimp", + "lettuce leaves", + "yellow bell pepper", + "small red potato", + "fat-free mayonnaise", + "lump crab meat", + "basil", + "salt", + "green beans" + ] + }, + { + "id": 29910, + "cuisine": "southern_us", + "ingredients": [ + "cooking spray", + "salt", + "large eggs", + "butter", + "all-purpose flour", + "half & half", + "vanilla extract", + "chopped pecans", + "brown sugar", + "sweet potatoes", + "maple syrup" + ] + }, + { + "id": 6128, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "sunflower oil", + "eggs", + "spring onions", + "garlic", + "prawns", + "ginger", + "cooked rice", + "dry sherry", + "greens" + ] + }, + { + "id": 8639, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "polenta", + "marinara sauce", + "grated parmesan cheese", + "wild mushrooms", + "sausage casings", + "dry red wine" + ] + }, + { + "id": 48495, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "artichokes", + "smoked paprika", + "chicken stock", + "rabbit", + "medium-grain rice", + "tomatoes", + "extra-virgin olive oil", + "garlic cloves", + "saffron threads", + "lemon", + "salt", + "red bell pepper" + ] + }, + { + "id": 8294, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "chicken", + "vegetables", + "garlic", + "teriyaki sauce", + "ramen noodles", + "corn starch" + ] + }, + { + "id": 23260, + "cuisine": "italian", + "ingredients": [ + "pepper", + "low sodium chicken broth", + "salt", + "dried oregano", + "fettucine", + "dried basil", + "heavy cream", + "corn starch", + "minced garlic", + "boneless skinless chicken breasts", + "all-purpose flour", + "low-fat milk", + "fresh spinach", + "grated parmesan cheese", + "extra-virgin olive oil", + "red bell pepper" + ] + }, + { + "id": 37955, + "cuisine": "british", + "ingredients": [ + "apples", + "chopped walnuts", + "cream cheese", + "stilton" + ] + }, + { + "id": 21596, + "cuisine": "cajun_creole", + "ingredients": [ + "italian style seasoning", + "boneless skinless chicken breast halves", + "cajun seasoning", + "vegetable oil", + "garlic powder", + "lemon pepper" + ] + }, + { + "id": 32199, + "cuisine": "irish", + "ingredients": [ + "eggs", + "heavy whipping cream", + "coffee granules", + "sweetened condensed milk", + "almond extract", + "chocolate syrup", + "whiskey" + ] + }, + { + "id": 39460, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "curry powder", + "sesame oil", + "sauce", + "chicken", + "soy sauce", + "low sodium chicken broth", + "salt", + "coconut milk", + "sugar", + "fresh ginger", + "crushed red pepper", + "creamy peanut butter", + "pepper", + "boneless skinless chicken breasts", + "rice vinegar", + "chopped cilantro fresh" + ] + }, + { + "id": 43765, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "white wine vinegar", + "olive oil", + "shallots", + "wild mushrooms", + "dried porcini mushrooms", + "veal cutlets", + "hot water", + "mushrooms", + "whipping cream" + ] + }, + { + "id": 25128, + "cuisine": "southern_us", + "ingredients": [ + "molasses", + "chopped onion", + "collard greens", + "salt and ground black pepper", + "olive oil", + "flavoring", + "brown sugar", + "garlic" + ] + }, + { + "id": 30571, + "cuisine": "mexican", + "ingredients": [ + "Mazola Corn Oil", + "Spice Islands® Minced Garlic", + "boneless skinless chicken breasts", + "plum tomatoes", + "chicken broth", + "chipotles in adobo", + "chopped onion" + ] + }, + { + "id": 135, + "cuisine": "moroccan", + "ingredients": [ + "slivered almonds", + "dried apricot", + "pitted prunes", + "wine", + "salt", + "white grape juice", + "cinnamon", + "shelled pistachios", + "figs", + "pitted date", + "walnuts" + ] + }, + { + "id": 36468, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "finely chopped onion", + "salt", + "ground cumin", + "fresh cilantro", + "tomatillos", + "garlic cloves", + "water", + "flour tortillas", + "oil", + "chopped green chilies", + "boneless beef chuck roast", + "canola oil" + ] + }, + { + "id": 21915, + "cuisine": "french", + "ingredients": [ + "green bell pepper", + "dijon mustard", + "purple onion", + "kidney", + "olive oil", + "yellow bell pepper", + "cucumber", + "romano cheese", + "red cabbage", + "whole kernel corn, drain", + "red potato", + "salt and ground black pepper", + "garlic", + "red bell pepper" + ] + }, + { + "id": 32676, + "cuisine": "brazilian", + "ingredients": [ + "ground black pepper", + "bay leaves", + "salt", + "black beans", + "lean bacon", + "garlic", + "pork shoulder", + "pork", + "beef", + "pork tongue", + "oil", + "water", + "pork ribs", + "smoked sausage", + "onions" + ] + }, + { + "id": 38506, + "cuisine": "southern_us", + "ingredients": [ + "warm water", + "butter", + "eggs", + "milk", + "peach pie filling", + "yellow cake mix", + "all-purpose flour", + "powdered sugar", + "active dry yeast" + ] + }, + { + "id": 2188, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "ricotta cheese", + "fat", + "large eggs", + "cheese", + "onions", + "egg roll wrappers", + "butter", + "fat skimmed chicken broth", + "tomato cream sauce", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 39536, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "soy sauce", + "peanuts", + "vegetable oil", + "beansprouts", + "fish sauce", + "lime juice", + "green onions", + "garlic", + "eggs", + "white pepper", + "vinegar", + "ginger", + "shrimp shells", + "brown sugar", + "fresh cilantro", + "rice noodles", + "cayenne pepper" + ] + }, + { + "id": 26078, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "fresh basil", + "part-skim ricotta cheese", + "eggs", + "grated parmesan cheese", + "gyoza", + "garlic cloves" + ] + }, + { + "id": 19454, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "red wine", + "green pepper", + "ground beef", + "honey", + "basil", + "freshly ground pepper", + "onions", + "mushrooms", + "salt", + "celery", + "grated parmesan cheese", + "garlic", + "italian pork sausage", + "oregano" + ] + }, + { + "id": 21928, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "corn starch", + "wine", + "water", + "oil", + "white pepper", + "ginger", + "bok choy", + "sugar", + "boneless skinless chicken breasts", + "oyster sauce" + ] + }, + { + "id": 41426, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "kidney beans", + "diced tomatoes", + "corn bread", + "kosher salt", + "bell pepper", + "ground beef", + "ground cumin", + "black pepper", + "lager beer", + "sour cream", + "chopped garlic", + "olive oil", + "chili powder", + "onions" + ] + }, + { + "id": 6664, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "freshly ground pepper", + "salt", + "tomatoes", + "fresh oregano", + "olive oil" + ] + }, + { + "id": 33994, + "cuisine": "italian", + "ingredients": [ + "fine sea salt", + "fresh basil leaves", + "extra-virgin olive oil", + "toasted walnuts", + "cheese", + "balsamic reduction", + "strawberries" + ] + }, + { + "id": 31154, + "cuisine": "chinese", + "ingredients": [ + "flour", + "sesame oil", + "green onions", + "warm water", + "oil" + ] + }, + { + "id": 45408, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "oil", + "cheddar cheese", + "cilantro", + "toasted sesame seeds", + "basil", + "onions", + "jack", + "salsa", + "chicken" + ] + }, + { + "id": 7232, + "cuisine": "chinese", + "ingredients": [ + "caster sugar", + "milk", + "water", + "sesame", + "rice flour" + ] + }, + { + "id": 8818, + "cuisine": "british", + "ingredients": [ + "sugar", + "large eggs", + "salt", + "oat flour", + "buttermilk", + "bread flour", + "semolina", + "cinnamon", + "softened butter", + "instant yeast", + "raisins" + ] + }, + { + "id": 46701, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "cheese", + "sour cream", + "fresh chives", + "potatoes", + "scallions", + "green bell pepper", + "large eggs", + "salt", + "pepper", + "large garlic cloves", + "red bell pepper" + ] + }, + { + "id": 37080, + "cuisine": "indian", + "ingredients": [ + "lime rind", + "chopped fresh mint", + "purple onion", + "kosher salt", + "chopped cilantro fresh", + "tomatoes", + "fresh lime juice" + ] + }, + { + "id": 21406, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "crushed red pepper flakes", + "tomato sauce", + "chili powder", + "white sugar", + "water", + "salt", + "ketchup", + "lean ground beef" + ] + }, + { + "id": 5648, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "grated parmesan cheese", + "fennel bulb", + "oil", + "fontina cheese", + "large eggs", + "garlic cloves", + "olive oil", + "mushrooms" + ] + }, + { + "id": 6025, + "cuisine": "italian", + "ingredients": [ + "peperoncino", + "artichokes", + "sea salt", + "garlic cloves", + "lemon", + "chopped onion", + "pecorino cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 7145, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated lemon peel", + "fresh basil", + "pizza doughs", + "cherry tomatoes", + "soft fresh goat cheese", + "whole milk ricotta cheese" + ] + }, + { + "id": 47653, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "cooked chicken", + "garlic", + "tomatoes", + "frozen whole kernel corn", + "dri oregano leaves, crush", + "corn tortillas", + "olive oil", + "vegetable oil", + "chop green chilies, undrain", + "water", + "zucchini", + "knorr tomato bouillon with chicken flavor", + "onions" + ] + }, + { + "id": 18713, + "cuisine": "italian", + "ingredients": [ + "water", + "white wine vinegar", + "toasted pine nuts", + "brown sugar", + "cooking spray", + "calimyrna figs", + "chopped parsley", + "eggplant", + "crushed red pepper", + "fresh lemon juice", + "kosher salt", + "shallots", + "garlic cloves" + ] + }, + { + "id": 5199, + "cuisine": "southern_us", + "ingredients": [ + "dried tarragon leaves", + "unsalted butter", + "cake flour", + "celery", + "milk", + "baking powder", + "yellow onion", + "dried oregano", + "kosher salt", + "potatoes", + "all-purpose flour", + "fresh parsley", + "chicken stock", + "ground black pepper", + "fresh thyme leaves", + "carrots", + "chicken" + ] + }, + { + "id": 41155, + "cuisine": "italian", + "ingredients": [ + "butter", + "yeast", + "all-purpose flour", + "salt", + "sugar", + "beer" + ] + }, + { + "id": 7480, + "cuisine": "mexican", + "ingredients": [ + "enchilada sauce", + "chopped onion", + "chicken", + "tortillas", + "sour cream", + "shredded cheese" + ] + }, + { + "id": 39504, + "cuisine": "french", + "ingredients": [ + "sugar", + "egg yolks", + "ground black pepper", + "roquefort cheese", + "whipping cream" + ] + }, + { + "id": 10726, + "cuisine": "irish", + "ingredients": [ + "bouillon cube", + "cream cheese", + "kosher salt", + "yukon gold potatoes", + "cabbage", + "black pepper", + "cooking spray", + "garlic cloves", + "fat free milk", + "non-fat sour cream" + ] + }, + { + "id": 39467, + "cuisine": "southern_us", + "ingredients": [ + "tasso", + "all-purpose flour", + "water", + "dry bread crumbs", + "unsalted butter", + "oil", + "large eggs", + "grits" + ] + }, + { + "id": 49229, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "italian seasoning", + "green bell pepper", + "Italian turkey sausage", + "ground fennel", + "low-fat cheese", + "cooked brown rice", + "onions" + ] + }, + { + "id": 45976, + "cuisine": "italian", + "ingredients": [ + "fresh tomatoes", + "Alfredo sauce", + "white wine", + "refrigerated four cheese ravioli", + "fresh basil", + "grated parmesan cheese" + ] + }, + { + "id": 15068, + "cuisine": "thai", + "ingredients": [ + "eggs", + "olive oil", + "garlic cloves", + "tofu", + "lime", + "rice noodles", + "onions", + "soy sauce", + "fish broth", + "beansprouts", + "sugar", + "peanuts", + "shrimp" + ] + }, + { + "id": 35791, + "cuisine": "italian", + "ingredients": [ + "garlic cloves", + "french bread", + "butter", + "grated parmesan cheese", + "fresh parsley" + ] + }, + { + "id": 28927, + "cuisine": "mexican", + "ingredients": [ + "panko", + "queso fresco", + "jack cheese", + "flour", + "large eggs", + "chopped cilantro", + "salsa verde", + "vegetable oil" + ] + }, + { + "id": 11761, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "shiitake", + "garlic", + "oil", + "cold water", + "soy sauce", + "balsamic vinegar", + "chili sauce", + "bamboo shoots", + "brown sugar", + "green onions", + "rice vinegar", + "corn starch", + "chicken broth", + "white pepper", + "ginger", + "firm tofu" + ] + }, + { + "id": 48922, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "water", + "extra light olive oil", + "long-grain rice", + "white flour", + "bay leaves", + "cayenne pepper", + "celery", + "green bell pepper", + "fresh thyme", + "garlic", + "shrimp", + "white onion", + "green onions", + "okra", + "fresh parsley" + ] + }, + { + "id": 20658, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "grated lemon zest", + "sourdough bread", + "purple onion", + "canola mayonnaise", + "fennel seeds", + "center cut bacon", + "albacore tuna in water", + "cooking spray", + "provolone cheese" + ] + }, + { + "id": 27426, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "salsa", + "jalapeno chilies", + "oil", + "crushed garlic", + "long-grain rice", + "salt", + "ground cumin" + ] + }, + { + "id": 4894, + "cuisine": "italian", + "ingredients": [ + "artichoke hearts", + "extra-virgin olive oil", + "lemon juice", + "grated parmesan cheese", + "whole wheat linguine", + "sliced black olives", + "garlic", + "shrimp", + "crushed red pepper flakes", + "salt" + ] + }, + { + "id": 21755, + "cuisine": "irish", + "ingredients": [ + "vegetable oil", + "cayenne pepper", + "onions", + "salt and ground black pepper", + "beef stew meat", + "carrots", + "tomato paste", + "garlic", + "beer", + "fresh thyme", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 21657, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "shallots", + "ground black pepper", + "fresh lemon juice", + "large egg yolks", + "fresh tarragon", + "unsalted butter", + "champagne vinegar" + ] + }, + { + "id": 27592, + "cuisine": "french", + "ingredients": [ + "freshly ground pepper", + "vinegar", + "olive oil", + "salt" + ] + }, + { + "id": 39316, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "fresh basil leaves", + "pecorino cheese", + "grated parmesan cheese", + "pinenuts", + "garlic cloves", + "olive oil" + ] + }, + { + "id": 442, + "cuisine": "southern_us", + "ingredients": [ + "soft-wheat flour", + "unsalted butter", + "buttermilk", + "canola oil", + "baking soda", + "baking powder", + "salt", + "sugar", + "large eggs", + "whipped cream", + "yellow corn meal", + "peaches", + "butter", + "maple syrup" + ] + }, + { + "id": 24150, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "onions", + "provolone cheese", + "tomato sauce", + "sliced mushrooms", + "frozen bread dough", + "olive oil flavored cooking spray" + ] + }, + { + "id": 21689, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "baking powder", + "fine sea salt", + "flat leaf parsley", + "dough", + "large eggs", + "all purpose unbleached flour", + "kale leaves", + "pancetta", + "ground black pepper", + "pecorino romano cheese", + "yellow onion", + "sugar", + "cake", + "garlic", + "ricotta" + ] + }, + { + "id": 1181, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "cucumber", + "brown sugar", + "bananas", + "tiger prawn", + "red chili peppers", + "cilantro leaves", + "fish sauce", + "fresh ginger root", + "fresh mint" + ] + }, + { + "id": 14886, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "whole wheat couscous", + "lemon juice", + "crushed tomatoes", + "chickpeas", + "onions", + "pitted date", + "garlic", + "chopped cilantro", + "ground ginger", + "olive oil", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 40944, + "cuisine": "spanish", + "ingredients": [ + "unsalted butter", + "onions", + "olive oil", + "yukon gold potatoes", + "ground black pepper", + "salt", + "eggs", + "grated parmesan cheese" + ] + }, + { + "id": 2456, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "water", + "salt", + "tomato sauce", + "vegetable oil", + "garlic powder", + "all-purpose flour" + ] + }, + { + "id": 39790, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lower sodium soy sauce", + "boneless skinless chicken breasts", + "english cucumber", + "chopped cilantro fresh", + "chile paste", + "peeled fresh ginger", + "unsalted dry roast peanuts", + "carrots", + "fresh basil", + "rice sticks", + "green onions", + "rice vinegar", + "fresh lime juice", + "brown sugar", + "cooking spray", + "lime wedges", + "garlic cloves" + ] + }, + { + "id": 5194, + "cuisine": "southern_us", + "ingredients": [ + "water", + "garlic", + "shrimp", + "butter", + "salt", + "grits", + "green onions", + "shredded sharp cheddar cheese", + "fresh parsley", + "pepper", + "bacon", + "lemon juice" + ] + }, + { + "id": 23398, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "peanuts", + "garlic", + "corn starch", + "chicken broth", + "black pepper", + "vegetable oil", + "scallions", + "chicken", + "white vinegar", + "soy sauce", + "sesame oil", + "hot chili sauce", + "onions", + "red chili peppers", + "sherry", + "salt", + "red bell pepper" + ] + }, + { + "id": 30608, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "water", + "yoghurt", + "cumin seed", + "ground turmeric", + "garlic paste", + "finely chopped onion", + "salt", + "mustard seeds", + "curry leaves", + "baking soda", + "chili powder", + "oil", + "red chili peppers", + "mint leaves", + "green chilies", + "coriander" + ] + }, + { + "id": 26057, + "cuisine": "greek", + "ingredients": [ + "boneless chicken breast halves", + "grape tomatoes", + "kalamata", + "capers", + "coarse salt", + "olive oil", + "freshly ground pepper" + ] + }, + { + "id": 1940, + "cuisine": "thai", + "ingredients": [ + "fresh ginger root", + "minced garlic", + "sesame oil", + "fish sauce", + "rice wine", + "honey", + "white sugar" + ] + }, + { + "id": 19821, + "cuisine": "british", + "ingredients": [ + "curry powder", + "apple cider vinegar", + "yellow onion", + "granny smith apples", + "golden raisins", + "ginger", + "cayenne", + "dry mustard", + "dark brown sugar", + "pickling spices", + "green tomatoes", + "salt" + ] + }, + { + "id": 47717, + "cuisine": "spanish", + "ingredients": [ + "water", + "butter", + "carrots", + "tomato paste", + "olive oil", + "garlic", + "pepper", + "leeks", + "salt", + "cauliflower", + "milk", + "tomatoes with juice", + "cabbage" + ] + }, + { + "id": 15474, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salt", + "vegetable oil", + "garlic", + "chiles", + "cumin seed" + ] + }, + { + "id": 42187, + "cuisine": "indian", + "ingredients": [ + "oil", + "chili powder", + "ground turmeric", + "potatoes", + "mustard seeds", + "salt" + ] + }, + { + "id": 10979, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "ground cumin", + "olive oil", + "fresh lime juice", + "jalape", + "chopped cilantro fresh", + "black beans", + "low salt chicken broth" + ] + }, + { + "id": 9600, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "pizza sauce", + "canadian bacon", + "grated parmesan cheese", + "purple onion", + "pineapple chunks", + "refrigerated pizza dough", + "pepperoni", + "sliced black olives", + "crushed red pepper", + "shredded mozzarella cheese" + ] + }, + { + "id": 27478, + "cuisine": "chinese", + "ingredients": [ + "honey", + "barbecued pork", + "Chinese egg noodles", + "soy sauce", + "fresh shiitake mushrooms", + "scallions", + "chinese rice wine", + "fresh ginger", + "peanut oil", + "minced garlic", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 45256, + "cuisine": "mexican", + "ingredients": [ + "bread crumbs", + "salsa", + "eggs", + "taco seasoning mix", + "shredded cheddar cheese", + "sour cream", + "ground chicken", + "ranch dressing" + ] + }, + { + "id": 10846, + "cuisine": "cajun_creole", + "ingredients": [ + "red potato", + "paprika", + "chili powder", + "cajun seasoning", + "olive oil" + ] + }, + { + "id": 43976, + "cuisine": "indian", + "ingredients": [ + "almonds", + "raisins", + "cranberries", + "nutmeg", + "powdered milk", + "salt", + "ghee", + "cold water", + "dry coconut", + "khoa", + "ground cardamom", + "sugar", + "half & half", + "all-purpose flour", + "cashew nuts" + ] + }, + { + "id": 13150, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "large eggs", + "smoked paprika", + "kosher salt", + "ground black pepper", + "hot sauce", + "chicken", + "garlic powder", + "salt", + "panko breadcrumbs", + "honey", + "dijon mustard", + "cayenne pepper" + ] + }, + { + "id": 7488, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic cloves", + "yellow bell pepper", + "chopped cilantro fresh", + "avocado", + "salt", + "pepper", + "fresh lime juice" + ] + }, + { + "id": 14057, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "butter", + "frozen peas", + "green onions", + "garlic cloves", + "white onion", + "white rice", + "eggs", + "chicken breasts", + "carrots" + ] + }, + { + "id": 13274, + "cuisine": "mexican", + "ingredients": [ + "lime", + "mushrooms", + "black olives", + "onions", + "flour tortillas", + "cilantro", + "scallions", + "pepper jack", + "baby spinach", + "salsa", + "jalapeno chilies", + "extra-virgin olive oil", + "sour cream" + ] + }, + { + "id": 34524, + "cuisine": "italian", + "ingredients": [ + "butter", + "grated lemon peel", + "grated parmesan cheese", + "fresh lemon juice", + "orange bell pepper", + "linguine", + "peeled fresh ginger", + "carrots" + ] + }, + { + "id": 8682, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "minced onion", + "russet potatoes", + "all-purpose flour", + "oil", + "yellow corn meal", + "black pepper", + "parsley", + "paprika", + "dill", + "corn starch", + "cod", + "sugar", + "baking powder", + "buttermilk", + "cayenne pepper", + "lemon juice", + "eggs", + "baking soda", + "vegetable oil", + "salt", + "dark beer", + "garlic salt" + ] + }, + { + "id": 45540, + "cuisine": "greek", + "ingredients": [ + "unflavored gelatin", + "whole milk yoghurt", + "fresh lemon juice", + "vanilla beans", + "heavy cream", + "water", + "whole milk", + "sugar", + "lemon zest", + "apricots" + ] + }, + { + "id": 39104, + "cuisine": "french", + "ingredients": [ + "nonfat dry milk", + "nonfat evaporated milk", + "sugar", + "dark rum", + "reduced fat milk", + "large egg yolks", + "salt" + ] + }, + { + "id": 34781, + "cuisine": "french", + "ingredients": [ + "grated orange peel", + "large egg yolks", + "cream of tartar", + "white chocolate", + "Grand Marnier", + "sugar", + "whipping cream", + "powdered sugar", + "large egg whites" + ] + }, + { + "id": 9497, + "cuisine": "chinese", + "ingredients": [ + "white vinegar", + "boneless skinless chicken breasts", + "canola oil", + "soy sauce", + "scallions", + "sugar", + "garlic", + "fresh ginger", + "onions" + ] + }, + { + "id": 38934, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "red bell pepper", + "baguette", + "artichokes", + "garlic", + "prosciutto", + "provolone cheese" + ] + }, + { + "id": 17187, + "cuisine": "chinese", + "ingredients": [ + "port wine", + "light soy sauce", + "sea salt", + "runny honey", + "oil", + "rhubarb", + "juniper berries", + "fresh ginger root", + "star anise", + "dark brown sugar", + "boiling water", + "plain flour", + "cider vinegar", + "whole cloves", + "garlic", + "cumin seed", + "red chili peppers", + "coriander seeds", + "cracked black pepper", + "duck", + "onions" + ] + }, + { + "id": 8782, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "black pepper", + "shredded cabbage", + "rice vinegar", + "celery", + "pork", + "shredded carrots", + "sprouts", + "corn starch", + "sugar", + "egg roll wrappers", + "sesame oil", + "scallions", + "canola oil", + "soy sauce", + "water chestnuts", + "salt", + "beansprouts" + ] + }, + { + "id": 39112, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "ground black pepper", + "white onion", + "jalapeno chilies", + "cherry tomatoes", + "chopped cilantro fresh" + ] + }, + { + "id": 36503, + "cuisine": "irish", + "ingredients": [ + "irish cream liqueur", + "chocolate candy", + "unsweetened cocoa powder", + "unsalted butter", + "all-purpose flour", + "milk", + "heavy cream", + "powdered sugar", + "pies", + "large marshmallows" + ] + }, + { + "id": 24852, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "green onions", + "freshly ground pepper", + "lime", + "salt", + "boneless skinless chicken breast halves", + "fresh basil", + "Thai red curry paste", + "green beans", + "unsweetened coconut milk", + "steamed white rice", + "peanut oil", + "asian fish sauce" + ] + }, + { + "id": 35844, + "cuisine": "southern_us", + "ingredients": [ + "fresh basil", + "balsamic vinegar", + "pepper", + "salt", + "sugar", + "extra-virgin olive oil", + "tomatoes", + "sweet onion" + ] + }, + { + "id": 16518, + "cuisine": "russian", + "ingredients": [ + "cottage cheese", + "baking potatoes", + "unsalted butter", + "plain whole-milk yogurt", + "large eggs", + "black pepper", + "salt" + ] + }, + { + "id": 13030, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "gyoza", + "sea salt", + "garlic cloves", + "sake", + "shiitake", + "napa cabbage", + "salt", + "pepper", + "flour", + "ginger", + "ground beef", + "gyoza skins", + "zucchini", + "ground pork", + "shrimp" + ] + }, + { + "id": 3783, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "palm sugar", + "coconut milk", + "fish sauce", + "cooking oil", + "long pepper", + "boneless chicken breast", + "panang curry paste", + "thai basil", + "garlic" + ] + }, + { + "id": 9761, + "cuisine": "italian", + "ingredients": [ + "pure maple syrup", + "salt", + "yellow corn meal", + "butter", + "whole milk", + "water" + ] + }, + { + "id": 25692, + "cuisine": "thai", + "ingredients": [ + "honey", + "chives", + "garlic", + "thai jasmine rice", + "pepper", + "jalapeno chilies", + "Thai red curry paste", + "crushed red pepper", + "fish sauce", + "boneless chicken breast", + "shallots", + "sweet pepper", + "lemon juice", + "fresh cilantro", + "low sodium chicken broth", + "light coconut milk", + "salt" + ] + }, + { + "id": 34104, + "cuisine": "thai", + "ingredients": [ + "sugar", + "large eggs", + "unsalted dry roast peanuts", + "reduced fat firm tofu", + "large egg whites", + "lime wedges", + "chopped cilantro fresh", + "ketchup", + "green onions", + "corn starch", + "fish sauce", + "Sriracha", + "rice noodles", + "canola oil" + ] + }, + { + "id": 12201, + "cuisine": "southern_us", + "ingredients": [ + "broccoli slaw", + "mushrooms", + "garlic", + "dumplings", + "boneless skinless chicken breast halves", + "greek seasoning", + "dijon mustard", + "sea salt", + "cream cheese", + "Better Than Bouillon Chicken Base", + "ground black pepper", + "heavy cream", + "purple onion", + "coconut milk", + "granulated garlic", + "low sodium chicken broth", + "extra-virgin olive oil", + "xanthan gum", + "dried parsley" + ] + }, + { + "id": 3968, + "cuisine": "italian", + "ingredients": [ + "ravioli", + "cheese", + "pesto sauce", + "paprika", + "fresh basil", + "baby spinach", + "Alfredo sauce", + "vegetable broth" + ] + }, + { + "id": 32113, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "prawns", + "water spinach", + "beans", + "daikon", + "green chilies", + "sugar", + "vegetable oil", + "rice", + "tomatoes", + "tamarind", + "purple onion", + "japanese eggplants" + ] + }, + { + "id": 38367, + "cuisine": "cajun_creole", + "ingredients": [ + "cream", + "grated romano cheese", + "butter", + "nonstick spray", + "ground paprika", + "shredded cheddar cheese", + "chili powder", + "all-purpose flour", + "onions", + "crawfish", + "boneless skinless chicken breasts", + "salt", + "red bell pepper", + "green bell pepper", + "milk", + "cajun seasoning", + "okra" + ] + }, + { + "id": 14629, + "cuisine": "french", + "ingredients": [ + "fat free less sodium chicken broth", + "dry white wine", + "salt", + "dried tarragon leaves", + "olive oil", + "sliced carrots", + "rolls", + "sweet onion", + "boneless skinless chicken breasts", + "all-purpose flour", + "black pepper", + "zucchini", + "1% low-fat milk" + ] + }, + { + "id": 46760, + "cuisine": "italian", + "ingredients": [ + "shredded mozzarella cheese", + "pizza sauce", + "italian seasoning", + "refrigerated crescent rolls", + "pork sausages", + "red pepper flakes" + ] + }, + { + "id": 17500, + "cuisine": "french", + "ingredients": [ + "broccoli stems", + "sliced almonds", + "fresh lemon juice", + "unsalted butter" + ] + }, + { + "id": 49621, + "cuisine": "moroccan", + "ingredients": [ + "salt", + "chopped cilantro fresh", + "cayenne", + "ground coriander", + "unsalted butter", + "garlic cloves", + "spaghetti squash", + "ground cumin" + ] + }, + { + "id": 1722, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic", + "fillets", + "chopped cilantro fresh", + "ground black pepper", + "tequila", + "onions", + "olive oil", + "salt", + "fresh lime juice", + "jalapeno chilies", + "orange liqueur", + "white sugar" + ] + }, + { + "id": 38447, + "cuisine": "italian", + "ingredients": [ + "water", + "marinara sauce", + "freshly ground pepper", + "part-skim mozzarella cheese", + "salt", + "eggplant", + "egg whites", + "grated parmesan cheese", + "dry bread crumbs" + ] + }, + { + "id": 37967, + "cuisine": "italian", + "ingredients": [ + "red pepper flakes", + "italian tomatoes", + "fine sea salt", + "garlic", + "olive oil" + ] + }, + { + "id": 1422, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed brown sugar", + "salt", + "unsalted butter", + "double-acting baking powder", + "heavy cream", + "country ham", + "all-purpose flour" + ] + }, + { + "id": 27583, + "cuisine": "italian", + "ingredients": [ + "genoa salami", + "radishes", + "red wine vinegar", + "freshly ground pepper", + "brine-cured olives", + "dijon mustard", + "shallots", + "salt", + "flat leaf parsley", + "capers", + "boneless chicken breast halves", + "large garlic cloves", + "fresh lemon juice", + "fresh spinach", + "grated parmesan cheese", + "extra-virgin olive oil", + "red bell pepper" + ] + }, + { + "id": 27231, + "cuisine": "korean", + "ingredients": [ + "beef", + "meat" + ] + }, + { + "id": 37347, + "cuisine": "filipino", + "ingredients": [ + "coconut sugar", + "sea salt", + "boneless chicken skinless thigh", + "coconut aminos", + "ketchup", + "pineapple juice", + "tomato paste", + "garlic powder", + "oil" + ] + }, + { + "id": 23256, + "cuisine": "southern_us", + "ingredients": [ + "hamburger buns", + "bbq sauce", + "boneless skinless chicken breasts", + "bread and butter pickle slices" + ] + }, + { + "id": 13886, + "cuisine": "spanish", + "ingredients": [ + "orange", + "dry red wine", + "rum", + "white sugar", + "lime", + "orange juice", + "lemon" + ] + }, + { + "id": 40803, + "cuisine": "indian", + "ingredients": [ + "unsalted butter", + "yellow onion", + "nigella seeds", + "jalapeno chilies", + "cumin seed", + "ground turmeric", + "spices", + "lemon juice", + "cabbage", + "salt", + "carrots" + ] + }, + { + "id": 42958, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "fresh cilantro", + "butter", + "cayenne pepper", + "frozen peas", + "chili pepper", + "chili powder", + "garlic", + "onions", + "ground lamb", + "tomato sauce", + "garam masala", + "ginger", + "bay leaf", + "cumin", + "pepper", + "cinnamon", + "salt", + "coriander" + ] + }, + { + "id": 24310, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "garlic cloves", + "chees fresco queso", + "sour cream", + "olive oil", + "cilantro leaves", + "chipotles in adobo", + "coarse salt", + "tortilla chips", + "chicken" + ] + }, + { + "id": 11933, + "cuisine": "chinese", + "ingredients": [ + "globe eggplant", + "tahini", + "rice vinegar", + "light soy sauce", + "chili oil", + "toasted sesame seeds", + "kosher salt", + "sesame oil", + "scallions", + "sugar", + "olive oil", + "garlic", + "japanese eggplants" + ] + }, + { + "id": 42515, + "cuisine": "chinese", + "ingredients": [ + "honey", + "boneless skinless chicken breast halves", + "sesame oil", + "fresh ginger root", + "soy sauce", + "garlic" + ] + }, + { + "id": 24938, + "cuisine": "mexican", + "ingredients": [ + "water", + "chili powder", + "peanut oil", + "oregano", + "flour", + "diced tomatoes", + "chopped cilantro", + "chuck", + "jalapeno chilies", + "Mexican beer", + "bay leaf", + "cumin", + "serrano peppers", + "garlic", + "onions" + ] + }, + { + "id": 43735, + "cuisine": "italian", + "ingredients": [ + "white wine", + "olive oil", + "cajun seasoning", + "medium shrimp", + "pepper", + "fresh pasta", + "salt", + "milk", + "grated parmesan cheese", + "sour cream", + "scallops", + "orange bell pepper", + "yellow bell pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 29516, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "extra-virgin olive oil", + "red bell pepper", + "mozzarella cheese", + "bell pepper", + "walnuts", + "angel hair", + "fresh thyme", + "salt", + "pepper", + "leeks", + "garlic cloves" + ] + }, + { + "id": 35076, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "flour tortillas", + "milk", + "ground beef", + "shredded cheddar cheese", + "condensed cream of mushroom soup", + "refried beans" + ] + }, + { + "id": 17084, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "pepper", + "baby spinach", + "garlic", + "red bell pepper", + "cheddar cheese", + "quinoa", + "cilantro", + "salt", + "cumin", + "green bell pepper", + "lime", + "diced tomatoes", + "purple onion", + "oregano", + "black beans", + "chili powder", + "yellow bell pepper", + "cayenne pepper" + ] + }, + { + "id": 23679, + "cuisine": "moroccan", + "ingredients": [ + "eggs", + "milk", + "butter", + "warm water", + "honey", + "all-purpose flour", + "sugar", + "active dry yeast", + "salt", + "water", + "semolina", + "canola oil" + ] + }, + { + "id": 6713, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "finely chopped onion", + "vegetable oil", + "crushed red pepper", + "salsa verde", + "chili powder", + "empanada", + "garlic cloves", + "olive oil", + "golden raisins", + "red wine vinegar", + "salt", + "poblano peppers", + "lean ground beef", + "diced tomatoes", + "dried oregano" + ] + }, + { + "id": 31342, + "cuisine": "thai", + "ingredients": [ + "boneless, skinless chicken breast", + "red pepper flakes", + "red chili peppers", + "cooking oil", + "onions", + "sugar", + "water", + "garlic", + "soy sauce", + "basil leaves", + "asian fish sauce" + ] + }, + { + "id": 31400, + "cuisine": "mexican", + "ingredients": [ + "lean ground pork", + "large eggs", + "diced tomatoes", + "chopped fresh mint", + "water", + "Mexican oregano", + "fine sea salt", + "white sandwich bread", + "tomatoes", + "ground black pepper", + "lean ground beef", + "garlic cloves", + "canola oil", + "white onion", + "whole milk", + "white rice", + "serrano chile" + ] + }, + { + "id": 14029, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "sour cream", + "cheddar cheese", + "cream cheese", + "cumin", + "sauce", + "corn tortillas", + "corn", + "green chilies", + "chicken" + ] + }, + { + "id": 15209, + "cuisine": "filipino", + "ingredients": [ + "tomato sauce", + "ground black pepper", + "hard-boiled egg", + "garlic", + "calamansi", + "soy sauce", + "pork liver", + "raisins", + "carrots", + "onions", + "sugar", + "cooking oil", + "hot dogs", + "liver", + "pork shoulder", + "water", + "potatoes", + "cheese", + "red bell pepper" + ] + }, + { + "id": 35889, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "garlic cloves", + "pasta sauce", + "extra-virgin olive oil", + "dried tomatoes", + "noodles", + "pitted kalamata olives", + "italian pork sausage" + ] + }, + { + "id": 3499, + "cuisine": "italian", + "ingredients": [ + "italian plum tomatoes", + "Swanson Chicken Broth", + "red pepper", + "sweet italian pork sausage", + "dri oregano leaves, crush", + "fennel bulb", + "polenta" + ] + }, + { + "id": 32795, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "orange", + "apple cider vinegar", + "yellow onion", + "olives", + "pepper", + "red cabbage", + "red pepper flakes", + "corn tortillas", + "kosher salt", + "lime", + "cod fish", + "carrots", + "dried oregano", + "green cabbage", + "water", + "guacamole", + "salt", + "chipotle salsa" + ] + }, + { + "id": 597, + "cuisine": "mexican", + "ingredients": [ + "ancho", + "garlic powder", + "whole wheat tortillas", + "red bell pepper", + "lime juice", + "guacamole", + "salt", + "ground cumin", + "pepper", + "poblano peppers", + "reduced-fat sour cream", + "onions", + "olive oil", + "boneless skinless chicken breasts", + "Mexican cheese" + ] + }, + { + "id": 10495, + "cuisine": "southern_us", + "ingredients": [ + "whole wheat flour", + "salt", + "butter", + "apple butter", + "baking soda", + "all-purpose flour", + "sugar", + "buttermilk" + ] + }, + { + "id": 41658, + "cuisine": "southern_us", + "ingredients": [ + "orange", + "sugar", + "lemon", + "lime", + "water" + ] + }, + { + "id": 25146, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "cayenne pepper", + "eggs", + "butter", + "milk", + "elbow macaroni", + "bread crumb fresh", + "salt" + ] + }, + { + "id": 17097, + "cuisine": "chinese", + "ingredients": [ + "lo mein noodles", + "large garlic cloves", + "carrots", + "chicken broth", + "sesame oil", + "salt", + "green onions", + "dry sherry", + "soy sauce", + "loin pork roast", + "oyster sauce" + ] + }, + { + "id": 7819, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "garlic", + "plum tomatoes", + "red pepper flakes", + "bow-tie pasta", + "olive oil", + "salt", + "diced onions", + "heavy cream", + "fresh parsley" + ] + }, + { + "id": 41478, + "cuisine": "vietnamese", + "ingredients": [ + "pork belly", + "egg roll wrappers", + "vegetable oil", + "pork shoulder boston butt", + "fish sauce", + "lemongrass", + "herbs", + "chinese five-spice powder", + "mung bean sprouts", + "sugar", + "lime", + "shallots", + "garlic cloves", + "wide rice noodles", + "kosher salt", + "reduced sodium soy sauce", + "hot chili paste", + "fresno chiles" + ] + }, + { + "id": 11517, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "green leaf lettuce", + "scallions", + "hoisin sauce", + "ginger", + "duck drumsticks", + "dark soy sauce", + "Shaoxing wine", + "garlic", + "honey", + "sea salt", + "chinese five-spice powder" + ] + }, + { + "id": 44322, + "cuisine": "greek", + "ingredients": [ + "salt", + "pepper", + "fresh lemon juice", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 22903, + "cuisine": "vietnamese", + "ingredients": [ + "superfine sugar", + "yukon gold potatoes", + "taro", + "firm tofu", + "seasoning salt", + "salt", + "jasmine rice", + "jicama", + "canola oil" + ] + }, + { + "id": 33858, + "cuisine": "mexican", + "ingredients": [ + "guajillo chiles", + "pork shoulder boston butt", + "lager", + "kosher salt", + "garlic cloves" + ] + }, + { + "id": 20090, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "low-sodium fat-free chicken broth", + "chopped fresh sage", + "olive oil", + "chicken breast halves", + "salt", + "celery ribs", + "minced onion", + "apple cider", + "freshly ground pepper", + "fresh sage", + "dry white wine", + "orzo", + "garlic cloves" + ] + }, + { + "id": 4496, + "cuisine": "italian", + "ingredients": [ + "honey", + "red wine", + "water", + "all-purpose flour", + "vegetable oil" + ] + }, + { + "id": 26058, + "cuisine": "french", + "ingredients": [ + "yukon gold potatoes", + "peppercorns", + "foie gras", + "fleur de sel" + ] + }, + { + "id": 44425, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "ground red pepper", + "fresh lime juice", + "ground cumin", + "jalapeno chilies", + "garlic cloves", + "skirt steak", + "diced onions", + "cooking spray", + "corn tortillas", + "plum tomatoes", + "kosher salt", + "lime wedges", + "chopped cilantro fresh" + ] + }, + { + "id": 35819, + "cuisine": "french", + "ingredients": [ + "fresh lemon juice", + "artichokes" + ] + }, + { + "id": 46616, + "cuisine": "southern_us", + "ingredients": [ + "pimentos", + "white sugar", + "sweet pickle relish", + "salad dressing", + "sweet pickle juice", + "cream cheese", + "shredded mild cheddar cheese", + "garlic salt" + ] + }, + { + "id": 18947, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "lime", + "apple cider vinegar", + "chipotles in adobo", + "water", + "chuck roast", + "salt", + "cumin", + "jasmine rice", + "ground black pepper", + "butter", + "oregano", + "chicken broth", + "fresh cilantro", + "bay leaves", + "garlic cloves" + ] + }, + { + "id": 11880, + "cuisine": "indian", + "ingredients": [ + "flour", + "salt", + "onions", + "curry leaves", + "seeds", + "oil", + "ajwain", + "ginger", + "corn flour", + "mint leaves", + "green chilies" + ] + }, + { + "id": 34938, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "butter", + "sausages", + "flour", + "salt", + "baking soda", + "red pepper flakes", + "white sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 10809, + "cuisine": "italian", + "ingredients": [ + "black peppercorns", + "flat leaf parsley", + "pecorino romano cheese", + "whole wheat spaghetti", + "extra-virgin olive oil" + ] + }, + { + "id": 49516, + "cuisine": "italian", + "ingredients": [ + "dinner rolls", + "italian seasoning", + "sea salt", + "butter", + "dried parsley" + ] + }, + { + "id": 27917, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "pizza sauce", + "salt", + "shredded mozzarella cheese", + "mozzarella cheese", + "italian style seasoning", + "stewed tomatoes", + "chopped onion", + "ground beef", + "garlic powder", + "dried sage", + "black olives", + "fresh mushrooms", + "eggs", + "chopped green bell pepper", + "ground pork", + "dry bread crumbs", + "sausages" + ] + }, + { + "id": 15172, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh basil", + "salt", + "pepper", + "garlic cloves", + "tomatoes", + "shallots" + ] + }, + { + "id": 19591, + "cuisine": "italian", + "ingredients": [ + "finely chopped onion", + "lemon rind", + "prosciutto", + "green peas", + "fresh lemon juice", + "fat free less sodium chicken broth", + "cooking spray", + "garlic cloves", + "ground black pepper", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 7858, + "cuisine": "mexican", + "ingredients": [ + "cooked rice", + "taco seasoning", + "veggies", + "sour cream", + "beans", + "shredded cheese", + "salsa" + ] + }, + { + "id": 44027, + "cuisine": "mexican", + "ingredients": [ + "cold water", + "baking soda", + "salt", + "confectioners sugar", + "cocoa", + "cinnamon", + "strawberries", + "unsweetened cocoa powder", + "sugar", + "balsamic vinegar", + "all-purpose flour", + "canola oil", + "water", + "vanilla extract", + "cayenne pepper" + ] + }, + { + "id": 34717, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "heavy cream", + "parmigiano reggiano cheese", + "fettucine" + ] + }, + { + "id": 14370, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "boneless skinless chicken breasts", + "greek style plain yogurt", + "flatbread", + "seasoning salt", + "purple onion", + "dill weed", + "greek seasoning", + "pepper", + "romaine lettuce leaves", + "cucumber", + "grape tomatoes", + "feta cheese", + "salt" + ] + }, + { + "id": 16816, + "cuisine": "italian", + "ingredients": [ + "green onions", + "fresh lime juice", + "baguette", + "brie cheese", + "peaches", + "red bell pepper", + "sugar", + "ground red pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 45925, + "cuisine": "greek", + "ingredients": [ + "cherry tomatoes", + "sea salt", + "feta cheese crumbles", + "butter", + "orzo", + "freshly grated parmesan", + "cracked black pepper", + "fresh parsley", + "chicken broth", + "lemon", + "garlic" + ] + }, + { + "id": 13699, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "pork liver", + "cayenne pepper", + "poblano chiles", + "celery ribs", + "panko", + "chili powder", + "garlic cloves", + "cooked white rice", + "curing salt", + "jalapeno chilies", + "scallions", + "chopped parsley", + "boneless pork shoulder", + "ground black pepper", + "vegetable oil", + "ground white pepper", + "onions" + ] + }, + { + "id": 4235, + "cuisine": "moroccan", + "ingredients": [ + "bread", + "water", + "lemon", + "sugar", + "butter", + "eggs", + "granulated sugar", + "orange flower water", + "vanilla essence", + "baking powder", + "ground almonds" + ] + }, + { + "id": 22166, + "cuisine": "italian", + "ingredients": [ + "pesto", + "salt", + "parmigiano reggiano cheese", + "linguine", + "pepper" + ] + }, + { + "id": 6269, + "cuisine": "indian", + "ingredients": [ + "cheese", + "whole milk", + "lemon juice" + ] + }, + { + "id": 20504, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "taco seasoning mix", + "instant rice", + "sour cream", + "tomato sauce", + "black olives", + "shredded cheddar cheese" + ] + }, + { + "id": 41881, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "wasabi powder", + "toasted sesame seeds", + "avocado", + "reduced sodium soy sauce", + "english cucumber", + "pepper", + "white rice", + "nori", + "salmon fillets", + "green onions", + "toasted sesame oil" + ] + }, + { + "id": 37985, + "cuisine": "russian", + "ingredients": [ + "vegetables", + "dill tips", + "sour cream", + "green cabbage", + "potatoes", + "garlic cloves", + "beef", + "beets", + "onions", + "tomato paste", + "salt", + "carrots" + ] + }, + { + "id": 48561, + "cuisine": "southern_us", + "ingredients": [ + "cornbread", + "salt", + "large eggs", + "pure maple syrup", + "half & half" + ] + }, + { + "id": 35077, + "cuisine": "italian", + "ingredients": [ + "bread", + "brown mustard", + "shredded mozzarella cheese", + "broccoli florets", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 28460, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "ice water", + "all-purpose flour", + "dried porcini mushrooms", + "large eggs", + "whipping cream", + "cognac", + "water", + "crimini mushrooms", + "cheese", + "chopped fresh herbs", + "large egg yolks", + "shallots", + "salt" + ] + }, + { + "id": 37399, + "cuisine": "southern_us", + "ingredients": [ + "bread crumbs", + "parmesan cheese", + "salt", + "fresh parsley", + "sweet onion", + "chopped fresh chives", + "garlic cloves", + "yellow squash", + "butter", + "sour cream", + "shredded cheddar cheese", + "large eggs", + "freshly ground pepper", + "garlic salt" + ] + }, + { + "id": 49127, + "cuisine": "spanish", + "ingredients": [ + "cooking spray", + "spanish paprika", + "fresh parsley", + "fat free less sodium chicken broth", + "chopped onion", + "turkey breast", + "arborio rice", + "diced tomatoes", + "red bell pepper", + "chorizo sausage", + "saffron threads", + "dry white wine", + "garlic cloves", + "frozen peas" + ] + }, + { + "id": 35758, + "cuisine": "vietnamese", + "ingredients": [ + "romaine lettuce", + "minced garlic", + "hoisin sauce", + "dark sesame oil", + "black pepper", + "radishes", + "cilantro leaves", + "carrots", + "sugar", + "lower sodium soy sauce", + "chicken cutlets", + "english cucumber", + "baguette", + "Sriracha", + "rice vinegar", + "canola oil" + ] + }, + { + "id": 38376, + "cuisine": "southern_us", + "ingredients": [ + "dark molasses", + "powdered milk", + "bread flour", + "rolled oats", + "salt", + "warm water", + "butter", + "instant yeast", + "white sugar" + ] + }, + { + "id": 42605, + "cuisine": "italian", + "ingredients": [ + "ground round", + "chili powder", + "white kidney beans", + "lasagna noodles", + "tomato salsa", + "jack cheese", + "ricotta cheese", + "large eggs", + "sour cream" + ] + }, + { + "id": 23651, + "cuisine": "greek", + "ingredients": [ + "baby spinach leaves", + "tortellini", + "lemon juice", + "large eggs", + "purple onion", + "chopped parsley", + "red wine vinegar", + "salt", + "dried oregano", + "fresh cheese", + "extra-virgin olive oil", + "feta cheese crumbles" + ] + }, + { + "id": 49433, + "cuisine": "spanish", + "ingredients": [ + "chorizo", + "unsalted butter", + "paprika", + "black pepper", + "sun-dried tomatoes", + "half & half", + "scallions", + "kosher salt", + "manchego cheese", + "russet potatoes", + "corn starch", + "olive oil", + "large eggs", + "purple onion" + ] + }, + { + "id": 47236, + "cuisine": "french", + "ingredients": [ + "pepper", + "beef stock", + "fresh parsley leaves", + "wide egg noodles", + "butter", + "white mushrooms", + "fresh chives", + "flour", + "salt", + "sage", + "sirloin", + "pearl onions", + "bacon", + "Burgundy wine" + ] + }, + { + "id": 14280, + "cuisine": "moroccan", + "ingredients": [ + "fronds", + "raisins", + "chopped cilantro", + "saffron threads", + "almonds", + "extra-virgin olive oil", + "chervil", + "fennel bulb", + "garlic cloves", + "coriander seeds", + "fresh orange juice", + "grated orange" + ] + }, + { + "id": 20031, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "green peas", + "fettucine", + "asparagus", + "fresh asparagus", + "prosciutto", + "fresh mushrooms", + "white wine", + "vegetable oil" + ] + }, + { + "id": 42915, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "grits", + "old bay seasoning", + "butter", + "large shrimp", + "pepper", + "salt" + ] + }, + { + "id": 1021, + "cuisine": "korean", + "ingredients": [ + "light brown sugar", + "fresh ginger", + "scallions", + "minced garlic", + "crushed red pepper flakes", + "asian fish sauce", + "kosher salt", + "napa cabbage", + "shrimp", + "chile powder", + "lime juice", + "hot smoked paprika" + ] + }, + { + "id": 39977, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "grated parmesan cheese", + "whipped cream cheese", + "evaporated milk", + "vegetable oil", + "sliced mushrooms", + "fettucine", + "boneless skinless chicken breasts", + "all-purpose flour", + "ground black pepper", + "garlic", + "fresh parsley" + ] + }, + { + "id": 44552, + "cuisine": "french", + "ingredients": [ + "frozen spinach", + "refrigerated piecrusts", + "pepper", + "swiss cheese", + "eggs" + ] + }, + { + "id": 15848, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "maple syrup", + "onions", + "bourbon whiskey", + "roasted garlic", + "bacon", + "dark brown sugar", + "brewed coffee", + "jam" + ] + }, + { + "id": 41479, + "cuisine": "british", + "ingredients": [ + "eggs", + "egg whites", + "kosher salt", + "all-purpose flour", + "rosemary sprigs", + "vegetable oil", + "strip loin", + "milk", + "freshly ground pepper" + ] + }, + { + "id": 8243, + "cuisine": "thai", + "ingredients": [ + "fillet red snapper", + "shiitake", + "hellmann' or best food real mayonnais", + "water", + "garlic", + "coconut milk", + "chili pepper", + "vegetable oil", + "red bell pepper", + "fresh ginger", + "knorr chicken flavor bouillon", + "onions" + ] + }, + { + "id": 29213, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "ricotta", + "part-skim mozzarella", + "garlic", + "dried oregano", + "grated parmesan cheese", + "frozen chopped spinach, thawed and squeezed dry", + "crushed tomatoes", + "salt" + ] + }, + { + "id": 22939, + "cuisine": "filipino", + "ingredients": [ + "bread crumbs", + "ground black pepper", + "white vinegar", + "minced garlic", + "vegetable oil", + "brown sugar", + "water", + "yellow onion", + "kosher salt", + "pork liver" + ] + }, + { + "id": 24010, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cooking spray", + "fresh parsley", + "black pepper", + "zucchini", + "dry bread crumbs", + "finely chopped onion", + "salt", + "plum tomatoes", + "pinenuts", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 30194, + "cuisine": "mexican", + "ingredients": [ + "crema mexican", + "corn tortillas", + "fresh cilantro", + "bacon", + "cumin", + "cotija", + "chili powder", + "garlic salt", + "red cabbage", + "steak" + ] + }, + { + "id": 17493, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "salt", + "mustard seeds", + "fresh curry leaves", + "potatoes", + "cumin seed", + "ground turmeric", + "cauliflower", + "coriander powder", + "cilantro leaves", + "onions", + "pepper", + "chili powder", + "oil" + ] + }, + { + "id": 6250, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "green onions", + "green chilies", + "hoisin sauce", + "ginger", + "soy sauce", + "chinese eggplants", + "corn starch", + "green bell pepper", + "Shaoxing wine", + "garlic" + ] + }, + { + "id": 42684, + "cuisine": "japanese", + "ingredients": [ + "salt", + "soy sauce", + "rice vinegar", + "stevia", + "ginger", + "cucumber" + ] + }, + { + "id": 17362, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "jalapeno chilies", + "cayenne pepper", + "onions", + "tomato sauce", + "ground cashew", + "garlic", + "red bell pepper", + "green bell pepper", + "fresh ginger root", + "vegetable oil", + "carrots", + "frozen peas", + "curry powder", + "potatoes", + "salt", + "coconut milk" + ] + }, + { + "id": 36703, + "cuisine": "mexican", + "ingredients": [ + "red chili peppers", + "extra-virgin olive oil", + "red bell pepper", + "coriander seeds", + "dry bread crumbs", + "chopped cilantro fresh", + "honey", + "salt", + "fresh lime juice", + "cracked black pepper", + "boneless pork loin" + ] + }, + { + "id": 5547, + "cuisine": "irish", + "ingredients": [ + "butter", + "plain flour", + "mashed potatoes", + "salt" + ] + }, + { + "id": 2454, + "cuisine": "moroccan", + "ingredients": [ + "water", + "meyer lemon", + "lemon", + "salt" + ] + }, + { + "id": 42243, + "cuisine": "french", + "ingredients": [ + "eggs", + "lemon juice", + "mayonaise", + "fresh parsley", + "artichoke hearts", + "fresh asparagus", + "french dressing", + "cooked shrimp" + ] + }, + { + "id": 17829, + "cuisine": "mexican", + "ingredients": [ + "water", + "firmly packed light brown sugar", + "butter", + "ground cinnamon", + "flour tortillas", + "sugar", + "fruit filling" + ] + }, + { + "id": 16698, + "cuisine": "southern_us", + "ingredients": [ + "dry white wine", + "garlic cloves", + "flat leaf parsley", + "white onion", + "all-purpose flour", + "red bell pepper", + "less sodium chicken broth", + "andouille sausage", + "extra-virgin olive oil", + "shrimp", + "grits", + "bay leaves", + "creole seasoning", + "heavy whipping cream" + ] + }, + { + "id": 40637, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "onion powder", + "garlic powder", + "lime juice", + "salsa" + ] + }, + { + "id": 13214, + "cuisine": "french", + "ingredients": [ + "herbs", + "salt", + "pepper", + "parsley", + "eggs", + "flour", + "oil", + "olive oil", + "canned snails" + ] + }, + { + "id": 16736, + "cuisine": "mexican", + "ingredients": [ + "neutral oil", + "jalapeno chilies", + "jasmine rice", + "cilantro", + "white onion", + "coarse salt", + "lime", + "garlic cloves" + ] + }, + { + "id": 26761, + "cuisine": "chinese", + "ingredients": [ + "oysters", + "chenpi", + "soy sauce", + "Shaoxing wine", + "cilantro", + "sugar", + "fresh ginger", + "vegetable oil", + "water", + "kumquats", + "plums" + ] + }, + { + "id": 13908, + "cuisine": "chinese", + "ingredients": [ + "white vinegar", + "soy sauce", + "baking powder", + "cornflour", + "oil", + "tomatoes", + "Shaoxing wine", + "capsicum", + "salt", + "tomato paste", + "beef stock", + "shallots", + "garlic", + "beef steak", + "sugar", + "spring onions", + "sesame oil", + "tomato ketchup" + ] + }, + { + "id": 31365, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "bow-tie pasta", + "italian sausage", + "sweet onion", + "garlic cloves", + "pasta sauce", + "cream cheese", + "tomatoes", + "balsamic vinegar", + "italian seasoning" + ] + }, + { + "id": 40552, + "cuisine": "cajun_creole", + "ingredients": [ + "powdered sugar", + "evaporated milk", + "bread flour", + "warm water", + "salt", + "shortening", + "vegetable oil", + "eggs", + "active dry yeast", + "white sugar" + ] + }, + { + "id": 14977, + "cuisine": "french", + "ingredients": [ + "canned chicken broth", + "onions", + "red wine", + "olive oil", + "chicken", + "cremini mushrooms", + "garlic" + ] + }, + { + "id": 38390, + "cuisine": "italian", + "ingredients": [ + "yukon gold potatoes", + "crushed red pepper", + "rosemary sprigs", + "sea salt", + "scallions", + "brine-cured olives", + "large garlic cloves", + "pizza doughs", + "sweet potatoes", + "extra-virgin olive oil", + "flour for dusting" + ] + }, + { + "id": 39793, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "jelly", + "granny smith apples", + "strawberries", + "kiwi", + "lime juice", + "cayenne pepper", + "brown sugar", + "hot sauce", + "blackberries" + ] + }, + { + "id": 24158, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "cachaca", + "peaches", + "lime", + "juice" + ] + }, + { + "id": 14901, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "shredded Monterey Jack cheese", + "shredded cheddar cheese", + "tortilla chips", + "mayonaise", + "chopped onion", + "ground cumin", + "chili powder", + "ground beef" + ] + }, + { + "id": 14650, + "cuisine": "korean", + "ingredients": [ + "eggs", + "vegetable oil", + "carrots", + "cider vinegar", + "beef tenderloin", + "onions", + "soy sauce", + "white rice", + "cucumber", + "chard", + "water", + "chunk light tuna in water", + "nori" + ] + }, + { + "id": 33984, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper", + "tomatoes", + "kalamata", + "dried oregano", + "sun-dried tomatoes", + "onions", + "capers", + "garlic" + ] + }, + { + "id": 39336, + "cuisine": "russian", + "ingredients": [ + "chicken broth", + "red pepper flakes", + "dill", + "pork sausages", + "pepper", + "white rice", + "ground beef", + "minced garlic", + "salt", + "onions", + "tomato sauce", + "tomatoes with juice", + "venison", + "cabbage" + ] + }, + { + "id": 44520, + "cuisine": "indian", + "ingredients": [ + "water", + "cilantro leaves", + "onions", + "mutton", + "oil", + "teas", + "green chilies", + "tomatoes", + "salt", + "lentils" + ] + }, + { + "id": 9787, + "cuisine": "mexican", + "ingredients": [ + "water", + "chili powder", + "salt", + "white sugar", + "ground black pepper", + "diced tomatoes", + "pinto beans", + "olive oil", + "lean ground beef", + "cayenne pepper", + "ground cumin", + "tomato sauce", + "Mexican oregano", + "garlic", + "onions" + ] + }, + { + "id": 18560, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "butter", + "40% less sodium taco seasoning mix", + "lower sodium beef broth", + "all-purpose flour", + "ground sirloin", + "chopped onion", + "minced garlic", + "whole wheat tortillas", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 41633, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "black pepper", + "salt", + "tomatoes", + "garlic", + "olive oil", + "spaghetti" + ] + }, + { + "id": 29711, + "cuisine": "irish", + "ingredients": [ + "cookies", + "water", + "vanilla", + "flour", + "walnuts", + "sugar", + "butter" + ] + }, + { + "id": 46661, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lasagna noodles, cooked and drained", + "chopped fresh thyme", + "salt", + "reduced fat milk", + "shallots", + "butter", + "garlic cloves", + "ground black pepper", + "butternut squash", + "baby spinach", + "all-purpose flour", + "parmigiano-reggiano cheese", + "cooking spray", + "balsamic vinegar", + "asiago" + ] + }, + { + "id": 30712, + "cuisine": "italian", + "ingredients": [ + "semolina flour", + "salt", + "warm water" + ] + }, + { + "id": 47313, + "cuisine": "thai", + "ingredients": [ + "romaine lettuce", + "cooking spray", + "beef tenderloin", + "chopped fresh mint", + "fish sauce", + "jalapeno chilies", + "cilantro sprigs", + "red bell pepper", + "lime juice", + "ground red pepper", + "cucumber", + "sugar", + "green onions", + "purple onion" + ] + }, + { + "id": 44690, + "cuisine": "japanese", + "ingredients": [ + "salmon", + "umeboshi", + "salt", + "nori", + "bonito flakes", + "cod roe", + "clams", + "rice" + ] + }, + { + "id": 10377, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "broccoli florets", + "boneless skinless chicken breast halves", + "ground ginger", + "olive oil", + "crushed red pepper", + "low sodium soy sauce", + "hoisin sauce", + "salt", + "chicken stock", + "chile paste", + "garlic", + "sliced green onions" + ] + }, + { + "id": 1611, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "bone-in chicken breast halves", + "fresh parmesan cheese", + "balsamic vinegar", + "onions", + "green bell pepper", + "olive oil", + "bay leaves", + "sliced mushrooms", + "tomatoes", + "dried basil", + "ground black pepper", + "salt", + "dried oregano", + "penne", + "garlic powder", + "onion powder", + "red bell pepper" + ] + }, + { + "id": 38798, + "cuisine": "british", + "ingredients": [ + "baking powder", + "cranberries", + "unsalted butter", + "all-purpose flour", + "grated lemon peel", + "sugar", + "salt", + "fresh lemon juice", + "half & half", + "chopped walnuts" + ] + }, + { + "id": 46736, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "Tabasco Pepper Sauce", + "green pepper", + "tomatoes", + "vinegar", + "garlic", + "onions", + "lime juice", + "serrano peppers", + "salt", + "tomato juice", + "cilantro", + "cucumber" + ] + }, + { + "id": 14249, + "cuisine": "indian", + "ingredients": [ + "mustard", + "salt", + "toor dal", + "tomatoes", + "oil", + "chopped garlic", + "curry leaves", + "green chilies", + "ground turmeric", + "fennel seeds", + "coconut", + "onions" + ] + }, + { + "id": 49210, + "cuisine": "southern_us", + "ingredients": [ + "parsley leaves", + "salt", + "red wine vinegar", + "bay leaf", + "vegetable oil", + "red bell pepper", + "black-eyed peas", + "large garlic cloves", + "onions" + ] + }, + { + "id": 9801, + "cuisine": "italian", + "ingredients": [ + "angel hair", + "salt", + "shrimp", + "dry white wine", + "garlic cloves", + "fresh parsley", + "pepper", + "margarine", + "red bell pepper", + "paprika", + "fresh lemon juice" + ] + }, + { + "id": 27511, + "cuisine": "chinese", + "ingredients": [ + "clove", + "mung beans", + "rice noodles", + "corn starch", + "water", + "rice wine", + "sauce", + "noodles", + "white pepper", + "green onions", + "tamari soy sauce", + "onions", + "beef", + "sesame oil", + "oyster sauce", + "canola oil" + ] + }, + { + "id": 13293, + "cuisine": "mexican", + "ingredients": [ + "chicken legs", + "cinnamon", + "chipotles in adobo", + "water", + "oil", + "cumin", + "guajillo chiles", + "garlic", + "onions", + "piloncillo", + "tomatillos", + "ancho chile pepper" + ] + }, + { + "id": 1498, + "cuisine": "russian", + "ingredients": [ + "sugar", + "unsalted butter", + "salt", + "eggs", + "milk", + "raisins", + "sour cream", + "panettone", + "flour", + "lemon juice", + "powdered sugar", + "active dry yeast", + "vanilla" + ] + }, + { + "id": 28580, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "fillets", + "seasoning salt", + "vegetable oil", + "evaporated milk", + "grouper", + "large eggs" + ] + }, + { + "id": 28035, + "cuisine": "japanese", + "ingredients": [ + "shredded carrots", + "shrimp", + "mirin", + "watercress", + "soy sauce", + "hot chili oil", + "low salt chicken broth", + "yellow miso", + "peeled fresh ginger", + "sliced green onions" + ] + }, + { + "id": 38423, + "cuisine": "italian", + "ingredients": [ + "water", + "fine sea salt", + "mussels", + "large garlic cloves", + "dried oregano", + "pecorino romano cheese", + "flat leaf parsley", + "bread crumb fresh", + "extra-virgin olive oil" + ] + }, + { + "id": 9933, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "cream", + "garlic", + "butter", + "olive oil", + "salt" + ] + }, + { + "id": 10058, + "cuisine": "irish", + "ingredients": [ + "baking powder", + "salt", + "sugar", + "butter", + "caraway", + "whole wheat flour", + "buttermilk", + "all-purpose flour", + "baking soda", + "currant", + "grated orange" + ] + }, + { + "id": 26768, + "cuisine": "irish", + "ingredients": [ + "black peppercorns", + "sherry vinegar", + "beer", + "onions", + "turnips", + "orange", + "star anise", + "mustard seeds", + "corned beef", + "garlic bulb", + "honey", + "baby carrots", + "bay leaf", + "water", + "potatoes", + "thyme", + "cabbage" + ] + }, + { + "id": 26816, + "cuisine": "french", + "ingredients": [ + "butter", + "all-purpose flour", + "eggs", + "vanilla extract", + "semi-sweet chocolate morsels", + "heavy cream", + "white sugar", + "water", + "salt" + ] + }, + { + "id": 37881, + "cuisine": "chinese", + "ingredients": [ + "vodka", + "water", + "extra firm tofu", + "vegetable oil", + "corn starch", + "sugar", + "chili pepper", + "long green", + "baking powder", + "roasted peanuts", + "celery", + "soy sauce", + "minced garlic", + "chili paste", + "szechwan peppercorns", + "scallions", + "cooked white rice", + "cold water", + "kosher salt", + "fresh ginger", + "leeks", + "all-purpose flour", + "chinkiang vinegar" + ] + }, + { + "id": 29080, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "pork tenderloin", + "honey", + "chinese five-spice powder", + "minced garlic", + "dry sherry", + "hoisin sauce" + ] + }, + { + "id": 48736, + "cuisine": "russian", + "ingredients": [ + "eggs", + "milk", + "vanilla extract", + "pure vanilla extract", + "sugar", + "sprite", + "semi-sweet chocolate morsels", + "powdered sugar", + "flour", + "sour cream", + "unflavored gelatin", + "cool whip", + "heavy whipping cream" + ] + }, + { + "id": 8261, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "olive oil", + "salt", + "dried oregano", + "mayonaise", + "corn", + "chili powder", + "smoked paprika", + "pepper", + "serrano peppers", + "garlic cloves", + "ground cumin", + "cotija", + "lime", + "sea salt", + "chopped cilantro" + ] + }, + { + "id": 30732, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "garlic powder", + "sour cream", + "fresh cilantro", + "chili powder", + "dried oregano", + "potato nuggets", + "Mexican cheese blend", + "chunky salsa", + "milk", + "nonstick spray", + "ground cumin" + ] + }, + { + "id": 17653, + "cuisine": "greek", + "ingredients": [ + "cod fillets", + "salt", + "carrots", + "water", + "littleneck clams", + "rice", + "canned low sodium chicken broth", + "large eggs", + "dill", + "onions", + "ground black pepper", + "peas", + "lemon juice" + ] + }, + { + "id": 31846, + "cuisine": "indian", + "ingredients": [ + "tea bags", + "sweetened condensed milk", + "clove", + "fresh ginger", + "green cardamom pods", + "water", + "black peppercorns", + "cinnamon sticks" + ] + }, + { + "id": 18327, + "cuisine": "indian", + "ingredients": [ + "fresh spinach", + "garbanzo beans", + "salt", + "chicken broth", + "curry powder", + "diced tomatoes", + "bay leaf", + "ground ginger", + "boneless chicken skinless thigh", + "ground black pepper", + "nonstick spray", + "cooked rice", + "lime juice", + "garlic", + "onions" + ] + }, + { + "id": 30984, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "red pepper flakes", + "dark brown sugar", + "marinade", + "red pepper", + "ground cumin", + "olive oil", + "sirloin steak", + "onions", + "soy sauce", + "lemon", + "green pepper" + ] + }, + { + "id": 34123, + "cuisine": "southern_us", + "ingredients": [ + "minced garlic", + "green leaf lettuce", + "salt", + "fresh basil", + "watermelon", + "vegetable oil", + "dressing", + "milk", + "chicken breasts", + "all-purpose flour", + "mayonaise", + "ground black pepper", + "bacon slices" + ] + }, + { + "id": 24119, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "flour tortillas", + "grating cheese", + "salsa", + "onions", + "lettuce", + "sweet onion", + "guacamole", + "extra-virgin olive oil", + "smoked paprika", + "lime juice", + "beef stock", + "cilantro", + "rice", + "cumin", + "tomato paste", + "beef", + "chili powder", + "garlic", + "chipotles in adobo" + ] + }, + { + "id": 3719, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "half & half", + "corn tortillas", + "shredded cheddar cheese", + "green enchilada sauce", + "tomatoes", + "boneless skinless chicken breasts", + "ground cumin", + "jalapeno chilies", + "red enchilada sauce" + ] + }, + { + "id": 13329, + "cuisine": "indian", + "ingredients": [ + "pita bread", + "garam masala", + "plain yogurt", + "boneless skinless chicken breasts" + ] + }, + { + "id": 30033, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "sesame oil", + "white vinegar", + "minced garlic", + "corn starch", + "sugar", + "crushed red pepper flakes", + "chicken broth", + "water" + ] + }, + { + "id": 7021, + "cuisine": "italian", + "ingredients": [ + "pesto", + "roasted red peppers", + "part-skim mozzarella cheese", + "baby spinach", + "large egg whites", + "wonton wrappers", + "parmesan cheese", + "part-skim ricotta cheese" + ] + }, + { + "id": 16235, + "cuisine": "indian", + "ingredients": [ + "peeled fresh ginger", + "dry mustard", + "garlic cloves", + "ground cumin", + "ground cloves", + "ground red pepper", + "chopped onion", + "ground turmeric", + "ground cinnamon", + "golden raisins", + "salt", + "medium shrimp", + "fat free less sodium chicken broth", + "red wine vinegar", + "ground coriander", + "canola oil" + ] + }, + { + "id": 48427, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "onion salt", + "crushed red pepper", + "sour cream", + "sweet onion", + "tortillas", + "cilantro", + "salsa", + "pepper", + "garlic powder", + "paprika", + "salt", + "steak", + "lime", + "red pepper", + "cheese", + "green pepper" + ] + }, + { + "id": 20972, + "cuisine": "french", + "ingredients": [ + "reduced fat monterey jack cheese", + "chopped green bell pepper", + "cooking spray", + "1% low-fat milk", + "cheddar cheese", + "large eggs", + "mushrooms", + "all-purpose flour", + "egg substitute", + "potatoes", + "baking powder", + "fresh parsley", + "tomatoes", + "zucchini", + "fat-free cottage cheese", + "salt" + ] + }, + { + "id": 49714, + "cuisine": "irish", + "ingredients": [ + "chopped fresh thyme", + "chopped fresh sage", + "onions", + "fresh rosemary", + "apple cider", + "bay leaf", + "caraway seeds", + "bacon", + "carrots", + "pork sausages", + "potatoes", + "garlic", + "fresh parsley" + ] + }, + { + "id": 23551, + "cuisine": "thai", + "ingredients": [ + "boneless skinless chicken breasts", + "green beans", + "fish sauce", + "vegetable oil", + "water", + "Thai red curry paste", + "granulated sugar", + "oyster sauce" + ] + }, + { + "id": 7166, + "cuisine": "italian", + "ingredients": [ + "pasta", + "pecorino romano cheese", + "pepper", + "garlic", + "kosher salt", + "extra-virgin olive oil", + "broccoli florets" + ] + }, + { + "id": 3433, + "cuisine": "southern_us", + "ingredients": [ + "table salt", + "unsalted butter", + "paprika", + "ground peppercorn", + "butter", + "all-purpose flour", + "sausage casings", + "baking soda", + "buttermilk", + "milk", + "baking powder", + "salt" + ] + }, + { + "id": 35854, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "sweet onion", + "red beans", + "smoked sausage", + "fresh parsley", + "sugar", + "olive oil", + "ground red pepper", + "hot sauce", + "cooked ham", + "dried thyme", + "green onions", + "salt", + "dried oregano", + "water", + "ground black pepper", + "worcestershire sauce", + "garlic cloves" + ] + }, + { + "id": 14847, + "cuisine": "italian", + "ingredients": [ + "butter", + "white wine", + "garlic cloves", + "raw peeled prawns", + "linguine", + "parsley", + "lemon juice" + ] + }, + { + "id": 32898, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "olive oil", + "salt", + "shredded cheddar cheese", + "sweet potatoes", + "onions", + "pepper", + "jalapeno chilies", + "corn tortillas", + "milk", + "cilantro" + ] + }, + { + "id": 12810, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "sugar", + "boiling water" + ] + }, + { + "id": 45803, + "cuisine": "french", + "ingredients": [ + "madeira wine", + "butter", + "tomato purée", + "beef stock", + "all-purpose flour", + "ground black pepper", + "salt", + "ham steak", + "shallots" + ] + }, + { + "id": 35500, + "cuisine": "mexican", + "ingredients": [ + "corn husks", + "tomatillos", + "lard", + "masa harina", + "bouillon", + "cooked chicken", + "cilantro", + "low sodium store bought chicken stock", + "mozzarella cheese", + "coarse salt", + "garlic", + "canola oil", + "jalapeno chilies", + "russet potatoes", + "onions" + ] + }, + { + "id": 22534, + "cuisine": "cajun_creole", + "ingredients": [ + "brown rice", + "chicken stock cubes", + "oil", + "onions", + "cayenne", + "paprika", + "green pepper", + "celery", + "pepper", + "lean ground beef", + "salt", + "thyme", + "bay leaves", + "garlic", + "scallions", + "medium shrimp" + ] + }, + { + "id": 47472, + "cuisine": "cajun_creole", + "ingredients": [ + "peanuts", + "crab boil", + "jalapeno chilies" + ] + }, + { + "id": 18518, + "cuisine": "irish", + "ingredients": [ + "butter", + "milk", + "freshly ground pepper", + "russet", + "salt", + "baking potatoes", + "scallions" + ] + }, + { + "id": 31352, + "cuisine": "southern_us", + "ingredients": [ + "water", + "fresh mint", + "bourbon whiskey", + "sugar", + "club soda" + ] + }, + { + "id": 16309, + "cuisine": "mexican", + "ingredients": [ + "ancho chili ground pepper", + "quinoa", + "salt", + "lime juice", + "green onions", + "chopped cilantro fresh", + "water", + "ground black pepper", + "red bell pepper", + "black beans", + "Spike Seasoning", + "extra-virgin olive oil", + "ground cumin" + ] + }, + { + "id": 43555, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "green peas", + "long-grain rice", + "green onions", + "yellow onion", + "canola oil", + "large eggs", + "salt", + "iceberg lettuce", + "low sodium soy sauce", + "loin pork roast", + "dark sesame oil" + ] + }, + { + "id": 12820, + "cuisine": "chinese", + "ingredients": [ + "fresh cilantro", + "extra firm tofu", + "vegetable broth", + "dark sesame oil", + "soy sauce", + "fresh ginger", + "green onions", + "rice vinegar", + "corn starch", + "olive oil", + "egg whites", + "salt", + "garlic cloves", + "water", + "ground black pepper", + "red pepper flakes", + "cayenne pepper", + "sliced mushrooms" + ] + }, + { + "id": 17482, + "cuisine": "indian", + "ingredients": [ + "powdered sugar", + "ghee", + "flour", + "saffron", + "almonds", + "sooji", + "ground cardamom" + ] + }, + { + "id": 35351, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "ground black pepper", + "lower sodium chicken broth", + "smoked bacon", + "chopped onion", + "water", + "vinegar", + "turnip greens", + "black-eyed peas" + ] + }, + { + "id": 37483, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "dried pinto beans", + "Mexican beer", + "garlic cloves", + "Mexican oregano", + "salt", + "water", + "bacon", + "onions" + ] + }, + { + "id": 21427, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "white wine", + "bay leaves", + "crushed red pepper", + "confectioners sugar", + "dried rosemary", + "brown sugar", + "dried thyme", + "onion powder", + "ground allspice", + "marjoram", + "italian sausage", + "tomato sauce", + "garlic powder", + "red wine", + "sliced mushrooms", + "dried oregano", + "green bell pepper", + "dried basil", + "dried sage", + "salt", + "onions", + "italian seasoning" + ] + }, + { + "id": 12421, + "cuisine": "italian", + "ingredients": [ + "white onion", + "balsamic vinegar", + "shredded mozzarella cheese", + "unsalted butter", + "soppressata", + "prebaked pizza crusts", + "sweet potatoes", + "freshly ground pepper", + "kosher salt", + "extra-virgin olive oil", + "oregano" + ] + }, + { + "id": 18037, + "cuisine": "spanish", + "ingredients": [ + "orange", + "strawberries", + "dry white wine", + "orange liqueur", + "sugar", + "lemon", + "lime", + "fresh mint" + ] + }, + { + "id": 40758, + "cuisine": "indian", + "ingredients": [ + "fish fillets", + "salt", + "ground turmeric", + "red chili powder", + "garlic powder", + "lemon juice", + "semolina", + "oil", + "garlic paste", + "garam masala", + "onions" + ] + }, + { + "id": 40114, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "olive oil", + "squid", + "hot red pepper flakes", + "fish stock", + "fresh lemon juice", + "fresh rosemary", + "dry white wine", + "garlic cloves", + "water", + "fresh oregano", + "flat leaf parsley" + ] + }, + { + "id": 499, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "pasta", + "tomato sauce" + ] + }, + { + "id": 34901, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "rice vinegar", + "rice paper", + "sugar", + "rice vermicelli", + "chopped fresh herbs", + "sesame oil", + "medium shrimp", + "peanuts", + "carrots" + ] + }, + { + "id": 43887, + "cuisine": "brazilian", + "ingredients": [ + "water", + "flour", + "butter", + "lemon juice", + "cumin", + "tomatoes", + "olive oil", + "Tabasco Pepper Sauce", + "salt", + "corn starch", + "milk", + "egg yolks", + "garlic", + "shrimp", + "pepper", + "bell pepper", + "parsley", + "margarine", + "onions" + ] + }, + { + "id": 29660, + "cuisine": "moroccan", + "ingredients": [ + "cherry tomatoes", + "white wine vinegar", + "couscous", + "water", + "large garlic cloves", + "lentilles du puy", + "olive oil", + "salt", + "arugula", + "feta cheese", + "fresh mint" + ] + }, + { + "id": 26333, + "cuisine": "italian", + "ingredients": [ + "unflavored gelatin", + "vanilla", + "sugar", + "flavored syrup", + "whipping cream" + ] + }, + { + "id": 38770, + "cuisine": "chinese", + "ingredients": [ + "bell pepper", + "onions", + "honey", + "red wine vinegar", + "soy sauce", + "flank steak", + "olive oil", + "garlic" + ] + }, + { + "id": 23000, + "cuisine": "italian", + "ingredients": [ + "no-salt-added diced tomatoes", + "chopped onion", + "dried oregano", + "sugar", + "grated parmesan cheese", + "rubbed sage", + "olive oil", + "canadian bacon", + "black pepper", + "roasted garlic", + "gnocchi" + ] + }, + { + "id": 36150, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "white sugar", + "ground cinnamon", + "all-purpose flour", + "salt", + "water", + "oil" + ] + }, + { + "id": 49087, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "leaves", + "ground pork", + "corn starch", + "water", + "sesame oil", + "rice vinegar", + "soy sauce", + "mushroom caps", + "chicken stock cubes", + "fresh ginger", + "wonton wrappers", + "scallions" + ] + }, + { + "id": 29624, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "olive oil", + "Thai red curry paste", + "golden caster sugar", + "fresh coriander", + "shallots", + "lime leaves", + "salad", + "soy sauce", + "spring onions", + "coconut milk", + "salmon fillets", + "lime", + "butter", + "basmati rice" + ] + }, + { + "id": 7976, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "olive oil", + "chopped fresh thyme", + "chopped onion", + "ground cloves", + "ground black pepper", + "diced tomatoes", + "carrots", + "lower sodium beef broth", + "medium egg noodles", + "salt", + "bay leaf", + "fresh rosemary", + "boneless chuck roast", + "red wine", + "garlic cloves" + ] + }, + { + "id": 37937, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "coriander seeds", + "ginger", + "chickpeas", + "red chili peppers", + "lemon", + "salt", + "onions", + "tumeric", + "chili powder", + "garlic", + "cumin seed", + "tomatoes", + "black pepper", + "sunflower oil", + "cilantro leaves" + ] + }, + { + "id": 13469, + "cuisine": "indian", + "ingredients": [ + "paprika", + "cumin seed", + "fresh cilantro", + "salt", + "purple onion", + "canola oil", + "baking potatoes", + "ground coriander" + ] + }, + { + "id": 24101, + "cuisine": "southern_us", + "ingredients": [ + "water", + "mint sprigs", + "sugar" + ] + }, + { + "id": 38938, + "cuisine": "british", + "ingredients": [ + "ground black pepper", + "beef tenderloin", + "eggs", + "pepperidge farm puff pastry", + "mushrooms", + "onions", + "water", + "butter" + ] + }, + { + "id": 15323, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "garlic cloves", + "fresh basil", + "whipping cream", + "chicken broth", + "butter", + "Barilla Linguine", + "freshly ground pepper" + ] + }, + { + "id": 35600, + "cuisine": "italian", + "ingredients": [ + "golden brown sugar", + "rice vinegar", + "soft fresh goat cheese", + "granny smith apples", + "peeled fresh ginger", + "cayenne pepper", + "chopped fresh mint", + "olive oil", + "roasted garlic", + "cinnamon sticks", + "baguette", + "golden raisins", + "garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 15866, + "cuisine": "spanish", + "ingredients": [ + "white vinegar", + "all purpose unbleached flour", + "large eggs", + "ice water", + "unsalted butter", + "salt" + ] + }, + { + "id": 22689, + "cuisine": "indian", + "ingredients": [ + "peeled fresh ginger", + "mustard seeds", + "sugar", + "star anise", + "clove", + "red wine vinegar", + "cinnamon sticks", + "ground black pepper", + "plums" + ] + }, + { + "id": 43110, + "cuisine": "french", + "ingredients": [ + "butter", + "sugar", + "salt", + "whipping cream", + "egg yolks", + "chopped onion" + ] + }, + { + "id": 16100, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "mozzarella cheese", + "onions", + "cheddar cheese", + "tortilla shells", + "pasta sauce", + "parmesan cheese", + "cottage cheese", + "ground beef" + ] + }, + { + "id": 32043, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "prosciutto", + "artichoke hearts", + "olive oil", + "roast red peppers, drain", + "garlic powder" + ] + }, + { + "id": 32527, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "dried thyme", + "boneless skinless chicken breasts", + "rubbed sage", + "kosher salt", + "ground black pepper", + "garlic", + "wine", + "olive oil", + "portabello mushroom", + "Burgundy wine", + "pasta", + "dried basil", + "chopped green bell pepper", + "chopped onion" + ] + }, + { + "id": 48740, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "salt", + "onions", + "coconut", + "oil", + "black pepper", + "green chilies", + "urad dal", + "asafoetida powder" + ] + }, + { + "id": 15541, + "cuisine": "southern_us", + "ingredients": [ + "pork shoulder roast", + "cajun seasoning", + "garlic cloves", + "cold water", + "red grape", + "persimmon", + "sliced pears", + "vegetable oil", + "all-purpose flour", + "celery ribs", + "low sodium chicken broth", + "collard green leaves", + "onions" + ] + }, + { + "id": 43418, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "italian seasoned dry bread crumbs", + "grated parmesan cheese", + "boneless skinless chicken breast halves", + "mayonaise", + "fresh basil leaves", + "purple onion", + "italian salad dressing" + ] + }, + { + "id": 30947, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "lemon juice", + "mayonaise", + "buttermilk", + "onions", + "white vinegar", + "milk", + "carrots", + "sugar", + "salt", + "cabbage" + ] + }, + { + "id": 28906, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "pepper", + "garlic", + "tomato paste", + "bread crumbs", + "chicken breasts", + "italian salad dressing", + "angel hair", + "milk", + "salt", + "tomato sauce", + "flour", + "fresh oregano" + ] + }, + { + "id": 48915, + "cuisine": "cajun_creole", + "ingredients": [ + "catfish fillets", + "green pepper", + "garlic cloves", + "diced tomatoes", + "V8 Juice", + "onions", + "olive oil", + "okra", + "uncook medium shrimp, peel and devein", + "celery ribs", + "cayenne pepper", + "long-grain rice" + ] + }, + { + "id": 25825, + "cuisine": "korean", + "ingredients": [ + "eggs", + "pepper", + "green onions", + "all-purpose flour", + "fish", + "white vinegar", + "red chili peppers", + "sesame seeds", + "rice wine", + "glutinous rice flour", + "sugar", + "water", + "spring onions", + "pancake mix", + "Korean chile flakes", + "soy sauce", + "garlic powder", + "salt", + "oil" + ] + }, + { + "id": 40710, + "cuisine": "mexican", + "ingredients": [ + "milk", + "tortilla chips", + "black beans", + "green onions", + "processed cheese", + "pork sausages", + "white onion", + "salsa" + ] + }, + { + "id": 46500, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "potatoes", + "onions", + "tomatoes", + "garbanzo beans", + "garlic", + "olive oil", + "raisins", + "boneless chop pork", + "pork liver", + "salt" + ] + }, + { + "id": 36414, + "cuisine": "indian", + "ingredients": [ + "mashed potatoes", + "amchur", + "thai chile", + "cumin", + "kosher salt", + "chili powder", + "oil", + "garlic paste", + "whole wheat flour", + "cilantro leaves", + "water", + "butter", + "ghee" + ] + }, + { + "id": 33421, + "cuisine": "greek", + "ingredients": [ + "finely chopped fresh parsley", + "purple onion", + "fresh lemon juice", + "plum tomatoes", + "ground ginger", + "extra-virgin olive oil", + "ground coriander", + "greek yogurt", + "tahini", + "salt", + "cucumber", + "ground cumin", + "pitas", + "crushed red pepper", + "garlic cloves", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 6031, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "shallots", + "apples" + ] + }, + { + "id": 32953, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "garlic powder", + "cilantro", + "sour cream", + "taco sauce", + "olive oil", + "chili powder", + "frozen corn", + "avocado", + "pepper", + "hot pepper sauce", + "purple onion", + "cumin", + "cooked rice", + "lime juice", + "chicken breasts", + "salt" + ] + }, + { + "id": 38786, + "cuisine": "italian", + "ingredients": [ + "bananas", + "apples", + "pears", + "orange", + "butter", + "lemon juice", + "eggs", + "flour", + "extra-virgin olive oil", + "sugar", + "baking powder", + "salt" + ] + }, + { + "id": 19361, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "shallots", + "ginger", + "long-grain rice", + "baby bok choy", + "pandanus leaf", + "sesame oil", + "scallions", + "cucumber", + "kecap manis", + "rice wine", + "chili sauce", + "ground white pepper", + "soy sauce", + "cilantro stems", + "vegetable oil", + "whole chicken" + ] + }, + { + "id": 1185, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "cucumber", + "ketchup", + "hot sauce", + "medium shrimp", + "salt", + "fresh lime juice", + "water", + "chopped onion", + "chopped cilantro fresh" + ] + }, + { + "id": 27832, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "bay leaves", + "salt", + "onions", + "celery ribs", + "reduced sodium chicken broth", + "extra-virgin olive oil", + "carrots", + "fresh rosemary", + "dry white wine", + "garlic cloves", + "grana padano", + "black pepper", + "rabbit", + "juice", + "orecchiette" + ] + }, + { + "id": 34475, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "fresh lime juice", + "white onion", + "garlic", + "avocado", + "tomatillos", + "chopped cilantro fresh", + "water", + "salt" + ] + }, + { + "id": 13603, + "cuisine": "southern_us", + "ingredients": [ + "water", + "rib", + "extra-virgin olive oil", + "garlic cloves", + "mustard greens" + ] + }, + { + "id": 22263, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil cooking spray", + "chicken breasts", + "garlic", + "yellow onion", + "avocado", + "bay leaves", + "chile pepper", + "salt", + "corn tortillas", + "lime", + "chili powder", + "purple onion", + "sour cream", + "chicken stock", + "corn oil", + "diced tomatoes", + "cilantro leaves", + "ground cumin" + ] + }, + { + "id": 38146, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "large eggs", + "vanilla extract", + "dark brown sugar", + "fat free milk", + "baking powder", + "all-purpose flour", + "large egg whites", + "cooking spray", + "salt", + "granulated sugar", + "butter", + "corn syrup" + ] + }, + { + "id": 14098, + "cuisine": "british", + "ingredients": [ + "dried currants", + "all-purpose flour", + "tea bags", + "baking powder", + "dough", + "unsalted butter", + "boiling water", + "sugar", + "salt" + ] + }, + { + "id": 15137, + "cuisine": "vietnamese", + "ingredients": [ + "cilantro sprigs", + "fresh lime juice", + "sugar", + "freshly ground pepper", + "asian fish sauce", + "salt", + "pompano fillets", + "fresh ginger", + "garlic cloves" + ] + }, + { + "id": 45672, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "onions", + "tomato paste", + "diced tomatoes", + "green pepper", + "chicken stock", + "vegetable oil", + "all-purpose flour", + "italian seasoning", + "boneless chicken skinless thigh", + "garlic", + "fresh parsley" + ] + }, + { + "id": 8282, + "cuisine": "italian", + "ingredients": [ + "pizza crust", + "grated parmesan cheese", + "shredded mozzarella cheese", + "tomato paste", + "milk", + "dry red wine", + "onions", + "pepperoni slices", + "large eggs", + "salt", + "pepper", + "lean ground beef", + "garlic cloves" + ] + }, + { + "id": 23373, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "sesame oil", + "water", + "Gochujang base", + "minced garlic", + "corn syrup", + "anchovies", + "toasted sesame seeds" + ] + }, + { + "id": 7733, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "cooking oil", + "oyster sauce", + "tomatoes", + "vinegar", + "green chilies", + "eggplant", + "garlic", + "onions", + "water", + "shrimp paste", + "coconut milk" + ] + }, + { + "id": 42928, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "dry red wine", + "chuck", + "pepper sauce", + "ground black pepper", + "burrito seasoning mix", + "water", + "roasted garlic", + "sugar", + "paprika", + "pork shoulder" + ] + }, + { + "id": 5771, + "cuisine": "mexican", + "ingredients": [ + "sweet onion", + "butter", + "sour cream", + "pepper", + "chicken breast halves", + "salt", + "cream of chicken soup", + "shredded sharp cheddar cheese", + "waffle", + "chile pepper", + "garlic cloves" + ] + }, + { + "id": 16138, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "corn starch", + "soy sauce", + "garlic", + "gai lan", + "sesame oil", + "white sugar", + "fresh ginger root", + "rice vinegar" + ] + }, + { + "id": 22440, + "cuisine": "southern_us", + "ingredients": [ + "turnip greens", + "country ham", + "red wine vinegar", + "brown sugar", + "olive oil", + "red kidnei beans, rins and drain" + ] + }, + { + "id": 31522, + "cuisine": "french", + "ingredients": [ + "white chocolate", + "whipping cream", + "unflavored gelatin", + "orange marmalade", + "blackberries", + "large egg yolks", + "Grand Marnier", + "sugar", + "whole milk" + ] + }, + { + "id": 41085, + "cuisine": "mexican", + "ingredients": [ + "vanilla extract", + "sugar", + "unsweetened cocoa powder", + "corn starch", + "cinnamon", + "low-fat milk" + ] + }, + { + "id": 17240, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "yellow squash", + "ground black pepper", + "smoked paprika", + "onions", + "lettuce", + "kosher salt", + "garlic powder", + "sweet potatoes or yams", + "corn tortillas", + "ground cumin", + "black beans", + "feta cheese", + "sea salt", + "sour cream", + "canola oil", + "tomatoes", + "olive oil", + "zucchini", + "red bell pepper", + "dried oregano" + ] + }, + { + "id": 32039, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "dried parsley", + "dried basil", + "extra-virgin olive oil", + "dried rosemary", + "minced garlic", + "crushed red pepper flakes", + "dried oregano", + "garlic powder", + "salt" + ] + }, + { + "id": 4593, + "cuisine": "southern_us", + "ingredients": [ + "molasses", + "flank steak", + "dry mustard", + "dark brown sugar", + "tomato paste", + "garlic powder", + "worcestershire sauce", + "chopped onion", + "black pepper", + "chili powder", + "purple onion", + "dill pickles", + "cider vinegar", + "sub buns", + "salt", + "ground cumin" + ] + }, + { + "id": 3285, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "garlic", + "light brown sugar", + "fresh ginger", + "sticky rice", + "scallions", + "white vinegar", + "honey", + "daikon", + "salt", + "chicken legs", + "shallots", + "thai chile", + "asian fish sauce" + ] + }, + { + "id": 26063, + "cuisine": "korean", + "ingredients": [ + "shell steak", + "garlic", + "sugar", + "sesame oil", + "fresh ginger", + "soy sauce", + "balsamic vinegar" + ] + }, + { + "id": 28798, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "sugar", + "water" + ] + }, + { + "id": 798, + "cuisine": "italian", + "ingredients": [ + "buttermilk", + "mayonaise", + "pesto", + "sour cream" + ] + }, + { + "id": 25, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "corn tortillas", + "sea salt" + ] + }, + { + "id": 38880, + "cuisine": "filipino", + "ingredients": [ + "vinegar", + "coconut cream", + "coconut milk", + "ground black pepper", + "salt", + "shrimp", + "sugar", + "garlic", + "oyster sauce", + "banana blossom", + "tomatoes", + "cooking oil", + "green chilies", + "onions" + ] + }, + { + "id": 22613, + "cuisine": "japanese", + "ingredients": [ + "granulated sugar", + "matcha green tea powder", + "whole milk", + "large egg yolks", + "heavy cream" + ] + }, + { + "id": 23991, + "cuisine": "filipino", + "ingredients": [ + "cooking oil", + "salt", + "pork belly", + "lemon", + "soy sauce", + "catsup", + "ground black pepper", + "garlic" + ] + }, + { + "id": 25354, + "cuisine": "mexican", + "ingredients": [ + "butter", + "chopped cilantro fresh", + "lime", + "fresh lime juice", + "red potato", + "salsa", + "Mexican cheese blend", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 12254, + "cuisine": "greek", + "ingredients": [ + "water", + "berries", + "orange blossom honey", + "kosher salt", + "greek yogurt" + ] + }, + { + "id": 20183, + "cuisine": "filipino", + "ingredients": [ + "pork", + "salt", + "onions", + "shrimp paste", + "garlic cloves", + "ground pepper", + "green chilies", + "vegetable oil", + "coconut milk" + ] + }, + { + "id": 11526, + "cuisine": "mexican", + "ingredients": [ + "hot pepper sauce", + "American cheese", + "vegetarian refried beans", + "low-fat sour cream", + "flour tortillas", + "ground black pepper" + ] + }, + { + "id": 23983, + "cuisine": "jamaican", + "ingredients": [ + "gruyere cheese", + "boneless skinless chicken breasts", + "carrots", + "zucchini", + "ham", + "vegetable oil" + ] + }, + { + "id": 9581, + "cuisine": "thai", + "ingredients": [ + "sweet onion", + "butter", + "Thai fish sauce", + "canola oil", + "sugar", + "thai basil", + "freshly ground pepper", + "fresh mint", + "hot chili", + "cilantro leaves", + "red bell pepper", + "kosher salt", + "flank steak", + "english cucumber", + "fresh lime juice" + ] + }, + { + "id": 37320, + "cuisine": "french", + "ingredients": [ + "idaho potatoes", + "grated Gruyère cheese", + "ground black pepper", + "paprika", + "freshly grated parmesan", + "heavy cream", + "unsalted butter", + "salt" + ] + }, + { + "id": 40748, + "cuisine": "italian", + "ingredients": [ + "french bread", + "garlic cloves", + "tomatoes", + "extra-virgin olive oil", + "ground black pepper", + "salt", + "green onions", + "chopped cilantro fresh" + ] + }, + { + "id": 7584, + "cuisine": "russian", + "ingredients": [ + "sugar", + "coarse kosher salt", + "purple onion", + "white wine vinegar", + "black peppercorns", + "cinnamon sticks" + ] + }, + { + "id": 7414, + "cuisine": "greek", + "ingredients": [ + "baking powder", + "blanched almonds", + "brandy", + "vanilla extract", + "clove", + "butter", + "confectioners sugar", + "egg yolks", + "all-purpose flour" + ] + }, + { + "id": 48337, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "golden raisins", + "onions", + "olive oil", + "salt", + "ground cumin", + "slivered almonds", + "meat", + "pears", + "ground ginger", + "ground black pepper", + "ground coriander" + ] + }, + { + "id": 44857, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "warm water", + "canola oil", + "all-purpose flour", + "salt" + ] + }, + { + "id": 22963, + "cuisine": "mexican", + "ingredients": [ + "water", + "cheese", + "corn tortillas", + "black beans", + "corn", + "salsa", + "avocado", + "fresh cilantro", + "crema", + "shredded cheddar cheese", + "chicken breasts", + "taco seasoning" + ] + }, + { + "id": 7395, + "cuisine": "british", + "ingredients": [ + "butter", + "onions", + "all-purpose flour", + "salt", + "white sugar", + "pepper", + "liver" + ] + }, + { + "id": 42454, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "converted rice", + "all-purpose flour", + "kosher salt", + "bay leaves", + "dry red wine", + "red bell pepper", + "prosciutto", + "large garlic cloves", + "yellow onion", + "ground cloves", + "ground black pepper", + "paprika", + "leg of lamb" + ] + }, + { + "id": 44605, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "garlic", + "lime", + "onions", + "fresh cilantro", + "salt", + "jalapeno chilies", + "plum tomatoes" + ] + }, + { + "id": 36408, + "cuisine": "french", + "ingredients": [ + "hanger steak", + "cognac", + "leeks", + "garlic", + "parsley", + "salt", + "unsalted butter", + "extra-virgin olive oil", + "freshly ground pepper" + ] + }, + { + "id": 20968, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "ziti", + "tomatoes with juice", + "onions", + "eggs", + "olive oil", + "parsley", + "salt", + "italian sausage", + "pepper", + "whole milk ricotta cheese", + "garlic", + "italian seasoning", + "tomato sauce", + "grated parmesan cheese", + "red pepper flakes", + "ground beef" + ] + }, + { + "id": 15335, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "minced garlic", + "lasagna noodles", + "part-skim ricotta cheese", + "bay leaf", + "fresh basil", + "golden brown sugar", + "grated parmesan cheese", + "chopped onion", + "frozen chopped spinach", + "mozzarella cheese", + "olive oil", + "lean ground beef", + "carrots", + "tomato paste", + "crushed tomatoes", + "large eggs", + "crushed red pepper", + "dried oregano" + ] + }, + { + "id": 47676, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "green beans", + "sausages", + "spanish rice", + "carrots" + ] + }, + { + "id": 23121, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "fresh lime juice", + "salt", + "purple onion", + "chopped cilantro fresh", + "radishes", + "orange juice" + ] + }, + { + "id": 39489, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garam masala", + "chickpeas", + "sugar", + "star anise", + "cinnamon sticks", + "black peppercorns", + "cilantro", + "oil", + "water", + "salt", + "masala" + ] + }, + { + "id": 35348, + "cuisine": "french", + "ingredients": [ + "large eggs", + "water", + "all-purpose flour", + "sugar", + "salt", + "unsalted butter" + ] + }, + { + "id": 13866, + "cuisine": "mexican", + "ingredients": [ + "corn", + "light sour cream", + "refried beans", + "pico de gallo", + "guacamole", + "shredded cheddar cheese", + "green onions" + ] + }, + { + "id": 42016, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "flat leaf parsley", + "large garlic cloves", + "onions", + "olive oil", + "herbes de provence", + "fennel seeds", + "brine-cured black olives", + "chicken" + ] + }, + { + "id": 20042, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "large eggs", + "beef broth", + "onions", + "pepper", + "pimentos", + "garlic cloves", + "ground cumin", + "ground round", + "shredded cabbage", + "hot sauce", + "chopped cilantro fresh", + "tomatoes", + "zucchini", + "salt", + "carrots" + ] + }, + { + "id": 7450, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "ground black pepper", + "mozzarella cheese", + "fresh basil leaves", + "kosher salt", + "balsamic vinegar", + "olive oil" + ] + }, + { + "id": 39767, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cheese", + "marinara sauce", + "large eggs", + "water", + "wonton wrappers" + ] + }, + { + "id": 23961, + "cuisine": "italian", + "ingredients": [ + "bow-tie pasta", + "red bell pepper", + "dijon mustard", + "asparagus spears", + "whipping cream", + "low salt chicken broth", + "ham" + ] + }, + { + "id": 9098, + "cuisine": "filipino", + "ingredients": [ + "salt", + "mung beans", + "white sugar", + "water", + "glutinous rice flour", + "cooking oil" + ] + }, + { + "id": 11141, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "mild curry paste", + "butter", + "fresh lime juice", + "lime zest", + "plain yogurt", + "light cream", + "tomato ketchup", + "boneless chicken skinless thigh", + "fresh ginger", + "garlic", + "basmati rice", + "ground cinnamon", + "fresh coriander", + "stewed tomatoes", + "onions" + ] + }, + { + "id": 30684, + "cuisine": "italian", + "ingredients": [ + "chiles", + "plum tomatoes", + "extra-virgin olive oil", + "fresh basil leaves", + "large garlic cloves" + ] + }, + { + "id": 11376, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "purple onion", + "red pepper", + "chipotle paste", + "lime", + "garlic cloves", + "extra-virgin olive oil", + "coriander" + ] + }, + { + "id": 11543, + "cuisine": "french", + "ingredients": [ + "parsley", + "all-purpose flour", + "capers", + "lemon", + "ground white pepper", + "sole fillet", + "salt", + "butter", + "lemon juice" + ] + }, + { + "id": 9804, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "bacon", + "freshly ground pepper", + "kosher salt", + "extra-virgin olive oil", + "sugar", + "diced tomatoes", + "garlic cloves", + "pasta", + "freshly grated parmesan", + "crushed red pepper" + ] + }, + { + "id": 25376, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "crushed tomatoes", + "red wine", + "dried rosemary", + "tilapia fillets", + "cooking oil", + "fresh parsley", + "artichoke hearts", + "garlic" + ] + }, + { + "id": 48730, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "coriander seeds", + "roasting chickens", + "onions", + "chipotle chile", + "cilantro leaves", + "corn tortillas", + "fresh rosemary", + "dry white wine", + "garlic cloves", + "fresh oregano leaves", + "butter", + "low salt chicken broth" + ] + }, + { + "id": 35230, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "Italian parsley leaves", + "lemon juice", + "capers", + "dijon mustard", + "garlic", + "ground black pepper", + "anchovy paste", + "dried thyme", + "boneless skinless chicken breasts", + "salt" + ] + }, + { + "id": 46130, + "cuisine": "italian", + "ingredients": [ + "pecorino romano cheese", + "grape tomatoes", + "sweet italian sausage", + "red pepper flakes", + "dried pasta" + ] + }, + { + "id": 24670, + "cuisine": "moroccan", + "ingredients": [ + "green lentil", + "ginger", + "cumin", + "tumeric", + "vegetable stock", + "garlic cloves", + "shallots", + "chickpeas", + "olive oil", + "diced tomatoes", + "onions" + ] + }, + { + "id": 14204, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "cinnamon", + "garlic cloves", + "onions", + "zucchini", + "ground allspice", + "Italian bread", + "water", + "paprika", + "fresh lemon juice", + "fresh basil leaves", + "eggplant", + "yellow bell pepper", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 20098, + "cuisine": "southern_us", + "ingredients": [ + "alum", + "ground ginger", + "watermelon", + "water", + "sugar", + "salt" + ] + }, + { + "id": 13213, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "paprika", + "masa harina", + "kosher salt", + "vegetable oil", + "ground coriander", + "celery salt", + "onion powder", + "all-purpose flour", + "chicken", + "garlic powder", + "buttermilk", + "corn starch" + ] + }, + { + "id": 18236, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "plum tomatoes", + "shallots", + "fennel seeds", + "sourdough", + "fennel" + ] + }, + { + "id": 41868, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "mint leaves", + "english cucumber", + "kaffir lime leaves", + "Sriracha", + "seasoned rice wine vinegar", + "papaya", + "vietnamese fish sauce", + "fresh lime juice", + "tomatoes", + "thai basil", + "purple onion", + "galangal" + ] + }, + { + "id": 39501, + "cuisine": "japanese", + "ingredients": [ + "zucchini", + "sauce", + "eggs", + "flour", + "carrots", + "mayonaise", + "green onions", + "cabbage", + "dashi", + "bacon" + ] + }, + { + "id": 46641, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "olive oil", + "zucchini", + "all-purpose flour", + "onions", + "pepper", + "parmesan cheese", + "garlic", + "shredded mozzarella cheese", + "green bell pepper", + "small curd cottage cheese", + "ricotta cheese", + "broccoli", + "milk", + "lasagna noodles", + "salt", + "carrots" + ] + }, + { + "id": 4441, + "cuisine": "indian", + "ingredients": [ + "eggs", + "water", + "bay leaves", + "salt", + "mustard seeds", + "curry leaves", + "garlic paste", + "garam masala", + "cinnamon", + "green cardamom", + "ground turmeric", + "clove", + "black peppercorns", + "coconut", + "chili powder", + "cilantro leaves", + "onions", + "tomatoes", + "coconut oil", + "coriander powder", + "star anise", + "cumin seed" + ] + }, + { + "id": 23221, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "soup", + "garlic", + "celery", + "chicken broth", + "bread crumbs", + "meatballs", + "coarse salt", + "carrots", + "onions", + "black pepper", + "parmesan cheese", + "cannellini beans", + "croutons", + "ground beef", + "eggs", + "kosher salt", + "grated parmesan cheese", + "baby spinach", + "chopped parsley", + "italian seasoning" + ] + }, + { + "id": 40482, + "cuisine": "russian", + "ingredients": [ + "ground chicken", + "salt", + "large eggs", + "panko breadcrumbs", + "olive oil", + "onions", + "cremini mushrooms", + "flour" + ] + }, + { + "id": 37923, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "cooking spray", + "tomatoes", + "part-skim mozzarella cheese", + "salt", + "eggplant", + "part-skim ricotta cheese", + "fresh basil", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 4738, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "peeled fresh ginger", + "ground coriander", + "unsweetened coconut milk", + "zucchini", + "cilantro sprigs", + "onions", + "water", + "vegetable oil", + "garlic cloves", + "red lentils", + "jalapeno chilies", + "salt", + "ground cumin" + ] + }, + { + "id": 33680, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "lettuce leaves", + "baby spinach", + "shrimp", + "hot red pepper flakes", + "medium dry sherry", + "sesame oil", + "scallions", + "water", + "peeled fresh ginger", + "salt", + "sugar", + "water chestnuts", + "wonton wrappers", + "oyster sauce" + ] + }, + { + "id": 40181, + "cuisine": "cajun_creole", + "ingredients": [ + "baguette", + "hot sauce", + "large shrimp", + "coarse salt", + "garlic cloves", + "unsalted butter", + "freshly ground pepper", + "fresh rosemary", + "worcestershire sauce", + "fresh lemon juice" + ] + }, + { + "id": 8999, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "curly parsley", + "corn tortillas", + "lemon", + "lemon wedge" + ] + }, + { + "id": 46478, + "cuisine": "mexican", + "ingredients": [ + "pasta sauce", + "jalapeno chilies", + "tortilla chips", + "dried oregano", + "pasta", + "seasoning salt", + "garlic", + "chipotle peppers", + "brown sugar", + "lean ground meat", + "salsa", + "onions", + "black pepper", + "crushed red pepper flakes", + "taco seasoning", + "ground cumin" + ] + }, + { + "id": 37560, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "garlic", + "onions", + "apple cider vinegar", + "cayenne pepper", + "cumin", + "golden raisins", + "salt", + "coriander", + "tomato paste", + "cinnamon", + "cranberries", + "pears" + ] + }, + { + "id": 42937, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "coriander seeds", + "cinnamon sticks", + "tumeric", + "cardamom pods", + "black peppercorns", + "whole cloves", + "hot red pepper flakes", + "cumin seed" + ] + }, + { + "id": 41892, + "cuisine": "indian", + "ingredients": [ + "dough", + "garam masala", + "peas", + "rice flour", + "amchur", + "seeds", + "all-purpose flour", + "cashew nuts", + "leaves", + "chilli paste", + "cumin seed", + "ginger paste", + "fennel seeds", + "potatoes", + "salt", + "ghee" + ] + }, + { + "id": 43191, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "hoagie rolls", + "salami", + "giardiniera", + "smoked ham", + "pepperoni", + "butter", + "italian seasoning" + ] + }, + { + "id": 42868, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "vanilla beans", + "unsalted butter", + "dark rum", + "water", + "instant espresso powder", + "half & half", + "salt", + "sugar", + "milk", + "semisweet chocolate", + "all purpose unbleached flour", + "sliced almonds", + "large egg yolks", + "large eggs", + "whipping cream" + ] + }, + { + "id": 12051, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "beef sirloin", + "monterey jack", + "diced tomatoes", + "onions", + "jalapeno chilies", + "tortilla chips", + "black olives", + "chopped garlic" + ] + }, + { + "id": 24330, + "cuisine": "spanish", + "ingredients": [ + "white wine", + "salt", + "butter", + "sweet paprika", + "black pepper", + "garlic", + "medium shrimp", + "olive oil", + "cayenne pepper" + ] + }, + { + "id": 12812, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "diced tomatoes", + "garlic cloves", + "chopped cilantro fresh", + "ground black pepper", + "lamb shoulder", + "couscous", + "chicken stock", + "dried apricot", + "dried chickpeas", + "onions", + "olive oil", + "ginger", + "cinnamon sticks" + ] + }, + { + "id": 13380, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "sour cream", + "vegetable oil", + "shredded Monterey Jack cheese", + "chopped green chilies", + "salt", + "cooked chicken", + "corn tortillas" + ] + }, + { + "id": 4781, + "cuisine": "cajun_creole", + "ingredients": [ + "bell pepper", + "cayenne pepper", + "sliced green onions", + "tomatoes", + "heavy cream", + "celery", + "butter", + "thyme", + "corn", + "salt", + "onions" + ] + }, + { + "id": 8725, + "cuisine": "vietnamese", + "ingredients": [ + "tumeric", + "corn starch", + "canned coconut milk", + "green onions", + "salad oil", + "fish sauce", + "rice flour" + ] + }, + { + "id": 44979, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "cracked black pepper", + "country ham", + "chopped fresh chives", + "refrigerated fettuccine", + "egg yolks", + "garlic cloves", + "olive oil", + "shallots", + "fresh parsley" + ] + }, + { + "id": 2694, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "vanilla extract", + "kosher salt", + "flour", + "blanched almonds", + "water", + "almond extract", + "cranberries", + "sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 10298, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "salt", + "fresh cilantro", + "curry powder", + "ground turmeric", + "cauliflower", + "cayenne" + ] + }, + { + "id": 41121, + "cuisine": "indian", + "ingredients": [ + "white onion", + "CURRY GUY Smoked Garam Masala", + "CURRY GUY Smoked Spicy Salt", + "cashew nuts", + "garlic paste", + "chopped green chilies", + "double cream", + "coconut milk", + "ground cumin", + "tomato paste", + "olive oil", + "chicken breasts", + "cardamom", + "ginger paste", + "food colouring", + "chopped tomatoes", + "curry", + "coriander" + ] + }, + { + "id": 19676, + "cuisine": "chinese", + "ingredients": [ + "fresh cilantro", + "salt", + "chopped garlic", + "white pepper", + "kecap manis", + "scallions", + "water", + "daikon", + "rice flour", + "sambal ulek", + "large eggs", + "peanut oil" + ] + }, + { + "id": 13285, + "cuisine": "italian", + "ingredients": [ + "black beans", + "large eggs", + "salsa", + "green chile", + "shredded reduced fat cheddar cheese", + "non-fat sour cream", + "chopped cilantro", + "minced garlic", + "cooking spray", + "corn tortillas", + "black pepper", + "large egg whites", + "salt" + ] + }, + { + "id": 28399, + "cuisine": "southern_us", + "ingredients": [ + "stewing hen", + "catsup", + "red pepper flakes", + "whole kernel corn, drain", + "celery ribs", + "dried thyme", + "barbecue sauce", + "salt", + "butter beans", + "water", + "bay leaves", + "diced tomatoes", + "onions", + "black peppercorns", + "potatoes", + "parsley", + "meat bones" + ] + }, + { + "id": 16664, + "cuisine": "southern_us", + "ingredients": [ + "turnips", + "ground red pepper", + "bay leaf", + "water", + "chopped onion", + "seasoning salt", + "thyme sprigs", + "drummettes", + "mustard greens" + ] + }, + { + "id": 29337, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "saffron", + "chicken stock", + "butter", + "arborio rice", + "vegetable oil", + "white wine", + "onions" + ] + }, + { + "id": 16433, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "clove", + "cinnamon sticks", + "apple cider vinegar", + "watermelon" + ] + }, + { + "id": 36753, + "cuisine": "chinese", + "ingredients": [ + "cream style corn", + "cooked bacon", + "soy sauce", + "sherry", + "corn starch", + "chicken broth", + "egg whites", + "salt", + "water", + "boneless skinless chicken breasts" + ] + }, + { + "id": 5925, + "cuisine": "italian", + "ingredients": [ + "water", + "parsley", + "salt", + "celery", + "tomato paste", + "lemon zest", + "basil", + "thyme", + "olive oil", + "butter", + "carrots", + "onions", + "white wine", + "flour", + "garlic", + "shanks" + ] + }, + { + "id": 29621, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "dried apricot", + "cracked black pepper", + "onions", + "water", + "sea salt", + "extra-virgin olive oil", + "coriander", + "fresh coriander", + "raisins", + "ginger", + "chicken thighs", + "fennel bulb", + "paprika", + "garlic", + "cumin" + ] + }, + { + "id": 2657, + "cuisine": "mexican", + "ingredients": [ + "pork", + "guacamole", + "salt", + "chipotle salsa", + "avocado", + "radishes", + "queso fresco", + "corn tortillas", + "lime juice", + "vegetable oil", + "sour cream", + "pepper", + "shredded cabbage", + "pinto beans" + ] + }, + { + "id": 17793, + "cuisine": "mexican", + "ingredients": [ + "yellow squash", + "chili powder", + "salsa", + "chopped cilantro fresh", + "olive oil", + "reduced-fat sour cream", + "chopped onion", + "shredded Monterey Jack cheese", + "kidney beans", + "stewed tomatoes", + "corn tortillas", + "ground cumin", + "sugar", + "cooking spray", + "salt", + "ripe olives" + ] + }, + { + "id": 23072, + "cuisine": "russian", + "ingredients": [ + "powdered sugar", + "cinnamon", + "sour cream", + "cottage cheese", + "salt", + "sugar", + "vanilla", + "eggs", + "flour", + "oil" + ] + }, + { + "id": 38831, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken skinless thigh", + "yardlong beans", + "coarse salt", + "corn starch", + "dark soy sauce", + "black beans", + "sesame oil", + "garlic", + "chicken stock", + "white pepper", + "crimini mushrooms", + "ginger", + "onions", + "warm water", + "light soy sauce", + "vegetable oil", + "oyster sauce" + ] + }, + { + "id": 3905, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "ground nutmeg", + "cooking spray", + "vanilla extract", + "grated orange", + "ground ginger", + "fat free milk", + "large eggs", + "vegetable oil", + "all-purpose flour", + "brown sugar", + "granulated sugar", + "sweet potatoes", + "salt", + "ground cinnamon", + "baking soda", + "flour", + "fresh orange juice", + "cream cheese, soften" + ] + }, + { + "id": 49214, + "cuisine": "mexican", + "ingredients": [ + "reduced sodium condensed cream of chicken soup", + "corn tortillas", + "diced tomatoes", + "cooked chicken", + "cheese" + ] + }, + { + "id": 9914, + "cuisine": "italian", + "ingredients": [ + "pasta", + "vegetable oil", + "crushed red pepper", + "dried oregano", + "italian sausage", + "diced tomatoes", + "salt", + "green bell pepper", + "yellow bell pepper", + "yellow onion", + "dried basil", + "garlic", + "red bell pepper" + ] + }, + { + "id": 3505, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "paprika", + "fresh lemon juice", + "low-fat plain yogurt", + "minced ginger", + "salt", + "minced garlic", + "crushed red pepper flakes", + "fresh prawn", + "olive oil", + "green cardamom" + ] + }, + { + "id": 49290, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "ginger", + "yellow onion", + "coconut milk", + "frozen peas", + "cauliflower", + "garam masala", + "vegetable broth", + "peanut oil", + "chopped cilantro", + "cashew nuts", + "tomato paste", + "yukon gold potatoes", + "garlic", + "tamarind concentrate", + "onions", + "black pepper", + "red pepper flakes", + "salt", + "carrots", + "coriander" + ] + }, + { + "id": 17552, + "cuisine": "italian", + "ingredients": [ + "pasta", + "tomato sauce", + "grated parmesan cheese", + "garlic", + "great northern beans", + "water", + "basil", + "juice", + "chicken broth", + "black pepper", + "Red Gold® diced tomatoes", + "salt", + "spinach", + "garlic powder", + "cooked bacon", + "dried parsley" + ] + }, + { + "id": 6289, + "cuisine": "french", + "ingredients": [ + "cooking oil", + "salt", + "salmon steaks", + "ground black pepper", + "red wine", + "butter", + "scallions" + ] + }, + { + "id": 44524, + "cuisine": "italian", + "ingredients": [ + "ground turkey breast", + "fat-free chicken broth", + "onions", + "parsley", + "salt", + "parmesan cheese", + "garlic", + "escarole", + "eggs", + "orzo", + "Italian seasoned breadcrumbs" + ] + }, + { + "id": 27113, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "lasagna noodles", + "hamburger", + "tomatoes", + "olive oil", + "garlic", + "pepper", + "grated parmesan cheese", + "oregano", + "tomato sauce", + "small curd cottage cheese", + "salt" + ] + }, + { + "id": 12895, + "cuisine": "french", + "ingredients": [ + "butter", + "brie cheese", + "red potato", + "crème fraîche", + "bacon", + "salt and ground black pepper", + "yellow onion" + ] + }, + { + "id": 14113, + "cuisine": "irish", + "ingredients": [ + "reduced fat milk", + "butter", + "baking potatoes", + "black pepper", + "salt" + ] + }, + { + "id": 45872, + "cuisine": "chinese", + "ingredients": [ + "dried scallops", + "rice flour", + "rock sugar", + "ginger", + "chicken", + "turnips", + "chinese sausage", + "dried shrimp", + "pork belly", + "salt" + ] + }, + { + "id": 7112, + "cuisine": "italian", + "ingredients": [ + "baby spinach leaves", + "diced tomatoes", + "onions", + "Swanson Chicken Broth", + "elbow pasta", + "white kidney beans", + "olive oil", + "garlic", + "fresh basil leaves", + "romano cheese", + "pork sausage casing", + "ground beef" + ] + }, + { + "id": 13788, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "red bell pepper", + "Mexican cheese blend", + "chopped onion", + "refried black beans", + "salsa", + "canola oil", + "zucchini", + "sliced mushrooms" + ] + }, + { + "id": 22876, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "penne", + "marinara sauce", + "chicken thighs", + "fresh basil", + "parmesan cheese", + "onions", + "pepper", + "garlic" + ] + }, + { + "id": 37632, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "finely chopped fresh parsley", + "salt", + "shredded cheddar cheese", + "chile pepper", + "onions", + "pepper", + "potatoes", + "red bell pepper", + "bacon drippings", + "water", + "butter" + ] + }, + { + "id": 30646, + "cuisine": "jamaican", + "ingredients": [ + "jamaican jerk spice", + "canola oil", + "ground black pepper", + "onions", + "halibut fillets", + "salt", + "bell pepper", + "plum tomatoes" + ] + }, + { + "id": 36722, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cornbread mix", + "corn kernels", + "country ham" + ] + }, + { + "id": 3250, + "cuisine": "southern_us", + "ingredients": [ + "dijon mustard", + "eggs", + "fresh tarragon", + "Tabasco Pepper Sauce", + "mayonaise", + "mustard seeds" + ] + }, + { + "id": 22189, + "cuisine": "thai", + "ingredients": [ + "water", + "boneless skinless chicken breast halves", + "coconut milk", + "sliced green onions", + "fresh ginger root", + "chopped cilantro fresh", + "fish sauce", + "fresh lime juice" + ] + }, + { + "id": 27466, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "star anise", + "beansprouts", + "fish sauce", + "rice noodles", + "salt", + "coriander", + "spring onions", + "garlic", + "onions", + "sugar", + "ginger", + "cinnamon sticks", + "beef steak" + ] + }, + { + "id": 8418, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "grated parmesan cheese", + "fresh parsley", + "cherry tomatoes", + "boneless pork loin", + "bread crumb fresh", + "dry white wine", + "onions", + "pancetta", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 46835, + "cuisine": "thai", + "ingredients": [ + "water", + "coconut milk", + "chiles", + "red curry paste", + "tiger prawn", + "fish sauce", + "palm sugar", + "onions", + "scallops", + "oil", + "kaffir lime" + ] + }, + { + "id": 16298, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "ginger", + "lentils", + "clove", + "light cream", + "green chilies", + "olive oil spray", + "red kidney beans", + "water", + "garlic", + "onions", + "tomatoes", + "chili powder", + "cumin seed" + ] + }, + { + "id": 43171, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chopped green bell pepper", + "chopped onion", + "tomato sauce", + "corn", + "white rice", + "water", + "vegetable oil", + "ground beef", + "ketchup", + "garlic powder", + "salt" + ] + }, + { + "id": 13087, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "bittersweet chocolate", + "sugar", + "large eggs", + "hazelnut butter", + "unsalted butter", + "milk chocolate", + "pastry dough" + ] + }, + { + "id": 47780, + "cuisine": "mexican", + "ingredients": [ + "red kidney beans", + "sliced black olives", + "vegetable oil", + "ground beef", + "chopped tomatoes", + "flour tortillas", + "taco seasoning", + "corn", + "diced red onions", + "salsa", + "avocado", + "Mexican cheese blend", + "cooked chicken", + "sour cream" + ] + }, + { + "id": 11748, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "ground black pepper", + "ground turmeric", + "olive oil", + "ginger", + "curry powder", + "florets", + "lime zest", + "coriander seeds", + "cumin seed" + ] + }, + { + "id": 43605, + "cuisine": "chinese", + "ingredients": [ + "brussels sprouts", + "sweet chili sauce", + "maple syrup", + "scallions", + "red chili peppers", + "mushrooms", + "rice vinegar", + "toasted sesame seeds", + "soy sauce", + "sea salt", + "firm tofu", + "cooked rice", + "olive oil", + "cilantro leaves", + "toasted sesame oil" + ] + }, + { + "id": 34142, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken skinless thigh", + "lime juice", + "bell pepper", + "cheese", + "garlic cloves", + "ground cumin", + "white onion", + "olive oil", + "lime wedges", + "salsa", + "chopped cilantro", + "black beans", + "sweet onion", + "chili powder", + "purple onion", + "smoked paprika", + "avocado", + "kosher salt", + "flour tortillas", + "coarse salt", + "hot sauce", + "dried oregano" + ] + }, + { + "id": 9432, + "cuisine": "greek", + "ingredients": [ + "honey", + "ground walnuts", + "orange flower water", + "white sugar", + "sesame seeds", + "salt", + "ground almonds", + "olive oil", + "lemon", + "orange juice", + "water", + "baking soda", + "all-purpose flour", + "confectioners sugar" + ] + }, + { + "id": 11470, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large eggs", + "vanilla extract", + "slivered almonds", + "dried cherry", + "almond extract", + "baking soda", + "baking powder", + "all-purpose flour", + "large egg whites", + "cooking spray", + "salt" + ] + }, + { + "id": 782, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "pork spare ribs", + "garlic", + "water", + "vegetable oil", + "corn starch", + "chinese rice wine", + "leeks", + "scallions", + "dark soy sauce", + "black bean sauce", + "ginger", + "white sesame seeds" + ] + }, + { + "id": 49357, + "cuisine": "french", + "ingredients": [ + "pearl onions", + "fresh shiitake mushrooms", + "mustard seeds", + "water", + "mushrooms", + "carrots", + "flavored vinegar", + "olive oil", + "green peas", + "peppercorns", + "parsley sprigs", + "mint leaves", + "salt" + ] + }, + { + "id": 22176, + "cuisine": "italian", + "ingredients": [ + "parsley sprigs", + "watercress", + "capers", + "cherry tomatoes", + "cucumber", + "dressing", + "cooked turkey", + "black olives", + "romaine lettuce", + "fennel" + ] + }, + { + "id": 25435, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "olive oil", + "boneless skinless chicken breasts", + "salt", + "chow mein noodles", + "pepper", + "red cabbage", + "vegetable oil", + "edamame", + "sliced almonds", + "fresh ginger", + "sesame oil", + "rice vinegar", + "chile sauce", + "romaine lettuce", + "honey", + "shredded carrots", + "garlic", + "vinaigrette" + ] + }, + { + "id": 42335, + "cuisine": "french", + "ingredients": [ + "black pepper", + "tuna steaks", + "salt", + "couscous", + "tomatoes", + "large eggs", + "extra-virgin olive oil", + "fresh lemon juice", + "pitted kalamata olives", + "cooking spray", + "purple onion", + "green beans", + "water", + "anchovy paste", + "garlic cloves", + "fresh parsley" + ] + }, + { + "id": 7726, + "cuisine": "greek", + "ingredients": [ + "sea salt", + "organic chicken", + "basmati rice", + "fresh rosemary", + "cracked black pepper", + "lemon" + ] + }, + { + "id": 26674, + "cuisine": "spanish", + "ingredients": [ + "salt", + "yellow squash", + "cold water", + "zucchini" + ] + }, + { + "id": 1096, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "eggs", + "oil", + "potato starch", + "daikon", + "soy sauce" + ] + }, + { + "id": 4638, + "cuisine": "chinese", + "ingredients": [ + "water", + "boiling water", + "flour", + "crisco", + "yeast", + "sugar", + "oil" + ] + }, + { + "id": 14556, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "scallions", + "soy sauce", + "daikon", + "potato starch", + "vegetable oil", + "broth", + "silken tofu", + "dried bonito flakes" + ] + }, + { + "id": 1260, + "cuisine": "mexican", + "ingredients": [ + "water", + "cooking oil", + "diced tomatoes", + "shredded Monterey Jack cheese", + "picante sauce", + "sliced black olives", + "green onions", + "salt", + "refried beans", + "flour tortillas", + "paprika", + "shredded cheddar cheese", + "minced onion", + "chili powder", + "ground beef" + ] + }, + { + "id": 13696, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "artichokes", + "basil leaves", + "ricotta", + "kosher salt", + "grated lemon zest", + "bread ciabatta", + "vegetable oil" + ] + }, + { + "id": 41866, + "cuisine": "italian", + "ingredients": [ + "egg noodles", + "boneless skinless chicken breasts", + "Good Seasons Italian Dressing Mix", + "cream of chicken soup", + "cream cheese" + ] + }, + { + "id": 22908, + "cuisine": "mexican", + "ingredients": [ + "red wine vinegar", + "garlic cloves", + "honey", + "extra-virgin olive oil", + "ancho chile pepper", + "fresh orange juice", + "tamarind concentrate", + "black cod fillets", + "dry mustard", + "hot water" + ] + }, + { + "id": 21007, + "cuisine": "italian", + "ingredients": [ + "brandy", + "white sugar", + "pinenuts", + "figs", + "peaches", + "white wine" + ] + }, + { + "id": 34386, + "cuisine": "french", + "ingredients": [ + "sake", + "sea salt", + "ground black pepper", + "english cucumber", + "shallots", + "shucked oysters", + "rice vinegar" + ] + }, + { + "id": 9511, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "coarse salt", + "kimchi", + "fresh ginger", + "liquid", + "water", + "anchovy fillets", + "low sodium store bought chicken stock", + "silken tofu", + "bone in skinless chicken thigh", + "scallions" + ] + }, + { + "id": 22730, + "cuisine": "italian", + "ingredients": [ + "egg substitute", + "cooking spray", + "orange bell pepper", + "ham", + "black pepper", + "fat free milk", + "sliced green onions", + "shredded reduced fat cheddar cheese", + "salt" + ] + }, + { + "id": 34623, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "sea salt", + "crushed red pepper", + "mustard seeds", + "water", + "ground tumeric", + "ground coriander", + "tomato sauce", + "ginger", + "peanut oil", + "potatoes", + "garlic", + "cumin seed" + ] + }, + { + "id": 15152, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "chopped onion", + "corn starch", + "chicken stock", + "large eggs", + "garlic cloves", + "cooked chicken breasts", + "ground black pepper", + "long-grain rice", + "fresh parsley", + "fresh basil", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 14430, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "all-purpose flour", + "baking powder", + "whole milk", + "salt" + ] + }, + { + "id": 33730, + "cuisine": "spanish", + "ingredients": [ + "avocado", + "shallots", + "orange juice", + "chili", + "salt", + "green papaya", + "lime juice", + "vegetable broth", + "shrimp", + "papaya", + "cilantro leaves" + ] + }, + { + "id": 13026, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "jalapeno chilies", + "buttermilk", + "bread crumbs", + "lettuce leaves", + "mayonaise", + "kaiser rolls", + "extra-virgin olive oil", + "peaches", + "chicken cutlets" + ] + }, + { + "id": 30399, + "cuisine": "italian", + "ingredients": [ + "1% low-fat cottage cheese", + "pasta sauce", + "grated parmesan cheese", + "egg substitute", + "lasagna noodles, cooked and drained", + "frozen chopped spinach", + "part-skim mozzarella cheese" + ] + }, + { + "id": 21557, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "jalapeno chilies", + "tomatillos", + "sour cream", + "baby spinach leaves", + "green onions", + "salt", + "onions", + "pepper sauce", + "cilantro stems", + "heavy cream", + "corn tortillas", + "ground black pepper", + "vegetable oil", + "shrimp", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 15662, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "egg yolks", + "bananas", + "vanilla", + "milk", + "Nilla Wafers", + "flour", + "salt" + ] + }, + { + "id": 42064, + "cuisine": "greek", + "ingredients": [ + "sea salt", + "fresh lemon juice", + "green onions", + "extra-virgin olive oil", + "cucumber", + "lemon", + "freshly ground pepper", + "fresh parsley", + "tomatoes", + "bulgur wheat", + "hot water" + ] + }, + { + "id": 24682, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "peanuts", + "crushed red pepper flakes", + "tomato ketchup", + "snow peas", + "water", + "mushrooms", + "salt", + "corn starch", + "pepper", + "zucchini", + "sweet and sour sauce", + "sauce", + "ginger paste", + "green bell pepper", + "olive oil", + "chicken breasts", + "rice vinegar", + "red bell pepper" + ] + }, + { + "id": 10285, + "cuisine": "mexican", + "ingredients": [ + "whole kernel corn, drain", + "butter", + "jalapeno chilies", + "garlic salt", + "cream cheese" + ] + }, + { + "id": 31343, + "cuisine": "british", + "ingredients": [ + "salmon fillets", + "leeks", + "chicken stock cubes", + "water", + "double cream", + "chopped parsley", + "smoked haddock", + "dry white wine", + "sweet corn", + "fish fillets", + "potatoes", + "fish stock" + ] + }, + { + "id": 16757, + "cuisine": "russian", + "ingredients": [ + "sugar", + "sour cherries", + "dry white wine", + "almond extract", + "syrup", + "corn starch" + ] + }, + { + "id": 42092, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "garlic", + "onions", + "chili pepper", + "jalapeno chilies", + "fresh oregano", + "white sugar", + "roma tomatoes", + "salt", + "pork butt", + "water", + "vegetable oil", + "rolls" + ] + }, + { + "id": 47507, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "long-grain rice", + "chicken stock", + "cajun seasoning", + "onions", + "chicken breasts", + "garlic cloves", + "chorizo", + "red pepper", + "plum tomatoes" + ] + }, + { + "id": 37838, + "cuisine": "vietnamese", + "ingredients": [ + "mint", + "fresh ginger", + "salt", + "asian fish sauce", + "canned low sodium chicken broth", + "cooking oil", + "scallions", + "water", + "pork tenderloin", + "cucumber", + "tomatoes", + "lime juice", + "linguine", + "beansprouts" + ] + }, + { + "id": 22047, + "cuisine": "russian", + "ingredients": [ + "rye bread", + "water", + "active dry yeast", + "sugar", + "raisins" + ] + }, + { + "id": 43189, + "cuisine": "greek", + "ingredients": [ + "mushrooms", + "fresh lemon juice", + "olive oil", + "large garlic cloves", + "fresh parsley", + "boneless chicken breast halves", + "all-purpose flour", + "dried oregano", + "dry white wine", + "low salt chicken broth" + ] + }, + { + "id": 47076, + "cuisine": "vietnamese", + "ingredients": [ + "hoisin sauce", + "ground pork", + "bird chile", + "brown sugar", + "rice noodles", + "rice vinegar", + "panko breadcrumbs", + "shallots", + "garlic", + "mung bean sprouts", + "thai basil", + "cilantro", + "shiso leaves" + ] + }, + { + "id": 16154, + "cuisine": "cajun_creole", + "ingredients": [ + "light brown sugar", + "heavy cream", + "granulated sugar", + "salt", + "pecans", + "vanilla extract", + "butter" + ] + }, + { + "id": 23745, + "cuisine": "indian", + "ingredients": [ + "chicken broth", + "potatoes", + "rice", + "cauliflower", + "olive oil", + "garlic", + "tumeric", + "chicken breasts", + "onions", + "curry powder", + "ginger", + "cumin" + ] + }, + { + "id": 4977, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "margarine", + "eggs", + "salt", + "buttermilk", + "cornmeal", + "corn oil", + "all-purpose flour" + ] + }, + { + "id": 19764, + "cuisine": "chinese", + "ingredients": [ + "water", + "ginger", + "crab meat", + "green onions", + "flour", + "salt", + "sugar", + "ground pork" + ] + }, + { + "id": 24603, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "vegetable broth", + "garlic cloves", + "chopped cilantro fresh", + "coarse salt", + "grated jack cheese", + "fresh lime juice", + "dried oregano", + "hominy", + "yellow onion", + "poblano chiles", + "serrano chile", + "baby spinach leaves", + "tomatillos", + "ground allspice", + "fresh parsley", + "ground cumin" + ] + }, + { + "id": 34013, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "diced tomatoes", + "chopped onion", + "olive oil", + "linguine", + "fresh oregano leaves", + "light cream", + "shredded parmesan cheese", + "italian chicken sausage", + "dry red wine", + "dried oregano" + ] + }, + { + "id": 26383, + "cuisine": "chinese", + "ingredients": [ + "unsalted butter", + "whole milk", + "coconut extract", + "large eggs", + "granulated sugar", + "sweet rice flour", + "coconut", + "fine salt" + ] + }, + { + "id": 27640, + "cuisine": "mexican", + "ingredients": [ + "pinenuts", + "corn", + "garlic powder", + "guacamole", + "purple onion", + "chipotle peppers", + "fresh basil", + "kosher salt", + "olive oil", + "ground black pepper", + "cheese", + "red bell pepper", + "boneless skinless chicken breast halves", + "lime zest", + "black beans", + "lime", + "quinoa", + "chili powder", + "smoked paprika", + "chopped cilantro", + "black pepper", + "fresh cilantro", + "chopped tomatoes", + "jalapeno chilies", + "garlic", + "sour cream", + "cumin" + ] + }, + { + "id": 7214, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "chees fresh mozzarella", + "sourdough bread", + "butter", + "pepper", + "salt" + ] + }, + { + "id": 45744, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "whipped cream", + "cream cheese", + "baking soda", + "baking powder", + "cake flour", + "light brown sugar", + "large eggs", + "vanilla", + "fresh lemon juice", + "peaches", + "butter", + "salt" + ] + }, + { + "id": 20574, + "cuisine": "filipino", + "ingredients": [ + "water", + "hard-boiled egg", + "beef broth", + "medium shrimp", + "annatto seeds", + "salt", + "shrimp", + "pork rind", + "napa cabbage", + "scallions", + "noodles", + "pepper", + "cooking oil", + "all-purpose flour", + "pork shoulder" + ] + }, + { + "id": 4176, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "vegetable stock", + "cumin seed", + "zucchini", + "ginger", + "coriander", + "red chili peppers", + "sunflower oil", + "garlic cloves", + "prawns", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 1390, + "cuisine": "french", + "ingredients": [ + "reduced fat milk", + "large egg yolks", + "crystallized ginger", + "sugar", + "vanilla extract" + ] + }, + { + "id": 44044, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "butter", + "milk", + "cinnamon sugar", + "eggs", + "all-purpose flour", + "baking soda" + ] + }, + { + "id": 27890, + "cuisine": "korean", + "ingredients": [ + "spinach", + "fishcake", + "sesame oil", + "imitation crab meat", + "soy sauce", + "sesame seeds", + "rice vinegar", + "carrots", + "sugar", + "water", + "salt", + "kelp", + "eggs", + "sushi rice", + "pickled radish", + "seaweed", + "white sugar" + ] + }, + { + "id": 46633, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "spaghetti", + "hot red pepper flakes", + "brine-cured black olives", + "salt", + "stewed tomatoes", + "garlic cloves" + ] + }, + { + "id": 39813, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "grated parmesan cheese", + "garlic", + "arborio rice", + "radicchio", + "dry white wine", + "yellow onion", + "olive oil", + "low sodium chicken broth", + "dry bread crumbs", + "black pepper", + "unsalted butter", + "balsamic vinegar", + "fresh oregano" + ] + }, + { + "id": 13796, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "shallots", + "chopped fresh sage", + "boiling water", + "truffle oil", + "cracked black pepper", + "bucatini", + "canola oil", + "mushrooms", + "salt", + "heavy whipping cream", + "parmigiano reggiano cheese", + "dry sherry", + "garlic cloves", + "sage" + ] + }, + { + "id": 48275, + "cuisine": "irish", + "ingredients": [ + "sugar", + "baking powder", + "margarine", + "low-fat buttermilk", + "salt", + "baking soda", + "quick-cooking oats", + "brown sugar", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 7969, + "cuisine": "chinese", + "ingredients": [ + "broccoli florets", + "olive oil", + "soy sauce", + "fresh lemon juice", + "sesame seeds" + ] + }, + { + "id": 19916, + "cuisine": "southern_us", + "ingredients": [ + "water", + "egg yolks", + "butter", + "oil", + "eggs", + "unsalted butter", + "shallots", + "salt", + "milk", + "crimini mushrooms", + "lemon", + "sour cream", + "pork", + "flour", + "Tabasco Pepper Sauce", + "brie cheese" + ] + }, + { + "id": 39043, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "whipping cream", + "sugar", + "salt", + "baking powder" + ] + }, + { + "id": 49259, + "cuisine": "indian", + "ingredients": [ + "fresh tomatoes", + "coriander seeds", + "poppy seeds", + "ginger paste", + "black peppercorns", + "fresh curry leaves", + "chile pepper", + "cumin seed", + "fennel seeds", + "tumeric", + "boneless skinless chicken breasts", + "salt", + "garlic paste", + "water", + "vegetable oil", + "onions" + ] + }, + { + "id": 217, + "cuisine": "french", + "ingredients": [ + "whole milk", + "Grand Marnier", + "unsalted butter", + "salt", + "grated orange", + "pure vanilla extract", + "heavy cream", + "confectioners sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 21856, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "green chile", + "ground cayenne pepper", + "eggs", + "pitted olives", + "mayonaise" + ] + }, + { + "id": 28002, + "cuisine": "thai", + "ingredients": [ + "red pepper flakes", + "english cucumber", + "water", + "garlic", + "white sugar", + "shallots", + "rice vinegar", + "kosher salt", + "ginger", + "dried chile" + ] + }, + { + "id": 12718, + "cuisine": "chinese", + "ingredients": [ + "fish sauce", + "water chestnuts", + "shrimp", + "fresh ginger", + "salt", + "toasted sesame oil", + "won ton wrappers", + "cilantro", + "corn starch", + "large eggs", + "scallions", + "pork shoulder" + ] + }, + { + "id": 42917, + "cuisine": "italian", + "ingredients": [ + "pepper", + "extra large eggs", + "flat leaf parsley", + "chives", + "extra-virgin olive oil", + "baguette", + "sea salt", + "lemon", + "anchovy fillets" + ] + }, + { + "id": 22157, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "salt", + "cream of tartar", + "milk", + "eggs", + "baking powder", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 21274, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "honey", + "toast", + "ricotta", + "lemon zest" + ] + }, + { + "id": 34264, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "sweet potatoes", + "vanilla extract", + "kosher salt", + "buttermilk", + "pie dough", + "cinnamon", + "light brown sugar", + "unsalted butter", + "heavy cream" + ] + }, + { + "id": 39202, + "cuisine": "brazilian", + "ingredients": [ + "sugarcane sticks", + "lime", + "cachaca", + "lime wedges", + "superfine sugar" + ] + }, + { + "id": 43184, + "cuisine": "jamaican", + "ingredients": [ + "garlic cloves", + "onion powder", + "onions", + "white rice", + "allspice", + "black-eyed peas", + "coconut milk" + ] + }, + { + "id": 24235, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "vegetable oil", + "unsweetened cocoa powder", + "milk", + "all-purpose flour", + "shortening", + "butter" + ] + }, + { + "id": 14987, + "cuisine": "italian", + "ingredients": [ + "water", + "diced tomatoes", + "anchovy fillets", + "pasta", + "broccoli florets", + "extra-virgin olive oil", + "finely chopped fresh parsley", + "crushed red pepper flakes", + "sliced mushrooms", + "black pepper", + "green onions", + "garlic" + ] + }, + { + "id": 29776, + "cuisine": "jamaican", + "ingredients": [ + "lime juice", + "green chilies", + "soy sauce", + "spring onions", + "orange juice", + "ground cinnamon", + "fresh ginger root", + "ground allspice", + "ground cloves", + "garlic", + "chicken" + ] + }, + { + "id": 22336, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "flour tortillas", + "chicken", + "honey", + "heavy cream", + "lime juice", + "chili powder", + "garlic powder", + "green enchilada sauce" + ] + }, + { + "id": 12833, + "cuisine": "southern_us", + "ingredients": [ + "ground pepper", + "all-purpose flour", + "coarse salt", + "chicken", + "vegetable oil", + "corn starch", + "buttermilk" + ] + }, + { + "id": 12289, + "cuisine": "chinese", + "ingredients": [ + "vegetables", + "gai lan", + "oyster sauce" + ] + }, + { + "id": 27982, + "cuisine": "thai", + "ingredients": [ + "lime", + "thai chile", + "black pepper", + "cilantro stems", + "low salt chicken broth", + "sugar", + "black bass", + "Thai fish sauce", + "jasmine rice", + "large garlic cloves", + "fresh lime juice" + ] + }, + { + "id": 26763, + "cuisine": "southern_us", + "ingredients": [ + "syrup", + "chop fine pecan", + "salt", + "granulated sugar", + "butter", + "milk", + "sweet potatoes", + "all-purpose flour", + "firmly packed brown sugar", + "large eggs", + "vanilla extract" + ] + }, + { + "id": 1946, + "cuisine": "southern_us", + "ingredients": [ + "bitters", + "sugar", + "twists", + "rye whiskey", + "Angostura bitters", + "anise liqueur" + ] + }, + { + "id": 237, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon", + "sugar", + "cake flour", + "large eggs" + ] + }, + { + "id": 3674, + "cuisine": "moroccan", + "ingredients": [ + "caraway seeds", + "zucchini", + "carrots", + "cabbage", + "olive oil", + "green pepper", + "onions", + "chicken stock", + "chopped tomatoes", + "ground cardamom", + "ground turmeric", + "fresh coriander", + "salt", + "couscous" + ] + }, + { + "id": 26840, + "cuisine": "filipino", + "ingredients": [ + "lemon", + "onions", + "ground black pepper", + "salt", + "soy sauce", + "garlic", + "cooking oil", + "beef sirloin" + ] + }, + { + "id": 16461, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "chicken breasts", + "ginger", + "low-fat yogurt", + "onions", + "clove", + "water", + "cinnamon", + "canned tomatoes", + "cooking cream", + "tumeric", + "vegetable oil", + "garlic", + "cardamom", + "coriander", + "tomato paste", + "garam masala", + "butter", + "rice", + "chillies" + ] + }, + { + "id": 30023, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "jalapeno chilies", + "salt", + "chopped cilantro", + "water", + "orange bell pepper", + "red pepper", + "Mexican cheese", + "sliced green onions", + "black beans", + "olive oil", + "chili powder", + "enchilada sauce", + "onions", + "corn", + "quinoa", + "garlic", + "sour cream", + "ground cumin" + ] + }, + { + "id": 21199, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "olive oil", + "garlic cloves", + "sugar", + "fresh oregano", + "pepper", + "chopped onion", + "fresh basil", + "salt" + ] + }, + { + "id": 30989, + "cuisine": "chinese", + "ingredients": [ + "lo mein noodles", + "ginger", + "oyster sauce", + "reduced sodium soy sauce", + "rice vinegar", + "onions", + "ketchup", + "sesame oil", + "fresh mushrooms", + "beef steak", + "minced garlic", + "slaw mix", + "peanut oil" + ] + }, + { + "id": 20704, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "capers", + "red pepper flakes", + "salt", + "anchovies", + "kalamata", + "flat leaf parsley", + "peeled tomatoes", + "cracked black pepper", + "dried oregano" + ] + }, + { + "id": 41227, + "cuisine": "filipino", + "ingredients": [ + "shortening", + "salt", + "egg yolks", + "soy milk", + "all-purpose flour", + "eggs", + "baking powder" + ] + }, + { + "id": 42501, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "jalapeno chilies", + "chopped onion", + "hominy", + "lime wedges", + "ground black pepper", + "chicken breasts", + "garlic cloves", + "lower sodium chicken broth", + "radishes", + "cilantro leaves" + ] + }, + { + "id": 9203, + "cuisine": "mexican", + "ingredients": [ + "greek style plain yogurt", + "taco seasoning mix", + "shredded cheese", + "white corn tortillas", + "salsa", + "chicken breasts" + ] + }, + { + "id": 12303, + "cuisine": "korean", + "ingredients": [ + "garlic", + "onions", + "steamed rice", + "scallions", + "soy sauce", + "round steaks", + "bell pepper", + "oil" + ] + }, + { + "id": 11587, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "olive oil", + "yellow bell pepper", + "onions", + "refrigerated dinner rolls", + "marinara sauce", + "cornmeal", + "pasta sauce", + "grated parmesan cheese", + "red bell pepper", + "mozzarella cheese", + "large garlic cloves", + "fresh parsley" + ] + }, + { + "id": 6353, + "cuisine": "french", + "ingredients": [ + "milk", + "salt", + "unsalted butter", + "active dry yeast", + "all-purpose flour", + "sugar", + "large eggs" + ] + }, + { + "id": 47509, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "marsala wine", + "Thai red curry paste", + "garlic cloves", + "fish sauce", + "butter", + "crabmeat", + "chicken stock", + "granny smith apples", + "penne pasta", + "fresh basil", + "curry powder", + "chopped onion" + ] + }, + { + "id": 17642, + "cuisine": "italian", + "ingredients": [ + "fresh chives", + "ground black pepper", + "shallots", + "arugula", + "warm water", + "olive oil", + "parmigiano reggiano cheese", + "flat leaf parsley", + "crumbled goat cheese", + "prosciutto", + "cooking spray", + "apricots", + "yellow corn meal", + "kosher salt", + "dry yeast", + "chopped fresh thyme", + "bread flour" + ] + }, + { + "id": 21600, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "olive oil", + "salsa", + "cumin", + "black beans", + "cracked black pepper", + "ground beef", + "jack cheese", + "chili powder", + "yellow onion", + "kosher salt", + "garlic", + "noodles" + ] + }, + { + "id": 37446, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed brown sugar", + "brewed coffee", + "all-purpose flour", + "eggs", + "baking soda", + "salt", + "cola", + "ground ginger", + "vegetable oil cooking spray", + "baking powder", + "grated lemon zest", + "ground cinnamon", + "pitted date", + "vegetable oil", + "chopped pecans" + ] + }, + { + "id": 18887, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "peeled fresh ginger", + "boiling water", + "fennel seeds", + "water", + "orange rind", + "sugar", + "cinnamon sticks", + "bean threads", + "sherry", + "chicken thighs" + ] + }, + { + "id": 3550, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "rib roast", + "extra-virgin olive oil", + "ground cumin", + "minced garlic", + "red wine vinegar", + "spanish paprika", + "table salt", + "golden raisins", + "dry sherry", + "ground coriander", + "black pepper", + "shallots", + "cracked black pepper", + "flat leaf parsley" + ] + }, + { + "id": 8090, + "cuisine": "brazilian", + "ingredients": [ + "lime juice", + "chile pepper", + "green pepper", + "onions", + "water", + "sweet potatoes", + "cilantro", + "green onion bottoms", + "salmon fillets", + "zucchini", + "sea salt", + "coconut milk", + "tomatoes", + "olive oil", + "red pepper", + "garlic cloves" + ] + }, + { + "id": 47983, + "cuisine": "french", + "ingredients": [ + "water", + "fresh tarragon", + "white wine", + "baking potatoes", + "stock", + "lobster", + "tomato paste", + "ground black pepper", + "salt" + ] + }, + { + "id": 8657, + "cuisine": "filipino", + "ingredients": [ + "water", + "garlic cloves", + "soy sauce", + "cooking oil", + "pepper", + "salt", + "pork", + "vinegar", + "bay leaf" + ] + }, + { + "id": 14290, + "cuisine": "jamaican", + "ingredients": [ + "sorrel", + "granulated sugar", + "ginger root", + "lime juice", + "pimentos", + "brown sugar", + "rum", + "boiling water", + "clove", + "leaves", + "rice" + ] + }, + { + "id": 27200, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "guacamole", + "enchilada sauce", + "mozzarella cheese", + "pepper jack", + "cilantro", + "black beans", + "diced green chilies", + "green onions", + "sour cream", + "tomatillo salsa", + "potatoes", + "salsa" + ] + }, + { + "id": 2391, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "baking potatoes" + ] + }, + { + "id": 7080, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "garlic", + "plum tomatoes", + "mozzarella cheese", + "sea salt", + "yeast", + "semolina flour", + "ground black pepper", + "fine sea salt", + "golden caster sugar", + "water", + "extra-virgin olive oil", + "bread flour" + ] + }, + { + "id": 179, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic powder", + "boneless skinless chicken breasts", + "button mushrooms", + "essence", + "spinach", + "dried thyme", + "unsalted butter", + "butter", + "salt", + "cayenne pepper", + "black pepper", + "olive oil", + "lasagna noodles", + "paprika", + "all-purpose flour", + "dried oregano", + "nutmeg", + "milk", + "parmesan cheese", + "onion powder", + "garlic", + "yellow onion" + ] + }, + { + "id": 31287, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "chili powder", + "salt", + "sour cream", + "ground black pepper", + "butter", + "tortilla shells", + "chicken", + "minced garlic", + "onion powder", + "yellow onion", + "garlic salt", + "flour", + "cilantro", + "green chilies", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 2140, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "vegetable oil", + "nigella seeds", + "green chile", + "green onions", + "cumin seed", + "fresh cilantro", + "salt", + "ground cumin", + "chile powder", + "potatoes", + "all-purpose flour" + ] + }, + { + "id": 40163, + "cuisine": "mexican", + "ingredients": [ + "red chili powder", + "bay leaves", + "ancho powder", + "thyme", + "clove", + "coriander seeds", + "red wine vinegar", + "ground pork", + "oregano", + "granulated garlic", + "apple cider vinegar", + "paprika", + "peppercorns", + "ground cinnamon", + "cayenne", + "sea salt", + "cumin seed" + ] + }, + { + "id": 36650, + "cuisine": "mexican", + "ingredients": [ + "water", + "chopped onion", + "turkey breast", + "masa harina", + "sugar", + "tomatillos", + "garlic cloves", + "fresh parsley", + "jalapeno chilies", + "peanut oil", + "nut meal", + "fat free less sodium chicken broth", + "vegetable shortening", + "green beans", + "chopped cilantro fresh" + ] + }, + { + "id": 31028, + "cuisine": "mexican", + "ingredients": [ + "sliced black olives", + "cheese", + "green onions", + "sour cream", + "garlic powder", + "chicken breasts", + "flour tortillas", + "enchilada sauce" + ] + }, + { + "id": 12116, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "butter", + "white sugar", + "eggs", + "sweet potatoes", + "all-purpose flour", + "firmly packed brown sugar", + "flaked coconut", + "crushed pineapple", + "chop fine pecan", + "vanilla extract" + ] + }, + { + "id": 13065, + "cuisine": "southern_us", + "ingredients": [ + "cinnamon", + "mini marshmallows", + "brown sugar", + "butter", + "sweet potatoes" + ] + }, + { + "id": 17879, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "egg whites", + "frozen chopped spinach", + "grated parmesan cheese", + "italian seasoning", + "ground nutmeg", + "low-fat mozzarella cheese", + "low-fat cottage cheese", + "jumbo pasta shells" + ] + }, + { + "id": 43556, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "ground ginger", + "salt", + "msg", + "pork belly", + "chinese five-spice powder" + ] + }, + { + "id": 45179, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "sauce", + "minced garlic", + "grated parmesan cheese", + "noodles", + "vegetable oil spray", + "fresh mushrooms", + "crushed tomatoes", + "dry white wine", + "dried oregano" + ] + }, + { + "id": 10536, + "cuisine": "japanese", + "ingredients": [ + "sea salt", + "frozen edamame beans" + ] + }, + { + "id": 16747, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "toasted pine nuts", + "grated parmesan cheese", + "fresh basil leaves", + "garlic", + "plum tomatoes", + "olive oil", + "Italian bread" + ] + }, + { + "id": 22526, + "cuisine": "italian", + "ingredients": [ + "pasta", + "ground black pepper", + "onions", + "cottage cheese", + "canned tomatoes", + "tomato sauce", + "grated parmesan cheese", + "dried oregano", + "mozzarella cheese", + "salt" + ] + }, + { + "id": 48541, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "sour cream", + "green enchilada sauce", + "flour tortillas", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 8411, + "cuisine": "french", + "ingredients": [ + "beef sirloin", + "boneless skinless chicken breast halves", + "pepper", + "celery", + "pie crust", + "pork roast", + "salt", + "onions" + ] + }, + { + "id": 37561, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "ginger", + "onions", + "soy sauce", + "sesame oil", + "dried bonito flakes", + "sugar", + "udon", + "salt", + "cabbage", + "pepper", + "sliced carrots", + "sauce" + ] + }, + { + "id": 31497, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "boneless skinless chicken breast halves", + "green chile", + "sour cream", + "enchilada sauce", + "shredded cheddar cheese", + "corn tortillas" + ] + }, + { + "id": 43158, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "all-purpose flour", + "water", + "butter", + "sugar", + "large eggs", + "active dry yeast", + "salt" + ] + }, + { + "id": 22065, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "salted butter", + "mung beans", + "whole milk", + "flan", + "water", + "bananas", + "egg yolks", + "jam", + "greater yam", + "brown sugar", + "coconut", + "gelatin", + "sweet potatoes", + "condensed milk", + "jackfruit", + "evaporated milk", + "agar", + "vanilla extract", + "ice" + ] + }, + { + "id": 21914, + "cuisine": "italian", + "ingredients": [ + "pepper", + "potatoes", + "basil pesto sauce", + "olive oil", + "salt", + "cherry tomatoes", + "balsamic vinegar", + "mozzarella cheese", + "parma ham", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 14501, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "Sriracha", + "coconut milk", + "salmon", + "fresh ginger", + "sea salt", + "avocado", + "fresh cilantro", + "bell pepper", + "fresh leav spinach", + "ground pepper", + "garlic" + ] + }, + { + "id": 17104, + "cuisine": "chinese", + "ingredients": [ + "water", + "vegetable oil", + "soy sauce", + "green onions", + "garlic chili sauce", + "tomato sauce", + "granulated sugar", + "sauce", + "minced garlic", + "chicken breasts" + ] + }, + { + "id": 32660, + "cuisine": "chinese", + "ingredients": [ + "pasta", + "parmesan cheese", + "garlic", + "sour cream", + "pepper", + "red pepper flakes", + "yellow onion", + "chipotles in adobo", + "tomato sauce", + "boneless skinless chicken breasts", + "salt", + "dried red chile peppers", + "olive oil", + "heavy cream", + "shrimp", + "italian seasoning" + ] + }, + { + "id": 18429, + "cuisine": "irish", + "ingredients": [ + "ground black pepper", + "garlic", + "dried thyme", + "butter", + "carrots", + "canned low sodium chicken broth", + "baking potatoes", + "salt", + "vegetables", + "heavy cream", + "onions" + ] + }, + { + "id": 18417, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "sugar", + "light corn syrup", + "boiling water", + "grated orange peel", + "large eggs", + "Grand Marnier", + "unflavored gelatin", + "chocolate truffle", + "whipping cream", + "unsweetened cocoa powder", + "powdered sugar", + "semisweet chocolate", + "vanilla extract" + ] + }, + { + "id": 40724, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "butter", + "yellow onion", + "fresh cilantro", + "white rice", + "cumin", + "kosher salt", + "diced tomatoes", + "smoked paprika", + "red chile powder", + "garlic" + ] + }, + { + "id": 4788, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "cooked chicken", + "dry bread crumbs", + "mayonaise", + "parmesan cheese", + "russet potatoes", + "sour cream", + "garlic powder", + "vegetable oil", + "grated lemon zest", + "pepper", + "large eggs", + "salt" + ] + }, + { + "id": 19570, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "large eggs", + "vanilla extract", + "crushed pineapple", + "sugar", + "baking powder", + "salt", + "chopped pecans", + "baking soda", + "vegetable oil", + "all-purpose flour", + "allspice", + "ground cinnamon", + "bananas", + "butter", + "cream cheese" + ] + }, + { + "id": 4137, + "cuisine": "british", + "ingredients": [ + "pepper", + "carrots", + "pork shoulder", + "allspice", + "pork", + "flour", + "thyme sprigs", + "peppercorns", + "kosher salt", + "fresh pork fat", + "bay leaf", + "oregano", + "water", + "lard", + "onions" + ] + }, + { + "id": 22748, + "cuisine": "korean", + "ingredients": [ + "sugar", + "vinegar", + "sesame seeds", + "salt", + "minced garlic", + "sesame oil", + "asparagus", + "Gochujang base" + ] + }, + { + "id": 20100, + "cuisine": "vietnamese", + "ingredients": [ + "black bean sauce", + "sesame oil", + "chuck steaks", + "lemongrass", + "green onions", + "hot chili sauce", + "pepper", + "hoisin sauce", + "salt", + "corn starch", + "fresh cilantro", + "baking powder", + "oil" + ] + }, + { + "id": 37443, + "cuisine": "southern_us", + "ingredients": [ + "onion powder", + "frozen corn", + "bacon drippings", + "basil", + "collards", + "sea salt", + "beef broth", + "granulated garlic", + "crushed red pepper flakes" + ] + }, + { + "id": 1047, + "cuisine": "italian", + "ingredients": [ + "minced onion", + "linguine", + "parsley sprigs", + "butter", + "sour cream", + "grated parmesan cheese", + "garlic cloves", + "milk", + "cracked black pepper", + "fresh parsley" + ] + }, + { + "id": 2326, + "cuisine": "mexican", + "ingredients": [ + "milk", + "extra sharp cheddar cheese", + "green bell pepper", + "salt", + "sausage casings", + "unsalted butter", + "cavatappi", + "all-purpose flour" + ] + }, + { + "id": 1601, + "cuisine": "southern_us", + "ingredients": [ + "sweet potatoes", + "ginger", + "honey", + "cinnamon", + "all-purpose flour", + "ground cloves", + "baking powder", + "salt", + "unsalted butter", + "buttermilk" + ] + }, + { + "id": 44281, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "carrots", + "onions", + "water", + "chili powder", + "celery", + "soy sauce", + "whole milk", + "ground cayenne pepper", + "ground cumin", + "garlic powder", + "potato flakes", + "dill weed" + ] + }, + { + "id": 23344, + "cuisine": "chinese", + "ingredients": [ + "dried cloud ears", + "fresh ginger", + "firm tofu", + "bamboo shoots", + "white pepper", + "lily buds", + "corn starch", + "cider vinegar", + "green onions", + "pork butt", + "sugar", + "large eggs", + "fat skimmed chicken broth" + ] + }, + { + "id": 11360, + "cuisine": "greek", + "ingredients": [ + "garlic", + "greek yogurt", + "pepper", + "lemon juice", + "fresh dill", + "salt", + "ouzo", + "cucumber" + ] + }, + { + "id": 34178, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "bacon slices", + "water", + "whole milk", + "parmigiano reggiano cheese", + "rosemary", + "quickcooking grits" + ] + }, + { + "id": 16654, + "cuisine": "british", + "ingredients": [ + "butter", + "salt", + "red apples", + "chopped fresh thyme", + "heavy cream", + "onions", + "pepper", + "dry hard cider", + "pork loin chops", + "Cox's Orange Pippin", + "garlic", + "white sugar" + ] + }, + { + "id": 26805, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "crushed red pepper", + "capers", + "olive oil", + "anchovy fillets", + "crushed tomatoes", + "chopped onion", + "pitted kalamata olives", + "ground black pepper", + "herbes de provence" + ] + }, + { + "id": 12205, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "granulated sugar", + "flaxseed", + "baking soda", + "vanilla extract", + "unsalted almonds", + "dark chocolate chip", + "salt", + "whole wheat flour", + "large eggs", + "dark brown sugar" + ] + }, + { + "id": 25219, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "yellow onion", + "red bell pepper", + "green onions", + "carrots", + "canola oil", + "large eggs", + "oyster sauce", + "frozen peas", + "cooked rice", + "garlic", + "shrimp" + ] + }, + { + "id": 49536, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "minced ginger", + "minced garlic", + "canola oil", + "shiro miso", + "water", + "soy sauce", + "pork butt" + ] + }, + { + "id": 30595, + "cuisine": "chinese", + "ingredients": [ + "turnips", + "boneless skinless chicken breasts", + "salt", + "honey", + "ginger", + "scallions", + "soy sauce", + "brown rice", + "safflower", + "flour", + "garlic", + "lemon juice" + ] + }, + { + "id": 33735, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "dried thyme", + "salt", + "dried rosemary", + "extra lean ground beef", + "basil dried leaves", + "onions", + "tomato sauce", + "diced tomatoes", + "bay leaf", + "pepper", + "garlic", + "marjoram" + ] + }, + { + "id": 36063, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "chicken sausage", + "worcestershire sauce", + "salt", + "onions", + "ground cumin", + "black pepper", + "jalapeno chilies", + "diced tomatoes", + "red bell pepper", + "white sugar", + "green bell pepper", + "Sriracha", + "bacon", + "cayenne pepper", + "low sodium beef stock", + "chili beans", + "minced garlic", + "chili powder", + "paprika", + "ground beef", + "dried oregano" + ] + }, + { + "id": 6147, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "milk", + "white poppy seeds", + "salt", + "garlic cloves", + "onions", + "ground turmeric", + "clove", + "sliced almonds", + "cayenne", + "sunflower oil", + "cumin seed", + "chillies", + "basmati rice", + "green cardamom pods", + "brown sugar", + "coriander seeds", + "butter", + "natural yogurt", + "fresh mint", + "chopped fresh mint", + "black peppercorns", + "fresh ginger", + "chili powder", + "cilantro leaves", + "cinnamon sticks", + "chicken thighs", + "saffron" + ] + }, + { + "id": 26708, + "cuisine": "irish", + "ingredients": [ + "granny smith apples", + "dried cranberries", + "clove", + "apple juice", + "fresh ginger", + "sugar", + "cranberries" + ] + }, + { + "id": 24840, + "cuisine": "italian", + "ingredients": [ + "pepper", + "condensed tomato soup", + "condensed cheddar cheese soup", + "italian seasoning", + "garlic powder", + "pepperoni", + "onions", + "milk", + "salt", + "ground beef", + "brown sugar", + "potatoes", + "shredded mozzarella cheese", + "dried oregano" + ] + }, + { + "id": 19829, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "zucchini", + "butter", + "olive oil", + "dry white wine", + "onions", + "cherry tomatoes", + "grated parmesan cheese", + "fresh lemon juice", + "arborio rice", + "sea scallops", + "parsley", + "nonfat chicken broth" + ] + }, + { + "id": 27928, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "red pepper", + "tomatoes", + "jalapeno chilies", + "green pepper", + "fresh cilantro", + "shoepeg corn", + "black beans", + "green onions", + "celery" + ] + }, + { + "id": 24016, + "cuisine": "italian", + "ingredients": [ + "passion fruit", + "water", + "sugar", + "mango", + "half & half" + ] + }, + { + "id": 45655, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper", + "plum tomatoes", + "half & half", + "gemelli", + "grated parmesan cheese", + "low salt chicken broth", + "large garlic cloves", + "arugula" + ] + }, + { + "id": 7624, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "vegetable oil", + "scallions", + "sole", + "minced garlic", + "cooking wine", + "soy sauce", + "ginger", + "ground white pepper", + "dried black beans", + "sesame oil", + "salt" + ] + }, + { + "id": 13675, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "chinese sausage", + "rice flour", + "chinese turnip", + "chinese black mushrooms", + "scallions", + "corn starch", + "white pepper", + "salt", + "oyster sauce", + "water", + "oil", + "dried shrimp" + ] + }, + { + "id": 21903, + "cuisine": "mexican", + "ingredients": [ + "reduced sodium chicken broth", + "balsamic vinegar", + "giblet", + "ancho chile pepper", + "cayenne", + "cinnamon", + "carrots", + "onions", + "olive oil", + "spices", + "turkey", + "bittersweet chocolate", + "flour", + "large garlic cloves", + "toasted almonds", + "toasted sesame seeds" + ] + }, + { + "id": 23710, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "prosciutto", + "extra-virgin olive oil", + "gorgonzola", + "white wine", + "grated parmesan cheese", + "salt", + "chicken stock", + "cream", + "shallots", + "squid", + "fresh basil", + "ground black pepper", + "garlic" + ] + }, + { + "id": 25911, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "salt", + "all purpose unbleached flour", + "ground cumin", + "chili powder", + "dried oregano", + "onion flakes" + ] + }, + { + "id": 46095, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "jalapeno chilies", + "rotelle", + "Ranch Style Beans", + "oregano", + "milk", + "baking powder", + "salt", + "onions", + "eggs", + "batter", + "chili powder", + "oil", + "browning", + "sugar", + "flour", + "garlic", + "cornmeal" + ] + }, + { + "id": 41244, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "lemon zest", + "vegetable broth", + "flat leaf parsley", + "polenta corn meal", + "radishes", + "peas", + "baby carrots", + "asparagus", + "green onions", + "salt", + "olive oil", + "herbs", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 29331, + "cuisine": "moroccan", + "ingredients": [ + "ground pepper", + "paprika", + "couscous", + "prunes", + "coarse salt", + "cilantro leaves", + "onions", + "olive oil", + "apricot halves", + "leg of lamb", + "whole peeled tomatoes", + "garlic", + "fresh lime juice" + ] + }, + { + "id": 19374, + "cuisine": "moroccan", + "ingredients": [ + "paprika", + "fresh parsley", + "ground cinnamon", + "fresh lemon juice", + "garlic cloves", + "ground cumin", + "sugar", + "carrots" + ] + }, + { + "id": 35036, + "cuisine": "italian", + "ingredients": [ + "vanilla beans", + "whipping cream", + "blackberries", + "sugar", + "whole milk", + "fresh lemon juice", + "unflavored gelatin", + "golden brown sugar", + "crème fraîche", + "crème de cassis", + "vegetable oil", + "grated lemon peel" + ] + }, + { + "id": 9252, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "diced tomatoes", + "minced garlic", + "onions", + "pasta sauce", + "stewed tomatoes", + "dried thyme" + ] + }, + { + "id": 2616, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "bread crumbs", + "garlic", + "ground beef", + "eggs", + "water", + "shredded mozzarella cheese", + "tomato paste", + "pepper", + "salt", + "onions", + "romano cheese", + "marinara sauce", + "oil" + ] + }, + { + "id": 45597, + "cuisine": "chinese", + "ingredients": [ + "mushrooms", + "vegetable broth", + "ginger root", + "jackfruit", + "shredded cabbage", + "baby carrots", + "soy sauce", + "lettuce leaves", + "garlic", + "onions", + "hoisin sauce", + "green onions", + "dark sesame oil" + ] + }, + { + "id": 17619, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "asparagus spears", + "olive oil", + "dry white wine", + "fresh parsley", + "prosciutto", + "butter", + "arborio rice", + "leeks", + "low salt chicken broth" + ] + }, + { + "id": 40306, + "cuisine": "indian", + "ingredients": [ + "Biryani Masala", + "ginger", + "green chilies", + "bay leaf", + "basmati rice", + "spices", + "garlic", + "cardamom", + "onions", + "chicken drumsticks", + "cilantro leaves", + "coconut milk", + "cashew nuts", + "mint leaves", + "star anise", + "curds", + "ghee", + "ground turmeric" + ] + }, + { + "id": 44051, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "strawberries", + "sugar", + "crumbs", + "large eggs", + "cream cheese", + "mascarpone", + "balsamic vinegar" + ] + }, + { + "id": 18702, + "cuisine": "cajun_creole", + "ingredients": [ + "hot pepper sauce", + "garlic", + "red bell pepper", + "crushed tomatoes", + "crushed red pepper flakes", + "salt", + "green bell pepper", + "butter", + "smoked sausage", + "onions", + "ground black pepper", + "white rice", + "shrimp" + ] + }, + { + "id": 15775, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "tortillas", + "salsa", + "chicken thighs", + "lime", + "chili powder", + "sour cream", + "pepper", + "jalapeno chilies", + "shredded cheese", + "cumin", + "olive oil", + "salt", + "onions" + ] + }, + { + "id": 15788, + "cuisine": "southern_us", + "ingredients": [ + "butter-margarine blend", + "chili sauce", + "cumin seed", + "poblano chiles", + "chopped green bell pepper", + "twists", + "garlic cloves", + "cider vinegar", + "chopped onion", + "unsweetened chocolate", + "cooked chicken breasts", + "brown sugar", + "cooking spray", + "ground coriander", + "low salt chicken broth" + ] + }, + { + "id": 7204, + "cuisine": "french", + "ingredients": [ + "large eggs", + "calimyrna figs", + "hazelnuts", + "salt", + "sugar", + "baking powder", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 30526, + "cuisine": "italian", + "ingredients": [ + "garlic", + "grated parmesan cheese", + "Italian bread", + "hellmann' or best food real mayonnais", + "artichok heart marin" + ] + }, + { + "id": 25646, + "cuisine": "brazilian", + "ingredients": [ + "tapioca starch", + "eggs", + "grating cheese", + "vegetable oil", + "water", + "salt" + ] + }, + { + "id": 20273, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed brown sugar", + "large eggs", + "flaked coconut", + "cream sweeten whip", + "brown sugar", + "cracker crumbs", + "cream cheese, soften", + "pecans", + "chop fine pecan", + "butter", + "ground cinnamon", + "kahlúa", + "sweet potatoes", + "all-purpose flour" + ] + }, + { + "id": 35990, + "cuisine": "thai", + "ingredients": [ + "low sodium soy sauce", + "sea scallops", + "chile puree", + "fresh lemon juice", + "fat free less sodium chicken broth", + "peeled fresh ginger", + "long-grain rice", + "fresh basil", + "asparagus", + "grated lemon zest", + "corn starch", + "olive oil", + "basil", + "garlic cloves" + ] + }, + { + "id": 39123, + "cuisine": "filipino", + "ingredients": [ + "pineapple chunks", + "raisins", + "celery", + "seasoning salt", + "elbow macaroni", + "mayonaise", + "apples", + "white sugar", + "boneless skinless chicken breasts", + "carrots" + ] + }, + { + "id": 34611, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "all-purpose flour", + "angel hair", + "garlic", + "shrimp", + "butter", + "lemon juice", + "milk", + "salt" + ] + }, + { + "id": 17351, + "cuisine": "jamaican", + "ingredients": [ + "pineapple chunks", + "raisins", + "ground cumin", + "lime zest", + "jamaican jerk season", + "onions", + "dried thyme", + "worcestershire sauce", + "ground ginger", + "sweet potatoes", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 19297, + "cuisine": "italian", + "ingredients": [ + "eggs", + "grated romano cheese", + "Italian bread", + "olive oil", + "ground pork", + "ground beef", + "water", + "ground veal", + "flat leaf parsley", + "salt and ground black pepper", + "garlic" + ] + }, + { + "id": 13584, + "cuisine": "jamaican", + "ingredients": [ + "potatoes", + "garlic", + "flat leaf parsley", + "mini phyllo dough shells", + "green onions", + "chopped onion", + "beef stock", + "salt", + "ground beef", + "curry powder", + "peas", + "carrots" + ] + }, + { + "id": 1802, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "mustard greens", + "cumin seed", + "spinach", + "unsalted butter", + "salt", + "canola oil", + "cayenne", + "garlic", + "serrano chile", + "water", + "extra firm tofu", + "yellow onion" + ] + }, + { + "id": 390, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper flakes", + "rigatoni", + "butter", + "boneless skinless chicken breast halves", + "grated parmesan cheese", + "dried parsley", + "diced tomatoes", + "italian salad dressing" + ] + }, + { + "id": 8211, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "extra-virgin olive oil", + "fresh oregano leaves", + "garlic cloves", + "caper berries", + "ground black pepper", + "carrots", + "green olives", + "purple onion" + ] + }, + { + "id": 31126, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "whole milk", + "carrots", + "sliced almonds", + "raisins", + "sugar", + "vegetable oil", + "almonds", + "clotted cream" + ] + }, + { + "id": 20861, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "garlic cloves", + "ground cumin", + "reduced fat sharp cheddar cheese", + "hot sauce", + "chopped cilantro fresh", + "frozen chopped spinach", + "salsa", + "thin pizza crust", + "black beans", + "chopped onion", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 27636, + "cuisine": "italian", + "ingredients": [ + "boneless chicken skinless thigh", + "medium egg noodles", + "onions", + "capers", + "seasoned bread crumbs", + "beer", + "black pepper", + "salt", + "pitted kalamata olives", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 5207, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "dumpling wrappers", + "chili oil", + "pork shoulder", + "white pepper", + "vegetable oil", + "rice vinegar", + "soy sauce", + "fresh ginger", + "garlic", + "kosher salt", + "napa cabbage", + "scallions" + ] + }, + { + "id": 46396, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "round steaks", + "eggs", + "pan drippings", + "flour", + "oil", + "pepper", + "salt" + ] + }, + { + "id": 1603, + "cuisine": "irish", + "ingredients": [ + "eggs", + "pastry dough", + "bacon grease", + "water", + "salt", + "pepper", + "baking potatoes", + "corned beef", + "milk", + "chopped onion" + ] + }, + { + "id": 21536, + "cuisine": "filipino", + "ingredients": [ + "crushed garlic", + "cooked white rice", + "sea salt", + "cooking oil" + ] + }, + { + "id": 36749, + "cuisine": "greek", + "ingredients": [ + "dried thyme", + "extra-virgin olive oil", + "sesame seeds", + "salt", + "pita bread rounds", + "sumac", + "savory" + ] + }, + { + "id": 42458, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "napa cabbage", + "carrots", + "noodles", + "chicken stock", + "green onions", + "fish balls", + "calamansi", + "kecap manis", + "salt", + "shrimp", + "boneless chicken skinless thigh", + "rice noodles", + "oil", + "onions" + ] + }, + { + "id": 10415, + "cuisine": "french", + "ingredients": [ + "olive oil", + "flat leaf parsley", + "kosher salt", + "sirloin steak", + "mushroom soup", + "red wine", + "pearl onions", + "sliced mushrooms" + ] + }, + { + "id": 47673, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "green onions", + "taco seasoning mix", + "shredded sharp cheddar cheese", + "refried beans", + "black olives", + "guacamole", + "sour cream" + ] + }, + { + "id": 33226, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "cucumber", + "salt", + "sesame seeds", + "rice vinegar" + ] + }, + { + "id": 49166, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "water", + "dry red wine", + "diced celery", + "diced onions", + "fat free less sodium chicken broth", + "diced tomatoes", + "garlic cloves", + "lamb shanks", + "ground black pepper", + "less sodium beef broth", + "corn starch", + "fresh rosemary", + "fresh parmesan cheese", + "salt", + "carrots" + ] + }, + { + "id": 31232, + "cuisine": "british", + "ingredients": [ + "kosher salt", + "haddock", + "vegetable oil", + "all-purpose flour", + "cod", + "baking soda", + "baking powder", + "malt vinegar", + "sea salt flakes", + "large egg yolks", + "french fries", + "old bay seasoning", + "corn flour", + "fresh dill", + "ground black pepper", + "lemon wedge", + "light lager", + "club soda" + ] + }, + { + "id": 41374, + "cuisine": "moroccan", + "ingredients": [ + "chicken broth", + "pitted date", + "cinnamon", + "lemon juice", + "tumeric", + "green lentil", + "cilantro", + "ground cumin", + "tomatoes", + "olive oil", + "lemon", + "onions", + "ground ginger", + "black pepper", + "parsley", + "chickpeas" + ] + }, + { + "id": 44177, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "unsalted butter", + "tomato salsa", + "flour tortillas", + "grated jack cheese", + "corn", + "guacamole" + ] + }, + { + "id": 47654, + "cuisine": "french", + "ingredients": [ + "eggs", + "dry mustard", + "white vinegar", + "white sugar", + "dry white wine" + ] + }, + { + "id": 46172, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "straw mushrooms", + "galanga", + "thai chile", + "lime leaves", + "brown sugar", + "peanuts", + "chili pepper flakes", + "oil", + "fish sauce", + "lime juice", + "shrimp paste", + "cilantro leaves", + "chicken", + "lime rind", + "lemon grass", + "button mushrooms", + "coconut milk" + ] + }, + { + "id": 19805, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "asparagus", + "rice vinegar", + "chopped cilantro fresh", + "coconut sugar", + "water", + "garlic", + "coconut milk", + "white onion", + "baby spinach", + "carrots", + "brown basmati rice", + "coconut oil", + "fresh ginger", + "salt", + "thai green curry paste" + ] + }, + { + "id": 8074, + "cuisine": "italian", + "ingredients": [ + "water", + "garlic", + "baby eggplants", + "green bell pepper", + "olive oil", + "spaghetti squash", + "grape tomatoes", + "dried basil", + "purple onion", + "italian seasoning", + "white wine", + "salt and ground black pepper", + "carrots" + ] + }, + { + "id": 46920, + "cuisine": "jamaican", + "ingredients": [ + "eggs", + "vanilla", + "cooking oil", + "all-purpose flour", + "sugar", + "salt", + "cold water", + "baking powder", + "cornmeal" + ] + }, + { + "id": 4064, + "cuisine": "vietnamese", + "ingredients": [ + "tofu", + "water", + "potatoes", + "red pepper flakes", + "beansprouts", + "onions", + "green bell pepper", + "fresh ginger root", + "shallots", + "garlic", + "bay leaf", + "fish sauce", + "lemon grass", + "vegetable oil", + "carrots", + "chopped cilantro", + "kaffir lime leaves", + "curry powder", + "mushrooms", + "vegetable broth", + "coconut milk" + ] + }, + { + "id": 32983, + "cuisine": "jamaican", + "ingredients": [ + "warm water", + "salt", + "medium eggs", + "milk", + "white flour", + "yeast", + "sugar", + "salted butter" + ] + }, + { + "id": 41617, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "fresh basil leaves", + "preserves", + "fresh basil" + ] + }, + { + "id": 26393, + "cuisine": "thai", + "ingredients": [ + "fresh coriander", + "rump steak", + "chili sauce", + "red chili peppers", + "lime", + "ginger", + "vermicelli noodles", + "lime juice", + "red pepper", + "cane syrup", + "soy sauce", + "spring onions", + "purple onion" + ] + }, + { + "id": 3599, + "cuisine": "korean", + "ingredients": [ + "pepper", + "green onions", + "garlic cloves", + "canola oil", + "sugar", + "beef", + "sesame oil", + "toasted sesame seeds", + "spinach", + "spanish onion", + "rice wine", + "carrots", + "soy sauce", + "shredded cabbage", + "dried shiitake mushrooms", + "glass noodles" + ] + }, + { + "id": 2479, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "deveined shrimp", + "fresh oregano", + "fresh lemon juice", + "ground black pepper", + "extra-virgin olive oil", + "organic vegetable broth", + "onions", + "sea scallops", + "littleneck clams", + "snapper fillets", + "flat leaf parsley", + "tomatoes", + "dry white wine", + "crushed red pepper", + "garlic cloves" + ] + }, + { + "id": 28783, + "cuisine": "indian", + "ingredients": [ + "fresh spinach", + "fresh ginger", + "roma tomatoes", + "cilantro leaves", + "ghee", + "water", + "garam masala", + "garlic", + "cumin seed", + "tumeric", + "curry powder", + "coriander powder", + "salt", + "cinnamon sticks", + "red chili peppers", + "garbanzo beans", + "whole cloves", + "green cardamom", + "onions" + ] + }, + { + "id": 37692, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "salt", + "spinach", + "Italian parsley leaves", + "sage leaves", + "large garlic cloves", + "lemon juice", + "pinenuts", + "extra-virgin olive oil" + ] + }, + { + "id": 29563, + "cuisine": "italian", + "ingredients": [ + "sugar", + "red wine", + "mint sprigs", + "peaches" + ] + }, + { + "id": 45804, + "cuisine": "japanese", + "ingredients": [ + "ground black pepper", + "peppercorns", + "ground coriander", + "ground cumin", + "basil leaves", + "club soda", + "spinach leaves", + "rice flour" + ] + }, + { + "id": 5552, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "corn kernels", + "chopped green bell pepper", + "mild green chiles", + "creole seasoning", + "bay leaf", + "green bell pepper", + "unsalted butter", + "baking powder", + "salt", + "red bell pepper", + "yellow corn meal", + "tomato sauce", + "granulated sugar", + "diced tomatoes", + "all-purpose flour", + "celery", + "eggs", + "cream style corn", + "flour", + "garlic", + "brown shrimp", + "onions" + ] + }, + { + "id": 28113, + "cuisine": "french", + "ingredients": [ + "zucchini", + "shredded parmesan cheese", + "bread crumbs", + "fine sea salt", + "extra-virgin olive oil", + "herbes de provence", + "pepper", + "salt" + ] + }, + { + "id": 25071, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "chicken breasts", + "basil pesto sauce" + ] + }, + { + "id": 23153, + "cuisine": "british", + "ingredients": [ + "nutmeg", + "butter", + "fresh parsley", + "pepper", + "and fat free half half", + "smoked salmon", + "salt", + "hard-boiled egg", + "long-grain rice" + ] + }, + { + "id": 25740, + "cuisine": "indian", + "ingredients": [ + "clove", + "pistachios", + "chopped onion", + "fat free less sodium chicken broth", + "vegetable oil", + "brown basmati rice", + "tomato paste", + "golden raisins", + "cinnamon sticks", + "water", + "salt" + ] + }, + { + "id": 31266, + "cuisine": "mexican", + "ingredients": [ + "tortilla chips", + "black beans", + "ground turkey", + "tomatoes", + "thousand island dressing", + "taco seasoning mix", + "iceberg lettuce" + ] + }, + { + "id": 14546, + "cuisine": "cajun_creole", + "ingredients": [ + "active dry yeast", + "vanilla extract", + "glaze", + "sugar", + "butter", + "cream cheese, soften", + "warm water", + "sprinkles", + "sour cream", + "large eggs", + "salt", + "bread flour" + ] + }, + { + "id": 32389, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "minced garlic", + "refried beans", + "lean ground beef", + "diced tomatoes", + "beef broth", + "red bell pepper", + "dried oregano", + "avocado", + "black pepper", + "minced ginger", + "green onions", + "coarse salt", + "shredded sharp cheddar cheese", + "dark brown sugar", + "onions", + "soy sauce", + "water", + "olive oil", + "vegetable oil", + "garlic", + "tortilla chips", + "sour cream", + "cooked rice", + "msg", + "corn", + "flank steak", + "shredded lettuce", + "broccoli", + "corn starch", + "chopped cilantro fresh" + ] + }, + { + "id": 36481, + "cuisine": "southern_us", + "ingredients": [ + "fresh orange juice", + "sugar", + "corn starch", + "lemon zest", + "fresh lemon juice" + ] + }, + { + "id": 37118, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "garlic", + "korean chile paste", + "flour", + "oil", + "honey", + "rice vinegar", + "canola oil", + "chicken wings", + "ginger", + "corn starch" + ] + }, + { + "id": 7198, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "hoisin sauce", + "rice vinegar", + "eggs", + "green onions", + "garlic cloves", + "soy sauce", + "large garlic cloves", + "toasted sesame oil", + "panko", + "ground pork" + ] + }, + { + "id": 49565, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "red pepper", + "corn syrup", + "black pepper", + "sesame seeds", + "cooking wine", + "onions", + "soy sauce", + "olive oil", + "sweet pepper", + "carrots", + "fishcake", + "sesame oil", + "salt" + ] + }, + { + "id": 48548, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "curry powder", + "corn starch", + "soy sauce", + "boneless skinless chicken breasts", + "hot red pepper flakes", + "coriander seeds", + "fresh lime juice", + "fresh coriander", + "salted dry roasted peanuts" + ] + }, + { + "id": 4848, + "cuisine": "thai", + "ingredients": [ + "eggs", + "grapeseed oil", + "oyster sauce", + "fish sauce", + "rice vinegar", + "gai lan", + "garlic", + "pork loin", + "dark sesame oil" + ] + }, + { + "id": 28721, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "Anaheim chile", + "chopped celery", + "red bell pepper", + "ground cumin", + "boneless chicken skinless thigh", + "hominy", + "tomatillos", + "all-purpose flour", + "dried oregano", + "lower sodium chicken broth", + "olive oil", + "cooking spray", + "cilantro leaves", + "chopped cilantro fresh", + "black pepper", + "finely chopped onion", + "reduced-fat sour cream", + "carrots", + "chopped garlic" + ] + }, + { + "id": 31737, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "flour tortillas", + "rice", + "sour cream", + "corn", + "cilantro", + "enchilada sauce", + "black beans", + "ground sirloin", + "taco seasoning", + "onions", + "chicken broth", + "salsa verde", + "garlic", + "Mexican cheese" + ] + }, + { + "id": 10090, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "ground cinnamon", + "chop fine pecan", + "wildflower honey" + ] + }, + { + "id": 29285, + "cuisine": "russian", + "ingredients": [ + "water", + "parsley", + "gingerroot", + "cabbage", + "old-fashioned oatmeal", + "potatoes", + "garlic", + "dill weed", + "italian seasoning", + "black pepper", + "Tabasco Pepper Sauce", + "herb seasoning", + "ground beef", + "mustard", + "prepared horseradish", + "worcestershire sauce", + "ground turkey", + "condensed golden mushroom soup" + ] + }, + { + "id": 36436, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "dried basil", + "cooking spray", + "all-purpose flour", + "diced celery", + "sliced green onions", + "tomato paste", + "black pepper", + "olive oil", + "diced tomatoes", + "chopped onion", + "fresh parsley", + "instant rice", + "dried thyme", + "worcestershire sauce", + "hot sauce", + "lemon juice", + "breadstick", + "water", + "chopped green bell pepper", + "salt", + "garlic cloves", + "large shrimp" + ] + }, + { + "id": 41848, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "rigatoni", + "vegetable oil cooking spray", + "chopped onion", + "pasta sauce", + "crushed red pepper", + "olive oil", + "Italian turkey sausage" + ] + }, + { + "id": 5462, + "cuisine": "irish", + "ingredients": [ + "milk", + "butter", + "chicken bouillon", + "leeks", + "sour cream", + "eggs", + "potatoes", + "salt", + "shredded cheddar cheese", + "shredded cabbage", + "onions" + ] + }, + { + "id": 33292, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed brown sugar", + "large eggs", + "cake flour", + "evaporated milk", + "butter", + "shortening", + "baking powder", + "chopped pecans", + "granulated sugar", + "vanilla extract" + ] + }, + { + "id": 12238, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "dried thyme", + "scotch bonnet chile", + "grated nutmeg", + "light brown sugar", + "kosher salt", + "ground black pepper", + "ginger", + "ground cloves", + "olive oil", + "turkey", + "scallions", + "ground cinnamon", + "lime juice", + "unsalted butter", + "garlic" + ] + }, + { + "id": 19437, + "cuisine": "cajun_creole", + "ingredients": [ + "tasso", + "cayenne", + "salt", + "okra", + "green bell pepper", + "bay leaves", + "thyme sprig", + "juice", + "celery leaves", + "file powder", + "all-purpose flour", + "garlic cloves", + "crab", + "butter", + "chopped onion", + "cooked white rice" + ] + }, + { + "id": 44391, + "cuisine": "filipino", + "ingredients": [ + "garlic", + "onions", + "pasta sauce", + "liver", + "salt", + "hot dogs", + "ground beef" + ] + }, + { + "id": 422, + "cuisine": "japanese", + "ingredients": [ + "large egg yolks", + "rice vinegar", + "kosher salt", + "vegetable oil", + "dashi powder", + "garlic powder", + "mustard powder", + "msg", + "malt vinegar" + ] + }, + { + "id": 1296, + "cuisine": "italian", + "ingredients": [ + "warm water", + "salt", + "cooking spray", + "bread flour", + "dry yeast", + "cornmeal", + "sugar", + "extra-virgin olive oil" + ] + }, + { + "id": 2203, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "worcestershire sauce", + "fresh parsley", + "lean ground beef", + "garlic cloves", + "marjoram", + "mushrooms", + "all-purpose flour", + "onions", + "beef gravy", + "russet potatoes", + "carrots" + ] + }, + { + "id": 49594, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "chili powder", + "cardamom pods", + "sugar", + "salt", + "plain low-fat yogurt", + "cinnamon", + "tumeric", + "chicken drumsticks" + ] + }, + { + "id": 31848, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "coconut milk", + "brown sugar", + "purple onion", + "medium shrimp", + "cooked rice", + "thai basil", + "curry paste", + "fire roasted diced tomatoes", + "peanut oil" + ] + }, + { + "id": 6361, + "cuisine": "italian", + "ingredients": [ + "carrot sticks", + "butter", + "salt", + "Italian bread", + "olive oil", + "garlic", + "asparagus spears", + "hard-boiled egg", + "artichokes", + "red bell pepper", + "black pepper", + "cauliflower florets", + "anchovy filets" + ] + }, + { + "id": 36897, + "cuisine": "irish", + "ingredients": [ + "granulated sugar", + "brewed espresso", + "egg yolks", + "vanilla bean paste", + "Irish whiskey", + "kosher salt", + "heavy cream" + ] + }, + { + "id": 9905, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "Shaoxing wine", + "chili bean paste", + "chili pepper", + "garlic", + "chinkiang vinegar", + "chinese celery", + "szechwan peppercorns", + "carrots", + "soy sauce", + "flank steak", + "peanut oil" + ] + }, + { + "id": 16460, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "worcestershire sauce", + "all-purpose flour", + "chopped garlic", + "black pepper", + "leeks", + "bacon slices", + "carrots", + "reduced sodium chicken broth", + "whole milk", + "salt", + "extra sharp cheddar cheese", + "celery ribs", + "ale", + "dry mustard", + "California bay leaves" + ] + }, + { + "id": 37508, + "cuisine": "mexican", + "ingredients": [ + "salt", + "sour cream", + "heavy cream" + ] + }, + { + "id": 37223, + "cuisine": "cajun_creole", + "ingredients": [ + "dry white wine", + "shrimp", + "parmigiano reggiano cheese", + "butter", + "fettucine", + "cajun seasoning", + "heavy whipping cream", + "green onions", + "garlic" + ] + }, + { + "id": 16506, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "garam masala", + "raisins", + "curds", + "cashew nuts", + "clove", + "water", + "chili powder", + "cilantro leaves", + "ghee", + "tomatoes", + "coconut", + "cinnamon", + "green chilies", + "onions", + "pepper", + "prawns", + "salt", + "lemon juice", + "basmati rice" + ] + }, + { + "id": 38525, + "cuisine": "southern_us", + "ingredients": [ + "dressing", + "chicken breast halves", + "plum tomatoes", + "sugar pea", + "bacon slices", + "eggs", + "watercress", + "iceberg lettuce", + "avocado", + "edible flowers", + "freshly ground pepper" + ] + }, + { + "id": 36520, + "cuisine": "french", + "ingredients": [ + "mayonaise", + "fresh thyme leaves", + "large eggs", + "fresh parsley leaves", + "plain yogurt", + "dill pickles", + "capers", + "shallots" + ] + }, + { + "id": 2233, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "flat leaf parsley", + "tomatoes", + "garlic cloves", + "mussels", + "russet potatoes", + "onions", + "water", + "carrots" + ] + }, + { + "id": 23057, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "bacon slices", + "garlic cloves", + "fresh basil", + "cooking spray", + "purple onion", + "tomatoes", + "french bread", + "extra-virgin olive oil", + "romaine lettuce", + "balsamic vinegar", + "salt" + ] + }, + { + "id": 45110, + "cuisine": "southern_us", + "ingredients": [ + "radishes", + "chopped pecans", + "napa cabbage", + "dressing", + "Braeburn Apple", + "green onions" + ] + }, + { + "id": 32758, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "green lentil", + "garlic", + "cumin seed", + "tomato paste", + "red chili peppers", + "butter", + "cilantro leaves", + "onions", + "red kidney beans", + "red chili powder", + "yoghurt", + "salt", + "bay leaf", + "tomatoes", + "milk", + "ginger", + "green cardamom", + "canola oil" + ] + }, + { + "id": 39963, + "cuisine": "italian", + "ingredients": [ + "top round steak", + "grated parmesan cheese", + "salt", + "pepper", + "raisins", + "pasta sauce", + "olive oil", + "garlic", + "mozzarella cheese", + "butter" + ] + }, + { + "id": 12083, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "sesame seeds", + "oil", + "salmon fillets", + "ginger", + "sake", + "mirin", + "soy sauce", + "garlic" + ] + }, + { + "id": 21913, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "kosher salt", + "fennel", + "crushed red pepper flakes", + "vinaigrette", + "celery seed", + "yellow mustard seeds", + "watermelon", + "bibb lettuce", + "extra-virgin olive oil", + "fresh lemon juice", + "large shrimp", + "sugar", + "coriander seeds", + "jalapeno chilies", + "purple onion", + "shrimp", + "canola oil", + "tumeric", + "lime", + "fresh bay leaves", + "fresh orange juice", + "garlic cloves", + "fresh lime juice" + ] + }, + { + "id": 16319, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "boneless skinless chicken breasts", + "cucumber", + "sugar", + "cooking oil", + "garlic", + "fresh mint", + "peanuts", + "red pepper flakes", + "beansprouts", + "water", + "vermicelli", + "wine vinegar", + "asian fish sauce" + ] + }, + { + "id": 37680, + "cuisine": "irish", + "ingredients": [ + "ground cloves", + "golden raisins", + "chopped onion", + "sugar", + "olive oil", + "garlic", + "ground ginger", + "cider vinegar", + "cardamom seeds", + "plum tomatoes", + "black pepper", + "sea salt", + "mustard seeds" + ] + }, + { + "id": 3536, + "cuisine": "italian", + "ingredients": [ + "shrimp tails", + "grated parmesan cheese", + "salt", + "pepper", + "extra-virgin olive oil", + "gnocchi", + "pinenuts", + "basil", + "fresh lemon juice", + "asparagus", + "garlic" + ] + }, + { + "id": 47937, + "cuisine": "southern_us", + "ingredients": [ + "celery salt", + "cooked chicken", + "vegetable oil cooking spray", + "hoagie rolls", + "slaw", + "dressing", + "swiss cheese" + ] + }, + { + "id": 46160, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "grated orange peel", + "baking powder", + "unsweetened chocolate", + "sugar", + "salt", + "pecans", + "large eggs", + "Grand Marnier" + ] + }, + { + "id": 36880, + "cuisine": "cajun_creole", + "ingredients": [ + "extra-virgin olive oil", + "shrimp", + "plum tomatoes", + "lemon wedge", + "salt", + "onions", + "unsalted butter", + "garlic", + "fresh parsley", + "cajun seasoning", + "freshly ground pepper", + "basmati rice" + ] + }, + { + "id": 34700, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "mirin", + "vegetable oil", + "halibut", + "carrots", + "mayonaise", + "large egg yolks", + "fresh shiitake mushrooms", + "rice vinegar", + "katsuo bushi", + "shiso", + "cold water", + "white pepper", + "finely chopped onion", + "shoyu", + "mesclun", + "corn starch", + "wasabi paste", + "water", + "shell-on shrimp", + "fine sea salt", + "konbu", + "daikon sprouts" + ] + }, + { + "id": 28306, + "cuisine": "italian", + "ingredients": [ + "ragu old world style pasta sauc", + "shredded mozzarella cheese", + "prebaked pizza crusts", + "pizza toppings" + ] + }, + { + "id": 43014, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "salsa", + "sour cream", + "water", + "guacamole", + "tortilla chips", + "kosher salt", + "large eggs", + "hot sauce", + "monterey jack", + "ground black pepper", + "chili powder", + "pinto beans" + ] + }, + { + "id": 304, + "cuisine": "italian", + "ingredients": [ + "tomato basil sauce", + "grated parmesan cheese", + "fresh basil leaves", + "shredded mozzarella cheese", + "cooked chicken", + "DeLallo Penne Ziti" + ] + }, + { + "id": 34624, + "cuisine": "russian", + "ingredients": [ + "yeast", + "white sugar", + "raisins", + "cherries" + ] + }, + { + "id": 35547, + "cuisine": "mexican", + "ingredients": [ + "clove", + "instant rice", + "sesame seeds", + "vegetable oil", + "garlic cloves", + "black peppercorns", + "fat free less sodium chicken broth", + "cooking spray", + "chopped onion", + "chopped cilantro fresh", + "ground cinnamon", + "boneless chicken skinless thigh", + "chopped almonds", + "salt", + "corn tortillas", + "sugar", + "dried thyme", + "chili powder", + "unsweetened chocolate", + "plum tomatoes" + ] + }, + { + "id": 46907, + "cuisine": "cajun_creole", + "ingredients": [ + "mayonaise", + "cayenne", + "all-purpose flour", + "black pepper", + "large eggs", + "Italian bread", + "oysters", + "vegetable oil", + "iceberg lettuce", + "yellow corn meal", + "milk", + "salt" + ] + }, + { + "id": 49345, + "cuisine": "french", + "ingredients": [ + "raspberries", + "apricots", + "figs", + "vanilla", + "sugar", + "fresh lemon juice", + "turbinado", + "fresh orange juice", + "orange zest" + ] + }, + { + "id": 32761, + "cuisine": "brazilian", + "ingredients": [ + "milk", + "tapioca flour", + "salt", + "large eggs", + "canola", + "shredded cheese" + ] + }, + { + "id": 44467, + "cuisine": "cajun_creole", + "ingredients": [ + "ground cinnamon", + "large eggs", + "fresh orange juice", + "ground cloves", + "french bread", + "sauce", + "sugar", + "coffee", + "salt", + "milk", + "butter", + "orange zest" + ] + }, + { + "id": 30144, + "cuisine": "italian", + "ingredients": [ + "water", + "bay leaf", + "garlic", + "coarse sea salt", + "fresh sage", + "white beans" + ] + }, + { + "id": 38288, + "cuisine": "thai", + "ingredients": [ + "olive oil", + "Thai fish sauce", + "fresh coriander", + "boneless skinless chicken breasts", + "spring onions", + "coconut milk", + "lime", + "green chilies" + ] + }, + { + "id": 43519, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "minced garlic", + "freshly grated parmesan", + "portabello mushroom", + "pasta sheets", + "white wine", + "olive oil", + "leeks", + "all-purpose flour", + "italian seasoning", + "pepper", + "eggplant", + "butter", + "shredded mozzarella cheese", + "ground chicken", + "milk", + "egg yolks", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 13327, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "granulated sugar", + "vegetable oil", + "salt", + "fresh lime juice", + "Mexican seasoning mix", + "flour", + "queso blanco", + "sour cream", + "whitefish fillets", + "jalapeno chilies", + "Mexican beer", + "hot sauce", + "chopped cilantro fresh", + "green cabbage", + "lime", + "baking powder", + "purple onion", + "corn tortillas" + ] + }, + { + "id": 5812, + "cuisine": "thai", + "ingredients": [ + "lime", + "garlic cloves", + "brown sugar", + "ginger", + "chopped cilantro", + "fish sauce", + "peanuts", + "carrots", + "soy sauce", + "rice vinegar" + ] + }, + { + "id": 42614, + "cuisine": "irish", + "ingredients": [ + "kale", + "butter", + "pepper", + "potatoes", + "mace", + "salt", + "milk", + "leeks" + ] + }, + { + "id": 36571, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "all-purpose flour", + "elbow macaroni", + "milk", + "pecorino romano cheese", + "cayenne pepper", + "white bread", + "unsalted butter", + "grated nutmeg", + "sharp white cheddar cheese", + "salt", + "grated Gruyère cheese" + ] + }, + { + "id": 20225, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "crushed red pepper", + "parsley sprigs", + "asparagus", + "onions", + "eggs", + "manchego cheese", + "serrano", + "crushed tomatoes", + "mushrooms" + ] + }, + { + "id": 37944, + "cuisine": "moroccan", + "ingredients": [ + "prunes", + "dates", + "carrots", + "honey", + "ras el hanout", + "couscous", + "stock", + "cilantro", + "cinnamon sticks", + "tomato paste", + "almonds", + "purple onion", + "ground beef" + ] + }, + { + "id": 39521, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "shredded carrots", + "sliced mushrooms", + "fish sauce", + "lemon grass", + "green onions", + "fresh cilantro", + "celtic salt", + "curry paste", + "water", + "egg noodles", + "tom yum paste" + ] + }, + { + "id": 25366, + "cuisine": "indian", + "ingredients": [ + "ketchup", + "whole wheat tortillas", + "potatoes", + "chopped cilantro fresh", + "minced garlic", + "salt", + "red chili powder", + "vegetable oil", + "masala" + ] + }, + { + "id": 24299, + "cuisine": "indian", + "ingredients": [ + "meat", + "chickpeas", + "fresh coriander", + "vegetable oil", + "cumin", + "chili powder", + "coriander", + "gravy", + "salt" + ] + }, + { + "id": 9185, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "shiitake", + "vegetable oil", + "garlic", + "water", + "chinese sausage", + "ginger", + "corn starch", + "chinese rice wine", + "vegetables", + "chicken meat", + "salt", + "light soy sauce", + "sesame oil", + "white rice" + ] + }, + { + "id": 43622, + "cuisine": "southern_us", + "ingredients": [ + "vanilla ice cream", + "English toffee bits", + "all-purpose flour", + "light brown sugar", + "frozen peaches", + "vanilla extract", + "pecans", + "unsalted butter", + "salt", + "sugar", + "quick-cooking oats", + "fresh lemon juice" + ] + }, + { + "id": 11892, + "cuisine": "british", + "ingredients": [ + "roasted hazelnuts", + "butter", + "sharp cheddar cheese", + "large egg yolks", + "all-purpose flour", + "large egg whites", + "salt", + "fresh lemon juice", + "whole milk", + "dry bread crumbs" + ] + }, + { + "id": 34173, + "cuisine": "italian", + "ingredients": [ + "milk", + "vanilla extract", + "white sugar", + "ricotta cheese", + "all-purpose flour", + "eggs", + "butter", + "confectioners sugar", + "baking powder", + "salt" + ] + }, + { + "id": 47665, + "cuisine": "french", + "ingredients": [ + "mushrooms", + "crepes", + "fresh parsley", + "fat free milk", + "shallots", + "salt", + "boneless skinless chicken breasts", + "gruyere cheese", + "applewood smoked bacon", + "ground black pepper", + "chopped fresh thyme", + "all-purpose flour" + ] + }, + { + "id": 22104, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "sesame seeds", + "vegetable oil", + "eggplant", + "hatcho miso", + "granulated sugar" + ] + }, + { + "id": 19069, + "cuisine": "greek", + "ingredients": [ + "pepper", + "lemon", + "naan", + "olive oil", + "purple onion", + "dried oregano", + "lettuce leaves", + "salt", + "tomatoes", + "chicken breasts", + "tzatziki" + ] + }, + { + "id": 31158, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "pepper", + "flank steak", + "salt", + "chopped cilantro", + "sugar", + "peanuts", + "sesame oil", + "coconut milk", + "canola oil", + "romaine lettuce", + "fresh cilantro", + "shallots", + "garlic cloves", + "mango", + "sweet chili sauce", + "jalapeno chilies", + "ginger", + "corn tortillas" + ] + }, + { + "id": 12386, + "cuisine": "filipino", + "ingredients": [ + "thai chile", + "ground beef", + "water", + "salt", + "fish sauce", + "garlic", + "onions", + "calamansi juice", + "oil" + ] + }, + { + "id": 14637, + "cuisine": "chinese", + "ingredients": [ + "cooked chicken", + "beansprouts", + "soy sauce", + "corn starch", + "vegetable oil", + "celery", + "beef broth", + "onions" + ] + }, + { + "id": 19936, + "cuisine": "filipino", + "ingredients": [ + "vinegar", + "peppercorns", + "water", + "salt", + "pork belly", + "garlic", + "soy sauce", + "bay leaves" + ] + }, + { + "id": 29457, + "cuisine": "italian", + "ingredients": [ + "salt", + "balsamic vinegar", + "mixed greens", + "bacon", + "green onions", + "freshly ground pepper" + ] + }, + { + "id": 10418, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "couscous", + "homemade chicken stock", + "shallots", + "unsalted butter", + "nuts", + "black pepper", + "currant" + ] + }, + { + "id": 16531, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "vegetables", + "cinnamon", + "bay leaf", + "ground turmeric", + "garlic paste", + "coriander powder", + "salt", + "onions", + "ground cumin", + "black peppercorns", + "garam masala", + "star anise", + "chicken pieces", + "ginger paste", + "clove", + "cream", + "chili powder", + "cardamom pods", + "cashew nuts" + ] + }, + { + "id": 13066, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "pepper", + "cucumber", + "lime juice", + "queso panela", + "salt" + ] + }, + { + "id": 30151, + "cuisine": "southern_us", + "ingredients": [ + "1% low-fat milk", + "pepper", + "low sodium jarred chicken soup base", + "all-purpose flour" + ] + }, + { + "id": 37349, + "cuisine": "italian", + "ingredients": [ + "Bertolli® Classico Olive Oil", + "pancetta", + "anchovy fillets", + "pasta", + "chopped walnuts", + "Bertolli® Alfredo Sauce", + "arugula" + ] + }, + { + "id": 13630, + "cuisine": "italian", + "ingredients": [ + "white wine", + "salt", + "ground black pepper", + "onions", + "olive oil", + "carrots", + "lean ground beef" + ] + }, + { + "id": 4770, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "mozzarella cheese", + "dry white wine", + "garlic", + "eggs", + "panko", + "butter", + "freshly ground pepper", + "fresh leav spinach", + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "onions", + "progresso reduced sodium chicken broth", + "water", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 36561, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "ground cumin", + "black beans", + "chili powder", + "tortilla chips", + "cotija", + "green onions", + "cilantro leaves", + "white onion", + "cilantro", + "garlic cloves" + ] + }, + { + "id": 35264, + "cuisine": "korean", + "ingredients": [ + "red chili peppers", + "rice wine", + "beef rump steaks", + "sesame seeds", + "vegetable oil", + "soy sauce", + "sesame oil", + "golden caster sugar", + "spring onions", + "garlic" + ] + }, + { + "id": 14631, + "cuisine": "moroccan", + "ingredients": [ + "water", + "harissa", + "salt", + "anise seed", + "coriander seeds", + "cinnamon", + "garlic cloves", + "tomato paste", + "fresh ginger", + "spices", + "cumin seed", + "tumeric", + "cayenne", + "lamb shoulder" + ] + }, + { + "id": 43178, + "cuisine": "french", + "ingredients": [ + "apricots", + "fresh raspberries", + "sugar", + "applesauce" + ] + }, + { + "id": 19637, + "cuisine": "italian", + "ingredients": [ + "vidalia onion", + "red wine vinegar", + "olive oil", + "sourdough baguette", + "fresh marjoram", + "flat leaf parsley", + "capers", + "meat" + ] + }, + { + "id": 12663, + "cuisine": "chinese", + "ingredients": [ + "roasted sesame seeds", + "green onions", + "rice vinegar", + "chicken broth", + "ground black pepper", + "ginger", + "garlic chili sauce", + "honey", + "chicken meat", + "broccoli", + "soy sauce", + "cooking oil", + "garlic", + "corn starch" + ] + }, + { + "id": 33093, + "cuisine": "mexican", + "ingredients": [ + "water", + "fresh lemon juice", + "chili powder", + "beef", + "cornflour" + ] + }, + { + "id": 27771, + "cuisine": "vietnamese", + "ingredients": [ + "lemon juice", + "light soy sauce", + "superfine sugar", + "boiling water" + ] + }, + { + "id": 4407, + "cuisine": "thai", + "ingredients": [ + "water", + "thai chile", + "fresh lime juice", + "kaffir lime leaves", + "ground black pepper", + "cilantro leaves", + "asian fish sauce", + "lemongrass", + "salt", + "medium shrimp", + "chiles", + "cilantro root", + "gingerroot" + ] + }, + { + "id": 9949, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "mustard", + "ham", + "dough", + "chopped onion", + "vegetable oil cooking spray", + "italian seasoning" + ] + }, + { + "id": 20561, + "cuisine": "korean", + "ingredients": [ + "daikon", + "buckwheat noodles", + "toasted sesame oil", + "sugar", + "paprika", + "english cucumber", + "nori", + "stock", + "red pepper", + "rice vinegar", + "toasted sesame seeds", + "kosher salt", + "garlic", + "scallions" + ] + }, + { + "id": 27596, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "peeled fresh ginger", + "chopped onion", + "basmati rice", + "lime rind", + "dried apricot", + "red curry paste", + "center cut loin pork chop", + "honey", + "salt", + "fresh lime juice", + "fat free less sodium chicken broth", + "vegetable oil", + "garlic cloves", + "sliced green onions" + ] + }, + { + "id": 11911, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "quinoa", + "nori sheets", + "avocado", + "water", + "lettuce leaves", + "white sesame seeds", + "gari", + "radishes", + "cucumber", + "brown rice vinegar", + "honey", + "sea salt" + ] + }, + { + "id": 6263, + "cuisine": "italian", + "ingredients": [ + "non-fat sour cream", + "ground beef", + "black pepper", + "chopped onion", + "pasta sauce", + "salt", + "spaghetti", + "parmesan cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 15168, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame oil", + "carrots", + "light brown sugar", + "green onions", + "Gochujang base", + "onions", + "fishcake", + "ginger", + "red bell pepper", + "sesame", + "rice wine", + "garlic cloves" + ] + }, + { + "id": 30000, + "cuisine": "chinese", + "ingredients": [ + "sweet chili sauce", + "sesame seeds", + "ginger", + "scallions", + "minced ginger", + "sesame oil", + "rice vinegar", + "dumplings", + "water", + "Sriracha", + "dipping sauces", + "garlic cloves", + "soy sauce", + "dumpling wrappers", + "ground pork", + "peanut oil", + "chopped cilantro" + ] + }, + { + "id": 7880, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cilantro", + "corn tortillas", + "avocado", + "garlic powder", + "frozen corn", + "olive oil", + "salt", + "jack cheese", + "zucchini", + "taco seasoning" + ] + }, + { + "id": 49314, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "garlic powder", + "diced tomatoes", + "jumbo pasta shells", + "tomato paste", + "mozzarella cheese", + "parsley", + "garlic", + "oregano", + "italian sausage", + "sugar", + "grated parmesan cheese", + "basil", + "chopped onion", + "eggs", + "pepper", + "ricotta cheese", + "salt" + ] + }, + { + "id": 18809, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "leg of lamb", + "chopped fresh thyme", + "potato rolls", + "mayonaise", + "raspberry vinegar", + "garlic cloves", + "lettuce leaves", + "freshly ground pepper" + ] + }, + { + "id": 46691, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "vegetable oil", + "cinnamon sticks", + "clove", + "water", + "cumin seed", + "chopped cilantro fresh", + "sugar", + "salt", + "fresh lime juice", + "dried lentils", + "fresh ginger", + "garlic cloves", + "basmati rice" + ] + }, + { + "id": 14697, + "cuisine": "greek", + "ingredients": [ + "diced onions", + "cooking spray", + "dill", + "diced celery", + "dried oregano", + "water", + "1% low-fat milk", + "elbow macaroni", + "corn starch", + "frozen chopped spinach", + "tempeh", + "garlic cloves", + "feta cheese crumbles", + "olive oil", + "salt", + "fresh lemon juice", + "ground white pepper" + ] + }, + { + "id": 18985, + "cuisine": "italian", + "ingredients": [ + "pasta", + "kosher salt", + "fresh thyme", + "garlic cloves", + "sausage casings", + "parmesan cheese", + "diced tomatoes", + "fresh basil", + "mozzarella cheese", + "red pepper flakes", + "diced onions", + "black pepper", + "ground pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 20887, + "cuisine": "french", + "ingredients": [ + "sugar", + "sauce", + "water", + "large egg whites", + "sliced almonds" + ] + }, + { + "id": 29326, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "salt", + "butter", + "white sugar", + "baking soda", + "corn syrup", + "vanilla" + ] + }, + { + "id": 3843, + "cuisine": "french", + "ingredients": [ + "white wine", + "butter", + "sliced green onions", + "chicken bouillon granules", + "dijon mustard", + "all-purpose flour", + "dried tarragon leaves", + "pork tenderloin", + "toasted slivered almonds", + "garlic powder", + "heavy cream" + ] + }, + { + "id": 277, + "cuisine": "mexican", + "ingredients": [ + "water", + "chopped onion", + "cotija", + "dried pinto beans", + "garlic cloves", + "tomatoes", + "chili", + "beer", + "chipotle chile", + "bacon slices", + "chopped cilantro fresh" + ] + }, + { + "id": 8284, + "cuisine": "cajun_creole", + "ingredients": [ + "capers", + "all-purpose flour", + "paprika", + "low salt chicken broth", + "olive oil", + "fresh lemon juice", + "cajun-creole seasoning mix", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 13828, + "cuisine": "indian", + "ingredients": [ + "salt", + "fresh mint", + "black pepper", + "green chilies", + "sugar", + "greek style plain yogurt", + "ground cumin", + "purple onion", + "english cucumber" + ] + }, + { + "id": 7281, + "cuisine": "italian", + "ingredients": [ + "pecorino cheese", + "low salt chicken broth", + "large eggs", + "wheat bread", + "extra-virgin olive oil", + "water", + "flat leaf parsley" + ] + }, + { + "id": 36467, + "cuisine": "chinese", + "ingredients": [ + "water", + "garlic", + "chicken stock", + "Shaoxing wine", + "oil", + "broccoli florets", + "salt", + "white pepper", + "sesame oil", + "corn starch" + ] + }, + { + "id": 25870, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "shredded lettuce", + "sour cream", + "chili", + "vegetable oil", + "mexican chorizo", + "large eggs", + "russet potatoes", + "sliced mushrooms", + "jack cheese", + "green onions", + "salsa", + "onions" + ] + }, + { + "id": 31419, + "cuisine": "indian", + "ingredients": [ + "dried currants", + "vegetable oil", + "mustard seeds", + "dried apricot", + "salt", + "water", + "red wine vinegar", + "sugar", + "peeled fresh ginger", + "garlic cloves" + ] + }, + { + "id": 6595, + "cuisine": "mexican", + "ingredients": [ + "jicama", + "hot water", + "pinenuts", + "bulgur", + "plum tomatoes", + "seedless cucumber", + "extra-virgin olive oil", + "chopped cilantro", + "mint leaves", + "fresh lemon juice", + "ground cumin" + ] + }, + { + "id": 20070, + "cuisine": "jamaican", + "ingredients": [ + "water", + "thyme", + "margarine", + "salt", + "coconut milk", + "scallions" + ] + }, + { + "id": 31642, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "salt", + "frozen chopped spinach", + "parmesan cheese", + "shredded mozzarella cheese", + "tomato sauce", + "jumbo pasta shells", + "eggs", + "ricotta cheese" + ] + }, + { + "id": 45651, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "whole milk", + "bittersweet chocolate", + "large egg yolks", + "vanilla extract", + "sugar", + "unsalted butter", + "all-purpose flour", + "large egg whites", + "creme anglaise", + "unsweetened cocoa powder" + ] + }, + { + "id": 44328, + "cuisine": "indian", + "ingredients": [ + "fresh peas", + "ginger", + "all-purpose flour", + "lemon juice", + "water", + "mint leaves", + "salt", + "cumin seed", + "coriander", + "garam masala", + "chili powder", + "cilantro leaves", + "oil", + "ground turmeric", + "potatoes", + "garlic", + "green chilies", + "corn starch" + ] + }, + { + "id": 48898, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "boneless skinless chicken breasts", + "chees fresco queso", + "red enchilada sauce", + "olive oil", + "diced tomatoes", + "pizza doughs", + "chopped cilantro", + "crema mexicana", + "chile pepper", + "salt", + "cornmeal", + "garlic powder", + "cheese", + "scallions", + "ground cumin" + ] + }, + { + "id": 12262, + "cuisine": "chinese", + "ingredients": [ + "shallots", + "firm tofu", + "white sesame seeds", + "granulated sugar", + "dry sherry", + "garlic cloves", + "soy sauce", + "red pepper flakes", + "peanut oil", + "snow peas", + "steamed white rice", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 7014, + "cuisine": "southern_us", + "ingredients": [ + "barbecue rub", + "apple juice", + "sauce", + "pork baby back ribs" + ] + }, + { + "id": 49555, + "cuisine": "greek", + "ingredients": [ + "dried basil", + "red wine vinegar", + "garlic powder", + "salt", + "olive oil", + "dijon style mustard", + "pepper", + "onion powder", + "dried oregano" + ] + }, + { + "id": 11248, + "cuisine": "chinese", + "ingredients": [ + "chili oil", + "garlic", + "soy sauce", + "dry sherry", + "steak", + "black bean stir fry sauce", + "red pepper", + "corn starch", + "asparagus", + "ginger", + "canola oil" + ] + }, + { + "id": 16418, + "cuisine": "french", + "ingredients": [ + "unsweetened cocoa powder", + "extract", + "dark chocolate", + "heavy cream" + ] + }, + { + "id": 35994, + "cuisine": "mexican", + "ingredients": [ + "fennel seeds", + "sweet potatoes", + "dried red chile peppers", + "olive oil", + "salt", + "chopped cilantro fresh", + "finely chopped onion", + "garlic cloves", + "ground turmeric", + "water", + "paprika", + "celery" + ] + }, + { + "id": 40327, + "cuisine": "indian", + "ingredients": [ + "water", + "coconut", + "sugar", + "salt", + "fruit", + "rice flour" + ] + }, + { + "id": 48515, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "vegetable oil", + "ground turkey", + "zucchini", + "yellow onion", + "green bell pepper, slice", + "whole wheat tortillas", + "iceberg lettuce", + "tomatoes", + "chili powder", + "knorr rice side cheddar broccoli" + ] + }, + { + "id": 48133, + "cuisine": "indian", + "ingredients": [ + "russet potatoes", + "carrots", + "curry powder", + "cayenne pepper", + "onions", + "diced tomatoes", + "low salt chicken broth", + "olive oil", + "lentils" + ] + }, + { + "id": 6065, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "ground pork", + "garlic cloves", + "chicken stock", + "jalapeno chilies", + "cilantro leaves", + "dried oregano", + "olive oil", + "salt", + "poblano chiles", + "ground cloves", + "tomatillos", + "yellow onion" + ] + }, + { + "id": 23548, + "cuisine": "southern_us", + "ingredients": [ + "green tomatoes", + "cornmeal", + "salt", + "buttermilk", + "masa harina", + "pepper", + "oil" + ] + }, + { + "id": 9430, + "cuisine": "southern_us", + "ingredients": [ + "prosciutto", + "whipping cream", + "grated parmesan cheese", + "elbow macaroni", + "whole milk", + "ground nutmeg", + "grated Gruyère cheese" + ] + }, + { + "id": 23724, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "vanilla extract", + "7 Up", + "vegetable shortening", + "almond extract", + "cake flour", + "eggs", + "butter" + ] + }, + { + "id": 33831, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "spaghetti", + "hot red pepper flakes", + "pecorino romano cheese", + "brine cured green olives", + "cauliflower", + "almonds", + "garlic cloves", + "water", + "florets", + "flat leaf parsley" + ] + }, + { + "id": 35195, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "bean paste", + "garlic", + "chopped cilantro", + "mustard", + "light soy sauce", + "chili oil", + "scallions", + "kosher salt", + "vegetable oil", + "tahini paste", + "white button mushrooms", + "Shaoxing wine", + "chinese wheat noodles", + "chinkiang vinegar" + ] + }, + { + "id": 12235, + "cuisine": "italian", + "ingredients": [ + "sweet vermouth", + "campari", + "fruit", + "ice cubes", + "sugar", + "gin", + "chilled prosecco" + ] + }, + { + "id": 42272, + "cuisine": "brazilian", + "ingredients": [ + "orange", + "leeks", + "red bell pepper", + "black beans", + "lime slices", + "yellow bell pepper", + "lime juice", + "sweet potatoes", + "yellow onion", + "tomatoes", + "dried thyme", + "red pepper flakes", + "ground cumin" + ] + }, + { + "id": 37978, + "cuisine": "russian", + "ingredients": [ + "active dry yeast", + "butter", + "eggs", + "flour", + "green cabbage", + "vegetables", + "salt", + "sugar", + "half & half" + ] + }, + { + "id": 30501, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "cherry tomatoes", + "boneless skinless chicken", + "chicken stock", + "lemongrass", + "lime peel", + "kaffir lime leaves", + "lime", + "hot pepper", + "straw mushrooms", + "fresh ginger", + "cilantro leaves" + ] + }, + { + "id": 33039, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "italian seasoning", + "seasoning", + "red wine", + "onions", + "boneless skinless chicken breasts", + "rice", + "tomato sauce", + "diced tomatoes", + "garlic pepper seasoning" + ] + }, + { + "id": 11699, + "cuisine": "french", + "ingredients": [ + "cherry tomatoes", + "kalamata", + "salt", + "fresh thyme leaves", + "purple onion", + "fresh parsley", + "whole grain dijon mustard", + "extra-virgin olive oil", + "small red potato", + "ground black pepper", + "white wine vinegar", + "green beans" + ] + }, + { + "id": 13020, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "chile pepper", + "shredded Monterey Jack cheese", + "fresh tomatoes", + "shredded mild cheddar cheese", + "sour cream", + "avocado", + "taco seasoning mix", + "lemon juice", + "pitted black olives", + "minced onion", + "garlic salt" + ] + }, + { + "id": 26653, + "cuisine": "italian", + "ingredients": [ + "shortening", + "flaked coconut", + "vanilla extract", + "cream cheese", + "white sugar", + "egg whites", + "butter", + "all-purpose flour", + "chopped pecans", + "baking soda", + "almond extract", + "salt", + "crushed pineapple", + "egg yolks", + "buttermilk", + "margarine", + "confectioners sugar" + ] + }, + { + "id": 44074, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "green onions", + "corn tortillas", + "ground cumin", + "chipotle chile", + "large eggs", + "garlic cloves", + "canola oil", + "avocado", + "vegetable oil spray", + "diced tomatoes", + "fresh lime juice", + "romaine lettuce", + "finely chopped onion", + "grated jack cheese", + "chopped cilantro fresh" + ] + }, + { + "id": 25027, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "mustard seeds", + "salt", + "vegetable oil", + "plum tomatoes", + "garlic cloves" + ] + }, + { + "id": 6688, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "potatoes", + "salt", + "water", + "ground pork", + "carrots", + "pepper", + "raisins", + "oil", + "green bell pepper", + "roma tomatoes", + "garlic", + "onions" + ] + }, + { + "id": 7509, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "lasagna noodles", + "provolone cheese", + "spinach", + "part-skim mozzarella cheese", + "cooking spray", + "tomato sauce", + "fresh parmesan cheese", + "tomato basil sauce", + "pesto", + "large eggs", + "nonfat ricotta cheese" + ] + }, + { + "id": 20479, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "cumin seed", + "ground turmeric", + "minced garlic", + "cilantro leaves", + "medium shrimp", + "kosher salt", + "paprika", + "coconut milk", + "olive oil", + "chopped onion", + "basmati rice" + ] + }, + { + "id": 32740, + "cuisine": "italian", + "ingredients": [ + "refrigerated seamless crescent dough", + "Italian cheese blend", + "sauce", + "leaves", + "chicken" + ] + }, + { + "id": 43087, + "cuisine": "italian", + "ingredients": [ + "baguette", + "unsalted butter", + "dry sherry", + "kosher salt", + "sherry vinegar", + "raisins", + "orange", + "chopped fresh thyme", + "cracked black pepper", + "honey", + "asiago", + "onions" + ] + }, + { + "id": 39366, + "cuisine": "southern_us", + "ingredients": [ + "cherry tomatoes", + "cayenne pepper", + "yellow corn meal", + "green onions", + "okra pods", + "corn kernels", + "pattypan squash", + "chopped cilantro fresh", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 45678, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "ground red pepper", + "salt", + "chicken leg quarters", + "ground cloves", + "peeled fresh ginger", + "paprika", + "lemon juice", + "plain low-fat yogurt", + "cooking spray", + "lemon wedge", + "ground cardamom", + "ground cumin", + "coriander seeds", + "chicken breast halves", + "garlic cloves", + "fresh parsley" + ] + }, + { + "id": 10324, + "cuisine": "mexican", + "ingredients": [ + "fennel seeds", + "molasses", + "prepared pie crusts", + "star anise", + "toasted almonds", + "bread", + "ground cinnamon", + "sweet onion", + "raisins", + "roasted garlic", + "chicken stock", + "mixed spice", + "tomatillos", + "beaten eggs", + "chipotle peppers", + "tomatoes", + "chili pepper", + "poblano chilies", + "bacon fat", + "chicken thighs" + ] + }, + { + "id": 36404, + "cuisine": "french", + "ingredients": [ + "bean soup", + "vegetable oil", + "flat leaf parsley", + "unsalted butter", + "scallions", + "water", + "worcestershire sauce", + "Madeira", + "dijon mustard", + "steak" + ] + }, + { + "id": 40589, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "diced tomatoes", + "corn oil", + "chopped cilantro fresh", + "chipotle chile", + "garlic cloves" + ] + }, + { + "id": 48041, + "cuisine": "mexican", + "ingredients": [ + "guacamole", + "butter", + "corn tortillas", + "black beans", + "vegetable oil", + "hot sauce", + "black pepper", + "boneless skinless chicken breasts", + "shredded sharp cheddar cheese", + "garlic powder", + "coarse salt", + "sour cream" + ] + }, + { + "id": 39678, + "cuisine": "mexican", + "ingredients": [ + "cream of chicken soup", + "taco seasoning", + "black beans", + "cheese", + "cooked rice", + "chicken breasts", + "corn", + "salsa" + ] + }, + { + "id": 39480, + "cuisine": "chinese", + "ingredients": [ + "peanut oil", + "toasted sesame oil", + "soy sauce", + "scallions", + "frozen peas", + "large eggs", + "canadian bacon", + "long grain white rice", + "edamame", + "garlic cloves" + ] + }, + { + "id": 982, + "cuisine": "italian", + "ingredients": [ + "lower sodium chicken broth", + "sweet cherries", + "garlic cloves", + "kosher salt", + "pork tenderloin", + "onions", + "green olives", + "olive oil", + "balsamic vinegar", + "sugar", + "ground black pepper", + "thyme sprigs" + ] + }, + { + "id": 44752, + "cuisine": "british", + "ingredients": [ + "large eggs", + "kosher salt", + "all-purpose flour", + "whole milk", + "beef drippings" + ] + }, + { + "id": 34920, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "garam masala", + "whole chicken", + "curry powder", + "purple onion", + "ginger root", + "black pepper", + "garlic", + "cardamom", + "ground ginger", + "olive oil", + "salt", + "powdered garlic" + ] + }, + { + "id": 2008, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "sour cream", + "chorizo", + "corn tortillas", + "queso fresco", + "peach salsa", + "shredded lettuce" + ] + }, + { + "id": 24036, + "cuisine": "thai", + "ingredients": [ + "sweet chili sauce", + "sunflower oil", + "beansprouts", + "prawns", + "beaten eggs", + "frozen peas", + "spring onions", + "cilantro leaves", + "soy sauce", + "rice noodles", + "roasted peanuts" + ] + }, + { + "id": 34203, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "low sodium chicken broth", + "smoked ham hocks", + "black-eyed peas", + "bay leaf", + "water", + "salt", + "jalapeno chilies", + "onions" + ] + }, + { + "id": 17962, + "cuisine": "chinese", + "ingredients": [ + "chili flakes", + "lime", + "star anise", + "fish sauce", + "chinese noodles", + "bok choy", + "chicken stock", + "brown sugar", + "green onions", + "dark soy sauce", + "light soy sauce", + "shrimp" + ] + }, + { + "id": 43268, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "sour cream", + "salsa", + "shredded lettuce", + "lime", + "tilapia" + ] + }, + { + "id": 6550, + "cuisine": "indian", + "ingredients": [ + "flour", + "cumin seed", + "baking soda", + "salt", + "onions", + "fresh coriander", + "chili powder", + "rapeseed oil", + "zucchini", + "green chilies" + ] + }, + { + "id": 43366, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "salt", + "coarse salt", + "chicken pieces", + "cooking oil", + "all-purpose flour", + "sugar", + "buttermilk" + ] + }, + { + "id": 11758, + "cuisine": "japanese", + "ingredients": [ + "minced garlic", + "salt", + "snow peas", + "low sodium soy sauce", + "peeled fresh ginger", + "onions", + "shiitake", + "dark sesame oil", + "soba", + "mirin", + "red bell pepper", + "canola oil" + ] + }, + { + "id": 47742, + "cuisine": "mexican", + "ingredients": [ + "duck breasts", + "olive oil", + "salt", + "onions", + "sliced almonds", + "roasted red peppers", + "chopped parsley", + "pepper", + "garlic", + "bay leaf", + "tumeric", + "beef", + "rice" + ] + }, + { + "id": 3247, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "lemon grass", + "shallots", + "chopped cilantro fresh", + "crab", + "shredded carrots", + "grate lime peel", + "grated lemon peel", + "sugar", + "chili paste", + "english cucumber", + "asian fish sauce", + "lime juice", + "green onions", + "fresh mint" + ] + }, + { + "id": 36374, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "green peas", + "kosher salt", + "center cut bacon", + "pasta", + "large eggs", + "red bell pepper", + "ground black pepper", + "pecorino romano cheese" + ] + }, + { + "id": 39220, + "cuisine": "italian", + "ingredients": [ + "butter", + "dry bread crumbs", + "ground black pepper", + "veal rib chops", + "eggs", + "lemon", + "chopped fresh sage", + "dried sage", + "salt" + ] + }, + { + "id": 17613, + "cuisine": "indian", + "ingredients": [ + "water", + "cilantro leaves", + "tikka masala curry paste", + "boneless skinless chicken breasts", + "fresh lemon juice", + "chopped tomatoes", + "low-fat yogurt", + "sugar", + "vegetable oil", + "onions" + ] + }, + { + "id": 46007, + "cuisine": "russian", + "ingredients": [ + "water", + "dill", + "tomato paste", + "vegetable oil", + "green cabbage", + "sauerkraut", + "onions", + "pepper", + "salt" + ] + }, + { + "id": 14589, + "cuisine": "italian", + "ingredients": [ + "spinach", + "extra-virgin olive oil", + "italian seasoning", + "red pepper", + "garlic cloves", + "crimini mushrooms", + "spaghetti squash", + "sea salt", + "steak seasoning" + ] + }, + { + "id": 29017, + "cuisine": "spanish", + "ingredients": [ + "adobo", + "garlic", + "lemon", + "red bell pepper", + "jumbo shrimp", + "crushed red pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 22619, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "butter", + "yellow corn meal", + "baking soda", + "salt", + "whole wheat flour", + "buttermilk", + "sugar", + "large eggs" + ] + }, + { + "id": 13277, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "purple onion", + "dry white wine", + "shrimp", + "ground black pepper", + "salt", + "avocado", + "lemon", + "spaghetti" + ] + }, + { + "id": 39386, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "dried thyme", + "worcestershire sauce", + "lemon juice", + "minced garlic", + "chopped green bell pepper", + "beef broth", + "fresh parsley", + "enriched white rice", + "ground black pepper", + "salt", + "bay leaf", + "catfish fillets", + "water", + "red pepper flakes", + "chopped onion", + "roux" + ] + }, + { + "id": 4982, + "cuisine": "irish", + "ingredients": [ + "pepper", + "cabbage", + "bacon", + "salt", + "water" + ] + }, + { + "id": 31248, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "green bell pepper", + "pepper", + "vegetable oil", + "diced onions", + "vegetable oil cooking spray", + "sweet potatoes", + "hot sauce", + "celery ribs", + "brown sugar", + "jalapeno chilies", + "salt", + "parsley flakes", + "parsley sprigs", + "prepared mustard" + ] + }, + { + "id": 29636, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "sesame oil", + "scallions", + "white vinegar", + "soy sauce", + "dried shiitake mushrooms", + "ground white pepper", + "chicken stock", + "salt", + "corn starch", + "pork cutlets", + "large eggs", + "firm tofu", + "bamboo shoots" + ] + }, + { + "id": 8711, + "cuisine": "vietnamese", + "ingredients": [ + "coke", + "jalapeno chilies", + "sesame oil", + "rice vinegar", + "neutral oil", + "green leaf lettuce", + "garlic", + "medium shrimp", + "spring roll wrappers", + "green onions", + "ginger", + "rice", + "soy sauce", + "flank steak", + "crushed red pepper" + ] + }, + { + "id": 1610, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "zucchini", + "purple onion", + "green olives", + "eggplant", + "red pepper flakes", + "flat leaf parsley", + "orange bell pepper", + "coarse salt", + "oil", + "anchovies", + "ground black pepper", + "black olives" + ] + }, + { + "id": 33028, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "baking soda", + "baking powder", + "hot water", + "kosher salt", + "large eggs", + "salt", + "large egg yolks", + "whole milk", + "all-purpose flour", + "sugar", + "unsalted butter", + "butter" + ] + }, + { + "id": 38630, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "extra-virgin olive oil", + "flat leaf parsley", + "fresh tomatoes", + "leeks", + "squid", + "whitefish", + "fideos", + "fine sea salt", + "onions", + "water", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 17953, + "cuisine": "spanish", + "ingredients": [ + "chicken gizzards", + "white wine vinegar", + "black peppercorns", + "corn oil", + "onions", + "green bell pepper", + "garlic", + "pimento stuffed green olives", + "bay leaves", + "salt" + ] + }, + { + "id": 1176, + "cuisine": "italian", + "ingredients": [ + "potatoes", + "dried thyme", + "shredded cheddar cheese", + "heavy cream", + "ground black pepper" + ] + }, + { + "id": 14584, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "salt", + "baking powder", + "honey", + "all-purpose flour", + "cream of tartar", + "butter" + ] + }, + { + "id": 45806, + "cuisine": "french", + "ingredients": [ + "pepper", + "cooking spray", + "fresh lemon juice", + "capers", + "large eggs", + "leaf lettuce", + "chopped parsley", + "grape tomatoes", + "potatoes", + "tuna packed in olive oil", + "olives", + "olive oil", + "salt", + "green beans" + ] + }, + { + "id": 15583, + "cuisine": "mexican", + "ingredients": [ + "soy sauce", + "unsalted butter", + "ground pork", + "cream cheese", + "eggs", + "olive oil", + "sherry", + "salt", + "ground cardamom", + "curry powder", + "finely chopped onion", + "garlic", + "ground coriander", + "sugar", + "shiitake", + "golden raisins", + "all-purpose flour", + "corn starch" + ] + }, + { + "id": 14884, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "kale", + "half & half", + "salt", + "fat free less sodium chicken broth", + "ground black pepper", + "pecorino romano cheese", + "sage leaves", + "pinenuts", + "finely chopped onion", + "garlic", + "sausage casings", + "olive oil", + "yukon gold potatoes" + ] + }, + { + "id": 9705, + "cuisine": "italian", + "ingredients": [ + "eggs", + "red bell pepper", + "baby spinach", + "feta cheese crumbles", + "vegetable oil cooking spray" + ] + }, + { + "id": 25645, + "cuisine": "moroccan", + "ingredients": [ + "lower sodium chicken broth", + "pork tenderloin", + "chopped onion", + "fresh parsley", + "saffron threads", + "water", + "ground red pepper", + "lemon juice", + "ground cumin", + "black pepper", + "butternut squash", + "garlic cloves", + "canola oil", + "hungarian sweet paprika", + "pearl onions", + "salt", + "cinnamon sticks" + ] + }, + { + "id": 31856, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "olive oil", + "chopped onion", + "bay leaf", + "plum tomatoes", + "water", + "golden raisins", + "garlic cloves", + "serrano chile", + "fennel seeds", + "peeled fresh ginger", + "cardamom pods", + "chopped cilantro fresh", + "ground cumin", + "curry powder", + "salt", + "cinnamon sticks", + "basmati rice" + ] + }, + { + "id": 28569, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "shredded cheese", + "salsa", + "lean ground beef", + "black beans", + "taco seasoning" + ] + }, + { + "id": 43747, + "cuisine": "italian", + "ingredients": [ + "garlic", + "olive oil", + "chopped walnuts", + "pepper", + "salt", + "grated parmesan cheese", + "fresh basil leaves" + ] + }, + { + "id": 4678, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "fresh rosemary", + "pork tenderloin", + "bread crumb fresh", + "bay leaves", + "large eggs", + "fresh parsley" + ] + }, + { + "id": 28135, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "garam masala", + "vegetable oil", + "garlic cloves", + "clove", + "water", + "fenugreek", + "greek style plain yogurt", + "cinnamon sticks", + "tomato paste", + "fresh ginger", + "boneless skinless chicken breasts", + "cardamom pods", + "basmati rice", + "green cardamom pods", + "kosher salt", + "unsalted butter", + "heavy cream", + "lemon juice" + ] + }, + { + "id": 8265, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "coconut oil", + "garam masala", + "onions", + "tomatoes", + "coconut", + "cilantro leaves", + "pepper", + "beef" + ] + }, + { + "id": 45293, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "dry roasted peanuts", + "rolls", + "lettuce", + "soy sauce", + "rice noodles", + "sugar", + "fresh lime", + "medium shrimp", + "fresh basil", + "sweet chili sauce", + "dipping sauces" + ] + }, + { + "id": 41690, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "red pepper flakes", + "lemon juice", + "sandwiches", + "ground black pepper", + "dried chickpeas", + "country loaf", + "olive oil", + "salt", + "smoked paprika", + "spinach", + "red wine vinegar", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 16076, + "cuisine": "cajun_creole", + "ingredients": [ + "fettuccine pasta", + "flour", + "freshly ground pepper", + "olive oil", + "butter", + "kosher salt", + "cajun seasoning", + "shrimp", + "low sodium chicken broth", + "whipping cream" + ] + }, + { + "id": 21165, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "ground coriander", + "ground nutmeg", + "ground cumin", + "ground cloves", + "ground cardamom", + "ground black pepper" + ] + }, + { + "id": 24804, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "mint leaves", + "garlic cloves", + "rice paper", + "sugar", + "prawns", + "sesame oil", + "vermicelli noodles", + "hoisin sauce", + "lettuce leaves", + "beansprouts", + "water", + "sweet soy sauce", + "creamy peanut butter", + "chillies" + ] + }, + { + "id": 33806, + "cuisine": "japanese", + "ingredients": [ + "brown rice", + "scallions", + "white pepper", + "salt", + "smoked salmon", + "lemon", + "cucumber", + "water", + "dill" + ] + }, + { + "id": 42144, + "cuisine": "vietnamese", + "ingredients": [ + "brown sugar", + "paprika", + "center cut loin pork chop", + "minced ginger", + "salt", + "minced garlic", + "crushed red pepper", + "sliced green onions", + "cooking spray", + "ground coriander" + ] + }, + { + "id": 38495, + "cuisine": "korean", + "ingredients": [ + "sesame oil", + "toasted sesame seeds", + "red pepper flakes", + "white sugar", + "soy sauce", + "garlic", + "short rib", + "green onions", + "yellow onion" + ] + }, + { + "id": 16127, + "cuisine": "italian", + "ingredients": [ + "pepper flakes", + "unsalted butter", + "linguine", + "shrimp", + "olive oil", + "vegetable oil", + "fresh parsley leaves", + "kosher salt", + "lemon zest", + "garlic", + "ground black pepper", + "lemon", + "fresh lemon juice" + ] + }, + { + "id": 28568, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cannellini beans", + "fresh lime juice", + "fat-free buttermilk", + "cucumber", + "chopped cilantro fresh", + "cooking spray", + "corn tortillas", + "ground cumin", + "fat free less sodium chicken broth", + "salt", + "chipotle chile powder" + ] + }, + { + "id": 47625, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "jalapeno chilies", + "pinto beans", + "lime juice", + "large garlic cloves", + "chopped cilantro", + "black beans", + "green onions", + "green beans", + "sugar", + "olive oil", + "salt" + ] + }, + { + "id": 6837, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "water", + "all-purpose flour", + "raspberries", + "salt", + "cream sweeten whip", + "unsalted butter", + "confectioners sugar" + ] + }, + { + "id": 46897, + "cuisine": "irish", + "ingredients": [ + "beef stock", + "potatoes", + "onions", + "stewing steak", + "carrots" + ] + }, + { + "id": 29852, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "dried thyme", + "carrots", + "meat glaze", + "pepper", + "salt", + "onions", + "stock", + "flour", + "lard", + "white wine", + "butter", + "bay leaf" + ] + }, + { + "id": 35327, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "onions", + "grated nutmeg", + "chicken stock", + "ham", + "butter", + "pork sausages" + ] + }, + { + "id": 5500, + "cuisine": "italian", + "ingredients": [ + "Italian parsley leaves", + "fresh lemon juice", + "olive oil", + "chopped walnuts", + "salt", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 42656, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "monterey jack", + "hot Italian sausages", + "chopped onion", + "chipotle chile", + "chopped cilantro fresh" + ] + }, + { + "id": 43270, + "cuisine": "thai", + "ingredients": [ + "hot red pepper flakes", + "garlic cloves", + "white vinegar", + "light corn syrup", + "vegetable oil", + "chicken wings", + "salt" + ] + }, + { + "id": 10694, + "cuisine": "russian", + "ingredients": [ + "sugar", + "egg whites", + "powdered sugar", + "milk", + "butter", + "milk chocolate", + "egg yolks", + "roasted hazelnuts", + "Nutella" + ] + }, + { + "id": 17401, + "cuisine": "korean", + "ingredients": [ + "asian pear", + "ginger", + "soy sauce", + "chicken breasts", + "onions", + "brown sugar", + "green onions", + "garlic", + "pepper", + "sesame oil" + ] + }, + { + "id": 28269, + "cuisine": "italian", + "ingredients": [ + "eggs", + "salt", + "white sugar", + "ricotta cheese", + "grated lemon zest", + "egg whites", + "all-purpose flour", + "vanilla extract", + "cream cheese" + ] + }, + { + "id": 33490, + "cuisine": "french", + "ingredients": [ + "pastry", + "heavy cream", + "ground nutmeg", + "large eggs", + "milk", + "gruyere cheese" + ] + }, + { + "id": 1368, + "cuisine": "jamaican", + "ingredients": [ + "light brown sugar", + "soy sauce", + "chili pepper", + "rum", + "scallions", + "coconut milk", + "ground cinnamon", + "black pepper", + "lime", + "garlic", + "long-grain rice", + "ground ginger", + "ground cloves", + "water", + "shallots", + "oil", + "chicken pieces", + "Jamaican allspice", + "black beans", + "ground nutmeg", + "salt", + "thyme" + ] + }, + { + "id": 31252, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "sesame oil", + "asian fish sauce", + "romaine lettuce", + "fresh ginger", + "shrimp", + "sugar", + "green onions", + "chopped fresh mint", + "rice stick noodles", + "lime", + "roasted peanuts" + ] + }, + { + "id": 48420, + "cuisine": "vietnamese", + "ingredients": [ + "butter lettuce", + "shredded carrots", + "dried shiitake mushrooms", + "rice paper", + "soy sauce", + "cilantro leaves", + "fresh lime juice", + "sugar", + "green onions", + "fresh mint", + "rice stick noodles", + "chili", + "rice vinegar", + "medium shrimp" + ] + }, + { + "id": 5165, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "garlic", + "taco seasoning", + "green onions", + "sweet corn", + "ground turkey", + "reduced sodium fat free chicken broth", + "salt", + "red bell pepper", + "reduced fat cheddar cheese", + "diced tomatoes", + "chopped onion", + "cumin" + ] + }, + { + "id": 16014, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "italian plum tomatoes", + "dry red wine", + "carrots", + "unsalted butter", + "cracked black pepper", + "juice", + "celery ribs", + "sea salt", + "extra-virgin olive oil", + "onions", + "fresh rosemary", + "rabbit", + "chopped fresh sage" + ] + }, + { + "id": 13225, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "kale", + "cooking oil", + "salsa", + "corn tortillas", + "black beans", + "whole milk yoghurt", + "cheese", + "red enchilada sauce", + "kosher salt", + "large eggs", + "cilantro leaves", + "sour cream", + "cotija", + "feta cheese", + "lime wedges", + "yellow onion", + "chèvre" + ] + }, + { + "id": 47979, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "baking soda", + "salt", + "onions", + "yellow corn meal", + "milk", + "baking powder", + "ground turkey", + "chicken broth", + "honey", + "butter", + "celery", + "sugar", + "large eggs", + "all-purpose flour", + "canola oil" + ] + }, + { + "id": 13747, + "cuisine": "chinese", + "ingredients": [ + "tofu", + "soy sauce", + "green onions", + "oyster sauce", + "Doubanjiang", + "Korean chile flakes", + "water", + "szechwan peppercorns", + "dried chile", + "chicken stock", + "minced garlic", + "rice wine", + "corn starch", + "sugar", + "minced ginger", + "grapeseed oil", + "minced pork" + ] + }, + { + "id": 3287, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "avocado", + "ground pepper", + "grape tomatoes", + "coarse salt", + "baguette", + "fresh lemon juice" + ] + }, + { + "id": 41302, + "cuisine": "russian", + "ingredients": [ + "white vinegar", + "garlic powder", + "black pepper", + "sweet paprika", + "sugar", + "salt", + "water", + "cucumber" + ] + }, + { + "id": 38450, + "cuisine": "southern_us", + "ingredients": [ + "seasoning salt", + "dipping sauces", + "baking powder", + "beer", + "large eggs", + "all-purpose flour", + "sandwiches", + "vegetable oil" + ] + }, + { + "id": 26000, + "cuisine": "indian", + "ingredients": [ + "ravva", + "grated carrot", + "curds", + "cashew nuts", + "asafoetida", + "cilantro", + "salt", + "mustard seeds", + "curry leaves", + "channa dal", + "urad dal", + "oil", + "water", + "ginger", + "green chilies", + "ghee" + ] + }, + { + "id": 38960, + "cuisine": "italian", + "ingredients": [ + "artichoke hearts", + "Philadelphia Cream Cheese", + "italian seasoning", + "KRAFT Zesty Italian Dressing", + "diced tomatoes", + "fresh parsley", + "boneless skinless chicken breasts", + "yellow onion", + "tomato sauce", + "crushed red pepper flakes", + "whole grain pasta" + ] + }, + { + "id": 43998, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "cayenne", + "ground cumin", + "ground cloves", + "ground allspice", + "ground cinnamon", + "salt", + "black pepper", + "ground coriander" + ] + }, + { + "id": 15196, + "cuisine": "italian", + "ingredients": [ + "roquefort cheese", + "dry white wine", + "salt", + "ground black pepper", + "butter", + "canned low sodium chicken broth", + "ziti", + "fresh parsley", + "grated parmesan cheese", + "heavy cream" + ] + }, + { + "id": 36841, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "green onions", + "salsa", + "chopped cilantro", + "green bell pepper", + "ground black pepper", + "chili powder", + "chopped onion", + "plum tomatoes", + "tomato sauce", + "jalapeno chilies", + "lean ground beef", + "tortilla chips", + "ground cumin", + "shredded cheddar cheese", + "guacamole", + "salt", + "sour cream" + ] + }, + { + "id": 4844, + "cuisine": "brazilian", + "ingredients": [ + "butter", + "sweetened condensed milk", + "coconut" + ] + }, + { + "id": 11409, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "salad dressing", + "purple onion", + "rotini", + "grated parmesan cheese", + "red bell pepper", + "caesar salad dressing" + ] + }, + { + "id": 20916, + "cuisine": "thai", + "ingredients": [ + "coconut oil", + "raw honey", + "garlic", + "toasted sesame seeds", + "soy sauce", + "dry white wine", + "yellow onion", + "yellow peppers", + "red chili peppers", + "egg noodles", + "rice vinegar", + "bamboo shoots", + "eggs", + "water", + "arrowroot powder", + "carrots" + ] + }, + { + "id": 27914, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "cooking spray", + "salt", + "large egg whites", + "butter", + "chopped pecans", + "dark corn syrup", + "bourbon whiskey", + "vanilla wafers", + "large eggs", + "vanilla extract", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 33864, + "cuisine": "russian", + "ingredients": [ + "fennel seeds", + "molasses", + "butter", + "cocoa powder", + "brown sugar", + "ground espresso", + "salt", + "caraway seeds", + "wheat bran", + "rye flour", + "yeast", + "warm water", + "apple cider vinegar", + "all-purpose flour" + ] + }, + { + "id": 48680, + "cuisine": "mexican", + "ingredients": [ + "milk", + "salt", + "taco meat", + "tomatoes", + "shredded lettuce", + "margarine", + "green onions", + "salsa", + "eggs", + "cheese", + "cornmeal" + ] + }, + { + "id": 3913, + "cuisine": "vietnamese", + "ingredients": [ + "ground tumeric", + "coconut milk", + "water", + "rice flour", + "medium shrimp", + "scallions", + "chopped cilantro", + "vegetable oil", + "beansprouts" + ] + }, + { + "id": 32917, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "napa cabbage", + "carrots", + "slider buns", + "purple onion", + "chopped cilantro fresh", + "red cabbage", + "bacon slices", + "fresh lime juice", + "mayonaise", + "green tomatoes", + "hot chili sauce" + ] + }, + { + "id": 15812, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "garlic cloves", + "white vinegar", + "bay leaves", + "black peppercorns", + "oil", + "water", + "chicken" + ] + }, + { + "id": 18245, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "diced tomatoes", + "oregano", + "green bell pepper", + "tomatillos", + "cilantro leaves", + "sage", + "chuck roast", + "garlic", + "cumin", + "chiles", + "red pepper flakes", + "onions" + ] + }, + { + "id": 5392, + "cuisine": "french", + "ingredients": [ + "unsweetened coconut milk", + "shallots", + "Madras curry powder", + "bay leaves", + "fresh lemon juice", + "mussels", + "butter", + "dry white wine", + "fresh parsley" + ] + }, + { + "id": 45158, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "taco seasoning mix", + "shredded cheddar cheese", + "nonstick spray", + "corn mix muffin", + "cream style corn", + "corn kernels", + "ground beef" + ] + }, + { + "id": 39668, + "cuisine": "irish", + "ingredients": [ + "ground pepper", + "all-purpose flour", + "onions", + "lamb stew meat", + "carrots", + "new potatoes", + "beer", + "canola oil", + "dried thyme", + "coarse salt", + "fresh parsley" + ] + }, + { + "id": 30620, + "cuisine": "italian", + "ingredients": [ + "crab", + "artichoke hearts", + "salt", + "sliced mushrooms", + "dried basil", + "reduced-fat sour cream", + "fat skimmed chicken broth", + "onions", + "pepper", + "green onions", + "light cream cheese", + "dry lasagna", + "jack cheese", + "olive oil", + "garlic", + "corn starch" + ] + }, + { + "id": 6767, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "medium shrimp", + "soy sauce", + "chives", + "large eggs", + "chicken thighs", + "dashi powder", + "shiitake mushroom caps" + ] + }, + { + "id": 26435, + "cuisine": "italian", + "ingredients": [ + "salt", + "freshly grated parmesan", + "garlic cloves", + "extra-virgin olive oil", + "fresh basil leaves", + "plain yogurt", + "walnuts" + ] + }, + { + "id": 49524, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "light cream cheese", + "powdered sugar", + "semisweet chocolate", + "boiling water", + "sugar", + "strawberries", + "biscuits", + "instant espresso powder", + "sour cream" + ] + }, + { + "id": 33867, + "cuisine": "jamaican", + "ingredients": [ + "chicken stock", + "vegetable stock", + "scallions", + "fresh thyme", + "salt", + "bay leaf", + "pepper", + "butter", + "garlic cloves", + "pumpkin", + "chopped onion" + ] + }, + { + "id": 20514, + "cuisine": "chinese", + "ingredients": [ + "sliced carrots", + "hot chili sauce", + "shrimp", + "ground black pepper", + "napa cabbage", + "oyster sauce", + "red bell pepper", + "soy sauce", + "vegetable oil", + "scallions", + "sliced mushrooms", + "Sriracha", + "ginger", + "Chinese egg noodles", + "onions" + ] + }, + { + "id": 30037, + "cuisine": "filipino", + "ingredients": [ + "butter", + "shrimp", + "pepper", + "salt", + "hot red pepper flakes", + "garlic", + "sprite", + "oil" + ] + }, + { + "id": 31397, + "cuisine": "japanese", + "ingredients": [ + "fennel seeds", + "fresh curry leaves", + "sesame oil", + "cinnamon sticks", + "chicken", + "tumeric", + "dry coconut", + "green cardamom", + "peppercorns", + "garlic paste", + "coriander seeds", + "salt", + "cashew nuts", + "clove", + "red chili peppers", + "shallots", + "lemon juice", + "cumin" + ] + }, + { + "id": 10242, + "cuisine": "mexican", + "ingredients": [ + "water", + "red wine vinegar", + "salt", + "oregano", + "pico de gallo", + "fresh lime", + "cilantro", + "corn tortillas", + "avocado", + "lime juice", + "grating cheese", + "yellow onion", + "ground cumin", + "white onion", + "orange", + "garlic", + "pork butt roast" + ] + }, + { + "id": 36176, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "garlic", + "corn bread", + "shredded cheddar cheese", + "lean ground beef", + "sour cream", + "kidney beans", + "diced tomatoes", + "onions", + "cider vinegar", + "chili powder", + "beef broth", + "ground cumin" + ] + }, + { + "id": 28642, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "cracker crumbs", + "salt", + "chipotles in adobo", + "ground cumin", + "chicken broth", + "kosher salt", + "diced tomatoes", + "shredded zucchini", + "ground beef", + "bread", + "black pepper", + "chili powder", + "yellow onion", + "chopped cilantro", + "eggs", + "lime juice", + "garlic", + "ground allspice", + "oregano" + ] + }, + { + "id": 27953, + "cuisine": "japanese", + "ingredients": [ + "sugar pea", + "all-purpose flour", + "vegetable oil", + "beer" + ] + }, + { + "id": 20576, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "mirin", + "choy sum", + "mixed spice", + "sesame oil", + "scallions", + "soy sauce", + "enokitake", + "ginger", + "chicken demi-glace", + "white miso", + "ramen noodles", + "bone in chicken thighs" + ] + }, + { + "id": 35175, + "cuisine": "italian", + "ingredients": [ + "roasted red peppers", + "black olives", + "dried oregano", + "balsamic vinegar", + "provolone cheese", + "artichok heart marin", + "salt", + "olive oil", + "garlic", + "fresh basil leaves" + ] + }, + { + "id": 29239, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "butter", + "lemon juice", + "graham cracker crumbs", + "Grand Marnier", + "lime juice", + "whipped cream", + "tequila", + "lime zest", + "lime slices", + "low-fat cream cheese" + ] + }, + { + "id": 40003, + "cuisine": "mexican", + "ingredients": [ + "green olives", + "fresh orange juice", + "fresh oregano", + "fresh lime juice", + "jalapeno chilies", + "purple onion", + "tortilla chips", + "tomatoes", + "lettuce leaves", + "salt", + "freshly ground pepper", + "tomato juice", + "extra-virgin olive oil", + "halibut", + "olives" + ] + }, + { + "id": 26257, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "chili powder", + "diced tomatoes", + "all-purpose flour", + "finely chopped onion", + "lemon", + "chopped celery", + "shrimp", + "chopped green bell pepper", + "vegetable oil", + "garlic", + "hot sauce", + "tomato paste", + "bay leaves", + "worcestershire sauce", + "salt" + ] + }, + { + "id": 37067, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "large free range egg", + "green cabbage", + "lime", + "carrots", + "avocado", + "fresh coriander", + "yoghurt", + "fresh red chili", + "olive oil", + "onions" + ] + }, + { + "id": 34337, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "tonkatsu sauce", + "cooked rice", + "large eggs", + "panko breadcrumbs", + "ground black pepper", + "all-purpose flour", + "boneless chop pork", + "corn oil" + ] + }, + { + "id": 8739, + "cuisine": "italian", + "ingredients": [ + "kale", + "garlic", + "garlic cloves", + "rib", + "pancetta", + "olive oil", + "canned tomatoes", + "sausages", + "onions", + "chicken broth", + "zucchini", + "white beans", + "green beans", + "green cabbage", + "freshly grated parmesan", + "salt", + "carrots", + "boiling potatoes" + ] + }, + { + "id": 49143, + "cuisine": "italian", + "ingredients": [ + "melted butter", + "garlic powder", + "Italian bread", + "dried basil" + ] + }, + { + "id": 38890, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "long-grain rice", + "flour tortillas", + "salsa", + "refried beans" + ] + }, + { + "id": 22462, + "cuisine": "filipino", + "ingredients": [ + "string beans", + "radishes", + "garlic", + "water", + "beef stock", + "onions", + "black pepper", + "tamarind juice", + "salt", + "beef", + "taro" + ] + }, + { + "id": 13708, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "chicken breasts", + "cherry tomatoes", + "onions", + "mozzarella cheese", + "dried mixed herbs", + "olive oil" + ] + }, + { + "id": 47440, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "zucchini", + "chopped onion", + "part-skim mozzarella cheese", + "cooking spray", + "pasta sauce", + "large eggs", + "lasagna noodles", + "fat-free cottage cheese" + ] + }, + { + "id": 1622, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "vegetable oil", + "corn tortillas", + "kosher salt", + "lime wedges", + "garlic cloves", + "boneless chicken skinless thigh", + "radishes", + "cumin seed", + "avocado", + "ground black pepper", + "cilantro sprigs", + "onions" + ] + }, + { + "id": 42700, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "chickpeas", + "cooked rice", + "garam masala", + "onions", + "tomato paste", + "fresh ginger", + "chopped cilantro", + "crushed tomatoes", + "greek style plain yogurt", + "serrano chile" + ] + }, + { + "id": 43696, + "cuisine": "southern_us", + "ingredients": [ + "pasta", + "shredded cheddar cheese", + "green onions", + "salt", + "bread crumbs", + "self rising flour", + "butter", + "jack cheese", + "water", + "cajun seasoning", + "crawfish", + "half & half", + "bacon" + ] + }, + { + "id": 1500, + "cuisine": "italian", + "ingredients": [ + "water", + "ground black pepper", + "cornmeal", + "olive oil", + "garlic", + "onions", + "crushed tomatoes", + "grated parmesan cheese", + "fresh parsley", + "tomatoes", + "eggplant", + "salt" + ] + }, + { + "id": 34974, + "cuisine": "indian", + "ingredients": [ + "seasoning", + "fresh lemon juice", + "butter", + "large shrimp", + "garlic", + "zucchini", + "chopped cilantro fresh" + ] + }, + { + "id": 7688, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "water", + "light corn syrup", + "unsalted butter", + "peanuts", + "granulated white sugar" + ] + }, + { + "id": 44253, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "collard greens", + "low salt chicken broth", + "crushed red pepper", + "garlic cloves" + ] + }, + { + "id": 22190, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "onions", + "parmigiano reggiano cheese", + "cracked black pepper", + "guanciale", + "pecorino romano cheese", + "spaghetti", + "large eggs", + "salt" + ] + }, + { + "id": 29529, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "black olives", + "red bell pepper", + "cumin", + "black beans", + "chili powder", + "red enchilada sauce", + "corn tortillas", + "chicken broth", + "diced red onions", + "creole seasoning", + "ground turkey", + "refried beans", + "onion powder", + "shredded mozzarella cheese", + "garlic salt" + ] + }, + { + "id": 10924, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "condensed cream of mushroom soup", + "chicken", + "shredded cheddar cheese", + "corn tortillas", + "condensed cream of chicken soup", + "salsa", + "milk", + "onions" + ] + }, + { + "id": 16509, + "cuisine": "spanish", + "ingredients": [ + "baby spinach", + "pinenuts", + "extra-virgin olive oil", + "gravenstein apple", + "salt", + "raisins" + ] + }, + { + "id": 22251, + "cuisine": "vietnamese", + "ingredients": [ + "green onions", + "thai chile", + "coconut milk", + "lemongrass", + "rice noodles", + "firm tofu", + "herbs", + "ginger", + "beansprouts", + "coconut oil", + "lime wedges", + "laksa paste", + "broth" + ] + }, + { + "id": 7953, + "cuisine": "italian", + "ingredients": [ + "green beans", + "chicken breasts", + "red potato", + "seasoning mix", + "butter" + ] + }, + { + "id": 4073, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "buttermilk", + "lemon juice", + "lemon zest", + "vanilla", + "eggs", + "baking powder", + "salt", + "sugar", + "butter", + "all-purpose flour" + ] + }, + { + "id": 13362, + "cuisine": "mexican", + "ingredients": [ + "reduced fat monterey jack cheese", + "hot pepper sauce", + "all-purpose flour", + "sliced green onions", + "water", + "chile pepper", + "corn tortillas", + "tomato sauce", + "chili powder", + "chopped onion", + "ground cumin", + "olive oil", + "salt", + "95% lean ground beef" + ] + }, + { + "id": 4439, + "cuisine": "greek", + "ingredients": [ + "penne", + "red pepper flakes", + "feta cheese crumbles", + "kosher salt", + "kalamata", + "dried oregano", + "sugar", + "diced tomatoes", + "fresh basil leaves", + "olive oil", + "garlic" + ] + }, + { + "id": 11284, + "cuisine": "southern_us", + "ingredients": [ + "tea bags", + "olive oil", + "navel oranges", + "kosher salt", + "turkey", + "onions", + "brown sugar", + "lemon", + "garlic cloves", + "black peppercorns", + "water", + "cracked black pepper", + "ice" + ] + }, + { + "id": 26698, + "cuisine": "mexican", + "ingredients": [ + "salt", + "tomatoes", + "onions", + "avocado", + "chillies", + "lime juice", + "coriander" + ] + }, + { + "id": 20037, + "cuisine": "mexican", + "ingredients": [ + "flank steak", + "cilantro leaves", + "olive oil", + "garlic", + "fresh lime juice", + "jalapeno chilies", + "salt", + "cracked black pepper", + "cumin seed" + ] + }, + { + "id": 48129, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "feta cheese crumbles", + "frozen chopped spinach", + "scallions", + "hot red pepper flakes", + "garlic cloves", + "unsalted butter", + "acini di pepe" + ] + }, + { + "id": 37066, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "cilantro", + "garlic cloves", + "onions", + "hard-boiled egg", + "salt", + "greek yogurt", + "ground turmeric", + "garam masala", + "ginger", + "black mustard seeds", + "coriander", + "chili powder", + "cumin seed", + "ghee", + "asafetida" + ] + }, + { + "id": 34018, + "cuisine": "japanese", + "ingredients": [ + "sushi rice", + "red pepper", + "carrots", + "wasabi paste", + "mirin", + "sushi nori", + "avocado", + "gari", + "salt", + "cucumber", + "soy sauce", + "spring onions", + "Japanese rice vinegar" + ] + }, + { + "id": 6157, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "turkey", + "carrots", + "chicken broth", + "chili powder", + "long-grain rice", + "oregano", + "celery ribs", + "bay leaves", + "garlic", + "smoked paprika", + "kosher salt", + "parsley", + "sausages" + ] + }, + { + "id": 18813, + "cuisine": "italian", + "ingredients": [ + "pasta", + "potatoes", + "onions", + "water", + "carrots", + "tomato paste", + "garlic", + "kidney beans", + "celery" + ] + }, + { + "id": 36458, + "cuisine": "moroccan", + "ingredients": [ + "eggs", + "hot pepper", + "salt", + "cumin", + "tomato paste", + "water", + "paprika", + "ground meat", + "pepper", + "parsley", + "garlic cloves", + "tomatoes", + "olive oil", + "ginger", + "onions" + ] + }, + { + "id": 22000, + "cuisine": "moroccan", + "ingredients": [ + "large eggs", + "garlic cloves", + "ground cumin", + "water", + "paprika", + "chopped cilantro", + "crushed tomatoes", + "salt", + "onions", + "ground chuck", + "Spanish smoked paprika", + "ground cayenne pepper" + ] + }, + { + "id": 35152, + "cuisine": "french", + "ingredients": [ + "brandy", + "sour cream", + "strawberries", + "brown sugar" + ] + }, + { + "id": 31941, + "cuisine": "indian", + "ingredients": [ + "urad dal", + "semolina", + "oil", + "salt", + "parboiled rice" + ] + }, + { + "id": 20328, + "cuisine": "mexican", + "ingredients": [ + "chicken bouillon", + "boneless skinless chicken breasts", + "pepitas", + "pasilla chiles", + "sesame seeds", + "creamy peanut butter", + "dried oregano", + "olive oil", + "mexican chocolate", + "onions", + "ground cloves", + "tortillas", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 30891, + "cuisine": "italian", + "ingredients": [ + "cold water", + "active dry yeast", + "warm water", + "bread flour" + ] + }, + { + "id": 34024, + "cuisine": "japanese", + "ingredients": [ + "light soy sauce", + "toasted sesame seeds", + "sugar", + "beef sirloin", + "sake", + "mirin", + "water", + "oil" + ] + }, + { + "id": 42333, + "cuisine": "italian", + "ingredients": [ + "vegetable oil spray", + "peaches", + "pecorino cheese", + "extra-virgin olive oil", + "prosciutto" + ] + }, + { + "id": 42419, + "cuisine": "spanish", + "ingredients": [ + "ice cubes", + "lemon juice", + "red wine", + "club soda", + "brandy", + "white sugar", + "orange juice" + ] + }, + { + "id": 15426, + "cuisine": "japanese", + "ingredients": [ + "sake", + "dashi", + "enokitake", + "soy sauce", + "beef", + "vegetable oil", + "pepper", + "mirin", + "sugar", + "shiitake", + "leeks" + ] + }, + { + "id": 10792, + "cuisine": "southern_us", + "ingredients": [ + "semisweet chocolate", + "chopped pecans", + "butter", + "OREO® Cookies", + "chocolate instant pudding", + "sweetened condensed milk", + "frozen whipped topping", + "2% reduced-fat milk" + ] + }, + { + "id": 45871, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "ragu cheesi classic alfredo sauc", + "potatoes", + "corn tortillas", + "poblano peppers", + "knorr chicken flavor bouillon", + "shredded monterey jack cheese", + "Country Crock® Spread" + ] + }, + { + "id": 11603, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "chopped fresh thyme", + "fresh oregano", + "grated parmesan cheese", + "ground pork", + "onions", + "olive oil", + "red wine", + "fresh mushrooms", + "tomato paste", + "lean ground beef", + "garlic", + "dried rosemary" + ] + }, + { + "id": 21197, + "cuisine": "vietnamese", + "ingredients": [ + "chicken stock", + "vinegar", + "salt", + "shrimp", + "pork", + "vegetable oil", + "rice flour", + "sugar", + "shallots", + "all-purpose flour", + "coconut milk", + "mung beans", + "garlic", + "carrots" + ] + }, + { + "id": 20196, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "vegetable broth", + "cinnamon sticks", + "chopped cilantro fresh", + "brown sugar", + "bay leaves", + "ground coriander", + "thyme sprigs", + "dried currants", + "fresh orange juice", + "garlic cloves", + "onions", + "tomatoes", + "cooking spray", + "salt", + "orange rind", + "ground cumin" + ] + }, + { + "id": 11276, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "apple cider vinegar", + "yellow onion", + "molasses", + "prepared mustard", + "bacon", + "tomato sauce", + "cayenne", + "worcestershire sauce", + "liquid", + "kosher salt", + "chili powder", + "garlic" + ] + }, + { + "id": 25837, + "cuisine": "japanese", + "ingredients": [ + "amchur", + "chili powder", + "lentils", + "chili paste", + "cumin seed", + "garam masala", + "salt", + "ginger paste", + "asafoetida", + "flour", + "oil" + ] + }, + { + "id": 22319, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "lemon", + "vanilla extract", + "cold water", + "flour", + "buttermilk", + "maple syrup", + "salted butter", + "all purpose unbleached flour", + "fine sea salt", + "brown sugar", + "egg yolks", + "rye flour" + ] + }, + { + "id": 23741, + "cuisine": "italian", + "ingredients": [ + "boneless, skinless chicken breast", + "fresh thyme leaves", + "water", + "I Can't Believe It's Not Butter!® Spread", + "sweet onion", + "all-purpose flour", + "marsala wine", + "knorr homestyl stock chicken", + "white mushrooms" + ] + }, + { + "id": 16167, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "vegetable oil cooking spray", + "pimentos", + "dry bread crumbs", + "tomatoes", + "fresh cilantro", + "raisins", + "onions", + "green bell pepper", + "won ton wrappers", + "salt", + "ground cumin", + "chicken broth", + "pepper", + "chicken breasts", + "garlic cloves" + ] + }, + { + "id": 13207, + "cuisine": "southern_us", + "ingredients": [ + "bread crumb fresh", + "whole milk", + "all-purpose flour", + "unsalted butter", + "heavy cream", + "chipotle chile", + "macaroni", + "dry mustard", + "olive oil", + "large garlic cloves", + "extra sharp cheddar cheese" + ] + }, + { + "id": 4655, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "Melba toast", + "drumstick", + "dijon style mustard", + "vegetable oil cooking spray", + "large eggs", + "dried thyme", + "salt" + ] + }, + { + "id": 38669, + "cuisine": "french", + "ingredients": [ + "cauliflower", + "fennel bulb", + "gruyere cheese", + "fronds", + "butter", + "all-purpose flour", + "bread crumb fresh", + "grated parmesan cheese", + "salt", + "ground nutmeg", + "whipping cream" + ] + }, + { + "id": 44352, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "dry white wine", + "chopped onion", + "arborio rice", + "grated parmesan cheese", + "butter", + "cooking oil", + "boneless skinless chicken breasts", + "fresh parsley", + "canned low sodium chicken broth", + "mushrooms", + "salt" + ] + }, + { + "id": 23876, + "cuisine": "french", + "ingredients": [ + "smoked whitefish", + "salt", + "cannellini beans", + "milk", + "garlic cloves", + "fresh thyme leaves" + ] + }, + { + "id": 13868, + "cuisine": "vietnamese", + "ingredients": [ + "peanuts", + "cilantro leaves", + "fish sauce", + "bawang goreng", + "carrots", + "mint leaves", + "crabmeat", + "pomelo", + "chicken breasts", + "cucumber" + ] + }, + { + "id": 33518, + "cuisine": "italian", + "ingredients": [ + "water", + "granulated sugar", + "lemon", + "milk", + "lemon peel", + "all-purpose flour", + "ground cinnamon", + "unsalted butter", + "wheat", + "confectioners sugar", + "large egg yolks", + "large eggs", + "ricotta" + ] + }, + { + "id": 30908, + "cuisine": "indian", + "ingredients": [ + "peeled fresh ginger", + "salt", + "brown sugar", + "crushed red pepper", + "ground cloves", + "purple onion", + "red wine vinegar", + "mustard seeds" + ] + }, + { + "id": 34853, + "cuisine": "mexican", + "ingredients": [ + "lime", + "onion powder", + "cumin", + "chuck roast", + "salt", + "garlic powder", + "cracked black pepper", + "chili powder", + "beef broth" + ] + }, + { + "id": 31471, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "chili pepper", + "chicken breasts", + "garlic", + "basmati rice", + "plain yogurt", + "fresh ginger", + "heavy cream", + "onions", + "kosher salt", + "garam masala", + "diced tomatoes", + "frozen peas", + "sugar", + "fresh cilantro", + "butter", + "ground coriander", + "cumin" + ] + }, + { + "id": 18415, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "freshly grated parmesan", + "heavy cream", + "freshly ground pepper", + "ground beef", + "italian tomatoes", + "large garlic cloves", + "extra-virgin olive oil", + "penne rigate", + "chicken stock", + "dry white wine", + "ground pork", + "carrots", + "onions", + "pancetta", + "dried thyme", + "ground veal", + "salt", + "bay leaf" + ] + }, + { + "id": 10634, + "cuisine": "indian", + "ingredients": [ + "eggs", + "salt", + "garam masala", + "ground coriander", + "fresh coriander", + "lamb", + "chilli paste", + "onions" + ] + }, + { + "id": 49567, + "cuisine": "vietnamese", + "ingredients": [ + "lemon grass", + "chicken", + "water", + "corn starch", + "fish sauce", + "vegetable oil", + "curry powder", + "chopped cilantro" + ] + }, + { + "id": 16924, + "cuisine": "french", + "ingredients": [ + "large eggs", + "vanilla extract", + "sugar", + "corn starch", + "2% reduced-fat milk" + ] + }, + { + "id": 47613, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salsa", + "medium shrimp uncook", + "Kraft Big Slice Pepper Jack Cheese Slices", + "flour tortillas", + "oil", + "ground red pepper" + ] + }, + { + "id": 27144, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "lemon", + "chickpeas", + "garlic cloves", + "ground cumin", + "tumeric", + "yeast extract", + "ground coriander", + "toasted sesame seeds", + "chili flakes", + "ginger", + "coconut cream", + "onions", + "red lentils", + "baby spinach leaves", + "broccoli", + "oil", + "cashew nuts" + ] + }, + { + "id": 1672, + "cuisine": "indian", + "ingredients": [ + "sugar", + "condensed milk", + "powdered milk", + "saffron", + "milk", + "cardamom pods", + "nutmeg", + "pistachios" + ] + }, + { + "id": 10786, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "all-purpose flour", + "tomatoes", + "bacon", + "turkey breast", + "bread", + "butter", + "sliced ham", + "grated parmesan cheese", + "shredded sharp cheddar cheese", + "chicken base" + ] + }, + { + "id": 41355, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "tomatillos", + "fresh oregano", + "ground black pepper", + "cilantro leaves", + "poblano chiles", + "olive oil", + "salt", + "garlic cloves", + "chicken stock", + "jalapeno chilies", + "yellow onion", + "pork shoulder" + ] + }, + { + "id": 3210, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "cilantro leaves", + "canola oil", + "sugar", + "thai chile", + "coconut milk", + "fish sauce", + "shallots", + "red bell pepper", + "boneless chicken skinless thigh", + "salt", + "Madras curry powder" + ] + }, + { + "id": 18551, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "grated lemon peel", + "cream cheese", + "whipping cream", + "lemon juice" + ] + }, + { + "id": 4984, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "portabello mushroom", + "cherry tomatoes", + "garlic oil", + "shredded mozzarella cheese", + "baby spinach" + ] + }, + { + "id": 9221, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "garlic", + "soy sauce", + "sesame oil", + "white sugar", + "mirin", + "rice vinegar", + "black pepper", + "red pepper flakes" + ] + }, + { + "id": 13995, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "fat skimmed chicken broth", + "cherry tomatoes", + "mushrooms", + "polenta", + "grated parmesan cheese", + "onions", + "cream style corn", + "garlic", + "sliced green onions" + ] + }, + { + "id": 17812, + "cuisine": "vietnamese", + "ingredients": [ + "baby bok choy", + "vegetable oil", + "scallions", + "serrano chile", + "basil leaves", + "ginger", + "cinnamon sticks", + "lime", + "sea salt", + "garlic cloves", + "bone in chicken thighs", + "fish sauce", + "rice noodles", + "cilantro leaves", + "onions" + ] + }, + { + "id": 37454, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "garlic cloves", + "chopped cooked ham", + "cracked black pepper", + "reduced-fat sour cream", + "spaghetti", + "parmigiano reggiano cheese", + "salt" + ] + }, + { + "id": 3962, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "port", + "soy sauce", + "large garlic cloves", + "fresh lemon juice", + "firmly packed light brown sugar", + "low sodium chicken broth", + "pork spareribs", + "fresh ginger", + "light corn syrup", + "five-spice powder" + ] + }, + { + "id": 26368, + "cuisine": "japanese", + "ingredients": [ + "black pepper", + "garam masala", + "meat", + "salt", + "Madras curry powder", + "honey", + "potatoes", + "apples", + "carrots", + "tomato paste", + "salted butter", + "leeks", + "garlic", + "onions", + "water", + "hoisin sauce", + "ginger", + "all-purpose flour", + "canola oil" + ] + }, + { + "id": 26923, + "cuisine": "brazilian", + "ingredients": [ + "avocado", + "black pepper", + "onion powder", + "garlic", + "yellow onion", + "oregano", + "emerils original essence", + "hearts of palm", + "vegetable oil", + "white wine vinegar", + "cayenne pepper", + "tomatoes", + "dried thyme", + "paprika", + "salt", + "fresh lime juice", + "green bell pepper", + "garlic powder", + "extra-virgin olive oil", + "all-purpose flour", + "chopped cilantro" + ] + }, + { + "id": 41849, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "boneless duck breast", + "goat cheese", + "olive oil", + "yellow onion", + "honey", + "baked pizza crust", + "pepper", + "salt", + "dried rosemary" + ] + }, + { + "id": 9018, + "cuisine": "southern_us", + "ingredients": [ + "macaroni", + "celery", + "cracked black pepper", + "pickle relish", + "yellow mustard", + "onions", + "mayonaise", + "red bell pepper" + ] + }, + { + "id": 10851, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "hard-boiled egg", + "rice", + "chicken", + "fish sauce", + "fresh ginger", + "garlic", + "calamansi", + "water", + "green onions", + "oil", + "fried garlic", + "bouillon cube", + "salt", + "onions" + ] + }, + { + "id": 1804, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "olive oil", + "stewed tomatoes", + "celery", + "water", + "potatoes", + "carrots", + "onions", + "minced garlic", + "grated parmesan cheese", + "white beans", + "bay leaf", + "bread", + "dried thyme", + "shredded cabbage", + "chopped parsley" + ] + }, + { + "id": 49316, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "fresh lemon juice", + "whipping cream", + "flat leaf parsley", + "grated parmesan cheese", + "green beans", + "artichoke hearts", + "linguine" + ] + }, + { + "id": 10666, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "water", + "vegetable oil", + "chicken fingers", + "soy sauce", + "panko", + "garlic", + "dry roasted peanuts", + "green onions", + "rice vinegar", + "brown sugar", + "fresh ginger", + "red pepper flakes", + "corn starch" + ] + }, + { + "id": 16243, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "garlic", + "boneless skinless chicken breasts", + "chopped cilantro fresh", + "ground black pepper", + "salt", + "plain yogurt", + "paprika", + "ground cumin" + ] + }, + { + "id": 10112, + "cuisine": "french", + "ingredients": [ + "crusty bread", + "salt", + "fresh lemon juice", + "roquefort cheese", + "balsamic vinegar", + "freshly ground pepper", + "pure olive oil", + "dijon mustard", + "walnuts", + "granny smith apples", + "crème fraîche" + ] + }, + { + "id": 29307, + "cuisine": "chinese", + "ingredients": [ + "molasses", + "hoisin sauce", + "red food coloring", + "sugar", + "minced garlic", + "marinade", + "chinese five-spice powder", + "boneless pork shoulder", + "white pepper", + "Shaoxing wine", + "salt", + "warm water", + "honey", + "sesame oil", + "oil" + ] + }, + { + "id": 37393, + "cuisine": "mexican", + "ingredients": [ + "tomato salsa", + "mature cheddar", + "tortilla chips", + "skinless chicken breasts", + "sour cream" + ] + }, + { + "id": 45056, + "cuisine": "spanish", + "ingredients": [ + "vanilla extract", + "sugar", + "salt", + "1% low-fat milk", + "egg substitute", + "sweetened condensed milk" + ] + }, + { + "id": 34110, + "cuisine": "cajun_creole", + "ingredients": [ + "grape tomatoes", + "chives", + "sea salt", + "fresh lemon juice", + "green cabbage", + "dijon mustard", + "Tabasco Pepper Sauce", + "purple onion", + "flat leaf parsley", + "ground black pepper", + "light mayonnaise", + "paprika", + "shrimp", + "capers", + "chopped green bell pepper", + "worcestershire sauce", + "garlic cloves" + ] + }, + { + "id": 9680, + "cuisine": "jamaican", + "ingredients": [ + "brown sugar", + "cayenne pepper", + "lime", + "allspice", + "kosher salt", + "whole chicken", + "cinnamon" + ] + }, + { + "id": 25102, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "vegetable oil", + "minced garlic", + "onions", + "chicken broth", + "white rice", + "chili powder", + "ground cumin" + ] + }, + { + "id": 32642, + "cuisine": "vietnamese", + "ingredients": [ + "spring roll wrappers", + "chicken meat", + "oyster sauce", + "yam bean", + "chicken bouillon granules", + "water", + "salt", + "shrimp", + "pepper", + "garlic", + "carrots", + "plain flour", + "cooking oil", + "dried shiitake mushrooms", + "corn starch" + ] + }, + { + "id": 17308, + "cuisine": "southern_us", + "ingredients": [ + "chopped fresh chives", + "low-sodium fat-free chicken broth", + "salt", + "chicken thighs", + "parsnips", + "whole milk", + "peas", + "baby carrots", + "leeks", + "chopped fresh thyme", + "all-purpose flour", + "canola oil", + "ground black pepper", + "baking powder", + "chopped celery", + "bay leaf" + ] + }, + { + "id": 45648, + "cuisine": "chinese", + "ingredients": [ + "sambal ulek", + "fresh ginger", + "cucumber", + "sliced green onions", + "lean ground pork", + "garlic cloves", + "chopped cilantro fresh", + "sugar", + "salt", + "fresh lime juice", + "low sodium soy sauce", + "dry roasted peanuts", + "Chinese egg noodles", + "canola oil" + ] + }, + { + "id": 20300, + "cuisine": "chinese", + "ingredients": [ + "light brown sugar", + "minced ginger", + "corn starch", + "black bean garlic sauce", + "sirloin steak", + "stir fry vegetable blend", + "wide rice noodles", + "reduced sodium soy sauce", + "onions", + "water", + "dry sherry", + "canola oil" + ] + }, + { + "id": 26719, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "hot sauce", + "scallions", + "fresh parsley", + "green bell pepper", + "salt", + "wild rice", + "bay leaf", + "chicken", + "celery ribs", + "chopped fresh thyme", + "sauce", + "garlic cloves", + "onions", + "chicken stock", + "ground pork", + "butter oil", + "red bell pepper", + "long grain white rice" + ] + }, + { + "id": 45220, + "cuisine": "chinese", + "ingredients": [ + "garlic", + "chinese five-spice powder", + "salt", + "pork belly" + ] + }, + { + "id": 47844, + "cuisine": "italian", + "ingredients": [ + "fresh dill", + "beef stock", + "salt", + "ground black pepper", + "chopped fresh thyme", + "onions", + "olive oil", + "balsamic vinegar", + "sour cream", + "dijon mustard", + "garlic" + ] + }, + { + "id": 15941, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "jasmine rice", + "hard-boiled egg", + "feta cheese crumbles", + "coconut oil", + "refried beans", + "salsa", + "chipotles in adobo", + "chicken broth", + "pepper", + "large garlic cloves", + "sour cream", + "kosher salt", + "pork tenderloin", + "yellow onion", + "chopped cilantro" + ] + }, + { + "id": 3169, + "cuisine": "italian", + "ingredients": [ + "white chocolate", + "almond extract", + "sugar", + "large eggs", + "salt", + "sliced almonds", + "heavy cream", + "unsalted butter", + "vanilla extract" + ] + }, + { + "id": 43129, + "cuisine": "mexican", + "ingredients": [ + "salt", + "water", + "masa harina", + "olive oil" + ] + }, + { + "id": 37171, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh basil", + "salt", + "fresh parsley", + "artichok heart marin", + "mixed greens", + "roasted red peppers", + "creole seasoning", + "mirlitons", + "balsamic vinegar", + "garlic cloves" + ] + }, + { + "id": 41090, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "veal", + "all-purpose flour", + "dried porcini mushrooms", + "large garlic cloves", + "onions", + "marsala wine", + "fresh thyme", + "ground allspice", + "dried thyme", + "button mushrooms" + ] + }, + { + "id": 27822, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "bean paste", + "sesame seeds", + "water", + "sugar", + "rice cakes" + ] + }, + { + "id": 25521, + "cuisine": "mexican", + "ingredients": [ + "poblano chiles", + "monterey jack", + "asadero", + "mexican chorizo" + ] + }, + { + "id": 9173, + "cuisine": "italian", + "ingredients": [ + "coffee", + "mascarpone", + "ricotta cheese", + "powdered sugar", + "cannoli shells", + "semisweet chocolate", + "apricot preserves" + ] + }, + { + "id": 6408, + "cuisine": "japanese", + "ingredients": [ + "tomatoes", + "garam masala", + "salt", + "onions", + "water", + "chili powder", + "cumin seed", + "ground turmeric", + "garlic paste", + "coriander powder", + "cilantro leaves", + "methi", + "amchur", + "bhindi", + "oil" + ] + }, + { + "id": 32172, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "ginger", + "garlic cloves", + "cumin", + "chicken stock", + "cinnamon", + "ras el hanout", + "onions", + "olive oil", + "lamb shoulder", + "orange rind", + "green olives", + "dates", + "salt", + "coriander" + ] + }, + { + "id": 15017, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "large garlic cloves", + "salt", + "cherry tomatoes", + "extra-virgin olive oil", + "fresh lemon juice", + "black pepper", + "Italian parsley leaves", + "squid", + "celery ribs", + "red wine vinegar", + "purple onion" + ] + }, + { + "id": 491, + "cuisine": "mexican", + "ingredients": [ + "water", + "chili powder", + "onions", + "taco sauce", + "chopped green bell pepper", + "salt", + "boneless skinless chicken breast halves", + "shredded cheddar cheese", + "flour tortillas", + "sour cream", + "dried oregano", + "tomato sauce", + "ground black pepper", + "garlic", + "dried parsley" + ] + }, + { + "id": 8514, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "egg yolks", + "sliced mushrooms", + "ground black pepper", + "salt", + "salmon", + "pastry dough", + "onions", + "spinach", + "hard-boiled egg", + "thyme leaves" + ] + }, + { + "id": 15239, + "cuisine": "japanese", + "ingredients": [ + "dried bonito flakes", + "konbu", + "cold water" + ] + }, + { + "id": 15720, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "all-purpose flour", + "butter", + "milk", + "eggs", + "vanilla extract" + ] + }, + { + "id": 31218, + "cuisine": "vietnamese", + "ingredients": [ + "serrano chilies", + "lemongrass", + "vegetable oil", + "catfish", + "onions", + "fish sauce", + "mushrooms", + "cilantro", + "beansprouts", + "mint", + "tamarind juice", + "pineapple", + "garlic cloves", + "bamboo shoots", + "chicken stock", + "sugar", + "green onions", + "salt", + "galangal" + ] + }, + { + "id": 5997, + "cuisine": "chinese", + "ingredients": [ + "pickles", + "rice vinegar", + "kimchi", + "coconut oil", + "sea salt", + "chinese five-spice powder", + "canola oil", + "butter lettuce", + "ginger", + "garlic cloves", + "chicken", + "raw honey", + "scallions", + "gluten-free tamari" + ] + }, + { + "id": 9451, + "cuisine": "korean", + "ingredients": [ + "sugar", + "anchovies", + "onions", + "fishcake", + "chilli paste", + "soy sauce", + "spring onions", + "syrup", + "rice cakes" + ] + }, + { + "id": 32827, + "cuisine": "italian", + "ingredients": [ + "garlic", + "olive oil", + "fresh basil leaves", + "pinenuts", + "fresh parsley", + "grated parmesan cheese" + ] + }, + { + "id": 44332, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "salsa", + "ground cumin", + "water", + "butter", + "sour cream", + "red wine vinegar", + "beef broth", + "flour tortillas", + "boneless beef chuck roast", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 48360, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "oil", + "plain flour", + "light soy sauce", + "ginger", + "minced pork", + "warm water", + "chili oil", + "chinese chives", + "eggs", + "Shaoxing wine", + "chinese cabbage", + "black rice vinegar" + ] + }, + { + "id": 9419, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "soy sauce", + "sweet onion", + "vegetable oil", + "salt", + "pork", + "water", + "jalapeno chilies", + "white wine vinegar", + "toasted sesame oil", + "mayonaise", + "seedless cucumber", + "lemon grass", + "cilantro", + "rice vinegar", + "sugar", + "baguette", + "extra firm tofu", + "garlic", + "carrots" + ] + }, + { + "id": 42247, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "english cucumber", + "salt", + "lemon", + "wakame", + "rice vinegar" + ] + }, + { + "id": 24371, + "cuisine": "cajun_creole", + "ingredients": [ + "white onion", + "bamboo shoots", + "green bell pepper", + "creole seasoning", + "grape tomatoes", + "smoked sausage", + "large shrimp", + "boneless chicken skinless thigh", + "bbq sauce" + ] + }, + { + "id": 16473, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "boneless chuck roast", + "red wine", + "less sodium beef broth", + "ground cloves", + "medium egg noodles", + "salt", + "carrots", + "olive oil", + "chopped fresh thyme", + "chopped onion", + "bay leaf", + "fresh rosemary", + "ground black pepper", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 4525, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh tomatoes", + "garlic", + "fresh basil", + "red wine vinegar", + "baguette", + "salt" + ] + }, + { + "id": 33419, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "chili powder", + "cardamom pods", + "cinnamon sticks", + "ginger paste", + "clove", + "garam masala", + "cayenne pepper", + "lemon juice", + "chopped cilantro fresh", + "tomato purée", + "unsalted butter", + "green chilies", + "greek yogurt", + "chicken", + "honey", + "salt", + "mustard oil", + "peppercorns" + ] + }, + { + "id": 19090, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "vegetable oil", + "poblano chiles", + "onions", + "ground cumin", + "zucchini", + "beef broth", + "fresh lime juice", + "long grain white rice", + "kosher salt", + "large eggs", + "garlic cloves", + "ground beef", + "dried oregano", + "panko", + "ancho powder", + "corn tortillas", + "chopped cilantro fresh" + ] + }, + { + "id": 5144, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "dried rosemary", + "zucchini", + "salt", + "black pepper", + "garlic", + "parsley", + "parmagiano reggiano" + ] + }, + { + "id": 43219, + "cuisine": "indian", + "ingredients": [ + "serrano chilies", + "fresh ginger", + "salt", + "chopped cilantro fresh", + "lime juice", + "garlic", + "fresh mint", + "tumeric", + "potatoes", + "cumin seed", + "caraway seeds", + "chili", + "purple onion", + "salad oil" + ] + }, + { + "id": 30801, + "cuisine": "mexican", + "ingredients": [ + "no-salt-added black beans", + "chopped cilantro fresh", + "red bell pepper", + "salt", + "canola oil", + "jalapeno chilies", + "fresh lime juice" + ] + }, + { + "id": 42889, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "zucchini", + "garlic cloves", + "spinach leaves", + "fresh ginger", + "sesame oil", + "onions", + "roasted sesame seeds", + "cooking oil", + "carrots", + "brown sugar", + "beef", + "rice" + ] + }, + { + "id": 39891, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "baked ham", + "smoked sausage", + "cooked white rice", + "dried thyme", + "red beans", + "salt", + "chopped garlic", + "chopped bell pepper", + "bay leaves", + "chopped celery", + "onions", + "ground black pepper", + "vegetable oil", + "cayenne pepper" + ] + }, + { + "id": 30094, + "cuisine": "british", + "ingredients": [ + "sauce", + "back bacon", + "rolls", + "unsalted butter" + ] + }, + { + "id": 49611, + "cuisine": "italian", + "ingredients": [ + "brussels sprouts", + "radicchio", + "grated parmesan cheese", + "sea salt", + "garlic cloves", + "panettone", + "ground black pepper", + "apple cider vinegar", + "extra-virgin olive oil", + "granny smith apples", + "vegetable oil spray", + "shallots", + "apple cider", + "pancetta", + "pomegranate seeds", + "fresh thyme", + "butter", + "chopped fresh sage" + ] + }, + { + "id": 6057, + "cuisine": "italian", + "ingredients": [ + "sliced salami", + "pepperoni", + "refrigerated crescent rolls", + "banana peppers", + "roasted red peppers", + "sliced ham", + "provolone cheese" + ] + }, + { + "id": 37499, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "grated lemon zest", + "pimento stuffed green olives", + "capers", + "chopped fresh thyme", + "garlic cloves", + "roasted red peppers", + "oil", + "olive oil", + "kalamata", + "flat leaf parsley" + ] + }, + { + "id": 48932, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "tomatoes", + "yellow peppers", + "dressing", + "green pepper", + "chicken breasts" + ] + }, + { + "id": 33830, + "cuisine": "british", + "ingredients": [ + "eggs", + "vegetable bouillon", + "lamb", + "onions", + "water", + "beef", + "bay leaf", + "plain flour", + "large egg yolks", + "mushrooms", + "kidney", + "pig", + "unsalted butter", + "peanut oil" + ] + }, + { + "id": 37191, + "cuisine": "mexican", + "ingredients": [ + "water", + "scallions", + "corn kernels", + "masa harina", + "fresh cilantro", + "poblano chiles", + "kosher salt", + "yellow onion" + ] + }, + { + "id": 28742, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "salt", + "butter", + "all-purpose flour", + "sweet chocolate", + "confectioners sugar", + "vanilla extract", + "ground pecans" + ] + }, + { + "id": 5829, + "cuisine": "mexican", + "ingredients": [ + "salt", + "chili powder", + "flour tortillas", + "lime juice", + "ground cumin" + ] + }, + { + "id": 29980, + "cuisine": "indian", + "ingredients": [ + "spinach", + "jalapeno chilies", + "buttermilk", + "coconut milk", + "garam masala", + "vegetable oil", + "freshly ground pepper", + "kosher salt", + "whole milk", + "ginger", + "onions", + "unsalted butter", + "mustard greens", + "garlic cloves" + ] + }, + { + "id": 22438, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "water", + "sweet potatoes", + "sugar", + "flour", + "condensed milk", + "melted butter", + "ground nutmeg", + "vanilla extract", + "eggs", + "lemon extract", + "pie shell" + ] + }, + { + "id": 35546, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "all-purpose flour", + "buttermilk", + "butter", + "sweet potatoes", + "salt" + ] + }, + { + "id": 25763, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "chili powder", + "sour cream", + "corn", + "tortillas", + "salt", + "Mexican cheese blend", + "shredded lettuce", + "refried beans", + "cooked chicken", + "salsa" + ] + }, + { + "id": 27773, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "buttermilk", + "baking powder", + "yellow corn meal", + "vegetable oil", + "baking soda", + "salt" + ] + }, + { + "id": 37827, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "garlic", + "olive oil", + "pepper", + "salt", + "fresh basil", + "french bread" + ] + }, + { + "id": 5193, + "cuisine": "greek", + "ingredients": [ + "large garlic cloves", + "medium shrimp", + "blanched almonds", + "extra-virgin olive oil", + "white sandwich bread", + "fresh rosemary", + "fresh lemon juice" + ] + }, + { + "id": 33243, + "cuisine": "mexican", + "ingredients": [ + "cherry tomatoes", + "shells", + "Mexican cheese blend", + "sour cream", + "olive oil", + "purple onion", + "lettuce", + "meat", + "chopped cilantro fresh" + ] + }, + { + "id": 30308, + "cuisine": "mexican", + "ingredients": [ + "sweet onion", + "cilantro", + "canola oil", + "chicken stock", + "jalapeno chilies", + "salt", + "lime", + "garlic", + "pepper", + "tomatillos", + "scallions" + ] + }, + { + "id": 15190, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "ground beef", + "olive oil", + "carrots", + "diced tomatoes", + "thyme", + "pasta", + "purple onion", + "herbes de provence" + ] + }, + { + "id": 46665, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "sugar", + "pie shell", + "lemon", + "large eggs" + ] + }, + { + "id": 4577, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "egg yolks", + "oil", + "unsalted butter", + "frozen corn", + "kosher salt", + "buttermilk", + "self-rising cornmeal", + "eggs", + "jalapeno chilies", + "sharp cheddar cheese" + ] + }, + { + "id": 25660, + "cuisine": "greek", + "ingredients": [ + "greek style plain yogurt", + "strawberries", + "sugar" + ] + }, + { + "id": 18217, + "cuisine": "italian", + "ingredients": [ + "water", + "bacon", + "onions", + "white wine", + "cannellini beans", + "garlic", + "chicken", + "tomato paste", + "parmesan cheese", + "diced tomatoes", + "italian seasoning", + "pepper", + "baby spinach", + "salt" + ] + }, + { + "id": 4613, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "extra-virgin olive oil", + "flat leaf parsley", + "red potato", + "large eggs", + "spanish chorizo", + "manchego cheese", + "purple onion", + "kosher salt", + "green leaf lettuce", + "yellow onion" + ] + }, + { + "id": 23343, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "cumin seed", + "white sugar", + "ground cinnamon", + "vegetable oil", + "bay leaf", + "water", + "long-grain rice", + "black peppercorns", + "salt", + "onions" + ] + }, + { + "id": 31914, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "corn starch", + "pepper", + "all-purpose flour", + "butter", + "whole chicken", + "country ham", + "salt", + "lard" + ] + }, + { + "id": 33307, + "cuisine": "british", + "ingredients": [ + "eggs", + "mixed fruit", + "golden raisins", + "candied cherries", + "chopped walnuts", + "carrots", + "bread crumb fresh", + "suet", + "lemon", + "plums", + "dark brown sugar", + "dried currants", + "whole wheat flour", + "baking powder", + "apples", + "ground almonds", + "mixed spice", + "ale", + "raisins", + "stem ginger in syrup", + "blanched almonds" + ] + }, + { + "id": 32447, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "corn", + "diced tomatoes", + "chopped cilantro", + "chicken broth", + "garlic powder", + "yellow onion", + "chicken", + "tomato paste", + "lime", + "salsa", + "cumin", + "black beans", + "boneless skinless chicken breasts", + "taco seasoning" + ] + }, + { + "id": 35631, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "coarse salt", + "olive oil", + "boneless skinless chicken breast halves", + "basil pesto sauce", + "heavy cream", + "ground pepper" + ] + }, + { + "id": 30736, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "garlic", + "onions", + "tomato purée", + "boneless skinless chicken breasts", + "cayenne pepper", + "ground cumin", + "yoghurt", + "salt", + "ground turmeric", + "fresh ginger", + "cilantro", + "oil" + ] + }, + { + "id": 28006, + "cuisine": "southern_us", + "ingredients": [ + "cooking spray", + "pepper", + "salt", + "russet potatoes", + "large eggs" + ] + }, + { + "id": 34477, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "mozzarella cheese", + "garlic pepper seasoning", + "fresh basil", + "Italian bread", + "large garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 4725, + "cuisine": "thai", + "ingredients": [ + "canned low sodium chicken broth", + "peeled fresh ginger", + "asian fish sauce", + "lime juice", + "long-grain rice", + "red chili peppers", + "boneless skinless chicken breasts", + "unsweetened coconut milk", + "lemongrass", + "chopped cilantro" + ] + }, + { + "id": 6170, + "cuisine": "italian", + "ingredients": [ + "goat cheese", + "baguette", + "roasted red peppers", + "pesto" + ] + }, + { + "id": 3085, + "cuisine": "indian", + "ingredients": [ + "sweet potatoes", + "onions", + "coconut milk", + "frozen peas", + "vegetable stock", + "coriander", + "potatoes", + "curry paste" + ] + }, + { + "id": 37513, + "cuisine": "french", + "ingredients": [ + "dried tarragon leaves", + "nonfat yogurt", + "medium shrimp", + "water", + "light mayonnaise", + "shrimp and crab boil seasoning", + "green onions", + "creole mustard", + "olive oil", + "salt" + ] + }, + { + "id": 37494, + "cuisine": "french", + "ingredients": [ + "large eggs", + "shallots", + "ground nutmeg", + "whole milk", + "butter", + "fontina cheese", + "half & half", + "refrigerated piecrusts", + "ground black pepper", + "mushrooms", + "salt" + ] + }, + { + "id": 20989, + "cuisine": "indian", + "ingredients": [ + "anise seed", + "fresh ginger root", + "poppy seeds", + "cumin seed", + "olive oil", + "chili powder", + "cilantro", + "dried red chile peppers", + "shredded coconut", + "tamarind pulp", + "chicken meat", + "ground cardamom", + "coriander seeds", + "chile pepper", + "garlic", + "onions" + ] + }, + { + "id": 2671, + "cuisine": "british", + "ingredients": [ + "sugar", + "unsalted butter", + "salt", + "eggs", + "milk", + "whipping cream", + "strawberries", + "rhubarb", + "water", + "baking powder", + "all-purpose flour", + "powdered sugar", + "ground nutmeg", + "vanilla extract" + ] + }, + { + "id": 41727, + "cuisine": "southern_us", + "ingredients": [ + "brewed coffee", + "all-purpose flour", + "baking soda", + "vanilla", + "whiskey", + "sugar", + "large eggs", + "confectioners sugar", + "unsalted butter", + "salt", + "unsweetened cocoa powder" + ] + }, + { + "id": 45171, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "baking powder", + "cayenne pepper", + "chicken schmaltz", + "potatoes", + "salt", + "bay leaf", + "water", + "sweet potatoes", + "all-purpose flour", + "onions", + "celery tops", + "chicken meat", + "carrots" + ] + }, + { + "id": 1578, + "cuisine": "french", + "ingredients": [ + "large eggs", + "hard cider", + "sea salt", + "buckwheat flour", + "butter" + ] + }, + { + "id": 28476, + "cuisine": "southern_us", + "ingredients": [ + "egg whites", + "poultry seasoning", + "black pepper", + "salt", + "red pepper flakes", + "cut up chicken", + "cornflake crumbs", + "all-purpose flour" + ] + }, + { + "id": 26069, + "cuisine": "greek", + "ingredients": [ + "garlic cloves", + "salt", + "chopped fresh mint", + "english cucumber", + "ground black pepper", + "greek yogurt" + ] + }, + { + "id": 39585, + "cuisine": "mexican", + "ingredients": [ + "raspberries", + "sugar", + "fresh orange juice", + "white tequila" + ] + }, + { + "id": 16705, + "cuisine": "spanish", + "ingredients": [ + "fat free less sodium chicken broth", + "ground black pepper", + "garlic cloves", + "black peppercorns", + "pepper", + "pork tenderloin", + "fresh parsley", + "dried plum", + "kosher salt", + "cream sherry", + "bay leaf", + "vidalia onion", + "olive oil", + "all-purpose flour", + "ground cumin" + ] + }, + { + "id": 17273, + "cuisine": "brazilian", + "ingredients": [ + "chicken stock", + "coconut", + "lemon wedge", + "sweet paprika", + "plum tomatoes", + "dry roasted peanuts", + "ground black pepper", + "salt", + "fresh lemon juice", + "boneless chicken skinless thigh", + "fresh cilantro", + "vegetable oil", + "garlic cloves", + "unsweetened coconut milk", + "water", + "jalapeno chilies", + "gingerroot", + "onions" + ] + }, + { + "id": 5787, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "lemon juice", + "cheese", + "olive oil", + "ground white pepper", + "brussels sprouts", + "fine sea salt" + ] + }, + { + "id": 35748, + "cuisine": "italian", + "ingredients": [ + "turkey legs", + "dry red wine", + "onions", + "olive oil", + "carrots", + "dried thyme", + "garlic cloves", + "grated lemon peel", + "celery ribs", + "diced tomatoes", + "flat leaf parsley" + ] + }, + { + "id": 39097, + "cuisine": "italian", + "ingredients": [ + "whipped topping", + "chocolate syrup", + "boiling water", + "cappuccino", + "coffee", + "sweetened condensed milk" + ] + }, + { + "id": 26946, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "parmigiano reggiano cheese", + "fettucine" + ] + }, + { + "id": 24918, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "olive oil", + "salt", + "dried oregano", + "black pepper", + "garlic", + "bay leaf", + "sugar", + "basil", + "carrots", + "celery ribs", + "crushed tomatoes", + "crushed red pepper", + "onions" + ] + }, + { + "id": 4787, + "cuisine": "mexican", + "ingredients": [ + "beef shoulder roast", + "vegetable shortening", + "cumin seed", + "corn husks", + "salt", + "onions", + "pepper", + "garlic", + "ancho chile pepper", + "chiles", + "baking powder", + "beef broth", + "masa" + ] + }, + { + "id": 28600, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "ground cumin", + "boneless chicken skinless thigh", + "low salt chicken broth", + "chili", + "onions", + "chipotle chile", + "unsweetened chocolate" + ] + }, + { + "id": 1085, + "cuisine": "italian", + "ingredients": [ + "cream", + "granulated sugar", + "raisins", + "all-purpose flour", + "active dry yeast", + "dried apricot", + "vanilla extract", + "milk", + "large eggs", + "currant", + "grated orange", + "powdered sugar", + "unsalted butter", + "bourbon whiskey", + "salt" + ] + }, + { + "id": 8396, + "cuisine": "chinese", + "ingredients": [ + "cherry tomatoes", + "chopped cilantro fresh", + "vidalia onion", + "red bell pepper", + "orange bell pepper", + "fresh pineapple", + "teriyaki marinade", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 40478, + "cuisine": "mexican", + "ingredients": [ + "water", + "chicken breasts", + "tortilla chips", + "chicken broth", + "jalapeno chilies", + "garlic", + "tomatoes", + "green onions", + "hot sauce", + "corn", + "vegetable oil", + "onions" + ] + }, + { + "id": 40431, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "lemon juice", + "olive oil", + "horseradish", + "garlic", + "lime juice", + "dill weed" + ] + }, + { + "id": 34745, + "cuisine": "greek", + "ingredients": [ + "ground cloves", + "honey", + "butter", + "lemon juice", + "orange", + "corn oil", + "chopped walnuts", + "white sugar", + "water", + "semolina", + "all-purpose flour", + "cinnamon sticks", + "ground cinnamon", + "superfine sugar", + "baking powder", + "orange juice" + ] + }, + { + "id": 34905, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "grana padano", + "extra-virgin olive oil", + "large eggs", + "dried oregano" + ] + }, + { + "id": 42024, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "flour tortillas", + "garlic", + "pinto beans", + "chicken broth", + "Mexican cheese blend", + "diced tomatoes", + "rice", + "onions", + "fresh tomatoes", + "green chile sauce", + "paprika", + "enchilada sauce", + "cumin", + "jack", + "chili powder", + "frozen corn", + "ground beef" + ] + }, + { + "id": 28562, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "kosher salt", + "Shaoxing wine", + "scallions", + "sugar", + "vegetables", + "sesame oil", + "red bell pepper", + "green bell pepper", + "fresh ginger", + "flank steak", + "corn starch", + "soy sauce", + "ground black pepper", + "garlic", + "onions" + ] + }, + { + "id": 46617, + "cuisine": "vietnamese", + "ingredients": [ + "mint", + "green onions", + "beansprouts", + "low sodium soy sauce", + "bibb lettuce", + "deveined shrimp", + "rice paper", + "bean threads", + "sugar", + "basil", + "fresh lime juice", + "chile paste with garlic", + "shredded carrots", + "rice vinegar" + ] + }, + { + "id": 27887, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "white pepper", + "Shaoxing wine", + "garlic", + "shanghai noodles", + "Sriracha", + "napa cabbage", + "sauce", + "soy sauce", + "fresh ginger", + "sesame oil", + "salt", + "dark soy sauce", + "black pepper", + "potatoes", + "ground pork", + "oyster sauce" + ] + }, + { + "id": 41443, + "cuisine": "filipino", + "ingredients": [ + "tomatoes", + "shallots", + "oyster sauce", + "pepper", + "salt", + "eggs", + "garlic", + "mussels", + "green onions", + "oil" + ] + }, + { + "id": 38580, + "cuisine": "filipino", + "ingredients": [ + "cream cheese", + "cream", + "coconut", + "fruit cocktail", + "sweetened condensed milk" + ] + }, + { + "id": 39559, + "cuisine": "italian", + "ingredients": [ + "artichokes", + "lemon" + ] + }, + { + "id": 38588, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "eggs", + "butter", + "sweet potatoes", + "sugar", + "vanilla" + ] + }, + { + "id": 13452, + "cuisine": "italian", + "ingredients": [ + "focaccia", + "freshly grated parmesan", + "low moisture mozzarella", + "tomato sauce", + "pepperoni", + "butter" + ] + }, + { + "id": 26533, + "cuisine": "mexican", + "ingredients": [ + "chopped fresh chives", + "reduced-fat sour cream", + "shredded cheddar cheese", + "diced tomatoes", + "bone-in chicken breast halves", + "shredded lettuce", + "black olives", + "tomatoes", + "condensed cream of mushroom soup", + "low-fat baked tortilla chips" + ] + }, + { + "id": 46280, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "dried thyme", + "onion powder", + "cayenne pepper", + "medium shrimp", + "tomatoes", + "black pepper", + "bell pepper", + "paprika", + "flat leaf parsley", + "long grain white rice", + "tomato paste", + "boneless chicken thighs", + "garlic powder", + "worcestershire sauce", + "creole seasoning", + "onions", + "stock", + "white pepper", + "bay leaves", + "garlic", + "celery" + ] + }, + { + "id": 24391, + "cuisine": "indian", + "ingredients": [ + "bay leaves", + "dark brown sugar", + "fat free yogurt", + "vegetable oil", + "serrano chile", + "water", + "sweetened coconut flakes", + "red chili peppers", + "brown mustard seeds", + "roasted tomatoes" + ] + }, + { + "id": 24445, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "orange juice", + "rhubarb", + "whipping cream", + "sugar", + "blackberries", + "low-fat vanilla yogurt", + "vanilla wafers" + ] + }, + { + "id": 13075, + "cuisine": "greek", + "ingredients": [ + "pepper", + "salt", + "lemon", + "ground turmeric", + "potatoes", + "celery", + "chicken bouillon", + "garlic" + ] + }, + { + "id": 5490, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "salt", + "ground ginger", + "olive oil", + "chopped cilantro", + "saffron threads", + "sweet onion", + "cinnamon sticks", + "tumeric", + "butter", + "chicken" + ] + }, + { + "id": 19216, + "cuisine": "southern_us", + "ingredients": [ + "table salt", + "butter", + "ground red pepper", + "grits", + "milk", + "cheese", + "large eggs", + "white cornmeal" + ] + }, + { + "id": 36204, + "cuisine": "italian", + "ingredients": [ + "coarse salt", + "sugar", + "all-purpose flour", + "active dry yeast", + "olive oil" + ] + }, + { + "id": 40531, + "cuisine": "mexican", + "ingredients": [ + "corn", + "lean ground beef", + "taco seasoning reduced sodium", + "egg whites", + "salsa", + "cornmeal", + "reduced fat cheddar cheese", + "jalapeno chilies", + "green chilies", + "fat free milk", + "diced tomatoes", + "ripe olives" + ] + }, + { + "id": 26419, + "cuisine": "thai", + "ingredients": [ + "pork neck", + "lime", + "brown sugar", + "juice", + "fish sauce", + "tamarind", + "soy sauce", + "bird chile" + ] + }, + { + "id": 47209, + "cuisine": "russian", + "ingredients": [ + "Velveeta", + "sour cream", + "olive oil", + "onions", + "salt", + "pepper", + "steak" + ] + }, + { + "id": 21855, + "cuisine": "greek", + "ingredients": [ + "crushed garlic", + "cucumber", + "mint", + "salt", + "plain yogurt", + "dill", + "lemon" + ] + }, + { + "id": 25602, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "pepper", + "olive oil", + "prepared horseradish", + "pimentos", + "buttermilk", + "all-purpose flour", + "chipotles in adobo", + "brown sugar", + "ketchup", + "spanish onion", + "baking soda", + "dijon mustard", + "chili powder", + "garlic", + "grated jack cheese", + "mustard", + "sugar", + "water", + "garlic powder", + "unsalted butter", + "baking powder", + "worcestershire sauce", + "cream cheese", + "onions", + "cheddar cheese", + "kosher salt", + "peeled tomatoes", + "ground pepper", + "beef brisket", + "apple cider vinegar", + "salt", + "garlic cloves" + ] + }, + { + "id": 24889, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "sugar", + "garlic cloves", + "hot red pepper flakes", + "anchovy paste", + "spaghetti", + "capers", + "basil", + "juice", + "pitted kalamata olives", + "extra-virgin olive oil" + ] + }, + { + "id": 7174, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "fresh basil", + "freshly ground pepper", + "minced garlic", + "tomatoes", + "minced onion" + ] + }, + { + "id": 29511, + "cuisine": "greek", + "ingredients": [ + "light mayonnaise", + "pita rounds", + "greek seasoning", + "paprika" + ] + }, + { + "id": 27839, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "peaches", + "buttermilk", + "sugar", + "baking powder", + "all-purpose flour", + "ground ginger", + "baking soda", + "butter", + "grated nutmeg", + "vanilla ice cream", + "large eggs", + "salt" + ] + }, + { + "id": 19689, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "pineapple", + "cucumber", + "tomatoes", + "olive oil", + "cilantro leaves", + "lime juice", + "purple onion", + "chiles", + "brown mustard seeds", + "cumin seed" + ] + }, + { + "id": 44259, + "cuisine": "cajun_creole", + "ingredients": [ + "lettuce", + "white onion", + "cheese", + "mayonaise", + "cajun seasoning", + "beef sirloin", + "tomatoes", + "jalapeno chilies", + "garlic", + "hamburger buns", + "worcestershire sauce" + ] + }, + { + "id": 20117, + "cuisine": "japanese", + "ingredients": [ + "green cabbage", + "Tabasco Pepper Sauce", + "fresh lime juice", + "mayonaise" + ] + }, + { + "id": 1349, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "green peas", + "oil", + "red bell pepper", + "sweet onion", + "salt", + "carrots", + "white sugar", + "pepper", + "garlic", + "oyster sauce", + "celery", + "olive oil", + "new york strip steaks", + "corn starch", + "snow peas" + ] + }, + { + "id": 47814, + "cuisine": "russian", + "ingredients": [ + "pickles", + "rabbit", + "brine", + "cheddar cheese", + "green onions", + "salt", + "eggs", + "potatoes", + "green peas", + "mayonaise", + "Tabasco Pepper Sauce", + "carrots" + ] + }, + { + "id": 9734, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "sugar", + "bacon", + "heavy cream", + "grated parmesan cheese", + "spaghetti" + ] + }, + { + "id": 36765, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "baby spinach", + "grated lemon peel", + "sugar", + "soft tofu", + "sweet white miso", + "lemon peel", + "fresh lemon juice", + "mirin", + "white sesame seeds" + ] + }, + { + "id": 22376, + "cuisine": "thai", + "ingredients": [ + "sugar", + "unsalted dry roast peanuts", + "garlic cloves", + "green cabbage", + "peeled fresh ginger", + "purple onion", + "chopped cilantro fresh", + "water", + "crushed red pepper", + "fresh lime juice", + "fish sauce", + "ground sirloin", + "dark sesame oil" + ] + }, + { + "id": 8669, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "sausages", + "chicken stock", + "bacon", + "onions", + "whole milk", + "carrots", + "pepper", + "salt" + ] + }, + { + "id": 26980, + "cuisine": "mexican", + "ingredients": [ + "butter lettuce", + "olive oil", + "green onions", + "ancho powder", + "onions", + "sliced green onions", + "shredded cheddar cheese", + "guacamole", + "onion powder", + "salsa", + "dried oregano", + "plain yogurt", + "cayenne", + "boneless skinless chicken breasts", + "garlic", + "chopped cilantro fresh", + "green bell pepper", + "lime juice", + "mushrooms", + "lime wedges", + "red bell pepper", + "cumin" + ] + }, + { + "id": 41606, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "butter", + "oil", + "green onions", + "tortilla chips", + "ground black pepper", + "Eggland's Best® eggs", + "avocado", + "KRAFT Shredded Mozzarella Cheese", + "red enchilada sauce" + ] + }, + { + "id": 38283, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "dried oregano", + "white wine", + "diced tomatoes", + "fresh mushrooms", + "green bell pepper", + "vegetable oil", + "all-purpose flour", + "chicken", + "pepper", + "garlic", + "onions" + ] + }, + { + "id": 18707, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "lime wedges", + "carrots", + "jalapeno chilies", + "garlic", + "chicken", + "lime", + "cilantro", + "onions", + "low sodium chicken broth", + "salt" + ] + }, + { + "id": 43427, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "red cabbage", + "green chilies", + "white cabbage", + "sea salt", + "olive oil", + "cilantro stems", + "carrots", + "radishes", + "purple onion" + ] + }, + { + "id": 15565, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "honey", + "sesame oil", + "sugar", + "water", + "asian pear", + "scallions", + "minced garlic", + "sesame seeds", + "beef rib short", + "soy sauce", + "minced ginger", + "rice wine", + "onions" + ] + }, + { + "id": 26727, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "garlic powder", + "vegetable oil", + "beef stew seasoning mix", + "parsley sprigs", + "green onions", + "all-purpose flour", + "onions", + "green bell pepper", + "ground black pepper", + "salt", + "fresh parsley", + "celery ribs", + "crawfish", + "ground red pepper", + "hot water" + ] + }, + { + "id": 15745, + "cuisine": "british", + "ingredients": [ + "pepper", + "gravy granules", + "plain flour", + "butter", + "onions", + "milk", + "sherry wine", + "eggs", + "salt", + "pork sausages" + ] + }, + { + "id": 34729, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "mild green chiles", + "tortillas", + "jack", + "large eggs" + ] + }, + { + "id": 25226, + "cuisine": "french", + "ingredients": [ + "black pepper", + "cooking spray", + "salt", + "carrots", + "onions", + "water", + "basil leaves", + "small white beans", + "thyme sprigs", + "fat free less sodium chicken broth", + "sweet potatoes", + "garlic cloves", + "green beans", + "grape tomatoes", + "olive oil", + "garlic", + "lemon juice", + "bay leaf" + ] + }, + { + "id": 46695, + "cuisine": "italian", + "ingredients": [ + "sugar", + "fat", + "salt", + "2% reduced-fat milk", + "polenta", + "blackberry jam", + "crème fraîche" + ] + }, + { + "id": 39049, + "cuisine": "spanish", + "ingredients": [ + "chicken broth", + "chili powder", + "green pepper", + "ground turmeric", + "pepper", + "salt", + "chopped onion", + "bone-in chicken breast halves", + "butter", + "rice", + "pimentos", + "all-purpose flour", + "garlic cloves" + ] + }, + { + "id": 33310, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "butter", + "boneless skinless chicken breast halves", + "black pepper", + "cooking spray", + "all-purpose flour", + "prosciutto", + "salt", + "olive oil", + "dry white wine", + "chopped fresh sage" + ] + }, + { + "id": 44061, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "garlic", + "ground ginger", + "fresh ginger", + "slaw mix", + "non stick spray", + "water", + "sesame oil", + "rice vinegar", + "eggs", + "garlic powder", + "crushed red pepper flakes", + "fat free ground turkey breast" + ] + }, + { + "id": 40515, + "cuisine": "italian", + "ingredients": [ + "garlic", + "celery", + "tomatoes with juice", + "carrots", + "onions", + "extra-virgin olive oil", + "red bell pepper", + "dried oregano", + "salt", + "fresh parsley" + ] + }, + { + "id": 28373, + "cuisine": "french", + "ingredients": [ + "picholine olives", + "dry white wine", + "olive oil", + "chopped onion", + "green olives", + "ground black pepper", + "garlic cloves", + "dried thyme", + "white wine vinegar" + ] + }, + { + "id": 14289, + "cuisine": "italian", + "ingredients": [ + "unflavored gelatin", + "navel oranges", + "turbinado", + "heavy cream", + "curds", + "cold milk", + "granulated sugar", + "vanilla extract", + "cream sweeten whip", + "mint sprigs" + ] + }, + { + "id": 40538, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "diced tomatoes", + "salt", + "bay leaf", + "sugar", + "dry yeast", + "cracked black pepper", + "garlic cloves", + "dried oregano", + "warm water", + "cooking spray", + "cheese", + "flat leaf parsley", + "ground cumin", + "finely chopped onion", + "paprika", + "all-purpose flour", + "bread flour" + ] + }, + { + "id": 32398, + "cuisine": "chinese", + "ingredients": [ + "water", + "oil", + "soy sauce", + "ginger", + "corn flour", + "sugar", + "green onions", + "rice flour", + "tapioca flour", + "scallions", + "dried shrimp" + ] + }, + { + "id": 5361, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "soy sauce", + "sugar", + "rice vinegar", + "peeled fresh ginger" + ] + }, + { + "id": 43315, + "cuisine": "italian", + "ingredients": [ + "diced tomatoes", + "freshly ground pepper", + "extra-virgin olive oil", + "basil", + "sea salt", + "garlic" + ] + }, + { + "id": 11660, + "cuisine": "chinese", + "ingredients": [ + "sweet chili sauce", + "boneless skinless chicken breasts", + "red bell pepper", + "large eggs", + "pineapple", + "olive oil", + "vegetable oil", + "green onions", + "all-purpose flour" + ] + }, + { + "id": 4890, + "cuisine": "french", + "ingredients": [ + "fennel seeds", + "ground black pepper", + "baby spinach", + "organic vegetable broth", + "quinoa", + "chopped fresh thyme", + "chickpeas", + "carrots", + "water", + "leeks", + "salt", + "fresh lemon juice", + "white wine", + "fennel bulb", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 39704, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "chopped fresh thyme", + "thyme sprigs", + "pork belly", + "sherry vinegar", + "freshly ground pepper", + "celery ribs", + "honey", + "extra-virgin olive oil", + "arugula", + "kosher salt", + "peaches", + "garlic cloves" + ] + }, + { + "id": 17248, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "ground black pepper", + "ravioli", + "garlic", + "celery", + "black peppercorns", + "dried basil", + "lemon zest", + "heavy cream", + "yellow onion", + "large shrimp", + "white wine", + "dried thyme", + "shallots", + "diced tomatoes", + "flat leaf parsley", + "water", + "unsalted butter", + "lemon", + "salt", + "dried oregano" + ] + }, + { + "id": 10113, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "pepper", + "vegetable oil", + "cayenne pepper", + "onions", + "tomatoes", + "bay leaves", + "red pepper flakes", + "sausages", + "tomato paste", + "ground black pepper", + "cajun seasoning", + "garlic cloves", + "cumin", + "green bell pepper", + "Tabasco Pepper Sauce", + "salt", + "shrimp" + ] + }, + { + "id": 20311, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "powdered sugar", + "cream cheese, soften", + "vanilla extract" + ] + }, + { + "id": 27485, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "celery seed", + "vegetable oil", + "cabbage", + "sugar", + "onions", + "white vinegar", + "dry mustard" + ] + }, + { + "id": 4210, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "chopped cilantro fresh", + "salt", + "avocado", + "lemon juice", + "chile pepper", + "serrano chile" + ] + }, + { + "id": 42755, + "cuisine": "mexican", + "ingredients": [ + "fire roasted diced tomatoes", + "kosher salt", + "vegetable oil", + "chipotle chile powder", + "tostadas", + "zucchini", + "freshly ground pepper", + "ground chuck", + "shredded cheddar cheese", + "slaw mix", + "white onion", + "lime wedges", + "pinto beans" + ] + }, + { + "id": 9450, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "Old El Paso Flour Tortillas", + "Old El Paso™ taco seasoning mix", + "cilantro leaves", + "avocado", + "Old El Paso™ chopped green chiles", + "ground beef", + "Old El Paso™ refried beans", + "shredded mozzarella cheese" + ] + }, + { + "id": 29631, + "cuisine": "french", + "ingredients": [ + "sugar", + "egg whites", + "fresh lemon juice", + "unsalted butter", + "strawberries", + "sliced almonds", + "whipping cream", + "corn starch", + "almonds", + "salt" + ] + }, + { + "id": 6151, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "sesame oil", + "yellow onion", + "soy sauce", + "Sriracha", + "garlic", + "carrots", + "sugar", + "olive oil", + "worcestershire sauce", + "ramen noodles seasoning", + "sugar pea", + "chicken breasts", + "broccoli" + ] + }, + { + "id": 1976, + "cuisine": "chinese", + "ingredients": [ + "water", + "ginger", + "garlic cloves", + "brown sugar", + "sesame oil", + "Maggi", + "white button mushrooms", + "flank steak", + "rice vinegar", + "corn starch", + "soy sauce", + "vegetable oil", + "scallions" + ] + }, + { + "id": 26654, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "freshly ground pepper", + "bacon", + "extra sharp cheddar cheese", + "green onions", + "cream cheese, soften", + "vegetable oil cooking spray", + "okra" + ] + }, + { + "id": 16541, + "cuisine": "chinese", + "ingredients": [ + "prawns", + "corn starch", + "coarse salt", + "white peppercorns", + "szechwan peppercorns", + "serrano chile", + "peanut oil", + "chopped garlic" + ] + }, + { + "id": 44656, + "cuisine": "italian", + "ingredients": [ + "butter", + "cream", + "crème fraîche", + "fennel bulb", + "grated parmesan cheese" + ] + }, + { + "id": 46813, + "cuisine": "italian", + "ingredients": [ + "chocolate instant pudding", + "cocktail cherries", + "cookies", + "white sugar", + "extract", + "vanilla instant pudding", + "almonds", + "heavy cream" + ] + }, + { + "id": 35724, + "cuisine": "chinese", + "ingredients": [ + "water", + "oil", + "soy sauce", + "sesame oil", + "corn starch", + "sugar", + "rice wine", + "oyster sauce", + "white pepper", + "beef tenderloin" + ] + }, + { + "id": 8713, + "cuisine": "cajun_creole", + "ingredients": [ + "seafood stock", + "butter", + "fresh mushrooms", + "minced garlic", + "pimentos", + "all-purpose flour", + "fresh parsley", + "corn kernels", + "cajun seasoning", + "crabmeat", + "shucked oysters", + "green onions", + "linguine", + "green beans" + ] + }, + { + "id": 7069, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "all-purpose flour", + "large eggs", + "cornmeal", + "unsalted butter", + "lemon juice", + "catfish fillets", + "salt" + ] + }, + { + "id": 7116, + "cuisine": "chinese", + "ingredients": [ + "quinoa", + "choy sum", + "scallions", + "tofu", + "hoisin sauce", + "ginger", + "mirin", + "cilantro", + "carrots", + "soy sauce", + "sesame oil", + "garlic" + ] + }, + { + "id": 44548, + "cuisine": "mexican", + "ingredients": [ + "lump crab meat", + "salsa", + "nonfat cream cheese", + "cheese" + ] + }, + { + "id": 19681, + "cuisine": "mexican", + "ingredients": [ + "beans", + "olive oil", + "black olives", + "sour cream", + "avocado", + "water", + "colby jack cheese", + "yellow onion", + "chopped cilantro", + "shredded cheddar cheese", + "boneless skinless chicken breasts", + "salsa", + "corn tortillas", + "tomatoes", + "lime", + "lime wedges", + "taco seasoning" + ] + }, + { + "id": 11855, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "pepper", + "butter", + "carrots", + "fresh rosemary", + "chicken breast halves", + "salt", + "chicken broth", + "leeks", + "pinot noir", + "fresh parsley", + "celery ribs", + "rosemary sprigs", + "shallots", + "garlic cloves" + ] + }, + { + "id": 28225, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "poblano chiles", + "extra-virgin olive oil", + "chopped cilantro fresh", + "salt", + "finely chopped onion", + "fresh lime juice" + ] + }, + { + "id": 48481, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "olive oil", + "smoked paprika", + "yukon gold potatoes" + ] + }, + { + "id": 29113, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "jeera", + "rajma", + "coriander powder", + "masala", + "red chili powder", + "oil" + ] + }, + { + "id": 35079, + "cuisine": "mexican", + "ingredients": [ + "water", + "garlic", + "black peppercorns", + "jalapeno chilies", + "bay leaf", + "white vinegar", + "honey", + "carrots", + "kosher salt", + "wheels", + "onions" + ] + }, + { + "id": 30111, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "eggplant", + "flour", + "eggs", + "minced garlic", + "whole peeled tomatoes", + "kosher salt", + "ground black pepper", + "fresh mozzarella", + "fresh basil", + "olive oil", + "grated parmesan cheese" + ] + }, + { + "id": 21833, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "prosciutto", + "all-purpose flour", + "prepared lasagne", + "eggs", + "olive oil", + "sea salt", + "white mushrooms", + "fontina cheese", + "milk", + "leeks", + "ground white pepper", + "chicken stock", + "marsala wine", + "unsalted butter", + "grated nutmeg" + ] + }, + { + "id": 47757, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "salt", + "italian seasoned dry bread crumbs", + "shucked oysters", + "butter", + "onions", + "grated parmesan cheese", + "cayenne pepper", + "dried oregano", + "black pepper", + "garlic", + "dried parsley" + ] + }, + { + "id": 11711, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "crushed red pepper flakes", + "peanut oil", + "whole milk", + "salt", + "large eggs", + "white wine vinegar", + "okra", + "stone-ground cornmeal", + "sea salt", + "all-purpose flour" + ] + }, + { + "id": 1, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "diced red onions", + "paprika", + "salt", + "corn tortillas", + "fresh cilantro", + "cremini", + "vegetable broth", + "freshly ground pepper", + "ground chipotle chile pepper", + "bell pepper", + "extra-virgin olive oil", + "yellow onion", + "ground cumin", + "poblano peppers", + "chili powder", + "garlic", + "pinto beans" + ] + }, + { + "id": 21269, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "mandarin oranges", + "frozen whipped topping", + "vanilla instant pudding", + "yellow cake mix", + "crushed pineapple", + "vegetable oil" + ] + }, + { + "id": 28473, + "cuisine": "thai", + "ingredients": [ + "Sriracha", + "rice vinegar", + "soy sauce", + "red pepper flakes", + "sugar", + "sesame oil", + "chopped cilantro fresh", + "lime juice", + "garlic" + ] + }, + { + "id": 12391, + "cuisine": "moroccan", + "ingredients": [ + "golden raisins", + "chickpeas", + "low sodium beef broth", + "ground cumin", + "olive oil", + "paprika", + "garlic cloves", + "chopped cilantro fresh", + "ground cinnamon", + "sea salt", + "freshly ground pepper", + "chopped fresh mint", + "dried apricot", + "yellow onion", + "carrots", + "chuck" + ] + }, + { + "id": 14881, + "cuisine": "southern_us", + "ingredients": [ + "baguette", + "top sirloin", + "vegetable oil", + "all-purpose flour", + "swiss cheese", + "dry red wine", + "vidalia onion", + "butter", + "beef broth" + ] + }, + { + "id": 9042, + "cuisine": "italian", + "ingredients": [ + "mint leaves", + "garlic", + "olive oil", + "sea salt", + "freshly ground pepper", + "flaked", + "purple onion", + "eggplant", + "extra-virgin olive oil" + ] + }, + { + "id": 24444, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "pepper", + "salt", + "parmesan cheese", + "snaps", + "large eggs" + ] + }, + { + "id": 33133, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "chicken breasts", + "salt", + "water chestnuts", + "chopped celery", + "chicken broth", + "ground red pepper", + "purple onion", + "white pepper", + "yellow bell pepper", + "red bell pepper" + ] + }, + { + "id": 30085, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "cinnamon", + "shortening", + "flour", + "salt", + "sugar", + "baking powder", + "dough", + "peaches", + "butter" + ] + }, + { + "id": 10453, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "egg noodles, cooked and drained", + "corn", + "ground beef", + "water", + "cream cheese", + "taco seasoning mix", + "onions" + ] + }, + { + "id": 32246, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "Ro-Tel Diced Tomatoes & Green Chilies", + "lean ground beef", + "Velveeta", + "tortilla chips" + ] + }, + { + "id": 23395, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "garlic cloves", + "french bread", + "fresh parsley", + "paprika", + "sliced green onions", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 16701, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "gingerroot", + "fresh basil", + "cracked black pepper", + "fresh lime juice", + "fish sauce", + "dark brown sugar", + "large shrimp", + "water", + "garlic cloves" + ] + }, + { + "id": 42151, + "cuisine": "british", + "ingredients": [ + "milk", + "salt", + "self rising flour", + "mustard powder", + "unsalted butter", + "cayenne pepper", + "blue cheese", + "stilton cheese" + ] + }, + { + "id": 12948, + "cuisine": "italian", + "ingredients": [ + "pepper", + "large eggs", + "garlic cloves", + "green chile", + "eggplant", + "diced tomatoes", + "olive oil", + "baby spinach", + "garlic herb feta", + "sliced black olives", + "salt" + ] + }, + { + "id": 36233, + "cuisine": "mexican", + "ingredients": [ + "extra-virgin olive oil", + "onions", + "cracked black pepper", + "salsa", + "lean ground beef", + "salt", + "chili pepper", + "garlic", + "garlic salt" + ] + }, + { + "id": 22557, + "cuisine": "thai", + "ingredients": [ + "tomatoes", + "curry powder", + "garlic cloves", + "coconut oil", + "garam masala", + "tomato purée", + "fresh ginger", + "coconut milk", + "white onion", + "chicken breasts" + ] + }, + { + "id": 45325, + "cuisine": "italian", + "ingredients": [ + "honey", + "strawberries", + "unflavored gelatin", + "vanilla extract", + "whipping cream", + "sugar", + "1% low-fat milk" + ] + }, + { + "id": 8509, + "cuisine": "chinese", + "ingredients": [ + "egg roll wrappers", + "garlic", + "vegetable oil", + "cream cheese", + "green onions", + "salt", + "crab meat", + "worcestershire sauce", + "lemon juice" + ] + }, + { + "id": 46497, + "cuisine": "greek", + "ingredients": [ + "garlic", + "pitted kalamata olives", + "olive oil" + ] + }, + { + "id": 18622, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "eggplant", + "ricotta salata", + "fresh mint", + "pepper", + "garlic", + "grape tomatoes", + "olive oil", + "rigatoni" + ] + }, + { + "id": 48686, + "cuisine": "cajun_creole", + "ingredients": [ + "cooking spray", + "salt", + "panko", + "cajun seasoning", + "chicken breast halves", + "chicken thighs", + "low-fat buttermilk", + "chicken drumsticks" + ] + }, + { + "id": 47525, + "cuisine": "chinese", + "ingredients": [ + "salt", + "szechwan peppercorns", + "green beans", + "cooking oil", + "garlic cloves", + "red pepper", + "ginger root" + ] + }, + { + "id": 44184, + "cuisine": "italian", + "ingredients": [ + "water", + "cheese", + "chopped fresh chives", + "broth", + "large eggs", + "grated nutmeg", + "all purpose unbleached flour" + ] + }, + { + "id": 20337, + "cuisine": "british", + "ingredients": [ + "candied ginger", + "baking powder", + "granulated sugar", + "pastry flour", + "lemon zest", + "unsalted butter", + "heavy cream" + ] + }, + { + "id": 32695, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "water chestnuts", + "dark sesame oil", + "pepper sauce", + "pickled garlic", + "garlic", + "ground chicken", + "green onions", + "onions", + "butter lettuce", + "hoisin sauce", + "rice vinegar" + ] + }, + { + "id": 36729, + "cuisine": "mexican", + "ingredients": [ + "large garlic cloves", + "plum tomatoes", + "fresh lime juice", + "jalapeno chilies", + "chopped cilantro fresh", + "chopped onion" + ] + }, + { + "id": 19898, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "mirin", + "sugar" + ] + }, + { + "id": 23877, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vegetable shortening", + "baking soda", + "salt", + "active dry yeast", + "buttermilk", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 31231, + "cuisine": "vietnamese", + "ingredients": [ + "minced garlic", + "firm tofu", + "fresh ginger root", + "lime", + "canola oil", + "tamari soy sauce" + ] + }, + { + "id": 14191, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "salt", + "chutney", + "baby spinach leaves", + "nonfat yogurt", + "fat skimmed chicken broth", + "ground cumin", + "curry powder", + "garlic", + "corn starch", + "cooked rice", + "cayenne", + "chopped onion", + "salad oil" + ] + }, + { + "id": 16269, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "cider vinegar", + "salt", + "green bell pepper", + "jalapeno chilies", + "minced garlic", + "chopped onion" + ] + }, + { + "id": 30492, + "cuisine": "french", + "ingredients": [ + "baking powder", + "confectioners sugar", + "eggs", + "vanilla extract", + "unsalted butter", + "all-purpose flour", + "lemon", + "white sugar" + ] + }, + { + "id": 48287, + "cuisine": "italian", + "ingredients": [ + "navy beans", + "pepper", + "grated parmesan cheese", + "pearl barley", + "small red potato", + "alphabet pasta", + "spinach", + "zucchini", + "salt", + "garlic cloves", + "fat free beef broth", + "ground nutmeg", + "sliced carrots", + "chopped onion", + "dried rosemary", + "pasta", + "water", + "mushrooms", + "round steaks", + "rubbed sage" + ] + }, + { + "id": 46870, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "heavy cream", + "gorgonzola", + "canned low sodium chicken broth", + "butter", + "broccoli", + "fettucine", + "dry white wine", + "salt", + "ground black pepper", + "florets", + "fresh parsley" + ] + }, + { + "id": 1620, + "cuisine": "spanish", + "ingredients": [ + "salt", + "baby potatoes", + "olive oil", + "dried oregano", + "orange", + "chicken thighs", + "purple onion", + "chorizo sausage" + ] + }, + { + "id": 43444, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "garlic cloves", + "cumin", + "chicken breasts", + "onions", + "pepper", + "chipotles in adobo", + "salt", + "oregano" + ] + }, + { + "id": 14387, + "cuisine": "indian", + "ingredients": [ + "cream", + "urad dal", + "rajma", + "masala", + "beans", + "butter", + "cilantro leaves", + "ghee", + "red chili powder", + "coriander powder", + "salt", + "garlic cloves", + "tomato purée", + "garam masala", + "black gram", + "cumin seed" + ] + }, + { + "id": 13638, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "bourbon whiskey", + "dark brown sugar", + "dark corn syrup", + "salt", + "pecan halves", + "vanilla extract", + "unsalted butter", + "pie shell" + ] + }, + { + "id": 309, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "kalamata", + "chopped onion", + "chicken broth", + "cayenne", + "chopped celery", + "olive oil", + "orzo", + "plum tomatoes", + "mozzarella cheese", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 45646, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "bell pepper", + "garlic", + "soy sauce", + "vegetable oil", + "corn starch", + "white vinegar", + "water", + "red pepper flakes", + "boneless skinless chicken breast halves", + "pineapple chunks in natural juice", + "shallots", + "carrots" + ] + }, + { + "id": 45688, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "shiitake", + "sesame oil", + "fillets", + "pasta", + "minced garlic", + "ground black pepper", + "cornflour", + "soy sauce", + "fresh ginger root", + "vegetable oil", + "chicken stock", + "water", + "spring onions", + "rice vinegar" + ] + }, + { + "id": 12953, + "cuisine": "greek", + "ingredients": [ + "lemon", + "chicken pieces", + "plain yogurt", + "garlic", + "dried oregano", + "cracked black pepper", + "fresh parsley", + "olive oil", + "salt" + ] + }, + { + "id": 34720, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "chopped cilantro", + "tomatoes", + "purple onion", + "lime", + "salt", + "jalapeno chilies" + ] + }, + { + "id": 17775, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "light coconut milk", + "ground cayenne pepper", + "ground turmeric", + "fresh ginger", + "ground coriander", + "onions", + "olive oil", + "salt", + "fresh parsley", + "ground cumin", + "tomatoes", + "jalapeno chilies", + "garlic cloves", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 22686, + "cuisine": "thai", + "ingredients": [ + "palm sugar", + "mango", + "sticky rice", + "black sesame seeds", + "coconut cream" + ] + }, + { + "id": 5689, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "tuna steaks", + "anchovy fillets", + "capers", + "fennel bulb", + "extra-virgin olive oil", + "freshly ground pepper", + "mint", + "parmigiano reggiano cheese", + "yellow onion", + "flat leaf parsley", + "fennel seeds", + "ground black pepper", + "reduced sodium vegetable stock", + "orange juice" + ] + }, + { + "id": 1666, + "cuisine": "filipino", + "ingredients": [ + "black beans", + "green onions", + "oyster sauce", + "soy sauce", + "vinegar", + "garlic", + "brown sugar", + "water", + "pineapple", + "onions", + "pork belly", + "bay leaves", + "oil" + ] + }, + { + "id": 22879, + "cuisine": "mexican", + "ingredients": [ + "mole sauce", + "corn husks", + "pork", + "masa dough" + ] + }, + { + "id": 39238, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "sesame oil", + "chinese five-spice powder", + "honey", + "ginger", + "ground white pepper", + "ketchup", + "maltose", + "oyster sauce", + "Shaoxing wine", + "garlic", + "pork shoulder" + ] + }, + { + "id": 35150, + "cuisine": "indian", + "ingredients": [ + "pickles", + "chana dal", + "serrano", + "sugar", + "peanuts", + "curry", + "tumeric", + "lime juice", + "white rice", + "poppadoms", + "black lentil", + "kosher salt", + "vegetable oil", + "black mustard seeds" + ] + }, + { + "id": 26038, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "buttermilk", + "active dry yeast", + "baking powder", + "all-purpose flour", + "semolina flour", + "granulated sugar", + "sea salt", + "baking soda", + "vegetable shortening", + "ramps" + ] + }, + { + "id": 45190, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "salt", + "sugar", + "vanilla extract", + "nonfat dry milk", + "coffee beans", + "reduced fat milk" + ] + }, + { + "id": 14215, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "large eggs", + "all-purpose flour", + "fresh basil", + "crushed tomatoes", + "shallots", + "dried oregano", + "mozzarella cheese", + "grated parmesan cheese", + "garlic cloves", + "boneless chicken thighs", + "olive oil", + "crushed red pepper flakes" + ] + }, + { + "id": 28068, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "ground pork", + "dried parsley", + "pepper", + "beef", + "salt", + "eggs", + "parmesan cheese", + "garlic", + "dried oregano", + "sweet onion", + "ricotta cheese", + "marjoram leaves" + ] + }, + { + "id": 27538, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "garlic powder", + "paprika", + "chickpeas", + "cumin", + "ground ginger", + "ground cloves", + "tandoori seasoning", + "salt", + "ghee", + "tumeric", + "cinnamon", + "cilantro", + "coconut milk", + "tomato paste", + "minute rice", + "red pepper", + "yellow onion", + "coriander" + ] + }, + { + "id": 833, + "cuisine": "mexican", + "ingredients": [ + "hearts of romaine", + "shredded cheddar cheese", + "salsa", + "taco shells", + "pinto beans" + ] + }, + { + "id": 23093, + "cuisine": "spanish", + "ingredients": [ + "savoy cabbage", + "leeks", + "carrots", + "tomatoes", + "garlic cloves", + "onions", + "chicken stock", + "russet potatoes", + "bay leaf", + "turnips", + "kidney beans", + "sausages" + ] + }, + { + "id": 28461, + "cuisine": "korean", + "ingredients": [ + "water", + "sesame oil", + "sugar", + "light soy sauce", + "beef tenderloin", + "dark soy sauce", + "minced ginger", + "crushed garlic", + "black pepper", + "green onions", + "white sesame seeds" + ] + }, + { + "id": 21151, + "cuisine": "mexican", + "ingredients": [ + "water", + "lime wedges", + "onions", + "zucchini", + "rice", + "chunky salsa", + "taco seasoning mix", + "vegetable oil", + "chopped cilantro fresh", + "pork", + "condiments", + "whole kernel corn, drain", + "monterey jack" + ] + }, + { + "id": 38813, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "sugar", + "sesame oil", + "Sriracha", + "soy sauce", + "rice vinegar" + ] + }, + { + "id": 45883, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "pasta", + "garlic", + "grated parmesan cheese", + "mozzarella cheese", + "roast red peppers, drain" + ] + }, + { + "id": 48008, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "green chilies", + "cooked chicken", + "monterey jack", + "flour", + "sour cream", + "chicken broth", + "butter" + ] + }, + { + "id": 32886, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "yellow onion", + "dried oregano", + "clove", + "kosher salt", + "queso anejo", + "chiles", + "garlic cloves", + "canola oil", + "saltines", + "mexican chocolate", + "corn tortillas" + ] + }, + { + "id": 28479, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "mustard greens", + "bacon bits", + "pepper", + "salt", + "turnip greens", + "garlic", + "chicken broth", + "vegetable oil", + "white sugar" + ] + }, + { + "id": 7467, + "cuisine": "jamaican", + "ingredients": [ + "instant yeast", + "unsalted butter", + "all-purpose flour", + "water", + "salt", + "granulated sugar" + ] + }, + { + "id": 31319, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "cilantro", + "corn tortillas", + "quinoa", + "salt", + "cumin", + "black beans", + "garlic", + "oregano", + "avocado", + "chili powder", + "smoked paprika" + ] + }, + { + "id": 11210, + "cuisine": "irish", + "ingredients": [ + "black peppercorns", + "garlic", + "olive oil", + "store bought low sodium chicken stock", + "banger", + "fresh thyme" + ] + }, + { + "id": 18780, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken schmaltz", + "ground black pepper", + "bay leaves", + "white rice", + "okra", + "long grain white rice", + "chicken stock", + "andouille sausage", + "fresh thyme", + "spices", + "smoked sausage", + "bay leaf", + "tomatoes", + "schmaltz", + "flour", + "worcestershire sauce", + "salt", + "onions", + "green bell pepper", + "file powder", + "Tabasco Pepper Sauce", + "garlic", + "celery", + "chicken" + ] + }, + { + "id": 12886, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cilantro leaves", + "diced tomatoes", + "green onions", + "tomatoes", + "mexicorn" + ] + }, + { + "id": 8490, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "yellow onion", + "ground turmeric", + "salt", + "garlic cloves", + "ground cumin", + "baby spinach", + "cayenne pepper", + "canola oil", + "plain yogurt", + "beef broth", + "leg of lamb" + ] + }, + { + "id": 44302, + "cuisine": "french", + "ingredients": [ + "cider vinegar", + "beets", + "extra-virgin olive oil", + "red cabbage", + "garlic cloves", + "salt" + ] + }, + { + "id": 25741, + "cuisine": "french", + "ingredients": [ + "spinach", + "cheese slices", + "onions", + "dijon mustard", + "apricot preserves", + "cooking spray", + "country bread", + "Fuji Apple", + "chicken breasts" + ] + }, + { + "id": 25393, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "vegetable oil", + "freshly ground pepper", + "poblano chiles", + "plum tomatoes", + "empanada dough", + "queso blanco", + "pepitas", + "canela", + "white onion", + "coarse salt", + "garlic cloves", + "bay leaf", + "ground cumin", + "sugar", + "chicken breasts", + "crema", + "sour cream", + "chopped cilantro fresh" + ] + }, + { + "id": 38251, + "cuisine": "irish", + "ingredients": [ + "ground black pepper", + "butter", + "green onions", + "whole milk", + "salt", + "eggs", + "baking potatoes" + ] + }, + { + "id": 9417, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "green onions", + "palm sugar", + "garlic", + "fish sauce", + "chili paste", + "coco", + "lime", + "thai chile" + ] + }, + { + "id": 7956, + "cuisine": "italian", + "ingredients": [ + "capers", + "bacon slices", + "turkey tenderloins", + "chicken broth", + "artichoke hearts", + "salt", + "pepper", + "whipping cream", + "sliced mushrooms", + "angel hair", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 7470, + "cuisine": "moroccan", + "ingredients": [ + "preserved lemon", + "garlic", + "sweet paprika", + "bay leaf", + "ground ginger", + "kosher salt", + "beef broth", + "pearl couscous", + "green olives", + "olive oil", + "yellow onion", + "flat leaf parsley", + "saffron threads", + "reduced sodium chicken broth", + "lamb shoulder", + "freshly ground pepper", + "ground cumin" + ] + }, + { + "id": 15962, + "cuisine": "italian", + "ingredients": [ + "butter", + "arugula", + "bread slices", + "rocket leaves", + "gorgonzola", + "toasted walnuts" + ] + }, + { + "id": 45935, + "cuisine": "mexican", + "ingredients": [ + "pecan halves", + "egg whites", + "corn starch", + "ground cinnamon", + "ground cloves", + "ground allspice", + "powdered sugar", + "ground red pepper", + "cold water", + "vegetable oil cooking spray", + "salt" + ] + }, + { + "id": 15302, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "zucchini", + "cayenne pepper", + "olive oil", + "garlic", + "fresh parsley", + "mozzarella cheese", + "italian plum tomatoes", + "chopped onion", + "sausage casings", + "eggplant", + "margarine", + "fresh basil leaves" + ] + }, + { + "id": 23116, + "cuisine": "japanese", + "ingredients": [ + "grapeseed oil", + "olive oil", + "shiso", + "lime", + "garlic", + "miso", + "japanese eggplants" + ] + }, + { + "id": 34709, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "thick-cut bacon", + "ground black pepper", + "extra sharp cheddar cheese", + "water", + "grits", + "whole milk" + ] + }, + { + "id": 10664, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "olive oil", + "crushed red pepper", + "garlic cloves", + "eggs", + "milk", + "ground veal", + "freshly ground pepper", + "perciatelli", + "English muffins", + "salt", + "hot water", + "fresh rosemary", + "crushed tomatoes", + "pecorino romano cheese", + "sweet italian sausage", + "onions" + ] + }, + { + "id": 36041, + "cuisine": "italian", + "ingredients": [ + "pesto", + "extra-virgin olive oil", + "light cream", + "gnocchi", + "sausage links", + "grated parmesan cheese", + "sugar pea", + "red bell pepper" + ] + }, + { + "id": 9029, + "cuisine": "spanish", + "ingredients": [ + "garlic cloves", + "extra-virgin olive oil", + "kosher salt", + "country white bread", + "plum tomatoes" + ] + }, + { + "id": 20278, + "cuisine": "mexican", + "ingredients": [ + "sweet potatoes", + "tomatillos", + "cilantro leaves", + "poblano chiles", + "vegetable oil", + "vegetable shortening", + "garlic cloves", + "chipotle salsa", + "jalapeno chilies", + "vegetable stock", + "salt", + "sour cream", + "onions", + "whole milk", + "red wine vinegar", + "grated jack cheese", + "corn tortillas" + ] + }, + { + "id": 12751, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "purple onion", + "olive oil", + "green bell pepper", + "whole wheat spaghetti", + "cooked turkey", + "shredded mozzarella cheese" + ] + }, + { + "id": 648, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "shiitake", + "white wine vinegar", + "bamboo shoots", + "chinese black mushrooms", + "sesame oil", + "freshly ground pepper", + "soy sauce", + "chicken breasts", + "firm tofu", + "boiling water", + "chicken stock", + "water", + "chili oil", + "corn starch" + ] + }, + { + "id": 12177, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "orange peel", + "milk", + "fresh orange juice", + "water", + "heavy cream", + "candy", + "vanilla ice cream", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 28522, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "baby potatoes", + "amchur", + "cilantro leaves", + "salt", + "ground cumin", + "coriander powder", + "oil" + ] + }, + { + "id": 37820, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "hoisin sauce", + "rice vinegar", + "ketchup", + "eggplant", + "cooking spray", + "serrano chile", + "sesame seeds", + "extra firm tofu", + "peanut oil", + "kosher salt", + "lower sodium soy sauce", + "ginger", + "sliced green onions" + ] + }, + { + "id": 32912, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "butter", + "milk", + "salt", + "pepper", + "fryer chickens", + "chicken broth", + "flour", + "lemon pepper" + ] + }, + { + "id": 26365, + "cuisine": "spanish", + "ingredients": [ + "frozen pastry puff sheets", + "vanilla", + "large egg yolks", + "lemon", + "all-purpose flour", + "melted butter", + "cinnamon", + "salt", + "granulated sugar", + "heavy cream", + "confectioners sugar" + ] + }, + { + "id": 34950, + "cuisine": "thai", + "ingredients": [ + "lemon grass", + "garlic cloves", + "pepper", + "salt", + "fish sauce", + "vegetable oil", + "oyster sauce", + "fresh ginger root", + "Alaskan king crab legs" + ] + }, + { + "id": 42277, + "cuisine": "jamaican", + "ingredients": [ + "red kidney beans", + "garlic cloves", + "salt", + "long grain white rice", + "unsweetened coconut milk", + "scallions", + "pepper", + "thyme" + ] + }, + { + "id": 47471, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "english cucumber", + "chicken", + "kosher salt", + "balsamic vinegar", + "smoked paprika", + "ground black pepper", + "fresh lemon juice", + "minced garlic", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 27712, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "fresh coriander", + "cayenne", + "cinnamon", + "onions", + "tumeric", + "fresh ginger", + "chicken breasts", + "garlic", + "cumin", + "tomatoes", + "water", + "cardamon", + "paprika", + "coriander", + "plain yogurt", + "garam masala", + "vegetable oil", + "salt" + ] + }, + { + "id": 41368, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "vegetable oil", + "dried oregano", + "chili powder", + "garlic cloves", + "cider vinegar", + "paprika", + "ground cumin", + "pork loin", + "salt" + ] + }, + { + "id": 40315, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "water", + "peas", + "white sugar", + "soy sauce", + "green onions", + "salt", + "pineapple chunks", + "garlic powder", + "white rice", + "white pepper", + "sesame oil", + "diced ham" + ] + }, + { + "id": 32568, + "cuisine": "italian", + "ingredients": [ + "honey", + "cookie crumbs", + "whipped cream", + "Meyer lemon juice", + "lemon zest", + "forest fruit", + "vanilla" + ] + }, + { + "id": 46001, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "pecan halves", + "butter", + "firmly packed brown sugar", + "vanilla extract", + "evaporated milk" + ] + }, + { + "id": 24857, + "cuisine": "mexican", + "ingredients": [ + "chili", + "nonfat milk", + "serrano chilies", + "lime wedges", + "onions", + "cream style corn", + "small white beans", + "ground chicken", + "salt", + "ground cumin" + ] + }, + { + "id": 6882, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "carrots", + "garlic", + "onions", + "olive oil", + "celery", + "tomatoes", + "salt" + ] + }, + { + "id": 29592, + "cuisine": "french", + "ingredients": [ + "unflavored gelatin", + "navel oranges", + "grated coconut", + "sugar", + "orange juice", + "pecans", + "salt" + ] + }, + { + "id": 29292, + "cuisine": "french", + "ingredients": [ + "semisweet chocolate", + "whipping cream", + "powdered sugar", + "light corn syrup", + "fresh raspberries", + "raspberries", + "mint sprigs", + "butter", + "vanilla extract" + ] + }, + { + "id": 3648, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "curry", + "cheddar cheese", + "ginger", + "onions", + "tomatoes", + "chicken breasts", + "salt", + "chiles", + "garlic" + ] + }, + { + "id": 21669, + "cuisine": "italian", + "ingredients": [ + "unsweetened coconut milk", + "extra large shrimp", + "salt", + "crushed tomatoes", + "crushed red pepper flakes", + "fresh basil", + "dry white wine", + "yellow onion", + "olive oil", + "garlic" + ] + }, + { + "id": 23880, + "cuisine": "jamaican", + "ingredients": [ + "chicken legs", + "vinegar", + "vegetable oil", + "salt", + "chicken thighs", + "black pepper", + "rum", + "ginger", + "pineapple juice", + "allspice", + "nutmeg", + "lime", + "chicken breasts", + "garlic", + "dark brown sugar", + "soy sauce", + "serrano peppers", + "pineapple", + "cilantro leaves", + "coriander" + ] + }, + { + "id": 218, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "pepper", + "cumin seed", + "white hominy", + "salt" + ] + }, + { + "id": 6519, + "cuisine": "vietnamese", + "ingredients": [ + "light soy sauce", + "hot chili sauce", + "dark soy sauce", + "salt", + "green papaya", + "thai basil", + "beef jerky", + "sugar", + "rice vinegar", + "serrano chile" + ] + }, + { + "id": 49464, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "unsalted butter", + "salt", + "chicken broth", + "water", + "baking potatoes", + "dried oregano", + "avocado", + "white onion", + "potatoes", + "cilantro leaves", + "capers", + "corn", + "heavy cream", + "chicken" + ] + }, + { + "id": 14196, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "pecorino romano cheese", + "fresh parsley", + "crushed tomatoes", + "salt", + "chopped fresh mint", + "water", + "garlic", + "onions", + "fresh basil", + "olive oil", + "cavatelli", + "saffron" + ] + }, + { + "id": 34261, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "honey", + "rice vinegar", + "garlic chili sauce", + "chicken broth", + "tumeric", + "garlic", + "ground coriander", + "unsweetened coconut milk", + "brown sugar", + "sesame oil", + "peanut butter", + "cumin", + "low sodium soy sauce", + "minced ginger", + "salt", + "chicken fingers" + ] + }, + { + "id": 34675, + "cuisine": "japanese", + "ingredients": [ + "soy", + "salmon fillets", + "chives" + ] + }, + { + "id": 32, + "cuisine": "japanese", + "ingredients": [ + "ground black pepper", + "crushed red pepper", + "corn starch", + "wasabi paste", + "wax beans", + "all-purpose flour", + "fresh lime juice", + "ground ginger", + "vegetable oil", + "salt", + "green beans", + "low sodium soy sauce", + "ice water", + "firm tofu" + ] + }, + { + "id": 31989, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "chopped tomatoes", + "paprika", + "ground turmeric", + "turnips", + "water", + "garam masala", + "salt", + "minced garlic", + "fresh ginger root", + "purple onion", + "fennel seeds", + "kidney beans", + "vegetable oil", + "cumin seed" + ] + }, + { + "id": 3246, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "hot sauce", + "chicken wings" + ] + }, + { + "id": 47670, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "egg yolks", + "all-purpose flour", + "potato starch", + "large eggs", + "lemon", + "cognac", + "vanilla ice cream", + "egg whites", + "vanilla extract", + "granulated sugar", + "cake", + "grated lemon zest" + ] + }, + { + "id": 7158, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "yukon gold potatoes", + "feta cheese crumbles", + "olive oil", + "garlic cloves", + "dried oregano", + "kosher salt", + "purple onion", + "green beans", + "tomatoes", + "zucchini", + "fresh lemon juice" + ] + }, + { + "id": 8575, + "cuisine": "vietnamese", + "ingredients": [ + "green onions", + "hot sauce", + "pork sausages", + "soy sauce", + "salt", + "ground white pepper", + "starch", + "dried shiitake mushrooms", + "dried shrimp", + "sugar", + "daikon", + "white rice flour", + "canola oil" + ] + }, + { + "id": 42055, + "cuisine": "mexican", + "ingredients": [ + "buttermilk", + "whipping cream" + ] + }, + { + "id": 2342, + "cuisine": "french", + "ingredients": [ + "chicken broth", + "bay leaves", + "salt", + "carrots", + "celery", + "fresh thyme", + "shallots", + "garlic cloves", + "tarragon", + "onions", + "black peppercorns", + "mushrooms", + "unsmoked bacon", + "corn starch", + "chicken pieces", + "cooking oil", + "parsley", + "merlot", + "herbes de provence" + ] + }, + { + "id": 1936, + "cuisine": "russian", + "ingredients": [ + "sugar", + "vinegar", + "oxtails", + "salt", + "carrots", + "celery", + "sauerkraut", + "leeks", + "hen", + "beets", + "wheat flour", + "onions", + "black pepper", + "potatoes", + "butter", + "dill", + "thyme", + "fresh parsley", + "tomato purée", + "bouillon cube", + "bay leaves", + "large garlic cloves", + "fat", + "sour cream", + "white peppercorns" + ] + }, + { + "id": 12608, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "purple onion", + "orange", + "fresh lime juice", + "kosher salt", + "pink grapefruit", + "jalapeno chilies", + "chopped cilantro fresh" + ] + }, + { + "id": 9596, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "kidney beans", + "lean ground beef", + "chopped onion", + "water", + "cheese soup", + "paprika", + "sugar", + "chopped green chilies", + "worcestershire sauce", + "taco seasoning", + "milk", + "potatoes", + "green pepper" + ] + }, + { + "id": 39233, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "daikon", + "carrots", + "Sriracha", + "salt", + "fresh lime juice", + "boneless skinless chicken breasts", + "rice vinegar", + "asian fish sauce", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 16119, + "cuisine": "italian", + "ingredients": [ + "eggs", + "baby spinach", + "carrots", + "chicken", + "water", + "salt", + "onions", + "chicken broth", + "ground black pepper", + "lemon juice", + "dried oregano", + "romano cheese", + "white rice", + "celery" + ] + }, + { + "id": 21428, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "salt", + "onions", + "tomatoes", + "chili powder", + "garlic cloves", + "coriander powder", + "green chilies", + "ground turmeric", + "daal", + "cracked black pepper", + "chopped cilantro" + ] + }, + { + "id": 41829, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "dried basil", + "garlic", + "dried parsley", + "pasta", + "romano cheese", + "whole peeled tomatoes", + "purple onion", + "tomato sauce", + "ground black pepper", + "crushed red pepper", + "dried oregano", + "capers", + "crushed tomatoes", + "red wine", + "salt" + ] + }, + { + "id": 18166, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "unsalted butter", + "cajun seasoning", + "cayenne pepper", + "celery", + "store bought low sodium chicken broth", + "kosher salt", + "green onions", + "all-purpose flour", + "smoked paprika", + "tomato paste", + "boneless chicken skinless thigh", + "ale", + "garlic", + "okra", + "onions", + "cooked rice", + "ground black pepper", + "vegetable oil", + "hot sauce", + "red bell pepper" + ] + }, + { + "id": 16146, + "cuisine": "italian", + "ingredients": [ + "sugar", + "linguine", + "fresh lemon juice", + "diced onions", + "pepper", + "squid", + "plum tomatoes", + "bread crumb fresh", + "salt", + "fresh parsley", + "fresh basil", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 31186, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "lemon juice", + "white cheddar cheese", + "butter", + "avocado", + "salt" + ] + }, + { + "id": 11168, + "cuisine": "mexican", + "ingredients": [ + "milk", + "salsa", + "sausage links", + "refrigerated pizza dough", + "ground cumin", + "large eggs", + "sour cream", + "pepper", + "cheese" + ] + }, + { + "id": 26762, + "cuisine": "moroccan", + "ingredients": [ + "fat free less sodium chicken broth", + "lemon", + "garlic cloves", + "ground turmeric", + "ground cinnamon", + "dried apricot", + "chopped onion", + "fresh parsley", + "ground cumin", + "ground ginger", + "olive oil", + "salt", + "couscous", + "chicken", + "pitted date", + "ground red pepper", + "lemon rind", + "chopped cilantro fresh" + ] + }, + { + "id": 3418, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "whipping cream", + "artichok heart marin", + "grated parmesan cheese", + "cheese", + "tortellini" + ] + }, + { + "id": 25782, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "cilantro", + "jalapeno chilies", + "tomatoes", + "purple onion" + ] + }, + { + "id": 46278, + "cuisine": "cajun_creole", + "ingredients": [ + "corn syrup", + "orange", + "white sugar", + "kosher salt", + "chopped pecans", + "whipping cream" + ] + }, + { + "id": 15729, + "cuisine": "spanish", + "ingredients": [ + "peaches", + "salt", + "cooking spray", + "chopped cilantro fresh", + "sugar", + "purple onion", + "grated orange", + "habanero pepper", + "fresh lime juice" + ] + }, + { + "id": 33068, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "onions", + "avocado", + "salt", + "diced tomatoes", + "italian salad dressing", + "green bell pepper", + "fresh lime juice" + ] + }, + { + "id": 16345, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "honey", + "onions", + "chicken stock", + "kosher salt", + "red wine", + "sliced almonds", + "cinnamon", + "canola oil", + "dried plum", + "pepper", + "lamb" + ] + }, + { + "id": 45132, + "cuisine": "italian", + "ingredients": [ + "pepper", + "marinara sauce", + "yellow onion", + "roasted red peppers", + "garlic", + "fresh basil leaves", + "fennel", + "asiago", + "shredded mozzarella cheese", + "sausage links", + "grated parmesan cheese", + "salt", + "rigatoni" + ] + }, + { + "id": 23333, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "garlic cloves", + "fish sauce", + "cilantro leaves", + "calamansi", + "powdered sugar", + "Sriracha", + "garlic chili sauce", + "water", + "oil", + "tiger prawn" + ] + }, + { + "id": 2072, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "egg whites", + "bittersweet chocolate", + "granulated sugar", + "confectioners sugar", + "milk", + "egg yolks", + "unsalted butter", + "salt" + ] + }, + { + "id": 12572, + "cuisine": "jamaican", + "ingredients": [ + "light rum", + "red beets", + "ginger beer", + "beets", + "dark rum" + ] + }, + { + "id": 17352, + "cuisine": "greek", + "ingredients": [ + "pita bread", + "ground black pepper", + "ground lamb", + "kosher salt", + "yellow onion", + "fresh oregano leaves", + "garlic", + "tomatoes", + "slab bacon", + "tzatziki" + ] + }, + { + "id": 1726, + "cuisine": "japanese", + "ingredients": [ + "fresh cilantro", + "tahini", + "soba noodles", + "soy sauce", + "sesame seeds", + "sea salt", + "scallions", + "fresh ginger", + "red pepper flakes", + "english cucumber", + "water", + "white miso", + "rice vinegar", + "toasted sesame oil" + ] + }, + { + "id": 36263, + "cuisine": "chinese", + "ingredients": [ + "water", + "peanut oil", + "long grain white rice", + "minced garlic", + "ginger", + "unsweetened pineapple juice", + "vegetables", + "scallions", + "soy sauce", + "chicken breast halves", + "corn starch" + ] + }, + { + "id": 11233, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "chili powder", + "oil", + "water", + "meat bones", + "ground cumin", + "tumeric", + "salt", + "onions", + "tomatoes", + "garam masala", + "ground coriander" + ] + }, + { + "id": 18655, + "cuisine": "japanese", + "ingredients": [ + "ground mustard", + "egg yolks", + "asparagus spears", + "soy sauce", + "fresh lemon juice", + "extra-virgin olive oil" + ] + }, + { + "id": 17280, + "cuisine": "southern_us", + "ingredients": [ + "quick-cooking oats", + "white sugar", + "vanilla extract", + "milk", + "peanut butter", + "butter", + "unsweetened cocoa powder" + ] + }, + { + "id": 33296, + "cuisine": "russian", + "ingredients": [ + "mashed potatoes", + "sour cream", + "flour", + "eggs", + "canola oil", + "shredded mozzarella cheese" + ] + }, + { + "id": 30002, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "boneless skinless chicken breast halves", + "cream cheese", + "water", + "italian salad dressing mix", + "condensed cream of mushroom soup" + ] + }, + { + "id": 5407, + "cuisine": "french", + "ingredients": [ + "water", + "smoked sausage", + "bay leaf", + "cooking oil", + "lentils", + "onions", + "dried thyme", + "salt", + "fresh parsley", + "garlic", + "carrots" + ] + }, + { + "id": 48594, + "cuisine": "italian", + "ingredients": [ + "crystallized ginger", + "whipped cream", + "all-purpose flour", + "sugar", + "semisweet chocolate", + "cake flour", + "Frangelico", + "hazelnuts", + "large eggs", + "salt", + "grated orange peel", + "unsalted butter", + "whipping cream", + "calimyrna figs" + ] + }, + { + "id": 21304, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "garlic", + "cornmeal", + "ground cumin", + "chili powder", + "red bell pepper", + "onions", + "kidney beans", + "pinto beans", + "ground beef", + "tomatoes with juice", + "bay leaf", + "dried oregano" + ] + }, + { + "id": 14723, + "cuisine": "southern_us", + "ingredients": [ + "hamburger buns", + "lettuce leaves", + "vegetable oil cooking spray", + "pepper", + "salt", + "mayonaise", + "chop fine pecan", + "lean ground pork", + "butter" + ] + }, + { + "id": 32305, + "cuisine": "southern_us", + "ingredients": [ + "hot dog bun", + "sugar", + "butter", + "eggs", + "cinnamon", + "milk", + "vanilla" + ] + }, + { + "id": 14766, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "egg yolks", + "water", + "eggs" + ] + }, + { + "id": 15898, + "cuisine": "mexican", + "ingredients": [ + "ground pepper", + "red wine vinegar", + "cheddar cheese", + "bell pepper", + "salsa", + "Boston lettuce", + "large eggs", + "purple onion", + "olive oil", + "coarse salt" + ] + }, + { + "id": 48289, + "cuisine": "southern_us", + "ingredients": [ + "whole wheat flour", + "butter", + "egg whites", + "all-purpose flour", + "baking soda", + "buttermilk", + "baking powder" + ] + }, + { + "id": 41542, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "brown rice", + "garlic", + "fresh lemon juice", + "olives", + "tomato paste", + "yoghurt", + "coarse salt", + "freshly ground pepper", + "frozen peas", + "garam masala", + "chili powder", + "cilantro leaves", + "red bell pepper", + "white onion", + "chicken breasts", + "cinnamon", + "scallions", + "cashew nuts" + ] + }, + { + "id": 33863, + "cuisine": "brazilian", + "ingredients": [ + "white sugar", + "eggs", + "sweetened condensed milk", + "milk" + ] + }, + { + "id": 9790, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "green onions", + "ripe olives", + "taco sauce", + "diced tomatoes", + "chopped cilantro fresh", + "avocado", + "flour tortillas", + "sour cream", + "shredded Monterey Jack cheese", + "vegetable oil cooking spray", + "cooked chicken", + "chopped cilantro" + ] + }, + { + "id": 22654, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "japanese eggplants", + "tomatoes", + "cooking spray", + "garlic cloves", + "grated parmesan cheese", + "dry bread crumbs", + "olive oil", + "crushed red pepper", + "dried oregano" + ] + }, + { + "id": 8095, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "flour", + "yellow onion", + "melted butter", + "baking powder", + "canola oil", + "sugar", + "buttermilk", + "kosher salt", + "hot sauce" + ] + }, + { + "id": 20060, + "cuisine": "cajun_creole", + "ingredients": [ + "low-fat mayonnaise", + "garlic cloves", + "dijon mustard", + "peanut oil", + "yellow corn meal", + "salt", + "fresh lemon juice", + "jumbo shrimp", + "cayenne pepper" + ] + }, + { + "id": 8187, + "cuisine": "british", + "ingredients": [ + "white vinegar", + "ground black pepper", + "worcestershire sauce", + "cayenne pepper", + "shortening", + "butter", + "all-purpose flour", + "eggs", + "ground sage", + "salt", + "pork", + "ice water", + "yellow onion" + ] + }, + { + "id": 33715, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "garam masala", + "cinnamon", + "green cardamom", + "ghee", + "saffron", + "caraway seeds", + "lime juice", + "mint leaves", + "salt", + "oil", + "basmati rice", + "red chili powder", + "milk", + "yoghurt", + "cilantro leaves", + "bay leaf", + "ground turmeric", + "clove", + "water", + "coriander powder", + "paneer", + "green chilies", + "onions", + "ginger paste" + ] + }, + { + "id": 28887, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "dried thyme", + "kielbasa", + "red bell pepper", + "light brown sugar", + "baby spinach leaves", + "apple cider vinegar", + "rice", + "red kidney beans", + "kosher salt", + "Tabasco Pepper Sauce", + "scallions", + "green bell pepper", + "mild Italian sausage", + "yellow onion", + "rib" + ] + }, + { + "id": 29384, + "cuisine": "italian", + "ingredients": [ + "radishes", + "olives", + "baguette", + "fresh thyme" + ] + }, + { + "id": 13880, + "cuisine": "french", + "ingredients": [ + "finely chopped onion", + "salt", + "ground white pepper", + "dried thyme", + "shredded swiss cheese", + "margarine", + "dry white wine", + "all-purpose flour", + "bay leaf", + "sea scallops", + "shallots", + "garlic cloves" + ] + }, + { + "id": 26746, + "cuisine": "greek", + "ingredients": [ + "sugar", + "chopped walnuts", + "filo dough", + "chopped almonds", + "unsalted butter", + "ground cinnamon", + "whole cloves" + ] + }, + { + "id": 4239, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "sherry wine vinegar", + "bow-tie pasta", + "sugar", + "cooked chicken", + "purple onion", + "fresh marjoram", + "dry white wine", + "heirloom tomatoes", + "soft fresh goat cheese", + "basil leaves", + "baby spinach", + "low salt chicken broth" + ] + }, + { + "id": 3748, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "salt", + "white sugar", + "egg yolks", + "shredded mozzarella cheese", + "sweetened condensed milk", + "melted butter", + "vanilla extract", + "coconut milk", + "lemon zest", + "all-purpose flour", + "cassava" + ] + }, + { + "id": 15504, + "cuisine": "japanese", + "ingredients": [ + "clove", + "dijon mustard", + "cilantro leaves", + "coconut milk", + "sugar", + "chili powder", + "green chilies", + "onions", + "garlic paste", + "prawns", + "green cardamom", + "bay leaf", + "coconut", + "salt", + "oil", + "ground turmeric" + ] + }, + { + "id": 24803, + "cuisine": "russian", + "ingredients": [ + "chopped fresh chives", + "kosher salt", + "leg of lamb", + "black pepper", + "garlic cloves", + "olive oil", + "flat leaf parsley" + ] + }, + { + "id": 194, + "cuisine": "filipino", + "ingredients": [ + "blue crabs", + "cooking oil", + "garlic", + "fresh spinach", + "ginger", + "onions", + "fish sauce", + "shrimp paste", + "coconut milk", + "ground black pepper", + "thai chile" + ] + }, + { + "id": 17895, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "boneless skinless chicken breasts", + "beaten eggs", + "sliced green onions", + "red cabbage", + "rice noodles", + "hot chili sauce", + "peanuts", + "lime wedges", + "sauce", + "shredded carrots", + "vegetable oil", + "beansprouts" + ] + }, + { + "id": 18870, + "cuisine": "thai", + "ingredients": [ + "coconut oil", + "ketchup", + "spices", + "green chilies", + "bamboo shoots", + "ground cumin", + "eggs", + "sugar", + "lemongrass", + "ginger", + "garlic cloves", + "fish", + "kaffir lime leaves", + "tumeric", + "grated coconut", + "cilantro", + "ground coriander", + "broiler", + "min", + "soy sauce", + "green onions", + "salt", + "fresh basil leaves", + "chicken" + ] + }, + { + "id": 424, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "jalapeno chilies", + "dried oregano", + "chicken broth", + "corn", + "salt", + "green chile", + "cream of chicken soup", + "cream cheese, soften", + "light sour cream", + "pepper", + "cooked chicken", + "cumin" + ] + }, + { + "id": 11123, + "cuisine": "southern_us", + "ingredients": [ + "water", + "low-fat buttermilk", + "butter", + "unsweetened cocoa powder", + "large egg whites", + "cooking spray", + "cake flour", + "chocolate glaze", + "large eggs", + "vanilla extract", + "sugar", + "baking soda", + "baking powder", + "salt" + ] + }, + { + "id": 23377, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "unagi", + "pepper", + "soy sauce", + "sake", + "mirin" + ] + }, + { + "id": 21313, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "balsamic reduction", + "fresh basil", + "salt", + "tomatoes", + "fresh mozzarella", + "black pepper", + "pizza doughs" + ] + }, + { + "id": 20227, + "cuisine": "brazilian", + "ingredients": [ + "water", + "cachaca", + "fresh ginger root", + "lime", + "white sugar", + "cinnamon sticks" + ] + }, + { + "id": 44399, + "cuisine": "mexican", + "ingredients": [ + "cooked rice", + "refried beans", + "fresh coriander", + "oil", + "cheddar cheese", + "bell pepper", + "tomatoes", + "lime", + "sour cream" + ] + }, + { + "id": 29291, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "garlic salt", + "pork ribs", + "ancho chile pepper", + "hominy", + "dried guajillo chiles", + "oregano", + "chili powder", + "onions" + ] + }, + { + "id": 39553, + "cuisine": "mexican", + "ingredients": [ + "serrano chilies", + "Tabasco Pepper Sauce", + "cayenne pepper", + "avocado", + "lime juice", + "purple onion", + "ground oregano", + "fillet red snapper", + "cilantro", + "lemon juice", + "tomatoes", + "tortillas", + "salt" + ] + }, + { + "id": 45019, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "salt", + "olive oil", + "warm water", + "bread flour" + ] + }, + { + "id": 37114, + "cuisine": "southern_us", + "ingredients": [ + "pineapple juice", + "whole cloves", + "cinnamon sticks", + "honey", + "orange juice", + "apple cider" + ] + }, + { + "id": 34943, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "bird chile", + "szechwan peppercorns", + "corn starch", + "cod fillets", + "scallions", + "glass noodles", + "broccolini", + "vegetable broth", + "onions" + ] + }, + { + "id": 24963, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "large eggs", + "vanilla extract", + "caramels", + "chocolate", + "water", + "butter", + "chopped pecans", + "sugar", + "refrigerated piecrusts", + "salt" + ] + }, + { + "id": 48357, + "cuisine": "chinese", + "ingredients": [ + "pineapple chunks", + "soy sauce", + "pineapple juice", + "onions", + "sugar", + "garlic", + "corn starch", + "brown sugar", + "vinegar", + "green pepper", + "eggs", + "pork", + "salt", + "ginger root" + ] + }, + { + "id": 37571, + "cuisine": "filipino", + "ingredients": [ + "jackfruit", + "vegetable oil", + "ground ginger", + "long green pepper", + "coconut milk", + "pork", + "shrimp paste", + "onions", + "water", + "garlic" + ] + }, + { + "id": 12633, + "cuisine": "chinese", + "ingredients": [ + "sunflower oil", + "light soy sauce", + "fish", + "white pepper", + "whole snapper", + "spring onions" + ] + }, + { + "id": 39943, + "cuisine": "chinese", + "ingredients": [ + "sugar pea", + "carrots", + "mandarin oranges", + "cooked chicken", + "spaghetti", + "stir fry sauce" + ] + }, + { + "id": 283, + "cuisine": "british", + "ingredients": [ + "eggs", + "salt", + "milk", + "melted butter", + "flour", + "shortening" + ] + }, + { + "id": 23168, + "cuisine": "indian", + "ingredients": [ + "cilantro sprigs", + "coriander seeds", + "fresh lemon juice", + "cinnamon", + "ground cumin", + "eggplant", + "extra-virgin olive oil" + ] + }, + { + "id": 27097, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "lime", + "salt", + "chicken", + "chicken broth", + "lime juice", + "butter", + "rice", + "water", + "chili powder", + "salsa", + "ground cumin", + "black beans", + "corn", + "garlic", + "chopped cilantro" + ] + }, + { + "id": 34768, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "sour cream", + "kosher salt", + "cilantro", + "serrano chile", + "tomatillos", + "poblano chiles", + "water", + "garlic" + ] + }, + { + "id": 40070, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "poppy seeds", + "lemon juice", + "ground turmeric", + "grated coconut", + "tamarind paste", + "coconut milk", + "fish", + "red chili peppers", + "salt", + "mustard seeds", + "masala", + "kokum", + "chili powder", + "oil", + "onions" + ] + }, + { + "id": 47918, + "cuisine": "french", + "ingredients": [ + "vegetable oil", + "fine sea salt", + "purple potatoes" + ] + }, + { + "id": 14532, + "cuisine": "moroccan", + "ingredients": [ + "fat free less sodium chicken broth", + "mixed dried fruit", + "onions", + "green olives", + "dried thyme", + "boneless skinless chicken breasts", + "minced garlic", + "dry white wine", + "black pepper", + "olive oil", + "salt" + ] + }, + { + "id": 20804, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "fresh parmesan cheese", + "garlic cloves", + "water", + "finely chopped onion", + "fat free less sodium chicken broth", + "ground black pepper", + "gnocchi", + "olive oil", + "broccoli florets" + ] + }, + { + "id": 14323, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "skirt steak", + "olive oil", + "fresh tomato salsa", + "crema", + "chopped garlic", + "tortillas", + "fresh lime juice" + ] + }, + { + "id": 15840, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "plum tomatoes", + "onions", + "olive oil", + "marjoram", + "refrigerated pizza dough", + "japanese eggplants" + ] + }, + { + "id": 21446, + "cuisine": "italian", + "ingredients": [ + "basil", + "salt", + "ground black pepper", + "garlic", + "cherry tomatoes", + "extra-virgin olive oil", + "zucchini", + "purple onion" + ] + }, + { + "id": 25700, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "green onions", + "chicken stock", + "light soy sauce", + "wonton wrappers", + "sugar pea", + "vegetable oil", + "brown sugar", + "pork loin", + "carrots" + ] + }, + { + "id": 28611, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "boneless skinless chicken breasts", + "salt", + "soy sauce", + "crushed garlic", + "black peppercorns", + "vegetable oil", + "boneless pork loin", + "bay leaves", + "garlic" + ] + }, + { + "id": 40378, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "ground black pepper", + "grated lemon zest", + "kosher salt", + "shallots", + "fresh lemon juice", + "fresh rosemary", + "pork tenderloin", + "garlic cloves", + "Belgian endive", + "olive oil", + "balsamic vinegar" + ] + }, + { + "id": 15472, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "Tabasco Pepper Sauce", + "fresh parsley leaves", + "large eggs", + "ricotta cheese", + "ground black pepper", + "coarse salt", + "tomato sauce", + "grated parmesan cheese", + "crepes" + ] + }, + { + "id": 17683, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "Shaoxing wine", + "shrimp", + "wheat starch", + "sesame oil", + "lard", + "light soy sauce", + "spring onions", + "ginger root", + "tapioca starch", + "carrots", + "boiling water" + ] + }, + { + "id": 3671, + "cuisine": "chinese", + "ingredients": [ + "beef consomme", + "garlic cloves", + "brown sugar", + "sesame oil", + "broccoli florets", + "corn starch", + "soy sauce", + "boneless beef chuck roast" + ] + }, + { + "id": 11847, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "water", + "mint leaves", + "rice noodles", + "water spinach", + "banana blossom", + "red chili peppers", + "leaves", + "spring onions", + "salt", + "oil", + "sugar", + "lime", + "leeks", + "garlic", + "pressed tofu", + "tomatoes", + "crab", + "tamarind juice", + "shrimp paste", + "cilantro leaves", + "beansprouts" + ] + }, + { + "id": 32961, + "cuisine": "indian", + "ingredients": [ + "Tabasco Green Pepper Sauce", + "ground coriander", + "asafetida", + "fresh curry leaves", + "green onions", + "roasted tomatoes", + "tomato paste", + "black-eyed peas", + "black mustard seeds", + "ground cumin", + "olive oil", + "sea salt", + "ground turmeric" + ] + }, + { + "id": 589, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "vegetable oil", + "pinto beans", + "chopped cilantro fresh", + "garlic powder", + "lime wedges", + "garlic cloves", + "low salt chicken broth", + "ground cumin", + "cheddar cheese", + "white hominy", + "diced tomatoes", + "smoked paprika", + "oregano", + "kosher salt", + "flour tortillas", + "purple onion", + "pork shoulder boston butt", + "plum tomatoes" + ] + }, + { + "id": 49490, + "cuisine": "italian", + "ingredients": [ + "cherries", + "cocktail cherries", + "ice cream", + "sauce", + "sugar", + "vanilla extract", + "chopped pecans", + "whipping cream", + "crushed pineapple" + ] + }, + { + "id": 18304, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "tomato sauce", + "crushed tomatoes", + "lasagna noodles", + "salt", + "fresh basil", + "sugar", + "olive oil", + "red pepper flakes", + "onions", + "tomato paste", + "cremini mushrooms", + "dried thyme", + "ricotta cheese", + "shredded mozzarella cheese", + "pecorino cheese", + "water", + "shiitake", + "garlic" + ] + }, + { + "id": 48992, + "cuisine": "greek", + "ingredients": [ + "pepper", + "salt", + "cucumber", + "olive oil", + "dried dillweed", + "marjoram", + "water", + "greek style plain yogurt", + "pork shoulder", + "garlic", + "lemon juice" + ] + }, + { + "id": 37528, + "cuisine": "mexican", + "ingredients": [ + "queso fresco", + "turkey meat", + "milk", + "crème fraîche", + "onions", + "vegetable oil", + "salsa", + "monterey jack", + "chicken broth", + "cilantro sprigs", + "corn tortillas" + ] + }, + { + "id": 25473, + "cuisine": "southern_us", + "ingredients": [ + "chicken wings", + "chicken heart", + "celery", + "water", + "long-grain rice", + "onions", + "butter-margarine blend", + "green pepper", + "hot pork sausage", + "parsley flakes", + "chicken gizzards", + "chicken livers" + ] + }, + { + "id": 25823, + "cuisine": "cajun_creole", + "ingredients": [ + "sweet potatoes", + "stewed tomatoes", + "black-eyed peas", + "chili powder", + "ground allspice", + "dried thyme", + "bay leaves", + "frozen corn kernels", + "hot pepper sauce", + "large garlic cloves", + "okra" + ] + }, + { + "id": 38981, + "cuisine": "irish", + "ingredients": [ + "red potato", + "leeks", + "freshly ground pepper", + "ground nutmeg", + "salt", + "vegetable oil cooking spray", + "1% low-fat milk", + "garlic cloves", + "eggs", + "grated parmesan cheese", + "margarine" + ] + }, + { + "id": 41380, + "cuisine": "french", + "ingredients": [ + "earl grey tea leaves", + "semisweet chocolate", + "large egg whites", + "whipping cream", + "sugar", + "whole milk", + "large egg yolks", + "unsweetened chocolate" + ] + }, + { + "id": 27211, + "cuisine": "italian", + "ingredients": [ + "parsley leaves", + "spaghetti", + "fine sea salt", + "extra-virgin olive oil", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 32539, + "cuisine": "moroccan", + "ingredients": [ + "celery ribs", + "olive oil", + "red pepper flakes", + "yellow onion", + "fresh parsley leaves", + "greens", + "tomatoes", + "fresh lemon", + "orzo", + "brown lentils", + "fresh mint", + "tomato paste", + "ground black pepper", + "sea salt", + "chickpeas", + "smoked paprika", + "ground cumin", + "ground cinnamon", + "cilantro stems", + "garlic", + "ground coriander", + "broth" + ] + }, + { + "id": 27569, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "Mexican cheese", + "condensed cream of mushroom soup", + "onions", + "lean ground beef", + "sour cream", + "refried beans", + "taco seasoning" + ] + }, + { + "id": 45290, + "cuisine": "southern_us", + "ingredients": [ + "brandy", + "ground nutmeg", + "baking powder", + "salt", + "ground cinnamon", + "black pepper", + "cooking spray", + "butter", + "fresh lemon juice", + "yellow corn meal", + "granny smith apples", + "granulated sugar", + "balsamic vinegar", + "grated lemon zest", + "brown sugar", + "egg substitute", + "golden raisins", + "pastry flour", + "grated orange" + ] + }, + { + "id": 34627, + "cuisine": "thai", + "ingredients": [ + "lime", + "shallots", + "frozen peas", + "lemongrass", + "full fat coconut milk", + "vegetable broth", + "pepper", + "fresh ginger", + "red pepper flakes", + "fresh cilantro", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 45686, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "extra-virgin olive oil", + "water", + "anise", + "yeast", + "powdered sugar", + "flour", + "salt", + "warm water", + "egg yolks", + "orange flower water" + ] + }, + { + "id": 12968, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "kosher salt", + "bay leaves", + "paprika", + "wild rice", + "dried oregano", + "green bell pepper", + "ground black pepper", + "worcestershire sauce", + "yellow onion", + "red bell pepper", + "andouille sausage", + "low sodium chicken broth", + "diced tomatoes", + "cayenne pepper", + "medium shrimp", + "celery salt", + "olive oil", + "old bay seasoning", + "hot sauce", + "garlic cloves" + ] + }, + { + "id": 45991, + "cuisine": "french", + "ingredients": [ + "milk", + "butter", + "grated orange", + "cream of tartar", + "flour", + "sauce", + "egg whites", + "salt", + "sugar", + "egg yolks", + "orange liqueur" + ] + }, + { + "id": 26530, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "beef tenderloin", + "lemon juice", + "ground cumin", + "clove", + "garam masala", + "salt", + "ghee", + "chile powder", + "chopped tomatoes", + "garlic", + "coconut milk", + "spinach", + "serrano peppers", + "ground coriander", + "onions" + ] + }, + { + "id": 47945, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "salt", + "water" + ] + }, + { + "id": 48021, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "cilantro leaves", + "onions", + "avocado", + "garlic", + "sour cream", + "serrano chile", + "tomatillos", + "yellow onion", + "carnitas", + "muenster", + "salt", + "corn tortillas" + ] + }, + { + "id": 13573, + "cuisine": "italian", + "ingredients": [ + "baguette", + "balsamic vinegar", + "parmesan cheese", + "garlic cloves", + "olive oil", + "salt", + "fresh basil", + "roma tomatoes" + ] + }, + { + "id": 19353, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "chicken stock cubes", + "frozen peppers and onions", + "cayenne", + "sausages", + "smoked ham hocks", + "black pepper", + "Camellia Red Kidney Beans", + "thyme", + "oregano", + "rosemary", + "salt", + "bay leaf" + ] + }, + { + "id": 25567, + "cuisine": "irish", + "ingredients": [ + "milk", + "cocktail cherries", + "frozen orange juice concentrate", + "mandarin orange segments", + "sour cream", + "frozen whip topping, thaw", + "vanilla instant pudding", + "shredded coconut", + "cake" + ] + }, + { + "id": 23451, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "water", + "arrowroot", + "scallions", + "soy sauce", + "olive oil", + "garlic", + "red chili peppers", + "light soy sauce", + "rice wine", + "black vinegar", + "dark soy sauce", + "boneless chicken skinless thigh", + "fresh ginger", + "roasted peanuts" + ] + }, + { + "id": 20777, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "lime", + "shrimp shells", + "red potato", + "tomatillos", + "chipotles in adobo", + "tomatoes", + "olive oil", + "hass avocado", + "fresh cilantro", + "garlic cloves", + "onions" + ] + }, + { + "id": 32194, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "grated carrot", + "white vinegar", + "bell pepper", + "celery", + "red cabbage", + "dijon style mustard", + "green bell pepper", + "shredded cabbage" + ] + }, + { + "id": 7810, + "cuisine": "vietnamese", + "ingredients": [ + "cold water", + "baking powder", + "rice vinegar", + "brown sugar", + "chicken drumsticks", + "oil", + "fish sauce", + "vegetable oil", + "all-purpose flour", + "ground black pepper", + "garlic" + ] + }, + { + "id": 23530, + "cuisine": "southern_us", + "ingredients": [ + "coarse salt", + "unsalted butter", + "ground white pepper", + "parmigiano reggiano cheese", + "grits", + "water", + "hot sauce" + ] + }, + { + "id": 16652, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked ham", + "finely chopped onion", + "salt", + "shrimp", + "corn", + "green onions", + "freshly ground pepper", + "oregano", + "tomatoes", + "dried thyme", + "chopped celery", + "long-grain rice", + "minced garlic", + "flour", + "green pepper", + "broth" + ] + }, + { + "id": 946, + "cuisine": "italian", + "ingredients": [ + "water", + "white peaches", + "lemon juice", + "sugar", + "sparkling wine", + "raspberries" + ] + }, + { + "id": 20151, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "sesame oil", + "mango", + "lime", + "rice vinegar", + "shredded carrots", + "scallions", + "shredded cabbage", + "white sesame seeds" + ] + }, + { + "id": 7563, + "cuisine": "jamaican", + "ingredients": [ + "lime", + "berries", + "ketchup", + "garlic", + "thyme", + "pepper", + "pineapple juice", + "ginger", + "scallions" + ] + }, + { + "id": 43699, + "cuisine": "japanese", + "ingredients": [ + "base", + "oil", + "cabbage", + "mirin", + "scallions", + "onions", + "pork", + "worcestershire sauce", + "shrimp", + "udon", + "carrots" + ] + }, + { + "id": 16195, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "turkey meat", + "kosher salt", + "vegetable oil", + "canned black beans", + "jalapeno chilies", + "jack", + "cilantro leaves" + ] + }, + { + "id": 37474, + "cuisine": "french", + "ingredients": [ + "fennel", + "freshly ground pepper", + "tomatoes", + "sea salt", + "yukon gold potatoes", + "chicken thighs", + "water", + "extra-virgin olive oil" + ] + }, + { + "id": 45713, + "cuisine": "italian", + "ingredients": [ + "sugar", + "egg substitute", + "white vinegar", + "extra lean ground beef", + "ground turkey", + "ketchup", + "dry mustard", + "low sodium worcestershire sauce", + "seasoned bread crumbs", + "onions" + ] + }, + { + "id": 10404, + "cuisine": "greek", + "ingredients": [ + "grape tomatoes", + "orange bell pepper", + "purple onion", + "european cucumber", + "kalamata", + "dried oregano", + "sugar", + "feta cheese", + "red bell pepper", + "olive oil", + "yellow bell pepper" + ] + }, + { + "id": 21668, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "crema", + "smoked paprika", + "fresh cilantro", + "cilantro", + "greek style plain yogurt", + "chipotle peppers", + "avocado", + "red cabbage", + "salt", + "corn tortillas", + "lime", + "cracked black pepper", + "filet", + "ground cumin" + ] + }, + { + "id": 19280, + "cuisine": "japanese", + "ingredients": [ + "cooked rice", + "sliced almonds", + "spring onions", + "salmon fillets", + "fresh ginger root", + "sake", + "caster sugar", + "soy sauce", + "mirin" + ] + }, + { + "id": 20593, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "eggplant", + "fresh herbs", + "bread crumbs", + "zucchini", + "black pepper", + "parmesan cheese", + "pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 43727, + "cuisine": "cajun_creole", + "ingredients": [ + "refrigerated buttermilk biscuits", + "vegetable oil", + "powdered sugar" + ] + }, + { + "id": 653, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "baking soda", + "cornmeal", + "corn", + "baking powder", + "water", + "large eggs", + "polenta", + "salted butter", + "buttermilk" + ] + }, + { + "id": 35616, + "cuisine": "chinese", + "ingredients": [ + "mushrooms", + "dry sherry", + "corn starch", + "green bell pepper", + "sesame oil", + "garlic cloves", + "top round steak", + "red pepper flakes", + "lemon juice", + "low sodium soy sauce", + "green onions", + "beef broth", + "red bell pepper" + ] + }, + { + "id": 43433, + "cuisine": "italian", + "ingredients": [ + "pepper", + "butter", + "dry bread crumbs", + "large eggs", + "salt", + "plum tomatoes", + "olive oil", + "idaho potatoes", + "grated lemon zest", + "spinach", + "fresh mozzarella", + "all-purpose flour", + "canola oil" + ] + }, + { + "id": 25898, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "vegetable oil", + "large eggs", + "rendered bacon fat", + "unsalted butter", + "buttermilk", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 41889, + "cuisine": "southern_us", + "ingredients": [ + "crawfish", + "dry white wine", + "all-purpose flour", + "pasta", + "parmesan cheese", + "cheese", + "fresh mushrooms", + "salt and ground black pepper", + "butter", + "creole seasoning", + "cream", + "chopped green bell pepper", + "garlic", + "onions" + ] + }, + { + "id": 11142, + "cuisine": "filipino", + "ingredients": [ + "salt", + "grated coconut", + "white hominy" + ] + }, + { + "id": 17591, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "half & half", + "ground black pepper", + "chopped onion", + "crushed tomatoes", + "salt", + "fennel seeds", + "unsalted butter", + "liqueur" + ] + }, + { + "id": 10032, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "quinoa", + "cilantro", + "oil", + "water", + "corn oil", + "salt", + "pepper", + "sweet potatoes", + "garlic", + "onions", + "dressing", + "lime juice", + "chili powder", + "cumin seed" + ] + }, + { + "id": 48791, + "cuisine": "filipino", + "ingredients": [ + "ketchup", + "salt", + "garlic powder", + "oil", + "water", + "pineapple juice", + "sugar", + "meat" + ] + }, + { + "id": 17979, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "garlic", + "onions", + "fish sauce", + "agave nectar", + "red bell pepper", + "Sriracha", + "oil", + "soy sauce", + "basil leaves", + "ground turkey" + ] + }, + { + "id": 27225, + "cuisine": "japanese", + "ingredients": [ + "light soy sauce", + "peanut oil", + "sugar", + "large eggs", + "mirin", + "scallions", + "white onion", + "skinless chicken breasts" + ] + }, + { + "id": 2582, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "red potato", + "garam masala", + "garlic", + "no-salt-added diced tomatoes", + "baby spinach", + "Madras curry powder", + "ground black pepper", + "salt", + "tomato paste", + "fresh ginger", + "red wine vinegar", + "chopped cilantro fresh" + ] + }, + { + "id": 38648, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "paprika", + "onions", + "canned black beans", + "red capsicum", + "garlic cloves", + "ground cumin", + "eggs", + "flour tortillas", + "salt", + "coriander", + "avocado", + "black pepper", + "grating cheese", + "sour cream" + ] + }, + { + "id": 42905, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "coconut", + "black mustard seeds", + "asafoetida", + "vegetable oil", + "frozen peas", + "curry leaves", + "potatoes", + "chillies", + "fresh coriander", + "florets", + "ground turmeric" + ] + }, + { + "id": 7793, + "cuisine": "italian", + "ingredients": [ + "bread crumb fresh", + "extra-virgin olive oil", + "plum tomatoes", + "saffron threads", + "perciatelli", + "anchovy fillets", + "dried currants", + "fennel bulb", + "onions", + "pinenuts", + "crushed red pepper" + ] + }, + { + "id": 29054, + "cuisine": "greek", + "ingredients": [ + "greek seasoning", + "chicken breasts", + "dried oregano", + "lemon zest", + "poultry seasoning", + "black pepper", + "extra-virgin olive oil", + "boneless skinless chicken breasts", + "lemon juice" + ] + }, + { + "id": 5018, + "cuisine": "french", + "ingredients": [ + "sugar", + "Frangelico", + "large eggs", + "white chocolate", + "whipping cream" + ] + }, + { + "id": 41857, + "cuisine": "mexican", + "ingredients": [ + "sundried tomato paste", + "water", + "salt", + "chopped cilantro fresh", + "fresh tomatoes", + "dry red wine", + "garlic cloves", + "corn salsa", + "ground pepper", + "goat cheese", + "plum tomatoes", + "black beans", + "extra-virgin olive oil", + "corn tortillas" + ] + }, + { + "id": 23519, + "cuisine": "korean", + "ingredients": [ + "fat free less sodium chicken broth", + "rice cakes", + "dark sesame oil", + "sesame seeds", + "boneless skinless chicken breasts", + "nori", + "water", + "peeled fresh ginger", + "garlic cloves", + "low sodium soy sauce", + "large eggs", + "vegetable oil", + "sliced green onions" + ] + }, + { + "id": 27523, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "olive oil", + "sesame oil", + "cilantro leaves", + "shrimp", + "homemade chicken stock", + "unsalted butter", + "garlic", + "scallions", + "celery", + "soy sauce", + "shallots", + "oyster mushrooms", + "carrots", + "noodles", + "fish sauce", + "shiitake", + "ginger", + "rice vinegar", + "coconut milk" + ] + }, + { + "id": 26445, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "sour cream", + "chicken broth", + "kidney beans", + "garlic", + "boneless skinless chicken breast halves", + "olive oil", + "diced tomatoes", + "onions", + "cheddar cheese", + "whole peeled tomatoes", + "cayenne pepper" + ] + }, + { + "id": 21790, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "ground black pepper", + "garlic", + "red bell pepper", + "cumin", + "black beans", + "olive oil", + "chili powder", + "salsa", + "fresh lime juice", + "avocado", + "fresh cilantro", + "green onions", + "salt", + "sour cream", + "pepper", + "quinoa", + "vegetable broth", + "shredded cheese", + "canned corn" + ] + }, + { + "id": 9902, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "red bell pepper", + "frozen corn kernels", + "ground pepper", + "vinaigrette", + "jalapeno chilies", + "ground coriander" + ] + }, + { + "id": 37738, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "chives", + "creole seasoning", + "smoked bacon", + "salt", + "shrimp", + "tomato purée", + "white cheddar cheese", + "garlic cloves", + "grated parmesan cheese", + "hot sauce", + "grits" + ] + }, + { + "id": 27415, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "water chestnuts", + "cayenne pepper", + "corn starch", + "light soy sauce", + "cooked chicken", + "garlic cloves", + "water", + "green onions", + "green pepper", + "beansprouts", + "egg roll wrappers", + "vegetable oil", + "carrots" + ] + }, + { + "id": 44685, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "grated parmesan cheese", + "shredded mozzarella cheese", + "white sugar", + "eggs", + "ground black pepper", + "garlic", + "ground beef", + "dried oregano", + "dried basil", + "diced tomatoes", + "sour cream", + "pork sausages", + "green olives", + "lasagna noodles", + "salt", + "dried parsley" + ] + }, + { + "id": 10368, + "cuisine": "indian", + "ingredients": [ + "water", + "garlic", + "black mustard seeds", + "tumeric", + "vegetable oil", + "tamarind paste", + "tomatoes", + "ground black pepper", + "salt", + "chopped cilantro fresh", + "fresh curry leaves", + "red pepper flakes", + "cumin seed" + ] + }, + { + "id": 436, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "water", + "vegetable oil", + "corn starch", + "dark soy sauce", + "unsalted butter", + "cake flour", + "sugar", + "sesame oil", + "oyster sauce", + "eggs", + "sesame seeds", + "loin pork roast", + "onions" + ] + }, + { + "id": 10345, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "garlic", + "jalapeno chilies", + "chopped cilantro fresh", + "water", + "chopped onion", + "avocado", + "tomatillos" + ] + }, + { + "id": 32547, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "ground allspice", + "celery salt", + "coarse sea salt", + "onion powder", + "sweet paprika", + "garlic powder", + "cayenne pepper" + ] + }, + { + "id": 32818, + "cuisine": "mexican", + "ingredients": [ + "posole", + "unsalted butter", + "chopped pecans", + "olive oil", + "salt", + "greens", + "cider vinegar", + "vegetable stock", + "chayotes", + "diced onions", + "dried cherry", + "garlic cloves" + ] + }, + { + "id": 44828, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "diced tomatoes", + "salt", + "dried basil", + "cracked black pepper", + "dried oregano", + "water", + "cheese tortellini", + "yellow onion", + "frozen spinach", + "olive oil", + "garlic" + ] + }, + { + "id": 27152, + "cuisine": "mexican", + "ingredients": [ + "granulated sugar", + "vegetable oil", + "flour tortillas", + "ground cinnamon" + ] + }, + { + "id": 42085, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "sesame oil", + "scallions", + "canola oil", + "salmon fillets", + "egg whites", + "rolls", + "toasted sesame seeds", + "wasabi paste", + "salmon", + "tamari soy sauce", + "nori sheets", + "cold water", + "sushi rice", + "cilantro sprigs", + "lemon juice" + ] + }, + { + "id": 11935, + "cuisine": "korean", + "ingredients": [ + "sugar", + "garlic", + "flank steak", + "soy sauce", + "sliced green onions", + "sesame oil" + ] + }, + { + "id": 26303, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "crushed red pepper", + "dried oregano", + "tomato purée", + "parmigiano reggiano cheese", + "penne pasta", + "fresh basil", + "olive oil", + "salt", + "sugar", + "diced tomatoes", + "lemon juice" + ] + }, + { + "id": 37314, + "cuisine": "moroccan", + "ingredients": [ + "boneless chuck roast", + "paprika", + "garlic cloves", + "tumeric", + "golden raisins", + "beef broth", + "onions", + "garam masala", + "dry red wine", + "diced tomatoes in juice", + "olive oil", + "dry sherry", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 48822, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "parmesan cheese", + "fresh basil leaves" + ] + }, + { + "id": 23026, + "cuisine": "greek", + "ingredients": [ + "frozen chopped spinach", + "water", + "purple onion", + "vegetable oil cooking spray", + "flank steak", + "dry bread crumbs", + "mashed potatoes", + "garlic powder", + "salt", + "pepper", + "dry red wine", + "dried oregano" + ] + }, + { + "id": 4062, + "cuisine": "mexican", + "ingredients": [ + "fat free less sodium chicken broth", + "cooking spray", + "diced tomatoes", + "garlic cloves", + "ground cumin", + "water", + "ground red pepper", + "chopped onion", + "chopped cilantro", + "black pepper", + "olive oil", + "chili powder", + "low-fat cream cheese", + "bone in chicken thighs", + "shredded cheddar cheese", + "green onions", + "salt", + "corn tortillas" + ] + }, + { + "id": 39531, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "hoisin sauce", + "toasted sesame oil", + "ketchup", + "garlic", + "soy sauce", + "peeled fresh ginger", + "spareribs", + "honey", + "chinese five-spice powder" + ] + }, + { + "id": 33765, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "loin pork roast", + "all-purpose flour", + "red bell pepper", + "olive oil", + "garlic", + "ground mustard", + "onions", + "dried thyme", + "butter", + "cayenne pepper", + "celery", + "chicken broth", + "ground black pepper", + "salt", + "carrots", + "dried oregano" + ] + }, + { + "id": 1514, + "cuisine": "italian", + "ingredients": [ + "ziti", + "sugar", + "cooked shrimp", + "soft goat's cheese", + "salsa", + "asparagus" + ] + }, + { + "id": 21719, + "cuisine": "italian", + "ingredients": [ + "water", + "kielbasa", + "penne", + "swiss chard", + "garlic cloves", + "olive oil", + "salt", + "hot red pepper flakes", + "parmigiano reggiano cheese" + ] + }, + { + "id": 23429, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "cornmeal", + "hot sauce", + "salt", + "tartar sauce" + ] + }, + { + "id": 12928, + "cuisine": "french", + "ingredients": [ + "butter", + "fresh thyme", + "garlic cloves", + "oyster mushrooms", + "russet potatoes" + ] + }, + { + "id": 45940, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "grated nutmeg", + "fresh basil", + "chees fresh mozzarella", + "manicotti", + "eggs", + "ricotta cheese", + "freshly ground pepper", + "tomato sauce", + "salt" + ] + }, + { + "id": 28496, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "grana padano", + "cracked black pepper", + "unsalted butter", + "pasta", + "grated pecorino" + ] + }, + { + "id": 22995, + "cuisine": "chinese", + "ingredients": [ + "chinese wheat noodles", + "rice vinegar", + "toasted sesame oil", + "shiitake", + "garlic", + "scallions", + "greens", + "fresh ginger", + "vegetable broth", + "firm tofu", + "bok choy", + "reduced sodium soy sauce", + "crushed red pepper", + "carrots", + "canola oil" + ] + }, + { + "id": 8018, + "cuisine": "indian", + "ingredients": [ + "pepper", + "chili powder", + "ginger", + "garlic cloves", + "chicken thighs", + "green bell pepper", + "coriander powder", + "paprika", + "salt", + "ghee", + "ground cumin", + "tomato sauce", + "marinade", + "cilantro", + "coconut cream", + "onions", + "fenugreek leaves", + "garam masala", + "organic coconut milk", + "curry", + "lemon juice", + "ground turmeric" + ] + }, + { + "id": 19181, + "cuisine": "cajun_creole", + "ingredients": [ + "red beans", + "kosher salt", + "meat bones", + "cracked black pepper", + "minute rice", + "onions" + ] + }, + { + "id": 21002, + "cuisine": "cajun_creole", + "ingredients": [ + "seasoning", + "flour", + "oil", + "stock", + "chopped celery", + "chopped garlic", + "cooked rice", + "green onions", + "onions", + "andouille sausage", + "green pepper", + "chicken" + ] + }, + { + "id": 18541, + "cuisine": "indian", + "ingredients": [ + "coconut milk", + "vegetable oil", + "boneless skinless chicken breast halves", + "english cucumber", + "mango", + "shallots", + "curry paste" + ] + }, + { + "id": 43640, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "cooked chicken", + "celery", + "sliced green onions", + "hoisin sauce", + "Chinese egg noodles", + "mung bean sprouts", + "soy sauce", + "shredded carrots", + "toasted sesame oil", + "canola oil", + "fresh ginger", + "purple onion", + "chopped cilantro" + ] + }, + { + "id": 44222, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "vinegar", + "garlic", + "pork belly", + "bay leaves", + "peppercorns", + "pork", + "potatoes", + "salt", + "dark soy sauce", + "light soy sauce", + "shallots" + ] + }, + { + "id": 34106, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "salt", + "vegetable oil", + "water", + "all-purpose flour", + "powdered sugar", + "rapid rise yeast" + ] + }, + { + "id": 37264, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "fresh lemon juice", + "artichoke hearts", + "balsamic vinegar", + "chopped garlic", + "olive oil", + "ground black pepper", + "Italian bread", + "part-skim mozzarella cheese", + "salt" + ] + }, + { + "id": 1592, + "cuisine": "vietnamese", + "ingredients": [ + "eggs", + "corn starch", + "water", + "cassava", + "sugar", + "coconut milk", + "mung beans" + ] + }, + { + "id": 22113, + "cuisine": "italian", + "ingredients": [ + "lemon thyme", + "unsalted butter", + "cracked black pepper", + "yellow onion", + "arborio rice", + "hot red pepper flakes", + "dry white wine", + "chopped celery", + "chopped garlic", + "pancetta", + "table salt", + "finely chopped fresh parsley", + "bacon slices", + "fresh lemon juice", + "chicken stock", + "black-eyed peas", + "coarse sea salt", + "purple onion" + ] + }, + { + "id": 42351, + "cuisine": "russian", + "ingredients": [ + "sugar", + "mushrooms", + "onions", + "melted butter", + "milk", + "salt", + "pepper", + "butter", + "eggs", + "flour", + "ground beef" + ] + }, + { + "id": 35298, + "cuisine": "italian", + "ingredients": [ + "chipotle chile", + "grated parmesan cheese", + "stewed tomatoes", + "hot Italian sausages", + "tomato paste", + "lasagna noodles", + "fresh mozzarella", + "fresh oregano", + "onions", + "fresh basil", + "zucchini", + "asiago", + "cream cheese", + "frozen chopped spinach", + "salt and ground black pepper", + "lean ground beef", + "garlic", + "fresh mushrooms" + ] + }, + { + "id": 46384, + "cuisine": "russian", + "ingredients": [ + "lemon", + "salt", + "whole milk" + ] + }, + { + "id": 37044, + "cuisine": "italian", + "ingredients": [ + "oil", + "prepar pesto", + "mozzarella cheese" + ] + }, + { + "id": 49437, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "cream cheese", + "crescent rolls", + "milk", + "lemon juice", + "powdered sugar", + "cinnamon" + ] + }, + { + "id": 44850, + "cuisine": "vietnamese", + "ingredients": [ + "shallots", + "canola oil" + ] + }, + { + "id": 6687, + "cuisine": "british", + "ingredients": [ + "white sugar", + "heavy cream", + "fresh raspberries" + ] + }, + { + "id": 23774, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "all-purpose flour", + "eggs", + "buttermilk", + "butter", + "white sugar", + "baking soda", + "vanilla extract" + ] + }, + { + "id": 41624, + "cuisine": "russian", + "ingredients": [ + "pepper", + "sour cream", + "cabbage", + "cold water", + "salt", + "onions", + "white vinegar", + "garlic", + "bay leaf", + "chuck", + "tomatoes", + "lemon juice", + "white sugar" + ] + }, + { + "id": 1833, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "grated parmesan cheese", + "salt", + "water", + "shallots", + "fresh parsley", + "dried porcini mushrooms", + "dry white wine", + "low salt chicken broth", + "arborio rice", + "olive oil", + "butter" + ] + }, + { + "id": 17138, + "cuisine": "japanese", + "ingredients": [ + "ramen noodles", + "fresh ginger root", + "vegetable broth", + "soy sauce", + "chili oil", + "green onions" + ] + }, + { + "id": 38327, + "cuisine": "japanese", + "ingredients": [ + "salmon", + "fillets", + "agave nectar", + "ume plum vinegar", + "grapeseed oil", + "olive oil" + ] + }, + { + "id": 39399, + "cuisine": "mexican", + "ingredients": [ + "tilapia fillets", + "cooking spray", + "garlic", + "fresh parsley", + "honey", + "tomatillos", + "all-purpose flour", + "canola oil", + "salt and ground black pepper", + "lemon", + "red bell pepper", + "fresh cilantro", + "chili powder", + "rice vinegar", + "dried oregano" + ] + }, + { + "id": 23935, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "whipping cream", + "onions", + "fresh ginger", + "lime wedges", + "fat skimmed chicken broth", + "basmati rice", + "chili", + "chicken breasts", + "salt", + "( oz.) tomato paste", + "garam masala", + "butter", + "salad oil" + ] + }, + { + "id": 47669, + "cuisine": "french", + "ingredients": [ + "extra-virgin olive oil", + "haricots verts", + "purple onion", + "loosely packed fresh basil leaves", + "garlic cloves", + "fine sea salt" + ] + }, + { + "id": 16354, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "hoagie rolls", + "ham", + "shucked oysters", + "vegetable oil", + "low-fat tartar sauce", + "tomatoes", + "lemon wedge", + "dry bread crumbs", + "iceberg lettuce", + "large egg whites", + "all-purpose flour", + "lemon juice" + ] + }, + { + "id": 8938, + "cuisine": "british", + "ingredients": [ + "dried thyme", + "leeks", + "carrots", + "fresh chives", + "unsalted butter", + "large garlic cloves", + "chicken broth", + "tawny port", + "baking potatoes", + "bay leaf", + "stilton", + "half & half", + "chopped celery" + ] + }, + { + "id": 19654, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "baking soda", + "dark rum", + "vanilla extract", + "chopped pecans", + "lime juice", + "large eggs", + "butter", + "all-purpose flour", + "lime rind", + "bananas", + "baking powder", + "salt", + "fresh lime juice", + "brown sugar", + "fat free milk", + "cooking spray", + "sweetened coconut flakes", + "light cream cheese" + ] + }, + { + "id": 40565, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "rice vinegar", + "nori", + "sesame seeds", + "cucumber", + "water", + "imitation crab meat", + "avocado", + "white rice", + "white sugar" + ] + }, + { + "id": 38587, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "sea salt", + "crushed red pepper", + "grated Gruyère cheese", + "yellow squash", + "balsamic vinegar", + "yellow bell pepper", + "ciabatta", + "olive oil cooking spray", + "eggplant", + "large garlic cloves", + "extra-virgin olive oil", + "cayenne pepper", + "fresh parsley", + "Italian herbs", + "grated parmesan cheese", + "dry mustard", + "purple onion", + "mixed greens" + ] + }, + { + "id": 42033, + "cuisine": "british", + "ingredients": [ + "black pepper", + "dried thyme", + "flour", + "vegetable oil", + "chopped celery", + "onions", + "chopped garlic", + "pastry", + "chopped bell pepper", + "cayenne", + "onion powder", + "white cheddar cheese", + "cayenne pepper", + "dried oregano", + "water", + "garlic powder", + "green onions", + "vegetable shortening", + "salt", + "spicy pork sausage", + "eggs", + "milk", + "ground black pepper", + "baking powder", + "paprika", + "essence", + "long grain white rice" + ] + }, + { + "id": 16255, + "cuisine": "indian", + "ingredients": [ + "chile pepper", + "ginger paste", + "fresh tomatoes", + "salt", + "black peppercorns", + "vegetable oil", + "water", + "chicken" + ] + }, + { + "id": 38258, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "garlic", + "rice crackers", + "white vinegar", + "unsalted roasted peanuts", + "purple onion", + "canola oil", + "fish sauce", + "sesame seeds", + "carrots", + "Vietnamese coriander", + "dulong", + "fresh lime juice" + ] + }, + { + "id": 15036, + "cuisine": "thai", + "ingredients": [ + "beef", + "steak", + "vegetable oil", + "basil leaves", + "red chili peppers", + "oyster sauce" + ] + }, + { + "id": 21920, + "cuisine": "korean", + "ingredients": [ + "sambal ulek", + "sesame seeds", + "peeled fresh ginger", + "garlic cloves", + "top round steak", + "large eggs", + "dark sesame oil", + "shiitake mushroom caps", + "spinach", + "short-grain rice", + "rice vinegar", + "carrots", + "low sodium soy sauce", + "kosher salt", + "cooking spray", + "english cucumber" + ] + }, + { + "id": 21838, + "cuisine": "indian", + "ingredients": [ + "finely chopped onion", + "green peas", + "chopped cilantro", + "water", + "vegetable oil", + "ground coriander", + "ground cumin", + "fresh ginger", + "diced tomatoes", + "ground cayenne pepper", + "minced garlic", + "cheese cubes", + "salt", + "ground turmeric" + ] + }, + { + "id": 23874, + "cuisine": "southern_us", + "ingredients": [ + "ham hock", + "turnip greens", + "water", + "sugar" + ] + }, + { + "id": 5048, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "parmesan cheese", + "salt", + "eggs", + "light cream", + "ricotta cheese", + "chicken broth", + "olive oil", + "lasagna noodles", + "all-purpose flour", + "fresh basil", + "artichoke hearts", + "garlic" + ] + }, + { + "id": 35970, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chicken breasts", + "edamame", + "seasoning", + "shredded carrots", + "ginger", + "chopped cilantro", + "almonds", + "shredded lettuce", + "chow mein noodles", + "sugar", + "green onions", + "garlic", + "toasted sesame seeds" + ] + }, + { + "id": 2515, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "andouille chicken sausage", + "creole seasoning", + "olive oil", + "red beans", + "onions", + "dried thyme", + "bay leaves", + "cooked white rice", + "homemade chicken stock", + "Tabasco Green Pepper Sauce", + "worcestershire sauce", + "dried oregano" + ] + }, + { + "id": 24396, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "dried basil", + "garlic", + "italian seasoning", + "water", + "minced onion", + "sweet italian sausage", + "tomato sauce", + "ground black pepper", + "salt", + "fennel seeds", + "crushed tomatoes", + "lean ground beef", + "white sugar" + ] + }, + { + "id": 12850, + "cuisine": "irish", + "ingredients": [ + "finely chopped onion", + "salt", + "butter", + "bread flour", + "shredded cheddar cheese", + "buttermilk", + "baking powder", + "confectioners sugar" + ] + }, + { + "id": 19258, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "garlic", + "corn tortillas", + "pepper", + "chili powder", + "shredded cheese", + "cumin", + "reduced fat cream cheese", + "ranch dressing", + "salt", + "onions", + "guacamole", + "cilantro", + "sour cream" + ] + }, + { + "id": 34238, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dried parsley", + "black pepper", + "grated parmesan cheese", + "fresh spinach", + "large eggs", + "garlic salt", + "bread crumbs", + "ground beef" + ] + }, + { + "id": 27324, + "cuisine": "greek", + "ingredients": [ + "oil cured olives", + "freshly ground pepper", + "balsamic vinegar", + "capers", + "purple onion", + "olive oil", + "feta cheese crumbles" + ] + }, + { + "id": 29413, + "cuisine": "british", + "ingredients": [ + "fresh rosemary", + "coarse salt", + "extra-virgin olive oil", + "cucumber", + "large eggs", + "sea salt", + "freshly ground pepper", + "panko", + "lemon", + "all-purpose flour", + "ketchup", + "russet potatoes", + "malt vinegar", + "skinless cod fillets" + ] + }, + { + "id": 21959, + "cuisine": "british", + "ingredients": [ + "flour", + "salted butter", + "lemon", + "milk", + "baking powder", + "suet", + "dark brown sugar" + ] + }, + { + "id": 12302, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "coriander seeds", + "cilantro", + "smoked paprika", + "red chili peppers", + "peeled fresh ginger", + "peanut oil", + "unsweetened shredded dried coconut", + "garam masala", + "cayenne pepper", + "almond flour", + "sea salt", + "cumin seed" + ] + }, + { + "id": 40390, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "peeled fresh ginger", + "chopped onion", + "olive oil", + "vegetable broth", + "chopped walnuts", + "water", + "dry white wine", + "goat cheese", + "arborio rice", + "swiss chard", + "fine sea salt", + "beets" + ] + }, + { + "id": 10341, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "lemon zest", + "extra-virgin olive oil", + "fresh lemon juice", + "halibut fillets", + "red pepper flakes", + "ground coriander", + "swordfish steaks", + "large garlic cloves", + "salt", + "ground pepper", + "cilantro", + "cumin seed" + ] + }, + { + "id": 34384, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "salt", + "red chili powder", + "oil", + "luke warm water", + "all-purpose flour", + "chana dal", + "asafetida" + ] + }, + { + "id": 39507, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "whipping cream", + "fresh rosemary", + "butter", + "freshly ground pepper", + "dry white wine", + "cheese", + "rosemary sprigs", + "fresh green bean", + "garlic cloves" + ] + }, + { + "id": 16350, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "large eggs", + "garlic cloves", + "ground cumin", + "saffron threads", + "cuban peppers", + "fideos pasta", + "onions", + "black pepper", + "Turkish bay leaves", + "fresh parsley", + "chicken stock", + "olive oil", + "fine sea salt", + "boiling potatoes" + ] + }, + { + "id": 5982, + "cuisine": "greek", + "ingredients": [ + "powdered sugar", + "baking soda", + "baking powder", + "kosher salt", + "large eggs", + "extra-virgin olive oil", + "sugar", + "plain low fat greek yogurt", + "lemon", + "whole wheat flour", + "baking spray" + ] + }, + { + "id": 40912, + "cuisine": "russian", + "ingredients": [ + "honey", + "butter", + "all-purpose flour", + "pure vanilla extract", + "granulated sugar", + "extra large eggs", + "sour cream", + "baking soda", + "lemon", + "toasted walnuts", + "superfine sugar", + "dark rum", + "salt" + ] + }, + { + "id": 20033, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "cumin seed", + "chopped cilantro fresh", + "reduced sodium chicken broth", + "large garlic cloves", + "ancho chile pepper", + "kosher salt", + "deveined shrimp", + "onions", + "anise seed", + "vermicelli", + "sour cream" + ] + }, + { + "id": 2800, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "meyer lemon", + "onions", + "green olives", + "garlic cloves", + "ground cumin", + "ground cinnamon", + "paprika", + "chicken", + "olive oil", + "low salt chicken broth" + ] + }, + { + "id": 39270, + "cuisine": "chinese", + "ingredients": [ + "chili flakes", + "honey", + "ginger", + "toasted sesame seeds", + "red chili peppers", + "Shaoxing wine", + "garlic cloves", + "sesame", + "mixed mushrooms", + "rice vinegar", + "snow peas", + "chicken stock", + "soy sauce", + "green onions", + "corn starch" + ] + }, + { + "id": 2670, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "fresh parsley leaves", + "bread crumb fresh", + "heavy cream", + "unsalted butter", + "hot sauce", + "crab meat", + "worcestershire sauce", + "onions" + ] + }, + { + "id": 10028, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "chopped cilantro fresh", + "deveined shrimp", + "fresh lime juice", + "chili powder", + "corn tortillas", + "mango", + "purple onion", + "chipotle chile powder" + ] + }, + { + "id": 45566, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "tomatillos", + "green pepper", + "kosher salt", + "extra-virgin olive oil", + "cumin", + "black pepper", + "cilantro", + "onions", + "jalapeno chilies", + "garlic" + ] + }, + { + "id": 19021, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "lamb loin chops", + "prunes", + "extra-virgin olive oil", + "honey", + "salt", + "spices" + ] + }, + { + "id": 20790, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "tumeric", + "yoghurt", + "green chilies", + "bay leaf", + "clove", + "mint", + "mace", + "cilantro leaves", + "cardamom", + "onions", + "fennel seeds", + "garlic paste", + "leaves", + "rice", + "cinnamon sticks", + "peppercorns", + "red chili powder", + "water", + "star anise", + "oil", + "chicken pieces" + ] + }, + { + "id": 46654, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "linguine", + "green bell pepper", + "sun-dried tomatoes", + "sliced mushrooms", + "diced onions", + "olive oil", + "garlic cloves", + "pasta sauce", + "zucchini", + "red bell pepper" + ] + }, + { + "id": 10958, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "cracked black pepper", + "provolone cheese", + "eggs", + "baking powder", + "salt", + "white sugar", + "fresh rosemary", + "green onions", + "garlic", + "sun-dried tomatoes in oil", + "shortening", + "buttermilk", + "all-purpose flour" + ] + }, + { + "id": 20180, + "cuisine": "spanish", + "ingredients": [ + "chile pepper", + "baguette", + "sea salt", + "tomatoes", + "large garlic cloves", + "olive oil" + ] + }, + { + "id": 40836, + "cuisine": "italian", + "ingredients": [ + "kale", + "low salt chicken broth", + "large garlic cloves", + "olive oil", + "bread slices", + "crushed red pepper" + ] + }, + { + "id": 12987, + "cuisine": "japanese", + "ingredients": [ + "boneless chicken skinless thigh", + "lemon", + "scallions", + "fresh ginger", + "all-purpose flour", + "kosher salt", + "garlic", + "corn starch", + "soy sauce", + "ground black pepper", + "peanut oil" + ] + }, + { + "id": 41303, + "cuisine": "indian", + "ingredients": [ + "ground cardamom", + "plain yogurt", + "sugar", + "mango", + "milk" + ] + }, + { + "id": 22046, + "cuisine": "japanese", + "ingredients": [ + "ginger juice", + "vegetable oil", + "sake", + "soy sauce", + "sansho", + "green bell pepper", + "sugar", + "lemon slices", + "salmon fillets", + "mirin" + ] + }, + { + "id": 11035, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "olive oil", + "ginger", + "sliced mushrooms", + "chicken broth", + "pepper", + "shallots", + "salt", + "curry paste", + "soy sauce", + "garlic powder", + "garlic", + "coconut milk", + "tomatoes", + "lime", + "cilantro", + "shrimp" + ] + }, + { + "id": 47815, + "cuisine": "french", + "ingredients": [ + "1% low-fat milk", + "vanilla beans", + "sugar", + "large egg yolks" + ] + }, + { + "id": 40839, + "cuisine": "russian", + "ingredients": [ + "sugar", + "water", + "walnuts", + "pierogi", + "dried apricot", + "apricot brandy", + "unsalted butter", + "dough", + "bread crumb fresh", + "cinnamon" + ] + }, + { + "id": 27470, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "extra-virgin olive oil", + "fennel seeds", + "pork tenderloin", + "fresh lemon juice", + "reduced sodium chicken broth", + "dry white wine", + "fennel bulb", + "garlic cloves" + ] + }, + { + "id": 15653, + "cuisine": "italian", + "ingredients": [ + "garlic", + "pinenuts", + "fresh basil leaves", + "grated parmesan cheese", + "italian salad dressing", + "fresh parsley" + ] + }, + { + "id": 12086, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "peanut oil", + "red chili peppers", + "rice vinegar", + "pickling cucumbers", + "garlic cloves", + "szechwan peppercorns", + "cane sugar" + ] + }, + { + "id": 9692, + "cuisine": "greek", + "ingredients": [ + "bread", + "cheese spread", + "artichok heart marin", + "pitted kalamata olives", + "dried oregano", + "diced tomatoes" + ] + }, + { + "id": 9102, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "crushed red pepper", + "ground cumin", + "honey", + "ginger", + "onions", + "cream", + "sweet potatoes", + "chickpeas", + "olive oil", + "garlic", + "ground turmeric" + ] + }, + { + "id": 27032, + "cuisine": "filipino", + "ingredients": [ + "tomato sauce", + "vegetable oil", + "onions", + "chicken legs", + "fingerling potatoes", + "salt", + "fish sauce", + "bay leaves", + "red bell pepper", + "chicken stock", + "ground black pepper", + "garlic" + ] + }, + { + "id": 49591, + "cuisine": "indian", + "ingredients": [ + "water", + "yoghurt", + "peanut oil", + "ground cumin", + "ground cinnamon", + "fresh ginger root", + "margarine", + "onions", + "tomatoes", + "fresh cilantro", + "chile pepper", + "ground coriander", + "minced garlic", + "ground black pepper", + "cayenne pepper", + "ground turmeric" + ] + }, + { + "id": 11443, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "dry white wine", + "garlic cloves", + "olive oil", + "whipping cream", + "plum tomatoes", + "parsley sprigs", + "fresh tarragon", + "thyme sprigs", + "tomato paste", + "lobster", + "white wine vinegar" + ] + }, + { + "id": 27184, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "Italian parsley leaves", + "balsamic vinegar", + "chickpeas", + "baguette", + "extra-virgin olive oil", + "black pepper", + "clove garlic, fine chop" + ] + }, + { + "id": 23866, + "cuisine": "japanese", + "ingredients": [ + "chicken stock", + "shiitake", + "sake", + "fresh parsley", + "eggs", + "chicken breasts", + "soy sauce" + ] + }, + { + "id": 19742, + "cuisine": "korean", + "ingredients": [ + "asian pear", + "pear nectar", + "toasted sesame seeds", + "sugar", + "coarse salt", + "beef rib short", + "peeled fresh ginger", + "dark sesame oil", + "ground black pepper", + "garlic", + "scallions" + ] + }, + { + "id": 8452, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "olive oil", + "peeled fresh ginger", + "salt", + "chopped fresh mint", + "minced garlic", + "cooking spray", + "crushed red pepper", + "carrots", + "ground cumin", + "plain low-fat yogurt", + "ground black pepper", + "baking potatoes", + "ground coriander", + "chopped cilantro fresh", + "phyllo dough", + "finely chopped onion", + "green peas", + "fresh lemon juice", + "ground turmeric" + ] + }, + { + "id": 36454, + "cuisine": "southern_us", + "ingredients": [ + "boneless chicken skinless thigh", + "low sodium chicken broth", + "salt", + "black-eyed peas", + "bacon", + "water", + "sweet potatoes", + "onions", + "collard greens", + "ground black pepper", + "garlic" + ] + }, + { + "id": 45301, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "minced garlic", + "boneless skinless chicken breasts", + "cayenne pepper", + "cheddar cheese", + "kosher salt", + "olive oil", + "greek style plain yogurt", + "green bell pepper", + "black beans", + "fresh cilantro", + "chili powder", + "ground cumin", + "fire roasted diced tomatoes", + "mozzarella cheese", + "quinoa", + "yellow onion" + ] + }, + { + "id": 18987, + "cuisine": "chinese", + "ingredients": [ + "mirin", + "chinese five-spice powder", + "chili", + "salt", + "corn starch", + "sugar", + "corn oil", + "garlic cloves", + "fresh ginger", + "freshly ground pepper", + "large shrimp" + ] + }, + { + "id": 20347, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "cucumber", + "chopped garlic", + "coconut oil", + "salt", + "jeera", + "curry leaves", + "ginger", + "mustard seeds", + "grated coconut", + "green chilies", + "onions" + ] + }, + { + "id": 30050, + "cuisine": "russian", + "ingredients": [ + "tomato paste", + "rice", + "onions", + "vegetable oil", + "carrots", + "salt", + "ground beef", + "parsley sprigs", + "garlic cloves", + "cabbage" + ] + }, + { + "id": 24969, + "cuisine": "chinese", + "ingredients": [ + "fat free beef broth", + "water chestnuts", + "crushed red pepper", + "corn starch", + "olive oil", + "dry white wine", + "long-grain rice", + "low sodium soy sauce", + "peeled fresh ginger", + "baby carrots", + "bok choy", + "hoisin sauce", + "flank steak", + "garlic cloves" + ] + }, + { + "id": 25871, + "cuisine": "korean", + "ingredients": [ + "water", + "spring onions", + "toasted sesame seeds", + "pinenuts", + "rice cakes", + "onions", + "sugar", + "sesame seeds", + "watercress", + "chopped garlic", + "soy sauce", + "beef", + "toasted sesame oil" + ] + }, + { + "id": 26922, + "cuisine": "italian", + "ingredients": [ + "white wine", + "salt", + "fresh parsley", + "cannellini beans", + "bay leaf", + "water", + "lemon juice", + "extra-virgin olive oil", + "medium shrimp" + ] + }, + { + "id": 40278, + "cuisine": "japanese", + "ingredients": [ + "kale", + "orange juice", + "sesame oil", + "Japanese soy sauce", + "gomashio", + "miso" + ] + }, + { + "id": 23981, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "purple onion", + "fresh lime juice", + "seeds", + "frozen corn", + "chopped cilantro fresh", + "vine ripened tomatoes", + "red bell pepper", + "cooking spray", + "salt", + "chipotle peppers" + ] + }, + { + "id": 38238, + "cuisine": "italian", + "ingredients": [ + "water", + "fresh rosemary", + "gran marnier", + "sugar", + "lemon juice", + "lemon zest" + ] + }, + { + "id": 42476, + "cuisine": "indian", + "ingredients": [ + "sago", + "grated coconut", + "rice", + "salt", + "water", + "oil" + ] + }, + { + "id": 34855, + "cuisine": "russian", + "ingredients": [ + "seeds", + "red bell pepper", + "coriander seeds", + "cilantro sprigs", + "kosher salt", + "red wine vinegar", + "fresh basil leaves", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 4094, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame seeds", + "sesame oil", + "spinach", + "minced garlic", + "mushrooms", + "carrots", + "black pepper", + "bean thread vermicelli", + "corn syrup", + "sugar", + "olive oil", + "green onions", + "onions" + ] + }, + { + "id": 2451, + "cuisine": "thai", + "ingredients": [ + "sambal chile paste", + "soy sauce", + "peanut butter", + "sugar", + "rice vinegar", + "Thai chili paste", + "coconut milk" + ] + }, + { + "id": 28652, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "fresh parsley", + "clams", + "linguine", + "butter", + "onions", + "light sour cream", + "garlic cloves" + ] + }, + { + "id": 32061, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "grating cheese", + "sour cream", + "pepper jack", + "salsa", + "cheddar cheese", + "cilantro", + "corn tortillas", + "green onions", + "enchilada sauce" + ] + }, + { + "id": 24854, + "cuisine": "thai", + "ingredients": [ + "kosher salt", + "cilantro root", + "full fat coconut milk", + "Thai red curry paste", + "fresh ginger", + "large garlic cloves", + "black pepper", + "boneless skinless chicken breasts" + ] + }, + { + "id": 17631, + "cuisine": "indian", + "ingredients": [ + "water", + "tea bags", + "hot chocolate mix", + "milk" + ] + }, + { + "id": 47773, + "cuisine": "irish", + "ingredients": [ + "nutmeg", + "herbs", + "onions", + "milk", + "cayenne pepper", + "suet", + "oatmeal", + "pork blood", + "salt" + ] + }, + { + "id": 31478, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "lime juice", + "large eggs", + "garlic", + "red bell pepper", + "kosher salt", + "ground black pepper", + "chips", + "ground coriander", + "dried oregano", + "ground chicken", + "olive oil", + "jalapeno chilies", + "cilantro leaves", + "onions", + "grape tomatoes", + "store bought low sodium chicken stock", + "cayenne", + "tomatillos", + "cumin seed" + ] + }, + { + "id": 34856, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "olive oil", + "chopped onion", + "mayonaise", + "large garlic cloves", + "fresh basil", + "grated parmesan cheese", + "brown shrimp", + "bread crumb fresh", + "portabello mushroom" + ] + }, + { + "id": 31552, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "vegetable oil spray", + "chopped onion", + "ground cumin", + "chili", + "chili powder", + "corn tortillas", + "canned black beans", + "zucchini", + "garlic cloves", + "chopped tomatoes", + "vegetable broth", + "chopped cilantro fresh" + ] + }, + { + "id": 2112, + "cuisine": "italian", + "ingredients": [ + "cottage cheese", + "garlic powder", + "spaghetti squash", + "dried basil", + "grated parmesan cheese", + "mozzarella cheese", + "herbs", + "Italian turkey sausage", + "eggs", + "olive oil", + "marinara sauce" + ] + }, + { + "id": 19366, + "cuisine": "irish", + "ingredients": [ + "capers", + "crème fraîche", + "smoked salmon", + "unsalted butter", + "black pepper", + "country bread", + "eggs", + "purple onion" + ] + }, + { + "id": 43981, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "lime", + "boneless skinless chicken breasts", + "fish sauce", + "lemon grass", + "carrots", + "frozen edamame beans", + "fresh ginger", + "rice noodles", + "fresh cilantro", + "green onions", + "coconut milk" + ] + }, + { + "id": 2894, + "cuisine": "italian", + "ingredients": [ + "penne", + "fresh asparagus", + "lemon zest", + "extra-virgin olive oil", + "parmigiano reggiano cheese" + ] + }, + { + "id": 36108, + "cuisine": "indian", + "ingredients": [ + "clove", + "kosher salt", + "garam masala", + "cayenne pepper", + "cinnamon sticks", + "red chili peppers", + "fresh ginger", + "bay leaves", + "cumin seed", + "canola oil", + "tomatoes", + "water", + "ground black pepper", + "ground coriander", + "ground turmeric", + "green cardamom pods", + "plain yogurt", + "black-eyed peas", + "purple onion", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 47222, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "garlic", + "dri oregano leaves, crush", + "onions", + "grated parmesan cheese", + "red bell pepper", + "I Can't Believe It's Not Butter!® Spread" + ] + }, + { + "id": 38019, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "whole milk", + "all purpose unbleached flour", + "yellow bell pepper", + "bacon fat", + "black pepper", + "large eggs", + "red wine vinegar", + "loosely packed fresh basil leaves", + "salt", + "fresh mint", + "yellow corn meal", + "sherry vinegar", + "baking powder", + "Italian parsley leaves", + "extra-virgin olive oil", + "scallions", + "tomatoes", + "unsalted butter", + "kirby cucumbers", + "kalamata", + "purple onion", + "red bell pepper" + ] + }, + { + "id": 3916, + "cuisine": "indian", + "ingredients": [ + "peas", + "chicken broth low fat", + "tumeric", + "curry", + "quinoa" + ] + }, + { + "id": 44823, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "olive oil", + "red wine vinegar", + "chopped cilantro", + "soy sauce", + "ground nutmeg", + "purple onion", + "brown sugar", + "fresh ginger root", + "garlic", + "boneless skinless chicken breast halves", + "orange juice concentrate", + "ground cloves", + "habanero pepper", + "salt" + ] + }, + { + "id": 4219, + "cuisine": "italian", + "ingredients": [ + "peaches", + "hot water", + "almond paste", + "lemon juice", + "butter" + ] + }, + { + "id": 21084, + "cuisine": "thai", + "ingredients": [ + "rice sticks", + "balsamic vinegar", + "bok choy", + "macadamia nuts", + "napa cabbage", + "chopped cilantro fresh", + "fresh basil", + "green onions", + "cilantro sprigs", + "unsweetened coconut milk", + "olive oil", + "Thai red curry paste", + "large shrimp" + ] + }, + { + "id": 20435, + "cuisine": "spanish", + "ingredients": [ + "garbanzo beans", + "ginger", + "onions", + "soy sauce", + "whole peeled tomatoes", + "garlic", + "fresh spinach", + "sherry vinegar", + "extra-virgin olive oil", + "kosher salt", + "bay leaves", + "hot smoked paprika" + ] + }, + { + "id": 48863, + "cuisine": "italian", + "ingredients": [ + "orange bell pepper", + "yellow bell pepper", + "ground coriander", + "red bell pepper", + "cherry tomatoes", + "finely chopped fresh parsley", + "salt", + "fresh lemon juice", + "chopped fresh mint", + "olive oil", + "balsamic vinegar", + "grated lemon zest", + "leg of lamb", + "ground cumin", + "ground black pepper", + "purple onion", + "garlic cloves", + "flat leaf parsley" + ] + }, + { + "id": 44419, + "cuisine": "british", + "ingredients": [ + "sirloin", + "flour", + "salt", + "eggs", + "pepper", + "butter", + "onions", + "beef kidney", + "pastry", + "beef stock", + "garlic cloves", + "port wine", + "French mustard", + "worcestershire sauce" + ] + }, + { + "id": 30973, + "cuisine": "southern_us", + "ingredients": [ + "worcestershire sauce", + "garlic cloves", + "cajun seasoning", + "all-purpose flour", + "large shrimp", + "chicken broth", + "paprika", + "grits", + "butter", + "hot sauce", + "italian seasoning" + ] + }, + { + "id": 3415, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "garlic", + "onions", + "vinegar", + "green chilies", + "ground black pepper", + "coconut cream", + "chicken", + "fish sauce", + "cooking oil", + "coconut milk" + ] + }, + { + "id": 47274, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "1% low-fat milk", + "frozen hash browns", + "vegetable oil", + "large eggs", + "salt", + "black pepper", + "33% less sodium ham" + ] + }, + { + "id": 47393, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "salt", + "pepper", + "pimentos", + "fresh parsley", + "diced onions", + "grated parmesan cheese", + "ripe olives", + "olive oil", + "white wine vinegar", + "italian seasoning" + ] + }, + { + "id": 12190, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "milk", + "salt", + "onions", + "tumeric", + "hard-boiled egg", + "green chilies", + "red chili powder", + "chopped tomatoes", + "fenugreek seeds", + "canola oil", + "curry powder", + "pandanus leaf", + "cinnamon sticks" + ] + }, + { + "id": 34702, + "cuisine": "korean", + "ingredients": [ + "pepper", + "salt", + "dried chestnuts", + "ginseng", + "scallions", + "water", + "cornish hens", + "sweet rice", + "dates", + "garlic cloves" + ] + }, + { + "id": 45501, + "cuisine": "british", + "ingredients": [ + "dried currants", + "ground nutmeg", + "rum", + "raisins", + "ground allspice", + "fruitcake", + "sugar", + "glace cherries", + "dark rum", + "butter", + "free range egg", + "vanilla bean paste", + "vanilla essence", + "water", + "egg whites", + "almond extract", + "all-purpose flour", + "cranberries", + "dried cranberries", + "brown sugar", + "ground cloves", + "tawny port", + "baking powder", + "salt", + "mixed nuts", + "mixed peel" + ] + }, + { + "id": 45126, + "cuisine": "mexican", + "ingredients": [ + "water", + "paprika", + "ground beef", + "sugar", + "cooking oil", + "all-purpose flour", + "tomato sauce", + "garlic powder", + "salt", + "ground cumin", + "American cheese", + "chili powder", + "corn tortillas" + ] + }, + { + "id": 18285, + "cuisine": "chinese", + "ingredients": [ + "water", + "green onions", + "pepper sauce", + "black bean sauce", + "cilantro leaves", + "eggs", + "soy milk", + "vegetable oil", + "millet flour", + "cooking spray", + "crackers" + ] + }, + { + "id": 27080, + "cuisine": "greek", + "ingredients": [ + "cold water", + "paprika", + "salt", + "black pepper", + "garlic", + "lemon juice", + "parsley sprigs", + "extra-virgin olive oil", + "chickpeas", + "tahini", + "black olives", + "ground cumin" + ] + }, + { + "id": 39995, + "cuisine": "southern_us", + "ingredients": [ + "red pepper", + "garlic", + "pepper", + "bacon", + "onions", + "cooked rice", + "worcestershire sauce", + "salt", + "black-eyed peas", + "dry mustard" + ] + }, + { + "id": 5599, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "refrigerated piecrusts", + "creole seasoning", + "chicken broth", + "egg whites", + "peas", + "carrots", + "hash brown", + "butter", + "fresh mushrooms", + "milk", + "cooked chicken", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 11396, + "cuisine": "french", + "ingredients": [ + "orange", + "dry red wine", + "clove", + "framboise eau-de-vie", + "vanilla beans", + "sugar", + "lemon" + ] + }, + { + "id": 38915, + "cuisine": "british", + "ingredients": [ + "shortening", + "baking powder", + "semi-sweet chocolate morsels", + "eggs", + "baking soda", + "all-purpose flour", + "ground cinnamon", + "ground cloves", + "raisins", + "brown sugar", + "brewed coffee", + "chopped walnuts" + ] + }, + { + "id": 27782, + "cuisine": "russian", + "ingredients": [ + "unflavored gelatin", + "heavy cream", + "apricot jam", + "cold water", + "unsalted butter", + "cake flour", + "bittersweet chocolate", + "cream of tartar", + "large eggs", + "salt", + "unsweetened cocoa powder", + "sugar", + "vanilla", + "confectioners sugar" + ] + }, + { + "id": 38319, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dried basil", + "jumbo pasta shells", + "mozzarella cheese", + "ricotta cheese", + "tomato sauce", + "grated parmesan cheese", + "frozen chopped spinach", + "pepper", + "salt" + ] + }, + { + "id": 346, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "ground black pepper", + "garlic cloves", + "avocado", + "corn", + "red pepper", + "ground cumin", + "fresh cilantro", + "green onions", + "fresh lime juice", + "black beans", + "quinoa", + "extra-virgin olive oil" + ] + }, + { + "id": 19987, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "vegetable oil", + "onions", + "green onions", + "dried shiitake mushrooms", + "white sugar", + "asparagus", + "garlic", + "noodles", + "soy sauce", + "sesame oil", + "carrots" + ] + }, + { + "id": 42622, + "cuisine": "italian", + "ingredients": [ + "mussels", + "artichoke hearts", + "linguine", + "medium shrimp", + "crushed tomatoes", + "red pepper flakes", + "salt", + "pepper", + "sea scallops", + "garlic", + "clams", + "dried basil", + "extra-virgin olive oil", + "squid" + ] + }, + { + "id": 12759, + "cuisine": "italian", + "ingredients": [ + "cookies", + "granulated sugar", + "egg yolks", + "eggs", + "heavy whipping cream" + ] + }, + { + "id": 3756, + "cuisine": "italian", + "ingredients": [ + "white wine", + "butter", + "garlic", + "dried basil", + "cheese tortellini", + "pepper", + "portabello mushroom", + "salt", + "grated parmesan cheese", + "button mushrooms" + ] + }, + { + "id": 19412, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "iceberg lettuce", + "avocado", + "hellmann' or best food real mayonnais", + "small capers, rins and drain", + "vegetable oil", + "chopped cilantro fresh", + "flour tortillas", + "red bell pepper", + "frozen crabmeat, thaw and drain" + ] + }, + { + "id": 20238, + "cuisine": "thai", + "ingredients": [ + "light brown sugar", + "peanuts", + "vegetable oil", + "carrots", + "water", + "green onions", + "garlic", + "fresh lime juice", + "soy sauce", + "broccoli florets", + "cilantro sprigs", + "beansprouts", + "tofu", + "lime", + "rice noodles", + "crushed red pepper" + ] + }, + { + "id": 38471, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fatfree lowsodium chicken broth", + "dried oregano", + "fresh spinach", + "shell pasta", + "escarole", + "sausage casings", + "grated parmesan cheese", + "long-grain rice", + "minced garlic", + "quick-cooking barley", + "flat leaf parsley" + ] + }, + { + "id": 2888, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "large eggs", + "large egg yolks", + "milk", + "all-purpose flour" + ] + }, + { + "id": 30139, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "colby jack cheese", + "oil", + "lime", + "salt", + "cooked rice", + "cilantro", + "jalapeno chilies", + "tortilla chips" + ] + }, + { + "id": 16796, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "dried basil", + "linguine", + "capers", + "kalamata", + "dried oregano", + "tomatoes", + "olive oil", + "garlic cloves", + "mussels", + "hot red pepper flakes", + "dry red wine" + ] + }, + { + "id": 28556, + "cuisine": "filipino", + "ingredients": [ + "pork belly", + "vinegar", + "salt", + "tomatoes", + "water", + "thai chile", + "onions", + "pepper", + "shrimp paste", + "oil", + "sugar", + "eggplant", + "garlic" + ] + }, + { + "id": 34908, + "cuisine": "jamaican", + "ingredients": [ + "kosher salt", + "whole chicken", + "cinnamon", + "lime", + "allspice", + "brown sugar", + "cayenne pepper" + ] + }, + { + "id": 24943, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "salt", + "sake", + "mirin", + "white onion", + "chicken thighs", + "sugar", + "vegetable oil" + ] + }, + { + "id": 43693, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "vegetable oil", + "garlic cloves", + "onions", + "celery ribs", + "dried thyme", + "white rice", + "sausages", + "red kidney beans", + "Tabasco Pepper Sauce", + "hot sauce", + "bay leaf", + "water", + "coarse salt", + "ham" + ] + }, + { + "id": 27502, + "cuisine": "russian", + "ingredients": [ + "powdered sugar", + "baking soda", + "sour cream", + "eggs", + "honey", + "sweet biscuit crumbs", + "sugar", + "ground walnuts", + "liquid honey", + "butter-margarine blend", + "flour" + ] + }, + { + "id": 14798, + "cuisine": "japanese", + "ingredients": [ + "milk", + "rice flour", + "eggs", + "baking powder", + "unsalted butter", + "white sugar", + "sweet red bean paste", + "vanilla extract" + ] + }, + { + "id": 6964, + "cuisine": "italian", + "ingredients": [ + "red pepper flakes", + "flat leaf parsley", + "ground black pepper", + "salt", + "mushrooms", + "spaghettini", + "olive oil", + "garlic" + ] + }, + { + "id": 16055, + "cuisine": "greek", + "ingredients": [ + "clementines", + "spices", + "artichok heart marin", + "dry white wine", + "cornish game hens", + "olives" + ] + }, + { + "id": 49659, + "cuisine": "mexican", + "ingredients": [ + "corn", + "green pepper", + "diced tomatoes", + "corn tortillas", + "extra firm tofu", + "taco seasoning", + "diced onions", + "salt" + ] + }, + { + "id": 6184, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "cooking oil", + "lemon juice", + "fresh ginger", + "salt", + "chicken", + "water", + "large garlic cloves", + "ground turmeric", + "cayenne", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 22217, + "cuisine": "french", + "ingredients": [ + "flour", + "salt", + "onions", + "milk", + "chives", + "oil", + "oregano", + "ground nutmeg", + "butter", + "ground white pepper", + "fromage blanc", + "egg yolks", + "crème fraîche", + "hen of the woods" + ] + }, + { + "id": 22625, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "ricotta", + "unsalted butter", + "ground black pepper", + "fresh herbs", + "penne", + "lemon" + ] + }, + { + "id": 37009, + "cuisine": "filipino", + "ingredients": [ + "boneless chicken breast", + "oyster sauce", + "cabbage", + "pork", + "salt", + "onions", + "pepper", + "oil", + "large shrimp", + "chicken broth", + "garlic", + "carrots" + ] + }, + { + "id": 43436, + "cuisine": "brazilian", + "ingredients": [ + "light brown sugar", + "salted peanuts", + "manioc flour", + "sweetened condensed milk" + ] + }, + { + "id": 18620, + "cuisine": "filipino", + "ingredients": [ + "low sodium soy sauce", + "apple cider vinegar", + "jalapeno chilies", + "peppercorns", + "chicken legs", + "garlic", + "bay leaves" + ] + }, + { + "id": 11574, + "cuisine": "vietnamese", + "ingredients": [ + "minced ginger", + "dipping sauces", + "minced garlic", + "star anise", + "chicken", + "sugar", + "vegetable oil", + "chinese five-spice powder", + "soy sauce", + "sea salt", + "ground turmeric" + ] + }, + { + "id": 27736, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "okra", + "green bell pepper", + "diced tomatoes", + "onions", + "cajun seasoning", + "medium shrimp", + "andouille sausage", + "salt" + ] + }, + { + "id": 17160, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "cinnamon sticks", + "water", + "sugar", + "clove", + "quinces" + ] + }, + { + "id": 21588, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "jalapeno chilies", + "garlic", + "fresh lime juice", + "ground black pepper", + "green onions", + "tortilla chips", + "ground cumin", + "olive oil", + "low sodium chicken broth", + "salt", + "chopped cilantro", + "avocado", + "roma tomatoes", + "boneless skinless chicken breasts", + "sour cream" + ] + }, + { + "id": 12596, + "cuisine": "mexican", + "ingredients": [ + "picante sauce", + "pinto beans", + "cooking spray", + "chopped cilantro fresh", + "large eggs", + "corn tortillas", + "ketchup", + "salt" + ] + }, + { + "id": 18432, + "cuisine": "british", + "ingredients": [ + "parsnips", + "garlic", + "whipping cream", + "butter", + "ground nutmeg" + ] + }, + { + "id": 17060, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "chili powder", + "salt", + "bay leaf", + "whole peeled tomatoes", + "vegetable oil", + "enchilada sauce", + "onions", + "chicken broth", + "cooked chicken", + "garlic", + "corn tortillas", + "cumin", + "water", + "chile pepper", + "frozen corn", + "chopped cilantro" + ] + }, + { + "id": 34810, + "cuisine": "french", + "ingredients": [ + "chuck roast", + "bacon slices", + "baby carrots", + "black pepper", + "shallots", + "all-purpose flour", + "shiitake mushroom caps", + "medium egg noodles", + "salt", + "garlic cloves", + "dried thyme", + "dry red wine", + "beef broth" + ] + }, + { + "id": 12378, + "cuisine": "french", + "ingredients": [ + "grated parmesan cheese", + "sea salt", + "ground black pepper", + "baking powder", + "black olives", + "olive oil", + "basil leaves", + "garlic", + "large eggs", + "all purpose unbleached flour", + "red bell pepper" + ] + }, + { + "id": 18694, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "soy sauce", + "cooked white rice", + "minced garlic", + "onions", + "eggs", + "peas" + ] + }, + { + "id": 22968, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "grated parmesan cheese", + "salt", + "italian sausage", + "olive oil", + "leeks", + "garlic cloves", + "eggs", + "swiss chard", + "butter", + "fresh parsley", + "pepper", + "potatoes", + "all-purpose flour" + ] + }, + { + "id": 33491, + "cuisine": "italian", + "ingredients": [ + "quahog clams", + "garlic cloves", + "water", + "crushed red pepper", + "plum tomatoes", + "vidalia onion", + "linguine", + "fresh parsley", + "olive oil", + "salt" + ] + }, + { + "id": 29104, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "bittersweet chocolate", + "sugar", + "heavy cream", + "kosher salt", + "creamy peanut butter", + "peanut brittle", + "egg yolks" + ] + }, + { + "id": 41573, + "cuisine": "indian", + "ingredients": [ + "bread crumbs", + "salt", + "eggs", + "potatoes", + "coriander", + "pepper", + "oil", + "garlic paste", + "boneless chicken" + ] + }, + { + "id": 31100, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "low sodium chicken broth", + "cilantro leaves", + "chicken", + "corn tortilla chips", + "cherry tomatoes", + "garlic", + "ancho chile pepper", + "tomatoes", + "jack cheese", + "green onions", + "ground coriander", + "sugar", + "jalapeno chilies", + "salt", + "cumin" + ] + }, + { + "id": 21586, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "paprika", + "cayenne pepper", + "chicken livers", + "ground cumin", + "mustard", + "bay leaves", + "chopped celery", + "rice", + "dried leaves oregano", + "chopped green bell pepper", + "ground pork", + "dri leav thyme", + "onions", + "chicken broth", + "green onions", + "salt", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 10087, + "cuisine": "vietnamese", + "ingredients": [ + "pepper", + "onions", + "salt", + "cabbage", + "olive oil", + "cooked chicken breasts", + "lemon juice" + ] + }, + { + "id": 6033, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "fresh orange juice", + "spaghettini", + "olive oil", + "red wine vinegar", + "cucumber", + "dijon mustard", + "salt", + "chopped fresh mint", + "tuna steaks", + "lemon juice", + "grated orange" + ] + }, + { + "id": 26500, + "cuisine": "indian", + "ingredients": [ + "salt", + "lemon juice", + "sugar", + "roasted peanuts", + "green chilies", + "coriander", + "bananas", + "oil" + ] + }, + { + "id": 46317, + "cuisine": "southern_us", + "ingredients": [ + "duck fat", + "all-purpose flour", + "buttermilk", + "baking powder", + "baking soda", + "salt" + ] + }, + { + "id": 36809, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "oil", + "red lentils", + "garam masala", + "fresh coriander", + "carrots", + "red chili peppers", + "salt" + ] + }, + { + "id": 32299, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "mushrooms", + "firm tofu", + "soy sauce", + "ginger", + "coconut milk", + "lemongrass", + "vegetable broth", + "fresh lime juice", + "fresh cilantro", + "salt", + "curry paste" + ] + }, + { + "id": 29675, + "cuisine": "british", + "ingredients": [ + "warm water", + "porridge oats", + "plain flour", + "whole wheat flour", + "milk", + "yeast", + "sugar", + "salt" + ] + }, + { + "id": 13130, + "cuisine": "mexican", + "ingredients": [ + "fresh lime juice", + "sugar", + "fresh pineapple" + ] + }, + { + "id": 18089, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetables", + "provolone cheese", + "pepperoni slices", + "salami", + "pimentos", + "Italian bread", + "olive oil", + "crushed red pepper" + ] + }, + { + "id": 47118, + "cuisine": "indian", + "ingredients": [ + "eggplant", + "salt", + "asafoetida powder", + "jaggery", + "fresh curry leaves", + "chile pepper", + "cumin seed", + "onions", + "ground red pepper", + "tamarind paste", + "dried red chile peppers", + "ground turmeric", + "water", + "vegetable oil", + "mustard seeds", + "white sugar" + ] + }, + { + "id": 16403, + "cuisine": "indian", + "ingredients": [ + "soda", + "oil", + "water", + "fenugreek seeds", + "jaggery", + "urad dal", + "ground cardamom", + "parboiled rice", + "rice" + ] + }, + { + "id": 14255, + "cuisine": "japanese", + "ingredients": [ + "kale", + "soba noodles", + "soy sauce", + "shallots", + "toasted sesame seeds", + "mirin", + "carrots", + "water", + "genmai miso", + "nori" + ] + }, + { + "id": 37556, + "cuisine": "russian", + "ingredients": [ + "pepper", + "butter", + "carrots", + "tomatoes", + "potatoes", + "salt", + "onions", + "turnips", + "red cabbage", + "non-fat sour cream", + "chopped parsley", + "cider vinegar", + "vegetable stock", + "beets" + ] + }, + { + "id": 23081, + "cuisine": "chinese", + "ingredients": [ + "tofu", + "water chestnuts", + "oyster mushrooms", + "carrots", + "olive oil", + "green onions", + "sauce", + "fresh ginger", + "sesame oil", + "garlic cloves", + "toasted peanuts", + "lettuce leaves", + "tamari soy sauce", + "rice paper" + ] + }, + { + "id": 5480, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "all-purpose flour", + "eggs", + "baking powder", + "chicken bouillon granules", + "milk", + "chicken", + "shortening", + "salt" + ] + }, + { + "id": 25621, + "cuisine": "southern_us", + "ingredients": [ + "cream of chicken soup", + "onions", + "whole kernel corn, drain", + "boneless skinless chicken breasts", + "cheddar cheese", + "yellow rice" + ] + }, + { + "id": 34615, + "cuisine": "italian", + "ingredients": [ + "beef", + "beef broth", + "elbow pasta", + "stewed tomatoes", + "carrots", + "dried oregano", + "lean ground meat", + "yellow onion", + "celery", + "kosher salt", + "garlic", + "sliced mushrooms" + ] + }, + { + "id": 29798, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "whole milk", + "coffee", + "corn starch", + "vanilla beans", + "coffee beans", + "egg yolks" + ] + }, + { + "id": 29501, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "napa cabbage", + "salt", + "orange juice concentrate", + "pork tenderloin", + "extra-virgin olive oil", + "adobo sauce", + "water", + "large garlic cloves", + "cilantro leaves", + "slivered almonds", + "chili powder", + "plums" + ] + }, + { + "id": 25056, + "cuisine": "russian", + "ingredients": [ + "rye bread", + "yeast", + "raisins", + "white sugar", + "mint leaves" + ] + }, + { + "id": 4084, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "baby potatoes", + "sea salt", + "butter", + "curry powder", + "curry leaf" + ] + }, + { + "id": 33588, + "cuisine": "greek", + "ingredients": [ + "pure vanilla", + "greek style plain yogurt", + "honey" + ] + }, + { + "id": 10064, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "large eggs", + "scallions", + "fresh ginger", + "rice vinegar", + "reduced sodium chicken broth", + "crushed red pepper", + "corn starch", + "shiitake", + "firm tofu" + ] + }, + { + "id": 9060, + "cuisine": "mexican", + "ingredients": [ + "clove", + "fresh thyme", + "epazote", + "cumin seed", + "masa", + "black peppercorns", + "jalapeno chilies", + "hoja santa leaves", + "garlic cloves", + "water", + "tomatillos", + "white beans", + "onions", + "fresh marjoram", + "pork loin", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 5441, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "instant espresso powder", + "unsweetened cocoa powder", + "vanilla beans", + "dark brown sugar", + "cream sweeten whip", + "coffee liqueur", + "milk", + "bittersweet chocolate" + ] + }, + { + "id": 31370, + "cuisine": "irish", + "ingredients": [ + "brown sugar", + "water", + "malt vinegar", + "cipollini", + "red chili peppers", + "cream sherry", + "fennel seeds", + "rosemary sprigs", + "sherry vinegar", + "mustard seeds", + "black peppercorns", + "kosher salt", + "bay leaves" + ] + }, + { + "id": 34939, + "cuisine": "korean", + "ingredients": [ + "pepper", + "bean paste", + "oil", + "cabbage", + "potato starch", + "udon", + "ginger", + "cucumber", + "chicken stock", + "zucchini", + "rice wine", + "oyster sauce", + "sugar", + "pork loin", + "salt", + "onions" + ] + }, + { + "id": 45994, + "cuisine": "greek", + "ingredients": [ + "pepper", + "red wine vinegar", + "dried dillweed", + "onions", + "tomatoes", + "sliced cucumber", + "boneless skinless chicken", + "greek yogurt", + "clove", + "pitas", + "salt", + "cucumber", + "white vinegar", + "olive oil", + "lemon", + "lemon juice", + "dried oregano" + ] + }, + { + "id": 10574, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "large eggs", + "vegetable oil", + "chuno sauce", + "other vegetables", + "condiments", + "all-purpose flour", + "ketchup", + "bonito flakes", + "salt", + "cold water", + "Sriracha", + "meat", + "cabbage" + ] + }, + { + "id": 29121, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "heavy cream", + "baking powder", + "salt" + ] + }, + { + "id": 33932, + "cuisine": "french", + "ingredients": [ + "ground ginger", + "sugar", + "vegetable oil spray", + "large eggs", + "salt", + "grated orange peel", + "whole wheat flour", + "unsalted butter", + "apples", + "ground white pepper", + "vanilla ice cream", + "honey", + "ground nutmeg", + "buttermilk", + "ground coriander", + "ground cinnamon", + "ground cloves", + "baking soda", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 15581, + "cuisine": "japanese", + "ingredients": [ + "english cucumber", + "water", + "soy sauce", + "toasted sesame seeds", + "rice vinegar" + ] + }, + { + "id": 7771, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "baking powder", + "fine sea salt", + "corn tortillas", + "cumin", + "whitefish fillets", + "red cabbage", + "vegetable oil", + "smoked paprika", + "coriander", + "kosher salt", + "ground black pepper", + "lime wedges", + "all-purpose flour", + "chopped cilantro", + "lime juice", + "ale", + "chees fresco queso", + "sour cream", + "serrano chile" + ] + }, + { + "id": 46555, + "cuisine": "japanese", + "ingredients": [ + "sea salt", + "salmon fillets", + "sake", + "lemon wedge" + ] + }, + { + "id": 46743, + "cuisine": "greek", + "ingredients": [ + "honey", + "phyllo", + "granulated sugar", + "confectioners sugar", + "unsalted butter", + "strawberries", + "heavy cream" + ] + }, + { + "id": 9308, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "bulgur", + "plum tomatoes", + "grape leaves", + "mint sprigs", + "fresh lemon juice", + "green onions", + "dill tips", + "ground cumin", + "fresh dill", + "extra-virgin olive oil", + "chopped fresh mint" + ] + }, + { + "id": 31479, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "vegetable oil", + "cornmeal", + "flour", + "salt", + "large eggs", + "1% low-fat milk", + "corn kernel whole", + "light butter", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 3035, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dry white wine", + "water", + "cooking spray", + "fresh rosemary", + "ground black pepper", + "salt", + "fat free less sodium chicken broth", + "pork tenderloin", + "garlic cloves" + ] + }, + { + "id": 43424, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "chicken stock", + "chili powder", + "cumin", + "tomato paste", + "garlic", + "flour", + "oregano" + ] + }, + { + "id": 6694, + "cuisine": "mexican", + "ingredients": [ + "low-fat sour cream", + "cooking spray", + "boneless skinless chicken breast halves", + "cherry tomatoes", + "chopped onion", + "chipotle sauce", + "cider vinegar", + "salt", + "chopped cilantro fresh", + "flour tortillas", + "fresh lime juice", + "ground cumin" + ] + }, + { + "id": 13484, + "cuisine": "irish", + "ingredients": [ + "granulated sugar", + "cooking apples", + "ground cloves", + "butter", + "eggs", + "self rising flour", + "milk", + "salt" + ] + }, + { + "id": 33150, + "cuisine": "japanese", + "ingredients": [ + "pork belly", + "salt", + "seaweed", + "mayonaise", + "dashi", + "all-purpose flour", + "beni shoga", + "soy sauce", + "green onions", + "sauce", + "cabbage", + "eggs", + "Japanese mountain yam", + "dried bonito flakes", + "oil" + ] + }, + { + "id": 5704, + "cuisine": "japanese", + "ingredients": [ + "water", + "garlic", + "baby portobello mushrooms", + "beef bouillon granules", + "celery", + "chicken stock", + "fresh ginger root", + "carrots", + "fresh chives", + "fresh shiitake mushrooms", + "onions" + ] + }, + { + "id": 17622, + "cuisine": "southern_us", + "ingredients": [ + "all-purpose flour", + "shortening", + "chicken", + "ground black pepper", + "salt" + ] + }, + { + "id": 2813, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "chopped pecans", + "brown sugar", + "salt", + "unsalted butter", + "cream", + "all-purpose flour" + ] + }, + { + "id": 44374, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "onions", + "dried sage", + "ground white pepper", + "garlic cloves", + "tuna packed in olive oil", + "white kidney beans" + ] + }, + { + "id": 45446, + "cuisine": "british", + "ingredients": [ + "white flour", + "sausages", + "salt", + "eggs", + "oil", + "milk" + ] + }, + { + "id": 18339, + "cuisine": "british", + "ingredients": [ + "bananas", + "sweetened condensed milk", + "butter", + "milk chocolate pieces", + "double cream", + "digestive biscuit" + ] + }, + { + "id": 6693, + "cuisine": "french", + "ingredients": [ + "granulated sugar", + "vanilla extract", + "unsweetened cocoa powder", + "water", + "baking powder", + "all-purpose flour", + "eggs", + "egg whites", + "salt", + "baking soda", + "vegetable oil", + "mousse" + ] + }, + { + "id": 13799, + "cuisine": "chinese", + "ingredients": [ + "light brown sugar", + "ground pepper", + "red pepper flakes", + "snow peas", + "large egg whites", + "vegetable oil", + "corn starch", + "fresh ginger", + "coarse salt", + "long grain brown rice", + "soy sauce", + "boneless skinless chicken breasts", + "garlic cloves" + ] + }, + { + "id": 9860, + "cuisine": "indian", + "ingredients": [ + "fennel", + "chopped cilantro", + "tofu", + "spices", + "dried cranberries", + "pistachios", + "onions", + "olive oil", + "salt" + ] + }, + { + "id": 22253, + "cuisine": "thai", + "ingredients": [ + "lime rind", + "ground pepper", + "sweet potatoes", + "maple syrup", + "oil", + "coconut milk", + "tumeric", + "lemongrass", + "ground nutmeg", + "cinnamon", + "ground coriander", + "garlic cloves", + "curry paste", + "ground cloves", + "fresh ginger root", + "shallots", + "roasted peanuts", + "cardamom", + "dried red chile peppers", + "soy sauce", + "lime", + "extra firm tofu", + "fresh green bean", + "scallions", + "red bell pepper", + "cumin" + ] + }, + { + "id": 2043, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "all-purpose flour", + "garlic cloves", + "medium shrimp", + "vegetable oil", + "freshly ground pepper", + "red bell pepper", + "andouille sausage", + "cayenne pepper", + "thyme", + "onions", + "celery ribs", + "salt", + "scallions", + "flat leaf parsley" + ] + }, + { + "id": 41446, + "cuisine": "italian", + "ingredients": [ + "sausage links", + "dry white wine", + "carrots", + "chicken stock", + "ground black pepper", + "extra-virgin olive oil", + "onions", + "parsnips", + "italian plum tomatoes", + "salt", + "italian seasoning", + "barley", + "swiss chard", + "crimini mushrooms", + "celery" + ] + }, + { + "id": 22832, + "cuisine": "italian", + "ingredients": [ + "pesto sauce", + "ziti", + "peeled tomatoes", + "hot Italian sausages", + "spinach leaves", + "grated parmesan cheese", + "onions", + "mozzarella cheese", + "large garlic cloves" + ] + }, + { + "id": 2108, + "cuisine": "french", + "ingredients": [ + "water", + "fresh thyme", + "grated Gruyère cheese", + "ground black pepper", + "fine sea salt", + "parmesan cheese", + "large eggs", + "white wine", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 10991, + "cuisine": "mexican", + "ingredients": [ + "jicama", + "red bell pepper", + "orange", + "purple onion", + "baby spinach", + "sesame seeds", + "vinaigrette" + ] + }, + { + "id": 40127, + "cuisine": "chinese", + "ingredients": [ + "spring onions", + "corn", + "maldon sea salt", + "salt", + "fresh ginger root", + "oil" + ] + }, + { + "id": 36231, + "cuisine": "italian", + "ingredients": [ + "green olives", + "dried rosemary", + "white vinegar", + "dried thyme", + "pitted kalamata olives", + "fennel seeds", + "bay leaves" + ] + }, + { + "id": 11561, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "sugar", + "toasted sesame seeds", + "salmon fillets", + "scallions", + "sake", + "mirin" + ] + }, + { + "id": 1098, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "basil", + "onions", + "ground black pepper", + "gnocchi", + "asiago", + "flat leaf parsley", + "fennel", + "red bell pepper" + ] + }, + { + "id": 3197, + "cuisine": "mexican", + "ingredients": [ + "chip plain tortilla", + "onions", + "pork", + "rice", + "tomato purée", + "vegetable oil", + "chopped tomatoes", + "fresh parsley" + ] + }, + { + "id": 32325, + "cuisine": "mexican", + "ingredients": [ + "corn husks", + "heavy cream", + "fresh cilantro", + "granulated sugar", + "salt", + "mayonaise", + "unsalted butter", + "cheese", + "lime", + "chili powder" + ] + }, + { + "id": 5611, + "cuisine": "korean", + "ingredients": [ + "pepper flakes", + "water", + "green onions", + "green chilies", + "red chili peppers", + "eggplant", + "garlic", + "sugar", + "sesame seeds", + "apple cider vinegar", + "onions", + "ice cubes", + "soy sauce", + "vinegar", + "salt" + ] + }, + { + "id": 45636, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "artichokes", + "tomatoes", + "parsley", + "green onions", + "feta cheese crumbles", + "pita bread", + "kalamata" + ] + }, + { + "id": 26221, + "cuisine": "italian", + "ingredients": [ + "KRAFT Shredded Low-Moisture Part-Skim Mozzarella Cheese", + "water", + "pasta sauce", + "penne pasta", + "lean ground beef" + ] + }, + { + "id": 30476, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "vegetable oil", + "string cheese", + "garlic cloves", + "tomatoes", + "flour", + "white onion", + "zucchini blossoms" + ] + }, + { + "id": 48375, + "cuisine": "korean", + "ingredients": [ + "chile paste", + "sesame oil", + "ginger", + "pears", + "granulated sugar", + "sea salt", + "rice vinegar", + "ground black pepper", + "grapeseed oil", + "sweet pepper", + "green cabbage", + "enokitake", + "fresh orange juice", + "scallions" + ] + }, + { + "id": 3665, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "top sirloin steak", + "garlic", + "molasses", + "buttermilk", + "pinto beans", + "collard greens", + "flour", + "bacon", + "ketchup", + "lemon", + "ground mustard" + ] + }, + { + "id": 27689, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "flour", + "poultry seasoning", + "celery ribs", + "milk", + "baking powder", + "onions", + "chicken broth", + "olive oil", + "salt", + "white wine", + "boneless skinless chicken breasts", + "carrots" + ] + }, + { + "id": 43067, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "mozzarella cheese", + "hot Italian sausages", + "white bread", + "large garlic cloves", + "grated parmesan cheese" + ] + }, + { + "id": 24797, + "cuisine": "italian", + "ingredients": [ + "beefsteak tomatoes", + "mozzarella cheese", + "Italian bread", + "fresh basil", + "extra-virgin olive oil", + "smoked sea salt" + ] + }, + { + "id": 8684, + "cuisine": "indian", + "ingredients": [ + "sesame oil", + "dried red chile peppers", + "sesame seeds", + "salt" + ] + }, + { + "id": 20206, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "self rising flour", + "brown sugar", + "vanilla extract", + "granulated sugar", + "applesauce", + "pecans", + "butter" + ] + }, + { + "id": 43073, + "cuisine": "greek", + "ingredients": [ + "pocket bread", + "dried thyme", + "garlic", + "lemon juice", + "bamboo shoots", + "brandy", + "vegetable oil", + "purple onion", + "cucumber", + "dried rosemary", + "tomatoes", + "ground black pepper", + "lamb shoulder", + "feta cheese crumbles", + "dried oregano", + "plain yogurt", + "shredded lettuce", + "salt", + "marjoram" + ] + }, + { + "id": 13957, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "heavy cream", + "shrimp", + "andouille sausage", + "cajun seasoning", + "sauce", + "grits", + "chicken broth", + "shredded extra sharp cheddar cheese", + "salt", + "smoked gouda", + "water", + "butter", + "garlic cloves", + "chicken" + ] + }, + { + "id": 33599, + "cuisine": "italian", + "ingredients": [ + "framboise eau-de-vie", + "vanilla extract", + "fresh mint", + "sugar", + "coffee", + "cream cheese", + "powdered sugar", + "instant espresso powder", + "all-purpose flour", + "raspberries", + "extra large eggs", + "finely ground coffee" + ] + }, + { + "id": 18975, + "cuisine": "moroccan", + "ingredients": [ + "fresh cilantro", + "pumpkin", + "salt", + "carrots", + "chicken stock", + "lamb sausage", + "paprika", + "chickpeas", + "ground cinnamon", + "zucchini", + "ginger", + "garlic cloves", + "turnips", + "olive oil", + "golden raisins", + "yellow onion", + "couscous" + ] + }, + { + "id": 34413, + "cuisine": "moroccan", + "ingredients": [ + "eggplant", + "diced tomatoes", + "carrots", + "ground cumin", + "yellow squash", + "cooking spray", + "salt", + "red bell pepper", + "pepper", + "dried apricot", + "vegetable broth", + "thyme", + "olive oil", + "cinnamon", + "cilantro leaves", + "couscous" + ] + }, + { + "id": 44200, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "Sriracha", + "Maggi", + "fish sauce", + "water", + "salt", + "oil", + "eggs", + "ketchup", + "boneless skinless chicken breasts", + "dark sesame oil", + "sugar", + "garlic powder", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 28480, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "kidney beans", + "cajun seasoning", + "chopped onion", + "minced garlic", + "bay leaves", + "bacon", + "chicken broth", + "olive oil", + "green onions", + "salt", + "andouille sausage", + "chopped green bell pepper", + "worcestershire sauce", + "smoked ham hocks" + ] + }, + { + "id": 21863, + "cuisine": "italian", + "ingredients": [ + "sugar", + "lasagna noodles", + "diced tomatoes", + "fresh parsley", + "italian sausage", + "dried basil", + "ricotta cheese", + "salt", + "pepper", + "grated parmesan cheese", + "beaten eggs", + "onions", + "tomato paste", + "part-skim mozzarella cheese", + "red pepper flakes", + "garlic cloves" + ] + }, + { + "id": 26359, + "cuisine": "french", + "ingredients": [ + "black peppercorns", + "salt", + "shallots", + "red wine vinegar", + "dry white wine" + ] + }, + { + "id": 19594, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "onion powder", + "mustard powder", + "light brown sugar", + "granulated sugar", + "light corn syrup", + "water", + "apple cider vinegar", + "fresh lemon juice", + "ground black pepper", + "worcestershire sauce" + ] + }, + { + "id": 97, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "tomatoes with juice", + "black pepper", + "cooking spray", + "garlic cloves", + "kosher salt", + "beefsteak tomatoes", + "dried oregano", + "low sodium chicken broth", + "penne pasta" + ] + }, + { + "id": 18173, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "taco seasoning", + "orange juice concentrate", + "jalapeno chilies", + "fresh pineapple", + "mandarin orange segments", + "corn tortillas", + "whitefish", + "shredded lettuce" + ] + }, + { + "id": 4133, + "cuisine": "chinese", + "ingredients": [ + "egg roll wrappers", + "rice vinegar", + "onions", + "honey", + "vegetable oil", + "mung bean sprouts", + "soy sauce", + "sesame oil", + "carrots", + "fresh ginger", + "clove garlic, fine chop", + "ground beef" + ] + }, + { + "id": 15195, + "cuisine": "russian", + "ingredients": [ + "sorrel", + "ground pepper", + "yellow onion", + "cream", + "fresh thyme", + "celery", + "starchy potatoes", + "unsalted butter", + "carrots", + "kosher salt", + "vegetable broth", + "basmati rice" + ] + }, + { + "id": 1175, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "butter", + "cornmeal", + "white vinegar", + "refrigerated piecrusts", + "all-purpose flour", + "milk", + "vanilla extract" + ] + }, + { + "id": 10581, + "cuisine": "brazilian", + "ingredients": [ + "tapioca flour", + "salt", + "water", + "mozzarella cheese", + "eggs", + "vegetable oil" + ] + }, + { + "id": 1432, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "egg whites", + "garlic", + "corn starch", + "honey", + "sesame oil", + "broccoli", + "cooked brown rice", + "boneless skinless chicken breasts", + "rice vinegar", + "reduced sodium soy sauce", + "vegetable oil", + "scallions" + ] + }, + { + "id": 24779, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "white wine vinegar", + "chopped fresh chives", + "small red potato", + "olive oil", + "shallots", + "fresh parsley", + "radishes", + "salt" + ] + }, + { + "id": 46363, + "cuisine": "chinese", + "ingredients": [ + "water chestnuts", + "vegetable oil", + "corn starch", + "low sodium soy sauce", + "green onions", + "dry sherry", + "peeled fresh ginger", + "large garlic cloves", + "bok choy", + "extra firm tofu", + "sesame oil", + "crushed red pepper" + ] + }, + { + "id": 33403, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "ground cumin", + "cayenne pepper", + "mint leaves", + "plain yogurt", + "hothouse cucumber" + ] + }, + { + "id": 24790, + "cuisine": "italian", + "ingredients": [ + "minced onion", + "worcestershire sauce", + "medium shrimp", + "angel hair", + "butter", + "salt", + "avocado", + "dry white wine", + "garlic", + "fresh parsley", + "black pepper", + "asiago", + "lemon juice" + ] + }, + { + "id": 40857, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "bell pepper", + "garlic", + "tomato paste", + "fresh cilantro", + "chicken drumsticks", + "curry powder", + "yukon gold potatoes", + "coconut milk", + "kosher salt", + "sweet onion", + "ginger" + ] + }, + { + "id": 12015, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "olive oil", + "whipping cream", + "angel hair", + "shallots", + "lobster", + "cognac" + ] + }, + { + "id": 35937, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "shredded Monterey Jack cheese", + "tortillas", + "enchilada sauce", + "fresh cilantro", + "buffalo sauce", + "green onions", + "gorgonzola" + ] + }, + { + "id": 40633, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "sherry wine vinegar", + "white wine vinegar", + "red bell pepper", + "dried thyme", + "dijon mustard", + "button mushrooms", + "garlic cloves", + "honey", + "bay leaves", + "chile de arbol", + "fresh parsley leaves", + "white onion", + "shiitake", + "worcestershire sauce", + "oyster mushrooms" + ] + }, + { + "id": 44732, + "cuisine": "brazilian", + "ingredients": [ + "lemon", + "licor 43", + "ice", + "sugar", + "light rum" + ] + }, + { + "id": 46344, + "cuisine": "irish", + "ingredients": [ + "white vinegar", + "green onions", + "corned beef", + "mayonaise", + "celery seed", + "red potato", + "chopped celery", + "hard-boiled egg", + "pickle relish" + ] + }, + { + "id": 23178, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "olive oil", + "anise", + "sugar", + "beef shank", + "salt", + "five spice", + "fresh ginger", + "garlic", + "light soy sauce", + "Shaoxing wine" + ] + }, + { + "id": 47882, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "garlic cloves", + "chinese mustard", + "red pepper flakes", + "sesame oil", + "lemon juice", + "soy sauce", + "seasoned rice wine vinegar" + ] + }, + { + "id": 7550, + "cuisine": "japanese", + "ingredients": [ + "miso paste", + "wood ear mushrooms", + "tofu", + "scallions", + "vegetable stock", + "soy sauce", + "konbu" + ] + }, + { + "id": 10139, + "cuisine": "italian", + "ingredients": [ + "lemon rind", + "vodka", + "sugar", + "water" + ] + }, + { + "id": 3065, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "shredded cheddar cheese", + "chopped fresh sage", + "whole milk", + "plain low fat greek yogurt" + ] + }, + { + "id": 16977, + "cuisine": "greek", + "ingredients": [ + "sugar", + "cooking spray", + "olive oil", + "all-purpose flour", + "warm water", + "salt", + "pitted kalamata olives", + "whole wheat flour", + "yeast" + ] + }, + { + "id": 3326, + "cuisine": "french", + "ingredients": [ + "pepper", + "fresh lemon juice", + "grated lemon zest", + "salt", + "mayonaise", + "garlic cloves" + ] + }, + { + "id": 10414, + "cuisine": "jamaican", + "ingredients": [ + "skim milk", + "bananas", + "baking powder", + "salt", + "chopped pecans", + "brown sugar", + "lime juice", + "cooking spray", + "sweetened coconut flakes", + "margarine", + "lime zest", + "lime rind", + "large eggs", + "butter", + "all-purpose flour", + "sugar", + "baking soda", + "dark rum", + "vanilla extract", + "light cream cheese" + ] + }, + { + "id": 8129, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "yellow bell pepper", + "red bell pepper", + "corn flakes", + "salsa", + "fajita seasoning mix", + "orange bell pepper", + "purple onion", + "boneless skinless chicken breast halves", + "chili powder", + "fresh mushrooms" + ] + }, + { + "id": 10984, + "cuisine": "korean", + "ingredients": [ + "honey", + "pork loin", + "garlic", + "kimchi", + "mirin", + "ginger", + "Gochujang base", + "sesame seeds", + "sesame oil", + "yellow onion", + "soy sauce", + "gochugaru", + "apples", + "oil" + ] + }, + { + "id": 32148, + "cuisine": "japanese", + "ingredients": [ + "cooked chicken", + "salt", + "ketchup", + "heavy cream", + "carrots", + "vegetable oil", + "rice", + "large eggs", + "garlic", + "onions" + ] + }, + { + "id": 9602, + "cuisine": "thai", + "ingredients": [ + "pork loin", + "crushed red pepper", + "red bell pepper", + "lime wedges", + "creamy peanut butter", + "dry roasted peanuts", + "teriyaki sauce", + "garlic cloves", + "green onions", + "rice vinegar", + "basmati rice" + ] + }, + { + "id": 46394, + "cuisine": "indian", + "ingredients": [ + "clove", + "garam masala", + "boneless skinless chicken breasts", + "ginger", + "onions", + "black pepper", + "whole milk yoghurt", + "sunflower oil", + "salt", + "ground cumin", + "fresh cilantro", + "wheels", + "paprika", + "fresh lemon juice", + "serrano chilies", + "cayenne", + "heavy cream", + "garlic", + "plum tomatoes" + ] + }, + { + "id": 38028, + "cuisine": "italian", + "ingredients": [ + "white onion", + "ricotta cheese", + "shredded mozzarella cheese", + "dough", + "minced garlic", + "cracked black pepper", + "garlic salt", + "kosher salt", + "diced tomatoes", + "fresh basil leaves", + "romano cheese", + "lean ground beef", + "extra-virgin olive oil", + "noodles" + ] + }, + { + "id": 9504, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "green onions", + "fresh cilantro", + "dry roasted peanuts", + "fresh lime juice", + "fish sauce", + "fresh ginger" + ] + }, + { + "id": 27435, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "boneless chicken breast", + "diced tomatoes", + "tortilla chips", + "ground cumin", + "corn", + "chili powder", + "shredded sharp cheddar cheese", + "sour cream", + "black beans", + "low sodium chicken broth", + "garlic", + "red bell pepper", + "avocado", + "olive oil", + "coarse salt", + "yellow onion", + "oregano" + ] + }, + { + "id": 8651, + "cuisine": "italian", + "ingredients": [ + "sliced black olives", + "tomatoes", + "zesty italian dressing", + "pasta", + "chopped green bell pepper", + "salad seasoning mix", + "purple onion" + ] + }, + { + "id": 25877, + "cuisine": "vietnamese", + "ingredients": [ + "fennel seeds", + "lime", + "hoisin sauce", + "ginger", + "cinnamon sticks", + "chicken", + "fish sauce", + "herbs", + "flank steak", + "powdered gelatin", + "onions", + "clove", + "sugar", + "Sriracha", + "vegetable oil", + "scallions", + "noodles", + "chicken broth", + "coriander seeds", + "egg whites", + "star anise", + "beansprouts", + "chuck" + ] + }, + { + "id": 38802, + "cuisine": "japanese", + "ingredients": [ + "water", + "potato starch", + "white sugar", + "white vinegar", + "salt", + "mochiko" + ] + }, + { + "id": 2029, + "cuisine": "french", + "ingredients": [ + "butter", + "chopped almonds", + "all-purpose flour", + "brown sugar", + "light corn syrup", + "almond extract" + ] + }, + { + "id": 30644, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "dried thyme", + "crushed red pepper", + "onions", + "minced garlic", + "bay leaves", + "ham hock", + "water", + "chicken stock cubes", + "cooked white rice", + "pepper", + "black-eyed peas", + "salt" + ] + }, + { + "id": 45091, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "salt", + "mussels", + "bay leaves", + "white vinegar", + "cooking oil", + "whole peppercorn", + "garlic" + ] + }, + { + "id": 25166, + "cuisine": "italian", + "ingredients": [ + "colby jack cheese", + "rotini", + "tomatoes", + "pepperoni", + "black olives", + "italian salad dressing", + "parmesan cheese", + "cucumber" + ] + }, + { + "id": 17050, + "cuisine": "italian", + "ingredients": [ + "garlic", + "dried parsley", + "Alfredo sauce", + "shredded mozzarella cheese", + "italian seasoning", + "grated parmesan cheese", + "diced chicken", + "noodles", + "ricotta cheese", + "sour cream" + ] + }, + { + "id": 5509, + "cuisine": "thai", + "ingredients": [ + "coconut", + "peanuts", + "cilantro leaves", + "milk", + "lime wedges", + "panko breadcrumbs", + "lemongrass", + "large eggs", + "pork loin chops", + "fish sauce", + "fresh ginger", + "garlic" + ] + }, + { + "id": 47852, + "cuisine": "french", + "ingredients": [ + "water", + "xanthan gum", + "sugar", + "corn syrup", + "cream of tartar", + "egg yolks", + "eggs", + "butter" + ] + }, + { + "id": 21888, + "cuisine": "korean", + "ingredients": [ + "hoisin sauce", + "toasted sesame oil", + "rib eye steaks", + "scallions", + "garlic", + "soy sauce", + "coca-cola" + ] + }, + { + "id": 7416, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lamb loin chops", + "black pepper", + "salt", + "fresh rosemary", + "balsamic vinegar", + "minced garlic", + "stone ground mustard" + ] + }, + { + "id": 26951, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "ground pepper", + "garlic cloves", + "soy sauce", + "ground pork", + "angel hair", + "lime wedges", + "onions", + "chicken broth", + "fresh cilantro", + "oil" + ] + }, + { + "id": 19157, + "cuisine": "french", + "ingredients": [ + "frozen pastry puff sheets", + "apricot preserves", + "vanilla beans", + "salt", + "sugar", + "egg yolks", + "confectioners sugar", + "milk", + "all-purpose flour" + ] + }, + { + "id": 15545, + "cuisine": "italian", + "ingredients": [ + "water", + "butter", + "boneless skinless chicken breast halves", + "chicken bouillon", + "ground black pepper", + "salt", + "white wine", + "shallots", + "all-purpose flour", + "olive oil", + "garlic", + "dried rosemary" + ] + }, + { + "id": 17961, + "cuisine": "italian", + "ingredients": [ + "white wine vinegar", + "extra-virgin olive oil", + "potatoes", + "fresh parsley", + "garlic" + ] + }, + { + "id": 25140, + "cuisine": "irish", + "ingredients": [ + "pepper", + "margarine", + "parsnips", + "baking potatoes", + "skim milk", + "salt", + "turnips", + "bay leaves" + ] + }, + { + "id": 41066, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "crushed red pepper flakes", + "sausages", + "warm water", + "granulated sugar", + "salt", + "whole wheat flour", + "extra-virgin olive oil", + "bread flour", + "pepper", + "pizza sauce", + "shredded mozzarella cheese" + ] + }, + { + "id": 41856, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "black pepper", + "guacamole", + "garlic", + "beer", + "oregano", + "ketchup", + "cayenne", + "worcestershire sauce", + "yellow onion", + "ground beef", + "cotija", + "lime juice", + "warm buns", + "salt", + "smoked paprika", + "ground cumin", + "chipotle chile", + "bell pepper", + "cilantro", + "ground allspice", + "onions" + ] + }, + { + "id": 32775, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "paprika", + "cayenne pepper", + "onions", + "tomatoes", + "sweet potatoes", + "garlic", + "coconut milk", + "tomato paste", + "garam masala", + "vegetable broth", + "chickpeas", + "plain yogurt", + "vegetable oil", + "salt", + "curry paste" + ] + }, + { + "id": 171, + "cuisine": "southern_us", + "ingredients": [ + "diced onions", + "crawfish", + "worcestershire sauce", + "diced celery", + "black pepper", + "unsalted butter", + "salt", + "boneless skinless chicken breast halves", + "lump crab meat", + "green onions", + "all-purpose flour", + "green bell pepper", + "minced garlic", + "oyster mushrooms", + "heavy whipping cream" + ] + }, + { + "id": 7825, + "cuisine": "vietnamese", + "ingredients": [ + "pepper", + "yellow bell pepper", + "onions", + "green bell pepper", + "tapioca starch", + "Maggi", + "fish fillets", + "vinegar", + "salt", + "sugar", + "spices", + "oil" + ] + }, + { + "id": 8126, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "napa cabbage", + "scallions", + "soy sauce", + "dried udon", + "yellow onion", + "tofu", + "mushrooms", + "garlic", + "konbu", + "kosher salt", + "vegetable oil", + "fresh mushrooms" + ] + }, + { + "id": 14761, + "cuisine": "indian", + "ingredients": [ + "water", + "potatoes", + "cilantro leaves", + "whole wheat flour", + "butter", + "oil", + "garam masala", + "salt", + "amba", + "amchur", + "chili powder", + "green chilies" + ] + }, + { + "id": 20391, + "cuisine": "french", + "ingredients": [ + "Chambord Liqueur", + "heavy cream", + "confectioners sugar", + "mascarpone", + "vanilla extract", + "mint leaves", + "fresh lemon juice", + "granulated sugar", + "fresh raspberries" + ] + }, + { + "id": 25153, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "garlic cloves", + "honey", + "pepper", + "red jalapeno peppers", + "tomato paste", + "apple cider vinegar" + ] + }, + { + "id": 45087, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "tortellini", + "parmigiano reggiano cheese", + "fresh parsley", + "large garlic cloves", + "baby spinach leaves", + "extra-virgin olive oil" + ] + }, + { + "id": 29895, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "yellow bean sauce", + "scallions", + "beansprouts", + "eggs", + "lime", + "garlic", + "shrimp", + "chicken", + "red chili peppers", + "shallots", + "oil", + "bean curd", + "fish sauce", + "vermicelli", + "salt", + "chinese chives" + ] + }, + { + "id": 37949, + "cuisine": "vietnamese", + "ingredients": [ + "neutral oil", + "lime", + "thai chile", + "cucumber", + "tomatoes", + "sweet chili sauce", + "mint leaves", + "carrots", + "chopped cilantro", + "sugar", + "ground black pepper", + "juice", + "steak", + "kaffir lime leaves", + "kosher salt", + "watercress", + "Thai fish sauce" + ] + }, + { + "id": 37984, + "cuisine": "russian", + "ingredients": [ + "vegetables", + "smoked sausage", + "onions", + "tomato paste", + "green onions", + "ham", + "olives", + "bay leaves", + "salt", + "pork butt", + "capers", + "lemon", + "sour cream" + ] + }, + { + "id": 47838, + "cuisine": "greek", + "ingredients": [ + "pepper", + "roma tomatoes", + "greek style plain yogurt", + "greek seasoning", + "feta cheese", + "garlic", + "cucumber", + "olive oil", + "kalamata", + "lemon juice", + "hot pepper rings", + "pita bread rounds", + "salt", + "ground lamb" + ] + }, + { + "id": 25033, + "cuisine": "vietnamese", + "ingredients": [ + "shredded lettuce", + "carrots", + "water", + "peeled shrimp", + "fresh basil", + "rice vermicelli", + "hoisin sauce", + "rice" + ] + }, + { + "id": 25842, + "cuisine": "british", + "ingredients": [ + "dijon mustard", + "all-purpose flour", + "bread crumb fresh", + "hard-boiled egg", + "fresh parsley", + "large eggs", + "sausage meat", + "fresh chives", + "vegetable oil" + ] + }, + { + "id": 29115, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "rice wine", + "ginger", + "cardamom", + "pork", + "vegetable oil", + "chili bean paste", + "stock", + "szechwan peppercorns", + "salt", + "cooking oil", + "cilantro", + "scallions" + ] + }, + { + "id": 12620, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "vanilla extract", + "unbaked pie crusts", + "white sugar", + "eggs", + "all-purpose flour", + "buttermilk" + ] + }, + { + "id": 30077, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "salt", + "green papaya", + "fish sauce", + "fresh ginger", + "oil", + "water", + "whole chicken", + "fresh leav spinach", + "garlic", + "onions" + ] + }, + { + "id": 11028, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "potatoes", + "salt", + "potato starch", + "water", + "mushrooms", + "bread crumbs", + "flour", + "eggs", + "milk", + "butter" + ] + }, + { + "id": 31652, + "cuisine": "korean", + "ingredients": [ + "sugar", + "asian pear", + "garlic", + "low sodium soy sauce", + "anchovies", + "sesame oil", + "toasted sesame seeds", + "rib eye steaks", + "water", + "marinade", + "onions", + "black pepper", + "mirin", + "kelp" + ] + }, + { + "id": 37291, + "cuisine": "mexican", + "ingredients": [ + "tofu", + "purple onion", + "tomatoes", + "garlic cloves", + "avocado", + "salt", + "salsa verde", + "fresh lemon juice" + ] + }, + { + "id": 5693, + "cuisine": "french", + "ingredients": [ + "gelatin", + "sugar", + "lemon juice", + "heavy cream", + "large egg whites", + "frozen strawberries" + ] + }, + { + "id": 44819, + "cuisine": "indian", + "ingredients": [ + "garbanzo beans", + "garlic cloves", + "cayenne pepper", + "chopped fresh mint", + "large eggs", + "fresh lemon juice", + "canned chicken broth", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 24707, + "cuisine": "italian", + "ingredients": [ + "whole wheat berries", + "ricotta cheese", + "candied fruit", + "eggs", + "pies", + "grated lemon zest", + "grated orange", + "ground cinnamon", + "water", + "salt", + "white sugar", + "shortening", + "vanilla extract", + "confectioners sugar" + ] + }, + { + "id": 29312, + "cuisine": "japanese", + "ingredients": [ + "furikake", + "avocado", + "lox", + "salt", + "sushi rice", + "toasted nori" + ] + }, + { + "id": 45156, + "cuisine": "french", + "ingredients": [ + "baguette", + "shallots", + "dried shiitake mushrooms", + "onions", + "low sodium soy sauce", + "beef", + "button mushrooms", + "dark sesame oil", + "boiling water", + "water", + "dry sherry", + "pearl barley", + "boneless sirloin steak", + "brown sugar", + "peeled fresh ginger", + "gruyere cheese", + "garlic cloves" + ] + }, + { + "id": 2513, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "plums", + "sliced green onions", + "boneless chicken thighs", + "dry white wine", + "all-purpose flour", + "black pepper", + "vegetable oil", + "poultry seasoning", + "crystallized ginger", + "salt" + ] + }, + { + "id": 3900, + "cuisine": "southern_us", + "ingredients": [ + "pickling spices", + "habanero pepper", + "organic sugar", + "clove", + "watermelon", + "star anise", + "black peppercorns", + "fresh ginger", + "rice vinegar", + "water", + "pickling salt" + ] + }, + { + "id": 9237, + "cuisine": "french", + "ingredients": [ + "mayonaise", + "asparagus", + "button mushrooms", + "garlic cloves", + "ground black pepper", + "lemon", + "baby carrots", + "chopped fresh herbs", + "sugar", + "radishes", + "yellow bell pepper", + "red bell pepper", + "cherry tomatoes", + "Tabasco Pepper Sauce", + "salt", + "golden zucchini" + ] + }, + { + "id": 34648, + "cuisine": "russian", + "ingredients": [ + "eggs", + "baking powder", + "milk", + "salt", + "black pepper", + "vegetable oil", + "potatoes", + "all-purpose flour" + ] + }, + { + "id": 44024, + "cuisine": "mexican", + "ingredients": [ + "egg roll wrappers", + "oil", + "lean ground beef", + "cheese", + "taco seasoning mix", + "green chilies" + ] + }, + { + "id": 6893, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "beer", + "sugar", + "shredded sharp cheddar cheese", + "large eggs", + "all-purpose flour", + "buttermilk", + "white cornmeal" + ] + }, + { + "id": 35301, + "cuisine": "mexican", + "ingredients": [ + "canned tomatoes", + "Velveeta", + "green chilies" + ] + }, + { + "id": 38046, + "cuisine": "spanish", + "ingredients": [ + "jalapeno chilies", + "spanish chorizo", + "extra-virgin olive oil", + "boiling potatoes", + "dry white wine", + "onions", + "cuban peppers", + "salt" + ] + }, + { + "id": 13664, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "fresh ginger", + "cilantro leaves", + "coconut milk", + "tomato paste", + "lime", + "russet potatoes", + "garlic cloves", + "basmati rice", + "light brown sugar", + "kosher salt", + "vegetable oil", + "yellow onion", + "champagne vinegar", + "tomatoes", + "honey", + "curry", + "cinnamon sticks" + ] + }, + { + "id": 9633, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "baking soda", + "salt", + "rice flour", + "green bell pepper", + "green onions", + "green chilies", + "tomatoes", + "yoghurt", + "cilantro leaves", + "ground turmeric", + "water", + "ginger", + "oil" + ] + }, + { + "id": 36570, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "dry sherry", + "chicken broth", + "Alfredo sauce", + "sliced mushrooms", + "vermicelli", + "freshly ground pepper", + "slivered almonds", + "cooked chicken", + "cream of mushroom soup" + ] + }, + { + "id": 5011, + "cuisine": "greek", + "ingredients": [ + "milk", + "all-purpose flour", + "baking powder", + "orange zest", + "egg yolks", + "white sugar", + "eggs", + "butter" + ] + }, + { + "id": 5738, + "cuisine": "filipino", + "ingredients": [ + "water", + "hard-boiled egg", + "chinese cabbage", + "egg noodles", + "green onions", + "cubed beef", + "pepper", + "beef brisket", + "star anise", + "onions", + "minced garlic", + "cooking oil", + "salt" + ] + }, + { + "id": 46211, + "cuisine": "jamaican", + "ingredients": [ + "baking powder", + "cold water", + "butter", + "vegetable oil", + "plain flour", + "salt" + ] + }, + { + "id": 47552, + "cuisine": "italian", + "ingredients": [ + "fillet red snapper", + "diced tomatoes", + "dried oregano", + "dried basil", + "garlic cloves", + "pepper", + "salt", + "dry white wine", + "lemon juice" + ] + }, + { + "id": 24846, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "coarse salt", + "chopped garlic", + "black pepper", + "low sodium chicken broth", + "spaghetti", + "baby spinach leaves", + "boneless chicken breast", + "all-purpose flour", + "olive oil", + "whole milk", + "plum tomatoes" + ] + }, + { + "id": 21718, + "cuisine": "british", + "ingredients": [ + "raspberry jam", + "milk", + "fresh raspberries", + "frozen pound cake", + "sliced almonds", + "whipping cream", + "corn starch", + "sugar", + "egg yolks", + "drambuie", + "raspberries", + "vanilla extract", + "confectioners sugar" + ] + }, + { + "id": 19815, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "dried oregano", + "water", + "coarse kosher salt", + "ground cumin", + "ground black pepper", + "bay leaf", + "white vinegar", + "garlic cloves", + "allspice" + ] + }, + { + "id": 16386, + "cuisine": "indian", + "ingredients": [ + "butter", + "plain yogurt", + "salt", + "baking powder", + "soft fresh goat cheese", + "maui onion", + "all purpose unbleached flour" + ] + }, + { + "id": 1136, + "cuisine": "italian", + "ingredients": [ + "white wine vinegar", + "organic vegetable broth", + "cilantro leaves", + "extra-virgin olive oil", + "chopped walnuts", + "salt", + "garlic cloves" + ] + }, + { + "id": 20109, + "cuisine": "brazilian", + "ingredients": [ + "dried beef", + "cassava meal", + "onions", + "pepper", + "pork", + "salt" + ] + }, + { + "id": 11799, + "cuisine": "southern_us", + "ingredients": [ + "flour tortillas", + "pepper", + "boneless skinless chicken breasts", + "chicken stock", + "hard-boiled egg", + "cream of chicken soup", + "salt" + ] + }, + { + "id": 3132, + "cuisine": "japanese", + "ingredients": [ + "olive oil", + "sea bass fillets", + "black pepper", + "asparagus", + "sugar", + "white miso", + "fresh lemon juice", + "water", + "lemon wedge" + ] + }, + { + "id": 26809, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "minced garlic", + "spring onions", + "soy sauce", + "cooking oil", + "brown sugar", + "steamed rice", + "shrimp paste", + "pork belly", + "green mango" + ] + }, + { + "id": 21862, + "cuisine": "indian", + "ingredients": [ + "pepper", + "chili powder", + "green chilies", + "ground cumin", + "coriander powder", + "cilantro leaves", + "lemon juice", + "garam masala", + "salt", + "lentils", + "curry sauce", + "lamb", + "ghee" + ] + }, + { + "id": 24, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "vanilla extract", + "firmly packed light brown sugar", + "butter", + "pecans", + "refrigerated piecrusts", + "salt", + "sugar", + "light corn syrup" + ] + }, + { + "id": 11246, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "tomatillos", + "garlic cloves", + "jalapeno chilies", + "crushed red pepper", + "tequila", + "pork tenderloin", + "cilantro sprigs", + "lemon juice", + "avocado", + "cooking spray", + "salt", + "ground cumin" + ] + }, + { + "id": 19150, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "all purpose unbleached flour", + "okra", + "canola oil", + "chives", + "garlic", + "flat leaf parsley", + "black pepper", + "buttermilk", + "sour cream", + "onion powder", + "salt", + "cornmeal" + ] + }, + { + "id": 29694, + "cuisine": "british", + "ingredients": [ + "whole cloves", + "green pepper", + "cabbage", + "whole allspice", + "red pepper", + "cinnamon sticks", + "brown sugar", + "green tomatoes", + "mustard seeds", + "cider vinegar", + "salt", + "onions" + ] + }, + { + "id": 13999, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "grated parmesan cheese", + "eggs", + "cherry tomatoes", + "spaghetti", + "mozzarella cheese", + "ricotta cheese", + "fresh basil", + "ground pepper", + "dried oregano" + ] + }, + { + "id": 20512, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "white wine vinegar", + "sliced green onions", + "water", + "fresh veget", + "feta cheese crumbles", + "garbanzo beans", + "salt", + "curry powder", + "peeled fresh ginger", + "couscous" + ] + }, + { + "id": 37898, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "vegetable oil", + "fresh lime juice", + "medium tomatoes", + "garlic cloves", + "dried oregano", + "black pepper", + "flour tortillas", + "red bell pepper", + "monterey jack", + "refried beans", + "salt", + "serrano chile" + ] + }, + { + "id": 14123, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "shredded swiss cheese", + "olive oil", + "cooking spray", + "sliced mushrooms", + "large egg whites", + "large eggs", + "salt", + "ground black pepper", + "green onions", + "fresh parsley" + ] + }, + { + "id": 4710, + "cuisine": "chinese", + "ingredients": [ + "roasted cashews", + "cider vinegar", + "pork tenderloin", + "long-grain rice", + "sugar", + "water", + "green onions", + "corn starch", + "pineapple chunks", + "minced garlic", + "sherry", + "juice", + "low sodium soy sauce", + "ketchup", + "fresh ginger", + "peanut oil", + "snow peas" + ] + }, + { + "id": 20257, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "salt", + "honey", + "loin pork chops", + "olive oil", + "fresh lime juice", + "fat free less sodium chicken broth", + "cooking spray", + "mango" + ] + }, + { + "id": 4914, + "cuisine": "british", + "ingredients": [ + "rolled oats", + "butter", + "whole wheat flour", + "milk", + "all-purpose flour", + "brown sugar", + "baking powder" + ] + }, + { + "id": 45788, + "cuisine": "russian", + "ingredients": [ + "vanilla beans", + "corn starch", + "large egg yolks", + "milk", + "sugar", + "vanilla extract" + ] + }, + { + "id": 4315, + "cuisine": "spanish", + "ingredients": [ + "ice cubes", + "lemon slices", + "red wine", + "cola" + ] + }, + { + "id": 11548, + "cuisine": "korean", + "ingredients": [ + "sugar", + "sesame oil", + "carrots", + "rib eye steaks", + "shiitake", + "garlic", + "toasted sesame seeds", + "soy sauce", + "vegetable oil", + "onions", + "spinach", + "green onions", + "salt", + "noodles" + ] + }, + { + "id": 3686, + "cuisine": "filipino", + "ingredients": [ + "lime", + "sugar", + "butter", + "powdered milk", + "milk" + ] + }, + { + "id": 18097, + "cuisine": "southern_us", + "ingredients": [ + "Southern Comfort Liqueur", + "yellow cake mix", + "chopped walnuts", + "eggs", + "vegetable oil", + "milk", + "vanilla instant pudding" + ] + }, + { + "id": 36532, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "linguine", + "plum tomatoes", + "dry white wine", + "crushed red pepper", + "fennel seeds", + "extra-virgin olive oil", + "garlic cloves", + "leeks", + "white wine vinegar" + ] + }, + { + "id": 32500, + "cuisine": "thai", + "ingredients": [ + "coconut sugar", + "green onions", + "avocado oil", + "spaghetti squash", + "fish sauce", + "cracked black pepper", + "yellow onion", + "bird chile", + "green bell pepper", + "large garlic cloves", + "salt", + "sliced mushrooms", + "eggs", + "fresh ginger", + "Thai red curry paste", + "coconut aminos", + "ground beef" + ] + }, + { + "id": 29428, + "cuisine": "moroccan", + "ingredients": [ + "vegetable oil", + "ginger", + "onions", + "tumeric", + "lemon", + "sweet paprika", + "chicken stock", + "coarse salt", + "lamb shoulder", + "saffron", + "ground black pepper", + "cilantro", + "cinnamon sticks" + ] + }, + { + "id": 15922, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "stewed tomatoes", + "frozen okra", + "celery", + "pepper", + "salt", + "bacon", + "onions" + ] + }, + { + "id": 38104, + "cuisine": "italian", + "ingredients": [ + "warm water", + "dry yeast", + "fennel seeds", + "milk", + "all purpose unbleached flour", + "pitted kalamata olives", + "olive oil", + "bread flour", + "water", + "coarse salt" + ] + }, + { + "id": 46369, + "cuisine": "french", + "ingredients": [ + "oysters", + "dry white wine", + "sauce", + "pancake", + "flounder", + "parsley", + "shrimp", + "crayfish", + "brandy", + "mushrooms", + "cayenne pepper", + "clarified butter", + "tomatoes", + "grated parmesan cheese", + "lemon", + "seasoned flour" + ] + }, + { + "id": 3546, + "cuisine": "southern_us", + "ingredients": [ + "chopped ham", + "fresh marjoram", + "chopped celery", + "onions", + "eggs", + "ground nutmeg", + "wild rice", + "long grain white rice", + "pecans", + "butter", + "bay leaf", + "collard greens", + "stuffing", + "low salt chicken broth" + ] + }, + { + "id": 31626, + "cuisine": "italian", + "ingredients": [ + "pepper", + "grated parmesan cheese", + "parsley", + "salt", + "onions", + "eggs", + "olive oil", + "half & half", + "diced tomatoes", + "shredded mozzarella cheese", + "nutmeg", + "milk", + "flour", + "ricotta cheese", + "mixed greens", + "dried oregano", + "white wine", + "unsalted butter", + "basil leaves", + "crushed red pepper", + "garlic cloves" + ] + }, + { + "id": 27610, + "cuisine": "greek", + "ingredients": [ + "flour", + "unsalted butter", + "vanilla", + "powdered sugar", + "egg yolks", + "chopped almonds" + ] + }, + { + "id": 41441, + "cuisine": "chinese", + "ingredients": [ + "large egg whites", + "rice wine", + "corn starch", + "water chestnuts", + "coarse salt", + "panko", + "vegetable oil", + "large shrimp", + "scallion greens", + "peeled fresh ginger", + "fresh pork fat" + ] + }, + { + "id": 38261, + "cuisine": "brazilian", + "ingredients": [ + "tomato paste", + "hearts of palm", + "egg yolks", + "oil", + "plum tomatoes", + "tumeric", + "unsalted butter", + "salt", + "shrimp", + "eggs", + "ground black pepper", + "butter", + "sherry wine", + "shortening", + "flour", + "beer", + "onions" + ] + }, + { + "id": 33094, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "ground cumin", + "boneless chicken breast" + ] + }, + { + "id": 35206, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "skinless chicken pieces", + "garlic cloves", + "ground black pepper", + "salt", + "onions", + "vinegar", + "ground allspice", + "dried oregano", + "brown sugar", + "hot pepper", + "thyme" + ] + }, + { + "id": 42629, + "cuisine": "indian", + "ingredients": [ + "chicken stock", + "chopped tomatoes", + "cumin seed", + "chicken thighs", + "tumeric", + "vegetable oil", + "cinnamon sticks", + "chili flakes", + "garam masala", + "garlic cloves", + "coriander", + "fennel seeds", + "caster sugar", + "ginger", + "onions" + ] + }, + { + "id": 28208, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "salt", + "baking powder", + "flour", + "vegetable oil" + ] + }, + { + "id": 32165, + "cuisine": "thai", + "ingredients": [ + "white pepper", + "fish balls", + "fish sauce", + "rice noodles", + "shrimp", + "chicken broth", + "water", + "oil", + "pork", + "scallions" + ] + }, + { + "id": 34342, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "ground black pepper", + "heavy cream", + "garlic", + "sour cream", + "cumin", + "liquid smoke", + "chili", + "serrano peppers", + "ground pork", + "ground white pepper", + "oregano", + "brown sugar", + "poblano peppers", + "bacon", + "salt", + "ground beef", + "cheddar cheese", + "lager", + "paprika", + "cayenne pepper", + "onions" + ] + }, + { + "id": 43386, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "ground black pepper", + "salt", + "sugar", + "vegetable oil", + "chuck", + "soy sauce", + "garlic", + "black peppercorns", + "bay leaves", + "coconut milk" + ] + }, + { + "id": 24449, + "cuisine": "greek", + "ingredients": [ + "sugar", + "unsalted butter", + "phyllo pastry", + "honey", + "fresh lemon juice", + "unsalted pistachios", + "walnuts", + "grated lemon peel", + "ground cinnamon", + "dried apple rings", + "cinnamon sticks" + ] + }, + { + "id": 6331, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "napa cabbage", + "carrots", + "low sodium soy sauce", + "lo mein noodles", + "garlic", + "snow peas", + "shiitake", + "ginger", + "chopped cilantro fresh", + "kosher salt", + "vegetable oil", + "scallions" + ] + }, + { + "id": 40549, + "cuisine": "british", + "ingredients": [ + "salt and ground black pepper", + "beef broth", + "butter", + "onions", + "potatoes", + "mustard powder", + "milk", + "red wine", + "pork sausages" + ] + }, + { + "id": 34253, + "cuisine": "italian", + "ingredients": [ + "wine", + "lemon", + "garlic cloves", + "fresh marjoram", + "chopped fresh thyme", + "salt", + "fresh rosemary", + "fennel bulb", + "extra-virgin olive oil", + "chicken", + "fennel seeds", + "ground black pepper", + "fresh tarragon", + "low salt chicken broth" + ] + }, + { + "id": 32565, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "fennel", + "fine sea salt", + "ice", + "large egg whites", + "pear tomatoes", + "flat leaf parsley", + "tomatoes", + "olive oil", + "fresh tarragon", + "onions", + "black pepper", + "sherry vinegar", + "garlic cloves" + ] + }, + { + "id": 16259, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "ginger", + "wonton wrappers", + "salt", + "green onions", + "teriyaki sauce", + "sugar", + "ground pork" + ] + }, + { + "id": 40328, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "vine ripened tomatoes", + "small white beans", + "extra-virgin olive oil", + "fresh lime juice", + "california avocado" + ] + }, + { + "id": 29335, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "chicken breasts", + "apples", + "cooked white rice", + "clove", + "chopped green bell pepper", + "butter", + "salt", + "onions", + "mace", + "sliced carrots", + "chopped celery", + "fresh parsley", + "pepper", + "beef stock", + "stewed tomatoes", + "all-purpose flour" + ] + }, + { + "id": 23680, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "vegetable oil", + "salt", + "peppercorns", + "radishes", + "garlic", + "corn tortillas", + "salsa verde", + "cilantro", + "beef tongue", + "bay leaves", + "purple onion", + "onions" + ] + }, + { + "id": 9164, + "cuisine": "french", + "ingredients": [ + "avocado", + "French mustard", + "lobster meat", + "granny smith apples", + "fine sea salt", + "haricots verts", + "coarse sea salt", + "fresh chives", + "greek yogurt" + ] + }, + { + "id": 16571, + "cuisine": "indian", + "ingredients": [ + "pepper", + "butter", + "cayenne pepper", + "fresh ginger", + "garlic", + "cumin", + "fresh cilantro", + "diced tomatoes", + "brown lentils", + "evaporated milk", + "salt" + ] + }, + { + "id": 38597, + "cuisine": "brazilian", + "ingredients": [ + "water", + "eggs", + "condensed milk", + "sugar", + "milk" + ] + }, + { + "id": 43577, + "cuisine": "italian", + "ingredients": [ + "sweet cherries", + "whole milk", + "unflavored gelatin", + "peaches", + "plums", + "honey", + "cooking spray", + "pear nectar", + "tawny port", + "blue cheese" + ] + }, + { + "id": 49493, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "reduced fat milk", + "shallots", + "spaghetti", + "ground nutmeg", + "cooking spray", + "salt", + "fat free less sodium chicken broth", + "sherry", + "butter", + "cooked chicken breasts", + "slivered almonds", + "grated parmesan cheese", + "mushrooms", + "all-purpose flour" + ] + }, + { + "id": 30529, + "cuisine": "filipino", + "ingredients": [ + "fried garlic", + "ginger", + "rice", + "fish sauce", + "water", + "chicken stock cubes", + "calamansi", + "pepper", + "garlic", + "oil", + "chicken feet", + "green onions", + "salt", + "onions" + ] + }, + { + "id": 61, + "cuisine": "thai", + "ingredients": [ + "reduced fat coconut milk", + "green beans", + "sugar", + "bamboo shoots", + "fish sauce", + "salad oil", + "Thai red curry paste", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 1772, + "cuisine": "mexican", + "ingredients": [ + "milk", + "chile pepper", + "eggs", + "green onions", + "corn tortillas", + "sliced black olives", + "salsa", + "cheddar cheese", + "pimentos", + "monterey jack" + ] + }, + { + "id": 5725, + "cuisine": "chinese", + "ingredients": [ + "honey", + "garlic cloves", + "soy sauce", + "salt", + "cider vinegar", + "gingerroot", + "anise", + "chicken thighs" + ] + }, + { + "id": 43824, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "jalapeno chilies", + "butter", + "fresh oregano", + "organic vegetable broth", + "chopped cilantro fresh", + "black beans", + "baking powder", + "salt", + "frozen corn kernels", + "masa dough", + "ground cumin", + "ground cinnamon", + "Mexican cheese blend", + "tomatillos", + "cilantro leaves", + "chopped onion", + "chipotle chile powder", + "dried cornhusks", + "sweet potatoes", + "extra-virgin olive oil", + "sauce", + "garlic cloves", + "masa harina" + ] + }, + { + "id": 24988, + "cuisine": "greek", + "ingredients": [ + "greek seasoning", + "feta cheese", + "buttermilk", + "cucumber", + "pita bread", + "boneless skinless chicken breasts", + "sweet pepper", + "tomatoes", + "flour", + "garlic", + "canola oil", + "pepper", + "red wine vinegar", + "tzatziki" + ] + }, + { + "id": 839, + "cuisine": "chinese", + "ingredients": [ + "cooked rice", + "pepper", + "boneless skinless chicken breasts", + "oil", + "soy sauce", + "hoisin sauce", + "crushed red pepper", + "toasted sesame seeds", + "brown sugar", + "water", + "ginger", + "corn starch", + "ketchup", + "egg whites", + "salt" + ] + }, + { + "id": 27021, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "french bread", + "eggplant", + "kalamata", + "olive oil", + "red wine vinegar", + "part-skim mozzarella cheese", + "fresh basil leaves" + ] + }, + { + "id": 33000, + "cuisine": "japanese", + "ingredients": [ + "dried bonito flakes", + "konbu", + "water" + ] + }, + { + "id": 43773, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "rice vinegar", + "soy sauce", + "mushrooms", + "scallions", + "spring roll wrappers", + "kale", + "firm tofu", + "minced garlic", + "sesame oil", + "canola oil" + ] + }, + { + "id": 24995, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "beef", + "corn starch", + "minced garlic", + "sesame oil", + "soy sauce", + "brown rice", + "frozen broccoli florets", + "beef broth" + ] + }, + { + "id": 23803, + "cuisine": "irish", + "ingredients": [ + "rhubarb", + "whipped topping", + "pie dough", + "all-purpose flour", + "sugar" + ] + }, + { + "id": 26395, + "cuisine": "mexican", + "ingredients": [ + "water", + "cracked black pepper", + "celery", + "beef base", + "small red potato", + "kosher salt", + "spices", + "carrots", + "olive oil", + "beef stew meat", + "onions" + ] + }, + { + "id": 17054, + "cuisine": "italian", + "ingredients": [ + "dijon mustard", + "all-purpose flour", + "pearl onions", + "parmigiano reggiano cheese", + "unsalted butter", + "whole milk", + "mustard", + "cream sherry", + "grated nutmeg" + ] + }, + { + "id": 10705, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "mascarpone", + "chocolate shavings", + "salt", + "corn starch", + "eggs", + "baking soda", + "whole milk", + "vanilla extract", + "cocoa powder", + "olive oil", + "flour", + "red food coloring", + "cream cheese", + "sugar", + "vinegar", + "buttermilk", + "all-purpose flour", + "heavy whipping cream" + ] + }, + { + "id": 45982, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "baking potatoes", + "taco seasoning", + "olive oil", + "diced tomatoes", + "sour cream", + "pepper", + "shredded lettuce", + "shredded cheese", + "ground chuck", + "guacamole", + "salt", + "chopped cilantro" + ] + }, + { + "id": 20425, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "large eggs", + "ice water", + "garlic cloves", + "finely chopped onion", + "ricotta cheese", + "salt", + "fleur de sel", + "zucchini", + "butter", + "all-purpose flour", + "grated lemon peel", + "unsalted butter", + "grated parmesan cheese", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 30680, + "cuisine": "spanish", + "ingredients": [ + "tomato juice", + "worcestershire sauce", + "salt", + "sliced green onions", + "sugar", + "cannellini beans", + "cracked black pepper", + "feta cheese crumbles", + "fresh basil", + "chopped green bell pepper", + "diced tomatoes", + "garlic cloves", + "salad greens", + "red wine vinegar", + "extra-virgin olive oil", + "cucumber" + ] + }, + { + "id": 46298, + "cuisine": "french", + "ingredients": [ + "fresh marjoram", + "olive oil", + "oil-cured black olives", + "all-purpose flour", + "warm water", + "fresh thyme", + "extra-virgin olive oil", + "anchovy fillets", + "sugar", + "unsalted butter", + "winter savory", + "yellow onion", + "active dry yeast", + "bay leaves", + "salt", + "freshly ground pepper" + ] + }, + { + "id": 42374, + "cuisine": "jamaican", + "ingredients": [ + "water", + "jamaican jerk season", + "pepper", + "hot pepper sauce", + "large shrimp", + "soy sauce", + "honey", + "salt", + "lime juice", + "vegetable oil" + ] + }, + { + "id": 34631, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "portabello mushroom", + "beef broth", + "white wine", + "enokitake", + "chopped celery", + "carrots", + "pepper", + "butter", + "salt", + "tomato paste", + "ground nutmeg", + "heavy cream", + "chopped onion" + ] + }, + { + "id": 21342, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "unsalted butter", + "beef broth", + "chicken broth", + "sherry vinegar", + "dry sherry", + "bay leaf", + "french baguette", + "ground black pepper", + "gruyere cheese", + "water", + "fresh thyme", + "yellow onion" + ] + }, + { + "id": 46471, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "french bread", + "grated romano cheese", + "mango" + ] + }, + { + "id": 45819, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "basil leaves", + "dry bread crumbs", + "large eggs", + "salt", + "eggplant", + "fresh mozzarella", + "garlic cloves", + "tomatoes", + "grated parmesan cheese", + "all-purpose flour" + ] + }, + { + "id": 19806, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "kalamata", + "fillets", + "olive oil", + "garlic cloves", + "cooking spray", + "red bell pepper", + "green bell pepper", + "salt", + "onions" + ] + }, + { + "id": 48068, + "cuisine": "japanese", + "ingredients": [ + "chicken breasts", + "Japanese rice vinegar", + "mirin", + "garlic", + "chillies", + "malt syrup", + "vegetable oil", + "ginger root", + "udon", + "tamari soy sauce" + ] + }, + { + "id": 8934, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "whole wheat tortillas", + "cumin", + "black pepper", + "chile pepper", + "fat", + "chili powder", + "enchilada sauce", + "shredded cheddar cheese", + "lean ground beef", + "sour cream" + ] + }, + { + "id": 3608, + "cuisine": "filipino", + "ingredients": [ + "flour", + "salt", + "peppercorns", + "pepper", + "garlic", + "shrimp", + "rum", + "oil", + "vinegar", + "purple onion", + "corn starch" + ] + }, + { + "id": 19863, + "cuisine": "moroccan", + "ingredients": [ + "chicken stock", + "tumeric", + "flour", + "yellow onion", + "lentils", + "celery ribs", + "ground cinnamon", + "ground black pepper", + "lemon slices", + "garlic cloves", + "tomatoes", + "water", + "cilantro leaves", + "rice", + "ground ginger", + "lamb cubes", + "salt", + "chickpeas", + "saffron" + ] + }, + { + "id": 46991, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "red wine vinegar", + "olive oil", + "dried oregano", + "dried thyme", + "lemon juice", + "boneless skinless chicken breasts" + ] + }, + { + "id": 43937, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "butternut squash", + "hot sauce", + "vegan Worcestershire sauce", + "tomatoes", + "olive oil", + "garlic", + "green pepper", + "onions", + "pepper", + "red pepper", + "cayenne pepper", + "celery", + "stock", + "garlic powder", + "salt", + "rice", + "oregano" + ] + }, + { + "id": 34394, + "cuisine": "moroccan", + "ingredients": [ + "fresh thyme leaves", + "salt", + "fresh lemon juice", + "shallots", + "extra-virgin olive oil", + "cumin seed", + "flatbread", + "red wine vinegar", + "chickpeas", + "carrots", + "water", + "Italian parsley leaves", + "beets" + ] + }, + { + "id": 34995, + "cuisine": "cajun_creole", + "ingredients": [ + "ground red pepper", + "garlic powder", + "black pepper", + "salt" + ] + }, + { + "id": 40266, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "cayenne", + "boneless skinless chicken breasts", + "all-purpose flour", + "onions", + "dried thyme", + "flour", + "butter", + "rubbed sage", + "milk", + "granulated sugar", + "baking powder", + "garlic cloves", + "chicken broth", + "ground pepper", + "half & half", + "salt", + "carrots" + ] + }, + { + "id": 13206, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "purple onion", + "extra-virgin olive oil", + "dried oregano", + "kalamata", + "cucumber", + "vine tomatoes" + ] + }, + { + "id": 35422, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "Sriracha", + "scallions", + "lemongrass", + "garlic", + "Jasmine brown rice", + "sugar pea", + "yardlong beans", + "carrots", + "neutral oil", + "fresh ginger", + "roasting chickens", + "red bell pepper" + ] + }, + { + "id": 9243, + "cuisine": "french", + "ingredients": [ + "water", + "dijon mustard", + "boneless skinless chicken breasts", + "garlic cloves", + "fat free less sodium chicken broth", + "ground black pepper", + "dry white wine", + "all-purpose flour", + "boneless chicken skinless thigh", + "olive oil", + "leeks", + "salt", + "kale", + "potatoes", + "crushed red pepper" + ] + }, + { + "id": 12556, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce leaves", + "salad oil", + "tomatillos", + "salt", + "long grain white rice", + "poblano chilies", + "fat skimmed chicken broth", + "green onions", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 42851, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "ground black pepper", + "extra-virgin olive oil", + "fresh parsley", + "garlic powder", + "whole wheat spaghetti", + "salt", + "sliced green onions", + "olive oil", + "vinegar", + "black olives", + "fresh basil leaves", + "Italian herbs", + "parmesan cheese", + "red wine vinegar", + "sausages" + ] + }, + { + "id": 43138, + "cuisine": "korean", + "ingredients": [ + "zucchini", + "salt", + "black pepper", + "baton", + "large eggs", + "scallions", + "vegetable oil", + "kimchi" + ] + }, + { + "id": 2057, + "cuisine": "southern_us", + "ingredients": [ + "pimentos", + "shredded cheddar cheese", + "mayonaise", + "garlic powder" + ] + }, + { + "id": 39929, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "polenta", + "kosher salt", + "shredded pepper jack cheese", + "unsalted butter", + "chili", + "scallions" + ] + }, + { + "id": 41000, + "cuisine": "spanish", + "ingredients": [ + "granulated sugar", + "olives", + "water", + "all-purpose flour", + "salt", + "olive oil", + "orange peel" + ] + }, + { + "id": 24602, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "szechwan peppercorns", + "ginger", + "medium firm tofu", + "Shaoxing wine", + "vegetable oil", + "scallions", + "low sodium chicken broth", + "lean ground beef", + "bean sauce", + "low sodium soy sauce", + "sesame oil", + "garlic", + "corn starch" + ] + }, + { + "id": 49526, + "cuisine": "cajun_creole", + "ingredients": [ + "finely chopped onion", + "dry bread crumbs", + "fresh parsley", + "mirlitons", + "butter", + "garlic cloves", + "large eggs", + "hot sauce", + "crawfish", + "salt", + "thyme" + ] + }, + { + "id": 7130, + "cuisine": "greek", + "ingredients": [ + "ground pepper", + "extra-virgin olive oil", + "phyllo dough", + "leeks", + "feta cheese crumbles", + "ground nutmeg", + "garlic cloves", + "flat leaf spinach", + "coarse salt" + ] + }, + { + "id": 16988, + "cuisine": "italian", + "ingredients": [ + "sugar", + "ham", + "peaches", + "sherry vinegar", + "ground cumin", + "basil leaves" + ] + }, + { + "id": 14237, + "cuisine": "southern_us", + "ingredients": [ + "sea scallops", + "kielbasa", + "grits", + "country ham", + "butter", + "scallions", + "tomatoes", + "cajun seasoning", + "salt", + "chopped garlic", + "pepper", + "heavy cream", + "medium shrimp" + ] + }, + { + "id": 28005, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "beef broth", + "chopped cilantro fresh", + "black beans", + "large garlic cloves", + "green chilies", + "lean ground beef", + "grated jack cheese", + "ground cumin", + "flour tortillas", + "salsa", + "onions" + ] + }, + { + "id": 23007, + "cuisine": "filipino", + "ingredients": [ + "tomatoes", + "shredded lettuce", + "minced onion", + "ground beef", + "American cheese", + "roasted garlic", + "flour tortillas", + "peppercorns" + ] + }, + { + "id": 9625, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "salt", + "fresh thyme", + "unsalted butter", + "ground cumin", + "lamb rib chops", + "harissa" + ] + }, + { + "id": 20746, + "cuisine": "southern_us", + "ingredients": [ + "smoked bacon", + "salt", + "purple onion", + "greens" + ] + }, + { + "id": 12319, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "juice", + "ground cumin", + "sugar", + "salt", + "fresh lime juice", + "diced onions", + "olive oil", + "red bell pepper", + "tangelos", + "hot sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 16000, + "cuisine": "chinese", + "ingredients": [ + "tomato paste", + "minced garlic", + "pineapple", + "bean sauce", + "baby back ribs", + "sugar", + "ground pepper", + "star anise", + "chinese five-spice powder", + "tomato purée", + "honey", + "paprika", + "peanut oil", + "ketchup", + "hoisin sauce", + "salt", + "juice" + ] + }, + { + "id": 12546, + "cuisine": "korean", + "ingredients": [ + "sugar", + "green onions", + "ground pepper", + "garlic cloves", + "rib-eye roast", + "onions", + "soy sauce", + "oil" + ] + }, + { + "id": 38410, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "coarse salt", + "ground black pepper", + "cayenne pepper", + "garlic powder", + "paprika", + "onion powder", + "dried oregano" + ] + }, + { + "id": 14966, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon wedge", + "freshly ground pepper", + "unsalted butter", + "salt", + "fresh lemon juice", + "extra large shrimp", + "lemon", + "garlic cloves", + "dry white wine", + "all-purpose flour", + "flat leaf parsley" + ] + }, + { + "id": 9393, + "cuisine": "italian", + "ingredients": [ + "pizza crust", + "red bell pepper", + "lean ground beef", + "pizza sauce", + "italian seasoning", + "shredded mozzarella cheese" + ] + }, + { + "id": 3042, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "thai basil", + "garlic chili sauce", + "char siu", + "fish sauce", + "cooking oil", + "beansprouts", + "sugar", + "broccoli", + "noodles", + "dark soy sauce", + "vinegar", + "oyster sauce" + ] + }, + { + "id": 8068, + "cuisine": "french", + "ingredients": [ + "hanger steak", + "olive oil", + "freshly ground pepper", + "salt", + "shallots", + "thyme leaves" + ] + }, + { + "id": 9568, + "cuisine": "chinese", + "ingredients": [ + "shallots", + "salt", + "soy sauce", + "thai chile", + "fresh lime juice", + "lime wedges", + "peanut oil", + "yardlong beans", + "unsalted dry roast peanuts", + "chopped garlic" + ] + }, + { + "id": 37255, + "cuisine": "southern_us", + "ingredients": [ + "green onions", + "celery seed", + "eggs", + "salt", + "celery", + "celery ribs", + "baking potatoes", + "sour cream", + "mayonaise", + "horseradish mustard", + "italian salad dressing" + ] + }, + { + "id": 28280, + "cuisine": "southern_us", + "ingredients": [ + "dressing", + "cajun seasoning", + "cabbage", + "yellow corn meal", + "hoagie rolls", + "catfish fillets", + "butter", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 6711, + "cuisine": "italian", + "ingredients": [ + "orzo pasta", + "pepper", + "garlic", + "extra-virgin olive oil", + "broccoli florets", + "salt" + ] + }, + { + "id": 24962, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "heavy cream", + "milk", + "water", + "grits", + "unsalted butter" + ] + }, + { + "id": 14691, + "cuisine": "italian", + "ingredients": [ + "water", + "dry white wine", + "crushed red pepper", + "bottled clam juice", + "Dungeness crabs", + "Italian parsley leaves", + "king crab legs", + "chopped tomatoes", + "large garlic cloves", + "onions", + "kosher salt", + "bay leaves", + "extra-virgin olive oil" + ] + }, + { + "id": 3685, + "cuisine": "korean", + "ingredients": [ + "sugar", + "sesame seeds", + "rice vinegar", + "cabbage leaves", + "boiled eggs", + "lettuce leaves", + "cucumber", + "buckwheat", + "soy sauce", + "gochugaru", + "Gochujang base", + "hot mustard", + "minced garlic", + "sesame oil", + "kimchi" + ] + }, + { + "id": 5583, + "cuisine": "chinese", + "ingredients": [ + "cider vinegar", + "purple onion", + "duck breasts", + "red cabbage", + "carrots", + "brown sugar", + "olive oil", + "salt", + "black pepper", + "barbecue sauce" + ] + }, + { + "id": 2022, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon", + "fresh parsley", + "angel hair", + "grated parmesan cheese", + "hot sauce", + "large shrimp", + "fresh basil", + "ground black pepper", + "salt", + "onions", + "white wine", + "butter", + "garlic cloves" + ] + }, + { + "id": 28511, + "cuisine": "mexican", + "ingredients": [ + "tostadas", + "onions", + "lettuce", + "garlic", + "queso crema", + "chicken", + "tomatoes", + "chipotles in adobo" + ] + }, + { + "id": 13038, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "szechwan peppercorns", + "star anise", + "onions", + "baby bok choy", + "beef shank", + "large garlic cloves", + "chili bean paste", + "plum tomatoes", + "soy sauce", + "green onions", + "chinese wheat noodles", + "ground white pepper", + "yellow rock sugar", + "vegetable oil", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 5597, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "lemon", + "salt", + "dry white wine", + "frozen green beans", + "roma tomatoes", + "red pepper flakes", + "onions", + "olive oil", + "cinnamon", + "garlic" + ] + }, + { + "id": 21368, + "cuisine": "moroccan", + "ingredients": [ + "orange", + "cornish game hens", + "chopped cilantro fresh", + "olive oil", + "pitted green olives", + "honey", + "balsamic vinegar", + "ground cumin", + "pitted date", + "tawny port", + "garlic cloves" + ] + }, + { + "id": 18135, + "cuisine": "french", + "ingredients": [ + "semi-sweet chocolate morsels", + "heavy cream", + "vanilla extract" + ] + }, + { + "id": 28843, + "cuisine": "italian", + "ingredients": [ + "pepper", + "plum tomatoes", + "hamburger buns", + "kalamata", + "olive oil", + "kosher salt", + "fresh oregano" + ] + }, + { + "id": 33037, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salt", + "plum tomatoes", + "flour tortillas", + "pinto beans", + "large eggs", + "salsa", + "pepper", + "vegetable oil", + "onions" + ] + }, + { + "id": 25528, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "salt", + "dried oregano", + "pepper", + "stewed tomatoes", + "dried parsley", + "bacon", + "onions", + "dried basil", + "garlic", + "spaghetti" + ] + }, + { + "id": 24691, + "cuisine": "greek", + "ingredients": [ + "dried thyme", + "fresh lemon juice", + "kalamata", + "extra-virgin olive oil", + "lemon zest", + "dried rosemary" + ] + }, + { + "id": 36838, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chickpea flour", + "sea salt", + "parmigiano reggiano cheese", + "water", + "flat leaf parsley" + ] + }, + { + "id": 3426, + "cuisine": "mexican", + "ingredients": [ + "dried lentils", + "salt and ground black pepper", + "salsa", + "ground cumin", + "black beans", + "chili powder", + "dried oregano", + "coconut oil", + "finely chopped onion", + "tortilla chips", + "chicken broth", + "corn kernels", + "garlic", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 12232, + "cuisine": "southern_us", + "ingredients": [ + "corn kernels", + "salt", + "half & half", + "parmesan cheese", + "cayenne pepper", + "pepper", + "butter" + ] + }, + { + "id": 18196, + "cuisine": "italian", + "ingredients": [ + "water", + "butter", + "oil", + "olive oil", + "salt", + "polenta", + "fat free less sodium vegetable broth", + "cracked black pepper", + "garlic cloves", + "black beans", + "baby spinach", + "goat cheese", + "ground cumin" + ] + }, + { + "id": 13950, + "cuisine": "cajun_creole", + "ingredients": [ + "parsley", + "cayenne pepper", + "thyme", + "oregano", + "black pepper", + "paprika", + "long-grain rice", + "celery", + "andouille sausage", + "vegetable stock", + "creole seasoning", + "chicken livers", + "olive oil", + "salt", + "garlic cloves", + "onions" + ] + }, + { + "id": 18596, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "plum tomatoes", + "kosher salt", + "garlic", + "yukon gold potatoes", + "canola oil", + "ground black pepper", + "chopped cilantro" + ] + }, + { + "id": 17090, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "radishes", + "salt", + "ground cumin", + "avocado", + "minced garlic", + "cinnamon", + "ground allspice", + "lettuce", + "cider vinegar", + "chicken parts", + "chili sauce", + "ground cloves", + "olive oil", + "cilantro", + "dried oregano" + ] + }, + { + "id": 10444, + "cuisine": "indian", + "ingredients": [ + "mild curry powder", + "large garlic cloves", + "fresh lemon juice", + "bay leaf", + "clove", + "peeled fresh ginger", + "crushed red pepper", + "chutney", + "stewing beef", + "tomatoes with juice", + "cinnamon sticks", + "onions", + "cooked rice", + "vegetable oil", + "salt", + "coconut milk" + ] + }, + { + "id": 35955, + "cuisine": "greek", + "ingredients": [ + "seasoning", + "chicken breasts", + "greek style plain yogurt", + "feta cheese crumbles", + "minced garlic", + "purple onion", + "english cucumber", + "black pepper", + "red pepper", + "dill", + "lettuce", + "pitas", + "salt", + "lemon juice" + ] + }, + { + "id": 21898, + "cuisine": "italian", + "ingredients": [ + "branzino", + "whole grain mustard", + "garlic cloves", + "kosher salt", + "chopped fresh thyme", + "olive oil", + "freshly ground pepper", + "bread crumbs", + "lemon wedge" + ] + }, + { + "id": 3007, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "non-fat sour cream", + "chopped cilantro fresh", + "diced tomatoes", + "vegetable seasoning", + "cooking spray", + "hot sauce", + "40% less sodium taco seasoning", + "fat free less sodium beef broth", + "pinto beans" + ] + }, + { + "id": 46729, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "vegetable stock", + "flat leaf parsley", + "white wine", + "balsamic vinegar", + "parmagiano reggiano", + "leeks", + "shaved parmesan cheese", + "arborio rice", + "mushrooms", + "butter" + ] + }, + { + "id": 45424, + "cuisine": "italian", + "ingredients": [ + "pepper", + "mascarpone", + "red pepper flakes", + "carrots", + "italian sausage", + "crushed tomatoes", + "roma tomatoes", + "chopped celery", + "sage leaves", + "water", + "finely chopped onion", + "garlic", + "chicken stock", + "olive oil", + "cannellini beans", + "salt" + ] + }, + { + "id": 21081, + "cuisine": "french", + "ingredients": [ + "sugar", + "baking powder", + "salt", + "cultured buttermilk", + "baking soda", + "cinnamon", + "grated lemon zest", + "confectioners sugar", + "large egg whites", + "almond extract", + "all-purpose flour", + "fresh lemon juice", + "melted butter", + "granulated sugar", + "butter", + "ground almonds", + "pears" + ] + }, + { + "id": 14750, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "tomatoes", + "garlic", + "tomatillos", + "chopped cilantro fresh", + "lime juice", + "salt" + ] + }, + { + "id": 37908, + "cuisine": "italian", + "ingredients": [ + "dried tarragon leaves", + "finely chopped onion", + "unsalted butter", + "orzo", + "fennel bulb", + "plum tomatoes", + "olive oil", + "fresh tarragon" + ] + }, + { + "id": 13049, + "cuisine": "mexican", + "ingredients": [ + "vanilla ice cream", + "lime", + "garlic powder", + "zucchini", + "guacamole", + "chili powder", + "red wine vinegar", + "paprika", + "purple onion", + "yellow onion", + "fresh parsley leaves", + "fresh mint", + "cumin", + "eggs", + "black beans", + "honey", + "asparagus", + "sugar cookie dough", + "boneless skinless chicken breasts", + "zesty italian dressing", + "red pepper flakes", + "crushed red pepper flakes", + "cilantro leaves", + "cayenne pepper", + "fudge brownie mix", + "corn tortillas", + "avocado", + "black pepper", + "chocolate chip cookie mix", + "ground pepper", + "Sriracha", + "condiments", + "onion powder", + "butter", + "cilantro", + "salt", + "flat iron steaks", + "lemon juice", + "sour cream", + "green bell pepper", + "kosher salt", + "olive oil", + "pepper jack", + "jalapeno chilies", + "flank steak", + "vegetable oil", + "portabello mushroom", + "yellow bell pepper", + "salsa", + "garlic cloves", + "red bell pepper", + "candy" + ] + }, + { + "id": 11666, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "cinnamon", + "sourdough bread", + "granny smith apples", + "salt", + "unsalted butter" + ] + }, + { + "id": 44360, + "cuisine": "japanese", + "ingredients": [ + "matcha green tea powder", + "sugar", + "white rice flour", + "butter", + "baking powder", + "coconut milk" + ] + }, + { + "id": 29420, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "mild Italian sausage", + "flat leaf parsley", + "water", + "broccoli rabe", + "garlic", + "onions", + "canned low sodium chicken broth", + "olive oil", + "dry white wine", + "cornmeal", + "crushed tomatoes", + "ground black pepper", + "salt" + ] + }, + { + "id": 32313, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cilantro", + "corn tortillas", + "jack cheese", + "red enchilada sauce", + "eggs", + "salsa", + "black beans", + "sour cream" + ] + }, + { + "id": 12978, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "water", + "sesame oil", + "gluten free soy sauce", + "red chili peppers", + "garlic powder", + "scallions", + "ground chicken", + "orange marmalade", + "oil", + "fish sauce", + "almond flour", + "ginger" + ] + }, + { + "id": 29957, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "purple onion", + "lemon juice", + "fresh dill", + "lemon zest", + "greek style plain yogurt", + "tomatoes", + "feta cheese", + "salt", + "cucumber", + "pepper", + "boneless skinless chicken breasts", + "garlic cloves" + ] + }, + { + "id": 32794, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "kosher salt", + "cumin seed", + "fish steaks", + "coconut", + "peppercorns", + "curry leaves", + "lime juice", + "oil", + "garlic paste", + "lime wedges", + "ground turmeric" + ] + }, + { + "id": 44662, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "butter", + "garlic cloves", + "pepper", + "green onions", + "canned tomatoes", + "grits", + "milk", + "dry white wine", + "salt", + "andouille sausage", + "minced onion", + "red pepper flakes", + "medium shrimp" + ] + }, + { + "id": 7319, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh thyme leaves", + "plum tomatoes", + "chicken broth", + "garlic cloves", + "olive oil", + "onions", + "celery ribs", + "yellow bell pepper" + ] + }, + { + "id": 42234, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "ground black pepper", + "cauliflower florets", + "yellow onion", + "carrots", + "water", + "dry mustard", + "white wine vinegar", + "ground coriander", + "frozen peas", + "pitted date", + "zucchini", + "garlic", + "cayenne pepper", + "red bell pepper", + "tomato paste", + "kidney beans", + "ginger", + "salt", + "cardamom", + "ground cumin" + ] + }, + { + "id": 8757, + "cuisine": "british", + "ingredients": [ + "sugar", + "baking soda", + "milk", + "all-purpose flour", + "warm water", + "salt", + "active dry yeast" + ] + }, + { + "id": 26306, + "cuisine": "indian", + "ingredients": [ + "water", + "corn oil", + "rice", + "ground cinnamon", + "chili", + "salt", + "garlic cloves", + "curry powder", + "lamb shoulder", + "ground coriander", + "plain yogurt", + "fresh ginger", + "yellow onion" + ] + }, + { + "id": 664, + "cuisine": "thai", + "ingredients": [ + "lime zest", + "fresh basil", + "chili pepper", + "fresh shiitake mushrooms", + "coconut milk", + "fresh red chili", + "sugar", + "lemongrass", + "broccoli", + "galangal", + "chicken stock", + "fish sauce", + "fresh coriander", + "garlic", + "shrimp shells", + "kaffir lime leaves", + "soy sauce", + "lime", + "chili sauce" + ] + }, + { + "id": 24176, + "cuisine": "italian", + "ingredients": [ + "pepper", + "red pepper flakes", + "large eggs", + "fresh parsley", + "olive oil", + "salt", + "tomatoes", + "grated parmesan cheese", + "dried oregano" + ] + }, + { + "id": 17545, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "salt", + "chicken drumsticks", + "ground cumin", + "vegetable oil", + "all-purpose flour", + "buttermilk" + ] + }, + { + "id": 48857, + "cuisine": "mexican", + "ingredients": [ + "crushed garlic", + "ancho chile pepper", + "water", + "salt", + "dried oregano", + "chile pepper", + "all-purpose flour", + "ground cumin", + "chicken stock", + "butter", + "onions" + ] + }, + { + "id": 13029, + "cuisine": "jamaican", + "ingredients": [ + "powdered sugar", + "large eggs", + "vanilla extract", + "greek yogurt", + "bananas", + "butter", + "all-purpose flour", + "baking soda", + "apple cider vinegar", + "salt", + "granulated sugar", + "sweetened coconut flakes", + "lemon juice" + ] + }, + { + "id": 37410, + "cuisine": "italian", + "ingredients": [ + "leeks", + "dry sherry", + "polenta", + "water", + "butter", + "chopped fresh sage", + "ground black pepper", + "pecorino romano cheese", + "flat leaf parsley", + "fat free less sodium chicken broth", + "bay leaves", + "salt", + "wild mushrooms" + ] + }, + { + "id": 21808, + "cuisine": "chinese", + "ingredients": [ + "stock", + "meat sauce", + "green onions", + "caster sugar", + "tofu", + "salt" + ] + }, + { + "id": 22585, + "cuisine": "southern_us", + "ingredients": [ + "water", + "collard greens", + "salt", + "white vinegar", + "condensed chicken broth", + "pepper", + "smoked ham hocks" + ] + }, + { + "id": 932, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "peeled fresh ginger", + "butter", + "ground coriander", + "sugar", + "vegetables", + "vegetable oil", + "mustard powder", + "ground cumin", + "unsweetened coconut milk", + "water", + "chili powder", + "salt", + "chopped cilantro fresh", + "salmon fillets", + "curry powder", + "sesame oil", + "rice vinegar", + "basmati rice" + ] + }, + { + "id": 28898, + "cuisine": "mexican", + "ingredients": [ + "chopped onion", + "plum tomatoes", + "fresh lime juice", + "garlic cloves", + "jalapeno chilies", + "chopped cilantro fresh" + ] + }, + { + "id": 33217, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "coarse salt", + "dark sesame oil", + "enokitake", + "rice vinegar", + "beansprouts", + "soy sauce", + "udon", + "peanut butter", + "chopped cilantro fresh", + "chili paste", + "garlic", + "scallions" + ] + }, + { + "id": 42058, + "cuisine": "british", + "ingredients": [ + "caster sugar", + "baking powder", + "plain flour", + "large eggs", + "jam", + "sultana", + "whole milk", + "clotted cream", + "unsalted butter", + "salt" + ] + }, + { + "id": 11873, + "cuisine": "spanish", + "ingredients": [ + "hot pepper sauce", + "garlic cloves", + "chopped cilantro fresh", + "purple onion", + "cucumber", + "large shrimp", + "low sodium vegetable juice", + "fresh lemon juice", + "plum tomatoes", + "avocado", + "salt", + "red bell pepper" + ] + }, + { + "id": 7210, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "butter", + "pepper", + "balsamic vinegar", + "fettucine", + "garlic powder", + "salt", + "cream", + "pork tenderloin", + "dried oregano" + ] + }, + { + "id": 24735, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "hoisin sauce", + "chicken", + "minced ginger", + "dry white wine", + "soy sauce", + "green onions", + "steamed rice", + "flavoring" + ] + }, + { + "id": 37712, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "extra-virgin olive oil", + "onions", + "udon", + "green pepper", + "water", + "tamari soy sauce", + "red pepper", + "carrots" + ] + }, + { + "id": 37433, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "baking powder", + "canola oil", + "eggs", + "active dry yeast", + "salt", + "warm water", + "vegetable oil", + "powdered sugar", + "evaporated milk", + "all-purpose flour" + ] + }, + { + "id": 48784, + "cuisine": "chinese", + "ingredients": [ + "adzuki beans", + "starch", + "peanut oil", + "baking soda", + "salt", + "white sugar", + "water", + "cake flour", + "golden syrup", + "egg yolks", + "all-purpose flour" + ] + }, + { + "id": 5537, + "cuisine": "mexican", + "ingredients": [ + "pickled jalapeno peppers", + "non-fat sour cream", + "tomatillos", + "ranch dressing", + "cilantro" + ] + }, + { + "id": 38310, + "cuisine": "southern_us", + "ingredients": [ + "southern comfort", + "lemon", + "frozen lemonade concentrate", + "frozen orange juice concentrate", + "navel oranges", + "lemon-lime soda" + ] + }, + { + "id": 24592, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "large egg yolks", + "hominy grits", + "unsalted butter", + "boiling water", + "large egg whites", + "salt" + ] + }, + { + "id": 15814, + "cuisine": "irish", + "ingredients": [ + "sugar", + "whole milk", + "large egg yolks", + "strawberries", + "vanilla beans", + "whipping cream", + "crumbs", + "dark brown sugar" + ] + }, + { + "id": 29276, + "cuisine": "indian", + "ingredients": [ + "salt", + "durum wheat flour", + "water", + "vegetable oil" + ] + }, + { + "id": 22986, + "cuisine": "spanish", + "ingredients": [ + "ground cinnamon", + "large eggs", + "fat free milk", + "sweetened condensed milk", + "sugar", + "cooking spray", + "water", + "vanilla extract" + ] + }, + { + "id": 20956, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil spray", + "sea bass fillets", + "onions", + "black bean garlic sauce", + "mushrooms", + "garlic cloves", + "soy sauce", + "orange marmalade", + "poblano chilies", + "chopped cilantro fresh", + "fresh ginger", + "dry white wine", + "fresh lime juice" + ] + }, + { + "id": 20948, + "cuisine": "mexican", + "ingredients": [ + "water", + "salsa", + "boneless skinless chicken breast halves", + "vegetable oil", + "sour cream", + "bell pepper", + "fajita size flour tortillas", + "fajita seasoning mix", + "garlic", + "onions" + ] + }, + { + "id": 24610, + "cuisine": "french", + "ingredients": [ + "pernod", + "half & half", + "fennel bulb", + "onions", + "chicken stock", + "potatoes", + "olive oil", + "butter" + ] + }, + { + "id": 29795, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "grated parmesan cheese", + "fresh thyme leaves", + "ground black pepper", + "dry white wine", + "fresh lemon juice", + "unsalted butter", + "shallots", + "chicken broth", + "lobster", + "beef tenderloin" + ] + }, + { + "id": 13575, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chopped tomatoes", + "shredded lettuce", + "sour cream", + "shredded cheddar cheese", + "flour tortillas", + "salt", + "ground beef", + "pepper", + "hot pepper sauce", + "diced tomatoes", + "ripe olives", + "fresh cilantro", + "chili powder", + "salsa", + "onions" + ] + }, + { + "id": 28350, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "boneless skinless chicken breasts", + "lemon juice", + "minced garlic", + "frozen corn kernels", + "shredded Monterey Jack cheese", + "corn tortilla chips", + "chili powder", + "chunky salsa", + "olive oil", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 21155, + "cuisine": "italian", + "ingredients": [ + "salt and ground black pepper", + "all-purpose flour", + "fresh parsley", + "capers", + "garlic", + "lemon juice", + "butter", + "demi-glace", + "boneless skinless chicken breast halves", + "white wine", + "lemon slices", + "sliced mushrooms" + ] + }, + { + "id": 7660, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "lean ground beef", + "onions", + "kosher salt", + "quick-cooking oats", + "italian seasoning", + "brown sugar", + "milk", + "yellow mustard", + "ketchup", + "large eggs", + "cheese" + ] + }, + { + "id": 6565, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "cumin seed", + "red lentils", + "grapeseed oil", + "onions", + "Anaheim chile", + "chopped cilantro", + "water", + "salt", + "ground turmeric" + ] + }, + { + "id": 1919, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "dark brown sugar", + "whipping cream" + ] + }, + { + "id": 8764, + "cuisine": "mexican", + "ingredients": [ + "old bay seasoning", + "sour cream", + "romaine lettuce", + "oil", + "chopped cilantro fresh", + "sauce", + "corn tortillas", + "lime juice", + "shrimp", + "cabbage" + ] + }, + { + "id": 661, + "cuisine": "southern_us", + "ingredients": [ + "dark brown sugar", + "peanut butter", + "milk", + "cream cheese" + ] + }, + { + "id": 41514, + "cuisine": "italian", + "ingredients": [ + "pepper", + "flour", + "kale leaves", + "whole wheat pasta", + "unsalted butter", + "shallots", + "toasted sesame oil", + "olive oil", + "sweet potatoes", + "garlic cloves", + "skim milk", + "grated romano cheese", + "salt" + ] + }, + { + "id": 33556, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "water", + "cajun seasoning", + "green pepper", + "white pepper", + "green onions", + "salt", + "celery", + "chicken broth", + "pepper", + "vegetable oil", + "yellow onion", + "dried oregano", + "beans", + "bay leaves", + "garlic", + "long-grain rice" + ] + }, + { + "id": 14436, + "cuisine": "mexican", + "ingredients": [ + "corn", + "mayonaise", + "lime wedges", + "cayenne", + "cotija", + "butter" + ] + }, + { + "id": 28656, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "vegetable oil", + "fresh lemon juice", + "catfish fillets", + "unsalted butter", + "salt", + "black pepper", + "old bay seasoning", + "whole baby okra", + "grape tomatoes", + "lemon wedge", + "frozen corn" + ] + }, + { + "id": 35891, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "rice noodles", + "chopped cilantro", + "zucchini", + "sliced mushrooms", + "white sugar", + "green curry paste", + "peanut oil", + "onions", + "boneless skinless chicken breasts", + "coconut milk", + "boiling water" + ] + }, + { + "id": 26868, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "unsalted butter", + "water", + "polenta", + "sea salt" + ] + }, + { + "id": 5393, + "cuisine": "british", + "ingredients": [ + "melted butter", + "all-purpose flour", + "milk", + "salt", + "eggs", + "Pam Cooking Spray" + ] + }, + { + "id": 10164, + "cuisine": "indian", + "ingredients": [ + "seeds", + "rice", + "urad dal", + "flour", + "salt water" + ] + }, + { + "id": 1884, + "cuisine": "southern_us", + "ingredients": [ + "pie shell", + "vanilla extract", + "white sugar", + "salt", + "eggs", + "pinto beans" + ] + }, + { + "id": 36934, + "cuisine": "southern_us", + "ingredients": [ + "mint sprigs", + "dark rum", + "orange liqueur", + "spiced rum", + "ice cubes", + "frozen limeade concentrate" + ] + }, + { + "id": 14725, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "grating cheese", + "all-purpose flour", + "onions", + "low sodium chicken", + "bacon", + "celery", + "milk", + "heavy cream", + "carrots", + "cajun spice mix", + "russet potatoes", + "salt", + "fresh parsley" + ] + }, + { + "id": 41926, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "buttermilk", + "refrigerated piecrusts", + "all-purpose flour", + "flaked coconut", + "vanilla extract", + "eggs", + "butter", + "chocolate morsels" + ] + }, + { + "id": 43373, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "tostadas", + "rotisserie chicken", + "ground cumin", + "grape tomatoes", + "salt", + "fresh lime juice", + "canned black beans", + "cilantro leaves", + "chipotles in adobo", + "avocado", + "lime wedges", + "sour cream" + ] + }, + { + "id": 41306, + "cuisine": "russian", + "ingredients": [ + "tomato paste", + "water", + "salt", + "sour cream", + "olives", + "pickles", + "butter", + "ham", + "brine", + "chicken broth", + "flour", + "dill", + "chopped cilantro", + "celery ribs", + "pepper", + "lemon", + "carrots", + "onions" + ] + }, + { + "id": 32584, + "cuisine": "korean", + "ingredients": [ + "shredded carrots", + "wonton wrappers", + "beansprouts", + "pepper", + "green onions", + "gingerroot", + "toasted sesame seeds", + "eggs", + "shredded cabbage", + "salt", + "ground beef", + "water", + "sesame oil", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 41900, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "buttermilk", + "large eggs", + "white cornmeal", + "baking powder", + "baking soda", + "salt" + ] + }, + { + "id": 13959, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "flank steak", + "corn starch", + "water", + "dark brown sugar", + "minced garlic", + "vegetable oil", + "fresh ginger", + "scallions" + ] + }, + { + "id": 46802, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "heavy cream", + "red bell pepper", + "methi", + "white button mushrooms", + "chili powder", + "cumin seed", + "onions", + "ground cumin", + "tumeric", + "salt", + "strained yogurt", + "ground turmeric", + "tomatoes", + "vegetable oil", + "oil", + "coriander" + ] + }, + { + "id": 38109, + "cuisine": "italian", + "ingredients": [ + "eggs", + "pepperoni", + "poppy seeds", + "ham", + "genoa salami", + "provolone cheese", + "mustard", + "pizza doughs" + ] + }, + { + "id": 14145, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "dried basil", + "marinara sauce", + "salt", + "cremini mushrooms", + "lasagna noodles", + "lean ground beef", + "fresh parsley", + "frozen spinach", + "white onion", + "grated parmesan cheese", + "fresh mozzarella", + "italian seasoning", + "vegetable oil cooking spray", + "ground black pepper", + "low-fat ricotta", + "garlic cloves" + ] + }, + { + "id": 40774, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "diced tomatoes", + "flat leaf parsley", + "boneless chicken skinless thigh", + "converted rice", + "garlic", + "onions", + "chicken broth", + "olive oil", + "paprika", + "tart", + "black pepper", + "red pepper flakes", + "green pepper", + "yellow peppers" + ] + }, + { + "id": 337, + "cuisine": "greek", + "ingredients": [ + "phyllo dough", + "cinnamon", + "water", + "vanilla extract", + "sugar", + "butter", + "pecans", + "honey" + ] + }, + { + "id": 37843, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "raisins", + "ground cumin", + "plain yogurt", + "lemon wedge", + "long grain white rice", + "grape leaves", + "coffee", + "onions", + "water", + "vegetable oil", + "dried oregano" + ] + }, + { + "id": 2354, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "garlic", + "french bread", + "provolone cheese", + "olive oil", + "salt", + "pepper", + "basil", + "onions" + ] + }, + { + "id": 37793, + "cuisine": "mexican", + "ingredients": [ + "plain flour", + "fresh coriander", + "butter", + "sweet corn", + "black pepper", + "jalapeno chilies", + "hot chili powder", + "eggs", + "milk", + "grating cheese", + "smoked paprika", + "black beans", + "baking powder", + "salt" + ] + }, + { + "id": 11372, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "salt", + "fresh basil leaves", + "asparagus", + "garlic cloves", + "extra-virgin olive oil", + "cavatelli", + "ricotta salata", + "freshly ground pepper", + "arugula" + ] + }, + { + "id": 9271, + "cuisine": "italian", + "ingredients": [ + "dried currants", + "cannellini beans", + "white beans", + "capers", + "pepper", + "garlic", + "fresh basil leaves", + "mayonaise", + "grated parmesan cheese", + "salt", + "tomatoes", + "pinenuts", + "green onions", + "lemon juice" + ] + }, + { + "id": 38055, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking powder", + "red bell pepper", + "pepper", + "salt", + "ground cumin", + "sugar", + "buttermilk", + "canola oil", + "yellow corn meal", + "baking soda", + "all-purpose flour" + ] + }, + { + "id": 48011, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "salt", + "water", + "tomatillos", + "cooking spray", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 36175, + "cuisine": "chinese", + "ingredients": [ + "fresh chives", + "coarse salt", + "ground ginger", + "szechwan peppercorns", + "tarragon", + "tenderloin roast", + "chinese five-spice powder", + "anise seed", + "vegetable oil" + ] + }, + { + "id": 22306, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "buttermilk", + "salt", + "golden brown sugar", + "large eggs", + "whipping cream", + "unsweetened chocolate", + "baking soda", + "chocolate shavings", + "cake flour", + "large egg yolks", + "English toffee bits", + "vanilla extract", + "boiling water" + ] + }, + { + "id": 33279, + "cuisine": "italian", + "ingredients": [ + "fresh sage", + "unsalted butter", + "sage leaves", + "prosciutto", + "boneless skinless chicken breast halves", + "eggs", + "dry white wine", + "fontina cheese", + "ground black pepper" + ] + }, + { + "id": 16619, + "cuisine": "french", + "ingredients": [ + "salt", + "sugar", + "active dry yeast", + "melted butter", + "all-purpose flour" + ] + }, + { + "id": 124, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "ginger", + "sake", + "flank steak", + "olive oil", + "sugar", + "rice wine" + ] + }, + { + "id": 28396, + "cuisine": "vietnamese", + "ingredients": [ + "brown sugar", + "paprika", + "salt", + "olive oil", + "tomatoes with juice", + "ground allspice", + "ground cloves", + "crushed red pepper flakes", + "ground mustard", + "tomato paste", + "apple cider vinegar", + "garlic", + "onions" + ] + }, + { + "id": 45777, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "extra-virgin olive oil", + "freshly ground pepper", + "celery ribs", + "grated parmesan cheese", + "salt", + "pancetta", + "unsalted butter", + "chopped celery", + "flat leaf parsley", + "bread", + "leeks", + "sweet italian sausage" + ] + }, + { + "id": 28785, + "cuisine": "brazilian", + "ingredients": [ + "salt", + "brown sugar", + "coconut milk", + "rice", + "butter" + ] + }, + { + "id": 30460, + "cuisine": "russian", + "ingredients": [ + "eggs", + "white flour", + "rosemary", + "apples", + "sliced mushrooms", + "sugar", + "milk", + "butter", + "dill", + "cabbage", + "brown sugar", + "pepper", + "whole wheat flour", + "salt", + "onions", + "celery salt", + "warm water", + "active dry yeast", + "poppy seeds", + "oil" + ] + }, + { + "id": 22929, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "fresh ginger root", + "green chilies", + "fresh coriander", + "boneless skinless chicken breasts", + "onions", + "sweet chili sauce", + "spring onions", + "garlic cloves", + "olive oil", + "lime wedges" + ] + }, + { + "id": 39488, + "cuisine": "french", + "ingredients": [ + "water", + "diced tomatoes", + "green beans", + "onions", + "red potato", + "cannellini beans", + "carrots", + "pistou", + "zucchini", + "bow-tie pasta", + "thyme sprigs", + "leeks", + "garlic cloves", + "bay leaf" + ] + }, + { + "id": 41928, + "cuisine": "russian", + "ingredients": [ + "smoked salmon", + "milk", + "salt", + "sour cream", + "sugar", + "unsalted butter", + "all-purpose flour", + "eggs", + "active dry yeast", + "buckwheat flour", + "caviar", + "water", + "vegetable oil", + "dill tips" + ] + }, + { + "id": 21492, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "dried basil", + "salt", + "dried oregano", + "tomato paste", + "pepper", + "bay leaves", + "sliced mushrooms", + "diced onions", + "sugar", + "olive oil", + "garlic cloves", + "dried rosemary", + "tomatoes", + "water", + "dry red wine", + "fresh parsley" + ] + }, + { + "id": 35012, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "rice vinegar", + "egg yolks", + "dijon mustard", + "rapeseed oil", + "fine sea salt" + ] + }, + { + "id": 32921, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "soft tofu", + "konbu", + "chicken stock", + "mirin", + "sea salt", + "boiling water", + "miso paste", + "spring onions", + "vermicelli noodles", + "sake", + "enokitake", + "dried shiitake mushrooms" + ] + }, + { + "id": 34132, + "cuisine": "spanish", + "ingredients": [ + "celery salt", + "fresh thyme", + "fresh tarragon", + "cayenne pepper", + "fresh parsley", + "black pepper", + "red wine vinegar", + "purple onion", + "cucumber", + "tomatoes", + "coarse salt", + "garlic", + "fresh lemon juice", + "sherry vinegar", + "worcestershire sauce", + "salt", + "red bell pepper" + ] + }, + { + "id": 21245, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "garlic cloves", + "boneless skinless chicken breast halves", + "peeled fresh ginger", + "dry sherry", + "Yakisoba noodles", + "sugar", + "green onions", + "seasoned rice wine vinegar", + "low salt chicken broth", + "tahini", + "napa cabbage", + "garlic chili sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 190, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "margarine", + "pepper", + "flour", + "macaroni", + "shredded cheddar cheese", + "salt" + ] + }, + { + "id": 23063, + "cuisine": "indian", + "ingredients": [ + "water", + "chili powder", + "chopped cilantro", + "tomato paste", + "garam masala", + "salt", + "onions", + "plain yogurt", + "golden raisins", + "oil", + "cashew nuts", + "minced garlic", + "chicken breasts", + "lemon juice" + ] + }, + { + "id": 937, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "guajillo", + "ancho chile pepper", + "black peppercorns", + "hominy", + "pork country-style ribs", + "mint", + "vegetable oil", + "garlic cloves", + "clove", + "water", + "cilantro", + "dried oregano" + ] + }, + { + "id": 20378, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "pork tenderloin", + "rice vinegar", + "minced garlic", + "chili oil", + "ketchup", + "sesame oil", + "sugar", + "hoisin sauce", + "cilantro leaves" + ] + }, + { + "id": 41722, + "cuisine": "chinese", + "ingredients": [ + "sichuanese chili paste", + "szechwan peppercorns", + "soy sauce", + "zucchini", + "peanut oil", + "kosher salt", + "Shaoxing wine", + "scallions", + "red chili peppers", + "pork spare ribs", + "sesame oil" + ] + }, + { + "id": 9984, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "brewed tea", + "peach nectar", + "fresh lemon juice" + ] + }, + { + "id": 42865, + "cuisine": "greek", + "ingredients": [ + "milk", + "macaroni", + "garlic cloves", + "bread", + "chopped tomatoes", + "ricotta", + "dried oregano", + "olive oil", + "beef stock cubes", + "onions", + "ground cinnamon", + "parmesan cheese", + "lamb" + ] + }, + { + "id": 7895, + "cuisine": "cajun_creole", + "ingredients": [ + "fettucine", + "cajun seasoning", + "salt", + "pepper", + "butter", + "cream cheese", + "milk", + "chicken tenderloin", + "grated parmesan cheese", + "garlic" + ] + }, + { + "id": 23661, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "crushed tomatoes", + "worcestershire sauce", + "cayenne pepper", + "medium shrimp", + "green bell pepper", + "unsalted butter", + "all-purpose flour", + "celery", + "onions", + "cooked rice", + "olive oil", + "salt", + "creole seasoning", + "fresh parsley", + "minced garlic", + "green onions", + "hot sauce", + "bay leaf" + ] + }, + { + "id": 1224, + "cuisine": "greek", + "ingredients": [ + "slivered almonds", + "beets", + "red wine vinegar", + "garbanzo beans", + "garlic cloves", + "pita bread", + "extra-virgin olive oil" + ] + }, + { + "id": 44777, + "cuisine": "british", + "ingredients": [ + "powdered sugar", + "vanilla extract", + "superfine sugar", + "custard powder", + "all-purpose flour", + "unsalted butter" + ] + }, + { + "id": 43367, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "unsalted butter", + "salt", + "cream of tartar", + "large egg yolks", + "large eggs", + "confectioners sugar", + "almond flour", + "granulated sugar", + "cognac", + "water", + "instant espresso powder", + "cake flour", + "bittersweet chocolate" + ] + }, + { + "id": 31890, + "cuisine": "thai", + "ingredients": [ + "granulated sugar", + "red food coloring", + "ground cinnamon", + "black tea leaves", + "sweetened condensed milk", + "vanilla pods", + "orange flower water", + "ground cloves", + "star anise" + ] + }, + { + "id": 34154, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "cream filled chocolate sandwich cookies", + "coffee granules", + "boiling water", + "irish cream liqueur", + "whipping cream", + "semisweet chocolate" + ] + }, + { + "id": 9463, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "green onions", + "raisins", + "garlic cloves", + "dried oregano", + "garlic powder", + "onion powder", + "paprika", + "fresh parsley", + "mayonaise", + "ground black pepper", + "buttermilk", + "cayenne pepper", + "grated lemon peel", + "pecans", + "baby greens", + "apple cider vinegar", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 33541, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "grated parmesan cheese", + "garlic", + "shredded mozzarella cheese", + "eggplant", + "ricotta cheese", + "all-purpose flour", + "white sugar", + "crushed tomatoes", + "vegetable oil", + "salt", + "fresh parsley", + "eggs", + "ground black pepper", + "heavy cream", + "dry bread crumbs", + "italian seasoning" + ] + }, + { + "id": 13890, + "cuisine": "japanese", + "ingredients": [ + "water", + "konbu", + "bonito flakes" + ] + }, + { + "id": 16862, + "cuisine": "mexican", + "ingredients": [ + "spinach", + "pepper", + "cilantro", + "cumin", + "avocado", + "black beans", + "flour tortillas", + "sauce", + "black pepper", + "chicken sausage", + "purple onion", + "eggs", + "kosher salt", + "egg whites", + "sliced mushrooms" + ] + }, + { + "id": 26769, + "cuisine": "mexican", + "ingredients": [ + "tortilla wraps", + "lime wedges", + "crème fraîche", + "olive oil", + "red pepper", + "cheddar cheese", + "tomato salsa", + "fajita seasoning mix", + "free range chicken breasts", + "purple onion" + ] + }, + { + "id": 6634, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "sesame oil", + "english cucumber", + "water", + "cooking spray", + "rice vinegar", + "canola mayonnaise", + "baguette", + "Sriracha", + "salt", + "chopped cilantro fresh", + "sugar", + "lower sodium soy sauce", + "daikon", + "carrots" + ] + }, + { + "id": 600, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cilantro", + "sweet corn", + "onions", + "chicken broth", + "olive oil", + "salt", + "sour cream", + "pepper", + "garlic", + "shredded cheese", + "penne", + "red pepper flakes", + "green pepper", + "roasted tomatoes" + ] + }, + { + "id": 41293, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "coriander seeds", + "cilantro", + "yellow onion", + "tamarind concentrate", + "minced ginger", + "whole peeled tomatoes", + "garlic", + "cumin seed", + "canola oil", + "kosher salt", + "garam masala", + "chile de arbol", + "chickpeas", + "ground turmeric", + "green cardamom pods", + "amchur", + "cinnamon", + "hot sauce", + "fresh lemon juice" + ] + }, + { + "id": 16559, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "onions", + "sliced almonds", + "fresh ginger root", + "eggplant", + "coriander", + "curry powder", + "greek yogurt" + ] + }, + { + "id": 6699, + "cuisine": "italian", + "ingredients": [ + "lemon wedge", + "olive oil", + "fresh lemon juice", + "pesto", + "chopped walnuts", + "chicken breast halves", + "grated lemon peel" + ] + }, + { + "id": 49340, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "lemon wedge", + "all-purpose flour", + "onions", + "ground black pepper", + "butter", + "garlic cloves", + "wild mushrooms", + "eggs", + "dry white wine", + "sea salt", + "risotto rice", + "parmesan cheese", + "vegetable stock", + "oil", + "panko breadcrumbs" + ] + }, + { + "id": 41815, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "semolina", + "hot water", + "kosher salt", + "cardamom", + "sugar", + "all-purpose flour", + "medjool date", + "coconut flakes", + "milk", + "rice flour" + ] + }, + { + "id": 26413, + "cuisine": "filipino", + "ingredients": [ + "salt", + "fish sauce", + "pea shoots", + "onions", + "tomatoes", + "ginger root" + ] + }, + { + "id": 14456, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "chili powder", + "garlic cloves", + "chopped cilantro fresh", + "cotija", + "cayenne pepper", + "sour cream", + "kosher salt", + "sweet corn", + "fresh lime juice", + "mayonaise", + "purple onion", + "nonstick spray" + ] + }, + { + "id": 43465, + "cuisine": "chinese", + "ingredients": [ + "water", + "corn starch", + "low sodium soy sauce", + "ginger", + "canola oil", + "light brown sugar", + "red pepper flakes", + "skirt steak", + "minced garlic", + "scallions" + ] + }, + { + "id": 18437, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "vegetable oil", + "rice vinegar", + "large eggs", + "crushed red pepper flakes", + "scallions", + "reduced sodium soy sauce", + "all purpose unbleached flour", + "dark brown sugar", + "kosher salt", + "sesame oil", + "garlic" + ] + }, + { + "id": 28672, + "cuisine": "filipino", + "ingredients": [ + "Accent Seasoning", + "chicken breasts", + "garlic cloves", + "cooking oil", + "teriyaki sauce", + "onions", + "soy sauce", + "rice noodles", + "carrots", + "green onions", + "lemon slices", + "cabbage" + ] + }, + { + "id": 20289, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "jasmine rice", + "flour", + "salt", + "garlic cloves", + "onions", + "white pepper", + "pork tenderloin", + "worcestershire sauce", + "oil", + "red bell pepper", + "ketchup", + "plum sauce", + "baking powder", + "pineapple juice", + "corn starch", + "green bell pepper", + "water", + "whole milk", + "rice vinegar", + "garlic chili sauce" + ] + }, + { + "id": 7464, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning", + "guacamole", + "ground beef", + "lettuce", + "shredded cheese", + "salsa" + ] + }, + { + "id": 4981, + "cuisine": "moroccan", + "ingredients": [ + "dried currants", + "olive oil", + "kalamata", + "onions", + "water", + "harissa", + "garlic cloves", + "boneless chicken skinless thigh", + "chopped almonds", + "chickpeas", + "ground cumin", + "fresh tomatoes", + "honey", + "cinnamon", + "couscous" + ] + }, + { + "id": 30738, + "cuisine": "japanese", + "ingredients": [ + "ginger", + "red bell pepper", + "sushi rice", + "scallions", + "nori", + "wasabi paste", + "dipping sauces", + "celery", + "mirin", + "carrots" + ] + }, + { + "id": 39654, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salted peanuts", + "brown sugar", + "salt", + "milk chocolate chips", + "butter", + "wheat flour", + "caramel ice cream topping", + "all-purpose flour" + ] + }, + { + "id": 27360, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "flank steak", + "bok choy", + "peeled fresh ginger", + "rice vinegar", + "sesame seeds", + "crushed red pepper", + "green onions", + "garlic cloves" + ] + }, + { + "id": 29765, + "cuisine": "irish", + "ingredients": [ + "brown sugar", + "potatoes", + "butter", + "banger", + "milk", + "gravy", + "cheese", + "pork sausages", + "pepper", + "flour", + "stout", + "onions", + "sage leaves", + "garlic powder", + "beef stock", + "salt" + ] + }, + { + "id": 26217, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "english cucumber", + "olive oil", + "salt", + "pepper", + "red wine vinegar", + "tomatoes", + "parsley leaves", + "cooked shrimp" + ] + }, + { + "id": 14504, + "cuisine": "chinese", + "ingredients": [ + "water", + "green onions", + "beaten eggs", + "dried chile", + "dark soy sauce", + "vinegar", + "vegetable oil", + "garlic cloves", + "brown sugar", + "Shaoxing wine", + "ginger", + "corn starch", + "peanuts", + "szechwan peppercorns", + "salt", + "chicken thighs" + ] + }, + { + "id": 16063, + "cuisine": "southern_us", + "ingredients": [ + "cocoa", + "chopped pecans", + "light corn syrup", + "powdered sugar", + "vanilla wafers", + "bourbon whiskey" + ] + }, + { + "id": 3809, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "sugar", + "balsamic vinegar", + "mission figs", + "walnut pieces", + "dry red wine" + ] + }, + { + "id": 49489, + "cuisine": "indian", + "ingredients": [ + "fat free less sodium chicken broth", + "salt", + "canola oil", + "ground cloves", + "bay leaves", + "sweet paprika", + "ground nutmeg", + "chopped onion", + "ground cumin", + "boneless chicken skinless thigh", + "yellow lentils", + "ground turmeric" + ] + }, + { + "id": 39125, + "cuisine": "french", + "ingredients": [ + "cooking spray", + "salt", + "large egg whites", + "butter", + "unsweetened cocoa powder", + "semisweet chocolate", + "1% low-fat milk", + "sugar", + "pistachio nuts", + "all-purpose flour" + ] + }, + { + "id": 8747, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "chili powder", + "cooked white rice", + "lettuce leaves", + "lean ground beef", + "fresh ginger", + "sesame oil", + "brown sugar", + "green onions", + "garlic cloves" + ] + }, + { + "id": 11494, + "cuisine": "indian", + "ingredients": [ + "soda", + "ghee", + "sugar", + "khoa", + "maida flour", + "milk", + "oil" + ] + }, + { + "id": 44784, + "cuisine": "southern_us", + "ingredients": [ + "cream sweeten whip", + "crust", + "sweetened condensed milk", + "lime rind", + "tequila", + "large eggs", + "orange liqueur", + "whipping cream", + "fresh lime juice" + ] + }, + { + "id": 8573, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "diced tomatoes", + "garlic cloves", + "chicken broth", + "bacon", + "green pepper", + "onions", + "worcestershire sauce", + "dri leav thyme", + "celery", + "frozen okra", + "crabmeat frozen", + "shrimp" + ] + }, + { + "id": 24877, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "cream cheese", + "cumin", + "garlic powder", + "salt", + "shredded colby", + "water", + "cilantro", + "sour cream", + "boneless skinless chicken breasts", + "salsa", + "corn tortillas" + ] + }, + { + "id": 33526, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "semisweet chocolate", + "cake pound prepar", + "sweet cherries", + "heavy cream", + "dried currants", + "ricotta cheese", + "unsalted butter", + "white sugar" + ] + }, + { + "id": 44017, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "jalapeno chilies", + "salt", + "mayonaise", + "fresh cilantro", + "garlic", + "lime juice", + "chili powder", + "frozen corn", + "cotija", + "olive oil", + "purple onion" + ] + }, + { + "id": 24024, + "cuisine": "thai", + "ingredients": [ + "kosher salt", + "dark brown sugar", + "ground turmeric", + "pork loin", + "coconut milk", + "lemongrass", + "ground coriander", + "ground cumin", + "coconut oil", + "cayenne pepper", + "galangal" + ] + }, + { + "id": 5283, + "cuisine": "cajun_creole", + "ingredients": [ + "heavy cream", + "fresh lime juice", + "orange", + "fresh lemon juice", + "gin", + "orange flower water", + "ice", + "egg whites", + "soda water" + ] + }, + { + "id": 18254, + "cuisine": "japanese", + "ingredients": [ + "daikon", + "perilla", + "mayonaise", + "seaweed", + "cooked rice", + "salt", + "Sriracha", + "tuna" + ] + }, + { + "id": 47457, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "garlic", + "oil", + "spinach", + "chili powder", + "salt", + "chicken breasts", + "passata", + "onions", + "tumeric", + "ginger", + "ground coriander" + ] + }, + { + "id": 48239, + "cuisine": "thai", + "ingredients": [ + "sweet chili sauce", + "skinless salmon fillets", + "lime", + "oil" + ] + }, + { + "id": 42116, + "cuisine": "southern_us", + "ingredients": [ + "almonds", + "maple sugar", + "pecans", + "apples", + "eggs", + "sweet potatoes", + "pumpkin pie spice", + "coconut oil", + "vanilla extract" + ] + }, + { + "id": 41174, + "cuisine": "french", + "ingredients": [ + "french bread", + "all-purpose flour", + "water", + "shredded swiss cheese", + "onions", + "white wine", + "bay leaves", + "beef broth", + "olive oil", + "butter" + ] + }, + { + "id": 10445, + "cuisine": "french", + "ingredients": [ + "hollandaise sauce", + "fresh lemon juice" + ] + }, + { + "id": 21140, + "cuisine": "italian", + "ingredients": [ + "sea salt", + "whole milk", + "lemon juice", + "heavy cream" + ] + }, + { + "id": 30279, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "salsa", + "shredded cheddar cheese", + "black beans", + "corn tortillas", + "grated carrot" + ] + }, + { + "id": 27026, + "cuisine": "thai", + "ingredients": [ + "low sodium chicken broth", + "scallions", + "kosher salt", + "light coconut milk", + "green beans", + "fish sauce", + "lime wedges", + "garlic cloves", + "fresh ginger", + "red curry paste", + "medium shrimp" + ] + }, + { + "id": 16156, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "grated coconut", + "poppy seeds", + "salt", + "cardamom", + "ground turmeric", + "clove", + "red chili powder", + "coriander seeds", + "star anise", + "cumin seed", + "dried red chile peppers", + "fennel seeds", + "black pepper", + "cinnamon", + "garlic", + "oil", + "onions", + "tomatoes", + "water", + "ginger", + "cilantro leaves", + "lemon juice", + "chicken" + ] + }, + { + "id": 1649, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "paprika", + "cucumber", + "vegetable juice", + "salt", + "low-fat sour cream", + "purple onion", + "fresh lime juice", + "grape tomatoes", + "ground red pepper", + "cilantro leaves" + ] + }, + { + "id": 2477, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "garlic", + "flat leaf parsley", + "butter", + "cornish hens", + "olive oil", + "canned tomatoes", + "sourdough", + "ground black pepper", + "salt", + "dried rosemary" + ] + }, + { + "id": 41027, + "cuisine": "korean", + "ingredients": [ + "granulated sugar", + "black beans", + "salt", + "brown sugar", + "pumpkin", + "water", + "sweet rice flour" + ] + }, + { + "id": 39329, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "sugar", + "maple syrup", + "vanilla wafers", + "hazelnuts", + "seedless red grapes" + ] + }, + { + "id": 30096, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "honey", + "bean sauce", + "pork butt", + "dark soy sauce", + "water", + "star anise", + "bay leaf", + "kosher salt", + "hoisin sauce", + "oyster sauce", + "soy sauce", + "garlic powder", + "chinese five-spice powder", + "flavored wine" + ] + }, + { + "id": 6554, + "cuisine": "cajun_creole", + "ingredients": [ + "chorizo", + "fresh lemon", + "butter", + "yellow onion", + "dried oregano", + "green bell pepper", + "olive oil", + "green onions", + "sea salt", + "fresh parsley", + "tomatoes", + "dried thyme", + "bay leaves", + "bacon", + "celery", + "large shrimp", + "black pepper", + "low sodium chicken broth", + "ground red pepper", + "garlic", + "long grain white rice" + ] + }, + { + "id": 33977, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "vegetable oil", + "garlic powder", + "all-purpose flour", + "yellow corn meal", + "salt", + "ground red pepper" + ] + }, + { + "id": 32810, + "cuisine": "italian", + "ingredients": [ + "whole milk", + "cinnamon sticks", + "salt", + "sugar", + "lemon rind", + "large egg yolks", + "corn starch" + ] + }, + { + "id": 48528, + "cuisine": "filipino", + "ingredients": [ + "hot red pepper flakes", + "extra-virgin olive oil", + "fresh lemon", + "salt", + "pepper", + "garlic", + "chili powder", + "chicken pieces" + ] + }, + { + "id": 31198, + "cuisine": "mexican", + "ingredients": [ + "condiments", + "canola oil", + "lime", + "corn tortillas", + "avocado", + "cilantro", + "chicken", + "chipotle", + "onions" + ] + }, + { + "id": 21594, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "finely chopped onion", + "vegetable oil", + "dried cranberries", + "large egg whites", + "large eggs", + "all-purpose flour", + "sugar", + "low-fat buttermilk", + "salt", + "baking soda", + "baking powder", + "margarine" + ] + }, + { + "id": 20557, + "cuisine": "filipino", + "ingredients": [ + "chinese rice wine", + "star anise", + "cinnamon sticks", + "dark soy sauce", + "light soy sauce", + "oil", + "chicken stock", + "pepper", + "garlic", + "brown sugar", + "ginger", + "chicken leg quarters" + ] + }, + { + "id": 365, + "cuisine": "spanish", + "ingredients": [ + "soy chorizo", + "salt", + "organic vegetable broth", + "saffron threads", + "extra-virgin olive oil", + "medium-grain rice", + "flat leaf parsley", + "dry white wine", + "edamame", + "red bell pepper", + "green onions", + "yellow onion", + "garlic cloves" + ] + }, + { + "id": 26900, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "Mexican cheese blend", + "fresh oregano", + "corn tortillas", + "tomato paste", + "water", + "ground red pepper", + "garlic cloves", + "sliced green onions", + "kosher salt", + "cooking spray", + "organic vegetable broth", + "fresh lime juice", + "light sour cream", + "olive oil", + "yellow onion", + "ancho chile pepper", + "ground cumin" + ] + }, + { + "id": 23175, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "Italian parsley leaves", + "garlic cloves", + "rocket leaves", + "parmigiano reggiano cheese", + "salt", + "ground black pepper", + "linguine", + "fat free less sodium chicken broth", + "basil leaves", + "walnuts" + ] + }, + { + "id": 33404, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "large garlic cloves", + "fresh spinach", + "unsalted butter", + "fontina", + "rib pork chops", + "sage leaves", + "prosciutto", + "fresh lemon juice" + ] + }, + { + "id": 44268, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "garam masala", + "salt", + "cayenne", + "popcorn kernels", + "butter" + ] + }, + { + "id": 9553, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "red pepper flakes", + "salt", + "anchovies", + "garlic", + "fresh parsley", + "capers", + "linguine", + "chickpeas", + "olive oil", + "black olives" + ] + }, + { + "id": 1018, + "cuisine": "french", + "ingredients": [ + "minced garlic", + "cream cheese", + "mayonaise", + "blue cheese", + "sour cream", + "milk", + "lemon juice", + "pepper", + "salt" + ] + }, + { + "id": 6088, + "cuisine": "mexican", + "ingredients": [ + "dried pinto beans", + "water", + "salt", + "large garlic cloves", + "salt pork", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 32252, + "cuisine": "spanish", + "ingredients": [ + "pasta sauce", + "boneless skinless chicken breast halves", + "fettucine", + "goat cheese", + "minced garlic", + "fresh basil", + "garlic cloves" + ] + }, + { + "id": 36124, + "cuisine": "french", + "ingredients": [ + "water", + "dried sage", + "salt", + "ground black pepper", + "ground pork", + "mustard powder", + "dried thyme", + "refrigerated piecrusts", + "chopped onion", + "ground cloves", + "potatoes", + "garlic", + "ground beef" + ] + }, + { + "id": 2947, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "olive oil", + "salt", + "pinenuts", + "Italian parsley leaves", + "lemon juice", + "fresh oregano leaves", + "grated parmesan cheese", + "garlic cloves", + "cold water", + "pepper", + "loosely packed fresh basil leaves" + ] + }, + { + "id": 19877, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "ground black pepper", + "paprika", + "salsa", + "corn kernels", + "lean ground beef", + "white rice", + "onions", + "green bell pepper", + "garlic powder", + "diced tomatoes", + "salt", + "shredded cheddar cheese", + "chili powder", + "cilantro", + "beef broth" + ] + }, + { + "id": 17041, + "cuisine": "british", + "ingredients": [ + "bananas", + "heavy cream", + "light brown sugar", + "sweetened condensed milk", + "pie dough" + ] + }, + { + "id": 41795, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "lemon", + "cayenne pepper", + "garam masala", + "garlic", + "onions", + "fresh ginger root", + "red food coloring", + "chopped cilantro", + "yellow food coloring", + "salt", + "chicken" + ] + }, + { + "id": 6159, + "cuisine": "japanese", + "ingredients": [ + "baby bok choy", + "fresh ginger", + "green onions", + "chinese five-spice powder", + "chicken broth", + "black cod fillets", + "ground black pepper", + "dry sherry", + "toasted sesame oil", + "sugar", + "fresh cilantro", + "udon", + "salt", + "soy sauce", + "sesame seeds", + "vegetable oil", + "carrots" + ] + }, + { + "id": 46116, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed tomatoes" + ] + }, + { + "id": 34570, + "cuisine": "greek", + "ingredients": [ + "bread crumbs", + "golden raisins", + "ground lamb", + "bread", + "pepper", + "greek yogurt", + "kosher salt", + "scallions", + "ground cinnamon", + "large eggs", + "fresh mint" + ] + }, + { + "id": 40517, + "cuisine": "southern_us", + "ingredients": [ + "cooking oil", + "all-purpose flour", + "dried oregano", + "ground black pepper", + "ancho powder", + "cultured buttermilk", + "garlic powder", + "onion powder", + "cayenne pepper", + "dried rosemary", + "granulated sugar", + "salt", + "chicken thighs" + ] + }, + { + "id": 41344, + "cuisine": "italian", + "ingredients": [ + "grapeseed oil", + "thyme sprigs", + "ground black pepper", + "extra-virgin olive oil", + "chopped garlic", + "shallots", + "salt", + "wild mushrooms", + "Italian parsley leaves", + "polenta" + ] + }, + { + "id": 10221, + "cuisine": "southern_us", + "ingredients": [ + "blue crabs", + "flour", + "garlic", + "canola oil", + "mascarpone", + "Tabasco Pepper Sauce", + "cornmeal", + "eggs", + "ground black pepper", + "butter", + "corn grits", + "milk", + "green onions", + "salt" + ] + }, + { + "id": 39273, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "garlic cloves", + "ground black pepper", + "onions", + "olive oil", + "Thai fish sauce", + "white vinegar", + "bay leaves", + "chicken thighs" + ] + }, + { + "id": 28261, + "cuisine": "southern_us", + "ingredients": [ + "mixed spice", + "potatoes", + "olive oil", + "honey", + "pork ribs" + ] + }, + { + "id": 21998, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "fresh tomato salsa", + "chili powder", + "boneless skinless chicken breasts", + "smoked paprika" + ] + }, + { + "id": 44671, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "water", + "dry white wine", + "onions", + "fat free less sodium chicken broth", + "cannellini beans", + "carrots", + "fresh rosemary", + "wheat berries", + "salt", + "plum tomatoes", + "black pepper", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 8760, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "shuck corn", + "red bell pepper", + "grape tomatoes", + "finely chopped onion", + "salt", + "chopped cilantro fresh", + "penne", + "queso fresco", + "garlic cloves", + "ground cumin", + "avocado", + "poblano peppers", + "extra-virgin olive oil", + "fresh lime juice" + ] + }, + { + "id": 1104, + "cuisine": "moroccan", + "ingredients": [ + "preserved lemon", + "ground black pepper", + "ground tumeric", + "couscous", + "ground ginger", + "water", + "paprika", + "lamb shoulder", + "ground cumin", + "saffron threads", + "fresh coriander", + "coarse salt", + "garlic", + "onions", + "ground cinnamon", + "olive oil", + "kalamata", + "beef broth" + ] + }, + { + "id": 28570, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "ground black pepper", + "salt", + "fresh parsley", + "marsala wine", + "butter", + "sliced mushrooms", + "meat extract", + "vegetable oil", + "fresh lemon juice", + "dried oregano", + "eggs", + "grated parmesan cheese", + "all-purpose flour", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 40245, + "cuisine": "japanese", + "ingredients": [ + "tofu", + "honey", + "chili pepper", + "cilantro leaves", + "spinach", + "soup", + "water" + ] + }, + { + "id": 31886, + "cuisine": "japanese", + "ingredients": [ + "pork belly", + "daikon", + "miso paste", + "carrots", + "dashi", + "kasu", + "spring onions" + ] + }, + { + "id": 42432, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "all-purpose flour", + "baking powder", + "unsalted butter", + "milk", + "salt" + ] + }, + { + "id": 7566, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "cream of coconut", + "yellow split peas", + "tomato paste", + "ginger", + "red bliss potato", + "frozen peas", + "water", + "garlic", + "salt", + "chopped cilantro fresh", + "cinnamon", + "curry", + "onions" + ] + }, + { + "id": 24322, + "cuisine": "irish", + "ingredients": [ + "bacon", + "all-purpose flour", + "bay leaf", + "dried rosemary", + "beef stew meat", + "beer", + "onions", + "ground black pepper", + "salt", + "carrots", + "marjoram", + "garlic", + "ground allspice", + "fresh parsley" + ] + }, + { + "id": 10102, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "salt", + "white wine", + "whole milk", + "celery", + "nutmeg", + "unsalted butter", + "carrots", + "pepper", + "lean ground beef", + "onions" + ] + }, + { + "id": 24619, + "cuisine": "greek", + "ingredients": [ + "large egg yolks", + "vanilla extract", + "cinnamon", + "Swerve Sweetener", + "2% lowfat greek yogurt" + ] + }, + { + "id": 3267, + "cuisine": "italian", + "ingredients": [ + "whole wheat pasta", + "olive oil", + "cream cheese", + "spinach", + "ground black pepper", + "garlic cloves", + "kosher salt", + "grated parmesan cheese", + "sliced mushrooms", + "milk", + "chopped fresh chives" + ] + }, + { + "id": 42852, + "cuisine": "british", + "ingredients": [ + "eggs", + "vegetable oil", + "onions", + "ground black pepper", + "sausages", + "milk", + "salt", + "mustard", + "flour", + "thyme" + ] + }, + { + "id": 36843, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "grated parmesan cheese", + "salt", + "olive oil", + "baby spinach", + "canned low sodium chicken broth", + "dry white wine", + "onions", + "unsalted butter", + "turkey sausage" + ] + }, + { + "id": 34469, + "cuisine": "thai", + "ingredients": [ + "dark soy sauce", + "light soy sauce", + "ground white pepper", + "chiles", + "vegetable oil", + "chicken", + "gai lan", + "large eggs", + "chopped garlic", + "sugar", + "rice vermicelli" + ] + }, + { + "id": 34085, + "cuisine": "southern_us", + "ingredients": [ + "pickling spices", + "olive oil", + "walnut halves", + "cider vinegar", + "red apples", + "collard greens", + "kosher salt", + "salt", + "sugar", + "water" + ] + }, + { + "id": 20608, + "cuisine": "italian", + "ingredients": [ + "salt", + "plum tomatoes", + "olive oil", + "chopped fresh herbs", + "baguette", + "garlic cloves", + "ground black pepper", + "fresh basil leaves" + ] + }, + { + "id": 22448, + "cuisine": "spanish", + "ingredients": [ + "heirloom tomatoes", + "extra-virgin olive oil", + "sea salt", + "baguette", + "garlic cloves" + ] + }, + { + "id": 43881, + "cuisine": "italian", + "ingredients": [ + "water", + "strong white bread flour", + "salt", + "olive oil", + "caster sugar", + "yeast" + ] + }, + { + "id": 42321, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "grassfed beef", + "salt", + "smoked paprika", + "anise seed", + "pepper", + "cinnamon", + "garlic cloves", + "cumin", + "white pepper", + "onion powder", + "yellow onion", + "coriander", + "tomato sauce", + "garlic powder", + "ginger", + "fat" + ] + }, + { + "id": 19345, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "shallots", + "extra-virgin olive oil", + "kosher salt", + "pappardelle", + "garlic cloves", + "ground black pepper", + "heirloom tomatoes", + "pecorino cheese", + "chopped fresh thyme", + "fresh oregano" + ] + }, + { + "id": 18927, + "cuisine": "cajun_creole", + "ingredients": [ + "paprika", + "cayenne pepper", + "shellfish", + "crab boil", + "garlic powder", + "garlic", + "lemon pepper", + "old bay seasoning", + "margarine", + "chicken" + ] + }, + { + "id": 33828, + "cuisine": "italian", + "ingredients": [ + "water chestnuts", + "scallions", + "frisee", + "olive oil", + "freshly ground pepper", + "tuna", + "pasta", + "extra-virgin olive oil", + "garlic cloves", + "granny smith apples", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 25003, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "hyssop", + "tomato sauce", + "soft goat's cheese", + "black olives", + "fresh oregano leaves" + ] + }, + { + "id": 27072, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon wedge", + "Italian seasoned breadcrumbs", + "parmigiano reggiano cheese", + "salt", + "ground black pepper", + "vegetable oil", + "chopped fresh herbs", + "eggs", + "boneless skinless chicken breasts", + "all-purpose flour" + ] + }, + { + "id": 41623, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "tortillas", + "boneless chicken", + "garlic cloves", + "monterey jack", + "boneless chicken skinless thigh", + "shallots", + "salt", + "corn tortillas", + "grape tomatoes", + "cider vinegar", + "vegetable oil", + "chopped onion", + "oregano", + "fresh spinach", + "jalapeno chilies", + "purple onion", + "ancho chile pepper" + ] + }, + { + "id": 11724, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "balsamic vinegar", + "garlic chili sauce", + "toasted sesame seeds", + "green onions", + "garlic cloves", + "bok choy", + "udon", + "napa cabbage", + "carrots", + "canola oil", + "chunky peanut butter", + "vegetable broth", + "red bell pepper" + ] + }, + { + "id": 49235, + "cuisine": "italian", + "ingredients": [ + "fennel bulb", + "onions", + "sausage casings", + "dry white wine", + "marinara sauce", + "olive oil", + "rotini" + ] + }, + { + "id": 38297, + "cuisine": "greek", + "ingredients": [ + "plain flour", + "olive oil", + "grated parmesan cheese", + "garlic", + "minced beef", + "eggs", + "ground nutmeg", + "butter", + "salt", + "onions", + "ground cinnamon", + "eggplant", + "parsley", + "passata", + "ground white pepper", + "milk", + "ground black pepper", + "red wine", + "fines herbes" + ] + }, + { + "id": 23617, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "hot sauce", + "white rice", + "chicken", + "diced tomatoes", + "sweet corn", + "garlic" + ] + }, + { + "id": 39010, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "salt", + "chopped fresh thyme", + "fresh lemon juice", + "morel", + "heavy cream", + "boiling water", + "shallots", + "freshly ground pepper" + ] + }, + { + "id": 45418, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "balsamic vinegar", + "yellow onion", + "crushed tomatoes", + "garlic", + "black pepper", + "crushed red pepper flakes", + "fresh oregano", + "olive oil", + "salt" + ] + }, + { + "id": 33131, + "cuisine": "irish", + "ingredients": [ + "powdered sugar", + "butter", + "cream cheese", + "irish cream liqueur", + "salt", + "sugar", + "color food green", + "semisweet baking chocolate", + "eggs", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 38421, + "cuisine": "cajun_creole", + "ingredients": [ + "low sodium chicken broth", + "garlic", + "rotel tomatoes", + "dried basil", + "cajun seasoning", + "yellow onion", + "chicken", + "sugar", + "flour", + "smoked sausage", + "celery", + "bell pepper", + "butter", + "rice" + ] + }, + { + "id": 39638, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "okra", + "olive oil", + "curry powder", + "cumin seed", + "salt" + ] + }, + { + "id": 30416, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "corn kernels", + "sea salt", + "spaghetti squash", + "cumin", + "water", + "chili powder", + "garlic", + "toasted pine nuts", + "black beans", + "ground pepper", + "extra-virgin olive oil", + "goat cheese", + "ground cumin", + "green chile", + "lime", + "lime wedges", + "purple onion", + "chopped cilantro" + ] + }, + { + "id": 3017, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "coarse sea salt", + "white pepper", + "rice vinegar", + "pork belly", + "salt", + "Shaoxing wine", + "chinese five-spice powder" + ] + }, + { + "id": 42136, + "cuisine": "jamaican", + "ingredients": [ + "water", + "chopped fresh thyme", + "scallions", + "lite coconut milk", + "callaloo", + "salt", + "corn starch", + "sweet potatoes", + "sirloin steak", + "garlic cloves", + "white onion", + "chile pepper", + "okra", + "canola oil" + ] + }, + { + "id": 4773, + "cuisine": "italian", + "ingredients": [ + "warm water", + "all-purpose flour", + "olive oil", + "active dry yeast", + "white sugar", + "salt" + ] + }, + { + "id": 7002, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "spaghetti", + "non-fat sour cream", + "shredded mozzarella cheese", + "small curd cottage cheese" + ] + }, + { + "id": 47557, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "green enchilada sauce", + "lime juice", + "chili powder", + "chicken", + "flour tortillas", + "monterey jack", + "honey", + "heavy cream" + ] + }, + { + "id": 25788, + "cuisine": "thai", + "ingredients": [ + "cold water", + "lemongrass", + "button mushrooms", + "galangal", + "Thai chili paste", + "granulated sugar", + "tamarind paste", + "fish sauce", + "tamarind", + "cilantro leaves", + "medium shrimp", + "lime juice", + "chile pepper", + "lime leaves" + ] + }, + { + "id": 8028, + "cuisine": "italian", + "ingredients": [ + "water", + "garlic cloves", + "fresh rosemary", + "chopped onion", + "bay leaf", + "dried lentils", + "Italian turkey sausage", + "fennel seeds", + "swiss chard", + "carrots" + ] + }, + { + "id": 19958, + "cuisine": "korean", + "ingredients": [ + "granulated sugar", + "garlic", + "fish sauce", + "sesame oil", + "Gochujang base", + "shrimp paste", + "melissa", + "fresh ginger", + "daikon", + "scallions" + ] + }, + { + "id": 4812, + "cuisine": "italian", + "ingredients": [ + "chopped fresh chives", + "fresh oregano", + "fresh basil", + "fresh parsley", + "alfredo sauce mix" + ] + }, + { + "id": 22918, + "cuisine": "mexican", + "ingredients": [ + "silver tequila", + "orange juice", + "lime juice", + "cocktail cherries", + "sour mix", + "triple sec", + "melon liqueur", + "orange", + "grenadine syrup" + ] + }, + { + "id": 48593, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "guacamole", + "salt", + "sour cream", + "jack", + "chicken breasts", + "salsa", + "onions", + "tortillas", + "chili powder", + "oil", + "oregano", + "pepper", + "green bell pepper, slice", + "garlic", + "red bell pepper", + "cumin" + ] + }, + { + "id": 20431, + "cuisine": "mexican", + "ingredients": [ + "corn tortilla chips", + "low sodium chicken broth", + "dark brown sugar", + "shredded Monterey Jack cheese", + "white onion", + "extra-virgin olive oil", + "chipotle peppers", + "tomato sauce", + "apple cider vinegar", + "taco seasoning", + "refried beans", + "garlic", + "ground beef" + ] + }, + { + "id": 6208, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "water", + "potatoes", + "chopped onion", + "rock salt", + "tomato purée", + "sugar", + "amchur", + "green peas", + "cumin seed", + "ground turmeric", + "chat masala", + "lime juice", + "butter", + "green chilies", + "carrots", + "red chili powder", + "buns", + "finely chopped onion", + "cilantro leaves", + "oil", + "masala" + ] + }, + { + "id": 45050, + "cuisine": "indian", + "ingredients": [ + "winter squash", + "raisins", + "cauliflower florets", + "lemon juice", + "basmati rice", + "cream", + "bell pepper", + "ginger", + "salt", + "green beans", + "potatoes", + "diced tomatoes", + "non dairy milk", + "carrots", + "ground turmeric", + "water", + "chili powder", + "peas", + "ground coriander", + "onions" + ] + }, + { + "id": 5699, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "shallots", + "veal rib chops", + "sage leaves", + "beef stock", + "butter", + "bay leaf", + "prosciutto", + "chopped fresh thyme", + "all-purpose flour", + "chicken stock", + "dry white wine", + "whipping cream" + ] + }, + { + "id": 46720, + "cuisine": "french", + "ingredients": [ + "whipped cream", + "bananas", + "crepes", + "chocolate-hazelnut spread" + ] + }, + { + "id": 33507, + "cuisine": "italian", + "ingredients": [ + "salt", + "chicken", + "golden mushroom soup", + "onions", + "sour cream", + "bacon", + "corned beef" + ] + }, + { + "id": 32136, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "lime", + "cracked black pepper", + "oyster sauce", + "sirloin", + "minced garlic", + "watercress", + "rice vinegar", + "tomatoes", + "soy sauce", + "cooking oil", + "purple onion", + "fish sauce", + "kosher salt", + "sesame oil", + "salt" + ] + }, + { + "id": 34649, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "tomatoes", + "water", + "cannellini beans", + "dry pasta", + "carrots", + "cabbage", + "fennel seeds", + "black pepper", + "olive oil", + "bacon", + "chickpeas", + "onions", + "chicken broth", + "pepper", + "tomato juice", + "crushed red pepper flakes", + "garlic cloves", + "dried oregano", + "white bread", + "fresh spinach", + "dried basil", + "parsley", + "salt", + "ground turkey" + ] + }, + { + "id": 42001, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "baking powder", + "chopped onion", + "olive oil", + "salt", + "poblano chiles", + "cotija", + "garlic", + "mexican chorizo", + "tomatoes", + "flour", + "fresh oregano", + "monterey jack" + ] + }, + { + "id": 43196, + "cuisine": "greek", + "ingredients": [ + "cherry tomatoes", + "cauliflower", + "zesty italian dressing", + "feta cheese", + "pitted black olives", + "broccoli" + ] + }, + { + "id": 33476, + "cuisine": "mexican", + "ingredients": [ + "hot pepper sauce", + "heavy cream", + "all-purpose flour", + "sour cream", + "ketchup", + "low sodium chicken broth", + "garlic", + "fresh mushrooms", + "ground cumin", + "pepper", + "butter", + "salt", + "red bell pepper", + "chiles", + "flour tortillas", + "extra-virgin olive oil", + "yellow onion", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 23926, + "cuisine": "french", + "ingredients": [ + "active dry yeast", + "all-purpose flour", + "warm water", + "egg yolks", + "eggs", + "egg whites", + "white sugar", + "water", + "butter" + ] + }, + { + "id": 17756, + "cuisine": "thai", + "ingredients": [ + "cooked turkey", + "tamarind juice", + "peeled shrimp", + "fresh basil leaves", + "fish sauce", + "peanuts", + "shallots", + "rice vinegar", + "green chile", + "lime", + "green onions", + "garlic", + "canola oil", + "seedless cucumber", + "palm sugar", + "thai chile", + "beansprouts" + ] + }, + { + "id": 46660, + "cuisine": "mexican", + "ingredients": [ + "lime", + "onions", + "rotisserie chicken", + "salsa verde", + "chopped cilantro fresh", + "cotija", + "corn tortillas" + ] + }, + { + "id": 39546, + "cuisine": "mexican", + "ingredients": [ + "sliced olives", + "shredded cheese", + "onions", + "ground chipotle chile pepper", + "diced tomatoes", + "ground turkey", + "sliced green onions", + "queso fresco", + "enchilada sauce", + "cumin", + "diced green chilies", + "garlic", + "tomato soup" + ] + }, + { + "id": 44610, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "cilantro leaves", + "fresh lime juice", + "tomatoes", + "jalapeno chilies", + "carrots", + "medium shrimp", + "avocado", + "ground black pepper", + "halibut", + "chopped cilantro", + "mayonaise", + "purple onion", + "corn tortillas", + "canola oil" + ] + }, + { + "id": 16361, + "cuisine": "southern_us", + "ingredients": [ + "frozen peaches", + "baking powder", + "apple butter", + "granulated sugar", + "salt", + "unsalted butter", + "bourbon whiskey", + "yellow corn meal", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 21878, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "eggplant", + "chili powder", + "cayenne pepper", + "coconut milk", + "kaffir lime leaves", + "red chili peppers", + "shrimp paste", + "garlic", + "cinnamon sticks", + "chicken pieces", + "fresh basil", + "lemongrass", + "shallots", + "tomato ketchup", + "red bell pepper", + "ground cumin", + "tomatoes", + "brown sugar", + "curry sauce", + "ginger", + "ground coriander", + "fresh lime juice" + ] + }, + { + "id": 22661, + "cuisine": "spanish", + "ingredients": [ + "minced garlic", + "green peas", + "ripe olives", + "roasted red peppers", + "chopped onion", + "olive oil", + "chickpeas", + "saffron", + "black pepper", + "cooking spray", + "flat leaf parsley" + ] + }, + { + "id": 41281, + "cuisine": "chinese", + "ingredients": [ + "tea bags", + "medium dry sherry", + "fermented black beans", + "pure maple syrup", + "finely chopped onion", + "garlic cloves", + "soy sauce", + "peeled fresh ginger", + "baby back ribs", + "cider vinegar", + "vegetable oil", + "boiling water" + ] + }, + { + "id": 42216, + "cuisine": "vietnamese", + "ingredients": [ + "avocado", + "warm water", + "rice noodles", + "carrots", + "natural peanut butter", + "Sriracha", + "cilantro leaves", + "low sodium soy sauce", + "light agave nectar", + "garlic", + "cucumber", + "romaine lettuce", + "sesame oil", + "rice" + ] + }, + { + "id": 6986, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "fresh pasta", + "cream", + "sea salt", + "fresh white truffles", + "large garlic cloves", + "unsalted butter" + ] + }, + { + "id": 41163, + "cuisine": "mexican", + "ingredients": [ + "fresh corn", + "unsalted butter", + "scallions", + "ground cumin", + "kosher salt", + "hot chili powder", + "fresh lemon juice", + "olive oil", + "cilantro leaves", + "skirt steak", + "black pepper", + "roasted red peppers", + "garlic cloves" + ] + }, + { + "id": 45195, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "yellow squash", + "Himalayan salt", + "nopales", + "broth", + "red potato", + "corn", + "ground black pepper", + "raw cashews", + "smoked paprika", + "water", + "garlic powder", + "shredded lettuce", + "walnuts", + "cream", + "nutritional yeast", + "onion powder", + "salsa", + "cumin" + ] + }, + { + "id": 11033, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "unsalted butter", + "all-purpose flour", + "honey", + "salt", + "baking powder" + ] + }, + { + "id": 35847, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "warm water", + "whole milk", + "active dry yeast", + "salt", + "sugar", + "large eggs" + ] + }, + { + "id": 42534, + "cuisine": "italian", + "ingredients": [ + "chocolate milk", + "ice cream", + "bourbon whiskey", + "cinnamon", + "brewed coffee" + ] + }, + { + "id": 7939, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "mint leaves", + "shrimp", + "tomatoes", + "warm water", + "garlic", + "cashew nuts", + "sugar", + "shallots", + "noodles", + "garlic paste", + "lime juice", + "cilantro leaves" + ] + }, + { + "id": 46579, + "cuisine": "thai", + "ingredients": [ + "savoy cabbage", + "minced onion", + "flank steak", + "garlic cloves", + "fresh lime juice", + "green bell pepper", + "jalapeno chilies", + "salt", + "carrots", + "chopped fresh mint", + "brown sugar", + "cooking spray", + "soba noodles", + "cucumber", + "reduced sodium soy sauce", + "green onions", + "roasted peanuts", + "red bell pepper" + ] + }, + { + "id": 46714, + "cuisine": "japanese", + "ingredients": [ + "long-grain rice", + "salt", + "rice vinegar", + "sugar" + ] + }, + { + "id": 24258, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "KRAFT Mexican Style Shredded Four Cheese with a TOUCH OF PHILADELPHIA", + "garlic", + "Oscar Mayer Bacon", + "chopped cilantro fresh", + "finely chopped onion", + "Philadelphia Cream Cheese" + ] + }, + { + "id": 16785, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "onions", + "lime juice", + "salt", + "cumin", + "pepper", + "garlic", + "oregano", + "pork shoulder roast", + "orange juice" + ] + }, + { + "id": 49134, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "hoisin sauce", + "ginger", + "corn starch", + "ketchup", + "rice wine", + "peanut oil", + "chicken broth", + "water", + "sesame oil", + "scallions", + "soy sauce", + "flank steak", + "chili bean sauce", + "onions" + ] + }, + { + "id": 7261, + "cuisine": "filipino", + "ingredients": [ + "bay leaves", + "black peppercorns", + "garlic cloves", + "soy sauce", + "white vinegar", + "fryer chickens" + ] + }, + { + "id": 32075, + "cuisine": "indian", + "ingredients": [ + "ground cardamom", + "mango", + "whole milk", + "fresh mint", + "sugar", + "corn starch", + "cardamom pods", + "liqueur" + ] + }, + { + "id": 35135, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "hellmann' or best food real mayonnais", + "chili powder", + "flour tortillas", + "ground beef", + "prepar salsa" + ] + }, + { + "id": 46432, + "cuisine": "mexican", + "ingredients": [ + "jicama", + "salt", + "carrots", + "napa cabbage", + "rice vinegar", + "vegetable oil", + "cilantro leaves", + "fresh lime juice", + "honey", + "ancho powder", + "freshly ground pepper" + ] + }, + { + "id": 3253, + "cuisine": "irish", + "ingredients": [ + "pecorino romano cheese", + "mashed potatoes", + "frozen peas", + "ground turkey", + "chicken gravy mix" + ] + }, + { + "id": 17582, + "cuisine": "thai", + "ingredients": [ + "water", + "part-skim mozzarella cheese", + "garlic cloves", + "fresh basil", + "eggplant", + "golden raisins", + "olive oil", + "grated parmesan cheese", + "fresh lemon juice", + "black pepper", + "pitas", + "salt" + ] + }, + { + "id": 23202, + "cuisine": "mexican", + "ingredients": [ + "instant rice", + "butter", + "onions", + "water", + "salt", + "chicken bouillon granules", + "lime", + "green chilies", + "minced garlic", + "cilantro" + ] + }, + { + "id": 42691, + "cuisine": "irish", + "ingredients": [ + "sugar", + "jalapeno chilies", + "chopped onion", + "water", + "red wine", + "sweet cherries", + "white wine vinegar", + "granny smith apples", + "peeled fresh ginger" + ] + }, + { + "id": 30489, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "olive oil", + "cinnamon", + "vegetable broth", + "cumin", + "kosher salt", + "garbanzo beans", + "cilantro", + "onions", + "fennel seeds", + "curry powder", + "sweet potatoes", + "cauliflower florets", + "frozen peas", + "tomato sauce", + "fresh ginger", + "red pepper flakes", + "greek yogurt" + ] + }, + { + "id": 19379, + "cuisine": "mexican", + "ingredients": [ + "flour", + "black olives", + "shredded lettuce", + "onions", + "cooked chicken", + "enchilada sauce", + "tomatoes", + "tex-mex shredded cheese" + ] + }, + { + "id": 26684, + "cuisine": "french", + "ingredients": [ + "parsnips", + "cheese", + "bosc pears", + "crème fraîche", + "sourdough bread", + "salt", + "extra-virgin olive oil", + "freshly ground pepper" + ] + }, + { + "id": 38091, + "cuisine": "cajun_creole", + "ingredients": [ + "fat free milk", + "cooked bacon", + "green bell pepper", + "quickcooking grits", + "creole seasoning", + "light butter", + "cooking spray", + "light cream cheese", + "fat free less sodium chicken broth", + "diced tomatoes", + "large shrimp" + ] + }, + { + "id": 23157, + "cuisine": "japanese", + "ingredients": [ + "tomatoes", + "vegetable oil", + "carrots", + "reduced sodium soy sauce", + "rice vinegar", + "caster sugar", + "ginger", + "onions", + "lettuce", + "radishes", + "edamame" + ] + }, + { + "id": 30083, + "cuisine": "french", + "ingredients": [ + "fine salt", + "superfine sugar", + "free range egg", + "milk", + "white bread flour", + "instant yeast" + ] + }, + { + "id": 24341, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil cooking spray", + "vanilla extract", + "skim milk", + "egg substitute", + "sugar" + ] + }, + { + "id": 45977, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "sesame oil", + "yellow chives", + "sugar", + "cooking oil", + "beansprouts", + "dark soy sauce", + "mein", + "oyster sauce", + "soy sauce", + "Shaoxing wine", + "white sesame seeds" + ] + }, + { + "id": 29215, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "salt", + "kirby cucumbers", + "cayenne pepper", + "sesame oil", + "rice vinegar", + "garlic", + "scallions" + ] + }, + { + "id": 29818, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "grated parmesan cheese", + "cremini mushrooms", + "unsalted butter", + "large garlic cloves", + "ground black pepper", + "whole milk", + "olive oil", + "lasagna noodles", + "all-purpose flour" + ] + }, + { + "id": 40030, + "cuisine": "mexican", + "ingredients": [ + "instant rice", + "sour cream", + "chicken broth", + "garlic powder", + "chicken", + "diced onions", + "shredded cheddar cheese", + "cumin", + "tomatoes", + "cream of chicken soup" + ] + }, + { + "id": 28607, + "cuisine": "chinese", + "ingredients": [ + "pepper flakes", + "water", + "hoisin sauce", + "rice vinegar", + "soy sauce", + "fresh ginger", + "boneless skinless chicken breasts", + "corn starch", + "brown sugar", + "olive oil", + "green onions", + "rice", + "ketchup", + "sesame seeds", + "sesame oil" + ] + }, + { + "id": 34317, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "fine sea salt", + "sardines", + "preserved lemon", + "fennel", + "salt", + "fennel seeds", + "water", + "purple onion", + "fresh dill", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 36006, + "cuisine": "french", + "ingredients": [ + "fresh thyme", + "all-purpose flour", + "burgundy wine", + "beef round", + "tomato paste", + "butter", + "fresh mushrooms", + "fresh parsley", + "bacon drippings", + "beef demi-glace", + "beef broth", + "bay leaf", + "fresh rosemary", + "bouquet garni", + "sherry wine", + "onions" + ] + }, + { + "id": 18360, + "cuisine": "russian", + "ingredients": [ + "pepper", + "crumbs", + "salt", + "eggs", + "minced onion", + "paprika", + "sour cream", + "tomato juice", + "ground sirloin", + "green pepper", + "shortening", + "flour", + "stewed tomatoes" + ] + }, + { + "id": 41359, + "cuisine": "italian", + "ingredients": [ + "shallots", + "fat skimmed chicken broth", + "evaporated milk", + "all-purpose flour", + "salt", + "( oz.) tomato paste", + "butter", + "fresh basil leaves" + ] + }, + { + "id": 16789, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium soy sauce", + "vegetable oil", + "toasted sesame oil", + "kosher salt", + "szechwan peppercorns", + "rice vinegar", + "sugar", + "tahini", + "crushed red pepper flakes", + "sesame seeds", + "ramen noodles", + "scallions" + ] + }, + { + "id": 23831, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "cherry tomatoes", + "basil", + "burrata", + "sea salt", + "olive oil", + "arugula" + ] + }, + { + "id": 28549, + "cuisine": "italian", + "ingredients": [ + "spinach", + "ground black pepper", + "ground pork", + "fresh parsley", + "pepper", + "grated parmesan cheese", + "salt", + "bread crumbs", + "large eggs", + "orzo", + "onions", + "chicken broth", + "minced garlic", + "pecorino romano cheese", + "ground beef" + ] + }, + { + "id": 29268, + "cuisine": "italian", + "ingredients": [ + "plain yogurt", + "lemon curd", + "strawberries", + "mint sprigs", + "crème de cassis", + "orange peel" + ] + }, + { + "id": 34866, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "large eggs", + "crème fraîche", + "honey", + "butter", + "milk", + "flour", + "brown sugar", + "culinary lavender", + "apricot halves" + ] + }, + { + "id": 42961, + "cuisine": "filipino", + "ingredients": [ + "chicken broth", + "olive oil", + "garlic", + "fresh leav spinach", + "mung beans", + "onions", + "tomatoes", + "salt and ground black pepper", + "boneless pork loin", + "water", + "prawns" + ] + }, + { + "id": 49456, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "asian fish sauce", + "light brown sugar", + "cilantro leaves", + "lime", + "chili flakes", + "juice" + ] + }, + { + "id": 32360, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "olive oil", + "ground beef", + "shredded cheddar cheese", + "tortilla chips", + "kosher salt", + "ground black pepper", + "shredded Monterey Jack cheese", + "corn kernels", + "enchilada sauce" + ] + }, + { + "id": 37401, + "cuisine": "italian", + "ingredients": [ + "ruby port", + "balsamic vinegar", + "unflavored gelatin", + "semisweet chocolate", + "vanilla extract", + "sugar", + "whole milk", + "canola oil", + "cherries", + "whipping cream" + ] + }, + { + "id": 6324, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "hot water", + "dried porcini mushrooms", + "salt", + "fresh parsley", + "orzo", + "low salt chicken broth", + "olive oil", + "freshly ground pepper", + "onions" + ] + }, + { + "id": 27312, + "cuisine": "southern_us", + "ingredients": [ + "water", + "butter", + "sugar", + "large eggs", + "vanilla extract", + "evaporated milk", + "raisins", + "red delicious apples", + "french bread", + "crushed pineapple" + ] + }, + { + "id": 21529, + "cuisine": "thai", + "ingredients": [ + "red curry paste", + "fish sauce", + "dried red chile peppers", + "coconut milk", + "vegetable oil", + "chicken" + ] + }, + { + "id": 34592, + "cuisine": "mexican", + "ingredients": [ + "lasagna noodles", + "ground beef", + "taco seasoning mix", + "prepar salsa", + "Mexican cheese blend", + "salsa", + "cottage cheese", + "grated parmesan cheese" + ] + }, + { + "id": 1127, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "fresh cilantro", + "ginger", + "coconut milk", + "tumeric", + "chicken breasts", + "oil", + "fresh pineapple", + "fish sauce", + "cherry tomatoes", + "red curry paste", + "bamboo shoots", + "sugar", + "red pepper", + "garlic cloves" + ] + }, + { + "id": 18241, + "cuisine": "greek", + "ingredients": [ + "milk", + "unsalted butter", + "all-purpose flour", + "ground lamb", + "tomato paste", + "feta cheese", + "tomatoes with juice", + "onions", + "pasta", + "eggplant", + "cinnamon", + "garlic cloves", + "olive oil", + "large eggs", + "ground allspice" + ] + }, + { + "id": 5666, + "cuisine": "korean", + "ingredients": [ + "red chili peppers", + "miso paste", + "medium firm tofu", + "minced garlic", + "shimeji mushrooms", + "kimchi", + "soy sauce", + "ginger", + "juice", + "water", + "scallions", + "onions" + ] + }, + { + "id": 17126, + "cuisine": "french", + "ingredients": [ + "sliced almonds", + "frozen pastry puff sheets", + "almond paste", + "unsalted butter", + "almond extract", + "dried cherry", + "bosc pears", + "sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 37144, + "cuisine": "moroccan", + "ingredients": [ + "dry yeast", + "oil", + "warm water", + "butter", + "semolina", + "salt", + "sugar", + "flour" + ] + }, + { + "id": 10930, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "ear of corn", + "cinnamon", + "sweetened condensed milk", + "baking powder", + "coconut milk", + "melted butter", + "salt" + ] + }, + { + "id": 34187, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "salt", + "green onions", + "ground pepper", + "buttermilk", + "potatoes", + "onions" + ] + }, + { + "id": 19658, + "cuisine": "japanese", + "ingredients": [ + "pepper", + "soy sauce", + "Japanese rice vinegar", + "wakame", + "sesame seeds", + "blood orange", + "persian cucumber" + ] + }, + { + "id": 28187, + "cuisine": "brazilian", + "ingredients": [ + "ketchup", + "dry white wine", + "oil", + "tomato paste", + "ground black pepper", + "garlic", + "onions", + "ground nutmeg", + "chicken thigh fillets", + "white mushrooms", + "table cream", + "dijon mustard", + "salt", + "oregano" + ] + }, + { + "id": 43474, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "butter", + "ham", + "milk", + "yellow onion", + "chicken leg quarters", + "water", + "salt", + "carrots", + "chicken broth", + "cooking oil", + "elbow macaroni", + "celery" + ] + }, + { + "id": 20526, + "cuisine": "chinese", + "ingredients": [ + "honey", + "chili paste", + "olive oil", + "soy sauce", + "flank steak" + ] + }, + { + "id": 3342, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "quail", + "salt", + "seedless green grape", + "prosciutto", + "grappa", + "black pepper", + "olive oil", + "thyme sprigs", + "fat free less sodium chicken broth", + "shallots" + ] + }, + { + "id": 8138, + "cuisine": "irish", + "ingredients": [ + "chicken stock", + "potatoes", + "back bacon", + "black pepper", + "savoy cabbage", + "chopped tomatoes" + ] + }, + { + "id": 47344, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "lemongrass", + "sesame oil", + "rice vinegar", + "cucumber", + "water", + "spring onions", + "ginger", + "green chilies", + "coriander", + "soy sauce", + "shredded carrots", + "basil", + "rolls", + "vermicelli noodles", + "fish sauce", + "lime juice", + "shallots", + "garlic", + "shrimp" + ] + }, + { + "id": 26437, + "cuisine": "brazilian", + "ingredients": [ + "mayonaise", + "olive oil", + "red pepper flakes", + "garlic cloves", + "white onion", + "green onions", + "all-purpose flour", + "bread crumbs", + "salt and ground black pepper", + "salt", + "annatto", + "chicken stock", + "large egg whites", + "vegetable oil", + "rotisserie chicken" + ] + }, + { + "id": 4012, + "cuisine": "italian", + "ingredients": [ + "salt", + "lemon zest", + "green beans", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 19934, + "cuisine": "italian", + "ingredients": [ + "spinach", + "shallots", + "angel hair", + "fat free less sodium chicken broth", + "lemon juice", + "black pepper", + "salt", + "capers", + "olive oil", + "large shrimp" + ] + }, + { + "id": 21278, + "cuisine": "japanese", + "ingredients": [ + "sake", + "chicken drumsticks", + "miso paste", + "scallions" + ] + }, + { + "id": 34963, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "vegetable oil", + "black pepper", + "cumin seed", + "ground cloves", + "salt", + "ground ginger", + "potatoes" + ] + }, + { + "id": 16134, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "eggs", + "vegetable oil", + "mirin", + "soy sauce", + "white sugar" + ] + }, + { + "id": 35486, + "cuisine": "russian", + "ingredients": [ + "salt", + "onions", + "white vinegar", + "freshly ground pepper", + "water", + "cucumber", + "sweet paprika" + ] + }, + { + "id": 1929, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "lemon zest", + "salt", + "mayonaise", + "vegetable oil", + "fresh lime juice", + "fresh basil", + "egg yolks", + "crabmeat", + "saltines", + "pepper", + "old bay seasoning", + "chopped cilantro fresh" + ] + }, + { + "id": 16742, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "lemon juice", + "fresh tomatoes", + "butter", + "garlic powder", + "flounder fillets", + "pepper", + "salt" + ] + }, + { + "id": 8982, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "all-purpose flour", + "parmigiano reggiano cheese", + "ricotta", + "unsalted butter", + "grated nutmeg", + "large eggs" + ] + }, + { + "id": 25571, + "cuisine": "british", + "ingredients": [ + "turnips", + "russet potatoes", + "bay leaf", + "parsnips", + "beef broth", + "onions", + "green cabbage", + "bacon", + "fresh parsley", + "leeks", + "low salt chicken broth" + ] + }, + { + "id": 36702, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "cinnamon", + "boneless, skinless chicken breast", + "ground tumeric", + "olive oil", + "cumin" + ] + }, + { + "id": 12081, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "swiss chard", + "ziti", + "salt", + "California bay leaves", + "rib", + "sugar", + "parmigiano reggiano cheese", + "dry red wine", + "grated nutmeg", + "juice", + "tomatoes", + "unsalted butter", + "fresh mozzarella", + "all-purpose flour", + "sausage meat", + "onions", + "celery ribs", + "white pepper", + "whole milk", + "extra-virgin olive oil", + "garlic cloves", + "carrots" + ] + }, + { + "id": 14288, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "rock shrimp", + "dry white wine", + "boneless skinless chicken breast halves", + "tomato paste", + "chopped fresh chives", + "fresh lemon juice", + "black pepper", + "heavy cream", + "chopped garlic" + ] + }, + { + "id": 16811, + "cuisine": "italian", + "ingredients": [ + "warm water", + "large eggs", + "all-purpose flour", + "crystallized ginger", + "butter", + "dried cranberries", + "sliced almonds", + "cooking spray", + "orange rind", + "sugar", + "dry yeast", + "salt" + ] + }, + { + "id": 27235, + "cuisine": "italian", + "ingredients": [ + "lemon wedge", + "oil", + "dried oregano", + "cauliflower", + "crushed red pepper", + "carrots", + "florets", + "fresh lemon juice", + "olive oil", + "broccoli", + "olives" + ] + }, + { + "id": 37005, + "cuisine": "mexican", + "ingredients": [ + "great northern beans", + "chili seasoning", + "vegetable oil", + "celery", + "Crystal Farms Reduced Fat Shredded Marble Jack Cheese", + "chili powder", + "salt", + "onions", + "green bell pepper", + "ground black pepper", + "Mexican beer", + "roasted tomatoes", + "kidney beans", + "lean ground beef", + "green chilies" + ] + }, + { + "id": 18045, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "plum tomatoes", + "onions", + "garlic cloves", + "serrano chile" + ] + }, + { + "id": 4626, + "cuisine": "mexican", + "ingredients": [ + "yellow corn meal", + "jalapeno chilies", + "canola oil", + "sugar", + "salt", + "eggs", + "baking powder", + "low-fat buttermilk", + "all-purpose flour" + ] + }, + { + "id": 23766, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "italian sausage", + "onions", + "rolls", + "dijon mustard", + "giardiniera" + ] + }, + { + "id": 6557, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "fresh lime juice", + "black pepper", + "purple onion", + "avocado", + "jalapeno chilies", + "kosher salt", + "tortilla chips" + ] + }, + { + "id": 3178, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "garlic", + "sesame oil", + "scallions", + "chili pepper", + "salt", + "string beans", + "vegetable oil", + "oyster sauce" + ] + }, + { + "id": 41054, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "chicken drumsticks", + "vinegar", + "oil", + "garlic powder", + "salt", + "ketchup", + "cajun seasoning", + "italian seasoning" + ] + }, + { + "id": 7974, + "cuisine": "brazilian", + "ingredients": [ + "butter", + "salt", + "white rice" + ] + }, + { + "id": 7922, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "purple onion", + "lime juice", + "garlic", + "avocado", + "I Can't Believe It's Not Butter!® Spread", + "mango", + "cod", + "chili powder", + "chopped cilantro fresh" + ] + }, + { + "id": 38596, + "cuisine": "french", + "ingredients": [ + "green peppercorns", + "rack of lamb", + "shallots", + "unsalted butter", + "brine", + "dry red wine" + ] + }, + { + "id": 17201, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "salt", + "black pepper", + "cooking spray", + "manicotti", + "frozen chopped spinach", + "fresh parmesan cheese", + "tomato basil sauce", + "water", + "fat-free cottage cheese", + "dried oregano" + ] + }, + { + "id": 11207, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "hominy", + "shredded cabbage", + "salt", + "chicken", + "crushed tomatoes", + "jalapeno chilies", + "lime wedges", + "garlic cloves", + "water", + "radishes", + "Mexican oregano", + "yellow onion", + "fresh cilantro", + "bay leaves", + "tomatillos", + "hot water" + ] + }, + { + "id": 26075, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "chiffonade", + "light coconut milk", + "rounds", + "olive oil", + "ginger", + "purple onion", + "toasted sesame seeds", + "curry powder", + "red pepper flakes", + "garlic", + "corn starch", + "green onions", + "vegetable broth", + "broccoli", + "chopped cilantro fresh" + ] + }, + { + "id": 30102, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "chopped green bell pepper", + "salt", + "dried oregano", + "lime juice", + "tomatillos", + "diced celery", + "green chile", + "ground red pepper", + "garlic cloves", + "ground cumin", + "olive oil", + "clam juice", + "chopped cilantro fresh" + ] + }, + { + "id": 10494, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "green onions", + "onions", + "red chile sauce", + "flour tortillas", + "salt", + "black pepper", + "sliced black olives", + "vegetable oil", + "iceberg lettuce", + "shredded cheddar cheese", + "guacamole", + "ground beef" + ] + }, + { + "id": 48234, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "butter", + "cayenne pepper", + "plain yogurt", + "garlic", + "shrimp", + "black pepper", + "paprika", + "lemon juice", + "fresh ginger", + "salt", + "cumin" + ] + }, + { + "id": 18110, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "vegetable oil", + "greens", + "garlic paste", + "yoghurt", + "breast", + "tomato paste", + "garam masala", + "garlic", + "tumeric", + "spring onions", + "onions" + ] + }, + { + "id": 16416, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "salt", + "coconut sugar", + "boneless skinless chicken breasts", + "coconut milk", + "olive oil", + "red bell pepper", + "white onion", + "garlic", + "ground turmeric" + ] + }, + { + "id": 32673, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "light soy sauce", + "sesame oil", + "oil", + "pepper", + "broccoli florets", + "salt", + "corn starch", + "sugar", + "fresh ginger", + "beef fillet", + "garlic cloves", + "water", + "Shaoxing wine", + "chinese five-spice powder" + ] + }, + { + "id": 22606, + "cuisine": "mexican", + "ingredients": [ + "canela", + "cheese", + "masa harina", + "vegetable oil", + "fresh masa", + "ricotta" + ] + }, + { + "id": 13988, + "cuisine": "italian", + "ingredients": [ + "diced onions", + "potatoes", + "spicy pork sausage", + "water", + "heavy cream", + "minced garlic", + "vegetable oil", + "kale", + "chicken soup base" + ] + }, + { + "id": 42450, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "milk", + "salt", + "eggs", + "vegetable oil", + "yellow corn meal", + "baking powder" + ] + }, + { + "id": 37168, + "cuisine": "french", + "ingredients": [ + "olive oil", + "red wine vinegar", + "radishes", + "curly endive", + "shallots", + "coriander seeds", + "bacon slices" + ] + }, + { + "id": 12224, + "cuisine": "russian", + "ingredients": [ + "dried fruit", + "cold water", + "hot water", + "honey", + "potato starch", + "cinnamon sticks" + ] + }, + { + "id": 15381, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "onions", + "chipotle chile", + "hot water", + "adobo", + "garlic cloves", + "chopped cilantro fresh", + "guajillo chiles", + "fresh lime juice" + ] + }, + { + "id": 46287, + "cuisine": "italian", + "ingredients": [ + "Knorr® Pasta Sides™ - Alfredo", + "tomatoes", + "fresh basil leaves", + "provolone cheese", + "vegetable oil", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 5567, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "shallots", + "rice vinegar", + "dried wood ear mushrooms", + "fish sauce", + "lime juice", + "garlic", + "rice flour", + "water", + "ground pork", + "oil", + "sugar", + "bawang goreng", + "salt", + "carrots" + ] + }, + { + "id": 37926, + "cuisine": "mexican", + "ingredients": [ + "cider vinegar", + "poblano peppers", + "vegetable broth", + "cumin seed", + "black peppercorns", + "coriander seeds", + "grapeseed oil", + "salt", + "adobo sauce", + "tomato paste", + "water", + "extra firm tofu", + "garlic", + "chipotles in adobo", + "soy sauce", + "nutritional yeast", + "raw sugar", + "yellow onion", + "dried leaves oregano" + ] + }, + { + "id": 37052, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "butter", + "shredded Monterey Jack cheese", + "flour", + "sour cream", + "flour tortillas", + "green chilies", + "cooked chicken", + "onions" + ] + }, + { + "id": 1100, + "cuisine": "mexican", + "ingredients": [ + "shredded cheese", + "mashed potatoes", + "corn tortillas", + "vegetable oil" + ] + }, + { + "id": 12181, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "whole wheat tortillas", + "olive oil", + "cumin", + "honey", + "chees fresh mozzarella", + "chili flakes", + "zucchini" + ] + }, + { + "id": 5404, + "cuisine": "british", + "ingredients": [ + "melted butter", + "curry powder", + "cheddar cheese", + "cheese", + "black pepper", + "liquid honey", + "port wine", + "unsalted butter" + ] + }, + { + "id": 20825, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "chopped cilantro fresh", + "kosher salt", + "garlic", + "avocado", + "diced tomatoes", + "lime", + "roasted tomatoes" + ] + }, + { + "id": 23653, + "cuisine": "irish", + "ingredients": [ + "phyllo dough", + "fresh orange juice", + "salt", + "rhubarb", + "ground nutmeg", + "vanilla extract", + "maple sugar", + "ground cloves", + "whipping cream", + "maple syrup", + "ground cinnamon", + "butter", + "non-fat sour cream", + "grated orange" + ] + }, + { + "id": 16114, + "cuisine": "french", + "ingredients": [ + "italian tomatoes", + "olive oil", + "yellow bell pepper", + "flat leaf parsley", + "chicken broth", + "white onion", + "zucchini", + "salt", + "fresh basil leaves", + "tomato sauce", + "dried thyme", + "red pepper flakes", + "red bell pepper", + "dried oregano", + "black pepper", + "eggplant", + "garlic", + "onions" + ] + }, + { + "id": 15386, + "cuisine": "italian", + "ingredients": [ + "wine", + "sliced mushrooms", + "celtic salt", + "boneless skinless chicken breast halves", + "almond flour", + "cooking sherry", + "coconut oil", + "thyme leaves", + "dried oregano" + ] + }, + { + "id": 3117, + "cuisine": "southern_us", + "ingredients": [ + "green onions", + "salt", + "sweetened coconut flakes", + "cream cheese, soften", + "ground red pepper", + "diced celery", + "curry powder", + "ginger", + "cooked shrimp" + ] + }, + { + "id": 13627, + "cuisine": "greek", + "ingredients": [ + "grill seasoning", + "dried oregano", + "ground cinnamon", + "ground turkey", + "frozen spinach", + "feta cheese crumbles", + "ground cumin", + "chili powder", + "coriander" + ] + }, + { + "id": 37630, + "cuisine": "japanese", + "ingredients": [ + "red chili peppers", + "miso paste", + "chili oil", + "garlic", + "table salt", + "water", + "sesame oil", + "ginger", + "dumplings", + "soy sauce", + "green onions", + "ground pork", + "rice vinegar", + "sugar", + "dumpling wrappers", + "napa cabbage", + "dipping sauces" + ] + }, + { + "id": 19400, + "cuisine": "french", + "ingredients": [ + "pearl onions", + "garlic", + "Burgundy wine", + "chicken bouillon granules", + "ground black pepper", + "fresh mushrooms", + "marjoram", + "cold water", + "sliced carrots", + "bay leaf", + "boneless skinless chicken breast halves", + "bacon bits", + "dried thyme", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 36688, + "cuisine": "vietnamese", + "ingredients": [ + "low sodium soy sauce", + "radishes", + "cilantro leaves", + "papaya", + "sesame oil", + "fresh lime juice", + "light brown sugar", + "fresh ginger", + "rice noodles", + "kosher salt", + "flank steak", + "peanut oil" + ] + }, + { + "id": 5563, + "cuisine": "brazilian", + "ingredients": [ + "raspberries", + "chia seeds", + "almond milk", + "açai", + "medjool date", + "cacao nibs" + ] + }, + { + "id": 42304, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "extra-virgin olive oil", + "fresh parmesan cheese", + "garlic cloves", + "penne", + "butter", + "fresh basil leaves", + "pinenuts", + "salt" + ] + }, + { + "id": 41147, + "cuisine": "chinese", + "ingredients": [ + "picante sauce", + "garlic cloves", + "cooked rice", + "peeled fresh ginger", + "sliced green onions", + "low sodium soy sauce", + "pork tenderloin", + "red bell pepper", + "natural peanut butter", + "dark sesame oil" + ] + }, + { + "id": 2677, + "cuisine": "southern_us", + "ingredients": [ + "water", + "bacon", + "celery", + "potatoes", + "salt", + "ground black pepper", + "rendered bacon fat", + "onions", + "shucked oysters", + "clam juice", + "all-purpose flour" + ] + }, + { + "id": 734, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "minced garlic", + "grated parmesan cheese", + "dried oregano", + "pizza crust", + "olive oil", + "butter", + "fresh spinach", + "sweet onion", + "jalapeno chilies", + "sundried tomato pesto", + "feta cheese", + "basil dried leaves" + ] + }, + { + "id": 29077, + "cuisine": "korean", + "ingredients": [ + "ginger ale", + "watercress", + "kosher salt", + "scallions", + "napa cabbage", + "carrots", + "red chili peppers", + "rice vinegar" + ] + }, + { + "id": 44315, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "chicken breasts", + "corn starch", + "eggs", + "honey", + "sauce", + "water", + "salt", + "panko breadcrumbs", + "soy sauce", + "Sriracha", + "garlic cloves" + ] + }, + { + "id": 40739, + "cuisine": "southern_us", + "ingredients": [ + "salt and ground black pepper", + "all-purpose flour", + "fresh basil leaves", + "corn kernels", + "large eggs", + "sharp cheddar cheese", + "honey", + "whole milk", + "scallions", + "unsalted butter", + "cayenne pepper" + ] + }, + { + "id": 33697, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped green bell pepper", + "chopped celery", + "chopped onion", + "medium shrimp", + "tomatoes", + "vegetable oil", + "hot sauce", + "long-grain rice", + "sliced green onions", + "red snapper", + "bay leaves", + "all-purpose flour", + "okra", + "crayfish", + "water", + "clam juice", + "creole seasoning", + "garlic cloves" + ] + }, + { + "id": 15725, + "cuisine": "russian", + "ingredients": [ + "bread crumb fresh", + "green onions", + "sardines", + "olive oil", + "all-purpose flour", + "grated lemon peel", + "halibut fillets", + "large garlic cloves", + "fresh parsley", + "large eggs", + "sauce" + ] + }, + { + "id": 7870, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "Anaheim chile", + "dried oregano", + "salt", + "vegetable oil" + ] + }, + { + "id": 5322, + "cuisine": "chinese", + "ingredients": [ + "szechwan peppercorns", + "garlic", + "chinese five-spice powder", + "red chili peppers", + "chili oil", + "salt", + "onions", + "vegetable oil", + "tamari soy sauce", + "ground beef", + "chinese noodles", + "ginger", + "scallions", + "iceberg lettuce" + ] + }, + { + "id": 40943, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "green peas", + "curry paste", + "water", + "coconut milk", + "sugar", + "oil", + "boneless chicken breast", + "lime leaves" + ] + }, + { + "id": 29041, + "cuisine": "french", + "ingredients": [ + "shallots", + "garlic cloves", + "bacon slices", + "flat leaf parsley", + "dry red wine", + "low salt chicken broth", + "crimini mushrooms", + "all-purpose flour", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 47043, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "onions", + "black beans", + "soft fresh goat cheese", + "tostadas", + "large eggs", + "chorizo", + "fresh tomato salsa" + ] + }, + { + "id": 9956, + "cuisine": "southern_us", + "ingredients": [ + "fresh basil", + "butter", + "garlic cloves", + "pimentos", + "whole kernel corn, drain", + "zucchini", + "salt", + "lemon pepper", + "vegetable oil", + "shredded mozzarella cheese" + ] + }, + { + "id": 2687, + "cuisine": "indian", + "ingredients": [ + "serrano chilies", + "mint leaves", + "salt", + "oil", + "fresh lime juice", + "cauliflower", + "potatoes", + "purple onion", + "ear of corn", + "chutney", + "lime", + "vegetable oil", + "chickpeas", + "greek yogurt", + "ground cumin", + "sugar", + "french fried onions", + "cilantro leaves", + "black salt", + "chaat masala" + ] + }, + { + "id": 34656, + "cuisine": "vietnamese", + "ingredients": [ + "pepper", + "garlic", + "tomatoes", + "chicken meat", + "coriander", + "onion salt", + "cucumber", + "sugar", + "teriyaki sauce" + ] + }, + { + "id": 5498, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "peeled tomatoes", + "crushed red pepper", + "dried oregano", + "dried porcini mushrooms", + "finely chopped onion", + "hot water", + "capers", + "dried basil", + "anchovy fillets", + "minced garlic", + "fusilli", + "olives" + ] + }, + { + "id": 11004, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "pepper", + "peanuts", + "boneless skinless chicken breasts", + "cilantro", + "tamarind paste", + "cumin", + "soy sauce", + "curry powder", + "zucchini", + "cinnamon", + "salt", + "coconut milk", + "coconut oil", + "water", + "garbanzo beans", + "brown rice", + "garlic", + "ginger root", + "cauliflower flowerets", + "fresh cilantro", + "pumpkin purée", + "paprika", + "peanut butter", + "onions" + ] + }, + { + "id": 37002, + "cuisine": "mexican", + "ingredients": [ + "shredded cabbage", + "salsa", + "onions", + "hominy", + "butter", + "pork roast", + "chicken stock", + "lime wedges", + "tortilla chips", + "oregano", + "radishes", + "salt", + "garlic cloves" + ] + }, + { + "id": 510, + "cuisine": "moroccan", + "ingredients": [ + "prunes", + "laurel leaves", + "lamb shoulder", + "ground turmeric", + "ground ginger", + "honey", + "almonds", + "cinnamon sticks", + "clove", + "pepper", + "sesame seeds", + "salt", + "ground cumin", + "ground cinnamon", + "olive oil", + "vegetable stock", + "onions" + ] + }, + { + "id": 570, + "cuisine": "indian", + "ingredients": [ + "water", + "diced tomatoes", + "ground coriander", + "tomato paste", + "garam masala", + "cayenne pepper", + "basmati rice", + "garlic powder", + "cilantro leaves", + "onions", + "tumeric", + "sea salt", + "chickpeas", + "cumin" + ] + }, + { + "id": 21325, + "cuisine": "cajun_creole", + "ingredients": [ + "caster sugar", + "yeast", + "eggs", + "vegetable oil", + "plain flour", + "milk", + "powdered sugar", + "lard" + ] + }, + { + "id": 16684, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "raw sugar", + "seedless red grapes", + "fresh rosemary", + "chopped fresh thyme", + "salt", + "water", + "all purpose unbleached flour", + "chopped walnuts", + "yellow corn meal", + "dry yeast", + "cracked black pepper", + "grated lemon peel" + ] + }, + { + "id": 2079, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "vegetable oil", + "corn starch", + "ground lamb", + "soy sauce", + "green onions", + "fresh lemon juice", + "cooked white rice", + "zucchini", + "large garlic cloves", + "low salt chicken broth", + "minced garlic", + "sesame oil", + "garlic chili sauce", + "onions" + ] + }, + { + "id": 36504, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "Shaoxing wine", + "chinese chives", + "pepper", + "vegetable oil", + "soy sauce", + "green onions", + "beansprouts", + "fish sauce", + "minced garlic", + "salt" + ] + }, + { + "id": 23294, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "dry white wine", + "garlic cloves", + "collard greens", + "cheese tortellini", + "fresh parsley", + "olive oil", + "crushed red pepper", + "onions", + "fresh rosemary", + "diced tomatoes", + "green beans" + ] + }, + { + "id": 44801, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "black olives", + "monterey jack", + "guacamole", + "sour cream", + "green onions", + "ground beef", + "chopped tomatoes", + "salsa" + ] + }, + { + "id": 21636, + "cuisine": "brazilian", + "ingredients": [ + "white vinegar", + "eggs", + "olive oil", + "lemon juice", + "avocado", + "granny smith apples", + "peas", + "lettuce", + "cooked rice", + "pimentos", + "shrimp", + "mustard", + "black pepper", + "salt" + ] + }, + { + "id": 48314, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "tomatillos", + "fresh mushrooms", + "fresh lime juice", + "ground cloves", + "olive oil", + "anise", + "garlic cloves", + "chiles", + "halibut fillets", + "Italian parsley leaves", + "ground coriander", + "ground cumin", + "water", + "ground black pepper", + "salt", + "fresh mint" + ] + }, + { + "id": 2998, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "fresh ginger", + "wonton wrappers", + "scallions", + "eggs", + "black pepper", + "shallots", + "garlic", + "pork bones", + "scallion greens", + "soy sauce", + "shell-on shrimp", + "ground pork", + "onions", + "lower sodium chicken broth", + "water", + "sesame oil", + "salt", + "canola oil" + ] + }, + { + "id": 14231, + "cuisine": "british", + "ingredients": [ + "mayonaise", + "vegetable oil", + "lager beer", + "fresh tarragon", + "halibut fillets", + "old bay seasoning", + "red potato", + "self rising flour", + "malt vinegar" + ] + }, + { + "id": 6850, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "ground cumin", + "minced garlic", + "lemon juice", + "dried thyme", + "dried oregano", + "chili flakes", + "salt" + ] + }, + { + "id": 40301, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "crushed garlic", + "salt", + "onions", + "fresh spinach", + "ginger", + "cumin seed", + "red chili powder", + "heavy cream", + "ground coriander", + "ground cumin", + "garam masala", + "paneer", + "oil" + ] + }, + { + "id": 9688, + "cuisine": "british", + "ingredients": [ + "butter", + "sweetened condensed milk", + "bananas", + "heavy whipping cream", + "graham cracker crumbs", + "confectioners sugar", + "vanilla" + ] + }, + { + "id": 38671, + "cuisine": "vietnamese", + "ingredients": [ + "white pepper", + "mint leaves", + "rice vermicelli", + "rice vinegar", + "fresh lime juice", + "thai basil", + "green leaf lettuce", + "salt", + "garlic cloves", + "large shrimp", + "water", + "green onions", + "unsalted dry roast peanuts", + "dark brown sugar", + "serrano chile", + "fish sauce", + "granulated sugar", + "pickling cucumbers", + "cilantro leaves", + "corn starch", + "canola oil" + ] + }, + { + "id": 17250, + "cuisine": "mexican", + "ingredients": [ + "flour", + "sunflower oil", + "taco seasoning", + "coriander", + "water", + "sweet potatoes", + "salt", + "almond milk", + "jalapeno chilies", + "seeds", + "sweet corn", + "coconut milk", + "black beans", + "cooking spray", + "purple onion", + "cumin seed", + "gluten-free flour" + ] + }, + { + "id": 1328, + "cuisine": "italian", + "ingredients": [ + "sugar", + "ground black pepper", + "yellow bell pepper", + "all-purpose flour", + "fennel seeds", + "romano cheese", + "cooking spray", + "purple onion", + "warm water", + "zucchini", + "extra-virgin olive oil", + "dried oregano", + "fresh basil", + "active dry yeast", + "balsamic vinegar", + "salt" + ] + }, + { + "id": 17856, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "olive oil", + "napa cabbage", + "chow mein noodles", + "sweet chili sauce", + "green onions", + "dried shiitake mushrooms", + "soy sauce", + "sesame seeds", + "crushed red pepper", + "carrots", + "water", + "sesame oil", + "garlic cloves" + ] + }, + { + "id": 30836, + "cuisine": "italian", + "ingredients": [ + "salt", + "pepper", + "noodles", + "mozzarella cheese", + "ground beef", + "marinara sauce", + "oregano" + ] + }, + { + "id": 32034, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "grits", + "water", + "parmigiano reggiano cheese", + "shrimp", + "unsalted butter", + "garlic cloves", + "milk", + "heavy cream", + "arugula" + ] + }, + { + "id": 49180, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "black pepper", + "shallots", + "lemon juice", + "pimenton", + "eggs", + "fresh ginger", + "garlic", + "chopped parsley", + "ground cumin", + "ground cinnamon", + "cracker meal", + "red wine vinegar", + "greek yogurt", + "ground lamb", + "mint", + "harissa", + "salt", + "chopped cilantro" + ] + }, + { + "id": 399, + "cuisine": "spanish", + "ingredients": [ + "instant rice", + "paprika", + "salt", + "large shrimp", + "saffron threads", + "ground black pepper", + "extra-virgin olive oil", + "chopped onion", + "water", + "green peas", + "fresh oregano", + "lower sodium chicken broth", + "chopped green bell pepper", + "garlic", + "fresh lemon juice" + ] + }, + { + "id": 40532, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "garlic cloves", + "italian sausage", + "ricotta cheese", + "onions", + "pasta", + "egg whites", + "chopped parsley", + "pasta sauce", + "shredded mozzarella cheese", + "oregano" + ] + }, + { + "id": 20411, + "cuisine": "cajun_creole", + "ingredients": [ + "smoked turkey", + "crushed red pepper flakes", + "scallions", + "canola oil", + "ground black pepper", + "garlic", + "celery", + "chicken stock", + "flour", + "yellow onion", + "cooked white rice", + "kosher salt", + "oxtails", + "creole seasoning", + "pork sausages" + ] + }, + { + "id": 35208, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "fresh lemon juice", + "fontina cheese", + "boneless chicken breast halves", + "freshly ground pepper", + "chicken stock", + "unsalted butter", + "all-purpose flour", + "fresh spinach", + "large garlic cloves", + "oil" + ] + }, + { + "id": 44762, + "cuisine": "southern_us", + "ingredients": [ + "lamb shanks", + "water", + "manchego cheese", + "quickcooking grits", + "fine sea salt", + "scallions", + "chicken stock", + "kosher salt", + "olive oil", + "fennel bulb", + "large garlic cloves", + "oyster mushrooms", + "sour cream", + "hot red pepper flakes", + "cider vinegar", + "sun-dried tomatoes", + "whole milk", + "worcestershire sauce", + "purple onion", + "plum tomatoes", + "soy sauce", + "honey", + "radicchio", + "bourbon whiskey", + "chopped celery", + "thyme leaves" + ] + }, + { + "id": 39283, + "cuisine": "italian", + "ingredients": [ + "butter", + "cream cheese", + "heavy cream" + ] + }, + { + "id": 42186, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "lean ground beef", + "cheese", + "tortilla chips", + "cumin", + "tomatoes", + "minced garlic", + "diced tomatoes", + "salt", + "sour cream", + "lettuce", + "brown sugar", + "worcestershire sauce", + "black olives", + "enchilada sauce", + "chorizo sausage", + "eggs", + "ground pepper", + "cilantro", + "salsa", + "onions" + ] + }, + { + "id": 45758, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "ricotta cheese", + "fresh parsley", + "fennel seeds", + "large eggs", + "salt", + "olive oil", + "crushed red pepper flakes", + "tomato sauce", + "lean ground beef", + "fresh oregano" + ] + }, + { + "id": 33997, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "ginger", + "oil", + "basmati rice", + "eggplant", + "purple onion", + "wholemeal flour", + "olive oil", + "garlic", + "mustard seeds", + "fresh red chili", + "vegetable stock", + "yellow split peas", + "curry paste" + ] + }, + { + "id": 23107, + "cuisine": "italian", + "ingredients": [ + "Alfredo sauce", + "fresh basil", + "garlic cloves", + "freshly ground pepper", + "olive oil" + ] + }, + { + "id": 18647, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "vegetable oil", + "all-purpose flour", + "ground cinnamon", + "large eggs", + "sea salt", + "white peaches", + "baking powder", + "vanilla", + "turbinado", + "granulated sugar", + "buttermilk" + ] + }, + { + "id": 8933, + "cuisine": "italian", + "ingredients": [ + "eggs", + "salt", + "frozen chopped spinach", + "ricotta cheese", + "boneless skinless chicken breast halves", + "tomatoes", + "garlic", + "pepper", + "shredded mozzarella cheese" + ] + }, + { + "id": 2034, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "granulated sugar", + "lemon", + "baking soda", + "baking powder", + "salt", + "brown sugar", + "flour", + "buttermilk", + "nutmeg", + "peaches", + "butter", + "corn starch" + ] + }, + { + "id": 23319, + "cuisine": "mexican", + "ingredients": [ + "chopped fresh mint", + "sugar", + "ice", + "cold water", + "fresh pineapple", + "fresh lime juice" + ] + }, + { + "id": 16017, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "rice vinegar", + "spring onions", + "nori", + "mirin", + "soba noodles", + "wasabi", + "shoyu" + ] + }, + { + "id": 27153, + "cuisine": "jamaican", + "ingredients": [ + "ketchup", + "fresh cilantro", + "quinoa", + "fresh orange juice", + "hot curry powder", + "plantains", + "coconut oil", + "water", + "macadamia nuts", + "chicken breasts", + "cayenne pepper", + "coconut milk", + "eggs", + "molasses", + "lime", + "green onions", + "garlic", + "red bell pepper", + "soy sauce", + "coconut", + "fresh ginger", + "cinnamon", + "banana peppers", + "fresh pineapple" + ] + }, + { + "id": 46, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "onions", + "curry leaves", + "green chilies", + "salt", + "fresh ginger", + "dal" + ] + }, + { + "id": 11573, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "mirin", + "peanut oil", + "seltzer", + "vegetables", + "all-purpose flour", + "soy sauce", + "beef bouillon", + "corn starch", + "kosher salt", + "large eggs", + "large shrimp" + ] + }, + { + "id": 12341, + "cuisine": "italian", + "ingredients": [ + "cooking oil", + "butter", + "ground black pepper", + "salami", + "goat cheese", + "grated parmesan cheese", + "salt", + "large eggs", + "baking potatoes" + ] + }, + { + "id": 40438, + "cuisine": "southern_us", + "ingredients": [ + "corn husks", + "whipping cream", + "baking powder", + "all-purpose flour", + "large eggs", + "salt", + "sugar", + "butter" + ] + }, + { + "id": 20129, + "cuisine": "cajun_creole", + "ingredients": [ + "cinnamon", + "white cake mix", + "sprinkles", + "powdered sugar", + "butter", + "food colouring", + "vanilla" + ] + }, + { + "id": 49046, + "cuisine": "cajun_creole", + "ingredients": [ + "flour", + "yellow bell pepper", + "salt", + "fresh mushrooms", + "skim milk", + "cracked black pepper", + "garlic", + "light cream cheese", + "red bell pepper", + "tomatoes", + "cajun seasoning", + "linguine", + "fatfree lowsodium chicken broth", + "scallions", + "olive oil", + "chicken breast strips", + "purple onion", + "Smart Balance Cooking Spray" + ] + }, + { + "id": 5256, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "low-fat buttermilk", + "all-purpose flour", + "baking soda", + "vegetable oil", + "green chile", + "baking powder", + "red bell pepper", + "yellow corn meal", + "frozen whole kernel corn", + "salt" + ] + }, + { + "id": 32567, + "cuisine": "chinese", + "ingredients": [ + "water", + "chicken stock cubes", + "chicken broth", + "wonton wrappers", + "scallions", + "soy sauce", + "ground pork", + "corn starch", + "sesame oil", + "rice vinegar" + ] + }, + { + "id": 18767, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "soft fresh goat cheese", + "fresh basil", + "marinara sauce", + "mozzarella cheese", + "ciabatta", + "eggplant" + ] + }, + { + "id": 39797, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "ground black pepper", + "dry red wine", + "carrots", + "tomato paste", + "olive oil", + "grated parmesan cheese", + "jumbo pasta shells", + "tomatoes", + "part-skim mozzarella cheese", + "large garlic cloves", + "chickpeas", + "fresh marjoram", + "zucchini", + "salt", + "onions" + ] + }, + { + "id": 19190, + "cuisine": "italian", + "ingredients": [ + "water", + "baking mix", + "pizza sauce", + "chopped green bell pepper", + "shredded mozzarella cheese", + "italian sausage", + "yellow onion" + ] + }, + { + "id": 31178, + "cuisine": "italian", + "ingredients": [ + "porcini", + "minced garlic", + "artichoke hearts", + "lemon", + "flat leaf parsley", + "fresh rosemary", + "water", + "salt and ground black pepper", + "crushed red pepper flakes", + "chopped garlic", + "pecorino cheese", + "boar", + "fennel bulb", + "extra-virgin olive oil", + "chicken stock", + "white wine", + "olive oil", + "cannellini beans", + "lemon juice" + ] + }, + { + "id": 21847, + "cuisine": "jamaican", + "ingredients": [ + "brown sugar", + "butter", + "all-purpose flour", + "ground nutmeg", + "vanilla extract", + "baking soda", + "raisins", + "eggs", + "bananas", + "salt" + ] + }, + { + "id": 37465, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "extra-virgin olive oil", + "fresh lemon juice", + "pepper", + "purple onion", + "flat leaf parsley", + "cannellini beans", + "garlic cloves" + ] + }, + { + "id": 44920, + "cuisine": "mexican", + "ingredients": [ + "chopped green chilies", + "cilantro leaves", + "onions", + "pico de gallo", + "butter", + "sour cream", + "guacamole", + "salsa", + "shredded cheddar cheese", + "green enchilada sauce", + "corn tortillas" + ] + }, + { + "id": 18298, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "artichokes", + "rigatoni", + "shallots", + "brine-cured black olives", + "eggplant", + "salt", + "large garlic cloves", + "red bell pepper" + ] + }, + { + "id": 4527, + "cuisine": "mexican", + "ingredients": [ + "black peppercorns", + "garlic", + "clove", + "water", + "guajillo chiles", + "salt", + "ancho", + "olive oil" + ] + }, + { + "id": 20988, + "cuisine": "greek", + "ingredients": [ + "cracked black pepper", + "chickpeas", + "diced onions", + "raspberry vinegar", + "ground cumin", + "olive oil", + "salt", + "cilantro sprigs", + "chopped cilantro fresh" + ] + }, + { + "id": 12092, + "cuisine": "indian", + "ingredients": [ + "powdered sugar", + "ghee", + "cardamom", + "all-purpose flour", + "gram flour" + ] + }, + { + "id": 31194, + "cuisine": "italian", + "ingredients": [ + "orzo pasta", + "onions", + "chicken broth", + "garlic", + "extra-virgin olive oil", + "pepper", + "salt" + ] + }, + { + "id": 36094, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "onions", + "pepper", + "cilantro", + "red bell pepper", + "tortillas", + "shrimp", + "lime", + "garlic", + "chipotle chile powder" + ] + }, + { + "id": 48244, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "salt", + "large shrimp", + "flour tortillas", + "red bell pepper", + "olive oil", + "sauce", + "cheese", + "onions" + ] + }, + { + "id": 32472, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "vegetable oil", + "flour", + "boudin", + "ground cayenne pepper" + ] + }, + { + "id": 18511, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "hoisin sauce", + "vegetable oil", + "scallions", + "onions", + "beef", + "mixed mushrooms", + "star anise", + "cinnamon sticks", + "thai basil", + "jalapeno chilies", + "ginger", + "garlic cloves", + "fish sauce", + "Sriracha", + "rice noodles", + "beef broth", + "beansprouts" + ] + }, + { + "id": 28235, + "cuisine": "italian", + "ingredients": [ + "eggs", + "all-purpose flour", + "white sugar", + "baking powder", + "hot water", + "milk", + "anise extract", + "vegetable oil", + "confectioners sugar" + ] + }, + { + "id": 15496, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ground black pepper", + "italian seasoned dry bread crumbs", + "olive oil", + "fresh mushrooms", + "white wine", + "pepperoncini", + "boneless skinless chicken breast halves", + "parmesan cheese", + "onions" + ] + }, + { + "id": 26304, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "shallots", + "fresh parsley", + "olive oil", + "red bell pepper", + "green bell pepper", + "beef broth", + "plum tomatoes", + "freshly grated parmesan", + "rotini" + ] + }, + { + "id": 4803, + "cuisine": "mexican", + "ingredients": [ + "pork loin", + "beef broth", + "masa harina", + "water", + "garlic", + "lard", + "california chile", + "baking powder", + "sour cream", + "corn husks", + "salt", + "onions" + ] + }, + { + "id": 41097, + "cuisine": "indian", + "ingredients": [ + "green peas", + "cinnamon sticks", + "clove", + "chopped onion", + "cold water", + "salt", + "basmati rice", + "vegetable oil", + "cardamom pods" + ] + }, + { + "id": 13609, + "cuisine": "italian", + "ingredients": [ + "salt", + "active dry yeast", + "warm water", + "all purpose unbleached flour" + ] + }, + { + "id": 48170, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "corn starch", + "jam", + "red chile sauce", + "canola oil", + "new york strip steaks" + ] + }, + { + "id": 23337, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic", + "pinto beans", + "brown sugar", + "roma tomatoes", + "salt", + "ground cumin", + "chile powder", + "salsa verde", + "purple onion", + "Hatch Green Chiles", + "black pepper", + "cilantro", + "beer" + ] + }, + { + "id": 19222, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "butter", + "pecans", + "sugar", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 14344, + "cuisine": "italian", + "ingredients": [ + "white button mushrooms", + "ground black pepper", + "chicken cutlets", + "kosher salt", + "flour", + "chopped parsley", + "marsala wine", + "unsalted butter", + "garlic", + "chicken stock", + "olive oil", + "shallots" + ] + }, + { + "id": 1382, + "cuisine": "indian", + "ingredients": [ + "cream", + "paneer", + "oil", + "cashew nuts", + "tomatoes", + "potatoes", + "cilantro leaves", + "ghee", + "garam masala", + "salt", + "corn flour", + "garlic paste", + "chili powder", + "green chilies", + "onions" + ] + }, + { + "id": 18900, + "cuisine": "british", + "ingredients": [ + "water", + "eggs", + "all-purpose flour", + "milk", + "sausage links" + ] + }, + { + "id": 2717, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "large eggs", + "fresh lemon juice", + "milk", + "all-purpose flour", + "granulated sugar", + "grated lemon zest", + "powdered sugar", + "salt" + ] + }, + { + "id": 16106, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "white peppercorns", + "store bought low sodium chicken broth", + "scallions", + "chinese ham", + "ginger", + "eggs", + "corn starch" + ] + }, + { + "id": 8976, + "cuisine": "thai", + "ingredients": [ + "sugar", + "unsalted dry roast peanuts", + "beansprouts", + "rice sticks", + "garlic cloves", + "cooked chicken breasts", + "low sodium soy sauce", + "anchovy paste", + "garlic chili sauce", + "sliced green onions", + "fat free less sodium chicken broth", + "peanut oil", + "snow peas" + ] + }, + { + "id": 6490, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "small red potato", + "sausage links", + "zucchini", + "rotini", + "parmesan cheese", + "carrots", + "water", + "diced tomatoes", + "onions" + ] + }, + { + "id": 38149, + "cuisine": "italian", + "ingredients": [ + "salt", + "lemon juice", + "dried basil", + "freshly ground pepper", + "extra-virgin olive oil", + "garlic cloves", + "uncooked vermicelli", + "fresh parsley" + ] + }, + { + "id": 47267, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "garlic", + "lime juice", + "salt" + ] + }, + { + "id": 6133, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "frozen pastry puff sheets", + "salt", + "onions", + "green bell pepper", + "corn husks", + "whipping cream", + "red bell pepper", + "water", + "butter", + "tomato basil sauce", + "pepper", + "egg yolks", + "all-purpose flour" + ] + }, + { + "id": 39414, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "ground pork", + "plum tomatoes", + "pepper", + "garlic cloves", + "vegetable oil", + "onions", + "fish sauce", + "salt", + "japanese eggplants" + ] + }, + { + "id": 11934, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "soy sauce", + "florets", + "onions", + "canned low sodium chicken broth", + "cooking oil", + "broccoli", + "boiling potatoes", + "tomatoes", + "lime juice", + "salt", + "bamboo shoots", + "brown sugar", + "basil leaves", + "thai green curry paste" + ] + }, + { + "id": 43784, + "cuisine": "mexican", + "ingredients": [ + "green olives", + "green plantains", + "sazon seasoning", + "shredded cheddar cheese", + "salt", + "sofrito", + "water", + "garlic salt", + "tomato sauce", + "lean ground beef", + "canola oil" + ] + }, + { + "id": 27249, + "cuisine": "vietnamese", + "ingredients": [ + "lime", + "shallots", + "dried shiitake mushrooms", + "minced pork", + "fish sauce", + "bean thread vermicelli", + "garlic", + "oil", + "spring roll wrappers", + "palm sugar", + "cutlet", + "peanut oil", + "beans", + "egg whites", + "cilantro leaves", + "carrots" + ] + }, + { + "id": 48980, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "refrigerated piecrusts", + "vanilla extract", + "cream sweeten whip", + "sweet potatoes", + "heavy cream", + "chopped pecans", + "brown sugar", + "English toffee bits", + "vanilla wafer crumbs", + "pumpkin pie spice", + "ground cinnamon", + "large eggs", + "butter", + "salt" + ] + }, + { + "id": 28224, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "lemon", + "basmati rice", + "peanuts", + "green chilies", + "tumeric", + "salt", + "vegetable oil", + "mustard seeds" + ] + }, + { + "id": 20592, + "cuisine": "southern_us", + "ingredients": [ + "cocoa", + "flour", + "salt", + "milk", + "butter", + "chocolate frosting", + "baking powder", + "chocolate morsels", + "sugar", + "large eggs", + "vanilla extract" + ] + }, + { + "id": 25520, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "honey", + "paprika", + "sweet paprika", + "saffron", + "sultana", + "mint leaves", + "cilantro leaves", + "ground turmeric", + "stock", + "chopped tomatoes", + "lamb shoulder", + "apricots", + "preserved lemon", + "olive oil", + "garlic", + "onions", + "ground cumin" + ] + }, + { + "id": 14459, + "cuisine": "jamaican", + "ingredients": [ + "coconut", + "marmalade", + "guava", + "guava paste", + "Equal Sweetener", + "water", + "pineapple", + "puff pastry sheets", + "orange", + "sugar syrup" + ] + }, + { + "id": 30035, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "garlic cloves", + "tomatoes", + "vegetable oil spray", + "balsamic vinegar", + "eggplant", + "butternut squash", + "red bell pepper", + "fresh basil", + "yellow crookneck squash", + "penne pasta" + ] + }, + { + "id": 4300, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "mole sauce", + "cilantro", + "chicken stock" + ] + }, + { + "id": 7520, + "cuisine": "french", + "ingredients": [ + "lemon", + "green beans", + "slivered almonds" + ] + }, + { + "id": 8248, + "cuisine": "mexican", + "ingredients": [ + "lime", + "tomatoes", + "garlic", + "avocado", + "cilantro", + "white onion" + ] + }, + { + "id": 25283, + "cuisine": "southern_us", + "ingredients": [ + "sweet corn kernels", + "almond milk", + "coconut oil", + "salt", + "cornmeal", + "extra large eggs", + "corn starch", + "raw honey", + "scallions" + ] + }, + { + "id": 31298, + "cuisine": "spanish", + "ingredients": [ + "cooked rice", + "mushrooms", + "garlic cloves", + "olive oil", + "salt", + "chicken pieces", + "tomato sauce", + "diced tomatoes", + "chopped parsley", + "roasted red peppers", + "green pepper", + "onions" + ] + }, + { + "id": 29661, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "vegetable oil", + "green onions", + "kimchi", + "jasmine rice", + "ginger", + "chicken breast fillets", + "sesame oil", + "frozen peas" + ] + }, + { + "id": 7334, + "cuisine": "french", + "ingredients": [ + "water", + "bourbon whiskey", + "sugar", + "large eggs", + "all-purpose flour", + "unsalted butter", + "salt", + "peaches", + "heavy cream" + ] + }, + { + "id": 43567, + "cuisine": "japanese", + "ingredients": [ + "garam masala", + "ginger", + "oil", + "tomatoes", + "coriander powder", + "cilantro leaves", + "ground turmeric", + "fresh peas", + "salt", + "onions", + "garlic paste", + "chili powder", + "cumin seed", + "cabbage" + ] + }, + { + "id": 15153, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "taco seasoning mix", + "tortilla chips", + "shredded cheddar cheese", + "garlic", + "sour cream", + "tomatoes", + "green onions", + "lemon juice", + "refried beans", + "black olives" + ] + }, + { + "id": 26033, + "cuisine": "italian", + "ingredients": [ + "cream cheese", + "parmesan cheese", + "italian seasoning", + "softened butter", + "garlic" + ] + }, + { + "id": 14421, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "diced tomatoes", + "frozen broccoli", + "tomato paste", + "olive oil", + "garlic", + "onions", + "cauliflower", + "fresh cilantro", + "light coconut milk", + "carrots", + "sugar", + "fresh ginger", + "salt" + ] + }, + { + "id": 49453, + "cuisine": "chinese", + "ingredients": [ + "gyoza", + "deveined shrimp", + "eggs", + "rice wine", + "green onions", + "ginger", + "soy sauce", + "ground pork" + ] + }, + { + "id": 46453, + "cuisine": "russian", + "ingredients": [ + "black pepper", + "baking potatoes", + "chopped fresh chives", + "all-purpose flour", + "large eggs", + "salt", + "parsnips", + "vegetable oil", + "fresh lemon juice" + ] + }, + { + "id": 41569, + "cuisine": "cajun_creole", + "ingredients": [ + "hot pepper sauce", + "butter", + "all-purpose flour", + "shrimp", + "chicken broth", + "file powder", + "chopped celery", + "chopped onion", + "chicken thighs", + "andouille sausage links", + "chopped green bell pepper", + "garlic", + "cayenne pepper", + "fresh parsley", + "water", + "fresh thyme", + "salt", + "okra", + "canola oil" + ] + }, + { + "id": 10575, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "cilantro", + "tequila", + "boneless chicken breast", + "salt", + "lime juice", + "garlic", + "cumin", + "lime zest", + "jalapeno chilies", + "oil" + ] + }, + { + "id": 29846, + "cuisine": "italian", + "ingredients": [ + "asti spumante", + "water", + "cardamom pods", + "vanilla ice cream", + "bosc pears", + "ground cardamom", + "sugar", + "mint sprigs", + "black peppercorns", + "vanilla beans", + "orange juice" + ] + }, + { + "id": 4249, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "garlic", + "green olives", + "salmon steaks", + "grated lemon zest", + "tomatoes", + "fresh thyme leaves", + "salt", + "capers", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 48196, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "blackberries", + "buttermilk" + ] + }, + { + "id": 29224, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "fresh mozzarella balls" + ] + }, + { + "id": 23994, + "cuisine": "cajun_creole", + "ingredients": [ + "pasta sauce", + "provolone cheese", + "crawfish", + "Italian bread", + "andouille sausage", + "garlic cloves", + "green bell pepper", + "cajun seasoning", + "onions" + ] + }, + { + "id": 11146, + "cuisine": "southern_us", + "ingredients": [ + "sweet tea", + "buttermilk", + "butter", + "all-purpose flour", + "black pepper", + "chicken drumsticks", + "oil", + "chicken breasts", + "salt" + ] + }, + { + "id": 43703, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "flat leaf parsley", + "granulated sugar", + "salt", + "fresh tuna steaks", + "ground black pepper", + "extra-virgin olive oil", + "onions", + "dry white wine", + "all-purpose flour" + ] + }, + { + "id": 25938, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "jalapeno chilies", + "cheese", + "garlic salt", + "pepper", + "ground pepper", + "russet potatoes", + "salt", + "pico de gallo", + "olive oil", + "flank steak", + "onion flakes", + "cumin", + "orange", + "carne asada", + "cilantro", + "garlic cloves" + ] + }, + { + "id": 30414, + "cuisine": "french", + "ingredients": [ + "sugar", + "ground nutmeg", + "freshly ground pepper", + "ground ginger", + "ground cloves", + "vanilla", + "solid pack pumpkin", + "large egg yolks", + "cognac", + "ground cinnamon", + "kosher salt", + "whipping cream" + ] + }, + { + "id": 364, + "cuisine": "british", + "ingredients": [ + "roasted hazelnuts", + "baking powder", + "milk chocolate", + "salt", + "sugar", + "vanilla extract", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 9669, + "cuisine": "mexican", + "ingredients": [ + "pie crust", + "ground black pepper", + "cayenne pepper", + "black beans", + "vegetable oil", + "onions", + "shredded cheddar cheese", + "salsa", + "green bell pepper", + "chili powder", + "red bell pepper" + ] + }, + { + "id": 31822, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame seeds", + "garlic", + "pepper", + "boneless chicken breast", + "salt", + "honey", + "flour", + "cooking sherry", + "chicken broth", + "olive oil", + "sesame oil" + ] + }, + { + "id": 42806, + "cuisine": "italian", + "ingredients": [ + "chestnuts", + "butter", + "brandy", + "vanilla extract", + "white chocolate", + "white sugar", + "dark chocolate", + "red food coloring" + ] + }, + { + "id": 44938, + "cuisine": "italian", + "ingredients": [ + "day old bread", + "parmesan cheese", + "canned tomatoes", + "chicken broth", + "kosher salt", + "ground black pepper", + "carrots", + "fresh basil", + "olive oil", + "cannellini beans", + "chopped cilantro fresh", + "celery ribs", + "white onion", + "swiss chard", + "garlic cloves" + ] + }, + { + "id": 17335, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "clove garlic, fine chop", + "sausages", + "grated parmesan cheese", + "salt", + "stock", + "chili powder", + "rice", + "ground black pepper", + "button mushrooms", + "onions" + ] + }, + { + "id": 27708, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "chili powder", + "chopped cilantro", + "kosher salt", + "yellow corn", + "cotija", + "hot pepper", + "canola oil", + "lime", + "garlic" + ] + }, + { + "id": 15311, + "cuisine": "italian", + "ingredients": [ + "anchovy fillets", + "low salt chicken broth", + "dry white wine", + "garlic cloves", + "grated lemon peel", + "baguette", + "chopped fresh sage", + "onions", + "extra-virgin olive oil", + "chicken livers" + ] + }, + { + "id": 14164, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "flour tortillas", + "cilantro", + "smoked paprika", + "lime", + "barbecue sauce", + "salt", + "mango", + "pork shoulder roast", + "jalapeno chilies", + "purple onion", + "onions", + "cheddar cheese", + "garlic powder", + "onion powder", + "beer" + ] + }, + { + "id": 27306, + "cuisine": "chinese", + "ingredients": [ + "water", + "sugar", + "oyster sauce", + "beef", + "soy sauce", + "corn starch" + ] + }, + { + "id": 6597, + "cuisine": "japanese", + "ingredients": [ + "base", + "konbu", + "konnyaku", + "daikon", + "hard-boiled egg", + "water", + "fish balls" + ] + }, + { + "id": 35043, + "cuisine": "mexican", + "ingredients": [ + "chihuahua cheese", + "mushrooms", + "mole sauce", + "tomatoes", + "cooking spray", + "garlic", + "tortillas", + "cheese", + "onions", + "salt and ground black pepper", + "vegetable oil", + "turkey breast" + ] + }, + { + "id": 26556, + "cuisine": "korean", + "ingredients": [ + "eggs", + "fishcake", + "imitation crab meat", + "ground chuck", + "sesame oil", + "Fuji Apple", + "radishes", + "kiwi", + "spinach", + "short-grain rice", + "carrots" + ] + }, + { + "id": 14464, + "cuisine": "southern_us", + "ingredients": [ + "shredded coleslaw mix", + "chicken cutlets", + "pickled okra", + "sugar", + "pimentos", + "all-purpose flour", + "sour cream", + "saltines", + "large eggs", + "salt", + "peanut oil", + "pepper", + "baking powder", + "hot sauce" + ] + }, + { + "id": 15694, + "cuisine": "southern_us", + "ingredients": [ + "slaw", + "large garlic cloves", + "crushed red pepper", + "fresh basil", + "dijon mustard", + "extra-virgin olive oil", + "large shrimp", + "mussels", + "sea scallops", + "littleneck clams", + "fresh parsley", + "capers", + "dry white wine", + "white wine vinegar" + ] + }, + { + "id": 26079, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "olive oil", + "sesame oil", + "garlic cloves", + "fish sauce", + "lime", + "Sriracha", + "rice vinegar", + "corn tortillas", + "fresh cilantro", + "radishes", + "napa cabbage", + "chili garlic paste", + "mayonaise", + "honey", + "shredded carrots", + "new york strip steaks", + "toasted sesame seeds" + ] + }, + { + "id": 21918, + "cuisine": "southern_us", + "ingredients": [ + "lime zest", + "fresh lime juice", + "large eggs", + "graham cracker crumbs", + "unsalted butter", + "sweetened condensed milk" + ] + }, + { + "id": 33440, + "cuisine": "spanish", + "ingredients": [ + "whole milk", + "large eggs", + "sugar", + "cream cheese, soften", + "fontina cheese", + "vanilla" + ] + }, + { + "id": 1768, + "cuisine": "italian", + "ingredients": [ + "eggs", + "basil leaves", + "flour for dusting", + "mozzarella cheese", + "extra-virgin olive oil", + "eggplant", + "garlic", + "tomatoes", + "grated parmesan cheese", + "oil" + ] + }, + { + "id": 8501, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "seasoned bread crumbs", + "mayonaise", + "boneless skinless chicken breast halves", + "garlic powder" + ] + }, + { + "id": 23159, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "black sesame seeds", + "sushi rice", + "soy sauce", + "deep-fried tofu", + "water" + ] + }, + { + "id": 11082, + "cuisine": "southern_us", + "ingredients": [ + "hot pepper sauce", + "grated parmesan cheese", + "shrimp", + "chopped tomatoes", + "fresh thyme", + "ham", + "grits", + "Madeira", + "minced onion", + "coffee", + "corn starch", + "shiitake", + "chopped green bell pepper", + "butter", + "low salt chicken broth" + ] + }, + { + "id": 38173, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "hot red pepper flakes", + "parmigiano reggiano cheese", + "penne", + "swiss chard", + "garlic cloves", + "water", + "kielbasa" + ] + }, + { + "id": 9793, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "cornmeal", + "cayenne", + "all-purpose flour", + "paprika", + "vegetable oil", + "sweetbreads" + ] + }, + { + "id": 24653, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "fresh ginger", + "chile pepper", + "rice vinegar", + "bamboo shoots", + "soy sauce", + "green onions", + "tamari soy sauce", + "corn starch", + "eggs", + "mirin", + "garlic", + "firm tofu", + "black pepper", + "fresh shiitake mushrooms", + "cilantro leaves", + "beansprouts" + ] + }, + { + "id": 10982, + "cuisine": "french", + "ingredients": [ + "sugar", + "whole milk", + "almonds", + "salt", + "sweet cherries", + "almond extract", + "powdered sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 14467, + "cuisine": "indian", + "ingredients": [ + "sugar", + "cumin seed", + "chopped cilantro", + "asafetida", + "cayenne pepper", + "lemon juice", + "ground turmeric", + "salt", + "oil", + "frozen peas", + "green chilies", + "mustard seeds", + "cabbage" + ] + }, + { + "id": 41696, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "cilantro sprigs", + "vegetable oil", + "scallions", + "peeled fresh ginger", + "salt", + "water", + "sweetened coconut flakes", + "basmati rice" + ] + }, + { + "id": 4211, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "rice wine", + "white sugar", + "pork", + "ground black pepper", + "salt", + "buns", + "fresh ginger root", + "vegetable oil", + "water", + "green onions", + "shrimp" + ] + }, + { + "id": 3948, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "salt", + "tofu", + "vegetable oil", + "corn starch", + "fresh ginger root", + "shrimp", + "chicken stock", + "garlic", + "frozen peas" + ] + }, + { + "id": 21965, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "red wine vinegar", + "kosher salt", + "large eggs", + "oil", + "water", + "baking potatoes", + "onions", + "black pepper", + "roasted red peppers", + "extra-virgin olive oil" + ] + }, + { + "id": 10092, + "cuisine": "thai", + "ingredients": [ + "lime", + "rice noodles", + "Thai fish sauce", + "groundnut", + "large eggs", + "purple onion", + "red chili peppers", + "peanuts", + "garlic", + "tiger prawn", + "fresh coriander", + "spring onions", + "shrimp" + ] + }, + { + "id": 1945, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "bacon slices", + "freshly ground pepper", + "olive oil", + "lemon rind", + "fresh parsley", + "yellow squash", + "salt", + "lemon juice", + "hominy", + "fresh mushrooms", + "onions" + ] + }, + { + "id": 16790, + "cuisine": "mexican", + "ingredients": [ + "chees fresco queso", + "salad oil", + "salt", + "poblano chilies", + "onions" + ] + }, + { + "id": 909, + "cuisine": "french", + "ingredients": [ + "white wine", + "heavy cream", + "California bay leaves", + "large egg yolks", + "all-purpose flour", + "vanilla beans", + "plums", + "confectioners sugar", + "sugar", + "unsalted butter", + "grated lemon zest" + ] + }, + { + "id": 48207, + "cuisine": "italian", + "ingredients": [ + "penne", + "anchovy fillets", + "fresh basil", + "orange bell pepper", + "onions", + "capers", + "white wine vinegar", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 1452, + "cuisine": "italian", + "ingredients": [ + "pizza crust mix", + "cheese", + "warm water", + "tomatoes", + "olive oil", + "fresh rosemary" + ] + }, + { + "id": 2514, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "grated parmesan cheese", + "dried oregano", + "tuna packed in water", + "whole peeled tomatoes", + "chopped onion", + "angel hair", + "ground black pepper", + "black olives", + "tomato purée", + "olive oil", + "garlic" + ] + }, + { + "id": 10240, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "zucchini", + "red bell pepper", + "tomatoes", + "sweet onion", + "fresh mushrooms", + "pasta sauce", + "penne pasta", + "boiling water", + "fresh basil", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 32972, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "garlic cloves", + "baguette", + "salt", + "red bell pepper", + "extra-virgin olive oil", + "fresh lemon juice", + "zucchini", + "anchovy fillets", + "flat leaf parsley" + ] + }, + { + "id": 30698, + "cuisine": "indian", + "ingredients": [ + "biscuit dough", + "beef", + "curry powder", + "peas" + ] + }, + { + "id": 18752, + "cuisine": "cajun_creole", + "ingredients": [ + "salt and ground black pepper", + "onion powder", + "cayenne pepper", + "green bell pepper", + "bay leaves", + "white rice", + "onions", + "chicken stock", + "hot pepper sauce", + "worcestershire sauce", + "diced celery", + "olive oil", + "boneless skinless chicken breasts", + "kielbasa", + "chopped garlic" + ] + }, + { + "id": 46129, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "cajun seasoning", + "all-purpose flour", + "garlic cloves", + "white onion", + "egg yolks", + "diced tomatoes", + "peanut oil", + "celery ribs", + "jalapeno chilies", + "ice water", + "green pepper", + "turkey meat", + "cream", + "turkey stock", + "salt", + "dark beer" + ] + }, + { + "id": 14683, + "cuisine": "indian", + "ingredients": [ + "vegetable stock", + "green beans", + "garam masala", + "garlic cloves", + "fresh ginger root", + "chickpeas", + "onions", + "vegetable oil", + "carrots" + ] + }, + { + "id": 35053, + "cuisine": "italian", + "ingredients": [ + "sliced almonds", + "purple onion", + "fennel bulb", + "fresh lemon juice", + "extra-virgin olive oil", + "fresh mint", + "ground black pepper", + "salt" + ] + }, + { + "id": 29596, + "cuisine": "indian", + "ingredients": [ + "fenugreek seeds", + "poha", + "iodized salt", + "cold water", + "rice", + "urad dal" + ] + }, + { + "id": 13251, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "cilantro", + "sour cream", + "cheddar cheese", + "corn", + "enchilada sauce", + "chicken", + "chicken broth", + "lime juice", + "oil", + "onions", + "black beans", + "flour tortillas", + "carrots" + ] + }, + { + "id": 22985, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "salad dressing", + "tomatoes", + "corn chips", + "shredded cheddar cheese", + "romaine lettuce", + "pinto beans" + ] + }, + { + "id": 10925, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "salt", + "garam masala", + "oil", + "bread crumbs", + "cilantro leaves", + "potatoes", + "coriander" + ] + }, + { + "id": 40205, + "cuisine": "french", + "ingredients": [ + "olive oil", + "sirloin steak", + "black peppercorns", + "shallots", + "garlic cloves", + "brandy", + "canned beef broth", + "dijon mustard", + "whipping cream" + ] + }, + { + "id": 12082, + "cuisine": "cajun_creole", + "ingredients": [ + "white rice", + "salt", + "water" + ] + }, + { + "id": 46773, + "cuisine": "mexican", + "ingredients": [ + "cream cheese", + "taco seasoning mix", + "flour tortillas", + "sour cream" + ] + }, + { + "id": 21676, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "mushrooms", + "salt", + "onions", + "asparagus", + "cilantro", + "oil", + "monterey jack", + "salsa verde", + "chili powder", + "goat cheese", + "cumin", + "tortillas", + "garlic", + "sour cream" + ] + }, + { + "id": 24062, + "cuisine": "southern_us", + "ingredients": [ + "water", + "sugar", + "lemon juice", + "ice cubes", + "english breakfast tea leaves", + "cold water", + "lemon" + ] + }, + { + "id": 18055, + "cuisine": "southern_us", + "ingredients": [ + "vegetable shortening", + "baking powder", + "salt", + "sugar", + "1% low-fat milk", + "ice water", + "all-purpose flour" + ] + }, + { + "id": 19841, + "cuisine": "italian", + "ingredients": [ + "pesto", + "heavy cream", + "grated parmesan cheese", + "ground black pepper", + "large shrimp", + "pasta", + "butter" + ] + }, + { + "id": 31233, + "cuisine": "irish", + "ingredients": [ + "smoked haddock", + "leeks", + "black peppercorns", + "fennel bulb", + "heavy cream", + "fresh dill", + "fresh thyme", + "fresh rosemary", + "unsalted butter", + "bay leaves" + ] + }, + { + "id": 19149, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "cayenne", + "nonfat yogurt plain", + "chopped cilantro fresh", + "tomatoes", + "minced ginger", + "butter", + "chicken fingers", + "tumeric", + "feta cheese", + "purple onion", + "fresh mint", + "bread", + "minced garlic", + "vegetable oil", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 31013, + "cuisine": "french", + "ingredients": [ + "red potato", + "cooking spray", + "low salt chicken broth", + "pepper", + "purple onion", + "plum tomatoes", + "fresh basil", + "asiago", + "ripe olives", + "olive oil", + "salt" + ] + }, + { + "id": 26360, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "salt", + "garlic cloves", + "olive oil", + "rice", + "chicken stock", + "bell pepper", + "roasting chickens", + "water", + "yellow onion", + "bay leaf" + ] + }, + { + "id": 45753, + "cuisine": "southern_us", + "ingredients": [ + "corn oil", + "milk", + "white cornmeal", + "corn kernels", + "boiling water", + "kosher salt", + "caviar" + ] + }, + { + "id": 47254, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "extra-virgin olive oil", + "eggplant", + "chopped fresh sage", + "fresh basil", + "fine sea salt", + "ground black pepper" + ] + }, + { + "id": 21275, + "cuisine": "indian", + "ingredients": [ + "flatbread", + "cooking spray", + "salt", + "medium shrimp", + "ground cumin", + "minced garlic", + "lime wedges", + "fresh lime juice", + "ground turmeric", + "chipotle chile", + "peeled fresh ginger", + "fresh lemon juice", + "chopped cilantro fresh", + "plain low-fat yogurt", + "jalapeno chilies", + "purple onion", + "adobo sauce", + "mango" + ] + }, + { + "id": 34358, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "garlic", + "olive oil", + "onions", + "dried thyme", + "white beans", + "italian sausage", + "chopped tomatoes" + ] + }, + { + "id": 19595, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "fresh lemon juice", + "tomatoes", + "salt", + "light corn syrup", + "olive oil" + ] + }, + { + "id": 32022, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "light mayonnaise", + "sun-dried tomatoes", + "freshly ground pepper", + "lemon zest", + "garlic cloves", + "milk", + "salt" + ] + }, + { + "id": 7294, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cilantro sprigs", + "shrimp", + "fresh lime juice", + "water", + "salt", + "ham hock", + "bay leaf", + "celery ribs", + "large garlic cloves", + "carrots", + "ancho chile pepper", + "onions", + "white hominy", + "freshly ground pepper", + "red bell pepper", + "hass avocado" + ] + }, + { + "id": 41434, + "cuisine": "french", + "ingredients": [ + "prunes", + "bacon", + "dried thyme", + "boiling onions", + "beef gravy", + "dry red wine", + "boneless chicken breast", + "low salt chicken broth" + ] + }, + { + "id": 17743, + "cuisine": "indian", + "ingredients": [ + "cayenne", + "salt", + "serrano chile", + "fresh ginger", + "vegetable oil", + "chutney", + "lime wedges", + "shrimp", + "cumin", + "garam masala", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 46223, + "cuisine": "mexican", + "ingredients": [ + "fish fillets", + "olive oil", + "lemon", + "red bell pepper", + "pepper", + "brown rice", + "salt", + "black beans", + "green onions", + "garlic", + "cumin", + "avocado", + "corn kernels", + "chili powder", + "cayenne pepper" + ] + }, + { + "id": 46201, + "cuisine": "thai", + "ingredients": [ + "almond butter", + "miso", + "fresh ginger", + "orange juice", + "honey", + "cayenne pepper", + "minced garlic", + "nama shoyu" + ] + }, + { + "id": 4493, + "cuisine": "greek", + "ingredients": [ + "salt", + "vanilla bean paste", + "stevia extract", + "greek yogurt", + "half & half" + ] + }, + { + "id": 198, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "frozen corn kernels", + "onions", + "shredded cheddar cheese", + "chili powder", + "pinto beans", + "brown rice", + "enchilada sauce", + "cumin", + "zucchini", + "vegetable oil", + "red bell pepper" + ] + }, + { + "id": 21004, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "diced tomatoes", + "pepper", + "salt", + "lean ground beef", + "onions", + "msg", + "garlic" + ] + }, + { + "id": 30690, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "peaches", + "whipping cream", + "fresh lemon juice", + "ground cinnamon", + "golden brown sugar", + "baking powder", + "salt", + "powdered sugar", + "crystallized ginger", + "butter", + "all-purpose flour", + "vanilla beans", + "unsalted butter", + "vanilla extract" + ] + }, + { + "id": 25489, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "mustard greens", + "chopped onion", + "pepper", + "garlic", + "pepper sauce", + "worcestershire sauce", + "shanks", + "vegetable oil", + "salt" + ] + }, + { + "id": 23555, + "cuisine": "british", + "ingredients": [ + "white vinegar", + "canned chopped tomatoes", + "bacon", + "ground allspice", + "tomatoes", + "dates", + "salt", + "corn starch", + "water", + "worcestershire sauce", + "sauce", + "onions", + "light brown sugar", + "lemon", + "cracked black pepper", + "crusty rolls" + ] + }, + { + "id": 6927, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "yellow onion", + "spring water", + "celery", + "sea salt", + "black pepper", + "lentils" + ] + }, + { + "id": 44770, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "tomato salsa", + "rice vinegar", + "garlic cloves", + "chopped cilantro", + "avocado", + "garlic powder", + "tamari soy sauce", + "yellow onion", + "smoked paprika", + "cauliflower", + "olive oil", + "vegetable broth", + "hot sauce", + "carrots", + "ground cumin", + "green cabbage", + "chili powder", + "salt", + "beer", + "corn tortillas" + ] + }, + { + "id": 22704, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "water", + "dry white wine", + "bay leaf", + "pitted kalamata olives", + "olive oil", + "salt", + "plum tomatoes", + "capers", + "halibut fillets", + "crushed red pepper", + "onions", + "tomato paste", + "black pepper", + "fennel bulb", + "garlic cloves" + ] + }, + { + "id": 13943, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "yellow corn meal", + "buttermilk", + "self-rising cornmeal", + "whole milk", + "all-purpose flour", + "self rising flour", + "rendered bacon fat" + ] + }, + { + "id": 46386, + "cuisine": "filipino", + "ingredients": [ + "green bell pepper", + "potatoes", + "canola oil", + "egg roll wrappers", + "peas", + "ground black pepper", + "lean ground beef", + "minced onion", + "salt" + ] + }, + { + "id": 44079, + "cuisine": "italian", + "ingredients": [ + "saffron threads", + "baking potatoes", + "asparagus", + "margarine", + "ground black pepper", + "vegetable broth", + "parsley leaves", + "natural pistachios" + ] + }, + { + "id": 38552, + "cuisine": "thai", + "ingredients": [ + "tomatoes", + "lime", + "jalapeno chilies", + "cilantro leaves", + "water", + "fresh ginger", + "shallots", + "canned low sodium chicken broth", + "swordfish steaks", + "mushrooms", + "asian fish sauce", + "lime juice", + "cooking oil", + "lemon" + ] + }, + { + "id": 33649, + "cuisine": "italian", + "ingredients": [ + "roasted red peppers", + "salt", + "pesto", + "paprika", + "thyme sprigs", + "vegetable oil cooking spray", + "chicken breast halves", + "cream cheese, soften", + "pepper", + "Corn Flakes Cereal", + "fresh parsley" + ] + }, + { + "id": 24822, + "cuisine": "moroccan", + "ingredients": [ + "fresh coriander", + "fresh parsley", + "salt", + "onions", + "smoked paprika", + "cumin", + "pepper", + "ground beef" + ] + }, + { + "id": 11557, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "chili powder", + "paneer", + "green chilies", + "basmati rice", + "clove", + "coriander seeds", + "ginger", + "cilantro leaves", + "bay leaf", + "tomatoes", + "garam masala", + "peas", + "fenugreek seeds", + "onions", + "green bell pepper", + "butter", + "salt", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 40082, + "cuisine": "jamaican", + "ingredients": [ + "water", + "liquid", + "onions", + "sugar", + "salt", + "coconut milk", + "sweet pepper", + "garlic cloves", + "pepper", + "rice", + "dried kidney beans" + ] + }, + { + "id": 3407, + "cuisine": "italian", + "ingredients": [ + "capers", + "cooking spray", + "fresh lemon juice", + "fat free less sodium chicken broth", + "butter", + "black pepper", + "dry white wine", + "boneless skinless chicken breast halves", + "seasoned bread crumbs", + "salt" + ] + }, + { + "id": 49393, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "onions", + "chicken breast halves", + "jalapeno chilies", + "canola oil", + "corn tortillas" + ] + }, + { + "id": 11514, + "cuisine": "french", + "ingredients": [ + "turnips", + "bay leaves", + "bacon slices", + "onions", + "chicken broth", + "dry white wine", + "carrots", + "ground cloves", + "russet potatoes", + "green beans", + "boneless pork shoulder", + "cannellini beans", + "beef broth", + "cabbage" + ] + }, + { + "id": 8602, + "cuisine": "french", + "ingredients": [ + "olive oil", + "sea bass fillets", + "chardonnay", + "shallots", + "white wine vinegar", + "bay leaf", + "vegetables", + "garlic", + "thyme sprigs", + "pepper", + "sliced carrots", + "salt", + "onions" + ] + }, + { + "id": 9382, + "cuisine": "italian", + "ingredients": [ + "diced onions", + "ground black pepper", + "chopped fresh thyme", + "fresh tuna steaks", + "chicken stock", + "artichok heart marin", + "oil", + "olive oil", + "dry white wine", + "fresh lemon juice", + "pasta", + "lemon zest", + "salt" + ] + }, + { + "id": 39989, + "cuisine": "chinese", + "ingredients": [ + "water", + "vegetable oil", + "garlic", + "sugar", + "shiitake", + "dry sherry", + "green beans", + "fresh ginger", + "red pepper flakes", + "corn starch", + "soy sauce", + "sesame oil", + "dry mustard" + ] + }, + { + "id": 35566, + "cuisine": "italian", + "ingredients": [ + "eggs", + "freshly ground pepper", + "olive oil", + "kosher salt", + "spaghetti", + "guanciale", + "pecorino romano cheese" + ] + }, + { + "id": 44806, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "cooking spray", + "large shrimp", + "green bell pepper", + "eggplant", + "purple onion", + "tomatoes", + "olive oil", + "pitted olives", + "pepper", + "zucchini", + "garlic cloves" + ] + }, + { + "id": 12860, + "cuisine": "mexican", + "ingredients": [ + "chip plain tortilla", + "garlic", + "onions", + "shredded cheddar cheese", + "lean ground beef", + "sour cream", + "black beans", + "chili powder", + "whole kernel corn, drain", + "fresh tomatoes", + "green onions", + "salsa" + ] + }, + { + "id": 5948, + "cuisine": "french", + "ingredients": [ + "olive oil", + "baking potatoes", + "fresh lemon juice", + "zucchini", + "heavy cream", + "finely chopped onion", + "ice water", + "low salt chicken broth", + "minced garlic", + "leeks", + "lemon slices" + ] + }, + { + "id": 23668, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "pinenuts", + "garlic", + "basil leaves", + "olive oil", + "fresh parsley" + ] + }, + { + "id": 38242, + "cuisine": "greek", + "ingredients": [ + "savory", + "extra-virgin olive oil", + "leg of lamb", + "canola oil", + "large egg yolks", + "large garlic cloves", + "fresh lemon juice", + "chopped fresh mint", + "warm water", + "vegetable oil", + "cumin seed", + "fresh mint", + "kosher salt", + "lemon", + "garlic cloves", + "onions" + ] + }, + { + "id": 3705, + "cuisine": "italian", + "ingredients": [ + "black peppercorns", + "parmigiano reggiano cheese", + "heavy cream", + "garlic cloves", + "spaghetti", + "celery ribs", + "unsalted butter", + "mushrooms", + "salt", + "carrots", + "black pepper", + "low sodium chicken broth", + "chicken meat", + "California bay leaves", + "chicken", + "clove", + "medium dry sherry", + "butter", + "all-purpose flour", + "onions" + ] + }, + { + "id": 39200, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic", + "fresh cilantro", + "tomatillos", + "avocado", + "minced onion", + "salt", + "lime juice", + "jalapeno chilies" + ] + }, + { + "id": 22148, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "baking powder", + "unsalted butter", + "salt", + "large eggs", + "all-purpose flour", + "baking soda", + "buttermilk" + ] + }, + { + "id": 20145, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "vanilla extract", + "baking soda", + "softened butter", + "firmly packed brown sugar", + "salted peanuts", + "ground cinnamon", + "flour" + ] + }, + { + "id": 20332, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "red wine vinegar", + "black pepper", + "bay leaves", + "salt", + "figs", + "olive oil", + "dry red wine", + "water", + "shallots", + "chicken thighs" + ] + }, + { + "id": 42460, + "cuisine": "chinese", + "ingredients": [ + "sesame", + "instant yeast", + "dark brown sugar", + "milk", + "baking powder", + "pancake", + "water", + "flour", + "oil", + "eggs", + "granulated sugar", + "roasted peanuts" + ] + }, + { + "id": 39878, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "salt", + "flat leaf parsley", + "capers", + "crushed red pepper", + "fresh lemon juice", + "eggplant", + "purple onion", + "red bell pepper", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 5973, + "cuisine": "greek", + "ingredients": [ + "unsalted butter", + "vanilla extract", + "milk", + "flour", + "sugar", + "large eggs", + "orange juice", + "baking soda", + "egg yolks" + ] + }, + { + "id": 19239, + "cuisine": "southern_us", + "ingredients": [ + "coffee liqueur", + "salt", + "ground ginger", + "butter", + "chopped pecans", + "brown sugar", + "peach slices", + "sweet potatoes", + "lemon juice" + ] + }, + { + "id": 12550, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "cayenne pepper", + "water", + "paprika", + "white wine", + "bay leaves", + "onions", + "sauerkraut", + "salt" + ] + }, + { + "id": 13905, + "cuisine": "greek", + "ingredients": [ + "bone-in chicken breast halves", + "grated lemon zest", + "cracked black pepper", + "garlic cloves", + "olive oil", + "fresh oregano", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 2778, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "pepper", + "purple onion", + "pickled jalapenos", + "chicken breasts", + "onions", + "chipotle chile", + "water", + "fresh oregano", + "avocado", + "tostadas", + "garlic", + "canola oil" + ] + }, + { + "id": 35522, + "cuisine": "japanese", + "ingredients": [ + "potatoes", + "onions", + "chicken stock", + "curry", + "ground cumin", + "garlic", + "chicken", + "curry powder", + "ground coriander" + ] + }, + { + "id": 28587, + "cuisine": "french", + "ingredients": [ + "granny smith apples", + "butter", + "water", + "fresh lemon juice", + "eggs", + "superfine sugar", + "sugar", + "golden delicious apples" + ] + }, + { + "id": 14997, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "fresh lime juice", + "salt", + "garlic", + "serrano peppers", + "cilantro leaves" + ] + }, + { + "id": 38127, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "fresh basil", + "chopped fresh thyme", + "crumbled gorgonzola", + "fusilli", + "heavy whipping cream", + "walnut pieces", + "butter" + ] + }, + { + "id": 2374, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "bay leaf", + "fat free less sodium chicken broth", + "chopped onion", + "water", + "garlic cloves", + "pancetta", + "soup" + ] + }, + { + "id": 10252, + "cuisine": "french", + "ingredients": [ + "figs", + "sherry vinegar", + "freshly ground pepper", + "salad greens", + "extra-virgin olive oil", + "fresh lime juice", + "sugar", + "chopped fresh chives", + "heavy whipping cream", + "prosciutto", + "salt", + "chèvre" + ] + }, + { + "id": 32521, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "cumin seed", + "cinnamon sticks", + "curry leaves", + "ginger", + "lentils", + "onions", + "water", + "garlic cloves", + "coconut milk", + "fresh spinach", + "green chilies", + "mustard seeds", + "ground turmeric" + ] + }, + { + "id": 46852, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "watercress", + "ground black pepper", + "salt", + "olive oil", + "garlic", + "fettucine", + "basil leaves" + ] + }, + { + "id": 21613, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "prawns", + "salt", + "tomatoes", + "eggplant", + "fresh green bean", + "onions", + "olive oil", + "pork loin", + "okra", + "bitter melon", + "zucchini", + "garlic" + ] + }, + { + "id": 24404, + "cuisine": "french", + "ingredients": [ + "frozen pastry puff sheets", + "water", + "apricots", + "sugar", + "whipping cream", + "unsalted butter" + ] + }, + { + "id": 3327, + "cuisine": "italian", + "ingredients": [ + "capers", + "eggplant", + "chopped onion", + "sugar", + "red wine vinegar", + "fresh parsley", + "olive oil", + "salt", + "plum tomatoes", + "pitted kalamata olives", + "golden raisins", + "garlic cloves" + ] + }, + { + "id": 16072, + "cuisine": "french", + "ingredients": [ + "butter", + "salt", + "milk", + "bacon", + "onions", + "heavy cream", + "chicken livers", + "veal", + "garlic" + ] + }, + { + "id": 44717, + "cuisine": "moroccan", + "ingredients": [ + "preserved lemon", + "olive oil", + "salt", + "carrots", + "pepper", + "golden raisins", + "ground coriander", + "ground cumin", + "slivered almonds", + "red cabbage", + "greek style plain yogurt", + "feta cheese crumbles", + "ground cinnamon", + "honey", + "purple onion", + "lemon juice" + ] + }, + { + "id": 11657, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "cracked black pepper", + "shrimp", + "lemon", + "freshly ground pepper", + "butter", + "creole seasoning", + "worcestershire sauce", + "garlic cloves" + ] + }, + { + "id": 41104, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "ground black pepper", + "sea salt", + "smoked paprika", + "celery ribs", + "crushed tomatoes", + "Tabasco Pepper Sauce", + "smoked sausage", + "boneless chicken skinless thigh", + "bell pepper", + "garlic", + "onions", + "chicken broth", + "olive oil", + "cajun seasoning", + "shrimp" + ] + }, + { + "id": 38287, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "broccoli florets", + "chopped fresh thyme", + "all-purpose flour", + "fat free less sodium chicken broth", + "dijon mustard", + "shallots", + "gruyere cheese", + "ground black pepper", + "cooking spray", + "butter", + "minced garlic", + "reduced fat milk", + "yukon gold potatoes", + "salt" + ] + }, + { + "id": 43005, + "cuisine": "chinese", + "ingredients": [ + "pot stickers", + "ginger", + "soy sauce", + "sesame oil", + "carrots", + "eggs", + "green onions", + "peanut oil", + "water", + "ground pork", + "cabbage" + ] + }, + { + "id": 24994, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "unsalted butter", + "corn tortillas", + "ground cumin", + "green cabbage", + "kosher salt", + "russet potatoes", + "dried oregano", + "cotija", + "jalapeno chilies", + "chopped cilantro", + "tomatoes", + "ground black pepper", + "garlic", + "canola oil" + ] + }, + { + "id": 21672, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "barbecue sauce", + "ground cumin", + "chili seasoning", + "vegetable oil", + "honey", + "lemon wedge", + "extra large shrimp", + "paprika" + ] + }, + { + "id": 25620, + "cuisine": "brazilian", + "ingredients": [ + "açai powder", + "sweetener", + "coconut milk", + "pure vanilla extract", + "salt", + "milk", + "frozen banana" + ] + }, + { + "id": 30179, + "cuisine": "chinese", + "ingredients": [ + "caster sugar", + "spring onions", + "red pepper", + "chinese five-spice powder", + "sesame seeds", + "mixed vegetables", + "white wine vinegar", + "phyllo pastry", + "light soy sauce", + "cooked chicken", + "ginger", + "garlic cloves", + "eggs", + "prawns", + "rice noodles", + "salt" + ] + }, + { + "id": 2741, + "cuisine": "french", + "ingredients": [ + "veal demi-glace", + "garlic cloves", + "dry white wine", + "onions", + "chicken stock", + "port", + "olive oil", + "bay leaf" + ] + }, + { + "id": 46142, + "cuisine": "french", + "ingredients": [ + "milk", + "chestnut purée", + "egg yolks", + "egg whites", + "white sugar", + "brandy", + "whipped cream" + ] + }, + { + "id": 22023, + "cuisine": "southern_us", + "ingredients": [ + "corn kernels", + "salt", + "white onion", + "half & half", + "red bell pepper", + "sugar", + "chopped green bell pepper", + "cream cheese", + "pepper", + "bacon slices" + ] + }, + { + "id": 41261, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "garlic", + "sake", + "leeks", + "fresh ginger root", + "sugar", + "meat" + ] + }, + { + "id": 44772, + "cuisine": "cajun_creole", + "ingredients": [ + "dried basil", + "green onions", + "linguine", + "lemon pepper seasoning", + "butter", + "boneless skinless chicken breast halves", + "garlic powder", + "cajun seasoning", + "salt", + "black pepper", + "grated parmesan cheese", + "heavy cream" + ] + }, + { + "id": 16471, + "cuisine": "chinese", + "ingredients": [ + "dough", + "soy sauce", + "mushrooms", + "ginger", + "chinese black vinegar", + "fish sauce", + "shredded carrots", + "sesame oil", + "all-purpose flour", + "coconut oil", + "starch", + "summer squash", + "red bell pepper", + "eggs", + "water", + "green onions", + "garlic" + ] + }, + { + "id": 7404, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "milk", + "salt", + "ground nutmeg", + "polenta", + "butter" + ] + }, + { + "id": 44997, + "cuisine": "southern_us", + "ingredients": [ + "diced onions", + "mayonaise", + "meal", + "seeds", + "oil", + "yellow corn meal", + "lime juice", + "jalapeno chilies", + "salt", + "catfish fillets", + "pepper", + "baking soda", + "cilantro", + "chipotles in adobo", + "bacon drippings", + "eggs", + "milk", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 30510, + "cuisine": "british", + "ingredients": [ + "vanilla", + "powdered sugar", + "sour cream", + "lemon", + "cream cheese, soften" + ] + }, + { + "id": 35477, + "cuisine": "indian", + "ingredients": [ + "water", + "chicken breasts", + "ground tumeric", + "cinnamon sticks", + "spinach", + "potatoes", + "butter", + "salt", + "coriander", + "chiles", + "yoghurt", + "ginger", + "cardamom pods", + "cherry tomatoes", + "vegetable oil", + "garlic", + "onions" + ] + }, + { + "id": 25342, + "cuisine": "french", + "ingredients": [ + "Belgian endive", + "chopped fresh chives", + "canola oil", + "curry powder", + "sherry wine vinegar", + "haricots verts", + "shallots", + "sea scallops", + "white truffle oil" + ] + }, + { + "id": 43471, + "cuisine": "thai", + "ingredients": [ + "lime wedges", + "roasted peanuts", + "fish sauce", + "chili sauce", + "boneless skinless chicken breast halves", + "salt", + "fresh lime juice", + "fat free less sodium chicken broth", + "creamy peanut butter", + "canola oil" + ] + }, + { + "id": 5947, + "cuisine": "filipino", + "ingredients": [ + "spring roll wrappers", + "sweet chili sauce", + "green onions", + "garlic", + "sugar", + "water chestnuts", + "ground pork", + "yellow onion", + "coconut oil", + "pepper", + "lumpia wrappers", + "salt", + "eggs", + "soy sauce", + "mushrooms", + "dipping sauces", + "cooked shrimp" + ] + }, + { + "id": 4254, + "cuisine": "italian", + "ingredients": [ + "pure vanilla extract", + "mascarpone", + "cake flour", + "sugar", + "egg whites", + "chocolate chips", + "eggs", + "unsalted butter", + "cocoa powder", + "ladyfingers", + "brewed coffee", + "cream cheese, soften" + ] + }, + { + "id": 10947, + "cuisine": "italian", + "ingredients": [ + "orange", + "cooking spray", + "asiago", + "roasting chickens", + "wild mushrooms", + "fat free less sodium chicken broth", + "ground black pepper", + "chopped fresh thyme", + "salt", + "thyme sprigs", + "water", + "truffle oil", + "butter", + "all-purpose flour", + "polenta", + "white wine", + "fat free milk", + "mushrooms", + "fresh orange juice", + "garlic cloves" + ] + }, + { + "id": 49633, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "salt", + "oregano", + "lime", + "garlic", + "skinless chicken breasts", + "lime juice", + "cilantro", + "salsa", + "cumin", + "tortillas", + "purple onion", + "orange juice" + ] + }, + { + "id": 47999, + "cuisine": "indian", + "ingredients": [ + "cayenne", + "cumin seed", + "milk", + "meat", + "corn starch", + "garlic paste", + "coriander powder", + "rice flour", + "garam masala", + "salt", + "chicken" + ] + }, + { + "id": 23844, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "prawns", + "shells", + "shrimp stock", + "kosher salt", + "shallots", + "oil", + "fish sauce", + "water", + "garlic", + "caramel sauce", + "black pepper", + "soup", + "scallions" + ] + }, + { + "id": 2642, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "fresh parmesan cheese", + "and fat free half half", + "fat free less sodium chicken broth", + "salt", + "hazelnuts", + "ground black pepper", + "garlic cloves", + "diced onions", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 28167, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "chocolate shavings", + "bittersweet chocolate", + "french bread", + "vanilla extract", + "firmly packed light brown sugar", + "egg yolks", + "sauce", + "unsalted butter", + "whipping cream" + ] + }, + { + "id": 38191, + "cuisine": "italian", + "ingredients": [ + "cottage cheese", + "lean ground beef", + "eggs", + "grated parmesan cheese", + "shredded mozzarella cheese", + "lasagna noodles", + "part-skim ricotta cheese", + "pasta sauce", + "mushrooms", + "onions" + ] + }, + { + "id": 36410, + "cuisine": "vietnamese", + "ingredients": [ + "fresh basil", + "kosher salt", + "green onions", + "cilantro sprigs", + "carrots", + "mayonaise", + "ground black pepper", + "daikon", + "hot chili sauce", + "sugar", + "jalapeno chilies", + "ground pork", + "garlic cloves", + "fish sauce", + "baguette", + "sesame oil", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 15942, + "cuisine": "italian", + "ingredients": [ + "orange rind", + "rosé wine", + "campari", + "fresh orange juice" + ] + }, + { + "id": 9408, + "cuisine": "irish", + "ingredients": [ + "white pepper", + "melted butter", + "spring onions", + "mashed potatoes", + "salt", + "milk" + ] + }, + { + "id": 36300, + "cuisine": "brazilian", + "ingredients": [ + "tomato paste", + "pepper", + "peas", + "oil", + "green olives", + "chicken breasts", + "salt", + "bay leaf", + "eggs", + "flour", + "garlic", + "shrimp", + "cold water", + "shortening", + "butter", + "cayenne pepper", + "onions" + ] + }, + { + "id": 22386, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "buttermilk", + "lemon juice", + "parsley flakes", + "chicken breasts", + "all-purpose flour", + "whole wheat bread slices", + "butter", + "creole seasoning", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 6245, + "cuisine": "japanese", + "ingredients": [ + "chile powder", + "sesame seeds", + "sesame oil", + "soda water", + "maui onion", + "black pepper", + "soft shelled crabs", + "rice flour", + "sugar", + "asparagus", + "salt", + "soy sauce", + "yuzu", + "mixed greens" + ] + }, + { + "id": 26440, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "red pepper", + "garlic cloves", + "rosemary", + "salt", + "baguette", + "extra-virgin olive oil", + "lemon", + "lima beans" + ] + }, + { + "id": 26812, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "roma tomatoes", + "butter", + "oil", + "corn husks", + "baking powder", + "garlic", + "cumin", + "lime", + "green onions", + "cilantro", + "broth", + "zucchini", + "chili powder", + "salt", + "masa" + ] + }, + { + "id": 27599, + "cuisine": "japanese", + "ingredients": [ + "teriyaki sauce", + "salmon fillets", + "scallions" + ] + }, + { + "id": 21733, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "fillets", + "diced tomatoes", + "butter", + "garam masala", + "chopped cilantro fresh" + ] + }, + { + "id": 1253, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "vegetable oil", + "halibut", + "avocado", + "shredded cabbage", + "cilantro leaves", + "lime juice", + "salt", + "corn tortillas", + "sugar", + "chili powder", + "nonfat yogurt plain" + ] + }, + { + "id": 23527, + "cuisine": "italian", + "ingredients": [ + "egg substitute", + "all-purpose flour", + "unsweetened cocoa powder", + "baking powder", + "chocolate candy bars", + "olive oil", + "margarine", + "vanilla extract", + "white sugar" + ] + }, + { + "id": 49319, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "unsweetened baking chocolate", + "milk", + "margarine", + "graham crackers", + "chocolate instant pudding", + "frozen whip topping, thaw", + "vanilla instant pudding" + ] + }, + { + "id": 12301, + "cuisine": "chinese", + "ingredients": [ + "romaine lettuce", + "shredded carrots", + "rice vinegar", + "fresh ginger", + "sesame oil", + "boneless skinless chicken breast halves", + "chile paste", + "green onions", + "peanut butter", + "brown sugar", + "hoisin sauce", + "wonton wrappers", + "chopped cilantro fresh" + ] + }, + { + "id": 38903, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "peanut butter", + "crushed tomatoes", + "potatoes", + "shredded Monterey Jack cheese", + "poblano peppers", + "dried oregano", + "sweet onion", + "garlic", + "ground cumin" + ] + }, + { + "id": 10346, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "water", + "bay leaves", + "cumin seed", + "tumeric", + "garam masala", + "salt", + "lemon juice", + "garlic paste", + "olive oil", + "purple onion", + "black mustard seeds", + "fresh coriander", + "potatoes", + "green chilies", + "masala" + ] + }, + { + "id": 8241, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "salsa", + "ground beef", + "low-fat sour cream", + "garlic", + "corn tortillas", + "serrano chile", + "shredded lettuce", + "hot sauce", + "vegetarian refried beans", + "heirloom tomatoes", + "yellow onion", + "chopped cilantro fresh" + ] + }, + { + "id": 31877, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "vegetable oil", + "onions", + "water chestnuts", + "green pepper", + "soy sauce", + "cornflour", + "cashew nuts", + "chicken stock", + "chicken breasts", + "hot chili sauce" + ] + }, + { + "id": 39922, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "prepar salsa", + "taco seasoning mix", + "red bell pepper", + "green bell pepper", + "olive oil", + "boneless skinless chicken breast halves", + "shredded cheddar cheese", + "all-purpose flour" + ] + }, + { + "id": 29628, + "cuisine": "mexican", + "ingredients": [ + "chile pepper", + "chopped cilantro fresh", + "garlic", + "white onion", + "salt", + "tomatillos" + ] + }, + { + "id": 38955, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper flakes", + "fregola", + "olive oil", + "grated lemon zest", + "dry white wine", + "garlic cloves", + "kosher salt", + "littleneck clams", + "flat leaf parsley" + ] + }, + { + "id": 15484, + "cuisine": "japanese", + "ingredients": [ + "honey", + "filet", + "cooking spray", + "white sesame seeds", + "mirin", + "red miso", + "brown sugar", + "peeled fresh ginger", + "fresh lime juice" + ] + }, + { + "id": 34875, + "cuisine": "japanese", + "ingredients": [ + "light brown sugar", + "water", + "vegetable oil", + "soy sauce", + "mirin", + "konbu", + "sake", + "fresh ginger", + "scallions", + "boneless chicken skinless thigh", + "bonito flakes" + ] + }, + { + "id": 37659, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "ginger", + "oil", + "masala", + "tomatoes", + "seeds", + "cilantro leaves", + "ghee", + "garam masala", + "salt", + "black salt", + "ground cumin", + "garlic paste", + "chili powder", + "chickpeas", + "onions" + ] + }, + { + "id": 18861, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "parmigiano reggiano cheese", + "fresh lemon juice", + "black pepper", + "extra-virgin olive oil", + "onions", + "hot red pepper flakes", + "lemon zest", + "flat leaf parsley", + "unsalted butter", + "salt", + "frozen artichoke hearts" + ] + }, + { + "id": 24383, + "cuisine": "indian", + "ingredients": [ + "green cabbage", + "salt", + "onions", + "fennel seeds", + "vegetable oil", + "fresh lemon juice", + "garam masala", + "cumin seed", + "sesame seeds", + "cayenne pepper" + ] + }, + { + "id": 9131, + "cuisine": "thai", + "ingredients": [ + "eggs", + "black pepper", + "pineapple", + "carrots", + "tumeric", + "vegetable oil", + "long-grain rice", + "coriander", + "chili flakes", + "green onions", + "salt", + "coconut milk", + "soy sauce", + "roasted unsalted cashews", + "garlic cloves" + ] + }, + { + "id": 30432, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "black pepper", + "parmesan cheese", + "diced tomatoes", + "dried oregano", + "chicken broth", + "dried thyme", + "ricotta cheese", + "yellow onion", + "tomato paste", + "mozzarella cheese", + "lasagna noodles", + "garlic", + "italian seasoning", + "green bell pepper", + "olive oil", + "sea salt", + "fresh parsley" + ] + }, + { + "id": 1979, + "cuisine": "southern_us", + "ingredients": [ + "water", + "tea bags", + "lemon juice", + "sugar", + "pineapple juice" + ] + }, + { + "id": 22057, + "cuisine": "french", + "ingredients": [ + "vegetable oil cooking spray", + "egg whites", + "hot water", + "white vinegar", + "water", + "salt", + "sugar", + "rapid rise yeast", + "low-fat sour cream", + "sesame seeds", + "all-purpose flour" + ] + }, + { + "id": 38080, + "cuisine": "japanese", + "ingredients": [ + "clove", + "cream", + "chili powder", + "cilantro leaves", + "cashew nuts", + "garlic paste", + "garam masala", + "kasuri methi", + "bay leaf", + "tomatoes", + "water", + "butter", + "oil", + "tumeric", + "coriander powder", + "paneer", + "onions" + ] + }, + { + "id": 4989, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "carrots", + "celery root", + "black truffles", + "extra-virgin olive oil", + "green beans", + "shallots", + "champagne", + "chicken", + "large egg yolks", + "all-purpose flour", + "bay leaf" + ] + }, + { + "id": 29089, + "cuisine": "french", + "ingredients": [ + "rosemary", + "garlic", + "tomato paste", + "dry white wine", + "lamb shoulder", + "ground black pepper", + "black olives", + "water", + "extra-virgin olive oil", + "salt" + ] + }, + { + "id": 37309, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "Italian bread", + "sweet onion", + "diced tomatoes", + "chopped garlic", + "ground black pepper", + "fresh basil leaves", + "olive oil", + "salt" + ] + }, + { + "id": 32417, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "medium shrimp uncook", + "fresh lemon juice", + "olive oil", + "orzo", + "hothouse cucumber", + "cherry tomatoes", + "green onions", + "cucumber", + "feta cheese", + "dill tips" + ] + }, + { + "id": 26909, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "lime juice", + "flank steak", + "salt", + "black pepper", + "vinegar", + "garlic", + "cucumber", + "avocado", + "black beans", + "jalapeno chilies", + "purple onion", + "cumin", + "jack cheese", + "salad greens", + "cilantro", + "oil" + ] + }, + { + "id": 18396, + "cuisine": "chinese", + "ingredients": [ + "jalapeno chilies", + "garlic cloves", + "sugar", + "green onions", + "peeled fresh ginger", + "fresh lime juice", + "peeled tomatoes", + "rice vinegar" + ] + }, + { + "id": 40893, + "cuisine": "italian", + "ingredients": [ + "eggs", + "baking powder", + "all-purpose flour", + "water", + "butter", + "white sugar", + "shortening", + "almond extract", + "confectioners sugar", + "milk", + "salt" + ] + }, + { + "id": 5530, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "ginger", + "sugar", + "sesame oil", + "white sesame seeds", + "rib eye steaks", + "spring onions", + "garlic", + "soy sauce", + "vegetable oil" + ] + }, + { + "id": 45575, + "cuisine": "french", + "ingredients": [ + "water", + "coarse salt", + "fresh herbs", + "olive oil", + "salt", + "large egg whites", + "beef tenderloin", + "fleur de sel", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 22177, + "cuisine": "french", + "ingredients": [ + "salt", + "lemon", + "tagliatelle", + "olive oil", + "crème fraîche", + "parmesan cheese", + "freshly ground pepper" + ] + }, + { + "id": 7474, + "cuisine": "greek", + "ingredients": [ + "grated parmesan cheese", + "feta cheese crumbles", + "olive oil", + "phyllo", + "pinenuts", + "large garlic cloves", + "unsalted butter", + "fresh parsley leaves" + ] + }, + { + "id": 31417, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "olive oil", + "cilantro", + "onions", + "tomatoes", + "seasoning salt", + "paprika", + "garlic cloves", + "light sour cream", + "cheddar cheese", + "mushrooms", + "cayenne pepper", + "oregano", + "chicken broth", + "cream", + "basil", + "rice", + "chicken" + ] + }, + { + "id": 14590, + "cuisine": "indian", + "ingredients": [ + "sugar", + "white poppy seeds", + "cardamom pods", + "onions", + "fresh ginger", + "lamb shoulder", + "hot water", + "red chili peppers", + "bay leaves", + "garlic cloves", + "unsalted butter", + "salt", + "cinnamon sticks" + ] + }, + { + "id": 33280, + "cuisine": "jamaican", + "ingredients": [ + "ground ginger", + "water", + "dark rum", + "malt vinegar", + "garlic cloves", + "soy sauce", + "ground nutmeg", + "vegetable oil", + "ground allspice", + "chicken", + "ground cinnamon", + "dried thyme", + "green onions", + "salt", + "fresh lime juice", + "ketchup", + "ground black pepper", + "scotch bonnet chile", + "dark brown sugar" + ] + }, + { + "id": 21778, + "cuisine": "russian", + "ingredients": [ + "cold water", + "sugar", + "fresh lemon juice", + "potato starch", + "granny smith apples", + "sour cream", + "ground cinnamon", + "cranberry juice", + "brown sugar", + "gingersnap" + ] + }, + { + "id": 44937, + "cuisine": "moroccan", + "ingredients": [ + "boiling water", + "sugar", + "mint", + "green tea" + ] + }, + { + "id": 12981, + "cuisine": "vietnamese", + "ingredients": [ + "Dungeness crabs", + "garlic", + "yellow onion", + "fish sauce", + "egg yolks", + "dried shiitake mushrooms", + "glass noodles", + "unsalted butter", + "salt", + "wood ear mushrooms", + "black pepper", + "ground pork", + "dry bread crumbs" + ] + }, + { + "id": 24582, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "chicken livers", + "pepper", + "salt", + "eggs", + "vegetable oil", + "milk", + "all-purpose flour" + ] + }, + { + "id": 22778, + "cuisine": "italian", + "ingredients": [ + "breadstick", + "paprika", + "melted butter", + "ground cumin", + "grated parmesan cheese" + ] + }, + { + "id": 40977, + "cuisine": "french", + "ingredients": [ + "scallion greens", + "shell-on shrimp", + "salt", + "black pepper", + "paprika", + "flat leaf parsley", + "horseradish", + "vegetable oil", + "dill pickles", + "creole mustard", + "cayenne", + "white wine vinegar" + ] + }, + { + "id": 37694, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "all-purpose flour", + "grated lemon peel", + "canned beef broth", + "veal scallops", + "dry white wine", + "chopped fresh sage", + "butter", + "low salt chicken broth" + ] + }, + { + "id": 43953, + "cuisine": "italian", + "ingredients": [ + "sugar", + "dry yeast", + "bread flour", + "fresh basil", + "unsalted butter", + "pumpkin seeds", + "warm water", + "large eggs", + "olive oil", + "salt" + ] + }, + { + "id": 27500, + "cuisine": "italian", + "ingredients": [ + "white wine", + "water", + "all-purpose flour", + "fresh parsley", + "capers", + "pepper", + "salt", + "fresh lemon juice", + "seasoned bread crumbs", + "olive oil", + "garlic cloves", + "fat free less sodium chicken broth", + "large egg whites", + "grated lemon zest", + "chicken thighs" + ] + }, + { + "id": 1529, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "whole milk", + "carrots", + "celery ribs", + "grated parmesan cheese", + "dry red wine", + "onions", + "pancetta", + "ground black pepper", + "ground veal", + "ground beef", + "tomato paste", + "beef stock", + "extra-virgin olive oil", + "tagliatelle" + ] + }, + { + "id": 35123, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "dijon mustard", + "white wine vinegar", + "olive oil", + "green onions", + "lemon pepper", + "minced garlic", + "cooking spray", + "fresh lemon juice", + "ground black pepper", + "low-fat mayonnaise", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 48025, + "cuisine": "moroccan", + "ingredients": [ + "minced garlic", + "salt", + "ground turmeric", + "ground ginger", + "vegetable oil", + "couscous", + "vegetable oil cooking spray", + "garden peas", + "chopped cilantro fresh", + "chicken breast halves", + "no salt added chicken broth", + "ground cumin" + ] + }, + { + "id": 46700, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "roma tomatoes", + "red pepper flakes", + "english cucumber", + "rib eye steaks", + "cherry tomatoes", + "vegetable oil", + "cilantro leaves", + "ground white pepper", + "fish sauce", + "ngo gai", + "pickling cucumbers", + "dark brown sugar", + "lime juice", + "shallots", + "garlic", + "oyster sauce" + ] + }, + { + "id": 26996, + "cuisine": "italian", + "ingredients": [ + "whole milk ricotta cheese", + "fresh mint", + "ground black pepper", + "extra-virgin olive oil", + "olive oil", + "pecorino romano cheese", + "flat leaf parsley", + "large eggs", + "fine sea salt" + ] + }, + { + "id": 44240, + "cuisine": "brazilian", + "ingredients": [ + "beans", + "chopped cilantro", + "green onions", + "chili pepper", + "green bell pepper", + "coconut milk" + ] + }, + { + "id": 42871, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "red wine", + "gnocchi", + "pepper", + "vegetable stock", + "salt", + "mushrooms", + "heavy cream", + "dried oregano", + "olive oil", + "butter", + "chopped parsley" + ] + }, + { + "id": 1470, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "asiago", + "fennel bulb", + "olive oil flavored cooking spray", + "water", + "butter", + "roasted red peppers", + "salt" + ] + }, + { + "id": 15570, + "cuisine": "jamaican", + "ingredients": [ + "cocoa", + "vanilla", + "nutmeg", + "milk", + "water", + "sugar", + "cinnamon" + ] + }, + { + "id": 46532, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "graham cracker crumbs", + "golden brown sugar", + "unsalted butter", + "caramel ice cream topping", + "butter pecan ice cream" + ] + }, + { + "id": 11879, + "cuisine": "jamaican", + "ingredients": [ + "white cake mix", + "butter", + "eggs", + "granulated sugar", + "water", + "vanilla instant pudding", + "white rum", + "vegetable oil" + ] + }, + { + "id": 13149, + "cuisine": "french", + "ingredients": [ + "fat free milk", + "butter", + "garlic cloves", + "reduced fat sharp cheddar cheese", + "cooking spray", + "salt", + "sliced green onions", + "phyllo dough", + "ground red pepper", + "all-purpose flour", + "red potato", + "asparagus", + "paprika", + "ham" + ] + }, + { + "id": 24685, + "cuisine": "mexican", + "ingredients": [ + "masa harina", + "kosher salt" + ] + }, + { + "id": 35253, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "unsalted butter", + "all-purpose flour", + "ground cumin", + "pasta", + "minced garlic", + "lean ground beef", + "rotel tomatoes", + "shredded cheddar cheese", + "finely chopped onion", + "salsa", + "reduced sodium chicken broth", + "ground black pepper", + "extra-virgin olive oil", + "fresh lime juice" + ] + }, + { + "id": 21077, + "cuisine": "british", + "ingredients": [ + "garlic bread", + "buttermilk", + "cod", + "flour", + "garlic powder", + "coleslaw", + "seasoning salt", + "french fries" + ] + }, + { + "id": 40412, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "lemon", + "cumin seed", + "water", + "mild green chiles", + "carrots", + "green bell pepper", + "extra-virgin olive oil", + "garlic cloves", + "red snapper", + "new potatoes", + "salt", + "fresh parsley" + ] + }, + { + "id": 29705, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "milk", + "barbecue sauce", + "paprika", + "scallions", + "mayonaise", + "garlic powder", + "buttermilk", + "all-purpose flour", + "panko breadcrumbs", + "brown sugar", + "lime", + "green tomatoes", + "dipping sauces", + "oil", + "tomatoes", + "kosher salt", + "ground black pepper", + "apple cider", + "cayenne pepper" + ] + }, + { + "id": 20160, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "fresh coriander", + "ground black pepper", + "sweet paprika", + "organic vegetable stock", + "chopped tomatoes", + "sea salt", + "onions", + "prunes", + "olive oil", + "spices", + "squash", + "ground ginger", + "sliced almonds", + "stewing beef", + "chickpeas", + "ground cumin" + ] + }, + { + "id": 26155, + "cuisine": "italian", + "ingredients": [ + "coarse salt", + "frozen chopped spinach, thawed and squeezed dry", + "whole wheat pita", + "bocconcini", + "part-skim ricotta cheese", + "dried oregano", + "ground pepper", + "garlic cloves" + ] + }, + { + "id": 13495, + "cuisine": "british", + "ingredients": [ + "2% reduced-fat milk", + "onions", + "eggs", + "salt", + "drippings", + "dried mixed herbs", + "plain flour", + "malt vinegar", + "pork sausages" + ] + }, + { + "id": 19814, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "cilantro", + "peaches", + "onions", + "lime juice", + "salt", + "habanero" + ] + }, + { + "id": 43882, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "cooking spray", + "salt", + "chopped cilantro fresh", + "sliced almonds", + "chicken breasts", + "ground coriander", + "polenta", + "fat free yogurt", + "ground red pepper", + "all-purpose flour", + "ground turmeric", + "olive oil", + "raisins", + "low salt chicken broth", + "ground cumin" + ] + }, + { + "id": 16948, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "dry white wine", + "ground coriander", + "sugar", + "cooking spray", + "red wine vinegar", + "ground cumin", + "olive oil", + "golden raisins", + "salt", + "fennel seeds", + "pork tenderloin", + "shallots", + "onions" + ] + }, + { + "id": 22389, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "heavy cream", + "penne pasta", + "low sodium chicken broth", + "garlic", + "bell pepper", + "diced tomatoes", + "fajita seasoning mix", + "diced onions", + "boneless skinless chicken breasts", + "salt" + ] + }, + { + "id": 49450, + "cuisine": "italian", + "ingredients": [ + "sub rolls", + "pepperoncini", + "beef consomme", + "italian seasoning", + "chuck roast", + "provolone cheese", + "salt" + ] + }, + { + "id": 47281, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "masala", + "unsweetened coconut milk", + "sea salt", + "russet potatoes", + "vegetable oil cooking spray", + "scallions" + ] + }, + { + "id": 36705, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "red pepper", + "yellow peppers", + "penne", + "balsamic vinaigrette", + "vegetable oil cooking spray", + "green pepper", + "cannellini beans", + "feta cheese crumbles" + ] + }, + { + "id": 14552, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "green pepper", + "pepper", + "diced tomatoes", + "onions", + "cheddar cheese", + "lean ground beef", + "ready-made pie crusts", + "egg yolks", + "salt", + "ground cumin" + ] + }, + { + "id": 15277, + "cuisine": "irish", + "ingredients": [ + "milk", + "red potato", + "butter", + "chicken broth", + "leeks", + "pepper", + "salt" + ] + }, + { + "id": 34444, + "cuisine": "mexican", + "ingredients": [ + "lemon zest", + "strawberries", + "cinnamon", + "oil", + "flour tortillas", + "cream cheese", + "sugar", + "butter", + "sour cream" + ] + }, + { + "id": 14376, + "cuisine": "mexican", + "ingredients": [ + "honey", + "diced tomatoes", + "salt", + "red enchilada sauce", + "ancho chili ground pepper", + "corn oil", + "chees fresco queso", + "cayenne pepper", + "corn tortillas", + "finely chopped onion", + "pasilla chile pepper", + "beef broth", + "unsweetened chocolate", + "fresh cilantro", + "vegetable oil", + "garlic", + "chopped onion" + ] + }, + { + "id": 22097, + "cuisine": "mexican", + "ingredients": [ + "pasta sauce", + "dried basil", + "passata", + "dried oregano", + "mozzarella cheese", + "meat", + "corn tortillas", + "cheddar cheese", + "jalapeno chilies", + "salsa", + "minced garlic", + "butter", + "onions" + ] + }, + { + "id": 4625, + "cuisine": "indian", + "ingredients": [ + "milk", + "salt", + "dried red chile peppers", + "ground red pepper", + "mustard seeds", + "coriander seeds", + "cumin seed", + "calabash", + "fresh curry leaves", + "vegetable oil", + "asafoetida powder" + ] + }, + { + "id": 44145, + "cuisine": "southern_us", + "ingredients": [ + "water", + "okra pods", + "white vinegar", + "garlic", + "canning salt", + "whole peppercorn", + "dill seed" + ] + }, + { + "id": 31928, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "grated lemon zest", + "fresh basil", + "purple onion", + "capers", + "salt", + "pasta", + "extra-virgin olive oil", + "albacore tuna in water" + ] + }, + { + "id": 45004, + "cuisine": "french", + "ingredients": [ + "cold water", + "large egg whites", + "vanilla", + "sugar", + "heavy cream", + "cream of tartar", + "large egg yolks", + "fresh lemon juice", + "unflavored gelatin", + "lemon zest", + "fresh mint" + ] + }, + { + "id": 9779, + "cuisine": "southern_us", + "ingredients": [ + "vidalia onion", + "turkey stock", + "freshly ground pepper", + "bay leaf", + "fresh thyme", + "giblet", + "corn starch", + "parsley sprigs", + "pan drippings", + "carrots", + "onions", + "cold water", + "bourbon whiskey", + "chopped fresh sage", + "celery" + ] + }, + { + "id": 16308, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "salt", + "corn starch", + "rolled oats", + "cinnamon", + "fresh raspberries", + "brown sugar", + "lemon zest", + "all-purpose flour", + "chopped pecans", + "peaches", + "vanilla extract", + "lemon juice" + ] + }, + { + "id": 22158, + "cuisine": "italian", + "ingredients": [ + "peaches", + "water", + "sugar", + "wine" + ] + }, + { + "id": 22524, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "cilantro sprigs", + "dal", + "green chile", + "peeled fresh ginger", + "tamarind concentrate", + "ground cumin", + "asafetida (powder)", + "water", + "black mustard seeds", + "plum tomatoes", + "chiles", + "ground coriander", + "ghee" + ] + }, + { + "id": 9639, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "scallions", + "kosher salt", + "garlic", + "sesame oil", + "salt", + "ginger", + "chicken" + ] + }, + { + "id": 35672, + "cuisine": "italian", + "ingredients": [ + "roasted red peppers", + "garlic cloves", + "grape tomatoes", + "crushed red pepper", + "center cut pork chops", + "capers", + "cooking spray", + "fresh parsley", + "cider vinegar", + "salt", + "italian seasoning" + ] + }, + { + "id": 33210, + "cuisine": "french", + "ingredients": [ + "beef stock", + "California bay leaves", + "black peppercorns", + "canned tomatoes", + "onions", + "celery ribs", + "large garlic cloves", + "carrots", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 1942, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "olive oil", + "diced tomatoes", + "kosher salt", + "ground black pepper", + "sugar", + "parmesan cheese", + "garlic", + "dinner rolls", + "mozzarella cheese", + "butter" + ] + }, + { + "id": 21012, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "green onions", + "eggplant", + "dashi", + "miso", + "sake", + "mirin" + ] + }, + { + "id": 30357, + "cuisine": "mexican", + "ingredients": [ + "cinnamon", + "cayenne pepper", + "agave nectar", + "vanilla extract", + "coconut milk", + "water", + "sea salt", + "cacao powder", + "chili powder", + "stevia" + ] + }, + { + "id": 31294, + "cuisine": "british", + "ingredients": [ + "dried lentils", + "baking powder", + "onions", + "white vinegar", + "olive oil", + "salt", + "water", + "butter", + "eggs", + "potatoes", + "all-purpose flour" + ] + }, + { + "id": 34617, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "peaches", + "coconut flour", + "baking soda", + "cinnamon", + "maple syrup", + "coconut oil", + "bourbon whiskey", + "salt", + "turbinado", + "bananas", + "almond meal" + ] + }, + { + "id": 23144, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "red chili peppers", + "chili paste", + "garlic", + "scallions", + "chinese rice wine", + "boneless chicken skinless thigh", + "egg whites", + "rice vinegar", + "white sesame seeds", + "tomato paste", + "soy sauce", + "hoisin sauce", + "salt", + "corn starch", + "sugar", + "ground black pepper", + "sesame oil", + "peanut oil" + ] + }, + { + "id": 37127, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "pepper", + "chili powder", + "fine sea salt", + "tortilla chips", + "dried parsley", + "mayonaise", + "garlic powder", + "buttermilk", + "purple onion", + "ground cayenne pepper", + "romaine lettuce", + "corn", + "onion powder", + "shredded sharp cheddar cheese", + "greek yogurt", + "avocado", + "black pepper", + "boneless skinless chicken breasts", + "cooked bacon", + "salt", + "dill weed" + ] + }, + { + "id": 30906, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "baby spinach", + "cayenne pepper", + "pepper", + "garam masala", + "ginger", + "onions", + "sugar", + "chopped tomatoes", + "large garlic cloves", + "chickpeas", + "fresh coriander", + "fresh lemon", + "salt", + "cumin" + ] + }, + { + "id": 11438, + "cuisine": "mexican", + "ingredients": [ + "low-fat cheddar cheese", + "Country Crock® Spread", + "lean ground beef", + "salsa", + "fresh cilantro", + "non-fat sour cream", + "mexicorn", + "reduced sodium black beans" + ] + }, + { + "id": 37957, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chili oil", + "dumpling wrappers", + "essence", + "black pepper", + "salt", + "peeled prawns", + "sweet corn" + ] + }, + { + "id": 25088, + "cuisine": "cajun_creole", + "ingredients": [ + "spicy sausage", + "green onions", + "littleneck clams", + "large shrimp", + "olive oil", + "butter", + "fresh mushrooms", + "halibut fillets", + "clam juice", + "linguine", + "mussels", + "seafood seasoning", + "large garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 37084, + "cuisine": "indian", + "ingredients": [ + "vegan butter", + "almond milk", + "sugar", + "salt", + "cashew nuts", + "clove", + "vanilla extract", + "vermicelli noodles", + "golden raisins", + "green cardamom", + "saffron" + ] + }, + { + "id": 30872, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "lo mein noodles", + "salt", + "onions", + "shiitake", + "vegetable oil", + "red bell pepper", + "cabbage", + "fresh ginger", + "cooked chicken", + "carrots", + "snow peas", + "peanuts", + "dry sherry", + "toasted sesame oil", + "chopped garlic" + ] + }, + { + "id": 48286, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "salt", + "chopped cilantro", + "chicken broth", + "lime wedges", + "fat", + "oregano leaves", + "pepper", + "oil", + "onions", + "tomatoes", + "garlic", + "poblano chiles", + "ground cumin" + ] + }, + { + "id": 17509, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "chicken breasts", + "corn starch", + "honey", + "yellow onion", + "water", + "red wine vinegar", + "ground ginger", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 32142, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "gravy", + "kasuri methi", + "milk & cream", + "cumin", + "tomatoes", + "garam masala", + "chili powder", + "salt", + "oil", + "red chili powder", + "finely chopped onion", + "veggies", + "cilantro leaves", + "cashew nuts", + "tumeric", + "yoghurt", + "paneer", + "green chilies" + ] + }, + { + "id": 18593, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil" + ] + }, + { + "id": 28246, + "cuisine": "french", + "ingredients": [ + "mayonaise", + "fresh parsley", + "eggs", + "dry mustard", + "fresh tarragon", + "capers", + "garlic cloves" + ] + }, + { + "id": 20046, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "sake", + "red miso", + "pork cutlets", + "white miso", + "sugar" + ] + }, + { + "id": 34260, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "white pepper", + "water", + "roasted chestnuts", + "sugar", + "chinese black mushrooms", + "dry white wine", + "corn starch", + "soy sauce", + "kosher salt", + "corn oil", + "chicken", + "country ham", + "reduced sodium chicken broth", + "Shaoxing wine", + "ginger" + ] + }, + { + "id": 33209, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning", + "refried beans", + "monterey jack", + "cheddar cheese", + "sour cream", + "cream cheese" + ] + }, + { + "id": 48408, + "cuisine": "jamaican", + "ingredients": [ + "garlic powder", + "parsley", + "cayenne pepper", + "ground cinnamon", + "ground black pepper", + "onion flakes", + "thyme", + "sugar", + "chives", + "salt", + "ground cumin", + "pepper flakes", + "ground nutmeg", + "paprika", + "ground allspice" + ] + }, + { + "id": 18522, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "dry white wine", + "chopped fresh sage", + "ground black pepper", + "chees fresh mozzarella", + "sage", + "prosciutto", + "butter", + "garlic cloves", + "arborio rice", + "leeks", + "salt" + ] + }, + { + "id": 20262, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "garlic cloves", + "eggs", + "salt", + "mayonaise", + "freshly ground pepper", + "melted butter", + "baguette" + ] + }, + { + "id": 45547, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "cayenne", + "ground cardamom", + "spinach leaves", + "fresh ginger", + "ground coriander", + "olive oil", + "plain low fat greek yogurt", + "onions", + "tumeric", + "garam masala", + "garlic cloves" + ] + }, + { + "id": 45101, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "whole peeled tomatoes", + "black mustard seeds", + "ground turmeric", + "chickpea flour", + "kosher salt", + "chile de arbol", + "serrano chile", + "white onion", + "ginger", + "chopped cilantro", + "canola oil", + "curry leaves", + "coriander seeds", + "cumin seed", + "basmati rice" + ] + }, + { + "id": 6154, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "baking soda", + "vegetable oil", + "all-purpose flour", + "corn kernels", + "large eggs", + "crushed red pepper", + "fresh dill", + "low-fat buttermilk", + "large garlic cloves", + "red bell pepper", + "vegetable oil spray", + "baking powder", + "salt" + ] + }, + { + "id": 48575, + "cuisine": "french", + "ingredients": [ + "baguette", + "parmigiano reggiano cheese", + "salt", + "reduced sodium beef broth", + "unsalted butter", + "dry white wine", + "onions", + "water", + "bay leaves", + "all-purpose flour", + "black pepper", + "fresh thyme", + "gruyere cheese" + ] + }, + { + "id": 25086, + "cuisine": "italian", + "ingredients": [ + "garlic", + "flat leaf parsley", + "olive oil", + "carrots", + "penne pasta", + "plum tomatoes", + "anchovies", + "pepperoni" + ] + }, + { + "id": 40809, + "cuisine": "filipino", + "ingredients": [ + "boneless chicken breast", + "oil", + "fried garlic", + "broccoli", + "shrimp", + "sesame oil", + "carrots", + "water", + "pancit canton", + "onions" + ] + }, + { + "id": 16821, + "cuisine": "indian", + "ingredients": [ + "water", + "lemon", + "oil", + "plain flour", + "garam masala", + "salt", + "fennel seeds", + "fresh ginger", + "garlic", + "corn flour", + "chicken wings", + "chili powder", + "green chilies" + ] + }, + { + "id": 23506, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "flour", + "garlic", + "honey", + "baking powder", + "chicken fillets", + "water", + "spring onions", + "salt", + "sesame seeds", + "vegetable oil", + "basmati rice" + ] + }, + { + "id": 3823, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "dry white wine", + "garlic cloves", + "whole peeled tomatoes", + "red pepper flakes", + "olive oil", + "coarse salt", + "juice", + "grated parmesan cheese", + "linguine" + ] + }, + { + "id": 24366, + "cuisine": "french", + "ingredients": [ + "pastis", + "ice cubes", + "almond syrup" + ] + }, + { + "id": 5513, + "cuisine": "mexican", + "ingredients": [ + "masa harina", + "water" + ] + }, + { + "id": 34594, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "baking powder", + "all-purpose flour", + "sugar", + "unsalted butter", + "vanilla", + "fresh lemon juice", + "large egg yolks", + "vegetable shortening", + "grated lemon zest", + "water", + "large eggs", + "salt", + "corn starch" + ] + }, + { + "id": 39025, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "lemon wedge", + "shrimp", + "water", + "salt", + "noodles", + "pepper", + "garlic", + "onions", + "pork", + "roast", + "carrots", + "cabbage" + ] + }, + { + "id": 37303, + "cuisine": "southern_us", + "ingredients": [ + "boiling water", + "sugar", + "earl grey tea bags", + "tea bags" + ] + }, + { + "id": 41620, + "cuisine": "italian", + "ingredients": [ + "melon", + "prosciutto" + ] + }, + { + "id": 4800, + "cuisine": "jamaican", + "ingredients": [ + "water", + "finely chopped onion", + "salt", + "ground coriander", + "dried thyme", + "sweet potatoes", + "gingerroot", + "greens", + "lime juice", + "zucchini", + "ground allspice", + "garlic cloves", + "tumeric", + "winter squash", + "diced tomatoes", + "okra" + ] + }, + { + "id": 9174, + "cuisine": "thai", + "ingredients": [ + "mustard", + "soba noodles", + "fresh coriander", + "curry paste", + "vegetables", + "stir fry vegetable blend", + "coconut oil", + "coconut milk" + ] + }, + { + "id": 18605, + "cuisine": "moroccan", + "ingredients": [ + "merguez sausage", + "extra large eggs", + "roasted tomatoes", + "crusty bread", + "harissa", + "ras el hanout", + "cilantro stems", + "extra-virgin olive oil", + "onions", + "kosher salt", + "large garlic cloves", + "smoked paprika" + ] + }, + { + "id": 6106, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "habanero pepper", + "peppercorns", + "chicken wings", + "fresh ginger", + "lemon", + "chili flakes", + "honey", + "apple cider vinegar", + "brown sugar", + "fresh thyme", + "garlic" + ] + }, + { + "id": 10720, + "cuisine": "italian", + "ingredients": [ + "sugar", + "wine", + "strawberries" + ] + }, + { + "id": 19402, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "onions", + "lime juice", + "salt", + "chopped cilantro fresh", + "black pepper", + "zucchini", + "boneless skinless chicken breast halves", + "cherry tomatoes", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 13480, + "cuisine": "moroccan", + "ingredients": [ + "chopped tomatoes", + "cilantro", + "cinnamon sticks", + "olive oil", + "vegetable stock", + "chickpeas", + "onions", + "pepper", + "sweet potatoes", + "salt", + "red bell pepper", + "eggplant", + "raisins", + "garlic cloves" + ] + }, + { + "id": 23523, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "snappers", + "cooking spray", + "capers", + "olive oil", + "garlic cloves", + "fresh basil", + "kosher salt", + "chopped onion", + "pitted kalamata olives", + "ground black pepper", + "sliced mushrooms" + ] + }, + { + "id": 24385, + "cuisine": "southern_us", + "ingredients": [ + "self-rising cornmeal", + "okra", + "buttermilk", + "oil" + ] + }, + { + "id": 38893, + "cuisine": "indian", + "ingredients": [ + "water", + "bawang goreng", + "tumeric", + "red chile powder", + "salt", + "fish sauce", + "minced ginger", + "shallots", + "minced garlic", + "beef", + "peanut oil" + ] + }, + { + "id": 15994, + "cuisine": "spanish", + "ingredients": [ + "baby spinach", + "garlic", + "polenta", + "manchego cheese", + "extra-virgin olive oil", + "onions", + "sherry vinegar", + "vegetable broth", + "butter beans", + "paprika", + "red bell pepper" + ] + }, + { + "id": 13158, + "cuisine": "vietnamese", + "ingredients": [ + "jalapeno chilies", + "english cucumber", + "sugar", + "salt", + "purple onion", + "garlic cloves", + "minced ginger", + "rice vinegar" + ] + }, + { + "id": 19420, + "cuisine": "southern_us", + "ingredients": [ + "soy sauce", + "ground black pepper", + "worcestershire sauce", + "ground coriander", + "brown sugar", + "fresh ginger", + "balsamic vinegar", + "spanish paprika", + "ground cumin", + "bacon drippings", + "kosher salt", + "chile pepper", + "ground mustard", + "chile sauce", + "ketchup", + "minced onion", + "garlic", + "fresh lemon juice" + ] + }, + { + "id": 34352, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cayenne", + "jamon serrano", + "cornmeal", + "white wine", + "olive oil", + "butter", + "smoked paprika", + "dried oregano", + "milk", + "green onions", + "shrimp", + "roasted tomatoes", + "kosher salt", + "parmesan cheese", + "roasted garlic", + "chopped parsley" + ] + }, + { + "id": 40, + "cuisine": "russian", + "ingredients": [ + "active dry yeast", + "white sugar", + "warm water", + "salt", + "baking soda", + "bread flour", + "milk", + "cornmeal" + ] + }, + { + "id": 39338, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "cilantro sprigs", + "gingerroot", + "ground cumin", + "vegetable oil cooking spray", + "lemon wedge", + "chopped onion", + "ground turmeric", + "ground red pepper", + "extra-virgin olive oil", + "ground coriander", + "plain low-fat yogurt", + "chicken breast halves", + "salt", + "garlic cloves" + ] + }, + { + "id": 37218, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "calamansi juice", + "tomatoes", + "radishes", + "banana peppers", + "eggplant", + "rice", + "spinach", + "shell-on shrimp", + "onions" + ] + }, + { + "id": 11684, + "cuisine": "filipino", + "ingredients": [ + "vegetable oil", + "bay leaf", + "ground black pepper", + "garlic", + "apple cider vinegar", + "salt", + "water", + "trout fillet" + ] + }, + { + "id": 19466, + "cuisine": "jamaican", + "ingredients": [ + "coconut oil", + "fresh thyme", + "carrots", + "low sodium soy sauce", + "pepper", + "scallions", + "onions", + "tomatoes", + "kosher salt", + "light coconut milk", + "corn starch", + "chicken legs", + "lime", + "garlic cloves" + ] + }, + { + "id": 19946, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "ciabatta", + "fontina cheese", + "cooking spray", + "fresh basil", + "zesty italian dressing", + "roasted red peppers", + "garlic cloves" + ] + }, + { + "id": 31769, + "cuisine": "mexican", + "ingredients": [ + "enchilada sauce", + "flour tortillas", + "shredded cheddar cheese", + "sour cream", + "crushed pineapple" + ] + }, + { + "id": 44844, + "cuisine": "japanese", + "ingredients": [ + "satsuma imo", + "vegetable oil", + "sesame oil", + "honey", + "toasted sesame seeds" + ] + }, + { + "id": 20851, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "garlic powder", + "all-purpose flour", + "honey", + "unsalted butter", + "dried basil", + "parmesan cheese", + "garlic cloves", + "warm water", + "olive oil", + "salt" + ] + }, + { + "id": 23137, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "zucchini", + "extra-virgin olive oil", + "rotini", + "fat free less sodium chicken broth", + "asiago", + "salt", + "fresh spinach", + "red wine vinegar", + "crushed red pepper", + "navy beans", + "chopped green bell pepper", + "stewed tomatoes", + "chopped onion" + ] + }, + { + "id": 41916, + "cuisine": "greek", + "ingredients": [ + "rocket leaves", + "cooking spray", + "crushed red pepper", + "ground allspice", + "greek yogurt", + "ground black pepper", + "chopped fresh thyme", + "salt", + "fresh lemon juice", + "ground lamb", + "large eggs", + "extra-virgin olive oil", + "dry bread crumbs", + "cucumber", + "feta cheese", + "ground sirloin", + "purple onion", + "garlic cloves", + "chopped fresh mint" + ] + }, + { + "id": 45468, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "rice vinegar", + "sugar", + "sesame oil", + "sauce", + "soy sauce", + "grapeseed oil", + "chow mein noodles", + "green onions", + "yellow onion" + ] + }, + { + "id": 47285, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "sliced almonds", + "yoghurt", + "oil", + "clarified butter", + "garlic paste", + "milk", + "salt", + "lemon juice", + "ginger paste", + "black peppercorns", + "cream", + "boneless chicken", + "ground cardamom", + "saffron", + "clove", + "white pepper", + "garam masala", + "green chilies", + "onions" + ] + }, + { + "id": 46550, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "fresh basil leaves", + "fresh mozzarella", + "wonton wrappers", + "eggs", + "extra-virgin olive oil" + ] + }, + { + "id": 44698, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "dried sage", + "long-grain rice", + "pork sausages", + "water", + "salt", + "red bell pepper", + "pepper", + "giblet", + "garlic cloves", + "celery ribs", + "dried thyme", + "hot sauce", + "onions" + ] + }, + { + "id": 40623, + "cuisine": "indian", + "ingredients": [ + "sweetened condensed milk", + "sweetened coconut flakes", + "sliced almonds", + "ground cardamom" + ] + }, + { + "id": 41176, + "cuisine": "thai", + "ingredients": [ + "tofu", + "basil leaves", + "carrots", + "low sodium soy sauce", + "vegetable oil", + "thai green curry paste", + "lime zest", + "shallots", + "green beans", + "low-fat coconut milk", + "waxy potatoes", + "bamboo shoots" + ] + }, + { + "id": 2340, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "water", + "dashi", + "soy sauce" + ] + }, + { + "id": 8391, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "arborio rice", + "dry white wine", + "garlic cloves", + "bay leaves", + "hot sauce", + "chicken broth", + "butter", + "onions" + ] + }, + { + "id": 33664, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "molasses", + "baking soda", + "yellow onion", + "sour cream", + "chicken stock", + "lime juice", + "bay leaves", + "carrots", + "smoked ham hocks", + "avocado", + "water", + "sweet potatoes", + "garlic cloves", + "chopped cilantro fresh", + "celery ribs", + "dried black beans", + "olive oil", + "salt", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 42236, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sugar", + "garlic", + "red chili peppers", + "white sesame seeds", + "sesame", + "chili pepper" + ] + }, + { + "id": 7043, + "cuisine": "greek", + "ingredients": [ + "tilapia fillets", + "mushroom caps", + "spaghetti", + "olive oil", + "cheese", + "romaine lettuce", + "ground black pepper", + "garlic", + "cherry tomatoes", + "lemon" + ] + }, + { + "id": 5601, + "cuisine": "italian", + "ingredients": [ + "pecorino cheese", + "fennel bulb", + "balsamic vinegar", + "extra-virgin olive oil", + "ground white pepper", + "kosher salt", + "cannellini beans", + "crushed red pepper flakes", + "garlic cloves", + "fresh rosemary", + "cherry tomatoes", + "shallots", + "loosely packed fresh basil leaves", + "fresh lemon juice", + "bread ciabatta", + "baby arugula", + "red wine vinegar", + "purple onion" + ] + }, + { + "id": 9139, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "parmigiano reggiano cheese", + "carnaroli rice", + "saffron threads", + "ground black pepper", + "salt", + "olive oil", + "dry white wine", + "marrow", + "unsalted butter", + "onions" + ] + }, + { + "id": 42008, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "egg whites", + "salt", + "msg", + "vegetable oil", + "shrimp", + "black pepper", + "green onions", + "carrots", + "spring roll wrappers", + "finely chopped onion", + "ground pork" + ] + }, + { + "id": 26927, + "cuisine": "italian", + "ingredients": [ + "brown chicken stock", + "ground black pepper", + "garlic", + "onions", + "parmigiano-reggiano cheese", + "fresh thyme leaves", + "carrots", + "tomatoes", + "mushrooms", + "peanut oil", + "polenta", + "kosher salt", + "extra-virgin olive oil", + "celery" + ] + }, + { + "id": 31878, + "cuisine": "indian", + "ingredients": [ + "maida flour", + "green chilies", + "salt", + "rice flour", + "cheese", + "oil", + "butter", + "cilantro leaves", + "onions" + ] + }, + { + "id": 2435, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "oil", + "green cabbage", + "black pepper", + "celery", + "ground ginger", + "white onion", + "noodles", + "brown sugar", + "garlic" + ] + }, + { + "id": 29782, + "cuisine": "irish", + "ingredients": [ + "dried currants", + "ground nutmeg", + "whipping cream", + "chopped walnuts", + "large egg yolks", + "instant coffee", + "ground allspice", + "cream", + "unsalted butter", + "salt", + "golden brown sugar", + "old-fashioned oats", + "all-purpose flour" + ] + }, + { + "id": 32896, + "cuisine": "spanish", + "ingredients": [ + "french bread", + "garlic cloves", + "cherry tomatoes", + "lemon", + "dry white wine", + "fresh parsley", + "olive oil", + "littleneck clams" + ] + }, + { + "id": 10934, + "cuisine": "cajun_creole", + "ingredients": [ + "worcestershire sauce", + "celery", + "ground black pepper", + "creole seasoning", + "fresh parsley", + "sweet onion", + "garlic", + "medium shrimp", + "butter", + "fresh lemon juice", + "dried rosemary" + ] + }, + { + "id": 33066, + "cuisine": "italian", + "ingredients": [ + "chicken breasts", + "penne pasta", + "tomato sauce", + "crushed red pepper", + "sliced mushrooms", + "fresh basil", + "diced tomatoes", + "garlic cloves", + "parmesan cheese", + "salt", + "dried oregano" + ] + }, + { + "id": 22883, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "poblano peppers", + "corn husks", + "dough", + "cheese" + ] + }, + { + "id": 12855, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "sweetened condensed milk", + "eggs", + "oil", + "butter pecan cake mix", + "frosting", + "water", + "chopped pecans" + ] + }, + { + "id": 34883, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "light coconut milk", + "scallions", + "asian fish sauce", + "low sodium soy sauce", + "cooking spray", + "red curry paste", + "red bell pepper", + "tilapia fillets", + "salt", + "garlic cloves", + "ground cumin", + "brown sugar", + "peeled fresh ginger", + "dark sesame oil", + "chopped cilantro fresh" + ] + }, + { + "id": 28238, + "cuisine": "jamaican", + "ingredients": [ + "salted fish", + "oil", + "black pepper", + "flour", + "bell pepper", + "onions", + "water", + "baking powder" + ] + }, + { + "id": 23857, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic", + "fresh parsley", + "chicken stock", + "long grain brown rice", + "olive oil", + "celery", + "Johnsonville Andouille", + "green pepper", + "onions" + ] + }, + { + "id": 7972, + "cuisine": "southern_us", + "ingredients": [ + "celery salt", + "corn mix muffin", + "onions", + "eggs", + "vegetable oil", + "celery ribs", + "pepper", + "rubbed sage", + "chicken broth", + "cream of chicken soup" + ] + }, + { + "id": 44421, + "cuisine": "chinese", + "ingredients": [ + "large egg whites", + "boneless skinless chicken breasts", + "all-purpose flour", + "canola oil", + "low sodium soy sauce", + "vegetable oil spray", + "red pepper flakes", + "corn starch", + "fresh ginger", + "balsamic vinegar", + "garlic cloves", + "water", + "hoisin sauce", + "Corn Flakes Cereal", + "apricot jam" + ] + }, + { + "id": 25819, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "cornflour", + "firm tofu", + "chillies", + "water", + "ginger", + "sweet corn", + "corn flour", + "black rice vinegar", + "caster sugar", + "Shaoxing wine", + "tamari soy sauce", + "carrots", + "cashew nuts", + "dark soy sauce", + "agave nectar", + "garlic", + "peanut oil", + "onions" + ] + }, + { + "id": 33987, + "cuisine": "greek", + "ingredients": [ + "watermelon seeds", + "honey", + "all-purpose flour", + "sesame seeds", + "white sugar", + "ground cinnamon", + "salt" + ] + }, + { + "id": 20438, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "cooked rigatoni", + "fresh parmesan cheese", + "part-skim mozzarella cheese", + "ground round", + "cooking spray" + ] + }, + { + "id": 3365, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "corn tortillas", + "chipotle chile", + "salsa", + "chopped cilantro fresh", + "avocado", + "corn oil", + "onions", + "canned black beans", + "lime wedges", + "pork butt" + ] + }, + { + "id": 44433, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "cassia cinnamon", + "garlic", + "cilantro leaves", + "ghee", + "green cardamom pods", + "coriander seeds", + "ginger", + "purple onion", + "hot water", + "cumin", + "sugar", + "chili powder", + "paneer", + "green chilies", + "plum tomatoes", + "black peppercorns", + "garam masala", + "kasuri methi", + "salt", + "greek yogurt" + ] + }, + { + "id": 34574, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "peanut oil", + "flank steak", + "asian chile paste", + "fresh ginger", + "garlic cloves", + "baby bok choy", + "dry sherry" + ] + }, + { + "id": 39449, + "cuisine": "cajun_creole", + "ingredients": [ + "green chile", + "seasoning salt", + "diced tomatoes", + "ham", + "small red beans", + "hot pepper sauce", + "white rice", + "andouille sausage", + "olive oil", + "paprika", + "onions", + "aleppo pepper", + "cooked chicken", + "garlic" + ] + }, + { + "id": 11417, + "cuisine": "french", + "ingredients": [ + "fresh marjoram", + "whole peeled tomatoes", + "extra-virgin olive oil", + "ground pepper", + "coarse salt", + "garlic cloves", + "eggplant", + "bell pepper", + "yellow onion", + "zucchini", + "red wine vinegar", + "bay leaf" + ] + }, + { + "id": 2889, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "barolo", + "fresh thyme", + "carrots", + "tomato paste", + "water", + "salt", + "celery ribs", + "black pepper", + "boneless beef chuck roast", + "onions", + "fresh rosemary", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 28930, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "curry powder", + "peeled fresh ginger", + "cilantro sprigs", + "sour cream", + "mango", + "ground cinnamon", + "coconut", + "boneless skinless chicken breasts", + "all-purpose flour", + "unsweetened applesauce", + "ground cumin", + "toasted peanuts", + "bananas", + "mango chutney", + "garlic cloves", + "onions", + "unsweetened coconut milk", + "plain yogurt", + "steamed white rice", + "vegetable oil", + "low salt chicken broth", + "frozen peas" + ] + }, + { + "id": 969, + "cuisine": "british", + "ingredients": [ + "shredded cheddar cheese", + "mushrooms", + "double crust", + "eggs", + "milk", + "yeast extract", + "onions", + "turnips", + "water", + "butter", + "carrots", + "pepper", + "potatoes", + "salt" + ] + }, + { + "id": 38664, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "rice vinegar", + "serrano chilies", + "fresh ginger", + "fresh bean", + "minced garlic", + "salad oil", + "sugar", + "sesame seeds" + ] + }, + { + "id": 28256, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "fresh cilantro", + "jalapeno chilies", + "coconut milk", + "brown sugar", + "lime juice", + "fresh ginger", + "chili sauce", + "fresh pineapple", + "chicken wings", + "soy sauce", + "lime", + "salt", + "chopped cilantro", + "coconut oil", + "lemongrass", + "peanuts", + "creamy peanut butter", + "mango" + ] + }, + { + "id": 25651, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "mandarin oranges", + "chopped pecans", + "frozen whipped topping", + "crushed pineapples in juice", + "yellow cake mix", + "margarine", + "flaked coconut", + "vanilla instant pudding" + ] + }, + { + "id": 4846, + "cuisine": "southern_us", + "ingredients": [ + "soy sauce", + "dried thyme", + "portabello mushroom", + "non dairy milk", + "corn starch", + "yellow corn meal", + "almond butter", + "ground black pepper", + "garlic", + "gluten-free bread", + "onions", + "pepper", + "whole wheat flour", + "vegetable broth", + "salt", + "applesauce", + "fresh rosemary", + "water", + "baking powder", + "chopped celery", + "rubbed sage", + "broth" + ] + }, + { + "id": 27489, + "cuisine": "french", + "ingredients": [ + "Emmenthal", + "garlic cloves", + "fat free less sodium chicken broth", + "dry white wine", + "lady apples", + "kirsch", + "ground nutmeg", + "all-purpose flour" + ] + }, + { + "id": 16162, + "cuisine": "french", + "ingredients": [ + "vegetable oil", + "fresh parsley leaves", + "shallots", + "port", + "fresh orange juice", + "stilton cheese", + "Belgian endive", + "star anise", + "pears" + ] + }, + { + "id": 44298, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "blueberries", + "sugar", + "vanilla", + "blackberries", + "brown sugar", + "flour", + "lemon juice", + "instant oats", + "salt" + ] + }, + { + "id": 18027, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic", + "chicken", + "green olives", + "dry white wine", + "yellow onion", + "roma tomatoes", + "salt", + "olive oil", + "pimentos", + "dried oregano" + ] + }, + { + "id": 3850, + "cuisine": "cajun_creole", + "ingredients": [ + "Johnsonville Smoked Sausage", + "water", + "stewed tomatoes", + "green pepper", + "fresh parsley", + "pepper", + "bay leaves", + "all-purpose flour", + "duck", + "cooked rice", + "dried thyme", + "salt", + "chopped onion", + "canola oil", + "minced garlic", + "worcestershire sauce", + "cayenne pepper", + "celery" + ] + }, + { + "id": 43834, + "cuisine": "cajun_creole", + "ingredients": [ + "all-purpose flour", + "salt", + "vegetable oil", + "eggplant", + "confectioners sugar" + ] + }, + { + "id": 26023, + "cuisine": "southern_us", + "ingredients": [ + "apple cider vinegar", + "carrots", + "olive oil", + "yellow onion", + "collards", + "tomatoes", + "garlic", + "chipotle peppers", + "hot pepper sauce", + "creamy peanut butter" + ] + }, + { + "id": 20802, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "lime wedges", + "dry bread crumbs", + "corn tortillas", + "slaw", + "light mayonnaise", + "cilantro leaves", + "red bell pepper", + "sliced green onions", + "low-fat buttermilk", + "reduced-fat sour cream", + "taco seasoning", + "fillets", + "cooking spray", + "salt", + "baked tortilla chips", + "fresh lime juice" + ] + }, + { + "id": 41105, + "cuisine": "southern_us", + "ingredients": [ + "bananas", + "vanilla extract", + "honey roasted peanuts", + "whipping cream", + "dark brown sugar", + "Nilla Wafers", + "cream cheese", + "butter", + "creamy peanut butter" + ] + }, + { + "id": 16129, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "color food green", + "all-purpose flour", + "vegetable shortening", + "vanilla extract", + "unsweetened cocoa powder", + "white vinegar", + "buttermilk", + "salt", + "baking soda", + "red food coloring", + "white sugar" + ] + }, + { + "id": 5932, + "cuisine": "french", + "ingredients": [ + "olive oil", + "large garlic cloves", + "cinnamon sticks", + "Turkish bay leaves", + "white wine vinegar", + "orange zest", + "whole allspice", + "shallots", + "dark brown sugar", + "lemon zest", + "pink peppercorns", + "picholine" + ] + }, + { + "id": 31270, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "boneless skinless chicken breasts", + "sesame seeds", + "oyster sauce", + "sugar", + "garlic powder", + "corn starch", + "water", + "broccoli" + ] + }, + { + "id": 43103, + "cuisine": "southern_us", + "ingredients": [ + "confectioners sugar", + "butter", + "vanilla extract" + ] + }, + { + "id": 592, + "cuisine": "chinese", + "ingredients": [ + "shiitake", + "oyster sauce", + "wonton skins", + "green onions", + "corn starch", + "eggs", + "ginger" + ] + }, + { + "id": 1943, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "corn tortillas", + "diced tomatoes", + "jalapeno chilies", + "ground beef", + "taco seasoning" + ] + }, + { + "id": 42617, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "green onions", + "garlic", + "rice", + "pepper", + "vegetable oil", + "broccoli", + "unsweetened pineapple juice", + "sugar", + "boneless skinless chicken breasts", + "salt", + "corn starch", + "vinegar", + "ginger", + "cayenne pepper" + ] + }, + { + "id": 19904, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "diced tomatoes", + "penne pasta", + "tomato paste", + "grated parmesan cheese", + "garlic", + "onions", + "olive oil", + "cracked black pepper", + "cream cheese", + "fresh spinach", + "red pepper flakes", + "salt", + "dried oregano" + ] + }, + { + "id": 37478, + "cuisine": "jamaican", + "ingredients": [ + "vegetable stock", + "corn starch", + "scallions", + "large shrimp", + "jamaican jerk spice", + "oil", + "sweet corn", + "celery" + ] + }, + { + "id": 30067, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vegetable oil", + "radishes", + "whole grain mustard", + "slaw mix", + "white vinegar", + "green onions" + ] + }, + { + "id": 15124, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "extra-virgin olive oil", + "garlic cloves", + "red wine vinegar", + "boneless pork loin", + "large garlic cloves", + "freshly ground pepper", + "kosher salt", + "artichokes", + "bay leaf" + ] + }, + { + "id": 27541, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "habanero chile", + "white vinegar", + "garlic cloves", + "white onion" + ] + }, + { + "id": 34347, + "cuisine": "thai", + "ingredients": [ + "frozen shelled edamame", + "kale", + "sesame oil", + "cashew nuts", + "water", + "honey", + "garlic", + "canola oil", + "lemongrass", + "bell pepper", + "cilantro leaves", + "low sodium soy sauce", + "white distilled vinegar", + "green onions", + "carrots" + ] + }, + { + "id": 48811, + "cuisine": "indian", + "ingredients": [ + "milk", + "saffron", + "cardamom pods", + "almonds", + "sugar", + "basmati rice" + ] + }, + { + "id": 21729, + "cuisine": "indian", + "ingredients": [ + "dry coconut", + "sweetened condensed milk", + "cardamom pods", + "vanilla extract", + "oil" + ] + }, + { + "id": 1277, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "garlic powder", + "green onions", + "fresh parsley", + "large egg whites", + "cooking spray", + "part-skim ricotta cheese", + "manicotti shells", + "fresh parmesan cheese", + "garlic", + "dried oregano", + "part-skim mozzarella cheese", + "2% low-fat cottage cheese", + "lemon pepper" + ] + }, + { + "id": 16205, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "garlic", + "peanut oil", + "sliced green onions", + "cooked rice", + "pepper", + "Gold Medal All Purpose Flour", + "onions", + "boneless chicken skinless thigh", + "salt", + "okra", + "pepper sauce", + "bay leaves", + "creole seasoning", + "Progresso™ Chicken Broth" + ] + }, + { + "id": 29821, + "cuisine": "british", + "ingredients": [ + "beef drippings", + "all-purpose flour", + "milk", + "eggs", + "salt", + "water" + ] + }, + { + "id": 36551, + "cuisine": "italian", + "ingredients": [ + "water", + "polenta", + "salt", + "2% reduced-fat milk", + "cream cheese" + ] + }, + { + "id": 10538, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "garlic", + "chopped cilantro fresh", + "fish sauce", + "prawns", + "fresh lime juice", + "kaffir lime leaves", + "palm sugar", + "salt", + "plum tomatoes", + "jasmine rice", + "thai chile", + "galangal" + ] + }, + { + "id": 24769, + "cuisine": "filipino", + "ingredients": [ + "cream of tartar", + "egg yolks", + "powdered sugar", + "vanilla extract", + "sugar", + "condensed milk", + "egg whites" + ] + }, + { + "id": 26817, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "crushed red pepper", + "fine sea salt", + "extra-virgin olive oil", + "fresh parsley", + "water", + "garlic cloves" + ] + }, + { + "id": 49123, + "cuisine": "korean", + "ingredients": [ + "salt", + "eggs", + "seafood", + "all-purpose flour", + "water", + "scallions" + ] + }, + { + "id": 12551, + "cuisine": "southern_us", + "ingredients": [ + "seasoning salt", + "dry bread crumbs", + "pepper", + "salt", + "chicken", + "melted butter", + "basil", + "oregano", + "parmesan cheese", + "oil" + ] + }, + { + "id": 3337, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "confectioners sugar", + "water", + "strawberries", + "unsalted butter", + "brioche bread", + "eggs", + "vanilla extract" + ] + }, + { + "id": 46574, + "cuisine": "cajun_creole", + "ingredients": [ + "peeled shrimp", + "olive oil", + "olive oil flavored cooking spray", + "low sodium worcestershire sauce", + "creole seasoning", + "butter" + ] + }, + { + "id": 25141, + "cuisine": "thai", + "ingredients": [ + "reduced sodium beef broth", + "flank steak", + "ginger", + "thai green curry paste", + "honey", + "lime wedges", + "red bell pepper", + "soy sauce", + "shallots", + "scallions", + "asian fish sauce", + "egg noodles", + "vegetable oil", + "fresh lime juice" + ] + }, + { + "id": 38260, + "cuisine": "french", + "ingredients": [ + "great northern beans", + "water", + "diced tomatoes", + "chopped onion", + "fresh parsley", + "black pepper", + "chicken breasts", + "acorn squash", + "smoked turkey sausage", + "marsala wine", + "dried basil", + "bacon slices", + "garlic cloves", + "butter-margarine blend", + "dried thyme", + "salt", + "carrots" + ] + }, + { + "id": 7479, + "cuisine": "chinese", + "ingredients": [ + "baby spinach", + "scallions", + "toasted sesame oil", + "black sesame seeds", + "salt", + "Chinese egg noodles", + "vegetable oil", + "fresh mushrooms", + "white sesame seeds", + "light soy sauce", + "garlic", + "chinese five-spice powder" + ] + }, + { + "id": 20093, + "cuisine": "southern_us", + "ingredients": [ + "pure maple syrup", + "unsalted butter", + "all-purpose flour", + "pure vanilla extract", + "sugar", + "buttermilk", + "brown sugar", + "egg yolks", + "turbinado", + "water", + "salt" + ] + }, + { + "id": 42658, + "cuisine": "mexican", + "ingredients": [ + "jicama", + "green bell pepper", + "cucumber", + "seasoning", + "lemon juice", + "orange" + ] + }, + { + "id": 47158, + "cuisine": "italian", + "ingredients": [ + "whole wheat pizza crust", + "artichoke hearts", + "cooked chicken breasts", + "pasta sauce", + "red bell pepper", + "part-skim mozzarella cheese" + ] + }, + { + "id": 22425, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "chili powder", + "salsa", + "corn tortillas", + "rub", + "garlic powder", + "onion powder", + "yellow onion", + "cumin", + "green bell pepper", + "jalapeno chilies", + "cilantro", + "cayenne pepper", + "black pepper", + "flank steak", + "salt", + "red bell pepper" + ] + }, + { + "id": 31193, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "green onions", + "vegetable oil", + "english cucumber", + "noodles", + "red chili peppers", + "soya bean", + "szechwan peppercorns", + "salt", + "rapeseed oil", + "sugar", + "vinegar", + "seeds", + "star anise", + "garlic cloves", + "boneless chicken breast", + "spring onions", + "ginger", + "oil" + ] + }, + { + "id": 7303, + "cuisine": "cajun_creole", + "ingredients": [ + "cinnamon rolls", + "sugar" + ] + }, + { + "id": 30372, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "chicken breasts", + "purple onion", + "flat leaf parsley", + "tomatoes", + "french bread", + "low sodium vegetable juice", + "garlic cloves", + "chopped green bell pepper", + "red wine vinegar", + "salt", + "water", + "cooking spray", + "extra-virgin olive oil", + "cucumber" + ] + }, + { + "id": 40446, + "cuisine": "italian", + "ingredients": [ + "all-purpose flour", + "eggs", + "salt" + ] + }, + { + "id": 19967, + "cuisine": "irish", + "ingredients": [ + "white onion", + "potatoes", + "salt", + "olive oil", + "vegetable stock", + "pepper", + "chives", + "crème fraîche", + "fennel bulb", + "large garlic cloves" + ] + }, + { + "id": 27255, + "cuisine": "indian", + "ingredients": [ + "unsweetened coconut milk", + "vegetable oil", + "cayenne pepper", + "chopped cilantro fresh", + "curry powder", + "diced tomatoes", + "fresh lemon juice", + "large shrimp", + "tumeric", + "large garlic cloves", + "ground coriander", + "plain whole-milk yogurt", + "garam masala", + "onion tops", + "onions" + ] + }, + { + "id": 29439, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "shredded cheddar cheese", + "chives", + "green onions", + "taco seasoning mix", + "sour cream" + ] + }, + { + "id": 25968, + "cuisine": "italian", + "ingredients": [ + "parsley sprigs", + "large eggs", + "large garlic cloves", + "purple onion", + "garlic cloves", + "chicken stock", + "ground nutmeg", + "potatoes", + "chopped celery", + "all-purpose flour", + "flat leaf parsley", + "tomato paste", + "ground black pepper", + "butter", + "crushed red pepper", + "sweet italian sausage", + "olive oil", + "grated parmesan cheese", + "extra-virgin olive oil", + "salt", + "carrots" + ] + }, + { + "id": 7539, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "parmigiano reggiano cheese", + "yellow onion", + "ground beef", + "celery ribs", + "milk", + "ground pork", + "garlic cloves", + "pancetta", + "kosher salt", + "bay leaves", + "freshly ground pepper", + "tagliatelle", + "tomato paste", + "olive oil", + "dry red wine", + "carrots" + ] + }, + { + "id": 39393, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "sour cream", + "cheddar cheese", + "garlic", + "onions", + "tortillas", + "ground beef", + "jack cheese", + "enchilada sauce" + ] + }, + { + "id": 859, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "all-purpose flour", + "light brown sugar", + "vanilla extract", + "toasted sesame seeds", + "baking soda", + "salt", + "butter", + "fresh lemon juice" + ] + }, + { + "id": 40117, + "cuisine": "thai", + "ingredients": [ + "honey", + "napa cabbage", + "english cucumber", + "fresh lime juice", + "sliced green onions", + "fresh basil", + "lower sodium soy sauce", + "salt", + "Thai fish sauce", + "coleslaw", + "black pepper", + "light pancake syrup", + "cilantro leaves", + "beef tenderloin steaks", + "grated orange", + "olive oil", + "mandarin oranges", + "garlic cloves", + "serrano chile" + ] + }, + { + "id": 37794, + "cuisine": "indian", + "ingredients": [ + "sweet potatoes", + "green beans", + "poppadoms", + "red chili peppers", + "vegetable stock", + "curry paste", + "basmati rice", + "cauliflower", + "vegetable oil", + "mustard seeds", + "cashew nuts", + "fresh coriander", + "lemon juice", + "onions", + "saffron" + ] + }, + { + "id": 41585, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "diced tomatoes", + "corn tortillas", + "black pepper", + "garlic", + "onions", + "cotija", + "cilantro", + "fresh lime juice", + "avocado", + "jalapeno chilies", + "salt", + "chicken" + ] + }, + { + "id": 13234, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "dark sesame oil", + "onions", + "low sodium soy sauce", + "flank steak", + "garlic cloves", + "peeled fresh ginger", + "peanut oil", + "spaghetti", + "chile paste with garlic", + "broccoli", + "oyster sauce" + ] + }, + { + "id": 45366, + "cuisine": "italian", + "ingredients": [ + "fresh thyme", + "penne pasta", + "fresh parsley", + "olive oil", + "garlic", + "chopped onion", + "italian seasoning", + "sugar", + "red pepper flakes", + "chunky tomato sauce", + "fresh basil leaves", + "ground black pepper", + "salt", + "ground beef" + ] + }, + { + "id": 1598, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "Italian parsley leaves", + "dried oregano", + "Tabasco Pepper Sauce", + "purple onion", + "bay leaves", + "bacon", + "black-eyed peas", + "coarse sea salt", + "garlic cloves" + ] + }, + { + "id": 25065, + "cuisine": "italian", + "ingredients": [ + "prosecco", + "brandy", + "strawberries", + "powdered sugar" + ] + }, + { + "id": 14109, + "cuisine": "japanese", + "ingredients": [ + "salmon fillets", + "lemon", + "fresh lemon juice", + "shiro miso", + "olive oil", + "navel oranges", + "fresh chives", + "fresh orange juice", + "sake", + "fresh shiitake mushrooms", + "cilantro leaves" + ] + }, + { + "id": 16702, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "all-purpose flour", + "flat leaf parsley", + "capers", + "dry white wine", + "freshly ground pepper", + "pork cutlets", + "prosciutto", + "anchovy fillets", + "kosher salt", + "lemon", + "garlic cloves" + ] + }, + { + "id": 36230, + "cuisine": "korean", + "ingredients": [ + "honey", + "garlic", + "green onions", + "chicken thighs", + "fresh ginger", + "rice vinegar", + "soy sauce", + "chili powder" + ] + }, + { + "id": 32535, + "cuisine": "italian", + "ingredients": [ + "celery salt", + "condensed cream of mushroom soup", + "bay leaf", + "water", + "yellow onion", + "dried oregano", + "tomatoes", + "shredded sharp cheddar cheese", + "ground beef", + "dried basil", + "elbow macaroni" + ] + }, + { + "id": 14411, + "cuisine": "mexican", + "ingredients": [ + "condensed tomato soup", + "chunky salsa", + "milk", + "sour cream", + "shredded cheese", + "flour tortillas", + "ground beef" + ] + }, + { + "id": 2955, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "ground black pepper", + "green onions", + "garlic cloves", + "fat free less sodium chicken broth", + "cooking spray", + "salt", + "corn starch", + "water", + "peeled fresh ginger", + "grated lemon zest", + "five-spice powder", + "brown sugar", + "pork tenderloin", + "dry sherry", + "fresh lemon juice" + ] + }, + { + "id": 20132, + "cuisine": "spanish", + "ingredients": [ + "fresh chives", + "manchego cheese", + "low salt chicken broth", + "sourdough bread", + "large garlic cloves", + "saffron threads", + "olive oil", + "salt", + "baguette", + "dry white wine" + ] + }, + { + "id": 13244, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "bacon slices", + "water", + "frozen corn kernels", + "pepper", + "creole seasoning", + "seasoning", + "chopped tomatoes", + "okra" + ] + }, + { + "id": 19834, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "Gochujang base", + "light brown sugar", + "sesame oil", + "chicken pieces", + "honey", + "garlic cloves", + "brown rice vinegar", + "yellow onion" + ] + }, + { + "id": 11009, + "cuisine": "french", + "ingredients": [ + "dried thyme", + "green peas", + "egg yolks", + "all-purpose flour", + "potatoes", + "shoulder roast", + "white onion", + "mushrooms", + "carrots" + ] + }, + { + "id": 46634, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "green onions", + "large shrimp", + "unsalted butter", + "onions", + "water", + "garlic" + ] + }, + { + "id": 45565, + "cuisine": "russian", + "ingredients": [ + "water", + "bay leaf", + "white vinegar", + "salt", + "garlic", + "turnips", + "beets" + ] + }, + { + "id": 31427, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "cayenne", + "all-purpose flour", + "bottled clam juice", + "vegetable oil", + "large shrimp", + "scallion greens", + "chopped green bell pepper", + "onions", + "water", + "salt" + ] + }, + { + "id": 47371, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "ground black pepper", + "black olives", + "flat leaf parsley", + "tomato sauce", + "dry red wine", + "dry bread crumbs", + "dried oregano", + "eggs", + "lean ground beef", + "salt", + "pimento stuffed green olives", + "kasseri", + "olive oil", + "garlic", + "chopped onion", + "ground lamb" + ] + }, + { + "id": 48654, + "cuisine": "vietnamese", + "ingredients": [ + "superfine sugar", + "corn starch", + "mint", + "vietnamese fish sauce", + "vegetable oil", + "chopped cilantro", + "chicken wings", + "garlic cloves" + ] + }, + { + "id": 43933, + "cuisine": "mexican", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "garlic", + "flour tortillas", + "sliced green onions", + "low-fat plain yogurt", + "converted rice", + "ground cumin", + "canned black beans", + "salsa" + ] + }, + { + "id": 37628, + "cuisine": "british", + "ingredients": [ + "bread crumbs", + "golden syrup", + "black treacle", + "salt", + "plain flour", + "unsalted butter", + "juice", + "sugar", + "free range egg" + ] + }, + { + "id": 24162, + "cuisine": "indian", + "ingredients": [ + "salt", + "clarified butter", + "baking yeast", + "water", + "bread flour" + ] + }, + { + "id": 15914, + "cuisine": "mexican", + "ingredients": [ + "whitefish", + "salt", + "lime juice", + "corn tortillas", + "pepper", + "oil", + "chili powder", + "cumin" + ] + }, + { + "id": 39409, + "cuisine": "mexican", + "ingredients": [ + "chicken legs", + "sweet onion", + "garlic cloves", + "tomato paste", + "kosher salt", + "raisins", + "unsweetened cocoa powder", + "ground cinnamon", + "water", + "smoked almonds", + "ground cumin", + "chipotle chile", + "ground black pepper", + "adobo sauce" + ] + }, + { + "id": 14197, + "cuisine": "mexican", + "ingredients": [ + "cooked meatballs", + "shredded Monterey Jack cheese", + "green bell pepper", + "salsa", + "black beans", + "sour cream", + "flour tortillas" + ] + }, + { + "id": 13600, + "cuisine": "vietnamese", + "ingredients": [ + "clove", + "sugar", + "jalapeno chilies", + "anise", + "oil", + "fish sauce", + "thai basil", + "lime wedges", + "beef broth", + "mung bean sprouts", + "fennel seeds", + "kosher salt", + "mushrooms", + "cilantro", + "cinnamon sticks", + "top round steak", + "Sriracha", + "rice noodles", + "yellow onion" + ] + }, + { + "id": 18559, + "cuisine": "spanish", + "ingredients": [ + "medium eggs", + "sweet mini bells", + "extra-virgin olive oil", + "potatoes", + "onions", + "salt" + ] + }, + { + "id": 13668, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "flank steak", + "garlic cloves", + "fresh ginger", + "pineapple", + "red bell pepper", + "honey", + "baby spinach", + "garlic chili sauce", + "orange", + "reduced sodium soy sauce", + "seasoned rice wine vinegar", + "canola oil" + ] + }, + { + "id": 12738, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "onions", + "streaky bacon", + "risotto rice", + "grated parmesan cheese", + "chicken stock", + "chestnut mushrooms" + ] + }, + { + "id": 31808, + "cuisine": "chinese", + "ingredients": [ + "water", + "brown rice", + "sliced green onions", + "pepper", + "large eggs", + "dark sesame oil", + "low sodium soy sauce", + "shiitake", + "green peas", + "minced garlic", + "dry white wine", + "carrots" + ] + }, + { + "id": 42416, + "cuisine": "mexican", + "ingredients": [ + "salt", + "jalapeno chilies", + "tomatillos", + "white onion", + "chopped cilantro fresh" + ] + }, + { + "id": 911, + "cuisine": "french", + "ingredients": [ + "vegetable oil", + "baking potatoes" + ] + }, + { + "id": 26673, + "cuisine": "chinese", + "ingredients": [ + "fresh spinach", + "chicken", + "chinese rice wine", + "scallions", + "rice stick noodles", + "water", + "garlic chives", + "gingerroot" + ] + }, + { + "id": 26600, + "cuisine": "japanese", + "ingredients": [ + "chicken wings", + "dashi kombu", + "vegetable oil", + "scallions", + "chicken bones", + "leeks", + "garlic", + "soy sauce", + "soy milk", + "ginger", + "toasted sesame oil", + "water", + "ramen noodles", + "salt" + ] + }, + { + "id": 38571, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "large eggs", + "vegetable oil", + "ground ginger", + "honey", + "green onions", + "rice vinegar", + "chicken broth", + "garlic powder", + "boneless skinless chicken breasts", + "corn starch", + "brown sugar", + "chili paste", + "sesame oil", + "toasted sesame seeds" + ] + }, + { + "id": 8786, + "cuisine": "southern_us", + "ingredients": [ + "ground ginger", + "sugar", + "pastry dough", + "corn starch", + "solid pack pumpkin", + "large eggs", + "ground allspice", + "ground cinnamon", + "honey", + "whipping cream", + "pecan halves", + "unsalted butter", + "salt" + ] + }, + { + "id": 24837, + "cuisine": "indian", + "ingredients": [ + "black gram", + "dried red chile peppers", + "asafoetida", + "cumin seed", + "black peppercorns", + "salt", + "bengal gram", + "oil" + ] + }, + { + "id": 10519, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "tomato sauce", + "dried basil", + "large eggs", + "garlic", + "onions", + "fresh basil", + "water", + "lasagna noodles", + "crushed red pepper flakes", + "all-purpose flour", + "eggs", + "mozzarella cheese", + "parmesan cheese", + "diced tomatoes", + "salt", + "italian sausage", + "black pepper", + "olive oil", + "ricotta cheese", + "crushed red pepper", + "italian seasoning" + ] + }, + { + "id": 12281, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "cumin", + "whole wheat tortillas", + "chicken", + "jack cheese", + "salsa", + "sweet onion", + "red bell pepper" + ] + }, + { + "id": 8332, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "sea salt", + "sugar", + "cooking spray", + "all-purpose flour", + "dry yeast", + "fine sea salt", + "warm water", + "chopped fresh thyme", + "garlic cloves" + ] + }, + { + "id": 16947, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "tortilla chips", + "chili", + "American cheese", + "green onions" + ] + }, + { + "id": 19476, + "cuisine": "greek", + "ingredients": [ + "granulated sugar", + "flavored oil", + "greek style plain yogurt", + "agave nectar", + "strawberries" + ] + }, + { + "id": 13774, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "whiskey", + "peaches", + "water", + "teas" + ] + }, + { + "id": 47828, + "cuisine": "chinese", + "ingredients": [ + "brown rice vinegar", + "corn starch", + "vegetable oil", + "white sugar", + "cold water", + "salt", + "baby bok choy", + "dried red chile peppers" + ] + }, + { + "id": 9920, + "cuisine": "cajun_creole", + "ingredients": [ + "active dry yeast", + "all-purpose flour", + "eggs", + "heavy cream", + "confectioners sugar", + "granulated sugar", + "peanut oil", + "warm water", + "salt" + ] + }, + { + "id": 15245, + "cuisine": "cajun_creole", + "ingredients": [ + "instant rice", + "worcestershire sauce", + "low sodium tomato", + "boneless skinless chicken breasts", + "celery", + "tomato paste", + "reduced sodium chicken broth", + "sweet pepper", + "peeled deveined shrimp", + "cajun seasoning", + "onions" + ] + }, + { + "id": 49119, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "lemon", + "white sugar", + "baking powder", + "corn starch", + "vegetable oil", + "kirsch", + "milk", + "all-purpose flour" + ] + }, + { + "id": 22970, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "salt", + "greek yogurt", + "large shrimp", + "tumeric", + "yellow onion", + "chopped cilantro", + "minced garlic", + "rice", + "cashew nuts", + "minced ginger", + "flavored oil", + "plum tomatoes" + ] + }, + { + "id": 43104, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "milk", + "salt", + "brown sugar", + "unsalted butter", + "free-range eggs", + "strong white bread flour", + "mixed dried fruit", + "yeast", + "caster sugar", + "vegetable oil" + ] + }, + { + "id": 20819, + "cuisine": "vietnamese", + "ingredients": [ + "chinese rock sugar", + "light soy sauce", + "szechwan peppercorns", + "scallions", + "chopped cilantro", + "water", + "chuck roast", + "salt", + "garlic cloves", + "canola oil", + "dark soy sauce", + "fresh ginger", + "star anise", + "chinese five-spice powder", + "serrano chile", + "broccolini", + "Shaoxing wine", + "bean sauce", + "Chinese egg noodles" + ] + }, + { + "id": 46578, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lasagna noodles, cooked and drained", + "tomato basil sauce", + "zucchini", + "part-skim ricotta cheese", + "red bell pepper", + "pesto", + "cooking spray", + "purple onion", + "part-skim mozzarella cheese", + "sliced carrots", + "sliced mushrooms" + ] + }, + { + "id": 39564, + "cuisine": "italian", + "ingredients": [ + "fresh cilantro", + "salt", + "chicken", + "eggs", + "barbecue sauce", + "cornmeal", + "cauliflower", + "olive oil", + "shredded mozzarella cheese", + "pepper", + "purple onion", + "italian seasoning" + ] + }, + { + "id": 11015, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "creole seafood seasoning", + "butter", + "red bell pepper", + "creole mustard", + "lump crab meat", + "fresh thyme", + "cook egg hard", + "mayonaise", + "prepared horseradish", + "green onions", + "freshly ground pepper", + "capers", + "corn kernels", + "jalapeno chilies", + "purple onion" + ] + }, + { + "id": 23123, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "finely chopped onion", + "large garlic cloves", + "lemon juice", + "scallion greens", + "cider vinegar", + "Tabasco Pepper Sauce", + "dijon style mustard", + "light brown sugar", + "italian tomatoes", + "oxtails", + "worcestershire sauce", + "seasoned flour", + "chili beans", + "cayenne", + "vegetable oil", + "gingerroot" + ] + }, + { + "id": 55, + "cuisine": "mexican", + "ingredients": [ + "knorr garlic minicub", + "disco empanada frozen", + "eggs", + "raisins", + "ground beef", + "vegetable oil", + "pimento stuffed olives", + "water", + "knorr chicken flavor bouillon", + "onions" + ] + }, + { + "id": 34249, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "anchovies", + "pickled beets", + "boiling water", + "romaine lettuce", + "feta cheese", + "shrimp", + "green bell pepper", + "olive oil", + "fresh oregano", + "iceberg lettuce", + "salad", + "pitted kalamata olives", + "red wine vinegar", + "cucumber" + ] + }, + { + "id": 1561, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "butter", + "noodles", + "olive oil", + "fresh lemon juice", + "pepper", + "salt", + "chicken broth", + "chicken breasts", + "fresh parsley" + ] + }, + { + "id": 18860, + "cuisine": "japanese", + "ingredients": [ + "garlic paste", + "cinnamon", + "oil", + "cashew nuts", + "tomatoes", + "cream", + "paneer", + "onions", + "clove", + "red chili peppers", + "butter", + "bay leaf", + "red chili powder", + "coriander powder", + "salt", + "coriander" + ] + }, + { + "id": 28941, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "honey", + "spring onions", + "chinese five-spice powder", + "water", + "white rice vinegar", + "star anise", + "minced garlic", + "hoisin sauce", + "szechwan peppercorns", + "sugar", + "minced ginger", + "Shaoxing wine", + "salt" + ] + }, + { + "id": 22296, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "all-purpose flour", + "nonfat buttermilk", + "baking powder", + "vegetable oil cooking spray", + "salt", + "baking soda", + "margarine" + ] + }, + { + "id": 45618, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "cooking spray", + "seasoned rice wine vinegar", + "cucumber", + "chile paste with garlic", + "shredded carrots", + "salt", + "garlic cloves", + "fat free less sodium chicken broth", + "peeled fresh ginger", + "peanut butter", + "sliced green onions", + "low sodium soy sauce", + "udon", + "ground pork", + "dark sesame oil" + ] + }, + { + "id": 21479, + "cuisine": "korean", + "ingredients": [ + "chives", + "salt", + "ground black pepper", + "crushed red pepper", + "soy sauce", + "flank steak", + "long-grain rice", + "fresh ginger", + "sesame oil", + "chopped garlic" + ] + }, + { + "id": 3311, + "cuisine": "mexican", + "ingredients": [ + "brown rice", + "red bell pepper", + "boneless skinless chicken breasts", + "cream cheese", + "vegetable soup", + "corn tortillas", + "cheese", + "ground cumin" + ] + }, + { + "id": 38510, + "cuisine": "british", + "ingredients": [ + "pepper", + "whole milk yoghurt", + "lemon", + "mustard seeds", + "tomatoes", + "fresh cilantro", + "spring onions", + "garlic", + "smoked & dried fish", + "curry powder", + "large eggs", + "ginger", + "onions", + "basmati", + "hot chili", + "butter", + "salt" + ] + }, + { + "id": 14952, + "cuisine": "mexican", + "ingredients": [ + "spinach leaves", + "tomatillos", + "corn tortillas", + "jalapeno chilies", + "green chilies", + "water", + "grated jack cheese", + "green onions", + "garlic cloves" + ] + }, + { + "id": 6267, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "milk", + "pecorino romano cheese", + "fresh parsley", + "sugar", + "crumbs", + "garlic", + "eggs", + "ground black pepper", + "extra-virgin olive oil", + "ground chicken", + "balsamic vinegar", + "salt" + ] + }, + { + "id": 25594, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "water", + "tomato juice", + "chives", + "garlic cloves", + "fresh basil", + "olive oil", + "mushroom caps", + "shallots", + "corn starch", + "black pepper", + "won ton wrappers", + "chopped fresh chives", + "salt", + "shiitake mushroom caps", + "white wine", + "fresh parmesan cheese", + "leeks", + "chopped onion" + ] + }, + { + "id": 49048, + "cuisine": "korean", + "ingredients": [ + "water", + "salt", + "eggs", + "sesame oil", + "carrots", + "processed cheese", + "sushi nori", + "cooked ham", + "white rice", + "cucumber" + ] + }, + { + "id": 9194, + "cuisine": "spanish", + "ingredients": [ + "sherry vinegar", + "mixed greens", + "pinenuts", + "extra-virgin olive oil", + "pepper", + "salt", + "green olives", + "roasted red peppers" + ] + }, + { + "id": 8200, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "half & half", + "bacon", + "spaghetti", + "chicken bouillon", + "shallots", + "garlic", + "marsala wine", + "green onions", + "tomatoes with juice", + "grated parmesan cheese", + "vegetable oil", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 10824, + "cuisine": "spanish", + "ingredients": [ + "milk", + "eggs", + "extra large eggs", + "granulated sugar", + "vanilla beans", + "whipping cream" + ] + }, + { + "id": 6762, + "cuisine": "italian", + "ingredients": [ + "green cabbage", + "pasta shell small", + "russet potatoes", + "onions", + "water", + "grated parmesan cheese", + "salt", + "fresh basil", + "zucchini", + "extra-virgin olive oil", + "chopped garlic", + "celery ribs", + "chopped tomatoes", + "red beans", + "carrots" + ] + }, + { + "id": 14379, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "fresh cilantro", + "chili powder", + "all-purpose flour", + "red bell pepper", + "ground cumin", + "shredded cheddar cheese", + "baking powder", + "salt", + "pinto beans", + "dried oregano", + "shortening", + "milk", + "chile pepper", + "freshly ground pepper", + "cornmeal", + "black beans", + "zucchini", + "vegetable oil", + "garlic cloves", + "onions" + ] + }, + { + "id": 9676, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "baking soda", + "butter", + "dumplings", + "water", + "flour", + "roasting chickens", + "onions", + "chicken stock", + "roasting hen", + "parsley", + "carrots", + "pepper", + "crisco", + "salt", + "celery" + ] + }, + { + "id": 25800, + "cuisine": "italian", + "ingredients": [ + "eggs", + "all-purpose flour", + "butter", + "anise extract", + "baking powder", + "candied fruit", + "salt", + "white sugar" + ] + }, + { + "id": 45639, + "cuisine": "indian", + "ingredients": [ + "minced ginger", + "heavy cream", + "onions", + "minced garlic", + "garam masala", + "salt", + "ground turmeric", + "tomato paste", + "honey", + "lamb shoulder", + "chopped cilantro fresh", + "water", + "butter", + "cayenne pepper" + ] + }, + { + "id": 7323, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "garlic", + "chopped cilantro", + "lemon", + "cayenne pepper", + "chicken", + "garam masala", + "salt", + "cumin", + "ginger", + "oil" + ] + }, + { + "id": 328, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "salt", + "chicken cutlets", + "grated lemon peel", + "ground black pepper", + "flat leaf parsley", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 16820, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "garlic powder", + "diced tomatoes", + "freshly ground pepper", + "tomato paste", + "olive oil", + "chili powder", + "salt", + "ground cumin", + "water", + "cayenne", + "garlic", + "ground beef", + "brown sugar", + "kidney beans", + "onion powder", + "yellow onion" + ] + }, + { + "id": 5792, + "cuisine": "british", + "ingredients": [ + "buns", + "honey", + "white bread flour", + "yeast", + "ground cinnamon", + "ground cloves", + "unsalted butter", + "salt", + "eggs", + "milk", + "granulated sugar", + "dark brown sugar", + "pure vanilla extract", + "sultana", + "ground nutmeg", + "raisins", + "fine granulated sugar" + ] + }, + { + "id": 34556, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "ground black pepper", + "salt", + "fresh lemon juice", + "boneless chicken skinless thigh", + "chopped fresh thyme", + "lemon rind", + "green olives", + "cooking spray", + "fresh oregano", + "olive oil", + "crushed red pepper", + "garlic cloves" + ] + }, + { + "id": 48101, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "Mexican cheese blend", + "whole wheat tortillas", + "red bell pepper", + "green bell pepper", + "olive oil", + "chili powder", + "cilantro leaves", + "cumin", + "corn kernels", + "fat-free refried beans", + "garlic", + "onions", + "black beans", + "ground black pepper", + "Old El Paso™ chopped green chiles", + "enchilada sauce" + ] + }, + { + "id": 8692, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "basil leaves", + "dark brown sugar", + "canola oil", + "lower sodium soy sauce", + "lime wedges", + "fresh lime juice", + "ground chicken", + "shallots", + "red bell pepper", + "ground black pepper", + "garlic", + "serrano chile" + ] + }, + { + "id": 49140, + "cuisine": "korean", + "ingredients": [ + "water", + "sesame oil", + "onions", + "soy sauce", + "sesame seeds", + "salt", + "pepper flakes", + "anchovies", + "garlic", + "dried kelp", + "green onions", + "soybean sprouts" + ] + }, + { + "id": 5280, + "cuisine": "southern_us", + "ingredients": [ + "nutmeg", + "peaches", + "butter", + "sugar", + "baking powder", + "brown sugar", + "quick oats", + "allspice", + "almond flour", + "cinnamon" + ] + }, + { + "id": 1114, + "cuisine": "cajun_creole", + "ingredients": [ + "white onion", + "extra-virgin olive oil", + "green onions", + "long grain white rice", + "crumbles", + "celery", + "chicken broth", + "cajun seasoning", + "sage" + ] + }, + { + "id": 48449, + "cuisine": "thai", + "ingredients": [ + "pork", + "rice noodles", + "fresh basil leaves", + "olive oil", + "salt", + "soy sauce", + "garlic", + "white sugar", + "serrano peppers", + "beansprouts" + ] + }, + { + "id": 11357, + "cuisine": "italian", + "ingredients": [ + "linguine", + "scallion greens", + "garlic cloves", + "scallions", + "olive oil", + "medium shrimp" + ] + }, + { + "id": 25460, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "dry white wine", + "garlic cloves", + "unsalted butter", + "chopped fresh thyme", + "fresh parsley", + "ground black pepper", + "shallots", + "country bread", + "mushrooms", + "extra-virgin olive oil" + ] + }, + { + "id": 35358, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "balsamic vinegar", + "garlic cloves", + "olive oil" + ] + }, + { + "id": 27086, + "cuisine": "chinese", + "ingredients": [ + "powdered sugar", + "milk", + "butter", + "oil", + "eggs", + "wine", + "rum", + "chocolate", + "vanilla ice cream", + "flour", + "mandarin oranges", + "mint", + "pinenuts", + "cinnamon", + "salt" + ] + }, + { + "id": 23853, + "cuisine": "indian", + "ingredients": [ + "water", + "baby spinach", + "chopped onion", + "cucumber", + "dried lentils", + "whole wheat pita", + "reduced-fat sour cream", + "cumin seed", + "ground turmeric", + "minced garlic", + "fresh ginger", + "salt", + "fresh lemon juice", + "yellow mustard seeds", + "olive oil", + "crushed red pepper", + "organic vegetable broth", + "plum tomatoes" + ] + }, + { + "id": 26834, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "grated parmesan cheese", + "low salt chicken broth", + "fennel seeds", + "fennel bulb", + "tortellini", + "olive oil", + "large garlic cloves", + "baby spinach leaves", + "crimini mushrooms", + "heavy whipping cream" + ] + }, + { + "id": 45755, + "cuisine": "mexican", + "ingredients": [ + "radishes", + "purple onion", + "avocado", + "red wine vinegar", + "pink grapefruit", + "jicama", + "salt", + "pepper", + "garlic", + "fresh basil leaves" + ] + }, + { + "id": 2527, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "ground cinnamon", + "meat" + ] + }, + { + "id": 48186, + "cuisine": "filipino", + "ingredients": [ + "water", + "coconut milk", + "sago", + "honeydew melon", + "sugar", + "salt" + ] + }, + { + "id": 7305, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "purple onion", + "plum tomatoes", + "boneless skinless chicken breasts", + "feta cheese crumbles", + "iceberg lettuce", + "pitas", + "greek style plain yogurt", + "dried oregano", + "fresh dill", + "extra-virgin olive oil", + "cucumber" + ] + }, + { + "id": 45317, + "cuisine": "mexican", + "ingredients": [ + "fat free less sodium chicken broth", + "red bell pepper", + "white hominy", + "chopped cilantro fresh", + "andouille sausage", + "zucchini", + "olive oil", + "chipotles in adobo" + ] + }, + { + "id": 35350, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "shredded mozzarella cheese", + "pasta", + "garlic", + "diced tomatoes", + "boneless skinless chicken breast halves", + "fresh spinach", + "cooking wine" + ] + }, + { + "id": 23195, + "cuisine": "italian", + "ingredients": [ + "water", + "extra-virgin olive oil", + "ricotta", + "chopped garlic", + "black pepper", + "unsalted butter", + "salt", + "fresh lemon juice", + "large egg yolks", + "cake flour", + "goat cheese", + "pinenuts", + "lemon zest", + "all-purpose flour", + "arugula" + ] + }, + { + "id": 6581, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "vegetable oil", + "queso asadero", + "onions", + "milk", + "salt", + "chile pepper", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 21452, + "cuisine": "indian", + "ingredients": [ + "warm water", + "bread flour", + "whole wheat flour", + "olive oil", + "fine sea salt" + ] + }, + { + "id": 8093, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "sesame seeds", + "extra firm tofu", + "red pepper", + "lime juice", + "peanuts", + "green onions", + "rice vinegar", + "tomato paste", + "fresh cilantro", + "garlic powder", + "sesame oil", + "broccoli", + "brown sugar", + "olive oil", + "zucchini", + "rice noodles", + "garlic cloves" + ] + }, + { + "id": 15798, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "chili powder", + "beef broth", + "ground cumin", + "black beans", + "non-fat sour cream", + "chopped cilantro fresh", + "diced onions", + "pepper", + "salt", + "dried oregano", + "ground chuck", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 17387, + "cuisine": "jamaican", + "ingredients": [ + "brown sugar", + "ground nutmeg", + "peeled fresh ginger", + "chopped onion", + "white vinegar", + "black pepper", + "pork tenderloin", + "vegetable oil", + "garlic cloves", + "ground cinnamon", + "kosher salt", + "cooking spray", + "scotch bonnet chile", + "soy sauce", + "fresh thyme", + "green onions", + "ground allspice" + ] + }, + { + "id": 14391, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "shallots", + "low sodium soy sauce", + "cooking spray", + "grated orange", + "hoisin sauce", + "orange juice", + "brown sugar", + "peeled fresh ginger" + ] + }, + { + "id": 34907, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "unsalted butter", + "baking powder", + "grated lemon zest", + "peaches", + "cooking spray", + "all-purpose flour", + "granulated sugar", + "vanilla extract", + "confectioners sugar" + ] + }, + { + "id": 3997, + "cuisine": "french", + "ingredients": [ + "cherries", + "all-purpose flour", + "sugar", + "refrigerated piecrusts", + "ground allspice", + "vegetable oil cooking spray", + "large eggs", + "cherry preserves", + "cream", + "vanilla extract" + ] + }, + { + "id": 4910, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "diced tomatoes", + "freshly ground pepper", + "basmati rice", + "fresh ginger", + "yellow onion", + "coconut milk", + "chili", + "salt", + "garlic cloves", + "canola oil", + "water", + "sweet potatoes", + "chickpeas", + "frozen peas" + ] + }, + { + "id": 13389, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "kosher salt", + "extra-virgin olive oil", + "cherry tomatoes", + "fresh chevre", + "penne", + "loosely packed fresh basil leaves" + ] + }, + { + "id": 14968, + "cuisine": "british", + "ingredients": [ + "eggs", + "salt", + "milk", + "flour", + "water" + ] + }, + { + "id": 28538, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vanilla wafers", + "cream of tartar", + "bananas", + "milk", + "all-purpose flour", + "eggs", + "vanilla extract" + ] + }, + { + "id": 26931, + "cuisine": "french", + "ingredients": [ + "butter", + "salt", + "heavy cream", + "pepper", + "chicken breast tenderloins" + ] + }, + { + "id": 49200, + "cuisine": "southern_us", + "ingredients": [ + "rib eye steaks", + "gravy", + "buttermilk", + "large eggs", + "vegetable oil", + "hot sauce", + "ground black pepper", + "baking powder", + "all-purpose flour", + "baking soda", + "ground red pepper", + "salt" + ] + }, + { + "id": 44154, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "beef tenderloin", + "cayenne pepper", + "low sodium beef broth", + "potatoes", + "purple onion", + "boneless pork loin", + "masa harina", + "olive oil", + "garlic", + "fresh oregano", + "chopped cilantro fresh", + "chile pepper", + "salt", + "ground white pepper", + "ground cumin" + ] + }, + { + "id": 37979, + "cuisine": "russian", + "ingredients": [ + "vegetables", + "salt", + "buckwheat groats", + "white button mushrooms", + "onions" + ] + }, + { + "id": 22170, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "olive oil", + "muffin", + "salt", + "tapioca flour", + "grating cheese", + "milk" + ] + }, + { + "id": 32811, + "cuisine": "italian", + "ingredients": [ + "instant espresso powder", + "semi-sweet chocolate morsels", + "eggs", + "butter", + "ground cinnamon", + "baking powder", + "shortening", + "all-purpose flour" + ] + }, + { + "id": 22152, + "cuisine": "mexican", + "ingredients": [ + "milk", + "ground allspice", + "sugar", + "apples", + "piloncillo", + "cinnamon", + "orange zest", + "water", + "all-purpose flour" + ] + }, + { + "id": 15377, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "zucchini", + "crushed red pepper", + "shredded mozzarella cheese", + "yellow squash", + "diced tomatoes", + "penne pasta", + "black pepper", + "crushed garlic", + "purple onion", + "red bell pepper", + "olive oil", + "chunky style pasta sauce", + "whole kernel corn, drain" + ] + }, + { + "id": 13789, + "cuisine": "indian", + "ingredients": [ + "serrano peppers", + "salt", + "ground turmeric", + "almond flour", + "ginger", + "oil", + "tapioca flour", + "chili powder", + "cilantro leaves", + "ground black pepper", + "purple onion", + "coconut milk" + ] + }, + { + "id": 24489, + "cuisine": "british", + "ingredients": [ + "stout", + "vanilla ice cream", + "blackberry brandy" + ] + }, + { + "id": 42950, + "cuisine": "spanish", + "ingredients": [ + "savoy cabbage", + "salt", + "truffle oil", + "water", + "yukon gold potatoes" + ] + }, + { + "id": 14755, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "garlic powder", + "enchilada sauce", + "condensed cream of celery soup", + "cheese spread", + "boneless skinless chicken breast halves", + "condensed cream of chicken soup", + "diced tomatoes", + "onions", + "green chile", + "chili powder", + "corn tortillas" + ] + }, + { + "id": 40975, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "vanilla extract", + "confectioners sugar", + "sugar", + "vegetable oil", + "salt", + "eggs", + "baking powder", + "cake flour", + "baking soda", + "buttermilk", + "all-purpose flour" + ] + }, + { + "id": 29240, + "cuisine": "mexican", + "ingredients": [ + "chicken bouillon", + "adobo seasoning", + "tomato sauce", + "water", + "sliced green onions", + "drumstick", + "cooking spray", + "black beans", + "long grain white rice" + ] + }, + { + "id": 20906, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "red pepper flakes", + "green onions", + "onions", + "whole wheat pizza dough", + "shredded mozzarella cheese", + "chicken breasts", + "chipotle sauce" + ] + }, + { + "id": 10568, + "cuisine": "french", + "ingredients": [ + "black pepper", + "salt", + "fresh parsley", + "pitted kalamata olives", + "roasted red peppers", + "garlic cloves", + "parsley sprigs", + "extra-virgin olive oil", + "small red potato", + "sherry vinegar", + "anchovy fillets" + ] + }, + { + "id": 33913, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "onions", + "fish sauce", + "oil", + "chicken", + "avocado", + "garlic", + "cashew nuts", + "sugar", + "coconut milk" + ] + }, + { + "id": 29370, + "cuisine": "filipino", + "ingredients": [ + "tomatoes", + "water", + "salt", + "sugar", + "vinegar", + "squid", + "soy sauce", + "cooking oil", + "onions", + "pepper", + "crushed garlic" + ] + }, + { + "id": 9445, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "cooking spray", + "onions", + "matzo meal", + "olive oil", + "chicken breast halves", + "honey", + "dry white wine", + "chicken thighs", + "preserved lemon", + "ground black pepper", + "chicken drumsticks" + ] + }, + { + "id": 886, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "dates", + "water", + "rice flour", + "sugar", + "glutinous rice flour", + "cake", + "coconut milk" + ] + }, + { + "id": 33876, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "sauce", + "cornbread mix", + "chopped onion", + "mascarpone", + "green pepper", + "red pepper", + "shrimp" + ] + }, + { + "id": 18272, + "cuisine": "indian", + "ingredients": [ + "coconut", + "vegetable oil", + "cilantro leaves", + "clove", + "bay leaves", + "ginger", + "coconut milk", + "green cardamom pods", + "chana dal", + "cinnamon", + "mustard seeds", + "tumeric", + "golden raisins", + "salt", + "jaggery" + ] + }, + { + "id": 13025, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "cooking spray", + "wonton wrappers", + "asparagus", + "peeled fresh ginger", + "dark sesame oil", + "kosher salt", + "mushrooms", + "rice vinegar", + "water chestnuts", + "green onions", + "garlic cloves" + ] + }, + { + "id": 29558, + "cuisine": "thai", + "ingredients": [ + "lime zest", + "low sodium chicken broth", + "light coconut milk", + "chopped cilantro", + "shiitake", + "baby spinach", + "grated lemon zest", + "boneless, skinless chicken breast", + "fresh lemon", + "garlic", + "glass noodles", + "jalapeno chilies", + "ginger", + "Thai fish sauce" + ] + }, + { + "id": 6414, + "cuisine": "mexican", + "ingredients": [ + "guajillo chiles", + "ancho powder", + "thyme", + "bay leaves", + "boneless beef chuck roast", + "boiling water", + "lime juice", + "garlic", + "onions", + "clove", + "apple cider vinegar", + "cumin seed", + "dried oregano" + ] + }, + { + "id": 2349, + "cuisine": "moroccan", + "ingredients": [ + "boneless salmon fillets", + "green onions", + "yellow bell pepper", + "ground black pepper", + "paprika", + "nectarines", + "pinenuts", + "sea salt", + "ground cardamom", + "ground ginger", + "cooking oil", + "whole wheat couscous", + "ground cumin" + ] + }, + { + "id": 37612, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "cayenne pepper", + "onions", + "garam masala", + "paprika", + "cumin seed", + "ginger paste", + "cauliflower", + "baking potatoes", + "ground coriander", + "ground turmeric", + "chile pepper", + "salt", + "lemon juice" + ] + }, + { + "id": 19974, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "red wine vinegar", + "squid", + "chopped cilantro fresh", + "water", + "dry white wine", + "garlic", + "red bell pepper", + "olive oil", + "jicama", + "chopped celery", + "fresh parsley", + "green bell pepper", + "green onions", + "yellow bell pepper", + "cucumber" + ] + }, + { + "id": 46547, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "salt", + "olive oil", + "pimentos", + "scallions", + "pitted black olives", + "green leaf lettuce", + "squid", + "ground black pepper", + "wine vinegar", + "lemon juice" + ] + }, + { + "id": 35277, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "crushed red pepper", + "fettucine", + "butter", + "soft fresh goat cheese", + "grated parmesan cheese", + "provolone cheese", + "pinenuts", + "whipping cream", + "crumbled gorgonzola" + ] + }, + { + "id": 25099, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "vegetable oil", + "masa harina", + "Knorr Chicken Flavor Bouillon", + "lard", + "corn husks", + "garlic", + "chorizo sausage", + "water", + "baking powder", + "onions" + ] + }, + { + "id": 25214, + "cuisine": "korean", + "ingredients": [ + "water", + "salt", + "Korean chile flakes", + "sesame oil", + "chillies", + "green onions", + "beansprouts", + "soy sauce", + "garlic", + "toasted sesame seeds" + ] + }, + { + "id": 10411, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "reduced-fat sour cream", + "pork", + "onion powder", + "monterey jack", + "flour tortillas", + "enchilada sauce", + "chopped green chilies", + "condensed tomato soup", + "ground cumin" + ] + }, + { + "id": 46327, + "cuisine": "chinese", + "ingredients": [ + "suckling pig", + "bay leaves", + "worcestershire sauce", + "salt", + "lard", + "white onion", + "jalapeno chilies", + "raisins", + "red bliss potato", + "carrots", + "green apples", + "tomatoes", + "ground black pepper", + "Mexican oregano", + "fresh orange juice", + "pimento stuffed olives", + "fresh lime juice", + "adobo", + "fresh thyme", + "cinnamon", + "garlic", + "juice", + "fresh pineapple" + ] + }, + { + "id": 31880, + "cuisine": "japanese", + "ingredients": [ + "tomatoes", + "amchur", + "bay leaves", + "brown cardamom", + "onions", + "kabuli channa", + "coriander powder", + "cilantro leaves", + "cinnamon sticks", + "garlic paste", + "garam masala", + "salt", + "oil", + "red chili powder", + "baking soda", + "black tea leaves", + "green chilies", + "ground cumin" + ] + }, + { + "id": 6836, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "coriander powder", + "mutton", + "brown cardamom", + "bay leaf", + "ground cumin", + "nutmeg", + "mace", + "chili powder", + "cilantro leaves", + "cumin seed", + "onions", + "clove", + "water", + "yoghurt", + "salt", + "green chilies", + "ghee", + "tomatoes", + "garam masala", + "cinnamon", + "green cardamom", + "oil", + "ground turmeric" + ] + }, + { + "id": 39321, + "cuisine": "mexican", + "ingredients": [ + "milk", + "lemon juice", + "sugar", + "whipping cream" + ] + }, + { + "id": 37862, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "lettuce leaves", + "hot water", + "chopped cilantro fresh", + "fresh ginger", + "crushed red pepper", + "fresh mint", + "olive oil", + "green onions", + "cucumber", + "medium shrimp uncook", + "rolls", + "fresh lime juice" + ] + }, + { + "id": 20254, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "all-purpose flour", + "butter", + "chopped pecans", + "sugar", + "vanilla extract", + "cream cheese, soften", + "large eggs", + "salt" + ] + }, + { + "id": 44733, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "low-fat refried beans", + "wheat germ", + "brown rice", + "enchilada sauce", + "cheddar cheese", + "whole wheat tortillas", + "cumin", + "chili powder", + "sour cream" + ] + }, + { + "id": 26989, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "shiitake", + "red pepper flakes", + "shrimp", + "sugar", + "minced garlic", + "vinegar", + "salt", + "onions", + "green cabbage", + "pepper", + "mushroom caps", + "ginger", + "hot water", + "soy sauce", + "water", + "sesame oil", + "all-purpose flour" + ] + }, + { + "id": 48176, + "cuisine": "british", + "ingredients": [ + "ground ginger", + "treacle", + "ground nutmeg", + "lemon", + "ground cinnamon", + "milk", + "self rising flour", + "golden syrup", + "oats", + "mixed spice", + "unsalted butter", + "vanilla extract", + "eggs", + "fresh ginger", + "muscovado sugar" + ] + }, + { + "id": 34647, + "cuisine": "mexican", + "ingredients": [ + "lime", + "bell pepper", + "garlic", + "ground cumin", + "plain yogurt", + "Mexican cheese blend", + "diced tomatoes", + "taco seasoning", + "avocado", + "egg roll wrappers", + "jalapeno chilies", + "salt", + "pepper", + "lean ground meat", + "crushed red pepper flakes", + "onions" + ] + }, + { + "id": 1527, + "cuisine": "jamaican", + "ingredients": [ + "dried currants", + "lemon peel", + "cinnamon", + "grated nutmeg", + "passover wine", + "glace cherries", + "dark rum", + "vanilla extract", + "almond paste", + "water", + "large eggs", + "raisins", + "dark brown sugar", + "prunes", + "unsalted butter", + "baking powder", + "cake flour", + "orange peel" + ] + }, + { + "id": 36310, + "cuisine": "italian", + "ingredients": [ + "pesto", + "grated parmesan cheese", + "onions", + "arborio rice", + "olive oil", + "salt", + "water", + "dry white wine", + "canned low sodium chicken broth", + "ground black pepper", + "oil" + ] + }, + { + "id": 4250, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "baking potatoes", + "thyme sprigs", + "tomatoes", + "large eggs", + "all-purpose flour", + "fresh parmesan cheese", + "salt", + "italian seasoning", + "olive oil", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 167, + "cuisine": "southern_us", + "ingredients": [ + "bread and butter pickles", + "salt", + "white cornmeal", + "pepper", + "buttermilk", + "fresh parsley", + "vegetable oil", + "creole seasoning", + "green tomatoes", + "all-purpose flour" + ] + }, + { + "id": 12469, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "shallots", + "lime", + "rice vinegar", + "kosher salt", + "vegetable oil", + "light brown sugar", + "ground black pepper", + "bone-in pork chops" + ] + }, + { + "id": 3383, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "green onions", + "bamboo shoots", + "fresh spinach", + "corn kernels", + "chili oil", + "eggs", + "dashi", + "ramen noodles", + "pork", + "miso paste", + "beansprouts" + ] + }, + { + "id": 21990, + "cuisine": "italian", + "ingredients": [ + "cheese", + "mascarpone", + "polenta", + "unsalted butter", + "cold water", + "fine sea salt" + ] + }, + { + "id": 27117, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "olive oil", + "salt", + "tomatoes", + "pepper", + "garlic", + "olives", + "chili pepper", + "ginger", + "onions", + "preserved lemon", + "water", + "ras el hanout", + "chicken" + ] + }, + { + "id": 25958, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "flour", + "salt", + "sugar", + "mild olive oil", + "sesame oil", + "kimchi", + "eggs", + "black pepper", + "green onions", + "beansprouts", + "pork", + "mung beans", + "garlic" + ] + }, + { + "id": 39359, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "garlic powder", + "garlic", + "grape tomatoes", + "queso asadero", + "asparagus spears", + "avocado", + "lime", + "extra-virgin olive oil", + "angel hair", + "ground black pepper", + "dried dillweed" + ] + }, + { + "id": 36833, + "cuisine": "brazilian", + "ingredients": [ + "granulated sugar", + "cachaca", + "lime" + ] + }, + { + "id": 15396, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "ground black pepper", + "large eggs", + "buttermilk", + "juice", + "canola oil", + "lime", + "unsalted butter", + "Tabasco Pepper Sauce", + "garlic cloves", + "cornmeal", + "store bought low sodium chicken stock", + "cayenne", + "boneless skinless chicken breasts", + "all-purpose flour", + "red bell pepper", + "mayonaise", + "baking soda", + "aioli", + "cajun seasoning", + "fresh parsley leaves", + "onions" + ] + }, + { + "id": 27187, + "cuisine": "spanish", + "ingredients": [ + "vegetable juice", + "vinaigrette", + "tomatoes", + "french bread", + "cucumber", + "garbanzo beans", + "garlic cloves", + "fresh basil", + "yellow bell pepper" + ] + }, + { + "id": 18384, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "pinenuts", + "flank steak", + "garlic cloves", + "bread crumbs", + "olive oil", + "salt", + "dried oregano", + "black pepper", + "dried thyme", + "raisins", + "dried parsley", + "fat free less sodium chicken broth", + "fresh parmesan cheese", + "chopped onion", + "dried rosemary" + ] + }, + { + "id": 10762, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "panko", + "center cut loin pork chop", + "sake", + "fresh ginger", + "peanut oil", + "low sodium soy sauce", + "large egg whites", + "salt", + "wasabi paste", + "fat free less sodium chicken broth", + "cooking spray", + "sliced green onions" + ] + }, + { + "id": 15880, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "vegetable oil", + "ground turmeric", + "lime juice", + "poha", + "salt", + "sugar", + "jalapeno chilies", + "raisins", + "dried cranberries", + "peanuts", + "unsalted cashews", + "cumin seed" + ] + }, + { + "id": 40938, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "sweet onion", + "cayenne pepper", + "boneless chop pork", + "bay leaves", + "small red beans", + "dried thyme", + "celery", + "cooked rice", + "kosher salt", + "garlic" + ] + }, + { + "id": 7458, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "basil", + "bucatini", + "chili flakes", + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "tomato purée", + "unsalted butter", + "cracked black pepper", + "flat leaf parsley", + "mint", + "pecorino romano cheese", + "garlic cloves" + ] + }, + { + "id": 20343, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "cilantro", + "lemon juice", + "tofu", + "chili powder", + "salt", + "onions", + "yoghurt", + "ginger", + "chopped cilantro", + "soy milk", + "vegetable oil", + "garlic cloves", + "ground turmeric" + ] + }, + { + "id": 37203, + "cuisine": "chinese", + "ingredients": [ + "white vinegar", + "water", + "peanut oil", + "low sodium soy sauce", + "sesame oil", + "corn starch", + "chicken stock", + "peeled fresh ginger", + "sherry wine", + "sugar", + "crushed red pepper" + ] + }, + { + "id": 30789, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "minced garlic", + "sesame oil", + "scallions", + "chicken broth", + "soy sauce", + "peanuts", + "salt", + "red bell pepper", + "cold water", + "red chili peppers", + "minced ginger", + "balsamic vinegar", + "corn starch", + "dark soy sauce", + "boneless chicken skinless thigh", + "rice wine", + "peanut oil", + "peppercorns" + ] + }, + { + "id": 30434, + "cuisine": "italian", + "ingredients": [ + "pitted date", + "toasted pine nuts", + "ground black pepper", + "honey", + "red wine" + ] + }, + { + "id": 14719, + "cuisine": "moroccan", + "ingredients": [ + "fresh ginger", + "spices", + "extra-virgin olive oil", + "baby carrots", + "cherry tomatoes", + "zucchini", + "cauliflower florets", + "oyster mushrooms", + "tomato paste", + "eggplant", + "mustard greens", + "vegetable broth", + "coriander", + "pearl onions", + "radishes", + "whole wheat couscous", + "garlic", + "cumin" + ] + }, + { + "id": 45866, + "cuisine": "italian", + "ingredients": [ + "dijon mustard", + "chees fresh mozzarella", + "hot cherry pepper", + "basil leaves", + "33% less sodium cooked deli ham", + "cooking spray", + "ciabatta", + "balsamic vinegar", + "plum tomatoes" + ] + }, + { + "id": 11220, + "cuisine": "filipino", + "ingredients": [ + "chili pepper", + "oil", + "garlic", + "coconut milk", + "pepper", + "shrimp", + "fish sauce", + "salt", + "onions" + ] + }, + { + "id": 41119, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "long-grain rice", + "fresh parsley", + "pepper", + "salt", + "bread slices", + "skim milk", + "low-sodium fat-free chicken broth", + "carrots", + "grated orange", + "butternut squash", + "garlic cloves", + "onions" + ] + }, + { + "id": 41523, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "plum tomatoes", + "shredded cheddar cheese", + "green onions", + "flour tortillas", + "refried beans", + "lean ground beef" + ] + }, + { + "id": 19357, + "cuisine": "indian", + "ingredients": [ + "mint", + "kirby cucumbers", + "salt", + "pomegranate seeds", + "cilantro", + "lime", + "paprika", + "mango", + "brown sugar", + "idaho potatoes", + "chaat masala" + ] + }, + { + "id": 2950, + "cuisine": "greek", + "ingredients": [ + "water", + "extra-virgin olive oil", + "basmati rice", + "fresh dill", + "raisins", + "onions", + "tomatoes", + "cinnamon", + "natural pistachios", + "eggplant", + "salt" + ] + }, + { + "id": 18259, + "cuisine": "french", + "ingredients": [ + "liver pate", + "sanding sugar", + "blackberries", + "ground cinnamon", + "unsalted butter", + "salt", + "water", + "granulated sugar", + "corn starch", + "large egg yolks", + "apples" + ] + }, + { + "id": 26386, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "fenugreek seeds", + "coconut milk", + "chicken", + "black pepper", + "curry", + "cumin seed", + "onions", + "garlic paste", + "vegetable oil", + "ground coriander", + "fresh lime juice", + "ginger paste", + "water", + "salt", + "mustard seeds", + "ground turmeric" + ] + }, + { + "id": 20198, + "cuisine": "mexican", + "ingredients": [ + "frozen whole kernel corn", + "cumin", + "lime juice", + "onions", + "avocado", + "jalapeno chilies", + "black beans", + "rotelle" + ] + }, + { + "id": 12326, + "cuisine": "thai", + "ingredients": [ + "chili", + "mango", + "purple onion", + "thai basil", + "lime", + "salt" + ] + }, + { + "id": 20884, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "Mission Corn Tortillas", + "jack cheese", + "garlic", + "onions", + "cooking spray", + "green chilies", + "vegetable oil", + "enchilada sauce" + ] + }, + { + "id": 49469, + "cuisine": "japanese", + "ingredients": [ + "sake", + "lime", + "nonstick spray", + "lemongrass", + "star anise", + "salmon fillets", + "fresh ginger", + "orange", + "white rice" + ] + }, + { + "id": 36203, + "cuisine": "southern_us", + "ingredients": [ + "parsley sprigs", + "grated parmesan cheese", + "salt", + "milk", + "butter", + "large eggs", + "shredded sharp cheddar cheese", + "pepper", + "quickcooking grits" + ] + }, + { + "id": 3366, + "cuisine": "italian", + "ingredients": [ + "shiitake", + "chives", + "extra-virgin olive oil", + "spaghetti", + "marsala wine", + "calamata olives", + "balsamic vinegar", + "freshly ground pepper", + "unsalted butter", + "shallots", + "salt", + "rosemary", + "grated parmesan cheese", + "large garlic cloves", + "white mushrooms" + ] + }, + { + "id": 16599, + "cuisine": "southern_us", + "ingredients": [ + "bread crumbs", + "grated nutmeg", + "light brown sugar", + "granulated sugar", + "lemon juice", + "unsalted butter", + "fresh raspberries", + "cream sweeten whip", + "all-purpose flour" + ] + }, + { + "id": 29034, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "pecorino romano cheese", + "parsley leaves", + "bucatini", + "parmesan cheese", + "cracked black pepper", + "guanciale", + "egg yolks" + ] + }, + { + "id": 47347, + "cuisine": "french", + "ingredients": [ + "salt", + "bay leaf", + "dry white wine", + "thyme", + "shallots", + "heavy whipping cream", + "unsalted butter", + "freshly ground pepper", + "saffron" + ] + }, + { + "id": 38897, + "cuisine": "indian", + "ingredients": [ + "garlic", + "onions", + "ground ginger", + "cayenne pepper", + "white vinegar", + "salt", + "olive oil", + "apricot preserves" + ] + }, + { + "id": 33672, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "water", + "unsalted butter", + "bourbon whiskey", + "salt", + "dark corn syrup", + "light molasses", + "baking powder", + "cake flour", + "sugar", + "baking soda", + "whole milk", + "vanilla extract", + "vanilla ice cream", + "vegetable oil spray", + "large eggs", + "buttermilk" + ] + }, + { + "id": 34797, + "cuisine": "japanese", + "ingredients": [ + "Sriracha", + "oil", + "ketchup", + "butter", + "garlic salt", + "mayonaise", + "onion powder", + "smoked paprika", + "garlic powder", + "rice vinegar" + ] + }, + { + "id": 10290, + "cuisine": "southern_us", + "ingredients": [ + "water", + "finely chopped onion", + "ground red pepper", + "vegetable broth", + "cornmeal", + "sugar", + "fat free milk", + "sweet potatoes", + "butter", + "all-purpose flour", + "ground cloves", + "frozen whole kernel corn", + "bay leaves", + "diced tomatoes", + "garlic cloves", + "navy beans", + "olive oil", + "zucchini", + "baking powder", + "salt", + "fresh parsley" + ] + }, + { + "id": 17229, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "cayenne pepper", + "mayonaise", + "green onions", + "ground cumin", + "green cabbage", + "radishes", + "carrots", + "lime juice", + "salt" + ] + }, + { + "id": 2907, + "cuisine": "italian", + "ingredients": [ + "pepper", + "diced tomatoes", + "chopped onion", + "boneless chicken skinless thigh", + "olive oil", + "salt", + "fennel seeds", + "dried thyme", + "dry red wine", + "bay leaf", + "black pepper", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 46313, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "green onions", + "lemon juice", + "avocado", + "chopped tomatoes", + "garlic", + "pepper", + "vegetable oil", + "chopped cilantro fresh", + "sake", + "tuna steaks", + "salt" + ] + }, + { + "id": 45567, + "cuisine": "chinese", + "ingredients": [ + "chiles", + "rice vermicelli", + "fresh mint", + "light brown sugar", + "bibb lettuce", + "garlic cloves", + "water", + "scallions", + "fresh lime juice", + "fish sauce", + "vegetable oil", + "carrots" + ] + }, + { + "id": 47102, + "cuisine": "thai", + "ingredients": [ + "large garlic cloves", + "eggplant", + "fresh lime juice", + "sugar", + "fresh mint", + "vegetable oil", + "asian fish sauce" + ] + }, + { + "id": 41783, + "cuisine": "southern_us", + "ingredients": [ + "chili powder", + "pinto beans", + "black pepper", + "all-purpose flour", + "dried oregano", + "salt", + "ground beef", + "garlic powder", + "beef broth", + "ground cumin" + ] + }, + { + "id": 10132, + "cuisine": "filipino", + "ingredients": [ + "condensed milk", + "powdered sugar", + "sugar" + ] + }, + { + "id": 16314, + "cuisine": "japanese", + "ingredients": [ + "chopped tomatoes", + "spices", + "garlic", + "cinnamon sticks", + "tumeric", + "coriander powder", + "ginger", + "green cardamom", + "onions", + "sugar", + "chili powder", + "kasuri methi", + "oil", + "cashew nuts", + "clove", + "garam masala", + "butter", + "paneer", + "bay leaf" + ] + }, + { + "id": 8355, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "chopped celery", + "green pepper", + "chicken broth", + "meat", + "all-purpose flour", + "bay leaf", + "tomato paste", + "green onions", + "salt", + "rice", + "pepper", + "butter", + "cayenne pepper", + "fresh parsley" + ] + }, + { + "id": 13713, + "cuisine": "brazilian", + "ingredients": [ + "shortening", + "instant coffee", + "white sugar", + "eggs", + "baking soda", + "salt", + "milk", + "vanilla extract", + "brown sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 13097, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "tortilla shells", + "lettuce", + "salsa", + "oil", + "chicken breasts", + "shredded cheese", + "tomatoes", + "hot sauce" + ] + }, + { + "id": 39906, + "cuisine": "italian", + "ingredients": [ + "pepper", + "dry white wine", + "arborio rice", + "unsalted butter", + "salt", + "asparagus", + "shallots", + "chicken stock", + "grated parmesan cheese" + ] + }, + { + "id": 31569, + "cuisine": "mexican", + "ingredients": [ + "fresh coriander", + "smoked paprika", + "tomatoes", + "potatoes", + "onions", + "cheddar cheese", + "hot chili powder", + "yellow peppers", + "red chili peppers", + "oil", + "ground cumin" + ] + }, + { + "id": 19881, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "butter", + "white cornmeal", + "baking powder", + "all-purpose flour", + "eggs", + "buttermilk" + ] + }, + { + "id": 23564, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "diced tomatoes", + "italian seasoning", + "pasta sauce", + "olive oil", + "fresh mushrooms", + "boneless chop pork", + "dry white wine", + "onions", + "green bell pepper", + "dried basil", + "garlic" + ] + }, + { + "id": 7272, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "cachaca", + "sugar", + "ice", + "pineapple" + ] + }, + { + "id": 4273, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "red bell pepper", + "ground red pepper", + "blanched almonds", + "plum tomatoes", + "sherry vinegar", + "salt", + "Italian bread", + "paprika", + "garlic cloves" + ] + }, + { + "id": 37466, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "cayenne pepper", + "corn tortillas", + "salt", + "enchilada sauce", + "cumin", + "chili powder", + "green chilies", + "cooked shrimp", + "fresh cilantro", + "salsa", + "sour cream" + ] + }, + { + "id": 8173, + "cuisine": "british", + "ingredients": [ + "egg whites", + "paprika", + "pepper", + "flour", + "nonstick spray", + "bread crumbs", + "potatoes", + "salt", + "olive oil", + "haddock fillets", + "cornmeal" + ] + }, + { + "id": 38823, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "garlic cloves", + "boneless chicken skinless thigh", + "bacon slices", + "fresh oregano", + "plum tomatoes", + "lower sodium chicken broth", + "orzo", + "white beans", + "flat leaf parsley", + "black pepper", + "white wine vinegar", + "chopped onion" + ] + }, + { + "id": 24934, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "grape tomatoes", + "corn kernels", + "red bell pepper", + "avocado", + "lime juice", + "toasted pumpkinseeds", + "romaine lettuce", + "no-salt-added black beans", + "chopped cilantro" + ] + }, + { + "id": 7079, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "heavy cream", + "oil", + "olive oil", + "sirloin steak", + "demi-glace", + "black peppercorns", + "potatoes", + "garlic", + "fresh parsley leaves", + "brandy", + "shallots", + "salt" + ] + }, + { + "id": 34927, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "garlic", + "chopped cilantro", + "tomatoes", + "chili powder", + "green chilies", + "diced onions", + "potatoes", + "salt", + "tumeric", + "cauliflower florets", + "oil" + ] + }, + { + "id": 8485, + "cuisine": "italian", + "ingredients": [ + "pasta", + "sea salt", + "ground black pepper", + "fresh basil leaves", + "parmesan cheese", + "extra-virgin olive oil", + "lemon zest", + "arugula" + ] + }, + { + "id": 42663, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "garbanzo beans", + "cream of chicken soup", + "salt", + "ground cumin", + "water", + "hot pepper sauce", + "diced tomatoes", + "onions", + "pepper", + "garlic powder", + "chili powder", + "banana peppers", + "chicken bouillon", + "lime juice", + "hominy", + "cilantro", + "chicken" + ] + }, + { + "id": 12208, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "shallots", + "lemon juice", + "olive oil", + "crushed red pepper", + "minced garlic", + "linguine", + "fresh parsley", + "clams", + "dry white wine", + "salt" + ] + }, + { + "id": 14438, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "tortillas", + "chili powder", + "salt", + "sour cream", + "shredded cheddar cheese", + "low sodium chicken broth", + "paprika", + "yellow onion", + "chopped cilantro fresh", + "black beans", + "roma tomatoes", + "diced tomatoes", + "frozen corn", + "fresh lime juice", + "ground black pepper", + "boneless skinless chicken breasts", + "garlic", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 45105, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "broccoli", + "large eggs", + "extra sharp cheddar cheese", + "yellow corn meal", + "all-purpose flour", + "finely chopped onion", + "double-acting baking powder" + ] + }, + { + "id": 45877, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "sandwiches", + "bacon", + "chicken breasts", + "cheddar cheese", + "sliced ham" + ] + }, + { + "id": 21941, + "cuisine": "japanese", + "ingredients": [ + "olive oil", + "plums", + "cucumber", + "garlic" + ] + }, + { + "id": 24271, + "cuisine": "italian", + "ingredients": [ + "pizza sauce", + "shredded mozzarella cheese", + "pepperoni", + "whole wheat crackers" + ] + }, + { + "id": 15553, + "cuisine": "russian", + "ingredients": [ + "unsalted butter", + "golden raisins", + "cream cheese, soften", + "water", + "dried apricot", + "salt", + "honey", + "orange marmalade", + "all-purpose flour", + "large eggs", + "cinnamon", + "confectioners sugar" + ] + }, + { + "id": 22674, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "provolone cheese", + "green bell pepper", + "marinara sauce", + "fontina cheese", + "grated parmesan cheese", + "polenta", + "minced garlic", + "green onions" + ] + }, + { + "id": 27098, + "cuisine": "mexican", + "ingredients": [ + "cooked brown rice", + "fresh cilantro", + "purple onion", + "cumin", + "avocado", + "minced garlic", + "chili powder", + "shredded cheese", + "black beans", + "sweet corn kernels", + "cayenne pepper", + "pico de gallo", + "tilapia fillets", + "red pepper", + "sour cream" + ] + }, + { + "id": 16609, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "fresh lime juice", + "canola oil", + "sugar", + "salt", + "basmati rice", + "roasted cashews", + "peeled fresh ginger", + "onions", + "curry powder", + "mustard seeds", + "ground turmeric" + ] + }, + { + "id": 43600, + "cuisine": "chinese", + "ingredients": [ + "spring onions", + "salt", + "cabbage", + "red chili peppers", + "garlic", + "sauce", + "sugar", + "szechwan peppercorns", + "rice vinegar", + "soy sauce", + "cooking wine", + "black vinegar" + ] + }, + { + "id": 43813, + "cuisine": "italian", + "ingredients": [ + "sugar", + "lemon rind", + "vanilla extract", + "yellow corn meal", + "salt", + "reduced fat milk", + "frozen blueberries" + ] + }, + { + "id": 33933, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "dried currants", + "harissa paste", + "extra-virgin olive oil", + "ground allspice", + "chopped cilantro", + "tomato paste", + "lamb shanks", + "whole peeled tomatoes", + "dry red wine", + "grated nutmeg", + "carrots", + "mint", + "water", + "shallots", + "salt", + "ground coriander", + "onions", + "chicken stock", + "slivered almonds", + "unsalted butter", + "large garlic cloves", + "instant couscous", + "freshly ground pepper", + "ground cumin" + ] + }, + { + "id": 45023, + "cuisine": "chinese", + "ingredients": [ + "water", + "Shaoxing wine", + "garlic", + "hoisin sauce", + "sesame oil", + "corn starch", + "light soy sauce", + "chicken breasts", + "carrots", + "sugar", + "broccoli florets", + "ginger" + ] + }, + { + "id": 29748, + "cuisine": "french", + "ingredients": [ + "salt", + "water", + "bread flour", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 48696, + "cuisine": "southern_us", + "ingredients": [ + "lime zest", + "granulated sugar", + "sweetened condensed milk", + "large egg yolks", + "salt", + "lime juice", + "graham cracker crumbs", + "unsalted butter", + "heavy whipping cream" + ] + }, + { + "id": 17092, + "cuisine": "mexican", + "ingredients": [ + "cheese", + "pepper", + "salsa", + "tri-tip roast", + "salt", + "tortillas", + "sour cream" + ] + }, + { + "id": 24282, + "cuisine": "italian", + "ingredients": [ + "fresh lemon juice", + "clementine juice", + "sugar", + "light corn syrup" + ] + }, + { + "id": 5880, + "cuisine": "french", + "ingredients": [ + "semisweet chocolate", + "confectioners sugar", + "heavy cream", + "unsalted butter", + "raspberry lambic" + ] + }, + { + "id": 47397, + "cuisine": "british", + "ingredients": [ + "whole milk", + "kosher salt", + "salted butter", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 29241, + "cuisine": "russian", + "ingredients": [ + "milk", + "eggs", + "yeast", + "melted butter", + "flour", + "sugar" + ] + }, + { + "id": 35764, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "sweetened condensed milk", + "and fat free half half", + "cinnamon sticks", + "vanilla extract" + ] + }, + { + "id": 20845, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "salt", + "red bell pepper", + "ground cumin", + "soy sauce", + "red pepper flakes", + "roasted peanuts", + "boneless skinless chicken breast halves", + "chicken broth", + "green onions", + "creamy peanut butter", + "onions", + "pepper", + "garlic", + "corn starch", + "chopped cilantro fresh" + ] + }, + { + "id": 18696, + "cuisine": "french", + "ingredients": [ + "semisweet chocolate", + "large egg yolks", + "whipping cream", + "sugar", + "whipped cream", + "instant espresso powder" + ] + }, + { + "id": 34048, + "cuisine": "italian", + "ingredients": [ + "parsley leaves", + "onions", + "olive oil", + "large garlic cloves", + "white sandwich bread", + "roasted red peppers", + "anchovy fillets", + "green olives", + "dry white wine", + "spaghetti" + ] + }, + { + "id": 18672, + "cuisine": "spanish", + "ingredients": [ + "cream cheese", + "chopped fresh chives", + "ham", + "dill pickles", + "prepared mustard" + ] + }, + { + "id": 15179, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "heavy cream", + "kosher salt", + "all-purpose flour", + "baking powder" + ] + }, + { + "id": 14297, + "cuisine": "mexican", + "ingredients": [ + "hot sauce", + "avocado", + "chopped cilantro fresh", + "fresh lime juice", + "sweet onion", + "plum tomatoes" + ] + }, + { + "id": 23041, + "cuisine": "russian", + "ingredients": [ + "baking soda", + "sugar", + "vanilla extract", + "eggs", + "flour", + "granny smith apples" + ] + }, + { + "id": 25250, + "cuisine": "indian", + "ingredients": [ + "low-fat plain yogurt", + "ground cloves", + "water", + "ground black pepper", + "ground coriander", + "coconut milk", + "nutmeg", + "tumeric", + "black pepper", + "olive oil", + "garlic", + "toasted almonds", + "saffron", + "brown sugar", + "boneless chicken skinless thigh", + "curry powder", + "cinnamon", + "ground cardamom", + "cumin", + "tomatoes", + "red chili peppers", + "white onion", + "garam masala", + "salt", + "ginger root" + ] + }, + { + "id": 13549, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "tortillas", + "mole sauce", + "white onion", + "cooked chicken", + "salad", + "radishes", + "fresh cheese", + "vegetable oil" + ] + }, + { + "id": 41721, + "cuisine": "mexican", + "ingredients": [ + "water", + "oil", + "masa harina", + "eggs", + "baking powder", + "onions", + "green onions", + "enchilada sauce", + "cheddar cheese", + "salt", + "olives" + ] + }, + { + "id": 14592, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "vegetable broth", + "arborio rice", + "butternut squash", + "whipping cream", + "pepper", + "dry white wine", + "salt", + "finely chopped onion", + "butter" + ] + }, + { + "id": 10929, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "unsalted butter", + "milk", + "bread flour", + "water", + "salt", + "eggs", + "active dry yeast" + ] + }, + { + "id": 4895, + "cuisine": "mexican", + "ingredients": [ + "cumin seed", + "corn oil", + "chopped cilantro fresh", + "fat-free chicken broth", + "long grain white rice", + "scallions" + ] + }, + { + "id": 38762, + "cuisine": "british", + "ingredients": [ + "water", + "vegetable oil", + "Burgundy wine", + "chicken bouillon", + "frozen pastry puff sheets", + "salt", + "eggs", + "dried thyme", + "button mushrooms", + "onions", + "pepper", + "boneless skinless chicken breasts", + "all-purpose flour" + ] + }, + { + "id": 32238, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "rice wine", + "garlic", + "green onions", + "red pepper flakes", + "corn starch", + "water", + "vegetable oil", + "oil", + "brown sugar", + "flank steak", + "ginger", + "onions" + ] + }, + { + "id": 1497, + "cuisine": "italian", + "ingredients": [ + "eggs", + "cheese tortellini", + "pepper", + "oil", + "bread crumbs", + "salt", + "cornflake crumbs", + "dried parsley" + ] + }, + { + "id": 6083, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "sesame seeds", + "chicken fingers", + "pepper", + "garlic", + "sliced green onions", + "sweet chili sauce", + "orange marmalade", + "dried minced onion", + "lime juice", + "salt" + ] + }, + { + "id": 42763, + "cuisine": "irish", + "ingredients": [ + "water", + "carrots", + "chopped fresh thyme", + "onions", + "leeks", + "fresh parsley", + "red potato", + "lamb shoulder chops" + ] + }, + { + "id": 31562, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "cilantro", + "rice", + "peanuts", + "urad dal", + "cumin seed", + "olive oil", + "ginger", + "green chilies", + "lemon", + "salt", + "mustard seeds" + ] + }, + { + "id": 27067, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "thai basil", + "salt", + "shrimp", + "pepper", + "rice noodles", + "garlic chili sauce", + "soy sauce", + "sesame oil", + "rice", + "cucumber", + "lime juice", + "romaine lettuce leaves", + "carrots" + ] + }, + { + "id": 47490, + "cuisine": "french", + "ingredients": [ + "olive oil", + "black olives", + "crusty rolls", + "tomatoes", + "fennel bulb", + "salt", + "ground black pepper", + "wine vinegar", + "fresh parsley", + "capers", + "garlic", + "chickpeas" + ] + }, + { + "id": 45771, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "apple cider vinegar", + "salt", + "sugar", + "whole milk", + "heavy cream", + "corn starch", + "water", + "bourbon whiskey", + "fine sea salt", + "light brown sugar", + "mint leaves", + "butter", + "all-purpose flour" + ] + }, + { + "id": 46103, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "Mexican cheese blend", + "salt", + "tomatoes", + "corn", + "garlic", + "taco seasoning", + "avocado", + "lime juice", + "cilantro", + "salsa", + "black beans", + "olive oil", + "pasta shells" + ] + }, + { + "id": 41649, + "cuisine": "southern_us", + "ingredients": [ + "vanilla extract", + "liqueur", + "cookies", + "white baking bar", + "heavy cream", + "glaze", + "bittersweet baking chocolate", + "fresh raspberries" + ] + }, + { + "id": 24661, + "cuisine": "moroccan", + "ingredients": [ + "eggs", + "vegetable oil", + "orange flower water", + "almonds", + "lemon", + "powdered sugar", + "butter", + "baking powder", + "vanilla" + ] + }, + { + "id": 43782, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "shredded mozzarella cheese", + "parsley", + "grated parmesan cheese", + "chicken", + "tortellini" + ] + }, + { + "id": 48369, + "cuisine": "mexican", + "ingredients": [ + "ground round", + "salt", + "green chile", + "jalapeno chilies", + "fresh lime juice", + "tomatoes", + "Mexican cheese blend", + "chopped onion", + "40% less sodium taco seasoning", + "cooking spray", + "chopped cilantro fresh" + ] + }, + { + "id": 37579, + "cuisine": "british", + "ingredients": [ + "serrano chilies", + "water", + "vegetable oil", + "soft-boiled egg", + "basmati rice", + "ketchup", + "garam masala", + "ginger", + "black mustard seeds", + "tumeric", + "pomegranate seeds", + "cilantro", + "cumin seed", + "smoked & dried fish", + "chicken stock", + "cream", + "lemon wedge", + "garlic", + "onions" + ] + }, + { + "id": 18818, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "black pepper", + "vinegar", + "ginger", + "rice", + "coconut milk", + "cooked ham", + "curry powder", + "diced tomatoes", + "salt", + "cumin seed", + "ground turmeric", + "curry leaves", + "sugar", + "black-eyed peas", + "crushed red pepper flakes", + "fenugreek seeds", + "black mustard seeds", + "red chili powder", + "water", + "cinnamon", + "garlic", + "green chilies", + "onions" + ] + }, + { + "id": 2817, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed brown sugar", + "dark corn syrup", + "ice water", + "salt", + "chopped pecans", + "ground cinnamon", + "solid pack pumpkin", + "egg whites", + "vegetable shortening", + "all-purpose flour", + "ground ginger", + "vegetable oil cooking spray", + "ground nutmeg", + "2% reduced-fat milk", + "maple syrup", + "eggs", + "sugar", + "bourbon whiskey", + "vanilla extract", + "ground allspice" + ] + }, + { + "id": 25436, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "sesame oil", + "garlic", + "shrimp", + "white vinegar", + "Shaoxing wine", + "ground pork", + "chili bean paste", + "noodles", + "soy sauce", + "spring onions", + "ginger", + "oyster sauce", + "dumpling wrappers", + "cilantro", + "salt", + "bok choy" + ] + }, + { + "id": 45532, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "scotch bonnet chile", + "chinese five-spice powder", + "ground nutmeg", + "yellow onion", + "chicken pieces", + "dried thyme", + "salt", + "garlic cloves", + "vegetable oil", + "scallions", + "allspice" + ] + }, + { + "id": 22010, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "cinnamon", + "purple onion", + "lamb", + "fresh cilantro", + "diced tomatoes", + "cayenne pepper", + "celery", + "water", + "lemon", + "margarine", + "lentils", + "tumeric", + "vermicelli", + "ginger", + "chickpeas", + "onions" + ] + }, + { + "id": 6991, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "lemon juice", + "large garlic cloves", + "fresh ginger", + "ground cumin", + "chiles", + "roasting chickens" + ] + }, + { + "id": 20092, + "cuisine": "russian", + "ingredients": [ + "salad dressing", + "boneless skinless chicken breasts", + "onions", + "apricot preserves" + ] + }, + { + "id": 2204, + "cuisine": "russian", + "ingredients": [ + "cold water", + "pork loin", + "carrots", + "dill weed", + "potatoes", + "beets", + "celery", + "cabbage", + "pepper", + "salt", + "sour cream", + "onions", + "flour", + "garlic cloves", + "tomato soup" + ] + }, + { + "id": 6958, + "cuisine": "mexican", + "ingredients": [ + "corn tortillas", + "cream style corn", + "Velveeta", + "Ro-Tel Diced Tomatoes & Green Chilies", + "lean ground beef" + ] + }, + { + "id": 47051, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "unsalted butter", + "salami", + "heavy cream", + "sweet italian sausage", + "sweet onion", + "grated parmesan cheese", + "ice water", + "salt", + "pepperoni", + "mozzarella cheese", + "granulated sugar", + "ricotta cheese", + "cheese", + "provolone cheese", + "eggs", + "prosciutto", + "egg yolks", + "vegetable shortening", + "all-purpose flour" + ] + }, + { + "id": 22408, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "cannellini beans", + "salt", + "paella rice", + "olive oil", + "paprika", + "escarole", + "saffron threads", + "water", + "large garlic cloves", + "red bell pepper", + "chicken stock", + "fresh peas", + "artichokes", + "onions" + ] + }, + { + "id": 27507, + "cuisine": "korean", + "ingredients": [ + "mirin", + "carrots", + "noodles", + "pasta", + "salt", + "kimchi", + "pork belly", + "freshly ground pepper", + "onions", + "bread", + "potatoes", + "sliced mushrooms", + "sliced green onions" + ] + }, + { + "id": 10082, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "extra-virgin olive oil", + "fresh raspberries", + "red leaf lettuce", + "fresh mozzarella", + "salt", + "black pepper", + "balsamic vinegar", + "purple onion", + "tomatoes", + "sliced black olives", + "garlic" + ] + }, + { + "id": 13869, + "cuisine": "russian", + "ingredients": [ + "powdered sugar", + "fine sea salt", + "large egg whites", + "walnut halves", + "unsweetened cocoa powder", + "vanilla extract" + ] + }, + { + "id": 14488, + "cuisine": "japanese", + "ingredients": [ + "angel hair", + "green onions", + "white sugar", + "sesame seeds", + "balsamic vinegar", + "soy sauce", + "sesame oil", + "hot chili oil", + "red bell pepper" + ] + }, + { + "id": 47861, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "Gochujang base", + "light brown sugar", + "sesame oil", + "chicken pieces", + "honey", + "garlic cloves", + "brown rice vinegar", + "yellow onion" + ] + }, + { + "id": 7607, + "cuisine": "italian", + "ingredients": [ + "milk", + "lean ground beef", + "extra-virgin olive oil", + "kosher salt", + "large eggs", + "worcestershire sauce", + "panko breadcrumbs", + "white onion", + "ground black pepper", + "yellow mustard", + "hot sauce", + "minced garlic", + "grated parmesan cheese", + "mozzarella balls", + "garlic salt" + ] + }, + { + "id": 16497, + "cuisine": "greek", + "ingredients": [ + "baking soda", + "mint sprigs", + "syrup", + "large eggs", + "walnuts", + "sugar", + "unsalted butter", + "all-purpose flour", + "plain yogurt", + "dried apricot", + "double-acting baking powder" + ] + }, + { + "id": 37658, + "cuisine": "vietnamese", + "ingredients": [ + "daikon", + "kosher salt", + "carrots", + "sugar", + "rice vinegar", + "water" + ] + }, + { + "id": 20766, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "chicken", + "tomatoes", + "bacon", + "white bread", + "whole milk", + "ground black pepper", + "salt" + ] + }, + { + "id": 18379, + "cuisine": "moroccan", + "ingredients": [ + "boneless chicken skinless thigh", + "olive oil", + "ground coriander", + "chile paste", + "yellow bell pepper", + "ground cumin", + "kosher salt", + "cooking spray", + "greek yogurt", + "cherry tomatoes", + "garlic" + ] + }, + { + "id": 5084, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "jalapeno chilies", + "onions", + "chicken bouillon", + "garlic", + "tomatoes", + "white rice", + "cumin", + "pepper", + "salt" + ] + }, + { + "id": 46740, + "cuisine": "brazilian", + "ingredients": [ + "chicken broth", + "sea salt", + "sausages", + "water", + "rice", + "smoked ham hocks", + "dried black beans", + "hot sauce", + "onions", + "bay leaves", + "garlic cloves" + ] + }, + { + "id": 49675, + "cuisine": "indian", + "ingredients": [ + "clove", + "tomatoes", + "coriander powder", + "garlic", + "cardamom", + "ground turmeric", + "fennel seeds", + "pepper", + "cinnamon", + "cilantro leaves", + "onions", + "ground fennel", + "grated coconut", + "chili powder", + "salt", + "coconut milk", + "chicken", + "curry leaves", + "water", + "poppy seeds", + "oil", + "cashew nuts" + ] + }, + { + "id": 32240, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "olive oil", + "salt", + "water", + "flour", + "ground turmeric", + "plain yogurt", + "garam masala", + "lentils", + "red lentils", + "amchur", + "sweet potatoes", + "ground cumin" + ] + }, + { + "id": 19947, + "cuisine": "japanese", + "ingredients": [ + "cherries", + "konbu", + "sake", + "yuzu juice", + "mirin", + "soy sauce", + "dried bonito flakes" + ] + }, + { + "id": 24819, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "boneless chicken cutlet", + "fresh lemon juice", + "cherry tomatoes", + "extra-virgin olive oil", + "scallions", + "mint leaves", + "salt", + "dried oregano", + "rocket leaves", + "kirby cucumbers", + "freshly ground pepper" + ] + }, + { + "id": 34823, + "cuisine": "southern_us", + "ingredients": [ + "mint leaves", + "fresh lemon juice", + "water", + "loosely packed fresh basil leaves", + "fresh basil leaves", + "moonshine", + "cocktail cherries", + "sugar", + "lemon", + "grenadine" + ] + }, + { + "id": 3127, + "cuisine": "italian", + "ingredients": [ + "eggs", + "kale", + "lasagna noodles", + "large garlic cloves", + "water", + "low-fat cottage cheese", + "marinara sauce", + "brown mushroom", + "olive oil", + "grated parmesan cheese", + "onions", + "dried basil", + "fennel", + "low fat mozzarella" + ] + }, + { + "id": 9938, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "water", + "Mexican oregano", + "flat leaf parsley", + "fish fillets", + "jalapeno chilies", + "salt", + "onions", + "parsley sprigs", + "bay leaves", + "garlic cloves", + "capers", + "olive oil", + "manzanilla", + "fresh lime juice" + ] + }, + { + "id": 23298, + "cuisine": "jamaican", + "ingredients": [ + "melted butter", + "jamaican jerk season", + "pepper sauce", + "teriyaki sauce", + "soy sauce", + "shrimp", + "fresh basil", + "green onions" + ] + }, + { + "id": 37664, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "cardamom pods", + "ground cumin", + "boneless chicken skinless thigh", + "apricot halves", + "garlic cloves", + "clove", + "butternut squash", + "yams", + "dried thyme", + "diced tomatoes", + "onions" + ] + }, + { + "id": 920, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "zucchini", + "onions", + "pepper", + "garlic", + "white wine", + "ricotta cheese", + "pasta", + "olive oil", + "salt" + ] + }, + { + "id": 47470, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "kidney beans", + "doritos", + "tomatoes", + "grating cheese", + "catalina dressing", + "meat", + "water", + "taco seasoning" + ] + }, + { + "id": 27246, + "cuisine": "indian", + "ingredients": [ + "spinach", + "russet potatoes", + "garlic", + "juice", + "plum tomatoes", + "lime", + "paprika", + "chickpeas", + "onions", + "kosher salt", + "red pepper", + "cilantro leaves", + "bird chile", + "ground cumin", + "vegetable oil", + "ginger", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 2916, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "fresh lemon juice", + "diced tomatoes", + "chopped onion", + "fresh parsley", + "fresh green bean", + "fresh oregano", + "feta cheese crumbles", + "pepper", + "vegetable broth", + "garlic cloves" + ] + }, + { + "id": 17818, + "cuisine": "french", + "ingredients": [ + "cream", + "raspberry sauce", + "sugar", + "large eggs", + "chocolate sauce", + "unsalted butter", + "all-purpose flour", + "water", + "salt" + ] + }, + { + "id": 6983, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "extra-virgin olive oil", + "canola oil", + "salmon fillets", + "sea salt", + "flat leaf parsley", + "pistachio nuts", + "candied lemon peel", + "sorrel", + "asiago", + "cayenne pepper" + ] + }, + { + "id": 9428, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "chili powder", + "cayenne pepper", + "ground cumin", + "cheddar cheese", + "beef stock", + "all-purpose flour", + "dried oregano", + "kosher salt", + "vegetable oil", + "corn tortillas", + "pepper", + "paprika", + "onions" + ] + }, + { + "id": 17477, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "red pepper flakes", + "salt", + "lime juice", + "garlic", + "dried oregano", + "water", + "diced tomatoes", + "onions", + "boneless chicken skinless thigh", + "white hominy", + "chicken stock cubes", + "cumin" + ] + }, + { + "id": 8185, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "green onions", + "diced yellow onion", + "garlic salt", + "black pepper", + "quinoa", + "chili powder", + "shredded mozzarella cheese", + "avocado", + "olive oil", + "chicken breasts", + "red enchilada sauce", + "shredded cheddar cheese", + "cooking spray", + "salsa", + "sour cream" + ] + }, + { + "id": 41737, + "cuisine": "indian", + "ingredients": [ + "crusty bread", + "chicken tenderloin", + "cilantro stems", + "arugula", + "curry powder", + "sea salt", + "avocado", + "mango chutney" + ] + }, + { + "id": 12565, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "salt", + "eggplant", + "eggs", + "oil" + ] + }, + { + "id": 36868, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "coconut cream", + "onions", + "tumeric", + "butter", + "cumin seed", + "plum tomatoes", + "chili powder", + "green chilies", + "chicken thighs", + "fresh coriander", + "salt", + "oil" + ] + }, + { + "id": 269, + "cuisine": "southern_us", + "ingredients": [ + "seasoning salt", + "cajun seasoning", + "hot sauce", + "kosher salt", + "self rising flour", + "cracked black pepper", + "steak", + "eggs", + "garlic powder", + "butter", + "Equal Sweetener", + "milk", + "vegetable oil", + "bacon fat", + "seasoned flour" + ] + }, + { + "id": 26005, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "center cut pork chops", + "sugar", + "shallots", + "minced garlic", + "thai chile", + "fish sauce", + "ground black pepper" + ] + }, + { + "id": 27252, + "cuisine": "french", + "ingredients": [ + "water", + "calvados", + "whole milk", + "fresh lemon juice", + "unsalted butter", + "quinces", + "salt", + "large egg whites", + "lemon zest", + "vanilla", + "confectioners sugar", + "sugar", + "granulated sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 39632, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "grated parmesan cheese", + "salt", + "onions", + "lasagna noodles", + "red pepper flakes", + "garlic cloves", + "tomato sauce", + "whole peeled tomatoes", + "ground pork", + "ground beef", + "olive oil", + "ricotta cheese", + "shredded mozzarella cheese", + "dried oregano" + ] + }, + { + "id": 19942, + "cuisine": "mexican", + "ingredients": [ + "brown rice", + "ginger", + "italian pork sausage", + "clam juice", + "garlic", + "saffron", + "vegetable oil", + "green peas", + "shrimp", + "low sodium vegetable stock", + "sea salt", + "yellow onion" + ] + }, + { + "id": 18199, + "cuisine": "spanish", + "ingredients": [ + "fava beans", + "lemon", + "ground black pepper", + "crème fraîche", + "chiffonade", + "kosher salt", + "extra-virgin olive oil" + ] + }, + { + "id": 25831, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garam masala", + "garlic", + "chicken", + "cream", + "butter", + "cilantro leaves", + "sugar", + "chili powder", + "salt", + "lime juice", + "ginger", + "coriander" + ] + }, + { + "id": 21211, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "egg noodles", + "unsalted butter" + ] + }, + { + "id": 6297, + "cuisine": "french", + "ingredients": [ + "lime", + "mayonaise", + "chopped cilantro", + "sweet potatoes", + "lime juice" + ] + }, + { + "id": 14220, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic", + "extra-virgin olive oil", + "fresh basil leaves", + "red pepper flakes", + "salt", + "grape tomatoes", + "cheese", + "spaghetti" + ] + }, + { + "id": 12686, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "salt", + "white sugar", + "ground cinnamon", + "unsalted butter", + "fresh lemon juice", + "peaches", + "all-purpose flour", + "boiling water", + "brown sugar", + "baking powder", + "corn starch" + ] + }, + { + "id": 37151, + "cuisine": "japanese", + "ingredients": [ + "large eggs", + "panko breadcrumbs", + "sweet chili sauce", + "hot sauce", + "cauliflower", + "greek style plain yogurt", + "honey", + "fresh parsley" + ] + }, + { + "id": 11754, + "cuisine": "indian", + "ingredients": [ + "pepper", + "mango chutney", + "sugar", + "crushed tomatoes", + "garlic", + "water", + "vegetable oil", + "lamb shanks", + "garam masala", + "salt" + ] + }, + { + "id": 48380, + "cuisine": "spanish", + "ingredients": [ + "calvados", + "apples", + "pears", + "sugar", + "golden raisins", + "dried fig", + "water", + "dry white wine", + "grated orange", + "prunes", + "dried apricot", + "grated lemon zest" + ] + }, + { + "id": 30412, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "chinese cabbage", + "sliced almonds", + "vegetable oil", + "ramen soup mix", + "sesame oil", + "sesame seeds", + "rice vinegar" + ] + }, + { + "id": 46582, + "cuisine": "moroccan", + "ingredients": [ + "all-purpose flour", + "vegetable oil", + "salt", + "honey", + "hot water" + ] + }, + { + "id": 43203, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "butter", + "chopped fresh sage", + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "finely chopped onion", + "sea salt", + "arborio rice", + "butternut squash", + "fatfree lowsodium chicken broth" + ] + }, + { + "id": 18008, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "ground black pepper", + "shredded mozzarella cheese", + "olive oil", + "garlic", + "dried oregano", + "bread crumbs", + "grated parmesan cheese", + "flat leaf parsley", + "eggplant", + "chopped onion" + ] + }, + { + "id": 37235, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lasagna noodles", + "1% low-fat milk", + "chopped onion", + "sausage casings", + "ground black pepper", + "grated parmesan cheese", + "salt", + "carrots", + "1% low-fat cottage cheese", + "hand", + "dry white wine", + "grated nutmeg", + "tomatoes", + "tomato juice", + "large eggs", + "chopped celery", + "juice" + ] + }, + { + "id": 39171, + "cuisine": "indian", + "ingredients": [ + "whole milk", + "clarified butter", + "ground cinnamon", + "salt", + "jaggery", + "sliced almonds", + "ground cardamom", + "raisins", + "long grain white rice" + ] + }, + { + "id": 23601, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "fresh mozzarella", + "crushed tomatoes", + "grated parmesan cheese", + "boneless, skinless chicken breast", + "ground black pepper", + "salt", + "olive oil", + "basil leaves" + ] + }, + { + "id": 7625, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "ground black pepper", + "carrots", + "parmesan cheese", + "low fat part skim ricotta chees", + "part-skim mozzarella cheese", + "egg whites", + "frozen chopped spinach", + "ground nutmeg", + "jumbo shells" + ] + }, + { + "id": 26681, + "cuisine": "mexican", + "ingredients": [ + "corn tortillas", + "cooking spray", + "canola oil", + "fresh lime juice", + "salt", + "ground cumin" + ] + }, + { + "id": 45666, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "Shaoxing wine", + "garlic", + "sambal ulek", + "ketchup", + "sesame oil", + "oyster sauce", + "soy sauce", + "marinade", + "chinese five-spice powder", + "chicken wings", + "hoisin sauce", + "ginger", + "lemon juice" + ] + }, + { + "id": 35676, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "salsa", + "black beans", + "boneless skinless chicken breasts", + "Mexican cheese", + "chip plain tortilla", + "sweet corn", + "water", + "vegetable oil" + ] + }, + { + "id": 4567, + "cuisine": "mexican", + "ingredients": [ + "fresh lime juice", + "avocado", + "serrano chile", + "chopped cilantro", + "cream cheese" + ] + }, + { + "id": 34307, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "lemon", + "flat leaf parsley", + "ground black pepper", + "purple onion", + "feta cheese", + "garlic", + "dried oregano", + "potatoes", + "salt" + ] + }, + { + "id": 40493, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "fresh parsley", + "paprika", + "cajun seasoning", + "horseradish", + "lemon juice" + ] + }, + { + "id": 20764, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "salt", + "cumin", + "black pepper", + "chili powder", + "cayenne pepper", + "green bell pepper", + "flank steak", + "yellow onion", + "garlic powder", + "onion powder", + "red bell pepper" + ] + }, + { + "id": 19002, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "sweet potatoes", + "salt", + "evaporated milk", + "butter", + "sugar", + "pastry shell", + "all-purpose flour", + "ground nutmeg", + "light corn syrup" + ] + }, + { + "id": 1254, + "cuisine": "chinese", + "ingredients": [ + "baking powder", + "large egg whites", + "cake flour", + "sugar", + "vanilla", + "large eggs" + ] + }, + { + "id": 26363, + "cuisine": "southern_us", + "ingredients": [ + "dry mustard", + "onions", + "dark corn syrup", + "pork and beans", + "yellow mustard", + "sausages", + "light brown sugar", + "sauce" + ] + }, + { + "id": 48212, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "Massaman curry paste", + "cardamom pods", + "dried red chile peppers", + "chicken", + "clove", + "vegetables", + "garlic", + "cinnamon sticks", + "onions", + "coriander seeds", + "ginger", + "cumin seed", + "bay leaf", + "fish sauce", + "lemon grass", + "grated nutmeg", + "coconut milk", + "ground turmeric" + ] + }, + { + "id": 40430, + "cuisine": "greek", + "ingredients": [ + "lemon", + "grated lemon peel", + "ground black pepper", + "chicken drumsticks", + "chopped garlic", + "new potatoes", + "yellow bell pepper", + "Country Crock® Spread", + "dri oregano leaves, crush", + "purple onion" + ] + }, + { + "id": 13084, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "fine sea salt", + "large garlic cloves", + "dandelion greens", + "extra-virgin olive oil" + ] + }, + { + "id": 31472, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "bouquet garni", + "cooked shrimp", + "brandy", + "whipping cream", + "carrots", + "tomato paste", + "butter", + "lemon juice", + "celery ribs", + "vegetable oil", + "all-purpose flour", + "onions" + ] + }, + { + "id": 46273, + "cuisine": "russian", + "ingredients": [ + "whole milk", + "unsalted butter", + "all-purpose flour", + "coarse salt", + "large eggs" + ] + }, + { + "id": 8194, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "new potatoes", + "white wine vinegar", + "fresh parsley", + "romaine lettuce", + "roma tomatoes", + "fresh green bean", + "garlic cloves", + "dijon mustard", + "shallots", + "salt", + "olives", + "anchovies", + "hard-boiled egg", + "extra-virgin olive oil", + "tuna" + ] + }, + { + "id": 15980, + "cuisine": "brazilian", + "ingredients": [ + "onion soup mix", + "chicken thighs", + "beer" + ] + }, + { + "id": 11980, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "creole seasoning", + "cayenne pepper", + "black pepper", + "italian salad dressing" + ] + }, + { + "id": 24134, + "cuisine": "indian", + "ingredients": [ + "milk", + "lemon juice", + "salt" + ] + }, + { + "id": 48642, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "basil leaves", + "rolls", + "marinara sauce", + "salt", + "provolone cheese", + "fennel seeds", + "cooking spray", + "fresh oregano", + "garlic powder", + "ground sirloin", + "Italian turkey sausage" + ] + }, + { + "id": 26823, + "cuisine": "mexican", + "ingredients": [ + "water", + "shredded lettuce", + "tomato sauce", + "kidney beans", + "salt", + "pepper", + "brown rice", + "taco seasoning mix", + "diced tomatoes" + ] + }, + { + "id": 43989, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "buttermilk", + "self rising flour", + "white sugar" + ] + }, + { + "id": 363, + "cuisine": "jamaican", + "ingredients": [ + "vegetable oil", + "scallions", + "dried thyme", + "dry bread crumbs", + "finely chopped onion", + "hot sauce", + "curry powder", + "wonton wrappers", + "ground beef" + ] + }, + { + "id": 5527, + "cuisine": "italian", + "ingredients": [ + "shallots", + "asparagus", + "heavy cream", + "smoked salmon", + "lemon", + "unsalted butter", + "dried pappardelle" + ] + }, + { + "id": 32233, + "cuisine": "korean", + "ingredients": [ + "sugar", + "kochu chang", + "sesame oil", + "cooked rice", + "toasted sesame seeds" + ] + }, + { + "id": 26971, + "cuisine": "greek", + "ingredients": [ + "grape leaves", + "olive oil", + "garlic cloves", + "long grain white rice", + "pinenuts", + "currant", + "onions", + "canned chicken broth", + "lemon wedge", + "fresh mint", + "ground cumin", + "plain yogurt", + "large garlic cloves", + "fresh parsley" + ] + }, + { + "id": 48940, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "onions", + "garlic cloves", + "poblano chiles", + "vegetable oil" + ] + }, + { + "id": 9661, + "cuisine": "spanish", + "ingredients": [ + "dough", + "pepper", + "onions", + "eggs", + "salt", + "tomatoes", + "olive oil", + "cooked ham", + "fresh parsley" + ] + }, + { + "id": 11128, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "garlic cloves", + "garlic powder", + "margarine", + "pasta sauce", + "onion powder", + "ground beef", + "medium egg noodles", + "shredded mozzarella cheese" + ] + }, + { + "id": 18807, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "roma tomatoes" + ] + }, + { + "id": 19329, + "cuisine": "french", + "ingredients": [ + "muffin mix", + "sugar", + "slivered almonds", + "orange" + ] + }, + { + "id": 20882, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "cilantro leaves", + "chili powder", + "chaat masala", + "potatoes", + "oil", + "salt" + ] + }, + { + "id": 29456, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "green onions", + "ground pork", + "sesame paste", + "black rice vinegar", + "soy sauce", + "sesame oil", + "garlic", + "pickled vegetables", + "sugar", + "szechwan peppercorns", + "ginger", + "cucumber", + "Shaoxing wine", + "chili oil", + "oil", + "noodles" + ] + }, + { + "id": 43017, + "cuisine": "british", + "ingredients": [ + "mixed spice", + "salt", + "paprika", + "butter", + "pepper", + "shrimp" + ] + }, + { + "id": 10723, + "cuisine": "brazilian", + "ingredients": [ + "black beans", + "shallots", + "kielbasa", + "ground beef", + "chipotle chile", + "green onions", + "garlic", + "flat leaf parsley", + "olive oil", + "bacon", + "yellow onion", + "oregano", + "bay leaves", + "white rice", + "sausages" + ] + }, + { + "id": 27884, + "cuisine": "spanish", + "ingredients": [ + "sherry vinegar", + "light brown sugar" + ] + }, + { + "id": 37562, + "cuisine": "brazilian", + "ingredients": [ + "black beans", + "garlic", + "onions", + "vegetable oil", + "green chilies", + "mango", + "sweet potatoes", + "salt", + "chopped cilantro fresh", + "diced tomatoes", + "red bell pepper" + ] + }, + { + "id": 234, + "cuisine": "irish", + "ingredients": [ + "butter", + "napa cabbage", + "small red potato", + "ground black pepper", + "yellow onion", + "milk", + "bacon" + ] + }, + { + "id": 37795, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "honey", + "goat cheese", + "kosher salt", + "chives", + "nutmeg", + "milk", + "butter", + "country ham", + "brewed coffee", + "grits" + ] + }, + { + "id": 49701, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "baking soda", + "peanuts", + "white sugar", + "white corn syrup" + ] + }, + { + "id": 48926, + "cuisine": "filipino", + "ingredients": [ + "pork belly", + "daikon", + "flour tortillas", + "scallions", + "sugar", + "kirby cucumbers", + "kosher salt", + "sauce" + ] + }, + { + "id": 13124, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "chili powder", + "fresh ginger", + "coconut milk", + "olive oil", + "carrots", + "red lentils", + "green onions", + "broth" + ] + }, + { + "id": 26819, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "non-fat sour cream", + "taco seasoning", + "tomatoes", + "shredded lettuce", + "tortilla chips", + "extra-lean ground beef", + "salsa", + "onions", + "black beans", + "garlic", + "reduced-fat cheese" + ] + }, + { + "id": 48597, + "cuisine": "moroccan", + "ingredients": [ + "chicken stock", + "water", + "diced tomatoes", + "chickpeas", + "ground cumin", + "slivered almonds", + "dried apricot", + "garlic", + "fillets", + "ground ginger", + "peaches", + "cornflour", + "ground coriander", + "fresh coriander", + "cinnamon", + "cayenne pepper", + "onions" + ] + }, + { + "id": 7383, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "chili paste with garlic", + "corn starch", + "fresh ginger", + "garlic", + "frozen peas", + "tofu", + "dry sherry", + "cayenne pepper", + "soy sauce", + "ground pork", + "fermented black beans" + ] + }, + { + "id": 32828, + "cuisine": "brazilian", + "ingredients": [ + "mango juice", + "crushed ice", + "superfine sugar", + "cachaca", + "lime wedges" + ] + }, + { + "id": 37440, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "vegetable shortening", + "large eggs", + "chicken", + "whole milk", + "seasoning salt", + "all-purpose flour" + ] + }, + { + "id": 11562, + "cuisine": "indian", + "ingredients": [ + "chile pepper", + "carrots", + "salted peanuts", + "chopped cilantro fresh", + "salt", + "white sugar", + "lemon juice" + ] + }, + { + "id": 49115, + "cuisine": "vietnamese", + "ingredients": [ + "fresh basil", + "lime juice", + "sesame oil", + "carrots", + "sugar", + "herbs", + "boneless chicken", + "celery", + "mint", + "light soy sauce", + "daikon", + "cucumber", + "lettuce", + "soy sauce", + "seeds", + "garlic", + "rice paper" + ] + }, + { + "id": 23499, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "vegetable oil", + "enchilada sauce", + "kosher salt", + "colby jack cheese", + "garlic", + "green bell pepper", + "chicken breasts", + "diced tomatoes", + "ground cumin", + "ground black pepper", + "chili powder", + "yellow onion" + ] + }, + { + "id": 42400, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "sesame oil", + "seaweed", + "coriander", + "egg whites", + "ginger", + "shrimp", + "vegetables", + "wonton wrappers", + "garlic cloves", + "green onions", + "salt", + "minced pork" + ] + }, + { + "id": 34579, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "garlic", + "corn", + "mint leaves", + "ground cumin", + "coriander seeds", + "extra-virgin olive oil", + "kosher salt", + "harissa paste", + "juice" + ] + }, + { + "id": 14360, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "shredded cabbage", + "garlic", + "canola oil", + "fish sauce", + "lime juice", + "shallots", + "carrots", + "fresh coriander", + "cooked chicken", + "rice vinegar", + "sugar", + "sesame seeds", + "wonton wrappers", + "chillies" + ] + }, + { + "id": 37414, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "ground veal", + "freshly ground pepper", + "olive oil", + "pecorino romano cheese", + "garlic", + "water", + "lean ground beef", + "ground pork", + "bread crumb fresh", + "marinara sauce", + "sea salt", + "flat leaf parsley" + ] + }, + { + "id": 28539, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "garam masala", + "ground turmeric", + "tomatoes", + "fresh cilantro", + "onions", + "curry powder", + "cayenne pepper", + "ground cumin", + "red potato", + "olive oil", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 41451, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "vegetable shortening", + "all-purpose flour", + "thyme leaves", + "tumeric", + "chili habanero pepper", + "garlic", + "ground allspice", + "onions", + "curry powder", + "paprika", + "cayenne pepper", + "ground beef", + "sugar", + "vegetable oil", + "salt", + "scallions" + ] + }, + { + "id": 39952, + "cuisine": "italian", + "ingredients": [ + "ricotta salata", + "green onions", + "olive oil", + "flat leaf parsley", + "milk", + "salt", + "pepper", + "large eggs" + ] + }, + { + "id": 31268, + "cuisine": "korean", + "ingredients": [ + "eggs", + "sesame oil", + "rice", + "olive oil", + "ginger", + "green onions", + "garlic", + "soy sauce", + "crushed red pepper flakes", + "kimchi" + ] + }, + { + "id": 25092, + "cuisine": "greek", + "ingredients": [ + "fat free less sodium chicken broth", + "sherry vinegar", + "yellow bell pepper", + "fresh lemon juice", + "pitted kalamata olives", + "feta cheese", + "sea salt", + "english cucumber", + "radicchio", + "shallots", + "grated lemon zest", + "cherry tomatoes", + "quinoa", + "extra-virgin olive oil", + "fresh mint" + ] + }, + { + "id": 40337, + "cuisine": "indian", + "ingredients": [ + "golden brown sugar", + "vanilla extract", + "bittersweet chocolate chips", + "whipping cream", + "cinnamon sticks", + "whole allspice", + "ground black pepper", + "cardamom pods", + "fresh ginger", + "1% low-fat milk" + ] + }, + { + "id": 19174, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "salt", + "garlic", + "sesame oil", + "chinkiang vinegar", + "light soy sauce", + "english cucumber" + ] + }, + { + "id": 21001, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cooking oil", + "garlic", + "ground coriander", + "water", + "red pepper flakes", + "salt", + "onions", + "boneless, skinless chicken breast", + "water chestnuts", + "wine vinegar", + "chopped cilantro", + "tomato paste", + "cayenne", + "dry sherry", + "chinese cabbage" + ] + }, + { + "id": 34654, + "cuisine": "mexican", + "ingredients": [ + "water", + "chili powder", + "vegetarian refried beans", + "cottage cheese", + "garlic powder", + "all-purpose flour", + "reduced fat cheddar cheese", + "olive oil", + "salt", + "cider vinegar", + "flour tortillas", + "dried minced onion" + ] + }, + { + "id": 9635, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "blanco chees queso", + "jalapeno chilies", + "salt", + "onions", + "yellow corn meal", + "minced garlic", + "conch", + "corn starch", + "olives", + "diced onions", + "sugar", + "olive oil", + "garlic", + "fresh parsley", + "green bell pepper", + "corn kernels", + "extra-virgin olive oil", + "red bell pepper", + "ground turmeric" + ] + }, + { + "id": 19531, + "cuisine": "greek", + "ingredients": [ + "pepper", + "dried dillweed", + "garlic", + "rotini", + "olive oil", + "feta cheese crumbles", + "frozen chopped spinach", + "salt" + ] + }, + { + "id": 18894, + "cuisine": "mexican", + "ingredients": [ + "corn tortilla chips", + "sauce", + "taco seasoning mix", + "ground beef", + "green bell pepper", + "sliced mushrooms", + "jalapeno chilies", + "onions" + ] + }, + { + "id": 27154, + "cuisine": "italian", + "ingredients": [ + "dark chocolate", + "toasted slivered almonds", + "baguette", + "raspberries", + "fresh mint", + "unsalted butter" + ] + }, + { + "id": 39512, + "cuisine": "greek", + "ingredients": [ + "sugar", + "almonds", + "ground cinnamon", + "water", + "butter", + "unsalted pistachios", + "ground nutmeg", + "phyllo dough", + "honey", + "lemon juice" + ] + }, + { + "id": 48069, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "mirin", + "chile pepper", + "organic sugar", + "organic chicken broth", + "sake", + "olive oil", + "green onions", + "togarashi", + "soy", + "chicken broth", + "salmon", + "red sockeye", + "ginger", + "toasted sesame seeds", + "sugar", + "fresh ginger", + "sesame oil", + "scallions", + "buckwheat soba noodles" + ] + }, + { + "id": 37081, + "cuisine": "spanish", + "ingredients": [ + "medjool date", + "butter", + "manchego cheese", + "white sandwich bread", + "serrano" + ] + }, + { + "id": 32885, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "corn kernels", + "cooking spray", + "salt", + "boiling water", + "dried cornhusks", + "sun-dried tomatoes", + "baking powder", + "garlic cloves", + "dried oregano", + "dried porcini mushrooms", + "finely chopped onion", + "vegetable broth", + "chopped cilantro fresh", + "pasilla chiles", + "mushroom caps", + "vegetable shortening", + "fresh lime juice", + "masa harina" + ] + }, + { + "id": 46918, + "cuisine": "italian", + "ingredients": [ + "bananas", + "vegetable oil", + "chopped pecans", + "cooking spray", + "salt", + "large eggs", + "vanilla extract", + "sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 23023, + "cuisine": "mexican", + "ingredients": [ + "shredded reduced fat cheddar cheese", + "salsa", + "reduced-fat sour cream", + "iceberg lettuce", + "sliced black olives", + "taco seasoning", + "tomatoes", + "cheese" + ] + }, + { + "id": 19074, + "cuisine": "thai", + "ingredients": [ + "water", + "thai basil", + "rice vinegar", + "red jalapeno peppers", + "sugar", + "fresh cilantro", + "crushed garlic", + "english cucumber", + "fish sauce", + "lime juice", + "lime wedges", + "roasted peanuts", + "white onion", + "fresh ginger", + "salt", + "carrots" + ] + }, + { + "id": 1849, + "cuisine": "spanish", + "ingredients": [ + "capers", + "olive oil", + "salt", + "garlic cloves", + "ground cumin", + "water", + "large eggs", + "chopped onion", + "small red potato", + "tomato sauce", + "ground black pepper", + "spanish chorizo", + "ham", + "green olives", + "dried thyme", + "pimentos", + "eye of round roast", + "bay leaf" + ] + }, + { + "id": 2683, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "freshly ground pepper", + "dry white wine", + "extra-virgin olive oil", + "chopped fresh thyme", + "linguine", + "littleneck clams" + ] + }, + { + "id": 39499, + "cuisine": "french", + "ingredients": [ + "low-fat turkey kielbasa", + "water", + "garlic", + "dried rosemary", + "bread crumbs", + "dry white wine", + "freshly ground pepper", + "reduced sodium chicken broth", + "extra-virgin olive oil", + "onions", + "boneless chicken skinless thigh", + "dried thyme", + "white beans" + ] + }, + { + "id": 22717, + "cuisine": "brazilian", + "ingredients": [ + "chocolate sprinkles", + "unsalted butter", + "cocoa", + "unsweetened cocoa powder", + "sweetened condensed milk" + ] + }, + { + "id": 46546, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "ground nutmeg", + "all-purpose flour", + "granny smith apples", + "butter", + "sundae syrup", + "brown sugar", + "granulated sugar", + "corn starch", + "oats", + "pie dough", + "salt" + ] + }, + { + "id": 15999, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "crushed red pepper", + "fennel seeds", + "grated parmesan cheese", + "pancetta", + "fennel bulb", + "garlic cloves", + "fettucine", + "whipping cream" + ] + }, + { + "id": 41812, + "cuisine": "southern_us", + "ingredients": [ + "half & half", + "vanilla extract", + "firmly packed brown sugar", + "chopped pecans", + "butter" + ] + }, + { + "id": 27987, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "sweet onion", + "heavy cream", + "black pepper", + "grated parmesan cheese", + "sliced ham", + "grape tomatoes", + "olive oil", + "peas", + "kosher salt", + "butter" + ] + }, + { + "id": 44373, + "cuisine": "indian", + "ingredients": [ + "light brown sugar", + "whole wheat pita", + "mango", + "vegetable oil cooking spray", + "raisins", + "ground cumin", + "chiles", + "purple onion", + "cider vinegar", + "cayenne pepper" + ] + }, + { + "id": 20644, + "cuisine": "vietnamese", + "ingredients": [ + "green chile", + "herbs", + "rice noodles", + "star anise", + "carrots", + "asian fish sauce", + "fresh ginger", + "low sodium chicken broth", + "coarse salt", + "purple onion", + "onions", + "light brown sugar", + "ground black pepper", + "shallots", + "cinnamon", + "scallions", + "boneless skinless chicken breast halves", + "lime", + "hoisin sauce", + "vegetable oil", + "garlic", + "beansprouts", + "chile sauce" + ] + }, + { + "id": 45738, + "cuisine": "moroccan", + "ingredients": [ + "whole wheat couscous", + "pinenuts", + "flat leaf parsley", + "olive oil", + "dried cranberries", + "fat free less sodium chicken broth", + "salt" + ] + }, + { + "id": 1727, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "sharp cheddar cheese", + "black pepper", + "salt", + "chicken broth", + "whipping cream", + "grits", + "garlic powder", + "cream cheese" + ] + }, + { + "id": 38851, + "cuisine": "italian", + "ingredients": [ + "black-eyed peas", + "yellow onion", + "no-salt-added diced tomatoes", + "extra-virgin olive oil", + "whole wheat thin spaghetti", + "canned low sodium chicken broth", + "grated parmesan cheese", + "celery", + "hot italian turkey sausage links", + "garlic", + "dried oregano" + ] + }, + { + "id": 30787, + "cuisine": "thai", + "ingredients": [ + "lime rind", + "Thai fish sauce", + "galangal", + "lemongrass", + "bird chile", + "chopped cilantro fresh", + "water", + "coconut milk", + "chicken thighs", + "kaffir lime leaves", + "chicken breasts", + "fresh lime juice" + ] + }, + { + "id": 19481, + "cuisine": "greek", + "ingredients": [ + "granulated sugar", + "bread flour", + "warm water", + "extra-virgin olive oil", + "instant yeast", + "milk", + "salt" + ] + }, + { + "id": 7597, + "cuisine": "mexican", + "ingredients": [ + "onion soup mix", + "tomato sauce", + "whole kernel corn, drain", + "kidney beans", + "ground beef", + "tomatoes with juice" + ] + }, + { + "id": 11195, + "cuisine": "thai", + "ingredients": [ + "Tabasco Pepper Sauce", + "garlic", + "fresh coriander", + "ginger", + "lemon juice", + "red pepper", + "tomato ketchup", + "prawns", + "Flora Cuisine", + "onions" + ] + }, + { + "id": 19046, + "cuisine": "filipino", + "ingredients": [ + "bitter melon", + "fresh ginger root", + "carrots", + "sweet onion", + "garlic", + "water", + "chile pepper", + "white sugar", + "white vinegar", + "eggplant", + "salt" + ] + }, + { + "id": 15493, + "cuisine": "japanese", + "ingredients": [ + "butter lettuce", + "sesame seeds", + "shallots", + "edamame", + "soy sauce", + "white miso", + "salt", + "toasted sesame oil", + "honey", + "green onions", + "rice vinegar", + "beet greens", + "shiitake", + "vegetable oil", + "orange juice" + ] + }, + { + "id": 22006, + "cuisine": "southern_us", + "ingredients": [ + "bread", + "baking soda", + "cinnamon", + "pecans", + "bourbon whiskey", + "vanilla", + "eggs", + "granulated sugar", + "raisins", + "milk", + "white corn syrup", + "sauce" + ] + }, + { + "id": 12384, + "cuisine": "mexican", + "ingredients": [ + "semisweet chocolate", + "salt", + "dried oregano", + "ground round", + "diced tomatoes", + "garlic cloves", + "chili powder", + "chopped onion", + "ground cumin", + "water", + "reduced-fat sour cream", + "chopped cilantro fresh" + ] + }, + { + "id": 19428, + "cuisine": "british", + "ingredients": [ + "bread crumbs", + "dried sage", + "pork butt", + "ground black pepper", + "yellow onion", + "eggs", + "pork liver", + "fresh pork fat", + "dried thyme", + "salt" + ] + }, + { + "id": 42086, + "cuisine": "indian", + "ingredients": [ + "ground cashew", + "salt", + "small red potato", + "curry powder", + "onion powder", + "rice", + "chicken thighs", + "tomato sauce", + "jalapeno chilies", + "green pepper", + "carrots", + "garlic powder", + "heavy cream", + "oil", + "frozen peas" + ] + }, + { + "id": 35186, + "cuisine": "british", + "ingredients": [ + "filet mignon", + "large eggs", + "puff pastry sheets", + "veal demi-glace", + "shallots", + "minced garlic", + "mushrooms", + "Madeira", + "unsalted butter", + "gorgonzola" + ] + }, + { + "id": 1904, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh fava bean", + "rocket leaves", + "red wine vinegar", + "fresh peas", + "plum tomatoes", + "water", + "farro" + ] + }, + { + "id": 31944, + "cuisine": "southern_us", + "ingredients": [ + "oysters", + "peanut oil", + "kosher salt", + "pickled okra", + "corn flour", + "all-purpose flour", + "ground white pepper", + "cracker meal", + "vinaigrette" + ] + }, + { + "id": 7332, + "cuisine": "italian", + "ingredients": [ + "bacon", + "grated parmesan cheese", + "cream cheese, soften", + "milk", + "bow-tie pasta", + "butter", + "italian seasoning" + ] + }, + { + "id": 18608, + "cuisine": "filipino", + "ingredients": [ + "salt", + "onions", + "chili pepper", + "shrimp", + "fish sauce", + "oil", + "garlic", + "coconut milk" + ] + }, + { + "id": 11774, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "English toffee bits", + "pecans", + "sea salt", + "ground cinnamon", + "butter", + "pure vanilla extract", + "graham crackers" + ] + }, + { + "id": 32764, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "salt", + "brown sugar", + "grated parmesan cheese", + "italian seasoning", + "ground black pepper", + "bread flour", + "warm water", + "cheese" + ] + }, + { + "id": 23384, + "cuisine": "russian", + "ingredients": [ + "sugar", + "vegetable oil", + "baking soda", + "vanilla extract", + "eggs", + "flour", + "salt", + "milk", + "butter" + ] + }, + { + "id": 28872, + "cuisine": "indian", + "ingredients": [ + "phyllo dough", + "curry powder", + "oil", + "cream", + "vegetable oil", + "chopped cilantro fresh", + "plain yogurt", + "chili powder", + "onions", + "water", + "all-purpose flour" + ] + }, + { + "id": 19208, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "ginger", + "scallions", + "soy sauce", + "chili oil", + "rice vinegar", + "sesame oil", + "salt", + "honey", + "cilantro", + "soba noodles" + ] + }, + { + "id": 12016, + "cuisine": "italian", + "ingredients": [ + "salad dressing", + "chuck roast", + "garlic", + "ground black pepper" + ] + }, + { + "id": 16168, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "lime juice", + "ground nutmeg", + "salt", + "corn starch", + "molasses", + "olive oil", + "ground rosemary", + "orange juice", + "brown sugar", + "dried thyme", + "ground sage", + "ground allspice", + "onions", + "ground ginger", + "black pepper", + "garlic powder", + "malt vinegar", + "roasting chickens" + ] + }, + { + "id": 19872, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "scallions", + "spinach leaves", + "peeled fresh ginger", + "toasted sesame oil", + "lo mein noodles", + "garlic cloves", + "cremini mushrooms", + "vegetable oil" + ] + }, + { + "id": 5156, + "cuisine": "french", + "ingredients": [ + "canned chicken broth", + "russet potatoes", + "herbes de provence", + "dry white wine", + "salt", + "minced garlic", + "whipping cream", + "shallots", + "soft fresh goat cheese" + ] + }, + { + "id": 43114, + "cuisine": "mexican", + "ingredients": [ + "lean ground beef", + "green onions", + "fajita seasoning mix", + "large eggs", + "crushed garlic", + "colby jack cheese" + ] + }, + { + "id": 13396, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "flat leaf parsley", + "baguette", + "extra-virgin olive oil", + "pecorino romano cheese", + "unsalted butter", + "garlic" + ] + }, + { + "id": 37472, + "cuisine": "cajun_creole", + "ingredients": [ + "shucked oysters", + "chopped celery", + "dri leav thyme", + "green bell pepper", + "bay leaves", + "all-purpose flour", + "andouille sausage", + "vegetable oil", + "cayenne pepper", + "chicken broth", + "roasting hen", + "salt", + "onions" + ] + }, + { + "id": 22570, + "cuisine": "vietnamese", + "ingredients": [ + "avocado", + "iceberg", + "monterey jack", + "hamburger buns", + "boneless skinless chicken breasts", + "mayonaise", + "olive oil", + "lime juice", + "chipotle chile powder" + ] + }, + { + "id": 20212, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "pork chops", + "star anise", + "pickled vegetables", + "white pepper", + "rice wine", + "rice", + "potato flour", + "eggs", + "vegetables", + "spices", + "carrots", + "soy sauce", + "spring onions", + "garlic", + "boiling water" + ] + }, + { + "id": 31344, + "cuisine": "cajun_creole", + "ingredients": [ + "white onion", + "butter", + "creole seasoning", + "cream of mushroom soup", + "cold water", + "green onions", + "crab boil", + "red bell pepper", + "lump crab meat", + "worcestershire sauce", + "cream cheese", + "gelatin", + "cilantro", + "shrimp" + ] + }, + { + "id": 24336, + "cuisine": "indian", + "ingredients": [ + "water", + "cilantro", + "green chilies", + "chili powder", + "salt", + "ghee", + "amchur", + "paneer", + "chopped cilantro", + "butter", + "all-purpose flour" + ] + }, + { + "id": 46476, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "yellow bell pepper", + "chopped onion", + "pepper", + "rice vinegar", + "red bell pepper", + "brown sugar", + "salt", + "cucumber", + "pepper sauce", + "pineapple", + "pineapple juice", + "chopped cilantro fresh" + ] + }, + { + "id": 44378, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "whole milk", + "salt", + "black pepper", + "vegetable oil", + "cayenne pepper", + "kosher salt", + "buttermilk", + "top round steak", + "breakfast sausages", + "all-purpose flour" + ] + }, + { + "id": 42326, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "garlic", + "crushed tomatoes", + "butter", + "sliced green olives", + "olive oil", + "diced tomatoes", + "hot cherry pepper", + "capers", + "sliced black olives", + "onions" + ] + }, + { + "id": 11271, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "chopped onion", + "couscous", + "sugar", + "vegetable broth", + "carrots", + "dried lentils", + "vegetable oil", + "garlic cloves", + "water", + "salt", + "chopped pecans" + ] + }, + { + "id": 2382, + "cuisine": "mexican", + "ingredients": [ + "white corn tortillas", + "purple onion", + "avocado", + "chili powder", + "green chilies", + "frozen whole kernel corn", + "salt", + "Pure Wesson Canola Oil", + "diced tomatoes", + "large shrimp" + ] + }, + { + "id": 4317, + "cuisine": "japanese", + "ingredients": [ + "sake", + "yellow miso", + "egg yolks", + "cilantro", + "dried chile", + "soy sauce", + "slab bacon", + "vegetable oil", + "fresh mushrooms", + "dried mushrooms", + "sugar", + "fresh ginger", + "chives", + "garlic", + "noodles", + "water", + "mirin", + "red wine vinegar", + "konbu" + ] + }, + { + "id": 21684, + "cuisine": "chinese", + "ingredients": [ + "szechwan peppercorns", + "shrimp", + "sea salt", + "vegetable oil", + "lemon wedge", + "garlic cloves" + ] + }, + { + "id": 46409, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "kirby cucumbers", + "garlic cloves", + "sherry vinegar", + "extra-virgin olive oil", + "crusty bread", + "fresh tarragon", + "red bell pepper", + "ground black pepper", + "salt" + ] + }, + { + "id": 33668, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "black pepper", + "corn", + "avocado", + "lime juice", + "cilantro", + "white onion", + "cherry tomatoes" + ] + }, + { + "id": 24531, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "peeled fresh ginger", + "garlic cloves", + "coriander seeds", + "vegetable oil", + "soy sauce", + "flank steak", + "coffee", + "cilantro leaves" + ] + }, + { + "id": 7792, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "Shaoxing wine", + "chopped onion", + "sugar", + "water", + "ground pork", + "soy sauce", + "yardlong beans", + "sauce", + "minced garlic", + "soya bean", + "corn starch" + ] + }, + { + "id": 44491, + "cuisine": "british", + "ingredients": [ + "brown sugar", + "bread machine yeast", + "ground cinnamon", + "dried cherry", + "salt", + "milk", + "raisins", + "eggs", + "butter", + "bread flour" + ] + }, + { + "id": 39749, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "tumeric", + "pumpkin purée", + "paprika", + "salt", + "garlic cloves", + "chopped cilantro", + "tomato paste", + "fresh ginger", + "grapeseed oil", + "curry", + "ground coriander", + "mustard seeds", + "jaggery", + "clove", + "amchur", + "shallots", + "garlic", + "dried chickpeas", + "fresh lemon juice", + "ghee", + "frozen spinach", + "curry leaves", + "garam masala", + "legumes", + "purple onion", + "cumin seed", + "cinnamon sticks", + "ground cumin" + ] + }, + { + "id": 1911, + "cuisine": "indian", + "ingredients": [ + "sugar", + "salt", + "cumin seed", + "cracked black pepper", + "chickpeas", + "rice flour", + "coriander powder", + "cilantro leaves", + "oil", + "asafoetida", + "ginger", + "green chilies", + "onions" + ] + }, + { + "id": 446, + "cuisine": "french", + "ingredients": [ + "sea salt", + "flat leaf parsley", + "garlic cloves", + "extra-virgin olive oil", + "wild mushrooms", + "Italian parsley leaves", + "fresh lemon juice" + ] + }, + { + "id": 10046, + "cuisine": "cajun_creole", + "ingredients": [ + "barbecue sauce", + "salad dressing", + "boneless skinless chicken breasts" + ] + }, + { + "id": 12730, + "cuisine": "italian", + "ingredients": [ + "pepper", + "pizza doughs", + "tomatoes", + "garlic", + "basil", + "mozzarella cheese", + "salt" + ] + }, + { + "id": 35951, + "cuisine": "italian", + "ingredients": [ + "1% low-fat milk", + "processed cheese", + "all-purpose flour", + "shredded extra sharp cheddar cheese", + "salt", + "cooking spray", + "elbow macaroni" + ] + }, + { + "id": 32721, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "fusilli", + "fresh lime juice", + "corn kernels", + "meat", + "carrots", + "cooked turkey", + "dijon mustard", + "chili powder", + "ground cumin", + "fresh cilantro", + "jalapeno chilies", + "purple onion" + ] + }, + { + "id": 20059, + "cuisine": "mexican", + "ingredients": [ + "unsalted butter", + "cinnamon", + "sugar", + "flour", + "cayenne pepper", + "large eggs", + "vanilla extract", + "kosher salt", + "baking powder", + "unsweetened cocoa powder" + ] + }, + { + "id": 48344, + "cuisine": "italian", + "ingredients": [ + "raw pistachios", + "parmagiano reggiano", + "basil", + "olive oil", + "lemon juice", + "salt" + ] + }, + { + "id": 46089, + "cuisine": "moroccan", + "ingredients": [ + "eggs", + "milk", + "baking powder", + "warm water", + "semolina", + "salt", + "sugar", + "honey", + "butter", + "water", + "dry yeast", + "all-purpose flour" + ] + }, + { + "id": 42507, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "unsalted butter", + "bittersweet chocolate", + "raspberries", + "light corn syrup", + "tartlet shells" + ] + }, + { + "id": 3984, + "cuisine": "cajun_creole", + "ingredients": [ + "capers", + "honey", + "extra-virgin olive oil", + "provolone cheese", + "mayonaise", + "pitted green olives", + "vinaigrette", + "olive tapenade", + "pitted kalamata olives", + "roasted red peppers", + "mortadella", + "chopped garlic", + "genoa salami", + "mozzarella cheese", + "cracked black pepper", + "rolls" + ] + }, + { + "id": 21374, + "cuisine": "southern_us", + "ingredients": [ + "water", + "baking powder", + "sugar", + "peaches", + "salt", + "cream", + "flour", + "vanilla bean paste", + "milk", + "butter" + ] + }, + { + "id": 4424, + "cuisine": "mexican", + "ingredients": [ + "juice", + "table salt", + "white vinegar", + "whole milk" + ] + }, + { + "id": 3740, + "cuisine": "greek", + "ingredients": [ + "roasted red peppers", + "feta cheese crumbles", + "pepper", + "greek style plain yogurt", + "paprika", + "hummus", + "pita chips", + "Mezzetta Sliced Greek Kalamata Olives" + ] + }, + { + "id": 3008, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "light soy sauce", + "sesame oil", + "garlic", + "chinese rice wine", + "fresh coriander", + "spring onions", + "ginger", + "chicken-flavored soup powder", + "pork", + "mushrooms", + "frozen garden peas", + "oyster sauce", + "chiles", + "water", + "seeds", + "cornflour", + "cashew nuts" + ] + }, + { + "id": 48639, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "sunflower oil", + "burger rolls", + "boneless chicken skinless thigh", + "cornflour", + "soy sauce", + "ginger", + "lettuce", + "mirin", + "garlic cloves" + ] + }, + { + "id": 3295, + "cuisine": "italian", + "ingredients": [ + "fresh orange juice", + "red wine vinegar", + "fresh lemon juice", + "olive oil", + "oyster mushrooms", + "sea salt" + ] + }, + { + "id": 7121, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "picante sauce", + "ground black pepper", + "jalapeno chilies", + "red pepper", + "cream cheese", + "brown sugar", + "minced garlic", + "Mexican cheese blend", + "green onions", + "shredded sharp cheddar cheese", + "dried parsley", + "tomato sauce", + "water", + "minced onion", + "boneless skinless chicken breasts", + "purple onion", + "canola oil", + "black beans", + "dark chocolate chip", + "roma tomatoes", + "chili powder", + "salt", + "ground cumin" + ] + }, + { + "id": 8115, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "scallions", + "fish sauce", + "salt", + "dried shrimp", + "napa cabbage", + "medium shrimp", + "white pepper", + "yellow onion", + "canola oil" + ] + }, + { + "id": 23037, + "cuisine": "indian", + "ingredients": [ + "semolina", + "green chilies", + "chopped cilantro", + "purple onion", + "oil", + "nonfat yogurt", + "cumin seed", + "water", + "salt", + "carrots" + ] + }, + { + "id": 15585, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "lemon juice", + "canola oil", + "salt", + "onions", + "cilantro", + "ground cayenne pepper", + "ground cumin", + "tomatoes", + "okra", + "ground turmeric" + ] + }, + { + "id": 32470, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "olive oil", + "garlic", + "flat leaf parsley", + "eggs", + "paprika", + "cayenne pepper", + "ground paprika", + "cilantro", + "ground turkey", + "ground cinnamon", + "harissa", + "yellow onion", + "ground cumin" + ] + }, + { + "id": 48326, + "cuisine": "moroccan", + "ingredients": [ + "dried apricot", + "fresh mint", + "dried currants", + "extra-virgin olive oil", + "natural pistachios", + "coarse salt", + "couscous", + "water", + "cinnamon sticks", + "ground cumin" + ] + }, + { + "id": 10884, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "lemon", + "garlic", + "green chilies", + "cumin", + "amchur", + "cilantro", + "cayenne pepper", + "onions", + "water", + "paprika", + "salt", + "oil", + "tomatoes", + "garam masala", + "ginger", + "chickpeas", + "coriander" + ] + }, + { + "id": 24674, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "boneless skinless chicken breasts", + "salsa", + "corn tortillas", + "sliced black olives", + "garlic", + "cayenne pepper", + "jalapeno chilies", + "low-fat monterey jack", + "enchilada sauce", + "vegetable oil cooking spray", + "shredded low-fat cheddar", + "hot sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 17418, + "cuisine": "jamaican", + "ingredients": [ + "lime juice", + "jalapeno chilies", + "purple onion", + "pork tenderloin", + "extra-virgin olive oil", + "jamaican jerk season", + "pork loin", + "mango", + "bananas", + "any", + "cilantro leaves" + ] + }, + { + "id": 5493, + "cuisine": "indian", + "ingredients": [ + "sugar", + "baking soda", + "salt", + "water", + "yoghurt", + "oil", + "warm water", + "herbs", + "all-purpose flour", + "active dry yeast", + "spices", + "ghee" + ] + }, + { + "id": 30642, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "pineapple chunks", + "margarine", + "sugar", + "sharp cheddar cheese", + "cracker crumbs" + ] + }, + { + "id": 42262, + "cuisine": "southern_us", + "ingredients": [ + "chopped nuts", + "flaked coconut", + "vanilla extract", + "white sugar", + "milk", + "buttermilk", + "all-purpose flour", + "white vinegar", + "baking soda", + "red food coloring", + "butter extract", + "eggs", + "vegetable shortening", + "salt", + "unsweetened cocoa powder" + ] + }, + { + "id": 41169, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "large eggs", + "powdered sugar", + "water", + "salt", + "shortening", + "active dry yeast", + "bread flour", + "warm water", + "strawberry preserves" + ] + }, + { + "id": 39062, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "coriander seeds", + "cumin seed", + "nutmeg", + "ginger", + "peppercorns", + "clove", + "bay leaves", + "cinnamon sticks", + "chiles", + "star anise" + ] + }, + { + "id": 5969, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "pepper jack", + "cilantro", + "plum tomatoes", + "ground pepper", + "coarse salt", + "steak", + "avocado", + "cayenne", + "reduced-fat sour cream", + "fresh lime juice", + "olive oil", + "flour tortillas", + "purple onion", + "dried oregano" + ] + }, + { + "id": 29353, + "cuisine": "cajun_creole", + "ingredients": [ + "russet potatoes", + "corn flour", + "salt", + "cajun seasoning", + "cornmeal", + "oil" + ] + }, + { + "id": 43636, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "mole sauce", + "lime wedges", + "corn tortillas", + "chopped tomatoes", + "swordfish", + "green cabbage", + "salt" + ] + }, + { + "id": 11346, + "cuisine": "southern_us", + "ingredients": [ + "mini marshmallows", + "all-purpose flour", + "unsweetened cocoa powder", + "eggs", + "vanilla extract", + "confectioners sugar", + "butter", + "chopped walnuts", + "milk", + "salt", + "white sugar" + ] + }, + { + "id": 27625, + "cuisine": "southern_us", + "ingredients": [ + "cornbread", + "bibb lettuce", + "purple onion", + "plum tomatoes", + "pepper", + "butter", + "lemon juice", + "mayonaise", + "chopped fresh chives", + "salt", + "celery ribs", + "water", + "fresh tarragon", + "shrimp" + ] + }, + { + "id": 33169, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "all-purpose flour", + "unsalted butter", + "salt", + "boiling potatoes", + "olive oil", + "fresh tarragon", + "flat leaf parsley", + "black pepper", + "chopped fresh chives", + "dry bread crumbs" + ] + }, + { + "id": 13297, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "boneless chicken breast", + "chop green chilies, undrain", + "avocado", + "cheese", + "chopped cilantro fresh", + "diced onions", + "vegetable oil", + "corn tortillas", + "tomatoes", + "taco seasoning" + ] + }, + { + "id": 43033, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "jicama", + "scallions", + "dumpling wrappers", + "salt", + "ground chicken", + "sesame oil", + "chinkiang vinegar", + "sugar", + "olive oil", + "dried shiitake mushrooms" + ] + }, + { + "id": 24581, + "cuisine": "italian", + "ingredients": [ + "coarse salt", + "dried oregano", + "olive oil", + "juice", + "tomatoes", + "garlic", + "ground pepper", + "onions" + ] + }, + { + "id": 31906, + "cuisine": "chinese", + "ingredients": [ + "rock sugar", + "peanuts", + "ginger", + "water", + "pandanus leaf", + "white sesame seeds", + "sugar", + "egg yolks", + "glutinous rice flour", + "winter melon", + "coconut", + "butter" + ] + }, + { + "id": 48614, + "cuisine": "british", + "ingredients": [ + "whitefish", + "salt", + "large eggs", + "crushed cornflakes", + "all-purpose flour", + "yukon gold potatoes" + ] + }, + { + "id": 37693, + "cuisine": "italian", + "ingredients": [ + "eggs", + "white sugar", + "ricotta cheese", + "vanilla extract", + "ditalini pasta" + ] + }, + { + "id": 7291, + "cuisine": "italian", + "ingredients": [ + "smoked gouda", + "white pepper", + "frozen cheese ravioli", + "fresh parsley", + "cream" + ] + }, + { + "id": 6953, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "green pepper", + "frozen corn", + "oil", + "chicken broth", + "rice", + "salsa", + "Mexican cheese" + ] + }, + { + "id": 29082, + "cuisine": "southern_us", + "ingredients": [ + "water", + "orange juice", + "tea bags", + "mint sprigs", + "clove", + "orange", + "fresh lemon juice", + "sugar", + "pineapple juice" + ] + }, + { + "id": 12438, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "chorizo sausage", + "chicken stock", + "baking powder", + "cornmeal", + "corn husks", + "frozen corn", + "chipotle chile", + "vegetable shortening", + "adobo sauce" + ] + }, + { + "id": 27148, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "cheddar cheese", + "black beans", + "olive oil", + "grated parmesan cheese", + "cilantro", + "yellow onion", + "sour cream", + "onions", + "chicken stock", + "ground chicken", + "lime", + "zucchini", + "chili powder", + "salt", + "garlic cloves", + "corn tortillas", + "cumin", + "avocado", + "granulated garlic", + "fresh cilantro", + "radishes", + "jalapeno chilies", + "crushed red pepper flakes", + "ear of corn", + "chayotes", + "dried oregano", + "tomato paste", + "black pepper", + "yellow squash", + "large eggs", + "onion powder", + "plain breadcrumbs", + "red bell pepper", + "roasted tomatoes", + "canola oil" + ] + }, + { + "id": 32771, + "cuisine": "southern_us", + "ingredients": [ + "chipotle chile", + "salt", + "mustard greens", + "olive oil", + "adobo", + "bacon slices" + ] + }, + { + "id": 5848, + "cuisine": "thai", + "ingredients": [ + "bell pepper", + "coconut milk", + "boneless chicken skinless thigh", + "red curry paste", + "fish sauce", + "pineapple", + "onions", + "palm sugar", + "extra virgin coconut oil" + ] + }, + { + "id": 44193, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt and ground black pepper", + "white vinegar", + "lime juice", + "chopped onion", + "water", + "garlic", + "tomatoes", + "olive oil", + "carrots" + ] + }, + { + "id": 39306, + "cuisine": "british", + "ingredients": [ + "ground black pepper", + "ground pork", + "ground beef", + "water", + "green onions", + "frozen broccoli", + "olive oil", + "butter", + "carrots", + "steak sauce", + "potatoes", + "low sodium beef bouillon granules", + "onions" + ] + }, + { + "id": 48496, + "cuisine": "mexican", + "ingredients": [ + "tilapia fillets", + "cilantro leaves", + "salt and ground black pepper", + "olive oil", + "fresh lime juice", + "tomatoes", + "jalapeno chilies" + ] + }, + { + "id": 9424, + "cuisine": "italian", + "ingredients": [ + "toasted pecans", + "ravioli", + "olive oil", + "salt", + "grated parmesan cheese", + "garlic cloves", + "watercress leaves", + "cheese" + ] + }, + { + "id": 38017, + "cuisine": "vietnamese", + "ingredients": [ + "lettuce", + "brown sugar", + "peanuts", + "basil", + "peanut butter", + "cucumber", + "mint", + "water", + "green onions", + "rice vermicelli", + "carrots", + "beansprouts", + "dressing", + "chiles", + "hoisin sauce", + "cilantro", + "oil", + "red bell pepper", + "fish sauce", + "lime juice", + "shallots", + "garlic", + "shrimp", + "bird chile" + ] + }, + { + "id": 49137, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "unsalted butter", + "all-purpose flour", + "honey", + "chocolate", + "cream sweeten whip", + "large egg yolks", + "salt", + "pinenuts", + "large eggs", + "heavy whipping cream" + ] + }, + { + "id": 26302, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "crushed red pepper", + "fresh parsley", + "chicken broth", + "pecorino romano cheese", + "ricotta", + "butter", + "salt", + "pinenuts", + "kalamata", + "garlic cloves" + ] + }, + { + "id": 2223, + "cuisine": "irish", + "ingredients": [ + "Guinness Beer", + "white sugar", + "butter", + "self rising flour", + "molasses", + "salt" + ] + }, + { + "id": 34862, + "cuisine": "brazilian", + "ingredients": [ + "sausage casings", + "orange", + "garlic", + "pork shoulder", + "black beans", + "bay leaves", + "salt", + "thick-cut bacon", + "water", + "beef stock cubes", + "hot sauce", + "smoked ham hocks", + "black pepper", + "olive oil", + "smoked sausage", + "onions" + ] + }, + { + "id": 28444, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "low salt chicken broth", + "sake", + "large garlic cloves", + "sugar", + "fryer chickens", + "peeled fresh ginger" + ] + }, + { + "id": 7248, + "cuisine": "italian", + "ingredients": [ + "black peppercorns", + "cannellini beans", + "plum tomatoes", + "sage leaves", + "olive oil", + "garlic", + "kosher salt", + "red pepper flakes", + "tomato purée", + "ground black pepper", + "sweet italian sausage" + ] + }, + { + "id": 2062, + "cuisine": "chinese", + "ingredients": [ + "water", + "cooking wine", + "baby bok choy", + "sesame oil", + "corn starch", + "sugar", + "shiitake", + "oyster sauce", + "soy sauce", + "garlic" + ] + }, + { + "id": 35288, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "heavy cream", + "unsalted butter", + "fresh parsley", + "olive oil", + "all-purpose flour", + "mustard", + "veal cutlets" + ] + }, + { + "id": 42815, + "cuisine": "cajun_creole", + "ingredients": [ + "crab meat", + "dried basil", + "shrimp heads", + "all-purpose flour", + "okra", + "onions", + "black pepper", + "bay leaves", + "worcestershire sauce", + "cayenne pepper", + "celery", + "green bell pepper", + "dried thyme", + "vegetable oil", + "hot sauce", + "lemon juice", + "dried oregano", + "shrimp stock", + "crab", + "green onions", + "salt", + "creole seasoning", + "fresh parsley" + ] + }, + { + "id": 38741, + "cuisine": "italian", + "ingredients": [ + "strawberries", + "merlot", + "juice concentrate" + ] + }, + { + "id": 6038, + "cuisine": "vietnamese", + "ingredients": [ + "jicama", + "salt", + "canola oil", + "garlic sauce", + "ground beef", + "butter", + "sausages", + "rice paper", + "eggs", + "garlic", + "dried shrimp" + ] + }, + { + "id": 34988, + "cuisine": "southern_us", + "ingredients": [ + "pork", + "barbecue sauce", + "sauce", + "chicken broth", + "Texas Pete Hot Sauce", + "red pepper", + "chicken", + "bacon drippings", + "baby lima beans", + "baking potatoes", + "ham", + "tomato sauce", + "corn", + "diced tomatoes" + ] + }, + { + "id": 23585, + "cuisine": "vietnamese", + "ingredients": [ + "turbinado", + "fish sauce", + "coriander seeds", + "chicken parts", + "sea salt", + "Saigon cinnamon", + "scallions", + "mint", + "lime", + "leaves", + "shallots", + "cheese", + "soybean sprouts", + "serrano chile", + "black peppercorns", + "water", + "thai basil", + "cooked chicken", + "star anise", + "sauce", + "chopped cilantro fresh", + "clove", + "stock", + "fresh ginger", + "Sriracha", + "rice noodles", + "yellow onion", + "cardamom pods", + "chicken" + ] + }, + { + "id": 23369, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "boneless skinless chicken breasts", + "heavy whipping cream", + "dried basil", + "ground black pepper", + "butter", + "parmesan cheese", + "cajun seasoning", + "linguini", + "sun-dried tomatoes", + "green onions", + "salt" + ] + }, + { + "id": 33213, + "cuisine": "mexican", + "ingredients": [ + "chopped bell pepper", + "cilantro leaves", + "white onion", + "garlic", + "tomatoes", + "chile pepper", + "fresh lime juice", + "pepper", + "salt" + ] + }, + { + "id": 17071, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "sea salt", + "green beans" + ] + }, + { + "id": 15032, + "cuisine": "jamaican", + "ingredients": [ + "tomatoes", + "curry powder", + "oil", + "pepper", + "sweet pepper", + "onions", + "black pepper", + "garlic", + "shrimp", + "water", + "salt" + ] + }, + { + "id": 12539, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "finely chopped onion", + "red bell pepper", + "dried thyme", + "ground red pepper", + "kosher salt", + "olive oil", + "diced tomatoes", + "minced garlic", + "dry white wine", + "dried oregano" + ] + }, + { + "id": 9385, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "linguine", + "grated lemon peel", + "reduced fat coconut milk", + "beef", + "corn starch", + "fresh cilantro", + "beef broth", + "firmly packed brown sugar", + "Thai red curry paste", + "toasted sesame oil" + ] + }, + { + "id": 30110, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "red wine", + "pinenuts", + "garlic", + "pasta", + "olive oil", + "anchovy fillets", + "bread crumbs", + "raisins" + ] + }, + { + "id": 17678, + "cuisine": "italian", + "ingredients": [ + "wheat cereal", + "salt", + "sausage casings", + "milk", + "onions", + "eggs", + "pepper", + "ground beef", + "green bell pepper", + "worcestershire sauce" + ] + }, + { + "id": 33628, + "cuisine": "indian", + "ingredients": [ + "water", + "jalapeno chilies", + "salt", + "cumin seed", + "quinoa", + "cilantro stems", + "chickpeas", + "ghee", + "fresh ginger", + "bay leaves", + "yellow onion", + "coconut milk", + "frozen spinach", + "garam masala", + "garlic", + "ground coriander", + "roasted tomatoes" + ] + }, + { + "id": 21819, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "chillies", + "avocado", + "fresh cheese", + "lime", + "onions", + "tomatoes", + "tortilla chips" + ] + }, + { + "id": 43808, + "cuisine": "southern_us", + "ingredients": [ + "rump roast", + "salt", + "dried thyme", + "dried rosemary", + "pepper", + "spanish paprika", + "garlic" + ] + }, + { + "id": 21900, + "cuisine": "italian", + "ingredients": [ + "fillet red snapper", + "fennel bulb", + "radish sprouts", + "sugar", + "olive oil", + "purple onion", + "cider vinegar", + "golden raisins", + "potato starch", + "halibut fillets", + "balsamic vinegar" + ] + }, + { + "id": 14187, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "chipotles in adobo", + "jack cheese", + "shredded lettuce", + "sour cream", + "avocado", + "crushed tomatoes", + "fat", + "onions", + "pepper", + "garlic", + "corn tortillas" + ] + }, + { + "id": 7820, + "cuisine": "cajun_creole", + "ingredients": [ + "brown sugar", + "chopped green chilies", + "leeks", + "salt", + "carrots", + "fresh parsley", + "great northern beans", + "water", + "potatoes", + "garlic", + "ham", + "celery", + "white pepper", + "artichoke hearts", + "chopped fresh thyme", + "cayenne pepper", + "sliced mushrooms", + "fresh rosemary", + "black beans", + "ground black pepper", + "dry red wine", + "creole seasoning", + "baby corn" + ] + }, + { + "id": 3975, + "cuisine": "greek", + "ingredients": [ + "pitas", + "feta cheese crumbles", + "fat free yogurt", + "poblano chiles", + "fresh lemon juice" + ] + }, + { + "id": 42323, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "hot sauce", + "white vinegar", + "no-salt-added diced tomatoes", + "rotisserie chicken", + "tomato paste", + "lima beans", + "light brown sugar", + "frozen whole kernel corn" + ] + }, + { + "id": 19235, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salt", + "plum tomatoes", + "chili powder", + "noodles", + "water", + "onions", + "ground cumin", + "pepper", + "vegetable oil", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 20495, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "avocado", + "habanero pepper", + "lime", + "chopped cilantro fresh", + "tomatoes", + "purple onion" + ] + }, + { + "id": 36472, + "cuisine": "cajun_creole", + "ingredients": [ + "whole allspice", + "whole cloves", + "salt", + "celery ribs", + "water", + "ground red pepper", + "mustard seeds", + "black peppercorns", + "coriander seeds", + "red pepper flakes", + "onions", + "garlic bulb", + "crawfish", + "bay leaves", + "dill seed" + ] + }, + { + "id": 39272, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "cooking spray", + "shredded cheese", + "cumin", + "tortillas", + "salt", + "onions", + "garlic powder", + "garlic", + "oil", + "mango salsa", + "bell pepper", + "skinless chicken breasts", + "oregano" + ] + }, + { + "id": 8467, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "orange juice", + "cumin", + "pepper", + "garlic", + "pork butt", + "chili powder", + "oil", + "water", + "salt", + "oregano" + ] + }, + { + "id": 45216, + "cuisine": "italian", + "ingredients": [ + "penne", + "shallots", + "rice vinegar", + "fresh basil", + "ground black pepper", + "extra-virgin olive oil", + "ripe olives", + "fat free less sodium chicken broth", + "asiago", + "garlic cloves", + "spinach", + "cooking spray", + "salt", + "shiitake mushroom caps" + ] + }, + { + "id": 6768, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "rice vinegar", + "wasabi", + "tahini", + "sesame seeds", + "scallions", + "tomatoes", + "light mayonnaise" + ] + }, + { + "id": 32711, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "cherry tomatoes", + "red pepper", + "onions", + "fresh corn", + "fresh cilantro", + "quinoa", + "salsa", + "avocado", + "water", + "olive oil", + "salt", + "cumin", + "black beans", + "lime", + "tempeh", + "cayenne pepper" + ] + }, + { + "id": 16271, + "cuisine": "mexican", + "ingredients": [ + "crema mexican", + "poblano chiles", + "salsa verde", + "salt", + "masa", + "chicken broth", + "baking powder", + "lard", + "corn husks", + "shredded cheese" + ] + }, + { + "id": 13595, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chopped fresh chives", + "garlic cloves", + "roasted red peppers", + "salt", + "ground black pepper", + "green onions", + "large egg whites", + "large eggs", + "goat cheese" + ] + }, + { + "id": 20951, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "instant yeast", + "salt", + "powdered sugar", + "vegetable oil spray", + "vegetable oil", + "powdered buttermilk", + "whole milk", + "bread flour", + "sugar", + "baking soda", + "vanilla extract" + ] + }, + { + "id": 10473, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "half & half", + "corn starch", + "pure vanilla extract", + "granulated sugar", + "fine sea salt", + "unsalted butter", + "baking powder", + "light brown sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 10174, + "cuisine": "british", + "ingredients": [ + "honey", + "baking powder", + "extra sharp cheddar cheese", + "cooked ham", + "lettuce leaves", + "all-purpose flour", + "mustard", + "whole milk", + "salt", + "unsalted butter", + "heavy cream" + ] + }, + { + "id": 202, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "boneless chicken skinless thigh", + "vegetable oil", + "purple onion", + "carrots", + "white vinegar", + "soy sauce", + "shallots", + "cilantro sprigs", + "oyster sauce", + "mayonaise", + "baguette", + "daikon", + "salt", + "five-spice powder", + "sugar", + "jalapeno chilies", + "star anise", + "garlic cloves", + "hothouse cucumber" + ] + }, + { + "id": 36359, + "cuisine": "southern_us", + "ingredients": [ + "refrigerated biscuits", + "condensed cream of potato soup", + "milk", + "poultry seasoning", + "condensed cream of broccoli soup", + "cooked chicken", + "ground black pepper", + "frozen mixed vegetables" + ] + }, + { + "id": 36563, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "fennel bulb", + "gorgonzola", + "dried currants", + "fresh lemon juice", + "apples" + ] + }, + { + "id": 2300, + "cuisine": "italian", + "ingredients": [ + "peaches", + "cracked black pepper", + "pancetta", + "balsamic vinegar", + "salt", + "baby arugula", + "extra-virgin olive oil", + "olive oil", + "crumbled ricotta salata cheese", + "fresh lemon juice" + ] + }, + { + "id": 47166, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "garlic cloves", + "penne", + "extra-virgin olive oil", + "pinenuts", + "salt", + "parmigiano reggiano cheese" + ] + }, + { + "id": 42751, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "chopped onion", + "jerusalem artichokes", + "yellow mustard seeds", + "dry mustard", + "red bell pepper", + "tumeric", + "apple cider vinegar", + "celery seed", + "sugar", + "all-purpose flour", + "coarse kosher salt" + ] + }, + { + "id": 23588, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "boiling water", + "shortening", + "buttermilk", + "confectioners sugar", + "eggs", + "baking powder", + "all-purpose flour", + "unsweetened cocoa powder", + "milk", + "vanilla extract", + "white sugar" + ] + }, + { + "id": 31504, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "green chilies", + "ground cumin", + "fresh coriander", + "black salt", + "salt", + "chutney", + "sweet potatoes", + "lemon juice" + ] + }, + { + "id": 9647, + "cuisine": "cajun_creole", + "ingredients": [ + "curly parsley", + "chopped green bell pepper", + "chopped celery", + "chopped onion", + "peeled deveined shrimp", + "white pepper", + "green onions", + "all-purpose flour", + "chicken stock", + "black pepper", + "bay leaves", + "salt", + "cooked white rice", + "andouille sausage", + "water", + "vegetable oil", + "cayenne pepper" + ] + }, + { + "id": 42831, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "taco seasoning mix", + "iceberg lettuce", + "pitted black olives", + "salad dressing", + "dried lentils", + "kidney beans", + "avocado", + "water", + "ground turkey" + ] + }, + { + "id": 3696, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon", + "scallions", + "pitas", + "salt", + "flat leaf parsley", + "za'atar", + "purple onion", + "sumac powder", + "pepper", + "roma tomatoes", + "english cucumber", + "sea salt flakes" + ] + }, + { + "id": 31734, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "all-purpose flour", + "onions", + "water", + "green peas", + "cumin seed", + "seeds", + "green chilies", + "coriander", + "semolina", + "salt", + "oil" + ] + }, + { + "id": 35802, + "cuisine": "italian", + "ingredients": [ + "solid pack pumpkin", + "large egg yolks", + "butter", + "dry bread crumbs", + "fruit", + "grated parmesan cheese", + "all-purpose flour", + "sage leaves", + "pepper", + "amaretti", + "grated nutmeg", + "brandy", + "large eggs", + "salt" + ] + }, + { + "id": 44749, + "cuisine": "japanese", + "ingredients": [ + "green cardamom pods", + "whole milk", + "honey", + "cinnamon sticks", + "clove", + "star anise", + "fresh ginger" + ] + }, + { + "id": 32112, + "cuisine": "moroccan", + "ingredients": [ + "cinnamon", + "cayenne pepper", + "ground cumin", + "sugar", + "paprika", + "fresh parsley leaves", + "lettuce", + "raisins", + "baby carrots", + "olive oil", + "salt", + "lemon juice" + ] + }, + { + "id": 15332, + "cuisine": "mexican", + "ingredients": [ + "boneless chop pork", + "cumin", + "garlic", + "chili powder", + "taco sauce", + "onions" + ] + }, + { + "id": 7380, + "cuisine": "chinese", + "ingredients": [ + "scallions", + "cooked chicken", + "hoisin sauce", + "crepes" + ] + }, + { + "id": 33013, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "frozen hash browns", + "vegetable oil", + "cooked ham", + "chile pepper", + "shredded cheddar cheese", + "enchilada sauce" + ] + }, + { + "id": 32385, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "garam masala", + "greek yogurt", + "lime juice", + "red pepper flakes", + "chat masala", + "coriander powder", + "ground cumin", + "brussels sprouts", + "olive oil", + "salt" + ] + }, + { + "id": 34140, + "cuisine": "southern_us", + "ingredients": [ + "blackberries", + "milk", + "white sugar", + "white flour" + ] + }, + { + "id": 43779, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "shortening", + "sweet potatoes", + "self rising flour", + "sugar", + "butter" + ] + }, + { + "id": 5565, + "cuisine": "southern_us", + "ingredients": [ + "mild cheddar cheese", + "pimentos", + "sharp cheddar cheese", + "mayonaise", + "cream cheese", + "salt" + ] + }, + { + "id": 24436, + "cuisine": "french", + "ingredients": [ + "sugar", + "fresh orange juice", + "cream of tartar", + "cooking spray", + "all-purpose flour", + "large egg whites", + "salt", + "powdered sugar", + "2% reduced-fat milk", + "grated orange" + ] + }, + { + "id": 22337, + "cuisine": "mexican", + "ingredients": [ + "hot sauce", + "fresh orange juice", + "onions", + "fresh lime juice", + "salt" + ] + }, + { + "id": 739, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "fresh salmon", + "sake", + "flour", + "corn starch", + "mirin", + "oil", + "sugar", + "salt" + ] + }, + { + "id": 12534, + "cuisine": "italian", + "ingredients": [ + "orzo pasta", + "baby spinach", + "onions", + "artichoke hearts", + "balsamic vinegar", + "garlic", + "olive oil", + "cooked chicken", + "crushed red pepper flakes", + "pinenuts", + "dry white wine", + "bacon" + ] + }, + { + "id": 5755, + "cuisine": "brazilian", + "ingredients": [ + "granulated sugar", + "sweetened coconut", + "coconut", + "sweetened condensed milk" + ] + }, + { + "id": 29652, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "fresh parsley", + "ground black pepper", + "lemon juice", + "olive oil", + "salt", + "anchovy paste" + ] + }, + { + "id": 49700, + "cuisine": "indian", + "ingredients": [ + "sweet onion", + "heavy cream", + "curry powder", + "butter", + "pepper", + "mushrooms", + "shrimp", + "chicken broth", + "roma tomatoes", + "salt" + ] + }, + { + "id": 5015, + "cuisine": "russian", + "ingredients": [ + "mayonaise", + "ground pork", + "pepper", + "Italian seasoned breadcrumbs", + "ground chicken", + "salt", + "eggs", + "water", + "onions" + ] + }, + { + "id": 9785, + "cuisine": "italian", + "ingredients": [ + "water", + "cracked black pepper", + "spinach", + "cheese ravioli", + "sugar", + "diced tomatoes", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 32686, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "salt", + "pepper", + "green onions", + "lemon juice", + "mint", + "zucchini", + "dill", + "olive oil", + "garlic" + ] + }, + { + "id": 14481, + "cuisine": "spanish", + "ingredients": [ + "octopuses", + "red pepper flakes", + "pickling spices", + "fresh lemon juice", + "kosher salt" + ] + }, + { + "id": 14618, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "bacon slices", + "green cabbage", + "water", + "green beans", + "cider vinegar", + "salt", + "sugar", + "finely chopped onion" + ] + }, + { + "id": 39517, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "jam", + "biscuits", + "pork tenderloin", + "white cornmeal", + "table salt", + "vegetable oil", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 36751, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "vanilla extract", + "white sugar", + "baking soda", + "all-purpose flour", + "ground cinnamon", + "vegetable oil", + "margarine", + "water", + "sour milk", + "unsweetened cocoa powder" + ] + }, + { + "id": 49160, + "cuisine": "mexican", + "ingredients": [ + "refried black beans", + "paprika", + "purple onion", + "lemon juice", + "monterey jack", + "avocado", + "kosher salt", + "garlic", + "cayenne pepper", + "red bell pepper", + "cream", + "extra-virgin olive oil", + "salsa", + "greek yogurt", + "ground cumin", + "tomatoes", + "green onions", + "black olives", + "freshly ground pepper", + "corn tortillas" + ] + }, + { + "id": 48195, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "vegetable oil", + "salsa", + "cumin", + "chile powder", + "guacamole", + "purple onion", + "sour cream", + "flour tortillas", + "garlic", + "roasting chickens", + "shredded Monterey Jack cheese", + "green chile", + "barbecue sauce", + "frozen corn", + "smoked gouda" + ] + }, + { + "id": 22212, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "cooked white rice", + "sauce", + "soy sauce", + "salad oil", + "chicken breasts" + ] + }, + { + "id": 11969, + "cuisine": "greek", + "ingredients": [ + "pepper", + "diced tomatoes", + "green beans", + "olive oil", + "salt", + "water", + "garlic", + "beans", + "parsley", + "yellow onion" + ] + }, + { + "id": 49379, + "cuisine": "irish", + "ingredients": [ + "melted butter", + "potatoes", + "milk", + "shredded sharp cheddar cheese", + "eggs", + "paprika", + "minced onion", + "salt" + ] + }, + { + "id": 37677, + "cuisine": "indian", + "ingredients": [ + "yellow mustard seeds", + "garlic cloves", + "long grain white rice", + "roasted cashews", + "vegetable oil", + "onions", + "kosher salt", + "fresh lemon juice", + "ground turmeric", + "lemon peel", + "fresno chiles" + ] + }, + { + "id": 45276, + "cuisine": "mexican", + "ingredients": [ + "corn tortilla chips", + "salt", + "onions", + "pepper", + "cream cheese", + "green bell pepper", + "chili sauce", + "butter", + "red bell pepper" + ] + }, + { + "id": 37415, + "cuisine": "mexican", + "ingredients": [ + "lime", + "paprika", + "fresh parsley", + "avocado", + "boneless skinless chicken breasts", + "cayenne pepper", + "canola oil", + "light brown sugar", + "nonfat greek yogurt", + "garlic", + "cumin", + "kosher salt", + "chili powder", + "chipotles in adobo" + ] + }, + { + "id": 40636, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lemongrass", + "lime peel", + "boneless skinless chicken breasts", + "vegetable oil", + "garlic cloves", + "galangal", + "kaffir lime leaves", + "lime juice", + "coriander seeds", + "spring onions", + "lime wedges", + "cumin seed", + "chillies", + "chicken stock", + "red chili peppers", + "eggplant", + "palm sugar", + "shallots", + "rice", + "coconut milk", + "whole peppercorn", + "green curry paste", + "thai basil", + "shrimp paste", + "cilantro leaves", + "green beans", + "coriander" + ] + }, + { + "id": 9133, + "cuisine": "italian", + "ingredients": [ + "boneless, skinless chicken breast", + "ground black pepper", + "dried fig", + "spinach", + "olive oil", + "salt", + "fresh rosemary", + "water", + "wine vinegar", + "dried rosemary", + "walnut halves", + "radicchio", + "gorgonzola" + ] + }, + { + "id": 44457, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "bay leaves", + "button mushrooms", + "garlic cloves", + "tomato paste", + "ground black pepper", + "red wine", + "extra-virgin olive oil", + "flat leaf parsley", + "pearl onions", + "chopped fresh thyme", + "bacon slices", + "carrots", + "lower sodium chicken broth", + "finely chopped onion", + "chicken drumsticks", + "chopped celery", + "chicken thighs" + ] + }, + { + "id": 42066, + "cuisine": "chinese", + "ingredients": [ + "green cabbage", + "sesame oil", + "carrots", + "low sodium soy sauce", + "peanut oil", + "chicken broth", + "yellow onion", + "green onions", + "chow mein noodles" + ] + }, + { + "id": 3356, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "diced tomatoes", + "Italian seasoned breadcrumbs", + "eggs", + "butter", + "garlic", + "tomato paste", + "grated parmesan cheese", + "rosemary leaves", + "boneless chicken skinless thigh", + "bacon", + "chopped onion" + ] + }, + { + "id": 43630, + "cuisine": "italian", + "ingredients": [ + "shredded cheddar cheese", + "chili powder", + "sliced mushrooms", + "sugar", + "kidney beans", + "diced tomatoes", + "pepperoni slices", + "beef bouillon", + "chopped onion", + "pasta sauce", + "water", + "lean ground beef" + ] + }, + { + "id": 18088, + "cuisine": "southern_us", + "ingredients": [ + "seasoning salt", + "vegetable oil", + "self rising flour", + "oysters", + "large eggs", + "evaporated milk" + ] + }, + { + "id": 22838, + "cuisine": "irish", + "ingredients": [ + "white vinegar", + "herbs", + "English mustard", + "butter", + "black pepper", + "gherkins", + "milk" + ] + }, + { + "id": 2306, + "cuisine": "chinese", + "ingredients": [ + "baby bok choy", + "minced ginger", + "meat", + "grated carrot", + "peapods", + "white pepper", + "egg whites", + "vegetable oil", + "chicken broth", + "soy sauce", + "fresh ginger", + "sesame oil", + "garlic", + "sugar", + "minced garlic", + "green onions", + "wonton wrappers" + ] + }, + { + "id": 14674, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "pitted kalamata olives", + "potatoes", + "chopped tomatoes", + "dried oregano", + "pepper", + "garlic" + ] + }, + { + "id": 34699, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "pork tenderloin", + "garlic cloves", + "low sodium soy sauce", + "water", + "salt", + "green cabbage", + "white pepper", + "green onions", + "corn starch", + "sugar", + "Sriracha", + "peanut oil" + ] + }, + { + "id": 23737, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "artichoke hearts", + "chopped onion", + "water", + "cheese tortellini", + "red bell pepper", + "spinach", + "fresh parmesan cheese", + "garlic cloves", + "navy beans", + "olive oil", + "vegetable broth", + "italian seasoning" + ] + }, + { + "id": 3939, + "cuisine": "thai", + "ingredients": [ + "fresh corn", + "jasmine rice", + "grilled chicken", + "red pepper", + "broccoli", + "coconut milk", + "chicken bouillon", + "lemon grass", + "green onions", + "sweet peas", + "Thai fish sauce", + "sugar", + "curry powder", + "water chestnuts", + "cilantro", + "yellow onion", + "chile sauce", + "soy sauce", + "fresh ginger", + "mushrooms", + "garlic", + "corn starch" + ] + }, + { + "id": 48235, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "garlic", + "soy sauce", + "cooking oil", + "beef", + "onions", + "leaves", + "kalamansi juice" + ] + }, + { + "id": 5408, + "cuisine": "irish", + "ingredients": [ + "light brown sugar", + "vanilla extract", + "milk", + "unsalted butter", + "rolled oats", + "all-purpose flour" + ] + }, + { + "id": 48273, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "cornmeal", + "pepper", + "salt", + "eggs", + "buttermilk", + "green tomatoes", + "all-purpose flour" + ] + }, + { + "id": 12006, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "bitters", + "rum", + "orange peel", + "water", + "cinnamon sticks", + "golden raisins", + "ice" + ] + }, + { + "id": 42721, + "cuisine": "mexican", + "ingredients": [ + "corn tortillas", + "salt", + "canola oil" + ] + }, + { + "id": 8158, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "panko", + "flour", + "onions", + "boneless center cut pork chops", + "pepper", + "steamed white rice", + "scallions", + "soy sauce", + "mirin", + "salt", + "eggs", + "dashi", + "large eggs", + "oil" + ] + }, + { + "id": 48353, + "cuisine": "italian", + "ingredients": [ + "salad seasoning mix", + "purple onion", + "italian salad dressing", + "red wine vinegar", + "sliced mushrooms", + "parmesan cheese", + "sausages", + "green olives", + "diced tomatoes", + "spaghetti" + ] + }, + { + "id": 34017, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "red bell pepper", + "ground black pepper", + "vegetable oil", + "chopped cilantro fresh", + "lime wedges", + "boneless skinless chicken breast halves", + "jamaican jerk season", + "pineapple" + ] + }, + { + "id": 20633, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "monterey jack", + "eggs", + "garlic", + "tomatoes", + "cilantro", + "chorizo", + "onions" + ] + }, + { + "id": 28773, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "mushrooms", + "poultry seasoning", + "dried tarragon leaves", + "sliced black olives", + "garlic", + "tomatoes", + "garlic powder", + "cannellini beans", + "shredded mozzarella cheese", + "pepper", + "flour tortillas", + "salt" + ] + }, + { + "id": 24248, + "cuisine": "french", + "ingredients": [ + "milk chocolate", + "frozen pastry puff sheets", + "large eggs", + "sugar" + ] + }, + { + "id": 40318, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "garlic cloves", + "black pepper", + "okra", + "tomatoes", + "jalapeno chilies", + "fresh lime juice", + "fresh spinach", + "salt", + "canola oil" + ] + }, + { + "id": 47063, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "vegetable oil", + "cilantro leaves", + "kosher salt", + "ginger", + "serrano chile", + "lamb shanks", + "large garlic cloves", + "cumin seed", + "leeks", + "peas" + ] + }, + { + "id": 21388, + "cuisine": "greek", + "ingredients": [ + "whole wheat pita", + "yellow bell pepper", + "lamb", + "vegetable oil cooking spray", + "ground black pepper", + "garlic", + "cucumber", + "cherry tomatoes", + "extra-virgin olive oil", + "lemon juice", + "kosher salt", + "nonfat greek yogurt", + "purple onion", + "oregano" + ] + }, + { + "id": 22768, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "crushed red pepper flakes", + "lean ground beef", + "rice", + "chili powder", + "shredded sharp cheddar cheese", + "picante sauce", + "paprika" + ] + }, + { + "id": 1365, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "cumin", + "milk", + "butter", + "American cheese", + "onion powder", + "chopped green chilies", + "cayenne pepper" + ] + }, + { + "id": 22973, + "cuisine": "southern_us", + "ingredients": [ + "Angostura bitters", + "ice", + "satsumas", + "bitters", + "club soda", + "whiskey" + ] + }, + { + "id": 1170, + "cuisine": "italian", + "ingredients": [ + "peperoncini", + "olive oil", + "red wine vinegar", + "pepperoni", + "sun-dried tomatoes in oil", + "hot red pepper flakes", + "artichok heart marin", + "yellow bell pepper", + "carrots", + "dried rosemary", + "brine-cured olives", + "fennel bulb", + "large garlic cloves", + "fresh parsley leaves", + "oregano", + "dried basil", + "balsamic vinegar", + "bocconcini", + "red bell pepper" + ] + }, + { + "id": 39150, + "cuisine": "vietnamese", + "ingredients": [ + "brown sugar", + "water", + "ground black pepper", + "salt", + "onions", + "white vinegar", + "boneless pork shoulder roast", + "pickled carrots", + "whole wheat tortillas", + "carrots", + "sugar", + "lime juice", + "chile pepper", + "mesclun", + "fish sauce", + "warm water", + "fresh cilantro", + "garlic", + "cucumber" + ] + }, + { + "id": 35826, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "garlic cloves", + "rib", + "fine sea salt" + ] + }, + { + "id": 48023, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "large eggs", + "poppy seeds", + "sugar", + "baking powder", + "orange zest", + "orange juice concentrate", + "cooking spray", + "all-purpose flour", + "baking soda", + "butter" + ] + }, + { + "id": 28664, + "cuisine": "french", + "ingredients": [ + "active dry yeast", + "bread flour", + "salt", + "water" + ] + }, + { + "id": 25494, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "garlic powder", + "ricotta", + "pasta sauce", + "parsley", + "italian seasoning", + "eggs", + "parmesan cheese", + "sour cream", + "thin spaghetti", + "mozzarella cheese", + "butter" + ] + }, + { + "id": 284, + "cuisine": "korean", + "ingredients": [ + "cold water", + "pepper", + "cane sugar", + "ketchup", + "salt", + "carrots", + "stock", + "mirin", + "scallions", + "fishcake", + "Gochujang base", + "toasted sesame seeds" + ] + }, + { + "id": 33100, + "cuisine": "british", + "ingredients": [ + "fresh spinach", + "dijon mustard", + "ground black pepper", + "kosher salt", + "crème fraîche", + "pecorino cheese", + "unsalted butter" + ] + }, + { + "id": 292, + "cuisine": "italian", + "ingredients": [ + "fresh leav spinach", + "crumbled blue cheese", + "pinenuts", + "chopped onion", + "tomatoes", + "olive oil", + "garlic cloves", + "fat free less sodium chicken broth", + "cooked rigatoni" + ] + }, + { + "id": 9031, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "kosher salt", + "old bay seasoning", + "water" + ] + }, + { + "id": 11029, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ground black pepper", + "coarse sea salt", + "grated pecorino", + "dried oregano", + "kosher salt", + "ground sirloin", + "dry bread crumbs", + "fresh basil leaves", + "tomato sauce", + "grated parmesan cheese", + "extra-virgin olive oil", + "flat leaf parsley", + "water", + "large garlic cloves", + "yellow onion", + "spaghetti" + ] + }, + { + "id": 33105, + "cuisine": "vietnamese", + "ingredients": [ + "sake", + "fresh cilantro", + "lime wedges", + "cinnamon sticks", + "fish sauce", + "water", + "shallots", + "salt", + "fat free beef broth", + "black pepper", + "green onions", + "star anise", + "fresh basil leaves", + "rice stick noodles", + "chiles", + "peeled fresh ginger", + "sirloin steak", + "beansprouts" + ] + }, + { + "id": 6737, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "chili powder", + "cayenne pepper", + "taco seasoning mix", + "garlic", + "corn tortillas", + "water", + "lean ground beef", + "sour cream", + "green onions", + "salsa", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 26954, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "frozen whole kernel corn", + "fresh oregano", + "fat free less sodium chicken broth", + "dry white wine", + "medium shrimp", + "fresh basil", + "roasted red peppers", + "chopped onion", + "olive oil", + "asiago" + ] + }, + { + "id": 15197, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "baking soda", + "orange juice", + "corn starch", + "boneless chicken skinless thigh", + "ginger", + "peanut oil", + "grated orange", + "soy sauce", + "low sodium chicken broth", + "dark brown sugar", + "orange peel", + "white vinegar", + "large egg whites", + "cayenne pepper", + "garlic cloves" + ] + }, + { + "id": 8590, + "cuisine": "indian", + "ingredients": [ + "red pepper flakes", + "onions", + "minced ginger", + "garlic", + "cumin", + "diced tomatoes", + "ground turmeric", + "garam masala", + "curry paste" + ] + }, + { + "id": 21540, + "cuisine": "thai", + "ingredients": [ + "sugar", + "ginger", + "coconut milk", + "long beans", + "thai basil", + "oil", + "coriander", + "sweet chili sauce", + "red curry paste", + "fresh lime juice", + "fish sauce", + "large eggs", + "shrimp" + ] + }, + { + "id": 1894, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "cooking spray", + "chocolate", + "black pepper", + "baking powder", + "salt", + "sugar", + "ground red pepper", + "vanilla extract", + "large eggs", + "butter", + "all-purpose flour" + ] + }, + { + "id": 15238, + "cuisine": "italian", + "ingredients": [ + "red kidney beans", + "dried basil", + "ditalini pasta", + "garlic", + "green beans", + "fresh leav spinach", + "olive oil", + "diced tomatoes", + "carrots", + "onions", + "black pepper", + "dried thyme", + "parsley", + "white beans", + "celery", + "kosher salt", + "zucchini", + "vegetable broth", + "hot water", + "dried oregano" + ] + }, + { + "id": 47370, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "ancho chili ground pepper", + "ground black pepper", + "heavy cream", + "sour cream", + "kosher salt", + "olive oil", + "vegetable oil", + "yellow bell pepper", + "onions", + "ground chipotle chile pepper", + "cooked turkey", + "hot pepper sauce", + "paprika", + "corn tortillas", + "shredded cheddar cheese", + "orange bell pepper", + "butter", + "cream cheese", + "ground cumin" + ] + }, + { + "id": 21163, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "green olives", + "low sodium vegetable broth", + "diced tomatoes", + "chickpeas", + "plain whole-milk yogurt", + "tomato paste", + "dried currants", + "parsley", + "garlic", + "freshly ground pepper", + "cauliflower", + "parsnips", + "sweet potatoes", + "extra-virgin olive oil", + "ground coriander", + "ground cumin", + "turnips", + "caraway seeds", + "kosher salt", + "cinnamon", + "crushed red pepper", + "onions" + ] + }, + { + "id": 46945, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salt", + "garlic", + "avocado", + "purple onion", + "chiles", + "chopped cilantro fresh" + ] + }, + { + "id": 40771, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "curry powder", + "jalapeno chilies", + "salt", + "onions", + "plain yogurt", + "cayenne", + "butter", + "rice", + "ground cumin", + "tumeric", + "fresh ginger", + "baking potatoes", + "cilantro leaves", + "frozen peas", + "water", + "cooking oil", + "garlic", + "carrots" + ] + }, + { + "id": 7518, + "cuisine": "italian", + "ingredients": [ + "pasta", + "shredded mozzarella cheese", + "marinara sauce", + "grated parmesan cheese", + "ricotta cheese" + ] + }, + { + "id": 9040, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "honey", + "shallots", + "cucumber", + "coriander", + "jasmine rice", + "miso paste", + "cardamom pods", + "coconut milk", + "curry powder", + "chicken breasts", + "garlic cloves", + "bay leaf", + "soy sauce", + "fresh ginger", + "rice vinegar", + "cinnamon sticks", + "ground turmeric" + ] + }, + { + "id": 2440, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "bourbon whiskey", + "hot pepper sauce", + "worcestershire sauce", + "light molasses", + "onion powder", + "ketchup", + "dijon mustard", + "paprika" + ] + }, + { + "id": 6894, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "brown rice", + "organic chicken", + "salt", + "canned chopped tomatoes", + "Tabasco Pepper Sauce", + "canned black beans", + "green onions", + "onions" + ] + }, + { + "id": 22788, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "large garlic cloves", + "flat leaf parsley", + "grated parmesan cheese", + "freshly ground pepper", + "vidalia onion", + "vegetable broth", + "vegetable oil", + "feta cheese crumbles" + ] + }, + { + "id": 37369, + "cuisine": "russian", + "ingredients": [ + "eggs", + "egg whites", + "onions", + "cottage cheese", + "sour cream", + "olive oil", + "biscuit mix", + "sugar", + "nonstick spray", + "caviar" + ] + }, + { + "id": 26426, + "cuisine": "italian", + "ingredients": [ + "grapes", + "sugar", + "wine", + "fresh lemon juice", + "water" + ] + }, + { + "id": 40528, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "purple onion", + "curry leaves", + "water", + "dried chickpeas", + "bread crumbs", + "salt", + "chili flakes", + "vegetable oil", + "cumin" + ] + }, + { + "id": 39169, + "cuisine": "thai", + "ingredients": [ + "sake", + "oyster sauce", + "brown sugar", + "vegetable oil", + "spinach", + "minced garlic", + "medium shrimp", + "Thai chili paste", + "red bell pepper" + ] + }, + { + "id": 20672, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "grated nutmeg", + "baby spinach", + "unsalted butter", + "phyllo" + ] + }, + { + "id": 30530, + "cuisine": "mexican", + "ingredients": [ + "milk", + "cream cheese", + "bacon bits", + "all-purpose flour", + "jalapeno chilies", + "oil", + "shredded cheddar cheese", + "dry bread crumbs" + ] + }, + { + "id": 17176, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "olive oil", + "salt", + "chopped fresh sage", + "fresh parsley", + "fresh rosemary", + "dry white wine", + "all-purpose flour", + "freshly ground pepper", + "parsley sprigs", + "fresh thyme leaves", + "roasted garlic", + "garlic cloves", + "sugar", + "chopped fresh thyme", + "boneless pork loin", + "fresh herbs" + ] + }, + { + "id": 22161, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "guajillo chiles", + "flour", + "sea salt", + "mole sauce", + "ground cinnamon", + "water", + "vegetable oil", + "garlic cloves", + "ancho chile pepper", + "clove", + "sugar", + "ground black pepper", + "tomatillos", + "dumplings", + "dried oregano", + "tomatoes", + "white onion", + "chicken breasts", + "hoja santa leaves", + "lard" + ] + }, + { + "id": 31011, + "cuisine": "chinese", + "ingredients": [ + "garlic", + "soy sauce", + "chinese five-spice powder", + "firmly packed light brown sugar", + "salt", + "light corn syrup", + "center cut pork chops" + ] + }, + { + "id": 27243, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "rice wine", + "tomatoes", + "white pepper", + "scallions", + "ketchup", + "salt", + "eggs", + "cooking oil", + "corn starch" + ] + }, + { + "id": 22171, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "corn starch", + "eggs", + "salt", + "white sugar", + "cold water", + "vanilla extract", + "chopped pecans", + "dark corn syrup", + "pie shell" + ] + }, + { + "id": 11043, + "cuisine": "italian", + "ingredients": [ + "aleppo pepper", + "extra-virgin olive oil", + "rolls", + "ground black pepper", + "white wine vinegar", + "arugula", + "boneless pork shoulder", + "fennel bulb", + "salt", + "minced garlic", + "fine sea salt", + "fresh lemon juice" + ] + }, + { + "id": 34361, + "cuisine": "italian", + "ingredients": [ + "pasta", + "heirloom tomatoes", + "scallions", + "fresh mozzarella balls", + "extra-virgin olive oil", + "kosher salt", + "basil", + "garlic cloves", + "ground black pepper", + "maldon sea salt" + ] + }, + { + "id": 9230, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "grated parmesan cheese", + "garlic cloves", + "reduced sodium italian style stewed tomatoes", + "butter", + "water", + "chicken breast halves", + "onions", + "large eggs", + "shredded mozzarella cheese" + ] + }, + { + "id": 35957, + "cuisine": "greek", + "ingredients": [ + "eggplant", + "salt", + "lemon", + "tahini", + "olive oil", + "garlic" + ] + }, + { + "id": 5782, + "cuisine": "british", + "ingredients": [ + "finely chopped fresh parsley", + "wild mushrooms", + "parsnips", + "whipping cream", + "chicken stock", + "butter", + "whole grain dijon mustard", + "veal rib chops" + ] + }, + { + "id": 47099, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "white vinegar", + "cayenne", + "kosher salt", + "hots" + ] + }, + { + "id": 4082, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "jalapeno chilies", + "cilantro leaves", + "fresh lime juice", + "black beans", + "radicchio", + "vegetable oil", + "goat cheese", + "romaine lettuce", + "olive oil", + "chili powder", + "salsa", + "ground cumin", + "water", + "boneless chicken breast", + "purple onion", + "corn tortillas" + ] + }, + { + "id": 38338, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "rum", + "salt", + "heavy whipping cream", + "unsalted butter", + "whipped cream", + "dark brown sugar", + "cream", + "ice water", + "all-purpose flour", + "pure maple syrup", + "large eggs", + "granulated white sugar", + "golden syrup" + ] + }, + { + "id": 33485, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "low sodium chicken broth", + "paprika", + "cayenne pepper", + "chicken thighs", + "tomato sauce", + "garlic powder", + "onion powder", + "cheese", + "sharp cheddar cheese", + "pasta", + "white onion", + "green onions", + "extra-virgin olive oil", + "creole seasoning", + "jack cheese", + "bell pepper", + "heavy cream", + "garlic", + "celery" + ] + }, + { + "id": 21067, + "cuisine": "italian", + "ingredients": [ + "jasmine rice", + "scallions", + "large shrimp", + "fresh basil", + "chili paste", + "coconut milk", + "olive oil", + "beansprouts", + "kosher salt", + "garlic", + "fresh lime juice" + ] + }, + { + "id": 45038, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "paprika", + "dried minced onion", + "water", + "chili powder", + "all-purpose flour", + "onions", + "shredded cheddar cheese", + "flour tortillas", + "salt", + "ground beef", + "refried beans", + "onion powder", + "La Victoria Red Chile Sauce" + ] + }, + { + "id": 18119, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "chopped tomatoes", + "ground red pepper", + "vegetable broth", + "smoked paprika", + "cumin", + "corn", + "jalapeno chilies", + "red wine vinegar", + "salt", + "coriander", + "black beans", + "red cabbage", + "brown rice", + "garlic", + "fresh parsley", + "tomatoes", + "olive oil", + "guacamole", + "cilantro", + "yellow onion", + "oregano" + ] + }, + { + "id": 29228, + "cuisine": "italian", + "ingredients": [ + "canned low sodium chicken broth", + "grated parmesan cheese", + "shiitake", + "salt", + "olive oil", + "garlic", + "ground black pepper", + "spaghetti" + ] + }, + { + "id": 41340, + "cuisine": "mexican", + "ingredients": [ + "cooked brown rice", + "taco seasoning", + "diced onions", + "zucchini", + "pinto beans", + "water", + "enchilada sauce", + "green chile", + "fat-free cheddar cheese", + "corn tortillas" + ] + }, + { + "id": 37506, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "honey glazed ham", + "flour", + "crushed red pepper flakes", + "oil", + "yeast", + "dough", + "warm water", + "grated parmesan cheese", + "parsley", + "hot Italian sausages", + "onions", + "sugar", + "sliced black olives", + "pizza sauce", + "salt", + "sliced mushrooms", + "oregano", + "eggs", + "mozzarella cheese", + "marinara sauce", + "basil", + "pepperoni", + "garlic salt" + ] + }, + { + "id": 47921, + "cuisine": "korean", + "ingredients": [ + "chili paste", + "daikon", + "skate", + "hard-boiled egg", + "cucumber", + "broth", + "pickles", + "burdock", + "kimchi", + "pears", + "agave nectar", + "rice vinegar", + "noodles" + ] + }, + { + "id": 2755, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "grated parmesan cheese", + "gnocchi", + "chopped parsley", + "marinara sauce" + ] + }, + { + "id": 19144, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "catfish fillets", + "onions", + "honey dijon mustard", + "parsley flakes", + "garlic salt" + ] + }, + { + "id": 3946, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "tomatillos", + "sour cream", + "green bell pepper", + "flour tortillas", + "salt", + "shredded Monterey Jack cheese", + "water", + "jalapeno chilies", + "chopped onion", + "eggs", + "ground black pepper", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 21927, + "cuisine": "jamaican", + "ingredients": [ + "cold water", + "flour", + "bananas", + "salt" + ] + }, + { + "id": 22015, + "cuisine": "british", + "ingredients": [ + "vinegar", + "salt", + "whipped cream", + "egg whites", + "berries", + "sugar", + "raspberry sauce" + ] + }, + { + "id": 18597, + "cuisine": "italian", + "ingredients": [ + "vegetables", + "oven-ready lasagna noodles", + "Alfredo sauce", + "prosciutto", + "fresh basil", + "diced tomatoes" + ] + }, + { + "id": 2491, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "oil", + "mussels", + "diced tomatoes", + "large garlic cloves", + "spaghetti", + "tomato paste", + "fresh oregano" + ] + }, + { + "id": 18591, + "cuisine": "indian", + "ingredients": [ + "caraway seeds", + "coriander seeds", + "chile pepper", + "cumin seed", + "plantains", + "fresh curry leaves", + "cooking oil", + "salt", + "mustard seeds", + "water", + "flaked coconut", + "cubed potatoes", + "dried red chile peppers", + "plain yogurt", + "bengal gram", + "fresh green bean", + "carrots" + ] + }, + { + "id": 9877, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "Italian parsley leaves", + "garlic cloves", + "fat free less sodium chicken broth", + "shallots", + "chopped walnuts", + "pasta", + "butternut squash", + "salt", + "arugula", + "sage leaves", + "cooking spray", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 49100, + "cuisine": "mexican", + "ingredients": [ + "low-fat buttermilk", + "shuck corn", + "seedless red grapes", + "olive oil", + "ancho powder", + "mixed greens", + "herbs", + "paprika", + "fresh lime juice", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 2360, + "cuisine": "italian", + "ingredients": [ + "flat leaf parsley", + "unsalted butter", + "calf liver", + "water", + "onions" + ] + }, + { + "id": 36421, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "olive oil", + "fresh basil leaves", + "pinenuts", + "salt", + "garlic" + ] + }, + { + "id": 32197, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "paprika", + "dried oregano", + "onion powder", + "cayenne pepper", + "ground pepper", + "popcorn", + "melted butter", + "coarse salt", + "thyme" + ] + }, + { + "id": 29274, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "low sodium chicken broth", + "boiling potatoes", + "onions", + "watercress" + ] + }, + { + "id": 38060, + "cuisine": "indian", + "ingredients": [ + "milk", + "cardamom pods", + "yoghurt", + "chopped almonds", + "saffron", + "caster sugar", + "pistachio nuts" + ] + }, + { + "id": 16412, + "cuisine": "chinese", + "ingredients": [ + "sweet onion", + "fresh orange juice", + "red bell pepper", + "fresh basil", + "ground black pepper", + "jelly", + "large shrimp", + "olive oil", + "salt", + "fresh lime juice", + "water", + "hoisin sauce", + "corn starch" + ] + }, + { + "id": 38809, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "fat free less sodium chicken broth", + "leeks", + "fontina cheese", + "ground black pepper", + "rigatoni", + "savoy cabbage", + "olive oil", + "sweet italian sausage" + ] + }, + { + "id": 30774, + "cuisine": "italian", + "ingredients": [ + "capers", + "ground black pepper", + "flat leaf parsley", + "olive oil", + "butter", + "sage leaves", + "prosciutto", + "all-purpose flour", + "marsala wine", + "chicken cutlets" + ] + }, + { + "id": 36949, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "rice wine", + "salt", + "water", + "sirloin steak", + "chopped garlic", + "black pepper", + "sesame oil", + "scallions", + "sugar", + "sesame seeds", + "ginger" + ] + }, + { + "id": 8166, + "cuisine": "italian", + "ingredients": [ + "green onions", + "garlic", + "dried basil", + "ricotta cheese", + "plum tomatoes", + "dough", + "boneless skinless chicken breasts", + "chopped cilantro fresh", + "grated parmesan cheese", + "butter" + ] + }, + { + "id": 17963, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic cloves", + "cilantro", + "plum tomatoes", + "jalapeno chilies", + "onions", + "salt" + ] + }, + { + "id": 15320, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "salt", + "wonton wrappers", + "scallions", + "chives", + "rice vinegar", + "soy sauce", + "ground pork" + ] + }, + { + "id": 320, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "tomato ketchup", + "onions", + "green bell pepper", + "garlic", + "thyme", + "pepper sauce", + "cooking oil", + "scallions", + "chicken", + "sugar", + "salt", + "hot water" + ] + }, + { + "id": 32647, + "cuisine": "italian", + "ingredients": [ + "white wine", + "sea salt", + "salmon fillets", + "garlic powder", + "tomatoes", + "white onion", + "extra-virgin olive oil", + "black pepper", + "onion powder" + ] + }, + { + "id": 29509, + "cuisine": "japanese", + "ingredients": [ + "spinach", + "soy sauce", + "mirin", + "cayenne pepper", + "cumin", + "sake", + "water", + "garlic", + "white sesame seeds", + "brown sugar", + "mixed spice", + "sesame oil", + "ground coriander", + "ground ginger", + "salmon fillets", + "honey", + "broccoli", + "noodles" + ] + }, + { + "id": 19700, + "cuisine": "italian", + "ingredients": [ + "almond paste", + "pinenuts", + "white sugar", + "egg whites" + ] + }, + { + "id": 22863, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "sweetened coconut flakes", + "garlic cloves", + "fresh tarragon", + "fresh lime juice", + "buttermilk", + "freshly ground pepper" + ] + }, + { + "id": 17990, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "green onions", + "all-purpose flour", + "water", + "fine sea salt", + "sesame oil" + ] + }, + { + "id": 3419, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "chopped cilantro fresh", + "refried beans", + "diced tomatoes", + "tomato sauce", + "vegetable oil", + "ground cumin", + "flour tortillas", + "cheese" + ] + }, + { + "id": 49156, + "cuisine": "japanese", + "ingredients": [ + "mitsuba", + "mirin", + "japanese rice", + "light soy sauce", + "matsutake mushrooms", + "kosher salt", + "shimeji mushrooms", + "sake", + "dashi" + ] + }, + { + "id": 16425, + "cuisine": "cajun_creole", + "ingredients": [ + "crawfish", + "Tabasco Pepper Sauce", + "yellow onion", + "eggs", + "evaporated milk", + "garlic", + "seasoning salt", + "butter", + "red bell pepper", + "green bell pepper", + "flour", + "salt" + ] + }, + { + "id": 33529, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "fresh ginger", + "worcestershire sauce", + "oyster sauce", + "sugar", + "cooking oil", + "garlic", + "red bell pepper", + "chinese rice wine", + "ground black pepper", + "beef tenderloin", + "corn starch", + "soy sauce", + "sesame oil", + "salt", + "onions" + ] + }, + { + "id": 3138, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "onions", + "crushed tomatoes", + "salt", + "bacon", + "arugula", + "ground black pepper", + "cavatelli" + ] + }, + { + "id": 25966, + "cuisine": "french", + "ingredients": [ + "shallots", + "salt", + "brandy", + "dry red wine", + "fat", + "Belgian endive", + "red wine vinegar", + "tarragon leaves", + "mushrooms", + "whipping cream" + ] + }, + { + "id": 30503, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "dried thyme", + "red wine vinegar", + "mayonaise", + "prepared horseradish", + "creole mustard", + "sweet onion", + "ground red pepper", + "red potato", + "garlic powder", + "salt" + ] + }, + { + "id": 41337, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "garlic", + "gram flour", + "water", + "chili powder", + "green chilies", + "coriander", + "fenugreek leaves", + "chicken thigh fillets", + "salt", + "rapeseed oil", + "fresh ginger", + "lemon", + "cumin seed" + ] + }, + { + "id": 12414, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "white rice", + "whole peeled tomatoes", + "okra", + "bay leaves", + "chicken", + "black pepper", + "salt" + ] + }, + { + "id": 44651, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "large egg whites", + "sliced carrots", + "chopped onion", + "cinnamon sticks", + "clove", + "chipotle chile", + "cooking spray", + "chopped celery", + "fresh onion", + "green cabbage", + "fat free less sodium chicken broth", + "chili powder", + "salt", + "garlic cloves", + "ground round", + "coriander seeds", + "baking potatoes", + "cumin seed", + "long grain white rice" + ] + }, + { + "id": 29273, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "Italian turkey sausage", + "dry lasagna", + "diced tomatoes", + "fat skimmed chicken broth", + "dried oregano", + "( oz.) tomato sauce", + "reduced fat mozzarella", + "onions", + "garlic", + "chopped parsley" + ] + }, + { + "id": 16746, + "cuisine": "french", + "ingredients": [ + "red potato", + "dried thyme", + "chicken breast halves", + "oil", + "black pepper", + "italian style stewed tomatoes", + "anchovy paste", + "green beans", + "sugar", + "olive oil", + "shallots", + "garlic cloves", + "fat free less sodium chicken broth", + "dry white wine", + "all-purpose flour" + ] + }, + { + "id": 36079, + "cuisine": "japanese", + "ingredients": [ + "peeled fresh ginger", + "white rice", + "chopped cilantro fresh", + "yellow miso", + "sea bass fillets", + "sauce", + "brown sugar", + "rice wine", + "tamari soy sauce", + "sake", + "vegetable oil", + "rice vinegar" + ] + }, + { + "id": 17434, + "cuisine": "indian", + "ingredients": [ + "ice cubes", + "strawberries", + "fat free milk", + "nonfat yogurt", + "honey", + "ground cardamom" + ] + }, + { + "id": 18215, + "cuisine": "chinese", + "ingredients": [ + "crumbled blue cheese", + "cream cheese", + "wonton wrappers", + "shrimp", + "chives", + "peanut oil", + "hot sauce" + ] + }, + { + "id": 47573, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium soy sauce", + "sesame oil", + "oyster sauce", + "olive oil", + "broccoli florets", + "garlic", + "medium shrimp", + "brown sugar", + "Sriracha", + "ginger", + "corn starch", + "sesame seeds", + "green onions", + "rice vinegar" + ] + }, + { + "id": 4755, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "baking soda", + "salt", + "unsalted butter", + "all-purpose flour", + "milk", + "buttermilk" + ] + }, + { + "id": 47273, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "peach schnapps", + "salt", + "large eggs", + "heavy cream", + "unsalted butter", + "buttermilk", + "all-purpose flour", + "sugar", + "baking powder", + "vanilla extract" + ] + }, + { + "id": 44595, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "Biryani Masala", + "salt", + "brown cardamom", + "lemon juice", + "peppercorns", + "red chili powder", + "milk", + "yoghurt", + "rice", + "oil", + "bay leaf", + "saffron", + "clove", + "water", + "mint leaves", + "cilantro leaves", + "green chilies", + "cinnamon sticks", + "shahi jeera", + "garlic paste", + "mace", + "sunflower oil", + "green cardamom", + "ground cardamom", + "onions", + "chicken" + ] + }, + { + "id": 3951, + "cuisine": "korean", + "ingredients": [ + "short rib", + "scallions" + ] + }, + { + "id": 75, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "potatoes", + "green chilies", + "ground turmeric", + "fennel seeds", + "coriander powder", + "ginger", + "coconut milk", + "pepper", + "chili powder", + "mustard seeds", + "masala", + "curry leaves", + "beef", + "garlic", + "onions" + ] + }, + { + "id": 24189, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "green onions", + "yellow onion", + "ground beef", + "lettuce", + "honey", + "salt", + "garlic cloves", + "pepper", + "vegetable oil", + "chili sauce", + "ground ginger", + "hoisin sauce", + "rice vinegar", + "red bell pepper" + ] + }, + { + "id": 8491, + "cuisine": "korean", + "ingredients": [ + "green onions", + "toasted sesame oil", + "sea salt", + "toasted sesame seeds", + "yellow onion", + "cucumber" + ] + }, + { + "id": 4212, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "serrano peppers", + "white onion", + "salt", + "tomatoes", + "extra-virgin olive oil", + "lime juice" + ] + }, + { + "id": 40707, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "Nutella", + "ground cloves", + "ground cardamom", + "coconut flakes", + "cinnamon", + "unsweetened coconut milk", + "bananas", + "coconut milk yogurt" + ] + }, + { + "id": 8330, + "cuisine": "chinese", + "ingredients": [ + "baby bok choy", + "pork tenderloin", + "olive oil", + "red pepper", + "Soy Vay® Hoisin Garlic Marinade & Sauce", + "ramen noodles", + "shredded carrots", + "scallions" + ] + }, + { + "id": 23263, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "chopped walnuts", + "water", + "garlic", + "anchovies", + "salt", + "linguine", + "flat leaf parsley" + ] + }, + { + "id": 39101, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "vegetable broth", + "chickpeas", + "flat leaf parsley", + "preserved lemon", + "butternut squash", + "salt", + "garlic cloves", + "eggplant", + "ras el hanout", + "freshly ground pepper", + "ground turmeric", + "sliced almonds", + "raisins", + "yellow onion", + "fresh lemon juice" + ] + }, + { + "id": 11022, + "cuisine": "italian", + "ingredients": [ + "cannellini beans", + "salt", + "garlic cloves", + "chopped celery", + "chopped onion", + "carrots", + "crushed red pepper", + "chopped fresh sage", + "fresh parsley", + "extra-virgin olive oil", + "grated lemon zest", + "fresh lemon juice" + ] + }, + { + "id": 31171, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "turkey breast cutlets", + "ground black pepper", + "arugula", + "penne", + "balsamic vinegar", + "sun-dried tomatoes", + "salt" + ] + }, + { + "id": 40298, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "crushed red pepper", + "shrimp", + "paprika", + "all-purpose flour", + "butter", + "salt", + "celery", + "white onion", + "garlic", + "fresh mushrooms" + ] + }, + { + "id": 23426, + "cuisine": "chinese", + "ingredients": [ + "garlic chives", + "duck", + "meat", + "beansprouts", + "enokitake", + "cucumber", + "eggs", + "cilantro leaves" + ] + }, + { + "id": 48799, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "parmigiano reggiano cheese", + "salt", + "fresh lemon juice", + "plum tomatoes", + "chicken stock", + "water", + "bacon slices", + "freshly ground pepper", + "red bell pepper", + "sliced green onions", + "kosher salt", + "Tabasco Pepper Sauce", + "all-purpose flour", + "fat", + "large shrimp", + "white button mushrooms", + "unsalted butter", + "cheese", + "garlic cloves", + "grits" + ] + }, + { + "id": 47529, + "cuisine": "french", + "ingredients": [ + "active dry yeast", + "light brown sugar", + "whole milk", + "kosher salt", + "all purpose unbleached flour", + "unsalted butter" + ] + }, + { + "id": 20263, + "cuisine": "southern_us", + "ingredients": [ + "sour cream", + "bisquick", + "butter" + ] + }, + { + "id": 34060, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "extra-virgin olive oil", + "peeled fresh ginger", + "rice vinegar", + "chile paste with garlic", + "cilantro leaves", + "green onions", + "japanese eggplants" + ] + }, + { + "id": 37003, + "cuisine": "italian", + "ingredients": [ + "garlic", + "olive oil", + "tomatoes", + "salt", + "basil leaves" + ] + }, + { + "id": 9092, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "chopped cilantro fresh", + "tomatoes", + "garlic cloves", + "salt", + "vidalia onion", + "fresh lime juice" + ] + }, + { + "id": 1862, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "lemon grass", + "chili powder", + "ground coriander", + "brown sugar", + "peanuts", + "boneless skinless chicken breasts", + "tamarind paste", + "ground cumin", + "fish sauce", + "lime juice", + "muscovado sugar", + "garlic", + "curry paste", + "tomato paste", + "water", + "chunky peanut butter", + "vegetable oil", + "coconut milk" + ] + }, + { + "id": 42914, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "russet potatoes", + "ground allspice", + "coconut milk", + "curry powder", + "ginger", + "carrots", + "fresh lime juice", + "kosher salt", + "scotch bonnet chile", + "scallions", + "squash", + "coconut oil", + "ground black pepper", + "garlic", + "thyme" + ] + }, + { + "id": 37429, + "cuisine": "italian", + "ingredients": [ + "water", + "sauce", + "yellow corn meal", + "cracked black pepper", + "beef tenderloin steaks", + "cooking spray", + "garlic cloves", + "parsley sprigs", + "salt" + ] + }, + { + "id": 36805, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "butter", + "sliced mushrooms", + "black pepper", + "vegetable oil", + "ham", + "grated parmesan cheese", + "vegetable broth", + "polenta", + "cooking spray", + "1% low-fat milk" + ] + }, + { + "id": 1950, + "cuisine": "italian", + "ingredients": [ + "pepper", + "extra-virgin olive oil", + "french bread", + "shredded mozzarella cheese", + "white tuna in water", + "kalamata", + "fresh lemon juice", + "finely chopped fresh parsley", + "salt" + ] + }, + { + "id": 41516, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "bread flour", + "warm water", + "salt", + "fontina", + "baby arugula", + "olive oil", + "cake yeast" + ] + }, + { + "id": 15789, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime juice", + "diced green chilies", + "salt", + "steak seasoning", + "mayonaise", + "olive oil", + "wheat", + "medium salsa", + "green cabbage", + "lime", + "red cabbage", + "taco seasoning", + "lean chuck roast", + "Tabasco Green Pepper Sauce", + "fat free greek yogurt", + "chopped cilantro fresh" + ] + }, + { + "id": 4325, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "eggs", + "butter", + "yellow corn meal", + "baking powder", + "vegetable oil cooking spray", + "salt" + ] + }, + { + "id": 17860, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "peanuts", + "sesame oil", + "oil", + "red chili peppers", + "chicken breasts", + "ginger", + "sugar", + "green onions", + "balsamic vinegar", + "corn starch", + "chicken broth", + "light soy sauce", + "szechwan peppercorns", + "garlic" + ] + }, + { + "id": 9215, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "kosher salt", + "purple onion", + "fresh dill", + "dry yeast", + "bread flour", + "cold-smoked salmon", + "warm water", + "cooking spray", + "capers", + "olive oil", + "cream cheese, soften" + ] + }, + { + "id": 24245, + "cuisine": "french", + "ingredients": [ + "light cream", + "salt", + "potatoes", + "garlic cloves", + "whole milk", + "nutmeg", + "butter" + ] + }, + { + "id": 24677, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "fresh tarragon", + "fresh lemon juice", + "reduced sodium chicken broth", + "heavy cream", + "California bay leaves", + "black pepper", + "vegetable oil", + "garlic cloves", + "shallots", + "salt", + "chicken pieces" + ] + }, + { + "id": 2239, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "skinless chicken breasts", + "spring onions", + "Chinese egg noodles", + "black bean sauce", + "garlic cloves", + "soy sauce", + "sesame oil", + "beansprouts" + ] + }, + { + "id": 44235, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "onions", + "green bell pepper", + "vegetable oil", + "shredded Monterey Jack cheese", + "bacon bits", + "boneless skinless chicken breasts", + "fajita seasoning mix", + "shredded cheddar cheese", + "red bell pepper" + ] + }, + { + "id": 42453, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper", + "cooking spray", + "fresh lemon juice", + "diced tomatoes", + "feta cheese crumbles", + "baguette", + "garlic cloves" + ] + }, + { + "id": 33710, + "cuisine": "moroccan", + "ingredients": [ + "parsnips", + "olive oil", + "low salt chicken broth", + "ground cumin", + "turnips", + "sweet potatoes & yams", + "chopped onion", + "boneless skinless chicken breast halves", + "dried currants", + "diced tomatoes", + "cinnamon sticks", + "rutabaga", + "curry powder", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 41332, + "cuisine": "irish", + "ingredients": [ + "eggs", + "salt", + "plain flour", + "milk", + "mashed potatoes", + "potatoes", + "pepper" + ] + }, + { + "id": 11685, + "cuisine": "indian", + "ingredients": [ + "tamarind pulp", + "green chilies", + "yoghurt", + "mint leaves", + "cumin seed", + "salt" + ] + }, + { + "id": 7065, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "water", + "all-purpose flour", + "corn starch", + "pineapple chunks", + "cider vinegar", + "large eggs", + "boneless pork loin", + "ketchup", + "fresh ginger", + "pineapple juice", + "sugar", + "minced garlic", + "worcestershire sauce", + "peanut oil" + ] + }, + { + "id": 33751, + "cuisine": "irish", + "ingredients": [ + "green onions", + "pepper", + "salt", + "red potato", + "butter", + "fat free milk", + "cabbage" + ] + }, + { + "id": 27217, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "flour", + "buttermilk", + "brewed coffee", + "butter", + "honey", + "baking powder", + "salt", + "ham steak", + "large eggs", + "vegetable shortening" + ] + }, + { + "id": 591, + "cuisine": "greek", + "ingredients": [ + "lemon", + "shrimp", + "hard-boiled egg", + "greek style plain yogurt", + "bibb lettuce", + "purple onion", + "chives", + "hot sauce" + ] + }, + { + "id": 4456, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "salt", + "large garlic cloves", + "meat", + "smoked paprika", + "extra-virgin olive oil" + ] + }, + { + "id": 10463, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "ground black pepper", + "wine vinegar", + "lemon juice", + "pinenuts", + "dijon mustard", + "salt", + "boneless chicken thighs", + "asparagus", + "purple onion", + "olive oil", + "garlic", + "rice" + ] + }, + { + "id": 25464, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "wild rice", + "andouille sausage", + "condensed cream of mushroom soup", + "chicken broth", + "sweet onion", + "minced garlic", + "fresh mushrooms" + ] + }, + { + "id": 43261, + "cuisine": "irish", + "ingredients": [ + "beef brisket", + "cabbage", + "black pepper", + "carrots", + "potatoes", + "water", + "celery" + ] + }, + { + "id": 23303, + "cuisine": "greek", + "ingredients": [ + "water", + "all-purpose flour", + "salt", + "baking powder", + "olive oil" + ] + }, + { + "id": 38116, + "cuisine": "thai", + "ingredients": [ + "green onions", + "ginger", + "chicken broth", + "lemon", + "chopped cilantro", + "cooked chicken", + "coconut milk", + "chili flakes", + "sea salt" + ] + }, + { + "id": 27150, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "large eggs", + "fresh parsley", + "crawfish", + "butter", + "green bell pepper", + "ground red pepper", + "onions", + "cornbread", + "ground black pepper", + "ground white pepper" + ] + }, + { + "id": 13917, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "salt", + "yoghurt", + "green chilies", + "sesame seeds", + "cilantro leaves", + "atta", + "chili powder", + "oil" + ] + }, + { + "id": 15938, + "cuisine": "southern_us", + "ingredients": [ + "lemon", + "mint", + "ice", + "black tea", + "sugar" + ] + }, + { + "id": 44646, + "cuisine": "indian", + "ingredients": [ + "clove", + "cooking spray", + "salt", + "semi-sweet chocolate morsels", + "granulated sugar", + "butter", + "cardamom pods", + "unsweetened cocoa powder", + "brown sugar", + "baking powder", + "all-purpose flour", + "allspice", + "large eggs", + "1% low-fat milk", + "cinnamon sticks" + ] + }, + { + "id": 792, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "butter", + "baking mix", + "pure vanilla extract", + "powdered sugar", + "raisins", + "melted butter", + "buttermilk", + "bisquick", + "light brown sugar", + "granulated sugar", + "heavy cream" + ] + }, + { + "id": 893, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "honey", + "arugula", + "baguette", + "ricotta cheese", + "olive oil" + ] + }, + { + "id": 25866, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "cooked chicken", + "cheese", + "black beans", + "diced tomatoes", + "vegetable oil cooking spray", + "whole wheat tortillas", + "enchilada sauce", + "corn", + "cilantro sprigs" + ] + }, + { + "id": 1992, + "cuisine": "irish", + "ingredients": [ + "melted butter", + "peppercorns", + "carrots", + "brisket", + "green cabbage", + "onions" + ] + }, + { + "id": 3653, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "whole milk", + "large eggs", + "refrigerated piecrusts", + "ground nutmeg", + "salami", + "fresh basil", + "grated parmesan cheese", + "sausages" + ] + }, + { + "id": 19063, + "cuisine": "southern_us", + "ingredients": [ + "grated parmesan cheese", + "dry bread crumbs", + "pepper", + "butter", + "onions", + "frozen chopped spinach", + "red wine vinegar", + "sour cream", + "yellow squash", + "salt" + ] + }, + { + "id": 38985, + "cuisine": "italian", + "ingredients": [ + "pepper", + "scape pesto", + "sea salt", + "asparagus", + "tomatoes", + "whole wheat spaghetti noodles" + ] + }, + { + "id": 20222, + "cuisine": "japanese", + "ingredients": [ + "vegetable broth", + "sea scallops", + "scallions", + "low sodium soy sauce", + "soba noodles", + "grated parmesan cheese", + "carrots" + ] + }, + { + "id": 27988, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "salt", + "onions", + "chili powder", + "cumin seed", + "ground cumin", + "moong dal", + "cilantro leaves", + "ground turmeric", + "tomatoes", + "lemon", + "oil" + ] + }, + { + "id": 27378, + "cuisine": "italian", + "ingredients": [ + "black peppercorns", + "truffle oil", + "garlic", + "ground black pepper", + "butter", + "pizza doughs", + "olive oil", + "confit", + "salt", + "wild garlic", + "parmigiano reggiano cheese", + "chees fresh mozzarella" + ] + }, + { + "id": 43770, + "cuisine": "italian", + "ingredients": [ + "chili pepper", + "red pepper flakes", + "garlic cloves", + "grated parmesan cheese", + "basil", + "dried oregano", + "cherry tomatoes", + "sea salt", + "spaghetti", + "black pepper", + "baby spinach", + "extra-virgin olive oil" + ] + }, + { + "id": 48529, + "cuisine": "british", + "ingredients": [ + "lemon", + "salt", + "long grain white rice", + "tumeric", + "ginger", + "curry paste", + "salmon", + "garlic", + "onions", + "spinach", + "cilantro", + "mustard seeds", + "canola oil" + ] + }, + { + "id": 46039, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "pepper jack", + "taco seasoning", + "shredded cheddar cheese", + "cream cheese", + "flour tortillas" + ] + }, + { + "id": 24725, + "cuisine": "mexican", + "ingredients": [ + "lime", + "nonfat plain greek yogurt", + "diced tomatoes", + "red bell pepper", + "ground cumin", + "green bell pepper", + "ground black pepper", + "chili powder", + "salt", + "onions", + "olive oil", + "boneless skinless chicken breasts", + "garlic", + "fresh lime juice", + "vegetable oil cooking spray", + "radishes", + "whole wheat tortillas", + "salsa", + "chopped cilantro fresh" + ] + }, + { + "id": 44327, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "flour", + "vanilla extract", + "granulated sugar", + "whole milk", + "vanilla wafers", + "bananas", + "egg yolks", + "salt", + "cream of tartar", + "egg whites", + "butter" + ] + }, + { + "id": 47761, + "cuisine": "mexican", + "ingredients": [ + "bay leaves", + "pinto beans", + "boiling water", + "olive oil", + "cumin seed", + "ancho chile pepper", + "salt", + "low salt chicken broth", + "ground black pepper", + "garlic cloves", + "onions" + ] + }, + { + "id": 4883, + "cuisine": "italian", + "ingredients": [ + "vodka", + "olive oil", + "salt", + "dried oregano", + "tomato paste", + "crushed tomatoes", + "heavy cream", + "onions", + "water", + "ground black pepper", + "dri leav thyme", + "tomato purée", + "rosemary", + "garlic", + "dried parsley" + ] + }, + { + "id": 42089, + "cuisine": "french", + "ingredients": [ + "capers", + "baking potatoes", + "flat leaf parsley", + "ground black pepper", + "salt", + "sea scallops", + "butter", + "celery root", + "cooking oil", + "lemon juice" + ] + }, + { + "id": 41694, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "curry powder", + "crushed red pepper flakes", + "salt", + "black mustard seeds", + "pork", + "cinnamon", + "garlic", + "cumin seed", + "ground turmeric", + "cooked rice", + "black-eyed peas", + "ginger", + "green chilies", + "onions", + "celery ribs", + "pepper", + "bacon", + "curry", + "scallions" + ] + }, + { + "id": 31364, + "cuisine": "french", + "ingredients": [ + "hazelnuts", + "shallots", + "freshly ground pepper", + "unsalted butter", + "salt", + "fresh thyme", + "chanterelle", + "minced garlic", + "balsamic vinegar" + ] + }, + { + "id": 10932, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "garlic", + "dry sherry", + "onions", + "french bread", + "salt", + "whole wheat flour", + "vegetable broth" + ] + }, + { + "id": 33153, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "tequila", + "lemon", + "fresh pineapple", + "lime", + "chopped cilantro fresh", + "chipotle chile", + "salt" + ] + }, + { + "id": 25589, + "cuisine": "italian", + "ingredients": [ + "lower sodium chicken broth", + "sauvignon blanc", + "boneless skinless chicken breast halves", + "ground black pepper", + "Meyer lemon juice", + "kosher salt", + "all-purpose flour", + "capers", + "unsalted butter", + "flat leaf parsley" + ] + }, + { + "id": 39569, + "cuisine": "indian", + "ingredients": [ + "clove", + "water", + "chili powder", + "salt", + "cardamom", + "cashew nuts", + "tomatoes", + "coriander powder", + "poppy seeds", + "curds", + "ghee", + "ground turmeric", + "pepper", + "fenugreek", + "garlic", + "oil", + "onions", + "fish", + "mustard", + "coconut", + "cinnamon", + "green chilies", + "lemon juice", + "basmati rice" + ] + }, + { + "id": 24710, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dry white wine", + "chicken broth", + "freshly grated parmesan", + "red bell pepper", + "arborio rice", + "artichoke hearts", + "fresh parsley leaves", + "white pepper", + "prosciutto", + "onions" + ] + }, + { + "id": 18293, + "cuisine": "italian", + "ingredients": [ + "stewed tomatoes", + "garlic salt", + "ground black pepper", + "ground beef", + "pasta", + "garlic", + "white sugar", + "beef stock cubes", + "onions" + ] + }, + { + "id": 3229, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "brown sugar", + "raisins", + "fresh parsley", + "chicken legs", + "curry powder", + "salt", + "tomato paste", + "pepper", + "garlic", + "onions", + "green bell pepper", + "olive oil", + "bay leaf" + ] + }, + { + "id": 11531, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "butter", + "coconut milk", + "curry powder", + "all-purpose flour", + "onions", + "minced garlic", + "red pepper", + "celery", + "peanuts", + "creamy peanut butter" + ] + }, + { + "id": 48758, + "cuisine": "chinese", + "ingredients": [ + "peeled fresh ginger", + "green beans", + "low sodium soy sauce", + "crushed red pepper", + "canola oil", + "shallots", + "chinese black vinegar", + "minced garlic", + "salt" + ] + }, + { + "id": 29564, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "cayenne pepper", + "minced pork", + "asian eggplants", + "shallots", + "chili bean sauce", + "oyster sauce", + "chicken stock", + "Shaoxing wine", + "garlic", + "oil", + "sugar", + "sesame oil", + "salt", + "corn starch" + ] + }, + { + "id": 31272, + "cuisine": "italian", + "ingredients": [ + "biscuits", + "marsala wine", + "ice cream", + "kahlúa", + "instant espresso powder", + "hot water", + "unflavored gelatin", + "large egg yolks", + "whipping cream", + "sugar", + "mascarpone", + "unsweetened cocoa powder" + ] + }, + { + "id": 6594, + "cuisine": "italian", + "ingredients": [ + "fresh marjoram", + "olive oil", + "ricotta cheese", + "garlic cloves", + "spaghetti", + "eggs", + "bread crumb fresh", + "dry white wine", + "yellow onion", + "bay leaf", + "chicken broth", + "ground cloves", + "parmigiano reggiano cheese", + "grated nutmeg", + "juice", + "plum tomatoes", + "sausage casings", + "milk", + "shallots", + "freshly ground pepper", + "ground beef" + ] + }, + { + "id": 30966, + "cuisine": "mexican", + "ingredients": [ + "pie dough", + "olive oil", + "golden raisins", + "pimento stuffed olives", + "jalapeno chilies", + "chopped onion", + "fresh lime juice", + "ground cinnamon", + "chopped green bell pepper", + "recipe crumbles", + "garlic cloves", + "sliced almonds", + "cooking spray", + "ground allspice", + "ground cumin" + ] + }, + { + "id": 17015, + "cuisine": "mexican", + "ingredients": [ + "salt", + "cold water", + "pork shoulder butt" + ] + }, + { + "id": 24519, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "ground black pepper", + "asiago", + "water", + "dry white wine", + "chanterelle", + "fat free less sodium chicken broth", + "finely chopped onion", + "salt", + "arborio rice", + "corn kernels", + "butter", + "garlic cloves" + ] + }, + { + "id": 24676, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "garlic", + "teriyaki sauce", + "chicken broth", + "diced chicken" + ] + }, + { + "id": 48222, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "salt and ground black pepper", + "onions", + "olive oil", + "squash", + "potatoes", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 32274, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "all-purpose flour", + "cheddar cheese", + "baking powder", + "unsalted butter", + "kosher salt", + "buttermilk" + ] + }, + { + "id": 43724, + "cuisine": "spanish", + "ingredients": [ + "watermelon", + "ginger ale", + "fresh raspberries", + "strawberries", + "white wine", + "honeydew" + ] + }, + { + "id": 26132, + "cuisine": "indian", + "ingredients": [ + "white wine vinegar", + "onions", + "diced tomatoes", + "curry paste", + "olive oil", + "ground cardamom", + "chopped cilantro fresh", + "peeled fresh ginger", + "cut up chicken", + "ground cumin" + ] + }, + { + "id": 170, + "cuisine": "italian", + "ingredients": [ + "dijon mustard", + "large garlic cloves", + "orecchiette", + "olive oil", + "fresh shiitake mushrooms", + "low salt chicken broth", + "grated parmesan cheese", + "peas", + "radicchio", + "red wine vinegar", + "white mushrooms" + ] + }, + { + "id": 41458, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "tortillas", + "red", + "tomatoes", + "chili", + "sea salt", + "onions", + "black pepper", + "bay leaves", + "garlic", + "eggs", + "olive oil", + "diced tomatoes" + ] + }, + { + "id": 36656, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "olive oil", + "okra", + "salt", + "brown mustard seeds", + "asafoetida powder" + ] + }, + { + "id": 30375, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "dry white wine", + "fresh lemon juice", + "ground black pepper", + "diced tomatoes", + "olive oil", + "whole wheat spaghetti", + "fresh parsley", + "clams", + "minced onion", + "salt" + ] + }, + { + "id": 25204, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "corn starch", + "granulated sugar", + "all-purpose flour", + "chicken", + "baking powder", + "cayenne pepper", + "cold water", + "paprika", + "peanut oil" + ] + }, + { + "id": 9454, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "vegetable broth", + "fresh corn", + "whole wheat tortillas", + "whole kernel corn, drain", + "brown rice", + "salsa", + "fresh tomatoes", + "diced tomatoes", + "taco seasoning" + ] + }, + { + "id": 41159, + "cuisine": "indian", + "ingredients": [ + "asafoetida", + "garam masala", + "cumin seed", + "amchur", + "chili powder", + "lemon juice", + "cauliflower", + "fresh ginger", + "salt", + "tumeric", + "coriander powder", + "oil" + ] + }, + { + "id": 15463, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "chicken stock", + "egg noodles", + "sage leaves", + "unsalted butter", + "garlic cloves", + "rosemary", + "grated parmesan cheese" + ] + }, + { + "id": 26492, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "dry red wine", + "orange", + "cinnamon sticks" + ] + }, + { + "id": 42560, + "cuisine": "french", + "ingredients": [ + "minced garlic", + "leeks", + "unsalted butter", + "flat leaf parsley", + "sea scallops", + "canned snails", + "chopped fresh chives" + ] + }, + { + "id": 4010, + "cuisine": "southern_us", + "ingredients": [ + "shallots", + "red bell pepper", + "green onions", + "whipping cream", + "bourbon whiskey", + "garlic cloves", + "corn kernels", + "butter" + ] + }, + { + "id": 4291, + "cuisine": "italian", + "ingredients": [ + "superfine sugar", + "Amaretti Cookies", + "buttermilk", + "lemon zest", + "grape juice", + "unflavored gelatin", + "heavy cream" + ] + }, + { + "id": 24999, + "cuisine": "korean", + "ingredients": [ + "peperoncini", + "soy sauce", + "carpaccio", + "soybean sprouts", + "garlic cloves", + "brown sugar", + "zucchini", + "salt", + "rice", + "eggs", + "riso", + "crema", + "Gochujang base", + "carrots", + "fresh spinach", + "mushrooms", + "salsa", + "oil" + ] + }, + { + "id": 16915, + "cuisine": "italian", + "ingredients": [ + "dried oregano", + "crushed garlic", + "dried basil", + "butter" + ] + }, + { + "id": 41913, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cherry tomatoes", + "salt", + "chipotle chile powder", + "romaine lettuce", + "sea salt", + "fresh lime juice", + "ground cumin", + "green chile", + "olive oil", + "ground turkey", + "sliced green onions", + "minced garlic", + "cilantro", + "chopped cilantro" + ] + }, + { + "id": 30934, + "cuisine": "russian", + "ingredients": [ + "all-purpose flour", + "unsalted butter", + "large eggs", + "water", + "dill" + ] + }, + { + "id": 19260, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "yoghurt", + "paprika", + "cayenne pepper", + "fresh ginger", + "butter", + "garlic", + "ground cumin", + "fresh cilantro", + "boneless skinless chicken breasts", + "vanilla", + "lemon juice", + "ground cinnamon", + "ground black pepper", + "heavy cream", + "salt" + ] + }, + { + "id": 37789, + "cuisine": "italian", + "ingredients": [ + "bittersweet chocolate", + "large egg yolks", + "whole milk", + "sugar", + "unsweetened cocoa powder" + ] + }, + { + "id": 34410, + "cuisine": "italian", + "ingredients": [ + "Pillsbury™ Refrigerated Crescent Dinner Rolls", + "shredded mozzarella cheese", + "tomato sauce", + "butter", + "lean ground beef", + "sour cream", + "grated parmesan cheese", + "chopped onion", + "lean ground beef", + "sour cream", + "grated parmesan cheese", + "chopped onion", + "refrigerated crescent rolls", + "shredded mozzarella cheese", + "pasta sauce", + "butter" + ] + }, + { + "id": 3576, + "cuisine": "southern_us", + "ingredients": [ + "yellow squash", + "basil leaves", + "garlic cloves", + "onions", + "water", + "bay leaves", + "salt", + "thyme sprigs", + "black pepper", + "fresh parmesan cheese", + "yellow bell pepper", + "green beans", + "tomatoes", + "olive oil", + "sliced carrots", + "small red potato" + ] + }, + { + "id": 27831, + "cuisine": "southern_us", + "ingredients": [ + "sea salt", + "water", + "apple juice" + ] + }, + { + "id": 17055, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "lime", + "red cabbage", + "yellow onion", + "pork shoulder", + "pepper", + "white hominy", + "cilantro", + "garlic cloves", + "white onion", + "olive oil", + "bay leaves", + "whole chicken", + "oregano", + "chicken stock", + "water", + "radishes", + "salt", + "corn tortillas" + ] + }, + { + "id": 34218, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "grated parmesan cheese", + "shredded mozzarella cheese", + "kale", + "extra-virgin olive oil", + "sunflower seeds", + "crushed red pepper flakes", + "garlic cloves", + "granulated sugar", + "pizza doughs" + ] + }, + { + "id": 22543, + "cuisine": "italian", + "ingredients": [ + "milk", + "sliced mushrooms", + "butter", + "chopped green bell pepper", + "red bell pepper", + "condensed cream of chicken soup", + "chopped onion" + ] + }, + { + "id": 5338, + "cuisine": "indian", + "ingredients": [ + "clove", + "ground black pepper", + "salt", + "carrots", + "ground turmeric", + "water", + "fresh green bean", + "cayenne pepper", + "onions", + "roasted cashews", + "corn oil", + "broccoli", + "red bell pepper", + "corn kernels", + "garlic", + "long-grain rice", + "chopped cilantro fresh" + ] + }, + { + "id": 12168, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "garlic", + "ground black pepper", + "fresh oregano", + "olive oil", + "salt", + "sirloin steak", + "dried oregano" + ] + }, + { + "id": 45455, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "buttermilk", + "cake flour", + "eggs", + "baking powder", + "vanilla extract", + "cream cheese", + "white vinegar", + "baking soda", + "red food coloring", + "salt", + "powdered sugar", + "butter", + "Dutch-processed cocoa powder" + ] + }, + { + "id": 29397, + "cuisine": "southern_us", + "ingredients": [ + "lemon slices", + "lemon juice", + "mint sprigs", + "apple juice", + "pineapple juice", + "apples", + "orange juice" + ] + }, + { + "id": 29774, + "cuisine": "southern_us", + "ingredients": [ + "tomato paste", + "fennel bulb", + "dry sherry", + "yellow onion", + "fresh parsley", + "olive oil", + "butter", + "salt", + "garlic cloves", + "curry powder", + "clam juice", + "fresh tarragon", + "crabmeat", + "ground turmeric", + "celery ribs", + "ground black pepper", + "heavy cream", + "all-purpose flour", + "carrots" + ] + }, + { + "id": 31778, + "cuisine": "italian", + "ingredients": [ + "corn tortilla chips", + "hot Italian sausages", + "red pepper flakes", + "sliced green onions", + "mozzarella cheese", + "ripe olives", + "tomatoes", + "cheese sauce" + ] + }, + { + "id": 4002, + "cuisine": "irish", + "ingredients": [ + "sugar", + "leeks", + "salt", + "pepper", + "red wine vinegar", + "corned beef", + "slaw", + "vegetable oil", + "small red potato", + "garlic powder", + "spicy brown mustard" + ] + }, + { + "id": 23802, + "cuisine": "mexican", + "ingredients": [ + "tomatillo salsa", + "jalapeno chilies", + "cilantro", + "oil", + "lime juice", + "tomatillos", + "garlic", + "black pepper", + "poblano peppers", + "turkey", + "salt", + "water", + "queso fresco", + "cheese", + "corn tortillas" + ] + }, + { + "id": 24398, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "vanilla beans", + "pineapple", + "firmly packed light brown sugar", + "frozen pastry puff sheets", + "vanilla ice cream", + "unsalted butter", + "salt", + "sugar", + "dark rum" + ] + }, + { + "id": 45508, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "cayenne pepper", + "ground beef", + "eggs", + "dry red wine", + "carrots", + "lasagna noodles, cooked and drained", + "shredded mozzarella cheese", + "onions", + "pasta sauce", + "garlic", + "sliced mushrooms" + ] + }, + { + "id": 369, + "cuisine": "filipino", + "ingredients": [ + "tomato sauce", + "thai chile", + "shrimp", + "Shaoxing wine", + "salt", + "panko breadcrumbs", + "pepper", + "garlic", + "red bell pepper", + "green bell pepper", + "butter", + "oil" + ] + }, + { + "id": 3834, + "cuisine": "vietnamese", + "ingredients": [ + "peanuts", + "all-purpose flour", + "low sodium soy sauce", + "vietnamese fish sauce", + "freshly ground pepper", + "spring onions", + "root vegetables", + "eggs", + "rice vinegar", + "canola oil" + ] + }, + { + "id": 46708, + "cuisine": "mexican", + "ingredients": [ + "feta cheese", + "tomatillos", + "onions", + "jumbo shrimp", + "onion powder", + "garlic cloves", + "chiles", + "queso fresco", + "chopped cilantro", + "garlic powder", + "extra-virgin olive oil" + ] + }, + { + "id": 33025, + "cuisine": "french", + "ingredients": [ + "salt", + "shallots", + "red wine vinegar", + "black peppercorns" + ] + }, + { + "id": 33098, + "cuisine": "southern_us", + "ingredients": [ + "lettuce leaves", + "corn flour", + "shucked oysters", + "all-purpose flour", + "vegetable oil", + "Italian bread", + "dijon mustard", + "tartar sauce" + ] + }, + { + "id": 9414, + "cuisine": "french", + "ingredients": [ + "light brown sugar", + "ground cloves", + "salt", + "ground ginger", + "ground black pepper", + "cream of tartar", + "large egg whites", + "ground cinnamon", + "vanilla extract" + ] + }, + { + "id": 20740, + "cuisine": "irish", + "ingredients": [ + "firmly packed brown sugar", + "baking powder", + "all-purpose flour", + "baking soda", + "salt", + "pitted date", + "1% low-fat milk", + "margarine", + "cooking spray", + "maple syrup" + ] + }, + { + "id": 38414, + "cuisine": "indian", + "ingredients": [ + "1% low-fat milk", + "sugar", + "ground cardamom", + "greek style plain yogurt", + "pistachios", + "mango" + ] + }, + { + "id": 22924, + "cuisine": "chinese", + "ingredients": [ + "spring onions", + "basmati rice", + "Japanese soy sauce", + "oil", + "salt", + "large eggs", + "onions" + ] + }, + { + "id": 9094, + "cuisine": "greek", + "ingredients": [ + "fresh spinach", + "leeks", + "eggs", + "olive oil", + "salt", + "pastry", + "parsley", + "mint", + "feta cheese", + "dill" + ] + }, + { + "id": 37445, + "cuisine": "french", + "ingredients": [ + "Madeira", + "chopped fresh thyme", + "whipping cream", + "filet mignon steaks", + "canned beef broth", + "garlic cloves", + "olive oil", + "butter", + "shallots", + "button mushrooms" + ] + }, + { + "id": 42532, + "cuisine": "southern_us", + "ingredients": [ + "andouille sausage", + "bay leaves", + "peanut oil", + "chopped garlic", + "dried thyme", + "crushed red pepper", + "chicken livers", + "chicken broth", + "ground black pepper", + "yellow onion", + "basmati rice", + "kosher salt", + "dry white wine", + "okra" + ] + }, + { + "id": 44394, + "cuisine": "moroccan", + "ingredients": [ + "lemon", + "kosher salt", + "olive oil", + "fresh lemon juice" + ] + }, + { + "id": 15169, + "cuisine": "mexican", + "ingredients": [ + "minced onion", + "tequila", + "minced garlic", + "Mexican beer", + "chopped cilantro fresh", + "jalapeno chilies", + "fresh lime juice", + "ground black pepper", + "oil", + "ground cumin" + ] + }, + { + "id": 46061, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "peas", + "puff pastry", + "eggs", + "vegetable oil", + "freshly ground pepper", + "caraway seeds", + "fresh cilantro", + "yellow onion", + "water", + "baking potatoes", + "carrots" + ] + }, + { + "id": 31731, + "cuisine": "italian", + "ingredients": [ + "great northern beans", + "pasta shell small", + "diced tomatoes", + "red bell pepper", + "pepper", + "potatoes", + "salt", + "dried oregano", + "dried basil", + "red wine", + "beef broth", + "sausage links", + "zucchini", + "chopped celery", + "onions" + ] + }, + { + "id": 3925, + "cuisine": "mexican", + "ingredients": [ + "pickle relish", + "chipotle chile", + "chopped onion", + "mayonaise" + ] + }, + { + "id": 28423, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "cayenne pepper", + "lime zest", + "corn", + "fresh lime juice", + "kosher salt", + "sour cream", + "mayonaise", + "chili powder" + ] + }, + { + "id": 8834, + "cuisine": "mexican", + "ingredients": [ + "water", + "garlic", + "ground cumin", + "tomatoes", + "epazote", + "beer", + "guajillo chile powder", + "salt", + "pork", + "dried pinto beans", + "onions" + ] + }, + { + "id": 4368, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "lean ground beef", + "onions", + "water", + "pimentos", + "ranch dip mix", + "green chile", + "cream of chicken soup", + "cheese", + "evaporated milk", + "colby jack cheese", + "corn tortillas" + ] + }, + { + "id": 25662, + "cuisine": "italian", + "ingredients": [ + "granulated sugar", + "extra-virgin olive oil", + "grated lemon zest", + "large egg whites", + "cooking spray", + "salt", + "fat free milk", + "baking powder", + "all-purpose flour", + "powdered sugar", + "large eggs", + "non-fat sour cream", + "fresh lemon juice" + ] + }, + { + "id": 5902, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "yellow mustard", + "cornmeal", + "kosher salt", + "spices", + "okra", + "yellow corn meal", + "baking powder", + "all-purpose flour", + "vegetables", + "SYD Hot Rub", + "canola oil" + ] + }, + { + "id": 7325, + "cuisine": "indian", + "ingredients": [ + "butter", + "curry powder", + "breast", + "mustard", + "salt", + "honey" + ] + }, + { + "id": 24996, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "onions", + "pepper", + "salt", + "black-eyed peas", + "garlic cloves", + "white wine vinegar" + ] + }, + { + "id": 24066, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "serrano chile", + "garlic", + "olive oil", + "fresh cilantro" + ] + }, + { + "id": 48570, + "cuisine": "japanese", + "ingredients": [ + "green cabbage", + "large eggs", + "garlic cloves", + "sugar", + "green onions", + "beansprouts", + "udon", + "vegetable oil", + "center cut loin pork chop", + "low sodium soy sauce", + "cooking spray", + "oyster sauce" + ] + }, + { + "id": 31921, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "jalapeno chilies", + "garlic", + "onions", + "ground black pepper", + "loin pork roast", + "oil", + "ground cumin", + "fresh cilantro", + "chili powder", + "salt", + "dried oregano", + "shredded cheddar cheese", + "tortillas", + "tomato salsa", + "sour cream" + ] + }, + { + "id": 47049, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large egg yolks", + "vanilla", + "water", + "golden raisins", + "all-purpose flour", + "sliced almonds", + "large eggs", + "salt", + "grated orange peel", + "active dry yeast", + "butter", + "grated lemon peel" + ] + }, + { + "id": 31805, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "cream", + "yoghurt", + "all-purpose flour", + "lemon juice", + "baby potatoes", + "red chili powder", + "garam masala", + "cinnamon", + "green chilies", + "cashew nuts", + "black peppercorns", + "honey", + "vegetable oil", + "brown cardamom", + "onions", + "clove", + "garlic paste", + "coriander powder", + "salt", + "mustard oil", + "ground turmeric" + ] + }, + { + "id": 5483, + "cuisine": "irish", + "ingredients": [ + "ice cubes", + "cinnamon", + "irish cream liqueur", + "cold milk", + "rye whiskey" + ] + }, + { + "id": 41383, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "butter", + "zucchini", + "red bell pepper", + "corn", + "salsa", + "green onions", + "chopped cilantro fresh" + ] + }, + { + "id": 36529, + "cuisine": "indian", + "ingredients": [ + "yellow mustard seeds", + "garam masala", + "yellow split peas", + "ghee", + "lime juice", + "sliced leeks", + "cumin seed", + "ground turmeric", + "minced garlic", + "roma tomatoes", + "serrano", + "chopped cilantro fresh", + "minced ginger", + "vegetable broth", + "coconut milk" + ] + }, + { + "id": 31359, + "cuisine": "brazilian", + "ingredients": [ + "cachaca", + "lime", + "ice", + "granulated sugar" + ] + }, + { + "id": 9740, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "ginger", + "jalapeno chilies", + "juice", + "peaches", + "salt", + "sugar", + "shallots", + "chopped fresh mint" + ] + }, + { + "id": 46848, + "cuisine": "italian", + "ingredients": [ + "boneless chop pork", + "panko", + "salt", + "pesto", + "olive oil", + "crushed red pepper", + "brown sugar", + "sweet onion", + "balsamic vinegar", + "hot water", + "collard greens", + "pinenuts", + "golden raisins", + "garlic cloves" + ] + }, + { + "id": 29726, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "buttermilk", + "sugar", + "strawberries", + "self rising flour", + "shortening", + "whipped cream" + ] + }, + { + "id": 11998, + "cuisine": "filipino", + "ingredients": [ + "low sodium soy sauce", + "green onions", + "yellow onion", + "large eggs", + "vegetable oil", + "ground black pepper", + "rice noodles", + "loin pork chops", + "green cabbage", + "cooking spray", + "paprika" + ] + }, + { + "id": 38491, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "diced tomatoes", + "lemon juice", + "ground black pepper", + "garlic", + "white sugar", + "olive oil", + "crushed red pepper flakes", + "fresh parsley", + "tomato paste", + "red wine", + "chopped onion", + "italian seasoning" + ] + }, + { + "id": 13231, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "fresh ginger", + "scallions", + "coconut sugar", + "water", + "garlic", + "salmon", + "red pepper flakes", + "fresh lime juice", + "fish sauce", + "olive oil", + "tamarind paste" + ] + }, + { + "id": 31144, + "cuisine": "french", + "ingredients": [ + "sugar", + "vanilla extract", + "whole milk", + "large egg yolks", + "bittersweet chocolate", + "heavy cream" + ] + }, + { + "id": 27461, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "black pepper", + "sauce", + "plum tomatoes", + "chipotle chile", + "salt", + "chopped cilantro fresh", + "olive oil", + "fresh lime juice" + ] + }, + { + "id": 44735, + "cuisine": "southern_us", + "ingredients": [ + "green leaf lettuce", + "self-rising cornmeal", + "turkey bacon", + "hot sauce", + "vegetable oil cooking spray", + "green tomatoes", + "white sandwich bread", + "egg whites", + "reduced fat mozzarella" + ] + }, + { + "id": 20978, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "garlic cloves", + "onions", + "red snapper", + "vegetable oil", + "adobo sauce", + "chicken stock", + "lime wedges", + "corn tortillas", + "dried oregano", + "tomatoes", + "salt", + "medium shrimp" + ] + }, + { + "id": 31523, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "chicken broth", + "freshly grated parmesan", + "water", + "finely chopped onion", + "arborio rice", + "sun-dried tomatoes", + "fresh parsley leaves" + ] + }, + { + "id": 20824, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "olive oil", + "mayonaise", + "freshly ground pepper" + ] + }, + { + "id": 23131, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "bbq sauce", + "meat bones", + "boneless country pork ribs", + "onions", + "bacon grease" + ] + }, + { + "id": 2178, + "cuisine": "greek", + "ingredients": [ + "tomato paste", + "olive oil", + "garlic", + "white sugar", + "white onion", + "red wine vinegar", + "cinnamon sticks", + "pickling spices", + "chuck roast", + "salt", + "dried rosemary", + "pepper", + "red wine", + "bay leaf" + ] + }, + { + "id": 44012, + "cuisine": "italian", + "ingredients": [ + "rocket leaves", + "garlic cloves", + "olive oil", + "bucatini", + "bread crumbs", + "shrimp", + "red pepper flakes", + "fresh parsley" + ] + }, + { + "id": 10144, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "lime wedges", + "ham hock", + "white onion", + "radishes", + "chili powder", + "pork shoulder boston butt", + "chiles", + "white hominy", + "bay leaves", + "garlic cloves", + "cabbage", + "avocado", + "fresh cilantro", + "whole cloves", + "cumin seed", + "onions" + ] + }, + { + "id": 18636, + "cuisine": "italian", + "ingredients": [ + "plain yogurt", + "mozzarella balls", + "pesto sauce", + "mushrooms", + "garlic cloves", + "fresh basil", + "cherry tomatoes", + "pepperoni", + "mayonaise", + "red wine vinegar", + "olives" + ] + }, + { + "id": 21391, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "fresh basil leaves", + "sugar", + "crushed red pepper", + "extra-virgin olive oil", + "plum tomatoes", + "finely chopped onion", + "salt" + ] + }, + { + "id": 33901, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "frozen whip topping, thaw", + "salt", + "orange rind", + "large egg whites", + "vanilla extract", + "Grand Marnier", + "raspberries", + "semisweet chocolate", + "strawberries", + "grated orange", + "superfine sugar", + "mint sprigs", + "blueberries", + "blackberries" + ] + }, + { + "id": 46637, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "salt", + "chopped parsley", + "minced onion", + "whole wheat spaghetti", + "pinto beans", + "parmesan cheese", + "low sodium crushed tomatoes", + "garlic cloves", + "pepper", + "large eggs", + "turkey", + "whole wheat breadcrumbs" + ] + }, + { + "id": 26731, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "all-purpose flour", + "unsalted butter", + "shredded sharp cheddar cheese", + "milk", + "vegetable shortening", + "chopped fresh chives", + "salt" + ] + }, + { + "id": 21886, + "cuisine": "french", + "ingredients": [ + "dried plum", + "dry red wine", + "chopped onion", + "celery root", + "black pepper", + "beef stew meat", + "less sodium beef broth", + "vanilla beans", + "salt", + "garlic cloves", + "olive oil", + "all-purpose flour", + "thyme sprigs" + ] + }, + { + "id": 20260, + "cuisine": "jamaican", + "ingredients": [ + "green bell pepper", + "garlic", + "carrots", + "vinegar", + "allspice berries", + "onions", + "black pepper", + "salt", + "red bell pepper", + "ground ginger", + "habanero", + "oil", + "fish" + ] + }, + { + "id": 49198, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "old bay seasoning", + "cream cheese", + "chicken broth", + "shelled shrimp", + "shredded sharp cheddar cheese", + "corn grits", + "garlic powder", + "bacon", + "smoked paprika", + "pepper", + "green onions", + "salt", + "italian seasoning" + ] + }, + { + "id": 5425, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "onions", + "jalapeno chilies", + "salt", + "ground cumin", + "ground black pepper", + "garlic", + "canola oil", + "mushrooms", + "pork shoulder" + ] + }, + { + "id": 21095, + "cuisine": "chinese", + "ingredients": [ + "skim milk", + "almond extract", + "unflavored gelatin", + "dried cherry", + "cold water", + "ruby port", + "sugar", + "vegetable oil" + ] + }, + { + "id": 10027, + "cuisine": "italian", + "ingredients": [ + "eggs", + "baking powder", + "cake flour", + "confectioners sugar", + "cream of tartar", + "unsalted butter", + "vanilla extract", + "light rum", + "white sugar", + "ground cinnamon", + "semisweet chocolate", + "candied lemon peel", + "heavy whipping cream", + "cold water", + "water", + "whole milk ricotta cheese", + "salt", + "bittersweet chocolate" + ] + }, + { + "id": 42694, + "cuisine": "indian", + "ingredients": [ + "curry sauce", + "yellow onion", + "potatoes", + "wonton wrappers", + "vegetable oil", + "flour", + "peas" + ] + }, + { + "id": 14112, + "cuisine": "japanese", + "ingredients": [ + "dried coconut flakes", + "matcha green tea powder", + "grissini", + "sprinkles", + "white chocolate chips", + "vegetable oil", + "black sesame seeds", + "candy" + ] + }, + { + "id": 42382, + "cuisine": "italian", + "ingredients": [ + "dressing", + "tomatoes", + "pasta", + "aged balsamic vinegar", + "arugula" + ] + }, + { + "id": 7508, + "cuisine": "mexican", + "ingredients": [ + "chili beans", + "dried basil", + "low sodium chicken broth", + "large garlic cloves", + "ground cumin", + "crushed tomatoes", + "olive oil", + "barbecue sauce", + "ground beef", + "tomato paste", + "dried thyme", + "bay leaves", + "beer", + "sweet onion", + "jalapeno chilies", + "chili powder", + "dried oregano" + ] + }, + { + "id": 12045, + "cuisine": "southern_us", + "ingredients": [ + "reduced sodium chicken broth", + "salt", + "onions", + "green bell pepper", + "unsalted butter", + "red bell pepper", + "yellow squash", + "all-purpose flour", + "white sandwich bread", + "black pepper", + "vegetable oil", + "sour cream" + ] + }, + { + "id": 46387, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "olive oil", + "queso fresco", + "salt", + "lime", + "mushrooms", + "yellow bell pepper", + "onions", + "pepper", + "zucchini", + "cilantro", + "taco seasoning", + "romaine lettuce", + "yellow squash", + "chili powder", + "crema", + "cumin" + ] + }, + { + "id": 5460, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "stout", + "cayenne pepper", + "low salt chicken broth", + "wild mushrooms", + "dried thyme", + "vegetable oil", + "all-purpose flour", + "garlic cloves", + "fresh parsley", + "bay leaves", + "chopped celery", + "chopped onion", + "red bell pepper", + "emerils original essence", + "green onions", + "salt", + "duck", + "cooked white rice" + ] + }, + { + "id": 20515, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "poultry seasoning", + "sage", + "white bread", + "butter", + "celery", + "pepper", + "thyme", + "chicken broth", + "crumbled cornbread", + "onions" + ] + }, + { + "id": 4952, + "cuisine": "indian", + "ingredients": [ + "unsalted butter", + "nigella seeds", + "whole wheat flour", + "coarse salt" + ] + }, + { + "id": 20119, + "cuisine": "italian", + "ingredients": [ + "almond extract", + "ground cardamom", + "sugar", + "1% low-fat milk", + "unflavored gelatin", + "vanilla extract", + "nonfat greek yogurt", + "blueberries" + ] + }, + { + "id": 45840, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "refrigerated piecrusts", + "all-purpose flour", + "cranberry sauce", + "dried thyme", + "bacon slices", + "chicken", + "celery ribs", + "water", + "green peas", + "carrots", + "eggs", + "green onions", + "salt" + ] + }, + { + "id": 33372, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "pineapple", + "chips", + "fresh lime juice" + ] + }, + { + "id": 6432, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "boneless skinless chicken breasts", + "olive oil cooking spray", + "pitted kalamata olives", + "feta cheese", + "purple onion", + "plum tomatoes", + "romaine lettuce", + "honey", + "extra-virgin olive oil", + "chopped fresh mint", + "seedless cucumber", + "ground black pepper", + "fresh lemon juice" + ] + }, + { + "id": 38582, + "cuisine": "chinese", + "ingredients": [ + "honey", + "sesame oil", + "toasted sesame seeds", + "hoisin sauce", + "ground white pepper", + "ground black pepper", + "rice vinegar", + "mushroom soy sauce", + "minced garlic", + "green onions", + "butterflied leg of lamb" + ] + }, + { + "id": 32109, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "dry white wine", + "sweet paprika", + "ground black pepper", + "shallots", + "curry powder", + "boneless skinless chicken breasts", + "canola oil", + "chicken stock", + "unsalted butter", + "fresh tarragon" + ] + }, + { + "id": 37377, + "cuisine": "japanese", + "ingredients": [ + "wasabi paste", + "salt", + "extra-virgin olive oil", + "scallions", + "tamari soy sauce", + "boneless chicken skinless thigh", + "sauce" + ] + }, + { + "id": 2449, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "hot sauce", + "neutral oil", + "paprika", + "dill pickles", + "buttermilk", + "cayenne pepper", + "garlic powder", + "all-purpose flour" + ] + }, + { + "id": 47459, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "purple onion", + "queso fresco", + "eggs", + "tortilla chips" + ] + }, + { + "id": 18268, + "cuisine": "french", + "ingredients": [ + "whole allspice", + "leeks", + "carrots", + "kosher salt", + "extra-virgin olive oil", + "cinnamon sticks", + "turnips", + "coriander seeds", + "bone-in chicken breasts", + "fresh parsley", + "black peppercorns", + "low sodium chicken broth", + "freshly ground pepper", + "greens" + ] + }, + { + "id": 24975, + "cuisine": "french", + "ingredients": [ + "olive oil", + "granulated sugar", + "fine sea salt", + "large egg yolks", + "large eggs", + "all-purpose flour", + "almonds", + "yolk", + "corn starch", + "unsalted butter", + "lemon", + "confectioners sugar" + ] + }, + { + "id": 46995, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "red pepper flakes", + "beef broth", + "onions", + "rump roast", + "bay leaves", + "salt", + "celery", + "tomato paste", + "olive oil", + "garlic", + "flat leaf parsley", + "pancetta", + "dried thyme", + "red wine", + "carrots", + "dried rosemary" + ] + }, + { + "id": 46402, + "cuisine": "italian", + "ingredients": [ + "bouillon", + "water", + "mixed frozen seafood", + "diced tomatoes", + "purple onion", + "shredded mozzarella cheese", + "white sugar", + "baby spinach leaves", + "zucchini", + "butter", + "dry red wine", + "cayenne pepper", + "onions", + "italian seasoning", + "cremini mushrooms", + "olive oil", + "balsamic vinegar", + "paprika", + "salt", + "fresh parsley", + "polenta", + "celery ribs", + "pepper", + "grated parmesan cheese", + "sea salt", + "garlic", + "squid", + "garlic salt" + ] + }, + { + "id": 4182, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "breakfast sausages", + "oil", + "jack cheese", + "green enchilada sauce", + "eggs", + "large flour tortillas", + "sliced green onions", + "black beans", + "cilantro leaves" + ] + }, + { + "id": 21098, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "garam masala", + "chickpeas", + "onions", + "fresh ginger", + "raisins", + "green beans", + "peanuts", + "salt", + "red bell pepper", + "curry powder", + "vegetable oil", + "carrots", + "basmati rice" + ] + }, + { + "id": 34371, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "garlic", + "onions", + "frozen carrots", + "rice", + "tomatoes", + "salt", + "frozen peas", + "vegetable oil", + "chicken-flavored soup powder" + ] + }, + { + "id": 6866, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "vegetable stock", + "smoked paprika", + "ground turmeric", + "fresh coriander", + "potatoes", + "sweet paprika", + "soy", + "chopped tomatoes", + "sea salt", + "onions", + "curry powder", + "vegetable oil", + "garlic cloves", + "frozen peas" + ] + }, + { + "id": 15290, + "cuisine": "korean", + "ingredients": [ + "mushrooms", + "carrots", + "noodles", + "water", + "broccoli", + "beansprouts", + "tofu", + "salt", + "dangmyun", + "vegetables", + "scallions", + "onions" + ] + }, + { + "id": 6636, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "garlic", + "pinenuts", + "red pepper flakes", + "plum tomatoes", + "basil leaves", + "freshly ground pepper", + "kosher salt", + "extra-virgin olive oil" + ] + }, + { + "id": 13423, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "jalapeno chilies", + "chopped cilantro fresh", + "tomatillos", + "white onion", + "fresh lime juice" + ] + }, + { + "id": 10007, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "vegetable oil", + "onions", + "andouille sausage", + "scallions", + "green bell pepper", + "diced tomatoes", + "long grain white rice", + "water", + "garlic cloves" + ] + }, + { + "id": 15845, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "rice", + "frozen peas and carrots", + "eggs", + "green onions", + "shrimp", + "ground black pepper", + "oil", + "soy sauce", + "sesame oil", + "corn starch" + ] + }, + { + "id": 3862, + "cuisine": "italian", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "pepper", + "pepperoni", + "pizza crust", + "butter", + "milk", + "shredded mozzarella cheese" + ] + }, + { + "id": 45926, + "cuisine": "southern_us", + "ingredients": [ + "water", + "baking powder", + "jalapeno chilies", + "fine sea salt", + "large eggs", + "garlic", + "yellow corn meal", + "corn oil", + "okra" + ] + }, + { + "id": 5347, + "cuisine": "brazilian", + "ingredients": [ + "ground black pepper", + "salt", + "crushed tomatoes", + "jalapeno chilies", + "onions", + "fresh ginger", + "garlic", + "chicken", + "unsweetened coconut milk", + "cooking oil", + "chopped cilantro" + ] + }, + { + "id": 507, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "flour tortillas", + "salt", + "shrimp", + "monterey jack", + "white onion", + "red pepper", + "cayenne pepper", + "onions", + "black pepper", + "butter", + "all-purpose flour", + "sour cream", + "garlic powder", + "whipping cream", + "green pepper", + "oregano" + ] + }, + { + "id": 39090, + "cuisine": "mexican", + "ingredients": [ + "salt free southwest chipotle seasoning", + "cooking spray", + "white hominy", + "chopped cilantro fresh", + "water", + "stewed tomatoes", + "pork tenderloin" + ] + }, + { + "id": 3960, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "cornmeal", + "salt", + "vegetable oil", + "okra" + ] + }, + { + "id": 42307, + "cuisine": "spanish", + "ingredients": [ + "fat free yogurt", + "salt", + "sugar", + "dry yeast", + "bread flour", + "green olives", + "olive oil", + "cornmeal", + "warm water", + "cooking spray", + "dried rosemary" + ] + }, + { + "id": 39948, + "cuisine": "jamaican", + "ingredients": [ + "celery ribs", + "kale", + "brown rice", + "garlic cloves", + "ketchup", + "black-eyed peas", + "vegetable broth", + "tumeric", + "Tabasco Green Pepper Sauce", + "fresh thyme leaves", + "jerk seasoning", + "fresh ginger root", + "scallions" + ] + }, + { + "id": 3450, + "cuisine": "korean", + "ingredients": [ + "green onions", + "garlic", + "fish sauce", + "napa cabbage", + "onions", + "chili pepper flakes", + "salt", + "sugar", + "ginger", + "sweet rice flour" + ] + }, + { + "id": 9081, + "cuisine": "russian", + "ingredients": [ + "active dry yeast", + "coarse salt", + "sugar", + "large eggs", + "plain whole-milk yogurt", + "warm water", + "chopped fresh chives", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 23134, + "cuisine": "vietnamese", + "ingredients": [ + "lime", + "juice", + "sugar", + "crème fraîche", + "warm water", + "garlic cloves", + "fish sauce", + "thai chile" + ] + }, + { + "id": 25403, + "cuisine": "spanish", + "ingredients": [ + "bell pepper", + "sausages", + "baguette", + "dry red wine", + "sugar", + "kalamata", + "onions", + "olive oil", + "sweet paprika" + ] + }, + { + "id": 5832, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "ground cinnamon", + "whole milk", + "salt", + "buttermilk biscuits", + "cream", + "lemon", + "walnuts", + "light brown sugar", + "powdered sugar", + "butter", + "apple pie filling", + "nutmeg", + "granulated sugar", + "apples" + ] + }, + { + "id": 37755, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "spring onions", + "carrots", + "tapioca flour", + "pineapple", + "onions", + "ketchup", + "chicken breasts", + "celery", + "pineapple chunks", + "vinegar", + "green pepper" + ] + }, + { + "id": 20393, + "cuisine": "mexican", + "ingredients": [ + "water", + "jalapeno chilies", + "chili powder", + "monterey jack", + "tomato sauce", + "salt and ground black pepper", + "beefsteak tomatoes", + "soft corn tortillas", + "ground cumin", + "fresh cilantro", + "cooking spray", + "garlic cloves", + "canola oil", + "sugar", + "extra sharp white cheddar cheese", + "boneless skinless chicken breasts", + "onions" + ] + }, + { + "id": 23955, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "2% reduced-fat milk", + "enchilada sauce", + "onions", + "chopped green chilies", + "salt", + "ripe olives", + "shredded cheddar cheese", + "paprika", + "corn tortillas", + "tomatoes", + "bean dip", + "all-purpose flour", + "ground beef" + ] + }, + { + "id": 43596, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "thai chile", + "scallions", + "fish sauce", + "fresh lime juice" + ] + }, + { + "id": 10256, + "cuisine": "japanese", + "ingredients": [ + "extract", + "jello", + "hot water", + "sugar", + "corn starch", + "mochiko" + ] + }, + { + "id": 26917, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "tomato paste", + "cilantro", + "jalapeno chilies", + "tomatoes", + "chopped onion" + ] + }, + { + "id": 33727, + "cuisine": "irish", + "ingredients": [ + "oats", + "cooking spray", + "all-purpose flour", + "granulated sugar", + "butter", + "baking soda", + "baking powder", + "nectarines", + "turbinado", + "low-fat buttermilk", + "salt" + ] + }, + { + "id": 39346, + "cuisine": "chinese", + "ingredients": [ + "syrup", + "corn syrup", + "candied orange peel", + "water", + "sliced almonds", + "almond paste", + "sugar", + "large egg whites" + ] + }, + { + "id": 14702, + "cuisine": "moroccan", + "ingredients": [ + "minced garlic", + "salt", + "cinnamon sticks", + "sugar", + "flour", + "oil", + "ground cumin", + "black pepper", + "beef stew meat", + "carrots", + "tomatoes", + "water", + "chickpeas", + "orange rind" + ] + }, + { + "id": 2259, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "Sriracha", + "red wine vinegar", + "rice vinegar", + "chicken broth", + "white pepper", + "green onions", + "garlic", + "chopped cilantro", + "tofu", + "soy sauce", + "mushrooms", + "ginger", + "corn starch", + "eggs", + "lime", + "chili powder", + "salt" + ] + }, + { + "id": 28937, + "cuisine": "russian", + "ingredients": [ + "black pepper", + "vegetable oil", + "beef", + "all-purpose flour", + "sauerkraut", + "salt", + "scallion greens", + "large eggs" + ] + }, + { + "id": 29155, + "cuisine": "korean", + "ingredients": [ + "brown rice", + "pearl barley", + "water" + ] + }, + { + "id": 18772, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "sugar", + "salt", + "warm water", + "bread flour", + "active dry yeast" + ] + }, + { + "id": 15263, + "cuisine": "british", + "ingredients": [ + "bacon", + "potatoes", + "onions", + "beef gravy", + "salt", + "meat" + ] + }, + { + "id": 28993, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "fat free less sodium beef broth", + "onions", + "brown rice", + "diced celery", + "water chestnuts", + "chinese five-spice powder", + "cashew nuts", + "low sodium soy sauce", + "sirloin steak", + "red bell pepper" + ] + }, + { + "id": 13479, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "ginger", + "half & half", + "egg yolks", + "sugar", + "matcha green tea powder" + ] + }, + { + "id": 8866, + "cuisine": "french", + "ingredients": [ + "parmigiano reggiano cheese", + "purple onion", + "red bell pepper", + "eggplant", + "cooking spray", + "all-purpose flour", + "large egg whites", + "large eggs", + "salt", + "fresh parsley", + "fat free milk", + "ground red pepper", + "fresh oregano" + ] + }, + { + "id": 20020, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "poultry seasoning", + "chicken broth", + "boneless skinless chicken breasts", + "dried parsley", + "buttermilk biscuits", + "cream of chicken soup", + "onions", + "seasoning salt", + "butter" + ] + }, + { + "id": 4576, + "cuisine": "italian", + "ingredients": [ + "biscuits", + "butter", + "ground beef", + "pepper", + "chopped onion", + "dried oregano", + "tomato sauce", + "salt", + "frozen peas", + "tomato paste", + "water", + "shredded mozzarella cheese" + ] + }, + { + "id": 43688, + "cuisine": "french", + "ingredients": [ + "watercress", + "black pepper", + "white wine vinegar", + "olive oil", + "garlic cloves", + "Belgian endive", + "fine sea salt" + ] + }, + { + "id": 1728, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "all-purpose flour", + "capers", + "shallots", + "fresh parsley", + "olive oil", + "fresh lemon juice", + "black pepper", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 43868, + "cuisine": "french", + "ingredients": [ + "almond extract", + "eggs", + "ground almonds", + "butter", + "sugar", + "puff pastry" + ] + }, + { + "id": 3454, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "sourdough bread", + "kosher salt", + "garlic cloves", + "ground black pepper" + ] + }, + { + "id": 8214, + "cuisine": "mexican", + "ingredients": [ + "crushed tomatoes", + "chile pepper", + "beef broth", + "onions", + "green bell pepper", + "zucchini", + "chili pepper flakes", + "sour cream", + "tomato paste", + "taco seasoning mix", + "vegetable oil", + "ground coriander", + "dried oregano", + "shredded cheddar cheese", + "green onions", + "salsa", + "ground turkey" + ] + }, + { + "id": 46140, + "cuisine": "indian", + "ingredients": [ + "romaine lettuce", + "garam masala", + "sherry wine vinegar", + "boneless skinless chicken breast halves", + "olive oil", + "lime wedges", + "fresh lemon juice", + "plain yogurt", + "baby greens", + "mint sprigs", + "raita", + "curry powder", + "dijon mustard", + "purple onion", + "ground cumin" + ] + }, + { + "id": 46734, + "cuisine": "mexican", + "ingredients": [ + "salt and ground black pepper", + "green onions", + "minced garlic", + "asparagus", + "greek yogurt", + "lime juice", + "jalapeno chilies", + "chopped cilantro fresh", + "tomatoes", + "hot pepper sauce", + "worcestershire sauce" + ] + }, + { + "id": 5598, + "cuisine": "indian", + "ingredients": [ + "white onion", + "peeled fresh ginger", + "cayenne pepper", + "chopped cilantro fresh", + "ground cinnamon", + "sesame seeds", + "vegetable oil", + "ground coriander", + "clove", + "water", + "chili powder", + "cardamom pods", + "japanese eggplants", + "tumeric", + "bay leaves", + "vegetable broth", + "garlic cloves" + ] + }, + { + "id": 32719, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "butter", + "ground black pepper", + "spaghetti", + "pecorino romano cheese" + ] + }, + { + "id": 233, + "cuisine": "italian", + "ingredients": [ + "baby artichokes", + "fresh lemon juice", + "shaved parmesan cheese", + "celery", + "kosher salt", + "extra-virgin olive oil", + "chopped fresh mint", + "ground black pepper", + "flat leaf parsley" + ] + }, + { + "id": 22792, + "cuisine": "spanish", + "ingredients": [ + "coffee granules", + "salt", + "whole milk", + "sweetened condensed milk", + "large eggs", + "hot water", + "sugar", + "vanilla" + ] + }, + { + "id": 28438, + "cuisine": "greek", + "ingredients": [ + "grape leaves", + "cooking oil", + "salt", + "ground black pepper", + "garlic", + "capers", + "butter", + "lemon juice", + "fillet red snapper", + "lemon", + "fresh parsley" + ] + }, + { + "id": 8456, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "paprika", + "boneless pork shoulder", + "bay leaves", + "onions", + "white vinegar", + "ground black pepper", + "garlic cloves", + "chicken stock", + "vegetable oil", + "ground turmeric" + ] + }, + { + "id": 26358, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "water", + "rice wine", + "corn syrup", + "black pepper", + "radishes", + "ginger", + "carrots", + "cold water", + "pinenuts", + "asian pear", + "garlic", + "onions", + "soy sauce", + "shiitake", + "sesame oil", + "beef rib short" + ] + }, + { + "id": 37198, + "cuisine": "thai", + "ingredients": [ + "jalapeno chilies", + "garlic", + "organic low sodium chicken broth", + "lime", + "rice noodles", + "beansprouts", + "chicken breasts", + "red bell pepper", + "fresh ginger", + "cilantro", + "coconut milk" + ] + }, + { + "id": 14606, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "salt", + "oil", + "ground turmeric", + "tomatoes", + "cinnamon", + "tamarind paste", + "coconut milk", + "curry leaves", + "chili powder", + "cilantro leaves", + "black mustard seeds", + "eggs", + "ginger", + "green chilies", + "onions" + ] + }, + { + "id": 33114, + "cuisine": "vietnamese", + "ingredients": [ + "sambal ulek", + "black pepper", + "nuoc nam", + "ham hock", + "sugar", + "fresh cilantro", + "sea salt", + "fresh mint", + "boneless sirloin", + "lemongrass", + "rice noodles", + "beansprouts", + "red chili peppers", + "lime", + "boneless pork loin", + "holy basil" + ] + }, + { + "id": 14933, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "ground black pepper", + "shallots", + "extra-virgin olive oil", + "low salt chicken broth", + "fresh sage", + "large eggs", + "sherry wine vinegar", + "salt", + "flat leaf parsley", + "pancetta", + "water", + "crimini mushrooms", + "butter", + "chicken livers", + "dried porcini mushrooms", + "grated parmesan cheese", + "russet potatoes", + "all-purpose flour", + "grated lemon peel" + ] + }, + { + "id": 42947, + "cuisine": "thai", + "ingredients": [ + "black pepper", + "crimini mushrooms", + "Thai fish sauce", + "sliced green onions", + "sugar", + "splenda", + "stevia", + "ginger root", + "minced garlic", + "shallots", + "dried chile", + "soy sauce", + "boneless skinless chicken breasts", + "peanut oil", + "fresh lime juice" + ] + }, + { + "id": 15315, + "cuisine": "greek", + "ingredients": [ + "chicken breast halves", + "garlic cloves", + "dried basil", + "kalamata", + "dried oregano", + "parsley flakes", + "diced tomatoes", + "feta cheese crumbles", + "olive oil", + "penne pasta" + ] + }, + { + "id": 2560, + "cuisine": "chinese", + "ingredients": [ + "lower sodium soy sauce", + "yellow bell pepper", + "medium shrimp", + "frozen edamame beans", + "broccoli florets", + "dark sesame oil", + "canola oil", + "sugar pea", + "peeled fresh ginger", + "red bell pepper", + "sliced green onions", + "Sriracha", + "rice vinegar", + "long grain white rice" + ] + }, + { + "id": 8217, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "brown rice", + "garlic cloves", + "chopped garlic", + "kale", + "garlic", + "ginger root", + "water", + "red pepper flakes", + "red bell pepper", + "black-eyed peas", + "salt", + "onions" + ] + }, + { + "id": 33502, + "cuisine": "italian", + "ingredients": [ + "ladyfingers", + "heavy cream", + "mascarpone", + "fresh lemon juice", + "raspberries", + "blueberries", + "granulated sugar", + "confectioners sugar" + ] + }, + { + "id": 32598, + "cuisine": "italian", + "ingredients": [ + "pepper", + "noodles", + "italian sausage", + "salt", + "marinara sauce", + "fresh basil", + "shredded parmesan cheese" + ] + }, + { + "id": 49300, + "cuisine": "chinese", + "ingredients": [ + "sake", + "water", + "rice vinegar", + "corn starch", + "sambal ulek", + "silken tofu", + "brown rice", + "carrots", + "low sodium soy sauce", + "fat free less sodium chicken broth", + "green onions", + "garlic cloves", + "sugar", + "peeled fresh ginger", + "peanut oil", + "shiitake mushroom caps" + ] + }, + { + "id": 40484, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium soy sauce", + "freshly ground pepper", + "onions", + "cremini mushrooms", + "chinese wheat noodles", + "celery", + "arrowroot", + "red bell pepper", + "soba", + "olive oil", + "broccoli", + "mung bean sprouts" + ] + }, + { + "id": 32634, + "cuisine": "french", + "ingredients": [ + "sugar", + "semisweet chocolate", + "large egg yolks", + "all-purpose flour", + "large egg whites", + "vanilla extract", + "unsalted butter" + ] + }, + { + "id": 259, + "cuisine": "japanese", + "ingredients": [ + "sake", + "water", + "napa cabbage leaves", + "garlic", + "minced pork", + "soy sauce", + "shiitake", + "chili oil", + "rice vinegar", + "sugar", + "dumpling wrappers", + "sesame oil", + "salt", + "white pepper", + "spring onions", + "ginger", + "oil" + ] + }, + { + "id": 44427, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "leg quarters", + "shallots", + "coconut milk", + "potatoes", + "oil", + "water", + "curry", + "curry paste" + ] + }, + { + "id": 33881, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "white wine vinegar", + "hot mustard", + "pork tenderloin", + "sugar", + "cilantro sprigs", + "five spice", + "hoisin sauce" + ] + }, + { + "id": 34190, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "bay leaves", + "diced tomatoes", + "yellow onion", + "dried oregano", + "andouille sausage", + "boneless skinless chicken breasts", + "cracked black pepper", + "scallions", + "green bell pepper", + "dried sage", + "paprika", + "creole seasoning", + "celery ribs", + "dried basil", + "worcestershire sauce", + "garlic", + "long-grain rice" + ] + }, + { + "id": 40940, + "cuisine": "mexican", + "ingredients": [ + "corn oil", + "hass avocado", + "lime", + "salt", + "onions", + "tomatoes", + "hot chili powder", + "medium shrimp", + "green leaf lettuce", + "corn tortillas", + "ground cumin" + ] + }, + { + "id": 8712, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "butter", + "chuck roast", + "onion soup mix", + "salt", + "pepper", + "ranch dressing" + ] + }, + { + "id": 30762, + "cuisine": "japanese", + "ingredients": [ + "sesame oil", + "vinegar", + "cucumber", + "sugar", + "salt", + "green onions", + "toasted sesame seeds" + ] + }, + { + "id": 46108, + "cuisine": "french", + "ingredients": [ + "granulated sugar", + "1% low-fat milk", + "phyllo dough", + "cooking spray", + "corn starch", + "large egg yolks", + "vanilla extract", + "semi-sweet chocolate morsels", + "powdered sugar", + "half & half", + "salt" + ] + }, + { + "id": 34448, + "cuisine": "chinese", + "ingredients": [ + "wonton wrappers", + "toasted sesame oil", + "rice vinegar", + "coarse salt", + "reduced sodium chicken broth", + "scallions" + ] + }, + { + "id": 48332, + "cuisine": "indian", + "ingredients": [ + "russet potatoes", + "chili powder", + "kosher salt", + "vegetable oil" + ] + }, + { + "id": 49341, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "chuck roast", + "garlic", + "canola oil", + "chicken broth", + "spanish onion", + "Mexican oregano", + "chipotles in adobo", + "lime juice", + "bay leaves", + "salt", + "ground cloves", + "vegetables", + "apple cider vinegar", + "cumin" + ] + }, + { + "id": 16646, + "cuisine": "japanese", + "ingredients": [ + "ground ginger", + "garlic", + "black pepper", + "white sugar", + "soy sauce", + "corn starch", + "cold water", + "cider vinegar" + ] + }, + { + "id": 2594, + "cuisine": "korean", + "ingredients": [ + "burger buns", + "cheese", + "chicken", + "sesame oil", + "kimchi", + "garlic paste", + "chilli paste", + "onions", + "soy sauce", + "Gochujang base", + "sliced chicken" + ] + }, + { + "id": 45915, + "cuisine": "russian", + "ingredients": [ + "eggs", + "vegetable oil", + "dry bread crumbs", + "garlic powder", + "lemon", + "fresh parsley", + "water", + "butter", + "dried dillweed", + "ground black pepper", + "all-purpose flour", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 12248, + "cuisine": "spanish", + "ingredients": [ + "fat free less sodium chicken broth", + "cooking spray", + "non-fat sour cream", + "onions", + "Anaheim chile", + "vegetable oil", + "garlic cloves", + "flour tortillas", + "cooked chicken", + "salt", + "jalapeno chilies", + "tomatillos", + "fresh lime juice" + ] + }, + { + "id": 41224, + "cuisine": "italian", + "ingredients": [ + "pasta", + "diced tomatoes", + "vegetable oil", + "onions", + "tomato paste", + "green beans", + "top sirloin steak", + "italian seasoning" + ] + }, + { + "id": 8788, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "boneless skinless chicken breasts", + "non-fat sour cream", + "beer", + "shredded Monterey Jack cheese", + "large egg whites", + "flour", + "1% low-fat milk", + "salt", + "onions", + "coriander seeds", + "ground red pepper", + "shredded sharp cheddar cheese", + "corn tortillas", + "ground cumin", + "chopped green chilies", + "green onions", + "garlic", + "salsa", + "olives" + ] + }, + { + "id": 41808, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "black olives", + "eggs", + "pimentos", + "garlic", + "chopped ham", + "grated parmesan cheese", + "spaghetti, cook and drain", + "fresh parsley", + "ground black pepper", + "bacon", + "salt" + ] + }, + { + "id": 14848, + "cuisine": "indian", + "ingredients": [ + "onion soup mix", + "red pepper flakes", + "carrots", + "water", + "chili powder", + "cayenne pepper", + "chopped cilantro fresh", + "green bell pepper", + "flour", + "green peas", + "red bell pepper", + "curry powder", + "russet potatoes", + "coconut cream" + ] + }, + { + "id": 49280, + "cuisine": "greek", + "ingredients": [ + "mint leaves", + "juice", + "kosher salt", + "garlic", + "ground cumin", + "lemon", + "greek yogurt", + "ground black pepper", + "cayenne pepper" + ] + }, + { + "id": 35554, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "flour tortillas", + "shredded mozzarella cheese", + "sweet onion", + "chili powder", + "cumin", + "black beans", + "sweet potatoes", + "chipotles in adobo", + "olive oil", + "garlic" + ] + }, + { + "id": 7684, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "salt", + "sour cream", + "chicken breasts", + "enchilada sauce", + "onions", + "fresh cilantro", + "green chilies", + "corn tortillas", + "avocado", + "queso fresco", + "lemon juice" + ] + }, + { + "id": 44463, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "garam masala", + "oil", + "garlic paste", + "salt", + "corn flour", + "curry leaves", + "chili powder", + "rice flour", + "tumeric", + "all-purpose flour" + ] + }, + { + "id": 46903, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "baking powder", + "gluten-free flour", + "unsalted butter", + "salt", + "pecans", + "buttermilk", + "sweet potatoes", + "maple syrup" + ] + }, + { + "id": 17450, + "cuisine": "thai", + "ingredients": [ + "light soy sauce", + "sesame oil", + "chinese five-spice powder", + "shredded carrots", + "crushed red pepper", + "cabbage", + "fresh ginger", + "dipping sauces", + "beansprouts", + "fresh cilantro", + "green onions", + "rice vinegar", + "rice paper" + ] + }, + { + "id": 48918, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "taco sauce", + "refried beans", + "water", + "ground chuck", + "bisquick" + ] + }, + { + "id": 7282, + "cuisine": "french", + "ingredients": [ + "water", + "dark muscovado sugar", + "heavy cream", + "large egg yolks", + "salt", + "demerara sugar", + "vanilla" + ] + }, + { + "id": 34557, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "kosher salt", + "cooking spray", + "crushed red pepper", + "fresh basil", + "eggplant", + "diced tomatoes", + "garlic cloves", + "penne", + "fresh parmesan cheese", + "extra-virgin olive oil", + "onions", + "fontina cheese", + "baguette", + "dry white wine", + "fresh oregano" + ] + }, + { + "id": 22191, + "cuisine": "vietnamese", + "ingredients": [ + "olive oil", + "green onions", + "cucumber", + "medium shrimp uncook", + "carrots", + "chopped cilantro fresh", + "fresh ginger", + "rolls", + "fresh mint", + "lettuce leaves", + "hot water" + ] + }, + { + "id": 8378, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "vanilla extract", + "evaporated milk", + "ice", + "water", + "salt", + "bananas" + ] + }, + { + "id": 21661, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "squid", + "salt", + "fresh lemon juice", + "unsalted butter", + "freshly ground pepper", + "anchovy fillets" + ] + }, + { + "id": 6089, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed light brown sugar", + "butter", + "blackberries", + "white cake mix", + "large eggs", + "chopped walnuts", + "sugar", + "salt", + "ground cinnamon", + "milk", + "all-purpose flour" + ] + }, + { + "id": 22728, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "lime slices", + "corn starch", + "sugar", + "egg whites", + "butter", + "cold water", + "frozen whip topping, thaw", + "cooking spray", + "fresh lime juice", + "lime rind", + "graham cracker crumbs", + "vanilla extract" + ] + }, + { + "id": 47253, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "vegetable oil", + "garlic cloves", + "oregano", + "black beans", + "Anaheim chile", + "tortilla chips", + "poblano chiles", + "ground cumin", + "boneless chicken skinless thigh", + "ground black pepper", + "hot sauce", + "sour cream", + "shredded Monterey Jack cheese", + "white onion", + "roma tomatoes", + "cream cheese", + "serrano chile" + ] + }, + { + "id": 34799, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "ground black pepper", + "fresh basil", + "almond flour", + "ground turkey", + "eggs", + "sun-dried tomatoes", + "salt", + "mozzarella cheese", + "garlic powder" + ] + }, + { + "id": 37980, + "cuisine": "russian", + "ingredients": [ + "sugar", + "salt", + "pumpkin", + "water", + "rice", + "butter" + ] + }, + { + "id": 1168, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "self rising flour", + "chopped pecans", + "ground cinnamon", + "water", + "buttermilk", + "brown sugar", + "peaches", + "corn starch", + "sugar", + "butter" + ] + }, + { + "id": 48832, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "boneless skinless chicken breasts", + "freshly ground pepper", + "sugar", + "large eggs", + "salt", + "spaghetti", + "crushed tomatoes", + "grated parmesan cheese", + "dry bread crumbs", + "dried oregano", + "part-skim mozzarella cheese", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 25993, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh mushrooms", + "grape tomatoes", + "grated parmesan cheese", + "pinenuts", + "potato gnocchi", + "zucchini", + "fresh basil leaves" + ] + }, + { + "id": 6829, + "cuisine": "greek", + "ingredients": [ + "crushed tomatoes", + "egg whites", + "dry bread crumbs", + "chopped fresh mint", + "hot red pepper flakes", + "lean ground meat", + "salt", + "feta cheese crumbles", + "olive oil", + "orzo", + "yellow onion", + "ground cumin", + "fresh dill", + "ground black pepper", + "garlic", + "dried dill" + ] + }, + { + "id": 36806, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "regular soy sauce", + "garlic", + "carrots", + "honey", + "chicken breasts", + "broccoli", + "stir fry vegetable blend", + "pepper", + "spring onions", + "salt", + "corn starch", + "water chestnuts", + "ginger", + "yellow onion", + "canola oil" + ] + }, + { + "id": 14913, + "cuisine": "filipino", + "ingredients": [ + "water", + "salt", + "ground cumin", + "pepper", + "refrigerated piecrusts", + "shredded colby", + "cooked chicken", + "red bell pepper", + "jalapeno chilies", + "cream cheese" + ] + }, + { + "id": 22080, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "chopped tomatoes", + "boneless chicken", + "rice", + "chicken stock", + "white pepper", + "bay leaves", + "salt", + "onions", + "tasso", + "black pepper", + "unsalted butter", + "chopped celery", + "rubbed sage", + "green bell pepper", + "minced garlic", + "ground red pepper", + "dri leav thyme" + ] + }, + { + "id": 32745, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "dried basil", + "zucchini", + "red wine", + "salt", + "dried oregano", + "tomato sauce", + "yellow squash", + "bay leaves", + "tomatoes with juice", + "pork loin chops", + "pasta", + "pepper", + "olive oil", + "red pepper flakes", + "garlic", + "onions", + "green bell pepper", + "dried thyme", + "grated parmesan cheese", + "worcestershire sauce", + "fresh mushrooms" + ] + }, + { + "id": 20901, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "garlic", + "onions", + "grated parmesan cheese", + "white mushrooms", + "bread crumbs", + "shredded mozzarella cheese", + "italian seasoning", + "eggs", + "bell pepper", + "ground beef" + ] + }, + { + "id": 15471, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "cracked black pepper", + "fresh parmesan cheese", + "bacon", + "garlic cloves", + "fat free less sodium chicken broth", + "fusilli", + "chopped onion", + "roasted red peppers", + "diced tomatoes", + "flat leaf parsley" + ] + }, + { + "id": 2198, + "cuisine": "indian", + "ingredients": [ + "grated carrot", + "black mustard seeds", + "curry leaves", + "green chilies", + "salt", + "onions", + "semolina", + "oil" + ] + }, + { + "id": 14072, + "cuisine": "italian", + "ingredients": [ + "eggs", + "bacon", + "marinara sauce", + "shredded mozzarella cheese", + "anchovies", + "pizza doughs", + "mushrooms", + "olives" + ] + }, + { + "id": 34206, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "oil", + "dough", + "salt", + "baking powder", + "cornmeal", + "cold water", + "all-purpose flour" + ] + }, + { + "id": 13865, + "cuisine": "french", + "ingredients": [ + "white wine", + "swiss cheese", + "beef consomme", + "margarine", + "water", + "beef broth", + "french bread", + "onions" + ] + }, + { + "id": 11038, + "cuisine": "italian", + "ingredients": [ + "bouillon", + "all-purpose flour", + "pork tenderloin", + "capellini", + "marsala wine", + "margarine", + "salt", + "freshly ground pepper" + ] + }, + { + "id": 3733, + "cuisine": "filipino", + "ingredients": [ + "sausage links", + "ground black pepper", + "green onions", + "salt", + "okra", + "water", + "chopped green bell pepper", + "diced tomatoes", + "cayenne pepper", + "fresh parsley", + "minced garlic", + "unsalted butter", + "bacon", + "all-purpose flour", + "uncook medium shrimp, peel and devein", + "dried thyme", + "bay leaves", + "chopped celery", + "chopped onion" + ] + }, + { + "id": 45961, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "vegetable oil", + "gingerroot", + "red bell pepper", + "sugar", + "sesame oil", + "beaten eggs", + "corn starch", + "cabbage", + "won ton wrappers", + "ground pork", + "scallions", + "fresh lime juice", + "fish sauce", + "mint leaves", + "white wine vinegar", + "garlic cloves", + "coriander" + ] + }, + { + "id": 44911, + "cuisine": "greek", + "ingredients": [ + "melted butter", + "feta cheese", + "fresh spinach", + "sliced mushrooms", + "phyllo dough", + "vegetable oil", + "tomato sauce" + ] + }, + { + "id": 45237, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "all-purpose flour", + "baking powder", + "cornmeal", + "sugar", + "salt", + "large eggs", + "I Can't Believe It's Not Butter!® All Purpose Sticks" + ] + }, + { + "id": 39073, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "bittersweet chocolate", + "minced garlic", + "raisins", + "vegetable stock", + "plum tomatoes", + "sesame seeds", + "walnuts" + ] + }, + { + "id": 27886, + "cuisine": "southern_us", + "ingredients": [ + "gravy", + "paprika", + "steak", + "ground black pepper", + "Tabasco Pepper Sauce", + "all-purpose flour", + "garlic powder", + "whole milk", + "salt", + "canola oil", + "large eggs", + "cutlet", + "oil" + ] + }, + { + "id": 46427, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "garlic", + "cabbage", + "brisket", + "potatoes", + "carrots", + "pepper", + "leeks", + "chopped parsley", + "water", + "bay leaves", + "yellow peppers" + ] + }, + { + "id": 23892, + "cuisine": "southern_us", + "ingredients": [ + "cooking spray", + "salt", + "low-fat buttermilk", + "chicken drumsticks", + "ground cumin", + "ground red pepper", + "all-purpose flour", + "white pepper", + "chicken breasts", + "chicken thighs" + ] + }, + { + "id": 31648, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "salt", + "ground cumin", + "chili powder", + "corn flour", + "potatoes", + "oil", + "ginger", + "chaat masala" + ] + }, + { + "id": 4878, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "dry red wine", + "carrots", + "tomato sauce", + "beef stock cubes", + "fresh mushrooms", + "onions", + "sausage casings", + "grated parmesan cheese", + "cheese", + "green beans", + "italian style stewed tomatoes", + "tortellini", + "garlic cloves", + "italian seasoning" + ] + }, + { + "id": 40852, + "cuisine": "italian", + "ingredients": [ + "capers", + "crushed red pepper flakes", + "dried oregano", + "olive oil", + "anchovy fillets", + "pitted kalamata olives", + "garlic", + "diced tomatoes", + "spaghetti" + ] + }, + { + "id": 21762, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "water", + "fresh lime juice", + "buttermilk", + "lime rind", + "corn syrup" + ] + }, + { + "id": 43551, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun remoulade", + "large eggs", + "salt", + "artichoke hearts", + "worcestershire sauce", + "red bell pepper", + "mayonaise", + "dijon mustard", + "whipping cream", + "bread crumbs", + "green onions", + "fresh lemon juice" + ] + }, + { + "id": 24470, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "part-skim ricotta cheese", + "crust", + "cornmeal" + ] + }, + { + "id": 9420, + "cuisine": "italian", + "ingredients": [ + "water", + "baking potatoes", + "tomato sauce", + "grated parmesan cheese", + "salt", + "large eggs", + "butter", + "pepper", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 31613, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "whole milk", + "half & half", + "sugar", + "vanilla extract" + ] + }, + { + "id": 4260, + "cuisine": "russian", + "ingredients": [ + "green cabbage", + "pepper", + "vegetable bouillon", + "lemon", + "sour cream", + "tomato purée", + "red beets", + "mushrooms", + "salt", + "fresh dill", + "kidney beans", + "butter", + "carrots", + "tomatoes", + "water", + "gold potatoes", + "purple onion", + "celery" + ] + }, + { + "id": 18740, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "mozzarella cheese", + "salt", + "water", + "canola oil", + "plain yogurt", + "tapioca starch" + ] + }, + { + "id": 37643, + "cuisine": "korean", + "ingredients": [ + "sugar", + "ground black pepper", + "garlic", + "white wine", + "asian pear", + "onions", + "soy sauce", + "beef", + "juice", + "honey", + "sesame oil" + ] + }, + { + "id": 36193, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "butter", + "honey", + "lemon juice", + "ground cloves", + "chopped walnuts", + "tart shells" + ] + }, + { + "id": 43130, + "cuisine": "italian", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "finely chopped fresh parsley", + "jumbo shell pasta , cook and drain", + "ragu old world style pasta sauc", + "ricotta cheese", + "ground black pepper", + "shredded mozzarella cheese" + ] + }, + { + "id": 42699, + "cuisine": "southern_us", + "ingredients": [ + "large egg yolks", + "bacon slices", + "elbow macaroni", + "fontina cheese", + "grated parmesan cheese", + "all-purpose flour", + "frozen peas", + "ground black pepper", + "salt", + "flat leaf parsley", + "bread crumbs", + "whole milk", + "garlic cloves" + ] + }, + { + "id": 3507, + "cuisine": "italian", + "ingredients": [ + "tangerine", + "kumquats", + "water", + "cinnamon sticks", + "baguette", + "light corn syrup", + "sugar", + "unsalted butter" + ] + }, + { + "id": 44252, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "flour", + "oil", + "water", + "salt", + "sugar", + "butter", + "melted butter", + "dry yeast", + "all-purpose flour" + ] + }, + { + "id": 43507, + "cuisine": "indian", + "ingredients": [ + "pepper", + "garam masala", + "kasuri methi", + "oil", + "onions", + "tumeric", + "amchur", + "potatoes", + "green chilies", + "chopped cilantro", + "chaat masala", + "garlic paste", + "water", + "coriander powder", + "salt", + "lemon juice", + "frozen peas", + "white flour", + "coriander seeds", + "seeds", + "cumin seed", + "ghee", + "ground cumin" + ] + }, + { + "id": 28468, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "garlic cloves", + "water", + "grated lemon zest", + "onions", + "chicken broth", + "broccoli", + "fresh lemon juice", + "olive oil", + "rice" + ] + }, + { + "id": 33472, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "flour", + "large egg yolks", + "unsalted butter", + "kosher salt", + "ice water" + ] + }, + { + "id": 10039, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "garlic", + "green onions", + "sesame seeds", + "spinach", + "sesame oil" + ] + }, + { + "id": 36365, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "corn", + "hot bean paste", + "chicken broth", + "minced garlic", + "sesame oil", + "pork shoulder", + "kosher salt", + "peeled fresh ginger", + "scallions", + "silken tofu", + "szechwan peppercorns", + "corn starch" + ] + }, + { + "id": 40536, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "lemon", + "catfish fillets", + "chop fine pecan", + "all-purpose flour", + "large eggs", + "salt", + "black pepper", + "cracker crumbs", + "chopped fresh sage" + ] + }, + { + "id": 3688, + "cuisine": "indian", + "ingredients": [ + "peanuts", + "cilantro leaves", + "red chili powder", + "flour", + "boiling potatoes", + "sago", + "oil", + "amchur", + "salt" + ] + }, + { + "id": 6145, + "cuisine": "moroccan", + "ingredients": [ + "turnips", + "ground black pepper", + "extra-virgin olive oil", + "garlic cloves", + "bay leaf", + "ground cumin", + "swiss chard", + "ground red pepper", + "goat cheese", + "couscous", + "saffron", + "water", + "butternut squash", + "chickpeas", + "carrots", + "onions", + "ground cinnamon", + "leeks", + "salt", + "fresh lemon juice", + "chopped cilantro" + ] + }, + { + "id": 34396, + "cuisine": "moroccan", + "ingredients": [ + "stewed tomatoes", + "capers", + "ground cumin", + "hake fillets", + "extra-virgin olive oil", + "cinnamon" + ] + }, + { + "id": 5943, + "cuisine": "southern_us", + "ingredients": [ + "carbonated water", + "fresh lime juice", + "sugar syrup", + "fresh lemon juice", + "fresh orange juice" + ] + }, + { + "id": 39642, + "cuisine": "french", + "ingredients": [ + "eggs", + "orange", + "chopped almonds", + "all-purpose flour", + "fleur de sel", + "candied orange peel", + "active dry yeast", + "egg yolks", + "lima beans", + "melon", + "sugar", + "granulated sugar", + "lemon", + "jelly", + "table salt", + "unsalted butter", + "dark rum", + "orange flower water" + ] + }, + { + "id": 25776, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "cooked chicken", + "chopped onion", + "tomatoes", + "dried basil", + "chile pepper", + "chicken broth", + "water", + "chili powder", + "ground cumin", + "black pepper", + "olive oil", + "chicken flavored rice" + ] + }, + { + "id": 47389, + "cuisine": "italian", + "ingredients": [ + "eggs", + "all-purpose flour", + "baking powder", + "milk", + "salt" + ] + }, + { + "id": 39637, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "all-purpose flour", + "baking soda", + "baking powder", + "kosher salt", + "whole milk", + "cornmeal", + "unsalted butter", + "buttermilk" + ] + }, + { + "id": 10173, + "cuisine": "indian", + "ingredients": [ + "roti", + "gouda", + "masala", + "cheddar cheese", + "butter", + "feta cheese crumbles", + "potatoes", + "lemon juice", + "pepper", + "grating cheese", + "paratha" + ] + }, + { + "id": 2972, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "pumpkin seeds", + "salt", + "flat leaf parsley", + "cilantro leaves", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 3717, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "minced ginger", + "red pepper flakes", + "sugar", + "beef", + "toasted sesame seeds", + "minced garlic", + "sesame oil" + ] + }, + { + "id": 33792, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "chicken broth", + "oil", + "chopped onion", + "white rice" + ] + }, + { + "id": 32420, + "cuisine": "korean", + "ingredients": [ + "sugar", + "azuki bean", + "glutinous rice flour", + "raisins", + "chopped walnuts" + ] + }, + { + "id": 26757, + "cuisine": "thai", + "ingredients": [ + "tomatoes", + "fresh ginger", + "cilantro", + "beansprouts", + "light brown sugar", + "soy sauce", + "chicken breasts", + "broccoli", + "fresh lime juice", + "fish sauce", + "mushrooms", + "salt", + "coconut milk", + "chicken broth", + "lemongrass", + "vegetable oil", + "red curry paste" + ] + }, + { + "id": 29548, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "mirin", + "hot sauce", + "toasted sesame seeds", + "sugar", + "water", + "red pepper", + "onions", + "black pepper", + "flank steak", + "corn syrup", + "iceberg lettuce", + "white wine", + "sesame oil", + "garlic cloves" + ] + }, + { + "id": 19207, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "sweet potatoes", + "cayenne pepper", + "cinnamon sticks", + "onions", + "red lentils", + "olive oil", + "star anise", + "ground coriander", + "bay leaf", + "unsalted vegetable stock", + "dates", + "lemon rind", + "red bell pepper", + "ground cumin", + "tomatoes", + "fresh ginger", + "salt", + "garlic cloves", + "fresh parsley" + ] + }, + { + "id": 39173, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "garam masala", + "russet potatoes", + "water", + "baking powder", + "yellow onion", + "tumeric", + "besan (flour)", + "salt", + "frozen chopped spinach", + "amchur", + "vegetable oil", + "cumin seed" + ] + }, + { + "id": 36737, + "cuisine": "southern_us", + "ingredients": [ + "refrigerated piecrusts", + "chopped walnuts", + "eggs", + "all-purpose flour", + "vanilla", + "chocolate morsels", + "sugar", + "margarine" + ] + }, + { + "id": 6222, + "cuisine": "brazilian", + "ingredients": [ + "water", + "bay leaves", + "sausages", + "greens", + "manioc flour", + "olive oil", + "salt", + "cooked white rice", + "spareribs", + "orange", + "butter", + "carne seca", + "chopped garlic", + "black beans", + "ground black pepper", + "hot sauce", + "onions" + ] + }, + { + "id": 33878, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cheese", + "ground red pepper", + "grits", + "butter", + "large eggs", + "salt" + ] + }, + { + "id": 27720, + "cuisine": "italian", + "ingredients": [ + "orange", + "almond meal", + "large egg whites", + "superfine sugar", + "confectioners sugar", + "sliced almonds", + "almond extract" + ] + }, + { + "id": 35039, + "cuisine": "mexican", + "ingredients": [ + "lump crab meat", + "pimentos", + "slivered almonds", + "flour tortillas", + "brie cheese", + "vegetable oil cooking spray", + "curry powder", + "hot sauce", + "mayonaise", + "green onions" + ] + }, + { + "id": 9108, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "kosher salt", + "tamarind pulp", + "dark brown sugar", + "arbol chile", + "coconut oil", + "minced ginger", + "whole cloves", + "garlic cloves", + "pork butt", + "black peppercorns", + "cider vinegar", + "roma tomatoes", + "cumin seed", + "chopped cilantro", + "white onion", + "cayenne", + "paprika", + "cinnamon sticks", + "cashew nuts" + ] + }, + { + "id": 8268, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "cardamon", + "cilantro", + "mustard powder", + "chicken", + "pepper", + "butter", + "garlic", + "lemon juice", + "unsweetened coconut milk", + "garam masala", + "habanero", + "yellow onion", + "cumin", + "fresh ginger", + "diced tomatoes", + "curry", + "coriander" + ] + }, + { + "id": 24200, + "cuisine": "british", + "ingredients": [ + "fresh coriander", + "spring onions", + "salt", + "basmati rice", + "tomatoes", + "fresh bay leaves", + "lemon", + "mustard seeds", + "fresh red chili", + "fresh ginger", + "haddock fillets", + "cumin seed", + "tumeric", + "large free range egg", + "garlic", + "ghee" + ] + }, + { + "id": 35059, + "cuisine": "indian", + "ingredients": [ + "nonfat italian dressing", + "peeled fresh ginger", + "boneless skinless chicken breast halves", + "curry powder", + "crushed red pepper", + "ground turmeric", + "olive oil", + "chopped onion", + "nonfat yogurt", + "low salt chicken broth" + ] + }, + { + "id": 19964, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame oil", + "garlic cloves", + "cooked rice", + "water chestnuts", + "angus", + "white sugar", + "sesame seeds", + "salt", + "carrots", + "butter lettuce", + "green onions", + "oil" + ] + }, + { + "id": 11393, + "cuisine": "cajun_creole", + "ingredients": [ + "Louisiana Hot Sauce", + "Uncle Ben's Original Converted Brand rice", + "Gourmet Garden garlic paste", + "Johnsonville Andouille", + "Red Gold® diced tomatoes", + "Gourmet Garden Parsley", + "onions", + "kidney beans", + "cajun seasoning", + "celery", + "chicken broth", + "bay leaves", + "Pompeian Canola Oil and Extra Virgin Olive Oil" + ] + }, + { + "id": 4737, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "fried eggs", + "oil", + "lime", + "salsa", + "pepper", + "salt", + "corn tortillas", + "avocado", + "diced red onions", + "scallions" + ] + }, + { + "id": 23939, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "chile pepper", + "salt", + "masa harina", + "shredded cabbage", + "vegetable oil", + "salsa", + "black beans", + "lime wedges", + "all-purpose flour", + "baking powder", + "garlic", + "hot water" + ] + }, + { + "id": 18467, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "Knorr® Pasta Sides™ - Chicken flavor", + "cumin", + "nonfat plain greek yogurt", + "red bell pepper", + "olive oil", + "lemon juice", + "chili powder", + "onions" + ] + }, + { + "id": 12934, + "cuisine": "italian", + "ingredients": [ + "white onion", + "fresh parmesan cheese", + "center cut bacon", + "all-purpose flour", + "sugar", + "active dry yeast", + "baby arugula", + "extra-virgin olive oil", + "warm water", + "part-skim mozzarella cheese", + "cooking spray", + "part-skim ricotta cheese", + "yellow corn meal", + "kosher salt", + "ground black pepper", + "button mushrooms" + ] + }, + { + "id": 8500, + "cuisine": "french", + "ingredients": [ + "pitted black olives", + "anchovy fillets", + "extra-virgin olive oil", + "capers", + "salt", + "pepper" + ] + }, + { + "id": 26088, + "cuisine": "thai", + "ingredients": [ + "jumbo shrimp", + "enokitake", + "purple onion", + "corn starch", + "cold water", + "lime", + "coarse salt", + "cumin seed", + "chopped cilantro fresh", + "lemongrass", + "vegetable oil", + "dried rice noodles", + "red bell pepper", + "green chile", + "coriander seeds", + "pineapple", + "low-fat canned coconut milk" + ] + }, + { + "id": 21697, + "cuisine": "cajun_creole", + "ingredients": [ + "wonton wrappers", + "chopped cilantro", + "lump crab meat", + "peanut oil", + "spicy sausage", + "cream cheese", + "Tabasco Pepper Sauce", + "rotel tomatoes" + ] + }, + { + "id": 36253, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "vanilla", + "sugar", + "brown sugar", + "salt", + "evaporated milk" + ] + }, + { + "id": 43167, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "pepper jack", + "diced tomatoes", + "cumin", + "green chile", + "garlic powder", + "chili powder", + "feta cheese crumbles", + "corn kernels", + "bell pepper", + "cilantro leaves", + "canned black beans", + "ground black pepper", + "onion powder", + "cooked quinoa" + ] + }, + { + "id": 48754, + "cuisine": "french", + "ingredients": [ + "sugar", + "salted butter", + "eggs", + "bread dough", + "water" + ] + }, + { + "id": 15566, + "cuisine": "japanese", + "ingredients": [ + "large eggs", + "shiitake", + "dashi", + "green onions", + "prawns" + ] + }, + { + "id": 43416, + "cuisine": "filipino", + "ingredients": [ + "mayonaise", + "mussels", + "lime", + "sweet chili sauce", + "cheddar cheese", + "green onions" + ] + }, + { + "id": 22431, + "cuisine": "italian", + "ingredients": [ + "sweet onion", + "basil", + "garlic", + "red pepper flakes", + "vegetable broth", + "parmesan cheese", + "extra-virgin olive oil", + "dried leaves oregano", + "diced tomatoes", + "linguine" + ] + }, + { + "id": 14693, + "cuisine": "french", + "ingredients": [ + "sole fillet", + "egg whites", + "grated nutmeg", + "sea scallops", + "heavy cream", + "black pepper", + "chopped fresh chives", + "fresh dill", + "unsalted butter", + "salt" + ] + }, + { + "id": 8821, + "cuisine": "italian", + "ingredients": [ + "pilsner", + "all-purpose flour", + "vegetable oil", + "zucchini", + "kosher salt", + "sea salt" + ] + }, + { + "id": 40109, + "cuisine": "thai", + "ingredients": [ + "pure maple syrup", + "lime", + "jalapeno chilies", + "cauliflower florets", + "carrots", + "water", + "red cabbage", + "cilantro", + "tamari soy sauce", + "cashew nuts", + "almond butter", + "zucchini", + "lime wedges", + "garlic", + "beansprouts", + "kelp noodles", + "orange", + "tahini", + "ginger", + "scallions" + ] + }, + { + "id": 3772, + "cuisine": "french", + "ingredients": [ + "fresh thyme leaves", + "cornish hens", + "lemon zest", + "lemon", + "poussins", + "sauterne", + "lavender", + "unsalted butter", + "lavender flowers", + "thyme leaves" + ] + }, + { + "id": 11689, + "cuisine": "french", + "ingredients": [ + "sour cream", + "heavy cream" + ] + }, + { + "id": 35743, + "cuisine": "japanese", + "ingredients": [ + "clove", + "cinnamon", + "oil", + "ginger paste", + "bay leaves", + "salt", + "onions", + "coconut", + "paneer", + "ghee", + "chili powder", + "green cardamom", + "ground turmeric" + ] + }, + { + "id": 523, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large egg yolks", + "dried apricot", + "cinnamon sticks", + "prunes", + "pinenuts", + "lemon peel", + "vanilla extract", + "marsala wine", + "unsalted butter", + "all purpose unbleached flour", + "grated lemon peel", + "powdered sugar", + "water", + "large eggs", + "salt" + ] + }, + { + "id": 662, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "onions", + "kosher salt", + "red bell pepper", + "soft goat's cheese", + "large eggs", + "pepper", + "flat leaf parsley" + ] + }, + { + "id": 28857, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "yellow onion", + "coarse salt", + "applewood smoked bacon", + "collard greens", + "ham", + "garlic" + ] + }, + { + "id": 24198, + "cuisine": "mexican", + "ingredients": [ + "minced onion", + "chicken stock", + "canola oil", + "vermicelli", + "bouillon" + ] + }, + { + "id": 16320, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "fresh curry leaves", + "vinegar", + "tamarind paste", + "mustard seeds", + "jaggery", + "red chili peppers", + "coriander seeds", + "ginger", + "cumin seed", + "ghee", + "tumeric", + "water", + "red wine vinegar", + "green chilies", + "cinnamon sticks", + "clove", + "pork", + "ground black pepper", + "garlic", + "black mustard seeds", + "onions" + ] + }, + { + "id": 44703, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "paprika", + "ground cumin", + "vegetable oil", + "fresh lemon juice", + "cayenne", + "salt", + "ground ginger", + "large garlic cloves", + "ground cardamom" + ] + }, + { + "id": 29138, + "cuisine": "french", + "ingredients": [ + "mussels", + "baguette", + "clam juice", + "reduced fat mayonnaise", + "fillet red snapper", + "roasted red peppers", + "chopped onion", + "plum tomatoes", + "saffron threads", + "fat free less sodium chicken broth", + "fennel bulb", + "garlic cloves", + "large shrimp", + "red potato", + "olive oil", + "littleneck clams", + "fresh parsley" + ] + }, + { + "id": 25444, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "black peppercorns", + "chicken thighs", + "bay leaves", + "white vinegar", + "garlic" + ] + }, + { + "id": 12142, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "pork loin chops", + "chopped fresh chives", + "garlic salt", + "crumbled blue cheese", + "fresh parsley", + "bacon" + ] + }, + { + "id": 18776, + "cuisine": "mexican", + "ingredients": [ + "red chili peppers", + "muscovado sugar", + "olive oil", + "paprika", + "lime", + "chicken breasts", + "lime zest", + "coriander seeds", + "garlic cloves" + ] + }, + { + "id": 26619, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "chicken bouillon", + "butter", + "cooked ham", + "black-eyed peas", + "yellow onion", + "black pepper", + "bacon" + ] + }, + { + "id": 5224, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "vegetable oil", + "scallions", + "unsalted butter", + "salt", + "boiling water", + "dried porcini mushrooms", + "beef tenderloin", + "garlic cloves", + "shallots", + "freshly ground pepper" + ] + }, + { + "id": 1799, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "chuck roast", + "apple cider vinegar", + "fresh oregano", + "white onion", + "bay leaves", + "salt", + "corn tortillas", + "black pepper", + "jalapeno chilies", + "cilantro", + "garlic cloves", + "avocado", + "lime juice", + "chili powder", + "beef broth", + "cumin" + ] + }, + { + "id": 19127, + "cuisine": "cajun_creole", + "ingredients": [ + "butter", + "white sugar", + "light brown sugar", + "salt", + "vanilla extract", + "milk", + "chopped pecans" + ] + }, + { + "id": 37480, + "cuisine": "italian", + "ingredients": [ + "whole milk ricotta cheese", + "pepper", + "salt", + "basil pesto sauce", + "chees fresh mozzarella", + "olive oil", + "spaghetti squash" + ] + }, + { + "id": 16678, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "Tabasco Pepper Sauce", + "dill", + "flat leaf parsley", + "sun-dried tomatoes", + "garlic", + "feta cheese crumbles", + "pepper", + "worcestershire sauce", + "lemon juice", + "dried oregano", + "capers", + "hard-boiled egg", + "salt", + "greek yogurt" + ] + }, + { + "id": 2044, + "cuisine": "southern_us", + "ingredients": [ + "reduced sodium chicken broth", + "red pepper flakes", + "collard greens" + ] + }, + { + "id": 26296, + "cuisine": "french", + "ingredients": [ + "mussels", + "dry white wine", + "celery", + "fresh thyme", + "salt", + "onions", + "bay leaves", + "crème fraîche", + "pepper", + "butter", + "fresh parsley" + ] + }, + { + "id": 925, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "salt", + "escarole", + "beans", + "vegetable stock", + "freshly ground pepper", + "parmigiano reggiano cheese", + "pearl barley", + "onions", + "white wine", + "extra-virgin olive oil", + "thyme" + ] + }, + { + "id": 27606, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "salted peanuts", + "scallions", + "light brown sugar", + "beef tenderloin", + "peanut oil", + "kosher salt", + "yellow onion", + "fresh lime juice", + "fish sauce", + "garlic", + "freshly ground pepper" + ] + }, + { + "id": 28062, + "cuisine": "thai", + "ingredients": [ + "clove", + "chicken breasts", + "ginger", + "Thai fish sauce", + "sugar", + "rice noodles", + "cilantro leaves", + "onions", + "peanuts", + "vegetable oil", + "tamarind paste", + "eggs", + "chili powder", + "salt", + "beansprouts" + ] + }, + { + "id": 13164, + "cuisine": "mexican", + "ingredients": [ + "shredded sharp cheddar cheese", + "taco seasoning mix", + "onions", + "ground beef", + "refrigerated crescent rolls" + ] + }, + { + "id": 38041, + "cuisine": "italian", + "ingredients": [ + "Belgian endive", + "kale", + "cooking spray", + "dry bread crumbs", + "turnip greens", + "fat free milk", + "crushed red pepper", + "garlic cloves", + "yellow corn meal", + "olive oil", + "golden raisins", + "organic vegetable broth", + "pinenuts", + "fresh parmesan cheese", + "salt" + ] + }, + { + "id": 45506, + "cuisine": "chinese", + "ingredients": [ + "black peppercorns", + "red chili peppers", + "spring onions", + "star anise", + "carrots", + "onions", + "five spice", + "duck bones", + "sesame oil", + "cilantro leaves", + "duck drumsticks", + "dark soy sauce", + "egg noodles", + "seeds", + "gyoza wrappers", + "ginger root", + "chicken stock", + "fish sauce", + "leeks", + "cilantro root", + "duck", + "celery" + ] + }, + { + "id": 6211, + "cuisine": "moroccan", + "ingredients": [ + "tomato sauce", + "elbow macaroni", + "pasta sauce", + "broccoli", + "cauliflower", + "grated parmesan cheese", + "part-skim mozzarella", + "whipping cream" + ] + }, + { + "id": 41608, + "cuisine": "spanish", + "ingredients": [ + "lime", + "dry red wine", + "water", + "navel oranges", + "lemon", + "sugar", + "carbonated water" + ] + }, + { + "id": 22940, + "cuisine": "brazilian", + "ingredients": [ + "fresh ginger", + "light coconut milk", + "onions", + "pepper", + "chicken breasts", + "salt", + "cumin", + "tumeric", + "garam masala", + "garlic", + "coriander", + "olive oil", + "diced tomatoes", + "cayenne pepper" + ] + }, + { + "id": 41921, + "cuisine": "french", + "ingredients": [ + "extra-virgin olive oil", + "grape tomatoes", + "red bell pepper", + "roasted red peppers", + "ground cumin", + "white wine vinegar" + ] + }, + { + "id": 35913, + "cuisine": "japanese", + "ingredients": [ + "all purpose unbleached flour", + "water", + "fine sea salt" + ] + }, + { + "id": 46099, + "cuisine": "french", + "ingredients": [ + "crabmeat", + "fresh tarragon", + "hothouse cucumber", + "mayonaise", + "fresh lemon juice", + "purple onion" + ] + }, + { + "id": 27582, + "cuisine": "filipino", + "ingredients": [ + "salt and ground black pepper", + "yellow onion", + "mayonaise", + "green onions", + "eggs", + "garlic powder", + "chicken livers", + "pork belly", + "margarine" + ] + }, + { + "id": 29587, + "cuisine": "italian", + "ingredients": [ + "pure vanilla extract", + "cherries", + "large egg whites", + "salt", + "sugar", + "almond extract", + "almonds" + ] + }, + { + "id": 21640, + "cuisine": "italian", + "ingredients": [ + "slivered almonds", + "granulated sugar", + "semi-sweet chocolate morsels", + "graham crackers", + "large eggs", + "large egg whites", + "ricotta", + "orange zest", + "candied orange peel", + "unsalted butter", + "confectioners sugar" + ] + }, + { + "id": 31936, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "coconut", + "cinnamon", + "ground turmeric", + "curry leaves", + "beef", + "oil", + "mustard", + "coriander powder", + "salt", + "clove", + "pepper", + "chili powder", + "onions" + ] + }, + { + "id": 12030, + "cuisine": "japanese", + "ingredients": [ + "boneless chicken skinless thigh", + "toasted sesame seeds", + "brown sugar", + "garlic", + "sesame oil", + "soy sauce", + "scallions" + ] + }, + { + "id": 41844, + "cuisine": "chinese", + "ingredients": [ + "light brown sugar", + "shiitake", + "vegetable oil", + "garlic cloves", + "soy sauce", + "chenpi", + "salt", + "chinese rice wine", + "peeled fresh ginger", + "star anise", + "chicken", + "water", + "sesame oil", + "scallions" + ] + }, + { + "id": 22846, + "cuisine": "french", + "ingredients": [ + "french bread", + "salt", + "bay leaf", + "white wine", + "butter", + "beef broth", + "ground black pepper", + "paprika", + "sauce", + "shredded swiss cheese", + "all-purpose flour", + "onions" + ] + }, + { + "id": 9008, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "large garlic cloves", + "bouillon", + "cooking spray", + "all-purpose flour", + "pork tenderloin", + "salt", + "marsala wine", + "butter" + ] + }, + { + "id": 48507, + "cuisine": "mexican", + "ingredients": [ + "masa harina", + "water", + "queso fresco" + ] + }, + { + "id": 5378, + "cuisine": "thai", + "ingredients": [ + "orange", + "rice vermicelli", + "sugar", + "cooking oil", + "pressed tofu", + "fish sauce", + "tamarind", + "garlic", + "water", + "shallots", + "dried shrimp" + ] + }, + { + "id": 19653, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "pitted olives", + "chicken", + "shredded cheddar cheese", + "shredded lettuce", + "green chilies", + "avocado", + "flour tortillas", + "salsa", + "refried beans", + "cilantro", + "sour cream" + ] + }, + { + "id": 16647, + "cuisine": "french", + "ingredients": [ + "blood orange juice", + "sugar", + "fresh lemon juice", + "mint sprigs", + "water" + ] + }, + { + "id": 19499, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "refrigerated fettuccine", + "marinara sauce", + "crushed red pepper", + "basil leaves", + "Italian turkey sausage", + "pecorino cheese", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 8487, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "white wine", + "grated parmesan cheese", + "sea salt", + "garlic cloves", + "fresh basil", + "olive oil", + "butter", + "salt", + "tomatoes", + "pepper", + "chicken breasts", + "whipping cream", + "toasted pine nuts", + "black pepper", + "parmesan cheese", + "lemon", + "all-purpose flour" + ] + }, + { + "id": 15689, + "cuisine": "italian", + "ingredients": [ + "whole wheat french bread", + "eggplant", + "cooking spray", + "garlic cloves", + "kosher salt", + "large eggs", + "grated lemon zest", + "pinenuts", + "parmigiano reggiano cheese", + "part-skim ricotta cheese", + "tomatoes", + "ground black pepper", + "extra-virgin olive oil", + "fresh basil leaves" + ] + }, + { + "id": 42415, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "sour cream", + "green bell pepper", + "yellow bell pepper", + "iceberg lettuce", + "guacamole", + "chunky salsa", + "black beans", + "red bell pepper", + "chorizo sausage" + ] + }, + { + "id": 31636, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "penne", + "large garlic cloves", + "parmigiano reggiano cheese", + "pinenuts", + "frozen peas" + ] + }, + { + "id": 2288, + "cuisine": "italian", + "ingredients": [ + "unflavored gelatin", + "whole milk", + "granulated sugar", + "fresh orange juice", + "sugar", + "heavy cream", + "low-fat buttermilk", + "strawberries" + ] + }, + { + "id": 35768, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "coarse sea salt", + "pan drippings", + "dried chile", + "french bread", + "broccoli", + "water", + "large garlic cloves" + ] + }, + { + "id": 44273, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "salt and ground black pepper", + "raw cashews", + "fresh lemon juice", + "minced garlic", + "dried thyme", + "tapioca starch", + "all-purpose flour", + "dried oregano", + "warm water", + "dried basil", + "agave nectar", + "extra-virgin olive oil", + "hot water", + "crushed tomatoes", + "whole wheat flour", + "sea salt", + "garlic cloves" + ] + }, + { + "id": 24276, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh basil leaves", + "chopped tomatoes", + "spaghetti", + "salt", + "light brown sugar", + "garlic cloves" + ] + }, + { + "id": 27804, + "cuisine": "mexican", + "ingredients": [ + "cilantro sprigs", + "ground cumin", + "flour tortillas", + "fresh lime juice", + "smoked turkey", + "green grape", + "coarse salt", + "low fat monterey jack cheese" + ] + }, + { + "id": 22705, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "garlic", + "ground coriander", + "onions", + "water", + "vegetable oil", + "chickpeas", + "lemon juice", + "ground cumin", + "tomatoes", + "garam masala", + "salt", + "cumin seed", + "ground turmeric", + "amchur", + "paprika", + "green chilies", + "ground cayenne pepper" + ] + }, + { + "id": 21448, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "paprika", + "salt", + "pepper", + "potatoes", + "garlic", + "chicken thighs", + "sausage casings", + "garbanzo beans", + "crushed red pepper flakes", + "carrots", + "water", + "italian plum tomatoes", + "purple onion" + ] + }, + { + "id": 26209, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "finely chopped onion", + "garlic cloves", + "olive oil", + "whole milk", + "polenta", + "ground black pepper", + "pecorino romano cheese", + "water", + "marinara sauce", + "flat leaf parsley" + ] + }, + { + "id": 16871, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "chopped onion", + "chicken stock", + "meatballs", + "shredded mozzarella cheese", + "green bell pepper", + "wheat", + "olive oil", + "herb seasoning" + ] + }, + { + "id": 14850, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "corn starch", + "chinese eggplants", + "chili oil", + "soy sauce", + "red wine vinegar", + "white sugar", + "chile pepper", + "salt" + ] + }, + { + "id": 29707, + "cuisine": "french", + "ingredients": [ + "sorrel", + "new potatoes", + "chicken stock", + "half & half", + "freshly ground pepper", + "asparagus", + "salt", + "young leeks", + "vegetable oil" + ] + }, + { + "id": 41880, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "salt", + "water", + "mussels", + "brown rice", + "edamame", + "diced tomatoes", + "hot smoked paprika", + "ground black pepper", + "spanish chorizo" + ] + }, + { + "id": 7868, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "jalapeno chilies", + "long grain white rice", + "white onion", + "garlic", + "canola oil", + "kosher salt", + "fresh lime juice", + "ground cumin", + "chicken stock", + "whole peeled tomatoes", + "chopped cilantro" + ] + }, + { + "id": 15822, + "cuisine": "russian", + "ingredients": [ + "hungarian sweet paprika", + "bell pepper", + "caraway seeds", + "beef broth", + "rib eye steaks", + "olive oil", + "garlic cloves", + "tomato paste", + "balsamic vinegar" + ] + }, + { + "id": 121, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "water", + "sesame oil", + "scallions", + "chicken-flavored soup powder", + "chicken stock", + "kosher salt", + "Shaoxing wine", + "ground pork", + "carrots", + "bean curd skins", + "enokitake", + "vegetable oil", + "oyster sauce", + "wood ear mushrooms", + "sugar", + "minced garlic", + "peeled fresh ginger", + "dried shiitake mushrooms", + "corn starch" + ] + }, + { + "id": 18408, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "lean ground beef", + "sour cream", + "kosher salt", + "chipotle", + "diced tomatoes", + "unsweetened cocoa powder", + "cayenne", + "canned beef broth", + "onions", + "cider vinegar", + "chili powder", + "garlic", + "ground cumin" + ] + }, + { + "id": 11896, + "cuisine": "french", + "ingredients": [ + "bay leaves", + "water", + "onions", + "black peppercorns", + "dried salted codfish", + "fresh thyme" + ] + }, + { + "id": 8244, + "cuisine": "italian", + "ingredients": [ + "water", + "egg noodles, cooked and drained", + "onions", + "pepper", + "boneless beef chuck roast", + "corn starch", + "tomato paste", + "olive oil", + "beef broth", + "italian seasoning", + "tomato sauce", + "onion soup mix", + "fresh mushrooms" + ] + }, + { + "id": 19081, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "onions", + "salt", + "diced tomatoes", + "italian seasoning", + "pepper", + "garlic cloves" + ] + }, + { + "id": 48573, + "cuisine": "mexican", + "ingredients": [ + "lime", + "whole kernel corn, drain", + "black beans", + "green onions", + "flat leaf parsley", + "green bell pepper", + "ground black pepper", + "red bell pepper", + "kosher salt", + "extra-virgin olive oil" + ] + }, + { + "id": 19163, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "jalapeno chilies", + "non stick spray", + "olive oil", + "salt", + "whole wheat breadcrumbs", + "jack", + "chicken cutlets", + "scallions", + "lime", + "center cut bacon", + "low-fat cream cheese" + ] + }, + { + "id": 35811, + "cuisine": "cajun_creole", + "ingredients": [ + "peanuts", + "dill pickles", + "salt", + "jalapeno chilies", + "brine", + "crab boil" + ] + }, + { + "id": 7308, + "cuisine": "jamaican", + "ingredients": [ + "light coconut milk", + "thyme sprigs", + "kidney beans", + "ground allspice", + "water", + "salt", + "long grain white rice", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 24144, + "cuisine": "brazilian", + "ingredients": [ + "tapioca flour", + "queso fresco", + "olive oil", + "table salt", + "large eggs", + "milk" + ] + }, + { + "id": 11425, + "cuisine": "italian", + "ingredients": [ + "sherry vinegar", + "shallots", + "salt", + "zucchini", + "extra-virgin olive oil", + "penne rigate", + "mascarpone", + "parsley", + "green beans", + "chicken breasts", + "crushed red pepper" + ] + }, + { + "id": 27132, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "chopped onion", + "corn kernels", + "saffron threads", + "schmaltz", + "kosher salt", + "polenta" + ] + }, + { + "id": 15468, + "cuisine": "indian", + "ingredients": [ + "paprika", + "ground turmeric", + "ground cumin", + "red chili powder", + "garlic", + "canola oil", + "ginger", + "masala", + "plain yogurt", + "salt", + "chicken" + ] + }, + { + "id": 14211, + "cuisine": "french", + "ingredients": [ + "olive oil", + "cracked black pepper", + "flat leaf parsley", + "sea salt", + "white beans", + "onions", + "parmigiana-reggiano", + "diced tomatoes", + "cabernet sauvignon", + "olive tapenade", + "haddock", + "garlic", + "celery" + ] + }, + { + "id": 49206, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "salt", + "onions", + "tomato sauce", + "cajun seasoning", + "long-grain rice", + "water", + "green pepper", + "cabbage", + "sugar", + "stewed tomatoes", + "ground beef" + ] + }, + { + "id": 47299, + "cuisine": "chinese", + "ingredients": [ + "garlic chives", + "kosher salt", + "large eggs", + "ground pork", + "scallions", + "cabbage", + "sugar", + "ground black pepper", + "vegetable oil", + "rice vinegar", + "corn starch", + "soy sauce", + "Sriracha", + "clove garlic, fine chop", + "all-purpose flour", + "dried shrimp", + "chinese rice wine", + "fresh ginger", + "sesame oil", + "salt", + "oyster sauce" + ] + }, + { + "id": 49717, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "lime", + "half & half", + "purple onion", + "adobo sauce", + "chile powder", + "pepper", + "garlic powder", + "onion powder", + "smoked paprika", + "boneless chicken skinless thigh", + "olive oil", + "chili powder", + "salt", + "ground cumin", + "avocado", + "fresh cilantro", + "tortillas", + "chees fresco queso", + "greek yogurt" + ] + }, + { + "id": 29245, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "red pepper flakes", + "cayenne pepper", + "onions", + "garam masala", + "cauliflower florets", + "small red potato", + "ground cumin", + "olive oil", + "diced tomatoes", + "yams", + "ground turmeric", + "water", + "butter", + "garlic", + "carrots" + ] + }, + { + "id": 29763, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "dry mustard", + "dried oregano", + "grated parmesan cheese", + "all-purpose flour", + "ground black pepper", + "salt", + "chicken wings", + "paprika", + "peanut oil" + ] + }, + { + "id": 31484, + "cuisine": "cajun_creole", + "ingredients": [ + "green onions", + "garlic", + "dry white wine", + "Lea & Perrins Worcestershire Sauce", + "salted butter", + "Tabasco Pepper Sauce", + "large shrimp", + "cayenne", + "paprika", + "canola oil" + ] + }, + { + "id": 47793, + "cuisine": "greek", + "ingredients": [ + "green bell pepper", + "feta cheese", + "salt", + "onions", + "pepper", + "raisins", + "cooked white rice", + "tomato purée", + "olive oil", + "ground pork", + "fresh parsley", + "pinenuts", + "dry white wine", + "red bell pepper" + ] + }, + { + "id": 18794, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "chicken breasts", + "cognac", + "fresh ginger", + "salt", + "blackberries", + "blackberry jam", + "cooking oil", + "rice vinegar", + "pepper", + "sea salt", + "fresh mint" + ] + }, + { + "id": 10190, + "cuisine": "italian", + "ingredients": [ + "bread crumb fresh", + "parmigiano reggiano cheese", + "flat leaf parsley", + "capers", + "olive oil", + "large garlic cloves", + "black pepper", + "beef", + "salt", + "pinenuts", + "pitted green olives", + "plum tomatoes" + ] + }, + { + "id": 14221, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "apricot preserves", + "toasted sesame seeds", + "soy sauce", + "rice vinegar", + "ground white pepper", + "canola oil", + "kosher salt", + "Gochujang base", + "ground beef", + "eggs", + "green onions", + "garlic cloves", + "panko breadcrumbs" + ] + }, + { + "id": 33479, + "cuisine": "southern_us", + "ingredients": [ + "pinenuts", + "shallots", + "garlic cloves", + "hot red pepper flakes", + "parmigiano reggiano cheese", + "salt", + "grape tomatoes", + "olive oil", + "linguine", + "collard greens", + "water", + "bacon slices", + "rib" + ] + }, + { + "id": 37739, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "water", + "beef brisket", + "lime wedges", + "canola oil", + "white onion", + "thai basil", + "shrimp paste", + "red pepper flakes", + "sugar", + "lemongrass", + "oxtails", + "rice noodles", + "sliced green onions", + "minced garlic", + "annatto seeds", + "shallots", + "meat bones" + ] + }, + { + "id": 3588, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "grated parmesan cheese", + "freshly ground pepper", + "unsalted butter", + "dry bread crumbs", + "asparagus", + "extra-virgin olive oil", + "gray salt", + "minced garlic", + "finely chopped fresh parsley", + "grated lemon zest" + ] + }, + { + "id": 45997, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "cayenne pepper", + "bell pepper", + "skinless chicken breasts", + "broccoli florets", + "smoked paprika", + "chili powder", + "cumin" + ] + }, + { + "id": 48761, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "tilapia", + "lettuce", + "paprika", + "thousand island dressing", + "chili powder", + "taco seasoning", + "tomatoes", + "salsa", + "corn tortillas" + ] + }, + { + "id": 10402, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "egg whites", + "garlic", + "raw almond", + "boiling water", + "soy sauce", + "vegetable oil", + "shrimp", + "mung bean sprouts", + "rock shrimp", + "water chestnuts", + "salt", + "celery", + "asian wheat noodles", + "dry sherry", + "corn starch", + "onions" + ] + }, + { + "id": 17324, + "cuisine": "cajun_creole", + "ingredients": [ + "lean ground meat", + "ginger", + "garlic cloves", + "beef stock", + "chopped celery", + "mustard seeds", + "red pepper flakes", + "rice", + "ground cumin", + "cooking oil", + "peas", + "carrots" + ] + }, + { + "id": 16272, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "tomato sauce", + "cheese", + "fresh mushrooms", + "onions", + "fresh basil", + "chopped fresh thyme", + "beef broth", + "carrots", + "tomato paste", + "pepper", + "salt", + "garlic cloves", + "tomato purée", + "ground pork", + "fresh oregano", + "ground beef" + ] + }, + { + "id": 4893, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "epazote", + "lime juice", + "chopped cilantro fresh", + "kosher salt", + "garlic cloves", + "avocado", + "tomatillos", + "serrano chile" + ] + }, + { + "id": 10348, + "cuisine": "chinese", + "ingredients": [ + "chili oil", + "rice vinegar", + "soy sauce" + ] + }, + { + "id": 8334, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "red pepper", + "celery", + "red kidney beans", + "bay leaves", + "salt", + "onions", + "cooked rice", + "Tabasco Pepper Sauce", + "thyme", + "oregano", + "liquid smoke", + "bell pepper", + "garlic", + "chipotle peppers" + ] + }, + { + "id": 10133, + "cuisine": "italian", + "ingredients": [ + "chives", + "thyme", + "extra-virgin olive oil", + "penne", + "ricotta", + "basil", + "flat leaf parsley" + ] + }, + { + "id": 22829, + "cuisine": "filipino", + "ingredients": [ + "pork tenderloin", + "cabbage", + "soy sauce", + "carrots", + "chicken broth", + "garlic", + "canton noodles", + "onions" + ] + }, + { + "id": 25809, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "ground allspice", + "pork shoulder boston butt", + "thyme sprigs", + "chopped fresh thyme", + "garlic cloves", + "lard", + "rosemary sprigs", + "chopped fresh sage", + "fat", + "herbes de provence", + "bay leaves", + "ground coriander", + "coarse kosher salt", + "onions" + ] + }, + { + "id": 14102, + "cuisine": "italian", + "ingredients": [ + "reduced sodium chicken broth", + "lean ground beef", + "fresh oregano", + "pasta", + "finely chopped onion", + "salt", + "escarole", + "ground black pepper", + "vegetable oil", + "carrots", + "eggs", + "grated parmesan cheese", + "dry bread crumbs", + "flat leaf parsley" + ] + }, + { + "id": 17444, + "cuisine": "spanish", + "ingredients": [ + "cracked black pepper", + "french baguette", + "garlic cloves", + "tomatoes", + "extra-virgin olive oil", + "kosher salt" + ] + }, + { + "id": 42567, + "cuisine": "korean", + "ingredients": [ + "vegetable oil", + "scallions", + "salt", + "large eggs", + "carrots" + ] + }, + { + "id": 38474, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "Marcona almonds", + "sherry vinegar", + "garlic cloves", + "olive oil", + "salt", + "head cauliflower", + "red bell pepper" + ] + }, + { + "id": 43133, + "cuisine": "italian", + "ingredients": [ + "fettuccine pasta", + "fresh mushrooms", + "butter", + "grated parmesan cheese", + "medium shrimp", + "heavy cream" + ] + }, + { + "id": 17632, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "flour", + "garlic", + "chopped cilantro", + "fresh ginger", + "vegetable oil", + "chickpeas", + "green chile", + "lemon wedge", + "salt", + "onions", + "garam masala", + "butter", + "fresh lemon juice" + ] + }, + { + "id": 4730, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "parmigiano reggiano cheese", + "spaghetti", + "water", + "salt", + "fresh basil", + "extra-virgin olive oil", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 49067, + "cuisine": "mexican", + "ingredients": [ + "light brown sugar", + "butter", + "semisweet chocolate", + "salt", + "ground cinnamon", + "whipping cream", + "almond extract" + ] + }, + { + "id": 26622, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "dried basil", + "instant yeast", + "salt", + "italian tomatoes", + "freshly grated parmesan", + "large garlic cloves", + "oregano", + "sugar", + "olive oil", + "artichok heart marin", + "hot water", + "yellow corn meal", + "mozzarella cheese", + "finely chopped onion", + "all purpose unbleached flour" + ] + }, + { + "id": 45010, + "cuisine": "korean", + "ingredients": [ + "garlic chives", + "salt", + "canola oil", + "eggs", + "chili paste", + "scallions", + "cooked rice", + "sesame oil", + "kimchi", + "scallion greens", + "soy sauce", + "seaweed", + "chicken" + ] + }, + { + "id": 14961, + "cuisine": "japanese", + "ingredients": [ + "tumeric", + "whole wheat flour", + "seeds", + "butter oil", + "plain flour", + "amchur", + "coriander powder", + "cornflour", + "lentils", + "water", + "garam masala", + "chili powder", + "oil", + "red chili powder", + "semolina", + "yoghurt", + "salt" + ] + }, + { + "id": 47804, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "lamb loin chops", + "olive oil", + "canned tomatoes", + "dried rosemary", + "dried thyme", + "baking potatoes", + "onions", + "ground black pepper", + "salt" + ] + }, + { + "id": 23454, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "diced tomatoes", + "ground beef", + "pepper", + "garlic powder", + "whole kernel corn, drain", + "taco seasoning mix", + "salt", + "onions", + "corn mix muffin", + "sliced black olives", + "hot water" + ] + }, + { + "id": 8603, + "cuisine": "russian", + "ingredients": [ + "veal tongue", + "hot red pepper flakes", + "beef broth", + "clove", + "horseradish", + "large garlic cloves", + "sour cream", + "sweet gherkin", + "lettuce leaves", + "California bay leaves", + "cold water", + "unflavored gelatin", + "vegetable oil", + "fresh lemon juice" + ] + }, + { + "id": 43810, + "cuisine": "french", + "ingredients": [ + "olive oil", + "toasted baguette", + "chopped cilantro fresh", + "edible flowers", + "chopped fresh thyme", + "chopped fresh mint", + "fresh rosemary", + "vegetables", + "soft fresh goat cheese", + "plain yogurt", + "chopped fresh chives", + "flat leaf parsley" + ] + }, + { + "id": 21402, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "garlic cloves", + "salt", + "cashew nuts", + "ginger", + "coriander", + "bird pepper", + "oil" + ] + }, + { + "id": 13350, + "cuisine": "japanese", + "ingredients": [ + "firm tofu", + "soy sauce", + "nori", + "green onions", + "frozen edamame beans", + "red miso" + ] + }, + { + "id": 23881, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "juice", + "vodka", + "crushed red pepper", + "fresh basil", + "diced tomatoes", + "chicken", + "grated parmesan cheese", + "penne pasta" + ] + }, + { + "id": 37338, + "cuisine": "mexican", + "ingredients": [ + "vanilla extract", + "milk chocolate chips", + "cayenne pepper", + "cinnamon", + "sweetened condensed milk" + ] + }, + { + "id": 2446, + "cuisine": "filipino", + "ingredients": [ + "oil", + "meat", + "water", + "salt" + ] + }, + { + "id": 30570, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "chili sauce", + "chicken wings", + "lime juice", + "water", + "fish sauce", + "garlic" + ] + }, + { + "id": 17873, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "lemongrass", + "ginger", + "green chilies", + "onions", + "fish sauce", + "sweet potatoes", + "cilantro leaves", + "oil", + "ground cumin", + "fresh basil", + "bell pepper", + "garlic", + "ground coriander", + "chicken", + "lime zest", + "fresh coriander", + "soft tofu", + "broccoli", + "green beans" + ] + }, + { + "id": 37921, + "cuisine": "irish", + "ingredients": [ + "shallots", + "mayonaise", + "fresh lemon juice", + "ground pepper", + "fresh dill", + "salt" + ] + }, + { + "id": 21370, + "cuisine": "french", + "ingredients": [ + "water", + "dry mustard", + "veal stock", + "shallots", + "purple onion", + "haricots verts", + "vegetable oil", + "leeks", + "white wine vinegar" + ] + }, + { + "id": 3642, + "cuisine": "italian", + "ingredients": [ + "pasta", + "cannellini beans", + "olive oil", + "oil", + "pesto sauce", + "dry white wine", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 29751, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "butter", + "hot sauce", + "fresh parsley", + "cooked rice", + "salt", + "cayenne pepper", + "onions", + "celery ribs", + "crawfish", + "onion tops", + "shrimp", + "lump crab meat", + "all-purpose flour", + "lemon juice" + ] + }, + { + "id": 10395, + "cuisine": "thai", + "ingredients": [ + "sweet chili sauce", + "garlic", + "onions", + "fish sauce", + "lime juice", + "oil", + "roasted cashews", + "ground chicken", + "cilantro leaves", + "butter lettuce", + "sweet soy sauce", + "white sesame seeds" + ] + }, + { + "id": 11152, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "salt", + "baking powder", + "all-purpose flour", + "serrano peppers", + "yellow split peas", + "garlic", + "oil" + ] + }, + { + "id": 39606, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "extra-virgin olive oil", + "fresh lime juice", + "chopped tomatoes", + "rice", + "corn kernel whole", + "minced garlic", + "salt", + "chopped cilantro fresh", + "chicken broth", + "shallots", + "carrots" + ] + }, + { + "id": 25765, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "paprika", + "ground ginger", + "curry powder", + "ground turmeric", + "water", + "boneless skinless chicken breast halves", + "ground cinnamon", + "red pepper flakes" + ] + }, + { + "id": 28654, + "cuisine": "thai", + "ingredients": [ + "splenda", + "chili garlic paste", + "minced garlic", + "salt", + "toasted sesame seeds", + "soy sauce", + "sesame oil", + "cucumber", + "thai basil", + "rice vinegar" + ] + }, + { + "id": 19049, + "cuisine": "greek", + "ingredients": [ + "water", + "balsamic vinegar", + "garlic cloves", + "fresh dill", + "finely chopped onion", + "chopped celery", + "feta cheese crumbles", + "dried lentils", + "ground black pepper", + "extra-virgin olive oil", + "carrots", + "tomato sauce", + "bay leaves", + "salt", + "dried red chile peppers" + ] + }, + { + "id": 4953, + "cuisine": "mexican", + "ingredients": [ + "frozen whole kernel corn", + "chopped onion", + "vegetable oil", + "corn tortillas", + "zucchini", + "enchilada sauce", + "fresh spinach", + "cilantro leaves", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 44412, + "cuisine": "japanese", + "ingredients": [ + "milk", + "ghee", + "raisins", + "bottle gourd", + "palm sugar", + "cashew nuts", + "ground cardamom" + ] + }, + { + "id": 5494, + "cuisine": "filipino", + "ingredients": [ + "black pepper", + "shredded cabbage", + "scallions", + "soy sauce", + "rice sticks", + "garlic", + "snow peas", + "lime", + "sesame oil", + "shrimp", + "aleppo pepper", + "shredded carrots", + "chopped onion", + "chicken" + ] + }, + { + "id": 32032, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "crème fraîche", + "vanilla ice cream", + "golden delicious apples", + "ground allspice", + "sugar", + "salt", + "pomegranate juice", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 20741, + "cuisine": "mexican", + "ingredients": [ + "pomegranate seeds", + "serrano chile", + "red grape", + "peaches", + "avocado", + "purple onion" + ] + }, + { + "id": 25854, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "shallots", + "white rice", + "coconut milk", + "fresh red chili", + "lime", + "banana leaves", + "tilapia", + "coconut juice", + "shredded coconut", + "chili powder", + "garlic", + "kaffir lime leaves", + "basil leaves", + "ginger", + "ground coriander" + ] + }, + { + "id": 10156, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "white rice", + "smoked paprika", + "tomato sauce", + "chili powder", + "salt", + "chicken broth", + "poblano peppers", + "garlic", + "ground cumin", + "pepper", + "diced tomatoes", + "yellow onion" + ] + }, + { + "id": 25305, + "cuisine": "southern_us", + "ingredients": [ + "Japanese turnips", + "crushed red pepper", + "fresh dill", + "extra-virgin olive oil", + "carrots", + "ground black pepper", + "garlic cloves", + "kosher salt", + "white wine vinegar", + "ground cumin" + ] + }, + { + "id": 15679, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "jelly", + "sweet potatoes or yams", + "red wine vinegar", + "lime juice", + "salt" + ] + }, + { + "id": 48443, + "cuisine": "indian", + "ingredients": [ + "water", + "cilantro leaves", + "lemon", + "halibut steak", + "chile pepper", + "fresh lemon juice", + "salt", + "fresh mint" + ] + }, + { + "id": 36816, + "cuisine": "cajun_creole", + "ingredients": [ + "salt", + "spices", + "long grain white rice", + "salad oil", + "vegetable broth" + ] + }, + { + "id": 29261, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "cinnamon sticks", + "vanilla extract", + "milk", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 45164, + "cuisine": "italian", + "ingredients": [ + "anchovies", + "crushed red pepper", + "tomatoes", + "grated parmesan cheese", + "garlic cloves", + "broccoli rabe", + "penne pasta", + "fresh basil", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 39939, + "cuisine": "italian", + "ingredients": [ + "lower sodium chicken broth", + "kosher salt", + "pearl barley", + "boiling water", + "dried porcini mushrooms", + "pecorino romano cheese", + "flat leaf parsley", + "brandy", + "olive oil", + "garlic cloves", + "cremini mushrooms", + "water", + "chopped onion" + ] + }, + { + "id": 3214, + "cuisine": "indian", + "ingredients": [ + "ground chicken", + "jalapeno chilies", + "garlic", + "cumin seed", + "mint", + "garam masala", + "vegetable oil", + "dry bread crumbs", + "chopped cilantro", + "fresh ginger", + "mango chutney", + "salt", + "ground cardamom", + "cheddar cheese", + "large eggs", + "paprika", + "chopped onion" + ] + }, + { + "id": 15601, + "cuisine": "french", + "ingredients": [ + "fresh thyme", + "bacon", + "bone in skin on chicken thigh", + "chicken broth", + "butter", + "all-purpose flour", + "kosher salt", + "red wine", + "yellow onion", + "shallots", + "button mushrooms" + ] + }, + { + "id": 40785, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "sugar", + "baking powder", + "unsalted butter", + "all-purpose flour", + "whole wheat pastry flour", + "buttermilk" + ] + }, + { + "id": 15297, + "cuisine": "mexican", + "ingredients": [ + "honey", + "cranberries", + "jalapeno chilies", + "fresh lime juice", + "triple sec", + "tequila", + "cilantro leaves" + ] + }, + { + "id": 12463, + "cuisine": "italian", + "ingredients": [ + "Italian bread", + "part-skim mozzarella cheese", + "prepar pesto", + "plum tomatoes", + "basil leaves" + ] + }, + { + "id": 37397, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "russet potatoes", + "cayenne pepper", + "evaporated milk", + "garlic", + "seasoning salt", + "butter", + "dried parsley", + "ground black pepper", + "purple onion" + ] + }, + { + "id": 6257, + "cuisine": "italian", + "ingredients": [ + "pesto", + "non-fat sour cream", + "flat leaf parsley", + "fat-free cottage cheese", + "lemon juice", + "snow peas", + "cracked black pepper", + "hot water", + "kosher salt", + "bow-tie pasta", + "frozen peas" + ] + }, + { + "id": 21796, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "green onions", + "corn starch", + "fresh ginger", + "oyster sauce", + "fresh cilantro", + "garlic cloves", + "cooking oil", + "shrimp" + ] + }, + { + "id": 44282, + "cuisine": "italian", + "ingredients": [ + "water", + "chardonnay", + "hot red pepper flakes", + "squid", + "tomatoes", + "olive oil", + "juice", + "parsley sprigs", + "garlic cloves" + ] + }, + { + "id": 2495, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "seeds", + "coriander", + "papad", + "oil", + "chili powder" + ] + }, + { + "id": 27393, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "fresh lemon juice", + "black pepper", + "salt", + "orange zest", + "saffron threads", + "fresh orange juice", + "hot water", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 35357, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "unsweetened cocoa powder", + "semisweet chocolate", + "calimyrna figs", + "unsalted butter", + "toasted walnuts", + "light corn syrup", + "cognac" + ] + }, + { + "id": 239, + "cuisine": "moroccan", + "ingredients": [ + "egg whites", + "sugar", + "sweet potatoes", + "sliced almonds", + "vanilla extract", + "cooking spray" + ] + }, + { + "id": 33413, + "cuisine": "southern_us", + "ingredients": [ + "bread crumbs", + "salt", + "green tomatoes", + "ground black pepper", + "white sugar", + "vegetable oil" + ] + }, + { + "id": 32511, + "cuisine": "french", + "ingredients": [ + "dried tarragon leaves", + "cooking spray", + "garlic cloves", + "ground black pepper", + "shallots", + "dried parsley", + "pernod", + "dry white wine", + "fresh lemon juice", + "tomatoes", + "french bread", + "butter", + "large shrimp" + ] + }, + { + "id": 11655, + "cuisine": "italian", + "ingredients": [ + "soup pasta", + "olive oil", + "zucchini", + "red wine", + "green beans", + "pepper", + "garbanzo beans", + "cannellini beans", + "salt", + "onions", + "fresh rosemary", + "chopped tomatoes", + "fresh thyme", + "garlic", + "bay leaf", + "water", + "parmesan cheese", + "napa cabbage", + "fresh oregano" + ] + }, + { + "id": 44701, + "cuisine": "southern_us", + "ingredients": [ + "bread crumb fresh", + "salt", + "vegetable oil", + "boneless skinless chicken breast halves", + "black pepper", + "buttermilk", + "cayenne", + "hot sauce" + ] + }, + { + "id": 1366, + "cuisine": "mexican", + "ingredients": [ + "fat free less sodium chicken broth", + "chopped onion", + "cider vinegar", + "garlic cloves", + "cooking spray", + "pork shoulder boston butt", + "chiles", + "salt", + "dried oregano" + ] + }, + { + "id": 27969, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "parmesan cheese", + "butter", + "red bell pepper", + "tomatoes", + "white wine", + "parsley", + "garlic", + "jumbo shrimp", + "low sodium chicken broth", + "heavy cream", + "steak", + "fettucine", + "olive oil", + "cajun seasoning", + "purple onion" + ] + }, + { + "id": 21486, + "cuisine": "italian", + "ingredients": [ + "low sodium broth", + "olive oil", + "baby spinach", + "pepper", + "boneless skinless chicken breasts", + "salt", + "penne", + "dry white wine", + "garlic", + "grape tomatoes", + "parmesan cheese", + "butter" + ] + }, + { + "id": 4476, + "cuisine": "southern_us", + "ingredients": [ + "crisps", + "lemon zest", + "sweet potatoes", + "cardamom", + "brown sugar", + "milk", + "potatoes", + "salt", + "cinnamon sticks", + "sugar", + "granulated sugar", + "flour", + "grated nutmeg", + "water", + "large eggs", + "butter", + "lemon juice" + ] + }, + { + "id": 39219, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "salt", + "daikon", + "ground black pepper", + "rice vinegar" + ] + }, + { + "id": 3563, + "cuisine": "japanese", + "ingredients": [ + "peeled fresh ginger", + "scallions", + "tomatoes", + "sesame oil", + "soy sauce", + "cilantro leaves", + "seedless cucumber", + "sushi grade tuna" + ] + }, + { + "id": 45492, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "cassia cinnamon", + "star anise", + "pork belly", + "spring onions", + "greens", + "sugar", + "Shaoxing wine", + "salt", + "chicken stock", + "cooking oil", + "ginger" + ] + }, + { + "id": 21570, + "cuisine": "mexican", + "ingredients": [ + "water", + "all-purpose flour", + "butter", + "white sugar", + "chopped almonds", + "confectioners sugar", + "vanilla extract" + ] + }, + { + "id": 37237, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "lemongrass", + "salt", + "water", + "boneless skinless chicken breasts", + "garlic cloves", + "sugar", + "cooking oil", + "scallions", + "fish sauce", + "curry powder", + "shallots" + ] + }, + { + "id": 22090, + "cuisine": "british", + "ingredients": [ + "cheddar cheese", + "worcestershire sauce", + "onions", + "white bread", + "ground nutmeg", + "dry sherry", + "milk", + "bacon", + "eggs", + "dijon mustard", + "softened butter" + ] + }, + { + "id": 8101, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "roma tomatoes", + "salt", + "olive oil", + "cilantro", + "cumin", + "lime", + "jalapeno chilies", + "yellow onion", + "poblano peppers", + "garlic" + ] + }, + { + "id": 32020, + "cuisine": "italian", + "ingredients": [ + "baby portobello mushrooms", + "boneless skinless chicken breasts", + "sharp cheddar cheese", + "spinach", + "grated parmesan cheese", + "salt", + "pepper", + "butter", + "cream of mushroom soup", + "lasagna noodles", + "reduced-fat sour cream" + ] + }, + { + "id": 7586, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "salt", + "minced garlic", + "pinenuts", + "perilla", + "extra-virgin olive oil" + ] + }, + { + "id": 10742, + "cuisine": "russian", + "ingredients": [ + "sugar", + "yeast", + "rye bread", + "water", + "raisins" + ] + }, + { + "id": 34844, + "cuisine": "moroccan", + "ingredients": [ + "fennel seeds", + "white peppercorns", + "coriander seeds", + "kosher salt", + "canola oil", + "sea scallops" + ] + }, + { + "id": 36319, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "butter", + "lard", + "baking powder", + "all-purpose flour", + "buttermilk" + ] + }, + { + "id": 2059, + "cuisine": "mexican", + "ingredients": [ + "topping", + "flour tortillas", + "vegetable oil", + "lemon juice", + "monterey jack", + "chicken broth", + "refried beans", + "chicken breasts", + "long-grain rice", + "chopped cilantro", + "avocado", + "shredded cheddar cheese", + "green onions", + "shredded lettuce", + "sour cream", + "tomatoes", + "sliced black olives", + "chile pepper", + "enchilada sauce", + "onions" + ] + }, + { + "id": 14364, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "hoisin sauce", + "honey", + "garlic", + "pork belly", + "rice wine", + "granulated sugar", + "chinese five-spice powder" + ] + }, + { + "id": 30509, + "cuisine": "french", + "ingredients": [ + "half & half", + "fresh lemon juice", + "sugar", + "salt", + "butter", + "corn starch", + "egg yolks", + "grated lemon zest" + ] + }, + { + "id": 48155, + "cuisine": "cajun_creole", + "ingredients": [ + "large eggs", + "confectioners sugar", + "unsalted butter", + "fine sea salt", + "canola oil", + "heavy cream", + "yeast", + "granulated sugar", + "all-purpose flour" + ] + }, + { + "id": 15582, + "cuisine": "italian", + "ingredients": [ + "sugar", + "instant yeast", + "eggs", + "milk", + "bread flour", + "water", + "salt", + "nonpareils", + "unsalted butter" + ] + }, + { + "id": 38482, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "celery seed", + "mayonaise", + "salt", + "cider vinegar", + "sugar", + "creole seasoning" + ] + }, + { + "id": 21118, + "cuisine": "italian", + "ingredients": [ + "pasta", + "water", + "grated parmesan cheese", + "cream", + "artichoke hearts", + "flat leaf parsley", + "marsala wine", + "olive oil", + "mushrooms", + "kosher salt", + "ground black pepper", + "onions" + ] + }, + { + "id": 47723, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "pineapple", + "fresh ginger", + "dark rum", + "water" + ] + }, + { + "id": 8557, + "cuisine": "japanese", + "ingredients": [ + "white rice", + "cucumber", + "sugar", + "sushi nori", + "smoked salmon", + "rice vinegar", + "kosher salt", + "cream cheese" + ] + }, + { + "id": 40231, + "cuisine": "mexican", + "ingredients": [ + "bacon", + "onions", + "beans", + "garlic", + "chopped green bell pepper", + "enchilada sauce", + "firmly packed brown sugar", + "dry mustard", + "( oz.) tomato paste" + ] + }, + { + "id": 6854, + "cuisine": "jamaican", + "ingredients": [ + "chicken stock", + "coriander seeds", + "peanut oil", + "spanish onion", + "heavy cream", + "coconut milk", + "bottled clam juice", + "seeds", + "garlic cloves", + "frozen chopped spinach", + "lime", + "salt", + "ground cumin" + ] + }, + { + "id": 30799, + "cuisine": "mexican", + "ingredients": [ + "frozen corn", + "ground beef", + "tortilla chips", + "ground cumin", + "salsa", + "monterey jack", + "chili powder", + "sour cream" + ] + }, + { + "id": 15635, + "cuisine": "italian", + "ingredients": [ + "spinach leaves", + "parmesan cheese", + "diced tomatoes", + "carrots", + "dried basil", + "cannellini beans", + "salt", + "pepper", + "low sodium chicken broth", + "garlic", + "italian chicken sausage", + "shell pasta", + "yellow onion" + ] + }, + { + "id": 13208, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "vanilla extract", + "sugar", + "whole milk", + "all-purpose flour", + "vanilla ice cream", + "large eggs", + "salt", + "golden brown sugar", + "baking powder" + ] + }, + { + "id": 9371, + "cuisine": "italian", + "ingredients": [ + "pepper", + "ricotta cheese", + "grated romano cheese", + "chopped parsley", + "water", + "salt", + "eggs", + "flour" + ] + }, + { + "id": 21560, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "cheese tortellini", + "green onions", + "red bell pepper", + "butter", + "heavy whipping cream", + "ground walnuts", + "garlic" + ] + }, + { + "id": 28949, + "cuisine": "french", + "ingredients": [ + "honey", + "baking powder", + "all-purpose flour", + "eggs", + "dark rum", + "raisins", + "white sugar", + "light cream", + "butter", + "chopped walnuts", + "candied orange peel", + "golden raisins", + "vanilla extract" + ] + }, + { + "id": 39411, + "cuisine": "korean", + "ingredients": [ + "hamburger buns", + "napa cabbage", + "sliced green onions", + "minced garlic", + "garlic chili sauce", + "soy sauce", + "seasoned rice wine vinegar", + "chuck", + "mayonaise", + "fresh ginger", + "toasted sesame oil" + ] + }, + { + "id": 32930, + "cuisine": "british", + "ingredients": [ + "pure vanilla extract", + "large eggs", + "sauce", + "pitted date", + "salt", + "sugar", + "baking powder", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 23243, + "cuisine": "italian", + "ingredients": [ + "sweet onion", + "salt", + "small red potato", + "dough", + "olive oil", + "provolone cheese", + "vegetable oil cooking spray", + "balsamic vinegar", + "garlic cloves", + "yellow squash", + "dri leav thyme", + "red bell pepper" + ] + }, + { + "id": 4851, + "cuisine": "mexican", + "ingredients": [ + "jalape", + "bay leaf", + "chorizo sausage", + "olive oil", + "sour cream", + "chopped cilantro fresh", + "hot pepper sauce", + "fresh lime juice", + "dried oregano", + "dried black beans", + "garlic cloves", + "onions", + "ground cumin" + ] + }, + { + "id": 49697, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "bread crumbs", + "salt", + "eggs", + "crushed red pepper flakes", + "double crust pie", + "asiago", + "pastry", + "ground pork" + ] + }, + { + "id": 13912, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "bay leaves", + "diced tomatoes", + "creole seasoning", + "celery", + "cayenne", + "dry white wine", + "salt", + "shrimp", + "shrimp stock", + "bell pepper", + "worcestershire sauce", + "hot sauce", + "thyme", + "pepper", + "green onions", + "garlic", + "oil", + "onions" + ] + }, + { + "id": 25516, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "basil pesto sauce", + "parmesan cheese" + ] + }, + { + "id": 9725, + "cuisine": "indian", + "ingredients": [ + "jasmine rice", + "butter", + "bay leaf", + "curry powder", + "light coconut milk", + "water", + "vegetable broth", + "onions", + "golden raisins", + "salt" + ] + }, + { + "id": 44233, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "cilantro", + "pickles", + "ground cumin", + "mayonaise", + "salt", + "prepared mustard" + ] + }, + { + "id": 9168, + "cuisine": "french", + "ingredients": [ + "reduced sodium chicken broth", + "extra-virgin olive oil", + "onions", + "oil-cured black olives", + "California bay leaves", + "lamb shoulder chops", + "thyme sprigs", + "dry white wine", + "garlic cloves", + "boiling potatoes" + ] + }, + { + "id": 40568, + "cuisine": "mexican", + "ingredients": [ + "slaw mix", + "chopped cilantro fresh", + "Kraft Mayonnaise", + "corn tortillas", + "tilapia fillets", + "KRAFT Mexican Style Finely Shredded Four Cheese", + "Taco Bell Taco Seasoning Mix", + "fresh lime juice" + ] + }, + { + "id": 43510, + "cuisine": "greek", + "ingredients": [ + "alfalfa sprouts", + "sliced turkey", + "hummus", + "cucumber", + "whole wheat pita pockets", + "plum tomatoes" + ] + }, + { + "id": 10289, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "chinese sausage", + "giblet", + "freshly ground pepper", + "chestnuts", + "shiitake", + "vegetable oil", + "edamame", + "boiling water", + "soy sauce", + "Shaoxing wine", + "sticky rice", + "toasted sesame oil", + "chicken stock", + "light soy sauce", + "rice wine", + "salt", + "dried shrimp" + ] + }, + { + "id": 48672, + "cuisine": "british", + "ingredients": [ + "pure vanilla extract", + "unsalted butter", + "all-purpose flour", + "pitted date", + "baking powder", + "ground allspice", + "light brown sugar", + "large eggs", + "sauce", + "baking soda", + "coarse salt" + ] + }, + { + "id": 12012, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "vegetable stock", + "green pepper", + "bay leaf", + "cumin", + "ground cinnamon", + "fresh ginger", + "ginger", + "lamb", + "coriander", + "tomatoes", + "honey", + "red pepper", + "sour cherries", + "fresh parsley", + "white onion", + "vinegar", + "salt", + "carrots", + "chopped cilantro fresh" + ] + }, + { + "id": 37093, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "low-sodium fat-free chicken broth", + "frozen corn", + "cumin", + "green chile", + "salsa verde", + "cilantro", + "onions", + "olive oil", + "diced tomatoes", + "sauce", + "tomato sauce", + "boneless skinless chicken breasts", + "garlic", + "oregano" + ] + }, + { + "id": 19731, + "cuisine": "moroccan", + "ingredients": [ + "minced garlic", + "cayenne", + "salt", + "greek yogurt", + "fresh parsley", + "ground ginger", + "curry powder", + "nonfat powdered milk", + "freshly ground pepper", + "fresh mint", + "chopped fresh mint", + "warm water", + "ground black pepper", + "purple onion", + "lemon juice", + "ground beef", + "ground cumin", + "pita bread", + "olive oil", + "paprika", + "english cucumber", + "couscous", + "chopped cilantro fresh" + ] + }, + { + "id": 23666, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "pepper", + "chili powder", + "corn starch", + "soy sauce", + "fresh ginger", + "salt", + "onions", + "sugar", + "olive oil", + "garlic", + "red bell pepper", + "chicken broth", + "white wine", + "pork tenderloin", + "hot sauce" + ] + }, + { + "id": 8951, + "cuisine": "french", + "ingredients": [ + "skim milk", + "agar", + "strawberries", + "fresh basil", + "honey", + "balsamic vinegar", + "confectioners sugar", + "vanilla beans", + "half & half", + "goat cheese", + "lemon thyme", + "ground black pepper", + "vanilla extract" + ] + }, + { + "id": 43227, + "cuisine": "french", + "ingredients": [ + "chicken stock", + "zucchini", + "garlic", + "celery", + "pancetta", + "kosher salt", + "basil", + "yellow onion", + "plum tomatoes", + "beans", + "grated parmesan cheese", + "canned tomatoes", + "spaghetti", + "savoy cabbage", + "ground black pepper", + "extra-virgin olive oil", + "carrots" + ] + }, + { + "id": 36432, + "cuisine": "italian", + "ingredients": [ + "brown rice syrup", + "whole wheat pastry flour", + "sea salt", + "avocado", + "erythritol", + "almond extract", + "unsweetened almond milk", + "pignolis", + "almond meal", + "semolina flour", + "baking powder" + ] + }, + { + "id": 13795, + "cuisine": "french", + "ingredients": [ + "caraway seeds", + "pepper", + "bacon slices", + "canola oil", + "wine", + "pork tenderloin", + "chopped onion", + "lower sodium chicken broth", + "sauerkraut", + "salt", + "juniper berries", + "butter", + "cabbage" + ] + }, + { + "id": 12127, + "cuisine": "southern_us", + "ingredients": [ + "lemon", + "boiling water", + "sugar" + ] + }, + { + "id": 45740, + "cuisine": "mexican", + "ingredients": [ + "ground chuck", + "chili powder", + "onions", + "large eggs", + "cheese", + "bread crumbs", + "bacon", + "chorizo sausage", + "jalapeno chilies", + "taco seasoning" + ] + }, + { + "id": 28074, + "cuisine": "brazilian", + "ingredients": [ + "cachaca", + "sugar", + "ice", + "lime" + ] + }, + { + "id": 17299, + "cuisine": "italian", + "ingredients": [ + "egg substitute", + "chopped fresh thyme", + "salt", + "thyme sprigs", + "cooking spray", + "bacon slices", + "reduced fat swiss cheese", + "mushrooms", + "1% low-fat milk", + "chopped onion", + "ground black pepper", + "butter", + "ciabatta" + ] + }, + { + "id": 19224, + "cuisine": "southern_us", + "ingredients": [ + "muscadine grapes", + "boiling water", + "chambord", + "red raspberries", + "granulated sugar", + "vodka", + "navel oranges" + ] + }, + { + "id": 13622, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "serrano chile", + "fresh lime juice", + "salt", + "plum tomatoes", + "ground black pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 36875, + "cuisine": "italian", + "ingredients": [ + "honey", + "garlic", + "marsala wine" + ] + }, + { + "id": 20281, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "cajun seasoning", + "hot sauce", + "shrimp", + "celery ribs", + "flour", + "shellfish", + "peanut oil", + "file powder", + "worcestershire sauce", + "green pepper", + "onions", + "andouille sausage", + "green onions", + "salt", + "garlic cloves" + ] + }, + { + "id": 7845, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "green onions", + "reduced sodium soy sauce", + "purple onion", + "cayenne", + "garlic", + "white vinegar", + "roma tomatoes", + "cucumber" + ] + }, + { + "id": 22965, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "baby arugula", + "extra-virgin olive oil", + "large shrimp", + "homemade chicken stock", + "shallots", + "garlic cloves", + "parmigiano-reggiano cheese", + "dry white wine", + "salt", + "ground black pepper", + "butter", + "carnaroli rice" + ] + }, + { + "id": 23351, + "cuisine": "russian", + "ingredients": [ + "mayonaise", + "salt", + "black pepper", + "pomegranate juice", + "red wine vinegar", + "pork", + "onions" + ] + }, + { + "id": 21827, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "taco seasoning", + "cream of chicken soup", + "sour cream", + "milk", + "shredded cheese", + "cooked chicken", + "doritos" + ] + }, + { + "id": 45162, + "cuisine": "italian", + "ingredients": [ + "baby spinach leaves", + "dry white wine", + "garlic", + "grape tomatoes", + "french bread", + "red pepper flakes", + "thyme", + "chicken broth", + "olive oil", + "red wine vinegar", + "salt", + "sugar", + "leeks", + "bacon", + "noodles" + ] + }, + { + "id": 42907, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "freshly ground pepper", + "garam masala", + "fish", + "garlic paste", + "ghee", + "curry leaves", + "salt" + ] + }, + { + "id": 47758, + "cuisine": "spanish", + "ingredients": [ + "spanish onion", + "smoked paprika", + "eggs", + "potatoes", + "olive oil", + "fresh parsley", + "pepper", + "salt" + ] + }, + { + "id": 10193, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "chile pepper", + "dried red chile peppers", + "split black lentils", + "mustard seeds", + "cabbage", + "bengal gram", + "salt", + "frozen peas", + "grated coconut", + "cooking oil", + "asafoetida powder" + ] + }, + { + "id": 29840, + "cuisine": "thai", + "ingredients": [ + "pot stickers", + "soy sauce", + "salted peanuts", + "napa cabbage", + "olive oil", + "carrots" + ] + }, + { + "id": 414, + "cuisine": "mexican", + "ingredients": [ + "fresh lime", + "salt", + "jalapeno chilies", + "fresh blueberries", + "red bell pepper", + "purple onion" + ] + }, + { + "id": 11055, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "crushed tomatoes", + "salt", + "spinach", + "grated parmesan cheese", + "nonfat ricotta cheese", + "part-skim mozzarella", + "olive oil", + "olive oil cooking spray", + "pasta", + "pepper", + "garlic", + "oregano" + ] + }, + { + "id": 32637, + "cuisine": "japanese", + "ingredients": [ + "black peppercorns", + "sun-dried tomatoes", + "garlic", + "pak choi", + "soy sauce", + "miso paste", + "oyster mushrooms", + "chili flakes", + "coriander seeds", + "buckwheat noodles", + "oil", + "water", + "pink peppercorns", + "dried shiitake mushrooms" + ] + }, + { + "id": 24925, + "cuisine": "french", + "ingredients": [ + "green onions", + "cheese", + "coarse salt", + "russet potatoes", + "vegetable oil" + ] + }, + { + "id": 47271, + "cuisine": "southern_us", + "ingredients": [ + "soy sauce", + "cajun seasoning", + "beef stock", + "spaghetti", + "hard-boiled egg", + "cooked meat", + "green onions" + ] + }, + { + "id": 34246, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "garlic cloves", + "extra-virgin olive oil", + "orecchiette", + "broccoli", + "parmesan cheese", + "dried chile" + ] + }, + { + "id": 10765, + "cuisine": "indian", + "ingredients": [ + "paprika", + "serrano chile", + "cauliflower", + "ground coriander", + "plum tomatoes", + "peanut oil", + "ground turmeric", + "kosher salt", + "black mustard seeds" + ] + }, + { + "id": 6304, + "cuisine": "mexican", + "ingredients": [ + "bread crumb fresh", + "heavy cream", + "orange liqueur", + "sugar", + "unsalted butter", + "blanched almonds", + "coconut", + "vanilla", + "fresh lime juice", + "large egg yolks", + "crema", + "pears" + ] + }, + { + "id": 23949, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "sugar", + "milk chocolate kisses", + "evaporated milk", + "pecan halves", + "marshmallow creme" + ] + }, + { + "id": 11231, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "stewed tomatoes", + "garlic salt", + "honey", + "ground beef", + "shredded cheddar cheese", + "salt", + "celery salt", + "brown rice", + "onions" + ] + }, + { + "id": 31852, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "chopped green bell pepper", + "chopped celery", + "chopped onion", + "dried oregano", + "tomatoes", + "dried thyme", + "vegetable oil", + "all-purpose flour", + "rustic rub", + "dried basil", + "bay leaves", + "salt", + "scallions", + "chopped garlic", + "top round steak", + "cayenne", + "dry red wine", + "beef broth", + "fresh parsley" + ] + }, + { + "id": 38967, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "flank steak", + "minced garlic", + "ginger", + "black pepper", + "sesame oil", + "sesame seeds", + "cooking wine" + ] + }, + { + "id": 43624, + "cuisine": "korean", + "ingredients": [ + "white onion", + "garlic", + "ground ginger", + "napa cabbage", + "fish sauce", + "sea salt", + "chile powder", + "green onions", + "white sugar" + ] + }, + { + "id": 19346, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "green onions", + "ginger root", + "honey", + "boneless skinless chicken breasts", + "chopped garlic", + "brown sugar", + "olive oil", + "salt", + "soy sauce", + "flour", + "hot sauce" + ] + }, + { + "id": 1765, + "cuisine": "brazilian", + "ingredients": [ + "heavy cream", + "chocolate sprinkles", + "milk chocolate chips", + "unsalted butter", + "sweetened condensed milk", + "light corn syrup", + "unsweetened cocoa powder" + ] + }, + { + "id": 36559, + "cuisine": "italian", + "ingredients": [ + "pepper", + "fresh thyme leaves", + "onions", + "fresh basil", + "Dungeness crabs", + "salt", + "fresh oregano leaves", + "dry white wine", + "fat skimmed chicken broth", + "tomato paste", + "olive oil", + "garlic", + "fresh basil leaves" + ] + }, + { + "id": 31387, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "bacon", + "green onions", + "shredded colby" + ] + }, + { + "id": 43251, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "vegetable oil", + "avocado", + "chili", + "shrimp", + "fresh cilantro", + "orange juice", + "white onion", + "lime wedges", + "fresh lime juice" + ] + }, + { + "id": 26947, + "cuisine": "korean", + "ingredients": [ + "gochugaru", + "ginger", + "ground beef", + "sugar pea", + "rice cakes", + "scallions", + "black bean sauce", + "napa cabbage", + "white sesame seeds", + "sweet soy sauce", + "garlic" + ] + }, + { + "id": 29626, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "large eggs", + "yellow onion", + "shiitake", + "green onions", + "kosher salt", + "whole milk", + "carrots", + "white vinegar", + "asparagus", + "virgin coconut oil" + ] + }, + { + "id": 14734, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "sliced black olives", + "avocado", + "taco seasoning mix", + "lemon juice", + "refried beans", + "onion tops", + "tomatoes", + "Mexican cheese blend", + "sour cream" + ] + }, + { + "id": 23184, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "garlic", + "ground cayenne pepper", + "chicken stock", + "green onions", + "salt", + "olives", + "bay leaves", + "smoked sausage", + "onions", + "green bell pepper", + "head cauliflower", + "creole seasoning", + "chicken" + ] + }, + { + "id": 30730, + "cuisine": "mexican", + "ingredients": [ + "salt and ground black pepper", + "american cheese slices", + "chayotes", + "butter", + "eggs", + "onions" + ] + }, + { + "id": 11742, + "cuisine": "japanese", + "ingredients": [ + "sushi rice", + "ground black pepper", + "cucumber", + "grape tomatoes", + "kosher salt", + "sesame oil", + "salmon", + "green onions", + "mayonaise", + "lime juice", + "orange juice" + ] + }, + { + "id": 12879, + "cuisine": "italian", + "ingredients": [ + "baby spinach", + "chopped walnuts", + "grated parmesan cheese", + "crushed red pepper", + "garlic cloves", + "extra-virgin olive oil", + "oil", + "ricotta cheese", + "bow-tie pasta" + ] + }, + { + "id": 29078, + "cuisine": "moroccan", + "ingredients": [ + "grated carrot", + "ground cumin", + "extra-virgin olive oil", + "green olives", + "lemon juice", + "clove garlic, fine chop", + "chopped cilantro fresh" + ] + }, + { + "id": 28127, + "cuisine": "southern_us", + "ingredients": [ + "shredded lettuce", + "baguette", + "sauce", + "avocado", + "cooked bacon", + "green tomatoes" + ] + }, + { + "id": 42480, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "olive oil", + "diced tomatoes", + "chickpeas", + "capers", + "minced garlic", + "salami", + "purple onion", + "rotini", + "mustard", + "pepper", + "grated parmesan cheese", + "pitted olives", + "thyme leaves", + "pinenuts", + "honey", + "balsamic vinegar", + "salt" + ] + }, + { + "id": 35275, + "cuisine": "irish", + "ingredients": [ + "yellow corn meal", + "nonfat yogurt", + "extract", + "all-purpose flour", + "sugar", + "baking powder", + "vanilla extract", + "boiling water", + "skim milk", + "dried tart cherries", + "salt", + "vegetable oil cooking spray", + "egg whites", + "vegetable shortening", + "margarine" + ] + }, + { + "id": 42849, + "cuisine": "mexican", + "ingredients": [ + "butter", + "onions", + "cream", + "shrimp", + "garlic salt", + "colby cheese", + "crabmeat", + "dried parsley", + "flour tortillas", + "sour cream" + ] + }, + { + "id": 5744, + "cuisine": "greek", + "ingredients": [ + "phyllo dough", + "sun-dried tomatoes", + "part-skim ricotta cheese", + "garlic cloves", + "large egg whites", + "ground black pepper", + "dry bread crumbs", + "boiling water", + "frozen chopped spinach", + "olive oil", + "cooking spray", + "chopped onion", + "dried oregano", + "dried basil", + "fresh parmesan cheese", + "salt", + "nonfat ricotta cheese" + ] + }, + { + "id": 35879, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "yellow onion", + "olive oil", + "salt", + "spinach", + "ground black pepper", + "dried navy beans", + "pitted black olives", + "chees fresh mozzarella", + "italian vinaigrette" + ] + }, + { + "id": 15983, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "broccoli", + "black pepper", + "salt", + "sugar", + "extra-virgin olive oil", + "spaghetti", + "hot red pepper flakes", + "red wine", + "garlic cloves" + ] + }, + { + "id": 25331, + "cuisine": "thai", + "ingredients": [ + "peeled fresh ginger", + "red bell pepper", + "sesame oil", + "shiitake", + "large garlic cloves", + "green onions", + "bok choy" + ] + }, + { + "id": 26439, + "cuisine": "japanese", + "ingredients": [ + "wasabi paste", + "leeks", + "sesame oil", + "garlic", + "konbu", + "chicken feet", + "fresh shiitake mushrooms", + "vegetable oil", + "soft-boiled egg", + "chicken wings", + "black sesame seeds", + "ramen noodles", + "chicken stock cubes", + "onions", + "kosher salt", + "shallots", + "ginger", + "scallions" + ] + }, + { + "id": 47464, + "cuisine": "indian", + "ingredients": [ + "clove", + "fresh coriander", + "cumin seed", + "tumeric", + "salt", + "carrots", + "canola oil", + "ginger root", + "min", + "coriander seeds", + "garlic cloves", + "onions", + "green cardamom pods", + "pepper", + "lamb", + "cinnamon sticks" + ] + }, + { + "id": 29124, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "garlic", + "crushed tomatoes", + "bay leaf", + "pepper", + "salt", + "olive oil", + "oregano" + ] + }, + { + "id": 13916, + "cuisine": "italian", + "ingredients": [ + "wine", + "bay leaves", + "ground beef", + "olive oil", + "salt", + "prepared lasagne", + "pasta sauce", + "grated parmesan cheese", + "shredded mozzarella cheese", + "pepper", + "ricotta cheese", + "onions" + ] + }, + { + "id": 13918, + "cuisine": "cajun_creole", + "ingredients": [ + "salted butter", + "pure vanilla extract", + "granulated sugar", + "baking soda", + "pecans", + "half & half" + ] + }, + { + "id": 34821, + "cuisine": "vietnamese", + "ingredients": [ + "Sriracha", + "creamy peanut butter", + "hot water", + "soy sauce", + "vegetable oil", + "scallions", + "fish sauce", + "flank steak", + "dark brown sugar", + "lime juice", + "cilantro leaves", + "garlic cloves" + ] + }, + { + "id": 37265, + "cuisine": "japanese", + "ingredients": [ + "mustard", + "canola", + "ginger", + "garlic cloves", + "soy sauce", + "yuzu juice", + "squid", + "hot water", + "mayonaise", + "egg yolks", + "rice vinegar", + "lemon juice", + "dashi powder", + "sea salt", + "peanut oil", + "potato flour" + ] + }, + { + "id": 26582, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "olive oil", + "salt", + "pepper", + "tomatillos", + "onions", + "tomatoes", + "lime", + "poblano", + "jack cheese", + "serrano peppers", + "red bell pepper" + ] + }, + { + "id": 38416, + "cuisine": "italian", + "ingredients": [ + "salt", + "tomato sauce", + "grated nutmeg", + "eggs", + "all-purpose flour", + "russet potatoes", + "ground white pepper" + ] + }, + { + "id": 39529, + "cuisine": "indian", + "ingredients": [ + "boneless skinless chicken breasts", + "passata", + "masala", + "minced garlic", + "butter", + "cayenne pepper", + "vegetable oil", + "salt", + "garam masala", + "double cream", + "onions" + ] + }, + { + "id": 2370, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "paprika", + "ground red pepper", + "dried oregano", + "garlic powder", + "salt", + "pepper", + "vegetable oil", + "large shrimp" + ] + }, + { + "id": 42910, + "cuisine": "filipino", + "ingredients": [ + "granulated sugar", + "vanilla extract", + "bread flour", + "cream of tartar", + "vegetable oil", + "salt", + "baking powder", + "cake flour", + "sweetened condensed milk", + "warm water", + "yellow food coloring", + "softened butter" + ] + }, + { + "id": 43150, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "cherry tomatoes", + "red pepper flakes", + "italian seasoning", + "tomato paste", + "water", + "parmesan cheese", + "garlic cloves", + "pepper", + "olive oil", + "yellow onion", + "fresh basil", + "crushed tomatoes", + "balsamic vinegar", + "garlic salt" + ] + }, + { + "id": 33914, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salsa", + "onion powder", + "sour cream", + "ground black pepper", + "cream cheese", + "salt", + "garlic salt" + ] + }, + { + "id": 12442, + "cuisine": "southern_us", + "ingredients": [ + "green tomatoes", + "red bell pepper", + "green bell pepper", + "mustard seeds", + "white sugar", + "salt", + "onions", + "cider vinegar", + "celery seed" + ] + }, + { + "id": 48026, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "sherry vinegar", + "salt", + "cornmeal", + "minced garlic", + "yellow bell pepper", + "pizza doughs", + "black pepper", + "cooking spray", + "fresh oregano", + "fontina cheese", + "fresh parmesan cheese", + "purple onion", + "escarole" + ] + }, + { + "id": 6842, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "cheese", + "fresh mozzarella", + "pesto" + ] + }, + { + "id": 24992, + "cuisine": "russian", + "ingredients": [ + "vegetable oil", + "onions", + "warm water", + "salt", + "eggs", + "baking potatoes", + "pepper", + "all-purpose flour" + ] + }, + { + "id": 40400, + "cuisine": "french", + "ingredients": [ + "butter", + "cooking sherry", + "mace", + "chopped onion", + "water", + "salt", + "onions", + "ground black pepper", + "chicken livers" + ] + }, + { + "id": 18290, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "large eggs", + "sauce", + "fresh cilantro", + "butter", + "soy sauce", + "green onions", + "lo mein noodles", + "crushed red pepper" + ] + }, + { + "id": 34157, + "cuisine": "mexican", + "ingredients": [ + "fresh lime", + "salt", + "tomatoes", + "extra-virgin olive oil", + "cucumber", + "black pepper", + "purple onion", + "garlic salt", + "avocado", + "jalapeno chilies", + "whole kernel corn, drain" + ] + }, + { + "id": 3112, + "cuisine": "southern_us", + "ingredients": [ + "heavy cream", + "chopped pecans", + "honey", + "all-purpose flour", + "salt", + "unsalted butter", + "dark brown sugar" + ] + }, + { + "id": 39839, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "shredded sharp cheddar cheese", + "ground black pepper", + "elbow macaroni", + "evaporated milk", + "salt", + "milk", + "butter" + ] + }, + { + "id": 9525, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "Italian bread", + "extra-virgin olive oil", + "garlic cloves", + "mozzarella cheese", + "arugula" + ] + }, + { + "id": 19026, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "leeks", + "all-purpose flour", + "carrots", + "stew meat", + "unsalted butter", + "russet potatoes", + "beer", + "onions", + "tomato paste", + "ground black pepper", + "fresh thyme leaves", + "beef broth", + "bay leaf", + "kosher salt", + "half & half", + "garlic", + "fresh parsley leaves", + "frozen peas" + ] + }, + { + "id": 11905, + "cuisine": "indian", + "ingredients": [ + "store bought low sodium chicken broth", + "coriander seeds", + "crushed red pepper flakes", + "carrots", + "onions", + "celery ribs", + "curry powder", + "sweet potatoes", + "cumin seed", + "greek yogurt", + "plum tomatoes", + "kosher salt", + "ground black pepper", + "apples", + "mustard seeds", + "chicken thighs", + "red lentils", + "fresh ginger", + "vegetable oil", + "garlic cloves", + "chopped cilantro" + ] + }, + { + "id": 14222, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "water", + "bay leaves", + "white rice", + "ground coriander", + "onions", + "chicken", + "granny smith apples", + "whole cloves", + "cilantro", + "cardamom pods", + "cinnamon sticks", + "cumin", + "serrano chilies", + "coconut", + "vegetable oil", + "salt", + "garlic cloves", + "chopped cilantro fresh", + "ground cumin", + "black peppercorns", + "fresh ginger", + "large garlic cloves", + "cayenne pepper", + "fresh lemon juice", + "ground turmeric" + ] + }, + { + "id": 46496, + "cuisine": "cajun_creole", + "ingredients": [ + "cayenne pepper", + "pepper", + "oil", + "catfish", + "salt", + "corn flour" + ] + }, + { + "id": 34643, + "cuisine": "mexican", + "ingredients": [ + "manicotti shells", + "garlic", + "cream cheese", + "shredded Monterey Jack cheese", + "cooked chicken", + "shredded parmesan cheese", + "sour cream", + "jalapeno chilies", + "shredded sharp cheddar cheese", + "enchilada sauce", + "butter", + "salsa", + "onions" + ] + }, + { + "id": 48907, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "refrigerated pizza dough", + "turkey bacon", + "rosemary", + "new potatoes", + "grated parmesan cheese" + ] + }, + { + "id": 41417, + "cuisine": "southern_us", + "ingredients": [ + "simple syrup", + "branca menta", + "mint", + "bourbon whiskey" + ] + }, + { + "id": 42951, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "refried black beans", + "boneless chicken thighs", + "unsalted butter", + "jalapeno chilies", + "ground thyme", + "salt", + "yellow onion", + "lemon juice", + "tomatoes", + "cotija", + "fresh cilantro", + "radishes", + "apple cider vinegar", + "buttermilk", + "all-purpose flour", + "ground coriander", + "dried oregano", + "ground cinnamon", + "ground cloves", + "baking soda", + "large eggs", + "vegetable oil", + "ancho powder", + "hot sauce", + "garlic cloves", + "ground cumin", + "avocado", + "granulated garlic", + "black pepper", + "boneless chicken breast", + "baking powder", + "guajillo", + "maple syrup", + "cayenne pepper", + "cornmeal" + ] + }, + { + "id": 16918, + "cuisine": "greek", + "ingredients": [ + "green bell pepper", + "ground black pepper", + "salt", + "olive oil", + "kalamata", + "oregano", + "cherry tomatoes", + "lemon", + "english cucumber", + "feta cheese", + "purple onion" + ] + }, + { + "id": 43127, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "lemon juice", + "garlic puree", + "fresh mint", + "english cucumber", + "salt", + "greek yogurt" + ] + }, + { + "id": 2161, + "cuisine": "japanese", + "ingredients": [ + "salt and ground black pepper", + "cayenne pepper", + "shucked oysters", + "pickle spears", + "eggs", + "panko", + "canola oil", + "mayonaise", + "lemon" + ] + }, + { + "id": 9700, + "cuisine": "italian", + "ingredients": [ + "ground fennel", + "roasted red peppers", + "onions", + "dried thyme", + "brown lentils", + "homemade chicken stock", + "turkey", + "olive oil", + "rubbed sage" + ] + }, + { + "id": 15360, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "fresh basil leaves", + "cherry tomatoes", + "herbed goat cheese", + "black pepper", + "salt", + "crostini", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 38499, + "cuisine": "filipino", + "ingredients": [ + "light soy sauce", + "oil", + "crushed garlic", + "minced pork", + "ground black pepper", + "shao hsing wine", + "brown sugar", + "paprika" + ] + }, + { + "id": 25418, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "shredded mozzarella cheese", + "fresh basil", + "crushed red pepper flakes", + "boneless skinless chicken breasts", + "croutons", + "pasta sauce", + "garlic" + ] + }, + { + "id": 34306, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "garlic cloves", + "pitted kalamata olives", + "salt", + "arugula", + "crushed red pepper", + "gemelli", + "fresh parmesan cheese", + "freshly ground pepper", + "plum tomatoes" + ] + }, + { + "id": 30379, + "cuisine": "cajun_creole", + "ingredients": [ + "creole mustard", + "sweet onion", + "ground red pepper", + "mustard seeds", + "sliced green onions", + "kosher salt", + "olive oil", + "white wine vinegar", + "bay leaf", + "ketchup", + "dried thyme", + "worcestershire sauce", + "reduced fat mayonnaise", + "water", + "baby arugula", + "hot sauce", + "medium shrimp" + ] + }, + { + "id": 3300, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "sea scallops", + "butter", + "pepper", + "dry white wine", + "kosher salt", + "vermicelli", + "olive oil", + "grapefruit juice" + ] + }, + { + "id": 31152, + "cuisine": "greek", + "ingredients": [ + "cucumber", + "garlic", + "greek yogurt", + "dill" + ] + }, + { + "id": 11463, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "sesame oil", + "low sodium soy sauce", + "enokitake", + "glass noodles", + "rib eye steaks", + "water", + "garlic", + "brown sugar", + "green onions", + "kiwi" + ] + }, + { + "id": 29011, + "cuisine": "chinese", + "ingredients": [ + "water", + "rice vinegar", + "stir fry vegetable blend", + "sugar", + "vegetable oil", + "corn starch", + "thin spaghetti", + "sesame oil", + "orange juice", + "chicken", + "soy sauce", + "red pepper", + "chicken base" + ] + }, + { + "id": 7164, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "water", + "garlic", + "corn starch", + "eggs", + "white pepper", + "red pepper", + "oyster sauce", + "glass noodles", + "brown sugar", + "fresh cilantro", + "salt", + "beansprouts", + "soy sauce", + "flank steak", + "oil", + "onions" + ] + }, + { + "id": 5542, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "fresh lime juice", + "large garlic cloves", + "jalapeno chilies", + "chopped cilantro", + "avocado", + "salt" + ] + }, + { + "id": 42874, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed garlic", + "dried oregano", + "grated parmesan cheese", + "cream cheese", + "ground black pepper", + "salt", + "dried basil", + "french bread", + "fresh parsley" + ] + }, + { + "id": 8498, + "cuisine": "southern_us", + "ingredients": [ + "margarine", + "red pepper flakes", + "Rice Krispies Cereal", + "Kraft Extra Sharp Cheddar Cheese", + "all-purpose flour" + ] + }, + { + "id": 37842, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "long-grain rice", + "Jonshonville® Cajun Style Chicken Sausage", + "garlic", + "onions", + "diced tomatoes", + "celery", + "water", + "green pepper", + "canola oil" + ] + }, + { + "id": 49439, + "cuisine": "southern_us", + "ingredients": [ + "low-fat buttermilk", + "butter", + "honey", + "jalapeno chilies", + "all-purpose flour", + "yellow corn meal", + "large eggs", + "salt", + "granulated sugar", + "baking powder" + ] + }, + { + "id": 16955, + "cuisine": "indian", + "ingredients": [ + "butter", + "salt", + "ground turmeric", + "green bell pepper", + "garlic", + "cumin seed", + "tomatoes", + "kasuri methi", + "green chilies", + "masala", + "coriander powder", + "paneer", + "onions" + ] + }, + { + "id": 17702, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "semolina flour", + "warm water" + ] + }, + { + "id": 7910, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "curry powder", + "vegetable oil", + "gingerroot", + "ground cloves", + "mango chutney", + "salt", + "boiling potatoes", + "eggs", + "minced onion", + "cinnamon", + "coriander", + "plain yogurt", + "chili powder", + "green chilies", + "ground cumin" + ] + }, + { + "id": 222, + "cuisine": "italian", + "ingredients": [ + "bread", + "ground black pepper", + "purple onion", + "italian seasoning", + "garlic powder", + "shredded sharp cheddar cheese", + "boneless skinless chicken breast halves", + "olive oil", + "green onions", + "red bell pepper", + "water", + "cooking spray", + "salt" + ] + }, + { + "id": 9528, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "water", + "ricotta cheese", + "dried oregano", + "tomato sauce", + "grated parmesan cheese", + "rubbed sage", + "eggs", + "olive oil", + "large garlic cloves", + "fennel seeds", + "mozzarella cheese", + "ziti", + "onions" + ] + }, + { + "id": 19668, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic cloves", + "water", + "chopped onion", + "chayotes", + "salt", + "carrots", + "corn kernels", + "long-grain rice" + ] + }, + { + "id": 6840, + "cuisine": "mexican", + "ingredients": [ + "corn chips", + "sour cream", + "taco sauce", + "taco seasoning", + "beaten eggs", + "ground beef", + "shredded cheddar cheese", + "scallions" + ] + }, + { + "id": 25279, + "cuisine": "irish", + "ingredients": [ + "pickles", + "mustard", + "butter", + "rye bread", + "cheddar cheese" + ] + }, + { + "id": 12893, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "salt", + "white sugar", + "chicken broth", + "mushrooms", + "coconut milk", + "fresh ginger", + "fresh lemon juice", + "kaffir lime leaves", + "lemon", + "onions" + ] + }, + { + "id": 9966, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "marinara sauce", + "lasagna noodles", + "ground beef", + "water", + "salt", + "cottage cheese", + "grated parmesan cheese" + ] + }, + { + "id": 9874, + "cuisine": "italian", + "ingredients": [ + "mussels", + "red pepper flakes", + "toast", + "olive oil", + "canned tomatoes", + "onions", + "dried thyme", + "garlic", + "fresh parsley", + "ground black pepper", + "salt" + ] + }, + { + "id": 43140, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime", + "oil", + "whitefish", + "water", + "garlic", + "onions", + "red chili peppers", + "ginger", + "coconut milk", + "tomato purée", + "lemongrass", + "salt", + "coriander" + ] + }, + { + "id": 43760, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "low salt chicken broth", + "grated orange peel", + "dry white wine", + "arborio rice", + "green onions", + "mascarpone", + "butter" + ] + }, + { + "id": 32433, + "cuisine": "mexican", + "ingredients": [ + "shredded cabbage", + "cilantro", + "water", + "red wine vinegar", + "cumin", + "broccoli slaw", + "Himalayan salt", + "purple onion", + "lime", + "red pepper" + ] + }, + { + "id": 22650, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "lasagna noodles", + "salt", + "onions", + "pepper", + "onion powder", + "garlic cloves", + "cottage cheese", + "grated parmesan cheese", + "shredded mozzarella cheese", + "garlic powder", + "ground pork", + "ground beef" + ] + }, + { + "id": 44799, + "cuisine": "cajun_creole", + "ingredients": [ + "dressing", + "red pepper", + "celery", + "large shrimp", + "sun-dried tomatoes", + "garlic", + "fresh parsley", + "finely chopped onion", + "smoked turkey sausage", + "long grain white rice", + "25% less sodium chicken broth", + "diced tomatoes", + "bay leaf" + ] + }, + { + "id": 35289, + "cuisine": "italian", + "ingredients": [ + "ground pepper", + "whipping cream", + "pancetta", + "grated parmesan cheese", + "chopped parsley", + "fresh peas", + "salt", + "large egg yolks", + "leeks", + "spaghetti" + ] + }, + { + "id": 40824, + "cuisine": "southern_us", + "ingredients": [ + "almond filling", + "baking powder", + "currant", + "salt", + "sliced almonds", + "granulated sugar", + "almond extract", + "whipping cream", + "coconut milk", + "light brown sugar", + "unsalted butter", + "kumquats", + "mint sprigs", + "all-purpose flour", + "cream cheese frosting", + "large eggs", + "sweetened coconut flakes", + "vanilla extract" + ] + }, + { + "id": 38524, + "cuisine": "british", + "ingredients": [ + "ground black pepper", + "all-purpose flour", + "shredded cheddar cheese", + "chives", + "cauliflower", + "unsalted butter", + "mustard powder", + "milk", + "salt" + ] + }, + { + "id": 8636, + "cuisine": "italian", + "ingredients": [ + "dough", + "garlic cloves", + "extra-virgin olive oil", + "salt", + "fresh rosemary" + ] + }, + { + "id": 3706, + "cuisine": "japanese", + "ingredients": [ + "hand", + "water", + "oil", + "soy sauce", + "salt", + "short-grain rice" + ] + }, + { + "id": 23060, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "shirataki", + "sugar", + "mirin", + "carrots", + "sake", + "sesame seeds", + "edamame beans", + "soy sauce", + "zucchini" + ] + }, + { + "id": 42492, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "beef bouillon granules", + "pepper flakes", + "garlic powder", + "long-grain rice", + "dried thyme", + "crushed red pepper", + "parsley flakes", + "minced onion", + "bay leaf" + ] + }, + { + "id": 27755, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "file powder", + "large shrimp", + "lump crab meat", + "hot sauce", + "green bell pepper", + "all-purpose flour", + "shrimp stock", + "unsalted butter", + "onions" + ] + }, + { + "id": 39741, + "cuisine": "indian", + "ingredients": [ + "diced tomatoes", + "fresh lemon juice", + "ground turmeric", + "chili powder", + "salt", + "onions", + "vegetable oil", + "cumin seed", + "boneless skinless chicken breast halves", + "fresh ginger", + "paprika", + "sour cream" + ] + }, + { + "id": 21073, + "cuisine": "greek", + "ingredients": [ + "white rice", + "water", + "condensed cream of chicken soup", + "lemon juice", + "milk" + ] + }, + { + "id": 19051, + "cuisine": "thai", + "ingredients": [ + "cilantro stems", + "chicken wings", + "garlic cloves", + "cold water", + "salt", + "fresh ginger" + ] + }, + { + "id": 40892, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "salt", + "oregano", + "tomatoes", + "red wine", + "thyme", + "ground black pepper", + "garlic cloves", + "chicken", + "green bell pepper", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 16084, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "vegetable shortening", + "masa harina", + "firmly packed brown sugar", + "ground nutmeg", + "salt", + "ground cinnamon", + "corn husks", + "vanilla", + "brown sugar", + "baking powder", + "chopped pecans" + ] + }, + { + "id": 29518, + "cuisine": "moroccan", + "ingredients": [ + "fresh dill", + "large eggs", + "english cucumber", + "chopped cilantro fresh", + "panko", + "vegetable oil", + "fresh lemon juice", + "kosher salt", + "lean ground beef", + "garlic cloves", + "ground cumin", + "ground black pepper", + "ground allspice", + "whole milk greek yogurt" + ] + }, + { + "id": 43714, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "olive oil", + "chickpeas", + "fat free less sodium chicken broth", + "curry powder", + "salt", + "plum tomatoes", + "fresh spinach", + "water", + "lemon wedge", + "chile sauce", + "chicken breast tenders", + "cooking spray", + "couscous" + ] + }, + { + "id": 20973, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "ginger", + "asian eggplants", + "vegetable oil", + "chives", + "soy sauce", + "spices" + ] + }, + { + "id": 45200, + "cuisine": "french", + "ingredients": [ + "olive oil", + "salt", + "carrots", + "chicken", + "ground black pepper", + "flour for dusting", + "onions", + "artichoke hearts", + "garlic cloves", + "celery", + "chicken stock", + "button mushrooms", + "lemon juice", + "italian seasoning" + ] + }, + { + "id": 4909, + "cuisine": "british", + "ingredients": [ + "water", + "ground nutmeg", + "butter", + "chocolate covered english toffee", + "large egg yolks", + "semisweet chocolate", + "whipping cream", + "dark corn syrup", + "instant espresso powder", + "cookies", + "sugar", + "almonds", + "coffee liqueur", + "vanilla extract" + ] + }, + { + "id": 9572, + "cuisine": "spanish", + "ingredients": [ + "large garlic cloves", + "olive oil", + "red bell pepper", + "chili", + "oyster mushrooms", + "medium shrimp uncook", + "fresh parsley" + ] + }, + { + "id": 6410, + "cuisine": "cajun_creole", + "ingredients": [ + "yellow corn meal", + "large eggs", + "all-purpose flour", + "mayonaise", + "cajun seasoning", + "fresh lemon juice", + "capers", + "vegetable oil", + "hot sauce", + "catfish fillets", + "prepared horseradish", + "salt", + "pickle relish" + ] + }, + { + "id": 12298, + "cuisine": "chinese", + "ingredients": [ + "glutinous rice", + "leaves", + "soy sauce", + "pork", + "salt", + "msg" + ] + }, + { + "id": 553, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "green onions", + "asian fish sauce", + "serrano chilies", + "lemon grass", + "green beans", + "sugar", + "large eggs", + "ground turkey", + "olive oil", + "corn starch" + ] + }, + { + "id": 41107, + "cuisine": "japanese", + "ingredients": [ + "large egg whites", + "reduced sodium soy sauce", + "freshly ground pepper", + "panko breadcrumbs", + "ground chicken", + "fresh ginger", + "salt", + "lemon juice", + "brown sugar", + "honey", + "mirin", + "scallions", + "minced garlic", + "sesame seeds", + "dried shiitake mushrooms", + "corn starch" + ] + }, + { + "id": 3260, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "pinenuts", + "extra-virgin olive oil", + "fresh dill", + "red wine vinegar", + "golden beets", + "water", + "purple onion" + ] + }, + { + "id": 42984, + "cuisine": "mexican", + "ingredients": [ + "half & half", + "frozen corn kernels", + "olive oil", + "salt", + "ground black pepper", + "all-purpose flour", + "chihuahua cheese", + "yukon gold potatoes", + "poblano chiles" + ] + }, + { + "id": 28459, + "cuisine": "irish", + "ingredients": [ + "ice cream", + "Baileys Irish Cream Liqueur", + "espresso" + ] + }, + { + "id": 30545, + "cuisine": "chinese", + "ingredients": [ + "chili", + "sesame oil", + "tamari soy sauce", + "corn starch", + "brown sugar", + "sesame seeds", + "cracked black pepper", + "orange juice", + "fresh ginger", + "sea salt", + "rice vinegar", + "canola oil", + "orange", + "extra firm tofu", + "garlic", + "scallions" + ] + }, + { + "id": 20055, + "cuisine": "french", + "ingredients": [ + "dry vermouth", + "sea scallops", + "shallots", + "bottled clam juice", + "mushrooms", + "whipping cream", + "sugar", + "fennel bulb", + "butter", + "chicken stock", + "curry powder", + "dry white wine", + "fresh lemon juice" + ] + }, + { + "id": 30970, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "chopped fresh sage", + "diced onions", + "diced tomatoes", + "fennel seeds", + "Italian turkey sausage", + "cannellini beans", + "garlic cloves" + ] + }, + { + "id": 18997, + "cuisine": "southern_us", + "ingredients": [ + "pistachios", + "white grapefruit", + "baby leaf lettuce", + "pink grapefruit" + ] + }, + { + "id": 1615, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "Tabasco Pepper Sauce", + "scallions", + "pimentos", + "salt", + "pickle relish", + "radishes", + "fresh chevre", + "smoked cheddar cheese", + "celery ribs", + "onion powder", + "freshly ground pepper" + ] + }, + { + "id": 13035, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "taco seasoning mix", + "lemon juice", + "mayonaise", + "black olives", + "tomatoes", + "green onions", + "sour cream", + "refried beans", + "sharp cheddar cheese" + ] + }, + { + "id": 20157, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "scallions", + "large shrimp", + "grape tomatoes", + "salsa", + "fresh lime juice", + "avocado", + "lime wedges", + "corn tortillas", + "olive oil", + "grated jack cheese", + "chopped cilantro fresh" + ] + }, + { + "id": 26629, + "cuisine": "southern_us", + "ingredients": [ + "vidalia onion", + "black-eyed peas", + "english cucumber", + "flat leaf parsley", + "mustard", + "cider vinegar", + "extra-virgin olive oil", + "fresh lemon juice", + "arugula", + "tomatoes", + "pitas", + "ground sumac", + "red bell pepper", + "kosher salt", + "ground black pepper", + "garlic cloves", + "chopped fresh mint" + ] + }, + { + "id": 27007, + "cuisine": "italian", + "ingredients": [ + "pepper", + "italian seasoning", + "salt", + "olive oil flavored cooking spray", + "french bread" + ] + }, + { + "id": 10881, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "ground black pepper", + "green pepper", + "bay leaf", + "sliced green onions", + "celery ribs", + "kosher salt", + "diced tomatoes", + "garlic cloves", + "long grain white rice", + "andouille sausage", + "fresh thyme", + "chicken fingers", + "onions", + "chicken stock", + "ancho chili ground pepper", + "cayenne pepper", + "smoked paprika", + "canola oil" + ] + }, + { + "id": 46554, + "cuisine": "moroccan", + "ingredients": [ + "golden raisins", + "ground coriander", + "ground lamb", + "finely chopped onion", + "bulgur wheat", + "lemon juice", + "large egg whites", + "ground red pepper", + "pimento stuffed olives", + "ground cumin", + "cooking spray", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 17079, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "mirin", + "soy sauce", + "sake", + "chicken", + "sesame seeds" + ] + }, + { + "id": 22590, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "wonton wrappers", + "garlic", + "pepper", + "ground pork", + "oil", + "soy sauce", + "kinchay", + "salt", + "chinese sausage", + "ginger", + "large shrimp" + ] + }, + { + "id": 8080, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "diced tomatoes", + "chopped parsley", + "dried lentils", + "lemon", + "salt", + "onions", + "pepper", + "bacon", + "carrots", + "bay leaves", + "garlic", + "celery" + ] + }, + { + "id": 38501, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper flakes", + "fresh rosemary", + "garlic", + "extra-virgin olive oil", + "balsamic vinegar", + "salt" + ] + }, + { + "id": 32942, + "cuisine": "southern_us", + "ingredients": [ + "diced onions", + "water", + "bourbon whiskey", + "garlic cloves", + "vegetable oil cooking spray", + "olive oil", + "all-purpose flour", + "pepper", + "pork tenderloin", + "gingerroot", + "low sodium soy sauce", + "honey", + "salt", + "lemon juice" + ] + }, + { + "id": 29894, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "baking powder", + "fresh lemon juice", + "cream sweeten whip", + "granulated sugar", + "salt", + "braeburn apple", + "firmly packed light brown sugar", + "lemon zest", + "all-purpose flour", + "ground cinnamon", + "almonds", + "butter", + "frozen cherries" + ] + }, + { + "id": 7612, + "cuisine": "mexican", + "ingredients": [ + "sesame seeds", + "butter", + "corn tortillas", + "ground cinnamon", + "semisweet chocolate", + "salt", + "chicken", + "chicken broth", + "bananas", + "garlic", + "onions", + "pinenuts", + "chili powder", + "blanched almonds" + ] + }, + { + "id": 34208, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "dry white wine", + "garlic cloves", + "flat leaf parsley", + "sherry vinegar", + "salt", + "carrots", + "chopped cilantro fresh", + "black pepper", + "extra-virgin olive oil", + "California bay leaves", + "onions", + "oxtails", + "spanish chorizo", + "smoked paprika" + ] + }, + { + "id": 47067, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "vegetable oil cooking spray" + ] + }, + { + "id": 8894, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "garlic", + "ground beef", + "tomato sauce", + "pecorino romano cheese", + "dry bread crumbs", + "white pepper", + "raisins", + "flat leaf parsley", + "bread", + "large eggs", + "fine sea salt" + ] + }, + { + "id": 41350, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "cooking spray", + "ice cubes", + "large eggs", + "grits", + "ground black pepper", + "salt", + "shredded cheddar cheese", + "chopped fresh chives" + ] + }, + { + "id": 38949, + "cuisine": "british", + "ingredients": [ + "butter", + "sugar", + "dipping chocolate", + "water", + "salt", + "ground nuts" + ] + }, + { + "id": 5646, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "bay leaves", + "rice", + "eggs", + "ground black pepper", + "white wine vinegar", + "onions", + "low sodium soy sauce", + "water", + "garlic", + "pork shoulder", + "kosher salt", + "thai chile", + "peanut oil" + ] + }, + { + "id": 27631, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "boneless chicken breast", + "orzo", + "Velveeta", + "marinade", + "chicken broth", + "chipotle", + "seasoning", + "olive oil", + "diced tomatoes" + ] + }, + { + "id": 30675, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "freshly ground pepper", + "fresh basil", + "coarse salt", + "tomato sauce", + "extra-virgin olive oil", + "freshly grated parmesan", + "shredded mozzarella cheese" + ] + }, + { + "id": 13677, + "cuisine": "vietnamese", + "ingredients": [ + "cold water", + "daikon", + "scallions", + "chopped cilantro fresh", + "white pepper", + "garlic", + "Chinese egg noodles", + "baby bok choy", + "star anise", + "chinese five-spice powder", + "broth", + "sesame oil", + "dried shiitake mushrooms", + "duck drumsticks" + ] + }, + { + "id": 32540, + "cuisine": "indian", + "ingredients": [ + "eggs", + "salt", + "onions", + "clove", + "chili powder", + "cumin seed", + "garam masala", + "green chilies", + "ground turmeric", + "tomatoes", + "green peas", + "mustard seeds" + ] + }, + { + "id": 35999, + "cuisine": "chinese", + "ingredients": [ + "lime", + "sesame oil", + "scallions", + "soy sauce", + "mirin", + "firm tofu", + "glass noodles", + "yu choy", + "garlic", + "chinese five-spice powder", + "black bean garlic sauce", + "hoisin sauce", + "roasted peanuts" + ] + }, + { + "id": 19453, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "olive oil", + "salt", + "pepper", + "kalamata", + "fresh parsley", + "cider vinegar", + "artichoke hearts", + "garlic cloves", + "whole wheat rotini", + "dried basil", + "purple onion", + "dried oregano" + ] + }, + { + "id": 8446, + "cuisine": "japanese", + "ingredients": [ + "asparagus", + "vegetable oil", + "seaweed", + "water", + "soft tofu", + "dried shiitake mushrooms", + "garlic cloves", + "kosher salt", + "large eggs", + "shoyu", + "scallions", + "fresh ginger", + "leeks", + "soba noodles", + "toasted sesame oil" + ] + }, + { + "id": 45339, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "garlic cloves", + "ground cumin", + "eggs", + "flour tortillas", + "ground beef", + "Mexican cheese blend", + "enchilada sauce", + "cottage cheese", + "stewed tomatoes", + "onions" + ] + }, + { + "id": 28519, + "cuisine": "french", + "ingredients": [ + "sliced almonds", + "ground black pepper", + "red wine vinegar", + "goat cheese", + "salad greens", + "large eggs", + "salt", + "fresh parsley", + "egg substitute", + "fresh thyme", + "extra-virgin olive oil", + "garlic cloves", + "fat free milk", + "cooking spray", + "all-purpose flour", + "onions" + ] + }, + { + "id": 33764, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "ground coriander", + "kosher salt", + "diced tomatoes", + "ground cumin", + "baby spinach leaves", + "ground black pepper", + "ground turmeric", + "fresh cilantro", + "chickpeas" + ] + }, + { + "id": 7812, + "cuisine": "indian", + "ingredients": [ + "pepper", + "oil", + "curry leaves", + "salt", + "ground turmeric", + "coconut", + "onions", + "eggs", + "green chilies", + "cumin" + ] + }, + { + "id": 27041, + "cuisine": "italian", + "ingredients": [ + "white onion", + "italian sausage", + "rolls", + "olive oil", + "green bell pepper", + "red bell pepper" + ] + }, + { + "id": 45516, + "cuisine": "moroccan", + "ingredients": [ + "potatoes", + "paprika", + "lemon juice", + "olive oil", + "parsley", + "salt", + "pepper", + "bell pepper", + "purple onion", + "cumin", + "eggplant", + "tempeh", + "garlic cloves" + ] + }, + { + "id": 24870, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "pepper", + "green pepper", + "vegetable oil cooking spray", + "chicken breast halves", + "pinto beans", + "reduced fat monterey jack cheese", + "tomato sauce", + "red pepper", + "chopped cilantro fresh", + "green chile", + "flour tortillas", + "chopped onion" + ] + }, + { + "id": 22648, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "collard greens", + "fresh lemon juice", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 45078, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "shallots", + "fat free less sodium chicken broth", + "butternut squash", + "salt", + "ground black pepper", + "brown rice", + "olive oil", + "peeled fresh ginger" + ] + }, + { + "id": 36169, + "cuisine": "mexican", + "ingredients": [ + "water", + "dri oregano leaves, crush", + "cooked chicken", + "corn tortillas", + "Mexican cheese blend", + "Campbell's Condensed Cream of Chicken Soup", + "green chile", + "chili powder" + ] + }, + { + "id": 35571, + "cuisine": "italian", + "ingredients": [ + "french bread", + "garlic cloves", + "fresh basil", + "extra-virgin olive oil", + "tomatoes", + "balsamic vinegar", + "fresh parsley", + "ground black pepper", + "purple onion" + ] + }, + { + "id": 45036, + "cuisine": "indian", + "ingredients": [ + "fresh spinach", + "olive oil", + "chickpeas", + "water", + "diced tomatoes", + "sugar", + "fresh ginger", + "chopped onion", + "curry powder", + "salt" + ] + }, + { + "id": 45823, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "rice", + "bay leaf", + "garlic", + "ham", + "canola oil", + "crushed red pepper", + "celery", + "black-eyed peas", + "freshly ground pepper", + "onions" + ] + }, + { + "id": 48461, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "worcestershire sauce", + "pork baby back ribs", + "barbecue sauce", + "seasoning salt", + "minced garlic", + "cajun seasoning" + ] + }, + { + "id": 504, + "cuisine": "french", + "ingredients": [ + "fresh dill", + "white pepper", + "lemon wedge", + "grated lemon zest", + "mayonaise", + "whole grain dijon mustard", + "fresh tarragon", + "asparagus spears", + "soy sauce", + "hot pepper sauce", + "salt", + "salmon fillets", + "minced garlic", + "vegetable oil", + "lemon juice" + ] + }, + { + "id": 21038, + "cuisine": "british", + "ingredients": [ + "eggs", + "baking powder", + "boiling water", + "baking soda", + "heavy cream", + "light brown sugar", + "flour", + "vanilla extract", + "pitted date", + "butter" + ] + }, + { + "id": 36434, + "cuisine": "mexican", + "ingredients": [ + "butter", + "salt", + "dry red wine", + "medium shrimp", + "worcestershire sauce", + "chipotles in adobo", + "water", + "garlic", + "long grain white rice" + ] + }, + { + "id": 28806, + "cuisine": "southern_us", + "ingredients": [ + "whole wheat pastry flour", + "baking powder", + "cake flour", + "eggs", + "marzipan", + "butter", + "sugar", + "baking soda", + "meyer lemon", + "milk", + "teas", + "salt" + ] + }, + { + "id": 39132, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "slaw mix", + "egg roll wrappers", + "scallions", + "fresh ginger", + "boneless skinless chicken", + "vegetable oil", + "toasted sesame oil" + ] + }, + { + "id": 20211, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "boneless skinless chicken breasts", + "salt", + "coriander", + "cooked rice", + "garam masala", + "butter", + "and fat free half half", + "( oz.) tomato paste", + "black pepper", + "jalapeno chilies", + "garlic", + "cardamom", + "chicken broth", + "fresh ginger", + "chili powder", + "yellow onion", + "chopped cilantro fresh" + ] + }, + { + "id": 25243, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "green pepper", + "italian style stewed tomatoes", + "no salt added chicken broth", + "eggplant", + "roasting chickens", + "fresh basil", + "zucchini" + ] + }, + { + "id": 28516, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "tomato sauce", + "seasoning salt", + "parmagiano reggiano", + "marjoram", + "tomatoes", + "bread crumbs", + "bay leaves", + "ground beef", + "celery salt", + "eggs", + "minced garlic", + "buttermilk", + "onions", + "pepper flakes", + "sugar", + "olive oil", + "celery", + "italian seasoning" + ] + }, + { + "id": 46765, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "palm sugar", + "dried shrimp", + "beans", + "garlic", + "chiles", + "shredded carrots", + "green papaya", + "tomatoes", + "dry roasted peanuts", + "fresh lime juice" + ] + }, + { + "id": 28825, + "cuisine": "italian", + "ingredients": [ + "half & half", + "penne pasta", + "frozen peas", + "roasted red peppers", + "shredded parmesan cheese", + "onions", + "butter", + "shrimp", + "olive oil", + "old bay seasoning", + "sliced mushrooms" + ] + }, + { + "id": 22552, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "green onions", + "shredded Monterey Jack cheese", + "taco seasoning mix", + "sour cream", + "refried beans", + "cream cheese", + "hot pepper sauce", + "dried parsley" + ] + }, + { + "id": 43197, + "cuisine": "chinese", + "ingredients": [ + "spring roll wrappers", + "garlic", + "beansprouts", + "cooking oil", + "carrots", + "bamboo shoots", + "fresh ginger", + "dark sesame oil", + "shiitake mushroom caps", + "low sodium soy sauce", + "green onions", + "corn starch", + "cabbage" + ] + }, + { + "id": 20543, + "cuisine": "british", + "ingredients": [ + "Madeira", + "rosemary", + "sugar", + "heavy cream", + "kosher salt", + "fresh lemon juice", + "figs", + "lemon" + ] + }, + { + "id": 25974, + "cuisine": "indian", + "ingredients": [ + "sugar", + "ghee", + "raisins", + "almonds", + "cashew nuts", + "atta", + "ground cardamom" + ] + }, + { + "id": 36128, + "cuisine": "russian", + "ingredients": [ + "eggplant", + "onions", + "green bell pepper", + "red wine vinegar", + "tomatoes", + "vegetable oil", + "white sugar", + "water", + "salt" + ] + }, + { + "id": 26294, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "garlic", + "dried oregano", + "thin spaghetti", + "bell pepper", + "sweet italian sausage", + "grated parmesan cheese", + "salt", + "pepper", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 31771, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "water", + "broccoli florets", + "red pepper flakes", + "peanut oil", + "corn starch", + "ground ginger", + "soy sauce", + "Sriracha", + "marinade", + "salt", + "garlic cloves", + "chinese rice wine", + "garlic powder", + "flank steak", + "ginger", + "scallions", + "chicken broth", + "pepper", + "hoisin sauce", + "sesame oil", + "sauce", + "oyster sauce" + ] + }, + { + "id": 31730, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "herbs", + "daikon", + "roasted peanuts", + "fish sauce", + "honey", + "spring onions", + "dipping sauces", + "cucumber", + "pork neck", + "pickled carrots", + "lettuce leaves", + "rice vermicelli", + "oil", + "sugar", + "ground pepper", + "sesame oil", + "garlic", + "beansprouts" + ] + }, + { + "id": 13896, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "fresh ginger root", + "salt", + "lemon juice", + "brown sugar", + "water", + "boneless skinless chicken breasts", + "all-purpose flour", + "grated orange", + "soy sauce", + "olive oil", + "red pepper flakes", + "orange juice", + "minced garlic", + "green onions", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 24039, + "cuisine": "filipino", + "ingredients": [ + "beef stock", + "chayotes", + "water", + "beef rib short", + "onions", + "black peppercorns", + "salt", + "celery", + "potatoes", + "carrots", + "cabbage" + ] + }, + { + "id": 16768, + "cuisine": "french", + "ingredients": [ + "parsley sprigs", + "dry white wine", + "thyme sprigs", + "calvados", + "all-purpose flour", + "chopped garlic", + "curry powder", + "butter", + "bay leaf", + "tomato paste", + "lobster", + "chopped onion" + ] + }, + { + "id": 19212, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "apple cider", + "sugar", + "all-purpose flour", + "butter", + "shortening", + "salt" + ] + }, + { + "id": 1401, + "cuisine": "greek", + "ingredients": [ + "rosemary", + "yukon gold potatoes", + "lemon juice", + "olive oil", + "garlic", + "thyme", + "ground pepper", + "lamb shoulder", + "dried oregano", + "white wine", + "dijon mustard", + "salt" + ] + }, + { + "id": 11298, + "cuisine": "indian", + "ingredients": [ + "hot red pepper flakes", + "coconut", + "okra", + "fresh curry leaves", + "vegetable oil", + "fresh lemon juice", + "green chile", + "water", + "salt", + "plain yogurt", + "brown mustard seeds", + "cumin seed" + ] + }, + { + "id": 44547, + "cuisine": "spanish", + "ingredients": [ + "flavored vinegar", + "olive oil", + "chopped celery", + "garlic cloves", + "vidalia onion", + "chopped green bell pepper", + "rice vinegar", + "pepper", + "balsamic vinegar", + "hot sauce", + "tomatoes", + "low sodium tomato juice", + "salt", + "cucumber" + ] + }, + { + "id": 16489, + "cuisine": "cajun_creole", + "ingredients": [ + "red beans", + "long-grain rice", + "water", + "white wine vinegar", + "thyme sprigs", + "cajun seasoning", + "red bell pepper", + "olive oil", + "salt", + "sliced green onions" + ] + }, + { + "id": 17954, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "unsalted butter", + "vanilla extract", + "brandy", + "baking powder", + "all-purpose flour", + "vegetables", + "sunflower oil", + "grated orange", + "sugar", + "large eggs", + "fine sea salt" + ] + }, + { + "id": 13219, + "cuisine": "brazilian", + "ingredients": [ + "sweetened condensed milk", + "cocoa", + "butter", + "chocolate sprinkles" + ] + }, + { + "id": 8474, + "cuisine": "spanish", + "ingredients": [ + "rosemary sprigs", + "fresh lemon juice", + "large garlic cloves", + "cava", + "chicken breast halves", + "thyme sprigs" + ] + }, + { + "id": 13006, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "vegetable oil", + "large eggs", + "salt", + "minced onion", + "buttermilk", + "yellow corn meal", + "flour", + "freshly ground pepper" + ] + }, + { + "id": 41611, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "paprika", + "chicken breasts", + "garlic salt", + "chili powder", + "lime slices", + "salsa" + ] + }, + { + "id": 18716, + "cuisine": "french", + "ingredients": [ + "syrup", + "kumquats", + "salt", + "sugar", + "large eggs", + "cake flour", + "water", + "sauterne", + "blanched almonds", + "unsalted butter", + "vanilla", + "confectioners sugar" + ] + }, + { + "id": 47687, + "cuisine": "greek", + "ingredients": [ + "mint", + "flatbread", + "extra-virgin olive oil", + "capers", + "asian eggplants", + "red wine vinegar" + ] + }, + { + "id": 47833, + "cuisine": "french", + "ingredients": [ + "Belgian endive", + "olive oil", + "crumbled gorgonzola", + "plain yogurt", + "apple cider vinegar", + "hazelnuts", + "chopped fresh chives", + "pears", + "honey", + "sour cream" + ] + }, + { + "id": 19425, + "cuisine": "southern_us", + "ingredients": [ + "pinto beans", + "water", + "shortening", + "smoked pork neck bones" + ] + }, + { + "id": 38313, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless chicken skinless thigh", + "all-purpose flour", + "low salt chicken broth", + "bay scallops", + "okra", + "long grain white rice", + "olive oil", + "cayenne pepper", + "onions", + "green bell pepper", + "diced tomatoes", + "sausages", + "large shrimp" + ] + }, + { + "id": 39949, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "baking potatoes", + "vegetable oil", + "salt", + "pepper", + "butter", + "catfish fillets", + "instant potato flakes" + ] + }, + { + "id": 48249, + "cuisine": "mexican", + "ingredients": [ + "corn", + "green chilies", + "chicken broth", + "chili powder", + "greens", + "olive oil", + "chopped parsley", + "black beans", + "diced tomatoes", + "chicken" + ] + }, + { + "id": 30344, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "baking soda", + "buttermilk", + "eggs", + "cream style corn", + "all-purpose flour", + "kosher salt", + "baking powder", + "hot sauce", + "honey", + "butter", + "white sugar" + ] + }, + { + "id": 9009, + "cuisine": "italian", + "ingredients": [ + "sugar", + "butter", + "orange liqueur", + "baking powder", + "sour cream", + "baking soda", + "all-purpose flour", + "unsweetened cocoa powder", + "large eggs", + "unsweetened chocolate" + ] + }, + { + "id": 43055, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "stewed tomatoes", + "pepper", + "frozen green beans", + "boneless skinless chicken breast halves", + "italian style seasoning", + "crushed red pepper flakes", + "crushed garlic", + "salt" + ] + }, + { + "id": 32901, + "cuisine": "thai", + "ingredients": [ + "hamburger buns", + "hot pepper sauce", + "garlic", + "chopped fresh mint", + "ground chicken", + "flaked coconut", + "lemon juice", + "soy sauce", + "green onions", + "red curry paste", + "panko breadcrumbs", + "mayonaise", + "lime juice", + "peanut sauce", + "fresh parsley" + ] + }, + { + "id": 5728, + "cuisine": "moroccan", + "ingredients": [ + "eggs", + "olive oil", + "cooked chicken", + "pimento stuffed olives", + "ground cinnamon", + "reduced sodium chicken broth", + "cooking spray", + "ground coriander", + "ground cumin", + "phyllo dough", + "fresh ginger", + "dates", + "confectioners sugar", + "slivered almonds", + "ground black pepper", + "salt", + "onions" + ] + }, + { + "id": 43725, + "cuisine": "mexican", + "ingredients": [ + "almond flour", + "salsa", + "ground beef", + "cilantro", + "mexican chorizo", + "ground pepper", + "oil", + "ground cumin", + "eggs", + "salt", + "ground cayenne pepper" + ] + }, + { + "id": 28861, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "garlic cloves", + "olive oil", + "baguette", + "red bell pepper", + "large garlic cloves" + ] + }, + { + "id": 23350, + "cuisine": "french", + "ingredients": [ + "all-purpose flour", + "shortening", + "eggs", + "boiling water", + "salt" + ] + }, + { + "id": 23545, + "cuisine": "southern_us", + "ingredients": [ + "dried currants", + "butter", + "green pepper", + "ground black pepper", + "garlic", + "toasted almonds", + "curry powder", + "stewed tomatoes", + "thyme", + "diced onions", + "flour", + "salt", + "chicken" + ] + }, + { + "id": 25804, + "cuisine": "italian", + "ingredients": [ + "cheese", + "large garlic cloves", + "freshly ground pepper", + "baby spinach", + "salt", + "extra-virgin olive oil", + "polenta" + ] + }, + { + "id": 8091, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "frangipane", + "kosher salt", + "large eggs", + "vanilla beans", + "pastry dough", + "granulated sugar", + "apples" + ] + }, + { + "id": 42901, + "cuisine": "indian", + "ingredients": [ + "lime", + "large garlic cloves", + "onions", + "reduced sodium chicken broth", + "zucchini", + "salt", + "chopped cilantro fresh", + "black pepper", + "unsalted butter", + "heavy cream", + "boneless skinless chicken breast halves", + "curry powder", + "vegetable oil", + "couscous" + ] + }, + { + "id": 20197, + "cuisine": "mexican", + "ingredients": [ + "low sodium chicken broth", + "yellow onion", + "chicken", + "salsa verde", + "shredded sharp cheddar cheese", + "chopped cilantro", + "chili", + "garlic", + "corn tortillas", + "vegetable oil", + "green chilies" + ] + }, + { + "id": 8881, + "cuisine": "cajun_creole", + "ingredients": [ + "vanilla ice cream", + "granulated sugar", + "butter", + "salt", + "firmly packed brown sugar", + "bananas", + "baking powder", + "vanilla extract", + "shortening", + "large eggs", + "buttermilk", + "all-purpose flour", + "ground cinnamon", + "baking soda", + "rum", + "whipped cream", + "creme de cacao" + ] + }, + { + "id": 15322, + "cuisine": "french", + "ingredients": [ + "plain yogurt", + "cream cheese", + "mascarpone", + "fruit", + "crème fraîche", + "superfine sugar", + "confectioners sugar" + ] + }, + { + "id": 28341, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "butter", + "garlic cloves", + "fresh parmesan cheese", + "linguine", + "egg substitute", + "bacon", + "black pepper", + "dry white wine", + "salt" + ] + }, + { + "id": 8640, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "cooking spray", + "all-purpose flour", + "fat free milk", + "large eggs", + "salt", + "dark chocolate chip", + "butter", + "sugar", + "dry yeast", + "vanilla extract" + ] + }, + { + "id": 41933, + "cuisine": "british", + "ingredients": [ + "clove", + "golden delicious apples", + "water", + "white sandwich bread", + "unflavored gelatin", + "cranberries", + "sugar", + "cinnamon sticks" + ] + }, + { + "id": 7878, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "ramen noodles", + "iceberg lettuce", + "low sodium soy sauce", + "shredded carrots", + "red wine vinegar", + "honey", + "green onions", + "cooked chicken breasts", + "slivered almonds", + "peeled fresh ginger", + "dark sesame oil" + ] + }, + { + "id": 39593, + "cuisine": "filipino", + "ingredients": [ + "spinach", + "frogs legs", + "oil", + "pepper", + "garlic", + "onions", + "fish sauce", + "ginger", + "chayotes", + "water", + "salt" + ] + }, + { + "id": 32555, + "cuisine": "thai", + "ingredients": [ + "clams", + "bay scallops", + "shrimp", + "lime juice", + "white rice", + "asian fish sauce", + "firmly packed brown sugar", + "Thai red curry paste", + "coconut milk", + "asparagus", + "fat skimmed chicken broth" + ] + }, + { + "id": 1510, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "lemon", + "ice cubes", + "bourbon whiskey", + "Angostura bitters", + "orange", + "cocktail cherries" + ] + }, + { + "id": 16142, + "cuisine": "southern_us", + "ingredients": [ + "white bread", + "fresh parmesan cheese", + "chili powder", + "fresh onion", + "fresh parsley", + "lean ground pork", + "cooking spray", + "worcestershire sauce", + "rubbed sage", + "black pepper", + "ground sirloin", + "1% low-fat milk", + "carrots", + "ketchup", + "large eggs", + "red wine vinegar", + "garlic cloves" + ] + }, + { + "id": 41539, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "beans", + "sour cream", + "shredded cheddar cheese", + "salsa" + ] + }, + { + "id": 23882, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "black olives", + "tomatoes", + "green onions", + "lemon juice", + "small curd cottage cheese", + "cream cheese", + "shredded cheddar cheese", + "shredded lettuce" + ] + }, + { + "id": 23278, + "cuisine": "mexican", + "ingredients": [ + "water", + "beef bouillon", + "diced tomatoes", + "ground cumin", + "ground black pepper", + "ground red pepper", + "red bell pepper", + "pork stew meat", + "yellow hominy", + "garlic", + "green bell pepper", + "white hominy", + "vegetable oil", + "onions" + ] + }, + { + "id": 24121, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "water", + "large eggs", + "vanilla extract", + "sour cream", + "sugar", + "golden brown sugar", + "baking powder", + "salt", + "cream of tartar", + "brandy", + "light molasses", + "light corn syrup", + "all-purpose flour", + "ground ginger", + "fruit", + "unsalted butter", + "whipping cream", + "ground allspice" + ] + }, + { + "id": 42362, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "extra-virgin olive oil", + "garlic cloves", + "black pepper", + "dry red wine", + "dried pappardelle", + "celery ribs", + "beef brisket", + "purple onion", + "carrots", + "veal stock", + "bay leaves", + "salt" + ] + }, + { + "id": 19418, + "cuisine": "indian", + "ingredients": [ + "water", + "cilantro", + "lemon juice", + "basmati rice", + "plain yogurt", + "jalapeno chilies", + "salt", + "chopped cilantro", + "black pepper", + "lemon zest", + "garlic", + "ginger root", + "ground cumin", + "pepper", + "red pepper flakes", + "ground coriander", + "chicken thighs" + ] + }, + { + "id": 32454, + "cuisine": "mexican", + "ingredients": [ + "lime", + "chili powder", + "yellow onion", + "garlic powder", + "paprika", + "honey", + "vegetable oil", + "green pepper", + "brown sugar", + "boneless skinless chicken breasts", + "salt" + ] + }, + { + "id": 6345, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "ground black pepper", + "extra-virgin olive oil", + "chopped parsley", + "cooked rice", + "dried thyme", + "worcestershire sauce", + "ground cayenne pepper", + "white onion", + "bay leaves", + "beef broth", + "celery", + "filé", + "dried basil", + "green onions", + "garlic cloves", + "dried kidney beans" + ] + }, + { + "id": 6086, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "kosher salt", + "garlic", + "serrano chilies", + "cilantro", + "lime", + "onions" + ] + }, + { + "id": 35322, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vinegar", + "brown sugar", + "water", + "garlic", + "fish sauce", + "chili pepper", + "vegetable oil", + "baby bok choy", + "minced ginger", + "squid" + ] + }, + { + "id": 48388, + "cuisine": "thai", + "ingredients": [ + "salt", + "palm sugar", + "mango", + "mint", + "coconut milk", + "sticky rice" + ] + }, + { + "id": 17977, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "carrots", + "dried lentils", + "peppermint", + "onions", + "fresh basil", + "olive oil", + "low salt chicken broth", + "plain yogurt", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 22299, + "cuisine": "moroccan", + "ingredients": [ + "orange", + "fresh orange juice", + "fresh lemon juice", + "ricotta salata", + "red wine vinegar", + "orange flower water", + "grated orange peel", + "shallots", + "purple onion", + "arugula", + "oil-cured black olives", + "extra-virgin olive oil", + "fresh mint" + ] + }, + { + "id": 22702, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "buttermilk", + "flour", + "pepper", + "butter", + "potatoes", + "salt" + ] + }, + { + "id": 13691, + "cuisine": "french", + "ingredients": [ + "water", + "whole milk", + "large egg yolks", + "sugar", + "whipping cream" + ] + }, + { + "id": 49004, + "cuisine": "indian", + "ingredients": [ + "chicken stock", + "fresh ginger", + "sea salt", + "garlic cloves", + "basmati rice", + "fresh coriander", + "ground black pepper", + "green chilies", + "onions", + "tumeric", + "garam masala", + "cilantro leaves", + "lamb leg", + "ground cumin", + "olive oil", + "yoghurt", + "cumin seed", + "chopped fresh mint" + ] + }, + { + "id": 15609, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "vegetable oil", + "cumin", + "whole peeled tomatoes", + "chopped cilantro", + "ground black pepper", + "black olives", + "chorizo sausage", + "capers", + "chili powder", + "onions" + ] + }, + { + "id": 43850, + "cuisine": "japanese", + "ingredients": [ + "cremini mushrooms", + "ramen noodles", + "vegetable broth", + "chopped cilantro", + "eggs", + "Sriracha", + "large garlic cloves", + "scallions", + "spinach", + "sesame oil", + "ginger", + "red bell pepper", + "curry powder", + "vegetable oil", + "ground coriander" + ] + }, + { + "id": 30829, + "cuisine": "italian", + "ingredients": [ + "soft goat's cheese", + "extra-virgin olive oil", + "walnut pieces", + "garlic cloves", + "baguette", + "picholine olives", + "anchovy fillets" + ] + }, + { + "id": 48088, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "pepper jack", + "canola oil", + "milk", + "jalapeno chilies", + "American cheese", + "roma tomatoes", + "poblano peppers", + "chopped cilantro" + ] + }, + { + "id": 14097, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "zucchini", + "green pepper", + "red bell pepper", + "sugar", + "boneless chicken breast", + "pineapple juice", + "corn starch", + "ketchup", + "vegetable oil", + "lemon juice", + "onions", + "cooked rice", + "pepper", + "pineapple", + "carrots" + ] + }, + { + "id": 22955, + "cuisine": "korean", + "ingredients": [ + "garlic powder", + "low sodium soy sauce", + "sesame oil", + "onion powder", + "brown sugar", + "london broil" + ] + }, + { + "id": 19282, + "cuisine": "chinese", + "ingredients": [ + "lily flowers", + "Shaoxing wine", + "scallions", + "light soy sauce", + "salt", + "corn starch", + "minced ginger", + "vegetable oil", + "shrimp", + "tomatoes", + "pork tenderloin", + "dried shiitake mushrooms", + "noodles" + ] + }, + { + "id": 46620, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "lemongrass", + "lime wedges", + "thai chile", + "cinnamon sticks", + "wide rice noodles", + "kosher salt", + "shallots", + "star anise", + "carrots", + "light brown sugar", + "coconut flakes", + "reduced sodium soy sauce", + "ginger", + "scallions", + "fish sauce", + "ground black pepper", + "vegetable oil", + "garlic", + "chuck" + ] + }, + { + "id": 36005, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "swiss chard", + "dri leav thyme", + "olive oil", + "butter", + "onions", + "water", + "bay leaves", + "garlic cloves", + "black-eyed peas", + "salt" + ] + }, + { + "id": 3644, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "garlic shoots", + "asiago", + "pinenuts", + "extra-virgin olive oil", + "grated parmesan cheese", + "fresh lemon juice" + ] + }, + { + "id": 47219, + "cuisine": "italian", + "ingredients": [ + "pepper", + "heavy cream", + "thyme", + "fresh spinach", + "chicken tenderloin", + "carrots", + "olive oil", + "salt", + "celery", + "chicken stock", + "potato gnocchi", + "garlic cloves", + "onions" + ] + }, + { + "id": 30930, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "fresh lemon juice", + "sugar", + "cooking spray", + "vidalia onion", + "ground black pepper", + "dried rosemary", + "ground cloves", + "dry red wine" + ] + }, + { + "id": 30795, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "dry white wine", + "lump crab meat", + "finely chopped onion", + "fresh parsley", + "arborio rice", + "olive oil", + "low salt chicken broth", + "water", + "grated parmesan cheese" + ] + }, + { + "id": 46202, + "cuisine": "greek", + "ingredients": [ + "grated orange peel", + "bourbon whiskey", + "maple syrup", + "phyllo dough", + "chopped almonds", + "bacon", + "water", + "dates", + "sugar", + "butter" + ] + }, + { + "id": 49365, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "leeks", + "apple cider", + "tart apples", + "unsalted butter", + "bay leaves", + "crème fraîche", + "chicken", + "olive oil", + "low sodium chicken broth", + "shallots", + "thyme", + "kosher salt", + "calvados", + "crimini mushrooms", + "freshly ground pepper" + ] + }, + { + "id": 17837, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "extra firm tofu", + "rice vinegar", + "hoisin sauce", + "sesame oil", + "garlic cloves", + "fresh ginger root", + "crimini mushrooms", + "peanut oil", + "agave nectar", + "red pepper flakes", + "sliced green onions" + ] + }, + { + "id": 39765, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "garlic", + "pasta", + "bacon", + "onions", + "heavy cream", + "salt", + "eggs", + "peas" + ] + }, + { + "id": 4361, + "cuisine": "irish", + "ingredients": [ + "chicken bouillon", + "margarine", + "baking potatoes", + "eggs", + "onions" + ] + }, + { + "id": 11105, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "salsa", + "corn", + "cumin", + "black beans", + "gluten-free pasta", + "chili powder" + ] + }, + { + "id": 49620, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "pizza doughs", + "vidalia onion", + "pizza sauce", + "cooking spray", + "red bell pepper", + "hot italian turkey sausage links", + "yellow bell pepper" + ] + }, + { + "id": 46850, + "cuisine": "brazilian", + "ingredients": [ + "ice", + "sugar cubes", + "strawberries", + "cachaca" + ] + }, + { + "id": 7522, + "cuisine": "irish", + "ingredients": [ + "dried currants", + "baking powder", + "all-purpose flour", + "fat free milk", + "vanilla extract", + "turbinado", + "granulated sugar", + "salt", + "large egg whites", + "butter" + ] + }, + { + "id": 12320, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "balsamic vinegar", + "fresh basil", + "zucchini", + "salt", + "ground black pepper", + "purple onion", + "olive oil", + "ziti", + "plum tomatoes" + ] + }, + { + "id": 38850, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "butter", + "long-grain rice", + "dried oregano", + "cold water", + "bay leaves", + "salt", + "red bell pepper", + "chicken", + "celery ribs", + "jalapeno chilies", + "smoked sausage", + "garlic cloves", + "canola oil", + "tomato paste", + "spices", + "scallions", + "onions" + ] + }, + { + "id": 9908, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "baking powder", + "cake flour", + "mint", + "large eggs", + "buttermilk", + "light brown sugar", + "granulated sugar", + "bourbon whiskey", + "fresh mint", + "baking soda", + "cake", + "fine sea salt" + ] + }, + { + "id": 34417, + "cuisine": "greek", + "ingredients": [ + "mozzarella cheese", + "roasted red peppers", + "garlic cloves", + "tomatoes", + "artichoke hearts", + "purple onion", + "olive oil", + "kalamata", + "fresh dill", + "feta cheese", + "pizza doughs" + ] + }, + { + "id": 26593, + "cuisine": "southern_us", + "ingredients": [ + "heavy cream", + "coffee ice cream", + "Heath Candy Bars", + "sugar", + "chocolate graham cracker crumbs", + "unsalted butter", + "bittersweet chocolate" + ] + }, + { + "id": 36409, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "all-purpose flour", + "unsalted butter", + "water", + "salt" + ] + }, + { + "id": 6097, + "cuisine": "spanish", + "ingredients": [ + "water", + "flour", + "scallions", + "ground pepper", + "paprika", + "olive oil", + "parsley", + "shrimp", + "large eggs", + "salt" + ] + }, + { + "id": 14612, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "chili powder", + "corn tortillas", + "low sodium black beans", + "sweet potatoes", + "scallions", + "onions", + "fresh cilantro", + "brown rice", + "enchilada sauce", + "ground cumin", + "ground chipotle chile pepper", + "roasted red peppers", + "frozen corn", + "lowfat pepper jack cheese" + ] + }, + { + "id": 35979, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "extra-virgin olive oil", + "ground black pepper", + "burrata", + "fresh lemon juice", + "Belgian endive", + "fennel bulb" + ] + }, + { + "id": 14981, + "cuisine": "chinese", + "ingredients": [ + "water", + "ginger", + "flank steak", + "dark brown sugar", + "green onions", + "garlic", + "soy sauce", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 42427, + "cuisine": "russian", + "ingredients": [ + "flour", + "sugar", + "oil", + "milk", + "eggs", + "salt" + ] + }, + { + "id": 32475, + "cuisine": "mexican", + "ingredients": [ + "water", + "diced tomatoes", + "garlic cloves", + "canola oil", + "cooking spray", + "goat cheese", + "corn tortillas", + "jalapeno chilies", + "salt", + "cream cheese, soften", + "tomato sauce", + "Mexican oregano", + "cumin seed", + "onions" + ] + }, + { + "id": 41411, + "cuisine": "french", + "ingredients": [ + "hazelnuts", + "salt", + "vanilla ice cream", + "unsalted butter", + "bartlett pears", + "sugar", + "ice water", + "bread flour", + "golden brown sugar", + "all-purpose flour" + ] + }, + { + "id": 45949, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salsa", + "Sargento® Traditional Cut Shredded 4 Cheese Mexican", + "black beans", + "yellow rice" + ] + }, + { + "id": 19901, + "cuisine": "italian", + "ingredients": [ + "beefsteak tomatoes", + "prosciutto", + "olive oil", + "arugula", + "refrigerated pizza dough" + ] + }, + { + "id": 8714, + "cuisine": "indian", + "ingredients": [ + "bread", + "salt", + "onions", + "chat masala", + "green chilies", + "chili flakes", + "cilantro leaves", + "boiling potatoes", + "garam masala", + "oil" + ] + }, + { + "id": 7386, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic", + "jalapeno chilies", + "salt", + "roma tomatoes", + "purple onion", + "cilantro stems" + ] + }, + { + "id": 43685, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "onions", + "salt", + "cilantro", + "plum tomatoes", + "garlic cloves" + ] + }, + { + "id": 13927, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "whole cloves", + "cinnamon sticks", + "black peppercorns", + "cardamom seeds", + "nutmeg", + "bay leaves", + "coriander seeds", + "cumin seed" + ] + }, + { + "id": 37869, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "green onions", + "garlic cloves", + "chopped cilantro fresh", + "sweet potatoes", + "light coconut milk", + "red bell pepper", + "cooked chicken breasts", + "olive oil", + "lime wedges", + "garlic chili sauce", + "snow peas", + "fat free less sodium chicken broth", + "peeled fresh ginger", + "chopped celery", + "fresh lime juice" + ] + }, + { + "id": 33520, + "cuisine": "french", + "ingredients": [ + "gruyere cheese", + "large eggs", + "unsalted butter", + "sea salt" + ] + }, + { + "id": 11202, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "water", + "chocolate", + "ground almonds", + "sugar", + "pistachios", + "cake flour", + "powdered sugar", + "large eggs", + "vanilla extract", + "cocoa", + "mushrooms", + "salt" + ] + }, + { + "id": 46473, + "cuisine": "thai", + "ingredients": [ + "parmesan cheese", + "garlic", + "large shrimp", + "pepper", + "thai basil", + "salt", + "dried pasta", + "chili powder", + "toasted walnuts", + "olive oil", + "heavy cream", + "lemon juice" + ] + }, + { + "id": 9213, + "cuisine": "mexican", + "ingredients": [ + "shredded lettuce", + "shredded cheddar cheese", + "cream cheese", + "salsa", + "taco seasoning mix", + "sour cream" + ] + }, + { + "id": 49578, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "baby spinach", + "garlic cloves", + "rosemary", + "cooking spray", + "provolone cheese", + "roasted red peppers", + "salt", + "ground black pepper", + "red wine vinegar", + "cooked chicken breasts" + ] + }, + { + "id": 19994, + "cuisine": "british", + "ingredients": [ + "cream of tartar", + "large eggs", + "salt", + "baking soda", + "vegetable oil", + "sugar", + "baking powder", + "all-purpose flour", + "unsalted butter", + "buttermilk" + ] + }, + { + "id": 39545, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "paneer", + "ghee", + "garam masala", + "green chilies", + "fresh spinach", + "salt", + "onions", + "ginger", + "garlic cloves" + ] + }, + { + "id": 21019, + "cuisine": "japanese", + "ingredients": [ + "sake", + "short-grain rice", + "water", + "mixed mushrooms", + "soy sauce", + "mirin", + "dashi", + "dried shiitake mushrooms" + ] + }, + { + "id": 34022, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "sugar", + "coconut", + "green chilies", + "cinnamon sticks", + "white vinegar", + "eggs", + "water", + "salt", + "oil", + "tomatoes", + "red chili peppers", + "ginger", + "cumin seed", + "onions", + "clove", + "black peppercorns", + "steamer", + "cilantro leaves", + "rice flour" + ] + }, + { + "id": 35588, + "cuisine": "italian", + "ingredients": [ + "shredded mozzarella cheese", + "seasoned bread crumbs", + "boneless skinless chicken breast halves", + "black pepper", + "asparagus spears", + "salt" + ] + }, + { + "id": 41032, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "diced tomatoes", + "sharp cheddar cheese", + "chorizo", + "guacamole", + "salsa", + "monterey jack", + "sausage casings", + "jalapeno chilies", + "cheese", + "sour cream", + "fresh cilantro", + "vegetable oil", + "tortilla chips" + ] + }, + { + "id": 30444, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "vegetable oil", + "lemon juice", + "minced ginger", + "salt", + "ground turmeric", + "tandoori spices", + "garlic", + "ground cayenne pepper", + "chicken breasts", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 32844, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "vegetable oil", + "shredded Monterey Jack cheese", + "chili", + "corn tortillas", + "pepper", + "salt", + "tomatoes", + "green onions", + "chopped cilantro fresh" + ] + }, + { + "id": 13194, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "ground cloves", + "butter", + "all-purpose flour", + "corn starch", + "fresh marjoram", + "boneless chuck roast", + "cubed pancetta", + "garlic cloves", + "canola oil", + "parsnips", + "water", + "fat free less sodium beef broth", + "chopped onion", + "bay leaf", + "ground cinnamon", + "Chianti", + "ground black pepper", + "salt", + "carrots" + ] + }, + { + "id": 2007, + "cuisine": "italian", + "ingredients": [ + "vegetable oil spray", + "cumin seed", + "grated parmesan cheese" + ] + }, + { + "id": 23990, + "cuisine": "french", + "ingredients": [ + "sugar", + "unsalted butter", + "all-purpose flour", + "milk", + "vanilla extract", + "grated lemon peel", + "hazelnuts", + "baking powder", + "corn starch", + "ground cinnamon", + "large egg yolks", + "salt" + ] + }, + { + "id": 14513, + "cuisine": "indian", + "ingredients": [ + "asafoetida", + "potatoes", + "cilantro leaves", + "mustard seeds", + "coconut", + "green peas", + "oil", + "ground turmeric", + "curry leaves", + "peanuts", + "salt", + "lemon juice", + "sugar", + "poha", + "green chilies", + "onions" + ] + }, + { + "id": 19263, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "boiling water", + "red chili peppers", + "masa harina", + "vegetable oil" + ] + }, + { + "id": 28968, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "whipping cream", + "green onions", + "toasted pine nuts", + "grated parmesan cheese", + "linguine", + "dry white wine", + "red bell pepper" + ] + }, + { + "id": 46638, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "cooking spray", + "Niçoise olives", + "haricots verts", + "dijon mustard", + "red wine vinegar", + "ground black pepper", + "tuna steaks", + "small red potato", + "grape tomatoes", + "large eggs", + "extra-virgin olive oil" + ] + }, + { + "id": 22910, + "cuisine": "french", + "ingredients": [ + "Belgian endive", + "olive oil", + "shallots", + "Boston lettuce", + "field lettuce", + "salt", + "chervil", + "whole grain mustard", + "fresh tarragon", + "black pepper", + "chopped fresh chives", + "champagne vinegar" + ] + }, + { + "id": 25248, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "cilantro", + "corn tortillas", + "chicken", + "queso fresca", + "salt", + "serrano chile", + "jalapeno chilies", + "garlic", + "onions", + "lettuce", + "tomatillos", + "sour cream", + "olives" + ] + }, + { + "id": 15528, + "cuisine": "italian", + "ingredients": [ + "pistachios", + "dried fig", + "bread ciabatta", + "extra-virgin olive oil", + "sugar", + "red wine vinegar", + "water", + "cheese" + ] + }, + { + "id": 24423, + "cuisine": "mexican", + "ingredients": [ + "canned black beans", + "guacamole", + "salsa", + "chopped tomatoes", + "red pepper", + "shredded cheese", + "corn", + "cooked chicken", + "rice", + "diced onions", + "flour tortillas", + "cilantro" + ] + }, + { + "id": 7835, + "cuisine": "korean", + "ingredients": [ + "pepper flakes", + "potatoes", + "ginger", + "meat bones", + "dried red chile peppers", + "shiitake", + "seeds", + "soybean paste", + "Gochujang base", + "fish sauce", + "green onions", + "garlic", + "soybean sprouts", + "onions", + "leaves", + "napa cabbage", + "cooking wine", + "chinese chives" + ] + }, + { + "id": 12842, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "crushed tomatoes", + "large eggs", + "vegetable oil", + "ground allspice", + "chopped cilantro fresh", + "yellow corn meal", + "black beans", + "cayenne", + "baking powder", + "all-purpose flour", + "onions", + "chuck", + "sugar", + "milk", + "jalapeno chilies", + "salt", + "garlic cloves", + "unsweetened cocoa powder", + "cheddar cheese", + "water", + "unsalted butter", + "chili powder", + "frozen corn", + "pimento stuffed green olives", + "ground cumin" + ] + }, + { + "id": 3902, + "cuisine": "cajun_creole", + "ingredients": [ + "red kidney beans", + "water", + "red pepper flakes", + "hot sauce", + "cooked rice", + "ground black pepper", + "garlic", + "thyme", + "seasoning", + "olive oil", + "vegetable broth", + "yellow onion", + "celery ribs", + "green bell pepper", + "bay leaves", + "salt", + "oregano" + ] + }, + { + "id": 18278, + "cuisine": "filipino", + "ingredients": [ + "bananas", + "red wine vinegar", + "pork belly", + "cooking oil", + "dark brown sugar", + "soy sauce", + "ground black pepper", + "salt", + "water", + "bay leaves", + "carrots" + ] + }, + { + "id": 13382, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "salsa", + "feta cheese", + "refried beans", + "avocado", + "tortillas" + ] + }, + { + "id": 29965, + "cuisine": "italian", + "ingredients": [ + "chives", + "sweet italian sausage", + "mozzarella cheese", + "salt", + "freshly ground pepper", + "extra-virgin olive oil", + "pizza doughs", + "freshly grated parmesan", + "ricotta", + "flat leaf parsley" + ] + }, + { + "id": 4674, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame seeds", + "sesame oil", + "onions", + "cooked rice", + "water", + "mushrooms", + "scallions", + "rib eye steaks", + "pepper", + "asian pear", + "garlic", + "broth", + "sugar", + "honey", + "rice wine", + "carrots" + ] + }, + { + "id": 44559, + "cuisine": "filipino", + "ingredients": [ + "cooking oil", + "minced garlic", + "salt", + "lemon", + "ground black pepper", + "chicken leg quarters" + ] + }, + { + "id": 11199, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "grated parmesan cheese", + "butter", + "yellow corn meal" + ] + }, + { + "id": 32638, + "cuisine": "french", + "ingredients": [ + "honey", + "all-purpose flour", + "large eggs", + "almonds", + "orange flower water", + "sugar", + "salt" + ] + }, + { + "id": 20008, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "jicama", + "salt", + "ground cumin", + "cooking spray", + "lime wedges", + "fresh lime juice", + "honey", + "chili powder", + "corn tortillas", + "ground red pepper", + "extra-virgin olive oil", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 39436, + "cuisine": "japanese", + "ingredients": [ + "cooked rice", + "black sesame seeds", + "soy sauce", + "dried bonito flakes" + ] + }, + { + "id": 26436, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "cooking oil", + "garlic", + "soy sauce", + "fresh green bean", + "red bell pepper", + "brown sugar", + "ground sirloin", + "sweet basil", + "cooked rice", + "lime juice", + "thai chile" + ] + }, + { + "id": 39475, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "chili", + "carrots", + "soy sauce", + "large garlic cloves", + "chopped cilantro fresh", + "mayonaise", + "loin pork roast", + "cucumber", + "baguette", + "purple onion" + ] + }, + { + "id": 11627, + "cuisine": "mexican", + "ingredients": [ + "tomato purée", + "cooked chicken", + "corn tortillas", + "ground black pepper", + "garlic", + "monterey jack", + "Pure Wesson Vegetable Oil", + "Gebhardt Chili Powder", + "onions", + "cooking spray", + "salt" + ] + }, + { + "id": 35081, + "cuisine": "vietnamese", + "ingredients": [ + "cilantro sprigs", + "fresh ginger", + "steak", + "chicken stock", + "thai chile", + "ground black pepper", + "caramel sauce" + ] + }, + { + "id": 15949, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "shredded lettuce", + "cumin", + "taco sauce", + "vegetable oil", + "roast beef", + "tomatoes", + "chile pepper", + "garlic", + "shredded cheddar cheese", + "red pepper flakes", + "onions" + ] + }, + { + "id": 1008, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "peeled fresh ginger", + "less sodium beef broth", + "garlic cloves", + "chiles", + "ground nutmeg", + "salt", + "peanut oil", + "boneless sirloin steak", + "ground cinnamon", + "coriander seeds", + "light coconut milk", + "cardamom pods", + "onions", + "water", + "potatoes", + "tamarind paste", + "cumin seed" + ] + }, + { + "id": 29378, + "cuisine": "southern_us", + "ingredients": [ + "tomato paste", + "green onions", + "paprika", + "hot sauce", + "heavy whipping cream", + "pancetta", + "water", + "butter", + "salt", + "shrimp", + "minced garlic", + "cajun seasoning", + "chicken stock cubes", + "sharp cheddar cheese", + "italian seasoning", + "chicken stock", + "quickcooking grits", + "worcestershire sauce", + "all-purpose flour", + "ground white pepper" + ] + }, + { + "id": 27999, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "butter", + "white cake mix" + ] + }, + { + "id": 5507, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "cilantro", + "red bell pepper", + "water", + "boneless skinless chicken breasts", + "cayenne pepper", + "monterey jack", + "kosher salt", + "flour tortillas", + "frozen corn", + "reduced sodium black beans", + "olive oil", + "chili powder", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 11187, + "cuisine": "greek", + "ingredients": [ + "fresh thyme leaves", + "extra-virgin olive oil", + "red wine vinegar", + "green cabbage", + "feta cheese crumbles" + ] + }, + { + "id": 21773, + "cuisine": "mexican", + "ingredients": [ + "whole allspice", + "kosher salt", + "herbs", + "mulato chiles", + "chocolate", + "cinnamon sticks", + "challa", + "sugar", + "peanuts", + "whole cloves", + "raisins", + "cumin seed", + "plum tomatoes", + "chiles", + "sesame seeds", + "low sodium chicken broth", + "tomatillos", + "pumpkin seeds", + "onions", + "pecans", + "pasilla chiles", + "almonds", + "corn oil", + "anise", + "garlic cloves", + "plantains" + ] + }, + { + "id": 19028, + "cuisine": "southern_us", + "ingredients": [ + "light corn syrup", + "white frostings", + "chopped pecans", + "powdered sugar", + "boiling water", + "vanilla extract" + ] + }, + { + "id": 27588, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "ground black pepper", + "fresh parsley", + "veal loin chops", + "salt", + "lemon" + ] + }, + { + "id": 42056, + "cuisine": "italian", + "ingredients": [ + "capers", + "diced tomatoes", + "all-purpose flour", + "artichoke hearts", + "black olives", + "flat leaf parsley", + "olive oil", + "crushed red pepper flakes", + "juice", + "chicken broth", + "large garlic cloves", + "salt", + "chicken thighs" + ] + }, + { + "id": 22077, + "cuisine": "southern_us", + "ingredients": [ + "pectin", + "ground nutmeg", + "sugar", + "green tomatoes", + "water", + "lemon juice", + "ground cinnamon", + "fresh blueberries" + ] + }, + { + "id": 24316, + "cuisine": "italian", + "ingredients": [ + "ground ginger", + "paprika", + "chopped cilantro", + "olive oil", + "lemon juice", + "dried oregano", + "crushed tomatoes", + "salt", + "medium shrimp", + "ground black pepper", + "penne rigate", + "ground cumin" + ] + }, + { + "id": 4502, + "cuisine": "mexican", + "ingredients": [ + "chopped cilantro", + "salt", + "basmati rice", + "fresh lime juice" + ] + }, + { + "id": 39308, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "fresh mozzarella", + "pesto", + "puff pastry", + "tomato purée", + "fresh basil leaves", + "black pepper", + "dried oregano" + ] + }, + { + "id": 3666, + "cuisine": "french", + "ingredients": [ + "light brown sugar", + "nonfat dry milk", + "salt", + "vanilla beans", + "reduced fat milk", + "large egg yolks", + "vanilla extract", + "water", + "granulated sugar" + ] + }, + { + "id": 23945, + "cuisine": "filipino", + "ingredients": [ + "baby bok choy", + "garlic", + "fish", + "fish sauce", + "green onions", + "rice", + "cooking oil", + "salt", + "whole peppercorn", + "ginger", + "onions" + ] + }, + { + "id": 14774, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "ground black pepper", + "sausages", + "diced onions", + "ground chuck", + "paprika", + "lettuce", + "hamburger buns", + "ground red pepper", + "onions", + "mustard", + "minced garlic", + "salt" + ] + }, + { + "id": 2867, + "cuisine": "italian", + "ingredients": [ + "white vinegar", + "shortening", + "ricotta cheese", + "confectioners sugar", + "ground cinnamon", + "pistachio nuts", + "salt", + "white sugar", + "eggs", + "vegetable oil", + "all-purpose flour", + "semi-sweet chocolate morsels", + "cold water", + "egg whites", + "vanilla extract", + "citron" + ] + }, + { + "id": 33749, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "vegetable oil", + "white sugar", + "hot pepper sauce", + "cornmeal", + "ground black pepper", + "creole seasoning", + "eggs", + "paprika" + ] + }, + { + "id": 45826, + "cuisine": "southern_us", + "ingredients": [ + "soy sauce", + "garlic powder", + "apple cider", + "seasoning salt", + "apple cider vinegar", + "ketchup", + "beef brisket", + "brown sugar", + "honey", + "worcestershire sauce" + ] + }, + { + "id": 9637, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "ground black pepper", + "garlic powder", + "cream cheese", + "kosher salt", + "lean ground beef", + "chicken broth", + "parmesan cheese", + "noodles" + ] + }, + { + "id": 10269, + "cuisine": "southern_us", + "ingredients": [ + "fresh dill", + "freshly ground pepper", + "green onions", + "cream cheese, soften", + "mayonaise", + "cucumber", + "salt", + "bread slices" + ] + }, + { + "id": 9296, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "crushed red pepper", + "corn starch", + "ground ginger", + "orange", + "orange juice", + "cold water", + "water", + "rice vinegar", + "sugar", + "boneless skinless chicken breasts", + "oil" + ] + }, + { + "id": 5133, + "cuisine": "thai", + "ingredients": [ + "whitefish", + "gluten", + "extra virgin coconut oil", + "thai green curry paste", + "vegetable stock", + "garlic", + "red bell pepper", + "toasted sesame seeds", + "lime juice", + "green peas", + "gingerroot", + "onions", + "lime zest", + "fish stock", + "cilantro leaves", + "coconut milk", + "bamboo shoots" + ] + }, + { + "id": 45581, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "fresh cilantro", + "tikka paste", + "salt", + "chicken thighs", + "cream", + "garam masala", + "cinnamon", + "lemon juice", + "cumin", + "pepper", + "cayenne", + "diced tomatoes", + "onions", + "plain yogurt", + "fresh ginger", + "chili powder", + "garlic cloves", + "coriander" + ] + }, + { + "id": 17594, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "chipotle", + "purple onion", + "corn tortillas", + "fresh cilantro", + "boneless skinless chicken breasts", + "salsa", + "pepper", + "jalapeno chilies", + "salt", + "ground cumin", + "lime", + "garlic", + "green pepper" + ] + }, + { + "id": 27219, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "beer", + "brown sugar", + "salt", + "ground cumin", + "garlic", + "chopped cilantro", + "worcestershire sauce", + "fresh lime juice" + ] + }, + { + "id": 30844, + "cuisine": "cajun_creole", + "ingredients": [ + "cayenne", + "garlic", + "onions", + "canned low sodium chicken broth", + "bay leaves", + "long-grain rice", + "andouille sausage", + "boneless skinless chicken breasts", + "celery", + "green bell pepper", + "cooking oil", + "salt" + ] + }, + { + "id": 14982, + "cuisine": "greek", + "ingredients": [ + "lean minced lamb", + "feta cheese", + "onions", + "eggs", + "olive oil", + "garlic", + "fresh basil", + "chopped tomatoes", + "dried mixed herbs", + "sugar", + "red pepper", + "yellow peppers" + ] + }, + { + "id": 17993, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "beef stock", + "confit duck leg", + "chopped onion", + "thyme sprigs", + "pork", + "dry white wine", + "salt", + "goose fat", + "pork sausages", + "clove", + "black pepper", + "bacon", + "white beans", + "flat leaf parsley", + "plain dry bread crumb", + "bay leaves", + "mutton", + "garlic cloves", + "fresh parsley" + ] + }, + { + "id": 31260, + "cuisine": "vietnamese", + "ingredients": [ + "ground coffee", + "sweetened condensed milk" + ] + }, + { + "id": 16311, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "rice flour", + "all-purpose flour", + "coriander", + "salt", + "ghee", + "semolina", + "green chilies" + ] + }, + { + "id": 29090, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "garlic powder", + "sesame oil", + "pork spareribs", + "five spice", + "water", + "green onions", + "red food coloring", + "sliced green onions", + "ground ginger", + "cider vinegar", + "hoisin sauce", + "vegetable oil", + "long-grain rice", + "soy sauce", + "honey", + "onion powder", + "beets" + ] + }, + { + "id": 38978, + "cuisine": "italian", + "ingredients": [ + "penne", + "olive oil", + "salt", + "tomatoes", + "black pepper", + "balsamic vinegar", + "pitted kalamata olives", + "parmesan cheese", + "garlic cloves", + "fresh basil", + "pinenuts", + "crushed red pepper" + ] + }, + { + "id": 9907, + "cuisine": "british", + "ingredients": [ + "lean ground pork", + "lean ground beef", + "ground black pepper", + "unbaked pie shells", + "mashed potatoes", + "egg whites", + "ground nutmeg", + "salt" + ] + }, + { + "id": 23921, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "runny honey", + "clove", + "pepper", + "cilantro leaves", + "pork belly", + "salt", + "five spice", + "star anise", + "rice" + ] + }, + { + "id": 12613, + "cuisine": "greek", + "ingredients": [ + "dried basil", + "purple onion", + "dried oregano", + "garbanzo beans", + "lemon juice", + "olive oil", + "roasted garlic", + "dried sage", + "dried parsley" + ] + }, + { + "id": 15073, + "cuisine": "chinese", + "ingredients": [ + "potato starch", + "white pepper", + "wonton wrappers", + "calamari steak", + "large shrimp", + "sugar", + "Shaoxing wine", + "salt", + "oyster sauce", + "ginger juice", + "egg whites", + "napa cabbage", + "scallions", + "soy sauce", + "sesame oil", + "fresh pork fat", + "shrimp" + ] + }, + { + "id": 28484, + "cuisine": "italian", + "ingredients": [ + "smoked salmon", + "mushrooms", + "penne pasta", + "romano cheese", + "green peas", + "skim milk", + "butter", + "onions", + "garlic powder", + "all-purpose flour" + ] + }, + { + "id": 43974, + "cuisine": "japanese", + "ingredients": [ + "clove", + "fresh cilantro", + "cinnamon", + "garlic cloves", + "tumeric", + "garam masala", + "cayenne pepper", + "frozen peas", + "tomatoes", + "fresh ginger", + "salt", + "onions", + "green cardamom pods", + "cream", + "potatoes", + "cumin seed", + "canola oil" + ] + }, + { + "id": 45157, + "cuisine": "british", + "ingredients": [ + "eggs", + "oil", + "flour", + "salt", + "milk", + "sausages" + ] + }, + { + "id": 49666, + "cuisine": "spanish", + "ingredients": [ + "manchego cheese", + "salt", + "smoked paprika", + "onions", + "tomato sauce", + "large eggs", + "long-grain rice", + "ground meat", + "chicken broth", + "unsalted butter", + "freshly ground pepper", + "roast red peppers, drain", + "saffron", + "bread crumbs", + "extra-virgin olive oil", + "garlic cloves", + "Manzanilla olives" + ] + }, + { + "id": 31050, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "pinenuts", + "salt", + "olive oil", + "pomegranate", + "fresh basil", + "queso fresco" + ] + }, + { + "id": 7355, + "cuisine": "italian", + "ingredients": [ + "garlic", + "fresh basil", + "plum tomatoes", + "brie cheese", + "olive oil" + ] + }, + { + "id": 5595, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "flank steak", + "sweet corn", + "sour cream", + "grape tomatoes", + "olive oil", + "onion powder", + "beer", + "ground cumin", + "avocado", + "lime", + "chili powder", + "tortilla chips", + "monterey jack", + "pepper", + "garlic powder", + "salt", + "smoked paprika" + ] + }, + { + "id": 31542, + "cuisine": "french", + "ingredients": [ + "halibut fillets", + "fine sea salt", + "carrots", + "whitefish", + "ground black pepper", + "garlic cloves", + "fresh basil leaves", + "water", + "unsalted butter", + "fresh lemon juice", + "large egg yolks", + "crème fraîche", + "onions" + ] + }, + { + "id": 7420, + "cuisine": "spanish", + "ingredients": [ + "salt and ground black pepper", + "raisins", + "swiss chard", + "pinenuts", + "extra-virgin olive oil" + ] + }, + { + "id": 9967, + "cuisine": "thai", + "ingredients": [ + "palm sugar", + "rice noodles", + "tamarind paste", + "mung bean sprouts", + "water", + "large eggs", + "crushed red pepper", + "scallions", + "asian fish sauce", + "granulated sugar", + "vegetable oil", + "salted dry roasted peanuts", + "boiling water", + "lime", + "shallots", + "salt", + "medium shrimp", + "chopped garlic" + ] + }, + { + "id": 32785, + "cuisine": "italian", + "ingredients": [ + "pecans", + "mushrooms", + "salt", + "chicken broth", + "olive oil", + "butter", + "pepper", + "shallots", + "flat leaf parsley", + "marsala wine", + "chicken breasts", + "all-purpose flour" + ] + }, + { + "id": 43607, + "cuisine": "mexican", + "ingredients": [ + "cooked brown rice", + "diced tomatoes", + "avocado", + "shredded cheddar cheese", + "taco seasoning", + "black beans", + "cilantro", + "lean ground turkey", + "olive oil", + "onions" + ] + }, + { + "id": 790, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "orange", + "crushed red pepper", + "low sodium soy sauce", + "soy sauce", + "peeled fresh ginger", + "corn starch", + "cooked rice", + "boneless chicken skinless thigh", + "garlic", + "canola oil", + "scallion greens", + "red chili peppers", + "Shaoxing wine", + "rice vinegar" + ] + }, + { + "id": 2476, + "cuisine": "thai", + "ingredients": [ + "sugar", + "lime", + "garlic", + "sauce", + "scallions", + "pork", + "radishes", + "cilantro leaves", + "roasted peanuts", + "dried shrimp", + "warm water", + "tamarind pulp", + "salt", + "firm tofu", + "beansprouts", + "fish sauce", + "soy sauce", + "large eggs", + "dried rice noodles", + "peanut oil" + ] + }, + { + "id": 38496, + "cuisine": "mexican", + "ingredients": [ + "cold water", + "chopped green chilies", + "diced tomatoes", + "garlic cloves", + "chuck", + "shredded cheddar cheese", + "flour tortillas", + "all-purpose flour", + "onions", + "pepper", + "hot pepper sauce", + "salt", + "sour cream", + "water", + "vegetable oil", + "salsa", + "dried oregano" + ] + }, + { + "id": 561, + "cuisine": "italian", + "ingredients": [ + "penn pasta, cook and drain", + "broccoli florets", + "dri basil leaves, crush", + "garlic", + "ground black pepper", + "swanson chicken broth", + "grated parmesan cheese", + "lemon juice" + ] + }, + { + "id": 12929, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "onions", + "pepper flakes", + "coarse salt", + "sweet rice flour", + "green onions", + "cabbage", + "water", + "garlic" + ] + }, + { + "id": 45882, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "tomatoes", + "hot sauce", + "green cabbage", + "olive oil", + "meat loaf mixture", + "corn tortillas" + ] + }, + { + "id": 30727, + "cuisine": "french", + "ingredients": [ + "water", + "garlic cloves", + "canola oil", + "flageolet", + "ground black pepper", + "smoked turkey sausage", + "dried thyme", + "celery seed", + "lower sodium chicken broth", + "shallots", + "thyme sprigs" + ] + }, + { + "id": 9795, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "butternut squash", + "half & half", + "all-purpose flour", + "ground nutmeg", + "butter" + ] + }, + { + "id": 44414, + "cuisine": "italian", + "ingredients": [ + "sherry wine vinegar", + "fresh parsley", + "pepper", + "garlic", + "fresh basil", + "extra-virgin olive oil", + "shallots", + "salt" + ] + }, + { + "id": 23758, + "cuisine": "british", + "ingredients": [ + "ground ginger", + "coarse ground mustard", + "red currant jelly", + "fresh lemon juice", + "kosher salt", + "unsalted butter", + "salt", + "ruby port", + "olive oil", + "fresh orange juice", + "corn starch", + "fennel seeds", + "water", + "bay leaves", + "boneless pork loin" + ] + }, + { + "id": 7874, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "salt", + "nonfat dry milk", + "large egg yolks", + "sugar", + "reduced fat milk" + ] + }, + { + "id": 28730, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "honey", + "marinade", + "chopped garlic", + "soy sauce", + "pork tenderloin", + "sherry wine", + "sugar", + "hoisin sauce", + "chinese five-spice powder", + "pepper", + "bean paste", + "corn starch" + ] + }, + { + "id": 29050, + "cuisine": "french", + "ingredients": [ + "prepared horseradish", + "low-fat mayonnaise", + "minced garlic", + "boneless skinless chicken breasts", + "salt", + "chopped fresh chives", + "whole wheat bread", + "large egg whites", + "cajun seasoning", + "canola oil" + ] + }, + { + "id": 15912, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "garlic", + "cumin", + "chicken breasts", + "onions", + "hominy", + "carrots", + "chicken broth", + "stewed tomatoes", + "oregano" + ] + }, + { + "id": 26240, + "cuisine": "thai", + "ingredients": [ + "caster sugar", + "carrots", + "fish sauce", + "red pepper", + "coriander", + "lime juice", + "beansprouts", + "red chili peppers", + "purple onion" + ] + }, + { + "id": 43845, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "lemon", + "salt", + "eggs", + "unsalted butter", + "raisins", + "milk", + "all purpose unbleached flour", + "sugar", + "baking powder", + "extra-virgin olive oil" + ] + }, + { + "id": 37359, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "mini marshmallows", + "all-purpose flour", + "unsalted butter", + "vanilla extract", + "unsweetened cocoa powder", + "powdered sugar", + "whole milk", + "chopped pecans", + "light brown sugar", + "granulated sugar", + "salt" + ] + }, + { + "id": 18382, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "boneless skinless chicken breasts", + "panko breadcrumbs", + "grated parmesan cheese", + "poultry seasoning", + "crushed garlic" + ] + }, + { + "id": 35661, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "grated parmesan cheese", + "salt", + "pork sausages", + "chopped green bell pepper", + "garlic", + "green beans", + "zucchini", + "canned tomatoes", + "ground beef", + "ground black pepper", + "italian style seasoning", + "chopped onion" + ] + }, + { + "id": 19457, + "cuisine": "brazilian", + "ingredients": [ + "dried black beans", + "red wine vinegar", + "hot sauce", + "water", + "turkey", + "bay leaf", + "pepper", + "large garlic cloves", + "chopped onion", + "vegetable oil", + "salt", + "ground cumin" + ] + }, + { + "id": 18789, + "cuisine": "italian", + "ingredients": [ + "pepper", + "chicken breasts", + "oil", + "parmesan cheese", + "vodka sauce", + "panko breadcrumbs", + "Italian herbs", + "chees fresh mozzarella", + "whole wheat breadcrumbs", + "zucchini", + "salt" + ] + }, + { + "id": 16850, + "cuisine": "mexican", + "ingredients": [ + "ground red pepper", + "sour cream", + "rice", + "sliced green onions", + "salt", + "shredded Monterey Jack cheese", + "sweet paprika" + ] + }, + { + "id": 11163, + "cuisine": "italian", + "ingredients": [ + "sliced almonds", + "vanilla extract", + "unflavored gelatin", + "whole milk", + "almond liqueur", + "cherries", + "heavy whipping cream", + "sugar", + "almond extract" + ] + }, + { + "id": 16570, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "fresh coriander", + "tomatillos", + "avocado" + ] + }, + { + "id": 3195, + "cuisine": "mexican", + "ingredients": [ + "water", + "diced tomatoes", + "black beans", + "vegetable oil", + "ground cumin", + "colby cheese", + "chile pepper", + "chunky salsa", + "condensed cream of chicken soup", + "brown rice", + "pork loin chops" + ] + }, + { + "id": 8048, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "red pepper flakes", + "ginger root", + "baking soda", + "okra", + "kosher salt", + "garlic", + "onions", + "garam masala", + "cumin seed" + ] + }, + { + "id": 4372, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "asparagus", + "green peas", + "ham", + "arborio rice", + "water", + "dry white wine", + "whipping cream", + "fava beans", + "ground black pepper", + "butter", + "salt", + "fat free less sodium chicken broth", + "finely chopped onion", + "extra-virgin olive oil" + ] + }, + { + "id": 3877, + "cuisine": "russian", + "ingredients": [ + "light mayonnaise", + "chopped parsley", + "waxy potatoes", + "cornichons", + "frozen peas", + "carrots" + ] + }, + { + "id": 27696, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "shiitake", + "shimeji mushrooms", + "tofu", + "water", + "udon", + "Yuzukosho", + "Japanese turnips", + "mirin", + "kelp", + "sake", + "roasted sesame seeds", + "condiments" + ] + }, + { + "id": 10330, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "anchovy paste", + "boneless skinless chicken breast halves", + "capers", + "lemon", + "all-purpose flour", + "pepper", + "kalamata", + "penne pasta", + "parmesan cheese", + "salt", + "plum tomatoes" + ] + }, + { + "id": 31547, + "cuisine": "vietnamese", + "ingredients": [ + "golden caster sugar", + "lime", + "spring onions", + "cucumber", + "red chili peppers", + "pork tenderloin", + "vegetable oil", + "cabbage", + "fresh red chili", + "sesame seeds", + "sesame oil", + "coriander", + "celery ribs", + "lemongrass", + "mint leaves", + "root vegetables" + ] + }, + { + "id": 32629, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "salt", + "fermented black beans", + "chicken broth", + "sesame oil", + "corn starch", + "canola oil", + "sugar", + "garlic", + "red bell pepper", + "Shaoxing wine", + "english cucumber", + "pork butt" + ] + }, + { + "id": 14976, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "jalapeno chilies", + "garlic cloves", + "white onion", + "salt", + "chiles", + "tomatillos", + "lime juice", + "cilantro leaves" + ] + }, + { + "id": 45097, + "cuisine": "italian", + "ingredients": [ + "baguette", + "extra-virgin olive oil", + "black pepper", + "cantaloupe", + "kosher salt", + "fresh mozzarella", + "prosciutto", + "fresh mint" + ] + }, + { + "id": 19709, + "cuisine": "french", + "ingredients": [ + "white tuna in water", + "lettuce leaves", + "Niçoise olives", + "water", + "salt", + "capers", + "fresh green bean", + "fresh lemon juice", + "whole wheat pita rounds", + "extra-virgin olive oil" + ] + }, + { + "id": 14052, + "cuisine": "thai", + "ingredients": [ + "lime zest", + "lime leaves", + "lemon zest", + "lemongrass", + "soda water" + ] + }, + { + "id": 47685, + "cuisine": "greek", + "ingredients": [ + "plain yogurt", + "cucumber", + "garlic cloves" + ] + }, + { + "id": 32615, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "red pepper flakes", + "brown sugar", + "flour tortillas", + "whole kernel corn, drain", + "finely chopped onion", + "salsa", + "black beans", + "butter", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 16938, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "white sugar", + "eggs", + "minced garlic", + "rice vinegar", + "red chili peppers", + "fresh ginger", + "corn starch", + "white vinegar", + "boneless chicken skinless thigh", + "dry sherry" + ] + }, + { + "id": 24374, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "granulated sugar", + "peanuts", + "light corn syrup", + "water", + "butter", + "baking soda", + "salt" + ] + }, + { + "id": 49005, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "diced tomatoes", + "garlic cloves", + "penne", + "finely chopped onion", + "crushed red pepper", + "roasted red peppers", + "extra-virgin olive oil", + "sugar", + "cooking spray", + "salt" + ] + }, + { + "id": 33481, + "cuisine": "southern_us", + "ingredients": [ + "andouille sausage", + "fresh thyme", + "shredded monterey jack cheese", + "baked pizza crust", + "liquid", + "sour cream", + "onions", + "green bell pepper", + "corn", + "vegetable oil", + "salt", + "creole seasoning", + "red bell pepper", + "fresh parsley", + "chicken bouillon granules", + "black pepper", + "jalapeno chilies", + "butter", + "penne pasta", + "oil", + "corn tortillas", + "garlic salt", + "melted butter", + "minced garlic", + "flour", + "whipping cream", + "salt pork", + "shrimp", + "celery" + ] + }, + { + "id": 15165, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "ginger", + "onions", + "tomatoes", + "calamansi juice", + "salt", + "base", + "garlic", + "soy sauce", + "butter", + "tilapia" + ] + }, + { + "id": 19441, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "butter", + "all-purpose flour", + "eggs", + "bourbon whiskey", + "salt", + "baking powder", + "butterscotch chips", + "almonds", + "vanilla" + ] + }, + { + "id": 10919, + "cuisine": "southern_us", + "ingredients": [ + "mint leaves", + "simple syrup", + "vodka", + "bourbon whiskey", + "sugar", + "mint syrup", + "crushed ice", + "water", + "mint sprigs" + ] + }, + { + "id": 13299, + "cuisine": "russian", + "ingredients": [ + "sugar", + "vegetable oil", + "eggs", + "flour", + "salt", + "ground cinnamon", + "brandy", + "butter", + "powdered sugar", + "baking powder" + ] + }, + { + "id": 12654, + "cuisine": "chinese", + "ingredients": [ + "brown rice vinegar", + "olive oil", + "black tea leaves", + "green chilies", + "rock salt", + "duck breasts", + "spring onions", + "salt", + "garlic cloves", + "black tea", + "brown sugar", + "mushrooms", + "ginger", + "orange juice", + "cucumber", + "red chili peppers", + "szechwan peppercorns", + "cilantro leaves", + "red radishes" + ] + }, + { + "id": 2169, + "cuisine": "russian", + "ingredients": [ + "warm water", + "light molasses", + "large eggs", + "whipping cream", + "ground cinnamon", + "baking soda", + "semisweet chocolate", + "light corn syrup", + "all-purpose flour", + "ground ginger", + "golden brown sugar", + "unsalted butter", + "baking powder", + "salt", + "ground cloves", + "crystallized ginger", + "peeled fresh ginger", + "vanilla extract" + ] + }, + { + "id": 23478, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "baby spinach", + "celery", + "pernod", + "cayenne", + "bacon slices", + "bread crumb fresh", + "unsalted butter", + "flat leaf parsley", + "scallion greens", + "oysters", + "watercress" + ] + }, + { + "id": 44448, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "onion powder", + "garlic cloves", + "frozen chopped spinach", + "marinara sauce", + "salt", + "ground black pepper", + "part-skim ricotta cheese", + "dried oregano", + "large egg yolks", + "cooking spray", + "jumbo pasta shells" + ] + }, + { + "id": 5104, + "cuisine": "southern_us", + "ingredients": [ + "finely chopped onion", + "all-purpose flour", + "white cornmeal", + "baking powder", + "okra", + "large eggs", + "peanut oil", + "coarse salt", + "freshly ground pepper" + ] + }, + { + "id": 26191, + "cuisine": "italian", + "ingredients": [ + "chicken wings", + "blue cheese dressing", + "dried oregano", + "dijon mustard", + "extra-virgin olive oil", + "ground cumin", + "seasoning salt", + "sea salt", + "dried rosemary", + "fresh basil", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 20994, + "cuisine": "chinese", + "ingredients": [ + "fish sauce", + "crushed red pepper flakes", + "scallions", + "serrano chilies", + "curry powder", + "green peas", + "red bell pepper", + "soy sauce", + "ginger", + "shrimp", + "green bell pepper", + "egg noodles", + "garlic", + "onions" + ] + }, + { + "id": 5267, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "garlic", + "dried oregano", + "olive oil", + "fresh parsley", + "fresh basil", + "salt", + "tomatoes", + "ground black pepper", + "white sugar" + ] + }, + { + "id": 44309, + "cuisine": "thai", + "ingredients": [ + "water", + "chicken meat", + "ground turmeric", + "fresh ginger root", + "cayenne pepper", + "fish sauce", + "spring onions", + "coconut milk", + "fresh coriander", + "vegetable oil", + "fresh lime juice" + ] + }, + { + "id": 41092, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "salt", + "shortening", + "butter", + "powdered sugar", + "large eggs", + "all-purpose flour", + "milk", + "vanilla extract" + ] + }, + { + "id": 38757, + "cuisine": "french", + "ingredients": [ + "sugar", + "orange liqueur", + "strawberries", + "grated orange" + ] + }, + { + "id": 32104, + "cuisine": "irish", + "ingredients": [ + "eggs", + "heavy cream", + "chocolate syrup", + "sugar", + "Baileys Irish Cream Liqueur" + ] + }, + { + "id": 39761, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "fresh ginger", + "green onions", + "teriyaki sauce", + "corn starch", + "chicken", + "ground ginger", + "slaw", + "diced red onions", + "wonton wrappers", + "rice vinegar", + "chopped cilantro", + "soy sauce", + "garlic powder", + "boneless skinless chicken breasts", + "salt", + "toasted sesame oil", + "chicken broth", + "taco shells", + "shredded cabbage", + "stir fry sauce", + "oil", + "canola oil" + ] + }, + { + "id": 2626, + "cuisine": "mexican", + "ingredients": [ + "flour", + "vegetable oil", + "baking powder", + "warm water", + "salt" + ] + }, + { + "id": 5627, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "milk", + "cayenne", + "salt", + "ground cloves", + "coriander seeds", + "hot green chile", + "yellow onion", + "curry leaves", + "water", + "ground black pepper", + "garlic", + "ground cardamom", + "tumeric", + "fresh ginger", + "vegetable oil", + "boneless skinless chicken" + ] + }, + { + "id": 44678, + "cuisine": "mexican", + "ingredients": [ + "chopped green bell pepper", + "salt", + "milk", + "vegetable oil", + "cheddar cheese", + "baking powder", + "all-purpose flour", + "corn kernels", + "butter" + ] + }, + { + "id": 41543, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "ground black pepper", + "vegetable oil", + "onions", + "fish sauce", + "thai basil", + "green onions", + "garlic", + "chopped cilantro fresh", + "reduced sodium beef broth", + "fresh ginger root", + "sesame oil", + "green beans", + "sirloin tip", + "olive oil", + "reduced sodium soy sauce", + "red pepper flakes", + "chopped fresh mint" + ] + }, + { + "id": 34167, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "salt", + "onions", + "brown sugar", + "diced tomatoes", + "bay leaf", + "water", + "garlic", + "ground beef", + "tomato paste", + "dried thyme", + "green pepper", + "dried oregano" + ] + }, + { + "id": 37261, + "cuisine": "italian", + "ingredients": [ + "capers", + "boneless skinless chicken breasts", + "fresh parsley", + "pepper", + "salt", + "marsala wine", + "extra-virgin olive oil", + "flour", + "lemon juice" + ] + }, + { + "id": 47181, + "cuisine": "southern_us", + "ingredients": [ + "lime slices", + "sugar", + "boiling water", + "lime rind", + "cold water", + "fresh lime juice" + ] + }, + { + "id": 2272, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "sausages", + "guacamole", + "sour cream", + "tomatoes", + "green onions", + "monterey jack", + "large eggs", + "salsa" + ] + }, + { + "id": 25683, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "green onions", + "yellow onion", + "seasoning", + "corn husks", + "garlic", + "shrimp", + "red potato", + "asparagus", + "artichokes", + "celery", + "kosher salt", + "lemon", + "liquid" + ] + }, + { + "id": 48294, + "cuisine": "russian", + "ingredients": [ + "honey", + "yeast", + "raisins", + "white sugar", + "lemon" + ] + }, + { + "id": 28595, + "cuisine": "mexican", + "ingredients": [ + "frozen corn", + "black beans", + "corn tortillas", + "shredded cheddar cheese", + "enchilada sauce" + ] + }, + { + "id": 6509, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "shallots", + "Thai fish sauce", + "chopped fresh mint", + "sugar", + "shredded carrots", + "rice vermicelli", + "beansprouts", + "Boston lettuce", + "peanuts", + "vegetable oil", + "cucumber", + "large shrimp", + "red chili peppers", + "cooking spray", + "garlic cloves", + "fresh lime juice" + ] + }, + { + "id": 6677, + "cuisine": "brazilian", + "ingredients": [ + "chocolate sprinkles", + "cocoa powder", + "sweetened condensed milk", + "margarine" + ] + }, + { + "id": 48308, + "cuisine": "korean", + "ingredients": [ + "sugar", + "ground pepper", + "chili oil", + "green chilies", + "onions", + "boneless chicken thighs", + "chicken breasts", + "maple syrup", + "garlic cloves", + "red chili peppers", + "chili paste", + "salt", + "walnuts", + "dark soy sauce", + "white wine", + "vegetable oil", + "pineapple juice", + "corn starch" + ] + }, + { + "id": 7350, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "olive oil", + "salt", + "garlic salt", + "pepper", + "chili powder", + "red bell pepper", + "dried oregano", + "black beans", + "zucchini", + "whole kernel corn, drain", + "white sugar", + "yellow squash", + "red wine vinegar", + "onions" + ] + }, + { + "id": 17031, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "ground black pepper", + "buttermilk", + "dill pickles", + "dried oregano", + "dried thyme", + "onion powder", + "all-purpose flour", + "french rolls", + "kosher salt", + "hot pepper sauce", + "paprika", + "cornmeal", + "iceberg lettuce", + "sliced tomatoes", + "garlic powder", + "vegetable oil", + "cayenne pepper", + "medium shrimp" + ] + }, + { + "id": 611, + "cuisine": "vietnamese", + "ingredients": [ + "minced garlic", + "red pepper flakes", + "fresh basil", + "green onions", + "chopped cilantro fresh", + "chicken broth", + "minced ginger", + "peanut oil", + "fish sauce", + "boneless skinless chicken breasts", + "glass noodles" + ] + }, + { + "id": 38437, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "pistachios", + "paprika", + "ground coriander", + "flat leaf parsley", + "ground turmeric", + "coconut oil", + "lemon", + "salt", + "leg of lamb", + "couscous", + "fresh ginger", + "raisins", + "cayenne pepper", + "greek yogurt", + "onions", + "ground cinnamon", + "dried apricot", + "garlic", + "ground cardamom", + "low sodium beef broth", + "ground cumin" + ] + }, + { + "id": 10484, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "manchego cheese", + "freshly ground pepper", + "pepper", + "goat cheese", + "large garlic cloves", + "Italian bread" + ] + }, + { + "id": 43691, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "ground black pepper", + "salt", + "fresh lime juice", + "chiles", + "vegetable oil", + "garlic cloves", + "chopped cilantro fresh", + "green chile", + "boneless skinless chicken breasts", + "all-purpose flour", + "onions", + "corn kernels", + "red pepper", + "carrots", + "cumin" + ] + }, + { + "id": 24935, + "cuisine": "indian", + "ingredients": [ + "light coconut milk", + "tumeric", + "salt", + "red lentils", + "garlic", + "water" + ] + }, + { + "id": 14014, + "cuisine": "mexican", + "ingredients": [ + "dried black beans", + "water", + "diced tomatoes", + "boiling water", + "fat free yogurt", + "cooking spray", + "garlic cloves", + "ground cumin", + "reduced fat sharp cheddar cheese", + "fat free less sodium chicken broth", + "ground red pepper", + "corn tortillas", + "chipotle chile", + "olive oil", + "chopped onion", + "dried oregano" + ] + }, + { + "id": 25631, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "flaked", + "ground cumin", + "green bell pepper", + "peeled tomatoes", + "lemon juice", + "minced garlic", + "salt", + "cider vinegar", + "jalapeno chilies", + "onions" + ] + }, + { + "id": 34942, + "cuisine": "chinese", + "ingredients": [ + "Sriracha", + "ginger", + "sugar", + "red pepper flakes", + "salt", + "green onions", + "garlic", + "soy sauce", + "fresh green bean", + "oil" + ] + }, + { + "id": 1654, + "cuisine": "thai", + "ingredients": [ + "light brown sugar", + "Thai fish sauce", + "mango", + "jalapeno chilies", + "red bell pepper", + "tomatoes", + "cucumber", + "mint leaves", + "fresh lime juice" + ] + }, + { + "id": 13505, + "cuisine": "irish", + "ingredients": [ + "potato bread", + "olive oil", + "salt" + ] + }, + { + "id": 46527, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cooking wine", + "garlic cloves", + "red pepper", + "peanut oil", + "toasted sesame oil", + "sugar", + "unsalted dry roast peanuts", + "scallions", + "boneless skinless chicken breasts", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 39598, + "cuisine": "vietnamese", + "ingredients": [ + "dark soy sauce", + "pickled carrots", + "cracked black pepper", + "beansprouts", + "sugar", + "green onions", + "roasted peanuts", + "pork shoulder", + "fish sauce", + "fresh cilantro", + "garlic", + "fresh mint", + "thin spaghetti", + "lemongrass", + "sesame oil", + "cucumber" + ] + }, + { + "id": 21562, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "olive oil", + "garlic cloves", + "guajillo chiles", + "tomatillos", + "tomatoes", + "ground black pepper", + "ancho chile pepper", + "white onion", + "salt" + ] + }, + { + "id": 47703, + "cuisine": "japanese", + "ingredients": [ + "corn", + "spices", + "arugula", + "sugar", + "sesame oil", + "persian cucumber", + "tomatoes", + "boneless skinless chicken breasts", + "rice vinegar", + "soy sauce", + "ramen noodles", + "scallions" + ] + }, + { + "id": 18423, + "cuisine": "italian", + "ingredients": [ + "milk", + "salt", + "sun-dried tomatoes in oil", + "fresh rosemary", + "lemon zest", + "garlic cloves", + "rosemary sprigs", + "light mayonnaise", + "potato chips", + "vegetables", + "freshly ground pepper" + ] + }, + { + "id": 34016, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "spaghetti", + "olive oil", + "deveined shrimp", + "kosher salt", + "lemon", + "ground pepper", + "garlic" + ] + }, + { + "id": 21984, + "cuisine": "italian", + "ingredients": [ + "capers", + "red wine vinegar", + "okra", + "water", + "crushed red pepper", + "red bell pepper", + "baguette", + "canned tomatoes", + "garlic cloves", + "vegetable oil", + "chopped onion" + ] + }, + { + "id": 34228, + "cuisine": "jamaican", + "ingredients": [ + "lime slices", + "sugar", + "lemon slices", + "lime juice", + "orange juice", + "rum" + ] + }, + { + "id": 20886, + "cuisine": "italian", + "ingredients": [ + "dry bread crumbs", + "garlic cloves", + "anchovy fillets", + "grated lemon zest", + "linguine", + "oil" + ] + }, + { + "id": 1026, + "cuisine": "mexican", + "ingredients": [ + "scallion greens", + "pepper jack", + "salsa", + "mayonaise", + "black olives", + "fresh lime juice", + "green chile", + "chili powder", + "sour cream", + "avocado", + "refried beans", + "salt", + "ground cumin" + ] + }, + { + "id": 9392, + "cuisine": "italian", + "ingredients": [ + "ketchup", + "worcestershire sauce", + "brown sugar", + "cooked chicken", + "spaghetti", + "chopped green bell pepper", + "chopped onion", + "tomato sauce", + "chili powder" + ] + }, + { + "id": 9391, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "water", + "garlic", + "oil", + "soy sauce", + "ginger", + "Chinese rose wine", + "cinnamon sticks", + "rock sugar", + "dates", + "salt", + "chicken leg quarters", + "white pepper", + "star anise", + "scallions", + "chicken-flavored soup powder" + ] + }, + { + "id": 35877, + "cuisine": "japanese", + "ingredients": [ + "minced garlic", + "rice vinegar", + "orange juice", + "chile paste with garlic", + "shredded carrots", + "firm tofu", + "chopped cilantro fresh", + "low sodium soy sauce", + "sesame seeds", + "chinese cabbage", + "beansprouts", + "brown sugar", + "peeled fresh ginger", + "dark sesame oil", + "soba" + ] + }, + { + "id": 25720, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "garlic powder", + "chili powder", + "salt", + "chopped cilantro fresh", + "black pepper", + "lime juice", + "low sodium chicken broth", + "diced tomatoes", + "sour cream", + "avocado", + "minced garlic", + "roma tomatoes", + "vegetable oil", + "yellow onion", + "ground cumin", + "black beans", + "corn", + "boneless skinless chicken breasts", + "paprika", + "corn tortillas" + ] + }, + { + "id": 48370, + "cuisine": "indian", + "ingredients": [ + "whole cloves", + "cinnamon sticks", + "mace", + "cardamom seeds", + "coriander seeds", + "cumin seed", + "bay leaves", + "peppercorns" + ] + }, + { + "id": 19933, + "cuisine": "moroccan", + "ingredients": [ + "red wine vinegar", + "flat leaf parsley", + "eggplant", + "purple onion", + "sugar", + "extra-virgin olive oil", + "pitas", + "cumin seed" + ] + }, + { + "id": 31540, + "cuisine": "french", + "ingredients": [ + "pig", + "unsalted butter", + "garlic", + "fresh pork fat", + "water", + "bacon", + "all-purpose flour", + "brown ale", + "rustic bread", + "salt", + "freshly ground pepper", + "rosemary", + "cheese", + "yellow onion" + ] + }, + { + "id": 16459, + "cuisine": "mexican", + "ingredients": [ + "water", + "lean ground meat", + "shredded cheese", + "black pepper", + "chili", + "salt", + "ground cumin", + "romaine lettuce", + "corn", + "crushed red pepper flakes", + "sour cream", + "black beans", + "garlic powder", + "salsa" + ] + }, + { + "id": 39451, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "olive oil", + "pitted olives", + "dried oregano", + "anchovies", + "red pepper flakes", + "fresh parsley", + "capers", + "minced onion", + "salt", + "crushed tomatoes", + "garlic", + "spaghetti" + ] + }, + { + "id": 12230, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "sea salt", + "freshly ground pepper", + "ground turmeric", + "safflower oil", + "unsalted butter", + "chickpeas", + "ground cayenne pepper", + "ground cumin", + "low-fat greek yogurt", + "cilantro leaves", + "garlic cloves", + "bone in chicken thighs", + "baby spinach leaves", + "low sodium chicken broth", + "ground coriander", + "onions" + ] + }, + { + "id": 22069, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon", + "salt", + "frozen peas", + "ground black pepper", + "bacon", + "garlic cloves", + "large egg yolks", + "heavy cream", + "yellow onion", + "grated parmesan cheese", + "dry pasta", + "fresh basil leaves" + ] + }, + { + "id": 17959, + "cuisine": "korean", + "ingredients": [ + "water", + "garlic", + "soy sauce", + "green onions", + "onions", + "boneless chicken skinless thigh", + "ginger", + "white sugar", + "mirin", + "Gochujang base" + ] + }, + { + "id": 6892, + "cuisine": "mexican", + "ingredients": [ + "lime", + "ear of corn", + "mayonaise", + "chili powder", + "grated parmesan cheese", + "sour cream", + "pepper", + "cilantro" + ] + }, + { + "id": 14137, + "cuisine": "italian", + "ingredients": [ + "white wine", + "cream cheese", + "paprika", + "pistachio nuts", + "crumbled gorgonzola", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 14742, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "powdered sugar", + "all-purpose flour", + "vanilla", + "baking powder", + "chopped pecans" + ] + }, + { + "id": 5064, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper", + "crusty bread", + "balsamic vinegar", + "rosemary sprigs", + "prosciutto", + "purple onion", + "golden brown sugar", + "ricotta cheese" + ] + }, + { + "id": 8291, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "milk", + "plain flour", + "black treacle", + "butter", + "nutmeg", + "sugar", + "golden syrup", + "ground ginger", + "bicarbonate of soda", + "large eggs" + ] + }, + { + "id": 31589, + "cuisine": "filipino", + "ingredients": [ + "chicken stock", + "ground black pepper", + "napa cabbage", + "oil", + "ground chicken", + "green onions", + "garlic", + "glass noodles", + "soy sauce", + "water chestnuts", + "kinchay", + "carrots", + "pepper", + "shallots", + "salt" + ] + }, + { + "id": 44064, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "salt", + "thin spaghetti", + "green onions", + "chicken", + "pepper", + "hot sauce", + "chicken broth", + "garlic" + ] + }, + { + "id": 45218, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "cannellini beans", + "chopped celery", + "carrots", + "black pepper", + "chopped fresh thyme", + "garlic cloves", + "chopped fresh mint", + "salmon fillets", + "shallots", + "salt", + "fresh parsley", + "water", + "extra-virgin olive oil", + "lemon juice" + ] + }, + { + "id": 2434, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "baking potatoes", + "smoked paprika", + "tomato purée", + "chopped fresh chives", + "salt", + "pepper", + "ground red pepper", + "yellow onion", + "saffron threads", + "sherry vinegar", + "large garlic cloves", + "bay leaf" + ] + }, + { + "id": 18949, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "slaw mix", + "pepper", + "egg roll wrappers", + "garlic cloves", + "chopped cooked meat", + "salt", + "water", + "vegetable oil" + ] + }, + { + "id": 40827, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "sour cream", + "shredded Monterey Jack cheese", + "green chile", + "butter", + "boneless skinless chicken breast halves", + "chicken broth", + "vegetable oil", + "corn tortillas", + "minced onion", + "all-purpose flour", + "chopped cilantro fresh" + ] + }, + { + "id": 41039, + "cuisine": "greek", + "ingredients": [ + "red swiss chard", + "extra-virgin olive oil", + "wheat", + "garlic cloves", + "low-fat greek yogurt", + "cayenne pepper", + "coarse salt", + "fresh lemon juice" + ] + }, + { + "id": 36877, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "green onions", + "ground turkey", + "dumpling wrappers", + "salt", + "canola oil", + "water", + "sesame oil", + "cabbage", + "soy sauce", + "fresh ginger", + "carrots" + ] + }, + { + "id": 19817, + "cuisine": "british", + "ingredients": [ + "chopped fresh chives", + "radishes", + "sesame oil" + ] + }, + { + "id": 38102, + "cuisine": "southern_us", + "ingredients": [ + "red potato", + "prepared horseradish", + "salt", + "milk", + "sweet potatoes", + "ground cinnamon", + "ground nutmeg", + "butter", + "pepper", + "grated parmesan cheese", + "sour cream" + ] + }, + { + "id": 45154, + "cuisine": "japanese", + "ingredients": [ + "shredded carrots", + "seasoned rice wine vinegar", + "vegetable oil", + "red cabbage", + "napa cabbage", + "green onions", + "toasted sesame seeds" + ] + }, + { + "id": 18002, + "cuisine": "italian", + "ingredients": [ + "saffron threads", + "dry white wine", + "flat leaf parsley", + "grated parmesan cheese", + "hot Italian sausages", + "bay leaves", + "low salt chicken broth", + "arborio rice", + "butter", + "onions" + ] + }, + { + "id": 26855, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "mixed bell peppers", + "salsa", + "frozen corn", + "olives", + "yoghurt", + "corn tortillas" + ] + }, + { + "id": 12655, + "cuisine": "mexican", + "ingredients": [ + "beef brisket", + "pan drippings", + "pinto beans", + "minced garlic", + "guacamole", + "tortilla chips", + "canola oil", + "pico de gallo", + "jalapeno chilies", + "sauce", + "sour cream", + "ground black pepper", + "Tabasco Pepper Sauce", + "grated jack cheese" + ] + }, + { + "id": 14953, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "salt", + "garlic salt", + "onion powder", + "penne pasta", + "flour", + "broccoli", + "chicken", + "butter", + "and fat free half half" + ] + }, + { + "id": 31630, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "white sugar", + "self-rising cornmeal", + "oil", + "eggs", + "onions" + ] + }, + { + "id": 49533, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "onions", + "black pepper", + "ricotta", + "chili flakes", + "salt", + "parmigiano", + "olive oil", + "penne rigate" + ] + }, + { + "id": 46126, + "cuisine": "italian", + "ingredients": [ + "whipping cream", + "flat leaf parsley", + "walnuts", + "crumbled gorgonzola", + "bow-tie pasta" + ] + }, + { + "id": 44618, + "cuisine": "russian", + "ingredients": [ + "shallots", + "crackers", + "capers", + "sweet paprika", + "unsalted butter", + "cream cheese, soften", + "caraway seeds", + "anchovy fillets" + ] + }, + { + "id": 15443, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "all-purpose flour", + "granny smith apples", + "vanilla extract", + "sugar", + "cinnamon", + "sour cream", + "unsalted butter", + "salt" + ] + }, + { + "id": 26512, + "cuisine": "southern_us", + "ingredients": [ + "tea bags", + "peaches", + "water", + "simple syrup", + "sugar", + "rum", + "sweet tea" + ] + }, + { + "id": 8354, + "cuisine": "filipino", + "ingredients": [ + "garlic", + "carrots", + "firm tofu", + "onions", + "salt", + "beansprouts", + "pepper", + "oil" + ] + }, + { + "id": 9260, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "diced red onions", + "lime juice", + "salt", + "sugar", + "jalapeno chilies", + "corn kernels", + "cilantro leaves" + ] + }, + { + "id": 12575, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "garlic", + "scallions", + "flat leaf parsley", + "jalapeno chilies", + "salt", + "chicken livers", + "chopped green bell pepper", + "purple onion", + "long-grain rice", + "celery", + "ground black pepper", + "vegetable oil", + "fresh oregano", + "red bell pepper" + ] + }, + { + "id": 20866, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "fresh green bean", + "oyster sauce", + "wide rice noodles", + "ground chicken", + "rice vinegar", + "sugar", + "thai chile", + "tomatoes", + "sesame oil", + "garlic cloves" + ] + }, + { + "id": 24529, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "baking powder", + "crème fraîche", + "unsalted butter", + "whipped cream", + "blackberries", + "sugar", + "ice cream", + "all-purpose flour", + "whole milk", + "fine sea salt" + ] + }, + { + "id": 3766, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "ginger", + "pepper flakes", + "napa cabbage", + "garlic cloves", + "palm sugar", + "scallions", + "fish sauce", + "daikon" + ] + }, + { + "id": 13767, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "baking powder", + "masa harina", + "pork", + "lard", + "kosher salt", + "tamale filling", + "dried cornhusks", + "poblano chiles", + "chicken" + ] + }, + { + "id": 30426, + "cuisine": "chinese", + "ingredients": [ + "ginger", + "chicken", + "soy sauce", + "scallions", + "salt", + "minced ginger", + "oil" + ] + }, + { + "id": 2727, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "bay leaves", + "smoked paprika", + "pork", + "ground black pepper", + "white rice", + "black-eyed peas", + "base", + "onion flakes", + "baking soda", + "bacon slices" + ] + }, + { + "id": 5200, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "egg roll wrappers", + "salt", + "bamboo shoots", + "soy sauce", + "green onions", + "carrots", + "pork", + "egg whites", + "oil", + "cabbage", + "eggs", + "msg", + "vegetable oil", + "wood ear mushrooms" + ] + }, + { + "id": 29586, + "cuisine": "irish", + "ingredients": [ + "nutmeg", + "baking soda", + "cinnamon", + "margarine", + "brown sugar", + "flour", + "salt", + "eggs", + "cherries", + "dates", + "pecans", + "coffee", + "raisins" + ] + }, + { + "id": 36488, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "garlic powder", + "salsa", + "cumin", + "milk", + "chili powder", + "onions", + "pepper", + "flour", + "ground beef", + "shredded Monterey Jack cheese", + "eggs", + "olive oil", + "salt", + "dried oregano" + ] + }, + { + "id": 9671, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "vinegar", + "black-eyed peas", + "vegetable broth", + "water", + "butter", + "swiss chard", + "purple onion" + ] + }, + { + "id": 27513, + "cuisine": "southern_us", + "ingredients": [ + "egg whites", + "all-purpose flour", + "corn husks", + "vegetable oil", + "egg yolks", + "white sugar", + "ground black pepper", + "salt" + ] + }, + { + "id": 1568, + "cuisine": "mexican", + "ingredients": [ + "evaporated milk", + "green chile", + "enchilada sauce", + "eggs", + "all-purpose flour", + "shredded cheddar cheese", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 17533, + "cuisine": "mexican", + "ingredients": [ + "Herdez Salsa Casera", + "olive oil", + "green onions", + "purple onion", + "corn tortillas", + "lime juice", + "Herdez Salsa Verde", + "cilantro", + "nopales", + "honey", + "basil leaves", + "garlic", + "orange juice", + "pepper", + "carne asada", + "balsamic vinegar", + "salt" + ] + }, + { + "id": 49129, + "cuisine": "russian", + "ingredients": [ + "golden brown sugar", + "vegetable oil", + "toasted walnuts", + "dried tart cherries", + "all-purpose flour", + "applesauce", + "unsalted butter", + "vanilla extract", + "farmer cheese", + "large eggs", + "salt", + "cream cheese" + ] + }, + { + "id": 8099, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "rice", + "olive oil", + "onions", + "black beans", + "chopped parsley", + "chicken broth", + "garlic" + ] + }, + { + "id": 47564, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "peeled shrimp", + "brown sugar", + "green onions", + "chicken stock", + "fresh ginger root", + "boneless pork loin", + "chinese rice wine", + "wonton wrappers" + ] + }, + { + "id": 49354, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "dried sage", + "ground white pepper", + "garlic powder", + "cayenne pepper", + "dried thyme", + "onion powder", + "ground black pepper", + "sweet paprika" + ] + }, + { + "id": 17275, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "boneless chuck roast", + "bay leaves", + "all-purpose flour", + "fresh parsley", + "black pepper", + "dijon mustard", + "bacon", + "less sodium beef broth", + "water", + "fresh thyme", + "salt", + "dark beer", + "brown sugar", + "ground nutmeg", + "red wine vinegar", + "chopped onion", + "chopped garlic" + ] + }, + { + "id": 25290, + "cuisine": "southern_us", + "ingredients": [ + "garlic bulb", + "olive oil", + "pear tomatoes", + "balsamic vinaigrette", + "plum tomatoes", + "pepper", + "green tomatoes", + "salt", + "fresh parsley", + "fresh basil", + "large eggs", + "buttermilk", + "cornmeal", + "salad greens", + "vegetable oil", + "all-purpose flour", + "crostini" + ] + }, + { + "id": 11549, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "chili", + "salt", + "allspice", + "clove", + "chipotle chile", + "vegetable oil", + "chicken pieces", + "black peppercorns", + "peanuts", + "cinnamon sticks", + "chicken broth", + "water", + "garlic", + "onions" + ] + }, + { + "id": 24332, + "cuisine": "mexican", + "ingredients": [ + "water", + "masa", + "coarse salt", + "vegetable oil", + "shredded mozzarella cheese" + ] + }, + { + "id": 25499, + "cuisine": "italian", + "ingredients": [ + "pesto", + "salt", + "shredded cheddar cheese", + "pepper", + "eggs", + "vegetable oil" + ] + }, + { + "id": 39406, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "ricotta cheese", + "fresh parsley", + "salami", + "sliced ham", + "eggs", + "refrigerated piecrusts" + ] + }, + { + "id": 12307, + "cuisine": "southern_us", + "ingredients": [ + "lemon zest", + "poppy seeds", + "clementines", + "cookies", + "cream cheese, soften", + "sugar", + "heavy cream", + "kiwi", + "orange marmalade", + "vanilla extract" + ] + }, + { + "id": 38557, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "water", + "vanilla extract", + "dark corn syrup", + "light corn syrup", + "baking soda", + "salted peanuts" + ] + }, + { + "id": 17164, + "cuisine": "italian", + "ingredients": [ + "fresh tomatoes", + "garlic", + "onions", + "tomato paste", + "mushrooms", + "all-purpose flour", + "dried rosemary", + "green bell pepper", + "vegetable oil", + "beef broth", + "pepper", + "salt", + "spaghetti" + ] + }, + { + "id": 25363, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "chili powder", + "salt", + "onions", + "ground cumin", + "garam masala", + "double cream", + "oil", + "ground turmeric", + "garlic paste", + "butter", + "green chilies", + "coriander", + "eggs", + "coriander powder", + "lemon", + "lemon juice", + "ground lamb" + ] + }, + { + "id": 15517, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "sesame oil", + "unsalted dry roast peanuts", + "toasted sesame seeds", + "water", + "white rice", + "fresh mushrooms", + "soy sauce", + "vegetable oil", + "rice vinegar", + "boneless skinless chicken breast halves", + "green onions", + "garlic", + "corn starch" + ] + }, + { + "id": 25947, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "large eggs", + "vanilla extract", + "cream of tartar", + "evaporated milk", + "vegetable oil", + "salt", + "melted butter", + "unsalted butter", + "white cheddar cheese", + "water", + "baking powder", + "cake flour" + ] + }, + { + "id": 27293, + "cuisine": "moroccan", + "ingredients": [ + "fresh rosemary", + "chicken", + "sherry vinegar", + "kosher salt", + "rub", + "extra-virgin olive oil" + ] + }, + { + "id": 29025, + "cuisine": "southern_us", + "ingredients": [ + "chopped pecans", + "brown sugar", + "peaches", + "ground cinnamon" + ] + }, + { + "id": 15831, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "olive oil", + "chopped fresh thyme", + "white wine", + "shallots", + "green beans", + "cremini mushrooms", + "kosher salt", + "brown rice", + "flat leaf parsley", + "black pepper", + "parmigiano reggiano cheese", + "hot water" + ] + }, + { + "id": 36839, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "baking powder", + "seasoning salt", + "corn starch", + "water", + "peanut oil", + "eggs", + "flour" + ] + }, + { + "id": 42424, + "cuisine": "french", + "ingredients": [ + "pastry dough", + "unsalted butter", + "fresh lemon juice", + "sugar", + "walnuts", + "dark rum", + "pears" + ] + }, + { + "id": 20536, + "cuisine": "indian", + "ingredients": [ + "cumin seed", + "plain yogurt", + "salt", + "seedless cucumber", + "chopped cilantro fresh" + ] + }, + { + "id": 8624, + "cuisine": "brazilian", + "ingredients": [ + "unsweetened coconut milk", + "fresh cilantro", + "salt", + "chuck", + "black beans", + "fresh ginger", + "garlic cloves", + "tomatoes", + "olive oil", + "yellow onion", + "pepper", + "red pepper flakes", + "dried oregano" + ] + }, + { + "id": 34691, + "cuisine": "greek", + "ingredients": [ + "phyllo dough", + "ground walnuts", + "ground cinnamon", + "honey", + "white sugar", + "water", + "orange juice", + "melted butter", + "ground nutmeg" + ] + }, + { + "id": 21335, + "cuisine": "thai", + "ingredients": [ + "ground red pepper", + "salt", + "shredded cabbage", + "unsalted dry roast peanuts", + "tumeric", + "shallots", + "plum tomatoes", + "ground sirloin", + "peanut oil" + ] + }, + { + "id": 23729, + "cuisine": "jamaican", + "ingredients": [ + "coconut flakes", + "curry powder", + "ground black pepper", + "ground allspice", + "ginger root", + "kosher salt", + "olive oil", + "butternut squash", + "carrots", + "onions", + "boneless chicken skinless thigh", + "chili", + "fresh thyme", + "scallions", + "coconut milk", + "white rum", + "minced garlic", + "peanuts", + "coarse salt", + "low salt chicken broth", + "mango" + ] + }, + { + "id": 10257, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "butter", + "gorgonzola", + "olive oil", + "garlic cloves", + "romano cheese", + "penne pasta", + "italian plum tomatoes", + "onions" + ] + }, + { + "id": 1279, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "garam masala", + "ginger", + "chickpeas", + "lemon juice", + "ground cumin", + "nutmeg", + "water", + "diced tomatoes", + "vegetable broth", + "garlic cloves", + "chopped cilantro fresh", + "cauliflower", + "black pepper", + "chili paste", + "raw cashews", + "ground coriander", + "onions", + "brown sugar", + "olive oil", + "paprika", + "salt", + "ground cardamom", + "basmati rice" + ] + }, + { + "id": 40813, + "cuisine": "russian", + "ingredients": [ + "olive oil", + "garlic cloves", + "tagliatelle", + "cayenne pepper", + "sour cream", + "beets", + "flat leaf parsley", + "butter", + "fresh lemon juice" + ] + }, + { + "id": 43700, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "all-purpose flour", + "melted butter", + "buttermilk", + "shortening", + "salt", + "vegetable oil" + ] + }, + { + "id": 1148, + "cuisine": "russian", + "ingredients": [ + "celery ribs", + "green bell pepper", + "russet potatoes", + "sour cream", + "caraway seeds", + "olive oil", + "garlic cloves", + "onions", + "hungarian sweet paprika", + "parsnips", + "canned beef broth", + "fresh parsley", + "tomatoes", + "beef", + "carrots" + ] + }, + { + "id": 22700, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "fresh basil", + "sherry", + "boneless skinless chicken breast halves", + "grated parmesan cheese", + "garlic", + "pinenuts", + "reduced-fat sour cream" + ] + }, + { + "id": 45382, + "cuisine": "indian", + "ingredients": [ + "sweet onion", + "peeled shrimp", + "coconut milk", + "chili powder", + "salt", + "ground turmeric", + "chopped tomatoes", + "garlic", + "chopped cilantro fresh", + "ground ginger", + "paprika", + "peanut oil", + "ground cumin" + ] + }, + { + "id": 6697, + "cuisine": "italian", + "ingredients": [ + "chicken drumsticks", + "chicken thighs", + "garlic powder", + "salt", + "pepper", + "extra-virgin olive oil", + "dried oregano", + "cooking spray", + "fresh lemon juice" + ] + }, + { + "id": 24888, + "cuisine": "italian", + "ingredients": [ + "pepper flakes", + "ground black pepper", + "escarole", + "homemade chicken stock", + "grated parmesan cheese", + "onions", + "minced garlic", + "cannellini beans", + "olive oil", + "sweet italian sausage" + ] + }, + { + "id": 48659, + "cuisine": "mexican", + "ingredients": [ + "processed cheese", + "onions", + "Ranch Style Beans", + "diced tomatoes", + "corn kernel whole", + "ground beef" + ] + }, + { + "id": 39791, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "oxtails", + "scallions", + "clove", + "olive oil", + "garlic", + "onions", + "tomatoes", + "ground pepper", + "salt", + "allspice", + "water", + "red pepper", + "thyme" + ] + }, + { + "id": 21590, + "cuisine": "indian", + "ingredients": [ + "chiles", + "milk", + "mutton", + "onions", + "garlic paste", + "black pepper", + "coriander seeds", + "ground cardamom", + "ginger paste", + "clove", + "red chili peppers", + "mace", + "salt", + "kewra essence", + "tumeric", + "cream", + "yoghurt", + "ghee" + ] + }, + { + "id": 48385, + "cuisine": "irish", + "ingredients": [ + "ground black pepper", + "gran marnier", + "strawberries", + "sugar", + "fresh raspberries", + "heavy cream" + ] + }, + { + "id": 11776, + "cuisine": "chinese", + "ingredients": [ + "tomato purée", + "prawns", + "oil", + "light soy sauce", + "ginger", + "dried chile", + "caster sugar", + "water chestnuts", + "garlic cloves", + "unsalted roasted peanuts", + "cornflour", + "Chinese rice vinegar" + ] + }, + { + "id": 32790, + "cuisine": "italian", + "ingredients": [ + "orange", + "egg yolks", + "all-purpose flour", + "water", + "large eggs", + "salt", + "powdered sugar", + "granulated sugar", + "extra-virgin olive oil", + "active dry yeast", + "cinnamon" + ] + }, + { + "id": 6879, + "cuisine": "cajun_creole", + "ingredients": [ + "smoked ham", + "salt", + "garlic cloves", + "water", + "chopped fresh thyme", + "yellow onion", + "bay leaf", + "steamed white rice", + "smoked sausage", + "freshly ground pepper", + "red kidney beans", + "vegetable oil", + "hot sauce", + "flat leaf parsley" + ] + }, + { + "id": 23284, + "cuisine": "filipino", + "ingredients": [ + "vegetable oil", + "salt", + "green beans", + "cabbage", + "soy sauce", + "medium potatoes", + "yellow onion", + "celery", + "chicken broth", + "lumpia wrappers", + "dried shiitake mushrooms", + "beansprouts", + "black pepper", + "garlic", + "carrots", + "ground beef" + ] + }, + { + "id": 2743, + "cuisine": "thai", + "ingredients": [ + "chili paste", + "sugar", + "cilantro", + "vinegar", + "peanuts", + "salt" + ] + }, + { + "id": 29885, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "butter", + "vanilla ice cream", + "baking powder", + "all-purpose flour", + "frozen peaches", + "salt", + "sugar", + "almond extract" + ] + }, + { + "id": 33797, + "cuisine": "italian", + "ingredients": [ + "russet potatoes", + "grated nutmeg", + "mascarpone", + "extra-virgin olive oil", + "boiling water", + "grated parmesan cheese", + "whipping cream", + "dried porcini mushrooms", + "butter", + "garlic cloves" + ] + }, + { + "id": 49674, + "cuisine": "mexican", + "ingredients": [ + "raspberries", + "frozen blueberries", + "orange juice", + "ice", + "triple sec", + "white sugar", + "gold tequila", + "frozen strawberries" + ] + }, + { + "id": 21111, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "rice noodles", + "garlic chili sauce", + "beansprouts", + "chinese rice wine", + "minced ginger", + "yellow onion", + "corn starch", + "minced garlic", + "vegetable oil", + "shrimp", + "sugar", + "green onions", + "roasted peanuts", + "ground white pepper" + ] + }, + { + "id": 47434, + "cuisine": "greek", + "ingredients": [ + "eggs", + "salt", + "shallots", + "greek yogurt", + "sun-dried tomatoes", + "smoked paprika", + "vegetable oil" + ] + }, + { + "id": 37316, + "cuisine": "filipino", + "ingredients": [ + "onion powder", + "ground cumin", + "ground black pepper", + "salt", + "garlic powder", + "paprika", + "chili powder", + "dried oregano" + ] + }, + { + "id": 38214, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "ground black pepper", + "chicken", + "kosher salt", + "thyme", + "unsalted butter" + ] + }, + { + "id": 41347, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "cayenne pepper", + "cotija", + "salt", + "eggs", + "chile pepper", + "monterey jack", + "milk", + "all-purpose flour" + ] + }, + { + "id": 35485, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "egg yolks", + "yeast", + "eggs", + "granulated sugar", + "salt", + "warm water", + "butter", + "shortening", + "flour", + "cocoa powder" + ] + }, + { + "id": 18257, + "cuisine": "mexican", + "ingredients": [ + "light sour cream", + "flour tortillas", + "salt", + "pepper", + "cooked chicken", + "nonstick spray", + "black beans", + "guacamole", + "shredded pepper jack cheese", + "roasted red peppers", + "chili powder", + "sliced green onions" + ] + }, + { + "id": 15092, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "cooking spray", + "ground allspice", + "sugar", + "dried thyme", + "purple onion", + "low sodium soy sauce", + "cider vinegar", + "ground red pepper", + "boneless chicken skinless thigh", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 4866, + "cuisine": "korean", + "ingredients": [ + "fishcake", + "sesame seeds", + "garlic", + "sugar", + "water", + "rice cakes", + "cabbage", + "pepper", + "chili paste", + "kelp", + "ketchup", + "anchovies", + "leeks" + ] + }, + { + "id": 3920, + "cuisine": "chinese", + "ingredients": [ + "shortening", + "light soy sauce", + "garlic", + "white sugar", + "water", + "sesame oil", + "oyster sauce", + "pork", + "green onions", + "all-purpose flour", + "boiling water", + "active dry yeast", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 25091, + "cuisine": "thai", + "ingredients": [ + "sugar", + "red wine vinegar", + "crushed red pepper", + "sliced tomatoes", + "lime wedges", + "garlic", + "bamboo shoots", + "seedless cucumber", + "cilantro", + "pineapple juice", + "boneless skinless chicken breasts", + "ginger", + "creamy peanut butter" + ] + }, + { + "id": 40407, + "cuisine": "southern_us", + "ingredients": [ + "cheese", + "refrigerated crescent rolls" + ] + }, + { + "id": 48142, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "non-fat sour cream", + "garlic cloves", + "tomato sauce", + "dry red wine", + "hot sauce", + "dried oregano", + "white vinegar", + "chopped green bell pepper", + "salt", + "chopped cilantro fresh", + "black beans", + "cilantro sprigs", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 31405, + "cuisine": "chinese", + "ingredients": [ + "tea bags", + "cinnamon", + "eggs", + "soy sauce", + "salt", + "brown sugar", + "star anise", + "black peppercorns", + "orange", + "sauce" + ] + }, + { + "id": 28758, + "cuisine": "moroccan", + "ingredients": [ + "nutmeg", + "cinnamon", + "ground mustard", + "clove", + "white pepper", + "salt", + "allspice", + "tumeric", + "star anise", + "ground coriander", + "ground ginger", + "ground black pepper", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 41021, + "cuisine": "mexican", + "ingredients": [ + "light sour cream", + "fat-free refried beans", + "jalapeno chilies", + "shredded Monterey Jack cheese", + "fresh cilantro", + "tortilla chips", + "green onions" + ] + }, + { + "id": 22577, + "cuisine": "indian", + "ingredients": [ + "chickpeas", + "basmati rice" + ] + }, + { + "id": 37173, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "vegetable oil", + "ground walnuts", + "all purpose unbleached flour", + "water", + "cinnamon", + "semolina flour", + "pareve margarine", + "confectioners sugar" + ] + }, + { + "id": 9342, + "cuisine": "moroccan", + "ingredients": [ + "fresh dill", + "sea salt", + "chopped fresh mint", + "spices", + "greek style plain yogurt", + "salmon fillets", + "extra-virgin olive oil", + "lemon", + "english cucumber" + ] + }, + { + "id": 47851, + "cuisine": "indian", + "ingredients": [ + "clove", + "fenugreek", + "cardamom", + "black peppercorns", + "cinnamon", + "ground ginger", + "chili powder", + "ground turmeric", + "coriander seeds", + "cumin seed" + ] + }, + { + "id": 12484, + "cuisine": "greek", + "ingredients": [ + "cherry tomatoes", + "lamb shoulder", + "mixed greens", + "feta cheese", + "salt", + "cucumber", + "olive oil", + "purple onion", + "lemon juice", + "pepper", + "kalamata", + "fresh oregano" + ] + }, + { + "id": 290, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "cream cheese, soften", + "refrigerated crescent rolls", + "melted butter", + "white sugar", + "vanilla extract" + ] + }, + { + "id": 49118, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "vegetable stock", + "onions", + "red kidney beans", + "chili powder", + "garlic cloves", + "ground cumin", + "sweet potatoes", + "red pepper", + "dried oregano", + "chopped tomatoes", + "vegetable oil", + "carrots" + ] + }, + { + "id": 12196, + "cuisine": "irish", + "ingredients": [ + "single crust pie", + "milk", + "salt", + "pastry", + "leeks", + "chicken", + "cooked ham", + "mace", + "onions", + "chicken stock", + "pepper", + "heavy cream" + ] + }, + { + "id": 33207, + "cuisine": "southern_us", + "ingredients": [ + "chipotle chile", + "green onions", + "coarse kosher salt", + "eggs", + "unsalted butter", + "buttermilk", + "sugar", + "large eggs", + "all-purpose flour", + "yellow corn meal", + "baking soda", + "baking powder", + "extra sharp cheddar cheese" + ] + }, + { + "id": 36447, + "cuisine": "italian", + "ingredients": [ + "capers", + "shiitake", + "dry red wine", + "bay leaf", + "sage leaves", + "olive oil", + "balsamic vinegar", + "flat leaf parsley", + "anchovies", + "shallots", + "garlic cloves", + "bone in chicken thighs", + "kosher salt", + "ground black pepper", + "all-purpose flour", + "polenta" + ] + }, + { + "id": 23628, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "cooking spray", + "salt", + "fresh lime juice", + "sugar", + "sweetened coconut flakes", + "ground coriander", + "canola oil", + "ground black pepper", + "cilantro sprigs", + "garlic cloves", + "ground cumin", + "jumbo shrimp", + "mango chutney", + "chopped onion", + "chopped cilantro fresh" + ] + }, + { + "id": 40048, + "cuisine": "thai", + "ingredients": [ + "garlic cloves", + "boneless skinless chicken breasts", + "asian fish sauce", + "toasted sesame oil", + "cilantro" + ] + }, + { + "id": 41572, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "fresh dill", + "golden raisins", + "onions", + "ground black pepper", + "hot water", + "pinenuts", + "mackerel fillets", + "spaghetti" + ] + }, + { + "id": 26037, + "cuisine": "cajun_creole", + "ingredients": [ + "granulated garlic", + "vegetable oil", + "purple onion", + "leeks", + "chopped celery", + "fresh lemon juice", + "mayonaise", + "paprika", + "dill pickles", + "celery salt", + "chili powder", + "crushed red pepper", + "shrimp" + ] + }, + { + "id": 10630, + "cuisine": "irish", + "ingredients": [ + "vegetable oil cooking spray", + "baking soda", + "all-purpose flour", + "firmly packed brown sugar", + "pitted date", + "baking powder", + "ground cinnamon", + "wheat bran", + "egg whites", + "margarine", + "vanilla lowfat yogurt", + "whole wheat flour", + "salt" + ] + }, + { + "id": 43243, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "pigeon peas", + "salt", + "frozen peas", + "water", + "vegetable oil", + "carrots", + "fresh curry leaves", + "zucchini", + "yellow split peas", + "ground turmeric", + "coconut", + "crushed red pepper flakes", + "mustard seeds" + ] + }, + { + "id": 5881, + "cuisine": "southern_us", + "ingredients": [ + "soft-wheat flour", + "butter", + "flour", + "melted butter", + "buttermilk" + ] + }, + { + "id": 34981, + "cuisine": "mexican", + "ingredients": [ + "corn tortillas", + "salsa", + "chicken", + "green chile", + "monterey jack", + "sour cream" + ] + }, + { + "id": 32782, + "cuisine": "mexican", + "ingredients": [ + "clove", + "sugar", + "white rice", + "corn tortillas", + "black peppercorns", + "water", + "garlic cloves", + "canela", + "tomatoes", + "white onion", + "salt", + "chopped cilantro", + "mint", + "vegetable oil", + "ancho chile pepper", + "chicken" + ] + }, + { + "id": 9992, + "cuisine": "southern_us", + "ingredients": [ + "lime zest", + "purple onion", + "garlic cloves", + "salad greens", + "cilantro leaves", + "mayonaise", + "salt", + "fresh lime juice", + "cake", + "freshly ground pepper" + ] + }, + { + "id": 25230, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "country bread", + "olive oil", + "garlic cloves", + "prepar pesto" + ] + }, + { + "id": 37497, + "cuisine": "mexican", + "ingredients": [ + "green cabbage", + "shallots", + "pumpkin seeds", + "chopped cilantro fresh", + "roasted red peppers", + "grapefruit juice", + "corn tortillas", + "mango", + "chili", + "vegetable oil", + "garlic cloves", + "iceberg lettuce", + "jicama", + "purple onion", + "fresh lime juice" + ] + }, + { + "id": 5806, + "cuisine": "british", + "ingredients": [ + "mcintosh apples", + "liver pate", + "flour for dusting", + "brandy", + "mincemeat", + "lemon" + ] + }, + { + "id": 35101, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "shallots", + "garlic", + "roasted red peppers", + "cilantro", + "tortilla chips", + "lime juice", + "balsamic vinegar", + "fine sea salt", + "avocado", + "cooking spray", + "extra-virgin olive oil" + ] + }, + { + "id": 13984, + "cuisine": "jamaican", + "ingredients": [ + "water", + "salt", + "coconut milk", + "tomatoes", + "vinegar", + "garlic cloves", + "ground black pepper", + "scallions", + "onions", + "pepper", + "mackerel", + "thyme" + ] + }, + { + "id": 15217, + "cuisine": "thai", + "ingredients": [ + "sugar", + "reduced sodium soy sauce", + "freshly ground pepper", + "fresh lime juice", + "kosher salt", + "lime wedges", + "garlic cloves", + "fresh basil leaves", + "fish sauce", + "steamed rice", + "vegetable oil", + "carrots", + "red chili peppers", + "low sodium chicken broth", + "scallions", + "ground beef" + ] + }, + { + "id": 806, + "cuisine": "italian", + "ingredients": [ + "capers", + "pimentos", + "green pepper", + "fresh basil", + "green onions", + "black olives", + "tomatoes", + "cooked rice", + "chicken breasts", + "anchovy fillets", + "eggs", + "french dressing", + "garlic", + "olives" + ] + }, + { + "id": 5990, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "dried basil", + "cayenne", + "salt", + "red bell pepper", + "dried oregano", + "tomato paste", + "sugar", + "olive oil", + "paprika", + "fresh parsley leaves", + "medium shrimp", + "celery ribs", + "hot red pepper flakes", + "dried thyme", + "bay leaves", + "garlic cloves", + "bay leaf", + "tomatoes", + "chili", + "ground black pepper", + "dry red wine", + "ground white pepper", + "onions" + ] + }, + { + "id": 46643, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "lemon juice", + "fresh dill", + "garlic", + "ground black pepper", + "plain yogurt", + "salt" + ] + }, + { + "id": 8229, + "cuisine": "greek", + "ingredients": [ + "green bell pepper", + "baking potatoes", + "onions", + "tomatoes", + "zucchini", + "garlic cloves", + "black pepper", + "extra-virgin olive oil", + "eggplant", + "salt" + ] + }, + { + "id": 41677, + "cuisine": "vietnamese", + "ingredients": [ + "clove", + "chili pepper", + "Sriracha", + "star anise", + "onions", + "sugar", + "lime", + "chicken breasts", + "dried rice noodles", + "fish sauce", + "fresh cilantro", + "hoisin sauce", + "purple onion", + "homemade chicken stock", + "coriander seeds", + "ginger", + "beansprouts" + ] + }, + { + "id": 16284, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "jasmine rice", + "flour", + "fillets", + "brown sugar", + "ground black pepper", + "salt", + "asian fish sauce", + "canned low sodium chicken broth", + "water", + "lime wedges", + "curry paste", + "tumeric", + "cooking oil", + "cilantro leaves" + ] + }, + { + "id": 735, + "cuisine": "korean", + "ingredients": [ + "cornish hens", + "green onions", + "sweet rice", + "root vegetables", + "garlic" + ] + }, + { + "id": 22464, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "flour tortillas", + "sour cream", + "mayonaise", + "tortillas", + "sauce", + "chopped cilantro", + "garlic powder", + "salt", + "chipotles in adobo", + "lime", + "cod fillets", + "taco seasoning", + "cabbage" + ] + }, + { + "id": 94, + "cuisine": "french", + "ingredients": [ + "olive oil", + "yukon gold potatoes", + "roasting chickens", + "frozen peas", + "chicken wings", + "dry white wine", + "butter", + "low salt chicken broth", + "black truffles", + "shallots", + "bacon slices", + "thyme sprigs", + "shiitake", + "white truffle oil", + "garlic cloves" + ] + }, + { + "id": 5055, + "cuisine": "italian", + "ingredients": [ + "salt", + "water", + "butter", + "polenta" + ] + }, + { + "id": 33193, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "crushed red pepper", + "small red potato", + "fresh rosemary", + "cooking spray", + "garlic cloves", + "part-skim mozzarella cheese", + "pizza doughs", + "pitted kalamata olives", + "salt", + "cornmeal" + ] + }, + { + "id": 49540, + "cuisine": "southern_us", + "ingredients": [ + "andouille sausage links", + "white onion", + "ground black pepper", + "buttermilk", + "hot sauce", + "heavy whipping cream", + "large shrimp", + "chicken broth", + "milk", + "chives", + "salt", + "garlic cloves", + "bay leaf", + "buttermilk biscuits", + "kosher salt", + "unsalted butter", + "extra-virgin olive oil", + "cayenne pepper", + "flat leaf parsley", + "shortening", + "baking soda", + "baking powder", + "all-purpose flour", + "lemon juice", + "white cornmeal" + ] + }, + { + "id": 29163, + "cuisine": "southern_us", + "ingredients": [ + "ground ginger", + "cinnamon", + "brown sugar", + "apples", + "nutmeg", + "apple cider", + "granulated sugar" + ] + }, + { + "id": 47986, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "salt", + "tomato sauce", + "grated parmesan cheese", + "onions", + "cottage cheese", + "lean ground beef", + "dried oregano", + "tomato paste", + "lasagna noodles", + "shredded mozzarella cheese" + ] + }, + { + "id": 41590, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "crushed garlic", + "shrimp", + "avocado", + "prepared horseradish", + "purple onion", + "tomato juice", + "cilantro", + "ketchup", + "hot pepper sauce", + "salt" + ] + }, + { + "id": 20577, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "ground coriander", + "kosher salt", + "cauliflower florets", + "peeled fresh ginger", + "olive oil", + "chopped onion" + ] + }, + { + "id": 8765, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "scallions", + "water", + "scallops", + "oil", + "low sodium soy sauce", + "garlic" + ] + }, + { + "id": 27339, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "water", + "chili powder", + "green chilies", + "coriander", + "ketchup", + "unsalted butter", + "vegetable oil", + "garlic cloves", + "ginger paste", + "sugar", + "garam masala", + "parsley", + "cumin seed", + "cashew nuts", + "cream", + "chicken breasts", + "salt", + "onions" + ] + }, + { + "id": 9248, + "cuisine": "french", + "ingredients": [ + "pepper", + "veal cutlets", + "asparagus spears", + "olive oil", + "fresh mushrooms", + "Italian cheese", + "prosciutto", + "garlic cloves", + "water", + "salt" + ] + }, + { + "id": 25493, + "cuisine": "italian", + "ingredients": [ + "italian plum tomatoes", + "salt", + "flat leaf parsley", + "celery ribs", + "extra-virgin olive oil", + "garlic cloves", + "beef roast", + "red wine", + "chopped fresh sage", + "bay leaf", + "ground black pepper", + "purple onion", + "carrots" + ] + }, + { + "id": 32082, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "italian tomatoes", + "red wine vinegar", + "garlic cloves", + "capers", + "olive oil", + "yellow bell pepper", + "onions", + "fresh basil", + "black pepper", + "coarse sea salt", + "flat leaf parsley", + "celery ribs", + "sugar", + "eggplant", + "Sicilian olives" + ] + }, + { + "id": 4590, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "crushed red pepper flakes", + "coconut milk", + "dried coconut flakes", + "shallots", + "roasted peanuts", + "pomelo", + "cilantro leaves", + "fresh lime juice", + "fish sauce", + "vegetable oil", + "shrimp" + ] + }, + { + "id": 29421, + "cuisine": "chinese", + "ingredients": [ + "dough", + "sugar", + "chicken bones", + "gelatin", + "large garlic cloves", + "garlic chili sauce", + "black vinegar", + "chinese rice wine", + "white pepper", + "pork rind", + "green onions", + "ginger", + "hot water", + "cold water", + "soy sauce", + "water", + "cooking oil", + "ground pork", + "shrimp", + "country ham", + "kosher salt", + "fresh ginger", + "sesame oil", + "all-purpose flour", + "dumplings" + ] + }, + { + "id": 15557, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "crushed pineapple", + "salsa verde" + ] + }, + { + "id": 22453, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "zucchini", + "vegetable broth", + "chipotles in adobo", + "tomato sauce", + "ground pepper", + "chili powder", + "scallions", + "ground cumin", + "reduced fat Mexican cheese", + "olive oil", + "cooking spray", + "garlic", + "chopped cilantro", + "kosher salt", + "tortillas", + "cilantro", + "garlic cloves" + ] + }, + { + "id": 31995, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "chicken", + "poblano", + "queso fresco", + "cream", + "onions" + ] + }, + { + "id": 711, + "cuisine": "japanese", + "ingredients": [ + "red chili peppers", + "rice vinegar", + "olive oil", + "soy sauce", + "shiso", + "mitsuba", + "mushrooms" + ] + }, + { + "id": 46219, + "cuisine": "thai", + "ingredients": [ + "white wine", + "heavy cream", + "salt and ground black pepper", + "fresh lime juice", + "minced garlic", + "Thai chili garlic sauce", + "unsalted butter" + ] + }, + { + "id": 26204, + "cuisine": "southern_us", + "ingredients": [ + "water", + "large eggs", + "vanilla extract", + "corn starch", + "white bread", + "unsalted butter", + "bourbon whiskey", + "grated nutmeg", + "light brown sugar", + "milk", + "half & half", + "salt", + "ground cinnamon", + "granulated sugar", + "raisins", + "fresh lemon juice" + ] + }, + { + "id": 39933, + "cuisine": "indian", + "ingredients": [ + "melted butter", + "active dry yeast", + "salt", + "milk", + "poppy seeds", + "plain yogurt", + "all purpose unbleached flour", + "warm water", + "baking powder", + "white sugar" + ] + }, + { + "id": 41948, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "garlic cloves", + "extra-virgin olive oil", + "sun-dried tomatoes in oil", + "pinenuts", + "feta cheese crumbles", + "linguine" + ] + }, + { + "id": 3443, + "cuisine": "vietnamese", + "ingredients": [ + "avocado", + "baguette", + "daikon", + "oil", + "sugar", + "jalapeno chilies", + "firm tofu", + "flavoring", + "mayonaise", + "water", + "cilantro leaves", + "carrots", + "white vinegar", + "white onion", + "mint leaves", + "english cucumber" + ] + }, + { + "id": 15686, + "cuisine": "greek", + "ingredients": [ + "halloumi cheese", + "ground cumin", + "tomatoes", + "extra-virgin olive oil", + "sea salt", + "wheat", + "chopped fresh mint" + ] + }, + { + "id": 45591, + "cuisine": "italian", + "ingredients": [ + "dijon mustard", + "rice vinegar", + "extra-virgin olive oil", + "purple onion", + "yukon gold potatoes", + "fresh basil leaves" + ] + }, + { + "id": 41060, + "cuisine": "vietnamese", + "ingredients": [ + "honey", + "sesame oil", + "sauce", + "soy sauce", + "sesame seeds", + "purple onion", + "fresh ginger", + "garlic", + "canola oil", + "kosher salt", + "frozen vegetables", + "beef broth" + ] + }, + { + "id": 31064, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "onions", + "soft goat's cheese", + "grated parmesan cheese", + "salt", + "ground black pepper", + "portabello mushroom", + "sugar", + "ziti", + "fresh parsley" + ] + }, + { + "id": 40162, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "all-purpose flour", + "sour cream", + "lemon", + "cherry pie filling", + "butter", + "cream cheese", + "white sugar", + "eggs", + "vanilla extract", + "corn starch" + ] + }, + { + "id": 31537, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "grated parmesan cheese", + "minced garlic", + "Maggi", + "water", + "oyster sauce", + "fish sauce", + "unsalted butter", + "Chinese egg noodles" + ] + }, + { + "id": 9486, + "cuisine": "mexican", + "ingredients": [ + "reduced fat monterey jack cheese", + "guacamole", + "hummus", + "black beans", + "salsa", + "pico de gallo", + "fat-free refried beans", + "cherry tomatoes", + "taco seasoning" + ] + }, + { + "id": 17869, + "cuisine": "chinese", + "ingredients": [ + "coarse salt", + "freshly ground pepper", + "yardlong beans", + "extra-virgin olive oil" + ] + }, + { + "id": 39183, + "cuisine": "italian", + "ingredients": [ + "pecorino romano cheese", + "broccoli rabe", + "garlic cloves", + "extra-virgin olive oil" + ] + }, + { + "id": 32103, + "cuisine": "french", + "ingredients": [ + "wheels", + "salt", + "chicken stock", + "butter", + "yukon gold potatoes", + "onions", + "pepper", + "bacon" + ] + }, + { + "id": 3901, + "cuisine": "cajun_creole", + "ingredients": [ + "bell pepper", + "thyme sprigs", + "purple onion", + "vegetable oil cooking spray", + "turkey tenderloins", + "cajun seasoning" + ] + }, + { + "id": 6385, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "green onions", + "firm tofu", + "cucumber", + "minced ginger", + "ground pork", + "peanut oil", + "sugar", + "lo mein noodles", + "salt", + "oil", + "minced garlic", + "sesame oil", + "bean sauce" + ] + }, + { + "id": 34320, + "cuisine": "mexican", + "ingredients": [ + "guajillo chile powder", + "cucumber", + "navel oranges", + "chopped cilantro fresh", + "jicama", + "fresh lime juice", + "radishes", + "salt" + ] + }, + { + "id": 39026, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "fresh lime juice", + "salt", + "pork loin chops", + "shallots", + "asian fish sauce" + ] + }, + { + "id": 46798, + "cuisine": "mexican", + "ingredients": [ + "queso fresco", + "corn tortillas", + "cooking spray", + "pinto beans", + "frozen whole kernel corn", + "enchilada sauce", + "monterey jack", + "salsa", + "chopped cilantro fresh" + ] + }, + { + "id": 6748, + "cuisine": "indian", + "ingredients": [ + "crushed red pepper", + "fresh lemon juice", + "butter", + "garlic cloves", + "ground cumin", + "ground ginger", + "salt", + "boneless skinless chicken breast halves", + "plain yogurt", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 6808, + "cuisine": "indian", + "ingredients": [ + "melted butter", + "milk", + "salt", + "warm water", + "baking powder", + "yeast", + "sugar", + "flour", + "greek yogurt", + "fresh cilantro", + "vegetable oil" + ] + }, + { + "id": 10561, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "salt", + "poblano chiles", + "ground cumin", + "black pepper", + "cilantro", + "beef broth", + "bay leaf", + "brisket", + "red wine vinegar", + "salsa", + "corn tortillas", + "jalapeno chilies", + "garlic", + "yellow onion", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 46398, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "chicken drumsticks", + "hot sauce", + "thyme", + "cooked rice", + "bell pepper", + "paprika", + "cayenne pepper", + "oregano", + "andouille chicken sausage", + "diced tomatoes", + "yellow onion", + "marjoram", + "black pepper", + "vegetable oil", + "fine sea salt", + "scallions" + ] + }, + { + "id": 33103, + "cuisine": "italian", + "ingredients": [ + "eggs", + "buttermilk", + "all-purpose flour", + "baking powder", + "salt", + "dried oregano", + "green onions", + "shredded sharp cheddar cheese", + "white sugar", + "baking soda", + "basil dried leaves", + "sun-dried tomatoes in oil" + ] + }, + { + "id": 3767, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "ranch dressing", + "lima beans", + "water", + "ground black pepper", + "stewed tomatoes", + "onions", + "diced green chilies", + "lean ground beef", + "pinto beans", + "taco seasoning mix", + "white hominy", + "salt" + ] + }, + { + "id": 18093, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "grating cheese", + "cabbage", + "apple cider vinegar", + "carrots", + "water", + "salt", + "masa harina", + "brown sugar", + "red pepper flakes", + "dried oregano" + ] + }, + { + "id": 25041, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "granulated sugar", + "whipped topping", + "large egg whites", + "salt", + "boiling water", + "cream of tartar", + "coffee granules", + "cream cheese", + "unsweetened cocoa powder", + "chocolate syrup", + "vanilla extract", + "cacao nibs" + ] + }, + { + "id": 2373, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "oil", + "meat", + "onions", + "salt", + "curry powder", + "thyme leaves" + ] + }, + { + "id": 9883, + "cuisine": "indian", + "ingredients": [ + "fresh basil", + "light coconut milk", + "carrots", + "curry powder", + "salt", + "pineapple chunks", + "crushed red pepper", + "red bell pepper", + "reduced fat firm tofu", + "vegetable oil", + "juice" + ] + }, + { + "id": 27172, + "cuisine": "chinese", + "ingredients": [ + "pork", + "sea salt", + "wine", + "hoisin sauce", + "chinese five-spice powder", + "sugar", + "maltose", + "soy sauce", + "red food coloring" + ] + }, + { + "id": 17034, + "cuisine": "jamaican", + "ingredients": [ + "dark chocolate", + "whipping cream", + "unsalted butter", + "milk chocolate", + "cocoa powder", + "dark rum" + ] + }, + { + "id": 47835, + "cuisine": "mexican", + "ingredients": [ + "fire roasted diced tomatoes", + "shredded cheese", + "boneless skinless chicken breasts", + "green onions", + "bbq sauce", + "green chilies" + ] + }, + { + "id": 31948, + "cuisine": "irish", + "ingredients": [ + "butter", + "baking powder", + "salt", + "almond extract", + "all-purpose flour", + "powdered sugar", + "vanilla extract" + ] + }, + { + "id": 43899, + "cuisine": "korean", + "ingredients": [ + "green onions", + "cucumber", + "black pepper", + "red pepper flakes", + "white vinegar", + "vegetable oil", + "sesame seeds", + "carrots" + ] + }, + { + "id": 37389, + "cuisine": "mexican", + "ingredients": [ + "serrano chilies", + "sea salt", + "chopped cilantro fresh", + "queso fresco", + "tortilla chips", + "white onion", + "crema", + "canola oil", + "tomatillos", + "garlic cloves" + ] + }, + { + "id": 37387, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "water", + "nori", + "meat cuts", + "medium-grain rice", + "sushi rice", + "rice vinegar", + "avocado", + "kosher salt", + "cucumber" + ] + }, + { + "id": 16965, + "cuisine": "italian", + "ingredients": [ + "orange bell pepper", + "cooking spray", + "fresh oregano", + "fresh parsley", + "olive oil", + "dry yeast", + "all-purpose flour", + "cornmeal", + "warm water", + "fresh parmesan cheese", + "salt", + "red bell pepper", + "part-skim mozzarella cheese", + "crushed red pepper", + "garlic cloves" + ] + }, + { + "id": 7436, + "cuisine": "mexican", + "ingredients": [ + "pork", + "arbol chile", + "garlic", + "white onion", + "pork shoulder", + "pozole" + ] + }, + { + "id": 32139, + "cuisine": "french", + "ingredients": [ + "white chocolate", + "butter", + "cream cheese, soften", + "silver", + "semisweet chocolate", + "vanilla extract", + "bows", + "ganache", + "food paste color", + "sour cream", + "sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 2517, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking soda", + "apple cider vinegar", + "corn starch", + "kosher salt", + "granulated sugar", + "cream cheese", + "unsweetened cocoa powder", + "food colouring", + "unsalted butter", + "gluten free all purpose flour", + "confectioners sugar", + "pure vanilla extract", + "milk", + "baking powder", + "xanthan gum" + ] + }, + { + "id": 39923, + "cuisine": "southern_us", + "ingredients": [ + "celery salt", + "chili powder", + "oil", + "milk", + "all-purpose flour", + "garlic salt", + "eggs", + "salt", + "chuck steaks", + "beef bouillon", + "cayenne pepper" + ] + }, + { + "id": 40380, + "cuisine": "mexican", + "ingredients": [ + "salt", + "chopped tomatoes", + "sliced green onions", + "chiles", + "chopped cilantro fresh", + "fresh lime juice" + ] + }, + { + "id": 695, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "salt", + "light brown sugar", + "heavy cream", + "butter", + "chopped pecans", + "granulated sugar", + "vanilla extract" + ] + }, + { + "id": 25864, + "cuisine": "filipino", + "ingredients": [ + "whole peppercorn", + "oil", + "pork cubes", + "water", + "bay leaf", + "soy sauce", + "garlic cloves", + "brown sugar", + "vinegar" + ] + }, + { + "id": 38344, + "cuisine": "korean", + "ingredients": [ + "beef", + "garlic cloves", + "pepper", + "salt", + "soy sauce", + "sesame oil", + "water", + "seaweed" + ] + }, + { + "id": 47763, + "cuisine": "indian", + "ingredients": [ + "mayonaise", + "vinegar", + "oil", + "ghee", + "red chili powder", + "water", + "yoghurt", + "cucumber", + "ground turmeric", + "white vinegar", + "black pepper", + "flour", + "garlic chili sauce", + "onions", + "garlic paste", + "garam masala", + "salt", + "chicken fillets" + ] + }, + { + "id": 41314, + "cuisine": "mexican", + "ingredients": [ + "tomato purée", + "corn kernels", + "butter", + "carrots", + "pepper", + "pumpkin", + "garlic", + "onions", + "water", + "epazote", + "salt", + "chicken bouillon", + "zucchini", + "heavy cream", + "poblano chiles" + ] + }, + { + "id": 16725, + "cuisine": "french", + "ingredients": [ + "frozen orange juice concentrate", + "ladyfingers", + "sherbet", + "syrup", + "vanilla ice cream", + "frozen strawberries" + ] + }, + { + "id": 42286, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "water chestnuts", + "salt", + "carrots", + "frozen whole kernel corn", + "peeled fresh ginger", + "dark sesame oil", + "black pepper", + "cooking spray", + "rice vinegar", + "tofu", + "mushroom caps", + "green onions", + "garlic cloves" + ] + }, + { + "id": 43745, + "cuisine": "french", + "ingredients": [ + "eggs", + "dijon mustard", + "green beans", + "olive oil", + "fresh lemon juice", + "kosher salt", + "new potatoes", + "olives", + "salmon fillets", + "lettuce leaves", + "chopped fresh herbs" + ] + }, + { + "id": 48242, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "onions", + "black beans", + "red enchilada sauce", + "chicken", + "cheddar cheese", + "salt", + "chopped cilantro fresh", + "pepper", + "corn tortillas" + ] + }, + { + "id": 3357, + "cuisine": "chinese", + "ingredients": [ + "haricots verts", + "red chili peppers", + "egg whites", + "ginger", + "green chilies", + "toasted sesame seeds", + "chinese rice wine", + "water", + "spring onions", + "garlic", + "corn starch", + "tiger prawn", + "sugar", + "light soy sauce", + "sesame oil", + "broccoli", + "chicken-flavored soup powder", + "chicken breast fillets", + "fresh coriander", + "mushrooms", + "cornflour", + "oyster sauce", + "cashew nuts" + ] + }, + { + "id": 3839, + "cuisine": "french", + "ingredients": [ + "fennel seeds", + "striped bass", + "fennel bulb", + "olive oil", + "liqueur", + "lemon wedge" + ] + }, + { + "id": 48378, + "cuisine": "french", + "ingredients": [ + "cold water", + "salt", + "large eggs", + "cold milk", + "all-purpose flour", + "butter" + ] + }, + { + "id": 12017, + "cuisine": "italian", + "ingredients": [ + "capers", + "baby spinach", + "ciabatta", + "champagne vinegar", + "soft goat's cheese", + "dijon mustard", + "salt", + "cream cheese, soften", + "smoked salmon", + "ground black pepper", + "purple onion", + "fresh lemon juice", + "minced garlic", + "extra-virgin olive oil", + "grated lemon zest", + "sliced green onions" + ] + }, + { + "id": 5860, + "cuisine": "japanese", + "ingredients": [ + "parmesan cheese", + "salt", + "large eggs", + "zucchini", + "panko breadcrumbs", + "spices" + ] + }, + { + "id": 24789, + "cuisine": "french", + "ingredients": [ + "pork", + "shallots", + "ground allspice", + "bay leaves", + "fine sea salt", + "fresh thyme", + "extra-virgin olive oil", + "onions", + "pork liver", + "cornichons", + "peppercorns" + ] + }, + { + "id": 16392, + "cuisine": "southern_us", + "ingredients": [ + "green leaf lettuce", + "all-purpose flour", + "kosher salt", + "vegetable oil", + "mango", + "eggs", + "green tomatoes", + "cornmeal", + "sourdough bread", + "bacon" + ] + }, + { + "id": 15428, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "bacon slices", + "italian salad dressing", + "mustard", + "cheese slices", + "Italian bread", + "parmesan cheese", + "mortadella", + "plum tomatoes", + "genoa salami", + "romaine lettuce leaves", + "pimento stuffed green olives" + ] + }, + { + "id": 13736, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "cayenne pepper", + "oregano", + "chicken broth", + "bacon", + "red bell pepper", + "red kidney beans", + "jalapeno chilies", + "thyme", + "tomato purée", + "salt", + "onions" + ] + }, + { + "id": 8800, + "cuisine": "indian", + "ingredients": [ + "grated coconut", + "cumin seed", + "olive oil", + "basmati rice", + "fresh cilantro", + "curry paste", + "rock shrimp", + "curry", + "plum tomatoes" + ] + }, + { + "id": 18739, + "cuisine": "italian", + "ingredients": [ + "salt", + "warm water", + "oil", + "sugar", + "all-purpose flour", + "quick yeast" + ] + }, + { + "id": 45358, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "garlic", + "olives", + "parmesan cheese", + "anchovy filets", + "olive oil", + "purple onion", + "chicken broth", + "basil leaves", + "bucatini" + ] + }, + { + "id": 31402, + "cuisine": "chinese", + "ingredients": [ + "szechwan peppercorns", + "ground cinnamon", + "fennel seeds", + "star anise", + "whole cloves" + ] + }, + { + "id": 41929, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "kalamata", + "red bell pepper", + "ground black pepper", + "salt", + "onions", + "olive oil", + "yellow bell pepper", + "flat leaf parsley", + "cooking spray", + "fresh oregano", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 2262, + "cuisine": "mexican", + "ingredients": [ + "pure vanilla extract", + "2% reduced-fat milk", + "corn starch", + "ground cinnamon", + "cayenne pepper", + "light brown sugar", + "salt", + "bittersweet chocolate", + "egg yolks", + "fat" + ] + }, + { + "id": 35403, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "vanilla extract", + "buttermilk", + "all-purpose flour", + "butter", + "salt", + "vanilla powder", + "lard" + ] + }, + { + "id": 4813, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "dry red wine", + "onions", + "water", + "large garlic cloves", + "leg of lamb", + "feta cheese", + "beef broth", + "dried rosemary", + "cold water", + "swiss chard", + "corn starch" + ] + }, + { + "id": 43206, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "paprika", + "fresh parsley leaves", + "cayenne", + "filet", + "fish", + "vegetable oil", + "garlic cloves", + "ground cumin", + "fresh coriander", + "all-purpose flour", + "fresh lemon juice" + ] + }, + { + "id": 24154, + "cuisine": "mexican", + "ingredients": [ + "coconut", + "seasoned rice wine vinegar", + "jicama", + "fresh basil leaves", + "salt", + "watermelon", + "cucumber" + ] + }, + { + "id": 5153, + "cuisine": "chinese", + "ingredients": [ + "lettuce", + "egg noodles", + "scallions", + "slaw", + "cilantro", + "beni shoga", + "gari", + "chicken breasts", + "carrots", + "peanuts", + "peanut sauce", + "cucumber" + ] + }, + { + "id": 8650, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "part-skim mozzarella cheese", + "french rolls", + "pepper", + "chopped onion", + "italian seasoning", + "tomato sauce", + "green pepper", + "dried oregano", + "minced garlic", + "canadian bacon" + ] + }, + { + "id": 631, + "cuisine": "french", + "ingredients": [ + "butter", + "corn starch", + "chicken bouillon granules", + "paprika", + "heavy whipping cream", + "dry white wine", + "all-purpose flour", + "boneless skinless chicken breast halves", + "swiss cheese", + "ham" + ] + }, + { + "id": 32278, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "buttermilk", + "large eggs", + "all-purpose flour", + "unsalted butter", + "salt", + "sugar", + "baking powder", + "cornmeal" + ] + }, + { + "id": 24188, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "fresh ginger", + "vegetable broth", + "fresh lemon juice", + "fennel seeds", + "fresh cilantro", + "black-eyed peas", + "salt", + "red lentils", + "curry powder", + "eggplant", + "garlic", + "onions", + "tomato paste", + "olive oil", + "cayenne", + "brown lentils" + ] + }, + { + "id": 42486, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "orzo pasta", + "scallions", + "unsalted chicken stock", + "parmigiano reggiano cheese", + "grated lemon zest", + "white asparagus", + "unsalted butter", + "salt", + "flat leaf parsley", + "asparagus", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 42661, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "Mexican seasoning mix", + "ground meat", + "tostadas", + "shredded cheese", + "refried beans" + ] + }, + { + "id": 46962, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "olive oil", + "salt", + "onions", + "black pepper", + "parmigiano reggiano cheese", + "hot water", + "dried oregano", + "chicken broth", + "bread crumb fresh", + "extra-virgin olive oil", + "flat leaf parsley", + "dried porcini mushrooms", + "unsalted butter", + "garlic cloves", + "campanelle" + ] + }, + { + "id": 15588, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "flour", + "szechwan peppercorns", + "dried shiitake mushrooms", + "ground cloves", + "green onions", + "star anise", + "onions", + "soy sauce", + "oxtails", + "ginger", + "cinnamon sticks", + "black pepper", + "corn oil", + "garlic", + "mushroom soy sauce" + ] + }, + { + "id": 26720, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "salt", + "white wine", + "broccoli", + "ground black pepper" + ] + }, + { + "id": 40202, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "dry white wine", + "all-purpose flour", + "chicken broth", + "ground black pepper", + "red wine vinegar", + "olive oil", + "shallots", + "sugar", + "center cut pork loin chops", + "butter" + ] + }, + { + "id": 24345, + "cuisine": "chinese", + "ingredients": [ + "won ton wrappers", + "sesame oil", + "rice vinegar", + "ground chicken", + "reduced sodium soy sauce", + "ginger", + "soy sauce", + "shiitake", + "vegetable oil", + "white pepper", + "green onions", + "garlic" + ] + }, + { + "id": 44826, + "cuisine": "chinese", + "ingredients": [ + "honey", + "green onions", + "ketchup", + "ground black pepper", + "sugar", + "sesame seeds", + "salt", + "white distilled vinegar", + "frozen popcorn chicken" + ] + }, + { + "id": 3918, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "scallions", + "teriyaki sauce", + "frozen peas", + "vegetable oil", + "shrimp", + "salt", + "spaghetti" + ] + }, + { + "id": 45150, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "buttermilk", + "sugar", + "peaches", + "all-purpose flour", + "low-fat greek yogurt", + "salt", + "superfine sugar", + "baking powder" + ] + }, + { + "id": 16688, + "cuisine": "mexican", + "ingredients": [ + "fresh lime juice", + "canola oil", + "salt", + "cabbage", + "jalapeno chilies", + "chopped cilantro fresh", + "onions" + ] + }, + { + "id": 4078, + "cuisine": "filipino", + "ingredients": [ + "vegetable oil", + "minced beef", + "ground cumin", + "beef", + "extra-virgin olive oil", + "smoked paprika", + "boiled eggs", + "Italian parsley leaves", + "garlic cloves", + "chili powder", + "yellow onion", + "oregano leaves" + ] + }, + { + "id": 12266, + "cuisine": "southern_us", + "ingredients": [ + "cold water", + "salt", + "active dry yeast", + "white sugar", + "shortening", + "all-purpose flour", + "vegetable oil" + ] + }, + { + "id": 36377, + "cuisine": "italian", + "ingredients": [ + "ground chuck", + "olive oil", + "grated parmesan cheese", + "garlic", + "thyme", + "tomato paste", + "minced garlic", + "unsalted butter", + "bay leaves", + "grated nutmeg", + "onions", + "kosher salt", + "ground black pepper", + "whole milk", + "all-purpose flour", + "celery", + "table salt", + "water", + "large eggs", + "red wine", + "carrots" + ] + }, + { + "id": 5147, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "fresh lemon juice", + "avocado", + "salt", + "green onions", + "fresh cilantro" + ] + }, + { + "id": 40818, + "cuisine": "indian", + "ingredients": [ + "frozen chopped spinach", + "water", + "finely chopped onion", + "cayenne pepper", + "ground cumin", + "tumeric", + "fresh ginger", + "garlic", + "greek yogurt", + "ground cinnamon", + "olive oil", + "butter", + "ground coriander", + "kosher salt", + "garam masala", + "paneer", + "serrano chile" + ] + }, + { + "id": 48979, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "vegetable oil", + "corned beef", + "roma tomatoes", + "garlic cloves", + "water", + "salt", + "jasmine rice", + "potatoes", + "onions" + ] + }, + { + "id": 34589, + "cuisine": "cajun_creole", + "ingredients": [ + "onion powder", + "paprika", + "cayenne", + "red pepper", + "shrimp", + "grass-fed butter", + "red pepper flakes", + "garlic", + "zucchini", + "sea salt", + "onions" + ] + }, + { + "id": 24185, + "cuisine": "italian", + "ingredients": [ + "sugar", + "all purpose unbleached flour", + "large egg yolks", + "grated lemon peel", + "yellow corn meal", + "unsalted butter", + "water", + "salt" + ] + }, + { + "id": 159, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "garlic", + "taco seasoning", + "pepper jack", + "salsa", + "onions", + "beef", + "salt", + "elbow macaroni", + "chips", + "green chilies" + ] + }, + { + "id": 1677, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "water", + "garlic", + "miso", + "kale" + ] + }, + { + "id": 21075, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "shiitake", + "ginger", + "canola oil", + "turnips", + "dashi", + "mirin", + "scallions", + "kosher salt", + "boneless skin on chicken thighs", + "yellow onion", + "sake", + "sesame seeds", + "yukon gold potatoes", + "carrots" + ] + }, + { + "id": 12723, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "tumeric", + "star anise", + "green cardamom", + "cinnamon sticks", + "shahi jeera", + "stone flower", + "red chili powder", + "mace", + "cilantro leaves", + "oil", + "onions", + "clove", + "tomatoes", + "water", + "salt", + "green chilies", + "bay leaf", + "chicken", + "fennel seeds", + "garlic paste", + "mint leaves", + "rice", + "cardamom", + "peppercorns" + ] + }, + { + "id": 15952, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "beef", + "noodles", + "sake", + "shiitake", + "base", + "water", + "mirin", + "regular tofu", + "shungiku", + "scallions" + ] + }, + { + "id": 42425, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "raw cashews", + "kosher salt", + "ground pepper", + "ground turmeric", + "green cabbage", + "fresh ginger", + "cumin seed", + "water", + "quinoa" + ] + }, + { + "id": 8777, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "long-grain rice", + "chorizo sausage", + "green bell pepper", + "freshly ground pepper", + "onions", + "paprika", + "garlic cloves", + "kosher salt", + "scallions", + "frozen peas" + ] + }, + { + "id": 28811, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "honey", + "jalapeno chilies", + "tomatillos", + "garlic", + "orange juice", + "sour cream", + "cumin", + "avocado", + "pork shoulder roast", + "garlic powder", + "chili powder", + "cinnamon", + "cream cheese", + "dried guajillo chiles", + "roasted tomatoes", + "water", + "olive oil", + "half & half", + "russet potatoes", + "salt", + "smoked paprika", + "chipotles in adobo", + "canola oil", + "chihuahua cheese", + "fresh cilantro", + "cayenne", + "onion powder", + "cheese", + "sharp cheddar cheese", + "tequila", + "oregano" + ] + }, + { + "id": 27842, + "cuisine": "russian", + "ingredients": [ + "eggs", + "pepper", + "carrots", + "pickles", + "salt", + "mayonaise", + "potatoes", + "frozen peas", + "granny smith apples", + "dill" + ] + }, + { + "id": 23391, + "cuisine": "southern_us", + "ingredients": [ + "frozen lemonade concentrate", + "frozen limeade concentrate", + "cocktail cherries", + "pineapple juice", + "bourbon whiskey", + "cherry juice" + ] + }, + { + "id": 10997, + "cuisine": "indian", + "ingredients": [ + "fresh spinach", + "split yellow lentils", + "salt", + "dried red chile peppers", + "water", + "chile pepper", + "mustard seeds", + "ground turmeric", + "fresh curry leaves", + "ground red pepper", + "cumin seed", + "ghee", + "fresh ginger", + "vegetable oil", + "asafoetida powder" + ] + }, + { + "id": 14334, + "cuisine": "southern_us", + "ingredients": [ + "celery salt", + "pimentos", + "cream cheese", + "mayonaise", + "salt", + "ground cayenne pepper", + "cheddar cheese", + "purple onion", + "grated jack cheese", + "black pepper", + "dill" + ] + }, + { + "id": 205, + "cuisine": "italian", + "ingredients": [ + "fennel bulb", + "thyme", + "coarse salt", + "grated parmesan cheese", + "ground pepper", + "softened butter" + ] + }, + { + "id": 39867, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "rotini", + "olive oil", + "garlic", + "dried oregano", + "dried basil", + "grated parmesan cheese", + "boneless skinless chicken breast halves", + "sun-dried tomatoes", + "salt" + ] + }, + { + "id": 6522, + "cuisine": "mexican", + "ingredients": [ + "bell pepper", + "tortilla chips", + "chili powder", + "monterey jack", + "breakfast sausages", + "onions", + "roma tomatoes", + "cilantro" + ] + }, + { + "id": 5032, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "parmigiano reggiano cheese", + "salt", + "eggplant", + "fresh mozzarella", + "fresh basil leaves", + "hot red pepper flakes", + "panko", + "large garlic cloves", + "plum tomatoes", + "olive oil", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 347, + "cuisine": "italian", + "ingredients": [ + "water", + "fresh lemon juice", + "arborio rice", + "butter", + "grated lemon peel", + "fresh basil", + "chopped onion", + "grated parmesan cheese", + "fresh parsley" + ] + }, + { + "id": 10988, + "cuisine": "vietnamese", + "ingredients": [ + "large eggs", + "all-purpose flour", + "sugar", + "vanilla extract", + "unsweetened cocoa powder", + "powdered sugar", + "coffee", + "sweetened condensed milk", + "unsalted butter", + "salt" + ] + }, + { + "id": 5958, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "jasmine rice", + "Thai red curry paste", + "red bell pepper", + "fish sauce", + "fresh ginger", + "purple onion", + "duck breasts", + "pineapple", + "hot water", + "grape tomatoes", + "olive oil", + "garlic", + "coconut milk" + ] + }, + { + "id": 33234, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "butter", + "black pepper", + "ground red pepper", + "salt", + "garlic powder", + "paprika", + "corn", + "onion powder", + "dried oregano" + ] + }, + { + "id": 41386, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "pizza sauce", + "pepperoni", + "salt and ground black pepper", + "ricotta cheese", + "onions", + "olive oil", + "ground Italian sausage", + "garlic cloves", + "eggs", + "grated parmesan cheese", + "pasta shells" + ] + }, + { + "id": 40600, + "cuisine": "italian", + "ingredients": [ + "kale", + "pecorino romano cheese", + "sausage casings", + "half & half", + "tomatoes", + "olive oil", + "garlic", + "cavatappi", + "shallots" + ] + }, + { + "id": 5397, + "cuisine": "moroccan", + "ingredients": [ + "turnips", + "olive oil", + "sweet potatoes", + "chickpeas", + "arbol chile", + "preserved lemon", + "potatoes", + "ras el hanout", + "flat leaf parsley", + "parsnips", + "low sodium chicken broth", + "salt", + "couscous", + "tomatoes", + "zucchini", + "garlic", + "carrots" + ] + }, + { + "id": 44199, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "salt", + "chopped parsley", + "parmigiano-reggiano cheese", + "low sodium crushed tomatoes", + "pinto beans", + "pepper", + "whole wheat spaghetti", + "whole wheat breadcrumbs", + "eggs", + "olive oil", + "turkey meat", + "onions" + ] + }, + { + "id": 20345, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "boiled eggs", + "star anise", + "green cardamom", + "kewra water", + "bay leaf", + "saffron", + "stone flower", + "garlic paste", + "mace", + "cilantro leaves", + "green chilies", + "cardamom", + "peppercorns", + "fennel seeds", + "tumeric", + "mint leaves", + "rice", + "curds", + "cinnamon sticks", + "shahi jeera", + "clove", + "red chili powder", + "milk", + "salt", + "brown cardamom", + "oil", + "chicken pieces" + ] + }, + { + "id": 49667, + "cuisine": "moroccan", + "ingredients": [ + "celery stick", + "lemon", + "plum tomatoes", + "frozen broad beans", + "onions", + "olive oil", + "chickpeas", + "ground cumin", + "vegetable stock", + "coriander" + ] + }, + { + "id": 48393, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "frozen corn kernels", + "butter", + "onions", + "black-eyed peas", + "ham", + "green chile", + "diced tomatoes", + "chopped cilantro fresh" + ] + }, + { + "id": 46109, + "cuisine": "irish", + "ingredients": [ + "beef", + "fat", + "petite peas", + "pearl onions", + "nonfat milk", + "corn starch", + "reduced fat sharp cheddar cheese", + "red wine vinegar", + "carrots", + "prepared horseradish", + "frozen mashed potatoes", + "marjoram" + ] + }, + { + "id": 9170, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "milk", + "salt", + "pepper", + "butter", + "fresh mushrooms", + "eggs", + "grated parmesan cheese", + "all-purpose flour", + "bread", + "cooked turkey", + "bacon" + ] + }, + { + "id": 6107, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "leeks", + "cayenne pepper", + "grated parmesan cheese", + "whipping cream", + "large eggs", + "butter", + "water", + "frozen pastry puff sheets", + "cheese" + ] + }, + { + "id": 22242, + "cuisine": "chinese", + "ingredients": [ + "peeled fresh ginger", + "dry sherry", + "Yakisoba noodles", + "soy sauce", + "sesame oil", + "garlic cloves", + "boneless skinless chicken breast halves", + "sugar", + "green onions", + "seasoned rice wine vinegar", + "low salt chicken broth", + "tahini", + "napa cabbage", + "garlic chili sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 36516, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "salt", + "onions", + "celery ribs", + "heavy cream", + "bay leaf", + "marinara sauce", + "carrots", + "pepper", + "cheese tortellini", + "ground beef" + ] + }, + { + "id": 16973, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "potato gnocchi", + "freshly ground pepper", + "fresh marjoram", + "grated parmesan cheese", + "heavy cream", + "fresh thyme", + "white truffle oil", + "wild mushrooms", + "homemade chicken stock", + "shallots", + "salt" + ] + }, + { + "id": 19336, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "unsalted butter", + "skim milk", + "salt", + "sugar", + "bread machine yeast", + "bread crumbs", + "bread flour" + ] + }, + { + "id": 42026, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "grated parmesan cheese", + "whipping cream", + "unsalted butter", + "baking powder", + "white cornmeal", + "baking soda", + "chopped fresh chives", + "salt", + "sugar", + "large eggs", + "buttermilk" + ] + }, + { + "id": 49499, + "cuisine": "southern_us", + "ingredients": [ + "corn kernels", + "butter", + "black pepper", + "flour", + "sour cream", + "shredded cheddar cheese", + "baking powder", + "cornmeal", + "eggs", + "baking soda", + "salt" + ] + }, + { + "id": 23104, + "cuisine": "mexican", + "ingredients": [ + "lemon juice", + "hot pepper sauce", + "avocado", + "Hidden Valley® Original Ranch® Dips Mix", + "tortilla chips" + ] + }, + { + "id": 15778, + "cuisine": "jamaican", + "ingredients": [ + "water", + "scallions", + "red kidney beans", + "salt", + "coconut milk", + "garlic", + "thyme", + "butter-margarine blend", + "rice" + ] + }, + { + "id": 3166, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "vegetable broth", + "polenta", + "dried basil", + "diced tomatoes", + "shiitake mushroom caps", + "water", + "shallots", + "roasted garlic", + "sugar", + "grated parmesan cheese", + "crushed red pepper", + "dried oregano" + ] + }, + { + "id": 43702, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "water", + "salt", + "red chili peppers", + "garlic", + "flour" + ] + }, + { + "id": 1481, + "cuisine": "korean", + "ingredients": [ + "fresh spinach", + "egg yolks", + "salt", + "carrots", + "white sugar", + "rib eye steaks", + "pepper", + "sesame oil", + "chili bean paste", + "cucumber", + "soy sauce", + "green onions", + "dried shiitake mushrooms", + "hot water", + "nori", + "brown sugar", + "sesame seeds", + "white rice", + "garlic cloves", + "beansprouts" + ] + }, + { + "id": 5554, + "cuisine": "indian", + "ingredients": [ + "leaves", + "cumin seed", + "salt", + "ground turmeric", + "chili powder", + "mustard oil", + "green chilies" + ] + }, + { + "id": 32071, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "buttermilk", + "cream cheese", + "baking soda", + "vegetable oil", + "salt", + "heavy whipping cream", + "frozen whipped topping", + "Nilla Wafers", + "vanilla extract", + "vanilla instant pudding", + "bananas", + "butter", + "all-purpose flour", + "confectioners sugar" + ] + }, + { + "id": 32059, + "cuisine": "japanese", + "ingredients": [ + "red chili powder", + "cilantro leaves", + "bay leaf", + "clove", + "garam masala", + "okra", + "garlic paste", + "green chilies", + "onions", + "tomatoes", + "salt", + "oil" + ] + }, + { + "id": 27665, + "cuisine": "italian", + "ingredients": [ + "spinach", + "olive oil", + "chicken breasts", + "garlic", + "oregano", + "cottage cheese", + "parmesan cheese", + "ricotta cheese", + "crushed red pepper", + "tomatoes", + "mozzarella cheese", + "wheat", + "pasta rotel", + "garlic salt", + "black pepper", + "zucchini", + "basil", + "onions" + ] + }, + { + "id": 29948, + "cuisine": "spanish", + "ingredients": [ + "arborio rice", + "olive oil", + "sea salt", + "medium shrimp", + "saffron threads", + "fillet red snapper", + "lemon", + "fresh oregano", + "tomatoes", + "lemon zest", + "purple onion", + "lobster tails", + "mussels", + "minced garlic", + "fish stock", + "smoked paprika" + ] + }, + { + "id": 46786, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "cream of tartar", + "vegetable shortening", + "unsalted butter", + "all-purpose flour", + "melted butter", + "buttermilk" + ] + }, + { + "id": 31774, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "fresh lime juice", + "boneless skinless chicken breasts", + "green bell pepper, slice", + "onions", + "white vinegar", + "salad dressing mix" + ] + }, + { + "id": 41023, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "salt", + "harissa sauce", + "olive oil", + "cayenne pepper", + "sugar", + "all-purpose flour", + "chicken thighs", + "chicken breast halves", + "peanut oil" + ] + }, + { + "id": 18141, + "cuisine": "spanish", + "ingredients": [ + "jalapeno chilies", + "salt", + "olive oil", + "red pepper", + "chopped parsley", + "dry white wine", + "fat", + "ground pepper", + "garlic", + "onions" + ] + }, + { + "id": 30417, + "cuisine": "chinese", + "ingredients": [ + "sugar pea", + "fresh ginger", + "rice vinegar", + "red bell pepper", + "fresh udon", + "water", + "purple onion", + "carrots", + "medium shrimp", + "black peppercorns", + "minced garlic", + "butter", + "oyster sauce", + "baby corn", + "sugar", + "light soy sauce", + "salt", + "corn starch" + ] + }, + { + "id": 26599, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "calamari", + "sea scallops", + "salt", + "onions", + "green bell pepper", + "crushed tomatoes", + "peas", + "shrimp", + "clams", + "water", + "lemon", + "long-grain rice", + "chicken thighs", + "jumbo shrimp", + "olive oil", + "garlic", + "red bell pepper" + ] + }, + { + "id": 7565, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "oil-cured black olives", + "salt", + "warm water", + "sea salt", + "dry yeast", + "extra-virgin olive oil", + "sugar", + "russet potatoes", + "bread flour" + ] + }, + { + "id": 17282, + "cuisine": "indian", + "ingredients": [ + "lemon", + "greek style plain yogurt", + "naan", + "yellow heirloom tomatoes", + "garlic", + "chaat masala", + "mixed spice", + "purple onion", + "paneer cheese", + "spinach", + "ginger", + "cucumber" + ] + }, + { + "id": 6226, + "cuisine": "greek", + "ingredients": [ + "water", + "vanilla extract", + "eggs", + "baking powder", + "white sugar", + "sesame seeds", + "all-purpose flour", + "slivered almonds", + "butter" + ] + }, + { + "id": 10371, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "sour cream", + "flour", + "shredded Monterey Jack cheese", + "flour tortillas", + "chicken", + "chicken broth", + "butter" + ] + }, + { + "id": 22019, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "ginger", + "broccolini", + "quinoa", + "sliced mushrooms", + "black bean sauce", + "rice vinegar", + "olive oil", + "shallots" + ] + }, + { + "id": 49495, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "anchovy fillets", + "ricotta", + "country bread", + "extra-virgin olive oil", + "garlic cloves", + "baguette", + "fresh oregano" + ] + }, + { + "id": 42689, + "cuisine": "french", + "ingredients": [ + "green onions", + "garlic cloves", + "black pepper", + "salt", + "mayonaise", + "butter", + "chicken livers", + "white wine", + "hot sauce" + ] + }, + { + "id": 27702, + "cuisine": "italian", + "ingredients": [ + "milk", + "salt", + "dried fig", + "minced garlic", + "fresh tarragon", + "tarragon", + "black pepper", + "prosciutto", + "ricotta", + "sourdough loaf", + "crust", + "walnut oil" + ] + }, + { + "id": 303, + "cuisine": "vietnamese", + "ingredients": [ + "beef shank", + "garlic", + "potato starch", + "sesame oil", + "ground white pepper", + "baking powder", + "vietnamese fish sauce", + "sugar", + "vegetable oil" + ] + }, + { + "id": 39144, + "cuisine": "vietnamese", + "ingredients": [ + "turnips", + "red chili peppers", + "oxtails", + "top sirloin", + "scallions", + "beef bones", + "hoisin sauce", + "vegetable oil", + "yellow onion", + "beansprouts", + "kaffir lime leaves", + "fresh ginger", + "rice noodles", + "cilantro leaves", + "cinnamon sticks", + "clove", + "lime", + "shallots", + "star anise", + "sweet basil" + ] + }, + { + "id": 991, + "cuisine": "italian", + "ingredients": [ + "Angostura bitters", + "strawberries", + "raspberries", + "bananas", + "pears", + "Fuji Apple", + "honey", + "green grape", + "orange", + "dark rum" + ] + }, + { + "id": 34094, + "cuisine": "jamaican", + "ingredients": [ + "nutmeg", + "boneless skinless chicken breasts", + "hot pepper sauce", + "large garlic cloves", + "olive oil", + "cinnamon", + "green onions", + "salt" + ] + }, + { + "id": 5573, + "cuisine": "italian", + "ingredients": [ + "butter", + "val", + "kosher salt", + "cavatelli", + "extra-virgin olive oil", + "large eggs", + "thick-cut bacon" + ] + }, + { + "id": 7740, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "green chilies", + "flour", + "enchilada sauce", + "jack cheese", + "oil", + "salt" + ] + }, + { + "id": 38644, + "cuisine": "japanese", + "ingredients": [ + "salt", + "carrots", + "rice vinegar", + "sugar" + ] + }, + { + "id": 3200, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "fresh basil", + "extra-virgin olive oil", + "kosher salt", + "pizza doughs", + "tomatoes", + "ground black pepper" + ] + }, + { + "id": 17277, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "cayenne pepper", + "paprika", + "sour cream", + "cottage cheese", + "elbow macaroni", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 24713, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame seeds", + "salt", + "oil", + "white pepper", + "sesame oil", + "scallions", + "soy sauce", + "garlic powder", + "all-purpose flour", + "cumin", + "green cabbage", + "water", + "ground pork", + "chinese five-spice powder" + ] + }, + { + "id": 47020, + "cuisine": "southern_us", + "ingredients": [ + "diced onions", + "yellow squash", + "cream of mushroom soup", + "mayonaise", + "cornflake cereal", + "chicken broth", + "grated carrot", + "pepper", + "salt" + ] + }, + { + "id": 16285, + "cuisine": "indian", + "ingredients": [ + "sugar", + "ground cardamom", + "tea leaves", + "assam", + "ground ginger", + "cardamom pods", + "milk" + ] + }, + { + "id": 9582, + "cuisine": "southern_us", + "ingredients": [ + "water", + "all-purpose flour", + "fryers", + "vegetable oil", + "evaporated milk", + "pepper", + "salt" + ] + }, + { + "id": 8917, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "fresh mint", + "ice cubes", + "orange juice", + "raspberries", + "fresh lemon juice", + "fresh raspberries" + ] + }, + { + "id": 2997, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "nonfat yogurt", + "green onions", + "dried dillweed", + "minced garlic", + "lettuce leaves", + "salt", + "dried oregano", + "vegetable oil cooking spray", + "minced onion", + "cutlet", + "cucumber", + "pepper", + "pita bread rounds", + "red wine vinegar", + "fresh parsley" + ] + }, + { + "id": 28352, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "butter", + "white sugar", + "eggs", + "hot pepper sauce", + "salt", + "milk", + "deep dish pie crust", + "pork sausages", + "cheddar cheese", + "ranch dressing", + "onions" + ] + }, + { + "id": 5871, + "cuisine": "southern_us", + "ingredients": [ + "diced onions", + "brown sugar", + "baking powder", + "diced celery", + "fresh basil", + "milk", + "salt", + "fresh parsley", + "tomatoes", + "pepper", + "butter", + "bay leaf", + "green bell pepper", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 18071, + "cuisine": "southern_us", + "ingredients": [ + "tomato sauce", + "salt", + "water", + "onions", + "black pepper", + "pork country-style ribs", + "paprika", + "allspice" + ] + }, + { + "id": 13090, + "cuisine": "italian", + "ingredients": [ + "chiles", + "extra-virgin olive oil", + "chopped parsley", + "parmigiano reggiano cheese", + "garlic", + "tomatoes", + "basil", + "baby zucchini", + "kosher salt", + "linguine" + ] + }, + { + "id": 18359, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "bay leaves", + "bread crumb fresh", + "large eggs", + "ground allspice", + "ground cinnamon", + "unsalted butter", + "capon", + "lean ground pork", + "candied chestnuts", + "fine sea salt" + ] + }, + { + "id": 83, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "pineapple chunks", + "butter", + "butter crackers", + "all-purpose flour", + "syrup" + ] + }, + { + "id": 29907, + "cuisine": "southern_us", + "ingredients": [ + "corn", + "yukon gold potatoes", + "kosher salt", + "dry white wine", + "bacon", + "cherry tomatoes", + "chopped fresh thyme", + "water", + "shallots", + "smoked paprika" + ] + }, + { + "id": 16335, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "ground pork", + "scallions", + "white pepper", + "Shaoxing wine", + "salt", + "carrots", + "sugar", + "instant yeast", + "ginger", + "oil", + "water", + "sesame oil", + "all-purpose flour", + "toasted sesame seeds" + ] + }, + { + "id": 48983, + "cuisine": "italian", + "ingredients": [ + "almond flour", + "2% reduced-fat milk", + "rice", + "large eggs", + "all-purpose flour", + "sugar", + "butter", + "fresh raspberries", + "large egg yolks", + "salt", + "apricot preserves" + ] + }, + { + "id": 38549, + "cuisine": "moroccan", + "ingredients": [ + "brown sugar", + "cinnamon", + "cayenne", + "fresh lemon juice", + "water", + "salt", + "unsalted butter", + "carrots" + ] + }, + { + "id": 11127, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "garlic powder", + "vegetable oil", + "chicken pieces", + "ground cloves", + "ground red pepper", + "ground coriander", + "ground cumin", + "plain yogurt", + "lime wedges", + "fresh lime juice", + "ground cinnamon", + "jalapeno chilies", + "salt", + "ground turmeric" + ] + }, + { + "id": 35628, + "cuisine": "greek", + "ingredients": [ + "whole wheat pita", + "ground red pepper", + "ground allspice", + "chopped fresh mint", + "tomatoes", + "sherry vinegar", + "salt", + "toasted wheat germ", + "ground lamb", + "feta cheese", + "romaine lettuce leaves", + "garlic cloves", + "chopped cilantro fresh", + "fat free yogurt", + "cooking spray", + "fresh oregano", + "cucumber", + "ground cumin" + ] + }, + { + "id": 34387, + "cuisine": "british", + "ingredients": [ + "kosher salt", + "lemon", + "olive oil", + "pepper", + "salt", + "cod", + "russet potatoes" + ] + }, + { + "id": 15651, + "cuisine": "italian", + "ingredients": [ + "prunes", + "pepper", + "red wine vinegar", + "dried oregano", + "capers", + "bay leaves", + "salt", + "green olives", + "olive oil", + "garlic", + "chicken", + "brown sugar", + "dry white wine", + "fresh parsley" + ] + }, + { + "id": 12265, + "cuisine": "thai", + "ingredients": [ + "crab", + "shallots", + "cilantro leaves", + "eggs", + "boneless, skinless chicken breast", + "pineapple", + "garlic cloves", + "jasmine rice", + "vegetable oil", + "tomato ketchup", + "fish sauce", + "green onions", + "salt", + "shrimp" + ] + }, + { + "id": 2104, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "tortilla chips", + "chicken breasts", + "cherry tomatoes", + "avocado", + "salsa" + ] + }, + { + "id": 8183, + "cuisine": "korean", + "ingredients": [ + "red chili peppers", + "ground black pepper", + "jicama", + "garlic", + "Gochujang base", + "kimchi", + "brown sugar", + "kosher salt", + "shredded carrots", + "vegetable oil", + "salt", + "cucumber", + "eggs", + "soy sauce", + "mirin", + "sesame oil", + "tamari soy sauce", + "rice", + "ground beef", + "sugar", + "water", + "mushrooms", + "daikon", + "rice vinegar", + "beansprouts" + ] + }, + { + "id": 23295, + "cuisine": "french", + "ingredients": [ + "chicken broth", + "large eggs", + "carrots", + "milk", + "Bisquick Original All-Purpose Baking Mix", + "great northern beans", + "smoked sausage", + "onions", + "dried thyme", + "garlic cloves" + ] + }, + { + "id": 6082, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "finely chopped onion", + "boneless skinless chicken breast halves", + "olive oil", + "salt", + "fresh cilantro", + "cooking spray", + "plum tomatoes", + "ground black pepper", + "fresh lime juice" + ] + }, + { + "id": 48788, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "shredded mozzarella cheese", + "vegetable oil", + "guacamole", + "sour cream", + "rotisserie chicken" + ] + }, + { + "id": 15281, + "cuisine": "italian", + "ingredients": [ + "water", + "manicotti pasta", + "tomato sauce", + "ricotta cheese", + "frozen chopped spinach", + "ground black pepper", + "shredded mozzarella cheese", + "cottage cheese", + "salt" + ] + }, + { + "id": 44928, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "onions", + "marinara sauce", + "mozzarella cheese", + "dried rigatoni", + "eggplant" + ] + }, + { + "id": 20521, + "cuisine": "italian", + "ingredients": [ + "sugar pea", + "dry white wine", + "grated parmesan cheese", + "red bell pepper", + "olive oil", + "vegetable broth", + "arborio rice", + "mushrooms", + "chopped fresh mint" + ] + }, + { + "id": 18661, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "shallots", + "freshly ground pepper", + "flat leaf parsley", + "dried porcini mushrooms", + "fresh thyme", + "ricotta cheese", + "coarse semolina", + "olive oil", + "grated parmesan cheese", + "fresh mushrooms", + "hot water", + "fresh pasta", + "coarse salt", + "flour for dusting" + ] + }, + { + "id": 31002, + "cuisine": "italian", + "ingredients": [ + "cream cheese", + "pesto", + "goat cheese" + ] + }, + { + "id": 38398, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "flour tortillas", + "water", + "canned chicken", + "Campbell's Condensed Tomato Soup", + "instant white rice", + "taco seasoning mix" + ] + }, + { + "id": 44863, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "red wine vinegar", + "lemon zest", + "lemon juice", + "ground black pepper", + "garlic", + "pork sirloin chops", + "oregano" + ] + }, + { + "id": 24678, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "heirloom tomatoes", + "red bell pepper", + "kosher salt", + "red wine vinegar", + "extra-virgin olive oil", + "aged balsamic vinegar", + "Tabasco Pepper Sauce", + "yellow bell pepper", + "hothouse cucumber", + "fresh cilantro", + "lemon", + "purple onion" + ] + }, + { + "id": 7155, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "fat skimmed chicken broth", + "all-purpose flour", + "green chilies", + "butter" + ] + }, + { + "id": 39589, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "rice noodles", + "cinnamon sticks", + "canola oil", + "fish sauce", + "peeled fresh ginger", + "star anise", + "mung bean sprouts", + "clove", + "ground black pepper", + "dried Thai chili", + "fresh mint", + "reduced sodium beef broth", + "flank steak", + "scallions", + "onions" + ] + }, + { + "id": 7132, + "cuisine": "russian", + "ingredients": [ + "shallots", + "sour cream", + "hungarian hot paprika", + "bacon fat", + "onions", + "hungarian sweet paprika", + "diced tomatoes", + "lard", + "olive oil", + "veal scallops", + "marjoram" + ] + }, + { + "id": 38212, + "cuisine": "japanese", + "ingredients": [ + "Japanese Mayonnaise", + "sashimi grade tuna", + "sushi rice", + "salt", + "nori", + "sugar", + "daikon", + "cucumber", + "salmon", + "rice vinegar" + ] + }, + { + "id": 48154, + "cuisine": "mexican", + "ingredients": [ + "garbanzo beans", + "red bell pepper", + "honey", + "salt", + "onions", + "black beans", + "jalapeno chilies", + "fresh lime juice", + "olive oil", + "frozen corn kernels", + "chopped cilantro fresh" + ] + }, + { + "id": 12451, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "garlic cloves", + "tomato sauce", + "olive oil", + "onions", + "dried basil", + "fresh parsley", + "pepper", + "salt", + "dried oregano" + ] + }, + { + "id": 28963, + "cuisine": "mexican", + "ingredients": [ + "sliced black olives", + "ground beef", + "shredded cheddar cheese", + "salsa", + "refried beans", + "cream cheese", + "diced onions", + "chile pepper" + ] + }, + { + "id": 26187, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "anise", + "scallions", + "sugar", + "large garlic cloves", + "beef rib short", + "turnips", + "water", + "scotch", + "cinnamon sticks", + "hot red pepper flakes", + "egg noodles", + "gingerroot", + "toasted sesame oil" + ] + }, + { + "id": 7191, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "boneless pork loin", + "ground black pepper", + "white sugar", + "water", + "onions", + "garlic" + ] + }, + { + "id": 21006, + "cuisine": "italian", + "ingredients": [ + "sugar", + "heavy cream", + "salted pistachios", + "large egg whites", + "almond extract" + ] + }, + { + "id": 26100, + "cuisine": "italian", + "ingredients": [ + "eggs", + "all-purpose flour" + ] + }, + { + "id": 28639, + "cuisine": "italian", + "ingredients": [ + "salt", + "olive oil", + "dried oregano", + "tomato sauce", + "spaghetti", + "garlic" + ] + }, + { + "id": 6743, + "cuisine": "french", + "ingredients": [ + "large eggs", + "goat cheese", + "water", + "country style bread", + "seedless red grapes", + "pinenuts", + "vegetable oil", + "frisee", + "japanese breadcrumbs", + "vinaigrette" + ] + }, + { + "id": 49380, + "cuisine": "vietnamese", + "ingredients": [ + "fresh basil", + "crushed red pepper", + "chopped fresh mint", + "mirin", + "lemon juice", + "rice paper", + "reduced sodium soy sauce", + "orange juice", + "wild salmon", + "avocado", + "shredded carrots", + "asparagus spears" + ] + }, + { + "id": 47695, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "salt", + "cognac", + "olive oil", + "bay leaves", + "grated nutmeg", + "chicken livers", + "large egg yolks", + "shallots", + "ground allspice", + "black pepper", + "whole milk", + "all-purpose flour", + "garlic cloves" + ] + }, + { + "id": 49052, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "hoisin sauce", + "honey", + "dry sherry", + "cider vinegar", + "large garlic cloves", + "chicken wings", + "chinese plum sauce" + ] + }, + { + "id": 40533, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "fresh ginger", + "fresh thyme leaves", + "cayenne pepper", + "lime", + "ground black pepper", + "large garlic cloves", + "dark brown sugar", + "pepper", + "ground nutmeg", + "red wine vinegar", + "ground allspice", + "ground cinnamon", + "olive oil", + "shallots", + "fresh orange juice", + "scallions" + ] + }, + { + "id": 47544, + "cuisine": "spanish", + "ingredients": [ + "cider vinegar", + "jalapeno chilies", + "cinnamon sticks", + "bone-in chicken breast halves", + "olive oil", + "salt", + "onions", + "clove", + "dried thyme", + "sliced carrots", + "red bell pepper", + "fat free less sodium chicken broth", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 10200, + "cuisine": "jamaican", + "ingredients": [ + "Jamaican allspice", + "black beans", + "ground nutmeg", + "salt", + "thyme", + "ground ginger", + "ground cloves", + "water", + "shallots", + "oil", + "chicken pieces", + "light brown sugar", + "soy sauce", + "chili pepper", + "rum", + "scallions", + "coconut milk", + "ground cinnamon", + "black pepper", + "lime", + "garlic", + "long-grain rice" + ] + }, + { + "id": 29680, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "non-fat sour cream", + "fresh lime juice", + "fresh cilantro" + ] + }, + { + "id": 13728, + "cuisine": "italian", + "ingredients": [ + "butter", + "flat leaf parsley", + "pepper", + "sea salt", + "bread", + "lemon", + "medium shrimp", + "baguette", + "garlic" + ] + }, + { + "id": 2581, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "green onions", + "purple onion", + "chopped cilantro fresh", + "dried thyme", + "vegetable oil", + "tortilla chips", + "chicken broth", + "ground black pepper", + "garlic", + "boneless skinless chicken breast halves", + "lime", + "chile pepper", + "salt", + "dried oregano" + ] + }, + { + "id": 23995, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "amchur", + "salt", + "coriander", + "masala", + "cream", + "yoghurt", + "oil", + "ground turmeric", + "red chili powder", + "garam masala", + "cilantro leaves", + "boiling potatoes", + "clove", + "corn kernels", + "green peas", + "onions", + "cumin" + ] + }, + { + "id": 49506, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "salt", + "cucumber", + "salmon fillets", + "cayenne", + "long-grain rice", + "asian fish sauce", + "ground black pepper", + "scallions", + "chopped cilantro", + "sugar", + "cooking oil", + "carrots" + ] + }, + { + "id": 27891, + "cuisine": "moroccan", + "ingredients": [ + "capers", + "cooking spray", + "salt", + "ground cinnamon", + "swordfish steaks", + "paprika", + "chopped fresh mint", + "plain low-fat yogurt", + "ground black pepper", + "mint sprigs", + "ground cumin", + "ground ginger", + "minced garlic", + "ground red pepper", + "ground coriander" + ] + }, + { + "id": 3087, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "beef stock", + "ground sichuan pepper", + "chinese five-spice powder", + "ground white pepper", + "jasmine rice", + "spring onions", + "salt", + "garlic cloves", + "onions", + "red chili peppers", + "Shaoxing wine", + "cornflour", + "oil", + "baby corn", + "cold water", + "light soy sauce", + "sirloin steak", + "broccoli", + "carrots", + "snow peas" + ] + }, + { + "id": 49704, + "cuisine": "indian", + "ingredients": [ + "peas", + "oil", + "water", + "rice", + "onions", + "salt", + "mustard seeds", + "garam masala", + "cumin seed" + ] + }, + { + "id": 45278, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "pepper", + "chuck roast", + "rabbit", + "whole chicken", + "onions", + "white vinegar", + "ketchup", + "dried thyme", + "garden peas", + "salt", + "carrots", + "green bell pepper", + "water", + "potatoes", + "dry red wine", + "garlic cloves", + "cabbage", + "celery ribs", + "baby lima beans", + "frozen whole kernel corn", + "worcestershire sauce", + "beef broth", + "pork loin chops" + ] + }, + { + "id": 4288, + "cuisine": "korean", + "ingredients": [ + "ground paprika", + "mirin", + "vegetable oil", + "rice vinegar", + "ground cayenne pepper", + "cold water", + "olive oil", + "self rising flour", + "chilli paste", + "Gochujang base", + "caster sugar", + "gochugaru", + "spices", + "togarashi", + "chicken thighs", + "matzo meal", + "sesame seeds", + "onion powder", + "salt", + "cucumber" + ] + }, + { + "id": 17798, + "cuisine": "mexican", + "ingredients": [ + "salt", + "avocado", + "salsa", + "garlic powder", + "sour cream", + "ground black pepper", + "ground cumin" + ] + }, + { + "id": 40978, + "cuisine": "brazilian", + "ingredients": [ + "cachaca", + "fresh lime", + "superfine sugar" + ] + }, + { + "id": 23380, + "cuisine": "french", + "ingredients": [ + "semi-sweet chocolate morsels", + "refrigerated crescent rolls" + ] + }, + { + "id": 7767, + "cuisine": "brazilian", + "ingredients": [ + "lemon", + "lime", + "cold water", + "sweetened condensed milk", + "agave nectar" + ] + }, + { + "id": 42483, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "garlic", + "dried oregano", + "sausage links", + "green bell pepper, slice", + "red bell pepper", + "water", + "bow-tie pasta", + "marsala wine", + "diced tomatoes", + "onions" + ] + }, + { + "id": 552, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "dry white wine", + "all-purpose flour", + "grated parmesan cheese", + "paprika", + "margarine", + "pumpkin purée", + "cracked black pepper", + "low salt chicken broth", + "water", + "cooking spray", + "salt" + ] + }, + { + "id": 7460, + "cuisine": "spanish", + "ingredients": [ + "spanish chorizo" + ] + }, + { + "id": 3176, + "cuisine": "southern_us", + "ingredients": [ + "crumb topping", + "onion powder", + "fresh parsley", + "milk", + "large eggs", + "bacon", + "cheddar cheese", + "macaroni", + "butter", + "panko breadcrumbs", + "garlic powder", + "grated parmesan cheese", + "mustard powder" + ] + }, + { + "id": 34954, + "cuisine": "spanish", + "ingredients": [ + "water", + "salt", + "long-grain rice", + "vegetable oil" + ] + }, + { + "id": 7230, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "diced green chilies", + "cilantro leaves", + "avocado", + "corn kernels", + "flour tortillas", + "ground beef", + "shredded cheddar cheese", + "ground black pepper", + "enchilada sauce", + "canned black beans", + "olive oil", + "roma tomatoes", + "monterey jack" + ] + }, + { + "id": 8690, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "onions", + "refried beans", + "shredded sharp cheddar cheese", + "flour tortillas", + "plum tomatoes", + "taco seasoning mix", + "roasting chickens" + ] + }, + { + "id": 37437, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "flank steak", + "gingerroot", + "medium dry sherry", + "large garlic cloves", + "cucumber", + "water", + "vegetable oil", + "scallions", + "spinach leaves", + "mushrooms", + "seasoned rice wine vinegar", + "beansprouts" + ] + }, + { + "id": 14649, + "cuisine": "irish", + "ingredients": [ + "ground ginger", + "large eggs", + "custard", + "freshly ground pepper", + "molasses", + "candy bar", + "salt", + "hot water", + "baking soda", + "butter", + "dark brown sugar", + "frozen whipped topping", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 16774, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "lemon", + "salmon fillets", + "mirin", + "oil", + "sake", + "white miso", + "lemon slices", + "sugar", + "egg yolks", + "roast red peppers, drain" + ] + }, + { + "id": 46865, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "chopped tomatoes", + "worcestershire sauce", + "pinto beans", + "mozzarella cheese", + "mushrooms", + "salt", + "corn tortillas", + "cooked rice", + "guacamole", + "shredded lettuce", + "sour cream", + "pepper", + "onion powder", + "oil", + "skirt steak" + ] + }, + { + "id": 26175, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "finely chopped onion", + "salt", + "oil", + "clove", + "coconut", + "poppy seeds", + "green cardamom", + "bay leaf", + "red chili powder", + "garam masala", + "star anise", + "green chilies", + "shahi jeera", + "tumeric", + "seeds", + "tamarind paste", + "cinnamon sticks" + ] + }, + { + "id": 19646, + "cuisine": "southern_us", + "ingredients": [ + "cottage cheese", + "low-fat sharp cheddar cheese", + "pimentos", + "hot sauce", + "pepper", + "salt", + "onion powder", + "extra sharp cheddar cheese" + ] + }, + { + "id": 18603, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "jalapeno chilies", + "celery", + "black-eyed peas", + "salt", + "pepper", + "diced tomatoes", + "diced green chilies", + "diced ham" + ] + }, + { + "id": 1867, + "cuisine": "moroccan", + "ingredients": [ + "turnips", + "dry white wine", + "extra-virgin olive oil", + "fresh lemon juice", + "harissa sauce", + "kosher salt", + "baby spinach", + "all-purpose flour", + "carrots", + "chopped fresh mint", + "garbanzo beans", + "butter", + "ground coriander", + "greek yogurt", + "ground cumin", + "spring onions", + "paprika", + "garlic cloves", + "flat leaf parsley" + ] + }, + { + "id": 30615, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "linguine", + "large garlic cloves", + "whipping cream", + "butter", + "flat leaf parsley" + ] + }, + { + "id": 46149, + "cuisine": "spanish", + "ingredients": [ + "orange juice", + "sugar", + "orange zest", + "orange", + "eggs", + "lemon juice" + ] + }, + { + "id": 3891, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "salt", + "chopped cilantro fresh", + "green bell pepper", + "green onions", + "garlic cloves", + "sugar", + "tomatillos", + "fresh lime juice", + "cooking spray", + "chopped onion" + ] + }, + { + "id": 30573, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "creole seasoning", + "butter", + "sour cream", + "corn flakes", + "chicken leg quarters", + "parsley flakes", + "salt" + ] + }, + { + "id": 28684, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "active dry yeast", + "ground black pepper", + "kosher salt", + "semolina", + "all-purpose flour", + "mozzarella cheese", + "freshly grated parmesan", + "sugar", + "cherry tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 46082, + "cuisine": "italian", + "ingredients": [ + "warm water", + "yellow bell pepper", + "reduced fat ricotta cheese", + "capers", + "balsamic vinegar", + "red bell pepper", + "active dry yeast", + "salt", + "yellow corn meal", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 17862, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "baking powder", + "chopped pecans", + "large eggs", + "salt", + "cooking spray", + "all-purpose flour", + "apple brandy", + "vanilla extract", + "tart apples" + ] + }, + { + "id": 27460, + "cuisine": "filipino", + "ingredients": [ + "sugar pea", + "pancit", + "chicken broth", + "water", + "carrots", + "pepper", + "salt", + "pork", + "cooking oil", + "cabbage" + ] + }, + { + "id": 10496, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "bay leaves", + "beef broth", + "dried basil", + "lemon", + "carrots", + "white onion", + "butter", + "ham", + "ground nutmeg", + "heavy cream", + "ground beef" + ] + }, + { + "id": 20489, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "granulated sugar", + "heavy cream", + "confectioners sugar", + "light brown sugar", + "peaches", + "cinnamon", + "all-purpose flour", + "turbinado", + "unsalted butter", + "buttermilk", + "corn starch", + "pure vanilla extract", + "baking soda", + "baking powder", + "salt" + ] + }, + { + "id": 2519, + "cuisine": "italian", + "ingredients": [ + "warm water", + "bread machine yeast", + "dried oregano", + "lecithin", + "white sugar", + "olive oil", + "salt", + "grated parmesan cheese", + "bread flour" + ] + }, + { + "id": 7631, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "boneless chicken skinless thigh", + "vegetables", + "scallions", + "toasted sesame oil", + "white vinegar", + "sugar", + "fresh ginger", + "roasted peanuts", + "red bell pepper", + "chiles", + "store bought low sodium chicken stock", + "garlic", + "ground white pepper", + "green bell pepper", + "kosher salt", + "Shaoxing wine", + "corn starch", + "celery" + ] + }, + { + "id": 18993, + "cuisine": "cajun_creole", + "ingredients": [ + "yellow corn meal", + "mozzarella cheese", + "cayenne", + "large garlic cloves", + "celery ribs", + "warm water", + "olive oil", + "vegetable oil", + "onions", + "green bell pepper", + "active dry yeast", + "whole peeled tomatoes", + "salt", + "sugar", + "dried thyme", + "unbleached flour", + "shrimp" + ] + }, + { + "id": 48053, + "cuisine": "mexican", + "ingredients": [ + "fresh corn", + "vegetable oil", + "garlic cloves", + "fresh shiitake mushrooms", + "salt", + "masa harina", + "fingerling potatoes", + "vegetable broth", + "ancho chile pepper", + "white onion", + "epazote", + "green beans" + ] + }, + { + "id": 10966, + "cuisine": "italian", + "ingredients": [ + "coarse salt", + "hot red pepper flakes", + "garlic cloves", + "all-purpose flour", + "olive oil", + "dried oregano" + ] + }, + { + "id": 21644, + "cuisine": "british", + "ingredients": [ + "plain flour", + "sausages", + "milk", + "salt", + "eggs" + ] + }, + { + "id": 16773, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "garlic powder", + "onions", + "seasoning salt", + "garlic", + "curry powder", + "fresh thyme", + "chicken thighs", + "black pepper", + "fresh ginger", + "lemon pepper" + ] + }, + { + "id": 46024, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "water", + "fresh parsley", + "ground cumin", + "tomato sauce", + "garlic cloves", + "canola oil", + "cheddar cheese", + "chili powder", + "onions", + "sugar", + "corn tortillas", + "chicken" + ] + }, + { + "id": 29771, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "green onions", + "mango", + "tumeric", + "olive oil", + "chicken thighs", + "steamed rice", + "vietnamese fish sauce", + "white pepper", + "cayenne", + "fresh basil leaves" + ] + }, + { + "id": 18301, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "picante sauce", + "boneless skinless chicken breast halves", + "lemon juice", + "dijon" + ] + }, + { + "id": 48312, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "salt", + "plum tomatoes", + "white onion", + "corn oil", + "corn tortillas", + "jalapeno chilies", + "garlic cloves", + "water", + "tomatillos", + "chopped cilantro fresh" + ] + }, + { + "id": 16094, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "paneer", + "ghee", + "tomatoes", + "ginger", + "fenugreek seeds", + "chili powder", + "purple onion", + "greens", + "fresh leav spinach", + "garlic", + "cumin seed" + ] + }, + { + "id": 20217, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "guacamole", + "garlic", + "yellow onion", + "chipotles in adobo", + "ground cumin", + "pepper", + "cayenne", + "vegetable oil", + "salsa", + "greek yogurt", + "plum tomatoes", + "refried beans", + "chili powder", + "salt", + "oil", + "ground beef", + "shredded cheddar cheese", + "jalapeno chilies", + "coarse salt", + "hot sauce", + "corn tortillas", + "dried oregano" + ] + }, + { + "id": 1515, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "corn tortillas", + "cheddar cheese", + "peanut oil", + "chunky salsa", + "chopped onion", + "boneless skinless chicken breast halves", + "guacamole", + "sour cream" + ] + }, + { + "id": 2152, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "ice", + "bananas", + "plain yogurt", + "mango" + ] + }, + { + "id": 19278, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "chili powder", + "green chilies", + "ground turmeric", + "tomato paste", + "yoghurt", + "paneer", + "oil", + "asafoetida", + "soda", + "salt", + "gram flour", + "coriander powder", + "ginger", + "cumin seed" + ] + }, + { + "id": 41034, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "red pepper flakes", + "ginger root", + "sugar", + "splenda", + "stevia", + "minced garlic", + "fresh green bean", + "soy sauce", + "vegetable oil", + "rice vinegar" + ] + }, + { + "id": 13169, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "onions", + "arborio rice", + "cognac", + "dried porcini mushrooms", + "low salt chicken broth", + "butter" + ] + }, + { + "id": 43686, + "cuisine": "thai", + "ingredients": [ + "green chile", + "fresh cilantro", + "scallions", + "pork", + "lime wedges", + "bok choy", + "fish sauce", + "fresh ginger", + "cucumber", + "neutral oil", + "jasmine rice", + "garlic" + ] + }, + { + "id": 5851, + "cuisine": "italian", + "ingredients": [ + "sesame seeds", + "shortening", + "all-purpose flour", + "anise oil", + "milk", + "white sugar" + ] + }, + { + "id": 17082, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "grated parmesan cheese", + "red bell pepper", + "minced garlic", + "extra-virgin olive oil", + "dried oregano", + "pepper", + "asiago", + "fresh parsley", + "fresh basil", + "cherry tomatoes", + "salt", + "rigatoni" + ] + }, + { + "id": 11883, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "green onions", + "white rice", + "onions", + "dried thyme", + "bacon", + "smoked paprika", + "pork", + "Tabasco Pepper Sauce", + "salt", + "pork sausages", + "chicken broth", + "bell pepper", + "crushed red pepper flakes", + "celery" + ] + }, + { + "id": 38623, + "cuisine": "indian", + "ingredients": [ + "large eggs", + "greek style plain yogurt", + "water", + "vegetable oil", + "sugar", + "flour", + "active dry yeast", + "salt" + ] + }, + { + "id": 41813, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "iceberg lettuce", + "whitefish fillets", + "tzatziki", + "lime", + "oil", + "bread crumb fresh", + "egg whites" + ] + }, + { + "id": 12372, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "vegetables", + "salt", + "hot water", + "coriander", + "clove", + "garlic paste", + "paprika", + "cumin seed", + "bay leaf", + "chicken", + "tomato paste", + "coriander seeds", + "cilantro", + "juice", + "onions", + "ginger paste", + "black peppercorns", + "jalapeno chilies", + "cardamom pods", + "cinnamon sticks", + "ground turmeric" + ] + }, + { + "id": 48328, + "cuisine": "spanish", + "ingredients": [ + "prunes", + "large egg yolks", + "corn starch", + "milk", + "dry sherry", + "sugar", + "large eggs", + "sliced almonds", + "heavy cream" + ] + }, + { + "id": 8184, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "yellow bell pepper", + "ground cayenne pepper", + "ground cumin", + "red potato", + "lemon", + "salt", + "celery", + "tomatoes", + "red wine vinegar", + "garlic", + "chopped parsley", + "green bell pepper", + "paprika", + "red bell pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 3347, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "dry white wine", + "extra-virgin olive oil", + "carnaroli rice", + "ground black pepper", + "butter", + "grated lemon zest", + "fresh green peas", + "leeks", + "fresh tarragon", + "fresh lemon juice", + "homemade chicken stock", + "shallots", + "salt" + ] + }, + { + "id": 31951, + "cuisine": "russian", + "ingredients": [ + "lemon extract", + "heavy cream", + "ground almonds", + "cottage cheese", + "golden raisins", + "candied fruit", + "sugar", + "egg yolks", + "vanilla extract", + "vanilla beans", + "lemon", + "cream cheese" + ] + }, + { + "id": 27325, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "curry powder", + "zucchini", + "yellow onion", + "frozen peas", + "basmati rice", + "lite coconut milk", + "garam masala", + "garlic", + "chickpeas", + "cashew nuts", + "slivered almonds", + "fresh ginger", + "vegetable broth", + "cayenne pepper", + "panko breadcrumbs", + "ground cumin", + "tomato paste", + "fresh coriander", + "ground black pepper", + "salt", + "cumin seed", + "chopped cilantro fresh" + ] + }, + { + "id": 22608, + "cuisine": "greek", + "ingredients": [ + "mahlab", + "unsalted butter", + "all-purpose flour", + "eggs", + "honey", + "baking powder", + "candy", + "slivered almonds", + "baking soda", + "vanilla extract", + "light brown sugar", + "milk", + "granulated sugar", + "lemon juice" + ] + }, + { + "id": 12783, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "cooking spray", + "all-purpose flour", + "unsalted butter", + "buttermilk", + "baking soda", + "baking powder", + "yellow corn meal", + "large eggs", + "salt" + ] + }, + { + "id": 8144, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "lime wedges", + "rice vinegar", + "dark sesame oil", + "corn starch", + "pork tenderloin", + "crushed red pepper", + "chopped onion", + "garlic cloves", + "unsalted chicken stock", + "peeled fresh ginger", + "cilantro leaves", + "roasted peanuts", + "carrots", + "lower sodium soy sauce", + "white rice", + "chinese cabbage", + "dark brown sugar" + ] + }, + { + "id": 48567, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "chili powder", + "shredded mozzarella cheese", + "olive oil", + "salsa", + "chicken", + "pepper", + "salt", + "onions", + "Mexican cheese blend", + "pizza doughs" + ] + }, + { + "id": 49553, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "berries", + "figs", + "mint sprigs", + "sugar", + "whipped topping", + "large egg yolks" + ] + }, + { + "id": 27557, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "hot chili powder", + "garlic cloves", + "chicken stock", + "bay leaves", + "cilantro leaves", + "onions", + "cooking spray", + "ginger", + "lentils", + "chopped tomatoes", + "yoghurt", + "long-grain rice", + "chicken thighs" + ] + }, + { + "id": 17086, + "cuisine": "brazilian", + "ingredients": [ + "dried black beans", + "bacon slices", + "pork shoulder boston butt", + "white vinegar", + "ground black pepper", + "beef rib short", + "lower sodium chicken broth", + "finely chopped onion", + "garlic cloves", + "orange slices", + "salt", + "smoked ham hocks" + ] + }, + { + "id": 42045, + "cuisine": "french", + "ingredients": [ + "capers", + "dry white wine", + "fresh tarragon", + "flat leaf parsley", + "pepper", + "lemon", + "hot sauce", + "cider vinegar", + "shallots", + "cornichons", + "chicken broth", + "unsalted butter", + "heavy cream", + "fresh lemon juice" + ] + }, + { + "id": 34437, + "cuisine": "chinese", + "ingredients": [ + "fat free less sodium chicken broth", + "peeled fresh ginger", + "dark sesame oil", + "cooked rice", + "black bean sauce", + "dry sherry", + "red bell pepper", + "low sodium soy sauce", + "water", + "vegetable oil", + "corn starch", + "boneless chicken skinless thigh", + "broccoli florets", + "salt" + ] + }, + { + "id": 25632, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "chopped onion", + "olive oil", + "heavy cream", + "sun-dried tomatoes in oil", + "chicken broth", + "pork tenderloin", + "chopped fresh sage", + "prosciutto", + "salt", + "fresh parsley" + ] + }, + { + "id": 45972, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "won ton wrappers", + "red wine vinegar", + "hoisin sauce", + "white sesame seeds", + "pork", + "green onions" + ] + }, + { + "id": 28433, + "cuisine": "korean", + "ingredients": [ + "low sodium soy sauce", + "Sriracha", + "ginger", + "sauce", + "brown sugar", + "baking powder", + "rice vinegar", + "garlic cloves", + "chicken wings", + "light beer", + "salt", + "oil", + "warm water", + "sesame oil", + "all-purpose flour", + "corn starch" + ] + }, + { + "id": 38177, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "sesame oil", + "purple onion", + "hoisin sauce", + "ginger", + "white sugar", + "steamed rice", + "vegetable oil", + "free range egg", + "spring onions", + "malt vinegar", + "pork fillet" + ] + }, + { + "id": 10482, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "chili paste", + "scallions", + "kosher salt", + "crushed red pepper flakes", + "lemon juice", + "fresh ginger", + "garlic", + "fish", + "soy sauce", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 28177, + "cuisine": "italian", + "ingredients": [ + "pepper", + "watercress", + "fresh parsley", + "fresh parmesan cheese", + "salt", + "nonfat ricotta cheese", + "olive oil", + "green peas", + "spaghetti", + "pecan halves", + "basil leaves", + "garlic cloves", + "sliced green onions" + ] + }, + { + "id": 17975, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "fresh cilantro", + "ground red pepper", + "dry bread crumbs", + "farina", + "egg substitute", + "peeled fresh ginger", + "salt", + "mustard seeds", + "red potato", + "finely chopped onion", + "vegetable oil", + "garlic cloves", + "ground cumin", + "dried lentils", + "pita bread rounds", + "green peas", + "carrots" + ] + }, + { + "id": 39138, + "cuisine": "thai", + "ingredients": [ + "dark soy sauce", + "light soy sauce", + "garlic", + "sugar", + "jalapeno chilies", + "chopped garlic", + "gai lan", + "vinegar", + "salt", + "eggs", + "pork", + "rice noodles" + ] + }, + { + "id": 8954, + "cuisine": "thai", + "ingredients": [ + "coconut oil", + "shrimp paste", + "sea salt", + "galangal", + "lime zest", + "coriander seeds", + "vegetable oil", + "salt", + "white peppercorns", + "green chile", + "jalapeno chilies", + "cilantro root", + "coconut milk", + "cumin", + "lemongrass", + "shallots", + "garlic", + "serrano chile" + ] + }, + { + "id": 44196, + "cuisine": "mexican", + "ingredients": [ + "cream of chicken soup", + "sour cream", + "shredded cheddar cheese", + "green onions", + "chopped cilantro fresh", + "green chile", + "flour tortillas", + "ground beef", + "taco seasoning mix", + "salsa" + ] + }, + { + "id": 39541, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger", + "fish sauce", + "sugar", + "fresh lime juice" + ] + }, + { + "id": 3302, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "fresh cilantro", + "fresh lime juice", + "straw mushrooms", + "coconut milk", + "homemade chicken stock", + "boneless skinless chicken breasts", + "galangal", + "kaffir lime leaves", + "lemongrass", + "bird chile" + ] + }, + { + "id": 14632, + "cuisine": "southern_us", + "ingredients": [ + "pork ribs", + "potatoes", + "honey", + "spices", + "olive oil" + ] + }, + { + "id": 15933, + "cuisine": "cajun_creole", + "ingredients": [ + "sweet onion", + "chopped celery", + "andouille sausage", + "cooked chicken", + "peanut oil", + "chicken broth", + "chopped green bell pepper", + "all-purpose flour", + "minced garlic", + "cajun seasoning", + "okra" + ] + }, + { + "id": 14091, + "cuisine": "southern_us", + "ingredients": [ + "turnips", + "sharp white cheddar cheese", + "sour cream", + "water", + "garlic", + "black pepper", + "minced onion", + "fresh parsley", + "vegetable bouillon", + "salt" + ] + }, + { + "id": 1516, + "cuisine": "japanese", + "ingredients": [ + "red chili powder", + "garam masala", + "oil", + "onions", + "red chili peppers", + "ginger", + "coconut milk", + "ground cumin", + "fresh ginger", + "green chilies", + "bay leaf", + "sugar", + "butter", + "shrimp small uncook", + "ground turmeric" + ] + }, + { + "id": 4671, + "cuisine": "southern_us", + "ingredients": [ + "lipton tea bags", + "granulated sugar", + "water" + ] + }, + { + "id": 40291, + "cuisine": "french", + "ingredients": [ + "blue cheese", + "green onions", + "chutney", + "curry powder", + "salt", + "dry sherry", + "cream cheese, soften" + ] + }, + { + "id": 48381, + "cuisine": "japanese", + "ingredients": [ + "tumeric", + "green onions", + "red pepper flakes", + "fresh ginger", + "miso", + "firm tofu", + "water", + "apple cider vinegar", + "cilantro", + "white miso", + "watercress", + "noodles" + ] + }, + { + "id": 33647, + "cuisine": "indian", + "ingredients": [ + "water", + "buttermilk", + "oil", + "curry leaves", + "sesame seeds", + "cilantro leaves", + "ground turmeric", + "coconut", + "salt", + "mustard seeds", + "asafoetida", + "besan (flour)", + "green chilies" + ] + }, + { + "id": 8212, + "cuisine": "chinese", + "ingredients": [ + "fish sauce", + "lime juice", + "cilantro leaves", + "corn starch", + "ground chicken", + "wonton wrappers", + "oil", + "white sesame seeds", + "sweet chili sauce", + "sesame oil", + "scallions", + "ground white pepper", + "water", + "salt", + "shrimp" + ] + }, + { + "id": 13438, + "cuisine": "filipino", + "ingredients": [ + "leaves", + "shrimp paste", + "squash", + "yardlong beans", + "coconut cream", + "prawns", + "salt", + "water", + "cooking oil", + "green chilies" + ] + }, + { + "id": 20401, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "purple onion", + "plum tomatoes", + "extra-virgin olive oil", + "garlic cloves", + "sugar", + "salt", + "white bread", + "wine vinegar", + "cucumber" + ] + }, + { + "id": 17688, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "bay leaves", + "salt", + "ground black pepper", + "tomatoes with juice", + "fresh mushrooms", + "frozen okra", + "vegetable oil", + "all-purpose flour", + "tomato paste", + "file powder", + "garlic", + "onions" + ] + }, + { + "id": 20751, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "heavy cream", + "marsala wine", + "egg yolks", + "white sugar", + "brewed coffee", + "vanilla extract", + "brandy", + "cookies", + "unsweetened cocoa powder" + ] + }, + { + "id": 2312, + "cuisine": "japanese", + "ingredients": [ + "vegetable oil", + "ginger paste", + "prawns", + "coconut milk", + "garlic paste", + "green chilies", + "teas", + "onions" + ] + }, + { + "id": 10344, + "cuisine": "southern_us", + "ingredients": [ + "light molasses", + "hoisin sauce", + "salt", + "soy sauce", + "dijon mustard", + "worcestershire sauce", + "honey", + "plum sauce", + "hot chili paste", + "pork baby back ribs", + "ground black pepper", + "bourbon whiskey", + "pineapple juice" + ] + }, + { + "id": 42566, + "cuisine": "japanese", + "ingredients": [ + "garlic", + "red miso", + "ginger", + "scallions", + "pea shoots", + "rice vinegar", + "toasted sesame oil", + "radishes", + "firm tofu", + "snow peas" + ] + }, + { + "id": 17010, + "cuisine": "french", + "ingredients": [ + "whole grain dijon mustard", + "freshly ground pepper", + "whipping cream", + "brandy", + "salt", + "dry white wine", + "fresh lemon juice" + ] + }, + { + "id": 18289, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "shredded cheddar cheese", + "salsa", + "condensed tomato soup", + "water", + "ground beef" + ] + }, + { + "id": 6268, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "cilantro", + "garlic powder", + "lime", + "sweet corn", + "mayonaise", + "chili powder" + ] + }, + { + "id": 12856, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "paprika", + "garlic", + "juice", + "ground turmeric", + "coriander seeds", + "whole peeled tomatoes", + "ginger", + "cumin seed", + "serrano chile", + "kosher salt", + "hand", + "cilantro", + "purple onion", + "dried kidney beans", + "canola oil", + "garam masala", + "cinnamon", + "chile de arbol", + "fresh lemon juice", + "basmati rice" + ] + }, + { + "id": 3508, + "cuisine": "italian", + "ingredients": [ + "kahlúa", + "large egg yolks", + "bittersweet chocolate", + "water", + "coffee", + "sugar", + "mascarpone", + "ladyfingers", + "large egg whites", + "cream cheese, soften" + ] + }, + { + "id": 33515, + "cuisine": "korean", + "ingredients": [ + "mayonaise", + "shredded cheddar cheese", + "vegetable oil", + "kimchi", + "toasted sesame seeds", + "soy sauce", + "Sriracha", + "garlic", + "toasted sesame oil", + "white vinegar", + "white onion", + "french fries", + "boneless rib eye steaks", + "onions", + "sugar", + "fresh ginger", + "cilantro", + "korean chile paste" + ] + }, + { + "id": 21535, + "cuisine": "southern_us", + "ingredients": [ + "vanilla pudding", + "nondairy whipped topping", + "bananas", + "vanilla wafers" + ] + }, + { + "id": 41656, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salted butter", + "grits", + "seasoning salt", + "cornmeal", + "red snapper", + "half & half" + ] + }, + { + "id": 4157, + "cuisine": "indian", + "ingredients": [ + "yellow mustard seeds", + "soy milk", + "red pepper flakes", + "carrots", + "curry powder", + "potatoes", + "salt", + "frozen peas", + "whole wheat pastry flour", + "agave nectar", + "garlic", + "onions", + "ground ginger", + "low sodium vegetable broth", + "vegetable oil", + "all-purpose flour", + "ground cumin" + ] + }, + { + "id": 44747, + "cuisine": "chinese", + "ingredients": [ + "water", + "peeled fresh ginger", + "salt", + "corn starch", + "sliced green onions", + "low sodium soy sauce", + "water chestnuts", + "sliced carrots", + "dark sesame oil", + "snow peas", + "short-grain rice", + "broccoli stems", + "rice vinegar", + "baby corn", + "sugar", + "broccoli florets", + "vegetable broth", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 17523, + "cuisine": "filipino", + "ingredients": [ + "water", + "bell pepper", + "onions", + "tomato sauce", + "cooking oil", + "salt", + "tomatoes", + "ground black pepper", + "garlic", + "sugar", + "potatoes", + "shrimp" + ] + }, + { + "id": 8417, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "fresh parmesan cheese", + "fresh oregano", + "garlic cloves", + "ground round", + "dried basil", + "lasagna noodles, cooked and drained", + "provolone cheese", + "dried oregano", + "tomato paste", + "tomato sauce", + "italian style stewed tomatoes", + "nonfat cottage cheese", + "fresh parsley", + "tomatoes", + "pepper", + "egg whites", + "chopped onion", + "nonfat ricotta cheese" + ] + }, + { + "id": 25268, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dried basil", + "ground black pepper", + "balsamic vinegar", + "sweet italian sausage", + "ketchup", + "olive oil", + "onion powder", + "worcestershire sauce", + "red bell pepper", + "green bell pepper", + "Spike Seasoning", + "finely chopped onion", + "red pepper", + "whole wheat breadcrumbs", + "ground fennel", + "minced garlic", + "garlic powder", + "lean ground beef", + "salt", + "dried oregano" + ] + }, + { + "id": 36053, + "cuisine": "italian", + "ingredients": [ + "warm water", + "basil", + "dry yeast", + "oregano", + "rosemary", + "salt", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 115, + "cuisine": "french", + "ingredients": [ + "saffron threads", + "large eggs", + "shallots", + "salt", + "white bread", + "cooking spray", + "extra-virgin olive oil", + "heavy whipping cream", + "mussels", + "chopped fresh chives", + "fresh tarragon", + "garlic cloves", + "black pepper", + "dry white wine", + "white wine vinegar" + ] + }, + { + "id": 27404, + "cuisine": "french", + "ingredients": [ + "walnut halves", + "extra-virgin olive oil", + "thyme sprigs", + "capers", + "balsamic vinegar", + "calimyrna figs", + "bread", + "water", + "toasted walnuts", + "crackers", + "pitted kalamata olives", + "chopped fresh thyme", + "soft fresh goat cheese" + ] + }, + { + "id": 4007, + "cuisine": "mexican", + "ingredients": [ + "red cabbage", + "large garlic cloves", + "fresh lime juice", + "olive oil", + "watercress", + "purple onion", + "avocado", + "pomegranate molasses", + "navel oranges", + "serrano chile", + "pomegranate juice", + "green onions", + "anise", + "chopped cilantro fresh" + ] + }, + { + "id": 45893, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "cheese", + "dressing", + "chili powder", + "chunky salsa", + "extra-lean ground beef", + "mixed greens", + "tomatoes", + "whole wheat tortillas" + ] + }, + { + "id": 26801, + "cuisine": "japanese", + "ingredients": [ + "chicken stock", + "soy sauce", + "clear honey", + "apples", + "onions", + "tomato purée", + "sushi rice", + "sesame oil", + "garlic cloves", + "panko breadcrumbs", + "ground ginger", + "medium curry powder", + "egg whites", + "cornflour", + "coriander", + "tumeric", + "gari", + "vegetable oil", + "carrots", + "pork fillet" + ] + }, + { + "id": 30174, + "cuisine": "southern_us", + "ingredients": [ + "ranch dressing", + "baking mix", + "catfish fillets", + "vegetable oil", + "lemon wedge", + "yellow corn meal", + "old bay seasoning" + ] + }, + { + "id": 45198, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "diced tomatoes", + "frozen corn", + "jalapeno chilies", + "garlic", + "squash", + "pepper", + "extra-virgin olive oil", + "thyme", + "sausage links", + "chili powder", + "salt", + "onions" + ] + }, + { + "id": 17754, + "cuisine": "french", + "ingredients": [ + "milk", + "white wine vinegar", + "baking powder", + "coarse kosher salt", + "large eggs", + "all-purpose flour", + "vidalia onion", + "Tabasco Pepper Sauce", + "canola oil" + ] + }, + { + "id": 40615, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "fresh cilantro", + "vegetable broth", + "garlic cloves", + "pepper", + "cooking oil", + "salsa", + "onions", + "black beans", + "corn kernels", + "salt", + "red bell pepper", + "whole wheat pasta", + "shredded cheddar cheese", + "chili powder", + "tortilla chips", + "ground cumin" + ] + }, + { + "id": 7102, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "white wine", + "garlic", + "lobster", + "salt", + "parsley", + "spaghetti" + ] + }, + { + "id": 39311, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "olive oil", + "wonton wrappers", + "fresh oregano", + "lump crab meat", + "finely chopped onion", + "crushed red pepper", + "red bell pepper", + "no-salt-added diced tomatoes", + "panko", + "part-skim ricotta cheese", + "garlic cloves", + "clams", + "crushed tomatoes", + "chopped fresh chives", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 4274, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "cooking spray", + "parmigiano-reggiano cheese", + "parmigiano reggiano cheese", + "frozen peas", + "water", + "large eggs", + "canola oil", + "arborio rice", + "finely chopped onion", + "salt" + ] + }, + { + "id": 49521, + "cuisine": "cajun_creole", + "ingredients": [ + "colby cheese", + "diced tomatoes", + "ground white pepper", + "dried oregano", + "tomato sauce", + "vegetable oil", + "long-grain rice", + "onions", + "green bell pepper", + "ground black pepper", + "salt", + "ground beef", + "dried basil", + "garlic", + "ground cayenne pepper", + "cabbage" + ] + }, + { + "id": 34382, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "salt", + "plum tomatoes", + "green bell pepper", + "sherry wine vinegar", + "garlic cloves", + "ground black pepper", + "spaghetti squash", + "dried oregano", + "pitted kalamata olives", + "purple onion", + "cucumber" + ] + }, + { + "id": 39492, + "cuisine": "southern_us", + "ingredients": [ + "evaporated milk", + "salt", + "melted butter", + "vegetable oil", + "macaroni", + "milk", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 44466, + "cuisine": "french", + "ingredients": [ + "chicken stock", + "chicken parts", + "salt", + "flat leaf parsley", + "olive oil", + "shallots", + "fresh lemon juice", + "leeks", + "non-fat sour cream", + "carrots", + "pepper", + "dry white wine", + "small red potato", + "bay leaf" + ] + }, + { + "id": 19548, + "cuisine": "japanese", + "ingredients": [ + "water", + "salt", + "chiles", + "yellow lentils", + "ground turmeric", + "fresh spinach", + "vegetable oil", + "mustard seeds", + "shredded coconut", + "black gram", + "cumin" + ] + }, + { + "id": 34126, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "chicken fingers", + "squirt", + "jalapeno chilies", + "granulated garlic", + "lime", + "canola oil", + "white pepper", + "salt" + ] + }, + { + "id": 3173, + "cuisine": "indian", + "ingredients": [ + "chicken broth", + "potatoes", + "curry", + "lemon juice", + "onions", + "ground cumin", + "ground cloves", + "apples", + "cardamom", + "coconut milk", + "ground turmeric", + "ground cinnamon", + "chile pepper", + "ground coriander", + "carrots", + "chopped cilantro fresh", + "fresh ginger", + "garlic", + "tamarind concentrate", + "ghee", + "dhal" + ] + }, + { + "id": 36278, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "okra", + "diced tomatoes", + "water", + "red kidney beans", + "jambalaya mix" + ] + }, + { + "id": 47966, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "chicken breasts", + "oil", + "soy sauce", + "potatoes", + "salt", + "red chili powder", + "tandoori spices", + "crushed red pepper", + "eggs", + "bread crumbs", + "lemon", + "coriander" + ] + }, + { + "id": 25480, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "mustard greens", + "salt", + "red wine vinegar", + "crushed red pepper", + "large garlic cloves" + ] + }, + { + "id": 1490, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "garlic powder", + "beef steak", + "refried beans", + "onions", + "water", + "salt", + "olive oil", + "long grain white rice" + ] + }, + { + "id": 39961, + "cuisine": "italian", + "ingredients": [ + "wheat bran", + "cooking spray", + "almond extract", + "large eggs", + "vegetable oil", + "all-purpose flour", + "sliced almonds", + "baking powder", + "vanilla extract", + "sugar", + "dried apricot", + "quick-cooking oats", + "flaxseed" + ] + }, + { + "id": 34144, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "milk", + "sweetened coconut flakes", + "cake batter", + "coconut extract", + "baking powder", + "salt", + "powdered sugar", + "butter", + "all-purpose flour", + "roasted cashews", + "granulated sugar", + "vanilla", + "glaze" + ] + }, + { + "id": 15339, + "cuisine": "chinese", + "ingredients": [ + "garlic", + "soy sauce", + "chinese five-spice powder", + "egg whites", + "chicken wings", + "scallions" + ] + }, + { + "id": 38611, + "cuisine": "italian", + "ingredients": [ + "water", + "lemon", + "olive oil spray", + "olive oil", + "garlic", + "bread crumbs", + "egg whites", + "fat-free chicken broth", + "white wine", + "pecorino romano cheese", + "artichokes" + ] + }, + { + "id": 28066, + "cuisine": "chinese", + "ingredients": [ + "fat free less sodium chicken broth", + "green onions", + "salt", + "large eggs", + "vegetable oil", + "long-grain rice", + "low sodium soy sauce", + "peeled fresh ginger", + "green peas", + "medium shrimp", + "ground black pepper", + "rice wine", + "dark sesame oil" + ] + }, + { + "id": 13118, + "cuisine": "mexican", + "ingredients": [ + "lime", + "tortillas", + "salt", + "avocado", + "corn kernels", + "cilantro stems", + "cilantro leaves", + "romaine lettuce", + "cherry tomatoes", + "apple cider vinegar", + "greek style plain yogurt", + "canned black beans", + "olive oil", + "garlic" + ] + }, + { + "id": 42904, + "cuisine": "mexican", + "ingredients": [ + "dried black beans", + "carrots", + "chopped cilantro fresh", + "chicken stock", + "garlic cloves", + "onions", + "water", + "thyme sprigs", + "ground cumin", + "bacon slices", + "bay leaf" + ] + }, + { + "id": 14517, + "cuisine": "indian", + "ingredients": [ + "clove", + "lime", + "butter", + "cumin seed", + "basmati rice", + "black pepper", + "fresh ginger root", + "salt", + "coconut milk", + "chicken stock", + "coriander seeds", + "lamb shoulder", + "oil", + "ground turmeric", + "fresh coriander", + "ground black pepper", + "cardamom pods", + "onions" + ] + }, + { + "id": 13326, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cutlet", + "black pepper", + "parmigiano reggiano cheese", + "flat leaf parsley", + "water", + "large eggs", + "unsalted butter", + "salt" + ] + }, + { + "id": 38141, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "butter", + "sweet onion", + "ground pork sausage", + "milk", + "poppy seeds", + "large eggs", + "baking mix" + ] + }, + { + "id": 35532, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "ground black pepper", + "purple onion", + "corn tortillas", + "green cabbage", + "peanuts", + "light beer", + "all-purpose flour", + "cream", + "salsa verde", + "baking powder", + "corn starch", + "avocado", + "lime", + "radishes", + "cilantro leaves", + "serrano chile" + ] + }, + { + "id": 22265, + "cuisine": "greek", + "ingredients": [ + "eggs", + "macaroni", + "salt", + "ground cinnamon", + "milk", + "lean ground beef", + "onions", + "white bread", + "tomato sauce", + "grated parmesan cheese", + "all-purpose flour", + "melted butter", + "ground black pepper", + "butter" + ] + }, + { + "id": 25902, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "cayenne pepper", + "ground lamb", + "cilantro", + "fresh mint", + "ground cumin", + "paprika", + "ground coriander", + "ginger paste", + "chile paste", + "salt", + "onions" + ] + }, + { + "id": 12424, + "cuisine": "british", + "ingredients": [ + "chestnut mushrooms", + "onions", + "olive oil", + "garlic cloves", + "medium eggs", + "fillet steaks", + "puff pastry", + "prosciutto", + "fresh parsley" + ] + }, + { + "id": 2563, + "cuisine": "chinese", + "ingredients": [ + "water", + "garlic", + "juice", + "eggs", + "cooking oil", + "rice vinegar", + "chili garlic paste", + "chicken broth", + "fresh ginger", + "tamari soy sauce", + "corn starch", + "brown sugar", + "boneless skinless chicken breasts", + "zest" + ] + }, + { + "id": 2247, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vanilla extract", + "sugar", + "salt", + "large eggs" + ] + }, + { + "id": 44996, + "cuisine": "mexican", + "ingredients": [ + "fresh raspberries", + "honeydew melon", + "sugar", + "fresh lime juice", + "strawberries" + ] + }, + { + "id": 22318, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "whipping cream", + "sugar", + "mint sprigs", + "berries", + "large eggs", + "vanilla extract", + "pure maple syrup", + "raw sugar", + "cream cheese" + ] + }, + { + "id": 8848, + "cuisine": "spanish", + "ingredients": [ + "celery salt", + "olive oil", + "crushed red pepper", + "spaghetti", + "extra lean ground beef", + "marinara sauce", + "pimento stuffed olives", + "saffron threads", + "minced garlic", + "dry sherry", + "fresh parsley", + "capers", + "ground black pepper", + "chopped onion", + "dried oregano" + ] + }, + { + "id": 27763, + "cuisine": "chinese", + "ingredients": [ + "chili flakes", + "light soy sauce", + "peanut oil", + "ground cumin", + "red chili peppers", + "sesame oil", + "short rib", + "dark soy sauce", + "Shaoxing wine", + "scallions", + "potato starch", + "minced ginger", + "salt", + "chopped garlic" + ] + }, + { + "id": 10829, + "cuisine": "italian", + "ingredients": [ + "vanilla extract", + "baking powder", + "white sugar", + "eggs", + "all-purpose flour", + "butter" + ] + }, + { + "id": 47609, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "ground black pepper", + "spring onions", + "salt", + "minced pork", + "strong white bread flour", + "lime juice", + "lemon zest", + "vegetable oil", + "garlic cloves", + "chili flakes", + "crab", + "prawns", + "sesame oil", + "pak choi", + "boiling water", + "sugar", + "fresh ginger root", + "fine salt", + "chili oil", + "oyster sauce" + ] + }, + { + "id": 21191, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "salt", + "white onion", + "jalapeno chilies", + "plum tomatoes", + "granulated sugar", + "juice", + "lime juice", + "garlic", + "ground cumin" + ] + }, + { + "id": 45863, + "cuisine": "mexican", + "ingredients": [ + "Old El Paso™ taco seasoning mix", + "ground beef", + "Pillsbury™ Refrigerated Crescent Dinner Rolls", + "jack", + "mexicorn" + ] + }, + { + "id": 18340, + "cuisine": "thai", + "ingredients": [ + "water chestnuts", + "vegetable broth", + "beansprouts", + "shiitake", + "red pepper flakes", + "scallions", + "bamboo shoots", + "low sodium soy sauce", + "napa cabbage", + "garlic", + "bok choy", + "fresh ginger root", + "cilantro", + "red bell pepper", + "snow peas" + ] + }, + { + "id": 43731, + "cuisine": "southern_us", + "ingredients": [ + "fresh basil", + "large eggs", + "all-purpose flour", + "corn kernels", + "buttermilk", + "yellow corn meal", + "unsalted butter", + "salt", + "sugar", + "baking powder" + ] + }, + { + "id": 29758, + "cuisine": "italian", + "ingredients": [ + "durum wheat flour", + "semolina flour" + ] + }, + { + "id": 46799, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "corn husks", + "butter" + ] + }, + { + "id": 22350, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dry white wine", + "boneless skinless chicken breast halves", + "penne", + "grated parmesan cheese", + "asiago", + "tomato sauce", + "italian style stewed tomatoes", + "large garlic cloves", + "dried oregano", + "mozzarella cheese", + "bay leaves", + "onions" + ] + }, + { + "id": 42104, + "cuisine": "greek", + "ingredients": [ + "burger buns", + "olive oil", + "garlic", + "coriander", + "ground lamb", + "frozen spinach", + "dried basil", + "Italian parsley leaves", + "tzatziki", + "dried oregano", + "kosher salt", + "dried mint flakes", + "yellow onion", + "marjoram", + "tomatoes", + "dried thyme", + "cracked black pepper", + "feta cheese crumbles", + "cumin" + ] + }, + { + "id": 19799, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "salt", + "medium shrimp", + "ground cumin", + "unsweetened coconut milk", + "garlic", + "tart apples", + "chopped cilantro fresh", + "fresh ginger", + "ground cayenne pepper", + "frozen peas", + "curry powder", + "ground coriander", + "onions" + ] + }, + { + "id": 30070, + "cuisine": "italian", + "ingredients": [ + "water", + "condensed cream of mushroom soup", + "chopped onion", + "mushrooms", + "spaghetti, cook and drain", + "ground beef", + "grated parmesan cheese", + "diced tomatoes", + "ripe olives", + "shredded cheddar cheese", + "butter", + "green pepper", + "dried oregano" + ] + }, + { + "id": 5967, + "cuisine": "mexican", + "ingredients": [ + "ricotta cheese", + "cream cheese", + "garlic powder", + "salt", + "smoked paprika", + "Old El Paso Enchilada Sauce", + "Old El Paso Green Chiles", + "shredded mozzarella cheese", + "large eggs", + "jumbo pasta shells" + ] + }, + { + "id": 16935, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "refried beans", + "grating cheese", + "sauce", + "ground beef", + "tomato sauce", + "guacamole", + "salt", + "green chilies", + "oregano", + "cheddar cheese", + "flour tortillas", + "garlic", + "rice", + "onions", + "pepper", + "chili powder", + "cilantro leaves", + "sour cream", + "cumin" + ] + }, + { + "id": 4498, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "smoked paprika", + "cayenne pepper", + "cumin", + "salt", + "oregano", + "black pepper", + "corn starch" + ] + }, + { + "id": 24420, + "cuisine": "italian", + "ingredients": [ + "garlic", + "olive oil", + "parsley", + "pinenuts", + "fresh basil leaves" + ] + }, + { + "id": 2032, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "oxtails", + "chinese cinnamon", + "light brown sugar", + "palm sugar", + "meat bones", + "ground white pepper", + "fresh ginger", + "star anise", + "cardamom pods", + "clove", + "beef", + "yellow onion" + ] + }, + { + "id": 11994, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "salt", + "peanuts", + "toasted sesame seeds", + "pepper", + "rice vinegar", + "green onions", + "canola oil" + ] + }, + { + "id": 23718, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "butter", + "garlic", + "grated parmesan cheese", + "lemon", + "salt", + "basil leaves", + "heavy cream", + "shrimp", + "arborio rice", + "dry white wine", + "vegetable broth", + "onions" + ] + }, + { + "id": 18525, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "onions", + "eggs", + "pink salmon", + "salt", + "ground black pepper", + "cornmeal" + ] + }, + { + "id": 13878, + "cuisine": "italian", + "ingredients": [ + "chopped fresh chives", + "chopped cilantro fresh", + "cream cheese", + "pesto" + ] + }, + { + "id": 7200, + "cuisine": "mexican", + "ingredients": [ + "chili", + "bay leaves", + "stewed tomatoes", + "ground coriander", + "lard", + "masa harina", + "clove", + "corn husks", + "Mexican oregano", + "pork stock", + "cinnamon sticks", + "toasted sesame seeds", + "honey", + "baking powder", + "garlic", + "carrots", + "onions", + "ground cumin", + "tomatoes", + "jalapeno chilies", + "vegetable oil", + "salt", + "dried guajillo chiles", + "pork butt" + ] + }, + { + "id": 34961, + "cuisine": "italian", + "ingredients": [ + "fresh lemon juice", + "heavy cream", + "whole milk", + "salt" + ] + }, + { + "id": 40939, + "cuisine": "italian", + "ingredients": [ + "egg yolks", + "garlic", + "refrigerated crescent rolls", + "grated parmesan cheese", + "oil" + ] + }, + { + "id": 27811, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "ground pepper", + "star anise", + "chinese five-spice powder", + "tomato paste", + "minced garlic", + "pineapple", + "bean sauce", + "rib", + "ketchup", + "hoisin sauce", + "salt", + "juice", + "tomato purée", + "honey", + "paprika", + "peanut oil" + ] + }, + { + "id": 26991, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "flat leaf parsley", + "capers", + "basil leaves", + "fresh lemon juice", + "canola oil", + "ground black pepper", + "purple onion", + "plum tomatoes", + "fillet red snapper", + "red pepper flakes", + "black salt" + ] + }, + { + "id": 16717, + "cuisine": "british", + "ingredients": [ + "tomato paste", + "lower sodium beef broth", + "fresh thyme leaves", + "all-purpose flour", + "cremini mushrooms", + "ground black pepper", + "paprika", + "carrots", + "mashed potatoes", + "sharp white cheddar cheese", + "butter", + "chopped onion", + "extra lean ground beef", + "cooking spray", + "salt", + "fresh parsley" + ] + }, + { + "id": 26135, + "cuisine": "irish", + "ingredients": [ + "eggs", + "candied peel", + "pumpkin pie spice", + "light brown sugar", + "golden raisins", + "porter", + "plain flour", + "baking powder", + "salt", + "ground nutmeg", + "butter" + ] + }, + { + "id": 14206, + "cuisine": "filipino", + "ingredients": [ + "lemongrass", + "garlic", + "bay leaves", + "chicken", + "leaves", + "yellow onion", + "whole peppercorn", + "coarse sea salt" + ] + }, + { + "id": 30858, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "green onions", + "pepperoni", + "olive oil", + "peeled shrimp", + "garlic cloves", + "water", + "sherry wine vinegar", + "long-grain rice", + "bell pepper", + "salt", + "dried oregano" + ] + }, + { + "id": 16050, + "cuisine": "korean", + "ingredients": [ + "eggs", + "sesame oil", + "onions", + "ground black pepper", + "all-purpose flour", + "garlic chives", + "salt", + "enokitake", + "carrots" + ] + }, + { + "id": 6657, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "diced tomatoes", + "tomato sauce", + "lean ground beef", + "onions", + "green bell pepper", + "ranch dressing", + "pinto beans", + "taco seasoning mix", + "vegetable oil" + ] + }, + { + "id": 3466, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "scallions", + "grits", + "shredded cheddar cheese", + "garlic", + "medium shrimp", + "pepper", + "crushed red pepper flakes", + "lemon juice", + "water", + "salt", + "thick-cut bacon" + ] + }, + { + "id": 2199, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "garlic cloves", + "chickpea flour", + "salt", + "onions", + "ginger", + "dried red chile peppers", + "curry leaves", + "green chilies", + "dhal" + ] + }, + { + "id": 49313, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "lime juice", + "brown mustard seeds", + "salt", + "serrano chile", + "fresh curry leaves", + "garam masala", + "cauliflower florets", + "bay leaf", + "lite coconut milk", + "fresh ginger", + "yukon gold potatoes", + "cumin seed", + "ground turmeric", + "red lentils", + "water", + "butternut squash", + "garlic", + "onions" + ] + }, + { + "id": 28901, + "cuisine": "italian", + "ingredients": [ + "green onions", + "bay scallops", + "champagne", + "arborio rice", + "butter", + "grated parmesan cheese", + "low salt chicken broth" + ] + }, + { + "id": 39890, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "tomatillos", + "salt", + "avocado", + "chipotle peppers" + ] + }, + { + "id": 20400, + "cuisine": "indian", + "ingredients": [ + "green mango", + "red chili peppers", + "onions", + "curry leaves", + "ginger", + "grated coconut", + "cashew nuts" + ] + }, + { + "id": 11466, + "cuisine": "italian", + "ingredients": [ + "water", + "red pepper flakes", + "onions", + "grated parmesan cheese", + "coarse sea salt", + "olive oil", + "semi pearled farro", + "grape tomatoes", + "basil leaves", + "garlic" + ] + }, + { + "id": 11375, + "cuisine": "southern_us", + "ingredients": [ + "vanilla", + "sugar", + "all-purpose flour", + "eggs", + "whipping cream", + "butter" + ] + }, + { + "id": 45450, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "ginger", + "whole peppercorn", + "water", + "green beans", + "cider vinegar", + "garlic cloves", + "soy sauce", + "dark sesame oil" + ] + }, + { + "id": 14574, + "cuisine": "british", + "ingredients": [ + "eggs", + "frozen pastry puff sheets", + "beef tenderloin steaks", + "milk", + "salt", + "pepper", + "butter", + "liver pate", + "fresh mushrooms" + ] + }, + { + "id": 37962, + "cuisine": "mexican", + "ingredients": [ + "zucchini", + "epazote", + "garlic cloves", + "water", + "vegetable oil", + "cumin seed", + "cactus paddles", + "large eggs", + "fine sea salt", + "dried guajillo chiles", + "white onion", + "seeds", + "pumpkin seeds", + "ancho chile pepper" + ] + }, + { + "id": 34726, + "cuisine": "mexican", + "ingredients": [ + "blue crabs", + "olive oil", + "corn starch", + "white onion", + "salt", + "chipotle chile", + "epazote", + "corn tortillas", + "tomatoes", + "water", + "garlic cloves" + ] + }, + { + "id": 16905, + "cuisine": "filipino", + "ingredients": [ + "bay leaves", + "all-purpose flour", + "chicken broth", + "vegetable oil", + "unsweetened coconut milk", + "apple cider vinegar", + "pork meat", + "dark soy sauce", + "garlic" + ] + }, + { + "id": 42345, + "cuisine": "british", + "ingredients": [ + "vanilla beans", + "raspberry preserves", + "red currant jelly", + "cognac", + "water", + "semisweet chocolate", + "sponge cake", + "fresh raspberries", + "sugar", + "large egg yolks", + "whole milk", + "red currants", + "corn starch", + "raspberries", + "instant espresso powder", + "red grape", + "whipping cream" + ] + }, + { + "id": 1574, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "extra-virgin olive oil", + "rocket leaves", + "lemon", + "freshly ground pepper", + "pecorino cheese", + "sea salt", + "asparagus", + "white wine vinegar" + ] + }, + { + "id": 11623, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "gyoza skins", + "green onions", + "chinese cabbage", + "corn starch", + "lean ground pork", + "large egg whites", + "chile puree", + "shaoxing", + "canola oil", + "sugar", + "water", + "ground chicken breast", + "dark sesame oil", + "chinese black vinegar", + "low sodium soy sauce", + "white pepper", + "peeled fresh ginger", + "dried shiitake mushrooms", + "oyster sauce" + ] + }, + { + "id": 13185, + "cuisine": "italian", + "ingredients": [ + "lean ground beef", + "shredded mozzarella cheese", + "garlic powder", + "salt", + "seasoned bread crumbs", + "cracked black pepper", + "onions", + "marinara sauce", + "hoagie rolls" + ] + }, + { + "id": 39248, + "cuisine": "french", + "ingredients": [ + "honey", + "flour", + "crème fraîche", + "pure vanilla extract", + "unsalted butter", + "all purpose unbleached flour", + "apricots", + "almonds", + "almond extract", + "confectioners sugar", + "sugar", + "large eggs", + "fine sea salt" + ] + }, + { + "id": 27017, + "cuisine": "italian", + "ingredients": [ + "garlic", + "olive oil", + "baked pizza crust", + "salt", + "shredded Italian cheese", + "sliced green olives" + ] + }, + { + "id": 21617, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "butter", + "honey", + "baking powder", + "salt", + "sugar", + "large eggs", + "buttermilk", + "baking soda", + "vegetable oil", + "cornmeal" + ] + }, + { + "id": 45209, + "cuisine": "mexican", + "ingredients": [ + "cooked brown rice", + "corn", + "purple onion", + "romaine lettuce", + "water", + "Haas avocados", + "grape tomatoes", + "kosher salt", + "honey", + "chopped cilantro", + "chiles", + "lime juice", + "nonfat plain greek yogurt" + ] + }, + { + "id": 28165, + "cuisine": "indian", + "ingredients": [ + "flour", + "grated coconut", + "rock salt", + "ground cardamom", + "water", + "jaggery" + ] + }, + { + "id": 16370, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "corn oil", + "all-purpose flour", + "chunky salsa", + "milk", + "cheese", + "corn flour", + "sugar", + "corn chips", + "taco seasoning", + "cooking spray", + "salt", + "ground beef" + ] + }, + { + "id": 37134, + "cuisine": "vietnamese", + "ingredients": [ + "mint leaves", + "seasoned rice wine vinegar", + "cucumber", + "honey", + "boneless skinless chicken breasts", + "peanut oil", + "chile sauce", + "romaine lettuce", + "peeled fresh ginger", + "roasted peanuts", + "red bell pepper", + "hoisin sauce", + "salt", + "garlic cloves", + "rice paper" + ] + }, + { + "id": 44914, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "butter", + "arugula", + "water", + "vegetable oil", + "all-purpose flour", + "milk", + "fresh mozzarella", + "freshly ground pepper", + "kosher salt", + "baking powder", + "extra-virgin olive oil" + ] + }, + { + "id": 16431, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "onions", + "pepper", + "large garlic cloves", + "olive oil", + "salt", + "potatoes" + ] + }, + { + "id": 47605, + "cuisine": "italian", + "ingredients": [ + "egg whites", + "lemon slices", + "branzino", + "garlic", + "parsley", + "rosemary", + "fine sea salt" + ] + }, + { + "id": 36400, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "whole wheat flour", + "salt", + "milk", + "baking powder", + "bread flour", + "sugar", + "ground black pepper", + "cornmeal", + "corn kernels", + "butter" + ] + }, + { + "id": 39344, + "cuisine": "italian", + "ingredients": [ + "spinach", + "fresh tarragon", + "zucchini", + "olive oil", + "large eggs" + ] + }, + { + "id": 38217, + "cuisine": "italian", + "ingredients": [ + "butter", + "shrimp", + "olive oil", + "garlic cloves", + "pepper", + "salt", + "fresh parsley", + "dry white wine", + "lemon juice" + ] + }, + { + "id": 9664, + "cuisine": "indian", + "ingredients": [ + "neutral oil", + "butter", + "salt", + "cumin", + "plain yogurt", + "paneer", + "onions", + "green chile", + "ginger", + "hot curry powder", + "spinach", + "garlic", + "chopped cilantro" + ] + }, + { + "id": 45426, + "cuisine": "jamaican", + "ingredients": [ + "jalapeno chilies", + "ground allspice", + "vegetable oil cooking spray", + "garlic", + "fresh lime juice", + "pork tenderloin", + "salt", + "mango chutney", + "gingerroot" + ] + }, + { + "id": 19339, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "salt", + "dried oregano", + "tomato sauce", + "mushrooms", + "onions", + "pepper", + "dry white wine", + "chicken thighs", + "olive oil", + "chopped parsley" + ] + }, + { + "id": 938, + "cuisine": "chinese", + "ingredients": [ + "cooked rice", + "black pepper", + "salt", + "sugar", + "large eggs", + "oil", + "dark soy sauce", + "lean bacon", + "scallions", + "soy sauce", + "Shaoxing wine", + "onions" + ] + }, + { + "id": 28223, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "garlic", + "red bell pepper", + "coconut sugar", + "cilantro", + "scallions", + "jasmine rice", + "ginger", + "shrimp", + "unsweetened coconut milk", + "lime", + "red curry paste" + ] + }, + { + "id": 45513, + "cuisine": "japanese", + "ingredients": [ + "japanese rice", + "dried bonito flakes", + "soy sauce" + ] + }, + { + "id": 24853, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "garlic", + "ground allspice", + "roasted tomatoes", + "chipotle chile", + "pepper jack", + "yellow onion", + "sour cream", + "ground cumin", + "chicken broth", + "black-eyed peas", + "salt", + "mexican chorizo", + "oregano", + "black pepper", + "vegetable oil", + "tortilla chips", + "chopped cilantro" + ] + }, + { + "id": 41750, + "cuisine": "irish", + "ingredients": [ + "small red potato", + "cabbage", + "carrots", + "beef brisket" + ] + }, + { + "id": 27367, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "water", + "spring onions", + "glutinous rice", + "shiitake", + "sugar", + "light soy sauce", + "dried shrimp", + "eggs", + "dried scallops", + "chinese sausage" + ] + }, + { + "id": 29196, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper", + "cherry tomatoes", + "tilapia", + "olive oil", + "garlic cloves", + "kalamata", + "fresh parsley" + ] + }, + { + "id": 34241, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "heavy cream", + "onions", + "eggs", + "ground nutmeg", + "penne pasta", + "pancetta", + "olive oil", + "salt", + "black pepper", + "grated parmesan cheese", + "flat leaf parsley" + ] + }, + { + "id": 43358, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "frozen whole kernel corn", + "diced tomatoes", + "okra", + "cooked rice", + "dried thyme", + "cajun seasoning", + "chopped onion", + "pepper", + "chopped green bell pepper", + "chopped celery", + "garlic cloves", + "chicken broth", + "cooked turkey", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 12433, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "nonfat yogurt", + "lemon", + "olive oil", + "mint leaves", + "large shrimp", + "chile paste", + "lemon zest", + "cucumber", + "fresh chives", + "fresh ginger", + "sesame oil", + "sliced green onions" + ] + }, + { + "id": 18701, + "cuisine": "filipino", + "ingredients": [ + "water", + "balsamic vinegar", + "all-purpose flour", + "chopped parsley", + "tomato paste", + "olive oil", + "garlic", + "yellow onion", + "boiling potatoes", + "dried thyme", + "dry red wine", + "beef broth", + "bay leaf", + "sugar", + "ground black pepper", + "salt", + "carrots", + "chuck" + ] + }, + { + "id": 13503, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "turkey kielbasa", + "yellow onion", + "no-salt-added diced tomatoes", + "bay leaves", + "salt", + "ground black pepper", + "crushed red pepper", + "organic vegetable broth", + "black-eyed peas", + "mustard greens", + "peanut oil" + ] + }, + { + "id": 9882, + "cuisine": "filipino", + "ingredients": [ + "ground pepper", + "garlic", + "frozen peas", + "water", + "chicken breasts", + "all-purpose flour", + "sugar", + "potatoes", + "salt", + "evaporated milk", + "butter", + "onions" + ] + }, + { + "id": 28547, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "chopped cilantro fresh", + "white onion", + "jalapeno chilies", + "knorr garlic minicub", + "water", + "tomatillos" + ] + }, + { + "id": 48163, + "cuisine": "spanish", + "ingredients": [ + "potatoes", + "olive oil", + "salt", + "eggs", + "cooking spray", + "ground black pepper", + "onions" + ] + }, + { + "id": 26821, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "Tabasco Pepper Sauce", + "creole seasoning", + "andouille sausage", + "green onions", + "red pepper", + "onions", + "green bell pepper", + "flour", + "vegetable oil", + "cooked white rice", + "minced garlic", + "boneless skinless chicken breasts", + "worcestershire sauce" + ] + }, + { + "id": 1402, + "cuisine": "mexican", + "ingredients": [ + "granulated sugar", + "ground cayenne pepper", + "lime juice", + "paprika", + "mayonaise", + "butter", + "popped popcorn", + "salt" + ] + }, + { + "id": 36638, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "chili powder", + "white wine vinegar", + "coleslaw", + "tomato paste", + "hot dogs", + "hot dog bun", + "yellow onion", + "ground black pepper", + "lean ground beef", + "salt", + "tomato sauce", + "bay leaves", + "yellow mustard", + "garlic salt" + ] + }, + { + "id": 33562, + "cuisine": "italian", + "ingredients": [ + "fire roasted diced tomatoes", + "coarse salt", + "shredded mozzarella cheese", + "thin spaghetti", + "flour", + "extra-virgin olive oil", + "sugar", + "basil", + "Progresso Artichoke Hearts", + "chicken breasts", + "broccoli" + ] + }, + { + "id": 18806, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "paprika", + "garlic cloves", + "ground cumin", + "coarse salt", + "cilantro leaves", + "carrots", + "raisins", + "shelled pistachios", + "ground cayenne pepper", + "ground pepper", + "extra-virgin olive oil", + "lemon juice" + ] + }, + { + "id": 13545, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "sugar", + "Dutch-processed cocoa powder", + "1% low-fat milk", + "whipped cream", + "bittersweet chocolate" + ] + }, + { + "id": 20563, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "baking soda", + "salt", + "ground cinnamon", + "Truvía® Baking Blend", + "vegetable oil", + "pears", + "tea bags", + "baking powder", + "all-purpose flour", + "eggs", + "milk", + "vanilla extract" + ] + }, + { + "id": 16964, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "water chestnuts", + "scallions", + "fresh basil", + "wonton wrappers", + "low sodium soy sauce", + "sesame oil", + "medium shrimp", + "fresh ginger", + "cilantro leaves" + ] + }, + { + "id": 26848, + "cuisine": "southern_us", + "ingredients": [ + "white pepper", + "jalapeno chilies", + "garlic", + "purple onion", + "water", + "green onions", + "sweet pepper", + "garlic salt", + "shredded cheddar cheese", + "quickcooking grits", + "white wine vinegar", + "margarine", + "milk", + "parsley", + "beaten eggs" + ] + }, + { + "id": 16606, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "lime juice", + "salt", + "cilantro", + "jalapeno chilies", + "strawberries" + ] + }, + { + "id": 17005, + "cuisine": "greek", + "ingredients": [ + "plain yogurt", + "cayenne pepper", + "roasted red peppers", + "feta cheese", + "garlic" + ] + }, + { + "id": 12004, + "cuisine": "italian", + "ingredients": [ + "egg substitute", + "1% low-fat milk", + "garlic cloves", + "bacon slices", + "salt", + "black pepper", + "linguine", + "chopped onion", + "grated parmesan cheese", + "crushed red pepper" + ] + }, + { + "id": 28376, + "cuisine": "british", + "ingredients": [ + "duxelles", + "foie gras", + "flour for dusting", + "large eggs", + "beef fillet", + "olive oil", + "coarse salt", + "frozen pastry puff sheets", + "freshly ground pepper" + ] + }, + { + "id": 9034, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "sea salt", + "olive oil", + "freshly ground pepper", + "balsamic vinegar" + ] + }, + { + "id": 18549, + "cuisine": "italian", + "ingredients": [ + "eggs", + "garlic powder", + "salt", + "italian seasoning", + "bread crumbs", + "extra-virgin olive oil", + "ground beef", + "french baguette", + "garlic", + "fresh parsley", + "pasta sauce", + "grated parmesan cheese", + "provolone cheese" + ] + }, + { + "id": 38812, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "salt", + "parmigiano reggiano cheese", + "freshly ground pepper", + "unsalted butter", + "grated nutmeg", + "heavy cream", + "tagliatelle" + ] + }, + { + "id": 35017, + "cuisine": "chinese", + "ingredients": [ + "cayenne", + "garlic", + "soy sauce", + "chicken breast halves", + "corn starch", + "sugar", + "green onions", + "white wine vinegar", + "water", + "vegetable oil" + ] + }, + { + "id": 8868, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "butter", + "flour tortillas", + "bananas", + "spiced rum", + "vegetable oil" + ] + }, + { + "id": 34472, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "lemon", + "fine sea salt", + "crushed red pepper flakes", + "tomatoes", + "garlic" + ] + }, + { + "id": 21424, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "croutons", + "purple onion", + "salad", + "pepperoncini", + "black olives", + "plum tomatoes" + ] + }, + { + "id": 42125, + "cuisine": "cajun_creole", + "ingredients": [ + "zucchini", + "butter", + "shrimp", + "green bell pepper", + "green onions", + "dry bread crumbs", + "onions", + "black pepper", + "ground red pepper", + "garlic cloves", + "celery ribs", + "large eggs", + "salt", + "fresh parsley" + ] + }, + { + "id": 45261, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "baking powder", + "salt", + "onions", + "pepper", + "butter", + "thyme", + "sugar", + "chicken breast halves", + "all-purpose flour", + "frozen peas", + "ground black pepper", + "heavy cream", + "fresh parsley" + ] + }, + { + "id": 14882, + "cuisine": "southern_us", + "ingredients": [ + "lime zest", + "strawberries", + "kiwifruit", + "chopped fresh mint", + "sugar", + "fresh lime juice", + "whipping cream", + "fresh pineapple" + ] + }, + { + "id": 44413, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "diced tomatoes", + "garlic cloves", + "sugar", + "ground red pepper", + "chickpeas", + "ground turmeric", + "tomato sauce", + "peeled fresh ginger", + "light coconut milk", + "chopped cilantro fresh", + "garam masala", + "brown mustard seeds", + "chopped onion", + "canola oil" + ] + }, + { + "id": 34067, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "mezcal", + "tequila", + "simple syrup", + "watermelon", + "fresh lime juice" + ] + }, + { + "id": 21264, + "cuisine": "italian", + "ingredients": [ + "granulated sugar", + "almond paste", + "large egg whites", + "vanilla extract", + "pinenuts", + "almond extract", + "confectioners sugar", + "almond flour", + "salt" + ] + }, + { + "id": 22, + "cuisine": "mexican", + "ingredients": [ + "canola", + "jalapeno chilies", + "salsa", + "onions", + "cider vinegar", + "flour tortillas", + "chili powder", + "sour cream", + "ground cumin", + "avocado", + "olive oil", + "boneless skinless chicken breasts", + "garlic cloves", + "iceberg lettuce", + "lime juice", + "bell pepper", + "salt", + "chopped cilantro" + ] + }, + { + "id": 43559, + "cuisine": "italian", + "ingredients": [ + "celtic salt", + "country white bread", + "greens", + "minced garlic", + "extra-virgin olive oil" + ] + }, + { + "id": 44972, + "cuisine": "korean", + "ingredients": [ + "chrysanthemum", + "green onions", + "jelly", + "onions", + "pepper flakes", + "sesame seeds", + "red pepper", + "cucumber", + "lettuce", + "honey", + "sesame oil", + "carrots", + "sugar", + "leaves", + "garlic", + "chinese chives" + ] + }, + { + "id": 40207, + "cuisine": "greek", + "ingredients": [ + "salad greens", + "green onions", + "bread dough", + "black pepper", + "feta cheese", + "salt", + "dried basil", + "extra-virgin olive oil", + "cider vinegar", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 27783, + "cuisine": "italian", + "ingredients": [ + "watercress", + "freshly ground pepper", + "purple onion", + "roast beef", + "extra-virgin olive oil", + "fresh lemon juice", + "red cabbage", + "salt" + ] + }, + { + "id": 19308, + "cuisine": "french", + "ingredients": [ + "water", + "all-purpose flour", + "confectioners sugar", + "butter", + "unsweetened chocolate", + "milk", + "cream cheese", + "boiling water", + "eggs", + "salt", + "vanilla instant pudding" + ] + }, + { + "id": 6094, + "cuisine": "irish", + "ingredients": [ + "yellow corn meal", + "light molasses", + "all purpose unbleached flour", + "whole wheat flour", + "baking powder", + "raisins", + "sugar", + "old-fashioned oats", + "buttermilk", + "baking soda", + "vegetable oil", + "salt" + ] + }, + { + "id": 16227, + "cuisine": "italian", + "ingredients": [ + "ricotta salata", + "grated lemon zest", + "fresh lemon juice", + "celery ribs", + "salt", + "garlic cloves", + "calamata olives", + "anchovy fillets", + "extra-virgin olive oil", + "freshly ground pepper" + ] + }, + { + "id": 47987, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "vinegar", + "salt", + "tuna", + "pepper", + "green onions", + "oil", + "salted anchovies", + "hard-boiled egg", + "green pepper", + "celery", + "radishes", + "basil", + "garlic cloves" + ] + }, + { + "id": 36356, + "cuisine": "greek", + "ingredients": [ + "melted butter", + "bread crumbs", + "ground black pepper", + "butter", + "fresh oregano", + "onions", + "plain flour", + "celery stick", + "olive oil", + "whole milk", + "salt", + "cinnamon sticks", + "pasta", + "tomato purée", + "water", + "fresh bay leaves", + "red wine", + "garlic cloves", + "dried oregano", + "nutmeg", + "ground cloves", + "chopped tomatoes", + "lean ground beef", + "free range egg", + "kefalotyri" + ] + }, + { + "id": 45202, + "cuisine": "moroccan", + "ingredients": [ + "garlic oil", + "halloumi cheese", + "merguez sausage", + "pepper" + ] + }, + { + "id": 1647, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "fresh parsley leaves", + "chicken", + "mushrooms", + "anchovy fillets", + "oregano", + "dry red wine", + "onions", + "fusilli", + "garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 34674, + "cuisine": "mexican", + "ingredients": [ + "ground pepper", + "raisins", + "corn tortillas", + "ground cinnamon", + "coarse salt", + "garlic cloves", + "plum tomatoes", + "semisweet chocolate", + "blanched almonds", + "onions", + "olive oil", + "red pepper flakes", + "ancho chile pepper" + ] + }, + { + "id": 2016, + "cuisine": "japanese", + "ingredients": [ + "water", + "ground turmeric", + "garlic paste", + "oil", + "red chili powder", + "salt", + "fish", + "pepper", + "jeera" + ] + }, + { + "id": 28542, + "cuisine": "greek", + "ingredients": [ + "potatoes", + "salt", + "ground beef", + "eggs", + "lemon wedge", + "oil", + "onions", + "ground black pepper", + "lemon", + "fresh lemon juice", + "ground cinnamon", + "dried mint flakes", + "dry bread crumbs", + "fresh parsley" + ] + }, + { + "id": 2949, + "cuisine": "korean", + "ingredients": [ + "ground ginger", + "spring onions", + "onions", + "fresh ginger", + "chinese cabbage", + "gochugaru", + "garlic cloves", + "sugar", + "sea salt" + ] + }, + { + "id": 27375, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "reduced-fat sour cream", + "iceberg lettuce", + "tomatoes", + "chicken breasts", + "salt", + "chicken", + "avocado", + "ground red pepper", + "garlic", + "canola oil", + "pepper", + "queso fresco", + "fresh lemon juice" + ] + }, + { + "id": 29936, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "szechwan peppercorns", + "garlic", + "scallions", + "cinnamon sticks", + "soy sauce", + "ginger", + "rice vinegar", + "sesame paste", + "sugar", + "crushed red pepper flakes", + "salt", + "oil", + "roasted sesame seeds", + "star anise", + "roasted peanuts", + "chicken leg quarters" + ] + }, + { + "id": 44039, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "cooking spray", + "part-skim mozzarella cheese", + "carrots", + "olive oil", + "cheese tortellini", + "zucchini" + ] + }, + { + "id": 40802, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "cream cheese", + "wonton wrappers", + "vegetable oil", + "shredded cheddar cheese", + "coarse salt" + ] + }, + { + "id": 17293, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "pork tenderloin", + "olive oil", + "onion flakes", + "dried thyme", + "cooking spray", + "seasoned bread crumbs", + "ground black pepper", + "salt" + ] + }, + { + "id": 37710, + "cuisine": "italian", + "ingredients": [ + "peeled tomatoes", + "1% low-fat milk", + "basil leaves", + "cream cheese, soften", + "low sodium tomato juice", + "salt", + "baguette", + "cracked black pepper", + "fresh basil leaves" + ] + }, + { + "id": 15584, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "dried bonito flakes", + "mirin", + "sake" + ] + }, + { + "id": 36736, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "white distilled vinegar", + "butter", + "shortening", + "half & half", + "peaches in heavy syrup", + "brown sugar", + "flour", + "salt", + "cold water", + "sugar", + "cinnamon" + ] + }, + { + "id": 34042, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "boneless rib eye steaks", + "extra-virgin olive oil", + "rosemary sprigs", + "salt", + "yukon gold potatoes" + ] + }, + { + "id": 20685, + "cuisine": "southern_us", + "ingredients": [ + "dried basil", + "garlic powder", + "paprika", + "oil", + "kosher salt", + "honey", + "onion powder", + "cayenne pepper", + "seasoning", + "large egg whites", + "baking powder", + "all-purpose flour", + "chicken", + "matzo meal", + "dried thyme", + "ground black pepper", + "salt", + "dried parsley" + ] + }, + { + "id": 30005, + "cuisine": "mexican", + "ingredients": [ + "brandy", + "lard", + "eggs", + "baking powder", + "sugar", + "salt", + "anise seed", + "flour" + ] + }, + { + "id": 23453, + "cuisine": "southern_us", + "ingredients": [ + "cauliflower", + "pepper", + "pimentos", + "paprika", + "corn starch", + "collard greens", + "olive oil", + "butter", + "garlic", + "pasta", + "milk", + "onion powder", + "almond meal", + "oregano", + "cheddar cheese", + "parmesan cheese", + "bacon", + "salt" + ] + }, + { + "id": 37148, + "cuisine": "british", + "ingredients": [ + "large egg whites", + "dry white wine", + "blue cheese", + "kosher salt", + "whole wheat flour", + "vegetable shortening", + "onions", + "dried thyme", + "unsalted butter", + "all purpose unbleached flour", + "skirt steak", + "olive oil", + "ice water", + "salt" + ] + }, + { + "id": 20778, + "cuisine": "french", + "ingredients": [ + "shiitake", + "chopped fresh thyme", + "garlic cloves", + "pepper", + "chicken breasts", + "salt", + "unsalted butter", + "whipping cream", + "champagne", + "olive oil", + "shallots", + "all-purpose flour" + ] + }, + { + "id": 23951, + "cuisine": "indian", + "ingredients": [ + "chile pepper", + "salt", + "ground cumin", + "butter", + "cumin seed", + "mustard greens", + "ground coriander", + "fresh spinach", + "garlic", + "ground turmeric" + ] + }, + { + "id": 40702, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "chicken broth", + "hot sauce", + "bacon", + "black-eyed peas", + "bay leaf" + ] + }, + { + "id": 11920, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "butter", + "lemon juice", + "ahi", + "baking powder", + "cilantro leaves", + "onions", + "eggs", + "taro", + "salt", + "corn starch", + "cream", + "shallots", + "garlic cloves" + ] + }, + { + "id": 21220, + "cuisine": "chinese", + "ingredients": [ + "dried scallops", + "salt", + "winter melon", + "peeled fresh ginger", + "ham", + "fresh ginger", + "whole chicken", + "water", + "scallions" + ] + }, + { + "id": 24260, + "cuisine": "italian", + "ingredients": [ + "cold water", + "flour", + "heavy cream", + "corn starch", + "cherry tomatoes", + "crimini mushrooms", + "all purpose seasoning", + "marsala wine", + "boneless skinless chicken breasts", + "garlic", + "fresh parsley", + "olive oil", + "butter", + "salt" + ] + }, + { + "id": 44447, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "salt", + "pork tenderloin", + "hoisin sauce", + "toasted sesame seeds", + "sugar", + "dry sherry" + ] + }, + { + "id": 44489, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "purple onion", + "pepper", + "garlic", + "fresh basil leaves", + "balsamic vinegar", + "salt", + "extra-virgin olive oil", + "red bell pepper" + ] + }, + { + "id": 43591, + "cuisine": "british", + "ingredients": [ + "ginger", + "hard-boiled egg", + "bay leaves", + "black peppercorns", + "allspice berries" + ] + }, + { + "id": 43612, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "salt", + "pinenuts", + "butter", + "grated parmesan cheese", + "shredded mozzarella cheese", + "pepper", + "heavy cream" + ] + }, + { + "id": 11193, + "cuisine": "thai", + "ingredients": [ + "ground black pepper", + "Flora Cuisine", + "mushrooms", + "onions", + "cod fillets", + "garlic", + "cherry tomatoes", + "Thai red curry paste" + ] + }, + { + "id": 17302, + "cuisine": "french", + "ingredients": [ + "pearl onions", + "lettuce leaves", + "unsalted butter", + "sea salt", + "ground black pepper", + "shallots", + "water", + "fresh peas", + "carrots" + ] + }, + { + "id": 40413, + "cuisine": "mexican", + "ingredients": [ + "cayenne", + "mayonaise", + "chicken drumsticks", + "chicken wings", + "chili powder", + "chipotle chile", + "white bread crumbs" + ] + }, + { + "id": 7711, + "cuisine": "french", + "ingredients": [ + "eggs", + "flour", + "strawberries", + "milk", + "vanilla", + "granulated sugar", + "salt", + "powdered sugar", + "butter", + "corn starch" + ] + }, + { + "id": 34581, + "cuisine": "korean", + "ingredients": [ + "eggs", + "wonton wrappers", + "scallions", + "canola oil", + "mirin", + "purple onion", + "kimchi", + "soy sauce", + "red pepper", + "coca-cola", + "extra firm tofu", + "rice vinegar", + "ground beef" + ] + }, + { + "id": 40158, + "cuisine": "italian", + "ingredients": [ + "baking soda", + "baking powder", + "sugar", + "cooking spray", + "all-purpose flour", + "roasted cashews", + "large eggs", + "vanilla extract", + "mace", + "golden raisins", + "whole nutmegs" + ] + }, + { + "id": 5626, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "large eggs", + "bread flour", + "honey", + "whole milk ricotta cheese", + "water", + "corn oil", + "grated lemon peel", + "pecorino cheese", + "unsalted butter", + "salt" + ] + }, + { + "id": 37885, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "chopped green chilies", + "white onion", + "boneless skinless chicken breast halves", + "black beans", + "salsa", + "taco seasoning mix", + "long grain white rice" + ] + }, + { + "id": 37648, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "onions", + "chicken broth", + "chopped celery", + "biscuits", + "crumbled cornbread", + "sage", + "eggs", + "margarine" + ] + }, + { + "id": 42916, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "moong dal", + "green chilies", + "dal", + "red chili powder", + "masoor dal", + "oil", + "ground turmeric", + "fenugreek leaves", + "water", + "cumin seed", + "onions", + "garlic paste", + "salt", + "lemon juice", + "ginger paste" + ] + }, + { + "id": 23670, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "extra-virgin olive oil", + "kosher salt", + "frozen lemonade concentrate", + "black tea", + "boneless skinless chicken breasts" + ] + }, + { + "id": 44214, + "cuisine": "mexican", + "ingredients": [ + "knorr chicken flavor bouillon cube", + "pimentos", + "garlic", + "tomato sauce", + "grated parmesan cheese", + "paprika", + "hellmann' or best food real mayonnais", + "green bell pepper", + "2 1/2 to 3 lb. chicken, cut into serving pieces", + "dri oregano leaves, crush", + "regular or convert rice", + "water", + "bacon, crisp-cooked and crumbled", + "green peas", + "onions" + ] + }, + { + "id": 23883, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "large eggs", + "togarashi", + "boiling water", + "shiitake", + "napa cabbage", + "garlic cloves", + "fresh ginger", + "vegetable oil", + "yellow onion", + "soy sauce", + "white miso", + "vegetable broth", + "noodles" + ] + }, + { + "id": 43496, + "cuisine": "filipino", + "ingredients": [ + "baking powder", + "sugar", + "sweet rice flour", + "coconut milk", + "shredded coconut" + ] + }, + { + "id": 24860, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "enchilada sauce", + "Hidden Valley® Original Ranch® Dressing", + "sour cream", + "flour tortillas", + "Mexican cheese", + "rotisserie chicken" + ] + }, + { + "id": 10490, + "cuisine": "thai", + "ingredients": [ + "black peppercorns", + "shallots", + "kaffir lime leaves", + "lemongrass", + "salt", + "greater galangal", + "red chili peppers", + "cilantro root", + "serrano chilies", + "coriander seeds", + "chopped garlic" + ] + }, + { + "id": 22759, + "cuisine": "brazilian", + "ingredients": [ + "green bell pepper", + "salt", + "red bell pepper", + "parsley", + "garlic cloves", + "onions", + "olive oil", + "tilapia", + "coconut milk", + "chili flakes", + "diced tomatoes", + "shrimp" + ] + }, + { + "id": 8107, + "cuisine": "italian", + "ingredients": [ + "melted butter", + "mild olive oil", + "salt", + "minced garlic", + "lean ground beef", + "baguette", + "minced onion", + "italian seasoning", + "anise seed", + "ground black pepper", + "sweet italian sausage" + ] + }, + { + "id": 845, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "yellow onion", + "tomatillos", + "cilantro leaves", + "corn husks", + "poblano chiles" + ] + }, + { + "id": 11960, + "cuisine": "italian", + "ingredients": [ + "fennel", + "deveined shrimp", + "flat leaf parsley", + "pitted kalamata olives", + "bay scallops", + "salt", + "calamari", + "red wine vinegar", + "fresh lemon juice", + "grape tomatoes", + "ground black pepper", + "Sicilian olives", + "onions" + ] + }, + { + "id": 23142, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "egg whites", + "ginger", + "oil", + "honey", + "boneless skinless chicken breasts", + "salt", + "sesame seeds", + "baking powder", + "rice vinegar", + "water", + "flour", + "garlic", + "corn starch" + ] + }, + { + "id": 7388, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "oil", + "toasted sesame seeds", + "soy sauce", + "chinese sausage", + "salt", + "ground white pepper", + "eggs", + "honey", + "bacon", + "corn starch", + "Japanese turnips", + "flour", + "scallions", + "dried shrimp" + ] + }, + { + "id": 41746, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "olive oil", + "chopped onion", + "tomatoes", + "black pepper", + "dry white wine", + "red bell pepper", + "bone-in chicken breast halves", + "cooking spray", + "garlic cloves", + "fresh rosemary", + "fat free less sodium chicken broth", + "salt", + "chicken thighs" + ] + }, + { + "id": 3625, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "freshly ground pepper", + "orecchiette", + "broccoli rabe", + "all-purpose flour", + "broth", + "red wine vinegar", + "chickpeas", + "dried rosemary", + "salt", + "garlic cloves" + ] + }, + { + "id": 12725, + "cuisine": "spanish", + "ingredients": [ + "orange", + "lemon", + "large eggs", + "superfine sugar", + "confectioners sugar", + "whole almonds", + "almond extract" + ] + }, + { + "id": 1433, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "mayonaise", + "lime", + "shredded cabbage", + "lime wedges", + "purple onion", + "smoked paprika", + "canola oil", + "cabbage leaves", + "black pepper", + "garlic powder", + "chili powder", + "cilantro", + "cilantro leaves", + "corn tortillas", + "tomatoes", + "salmon", + "corn kernels", + "green onions", + "buttermilk", + "salt", + "greek yogurt", + "brown sugar", + "pepper", + "flour", + "onion powder", + "garlic", + "cayenne pepper", + "cumin" + ] + }, + { + "id": 22465, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "chili powder", + "salt", + "black beans", + "quinoa", + "diced tomatoes", + "cumin", + "black pepper", + "olive oil", + "vegetable stock", + "frozen corn", + "fresh cilantro", + "jalapeno chilies", + "garlic" + ] + }, + { + "id": 17871, + "cuisine": "cajun_creole", + "ingredients": [ + "ground cloves", + "crushed tomatoes", + "grated parmesan cheese", + "salt", + "tomato sauce", + "minced garlic", + "finely chopped onion", + "chopped celery", + "white sugar", + "green bell pepper", + "pepper", + "minced onion", + "white rice", + "ground beef", + "black pepper", + "olive oil", + "chili powder", + "bay leaf" + ] + }, + { + "id": 40561, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "hellmann' or best food real mayonnais", + "shredded cheddar cheese", + "hamburger", + "flour tortillas", + "chipotle peppers", + "avocado", + "purple onion" + ] + }, + { + "id": 20509, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "zucchini", + "green pepper", + "white onion", + "red pepper flakes", + "spaghetti", + "white pepper", + "butter", + "carrots", + "tomatoes", + "olive oil", + "spanish chorizo", + "oregano" + ] + }, + { + "id": 16753, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "ground red pepper", + "organic vegetable broth", + "fresh lime juice", + "tomatoes", + "jalapeno chilies", + "bulgur", + "pinto beans", + "cumin", + "olive oil", + "purple onion", + "garlic cloves", + "chopped cilantro fresh", + "green chile", + "cooking spray", + "chopped onion", + "poblano chiles", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 11703, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "fine sea salt", + "red wine vinegar", + "garlic", + "white onion", + "chipotles in adobo" + ] + }, + { + "id": 6091, + "cuisine": "indian", + "ingredients": [ + "eggs", + "boneless chicken", + "lemon juice", + "garam masala", + "cilantro leaves", + "ground turmeric", + "garlic paste", + "salt", + "onions", + "tomatoes", + "coriander powder", + "green chilies" + ] + }, + { + "id": 41561, + "cuisine": "mexican", + "ingredients": [ + "taco sauce", + "garlic powder", + "chili powder", + "salt", + "tortilla chips", + "chopped cilantro", + "chunky salsa", + "corn kernels", + "guacamole", + "cheese", + "cayenne pepper", + "corn starch", + "onions", + "ground cumin", + "black beans", + "ground black pepper", + "mild green chiles", + "salsa", + "taco seasoning", + "ground beef", + "oregano", + "chopped tomatoes", + "green onions", + "purple onion", + "chopped onion", + "sour cream", + "chopped cilantro fresh" + ] + }, + { + "id": 11979, + "cuisine": "japanese", + "ingredients": [ + "Japanese turnips", + "chives", + "avocado", + "white miso", + "toasted nori", + "delicata squash", + "water", + "lemon", + "cooked brown rice", + "tahini", + "toasted sesame seeds" + ] + }, + { + "id": 21883, + "cuisine": "british", + "ingredients": [ + "eggs", + "golden brown sugar", + "golden raisins", + "sugar", + "unsalted butter", + "grated lemon peel", + "candied orange peel", + "ground nutmeg", + "fresh lemon juice", + "dried currants", + "frozen pastry puff sheets" + ] + }, + { + "id": 9218, + "cuisine": "indian", + "ingredients": [ + "sugar", + "butter", + "herbs", + "all-purpose flour", + "milk", + "salt", + "baking powder", + "oil" + ] + }, + { + "id": 44377, + "cuisine": "french", + "ingredients": [ + "gruyere cheese", + "tenderloin", + "crème fraîche", + "unsalted butter", + "canadian bacon" + ] + }, + { + "id": 44251, + "cuisine": "cajun_creole", + "ingredients": [ + "fennel seeds", + "fresh thyme", + "sweet paprika", + "olive oil", + "salt", + "ground black pepper", + "cayenne pepper", + "halibut fillets", + "butter", + "dried oregano" + ] + }, + { + "id": 645, + "cuisine": "italian", + "ingredients": [ + "boneless skinless chicken breasts", + "mozzarella cheese", + "tomato sauce", + "pepperoni", + "parmesan cheese" + ] + }, + { + "id": 10855, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "water", + "bacon", + "dark brown sugar", + "sugar", + "unsalted butter", + "salt", + "heavy whipping cream", + "brown sugar", + "empanada dough", + "apples", + "lemon juice", + "ground cloves", + "cinnamon", + "all-purpose flour" + ] + }, + { + "id": 2279, + "cuisine": "italian", + "ingredients": [ + "half & half", + "fresh oregano", + "grape tomatoes", + "cheese", + "fresh parsley", + "chopped fresh chives", + "freshly ground pepper", + "large eggs", + "salt" + ] + }, + { + "id": 17574, + "cuisine": "vietnamese", + "ingredients": [ + "lime", + "water", + "garlic", + "powdered sugar", + "red pepper", + "nuoc nam" + ] + }, + { + "id": 35087, + "cuisine": "french", + "ingredients": [ + "extra-virgin olive oil", + "sea bass fillets", + "thyme sprigs", + "large garlic cloves", + "chopped fresh chives", + "fresh lemon juice" + ] + }, + { + "id": 32105, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "raisins", + "sugar", + "butter", + "all-purpose flour", + "vegetable oil spray", + "buttermilk", + "baking powder", + "salt" + ] + }, + { + "id": 17048, + "cuisine": "cajun_creole", + "ingredients": [ + "table salt", + "hot sauce", + "new potatoes", + "shrimp", + "corn", + "cayenne pepper", + "crawfish", + "yellow onion" + ] + }, + { + "id": 18865, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "shallots", + "pepper", + "firm tofu", + "soy sauce", + "garlic", + "fresh ginger", + "sliced green onions" + ] + }, + { + "id": 10366, + "cuisine": "moroccan", + "ingredients": [ + "dried apricot", + "salt", + "leg of lamb", + "honey", + "vegetable stock", + "garlic cloves", + "tomatoes", + "bay leaves", + "oil", + "onions", + "potatoes", + "spices", + "carrots" + ] + }, + { + "id": 1406, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "salt", + "chopped cilantro fresh", + "avocado", + "hot pepper sauce", + "sour cream", + "pepper", + "tequila", + "tomato paste", + "shallots", + "fresh lime juice" + ] + }, + { + "id": 37442, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "olive oil", + "purple onion", + "lemon juice", + "cherry tomatoes", + "fresh green bean", + "chopped walnuts", + "sugar", + "roasted red peppers", + "salt", + "honey", + "white wine vinegar", + "garlic cloves" + ] + }, + { + "id": 1271, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "sour cream", + "onions", + "black beans", + "taco seasoning", + "diced tomatoes and green chilies", + "jalapeno chilies", + "corn tortillas", + "corn", + "oil", + "ground beef" + ] + }, + { + "id": 37864, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "rice vinegar", + "chicken wings", + "vegetable oil", + "sugar", + "salt", + "Frank's® RedHot® Original Cayenne Pepper Sauce", + "black pepper", + "rice flour" + ] + }, + { + "id": 6979, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "vanilla extract", + "pumpkin pie spice", + "large eggs", + "butter", + "all-purpose flour", + "brown sugar", + "pumpkin", + "whipping cream", + "chopped pecans", + "baking soda", + "vegetable oil", + "salt" + ] + }, + { + "id": 36000, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "kosher salt", + "flour tortillas", + "reduced-fat sour cream", + "canola oil", + "black pepper", + "minced garlic", + "lean ground beef", + "ground coriander", + "taco shells", + "refried beans", + "diced tomatoes", + "iceberg lettuce", + "tomato sauce", + "pepper", + "chili powder", + "cheese", + "ground cumin" + ] + }, + { + "id": 30831, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "heavy cream", + "dijon mustard", + "shallots", + "chicken parts", + "vegetable oil", + "reduced sodium chicken broth", + "chives" + ] + }, + { + "id": 10108, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garlic", + "cumin seed", + "japanese eggplants", + "fennel seeds", + "italian eggplant", + "salt", + "nigella seeds", + "olive oil", + "ground asafetida", + "mustard seeds", + "chicken stock", + "urad dal", + "cayenne pepper", + "onions" + ] + }, + { + "id": 36761, + "cuisine": "mexican", + "ingredients": [ + "salt", + "chopped cilantro fresh", + "smoked bacon", + "rice", + "chicken broth", + "salsa", + "green onions", + "shrimp" + ] + }, + { + "id": 24043, + "cuisine": "italian", + "ingredients": [ + "eggs", + "baking potatoes", + "flour", + "fine sea salt" + ] + }, + { + "id": 25089, + "cuisine": "moroccan", + "ingredients": [ + "eggplant", + "salt", + "tahini", + "fresh lemon juice", + "ground black pepper", + "greek style plain yogurt", + "olive oil", + "paprika" + ] + }, + { + "id": 16944, + "cuisine": "italian", + "ingredients": [ + "chiles", + "bay leaves", + "escarole", + "octopuses", + "extra-virgin olive oil", + "celery ribs", + "kosher salt", + "garlic", + "beans", + "lemon" + ] + }, + { + "id": 32709, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "salt", + "vegetable oil cooking spray", + "green onions", + "garlic cloves", + "fresh basil", + "olive oil", + "freshly ground pepper", + "french baguette", + "balsamic vinegar", + "plum tomatoes" + ] + }, + { + "id": 34816, + "cuisine": "cajun_creole", + "ingredients": [ + "white onion", + "ground red pepper", + "salt", + "black pepper", + "dried thyme", + "butter", + "garlic cloves", + "lime juice", + "onion powder", + "spanish paprika", + "white pepper", + "garlic powder", + "worcestershire sauce", + "dried oregano" + ] + }, + { + "id": 34567, + "cuisine": "italian", + "ingredients": [ + "non-fat sour cream", + "grated parmesan cheese", + "freshly ground pepper", + "cheese tortellini", + "stir fry vegetable blend", + "pesto", + "salt" + ] + }, + { + "id": 42161, + "cuisine": "mexican", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "corn tortillas", + "cooking spray", + "large eggs", + "sauce" + ] + }, + { + "id": 20239, + "cuisine": "korean", + "ingredients": [ + "honey", + "napa cabbage", + "rice vinegar", + "Korean chile flakes", + "spring onions", + "garlic", + "kimchi", + "tofu", + "fresh ginger", + "sea salt", + "Gochujang base", + "fish sauce", + "sesame oil", + "salt", + "onions" + ] + }, + { + "id": 37882, + "cuisine": "indian", + "ingredients": [ + "sorbet", + "plain yogurt", + "mint leaves" + ] + }, + { + "id": 25109, + "cuisine": "mexican", + "ingredients": [ + "jack", + "salsa", + "chicken", + "bread", + "basil", + "onions", + "butter", + "oil", + "cheddar cheese", + "cilantro", + "toasted sesame seeds" + ] + }, + { + "id": 7590, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "unsalted butter", + "garlic cloves", + "kosher salt", + "parmigiano reggiano cheese", + "spaghetti", + "hot red pepper flakes", + "organic tomato", + "fresh basil leaves", + "ground black pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 45510, + "cuisine": "moroccan", + "ingredients": [ + "hungarian sweet paprika", + "fresh parsley", + "olive oil", + "ground cumin", + "garlic cloves", + "tomatoes", + "chopped cilantro fresh" + ] + }, + { + "id": 15562, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "fresh tarragon", + "garlic cloves", + "chopped fresh chives", + "salt", + "flat leaf parsley", + "ground black pepper", + "extra-virgin olive oil", + "fresh lemon juice", + "whole milk ricotta cheese", + "country style bread", + "chopped fresh mint" + ] + }, + { + "id": 26940, + "cuisine": "mexican", + "ingredients": [ + "cream of tartar", + "vanilla", + "chocolate-hazelnut spread", + "large egg whites", + "liqueur", + "sugar", + "whipping cream" + ] + }, + { + "id": 45345, + "cuisine": "italian", + "ingredients": [ + "pepper", + "extra-virgin olive oil", + "onions", + "tomatoes", + "active dry yeast", + "all-purpose flour", + "mozzarella cheese", + "radicchio", + "Sangiovese", + "minced garlic", + "salt", + "fresh basil leaves" + ] + }, + { + "id": 39470, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "smoked gouda", + "water", + "hot sauce", + "barbecue sauce", + "chopped cilantro", + "olive oil", + "yellow onion" + ] + }, + { + "id": 18961, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "all-purpose flour", + "milk", + "vanilla extract", + "white sugar", + "eggs", + "butter", + "confectioners sugar", + "baking soda", + "salt" + ] + }, + { + "id": 4169, + "cuisine": "southern_us", + "ingredients": [ + "vanilla extract", + "eggs", + "white sugar", + "milk", + "all-purpose flour" + ] + }, + { + "id": 449, + "cuisine": "mexican", + "ingredients": [ + "roma tomatoes", + "garlic", + "ground cumin", + "kosher salt", + "lemon", + "fresh oregano", + "chili powder", + "cayenne pepper", + "olive oil", + "cracked black pepper", + "onions" + ] + }, + { + "id": 38351, + "cuisine": "jamaican", + "ingredients": [ + "red chili peppers", + "garlic cloves", + "ground cinnamon", + "olive oil", + "sugar", + "ground allspice", + "lime juice", + "onions" + ] + }, + { + "id": 37357, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "cooking spray", + "all-purpose flour", + "garlic cloves", + "bone-in chicken breast halves", + "hot pepper sauce", + "cajun seasoning", + "okra", + "canola oil", + "lower sodium chicken broth", + "water", + "green onions", + "chopped onion", + "bay leaf", + "black pepper", + "chopped green bell pepper", + "chopped celery", + "long-grain rice" + ] + }, + { + "id": 22423, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "lime", + "roasted red peppers", + "fresh mint", + "kosher salt", + "panko", + "cilantro leaves", + "serrano chile", + "ground chicken", + "fresh ginger", + "garlic", + "fresh basil leaves", + "lemongrass", + "ground black pepper", + "red curry paste" + ] + }, + { + "id": 13054, + "cuisine": "italian", + "ingredients": [ + "pasta", + "broccoli florets", + "cucumber", + "shredded cheddar cheese", + "cauliflower florets", + "shredded carrots", + "salt", + "tomatoes", + "butter", + "salad dressing" + ] + }, + { + "id": 35527, + "cuisine": "jamaican", + "ingredients": [ + "white vinegar", + "black pepper", + "pork tenderloin", + "vegetable oil", + "garlic cloves", + "brown sugar", + "ground nutmeg", + "peeled fresh ginger", + "chopped onion", + "soy sauce", + "fresh thyme", + "green onions", + "ground allspice", + "ground cinnamon", + "kosher salt", + "cooking spray", + "scotch bonnet chile" + ] + }, + { + "id": 34892, + "cuisine": "irish", + "ingredients": [ + "green cabbage", + "water", + "thyme sprigs", + "kosher salt", + "carrots", + "mustard", + "pork shoulder roast", + "black peppercorns", + "garlic" + ] + }, + { + "id": 32680, + "cuisine": "italian", + "ingredients": [ + "water", + "zucchini", + "garlic cloves", + "tomato sauce", + "eggplant", + "yellow bell pepper", + "red bell pepper", + "table salt", + "ground black pepper", + "broccoli", + "spaghetti", + "olive oil", + "grated parmesan cheese", + "green beans" + ] + }, + { + "id": 33383, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "pies", + "salt", + "peaches", + "baking powder", + "dark brown sugar", + "eggs", + "unsalted butter", + "vanilla extract", + "water", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 21809, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "large eggs", + "all-purpose flour", + "fresh lime juice", + "ground cumin", + "plain yogurt", + "cayenne", + "russet potatoes", + "yams", + "frozen peas", + "sugar", + "fresh cilantro", + "peeled fresh ginger", + "ground coriander", + "onions", + "pepper", + "zucchini", + "salt", + "carrots", + "ground turmeric" + ] + }, + { + "id": 46079, + "cuisine": "jamaican", + "ingredients": [ + "eggs", + "butter", + "yeast", + "warm water", + "all-purpose flour", + "brown sugar", + "salt", + "honey", + "coconut milk" + ] + }, + { + "id": 605, + "cuisine": "brazilian", + "ingredients": [ + "starch", + "cheese", + "butter", + "water", + "salt" + ] + }, + { + "id": 34290, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crumbled gorgonzola", + "vegetable broth", + "dry white wine", + "pears", + "arborio rice", + "chopped fresh sage" + ] + }, + { + "id": 43467, + "cuisine": "irish", + "ingredients": [ + "lamb loin", + "yukon gold potatoes", + "chopped parsley", + "eggs", + "olive oil", + "white wine vinegar", + "kosher salt", + "garlic", + "mayonaise", + "chives", + "lamb" + ] + }, + { + "id": 25652, + "cuisine": "italian", + "ingredients": [ + "panko", + "slider buns", + "crushed red pepper", + "lean ground pork", + "large eggs", + "shallots", + "garlic cloves", + "olive oil", + "marinara sauce", + "part-skim ricotta cheese", + "fresh parsley", + "sausage casings", + "ground black pepper", + "basil leaves", + "salt" + ] + }, + { + "id": 49089, + "cuisine": "french", + "ingredients": [ + "sugar", + "butter", + "water", + "chopped walnuts", + "ground cinnamon", + "anjou pears", + "lemon juice", + "Pepperidge Farm Puff Pastry Sheets", + "salt" + ] + }, + { + "id": 29527, + "cuisine": "filipino", + "ingredients": [ + "evaporated milk", + "crushed graham crackers", + "sprinkles", + "ground cinnamon", + "condensed milk" + ] + }, + { + "id": 443, + "cuisine": "italian", + "ingredients": [ + "capers", + "olive oil", + "garlic", + "pepper", + "roma tomatoes", + "ripe olives", + "chili flakes", + "grated parmesan cheese", + "salt", + "anchovies", + "vermicelli" + ] + }, + { + "id": 43442, + "cuisine": "russian", + "ingredients": [ + "sliced almonds", + "raisins", + "dried apricot", + "salt", + "honey", + "poppy seeds", + "sugar", + "cinnamon", + "pearl barley" + ] + }, + { + "id": 19664, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "asparagus", + "cream cheese", + "arborio rice", + "parmesan cheese", + "edamame", + "olive oil", + "chopped fresh thyme", + "garlic cloves", + "lower sodium chicken broth", + "ground black pepper", + "chopped onion" + ] + }, + { + "id": 47423, + "cuisine": "indian", + "ingredients": [ + "salt", + "sour cream", + "ginger paste", + "garlic paste", + "green chilies", + "onions", + "green cardamom pods", + "serrano", + "chopped cilantro", + "tumeric", + "oil", + "large shrimp" + ] + }, + { + "id": 33611, + "cuisine": "indian", + "ingredients": [ + "jasmine rice", + "black mustard seeds", + "ground turmeric", + "plain yogurt", + "milk", + "dried red chile peppers", + "fresh curry leaves", + "salt", + "ghee", + "water", + "asafoetida powder" + ] + }, + { + "id": 21000, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "garlic cloves", + "fish sauce", + "chile pepper", + "palm sugar", + "chicken livers", + "soy sauce", + "sea salt" + ] + }, + { + "id": 31869, + "cuisine": "irish", + "ingredients": [ + "salt", + "cheddar cheese", + "corned beef", + "red potato", + "sour cream", + "butter" + ] + }, + { + "id": 38738, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "ground red pepper", + "cashew nuts", + "ground ginger", + "garam masala", + "ground coriander", + "ground turmeric", + "water", + "salt", + "basmati rice", + "salmon fillets", + "cooking spray", + "flat leaf parsley" + ] + }, + { + "id": 36379, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "red pepper flakes", + "chickpeas", + "onions", + "olive oil", + "cilantro", + "ground coriander", + "ground cinnamon", + "diced tomatoes", + "sweet paprika", + "ground cumin", + "chicken stock", + "apricot halves", + "beef stew meat", + "medjool date" + ] + }, + { + "id": 47100, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "lime", + "garlic salt", + "kosher salt", + "smoked paprika", + "ground black pepper", + "ground cumin" + ] + }, + { + "id": 31039, + "cuisine": "indian", + "ingredients": [ + "croissants", + "roasting chickens", + "whipped cream cheese", + "curry powder", + "cranberries" + ] + }, + { + "id": 29395, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "oil", + "warm water", + "sugar", + "yeast", + "self rising flour" + ] + }, + { + "id": 36317, + "cuisine": "mexican", + "ingredients": [ + "papaya", + "sugar", + "lime juice" + ] + }, + { + "id": 22875, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "melon", + "sugar" + ] + }, + { + "id": 8914, + "cuisine": "mexican", + "ingredients": [ + "french dressing", + "fritos", + "cheddar cheese", + "medium tomatoes", + "olives", + "avocado", + "taco seasoning mix", + "ground beef", + "romaine lettuce", + "purple onion" + ] + }, + { + "id": 48971, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "paprika", + "chickpeas", + "cumin", + "potatoes", + "white beans", + "bay leaf", + "olive oil", + "ginger", + "garlic cloves", + "chicken broth", + "lemon", + "yellow onion", + "coriander" + ] + }, + { + "id": 19755, + "cuisine": "mexican", + "ingredients": [ + "lime", + "corn tortillas", + "white onion", + "butter", + "serrano chile", + "kosher salt", + "shrimp", + "chopped garlic", + "vegetable oil", + "chopped cilantro fresh" + ] + }, + { + "id": 3714, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "white onion", + "butter", + "all-purpose flour", + "sausage links", + "crushed tomatoes", + "sea salt", + "chicken broth", + "water", + "heavy cream", + "black pepper", + "yukon gold potatoes", + "garlic" + ] + }, + { + "id": 5750, + "cuisine": "greek", + "ingredients": [ + "vegetable oil", + "water", + "salt", + "zucchini", + "all-purpose flour", + "plain yogurt", + "large garlic cloves" + ] + }, + { + "id": 10787, + "cuisine": "italian", + "ingredients": [ + "baby spinach", + "salt", + "fresh lemon juice", + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "blanched almonds", + "black pepper", + "large garlic cloves", + "fresh oregano", + "fresh basil leaves", + "chopped fresh thyme", + "linguine", + "organic vegetable broth" + ] + }, + { + "id": 29601, + "cuisine": "irish", + "ingredients": [ + "powdered sugar", + "warm water", + "meringue powder", + "food colouring" + ] + }, + { + "id": 44076, + "cuisine": "japanese", + "ingredients": [ + "white rice", + "rice vinegar", + "sugar", + "salt" + ] + }, + { + "id": 48451, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "fat free less sodium chicken broth", + "ground black pepper", + "confit", + "pork shoulder boston butt", + "tomatoes", + "water", + "cooking spray", + "garlic cloves", + "canola oil", + "parsley sprigs", + "chicken sausage", + "cannellini beans", + "thyme", + "white bread", + "kosher salt", + "finely chopped onion", + "sliced carrots", + "bay leaf" + ] + }, + { + "id": 33231, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "gram flour", + "oil", + "salt", + "cashew nuts", + "mint leaves", + "rice flour" + ] + }, + { + "id": 28408, + "cuisine": "mexican", + "ingredients": [ + "chicken bouillon", + "garlic", + "red bell pepper", + "onions", + "tomatoes with juice", + "ground white pepper", + "cooked white rice", + "ground cumin", + "green onions", + "frozen corn kernels", + "celery", + "chicken", + "water", + "salt", + "ground cayenne pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 31551, + "cuisine": "vietnamese", + "ingredients": [ + "tofu", + "peanuts", + "chopped garlic", + "sweet chili sauce", + "cilantro leaves", + "lime juice", + "cucumber", + "soy sauce", + "vegetable oil" + ] + }, + { + "id": 5675, + "cuisine": "mexican", + "ingredients": [ + "milk", + "all-purpose flour", + "vegetable oil", + "baking powder", + "salt" + ] + }, + { + "id": 42592, + "cuisine": "indian", + "ingredients": [ + "kaffir lime leaves", + "peanuts", + "waxy potatoes", + "red chili peppers", + "tamarind paste", + "onions", + "fish sauce", + "Massaman curry paste", + "cinnamon sticks", + "light brown sugar", + "jasmine rice", + "coconut cream", + "beef steak" + ] + }, + { + "id": 28786, + "cuisine": "italian", + "ingredients": [ + "fat free lemon curd", + "orange liqueur", + "light cream cheese", + "powdered sugar" + ] + }, + { + "id": 44617, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chili oil", + "chicken", + "spring onions", + "sichuan peppercorn oil", + "msg", + "ginger", + "sugar", + "szechwan peppercorns", + "toasted sesame seeds" + ] + }, + { + "id": 27694, + "cuisine": "chinese", + "ingredients": [ + "water", + "Shaoxing wine", + "chili bean sauce", + "Chinese egg noodles", + "brown sugar", + "beef shank", + "star anise", + "chinese five-spice powder", + "plum tomatoes", + "fresh ginger", + "green onions", + "salt", + "white radish", + "soy sauce", + "beef stock", + "thai chile", + "garlic cloves" + ] + }, + { + "id": 18644, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "vanilla extract", + "firmly packed light brown sugar", + "butter", + "all-purpose flour", + "pecans", + "egg yolks", + "salt", + "sugar", + "light corn syrup", + "cream cheese, soften" + ] + }, + { + "id": 6763, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "onions", + "lemon extract", + "chicken", + "ground black pepper", + "garlic" + ] + }, + { + "id": 16013, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "grated parmesan cheese", + "vegetable stock", + "garlic cloves", + "olive oil", + "dry white wine", + "white truffle oil", + "fresh basil", + "bay leaves", + "chopped fresh thyme", + "onions", + "shiitake", + "crimini mushrooms", + "butter" + ] + }, + { + "id": 28247, + "cuisine": "french", + "ingredients": [ + "chiles", + "salt", + "bread crumb fresh", + "fresh lemon juice", + "extra-virgin olive oil", + "red bell pepper", + "black pepper", + "garlic cloves" + ] + }, + { + "id": 23542, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "kosher salt", + "salsa", + "pork butt", + "cotija", + "cilantro", + "orange juice", + "ground cumin", + "guajillo chiles", + "garlic", + "ancho chile pepper", + "diced onions", + "flour tortillas", + "ground allspice", + "oregano" + ] + }, + { + "id": 12569, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "chopped onion", + "spinach", + "raisins", + "pinenuts", + "salt", + "ground black pepper" + ] + }, + { + "id": 43729, + "cuisine": "chinese", + "ingredients": [ + "plain flour", + "canola oil", + "salt", + "warm water", + "scallions" + ] + }, + { + "id": 27528, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "pepper", + "fresh ginger", + "green onions", + "Thai red curry paste", + "carrots", + "sambal ulek", + "coconut oil", + "pork shoulder roast", + "jalapeno chilies", + "fried eggs", + "acorn squash", + "low sodium soy sauce", + "brown sugar", + "curry powder", + "white miso", + "sesame oil", + "rice vinegar", + "wild mushrooms", + "five spice", + "black pepper", + "lime", + "low sodium chicken broth", + "cilantro", + "ramen noodles seasoning" + ] + }, + { + "id": 34091, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "water", + "heavy cream", + "corn", + "all-purpose flour", + "chopped fresh chives" + ] + }, + { + "id": 4535, + "cuisine": "mexican", + "ingredients": [ + "sweet chili sauce", + "organic tomato", + "all-purpose flour", + "sour cream", + "iceberg lettuce", + "eggs", + "garlic powder", + "coarse salt", + "oil", + "medium shrimp", + "avocado", + "coconut", + "onion powder", + "hot sauce", + "corn tortillas", + "mayonaise", + "ground black pepper", + "rice vinegar", + "corn starch", + "panko breadcrumbs" + ] + }, + { + "id": 26384, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "coarse salt", + "frozen corn", + "olive oil", + "white rice", + "black pepper", + "diced tomatoes", + "sharp cheddar cheese", + "chili powder", + "black olives" + ] + }, + { + "id": 36305, + "cuisine": "french", + "ingredients": [ + "pitted kalamata olives", + "large garlic cloves", + "fresh rosemary", + "olive oil", + "fresh lemon juice", + "baguette", + "anchovy fillets", + "capers", + "chopped fresh thyme" + ] + }, + { + "id": 28552, + "cuisine": "irish", + "ingredients": [ + "sugar", + "peppermint extract", + "low-fat milk", + "pure vanilla extract", + "color food green", + "vanilla ice cream" + ] + }, + { + "id": 16495, + "cuisine": "thai", + "ingredients": [ + "sugar", + "hot sauce", + "galangal", + "fresh basil", + "green curry paste", + "red bell pepper", + "fish", + "lemongrass", + "peanut oil", + "onions", + "fish sauce", + "fresh ginger", + "coconut milk" + ] + }, + { + "id": 12369, + "cuisine": "indian", + "ingredients": [ + "tandoori spices", + "paneer", + "corn flour", + "diced onions", + "chili powder", + "oil", + "capsicum", + "salt", + "ginger paste", + "garlic paste", + "lemon", + "gram flour" + ] + }, + { + "id": 38492, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "bay leaves", + "crushed red pepper", + "garlic cloves", + "frozen okra", + "diced tomatoes", + "yellow onion", + "celery", + "chicken sausage", + "boneless skinless chicken breasts", + "hot sauce", + "thyme", + "bell pepper", + "white rice", + "kale leaves" + ] + }, + { + "id": 35531, + "cuisine": "vietnamese", + "ingredients": [ + "green onions", + "rice", + "beansprouts", + "fresh cilantro", + "thai chile", + "garlic cloves", + "lettuce", + "rice vermicelli", + "creamy peanut butter", + "fresh mint", + "hoisin sauce", + "rice vinegar", + "shrimp" + ] + }, + { + "id": 25154, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garam masala", + "green chilies", + "garlic paste", + "bell pepper", + "onions", + "red chili powder", + "large eggs", + "oil", + "tumeric", + "cilantro leaves", + "cumin" + ] + }, + { + "id": 37083, + "cuisine": "italian", + "ingredients": [ + "garlic cloves", + "butter", + "coarse kosher salt", + "baby spinach leaves", + "low salt chicken broth", + "all-purpose flour", + "polenta" + ] + }, + { + "id": 15806, + "cuisine": "italian", + "ingredients": [ + "sugar", + "olive oil", + "green onions", + "bread flour", + "black pepper", + "dry yeast", + "salt", + "warm water", + "fresh parmesan cheese", + "balsamic vinegar", + "tomatoes", + "salad greens", + "cooking spray", + "provolone cheese" + ] + }, + { + "id": 35564, + "cuisine": "greek", + "ingredients": [ + "instant rice", + "ground black pepper", + "ground pork", + "lemon juice", + "chicken broth", + "pinenuts", + "raisins", + "chopped onion", + "tangerine juice", + "brandy", + "butter", + "salt", + "ground beef", + "chestnuts", + "salt and ground black pepper", + "turkey", + "orange juice" + ] + }, + { + "id": 775, + "cuisine": "french", + "ingredients": [ + "reduced sodium chicken broth", + "dry white wine", + "California bay leaves", + "orange zest", + "prunes", + "lemon zest", + "confit duck leg", + "rendered duck fat", + "cremini mushrooms", + "leeks", + "extra-virgin olive oil", + "armagnac", + "clove", + "water", + "yukon gold potatoes", + "thyme sprigs" + ] + }, + { + "id": 29787, + "cuisine": "indian", + "ingredients": [ + "unsweetened coconut milk", + "cider vinegar", + "coffee", + "garlic cloves", + "tumeric", + "coconut", + "salt", + "onions", + "cauliflower", + "water", + "vegetable oil", + "medium shrimp", + "chiles", + "tamarind", + "cumin seed" + ] + }, + { + "id": 47686, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "garlic cloves", + "clams", + "grated parmesan cheese", + "linguine", + "italian seasoning", + "fresh basil", + "dry white wine", + "fresh mushrooms", + "ground black pepper", + "red pepper", + "fresh parsley" + ] + }, + { + "id": 31333, + "cuisine": "greek", + "ingredients": [ + "penne", + "diced tomatoes", + "dried oregano", + "ground black pepper", + "feta cheese crumbles", + "tomato paste", + "breakfast sausages", + "fresh parsley", + "eggplant", + "garlic cloves" + ] + }, + { + "id": 11947, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "garlic", + "mango", + "grape tomatoes", + "shallots", + "fresh lime juice", + "fish sauce", + "thai chile", + "dried shrimp", + "palm sugar", + "green beans" + ] + }, + { + "id": 12694, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "pineapple", + "sugar", + "ice water", + "all-purpose flour", + "semolina flour", + "large eggs", + "salt", + "pineapple preserves", + "vegetable shortening", + "fresh lemon juice" + ] + }, + { + "id": 30225, + "cuisine": "italian", + "ingredients": [ + "solid white tuna", + "feta cheese crumbles", + "pinenuts", + "linguine", + "fresh basil", + "extra-virgin olive oil", + "sun-dried tomatoes in oil", + "sliced black olives", + "garlic cloves" + ] + }, + { + "id": 23549, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "chinese five-spice powder", + "fresh ginger", + "fresh chicken stock", + "soy sauce", + "sesame oil", + "clear honey", + "duck" + ] + }, + { + "id": 18303, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "ground cumin", + "cannellini beans", + "roasted tomatoes", + "curry powder", + "garlic cloves", + "crushed red pepper", + "ground turmeric" + ] + }, + { + "id": 10487, + "cuisine": "french", + "ingredients": [ + "dried tarragon leaves", + "ground black pepper", + "extra-virgin olive oil", + "Niçoise olives", + "salad greens", + "cooking spray", + "purple onion", + "fresh parsley", + "red potato", + "cherry tomatoes", + "tuna steaks", + "salt", + "fat free less sodium chicken broth", + "dijon mustard", + "white wine vinegar", + "green beans" + ] + }, + { + "id": 34725, + "cuisine": "cajun_creole", + "ingredients": [ + "ketchup", + "green onions", + "salt", + "fresh parsley", + "mayonaise", + "dijon mustard", + "chopped celery", + "fresh lemon juice", + "cider vinegar", + "worcestershire sauce", + "hot sauce", + "capers", + "prepared horseradish", + "paprika", + "garlic cloves" + ] + }, + { + "id": 10508, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "fresh parsley", + "milk", + "herbes de provence", + "black pepper", + "orzo", + "onions", + "parmesan cheese", + "cream of mushroom soup" + ] + }, + { + "id": 30553, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "corn tortillas", + "ground cumin", + "tomatoes", + "salt", + "cooked chicken breasts", + "chicken stock", + "vegetable oil", + "onions", + "chihuahua cheese", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 31491, + "cuisine": "spanish", + "ingredients": [ + "sherry vinegar", + "garlic cloves", + "manchego cheese", + "red wine vinegar", + "cucumber", + "tomatoes", + "bell pepper", + "country bread", + "ground pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 30700, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "vanilla extract", + "unsweetened cocoa powder", + "chocolate instant pudding", + "cake mix", + "fudge cake mix", + "coca-cola", + "powdered sugar", + "heavy cream", + "chopped pecans" + ] + }, + { + "id": 3130, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "chopped cilantro fresh", + "minced garlic", + "salt", + "tomatoes", + "tomatillos", + "lime juice", + "chopped onion" + ] + }, + { + "id": 46494, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "water", + "star anise", + "rice", + "curds", + "cinnamon sticks", + "shahi jeera", + "stone flower", + "red chili powder", + "mint leaves", + "salt", + "brown cardamom", + "oil", + "onions", + "clove", + "tomatoes", + "mace", + "garlic", + "green cardamom", + "kewra water", + "bay leaf", + "chicken", + "fennel seeds", + "tumeric", + "ginger", + "cilantro leaves", + "green chilies", + "cardamom", + "peppercorns" + ] + }, + { + "id": 35107, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "basil leaves", + "red pepper flakes", + "grated parmesan cheese", + "red bell pepper" + ] + }, + { + "id": 293, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "bread crumbs", + "coriander seeds", + "salt", + "coconut milk", + "tomato paste", + "garlic paste", + "olive oil", + "white wine vinegar", + "mustard seeds", + "ground cumin", + "red chili powder", + "fresh coriander", + "worcestershire sauce", + "green chilies", + "ground turmeric", + "eggs", + "pepper", + "fresh curry", + "minced beef", + "onions" + ] + }, + { + "id": 654, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "ground sausage", + "cream style corn", + "onions", + "shredded cheddar cheese", + "self-rising cornmeal", + "chopped green bell pepper" + ] + }, + { + "id": 48889, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "cannellini beans", + "chopped cilantro fresh", + "fresh cilantro", + "enchilada sauce", + "ground cumin", + "green chile", + "cooking spray", + "corn tortillas", + "water", + "non-fat sour cream", + "sliced green onions" + ] + }, + { + "id": 5972, + "cuisine": "french", + "ingredients": [ + "fillet red snapper", + "garlic cloves", + "capers", + "anchovy fillets", + "grated lemon peel", + "chicken stock", + "olive oil", + "fresh parsley", + "tomatoes", + "fennel bulb", + "olives" + ] + }, + { + "id": 6280, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "dijon mustard", + "anchovy paste", + "boneless skinless chicken breast halves", + "kosher salt", + "ground black pepper", + "worcestershire sauce", + "olive oil cooking spray", + "romaine lettuce", + "fresh parmesan cheese", + "red wine vinegar", + "fresh lemon juice", + "fat-free croutons", + "water", + "soft tofu", + "extra-virgin olive oil" + ] + }, + { + "id": 12010, + "cuisine": "indian", + "ingredients": [ + "diced onions", + "sweet potatoes", + "peanut oil", + "chopped cilantro fresh", + "large eggs", + "salt", + "garlic cloves", + "water", + "mango chutney", + "cumin seed", + "cauliflower", + "jalapeno chilies", + "all-purpose flour", + "Madras curry powder" + ] + }, + { + "id": 3474, + "cuisine": "french", + "ingredients": [ + "mixed greens", + "vinaigrette", + "dried cranberries", + "tart", + "walnuts" + ] + }, + { + "id": 22143, + "cuisine": "southern_us", + "ingredients": [ + "warm water", + "fresh lemon juice", + "lime zest", + "large egg yolks", + "sweetened condensed milk", + "salted butter", + "fresh lime juice", + "brown sugar", + "graham cracker crumbs" + ] + }, + { + "id": 11119, + "cuisine": "southern_us", + "ingredients": [ + "cream", + "lard", + "sausages", + "shucked oysters", + "flour for dusting", + "quail" + ] + }, + { + "id": 10347, + "cuisine": "french", + "ingredients": [ + "salt", + "egg yolks", + "lemon juice", + "butter", + "cayenne pepper" + ] + }, + { + "id": 27488, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "cherry tomatoes", + "dry white wine", + "grated nutmeg", + "fresh basil", + "unsalted butter", + "whipping cream", + "garlic cloves", + "fettucine", + "asparagus", + "fresh shiitake mushrooms", + "freshly ground pepper", + "sugar pea", + "broccoli florets", + "salt" + ] + }, + { + "id": 36900, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "crushed red pepper", + "pasta", + "center cut bacon", + "oil", + "kale", + "large garlic cloves", + "fresh lemon juice", + "parmigiano reggiano cheese", + "salt" + ] + }, + { + "id": 32466, + "cuisine": "greek", + "ingredients": [ + "parsley leaves", + "lima beans", + "onions", + "pita loaves", + "carrots", + "extra-virgin olive oil", + "red bell pepper", + "large garlic cloves", + "fresh lemon juice" + ] + }, + { + "id": 5634, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "shallots", + "light coconut milk", + "fresh lemon juice", + "red chili peppers", + "Thai red curry paste", + "salt", + "chicken wings", + "water", + "salted roast peanuts", + "garlic cloves", + "sugar", + "vegetable oil", + "white wine vinegar", + "fresh lime juice" + ] + }, + { + "id": 6951, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "Bisquick Original All-Purpose Baking Mix", + "buttermilk", + "dried rosemary", + "salt", + "roasted red peppers", + "garlic cloves" + ] + }, + { + "id": 38722, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "wheat berries", + "garlic", + "fresh lemon juice", + "sugar", + "albacore", + "salt", + "capers", + "olive oil", + "purple onion", + "bay leaf", + "orange", + "hot pepper", + "fresh herbs" + ] + }, + { + "id": 20769, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "minced garlic", + "corn starch", + "fish sauce", + "vegetable oil", + "white sugar", + "cider vinegar", + "paprika", + "chicken wings", + "jalapeno chilies", + "red bell pepper" + ] + }, + { + "id": 18994, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "pancetta", + "dry white wine", + "basil leaves", + "diced tomatoes in juice", + "penne", + "whipping cream" + ] + }, + { + "id": 12330, + "cuisine": "french", + "ingredients": [ + "sugar", + "water", + "vodka", + "prosecco", + "whole cranberry sauce" + ] + }, + { + "id": 31980, + "cuisine": "jamaican", + "ingredients": [ + "goat", + "feet", + "yams", + "water", + "taro", + "salt", + "turnips", + "fresh thyme", + "scotch", + "carrots", + "bananas", + "seeds", + "scallions" + ] + }, + { + "id": 6200, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "chili powder", + "okra", + "cayenne", + "salt", + "cornmeal", + "garlic powder", + "bacon", + "oil", + "black pepper", + "potatoes", + "green pepper", + "onions" + ] + }, + { + "id": 19965, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "sugar", + "all-purpose flour", + "buttermilk", + "large eggs", + "white cornmeal" + ] + }, + { + "id": 27145, + "cuisine": "moroccan", + "ingredients": [ + "preserved lemon", + "chopped tomatoes", + "apricot halves", + "cayenne pepper", + "saffron", + "ground ginger", + "sliced almonds", + "ground black pepper", + "paprika", + "chicken pieces", + "chicken stock", + "tumeric", + "tomato juice", + "raisins", + "oil", + "ground cinnamon", + "olive oil", + "clear honey", + "garlic", + "onions" + ] + }, + { + "id": 17726, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "all-purpose flour", + "yellow squash", + "salt", + "milk", + "corn chips", + "eggs", + "chile pepper", + "monterey jack" + ] + }, + { + "id": 39615, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "ground black pepper", + "cilantro leaves", + "lemongrass", + "sea salt", + "fresh mint", + "soy sauce", + "kirby cucumbers", + "rice vinegar", + "olive oil", + "ginger" + ] + }, + { + "id": 30473, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "fresh thyme leaves", + "all-purpose flour", + "bone in skin on chicken thigh", + "kosher salt", + "bay leaves", + "Italian parsley leaves", + "celery", + "black pepper", + "unsalted butter", + "buttermilk", + "carrots", + "olive oil", + "baking powder", + "garlic", + "onions" + ] + }, + { + "id": 39772, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "palm sugar", + "red chili peppers", + "boneless skinless chicken breasts", + "fish sauce", + "cooking oil", + "panang curry paste", + "thai basil", + "coconut milk" + ] + }, + { + "id": 4200, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "salt", + "masala", + "coconut oil", + "ghee", + "eggs", + "mustard seeds", + "chicken", + "coconut", + "onions" + ] + }, + { + "id": 43620, + "cuisine": "mexican", + "ingredients": [ + "cilantro", + "taco seasoning", + "onions", + "cheese", + "corn tortillas", + "greens", + "red", + "sour cream", + "browning", + "refried beans", + "salsa", + "chillies" + ] + }, + { + "id": 12333, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "salt", + "ground cumin", + "cooking spray", + "fresh lime juice", + "olive oil", + "garlic cloves", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 14327, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "all-purpose flour", + "cracked black pepper", + "russet potatoes", + "chopped onion", + "kosher salt", + "bacon fat" + ] + }, + { + "id": 38563, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "diced tomatoes", + "celery", + "dried beans", + "carrots", + "pasta", + "beef broth", + "italian seasoning", + "parmesan cheese", + "dried minced onion" + ] + }, + { + "id": 9741, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "water", + "tamarind juice", + "ground coriander", + "curry paste", + "white pepper", + "garlic powder", + "paprika", + "ground cayenne pepper", + "sugar", + "peanuts", + "sweet soy sauce", + "cucumber", + "ground turmeric", + "minced garlic", + "boneless chicken breast", + "creamy peanut butter", + "coconut milk" + ] + }, + { + "id": 26256, + "cuisine": "jamaican", + "ingredients": [ + "reduced sodium beef broth", + "dried thyme", + "hot pepper sauce", + "green onions", + "peas", + "ground allspice", + "corn starch", + "cold water", + "pepper", + "kidney beans", + "potatoes", + "top sirloin steak", + "yellow onion", + "garlic cloves", + "plum tomatoes", + "celery ribs", + "sugar", + "olive oil", + "reduced sodium soy sauce", + "vegetable oil", + "salt", + "long-grain rice", + "coconut milk", + "steak sauce", + "water", + "garlic powder", + "barbecue sauce", + "scotch bonnet chile", + "rice", + "carrots" + ] + }, + { + "id": 25758, + "cuisine": "indian", + "ingredients": [ + "fat free less sodium chicken broth", + "ground black pepper", + "ground coriander", + "chopped garlic", + "lamb shanks", + "lemongrass", + "salt", + "fresh lime juice", + "curry powder", + "cilantro stems", + "carrots", + "ground cumin", + "lime rind", + "olive oil", + "cilantro leaves", + "onions" + ] + }, + { + "id": 29401, + "cuisine": "italian", + "ingredients": [ + "sugar", + "all purpose unbleached flour", + "baking soda", + "salt", + "roasted cashews", + "large eggs", + "grated orange", + "water", + "vanilla" + ] + }, + { + "id": 5023, + "cuisine": "french", + "ingredients": [ + "parsley sprigs", + "salt", + "fresh sage", + "olive oil", + "bay leaf", + "celery ribs", + "black pepper", + "garlic cloves", + "rosemary sprigs", + "fresh thyme", + "chicken" + ] + }, + { + "id": 16139, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "large eggs", + "sugar", + "fresh ginger", + "salt", + "dashi powder", + "green onions", + "crab", + "dry sherry" + ] + }, + { + "id": 45326, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "bacon", + "Sriracha", + "eggs", + "fresh parsley", + "flour tortillas" + ] + }, + { + "id": 8910, + "cuisine": "mexican", + "ingredients": [ + "butter", + "poblano chiles", + "white onion", + "grated jack cheese", + "salt", + "milk", + "sour cream" + ] + }, + { + "id": 49637, + "cuisine": "cajun_creole", + "ingredients": [ + "whole wheat hamburger buns", + "ground red pepper", + "creole seasoning", + "crumbled blue cheese", + "onion tops", + "iceberg lettuce", + "ground turkey breast", + "paprika", + "feta cheese crumbles", + "ground round", + "cooking spray", + "dry bread crumbs" + ] + }, + { + "id": 38544, + "cuisine": "indian", + "ingredients": [ + "half & half", + "diced tomatoes", + "purple onion", + "spices", + "ginger", + "bird chile", + "boneless skinless chicken breasts", + "cilantro", + "english cucumber", + "mint", + "lemon", + "garlic", + "naan" + ] + }, + { + "id": 46647, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "cilantro", + "sour cream", + "ground cumin", + "boneless pork shoulder roast", + "jalapeno chilies", + "salt", + "marjoram", + "green chile", + "ground black pepper", + "garlic", + "onions", + "water", + "tomatillos", + "all-purpose flour", + "chopped cilantro fresh" + ] + }, + { + "id": 26123, + "cuisine": "moroccan", + "ingredients": [ + "crushed tomatoes", + "cinnamon", + "extra-virgin olive oil", + "carrots", + "red lentils", + "fresh lemon", + "cilantro", + "garlic", + "onions", + "ground black pepper", + "sea salt", + "vegetable broth", + "smoked paprika", + "tumeric", + "parsley", + "ginger", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 36781, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "green bell pepper", + "bacon slices", + "garlic cloves", + "chicken broth", + "water", + "salt", + "cooked rice", + "ground red pepper", + "salt pork", + "red kidney beans", + "black pepper", + "smoked sausage", + "onions" + ] + }, + { + "id": 38947, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "water", + "flour tortillas", + "sour cream", + "taco shells", + "refried beans", + "purple onion", + "avocado", + "shredded cheddar cheese", + "taco seasoning mix", + "salt", + "black pepper", + "fresh lime", + "shredded lettuce", + "ground beef" + ] + }, + { + "id": 45730, + "cuisine": "filipino", + "ingredients": [ + "coconut cream", + "dark brown sugar", + "corn syrup" + ] + }, + { + "id": 4068, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "sugar", + "ground coriander", + "kosher salt", + "ground cumin", + "sweet paprika" + ] + }, + { + "id": 47940, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "garlic cloves", + "sugar", + "crushed red pepper", + "tomato sauce", + "italian seasoning" + ] + }, + { + "id": 41044, + "cuisine": "southern_us", + "ingredients": [ + "bacon slices", + "kosher salt", + "collard greens", + "hot sauce", + "water" + ] + }, + { + "id": 113, + "cuisine": "italian", + "ingredients": [ + "chicken breast halves", + "grated lemon peel", + "pesto", + "chopped walnuts", + "lemon wedge", + "olive oil", + "fresh lemon juice" + ] + }, + { + "id": 3606, + "cuisine": "chinese", + "ingredients": [ + "white onion", + "jalapeno chilies", + "garlic", + "tomato paste", + "whole peeled tomatoes", + "sesame oil", + "pork spareribs", + "kosher salt", + "cane vinegar", + "dark brown sugar", + "soy sauce", + "hoisin sauce", + "ginger", + "red bell pepper" + ] + }, + { + "id": 29701, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "water", + "hot sauce", + "kosher salt", + "lemon", + "bay leaves", + "corn grits" + ] + }, + { + "id": 48882, + "cuisine": "chinese", + "ingredients": [ + "Sriracha", + "garlic", + "corn starch", + "fresh basil", + "green onions", + "peanut oil", + "plum tomatoes", + "sugar", + "brown rice", + "oyster sauce", + "cold water", + "pork tenderloin", + "salt", + "ground white pepper" + ] + }, + { + "id": 22607, + "cuisine": "korean", + "ingredients": [ + "sweet rice", + "garlic", + "boneless chicken breast", + "scallions", + "zucchini", + "carrots", + "water", + "salt" + ] + }, + { + "id": 12503, + "cuisine": "vietnamese", + "ingredients": [ + "garlic", + "scallions", + "vietnamese fish sauce", + "vegetable oil", + "japanese eggplants" + ] + }, + { + "id": 32369, + "cuisine": "vietnamese", + "ingredients": [ + "coconut juice", + "water", + "pork loin", + "oil", + "brown sugar", + "asian basil", + "salt", + "rice paper", + "fish sauce", + "pork rind", + "garlic", + "ground white pepper", + "butter lettuce", + "mint leaves", + "rice vinegar" + ] + }, + { + "id": 36836, + "cuisine": "japanese", + "ingredients": [ + "sushi rice", + "rice vinegar", + "caster sugar", + "smoked salmon" + ] + }, + { + "id": 24038, + "cuisine": "indian", + "ingredients": [ + "low sodium vegetable broth", + "diced tomatoes", + "coconut milk", + "pepper", + "extra firm tofu", + "salt", + "onions", + "fresh ginger", + "garlic", + "chopped cilantro", + "curry powder", + "vegetable oil", + "carrots", + "basmati rice" + ] + }, + { + "id": 13367, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "okra", + "corn oil", + "white sugar", + "green bell pepper", + "onions", + "white vinegar", + "bacon" + ] + }, + { + "id": 43460, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "frozen corn", + "sour cream", + "avocado", + "boneless skinless chicken breasts", + "diced tomatoes", + "hot sauce", + "cumin", + "green onions", + "shredded lettuce", + "salsa", + "chopped cilantro", + "chicken stock", + "brown rice", + "salt", + "shredded cheese" + ] + }, + { + "id": 36566, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "ground white pepper", + "egg noodles", + "garlic", + "fillets", + "light soy sauce", + "cornflour", + "beansprouts", + "dark soy sauce", + "spring onions", + "oyster sauce", + "onions" + ] + }, + { + "id": 4341, + "cuisine": "russian", + "ingredients": [ + "coriander seeds", + "garlic cloves", + "cider vinegar", + "cayenne pepper", + "salt", + "onions", + "vegetable oil", + "carrots" + ] + }, + { + "id": 35810, + "cuisine": "japanese", + "ingredients": [ + "large egg whites", + "large eggs", + "sugar", + "mirin", + "scallions", + "reduced sodium soy sauce", + "boneless skinless chicken breasts", + "reduced sodium chicken broth", + "quick cooking brown rice" + ] + }, + { + "id": 17198, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chopped celery", + "chopped parsley", + "avocado", + "chicken breast halves", + "chopped onion", + "orzo pasta", + "cilantro leaves", + "chicken broth", + "garlic", + "lemon juice" + ] + }, + { + "id": 14524, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "olive oil", + "garlic", + "lime juice", + "jalapeno chilies", + "plum tomatoes", + "pita bread", + "lime", + "cilantro", + "kosher salt", + "garlic powder", + "purple onion" + ] + }, + { + "id": 5401, + "cuisine": "southern_us", + "ingredients": [ + "smoked bacon", + "dry white wine", + "salt", + "sliced green onions", + "salted butter", + "butter", + "shrimp", + "shiitake", + "shallots", + "freshly ground pepper", + "water", + "whole milk", + "garlic", + "grits" + ] + }, + { + "id": 37841, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "mirin", + "onions", + "beef", + "white sesame seeds", + "sake", + "sesame oil" + ] + }, + { + "id": 40699, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "fusilli", + "fresh basil leaves", + "roasted pistachios", + "salt", + "lemon wedge", + "garlic cloves", + "fresh parmesan cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 38713, + "cuisine": "italian", + "ingredients": [ + "kale", + "California bay leaves", + "unsalted chicken stock", + "extra-virgin olive oil", + "thyme sprigs", + "pancetta", + "unsalted butter", + "rib", + "parsley sprigs", + "garlic", + "onions" + ] + }, + { + "id": 20255, + "cuisine": "filipino", + "ingredients": [ + "saffron threads", + "lime rind", + "peeled fresh ginger", + "cilantro leaves", + "long grain white rice", + "lower sodium chicken broth", + "water", + "chicken breast halves", + "garlic cloves", + "eggs", + "white onion", + "cilantro stems", + "dark sesame oil", + "sliced green onions", + "fish sauce", + "cream sherry", + "ginger", + "carrots" + ] + }, + { + "id": 1736, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "zucchini", + "bacon", + "kimchi", + "short-grain rice", + "vegetable oil", + "garlic", + "Korean chile flakes", + "ground black pepper", + "fried eggs", + "carrots", + "shiitake", + "spring onions", + "sea salt" + ] + }, + { + "id": 28072, + "cuisine": "southern_us", + "ingredients": [ + "water", + "bay leaves", + "onions", + "ham steak", + "unsalted butter", + "carrots", + "table salt", + "fresh thyme", + "green split peas", + "celery ribs", + "ground black pepper", + "garlic cloves", + "thick-cut bacon" + ] + }, + { + "id": 9523, + "cuisine": "korean", + "ingredients": [ + "dashi", + "hot pepper", + "garlic paste", + "potatoes", + "onions", + "zucchini", + "fresh mushrooms", + "water", + "soft tofu", + "bean curd" + ] + }, + { + "id": 7873, + "cuisine": "greek", + "ingredients": [ + "pepper", + "butter", + "white sugar", + "olive oil", + "salt", + "water", + "lamb shoulder", + "ground cinnamon", + "quinces", + "onions" + ] + }, + { + "id": 22384, + "cuisine": "italian", + "ingredients": [ + "pepper", + "and fat free half half", + "baking potatoes", + "fresh rosemary", + "salt", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 15143, + "cuisine": "italian", + "ingredients": [ + "capers", + "olive oil", + "dijon mustard", + "diced tomatoes", + "garlic", + "flat leaf parsley", + "olives", + "white wine", + "sherry vinegar", + "grated parmesan cheese", + "anchovy paste", + "salt", + "truffle salt", + "fresh oregano leaves", + "radicchio", + "endive", + "crushed red pepper flakes", + "artichokes", + "whole wheat thin spaghetti", + "honey", + "ground black pepper", + "lemon", + "extra-virgin olive oil", + "garlic cloves", + "arugula" + ] + }, + { + "id": 29954, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "water", + "orzo pasta", + "all-purpose flour", + "onions", + "tomato paste", + "salt and ground black pepper", + "chicken stock cubes", + "celery", + "ground ginger", + "olive oil", + "yellow lentils", + "hot water", + "chopped cilantro fresh", + "tomatoes", + "garbanzo beans", + "beef stew meat", + "fresh parsley" + ] + }, + { + "id": 11912, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "salt", + "pepper", + "fresh mozzarella", + "boneless skinless chicken breasts", + "italian seasoning", + "roasted red peppers", + "basil" + ] + }, + { + "id": 15058, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "carrots", + "sugar", + "rice vinegar", + "savoy cabbage", + "chili paste with garlic", + "red bell pepper", + "low sodium soy sauce", + "cilantro leaves", + "somen" + ] + }, + { + "id": 49603, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "vegetable oil", + "green beans", + "curry leaves", + "fenugreek", + "tamarind paste", + "red chili peppers", + "yellow lentils", + "asafoetida", + "shallots", + "black mustard seeds" + ] + }, + { + "id": 19075, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "extra-virgin olive oil", + "grated parmesan cheese", + "spaghetti", + "kosher salt", + "garlic cloves", + "loosely packed fresh basil leaves" + ] + }, + { + "id": 9054, + "cuisine": "italian", + "ingredients": [ + "sugar", + "ground black pepper", + "red pepper flakes", + "penne pasta", + "sage", + "ground ginger", + "kosher salt", + "boneless skinless chicken breasts", + "paprika", + "cream cheese", + "black pepper", + "grated parmesan cheese", + "bacon", + "sauce", + "chicken", + "rub", + "garlic powder", + "onion powder", + "salt", + "heavy whipping cream" + ] + }, + { + "id": 2328, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "olive oil flavored cooking spray", + "baguette", + "shallots", + "fresh parsley", + "fresh basil", + "mushrooms", + "garlic cloves", + "olive oil", + "crumbled ricotta salata cheese", + "fresh basil leaves" + ] + }, + { + "id": 10218, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "green onions", + "salt", + "fat free less sodium chicken broth", + "frozen whole kernel corn", + "butter", + "chopped cilantro fresh", + "olive oil", + "brown rice", + "fresh lime juice", + "black beans", + "ground black pepper", + "diced tomatoes", + "ground cumin" + ] + }, + { + "id": 48565, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "olive oil", + "russet potatoes", + "green chilies", + "ground cumin", + "kosher salt", + "mint leaves", + "ground tumeric", + "lemon juice", + "plain yogurt", + "large eggs", + "cilantro", + "peanut oil", + "spanish onion", + "chili powder", + "purple onion", + "panko breadcrumbs" + ] + }, + { + "id": 35868, + "cuisine": "italian", + "ingredients": [ + "capers", + "pecorino romano cheese", + "olive oil", + "low salt chicken broth", + "kosher salt", + "garlic cloves", + "russet potatoes", + "onions" + ] + }, + { + "id": 28845, + "cuisine": "british", + "ingredients": [ + "vegetable shortening", + "baking soda", + "salt", + "old-fashioned oats", + "all-purpose flour", + "sugar", + "buttermilk" + ] + }, + { + "id": 31384, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "orange juice", + "shredded carrots", + "sliced green onions", + "rice vinegar", + "reduced-sodium tamari sauce", + "lemon juice" + ] + }, + { + "id": 19106, + "cuisine": "italian", + "ingredients": [ + "spanish onion", + "finely chopped fresh parsley", + "yellow bell pepper", + "kosher salt", + "ground black pepper", + "grated parmesan cheese", + "rotini", + "olive oil", + "green bell pepper, slice", + "garlic cloves", + "crushed tomatoes", + "broiler chicken", + "crimini mushrooms" + ] + }, + { + "id": 9588, + "cuisine": "irish", + "ingredients": [ + "tomato paste", + "vegetable oil", + "carrots", + "frozen peas", + "unsalted butter", + "salt", + "ground beef", + "milk", + "russet potatoes", + "flat leaf parsley", + "fresh thyme leaves", + "beef broth", + "onions" + ] + }, + { + "id": 6824, + "cuisine": "italian", + "ingredients": [ + "sliced almonds", + "leaves", + "brie cheese", + "cauliflower", + "water", + "dry white wine", + "reduced sodium chicken broth", + "unsalted butter", + "thyme sprigs", + "arborio rice", + "olive oil", + "florets" + ] + }, + { + "id": 22835, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "jasmine rice", + "vegetable stock", + "firm tofu", + "red bell pepper", + "unsweetened coconut milk", + "fish sauce", + "shallots", + "chile de arbol", + "kabocha squash", + "fresh basil", + "peanuts", + "ginger", + "tamarind concentrate", + "fresh lime juice", + "cauliflower", + "kosher salt", + "vegetable oil", + "acorn squash", + "carrots" + ] + }, + { + "id": 10120, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "salt", + "onions", + "beans", + "garam masala", + "garlic cloves", + "red chili powder", + "olive oil", + "green chilies", + "ground cumin", + "rolled oats", + "yellow bell pepper", + "fresh mint" + ] + }, + { + "id": 533, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "creole seasoning", + "minced garlic", + "worcestershire sauce", + "jumbo shrimp", + "french bread", + "fresh lemon juice", + "ground black pepper", + "cracked black pepper" + ] + }, + { + "id": 13926, + "cuisine": "french", + "ingredients": [ + "fennel bulb", + "shells", + "flat leaf parsley", + "whole peeled tomatoes", + "orange juice", + "saffron", + "olive oil", + "garlic", + "juice", + "orange zest", + "seafood stock", + "halibut", + "onions" + ] + }, + { + "id": 22763, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "sweetened condensed milk", + "vanilla extract", + "evaporated milk", + "white sugar" + ] + }, + { + "id": 49261, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cilantro leaves", + "chipotle paste", + "romaine lettuce", + "garlic", + "rice", + "avocado", + "roma tomatoes", + "salsa", + "sour cream", + "black beans", + "salt", + "whole kernel corn, drain" + ] + }, + { + "id": 27028, + "cuisine": "french", + "ingredients": [ + "salt", + "sherry", + "green beans", + "shallots", + "grated orange", + "unsalted butter", + "freshly ground pepper" + ] + }, + { + "id": 37074, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "sea salt", + "onions", + "fresh basil", + "large eggs", + "extra-virgin olive oil", + "dried oregano", + "water", + "potatoes", + "flat leaf parsley", + "celery ribs", + "parmigiano reggiano cheese", + "cracked black pepper", + "plum tomatoes" + ] + }, + { + "id": 28776, + "cuisine": "irish", + "ingredients": [ + "pepper", + "salt", + "beer", + "Jameson Irish Whiskey", + "honey", + "cream cheese", + "brown mustard", + "dried thyme", + "cayenne pepper", + "onions", + "sugar", + "butter", + "sharp cheddar cheese" + ] + }, + { + "id": 27348, + "cuisine": "italian", + "ingredients": [ + "italian style stewed tomatoes", + "garlic", + "ground black pepper", + "sliced carrots", + "chopped cilantro fresh", + "sausage links", + "zucchini", + "beef broth", + "great northern beans", + "white hominy", + "salt" + ] + }, + { + "id": 2073, + "cuisine": "indian", + "ingredients": [ + "flour", + "cream", + "ghee", + "sugar", + "salt", + "water", + "yeast" + ] + }, + { + "id": 42557, + "cuisine": "thai", + "ingredients": [ + "warm water", + "scallions", + "sambal ulek", + "lime juice", + "soy sauce", + "sugar", + "chunky peanut butter" + ] + }, + { + "id": 47970, + "cuisine": "thai", + "ingredients": [ + "sake", + "cooking spray", + "salt", + "bok choy", + "canola oil", + "brown sugar", + "ground black pepper", + "light coconut milk", + "Thai fish sauce", + "basmati rice", + "water", + "green onions", + "red curry paste", + "chopped cilantro fresh", + "salmon fillets", + "peeled fresh ginger", + "seasoned rice wine vinegar", + "fresh lime juice" + ] + }, + { + "id": 43639, + "cuisine": "japanese", + "ingredients": [ + "chinese mustard", + "ramen noodles", + "white sugar", + "chicken stock", + "soy sauce", + "carrots", + "eggs", + "sesame oil", + "cucumber", + "white vinegar", + "cooked ham", + "chili oil", + "nori" + ] + }, + { + "id": 28787, + "cuisine": "southern_us", + "ingredients": [ + "unflavored gelatin", + "granulated sugar", + "heavy cream", + "pure vanilla extract", + "sugar", + "baking powder", + "cream cheese", + "pecans", + "dark rum", + "praline syrup", + "eggs", + "water", + "bourbon whiskey", + "confectioners sugar" + ] + }, + { + "id": 17684, + "cuisine": "italian", + "ingredients": [ + "hot cocoa mix", + "skim milk", + "instant espresso", + "sugar", + "crushed ice", + "water", + "boiling water" + ] + }, + { + "id": 44261, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "white cornmeal", + "butter", + "buttermilk", + "large eggs" + ] + }, + { + "id": 21039, + "cuisine": "british", + "ingredients": [ + "sugar", + "strawberries", + "heavy cream", + "chambord" + ] + }, + { + "id": 7732, + "cuisine": "southern_us", + "ingredients": [ + "red potato", + "Dungeness crabs", + "sea salt", + "sausage links", + "lemon", + "bulb", + "vidalia onion", + "Pale Ale", + "garlic", + "corn", + "old bay seasoning" + ] + }, + { + "id": 17151, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "butter", + "coconut milk", + "shredded coconut", + "salt", + "sugar", + "vanilla", + "sweet rice flour", + "baking powder", + "sour cream" + ] + }, + { + "id": 35432, + "cuisine": "southern_us", + "ingredients": [ + "salt free herb seasoning", + "salt and ground black pepper", + "oil", + "eggs", + "all-purpose flour", + "veal cutlets" + ] + }, + { + "id": 43101, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "chicken broth", + "potatoes", + "evaporated milk", + "corn kernel whole", + "white onion", + "butter" + ] + }, + { + "id": 37939, + "cuisine": "italian", + "ingredients": [ + "fettuccine pasta", + "feta cheese crumbles", + "fresh basil", + "extra-virgin olive oil", + "pitted kalamata olives", + "purple onion", + "tomatoes", + "ground black pepper" + ] + }, + { + "id": 27401, + "cuisine": "filipino", + "ingredients": [ + "water", + "salt", + "noodles", + "spring roll wrappers", + "pork sirloin", + "oil", + "cabbage", + "ground black pepper", + "all-purpose flour", + "boneless skinless chicken breast halves", + "msg", + "apple cider vinegar", + "carrots", + "chopped garlic" + ] + }, + { + "id": 2463, + "cuisine": "mexican", + "ingredients": [ + "coffee granules", + "cinnamon sticks", + "1% low-fat milk", + "sugar", + "marshmallow creme", + "vanilla extract", + "unsweetened cocoa powder" + ] + }, + { + "id": 32902, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "dried basil", + "bacon", + "cooked white rice", + "tomatoes", + "red pepper", + "okra", + "dried thyme", + "garlic", + "onions" + ] + }, + { + "id": 43590, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "vanilla extract", + "ground cinnamon", + "dry yeast", + "all-purpose flour", + "water", + "salt", + "shortening", + "pumpkin" + ] + }, + { + "id": 12982, + "cuisine": "spanish", + "ingredients": [ + "bottled clam juice", + "kalamata", + "flat leaf parsley", + "mussels", + "zucchini", + "purple onion", + "clams", + "fennel", + "extra-virgin olive oil", + "chorizo sausage", + "tomatoes", + "dry white wine", + "red bell pepper" + ] + }, + { + "id": 7517, + "cuisine": "irish", + "ingredients": [ + "sugar", + "butter", + "grated orange", + "baking soda", + "salt", + "milk", + "buttermilk", + "dried cranberries", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 37578, + "cuisine": "italian", + "ingredients": [ + "low-fat buttermilk", + "grated lemon zest", + "unflavored gelatin", + "whole milk", + "apple juice", + "sugar", + "mint sprigs", + "fresh lemon juice", + "cooking spray", + "blueberries" + ] + }, + { + "id": 5189, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "red pepper flakes", + "unsalted cashews", + "garlic", + "reduced sodium soy sauce", + "ginger", + "brown sugar", + "chicken breasts", + "rice vinegar" + ] + }, + { + "id": 10918, + "cuisine": "british", + "ingredients": [ + "salt", + "white sugar", + "cream cheese", + "heavy cream" + ] + }, + { + "id": 46304, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "lean ground beef", + "fresh parsley", + "fresh rosemary", + "grated parmesan cheese", + "Italian seasoned breadcrumbs", + "large eggs", + "cracked black pepper", + "onions", + "fresh basil", + "marinara sauce", + "garlic cloves" + ] + }, + { + "id": 19304, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "carrots", + "plain yogurt", + "peeled fresh ginger", + "onions", + "yellow mustard seeds", + "coriander seeds", + "grate lime peel", + "coconut oil", + "lime", + "low salt chicken broth" + ] + }, + { + "id": 48748, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "ground cayenne pepper", + "sugar", + "frozen corn kernels", + "salt", + "coconut milk", + "olive oil", + "corn starch" + ] + }, + { + "id": 13608, + "cuisine": "mexican", + "ingredients": [ + "sesame", + "boneless skinless chicken breasts", + "stir fry sauce", + "soy sauce", + "slaw mix", + "sauce", + "coleslaw dressing", + "wonton wrappers", + "onion tops", + "olive oil", + "cilantro" + ] + }, + { + "id": 29729, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "diced tomatoes", + "oil", + "jalapeno chilies", + "beef broth", + "cumin", + "poblano peppers", + "salt", + "oregano", + "black beans", + "chili powder", + "green chilies", + "beef roast" + ] + }, + { + "id": 25168, + "cuisine": "greek", + "ingredients": [ + "water", + "pita bread rounds", + "salt", + "olive oil", + "coarse salt", + "honey", + "tahini", + "lemon juice", + "fresh rosemary", + "garbanzo beans", + "garlic" + ] + }, + { + "id": 35718, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "sugar", + "white hominy", + "coarse salt", + "roasting chickens", + "red bell pepper", + "chopped cilantro", + "ground cumin", + "ground cinnamon", + "kale", + "flour tortillas", + "yellow onion", + "scallions", + "fresh lime juice", + "canola oil", + "chicken stock", + "chipotle chile", + "radishes", + "tomatoes with juice", + "ground coriander", + "poblano chiles", + "dried oregano", + "cremini mushrooms", + "ground black pepper", + "jalapeno chilies", + "goat cheese", + "garlic cloves", + "adobo sauce", + "orange zest" + ] + }, + { + "id": 31847, + "cuisine": "irish", + "ingredients": [ + "powdered sugar", + "all-purpose flour", + "butter", + "salt", + "baking powder" + ] + }, + { + "id": 49192, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "milk", + "salt", + "pork sausages", + "chicken broth", + "ground nutmeg", + "fresh parsley", + "cornbread", + "dried thyme", + "chopped pecans", + "pepper", + "dry sherry", + "onions" + ] + }, + { + "id": 3795, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "apples", + "brandy", + "lemon juice", + "brown sugar", + "salt", + "nutmeg", + "cinnamon", + "panko breadcrumbs" + ] + }, + { + "id": 9204, + "cuisine": "italian", + "ingredients": [ + "water", + "cinnamon", + "ricotta", + "candied orange peel", + "unsalted butter", + "fine sea salt", + "lard", + "semolina flour", + "granulated sugar", + "all-purpose flour", + "large egg yolks", + "vanilla", + "confectioners sugar" + ] + }, + { + "id": 45881, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "kosher salt", + "butter", + "white wine", + "dried basil", + "saffron", + "clams", + "bottled clam juice", + "ground black pepper", + "salmon", + "water", + "yellow onion" + ] + }, + { + "id": 36216, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "olive oil", + "pecorino romano cheese", + "mozzarella cheese", + "ricotta cheese", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 28814, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "unsalted butter", + "all-purpose flour", + "milk", + "baking powder", + "firmly packed brown sugar", + "granulated sugar", + "strawberries", + "peaches", + "salt" + ] + }, + { + "id": 33528, + "cuisine": "southern_us", + "ingredients": [ + "fresh dill", + "garlic powder", + "large eggs", + "vegetable oil", + "cayenne pepper", + "sugar", + "ground black pepper", + "baking powder", + "buttermilk", + "chicken thighs", + "kosher salt", + "unsalted butter", + "onion powder", + "all-purpose flour", + "cheddar cheese", + "baking soda", + "gravy", + "vegetable shortening", + "peanut oil" + ] + }, + { + "id": 29364, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "taco seasoning mix", + "all-purpose flour", + "shredded cheddar cheese", + "shredded lettuce", + "pinto beans", + "picante sauce", + "baking powder", + "oil", + "milk", + "salt", + "ground beef" + ] + }, + { + "id": 7826, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "butter", + "Daisy Sour Cream", + "flour", + "chopped pecans", + "granulated sugar", + "vanilla extract", + "eggs", + "sweet potatoes" + ] + }, + { + "id": 21250, + "cuisine": "thai", + "ingredients": [ + "fresh red chili", + "fish sauce", + "lime juice", + "sauce", + "fresh basil", + "red chili peppers", + "stir fry sauce", + "oyster sauce", + "eggs", + "brown sugar", + "green onions", + "oil", + "chicken stock", + "dark soy sauce", + "pork", + "garlic" + ] + }, + { + "id": 1533, + "cuisine": "indian", + "ingredients": [ + "dumpling wrappers", + "cilantro", + "cayenne pepper", + "black pepper", + "garam masala", + "garlic", + "chopped cilantro fresh", + "curry powder", + "green onions", + "salt", + "ginger paste", + "tomatoes", + "olive oil", + "ground pork", + "onions" + ] + }, + { + "id": 40379, + "cuisine": "indian", + "ingredients": [ + "curry paste", + "boneless skinless chicken breasts", + "olive oil", + "onions", + "diced tomatoes" + ] + }, + { + "id": 25359, + "cuisine": "cajun_creole", + "ingredients": [ + "corn", + "tomatoes", + "smoked sausage", + "seasoning", + "garlic", + "pepper", + "rice" + ] + }, + { + "id": 25541, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "fresh herbs", + "extra-virgin olive oil", + "ground black pepper", + "fat", + "grated lemon zest" + ] + }, + { + "id": 47301, + "cuisine": "italian", + "ingredients": [ + "eggs", + "garlic", + "onions", + "bread crumb fresh", + "fresh parsley", + "ketchup", + "ground beef", + "tomato sauce", + "carrots", + "white sugar" + ] + }, + { + "id": 484, + "cuisine": "irish", + "ingredients": [ + "chicken stock", + "leeks", + "salt", + "onions", + "pepper", + "bacon", + "thyme", + "black pepper", + "bay leaves", + "beer", + "pork sausages", + "soda bread", + "potatoes", + "garlic", + "flat leaf parsley" + ] + }, + { + "id": 19442, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "corn starch", + "salt", + "water", + "soy sauce", + "broth" + ] + }, + { + "id": 28913, + "cuisine": "british", + "ingredients": [ + "pitted date", + "large eggs", + "vanilla extract", + "baking soda", + "light corn syrup", + "all-purpose flour", + "golden brown sugar", + "baking powder", + "salt", + "sugar", + "unsalted butter", + "whipping cream", + "boiling water" + ] + }, + { + "id": 30029, + "cuisine": "greek", + "ingredients": [ + "marinara sauce", + "pepper", + "feta cheese crumbles", + "lamb steaks", + "part-skim mozzarella cheese", + "thin pizza crust" + ] + }, + { + "id": 14045, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chicken breasts", + "garlic", + "cumin", + "brown sugar", + "lime", + "vegetable oil", + "cayenne pepper", + "avocado", + "fresh cilantro", + "chili powder", + "salt", + "kosher salt", + "low-fat greek yogurt", + "paprika", + "chipotles in adobo" + ] + }, + { + "id": 28594, + "cuisine": "vietnamese", + "ingredients": [ + "lettuce", + "peanuts", + "red pepper flakes", + "beansprouts", + "white sugar", + "lime juice", + "radishes", + "garlic", + "medium shrimp", + "fish sauce", + "thai basil", + "rice vermicelli", + "chopped cilantro", + "canola oil", + "white vinegar", + "pickled carrots", + "shallots", + "english cucumber", + "chopped fresh mint" + ] + }, + { + "id": 37893, + "cuisine": "french", + "ingredients": [ + "sugar", + "unsalted butter", + "edible flowers", + "tart apples", + "pastry", + "anise", + "apple brandy" + ] + }, + { + "id": 43938, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salted butter", + "bourbon whiskey", + "buttermilk", + "corn starch", + "cold water", + "honey", + "cayenne", + "onion powder", + "cayenne pepper", + "panko breadcrumbs", + "corn", + "garlic powder", + "chili powder", + "salt", + "smoked paprika", + "soy sauce", + "whole wheat flour", + "dijon mustard", + "Tabasco Pepper Sauce", + "bbq sauce", + "chicken" + ] + }, + { + "id": 15518, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "sweetened condensed milk", + "salt and ground black pepper", + "white cheddar cheese", + "shredded cheddar cheese", + "summer squash", + "zucchini", + "onions" + ] + }, + { + "id": 12063, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "salt", + "onion powder", + "oregano", + "chili powder", + "cayenne pepper", + "pepper", + "red pepper flakes", + "cumin" + ] + }, + { + "id": 14642, + "cuisine": "italian", + "ingredients": [ + "warm water", + "salt", + "olive oil", + "bread flour", + "water", + "all-purpose flour", + "fresh rosemary", + "dry yeast" + ] + }, + { + "id": 13144, + "cuisine": "southern_us", + "ingredients": [ + "sweet potatoes", + "white sugar", + "ground cinnamon", + "vanilla extract", + "butter", + "ground nutmeg", + "salt" + ] + }, + { + "id": 13448, + "cuisine": "thai", + "ingredients": [ + "tomatoes", + "lemongrass", + "light coconut milk", + "fish sauce", + "green onions", + "chopped cilantro fresh", + "kaffir lime leaves", + "shiitake", + "fresh lime juice", + "fat free less sodium chicken broth", + "chile pepper", + "large shrimp" + ] + }, + { + "id": 7527, + "cuisine": "chinese", + "ingredients": [ + "ground turkey breast", + "green peas", + "garlic cloves", + "sugar", + "cooking spray", + "salt", + "ground white pepper", + "low sodium soy sauce", + "hoisin sauce", + "crushed red pepper", + "corn starch", + "water", + "green onions", + "rice vinegar" + ] + }, + { + "id": 15467, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "garlic", + "kosher salt", + "large eggs", + "chinese chives", + "baking soda", + "ground white pepper", + "milk", + "vegetable oil", + "medium shrimp" + ] + }, + { + "id": 39006, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken skinless thigh", + "crushed tomatoes", + "kosher salt", + "ground cumin", + "black pepper", + "salsa", + "chili pepper" + ] + }, + { + "id": 38342, + "cuisine": "chinese", + "ingredients": [ + "chicken wings", + "sesame oil", + "light soy sauce", + "water", + "crushed garlic", + "dark soy sauce", + "green onions" + ] + }, + { + "id": 29490, + "cuisine": "italian", + "ingredients": [ + "capers", + "lemon slices", + "butter", + "fresh parsley", + "chicken stock", + "Sicilian olives", + "boneless skinless chicken breast halves", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 15854, + "cuisine": "thai", + "ingredients": [ + "green onions", + "roasted peanuts", + "Italian cheese", + "baked pizza crust", + "boneless skinless chicken breast halves", + "peanut sauce", + "beansprouts", + "shredded carrots", + "peanut butter" + ] + }, + { + "id": 13406, + "cuisine": "italian", + "ingredients": [ + "blue cheese dressing", + "angel hair", + "boneless skinless chicken breast halves", + "Alfredo sauce", + "fresh tomatoes", + "steak seasoning" + ] + }, + { + "id": 18979, + "cuisine": "british", + "ingredients": [ + "pesto sauce", + "puff pastry", + "marmite", + "relish", + "sundried tomato paste", + "mature cheddar", + "flour" + ] + }, + { + "id": 28561, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "sour cream", + "lettuce", + "cream of chicken soup", + "green chilies", + "shredded cheddar cheese", + "salsa", + "corn tortillas", + "tomatoes", + "cooked chicken", + "enchilada sauce" + ] + }, + { + "id": 47475, + "cuisine": "italian", + "ingredients": [ + "white wine vinegar", + "olive oil", + "oregano", + "water", + "garlic cloves", + "eggplant" + ] + }, + { + "id": 2920, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh basil", + "salt", + "sugar", + "rice vinegar", + "tomatoes", + "purple onion" + ] + }, + { + "id": 44440, + "cuisine": "thai", + "ingredients": [ + "sugar", + "minced garlic", + "rice noodles", + "peanut butter", + "eggs", + "ketchup", + "peanuts", + "crushed red pepper flakes", + "sliced green onions", + "soy sauce", + "lime", + "cilantro", + "beansprouts", + "fish sauce", + "white onion", + "boneless skinless chicken breasts", + "salt" + ] + }, + { + "id": 48394, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "fresh ginger", + "white wine", + "scallions", + "soy sauce", + "garlic", + "sea bass", + "olive oil" + ] + }, + { + "id": 37306, + "cuisine": "chinese", + "ingredients": [ + "granulated sugar", + "boneless skinless chicken breasts", + "rice vinegar", + "chicken broth", + "green onions", + "coarse salt", + "corn starch", + "peeled fresh ginger", + "vegetable oil", + "garlic cloves", + "soy sauce", + "unsalted cashews", + "dry sherry" + ] + }, + { + "id": 41974, + "cuisine": "filipino", + "ingredients": [ + "water", + "pork spareribs", + "sweet chili sauce", + "salt and ground black pepper" + ] + }, + { + "id": 8601, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "kosher salt", + "sesame oil", + "medium shrimp", + "soy sauce", + "ground black pepper", + "frozen corn", + "frozen peas", + "cooked rice", + "olive oil", + "garlic", + "onions", + "white pepper", + "green onions", + "carrots" + ] + }, + { + "id": 950, + "cuisine": "southern_us", + "ingredients": [ + "au jus gravy mix", + "butter", + "gravy master", + "pork spare ribs", + "hot sauce", + "Jack Daniels Whiskey", + "pepperoncini", + "water", + "ranch dressing", + "corn starch" + ] + }, + { + "id": 25015, + "cuisine": "mexican", + "ingredients": [ + "guajillo chiles", + "cinnamon", + "ancho chile pepper", + "cumin", + "agave nectar", + "salt", + "boned lamb shoulder", + "water", + "garlic", + "onions", + "brewed coffee", + "carrots", + "oregano" + ] + }, + { + "id": 5437, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "spaghetti", + "bread crumb fresh", + "anchovy fillets", + "large garlic cloves", + "flat leaf parsley", + "red chili peppers", + "salt" + ] + }, + { + "id": 2093, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "water", + "deveined shrimp", + "onions", + "soy sauce", + "hot chili oil", + "roasted peanuts", + "minced garlic", + "balsamic vinegar", + "corn starch", + "pepper", + "sesame oil", + "scallions" + ] + }, + { + "id": 45221, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "sesame oil", + "bottled chili sauce", + "peeled fresh ginger", + "garlic chili sauce", + "sherry", + "chinese five-spice powder", + "pork baby back ribs", + "onion powder" + ] + }, + { + "id": 41875, + "cuisine": "mexican", + "ingredients": [ + "powdered sugar", + "light corn syrup", + "unsweetened chocolate", + "unsweetened cocoa powder", + "instant espresso powder", + "vanilla extract", + "chopped pecans", + "ground cinnamon", + "unsalted butter", + "cookie crumbs", + "boiling water", + "sugar", + "whipping cream", + "caramel ice cream" + ] + }, + { + "id": 8616, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "grated lemon peel", + "flat leaf parsley", + "garlic cloves", + "campanelle" + ] + }, + { + "id": 39838, + "cuisine": "southern_us", + "ingredients": [ + "coconut milk", + "Jell-O Gelatin", + "cream style corn", + "agar" + ] + }, + { + "id": 39322, + "cuisine": "mexican", + "ingredients": [ + "boneless, skinless chicken breast", + "radishes", + "chipotles in adobo", + "sugar", + "refried beans", + "knorr chicken flavor bouillon", + "chopped cilantro fresh", + "lime juice", + "garlic", + "onions", + "tostadas", + "olive oil", + "hellmann' or best food real mayonnais", + "mango" + ] + }, + { + "id": 23897, + "cuisine": "french", + "ingredients": [ + "butter", + "cayenne", + "lemon juice", + "dijon mustard", + "large egg yolks", + "salt" + ] + }, + { + "id": 38199, + "cuisine": "indian", + "ingredients": [ + "water", + "all-purpose flour", + "vegetable oil", + "rice flour", + "whole wheat flour", + "chapati flour", + "salt" + ] + }, + { + "id": 1548, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "lime", + "hass avocado" + ] + }, + { + "id": 21047, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "shallots", + "oleo", + "half & half", + "parmesan cheese", + "shrimp" + ] + }, + { + "id": 33428, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "tomatillos", + "habanero chile", + "onions", + "garlic" + ] + }, + { + "id": 19778, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "orange bell pepper", + "chili powder", + "cayenne pepper", + "cashew nuts", + "coconut oil", + "green lentil", + "fine sea salt", + "vegan Worcestershire sauce", + "tomato paste", + "garlic powder", + "red pepper", + "walnuts", + "ground cumin", + "water", + "tortillas", + "purple onion", + "fresh lime juice" + ] + }, + { + "id": 6513, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "mint leaves", + "daikon", + "rice vinegar", + "carrots", + "skirt steak", + "lettuce", + "lime juice", + "bawang goreng", + "cilantro sprigs", + "scallions", + "beansprouts", + "red chili peppers", + "basil leaves", + "ginger", + "roasted peanuts", + "cucumber", + "perilla", + "light brown sugar", + "lemon grass", + "vegetable oil", + "rice vermicelli", + "garlic cloves", + "bird chile" + ] + }, + { + "id": 21849, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "soy sauce", + "flour", + "lemon", + "corn starch", + "brown sugar", + "minced garlic", + "boneless skinless chicken breasts", + "purple onion", + "eggs", + "ketchup", + "green onions", + "ginger", + "canola oil", + "sake", + "cherry tomatoes", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 46002, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "coarse salt", + "water", + "garlic cloves", + "white onion", + "vine tomatoes", + "jalapeno chilies" + ] + }, + { + "id": 42939, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "steak", + "cooking oil", + "shallots", + "chili flakes", + "dark brown sugar" + ] + }, + { + "id": 7076, + "cuisine": "mexican", + "ingredients": [ + "triple sec", + "sugar", + "blackberries", + "tequila", + "lime" + ] + }, + { + "id": 16829, + "cuisine": "french", + "ingredients": [ + "orange", + "salt", + "orange marmalade", + "sugar", + "whole milk", + "short-grain rice" + ] + }, + { + "id": 26718, + "cuisine": "brazilian", + "ingredients": [ + "brazil nuts", + "berries", + "medjool date", + "sliced fresh fruit", + "seeds", + "chia seeds", + "açai", + "beets", + "coconut flakes", + "frozen mixed berries", + "coconut milk" + ] + }, + { + "id": 49274, + "cuisine": "italian", + "ingredients": [ + "ricotta salata", + "extra-virgin olive oil", + "spaghettini", + "eggplant", + "freshly ground pepper", + "cherry tomatoes", + "salt", + "basil leaves", + "garlic cloves" + ] + }, + { + "id": 13601, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "chicken gizzards", + "smoked paprika", + "black pepper", + "hot sauce", + "self rising flour", + "Everglades Seasoning" + ] + }, + { + "id": 41819, + "cuisine": "mexican", + "ingredients": [ + "lettuce leaves", + "chicken", + "salt", + "flour tortillas", + "plum tomatoes", + "avocado", + "fresh lime juice" + ] + }, + { + "id": 29664, + "cuisine": "mexican", + "ingredients": [ + "cracked black pepper", + "olive oil", + "salsa", + "salt", + "yellowtail snapper fillets" + ] + }, + { + "id": 8464, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "pearl barley", + "andouille sausage", + "garlic", + "celery", + "Tabasco Pepper Sauce", + "yellow onion", + "chicken thighs", + "green bell pepper", + "diced tomatoes", + "scallions" + ] + }, + { + "id": 20566, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "ground cumin", + "kosher salt", + "ground red pepper", + "ground black pepper", + "dried thyme", + "paprika" + ] + }, + { + "id": 45645, + "cuisine": "southern_us", + "ingredients": [ + "red potato", + "cider vinegar", + "kosher salt", + "sugar", + "salt pork", + "collard greens", + "baking soda" + ] + }, + { + "id": 2378, + "cuisine": "japanese", + "ingredients": [ + "tumeric", + "potatoes", + "methi", + "amchur", + "salt", + "water", + "vegetable oil", + "ground cumin", + "whole wheat flour", + "green chilies" + ] + }, + { + "id": 11303, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "salt", + "cumin", + "shredded cheddar cheese", + "green onions", + "Neufchâtel", + "black beans", + "ground pepper", + "shredded pepper jack cheese", + "refried beans", + "prepar salsa", + "pinto beans" + ] + }, + { + "id": 43978, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "shallots", + "white mushrooms", + "chicken broth", + "dry white wine", + "portabello mushroom", + "arborio rice", + "grated parmesan cheese", + "butter", + "olive oil", + "chives", + "sea salt" + ] + }, + { + "id": 604, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "lean ground beef", + "onions", + "tomato paste", + "eggplant", + "garlic", + "dried oregano", + "water", + "grated parmesan cheese", + "dry bread crumbs", + "dried thyme", + "diced tomatoes", + "dried parsley" + ] + }, + { + "id": 16263, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "Shaoxing wine", + "garlic", + "corn starch", + "water", + "sesame oil", + "oil", + "soy sauce", + "boneless skinless chicken breasts", + "salt", + "ground white pepper", + "chicken stock", + "egg noodles", + "choy sum", + "oyster sauce" + ] + }, + { + "id": 21309, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "bay leaves", + "thyme", + "white vinegar", + "pepper", + "salt", + "oregano", + "chicken bouillon", + "avocado leaves", + "onions", + "tomatoes", + "beef", + "garlic cloves", + "cumin" + ] + }, + { + "id": 2969, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "corn tortillas", + "sausage casings", + "hot sauce", + "green onions", + "chopped cilantro fresh", + "extra sharp white cheddar cheese", + "sour cream" + ] + }, + { + "id": 20321, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "olive oil", + "crumbled cornbread", + "andouille sausage", + "cajun seasoning", + "smoked gouda", + "diced onions", + "minced garlic", + "butter", + "sliced green onions", + "diced bell pepper", + "parsley", + "diced celery" + ] + }, + { + "id": 2836, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "ground cinnamon", + "baking mix", + "milk" + ] + }, + { + "id": 45876, + "cuisine": "italian", + "ingredients": [ + "sugar", + "semisweet chocolate", + "salt", + "large egg yolks", + "dark rum", + "slivered almonds", + "coffee granules", + "almond extract", + "marsala wine", + "whole milk", + "corn starch" + ] + }, + { + "id": 31208, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "radishes", + "diced tomatoes", + "cilantro leaves", + "ground coriander", + "green cabbage", + "salsa verde", + "vegetable oil", + "garlic", + "tortilla chips", + "ground cumin", + "green chile", + "hominy", + "queso fresco", + "purple onion", + "rotisserie chicken", + "avocado", + "lime", + "low sodium chicken broth", + "cracked black pepper", + "yellow onion", + "dried oregano" + ] + }, + { + "id": 1267, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "olive oil", + "garlic cloves", + "ground turmeric", + "salmon fillets", + "chili powder", + "chopped cilantro fresh", + "brown sugar", + "cooking spray", + "onions", + "ground cumin", + "cider vinegar", + "salt", + "basmati rice" + ] + }, + { + "id": 17101, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "frozen corn", + "sour cream", + "fresh cilantro", + "shredded lettuce", + "Mexican cheese", + "ground cumin", + "black beans", + "lean ground beef", + "taco seasoning reduced sodium", + "italian salad dressing", + "tomatoes", + "chips", + "salsa", + "onions" + ] + }, + { + "id": 30477, + "cuisine": "cajun_creole", + "ingredients": [ + "mushroom soup", + "Tabasco Pepper Sauce", + "crabmeat", + "onions", + "cracker crumbs", + "cheese", + "celery", + "cooked rice", + "butter", + "cream cheese", + "garlic salt", + "mushrooms", + "red pepper", + "shrimp" + ] + }, + { + "id": 7131, + "cuisine": "filipino", + "ingredients": [ + "ampalaya", + "roma tomatoes", + "medium shrimp", + "pepper", + "salt", + "fish sauce", + "garlic", + "onions", + "eggs", + "water", + "oil" + ] + }, + { + "id": 44936, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "diced tomatoes", + "sour cream", + "zucchini", + "salsa", + "dried oregano", + "frozen whole kernel corn", + "sweet pepper", + "celery", + "black beans", + "chili powder", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 41398, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "pasta sauce", + "fresh parsley", + "fresh basil", + "salt", + "pepper", + "onions" + ] + }, + { + "id": 19596, + "cuisine": "irish", + "ingredients": [ + "milk", + "salt", + "mashed potatoes", + "baking powder", + "onions", + "eggs", + "butter", + "potatoes", + "all-purpose flour" + ] + }, + { + "id": 42002, + "cuisine": "southern_us", + "ingredients": [ + "winter squash", + "half & half", + "fresh thyme leaves", + "aleppo pepper", + "unsalted butter", + "baking powder", + "kosher salt", + "large eggs", + "cubed bread", + "yellow corn meal", + "ground black pepper", + "leeks", + "gruyere cheese" + ] + }, + { + "id": 33036, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime", + "Thai red curry paste", + "long grain brown rice", + "red chili peppers", + "sweet potatoes", + "purple onion", + "coconut milk", + "baby bok choy", + "fresh ginger", + "garlic", + "red bell pepper", + "safflower oil", + "boneless skinless chicken breasts", + "cilantro leaves", + "baby eggplants" + ] + }, + { + "id": 44431, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "chopped cilantro fresh", + "chicken broth", + "jalapeno chilies", + "sliced green onions", + "kaffir lime leaves", + "cilantro leaves", + "fresh ginger", + "asian fish sauce" + ] + }, + { + "id": 43719, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "oil", + "tomatoes", + "salt", + "onions", + "minced garlic", + "cilantro leaves", + "masala", + "minced ginger", + "chickpeas" + ] + }, + { + "id": 34514, + "cuisine": "italian", + "ingredients": [ + "frozen ravioli", + "pasta sauce", + "mozzarella cheese" + ] + }, + { + "id": 30520, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium soy sauce", + "carrots", + "fresh ginger", + "garlic", + "bok choy", + "lime juice", + "promise buttery spread", + "red bell pepper", + "lo mein noodles", + "edamame" + ] + }, + { + "id": 36887, + "cuisine": "korean", + "ingredients": [ + "sugar", + "sesame seeds", + "rice wine", + "ginger", + "scallions", + "kosher salt", + "gochugaru", + "vegetable oil", + "Gochujang base", + "pork shoulder", + "soy sauce", + "asian pear", + "sesame oil", + "yellow onion", + "kimchi", + "minced garlic", + "lettuce leaves", + "sticky rice", + "green chilies" + ] + }, + { + "id": 4765, + "cuisine": "brazilian", + "ingredients": [ + "boneless chicken skinless thigh", + "pimentos", + "chopped cilantro fresh", + "olive oil", + "yellow rice", + "water", + "orange juice", + "grated orange peel", + "orange slices", + "garlic cloves" + ] + }, + { + "id": 42119, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "avocado", + "fresh lime juice", + "salt", + "mayonaise", + "chopped cilantro fresh" + ] + }, + { + "id": 20294, + "cuisine": "japanese", + "ingredients": [ + "konbu", + "dried bonito flakes" + ] + }, + { + "id": 9840, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "boneless skinless chicken breasts", + "garlic", + "cayenne pepper sauce", + "plain yogurt", + "lemon", + "yellow onion", + "marsala wine", + "vegetable oil", + "salt", + "ground cumin", + "fresh ginger", + "paprika", + "ground coriander" + ] + }, + { + "id": 48723, + "cuisine": "french", + "ingredients": [ + "sugar", + "Grand Marnier", + "whole milk", + "large egg yolks", + "grated orange peel", + "whipping cream" + ] + }, + { + "id": 25904, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "garlic salt", + "green onions", + "mango", + "black beans", + "cilantro", + "corn", + "cumin" + ] + }, + { + "id": 20723, + "cuisine": "brazilian", + "ingredients": [ + "milk", + "shredded coconut", + "coconut milk", + "granulated sugar", + "coconut", + "pearl tapioca" + ] + }, + { + "id": 45969, + "cuisine": "italian", + "ingredients": [ + "white wine", + "shallots", + "fresh basil leaves", + "fresh tomatoes", + "light cream", + "beef broth", + "mussels", + "minced garlic", + "butter", + "red chili peppers", + "jalapeno chilies", + "corn starch" + ] + }, + { + "id": 348, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "ham", + "frozen hash browns", + "chopped fresh thyme", + "chopped bell pepper", + "creole seasoning", + "green onions" + ] + }, + { + "id": 4680, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cavolo nero", + "chopped cilantro fresh", + "rib", + "white onion" + ] + }, + { + "id": 18857, + "cuisine": "vietnamese", + "ingredients": [ + "eggs", + "pickled carrots", + "jicama", + "salt", + "broth", + "lettuce", + "minced garlic", + "hoisin sauce", + "daikon", + "shrimp", + "pepper", + "chinese sausage", + "vegetable oil", + "peanut butter", + "sugar", + "peanuts", + "shallots", + "fresh chili", + "rice paper" + ] + }, + { + "id": 10992, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "fresh ginger", + "red pepper flakes", + "orange juice", + "pepper", + "boneless skinless chicken breasts", + "salt", + "reduced sugar orange marmalade", + "eggs", + "low sodium chicken broth", + "garlic", + "corn starch", + "honey", + "vegetable oil", + "all-purpose flour", + "orange zest" + ] + }, + { + "id": 46272, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "coarse kosher salt", + "melted butter", + "baking powder", + "large eggs", + "cornmeal", + "sugar", + "buttermilk" + ] + }, + { + "id": 13748, + "cuisine": "mexican", + "ingredients": [ + "cooking oil", + "garlic cloves", + "water", + "salt", + "dried oregano", + "ground cloves", + "bay leaves", + "chipotle peppers", + "chuck roast", + "sauce", + "ground cumin" + ] + }, + { + "id": 4630, + "cuisine": "mexican", + "ingredients": [ + "cold water", + "fresh lime juice", + "white onion", + "serrano chile", + "kosher salt", + "avocado", + "chopped cilantro fresh" + ] + }, + { + "id": 47461, + "cuisine": "spanish", + "ingredients": [ + "sherry vinegar", + "garlic cloves", + "tomatoes", + "extra-virgin olive oil", + "cucumber", + "celery ribs", + "roasted red peppers", + "lemon juice", + "pepper", + "salt" + ] + }, + { + "id": 39496, + "cuisine": "cajun_creole", + "ingredients": [ + "genoa salami", + "grated parmesan cheese", + "Italian cheese", + "pizza doughs", + "cooked ham", + "pimentos", + "olive oil", + "pickled vegetables" + ] + }, + { + "id": 31137, + "cuisine": "japanese", + "ingredients": [ + "udon", + "peas", + "hoisin sauce", + "shallots", + "toasted sesame seeds", + "dark soy sauce", + "Shaoxing wine", + "scallions", + "sweet soy sauce", + "sesame oil", + "center cut pork chops" + ] + }, + { + "id": 39807, + "cuisine": "japanese", + "ingredients": [ + "avocado", + "carrots", + "nori", + "rice vinegar", + "tuna", + "salt", + "cucumber", + "rice", + "cooked shrimp" + ] + }, + { + "id": 43466, + "cuisine": "mexican", + "ingredients": [ + "queso fresco", + "corn tortillas", + "jalapeno chilies", + "salsa", + "large eggs", + "salt", + "chopped cilantro", + "vegetable oil", + "scallions" + ] + }, + { + "id": 47351, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "chopped cilantro fresh", + "red chili powder", + "peeled shrimp", + "onions", + "vegetable oil", + "coconut milk", + "ground turmeric", + "brown mustard seeds", + "ground coriander", + "basmati rice" + ] + }, + { + "id": 37292, + "cuisine": "thai", + "ingredients": [ + "dried apricot", + "vegetable oil", + "unsweetened coconut milk", + "shallots", + "chicken fingers", + "peeled fresh ginger", + "Thai red curry paste", + "steamed white rice", + "mango chutney", + "chopped cilantro fresh" + ] + }, + { + "id": 24349, + "cuisine": "italian", + "ingredients": [ + "semolina", + "salt", + "powdered sugar", + "large eggs", + "orange zest", + "unsalted butter", + "cornmeal", + "dried currants", + "flour" + ] + }, + { + "id": 14560, + "cuisine": "italian", + "ingredients": [ + "salt", + "romano cheese", + "dried oregano", + "ground black pepper", + "chopped garlic", + "white bread", + "flat leaf parsley" + ] + }, + { + "id": 49682, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "calamansi juice", + "sugar", + "salt", + "powdered sugar", + "butter", + "flour", + "confectioners sugar" + ] + }, + { + "id": 25905, + "cuisine": "southern_us", + "ingredients": [ + "condensed cream of mushroom soup", + "crawfish", + "onions", + "diced tomatoes", + "condensed tomato soup" + ] + }, + { + "id": 12284, + "cuisine": "italian", + "ingredients": [ + "genoa salami", + "large eggs", + "onions", + "swiss chard", + "extra-virgin olive oil", + "ground black pepper", + "garlic cloves", + "kosher salt", + "pecorino romano cheese" + ] + }, + { + "id": 3958, + "cuisine": "chinese", + "ingredients": [ + "frozen chopped spinach", + "chinese plum sauce", + "peeled fresh ginger", + "dry sherry", + "chopped cilantro", + "soy sauce", + "ground black pepper", + "green onions", + "salt", + "grated lemon peel", + "water", + "large eggs", + "vegetable oil", + "garlic chili sauce", + "ground chicken", + "egg roll wrappers", + "sesame oil", + "garlic cloves" + ] + }, + { + "id": 11290, + "cuisine": "greek", + "ingredients": [ + "dried basil", + "diced tomatoes", + "dried oregano", + "eggs", + "Spike Seasoning", + "cracked black pepper", + "cream", + "olive oil", + "garlic", + "mozzarella cheese", + "zucchini", + "feta cheese crumbles" + ] + }, + { + "id": 8504, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "sweet potatoes", + "mini marshmallows", + "ham steak", + "crushed pineapple" + ] + }, + { + "id": 41218, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "asparagus", + "boneless skinless chicken breast halves", + "chicken stock", + "olive oil", + "salt", + "dried oregano", + "white wine", + "ground black pepper", + "onions", + "dried basil", + "grated parmesan cheese", + "carnaroli rice" + ] + }, + { + "id": 45044, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "butter", + "all-purpose flour", + "eggs", + "coffee granules", + "vanilla extract", + "white sugar", + "water", + "heavy cream", + "chopped pecans", + "pecan halves", + "baking powder", + "salt", + "unsweetened cocoa powder" + ] + }, + { + "id": 1093, + "cuisine": "vietnamese", + "ingredients": [ + "light brown sugar", + "lemongrass", + "jalapeno chilies", + "cilantro leaves", + "vegan mayonnaise", + "soy sauce", + "mo hanh", + "cilantro", + "ground white pepper", + "liquid aminos", + "pickled carrots", + "vegetable oil", + "ground coriander", + "baguette", + "extra firm tofu", + "garlic", + "cucumber" + ] + }, + { + "id": 31058, + "cuisine": "chinese", + "ingredients": [ + "baby bok choy", + "green onions", + "yellow onion", + "canola oil", + "kosher salt", + "chinese wheat noodles", + "chili garlic paste", + "soy sauce", + "blade steak", + "garlic cloves", + "chicken stock", + "fresh ginger", + "star anise", + "cinnamon sticks" + ] + }, + { + "id": 17939, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "pepper", + "red pepper flakes", + "garlic", + "celery", + "italian seasoning", + "pancetta", + "fish sauce", + "grated parmesan cheese", + "heavy cream", + "beef broth", + "onions", + "tomatoes", + "parmesan cheese", + "red wine", + "salt", + "fresh parsley", + "pasta", + "dried porcini mushrooms", + "balsamic vinegar", + "basil", + "carrots", + "short rib" + ] + }, + { + "id": 47820, + "cuisine": "italian", + "ingredients": [ + "fresh orange juice", + "campari", + "chilled prosecco", + "orange rind" + ] + }, + { + "id": 29691, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salsa", + "fresh cilantro", + "boneless chicken breast", + "ground cumin", + "chicken broth", + "garlic powder", + "long grain white rice", + "lime", + "chili powder" + ] + }, + { + "id": 43448, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "white onion", + "salt", + "chicken stock", + "boneless chicken skinless thigh", + "cilantro", + "dried oregano", + "avocado", + "ground cloves", + "lime juice", + "corn tortillas", + "tomatoes", + "habanero chile", + "garlic", + "canola oil" + ] + }, + { + "id": 45048, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "pepper", + "flour", + "round steaks", + "plain yogurt", + "dried thyme", + "shallots", + "oil", + "black pepper", + "milk", + "baking powder", + "sweet paprika", + "kosher salt", + "large eggs", + "onion powder" + ] + }, + { + "id": 12616, + "cuisine": "french", + "ingredients": [ + "parsley sprigs", + "fresh lemon juice", + "cold water", + "dry white wine", + "whitefish", + "salt", + "fennel bulb", + "onions" + ] + }, + { + "id": 43000, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "ground beef", + "tomatoes", + "salt", + "onions", + "cooked rice", + "sour cream", + "cumin", + "cheddar cheese", + "chillies" + ] + }, + { + "id": 2839, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "ground black pepper", + "sea salt", + "red bell pepper", + "mango", + "lime zest", + "sweet onion", + "onion powder", + "salt", + "chipotle chile powder", + "tomatoes", + "olive oil", + "chile pepper", + "chicken breast tenderloins", + "chopped cilantro fresh", + "minced garlic", + "french bread", + "garlic", + "fresh lime juice", + "monterey jack" + ] + }, + { + "id": 33674, + "cuisine": "korean", + "ingredients": [ + "sugar", + "vegetable oil", + "salt", + "potato starch", + "sesame seeds", + "ginger", + "toasted sesame oil", + "chicken wings", + "gochugaru", + "garlic", + "soy sauce", + "liquor", + "Gochujang base" + ] + }, + { + "id": 13451, + "cuisine": "mexican", + "ingredients": [ + "McCormick Ground Cumin", + "hominy", + "cilantro", + "oregano leaves", + "avocado", + "white onion", + "shredded cabbage", + "garlic", + "chiles", + "kosher salt", + "lime wedges", + "yellow onion", + "tostadas", + "water", + "tomato salsa", + "pork shoulder" + ] + }, + { + "id": 1631, + "cuisine": "italian", + "ingredients": [ + "spinach leaves", + "low-sodium low-fat chicken broth", + "lemon zest", + "corn starch", + "water", + "salt", + "large eggs" + ] + }, + { + "id": 37702, + "cuisine": "mexican", + "ingredients": [ + "shredded cabbage", + "carrots", + "chopped cilantro fresh", + "pepper", + "salt", + "onions", + "apple cider vinegar", + "red bell pepper", + "canola oil", + "jalapeno chilies", + "cayenne pepper", + "white sugar" + ] + }, + { + "id": 3421, + "cuisine": "british", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "pepper", + "cheddar cheese", + "salt", + "white bread", + "milk" + ] + }, + { + "id": 19162, + "cuisine": "italian", + "ingredients": [ + "cottage cheese", + "salt", + "ground beef", + "tomato sauce", + "grated parmesan cheese", + "shredded mozzarella cheese", + "eggs", + "ground black pepper", + "chopped onion", + "dried oregano", + "tomato paste", + "garlic powder", + "jumbo pasta shells", + "dried parsley" + ] + }, + { + "id": 13737, + "cuisine": "mexican", + "ingredients": [ + "flour", + "oregano", + "chicken broth", + "vegetable oil", + "chili powder", + "cumin", + "garlic powder", + "salt" + ] + }, + { + "id": 26448, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "boneless skinless chicken breasts", + "onions", + "flour tortillas", + "salt", + "fajita seasoning mix", + "olive oil", + "garlic", + "chopped cilantro fresh", + "chicken broth", + "bell pepper", + "enchilada sauce", + "cumin" + ] + }, + { + "id": 19333, + "cuisine": "thai", + "ingredients": [ + "fettucine", + "honey", + "rice vinegar", + "scallions", + "fish sauce", + "red pepper flakes", + "roasted peanuts", + "mung bean sprouts", + "eggs", + "napa cabbage", + "tamarind paste", + "garlic cloves", + "lime", + "peeled shrimp", + "peanut oil", + "chopped cilantro fresh" + ] + }, + { + "id": 23980, + "cuisine": "british", + "ingredients": [ + "plain flour", + "lemon", + "lager", + "cornflour", + "cod", + "potatoes", + "salt", + "black pepper", + "sunflower oil" + ] + }, + { + "id": 3072, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "radishes", + "large garlic cloves", + "ancho chile pepper", + "avocado", + "lime", + "Mexican oregano", + "salt", + "pork shoulder", + "lettuce", + "water", + "pork spare ribs", + "chile piquin", + "corn tortillas", + "white onion", + "white hominy", + "vegetable oil", + "garlic cloves", + "onions" + ] + }, + { + "id": 10766, + "cuisine": "filipino", + "ingredients": [ + "cream", + "water", + "spring roll wrappers", + "mini bananas", + "sugar", + "frying oil" + ] + }, + { + "id": 40744, + "cuisine": "french", + "ingredients": [ + "eggs", + "apples", + "jelly", + "egg yolks", + "all-purpose flour", + "apple brandy", + "salt", + "white sugar", + "cold water", + "butter", + "ground almonds" + ] + }, + { + "id": 19507, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "all-purpose flour", + "vegetable broth", + "dried oregano", + "chili powder", + "oil", + "tomato paste", + "salt", + "ground cumin" + ] + }, + { + "id": 37272, + "cuisine": "italian", + "ingredients": [ + "instant espresso powder", + "sugar", + "whipping cream", + "coffee", + "water" + ] + }, + { + "id": 47942, + "cuisine": "japanese", + "ingredients": [ + "egg noodles", + "carrots", + "white cabbage", + "worcestershire sauce", + "onions", + "soy sauce", + "sesame oil", + "steak", + "mirin", + "green pepper" + ] + }, + { + "id": 10880, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "ground black pepper", + "tuna packed in olive oil", + "orange", + "chickpeas", + "fedelini", + "cooking oil", + "fresh parsley", + "crushed tomatoes", + "salt", + "onions" + ] + }, + { + "id": 41618, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "dried oregano", + "minced garlic", + "fresh lemon juice", + "black pepper", + "salt", + "boneless chicken skinless thigh", + "cooking spray" + ] + }, + { + "id": 14791, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "salt", + "cooking oil", + "dried red chile peppers", + "fresh curry leaves", + "garlic", + "bengal gram", + "cumin seed" + ] + }, + { + "id": 25009, + "cuisine": "greek", + "ingredients": [ + "unsalted butter", + "cottage cheese", + "cream cheese, soften", + "large eggs", + "feta cheese", + "phyllo pastry" + ] + }, + { + "id": 12007, + "cuisine": "spanish", + "ingredients": [ + "coarse salt", + "shrimp", + "lemon wedge", + "crushed red pepper", + "crusty bread", + "extra-virgin olive oil", + "fresh parsley", + "chile pepper", + "garlic cloves" + ] + }, + { + "id": 31572, + "cuisine": "mexican", + "ingredients": [ + "salt", + "eggs", + "corn tortillas", + "corn oil" + ] + }, + { + "id": 43880, + "cuisine": "chinese", + "ingredients": [ + "water", + "peanut oil", + "lean ground pork", + "green onions", + "cabbage", + "low sodium soy sauce", + "cooking spray", + "corn starch", + "gyoza skins", + "sesame oil" + ] + }, + { + "id": 46867, + "cuisine": "russian", + "ingredients": [ + "cottage cheese", + "salt", + "milk", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 31109, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "country bread", + "extra-virgin olive oil", + "ground white pepper", + "zucchini", + "fleur de sel" + ] + }, + { + "id": 34403, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "red pepper", + "sauce", + "large eggs", + "worcestershire sauce", + "fresh parsley", + "pepper", + "old bay seasoning", + "crabmeat", + "saltines", + "butter", + "dry mustard" + ] + }, + { + "id": 36515, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "spaghetti", + "eggs", + "prosciutto", + "olive oil", + "pasta sauce", + "round steaks" + ] + }, + { + "id": 20131, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cooking oil", + "corn starch", + "ground black pepper", + "broccoli", + "minced garlic", + "top sirloin steak", + "chinese black vinegar", + "chinese rice wine", + "beef", + "oyster sauce" + ] + }, + { + "id": 13465, + "cuisine": "french", + "ingredients": [ + "lettuce", + "olive oil", + "green beans", + "eggs", + "apple cider vinegar", + "tomatoes", + "dijon mustard", + "tuna", + "red potato", + "black olives" + ] + }, + { + "id": 45512, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "garam masala", + "green peas", + "oil", + "water", + "florets", + "green chilies", + "ginger paste", + "tomatoes", + "amchur", + "cilantro", + "cumin seed", + "garlic paste", + "coriander powder", + "salt", + "ground turmeric" + ] + }, + { + "id": 4013, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "sweet potatoes", + "all-purpose flour", + "unsalted butter", + "salt", + "whole milk" + ] + }, + { + "id": 18946, + "cuisine": "italian", + "ingredients": [ + "plain dry bread crumb", + "onions", + "red pepper", + "olive oil", + "top round steak", + "veggies" + ] + }, + { + "id": 21097, + "cuisine": "mexican", + "ingredients": [ + "Angostura bitters", + "fresh lime juice", + "crushed ice", + "pisco brandy", + "granulated sugar", + "ice", + "fresh lemon juice" + ] + }, + { + "id": 12894, + "cuisine": "italian", + "ingredients": [ + "angel hair", + "olive oil", + "shredded mozzarella cheese", + "minced garlic", + "butter", + "seasoned bread crumbs", + "grated parmesan cheese", + "onions", + "pasta sauce", + "green bell pepper, slice", + "steak" + ] + }, + { + "id": 36767, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "chunky", + "brine-cured olives", + "olive oil", + "tuna packed in water", + "fettucine", + "dry red wine" + ] + }, + { + "id": 7909, + "cuisine": "indian", + "ingredients": [ + "dried lentils", + "coriander seeds", + "baking powder", + "ginger", + "garlic cloves", + "curry powder", + "ground black pepper", + "red pepper flakes", + "low sodium chicken stock", + "onions", + "eggs", + "milk", + "sweet potatoes", + "cracked black pepper", + "scallions", + "kosher salt", + "garam masala", + "vegetable oil", + "all-purpose flour", + "carrots" + ] + }, + { + "id": 232, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "minced ginger", + "chili powder", + "salt", + "cream", + "garam masala", + "butter", + "onions", + "tomatoes", + "milk", + "boneless chicken", + "cilantro leaves", + "minced garlic", + "coriander powder", + "kasuri methi", + "ground turmeric" + ] + }, + { + "id": 4248, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "rice wine", + "all-purpose flour", + "corn starch", + "sugar", + "large eggs", + "napa cabbage", + "scallions", + "toasted sesame oil", + "fresh ginger", + "kirby cucumbers", + "peanut oil", + "ground white pepper", + "chinese black mushrooms", + "fresh shiitake mushrooms", + "garlic", + "oyster sauce", + "pork butt" + ] + }, + { + "id": 48956, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "ground black pepper", + "cayenne pepper", + "nutmeg", + "olive oil", + "butter", + "chopped parsley", + "chicken sausage", + "flour", + "elbow macaroni", + "bread crumb fresh", + "shredded mild cheddar cheese", + "salt" + ] + }, + { + "id": 25797, + "cuisine": "italian", + "ingredients": [ + "baking soda", + "vegetable oil", + "all-purpose flour", + "confectioners sugar", + "egg yolks", + "buttermilk", + "cream cheese", + "shortening", + "flaked coconut", + "vanilla extract", + "chopped pecans", + "egg whites", + "butter", + "margarine", + "white sugar" + ] + }, + { + "id": 49145, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "green onions", + "thai chile", + "dried shiitake mushrooms", + "mirin", + "ground pork", + "salt", + "canola oil", + "soy sauce", + "sesame oil", + "garlic", + "corn starch", + "vinegar", + "ginger", + "gyoza wrappers" + ] + }, + { + "id": 16029, + "cuisine": "italian", + "ingredients": [ + "green onions", + "sour cream", + "mayonaise", + "shredded sharp cheddar cheese", + "garlic", + "Italian bread", + "unsalted butter", + "shredded mozzarella cheese" + ] + }, + { + "id": 32119, + "cuisine": "southern_us", + "ingredients": [ + "cornbread crumbs", + "cooking spray", + "fatfree lowsodium chicken broth", + "dried thyme", + "finely chopped onion", + "chopped celery", + "carrots", + "black pepper", + "unsalted butter", + "whole wheat bread", + "chopped fresh sage", + "olive oil", + "large eggs", + "salt" + ] + }, + { + "id": 41493, + "cuisine": "cajun_creole", + "ingredients": [ + "low sodium worcestershire sauce", + "pepper", + "gumbo file", + "paprika", + "all-purpose flour", + "okra", + "vegetable oil cooking spray", + "water", + "bay leaves", + "garlic", + "hot sauce", + "long-grain rice", + "parsley flakes", + "ground cloves", + "garlic powder", + "chicken breast halves", + "salt", + "chopped onion", + "tomato paste", + "cooked ham", + "dried thyme", + "ground red pepper", + "chopped celery", + "green pepper", + "shrimp" + ] + }, + { + "id": 12952, + "cuisine": "japanese", + "ingredients": [ + "Japanese soy sauce", + "daikon", + "rice vinegar", + "watercress leaves", + "vegetable oil", + "garlic", + "fillets", + "caster sugar", + "sesame oil", + "ginger", + "white sesame seeds", + "sake", + "mirin", + "raw sugar", + "cucumber" + ] + }, + { + "id": 31624, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "ground black pepper", + "carrots", + "mild curry powder", + "sea salt", + "ground turmeric", + "ground ginger", + "sweet potatoes", + "coconut milk", + "diced onions", + "coconut oil", + "vegetable broth" + ] + }, + { + "id": 45265, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "garlic powder", + "white wine vinegar", + "feta cheese crumbles", + "black pepper", + "ground red pepper", + "salt", + "dried oregano", + "tomatoes", + "minced garlic", + "extra-virgin olive oil", + "fresh lemon juice", + "fat free yogurt", + "boneless skinless chicken breasts", + "purple onion", + "cucumber" + ] + }, + { + "id": 41703, + "cuisine": "mexican", + "ingredients": [ + "pepper jack", + "oil", + "cheese", + "onions", + "diced tomatoes", + "garlic cloves", + "green chile", + "tortilla chips", + "chopped cilantro fresh" + ] + }, + { + "id": 12450, + "cuisine": "spanish", + "ingredients": [ + "chicken broth", + "olive oil", + "garlic cloves", + "kosher salt", + "pork tenderloin", + "onions", + "brown sugar", + "ground black pepper", + "corn starch", + "lime", + "chili powder", + "ground cumin" + ] + }, + { + "id": 7702, + "cuisine": "chinese", + "ingredients": [ + "lean ground pork", + "salt", + "green beans", + "low sodium soy sauce", + "garlic", + "corn starch", + "hoisin sauce", + "peanut oil", + "cooked white rice", + "sugar", + "crushed red pepper", + "ground white pepper" + ] + }, + { + "id": 21136, + "cuisine": "cajun_creole", + "ingredients": [ + "cayenne", + "worcestershire sauce", + "mayonaise", + "kaiser rolls", + "dry bread crumbs", + "large eggs", + "dry mustard", + "lump crab meat", + "vegetable oil", + "scallions" + ] + }, + { + "id": 17575, + "cuisine": "southern_us", + "ingredients": [ + "cherries", + "vanilla", + "milk", + "baking powder", + "sugar", + "flour", + "salt", + "peaches", + "butter" + ] + }, + { + "id": 720, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "extra-virgin olive oil", + "garlic cloves", + "water", + "salt", + "parmigiano reggiano cheese", + "yellow onion", + "tomato purée", + "crushed red pepper" + ] + }, + { + "id": 21630, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium soy sauce", + "peanut oil", + "chinese black vinegar", + "light brown sugar", + "shallots", + "garlic cloves", + "Shaoxing wine", + "pork spareribs", + "reduced sodium chicken broth", + "ginger", + "corn starch" + ] + }, + { + "id": 39193, + "cuisine": "italian", + "ingredients": [ + "butter", + "ground black pepper", + "salt", + "sliced green onions", + "fresh mint", + "grated parmesan cheese", + "lemon juice", + "penne", + "part-skim ricotta cheese", + "fresh parsley" + ] + }, + { + "id": 9283, + "cuisine": "jamaican", + "ingredients": [ + "cauliflower", + "scotch bonnet chile", + "carrots", + "sugar", + "ginger", + "thyme sprigs", + "black peppercorns", + "large garlic cloves", + "red bell pepper", + "white vinegar", + "kosher salt", + "allspice berries" + ] + }, + { + "id": 16839, + "cuisine": "chinese", + "ingredients": [ + "tomato paste", + "soy sauce", + "vegetables", + "rice vinegar", + "green bell pepper", + "kosher salt", + "pork loin", + "red bell pepper", + "chinese rice wine", + "water", + "sesame oil", + "cooked white rice", + "pineapple chunks", + "white onion", + "egg whites", + "corn starch" + ] + }, + { + "id": 26528, + "cuisine": "cajun_creole", + "ingredients": [ + "black peppercorns", + "corn husks", + "sea salt", + "garlic cloves", + "celery ribs", + "water", + "spices", + "cayenne pepper", + "canola oil", + "blue crabs", + "bay leaves", + "yellow onion", + "large shrimp", + "red potato", + "fresh ginger", + "lemon", + "crab boil" + ] + }, + { + "id": 9222, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "water", + "chopped celery", + "fresh mushrooms", + "onions", + "reduced fat cheddar cheese", + "garlic", + "chopped onion", + "ripe olives", + "low sodium worcestershire sauce", + "ground red pepper", + "broiler-fryers", + "carrots", + "spaghetti", + "vegetable oil cooking spray", + "stewed tomatoes", + "green pepper", + "chopped parsley", + "italian seasoning" + ] + }, + { + "id": 12724, + "cuisine": "southern_us", + "ingredients": [ + "ground pepper", + "plum tomatoes", + "salad", + "coarse salt", + "barbecue sauce", + "olive oil", + "whole chicken" + ] + }, + { + "id": 34573, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "ice", + "lime", + "water", + "sweetened condensed milk" + ] + }, + { + "id": 31907, + "cuisine": "vietnamese", + "ingredients": [ + "crab meat", + "black pepper", + "sesame oil", + "cabbage", + "sugar", + "egg whites", + "carrots", + "spring roll wrappers", + "shiitake", + "garlic", + "soy sauce", + "green onions", + "shrimp" + ] + }, + { + "id": 16767, + "cuisine": "italian", + "ingredients": [ + "shredded reduced fat cheddar cheese", + "broccoli florets", + "garlic cloves", + "part-skim mozzarella cheese", + "low-fat pasta sauce", + "olive oil", + "refrigerated pizza dough", + "ground black pepper", + "chopped onion" + ] + }, + { + "id": 39230, + "cuisine": "italian", + "ingredients": [ + "half & half", + "linguini", + "olive oil", + "butter", + "clams", + "parsley", + "parmesan cheese", + "garlic" + ] + }, + { + "id": 32065, + "cuisine": "thai", + "ingredients": [ + "lime zest", + "straw mushrooms", + "coconut milk", + "fish sauce", + "chicken breasts", + "chiles", + "cilantro leaves", + "chicken broth", + "lemon grass", + "galangal" + ] + }, + { + "id": 48949, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "ricotta cheese", + "fresh basil leaves", + "fresh basil", + "won ton wrappers", + "crushed red pepper", + "black pepper", + "parmesan cheese", + "salt", + "chicken broth", + "olive oil", + "white wine vinegar" + ] + }, + { + "id": 660, + "cuisine": "moroccan", + "ingredients": [ + "fresh cilantro", + "lemon", + "cumin", + "chicken stock", + "dried apricot", + "purple onion", + "olive oil", + "crushed red pepper flakes", + "chicken", + "pepper", + "pitted green olives", + "salt" + ] + }, + { + "id": 4891, + "cuisine": "russian", + "ingredients": [ + "chopped tomatoes", + "fresh tomatoes", + "cabbage", + "sauerkraut", + "barley", + "bacon" + ] + }, + { + "id": 39216, + "cuisine": "greek", + "ingredients": [ + "eggs", + "black olives", + "feta cheese", + "olive oil", + "purple onion", + "tomatoes", + "parsley leaves" + ] + }, + { + "id": 2457, + "cuisine": "southern_us", + "ingredients": [ + "chile paste with garlic", + "ground black pepper", + "fat free less sodium chicken broth", + "garlic cloves", + "olive oil", + "turnip greens", + "rice vinegar" + ] + }, + { + "id": 6421, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "rice wine", + "chinese five-spice powder", + "tomatoes", + "fresh ginger root", + "star anise", + "cinnamon sticks", + "chicken stock", + "light soy sauce", + "vegetable oil", + "garlic cloves", + "sugar", + "spring onions", + "plums", + "pork shoulder" + ] + }, + { + "id": 38008, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "ketchup", + "peeled fresh ginger", + "dark sesame oil", + "red bell pepper", + "green bell pepper", + "fat free less sodium chicken broth", + "boneless skinless chicken breasts", + "garlic cloves", + "canola oil", + "diced onions", + "brown sugar", + "chile paste", + "rice vinegar", + "corn starch", + "dark soy sauce", + "white pepper", + "green onions", + "shaoxing", + "fresh pineapple" + ] + }, + { + "id": 2762, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "long-grain rice", + "water", + "zucchini", + "sliced mushrooms", + "fresh basil", + "beef", + "garlic cloves", + "yellow squash", + "chopped onion", + "plum tomatoes" + ] + }, + { + "id": 4444, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "salt pork", + "water", + "cider vinegar", + "white sugar", + "salt" + ] + }, + { + "id": 10885, + "cuisine": "italian", + "ingredients": [ + "pork", + "grated parmesan cheese", + "purple onion", + "arborio rice", + "vegetable oil spray", + "red wine vinegar", + "flat leaf parsley", + "tomatoes", + "large eggs", + "peas", + "olive oil", + "lettuce leaves", + "salt" + ] + }, + { + "id": 48019, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "split black lentils", + "salt", + "dried red chile peppers", + "fresh ginger root", + "ravva", + "mustard seeds", + "ghee", + "tomatoes", + "bengal gram", + "chile pepper", + "asafoetida powder", + "cashew nuts", + "water", + "cooking oil", + "chopped onion", + "fresh lime juice" + ] + }, + { + "id": 13952, + "cuisine": "mexican", + "ingredients": [ + "adobo", + "kosher salt", + "vegetable oil", + "garlic", + "asian fish sauce", + "boneless pork shoulder", + "frozen orange juice concentrate", + "bay leaves", + "raisins", + "corn tortillas", + "ground cumin", + "white vinegar", + "chiles", + "store bought low sodium chicken stock", + "queso fresco", + "ancho chile pepper", + "dried oregano", + "diced onions", + "chipotle chile", + "lime wedges", + "cilantro", + "onions" + ] + }, + { + "id": 12471, + "cuisine": "italian", + "ingredients": [ + "baguette", + "shredded cheese", + "butter", + "water", + "garlic cloves", + "pepper", + "salt" + ] + }, + { + "id": 12708, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "balsamic vinegar", + "cilantro leaves", + "fresh ginger root", + "garlic", + "honey", + "extra-virgin olive oil", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 25680, + "cuisine": "indian", + "ingredients": [ + "chicken broth", + "full fat coconut milk", + "green chilies", + "onions", + "pepper", + "salt", + "garlic cloves", + "coconut oil", + "garam masala", + "cumin seed", + "tomato paste", + "fresh ginger", + "skinless chicken breasts", + "red bell pepper" + ] + }, + { + "id": 49436, + "cuisine": "french", + "ingredients": [ + "lemon juice", + "boneless skinless chicken breasts", + "grated parmesan cheese", + "butter" + ] + }, + { + "id": 28842, + "cuisine": "thai", + "ingredients": [ + "tumeric", + "lemongrass", + "ground white pepper", + "kaffir lime leaves", + "coconut", + "salt", + "dried shrimp", + "water", + "basil", + "fresh lime juice", + "jasmine rice", + "shallots", + "fresh mint" + ] + }, + { + "id": 22145, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "olive oil", + "onions", + "frozen spinach", + "kalamata", + "feta cheese" + ] + }, + { + "id": 17245, + "cuisine": "mexican", + "ingredients": [ + "vanilla extract", + "vanilla ice cream", + "heavy whipping cream", + "ground cinnamon", + "toasted pine nuts", + "coffee", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 45743, + "cuisine": "southern_us", + "ingredients": [ + "sandwich rolls", + "lettuce leaves", + "butter", + "large eggs", + "ranch dressing", + "salt", + "sweet onion", + "ground red pepper", + "bacon", + "grated parmesan cheese", + "green tomatoes", + "dry bread crumbs" + ] + }, + { + "id": 28812, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "salt", + "soy sauce", + "cooking oil", + "fish", + "sugar", + "herbs", + "garlic cloves", + "pepper", + "lemon" + ] + }, + { + "id": 33199, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "crushed red pepper", + "eggplant", + "cooking spray", + "italian seasoning", + "seasoned bread crumbs", + "fresh parmesan cheese", + "tomato basil sauce", + "large egg whites", + "large eggs", + "garlic cloves" + ] + }, + { + "id": 18117, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "green onions", + "green enchilada sauce", + "oregano", + "lime juice", + "chili powder", + "cream cheese", + "shredded Monterey Jack cheese", + "minced garlic", + "cooked chicken", + "salt", + "cumin", + "flour tortillas", + "onion powder", + "chopped cilantro" + ] + }, + { + "id": 24020, + "cuisine": "italian", + "ingredients": [ + "vegetable stock", + "pinenuts", + "penne pasta", + "tomatoes", + "garlic", + "grated parmesan cheese", + "fresh basil leaves" + ] + }, + { + "id": 18601, + "cuisine": "cajun_creole", + "ingredients": [ + "large eggs", + "creole seasoning", + "vegetable oil cooking spray", + "light mayonnaise", + "red bell pepper", + "bread crumbs", + "sauce", + "cooked chicken breasts", + "creole mustard", + "green onions", + "garlic cloves" + ] + }, + { + "id": 11656, + "cuisine": "italian", + "ingredients": [ + "capers", + "garlic", + "dried oregano", + "dried basil", + "roast red peppers, drain", + "mozzarella cheese", + "crushed red pepper", + "tomatoes", + "olive oil", + "fresh parsley" + ] + }, + { + "id": 15685, + "cuisine": "italian", + "ingredients": [ + "peeled tomatoes", + "pizza doughs", + "extra-virgin olive oil", + "dried oregano", + "capicola", + "goat cheese", + "minced garlic", + "crushed red pepper" + ] + }, + { + "id": 15820, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "chile pepper", + "beef broth", + "cooking oil", + "beef stew meat", + "ground cumin", + "water", + "garlic", + "corn starch", + "tomato paste", + "chili powder", + "salt" + ] + }, + { + "id": 43754, + "cuisine": "mexican", + "ingredients": [ + "pork tenderloin", + "garlic", + "roasted tomatoes", + "lime juice", + "ancho powder", + "red enchilada sauce", + "chicken broth", + "shredded cabbage", + "purple onion", + "onions", + "hominy", + "cilantro", + "oil" + ] + }, + { + "id": 27828, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "parmigiano reggiano cheese", + "lemon wedge", + "fresh lemon juice", + "salad greens", + "boneless skinless chicken breasts", + "all-purpose flour", + "kosher salt", + "egg whites", + "white wine vinegar", + "sugar", + "olive oil", + "shallots", + "dry bread crumbs" + ] + }, + { + "id": 1537, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "ground black pepper", + "all-purpose flour", + "cream of tartar", + "large egg yolks", + "baby spinach", + "fat free milk", + "cooking spray", + "dry bread crumbs", + "parmigiano-reggiano cheese", + "ground nutmeg", + "salt" + ] + }, + { + "id": 12187, + "cuisine": "thai", + "ingredients": [ + "spring onions", + "salted peanuts", + "coriander", + "lime juice", + "rice noodles", + "chili sauce", + "fish sauce", + "muscovado sugar", + "cayenne pepper", + "tiger prawn", + "lime", + "vegetable oil", + "beansprouts" + ] + }, + { + "id": 41816, + "cuisine": "southern_us", + "ingredients": [ + "cream of chicken soup", + "margarine", + "dried sage", + "broth", + "hard-boiled egg", + "onions", + "cornbread", + "turkey" + ] + }, + { + "id": 32122, + "cuisine": "italian", + "ingredients": [ + "fennel bulb", + "extra-virgin olive oil", + "flat leaf parsley", + "cherry tomatoes", + "oil-cured black olives", + "all-purpose flour", + "fronds", + "large garlic cloves", + "striped bass", + "dry white wine", + "purple onion" + ] + }, + { + "id": 456, + "cuisine": "mexican", + "ingredients": [ + "pinto beans", + "onion powder", + "chili powder", + "fine sea salt" + ] + }, + { + "id": 6661, + "cuisine": "mexican", + "ingredients": [ + "baking soda", + "baking powder", + "semi-sweet chocolate morsels", + "ground cinnamon", + "unsalted butter", + "salt", + "ground pepper", + "vanilla extract", + "golden brown sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 42995, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "italian seasoning", + "orzo", + "bacon", + "sliced green onions", + "seasoning salt", + "toasted pine nuts" + ] + }, + { + "id": 29452, + "cuisine": "french", + "ingredients": [ + "light brown sugar", + "egg yolks", + "raspberries", + "heavy cream", + "mint", + "caster", + "fresh ginger" + ] + }, + { + "id": 17513, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "cooking spray", + "canola oil", + "kosher salt", + "zucchini", + "chopped cilantro fresh", + "chicken breast tenders", + "flour tortillas", + "monterey jack", + "black pepper", + "salsa verde", + "purple onion", + "ground cumin" + ] + }, + { + "id": 25979, + "cuisine": "french", + "ingredients": [ + "olive oil", + "russet potatoes", + "black pepper", + "leeks", + "plum tomatoes", + "mussels", + "unsalted butter", + "garlic", + "kosher salt", + "dry white wine" + ] + }, + { + "id": 44094, + "cuisine": "japanese", + "ingredients": [ + "boneless chicken breast", + "salt", + "soy sauce", + "mushrooms", + "cooked white rice", + "large eggs", + "garlic cloves", + "ketchup", + "vegetable oil", + "onions" + ] + }, + { + "id": 1846, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "shredded lettuce", + "chunky salsa", + "avocado", + "green onions", + "rotisserie chicken", + "sliced black olives", + "reduced-fat sour cream", + "monterey jack", + "tomatoes", + "ranch dressing", + "corn tortillas" + ] + }, + { + "id": 37323, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "garlic", + "sun-dried tomatoes", + "boneless skinless chicken breast halves", + "olive oil", + "noodles", + "crumbled goat cheese", + "roasted red peppers" + ] + }, + { + "id": 12846, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "extra-virgin olive oil", + "white sandwich bread", + "red wine vinegar", + "blanched almonds", + "roasted red peppers", + "salt", + "hot red pepper flakes", + "large garlic cloves", + "fillets" + ] + }, + { + "id": 38023, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "granulated sugar", + "cooking spray", + "salt", + "turbinado", + "triple sec", + "large eggs", + "dried tart cherries", + "warm water", + "large egg yolks", + "dried apricot", + "butter", + "fat free milk", + "dry yeast", + "golden raisins", + "all-purpose flour" + ] + }, + { + "id": 3185, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "olive oil", + "white wine", + "shredded parmesan cheese", + "black pepper", + "onion flakes", + "arborio rice", + "kosher salt", + "chopped garlic" + ] + }, + { + "id": 455, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "cilantro", + "fingerling potatoes", + "masala", + "tomatoes", + "fresno pepper", + "lemon" + ] + }, + { + "id": 22620, + "cuisine": "moroccan", + "ingredients": [ + "tomato purée", + "water", + "ground black pepper", + "yellow onion", + "celery", + "tumeric", + "olive oil", + "spices", + "sweet paprika", + "dried lentils", + "fresh cilantro", + "lemon wedge", + "lima beans", + "fresh parsley", + "tomato paste", + "kosher salt", + "garbanzo beans", + "vegetable broth", + "garlic cloves" + ] + }, + { + "id": 7082, + "cuisine": "filipino", + "ingredients": [ + "rice flour", + "white sugar", + "coconut milk", + "cream style corn" + ] + }, + { + "id": 34443, + "cuisine": "mexican", + "ingredients": [ + "pork shoulder roast", + "chopped cilantro fresh", + "white onion", + "salt", + "chile pepper", + "pepper", + "salsa" + ] + }, + { + "id": 42613, + "cuisine": "british", + "ingredients": [ + "ale", + "salt", + "worcestershire sauce", + "aged cheddar cheese", + "butter", + "cayenne pepper", + "dry mustard" + ] + }, + { + "id": 22513, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "teas", + "clove", + "sugar", + "star anise", + "black peppercorns", + "cinnamon", + "fennel seeds", + "soy sauce" + ] + }, + { + "id": 15948, + "cuisine": "italian", + "ingredients": [ + "butter", + "smoked salmon", + "fresh parsley", + "tomatoes", + "heavy whipping cream", + "ground black pepper", + "onions" + ] + }, + { + "id": 8544, + "cuisine": "southern_us", + "ingredients": [ + "zucchini", + "ear of corn", + "grits", + "cheddar cheese", + "lemon", + "shrimp", + "butter", + "scallions", + "cherry tomatoes", + "garlic", + "smoked paprika" + ] + }, + { + "id": 32929, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ricotta cheese", + "romano cheese", + "salt", + "pasta sauce", + "cheese ravioli", + "frozen chopped spinach", + "pepper" + ] + }, + { + "id": 39454, + "cuisine": "italian", + "ingredients": [ + "semisweet chocolate", + "salt", + "canola oil", + "sugar", + "baking powder", + "natural pistachios", + "large eggs", + "all-purpose flour", + "white chocolate", + "almond extract", + "dried raspberry" + ] + }, + { + "id": 33475, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "flat leaf parsley", + "shiitake", + "heavy cream", + "freshly ground pepper", + "asparagus", + "peas", + "penne rigate", + "shallots", + "salt" + ] + }, + { + "id": 26588, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "garam masala", + "ginger", + "green chilies", + "cinnamon sticks", + "tomatoes", + "red chili peppers", + "bay leaves", + "brown cardamom", + "lentils", + "ground turmeric", + "asafoetida", + "mint leaves", + "salt", + "oil", + "coriander", + "garlic paste", + "coriander powder", + "mutton", + "cumin seed", + "onions" + ] + }, + { + "id": 18609, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "thai chile", + "fresh mushrooms", + "chicken", + "kaffir lime leaves", + "palm sugar", + "chili sauce", + "galangal", + "lemongrass", + "cilantro leaves", + "fresh lime juice", + "water", + "salt", + "coconut milk" + ] + }, + { + "id": 8302, + "cuisine": "british", + "ingredients": [ + "shallots", + "cayenne pepper", + "mace", + "butter", + "bay leaf", + "fresh lemon", + "salt", + "black pepper", + "Tabasco Pepper Sauce", + "shrimp" + ] + }, + { + "id": 29938, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "egg yolks", + "fresh mint", + "firmly packed light brown sugar", + "vanilla extract", + "sugar", + "fresh raspberries" + ] + }, + { + "id": 15754, + "cuisine": "french", + "ingredients": [ + "whitefish", + "orange", + "cayenne", + "large garlic cloves", + "fresh lemon juice", + "onions", + "hard shelled clams", + "olive oil", + "fennel bulb", + "fish stock", + "shrimp", + "cold water", + "king crab legs", + "vegetables", + "fresh thyme leaves", + "salt", + "bay leaf", + "saffron threads", + "parsley sprigs", + "sea scallops", + "dry white wine", + "canned tomatoes", + "red bell pepper" + ] + }, + { + "id": 30701, + "cuisine": "chinese", + "ingredients": [ + "sake", + "peeled fresh ginger", + "salt", + "white pepper", + "fresh orange juice", + "red bell pepper", + "red chili peppers", + "trout fillet", + "dark sesame oil", + "fish sauce", + "lemon grass", + "cilantro sprigs", + "sliced green onions" + ] + }, + { + "id": 3193, + "cuisine": "italian", + "ingredients": [ + "baking powder", + "white sugar", + "eggs", + "vanilla extract", + "butter", + "lemon zest", + "all-purpose flour" + ] + }, + { + "id": 2989, + "cuisine": "french", + "ingredients": [ + "large garlic cloves", + "sugar", + "salt", + "lemon", + "carrots", + "extra-virgin olive oil" + ] + }, + { + "id": 39142, + "cuisine": "filipino", + "ingredients": [ + "coconut milk", + "cooking oil", + "sweetened coconut flakes", + "brown sugar", + "sweet rice flour" + ] + }, + { + "id": 44645, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "light brown sugar", + "grated nutmeg", + "unsalted butter", + "vanilla ice cream", + "dry bread crumbs" + ] + }, + { + "id": 12664, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "chili powder", + "freshly ground pepper", + "skirt steak", + "fresh tomatoes", + "frozen whole kernel corn", + "salt", + "corn tortillas", + "fresh cilantro", + "jalape", + "red bell pepper", + "ground cumin", + "olive oil", + "purple onion", + "sour cream" + ] + }, + { + "id": 39074, + "cuisine": "italian", + "ingredients": [ + "salt and ground black pepper", + "butter", + "arborio rice", + "butternut squash", + "grated parmesan cheese", + "onions", + "chicken stock", + "dry white wine" + ] + }, + { + "id": 37183, + "cuisine": "indian", + "ingredients": [ + "water", + "vegetable oil", + "sugar", + "large eggs", + "active dry yeast", + "salt", + "plain yogurt", + "flour" + ] + }, + { + "id": 6848, + "cuisine": "italian", + "ingredients": [ + "water", + "zucchini", + "diced tomatoes", + "diced celery", + "olive oil", + "cannellini beans", + "chopped onion", + "dried oregano", + "ground pepper", + "ditalini", + "garlic cloves", + "dried basil", + "grated parmesan cheese", + "salt", + "carrots" + ] + }, + { + "id": 38131, + "cuisine": "cajun_creole", + "ingredients": [ + "capers", + "salt", + "fat-free mayonnaise", + "cooking spray", + "dried oregano", + "hot pepper sauce", + "fresh onion", + "catfish fillets", + "cajun seasoning", + "pickle relish" + ] + }, + { + "id": 11429, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "sweet potatoes", + "freshly grated parmesan", + "fresh oregano", + "ground black pepper", + "rigatoni", + "olive oil", + "garlic" + ] + }, + { + "id": 2030, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "sesame oil", + "rice vinegar", + "minced garlic", + "ginger", + "onions", + "soy sauce", + "ground pork", + "carrots", + "chili flakes", + "gyoza", + "salt", + "cabbage" + ] + }, + { + "id": 19558, + "cuisine": "japanese", + "ingredients": [ + "chicken breasts", + "salt", + "fresh tomatoes", + "vegetable oil", + "cabbage", + "eggs", + "lemon wedge", + "panko breadcrumbs", + "flour", + "tonkatsu sauce" + ] + }, + { + "id": 6793, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "condensed cream of mushroom soup", + "instant rice", + "diced green chilies", + "chicken", + "water", + "dried minced onion", + "shredded cheddar cheese", + "salt" + ] + }, + { + "id": 31575, + "cuisine": "italian", + "ingredients": [ + "sugar", + "tea bags", + "cranberry juice" + ] + }, + { + "id": 49428, + "cuisine": "russian", + "ingredients": [ + "low-fat plain yogurt", + "cooked beetroot", + "salt", + "dressing", + "caster sugar", + "small new potatoes", + "sour cream", + "beans", + "shallots", + "gherkins", + "tomatoes", + "fennel", + "creamed horseradish", + "arugula" + ] + }, + { + "id": 42902, + "cuisine": "italian", + "ingredients": [ + "ladyfingers", + "dark rum", + "orange rind", + "chocolate instant pudding", + "vanilla instant pudding", + "slivered almonds", + "almond extract", + "fat free frozen top whip", + "fat free milk", + "amaretto" + ] + }, + { + "id": 3289, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "large eggs", + "garlic cloves", + "ground black pepper", + "pecorino romano cheese", + "plum tomatoes", + "finely chopped onion", + "salt", + "large egg whites", + "cooking spray", + "flat leaf parsley" + ] + }, + { + "id": 29156, + "cuisine": "indian", + "ingredients": [ + "salt", + "ghee", + "oil", + "rice", + "jaggery", + "grated coconut", + "ground cardamom" + ] + }, + { + "id": 30957, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "fresh cilantro", + "chili powder", + "paprika", + "taco seasoning", + "ground cumin", + "black beans", + "garlic powder", + "baking potatoes", + "salt", + "ground beef", + "black pepper", + "chopped tomatoes", + "onion powder", + "crushed red pepper flakes", + "sour cream", + "avocado", + "pepper", + "flour", + "butter", + "salsa", + "oregano" + ] + }, + { + "id": 3874, + "cuisine": "indian", + "ingredients": [ + "fat free less sodium chicken broth", + "finely chopped onion", + "yellow split peas", + "ghee", + "fresh ginger", + "salt", + "carrots", + "minced garlic", + "jalapeno chilies", + "ground coriander", + "ground turmeric", + "water", + "brown mustard seeds", + "cumin seed" + ] + }, + { + "id": 4141, + "cuisine": "moroccan", + "ingredients": [ + "salt", + "natural pistachios", + "water", + "fresh mint", + "fresh lemon juice", + "olive oil", + "couscous" + ] + }, + { + "id": 38386, + "cuisine": "greek", + "ingredients": [ + "whole almonds", + "eggplant", + "salt", + "olive oil", + "garlic", + "white sugar", + "cherry tomatoes", + "chili powder", + "onions", + "white wine", + "mint leaves", + "fresh parsley" + ] + }, + { + "id": 45617, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "chili powder", + "garlic cloves", + "olive oil", + "salt", + "corn tortillas", + "water", + "non-fat sour cream", + "shrimp", + "avocado", + "ground red pepper", + "orange juice", + "ground cumin" + ] + }, + { + "id": 26014, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "beef", + "thai chile", + "minced garlic", + "ginger", + "chopped fresh mint", + "sugar", + "vegetable oil", + "fresh lime juice", + "asian eggplants", + "reduced sodium soy sauce", + "rice vermicelli" + ] + }, + { + "id": 38556, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "garlic", + "sugar", + "roma tomatoes", + "lime juice", + "chopped cilantro fresh", + "white onion", + "jalapeno chilies" + ] + }, + { + "id": 40258, + "cuisine": "moroccan", + "ingredients": [ + "ground pepper", + "salt", + "white mushrooms", + "ground cumin", + "steamed rice", + "paprika", + "pitted prunes", + "fresh parsley", + "tomato paste", + "sweet potatoes", + "ground coriander", + "chopped parsley", + "olive oil", + "lamb shoulder", + "garlic cloves", + "onions" + ] + }, + { + "id": 6334, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "chicken parts", + "poultry seasoning", + "adobo", + "ground black pepper", + "onion powder", + "dried oregano", + "white flour", + "large eggs", + "Tabasco Pepper Sauce", + "liquid smoke", + "garlic powder", + "corn oil", + "ground cayenne pepper" + ] + }, + { + "id": 8052, + "cuisine": "indian", + "ingredients": [ + "eggs", + "semolina", + "sugar", + "green cardamom", + "milk", + "shortening", + "dry milk powder" + ] + }, + { + "id": 1855, + "cuisine": "chinese", + "ingredients": [ + "sirloin tip", + "sesame oil", + "Maggi", + "corn starch", + "white pepper", + "ginger", + "oil", + "sugar", + "dry sherry", + "scallions", + "water", + "salt", + "oyster sauce" + ] + }, + { + "id": 6859, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "green tea bags", + "boiling water", + "fresh mint", + "mint leaves" + ] + }, + { + "id": 8032, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "cuminseed", + "caraway seeds", + "coarse salt", + "red bell pepper", + "oil-cured black olives", + "dried chile", + "coriander seeds", + "garlic cloves" + ] + }, + { + "id": 6672, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "vegetable oil", + "all-purpose flour", + "refried beans", + "turkey", + "beans", + "vegetable shortening", + "masa harina", + "baking powder", + "salt" + ] + }, + { + "id": 12223, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "hothouse cucumber", + "olive oil", + "fresh lemon juice", + "fresh dill", + "orzo", + "fennel bulb", + "green beans" + ] + }, + { + "id": 44162, + "cuisine": "british", + "ingredients": [ + "Jell-O Gelatin", + "wine", + "vanilla instant pudding", + "frozen whipped topping", + "fruit cocktail", + "sponge cake" + ] + }, + { + "id": 17460, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "snow peas", + "chinese noodles", + "carrots", + "broccoli florets", + "teriyaki sauce", + "boneless skinless chicken breasts", + "onions" + ] + }, + { + "id": 20293, + "cuisine": "greek", + "ingredients": [ + "fresh rosemary", + "boneless skinless chicken breasts", + "diced tomatoes", + "fresh parsley", + "olive oil", + "sliced kalamata olives", + "salt", + "pepper", + "chopped fresh thyme", + "garlic", + "dried oregano", + "feta cheese", + "lemon", + "lemon juice" + ] + }, + { + "id": 12605, + "cuisine": "vietnamese", + "ingredients": [ + "black pepper", + "yellow onion", + "garlic", + "ground beef", + "ground pork", + "cognac", + "eggs", + "salt", + "puff pastry" + ] + }, + { + "id": 13620, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "medium shrimp", + "parsley sprigs", + "crushed red pepper", + "olive oil", + "salt", + "cremini mushrooms", + "marinara sauce", + "spaghetti" + ] + }, + { + "id": 6632, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "large garlic cloves", + "salt", + "olive oil spray", + "mozzarella cheese", + "large eggs", + "part-skim ricotta cheese", + "oven-ready lasagna noodles", + "crushed tomatoes", + "grated parmesan cheese", + "crushed red pepper", + "fresh basil leaves", + "italian sausage", + "ground black pepper", + "diced tomatoes", + "chopped onion", + "dried oregano" + ] + }, + { + "id": 37248, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "olive oil", + "salt", + "pitted kalamata olives", + "fingerling potatoes", + "dried oregano", + "soft goat's cheese", + "cooking spray", + "red bell pepper", + "whole wheat pizza dough", + "cracked black pepper" + ] + }, + { + "id": 40382, + "cuisine": "british", + "ingredients": [ + "powdered sugar", + "mincemeat", + "light brown sugar", + "almonds", + "plain flour", + "butter", + "orange" + ] + }, + { + "id": 28794, + "cuisine": "indian", + "ingredients": [ + "sugar", + "dry mustard", + "dried red chile peppers", + "tomato paste", + "vinegar", + "oil", + "chicken", + "clove", + "fresh ginger", + "salt", + "onions", + "ground cinnamon", + "paprika", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 12793, + "cuisine": "mexican", + "ingredients": [ + "lime", + "russet potatoes", + "cilantro leaves", + "eggs", + "corn kernels", + "cracked black pepper", + "scallions", + "pie dough", + "jalapeno chilies", + "garlic", + "juice", + "kosher salt", + "vegetable oil", + "purple onion", + "onions" + ] + }, + { + "id": 10127, + "cuisine": "chinese", + "ingredients": [ + "lettuce", + "herbs", + "peanut butter", + "rice paper", + "fresh basil", + "sesame oil", + "carrots", + "avocado", + "hoisin sauce", + "turkey meat", + "mint", + "rice vinegar", + "cucumber" + ] + }, + { + "id": 38268, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper flakes", + "garlic cloves", + "dry white wine", + "extra-virgin olive oil", + "littleneck clams", + "fresh parsley", + "clam juice", + "linguine" + ] + }, + { + "id": 43674, + "cuisine": "greek", + "ingredients": [ + "tomato sauce", + "dried basil", + "salt", + "dried oregano", + "pepper", + "feta cheese", + "lemon juice", + "sugar", + "dried thyme", + "garlic cloves", + "rigatoni", + "sweet onion", + "diced tomatoes", + "ground beef" + ] + }, + { + "id": 15935, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "oyster sauce", + "all-purpose flour", + "salt", + "catfish" + ] + }, + { + "id": 45217, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "rice", + "chopped cilantro", + "eggs", + "spring onions", + "carrots", + "sweet soy sauce", + "oyster sauce", + "red chili peppers", + "garlic", + "red bell pepper" + ] + }, + { + "id": 34775, + "cuisine": "italian", + "ingredients": [ + "water", + "roma tomatoes", + "cornmeal", + "fontina cheese", + "olive oil", + "bacon", + "milk", + "baby spinach", + "cremini mushrooms", + "ground black pepper", + "salt" + ] + }, + { + "id": 13975, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "Italian bread", + "fresh green peas", + "heavy cream", + "lettuce", + "leeks", + "chicken broth", + "fresh mint" + ] + }, + { + "id": 31225, + "cuisine": "chinese", + "ingredients": [ + "water chestnuts", + "ground pork", + "peanut oil", + "soy sauce", + "chives", + "fine sea salt", + "ground beef", + "cold water", + "flour", + "ginger", + "scallions", + "egg whites", + "napa cabbage", + "rice vinegar" + ] + }, + { + "id": 13186, + "cuisine": "southern_us", + "ingredients": [ + "herbs", + "salt", + "carrots", + "eggs", + "buttermilk", + "cayenne pepper", + "onions", + "chicken gizzards", + "garlic", + "oil", + "marinade", + "all-purpose flour", + "bay leaf" + ] + }, + { + "id": 13832, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "peanuts", + "allspice berries", + "canela", + "kosher salt", + "annatto seeds", + "chipotles in adobo", + "plantains", + "black peppercorns", + "sherry vinegar", + "ancho chile pepper", + "canola oil", + "chicken stock", + "roasted garlic oil", + "whole cloves", + "bittersweet chocolate" + ] + }, + { + "id": 20230, + "cuisine": "mexican", + "ingredients": [ + "hominy", + "Mexican oregano", + "chicken thighs", + "chicken broth", + "serrano peppers", + "salt", + "cabbage", + "vinegar", + "tomatillos", + "cumin", + "lime juice", + "chicken breasts", + "onions" + ] + }, + { + "id": 48673, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "egg yolks", + "graham crackers", + "sweetened condensed milk", + "unsalted butter", + "ground pecans", + "lime zest", + "granulated sugar", + "key lime juice" + ] + }, + { + "id": 43426, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "cooked chicken", + "garlic salt", + "flour tortillas", + "salsa", + "leaves", + "chili powder", + "ground cumin", + "tomatoes", + "green onions", + "sour cream" + ] + }, + { + "id": 46438, + "cuisine": "japanese", + "ingredients": [ + "pepper", + "salt", + "corn starch", + "brown sugar", + "cayenne", + "peanut oil", + "japanese eggplants", + "sesame seeds", + "rice vinegar", + "red bell pepper", + "soy sauce", + "garlic", + "long-grain rice" + ] + }, + { + "id": 20290, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "dry white wine", + "chopped onion", + "fresh basil", + "olive oil", + "crushed red pepper", + "arborio rice", + "water", + "vegetable broth", + "fresh parsley", + "cremini mushrooms", + "fresh parmesan cheese", + "salt" + ] + }, + { + "id": 38836, + "cuisine": "mexican", + "ingredients": [ + "chicken breast tenders", + "jalapeno chilies", + "salt", + "low-fat sour cream", + "shredded extra sharp cheddar cheese", + "vegetable oil", + "Balsamico Bianco", + "chopped tomatoes", + "cooking spray", + "cilantro leaves", + "black pepper", + "flour tortillas", + "shredded lettuce" + ] + }, + { + "id": 6667, + "cuisine": "vietnamese", + "ingredients": [ + "white vinegar", + "hearts of palm", + "extra-virgin olive oil", + "carrots", + "kosher salt", + "bread and butter pickles", + "cilantro leaves", + "sugar", + "lime juice", + "purple onion", + "hass avocado", + "baguette", + "jalapeno chilies", + "persian cucumber" + ] + }, + { + "id": 35977, + "cuisine": "japanese", + "ingredients": [ + "milk", + "heavy cream", + "green tea", + "honey", + "sugar", + "egg yolks" + ] + }, + { + "id": 47569, + "cuisine": "chinese", + "ingredients": [ + "peanuts", + "sirloin steak", + "onions", + "chicken broth", + "broccoli florets", + "crushed red pepper", + "water chestnuts", + "garlic", + "soy sauce", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 25490, + "cuisine": "brazilian", + "ingredients": [ + "coconut oil", + "unsalted cashews", + "vanilla bean paste", + "toasted coconut", + "pomegranate seeds", + "cashew butter", + "coconut milk", + "figs", + "vanilla extract", + "toasted almonds", + "bananas", + "salt", + "pure acai puree" + ] + }, + { + "id": 40037, + "cuisine": "italian", + "ingredients": [ + "low-fat sour cream", + "cooking spray", + "pizza doughs", + "olive oil", + "purple onion", + "cornmeal", + "black pepper", + "button mushrooms", + "crumbled gorgonzola", + "shiitake", + "salt" + ] + }, + { + "id": 10751, + "cuisine": "indian", + "ingredients": [ + "coconut", + "baby goat", + "mutton", + "onions", + "tomatoes", + "garam masala", + "lemon", + "salt", + "tumeric", + "coriander powder", + "ginger", + "green chilies", + "olive oil", + "chili powder", + "garlic" + ] + }, + { + "id": 9087, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "yoghurt", + "sunflower oil", + "green chilies", + "sugar", + "instant yeast", + "chili powder", + "garlic", + "strong white bread flour", + "salted butter", + "teas", + "ginger", + "kalonji", + "warm water", + "potatoes", + "sea salt", + "cilantro leaves" + ] + }, + { + "id": 8735, + "cuisine": "mexican", + "ingredients": [ + "cilantro leaves", + "vegetable oil", + "boneless skinless chicken breast halves", + "garlic cloves", + "salt", + "chile sauce" + ] + }, + { + "id": 38022, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "garam masala", + "garlic", + "chicken thighs", + "crushed tomatoes", + "cilantro", + "ground coriander", + "kosher salt", + "butter", + "yellow onion", + "ground cumin", + "coconut sugar", + "fresh ginger root", + "crushed red pepper flakes", + "coconut milk" + ] + }, + { + "id": 15198, + "cuisine": "cajun_creole", + "ingredients": [ + "ground red pepper", + "chopped celery", + "medium shrimp", + "minced garlic", + "old bay seasoning", + "chopped onion", + "no-salt-added diced tomatoes", + "vegetable oil", + "green pepper", + "dried oregano", + "dried thyme", + "diced tomatoes", + "long-grain rice" + ] + }, + { + "id": 12088, + "cuisine": "jamaican", + "ingredients": [ + "angel hair", + "garlic", + "coconut milk", + "meat", + "scallions", + "curry powder", + "salt", + "hot pepper", + "thyme" + ] + }, + { + "id": 14253, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "garlic", + "sugar", + "diced green chilies", + "roasted tomatoes", + "fresh cilantro", + "salt", + "black pepper", + "jalapeno chilies", + "ground cumin" + ] + }, + { + "id": 30754, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless chicken skinless thigh", + "bell pepper", + "red pepper", + "thyme leaves", + "chicken stock", + "ground black pepper", + "bay leaves", + "beer", + "andouille sausage", + "parsley leaves", + "basil leaves", + "long-grain rice", + "white pepper", + "seafood seasoning", + "garlic", + "onions" + ] + }, + { + "id": 22151, + "cuisine": "southern_us", + "ingredients": [ + "refrigerated piecrusts", + "blackberries", + "sugar", + "vanilla extract", + "vanilla ice cream", + "butter", + "piecrust", + "all-purpose flour" + ] + }, + { + "id": 46267, + "cuisine": "french", + "ingredients": [ + "potatoes", + "cheese curds", + "vegetable oil", + "beef gravy" + ] + }, + { + "id": 16834, + "cuisine": "indian", + "ingredients": [ + "paprika", + "onions", + "garam masala", + "cayenne pepper", + "plain whole-milk yogurt", + "chicken breast halves", + "ground cardamom", + "ground cumin", + "tumeric", + "salt", + "chicken thighs" + ] + }, + { + "id": 40840, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "lime wedges", + "garlic cloves", + "water", + "sweet potatoes", + "chopped onion", + "fat free less sodium chicken broth", + "chopped green bell pepper", + "light coconut milk", + "basmati rice", + "curry powder", + "peeled fresh ginger", + "roasting chickens" + ] + }, + { + "id": 11327, + "cuisine": "russian", + "ingredients": [ + "unsalted butter", + "sugar", + "cream cheese", + "candied orange peel", + "ricotta cheese", + "vanilla beans" + ] + }, + { + "id": 25855, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ricotta", + "salad", + "olive oil", + "cherry tomatoes", + "onions", + "spinach leaves", + "basil leaves" + ] + }, + { + "id": 47343, + "cuisine": "thai", + "ingredients": [ + "vegetable oil", + "fresh lemon juice", + "fresh coriander", + "purple onion", + "shredded cabbage", + "salt", + "sugar", + "grated carrot", + "fresh mint" + ] + }, + { + "id": 19782, + "cuisine": "japanese", + "ingredients": [ + "miso", + "safflower oil", + "rice vinegar", + "pepper" + ] + }, + { + "id": 7552, + "cuisine": "korean", + "ingredients": [ + "sugar", + "sesame oil", + "sweet paprika", + "fresh ginger", + "rice vinegar", + "toasted sesame seeds", + "sirloin", + "green onions", + "cayenne pepper", + "soy sauce", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 16316, + "cuisine": "french", + "ingredients": [ + "baguette", + "fingerling potatoes", + "purple onion", + "lacinato kale", + "fennel bulb", + "garlic", + "crushed tomatoes", + "spices", + "tangerine", + "cod fillets", + "Castelvetrano olives" + ] + }, + { + "id": 642, + "cuisine": "chinese", + "ingredients": [ + "water", + "green onions", + "garlic", + "granulated sugar", + "red wine vinegar", + "corn starch", + "soy sauce", + "boneless chicken breast", + "red pepper", + "canola oil", + "hot pepper sauce", + "sesame oil", + "roasted peanuts" + ] + }, + { + "id": 9850, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "all-purpose flour", + "sugar", + "whipping cream", + "vanilla ice cream", + "apples", + "refrigerated piecrusts", + "maple syrup" + ] + }, + { + "id": 22208, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "green onions", + "dried lavender", + "unsalted butter", + "chopped fresh thyme", + "extra-virgin olive oil", + "fresh rosemary", + "fingerling potatoes", + "large garlic cloves", + "flat leaf parsley", + "ground sage", + "shallots", + "sea salt" + ] + }, + { + "id": 40665, + "cuisine": "filipino", + "ingredients": [ + "water", + "salt", + "onions", + "brown sugar", + "bay leaves", + "liver", + "vinegar", + "sauce", + "pepper", + "garlic", + "oil" + ] + }, + { + "id": 36783, + "cuisine": "italian", + "ingredients": [ + "sugar", + "olive oil", + "salt", + "red bell pepper", + "tomato sauce", + "mozzarella cheese", + "mild Italian sausage", + "fresh oregano", + "warm water", + "parmigiano reggiano cheese", + "yellow onion", + "bread flour", + "semolina flour", + "active dry yeast", + "ricotta cheese", + "garlic cloves" + ] + }, + { + "id": 6323, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "shredded carrots", + "vegetable broth", + "chinese five-spice powder", + "fresh ginger", + "sesame oil", + "salt", + "glass noodles", + "green cabbage", + "chili paste", + "vegetable oil", + "scallions", + "pepper", + "broccoli stems", + "garlic", + "onions" + ] + }, + { + "id": 48485, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "granulated garlic", + "seasoning salt", + "breadcrumb mix", + "shrimp" + ] + }, + { + "id": 27492, + "cuisine": "thai", + "ingredients": [ + "tumeric", + "lemongrass", + "full fat coconut milk", + "vegetable broth", + "firm tofu", + "white mushrooms", + "brown sugar", + "soy sauce", + "lime", + "green onions", + "red curry paste", + "carrots", + "fresh spinach", + "fresh cilantro", + "miso paste", + "crushed red pepper", + "garlic cloves", + "snow peas", + "coconut oil", + "curry powder", + "fresh ginger", + "worcestershire sauce", + "yellow onion", + "red bell pepper" + ] + }, + { + "id": 21868, + "cuisine": "mexican", + "ingredients": [ + "sour cream", + "green enchilada sauce", + "shredded Monterey Jack cheese", + "corn tortillas", + "black olives" + ] + }, + { + "id": 32601, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "carrots", + "sugar", + "ground black pepper", + "fresh coriander", + "lemon", + "coriander seeds", + "ground cumin" + ] + }, + { + "id": 25277, + "cuisine": "italian", + "ingredients": [ + "vanilla ice cream", + "fresh mint", + "grated lemon zest", + "sorbet", + "lemon rind" + ] + }, + { + "id": 19253, + "cuisine": "thai", + "ingredients": [ + "lime wedges", + "chicken noodle soup", + "coconut milk", + "cilantro leaves", + "fresh lime juice" + ] + }, + { + "id": 4692, + "cuisine": "french", + "ingredients": [ + "chicken broth", + "ground black pepper", + "frozen green beans", + "pesto", + "potatoes", + "carrots", + "great northern beans", + "whole peeled tomatoes", + "salt", + "olive oil", + "boneless skinless chicken breasts", + "onions" + ] + }, + { + "id": 3379, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "jicama", + "salt", + "beef steak", + "sugar", + "kecap manis", + "thai chile", + "carrots", + "fish sauce", + "ground black pepper", + "shallots", + "Italian basil", + "canola oil", + "granny smith apples", + "regular soy sauce", + "garlic", + "fresh lime juice" + ] + }, + { + "id": 33801, + "cuisine": "italian", + "ingredients": [ + "orange bell pepper", + "heavy cream", + "minced garlic", + "grated parmesan cheese", + "pasta shells", + "minced onion", + "stewed tomatoes", + "bulk italian sausag", + "vegetable oil", + "fresh parsley" + ] + }, + { + "id": 35388, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "radishes", + "oil", + "asafoetida", + "salt", + "dried red chile peppers", + "tomatoes", + "yoghurt", + "black mustard seeds", + "coconut", + "cilantro leaves" + ] + }, + { + "id": 32870, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "all-purpose flour", + "sugar", + "egg whites", + "vegetable oil cooking spray", + "low-fat buttermilk", + "margarine", + "whole wheat flour", + "salt" + ] + }, + { + "id": 38679, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "roma tomatoes", + "black beans", + "salt", + "white corn", + "cilantro", + "lime juice" + ] + }, + { + "id": 21948, + "cuisine": "french", + "ingredients": [ + "liquid", + "buttermilk", + "vanilla beans" + ] + }, + { + "id": 29869, + "cuisine": "british", + "ingredients": [ + "tomato purée", + "ground sirloin", + "extra-virgin olive oil", + "half & half", + "peas", + "extra sharp cheddar cheese", + "kosher salt", + "russet potatoes", + "cayenne pepper", + "ground black pepper", + "large garlic cloves", + "onions" + ] + }, + { + "id": 22684, + "cuisine": "chinese", + "ingredients": [ + "mayonaise", + "ground black pepper", + "salt", + "medium shrimp", + "dried basil", + "onion powder", + "all-purpose flour", + "milk", + "granulated sugar", + "rice vinegar", + "panko breadcrumbs", + "eggs", + "garlic powder", + "vegetable oil", + "garlic chili sauce" + ] + }, + { + "id": 7066, + "cuisine": "italian", + "ingredients": [ + "lower sodium chicken broth", + "asparagus", + "olive oil", + "grated lemon zest", + "kosher salt", + "pecorino romano cheese", + "pasta", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 43040, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "water", + "garlic cloves", + "sugar", + "salt", + "sweet bean sauce", + "chile paste with garlic", + "egg noodles", + "fresh lime juice", + "baby bok choy", + "dark sesame oil" + ] + }, + { + "id": 14346, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "water", + "whole milk", + "vanilla extract", + "ground allspice", + "ground cinnamon", + "ground cloves", + "large eggs", + "fresh orange juice", + "cream cheese", + "grated orange peel", + "orange", + "baking powder", + "cake flour", + "sugar", + "unsalted butter", + "apple cider vinegar", + "salt" + ] + }, + { + "id": 39130, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "salt", + "chopped cilantro", + "pinenuts", + "trout fillet", + "scallions", + "preserved lemon", + "golden raisins", + "cayenne pepper", + "honey", + "extra-virgin olive oil", + "carrots" + ] + }, + { + "id": 35956, + "cuisine": "indian", + "ingredients": [ + "zucchini", + "baking potatoes", + "chickpeas", + "chopped cilantro fresh", + "ground red pepper", + "green peas", + "ground coriander", + "ground turmeric", + "vegetable oil", + "salt", + "garlic cloves", + "ground cumin", + "peeled fresh ginger", + "butter", + "chopped onion", + "serrano chile" + ] + }, + { + "id": 43154, + "cuisine": "french", + "ingredients": [ + "dried thyme", + "beef stew meat", + "carrots", + "pepper", + "vegetable oil", + "all-purpose flour", + "potatoes", + "salt", + "dijon", + "diced tomatoes", + "beef broth" + ] + }, + { + "id": 1440, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "garlic cloves", + "dried oregano", + "salt", + "sour cream", + "steamed white rice", + "ground white pepper", + "boneless pork shoulder", + "green chilies", + "chopped cilantro fresh" + ] + }, + { + "id": 2369, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "garlic", + "oil", + "fenugreek leaves", + "chili powder", + "lamb", + "onions", + "garam masala", + "salt", + "chillies", + "tumeric", + "ginger", + "cumin seed", + "plum tomatoes" + ] + }, + { + "id": 22949, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "olive oil", + "garlic", + "cumin", + "chicken stock", + "chili powder", + "scallions", + "cauliflower", + "fresh thyme", + "green pepper", + "white onion", + "red pepper", + "bay leaf" + ] + }, + { + "id": 27992, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "salt", + "red bell pepper", + "minced garlic", + "whipping cream", + "hot Italian sausages", + "fennel", + "artichokes", + "fat", + "fennel seeds", + "dry white wine", + "chopped onion", + "rigatoni" + ] + }, + { + "id": 20913, + "cuisine": "chinese", + "ingredients": [ + "scallions", + "stem ginger in syrup", + "hoisin sauce", + "duck breasts", + "glass noodles" + ] + }, + { + "id": 28751, + "cuisine": "mexican", + "ingredients": [ + "lime", + "tomatoes", + "salt", + "avocado", + "garlic", + "pepper", + "onions" + ] + }, + { + "id": 44913, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "basil", + "balsamic vinegar", + "purple onion", + "tomatoes", + "sea salt", + "chicken breasts", + "garlic" + ] + }, + { + "id": 5817, + "cuisine": "chinese", + "ingredients": [ + "sea bass", + "olive oil", + "chili pepper flakes", + "salt", + "onions", + "chili pepper", + "black bean sauce", + "ginger", + "peanut oil", + "fish", + "chicken broth", + "pepper", + "szechwan peppercorns", + "garlic", + "lotus roots", + "ground cumin", + "sugar", + "shiitake", + "cilantro", + "fermented bean paste", + "bamboo shoots" + ] + }, + { + "id": 43914, + "cuisine": "italian", + "ingredients": [ + "pepper", + "broccoli florets", + "bow-tie pasta", + "fresh parmesan cheese", + "green peas", + "red bell pepper", + "olive oil", + "sliced carrots", + "garlic cloves", + "fresh basil", + "tomato juice", + "salt", + "celery" + ] + }, + { + "id": 39352, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "plum tomatoes", + "salt", + "white onion", + "cilantro leaves", + "jalapeno chilies" + ] + }, + { + "id": 13742, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "large eggs", + "salt", + "sugar", + "crystallized ginger", + "baking powder", + "ground cinnamon", + "baking soda", + "cooking spray", + "all-purpose flour", + "ground cloves", + "semisweet chocolate", + "vanilla extract" + ] + }, + { + "id": 3917, + "cuisine": "french", + "ingredients": [ + "olive oil", + "chopped fresh thyme", + "eggplant", + "goat cheese", + "rocket leaves", + "french bread", + "arugula", + "brine-cured olives", + "zucchini", + "red bell pepper" + ] + }, + { + "id": 45564, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "tortilla chips", + "shredded cheddar cheese", + "chicken", + "salsa verde", + "green pepper" + ] + }, + { + "id": 48726, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "garlic cloves", + "fresh parsley", + "ground ginger", + "chicken breasts", + "carrots", + "chopped cilantro fresh", + "olive oil", + "lemon juice", + "onions", + "black pepper", + "salt", + "cinnamon sticks", + "saffron" + ] + }, + { + "id": 12068, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "green chilies", + "tumeric", + "vegetable oil", + "chopped cilantro fresh", + "cauliflower", + "unsalted butter", + "cumin seed", + "kosher salt", + "garlic" + ] + }, + { + "id": 30968, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "poppy seeds", + "green chilies", + "chicken", + "pepper", + "dry coconut", + "garlic", + "ground cardamom", + "anise seed", + "coriander seeds", + "ginger", + "cumin seed", + "fresh coriander", + "chili powder", + "tamarind paste", + "onions" + ] + }, + { + "id": 42038, + "cuisine": "russian", + "ingredients": [ + "olive oil", + "beef tenderloin", + "sour cream", + "cremini mushrooms", + "dijon mustard", + "all-purpose flour", + "fresh dill", + "unsalted butter", + "salt", + "black pepper", + "shallots", + "beef broth" + ] + }, + { + "id": 31740, + "cuisine": "southern_us", + "ingredients": [ + "light sour cream", + "pimentos", + "reduced fat mayonnaise", + "light butter", + "vegetable oil cooking spray", + "white cheddar cheese", + "tomatoes", + "ground red pepper", + "bread slices", + "reduced fat sharp cheddar cheese", + "worcestershire sauce", + "onions" + ] + }, + { + "id": 43658, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "green onions", + "creamy peanut butter", + "beansprouts", + "Sriracha", + "romaine lettuce leaves", + "carrots", + "soy sauce", + "hoisin sauce", + "salt", + "cucumber", + "thai basil", + "rice noodles", + "roasted peanuts", + "medium shrimp" + ] + }, + { + "id": 1318, + "cuisine": "southern_us", + "ingredients": [ + "mace", + "whole milk", + "ground allspice", + "Nielsen-Massey Vanilla Extract", + "extra large eggs", + "clover honey", + "sweet potatoes", + "fine sea salt", + "unsalted butter", + "cinnamon" + ] + }, + { + "id": 10350, + "cuisine": "italian", + "ingredients": [ + "solid pack pumpkin", + "ground nutmeg", + "wonton wrappers", + "all-purpose flour", + "fat free milk", + "cooking spray", + "salt", + "hazelnuts", + "grated parmesan cheese", + "cheese", + "sage", + "bread crumbs", + "ground black pepper", + "butter", + "corn starch" + ] + }, + { + "id": 45032, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "lime", + "sesame oil", + "seaweed", + "sushi rice", + "mirin", + "ginger", + "white sesame seeds", + "avocado", + "gari", + "red cabbage", + "rice vinegar", + "soy sauce", + "miso paste", + "wasabi powder", + "english cucumber" + ] + }, + { + "id": 22901, + "cuisine": "indian", + "ingredients": [ + "sesame seeds", + "boneless skinless chicken breast halves", + "plain low-fat yogurt", + "large garlic cloves", + "mango chutney", + "chopped cilantro fresh", + "curry powder", + "fresh lemon juice" + ] + }, + { + "id": 25222, + "cuisine": "brazilian", + "ingredients": [ + "ground black pepper", + "carrots", + "chicken stock", + "salt", + "onions", + "chicken meat", + "fresh parsley", + "tomatoes", + "ham", + "long grain white rice" + ] + }, + { + "id": 20356, + "cuisine": "indian", + "ingredients": [ + "bengal gram", + "salt", + "cooking oil", + "cumin seed", + "split black lentils", + "rice", + "water", + "split yellow lentils", + "dried red chile peppers" + ] + }, + { + "id": 43414, + "cuisine": "cajun_creole", + "ingredients": [ + "ketchup", + "shredded cabbage", + "peanut oil", + "white vinegar", + "prepared horseradish", + "creole seasoning", + "oysters", + "paprika", + "self-rising cornmeal", + "mayonaise", + "dijon mustard", + "rolls" + ] + }, + { + "id": 20585, + "cuisine": "indian", + "ingredients": [ + "sugar", + "ground cardamom", + "sesame seeds", + "milk", + "powdered milk" + ] + }, + { + "id": 46535, + "cuisine": "italian", + "ingredients": [ + "coarse salt", + "extra-virgin olive oil", + "minced garlic", + "parmagiano reggiano", + "baking potatoes" + ] + }, + { + "id": 35651, + "cuisine": "southern_us", + "ingredients": [ + "water", + "ginger", + "mustard seeds", + "garlic salt", + "nutmeg", + "cinnamon", + "salt", + "onions", + "cabbage", + "black pepper", + "bacon", + "ham hock", + "coriander", + "allspice", + "clove", + "black-eyed peas", + "crushed red pepper", + "bay leaf", + "peppercorns" + ] + }, + { + "id": 4531, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "blackberries", + "fresh raspberries", + "fresh lime", + "cachaca" + ] + }, + { + "id": 11942, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "garlic", + "sesame oil", + "cooking sherry", + "pepper", + "steak", + "sugar", + "ginger", + "onions" + ] + }, + { + "id": 42875, + "cuisine": "italian", + "ingredients": [ + "water", + "red wine vinegar", + "fresh oregano", + "brine cured green olives", + "chopped fresh mint", + "fennel bulb", + "crushed red pepper", + "squid", + "flat leaf parsley", + "broth", + "tomato paste", + "chopped fresh thyme", + "purple onion", + "garlic cloves", + "fillets", + "whole grain dijon mustard", + "extra-virgin olive oil", + "striped bass", + "country bread", + "varnish clams" + ] + }, + { + "id": 43802, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "red wine vinegar", + "fresh oregano", + "tomatoes", + "lobster", + "cayenne pepper", + "onions", + "fresh basil", + "extra-virgin olive oil", + "garlic cloves", + "pasta", + "fresh thyme", + "whipping cream", + "fresh mint" + ] + }, + { + "id": 19131, + "cuisine": "southern_us", + "ingredients": [ + "smoked sea salt", + "baking powder", + "all-purpose flour", + "chocolate chunks", + "unsalted butter", + "cracked black pepper", + "baking soda", + "buttermilk", + "dried fig", + "cheddar cheese", + "large eggs", + "salt" + ] + }, + { + "id": 32777, + "cuisine": "cajun_creole", + "ingredients": [ + "active dry yeast", + "confectioners sugar", + "shortening", + "vegetable oil", + "bread flour", + "eggs", + "evaporated milk", + "white sugar", + "warm water", + "salt" + ] + }, + { + "id": 34990, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "red pepper", + "hot sauce", + "green onions", + "bacon", + "grits", + "pepper jack", + "heavy cream", + "shrimp", + "minced garlic", + "shallots", + "beef broth" + ] + }, + { + "id": 21248, + "cuisine": "brazilian", + "ingredients": [ + "tapioca flour", + "butter", + "large eggs", + "garlic cloves", + "milk", + "salt", + "black pepper", + "grated parmesan cheese" + ] + }, + { + "id": 37346, + "cuisine": "korean", + "ingredients": [ + "mayonaise", + "white cabbage", + "spring onions", + "daikon", + "chili sauce", + "corn tortillas", + "lime", + "asian pear", + "sesame oil", + "garlic", + "smoked paprika", + "fresh ginger", + "mirin", + "vegetable oil", + "rice vinegar", + "kimchi", + "soy sauce", + "radishes", + "shichimi togarashi", + "sea salt", + "beef rib short", + "coriander" + ] + }, + { + "id": 5492, + "cuisine": "italian", + "ingredients": [ + "finely chopped fresh parsley", + "rotel pasta, cook and drain", + "Wish-Bone Italian Dressing", + "roast red peppers, drain", + "Hellmann's Dijonnaise Creamy Dijon Mustard", + "pitted olives", + "artichoke hearts", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 37300, + "cuisine": "indian", + "ingredients": [ + "clove", + "apple cider vinegar", + "pears", + "peeled fresh ginger", + "chopped onion", + "golden raisins", + "fresh lemon juice", + "golden brown sugar", + "vegetable oil" + ] + }, + { + "id": 13110, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "grated parmesan cheese", + "low salt chicken broth", + "finely chopped onion", + "dry white wine", + "fresh spinach", + "leeks", + "acini di pepe", + "green cabbage", + "zucchini", + "chopped celery" + ] + }, + { + "id": 11770, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "white onion", + "poblano chiles", + "chicken legs", + "sour cream", + "corn kernels", + "chopped cilantro" + ] + }, + { + "id": 28605, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "anchovy fillets", + "extra-virgin olive oil", + "Italian bread", + "fresh mozzarella", + "freshly ground pepper", + "salt", + "oregano" + ] + }, + { + "id": 11797, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "part-skim ricotta cheese", + "egg whites", + "black pepper", + "egg yolks" + ] + }, + { + "id": 21710, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "large egg whites", + "large eggs", + "baking powder", + "dried basil", + "sun-dried tomatoes", + "flour", + "shredded reduced fat cheddar cheese", + "fat free milk", + "cooking spray", + "pinenuts", + "olive oil", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 32378, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "flour tortillas", + "coriander", + "lime juice", + "cheese", + "tomatoes", + "cooked chicken", + "olive oil", + "sour cream" + ] + }, + { + "id": 29982, + "cuisine": "brazilian", + "ingredients": [ + "condensed milk", + "sugar", + "ice", + "water", + "lime" + ] + }, + { + "id": 47639, + "cuisine": "indian", + "ingredients": [ + "ground paprika", + "coriander powder", + "red food coloring", + "corn flour", + "tumeric", + "potatoes", + "oil", + "chaat masala", + "garlic paste", + "egg whites", + "salt", + "coriander", + "red chili peppers", + "boneless chicken", + "lemon juice", + "ground cumin" + ] + }, + { + "id": 6059, + "cuisine": "spanish", + "ingredients": [ + "bread crumb fresh", + "thyme", + "tripe", + "tomato paste", + "olive oil", + "flat leaf parsley", + "kosher salt", + "red bell pepper", + "onions", + "tomatoes", + "garlic cloves", + "bay leaf" + ] + }, + { + "id": 40435, + "cuisine": "indian", + "ingredients": [ + "low-fat plain yogurt", + "pineapple", + "dried mint flakes", + "sugar", + "salt", + "pink peppercorns" + ] + }, + { + "id": 39418, + "cuisine": "chinese", + "ingredients": [ + "honey", + "coarse salt", + "scallions", + "soy sauce", + "ground pepper", + "garlic", + "boneless skinless chicken breast halves", + "sesame seeds", + "ginger", + "corn starch", + "large egg whites", + "brown rice", + "peanut oil", + "olives" + ] + }, + { + "id": 23558, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "butter", + "dark rum", + "brown sugar" + ] + }, + { + "id": 35287, + "cuisine": "indian", + "ingredients": [ + "fresh red chili", + "fresh ginger root", + "garlic cloves", + "basmati rice", + "medium curry powder", + "chicken stock cubes", + "onions", + "tumeric", + "paprika", + "chicken fillets", + "naan", + "natural low-fat yogurt", + "fresh coriander", + "chickpeas", + "boiling water" + ] + }, + { + "id": 23019, + "cuisine": "italian", + "ingredients": [ + "penne", + "fresh mozzarella", + "canadian bacon", + "crushed tomatoes", + "garlic", + "onions", + "water", + "red pepper flakes", + "fresh parsley", + "olive oil", + "salt" + ] + }, + { + "id": 38295, + "cuisine": "greek", + "ingredients": [ + "greek-style vinaigrette", + "purple onion", + "flour tortillas", + "fresh parsley", + "feta cheese", + "hummus", + "tomatoes", + "kalamata" + ] + }, + { + "id": 3405, + "cuisine": "thai", + "ingredients": [ + "sugar", + "condensed milk", + "lemongrass", + "water", + "fresh mint", + "cold milk", + "teas" + ] + }, + { + "id": 31456, + "cuisine": "korean", + "ingredients": [ + "green leaf lettuce", + "cilantro", + "onions", + "lime", + "sesame oil", + "rice vinegar", + "soy sauce", + "boneless skinless chicken breasts", + "garlic", + "glass noodles", + "mirin", + "daikon", + "chutney" + ] + }, + { + "id": 17252, + "cuisine": "indian", + "ingredients": [ + "fat free yogurt", + "garam masala", + "garlic", + "canola oil", + "fresh cilantro", + "chili powder", + "onions", + "crushed tomatoes", + "boneless chicken breast", + "salt", + "tumeric", + "fresh ginger", + "1% low-fat milk", + "cumin" + ] + }, + { + "id": 5366, + "cuisine": "indian", + "ingredients": [ + "salt", + "wheat flour", + "oil" + ] + }, + { + "id": 9046, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "shiitake", + "firm tofu", + "toasted sesame oil", + "brandy", + "pork tenderloin", + "corn starch", + "soy sauce", + "cayenne", + "cubed potatoes", + "chopped cilantro", + "chicken stock", + "kosher salt", + "white wine vinegar", + "ground white pepper" + ] + }, + { + "id": 47227, + "cuisine": "french", + "ingredients": [ + "eggs", + "semi-sweet chocolate morsels", + "heavy whipping cream", + "egg whites", + "ladyfingers" + ] + }, + { + "id": 8969, + "cuisine": "italian", + "ingredients": [ + "chicken bouillon", + "red beans", + "carrots", + "long grain white rice", + "tomato sauce", + "dried thyme", + "salt", + "onions", + "crushed tomatoes", + "smoked sausage", + "bay leaf", + "water", + "vegetable oil", + "celery", + "cabbage" + ] + }, + { + "id": 29438, + "cuisine": "korean", + "ingredients": [ + "sirloin", + "sesame seeds", + "garlic", + "msg", + "spring onions", + "carrots", + "soy sauce", + "ground black pepper", + "salt", + "caster sugar", + "sesame oil", + "onions" + ] + }, + { + "id": 10177, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "butter", + "ham", + "ground pepper", + "all-purpose flour", + "onions", + "milk", + "white cheddar cheese", + "elbow pasta", + "coarse salt", + "cayenne pepper", + "white sandwich bread" + ] + }, + { + "id": 39910, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "extra-virgin olive oil", + "olive oil", + "russet potatoes", + "all-purpose flour", + "cold water", + "broccoli florets", + "vegetable broth", + "mozzarella cheese", + "ricotta cheese", + "salt" + ] + }, + { + "id": 41766, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "vanilla extract", + "brown sugar", + "white sugar", + "butter", + "pecan halves", + "all-purpose flour" + ] + }, + { + "id": 31625, + "cuisine": "italian", + "ingredients": [ + "sesame seeds", + "all-purpose flour", + "shortening", + "baking powder", + "white sugar", + "eggs", + "lemon extract", + "ground cardamom", + "milk", + "salt" + ] + }, + { + "id": 14889, + "cuisine": "indian", + "ingredients": [ + "fresh red chili", + "red chili peppers", + "fresh ginger root", + "sea salt", + "fenugreek seeds", + "oil", + "clove", + "black peppercorns", + "fresh coriander", + "dry coconut", + "garlic", + "ground almonds", + "fennel seeds", + "tumeric", + "coriander seeds", + "brown mustard seeds", + "cayenne pepper", + "cumin seed", + "tomato purée", + "pepper", + "garam masala", + "paprika", + "green chilies", + "smoked paprika" + ] + }, + { + "id": 17353, + "cuisine": "mexican", + "ingredients": [ + "tomato purée", + "bay leaves", + "salt", + "chicken broth", + "almonds", + "peas", + "ground beef", + "cactus", + "olive oil", + "raisins", + "carrots", + "tomatoes", + "herbs", + "garlic", + "onions" + ] + }, + { + "id": 17469, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "fresh parsley", + "zucchini", + "garlic cloves", + "salt", + "japanese eggplants", + "balsamic vinegar", + "red bell pepper" + ] + }, + { + "id": 31278, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "fresh dill", + "large garlic cloves", + "lemon", + "country bread", + "sugar", + "cheese" + ] + }, + { + "id": 42529, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "frozen broccoli florets", + "carrots", + "reduced-sodium tamari sauce", + "extra firm tofu", + "toasted sesame oil", + "whole wheat flour", + "garlic powder", + "white sesame seeds", + "frozen shelled edamame", + "nutritional yeast", + "soba noodles" + ] + }, + { + "id": 40338, + "cuisine": "french", + "ingredients": [ + "chocolate bars", + "coffee liqueur", + "vanilla extract", + "sauce", + "milk", + "chocolate shavings", + "violets", + "sugar", + "large eggs", + "mint sprigs", + "all-purpose flour", + "chocolate mousse", + "butter", + "salt" + ] + }, + { + "id": 6325, + "cuisine": "cajun_creole", + "ingredients": [ + "ground paprika", + "poblano peppers", + "crushed red pepper flakes", + "okra", + "onions", + "black pepper", + "chicken breasts", + "salt", + "celery", + "chicken broth", + "dried thyme", + "onion powder", + "rice", + "bay leaf", + "green bell pepper", + "flour", + "garlic", + "sausages", + "canola oil" + ] + }, + { + "id": 21764, + "cuisine": "french", + "ingredients": [ + "extra-virgin olive oil", + "dijon mustard", + "white wine vinegar", + "ground black pepper", + "fine sea salt", + "shallots" + ] + }, + { + "id": 17896, + "cuisine": "southern_us", + "ingredients": [ + "oil", + "ranch dressing", + "chicken pieces", + "all-purpose flour" + ] + }, + { + "id": 22317, + "cuisine": "korean", + "ingredients": [ + "eggs", + "anchovies", + "sesame oil", + "scallions", + "soy sauce", + "beef brisket", + "garlic", + "nori", + "stock", + "sesame seeds", + "daikon", + "onions", + "pepper", + "rice cakes", + "salt" + ] + }, + { + "id": 41488, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "honey", + "garlic cloves", + "white sandwich bread", + "hazelnuts", + "extra-virgin olive oil", + "red bell pepper", + "black pepper", + "unsalted butter", + "juice", + "reduced sodium chicken broth", + "salt", + "ancho chile pepper" + ] + }, + { + "id": 49279, + "cuisine": "thai", + "ingredients": [ + "kosher salt", + "rice noodles", + "peanut oil", + "fresh lime juice", + "peeled fresh ginger", + "unsalted dry roast peanuts", + "Thai fish sauce", + "radishes", + "thai chile", + "garlic cloves", + "snow peas", + "fresh basil", + "green onions", + "cilantro leaves", + "fresh mint" + ] + }, + { + "id": 8054, + "cuisine": "thai", + "ingredients": [ + "sugar", + "corn oil", + "fresh mint", + "fish sauce", + "unsalted butter", + "fresh lemon juice", + "lemongrass", + "shallots", + "grated lemon peel", + "halibut fillets", + "hot chili paste" + ] + }, + { + "id": 8322, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "garlic cloves", + "bacon slices", + "butter beans", + "salt", + "green onions", + "fresh parsley" + ] + }, + { + "id": 20064, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "quickcooking grits", + "vegetable oil cooking spray", + "half & half", + "garlic cloves", + "chicken broth", + "olive oil", + "ground red pepper", + "vidalia onion", + "ground nutmeg", + "salt" + ] + }, + { + "id": 23032, + "cuisine": "brazilian", + "ingredients": [ + "shredded cheddar cheese", + "coarse salt", + "chopped cilantro fresh", + "cooked rice", + "lime wedges", + "scallions", + "ground pepper", + "beets", + "dried black beans", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 2709, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "dry sherry", + "eggs", + "coarse salt", + "scallions", + "steamed white rice", + "thai chile", + "white pepper", + "grapeseed oil", + "cooked shrimp" + ] + }, + { + "id": 30302, + "cuisine": "cajun_creole", + "ingredients": [ + "capers", + "all-purpose flour", + "paprika", + "low salt chicken broth", + "cajun-creole seasoning mix", + "boneless skinless chicken breast halves", + "olive oil", + "fresh lemon juice" + ] + }, + { + "id": 15915, + "cuisine": "filipino", + "ingredients": [ + "tomatoes", + "onions", + "ginger", + "hot pepper", + "fish", + "salt" + ] + }, + { + "id": 10488, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "fresh sage", + "ice water", + "coarse salt", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 36022, + "cuisine": "french", + "ingredients": [ + "brown sugar", + "heavy cream", + "strawberries", + "eggs", + "butter", + "all-purpose flour", + "ground cinnamon", + "vegetable oil", + "salt", + "semi-sweet chocolate morsels", + "unsalted butter", + "vanilla extract", + "confectioners sugar" + ] + }, + { + "id": 12538, + "cuisine": "italian", + "ingredients": [ + "water", + "grated lemon peel", + "arborio rice", + "anjou pears", + "ground nutmeg", + "sugar", + "fresh lemon juice" + ] + }, + { + "id": 34455, + "cuisine": "french", + "ingredients": [ + "light brown sugar", + "crisps", + "whole milk", + "cinnamon sticks", + "fennel seeds", + "granulated sugar", + "fresh raspberries", + "black peppercorns", + "large eggs", + "cardamom pods", + "clove", + "large egg yolks", + "heavy cream" + ] + }, + { + "id": 11325, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "margarine", + "dijon mustard", + "onions", + "honey", + "low salt chicken broth", + "sweet potatoes" + ] + }, + { + "id": 6287, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "boneless skinless chicken breast halves", + "peeled fresh ginger", + "ground turmeric", + "peanut oil", + "minced garlic", + "grated lemon peel" + ] + }, + { + "id": 41215, + "cuisine": "korean", + "ingredients": [ + "silken tofu", + "large eggs", + "carrots", + "safflower oil", + "shiitake", + "brown rice", + "korean chile paste", + "low sodium vegetable broth", + "chopped fresh chives", + "kimchi", + "white onion", + "zucchini", + "hot sauce" + ] + }, + { + "id": 13430, + "cuisine": "brazilian", + "ingredients": [ + "marshmallows", + "fresh corn", + "cheddar cheese", + "shredded coconut", + "water", + "honey", + "baking soda", + "dijon mustard", + "sweet potatoes", + "chicken breasts", + "vegetable oil", + "salt", + "condensed milk", + "candy", + "canola oil", + "eggs", + "brown sugar", + "glutinous rice", + "white onion", + "dashi", + "whole wheat flour", + "oat flour", + "flour", + "boneless skinless chicken breasts", + "fresh thyme leaves", + "sprinkles", + "grated lemon zest", + "ham", + "white sugar", + "avocado", + "chili flakes", + "coconut oil", + "skim milk", + "pepper", + "kale", + "parmesan cheese", + "unsalted butter", + "tapioca starch", + "baking powder", + "parsley", + "vanilla extract", + "cream cheese", + "coconut milk", + "chocolate chips", + "low sodium soy sauce", + "powdered sugar", + "sugar", + "muffin", + "milk", + "olive oil", + "bananas", + "large eggs", + "green onions", + "swiss cheese", + "butter", + "all-purpose flour", + "dark brown sugar", + "panko breadcrumbs", + "low-fat milk" + ] + }, + { + "id": 4071, + "cuisine": "southern_us", + "ingredients": [ + "lime rind", + "butter", + "sweetened condensed milk", + "sugar", + "lime slices", + "lemon juice", + "large eggs", + "whipping cream", + "key lime juice", + "powdered sugar", + "graham cracker crumbs", + "vanilla extract" + ] + }, + { + "id": 21663, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "baking mix", + "large eggs", + "vidalia onion", + "butter", + "milk", + "chopped pecans" + ] + }, + { + "id": 9563, + "cuisine": "southern_us", + "ingredients": [ + "ice cubes", + "rosemary sprigs", + "lemon", + "tea bags", + "pepper", + "chicken", + "vidalia onion", + "kosher salt", + "garlic cloves", + "brown sugar", + "olive oil" + ] + }, + { + "id": 15824, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "parmesan cheese", + "cannellini beans", + "lemon", + "fresh parsley leaves", + "kosher salt", + "ground black pepper", + "napa cabbage", + "extra-virgin olive oil", + "celery", + "red chili peppers", + "swiss chard", + "small pasta", + "crushed red pepper flakes", + "carrots", + "water", + "bay leaves", + "russet potatoes", + "garlic cloves", + "onions" + ] + }, + { + "id": 36392, + "cuisine": "spanish", + "ingredients": [ + "finely chopped onion", + "oil", + "chiles", + "orange juice", + "champagne vinegar", + "avocado", + "yellow bell pepper", + "garlic cloves", + "tomatoes", + "extra-virgin olive oil", + "cucumber" + ] + }, + { + "id": 47962, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "salt", + "garlic powder", + "pepper", + "pork loin chops" + ] + }, + { + "id": 46594, + "cuisine": "japanese", + "ingredients": [ + "whole wheat pastry flour", + "fine sea salt", + "leeks", + "cabbage", + "olive oil", + "toasted slivered almonds", + "eggs", + "chives" + ] + }, + { + "id": 45400, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "bay leaves", + "kosher salt", + "garlic cloves", + "fresh sage", + "dried navy beans", + "water", + "pork shoulder boston butt" + ] + }, + { + "id": 41062, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "garlic", + "ground cumin", + "chili powder", + "yellow onion", + "crushed tomatoes", + "salt", + "bacon drippings", + "lean ground beef", + "cornmeal" + ] + }, + { + "id": 10442, + "cuisine": "brazilian", + "ingredients": [ + "milk", + "chicken breasts", + "garlic cloves", + "tomato sauce", + "flour", + "salt", + "oregano", + "eggs", + "parmesan cheese", + "cilantro", + "onions", + "pepper", + "baking powder", + "oil", + "canned corn" + ] + }, + { + "id": 6132, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "peeled fresh ginger", + "fenugreek seeds", + "cinnamon sticks", + "fennel seeds", + "red chile powder", + "lamb shoulder", + "cumin seed", + "chopped cilantro fresh", + "green cardamom pods", + "water", + "vegetable oil", + "ground coriander", + "onions", + "tumeric", + "dry coconut", + "salt", + "garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 31463, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "cooking spray", + "garlic cloves", + "fat free less sodium chicken broth", + "chopped onion", + "large shrimp", + "saffron threads", + "olive oil", + "goat cheese", + "arborio rice", + "dry white wine", + "chopped cilantro fresh" + ] + }, + { + "id": 15206, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "white rice", + "green onions", + "char siu", + "water", + "pork bouillon cube", + "vegetable oil" + ] + }, + { + "id": 19489, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "pilsner", + "beef rib short", + "black pepper", + "sesame oil", + "soy sauce", + "asian pear", + "onions", + "minced garlic", + "rice vinegar" + ] + }, + { + "id": 23240, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "sweet onion", + "mango", + "minced garlic", + "salt", + "pepper", + "jicama", + "lime juice", + "tortilla chips" + ] + }, + { + "id": 36269, + "cuisine": "mexican", + "ingredients": [ + "Dungeness crabs", + "clam juice", + "fat skimmed chicken broth", + "corn", + "roma tomatoes", + "epazote", + "onions", + "olive oil", + "flour", + "salt", + "lime", + "jalapeno chilies", + "garlic" + ] + }, + { + "id": 26487, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "chopped tomatoes", + "shredded lettuce", + "corn tortillas", + "tomato sauce", + "white distilled vinegar", + "lime wedges", + "Goya Ground Cumin", + "adobo", + "minced garlic", + "chicken breasts", + "Goya Hot Sauce", + "oregano", + "avocado", + "white onion", + "Goya Extra Virgin Olive Oil", + "ancho powder", + "chopped cilantro fresh" + ] + }, + { + "id": 16260, + "cuisine": "russian", + "ingredients": [ + "eggs", + "salt", + "flour", + "sour cream", + "butter", + "sugar", + "farmer cheese" + ] + }, + { + "id": 22038, + "cuisine": "italian", + "ingredients": [ + "basil", + "liquid", + "ground black pepper", + "crushed red pepper", + "garlic cloves", + "peeled tomatoes", + "extra-virgin olive oil", + "tuna packed in olive oil", + "unsalted butter", + "salt", + "spaghetti" + ] + }, + { + "id": 43851, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "thickeners", + "melted butter", + "large eggs", + "organic buttermilk", + "cornbread mix", + "gluten", + "shortening", + "cake" + ] + }, + { + "id": 28917, + "cuisine": "japanese", + "ingredients": [ + "sake", + "miso paste", + "ginger", + "shredded nori", + "sesame seeds", + "vegetable oil", + "rice vinegar", + "toasted sesame oil", + "soy sauce", + "granulated sugar", + "extra-virgin olive oil", + "carrots", + "japanese rice", + "shiitake", + "baby spinach", + "scallions", + "plum tomatoes" + ] + }, + { + "id": 1938, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "flank steak", + "basil", + "fish sauce", + "mint leaves", + "chili powder", + "cilantro leaves", + "palm sugar", + "shallots", + "garlic", + "water", + "chives", + "vegetable oil", + "mung bean sprouts" + ] + }, + { + "id": 25441, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "salt", + "fennel seeds", + "whole milk", + "polenta", + "large egg yolks", + "calimyrna figs", + "sugar", + "raisins", + "grappa" + ] + }, + { + "id": 12845, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "pumpkin seeds", + "salt", + "chopped cilantro fresh", + "garlic", + "onions", + "olive oil", + "skinless chicken breasts", + "serrano chile" + ] + }, + { + "id": 17897, + "cuisine": "korean", + "ingredients": [ + "chicken wings", + "granulated sugar", + "garlic cloves", + "fresh ginger root", + "red pepper flakes", + "kiwi", + "soy sauce", + "green onions", + "white sesame seeds", + "ground black pepper", + "rice vinegar" + ] + }, + { + "id": 38259, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "sesame seeds", + "mexican chocolate", + "garlic cloves", + "chopped cilantro", + "black peppercorns", + "almonds", + "freshly ground pepper", + "lard", + "plum tomatoes", + "anise seed", + "coriander seeds", + "salt", + "cinnamon sticks", + "onions", + "guajillo chiles", + "raisins", + "cumin seed", + "ancho chile pepper", + "chicken" + ] + }, + { + "id": 16922, + "cuisine": "thai", + "ingredients": [ + "ground ginger", + "ground black pepper", + "garlic", + "onions", + "unsweetened coconut milk", + "canned low sodium chicken broth", + "cooking oil", + "ground coriander", + "fettucine", + "cayenne", + "salt", + "asian fish sauce", + "lime zest", + "lime juice", + "boneless skinless chicken breasts", + "chopped cilantro" + ] + }, + { + "id": 31431, + "cuisine": "mexican", + "ingredients": [ + "bell pepper", + "cilantro", + "onions", + "vegetables", + "boneless skinless chicken breasts", + "hot sauce", + "jack cheese", + "jalapeno chilies", + "salsa", + "tex mex seasoning", + "flour tortillas", + "butter", + "sour cream" + ] + }, + { + "id": 47760, + "cuisine": "french", + "ingredients": [ + "white vinegar", + "minced onion", + "all-purpose flour", + "milk", + "garlic", + "white sugar", + "water", + "parsley", + "margarine", + "active dry yeast", + "salt" + ] + }, + { + "id": 12428, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "red bell pepper", + "water", + "chopped garlic", + "white wine", + "onions", + "vegetable broth" + ] + }, + { + "id": 7481, + "cuisine": "russian", + "ingredients": [ + "unsalted butter", + "vegetable oil", + "spinach leaves", + "chopped fresh chives", + "all-purpose flour", + "fresh dill", + "whole milk", + "large eggs", + "salt" + ] + }, + { + "id": 23358, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "worcestershire sauce", + "yellow onion", + "celery", + "green bell pepper", + "ground black pepper", + "all-purpose flour", + "turkey meat", + "chicken stock", + "olive oil", + "garlic", + "cayenne pepper", + "canola oil", + "andouille sausage", + "fresh thyme leaves", + "hot sauce", + "red bell pepper" + ] + }, + { + "id": 35332, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dry red wine", + "red bell pepper", + "rosemary sprigs", + "balsamic vinegar", + "salt", + "fresh basil leaves", + "pepper", + "yellow bell pepper", + "fat skimmed chicken broth", + "chicken", + "fresh rosemary", + "roma tomatoes", + "garlic", + "onions" + ] + }, + { + "id": 31957, + "cuisine": "southern_us", + "ingredients": [ + "golden raisins", + "frosting", + "white sugar", + "shortening", + "buttermilk", + "salt", + "eggs", + "butter", + "cake flour", + "orange zest", + "baking soda", + "vanilla extract", + "chopped walnuts" + ] + }, + { + "id": 32937, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "fresh parsley", + "basil", + "celery", + "tomatoes", + "carrots", + "onions", + "jumbo shrimp", + "fregola" + ] + }, + { + "id": 22507, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "green beans", + "slivered almonds", + "salt", + "garlic", + "flat leaf parsley", + "black pepper", + "parmagiano reggiano" + ] + }, + { + "id": 24255, + "cuisine": "greek", + "ingredients": [ + "2% reduced-fat milk", + "greek style plain yogurt" + ] + }, + { + "id": 37514, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "butter", + "all-purpose flour", + "water", + "candied cherries", + "sugar", + "lemon", + "eggs", + "pastry cream", + "salt" + ] + }, + { + "id": 11541, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "carrots", + "sugar", + "vegetable oil", + "sake", + "mirin", + "soy sauce", + "gobo root" + ] + }, + { + "id": 18687, + "cuisine": "british", + "ingredients": [ + "pure vanilla extract", + "baking soda", + "heavy cream", + "kosher salt", + "buttermilk", + "earl grey tea leaves", + "unsalted butter", + "all-purpose flour", + "sugar", + "baking powder" + ] + }, + { + "id": 5830, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "grits", + "pepper", + "worcestershire sauce", + "sharp cheddar cheese", + "butter", + "hot sauce", + "water", + "paprika", + "garlic cloves" + ] + }, + { + "id": 22817, + "cuisine": "jamaican", + "ingredients": [ + "orange", + "cheese", + "lettuce", + "pork tenderloin", + "sour cream", + "jamaican jerk season", + "beef broth", + "tomatoes", + "guacamole", + "corn tortillas" + ] + }, + { + "id": 31752, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "quinoa", + "cumin seed", + "fresh curry leaves", + "baby spinach", + "chopped cilantro", + "kosher salt", + "brown mustard seeds", + "lemon juice", + "olive oil", + "yellow split peas", + "serrano chile" + ] + }, + { + "id": 9554, + "cuisine": "mexican", + "ingredients": [ + "tomato salsa", + "sour cream", + "jack cheese", + "barbecued pork", + "salsa", + "corn tortillas", + "fresh cilantro", + "fat skimmed chicken broth" + ] + }, + { + "id": 22045, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "peeled fresh ginger", + "salt", + "onions", + "cauliflower", + "jalapeno chilies", + "florets", + "garlic cloves", + "cayenne", + "vegetable oil", + "cumin seed", + "water", + "yukon gold potatoes", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 35379, + "cuisine": "italian", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "butter", + "oven-ready lasagna noodles", + "part-skim mozzarella cheese", + "cooking spray", + "salt", + "low-fat milk", + "ground nutmeg", + "mild Italian sausage", + "all-purpose flour", + "cremini mushrooms", + "marinara sauce", + "part-skim ricotta cheese", + "dried parsley" + ] + }, + { + "id": 9781, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "shallots", + "apricots", + "chopped green bell pepper", + "red bell pepper", + "cumin", + "habanero pepper", + "fresh lime juice", + "cherry tomatoes", + "garlic", + "fresh pineapple" + ] + }, + { + "id": 17987, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "cream style corn", + "eggs", + "corn starch", + "evaporated milk" + ] + }, + { + "id": 22544, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "fennel", + "garlic", + "lemon juice", + "pepper flakes", + "crushed tomatoes", + "cinnamon", + "cardamom pods", + "onions", + "black pepper", + "garam masala", + "salt", + "chicken pieces", + "brown sugar", + "coriander seeds", + "ginger", + "oil", + "ground cumin" + ] + }, + { + "id": 42800, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "water", + "salt", + "pepper", + "butter", + "onions", + "ketchup", + "barbecue sauce", + "pork spareribs", + "minced garlic", + "lemon" + ] + }, + { + "id": 39728, + "cuisine": "cajun_creole", + "ingredients": [ + "grated parmesan cheese", + "chopped celery", + "boneless skinless chicken breast halves", + "andouille sausage", + "Alfredo sauce", + "shredded mozzarella cheese", + "dried sage", + "chopped onion", + "chopped garlic", + "lasagna noodles", + "cajun seasoning", + "red bell pepper" + ] + }, + { + "id": 38015, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "lemon", + "chili sauce", + "shrimp", + "butter", + "hot sauce", + "lemon juice", + "ground red pepper", + "paprika", + "garlic cloves", + "oregano", + "french bread", + "worcestershire sauce", + "creole seasoning", + "chopped parsley" + ] + }, + { + "id": 18825, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "broccoli florets", + "shrimp", + "tomatoes", + "sun-dried tomatoes", + "purple onion", + "dried oregano", + "olive oil", + "garlic", + "fresh parsley", + "fresh basil", + "artichoke hearts", + "penne pasta" + ] + }, + { + "id": 30707, + "cuisine": "italian", + "ingredients": [ + "eggs", + "mozzarella cheese", + "sausages", + "cheddar cheese", + "lasagna noodles", + "onions", + "pasta sauce", + "parmesan cheese", + "ground beef", + "cottage cheese", + "ricotta cheese" + ] + }, + { + "id": 43013, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "fresh lemon juice", + "balsamic vinegar", + "sesame oil", + "salad dressing", + "sirloin", + "creamy peanut butter" + ] + }, + { + "id": 12669, + "cuisine": "mexican", + "ingredients": [ + "crema mexican", + "purple onion", + "fresh tomato salsa", + "olive oil", + "ancho powder", + "corn tortillas", + "lime", + "red wine vinegar", + "cilantro leaves", + "ground cumin", + "whitefish", + "jalapeno chilies", + "salt", + "dried oregano" + ] + }, + { + "id": 43837, + "cuisine": "italian", + "ingredients": [ + "mandarin oranges", + "sugar", + "strawberries", + "vegetable oil" + ] + }, + { + "id": 24115, + "cuisine": "french", + "ingredients": [ + "extra-virgin olive oil", + "fresh basil leaves", + "capers", + "garlic cloves", + "plum tomatoes", + "anchovy fillets", + "olives", + "dry white wine", + "chicken thighs" + ] + }, + { + "id": 34587, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "cajun seasoning", + "fresh mushrooms", + "green bell pepper", + "green onions", + "linguine", + "red bell pepper", + "half & half", + "butter", + "lemon pepper", + "dried basil", + "chicken breasts", + "salt" + ] + }, + { + "id": 2261, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "shredded cabbage", + "garlic", + "carrots", + "chinese rice wine", + "black pepper", + "sesame oil", + "rice vinegar", + "lean ground pork", + "green onions", + "salt", + "corn starch", + "sugar", + "egg roll wrappers", + "ginger", + "sauce" + ] + }, + { + "id": 23966, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "extra-virgin olive oil", + "pinenuts", + "dried fettuccine", + "baby arugula", + "salt", + "pecorino romano cheese", + "garlic cloves" + ] + }, + { + "id": 15886, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "garlic", + "grape leaves", + "shallots", + "ground beef", + "lemongrass", + "vietnamese fish sauce", + "sugar", + "vegetable oil" + ] + }, + { + "id": 25422, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "salt", + "vegetables", + "boneless steak", + "ramen noodles", + "pepper", + "oil" + ] + }, + { + "id": 41003, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "cinnamon sticks", + "clove", + "lemon", + "water", + "black peppercorns", + "star anise" + ] + }, + { + "id": 47050, + "cuisine": "southern_us", + "ingredients": [ + "pork baby back ribs", + "fresh tomato salsa", + "corn kernels", + "chili", + "chopped cilantro fresh", + "green bell pepper", + "black-eyed peas" + ] + }, + { + "id": 32141, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "sauce", + "chicken broth", + "garlic", + "peanut oil", + "tomato paste", + "chili paste", + "roasted peanuts", + "sugar", + "peanut butter" + ] + }, + { + "id": 21196, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "vegetable oil", + "dried oregano", + "ground red pepper", + "all-purpose flour", + "minced onion", + "salt", + "ground cumin", + "chili powder", + "garlic cloves" + ] + }, + { + "id": 37968, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "salt", + "sesame oil", + "water", + "seaweed", + "soy sauce", + "top sirloin" + ] + }, + { + "id": 4051, + "cuisine": "japanese", + "ingredients": [ + "walnuts", + "barley miso", + "blanched almonds", + "warm water" + ] + }, + { + "id": 22787, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "black pepper", + "black olives", + "fresh lime juice", + "extra sharp cheddar cheese", + "sugar", + "olive oil", + "california avocado", + "chopped cilantro fresh", + "ground cumin", + "tomato sauce", + "black beans", + "salt", + "onions", + "iceberg lettuce", + "ground chuck", + "chili powder", + "garlic cloves", + "serrano chile" + ] + }, + { + "id": 45141, + "cuisine": "french", + "ingredients": [ + "salt and ground black pepper", + "crème fraîche", + "butter", + "onions", + "potatoes", + "Reblochon", + "white wine", + "bacon" + ] + }, + { + "id": 36289, + "cuisine": "cajun_creole", + "ingredients": [ + "lemon slices", + "cooking spray", + "cajun seasoning", + "catfish fillets", + "fresh lemon juice" + ] + }, + { + "id": 41129, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "salt", + "sour cream", + "chicken broth", + "chili powder", + "garlic cloves", + "hominy", + "green chilies", + "onions", + "pork shoulder butt", + "scallions", + "oregano" + ] + }, + { + "id": 16974, + "cuisine": "mexican", + "ingredients": [ + "chopped onion", + "tomato sauce", + "garlic salt", + "chicken broth", + "long-grain rice", + "vegetable oil", + "ground cumin" + ] + }, + { + "id": 43648, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "chili powder", + "scallions", + "tomato sauce", + "bell pepper", + "garlic", + "chicken broth", + "whole grain rice", + "cilantro", + "cumin", + "frozen sweet corn", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 24379, + "cuisine": "spanish", + "ingredients": [ + "green olives", + "olive oil", + "corn starch", + "ground cumin", + "saffron threads", + "black pepper", + "low sodium chicken broth", + "chopped cilantro", + "tomatoes", + "kosher salt", + "hot smoked paprika", + "onions", + "boneless chicken skinless thigh", + "sherry vinegar", + "red bell pepper" + ] + }, + { + "id": 46226, + "cuisine": "thai", + "ingredients": [ + "granulated sugar", + "coconut milk", + "sticky rice", + "jasmine", + "mango", + "leaves", + "salt" + ] + }, + { + "id": 20420, + "cuisine": "italian", + "ingredients": [ + "vanilla ice cream", + "brewed espresso" + ] + }, + { + "id": 6638, + "cuisine": "french", + "ingredients": [ + "buttermilk", + "heavy whipping cream" + ] + }, + { + "id": 14311, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "sauce", + "parmigiano reggiano cheese", + "ragu", + "provolone cheese" + ] + }, + { + "id": 23744, + "cuisine": "italian", + "ingredients": [ + "Philadelphia Cream Cheese", + "marinara sauce", + "shredded mozzarella cheese", + "pasta", + "Kraft Grated Parmesan Cheese", + "diced tomatoes", + "sour cream" + ] + }, + { + "id": 47357, + "cuisine": "italian", + "ingredients": [ + "parsley", + "spaghetti squash", + "garlic", + "butter", + "parmesan cheese", + "salt" + ] + }, + { + "id": 1509, + "cuisine": "korean", + "ingredients": [ + "sugar", + "spring onions", + "whole chicken", + "onions", + "soy sauce", + "crushed garlic", + "carrots", + "syrup", + "sesame oil", + "oyster sauce", + "glass noodles", + "potatoes", + "cooking wine", + "dried chile" + ] + }, + { + "id": 30201, + "cuisine": "french", + "ingredients": [ + "red potato", + "extra-virgin olive oil", + "flat leaf parsley", + "saffron threads", + "fennel bulb", + "red bell pepper", + "onions", + "baguette", + "garlic cloves", + "fillets", + "tomatoes", + "fish stock", + "orange peel" + ] + }, + { + "id": 28744, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "pesto", + "shredded mozzarella cheese", + "pasta sauce", + "frozen ravioli", + "grated parmesan cheese" + ] + }, + { + "id": 11245, + "cuisine": "greek", + "ingredients": [ + "sliced black olives", + "purple onion", + "feta cheese crumbles", + "pepper", + "extra-virgin olive oil", + "penne pasta", + "red bell pepper", + "green bell pepper", + "red wine vinegar", + "salt", + "cucumber", + "cherry tomatoes", + "garlic", + "lemon juice", + "dried oregano" + ] + }, + { + "id": 9827, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "garlic cloves", + "kosher salt", + "yellow onion", + "spaghetti", + "tomato paste", + "bacon slices", + "ground beef", + "milk", + "freshly ground pepper" + ] + }, + { + "id": 21730, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "plain yogurt", + "potatoes", + "paprika", + "cilantro leaves", + "garlic cloves", + "fresh mint", + "barley", + "fresh tomatoes", + "olive oil", + "shallots", + "purple onion", + "cumin seed", + "cucumber", + "ground cumin", + "green chile", + "water", + "flour", + "cilantro", + "yellow split peas", + "lentils", + "ground turmeric", + "alphabet pasta", + "sugar", + "whole wheat flour", + "brown mustard seeds", + "salt", + "oil", + "green split peas" + ] + }, + { + "id": 41517, + "cuisine": "italian", + "ingredients": [ + "baguette", + "salt", + "ground turmeric", + "sugar", + "cooking spray", + "chopped cilantro fresh", + "canola oil", + "yellow mustard seeds", + "lime juice", + "beef tenderloin steaks", + "mango", + "pepper", + "butter", + "serrano chile" + ] + }, + { + "id": 22662, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "boneless skinless chicken breasts", + "diced tomatoes", + "okra", + "chicken stock", + "flour", + "vegetable oil", + "chopped celery", + "fresh parsley", + "fresh thyme", + "Tabasco Pepper Sauce", + "garlic", + "medium shrimp", + "seasoning", + "bay leaves", + "red pepper", + "green pepper", + "onions" + ] + }, + { + "id": 24633, + "cuisine": "mexican", + "ingredients": [ + "ground red pepper", + "ground coriander", + "dried thyme", + "paprika", + "ground cumin", + "cooking spray", + "salt", + "black pepper", + "lemon wedge", + "center cut loin pork chop" + ] + }, + { + "id": 7629, + "cuisine": "mexican", + "ingredients": [ + "tomato juice", + "pepper", + "long grain white rice", + "chicken broth", + "salt", + "olive oil" + ] + }, + { + "id": 25179, + "cuisine": "italian", + "ingredients": [ + "chopped tomatoes", + "yellow bell pepper", + "fresh basil", + "sliced black olives", + "salt", + "mayonaise", + "red wine vinegar", + "rotini", + "ground black pepper", + "garlic" + ] + }, + { + "id": 31401, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chives", + "hoisin sauce", + "olive oil", + "red pepper flakes", + "extra firm tofu" + ] + }, + { + "id": 29093, + "cuisine": "italian", + "ingredients": [ + "cheddar cheese", + "ground black pepper", + "italian seasoning", + "fresh basil", + "mozzarella cheese", + "all-purpose flour", + "kosher salt", + "unsalted butter", + "green bell pepper", + "milk", + "elbow macaroni" + ] + }, + { + "id": 48472, + "cuisine": "french", + "ingredients": [ + "vegetable oil cooking spray", + "granulated sugar", + "all-purpose flour", + "powdered sugar", + "1% low-fat cottage cheese", + "salt", + "safflower oil", + "large eggs", + "grated lemon zest", + "pure vanilla extract", + "water", + "1% low-fat milk", + "fresh lemon juice" + ] + }, + { + "id": 32650, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "mushrooms", + "kosher salt", + "finely chopped onion", + "boiling water", + "fresh marjoram", + "ground black pepper", + "garlic cloves", + "fava beans", + "mascarpone", + "bow-tie pasta" + ] + }, + { + "id": 27420, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "boneless chicken breast", + "tamari soy sauce", + "water", + "crushed red pepper flakes", + "pineapple juice", + "ketchup", + "pineapple", + "rice vinegar", + "light brown sugar", + "olive oil", + "garlic", + "corn starch" + ] + }, + { + "id": 9517, + "cuisine": "southern_us", + "ingredients": [ + "seasoned bread crumbs", + "cooking spray", + "chili powder", + "chicken thighs", + "dijon mustard", + "light mayonnaise", + "paprika", + "garlic powder", + "barbecue sauce", + "chicken drumsticks", + "grated parmesan cheese", + "lemon wedge", + "fresh lemon juice" + ] + }, + { + "id": 1435, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "worcestershire sauce", + "croutons", + "romaine lettuce", + "fresh parmesan cheese", + "roasting chickens", + "red bell pepper", + "olive oil", + "salt", + "fresh lemon juice", + "sugar", + "dijon mustard", + "garlic cloves" + ] + }, + { + "id": 3544, + "cuisine": "russian", + "ingredients": [ + "sugar", + "chopped hazelnuts", + "condensed milk", + "vinegar", + "poppy seeds", + "baking soda", + "butter", + "sour cream", + "eggs", + "flour", + "salt" + ] + }, + { + "id": 34519, + "cuisine": "french", + "ingredients": [ + "bay leaves", + "low salt chicken broth", + "pearl onions", + "butter", + "dried thyme", + "all-purpose flour", + "dry white wine", + "chicken thighs" + ] + }, + { + "id": 25580, + "cuisine": "japanese", + "ingredients": [ + "olive oil", + "red chili peppers", + "rice vinegar", + "mitsuba", + "mushrooms", + "soy sauce", + "shiso" + ] + }, + { + "id": 37139, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "vegetable broth", + "kosher salt", + "Old El Paso™ chopped green chiles", + "cream cheese", + "canned black beans", + "orzo pasta", + "cilantro leaves", + "corn kernels", + "diced tomatoes", + "enchilada sauce" + ] + }, + { + "id": 35271, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "butter", + "dry coconut", + "sweetened condensed milk", + "sugar", + "vanilla extract", + "flour" + ] + }, + { + "id": 10384, + "cuisine": "italian", + "ingredients": [ + "warm water", + "dry yeast", + "all-purpose flour", + "olive oil", + "crushed red pepper", + "honey", + "sea salt", + "bread flour", + "fresh rosemary", + "whole wheat flour", + "purple onion" + ] + }, + { + "id": 28099, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "buttermilk", + "baking soda", + "whole milk", + "cayenne pepper", + "sausage casings", + "fine salt", + "all-purpose flour", + "ground black pepper", + "baking powder" + ] + }, + { + "id": 37836, + "cuisine": "vietnamese", + "ingredients": [ + "salt", + "fresh lemon juice", + "freshly ground pepper", + "unsalted butter", + "garlic cloves", + "margarine" + ] + }, + { + "id": 16099, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "crushed red pepper", + "gorgonzola", + "chicken stock", + "extra-virgin olive oil", + "oil", + "shallots", + "salt", + "prosciutto", + "linguine", + "flat leaf parsley" + ] + }, + { + "id": 10207, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "milk", + "butter", + "chocolate bars", + "baking powder", + "white chocolate", + "egg yolks", + "puff pastry", + "sugar", + "flour", + "condensed milk" + ] + }, + { + "id": 14704, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "taco seasoning", + "diced tomatoes", + "chicken stock", + "sour cream" + ] + }, + { + "id": 12170, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "basil", + "lime leaves", + "bamboo shoots", + "spring onions", + "green beans", + "thai green curry paste", + "chicken stock", + "sunflower oil", + "coconut milk", + "onions", + "lime", + "garlic cloves", + "fillets" + ] + }, + { + "id": 40299, + "cuisine": "indian", + "ingredients": [ + "green bell pepper", + "mustard seeds", + "vegetable oil", + "ground turmeric", + "chili powder", + "onions", + "chickpea flour", + "salt" + ] + }, + { + "id": 13556, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "heavy cream", + "cayenne pepper", + "onions", + "kosher salt", + "unsalted butter", + "garlic", + "ground coriander", + "ground cumin", + "fresh leav spinach", + "ground black pepper", + "paprika", + "chickpeas", + "ground turmeric", + "crushed tomatoes", + "chicken drumsticks", + "cilantro leaves", + "juice" + ] + }, + { + "id": 34125, + "cuisine": "filipino", + "ingredients": [ + "black pepper", + "vinegar", + "soy sauce", + "water", + "minced garlic", + "bay leaves", + "boneless chicken skinless thigh", + "honey" + ] + }, + { + "id": 35455, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "cumin", + "jalapeno chilies", + "onions", + "fresh cilantro", + "red bell pepper", + "garlic", + "plum tomatoes" + ] + }, + { + "id": 13315, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "salt", + "chopped cilantro", + "dark leafy greens", + "oil", + "light soy sauce", + "scallions", + "noodles", + "dark soy sauce", + "crushed red pepper flakes", + "chinese black vinegar" + ] + }, + { + "id": 39725, + "cuisine": "british", + "ingredients": [ + "parsley sprigs", + "dijon mustard", + "russet potatoes", + "meat bones", + "eggs", + "fresh chives", + "baking powder", + "malt vinegar", + "freshly ground pepper", + "ketchup", + "cod fillets", + "lemon", + "beer", + "mayonaise", + "minced garlic", + "coarse salt", + "all-purpose flour", + "canola oil" + ] + }, + { + "id": 36451, + "cuisine": "french", + "ingredients": [ + "black pepper", + "fresh parmesan cheese", + "sliced carrots", + "boneless pork loin", + "celery", + "tomato paste", + "water", + "dry white wine", + "bacon slices", + "garlic cloves", + "great northern beans", + "dried thyme", + "turkey kielbasa", + "salt", + "red bell pepper", + "fat free less sodium chicken broth", + "french bread", + "diced tomatoes", + "chopped onion" + ] + }, + { + "id": 45015, + "cuisine": "italian", + "ingredients": [ + "pepper flakes", + "white onion", + "sea salt", + "bow-tie pasta", + "tomato sauce", + "nutritional yeast", + "vegetable broth", + "fresh basil", + "pepper", + "raw cashews", + "fresh parsley", + "pinenuts", + "zucchini", + "garlic" + ] + }, + { + "id": 2475, + "cuisine": "mexican", + "ingredients": [ + "cauliflower", + "Mexican oregano", + "salt", + "queso anejo", + "onions", + "guajillo chiles", + "vegetable oil", + "garlic cloves", + "green beans", + "dried thyme", + "peas", + "carrots", + "canela", + "cider vinegar", + "queso fresco", + "waxy potatoes", + "corn tortillas" + ] + }, + { + "id": 15630, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "caster sugar", + "vegetable oil", + "sugar", + "active dry yeast", + "salt", + "shortening", + "orange", + "lemon", + "warm water", + "evaporated milk", + "all-purpose flour" + ] + }, + { + "id": 3988, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "pepper", + "herbs", + "basil", + "thyme", + "white wine", + "olive oil", + "parsley", + "garlic cloves", + "oregano", + "pitted kalamata olives", + "crushed tomatoes", + "mixed mushrooms", + "salt", + "onions", + "chicken broth", + "chicken bones", + "shiitake", + "red pepper", + "carrots" + ] + }, + { + "id": 41192, + "cuisine": "mexican", + "ingredients": [ + "condensed cream of chicken soup", + "chile pepper", + "cooked chicken breasts", + "flour tortillas", + "sour cream", + "chili powder", + "onions", + "shredded cheddar cheese", + "margarine" + ] + }, + { + "id": 14238, + "cuisine": "vietnamese", + "ingredients": [ + "chicken stock", + "tamarind pulp", + "medium shrimp", + "kosher salt", + "thai chile", + "chopped cilantro fresh", + "fish sauce", + "pineapple", + "mung bean sprouts", + "lime juice", + "garlic", + "iceberg lettuce" + ] + }, + { + "id": 16033, + "cuisine": "indian", + "ingredients": [ + "mustard", + "minced garlic", + "chili powder", + "oil", + "ground turmeric", + "tomatoes", + "eggplant", + "salt", + "coconut milk", + "curry leaves", + "water", + "vegetable oil", + "asafoetida powder", + "red chili peppers", + "garam masala", + "tamarind paste", + "onions" + ] + }, + { + "id": 15682, + "cuisine": "italian", + "ingredients": [ + "milk", + "shallots", + "fresh mushrooms", + "pepper", + "mascarpone", + "chopped fresh thyme", + "eggs", + "olive oil", + "wonton wrappers", + "minced garlic", + "chopped fresh chives", + "salt" + ] + }, + { + "id": 15928, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "fresh parsley", + "cheddar cheese", + "turkey sausage", + "tomatoes", + "cooking oil", + "grits", + "water", + "salt" + ] + }, + { + "id": 12285, + "cuisine": "greek", + "ingredients": [ + "pita bread", + "fresh lemon juice", + "pitted kalamata olives", + "cucumber", + "romaine lettuce", + "feta cheese crumbles", + "tomatoes", + "extra-virgin olive oil", + "dried oregano" + ] + }, + { + "id": 15126, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "fresh lemon juice", + "ground ginger", + "lemon wedge", + "ground coriander", + "ground cumin", + "cooking spray", + "salt", + "chopped cilantro fresh", + "swordfish steaks", + "paprika", + "garlic cloves" + ] + }, + { + "id": 22782, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "cilantro leaves", + "onions", + "fish sauce", + "butternut squash", + "shrimp", + "olive oil", + "garlic cloves", + "frozen peas", + "brown sugar", + "Thai red curry paste", + "coconut milk" + ] + }, + { + "id": 39115, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "poblano chiles", + "flour tortillas", + "manchego cheese", + "queso panela", + "purple onion" + ] + }, + { + "id": 35137, + "cuisine": "jamaican", + "ingredients": [ + "granulated sugar", + "water", + "sorrel", + "gingerroot", + "pimentos" + ] + }, + { + "id": 9590, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "all-purpose flour", + "baking soda", + "buttermilk", + "table salt", + "vegetable shortening", + "baking powder", + "cake flour" + ] + }, + { + "id": 27186, + "cuisine": "cajun_creole", + "ingredients": [ + "file powder", + "vegetable oil", + "cayenne pepper", + "fresh parsley", + "andouille sausage", + "bay leaves", + "chopped celery", + "chopped onion", + "chicken broth", + "flour", + "white rice", + "creole seasoning", + "chicken", + "chopped bell pepper", + "green onions", + "salt", + "thyme" + ] + }, + { + "id": 20005, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "green onions", + "green chilies", + "chicken broth", + "tortillas", + "purple onion", + "chopped cilantro", + "garlic powder", + "cilantro", + "enchilada sauce", + "tomatoes", + "roast", + "salt", + "ground cumin" + ] + }, + { + "id": 8118, + "cuisine": "italian", + "ingredients": [ + "pepper", + "lemon", + "fresh lemon juice", + "vegetable oil", + "salt", + "boneless skinless chicken breast halves", + "low sodium chicken broth", + "garlic", + "flat leaf parsley", + "capers", + "butter", + "all-purpose flour" + ] + }, + { + "id": 24622, + "cuisine": "italian", + "ingredients": [ + "vanilla extract", + "orange zest", + "eggs", + "all-purpose flour", + "ground cinnamon", + "salt", + "ricotta cheese", + "white sugar" + ] + }, + { + "id": 6069, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "shallots", + "fresh parsley", + "balsamic vinegar", + "french bread", + "salt" + ] + }, + { + "id": 36523, + "cuisine": "british", + "ingredients": [ + "dijon mustard", + "mint sprigs", + "shallots", + "rack of lamb", + "bread crumbs", + "canned beef broth", + "chopped fresh mint", + "sugar", + "red wine vinegar", + "corn starch" + ] + }, + { + "id": 13750, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "basil pesto sauce", + "salt", + "tomatoes", + "boneless skinless chicken breasts", + "pepper", + "reduced fat mozzarella" + ] + }, + { + "id": 49187, + "cuisine": "greek", + "ingredients": [ + "sugar", + "unsalted butter", + "orange blossom honey", + "farina", + "orange", + "dried apricot", + "orange juice", + "water", + "large eggs", + "walnuts", + "vegetables", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 26716, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "granulated sugar", + "chopped pecans", + "pie dough", + "all-purpose flour", + "brown sugar", + "plums", + "ground nutmeg", + "lemon juice" + ] + }, + { + "id": 26295, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "all-purpose flour", + "pozole", + "fresh coriander", + "vegetable oil", + "enchilada sauce", + "pork loin", + "grated jack cheese", + "onions", + "water", + "salt", + "red bell pepper" + ] + }, + { + "id": 28918, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "salsa", + "onions", + "tomatoes", + "mackerel", + "steak", + "potatoes", + "garlic cloves", + "fish", + "white wine", + "salt", + "bay leaf" + ] + }, + { + "id": 33817, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "chopped cilantro fresh", + "sweet onion", + "coarse salt", + "watermelon", + "garlic", + "chile pepper" + ] + }, + { + "id": 45375, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "large eggs", + "mint sprigs", + "milk", + "light corn syrup", + "all-purpose flour", + "sugar", + "vegetable oil", + "whipping cream", + "cocoa", + "chocolate shavings", + "chocolate" + ] + }, + { + "id": 33189, + "cuisine": "italian", + "ingredients": [ + "light brown sugar", + "active dry yeast", + "cornmeal", + "warm water", + "unbleached flour", + "eggs", + "olive oil", + "water", + "salt" + ] + }, + { + "id": 444, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "fresh oregano", + "fresh basil leaves", + "olive oil", + "crushed red pepper", + "onions", + "water", + "linguine", + "fresh parsley", + "tomatoes", + "butter", + "garlic cloves", + "varnish clams" + ] + }, + { + "id": 1225, + "cuisine": "irish", + "ingredients": [ + "coffee granules", + "sweetened condensed milk", + "coffee liqueur", + "half & half", + "whiskey" + ] + }, + { + "id": 20085, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "heavy cream", + "white onion", + "lasagna noodles", + "ricotta", + "swiss chard", + "crème fraîche", + "kale", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 2038, + "cuisine": "italian", + "ingredients": [ + "rolls", + "red bell pepper", + "mayonaise", + "oil", + "italian seasoning", + "ground pork", + "garlic cloves", + "sausage casings", + "provolone cheese", + "onions" + ] + }, + { + "id": 37501, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "large egg yolks", + "ground red pepper", + "bittersweet chocolate", + "large egg whites", + "coffee liqueur", + "salt", + "cream of tartar", + "fat free milk", + "cooking spray", + "all-purpose flour", + "powdered sugar", + "granulated sugar", + "vanilla extract", + "unsweetened cocoa powder" + ] + }, + { + "id": 44, + "cuisine": "irish", + "ingredients": [ + "brown sugar", + "cooking spray", + "all-purpose flour", + "caraway seeds", + "low-fat buttermilk", + "salt", + "baking soda", + "butter", + "whole wheat flour", + "baking powder" + ] + }, + { + "id": 11530, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "ground black pepper", + "bucatini", + "water", + "fine sea salt", + "guanciale", + "pecorino romano cheese" + ] + }, + { + "id": 4689, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "mushrooms", + "low-fat mozzarella cheese", + "cauliflower", + "garlic powder", + "almond meal", + "dried oregano", + "olive oil", + "pizza sauce", + "olives", + "eggs", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 4632, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime juice", + "chili powder", + "sour cream", + "iceberg lettuce", + "taco sauce", + "sliced black olives", + "cream cheese", + "ground beef", + "shredded cheddar cheese", + "green onions", + "red bell pepper", + "chopped cilantro fresh", + "fresh tomatoes", + "lime", + "garlic", + "chipotles in adobo", + "ground cumin" + ] + }, + { + "id": 7451, + "cuisine": "southern_us", + "ingredients": [ + "tilapia fillets", + "cooking spray", + "salt", + "fresh lime juice", + "mint", + "jalapeno chilies", + "sweetened coconut flakes", + "cucumber", + "ground cumin", + "lime rind", + "chopped fresh chives", + "crushed red pepper", + "mustard seeds", + "ground black pepper", + "lime wedges", + "peanut oil", + "chopped cilantro" + ] + }, + { + "id": 32698, + "cuisine": "southern_us", + "ingredients": [ + "skim milk", + "ground red pepper", + "sliced green onions", + "reduced fat sharp cheddar cheese", + "egg whites", + "dry bread crumbs", + "vegetable oil cooking spray", + "egg yolks", + "ham", + "cream of tartar", + "corn kernels", + "all-purpose flour" + ] + }, + { + "id": 45309, + "cuisine": "mexican", + "ingredients": [ + "water", + "cracked black pepper", + "green chile", + "meat", + "onions", + "red potato", + "olive oil", + "beef stew meat", + "kosher salt", + "large garlic cloves" + ] + }, + { + "id": 49488, + "cuisine": "greek", + "ingredients": [ + "garlic cloves", + "seedless cucumber", + "plain whole-milk yogurt", + "kosher salt" + ] + }, + { + "id": 34453, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "minced garlic", + "peanut butter", + "water", + "chili sauce", + "sugar", + "light soy sauce" + ] + }, + { + "id": 28555, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "worcestershire sauce", + "shredded swiss cheese", + "onions", + "french bread", + "beef broth", + "vegetable oil" + ] + }, + { + "id": 33486, + "cuisine": "greek", + "ingredients": [ + "cooked rice", + "olive oil", + "ground allspice", + "white sugar", + "fresh dill", + "garlic", + "feta cheese crumbles", + "green bell pepper", + "ground black pepper", + "fresh lemon juice", + "ground lamb", + "cold water", + "tomato sauce", + "salt", + "onions" + ] + }, + { + "id": 22366, + "cuisine": "southern_us", + "ingredients": [ + "green chile", + "dry white wine", + "bacon", + "cayenne pepper", + "grits", + "olive oil", + "coarse salt", + "chopped celery", + "scallions", + "store bought low sodium chicken stock", + "shallots", + "paprika", + "freshly ground pepper", + "unsalted butter", + "lemon", + "cilantro leaves", + "medium shrimp" + ] + }, + { + "id": 43186, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "chopped pecans", + "bourbon whiskey", + "vanilla extract", + "flaked coconut", + "cocktail cherries", + "egg yolks", + "raisins" + ] + }, + { + "id": 28147, + "cuisine": "italian", + "ingredients": [ + "half & half", + "crushed red pepper flakes", + "sun-dried tomatoes in oil", + "chicken breast tenders", + "basil", + "penne pasta", + "sun-dried tomatoes", + "paprika", + "pasta water", + "mozzarella cheese", + "large garlic cloves", + "salt" + ] + }, + { + "id": 12683, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "chili powder", + "garlic", + "ground cumin", + "lime", + "whole wheat tortillas", + "shredded mozzarella cheese", + "chicken broth", + "queso fresco", + "mexican chocolate", + "shallots", + "cilantro", + "chicken" + ] + }, + { + "id": 9959, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "Wolf Brand Chili", + "spices", + "corn tortillas", + "fat-free shredded cheddar cheese", + "enchilada sauce", + "pepper", + "salt", + "cumin" + ] + }, + { + "id": 42401, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "salt", + "curly kale", + "hot chili powder", + "avocado", + "flour tortillas", + "oil", + "black pepper", + "garlic" + ] + }, + { + "id": 39080, + "cuisine": "japanese", + "ingredients": [ + "asparagus", + "soy sauce", + "sugar", + "dried bonito flakes", + "dashi" + ] + }, + { + "id": 30604, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "diced tomatoes", + "taco seasoning", + "shredded cheddar cheese", + "whole kernel corn, drain", + "onions", + "chili beans", + "boneless skinless chicken breasts", + "beer", + "black beans", + "tortilla chips", + "sour cream" + ] + }, + { + "id": 48505, + "cuisine": "japanese", + "ingredients": [ + "zucchini", + "turnips", + "carrots", + "white miso" + ] + }, + { + "id": 14776, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salsa", + "zucchini", + "canned black beans", + "corn tortillas" + ] + }, + { + "id": 2394, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "water", + "boneless skinless chicken breasts", + "garlic", + "toasted sesame oil", + "ground ginger", + "black pepper", + "large eggs", + "balsamic vinegar", + "corn starch", + "soy sauce", + "frozen broccoli florets", + "vegetable oil", + "oyster sauce", + "cooked rice", + "dry roasted peanuts", + "green onions", + "crushed red pepper flakes", + "red bell pepper" + ] + }, + { + "id": 2432, + "cuisine": "korean", + "ingredients": [ + "whole wheat hamburger buns", + "lettuce leaves", + "dark sesame oil", + "low sodium soy sauce", + "radishes", + "green onions", + "ground black pepper", + "peeled fresh ginger", + "garlic cloves", + "brown sugar", + "cooking spray", + "ground sirloin" + ] + }, + { + "id": 14132, + "cuisine": "chinese", + "ingredients": [ + "water", + "green onions", + "ginger", + "carrots", + "peanuts", + "rice noodles", + "rice vinegar", + "fresh lime juice", + "honey", + "sesame oil", + "garlic", + "shrimp", + "low sodium soy sauce", + "hoisin sauce", + "red pepper", + "peanut butter", + "chopped cilantro" + ] + }, + { + "id": 13384, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "shredded lettuce", + "ripe olives", + "taco sauce", + "flour tortillas", + "garlic cloves", + "onions", + "shredded cheddar cheese", + "vegetable oil", + "sour cream", + "cheddar cheese", + "chopped tomatoes", + "green pepper", + "ground beef" + ] + }, + { + "id": 30394, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "beef", + "salt", + "dashi", + "vegetable oil", + "green beans", + "soy sauce", + "yukon gold potatoes", + "carrots", + "sake", + "shiitake", + "shirataki", + "onions" + ] + }, + { + "id": 8583, + "cuisine": "russian", + "ingredients": [ + "Baileys Irish Cream Liqueur", + "vodka", + "vanilla ice cream", + "Godiva Chocolate Liqueur" + ] + }, + { + "id": 25320, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic", + "lemon-lime soda", + "chuck roast", + "salt", + "chili powder" + ] + }, + { + "id": 18204, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "chicken drumsticks", + "chicken thighs", + "chicken wings", + "fresh ginger root", + "corn starch", + "pineapple chunks", + "salt and ground black pepper", + "garlic", + "sugar", + "ground black pepper", + "onions" + ] + }, + { + "id": 37792, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "ground red pepper", + "ground black pepper", + "worcestershire sauce", + "ketchup", + "onion powder", + "white vinegar", + "prepared mustard", + "salt" + ] + }, + { + "id": 15835, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "onions", + "cayenne", + "black-eyed peas", + "fresh spinach", + "vegetable broth" + ] + }, + { + "id": 28355, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "vegetable oil", + "corn starch", + "top round steak", + "sesame oil", + "beef broth", + "peanuts", + "crushed red pepper flakes", + "red bell pepper", + "green onions", + "rice vinegar" + ] + }, + { + "id": 46828, + "cuisine": "thai", + "ingredients": [ + "water", + "green onions", + "dried rice noodles", + "celery", + "red chili peppers", + "ground black pepper", + "garlic", + "carrots", + "boneless skinless chicken breast halves", + "chicken broth", + "curry powder", + "vegetable oil", + "poultry seasoning", + "onions", + "white wine", + "dried sage", + "salt", + "ground cayenne pepper", + "dried oregano" + ] + }, + { + "id": 22655, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "leg of lamb", + "olive oil", + "fresh rosemary", + "garlic cloves", + "water", + "grated lemon peel" + ] + }, + { + "id": 26354, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "potatoes", + "cumin seed", + "plum tomatoes", + "swiss chard", + "salt", + "ground cardamom", + "olive oil", + "garlic", + "black mustard seeds", + "garam masala", + "cayenne pepper", + "chicken thighs" + ] + }, + { + "id": 28451, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "shredded cheddar cheese", + "salt", + "dried black beans", + "tortilla chips" + ] + }, + { + "id": 1842, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "sweet corn", + "tomato sauce", + "sliced black olives", + "ground beef", + "kidney beans", + "chunky mild salsa", + "taco sauce", + "egg noodles, cooked and drained" + ] + }, + { + "id": 1207, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "seasoned rice wine vinegar", + "sesame oil", + "sliced green onions" + ] + }, + { + "id": 31134, + "cuisine": "italian", + "ingredients": [ + "salt", + "olive oil", + "balsamic vinegar", + "pepper" + ] + }, + { + "id": 17712, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "eggs", + "flour", + "bacon drippings", + "unsalted butter", + "cornmeal", + "sugar", + "buttermilk" + ] + }, + { + "id": 22647, + "cuisine": "italian", + "ingredients": [ + "pasta", + "refrigerated pizza dough", + "mozzarella cheese", + "fresh basil", + "all-purpose flour", + "prosciutto" + ] + }, + { + "id": 16295, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "frozen corn kernels", + "corn tortillas", + "salt", + "scallions", + "shredded Monterey Jack cheese", + "diced tomatoes", + "green chilies", + "dried oregano", + "black beans", + "salsa", + "sour cream", + "ground cumin" + ] + }, + { + "id": 28409, + "cuisine": "greek", + "ingredients": [ + "nonfat yogurt", + "garlic cloves", + "cucumber", + "dill" + ] + }, + { + "id": 8478, + "cuisine": "italian", + "ingredients": [ + "pasta", + "white onion", + "extra-virgin olive oil", + "flat leaf parsley", + "pecorino cheese", + "dry white wine", + "carrots", + "fresh rosemary", + "peeled tomatoes", + "salt", + "celery", + "sage leaves", + "fresh marjoram", + "lamb stew meat", + "dried chile" + ] + }, + { + "id": 4645, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "milk", + "sausages", + "all-purpose flour", + "ground black pepper" + ] + }, + { + "id": 39618, + "cuisine": "french", + "ingredients": [ + "white vinegar", + "parmigiano reggiano cheese", + "salt", + "white wine", + "garlic", + "tripe", + "ground black pepper", + "bouquet garni", + "onions", + "tomatoes", + "extra-virgin olive oil", + "dried red chile peppers" + ] + }, + { + "id": 19727, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "all-purpose flour", + "unsalted butter", + "heavy cream", + "vidalia onion", + "baking powder", + "parmigiano reggiano cheese", + "salt" + ] + }, + { + "id": 14888, + "cuisine": "mexican", + "ingredients": [ + "orange", + "cilantro", + "onions", + "cumin", + "pepper", + "vegetable oil", + "garlic", + "fresh pineapple", + "lime", + "navel oranges", + "pork butt", + "water", + "sea salt", + "salsa", + "dried oregano" + ] + }, + { + "id": 48969, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "white flour", + "eggs", + "water" + ] + }, + { + "id": 41195, + "cuisine": "chinese", + "ingredients": [ + "mandarin oranges", + "fresh lemon juice", + "light pancake syrup", + "chinese five-spice powder", + "unsalted butter", + "phyllo", + "cream cheese, soften", + "granulated sugar", + "vanilla", + "confectioners sugar" + ] + }, + { + "id": 43638, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "jalapeno chilies", + "yellow bell pepper", + "yellow onion", + "fresh lime juice", + "chile powder", + "green bell pepper, slice", + "lime wedges", + "cilantro leaves", + "sour cream", + "iceberg lettuce", + "olive oil", + "guacamole", + "garlic", + "red bell pepper", + "dried oregano", + "black pepper", + "flour tortillas", + "sea salt", + "salsa", + "steak", + "ground cumin" + ] + }, + { + "id": 40284, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "orzo pasta", + "plum tomatoes", + "crushed red pepper flakes", + "fresh basil", + "chees fresh mozzarella" + ] + }, + { + "id": 21294, + "cuisine": "italian", + "ingredients": [ + "flour", + "italian seasoning", + "eggs", + "plain breadcrumbs", + "ravioli", + "water", + "garlic salt" + ] + }, + { + "id": 28146, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "flaked coconut", + "raisins", + "onions", + "cider vinegar", + "green onions", + "baking potatoes", + "roasted peanuts", + "cooked rice", + "fresh ginger", + "mango chutney", + "crushed red pepper", + "water", + "chicken breast halves", + "butter", + "garlic cloves" + ] + }, + { + "id": 47408, + "cuisine": "mexican", + "ingredients": [ + "chili", + "Mexican cheese blend", + "tortilla chips" + ] + }, + { + "id": 45699, + "cuisine": "mexican", + "ingredients": [ + "water", + "purple onion", + "ground cumin", + "black beans", + "Tabasco Green Pepper Sauce", + "oregano", + "olive oil", + "chopped cilantro fresh", + "minced garlic", + "vegetable broth", + "sazon seasoning" + ] + }, + { + "id": 36137, + "cuisine": "thai", + "ingredients": [ + "thai chile", + "fresh lime juice", + "sugar", + "cilantro leaves", + "vietnamese fish sauce", + "chopped fresh mint", + "jasmine rice", + "scallions" + ] + }, + { + "id": 13940, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "cream cheese", + "picante sauce", + "black olives", + "green onions", + "sour cream", + "chopped green chilies", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 25750, + "cuisine": "irish", + "ingredients": [ + "plain flour", + "vegetable oil", + "warm water", + "yeast", + "sugar", + "salt", + "baking powder", + "low-fat milk" + ] + }, + { + "id": 25079, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "corn-on-the-cob", + "jalapeno chilies", + "salt", + "eggs", + "cilantro", + "half & half", + "scallions" + ] + }, + { + "id": 2596, + "cuisine": "mexican", + "ingredients": [ + "lime", + "boneless pork loin", + "serrano chilies", + "salt", + "long-grain rice", + "chicken broth", + "olive oil", + "freshly ground pepper", + "fresh cilantro", + "yellow onion", + "garlic cloves" + ] + }, + { + "id": 37166, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "mushrooms", + "diced tomatoes", + "thyme", + "chicken thighs", + "green bell pepper", + "parmesan cheese", + "butter", + "salt", + "flat leaf parsley", + "pasta", + "olive oil", + "dry white wine", + "garlic", + "red bell pepper", + "tumeric", + "ground black pepper", + "red pepper flakes", + "all-purpose flour", + "onions" + ] + }, + { + "id": 4043, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "romaine lettuce leaves", + "ice cubes", + "roasted pumpkin seeds", + "salt", + "roma tomatoes", + "garlic", + "chiles", + "red wine vinegar" + ] + }, + { + "id": 11304, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "pickle relish", + "dried minced onion", + "cooked ham", + "brown mustard" + ] + }, + { + "id": 6649, + "cuisine": "japanese", + "ingredients": [ + "honey", + "lemon", + "fresh ginger root", + "dijon style mustard", + "olive oil", + "garlic", + "soy sauce", + "ground black pepper" + ] + }, + { + "id": 25495, + "cuisine": "irish", + "ingredients": [ + "eggs", + "butter", + "white sugar", + "baking soda", + "salt", + "milk", + "raisins", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 21770, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "red chili peppers", + "garam masala", + "cumin seed", + "basmati rice", + "red potato", + "water", + "green peas", + "green beans", + "canola oil", + "clove", + "kosher salt", + "ground black pepper", + "carrots", + "ground turmeric", + "black peppercorns", + "coriander seeds", + "purple onion", + "bay leaf" + ] + }, + { + "id": 21109, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "mushrooms", + "salt", + "black mustard seeds", + "eggplant", + "cilantro", + "scallions", + "olive oil", + "chili powder", + "ground coriander", + "ground cumin", + "hot chili", + "ground tumeric", + "garlic cloves" + ] + }, + { + "id": 2303, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "diced tomatoes", + "feta cheese crumbles", + "greek seasoning", + "dried thyme", + "brown lentils", + "dried oregano", + "minced garlic", + "chopped celery", + "onions", + "spinach leaves", + "vegetable stock", + "lemon juice" + ] + }, + { + "id": 4555, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "malt vinegar", + "tamarind concentrate", + "coconut flakes", + "jalapeno chilies", + "cumin seed", + "onions", + "red chili peppers", + "vegetable oil", + "garlic cloves", + "coriander seeds", + "salt", + "medium shrimp" + ] + }, + { + "id": 11954, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "bow-tie pasta", + "roma tomatoes", + "italian salad dressing", + "parmesan cheese", + "cucumber", + "kalamata" + ] + }, + { + "id": 37085, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "ground pork", + "melon", + "pepper", + "onions", + "sugar", + "salt", + "mung bean noodles", + "wood ear mushrooms" + ] + }, + { + "id": 40198, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "curry powder", + "garam masala", + "yoghurt", + "sea salt", + "cumin seed", + "fresh mint", + "tomato paste", + "honey", + "pumpkin", + "butter", + "coconut cream", + "carrots", + "rice bran", + "lime", + "ground black pepper", + "vegetable stock", + "garlic", + "waxy potatoes", + "onions", + "tumeric", + "fresh ginger", + "sweet potatoes", + "lemon", + "green chilies", + "mustard seeds" + ] + }, + { + "id": 49550, + "cuisine": "moroccan", + "ingredients": [ + "hungarian sweet paprika", + "lemon", + "fresh lemon juice", + "organic chicken", + "salt", + "grated lemon peel", + "olive oil", + "ras el hanout", + "chopped fresh mint", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 13820, + "cuisine": "japanese", + "ingredients": [ + "sesame oil", + "porterhouse steaks", + "olive oil", + "garlic", + "soy sauce", + "ginger", + "ground black pepper", + "red miso" + ] + }, + { + "id": 24515, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "sour cream", + "mayonaise", + "rotisserie chicken", + "hot sauce", + "chopped cilantro fresh", + "shredded cheddar cheese", + "scallions" + ] + }, + { + "id": 1886, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "chicken", + "refried beans", + "onions", + "corn", + "salsa", + "chicken stock", + "garlic powder", + "cumin" + ] + }, + { + "id": 42919, + "cuisine": "indian", + "ingredients": [ + "ground cardamom", + "ground cinnamon", + "ancho powder", + "ground turmeric" + ] + }, + { + "id": 34449, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "shredded parmesan cheese", + "fat-free reduced-sodium chicken broth", + "boneless skinless chicken breasts", + "Neufchâtel", + "garlic powder", + "penne pasta", + "sun dried tomato dressing", + "Philadelphia Cream Cheese", + "fresh basil leaves" + ] + }, + { + "id": 39734, + "cuisine": "indian", + "ingredients": [ + "rose water", + "pistachios", + "ghee", + "baking soda", + "all-purpose flour", + "water", + "powdered milk", + "cardamom", + "milk", + "maple syrup", + "saffron" + ] + }, + { + "id": 24948, + "cuisine": "irish", + "ingredients": [ + "red potato", + "lamb stew meat", + "carrots", + "barley", + "minced garlic", + "yellow onion", + "celery", + "stock", + "bacon", + "ham hock", + "tomato paste", + "flour", + "bouquet", + "Irish Red ale" + ] + }, + { + "id": 45545, + "cuisine": "mexican", + "ingredients": [ + "natural peanut butter", + "lime", + "beef", + "beets", + "corn tortillas", + "avocado", + "cider vinegar", + "olive oil", + "salt", + "garlic cloves", + "ground cumin", + "chicken broth", + "fresh cilantro", + "instant espresso powder", + "cilantro leaves", + "ancho chile pepper", + "sugar", + "honey", + "purple onion", + "sweet paprika", + "onions" + ] + }, + { + "id": 5899, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "ghee", + "whole wheat flour", + "cilantro leaves", + "amchur", + "salt", + "garam masala", + "green chilies" + ] + }, + { + "id": 11226, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "salt", + "ground black pepper", + "purple onion", + "olive oil", + "garlic", + "arugula", + "grape tomatoes", + "baby spinach", + "bocconcini" + ] + }, + { + "id": 19867, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "feta cheese crumbles", + "black-eyed peas", + "baby spinach", + "salt", + "finely chopped onion", + "chopped celery", + "arugula", + "swiss chard", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 26081, + "cuisine": "thai", + "ingredients": [ + "espresso", + "hot water", + "sweetened condensed milk", + "cardamom" + ] + }, + { + "id": 5346, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "cilantro leaves", + "sour cream", + "avocado", + "jalapeno chilies", + "sharp cheddar cheese", + "diced red onions", + "whole kernel corn, drain", + "corn tortilla chips", + "cooked chicken", + "red enchilada sauce" + ] + }, + { + "id": 19683, + "cuisine": "moroccan", + "ingredients": [ + "cinnamon", + "salt", + "pepper", + "ginger", + "cumin", + "cayenne", + "garlic", + "ground lamb", + "pomegranate juice", + "paprika", + "thyme" + ] + }, + { + "id": 23600, + "cuisine": "japanese", + "ingredients": [ + "light brown sugar", + "fresh lime juice", + "wasabi powder", + "mango", + "lump crab meat", + "toasted nori", + "fresh mint" + ] + }, + { + "id": 20377, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "oil-cured black olives", + "purple onion", + "ground black pepper", + "garlic", + "green pepper", + "olive oil", + "red wine vinegar", + "salt", + "hard-boiled egg", + "dried salted codfish", + "oregano" + ] + }, + { + "id": 30726, + "cuisine": "chinese", + "ingredients": [ + "cremini mushrooms", + "bacon", + "napa cabbage", + "chicken broth", + "onions" + ] + }, + { + "id": 12134, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "tomatillos", + "chopped cilantro fresh", + "grated parmesan cheese", + "chili powder", + "corn tortillas", + "black pepper", + "chicken breasts", + "salt", + "green chile", + "green onions", + "1% low-fat milk", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 7449, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "salt", + "butter", + "water", + "all-purpose flour" + ] + }, + { + "id": 10125, + "cuisine": "spanish", + "ingredients": [ + "red pepper", + "freshly ground pepper", + "sliced almonds", + "salt", + "plum tomatoes", + "vidalia onion", + "garlic sauce", + "olive oil flavored cooking spray", + "large garlic cloves", + "snapper fillets" + ] + }, + { + "id": 40948, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "salt", + "powdered sugar", + "almond extract", + "cream of tartar", + "granulated sugar", + "sliced almonds", + "vanilla extract" + ] + }, + { + "id": 43598, + "cuisine": "indian", + "ingredients": [ + "rice", + "gram dal", + "grated coconut", + "green chilies", + "salt" + ] + }, + { + "id": 28529, + "cuisine": "moroccan", + "ingredients": [ + "butter", + "carrots", + "white onion", + "cumin seed", + "plain yogurt", + "ground allspice", + "low salt chicken broth", + "honey", + "fresh lemon juice" + ] + }, + { + "id": 19910, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "broccoli florets", + "salt", + "grape tomatoes", + "parmesan cheese", + "large garlic cloves", + "sun-dried tomatoes", + "wheat", + "pasta water", + "pesto", + "ground black pepper", + "red pepper flakes" + ] + }, + { + "id": 42775, + "cuisine": "french", + "ingredients": [ + "pepper", + "salt", + "plum tomatoes", + "green onions", + "garlic cloves", + "fish fillets", + "yellow bell pepper", + "lemon juice", + "dried thyme", + "fines herbes" + ] + }, + { + "id": 12808, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "red wine vinegar", + "chickpeas", + "cucumber", + "pitted kalamata olives", + "purple onion", + "garlic cloves", + "green bell pepper", + "extra-virgin olive oil", + "spaghetti squash", + "dried oregano", + "black pepper", + "salt", + "feta cheese crumbles" + ] + }, + { + "id": 24991, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "zucchini", + "garlic", + "walnut oil", + "curry powder", + "cilantro", + "red bell pepper", + "pepper", + "meat", + "carrots", + "coriander", + "lime", + "ginger", + "toasted sesame oil" + ] + }, + { + "id": 39231, + "cuisine": "italian", + "ingredients": [ + "chili flakes", + "garlic", + "Italian turkey sausage", + "olive oil", + "nonfat milk", + "polenta", + "pepper", + "salt", + "fat skimmed chicken broth", + "mustard greens", + "Italian cheese blend" + ] + }, + { + "id": 7407, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "parsley", + "garlic", + "zucchini", + "apple cider", + "onions", + "dried basil", + "diced tomatoes", + "carrots", + "italian sausage", + "low sodium chicken broth", + "cheese tortellini", + "dried oregano" + ] + }, + { + "id": 14170, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "ground coriander", + "ground black pepper", + "salt", + "ground cumin", + "garlic", + "ground beef", + "ground pork", + "lemon juice" + ] + }, + { + "id": 1882, + "cuisine": "french", + "ingredients": [ + "warm water", + "salt", + "caster sugar", + "unsalted butter", + "plain flour", + "instant yeast" + ] + }, + { + "id": 21713, + "cuisine": "southern_us", + "ingredients": [ + "rosemary", + "unsalted butter", + "buttermilk", + "baking soda", + "half & half", + "honey", + "flour", + "thyme leaves", + "kosher salt", + "ground black pepper", + "baking powder" + ] + }, + { + "id": 18962, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "dried porcini mushrooms", + "dry white wine", + "chicken livers", + "fresh rosemary", + "bay leaves", + "hot water", + "clove", + "olive oil", + "bigoli", + "low salt chicken broth", + "tomato paste", + "grated parmesan cheese", + "duck", + "onions" + ] + }, + { + "id": 3478, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "garlic", + "butter", + "egg yolks", + "dried parsley", + "fettucine", + "heavy cream" + ] + }, + { + "id": 21394, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "large eggs", + "salt", + "okra", + "clarified butter", + "diced onions", + "andouille sausage", + "green onions", + "cayenne pepper", + "diced celery", + "tomatoes", + "ground black pepper", + "garlic", + "creole seasoning", + "shrimp", + "shrimp stock", + "green bell pepper", + "bay leaves", + "all-purpose flour", + "fresh parsley leaves" + ] + }, + { + "id": 28089, + "cuisine": "mexican", + "ingredients": [ + "poblano chilies", + "monterey jack", + "flour tortillas", + "fresh tomato salsa", + "water", + "garlic cloves", + "vegetable oil", + "chopped cilantro fresh" + ] + }, + { + "id": 19717, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "vegetable oil", + "corn tortillas", + "tomatoes", + "large eggs", + "salt", + "ground black pepper", + "garlic", + "hass avocado", + "lime juice", + "jalapeno chilies", + "scallions" + ] + }, + { + "id": 33051, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "garlic", + "angel hair" + ] + }, + { + "id": 35116, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "pepper", + "salt", + "biscuits", + "butter", + "milk", + "rolls" + ] + }, + { + "id": 33707, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "chili powder", + "sour cream", + "cumin", + "black beans", + "garlic", + "onions", + "monterey jack", + "cheddar cheese", + "red pepper flakes", + "ground beef", + "corn kernel whole", + "flour tortillas", + "green chilies", + "oregano" + ] + }, + { + "id": 36007, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "garlic powder", + "onion powder", + "cilantro leaves", + "corn tortillas", + "kosher salt", + "ground black pepper", + "paprika", + "frozen corn kernels", + "canned black beans", + "quinoa", + "diced tomatoes", + "cayenne pepper", + "cumin", + "lime", + "chili powder", + "vegetable broth", + "sour cream" + ] + }, + { + "id": 28117, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "sesame oil", + "corn starch", + "ground pepper", + "green pepper", + "celery", + "water", + "ground pork", + "lumpia skins", + "Accent Seasoning", + "shredded cabbage", + "carrots", + "onions" + ] + }, + { + "id": 7292, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "salt", + "baking powder", + "sharp cheddar cheese", + "unsalted butter", + "all-purpose flour", + "sugar", + "butter", + "apple slice" + ] + }, + { + "id": 5623, + "cuisine": "vietnamese", + "ingredients": [ + "rock sugar", + "egg whites", + "rice powder", + "garlic", + "ground black pepper", + "shell-on shrimp", + "granulated sugar", + "lard" + ] + }, + { + "id": 1531, + "cuisine": "southern_us", + "ingredients": [ + "granny smith apples", + "dark brown sugar", + "ground cinnamon", + "unsalted butter", + "rhubarb", + "ground nutmeg", + "brioche", + "lemon" + ] + }, + { + "id": 17420, + "cuisine": "filipino", + "ingredients": [ + "large egg whites", + "sesame oil", + "peanut oil", + "soy sauce", + "peeled fresh ginger", + "ground pork", + "corn starch", + "minced garlic", + "jicama", + "salt", + "white sesame seeds", + "sugar", + "black sesame seeds", + "wonton wrappers", + "scallions" + ] + }, + { + "id": 10306, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "cayenne pepper", + "oregano", + "tomatoes", + "garlic", + "thyme", + "olive oil", + "rice", + "green bell pepper", + "salt", + "onions" + ] + }, + { + "id": 25410, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "garlic cloves", + "fresh ginger", + "crushed red pepper", + "reduced sodium chicken broth", + "vegetable oil", + "large shrimp", + "reduced sodium soy sauce", + "salt" + ] + }, + { + "id": 26872, + "cuisine": "southern_us", + "ingredients": [ + "frozen peaches", + "all-purpose flour", + "light brown sugar", + "granulated sugar", + "peach preserves", + "unsalted butter", + "grated lemon zest", + "sliced almonds", + "salt", + "lemon juice" + ] + }, + { + "id": 36810, + "cuisine": "italian", + "ingredients": [ + "chopped tomatoes", + "salt", + "pepper", + "extra-virgin olive oil", + "basil leaves", + "yellow onion", + "dried pasta", + "garlic" + ] + }, + { + "id": 37585, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "tomatillos", + "tortilla chips", + "jalapeno chilies", + "salt", + "garlic cloves", + "large eggs", + "extra-virgin olive oil", + "roasting chickens", + "fresh cilantro", + "queso fresco", + "yellow onion" + ] + }, + { + "id": 20570, + "cuisine": "filipino", + "ingredients": [ + "water", + "sago pearls" + ] + }, + { + "id": 27946, + "cuisine": "italian", + "ingredients": [ + "vanilla beans", + "sprinkles", + "eggs", + "semisweet chocolate", + "confectioners sugar", + "honey", + "all-purpose flour", + "slivered almonds", + "vegetable oil" + ] + }, + { + "id": 40031, + "cuisine": "brazilian", + "ingredients": [ + "chicken stock", + "onions", + "red wine vinegar", + "collard greens", + "peppered bacon", + "cayenne pepper" + ] + }, + { + "id": 5644, + "cuisine": "italian", + "ingredients": [ + "spaghetti", + "tomato sauce", + "parmigiano reggiano cheese" + ] + }, + { + "id": 6533, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "all-purpose flour", + "sugar", + "butter", + "shallots", + "sourdough baguette", + "ground nutmeg", + "cheese" + ] + }, + { + "id": 36938, + "cuisine": "chinese", + "ingredients": [ + "sugar pea", + "sesame oil", + "all-purpose flour", + "brown sugar", + "sesame seeds", + "ginger", + "soba noodles", + "lime", + "cilantro", + "peanut butter", + "soy sauce", + "boneless skinless chicken breasts", + "garlic", + "carrots" + ] + }, + { + "id": 47353, + "cuisine": "brazilian", + "ingredients": [ + "cachaca", + "superfine sugar", + "lime", + "coco" + ] + }, + { + "id": 32772, + "cuisine": "spanish", + "ingredients": [ + "sweetened condensed milk" + ] + }, + { + "id": 46123, + "cuisine": "french", + "ingredients": [ + "water", + "garlic", + "celery", + "salt and ground black pepper", + "whole chicken", + "olive oil", + "chicken stock cubes", + "onions", + "potatoes", + "carrots" + ] + }, + { + "id": 12226, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "sweet onion", + "garlic", + "chopped ham", + "tomato sauce", + "butter", + "rice", + "green bell pepper", + "chili powder", + "salt", + "chicken broth", + "water", + "turkey sausage", + "oregano" + ] + }, + { + "id": 49240, + "cuisine": "italian", + "ingredients": [ + "sugar", + "heavy cream", + "egg yolks", + "espresso", + "whole milk", + "unsweetened cocoa powder", + "coffee", + "vanilla extract" + ] + }, + { + "id": 27719, + "cuisine": "french", + "ingredients": [ + "minced garlic", + "diced tomatoes", + "medium shrimp", + "fresh basil", + "clam juice", + "herbes de provence", + "mussels", + "olive oil", + "refrigerated fettuccine", + "halibut fillets", + "all-purpose flour", + "ground turmeric" + ] + }, + { + "id": 31123, + "cuisine": "italian", + "ingredients": [ + "ground ginger", + "ground nutmeg", + "vanilla extract", + "eggs", + "pumpkin purée", + "all-purpose flour", + "brown sugar", + "baking powder", + "white sugar", + "ground cinnamon", + "chop fine pecan", + "salt" + ] + }, + { + "id": 45943, + "cuisine": "chinese", + "ingredients": [ + "lean ground pork", + "green onions", + "red miso", + "large shrimp", + "low sodium soy sauce", + "won ton wrappers", + "dark sesame oil", + "shiitake mushroom caps", + "white pepper", + "rice vinegar", + "red bell pepper", + "sliced green onions", + "green tea bags", + "peeled fresh ginger", + "garlic cloves", + "boiling water" + ] + }, + { + "id": 21365, + "cuisine": "french", + "ingredients": [ + "swiss cheese", + "milk", + "oil", + "potatoes", + "garlic cloves", + "pepper", + "salt" + ] + }, + { + "id": 19196, + "cuisine": "french", + "ingredients": [ + "gruyere cheese", + "ground nutmeg", + "pepper", + "fat", + "potatoes" + ] + }, + { + "id": 1966, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "sea salt", + "cumin", + "lettuce", + "sweetener", + "sweet potatoes", + "hot sauce", + "avocado", + "lime", + "red quinoa", + "chopped cilantro", + "water", + "jalapeno chilies", + "salsa" + ] + }, + { + "id": 45868, + "cuisine": "italian", + "ingredients": [ + "fresh tomatoes", + "french bread", + "fresh basil leaves", + "olive oil", + "salt", + "pepper", + "bacon slices", + "parmesan cheese", + "balsamic vinaigrette" + ] + }, + { + "id": 14111, + "cuisine": "japanese", + "ingredients": [ + "vegetable stock", + "spinach", + "carrots", + "shiitake", + "tofu", + "miso" + ] + }, + { + "id": 21057, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "baking soda", + "butter", + "herb seasoned stuffing mix", + "sugar", + "baking powder", + "all-purpose flour", + "celery ribs", + "large eggs", + "buttermilk", + "cornmeal", + "chicken broth", + "green onions", + "salt" + ] + }, + { + "id": 13254, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "tomato basil sauce", + "fresh basil", + "grated parmesan cheese", + "garlic cloves", + "ground black pepper", + "chopped onion", + "cucuzza", + "salt", + "spaghetti" + ] + }, + { + "id": 35078, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "sugar", + "light corn syrup", + "butter", + "peanuts", + "vanilla extract" + ] + }, + { + "id": 36143, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "ginger", + "ground cardamom", + "ground cumin", + "ground cloves", + "ground black pepper", + "salt", + "onions", + "ground nutmeg", + "garlic", + "cinnamon sticks", + "crushed tomatoes", + "bay leaves", + "skinless chicken thighs", + "ground turmeric" + ] + }, + { + "id": 11225, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "heavy cream", + "granulated sugar", + "large egg yolks", + "light corn syrup", + "unsalted butter" + ] + }, + { + "id": 43616, + "cuisine": "italian", + "ingredients": [ + "roast breast of chicken", + "olive oil", + "linguine", + "chopped walnuts", + "fat free less sodium chicken broth", + "ground nutmeg", + "all-purpose flour", + "sliced mushrooms", + "black pepper", + "fat free milk", + "salt", + "garlic cloves", + "water", + "butter", + "cream cheese" + ] + }, + { + "id": 14679, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "ground black pepper", + "chili powder", + "all-purpose flour", + "shredded reduced fat cheddar cheese", + "baking powder", + "salt", + "water", + "cooking spray", + "ice water", + "sugar", + "ground turkey breast", + "butter", + "ground cumin" + ] + }, + { + "id": 6993, + "cuisine": "spanish", + "ingredients": [ + "yellow bell pepper", + "salt", + "chopped fresh mint", + "honey", + "white wine vinegar", + "cucumber", + "ground cumin", + "yellow tomato", + "extra-virgin olive oil", + "garlic cloves", + "chopped cilantro fresh", + "chopped green bell pepper", + "purple onion", + "red bell pepper" + ] + }, + { + "id": 18592, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "ground black pepper", + "garlic", + "penne", + "mushrooms", + "fresh parsley", + "canned low sodium chicken broth", + "cooking oil", + "salt", + "marsala wine", + "butter" + ] + }, + { + "id": 31925, + "cuisine": "chinese", + "ingredients": [ + "sweet onion", + "vegetable oil", + "frozen peas", + "ground ginger", + "large eggs", + "long-grain rice", + "sesame seeds", + "rice vinegar", + "soy sauce", + "sesame oil", + "shrimp" + ] + }, + { + "id": 29214, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "olive oil", + "onions", + "white wine", + "salt", + "sausage links", + "potatoes", + "italian seasoning", + "chicken stock", + "pepper", + "red bell pepper" + ] + }, + { + "id": 24196, + "cuisine": "greek", + "ingredients": [ + "fresh rosemary", + "garlic", + "chopped fresh thyme", + "chicken", + "olive oil", + "fresh oregano", + "lemon" + ] + }, + { + "id": 30212, + "cuisine": "southern_us", + "ingredients": [ + "vanilla wafers", + "powdered sugar", + "corn syrup", + "chop fine pecan", + "cocoa powder", + "bourbon whiskey" + ] + }, + { + "id": 16463, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "whole milk", + "half & half", + "sugar", + "vanilla extract" + ] + }, + { + "id": 30123, + "cuisine": "jamaican", + "ingredients": [ + "minced garlic", + "hot pepper sauce", + "shredded mozzarella cheese", + "ground cinnamon", + "fresh ginger", + "ground allspice", + "boneless skinless chicken breast halves", + "tomatoes", + "lime", + "chopped fresh thyme", + "coconut milk", + "chicken bouillon granules", + "water", + "tortillas", + "carrots" + ] + }, + { + "id": 29227, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "fresh thyme", + "ground thyme", + "smoked sausage", + "onions", + "pepper", + "onion powder", + "bacon", + "cayenne pepper", + "black pepper", + "bell pepper", + "red pepper flakes", + "salt", + "ground oregano", + "chicken broth", + "garlic powder", + "cajun seasoning", + "paprika", + "celery" + ] + }, + { + "id": 32293, + "cuisine": "irish", + "ingredients": [ + "sugar", + "low-fat buttermilk", + "baking powder", + "dried cranberries", + "large egg whites", + "dried apricot", + "all-purpose flour", + "butter-margarine blend", + "large eggs", + "salt", + "baking soda", + "cooking spray", + "grated orange" + ] + }, + { + "id": 31460, + "cuisine": "mexican", + "ingredients": [ + "black peppercorns", + "kosher salt", + "unsalted butter", + "cinnamon", + "mexican chocolate", + "ancho chile pepper", + "plantains", + "piloncillo", + "pasilla chiles", + "bolillo", + "mulato chiles", + "red rice", + "allspice berries", + "white sandwich bread", + "anise seed", + "white onion", + "coriander seeds", + "tomatillos", + "garlic", + "lard", + "plum tomatoes", + "light brown sugar", + "whole almonds", + "sesame seeds", + "whole cloves", + "raisins", + "whole chicken", + "corn tortillas" + ] + }, + { + "id": 37924, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "chili powder", + "flavored tortilla chips", + "catfish", + "black pepper", + "salt", + "cooking oil" + ] + }, + { + "id": 29873, + "cuisine": "southern_us", + "ingredients": [ + "water", + "greens", + "pork shoulder" + ] + }, + { + "id": 27309, + "cuisine": "greek", + "ingredients": [ + "white bread", + "olive oil", + "sea salt", + "dried oregano", + "picholine olives", + "lemon wedge", + "garlic cloves", + "black pepper", + "fusilli", + "feta cheese crumbles", + "spinach", + "radicchio", + "crushed red pepper" + ] + }, + { + "id": 27700, + "cuisine": "chinese", + "ingredients": [ + "egg noodles", + "napa cabbage", + "peanut oil", + "soy sauce", + "rice wine", + "ginger", + "corn starch", + "boneless chicken skinless thigh", + "sesame oil", + "salt", + "ground white pepper", + "fresh shiitake mushrooms", + "red pepper flakes", + "scallions" + ] + }, + { + "id": 28886, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "salt", + "Italian seasoned diced tomatoes", + "tomato sauce", + "boneless chuck roast", + "onions", + "tomato paste", + "olive oil", + "garlic cloves", + "dried oregano", + "sugar", + "crushed red pepper", + "spaghetti" + ] + }, + { + "id": 44349, + "cuisine": "moroccan", + "ingredients": [ + "red lentils", + "fresh cilantro", + "extra-virgin olive oil", + "ground coriander", + "ground turmeric", + "pepper", + "red pepper flakes", + "garlic", + "flat leaf parsley", + "ground cinnamon", + "lemon", + "vegetable broth", + "carrots", + "ground cumin", + "celery ribs", + "crushed tomatoes", + "sea salt", + "sweet paprika", + "onions" + ] + }, + { + "id": 32167, + "cuisine": "southern_us", + "ingredients": [ + "fresh tomatoes", + "garlic powder", + "worcestershire sauce", + "onions", + "shredded cheddar cheese", + "hot pepper sauce", + "smoked sausage", + "cooked ham", + "ground black pepper", + "bacon", + "grits", + "water", + "chopped green bell pepper", + "salt" + ] + }, + { + "id": 22977, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "green onions", + "salt", + "hoisin sauce", + "dry sherry", + "peanut oil", + "lower sodium soy sauce", + "sirloin steak", + "rice vinegar", + "chile paste with garlic", + "peeled fresh ginger", + "garlic", + "corn starch" + ] + }, + { + "id": 37238, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "sugar", + "scallions", + "sake", + "sirloin steak", + "soy sauce" + ] + }, + { + "id": 17670, + "cuisine": "southern_us", + "ingredients": [ + "cranberry juice", + "fresh orange juice", + "ice cubes", + "lime", + "fresh lime juice", + "orange", + "grenadine", + "wine", + "bourbon whiskey", + "club soda" + ] + }, + { + "id": 34485, + "cuisine": "irish", + "ingredients": [ + "egg yolks", + "applesauce", + "ground cloves", + "salt", + "ground cinnamon", + "butter", + "white sugar", + "lemon zest", + "all-purpose flour" + ] + }, + { + "id": 4596, + "cuisine": "indian", + "ingredients": [ + "salmon fillets", + "peeled fresh ginger", + "garlic cloves", + "plain whole-milk yogurt", + "kosher salt", + "vegetable oil", + "cucumber", + "ground cumin", + "ground black pepper", + "scallions", + "chopped cilantro fresh", + "garam masala", + "ground coriander", + "fresh lime juice" + ] + }, + { + "id": 48625, + "cuisine": "southern_us", + "ingredients": [ + "plain yogurt", + "chopped fresh chives", + "thyme sprigs", + "fresh thyme", + "salt", + "white cornmeal", + "corn kernels", + "butter", + "fresh parsley", + "sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 43623, + "cuisine": "chinese", + "ingredients": [ + "orange liqueur", + "simple syrup", + "mandarin orange segments", + "champagne" + ] + }, + { + "id": 7912, + "cuisine": "southern_us", + "ingredients": [ + "whipping cream", + "baking soda", + "butter", + "sugar" + ] + }, + { + "id": 38370, + "cuisine": "italian", + "ingredients": [ + "whole milk", + "extra-virgin olive oil", + "bay leaf", + "balsamic vinegar", + "crème fraîche", + "polenta", + "butter", + "low salt chicken broth", + "wild mushrooms", + "shallots", + "cheese", + "fresh parsley" + ] + }, + { + "id": 32857, + "cuisine": "french", + "ingredients": [ + "creole mustard", + "garlic cloves", + "lemon zest", + "sliced green onions", + "mayonaise", + "fresh parsley", + "ground red pepper" + ] + }, + { + "id": 24183, + "cuisine": "mexican", + "ingredients": [ + "Campbell's Condensed Cheddar Cheese Soup", + "onions", + "tortilla chips", + "jalapeno chilies", + "chunky salsa", + "tomatoes", + "ground beef" + ] + }, + { + "id": 1483, + "cuisine": "chinese", + "ingredients": [ + "egg noodles", + "napa cabbage", + "oil", + "red bell pepper", + "sugar", + "flank steak", + "salt", + "corn starch", + "bamboo shoots", + "dark soy sauce", + "Shaoxing wine", + "garlic", + "carrots", + "mung bean sprouts", + "soy sauce", + "sesame oil", + "scallions", + "sliced mushrooms", + "snow peas" + ] + }, + { + "id": 7765, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "zucchini", + "butter", + "fresh parsley", + "arborio rice", + "olive oil", + "dry white wine", + "asparagus spears", + "fontina cheese", + "parmesan cheese", + "chicken breasts", + "herbes de provence", + "pepper", + "grated parmesan cheese", + "salt", + "onions" + ] + }, + { + "id": 46549, + "cuisine": "japanese", + "ingredients": [ + "Japanese soy sauce", + "carrots", + "sugar", + "salt", + "fresh ginger", + "rice vinegar", + "daikon" + ] + }, + { + "id": 34882, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "chickpeas", + "carrots", + "frozen peas", + "saffron", + "coarse salt", + "garlic cloves", + "cinnamon sticks", + "basmati rice", + "cauliflower", + "nonfat milk", + "ground cardamom", + "onions", + "plum tomatoes", + "fresh ginger", + "cumin seed", + "green beans", + "cashew nuts", + "canola oil" + ] + }, + { + "id": 39384, + "cuisine": "italian", + "ingredients": [ + "red delicious apples", + "prepared horseradish", + "salt", + "white vinegar", + "water", + "green peas", + "pepper", + "roasted red peppers", + "plain low-fat yogurt", + "radicchio", + "purple onion" + ] + }, + { + "id": 26329, + "cuisine": "southern_us", + "ingredients": [ + "ground chuck", + "ground pepper", + "grape tomatoes", + "sweet onion", + "frozen onion rings", + "hamburger buns", + "honey", + "salt", + "biscuits", + "cider vinegar", + "lettuce leaves" + ] + }, + { + "id": 44959, + "cuisine": "italian", + "ingredients": [ + "spaghetti, cook and drain", + "eggs", + "ground beef", + "shredded mozzarella cheese", + "ragu old world style pasta sauc", + "italian seasoned dry bread crumbs" + ] + }, + { + "id": 14963, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "cider vinegar", + "butter", + "black pepper", + "ground red pepper", + "soy sauce", + "prepared mustard", + "hot sauce", + "white pepper", + "chili powder" + ] + }, + { + "id": 45873, + "cuisine": "british", + "ingredients": [ + "cauliflower", + "light cream", + "salt", + "onions", + "white pepper", + "whole milk", + "corn starch", + "chicken broth", + "unsalted butter", + "croutons", + "celery ribs", + "stilton", + "florets", + "stilton cheese" + ] + }, + { + "id": 39153, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "ground black pepper", + "cooking spray", + "fresh parsley", + "eggplant", + "zucchini", + "salt", + "fresh basil", + "part-skim mozzarella cheese", + "large eggs", + "red bell pepper", + "pesto", + "lasagna noodles", + "asiago", + "nonfat ricotta cheese" + ] + }, + { + "id": 20410, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "ricotta cheese", + "onions", + "mozzarella cheese", + "pasta shells", + "baby spinach leaves", + "garlic", + "oregano", + "eggs", + "parmesan cheese", + "sweet italian sausage" + ] + }, + { + "id": 26858, + "cuisine": "italian", + "ingredients": [ + "parsley flakes", + "grated parmesan cheese", + "meat sauce", + "lasagna noodles", + "shredded mozzarella cheese", + "eggs", + "ricotta cheese", + "italian seasoning", + "ground black pepper", + "salt" + ] + }, + { + "id": 7469, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "boneless chicken breast", + "salsa", + "salsa verde", + "jalapeno chilies", + "green pepper", + "diced green chilies", + "cheese", + "tomatoes", + "tortillas", + "shells" + ] + }, + { + "id": 21303, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "all-purpose flour", + "baking soda", + "cake flour", + "black pepper", + "buttermilk", + "baking powder", + "salt" + ] + }, + { + "id": 41529, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "Velveeta", + "rotel tomatoes", + "green chile", + "tortilla chips", + "cream of chicken soup" + ] + }, + { + "id": 22227, + "cuisine": "japanese", + "ingredients": [ + "Japanese soy sauce", + "dashi", + "mirin" + ] + }, + { + "id": 31281, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "salt", + "tomatoes", + "heavy cream", + "butter", + "cream cheese", + "ground black pepper", + "bacon" + ] + }, + { + "id": 15625, + "cuisine": "thai", + "ingredients": [ + "romaine lettuce", + "peanuts", + "spring onions", + "garlic", + "honey", + "bell pepper", + "sirloin steak", + "fresh mint", + "lime juice", + "lemon grass", + "shallots", + "cucumber", + "fish sauce", + "fresh ginger", + "jalapeno chilies", + "ginger" + ] + }, + { + "id": 7123, + "cuisine": "italian", + "ingredients": [ + "reduced-fat sour cream", + "black pepper", + "horseradish sauce", + "breadstick", + "scallions", + "roast beef deli meat" + ] + }, + { + "id": 48718, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "pepper flakes", + "salt", + "boneless skinless chicken breasts", + "olive oil", + "italian seasoning" + ] + }, + { + "id": 4529, + "cuisine": "russian", + "ingredients": [ + "fruit", + "extra light olive oil", + "sour cream", + "powdered sugar", + "large eggs", + "all-purpose flour", + "white vinegar", + "baking soda", + "salt", + "sugar", + "raisins", + "farmer cheese" + ] + }, + { + "id": 31203, + "cuisine": "indian", + "ingredients": [ + "chicken broth", + "fresh cilantro", + "light coconut milk", + "onions", + "ground cloves", + "vegetable oil", + "rotisserie chicken", + "ground ginger", + "curry powder", + "diced tomatoes", + "garlic cloves", + "ground cinnamon", + "mango chutney", + "cayenne pepper", + "basmati rice" + ] + }, + { + "id": 22859, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh chives", + "low sodium chicken broth", + "all-purpose flour", + "red bell pepper", + "chicken sausage", + "garlic", + "creole seasoning", + "fresh parsley", + "pepper", + "bay leaves", + "green pepper", + "celery", + "olive oil", + "salt", + "thyme", + "onions" + ] + }, + { + "id": 16851, + "cuisine": "southern_us", + "ingredients": [ + "shrimp and crab boil seasoning", + "dry white wine", + "shrimp", + "chips", + "lemon", + "pepper", + "butter", + "barbecue sauce", + "hot sauce" + ] + }, + { + "id": 48475, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "passata", + "ground turmeric", + "caster sugar", + "ginger", + "curry paste", + "red lentils", + "vegetable oil", + "salt", + "ground cumin", + "curry powder", + "garlic", + "onions" + ] + }, + { + "id": 48107, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "white miso", + "chili paste", + "ramen noodles", + "ground pork", + "soft-boiled egg", + "sesame paste", + "dashi", + "miso paste", + "large free range egg", + "spices", + "garlic", + "scallions", + "onions", + "water", + "soy milk", + "mirin", + "vegetable oil", + "ginger", + "dark brown sugar", + "toasted sesame oil", + "chicken stock", + "sesame seeds", + "ground black pepper", + "shallots", + "sea salt", + "dried shiitake mushrooms", + "oil", + "nori" + ] + }, + { + "id": 20500, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "salt", + "heavy cream", + "onions", + "large eggs", + "freshly ground pepper", + "red potato", + "extra-virgin olive oil" + ] + }, + { + "id": 20267, + "cuisine": "moroccan", + "ingredients": [ + "picholine olives", + "shallots", + "feta cheese crumbles", + "lettuce", + "honey", + "fresh lemon juice", + "chopped cilantro fresh", + "ground cinnamon", + "olive oil", + "carrots", + "ground cumin", + "minced garlic", + "fresh orange juice", + "ground cayenne pepper" + ] + }, + { + "id": 18200, + "cuisine": "british", + "ingredients": [ + "all-purpose flour", + "large eggs", + "milk", + "salt" + ] + }, + { + "id": 3692, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "feta cheese crumbles", + "black olives", + "baby spinach", + "thin pizza crust", + "tomato sauce", + "freshly ground pepper" + ] + }, + { + "id": 38265, + "cuisine": "japanese", + "ingredients": [ + "gingerroot", + "dijon mustard", + "fresh lemon juice", + "vegetable oil", + "red miso", + "water", + "scallions" + ] + }, + { + "id": 10315, + "cuisine": "british", + "ingredients": [ + "currant jelly", + "salt", + "bread crumbs", + "eggs", + "milk", + "sugar" + ] + }, + { + "id": 23279, + "cuisine": "cajun_creole", + "ingredients": [ + "flour", + "vanilla", + "eggs", + "butter", + "sugar pearls", + "baking powder", + "salt", + "sugar", + "sanding sugar" + ] + }, + { + "id": 32000, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "crushed red pepper", + "vegetable oil", + "salt", + "cider vinegar", + "purple onion", + "vegetable broth", + "dark brown sugar" + ] + }, + { + "id": 16061, + "cuisine": "southern_us", + "ingredients": [ + "fresh basil", + "large eggs", + "fruit", + "all-purpose flour", + "sugar", + "buttermilk", + "tart shells", + "vanilla bean paste" + ] + }, + { + "id": 34075, + "cuisine": "british", + "ingredients": [ + "large eggs", + "all-purpose flour", + "bittersweet chocolate", + "baking soda", + "vanilla", + "pitted prunes", + "stout", + "dark brown sugar", + "unsalted butter", + "salt", + "confectioners sugar" + ] + }, + { + "id": 23164, + "cuisine": "italian", + "ingredients": [ + "chili flakes", + "soppressata", + "pecorino romano cheese", + "tomato sauce", + "rigatoni", + "extra-virgin olive oil" + ] + }, + { + "id": 31433, + "cuisine": "japanese", + "ingredients": [ + "water", + "rice", + "nori", + "avocado", + "sea salt", + "cucumber", + "sushi rice", + "rice vinegar", + "white sesame seeds", + "granulated sugar", + "crabmeat" + ] + }, + { + "id": 500, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "lettuce leaves", + "scallions", + "medium shrimp", + "rice paper", + "soy sauce", + "hoisin sauce", + "english cucumber", + "toasted sesame oil", + "serrano chile", + "garlic paste", + "granulated sugar", + "creamy peanut butter", + "fresh mint", + "fresh basil leaves", + "rice stick noodles", + "lime juice", + "cilantro sprigs", + "garlic cloves", + "mung bean sprouts" + ] + }, + { + "id": 19569, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "light mayonnaise", + "chicken broth", + "shredded cabbage", + "plain low-fat yogurt", + "barbecue sauce", + "white vinegar", + "distilled vinegar", + "pork butt" + ] + }, + { + "id": 48601, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "chopped celery", + "marjoram", + "eggs", + "butter", + "thyme", + "chicken", + "chicken broth", + "dried sage", + "salt", + "dried rosemary", + "bread crumbs", + "crumbled cornbread", + "onions" + ] + }, + { + "id": 21204, + "cuisine": "indian", + "ingredients": [ + "white sugar", + "milk", + "mango", + "plain whole-milk yogurt", + "ground cardamom" + ] + }, + { + "id": 17107, + "cuisine": "mexican", + "ingredients": [ + "water", + "worcestershire sauce", + "onions", + "zucchini", + "whole kernel corn, drain", + "olive oil", + "salt", + "pepper", + "flour tortillas", + "pork roast" + ] + }, + { + "id": 1730, + "cuisine": "vietnamese", + "ingredients": [ + "chile pepper", + "chopped cilantro fresh", + "carrots", + "daikon", + "white vinegar", + "white sugar" + ] + }, + { + "id": 8442, + "cuisine": "irish", + "ingredients": [ + "ground cinnamon", + "granulated sugar", + "salt", + "dried cranberries", + "cider vinegar", + "ground red pepper", + "mustard seeds", + "brown sugar", + "peeled fresh ginger", + "ground allspice", + "ground cumin", + "peeled tomatoes", + "purple onion", + "red bell pepper" + ] + }, + { + "id": 18100, + "cuisine": "chinese", + "ingredients": [ + "butter", + "cashew nuts", + "hoisin sauce", + "all-purpose flour", + "olive oil", + "mandarin oranges", + "boneless skinless chicken breast halves", + "green onions", + "orange juice" + ] + }, + { + "id": 6872, + "cuisine": "italian", + "ingredients": [ + "whole peeled tomatoes", + "onions", + "black pepper", + "salt", + "garlic salt", + "tomato paste", + "lean ground beef", + "dried parsley", + "wide egg noodles", + "sharp cheddar cheese" + ] + }, + { + "id": 12522, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "enchilada sauce", + "water", + "taco seasoning", + "onions", + "minced garlic", + "cheese", + "ground beef", + "chopped bell pepper", + "oil" + ] + }, + { + "id": 4629, + "cuisine": "irish", + "ingredients": [ + "caraway seeds", + "salt", + "bread flour", + "active dry yeast", + "dry milk powder", + "warm water", + "margarine", + "raisins", + "white sugar" + ] + }, + { + "id": 27559, + "cuisine": "filipino", + "ingredients": [ + "tomato sauce", + "dry sherry", + "onions", + "olive oil", + "garlic", + "pepper", + "thai chile", + "mussels", + "bell pepper", + "salt" + ] + }, + { + "id": 28942, + "cuisine": "mexican", + "ingredients": [ + "salt", + "all-purpose flour", + "water", + "butter" + ] + }, + { + "id": 22096, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "sugar", + "coriander powder", + "salt", + "lemon juice", + "cumin", + "fresh coriander", + "kasuri methi", + "green chilies", + "onions", + "tomato purée", + "cream", + "mixed vegetables", + "tomato ketchup", + "ghee", + "garlic paste", + "garam masala", + "paneer", + "oil", + "ground turmeric" + ] + }, + { + "id": 33795, + "cuisine": "indian", + "ingredients": [ + "eggplant", + "onions", + "reduced fat coconut milk", + "baby spinach", + "yellow peppers", + "red lentils", + "mango chutney", + "frozen peas", + "low sodium vegetable stock", + "curry paste", + "brown basmati rice" + ] + }, + { + "id": 9351, + "cuisine": "italian", + "ingredients": [ + "orange juice", + "ice", + "tequila", + "frozen limeade concentrate", + "amaretto liqueur", + "white sugar" + ] + }, + { + "id": 836, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "olive oil", + "salt", + "minced onion", + "chopped cilantro", + "green bell pepper", + "idaho potatoes" + ] + }, + { + "id": 49695, + "cuisine": "southern_us", + "ingredients": [ + "fresh spinach", + "balsamic vinegar", + "orange juice", + "olive oil", + "leaf lettuce", + "orange zest", + "orange", + "purple onion", + "tarragon", + "shredded cabbage", + "crabmeat" + ] + }, + { + "id": 4717, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "salt", + "ground beef", + "pepper", + "carrots", + "boneless skinless chicken breast halves", + "eggs", + "dry bread crumbs", + "onions", + "frozen chopped spinach", + "dry pasta", + "celery" + ] + }, + { + "id": 8971, + "cuisine": "italian", + "ingredients": [ + "skim milk", + "salt", + "dry white wine", + "gemelli", + "grated parmesan cheese", + "all-purpose flour", + "pesto", + "cracked black pepper" + ] + }, + { + "id": 3821, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "all-purpose flour", + "sugar", + "buttermilk", + "butter", + "baking soda", + "salt" + ] + }, + { + "id": 25052, + "cuisine": "french", + "ingredients": [ + "brown sugar", + "apples", + "butter", + "puff pastry" + ] + }, + { + "id": 4775, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "smoked sausage", + "collard greens", + "black-eyed peas", + "chicken broth", + "kosher salt", + "instant rice", + "rotelle" + ] + }, + { + "id": 33082, + "cuisine": "french", + "ingredients": [ + "sugar", + "sweetened coconut flakes", + "large egg whites", + "cream of tartar", + "semisweet chocolate", + "sliced almonds", + "salt" + ] + }, + { + "id": 12548, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "large egg yolks", + "bittersweet chocolate", + "Grand Marnier", + "unsalted butter", + "orange zest" + ] + }, + { + "id": 44590, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "garden peas", + "grated lemon zest", + "scallops", + "dry white wine", + "salt", + "chicken stock", + "pearl onions", + "extra-virgin olive oil", + "freshly ground pepper", + "fresh basil", + "unsalted butter", + "pasta shells", + "flat leaf parsley" + ] + }, + { + "id": 3776, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "garlic", + "eggs", + "sea salt", + "flat leaf parsley", + "parmesan cheese", + "whole wheat breadcrumbs", + "lean ground turkey", + "crushed red pepper flakes", + "dried oregano" + ] + }, + { + "id": 13616, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "corn tortillas", + "salsa verde", + "purple onion", + "avocado", + "queso fresco", + "chopped cilantro fresh", + "meat", + "sour cream" + ] + }, + { + "id": 29076, + "cuisine": "indian", + "ingredients": [ + "coconut", + "chili powder", + "gingerroot", + "chopped cilantro fresh", + "ground ginger", + "nonfat yogurt", + "salt", + "ground cardamom", + "clove", + "baking soda", + "vegetable oil", + "small red potato", + "serrano chile", + "water", + "finely chopped onion", + "all-purpose flour", + "cinnamon sticks" + ] + }, + { + "id": 5532, + "cuisine": "thai", + "ingredients": [ + "green cabbage", + "chicken breast halves", + "freshly ground pepper", + "fish sauce", + "salt", + "iceberg lettuce", + "serrano chilies", + "sesame oil", + "chopped cilantro fresh", + "avocado", + "sugar", + "rice vinegar" + ] + }, + { + "id": 32053, + "cuisine": "indian", + "ingredients": [ + "clove", + "pepper", + "garam masala", + "salt", + "basmati rice", + "black peppercorns", + "water", + "vegetable oil", + "cinnamon sticks", + "ground cumin", + "tomatoes", + "fresh coriander", + "bay leaves", + "green chilies", + "saffron", + "green cardamom pods", + "garlic paste", + "milk", + "button mushrooms", + "onions" + ] + }, + { + "id": 45681, + "cuisine": "thai", + "ingredients": [ + "lime", + "garlic", + "red curry paste", + "fish sauce", + "butternut squash", + "salt", + "canola oil", + "lower sodium chicken broth", + "fresh ginger", + "unsalted dry roast peanuts", + "chopped onion", + "brown sugar", + "light coconut milk", + "cilantro leaves" + ] + }, + { + "id": 40319, + "cuisine": "spanish", + "ingredients": [ + "ground nutmeg", + "riesling", + "grape juice", + "powdered sugar", + "granulated sugar", + "fresh lemon juice", + "clove", + "peaches", + "grated lemon zest", + "phyllo dough", + "cooking spray", + "cinnamon sticks" + ] + }, + { + "id": 11719, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "cucumber", + "purple onion", + "ground cumin", + "fat free yogurt", + "chopped fresh mint", + "salt" + ] + }, + { + "id": 36180, + "cuisine": "british", + "ingredients": [ + "eggs", + "mixed spice", + "rum", + "cooking apples", + "nutmeg", + "sultana", + "suet", + "raisins", + "orange zest", + "self raising flour", + "brown sugar", + "almonds", + "candied peel", + "beer", + "ground cinnamon", + "bread crumbs", + "lemon zest", + "currant" + ] + }, + { + "id": 6956, + "cuisine": "indian", + "ingredients": [ + "seasoning", + "cucumber", + "salt", + "chili flakes", + "curds" + ] + }, + { + "id": 10085, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "chopped fresh thyme", + "bay leaf", + "olive oil", + "dry white wine", + "salt", + "cooking spray", + "reduced-fat sour cream", + "ground black pepper", + "boneless skinless chicken breasts", + "wild rice" + ] + }, + { + "id": 17578, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "honey", + "chees fresco queso", + "shrimp", + "corn", + "zucchini", + "salt", + "cumin", + "pepper", + "olive oil", + "garlic", + "chopped cilantro", + "lime", + "ancho powder", + "scallions" + ] + }, + { + "id": 36693, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "fresh cilantro", + "diced tomatoes", + "cream of mushroom soup", + "ground cumin", + "pepper", + "jalapeno chilies", + "enchilada sauce", + "pork sausages", + "cream of celery soup", + "garlic powder", + "salt", + "ground beef", + "avocado", + "shredded cheddar cheese", + "green onions", + "corn tortillas", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 47372, + "cuisine": "japanese", + "ingredients": [ + "honey", + "sugar", + "eggs", + "bread flour", + "milk" + ] + }, + { + "id": 16961, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "sea salt", + "purple onion", + "bay leaf", + "avocado", + "butternut squash", + "cilantro", + "red bell pepper", + "ground cumin", + "olive oil", + "diced tomatoes", + "garlic cloves", + "chipotles in adobo", + "ground cinnamon", + "chili powder", + "vegetable broth", + "corn tortillas" + ] + }, + { + "id": 32803, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "reduced fat milk", + "butter", + "cream cheese, soften", + "onions", + "parmigiano reggiano cheese", + "cooking spray", + "all-purpose flour", + "medium shrimp", + "lasagna noodles", + "half & half", + "salt", + "whole nutmegs", + "nonfat ricotta cheese", + "scallops", + "large eggs", + "chopped fresh thyme", + "garlic cloves", + "fresh parsley" + ] + }, + { + "id": 15781, + "cuisine": "moroccan", + "ingredients": [ + "diced tomatoes", + "salt", + "couscous", + "olive oil", + "vegetable broth", + "frozen mixed vegetables", + "chili flakes", + "deveined shrimp", + "ground coriander", + "ground cumin", + "chili powder", + "garlic", + "chopped parsley" + ] + }, + { + "id": 46713, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "pizza doughs", + "tomato sauce", + "olive oil", + "rotisserie chicken", + "chopped bell pepper", + "chopped onion", + "fresh oregano leaves", + "roasted red peppers", + "shredded mozzarella cheese" + ] + }, + { + "id": 32954, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "green enchilada sauce", + "chicken breasts", + "pepper cheese" + ] + }, + { + "id": 20226, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "flour", + "cornmeal", + "unsalted butter", + "buttermilk", + "sage leaves", + "large eggs", + "salt", + "baking soda", + "baking powder", + "pears" + ] + }, + { + "id": 10293, + "cuisine": "chinese", + "ingredients": [ + "onion powder", + "soy sauce", + "rice vinegar", + "ground ginger", + "sesame oil", + "garlic powder" + ] + }, + { + "id": 29195, + "cuisine": "japanese", + "ingredients": [ + "vegetable oil", + "sushi rice", + "fine sea salt", + "salmon fillets", + "furikake", + "lemon wedge", + "nori" + ] + }, + { + "id": 42723, + "cuisine": "filipino", + "ingredients": [ + "ketchup", + "Sriracha", + "sauce", + "garlic cloves", + "brown sugar", + "7 Up", + "marinade", + "scallions", + "onions", + "Frank's® RedHot® Original Cayenne Pepper Sauce", + "kosher salt", + "center cut pork loin chops", + "chili sauce", + "lemon juice", + "soy sauce", + "ground black pepper", + "spices", + "oil" + ] + }, + { + "id": 4945, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "salt", + "white pepper", + "heavy cream", + "unsalted butter", + "white wine vinegar", + "shallots" + ] + }, + { + "id": 48710, + "cuisine": "indian", + "ingredients": [ + "low fat plain yoghurt", + "spices", + "paprika", + "coriander", + "garlic powder", + "lemon", + "salt", + "dried basil", + "cinnamon", + "ginger", + "cumin", + "onion powder", + "chicken drumsticks", + "cayenne pepper" + ] + }, + { + "id": 34948, + "cuisine": "greek", + "ingredients": [ + "sundried tomato pesto", + "butter", + "sunflower kernels", + "fresh spinach", + "sliced black olives", + "basil", + "chopped parsley", + "soy sauce", + "shallots", + "extra-virgin olive oil", + "rib eye steaks", + "minced garlic", + "whole wheat penne pasta", + "feta cheese crumbles" + ] + }, + { + "id": 29699, + "cuisine": "italian", + "ingredients": [ + "sugar", + "salt", + "dried oregano", + "dried basil", + "garlic cloves", + "olive oil", + "plum tomatoes", + "pepper", + "chopped onion" + ] + }, + { + "id": 1321, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "quinoa", + "pinto beans", + "olive oil", + "natural yogurt", + "onions", + "lime", + "red pepper", + "chipotle paste", + "chicken stock", + "chopped tomatoes", + "skinless chicken breasts", + "coriander" + ] + }, + { + "id": 48054, + "cuisine": "chinese", + "ingredients": [ + "salt", + "cooking oil", + "sweet rice flour", + "light brown sugar", + "white sesame seeds", + "pumpkin" + ] + }, + { + "id": 25035, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "flour tortillas", + "chorizo sausage", + "red kidney beans", + "pepper", + "salt", + "taco sauce", + "extra-virgin olive oil", + "green chile", + "finely chopped onion", + "monterey jack" + ] + }, + { + "id": 33583, + "cuisine": "jamaican", + "ingredients": [ + "salt", + "long grain white rice", + "red kidney beans", + "garlic cloves", + "hot pepper", + "thyme", + "unsweetened coconut milk", + "scallions" + ] + }, + { + "id": 44989, + "cuisine": "italian", + "ingredients": [ + "chestnuts", + "butter", + "potatoes", + "beef broth", + "large egg yolks", + "heavy cream", + "bread", + "leeks", + "beer" + ] + }, + { + "id": 36247, + "cuisine": "italian", + "ingredients": [ + "water", + "macaroni", + "onions", + "fresh basil", + "olive oil", + "garlic", + "tomatoes", + "dried basil", + "grated parmesan cheese", + "dried oregano", + "homemade chicken stock", + "zucchini", + "links" + ] + }, + { + "id": 2508, + "cuisine": "indian", + "ingredients": [ + "pepper", + "brown rice", + "red bell pepper", + "curry powder", + "salt", + "red apples", + "golden raisins", + "lemon juice", + "water", + "heavy cream", + "asparagus tips" + ] + }, + { + "id": 4757, + "cuisine": "thai", + "ingredients": [ + "sugar", + "salt", + "green beans", + "chicken thighs", + "ground black pepper", + "rice", + "coconut milk", + "green curry paste", + "cilantro leaves", + "Thai fish sauce", + "vegetable oil", + "asparagus spears", + "lime leaves" + ] + }, + { + "id": 3430, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "mushrooms", + "paprika", + "salt", + "dried oregano", + "ground black pepper", + "chili powder", + "linguine", + "fresh parsley", + "olive oil", + "chicken breasts", + "yellow bell pepper", + "red bell pepper", + "skim milk", + "cooking spray", + "spices", + "garlic", + "onions" + ] + }, + { + "id": 8723, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "potatoes", + "onions", + "eggs", + "all-purpose flour", + "green onions", + "canola oil" + ] + }, + { + "id": 22603, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "tomato basil sauce", + "chicken breast tenders", + "fresh parmesan cheese", + "provolone cheese", + "olive oil", + "dry bread crumbs", + "dried basil", + "balsamic vinegar", + "fresh parsley" + ] + }, + { + "id": 4467, + "cuisine": "italian", + "ingredients": [ + "water", + "dry red wine", + "low sodium soy sauce", + "olive oil", + "honey", + "onions", + "rosemary sprigs", + "balsamic vinegar" + ] + }, + { + "id": 35429, + "cuisine": "french", + "ingredients": [ + "baking soda", + "baking powder", + "salt", + "unsweetened cocoa powder", + "water", + "large eggs", + "whipping cream", + "unsweetened chocolate", + "sugar", + "unsalted butter", + "all purpose unbleached flour", + "cognac", + "milk chocolate", + "semisweet chocolate", + "buttermilk", + "pitted prunes" + ] + }, + { + "id": 39315, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "lasagna noodles", + "salt", + "spinach", + "ground nutmeg", + "Alfredo sauce", + "eggs", + "olive oil", + "grated parmesan cheese", + "onions", + "pesto", + "ground black pepper", + "ricotta cheese" + ] + }, + { + "id": 33686, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "garam masala", + "tumeric", + "sea salt", + "pepper flakes", + "minced onion", + "red lentils", + "water", + "diced tomatoes" + ] + }, + { + "id": 33290, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped green bell pepper", + "vegetable oil", + "chopped onion", + "chicken broth", + "bay leaves", + "creole seasoning", + "chopped parsley", + "flour", + "chopped celery", + "smoked paprika", + "lean ground pork", + "green onions", + "rice" + ] + }, + { + "id": 39478, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "almonds", + "vanilla extract", + "confectioners sugar", + "sliced almonds", + "egg yolks", + "orange juice", + "water", + "cinnamon", + "ground cardamom", + "phyllo dough", + "unsalted butter", + "orange flower water", + "grated orange" + ] + }, + { + "id": 18656, + "cuisine": "french", + "ingredients": [ + "milk", + "large eggs", + "flour for dusting", + "finely chopped onion", + "fresh tarragon", + "unsalted butter", + "frozen pastry puff sheets", + "large shrimp", + "black pepper", + "medium dry sherry", + "salt" + ] + }, + { + "id": 545, + "cuisine": "chinese", + "ingredients": [ + "zucchini", + "chili powder", + "tomatoes", + "green onions", + "salt", + "flour", + "garlic", + "green bell pepper, slice", + "chicken breasts", + "oil" + ] + }, + { + "id": 15454, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "ground pepper", + "kale", + "grated lemon zest", + "coarse salt" + ] + }, + { + "id": 31389, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "black beans", + "cumin", + "lime", + "salad", + "green chilies" + ] + }, + { + "id": 41259, + "cuisine": "cajun_creole", + "ingredients": [ + "capers", + "red wine vinegar", + "rolls", + "giardiniera", + "roasted red peppers", + "soppressata", + "oil", + "capicola", + "extra-virgin olive oil", + "provolone cheese", + "parsley leaves", + "mortadella", + "garlic cloves" + ] + }, + { + "id": 20006, + "cuisine": "filipino", + "ingredients": [ + "evaporated milk", + "vegetable oil", + "cake flour", + "white sugar", + "cream of tartar", + "egg whites", + "butter", + "salt", + "greater yam", + "food colouring", + "egg yolks", + "red food coloring", + "corn syrup", + "milk", + "baking powder", + "vanilla extract", + "preserves" + ] + }, + { + "id": 49179, + "cuisine": "filipino", + "ingredients": [ + "dry white wine", + "yellow onion", + "heavy cream", + "sliced mushrooms", + "butter", + "bone-in pork chops", + "olive oil", + "salt" + ] + }, + { + "id": 38350, + "cuisine": "italian", + "ingredients": [ + "lemon", + "angel hair", + "garlic", + "basil", + "pepper", + "garlic salt" + ] + }, + { + "id": 27929, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "cumin", + "garlic powder", + "all-purpose flour", + "salt", + "canola oil", + "Mexican oregano", + "beef broth" + ] + }, + { + "id": 31291, + "cuisine": "southern_us", + "ingredients": [ + "cocktail sauce", + "tiger prawn", + "old bay seasoning", + "water" + ] + }, + { + "id": 14533, + "cuisine": "moroccan", + "ingredients": [ + "bell pepper", + "garlic", + "freshly ground pepper", + "coriander seeds", + "paprika", + "cayenne pepper", + "caraway seeds", + "diced tomatoes", + "salt", + "large eggs", + "extra-virgin olive oil", + "chickpeas" + ] + }, + { + "id": 32049, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "cachaca", + "lime", + "ice cubes" + ] + }, + { + "id": 35538, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "mustard seeds", + "water", + "ground coriander", + "ghee", + "tumeric", + "salt", + "ground cayenne pepper", + "potatoes", + "cumin seed", + "frozen peas" + ] + }, + { + "id": 34259, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "curry", + "onions", + "potatoes", + "oil", + "water", + "salt", + "chicken", + "garlic", + "thyme" + ] + }, + { + "id": 20976, + "cuisine": "italian", + "ingredients": [ + "eggs", + "lasagna noodles", + "shredded parmesan cheese", + "pepper", + "garlic", + "flat leaf parsley", + "pasta sauce", + "ricotta cheese", + "shredded mozzarella cheese", + "dried basil", + "salt", + "dried oregano" + ] + }, + { + "id": 16230, + "cuisine": "thai", + "ingredients": [ + "mint", + "honey", + "pak choi", + "soba", + "soy sauce", + "chicken carcass", + "beansprouts", + "red chili peppers", + "spring onions", + "garlic cloves", + "lime", + "ginger", + "peppercorns" + ] + }, + { + "id": 14075, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "sweet potatoes", + "coconut oil", + "cinnamon", + "agave nectar" + ] + }, + { + "id": 31120, + "cuisine": "french", + "ingredients": [ + "sugar", + "walnuts", + "water" + ] + }, + { + "id": 32888, + "cuisine": "italian", + "ingredients": [ + "spinach", + "apple cider vinegar", + "black olives", + "plum tomatoes", + "zucchini", + "red pepper", + "herbes de provence", + "cherry tomatoes", + "gluten-free spaghetti", + "salt", + "tomato purée", + "jalapeno chilies", + "brown rice spaghetti", + "yellow peppers" + ] + }, + { + "id": 3880, + "cuisine": "mexican", + "ingredients": [ + "water", + "radishes", + "lime wedges", + "onions", + "ground cumin", + "olive oil", + "guacamole", + "salt", + "dried oregano", + "pork sirloin roast", + "ground pepper", + "chili powder", + "corn tortillas", + "chopped garlic", + "fresh cilantro", + "jalapeno chilies", + "queso fresco", + "chopped cilantro fresh" + ] + }, + { + "id": 26438, + "cuisine": "indian", + "ingredients": [ + "light coconut milk", + "vanilla lowfat yogurt", + "ice cubes", + "crushed pineapples in juice", + "fresh ginger" + ] + }, + { + "id": 5977, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "processed cheese", + "condensed golden mushroom soup" + ] + }, + { + "id": 24525, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "dried oregano", + "capers", + "Italian seasoned breadcrumbs", + "eggs", + "kalamata", + "feta cheese", + "ground beef" + ] + }, + { + "id": 43626, + "cuisine": "indian", + "ingredients": [ + "salt", + "chicken stock", + "basmati rice", + "extra-virgin olive oil", + "saffron threads", + "yellow onion" + ] + }, + { + "id": 45451, + "cuisine": "british", + "ingredients": [ + "brandy", + "whole grain mustard", + "unsalted butter", + "fingerling potatoes", + "coarse sea salt", + "walnuts", + "puff pastry", + "white button mushrooms", + "pomegranate seeds", + "prosciutto", + "large eggs", + "shallots", + "extra-virgin olive oil", + "thyme sprigs", + "sage", + "rosemary sprigs", + "honey", + "ground black pepper", + "flour", + "balsamic vinegar", + "beef tenderloin", + "low sodium beef stock", + "green peppercorns", + "kosher salt", + "parmesan cheese", + "dijon mustard", + "chives", + "heavy cream", + "garlic cloves", + "greens" + ] + }, + { + "id": 3781, + "cuisine": "british", + "ingredients": [ + "free range egg", + "beef drippings", + "white flour", + "whole milk" + ] + }, + { + "id": 48282, + "cuisine": "mexican", + "ingredients": [ + "bouillon", + "lime juice", + "chicken breast halves", + "all-purpose flour", + "chipotles in adobo", + "white pepper", + "asadero", + "linguine", + "chopped parsley", + "low-fat sour cream", + "large egg whites", + "vegetable oil", + "hot water", + "avocado", + "seasoned bread crumbs", + "cooking spray", + "salt", + "ripe olives" + ] + }, + { + "id": 44574, + "cuisine": "southern_us", + "ingredients": [ + "molasses", + "light corn syrup", + "pecans", + "bourbon whiskey", + "salt", + "eggs", + "bittersweet chocolate chips", + "vanilla", + "brown sugar", + "butter", + "pie shell" + ] + }, + { + "id": 48109, + "cuisine": "french", + "ingredients": [ + "butter", + "water", + "salt", + "sugar", + "1% low-fat milk", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 5541, + "cuisine": "greek", + "ingredients": [ + "plain yogurt", + "fresh lemon juice", + "extra-virgin olive oil", + "pita loaves", + "cucumber", + "fresh dill", + "garlic cloves" + ] + }, + { + "id": 22314, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "sugar", + "peach slices", + "fat free ice cream", + "hazelnuts", + "bittersweet chocolate" + ] + }, + { + "id": 38006, + "cuisine": "russian", + "ingredients": [ + "tomato paste", + "kosher salt", + "red cabbage", + "chopped onion", + "sour cream", + "fresh dill", + "water", + "baking potatoes", + "garlic cloves", + "canola oil", + "parsnips", + "cider vinegar", + "light beer", + "beets", + "celery root", + "sugar", + "ground black pepper", + "button mushrooms", + "carrots" + ] + }, + { + "id": 39264, + "cuisine": "korean", + "ingredients": [ + "roasted sesame seeds", + "zucchini", + "sesame oil", + "Gochujang base", + "beansprouts", + "snow peas", + "soy sauce", + "shiitake", + "egg yolks", + "ginger", + "scallions", + "toasted sesame oil", + "sugar", + "sesame seeds", + "cress", + "vegetable oil", + "minced beef", + "kimchi", + "baby spinach leaves", + "mirin", + "black sesame seeds", + "garlic", + "carrots", + "cooked white rice" + ] + }, + { + "id": 34896, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "cooked chicken", + "yellow onion", + "fresh parsley", + "unsalted butter", + "salt", + "green beans", + "pepper", + "baking powder", + "carrots", + "whole milk", + "all-purpose flour", + "celery" + ] + }, + { + "id": 34111, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "chopped green bell pepper", + "butter", + "garlic cloves", + "grits", + "prosciutto", + "shallots", + "chopped celery", + "heavy whipping cream", + "verjuice", + "water", + "chopped fresh chives", + "cooked bacon", + "fresh lemon juice", + "large shrimp", + "chicken broth", + "ground black pepper", + "chopped fresh thyme", + "salt", + "fresh parsley" + ] + }, + { + "id": 14089, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "lemongrass", + "chopped cilantro", + "red chili peppers", + "boneless skinless chicken breasts", + "canned low sodium chicken broth", + "peeled fresh ginger", + "asian fish sauce", + "lime juice", + "long-grain rice" + ] + }, + { + "id": 44450, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "salt", + "manchego cheese", + "extra-virgin olive oil", + "serrano ham", + "roasted red peppers", + "yellow onion", + "eggs", + "russet potatoes", + "fresh parsley leaves" + ] + }, + { + "id": 2098, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "crushed ice", + "bourbon whiskey", + "mint sprigs", + "water" + ] + }, + { + "id": 33655, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "crushed red pepper", + "fresh basil", + "cooking spray", + "frozen chopped spinach", + "marinara sauce", + "polenta", + "large egg whites", + "part-skim ricotta cheese" + ] + }, + { + "id": 7613, + "cuisine": "brazilian", + "ingredients": [ + "black beans", + "bacon", + "fresh parsley", + "water", + "salt", + "tomatoes", + "olive oil", + "carrots", + "pepper", + "garlic", + "onions" + ] + }, + { + "id": 12700, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "ground pepper", + "garlic cloves", + "cider vinegar", + "fresh oregano", + "olive oil", + "mixed greens", + "fresh basil", + "salt" + ] + }, + { + "id": 27029, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "milk", + "baking powder", + "salt", + "corn starch", + "water", + "instant yeast", + "star anise", + "oil", + "pork butt", + "soy sauce", + "lime", + "vegetable oil", + "all-purpose flour", + "onions", + "steamer", + "vinegar", + "garlic", + "oyster sauce" + ] + }, + { + "id": 24866, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "chile paste", + "cumin seed", + "boneless skinless chicken breast halves", + "pepper", + "salt", + "chopped cilantro", + "brown sugar", + "vegetable oil", + "coconut milk", + "ground turmeric", + "water", + "cayenne pepper", + "onions" + ] + }, + { + "id": 32469, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "all-purpose flour", + "tomatoes", + "finely chopped onion", + "ricotta", + "frozen chopped spinach", + "large egg yolks", + "grated nutmeg", + "olive oil", + "dry red wine", + "garlic cloves" + ] + }, + { + "id": 37859, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "butter", + "cheddar cheese", + "cooked chicken", + "garlic", + "green bell pepper", + "flour", + "dry mustard", + "penne", + "cajun seasoning" + ] + }, + { + "id": 26807, + "cuisine": "japanese", + "ingredients": [ + "wheat flour", + "jaggery", + "ghee" + ] + }, + { + "id": 49194, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "self rising flour", + "whipping cream" + ] + }, + { + "id": 28696, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "garlic cloves", + "yellow onion", + "cumin seed", + "water", + "ancho chile pepper" + ] + }, + { + "id": 45657, + "cuisine": "irish", + "ingredients": [ + "raspberry jam", + "tart shells", + "almond extract", + "sliced almonds", + "large eggs", + "orange zest", + "sugar", + "unsalted butter", + "all-purpose flour", + "large egg whites", + "chopped almonds" + ] + }, + { + "id": 6607, + "cuisine": "mexican", + "ingredients": [ + "flour", + "green chilies", + "chicken broth", + "vegetable oil", + "onions", + "chicken breasts", + "sour cream", + "flour tortillas", + "butter", + "monterey jack" + ] + }, + { + "id": 13482, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "jalapeno chilies", + "garlic", + "lime", + "cilantro", + "ear of corn", + "pepper", + "green onions", + "salt", + "olive oil", + "yellow bell pepper" + ] + }, + { + "id": 28499, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "chickpeas", + "curry powder", + "tomatoes with juice", + "onions", + "ground chicken", + "fat free greek yogurt", + "chopped cilantro", + "olive oil", + "salt" + ] + }, + { + "id": 22743, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper flakes", + "flat leaf parsley", + "kosher salt", + "penne pasta", + "pasta", + "extra-virgin olive oil", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 522, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "heavy cream", + "cider vinegar", + "golden delicious apples", + "onions", + "brown sugar", + "Turkish bay leaves", + "brats", + "unsalted butter", + "vegetable oil" + ] + }, + { + "id": 32669, + "cuisine": "british", + "ingredients": [ + "eggs", + "mustard powder", + "olive oil", + "onions", + "all-purpose flour", + "milk", + "sausages" + ] + }, + { + "id": 43113, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "salt", + "black pepper", + "baby back ribs", + "molasses", + "chopped onion", + "light brown sugar", + "cider vinegar", + "chopped garlic" + ] + }, + { + "id": 15243, + "cuisine": "cajun_creole", + "ingredients": [ + "black peppercorns", + "salt", + "boneless chicken breast", + "coriander seeds", + "thyme sprigs", + "clove", + "bay leaves" + ] + }, + { + "id": 44855, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "salt", + "tomato sauce", + "fat-free cottage cheese", + "onions", + "tomato paste", + "lasagna noodles", + "ground turkey", + "garlic powder", + "nonfat mozzarella cheese", + "oregano" + ] + }, + { + "id": 41199, + "cuisine": "brazilian", + "ingredients": [ + "kosher salt", + "purple onion", + "scotch bonnet chile", + "dried shrimp", + "black-eyed peas", + "crabmeat", + "mayonaise", + "cracked black pepper", + "canola oil" + ] + }, + { + "id": 22014, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "orange juice", + "pork butt", + "water", + "vegetable oil", + "ancho chile pepper", + "ground cumin", + "ground black pepper", + "sea salt", + "flat leaf parsley", + "white onion", + "apple cider vinegar", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 7283, + "cuisine": "chinese", + "ingredients": [ + "medium shrimp uncook", + "sesame oil", + "corn starch", + "peeled fresh ginger", + "salt", + "low salt chicken broth", + "large egg whites", + "green onions", + "peanut oil", + "Shaoxing wine", + "green peas", + "ground white pepper" + ] + }, + { + "id": 9353, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "corn starch", + "fresh ginger", + "watercress", + "white pepper", + "wonton wrappers", + "chicken stock", + "prawns", + "salt" + ] + }, + { + "id": 962, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "unsalted butter", + "salt", + "ground cinnamon", + "whole milk", + "ground allspice", + "light brown sugar", + "sweet potatoes", + "all-purpose flour", + "water", + "baking powder", + "cane syrup" + ] + }, + { + "id": 39917, + "cuisine": "mexican", + "ingredients": [ + "instant rice", + "olive oil", + "cooked chicken", + "salt", + "ground cumin", + "chicken stock", + "black beans", + "diced green chilies", + "rotelle", + "onions", + "fresh corn", + "lime", + "bell pepper", + "crushed red pepper flakes", + "dried oregano", + "black pepper", + "garlic powder", + "chili powder", + "soft corn tortillas" + ] + }, + { + "id": 31723, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "bay leaves", + "extra-virgin olive oil", + "thyme sprigs", + "reduced sodium chicken broth", + "diced tomatoes", + "carrots", + "armagnac", + "clove", + "large garlic cloves", + "white beans", + "onions", + "water", + "confit duck leg", + "flat leaf parsley" + ] + }, + { + "id": 39376, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "onions", + "water", + "hot Italian sausages", + "chicken breasts", + "medium shrimp", + "cooked rice", + "diced tomatoes" + ] + }, + { + "id": 20365, + "cuisine": "spanish", + "ingredients": [ + "green olives", + "purple onion", + "chopped parsley", + "diced tomatoes", + "spanish paprika", + "water", + "cayenne pepper", + "bay leaf", + "red potato", + "garlic", + "oil" + ] + }, + { + "id": 28745, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "onions", + "red kidney beans", + "chili powder", + "chip plain tortilla", + "ragu old world style pasta sauc", + "ground beef" + ] + }, + { + "id": 47450, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "coconut", + "salsa", + "cooked quinoa", + "cheddar cheese", + "red pepper", + "smoked paprika", + "avocado", + "large eggs", + "taco seasoning", + "onions", + "black beans", + "garlic", + "gluten-free breadcrumbs" + ] + }, + { + "id": 47030, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "cayenne pepper", + "fresh marjoram", + "salt", + "canola oil", + "ground black pepper", + "all-purpose flour", + "chicken", + "paprika", + "ear of corn" + ] + }, + { + "id": 20456, + "cuisine": "cajun_creole", + "ingredients": [ + "crab", + "ground black pepper", + "cajun seasoning", + "yellow onion", + "long grain white rice", + "kosher salt", + "gumbo file", + "all-purpose flour", + "crabmeat", + "shrimp stock", + "minced garlic", + "bay leaves", + "onion tops", + "diced celery", + "diced bell pepper", + "oysters", + "vegetable oil", + "hot sauce", + "shrimp" + ] + }, + { + "id": 11087, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "zucchini", + "garlic", + "ancho chile pepper", + "oregano", + "bread", + "white onion", + "cinnamon", + "white mushrooms", + "unhulled sesame seeds", + "allspice", + "cocoa", + "vegetable oil", + "salt", + "corn tortillas", + "cumin", + "sugar", + "kosher salt", + "vegetable broth", + "white cheese", + "pasilla pepper" + ] + }, + { + "id": 8016, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "cilantro leaves", + "spring onions", + "green chilies", + "sesame seeds", + "sweet corn", + "shortcrust pastry", + "mature cheddar" + ] + }, + { + "id": 22484, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "condensed cheddar cheese soup", + "tortilla chips", + "cooked turkey" + ] + }, + { + "id": 20324, + "cuisine": "japanese", + "ingredients": [ + "shiro miso", + "sesame seeds", + "nori", + "spinach", + "butter", + "sliced green onions", + "eggs", + "ramen noodles", + "chicken", + "chicken stock", + "corn", + "onions" + ] + }, + { + "id": 14042, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "chopped cilantro fresh", + "onion powder", + "flavoring", + "garlic powder", + "cayenne pepper", + "vegetable oil", + "tequila" + ] + }, + { + "id": 8329, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "ground red pepper", + "beef broth", + "onions", + "water", + "worcestershire sauce", + "garlic cloves", + "green bell pepper", + "lean ground beef", + "rice", + "ground black pepper", + "salt", + "fresh parsley" + ] + }, + { + "id": 15492, + "cuisine": "moroccan", + "ingredients": [ + "capers", + "pitted green olives", + "ground coriander", + "ground cumin", + "kosher salt", + "extra-virgin olive oil", + "carrots", + "sugar", + "ginger", + "fresh parsley leaves", + "harissa", + "garlic", + "naan" + ] + }, + { + "id": 12674, + "cuisine": "french", + "ingredients": [ + "water", + "whole milk", + "all-purpose flour", + "pitted kalamata olives", + "olive oil", + "butter", + "active dry yeast", + "chopped fresh thyme", + "sugar", + "egg whites", + "salt" + ] + }, + { + "id": 395, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "red pepper flakes", + "chopped onion", + "fresh parsley", + "boneless pork shoulder", + "pork liver", + "salt", + "celery", + "hog casings", + "ground black pepper", + "white rice", + "red bell pepper", + "minced garlic", + "green onions", + "cayenne pepper", + "chopped cilantro" + ] + }, + { + "id": 39286, + "cuisine": "italian", + "ingredients": [ + "spinach leaves", + "baked pizza crust", + "olive oil", + "soft fresh goat cheese", + "fresh rosemary", + "fresh lemon juice", + "crushed red pepper", + "grated lemon peel" + ] + }, + { + "id": 35380, + "cuisine": "japanese", + "ingredients": [ + "reduced sodium soy sauce", + "lemon", + "freshly ground pepper", + "fresh chives", + "sweet soy sauce", + "beef tenderloin", + "canola oil", + "turbinado", + "mirin", + "large garlic cloves", + "fresh lemon juice", + "fresh ginger", + "green onions", + "rice vinegar" + ] + }, + { + "id": 22571, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "tortillas", + "red pepper", + "chopped cilantro", + "shredded cheddar cheese", + "sweet potatoes", + "salt", + "shredded Monterey Jack cheese", + "black beans", + "jalapeno chilies", + "purple onion", + "cumin", + "olive oil", + "chili powder", + "fresh lime juice" + ] + }, + { + "id": 5910, + "cuisine": "french", + "ingredients": [ + "frozen pastry puff sheets", + "brie cheese", + "bourbon whiskey", + "crackers", + "sliced apples", + "chopped pecans", + "sliced pears", + "Domino Light Brown Sugar" + ] + }, + { + "id": 16668, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "garlic cloves", + "kalamata", + "purple onion", + "flat leaf parsley", + "capers", + "crushed red pepper", + "fresh lemon juice", + "yellow bell pepper", + "fresh oregano", + "plum tomatoes" + ] + }, + { + "id": 3172, + "cuisine": "jamaican", + "ingredients": [ + "curry powder", + "red pepper flakes", + "garlic", + "scallions", + "unsweetened coconut milk", + "ground black pepper", + "extra-virgin olive oil", + "baby carrots", + "dried thyme", + "diced tomatoes", + "salt", + "red kidney beans", + "sweet potatoes", + "vegetable broth", + "ground allspice" + ] + }, + { + "id": 10313, + "cuisine": "italian", + "ingredients": [ + "spinach", + "parmesan cheese", + "pinenuts", + "fresh basil leaves", + "pasta sauce", + "salad leaves", + "mozzarella cheese" + ] + }, + { + "id": 29283, + "cuisine": "moroccan", + "ingredients": [ + "chicken legs", + "black pepper", + "paprika", + "saffron", + "diced onions", + "preserved lemon", + "minced garlic", + "ground coriander", + "ground cumin", + "green olives", + "kosher salt", + "cayenne pepper", + "canola oil", + "chicken stock", + "tumeric", + "minced ginger", + "chopped cilantro" + ] + }, + { + "id": 20258, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "sun-dried tomatoes in oil", + "shredded swiss cheese", + "arborio rice" + ] + }, + { + "id": 3380, + "cuisine": "greek", + "ingredients": [ + "pepper", + "lemon", + "garlic cloves", + "sugar pea", + "field lettuce", + "new york strip steaks", + "feta cheese", + "extra-virgin olive oil", + "lemon juice", + "kosher salt", + "mint leaves", + "persian cucumber" + ] + }, + { + "id": 23117, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "granulated sugar", + "vanilla beans", + "water", + "whole milk", + "large egg yolks" + ] + }, + { + "id": 42968, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "minced garlic", + "diced tomatoes", + "pork roast", + "onions", + "collard greens", + "black pepper", + "minced ginger", + "salt", + "thyme", + "red chili powder", + "cider vinegar", + "worcestershire sauce", + "poultry seasoning", + "cinnamon sticks", + "soy sauce", + "water", + "peas", + "oil", + "ground cumin" + ] + }, + { + "id": 10780, + "cuisine": "vietnamese", + "ingredients": [ + "white pepper", + "cornflour", + "vegetable oil", + "garlic", + "chicken stock", + "sirloin steak", + "onions", + "soy sauce", + "fresh green bean" + ] + }, + { + "id": 1586, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "corn chips", + "black beans", + "salad dressing", + "romaine lettuce", + "pinto beans", + "shredded cheddar cheese" + ] + }, + { + "id": 31091, + "cuisine": "russian", + "ingredients": [ + "capsicum", + "lemon juice", + "ground cumin", + "chat masala", + "salt", + "onions", + "low-fat plain yogurt", + "chili powder", + "fillets", + "olive oil", + "gingerroot", + "chopped garlic" + ] + }, + { + "id": 48371, + "cuisine": "jamaican", + "ingredients": [ + "dried thyme", + "chicken drumsticks", + "ground allspice", + "black beans", + "red pepper flakes", + "garlic", + "black pepper", + "olive oil", + "diced tomatoes", + "onions", + "curry powder", + "red wine", + "salt" + ] + }, + { + "id": 19261, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic", + "creole seasoning", + "grits", + "olive oil", + "salt", + "medium shrimp", + "reduced sodium chicken broth", + "sweet pepper", + "chopped onion", + "ground black pepper", + "all-purpose flour", + "fresh asparagus" + ] + }, + { + "id": 8388, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "sliced mushrooms", + "marsala wine", + "salt", + "boneless skinless chicken breast halves", + "olive oil", + "all-purpose flour", + "dried oregano", + "butter", + "cooking sherry" + ] + }, + { + "id": 17967, + "cuisine": "french", + "ingredients": [ + "yellow squash", + "mushrooms", + "garlic cloves", + "black pepper", + "eggplant", + "salt", + "onions", + "fresh basil", + "olive oil", + "diced tomatoes", + "couscous", + "dried basil", + "chopped green bell pepper", + "chickpeas" + ] + }, + { + "id": 29467, + "cuisine": "mexican", + "ingredients": [ + "button mushrooms", + "carrots", + "zucchini", + "broccoli", + "shredded Monterey Jack cheese", + "shredded sharp cheddar cheese", + "red bell pepper", + "flour tortillas", + "yellow onion" + ] + }, + { + "id": 19560, + "cuisine": "russian", + "ingredients": [ + "sugar", + "cream cheese", + "butter", + "eggs", + "whipped cream", + "flour", + "condensed milk" + ] + }, + { + "id": 40696, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "chickpeas", + "onions", + "butter", + "carrots", + "vegetable stock", + "lemon juice", + "pepper", + "salt", + "bay leaf" + ] + }, + { + "id": 35897, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "lemon", + "greek yogurt", + "mayonaise", + "jalapeno chilies", + "salt", + "chopped cilantro fresh", + "fresh ginger root", + "turkey", + "cashew nuts", + "olive oil", + "green onions", + "cumin seed" + ] + }, + { + "id": 38590, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "crushed ice", + "sugar cane", + "lime", + "cachaca", + "ginger" + ] + }, + { + "id": 2252, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "chopped fresh mint", + "baguette", + "shallots", + "mussels", + "dry white wine", + "curry powder", + "whipping cream" + ] + }, + { + "id": 43348, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "paprika", + "salsa", + "cumin", + "olive oil", + "purple onion", + "sour cream", + "black beans", + "cilantro", + "hot sauce", + "pepper jack", + "salt", + "corn tortillas" + ] + }, + { + "id": 5046, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "mirin", + "kosher salt", + "fish", + "sugar", + "marinade", + "dashi" + ] + }, + { + "id": 44939, + "cuisine": "moroccan", + "ingredients": [ + "water", + "lemon", + "kosher salt" + ] + }, + { + "id": 49171, + "cuisine": "greek", + "ingredients": [ + "sugar", + "balsamic vinegar", + "lemon juice", + "plum tomatoes", + "pita wedges", + "ground pepper", + "salt", + "cucumber", + "artichoke hearts", + "pitted olives", + "feta cheese crumbles", + "green bell pepper", + "green leaf lettuce", + "fresh oregano", + "onions" + ] + }, + { + "id": 19244, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "almonds", + "scallions", + "cumin", + "sugar", + "olive oil", + "salt", + "greens", + "curry powder", + "boneless chicken breast", + "pearl couscous", + "mango", + "spinach", + "honey", + "golden raisins", + "lemon juice" + ] + }, + { + "id": 46944, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "onions", + "water", + "condensed cream of mushroom soup", + "tomato sauce", + "processed cheese", + "flour tortillas", + "ground beef" + ] + }, + { + "id": 39433, + "cuisine": "spanish", + "ingredients": [ + "pimentos", + "orange juice", + "rioja", + "black pepper", + "salt", + "wild rice", + "bay leaf", + "dried thyme", + "all-purpose flour", + "pitted prunes", + "fresh parsley", + "honey", + "grated lemon zest", + "garlic cloves", + "chicken thighs" + ] + }, + { + "id": 14638, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "cutlet", + "chipotle chile powder", + "olive oil", + "salt", + "ground cumin", + "fat free less sodium chicken broth", + "stewed tomatoes", + "unsweetened cocoa powder", + "sesame seeds", + "chopped onion" + ] + }, + { + "id": 32232, + "cuisine": "indian", + "ingredients": [ + "curry paste", + "spinach", + "lamb leg steaks", + "basmati rice", + "lamb stock" + ] + }, + { + "id": 15369, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "cookies", + "marshmallow creme", + "unsweetened cocoa powder", + "coffee granules", + "corn starch", + "semi-sweet chocolate morsels", + "milk", + "cream cheese", + "white sugar", + "eggs", + "vanilla extract", + "chopped pecans" + ] + }, + { + "id": 10938, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "orange juice", + "chopped garlic", + "ground pepper", + "dried oregano", + "lime juice", + "pork shoulder", + "liquid", + "cumin" + ] + }, + { + "id": 18697, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "minced garlic", + "vegetable oil", + "cooked shrimp", + "cumin", + "plain yogurt", + "ground black pepper", + "salsa", + "garlic salt", + "shredded cheddar cheese", + "flour tortillas", + "chopped onion", + "long grain white rice", + "mayonaise", + "refried beans", + "diced tomatoes", + "chipotles in adobo" + ] + }, + { + "id": 16241, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "vanilla extract", + "baking powder", + "all-purpose flour", + "butter", + "toasted pecans", + "salt" + ] + }, + { + "id": 16569, + "cuisine": "irish", + "ingredients": [ + "cinnamon", + "confectioners sugar", + "superfine sugar", + "margarine", + "eggs", + "ginger", + "self rising flour", + "cardamom" + ] + }, + { + "id": 18228, + "cuisine": "southern_us", + "ingredients": [ + "green tomatoes", + "salt", + "sweet onion", + "crushed red pepper", + "sugar", + "dry mustard", + "white vinegar", + "tomatillos", + "garlic cloves" + ] + }, + { + "id": 38365, + "cuisine": "french", + "ingredients": [ + "flour", + "garlic", + "bay leaf", + "parsley flakes", + "meat", + "scallions", + "marjoram", + "mushrooms", + "salt", + "Burgundy wine", + "pepper", + "sliced carrots", + "oil", + "chicken" + ] + }, + { + "id": 1887, + "cuisine": "filipino", + "ingredients": [ + "red chili peppers", + "shrimp", + "water", + "onions", + "jackfruit", + "coconut milk", + "tomatoes", + "crushed garlic", + "smoked & dried fish" + ] + }, + { + "id": 27124, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "dried oregano", + "hot red pepper flakes", + "extra-virgin olive oil", + "capers", + "large garlic cloves", + "pitted kalamata olives", + "pimento stuffed green olives" + ] + }, + { + "id": 984, + "cuisine": "indian", + "ingredients": [ + "water", + "mushrooms", + "salt", + "ground turmeric", + "finely chopped onion", + "golden raisins", + "garlic cloves", + "ground cumin", + "ground black pepper", + "peeled fresh ginger", + "ground coriander", + "canola oil", + "plain low-fat yogurt", + "cooking spray", + "purple onion", + "basmati rice" + ] + }, + { + "id": 21638, + "cuisine": "indian", + "ingredients": [ + "rose water", + "blanched almonds", + "pistachio nuts", + "white sugar", + "half & half", + "ground cardamom", + "whole milk ricotta cheese", + "saffron" + ] + }, + { + "id": 38758, + "cuisine": "cajun_creole", + "ingredients": [ + "low sodium chicken broth", + "garlic", + "celery", + "sausage links", + "cajun seasoning", + "hot sauce", + "dried oregano", + "green bell pepper", + "brown rice", + "salt", + "onions", + "dried thyme", + "diced tomatoes", + "shrimp" + ] + }, + { + "id": 24085, + "cuisine": "italian", + "ingredients": [ + "pesto", + "grated parmesan cheese", + "lemon juice", + "green bell pepper", + "olive oil", + "garlic", + "onions", + "scallops", + "dry white wine", + "sliced mushrooms", + "fettuccine pasta", + "ground black pepper", + "salt" + ] + }, + { + "id": 12396, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "boneless skinless chicken breasts", + "reduced fat cheddar cheese", + "chipotle salsa", + "tomatoes", + "non-fat sour cream", + "flour tortillas", + "chopped cilantro fresh" + ] + }, + { + "id": 47752, + "cuisine": "british", + "ingredients": [ + "tomato purée", + "ground black pepper", + "beef stock", + "garlic cloves", + "bay leaf", + "cold water", + "brown ale", + "chestnut mushrooms", + "butter", + "celery", + "free-range eggs", + "braising steak", + "unsalted butter", + "balsamic vinegar", + "carrots", + "onions", + "plain flour", + "olive oil", + "fine salt", + "salt", + "thyme sprigs" + ] + }, + { + "id": 46263, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "baking soda", + "garlic", + "white sugar", + "tomato sauce", + "whole peeled tomatoes", + "sliced mushrooms", + "fresh basil", + "ground black pepper", + "salt", + "water", + "grated parmesan cheese", + "onions" + ] + }, + { + "id": 24768, + "cuisine": "moroccan", + "ingredients": [ + "mint leaves", + "green tea", + "water", + "whole cloves" + ] + }, + { + "id": 39826, + "cuisine": "cajun_creole", + "ingredients": [ + "hot sauce", + "green onions", + "pickle relish", + "capers", + "fresh parsley", + "mustard", + "reduced fat mayonnaise" + ] + }, + { + "id": 36905, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "baking powder", + "white sugar", + "eggs", + "all-purpose flour", + "anise seed", + "salt", + "brandy", + "lard" + ] + }, + { + "id": 43480, + "cuisine": "greek", + "ingredients": [ + "hamburger buns", + "diced tomatoes", + "chopped fresh mint", + "egg whites", + "lemon juice", + "pepper", + "sauce", + "ground lamb", + "frozen chopped spinach", + "cooking spray", + "feta cheese crumbles" + ] + }, + { + "id": 36027, + "cuisine": "mexican", + "ingredients": [ + "fresh corn", + "olive oil", + "greek style plain yogurt", + "fresh cilantro", + "chili powder", + "pepper", + "grated parmesan cheese", + "lime", + "salt" + ] + }, + { + "id": 18663, + "cuisine": "italian", + "ingredients": [ + "hungarian sweet paprika", + "olive oil", + "frozen whole kernel corn", + "non-fat sour cream", + "red bell pepper", + "water", + "fresh parmesan cheese", + "basil", + "garlic cloves", + "boiling water", + "fresh basil", + "artichoke hearts", + "butter", + "salt", + "onions", + "yellow corn meal", + "sun-dried tomatoes", + "dry white wine", + "crushed red pepper", + "ripe olives" + ] + }, + { + "id": 32430, + "cuisine": "cajun_creole", + "ingredients": [ + "seasoned bread crumbs", + "egg yolks", + "butter", + "ice cream salt", + "flour", + "shallots", + "cayenne pepper", + "chicken broth", + "grated parmesan cheese", + "dry white wine", + "salt", + "oysters", + "mushrooms", + "shells" + ] + }, + { + "id": 17742, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "ginger", + "pork belly", + "salt", + "sake", + "water", + "oil", + "sugar", + "Tokyo negi" + ] + }, + { + "id": 25442, + "cuisine": "french", + "ingredients": [ + "eggs", + "sherry", + "cognac", + "milk", + "raisins", + "sugar", + "baking powder", + "pitted prunes", + "flour", + "salt" + ] + }, + { + "id": 5950, + "cuisine": "italian", + "ingredients": [ + "cannellini beans", + "garlic cloves", + "rosemary", + "salt", + "water", + "extra-virgin olive oil", + "sage", + "pita chips", + "cayenne pepper" + ] + }, + { + "id": 25425, + "cuisine": "japanese", + "ingredients": [ + "sushi rice", + "worcestershire sauce", + "tomato ketchup", + "onions", + "fish sauce", + "chili paste", + "apples", + "oil", + "pepper", + "peas", + "cardamom pods", + "cumin", + "tumeric", + "mirin", + "salt", + "carrots" + ] + }, + { + "id": 48609, + "cuisine": "mexican", + "ingredients": [ + "capers", + "cinnamon", + "onions", + "red snapper", + "olive oil", + "fresh oregano", + "lime", + "garlic", + "peeled canned low sodium tomatoes", + "green olives", + "jalapeno chilies", + "bay leaf" + ] + }, + { + "id": 9931, + "cuisine": "southern_us", + "ingredients": [ + "cream style corn", + "green onions", + "buttermilk", + "yellow corn meal", + "unsalted butter", + "vegetable shortening", + "red bell pepper", + "hot pepper sauce", + "baking powder", + "salt", + "sugar", + "large eggs", + "all purpose unbleached flour" + ] + }, + { + "id": 19458, + "cuisine": "japanese", + "ingredients": [ + "wasabi", + "sesame seeds", + "cucumber", + "sushi rice", + "rice vinegar", + "sugar", + "sea salt", + "water", + "seaweed" + ] + }, + { + "id": 36580, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "diced tomatoes", + "fresh parsley", + "olive oil", + "celery", + "chopped garlic", + "green bell pepper", + "crushed red pepper flakes", + "onions", + "red wine", + "ground beef" + ] + }, + { + "id": 13312, + "cuisine": "southern_us", + "ingredients": [ + "cream of chicken soup", + "chicken broth", + "cooked chicken", + "refrigerated biscuits", + "pepper" + ] + }, + { + "id": 4263, + "cuisine": "french", + "ingredients": [ + "all purpose unbleached flour", + "cane sugar", + "powdered sugar", + "beaten eggs", + "apples", + "butter", + "salt" + ] + }, + { + "id": 32191, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "balsamic vinegar", + "olive oil", + "kosher salt", + "filet", + "mustard", + "baby arugula" + ] + }, + { + "id": 43368, + "cuisine": "italian", + "ingredients": [ + "Italian parsley leaves", + "tuna packed in olive oil", + "extra-virgin olive oil", + "green beans", + "anchovy paste", + "fresh lemon juice", + "water", + "brine-cured black olives" + ] + }, + { + "id": 42559, + "cuisine": "thai", + "ingredients": [ + "Sriracha", + "chopped cilantro fresh", + "soy sauce", + "garlic cloves", + "unsweetened coconut milk", + "creamy peanut butter", + "fresh ginger", + "fresh lime juice" + ] + }, + { + "id": 21877, + "cuisine": "indian", + "ingredients": [ + "bhaji", + "oil", + "wheat", + "water", + "salt" + ] + }, + { + "id": 31806, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "black pepper", + "large eggs", + "cooking spray", + "red wine", + "carrots", + "cremini mushrooms", + "lower sodium beef broth", + "french bread", + "shallots", + "salt", + "lean ground pork", + "ground black pepper", + "half & half", + "butter", + "all-purpose flour", + "tomato paste", + "kosher salt", + "reduced fat milk", + "ground sirloin", + "ground veal" + ] + }, + { + "id": 19003, + "cuisine": "italian", + "ingredients": [ + "diced tomatoes", + "garlic powder", + "ground beef", + "pasta", + "beef broth", + "grated parmesan cheese", + "italian seasoning" + ] + }, + { + "id": 44616, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "cooking spray", + "all-purpose flour", + "ground cinnamon", + "large eggs", + "butter", + "low-fat buttermilk", + "baking powder", + "sugar", + "dried apricot", + "salt" + ] + }, + { + "id": 18419, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium chicken broth", + "chilegarlic sauce", + "star anise", + "scallions", + "boneless pork shoulder", + "water", + "dry sherry", + "rice vinegar", + "cinnamon sticks", + "Japanese turnips", + "reduced sodium soy sauce", + "garlic", + "corn starch", + "brown sugar", + "fresh ginger", + "anise", + "baby carrots", + "toasted sesame seeds" + ] + }, + { + "id": 7904, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "jalapeno chilies", + "hass avocado", + "lime", + "salt", + "pepper", + "purple onion", + "chopped cilantro", + "olive oil", + "cooked shrimp" + ] + }, + { + "id": 25068, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "roast red peppers, drain", + "extra-virgin olive oil", + "vegetable oil spray", + "fresh lemon juice", + "sea bass fillets", + "low salt chicken broth" + ] + }, + { + "id": 930, + "cuisine": "mexican", + "ingredients": [ + "baby spinach leaves", + "gouda", + "flour tortillas" + ] + }, + { + "id": 8326, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "flour", + "sanding sugar", + "grated nutmeg", + "pie dough", + "cinnamon", + "salt", + "eggs", + "egg yolks", + "vanilla extract", + "granulated sugar", + "buttermilk", + "all-purpose flour" + ] + }, + { + "id": 5855, + "cuisine": "indian", + "ingredients": [ + "zucchini", + "cumin seed", + "canola oil", + "salt", + "onions", + "brown mustard seeds", + "diced tomatoes in juice", + "ground coriander", + "serrano chile" + ] + }, + { + "id": 49253, + "cuisine": "mexican", + "ingredients": [ + "neutral oil", + "ground black pepper", + "tomatillos", + "chipotle peppers", + "ground cumin", + "kosher salt", + "Mexican oregano", + "crema", + "onions", + "pork", + "serrano peppers", + "garlic", + "adobo sauce", + "store bought low sodium chicken stock", + "queso fresco", + "cilantro leaves", + "plum tomatoes" + ] + }, + { + "id": 9023, + "cuisine": "italian", + "ingredients": [ + "pepper flakes", + "unsweetened soymilk", + "garlic cloves", + "frozen chopped spinach", + "manchego cheese", + "whole wheat linguine", + "greek yogurt", + "cottage cheese", + "blue cheese", + "corn starch", + "pasta", + "parmesan cheese", + "salt" + ] + }, + { + "id": 40487, + "cuisine": "mexican", + "ingredients": [ + "orange", + "lard", + "boneless pork shoulder", + "bay leaves", + "ground black pepper", + "onions", + "kosher salt", + "garlic cloves" + ] + }, + { + "id": 37313, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "water", + "rajma", + "red chili peppers", + "urad dal", + "lentils", + "moong dal", + "salt", + "toor dal", + "asafoetida", + "peanuts", + "rice" + ] + }, + { + "id": 26776, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "ground cinnamon", + "butter", + "sugar", + "refrigerated piecrusts" + ] + }, + { + "id": 33524, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "ginger", + "green chilies", + "ground turmeric", + "cider vinegar", + "yoghurt", + "salt", + "fresh lemon juice", + "tomatoes", + "garam masala", + "garlic", + "cumin seed", + "ground cumin", + "water", + "crushed red pepper flakes", + "chickpeas", + "onions" + ] + }, + { + "id": 28980, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "tomatillos", + "sour cream", + "canola oil", + "zucchini", + "purple onion", + "fresh lime juice", + "kosher salt", + "jalapeno chilies", + "cilantro leaves", + "monterey jack", + "corn kernels", + "chicken meat", + "corn tortillas" + ] + }, + { + "id": 40525, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "garlic cloves", + "salt", + "butter", + "onions", + "tomato sauce", + "green chilies" + ] + }, + { + "id": 32098, + "cuisine": "mexican", + "ingredients": [ + "frozen corn", + "plum tomatoes", + "fresh cilantro", + "garlic cloves", + "black beans", + "creole seasoning", + "green onions", + "fresh lime juice" + ] + }, + { + "id": 12711, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "red wine", + "broth", + "parmigiano reggiano cheese", + "all-purpose flour", + "porcini", + "extra-virgin olive oil", + "pasta", + "russet potatoes", + "yellow onion" + ] + }, + { + "id": 5197, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "all-purpose flour", + "country ham", + "buttermilk", + "lard", + "kosher salt", + "salt", + "chicken", + "cold water", + "unsalted butter", + "corn starch" + ] + }, + { + "id": 38803, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "garlic cloves", + "ground pork", + "ground black pepper", + "kosher salt", + "smoked paprika" + ] + }, + { + "id": 6530, + "cuisine": "vietnamese", + "ingredients": [ + "salt", + "minced garlic", + "white sesame seeds", + "dumpling wrappers", + "large shrimp", + "sugar", + "corn starch" + ] + }, + { + "id": 46646, + "cuisine": "thai", + "ingredients": [ + "garlic chives", + "peanuts", + "lime wedges", + "dried rice noodles", + "white vinegar", + "sugar", + "tamarind juice", + "paprika", + "beansprouts", + "fish sauce", + "radishes", + "vegetable oil", + "cayenne pepper", + "eggs", + "soy sauce", + "cake", + "garlic", + "large shrimp" + ] + }, + { + "id": 7235, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "sauce", + "cabbage", + "eggs", + "broccoli florets", + "carrots", + "udon", + "imitation crab meat", + "soy sauce", + "sesame oil", + "white sugar" + ] + }, + { + "id": 7126, + "cuisine": "french", + "ingredients": [ + "sourdough bread", + "ground black pepper", + "yellow bell pepper", + "boiling water", + "hungarian sweet paprika", + "olive oil", + "cooking spray", + "yellow onion", + "yellow squash", + "zucchini", + "salt", + "parmigiano-reggiano cheese", + "sun-dried tomatoes", + "chopped fresh thyme", + "red bell pepper" + ] + }, + { + "id": 23563, + "cuisine": "italian", + "ingredients": [ + "tomato purée", + "water", + "hard-boiled egg", + "salt", + "white sugar", + "eggs", + "black pepper", + "pig feet", + "ground pork", + "Italian bread", + "tomato paste", + "pork", + "olive oil", + "ground veal", + "garlic cloves", + "fresh basil", + "pepper", + "baking soda", + "garlic", + "ground beef" + ] + }, + { + "id": 40015, + "cuisine": "italian", + "ingredients": [ + "penne pasta", + "grated parmesan cheese", + "ground beef", + "shredded mozzarella cheese", + "garlic sauce" + ] + }, + { + "id": 48366, + "cuisine": "italian", + "ingredients": [ + "spinach", + "oil", + "purple onion", + "orecchiette", + "artichok heart marin", + "feta cheese crumbles", + "tomatoes", + "vinaigrette" + ] + }, + { + "id": 42552, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "whole wheat bread", + "albacore tuna in water", + "fresh basil", + "zucchini", + "salt", + "red bell pepper", + "pitted kalamata olives", + "red wine vinegar", + "garlic cloves", + "fresh parsley", + "tomatoes", + "ground black pepper", + "purple onion", + "cucumber" + ] + }, + { + "id": 34327, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "low salt chicken broth", + "ouzo", + "anise", + "chicken", + "olive oil", + "garlic cloves", + "brine-cured olives", + "italian plum tomatoes", + "dried oregano" + ] + }, + { + "id": 43611, + "cuisine": "italian", + "ingredients": [ + "roasted hazelnuts", + "granulated sugar", + "salt", + "instant espresso", + "whole wheat flour", + "cooking spray", + "coffee beans", + "large egg whites", + "large eggs", + "all-purpose flour", + "unsweetened cocoa powder", + "brown sugar", + "baking soda", + "vegetable oil", + "Frangelico" + ] + }, + { + "id": 13741, + "cuisine": "italian", + "ingredients": [ + "honey", + "extra-virgin olive oil", + "fennel bulb", + "champagne vinegar", + "Belgian endive", + "lettuce leaves", + "parmesan cheese", + "grapefruit" + ] + }, + { + "id": 13176, + "cuisine": "korean", + "ingredients": [ + "reduced sodium soy sauce", + "minced garlic", + "sesame oil", + "turbinado", + "peeled fresh ginger", + "ground black pepper", + "scallions" + ] + }, + { + "id": 37498, + "cuisine": "southern_us", + "ingredients": [ + "jalapeno chilies", + "freshly ground pepper", + "frozen whole kernel corn", + "cheese", + "pepper jack", + "salt", + "quickcooking grits" + ] + }, + { + "id": 14069, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "boneless skinless chicken breasts", + "dried oregano", + "cooking spray", + "salsa", + "green chile", + "green onions", + "garlic cloves", + "flour tortillas", + "chees fresco queso", + "ground cumin" + ] + }, + { + "id": 8726, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "onions", + "tomatoes", + "chickpeas", + "chile powder", + "salt", + "ground cumin", + "fresh cilantro", + "cumin seed" + ] + }, + { + "id": 102, + "cuisine": "filipino", + "ingredients": [ + "green bell pepper", + "roma tomatoes", + "oil", + "chicken", + "pepper", + "garlic", + "red bell pepper", + "fish sauce", + "potatoes", + "carrots", + "frozen sweet peas", + "water", + "salt", + "onions" + ] + }, + { + "id": 32405, + "cuisine": "mexican", + "ingredients": [ + "TACO BELL® Thick & Chunky Mild Salsa", + "ground beef", + "KRAFT Shredded Cheddar Cheese", + "flour tortillas" + ] + }, + { + "id": 32766, + "cuisine": "moroccan", + "ingredients": [ + "boiling water", + "sugar", + "spearmint", + "green tea" + ] + }, + { + "id": 32841, + "cuisine": "french", + "ingredients": [ + "whole milk", + "unsalted butter", + "sugar", + "all-purpose flour", + "large eggs" + ] + }, + { + "id": 10940, + "cuisine": "irish", + "ingredients": [ + "whole grain mustard", + "pepper", + "salt", + "red potato", + "butter", + "milk" + ] + }, + { + "id": 34512, + "cuisine": "italian", + "ingredients": [ + "italian style stewed tomatoes", + "clam juice", + "water", + "dry white wine", + "shrimp", + "arborio rice", + "bay scallops", + "garlic cloves", + "olive oil", + "shallots", + "flat leaf parsley" + ] + }, + { + "id": 2552, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "garlic powder", + "ground tumeric", + "ground coriander", + "black pepper", + "cinnamon", + "all-purpose flour", + "shrimp", + "brown sugar", + "chili powder", + "salt", + "ground cardamom", + "olive oil", + "paprika", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 20288, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "self rising flour", + "unsalted butter" + ] + }, + { + "id": 1696, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "zucchini", + "Italian parsley leaves", + "purple onion", + "green beans", + "olive oil", + "soya bean", + "cauliflower florets", + "garlic cloves", + "plum tomatoes", + "ground black pepper", + "yukon gold potatoes", + "chopped celery", + "carrots", + "fat free less sodium chicken broth", + "parmigiano reggiano cheese", + "bacon slices", + "salt", + "spaghetti" + ] + }, + { + "id": 41797, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "flour tortillas", + "salt", + "canola oil", + "chicken breast tenders", + "chili powder", + "onions", + "ground black pepper", + "reduced-fat sour cream", + "monterey jack", + "canned black beans", + "cooking spray", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 27576, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "vegetable oil", + "brown rice flour", + "large eggs", + "sea salt", + "garlic powder", + "buttermilk", + "chicken pieces", + "potato starch", + "Tabasco Pepper Sauce", + "paprika" + ] + }, + { + "id": 17291, + "cuisine": "french", + "ingredients": [ + "confectioners sugar", + "large eggs", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 39410, + "cuisine": "filipino", + "ingredients": [ + "coarse salt", + "honey", + "chicken", + "dried thyme", + "balsamic vinegar", + "ground pepper" + ] + }, + { + "id": 23967, + "cuisine": "french", + "ingredients": [ + "eggs", + "dijon mustard", + "bread crumbs", + "chicken legs", + "red pepper", + "unsalted butter" + ] + }, + { + "id": 13481, + "cuisine": "mexican", + "ingredients": [ + "water", + "diced tomatoes", + "40% less sodium taco seasoning", + "ground sirloin", + "chopped cilantro fresh", + "frozen whole kernel corn", + "reduced-fat sour cream", + "red kidnei beans, rins and drain", + "brown rice" + ] + }, + { + "id": 12506, + "cuisine": "indian", + "ingredients": [ + "oil", + "idli", + "ghee", + "cilantro leaves" + ] + }, + { + "id": 32355, + "cuisine": "japanese", + "ingredients": [ + "scallion greens", + "soy sauce", + "boneless skinless chicken breasts", + "sake", + "shredded carrots", + "boiling water", + "chicken broth", + "mirin", + "snow peas", + "sugar", + "sliced cucumber", + "somen" + ] + }, + { + "id": 28398, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "salt", + "olive oil", + "sirloin tip steak", + "Herdez Salsa Casera", + "onions", + "potatoes" + ] + }, + { + "id": 13217, + "cuisine": "greek", + "ingredients": [ + "tomato paste", + "plain yogurt", + "ground nutmeg", + "cayenne pepper", + "dried currants", + "large egg yolks", + "dry red wine", + "tomatoes", + "olive oil", + "russet potatoes", + "chopped onion", + "green bell pepper", + "eggplant", + "sea salt", + "ground lamb" + ] + }, + { + "id": 30122, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "vegetable broth", + "garlic cloves", + "boneless skinless chicken breast halves", + "butternut squash", + "cayenne pepper", + "carrots", + "garbanzo beans", + "salt", + "lemon juice", + "sugar", + "tomatoes with juice", + "ground coriander", + "onions" + ] + }, + { + "id": 23307, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "chili powder", + "salt", + "cumin", + "guacamole", + "diced tomatoes", + "onions", + "bell pepper", + "vegetable oil", + "sour cream", + "garlic powder", + "boneless skinless chicken breasts", + "cheese", + "dried oregano" + ] + }, + { + "id": 25830, + "cuisine": "korean", + "ingredients": [ + "low sodium soy sauce", + "red beets", + "hanger steak", + "seedless watermelon", + "garlic cloves", + "kosher salt", + "sesame oil", + "ginger", + "corn syrup", + "sugar", + "radishes", + "kohlrabi", + "rice vinegar", + "golden beets", + "pepper", + "daikon", + "white wine vinegar", + "black radish" + ] + }, + { + "id": 47044, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "fresh ginger", + "garlic", + "water", + "green onions", + "ground meat", + "soy sauce", + "cooking oil", + "oyster sauce", + "kale", + "wonton wrappers" + ] + }, + { + "id": 42774, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "olive oil", + "jalapeno chilies", + "cilantro", + "cayenne pepper", + "avocado", + "black beans", + "garlic powder", + "onion powder", + "purple onion", + "plain yogurt", + "chopped tomatoes", + "boneless skinless chicken breasts", + "garlic", + "taco seasoning", + "romaine lettuce", + "lime", + "tortillas", + "apple cider vinegar", + "salt" + ] + }, + { + "id": 25552, + "cuisine": "greek", + "ingredients": [ + "lemon peel", + "cucumber", + "minced garlic", + "black olives", + "low-fat plain yogurt", + "wheat", + "fresh parsley", + "feta cheese", + "purple onion" + ] + }, + { + "id": 27345, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "shredded cheese", + "italian seasoning", + "manicotti shells", + "garlic", + "onions", + "eggs", + "stewed tomatoes", + "ground beef", + "tomato sauce", + "dry bread crumbs", + "white zinfandel" + ] + }, + { + "id": 46971, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "green bell pepper", + "coriander powder", + "salt", + "onions", + "chickpea flour", + "fish fillets", + "garam masala", + "kasuri methi", + "red bell pepper", + "garlic paste", + "pepper", + "yoghurt", + "lemon juice", + "red chili powder", + "tumeric", + "Biryani Masala", + "oil" + ] + }, + { + "id": 8880, + "cuisine": "russian", + "ingredients": [ + "lemon extract", + "cream cheese", + "cottage cheese", + "currant", + "sour cream", + "unsalted butter", + "blanched almonds", + "caster sugar", + "vanilla extract" + ] + }, + { + "id": 28195, + "cuisine": "thai", + "ingredients": [ + "sugar", + "lemon grass", + "white fleshed fish", + "asian fish sauce", + "fresh ginger", + "garlic", + "coconut milk", + "tumeric", + "ground pepper", + "salt", + "thai green curry paste", + "olive oil", + "shallots", + "grate lime peel", + "sturgeon" + ] + }, + { + "id": 2678, + "cuisine": "mexican", + "ingredients": [ + "cottage cheese", + "reduced sodium black beans", + "salsa", + "corn husks", + "plum tomatoes", + "avocado", + "tortilla chips" + ] + }, + { + "id": 9629, + "cuisine": "british", + "ingredients": [ + "self rising flour", + "eggs", + "white sugar", + "butter", + "milk" + ] + }, + { + "id": 5290, + "cuisine": "japanese", + "ingredients": [ + "baking powder", + "sweetened condensed milk", + "mochiko", + "vanilla extract", + "eggs", + "butter", + "pumpkin purée", + "white sugar" + ] + }, + { + "id": 43538, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "ground nutmeg", + "salt", + "pepper", + "half & half", + "onions", + "brown sugar", + "large eggs", + "crumbled gorgonzola", + "olive oil", + "butter" + ] + }, + { + "id": 26089, + "cuisine": "french", + "ingredients": [ + "red potato", + "ham", + "all purpose seasoning", + "dried rosemary", + "milk", + "shredded colby", + "eggs", + "pie shell" + ] + }, + { + "id": 32064, + "cuisine": "southern_us", + "ingredients": [ + "parsley sprigs", + "large eggs", + "vegetable oil", + "dry bread crumbs", + "milk", + "ground red pepper", + "salt", + "lump crab meat", + "green onions", + "butter", + "rustic rub", + "saltines", + "ground black pepper", + "lemon wedge", + "all-purpose flour" + ] + }, + { + "id": 16212, + "cuisine": "mexican", + "ingredients": [ + "chili", + "fresh lemon juice", + "chopped cilantro fresh", + "garlic cloves", + "onions", + "tomato juice", + "red bell pepper", + "plum tomatoes", + "green onions", + "fresh parsley", + "hothouse cucumber" + ] + }, + { + "id": 46465, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "kosher salt", + "cake flour", + "pork belly", + "active dry yeast", + "nonfat dried milk", + "reduced sodium chicken broth", + "baking powder", + "warm water", + "water", + "canola oil" + ] + }, + { + "id": 745, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "coconut", + "baking powder", + "salt", + "sugar", + "unsalted butter", + "light corn syrup", + "cream of tartar", + "large egg whites", + "almond extract", + "water", + "whole milk", + "cake flour" + ] + }, + { + "id": 18722, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "salt", + "water", + "broiler-fryers", + "pepper", + "all-purpose flour", + "vegetable oil" + ] + }, + { + "id": 2139, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "vanilla extract", + "milk", + "water", + "cocoa powder", + "sticky rice" + ] + }, + { + "id": 28498, + "cuisine": "french", + "ingredients": [ + "grated parmesan cheese", + "salt", + "dijon mustard", + "butter", + "large eggs", + "gruyere cheese", + "milk", + "ground red pepper", + "all-purpose flour" + ] + }, + { + "id": 15338, + "cuisine": "southern_us", + "ingredients": [ + "tomato sauce", + "diced tomatoes", + "butter", + "white sugar", + "ground black pepper", + "onions", + "bacon" + ] + }, + { + "id": 35728, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "sesame oil", + "greens", + "cold water", + "Shaoxing wine", + "salt", + "chicken stock", + "bean paste", + "potato flour", + "rainbow trout", + "cooking oil", + "ginger", + "chopped garlic" + ] + }, + { + "id": 14349, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "butter", + "oil", + "ground lamb", + "chili powder", + "salt", + "onions", + "garam masala", + "garlic", + "fresh lemon juice", + "water", + "chile pepper", + "all-purpose flour", + "ground turmeric" + ] + }, + { + "id": 26484, + "cuisine": "mexican", + "ingredients": [ + "water", + "salt", + "tomatoes", + "bell pepper", + "onions", + "pepper", + "chili powder", + "cumin", + "garlic powder", + "lean beef" + ] + }, + { + "id": 44929, + "cuisine": "filipino", + "ingredients": [ + "table cream", + "fruit cocktail", + "coconut", + "sugar", + "pineapple chunks", + "sweetened condensed milk" + ] + }, + { + "id": 451, + "cuisine": "indian", + "ingredients": [ + "salt", + "fresh mint", + "whole milk yoghurt" + ] + }, + { + "id": 12117, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "mushrooms", + "garlic", + "onions", + "eggs", + "pork chops", + "ground pork", + "dry bread crumbs", + "romano cheese", + "bay leaves", + "basil dried leaves", + "ground beef", + "tomato paste", + "water", + "ground veal", + "salt", + "dried parsley" + ] + }, + { + "id": 27162, + "cuisine": "italian", + "ingredients": [ + "pepper", + "baby spinach", + "garlic cloves", + "grated parmesan cheese", + "salt", + "olive oil", + "red pepper flakes", + "juice", + "fresh basil", + "boneless skinless chicken breasts", + "penne pasta" + ] + }, + { + "id": 39920, + "cuisine": "italian", + "ingredients": [ + "lemon wedge", + "lemon juice", + "chili flakes", + "salt", + "grated lemon peel", + "garlic", + "chopped cilantro fresh", + "olive oil", + "fat skimmed chicken broth", + "chicken" + ] + }, + { + "id": 47458, + "cuisine": "mexican", + "ingredients": [ + "yellow corn meal", + "corn oil", + "cheddar cheese", + "salt", + "jalapeno chilies", + "eggs", + "all purpose unbleached flour" + ] + }, + { + "id": 2215, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "all-purpose flour", + "capers", + "butter", + "fresh parsley", + "chicken stock", + "boneless chicken breast", + "fresh lemon juice", + "pepper", + "salt" + ] + }, + { + "id": 29557, + "cuisine": "greek", + "ingredients": [ + "fresh basil", + "purple onion", + "feta cheese", + "balsamic vinaigrette", + "tomatoes", + "kalamata", + "rotini", + "green bell pepper", + "freshly ground pepper" + ] + }, + { + "id": 27074, + "cuisine": "greek", + "ingredients": [ + "swordfish steaks", + "fresh basil", + "fresh lime juice", + "minced garlic", + "tomatoes", + "butter" + ] + }, + { + "id": 3346, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "paprika", + "garlic cloves", + "tomatoes", + "garam masala", + "chickpeas", + "coriander", + "olive oil", + "salt", + "lentils", + "tumeric", + "chili powder", + "chopped onion", + "cumin" + ] + }, + { + "id": 29809, + "cuisine": "british", + "ingredients": [ + "yellow onion", + "potatoes", + "cabbage" + ] + }, + { + "id": 46141, + "cuisine": "jamaican", + "ingredients": [ + "flour", + "milk", + "salt", + "bananas", + "oil", + "brown sugar", + "vanilla extract" + ] + }, + { + "id": 48837, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "red cabbage", + "rice vinegar", + "cucumber", + "dry roasted peanuts", + "cilantro", + "carrots", + "pepper", + "sesame oil", + "scallions", + "cooked chicken breasts", + "fish sauce", + "lime juice", + "salt", + "chili garlic paste" + ] + }, + { + "id": 23971, + "cuisine": "japanese", + "ingredients": [ + "miso paste", + "water", + "seaweed", + "tofu", + "green onions", + "dashi" + ] + }, + { + "id": 753, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "crushed red pepper flakes", + "ground coriander", + "boneless skinless chicken breast halves", + "clove", + "buttermilk", + "salt", + "onions", + "vegetable oil", + "garlic", + "fresh parsley", + "warm water", + "cardamom seeds", + "cinnamon sticks", + "ground cumin" + ] + }, + { + "id": 21754, + "cuisine": "italian", + "ingredients": [ + "salt and ground black pepper", + "fresh mushrooms", + "dried rosemary", + "tomatoes with juice", + "fat", + "dry white wine", + "orange juice", + "olive oil", + "garlic", + "onions" + ] + }, + { + "id": 2356, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "wonton wrappers", + "shrimp", + "lemon grass", + "rice vinegar", + "fresh ginger", + "salt", + "soy sauce", + "sesame oil", + "garlic cloves" + ] + }, + { + "id": 43763, + "cuisine": "japanese", + "ingredients": [ + "peeled fresh ginger", + "grated lemon peel", + "olive oil", + "fresh lemon juice", + "extra large shrimp", + "bok choy", + "soy sauce", + "dry sherry" + ] + }, + { + "id": 30363, + "cuisine": "italian", + "ingredients": [ + "almond meal", + "garlic powder", + "salt", + "water", + "cauliflower florets", + "flax seeds", + "dried oregano" + ] + }, + { + "id": 48514, + "cuisine": "italian", + "ingredients": [ + "rocket leaves", + "parmesan cheese", + "garlic", + "dried thyme", + "lemon", + "kosher salt", + "ground black pepper", + "t-bone steak", + "olive oil", + "sea salt" + ] + }, + { + "id": 1629, + "cuisine": "greek", + "ingredients": [ + "honey", + "watercress", + "fresh lemon juice", + "fresh dill", + "mustard greens", + "scallions", + "baby spinach", + "salt", + "flat leaf parsley", + "dandelion greens", + "extra-virgin olive oil", + "escarole" + ] + }, + { + "id": 48798, + "cuisine": "chinese", + "ingredients": [ + "milk", + "salt", + "eggs", + "ground pork", + "white sugar", + "soy sauce", + "duck egg", + "ground black pepper", + "broccoli" + ] + }, + { + "id": 36531, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "carnitas", + "lime", + "corn tortillas", + "fresh cilantro", + "chopped onion", + "plum tomatoes", + "ground black pepper", + "fresh lime juice" + ] + }, + { + "id": 36151, + "cuisine": "filipino", + "ingredients": [ + "patis", + "rice noodles", + "onions", + "fresh green bean", + "chicken thighs", + "pepper", + "carrots" + ] + }, + { + "id": 682, + "cuisine": "irish", + "ingredients": [ + "light brown sugar", + "granulated sugar", + "vanilla", + "baking soda", + "baking powder", + "boiling water", + "pitted date", + "large eggs", + "all-purpose flour", + "unsalted butter", + "heavy cream" + ] + }, + { + "id": 26735, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "dried oregano", + "orange", + "chicken thighs", + "potatoes", + "chorizo sausage", + "purple onion" + ] + }, + { + "id": 8013, + "cuisine": "italian", + "ingredients": [ + "field lettuce", + "fine sea salt", + "extra-virgin olive oil", + "black pepper" + ] + }, + { + "id": 22486, + "cuisine": "mexican", + "ingredients": [ + "slaw", + "cilantro leaves", + "corn tortillas", + "avocado", + "jalapeno chilies", + "hot sauce", + "club soda", + "kosher salt", + "all-purpose flour", + "cabbage", + "fillet red snapper", + "vegetable oil", + "white rice flour" + ] + }, + { + "id": 33412, + "cuisine": "italian", + "ingredients": [ + "capers", + "garlic cloves", + "red pepper", + "dried oregano", + "extra-virgin olive oil", + "bell pepper", + "flat leaf parsley" + ] + }, + { + "id": 40032, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "lime wedges", + "black pepper", + "flank steak", + "corn tortillas", + "kosher salt", + "chili powder", + "ground cinnamon", + "cooking spray", + "crushed red pepper" + ] + }, + { + "id": 46769, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "water", + "chicken drumsticks", + "yellow onion", + "ground ginger", + "phyllo dough", + "fresh ginger root", + "paprika", + "fresh parsley", + "nutmeg", + "fresh coriander", + "butter", + "salt", + "saffron", + "eggs", + "olive oil", + "raisins", + "blanched almonds" + ] + }, + { + "id": 36994, + "cuisine": "thai", + "ingredients": [ + "sugar", + "salt", + "green cabbage", + "salted roast peanuts", + "chopped cilantro fresh", + "chili flakes", + "purple onion", + "asian fish sauce", + "lime juice", + "fresh mint" + ] + }, + { + "id": 30694, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "all-purpose flour", + "pie crust", + "butter", + "cream cheese", + "rolled oats", + "corn syrup", + "eggs", + "vanilla extract", + "white sugar" + ] + }, + { + "id": 2347, + "cuisine": "russian", + "ingredients": [ + "semolina flour", + "canola oil", + "all-purpose flour", + "cottage cheese", + "eggs", + "white sugar" + ] + }, + { + "id": 32907, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "white rice", + "vegetable oil", + "boneless skinless chicken breast halves", + "peanuts", + "garlic", + "soy sauce", + "mandarin oranges", + "iceberg lettuce" + ] + }, + { + "id": 10635, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "lemon", + "grated parmesan cheese", + "chopped parsley", + "tilapia fillets", + "paprika" + ] + }, + { + "id": 43478, + "cuisine": "korean", + "ingredients": [ + "low sodium soy sauce", + "cooking spray", + "garlic cloves", + "brown sugar", + "crushed red pepper", + "pork tenderloin", + "dark sesame oil", + "sambal ulek", + "peeled fresh ginger" + ] + }, + { + "id": 17904, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "onion powder", + "sour cream", + "penne", + "cream of chicken soup", + "poultry seasoning", + "parmesan cheese", + "chicken soup base", + "mozzarella cheese", + "boneless skinless chicken breasts", + "thyme" + ] + }, + { + "id": 37651, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "butter", + "heavy whipping cream", + "peaches", + "all-purpose flour", + "milk", + "salt", + "ground ginger", + "baking powder", + "chopped pecans" + ] + }, + { + "id": 10407, + "cuisine": "mexican", + "ingredients": [ + "gold tequila", + "coarse salt", + "lime slices", + "triple sec", + "sweet and sour mix", + "ice cubes", + "lime wedges" + ] + }, + { + "id": 48789, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "plum tomatoes", + "garlic", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 28115, + "cuisine": "japanese", + "ingredients": [ + "sake", + "enokitake", + "Japanese soy sauce", + "vegetable oil", + "mirin", + "sea bass fillets", + "sugar", + "chives" + ] + }, + { + "id": 46560, + "cuisine": "italian", + "ingredients": [ + "water", + "bay leaf", + "garlic", + "fresh sage", + "white beans", + "coarse sea salt" + ] + }, + { + "id": 2143, + "cuisine": "mexican", + "ingredients": [ + "reduced fat monterey jack cheese", + "pepper", + "non-fat sour cream", + "ground cumin", + "vegetable oil cooking spray", + "lime juice", + "chunky salsa", + "tomatoes", + "chicken breast tenders", + "salt", + "romaine lettuce", + "chili powder", + "sliced green onions" + ] + }, + { + "id": 13181, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "ground cardamom", + "water", + "sugar", + "ghee", + "milk" + ] + }, + { + "id": 20221, + "cuisine": "french", + "ingredients": [ + "lemon zest", + "all-purpose flour", + "eggs", + "vanilla extract", + "butter", + "white sugar", + "granulated sugar", + "salt" + ] + }, + { + "id": 7893, + "cuisine": "british", + "ingredients": [ + "butter", + "white pepper", + "split peas", + "water", + "salt" + ] + }, + { + "id": 15801, + "cuisine": "southern_us", + "ingredients": [ + "low-fat buttermilk", + "cayenne pepper", + "coarse salt", + "vegetable oil", + "chicken", + "all-purpose flour" + ] + }, + { + "id": 24308, + "cuisine": "italian", + "ingredients": [ + "water", + "unsalted butter", + "all-purpose flour", + "active dry yeast", + "large eggs", + "milk", + "parmigiano reggiano cheese", + "honey", + "salt" + ] + }, + { + "id": 3651, + "cuisine": "italian", + "ingredients": [ + "pepper", + "chopped celery", + "yellow corn meal", + "grated parmesan cheese", + "chopped fresh sage", + "chicken broth", + "butter", + "garlic cloves", + "sweet onion", + "salt" + ] + }, + { + "id": 46380, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "crushed red pepper", + "rotini", + "dried basil", + "shredded mozzarella cheese", + "onions", + "crushed tomatoes", + "salt", + "ground beef", + "tomato paste", + "garlic powder", + "sliced mushrooms", + "dried oregano" + ] + }, + { + "id": 4349, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic", + "flat leaf parsley", + "butter", + "salt", + "crushed tomatoes", + "pasta shells", + "extra-virgin olive oil", + "tuna packed in olive oil" + ] + }, + { + "id": 2767, + "cuisine": "chinese", + "ingredients": [ + "cream", + "hamburger", + "soup", + "celery", + "cream of celery soup", + "white rice", + "onions", + "milk", + "chow mein noodles" + ] + }, + { + "id": 9288, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "dijon mustard", + "black olives", + "carrots", + "fresh basil", + "extra-virgin olive oil", + "skinless chicken breasts", + "red bell pepper", + "red potato", + "hard-boiled egg", + "purple onion", + "green beans", + "capers", + "garlic", + "fresh lemon juice" + ] + }, + { + "id": 8342, + "cuisine": "greek", + "ingredients": [ + "romaine lettuce", + "hellmann' or best food real mayonnais", + "chopped fresh mint", + "fresh tomatoes", + "Lipton® Recipe Secrets® Onion Soup Mix", + "greek yogurt", + "chopped garlic", + "pita bread", + "dri leav rosemari", + "cucumber", + "dried leaves oregano", + "fresh dill", + "purple onion", + "ground beef", + "ground lamb" + ] + }, + { + "id": 27786, + "cuisine": "mexican", + "ingredients": [ + "spinach leaves", + "vegetable oil", + "onions", + "chicken stock", + "chile pepper", + "garlic cloves", + "lettuce", + "green tomatoes", + "pumpkin seeds", + "chicken breasts", + "salt", + "coriander" + ] + }, + { + "id": 21099, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "palm sugar", + "duck", + "jasmine rice", + "Thai red curry paste", + "fish sauce", + "basil", + "fresh pineapple", + "unsweetened coconut milk", + "cherry tomatoes", + "thai chile" + ] + }, + { + "id": 478, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "warm water", + "M&M's Candy", + "cream cheese", + "brown sugar", + "active dry yeast", + "salt", + "sugar", + "red velvet cake mix", + "all-purpose flour", + "powdered sugar", + "milk", + "vanilla extract" + ] + }, + { + "id": 23097, + "cuisine": "irish", + "ingredients": [ + "Irish whiskey", + "white chocolate", + "salt", + "sugar", + "heavy cream", + "bananas" + ] + }, + { + "id": 4308, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "reduced fat milk", + "all-purpose flour", + "low-fat buttermilk", + "butter", + "fresh lemon juice", + "large egg yolks", + "cooking spray", + "grated lemon zest", + "sugar", + "large eggs", + "salt" + ] + }, + { + "id": 9824, + "cuisine": "french", + "ingredients": [ + "olive oil", + "new york strip steaks", + "kosher salt", + "balsamic vinegar", + "shallots", + "peppercorns", + "lower sodium beef broth", + "butter" + ] + }, + { + "id": 38815, + "cuisine": "italian", + "ingredients": [ + "cannellini beans", + "fresh basil leaves", + "sugar", + "salt", + "cherry tomatoes", + "boiling onions", + "tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 41915, + "cuisine": "moroccan", + "ingredients": [ + "coconut oil", + "ginger", + "ground cumin", + "paprika", + "ground coriander", + "salmon fillets", + "salt", + "fresh orange juice", + "ground cayenne pepper" + ] + }, + { + "id": 2759, + "cuisine": "chinese", + "ingredients": [ + "pepper sauce", + "sesame oil", + "ginger root", + "lime", + "chinese five-spice powder", + "soy sauce", + "scallions", + "chicken thighs", + "neutral oil", + "ground black pepper", + "oyster sauce" + ] + }, + { + "id": 47415, + "cuisine": "southern_us", + "ingredients": [ + "1% low-fat buttermilk", + "large eggs", + "yellow corn meal", + "fat free milk", + "salt", + "large egg whites", + "butter cooking spray", + "pure maple syrup", + "frozen whole kernel corn" + ] + }, + { + "id": 42348, + "cuisine": "french", + "ingredients": [ + "sauerkraut", + "knockwurst", + "caraway seeds", + "salt", + "pork butt", + "cracked black pepper", + "pork shoulder", + "wine", + "carrots", + "peppercorns" + ] + }, + { + "id": 39324, + "cuisine": "french", + "ingredients": [ + "brie cheese", + "pecan halves", + "dough", + "honey" + ] + }, + { + "id": 33397, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "jicama", + "fresh lime juice", + "avocado", + "pomegranate seeds", + "salt", + "ground cumin", + "pomegranate juice", + "pinenuts", + "purple onion", + "chopped cilantro fresh", + "rocket leaves", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 44380, + "cuisine": "italian", + "ingredients": [ + "short pasta", + "crushed red pepper flakes", + "fresh parsley leaves", + "whole peeled tomatoes", + "garlic", + "kosher salt", + "extra-virgin olive oil", + "dried oregano", + "dry white wine", + "broccoli" + ] + }, + { + "id": 32707, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "baking soda", + "all-purpose flour", + "fat-free buttermilk", + "salt", + "unsalted butter" + ] + }, + { + "id": 13979, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "olive oil", + "fresh thyme", + "dry bread crumbs", + "red bell pepper", + "fat free less sodium chicken broth", + "ground black pepper", + "ground red pepper", + "chopped onion", + "fresh parsley", + "sugar", + "black-eyed peas", + "green onions", + "grated lemon zest", + "cornmeal", + "cider vinegar", + "dijon mustard", + "salt", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 28965, + "cuisine": "french", + "ingredients": [ + "peaches", + "mint", + "orange flower water" + ] + }, + { + "id": 18337, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "boneless skinless chicken breasts", + "cream cheese", + "chicken broth", + "mushrooms", + "fresh tarragon", + "leeks", + "heavy cream", + "celery", + "ground black pepper", + "dry white wine", + "salt" + ] + }, + { + "id": 32091, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "cooking spray", + "smoked gouda", + "ground black pepper", + "cornmeal", + "fresh basil", + "pizza doughs", + "plum tomatoes" + ] + }, + { + "id": 22445, + "cuisine": "thai", + "ingredients": [ + "tomatoes", + "lime juice", + "green papaya", + "chiles", + "roasted peanuts", + "fish sauce", + "garlic", + "sugar", + "shrimp" + ] + }, + { + "id": 21610, + "cuisine": "southern_us", + "ingredients": [ + "nutmeg", + "butter", + "milk", + "bisquick", + "sugar", + "peach slices", + "cinnamon" + ] + }, + { + "id": 12397, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "flatbread", + "creole seasoning" + ] + }, + { + "id": 16589, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "fresh ginger", + "chili oil", + "corn starch", + "dark soy sauce", + "szechwan peppercorns", + "low sodium chicken stock", + "scallion greens", + "firm silken tofu", + "chili bean paste", + "ground beef", + "wine", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 27751, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "dry white wine", + "dill tips", + "ground black pepper", + "crushed red pepper", + "dried oregano", + "peeled tomatoes", + "red wine vinegar", + "feta cheese crumbles", + "mussels", + "cooking spray", + "yellow onion" + ] + }, + { + "id": 37457, + "cuisine": "spanish", + "ingredients": [ + "unsalted butter", + "salt", + "boiling potatoes", + "black pepper", + "chopped fresh chives", + "dry bread crumbs", + "large eggs", + "all-purpose flour", + "olive oil", + "fresh tarragon", + "flat leaf parsley" + ] + }, + { + "id": 8742, + "cuisine": "southern_us", + "ingredients": [ + "brussels sprouts", + "garlic", + "olive oil", + "sauce", + "pepper", + "salt", + "boneless pork shoulder", + "cheese", + "grit quick" + ] + }, + { + "id": 25300, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "vegetable oil", + "non-fat sour cream", + "garlic cloves", + "Anaheim chile", + "dried pinto beans", + "beef broth", + "ground cumin", + "water", + "loin pork roast", + "salt", + "chopped cilantro fresh", + "tomatoes", + "chili powder", + "stewed tomatoes", + "chopped onion" + ] + }, + { + "id": 37479, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "vegetable oil", + "peanut butter", + "boneless skinless chicken breast halves", + "pitas", + "chili powder", + "salt", + "onions", + "pepper", + "green onions", + "white cheddar cheese", + "chipotle peppers", + "ground cumin", + "nonfat yogurt", + "shredded lettuce", + "red bell pepper", + "dried oregano" + ] + }, + { + "id": 33158, + "cuisine": "french", + "ingredients": [ + "haricots verts", + "unsalted butter" + ] + }, + { + "id": 47617, + "cuisine": "mexican", + "ingredients": [ + "cold water", + "ground pepper", + "coarse salt", + "all-purpose flour", + "chiles", + "baking powder", + "ground pork", + "tomatoes", + "large eggs", + "butter", + "onions", + "fresh cilantro", + "chili powder", + "salt" + ] + }, + { + "id": 46307, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "tortillas", + "salsa", + "kosher salt", + "baby spinach", + "pepper jack" + ] + }, + { + "id": 45479, + "cuisine": "chinese", + "ingredients": [ + "water chestnuts", + "broccoli", + "cherry tomatoes", + "green onions", + "low sodium soy sauce", + "peeled fresh ginger", + "dark sesame oil", + "honey", + "dry mustard" + ] + }, + { + "id": 20114, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "active dry yeast", + "buckwheat flour", + "caviar", + "eggs", + "milk", + "fine salt", + "clarified butter", + "sugar", + "unsalted butter", + "lemon juice", + "smoked salmon", + "water", + "lemon zest", + "cream cheese, soften" + ] + }, + { + "id": 48492, + "cuisine": "vietnamese", + "ingredients": [ + "fennel", + "vietnamese fish sauce", + "cashew nuts", + "mint leaves", + "rice vinegar", + "red cabbage", + "salt", + "serrano chile", + "sugar", + "large garlic cloves", + "carrots" + ] + }, + { + "id": 7620, + "cuisine": "french", + "ingredients": [ + "black pepper", + "garlic", + "fresh mushrooms", + "port wine", + "olive oil", + "all-purpose flour", + "cherry tomatoes", + "salt", + "onions", + "sugar pea", + "beef tenderloin", + "beef broth" + ] + }, + { + "id": 5014, + "cuisine": "chinese", + "ingredients": [ + "ground black pepper", + "chinese five-spice powder", + "chinese rice wine", + "szechwan peppercorns", + "brown sugar", + "pork spare ribs", + "light soy sauce", + "sea salt" + ] + }, + { + "id": 11556, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "granulated sugar", + "heavy cream", + "baking soda", + "baking powder", + "cake flour", + "unsalted butter", + "buttermilk", + "salt", + "light brown sugar", + "large eggs", + "light corn syrup" + ] + }, + { + "id": 127, + "cuisine": "italian", + "ingredients": [ + "ziti", + "juice", + "olive oil", + "dry red wine", + "onions", + "grated parmesan cheese", + "Italian turkey sausage", + "diced tomatoes", + "red bell pepper" + ] + }, + { + "id": 28892, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "whole wheat tortillas", + "salsa", + "fresh lime juice", + "shredded cheddar cheese", + "ranch dressing", + "chicken breast strips", + "rice", + "green bell pepper", + "ground pepper", + "cilantro", + "yellow onion", + "olive oil", + "chili powder", + "salt", + "sour cream" + ] + }, + { + "id": 17556, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "buttermilk", + "baking soda", + "vanilla extract", + "unsalted butter", + "salt", + "pecan halves", + "almond extract" + ] + }, + { + "id": 33487, + "cuisine": "mexican", + "ingredients": [ + "cream of chicken soup", + "taco seasoning", + "shredded cheddar cheese", + "salsa", + "Ranch Style Beans", + "tomatoes", + "lean ground beef", + "sour cream", + "water", + "tortilla chips", + "onions" + ] + }, + { + "id": 14671, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "flour tortillas", + "crema", + "dried oregano", + "avocado", + "chuck roast", + "vegetable oil", + "beef broth", + "ground cumin", + "ground black pepper", + "bay leaves", + "salt", + "shredded Monterey Jack cheese", + "pico de gallo", + "chipotle", + "garlic", + "fresh lime juice" + ] + }, + { + "id": 41366, + "cuisine": "southern_us", + "ingredients": [ + "cooked chicken", + "diced celery", + "green onions", + "ginger", + "curry powder", + "sweetened coconut flakes", + "cream cheese, soften", + "ground red pepper", + "salt" + ] + }, + { + "id": 46088, + "cuisine": "mexican", + "ingredients": [ + "parsley sprigs", + "ground cumin", + "eggs", + "prepared mustard", + "chile powder", + "jalapeno chilies", + "mayonaise", + "salt" + ] + }, + { + "id": 22112, + "cuisine": "spanish", + "ingredients": [ + "dry white wine", + "chicken thighs", + "olive oil", + "rice", + "minced garlic", + "paprika", + "chorizo sausage", + "cream of chicken soup", + "thyme leaves" + ] + }, + { + "id": 34325, + "cuisine": "jamaican", + "ingredients": [ + "whole allspice", + "whole cloves", + "ginger", + "coriander", + "nutmeg", + "dried thyme", + "cinnamon", + "salt", + "light brown sugar", + "black pepper", + "onion powder", + "onion flakes", + "dried chives", + "garlic powder", + "red pepper flakes", + "cayenne pepper" + ] + }, + { + "id": 36084, + "cuisine": "indian", + "ingredients": [ + "fresh curry", + "mustard seeds", + "tomatoes", + "garlic", + "white sugar", + "paprika", + "ghee", + "water", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 37982, + "cuisine": "russian", + "ingredients": [ + "eggs", + "salt", + "flour", + "potatoes", + "sour cream", + "vegetable oil" + ] + }, + { + "id": 31786, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "salt", + "brown sugar", + "pork chops", + "ground ginger", + "pepper", + "soy sauce", + "garlic" + ] + }, + { + "id": 36666, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic", + "thick-cut bacon", + "chicken broth", + "cooked bacon", + "rotini", + "grated parmesan cheese", + "salt", + "water", + "whipping cream", + "frozen peas" + ] + }, + { + "id": 9658, + "cuisine": "cajun_creole", + "ingredients": [ + "seafood seasoning", + "imitation crab meat", + "garlic powder", + "cajun seasoning", + "seasoned bread crumbs", + "crimini mushrooms", + "monterey jack", + "hot pepper sauce", + "cream cheese" + ] + }, + { + "id": 32152, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "crushed garlic", + "all-purpose flour", + "eggs", + "green onions", + "shredded sharp cheddar cheese", + "white sugar", + "baking soda", + "buttermilk", + "dried parsley", + "olive oil", + "baking powder", + "salt", + "dried rosemary" + ] + }, + { + "id": 4957, + "cuisine": "indian", + "ingredients": [ + "amchur", + "chili powder", + "cilantro leaves", + "wheat flour", + "coriander powder", + "kasuri methi", + "cumin seed", + "ground turmeric", + "garam masala", + "ginger", + "green chilies", + "onions", + "water", + "potatoes", + "salt", + "oil" + ] + }, + { + "id": 42757, + "cuisine": "russian", + "ingredients": [ + "baking soda", + "raisins", + "unsweetened applesauce", + "honey", + "baking powder", + "chopped walnuts", + "ground cloves", + "ground nutmeg", + "salt", + "oat bran", + "whole wheat flour", + "vegetable oil", + "orange juice" + ] + }, + { + "id": 39269, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "ground cumin", + "tomatoes", + "salt", + "white vinegar", + "ground black pepper", + "green chile", + "flat leaf parsley" + ] + }, + { + "id": 8109, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "garlic powder", + "shredded cheese", + "refried beans", + "jalapeno chilies", + "cayenne", + "cumin" + ] + }, + { + "id": 11100, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "salt", + "marinara sauce", + "shredded mozzarella cheese", + "grated parmesan cheese", + "ricotta", + "cheese tortellini" + ] + }, + { + "id": 980, + "cuisine": "russian", + "ingredients": [ + "pepper", + "pearl barley", + "salt", + "celery", + "chicken stock", + "gherkins", + "potatoes", + "carrots" + ] + }, + { + "id": 14573, + "cuisine": "jamaican", + "ingredients": [ + "tomatoes", + "cooking oil", + "onions", + "water", + "salt", + "black pepper", + "bacon", + "cabbage", + "hot pepper sauce", + "tomato ketchup" + ] + }, + { + "id": 12325, + "cuisine": "italian", + "ingredients": [ + "pasta", + "butter", + "salt", + "roasted red peppers", + "basil", + "pepper", + "heavy cream", + "goat cheese", + "parmigiano reggiano cheese", + "garlic" + ] + }, + { + "id": 22357, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium soy sauce", + "sweet pepper", + "celery", + "sliced green onions", + "warm water", + "hoisin sauce", + "corn starch", + "boiling water", + "wide rice noodles", + "zucchini", + "crushed red pepper", + "reduced sugar orange marmalade", + "sliced almonds", + "shredded carrots", + "toasted sesame oil", + "large shrimp" + ] + }, + { + "id": 39458, + "cuisine": "southern_us", + "ingredients": [ + "turnips", + "large eggs", + "bread crumbs", + "salt", + "pepper", + "sugar", + "butter" + ] + }, + { + "id": 38886, + "cuisine": "thai", + "ingredients": [ + "lime zest", + "new potatoes", + "garlic cloves", + "thai green curry paste", + "caster sugar", + "vegetable oil", + "Thai fish sauce", + "kaffir lime leaves", + "boneless skinless chicken breasts", + "green beans", + "basil leaves", + "rice", + "coconut milk" + ] + }, + { + "id": 19065, + "cuisine": "italian", + "ingredients": [ + "pizza crust", + "focaccia", + "prosciutto", + "arugula", + "pepper", + "purple onion", + "fontina cheese", + "balsamic vinegar" + ] + }, + { + "id": 13319, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "Dole Seven Lettuces", + "tomatoes", + "chopped fresh thyme", + "all-purpose flour", + "vegetable oil", + "garlic", + "bottled clam juice", + "cajun seasoning", + "shrimp" + ] + }, + { + "id": 40096, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "flour", + "all-purpose flour", + "peaches", + "buttermilk", + "dark brown sugar", + "stone-ground cornmeal", + "baking powder", + "blueberries", + "unsalted butter", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 15792, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chopped onion", + "chopped cilantro fresh", + "reduced-fat sour cream", + "garlic cloves", + "ground cumin", + "diced tomatoes", + "baked tortilla chips", + "shredded Monterey Jack cheese", + "salt", + "pinto beans" + ] + }, + { + "id": 30820, + "cuisine": "indian", + "ingredients": [ + "water", + "yukon gold potatoes", + "salt", + "serrano chile", + "plain low-fat yogurt", + "zucchini", + "paprika", + "onions", + "tomatoes", + "garam masala", + "vegetable oil", + "garlic cloves", + "ground turmeric", + "salmon fillets", + "peeled fresh ginger", + "Bengali 5 Spice", + "chopped cilantro fresh" + ] + }, + { + "id": 16458, + "cuisine": "indian", + "ingredients": [ + "water", + "cilantro leaves", + "cashew nuts", + "curry leaves", + "light coconut milk", + "green chilies", + "coconut", + "rice", + "coconut oil", + "salt", + "cumin seed" + ] + }, + { + "id": 40799, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "non-fat sour cream", + "ground turkey", + "canned black beans", + "low sodium taco seasoning", + "scallions", + "zucchini", + "frozen corn kernels", + "canola oil", + "finely chopped onion", + "salsa", + "corn tortillas" + ] + }, + { + "id": 46551, + "cuisine": "french", + "ingredients": [ + "salad greens", + "yellow bell pepper", + "garlic cloves", + "olives", + "green bell pepper", + "chicken breast halves", + "extra-virgin olive oil", + "herbes de provence", + "green onions", + "sprinkles", + "red bell pepper", + "black pepper", + "balsamic vinegar", + "salt", + "olive oil flavored cooking spray" + ] + }, + { + "id": 37492, + "cuisine": "japanese", + "ingredients": [ + "vegetable oil", + "shichimi togarashi", + "unsalted butter", + "toasted sesame oil", + "popcorn kernels", + "garlic cloves" + ] + }, + { + "id": 25985, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "jack", + "salsa", + "iceberg lettuce", + "canola", + "grapeseed oil", + "corn tortillas", + "tomatoes", + "cooking oil", + "other", + "refried beans", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 31559, + "cuisine": "italian", + "ingredients": [ + "ground pepper", + "deveined shrimp", + "fresh chives", + "lemon wedge", + "capellini", + "fennel seeds", + "dry white wine", + "salt", + "coriander seeds", + "lemon", + "fat skimmed chicken broth" + ] + }, + { + "id": 20621, + "cuisine": "british", + "ingredients": [ + "beef drippings", + "plain flour", + "salt", + "eggs", + "milk" + ] + }, + { + "id": 29976, + "cuisine": "indian", + "ingredients": [ + "low-fat plain yogurt", + "garlic", + "gingerroot", + "ground turmeric", + "Nakano Seasoned Rice Vinegar", + "yellow onion", + "chicken fingers", + "ground nutmeg", + "salt", + "ground coriander", + "ground cumin", + "ground cinnamon", + "paprika", + "cayenne pepper", + "ground cardamom" + ] + }, + { + "id": 13152, + "cuisine": "cajun_creole", + "ingredients": [ + "black beans", + "chopped celery", + "chopped garlic", + "white corn", + "red pepper", + "chopped onion", + "chicken broth", + "brown rice", + "green pepper", + "white wine", + "stewed tomatoes", + "shrimp" + ] + }, + { + "id": 13106, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "boneless chicken breast halves", + "marsala wine", + "cheese", + "fresh basil", + "butter", + "prosciutto", + "low salt chicken broth" + ] + }, + { + "id": 11777, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper", + "fresh basil", + "large garlic cloves", + "flat leaf parsley", + "mozzarella cheese", + "diced tomatoes", + "dried oregano", + "veal cutlets", + "all-purpose flour" + ] + }, + { + "id": 19091, + "cuisine": "irish", + "ingredients": [ + "large eggs", + "grated carrot", + "confectioners sugar", + "irish cream liqueur", + "raisins", + "all-purpose flour", + "grated orange", + "firmly packed brown sugar", + "cinnamon", + "salt", + "double-acting baking powder", + "unsalted butter", + "fresh orange juice", + "grated nutmeg", + "allspice" + ] + }, + { + "id": 43412, + "cuisine": "italian", + "ingredients": [ + "granulated sugar", + "confectioners sugar", + "large eggs", + "pure vanilla extract", + "ricotta cheese", + "orange", + "heavy cream" + ] + }, + { + "id": 28154, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "wieners", + "margarine", + "noodles" + ] + }, + { + "id": 13501, + "cuisine": "british", + "ingredients": [ + "sugar", + "suet", + "vanilla", + "oleo", + "cinnamon", + "sour milk", + "molasses", + "flour", + "salt", + "nutmeg", + "baking soda", + "raisins", + "boiling water" + ] + }, + { + "id": 6349, + "cuisine": "korean", + "ingredients": [ + "hot red pepper flakes", + "fresh ginger", + "scallions", + "water", + "large garlic cloves", + "toasted sesame seeds", + "honey", + "beef rib short", + "soy sauce", + "sesame oil", + "sherry wine" + ] + }, + { + "id": 27977, + "cuisine": "irish", + "ingredients": [ + "sliced tomatoes", + "lettuce leaves", + "prepared horseradish", + "cheese", + "low-fat sour cream", + "beef deli roast slice thinli", + "rye bread", + "fat-free mayonnaise" + ] + }, + { + "id": 38326, + "cuisine": "irish", + "ingredients": [ + "irish cream liqueur", + "large eggs", + "vanilla extract", + "pecan halves", + "baking soda", + "buttermilk", + "chopped pecans", + "cream cheese frosting", + "butter", + "all-purpose flour", + "shortening", + "granulated sugar", + "butterscotch filling" + ] + }, + { + "id": 19198, + "cuisine": "cajun_creole", + "ingredients": [ + "green onions", + "crabmeat", + "creole mustard", + "yellow mustard", + "mayonaise", + "worcestershire sauce", + "Tabasco Pepper Sauce" + ] + }, + { + "id": 22844, + "cuisine": "french", + "ingredients": [ + "chicken stock", + "shiitake", + "large eggs", + "Italian parsley leaves", + "garlic cloves", + "olive oil", + "unsalted butter", + "heavy cream", + "salt", + "dried porcini mushrooms", + "almonds", + "shallots", + "dry sherry", + "fresh lemon juice", + "bread crumb fresh", + "ground black pepper", + "chopped fresh thyme", + "oyster mushrooms", + "flat leaf parsley" + ] + }, + { + "id": 42744, + "cuisine": "italian", + "ingredients": [ + "salt", + "olive oil", + "spaghetti", + "broccoli rabe", + "hot red pepper flakes", + "garlic cloves" + ] + }, + { + "id": 37392, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "vegetable oil", + "unsweetened coconut milk", + "pumpkin", + "garlic", + "lemon grass", + "butter", + "chicken stock", + "shallots", + "fresh basil leaves" + ] + }, + { + "id": 31241, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "lime slices", + "teriyaki sauce", + "hibiscus flowers", + "filet mignon", + "lime peel", + "banana leaves", + "garlic cloves", + "skirt steak", + "soy sauce", + "peeled fresh ginger", + "crushed red pepper", + "shrimp", + "chicken broth", + "fresh ginger", + "boneless skinless chicken breasts", + "creamy peanut butter", + "fresh lime juice" + ] + }, + { + "id": 26888, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "avocado", + "chopped cilantro fresh", + "fresh lime juice" + ] + }, + { + "id": 27130, + "cuisine": "greek", + "ingredients": [ + "white wine", + "garlic powder", + "tomatoes", + "sun-dried tomatoes", + "black olives", + "olive oil", + "chicken breasts", + "fresh spinach", + "feta cheese", + "penne pasta" + ] + }, + { + "id": 25463, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "olive oil", + "anchovy fillets", + "green bell pepper", + "dried basil", + "chopped onion", + "dried oregano", + "grape tomatoes", + "minced garlic", + "salt", + "bay leaf", + "white wine", + "tomatoes with juice", + "chopped parsley" + ] + }, + { + "id": 29655, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "garlic", + "onions", + "brown sugar", + "green onions", + "Gochujang base", + "chili flakes", + "vinegar", + "salt", + "pork", + "ginger", + "oil" + ] + }, + { + "id": 7484, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "all-purpose flour", + "sugar", + "beaten eggs", + "canola oil", + "yellow corn meal", + "baking powder", + "soft fresh goat cheese", + "chiles", + "buttermilk", + "coarse kosher salt" + ] + }, + { + "id": 29696, + "cuisine": "thai", + "ingredients": [ + "ice cubes", + "whipped cream", + "seeds", + "cardamom seeds", + "water", + "star anise", + "teas", + "condensed milk" + ] + }, + { + "id": 7525, + "cuisine": "thai", + "ingredients": [ + "muscovado sugar", + "cucumber", + "red chili peppers", + "rice vinegar", + "fish sauce", + "cilantro leaves", + "beansprouts", + "mint leaves", + "baby gem lettuce" + ] + }, + { + "id": 30708, + "cuisine": "italian", + "ingredients": [ + "top loin steaks", + "watercress", + "lemon juice", + "ground pepper", + "artichokes", + "rocket leaves", + "balsamic vinegar", + "salt", + "parmesan cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 42105, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "pepper", + "long-grain rice", + "tomatoes", + "salt", + "canola oil", + "chicken broth", + "water", + "onions", + "pork", + "green pepper", + "ground cumin" + ] + }, + { + "id": 47381, + "cuisine": "moroccan", + "ingredients": [ + "pomegranate juice", + "salt", + "olive oil", + "cinnamon sticks", + "black pepper", + "carrots", + "coriander seeds" + ] + }, + { + "id": 24358, + "cuisine": "southern_us", + "ingredients": [ + "lump crab meat", + "ground red pepper", + "sauce", + "bread crumbs", + "egg whites", + "lemon slices", + "fresh parsley", + "mayonaise", + "unsalted butter", + "dry mustard", + "fresh lemon juice", + "cracker meal", + "old bay seasoning", + "peanut oil" + ] + }, + { + "id": 17065, + "cuisine": "jamaican", + "ingredients": [ + "ground black pepper", + "ground allspice", + "oregano", + "ground cinnamon", + "hot pepper", + "thyme", + "brown sugar", + "salt", + "onions", + "vinegar", + "garlic cloves", + "chicken" + ] + }, + { + "id": 5752, + "cuisine": "italian", + "ingredients": [ + "dijon mustard", + "extra-virgin olive oil", + "ground black pepper", + "lemon", + "kosher salt", + "dry white wine", + "bass fillets", + "tentacles", + "leeks", + "squid" + ] + }, + { + "id": 14919, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil", + "halibut", + "ground pepper", + "chopped celery", + "long-grain rice", + "cooked ham", + "stewed tomatoes", + "creole seasoning", + "finely chopped onion", + "green pepper", + "no salt added chicken broth" + ] + }, + { + "id": 8720, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic", + "chopped cilantro fresh", + "tomatoes", + "grapeseed oil", + "shrimp", + "ground cumin", + "jalapeno chilies", + "garlic cloves", + "chicken", + "sweet onion", + "sea salt", + "corn tortillas" + ] + }, + { + "id": 21207, + "cuisine": "chinese", + "ingredients": [ + "flour", + "ginger", + "apricot jam", + "cider vinegar", + "sesame oil", + "long-grain rice", + "cashew nuts", + "pepper", + "paprika", + "carrots", + "snow peas", + "soy sauce", + "chicken breasts", + "scallions", + "baby corn" + ] + }, + { + "id": 9775, + "cuisine": "southern_us", + "ingredients": [ + "diced onions", + "garlic powder", + "butter", + "roasting chickens", + "milk", + "baking powder", + "all-purpose flour", + "chicken stock", + "ground pepper", + "salt", + "frozen peas", + "dried thyme", + "sliced carrots", + "dried dillweed" + ] + }, + { + "id": 41106, + "cuisine": "italian", + "ingredients": [ + "pesto", + "oil", + "littleneck clams", + "dry white wine", + "tagliatelle", + "mussels", + "crushed red pepper" + ] + }, + { + "id": 43062, + "cuisine": "indian", + "ingredients": [ + "fresh mint", + "cumin", + "garlic", + "chopped cilantro fresh", + "lime juice", + "onions", + "salt", + "serrano chile" + ] + }, + { + "id": 19598, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "flour tortillas", + "cumin", + "chicken breast fillets", + "shredded cheese", + "garlic powder", + "sour cream", + "tomatoes", + "salsa" + ] + }, + { + "id": 14307, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "garlic cloves", + "baguette", + "extra-virgin olive oil", + "chicken", + "fat free less sodium chicken broth", + "butter", + "flat leaf parsley", + "ground black pepper", + "salt" + ] + }, + { + "id": 20595, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "diced tomatoes", + "ground lamb", + "dried basil", + "cooking spray", + "chopped onion", + "uncooked ziti", + "grated parmesan cheese", + "crushed red pepper", + "olive oil", + "balsamic vinegar", + "garlic cloves" + ] + }, + { + "id": 7923, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "heavy cream", + "fresh lemon juice", + "water", + "mushrooms", + "garlic cloves", + "black pepper", + "parmigiano reggiano cheese", + "salt", + "grits", + "unsalted butter", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 29372, + "cuisine": "spanish", + "ingredients": [ + "baby leaf lettuce", + "sherry wine vinegar", + "grated orange peel", + "olive oil", + "cooked shrimp", + "orange", + "garlic cloves", + "sugar", + "green onions", + "sliced green olives" + ] + }, + { + "id": 1009, + "cuisine": "japanese", + "ingredients": [ + "liquid smoke", + "gari", + "sesame oil", + "toasted sesame seeds", + "soy sauce", + "extra firm tofu", + "rice vinegar", + "canola oil", + "sushi rice", + "chives", + "carrots", + "wasabi", + "water", + "salt", + "nori" + ] + }, + { + "id": 31502, + "cuisine": "korean", + "ingredients": [ + "fresh spinach", + "Gochujang base", + "cauliflower", + "sesame oil", + "white mushrooms", + "zucchini", + "carrots", + "eggs", + "red pepper", + "beansprouts" + ] + }, + { + "id": 10086, + "cuisine": "italian", + "ingredients": [ + "cheese", + "boneless skinless chicken breasts", + "condensed cream of mushroom soup", + "dry white wine", + "stuffing mix" + ] + }, + { + "id": 41896, + "cuisine": "jamaican", + "ingredients": [ + "nutmeg", + "pimentos", + "scallions", + "soy sauce", + "ground thyme", + "brown sugar", + "cinnamon", + "garlic cloves", + "pepper", + "salt" + ] + }, + { + "id": 47961, + "cuisine": "korean", + "ingredients": [ + "water", + "ginger", + "honey", + "pinenuts", + "cinnamon sticks" + ] + }, + { + "id": 42553, + "cuisine": "greek", + "ingredients": [ + "bread", + "chopped tomatoes", + "Italian seasoned breadcrumbs", + "pepper", + "purple onion", + "flat leaf parsley", + "ground chuck", + "large eggs", + "cucumber", + "minced garlic", + "salt", + "cumin" + ] + }, + { + "id": 40102, + "cuisine": "japanese", + "ingredients": [ + "tomatoes", + "garam masala", + "ginger", + "cilantro leaves", + "oil", + "coriander seeds", + "red pepper", + "salt", + "cumin seed", + "tomato purée", + "potatoes", + "green peas", + "green chilies", + "garlic cloves", + "tumeric", + "bay leaves", + "garlic", + "gingerroot", + "onions" + ] + }, + { + "id": 10583, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "green onions", + "tortillas", + "ground beef", + "refried beans", + "taco seasoning", + "roma tomatoes" + ] + }, + { + "id": 7103, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "pesto", + "butter lettuce", + "fontina cheese", + "bread ciabatta" + ] + }, + { + "id": 8930, + "cuisine": "thai", + "ingredients": [ + "ground ginger", + "flank steak", + "chili sauce", + "orange", + "garlic", + "soy sauce", + "sesame oil", + "coriander", + "honey", + "seasoned rice wine vinegar" + ] + }, + { + "id": 10763, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "olive oil", + "butternut squash", + "large garlic cloves", + "cayenne pepper", + "plum tomatoes", + "chicken stock", + "baby lima beans", + "leeks", + "red wine vinegar", + "purple onion", + "chopped cilantro fresh", + "tomato paste", + "yellow crookneck squash", + "green onions", + "raisins", + "couscous", + "tumeric", + "zucchini", + "lemon wedge", + "crushed red pepper", + "frozen peas" + ] + }, + { + "id": 40234, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "onions", + "pepper", + "salt", + "dried basil", + "garlic cloves", + "sugar", + "diced tomatoes", + "dried oregano" + ] + }, + { + "id": 23829, + "cuisine": "chinese", + "ingredients": [ + "scallions", + "soy sauce", + "lamb", + "lard" + ] + }, + { + "id": 44490, + "cuisine": "italian", + "ingredients": [ + "pepper", + "balsamic vinegar", + "grated parmesan cheese", + "smoked paprika", + "olive oil", + "garlic cloves", + "pitted kalamata olives", + "pimentos", + "olives" + ] + }, + { + "id": 35449, + "cuisine": "mexican", + "ingredients": [ + "hominy", + "salt", + "dried oregano", + "chicken stock", + "tomatillos", + "poblano chiles", + "boneless pork shoulder", + "jalapeno chilies", + "cilantro leaves", + "canola oil", + "pepper", + "garlic", + "onions" + ] + }, + { + "id": 10990, + "cuisine": "chinese", + "ingredients": [ + "water", + "dry sherry", + "fresh mushrooms", + "chicken bouillon granules", + "green onions", + "sweet pepper", + "toasted sesame oil", + "soy sauce", + "chicken breasts", + "pea pods", + "cooking oil", + "linguine", + "corn starch" + ] + }, + { + "id": 49531, + "cuisine": "vietnamese", + "ingredients": [ + "sake", + "vegetable oil", + "spring onions", + "soy sauce", + "minced pork", + "fresh shiitake mushrooms" + ] + }, + { + "id": 13700, + "cuisine": "greek", + "ingredients": [ + "vegetable oil cooking spray", + "bay leaves", + "salt", + "tomatoes", + "pepper", + "baking potatoes", + "fresh lemon juice", + "snappers", + "dry white wine", + "chopped onion", + "green bell pepper", + "olive oil", + "large garlic cloves", + "fresh parsley" + ] + }, + { + "id": 23415, + "cuisine": "italian", + "ingredients": [ + "whole peeled tomatoes", + "garlic", + "kosher salt", + "basil", + "tomato paste", + "red pepper flakes", + "dried oregano", + "unsalted butter", + "extra-virgin olive oil" + ] + }, + { + "id": 19649, + "cuisine": "french", + "ingredients": [ + "chocolate", + "large egg yolks", + "cognac", + "large egg whites", + "salt", + "granulated sugar", + "unsweetened cocoa powder" + ] + }, + { + "id": 18618, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "chopped tomatoes", + "green chilies", + "pepper", + "salt", + "cumin", + "boiled eggs", + "garlic", + "onions", + "red chili powder", + "garam masala", + "oil" + ] + }, + { + "id": 30001, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "yellow onion", + "pepper", + "whipping cream", + "cornmeal", + "chicken stock", + "extra-virgin olive oil", + "carrots", + "chives", + "salt", + "large shrimp" + ] + }, + { + "id": 49359, + "cuisine": "mexican", + "ingredients": [ + "savoy cabbage", + "safflower oil", + "white hominy", + "freshly ground pepper", + "fresh oregano leaves", + "water", + "tortilla chips", + "chicken broth", + "minced garlic", + "coarse salt", + "bone in skin on chicken thigh", + "tomato paste", + "white onion", + "lime wedges", + "chopped cilantro" + ] + }, + { + "id": 32375, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "red wine vinegar", + "medium shrimp", + "water", + "apricot nectar", + "ketchup", + "vanilla wafers", + "eggs", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 394, + "cuisine": "italian", + "ingredients": [ + "capers", + "lemon", + "anchovy fillets", + "zucchini", + "garlic", + "flat leaf parsley", + "parsley leaves", + "salt", + "yellow squash", + "extra-virgin olive oil", + "freshly ground pepper" + ] + }, + { + "id": 35797, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "peanuts", + "ground cumin", + "curry powder", + "ground turmeric", + "chili powder" + ] + }, + { + "id": 20614, + "cuisine": "russian", + "ingredients": [ + "olive oil", + "paprika", + "Mrs. Dash", + "pepper", + "large garlic cloves", + "salt", + "soy sauce", + "butter", + "whipping cream", + "water", + "sirloin steak", + "all-purpose flour" + ] + }, + { + "id": 334, + "cuisine": "italian", + "ingredients": [ + "milk", + "garlic", + "grated parmesan cheese", + "ground white pepper", + "butter", + "fresh basil leaves", + "mushroom caps", + "cream cheese" + ] + }, + { + "id": 39226, + "cuisine": "mexican", + "ingredients": [ + "evaporated milk", + "all-purpose flour", + "shredded cheddar cheese", + "green onions", + "eggs", + "jalapeno chilies", + "margarine", + "water", + "baking powder" + ] + }, + { + "id": 22660, + "cuisine": "filipino", + "ingredients": [ + "vanilla extract", + "granulated sugar", + "confectioners sugar", + "cream of tartar", + "condensed milk", + "egg yolks" + ] + }, + { + "id": 12598, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "green onions", + "low sodium soy sauce", + "cooking spray", + "garlic cloves", + "boneless chicken skinless thigh", + "crushed red pepper", + "sake", + "peeled fresh ginger" + ] + }, + { + "id": 48600, + "cuisine": "irish", + "ingredients": [ + "mint chocolate chip ice cream", + "whipped cream", + "chocolate syrup", + "cream", + "OREO® Cookies", + "jimmies", + "milk" + ] + }, + { + "id": 24810, + "cuisine": "mexican", + "ingredients": [ + "salt", + "water", + "garlic", + "green chilies" + ] + }, + { + "id": 9788, + "cuisine": "moroccan", + "ingredients": [ + "ground black pepper", + "couscous", + "water", + "cayenne pepper", + "chopped cilantro fresh", + "ground cinnamon", + "lean ground beef", + "onions", + "olive oil", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 42010, + "cuisine": "cajun_creole", + "ingredients": [ + "melted butter", + "sauce", + "tortillas", + "catfish", + "pico de gallo", + "creole seasoning", + "lettuce", + "hot sauce" + ] + }, + { + "id": 42760, + "cuisine": "italian", + "ingredients": [ + "warm water", + "salt", + "olive oil", + "active dry yeast", + "bread flour", + "granulated sugar" + ] + }, + { + "id": 9475, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "self-rising cornmeal", + "chile pepper", + "cream style corn", + "milk", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 46748, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "extra-virgin olive oil", + "avocado", + "ground black pepper", + "kosher salt", + "garlic cloves", + "pasta", + "lemon" + ] + }, + { + "id": 23868, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "cinnamon", + "cane sugar", + "pure vanilla extract", + "large eggs", + "salt", + "salted butter", + "heavy cream", + "ground coriander", + "pie crust", + "sweet potatoes", + "grated nutmeg" + ] + }, + { + "id": 42328, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "chopped fresh chives", + "heavy cream", + "small red potato", + "pork tenderloin", + "butter", + "cream cheese", + "corn", + "onion powder", + "bacon", + "sour cream", + "spanish onion", + "cajun seasoning", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 44369, + "cuisine": "japanese", + "ingredients": [ + "salmon fillets", + "ground black pepper", + "somen", + "fresh cilantro", + "ponzu", + "kosher salt", + "daikon", + "canola oil", + "cherry tomatoes", + "cucumber" + ] + }, + { + "id": 1565, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "diced tomatoes", + "shredded cheese", + "seedless cucumber", + "corn kernels", + "purple onion", + "large shrimp", + "romaine lettuce", + "lime", + "cilantro", + "hass avocado", + "black beans", + "chili powder", + "salt" + ] + }, + { + "id": 46553, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "olive oil", + "sea salt", + "carrots", + "white wine", + "potatoes", + "garlic", + "bay leaf", + "black pepper", + "green lentil", + "paprika", + "smoked paprika", + "dried thyme", + "vegetable stock", + "green pepper", + "onions" + ] + }, + { + "id": 31439, + "cuisine": "southern_us", + "ingredients": [ + "hot pepper sauce", + "ground mustard", + "shredded cheddar cheese", + "salt", + "pepper", + "butter", + "elbow macaroni", + "milk", + "all-purpose flour" + ] + }, + { + "id": 10204, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "olive oil", + "egg whites", + "dried oregano", + "pepper", + "part-skim mozzarella cheese", + "1% low-fat milk", + "tomato sauce", + "won ton wrappers", + "asiago", + "1% low-fat cottage cheese", + "ground nutmeg", + "garlic cloves" + ] + }, + { + "id": 4648, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "large eggs", + "baking powder", + "salt", + "yellow corn meal", + "cream style corn", + "green onions", + "cajun seasoning", + "onions", + "baking soda", + "jalapeno chilies", + "vegetable oil", + "shrimp", + "cheddar cheese", + "chopped green bell pepper", + "ground red pepper", + "butter" + ] + }, + { + "id": 47889, + "cuisine": "korean", + "ingredients": [ + "sugar", + "anchovy fillets", + "radishes", + "fresh ginger root", + "coarse kosher salt", + "Korean chile flakes", + "large garlic cloves" + ] + }, + { + "id": 22555, + "cuisine": "italian", + "ingredients": [ + "french bread", + "herb seasoning", + "cheese", + "butter", + "garlic cloves", + "salt" + ] + }, + { + "id": 28471, + "cuisine": "french", + "ingredients": [ + "olive oil", + "garlic cloves", + "fresh basil leaves", + "leeks", + "low salt chicken broth", + "zucchini", + "carrots", + "boneless skinless chicken breast halves", + "cherry tomatoes", + "chopped fresh thyme", + "celery" + ] + }, + { + "id": 42315, + "cuisine": "thai", + "ingredients": [ + "lime", + "salted peanuts", + "fish sauce", + "mint leaves", + "chinese leaf", + "sugar", + "spring onions", + "cooked chicken breasts", + "red chili peppers", + "sesame oil", + "mango" + ] + }, + { + "id": 4731, + "cuisine": "mexican", + "ingredients": [ + "green cabbage", + "chopped onion", + "bacon slices", + "mexican chorizo", + "tomatoes", + "garlic cloves", + "chicken stock", + "chickpeas", + "fresh parsley" + ] + }, + { + "id": 35846, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "eggplant", + "whole milk ricotta cheese", + "chopped celery", + "chopped garlic", + "olive oil", + "grated parmesan cheese", + "dry red wine", + "onions", + "fresh basil", + "ground nutmeg", + "baby spinach", + "cayenne pepper", + "crushed tomatoes", + "large eggs", + "asiago", + "carrots" + ] + }, + { + "id": 26210, + "cuisine": "irish", + "ingredients": [ + "light brown sugar", + "dijon mustard", + "beef broth", + "red potato", + "apple cider vinegar", + "carrots", + "green cabbage", + "beef brisket", + "dark beer", + "sweet onion", + "large garlic cloves", + "bay leaf" + ] + }, + { + "id": 29422, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "tupelo honey", + "olive oil", + "beets", + "sea salt", + "ground white pepper", + "vidalia onion", + "garlic" + ] + }, + { + "id": 1015, + "cuisine": "indian", + "ingredients": [ + "milk", + "baking powder", + "all-purpose flour", + "sugar", + "baking soda", + "salt", + "jeera", + "red chile powder", + "paneer", + "oil", + "plain yogurt", + "mint leaves", + "cilantro leaves", + "ghee" + ] + }, + { + "id": 48271, + "cuisine": "spanish", + "ingredients": [ + "fennel bulb", + "carrots", + "hazelnuts", + "paprika", + "vinegar", + "olive oil", + "salt" + ] + }, + { + "id": 29216, + "cuisine": "italian", + "ingredients": [ + "eggs", + "warm water", + "pepper", + "dried basil", + "unsalted butter", + "cooking oil", + "baking powder", + "butter", + "all-purpose flour", + "ground beef", + "dried oregano", + "bread", + "tomato sauce", + "kosher salt", + "chorizo", + "garlic powder", + "dry yeast", + "potatoes", + "ricotta cheese", + "vanilla extract", + "cayenne pepper", + "white sugar", + "fresh spinach", + "black pepper", + "minced garlic", + "olive oil", + "finely chopped onion", + "grated parmesan cheese", + "vegetable oil", + "buttermilk", + "jumbo pasta shells", + "onions", + "ground cinnamon", + "sugar", + "mozzarella cheese", + "milk", + "ground black pepper", + "large eggs", + "flour", + "cajun seasoning", + "salt", + "thyme", + "oregano" + ] + }, + { + "id": 15462, + "cuisine": "italian", + "ingredients": [ + "capers", + "unsalted butter", + "lemon", + "olive oil", + "dry white wine", + "chopped parsley", + "kosher salt", + "flour", + "fresh lemon juice", + "chicken stock", + "ground black pepper", + "veal cutlets" + ] + }, + { + "id": 18144, + "cuisine": "cajun_creole", + "ingredients": [ + "lemonade", + "candy", + "silver", + "gelatin", + "sweetened condensed milk", + "food colouring", + "decorating sugars", + "vanilla frosting", + "flavored vodka" + ] + }, + { + "id": 54, + "cuisine": "thai", + "ingredients": [ + "eggs", + "light soy sauce", + "chicken breasts", + "roasted peanuts", + "beansprouts", + "fish sauce", + "white cabbage", + "cilantro leaves", + "lemon juice", + "min", + "fresh ginger", + "rice noodles", + "scallions", + "tofu", + "soybean oil", + "palm sugar", + "sauce", + "carrots" + ] + }, + { + "id": 18766, + "cuisine": "british", + "ingredients": [ + "warm water", + "salt", + "instant yeast", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 38113, + "cuisine": "indian", + "ingredients": [ + "yellow onion", + "hot water", + "ground turmeric", + "fresh ginger", + "cumin seed", + "chopped cilantro fresh", + "cauliflower", + "ground coriander", + "green beans", + "canola oil", + "salt", + "garlic cloves", + "boiling potatoes" + ] + }, + { + "id": 5834, + "cuisine": "italian", + "ingredients": [ + "heavy cream", + "spaghetti", + "ground black pepper", + "basil", + "large egg yolks", + "bacon", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 35201, + "cuisine": "italian", + "ingredients": [ + "avocado", + "hearts of palm", + "salt", + "rocket leaves", + "grated parmesan cheese", + "tomatoes", + "ground black pepper", + "fresh lemon juice", + "pinenuts", + "extra-virgin olive oil" + ] + }, + { + "id": 8717, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "all-purpose flour", + "baking powder", + "shredded cheese", + "milk", + "greek style plain yogurt", + "butter", + "diced ham" + ] + }, + { + "id": 29056, + "cuisine": "chinese", + "ingredients": [ + "fennel seeds", + "chili pepper", + "szechwan peppercorns", + "plums", + "brown sugar", + "fresh ginger", + "star anise", + "onions", + "black peppercorns", + "water", + "red wine vinegar", + "cinnamon sticks", + "soy sauce", + "whole cloves", + "garlic" + ] + }, + { + "id": 44308, + "cuisine": "chinese", + "ingredients": [ + "water", + "flank steak", + "corn starch", + "brown sugar", + "flour", + "garlic", + "low sodium soy sauce", + "baking soda", + "vegetable oil", + "sugar", + "sherry", + "broccoli" + ] + }, + { + "id": 7337, + "cuisine": "italian", + "ingredients": [ + "peeled tomatoes", + "finely chopped onion", + "salt", + "fresh basil", + "part-skim mozzarella cheese", + "lasagna noodles, cooked and drained", + "olive oil", + "cooking spray", + "garlic cloves", + "black pepper", + "fresh parmesan cheese", + "part-skim ricotta cheese" + ] + }, + { + "id": 28920, + "cuisine": "mexican", + "ingredients": [ + "capers", + "cod fillets", + "all-purpose flour", + "corn starch", + "cabbage", + "plain yogurt", + "baking powder", + "dried dillweed", + "corn tortillas", + "eggs", + "lime", + "salt", + "oil", + "dried oregano", + "mayonaise", + "jalapeno chilies", + "beer", + "ground cayenne pepper", + "ground cumin" + ] + }, + { + "id": 6541, + "cuisine": "irish", + "ingredients": [ + "honey", + "baking powder", + "grated lemon zest", + "large egg whites", + "pistachios", + "all-purpose flour", + "fat-free buttermilk", + "large eggs", + "salt", + "turbinado", + "granulated sugar", + "butter", + "dried cranberries" + ] + }, + { + "id": 36848, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "ground black pepper", + "mushrooms", + "orange juice", + "tomato sauce", + "cod fillets", + "diced tomatoes", + "onions", + "fennel seeds", + "dried basil", + "bay leaves", + "garlic", + "green bell pepper", + "sliced black olives", + "dry white wine", + "medium shrimp" + ] + }, + { + "id": 43968, + "cuisine": "british", + "ingredients": [ + "eggs", + "butter", + "croissants", + "apples", + "granulated sugar", + "heavy cream", + "golden raisins", + "vanilla extract" + ] + }, + { + "id": 12300, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic", + "dry sherry", + "honey", + "peanut oil", + "chicken wings", + "ginger" + ] + }, + { + "id": 49105, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "large eggs", + "all-purpose flour", + "evaporated milk", + "whipping cream", + "milk", + "baking powder", + "sweetened condensed milk", + "powdered sugar", + "unsalted butter", + "vanilla extract" + ] + }, + { + "id": 3211, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "sea salt", + "cayenne pepper", + "dried thyme", + "green onions", + "vegetable broth", + "long grain brown rice", + "olive oil", + "Tabasco Pepper Sauce", + "yellow onion", + "celery", + "green bell pepper", + "ground black pepper", + "diced tomatoes", + "smoked paprika" + ] + }, + { + "id": 38479, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "plum tomatoes", + "ground black pepper", + "salt", + "prosciutto", + "garlic", + "tomato paste", + "lean ground beef", + "onions" + ] + }, + { + "id": 34918, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "zucchini", + "dry sherry", + "heavy whipping cream", + "pepper", + "roasted red peppers", + "ricotta cheese", + "sliced mushrooms", + "dried oregano", + "eggplant", + "shallots", + "salt", + "noodles", + "olive oil", + "grated parmesan cheese", + "garlic", + "onions" + ] + }, + { + "id": 18248, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "whole wheat flour", + "all-purpose flour", + "ground cloves", + "baking powder", + "eggs", + "ground nutmeg", + "white sugar", + "ground ginger", + "molasses", + "vegetable oil" + ] + }, + { + "id": 1892, + "cuisine": "indian", + "ingredients": [ + "saffron threads", + "poppy seeds", + "water", + "ground cardamom", + "grated coconut", + "white rice", + "almonds", + "jaggery" + ] + }, + { + "id": 26726, + "cuisine": "italian", + "ingredients": [ + "milk", + "fresh basil leaves", + "tomatoes", + "grated parmesan cheese", + "water", + "butter", + "salt and ground black pepper", + "polenta" + ] + }, + { + "id": 26320, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "ground nutmeg", + "grated lemon zest", + "milk", + "salt", + "white sugar", + "active dry yeast", + "all-purpose flour", + "saffron", + "eggs", + "butter", + "hot water" + ] + }, + { + "id": 1198, + "cuisine": "thai", + "ingredients": [ + "Thai red curry paste", + "coconut milk", + "chicken breasts", + "chickpeas", + "basil", + "red bell pepper", + "sweet potatoes", + "beef broth" + ] + }, + { + "id": 41822, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "lime wedges", + "english cucumber", + "ice", + "diced onions", + "tomato juice", + "hot sauce", + "medium shrimp", + "fat free less sodium chicken broth", + "salt", + "fresh lime juice", + "avocado", + "ground black pepper", + "fresh oregano", + "chopped cilantro fresh" + ] + }, + { + "id": 7331, + "cuisine": "french", + "ingredients": [ + "granulated sugar", + "all-purpose flour", + "confectioners sugar", + "light brown sugar", + "baking powder", + "ground allspice", + "large eggs", + "grated nutmeg", + "unsalted butter", + "cinnamon", + "ground coriander" + ] + }, + { + "id": 48061, + "cuisine": "italian", + "ingredients": [ + "white bread", + "crushed tomatoes", + "ricotta cheese", + "pork shoulder", + "eggs", + "prosciutto", + "sweet italian sausage", + "dried oregano", + "kosher salt", + "grated parmesan cheese", + "flat leaf parsley", + "fennel seeds", + "olive oil", + "red pepper flakes", + "fresh basil leaves" + ] + }, + { + "id": 23768, + "cuisine": "italian", + "ingredients": [ + "corn husks", + "dry white wine", + "wild mushrooms", + "chicken stock", + "finely chopped onion", + "chopped fresh thyme", + "arborio rice", + "unsalted butter", + "chives", + "olive oil", + "grated parmesan cheese", + "baby spinach" + ] + }, + { + "id": 18659, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "rigatoni", + "Johnsonville Mild Italian Sausage Links", + "garlic", + "red pepper", + "pasta sauce", + "chopped parsley" + ] + }, + { + "id": 28577, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "chili powder", + "kha", + "dried lentils", + "garlic", + "coconut milk", + "olive oil", + "cayenne pepper", + "green cabbage", + "peanuts", + "kabocha squash" + ] + }, + { + "id": 46279, + "cuisine": "japanese", + "ingredients": [ + "green tea bags", + "salmon", + "mirin", + "shrimp", + "soy sauce", + "green tea", + "rice vinegar", + "wasabi paste", + "sushi rice", + "granulated sugar", + "english cucumber", + "salmon fillets", + "water", + "sea salt", + "green tea leaves" + ] + }, + { + "id": 5042, + "cuisine": "moroccan", + "ingredients": [ + "food colouring", + "olive oil", + "lemon juice", + "ground ginger", + "water", + "roasting chickens", + "cumin", + "pepper", + "salt", + "onions", + "green olives", + "fresh cilantro", + "garlic cloves", + "saffron" + ] + }, + { + "id": 31079, + "cuisine": "french", + "ingredients": [ + "sugar", + "large egg yolks", + "large egg whites", + "vanilla beans", + "salt", + "water", + "whole milk" + ] + }, + { + "id": 24304, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "cilantro", + "flour tortillas", + "sour cream", + "refried beans", + "enchilada sauce", + "avocado", + "green onions", + "monterey jack" + ] + }, + { + "id": 43362, + "cuisine": "italian", + "ingredients": [ + "water", + "pecorino romano cheese", + "fresh basil", + "cooking spray", + "salt", + "tomatoes", + "ground black pepper", + "extra-virgin olive oil", + "fresh marjoram", + "shallots", + "cornmeal" + ] + }, + { + "id": 33885, + "cuisine": "greek", + "ingredients": [ + "grape tomatoes", + "ground black pepper", + "zest", + "flat leaf parsley", + "kosher salt", + "garlic", + "juice", + "large shrimp", + "olive oil", + "sweet pepper", + "feta cheese crumbles", + "dry vermouth", + "mint leaves", + "fresh oregano", + "onions" + ] + }, + { + "id": 21003, + "cuisine": "mexican", + "ingredients": [ + "dried pinto beans", + "ground cumin", + "water", + "chopped onion", + "pepper", + "salt", + "chili powder", + "garlic cloves" + ] + }, + { + "id": 44364, + "cuisine": "moroccan", + "ingredients": [ + "fresh basil", + "zucchini", + "couscous", + "tomato paste", + "kosher salt", + "ground red pepper", + "ground cumin", + "ground cinnamon", + "olive oil", + "chopped onion", + "chicken stock", + "boneless chicken skinless thigh", + "butternut squash", + "grated orange" + ] + }, + { + "id": 47738, + "cuisine": "thai", + "ingredients": [ + "water", + "vegetable oil", + "fresh lime juice", + "sugar pea", + "mint leaves", + "roasted peanuts", + "brown sugar", + "reduced sodium soy sauce", + "sirloin steak", + "red jalapeno peppers", + "kosher salt", + "cooking spray", + "freshly ground pepper" + ] + }, + { + "id": 11663, + "cuisine": "southern_us", + "ingredients": [ + "colby cheese", + "onion powder", + "juice", + "diced pimentos", + "ground black pepper", + "shredded sharp cheddar cheese", + "garlic powder", + "worcestershire sauce", + "shredded Monterey Jack cheese", + "mayonaise", + "half & half", + "salt" + ] + }, + { + "id": 27650, + "cuisine": "chinese", + "ingredients": [ + "honey", + "garlic", + "scallions", + "baby bok choy", + "flour", + "safflower", + "Sriracha", + "salt", + "lemon juice", + "soy sauce", + "ginger", + "firm tofu" + ] + }, + { + "id": 45602, + "cuisine": "mexican", + "ingredients": [ + "light sour cream", + "boneless skinless chicken breasts", + "grated parmesan cheese", + "whole wheat breadcrumbs", + "shredded cheddar cheese", + "cheese", + "Anaheim chile" + ] + }, + { + "id": 15621, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "orange", + "bay leaves", + "garlic cloves", + "white vinegar", + "stock", + "fresh thyme", + "old bay seasoning", + "cooked rice", + "black-eyed peas", + "green onions", + "carrots", + "celery ribs", + "cheddar cheese", + "jalapeno chilies", + "yellow onion" + ] + }, + { + "id": 39609, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "chicken breasts", + "ground coriander", + "minced ginger", + "cilantro", + "minced garlic", + "paprika", + "juice", + "yoghurt", + "salt" + ] + }, + { + "id": 25417, + "cuisine": "greek", + "ingredients": [ + "greek seasoning", + "zucchini", + "fresh lemon juice", + "mashed potatoes", + "lean ground beef", + "onions", + "feta cheese", + "garlic cloves", + "pasta sauce", + "grated lemon zest" + ] + }, + { + "id": 26734, + "cuisine": "southern_us", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "quickcooking grits", + "dried thyme", + "salt", + "water", + "butter", + "garlic powder" + ] + }, + { + "id": 47163, + "cuisine": "mexican", + "ingredients": [ + "lemon pepper seasoning", + "garlic salt", + "green bell pepper", + "beer", + "key lime juice", + "onion powder", + "skirt steak", + "garlic powder", + "onions" + ] + }, + { + "id": 31674, + "cuisine": "mexican", + "ingredients": [ + "water", + "onions", + "top round steak", + "chili powder", + "bell pepper", + "ground cumin", + "tomato sauce", + "garlic" + ] + }, + { + "id": 25488, + "cuisine": "indian", + "ingredients": [ + "yellow squash", + "serrano peppers", + "carrots", + "mango", + "curry powder", + "ground black pepper", + "garlic", + "coriander", + "olive oil", + "ginger", + "coconut milk", + "seitan", + "sweet onion", + "zucchini", + "cardamom", + "cumin" + ] + }, + { + "id": 46049, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "green onions", + "fresh lime juice", + "lime juice", + "extra-virgin olive oil", + "romaine lettuce", + "apple cider vinegar", + "plum tomatoes", + "salt and ground black pepper", + "tequila" + ] + }, + { + "id": 45085, + "cuisine": "mexican", + "ingredients": [ + "canned black beans", + "cayenne pepper", + "white rice", + "ground cumin", + "olive oil", + "onions", + "low sodium low fat vegetable broth", + "garlic" + ] + }, + { + "id": 27498, + "cuisine": "greek", + "ingredients": [ + "honey", + "walnuts", + "whole milk yoghurt", + "phyllo pastry", + "unsalted butter", + "medjool date", + "grated orange peel", + "cardamom seeds" + ] + }, + { + "id": 14771, + "cuisine": "french", + "ingredients": [ + "sugar", + "chili powder", + "milk", + "liver sausage", + "minced garlic", + "worcestershire sauce", + "finely chopped onion", + "cream cheese" + ] + }, + { + "id": 28996, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "grated parmesan cheese", + "summer squash", + "low-fat goat cheese", + "roasted red peppers", + "prepared pasta sauce", + "pitted black olives", + "ground black pepper", + "wheat", + "dried oregano", + "minced garlic", + "zucchini", + "chopped fresh thyme" + ] + }, + { + "id": 26664, + "cuisine": "spanish", + "ingredients": [ + "clams", + "white rice", + "olives", + "chicken", + "fresh peas", + "shrimp", + "saffron", + "chicken broth", + "garlic", + "oregano", + "red pepper", + "onions", + "chorizo sausage" + ] + }, + { + "id": 5991, + "cuisine": "southern_us", + "ingredients": [ + "seasoning", + "pepper", + "sugar", + "chicken broth", + "vegetable oil", + "chopped cooked ham", + "turnip greens" + ] + }, + { + "id": 9730, + "cuisine": "chinese", + "ingredients": [ + "water", + "ginger", + "oyster sauce", + "lettuce", + "water chestnuts", + "cooking wine", + "oysters", + "garlic", + "ground white pepper", + "sugar", + "ground pork", + "salt" + ] + }, + { + "id": 9363, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "asparagus", + "peanut oil", + "boneless skinless chicken breast halves", + "fresh ginger", + "sea salt", + "red bell pepper", + "lime", + "low sodium chicken broth", + "garlic cloves", + "asian fish sauce", + "thai basil", + "yellow onion", + "thai green curry paste" + ] + }, + { + "id": 48995, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "milk", + "sugar", + "butter" + ] + }, + { + "id": 44300, + "cuisine": "southern_us", + "ingredients": [ + "lard", + "self rising flour", + "milk", + "softened butter" + ] + }, + { + "id": 16831, + "cuisine": "chinese", + "ingredients": [ + "crushed red pepper", + "kosher salt", + "scallions", + "seedless cucumber", + "rice vinegar", + "sesame seeds", + "toasted sesame oil" + ] + }, + { + "id": 8847, + "cuisine": "mexican", + "ingredients": [ + "soy sauce", + "apple cider vinegar", + "bay leaf", + "beef round", + "ancho", + "chile negro", + "canned chipotles", + "onions", + "allspice", + "kosher salt", + "vegetable oil", + "adobo sauce", + "cumin", + "chicken broth", + "seeds", + "garlic cloves", + "oregano" + ] + }, + { + "id": 35602, + "cuisine": "thai", + "ingredients": [ + "ketchup", + "Tabasco Pepper Sauce", + "peanut butter", + "canola oil", + "brown sugar", + "minced ginger", + "garlic", + "lemon juice", + "pepper", + "red wine vinegar", + "ground coriander", + "soy sauce", + "sesame oil", + "purple onion", + "hot water" + ] + }, + { + "id": 47069, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "salt", + "ground cumin", + "ground ginger", + "butter", + "onions", + "red lentils", + "potatoes", + "green pepper", + "tomatoes", + "garlic", + "Madras curry powder" + ] + }, + { + "id": 2351, + "cuisine": "filipino", + "ingredients": [ + "salmon", + "ground black pepper", + "dry white wine", + "purple onion", + "water", + "steamed white rice", + "calamansi juice", + "kosher salt", + "radishes", + "vegetable oil", + "garlic cloves", + "fish sauce", + "white miso", + "roma tomatoes", + "mustard greens" + ] + }, + { + "id": 2364, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "salt", + "onions", + "white bread", + "lemon", + "shrimp", + "tomatoes", + "paprika", + "fillets", + "dry white wine", + "squid" + ] + }, + { + "id": 37012, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "chickpeas", + "onions", + "sea salt", + "lemon juice", + "olive oil", + "ground coriander", + "cumin", + "cayenne pepper", + "chopped cilantro" + ] + }, + { + "id": 30169, + "cuisine": "thai", + "ingredients": [ + "serrano chilies", + "fresh cilantro", + "low sodium chicken stock", + "galangal", + "brown sugar", + "thai basil", + "shrimp", + "chopped cilantro fresh", + "fish sauce", + "shiitake", + "garlic cloves", + "peppercorns", + "lime zest", + "lemongrass", + "shallots", + "fresh lime juice", + "canola oil" + ] + }, + { + "id": 37910, + "cuisine": "british", + "ingredients": [ + "water", + "large eggs", + "heavy cream", + "brandy", + "granulated sugar", + "dates", + "butterscotch sauce", + "baking soda", + "half & half", + "vanilla extract", + "light brown sugar", + "unsalted butter", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 36884, + "cuisine": "japanese", + "ingredients": [ + "beet juice", + "water", + "all-purpose flour", + "potato starch", + "salt", + "flour", + "beets" + ] + }, + { + "id": 6216, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "ground black pepper", + "acini di pepe", + "olive oil", + "grated lemon zest", + "unsalted butter" + ] + }, + { + "id": 16975, + "cuisine": "italian", + "ingredients": [ + "Pillsbury™ classic pizza crust", + "pepperoni", + "olive oil", + "salami", + "italian seasoning", + "mozzarella cheese", + "marinara sauce", + "ham", + "parmesan cheese", + "provolone cheese" + ] + }, + { + "id": 41552, + "cuisine": "korean", + "ingredients": [ + "neutral oil", + "bean paste", + "sherry vinegar", + "kochujang" + ] + }, + { + "id": 7258, + "cuisine": "chinese", + "ingredients": [ + "cremini mushrooms", + "udon", + "ginger", + "carrots", + "olive oil", + "sesame oil", + "filet", + "soy sauce", + "broccoli florets", + "garlic", + "brown sugar", + "ground black pepper", + "crushed red pepper flakes", + "oyster sauce" + ] + }, + { + "id": 6587, + "cuisine": "italian", + "ingredients": [ + "white chocolate", + "cooking spray", + "grated lemon zest", + "lemon extract", + "salt", + "baking soda", + "vanilla extract", + "sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 4923, + "cuisine": "french", + "ingredients": [ + "cherry tomatoes", + "lemon slices", + "capers", + "extra-virgin olive oil", + "black sea bass", + "fresh thyme", + "garlic cloves", + "black pepper", + "salt" + ] + }, + { + "id": 23553, + "cuisine": "chinese", + "ingredients": [ + "chili flakes", + "chicken breast halves", + "salt", + "soy sauce", + "ginger", + "corn starch", + "sugar", + "rice wine", + "scallions", + "light soy sauce", + "garlic", + "toasted sesame seeds" + ] + }, + { + "id": 14402, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "olive oil", + "butter", + "mozzarella cheese", + "ground black pepper", + "fresh parsley", + "canned low sodium chicken broth", + "radicchio", + "salt", + "water", + "dry white wine", + "onions" + ] + }, + { + "id": 35871, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "salt", + "stewed tomatoes", + "onions", + "dried salted codfish", + "ackee", + "oil" + ] + }, + { + "id": 2264, + "cuisine": "chinese", + "ingredients": [ + "ginger", + "garlic chili sauce", + "soy sauce", + "rice vinegar", + "boiling water", + "sugar", + "salt", + "ramps", + "sesame oil", + "all-purpose flour", + "canola oil" + ] + }, + { + "id": 44321, + "cuisine": "indian", + "ingredients": [ + "sugar", + "salt", + "plain yogurt", + "ghee", + "warm water", + "all-purpose flour", + "melted butter", + "active dry yeast" + ] + }, + { + "id": 26381, + "cuisine": "indian", + "ingredients": [ + "serrano chilies", + "cumin seed", + "coriander", + "ginger", + "mustard seeds", + "grated coconut", + "lemon juice", + "salt", + "onions" + ] + }, + { + "id": 3618, + "cuisine": "southern_us", + "ingredients": [ + "cooked rice", + "large egg whites", + "all-purpose flour", + "butter-margarine blend", + "baking powder", + "sugar", + "frozen whole kernel corn", + "black pepper", + "salt" + ] + }, + { + "id": 3603, + "cuisine": "british", + "ingredients": [ + "light brown sugar", + "baking powder", + "self rising flour", + "custard", + "black treacle", + "butter", + "large eggs", + "golden syrup" + ] + }, + { + "id": 14216, + "cuisine": "mexican", + "ingredients": [ + "lime", + "serrano peppers", + "vegetable broth", + "carrots", + "roasted tomatoes", + "black beans", + "poblano peppers", + "ancho powder", + "yellow onion", + "ancho chile pepper", + "ground oregano", + "hominy", + "cinnamon", + "avocado oil", + "red bell pepper", + "cumin", + "fresh cilantro", + "radishes", + "paprika", + "garlic cloves", + "arbol chile" + ] + }, + { + "id": 44531, + "cuisine": "thai", + "ingredients": [ + "sweet chili sauce", + "egg whites", + "salt", + "corn starch", + "lime juice", + "baking powder", + "all-purpose flour", + "water", + "boneless skinless chicken breasts", + "cilantro leaves", + "sesame", + "cooking oil", + "garlic", + "oil" + ] + }, + { + "id": 36275, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "carrots", + "turnips", + "garlic", + "potatoes", + "onions", + "chicken legs", + "salt" + ] + }, + { + "id": 43828, + "cuisine": "southern_us", + "ingredients": [ + "gelatin", + "mayonaise", + "chopped pecans", + "crushed pineapple", + "raspberries", + "applesauce" + ] + }, + { + "id": 39243, + "cuisine": "mexican", + "ingredients": [ + "cider vinegar", + "Mexican oregano", + "garlic", + "cooked white rice", + "chicken stock", + "tortillas", + "tomatillos", + "bacon grease", + "russet", + "ground black pepper", + "chile pepper", + "yellow onion", + "ground cumin", + "kosher salt", + "bay leaves", + "cilantro sprigs", + "pork shoulder" + ] + }, + { + "id": 1780, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "fresh chives", + "leeks", + "fresh parsley", + "minced onion", + "sliced mushrooms", + "olive oil", + "salt" + ] + }, + { + "id": 34460, + "cuisine": "filipino", + "ingredients": [ + "sweet chili sauce", + "salt", + "flour", + "panko breadcrumbs", + "pepper", + "oil", + "eggs", + "sweetened coconut flakes", + "large shrimp" + ] + }, + { + "id": 38494, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "spring onions", + "lower sodium chicken broth", + "panko", + "fusilli", + "olive oil", + "dry white wine", + "kosher salt", + "ground black pepper" + ] + }, + { + "id": 17232, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "fresh basil", + "chunky tomato sauce", + "extra-virgin olive oil", + "mozzarella cheese", + "rolls" + ] + }, + { + "id": 20898, + "cuisine": "chinese", + "ingredients": [ + "cider vinegar", + "chinese noodles", + "salt", + "carrots", + "celery", + "dark soy sauce", + "tahini", + "szechwan peppercorns", + "Chinese sesame paste", + "beansprouts", + "hand", + "green onions", + "pressed tofu", + "chinkiang vinegar", + "sugar", + "regular soy sauce", + "balsamic vinegar", + "oil", + "toasted sesame oil" + ] + }, + { + "id": 47425, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chile pepper", + "corn tortillas", + "sliced black olives", + "garlic", + "shredded cheddar cheese", + "tempeh", + "onions", + "jalapeno chilies", + "enchilada sauce" + ] + }, + { + "id": 5201, + "cuisine": "british", + "ingredients": [ + "large eggs", + "salt", + "milk", + "all purpose unbleached flour", + "unsalted butter", + "poppy seeds", + "sugar", + "baking powder" + ] + }, + { + "id": 39769, + "cuisine": "indian", + "ingredients": [ + "semolina flour", + "vegetable oil", + "black mustard seeds", + "kosher salt", + "urad dal", + "onions", + "sugar", + "green peas", + "carrots", + "chile powder", + "water", + "curry", + "greens" + ] + }, + { + "id": 48379, + "cuisine": "french", + "ingredients": [ + "carrots", + "diced onions", + "beef broth", + "navy beans", + "bay leaf" + ] + }, + { + "id": 6551, + "cuisine": "mexican", + "ingredients": [ + "potatoes", + "carrots", + "water", + "salsa", + "onions", + "beef stock cubes", + "ground beef", + "milk", + "dry bread crumbs", + "chopped cilantro fresh" + ] + }, + { + "id": 1268, + "cuisine": "russian", + "ingredients": [ + "milk", + "heavy cream", + "sour cream", + "unsalted butter", + "buckwheat flour", + "active dry yeast", + "salt", + "caviar", + "sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 25841, + "cuisine": "italian", + "ingredients": [ + "red pepper flakes", + "lemon juice", + "olive oil", + "salt", + "dried thyme", + "garlic", + "ground black pepper", + "bone-in chicken breasts" + ] + }, + { + "id": 48607, + "cuisine": "thai", + "ingredients": [ + "white vinegar", + "soy sauce", + "crushed garlic", + "oil", + "fish sauce", + "chili powder", + "soybean sprouts", + "carrots", + "eggs", + "spring onions", + "salt", + "juice", + "sugar", + "rice noodles", + "roasted peanuts", + "chicken" + ] + }, + { + "id": 8562, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "ground red pepper", + "purple onion", + "boneless skinless chicken breast halves", + "avocado", + "garlic powder", + "paprika", + "corn tortillas", + "ground cumin", + "dried thyme", + "bottled low sodium salsa", + "salt", + "dried oregano", + "romaine lettuce", + "cooking spray", + "non-fat sour cream", + "fresh lime juice" + ] + }, + { + "id": 5639, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "large garlic cloves", + "long grain white rice", + "scallion greens", + "unsalted butter", + "medium shrimp", + "tomato sauce", + "salt", + "ground cumin", + "chicken broth", + "bell pepper", + "onions" + ] + }, + { + "id": 21429, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "milk", + "sharp cheddar cheese", + "jack cheese", + "butter", + "onions", + "water", + "bacon", + "spinach", + "hot pepper sauce", + "shrimp" + ] + }, + { + "id": 31192, + "cuisine": "korean", + "ingredients": [ + "eggs", + "soy sauce", + "zucchini", + "salt", + "beansprouts", + "spinach", + "minced garlic", + "red pepper", + "carrots", + "cooked rice", + "black pepper", + "sesame oil", + "shredded nori", + "sugar", + "roasted sesame seeds", + "crushed red pepper flakes", + "ground meat" + ] + }, + { + "id": 8792, + "cuisine": "korean", + "ingredients": [ + "eggs", + "rice cakes", + "dumplings", + "cold water", + "pepper", + "scallions", + "nori", + "low sodium soy sauce", + "beef brisket", + "garlic cloves", + "fish sauce", + "salt", + "toasted sesame oil" + ] + }, + { + "id": 17609, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "jalapeno chilies", + "garlic cloves", + "monterey jack", + "water", + "tortilla chips", + "onions", + "tomato sauce", + "extra-virgin olive oil", + "chopped cilantro", + "large eggs", + "freshly ground pepper", + "dried oregano" + ] + }, + { + "id": 29831, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "extra-virgin olive oil", + "sea salt", + "vegetables", + "Italian bread" + ] + }, + { + "id": 9315, + "cuisine": "chinese", + "ingredients": [ + "zucchini", + "corn starch", + "onions", + "chicken broth", + "vegetable oil", + "mung bean sprouts", + "soy sauce", + "oyster sauce", + "cooked white rice", + "large eggs", + "red bell pepper", + "chicken" + ] + }, + { + "id": 36426, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "bay leaves", + "yellow onion", + "green bell pepper", + "water", + "salt", + "celery", + "minced garlic", + "Tabasco Pepper Sauce", + "ham hock", + "small red beans", + "brown rice", + "creole seasoning" + ] + }, + { + "id": 31684, + "cuisine": "irish", + "ingredients": [ + "cracked black pepper", + "smoked paprika", + "Guinness Beer", + "salt", + "white onion", + "crushed red pepper", + "pork butt", + "garlic powder", + "loin" + ] + }, + { + "id": 1241, + "cuisine": "italian", + "ingredients": [ + "pesto", + "tortellini", + "dried oregano", + "cherry tomatoes", + "garlic", + "fresh basil", + "parmesan cheese", + "salt", + "black pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 38255, + "cuisine": "korean", + "ingredients": [ + "sugar", + "garlic", + "red bell pepper", + "noodles", + "kosher salt", + "carrots", + "onions", + "soy sauce", + "scallions", + "toasted sesame oil", + "canola oil", + "filet mignon", + "button mushrooms", + "ground white pepper", + "toasted sesame seeds" + ] + }, + { + "id": 8925, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "vegetable stock", + "garlic cloves", + "mixed mushrooms", + "yellow onion", + "gluten-free tamari", + "sambal olek", + "rice vinegar", + "corn starch", + "fresh ginger", + "vegetable oil", + "scallions" + ] + }, + { + "id": 26190, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "oil", + "garlic", + "onions", + "chicken breasts", + "chipotles in adobo", + "tomatoes", + "salt" + ] + }, + { + "id": 49468, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "ground red pepper", + "red bell pepper", + "fresh basil", + "salt", + "fresh rosemary", + "balsamic vinegar", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 10435, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "chopped cilantro fresh", + "ground cinnamon", + "carrots", + "ground ginger", + "vinegar", + "honey", + "fresh parsley" + ] + }, + { + "id": 13273, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "diced tomatoes", + "white onion", + "vegetable oil", + "chopped cilantro fresh", + "vermicelli", + "garlic", + "water", + "knorr reduc sodium chicken flavor bouillon" + ] + }, + { + "id": 44580, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "vegetable oil", + "chopped cilantro fresh", + "white vinegar", + "ground pepper", + "tomatillos", + "water", + "coarse salt", + "sugar", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 2566, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "garlic", + "all-purpose flour", + "corn flour", + "sugar", + "capsicum", + "crushed red pepper", + "tomato ketchup", + "spring onions", + "paneer", + "hot sauce", + "onions", + "soy sauce", + "ginger", + "salt", + "oil" + ] + }, + { + "id": 31049, + "cuisine": "italian", + "ingredients": [ + "shallots", + "soppressata", + "baby greens", + "fresh tarragon", + "parmesan cheese", + "grapefruit juice", + "walnut oil", + "red grapefruit", + "white wine vinegar" + ] + }, + { + "id": 28303, + "cuisine": "french", + "ingredients": [ + "ground ginger", + "butter", + "cognac", + "onions", + "beurre manié", + "ducklings", + "muscadet", + "ground cloves", + "raisins", + "freshly ground pepper", + "potatoes", + "salt", + "carrots" + ] + }, + { + "id": 7358, + "cuisine": "italian", + "ingredients": [ + "pesto", + "chees fresh mozzarella", + "roasted red peppers", + "white sandwich bread", + "unsalted butter", + "arugula", + "meat" + ] + }, + { + "id": 7943, + "cuisine": "jamaican", + "ingredients": [ + "eggs", + "lime juice", + "unsalted butter", + "vanilla extract", + "white sugar", + "toasted pecans", + "baking soda", + "baking powder", + "all-purpose flour", + "lime zest", + "topping", + "bananas", + "flaked coconut", + "cream cheese", + "brown sugar", + "milk", + "dark rum", + "salt" + ] + }, + { + "id": 5833, + "cuisine": "french", + "ingredients": [ + "saffron threads", + "pernod", + "tomato juice", + "littleneck clams", + "celery", + "lobster tails", + "fennel seeds", + "dried thyme", + "leeks", + "garlic cloves", + "plum tomatoes", + "mussels", + "bottled clam juice", + "ground black pepper", + "grouper", + "onions", + "dried tarragon leaves", + "olive oil", + "dry white wine", + "flat leaf parsley", + "large shrimp" + ] + }, + { + "id": 31966, + "cuisine": "vietnamese", + "ingredients": [ + "chicken wings", + "minced garlic", + "cilantro leaves", + "brown sugar", + "lemongrass", + "chillies", + "fish sauce", + "lime juice", + "oil", + "soy sauce", + "vegetable oil" + ] + }, + { + "id": 30756, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "vanilla", + "cinnamon", + "hot water", + "french bread", + "peach juice", + "peaches", + "butter", + "sweetened condensed milk" + ] + }, + { + "id": 42516, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "urad dal", + "onions", + "tumeric", + "broccoli florets", + "oil", + "water", + "channa dal", + "bay leaf", + "red chili powder", + "potatoes", + "salt", + "cumin" + ] + }, + { + "id": 23607, + "cuisine": "italian", + "ingredients": [ + "red chili peppers", + "baby arugula", + "Stonefire Italian Artisan Pizza Crust", + "buffalo mozarella", + "olive oil", + "garlic cloves", + "prosciutto", + "fresh mint" + ] + }, + { + "id": 46973, + "cuisine": "moroccan", + "ingredients": [ + "lower sodium chicken broth", + "olive oil", + "ground red pepper", + "chopped onion", + "ground cumin", + "tomato paste", + "water", + "cooking spray", + "green peas", + "pimento stuffed green olives", + "ground cinnamon", + "honey", + "sweet potatoes", + "lamb shoulder", + "ground turmeric", + "kosher salt", + "large eggs", + "raisins", + "garlic cloves" + ] + }, + { + "id": 30567, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "red pepper flakes", + "fresh mint", + "fresh basil", + "vegetable oil", + "carrots", + "scallion greens", + "rice noodles", + "english cucumber", + "asian dressing", + "boneless, skinless chicken breast", + "coarse salt", + "beansprouts" + ] + }, + { + "id": 11782, + "cuisine": "brazilian", + "ingredients": [ + "water", + "cold water", + "sweetened condensed milk", + "lime", + "sugar", + "ice" + ] + }, + { + "id": 3408, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "ground nutmeg", + "asiago", + "eggs", + "garlic powder", + "marinara sauce", + "melted butter", + "water", + "finely chopped onion", + "all-purpose flour", + "ground chicken", + "ground black pepper", + "salt" + ] + }, + { + "id": 8382, + "cuisine": "thai", + "ingredients": [ + "pepper", + "basil leaves", + "extra-virgin olive oil", + "fish sauce", + "lemongrass", + "cilantro", + "salt", + "low sodium vegetable broth", + "rice noodles", + "light coconut milk", + "brown sugar", + "serrano peppers", + "Thai red curry paste", + "shrimp" + ] + }, + { + "id": 15911, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "mustard greens", + "vegetable oil", + "turnip greens", + "balsamic vinegar", + "dijon mustard", + "chopped pecans" + ] + }, + { + "id": 20452, + "cuisine": "italian", + "ingredients": [ + "ripe olives", + "artichok heart marin", + "iceberg lettuce", + "romaine lettuce", + "italian salad dressing", + "fresh mushrooms" + ] + }, + { + "id": 7476, + "cuisine": "southern_us", + "ingredients": [ + "parmesan cheese", + "salt", + "water", + "grits", + "butter" + ] + }, + { + "id": 18056, + "cuisine": "moroccan", + "ingredients": [ + "cinnamon", + "salt", + "cumin", + "sugar", + "ginger", + "garlic cloves", + "tumeric", + "paprika", + "cayenne pepper", + "boneless skinless chicken breasts", + "extra-virgin olive oil", + "coriander" + ] + }, + { + "id": 44942, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "large eggs", + "vanilla extract", + "grated lemon peel", + "unsalted butter", + "dark rum", + "all-purpose flour", + "large egg yolks", + "whole milk", + "salt", + "strawberry compote", + "dry yeast", + "whipping cream", + "cream cheese" + ] + }, + { + "id": 47036, + "cuisine": "british", + "ingredients": [ + "cold water", + "unsalted butter", + "salt", + "eggs", + "vegetable shortening", + "tart filling", + "ice water", + "all-purpose flour", + "sugar", + "heavy cream" + ] + }, + { + "id": 45272, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "tomatillos", + "lemon juice", + "serrano peppers", + "purple onion", + "chicken thighs", + "jalapeno chilies", + "garlic", + "onions", + "cider vinegar", + "cilantro", + "corn tortillas" + ] + }, + { + "id": 29375, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chicken breasts", + "raw cashews", + "pepper flakes", + "water", + "arrowroot powder", + "tomato ketchup", + "pepper", + "brown rice", + "rice vinegar", + "sugar", + "olive oil", + "ginger", + "snow peas" + ] + }, + { + "id": 46894, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "cinnamon", + "dried chile", + "water", + "garlic", + "soy sauce", + "star anise", + "peanuts", + "salt" + ] + }, + { + "id": 42588, + "cuisine": "mexican", + "ingredients": [ + "cayenne", + "peanut oil", + "kosher salt", + "red wine vinegar", + "dried oregano", + "green cabbage", + "queso fresco", + "carrots", + "olive oil", + "salt", + "masa harina" + ] + }, + { + "id": 1861, + "cuisine": "french", + "ingredients": [ + "sliced leeks", + "russet potatoes", + "low salt chicken broth", + "asparagus", + "whipping cream", + "butter", + "chopped fresh mint" + ] + }, + { + "id": 32688, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "bread crumbs", + "boneless skinless chicken breasts", + "pepperoni", + "large eggs", + "all-purpose flour", + "mozzarella cheese", + "vegetable oil" + ] + }, + { + "id": 13504, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "egg whites", + "salt", + "rice flour", + "vinegar", + "garlic", + "oil", + "black pepper", + "flour", + "serrano", + "toasted sesame seeds", + "water", + "sesame oil", + "scallions", + "cherrystone clams" + ] + }, + { + "id": 12470, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "cooking spray", + "garlic cloves", + "pitas", + "salt", + "dried oregano", + "black pepper", + "romaine lettuce leaves", + "feta cheese crumbles", + "fat free yogurt", + "flank steak", + "fresh lemon juice" + ] + }, + { + "id": 41971, + "cuisine": "brazilian", + "ingredients": [ + "milk", + "sweetened condensed milk", + "unsalted butter", + "vanilla extract", + "large egg yolks", + "chocolate milk mix" + ] + }, + { + "id": 14988, + "cuisine": "italian", + "ingredients": [ + "table salt", + "water", + "garlic cloves", + "semolina flour", + "olive oil", + "sun-dried tomatoes in oil", + "hot red pepper flakes", + "active dry yeast", + "red bell pepper", + "sugar", + "coarse salt" + ] + }, + { + "id": 47576, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "stewed tomatoes", + "celery", + "jalapeno chilies", + "salt", + "boneless skinless chicken breast halves", + "pepper", + "garlic", + "onions", + "mushrooms", + "creole style seasoning" + ] + }, + { + "id": 43125, + "cuisine": "vietnamese", + "ingredients": [ + "mint leaves", + "garlic", + "tuong", + "rice noodles", + "scallions", + "fresh ginger", + "tatsoi", + "bok choy", + "chicken stock", + "chicken breasts", + "cilantro leaves" + ] + }, + { + "id": 18856, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "pepper", + "green onions", + "sugar", + "mirin", + "salt", + "sake", + "panko", + "ginger", + "soy sauce", + "soft tofu", + "onions" + ] + }, + { + "id": 27129, + "cuisine": "french", + "ingredients": [ + "black pepper", + "vegetable shortening", + "all-purpose flour", + "large eggs", + "salt", + "onions", + "unsalted butter", + "bacon slices", + "grated nutmeg", + "ice water", + "crème fraîche" + ] + }, + { + "id": 23526, + "cuisine": "french", + "ingredients": [ + "vegetable oil cooking spray", + "dry sherry", + "chicken breast halves", + "fresh mushrooms", + "reduced sodium chicken flavor stuffing mix", + "reduced fat swiss cheese", + "reduced fat reduced sodium cream of mushroom soup", + "butter", + "ham" + ] + }, + { + "id": 32507, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "sugar", + "lasagna noodles", + "garlic cloves", + "eggs", + "dried basil", + "ricotta cheese", + "onions", + "parsley flakes", + "water", + "grated parmesan cheese", + "cooked italian meatballs", + "tomato sauce", + "part-skim mozzarella cheese", + "diced tomatoes", + "garlic salt" + ] + }, + { + "id": 26542, + "cuisine": "indian", + "ingredients": [ + "chiles", + "bay leaves", + "cumin seed", + "coriander seeds", + "grated nutmeg", + "mace", + "cinnamon", + "black peppercorns", + "whole cloves", + "green cardamom" + ] + }, + { + "id": 24583, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "baking soda", + "salt", + "milk", + "butter", + "sweet potatoes", + "all-purpose flour" + ] + }, + { + "id": 34011, + "cuisine": "french", + "ingredients": [ + "roquefort cheese", + "cooked bacon", + "butter", + "pastry shell", + "scallions", + "eggs", + "heavy cream" + ] + }, + { + "id": 16226, + "cuisine": "indian", + "ingredients": [ + "sugar", + "cardamom seeds", + "mustard seeds", + "plum tomatoes", + "fresh ginger", + "cumin seed", + "onions", + "curry powder", + "salt", + "salad oil", + "lemon", + "lemon juice", + "chopped cilantro fresh" + ] + }, + { + "id": 29116, + "cuisine": "southern_us", + "ingredients": [ + "red potato", + "boneless chuck roast", + "large eggs", + "sour cream", + "steak seasoning", + "water", + "vegetables", + "salt", + "cream of mushroom soup", + "dried basil", + "beef", + "carrots", + "onions", + "pepper", + "garlic powder", + "vegetable oil", + "self-rising cornmeal" + ] + }, + { + "id": 12180, + "cuisine": "southern_us", + "ingredients": [ + "rub seasoning", + "olive oil", + "apple cider vinegar", + "shredded mozzarella cheese", + "cabbage", + "water", + "unsalted butter", + "sea salt", + "gluten free barbecue sauce", + "milk", + "agave nectar", + "salt", + "pork butt", + "mayonaise", + "ground pepper", + "slaw mix", + "cornmeal" + ] + }, + { + "id": 19038, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "pepper", + "potatoes", + "parsley", + "salt", + "onions", + "tomato paste", + "unsalted butter", + "bay leaves", + "garlic", + "carrots", + "celery root", + "rosemary sprigs", + "beef", + "shallots", + "bouquet garni", + "thyme", + "clove", + "olive oil", + "flour", + "red wine", + "cardamom pods", + "peppercorns" + ] + }, + { + "id": 12072, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "vegetable oil", + "chopped cilantro", + "whole wheat spaghetti", + "rice vinegar", + "cooked chicken", + "salt", + "sliced green onions", + "soy sauce", + "sesame oil", + "chili garlic paste" + ] + }, + { + "id": 28633, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "dried apricot", + "garlic", + "fresh parsley", + "sliced almonds", + "beef stock", + "ras el hanout", + "marsala wine", + "harissa paste", + "lamb shoulder", + "red lentils", + "honey", + "vegetable oil", + "purple onion" + ] + }, + { + "id": 47038, + "cuisine": "chinese", + "ingredients": [ + "cooked rice", + "peanut oil", + "water chestnuts", + "onions", + "soy sauce", + "shrimp", + "eggs", + "frozen broccoli", + "frozen peas" + ] + }, + { + "id": 18226, + "cuisine": "spanish", + "ingredients": [ + "fresh marjoram", + "purple onion", + "country bread", + "cold water", + "sherry wine vinegar", + "garlic cloves", + "red bell pepper", + "tomatoes", + "extra-virgin olive oil", + "smoked paprika", + "ground cumin", + "green onions", + "cayenne pepper", + "cucumber" + ] + }, + { + "id": 34591, + "cuisine": "greek", + "ingredients": [ + "lemon", + "large eggs", + "long-grain rice", + "low sodium chicken broth", + "fresh lemon juice", + "chicken breast halves" + ] + }, + { + "id": 1458, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "coriander", + "eggs", + "chili powder", + "mustard seeds", + "garlic paste", + "florets", + "onions", + "curry leaves", + "leaves", + "oil", + "ground turmeric" + ] + }, + { + "id": 22720, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "chicken stock", + "rice", + "salt", + "pepper", + "chicken" + ] + }, + { + "id": 21280, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "ice water", + "freshly ground pepper", + "vidalia onion", + "fresh thyme leaves", + "salt", + "eggs", + "dry white wine", + "bacon", + "cream", + "butter", + "all-purpose flour" + ] + }, + { + "id": 46328, + "cuisine": "indian", + "ingredients": [ + "unsweetened coconut milk", + "brown mustard seeds", + "fresh lemon juice", + "water", + "salt", + "ground turmeric", + "hot red pepper flakes", + "vegetable oil", + "chopped cilantro", + "masoor dal", + "cumin seed" + ] + }, + { + "id": 9253, + "cuisine": "southern_us", + "ingredients": [ + "dark corn syrup", + "all-purpose flour", + "sugar", + "salt", + "pecan halves", + "vanilla extract", + "eggs", + "pastry shell" + ] + }, + { + "id": 7016, + "cuisine": "southern_us", + "ingredients": [ + "quail", + "cajun seasoning", + "ground red pepper", + "all-purpose flour", + "ground black pepper", + "salt", + "water", + "vegetable oil" + ] + }, + { + "id": 36038, + "cuisine": "mexican", + "ingredients": [ + "poblano peppers", + "garlic", + "lard", + "olive oil", + "tomatillos", + "bone-in pork chops", + "onions", + "ground black pepper", + "epazote", + "green pumpkin seeds", + "chicken broth", + "jalapeno chilies", + "salt", + "chopped cilantro" + ] + }, + { + "id": 9466, + "cuisine": "moroccan", + "ingredients": [ + "sesame seeds", + "spices", + "ground cumin", + "ground ginger", + "ground black pepper", + "ground cardamom", + "fennel seeds", + "ground nutmeg", + "ground allspice", + "ground cloves", + "chicken breasts", + "coriander" + ] + }, + { + "id": 18821, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "sprouts", + "boneless skinless chicken breasts", + "black olives", + "celery ribs", + "red wine vinegar", + "purple onion", + "ground black pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 19369, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "chopped green bell pepper", + "white fleshed fish", + "onions", + "water", + "shells", + "flat leaf parsley", + "plantains", + "manioc flour", + "yellow bell pepper", + "garlic cloves", + "chopped cilantro fresh", + "fresh cilantro", + "salt", + "fresh lime juice" + ] + }, + { + "id": 6789, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "evaporated milk", + "flour", + "tangzhong roux", + "bread flour", + "water", + "instant yeast", + "butter", + "salt", + "milk", + "powdered milk", + "raw sugar", + "condensed milk", + "caster sugar", + "unsalted butter", + "egg yolks", + "cake flour" + ] + }, + { + "id": 34913, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "green onions", + "non-fat sour cream", + "reduced fat monterey jack cheese", + "minced garlic", + "chili powder", + "ground cumin", + "reduced fat cheddar cheese", + "chicken breast halves", + "corn tortillas", + "vegetable oil cooking spray", + "water", + "vegetable oil" + ] + }, + { + "id": 32648, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "garlic cloves", + "plum tomatoes", + "dry white wine", + "onions", + "olive oil", + "fresh lemon juice", + "chicken broth", + "turkey tenderloins", + "grated lemon peel" + ] + }, + { + "id": 38215, + "cuisine": "french", + "ingredients": [ + "bread crumbs", + "heavy cream", + "fennel bulb", + "salt", + "unsalted butter", + "extra-virgin olive oil", + "chicken stock", + "yukon gold potatoes", + "freshly ground pepper" + ] + }, + { + "id": 20943, + "cuisine": "japanese", + "ingredients": [ + "frozen edamame beans", + "chili oil", + "tamari soy sauce", + "frozen peas", + "mirin", + "ginger", + "cilantro leaves", + "asparagus", + "sunflower oil", + "seasoned rice wine vinegar", + "udon", + "cornflour", + "firm tofu" + ] + }, + { + "id": 37507, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "grated parmesan cheese", + "shredded mozzarella cheese", + "fresh basil", + "olive oil", + "boneless skinless chicken breasts", + "dried oregano", + "pasta", + "water", + "low sodium chicken broth", + "garlic cloves", + "black pepper", + "whole peeled tomatoes", + "crushed red pepper flakes" + ] + }, + { + "id": 33275, + "cuisine": "moroccan", + "ingredients": [ + "water", + "vegetable oil", + "yellow onion", + "large eggs", + "gruyere cheese", + "chicken thighs", + "ground black pepper", + "ricotta cheese", + "phyllo pastry", + "saffron threads", + "egg yolks", + "salt" + ] + }, + { + "id": 21951, + "cuisine": "thai", + "ingredients": [ + "peeled fresh ginger", + "cilantro leaves", + "fresh lime juice", + "fat free less sodium chicken broth", + "shallots", + "bird chile", + "medium shrimp", + "kaffir lime leaves", + "cilantro stems", + "Thai fish sauce", + "galangal", + "lemongrass", + "vegetable oil", + "arbol chile" + ] + }, + { + "id": 28712, + "cuisine": "mexican", + "ingredients": [ + "hot pepper sauce", + "ground chuck", + "chile pepper", + "English muffins", + "monterey jack", + "avocado", + "dijon mustard" + ] + }, + { + "id": 25867, + "cuisine": "thai", + "ingredients": [ + "basil leaves", + "grated lemon zest", + "lime zest", + "vegetable oil", + "skirt steak", + "sambal ulek", + "cilantro leaves", + "asian fish sauce", + "flank steak", + "garlic cloves" + ] + }, + { + "id": 8532, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "green onions", + "water", + "sour cream", + "shredded cheddar cheese", + "salsa", + "tomatoes", + "wide egg noodles", + "ground beef" + ] + }, + { + "id": 22584, + "cuisine": "indian", + "ingredients": [ + "sugar", + "butter", + "salt", + "cashew nuts", + "tomatoes", + "garam masala", + "ginger", + "cumin seed", + "sesame seeds", + "heavy cream", + "green chilies", + "asafetida", + "tumeric", + "coriander powder", + "paneer", + "chopped cilantro" + ] + }, + { + "id": 48531, + "cuisine": "southern_us", + "ingredients": [ + "bone-in chicken breast halves", + "salt", + "butter", + "cream of mushroom soup", + "pepper", + "all-purpose flour", + "buttermilk", + "fresh parsley" + ] + }, + { + "id": 17266, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "light brown sugar", + "salt", + "chicken breasts" + ] + }, + { + "id": 857, + "cuisine": "italian", + "ingredients": [ + "slivered almonds", + "diced tomatoes", + "olive oil", + "fat free less sodium chicken broth", + "red bell pepper", + "white bread", + "sherry vinegar" + ] + }, + { + "id": 13166, + "cuisine": "italian", + "ingredients": [ + "baking powder", + "vanilla extract", + "white sugar", + "water", + "butter", + "grated lemon zest", + "eggs", + "ricotta cheese", + "all-purpose flour", + "milk", + "white rice", + "lemon juice" + ] + }, + { + "id": 13055, + "cuisine": "chinese", + "ingredients": [ + "steamed rice", + "rice wine", + "bone in chicken thighs", + "soy sauce", + "fresh ginger", + "chinese five-spice powder", + "firmly packed brown sugar", + "honey", + "sesame oil", + "water", + "green onions", + "bok choy" + ] + }, + { + "id": 29720, + "cuisine": "southern_us", + "ingredients": [ + "bread crumbs", + "worcestershire sauce", + "ground chuck", + "large eggs", + "onions", + "pepper", + "salt", + "ketchup", + "gravy" + ] + }, + { + "id": 14799, + "cuisine": "french", + "ingredients": [ + "honey", + "all-purpose flour", + "sourdough starter", + "salt", + "gluten", + "bread flour", + "water", + "malt powder" + ] + }, + { + "id": 22804, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "ground black pepper", + "chopped celery", + "chopped onion", + "chopped tomatoes", + "vegetable oil", + "all-purpose flour", + "fresh parsley", + "dried thyme", + "bay leaves", + "salt", + "okra", + "cooked ham", + "black-eyed peas", + "garlic", + "cayenne pepper" + ] + }, + { + "id": 11582, + "cuisine": "french", + "ingredients": [ + "zucchini", + "thyme", + "olive oil", + "garlic cloves", + "plum tomatoes", + "large eggs", + "long grain white rice", + "parmigiano reggiano cheese", + "onions" + ] + }, + { + "id": 12826, + "cuisine": "mexican", + "ingredients": [ + "pumpkin seeds", + "baby greens", + "dressing", + "queso fresco" + ] + }, + { + "id": 17844, + "cuisine": "mexican", + "ingredients": [ + "rump roast", + "crushed garlic", + "salt and ground black pepper", + "white wine", + "chopped cilantro fresh", + "tomato sauce", + "green onions" + ] + }, + { + "id": 43210, + "cuisine": "italian", + "ingredients": [ + "pecorino romano cheese", + "salt", + "cracked black pepper", + "parmigiano reggiano cheese", + "spaghetti" + ] + }, + { + "id": 35336, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "oregano", + "black pepper", + "onion powder", + "chili powder", + "cumin", + "kosher salt", + "cayenne pepper" + ] + }, + { + "id": 5726, + "cuisine": "jamaican", + "ingredients": [ + "water", + "salt", + "black pepper", + "vegetable oil", + "onions", + "sugar", + "oxtails", + "thyme", + "pepper", + "garlic", + "butter beans" + ] + }, + { + "id": 12407, + "cuisine": "chinese", + "ingredients": [ + "chopped ham", + "rice", + "soy sauce", + "carrots", + "eggs", + "oil", + "peas", + "sliced green onions" + ] + }, + { + "id": 13473, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "sea salt", + "sugar", + "large eggs", + "corn starch", + "unsalted butter", + "vanilla extract", + "vanilla beans", + "half & half" + ] + }, + { + "id": 13391, + "cuisine": "chinese", + "ingredients": [ + "gluten-free hoisin sauce", + "gluten free soy sauce", + "garlic powder", + "honey", + "beef roast", + "ketchup", + "chinese five-spice powder" + ] + }, + { + "id": 3611, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "ground black pepper", + "low sodium chicken broth", + "onions", + "olive oil", + "grated parmesan cheese", + "garlic cloves", + "white wine", + "unsalted butter", + "basil leaves", + "large shrimp", + "corn kernels", + "roasted red peppers", + "sea salt" + ] + }, + { + "id": 32681, + "cuisine": "thai", + "ingredients": [ + "molasses", + "curry powder", + "pumpkin", + "chili sauce", + "coconut milk", + "coconut oil", + "pepper", + "lime", + "Thai red curry paste", + "roasted peanuts", + "jasmine rice", + "fresh cilantro", + "boneless skinless chicken breasts", + "creamy peanut butter", + "naan", + "soy sauce", + "water", + "fresh ginger", + "salt", + "pomegranate" + ] + }, + { + "id": 4840, + "cuisine": "indian", + "ingredients": [ + "grated coconut", + "olive oil", + "cabbage", + "curry leaves", + "lime juice", + "carrots", + "sugar", + "ground peanut", + "chillies", + "kosher salt", + "black mustard seeds" + ] + }, + { + "id": 28536, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "sweet potatoes", + "garlic", + "fillets", + "plum tomatoes", + "plain flour", + "lime juice", + "butter", + "oil", + "onions", + "water", + "spring onions", + "salt", + "chillies", + "ground cinnamon", + "fresh thyme", + "ginger", + "carrots", + "browning" + ] + }, + { + "id": 28865, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "lard", + "kosher salt", + "all purpose unbleached flour", + "cream of tartar", + "baking powder", + "baking soda", + "buttermilk" + ] + }, + { + "id": 26702, + "cuisine": "british", + "ingredients": [ + "potatoes", + "salt", + "shortening", + "baking powder", + "flour", + "cold water", + "haddock fillets" + ] + }, + { + "id": 9286, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "black pepper", + "maida flour", + "salt", + "corn starch", + "sugar", + "vinegar", + "red food coloring", + "green chilies", + "chopped cilantro", + "soy sauce", + "yoghurt", + "garlic", + "oil", + "chicken", + "red chili powder", + "garam masala", + "ginger", + "hot chili sauce", + "mustard seeds" + ] + }, + { + "id": 11718, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "seeds", + "unsalted dry roast peanuts", + "fresh lime juice", + "coconut", + "red pepper", + "cilantro leaves", + "fish sauce", + "green mango", + "garlic", + "fresh mint", + "red chili peppers", + "vegetable oil", + "salt", + "toasted sesame seeds" + ] + }, + { + "id": 29043, + "cuisine": "french", + "ingredients": [ + "water", + "butter", + "flat leaf parsley", + "dijon mustard", + "pork loin rib chops", + "olive oil", + "cornichons", + "shallots", + "garlic cloves" + ] + }, + { + "id": 12331, + "cuisine": "mexican", + "ingredients": [ + "beef", + "pico de gallo", + "rice", + "tortillas" + ] + }, + { + "id": 22483, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "lime", + "kidney beans", + "yellow bell pepper", + "beer", + "chipotles in adobo", + "tomatoes", + "sweet onion", + "orange bell pepper", + "vegetable stock", + "cilantro leaves", + "sour cream", + "ground cumin", + "avocado", + "fresh cilantro", + "olive oil", + "chili powder", + "salt", + "red bell pepper", + "shredded Monterey Jack cheese", + "black beans", + "yellow squash", + "zucchini", + "garlic", + "pinto beans", + "dried oregano" + ] + }, + { + "id": 12383, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "lemon juice", + "purple onion", + "serrano chile", + "kosher salt", + "chopped cilantro", + "grated lemon zest" + ] + }, + { + "id": 47634, + "cuisine": "italian", + "ingredients": [ + "pasta", + "sun-dried tomatoes", + "fresh parsley", + "dried basil", + "grated parmesan cheese", + "minced garlic", + "sliced black olives", + "boneless skinless chicken breast halves", + "olive oil", + "green onions" + ] + }, + { + "id": 42659, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "vegetable oil", + "fermented black beans", + "light soy sauce", + "chinese five-spice powder", + "chili pepper", + "roasted peanuts", + "roasted sesame seeds", + "garlic cloves" + ] + }, + { + "id": 18669, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "cracked black pepper", + "juice", + "celery ribs", + "sea salt", + "extra-virgin olive oil", + "onions", + "pancetta", + "italian plum tomatoes", + "dry red wine", + "carrots", + "fresh rosemary", + "rabbit", + "chopped fresh sage" + ] + }, + { + "id": 11391, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "garlic", + "olive oil", + "red pepper", + "fresh basil leaves", + "artichok heart marin", + "chopped walnuts", + "smoked turkey", + "refrigerated pizza dough", + "shredded mozzarella cheese" + ] + }, + { + "id": 25928, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "large eggs", + "onions", + "shredded cheddar cheese", + "ham", + "green bell pepper", + "vegetable oil" + ] + }, + { + "id": 41650, + "cuisine": "irish", + "ingredients": [ + "melted butter", + "whole wheat flour", + "all-purpose flour", + "molasses", + "golden raisins", + "eggs", + "baking soda", + "cream of tartar", + "wheat bran", + "buttermilk" + ] + }, + { + "id": 1584, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "butter", + "sugar", + "roasted peanuts" + ] + }, + { + "id": 32962, + "cuisine": "southern_us", + "ingredients": [ + "cajun seasoning", + "shrimp", + "canola oil", + "water", + "salt", + "grits", + "shredded cheddar cheese", + "garlic", + "red bell pepper", + "jalapeno chilies", + "yellow onion", + "plum tomatoes" + ] + }, + { + "id": 11539, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "shredded monterey jack cheese", + "refried beans", + "vegetable oil", + "oil", + "water", + "cooked chicken", + "garlic", + "flour tortillas", + "knorr reduc sodium chicken flavor bouillon", + "onions" + ] + }, + { + "id": 34813, + "cuisine": "indian", + "ingredients": [ + "cremini mushrooms", + "vegetable oil", + "chopped garlic", + "water", + "ginger", + "ground cumin", + "curry powder", + "boneless rib eye steaks", + "tomato paste", + "cayenne", + "chopped cilantro" + ] + }, + { + "id": 17379, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "ground black pepper", + "fresh tarragon", + "arborio rice", + "water", + "cooking spray", + "garlic cloves", + "Madeira", + "olive oil", + "butternut squash", + "monterey jack", + "pancetta", + "pinenuts", + "finely chopped onion", + "salt" + ] + }, + { + "id": 21858, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "olive oil", + "egg whites", + "crushed red pepper", + "fennel seeds", + "fronds", + "fennel", + "vegetable broth", + "ground cloves", + "artichoke hearts", + "egg yolks", + "garlic cloves", + "italian tomatoes", + "gyoza", + "large garlic cloves", + "dried oregano" + ] + }, + { + "id": 33777, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "peanut oil", + "ginger root", + "boneless skinless chicken breasts", + "garlic cloves", + "peanuts", + "scallions", + "cooked white rice", + "red chili peppers", + "szechwan peppercorns", + "corn starch" + ] + }, + { + "id": 23989, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "instant espresso powder", + "vanilla extract", + "sugar", + "mascarpone", + "Amaretti Cookies", + "unflavored gelatin", + "large egg yolks", + "whipping cream", + "cold water", + "vegetable oil spray", + "whole milk", + "hot water" + ] + }, + { + "id": 39530, + "cuisine": "thai", + "ingredients": [ + "water", + "crushed red pepper", + "bok choy", + "ground cumin", + "lemon grass", + "ground coriander", + "boneless skinless chicken breast halves", + "fresh ginger root", + "peanut oil", + "onions", + "fish sauce", + "garlic", + "coconut milk", + "chopped cilantro fresh" + ] + }, + { + "id": 21717, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "milk", + "fusilli", + "carrots", + "pecorino cheese", + "baked ham", + "salt", + "onions", + "tomato paste", + "ground black pepper", + "extra-virgin olive oil", + "ground beef", + "pancetta", + "water", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 28424, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "chiles", + "chopped cilantro fresh", + "fine sea salt", + "white onion", + "chopped garlic" + ] + }, + { + "id": 20581, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "hot chili oil", + "garlic", + "fresh ginger", + "sesame oil", + "rice vinegar", + "olive oil", + "green onions", + "cilantro leaves", + "brown sugar", + "regular soy sauce", + "sirloin steak", + "noodles" + ] + }, + { + "id": 38511, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "chili", + "garlic", + "sugar", + "spring onions", + "fish sauce", + "yellow bean sauce", + "minced pork", + "soy sauce", + "ginger" + ] + }, + { + "id": 6926, + "cuisine": "russian", + "ingredients": [ + "minced garlic", + "salt", + "pepper flakes", + "spices", + "ground lamb", + "finely chopped fresh parsley", + "white sandwich bread", + "plain yogurt", + "purple onion" + ] + }, + { + "id": 7405, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "flour", + "vegetable stock", + "cayenne pepper", + "chopped cilantro fresh", + "diced green chilies", + "chili powder", + "salt", + "shredded cheese", + "cumin", + "garlic powder", + "green onions", + "garlic", + "red enchilada sauce", + "oregano", + "black beans", + "flour tortillas", + "vegetable oil", + "yellow onion", + "ground beef" + ] + }, + { + "id": 3841, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "rolled oats", + "all-purpose flour", + "topping", + "fresh blueberries", + "corn starch", + "vanilla ice cream", + "unsalted butter", + "chopped walnuts", + "sugar", + "filling", + "fresh lemon juice" + ] + }, + { + "id": 40125, + "cuisine": "italian", + "ingredients": [ + "heavy cream", + "prosciutto", + "penne", + "parmigiano reggiano cheese" + ] + }, + { + "id": 45194, + "cuisine": "brazilian", + "ingredients": [ + "garlic", + "olive oil", + "shrimp", + "tomatoes", + "cream cheese", + "pumpkin", + "onions" + ] + }, + { + "id": 14636, + "cuisine": "british", + "ingredients": [ + "savoy cabbage", + "ground black pepper", + "water", + "purple onion", + "kosher salt", + "potatoes", + "whole grain dijon mustard", + "pork sausages" + ] + }, + { + "id": 1237, + "cuisine": "british", + "ingredients": [ + "beef kidney", + "salt", + "frozen pastry puff sheets", + "water", + "all-purpose flour", + "beef tenderloin" + ] + }, + { + "id": 28411, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "salt", + "butter", + "pepper", + "cheese", + "half & half" + ] + }, + { + "id": 49389, + "cuisine": "indian", + "ingredients": [ + "clove", + "curry powder", + "large garlic cloves", + "cinnamon sticks", + "cooked rice", + "peeled fresh ginger", + "salt", + "bay leaf", + "tomatoes", + "whole milk", + "crushed red pepper", + "chutney", + "beef boneless meat stew", + "vegetable oil", + "fresh lemon juice", + "onions" + ] + }, + { + "id": 36941, + "cuisine": "chinese", + "ingredients": [ + "spinach", + "extra firm tofu", + "garlic", + "cashew nuts", + "lime", + "green onions", + "salt", + "asparagus", + "crushed red pepper flakes", + "fresh mint", + "fresh basil", + "hoisin sauce", + "ginger", + "toasted sesame oil" + ] + }, + { + "id": 1798, + "cuisine": "moroccan", + "ingredients": [ + "parsley", + "chickpeas", + "apricot halves", + "rice", + "butter", + "skinless chicken breasts", + "seasoning", + "chicken stock cubes", + "onions" + ] + }, + { + "id": 12381, + "cuisine": "irish", + "ingredients": [ + "butter", + "brown sugar", + "corn flour", + "rye flour", + "decorating sugars" + ] + }, + { + "id": 32131, + "cuisine": "southern_us", + "ingredients": [ + "leeks", + "butter", + "onions", + "chicken stock", + "sliced carrots", + "white mushrooms", + "green onions", + "salt", + "pepper", + "fresh thyme leaves", + "celery" + ] + }, + { + "id": 40476, + "cuisine": "indian", + "ingredients": [ + "butter", + "cumin seed", + "ground turmeric", + "tomatoes", + "garlic", + "dried chile", + "curry leaves", + "ginger", + "mustard seeds", + "dhal", + "jalapeno chilies", + "salt", + "onions" + ] + }, + { + "id": 31312, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "water", + "grated parmesan cheese", + "part-skim ricotta cheese", + "shredded mozzarella cheese", + "pasta sauce", + "eggplant", + "whipping cream", + "salt", + "black pepper", + "large eggs", + "garlic", + "all-purpose flour", + "fresh basil", + "olive oil", + "lasagna noodles, cooked and drained", + "crushed red pepper" + ] + }, + { + "id": 41975, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "salt", + "fresh basil", + "balsamic vinegar", + "lentils", + "olive oil", + "chopped onion", + "water", + "diced tomatoes" + ] + }, + { + "id": 24591, + "cuisine": "cajun_creole", + "ingredients": [ + "table salt", + "onion powder", + "dried oregano", + "dried thyme", + "cayenne pepper", + "dried basil", + "paprika", + "ground black pepper", + "powdered garlic" + ] + }, + { + "id": 27442, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "butter", + "satsuma imo", + "canola", + "maple syrup" + ] + }, + { + "id": 31508, + "cuisine": "chinese", + "ingredients": [ + "dried black mushrooms", + "sweet rice", + "chinese sausage", + "peanut oil", + "chestnuts", + "white pepper", + "sesame oil", + "oyster sauce", + "scallion greens", + "soy sauce", + "peeled fresh ginger", + "scallions", + "chinese rice wine", + "reduced sodium chicken broth", + "salt" + ] + }, + { + "id": 37951, + "cuisine": "british", + "ingredients": [ + "water", + "flour", + "lard", + "marjoram", + "ground sage", + "salt", + "pork shoulder", + "milk", + "dry mustard", + "bay leaf", + "allspice", + "pork", + "veal", + "thyme", + "onions" + ] + }, + { + "id": 8033, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "granulated sugar", + "dark brown sugar", + "turbinado", + "baking soda", + "sea salt", + "walnut pieces", + "bourbon whiskey", + "bittersweet chocolate", + "eggs", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 23434, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "fresh parsley", + "capers", + "shallots", + "roast red peppers, drain", + "eggplant", + "goat cheese", + "orange", + "kalamata", + "olive oil cooking spray" + ] + }, + { + "id": 44604, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "spring onions", + "oil", + "garlic paste", + "water", + "salt", + "noodles", + "pepper", + "white wine vinegar", + "carrots", + "sugar", + "shredded cabbage", + "chili sauce" + ] + }, + { + "id": 35084, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "dipping sauces", + "rice flour", + "chopped cilantro fresh", + "pork", + "shallots", + "dried shiitake mushrooms", + "medium shrimp", + "black pepper", + "ground pork", + "yellow onion", + "wood ear mushrooms", + "fish sauce", + "tapioca starch", + "salt", + "corn starch", + "canola oil" + ] + }, + { + "id": 39229, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "vegetable oil", + "salt", + "Kikkoman Soy Sauce", + "ground pork", + "corn starch", + "water chestnuts", + "wonton skins", + "tomato ketchup", + "hot mustard", + "green onions", + "sweet and sour sauce" + ] + }, + { + "id": 9171, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "hard-boiled egg", + "salt", + "white onion", + "cornichons", + "chopped parsley", + "pepper", + "Hellmann's® Real Mayonnaise", + "frozen peas", + "shrimp tails", + "creamer potatoes", + "carrots" + ] + }, + { + "id": 19897, + "cuisine": "vietnamese", + "ingredients": [ + "olive oil", + "cilantro sprigs", + "sugar", + "ground black pepper", + "yellow onion", + "fish sauce", + "lemon grass", + "unsalted dry roast peanuts", + "minced garlic", + "tri tip" + ] + }, + { + "id": 2545, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "butter", + "corn starch", + "salmon", + "grated parmesan cheese", + "garlic", + "noodles", + "lemon zest", + "paprika", + "sour cream", + "light cream", + "leeks", + "purple onion" + ] + }, + { + "id": 44091, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "large garlic cloves", + "low salt chicken broth", + "tomatoes", + "mushrooms", + "spanish chorizo", + "onions", + "fideos", + "paprika", + "fresh parsley", + "green bell pepper", + "dry white wine", + "cayenne pepper" + ] + }, + { + "id": 19223, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "swiss cheese", + "salt", + "light brown sugar", + "crescent rolls", + "white cheddar cheese", + "turkey bacon", + "butter", + "all-purpose flour", + "black pepper", + "grated parmesan cheese", + "turkey breast deli meat" + ] + }, + { + "id": 6996, + "cuisine": "mexican", + "ingredients": [ + "corn tortilla chips", + "coleslaw", + "shredded cheddar cheese", + "pork", + "chili beans", + "green onions" + ] + }, + { + "id": 38488, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "noodles", + "heavy cream", + "grated parmesan cheese", + "eggs", + "bacon" + ] + }, + { + "id": 26960, + "cuisine": "southern_us", + "ingredients": [ + "minced garlic", + "scotch bonnet chile", + "ground allspice", + "chicken legs", + "flour", + "lemon", + "chicken", + "eggs", + "curry powder", + "butter", + "lard", + "pepper", + "vegetable oil", + "salt" + ] + }, + { + "id": 34822, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "ground coriander", + "ground cumin", + "preserved lemon", + "raisins", + "cinnamon sticks", + "tomatoes", + "dried beans", + "cumin seed", + "fresh spinach", + "chickpeas", + "onions" + ] + }, + { + "id": 47430, + "cuisine": "jamaican", + "ingredients": [ + "chiles", + "store bought low sodium chicken stock", + "fresh thyme", + "red wine vinegar", + "carrots", + "brown sugar", + "white onion", + "ground black pepper", + "rum", + "garlic", + "allspice", + "steak sauce", + "soy sauce", + "olive oil", + "bay leaves", + "diced tomatoes", + "long grain white rice", + "beef boneless meat stew", + "kosher salt", + "hot pepper sauce", + "cinnamon", + "scallions" + ] + }, + { + "id": 4729, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "whipping cream", + "pork butt", + "water", + "butter", + "red bell pepper", + "chicken broth", + "lime wedges", + "grated jack cheese", + "chopped garlic", + "flour tortillas", + "poblano chilies", + "chopped cilantro" + ] + }, + { + "id": 24578, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "soy sauce", + "hoisin sauce", + "wonton wrappers", + "hot curry powder", + "vermicelli noodles", + "fresh basil", + "butter lettuce", + "honey", + "boneless skinless chicken breasts", + "rice vinegar", + "red bell pepper", + "avocado", + "brown sugar", + "lemongrass", + "green onions", + "garlic", + "carrots", + "toasted sesame seeds", + "roasted cashews", + "red chili peppers", + "fresh ginger", + "sesame oil", + "creamy peanut butter", + "fresh lime juice" + ] + }, + { + "id": 20699, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cremini", + "boiling onions", + "dry white wine", + "garlic", + "frozen artichoke hearts", + "( oz.) tomato sauce", + "diced tomatoes", + "chicken thighs", + "pepper", + "cooked chicken", + "salt", + "dried oregano" + ] + }, + { + "id": 48125, + "cuisine": "moroccan", + "ingredients": [ + "turnips", + "green onions", + "fresh parsley", + "water", + "salt", + "pepper", + "chicken breast halves", + "chopped cilantro fresh", + "olive oil", + "sauce" + ] + }, + { + "id": 26865, + "cuisine": "jamaican", + "ingredients": [ + "butter", + "black pepper", + "salt", + "garlic", + "yucca", + "onions" + ] + }, + { + "id": 34101, + "cuisine": "italian", + "ingredients": [ + "pepper", + "farro", + "celery", + "sage", + "pancetta", + "olive oil", + "salt", + "onions", + "rosemary", + "garlic", + "dried kidney beans", + "cold water", + "potatoes", + "carrots", + "plum tomatoes" + ] + }, + { + "id": 1460, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "ground black pepper", + "shallots", + "boiling water", + "dried thyme", + "cooking spray", + "less sodium beef broth", + "dried porcini mushrooms", + "parmigiano reggiano cheese", + "salt", + "mascarpone", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 20556, + "cuisine": "jamaican", + "ingredients": [ + "pepper", + "meat", + "carrots", + "ground ginger", + "vinegar", + "garlic", + "onions", + "cold water", + "curry powder", + "vegetable oil", + "thyme", + "black pepper", + "potatoes", + "salt" + ] + }, + { + "id": 27875, + "cuisine": "southern_us", + "ingredients": [ + "heavy cream", + "melted butter", + "self rising flour" + ] + }, + { + "id": 48858, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "minced onion", + "frozen peas and carrots", + "pepper", + "salt", + "soy sauce", + "butter", + "cooked white rice", + "minced garlic", + "oil" + ] + }, + { + "id": 20404, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "kidney beans", + "apple cider vinegar", + "vegetable broth", + "diced celery", + "dried oregano", + "tomato paste", + "fresh cilantro", + "green onions", + "raw cashews", + "hot sauce", + "red bell pepper", + "water", + "jalapeno chilies", + "diced tomatoes", + "fine sea salt", + "pinto beans", + "ground cumin", + "vegan sour cream", + "sweet onion", + "chili powder", + "extra-virgin olive oil", + "fresh lemon juice", + "ground cayenne pepper" + ] + }, + { + "id": 15064, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "low-fat refried beans", + "chicken breasts", + "chunky salsa", + "tortillas", + "enchilada sauce", + "avocado", + "greek style plain yogurt", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 8780, + "cuisine": "russian", + "ingredients": [ + "capers", + "large egg yolks", + "waxy potatoes", + "broad beans", + "white wine vinegar", + "carrots", + "celery stick", + "unsalted butter", + "lemon juice", + "beans", + "gherkins" + ] + }, + { + "id": 31015, + "cuisine": "french", + "ingredients": [ + "olive oil", + "sliced carrots", + "salt", + "celery", + "parsnips", + "bay leaves", + "dry red wine", + "chickpeas", + "fresh parsley", + "black pepper", + "butternut squash", + "vegetable broth", + "garlic cloves", + "tomato paste", + "leeks", + "portabello mushroom", + "all-purpose flour", + "thyme sprigs" + ] + }, + { + "id": 892, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "low sodium chicken broth", + "oregano", + "olive oil", + "chipotles in adobo", + "beef roast", + "water", + "sea salt", + "cumin", + "vinegar", + "onions" + ] + }, + { + "id": 40414, + "cuisine": "indian", + "ingredients": [ + "light brown sugar", + "whole milk", + "coconut", + "vegetable oil", + "slivered almonds", + "golden raisins", + "dumpling wrappers", + "ground cardamom" + ] + }, + { + "id": 28822, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "pork chops", + "salt", + "marsala wine", + "fennel bulb", + "onions", + "canned low sodium chicken broth", + "ground black pepper", + "fresh parsley", + "olive oil", + "garlic" + ] + }, + { + "id": 12619, + "cuisine": "british", + "ingredients": [ + "olive oil", + "egg yolks", + "beef fillet", + "fresh thyme", + "dry white wine", + "prosciutto", + "chestnut mushrooms", + "puff pastry", + "flour", + "butter" + ] + }, + { + "id": 32967, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "butter", + "frozen peas", + "sea scallops", + "fresh lemon juice", + "pesto sauce", + "whipping cream", + "asparagus", + "green beans" + ] + }, + { + "id": 30559, + "cuisine": "filipino", + "ingredients": [ + "black peppercorns", + "garlic", + "white vinegar", + "water", + "onions", + "chicken legs", + "bay leaves", + "white sugar", + "soy sauce", + "salt" + ] + }, + { + "id": 46801, + "cuisine": "vietnamese", + "ingredients": [ + "green cabbage", + "dry roasted peanuts", + "garlic cloves", + "chopped fresh mint", + "sugar", + "yellow bell pepper", + "fresh lime juice", + "fish sauce", + "boneless skinless chicken breasts", + "red bell pepper", + "fresh basil", + "green onions", + "carrots", + "chopped cilantro fresh" + ] + }, + { + "id": 31362, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "sour cream", + "low sodium black beans", + "ranch dip mix", + "cheddar cheese", + "cream cheese", + "corn", + "taco seasoning" + ] + }, + { + "id": 4344, + "cuisine": "french", + "ingredients": [ + "mushroom caps", + "butter", + "ground nutmeg", + "dry white wine", + "fresh parsley", + "helix snails", + "green onions", + "garlic", + "ground black pepper", + "pastry shell" + ] + }, + { + "id": 46036, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "butter", + "fillets", + "orange", + "salt", + "ground cumin", + "pepper", + "fresh orange juice", + "nonfat evaporated milk", + "chile pepper", + "orange rind" + ] + }, + { + "id": 47772, + "cuisine": "greek", + "ingredients": [ + "large eggs", + "all-purpose flour", + "large egg yolks", + "cheese", + "plain yogurt", + "baking powder", + "flat leaf parsley", + "unsalted butter", + "salt" + ] + }, + { + "id": 3784, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "water", + "butter", + "shredded cheddar cheese", + "chopped fresh chives", + "grit quick", + "black pepper", + "jalapeno chilies", + "salt", + "minced garlic", + "whole milk" + ] + }, + { + "id": 4098, + "cuisine": "thai", + "ingredients": [ + "boneless skinless chicken breasts", + "scallions", + "cumin", + "sugar", + "chili powder", + "fresh mint", + "mayonaise", + "shallots", + "fresh parsley leaves", + "fresh coriander", + "salt", + "fresh lime juice" + ] + }, + { + "id": 27291, + "cuisine": "french", + "ingredients": [ + "olive oil", + "rosemary sprigs", + "stewed tomatoes", + "sweet relish", + "garlic cloves", + "capers", + "rib pork chops" + ] + }, + { + "id": 10599, + "cuisine": "mexican", + "ingredients": [ + "water", + "jalapeno chilies", + "tomatillos", + "chicken broth", + "olive oil", + "butternut squash", + "salt", + "white onion", + "large eggs", + "pastry dough", + "garlic cloves", + "pasilla", + "mushrooms", + "coarse sea salt" + ] + }, + { + "id": 1462, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "olive oil", + "black pepper", + "red wine vinegar", + "sugar", + "golden raisins", + "tomato paste", + "pearl onions", + "salt" + ] + }, + { + "id": 17708, + "cuisine": "vietnamese", + "ingredients": [ + "chicken broth", + "water", + "lemon grass", + "red pepper flakes", + "bay leaf", + "fish sauce", + "fresh ginger root", + "vegetable oil", + "coconut milk", + "green bell pepper", + "fresh cilantro", + "shallots", + "carrots", + "chicken", + "kaffir lime leaves", + "curry powder", + "potatoes", + "garlic", + "onions" + ] + }, + { + "id": 27936, + "cuisine": "indian", + "ingredients": [ + "pepper", + "purple onion", + "lemon juice", + "chopped cilantro", + "rice bran", + "chili powder", + "chickpeas", + "greek yogurt", + "onions", + "cooked rice", + "diced tomatoes", + "scallions", + "coconut milk", + "ground cumin", + "meat", + "salt", + "cucumber", + "curry paste" + ] + }, + { + "id": 12597, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "chopped onion", + "pork loin", + "garlic cloves", + "fat free less sodium chicken broth", + "chili powder", + "chopped cilantro fresh", + "hominy", + "salt", + "ground cumin" + ] + }, + { + "id": 3672, + "cuisine": "mexican", + "ingredients": [ + "cream cheese", + "jalapeno chilies", + "taco seasoning mix", + "corn tortillas", + "black olives" + ] + }, + { + "id": 212, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "orange liqueur", + "vanilla extract", + "cream cheese, soften", + "whipped cream" + ] + }, + { + "id": 12728, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "sliced carrots", + "garlic cloves", + "potatoes", + "curry", + "onions", + "roma tomatoes", + "peas", + "fresh parsley", + "water", + "chili powder", + "salt", + "chicken" + ] + }, + { + "id": 46503, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "zucchini", + "button mushrooms", + "baby spinach leaves", + "salt and ground black pepper", + "ricotta cheese", + "italian seasoning", + "pasta sauce", + "olive oil", + "ziti", + "baby carrots", + "Italian cheese", + "mushroom caps", + "diced tomatoes" + ] + }, + { + "id": 49178, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "golden raisins", + "less sodium beef broth", + "garlic cloves", + "chopped fresh mint", + "olive oil", + "salt", + "ground allspice", + "cinnamon sticks", + "ground cumin", + "water", + "ground red pepper", + "baby carrots", + "leg of lamb", + "dried fig", + "saffron threads", + "cooking spray", + "chickpeas", + "ground coriander", + "onions" + ] + }, + { + "id": 11461, + "cuisine": "french", + "ingredients": [ + "firmly packed brown sugar", + "granulated sugar", + "all-purpose flour", + "macadamia nuts", + "sweetened coconut flakes", + "corn mix muffin", + "large eggs", + "crushed pineapples in juice", + "milk", + "butter", + "heavy whipping cream" + ] + }, + { + "id": 45669, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "shallots", + "beer", + "olive oil", + "cilantro", + "garlic cloves", + "chorizo", + "red pepper", + "scallions", + "jalapeno chilies", + "white cheddar cheese", + "cream cheese, soften" + ] + }, + { + "id": 8412, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "tortilla chips", + "extra lean ground beef", + "salsa", + "egg whites", + "red bell pepper", + "corn", + "yellow onion" + ] + }, + { + "id": 1453, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "spanish onion", + "freshly ground pepper", + "chopped cilantro", + "chipotle chile", + "vegetable oil", + "sour cream", + "boneless skinless chicken breast halves", + "ground cinnamon", + "water", + "salt", + "corn tortillas", + "shredded cheddar cheese", + "large garlic cloves", + "ancho chile pepper", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 5815, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cheese", + "boneless chicken breast", + "bbq sauce", + "whole wheat pasta", + "flour", + "onions", + "skim milk", + "butter", + "panko breadcrumbs" + ] + }, + { + "id": 49385, + "cuisine": "italian", + "ingredients": [ + "shiitake", + "purple onion", + "low-fat firm silken tofu", + "fresh spinach", + "grated parmesan cheese", + "fresh mushrooms", + "minced garlic", + "low sodium chicken broth", + "fresh lemon juice", + "bacon bits", + "ground black pepper", + "penne pasta", + "italian seasoning" + ] + }, + { + "id": 32497, + "cuisine": "french", + "ingredients": [ + "sugar", + "almond extract", + "large eggs", + "nonfat evaporated milk", + "chopped almonds", + "sweetened condensed milk", + "sliced almonds", + "vanilla extract" + ] + }, + { + "id": 0, + "cuisine": "spanish", + "ingredients": [ + "mussels", + "ground black pepper", + "garlic cloves", + "saffron threads", + "olive oil", + "stewed tomatoes", + "arborio rice", + "minced onion", + "medium shrimp", + "fat free less sodium chicken broth", + "green peas" + ] + }, + { + "id": 22121, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "corn tortillas", + "cooked turkey", + "onions", + "sliced black olives", + "enchilada sauce" + ] + }, + { + "id": 45521, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "minced ginger", + "boneless skinless chicken breasts", + "red bell pepper", + "plain yogurt", + "garam masala", + "garlic", + "dried red chile peppers", + "fresh coriander", + "roma tomatoes", + "salt", + "onions", + "ground cloves", + "ground nutmeg", + "butter", + "heavy whipping cream" + ] + }, + { + "id": 41959, + "cuisine": "french", + "ingredients": [ + "pinenuts", + "extra-virgin olive oil", + "Belgian endive", + "red wine vinegar", + "fresh parsley", + "dijon mustard", + "lemon juice", + "pepper", + "salt" + ] + }, + { + "id": 27229, + "cuisine": "jamaican", + "ingredients": [ + "lime juice", + "orange juice", + "rum", + "grenadine", + "dark rum", + "coconut rum", + "bacardi", + "pineapple juice" + ] + }, + { + "id": 49061, + "cuisine": "russian", + "ingredients": [ + "kidney beans", + "boiling potatoes", + "beets", + "pickles", + "carrots", + "vegetable oil", + "cabbage" + ] + }, + { + "id": 40916, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "butter", + "shrimp", + "English muffins", + "all-purpose flour", + "milk", + "old bay seasoning", + "celery", + "green onions", + "provolone cheese" + ] + }, + { + "id": 4417, + "cuisine": "cajun_creole", + "ingredients": [ + "mirlitons", + "grated parmesan cheese", + "dry bread crumbs", + "onions", + "yellow squash", + "green onions", + "garlic cloves", + "tomatoes", + "jalapeno chilies", + "creole seasoning", + "tasso", + "olive oil", + "yellow bell pepper", + "shrimp" + ] + }, + { + "id": 19830, + "cuisine": "mexican", + "ingredients": [ + "white corn tortillas", + "lime wedges", + "tilapia", + "pepper", + "cilantro", + "garlic cloves", + "avocado", + "olive oil", + "salt", + "fresh lime juice", + "tomatoes", + "jalapeno chilies", + "yellow onion", + "chopped cilantro fresh" + ] + }, + { + "id": 46489, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "orzo", + "fresh parsley", + "unsalted butter", + "fresh lemon juice", + "jumbo shrimp", + "garlic" + ] + }, + { + "id": 47329, + "cuisine": "mexican", + "ingredients": [ + "lime", + "yellow onion", + "chicken broth", + "vegetable oil", + "chopped cilantro", + "jalapeno chilies", + "garlic cloves", + "kosher salt", + "white beans", + "chicken" + ] + }, + { + "id": 396, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "red wine vinegar", + "white sugar", + "jalapeno chilies", + "salt", + "green bell pepper", + "garlic", + "ground cumin", + "tomato paste", + "chili powder", + "onions" + ] + }, + { + "id": 34577, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "currant", + "leg of lamb", + "saffron", + "canned low sodium chicken broth", + "olive oil", + "salt", + "fresh parsley", + "cauliflower", + "dried thyme", + "garlic", + "couscous", + "pinenuts", + "ground black pepper", + "lemon juice", + "onions" + ] + }, + { + "id": 17662, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "firm tofu", + "wood ear mushrooms", + "chicken stock", + "water", + "salt", + "ground white pepper", + "white sugar", + "lean ground pork", + "red wine vinegar", + "corn starch", + "bamboo shoots", + "eggs", + "green onions", + "dried shiitake mushrooms", + "tiger lily buds" + ] + }, + { + "id": 12675, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "blue cheese", + "plum tomatoes", + "lime juice", + "purple onion", + "pepper", + "cilantro", + "cumin", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 13907, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "vegetable oil", + "self rising flour", + "buttermilk" + ] + }, + { + "id": 6214, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "grated parmesan cheese", + "chanterelle", + "olive oil", + "whipping cream", + "grated lemon peel", + "baguette", + "shallots", + "garlic cloves", + "fontina cheese", + "shiitake", + "oyster mushrooms" + ] + }, + { + "id": 9364, + "cuisine": "vietnamese", + "ingredients": [ + "ground ginger", + "garlic powder", + "deveined shrimp", + "canola oil", + "sub rolls", + "flour", + "hot chili sauce", + "mayonaise", + "agave nectar", + "salt", + "pickled carrots", + "cilantro", + "cucumber" + ] + }, + { + "id": 46649, + "cuisine": "spanish", + "ingredients": [ + "short-grain rice", + "salsa", + "chicken broth", + "green onions", + "avocado", + "vegetables", + "chopped cilantro", + "green olives", + "vegetable oil" + ] + }, + { + "id": 681, + "cuisine": "chinese", + "ingredients": [ + "pot stickers", + "iceberg lettuce", + "water", + "edamame", + "salt", + "olive oil", + "salad dressing" + ] + }, + { + "id": 46468, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "red pepper flakes", + "corn starch", + "light brown sugar", + "apple cider vinegar", + "salt", + "boneless skinless chicken breasts", + "buffalo sauce", + "cooked rice", + "vegetable oil", + "scallions" + ] + }, + { + "id": 28546, + "cuisine": "greek", + "ingredients": [ + "tomato sauce", + "chili powder", + "all-purpose flour", + "onions", + "ground cinnamon", + "ground black pepper", + "red wine vinegar", + "ground allspice", + "eggs", + "grated parmesan cheese", + "garlic", + "elbow macaroni", + "chicken stock", + "milk", + "lean ground beef", + "margarine", + "plum tomatoes" + ] + }, + { + "id": 22123, + "cuisine": "french", + "ingredients": [ + "french bread", + "curly endive", + "dijon mustard", + "white wine vinegar", + "pepper", + "bacon", + "frisee", + "large eggs", + "salt" + ] + }, + { + "id": 1220, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "almond liqueur", + "sugar", + "whipping cream", + "crumbs", + "pears", + "large egg yolks", + "fresh lemon juice" + ] + }, + { + "id": 27703, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "buttermilk", + "unsalted butter", + "salt", + "baking soda", + "heavy cream", + "sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 39620, + "cuisine": "french", + "ingredients": [ + "eggs", + "heavy cream", + "sugar", + "vanilla" + ] + }, + { + "id": 18185, + "cuisine": "greek", + "ingredients": [ + "tomato paste", + "rosemary", + "red wine", + "oil", + "chopped parsley", + "water", + "leeks", + "extra-virgin olive oil", + "thyme", + "sage", + "sweet onion", + "red wine vinegar", + "beef stew meat", + "cinnamon sticks", + "grated orange", + "kosher salt", + "fresh bay leaves", + "cracked black pepper", + "carrots", + "celery" + ] + }, + { + "id": 28698, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "red bean paste", + "glutinous rice flour", + "roasted white sesame seeds" + ] + }, + { + "id": 13490, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salsa", + "ground turkey", + "taco seasoning mix", + "garlic", + "sour cream", + "green bell pepper", + "shredded lettuce", + "whole kernel corn, drain", + "flour tortillas", + "dry bread crumbs", + "onions" + ] + }, + { + "id": 10529, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh tomatoes", + "butter", + "green pepper", + "onions", + "chicken broth", + "hot pepper sauce", + "salt", + "garlic cloves", + "celery ribs", + "pepper", + "worcestershire sauce", + "long-grain rice", + "Johnsonville Smoked Sausage", + "green onions", + "sauce", + "fresh parsley" + ] + }, + { + "id": 29692, + "cuisine": "japanese", + "ingredients": [ + "sake", + "white sugar", + "mirin", + "dark soy sauce" + ] + }, + { + "id": 15361, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "ground coriander", + "couscous", + "gravy", + "fresh mint", + "ground cumin", + "cayenne", + "fat skimmed chicken broth", + "onions", + "pot roast", + "diced tomatoes", + "salad oil" + ] + }, + { + "id": 43564, + "cuisine": "moroccan", + "ingredients": [ + "fava beans", + "olive oil", + "salt", + "water", + "lemon", + "red bell pepper", + "pepper", + "parsley", + "garlic cloves", + "fish fillets", + "fresh cilantro", + "paprika" + ] + }, + { + "id": 7735, + "cuisine": "french", + "ingredients": [ + "fillet red snapper", + "leeks", + "garlic", + "fresh parsley", + "mussels", + "salt and ground black pepper", + "clam juice", + "celery", + "saffron", + "fennel seeds", + "sea scallops", + "diced tomatoes", + "bay leaf", + "olive oil", + "dry white wine", + "dri leav thyme", + "lobster meat" + ] + }, + { + "id": 24360, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "ground black pepper", + "salt", + "sweet onion", + "vegetable oil", + "cayenne pepper", + "sugar", + "jalapeno chilies", + "all-purpose flour", + "yellow corn meal", + "yellow squash", + "buttermilk" + ] + }, + { + "id": 49529, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "jalapeno chilies", + "canola oil", + "pork", + "fresh cilantro", + "fresh oregano", + "eggs", + "water", + "garlic", + "chipotle chile", + "tortillas", + "plum tomatoes" + ] + }, + { + "id": 35000, + "cuisine": "italian", + "ingredients": [ + "Swanson Chicken Broth", + "onions", + "parmesan cheese", + "farro", + "plum tomatoes", + "pancetta", + "ground black pepper", + "fresh basil leaves", + "dri thyme leaves, crush", + "garlic" + ] + }, + { + "id": 19006, + "cuisine": "italian", + "ingredients": [ + "angel hair", + "olive oil", + "corn starch", + "marsala wine", + "grated parmesan cheese", + "dried tarragon leaves", + "garlic powder", + "boneless skinless chicken breast halves", + "seasoned bread crumbs", + "salt" + ] + }, + { + "id": 40934, + "cuisine": "british", + "ingredients": [ + "semisweet chocolate", + "white sugar", + "milk", + "corn starch", + "ground cinnamon", + "vanilla extract", + "lemon peel", + "cinnamon sticks" + ] + }, + { + "id": 9013, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "asiago", + "pepper", + "penne pasta", + "fresh rosemary", + "salt", + "prosciutto", + "onions" + ] + }, + { + "id": 7162, + "cuisine": "indian", + "ingredients": [ + "mustard", + "urad dal", + "jeera", + "tomatoes", + "okra", + "ground turmeric", + "curry leaves", + "salt", + "onions", + "chili powder", + "oil" + ] + }, + { + "id": 43176, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "sea scallops", + "butter", + "white wine", + "balsamic vinegar", + "dill", + "filo", + "shallots", + "salt", + "pepper", + "chopped fresh thyme", + "scallions" + ] + }, + { + "id": 31947, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "heavy cream", + "hazelnuts", + "chocolate shavings", + "bittersweet chocolate", + "mini chocolate chips", + "almond extract", + "confectioners sugar", + "pure vanilla extract", + "granulated sugar", + "salt" + ] + }, + { + "id": 28107, + "cuisine": "chinese", + "ingredients": [ + "Kikkoman Soy Sauce", + "ground ginger", + "garlic", + "dry sherry", + "honey", + "pork spareribs" + ] + }, + { + "id": 15834, + "cuisine": "filipino", + "ingredients": [ + "green cabbage", + "ground black pepper", + "oil", + "chicken thighs", + "fish sauce", + "garlic", + "shrimp", + "dark soy sauce", + "lemon wedge", + "carrots", + "canola oil", + "rice sticks", + "scallions", + "onions" + ] + }, + { + "id": 22049, + "cuisine": "japanese", + "ingredients": [ + "water", + "ground pork", + "eggs", + "green onions", + "nori", + "water chestnuts", + "salt", + "chicken bouillon", + "sesame oil" + ] + }, + { + "id": 42887, + "cuisine": "greek", + "ingredients": [ + "sugar", + "red grape", + "rose water", + "pears", + "water", + "strawberries", + "orange", + "cinnamon sticks" + ] + }, + { + "id": 37912, + "cuisine": "italian", + "ingredients": [ + "chicken cutlets", + "italian seasoned dry bread crumbs", + "mayonaise", + "shredded parmesan cheese", + "salt", + "garlic powder", + "lemon pepper" + ] + }, + { + "id": 18889, + "cuisine": "cajun_creole", + "ingredients": [ + "turnip greens", + "salt", + "onions", + "chicken broth", + "ground black pepper", + "diced ham", + "canola oil", + "black-eyed peas", + "creole seasoning", + "dried oregano", + "green bell pepper", + "garlic", + "celery" + ] + }, + { + "id": 30301, + "cuisine": "french", + "ingredients": [ + "olive oil", + "red pepper flakes", + "dijon mustard", + "salt", + "ground black pepper", + "purple onion", + "lime juice", + "pork tenderloin", + "chopped cilantro" + ] + }, + { + "id": 38718, + "cuisine": "british", + "ingredients": [ + "bread crumb fresh", + "vegetable oil", + "chopped onion", + "leeks", + "salt", + "eggs", + "dried sage", + "margarine", + "pepper", + "quick-cooking oats", + "chopped walnuts" + ] + }, + { + "id": 35950, + "cuisine": "italian", + "ingredients": [ + "sugar", + "basil leaves", + "salt", + "dried oregano", + "fresh basil", + "olive oil", + "vine ripened tomatoes", + "country loaf", + "mussels", + "crushed tomatoes", + "dry white wine", + "red bell pepper", + "canned low sodium chicken broth", + "ground black pepper", + "garlic", + "onions" + ] + }, + { + "id": 41723, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "ground red pepper", + "salt", + "roasted red peppers", + "red wine vinegar", + "garlic cloves", + "eggplant", + "balsamic vinegar", + "anchovy fillets", + "hungarian sweet paprika", + "finely chopped onion", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 11381, + "cuisine": "thai", + "ingredients": [ + "lime", + "rice noodles", + "beansprouts", + "ketchup", + "black bean sauce", + "peanut oil", + "eggs", + "fresh ginger", + "chili sauce", + "asian fish sauce", + "dry roasted peanuts", + "green onions", + "shrimp" + ] + }, + { + "id": 31424, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cilantro", + "garlic", + "frozen spinach", + "sesame oil", + "ginger", + "corn starch", + "fresh ginger", + "ground pork", + "salt", + "chinese rice wine", + "wonton wrappers", + "vegetable broth", + "cabbage" + ] + }, + { + "id": 23110, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "diced tomatoes", + "celery", + "green bell pepper", + "brown rice", + "salt", + "ground cumin", + "chicken broth", + "green onions", + "paprika", + "large shrimp", + "andouille sausage", + "butter", + "cayenne pepper" + ] + }, + { + "id": 23016, + "cuisine": "thai", + "ingredients": [ + "apple cider vinegar", + "cucumber", + "red pepper flakes", + "water", + "sea salt", + "raw honey", + "purple onion" + ] + }, + { + "id": 43508, + "cuisine": "indian", + "ingredients": [ + "chana dal", + "oil", + "green chilies", + "toor dal", + "salt", + "rice flour", + "fennel seeds", + "beets" + ] + }, + { + "id": 27533, + "cuisine": "korean", + "ingredients": [ + "sugar", + "roast", + "garlic cloves", + "water", + "sesame oil", + "soy sauce", + "green onions", + "kimchi", + "cooked rice", + "sesame seeds", + "ginger" + ] + }, + { + "id": 41862, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "long-grain rice", + "water", + "garlic cloves", + "salt" + ] + }, + { + "id": 25209, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "provolone cheese", + "egg whites", + "italian seasoning", + "grated parmesan cheese", + "spaghetti", + "tomatoes", + "ricotta cheese" + ] + }, + { + "id": 47878, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "reduced sodium teriyaki sauce", + "snow peas", + "reduced sodium soy sauce", + "onions", + "chicken bouillon granules", + "green onions", + "spaghetti", + "water", + "chinese five-spice powder", + "canola oil" + ] + }, + { + "id": 28335, + "cuisine": "italian", + "ingredients": [ + "milk", + "baking powder", + "salt", + "corn starch", + "cold water", + "unsalted butter", + "cinnamon", + "ricotta", + "orange zest", + "sugar", + "large eggs", + "vanilla", + "orange flower water", + "large egg yolks", + "wheatberries", + "all-purpose flour", + "citron" + ] + }, + { + "id": 4242, + "cuisine": "cajun_creole", + "ingredients": [ + "heavy cream", + "brown sugar", + "salt", + "pecan halves", + "vanilla", + "butter" + ] + }, + { + "id": 15626, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "white mushrooms", + "sweet vermouth", + "diced tomatoes", + "chuck steaks", + "olive oil", + "garlic cloves", + "onions", + "black pepper", + "yellow bell pepper", + "juice" + ] + }, + { + "id": 7648, + "cuisine": "indian", + "ingredients": [ + "fresh spinach", + "potatoes", + "green chilies", + "asafetida", + "coconut sugar", + "fresh ginger", + "lemon", + "cumin seed", + "tomatoes", + "water", + "brown mustard seeds", + "ground coriander", + "ground cumin", + "tumeric", + "garam masala", + "sea salt", + "ghee" + ] + }, + { + "id": 2815, + "cuisine": "british", + "ingredients": [ + "ground ginger", + "sultana", + "suet", + "eggs", + "bread crumb fresh", + "lemon", + "plain flour", + "dried currants", + "baking powder", + "sugar", + "milk" + ] + }, + { + "id": 2001, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "ground black pepper", + "garlic", + "tomato paste", + "whole wheat flour", + "chili powder", + "onions", + "ground ginger", + "olive oil", + "boneless skinless chicken breasts", + "cilantro leaves", + "kosher salt", + "garam masala", + "light coconut milk" + ] + }, + { + "id": 34185, + "cuisine": "spanish", + "ingredients": [ + "tomato sauce", + "baking potatoes", + "diced onions", + "olive oil", + "salt", + "green bell pepper", + "ground red pepper", + "garlic cloves", + "parsley sprigs", + "butter" + ] + }, + { + "id": 14876, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "salt", + "unsalted butter", + "semolina", + "onions", + "flour" + ] + }, + { + "id": 17426, + "cuisine": "japanese", + "ingredients": [ + "sea scallops", + "butter", + "grapefruit", + "fresh ginger", + "shallots", + "salt", + "fresh chives", + "ground pepper", + "extra-virgin olive oil", + "miso paste", + "fresh thyme leaves", + "all-purpose flour" + ] + }, + { + "id": 19537, + "cuisine": "moroccan", + "ingredients": [ + "fat free less sodium chicken broth", + "paprika", + "garlic cloves", + "ground turmeric", + "ground red pepper", + "all-purpose flour", + "chicken thighs", + "cooking spray", + "salt", + "fresh lemon juice", + "ground cumin", + "ground ginger", + "lemon wedge", + "pimento stuffed olives", + "chopped cilantro fresh" + ] + }, + { + "id": 26146, + "cuisine": "italian", + "ingredients": [ + "peeled tomatoes", + "salt", + "parmigiano-reggiano cheese", + "yellow bell pepper", + "penne", + "extra-virgin olive oil", + "large garlic cloves", + "freshly ground pepper" + ] + }, + { + "id": 32068, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "tofu", + "dashi", + "miso" + ] + }, + { + "id": 30381, + "cuisine": "cajun_creole", + "ingredients": [ + "fat free less sodium chicken broth", + "cajun seasoning", + "mushrooms", + "chopped onion", + "kidney beans", + "salt", + "andouille sausage", + "vegetable oil", + "long-grain rice" + ] + }, + { + "id": 35622, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "peeled fresh ginger", + "fresh lime juice", + "ground black pepper", + "salt", + "mango", + "garam masala", + "flank steak", + "chopped cilantro fresh", + "cooking spray", + "cucumber" + ] + }, + { + "id": 42814, + "cuisine": "mexican", + "ingredients": [ + "hot pepper sauce", + "salt", + "pepper", + "jalapeno chilies", + "onions", + "eggs", + "potatoes", + "all-purpose flour", + "water", + "diced tomatoes", + "canola oil" + ] + }, + { + "id": 19835, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "chickpeas", + "lentils", + "vegetable oil", + "green chilies", + "basmati rice", + "tomato purée", + "salt", + "garlic cloves", + "potatoes", + "fenugreek seeds", + "onions" + ] + }, + { + "id": 35108, + "cuisine": "chinese", + "ingredients": [ + "clear honey", + "coriander", + "sesame seeds", + "sunflower oil", + "lime", + "chicken breasts", + "egg noodles", + "carrots" + ] + }, + { + "id": 33179, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "garlic", + "cumin", + "avocado", + "ground pepper", + "cilantro", + "smoked paprika", + "lime juice", + "sirloin steak", + "salt", + "tomatoes", + "cayenne", + "dry mustard", + "oregano" + ] + }, + { + "id": 38968, + "cuisine": "british", + "ingredients": [ + "ground black pepper", + "worcestershire sauce", + "sweet paprika", + "ground beef", + "cream", + "beef stock", + "salt", + "carrots", + "frozen peas", + "potatoes", + "extra-virgin olive oil", + "fresh parsley leaves", + "onions", + "large egg yolks", + "butter", + "all-purpose flour", + "sour cream" + ] + }, + { + "id": 24290, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "ginger", + "soy sauce", + "sesame oil", + "white sugar", + "spareribs", + "Shaoxing wine", + "chinkiang vinegar", + "cooking oil", + "scallions" + ] + }, + { + "id": 15829, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "salt", + "jack cheese", + "whole wheat tortillas", + "cremini mushrooms", + "baby spinach", + "salsa", + "lime", + "purple onion" + ] + }, + { + "id": 44477, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "salted roast peanuts", + "fat skimmed chicken broth", + "deveined shrimp", + "salt", + "corn starch", + "hot chili", + "garlic", + "oyster sauce", + "cooked rice", + "peas", + "rice vinegar", + "salad oil" + ] + }, + { + "id": 11139, + "cuisine": "greek", + "ingredients": [ + "eggs", + "kosher salt", + "parsley", + "purple onion", + "ground beef", + "ketchup", + "feta cheese", + "red wine vinegar", + "smoked paprika", + "oregano", + "brown sugar", + "whole grain mustard", + "cinnamon", + "dry bread crumbs", + "glaze", + "black pepper", + "cayenne", + "garlic", + "fresh mint" + ] + }, + { + "id": 44708, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "light cream", + "yellow onion", + "water", + "cajun seasoning", + "yellow peppers", + "penne", + "baby kale", + "shrimp", + "tomatoes", + "olive oil", + "red pepper", + "chicken" + ] + }, + { + "id": 40590, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "oregano", + "red wine vinegar", + "potatoes", + "canola oil", + "salt" + ] + }, + { + "id": 25565, + "cuisine": "french", + "ingredients": [ + "black pepper", + "french bread", + "snails", + "unsalted butter", + "extra-virgin olive oil", + "salt", + "snail shells", + "parsley", + "purple onion", + "mushroom caps", + "garlic" + ] + }, + { + "id": 27006, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "lemon", + "ginger root", + "boneless skinless chicken breasts", + "cornflour", + "ground black pepper", + "large garlic cloves", + "plain flour", + "vegetable oil", + "salt" + ] + }, + { + "id": 48596, + "cuisine": "italian", + "ingredients": [ + "Bertolli® Classico Olive Oil", + "red potato", + "chopped garlic", + "fettuccine, cook and drain", + "Bertolli® Alfredo Sauce" + ] + }, + { + "id": 168, + "cuisine": "british", + "ingredients": [ + "bananas", + "strawberries", + "white sugar", + "slivered almonds", + "cake", + "vanilla instant pudding", + "milk", + "cocktail cherries", + "heavy whipping cream", + "fresh blueberries", + "orange juice" + ] + }, + { + "id": 958, + "cuisine": "southern_us", + "ingredients": [ + "unflavored gelatin", + "stewed tomatoes", + "gelatin", + "cold water", + "boiling water" + ] + }, + { + "id": 42356, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "water", + "decorating sugars", + "confectioners sugar", + "sugar", + "active dry yeast", + "salt", + "warm water", + "cake", + "all-purpose flour", + "shortening", + "milk", + "vanilla extract", + "glaze" + ] + }, + { + "id": 22786, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "large egg yolks", + "whipping cream", + "boysenberries", + "unsalted butter", + "fresh lemon juice" + ] + }, + { + "id": 12737, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "onions", + "olive oil", + "garlic cloves", + "mozzarella cheese", + "red pepper", + "chopped tomatoes", + "gnocchi" + ] + }, + { + "id": 21653, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "salt", + "masa harina", + "corn husks", + "large garlic cloves", + "chopped cilantro fresh", + "tomatillos", + "lard", + "chicken", + "low sodium chicken broth", + "extra-virgin olive oil", + "serrano chile" + ] + }, + { + "id": 47077, + "cuisine": "thai", + "ingredients": [ + "shallots", + "sugar", + "fresno chiles", + "white vinegar", + "cucumber", + "kosher salt", + "chopped cilantro" + ] + }, + { + "id": 4720, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "garlic cloves", + "pita chips", + "cucumber", + "kosher salt", + "feta cheese crumbles", + "purple onion", + "greek yogurt" + ] + }, + { + "id": 9037, + "cuisine": "mexican", + "ingredients": [ + "hominy", + "garlic", + "onions", + "ground cumin", + "celery ribs", + "chili powder", + "poblano chiles", + "dried oregano", + "jalapeno chilies", + "salt", + "chopped cilantro fresh", + "black pepper", + "parsley", + "fresh lime juice", + "chicken" + ] + }, + { + "id": 31259, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "red wine vinegar", + "scallions", + "sugar", + "szechwan peppercorns", + "rice vinegar", + "lo bok", + "peeled fresh ginger", + "cilantro leaves", + "carrots", + "red chili peppers", + "sesame oil", + "peanut oil" + ] + }, + { + "id": 46322, + "cuisine": "southern_us", + "ingredients": [ + "instant potato flakes", + "smoked paprika", + "cracked black pepper", + "chicken", + "buttermilk", + "canola oil", + "kosher salt", + "all-purpose flour" + ] + }, + { + "id": 27912, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "butternut squash", + "salt", + "lacinato kale", + "ground nutmeg", + "ricotta cheese", + "garlic cloves", + "crushed tomatoes", + "ground black pepper", + "purple onion", + "dried oregano", + "olive oil", + "whole wheat lasagna noodles", + "shredded mozzarella cheese" + ] + }, + { + "id": 26007, + "cuisine": "jamaican", + "ingredients": [ + "eggs", + "pepper", + "ground black pepper", + "salt", + "bread crumbs", + "curry powder", + "beef stock", + "shortening", + "water", + "flour", + "margarine", + "cold water", + "white onion", + "dried thyme", + "lean ground beef" + ] + }, + { + "id": 8100, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "eggplant", + "green chilies", + "coconut milk", + "sugar", + "seeds", + "mustard seeds", + "onions", + "green bell pepper", + "vinegar", + "cumin seed", + "fresno chiles", + "curry leaves", + "curry powder", + "salt", + "cinnamon sticks", + "ground turmeric" + ] + }, + { + "id": 29266, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "ground cayenne pepper", + "lime", + "plum tomatoes", + "minced garlic", + "chopped cilantro fresh", + "diced onions", + "salt" + ] + }, + { + "id": 23933, + "cuisine": "moroccan", + "ingredients": [ + "fat free less sodium chicken broth", + "peeled fresh ginger", + "ground coriander", + "ground cinnamon", + "ground black pepper", + "yellow onion", + "ground cumin", + "olive oil", + "salt", + "garlic cloves", + "boneless chicken skinless thigh", + "dried apricot", + "chickpeas" + ] + }, + { + "id": 49480, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "green onions", + "rice vinegar", + "corn starch", + "soy sauce", + "olive oil", + "red pepper flakes", + "orange juice", + "brown sugar", + "water", + "boneless skinless chicken breasts", + "all-purpose flour", + "grated orange", + "pepper", + "fresh ginger root", + "salt", + "lemon juice" + ] + }, + { + "id": 23234, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "buttermilk", + "flour", + "cornmeal", + "baking powder", + "baking soda", + "salt" + ] + }, + { + "id": 44834, + "cuisine": "irish", + "ingredients": [ + "sugar", + "grated lemon zest", + "butter", + "corn starch", + "salt", + "water", + "fresh lemon juice" + ] + }, + { + "id": 31213, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "oil", + "mirin", + "soaking liquid", + "minced pork", + "sugar", + "dried shiitake mushrooms" + ] + }, + { + "id": 43220, + "cuisine": "chinese", + "ingredients": [ + "beef", + "garlic cloves", + "water", + "broccoli", + "mung bean sprouts", + "soy sauce", + "vegetable oil", + "corn starch", + "fresh ginger", + "beef broth" + ] + }, + { + "id": 45630, + "cuisine": "southern_us", + "ingredients": [ + "ground paprika", + "self rising flour", + "meat tenderizer", + "black pepper", + "salt", + "corn flour", + "ketchup", + "baking powder", + "mustard powder", + "eggs", + "milk", + "hot chili sauce", + "chicken" + ] + }, + { + "id": 31597, + "cuisine": "mexican", + "ingredients": [ + "water", + "chile pepper", + "pinto beans", + "ground black pepper", + "bacon", + "chopped cilantro fresh", + "lime", + "tomatillos", + "onions", + "chicken bouillon granules", + "flank steak", + "garlic" + ] + }, + { + "id": 36386, + "cuisine": "chinese", + "ingredients": [ + "water", + "garlic sauce", + "oil", + "beansprouts", + "soy sauce", + "Shaoxing wine", + "firm tofu", + "chow mein noodles", + "sugar", + "hoisin sauce", + "chinese cabbage", + "garlic cloves", + "white pepper", + "sesame oil", + "scallions", + "carrots" + ] + }, + { + "id": 12304, + "cuisine": "jamaican", + "ingredients": [ + "red kidney beans", + "black pepper", + "garlic", + "oil", + "brown sugar", + "water", + "sauce", + "onions", + "tomatoes", + "pepper", + "salt", + "thyme", + "ketchup", + "ginger", + "scallions", + "chicken" + ] + }, + { + "id": 18845, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "olive oil", + "red wine", + "fresh basil leaves", + "pepper", + "grated parmesan cheese", + "salt", + "mozzarella cheese", + "lasagna noodles", + "garlic", + "crushed tomatoes", + "ricotta cheese", + "onions" + ] + }, + { + "id": 23492, + "cuisine": "southern_us", + "ingredients": [ + "lemon", + "sugar", + "tea bags", + "fresh mint", + "water" + ] + }, + { + "id": 20101, + "cuisine": "italian", + "ingredients": [ + "bread ciabatta", + "freshly ground pepper", + "coarse salt", + "asparagus spears", + "parmesan cheese", + "garlic cloves", + "extra-virgin olive oil", + "monterey jack" + ] + }, + { + "id": 45626, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "kale", + "crushed red pepper", + "white onion", + "russet potatoes", + "chicken bouillon", + "bacon pieces", + "garlic puree", + "water", + "heavy cream" + ] + }, + { + "id": 7676, + "cuisine": "british", + "ingredients": [ + "figs", + "shortcrust pastry", + "mixed spice", + "currant", + "treacle", + "corn starch" + ] + }, + { + "id": 36416, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "Mexican cheese blend", + "bacon", + "milk", + "jalapeno chilies", + "sugar", + "cornbread mix", + "chopped onion", + "cream style corn", + "vegetable oil" + ] + }, + { + "id": 6961, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "baking soda", + "vegetable oil", + "all-purpose flour", + "collard greens", + "unsalted butter", + "buttermilk", + "freshly ground pepper", + "celery ribs", + "chorizo", + "baking powder", + "salt", + "white cornmeal", + "sugar", + "large eggs", + "extra large eggs", + "onions" + ] + }, + { + "id": 39695, + "cuisine": "southern_us", + "ingredients": [ + "boneless chicken breast", + "all-purpose flour", + "buttermilk", + "green onions", + "cornmeal", + "chicken broth", + "bacon" + ] + }, + { + "id": 31048, + "cuisine": "greek", + "ingredients": [ + "dried basil", + "salt", + "diced tomatoes", + "canola oil", + "boneless skinless chicken breasts", + "feta cheese crumbles", + "pepper", + "cooked bacon" + ] + }, + { + "id": 31931, + "cuisine": "french", + "ingredients": [ + "chocolate morsels", + "powdered sugar", + "unsweetened cocoa powder", + "cheese" + ] + }, + { + "id": 12822, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "fresh parsley", + "green bell pepper", + "dry red wine", + "tomatoes", + "crimini mushrooms", + "boneless skinless chicken breast halves", + "olive oil", + "salt" + ] + }, + { + "id": 46853, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "flour", + "butter", + "cayenne pepper", + "garlic powder", + "chili powder", + "cheese", + "cumin", + "fresh cilantro", + "cooked chicken", + "paprika", + "coriander", + "light sour cream", + "diced green chilies", + "soft taco size flour tortillas", + "shredded pepper jack cheese" + ] + }, + { + "id": 10952, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "golden raisins", + "garlic cloves", + "onions", + "eggplant", + "extra-virgin olive oil", + "cinnamon sticks", + "cumin", + "curry powder", + "vegetable stock", + "carrots", + "chopped cilantro fresh", + "zucchini", + "instant couscous", + "red bell pepper" + ] + }, + { + "id": 42598, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "salsa", + "sour cream", + "diced red onions", + "taco seasoning", + "diced green chilies", + "sauce", + "chicken breasts", + "shredded cheese" + ] + }, + { + "id": 20172, + "cuisine": "indian", + "ingredients": [ + "fat free less sodium chicken broth", + "all-purpose flour", + "cooked turkey", + "chopped cilantro fresh", + "curry powder", + "chopped onion", + "salt", + "canola oil" + ] + }, + { + "id": 10154, + "cuisine": "brazilian", + "ingredients": [ + "passion fruit", + "sweetened condensed milk", + "crema" + ] + }, + { + "id": 24482, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "granulated sugar", + "all-purpose flour", + "ladyfingers", + "vanilla beans", + "whipping cream", + "unsweetened cocoa powder", + "powdered sugar", + "fat free milk", + "brewed espresso", + "egg substitute", + "egg yolks", + "cream cheese, soften" + ] + }, + { + "id": 32624, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "whole grain buns", + "salt", + "carrots", + "ground cumin", + "vegetable oil cooking spray", + "olive oil", + "garlic cloves", + "onions", + "tomatoes", + "black beans", + "salsa", + "self-rising cornmeal", + "mayonaise", + "jalapeno chilies", + "pinto beans", + "dried oregano" + ] + }, + { + "id": 28893, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "chopped onion", + "cooking spray", + "chopped cilantro fresh", + "low-fat sour cream", + "salsa", + "flour tortillas", + "sliced mushrooms" + ] + }, + { + "id": 31435, + "cuisine": "southern_us", + "ingredients": [ + "leaf lettuce", + "green onions", + "bacon" + ] + }, + { + "id": 20346, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "garlic", + "tomatoes", + "crushed red pepper flakes", + "coarse salt", + "fresh basil", + "extra-virgin olive oil" + ] + }, + { + "id": 29554, + "cuisine": "brazilian", + "ingredients": [ + "vegetable broth", + "carrots", + "ground cumin", + "water", + "orange juice", + "sour cream", + "black beans", + "cayenne pepper", + "red bell pepper", + "olive oil", + "garlic cloves", + "onions" + ] + }, + { + "id": 26326, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salsa", + "ground turkey", + "refried beans", + "diced tomatoes", + "green chilies", + "avocado", + "chili powder", + "cayenne pepper", + "ground cumin", + "Mexican cheese blend", + "salt", + "sour cream" + ] + }, + { + "id": 32817, + "cuisine": "indian", + "ingredients": [ + "almond flour", + "powdered milk", + "sugar", + "dry coconut", + "condensed milk", + "nutmeg", + "cardamon", + "pumpkin seeds", + "unsalted butter", + "pumpkin purée" + ] + }, + { + "id": 20716, + "cuisine": "jamaican", + "ingredients": [ + "whole wheat hamburger buns", + "ground red pepper", + "dry bread crumbs", + "garlic cloves", + "lettuce leaves", + "purple onion", + "ground allspice", + "canola oil", + "black beans", + "light mayonnaise", + "chopped onion", + "red bell pepper", + "cooked rice", + "peeled fresh ginger", + "salt", + "ground coriander" + ] + }, + { + "id": 48676, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "cooking spray", + "all-purpose flour", + "yellow corn meal", + "low-fat buttermilk", + "butter", + "frozen whole kernel corn", + "baking powder", + "red bell pepper", + "sugar", + "large eggs", + "salt" + ] + }, + { + "id": 17913, + "cuisine": "italian", + "ingredients": [ + "shiitake", + "butter", + "cornmeal", + "olive oil", + "grated parmesan cheese", + "ricotta", + "mascarpone", + "garlic", + "fresh parsley", + "water", + "ground black pepper", + "salt" + ] + }, + { + "id": 25829, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "cocoa powder", + "sweetened condensed milk", + "butter" + ] + }, + { + "id": 40238, + "cuisine": "mexican", + "ingredients": [ + "jumbo shrimp", + "pepper", + "garlic", + "chopped cilantro", + "kosher salt", + "refried beans", + "purple onion", + "tostada shells", + "lime", + "shells", + "plum tomatoes", + "romaine lettuce", + "crumbles", + "salsa verde", + "hass avocado" + ] + }, + { + "id": 26382, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "confectioners sugar", + "honey", + "salt", + "baking powder", + "all-purpose flour", + "eggs", + "butter", + "white sugar" + ] + }, + { + "id": 29079, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "kosher salt", + "raisins", + "tamarind paste", + "boneless pork shoulder", + "sugar", + "vegetable oil", + "ginger", + "fresh mint", + "white vinegar", + "tumeric", + "water", + "poppy seeds", + "cumin seed", + "clove", + "red chili peppers", + "cinnamon", + "garlic", + "onions" + ] + }, + { + "id": 42165, + "cuisine": "moroccan", + "ingredients": [ + "hamburger buns", + "shallots", + "ground turkey", + "ground ginger", + "cooking spray", + "chickpeas", + "dried apricot", + "salt", + "ground cumin", + "ground cinnamon", + "ground red pepper", + "tzatziki" + ] + }, + { + "id": 27171, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "olive oil", + "garlic", + "chopped parsley", + "pepper", + "red wine", + "cayenne pepper", + "basmati rice", + "tomatoes", + "spanish onion", + "basil", + "red bell pepper", + "cumin", + "sugar", + "chili powder", + "salt", + "ground beef" + ] + }, + { + "id": 4243, + "cuisine": "british", + "ingredients": [ + "pearl onions", + "water", + "butter" + ] + }, + { + "id": 5296, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "hard-boiled egg", + "curry", + "curry powder", + "spices", + "squid", + "water", + "shallots", + "salt", + "cooking oil", + "chili oil", + "coconut milk" + ] + }, + { + "id": 1863, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "parmesan cheese" + ] + }, + { + "id": 7008, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "chili powder", + "salsa", + "sour cream", + "tomato sauce", + "large eggs", + "salt", + "ground coriander", + "white cornmeal", + "milk", + "black olives", + "chopped onion", + "ground turkey", + "pepper", + "jalapeno chilies", + "all-purpose flour", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 45311, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "peeled fresh ginger", + "garlic", + "scallions", + "mung bean sprouts", + "dark soy sauce", + "water chestnuts", + "chuka soba noodles", + "green pepper", + "corn starch", + "chicken broth", + "ground black pepper", + "boneless skinless chicken breasts", + "yellow onion", + "oyster sauce", + "cooked white rice", + "sugar", + "mushrooms", + "sesame oil", + "peanut oil", + "celery" + ] + }, + { + "id": 19899, + "cuisine": "mexican", + "ingredients": [ + "lime", + "white fleshed fish", + "fillets", + "cod", + "salt", + "sour cream", + "dried oregano", + "olive oil", + "tilapia", + "chopped cilantro fresh", + "green cabbage", + "salsa", + "corn tortillas", + "ground cumin" + ] + }, + { + "id": 23598, + "cuisine": "mexican", + "ingredients": [ + "lump crab meat", + "clamato juice", + "bottled clam juice", + "california avocado", + "fresh lime juice", + "ketchup", + "salt", + "shrimp", + "white onion", + "hot sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 19921, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "unsalted butter", + "rice vinegar", + "tomato paste", + "curry powder", + "vegetable oil", + "carrots", + "mayonaise", + "Ciabatta rolls", + "salt", + "ground beef", + "Frank's® RedHot® Original Cayenne Pepper Sauce", + "pepper", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 3534, + "cuisine": "greek", + "ingredients": [ + "capers", + "vegetable oil", + "boneless skinless chicken breast halves", + "pepper", + "all-purpose flour", + "white wine", + "salt", + "unsalted butter", + "lemon juice" + ] + }, + { + "id": 41818, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "margarine", + "angel hair", + "broccoli florets", + "shredded mozzarella cheese", + "ground black pepper", + "chopped onion", + "minced garlic", + "salt", + "shrimp" + ] + }, + { + "id": 3177, + "cuisine": "russian", + "ingredients": [ + "vegan sour cream", + "agave nectar", + "silken tofu", + "all-purpose flour", + "sugar", + "baking powder", + "baking soda", + "margarine" + ] + }, + { + "id": 31796, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "olive oil", + "extra-virgin olive oil", + "kosher salt", + "dry yeast", + "all-purpose flour", + "warm water", + "whole wheat flour", + "salt", + "honey", + "cooking spray" + ] + }, + { + "id": 48579, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "salt", + "bonito flakes", + "nori", + "soy sauce", + "white sesame seeds", + "black sesame seeds" + ] + }, + { + "id": 35741, + "cuisine": "southern_us", + "ingredients": [ + "ground ginger", + "water", + "onions", + "chicken bouillon", + "garlic", + "black pepper", + "salt", + "collard greens", + "garlic powder" + ] + }, + { + "id": 22685, + "cuisine": "irish", + "ingredients": [ + "eggs", + "irish cream liqueur", + "flour", + "butter", + "sugar", + "Guinness Beer", + "M&M's Candy", + "salt", + "brown sugar", + "kosher salt", + "egg yolks", + "vanilla", + "cocoa", + "granulated sugar", + "baking powder", + "chocolate chips" + ] + }, + { + "id": 12025, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "agave nectar", + "cilantro", + "dark chocolate", + "boneless skinless chicken breasts", + "chicken", + "lime", + "queso fresco", + "tomato paste", + "sweet potatoes", + "purple onion" + ] + }, + { + "id": 16517, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic", + "oil", + "sesame seeds", + "scallions", + "water", + "salt", + "sugar", + "flour", + "chinese five-spice powder" + ] + }, + { + "id": 41513, + "cuisine": "korean", + "ingredients": [ + "vodka", + "all-purpose flour", + "cold water", + "sweet soy sauce", + "corn starch", + "kosher salt", + "peanut oil", + "chicken wings", + "baking powder" + ] + }, + { + "id": 15569, + "cuisine": "filipino", + "ingredients": [ + "plantains", + "spring rolls", + "brown sugar", + "oil" + ] + }, + { + "id": 44428, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "butter", + "chana dal", + "salt", + "water", + "chili powder", + "rajma", + "garam masala", + "urad dal" + ] + }, + { + "id": 19730, + "cuisine": "french", + "ingredients": [ + "black peppercorns", + "bread crumb fresh", + "salt", + "California bay leaves", + "chopped garlic", + "clove", + "chopped leaves", + "stewed tomatoes", + "beef broth", + "thyme sprigs", + "tomato paste", + "black pepper", + "confit duck leg", + "chopped onion", + "pork sausages", + "cold water", + "parsley sprigs", + "olive oil", + "white beans", + "celery" + ] + }, + { + "id": 32487, + "cuisine": "french", + "ingredients": [ + "pearl onions", + "butter", + "roasting chickens", + "fresh parsley", + "black peppercorns", + "bay leaves", + "bacon slices", + "low salt chicken broth", + "burgundy", + "celery ribs", + "olive oil", + "large garlic cloves", + "carrots", + "onions", + "parsley sprigs", + "shallots", + "all-purpose flour", + "thyme sprigs", + "wild mushrooms" + ] + }, + { + "id": 46657, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "squid", + "pineapple slices", + "jalapeno chilies", + "chopped cilantro fresh", + "ground black pepper", + "corn starch", + "sugar", + "garlic", + "canola oil" + ] + }, + { + "id": 2158, + "cuisine": "thai", + "ingredients": [ + "stock", + "fresh ginger", + "oil", + "lemongrass", + "shallots", + "minced garlic", + "palm sugar", + "kaffir lime leaves", + "milk", + "sauce" + ] + }, + { + "id": 32329, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "kosher salt", + "all-purpose flour", + "italian seasoning", + "mayonaise", + "vegetable oil", + "freshly ground pepper", + "horseradish", + "milk", + "cayenne pepper", + "yellow corn meal", + "ketchup", + "cajun seasoning", + "dill pickles" + ] + }, + { + "id": 18863, + "cuisine": "japanese", + "ingredients": [ + "dark soy sauce", + "mirin", + "light soy sauce", + "salt", + "cold water", + "dashi", + "all-purpose flour", + "sugar", + "egg yolks" + ] + }, + { + "id": 3122, + "cuisine": "french", + "ingredients": [ + "water", + "chopped fresh thyme", + "salt", + "granulated sugar", + "blue cheese", + "champagne vinegar", + "fresh ginger", + "butter", + "fresh lemon juice", + "brown sugar", + "bosc pears", + "cracked black pepper", + "thyme sprigs" + ] + }, + { + "id": 28325, + "cuisine": "brazilian", + "ingredients": [ + "cachaca", + "sugar", + "lime", + "blackberries" + ] + }, + { + "id": 11249, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "garlic powder", + "white rice", + "cornmeal", + "milk", + "lean ground beef", + "salsa", + "pork sausages", + "dried basil", + "diced tomatoes", + "beef broth", + "dried oregano", + "fresh basil", + "ground black pepper", + "salt", + "onions" + ] + }, + { + "id": 9127, + "cuisine": "french", + "ingredients": [ + "rosemary sprigs", + "fresh thyme", + "garlic cloves", + "ground black pepper", + "sea salt", + "dijon mustard", + "beef broth", + "water", + "bay leaves", + "leg of lamb" + ] + }, + { + "id": 5681, + "cuisine": "mexican", + "ingredients": [ + "frozen limeade", + "tequila", + "triple sec", + "kosher salt", + "crushed ice" + ] + }, + { + "id": 593, + "cuisine": "southern_us", + "ingredients": [ + "vidalia onion", + "sugar", + "salt", + "white vinegar", + "celery seed" + ] + }, + { + "id": 31461, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "onion powder", + "salsa", + "ground turkey", + "zucchini", + "garlic", + "smoked paprika", + "cumin", + "garlic powder", + "cilantro", + "shredded cheese", + "oregano", + "chili powder", + "salt", + "sour cream" + ] + }, + { + "id": 7554, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "red pepper flakes", + "fresh ginger", + "kosher salt", + "rice vinegar", + "serrano chilies", + "zucchini" + ] + }, + { + "id": 49539, + "cuisine": "mexican", + "ingredients": [ + "salad", + "ranch dressing", + "taco meat", + "shredded cheddar cheese", + "fajita size flour tortillas", + "chili beans", + "salsa", + "lettuce", + "corn", + "ground turkey" + ] + }, + { + "id": 8215, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "baking potatoes", + "frozen chopped spinach", + "large eggs", + "chopped onion", + "ground black pepper", + "salt", + "reduced fat sharp cheddar cheese", + "cooking spray", + "canadian bacon" + ] + }, + { + "id": 36662, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "flank steak", + "salt", + "dried oregano", + "ground black pepper", + "fat free less sodium beef broth", + "red bell pepper", + "ground cumin", + "sherry vinegar", + "pitted green olives", + "garlic cloves", + "dried rosemary", + "tomato paste", + "bay leaves", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 37274, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "cayenne pepper", + "chopped cilantro fresh", + "swordfish steaks", + "large garlic cloves", + "garlic cloves", + "caraway seeds", + "lime wedges", + "ground coriander", + "nonfat yogurt", + "chopped onion" + ] + }, + { + "id": 47202, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "oil", + "soy sauce", + "ginger", + "water", + "garlic", + "brown sugar", + "flank steak", + "corn starch" + ] + }, + { + "id": 32943, + "cuisine": "italian", + "ingredients": [ + "spinach", + "swiss chard", + "tubetti", + "boiling potatoes", + "water", + "fennel bulb", + "celery", + "canned low sodium chicken broth", + "ground black pepper", + "salt", + "olive oil", + "grated parmesan cheese", + "onions" + ] + }, + { + "id": 15411, + "cuisine": "mexican", + "ingredients": [ + "coriander", + "achiote", + "sazon seasoning", + "Mexican beer", + "white pepper", + "skirt steak" + ] + }, + { + "id": 17148, + "cuisine": "french", + "ingredients": [ + "cherry tomatoes", + "clam juice", + "garlic cloves", + "mayonaise", + "fennel bulb", + "extra-virgin olive oil", + "flat leaf parsley", + "kosher salt", + "dry white wine", + "anchovy fillets", + "fresh basil leaves", + "crusty bread", + "ground black pepper", + "shellfish", + "fresh lemon juice" + ] + }, + { + "id": 11547, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "flour", + "sage leaves", + "unsalted butter", + "ground nutmeg", + "russet potatoes", + "parmigiano-reggiano cheese", + "large eggs" + ] + }, + { + "id": 20388, + "cuisine": "italian", + "ingredients": [ + "salad greens", + "balsamic vinegar", + "olive oil", + "goat cheese", + "cherry tomatoes", + "whole wheat tortillas", + "roasted red peppers", + "shredded mozzarella cheese" + ] + }, + { + "id": 36273, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "chopped celery", + "dry white wine", + "carrots", + "finely chopped onion", + "chopped fresh sage", + "olive oil", + "chicken breast halves" + ] + }, + { + "id": 25642, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "potatoes", + "butter cooking spray", + "salt", + "shredded cheddar cheese", + "chile pepper", + "bacon", + "pepper", + "onion powder", + "extra large eggs", + "onions", + "flour tortillas", + "vegetable oil", + "garlic" + ] + }, + { + "id": 29929, + "cuisine": "french", + "ingredients": [ + "new potatoes", + "garlic", + "capers", + "extra-virgin olive oil", + "purple onion", + "eggs", + "red wine vinegar", + "fine sea salt", + "radishes", + "cornichons" + ] + }, + { + "id": 3914, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "russet potatoes", + "dried rosemary", + "butter", + "roquefort cheese", + "dry bread crumbs" + ] + }, + { + "id": 4911, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "serrano peppers", + "salt", + "green bell pepper", + "ground black pepper", + "diced tomatoes", + "red bell pepper", + "fresh tomatoes", + "jalapeno chilies", + "garlic", + "fresh lime juice", + "olive oil", + "Mexican beer", + "cilantro leaves" + ] + }, + { + "id": 17630, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "vegetable oil", + "corn starch", + "iceberg lettuce", + "brown sugar", + "chicken breasts", + "garlic", + "toasted sesame seeds", + "diced mushrooms", + "asparagus", + "ginger", + "onions", + "sliced green onions", + "soy sauce", + "sesame oil", + "rice vinegar", + "cashew nuts" + ] + }, + { + "id": 8824, + "cuisine": "french", + "ingredients": [ + "water", + "all-purpose flour", + "butter", + "eggs", + "salt", + "milk" + ] + }, + { + "id": 13335, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "zucchini", + "bow-tie pasta", + "yellow squash", + "red pepper flakes", + "hot italian turkey sausage", + "green bell pepper", + "grated parmesan cheese", + "onions", + "chicken bouillon granules", + "olive oil", + "garlic", + "plum tomatoes" + ] + }, + { + "id": 5654, + "cuisine": "thai", + "ingredients": [ + "vegetable oil", + "skirt steak", + "fish sauce", + "green beans", + "cooked rice", + "garlic", + "peeled fresh ginger", + "fresh basil leaves" + ] + }, + { + "id": 45306, + "cuisine": "japanese", + "ingredients": [ + "kamaboko", + "carrots", + "canola oil", + "curry sauce mix", + "onions", + "udon", + "minced pork", + "sliced green onions", + "water", + "salt", + "nori" + ] + }, + { + "id": 47142, + "cuisine": "french", + "ingredients": [ + "whole grain mustard", + "fingerling potatoes", + "fresh tarragon", + "low sodium chicken broth", + "fresh thyme leaves", + "garlic cloves", + "unsalted butter", + "shallots", + "extra-virgin olive oil", + "guinea hens", + "chopped fresh chives", + "Italian parsley leaves", + "bay leaf" + ] + }, + { + "id": 11345, + "cuisine": "french", + "ingredients": [ + "dried thyme", + "garlic", + "white bread", + "ground black pepper", + "salt", + "olive oil", + "white wine vinegar", + "eggs", + "bacon", + "curly endive" + ] + }, + { + "id": 36861, + "cuisine": "korean", + "ingredients": [ + "sugar", + "honey", + "pork shoulder", + "pepper flakes", + "chili pepper", + "scallions", + "toasted sesame seeds", + "soy sauce", + "ginger", + "onions", + "sake", + "minced garlic", + "toasted sesame oil" + ] + }, + { + "id": 11845, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "green chile", + "light coconut milk", + "lime", + "coconut" + ] + }, + { + "id": 19251, + "cuisine": "southern_us", + "ingredients": [ + "fat free less sodium chicken broth", + "hot pepper sauce", + "worcestershire sauce", + "fresh lemon juice", + "sliced green onions", + "olive oil", + "mushrooms", + "grated lemon zest", + "grits", + "large egg whites", + "cooking spray", + "salt", + "red bell pepper", + "reduced fat cheddar cheese", + "ground black pepper", + "butter", + "garlic cloves", + "large shrimp" + ] + }, + { + "id": 15838, + "cuisine": "southern_us", + "ingredients": [ + "ground cloves", + "cinnamon sticks", + "ground cinnamon", + "navel oranges", + "cold water", + "light corn syrup", + "orange rind", + "sugar", + "pink grapefruit" + ] + }, + { + "id": 4339, + "cuisine": "southern_us", + "ingredients": [ + "boneless chicken skinless thigh", + "olive oil", + "garlic cloves", + "granny smith apples", + "curry powder", + "orzo", + "onions", + "canned chicken broth", + "peeled tomatoes", + "crushed red pepper", + "chopped cilantro fresh", + "dried currants", + "plain yogurt", + "peeled fresh ginger", + "red bell pepper" + ] + }, + { + "id": 2550, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "ground coriander", + "chopped cilantro fresh", + "russet potatoes", + "fresh lemon juice", + "tumeric", + "paprika", + "low salt chicken broth", + "peeled fresh ginger", + "garlic cloves" + ] + }, + { + "id": 34516, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "salt", + "chicken thighs", + "crushed tomatoes", + "garlic cloves", + "black pepper", + "taco seasoning", + "chicken breasts", + "red bell pepper" + ] + }, + { + "id": 5515, + "cuisine": "greek", + "ingredients": [ + "eggs", + "lemon", + "scallions", + "chili pepper", + "lamb", + "olive oil", + "liver", + "fresh dill", + "sea salt", + "onions" + ] + }, + { + "id": 44763, + "cuisine": "moroccan", + "ingredients": [ + "prunes", + "chopped tomatoes", + "spices", + "squash", + "ground ginger", + "fresh coriander", + "ground black pepper", + "chickpeas", + "ground cumin", + "sliced almonds", + "stewing beef", + "sea salt", + "onions", + "ground cinnamon", + "olive oil", + "vegetable stock", + "sweet paprika" + ] + }, + { + "id": 14013, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "smoked sausage", + "ham", + "cooked rice", + "red beans", + "hot sauce", + "ground black pepper", + "salt", + "onions", + "green bell pepper", + "ground red pepper", + "garlic cloves" + ] + }, + { + "id": 844, + "cuisine": "greek", + "ingredients": [ + "pepper", + "ground nutmeg", + "butter", + "feta cheese crumbles", + "oregano", + "olive oil", + "potatoes", + "salt", + "fresh parsley", + "milk", + "zucchini", + "extra-virgin olive oil", + "ground beef", + "tomatoes", + "eggplant", + "egg yolks", + "all-purpose flour", + "onions" + ] + }, + { + "id": 14284, + "cuisine": "french", + "ingredients": [ + "sugar", + "orange rind", + "mint sprigs", + "water", + "rhubarb", + "fresh orange juice" + ] + }, + { + "id": 25217, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "ground white pepper", + "ice cubes", + "ginger", + "chicken", + "rice wine", + "white sugar", + "ground black pepper", + "salt" + ] + }, + { + "id": 46506, + "cuisine": "mexican", + "ingredients": [ + "lime", + "large garlic cloves", + "tortilla shells", + "light sour cream", + "roma tomatoes", + "cilantro", + "serrano chile", + "avocado", + "radishes", + "gluten", + "organic coconut oil", + "black beans", + "boneless skinless chicken breasts", + "yellow onion" + ] + }, + { + "id": 14959, + "cuisine": "moroccan", + "ingredients": [ + "loaves", + "herbs", + "active dry yeast", + "all-purpose flour", + "warm water", + "sea salt", + "semolina flour", + "olive oil" + ] + }, + { + "id": 31698, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "olive oil", + "scallions", + "nonfat ricotta cheese", + "sugar", + "balsamic vinegar", + "fresh parsley leaves", + "part-skim mozzarella", + "large eggs", + "garlic cloves", + "silken tofu", + "jumbo pasta shells", + "onions" + ] + }, + { + "id": 5574, + "cuisine": "italian", + "ingredients": [ + "salt", + "ground black pepper", + "lemon wedge", + "olive oil", + "t-bone steak" + ] + }, + { + "id": 17388, + "cuisine": "japanese", + "ingredients": [ + "yellow miso", + "rice vinegar", + "grated orange", + "vegetable oil", + "red bell pepper", + "asparagus", + "fresh lemon juice", + "water", + "fresh orange juice", + "large shrimp" + ] + }, + { + "id": 33610, + "cuisine": "british", + "ingredients": [ + "nutmeg", + "water", + "corn starch", + "clove", + "pork", + "butter", + "double crust pie", + "pepper", + "salt", + "pastry", + "cinnamon", + "onions" + ] + }, + { + "id": 33959, + "cuisine": "french", + "ingredients": [ + "chocolate glaze", + "water", + "egg whites", + "large eggs", + "pastry cream", + "pie crust mix" + ] + }, + { + "id": 38928, + "cuisine": "thai", + "ingredients": [ + "lettuce", + "lime rind", + "green onions", + "salt", + "coconut milk", + "sugar", + "green curry paste", + "ginger", + "freshly ground pepper", + "fish sauce", + "lime juice", + "vegetable oil", + "cilantro leaves", + "rice paper", + "soy sauce", + "boneless chicken breast", + "canned tomatoes", + "english cucumber" + ] + }, + { + "id": 9751, + "cuisine": "japanese", + "ingredients": [ + "dried kelp", + "dried bonito", + "water" + ] + }, + { + "id": 39716, + "cuisine": "french", + "ingredients": [ + "pepper", + "gruyere cheese", + "broccoli", + "ground nutmeg", + "stone ground mustard", + "milk", + "salt", + "butter", + "all-purpose flour" + ] + }, + { + "id": 46485, + "cuisine": "moroccan", + "ingredients": [ + "roasted pistachios", + "half & half", + "crackers", + "chèvre", + "orange blossom honey" + ] + }, + { + "id": 3613, + "cuisine": "southern_us", + "ingredients": [ + "lemon", + "baby back ribs", + "barbecue rub", + "barbecue sauce" + ] + }, + { + "id": 40065, + "cuisine": "spanish", + "ingredients": [ + "jumbo shrimp", + "olive oil", + "large garlic cloves", + "fresh lemon juice", + "mussels", + "fat free less sodium chicken broth", + "finely chopped onion", + "green peas", + "fresh parsley", + "saffron threads", + "boneless chicken thighs", + "prosciutto", + "diced tomatoes", + "red bell pepper", + "arborio rice", + "water", + "lemon wedge", + "sweet paprika", + "chorizo sausage" + ] + }, + { + "id": 42170, + "cuisine": "japanese", + "ingredients": [ + "black sesame seeds", + "glutinous rice", + "salt", + "beans" + ] + }, + { + "id": 46875, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "ground red pepper", + "garlic", + "cinnamon sticks", + "olive oil", + "cardamon", + "cilantro", + "coconut cream", + "clove", + "almonds", + "chicken breasts", + "salt", + "bay leaf", + "water", + "garam masala", + "heavy cream", + "yellow onion", + "ground cumin" + ] + }, + { + "id": 18330, + "cuisine": "indian", + "ingredients": [ + "mustard", + "red chili peppers", + "purple onion", + "oil", + "asafoetida", + "sesame oil", + "fenugreek seeds", + "curry leaves", + "chili powder", + "salt", + "clove", + "tumeric", + "lemon", + "okra" + ] + }, + { + "id": 21950, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chopped fresh chives", + "shredded sharp cheddar cheese", + "fontina", + "rye bread", + "1% low-fat milk", + "ham", + "fresh parmesan cheese", + "cooking spray", + "salt", + "pasta", + "ground black pepper", + "spicy brown mustard", + "all-purpose flour" + ] + }, + { + "id": 27519, + "cuisine": "british", + "ingredients": [ + "almond extract", + "salt", + "eggs", + "orange extract", + "sour cream", + "baking soda", + "vanilla extract", + "white sugar", + "butter", + "all-purpose flour" + ] + }, + { + "id": 30524, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cilantro leaves", + "unsalted butter", + "grated cotija", + "corn", + "chili powder" + ] + }, + { + "id": 17923, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "water", + "extra-virgin olive oil", + "borlotti beans", + "tomatoes", + "Italian parsley leaves", + "garlic cloves", + "celery ribs", + "fresh thyme", + "salt", + "onions", + "black pepper", + "farro", + "carrots" + ] + }, + { + "id": 13551, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "Italian parsley leaves", + "basil leaves", + "garlic cloves", + "pinenuts", + "pecorino romano cheese", + "parmigiano reggiano cheese", + "Italian basil" + ] + }, + { + "id": 33662, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "hoisin sauce", + "chinese five-spice powder", + "light soy sauce", + "ginger", + "honey", + "garlic", + "wine", + "sesame oil", + "pork butt" + ] + }, + { + "id": 28855, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "pasta sauce", + "ground beef", + "penne pasta", + "water" + ] + }, + { + "id": 4409, + "cuisine": "indian", + "ingredients": [ + "ginger", + "asafoetida", + "rice", + "tomatoes", + "salt", + "red chili peppers", + "green chilies" + ] + }, + { + "id": 9767, + "cuisine": "irish", + "ingredients": [ + "mashed potatoes", + "salt", + "milk", + "melted butter", + "spring onions", + "pepper" + ] + }, + { + "id": 37276, + "cuisine": "filipino", + "ingredients": [ + "cider vinegar", + "dried oregano", + "bay leaves", + "minced garlic", + "soy sauce", + "cornish hens" + ] + }, + { + "id": 1229, + "cuisine": "british", + "ingredients": [ + "powdered sugar", + "jam", + "whipped cream", + "fast rising yeast", + "salt", + "milk", + "bread flour" + ] + }, + { + "id": 40293, + "cuisine": "thai", + "ingredients": [ + "brioche buns", + "thai basil", + "garlic", + "toasted sesame oil", + "mayonaise", + "kosher salt", + "mint leaves", + "cilantro leaves", + "ice cubes", + "brisket", + "Sriracha", + "purple onion", + "iceberg lettuce", + "sugar", + "light soy sauce", + "ginger", + "beef sirloin" + ] + }, + { + "id": 8106, + "cuisine": "thai", + "ingredients": [ + "eggs", + "basil leaves", + "ginger", + "carrots", + "soy sauce", + "cooked chicken", + "rice", + "brown sugar", + "spring onions", + "cayenne pepper", + "shrimp", + "chicken stock", + "black pepper", + "sliced leeks", + "peanut oil" + ] + }, + { + "id": 14920, + "cuisine": "irish", + "ingredients": [ + "ground pepper", + "frozen mixed vegetables", + "ketchup", + "all-purpose flour", + "chuck", + "mashed potatoes", + "coarse salt", + "onions", + "dried thyme", + "garlic cloves" + ] + }, + { + "id": 5278, + "cuisine": "italian", + "ingredients": [ + "veal cutlets", + "fat free less sodium beef broth", + "fresh lemon juice", + "marsala wine", + "shallots", + "all-purpose flour", + "fresh shiitake mushrooms", + "salt", + "flat leaf parsley", + "ground black pepper", + "butter", + "garlic cloves" + ] + }, + { + "id": 22017, + "cuisine": "thai", + "ingredients": [ + "lime", + "fresh green bean", + "red curry paste", + "coconut oil", + "sweet potatoes", + "light coconut milk", + "chicken", + "white onion", + "boneless skinless chicken breasts", + "garlic", + "cauliflower", + "fresh ginger", + "sea salt", + "chopped cilantro fresh" + ] + }, + { + "id": 9354, + "cuisine": "mexican", + "ingredients": [ + "yellow bell pepper", + "boneless skinless chicken breast halves", + "flour tortillas", + "poblano chiles", + "ground cumin", + "olive oil", + "purple onion", + "chopped cilantro fresh", + "ancho powder", + "fresh lime juice" + ] + }, + { + "id": 45693, + "cuisine": "indian", + "ingredients": [ + "chicken stock", + "fresh coriander", + "chili powder", + "salt", + "oil", + "onions", + "tomato purée", + "garam masala", + "paprika", + "ground coriander", + "lemon juice", + "ground cinnamon", + "chopped tomatoes", + "double cream", + "cardamom pods", + "garlic cloves", + "ground turmeric", + "caster sugar", + "yoghurt", + "ginger", + "cumin seed", + "fillets" + ] + }, + { + "id": 21045, + "cuisine": "korean", + "ingredients": [ + "green onions", + "rice vinegar", + "water", + "garlic", + "liquid aminos", + "sesame oil", + "sesame seeds", + "maple syrup" + ] + }, + { + "id": 10673, + "cuisine": "italian", + "ingredients": [ + "warm water", + "all-purpose flour", + "brine-cured olives", + "dry yeast", + "fresh rosemary", + "salt", + "olive oil" + ] + }, + { + "id": 21598, + "cuisine": "japanese", + "ingredients": [ + "scallions", + "soup", + "cod fillets", + "shiitake mushroom caps", + "vegetable oil" + ] + }, + { + "id": 21763, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "stewed tomatoes", + "yellow corn meal", + "green onions", + "nonfat cottage cheese", + "egg whites", + "salt", + "sugar", + "baking powder" + ] + }, + { + "id": 18430, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "crushed ice", + "lime", + "cachaca" + ] + }, + { + "id": 3660, + "cuisine": "french", + "ingredients": [ + "olive oil", + "fresh thyme leaves", + "ground black pepper", + "purple onion", + "onion soup", + "balsamic vinegar", + "baguette", + "shallots", + "grated Gruyère cheese" + ] + }, + { + "id": 38145, + "cuisine": "french", + "ingredients": [ + "salt", + "whipping cream", + "fresh tarragon", + "ground white pepper", + "tomatoes", + "lemon juice" + ] + }, + { + "id": 48064, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "crushed ice", + "mint", + "garlic", + "chaat masala", + "lime juice", + "salt", + "ginger", + "cucumber" + ] + }, + { + "id": 33951, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "extra-virgin olive oil", + "kosher salt", + "flat leaf parsley", + "black pepper", + "fresh lemon juice", + "grape tomatoes", + "chicken breasts" + ] + }, + { + "id": 35836, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "quickcooking grits", + "parsley sprigs", + "garlic powder", + "shredded sharp cheddar cheese", + "dried thyme", + "paprika", + "water", + "large eggs", + "pork sausages" + ] + }, + { + "id": 44388, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "freshly ground pepper", + "coarse salt", + "half & half", + "spaghetti", + "large eggs", + "bacon" + ] + }, + { + "id": 31093, + "cuisine": "french", + "ingredients": [ + "fennel seeds", + "dry white wine", + "garlic", + "large shrimp", + "fresh basil", + "red pepper", + "chopped onion", + "tomato paste", + "chopped fresh thyme", + "salt", + "olive oil", + "diced tomatoes", + "freshly ground pepper" + ] + }, + { + "id": 8044, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "brown rice", + "garlic", + "shredded cheese", + "ground cumin", + "tortillas", + "fat free greek yogurt", + "cayenne pepper", + "chipotles in adobo", + "water", + "chili powder", + "salsa", + "pinto beans", + "black beans", + "green onions", + "shredded lettuce", + "sauce", + "canola oil" + ] + }, + { + "id": 26518, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "apple jelly", + "ice water", + "sugar", + "large eggs", + "pears", + "hazelnuts", + "salt" + ] + }, + { + "id": 16318, + "cuisine": "southern_us", + "ingredients": [ + "water", + "light corn syrup", + "baking soda", + "peanuts", + "salt", + "baking sugar", + "butter" + ] + }, + { + "id": 9387, + "cuisine": "thai", + "ingredients": [ + "pizza crust", + "basil", + "red bell pepper", + "green onions", + "roasted peanuts", + "mozzarella cheese", + "cilantro", + "beansprouts", + "sweet chili sauce", + "cooked chicken", + "carrots" + ] + }, + { + "id": 29817, + "cuisine": "indian", + "ingredients": [ + "safflower oil", + "cayenne", + "garlic", + "cumin seed", + "clove", + "water", + "apple cider vinegar", + "salt", + "chopped cilantro", + "black pepper", + "bay leaves", + "purple onion", + "coconut milk", + "ground cinnamon", + "garam masala", + "ginger", + "firm tofu", + "mango" + ] + }, + { + "id": 20934, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dried basil", + "grated parmesan cheese", + "sliced mushrooms", + "frozen chopped spinach", + "minced garlic", + "lasagna noodles", + "nonfat cottage cheese", + "dried oregano", + "brown sugar", + "olive oil", + "salt", + "onions", + "tomato paste", + "crushed tomatoes", + "zucchini", + "shredded mozzarella cheese" + ] + }, + { + "id": 33043, + "cuisine": "indian", + "ingredients": [ + "sliced almonds", + "crushed red pepper flakes", + "yellow onion", + "ground cardamom", + "cauliflower", + "cinnamon", + "garlic", + "ground coriander", + "clarified butter", + "fresh cilantro", + "ginger", + "firm tofu", + "greek yogurt", + "tumeric", + "heavy cream", + "fine sea salt", + "waxy potatoes", + "ground cumin" + ] + }, + { + "id": 45572, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "ground black pepper", + "bay leaves", + "garlic", + "smoked paprika", + "onions", + "lump crab meat", + "cayenne", + "green onions", + "hot sauce", + "red bell pepper", + "green bell pepper", + "oysters", + "flour", + "sea salt", + "ham", + "medium shrimp", + "cooked rice", + "crawfish", + "file powder", + "vegetable oil", + "okra", + "celery" + ] + }, + { + "id": 46416, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "cayenne", + "yellow onion", + "kosher salt", + "buttermilk", + "cornmeal", + "sugar", + "baking powder", + "tartar sauce", + "baking soda", + "all-purpose flour", + "canola oil" + ] + }, + { + "id": 15250, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "salt", + "pure vanilla extract", + "kosher salt", + "all purpose unbleached flour", + "pecan halves", + "unsalted butter", + "light corn syrup", + "dark corn syrup", + "bourbon whiskey" + ] + }, + { + "id": 27862, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "basil leaves", + "rice vermicelli", + "cucumber", + "romaine lettuce", + "mint leaves", + "vegetable oil", + "nuoc cham", + "soy sauce", + "pork loin", + "salt", + "beansprouts", + "fish sauce", + "fresh cilantro", + "shallots", + "roasted peanuts" + ] + }, + { + "id": 29580, + "cuisine": "italian", + "ingredients": [ + "french baguette", + "butter", + "garlic cloves", + "grated parmesan cheese" + ] + }, + { + "id": 35386, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "parmigiano reggiano cheese", + "gruyere cheese", + "milk", + "butter", + "all-purpose flour", + "white pepper", + "basil leaves", + "salt", + "dijon mustard", + "garlic", + "gnocchi" + ] + }, + { + "id": 3170, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "corn", + "scallions", + "avocado", + "black beans", + "cilantro", + "romaine lettuce", + "grapeseed oil", + "red bell pepper", + "rub", + "lime juice", + "salt" + ] + }, + { + "id": 1396, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "olive oil", + "firm tofu", + "curry powder", + "salt", + "garlic cloves", + "water", + "fresh ginger", + "cumin seed", + "fresh cilantro", + "cayenne pepper", + "onions" + ] + }, + { + "id": 14194, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "red pepper flakes", + "pasta", + "eggplant", + "onions", + "cauliflower", + "olive oil", + "greek yogurt", + "mint", + "balsamic vinegar" + ] + }, + { + "id": 21444, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "Philadelphia Cream Cheese", + "Oscar Mayer Bacon", + "poblano chiles", + "Kraft Shredded Pepper Jack Cheese" + ] + }, + { + "id": 10960, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "shiitake", + "yellow onion", + "cremini mushrooms", + "butter", + "organic vegetable broth", + "parmigiano-reggiano cheese", + "ground black pepper", + "chopped fresh sage", + "dried porcini mushrooms", + "salt", + "hot water" + ] + }, + { + "id": 9241, + "cuisine": "chinese", + "ingredients": [ + "imitation crab meat", + "cream cheese, soften", + "oil", + "wonton wrappers", + "onions" + ] + }, + { + "id": 6813, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "leg of lamb", + "white wine", + "red pepper flakes", + "drippings", + "garlic cloves", + "green bell pepper", + "pimentos", + "onions" + ] + }, + { + "id": 25687, + "cuisine": "indian", + "ingredients": [ + "garbanzo beans", + "oil", + "white onion", + "peas", + "cumin", + "frozen chopped spinach", + "garam masala", + "broth", + "curry powder", + "garlic" + ] + }, + { + "id": 34418, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "honey", + "chili powder", + "chopped onion", + "water", + "hot pepper sauce", + "garlic", + "ketchup", + "salt and ground black pepper", + "worcestershire sauce", + "pork shoulder roast", + "barbecue sauce", + "chopped celery" + ] + }, + { + "id": 29389, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "jalapeno chilies", + "chopped cilantro fresh", + "sugar", + "olive oil", + "fresh basil leaves", + "minced garlic", + "toasted sesame oil", + "sliced green onions", + "jasmine rice", + "shrimp", + "asian fish sauce" + ] + }, + { + "id": 18884, + "cuisine": "brazilian", + "ingredients": [ + "sliced tomatoes", + "olive oil", + "coconut milk", + "lime juice", + "cilantro leaves", + "red snapper", + "garlic", + "onions", + "minced garlic", + "salt" + ] + }, + { + "id": 32519, + "cuisine": "greek", + "ingredients": [ + "frozen chopped spinach", + "milk", + "all-purpose flour", + "melted butter", + "large eggs", + "fresh lemon juice", + "chicken broth", + "unsalted butter", + "grated nutmeg", + "fresh dill", + "salt", + "onions" + ] + }, + { + "id": 26994, + "cuisine": "british", + "ingredients": [ + "all-purpose flour", + "eggs", + "low-fat milk", + "shortening" + ] + }, + { + "id": 36536, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "long-grain rice", + "eggs", + "salt", + "roast duck meat", + "green onions", + "soy sauce", + "barbecued pork" + ] + }, + { + "id": 33799, + "cuisine": "french", + "ingredients": [ + "black pepper", + "fresh parmesan cheese", + "flour tortillas", + "lettuce leaves", + "salt", + "lemon juice", + "eggplant", + "zucchini", + "basil leaves", + "extra-virgin olive oil", + "fresh parsley leaves", + "pinenuts", + "roasted red peppers", + "tahini", + "cannellini beans", + "provolone cheese", + "herbes de provence", + "yellow squash", + "fennel bulb", + "cooking spray", + "red wine vinegar", + "garlic cloves" + ] + }, + { + "id": 5580, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "ground black pepper", + "grated nutmeg", + "olive oil", + "garlic", + "grits", + "bread crumb fresh", + "sharp white cheddar cheese", + "all-purpose flour", + "orecchiette", + "milk", + "butter", + "okra" + ] + }, + { + "id": 34854, + "cuisine": "mexican", + "ingredients": [ + "chile pepper", + "pumpkin seeds", + "olive oil", + "garlic", + "cilantro", + "grated cotija", + "salt" + ] + }, + { + "id": 23132, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "shredded cabbage", + "ground ginger", + "egg roll wrappers", + "all-purpose flour", + "garlic powder", + "ground pork", + "water", + "shredded carrots", + "peanut oil" + ] + }, + { + "id": 40900, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "salt", + "ham", + "arborio rice", + "fresh parmesan cheese", + "chopped onion", + "red bell pepper", + "olive oil", + "frozen corn kernels", + "hot water", + "white wine", + "ground black pepper", + "provolone cheese", + "flat leaf parsley" + ] + }, + { + "id": 17929, + "cuisine": "mexican", + "ingredients": [ + "sweet pepper", + "shredded Monterey Jack cheese", + "flour tortillas", + "onions", + "tortilla chips", + "chile pepper", + "chorizo sausage" + ] + }, + { + "id": 11862, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "unsalted butter", + "kosher salt", + "ricotta", + "semolina flour", + "grated parmesan cheese", + "parmesan cheese" + ] + }, + { + "id": 22594, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "calvados", + "chicken livers", + "unflavored gelatin", + "ground black pepper", + "shallots", + "white sandwich bread", + "sugar", + "unsalted butter", + "thyme", + "milk", + "riesling", + "thyme sprigs" + ] + }, + { + "id": 39540, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "olive oil", + "shrimp", + "chicken broth", + "tomato sauce", + "garlic", + "long grain white rice", + "louisiana hot sauce", + "lemon", + "onions", + "green bell pepper", + "black pepper", + "creole seasoning", + "dried oregano" + ] + }, + { + "id": 4860, + "cuisine": "filipino", + "ingredients": [ + "green bell pepper", + "pepper", + "garlic", + "oil", + "cheddar cheese", + "potatoes", + "salt", + "red bell pepper", + "Spanish olives", + "water", + "beef stew meat", + "carrots", + "sweet gherkin", + "tomato sauce", + "thai chile", + "liver", + "onions" + ] + }, + { + "id": 30924, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "celery", + "cabbage", + "olive oil", + "grated parmesan cheese", + "garlic salt", + "water", + "beef bouillon", + "onions", + "italian seasoning", + "salt and ground black pepper", + "carrots", + "plum tomatoes" + ] + }, + { + "id": 8463, + "cuisine": "french", + "ingredients": [ + "sugar", + "whole milk", + "large egg yolks", + "vanilla extract", + "raspberries", + "whipping cream", + "semisweet chocolate", + "Frangelico" + ] + }, + { + "id": 35521, + "cuisine": "french", + "ingredients": [ + "shallots", + "duck", + "mustard", + "extra-virgin olive oil", + "red wine vinegar", + "greens", + "morel", + "salt" + ] + }, + { + "id": 21799, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "vegetable oil", + "cider vinegar", + "cornmeal", + "mayonaise", + "okra", + "honey", + "boiling potatoes" + ] + }, + { + "id": 45507, + "cuisine": "indian", + "ingredients": [ + "urad dal", + "oil", + "rice", + "salt", + "onions", + "ginger", + "green chilies" + ] + }, + { + "id": 8453, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "unsalted butter", + "shallots", + "water", + "low sodium chicken broth", + "wild mushrooms", + "chicken stock", + "parmigiano reggiano cheese", + "white truffle oil", + "olive oil", + "chopped fresh chives" + ] + }, + { + "id": 3074, + "cuisine": "greek", + "ingredients": [ + "rosemary sprigs", + "sea salt", + "lemon juice", + "garbanzo beans", + "extra-virgin olive oil", + "olive oil", + "crushed red pepper flakes", + "onions", + "fresh rosemary", + "ground red pepper", + "garlic cloves" + ] + }, + { + "id": 11755, + "cuisine": "french", + "ingredients": [ + "sugar", + "all-purpose flour", + "butter", + "whole milk", + "eggs", + "vanilla extract" + ] + }, + { + "id": 17510, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dried basil", + "garlic", + "romano cheese", + "lean ground beef", + "pasta sauce", + "lasagna noodles", + "sausages", + "mozzarella cheese", + "ricotta cheese" + ] + }, + { + "id": 43483, + "cuisine": "cajun_creole", + "ingredients": [ + "white bread", + "large egg whites", + "large eggs", + "low-fat mayonnaise", + "pickle relish", + "parsley sprigs", + "hot pepper sauce", + "vegetable oil", + "red bell pepper", + "creole mustard", + "lump crab meat", + "finely chopped onion", + "salt free cajun creole seasoning", + "fresh parsley", + "capers", + "ground black pepper", + "lemon wedge", + "fresh lemon juice" + ] + }, + { + "id": 12295, + "cuisine": "greek", + "ingredients": [ + "parsley sprigs", + "fennel", + "dried dill", + "phyllo dough", + "olive oil", + "mustard greens", + "oregano", + "black pepper", + "cooking spray", + "fresh parsley", + "fresh spinach", + "feta cheese", + "salt", + "sliced green onions" + ] + }, + { + "id": 13122, + "cuisine": "mexican", + "ingredients": [ + "water", + "mexican chocolate" + ] + }, + { + "id": 44070, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken breast", + "salt", + "pepper", + "butter", + "tortilla shells", + "avocado", + "green onions", + "mild cheddar cheese", + "lime", + "bacon" + ] + }, + { + "id": 44115, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame seeds", + "ground pork", + "eggs", + "fresh ginger", + "vegetable oil", + "chinese chives", + "dumpling wrappers", + "sesame oil", + "seasoned rice wine vinegar", + "water", + "chilegarlic sauce", + "garlic" + ] + }, + { + "id": 42375, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "chees fresh mozzarella", + "tomato sauce", + "whole milk ricotta cheese", + "flat leaf parsley", + "parmigiano reggiano cheese", + "freshly ground pepper", + "olive oil", + "sea salt" + ] + }, + { + "id": 28989, + "cuisine": "jamaican", + "ingredients": [ + "boneless chicken skinless thigh", + "ground black pepper", + "salt", + "garlic powder", + "ground red pepper", + "dried thyme", + "cooking spray", + "ground allspice", + "ground ginger", + "ground nutmeg", + "onion powder" + ] + }, + { + "id": 36117, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "egg yolks", + "garlic cloves", + "white pepper", + "rice wine", + "potato flour", + "soy sauce", + "basil leaves", + "chicken pieces", + "five spice", + "pepper", + "salt" + ] + }, + { + "id": 9021, + "cuisine": "french", + "ingredients": [ + "ground peppercorn", + "cognac", + "garlic oil", + "beef sirloin" + ] + }, + { + "id": 17906, + "cuisine": "french", + "ingredients": [ + "sugar", + "vanilla extract", + "confectioners sugar", + "large eggs", + "all-purpose flour", + "milk", + "salt", + "yolk", + "black cherries" + ] + }, + { + "id": 20261, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "vegetable oil", + "garlic powder", + "all-purpose flour", + "ground red pepper", + "yellow corn meal", + "salt" + ] + }, + { + "id": 11374, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "juice", + "olive oil", + "whipping cream", + "fettucine", + "diced tomatoes", + "flat leaf parsley", + "prosciutto", + "garlic cloves" + ] + }, + { + "id": 20687, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "egg substitute", + "lasagna noodles, cooked and drained", + "fresh oregano", + "tomato paste", + "pepper", + "part-skim mozzarella cheese", + "garlic", + "chopped onion", + "vegetable oil cooking spray", + "water", + "ricotta cheese", + "green pepper", + "tomatoes", + "minced garlic", + "grated parmesan cheese", + "salt", + "turkey breast" + ] + }, + { + "id": 31328, + "cuisine": "jamaican", + "ingredients": [ + "pickapeppa sauce", + "bay leaves", + "salt", + "scallions", + "chicken legs", + "hot pepper", + "berries", + "pork loin chops", + "ground cinnamon", + "chicken breast halves", + "grated nutmeg", + "garlic cloves", + "ground pepper", + "red wine vinegar", + "peanut oil" + ] + }, + { + "id": 3414, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "vegetarian oyster sauce", + "soybean sprouts", + "ginkgo nut", + "dried black mushrooms", + "sugar", + "fresh ginger", + "garlic cloves", + "bean threads", + "bean curd skins", + "cake", + "hot water", + "romaine lettuce", + "light soy sauce", + "peanut oil", + "bamboo shoots" + ] + }, + { + "id": 17802, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "chili powder", + "green chilies", + "ground cumin", + "flour tortillas", + "sweet corn", + "sour cream", + "ground black pepper", + "fine sea salt", + "enchilada sauce", + "cheddar cheese", + "spring onions", + "cream cheese", + "chicken" + ] + }, + { + "id": 7628, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "butter", + "corn starch", + "brown sugar", + "flour", + "Saigon cinnamon", + "nutmeg", + "peaches", + "salt", + "sugar", + "baking powder", + "lemon juice" + ] + }, + { + "id": 21820, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "garlic", + "ground cumin", + "fresh cilantro", + "diced tomatoes", + "dried oregano", + "boneless chicken breast halves", + "salt", + "boneless chicken thighs", + "chili powder", + "fresh lime juice" + ] + }, + { + "id": 31480, + "cuisine": "mexican", + "ingredients": [ + "lean ground beef", + "Bisquick Baking Mix", + "milk", + "salsa", + "monterey jack", + "eggs", + "Old El Paso™ chopped green chiles", + "onions", + "Old El Paso™ taco seasoning mix", + "sour cream" + ] + }, + { + "id": 30955, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "enchilada sauce", + "dried oregano", + "black beans", + "chopped onion", + "corn tortillas", + "cheddar cheese", + "salsa", + "soy crumbles", + "ground cumin", + "cooking spray", + "garlic cloves", + "fat free cream cheese" + ] + }, + { + "id": 20436, + "cuisine": "mexican", + "ingredients": [ + "fat free less sodium chicken broth", + "serrano peppers", + "garlic cloves", + "fresh tomatoes", + "shredded reduced fat cheddar cheese", + "green onions", + "chopped cilantro", + "white onion", + "vermicelli", + "pinto beans", + "ground chipotle chile pepper", + "olive oil", + "salt", + "ground cumin" + ] + }, + { + "id": 30850, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "grated parmesan cheese", + "oven-ready lasagna noodles", + "fresh leav spinach", + "shredded mozzarella cheese", + "marinara sauce", + "fresh basil leaves" + ] + }, + { + "id": 27774, + "cuisine": "southern_us", + "ingredients": [ + "cayenne", + "buttermilk", + "poultry seasoning", + "garlic powder", + "boneless skinless chicken breasts", + "all-purpose flour", + "kosher salt", + "cornflake crumbs", + "paprika", + "ground black pepper", + "onion powder", + "hot sauce" + ] + }, + { + "id": 6035, + "cuisine": "french", + "ingredients": [ + "egg whites", + "cake flour", + "vanilla extract", + "unsalted butter", + "confectioners sugar" + ] + }, + { + "id": 28856, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "heavy cream", + "kosher salt", + "shallots", + "scallions", + "Irish whiskey", + "paprika", + "pepper", + "lemon", + "lobster meat" + ] + }, + { + "id": 19250, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "sardines", + "bread crumbs", + "extra-virgin olive oil", + "potatoes", + "dried basil", + "garlic" + ] + }, + { + "id": 26978, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "green peas", + "cumin seed", + "asafoetida", + "chili powder", + "green chilies", + "ground turmeric", + "garlic paste", + "potatoes", + "cilantro leaves", + "onions", + "cauliflower", + "coriander powder", + "salt", + "oil" + ] + }, + { + "id": 4264, + "cuisine": "italian", + "ingredients": [ + "angel hair", + "prosciutto", + "sliced mushrooms", + "pepper", + "grated parmesan cheese", + "onions", + "chili flakes", + "asparagus", + "heavy whipping cream", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 19322, + "cuisine": "greek", + "ingredients": [ + "dried currants", + "olive oil", + "hot water", + "pinenuts", + "feta cheese", + "basmati rice", + "black pepper", + "sun-dried tomatoes", + "chopped fresh mint", + "water", + "salt" + ] + }, + { + "id": 48198, + "cuisine": "russian", + "ingredients": [ + "potatoes", + "sunflower oil", + "sour cream", + "peppercorns", + "sauerkraut", + "mushrooms", + "dill", + "onions", + "celery root", + "beef", + "heavy cream", + "carrots", + "marjoram", + "bay leaves", + "garlic", + "celery", + "dried mushrooms" + ] + }, + { + "id": 49348, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red bell pepper", + "dry pasta", + "plum tomatoes", + "garlic", + "fresh basil leaves", + "black pepper", + "salt" + ] + }, + { + "id": 15888, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "ginger root", + "vegetables", + "rice vinegar", + "mung bean sprouts", + "soy sauce", + "garlic", + "toasted sesame oil", + "hoisin sauce", + "scallions" + ] + }, + { + "id": 10374, + "cuisine": "indian", + "ingredients": [ + "mango chutney", + "garlic cloves", + "ground cumin", + "curry powder", + "crushed red pepper", + "onions", + "egg roll wrappers", + "salt", + "chopped cilantro fresh", + "dried lentils", + "vegetable oil", + "carrots" + ] + }, + { + "id": 11639, + "cuisine": "korean", + "ingredients": [ + "shredded mozzarella cheese", + "flat leaf parsley", + "kimchi", + "oil", + "butter", + "corn tortillas" + ] + }, + { + "id": 35875, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "shredded cheddar cheese", + "green onions", + "fresh tomatoes", + "taco seasoning mix", + "sour cream", + "green bell pepper", + "refried beans", + "shredded lettuce", + "mayonaise", + "sliced black olives" + ] + }, + { + "id": 16808, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "potatoes", + "green pepper", + "cold water", + "soy sauce", + "sweet potatoes", + "sugar", + "pumpkin", + "salad oil", + "stock", + "flour", + "shrimp" + ] + }, + { + "id": 35842, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil cooking spray", + "self-rising cornmeal", + "cream style corn", + "egg substitute", + "onions", + "nonfat buttermilk", + "vegetable oil" + ] + }, + { + "id": 43935, + "cuisine": "italian", + "ingredients": [ + "baking powder", + "salt", + "ricotta cheese", + "confectioners sugar", + "vegetable oil", + "all-purpose flour", + "eggs", + "vanilla extract", + "white sugar" + ] + }, + { + "id": 10904, + "cuisine": "korean", + "ingredients": [ + "sugar", + "beef rib short", + "fresh ginger", + "dry sherry", + "soy sauce" + ] + }, + { + "id": 37149, + "cuisine": "southern_us", + "ingredients": [ + "cajun seasoning", + "flavoring", + "garlic", + "butter", + "onions", + "water", + "pork roast" + ] + }, + { + "id": 40448, + "cuisine": "french", + "ingredients": [ + "cheese", + "extra sharp white cheddar cheese", + "beer", + "cauliflower", + "all-purpose flour", + "chopped fresh chives" + ] + }, + { + "id": 9307, + "cuisine": "japanese", + "ingredients": [ + "salt", + "cucumber", + "rice vinegar", + "fresh ginger root", + "white sugar" + ] + }, + { + "id": 39159, + "cuisine": "thai", + "ingredients": [ + "chili", + "salt", + "shallots", + "cooking oil", + "tamarind paste", + "sugar", + "garlic" + ] + }, + { + "id": 30671, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "green onions", + "red curry paste", + "beansprouts", + "fresh cilantro", + "sliced carrots", + "carrots", + "lime leaves", + "lemongrass", + "chicken breasts", + "juice", + "coconut milk", + "chicken broth", + "mushrooms", + "rice noodles", + "red bell pepper" + ] + }, + { + "id": 45491, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "button mushrooms", + "stuffing", + "fresh parsley", + "large eggs", + "provolone cheese", + "fresh basil", + "green onions" + ] + }, + { + "id": 12491, + "cuisine": "jamaican", + "ingredients": [ + "plums", + "ground nutmeg", + "sweetened condensed milk", + "orange", + "grapefruit", + "sherry", + "mango" + ] + }, + { + "id": 2948, + "cuisine": "mexican", + "ingredients": [ + "bay leaves", + "cayenne pepper", + "ground cloves", + "vegetable oil", + "cumin", + "chili powder", + "pork butt", + "garlic powder", + "salt" + ] + }, + { + "id": 15099, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "reduced sodium chicken broth", + "dry white wine", + "garlic", + "flat leaf parsley", + "clove", + "black pepper", + "bay leaves", + "extra-virgin olive oil", + "carrots", + "hard shelled clams", + "kosher salt", + "vegetable oil", + "spanish chorizo", + "onions", + "celery ribs", + "hot red pepper flakes", + "rib pork chops", + "diced tomatoes", + "juice" + ] + }, + { + "id": 18838, + "cuisine": "mexican", + "ingredients": [ + "American cheese", + "cheddar cheese", + "heavy cream", + "tomatoes", + "poblano peppers", + "jack cheese", + "salt" + ] + }, + { + "id": 31753, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "dried sage", + "onions", + "ground black pepper", + "calf liver", + "sage leaves", + "butter" + ] + }, + { + "id": 28805, + "cuisine": "russian", + "ingredients": [ + "water", + "flat leaf parsley", + "balsamic vinegar", + "cabbage", + "unsalted butter", + "onions", + "pierogi", + "bacon slices" + ] + }, + { + "id": 28427, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "whole milk", + "sharp cheddar cheese", + "unsalted butter", + "paprika", + "large eggs", + "salt", + "hot pepper sauce", + "quickcooking grits", + "garlic cloves" + ] + }, + { + "id": 40952, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "garlic", + "frozen corn kernels", + "fresh parsley", + "bacon drippings", + "butter", + "beef broth", + "diced celery", + "green bell pepper", + "bacon", + "creole seasoning", + "red bell pepper", + "fresh thyme", + "salt", + "chopped onion" + ] + }, + { + "id": 18834, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "whipped cream", + "chopped pecans", + "baking soda", + "ice water", + "salt", + "unsalted butter", + "all purpose unbleached flour", + "all-purpose flour", + "honey", + "bourbon whiskey", + "vanilla extract", + "medjool date" + ] + }, + { + "id": 20034, + "cuisine": "southern_us", + "ingredients": [ + "evaporated milk", + "eggs", + "flour", + "cream style corn", + "sugar", + "butter" + ] + }, + { + "id": 48484, + "cuisine": "mexican", + "ingredients": [ + "water", + "green bell pepper", + "celery", + "American cheese", + "onions", + "jalapeno chilies" + ] + }, + { + "id": 29058, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "cooking spray", + "salt", + "finely chopped onion", + "dry white wine", + "spaghetti", + "ground black pepper", + "center cut bacon", + "fresh parsley", + "large egg whites", + "large eggs", + "baby spinach" + ] + }, + { + "id": 18828, + "cuisine": "greek", + "ingredients": [ + "large eggs", + "extra light olive oil", + "almonds", + "sunflower oil", + "plain whole-milk yogurt", + "ouzo", + "all purpose unbleached flour", + "fine sea salt", + "sugar", + "baking powder", + "star anise" + ] + }, + { + "id": 23993, + "cuisine": "italian", + "ingredients": [ + "salt", + "medium shrimp", + "ground black pepper", + "garlic cloves", + "asparagus", + "flat leaf parsley", + "olive oil", + "grated lemon zest" + ] + }, + { + "id": 35856, + "cuisine": "french", + "ingredients": [ + "French mustard", + "gruyere cheese", + "bread" + ] + }, + { + "id": 36928, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "salt", + "Mexican beer", + "garlic cloves", + "flank steak", + "dark brown sugar", + "lime juice", + "purple onion", + "lemon juice" + ] + }, + { + "id": 6930, + "cuisine": "southern_us", + "ingredients": [ + "low sodium chicken broth", + "grits", + "kosher salt", + "freshly ground pepper", + "unsalted butter", + "garlic cloves", + "heavy cream", + "extra sharp cheddar cheese" + ] + }, + { + "id": 36164, + "cuisine": "indian", + "ingredients": [ + "pepper", + "chili powder", + "oil", + "ground cumin", + "tomatoes", + "potatoes", + "cilantro leaves", + "ground turmeric", + "curry leaves", + "fresh ginger", + "salt", + "onions", + "eggs", + "capsicum", + "cumin seed", + "masala" + ] + }, + { + "id": 2197, + "cuisine": "irish", + "ingredients": [ + "large eggs", + "fresh lemon juice", + "salt", + "butter", + "corn starch", + "sugar", + "grated lemon zest" + ] + }, + { + "id": 14550, + "cuisine": "italian", + "ingredients": [ + "yellow squash", + "potato gnocchi", + "fresh spinach", + "fat free milk", + "smoked gouda", + "olive oil", + "salt", + "minced garlic", + "ground black pepper" + ] + }, + { + "id": 15500, + "cuisine": "cajun_creole", + "ingredients": [ + "white pepper", + "flour", + "bacon fat", + "juice", + "dried oregano", + "chopped green bell pepper", + "chopped celery", + "chopped onion", + "bay leaf", + "cayenne", + "Tabasco Pepper Sauce", + "dri leav thyme", + "red bell pepper", + "large shrimp", + "curly parsley", + "bay scallops", + "salt", + "garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 30606, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "baking powder", + "white onion", + "red chili peppers", + "hot curry powder", + "plain flour", + "water" + ] + }, + { + "id": 43393, + "cuisine": "jamaican", + "ingredients": [ + "eggs", + "buttermilk", + "filet", + "jamaican jerk season", + "crushed red pepper flakes", + "lemon pepper", + "fresh dill", + "sea salt", + "dill pickles", + "seasoning", + "flour", + "garlic", + "sour cream" + ] + }, + { + "id": 31694, + "cuisine": "thai", + "ingredients": [ + "lite coconut milk", + "chili", + "hot pepper", + "salt", + "tumeric", + "pepper", + "leeks", + "Kim Crawford Sauvignon Blanc", + "fresh basil", + "sugar", + "lemon grass", + "butter", + "carrots", + "mint", + "jasmine rice", + "bay scallops", + "cilantro", + "corn starch" + ] + }, + { + "id": 5754, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "hot water", + "chili paste", + "fish sauce", + "garlic cloves", + "lime juice" + ] + }, + { + "id": 9826, + "cuisine": "french", + "ingredients": [ + "mussels", + "olive oil", + "paprika", + "celery", + "curry powder", + "russet potatoes", + "crème fraîche", + "pepper", + "dry white wine", + "salt", + "onions", + "dried thyme", + "diced tomatoes", + "carrots" + ] + }, + { + "id": 30288, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "black pepper", + "pan drippings", + "cayenne pepper", + "kosher salt", + "buttermilk", + "lard", + "top round steak", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 47839, + "cuisine": "southern_us", + "ingredients": [ + "fresh sage", + "milk", + "garlic", + "onions", + "chicken bouillon", + "fresh thyme", + "all-purpose flour", + "green bell pepper", + "unsalted butter", + "salt", + "pork sausages", + "pepper", + "crushed red pepper flakes", + "fresh parsley" + ] + }, + { + "id": 33329, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "brine", + "collard greens", + "water", + "cooked rice", + "jalapeno chilies", + "bouillon", + "pepper", + "smoked ham hocks" + ] + }, + { + "id": 5096, + "cuisine": "cajun_creole", + "ingredients": [ + "fettuccine pasta", + "green onions", + "yellow bell pepper", + "red bell pepper", + "andouille sausage", + "chopped green bell pepper", + "heavy cream", + "sliced mushrooms", + "tomatoes", + "salt and ground black pepper", + "butter", + "shrimp", + "minced garlic", + "dry white wine", + "lemon juice", + "fresh parsley" + ] + }, + { + "id": 2720, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "salt", + "flour", + "water", + "black pepper", + "polenta" + ] + }, + { + "id": 40820, + "cuisine": "chinese", + "ingredients": [ + "chili pepper", + "shallots", + "ginger root", + "white pepper", + "spring onions", + "carrots", + "soy sauce", + "cooking oil", + "salt", + "fish", + "water", + "sesame oil", + "coriander" + ] + }, + { + "id": 4127, + "cuisine": "vietnamese", + "ingredients": [ + "Vietnamese coriander", + "dried wood ear mushrooms", + "fish sauce", + "boneless skinless chicken breasts", + "glass noodles", + "chicken stock", + "yellow rock sugar", + "serrano chile", + "black pepper", + "salt" + ] + }, + { + "id": 1494, + "cuisine": "southern_us", + "ingredients": [ + "silver", + "baked ham", + "all-purpose flour", + "milk", + "grated horseradish", + "sugar", + "prepared mustard", + "lard", + "flour", + "salt" + ] + }, + { + "id": 24931, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "frozen mixed vegetables", + "condensed cream of mushroom soup", + "refrigerated biscuits", + "black pepper", + "chicken meat" + ] + }, + { + "id": 13941, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "chayotes", + "chopped fresh chives", + "heavy cream" + ] + }, + { + "id": 6256, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "balsamic vinegar", + "minced garlic", + "oil", + "soy sauce", + "red pepper flakes", + "boneless chicken breast" + ] + }, + { + "id": 17141, + "cuisine": "italian", + "ingredients": [ + "spaghetti", + "coarse salt", + "ground black pepper", + "pecorino romano cheese" + ] + }, + { + "id": 1471, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "thyme leaves", + "salt", + "chicken stock", + "freshly ground pepper", + "russet potatoes", + "onions" + ] + }, + { + "id": 506, + "cuisine": "irish", + "ingredients": [ + "heavy cream", + "eggs", + "white sugar", + "chocolate", + "irish cream liqueur" + ] + }, + { + "id": 40501, + "cuisine": "mexican", + "ingredients": [ + "canola", + "grapeseed oil", + "freshly ground pepper", + "chopped cilantro fresh", + "eggs", + "queso fresco", + "yellow onion", + "fresh lemon juice", + "canola oil", + "chicken broth", + "jalapeno chilies", + "salt", + "garlic cloves", + "monterey jack", + "black beans", + "tomatillos", + "fresh oregano", + "corn tortillas" + ] + }, + { + "id": 9636, + "cuisine": "mexican", + "ingredients": [ + "mexican chocolate", + "cookies", + "whole milk", + "heavy whipping cream", + "white rum", + "salt" + ] + }, + { + "id": 47333, + "cuisine": "thai", + "ingredients": [ + "curry powder", + "ground red pepper", + "fresh lime juice", + "sweet chili sauce", + "chunky peanut butter", + "purple onion", + "chicken breast tenders", + "cooking spray", + "peanut oil", + "lower sodium soy sauce", + "pineapple", + "chopped cilantro fresh" + ] + }, + { + "id": 31556, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "yukon gold potatoes", + "carrots", + "sake", + "beef", + "shirataki", + "onions", + "dashi", + "vegetable oil", + "green beans", + "sugar", + "fresh shiitake mushrooms", + "salt" + ] + }, + { + "id": 39924, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "flour tortillas", + "extra-virgin olive oil", + "chopped cilantro", + "Mexican cheese blend", + "boneless skinless chicken breasts", + "enchilada sauce", + "dried oregano", + "sweet onion", + "jalapeno chilies", + "salsa", + "chipotle chile powder", + "poblano peppers", + "vegetable oil", + "sour cream" + ] + }, + { + "id": 8377, + "cuisine": "italian", + "ingredients": [ + "water", + "mango chutney", + "garlic cloves", + "coars ground black pepper", + "green onions", + "salt", + "tomatoes", + "olive oil", + "white wine vinegar", + "Italian bread", + "corn kernels", + "yellow bell pepper", + "cucumber" + ] + }, + { + "id": 34217, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "paprika", + "garlic powder", + "cayenne pepper", + "dried thyme", + "salt", + "onion powder", + "dried oregano" + ] + }, + { + "id": 17087, + "cuisine": "chinese", + "ingredients": [ + "granulated sugar", + "soy sauce", + "garlic", + "sesame oil", + "steamer", + "oyster sauce" + ] + }, + { + "id": 37846, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "water", + "crushed red pepper flakes", + "boneless skinless chicken breast halves", + "soy sauce", + "bourbon liqueur", + "corn starch", + "ground ginger", + "olive oil", + "garlic", + "cherry juice", + "ketchup", + "apple cider vinegar", + "dried minced onion" + ] + }, + { + "id": 8707, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "rice vinegar", + "chicken", + "sugar", + "pepper", + "garlic salt", + "kosher salt", + "corn starch", + "soy sauce", + "large eggs", + "canola oil" + ] + }, + { + "id": 31505, + "cuisine": "indian", + "ingredients": [ + "beans", + "vegetable oil", + "butter oil", + "clove", + "water", + "garlic", + "ground cumin", + "jasmine rice", + "cilantro", + "ground coriander", + "tumeric", + "chopped tomatoes", + "salt" + ] + }, + { + "id": 26833, + "cuisine": "italian", + "ingredients": [ + "brussels sprouts", + "butter", + "olive oil", + "fresh lemon juice", + "pinenuts", + "garlic cloves", + "shallots" + ] + }, + { + "id": 18667, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "penne pasta", + "kosher salt", + "diced tomatoes", + "pancetta", + "grated parmesan cheese", + "chopped onion", + "minced garlic", + "crushed red pepper flakes" + ] + }, + { + "id": 44832, + "cuisine": "french", + "ingredients": [ + "chicken broth", + "large eggs", + "scallions", + "rib", + "stock", + "chives", + "fresh parsley leaves", + "onions", + "unsalted butter", + "all-purpose flour", + "shanks", + "large egg whites", + "salt", + "carrots", + "chicken" + ] + }, + { + "id": 14667, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "vegetable oil", + "bok choy", + "sugar", + "green onions", + "salt", + "sesame seeds", + "butter", + "sliced almonds", + "sesame oil", + "rice vinegar" + ] + }, + { + "id": 26655, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "ground red pepper", + "chopped cilantro fresh", + "fat free yogurt", + "ground coriander", + "salmon fillets", + "salt", + "ground cumin", + "ground ginger", + "cooking spray", + "fresh lime juice" + ] + }, + { + "id": 27303, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "cayenne pepper", + "green chile", + "paprika", + "whole milk", + "monterey jack", + "black pepper", + "salt" + ] + }, + { + "id": 34692, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "garlic", + "shredded cheese", + "tortillas", + "diced tomatoes", + "cayenne pepper", + "chili powder", + "salt", + "cumin", + "green onions", + "cilantro", + "cream cheese" + ] + }, + { + "id": 24752, + "cuisine": "italian", + "ingredients": [ + "pepper", + "tomato juice", + "chopped celery", + "ground cayenne pepper", + "chicken broth", + "prosciutto", + "garlic", + "carrots", + "white vinegar", + "olive oil", + "red beans", + "chopped onion", + "white sugar", + "dried basil", + "ditalini pasta", + "salt", + "dried parsley" + ] + }, + { + "id": 33843, + "cuisine": "korean", + "ingredients": [ + "apple cider vinegar", + "Gochujang base", + "red chili peppers", + "salt", + "minced garlic", + "rice vinegar", + "sugar", + "sesame oil", + "english cucumber" + ] + }, + { + "id": 44504, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "orzo pasta", + "pepper", + "salt", + "fresh basil", + "butter", + "grated parmesan cheese" + ] + }, + { + "id": 34135, + "cuisine": "moroccan", + "ingredients": [ + "dried lentils", + "fresh cilantro", + "vegetable stock", + "yellow onion", + "flat leaf parsley", + "fresh dill", + "kidney beans", + "garlic", + "chickpeas", + "plain yogurt", + "egg noodles", + "salt", + "fresh mint", + "fava beans", + "olive oil", + "dark leafy greens", + "lima beans", + "ground turmeric" + ] + }, + { + "id": 25523, + "cuisine": "italian", + "ingredients": [ + "corn oil", + "white sugar", + "extra-virgin olive oil", + "apple cider vinegar", + "dried oregano", + "ground black pepper", + "salt" + ] + }, + { + "id": 39902, + "cuisine": "mexican", + "ingredients": [ + "cooked ham", + "chipotle peppers", + "garlic", + "chorizo sausage", + "bacon", + "onions", + "bacon drippings", + "pinto beans" + ] + }, + { + "id": 1528, + "cuisine": "mexican", + "ingredients": [ + "frozen whole kernel corn", + "tomatoes", + "purple onion", + "loosely packed fresh basil leaves", + "lime juice", + "hellmann' or best food real mayonnais" + ] + }, + { + "id": 30739, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salsa", + "cooked chicken", + "chopped cilantro fresh", + "guacamole", + "sour cream", + "shredded sharp cheddar cheese", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 24161, + "cuisine": "thai", + "ingredients": [ + "sugar", + "chicken breasts", + "garlic", + "pepper", + "crushed red pepper flakes", + "peanut oil", + "soy sauce", + "shallots", + "salt", + "fish sauce", + "thai basil", + "white rice" + ] + }, + { + "id": 13626, + "cuisine": "french", + "ingredients": [ + "water", + "asparagus", + "white mushrooms", + "olive oil", + "gruyere cheese", + "onions", + "baguette", + "ground black pepper", + "long-grain rice", + "canned low sodium chicken broth", + "shiitake", + "salt" + ] + }, + { + "id": 17984, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "enchilada sauce", + "cooked chicken", + "shredded Monterey Jack cheese", + "green onions", + "sour cream", + "green chilies" + ] + }, + { + "id": 5102, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "sweet potatoes", + "purple onion", + "avocado", + "corn kernels", + "vegetable broth", + "cumin", + "black beans", + "jalapeno chilies", + "garlic", + "fresh cilantro", + "diced tomatoes", + "chipotle salsa" + ] + }, + { + "id": 33835, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "worcestershire sauce", + "carrots", + "tomatoes", + "fresh parmesan cheese", + "purple onion", + "dried oregano", + "tomato paste", + "olive oil", + "garlic", + "ground beef", + "milk", + "red wine", + "salt" + ] + }, + { + "id": 31741, + "cuisine": "indian", + "ingredients": [ + "unsweetened coconut milk", + "water", + "pandanus leaf", + "cumin seed", + "red bell pepper", + "tomatoes", + "fresh ginger", + "garlic", + "lentils", + "curry leaves", + "curry powder", + "crushed red pepper flakes", + "black mustard seeds", + "tumeric", + "eggplant", + "green chilies", + "cinnamon sticks" + ] + }, + { + "id": 28288, + "cuisine": "french", + "ingredients": [ + "sugar", + "dry yeast", + "milk", + "salt", + "warm water", + "large eggs", + "eggs", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 3060, + "cuisine": "brazilian", + "ingredients": [ + "coconut oil", + "quinoa", + "chile de arbol", + "red bell pepper", + "onions", + "fresh coriander", + "ginger", + "scallions", + "dried shrimp", + "steel-cut oats", + "sea salt", + "garlic", + "coconut milk", + "cashew nuts", + "tomatoes", + "peanuts", + "peas", + "shrimp", + "fresh parsley" + ] + }, + { + "id": 26554, + "cuisine": "spanish", + "ingredients": [ + "fresh rosemary", + "extra-virgin olive oil", + "fresh lemon juice", + "minced garlic", + "fresh oregano", + "capers", + "onion tops", + "fresh parsley", + "chopped fresh thyme", + "chopped fresh sage" + ] + }, + { + "id": 531, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "serrano chile", + "fresh lime juice", + "kosher salt", + "tomatoes", + "chopped cilantro fresh" + ] + }, + { + "id": 13474, + "cuisine": "vietnamese", + "ingredients": [ + "pork", + "salt", + "fish sauce", + "banana leaves" + ] + }, + { + "id": 36872, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "lasagna noodles", + "garlic", + "onions", + "water", + "egg whites", + "firm tofu", + "mozzarella cheese", + "grated parmesan cheese", + "part-skim ricotta cheese", + "fresh spinach", + "ground black pepper", + "vegetable oil", + "fresh parsley" + ] + }, + { + "id": 19422, + "cuisine": "greek", + "ingredients": [ + "angel hair", + "medium shrimp uncook", + "fresh parsley", + "olive oil", + "fresh lemon juice", + "minced garlic", + "fresh oregano", + "tomatoes", + "artichoke hearts", + "feta cheese crumbles" + ] + }, + { + "id": 10327, + "cuisine": "french", + "ingredients": [ + "grated orange peel", + "unsalted butter", + "fresh orange juice", + "water", + "sherry wine vinegar", + "sugar", + "shallots", + "low salt chicken broth", + "orange", + "duck breast halves" + ] + }, + { + "id": 8209, + "cuisine": "cajun_creole", + "ingredients": [ + "salt", + "pecans", + "Old Bay Blackened Seasoning", + "string beans", + "canola oil" + ] + }, + { + "id": 34247, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "garlic", + "cucumber", + "tomato paste", + "red wine vinegar", + "fresh herbs", + "onions", + "tomatoes", + "lemon", + "croutons", + "tomato juice", + "cayenne pepper", + "red bell pepper" + ] + }, + { + "id": 41789, + "cuisine": "korean", + "ingredients": [ + "chicken broth", + "fresh lemon juice", + "watercress leaves", + "eggs", + "toasted sesame seeds", + "salt" + ] + }, + { + "id": 9555, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "chopped cilantro fresh", + "sea salt", + "masa", + "radishes", + "pork lard", + "warm water", + "nopales" + ] + }, + { + "id": 30263, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "butter", + "orange juice", + "ground cinnamon", + "sweet potatoes", + "salt", + "chopped pecans", + "granny smith apples", + "refrigerated piecrusts", + "all-purpose flour", + "granulated sugar", + "whipped cream", + "dark brown sugar" + ] + }, + { + "id": 44432, + "cuisine": "irish", + "ingredients": [ + "onions", + "potatoes", + "bacon", + "pork sausages" + ] + }, + { + "id": 864, + "cuisine": "filipino", + "ingredients": [ + "fresh ginger", + "water", + "oyster sauce", + "clams", + "garlic", + "olive oil", + "onions" + ] + }, + { + "id": 28094, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "potatoes", + "cumin", + "citrus juice", + "ground pepper", + "salt", + "whole wheat flour", + "sea salt", + "water", + "cayenne", + "all-purpose flour" + ] + }, + { + "id": 42936, + "cuisine": "chinese", + "ingredients": [ + "peeled fresh ginger", + "garlic cloves", + "lower sodium soy sauce", + "crushed red pepper", + "medium shrimp", + "honey", + "green onions", + "corn starch", + "broccoli florets", + "rice vinegar", + "canola oil" + ] + }, + { + "id": 20928, + "cuisine": "mexican", + "ingredients": [ + "zucchini", + "chili powder", + "salt", + "masa", + "lime", + "green onions", + "cilantro", + "broth", + "corn husks", + "baking powder", + "garlic", + "cumin", + "shredded cheddar cheese", + "roma tomatoes", + "butter", + "oil" + ] + }, + { + "id": 10689, + "cuisine": "korean", + "ingredients": [ + "jalapeno chilies", + "scallions", + "kosher salt", + "shredded sharp cheddar cheese", + "kimchi", + "skim milk", + "basil", + "gluten-free penne", + "unsalted butter", + "cilantro leaves", + "sweet rice flour" + ] + }, + { + "id": 3332, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "salt", + "pinenuts", + "artichok heart marin", + "italian seasoning", + "fresh basil", + "grated parmesan cheese", + "pepperoncini", + "pepper", + "part-skim ricotta cheese" + ] + }, + { + "id": 34181, + "cuisine": "french", + "ingredients": [ + "oloroso sherry", + "cream", + "grated lemon zest", + "eggs", + "flour", + "cognac", + "sugar", + "salt", + "melted butter", + "milk", + "strawberries" + ] + }, + { + "id": 48488, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "garlic", + "red bell pepper", + "cooking spray", + "less sodium beef broth", + "bok choy", + "low sodium soy sauce", + "flank steak", + "corn starch", + "onions", + "shiitake", + "crushed red pepper", + "toasted sesame oil" + ] + }, + { + "id": 13067, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "vegetable oil", + "taco seasoning mix", + "sour cream", + "taco shells", + "purple onion", + "ahi tuna steaks", + "chopped cilantro" + ] + }, + { + "id": 6207, + "cuisine": "russian", + "ingredients": [ + "sugar", + "butter", + "potatoes", + "salt", + "cottage cheese", + "raisins", + "eggs", + "flour", + "sour cream" + ] + }, + { + "id": 16411, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "dry white wine", + "saffron", + "olive oil", + "garlic cloves", + "dried thyme", + "chopped onion", + "fennel", + "fat skimmed chicken broth" + ] + }, + { + "id": 47226, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "fresh shiitake mushrooms", + "salt", + "carrots", + "noodles", + "water", + "ginger", + "scallions", + "cucumber", + "white pepper", + "ground pork", + "fresh pork fat", + "corn starch", + "bean paste", + "garlic", + "oil", + "sweet bean sauce" + ] + }, + { + "id": 33738, + "cuisine": "indian", + "ingredients": [ + "peeled fresh ginger", + "butter", + "garlic cloves", + "serrano chile", + "kosher salt", + "vegetable oil", + "salt", + "greek yogurt", + "ground cumin", + "sesame seeds", + "russet potatoes", + "ground coriander", + "chopped cilantro fresh", + "green onions", + "paprika", + "fresh lemon juice", + "monterey jack" + ] + }, + { + "id": 23004, + "cuisine": "french", + "ingredients": [ + "mustard", + "butter", + "grape juice", + "black pepper", + "salt", + "crème de cassis", + "purple onion", + "water", + "carrots" + ] + }, + { + "id": 45328, + "cuisine": "italian", + "ingredients": [ + "broccoli florets", + "penne pasta", + "basil pesto sauce", + "cream cheese spread", + "olive oil", + "diced tomatoes", + "tomato sauce", + "boneless skinless chicken breasts" + ] + }, + { + "id": 19922, + "cuisine": "mexican", + "ingredients": [ + "grated orange peel", + "unsweetened chocolate", + "nonfat frozen yogurt", + "ground cinnamon", + "nonfat milk", + "honey" + ] + }, + { + "id": 20832, + "cuisine": "brazilian", + "ingredients": [ + "diced onions", + "jalapeno chilies", + "diced tomatoes", + "orange zest", + "minced garlic", + "vegetable oil", + "kielbasa", + "orange slices", + "red wine vinegar", + "orange juice", + "black beans", + "chili powder", + "beef stew meat" + ] + }, + { + "id": 33704, + "cuisine": "southern_us", + "ingredients": [ + "tomato purée", + "corn", + "mutton", + "cabbage", + "white vinegar", + "water", + "worcestershire sauce", + "onions", + "ketchup", + "ground red pepper", + "salt", + "chicken", + "black pepper", + "yukon gold potatoes", + "lemon juice" + ] + }, + { + "id": 13651, + "cuisine": "chinese", + "ingredients": [ + "steamed rice", + "vegetable oil", + "free range egg", + "spring onions", + "malt vinegar", + "pork fillet", + "hoisin sauce", + "ginger", + "white sugar", + "light soy sauce", + "sesame oil", + "purple onion" + ] + }, + { + "id": 9041, + "cuisine": "italian", + "ingredients": [ + "canned beef broth", + "veal shanks", + "dry white wine", + "garlic cloves", + "olive oil", + "chopped fresh sage", + "onions", + "sage leaves", + "all-purpose flour", + "rubbed sage" + ] + }, + { + "id": 6999, + "cuisine": "korean", + "ingredients": [ + "black bean sauce", + "tatsoi", + "scallions", + "rice cakes", + "garlic", + "sweet soy sauce", + "ginger", + "white sesame seeds", + "shiitake", + "napa cabbage", + "Gochujang base" + ] + }, + { + "id": 23566, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lemon juice", + "capers", + "balsamic vinegar", + "pitted kalamata olives", + "garlic cloves", + "tomatoes", + "cooking spray" + ] + }, + { + "id": 30147, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "white onion", + "thyme sprigs", + "Chianti", + "fine sea salt", + "water" + ] + }, + { + "id": 27788, + "cuisine": "southern_us", + "ingredients": [ + "sweet potatoes", + "plain whole-milk yogurt", + "baking powder", + "honey", + "butter", + "whole wheat flour", + "salt" + ] + }, + { + "id": 19809, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "garlic cloves", + "fresh lime juice", + "salt", + "poblano chiles", + "radishes", + "queso anejo", + "plum tomatoes", + "baked tortilla chips", + "flat leaf parsley" + ] + }, + { + "id": 9913, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "sugar", + "lemon juice", + "all-purpose flour", + "pastry", + "blackberries" + ] + }, + { + "id": 7413, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "ground black pepper", + "chili powder", + "salsa", + "fresh lime juice", + "olive oil", + "boneless skinless chicken breasts", + "cilantro", + "red bell pepper", + "minced garlic", + "green onions", + "mexican style 4 cheese blend", + "cayenne pepper", + "black beans", + "garlic powder", + "prepared pizza crust", + "purple onion", + "sour cream" + ] + }, + { + "id": 32797, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "butter", + "garlic cloves", + "kosher salt", + "boneless skinless chicken breasts", + "white beans", + "fresh rosemary", + "unsalted butter", + "orzo", + "low salt chicken broth", + "marsala wine", + "porcini powder", + "extra-virgin olive oil", + "sliced mushrooms" + ] + }, + { + "id": 27723, + "cuisine": "mexican", + "ingredients": [ + "ground round", + "shredded cheddar cheese", + "chunky", + "light sour cream", + "black beans", + "green onions", + "chopped cilantro fresh", + "avocado", + "romaine lettuce", + "lime juice", + "corn tortillas", + "grape tomatoes", + "kosher salt", + "chili powder", + "canola oil" + ] + }, + { + "id": 39603, + "cuisine": "southern_us", + "ingredients": [ + "vidalia onion", + "cajun seasoning", + "dried thyme", + "bone-in pork chops", + "kosher salt", + "cracked black pepper", + "beef stock", + "canola oil" + ] + }, + { + "id": 16026, + "cuisine": "southern_us", + "ingredients": [ + "cheese", + "jalapeno chilies", + "corn grits", + "mascarpone", + "salt", + "butter" + ] + }, + { + "id": 15246, + "cuisine": "french", + "ingredients": [ + "white wine", + "salt", + "dried parsley", + "ground black pepper", + "ham", + "garlic powder", + "herb seasoning", + "boneless skinless chicken breast halves", + "condensed cream of chicken soup", + "swiss cheese", + "sour cream" + ] + }, + { + "id": 41304, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "salsa", + "chopped onion", + "corn tortillas", + "lettuce", + "chopped tomatoes", + "black olives", + "yellow onion", + "garlic cloves", + "shredded cheddar cheese", + "cilantro", + "hot sauce", + "taco seasoning", + "ground beef", + "tomato sauce", + "garlic powder", + "salt", + "green pepper", + "sour cream" + ] + }, + { + "id": 3199, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dried basil", + "butter", + "green pepper", + "sausage links", + "sliced black olives", + "chopped celery", + "onions", + "chicken broth", + "pepper", + "stuffing", + "salt", + "fresh basil", + "parmesan cheese", + "garlic", + "rubbed sage" + ] + }, + { + "id": 42439, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "lime", + "potatoes", + "salt", + "frozen peas", + "water", + "salted butter", + "garlic", + "chopped cilantro", + "masala", + "crushed tomatoes", + "unsalted butter", + "purple onion", + "onions", + "ginger paste", + "green bell pepper", + "olive oil", + "sourdough rolls", + "carrots", + "ground turmeric" + ] + }, + { + "id": 34545, + "cuisine": "french", + "ingredients": [ + "bread ciabatta", + "honeydew melon", + "serrano ham", + "tomatoes", + "sherry vinegar", + "fresh oregano", + "Boston lettuce", + "shallots", + "garlic cloves", + "manchego cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 24960, + "cuisine": "southern_us", + "ingredients": [ + "water", + "dill", + "boneless skinless chicken breast halves", + "large eggs", + "fresh mushrooms", + "unsalted butter", + "dill tips", + "reduced sodium chicken broth", + "all-purpose flour", + "garlic cloves" + ] + }, + { + "id": 9974, + "cuisine": "thai", + "ingredients": [ + "tomatoes", + "garlic", + "onions", + "jalapeno chilies", + "coconut milk", + "ground turmeric", + "fresh ginger root", + "salt", + "fresh basil leaves", + "vegetable oil", + "medium shrimp" + ] + }, + { + "id": 9766, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "whole milk", + "all-purpose flour", + "sugar", + "large eggs", + "jam", + "unsalted butter", + "vanilla extract", + "grated lemon peel", + "powdered sugar", + "lemon peel", + "salt" + ] + }, + { + "id": 27164, + "cuisine": "french", + "ingredients": [ + "canned low sodium chicken broth", + "olive oil", + "fresh green bean", + "roast red peppers, drain", + "capers", + "dried thyme", + "dry white wine", + "chunk light tuna in water", + "sugar", + "dijon mustard", + "white wine vinegar", + "red potato", + "salad greens", + "egg whites", + "oliv pit ripe" + ] + }, + { + "id": 46422, + "cuisine": "french", + "ingredients": [ + "minced onion", + "cayenne pepper", + "ground black pepper", + "whipping cream", + "chicken livers", + "port wine", + "butter", + "fresh lemon juice", + "unsalted butter", + "salt", + "green apples" + ] + }, + { + "id": 42517, + "cuisine": "southern_us", + "ingredients": [ + "water", + "bacon slices", + "garlic cloves", + "vidalia onion", + "ground black pepper", + "hot sauce", + "tomatoes", + "dried thyme", + "salt", + "cider vinegar", + "chopped green bell pepper", + "okra" + ] + }, + { + "id": 1719, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "orange bitters", + "Angostura bitters", + "fresh orange", + "ice cubes", + "bourbon whiskey" + ] + }, + { + "id": 46232, + "cuisine": "japanese", + "ingredients": [ + "miso paste", + "ponzu", + "ginger paste", + "wasabi paste", + "extra firm tofu", + "rice vinegar", + "mirin", + "garlic", + "honey", + "vegetable oil", + "dark brown sugar" + ] + }, + { + "id": 16809, + "cuisine": "mexican", + "ingredients": [ + "roma tomatoes", + "salt", + "corn", + "extra-virgin olive oil", + "black beans", + "jalapeno chilies", + "garlic cloves", + "lime", + "purple onion" + ] + }, + { + "id": 24414, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "paprika", + "salt", + "flat leaf parsley", + "black pepper", + "diced tomatoes", + "vegetable broth", + "carrots", + "tumeric", + "yukon gold potatoes", + "cilantro sprigs", + "fresh lemon juice", + "ground cumin", + "turnips", + "fennel bulb", + "peas", + "garlic cloves", + "chopped cilantro" + ] + }, + { + "id": 2113, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "salt", + "long grain white rice", + "chinese rice wine", + "green onions", + "fat skimmed reduced sodium chicken broth", + "minced garlic", + "shallots", + "chopped cilantro fresh", + "chili flakes", + "cake", + "wild rice" + ] + }, + { + "id": 37214, + "cuisine": "italian", + "ingredients": [ + "pita bread rounds", + "shredded mozzarella cheese", + "marinara sauce", + "grated parmesan cheese", + "fresh basil leaves", + "sliced black olives", + "garlic" + ] + }, + { + "id": 42289, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "cilantro", + "coconut milk", + "peanuts", + "sauce", + "lime", + "red curry paste", + "apple cider vinegar", + "creamy peanut butter" + ] + }, + { + "id": 6247, + "cuisine": "french", + "ingredients": [ + "lemon extract", + "sugar", + "salt", + "cream of tartar", + "color food green", + "large egg whites", + "strawberries" + ] + }, + { + "id": 40519, + "cuisine": "mexican", + "ingredients": [ + "french fried onions", + "ground beef", + "corn mix muffin", + "whole kernel corn, drain", + "rotelle", + "shredded cheddar cheese", + "taco seasoning" + ] + }, + { + "id": 34500, + "cuisine": "indian", + "ingredients": [ + "salt", + "chaat masala", + "potatoes", + "rice flour", + "oil", + "butter", + "gram flour" + ] + }, + { + "id": 2783, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger", + "lettuce leaves", + "daikon", + "vietnamese fish sauce", + "kosher salt", + "ground black pepper", + "vegetable oil", + "ground pork", + "chili sauce", + "large egg whites", + "shredded carrots", + "napa cabbage", + "deveined shrimp", + "fresh lime juice", + "sugar", + "panko", + "green onions", + "cilantro", + "rice vinegar" + ] + }, + { + "id": 37184, + "cuisine": "greek", + "ingredients": [ + "potatoes", + "minced garlic", + "olive oil", + "white vinegar", + "salt" + ] + }, + { + "id": 22589, + "cuisine": "italian", + "ingredients": [ + "ladyfingers", + "coffee liqueur", + "semisweet chocolate", + "white sugar", + "mascarpone", + "heavy whipping cream", + "egg yolks", + "unsweetened cocoa powder" + ] + }, + { + "id": 10951, + "cuisine": "cajun_creole", + "ingredients": [ + "low-fat plain yogurt", + "dried thyme", + "anchovy paste", + "lemon juice", + "black pepper", + "green onions", + "hot sauce", + "lump crab meat", + "worcestershire sauce", + "cream cheese", + "green bell pepper", + "dijon mustard", + "salt", + "red bell pepper" + ] + }, + { + "id": 9950, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "rolls", + "parmigiano reggiano cheese", + "olive oil" + ] + }, + { + "id": 27038, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "green onions", + "cayenne pepper", + "lettuce", + "pepper", + "boneless chicken breast", + "garlic", + "sour cream", + "cheddar cheese", + "ground black pepper", + "sesame oil", + "beer", + "avocado", + "lime", + "flour tortillas", + "salt", + "dried oregano" + ] + }, + { + "id": 7884, + "cuisine": "filipino", + "ingredients": [ + "whole milk", + "melted butter", + "all-purpose flour", + "sugar", + "cashew nuts", + "salt" + ] + }, + { + "id": 47759, + "cuisine": "italian", + "ingredients": [ + "capers", + "olive oil", + "garlic cloves", + "onions", + "fresh basil", + "anchovies", + "fresh oregano", + "bay leaf", + "tomatoes", + "fillet red snapper", + "lemon", + "flat leaf parsley", + "parsley sprigs", + "ground black pepper", + "lemon juice", + "olives" + ] + }, + { + "id": 49283, + "cuisine": "italian", + "ingredients": [ + "stock", + "chopped tomatoes", + "salt", + "onions", + "dried pasta", + "chicken breasts", + "Lea & Perrins Worcestershire Sauce", + "dried oregano", + "sugar pea", + "chives", + "oil", + "mature cheddar", + "tomato purée", + "milk", + "garlic", + "red bell pepper" + ] + }, + { + "id": 30125, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "large shrimp", + "lime juice", + "tequila", + "ground black pepper", + "ground cumin", + "lime", + "garlic salt" + ] + }, + { + "id": 7671, + "cuisine": "mexican", + "ingredients": [ + "cream cheese", + "cumin", + "tortillas", + "red bell pepper", + "corn", + "chicken fingers", + "chili powder", + "onions" + ] + }, + { + "id": 3373, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "salt", + "eggs", + "onion powder", + "chicken", + "ground black pepper", + "all-purpose flour", + "evaporated milk", + "vegetable oil" + ] + }, + { + "id": 5140, + "cuisine": "greek", + "ingredients": [ + "bread", + "boneless skinless chicken breasts", + "garlic", + "dried oregano", + "plain yogurt", + "lemon", + "salt", + "fresh tomatoes", + "red wine vinegar", + "purple onion", + "hothouse cucumber", + "pepper", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 48692, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "boneless skinless chicken breasts", + "salt", + "onions", + "ground black pepper", + "vegetable oil", + "red bell pepper", + "green onions", + "garlic", + "flat leaf parsley", + "homemade chicken stock", + "ground red pepper", + "long-grain rice" + ] + }, + { + "id": 17603, + "cuisine": "filipino", + "ingredients": [ + "water", + "milkfish", + "soy sauce", + "lemon", + "yellow onion", + "cooking oil", + "salt", + "pepper", + "garlic", + "flat leaf parsley" + ] + }, + { + "id": 33862, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "mirin", + "salt", + "honey", + "sesame oil", + "iceberg lettuce", + "boneless chicken skinless thigh", + "green onions", + "garlic cloves", + "sake", + "fresh ginger", + "vegetable oil" + ] + }, + { + "id": 40204, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "peeled fresh ginger", + "black mustard seeds", + "fresh lime juice", + "curry leaves", + "pearl onions", + "cayenne pepper", + "carrots", + "basmati rice", + "tomatoes", + "eggplant", + "fenugreek seeds", + "coarse kosher salt", + "unsweetened coconut milk", + "white onion", + "large garlic cloves", + "okra pods", + "clarified butter" + ] + }, + { + "id": 17077, + "cuisine": "brazilian", + "ingredients": [ + "water", + "sweet potatoes", + "sea salt", + "coconut milk", + "tomatoes", + "olive oil", + "chile pepper", + "green pepper", + "lime juice", + "green onions", + "cilantro", + "onions", + "salmon fillets", + "zucchini", + "red pepper", + "garlic cloves" + ] + }, + { + "id": 17769, + "cuisine": "thai", + "ingredients": [ + "hot red pepper flakes", + "large eggs", + "firm tofu", + "corn starch", + "tofu", + "tamarind", + "rice noodles", + "garlic cloves", + "asian fish sauce", + "lime", + "chopped fresh chives", + "roasted peanuts", + "beansprouts", + "firmly packed brown sugar", + "radishes", + "vegetable oil", + "shrimp" + ] + }, + { + "id": 9263, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "white miso", + "sea bass fillets", + "sugar", + "olive oil", + "green onions", + "toasted sesame seeds", + "clove", + "water", + "mirin", + "rice vinegar", + "black pepper", + "dijon mustard", + "salt" + ] + }, + { + "id": 13893, + "cuisine": "irish", + "ingredients": [ + "tomato purée", + "olive oil", + "spring onions", + "sea salt", + "cheddar cheese", + "potatoes", + "red wine", + "onions", + "rosemary sprigs", + "ground black pepper", + "butter", + "garlic cloves", + "chicken stock", + "milk", + "leeks", + "worcestershire sauce", + "ground lamb" + ] + }, + { + "id": 26472, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "cream", + "worcestershire sauce", + "onions", + "ketchup", + "beef stock", + "lima beans", + "pork", + "beef", + "diced tomatoes", + "chicken", + "red potato", + "montreal steak seasoning", + "apple cider vinegar", + "cayenne pepper" + ] + }, + { + "id": 16104, + "cuisine": "irish", + "ingredients": [ + "mashed potatoes", + "potatoes", + "all-purpose flour", + "cheddar cheese", + "butter", + "milk", + "salt", + "eggs", + "baking powder", + "scallions" + ] + }, + { + "id": 23155, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "cilantro leaves", + "vegetable oil", + "toasted peanuts", + "garlic chili sauce", + "light brown sugar", + "large garlic cloves" + ] + }, + { + "id": 12172, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "garlic cloves", + "salt", + "chopped cilantro fresh", + "honey", + "cumin seed", + "ground cumin", + "ground black pepper", + "carrots" + ] + }, + { + "id": 22937, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "butter", + "salt", + "medium shrimp", + "parmesan cheese", + "1% low-fat milk", + "garlic cloves", + "water", + "extra-virgin olive oil", + "cayenne pepper", + "fresh chives", + "quickcooking grits", + "cooking wine", + "fresh lemon juice" + ] + }, + { + "id": 10831, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "jalapeno chilies", + "dried dillweed", + "fresh cilantro", + "salt", + "fresh parsley", + "lime juice", + "garlic", + "cucumber", + "chopped green bell pepper", + "tortilla chips", + "onions" + ] + }, + { + "id": 29859, + "cuisine": "cajun_creole", + "ingredients": [ + "diced onions", + "andouille sausage", + "bay leaves", + "all-purpose flour", + "fresh parsley leaves", + "cooked rice", + "file powder", + "garlic", + "creole seasoning", + "shrimp", + "tomatoes", + "ground black pepper", + "green onions", + "cayenne pepper", + "diced celery", + "shrimp stock", + "green bell pepper", + "large eggs", + "salt", + "okra", + "clarified butter" + ] + }, + { + "id": 40428, + "cuisine": "cajun_creole", + "ingredients": [ + "sausage casings", + "hot pepper sauce", + "extra-virgin olive oil", + "chicken fingers", + "onions", + "pepper", + "fresh thyme leaves", + "salt", + "celery", + "green bell pepper", + "flour", + "garlic", + "herbes de provence", + "chicken broth", + "baguette", + "butter", + "scallions", + "medium shrimp" + ] + }, + { + "id": 27313, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "low sodium chicken broth", + "pancetta", + "ground black pepper", + "purple onion", + "olive oil", + "pappardelle", + "Chianti", + "grated parmesan cheese" + ] + }, + { + "id": 4443, + "cuisine": "italian", + "ingredients": [ + "gelato", + "rolls", + "bittersweet chocolate" + ] + }, + { + "id": 28472, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "salt", + "pepper", + "oil", + "water", + "sugar", + "fatback" + ] + }, + { + "id": 17550, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "szechwan peppercorns", + "potatoes", + "garlic cloves", + "cooking oil", + "salt", + "chili pepper", + "spring onions", + "black vinegar" + ] + }, + { + "id": 10228, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "harissa", + "vegetable broth", + "chickpeas", + "olives", + "ground cinnamon", + "quinoa", + "cilantro", + "salt", + "oil", + "ground cumin", + "honey", + "raisins", + "garlic", + "ground coriander", + "ground turmeric", + "preserved lemon", + "butternut squash", + "ginger", + "cayenne pepper", + "onions" + ] + }, + { + "id": 48509, + "cuisine": "indian", + "ingredients": [ + "dry yeast", + "all-purpose flour", + "sugar", + "seeds", + "yoghurt", + "ghee", + "warm water", + "salt" + ] + }, + { + "id": 29355, + "cuisine": "moroccan", + "ingredients": [ + "water", + "green tea leaves", + "tangerine", + "fresh mint", + "sugar", + "orange flower water", + "arak" + ] + }, + { + "id": 24215, + "cuisine": "british", + "ingredients": [ + "eggs", + "salt", + "flour", + "butter", + "milk" + ] + }, + { + "id": 18082, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "vanilla extract", + "baking powder", + "all-purpose flour", + "unsalted butter", + "salt", + "powdered sugar", + "raw sugar", + "toasted walnuts" + ] + }, + { + "id": 41108, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "boneless sirloin steak", + "I Can't Believe It's Not Butter!® Spread", + "Knorr® Fiesta Sides™ - Mexican Rice", + "tomatoes", + "purple onion" + ] + }, + { + "id": 45481, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "green beans", + "water", + "red wine vinegar", + "plum tomatoes", + "shallots", + "ripe olives", + "olive oil", + "salt" + ] + }, + { + "id": 44326, + "cuisine": "thai", + "ingredients": [ + "lime", + "light coconut milk", + "brown basmati rice", + "fish sauce", + "sesame oil", + "scallions", + "honey", + "garlic", + "fresh cilantro", + "Thai red curry paste", + "shrimp" + ] + }, + { + "id": 31206, + "cuisine": "thai", + "ingredients": [ + "tumeric", + "cayenne", + "chinese five-spice powder", + "plum tomatoes", + "canned low sodium chicken broth", + "peanuts", + "salt", + "boiling potatoes", + "boneless, skinless chicken breast", + "cooking oil", + "chopped cilantro", + "ground cumin", + "unsweetened coconut milk", + "fresh ginger", + "garlic", + "onions" + ] + }, + { + "id": 12805, + "cuisine": "japanese", + "ingredients": [ + "water" + ] + }, + { + "id": 19000, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "garlic", + "lemon juice", + "hot pepper", + "salt", + "onions", + "garam masala", + "paneer", + "greek yogurt", + "fresh spinach", + "heavy cream", + "cumin seed", + "canola oil" + ] + }, + { + "id": 37822, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "olive oil", + "salt", + "dried currants", + "curry powder", + "diced tomatoes", + "green bell pepper", + "fat free less sodium chicken broth", + "chopped fresh thyme", + "onions", + "sliced almonds", + "boneless skinless chicken breasts", + "garlic cloves" + ] + }, + { + "id": 32434, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "salt", + "shrimp", + "green onions", + "seaweed", + "short-grain rice", + "dried shiitake mushrooms", + "water", + "sesame oil", + "carrots" + ] + }, + { + "id": 5061, + "cuisine": "thai", + "ingredients": [ + "hot pepper sauce", + "unsalted dry roast peanuts", + "chopped cilantro fresh", + "fish sauce", + "cooking spray", + "garlic cloves", + "brown sugar", + "ground pork", + "fresh lime juice", + "ground turkey breast", + "salt", + "ground cumin" + ] + }, + { + "id": 43345, + "cuisine": "greek", + "ingredients": [ + "pepper", + "lemon", + "onions", + "vine leaves", + "dill", + "olive oil", + "salt", + "warm water", + "parsley", + "rice" + ] + }, + { + "id": 11221, + "cuisine": "mexican", + "ingredients": [ + "crushed tomatoes", + "lime wedges", + "carrots", + "dried oregano", + "hominy", + "garlic cloves", + "corn tortillas", + "olive oil", + "chopped celery", + "low salt chicken broth", + "chipotle chile", + "finely chopped onion", + "shrimp small uncook", + "chopped cilantro fresh" + ] + }, + { + "id": 38690, + "cuisine": "italian", + "ingredients": [ + "cream cheese lowfat", + "dark rum", + "greek yogurt", + "white cake mix", + "coffee", + "vanilla extract", + "eggs", + "mascarpone", + "buttermilk", + "canola oil", + "powdered sugar", + "egg whites", + "heavy cream" + ] + }, + { + "id": 46487, + "cuisine": "russian", + "ingredients": [ + "sugar", + "lemon juice", + "gelatin", + "water", + "food colouring", + "egg whites" + ] + }, + { + "id": 33019, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "butter", + "lime", + "Thai red curry paste", + "kosher salt", + "crushed red pepper flakes", + "thai basil", + "shrimp" + ] + }, + { + "id": 35925, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "fenugreek seeds", + "coriander", + "ginger", + "oil", + "chicken", + "garlic", + "ghee", + "fenugreek leaves", + "green chilies", + "ground turmeric" + ] + }, + { + "id": 20641, + "cuisine": "moroccan", + "ingredients": [ + "pita bread", + "olive oil", + "pumpkin", + "cinnamon sticks", + "lamb shanks", + "ground black pepper", + "salt", + "saffron", + "sugar", + "lavash", + "ras el hanout", + "onions", + "prunes", + "crushed tomatoes", + "unsalted butter", + "chickpeas" + ] + }, + { + "id": 36684, + "cuisine": "cajun_creole", + "ingredients": [ + "onion powder", + "crushed red pepper flakes", + "dried oregano", + "olive oil", + "cajun seasoning", + "hot sauce", + "dried thyme", + "chicken cutlets", + "cracked black pepper", + "garlic powder", + "paprika", + "panko breadcrumbs" + ] + }, + { + "id": 8937, + "cuisine": "mexican", + "ingredients": [ + "mexican chocolate", + "large eggs", + "half & half", + "vanilla beans", + "salt" + ] + }, + { + "id": 47276, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "yellow onion", + "fish sauce", + "chrysanthemum leaves", + "meat", + "canola oil", + "black pepper", + "salt" + ] + }, + { + "id": 9442, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "frozen pastry puff sheets", + "anchovies", + "pitted kalamata olives", + "fresh rosemary", + "grated parmesan cheese" + ] + }, + { + "id": 15358, + "cuisine": "indian", + "ingredients": [ + "water", + "curry", + "basmati rice", + "florets", + "firm tofu", + "cauliflower", + "diced tomatoes", + "juice", + "olive oil", + "yellow onion" + ] + }, + { + "id": 15887, + "cuisine": "jamaican", + "ingredients": [ + "ground black pepper", + "salt", + "onions", + "ground cinnamon", + "skinless chicken pieces", + "garlic cloves", + "vinegar", + "ground allspice", + "dried oregano", + "brown sugar", + "hot pepper", + "thyme" + ] + }, + { + "id": 33355, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "cachaca", + "lime" + ] + }, + { + "id": 37625, + "cuisine": "mexican", + "ingredients": [ + "dried thyme", + "lemon juice", + "vegetable oil", + "dried rosemary", + "green onions", + "dried oregano", + "garlic" + ] + }, + { + "id": 28200, + "cuisine": "russian", + "ingredients": [ + "whole milk", + "salt", + "granulated sugar", + "vegetable oil", + "baking soda", + "baking powder", + "all-purpose flour", + "large eggs", + "butter" + ] + }, + { + "id": 39950, + "cuisine": "chinese", + "ingredients": [ + "medium eggs", + "light soy sauce", + "ground pork", + "peanut oil", + "white pepper", + "rice wine", + "salt", + "corn starch", + "sugar", + "baking soda", + "ginger", + "scallions", + "water", + "sesame oil", + "all-purpose flour", + "bok choy" + ] + }, + { + "id": 34687, + "cuisine": "filipino", + "ingredients": [ + "cooking oil", + "lean ground beef", + "celery", + "shredded carrots", + "garlic cloves", + "potatoes", + "lumpia skins", + "egg whites", + "salt" + ] + }, + { + "id": 24923, + "cuisine": "brazilian", + "ingredients": [ + "shredded coconut", + "hemp seeds", + "frozen peaches", + "chopped pecans", + "açai", + "almond milk", + "fresh blueberries", + "frozen blueberries" + ] + }, + { + "id": 48929, + "cuisine": "mexican", + "ingredients": [ + "pickled jalapenos", + "flour tortillas", + "scallions", + "lime", + "black olives", + "sour cream", + "fresh cilantro", + "poblano chilies", + "shredded cheese", + "refried beans", + "salsa" + ] + }, + { + "id": 9832, + "cuisine": "indian", + "ingredients": [ + "green bell pepper", + "garam masala", + "red bell pepper", + "ground cumin", + "boneless chicken thighs", + "vegetable oil", + "chopped cilantro", + "fresh ginger", + "garlic cloves", + "onions", + "green chile", + "canned chopped tomatoes", + "mustard seeds", + "ground turmeric" + ] + }, + { + "id": 6455, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "butter", + "chopped fresh sage", + "chicken stock", + "ground black pepper", + "white truffle oil", + "grated nutmeg", + "shiitake", + "shallots", + "salt", + "arugula", + "large egg yolks", + "russet potatoes", + "all-purpose flour" + ] + }, + { + "id": 4749, + "cuisine": "french", + "ingredients": [ + "sugar", + "dry red wine", + "garlic cloves", + "boneless skinless chicken breast halves", + "green bell pepper", + "stewed tomatoes", + "long-grain rice", + "onions", + "cooking spray", + "fresh mushrooms", + "fresh parsley", + "dried basil", + "salt", + "smoked turkey sausage", + "dried oregano" + ] + }, + { + "id": 43272, + "cuisine": "spanish", + "ingredients": [ + "dried thyme", + "salt", + "plum tomatoes", + "ground cinnamon", + "sherry vinegar", + "chopped onion", + "ground cumin", + "olive oil", + "bow-tie pasta", + "large shrimp", + "black pepper", + "fresh orange juice", + "pimento stuffed olives" + ] + }, + { + "id": 24773, + "cuisine": "italian", + "ingredients": [ + "shredded mozzarella cheese", + "pizza sauce", + "grated parmesan cheese", + "Old El Paso Flour Tortillas", + "pepperoni" + ] + }, + { + "id": 19656, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "sun-dried tomatoes in oil", + "crushed garlic", + "white sugar", + "olive oil", + "garlic salt", + "tomato paste", + "salt" + ] + }, + { + "id": 6158, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "paprika", + "dried oregano", + "dried basil", + "ground black pepper", + "cayenne pepper", + "garlic powder", + "salt", + "dried thyme", + "onion powder", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 13754, + "cuisine": "mexican", + "ingredients": [ + "frozen orange juice concentrate", + "olive oil", + "rice vinegar", + "chopped cilantro fresh", + "sage leaves", + "water", + "crushed garlic", + "chili sauce", + "cumin", + "pepper", + "bay leaves", + "yellow onion", + "oregano", + "dried black beans", + "lime", + "salt", + "chipotles in adobo" + ] + }, + { + "id": 17035, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "olive oil", + "chopped parsley", + "cumin", + "pepper", + "crushed garlic", + "onions", + "tomatoes", + "cannellini beans", + "chopped cilantro", + "water", + "salt", + "ground turmeric" + ] + }, + { + "id": 19424, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "black bean sauce", + "grapeseed oil", + "shrimp", + "low sodium soy sauce", + "water", + "sesame oil", + "garlic", + "kosher salt", + "green onions", + "ginger", + "corn starch", + "sugar", + "eggplant", + "chili oil", + "rice vinegar" + ] + }, + { + "id": 43680, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "yoghurt", + "ground cumin", + "sugar", + "vegetable oil", + "ground fennel", + "amchur", + "asafoetida powder", + "black lentil", + "pepper", + "salt" + ] + }, + { + "id": 36915, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "dry mustard", + "frozen broccoli", + "butter", + "all-purpose flour", + "milk", + "shredded sharp cheddar cheese", + "elbow macaroni" + ] + }, + { + "id": 38583, + "cuisine": "french", + "ingredients": [ + "mayonaise", + "fresh parsley", + "prepared horseradish", + "minced garlic", + "creole mustard", + "green onions" + ] + }, + { + "id": 34483, + "cuisine": "italian", + "ingredients": [ + "feta cheese", + "purple onion", + "roma tomatoes", + "balsamic vinaigrette", + "capers", + "basil leaves", + "calamata olives", + "bow-tie pasta" + ] + }, + { + "id": 4575, + "cuisine": "chinese", + "ingredients": [ + "candied pineapple", + "raisins", + "nuts", + "sugar", + "baking powder", + "dried dates", + "chopped nuts", + "water", + "extra-virgin olive oil", + "eggs", + "dried cherry", + "glutinous rice flour" + ] + }, + { + "id": 46659, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "kosher salt", + "olive oil", + "red pepper", + "garlic", + "cornmeal", + "cumin", + "nutmeg", + "beans", + "milk", + "cinnamon", + "diced tomatoes", + "yellow onion", + "oregano", + "chile powder", + "table salt", + "water", + "baking powder", + "worcestershire sauce", + "all-purpose flour", + "ground beef", + "eggs", + "black pepper", + "corn", + "butter", + "paprika", + "sour cream", + "extra sharp cheddar cheese" + ] + }, + { + "id": 25768, + "cuisine": "mexican", + "ingredients": [ + "potatoes", + "chorizo", + "corn tortillas", + "pepper", + "salt", + "garlic powder", + "onions" + ] + }, + { + "id": 31196, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "yoghurt", + "light coconut milk", + "ground coriander", + "bread flour", + "plain flour", + "fresh coriander", + "boneless skinless chicken breasts", + "garlic", + "smoked paprika", + "plum tomatoes", + "tumeric", + "olive oil", + "lemon", + "chicken stock cubes", + "chillies", + "low-fat milk", + "red chili peppers", + "garam masala", + "ginger", + "ground almonds", + "onions", + "ground cumin" + ] + }, + { + "id": 32041, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "fresh lemon juice", + "prosciutto", + "extra-virgin olive oil", + "pepper", + "arugula" + ] + }, + { + "id": 24590, + "cuisine": "mexican", + "ingredients": [ + "orange bell pepper", + "worcestershire sauce", + "croutons", + "fresh parsley", + "mayonaise", + "grated parmesan cheese", + "shredded parmesan cheese", + "sour cream", + "fajita seasoning mix", + "romaine lettuce", + "dijon mustard", + "yellow bell pepper", + "red bell pepper", + "boneless skinless chicken breast halves", + "minced garlic", + "green onions", + "anchovy fillets", + "chipotle peppers" + ] + }, + { + "id": 42096, + "cuisine": "indian", + "ingredients": [ + "almonds", + "oil", + "sugar", + "salt", + "ghee", + "mashed banana", + "ground cardamom", + "whole wheat flour", + "all-purpose flour" + ] + }, + { + "id": 34057, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "pineapple", + "boneless skinless chicken breast halves", + "honey", + "garlic cloves", + "dried thyme", + "salt", + "canola oil", + "cooked rice", + "dijon mustard", + "corn starch" + ] + }, + { + "id": 44818, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "garlic cloves", + "zucchini", + "basil leaves", + "olive oil" + ] + }, + { + "id": 15316, + "cuisine": "thai", + "ingredients": [ + "fresh ginger", + "lemon juice", + "pepper", + "sesame oil", + "chopped cilantro fresh", + "shallots", + "shrimp", + "minced garlic", + "salt", + "broth" + ] + }, + { + "id": 32488, + "cuisine": "southern_us", + "ingredients": [ + "black peppercorns", + "fresh thyme leaves", + "hog casings", + "hot red pepper flakes", + "rubbed sage", + "fresh rosemary", + "pork", + "herbes de provence", + "quatre épices", + "salt" + ] + }, + { + "id": 43917, + "cuisine": "irish", + "ingredients": [ + "pepper", + "salt", + "irish bacon", + "ground nutmeg", + "water", + "cabbage", + "melted butter", + "red wine vinegar" + ] + }, + { + "id": 41873, + "cuisine": "moroccan", + "ingredients": [ + "bread crumbs", + "lemon", + "garlic cloves", + "eggs", + "harissa", + "natural yogurt", + "ground lamb", + "coriander seeds", + "sunflower oil", + "couscous", + "mint", + "butter", + "cumin seed" + ] + }, + { + "id": 33896, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "scallions", + "vietnamese fish sauce", + "chopped fresh mint", + "thai chile", + "fresh lime juice", + "sugar", + "cilantro leaves" + ] + }, + { + "id": 34586, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "salt", + "unsalted butter", + "vanilla extract", + "dark brown sugar", + "sugar", + "golden delicious apples", + "all-purpose flour", + "large eggs", + "butterscotch chips", + "sour cream" + ] + }, + { + "id": 33349, + "cuisine": "italian", + "ingredients": [ + "refrigerated fettuccine", + "chopped garlic", + "boneless skinless chicken breast halves", + "extra-virgin olive oil", + "italian seasoning" + ] + }, + { + "id": 9155, + "cuisine": "british", + "ingredients": [ + "milk", + "cider", + "pork sausages", + "fresh sage", + "ground black pepper", + "cooking apples", + "plain flour", + "olive oil", + "salt", + "eggs", + "dried sage", + "onions" + ] + }, + { + "id": 30093, + "cuisine": "indian", + "ingredients": [ + "warm water", + "olive oil", + "flour", + "purple onion", + "greek yogurt", + "tomato purée", + "fresh coriander", + "coriander powder", + "chicken drumsticks", + "mustard powder", + "cummin", + "red chili peppers", + "water", + "dry yeast", + "garlic", + "oil", + "ground turmeric", + "soy sauce", + "garam masala", + "lemon", + "salt", + "ginger root" + ] + }, + { + "id": 23682, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "corn starch", + "peaches", + "salt", + "unsalted butter", + "all-purpose flour", + "sugar", + "baking powder", + "blackberries" + ] + }, + { + "id": 36604, + "cuisine": "italian", + "ingredients": [ + "hazelnuts", + "ground nutmeg", + "all-purpose flour", + "sugar", + "water", + "cooking spray", + "warm water", + "large egg whites", + "golden raisins", + "kosher salt", + "dry yeast", + "hazelnut oil" + ] + }, + { + "id": 48413, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "rice wine", + "onions", + "ground ginger", + "hoisin sauce", + "napa cabbage", + "sliced green onions", + "honey", + "sesame oil", + "chicken thighs", + "soy sauce", + "flour tortillas", + "salt" + ] + }, + { + "id": 17854, + "cuisine": "italian", + "ingredients": [ + "cream cheese", + "half & half", + "garlic salt", + "fettuccine pasta", + "lemon pepper", + "butter" + ] + }, + { + "id": 20105, + "cuisine": "italian", + "ingredients": [ + "grated orange peel", + "dry white wine", + "water", + "peach slices", + "sugar", + "apricot halves", + "sweet cherries", + "bing cherries" + ] + }, + { + "id": 7567, + "cuisine": "southern_us", + "ingredients": [ + "white chocolate", + "unsalted butter", + "salt", + "coconut extract", + "vanilla beans", + "dark rum", + "heavy whipping cream", + "sugar", + "large egg yolks", + "refrigerated piecrusts", + "coconut milk", + "sweetener", + "whole milk", + "corn starch" + ] + }, + { + "id": 22794, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "boneless skinless chicken breasts", + "galangal", + "chicken stock", + "lemongrass", + "juice", + "kaffir lime leaves", + "mushrooms", + "coconut milk", + "red chili peppers", + "cilantro leaves" + ] + }, + { + "id": 5836, + "cuisine": "french", + "ingredients": [ + "dried basil", + "fresh parmesan cheese", + "dried oregano", + "sugar", + "olive oil", + "salt", + "dried thyme", + "dry yeast", + "dried rosemary", + "water", + "garlic powder", + "bread flour" + ] + }, + { + "id": 31440, + "cuisine": "mexican", + "ingredients": [ + "fat-free shredded cheddar cheese", + "ground beef", + "bean dip", + "leaf lettuce", + "flour tortillas", + "non-fat sour cream", + "plum tomatoes", + "green onions", + "chipotle salsa" + ] + }, + { + "id": 35609, + "cuisine": "korean", + "ingredients": [ + "shiitake", + "vegetable oil", + "onions", + "sugar", + "green onions", + "garlic cloves", + "noodles", + "soy sauce", + "sesame oil", + "carrots", + "spinach", + "beef", + "salt", + "toasted sesame seeds" + ] + }, + { + "id": 16501, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "heavy cream", + "russet potatoes", + "parmigiano reggiano cheese", + "salt", + "butter" + ] + }, + { + "id": 652, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "pepper", + "white sugar", + "green beans", + "bacon" + ] + }, + { + "id": 44507, + "cuisine": "moroccan", + "ingredients": [ + "kosher salt", + "beets", + "olive oil" + ] + }, + { + "id": 897, + "cuisine": "italian", + "ingredients": [ + "water", + "yellow corn meal", + "salt" + ] + }, + { + "id": 26697, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "sour cream", + "pasta sauce", + "provolone cheese", + "grated parmesan cheese", + "onions", + "pasta", + "lean ground beef" + ] + }, + { + "id": 2486, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "soy sauce", + "flour", + "napa cabbage", + "garlic cloves", + "bamboo shoots", + "sugar", + "kosher salt", + "green onions", + "ginger", + "corn starch", + "eggs", + "white pepper", + "lily buds", + "dry sherry", + "carrots", + "boiling water", + "dried black mushrooms", + "pork", + "hoisin sauce", + "sesame oil", + "oil", + "beansprouts" + ] + }, + { + "id": 23911, + "cuisine": "mexican", + "ingredients": [ + "sesame seeds", + "frozen banana leaf", + "vegetable shortening", + "masa harina", + "coarse salt", + "hot water", + "black peppercorns", + "garlic", + "chicken" + ] + }, + { + "id": 8477, + "cuisine": "southern_us", + "ingredients": [ + "shredded cheddar cheese", + "sea salt", + "smoked paprika", + "pimentos", + "hot sauce", + "mayonaise", + "worcestershire sauce", + "garlic cloves", + "large eggs", + "cracked black pepper", + "brine" + ] + }, + { + "id": 44336, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "oats", + "peach slices", + "cinnamon", + "brown sugar", + "margarine" + ] + }, + { + "id": 3720, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "chopped fresh thyme", + "shrimp", + "tomato paste", + "bay leaves", + "cayenne pepper", + "shrimp stock", + "unsalted butter", + "salt", + "steamed rice", + "green onions", + "garlic cloves" + ] + }, + { + "id": 25063, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "chopped onion", + "red bell pepper", + "boneless chicken skinless thigh", + "unsalted dry roast peanuts", + "garlic cloves", + "brown sugar", + "lower sodium soy sauce", + "dark sesame oil", + "snow peas", + "water", + "crushed red pepper", + "corn starch" + ] + }, + { + "id": 39982, + "cuisine": "italian", + "ingredients": [ + "sugar", + "ground black pepper", + "purple onion", + "fresh basil", + "kosher salt", + "flank steak", + "garlic cloves", + "tomatoes", + "bread ciabatta", + "roasted red peppers", + "english cucumber", + "capers", + "sherry vinegar", + "extra-virgin olive oil", + "arugula" + ] + }, + { + "id": 3099, + "cuisine": "filipino", + "ingredients": [ + "pork belly", + "thai chile", + "oil", + "shrimp paste", + "salt", + "onions", + "leaves", + "garlic", + "coconut milk", + "ginger", + "coconut cream" + ] + }, + { + "id": 9981, + "cuisine": "filipino", + "ingredients": [ + "green cabbage", + "green onions", + "salt", + "beansprouts", + "garlic powder", + "ground pork", + "eggroll wrappers", + "soy sauce", + "vegetable oil", + "chopped onion", + "celery", + "ground black pepper", + "garlic", + "carrots" + ] + }, + { + "id": 37017, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "jasmine rice", + "sea salt", + "cayenne pepper", + "ground cumin", + "tomato paste", + "andouille sausage", + "ground pepper", + "purple onion", + "white mushrooms", + "celery ribs", + "green bell pepper", + "olive oil", + "garlic", + "thyme", + "chicken broth", + "Louisiana Hot Sauce", + "boneless skinless chicken breasts", + "cilantro leaves", + "large shrimp" + ] + }, + { + "id": 49320, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "green peas", + "dark sesame oil", + "cooking spray", + "salt", + "medium shrimp", + "large eggs", + "crushed red pepper", + "long-grain rice", + "low sodium soy sauce", + "green onions", + "rice vinegar", + "canola oil" + ] + }, + { + "id": 5756, + "cuisine": "chinese", + "ingredients": [ + "self raising flour", + "water", + "cornflour", + "garlic salt", + "black pepper", + "vegetable oil", + "rice vinegar", + "bicarbonate of soda", + "spring onions", + "salt", + "caster sugar", + "chicken tenderloin", + "tomato ketchup" + ] + }, + { + "id": 30612, + "cuisine": "italian", + "ingredients": [ + "water", + "cooking spray", + "shredded sharp cheddar cheese", + "nonfat evaporated milk", + "sugar", + "olive oil", + "ground red pepper", + "red bell pepper", + "ground cumin", + "pepper", + "zucchini", + "worcestershire sauce", + "onions", + "yellow squash", + "yoghurt", + "salt", + "grits" + ] + }, + { + "id": 46174, + "cuisine": "spanish", + "ingredients": [ + "baguette", + "extra-virgin olive oil", + "smoked paprika", + "tomatoes", + "tomato juice", + "purple onion", + "sherry vinegar", + "garlic", + "red bell pepper", + "kosher salt", + "ground black pepper", + "english cucumber" + ] + }, + { + "id": 993, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "hot pepper", + "corn starch", + "soy sauce", + "green onions", + "red wine vinegar", + "onions", + "fructose", + "chicken breast halves", + "salt", + "chicken broth", + "sherry", + "vegetable oil", + "salted cashews" + ] + }, + { + "id": 15318, + "cuisine": "italian", + "ingredients": [ + "eggs", + "olive oil", + "all-purpose flour", + "fresh leav spinach", + "mushrooms", + "boneless skinless chicken breast halves", + "hazelnuts", + "prosciutto", + "heavy whipping cream", + "milk", + "dry white wine" + ] + }, + { + "id": 3078, + "cuisine": "brazilian", + "ingredients": [ + "raspberries", + "superfine sugar", + "lime", + "cachaca" + ] + }, + { + "id": 19484, + "cuisine": "mexican", + "ingredients": [ + "turbinado", + "kosher salt", + "cod fillets", + "slaw mix", + "sour cream", + "sugar", + "water", + "green onions", + "oil", + "fresh lime juice", + "canned black beans", + "baking soda", + "chili powder", + "tequila", + "mayonaise", + "cider vinegar", + "jalapeno chilies", + "all-purpose flour", + "corn tortillas" + ] + }, + { + "id": 33754, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "mushrooms", + "kasuri methi", + "curds", + "lemon juice", + "cashew nuts", + "low fat cream", + "coriander powder", + "ginger", + "green chilies", + "black salt", + "onions", + "ground cumin", + "tomatoes", + "garam masala", + "capsicum", + "grated nutmeg", + "garlic cloves", + "gram flour", + "ground turmeric", + "garlic paste", + "seeds", + "cilantro leaves", + "oil", + "hot water", + "chaat masala" + ] + }, + { + "id": 26585, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "minced ginger", + "red pepper flakes", + "rice vinegar", + "red bell pepper", + "tomato paste", + "ketchup", + "granulated sugar", + "salt", + "chinese five-spice powder", + "cold water", + "soy sauce", + "honey", + "garlic", + "pineapple juice", + "onions", + "pineapple chunks", + "black pepper", + "jasmine", + "boneless skinless chicken", + "corn starch" + ] + }, + { + "id": 3120, + "cuisine": "thai", + "ingredients": [ + "cilantro", + "red bell pepper", + "lettuce leaves", + "carrots", + "chili sauce", + "fresh mint", + "scallions" + ] + }, + { + "id": 39334, + "cuisine": "italian", + "ingredients": [ + "goat cheese", + "sourdough bread", + "fresh lemon juice", + "chopped fresh thyme", + "garlic cloves" + ] + }, + { + "id": 36668, + "cuisine": "italian", + "ingredients": [ + "water", + "butternut squash", + "garlic cloves", + "white wine", + "ground black pepper", + "gruyere cheese", + "kosher salt", + "leeks", + "chopped fresh sage", + "hazelnuts", + "olive oil", + "farro" + ] + }, + { + "id": 45595, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "salad oil", + "distilled vinegar", + "carrots", + "dried oregano", + "salt", + "bay leaf", + "pepper", + "garlic cloves", + "onions" + ] + }, + { + "id": 10250, + "cuisine": "jamaican", + "ingredients": [ + "pigeon peas", + "garlic cloves", + "allspice", + "black pepper", + "salt", + "coconut milk", + "brown rice", + "thyme", + "pepper", + "margarine", + "onions" + ] + }, + { + "id": 36342, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken breast halves", + "enchilada sauce", + "condensed cream of chicken soup", + "yellow bell pepper", + "red bell pepper", + "tomatoes", + "condensed cream of mushroom soup", + "Mexican cheese", + "water", + "tortilla chips", + "onions" + ] + }, + { + "id": 19008, + "cuisine": "thai", + "ingredients": [ + "straw mushrooms", + "crimini mushrooms", + "liquid", + "thai green curry paste", + "unsweetened coconut milk", + "honey", + "lime wedges", + "Thai fish sauce", + "onions", + "chicken broth", + "bell pepper", + "rice", + "toasted sesame oil", + "fresh cilantro", + "brown rice", + "peanut oil", + "medium shrimp" + ] + }, + { + "id": 5235, + "cuisine": "mexican", + "ingredients": [ + "corn", + "lean ground beef", + "taco seasoning", + "sliced black olives", + "garlic", + "onions", + "refried beans", + "diced tomatoes", + "enchilada sauce", + "shredded cheddar cheese", + "tortillas", + "green chilies" + ] + }, + { + "id": 15796, + "cuisine": "indian", + "ingredients": [ + "clove", + "garam masala", + "green peas", + "cardamom pods", + "onions", + "fresh coriander", + "bay leaves", + "minced beef", + "cinnamon sticks", + "ground turmeric", + "tomatoes", + "cooking oil", + "salt", + "garlic puree", + "basmati rice", + "water", + "ginger", + "green chilies", + "ghee", + "ground cumin" + ] + }, + { + "id": 20588, + "cuisine": "italian", + "ingredients": [ + "guanciale", + "salt", + "sauce tomato", + "dried chile", + "pasta", + "grated pecorino", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 36479, + "cuisine": "italian", + "ingredients": [ + "minced onion", + "garlic", + "olive oil", + "grating cheese", + "chopped parsley", + "butter", + "italian loaf", + "dijon mustard", + "poppy seeds" + ] + }, + { + "id": 28416, + "cuisine": "cajun_creole", + "ingredients": [ + "catfish fillets", + "paprika", + "ground black pepper", + "dried oregano", + "olive oil", + "salt", + "ground red pepper" + ] + }, + { + "id": 38211, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "scallions", + "fresh ginger", + "chicken", + "water", + "long-grain rice", + "salt" + ] + }, + { + "id": 46967, + "cuisine": "mexican", + "ingredients": [ + "red chili peppers", + "flour tortillas", + "salt", + "fresh coriander", + "extra-virgin olive oil", + "black pepper", + "halloumi cheese", + "mango", + "lettuce", + "cherry tomatoes", + "purple onion" + ] + }, + { + "id": 22519, + "cuisine": "italian", + "ingredients": [ + "melted butter", + "sweet cherries", + "almond extract", + "grated orange", + "sugar", + "cooking spray", + "salt", + "whole wheat pastry flour", + "baking powder", + "all-purpose flour", + "slivered almonds", + "large eggs", + "fresh orange juice" + ] + }, + { + "id": 48462, + "cuisine": "italian", + "ingredients": [ + "sugar", + "italian salad dressing mix", + "water", + "cider vinegar", + "garlic cloves", + "vegetable oil" + ] + }, + { + "id": 20918, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "vegetable oil", + "onions", + "fresh ginger root", + "firm tofu", + "fresh tomatoes", + "jalapeno chilies", + "cumin seed", + "curry powder", + "salt", + "frozen peas" + ] + }, + { + "id": 333, + "cuisine": "chinese", + "ingredients": [ + "white vinegar", + "chile paste", + "sesame oil", + "soy sauce", + "water chestnuts", + "boneless skinless chicken breast halves", + "brown sugar", + "peanuts", + "corn starch", + "white wine", + "green onions", + "chopped garlic" + ] + }, + { + "id": 31189, + "cuisine": "mexican", + "ingredients": [ + "fresh corn", + "honey", + "jalapeno chilies", + "garlic", + "black beans", + "zucchini", + "sea salt", + "chopped cilantro", + "yellow summer squash", + "ground black pepper", + "chili powder", + "fresh lime juice", + "cherry tomatoes", + "bell pepper", + "extra-virgin olive oil", + "cumin" + ] + }, + { + "id": 21561, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "vinaigrette", + "sweet onion" + ] + }, + { + "id": 31942, + "cuisine": "italian", + "ingredients": [ + "spinach", + "olive oil", + "salt", + "mozzarella cheese", + "grated parmesan cheese", + "eggs", + "pepper", + "ricotta cheese", + "pasta sauce", + "lasagna noodles", + "flat leaf parsley" + ] + }, + { + "id": 32746, + "cuisine": "mexican", + "ingredients": [ + "water", + "chili powder", + "salsa", + "warm water", + "refried beans", + "salt", + "chopped onion", + "tomato paste", + "active dry yeast", + "vegetable oil", + "cayenne pepper", + "shredded cheddar cheese", + "taco seasoning mix", + "all-purpose flour", + "ground beef" + ] + }, + { + "id": 46611, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "cream cheese", + "green bell pepper", + "black olives", + "chopped tomatoes", + "iceberg lettuce", + "shredded cheddar cheese", + "non-fat sour cream" + ] + }, + { + "id": 6096, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "Frangelico", + "hazelnuts", + "vanilla", + "sugar", + "baking powder", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 2220, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "yellow onion", + "dried oregano", + "red pepper", + "sausages", + "fire roasted diced tomatoes", + "salt", + "celery", + "brown rice", + "garlic cloves" + ] + }, + { + "id": 37095, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "vegetable oil", + "garlic cloves", + "soy sauce", + "extra firm tofu", + "soba noodles", + "fresh spinach", + "white miso", + "ginger", + "carrots", + "water", + "sesame oil", + "scallions" + ] + }, + { + "id": 18727, + "cuisine": "chinese", + "ingredients": [ + "chinese barbecue sauce", + "chinese cabbage", + "large shrimp", + "water", + "cauliflower florets", + "low salt chicken broth", + "sliced carrots", + "sauce", + "broccoli florets", + "beef tenderloin", + "sliced mushrooms" + ] + }, + { + "id": 22156, + "cuisine": "italian", + "ingredients": [ + "peach nectar", + "sugar", + "fresh lemon juice" + ] + }, + { + "id": 15703, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "paprika", + "long grain brown rice", + "andouille sausage", + "ground red pepper", + "garlic cloves", + "medium shrimp", + "tomatoes", + "dried thyme", + "chopped onion", + "celery", + "fat free less sodium chicken broth", + "cajun seasoning", + "rubbed sage" + ] + }, + { + "id": 48373, + "cuisine": "french", + "ingredients": [ + "capers", + "water", + "extra-virgin olive oil", + "fresh lemon juice", + "eggs", + "pitted kalamata olives", + "lettuce leaves", + "salt", + "crostini", + "haricots verts", + "grape tomatoes", + "ground black pepper", + "purple onion", + "fresh basil leaves", + "red potato", + "sugar", + "tuna steaks", + "garlic cloves" + ] + }, + { + "id": 32005, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "rice vinegar", + "garlic", + "sugar", + "vietnamese fish sauce", + "seeds" + ] + }, + { + "id": 40508, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "finely chopped onion", + "long-grain rice", + "chili pepper", + "reduced-fat sour cream", + "ground turmeric", + "black beans", + "diced tomatoes", + "chopped cilantro fresh", + "olive oil", + "salt", + "ground cumin" + ] + }, + { + "id": 5518, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "jalapeno chilies", + "sea salt", + "hot sauce", + "corn tortillas", + "avocado", + "water", + "ground black pepper", + "green onions", + "garlic", + "feta cheese crumbles", + "ground cumin", + "white onion", + "sherry vinegar", + "sweet potatoes", + "cilantro", + "cayenne pepper", + "cabbage", + "black pepper", + "lime", + "radishes", + "chili powder", + "fine sea salt", + "pepitas" + ] + }, + { + "id": 43569, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "queso fresco", + "salt", + "onions", + "jalapeno chilies", + "garlic", + "oil", + "corn kernels", + "cilantro", + "salsa", + "black beans", + "lime wedges", + "crema", + "corn tortillas" + ] + }, + { + "id": 41403, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "cilantro leaves", + "chipotle paste", + "vegetable oil", + "dark brown sugar", + "onions", + "boneless skinless chicken breasts", + "rice", + "corn tortillas", + "purple onion", + "garlic cloves" + ] + }, + { + "id": 27776, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "onions", + "large eggs", + "frozen mixed thawed vegetables,", + "low sodium soy sauce", + "garlic", + "chicken breasts", + "cooked white rice" + ] + }, + { + "id": 12945, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "garlic", + "cumin seed", + "lemon", + "salt", + "greek yogurt", + "chili powder", + "paneer", + "mustard oil", + "fenugreek leaves", + "ginger", + "green chilies", + "coriander" + ] + }, + { + "id": 2611, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "egg whites", + "salt", + "slivered almonds", + "olive oil", + "balsamic vinegar", + "dry bread crumbs", + "green bell pepper", + "water", + "chicken breast halves", + "all-purpose flour", + "sugar", + "grated parmesan cheese", + "raisins", + "red bell pepper" + ] + }, + { + "id": 36895, + "cuisine": "southern_us", + "ingredients": [ + "hot pepper sauce", + "bone-in chicken breast halves", + "salt", + "worcestershire sauce", + "cider vinegar", + "canola oil" + ] + }, + { + "id": 12110, + "cuisine": "french", + "ingredients": [ + "capers", + "eggplant", + "chopped fresh thyme", + "olive oil", + "marinara sauce", + "chopped garlic", + "vegetable oil cooking spray", + "zucchini", + "onions", + "fresh basil", + "monkfish fillets", + "bell pepper" + ] + }, + { + "id": 10559, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "cinnamon", + "ground coriander", + "plum tomatoes", + "fresh ginger", + "unsalted cashews", + "cardamom pods", + "plain whole-milk yogurt", + "kosher salt", + "cayenne", + "whipping cream", + "onions", + "olive oil", + "golden raisins", + "garlic", + "chicken thighs" + ] + }, + { + "id": 48669, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic", + "spinach", + "coarse salt", + "pinenuts", + "extra-virgin olive oil", + "golden raisins", + "lemon juice" + ] + }, + { + "id": 46902, + "cuisine": "indian", + "ingredients": [ + "sugar", + "ground cardamom", + "pistachios", + "milk", + "saffron", + "khoa" + ] + }, + { + "id": 48325, + "cuisine": "italian", + "ingredients": [ + "cod fillets", + "grated orange", + "ground black pepper", + "fresh orange juice", + "fennel seeds", + "cooking oil", + "fennel bulb", + "salt" + ] + }, + { + "id": 25139, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "bay leaves", + "shredded cheese", + "kosher salt", + "flour tortillas", + "garlic", + "pork shoulder", + "ground cloves", + "lime", + "cilantro", + "chipotles in adobo", + "lime juice", + "beef stock", + "purple onion" + ] + }, + { + "id": 29737, + "cuisine": "vietnamese", + "ingredients": [ + "butter lettuce", + "lime juice", + "vermicelli", + "lemon juice", + "fish sauce", + "sweet chili sauce", + "ground black pepper", + "salt", + "mung bean sprouts", + "red chili peppers", + "thai basil", + "shallots", + "minced pork", + "brown sugar", + "water", + "herbs", + "garlic cloves", + "coriander" + ] + }, + { + "id": 37225, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "vegetable oil", + "red bell pepper", + "tomatoes", + "dried thyme", + "salt", + "water", + "dried salted codfish", + "onions", + "pepper sauce", + "flour", + "tomato ketchup" + ] + }, + { + "id": 28691, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "ground sirloin", + "salsa", + "ground cumin", + "chopped green bell pepper", + "reduced-fat sour cream", + "baked tortilla chips", + "reduced fat sharp cheddar cheese", + "chili powder", + "chopped onion", + "jalapeno chilies", + "salt", + "iceberg lettuce" + ] + }, + { + "id": 48938, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "guanciale", + "yolk", + "grated parmesan cheese", + "spaghetti", + "eggs", + "cracked black pepper" + ] + }, + { + "id": 12242, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "stewed tomatoes", + "ground cumin", + "boneless chicken breast halves", + "red bell pepper", + "kidney beans", + "chopped onion", + "chicken broth", + "chile pepper", + "corn kernel whole" + ] + }, + { + "id": 18358, + "cuisine": "italian", + "ingredients": [ + "kale", + "chopped onion", + "minced garlic", + "bacon", + "heavy whipping cream", + "potatoes", + "chicken-flavored soup powder", + "water", + "smoked sausage" + ] + }, + { + "id": 16289, + "cuisine": "spanish", + "ingredients": [ + "pimentos", + "seafood", + "canned low sodium chicken broth", + "garden peas", + "mussels", + "converted rice", + "curry powder", + "salt" + ] + }, + { + "id": 38822, + "cuisine": "japanese", + "ingredients": [ + "water", + "dashi kombu" + ] + }, + { + "id": 24474, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "fresh ginger", + "thai chile", + "mixed greens", + "sliced green onions", + "lemongrass", + "flank steak", + "rice vinegar", + "fresh lemon juice", + "sugar", + "green onions", + "salt", + "garlic cloves", + "tomatoes", + "sweet onion", + "vegetable oil", + "ground coriander", + "cucumber" + ] + }, + { + "id": 11831, + "cuisine": "southern_us", + "ingredients": [ + "balsamic vinegar", + "dry rub", + "pineapple juice", + "minced garlic", + "apricot nectar" + ] + }, + { + "id": 36142, + "cuisine": "chinese", + "ingredients": [ + "black peppercorns", + "garlic", + "ground white pepper", + "Dungeness crabs", + "chinese five-spice powder", + "chinese rice wine", + "peanut oil", + "chicken stock", + "butter", + "oyster sauce" + ] + }, + { + "id": 39724, + "cuisine": "thai", + "ingredients": [ + "cold water", + "peanuts", + "fresh mint", + "brown sugar", + "creamy peanut butter", + "low sodium soy sauce", + "sesame oil", + "white vinegar", + "warm water", + "corn starch" + ] + }, + { + "id": 23215, + "cuisine": "southern_us", + "ingredients": [ + "hot pepper sauce", + "whole kernel corn, drain", + "bread crumb fresh", + "salt", + "sliced green onions", + "olive oil", + "hellmann' or best food real mayonnais", + "tomatoes", + "chop fine pecan", + "frozen crabmeat, thaw and drain" + ] + }, + { + "id": 20864, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "ground cumin", + "kosher salt", + "hass avocado", + "fresh lime juice", + "jalapeno chilies", + "chopped cilantro fresh" + ] + }, + { + "id": 24746, + "cuisine": "indian", + "ingredients": [ + "lemon", + "kosher salt", + "chicken thighs", + "coconut oil", + "greek yogurt", + "tandoori seasoning" + ] + }, + { + "id": 1060, + "cuisine": "japanese", + "ingredients": [ + "mitsuba", + "dipping sauces", + "coarse salt", + "cucumber", + "salmon fillets", + "daikon", + "somen", + "cherry tomatoes", + "freshly ground pepper" + ] + }, + { + "id": 32134, + "cuisine": "mexican", + "ingredients": [ + "lime", + "salt", + "roma tomatoes", + "chopped cilantro", + "sugar", + "jalapeno chilies", + "cumin", + "white onion", + "garlic" + ] + }, + { + "id": 25817, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "salsa", + "bell pepper" + ] + }, + { + "id": 15923, + "cuisine": "thai", + "ingredients": [ + "baby bok choy", + "vegetable oil", + "green curry paste", + "red bell pepper", + "jasmine rice", + "green beans", + "unsweetened coconut milk", + "shiitake", + "fresh basil leaves" + ] + }, + { + "id": 2674, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "tubettini", + "onions", + "celery ribs", + "water", + "chopped fresh sage", + "great northern beans", + "diced tomatoes", + "celery salt", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 31693, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chopped celery", + "chopped onion", + "bay leaf", + "dried thyme", + "diced tomatoes", + "dried navy beans", + "flat leaf parsley", + "water", + "sliced carrots", + "salt", + "elbow macaroni", + "dried rosemary", + "black pepper", + "fresh parmesan cheese", + "crushed red pepper", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 24970, + "cuisine": "italian", + "ingredients": [ + "slivered almonds", + "shallots", + "chopped parsley", + "pitted kalamata olives", + "orange slices", + "fat skimmed chicken broth", + "grated orange peel", + "olive oil", + "orange juice", + "pepper", + "salt", + "chicken" + ] + }, + { + "id": 33991, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vanilla extract", + "nectarines", + "large eggs", + "peach preserves", + "vegetable oil cooking spray", + "refrigerated piecrusts", + "ground allspice", + "peaches", + "all-purpose flour" + ] + }, + { + "id": 2249, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "French lentils", + "salt", + "smoked kielbasa", + "water", + "red wine vinegar", + "carrots", + "chopped garlic", + "black pepper", + "dijon mustard", + "California bay leaves", + "onions", + "dried thyme", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 43079, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "ground black pepper", + "reduced-fat sour cream", + "penne", + "marinara sauce", + "fresh basil", + "parmigiano reggiano cheese", + "salt", + "mozzarella cheese", + "cooking spray" + ] + }, + { + "id": 49369, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "fresh ginger root", + "coconut milk", + "chicken stock", + "fresh coriander", + "tamarind paste", + "chicken", + "tumeric", + "rice noodles", + "stir fry vegetable blend", + "fresh red chili", + "lime juice", + "Thai fish sauce" + ] + }, + { + "id": 21048, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "onions", + "dry white wine", + "freshly ground pepper", + "parmigiano reggiano cheese", + "artichokes", + "spaghetti", + "pancetta", + "lemon", + "garlic cloves" + ] + }, + { + "id": 27543, + "cuisine": "korean", + "ingredients": [ + "sugar", + "water", + "vinegar", + "salt", + "wasabi", + "pepper", + "beef", + "chives", + "english cucumber", + "soy sauce", + "shiitake", + "flour", + "mustard powder", + "eggs", + "minced garlic", + "enokitake", + "sesame oil", + "carrots" + ] + }, + { + "id": 2037, + "cuisine": "jamaican", + "ingredients": [ + "sweet potatoes", + "salt", + "chicken broth", + "red pepper", + "ground beef", + "vegetable oil", + "jerk sauce", + "kale", + "garlic", + "onions" + ] + }, + { + "id": 46839, + "cuisine": "chinese", + "ingredients": [ + "beans", + "salt", + "sugar", + "spring onions", + "noodles", + "olive oil", + "carrots", + "red chili peppers", + "garlic", + "cabbage" + ] + }, + { + "id": 3898, + "cuisine": "mexican", + "ingredients": [ + "tequila", + "lime juice", + "liqueur", + "margarita mix" + ] + }, + { + "id": 3996, + "cuisine": "italian", + "ingredients": [ + "capers", + "artichokes", + "garlic cloves", + "lemon zest", + "brine-cured black olives", + "Italian parsley leaves", + "tuna packed in olive oil", + "mayonaise", + "rolls" + ] + }, + { + "id": 17384, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "vanilla", + "flour", + "butter", + "egg whites", + "salt" + ] + }, + { + "id": 15006, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "garlic", + "onions", + "paprika", + "green pepper", + "stewed tomatoes", + "cooked shrimp", + "butter", + "salt" + ] + }, + { + "id": 45201, + "cuisine": "japanese", + "ingredients": [ + "pork belly", + "sesame oil", + "shimeji mushrooms", + "fresh ginger", + "maitake mushrooms", + "carrots", + "dashi", + "miso", + "scallions", + "sake", + "satsuma imo", + "garlic" + ] + }, + { + "id": 38230, + "cuisine": "southern_us", + "ingredients": [ + "pasta", + "flour", + "heavy cream", + "elbow macaroni", + "kosher salt", + "butter", + "grated nutmeg", + "onions", + "eggs", + "half & half", + "dry mustard", + "sour cream", + "ground black pepper", + "worcestershire sauce", + "cayenne pepper", + "extra sharp cheddar cheese" + ] + }, + { + "id": 7397, + "cuisine": "mexican", + "ingredients": [ + "cremini mushrooms", + "manchego cheese", + "coarse kosher salt", + "cherry tomatoes", + "shallots", + "fresh cilantro", + "green onions", + "corn tortillas", + "serrano chilies", + "olive oil", + "freshly ground pepper" + ] + }, + { + "id": 42938, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "fresh lemon juice", + "olive oil", + "large garlic cloves", + "flat leaf parsley", + "capers", + "lemon", + "tuna", + "ground black pepper", + "salt" + ] + }, + { + "id": 35115, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "kosher salt", + "spicy brown mustard", + "ground coriander", + "chopped cilantro", + "ginger paste", + "ground cloves", + "low sodium chicken broth", + "heavy cream", + "smoked paprika", + "serrano chile", + "white onion", + "vegetable oil", + "rice vinegar", + "ground cayenne pepper", + "ground turmeric", + "ground cinnamon", + "ground black pepper", + "chicken drumsticks", + "garlic cloves", + "cashew nuts", + "ground cumin" + ] + }, + { + "id": 10798, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "garlic powder", + "dried parsley", + "pizza crust", + "grated parmesan cheese", + "pepperoni slices", + "large eggs", + "small curd cottage cheese", + "cheese slices" + ] + }, + { + "id": 26616, + "cuisine": "korean", + "ingredients": [ + "mussels", + "pepper", + "chili pepper flakes", + "squid", + "shrimp", + "pork", + "zucchini", + "salt", + "oil", + "cabbage", + "chicken stock", + "ginger piece", + "littleneck clams", + "scallions", + "onions", + "soy sauce", + "udon", + "dried shiitake mushrooms", + "carrots" + ] + }, + { + "id": 24720, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "panettone", + "whipped cream", + "Amarena cherries", + "milk", + "cointreau liqueur", + "sugar", + "unsalted butter", + "eggs", + "orange", + "fresh orange juice" + ] + }, + { + "id": 20583, + "cuisine": "southern_us", + "ingredients": [ + "green onions", + "apple butter", + "black pepper", + "spicy brown mustard", + "grits", + "cooking spray", + "salt", + "ground red pepper", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 40660, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "olive oil", + "lean ground beef", + "beef broth", + "carrots", + "ground cumin", + "water", + "potatoes", + "garlic", + "fresh oregano", + "fresh parsley", + "pepper", + "chopped tomatoes", + "lemon", + "cayenne pepper", + "fresh mint", + "fresh cilantro", + "chili powder", + "salt", + "long-grain rice", + "onions" + ] + }, + { + "id": 12222, + "cuisine": "cajun_creole", + "ingredients": [ + "saltines", + "baking potatoes", + "sweet paprika", + "pepper", + "salt", + "eggs", + "butter", + "scallions", + "vegetable oil", + "cayenne pepper" + ] + }, + { + "id": 46457, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "vegetable oil", + "mustard seeds", + "tomatoes", + "shredded cabbage", + "cilantro leaves", + "ground turmeric", + "clove", + "coriander powder", + "salt", + "onions", + "sugar", + "chili powder", + "cumin seed", + "asafetida" + ] + }, + { + "id": 45531, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "low sodium chicken broth", + "vegetable oil", + "rice vinegar", + "honey", + "green onions", + "garlic", + "salted cashews", + "black pepper", + "peeled fresh ginger", + "red pepper flakes", + "corn starch", + "hoisin sauce", + "boneless skinless chicken breasts", + "salt" + ] + }, + { + "id": 33657, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "salsa", + "ground beef", + "tortillas", + "tortilla chips", + "shredded cheddar cheese", + "cheese sauce", + "tomatoes", + "shredded lettuce", + "sour cream" + ] + }, + { + "id": 27400, + "cuisine": "chinese", + "ingredients": [ + "water", + "salt", + "light brown sugar", + "boneless skinless chicken breasts", + "corn starch", + "large eggs", + "hot sauce", + "pepper", + "apple cider vinegar", + "canola oil" + ] + }, + { + "id": 35793, + "cuisine": "mexican", + "ingredients": [ + "salt and ground black pepper", + "top round roast", + "green chilies", + "flour tortillas", + "water" + ] + }, + { + "id": 35761, + "cuisine": "thai", + "ingredients": [ + "sugar pea", + "Thai red curry paste", + "baby corn", + "fresh basil", + "green onions", + "garlic", + "chopped cilantro fresh", + "lime juice", + "light coconut milk", + "bamboo shoots", + "fish sauce", + "red pepper", + "shrimp", + "canola oil" + ] + }, + { + "id": 32990, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "salt", + "cooked rice", + "sesame oil", + "oil", + "large eggs", + "scallions", + "soy sauce", + "peas", + "boiled ham" + ] + }, + { + "id": 2017, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "garlic", + "ricotta salata", + "kosher salt", + "frozen peas", + "frozen cheese ravioli", + "bacon" + ] + }, + { + "id": 40718, + "cuisine": "indian", + "ingredients": [ + "sugar", + "black onion seeds", + "salt", + "active dry yeast", + "vegetable oil", + "milk", + "baking powder", + "ghee", + "plain flour", + "yoghurt", + "garlic" + ] + }, + { + "id": 12512, + "cuisine": "italian", + "ingredients": [ + "phyllo dough", + "butter", + "white sugar", + "egg yolks", + "hazelnut liqueur", + "egg whites", + "unsweetened chocolate", + "mascarpone", + "chocolate" + ] + }, + { + "id": 48836, + "cuisine": "italian", + "ingredients": [ + "baby arugula", + "fresh lemon juice", + "mayonaise", + "extra-virgin olive oil", + "water", + "anchovy fillets", + "capers", + "light tuna packed in olive oil" + ] + }, + { + "id": 33449, + "cuisine": "chinese", + "ingredients": [ + "water", + "rice wine", + "cinnamon sticks", + "fresh spinach", + "peeled fresh ginger", + "beef stew meat", + "sugar", + "green onions", + "garlic cloves", + "low sodium soy sauce", + "lo mein noodles", + "vegetable oil" + ] + }, + { + "id": 16143, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "refrigerated piecrusts" + ] + }, + { + "id": 33907, + "cuisine": "french", + "ingredients": [ + "Belgian endive", + "unsalted butter", + "reduced sodium chicken broth", + "chinese five-spice powder", + "bread crumb fresh", + "heavy cream", + "orange" + ] + }, + { + "id": 46873, + "cuisine": "british", + "ingredients": [ + "pepper", + "flour", + "worcestershire sauce", + "onions", + "tomato paste", + "minced garlic", + "beef for stew", + "thyme", + "canola oil", + "shredded cheddar cheese", + "beef stock", + "salt", + "frozen peas", + "mashed potatoes", + "Guinness Beer", + "sliced carrots", + "sliced mushrooms" + ] + }, + { + "id": 1194, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "cannellini beans", + "salt", + "olive oil", + "baby spinach", + "onions", + "fat free less sodium chicken broth", + "dry white wine", + "garlic cloves", + "sea scallops", + "crushed red pepper" + ] + }, + { + "id": 12636, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "salt", + "unsalted butter", + "heavy cream", + "corn starch", + "granulated sugar", + "vanilla extract", + "milk", + "yolk", + "all-purpose flour" + ] + }, + { + "id": 13635, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "purple onion", + "chopped cilantro fresh", + "salt and ground black pepper", + "jicama", + "fresh lemon juice", + "green onions", + "garlic cloves", + "ground cumin", + "roma tomatoes", + "diced tomatoes", + "fresh lime juice" + ] + }, + { + "id": 46976, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "butter", + "coconut milk", + "cold water", + "hot pepper sauce", + "salt", + "onions", + "dried thyme", + "bacon", + "cornmeal", + "tomatoes", + "cooking oil", + "scallions" + ] + }, + { + "id": 12925, + "cuisine": "italian", + "ingredients": [ + "bacon", + "low salt chicken broth", + "fontina cheese", + "chopped onion", + "polenta", + "grated parmesan cheese", + "garlic cloves", + "frozen corn kernels", + "fresh parsley" + ] + }, + { + "id": 46588, + "cuisine": "italian", + "ingredients": [ + "string cheese", + "wonton wrappers", + "marinara sauce", + "large eggs", + "vegetable oil" + ] + }, + { + "id": 13221, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "shallots", + "fresh lime juice", + "light brown sugar", + "dry roasted peanuts", + "cilantro leaves", + "toasted sesame seeds", + "kosher salt", + "vegetable oil", + "dried shrimp", + "fish sauce", + "mint leaves", + "garlic cloves", + "mango" + ] + }, + { + "id": 24239, + "cuisine": "chinese", + "ingredients": [ + "sambal ulek", + "boneless skinless chicken breasts", + "dark sesame oil", + "canola oil", + "sugar pea", + "purple onion", + "corn starch", + "fish sauce", + "unsalted dry roast peanuts", + "dark brown sugar", + "sliced green onions", + "lower sodium soy sauce", + "rice vinegar", + "red bell pepper" + ] + }, + { + "id": 3639, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "schmaltz", + "smoked sausage", + "medium shrimp", + "tomato sauce", + "bay leaves", + "rice", + "chicken", + "tasso", + "minced garlic", + "green onions", + "poultry", + "fresh tomatoes", + "seafood stock", + "chopped celery", + "onions" + ] + }, + { + "id": 14871, + "cuisine": "vietnamese", + "ingredients": [ + "boneless skinless chicken breasts", + "molasses", + "garlic cloves", + "fish sauce", + "dark sesame oil", + "black pepper", + "lemon juice" + ] + }, + { + "id": 41149, + "cuisine": "chinese", + "ingredients": [ + "tomatoes", + "ketchup", + "boneless skinless chicken breasts", + "green pepper", + "onions", + "sugar", + "flour", + "salt", + "oil", + "pineapple chunks", + "vinegar", + "sweet and sour sauce", + "orange juice", + "soy sauce", + "egg yolks", + "pineapple juice", + "corn starch" + ] + }, + { + "id": 8672, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "7 Up", + "pork country-style ribs", + "soy sauce", + "crushed red pepper flakes", + "brown sugar", + "lemon", + "black pepper", + "garlic" + ] + }, + { + "id": 10386, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "fresh cilantro", + "asparagus", + "scallions", + "large shrimp", + "kaffir lime leaves", + "soy sauce", + "fresh ginger", + "garlic", + "snow peas", + "chiles", + "lime", + "sesame oil", + "coconut milk", + "green chile", + "lemongrass", + "coriander seeds", + "peanut oil", + "basmati rice" + ] + }, + { + "id": 16545, + "cuisine": "chinese", + "ingredients": [ + "low sodium teriyaki sauce", + "orange", + "boneless skinless chicken breast halves", + "sugar", + "sauce", + "green tea" + ] + }, + { + "id": 43896, + "cuisine": "indian", + "ingredients": [ + "mini marshmallows", + "Crispy Rice Cereal", + "unsalted cashews", + "golden raisins", + "unsalted butter", + "ground cardamom" + ] + }, + { + "id": 20816, + "cuisine": "mexican", + "ingredients": [ + "hot smoked paprika", + "ground cumin", + "kosher salt", + "ground coriander", + "cayenne pepper", + "chili powder", + "corn starch" + ] + }, + { + "id": 23001, + "cuisine": "indian", + "ingredients": [ + "clove", + "garlic paste", + "jalapeno chilies", + "cardamom pods", + "cinnamon sticks", + "chicken", + "tomatoes", + "vegetables", + "cilantro", + "juice", + "onions", + "tomato paste", + "coriander seeds", + "paprika", + "cumin seed", + "bay leaf", + "ginger paste", + "black peppercorns", + "coriander powder", + "salt", + "hot water", + "ground turmeric" + ] + }, + { + "id": 18973, + "cuisine": "thai", + "ingredients": [ + "hearts of palm", + "Thai red curry paste", + "sliced green onions", + "fish sauce", + "Sriracha", + "garlic puree", + "tomatoes", + "lime juice", + "rice vinegar", + "sugar", + "grapeseed oil", + "chopped fresh mint" + ] + }, + { + "id": 32314, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "warm water", + "chickpea flour", + "salt", + "black pepper" + ] + }, + { + "id": 1360, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "country ham", + "flour", + "elbow macaroni", + "biscuits", + "cayenne", + "mild cheddar cheese", + "milk", + "butter" + ] + }, + { + "id": 32170, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "cream", + "vegan margarine", + "self raising flour", + "brown sugar", + "soy milk", + "golden syrup", + "ground ginger", + "vanilla essence", + "ground nutmeg", + "bicarbonate of soda", + "water", + "dates" + ] + }, + { + "id": 15830, + "cuisine": "french", + "ingredients": [ + "olive oil", + "crimini mushrooms", + "bacon", + "thyme sprigs", + "fresh bay leaves", + "butter", + "beef broth", + "onions", + "ground nutmeg", + "shallots", + "all-purpose flour", + "Burgundy wine", + "parsley sprigs", + "oxtails", + "large garlic cloves", + "carrots" + ] + }, + { + "id": 35430, + "cuisine": "mexican", + "ingredients": [ + "tostada shells", + "large flour tortillas", + "ground beef", + "Mexican cheese blend", + "cheese", + "taco seasoning mix", + "shredded lettuce", + "tomatoes", + "cooking spray", + "sour cream" + ] + }, + { + "id": 3477, + "cuisine": "italian", + "ingredients": [ + "capers", + "parmesan cheese", + "balsamic vinegar", + "extra-virgin olive oil", + "oil", + "baguette", + "prosciutto", + "crushed red pepper flakes", + "garlic", + "fresh basil leaves", + "olive oil", + "roasted red peppers", + "tapenade", + "anchovy fillets", + "dry jack", + "sun-dried tomatoes", + "roma tomatoes", + "chees fresh mozzarella", + "goat cheese" + ] + }, + { + "id": 2100, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "feta cheese crumbles", + "pitted kalamata olives", + "balsamic vinegar", + "fresh oregano", + "fresh basil", + "flank steak", + "salt", + "green lentil", + "orzo", + "garlic cloves" + ] + }, + { + "id": 32023, + "cuisine": "italian", + "ingredients": [ + "pepper", + "grated parmesan cheese", + "milk", + "fresh oregano", + "artichoke hearts", + "minced garlic", + "Alfredo sauce" + ] + }, + { + "id": 26999, + "cuisine": "southern_us", + "ingredients": [ + "yellow mustard", + "mayonaise", + "salt", + "sweet pickle relish", + "paprika", + "hard-boiled egg", + "dill pickles" + ] + }, + { + "id": 6615, + "cuisine": "italian", + "ingredients": [ + "water", + "finely chopped onion", + "dry vermouth", + "swiss chard", + "vegetable broth", + "arborio rice", + "olive oil", + "grated parmesan cheese", + "pepper", + "ground nutmeg" + ] + }, + { + "id": 18102, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "ricotta", + "pasta", + "parmigiano reggiano cheese", + "oregano", + "sliced black olives", + "pepperoni", + "sausage casings", + "pizza sauce" + ] + }, + { + "id": 39777, + "cuisine": "indian", + "ingredients": [ + "asafoetida", + "chana dal", + "fenugreek seeds", + "curry leaves", + "red chili peppers", + "urad dal", + "oil", + "black peppercorns", + "coriander seeds", + "salt", + "jaggery", + "mustard", + "tumeric", + "sesame oil", + "berries" + ] + }, + { + "id": 45698, + "cuisine": "greek", + "ingredients": [ + "lamb stock", + "diced tomatoes", + "lamb shoulder", + "onions", + "lemon", + "garlic", + "bay leaf", + "olive oil", + "dry red wine", + "salt", + "dried oregano", + "ground cinnamon", + "fresh green bean", + "passata", + "fresh parsley" + ] + }, + { + "id": 2586, + "cuisine": "cajun_creole", + "ingredients": [ + "sweet onion", + "diced tomatoes", + "diced celery", + "bay leaf", + "green chile", + "green onions", + "long-grain rice", + "red bell pepper", + "canola oil", + "chicken broth", + "dried thyme", + "creole seasoning", + "shrimp", + "dried oregano", + "andouille sausage", + "cooked chicken", + "garlic cloves", + "flat leaf parsley" + ] + }, + { + "id": 33499, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "half & half", + "salt", + "frozen artichoke hearts", + "large eggs", + "whipping cream", + "crumbled gorgonzola", + "ground black pepper", + "cooked bacon", + "garlic cloves", + "fettucine", + "grated parmesan cheese", + "crushed red pepper", + "fresh parsley" + ] + }, + { + "id": 28736, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "salt", + "ground cumin", + "plain yogurt", + "mint leaves", + "fresh lemon juice", + "ground black pepper", + "garlic cloves", + "pepper", + "green onions", + "chopped cilantro fresh" + ] + }, + { + "id": 24868, + "cuisine": "italian", + "ingredients": [ + "refrigerated buttermilk biscuits", + "pasta sauce", + "green bell pepper", + "sliced green onions", + "mozzarella cheese" + ] + }, + { + "id": 7259, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "ground sichuan pepper", + "scallions", + "chicken stock", + "soy sauce", + "chili bean paste", + "corn starch", + "sugar", + "cayenne pepper", + "garlic cloves", + "asian eggplants", + "minced ginger", + "peanut oil", + "chinese black vinegar" + ] + }, + { + "id": 38354, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "whole chicken", + "onions", + "olive oil", + "salt", + "sour cream", + "sliced green onions", + "orange bell pepper", + "salsa", + "fresh lime juice", + "ground cumin", + "avocado", + "chili powder", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 1669, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "fresh lime juice", + "fresh lemon juice", + "garlic cloves", + "adobo sauce", + "fresh orange juice", + "chipotle peppers" + ] + }, + { + "id": 2027, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "chicken parts", + "paprika", + "beer", + "flour", + "Tabasco Pepper Sauce", + "all-purpose flour", + "ground black pepper", + "onion powder", + "salt", + "egg yolks", + "vegetable oil", + "cayenne pepper" + ] + }, + { + "id": 45825, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "fresh ginger", + "szechwan peppercorns", + "garlic", + "peanut oil", + "chicken stock", + "soy sauce", + "flour", + "crushed red pepper flakes", + "bean sauce", + "corn starch", + "red chili peppers", + "hoisin sauce", + "sesame oil", + "rice vinegar", + "scallions", + "dark soy sauce", + "white pepper", + "Shaoxing wine", + "chicken wingettes", + "roasted peanuts", + "chopped cilantro" + ] + }, + { + "id": 45046, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "salt", + "chopped onion", + "black-eyed peas", + "salt pork", + "bay leaf", + "water", + "hot sauce", + "long-grain rice", + "ground red pepper", + "green pepper" + ] + }, + { + "id": 47558, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "amaretto", + "granulated sugar", + "turbinado", + "almond paste" + ] + }, + { + "id": 31775, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "vegetable oil", + "cumin seed", + "asparagus", + "salt", + "onions", + "amchur", + "ginger", + "garlic cloves", + "fennel seeds", + "chili powder", + "green chilies" + ] + }, + { + "id": 12824, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "parmesan cheese", + "salt", + "eggs", + "olive oil", + "parsley", + "oregano", + "pepper", + "marinara sauce", + "ground turkey", + "bread crumbs", + "garlic powder", + "slider rolls" + ] + }, + { + "id": 10760, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "prawns", + "garlic", + "fresh lemon juice", + "fresh coriander", + "vegetable oil", + "green chilies", + "ground cumin", + "caster sugar", + "ground red pepper", + "salt", + "coconut milk", + "cold water", + "garam masala", + "cornflour", + "black mustard seeds" + ] + }, + { + "id": 35568, + "cuisine": "moroccan", + "ingredients": [ + "celery ribs", + "ground cloves", + "lemon", + "chickpeas", + "fresh lemon juice", + "tomato paste", + "ground nutmeg", + "paprika", + "freshly ground pepper", + "onions", + "ground ginger", + "water", + "dates", + "ground coriander", + "cinnamon sticks", + "lamb shanks", + "coarse salt", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 42761, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "flour tortillas", + "chicken drumsticks", + "sour cream", + "black beans", + "colby jack cheese", + "salsa", + "onions", + "mozzarella cheese", + "butter", + "green chilies", + "jack cheese", + "flour", + "chicken stock cubes", + "sweet yellow corn" + ] + }, + { + "id": 22390, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "flour", + "salt", + "unsalted butter", + "whole milk", + "baking soda", + "sweet potatoes", + "pumpkin pie spice", + "granulated sugar", + "baking powder" + ] + }, + { + "id": 22282, + "cuisine": "french", + "ingredients": [ + "bone-in chicken breast halves", + "sour cream", + "condensed cream of mushroom soup", + "mushrooms", + "cooking sherry", + "paprika" + ] + }, + { + "id": 12344, + "cuisine": "mexican", + "ingredients": [ + "beans", + "chopped tomatoes", + "iceberg lettuce", + "avocado", + "corn", + "ground beef", + "shredded cheddar cheese", + "fritos", + "salad", + "taco seasoning mix", + "onions" + ] + }, + { + "id": 43713, + "cuisine": "thai", + "ingredients": [ + "ground ginger", + "flour tortillas", + "chinese cabbage", + "fresh basil", + "ground red pepper", + "red bell pepper", + "lime juice", + "light mayonnaise", + "roast breast of chicken", + "reduced fat chunky peanut butter", + "garlic cloves" + ] + }, + { + "id": 42248, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "red serrano peppers", + "fresh dill", + "mace", + "allspice", + "cider vinegar", + "flat leaf parsley", + "shucked oysters", + "salt" + ] + }, + { + "id": 18077, + "cuisine": "greek", + "ingredients": [ + "chopped onion", + "carrots", + "ground lamb", + "fat free less sodium chicken broth", + "garlic cloves", + "chopped fresh mint", + "ground cinnamon", + "long-grain rice", + "flat leaf parsley", + "salt", + "fresh lemon juice", + "plum tomatoes" + ] + }, + { + "id": 28723, + "cuisine": "french", + "ingredients": [ + "baking potatoes", + "black pepper", + "flat leaf parsley", + "sea salt", + "unsalted butter" + ] + }, + { + "id": 7117, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "part-skim ricotta cheese", + "fresh parsley", + "parmigiano reggiano cheese", + "fresh oregano", + "unsalted butter", + "salt", + "noodles", + "pinenuts", + "cracked black pepper", + "chopped fresh sage" + ] + }, + { + "id": 11982, + "cuisine": "southern_us", + "ingredients": [ + "slaw mix", + "crumbled blue cheese", + "onions", + "ranch dressing", + "bacon slices" + ] + }, + { + "id": 14558, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "black pepper", + "linguine", + "dried basil", + "crushed red pepper", + "tomatoes", + "fresh parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 49255, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "garam masala", + "ginger", + "cardamom pods", + "clove", + "tumeric", + "vegetable oil", + "salt", + "onions", + "spinach", + "coriander powder", + "garlic", + "chicken pieces", + "tomatoes", + "milk", + "butter", + "cayenne pepper" + ] + }, + { + "id": 17431, + "cuisine": "chinese", + "ingredients": [ + "water", + "vegetable oil", + "hoisin sauce", + "purple onion", + "asparagus", + "top sirloin", + "sesame oil", + "toasted sesame seeds" + ] + }, + { + "id": 28921, + "cuisine": "irish", + "ingredients": [ + "green cabbage", + "honey", + "potatoes", + "buttermilk", + "currant", + "sausages", + "fresh parsley", + "eggs", + "baking soda", + "baking powder", + "raw sugar", + "sorghum flour", + "lemon juice", + "caraway seeds", + "olive oil", + "tapioca starch", + "gluten", + "garlic", + "gluten-free broth", + "onions", + "light brown sugar", + "mild olive oil", + "ground pepper", + "apple cider vinegar", + "sea salt", + "xanthan gum", + "carrots" + ] + }, + { + "id": 29582, + "cuisine": "mexican", + "ingredients": [ + "cayenne", + "cotija", + "crema mexican" + ] + }, + { + "id": 19860, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "garam masala", + "green chilies", + "cinnamon sticks", + "tomatoes", + "fresh ginger", + "cilantro", + "ground cardamom", + "plain yogurt", + "boneless skinless chicken breasts", + "cumin seed", + "fresh lime juice", + "olive oil", + "chili powder", + "garlic cloves", + "onions" + ] + }, + { + "id": 26139, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "dry white wine", + "fresh lemon juice", + "cauliflower", + "sea scallops", + "heavy cream", + "olive oil", + "florets", + "water", + "leeks", + "cumin seed" + ] + }, + { + "id": 44381, + "cuisine": "italian", + "ingredients": [ + "cheese ravioli", + "grated parmesan cheese", + "part-skim mozzarella", + "frozen chopped spinach, thawed and squeezed dry", + "marinara sauce" + ] + }, + { + "id": 25960, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "shallots", + "leeks", + "spaghettini", + "green onions", + "finely chopped onion", + "crumbled gorgonzola" + ] + }, + { + "id": 23290, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "dried thyme", + "bay leaves", + "cayenne pepper", + "onions", + "green bell pepper", + "black-eyed peas", + "salt", + "garlic cloves", + "cooked rice", + "olive oil", + "vegetable broth", + "scallions", + "liquid smoke", + "black pepper", + "leaves", + "hot sauce", + "smoked paprika" + ] + }, + { + "id": 29306, + "cuisine": "japanese", + "ingredients": [ + "gari", + "white rice", + "tuna", + "Japanese soy sauce", + "rice vinegar", + "caster sugar", + "salt", + "nori", + "wasabi powder", + "cucumber" + ] + }, + { + "id": 14230, + "cuisine": "italian", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "ground beef", + "bread crumbs", + "garlic", + "onions", + "fresh basil", + "marinara sauce", + "fresh parsley", + "fresh rosemary", + "pepper", + "salt" + ] + }, + { + "id": 4897, + "cuisine": "indian", + "ingredients": [ + "water", + "button mushrooms", + "red lentils", + "baby spinach", + "garam masala", + "purple onion", + "coconut oil", + "diced tomatoes" + ] + }, + { + "id": 25380, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "ground nutmeg", + "whipping cream", + "white pepper", + "baking powder", + "all-purpose flour", + "sugar", + "whole milk", + "salt", + "parmesan cheese", + "butter", + "frozen corn kernels" + ] + }, + { + "id": 10612, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "cayenne", + "large garlic cloves", + "fresh lemon juice", + "pimento stuffed green olives", + "black pepper", + "dry white wine", + "salt", + "flat leaf parsley", + "sea scallops", + "shallots", + "spanish chorizo", + "couscous", + "chicken broth", + "shell-on shrimp", + "extra-virgin olive oil", + "red bell pepper", + "frozen peas" + ] + }, + { + "id": 16038, + "cuisine": "irish", + "ingredients": [ + "celery ribs", + "pepper", + "garlic", + "bay leaf", + "fresh rosemary", + "vegetable oil", + "beef broth", + "onions", + "tomato paste", + "fresh thyme", + "salt", + "fresh parsley", + "lamb shanks", + "stout", + "carrots" + ] + }, + { + "id": 19267, + "cuisine": "southern_us", + "ingredients": [ + "extra-virgin olive oil", + "collard greens", + "orange juice", + "garlic", + "raisins" + ] + }, + { + "id": 15434, + "cuisine": "mexican", + "ingredients": [ + "fresh lime juice", + "ic pop", + "kosher salt", + "tequila" + ] + }, + { + "id": 20168, + "cuisine": "southern_us", + "ingredients": [ + "nutmeg", + "ground cloves", + "salt", + "eggs", + "sweet potatoes", + "ground cinnamon", + "milk", + "pie shell", + "brown sugar", + "butter" + ] + }, + { + "id": 33166, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "vegetable stock", + "onions", + "chili powder", + "black mustard seeds", + "eggplant", + "green pepper", + "red lentils", + "vegetable oil", + "curry paste" + ] + }, + { + "id": 31226, + "cuisine": "korean", + "ingredients": [ + "pear juice", + "beef", + "onions", + "brown sugar", + "water", + "red pepper flakes", + "minced garlic", + "rice wine", + "chicken bouillon", + "honey", + "rib" + ] + }, + { + "id": 36153, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "water chestnuts", + "scallions", + "white pepper", + "ground pork", + "long grain white rice", + "sugar", + "sesame oil", + "corn starch", + "egg whites", + "salt", + "iceberg lettuce" + ] + }, + { + "id": 17947, + "cuisine": "japanese", + "ingredients": [ + "water", + "lemon juice", + "wasabi paste", + "fine sea salt", + "vegetable oil", + "sesame butter", + "edamame" + ] + }, + { + "id": 48083, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "honey", + "shelled pistachios", + "sliced almonds", + "light corn syrup", + "sugar", + "vegetable oil", + "cashew nuts", + "water", + "salt" + ] + }, + { + "id": 42944, + "cuisine": "southern_us", + "ingredients": [ + "peach nectar", + "champagne", + "peach schnapps" + ] + }, + { + "id": 26328, + "cuisine": "indian", + "ingredients": [ + "papaya", + "fenugreek", + "freshly ground pepper", + "green beans", + "fennel seeds", + "cherry tomatoes", + "lettuce leaves", + "cumin seed", + "mustard seeds", + "kosher salt", + "tawny port", + "extra-virgin olive oil", + "fresh lemon juice", + "ground turmeric", + "roasted cashews", + "coriander seeds", + "shallots", + "garlic cloves", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 10521, + "cuisine": "jamaican", + "ingredients": [ + "bread crumbs", + "ground pepper", + "butter", + "all-purpose flour", + "diced onions", + "curry powder", + "egg yolks", + "salt", + "ground beef", + "pepper", + "fresh thyme", + "ice water", + "peanut oil", + "water", + "vinegar", + "beaten eggs", + "scallions" + ] + }, + { + "id": 10660, + "cuisine": "japanese", + "ingredients": [ + "caster sugar", + "rice vinegar", + "vegetable oil", + "water", + "sushi rice", + "salt" + ] + }, + { + "id": 11824, + "cuisine": "indian", + "ingredients": [ + "garbanzo beans", + "apple juice", + "vegetable oil", + "curry paste", + "frozen pastry puff sheets", + "chopped onion", + "all-purpose flour" + ] + }, + { + "id": 44895, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "green onions", + "oil", + "peppercorns", + "egg noodles", + "garlic", + "cut up chicken", + "boiling water", + "fried garlic", + "chicken meat", + "carrots", + "broth", + "celery ribs", + "bay leaves", + "salt", + "onions" + ] + }, + { + "id": 25031, + "cuisine": "thai", + "ingredients": [ + "sugar", + "vegetable oil", + "fresh mint", + "filet mignon", + "fresh coriander", + "scallions", + "soy sauce", + "gingerroot", + "fresh lime juice", + "hot red pepper flakes", + "water", + "garlic cloves" + ] + }, + { + "id": 24533, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "egg whites", + "cranberries", + "coarse sugar", + "low-fat buttermilk", + "salt", + "pure vanilla extract", + "unsalted butter", + "baking powder", + "sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 29549, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "lemon juice", + "mayonaise", + "worcestershire sauce", + "dried oregano", + "red wine vinegar", + "white sugar", + "water", + "garlic" + ] + }, + { + "id": 21981, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "large garlic cloves", + "salt", + "chopped parsley", + "dry white wine", + "crushed red pepper", + "fresh lemon juice", + "lemon", + "purple onion", + "carrots", + "ground black pepper", + "extra-virgin olive oil", + "chickpeas", + "bay leaf" + ] + }, + { + "id": 24701, + "cuisine": "italian", + "ingredients": [ + "cream", + "butternut squash", + "salt", + "fresh parsley", + "spinach", + "olive oil", + "garlic", + "jumbo pasta shells", + "fresh rosemary", + "rosemary", + "butter", + "all-purpose flour", + "brown sugar", + "cooking spray", + "purple onion", + "goat cheese" + ] + }, + { + "id": 42797, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "butter", + "baking powder", + "heavy cream" + ] + }, + { + "id": 27535, + "cuisine": "italian", + "ingredients": [ + "fennel bulb", + "oil", + "olive oil", + "salt", + "gemelli", + "fresh basil", + "cooking spray", + "feta cheese crumbles", + "ground black pepper", + "lemon rind", + "fresh parsley" + ] + }, + { + "id": 16741, + "cuisine": "southern_us", + "ingredients": [ + "water", + "coarse salt", + "cayenne pepper", + "boneless pork shoulder", + "apple cider vinegar", + "paprika", + "coleslaw", + "barbecue sauce", + "worcestershire sauce", + "dark brown sugar", + "hamburger buns", + "vegetable oil", + "cracked black pepper" + ] + }, + { + "id": 38181, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "cooking wine", + "sugar", + "vegetable oil", + "scallions", + "baking powder", + "salt", + "pork belly", + "ginger", + "chinese five-spice powder" + ] + }, + { + "id": 38924, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "garlic cloves", + "prosciutto", + "salt", + "black pepper", + "fat-free chicken broth", + "fresh mint", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 21922, + "cuisine": "jamaican", + "ingredients": [ + "ground black pepper", + "chipotle chile powder", + "ground cloves", + "cayenne pepper", + "allspice", + "ground cinnamon", + "salt", + "white sugar", + "garlic powder", + "dri leav thyme" + ] + }, + { + "id": 24117, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "zucchini", + "chili powder", + "salt", + "dried oregano", + "black pepper", + "olive oil", + "flour tortillas", + "raw cashews", + "asparagus spears", + "fresh cilantro", + "agave nectar", + "portabello mushroom", + "garlic cloves", + "ground cumin", + "water", + "soy milk", + "jalapeno chilies", + "purple onion", + "red bell pepper" + ] + }, + { + "id": 33391, + "cuisine": "chinese", + "ingredients": [ + "Shaoxing wine", + "salt", + "ground white pepper", + "sugar", + "sesame oil", + "oyster sauce", + "snow peas", + "chicken stock", + "chicken breasts", + "oil", + "soy", + "light soy sauce", + "garlic", + "corn starch" + ] + }, + { + "id": 32807, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "salt", + "plantains", + "fresh basil", + "vegetable oil", + "mango", + "grapes", + "large garlic cloves", + "monterey jack", + "tomatoes", + "unsalted butter", + "poblano chiles" + ] + }, + { + "id": 48248, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "red bell pepper", + "yellow corn meal", + "corn husks", + "halibut fillets", + "sugar", + "salt" + ] + }, + { + "id": 11320, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "fat free cream cheese", + "sun-dried tomatoes", + "garlic cloves", + "bread ciabatta", + "roasted red peppers", + "fresh basil leaves", + "black pepper", + "balsamic vinegar", + "boiling water" + ] + }, + { + "id": 47843, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "extra-virgin olive oil", + "loosely packed fresh basil leaves", + "chees fresh mozzarella", + "sea salt" + ] + }, + { + "id": 49002, + "cuisine": "french", + "ingredients": [ + "salt", + "fresh lemon juice", + "strawberries", + "sugar" + ] + }, + { + "id": 24571, + "cuisine": "italian", + "ingredients": [ + "white distilled vinegar", + "large eggs", + "freshly ground pepper", + "olive oil", + "salt", + "fresh rosemary", + "prosciutto", + "vinaigrette", + "sourdough bread", + "sea salt" + ] + }, + { + "id": 28278, + "cuisine": "cajun_creole", + "ingredients": [ + "bread mix", + "pepper", + "diced tomatoes", + "green bell pepper", + "green onions", + "onions", + "crawfish", + "butter", + "eggs", + "shredded cheddar cheese", + "salt" + ] + }, + { + "id": 28265, + "cuisine": "spanish", + "ingredients": [ + "bacon", + "sausage casings", + "medjool date" + ] + }, + { + "id": 45434, + "cuisine": "mexican", + "ingredients": [ + "grilled chicken breasts", + "tomato salsa", + "scallions", + "cumin", + "olive oil", + "cayenne pepper", + "cooked quinoa", + "cheddar cheese", + "garlic", + "red bell pepper", + "chili powder", + "sweet paprika", + "onions" + ] + }, + { + "id": 42495, + "cuisine": "french", + "ingredients": [ + "soup", + "cooking liquid", + "parsley", + "mussels", + "shallots", + "white wine", + "butter" + ] + }, + { + "id": 19855, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "margarine", + "salt", + "nonfat buttermilk", + "all-purpose flour", + "baking powder" + ] + }, + { + "id": 4432, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "salt", + "olive oil", + "whole wheat spaghetti", + "all-purpose flour", + "asparagus", + "butter", + "cream cheese", + "parmigiano reggiano cheese", + "1% low-fat milk", + "garlic cloves" + ] + }, + { + "id": 43060, + "cuisine": "spanish", + "ingredients": [ + "sangria", + "orange", + "club soda" + ] + }, + { + "id": 10912, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "top sirloin steak", + "salt", + "green bell pepper", + "hot pepper sauce", + "garlic", + "chopped cilantro fresh", + "fresh tomatoes", + "flour tortillas", + "purple onion", + "eggs", + "olive oil", + "worcestershire sauce", + "fresh mushrooms" + ] + }, + { + "id": 45896, + "cuisine": "cajun_creole", + "ingredients": [ + "creole mustard", + "lemon juice", + "hot sauce", + "pepper", + "mayonaise" + ] + }, + { + "id": 7385, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "carrots", + "daikon", + "grated orange", + "mirin", + "fresh lime juice", + "kosher salt", + "rice vinegar" + ] + }, + { + "id": 30303, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "fresh ginger", + "stout", + "scallions", + "chicken wings", + "dried thyme", + "scotch bonnet chile", + "mustard powder", + "lime juice", + "ground black pepper", + "garlic", + "chinese five-spice powder", + "brown sugar", + "honey", + "sea salt", + "ground allspice" + ] + }, + { + "id": 46324, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "salt", + "cumin", + "garam masala", + "ghee", + "moong dal", + "garlic cloves", + "green chile", + "shallots", + "basmati rice" + ] + }, + { + "id": 34161, + "cuisine": "greek", + "ingredients": [ + "sugar", + "all purpose unbleached flour", + "olive oil", + "fresh oregano", + "warm water", + "salt", + "eggs", + "dry yeast", + "chopped onion" + ] + }, + { + "id": 1044, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "olive oil", + "mahimahi", + "flat leaf parsley", + "saffron threads", + "sugar", + "cooking spray", + "cilantro leaves", + "chopped cilantro fresh", + "hungarian sweet paprika", + "water", + "lemon", + "garlic cloves", + "ground cumin", + "green olives", + "ground black pepper", + "salt", + "onions" + ] + }, + { + "id": 26563, + "cuisine": "moroccan", + "ingredients": [ + "coconut oil", + "pistachios", + "salt", + "hot curry powder", + "chopped cilantro", + "fresh ginger", + "cinnamon", + "goat cheese", + "red bell pepper", + "naan", + "pepper", + "butternut squash", + "cayenne pepper", + "smoked paprika", + "broth", + "fresh thyme", + "garlic", + "pomegranate", + "coconut milk", + "cumin" + ] + }, + { + "id": 2350, + "cuisine": "chinese", + "ingredients": [ + "water", + "vegetable broth", + "soy sauce", + "green onions", + "firm tofu", + "minced garlic", + "sesame oil", + "sliced mushrooms", + "spinach leaves", + "peeled fresh ginger", + "rice vinegar" + ] + }, + { + "id": 12184, + "cuisine": "moroccan", + "ingredients": [ + "chicken stock", + "olive oil", + "lemon juice", + "tomato paste", + "yellow onion", + "ground cumin", + "ground ginger", + "cilantro leaves", + "carrots", + "red lentils", + "kosher salt", + "garlic cloves" + ] + }, + { + "id": 31067, + "cuisine": "southern_us", + "ingredients": [ + "quickcooking grits", + "cilantro leaves", + "sherry vinegar", + "butter cooking spray", + "canola oil", + "fontina cheese", + "green onions", + "less sodium fat free chicken broth", + "ground black pepper", + "salt" + ] + }, + { + "id": 35716, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "sugar", + "cookie crumbs", + "butter", + "peaches", + "apple juice" + ] + }, + { + "id": 11646, + "cuisine": "mexican", + "ingredients": [ + "ice cubes", + "lime wedges", + "fresh lime juice", + "frozen limeade", + "fresh orange juice", + "lime rind", + "coarse salt", + "grated orange", + "lemon wedge", + "tequila" + ] + }, + { + "id": 13192, + "cuisine": "french", + "ingredients": [ + "honey", + "nuoc mam", + "water", + "garlic", + "jalapeno chilies", + "pork fillet", + "ginger", + "canola oil" + ] + }, + { + "id": 16598, + "cuisine": "jamaican", + "ingredients": [ + "olive oil", + "pineapple", + "brown sugar", + "salt and ground black pepper", + "noodles", + "shredded coconut", + "chili powder", + "boneless skinless chicken breast halves", + "ground cinnamon", + "jerk seasoning mix", + "crushed red pepper flakes" + ] + }, + { + "id": 11351, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "dry milk powder", + "salt", + "bread flour", + "grated parmesan cheese", + "white sugar", + "warm water", + "margarine", + "italian seasoning" + ] + }, + { + "id": 34001, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "poultry seasoning", + "salt", + "cider vinegar", + "chicken" + ] + }, + { + "id": 34273, + "cuisine": "italian", + "ingredients": [ + "lump crab meat", + "finely chopped fresh parsley", + "all-purpose flour", + "scallion greens", + "light cream", + "linguine", + "onions", + "pepper", + "grated parmesan cheese", + "fresh lemon juice", + "bottled clam juice", + "unsalted butter", + "salt" + ] + }, + { + "id": 12919, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "prepared mustard", + "garlic", + "onions", + "water", + "worcestershire sauce", + "freshly ground pepper", + "ketchup", + "vegetable oil", + "chili sauce", + "prepared horseradish", + "paprika", + "fresh lemon juice" + ] + }, + { + "id": 35730, + "cuisine": "irish", + "ingredients": [ + "dried currants", + "granulated sugar", + "reduced-fat sour cream", + "ground cinnamon", + "whole wheat flour", + "baking powder", + "all-purpose flour", + "large egg whites", + "cooking spray", + "salt", + "brown sugar", + "baking soda", + "butter" + ] + }, + { + "id": 29757, + "cuisine": "filipino", + "ingredients": [ + "baking powder", + "cake flour", + "sweetened condensed milk", + "warm water", + "yellow food coloring", + "softened butter", + "cream of tartar", + "vegetable oil", + "salt", + "granulated sugar", + "vanilla extract", + "bread flour" + ] + }, + { + "id": 42580, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "escarole", + "boneless skinless chicken breasts", + "long-grain rice", + "fat free less sodium chicken broth", + "fresh thyme leaves", + "garlic cloves", + "dry white wine", + "chopped onion", + "bay leaf" + ] + }, + { + "id": 11730, + "cuisine": "mexican", + "ingredients": [ + "fresh poblano pepper", + "mango", + "butter", + "flour tortillas", + "cream cheese" + ] + }, + { + "id": 43439, + "cuisine": "italian", + "ingredients": [ + "ground cloves", + "ground black pepper", + "whole milk", + "ground pork", + "pancetta", + "chopped tomatoes", + "lasagna noodles", + "all purpose unbleached flour", + "celery", + "spanish onion", + "unsalted butter", + "ground Italian sausage", + "carrots", + "ground cinnamon", + "lasagne", + "grated parmesan cheese", + "sea salt", + "ground beef" + ] + }, + { + "id": 11725, + "cuisine": "chinese", + "ingredients": [ + "diced tomatoes", + "medium shrimp", + "low sodium chicken broth", + "salt", + "thick-cut bacon", + "green bell pepper", + "garlic", + "onions", + "old bay seasoning", + "long-grain rice" + ] + }, + { + "id": 28711, + "cuisine": "filipino", + "ingredients": [ + "green onions", + "garlic", + "onions", + "water", + "vegetable shortening", + "rice flour", + "soy sauce", + "vegetable oil", + "salt", + "white sugar", + "active dry yeast", + "chicken meat", + "corn starch" + ] + }, + { + "id": 1105, + "cuisine": "italian", + "ingredients": [ + "all purpose unbleached flour", + "parmigiano-reggiano cheese", + "salt", + "idaho potatoes", + "ground white pepper", + "large eggs", + "grated nutmeg" + ] + }, + { + "id": 19892, + "cuisine": "mexican", + "ingredients": [ + "extra lean ground beef", + "Mexican cheese", + "taco seasoning", + "panko", + "onions", + "eggs", + "enchilada sauce" + ] + }, + { + "id": 34926, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "toasted baguette", + "flat leaf parsley", + "butter", + "garlic cloves", + "marsala wine", + "chanterelle", + "grated lemon peel", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 27216, + "cuisine": "irish", + "ingredients": [ + "black pepper", + "bacon", + "onions", + "fresh tomatoes", + "potatoes", + "carrots", + "sausage links", + "vegetable stock", + "fresh parsley", + "tomato purée", + "fresh thyme", + "sea salt" + ] + }, + { + "id": 20642, + "cuisine": "indian", + "ingredients": [ + "chiles", + "green chilies", + "onions", + "crushed red pepper flakes", + "mustard seeds", + "canola oil", + "semolina", + "cumin seed", + "boiling water", + "curry leaves", + "salt", + "cinnamon sticks" + ] + }, + { + "id": 19667, + "cuisine": "french", + "ingredients": [ + "sugar", + "whole milk", + "large egg yolks", + "bittersweet chocolate", + "large egg whites", + "corn starch", + "unsalted butter" + ] + }, + { + "id": 18263, + "cuisine": "italian", + "ingredients": [ + "broccoli rabe", + "garlic", + "large garlic cloves", + "grated parmesan cheese", + "low salt chicken broth", + "italian sausage", + "extra-virgin olive oil" + ] + }, + { + "id": 3089, + "cuisine": "french", + "ingredients": [ + "mayonaise", + "dry white wine", + "onions", + "unsalted butter", + "garlic cloves", + "water", + "dry mustard", + "mussels", + "french fri frozen", + "flat leaf parsley" + ] + }, + { + "id": 3998, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "heavy cream", + "fresh basil leaves", + "pasta", + "grated parmesan cheese", + "garlic", + "pepper", + "extra-virgin olive oil", + "tomatoes", + "butter", + "salt" + ] + }, + { + "id": 17080, + "cuisine": "italian", + "ingredients": [ + "eggs", + "crushed tomatoes", + "cheese", + "bay leaf", + "kosher salt", + "parsley", + "salt", + "oregano", + "bread crumbs", + "olive oil", + "garlic", + "onions", + "pepper", + "basil", + "turkey breast" + ] + }, + { + "id": 41641, + "cuisine": "italian", + "ingredients": [ + "pepper", + "cannellini beans", + "fresh rosemary", + "olive oil", + "striped bass", + "water", + "garlic", + "tomato sauce", + "zucchini", + "onions" + ] + }, + { + "id": 2604, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "salt", + "italian seasoning", + "olive oil", + "shredded mozzarella cheese", + "ground chuck", + "bow-tie pasta", + "garlic powder", + "sour cream" + ] + }, + { + "id": 35409, + "cuisine": "irish", + "ingredients": [ + "sourdough bread", + "hot mustard", + "pumpernickel bread", + "mayonaise", + "shredded sharp cheddar cheese", + "minced onion" + ] + }, + { + "id": 37351, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "Cholula Hot Sauce", + "fresh lime juice", + "chicken stock", + "cotija", + "tortilla chips", + "sugar", + "ground pepper", + "chopped cilantro fresh", + "red chili powder", + "kosher salt", + "ear of corn" + ] + }, + { + "id": 28316, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime juice", + "red bell pepper", + "kosher salt", + "yellow corn", + "ground cumin", + "white onion", + "ground black pepper", + "beef steak", + "bread", + "minced garlic", + "extra-virgin olive oil" + ] + }, + { + "id": 49213, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "basmati rice", + "coriander", + "vegetable stock" + ] + }, + { + "id": 12807, + "cuisine": "french", + "ingredients": [ + "olive oil", + "crème fraîche", + "waxy potatoes", + "kosher salt", + "ground black pepper", + "Reblochon", + "ground nutmeg", + "yellow onion", + "canola oil", + "smoked bacon", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 40866, + "cuisine": "mexican", + "ingredients": [ + "zucchini", + "chipotle peppers", + "garlic", + "sea salt", + "flax seed meal", + "eggs", + "coconut flour" + ] + }, + { + "id": 32716, + "cuisine": "japanese", + "ingredients": [ + "egg yolks", + "sugar", + "green tea powder", + "heavy cream", + "milk" + ] + }, + { + "id": 13437, + "cuisine": "italian", + "ingredients": [ + "broccoli", + "crushed red pepper flakes", + "cavatelli", + "chicken broth", + "garlic cloves", + "extra-virgin olive oil", + "sausage meat" + ] + }, + { + "id": 7229, + "cuisine": "indian", + "ingredients": [ + "warm water", + "mutton", + "green chilies", + "ground cumin", + "chili powder", + "salt", + "oil", + "garam masala", + "garlic", + "ground coriander", + "tomatoes", + "ginger", + "cilantro leaves", + "ground turmeric" + ] + }, + { + "id": 7703, + "cuisine": "mexican", + "ingredients": [ + "zucchini", + "fresh orange juice", + "boiling water", + "fresh cilantro", + "lime wedges", + "salt", + "ground cumin", + "corn kernels", + "bulgur wheat", + "fresh lime juice", + "black beans", + "jalapeno chilies", + "extra-virgin olive oil", + "monterey jack" + ] + }, + { + "id": 46493, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "unsalted butter", + "long-grain rice", + "medium shrimp", + "water", + "heavy cream", + "carrots", + "celery ribs", + "cayenne", + "salt", + "bay leaf", + "pernod", + "chopped fresh chives", + "fresh lemon juice", + "onions" + ] + }, + { + "id": 37209, + "cuisine": "french", + "ingredients": [ + "sugar", + "foie gras terrine", + "white bread", + "unsalted butter", + "water", + "unflavored gelatin", + "sauterne" + ] + }, + { + "id": 23405, + "cuisine": "jamaican", + "ingredients": [ + "black pepper", + "cooking spray", + "ground allspice", + "sugar", + "dried thyme", + "purple onion", + "low sodium soy sauce", + "cider vinegar", + "ground red pepper", + "boneless chicken skinless thigh", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 15457, + "cuisine": "southern_us", + "ingredients": [ + "cream style corn", + "eggs", + "self rising flour", + "minced onion", + "seasoning salt", + "vegetable oil" + ] + }, + { + "id": 23518, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper", + "clams", + "dry white wine", + "grated parmesan cheese", + "fresh parsley", + "minced garlic", + "linguine" + ] + }, + { + "id": 22439, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "carrots", + "salt", + "garlic salt", + "water", + "onions", + "celery ribs", + "long-grain rice", + "chicken" + ] + }, + { + "id": 20572, + "cuisine": "italian", + "ingredients": [ + "pecorino romano cheese", + "part-skim mozzarella cheese", + "sweet italian sausage", + "cremini mushrooms", + "extra-virgin olive oil", + "marinara sauce", + "pizza doughs" + ] + }, + { + "id": 37069, + "cuisine": "french", + "ingredients": [ + "coconut extract", + "sweetened coconut flakes", + "coconut milk", + "sugar", + "maple syrup", + "tofu", + "rum", + "corn starch", + "brown sugar", + "salt" + ] + }, + { + "id": 31094, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "ginger", + "cardamom", + "meat", + "salt", + "onions", + "yellow rock sugar", + "star anise", + "cinnamon sticks", + "clove", + "spices", + "meat bones", + "noodles" + ] + }, + { + "id": 15448, + "cuisine": "japanese", + "ingredients": [ + "white rice", + "water" + ] + }, + { + "id": 35703, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "chicken breasts", + "garlic", + "pepper", + "parsley", + "oil", + "marsala wine", + "shallots", + "salt", + "mushrooms", + "butter", + "lemon juice" + ] + }, + { + "id": 45323, + "cuisine": "southern_us", + "ingredients": [ + "water", + "vegetable oil", + "white cake mix", + "sour cream", + "large eggs" + ] + }, + { + "id": 24056, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "butter", + "cream style corn", + "celery", + "ground pepper", + "all-purpose flour", + "chicken broth", + "ground nutmeg", + "onions" + ] + }, + { + "id": 26268, + "cuisine": "cajun_creole", + "ingredients": [ + "potatoes", + "crawfish", + "ear of corn", + "garlic bulb", + "lemon", + "Sriracha" + ] + }, + { + "id": 35090, + "cuisine": "spanish", + "ingredients": [ + "slivered almonds", + "olive oil", + "extra-virgin olive oil", + "roast red peppers, drain", + "kosher salt", + "ground black pepper", + "hot smoked paprika", + "onions", + "hazelnuts", + "sherry vinegar", + "garlic", + "roasted tomatoes", + "bread", + "orange", + "red pepper flakes", + "juice", + "chicken" + ] + }, + { + "id": 21074, + "cuisine": "southern_us", + "ingredients": [ + "sweet potatoes", + "white sugar", + "ground cinnamon", + "vanilla extract", + "butter", + "ground nutmeg", + "salt" + ] + }, + { + "id": 32184, + "cuisine": "indian", + "ingredients": [ + "chat masala", + "yoghurt", + "asafetida", + "red chili powder", + "baking soda", + "all-purpose flour", + "caraway seeds", + "olive oil", + "salt", + "garlic paste", + "coriander powder", + "gram flour" + ] + }, + { + "id": 24834, + "cuisine": "french", + "ingredients": [ + "baking powder", + "sugar", + "all-purpose flour", + "eggs", + "lemon", + "unsalted butter", + "lemon juice" + ] + }, + { + "id": 9322, + "cuisine": "southern_us", + "ingredients": [ + "evaporated milk", + "vanilla extract", + "light corn syrup", + "peanuts", + "red food coloring", + "butter", + "white sugar" + ] + }, + { + "id": 42100, + "cuisine": "french", + "ingredients": [ + "shallots", + "boiling potatoes", + "olive oil", + "crème fraîche", + "water", + "salt", + "peas" + ] + }, + { + "id": 25177, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "roasted peanuts", + "deveined shrimp", + "soy sauce", + "english cucumber", + "rice vinegar" + ] + }, + { + "id": 35033, + "cuisine": "mexican", + "ingredients": [ + "ground pepper", + "coarse salt", + "sour cream", + "iceberg lettuce", + "guacamole", + "tomatoes with juice", + "ground beef", + "canola oil", + "jalapeno chilies", + "cilantro", + "corn tortillas", + "monterey jack", + "pico de gallo", + "chili powder", + "garlic", + "onions", + "ground cumin" + ] + }, + { + "id": 20422, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "Sugar in the Raw", + "red grape", + "silver" + ] + }, + { + "id": 30978, + "cuisine": "vietnamese", + "ingredients": [ + "romaine lettuce", + "fresh cilantro", + "rice vinegar", + "fresh basil", + "black pepper", + "pork loin", + "cinnamon sticks", + "fish sauce", + "water", + "vegetable oil", + "sliced green onions", + "sugar", + "cooking spray", + "low salt chicken broth" + ] + }, + { + "id": 33450, + "cuisine": "mexican", + "ingredients": [ + "fontina cheese", + "bacon", + "flour tortillas", + "sour cream", + "eggs", + "salsa", + "green onions" + ] + }, + { + "id": 7898, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "lemon zest", + "flat leaf parsley", + "dried porcini mushrooms", + "dry white wine", + "cremini mushrooms", + "grated parmesan cheese", + "onions", + "arborio rice", + "unsalted butter", + "hot water" + ] + }, + { + "id": 45207, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "kosher salt", + "chicken breasts", + "diced tomatoes", + "cayenne pepper", + "coriander", + "clove", + "plain yogurt", + "ground black pepper", + "heavy cream", + "garlic", + "onions", + "sugar", + "garam masala", + "butter", + "ginger", + "cardamom", + "cumin", + "nutmeg", + "fresh ginger", + "cinnamon", + "cilantro", + "ground coriander", + "basmati rice" + ] + }, + { + "id": 44887, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "water", + "crushed garlic", + "paneer", + "lemon juice", + "sugar", + "garam masala", + "ginger", + "ground coriander", + "tumeric", + "light cream", + "butter", + "salt", + "ground cumin", + "red chili peppers", + "yoghurt", + "kasuri methi", + "oil" + ] + }, + { + "id": 1662, + "cuisine": "moroccan", + "ingredients": [ + "fresh lemon juice", + "cinnamon", + "liqueur", + "vodka", + "fresh mint", + "pineapple juice", + "ice" + ] + }, + { + "id": 31833, + "cuisine": "jamaican", + "ingredients": [ + "cooked bacon", + "mozzarella cheese", + "jerk sauce", + "white onion", + "yellow bell pepper", + "cooked chicken", + "red bell pepper" + ] + }, + { + "id": 32309, + "cuisine": "korean", + "ingredients": [ + "water", + "ground black pepper", + "salt", + "fresh ginger", + "spring onions", + "chopped garlic", + "light soy sauce", + "oxtails", + "gingerroot", + "sesame seeds", + "sesame oil" + ] + }, + { + "id": 18288, + "cuisine": "brazilian", + "ingredients": [ + "black pepper", + "garlic", + "chicken broth", + "bacon slices", + "short rib", + "white vinegar", + "black beans", + "salt", + "boneless pork shoulder", + "orange slices", + "onions" + ] + }, + { + "id": 632, + "cuisine": "thai", + "ingredients": [ + "sugar", + "shredded carrots", + "salt", + "creamy peanut butter", + "red bell pepper", + "honey", + "napa cabbage", + "rice vinegar", + "scallions", + "chopped cilantro fresh", + "soy sauce", + "vegetable oil", + "cilantro leaves", + "english cucumber", + "fresh lime juice", + "fresh ginger", + "crushed red pepper flakes", + "edamame", + "garlic cloves" + ] + }, + { + "id": 25081, + "cuisine": "indian", + "ingredients": [ + "plain low-fat yogurt", + "coarse salt", + "ground pepper", + "chopped cilantro fresh", + "granny smith apples", + "garlic cloves", + "ground ginger", + "chicken breast halves", + "ground turmeric" + ] + }, + { + "id": 25742, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "garam masala", + "french fried onions", + "tomatoes with juice", + "cumin seed", + "pearl onions", + "jalapeno chilies", + "paprika", + "lamb shoulder", + "cooked white rice", + "green cardamom pods", + "coriander seeds", + "dried mint flakes", + "ginger", + "yellow onion", + "ground turmeric", + "kosher salt", + "unsalted butter", + "cinnamon", + "garlic", + "greek yogurt" + ] + }, + { + "id": 20648, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "fresh chives", + "fennel bulb", + "butter", + "garlic cloves", + "onions", + "black peppercorns", + "verjus", + "leeks", + "pinot noir", + "flat leaf parsley", + "parsley sprigs", + "parmesan cheese", + "bay leaves", + "beef broth", + "thyme sprigs", + "tomato paste", + "water", + "minced onion", + "garlic", + "low salt chicken broth", + "carnaroli rice" + ] + }, + { + "id": 28821, + "cuisine": "italian", + "ingredients": [ + "tilapia fillets", + "crouton italian season", + "hellmann' or best food real mayonnais", + "Wish-Bone Italian Dressing", + "tomatoes" + ] + }, + { + "id": 39650, + "cuisine": "italian", + "ingredients": [ + "white onion", + "lean ground beef", + "worcestershire sauce", + "salt", + "garlic and herb seasoning", + "dried basil", + "condensed tomato soup", + "extra-virgin olive oil", + "spaghetti", + "minced garlic", + "cajun seasoning", + "diced tomatoes", + "lemon juice", + "black pepper", + "chili powder", + "portabello mushroom", + "vanilla extract" + ] + }, + { + "id": 26070, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "ground black pepper", + "diced tomatoes", + "fresh mushrooms", + "dried oregano", + "olive oil", + "zucchini", + "shredded low-fat mozzarella cheese", + "ground turkey", + "tomato paste", + "low-fat cottage cheese", + "egg whites", + "yellow onion", + "flat leaf parsley", + "dried basil", + "low-fat parmesan cheese", + "garlic", + "oven-ready lasagna noodles" + ] + }, + { + "id": 21932, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "orange bell pepper", + "flax seeds", + "black beans", + "quinoa", + "sea salt", + "pepper", + "jalapeno chilies", + "cilantro", + "avocado", + "lime", + "sweet corn kernels", + "purple onion" + ] + }, + { + "id": 45379, + "cuisine": "korean", + "ingredients": [ + "sugar", + "roasted sesame seeds", + "vegetable oil", + "pepper", + "vinegar", + "scallions", + "soy sauce", + "zucchini", + "salt", + "asian eggplants", + "minced garlic", + "sesame oil" + ] + }, + { + "id": 31086, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "branzino", + "lemon", + "flat leaf parsley", + "bay leaves", + "fine sea salt", + "new potatoes", + "turbot" + ] + }, + { + "id": 46598, + "cuisine": "irish", + "ingredients": [ + "black pepper", + "extra sharp white cheddar cheese", + "salt", + "green cabbage", + "minced garlic", + "vegetable oil", + "boiling potatoes", + "bread crumb fresh", + "unsalted butter", + "onions", + "horseradish", + "water", + "buttermilk" + ] + }, + { + "id": 45183, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "crema mexican", + "dried guajillo chiles", + "olive oil", + "pineapple juice", + "dried oregano", + "kosher salt", + "cilantro leaves", + "pork shoulder", + "bread rolls", + "habanero pepper", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 22067, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "garlic cloves", + "sugar", + "cilantro", + "canola oil", + "salmon fillets", + "fresh ginger", + "oyster sauce", + "black pepper", + "scallions" + ] + }, + { + "id": 20993, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "chicken breasts", + "cheese" + ] + }, + { + "id": 31166, + "cuisine": "indian", + "ingredients": [ + "minced ginger", + "potatoes", + "carrots", + "frozen peas", + "garam masala", + "garlic", + "coconut milk", + "cumin", + "milk", + "pumpkin", + "mustard seeds", + "puff pastry", + "tumeric", + "zucchini", + "purple onion", + "coriander" + ] + }, + { + "id": 42301, + "cuisine": "moroccan", + "ingredients": [ + "water", + "dried apricot", + "cilantro sprigs", + "preserves", + "chicken", + "tumeric", + "cayenne", + "lemon wedge", + "sweet paprika", + "cinnamon sticks", + "pinenuts", + "unsalted butter", + "ginger", + "garlic cloves", + "chopped cilantro", + "saffron threads", + "olive oil", + "shallots", + "extra-virgin olive oil", + "thyme" + ] + }, + { + "id": 23972, + "cuisine": "greek", + "ingredients": [ + "plain yogurt", + "red pepper", + "feta cheese crumbles", + "cayenne", + "salt", + "ground turmeric", + "olive oil", + "garlic", + "hummus", + "round loaf", + "calamata olives", + "lemon juice" + ] + }, + { + "id": 21032, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "fresh basil leaves", + "eggplant", + "refrigerated pizza dough", + "marinara sauce", + "plum tomatoes", + "part-skim mozzarella cheese", + "part-skim ricotta cheese" + ] + }, + { + "id": 43423, + "cuisine": "italian", + "ingredients": [ + "dark chocolate", + "cooking spray", + "all-purpose flour", + "baking soda", + "anise", + "large eggs", + "salt", + "sugar", + "butter" + ] + }, + { + "id": 13143, + "cuisine": "french", + "ingredients": [ + "water", + "egg yolks", + "white sugar", + "active dry yeast", + "all-purpose flour", + "milk", + "salt", + "boiling water", + "sourdough starter", + "olive oil", + "cornmeal" + ] + }, + { + "id": 899, + "cuisine": "greek", + "ingredients": [ + "eggs", + "dill", + "ground lamb", + "ground turkey breast", + "cooked white rice", + "grape leaves", + "chopped parsley", + "lemon", + "allspice" + ] + }, + { + "id": 23998, + "cuisine": "greek", + "ingredients": [ + "green onions", + "fresh mint", + "cod fillets", + "greek style plain yogurt", + "ground black pepper", + "sea salt", + "dried oregano", + "cooking oil", + "english cucumber" + ] + }, + { + "id": 46877, + "cuisine": "cajun_creole", + "ingredients": [ + "whole grain mustard", + "hot sauce", + "green onions", + "chopped garlic", + "mayonaise", + "salt", + "ground black pepper", + "fresh parsley" + ] + }, + { + "id": 15128, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "palm sugar", + "large garlic cloves", + "asian fish sauce", + "lemongrass", + "cilantro root", + "gingerroot", + "sweet chili sauce", + "ground black pepper", + "salt", + "curry powder", + "shallots", + "cornish hens" + ] + }, + { + "id": 29785, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "mustard powder", + "olive oil", + "anchovy paste", + "sour cream", + "worcestershire sauce", + "lemon juice", + "grated parmesan cheese", + "garlic" + ] + }, + { + "id": 12960, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "ground chipotle chile pepper", + "honey", + "onion powder", + "cilantro leaves", + "chipotle peppers", + "green bell pepper", + "pepper", + "flour", + "purple onion", + "corn starch", + "chipotle sauce", + "eggs", + "black pepper", + "garlic powder", + "red wine vinegar", + "garlic cloves", + "adobo sauce", + "bread", + "sugar", + "water", + "chicken breasts", + "salt", + "smoked paprika", + "ground cumin" + ] + }, + { + "id": 5312, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "black olives", + "red enchilada sauce", + "minced garlic", + "jalapeno chilies", + "sharp cheddar cheese", + "ground beef", + "tomatoes", + "tortillas", + "salsa", + "sour cream", + "water", + "green onions", + "taco seasoning", + "onions" + ] + }, + { + "id": 33174, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "vegetable oil", + "onions", + "scallion greens", + "cayenne", + "salt", + "large shrimp", + "celery ribs", + "water", + "large garlic cloves", + "long grain white rice", + "tomatoes", + "unsalted butter", + "juice" + ] + }, + { + "id": 41043, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "yellow squash", + "red pepper flakes", + "rice", + "celery", + "sweet onion", + "butter", + "garlic", + "chopped parsley", + "large shrimp", + "white wine", + "herbs", + "sea salt", + "smoked paprika", + "roasted tomatoes", + "tumeric", + "olive oil", + "fish stock", + "thyme", + "bay leaf" + ] + }, + { + "id": 48340, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "water", + "tomatoes", + "onions", + "fresh basil", + "chopped garlic", + "tomato paste", + "olive oil" + ] + }, + { + "id": 39935, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "olive oil", + "garlic", + "diced onions", + "cooked brown rice", + "boneless skinless chicken breasts", + "olive oil cooking spray", + "Louisiana Hot Sauce", + "bay leaves", + "okra", + "grape tomatoes", + "dried thyme", + "sea salt", + "fresh parsley" + ] + }, + { + "id": 2816, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "green onions", + "hass avocado", + "tomatoes", + "hot pepper sauce", + "fresh lime juice", + "ground black pepper", + "worcestershire sauce", + "chopped cilantro fresh", + "kosher salt", + "wasabi powder", + "onions" + ] + }, + { + "id": 6560, + "cuisine": "indian", + "ingredients": [ + "roasted cashews", + "peeled fresh ginger", + "ground coriander", + "chopped cilantro fresh", + "unsweetened coconut milk", + "zucchini", + "salt", + "onions", + "chiles", + "brown mustard seeds", + "cumin seed", + "curry powder", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 36910, + "cuisine": "southern_us", + "ingredients": [ + "all purpose unbleached flour", + "unsalted butter", + "salt", + "baking soda", + "buttermilk", + "baking powder" + ] + }, + { + "id": 34642, + "cuisine": "vietnamese", + "ingredients": [ + "curry powder", + "vietnamese fish sauce", + "chopped fresh herbs", + "baby bok choy", + "shallots", + "firm tofu", + "canola oil", + "light brown sugar", + "palm sugar", + "salt", + "bamboo shoots", + "fresh curry leaves", + "large garlic cloves", + "coconut milk" + ] + }, + { + "id": 5981, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "lemon", + "white sugar", + "lettuce leaves", + "garlic", + "chile sauce", + "water", + "diced tomatoes", + "long grain white rice", + "vegetable oil", + "ground beef", + "ground cumin" + ] + }, + { + "id": 14399, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "pistachios", + "chopped celery", + "chopped parsley", + "chopped garlic", + "brandy", + "veal", + "bacon", + "ham", + "pork butt", + "cayenne", + "bay leaves", + "salt", + "onions", + "dried thyme", + "egg whites", + "port", + "chicken livers", + "dried oregano" + ] + }, + { + "id": 26623, + "cuisine": "mexican", + "ingredients": [ + "chuck roast", + "chili powder", + "onions", + "tomato paste", + "agave nectar", + "red pepper", + "dried oregano", + "Sriracha", + "onion powder", + "arugula", + "garlic powder", + "beef stock", + "ground coriander", + "cumin" + ] + }, + { + "id": 1077, + "cuisine": "indian", + "ingredients": [ + "dried lentils", + "ground nutmeg", + "green peas", + "ground coriander", + "ground cumin", + "water", + "butter", + "salt", + "red bell pepper", + "jasmine rice", + "potatoes", + "garlic", + "ground cardamom", + "fresh ginger root", + "raisins", + "chopped onion", + "canola oil" + ] + }, + { + "id": 35940, + "cuisine": "brazilian", + "ingredients": [ + "water", + "baking powder", + "dried shrimp", + "black-eyed peas", + "salt", + "fresh ginger", + "vegetable oil", + "onions", + "pepper", + "hot pepper sauce", + "garlic cloves" + ] + }, + { + "id": 426, + "cuisine": "mexican", + "ingredients": [ + "jumbo pasta shells", + "monterey jack", + "taco sauce", + "cream cheese", + "salsa", + "lean ground beef", + "taco seasoning" + ] + }, + { + "id": 2868, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "pineapple juice", + "light soy sauce", + "sesame seeds", + "rice", + "honey", + "green onions", + "corn starch", + "olive oil", + "chicken breasts" + ] + }, + { + "id": 4929, + "cuisine": "french", + "ingredients": [ + "chopped fresh thyme", + "salt", + "ground black pepper", + "butter", + "garlic cloves", + "half & half", + "whipping cream", + "frozen artichoke hearts", + "russet potatoes", + "chopped onion" + ] + }, + { + "id": 43931, + "cuisine": "french", + "ingredients": [ + "olive oil", + "yukon gold potatoes", + "garlic cloves", + "cooking spray", + "1% low-fat milk", + "black pepper", + "leeks", + "salt", + "fresh parmesan cheese", + "diced tomatoes" + ] + }, + { + "id": 38049, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "chicken breast halves", + "salt", + "chicken stock", + "basil leaves", + "large garlic cloves", + "unsalted butter", + "shallots", + "freshly ground pepper", + "olive oil", + "dry white wine", + "heavy cream" + ] + }, + { + "id": 23466, + "cuisine": "french", + "ingredients": [ + "sugar", + "peaches", + "toasted pecans", + "large egg whites", + "raspberries", + "lemon juice", + "water", + "blackberries" + ] + }, + { + "id": 34298, + "cuisine": "greek", + "ingredients": [ + "water", + "greek style plain yogurt", + "grape tomatoes", + "ground black pepper", + "medium shrimp", + "olive oil", + "couscous", + "pitted kalamata olives", + "salt", + "sliced green onions" + ] + }, + { + "id": 42809, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "eggs", + "reduced sodium soy sauce", + "chicken broth", + "lipton pure leaf unsweeten iced tea" + ] + }, + { + "id": 25270, + "cuisine": "mexican", + "ingredients": [ + "anise seed", + "baking powder", + "all-purpose flour", + "ground cloves", + "vanilla extract", + "rum", + "salt", + "eggs", + "butter", + "white sugar" + ] + }, + { + "id": 45608, + "cuisine": "vietnamese", + "ingredients": [ + "daikon", + "fine sea salt", + "garlic cloves", + "vegan mayonnaise", + "buns", + "extra-virgin olive oil", + "cilantro leaves", + "carrots", + "white vinegar", + "tempeh", + "tamari soy sauce", + "fresh lemon juice", + "greens", + "apple cider vinegar", + "thai chile", + "cane sugar", + "cucumber" + ] + }, + { + "id": 29232, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "orange liqueur", + "sugar", + "fresh lemon juice", + "teas", + "tequila", + "sauce" + ] + }, + { + "id": 29952, + "cuisine": "italian", + "ingredients": [ + "instant yeast", + "salt", + "all purpose unbleached flour", + "water" + ] + }, + { + "id": 5559, + "cuisine": "southern_us", + "ingredients": [ + "chiles", + "extra-virgin olive oil", + "guanciale", + "pepper", + "dried chile", + "collard greens", + "bacon", + "rib", + "kosher salt", + "garlic cloves" + ] + }, + { + "id": 12657, + "cuisine": "indian", + "ingredients": [ + "yellow mustard seeds", + "vegetable oil", + "cardamom pods", + "ground black pepper", + "salt", + "cinnamon sticks", + "coriander seeds", + "large garlic cloves", + "cumin seed", + "tumeric", + "minced onion", + "cayenne pepper", + "baby back ribs" + ] + }, + { + "id": 24664, + "cuisine": "italian", + "ingredients": [ + "fresh sage", + "parmesan cheese", + "baby spinach", + "onions", + "kosher salt", + "half & half", + "red pepper flakes", + "black pepper", + "low sodium chicken broth", + "potato gnocchi", + "olive oil", + "butternut squash", + "garlic" + ] + }, + { + "id": 3520, + "cuisine": "cajun_creole", + "ingredients": [ + "onion soup", + "rotelle", + "celery", + "green onions", + "uncle bens", + "garlic powder", + "butter", + "green bell pepper", + "meat", + "beef broth" + ] + }, + { + "id": 27331, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "crushed tomatoes", + "raisins", + "all-purpose flour", + "ground cumin", + "boneless chicken skinless thigh", + "olive oil", + "pitted olives", + "couscous", + "ground paprika", + "fresh cilantro", + "garlic", + "ground coriander", + "water", + "garbanzo beans", + "salt", + "onions" + ] + }, + { + "id": 21901, + "cuisine": "spanish", + "ingredients": [ + "brandy", + "lemon", + "orange juice", + "lime", + "dry red wine", + "white sugar", + "orange", + "carbonated water", + "lemon juice", + "frozen lemonade concentrate", + "triple sec", + "cocktail cherries" + ] + }, + { + "id": 42539, + "cuisine": "cajun_creole", + "ingredients": [ + "pasta sauce", + "butter", + "garlic", + "uncook medium shrimp, peel and devein", + "green bell pepper, slice", + "crushed red pepper flakes", + "sweet italian sausage", + "onions", + "olive oil", + "red wine", + "salt", + "red bell pepper", + "shallots", + "yellow bell pepper", + "creole seasoning", + "spaghetti" + ] + }, + { + "id": 35293, + "cuisine": "french", + "ingredients": [ + "egg whites", + "cocoa powder", + "sugar", + "egg yolks", + "flour", + "bittersweet chocolate", + "milk", + "butter" + ] + }, + { + "id": 49181, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "mung bean sprouts", + "fresh basil", + "flank steak", + "wide rice noodles", + "reduced sodium soy sauce", + "canola oil", + "reduced sodium chicken broth", + "bok choy" + ] + }, + { + "id": 7697, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "green chile", + "salt", + "tomatoes", + "dry mustard", + "lime juice" + ] + }, + { + "id": 6114, + "cuisine": "british", + "ingredients": [ + "lemon", + "sugar", + "nutmeg", + "bourbon whiskey" + ] + }, + { + "id": 10986, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "vanilla extract", + "white sugar", + "milk", + "all-purpose flour", + "unbaked pie crusts", + "salt", + "light brown sugar", + "egg yolks", + "margarine" + ] + }, + { + "id": 6940, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "vegetable oil", + "chopped cilantro fresh", + "hominy", + "tomatillos", + "ground pepper", + "coarse salt", + "chicken", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 14298, + "cuisine": "italian", + "ingredients": [ + "sliced black olives", + "purple onion", + "green bell pepper", + "extra-virgin olive oil", + "fresh marjoram", + "cheese", + "refrigerated pizza dough", + "garlic cloves" + ] + }, + { + "id": 48246, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "diced tomatoes", + "flat leaf parsley", + "frozen peas", + "olive oil", + "garlic cloves", + "onions", + "chicken", + "chicken broth", + "paprika", + "bay leaf", + "long grain white rice", + "dry white wine", + "red bell pepper", + "pimento stuffed green olives" + ] + }, + { + "id": 31167, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "olive oil", + "garlic", + "black pepper", + "fresh cilantro", + "portabello mushroom", + "ground cumin", + "soy sauce", + "orange", + "chili powder", + "dried oregano", + "white onion", + "lime", + "paprika" + ] + }, + { + "id": 43655, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "shiitake", + "garlic", + "fresh basil leaves", + "water", + "green onions", + "coconut milk", + "jasmine rice", + "fresh ginger root", + "rice vinegar", + "boneless skinless chicken breast halves", + "fish sauce", + "olive oil", + "red pepper flakes", + "onions" + ] + }, + { + "id": 42820, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "yukon gold potatoes", + "herbs", + "olive oil", + "yellow onion", + "aioli" + ] + }, + { + "id": 36474, + "cuisine": "mexican", + "ingredients": [ + "ragu old world style pasta sauc", + "ditalini pasta", + "chipotles in adobo", + "black beans", + "chees fresco queso", + "chopped cilantro fresh", + "boneless chicken skinless thigh", + "vegetable oil", + "onions", + "green bell pepper, slice", + "garlic" + ] + }, + { + "id": 3227, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "olive oil", + "hot Italian sausages", + "mussels", + "dry white wine", + "frozen peas", + "clams", + "medium shrimp uncook", + "onions", + "arborio rice", + "clam juice", + "plum tomatoes" + ] + }, + { + "id": 20486, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "polenta", + "pinenuts", + "pesto sauce", + "shredded mozzarella cheese" + ] + }, + { + "id": 43775, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "whole wheat tortillas", + "scallions", + "tomatoes", + "garlic powder", + "purple onion", + "large shrimp", + "lime", + "cilantro", + "hass avocado", + "cheddar cheese", + "cooking spray", + "salt", + "cumin" + ] + }, + { + "id": 40563, + "cuisine": "korean", + "ingredients": [ + "sliced meat", + "scallions", + "cooked rice", + "meat", + "pepper", + "salt", + "beef", + "glass noodles" + ] + }, + { + "id": 30240, + "cuisine": "vietnamese", + "ingredients": [ + "hearts of palm", + "soba noodles", + "marinade", + "prawns", + "fresh herbs", + "maui onion", + "heirloom tomatoes" + ] + }, + { + "id": 24022, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "all-purpose flour", + "active dry yeast", + "buttermilk", + "water", + "butter", + "shortening", + "baking soda", + "salt" + ] + }, + { + "id": 18507, + "cuisine": "mexican", + "ingredients": [ + "chile pepper", + "salt", + "linguine", + "heavy whipping cream", + "butter", + "shredded mozzarella cheese", + "ground black pepper", + "garlic", + "onions" + ] + }, + { + "id": 13241, + "cuisine": "irish", + "ingredients": [ + "kosher salt", + "irish oats", + "clove", + "1% low-fat milk", + "dried apricot", + "firmly packed brown sugar", + "cinnamon sticks" + ] + }, + { + "id": 36946, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "diced tomatoes", + "shrimp", + "cooked rice", + "green onions", + "garlic cloves", + "roux", + "chicken broth", + "file powder", + "okra", + "onions", + "lump crab meat", + "chopped celery", + "fresh parsley" + ] + }, + { + "id": 37679, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "cooking spray", + "sweet paprika", + "onions", + "tomato paste", + "garam masala", + "paprika", + "garlic cloves", + "ground cumin", + "fresh ginger", + "lemon", + "ground coriander", + "ground turmeric", + "boneless chicken skinless thigh", + "cayenne", + "salt", + "lemon juice" + ] + }, + { + "id": 7869, + "cuisine": "mexican", + "ingredients": [ + "onion powder", + "cumin", + "garlic powder", + "salt", + "sugar", + "paprika", + "chili powder", + "oregano" + ] + }, + { + "id": 10398, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "water", + "sea salt", + "cane sugar", + "red bell pepper", + "coconut oil", + "extra firm tofu", + "ginger", + "cumin seed", + "coconut milk", + "tumeric", + "potatoes", + "cayenne pepper", + "garlic cloves", + "onions", + "ground cloves", + "sliced carrots", + "peanut butter", + "ground cardamom" + ] + }, + { + "id": 37055, + "cuisine": "irish", + "ingredients": [ + "black pepper", + "bacon", + "thyme", + "leeks", + "banger", + "allspice", + "potatoes", + "garlic", + "onions", + "chicken stock", + "bay leaves", + "carrots" + ] + }, + { + "id": 27961, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "fresh thyme", + "sea salt", + "creole seasoning", + "chicken thighs", + "crushed tomatoes", + "parsley", + "yellow onion", + "long-grain rice", + "dried porcini mushrooms", + "mushrooms", + "garlic", + "scallions", + "serrano chile", + "fresh bay leaves", + "grapeseed oil", + "fresh oregano", + "celery" + ] + }, + { + "id": 41852, + "cuisine": "russian", + "ingredients": [ + "sweetened condensed milk", + "sugar", + "butter" + ] + }, + { + "id": 48542, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "salt", + "red bell pepper", + "green bell pepper", + "Shaoxing wine", + "corn starch", + "cabbage", + "sugar", + "sesame oil", + "ground white pepper", + "egg whites", + "peanut oil", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 5304, + "cuisine": "vietnamese", + "ingredients": [ + "eggs", + "butter", + "corn starch", + "black pepper", + "salt", + "canola oil", + "sugar", + "garlic", + "medium shrimp", + "white bread", + "water", + "scallions" + ] + }, + { + "id": 19182, + "cuisine": "french", + "ingredients": [ + "sugar", + "radishes", + "yellow bell pepper", + "red bell pepper", + "cherry tomatoes", + "Tabasco Pepper Sauce", + "salt", + "golden zucchini", + "mayonaise", + "asparagus", + "button mushrooms", + "garlic cloves", + "ground black pepper", + "lemon", + "baby carrots", + "chopped fresh herbs" + ] + }, + { + "id": 1917, + "cuisine": "irish", + "ingredients": [ + "milk", + "all-purpose flour", + "pepper", + "butter", + "onions", + "water", + "salt", + "Irish Red ale", + "yukon gold potatoes", + "sausages" + ] + }, + { + "id": 43457, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "bell pepper", + "vegetable oil", + "salt", + "rib", + "dried thyme", + "seeds", + "garlic", + "sausages", + "dried oregano", + "black pepper", + "green onions", + "paprika", + "yellow onion", + "pork shoulder", + "cayenne", + "parsley", + "feet", + "chicken livers" + ] + }, + { + "id": 32290, + "cuisine": "french", + "ingredients": [ + "red wine vinegar", + "garlic cloves", + "capers", + "kalamata", + "olive oil", + "freshly ground pepper", + "bread", + "sea salt" + ] + }, + { + "id": 39442, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "extra-virgin olive oil", + "dijon mustard", + "garlic cloves", + "Belgian endive", + "red wine vinegar", + "kosher salt", + "anchovy fillets" + ] + }, + { + "id": 19299, + "cuisine": "japanese", + "ingredients": [ + "extra firm tofu", + "large garlic cloves", + "red bell pepper", + "peeled fresh ginger", + "cilantro sprigs", + "low sodium soy sauce", + "sesame oil", + "peanut oil", + "water", + "hot pepper", + "scallions" + ] + }, + { + "id": 29189, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "frozen corn", + "boneless skinless chicken breasts", + "flour tortillas", + "chunky salsa", + "black beans", + "chili powder" + ] + }, + { + "id": 35721, + "cuisine": "mexican", + "ingredients": [ + "roma tomatoes", + "sour cream", + "cheddar cheese", + "salsa", + "chopped cilantro fresh", + "guacamole", + "ripe olives", + "refried beans", + "tortilla chips" + ] + }, + { + "id": 39773, + "cuisine": "filipino", + "ingredients": [ + "green bell pepper", + "ground black pepper", + "sprite", + "garlic cloves", + "onions", + "soy sauce", + "pork tenderloin", + "raisins", + "carrots", + "romano cheese", + "bay leaves", + "liver", + "red bell pepper", + "tomato sauce", + "potatoes", + "lemon", + "lemon juice" + ] + }, + { + "id": 25834, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "bouillon cube", + "pearl barley", + "water", + "cannellini beans", + "black pepper", + "finely chopped onion", + "escarole", + "olive oil", + "salt" + ] + }, + { + "id": 4512, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "jalapeno chilies", + "sour cream", + "chopped tomatoes", + "chili sauce", + "refried beans", + "cilantro leaves", + "shredded Monterey Jack cheese", + "chiles", + "sliced black olives", + "tortilla chips" + ] + }, + { + "id": 36942, + "cuisine": "indian", + "ingredients": [ + "water", + "bell pepper", + "ground red pepper", + "cumin seed", + "ground cinnamon", + "fresh ginger root", + "bay leaves", + "okra", + "coconut milk", + "tomatoes", + "olive oil", + "jalapeno chilies", + "salt", + "ground cardamom", + "minced garlic", + "ground black pepper", + "golden raisins", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 31654, + "cuisine": "spanish", + "ingredients": [ + "salt", + "large egg yolks", + "corn starch", + "sugar", + "lemon rind", + "whole milk", + "cinnamon sticks" + ] + }, + { + "id": 34867, + "cuisine": "french", + "ingredients": [ + "semisweet chocolate", + "Grand Marnier", + "large eggs", + "unsalted butter", + "heavy cream", + "sugar", + "chocolate shavings" + ] + }, + { + "id": 23624, + "cuisine": "british", + "ingredients": [ + "cold water", + "ale", + "corn starch", + "water", + "cubed potatoes", + "lard", + "pepper", + "salt", + "cubed beef", + "turnips", + "frozen pastry puff sheets", + "carrots", + "onions" + ] + }, + { + "id": 19214, + "cuisine": "mexican", + "ingredients": [ + "dill pickles", + "hellmann' or best food light mayonnais", + "swiss cheese", + "chipotles in adobo", + "cooked ham", + "Italian bread", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 16021, + "cuisine": "french", + "ingredients": [ + "sugar", + "strawberries", + "vanilla extract", + "large eggs", + "fresh lemon juice", + "1% low-fat milk" + ] + }, + { + "id": 37400, + "cuisine": "italian", + "ingredients": [ + "pesto", + "cooking oil", + "garlic", + "crushed tomatoes", + "ziti", + "bay leaf", + "mozzarella cheese", + "grated parmesan cheese", + "salt", + "ground black pepper", + "ricotta cheese", + "onions" + ] + }, + { + "id": 33531, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "fresh green bean", + "pepper", + "garlic powder", + "dried oregano", + "seasoned bread crumbs", + "olive oil", + "salt", + "water", + "grated parmesan cheese" + ] + }, + { + "id": 1810, + "cuisine": "indian", + "ingredients": [ + "nonfat dry milk powder", + "white sugar", + "water", + "cumin seed", + "star anise", + "coffee granules", + "cinnamon sticks" + ] + }, + { + "id": 12050, + "cuisine": "southern_us", + "ingredients": [ + "soft-wheat flour", + "butter", + "sugar", + "baking powder", + "shortening", + "buttermilk" + ] + }, + { + "id": 21236, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "granulated sugar", + "ketchup", + "pineapple juice", + "soy sauce", + "apple cider vinegar", + "water", + "corn starch" + ] + }, + { + "id": 37439, + "cuisine": "southern_us", + "ingredients": [ + "water", + "chopped onion", + "one third less sodium chicken broth", + "collards", + "hot pepper sauce", + "garlic cloves", + "pepper", + "salt", + "smoked ham hocks" + ] + }, + { + "id": 35688, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "butternut squash", + "tortillas", + "cilantro", + "honey", + "apple cider vinegar", + "black beans", + "Sriracha", + "goat cheese" + ] + }, + { + "id": 40321, + "cuisine": "korean", + "ingredients": [ + "ground ginger", + "olive oil", + "barbecue sauce", + "crushed red pepper flakes", + "oyster sauce", + "mayonaise", + "Sriracha", + "flank steak", + "rice vinegar", + "brown sugar", + "sesame seeds", + "green onions", + "garlic", + "long grain white rice", + "soy sauce", + "shredded cabbage", + "sesame oil", + "rice" + ] + }, + { + "id": 19941, + "cuisine": "cajun_creole", + "ingredients": [ + "Zatarains Creole Seasoning", + "salt", + "extra-virgin olive oil", + "long grain white rice", + "red beans", + "hot water", + "smoked sausage" + ] + }, + { + "id": 35222, + "cuisine": "indian", + "ingredients": [ + "active dry yeast", + "salt", + "sugar", + "coarse salt", + "greek style plain yogurt", + "warm water", + "garlic", + "chopped parsley", + "melted butter", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 16219, + "cuisine": "italian", + "ingredients": [ + "green cabbage", + "water", + "cannellini beans", + "salt", + "celery", + "black pepper", + "olive oil", + "sliced carrots", + "garlic cloves", + "collard greens", + "dried thyme", + "butternut squash", + "chopped onion", + "pasta", + "fat free less sodium chicken broth", + "broccoli florets", + "diced tomatoes", + "rubbed sage" + ] + }, + { + "id": 42895, + "cuisine": "thai", + "ingredients": [ + "white pepper", + "bell pepper", + "onions", + "sugar", + "cooked turkey", + "salt", + "baby bok choy", + "thai basil", + "coconut aminos", + "fish sauce", + "water", + "garlic" + ] + }, + { + "id": 46335, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "italian seasoning", + "pepper", + "salt", + "eggs", + "flour", + "eggplant", + "panko breadcrumbs" + ] + }, + { + "id": 29430, + "cuisine": "korean", + "ingredients": [ + "Fuji Apple", + "green onions", + "onions", + "rib eye steaks", + "sesame seeds", + "ginger", + "soy sauce", + "sesame oil", + "sugar", + "asian pear", + "garlic" + ] + }, + { + "id": 31285, + "cuisine": "moroccan", + "ingredients": [ + "fresh lemon juice", + "preserved lemon", + "plum tomatoes", + "avocado", + "fresh parsley", + "salt" + ] + }, + { + "id": 32490, + "cuisine": "italian", + "ingredients": [ + "salt", + "sliced mushrooms", + "pepper", + "garlic cloves", + "onions", + "olive oil", + "low salt chicken broth", + "spaghetti", + "pancetta", + "fresh oregano", + "fresh parsley" + ] + }, + { + "id": 48135, + "cuisine": "mexican", + "ingredients": [ + "lime", + "bay leaves", + "ancho powder", + "juice", + "onions", + "tomatoes", + "flour tortillas", + "bottom round roast", + "garlic", + "sour cream", + "kosher salt", + "jalapeno chilies", + "worcestershire sauce", + "cilantro leaves", + "low sodium beef broth", + "ground black pepper", + "apple cider vinegar", + "dried pinto beans", + "tequila", + "ground cumin" + ] + }, + { + "id": 47245, + "cuisine": "jamaican", + "ingredients": [ + "chicken broth", + "curry powder", + "scotch bonnet chile", + "bread crumbs", + "finely chopped onion", + "ground allspice", + "minced garlic", + "lean ground beef", + "eggs", + "dried thyme", + "salt" + ] + }, + { + "id": 8560, + "cuisine": "french", + "ingredients": [ + "black pepper", + "leeks", + "fat free less sodium chicken broth", + "baking potatoes", + "fresh chives", + "vegetable oil", + "half & half", + "salt" + ] + }, + { + "id": 48824, + "cuisine": "brazilian", + "ingredients": [ + "dark chocolate", + "ground cloves", + "egg yolks", + "all-purpose flour", + "unsweetened cocoa powder", + "fennel seeds", + "brown sugar", + "honey", + "cinnamon", + "cinnamon sticks", + "table cream", + "water", + "whole milk", + "grated nutmeg", + "ground ginger", + "milk chocolate", + "baking soda", + "salt", + "sweetened condensed milk" + ] + }, + { + "id": 13706, + "cuisine": "japanese", + "ingredients": [ + "egg yolks", + "all-purpose flour", + "large shrimp", + "ice water" + ] + }, + { + "id": 42171, + "cuisine": "french", + "ingredients": [ + "mascarpone", + "vanilla extract", + "sugar", + "compote", + "powdered sugar", + "semisweet chocolate", + "brandy", + "whipping cream" + ] + }, + { + "id": 29128, + "cuisine": "japanese", + "ingredients": [ + "cream of tartar", + "milk", + "coconut oil", + "cream cheese", + "eggs", + "cake flour", + "sugar" + ] + }, + { + "id": 25264, + "cuisine": "brazilian", + "ingredients": [ + "cachaca", + "cold water", + "ice", + "lime", + "simple syrup" + ] + }, + { + "id": 34610, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "grated parmesan cheese", + "extra-virgin olive oil", + "garlic cloves", + "hot pepper sauce", + "buttermilk", + "all-purpose flour", + "onions", + "ground black pepper", + "butter", + "salt", + "chicken pieces", + "bread crumbs", + "dijon mustard", + "paprika", + "cayenne pepper" + ] + }, + { + "id": 22292, + "cuisine": "italian", + "ingredients": [ + "parsley flakes", + "italian seasoning", + "grated parmesan cheese", + "ground red pepper", + "granulated garlic" + ] + }, + { + "id": 5673, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "red pepper", + "garlic powder", + "white pepper", + "paprika", + "onion powder" + ] + }, + { + "id": 22884, + "cuisine": "british", + "ingredients": [ + "white vinegar", + "pearl onions", + "cucumber", + "ground ginger", + "all-purpose flour", + "ground turmeric", + "cauliflower", + "salt", + "white sugar", + "water", + "mustard powder" + ] + }, + { + "id": 24450, + "cuisine": "russian", + "ingredients": [ + "vegetable oil", + "sugar", + "bay leaf", + "vinegar", + "onions", + "cold water", + "herring fillets" + ] + }, + { + "id": 47382, + "cuisine": "french", + "ingredients": [ + "sugar", + "egg yolks", + "cocoa powder", + "eggs", + "honey", + "butter", + "brioche", + "bananas", + "vanilla extract", + "milk", + "rum", + "chocolate chips" + ] + }, + { + "id": 31711, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "elbow macaroni", + "salt", + "butter", + "pepper", + "sharp cheddar cheese" + ] + }, + { + "id": 16210, + "cuisine": "mexican", + "ingredients": [ + "cheese", + "taco seasoning", + "salsa", + "flour tortillas", + "ground beef" + ] + }, + { + "id": 786, + "cuisine": "italian", + "ingredients": [ + "ground beef", + "cheese ravioli", + "shredded mozzarella cheese", + "pasta sauce", + "onions" + ] + }, + { + "id": 38236, + "cuisine": "indian", + "ingredients": [ + "mayonaise", + "bread crumbs", + "coriander seeds", + "kasuri methi", + "cumin seed", + "onions", + "garlic paste", + "pickles", + "water", + "coriander powder", + "salt", + "chutney", + "chaat masala", + "tomatoes", + "buns", + "pepper", + "garam masala", + "cheese", + "oil", + "frozen peas", + "tumeric", + "ketchup", + "amchur", + "potatoes", + "green chilies", + "chopped cilantro", + "ground cumin" + ] + }, + { + "id": 17305, + "cuisine": "british", + "ingredients": [ + "eggs", + "drippings", + "water", + "all-purpose flour", + "milk", + "black pepper", + "salt" + ] + }, + { + "id": 41505, + "cuisine": "chinese", + "ingredients": [ + "canola", + "salt", + "dried fig", + "neutral oil", + "vegetables", + "cognac", + "baking soda", + "glutinous rice flour", + "sugar", + "taro", + "white sesame seeds" + ] + }, + { + "id": 11269, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "fresh ginger root", + "vegetable oil", + "ground cumin", + "minced garlic", + "potatoes", + "black mustard seeds", + "soy sauce", + "garam masala", + "ground coriander", + "caraway seeds", + "eggplant", + "chili powder", + "onions" + ] + }, + { + "id": 19652, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "olive oil", + "dried oregano", + "tomato paste", + "crushed tomatoes", + "garlic", + "white onion", + "basil dried leaves", + "green bell pepper", + "mushrooms" + ] + }, + { + "id": 27134, + "cuisine": "italian", + "ingredients": [ + "baby spinach", + "thyme", + "garlic", + "butter", + "pasta", + "shredded parmesan cheese" + ] + }, + { + "id": 42383, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "chopped onion", + "olive oil", + "black pepper", + "white mushrooms", + "tomatoes", + "salt" + ] + }, + { + "id": 36051, + "cuisine": "mexican", + "ingredients": [ + "roast breast of chicken", + "reduced sodium chicken broth", + "2% reduced-fat milk", + "condensed cream of chicken soup", + "flour tortillas", + "cayenne pepper", + "green chile", + "garlic powder", + "mexicorn", + "cheddar cheese", + "jalapeno chilies", + "condensed cream of potato soup" + ] + }, + { + "id": 22692, + "cuisine": "mexican", + "ingredients": [ + "salt", + "tomatillos", + "chopped cilantro fresh", + "garlic", + "chile pepper", + "chopped onion" + ] + }, + { + "id": 32228, + "cuisine": "italian", + "ingredients": [ + "pepper", + "dry white wine", + "garlic", + "celery", + "chicken stock", + "olive oil", + "bacon", + "fresh mushrooms", + "dried oregano", + "pasta", + "dried basil", + "lean ground beef", + "salt", + "onions", + "tomato sauce", + "italian plum tomatoes", + "ground pork", + "carrots" + ] + }, + { + "id": 36266, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "achiote paste", + "ground coriander", + "red wine vinegar", + "salt", + "pork butt roast", + "chili powder", + "purple onion", + "lemon juice", + "paprika", + "orange juice", + "ground cumin" + ] + }, + { + "id": 21377, + "cuisine": "filipino", + "ingredients": [ + "shallots", + "low salt chicken broth", + "tawny port", + "duck breast halves", + "cherries", + "orange blossom honey", + "butter" + ] + }, + { + "id": 22426, + "cuisine": "italian", + "ingredients": [ + "salt", + "water", + "cheese", + "cornmeal" + ] + }, + { + "id": 618, + "cuisine": "thai", + "ingredients": [ + "sugar", + "rice vinegar", + "asian fish sauce", + "red chili peppers", + "chili sauce", + "large shrimp", + "celery stick", + "ginger", + "fresh lime juice", + "ice cubes", + "ketchup", + "cucumber" + ] + }, + { + "id": 34492, + "cuisine": "french", + "ingredients": [ + "peaches", + "fresh raspberries", + "unflavored gelatin", + "mint sprigs", + "cold water", + "fresh blueberries", + "raspberry liqueur", + "sugar", + "raspberry sauce" + ] + }, + { + "id": 35325, + "cuisine": "moroccan", + "ingredients": [ + "water", + "seeds", + "sugar", + "beef", + "salt", + "vidalia onion", + "honey", + "cinnamon", + "sugar pea", + "dried apricot", + "sauce" + ] + }, + { + "id": 40987, + "cuisine": "indian", + "ingredients": [ + "sliced almonds", + "mango chutney", + "salt", + "olive oil", + "butter", + "boneless skinless chicken breast halves", + "garam masala", + "garlic", + "ground turmeric", + "plain yogurt", + "chili powder", + "onions" + ] + }, + { + "id": 13775, + "cuisine": "korean", + "ingredients": [ + "pork neck", + "black pepper", + "green onions", + "chopped garlic", + "sugar", + "sesame seeds", + "rice wine", + "red chili powder", + "fresh ginger", + "bean paste", + "soy sauce", + "garlic powder", + "sesame oil" + ] + }, + { + "id": 5333, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "all-purpose flour", + "powdered sugar", + "whipping cream", + "eggs", + "mandarin oranges", + "regular sugar", + "baking powder", + "salt" + ] + }, + { + "id": 4644, + "cuisine": "indian", + "ingredients": [ + "plain low-fat yogurt", + "peeled fresh ginger", + "purple onion", + "fresh lemon juice", + "ground cumin", + "garam masala", + "daikon", + "tamarind paste", + "chopped garlic", + "boneless chicken skinless thigh", + "ground red pepper", + "salt", + "chopped cilantro fresh", + "tomatoes", + "cooking spray", + "extra-virgin olive oil", + "beets", + "canola oil" + ] + }, + { + "id": 11094, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "low sodium taco seasoning", + "cheddar cheese", + "shells", + "tomato sauce", + "ground beef", + "water" + ] + }, + { + "id": 48387, + "cuisine": "jamaican", + "ingredients": [ + "green onions", + "salt", + "pepper", + "butter", + "long pepper", + "shrimp heads", + "oyster sauce", + "Sriracha", + "garlic" + ] + }, + { + "id": 34235, + "cuisine": "jamaican", + "ingredients": [ + "store bought low sodium chicken stock", + "ground black pepper", + "worcestershire sauce", + "hot sauce", + "jamaican curry powder", + "fresh ginger", + "boneless skinless chicken breasts", + "garlic", + "olive oil", + "fingerling potatoes", + "cilantro", + "yellow onion", + "kosher salt", + "full fat coconut milk", + "scotch bonnet chile", + "white wine vinegar" + ] + }, + { + "id": 46295, + "cuisine": "japanese", + "ingredients": [ + "ground black pepper", + "purple onion", + "soy sauce", + "ginger", + "onions", + "cauliflower", + "boneless skinless chicken breasts", + "dark brown sugar", + "white wine", + "garlic" + ] + }, + { + "id": 38076, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "black sesame seeds", + "vegetable oil", + "red bell pepper", + "fresh ginger", + "chicken breasts", + "garlic", + "cashew nuts", + "coriander powder", + "shallots", + "salt", + "ground cumin", + "curry powder", + "baby kale", + "ponzu", + "coconut milk" + ] + }, + { + "id": 34933, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "groundnut", + "yoghurt", + "green chilies", + "ginger root", + "creamed coconut", + "coriander seeds", + "salt", + "cumin seed", + "ground turmeric", + "tomatoes", + "lime", + "garlic", + "cardamom pods", + "onions", + "black pepper", + "fenugreek", + "cilantro leaves", + "chuck steaks" + ] + }, + { + "id": 2641, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "green onions", + "ground cumin", + "water", + "lasagna noodles", + "sour cream", + "refried beans", + "pepper jack", + "dried oregano", + "extra lean ground beef", + "sliced black olives", + "salsa" + ] + }, + { + "id": 14034, + "cuisine": "french", + "ingredients": [ + "jumbo shrimp", + "water", + "dry white wine", + "button mushrooms", + "clarified butter", + "nutmeg", + "cream", + "flour", + "butter", + "salt", + "mussels", + "white pepper", + "snapper head", + "shallots", + "bouquet garni", + "puff pastry", + "sole fillet", + "scallops", + "egg yolks", + "lemon", + "onions" + ] + }, + { + "id": 6179, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "coffee beans", + "water", + "salt", + "sugar", + "raw sugar", + "half & half", + "heavy whipping cream" + ] + }, + { + "id": 39037, + "cuisine": "indian", + "ingredients": [ + "salt", + "plain yogurt", + "english cucumber", + "pepper", + "tomatoes", + "chopped onion" + ] + }, + { + "id": 10539, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "ground pork", + "oyster sauce", + "salted fish", + "firm tofu", + "mushroom soy sauce", + "Shaoxing wine", + "scallions", + "fresh ginger", + "salt", + "corn starch" + ] + }, + { + "id": 30907, + "cuisine": "mexican", + "ingredients": [ + "cooking oil", + "diced tomatoes", + "cayenne pepper", + "chicken broth", + "chicken breasts", + "garlic", + "onions", + "bell pepper", + "paprika", + "smoked paprika", + "pepper", + "chili powder", + "salt", + "cumin" + ] + }, + { + "id": 19014, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic", + "pasta", + "freshly grated parmesan", + "avocado", + "olive oil", + "fresh basil", + "lemon" + ] + }, + { + "id": 49471, + "cuisine": "filipino", + "ingredients": [ + "pork belly", + "garlic", + "oyster sauce", + "fish sauce", + "lemon", + "freshly ground pepper", + "white vinegar", + "pepper", + "salt", + "onions", + "brown sugar", + "thai chile", + "oil" + ] + }, + { + "id": 21553, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "egg substitute", + "vegetable oil", + "hot sauce", + "white vinegar", + "kosher salt", + "ground red pepper", + "paprika", + "creole mustard", + "black pepper", + "green onions", + "worcestershire sauce", + "ketchup", + "prepared horseradish", + "yellow mustard", + "garlic cloves" + ] + }, + { + "id": 10806, + "cuisine": "french", + "ingredients": [ + "brandy", + "beef tenderloin", + "shiitake mushroom caps", + "spinach", + "olive oil", + "margarine", + "pepper", + "salt", + "vegetable oil cooking spray", + "shallots", + "garlic cloves" + ] + }, + { + "id": 47185, + "cuisine": "thai", + "ingredients": [ + "baking soda", + "tapioca flour", + "all-purpose flour", + "eggs", + "salt", + "water" + ] + }, + { + "id": 3815, + "cuisine": "cajun_creole", + "ingredients": [ + "pecans", + "white cabbage", + "maple syrup", + "cider vinegar", + "buttermilk", + "celery", + "mayonaise", + "spring onions", + "carrots", + "pepper", + "salt" + ] + }, + { + "id": 8822, + "cuisine": "greek", + "ingredients": [ + "pepper", + "kalamata", + "dried oregano", + "olive oil", + "fresh lemon juice", + "dried basil", + "salt", + "rib eye steaks", + "garlic powder", + "feta cheese crumbles" + ] + }, + { + "id": 47500, + "cuisine": "filipino", + "ingredients": [ + "sherry vinegar", + "garlic", + "canola oil", + "soy sauce", + "bay leaves", + "coconut milk", + "chicken stock", + "ground black pepper", + "beef rib short", + "kosher salt", + "thai chile", + "cooked white rice" + ] + }, + { + "id": 41365, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "garlic", + "scallions", + "onions", + "green bell pepper", + "vegetable oil", + "all-purpose flour", + "celery", + "andouille sausage", + "worcestershire sauce", + "freshly ground pepper", + "cooked white rice", + "parsley leaves", + "salt", + "hot water", + "chicken" + ] + }, + { + "id": 25526, + "cuisine": "irish", + "ingredients": [ + "rolled oats", + "buttermilk", + "all-purpose flour", + "turbinado", + "granulated sugar", + "marmalade", + "candied orange peel", + "baking powder", + "salt", + "unsalted butter", + "heavy cream", + "softened butter" + ] + }, + { + "id": 1756, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "miso", + "chopped fresh chives", + "salmon fillets", + "hot water", + "low sodium soy sauce", + "cooking spray" + ] + }, + { + "id": 22392, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "salt", + "coriander", + "ginger", + "lemon juice", + "ground black pepper", + "lentils", + "greens", + "tomato purée", + "garlic", + "onions" + ] + }, + { + "id": 32078, + "cuisine": "cajun_creole", + "ingredients": [ + "shredded parmesan cheese", + "cajun seasoning", + "all-purpose flour", + "Tabasco Pepper Sauce", + "bow-tie pasta", + "buttermilk", + "peanut oil" + ] + }, + { + "id": 5823, + "cuisine": "mexican", + "ingredients": [ + "milk", + "pork sausages", + "eggs", + "chile pepper", + "flour tortillas", + "cheddar cheese", + "all-purpose flour" + ] + }, + { + "id": 22373, + "cuisine": "mexican", + "ingredients": [ + "pasilla chiles", + "parsley", + "freshly ground pepper", + "honey", + "purple onion", + "dried oregano", + "kosher salt", + "balsamic vinegar", + "garlic cloves", + "olive oil", + "rack of lamb", + "ground cumin" + ] + }, + { + "id": 18067, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "lemon", + "cinnamon sticks", + "green tomatoes" + ] + }, + { + "id": 9100, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "chopped tomatoes", + "sliced green onions", + "cod", + "shredded coleslaw mix", + "tortilla shells", + "milk", + "Land O Lakes® Butter", + "avocado", + "taco seasoning mix", + "sour cream" + ] + }, + { + "id": 14990, + "cuisine": "thai", + "ingredients": [ + "sugar", + "green onions", + "tamari soy sauce", + "tofu", + "water", + "vegetable oil", + "beansprouts", + "sweet chili sauce", + "rice noodles", + "carrots", + "chili flakes", + "peanuts", + "garlic", + "cabbage" + ] + }, + { + "id": 38120, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "salt", + "sugar", + "unsalted butter", + "active dry yeast", + "bread flour", + "water", + "flour" + ] + }, + { + "id": 34301, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "bay leaves", + "rice vinegar", + "pepper", + "purple onion", + "pork belly", + "garlic", + "black peppercorns", + "water", + "salt" + ] + }, + { + "id": 29588, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "ground cinnamon", + "salt", + "slivered almonds", + "grated lemon peel", + "large eggs" + ] + }, + { + "id": 3125, + "cuisine": "thai", + "ingredients": [ + "Sriracha", + "dark sesame oil", + "snow peas", + "minced garlic", + "low sodium teriyaki sauce", + "spaghetti", + "lime wedges", + "hot water", + "large shrimp", + "dry roasted peanuts", + "creamy peanut butter", + "chopped cilantro fresh" + ] + }, + { + "id": 48747, + "cuisine": "italian", + "ingredients": [ + "flour tortillas", + "red leaf lettuce", + "ham", + "fresh basil", + "cream cheese", + "sun-dried tomatoes" + ] + }, + { + "id": 4557, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "all-purpose flour", + "1% low-fat milk", + "salt", + "large eggs" + ] + }, + { + "id": 45313, + "cuisine": "thai", + "ingredients": [ + "chopped leaves", + "roasted peanuts", + "fish sauce", + "thai noodles", + "coriander", + "eggs", + "lime", + "beansprouts", + "sugar", + "prawns" + ] + }, + { + "id": 32832, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "coarse salt", + "onions", + "whole peeled tomatoes", + "pork stock", + "collard greens", + "crushed red pepper flakes", + "chopped garlic" + ] + }, + { + "id": 37111, + "cuisine": "southern_us", + "ingredients": [ + "fontina cheese", + "pimentos", + "sliced mushrooms", + "cream of celery soup", + "cooked chicken", + "sour cream", + "water chestnuts", + "green beans", + "long grain and wild rice mix", + "pepper", + "salt", + "onions" + ] + }, + { + "id": 49022, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "baby spinach", + "parmesan cheese", + "cheese tortellini", + "olive oil", + "large garlic cloves", + "black pepper", + "prosciutto" + ] + }, + { + "id": 28938, + "cuisine": "british", + "ingredients": [ + "lemon zest", + "vanilla", + "white bread", + "fresh cranberries", + "cinnamon sticks", + "cream sweeten whip", + "cranberry juice cocktail", + "pears", + "light brown sugar", + "dried apricot", + "sour cherries" + ] + }, + { + "id": 42149, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "herbs", + "ginger", + "mango", + "lime juice", + "white rice vinegar", + "green chilies", + "red chili peppers", + "prawns", + "purple onion", + "candied ginger", + "palm sugar", + "sesame oil", + "roasted peanuts" + ] + }, + { + "id": 37121, + "cuisine": "southern_us", + "ingredients": [ + "bacon slices", + "fresh mushrooms", + "grits", + "green onions", + "all-purpose flour", + "fresh lemon juice", + "pepper", + "salt", + "garlic cloves", + "canola oil", + "low-sodium fat-free chicken broth", + "hot sauce", + "shrimp" + ] + }, + { + "id": 39302, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh basil leaves", + "cantaloupe", + "prosciutto", + "pinenuts", + "crumbled ricotta salata cheese" + ] + }, + { + "id": 37686, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "orange zest", + "mission figs", + "dry red wine", + "lemon zest" + ] + }, + { + "id": 4740, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "sugar", + "peanuts", + "tomatillos", + "chocolate", + "thyme", + "oregano", + "allspice", + "bread", + "black peppercorns", + "chili", + "tortillas", + "raisins", + "salt", + "lard", + "chicken", + "clove", + "pecans", + "sesame seeds", + "meat", + "anise", + "pumpkin seeds", + "onions", + "plantains", + "tomatoes", + "pork", + "almonds", + "avocado leaves", + "garlic", + "cinnamon sticks", + "cumin" + ] + }, + { + "id": 28315, + "cuisine": "mexican", + "ingredients": [ + "seedless cucumber", + "garlic", + "kosher salt", + "tomatoes", + "red wine vinegar", + "white onion", + "serrano chile" + ] + }, + { + "id": 615, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "eggplant", + "bulgur", + "onions", + "dried currants", + "extra-virgin olive oil", + "flat leaf parsley", + "black pepper", + "salt", + "rib", + "sugar", + "zucchini", + "ground allspice" + ] + }, + { + "id": 22777, + "cuisine": "mexican", + "ingredients": [ + "picante sauce", + "boneless skinless chicken breasts", + "garlic powder", + "diced tomatoes", + "shredded cheddar cheese", + "vegetable oil", + "flour tortillas", + "onions" + ] + }, + { + "id": 27128, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "ground black pepper", + "ginger", + "fresh lemon juice", + "onions", + "tumeric", + "chili powder", + "chicken fingers", + "cooking fat", + "cumin", + "cauliflower", + "garam masala", + "sea salt", + "garlic cloves", + "coconut milk", + "ground cumin", + "mint", + "coriander powder", + "cilantro leaves", + "cinnamon sticks", + "ground turmeric" + ] + }, + { + "id": 40810, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "coconut cream", + "water", + "condensed milk", + "corn", + "corn starch", + "evaporated milk", + "coconut milk" + ] + }, + { + "id": 48045, + "cuisine": "french", + "ingredients": [ + "sugar", + "salt", + "active dry yeast", + "all purpose unbleached flour", + "warm water" + ] + }, + { + "id": 25432, + "cuisine": "moroccan", + "ingredients": [ + "turnips", + "tumeric", + "cilantro", + "cayenne pepper", + "dried lentils", + "water", + "garlic", + "carrots", + "tomato purée", + "black pepper", + "extra-virgin olive oil", + "chickpeas", + "parsnips", + "crushed tomatoes", + "salt", + "cumin" + ] + }, + { + "id": 48520, + "cuisine": "korean", + "ingredients": [ + "rib eye steaks", + "shiitake", + "garlic", + "toasted sesame seeds", + "sugar", + "sesame oil", + "carrots", + "soy sauce", + "vegetable oil", + "onions", + "spinach", + "green onions", + "salt", + "noodles" + ] + }, + { + "id": 21743, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "sweetened condensed milk", + "powdered milk" + ] + }, + { + "id": 37669, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "parmigiano reggiano cheese", + "polenta", + "ground black pepper", + "light cream cheese", + "1% low-fat milk" + ] + }, + { + "id": 3480, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "red food coloring", + "chinese rice wine", + "hoisin sauce", + "garlic cloves", + "brown sugar", + "honey", + "chinese five-spice powder", + "soy sauce", + "pork tenderloin" + ] + }, + { + "id": 25726, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "onions", + "olive oil", + "red bell pepper", + "swiss chard", + "bread dough", + "large garlic cloves" + ] + }, + { + "id": 1526, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "baguette", + "tomatoes", + "garlic", + "coarse sea salt" + ] + }, + { + "id": 25309, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "jalapeno chilies", + "cayenne pepper", + "onions", + "olive oil", + "green onions", + "enchilada sauce", + "black beans", + "chopped tomatoes", + "colby jack cheese", + "chopped cilantro", + "pepper", + "tortillas", + "salt", + "ground beef" + ] + }, + { + "id": 35985, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "cayenne pepper", + "chopped cilantro fresh", + "fresh ginger", + "garlic", + "cumin seed", + "ground cumin", + "tomatoes", + "vegetable oil", + "ground coriander", + "ground turmeric", + "eggplant", + "salt", + "onions" + ] + }, + { + "id": 29920, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "green chilies", + "onions", + "tomatoes", + "chili powder", + "oil", + "ground turmeric", + "fresh green peas", + "coriander powder", + "cumin seed", + "cashew nuts", + "milk", + "cilantro leaves", + "mustard seeds" + ] + }, + { + "id": 16043, + "cuisine": "italian", + "ingredients": [ + "spinach", + "part-skim mozzarella cheese", + "garlic cloves", + "nonfat evaporated milk", + "pizza crust", + "salt", + "corn starch", + "black pepper", + "cooking spray", + "shrimp", + "dried oregano", + "dried basil", + "provolone cheese", + "sliced mushrooms" + ] + }, + { + "id": 7005, + "cuisine": "thai", + "ingredients": [ + "coconut oil", + "milk", + "green onions", + "thai green curry paste", + "cooked rice", + "rolled oats", + "fresh ginger", + "garlic", + "fish sauce", + "lime juice", + "large eggs", + "salt", + "unsweetened coconut milk", + "sugar", + "green curry paste", + "lean ground beef", + "chopped cilantro" + ] + }, + { + "id": 29803, + "cuisine": "cajun_creole", + "ingredients": [ + "active dry yeast", + "lemon zest", + "sprinkles", + "fresh lemon juice", + "ground cinnamon", + "unsalted butter", + "whole milk", + "all-purpose flour", + "pure vanilla extract", + "large egg yolks", + "large eggs", + "salt", + "unsweetened cocoa powder", + "powdered sugar", + "granulated sugar", + "cake", + "grated nutmeg" + ] + }, + { + "id": 6223, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "chopped cilantro fresh", + "green bell pepper", + "salsa", + "reduced fat sharp cheddar cheese", + "green onions", + "plum tomatoes", + "ground round", + "baked tortilla chips" + ] + }, + { + "id": 15920, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "chervil", + "celery root", + "yukon gold potatoes" + ] + }, + { + "id": 41806, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "lemon juice", + "curry powder", + "boneless skinless chicken breast halves", + "condensed cream of chicken soup", + "salad dressing", + "paprika", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 14819, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "bacon slices", + "tomatoes", + "lemon dressing", + "peanut oil", + "yellow corn meal", + "bibb lettuce", + "salt", + "green bell pepper", + "buttermilk", + "okra" + ] + }, + { + "id": 21254, + "cuisine": "greek", + "ingredients": [ + "water", + "fennel", + "large garlic cloves", + "ouzo", + "leeks", + "red bell pepper", + "tomatoes", + "olive oil", + "shallots", + "fronds", + "dry white wine", + "large shrimp" + ] + }, + { + "id": 13445, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "paprika", + "ground black pepper", + "bay leaf", + "sherry vinegar", + "garlic", + "virgin olive oil", + "cayenne", + "cumin" + ] + }, + { + "id": 23414, + "cuisine": "mexican", + "ingredients": [ + "anise seed", + "large egg yolks", + "dried apricot", + "grated lemon zest", + "light brown sugar", + "vanilla beans", + "semisweet chocolate", + "mint sprigs", + "chile powder", + "sugar", + "anjou pears", + "red wine", + "canela", + "pecans", + "unsalted butter", + "dry white wine", + "fresh raspberries" + ] + }, + { + "id": 23592, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "pepper", + "carrots", + "black-eyed peas", + "onions", + "ham" + ] + }, + { + "id": 17436, + "cuisine": "british", + "ingredients": [ + "powdered sugar", + "heavy cream", + "unsalted butter", + "all-purpose flour", + "sugar", + "salt", + "eggs", + "baking powder", + "lemon juice" + ] + }, + { + "id": 25929, + "cuisine": "southern_us", + "ingredients": [ + "graham cracker crumbs", + "large egg yolks", + "sweetened condensed milk", + "sugar", + "heavy cream", + "unsalted butter", + "key lime juice" + ] + }, + { + "id": 18253, + "cuisine": "italian", + "ingredients": [ + "coarse salt", + "polenta", + "extra-virgin olive oil" + ] + }, + { + "id": 42040, + "cuisine": "british", + "ingredients": [ + "stout", + "large egg yolks", + "light brown sugar", + "vanilla", + "heavy cream" + ] + }, + { + "id": 19665, + "cuisine": "mexican", + "ingredients": [ + "corn husks", + "smoked paprika", + "mayonaise", + "lime wedges", + "chipotle chile powder", + "unsalted butter", + "Mexican cheese", + "lime juice", + "cilantro leaves" + ] + }, + { + "id": 12801, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "onion flakes", + "tomato sauce", + "chicken breasts", + "ground coriander", + "dried minced garlic", + "low sodium chicken broth", + "salt", + "sugar", + "chili powder", + "ground cumin" + ] + }, + { + "id": 21172, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "leeks", + "camembert", + "large eggs", + "butter", + "grated parmesan cheese", + "whipping cream", + "water", + "frozen pastry puff sheets", + "cayenne pepper" + ] + }, + { + "id": 34766, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "vegetable oil", + "fresh mint", + "white onion", + "hot water", + "salt", + "long grain white rice" + ] + }, + { + "id": 40054, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "1% low-fat milk", + "water", + "vanilla extract", + "sugar", + "unsweetened cocoa powder" + ] + }, + { + "id": 31125, + "cuisine": "japanese", + "ingredients": [ + "ume plum vinegar", + "radishes", + "garlic", + "water", + "turmeric root", + "pickling spices", + "apple cider vinegar", + "ginger root", + "honey", + "sea salt" + ] + }, + { + "id": 46291, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "apple cider vinegar", + "bay leaves", + "garlic cloves", + "ground black pepper", + "sprite", + "sugar", + "cane vinegar", + "chicken leg quarters" + ] + }, + { + "id": 45381, + "cuisine": "thai", + "ingredients": [ + "green bell pepper", + "jasmine rice", + "salt", + "fresh basil leaves", + "tomatoes", + "soy sauce", + "vegetable oil", + "grate lime peel", + "brown sugar", + "boneless skinless chicken breasts", + "gingerroot", + "chopped cilantro fresh", + "serrano chilies", + "sugar pea", + "garlic", + "coconut milk" + ] + }, + { + "id": 36856, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "baking powder", + "milk", + "cornmeal", + "eggs", + "butter" + ] + }, + { + "id": 34703, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "ricotta", + "dried oregano", + "tomato paste", + "italian style stewed tomatoes", + "sliced mushrooms", + "tomato sauce", + "cooked meatballs", + "onions", + "olive oil", + "provolone cheese", + "italian seasoning" + ] + }, + { + "id": 8012, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "grated parmesan cheese", + "Neufchâtel", + "ground black pepper", + "heavy cream", + "garlic powder", + "2% reduced-fat milk", + "fresh parsley leaves", + "fettucine", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 15759, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "green onions", + "worcestershire sauce", + "salt", + "bay leaf", + "sugar", + "vegetable oil", + "stewed tomatoes", + "rice", + "tomato sauce", + "Tabasco Pepper Sauce", + "bacon", + "yellow onion", + "medium shrimp", + "celery ribs", + "dried thyme", + "cajun seasoning", + "garlic", + "chopped parsley" + ] + }, + { + "id": 39099, + "cuisine": "italian", + "ingredients": [ + "dried currants", + "ricotta cheese", + "marsala wine", + "semisweet chocolate", + "syrup", + "cherries", + "pound cake", + "sugar", + "unsalted butter", + "whipping cream" + ] + }, + { + "id": 33461, + "cuisine": "mexican", + "ingredients": [ + "tomatillo salsa", + "garlic", + "Knudsen Sour Cream", + "onions", + "flour tortillas", + "oil", + "green chile", + "cheese", + "cooked chicken breasts" + ] + }, + { + "id": 46912, + "cuisine": "indian", + "ingredients": [ + "pepper", + "cayenne pepper", + "serrano peppers", + "onions", + "eggplant", + "chopped cilantro", + "plain yogurt", + "salt" + ] + }, + { + "id": 15480, + "cuisine": "japanese", + "ingredients": [ + "lime wedges", + "salt", + "fresh lemon juice", + "ground black pepper", + "cilantro sprigs", + "edamame", + "soba", + "roasted cashews", + "pecorino romano cheese", + "cilantro leaves", + "hot water", + "basil leaves", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 38098, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "granulated sugar", + "worcestershire sauce", + "sauce", + "cornmeal", + "cayenne", + "lemon", + "all-purpose flour", + "oil", + "sugar", + "baking powder", + "salt", + "scallions", + "onions", + "mustard", + "unsalted butter", + "buttermilk", + "hot sauce", + "juice" + ] + }, + { + "id": 38824, + "cuisine": "greek", + "ingredients": [ + "plain yogurt", + "unsalted butter", + "orange peel", + "water", + "chopped almonds", + "phyllo pastry", + "sugar", + "honey", + "cinnamon sticks", + "ground cinnamon", + "rose water", + "ground allspice" + ] + }, + { + "id": 23052, + "cuisine": "mexican", + "ingredients": [ + "fresh orange juice", + "carrots", + "lime rind", + "purple onion", + "chopped cilantro fresh", + "jicama", + "salt", + "sugar", + "cilantro sprigs", + "fresh lime juice" + ] + }, + { + "id": 41643, + "cuisine": "british", + "ingredients": [ + "pepper", + "butter", + "pork sausages", + "flour", + "salt", + "chicken stock", + "russet potatoes", + "onions", + "milk", + "red wine", + "canola oil" + ] + }, + { + "id": 36849, + "cuisine": "french", + "ingredients": [ + "water", + "ice water", + "cider vinegar", + "quinces", + "sugar", + "unsalted butter", + "all-purpose flour", + "ground cinnamon", + "honey", + "salt" + ] + }, + { + "id": 14406, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "unsalted butter", + "salt", + "unsweetened coconut milk", + "coconut", + "baking powder", + "flavoring", + "buttercream frosting", + "whole milk", + "cream cheese", + "powdered sugar", + "large egg whites", + "cake flour", + "heavy whipping cream" + ] + }, + { + "id": 39717, + "cuisine": "spanish", + "ingredients": [ + "lime juice", + "fresh oregano leaves", + "salt", + "minced garlic", + "ground cumin", + "olive oil" + ] + }, + { + "id": 23557, + "cuisine": "thai", + "ingredients": [ + "water", + "vegetable oil", + "coconut milk", + "light brown sugar", + "zucchini", + "unsalted dry roast peanuts", + "base", + "cilantro sprigs", + "onions", + "fish sauce", + "pork tenderloin", + "red bell pepper" + ] + }, + { + "id": 25522, + "cuisine": "british", + "ingredients": [ + "orange", + "apples", + "pie pastry", + "mincemeat" + ] + }, + { + "id": 3779, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "corn tortillas", + "enchilada sauce", + "shredded cheddar cheese", + "onions", + "tomatoes", + "ground turkey" + ] + }, + { + "id": 12733, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "pork loin", + "wonton wrappers", + "corn starch", + "chicken stock", + "shiitake", + "sesame oil", + "rice vinegar", + "wood ear mushrooms", + "eggs", + "enokitake", + "vegetable oil", + "firm tofu", + "bamboo shoots", + "kosher salt", + "green onions", + "red pepper flakes", + "ground white pepper" + ] + }, + { + "id": 12052, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "honey", + "black pepper", + "teriyaki sauce", + "boneless chicken skinless thigh", + "onion powder", + "minced garlic" + ] + }, + { + "id": 29063, + "cuisine": "filipino", + "ingredients": [ + "egg yolks", + "salt", + "cream powder", + "sweetened condensed milk", + "whole milk", + "white sugar", + "lime", + "butter" + ] + }, + { + "id": 5870, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "extra-virgin olive oil", + "carrots", + "grated parmesan cheese", + "large garlic cloves", + "venison", + "onions", + "whole milk", + "bacon", + "sausages", + "tomato paste", + "butter", + "chopped celery", + "ground beef" + ] + }, + { + "id": 2055, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "shredded cabbage", + "paprika", + "scallions", + "corn tortillas", + "dried thyme", + "jalapeno chilies", + "heavy cream", + "fresh oregano", + "sour cream", + "dried oregano", + "kosher salt", + "ground black pepper", + "onion powder", + "yellow onion", + "fresh lemon juice", + "chopped cilantro fresh", + "lime", + "hot pepper sauce", + "vegetable oil", + "cayenne pepper", + "mahi mahi fillets", + "plum tomatoes" + ] + }, + { + "id": 20586, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "spring onions", + "onions", + "ground black pepper", + "toasted sesame oil", + "soy sauce", + "beef tenderloin", + "pears", + "minced ginger", + "garlic" + ] + }, + { + "id": 15606, + "cuisine": "cajun_creole", + "ingredients": [ + "barbecue sauce", + "dry bread crumbs", + "eggs", + "prepared mustard", + "green onions", + "ground beef", + "cheddar cheese", + "cajun seasoning" + ] + }, + { + "id": 3788, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "spaghettini", + "hot red pepper flakes", + "extra-virgin olive oil", + "flat leaf parsley", + "black pepper", + "salt", + "lemon", + "fresh lemon juice" + ] + }, + { + "id": 29889, + "cuisine": "indian", + "ingredients": [ + "channa dal", + "oil", + "water", + "salt", + "jaggery", + "urad dal", + "ground cardamom", + "coconut", + "rice" + ] + }, + { + "id": 42548, + "cuisine": "filipino", + "ingredients": [ + "salmon fillets", + "sweet onion", + "salt", + "corn starch", + "soy sauce", + "cooking oil", + "garlic cloves", + "peppercorns", + "sugar", + "vinegar", + "oil", + "red bell pepper", + "water", + "ginger", + "carrots" + ] + }, + { + "id": 30388, + "cuisine": "spanish", + "ingredients": [ + "fresh cranberries", + "cranberry juice", + "apples", + "orange", + "orange juice", + "red wine" + ] + }, + { + "id": 17696, + "cuisine": "southern_us", + "ingredients": [ + "bananas", + "whipping cream", + "sugar", + "Nilla Wafers", + "corn starch", + "egg yolks", + "vanilla extract", + "milk", + "butter" + ] + }, + { + "id": 34756, + "cuisine": "thai", + "ingredients": [ + "boneless chicken skinless thigh", + "sesame oil", + "mint sprigs", + "thai chile", + "garlic cloves", + "mung bean sprouts", + "brown sugar", + "lemon grass", + "large garlic cloves", + "cilantro sprigs", + "roasted peanuts", + "carrots", + "asian fish sauce", + "soy sauce", + "cayenne", + "basil", + "rice vermicelli", + "scallions", + "cucumber", + "lime juice", + "lime wedges", + "ginger", + "rice vinegar", + "unsalted peanut butter", + "serrano chile" + ] + }, + { + "id": 28788, + "cuisine": "british", + "ingredients": [ + "sugar", + "mincemeat", + "whipping cream", + "cinnamon sticks", + "brandy", + "fresh lemon juice", + "orange juice", + "orange peel" + ] + }, + { + "id": 9207, + "cuisine": "italian", + "ingredients": [ + "enriched white rice", + "grated lemon zest", + "onions", + "grated parmesan cheese", + "lemon juice", + "zucchini", + "fresh oregano", + "oregano", + "chicken broth", + "butter", + "carrots" + ] + }, + { + "id": 32144, + "cuisine": "italian", + "ingredients": [ + "rhubarb", + "ground nutmeg", + "vanilla extract", + "ruby port", + "whole milk", + "strawberries", + "water", + "butter", + "carnaroli rice", + "sugar", + "mascarpone", + "salt" + ] + }, + { + "id": 11497, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "capers", + "chopped tomatoes", + "olive oil", + "flat leaf parsley", + "fillet red snapper", + "ground black pepper" + ] + }, + { + "id": 45374, + "cuisine": "italian", + "ingredients": [ + "lacinato kale", + "extra-virgin olive oil", + "ricotta salata", + "fresh lemon juice", + "black pepper", + "salt", + "shallots", + "rib" + ] + }, + { + "id": 1633, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "low salt chicken broth", + "radicchio", + "dry red wine", + "arborio rice", + "butter", + "minced onion", + "extra-virgin olive oil" + ] + }, + { + "id": 14998, + "cuisine": "italian", + "ingredients": [ + "pepperoncini", + "rump roast", + "salad dressing", + "beef broth", + "mixed vegetables" + ] + }, + { + "id": 24704, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "process cheese spread", + "grits", + "butter", + "half & half", + "garlic cloves" + ] + }, + { + "id": 30220, + "cuisine": "chinese", + "ingredients": [ + "rock sugar", + "sesame seeds", + "white sugar", + "water", + "szechwan peppercorns", + "soy sauce", + "pork ribs", + "white vinegar", + "fresh cilantro", + "crushed red pepper" + ] + }, + { + "id": 29933, + "cuisine": "italian", + "ingredients": [ + "cottage cheese", + "rotini", + "italian sausage", + "sliced black olives", + "pepperoni slices", + "pasta sauce", + "shredded mozzarella cheese" + ] + }, + { + "id": 33156, + "cuisine": "italian", + "ingredients": [ + "avocado", + "basil", + "pasta water", + "fresh spinach", + "salt", + "pecans", + "garlic", + "spaghetti", + "pepper", + "fresh lemon juice" + ] + }, + { + "id": 11790, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "fresh raspberries", + "raspberry puree", + "club soda", + "mint", + "simple syrup", + "mint leaves", + "cachaca" + ] + }, + { + "id": 36646, + "cuisine": "indian", + "ingredients": [ + "whole wheat flour", + "sea salt", + "ground turmeric", + "fresh curry leaves", + "chile pepper", + "mustard seeds", + "eggs", + "prawns", + "ginger", + "water", + "vegetable oil", + "onions" + ] + }, + { + "id": 5979, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "panko", + "garlic", + "onions", + "black pepper", + "sea salt", + "ground beef", + "eggs", + "pecorino romano cheese", + "red bell pepper", + "fresh basil leaves", + "eggplant", + "extra-virgin olive oil", + "fresh parsley" + ] + }, + { + "id": 44879, + "cuisine": "chinese", + "ingredients": [ + "pineapple", + "lard", + "water", + "pineapple syrup", + "onions", + "water chestnuts", + "corn starch", + "soy sauce", + "salt", + "celery" + ] + }, + { + "id": 11478, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "vanilla beans", + "whipping cream", + "Tuaca Liqueur", + "large egg yolks", + "pears", + "powdered sugar", + "golden brown sugar", + "pinot grigio", + "sugar", + "unsalted butter" + ] + }, + { + "id": 28227, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "red wine vinegar", + "purple onion", + "fresh parsley", + "tomatoes", + "olive oil", + "kalamata", + "feta cheese crumbles", + "sugar", + "lemon", + "salt", + "romaine lettuce", + "ground black pepper", + "garlic", + "cucumber" + ] + }, + { + "id": 40965, + "cuisine": "mexican", + "ingredients": [ + "cilantro sprigs", + "flour", + "turkey breast", + "diced tomatoes", + "onions", + "chipotle chile", + "fat skimmed chicken broth" + ] + }, + { + "id": 26160, + "cuisine": "thai", + "ingredients": [ + "spinach", + "fresh ginger", + "sesame oil", + "button mushrooms", + "baby bok choy", + "orange bell pepper", + "vegetable oil", + "garlic", + "soy sauce", + "hot chili", + "red pepper", + "rice vinegar", + "eggs", + "black pepper", + "green onions", + "cilantro" + ] + }, + { + "id": 44389, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "kidney beans", + "diced tomatoes", + "scallions", + "unsweetened cocoa powder", + "black beans", + "sweet potatoes", + "purple onion", + "red bell pepper", + "black pepper", + "radishes", + "vegetable broth", + "garlic cloves", + "ground cumin", + "ground cinnamon", + "minced garlic", + "chili powder", + "cayenne pepper", + "sour cream" + ] + }, + { + "id": 6079, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "salt", + "ground red pepper", + "seaweed", + "sesame seeds", + "rice vinegar", + "sugar", + "bean paste" + ] + }, + { + "id": 38622, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "salt", + "butter", + "sugar", + "bacon slices" + ] + }, + { + "id": 38196, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "olive oil", + "thyme sprigs", + "rosemary sprigs", + "oil", + "onions", + "fresh basil", + "sweet paprika", + "bay leaf", + "kosher salt", + "garlic cloves" + ] + }, + { + "id": 32306, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "corn kernel whole", + "sugar", + "butter", + "flour", + "milk", + "salt" + ] + }, + { + "id": 10119, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "white sugar", + "milk", + "salt", + "ground cinnamon", + "apples", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 5936, + "cuisine": "greek", + "ingredients": [ + "penne pasta", + "grated parmesan cheese", + "chicken", + "tomato paste", + "onions", + "clove", + "cinnamon sticks" + ] + }, + { + "id": 20133, + "cuisine": "russian", + "ingredients": [ + "ground black pepper", + "salt", + "white sugar", + "tomato sauce", + "diced tomatoes", + "carrots", + "water", + "garlic", + "onions", + "white vinegar", + "beef bouillon", + "lean beef", + "cabbage" + ] + }, + { + "id": 4598, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "ground red pepper", + "mustard seeds", + "chopped cilantro fresh", + "fresh curry leaves", + "cooking oil", + "salt", + "dried red chile peppers", + "chickpea flour", + "split black lentils", + "chile pepper", + "asafoetida powder", + "ground turmeric", + "water", + "potatoes", + "cumin seed", + "fresh lime juice" + ] + }, + { + "id": 5845, + "cuisine": "southern_us", + "ingredients": [ + "pimentos", + "american cheese food", + "cayenne pepper", + "mayonaise", + "onion powder", + "garlic powder", + "cream cheese" + ] + }, + { + "id": 6831, + "cuisine": "russian", + "ingredients": [ + "extra-virgin olive oil", + "caraway seeds", + "brussels sprouts" + ] + }, + { + "id": 40535, + "cuisine": "cajun_creole", + "ingredients": [ + "red snapper", + "dry white wine", + "garlic", + "shrimp", + "chopped tomatoes", + "chopped fresh thyme", + "all-purpose flour", + "celery", + "water", + "chile pepper", + "salt", + "red bell pepper", + "tomato paste", + "ground pepper", + "extra-virgin olive oil", + "scallions", + "onions" + ] + }, + { + "id": 23922, + "cuisine": "french", + "ingredients": [ + "all purpose unbleached flour", + "unsalted butter", + "ground almonds", + "salt", + "egg whites", + "confectioners sugar" + ] + }, + { + "id": 4588, + "cuisine": "jamaican", + "ingredients": [ + "white pepper", + "fresh thyme", + "chopped parsley", + "minced garlic", + "paprika", + "onions", + "pepper", + "lemon", + "medium shrimp", + "chicken stock", + "salted butter", + "salt" + ] + }, + { + "id": 13607, + "cuisine": "mexican", + "ingredients": [ + "butter", + "chopped cilantro fresh", + "salt", + "low-sodium fat-free chicken broth", + "adobo sauce", + "whipping cream", + "mango" + ] + }, + { + "id": 21937, + "cuisine": "chinese", + "ingredients": [ + "salt", + "sesame oil", + "scallions", + "rice wine", + "filet", + "ginger", + "gluten free soy sauce" + ] + }, + { + "id": 17076, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "garlic", + "red potato", + "fresh thyme", + "creole seasoning", + "fennel seeds", + "olive oil", + "salt", + "andouille sausage", + "leeks" + ] + }, + { + "id": 27578, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "baking powder", + "crushed red pepper", + "brussels sprouts", + "ground black pepper", + "bacon", + "milk", + "vegetable oil", + "all-purpose flour", + "olive oil", + "large garlic cloves" + ] + }, + { + "id": 13665, + "cuisine": "southern_us", + "ingredients": [ + "bananas", + "light cream cheese", + "pure vanilla extract", + "whole milk", + "sweetened condensed milk", + "vanilla cake mix", + "vanilla instant pudding", + "frozen whipped topping", + "vanilla wafer crumbs" + ] + }, + { + "id": 16488, + "cuisine": "spanish", + "ingredients": [ + "white bread", + "almonds", + "russet potatoes", + "red bell pepper", + "spanish onion", + "large eggs", + "garlic cloves", + "hazelnuts", + "sherry vinegar", + "extra-virgin olive oil", + "flat leaf parsley", + "kosher salt", + "ground black pepper", + "spanish paprika", + "plum tomatoes" + ] + }, + { + "id": 33519, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "ground red pepper", + "apples", + "olive oil cooking spray", + "olive oil", + "chili powder", + "tilapia", + "fresh lime juice", + "honey", + "light mayonnaise", + "salt", + "corn tortillas", + "fresh lime", + "garlic powder", + "onion powder", + "smoked paprika", + "cabbage" + ] + }, + { + "id": 45487, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "whole milk", + "large eggs", + "boiling water", + "vanilla beans", + "ice cream", + "low-fat vanilla yogurt", + "half & half" + ] + }, + { + "id": 30623, + "cuisine": "chinese", + "ingredients": [ + "cooked brown rice", + "beef", + "navel oranges", + "canola oil", + "fresh ginger", + "large garlic cloves", + "corn starch", + "reduced sodium soy sauce", + "red pepper flakes", + "green beans", + "reduced sodium chicken broth", + "green onions", + "yellow bell pepper" + ] + }, + { + "id": 28081, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "old bay seasoning", + "all-purpose flour", + "grits", + "chopped green bell pepper", + "crushed red pepper", + "pork loin chops", + "baby portobello mushrooms", + "low sodium chicken broth", + "salt", + "red bell pepper", + "olive oil", + "chopped celery", + "diced tomatoes with garlic and onion", + "dried oregano" + ] + }, + { + "id": 38779, + "cuisine": "irish", + "ingredients": [ + "milk", + "salt", + "anise seed", + "leeks", + "pepper", + "butter", + "caraway seeds", + "potatoes", + "cabbage" + ] + }, + { + "id": 19462, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "chopped pecans", + "sugar", + "vanilla", + "brown sugar", + "butter", + "cinnamon", + "large marshmallows" + ] + }, + { + "id": 2820, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "Kikkoman Less Sodium Soy Sauce", + "onions", + "sherry", + "barbecued pork", + "refrigerated bread dough", + "garlic", + "Kikkoman Oyster Sauce", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 18234, + "cuisine": "chinese", + "ingredients": [ + "peanuts", + "szechwan peppercorns", + "scallions", + "onions", + "sugar", + "rice wine", + "salt", + "garlic cloves", + "cold water", + "fresh ginger root", + "cornflour", + "oil", + "chicken thighs", + "soy sauce", + "chili powder", + "rice vinegar", + "chillies" + ] + }, + { + "id": 106, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "fresh ginger", + "rice vinegar", + "dressing", + "lime", + "red cabbage", + "carrots", + "minced garlic", + "mirin", + "green pepper", + "green cabbage", + "honey", + "green onions", + "toasted almonds" + ] + }, + { + "id": 35646, + "cuisine": "brazilian", + "ingredients": [ + "water", + "cachaca", + "mint leaves", + "granulated sugar", + "fresh lime juice" + ] + }, + { + "id": 34811, + "cuisine": "thai", + "ingredients": [ + "ground chicken", + "oil", + "dry bread crumbs", + "chopped cilantro fresh", + "green onions", + "fresh lemon juice", + "sweet chili sauce", + "ground coriander" + ] + }, + { + "id": 37786, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "medium shrimp", + "green bell pepper", + "salt", + "tomatoes", + "cooking spray", + "onions", + "curry powder", + "long-grain rice" + ] + }, + { + "id": 25083, + "cuisine": "mexican", + "ingredients": [ + "salmon", + "purple onion", + "capers", + "fresh orange juice", + "fresh lime juice", + "orange", + "salt", + "lettuce", + "fresh cilantro", + "poblano chiles" + ] + }, + { + "id": 2323, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "carrots", + "peanuts", + "garlic", + "chicken", + "red pepper flakes", + "corn starch", + "green onions", + "Kung Pao sauce" + ] + }, + { + "id": 11431, + "cuisine": "vietnamese", + "ingredients": [ + "red cabbage", + "tamari soy sauce", + "carrots", + "apple cider vinegar", + "rolls", + "greens", + "extra firm tofu", + "maple syrup", + "apricots", + "tomato paste", + "ginger", + "juice" + ] + }, + { + "id": 46567, + "cuisine": "italian", + "ingredients": [ + "mushroom caps", + "asiago", + "large shrimp", + "fat free less sodium chicken broth", + "chopped fresh chives", + "garlic cloves", + "fettucine", + "finely chopped onion", + "salt", + "olive oil", + "dry white wine", + "flat leaf parsley" + ] + }, + { + "id": 46774, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil spray", + "green onions", + "cracked black pepper", + "yellow corn meal", + "large eggs", + "all purpose unbleached flour", + "salt", + "unsalted butter", + "baking powder", + "extra-virgin olive oil", + "sugar", + "grated parmesan cheese", + "buttermilk" + ] + }, + { + "id": 47098, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "russet potatoes", + "green beans", + "celery ribs", + "kale", + "purple onion", + "fresh parsley", + "savoy cabbage", + "zucchini", + "carrots", + "pancetta", + "great northern beans", + "extra-virgin olive oil", + "low salt chicken broth" + ] + }, + { + "id": 16279, + "cuisine": "italian", + "ingredients": [ + "ground pepper", + "salt", + "eggs", + "grated parmesan cheese", + "yellow corn meal", + "ground nutmeg", + "ham", + "milk", + "butter" + ] + }, + { + "id": 27294, + "cuisine": "southern_us", + "ingredients": [ + "turkey kielbasa", + "crawfish", + "medium shrimp", + "shuck corn", + "water" + ] + }, + { + "id": 27899, + "cuisine": "french", + "ingredients": [ + "eggplant", + "grated parmesan cheese", + "freshly ground pepper", + "roquefort cheese", + "prepared pie crusts", + "portabello mushroom", + "cream cheese, soften", + "zucchini", + "shallots", + "red bell pepper", + "olive oil", + "large eggs", + "salt" + ] + }, + { + "id": 6925, + "cuisine": "french", + "ingredients": [ + "fat free milk", + "all-purpose flour", + "water", + "cooking spray", + "sugar", + "dry yeast", + "margarine", + "large egg whites", + "salt" + ] + }, + { + "id": 9272, + "cuisine": "italian", + "ingredients": [ + "salt", + "butter", + "polenta" + ] + }, + { + "id": 29318, + "cuisine": "french", + "ingredients": [ + "white wine", + "butter", + "onions", + "stock", + "flour", + "bay leaf", + "tomatoes", + "dried thyme", + "lard", + "tomato paste", + "pepper", + "salt", + "meat glaze" + ] + }, + { + "id": 40264, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "garlic cloves", + "seasoned bread crumbs", + "finely chopped onion", + "fresh parsley", + "fresh parmesan cheese", + "ground turkey", + "low-fat spaghetti sauce", + "italian rolls", + "olive oil flavored cooking spray" + ] + }, + { + "id": 30546, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "taco shells", + "yellow onion", + "tomato paste", + "cheddar cheese", + "coarse salt", + "iceberg lettuce", + "avocado", + "pico de gallo", + "chili powder", + "ground turkey", + "tomatoes", + "olive oil", + "sour cream" + ] + }, + { + "id": 43200, + "cuisine": "italian", + "ingredients": [ + "rosemary", + "dried pappardelle", + "cremini mushrooms", + "balsamic vinegar", + "juice", + "boneless chicken skinless thigh", + "extra-virgin olive oil", + "onions", + "tomatoes", + "baby arugula", + "garlic cloves" + ] + }, + { + "id": 36573, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "cayenne pepper", + "onions", + "fresh ginger", + "salt", + "ground coriander", + "jalapeno chilies", + "cilantro leaves", + "garlic cloves", + "water", + "diced tomatoes", + "chickpeas", + "ground cumin" + ] + }, + { + "id": 34357, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "salt", + "dried thyme", + "dry sherry", + "chopped parsley", + "pepper", + "shallots", + "fat skimmed chicken broth", + "olive oil", + "whipping cream", + "chicken" + ] + }, + { + "id": 23237, + "cuisine": "indian", + "ingredients": [ + "tandoori paste", + "shoulder lamb chops" + ] + }, + { + "id": 37922, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "honey", + "crimini mushrooms", + "lemon", + "button mushrooms", + "whole milk greek yogurt", + "onions", + "ground cloves", + "mushrooms", + "lemon wedge", + "paprika", + "cumin seed", + "mustard seeds", + "ground turmeric", + "tomatoes", + "garam masala", + "true cinnamon", + "coarse sea salt", + "ground coriander", + "ground cardamom", + "frozen peas", + "kale", + "fenugreek", + "vegetable oil", + "cilantro", + "garlic cloves", + "ground beef", + "ground cumin" + ] + }, + { + "id": 35213, + "cuisine": "french", + "ingredients": [ + "baguette", + "extra-virgin olive oil", + "grated orange", + "fennel seeds", + "orange", + "garlic cloves", + "water", + "orange juice", + "capers", + "ground black pepper", + "olives" + ] + }, + { + "id": 7197, + "cuisine": "japanese", + "ingredients": [ + "sweet red bean paste", + "white sugar", + "corn starch", + "water", + "sweet rice flour", + "green tea powder" + ] + }, + { + "id": 13216, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "canola oil", + "tomato sauce", + "red enchilada sauce", + "thin spaghetti", + "yellow onion", + "Mexican cheese blend", + "diced tomatoes and green chilies" + ] + }, + { + "id": 37854, + "cuisine": "thai", + "ingredients": [ + "lime", + "mint leaves", + "large garlic cloves", + "fish sauce", + "bell pepper", + "coarse salt", + "toasted sesame oil", + "baby bok choy", + "jalapeno chilies", + "watercress", + "snow peas", + "neutral oil", + "peanuts", + "rice noodles", + "scallions" + ] + }, + { + "id": 24744, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "large eggs", + "part-skim ricotta cheese", + "spicy pork sausage", + "dried basil", + "diced tomatoes", + "ground beef", + "dried oregano", + "mozzarella cheese", + "marinara sauce", + "garlic cloves", + "noodles", + "ground black pepper", + "crushed red pepper flakes", + "onions" + ] + }, + { + "id": 48169, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "olive oil", + "chopped celery", + "lemon juice", + "baby spinach leaves", + "water", + "orzo", + "chopped onion", + "fat free less sodium chicken broth", + "finely chopped fresh parsley", + "salt", + "carrots", + "chicken breast tenders", + "bay leaves", + "fresh oregano" + ] + }, + { + "id": 35890, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "lemon", + "macaroni", + "lemon juice", + "olive oil", + "salt", + "grated parmesan cheese", + "greens" + ] + }, + { + "id": 21049, + "cuisine": "japanese", + "ingredients": [ + "pepper", + "salt", + "flour", + "eggs", + "baking powder", + "water", + "corn starch" + ] + }, + { + "id": 23575, + "cuisine": "brazilian", + "ingredients": [ + "egg yolks", + "shredded coconut", + "white sugar", + "butter", + "egg whites" + ] + }, + { + "id": 12742, + "cuisine": "indian", + "ingredients": [ + "neutral oil", + "fresh ginger", + "garlic", + "cumin seed", + "chicken thighs", + "tomato paste", + "cream", + "unsalted butter", + "yellow onion", + "greek yogurt", + "ground cumin", + "chicken stock", + "red chili peppers", + "garam masala", + "cilantro leaves", + "lemon juice", + "ground turmeric", + "tomatoes", + "kosher salt", + "jalapeno chilies", + "ground almonds", + "cinnamon sticks" + ] + }, + { + "id": 31548, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "ginger", + "sugar", + "mirin", + "basmati rice", + "tilapia fillets", + "lemon juice", + "red chili peppers", + "spring onions" + ] + }, + { + "id": 37201, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "salt", + "Mexican oregano", + "water", + "bay leaf", + "purple onion" + ] + }, + { + "id": 6007, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "meatballs", + "shredded mozzarella cheese", + "olive oil", + "spaghetti squash", + "marinara sauce" + ] + }, + { + "id": 5822, + "cuisine": "russian", + "ingredients": [ + "ground black pepper", + "salt", + "eggs", + "condensed tomato soup", + "cabbage", + "lean ground beef", + "chopped onion", + "water", + "white rice" + ] + }, + { + "id": 40144, + "cuisine": "southern_us", + "ingredients": [ + "low sodium chicken broth", + "dry pasta", + "garlic cloves", + "pepper", + "butter", + "all-purpose flour", + "extra sharp cheddar cheese", + "unsalted butter", + "dry mustard", + "cayenne pepper", + "low-fat milk", + "colby jack cheese", + "salt", + "panko breadcrumbs" + ] + }, + { + "id": 29040, + "cuisine": "indian", + "ingredients": [ + "clove", + "vegetable oil", + "cinnamon sticks", + "water", + "cardamom seeds", + "garlic powder", + "salt", + "black peppercorns", + "green peas", + "basmati rice" + ] + }, + { + "id": 27475, + "cuisine": "greek", + "ingredients": [ + "dried basil", + "zucchini", + "garlic cloves", + "dried oregano", + "olive oil", + "purple onion", + "red bell pepper", + "yellow squash", + "mushrooms", + "feta cheese crumbles", + "pepper", + "chopped green bell pepper", + "salt", + "cooked long-grain brown rice" + ] + }, + { + "id": 4865, + "cuisine": "thai", + "ingredients": [ + "asian eggplants", + "thai basil", + "sauce", + "soy sauce", + "green onions", + "garlic cloves", + "fish sauce", + "extra firm tofu", + "peanut oil", + "lime juice", + "stevia", + "red bell pepper" + ] + }, + { + "id": 6428, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "milk", + "salt", + "shortening", + "garlic powder", + "fresh parsley", + "chicken bouillon granules", + "dried thyme", + "poultry seasoning", + "pepper", + "self rising flour", + "chicken" + ] + }, + { + "id": 44904, + "cuisine": "spanish", + "ingredients": [ + "oloroso sherry", + "shallots", + "manchego cheese", + "whipping cream", + "bread", + "morel", + "minced garlic", + "butter" + ] + }, + { + "id": 32289, + "cuisine": "mexican", + "ingredients": [ + "shredded reduced fat cheddar cheese", + "green chile", + "cooking spray", + "nonfat buttermilk", + "cream style corn", + "corn mix muffin", + "unsalted pumpkinseed kernels" + ] + }, + { + "id": 28981, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "lime wedges", + "buckwheat soba noodles", + "store bought low sodium chicken broth", + "enokitake", + "scallions", + "soy sauce", + "sesame oil", + "large shrimp", + "Sriracha", + "seaweed" + ] + }, + { + "id": 36582, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "potatoes", + "eggs", + "olive oil", + "hot Italian sausages", + "milk", + "salsa", + "cheddar cheese", + "flour tortillas", + "onions" + ] + }, + { + "id": 11721, + "cuisine": "italian", + "ingredients": [ + "all-purpose flour", + "vanilla extract", + "confectioners sugar", + "unsalted butter", + "ground almonds", + "salt" + ] + }, + { + "id": 42465, + "cuisine": "british", + "ingredients": [ + "large eggs", + "salt", + "pan drippings", + "milk", + "all-purpose flour" + ] + }, + { + "id": 34794, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "fresh orange juice", + "fresh lime juice", + "finely chopped onion", + "baked tortilla chips", + "chopped cilantro fresh", + "chipotle chile", + "salt", + "medium shrimp", + "avocado", + "jicama", + "red bell pepper" + ] + }, + { + "id": 14201, + "cuisine": "italian", + "ingredients": [ + "rocket leaves", + "water", + "grated lemon zest", + "white wine", + "shallots", + "Italian turkey sausage", + "arborio rice", + "fat free less sodium chicken broth", + "pecorino romano cheese", + "sugar", + "olive oil", + "chopped onion" + ] + }, + { + "id": 34657, + "cuisine": "indian", + "ingredients": [ + "chopped tomatoes", + "garlic", + "ground cumin", + "water", + "paprika", + "red bell pepper", + "tumeric", + "shredded cabbage", + "carrots", + "olive oil", + "ginger", + "onions" + ] + }, + { + "id": 1227, + "cuisine": "indian", + "ingredients": [ + "black-eyed peas", + "cilantro leaves", + "tomatoes", + "coriander powder", + "ground turmeric", + "garam masala", + "oil", + "garlic paste", + "chili powder" + ] + }, + { + "id": 43984, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "buttermilk", + "ground white pepper", + "flour", + "poultry seasoning", + "canola oil", + "ground black pepper", + "salt", + "chicken pieces", + "onion powder", + "smoked paprika" + ] + }, + { + "id": 21940, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "chicken breasts", + "rice vinegar", + "peanuts", + "crushed red pepper flakes", + "garlic cloves", + "soy sauce", + "sesame oil", + "broccoli", + "ground ginger", + "green onions", + "salt", + "corn starch" + ] + }, + { + "id": 24514, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "green chilies", + "shredded monterey jack cheese", + "milk", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 18657, + "cuisine": "italian", + "ingredients": [ + "water", + "raisins", + "dry white wine", + "grated lemon zest", + "white bread", + "butter", + "white sugar", + "rum", + "apples" + ] + }, + { + "id": 11399, + "cuisine": "brazilian", + "ingredients": [ + "tapioca flour", + "salt", + "butter", + "eggs", + "cheese", + "milk" + ] + }, + { + "id": 29629, + "cuisine": "italian", + "ingredients": [ + "white wine", + "garlic", + "plum tomatoes", + "chicken broth", + "giblet", + "onions", + "celery ribs", + "olive oil", + "salt", + "arborio rice", + "ground black pepper", + "carrots" + ] + }, + { + "id": 18796, + "cuisine": "mexican", + "ingredients": [ + "frozen whole kernel corn", + "elbow macaroni", + "lean ground beef", + "McCormick Taco Seasoning", + "colby jack cheese", + "tomato sauce low sodium", + "water", + "diced tomatoes" + ] + }, + { + "id": 6054, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "salad greens", + "large eggs", + "shallots", + "fresh lemon juice", + "lump crab meat", + "panko", + "green onions", + "salt", + "black pepper", + "olive oil", + "cooking spray", + "worcestershire sauce", + "water", + "dijon mustard", + "light mayonnaise", + "lemon rind" + ] + }, + { + "id": 21359, + "cuisine": "japanese", + "ingredients": [ + "bonito flakes", + "dried sardines", + "cold water", + "kelp", + "shiitake" + ] + }, + { + "id": 2656, + "cuisine": "vietnamese", + "ingredients": [ + "lime", + "spring onions", + "cucumber", + "peeled prawns", + "roasted peanuts", + "chillies", + "Kikkoman Soy Sauce", + "cilantro leaves", + "toasted sesame oil", + "spring roll wrappers", + "lettuce leaves", + "Thai fish sauce" + ] + }, + { + "id": 45700, + "cuisine": "mexican", + "ingredients": [ + "taco sauce", + "jalapeno chilies", + "iceberg lettuce", + "tomatoes", + "fresh cilantro", + "tortilla chips", + "avocado", + "black beans", + "yellow corn", + "vidalia onion", + "lime", + "taco seasoning" + ] + }, + { + "id": 41687, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "shallots", + "fresh basil leaves", + "parmesan cheese", + "garlic", + "olive oil", + "butter", + "dry white wine", + "fat skimmed reduced sodium chicken broth" + ] + }, + { + "id": 49604, + "cuisine": "greek", + "ingredients": [ + "fresh lemon juice", + "water", + "frozen blueberries", + "sugar", + "greek yogurt", + "butter", + "blackberries" + ] + }, + { + "id": 15422, + "cuisine": "cajun_creole", + "ingredients": [ + "shucked oysters", + "cayenne", + "Italian bread", + "yellow corn meal", + "black pepper", + "vegetable oil", + "eggs", + "milk", + "salt", + "mayonaise", + "flour", + "iceberg lettuce" + ] + }, + { + "id": 27163, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "mint sprigs", + "mint leaves", + "crushed ice", + "water", + "lemon slices", + "tea bags", + "bourbon whiskey" + ] + }, + { + "id": 11863, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "olive oil", + "garlic cloves", + "reduced sodium chicken broth", + "salt", + "carrots", + "black pepper", + "baby arugula", + "California bay leaves", + "celery ribs", + "water", + "chickpeas", + "onions" + ] + }, + { + "id": 19733, + "cuisine": "indian", + "ingredients": [ + "water", + "cilantro", + "masala", + "crushed tomatoes", + "chickpeas", + "sugar", + "sea salt", + "onions", + "garam masala", + "oil" + ] + }, + { + "id": 4872, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "cilantro", + "water", + "loin pork roast", + "salt", + "liquid smoke", + "bourbon whiskey", + "garlic", + "lime juice", + "tomatillos", + "yellow onion" + ] + }, + { + "id": 20801, + "cuisine": "french", + "ingredients": [ + "ground cloves", + "leeks", + "carrots", + "celery ribs", + "water", + "garlic cloves", + "thyme sprigs", + "bread crumb fresh", + "cannellini beans", + "chopped parsley", + "parsley sprigs", + "olive oil", + "California bay leaves", + "chopped garlic" + ] + }, + { + "id": 37828, + "cuisine": "italian", + "ingredients": [ + "salt", + "ground black pepper", + "squid", + "all-purpose flour", + "vegetable oil" + ] + }, + { + "id": 27797, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "heavy cream", + "grated lemon zest", + "pure vanilla extract", + "unsalted butter", + "currant", + "lemon juice", + "milk", + "extra large eggs", + "apricot preserves", + "sugar", + "dark rum", + "all-purpose flour", + "fast-rising active dry yeast" + ] + }, + { + "id": 21331, + "cuisine": "chinese", + "ingredients": [ + "boiling water", + "water chestnuts", + "water chestnut powder", + "dark brown sugar" + ] + }, + { + "id": 47533, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "shallots", + "fresh lime juice", + "olive oil", + "garlic cloves", + "ground cumin", + "rib eye steaks", + "chopped tomatoes", + "cucumber", + "serrano chilies", + "ground coriander", + "chopped cilantro fresh" + ] + }, + { + "id": 19138, + "cuisine": "japanese", + "ingredients": [ + "water", + "japanese eggplants", + "mirin", + "sugar", + "miso", + "olive oil" + ] + }, + { + "id": 19738, + "cuisine": "italian", + "ingredients": [ + "spinach", + "low fat low sodium chicken broth", + "onions", + "pasta", + "kidney beans", + "garlic", + "olive oil", + "chopped fresh thyme", + "tomatoes", + "ground black pepper", + "red bell pepper" + ] + }, + { + "id": 26598, + "cuisine": "italian", + "ingredients": [ + "chioggia", + "balsamic vinegar", + "sausages", + "olive oil", + "purple onion", + "butter" + ] + }, + { + "id": 49011, + "cuisine": "thai", + "ingredients": [ + "water", + "mung beans", + "palm sugar" + ] + }, + { + "id": 14427, + "cuisine": "italian", + "ingredients": [ + "pepper", + "dry white wine", + "sausage casings", + "grated parmesan cheese", + "fresh parsley", + "cremini mushrooms", + "low sodium chicken broth", + "onions", + "arborio rice", + "olive oil", + "salt" + ] + }, + { + "id": 6123, + "cuisine": "italian", + "ingredients": [ + "cauliflower", + "onion powder", + "pepper", + "shredded mozzarella cheese", + "eggs", + "salt", + "garlic powder", + "oregano" + ] + }, + { + "id": 39278, + "cuisine": "irish", + "ingredients": [ + "black pepper", + "bay leaves", + "salt", + "garlic cloves", + "green bell pepper", + "potatoes", + "vegetable oil", + "chopped onion", + "cinnamon sticks", + "fat free less sodium chicken broth", + "sliced carrots", + "all-purpose flour", + "leg of lamb", + "dry vermouth", + "cooking spray", + "apple cider", + "lemon rind", + "red bell pepper" + ] + }, + { + "id": 22723, + "cuisine": "spanish", + "ingredients": [ + "cilantro sprigs", + "chunky salsa", + "large eggs", + "dry bread crumbs", + "dressing", + "cheese", + "vegetable oil", + "chopped cilantro fresh" + ] + }, + { + "id": 24712, + "cuisine": "french", + "ingredients": [ + "cocoa", + "salt", + "superfine sugar", + "instant espresso granules", + "unsweetened cocoa powder", + "cream of tartar", + "large egg whites" + ] + }, + { + "id": 44907, + "cuisine": "french", + "ingredients": [ + "butter", + "large eggs", + "cake flour", + "sugar", + "vanilla extract", + "cooking spray", + "salt" + ] + }, + { + "id": 39825, + "cuisine": "british", + "ingredients": [ + "liver pate", + "button mushrooms", + "butter", + "salt", + "frozen pastry puff sheets", + "beef tenderloin", + "pepper", + "red wine", + "onions" + ] + }, + { + "id": 2733, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "salsa", + "cooked chicken", + "canola oil", + "salsa verde", + "lard", + "white onion", + "queso fresco", + "masa harina" + ] + }, + { + "id": 17328, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "salt", + "extra-virgin olive oil", + "white sugar", + "red wine", + "fresh basil leaves", + "water", + "garlic" + ] + }, + { + "id": 18052, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "fresh mozzarella", + "cornmeal", + "warm water", + "basil leaves", + "salt", + "ground black pepper", + "all purpose unbleached flour", + "plum tomatoes", + "parmigiano reggiano cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 24389, + "cuisine": "cajun_creole", + "ingredients": [ + "red snapper", + "ground black pepper", + "extra-virgin olive oil", + "garlic cloves", + "celery ribs", + "water", + "dry white wine", + "all-purpose flour", + "red bell pepper", + "cooked rice", + "jalapeno chilies", + "salt", + "shrimp", + "tomato paste", + "chopped tomatoes", + "chopped fresh thyme", + "scallions", + "onions" + ] + }, + { + "id": 31612, + "cuisine": "italian", + "ingredients": [ + "water", + "cannellini beans", + "black pepper", + "fresh parmesan cheese", + "Italian turkey sausage", + "cherry tomatoes", + "salt", + "egg substitute", + "finely chopped onion" + ] + }, + { + "id": 39163, + "cuisine": "irish", + "ingredients": [ + "brisket", + "baby carrots", + "mustard", + "beef brisket", + "green cabbage", + "water", + "red potato", + "flat cut" + ] + }, + { + "id": 32213, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "grated parmesan cheese", + "yellow corn meal", + "fresh bay leaves", + "heavy cream", + "unsalted butter", + "whole milk", + "kosher salt", + "fresh thyme", + "garlic cloves" + ] + }, + { + "id": 37178, + "cuisine": "thai", + "ingredients": [ + "seasoning", + "crusty bread", + "shallots", + "chile sauce", + "kaffir lime leaves", + "lime", + "extra-virgin olive oil", + "mussels", + "sake", + "fresh ginger", + "light coconut milk", + "curry leaves", + "lemongrass", + "Thai red curry paste" + ] + }, + { + "id": 15675, + "cuisine": "spanish", + "ingredients": [ + "balsamic vinegar", + "italian seasoning", + "pimento stuffed olives", + "kalamata", + "olive oil", + "ripe olives" + ] + }, + { + "id": 8531, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "napa cabbage", + "salt", + "soy sauce", + "green onions", + "dipping sauces", + "ground round", + "sesame seeds", + "ground pork", + "garlic cloves", + "won ton wrappers", + "sesame oil", + "crushed red pepper" + ] + }, + { + "id": 38616, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "sliced cucumber", + "cilantro leaves", + "canola oil", + "fish sauce", + "pork tenderloin", + "ground red pepper", + "fresh lime juice", + "lower sodium soy sauce", + "peeled fresh ginger", + "fresh mint", + "sliced green onions", + "romaine lettuce", + "cooking spray", + "purple onion", + "serrano chile" + ] + }, + { + "id": 41644, + "cuisine": "italian", + "ingredients": [ + "smoked turkey", + "grated lemon zest", + "canola mayonnaise", + "white bread", + "cooking spray", + "garlic cloves", + "ground black pepper", + "provolone cheese", + "lime rind", + "watercress", + "fresh lemon juice" + ] + }, + { + "id": 10523, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "salt", + "vegetable oil", + "okra pods", + "baking powder", + "all-purpose flour", + "eggs", + "buttermilk", + "cornmeal" + ] + }, + { + "id": 19255, + "cuisine": "mexican", + "ingredients": [ + "KRAFT Shredded Colby & Monterey Jack Cheese", + "ground cumin", + "pico de gallo", + "boneless skinless chicken breasts", + "flour tortillas", + "KRAFT Zesty Lime Vinaigrette Dressing", + "corn-on-the-cob" + ] + }, + { + "id": 33734, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "jalapeno chilies", + "garlic", + "dried parsley", + "bacon drippings", + "water", + "Mexican oregano", + "salt", + "red chili peppers", + "flour", + "beef stew meat", + "ground cumin", + "tomato paste", + "hungarian paprika", + "chili powder", + "onions" + ] + }, + { + "id": 41210, + "cuisine": "indian", + "ingredients": [ + "water", + "cilantro leaves", + "onions", + "boneless chicken", + "lemon juice", + "flour", + "green chilies", + "masala", + "red chili peppers", + "salt", + "ghee" + ] + }, + { + "id": 35855, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "eggs", + "onions", + "Mexican cheese blend", + "chorizo sausage", + "tomatoes", + "tortilla chips" + ] + }, + { + "id": 13709, + "cuisine": "french", + "ingredients": [ + "vegetable oil", + "seltzer", + "smoked paprika", + "all-purpose flour", + "sole fillet" + ] + }, + { + "id": 11690, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "base", + "rice noodles", + "chicken stock cubes", + "pork shoulder roast", + "onion powder", + "butter", + "bok choy", + "water", + "grated parmesan cheese", + "cajun seasoning", + "cilantro leaves", + "seasoning salt", + "lime wedges", + "crushed red pepper flakes" + ] + }, + { + "id": 16643, + "cuisine": "chinese", + "ingredients": [ + "salt and ground black pepper", + "ground pork", + "romaine lettuce", + "slider buns", + "rice vinegar", + "hoisin sauce", + "ginger", + "mayonaise", + "green onions", + "panko breadcrumbs" + ] + }, + { + "id": 4192, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "water", + "garlic powder", + "yoghurt", + "ginger", + "chopped onion", + "coriander", + "warm water", + "olive oil", + "garam masala", + "butter", + "all-purpose flour", + "juice", + "plain yogurt", + "chopped tomatoes", + "ground black pepper", + "heavy cream", + "cayenne pepper", + "chicken thighs", + "sugar", + "active dry yeast", + "baking soda", + "cinnamon", + "salt", + "oil", + "cumin" + ] + }, + { + "id": 3950, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "pesto", + "chicken breast halves", + "herbs" + ] + }, + { + "id": 41480, + "cuisine": "jamaican", + "ingredients": [ + "green onions", + "pepper", + "chicken", + "fresh thyme leaves", + "seasoning salt", + "allspice" + ] + }, + { + "id": 25325, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "extra-virgin olive oil", + "prosciutto", + "black pepper", + "salt", + "pork tenderloin" + ] + }, + { + "id": 15354, + "cuisine": "brazilian", + "ingredients": [ + "sweetened condensed milk", + "sugar", + "milk", + "eggs" + ] + }, + { + "id": 43281, + "cuisine": "filipino", + "ingredients": [ + "rapeseed oil", + "fresh ginger", + "chicken", + "frozen chopped spinach", + "coconut milk", + "salt and ground black pepper" + ] + }, + { + "id": 43982, + "cuisine": "indian", + "ingredients": [ + "green chilies", + "onions", + "cilantro leaves" + ] + }, + { + "id": 26444, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "Thai red curry paste", + "scallions", + "thai basil", + "garlic", + "buckwheat soba noodles", + "fresh ginger", + "light coconut milk", + "onions", + "zucchini", + "peanut oil", + "japanese eggplants" + ] + }, + { + "id": 11956, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "butter", + "creole mustard", + "buns", + "hot sauce", + "mayonaise", + "pepperoncini", + "bread", + "pickles", + "onions" + ] + }, + { + "id": 47993, + "cuisine": "cajun_creole", + "ingredients": [ + "jambalaya", + "shrimp", + "hot pepper sauce", + "olive oil", + "tomatoes", + "kielbasa" + ] + }, + { + "id": 12416, + "cuisine": "japanese", + "ingredients": [ + "baby spinach leaves", + "firm tofu", + "sugar", + "large eggs", + "salad oil", + "cooked rice", + "fresh ginger", + "fat skimmed chicken broth", + "soy sauce", + "roma tomatoes", + "onions" + ] + }, + { + "id": 8298, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "salt", + "lime juice", + "white onion", + "garlic cloves", + "tomatoes", + "olive oil" + ] + }, + { + "id": 17657, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "self-rising cornmeal", + "ground cinnamon", + "sweet potatoes", + "large eggs", + "sugar", + "butter" + ] + }, + { + "id": 5047, + "cuisine": "irish", + "ingredients": [ + "ground cinnamon", + "mixed dried fruit", + "marmalade", + "sugar", + "flour", + "baking soda", + "brewed tea", + "eggs", + "ground nutmeg", + "grated orange" + ] + }, + { + "id": 14536, + "cuisine": "irish", + "ingredients": [ + "mild olive oil", + "beef", + "garlic", + "bay leaf", + "ground pepper", + "balsamic vinegar", + "carrots", + "pearl onions", + "herbs", + "beef broth", + "celery ribs", + "gold potatoes", + "sea salt", + "table wine" + ] + }, + { + "id": 20946, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "sweetened condensed milk", + "sugar" + ] + }, + { + "id": 26675, + "cuisine": "italian", + "ingredients": [ + "strawberries", + "hot water", + "sugar", + "fresh lemon juice" + ] + }, + { + "id": 6730, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "monterey jack", + "minced garlic", + "crimini mushrooms", + "corn tortilla chips", + "green onions", + "chili", + "poblano chilies" + ] + }, + { + "id": 24412, + "cuisine": "indian", + "ingredients": [ + "lettuce", + "cottage cheese", + "broccoli florets", + "ginger", + "green chilies", + "onions", + "fennel seeds", + "olive oil", + "mint sprigs", + "garlic", + "red bell pepper", + "ground cumin", + "green bell pepper", + "garam masala", + "cilantro", + "salt", + "fresh mint", + "chickpea flour", + "plain yogurt", + "lemon", + "yellow bell pepper", + "lemon juice", + "chaat masala" + ] + }, + { + "id": 23943, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "unsalted butter", + "ice water", + "all-purpose flour", + "ground cloves", + "bosc pears", + "salt", + "sugar", + "orange marmalade", + "raisins", + "corn starch", + "brandy", + "egg yolks", + "vanilla extract" + ] + }, + { + "id": 9849, + "cuisine": "chinese", + "ingredients": [ + "honey", + "red chili peppers", + "ginger", + "chicken wings", + "spring onions", + "soy sauce", + "thyme leaves" + ] + }, + { + "id": 13576, + "cuisine": "italian", + "ingredients": [ + "semolina flour", + "gluten", + "olive oil", + "water", + "salt", + "instant yeast" + ] + }, + { + "id": 718, + "cuisine": "mexican", + "ingredients": [ + "condensed cream of chicken soup", + "sour cream", + "diced onions", + "flour tortillas", + "shredded cheddar cheese", + "boneless skinless chicken breast halves", + "chili beans", + "salsa" + ] + }, + { + "id": 11564, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "scallions", + "chinese rice wine", + "salt", + "ground white pepper", + "chicken stock", + "large eggs", + "corn starch", + "sugar", + "dried shiitake mushrooms" + ] + }, + { + "id": 40753, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "lemon pepper seasoning", + "garbanzo beans", + "black pepper", + "creole seasoning" + ] + }, + { + "id": 40214, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "crushed red pepper", + "spinach", + "olive oil", + "chicken", + "dried basil", + "garlic cloves", + "romano cheese", + "diced tomatoes" + ] + }, + { + "id": 35524, + "cuisine": "italian", + "ingredients": [ + "warm water", + "cooking spray", + "grated orange", + "turbinado", + "olive oil", + "salt", + "figs", + "dry yeast", + "all-purpose flour", + "honey", + "anise" + ] + }, + { + "id": 45616, + "cuisine": "french", + "ingredients": [ + "pie dough", + "cooking spray", + "caramel topping", + "ground cinnamon", + "large egg whites", + "salt", + "turbinado", + "water", + "vanilla extract", + "fresh lemon juice", + "granny smith apples", + "granulated sugar", + "all-purpose flour" + ] + }, + { + "id": 20040, + "cuisine": "thai", + "ingredients": [ + "olive oil", + "salt", + "lemongrass", + "shallots", + "chopped cilantro fresh", + "watermelon", + "hot green chile", + "chopped garlic", + "lump crab meat", + "peeled fresh ginger", + "fresh lime juice" + ] + }, + { + "id": 37403, + "cuisine": "thai", + "ingredients": [ + "sugar", + "ground black pepper", + "thai chile", + "long-grain rice", + "fish sauce", + "water", + "basil", + "purple onion", + "soy sauce", + "vegetable oil", + "garlic", + "iceberg lettuce", + "chiles", + "lime juice", + "ground pork", + "salt" + ] + }, + { + "id": 34478, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "ground red pepper", + "fresh lime juice", + "dried apricot", + "salt", + "fresh pineapple", + "lime rind", + "cooking spray", + "ground allspice", + "center cut loin pork chop", + "jalapeno chilies", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 31104, + "cuisine": "indian", + "ingredients": [ + "water", + "cider", + "mango chutney", + "lemon juice", + "curry powder", + "cayenne pepper", + "plain yogurt", + "top sirloin steak", + "ground cumin" + ] + }, + { + "id": 15536, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "ground red pepper", + "ground coriander", + "fat free yogurt", + "salt", + "garlic cloves", + "spinach", + "vegetable broth", + "cumin seed", + "olive oil", + "chickpeas", + "onions" + ] + }, + { + "id": 24766, + "cuisine": "mexican", + "ingredients": [ + "flour", + "purple onion", + "cornmeal", + "mozzarella cheese", + "lean ground beef", + "chopped onion", + "avocado", + "green onions", + "pizza doughs", + "roma tomatoes", + "garlic", + "taco seasoning" + ] + }, + { + "id": 28632, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "parsley", + "cayenne pepper", + "sugar", + "chopped tomatoes", + "garlic", + "olive oil", + "kalamata", + "fish", + "white onion", + "roasted red peppers", + "salt" + ] + }, + { + "id": 37047, + "cuisine": "italian", + "ingredients": [ + "eggs", + "panko", + "risotto", + "salt", + "spinach", + "fresh mozzarella", + "pepper", + "all-purpose flour" + ] + }, + { + "id": 31341, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "cachaca", + "lime wedges", + "kumquats", + "ice", + "rosemary sprigs", + "rosemary needles" + ] + }, + { + "id": 14535, + "cuisine": "chinese", + "ingredients": [ + "chicken wings", + "water", + "sesame oil", + "salt", + "chicken", + "stock", + "soy sauce", + "rice wine", + "star anise", + "black vinegar", + "cold water", + "pork", + "green onions", + "ginger", + "hot water", + "sugar", + "fresh ginger", + "ground pork", + "all-purpose flour" + ] + }, + { + "id": 43509, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "vanilla extract", + "whole milk", + "unsweetened cocoa powder", + "mini marshmallows", + "nuts", + "sugar", + "flaked coconut" + ] + }, + { + "id": 49397, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "water", + "chili powder", + "italian seasoning", + "ketchup", + "salt and ground black pepper", + "ground beef", + "eggs", + "bread crumbs", + "finely chopped onion", + "white sugar", + "tomato sauce", + "milk", + "worcestershire sauce" + ] + }, + { + "id": 20125, + "cuisine": "indian", + "ingredients": [ + "water", + "yellow lentils", + "fresh lemon juice", + "ground red pepper", + "cumin seed", + "plum tomatoes", + "fresh cilantro", + "salt", + "ground turmeric", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 21068, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "lime juice", + "ground black pepper", + "sour cream", + "ground turmeric", + "minced garlic", + "olive oil", + "chopped celery", + "onions", + "red lentils", + "lime", + "vegetable broth", + "roasted tomatoes", + "ground cumin", + "water", + "Tabasco Green Pepper Sauce", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 9247, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "ground black pepper", + "flat leaf parsley", + "ground chicken", + "milk", + "ground pork", + "eggs", + "minced garlic", + "lean ground beef", + "bread crumbs", + "olive oil", + "cheese" + ] + }, + { + "id": 5124, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "skinless chicken breasts", + "curry paste", + "butter", + "cinnamon sticks", + "coriander", + "sliced almonds", + "cardamom pods", + "onions", + "chicken stock", + "raisins", + "bay leaf", + "basmati rice" + ] + }, + { + "id": 27594, + "cuisine": "cajun_creole", + "ingredients": [ + "old bay seasoning", + "ear of corn", + "red potato", + "yellow onion", + "garlic", + "large shrimp", + "lemon", + "smoked pork" + ] + }, + { + "id": 4935, + "cuisine": "italian", + "ingredients": [ + "purple onion", + "olive oil", + "mint", + "fresh fava bean", + "fine sea salt" + ] + }, + { + "id": 502, + "cuisine": "spanish", + "ingredients": [ + "sea salt", + "olive oil", + "bell pepper" + ] + }, + { + "id": 8245, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "red bell pepper", + "duck", + "corn tortillas", + "prepar salsa", + "sour cream", + "lime", + "hearts of romaine" + ] + }, + { + "id": 35786, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "warm water", + "all-purpose flour", + "shortening", + "active dry yeast", + "bread flour", + "cocoa", + "salt" + ] + }, + { + "id": 36371, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "eggs", + "grated parmesan cheese", + "dried parsley", + "ground black pepper", + "dry bread crumbs", + "water", + "white rice" + ] + }, + { + "id": 32798, + "cuisine": "southern_us", + "ingredients": [ + "ice cubes", + "bourbon whiskey", + "water", + "crushed ice", + "sugar", + "simple syrup", + "mint leaves" + ] + }, + { + "id": 6765, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "all-purpose flour", + "chopped garlic", + "sweet potatoes", + "kimchi", + "large eggs", + "scallions", + "corn oil", + "serrano chile" + ] + }, + { + "id": 19642, + "cuisine": "filipino", + "ingredients": [ + "Accent Seasoning", + "bay leaves", + "white vinegar", + "soy sauce", + "garlic cloves", + "chicken wings", + "vegetable oil", + "black peppercorns", + "water" + ] + }, + { + "id": 3492, + "cuisine": "greek", + "ingredients": [ + "rosemary sprigs", + "squid", + "fresh parsley", + "tentacles", + "olive oil", + "bread slices", + "water", + "garlic cloves", + "onions", + "black peppercorns", + "white wine vinegar", + "bay leaf" + ] + }, + { + "id": 32457, + "cuisine": "southern_us", + "ingredients": [ + "fat free less sodium chicken broth", + "egg noodles", + "garlic cloves", + "reduced sodium smoked ham", + "ground black pepper", + "chopped onion", + "dried oregano", + "collard greens", + "dried thyme", + "chopped celery", + "red bell pepper", + "cider vinegar", + "butter", + "carrots" + ] + }, + { + "id": 29777, + "cuisine": "mexican", + "ingredients": [ + "boneless pork shoulder", + "ground black pepper", + "frozen banana leaf", + "lard", + "guajillo chiles", + "vegetable oil", + "flour for dusting", + "dried oregano", + "kosher salt", + "cinnamon", + "hot water", + "masa harina", + "chicken stock", + "baking powder", + "garlic cloves", + "chipotles in adobo" + ] + }, + { + "id": 13823, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "vegetable oil", + "all-purpose flour", + "fresh ginger", + "crushed red pepper", + "scallions", + "low sodium soy sauce", + "sesame oil", + "rice vinegar" + ] + }, + { + "id": 18022, + "cuisine": "indian", + "ingredients": [ + "clove", + "coriander seeds", + "organic vegetable broth", + "fresh lime juice", + "chiles", + "diced tomatoes", + "ground cardamom", + "chopped cilantro fresh", + "red lentils", + "olive oil", + "cumin seed", + "mustard seeds", + "ground cinnamon", + "peeled fresh ginger", + "garlic cloves", + "onions" + ] + }, + { + "id": 28190, + "cuisine": "mexican", + "ingredients": [ + "kumquats", + "water", + "dry red wine", + "lime", + "fresh lime juice", + "sugar", + "carbonated water" + ] + }, + { + "id": 46296, + "cuisine": "filipino", + "ingredients": [ + "baking powder", + "water", + "Edam", + "eggs", + "all-purpose flour", + "evaporated milk", + "white sugar" + ] + }, + { + "id": 22008, + "cuisine": "korean", + "ingredients": [ + "water", + "scallions", + "pork belly", + "garlic", + "onions", + "sugar", + "ginger", + "kimchi", + "black pepper", + "salt" + ] + }, + { + "id": 9239, + "cuisine": "chinese", + "ingredients": [ + "egg yolks", + "corn flour", + "all-purpose flour", + "vegetable oil", + "confectioners sugar", + "roasted peanuts" + ] + }, + { + "id": 23485, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "large eggs", + "chopped onion", + "lasagna noodles", + "cooking spray", + "red bell pepper", + "fresh parmesan cheese", + "marinara sauce", + "garlic cloves", + "cremini mushrooms", + "zucchini", + "yellow bell pepper", + "nonfat ricotta cheese" + ] + }, + { + "id": 23715, + "cuisine": "thai", + "ingredients": [ + "olive oil", + "garlic", + "coconut milk", + "ground cumin", + "chicken broth", + "butter", + "poultry seasoning", + "boneless skinless chicken breast halves", + "fresh ginger root", + "salt", + "onions", + "sugar pumpkin", + "red pepper flakes", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 9954, + "cuisine": "french", + "ingredients": [ + "eggs", + "dijon mustard", + "baton", + "ground white pepper", + "olive oil", + "chives", + "carrots", + "bay leaf", + "sherry vinegar", + "bacon", + "thyme", + "milk", + "leeks", + "salt", + "chicken livers" + ] + }, + { + "id": 31290, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "ground chuck", + "vegetable oil", + "salt", + "onions", + "eggs", + "unsalted butter", + "all purpose unbleached flour", + "garlic cloves", + "ground cumin", + "tomatoes", + "olive oil", + "ice water", + "pimento stuffed olives", + "dried oregano", + "pastry", + "large eggs", + "raisins", + "juice" + ] + }, + { + "id": 22926, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "milk", + "pepper", + "salt", + "eggs", + "bacon", + "shredded cheddar cheese" + ] + }, + { + "id": 36804, + "cuisine": "italian", + "ingredients": [ + "pepper", + "shallots", + "all-purpose flour", + "unsalted butter", + "garlic", + "low sodium beef broth", + "olive oil", + "veal medallions", + "fresh mushrooms", + "marsala wine", + "low sodium chicken broth", + "salt" + ] + }, + { + "id": 1617, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "buttermilk", + "unsalted butter" + ] + }, + { + "id": 6129, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "basil", + "water", + "lipton tea bags" + ] + }, + { + "id": 22495, + "cuisine": "italian", + "ingredients": [ + "mild Italian sausage", + "vidalia onion", + "garlic cloves", + "pesto sauce", + "cheese tortellini", + "grated parmesan cheese", + "toasted pine nuts" + ] + }, + { + "id": 33178, + "cuisine": "southern_us", + "ingredients": [ + "pie crust", + "sweet potatoes", + "allspice", + "ground nutmeg", + "cinnamon", + "eggs", + "butternut squash", + "mini marshmallows", + "condensed milk" + ] + }, + { + "id": 12417, + "cuisine": "mexican", + "ingredients": [ + "pork stew meat", + "all-purpose flour", + "garlic", + "canola oil", + "new mexico red chile powder", + "dried oregano", + "warm water", + "salt", + "ground cumin" + ] + }, + { + "id": 13656, + "cuisine": "french", + "ingredients": [ + "sugar", + "sea salt", + "unsalted butter", + "large eggs", + "milk", + "all-purpose flour" + ] + }, + { + "id": 40012, + "cuisine": "chinese", + "ingredients": [ + "salt", + "shrimp", + "water", + "rice flour", + "canola oil", + "red chili peppers", + "all-purpose flour", + "chinese chives", + "large eggs", + "carrots" + ] + }, + { + "id": 10264, + "cuisine": "french", + "ingredients": [ + "chopped nuts", + "honey", + "shallots", + "sea salt", + "chopped onion", + "low salt chicken broth", + "water", + "leeks", + "farro", + "chopped celery", + "carrots", + "onions", + "black peppercorns", + "olive oil", + "vegetable oil", + "star anise", + "duck", + "thyme sprigs", + "ruby port", + "grated parmesan cheese", + "butter", + "dry red wine", + "garlic cloves", + "rendered duck fat" + ] + }, + { + "id": 21812, + "cuisine": "italian", + "ingredients": [ + "fresh mint", + "prosciutto", + "lime juice", + "honeydew melon" + ] + }, + { + "id": 39307, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "vegetable oil", + "ground white pepper", + "superfine sugar", + "coconut cream", + "light soy sauce", + "cilantro", + "pork tenderloin", + "garlic cloves" + ] + }, + { + "id": 16818, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "milk chocolate chips", + "cocoa", + "all-purpose flour", + "sugar", + "vanilla extract", + "large eggs", + "chopped pecans" + ] + }, + { + "id": 41979, + "cuisine": "italian", + "ingredients": [ + "chiles", + "peas", + "medium-grain rice", + "ham hock", + "shallots", + "salt", + "scallions", + "water", + "extra-virgin olive oil", + "freshly ground pepper", + "bay leaf", + "chopped fresh thyme", + "crabmeat", + "fresh lemon juice" + ] + }, + { + "id": 2516, + "cuisine": "italian", + "ingredients": [ + "pesto sauce", + "honey", + "fresh oregano", + "tomatoes", + "cremini mushrooms", + "garlic", + "boneless skinless chicken breast halves", + "fresh basil", + "pepper", + "salt", + "polenta", + "vidalia onion", + "olive oil", + "shredded mozzarella cheese" + ] + }, + { + "id": 6485, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "whole milk", + "green pumpkin seeds", + "large eggs", + "salt", + "unsalted butter", + "baking powder", + "yellow corn meal", + "jalapeno chilies", + "all-purpose flour" + ] + }, + { + "id": 8582, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "black beans", + "green onions", + "garlic", + "oil", + "noodles", + "fish sauce", + "black pepper", + "water", + "sesame oil", + "dried shiitake mushrooms", + "carrots", + "brown sugar", + "white pepper", + "Shaoxing wine", + "ginger", + "sauce", + "corn starch", + "dark soy sauce", + "shanghai bok choy", + "pepper", + "marinade", + "salt", + "oyster sauce", + "chicken" + ] + }, + { + "id": 13836, + "cuisine": "chinese", + "ingredients": [ + "tofu", + "white pepper", + "green onions", + "corn starch", + "dark soy sauce", + "fresh ginger", + "thai chile", + "soy sauce", + "black bean sauce", + "garlic", + "cold water", + "whitefish fillets", + "vegetable oil", + "white sugar" + ] + }, + { + "id": 5289, + "cuisine": "russian", + "ingredients": [ + "eggs", + "chicken breasts", + "ground black pepper", + "dill pickles", + "mayonaise", + "peas", + "tomatoes", + "potatoes" + ] + }, + { + "id": 33325, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "red bell pepper", + "sherry vinegar", + "boquerones" + ] + }, + { + "id": 19674, + "cuisine": "mexican", + "ingredients": [ + "green cabbage", + "garlic powder", + "jalapeno chilies", + "cilantro", + "oregano", + "grape tomatoes", + "salsa verde", + "apple cider vinegar", + "salt", + "canola oil", + "black pepper", + "red cabbage", + "lime wedges", + "cayenne pepper", + "ground cumin", + "avocado", + "olive oil", + "flour tortillas", + "cod fish", + "smoked paprika" + ] + }, + { + "id": 21821, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "Yakisoba noodles", + "cabbage", + "pork", + "sauce", + "shrimp", + "salt", + "carrots", + "soy sauce", + "oil", + "onions" + ] + }, + { + "id": 28767, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "grated parmesan cheese", + "salt", + "pepper", + "bacon", + "cream", + "butter", + "frozen peas", + "fresh thyme", + "orzo" + ] + }, + { + "id": 39385, + "cuisine": "french", + "ingredients": [ + "prunes", + "golden delicious apples", + "all-purpose flour", + "sugar", + "vegetable shortening", + "apricot preserves", + "unsalted butter", + "salt", + "vanilla ice cream", + "ice water", + "cognac" + ] + }, + { + "id": 24954, + "cuisine": "french", + "ingredients": [ + "chili", + "mushrooms", + "low salt chicken broth", + "finely chopped onion", + "butter", + "chopped garlic", + "olive oil", + "baking potatoes", + "bay leaf", + "Madeira", + "chopped fresh chives", + "heavy cream" + ] + }, + { + "id": 16225, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "grated parmesan cheese", + "cheese", + "garlic cloves", + "treviso radicchio", + "lasagna noodles", + "chopped fresh thyme", + "dry bread crumbs", + "olive oil", + "celery heart", + "extra-virgin olive oil", + "chopped onion", + "pancetta", + "unsalted butter", + "whole milk", + "all-purpose flour", + "ground white pepper" + ] + }, + { + "id": 8835, + "cuisine": "mexican", + "ingredients": [ + "worcestershire sauce", + "shredded cheddar cheese", + "cream cheese", + "jalapeno chilies", + "bacon" + ] + }, + { + "id": 37468, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "olive oil", + "red bell pepper", + "chile powder", + "lime juice", + "kale leaves", + "ground cumin", + "water", + "sliced olives", + "ground beef", + "avocado", + "Spike Seasoning", + "taco seasoning" + ] + }, + { + "id": 25859, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "japanese radish", + "pepper", + "shrimp", + "soy sauce", + "salt", + "water" + ] + }, + { + "id": 47367, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "buttermilk", + "baking powder", + "sugar", + "salt" + ] + }, + { + "id": 8083, + "cuisine": "italian", + "ingredients": [ + "crumbled blue cheese", + "fig jam", + "rocket leaves", + "ciabatta", + "butter", + "cooked chicken breasts", + "ground black pepper", + "fresh lemon juice" + ] + }, + { + "id": 40267, + "cuisine": "southern_us", + "ingredients": [ + "whipping cream", + "baking powder", + "all-purpose flour", + "butter", + "sliced green onions", + "ground black pepper", + "salt" + ] + }, + { + "id": 28215, + "cuisine": "italian", + "ingredients": [ + "field lettuce", + "extra-virgin olive oil", + "seedless cucumber", + "fresh mozzarella", + "fresh lemon juice", + "basil leaves", + "grated lemon zest", + "water", + "farro" + ] + }, + { + "id": 46610, + "cuisine": "italian", + "ingredients": [ + "chopped fresh thyme", + "flat leaf parsley", + "fresh rosemary", + "grated lemon peel", + "garlic cloves" + ] + }, + { + "id": 8840, + "cuisine": "indian", + "ingredients": [ + "ground red pepper", + "salt", + "ground turmeric", + "cauliflower", + "vegetable oil", + "black mustard seeds", + "green tomatoes", + "ground coriander", + "ground cumin", + "water", + "baking potatoes", + "basmati rice" + ] + }, + { + "id": 2638, + "cuisine": "indian", + "ingredients": [ + "cream", + "chili powder", + "oil", + "ground cumin", + "chopped tomatoes", + "salt", + "chicken pieces", + "fresh coriander", + "garlic", + "smoked paprika", + "black pepper", + "garam masala", + "rice", + "onions" + ] + }, + { + "id": 15389, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "almonds", + "red bell pepper", + "onions", + "dried thyme", + "garlic cloves", + "ground turkey", + "bread crumbs", + "bay leaves", + "toasted almonds", + "tomatoes", + "olive oil", + "low salt chicken broth", + "fresh parsley" + ] + }, + { + "id": 21146, + "cuisine": "french", + "ingredients": [ + "crème fraîche", + "flat leaf parsley", + "russet potatoes", + "grated Gruyère cheese" + ] + }, + { + "id": 31743, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "light corn syrup", + "large eggs", + "salt", + "sugar", + "vanilla extract", + "pie crust", + "butter" + ] + }, + { + "id": 27332, + "cuisine": "filipino", + "ingredients": [ + "ground chicken", + "water chestnuts", + "kinchay", + "glass noodles", + "chicken stock", + "ground black pepper", + "shallots", + "salt", + "pepper", + "green onions", + "garlic", + "soy sauce", + "cooking oil", + "napa cabbage", + "carrots" + ] + }, + { + "id": 7269, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "green chilies", + "ground turmeric", + "moong dal", + "bay leaf", + "ground cumin", + "sugar", + "cumin seed", + "ginger paste", + "salt", + "ghee" + ] + }, + { + "id": 23817, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "unsalted butter", + "onions", + "asparagus", + "goat cheese", + "large eggs" + ] + }, + { + "id": 34159, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "shredded cheddar cheese", + "diced tomatoes", + "cooked chicken", + "corn" + ] + }, + { + "id": 33477, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "prawns", + "ginger", + "curry leaves", + "pepper", + "seeds", + "salt", + "mustard", + "tumeric", + "fenugreek", + "garlic", + "tomatoes", + "coconut", + "chili powder", + "onions" + ] + }, + { + "id": 29921, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "garlic cloves", + "large shrimp", + "wheat bread", + "ground black pepper", + "fresh basil leaves", + "olive oil", + "fresh lemon juice", + "fresh rosemary", + "salt", + "plum tomatoes" + ] + }, + { + "id": 6676, + "cuisine": "vietnamese", + "ingredients": [ + "hard-boiled egg", + "onions", + "coconut juice", + "nuoc mam", + "garlic", + "pork butt", + "ground black pepper", + "salt" + ] + }, + { + "id": 12643, + "cuisine": "mexican", + "ingredients": [ + "ice cubes", + "Cointreau Liqueur", + "lime", + "fresh lime juice", + "kosher salt", + "tequila", + "superfine sugar" + ] + }, + { + "id": 14276, + "cuisine": "italian", + "ingredients": [ + "milk", + "rosemary needles", + "sugar", + "olive oil", + "all-purpose flour", + "coarse sugar", + "active dry yeast", + "salt", + "warm water", + "coarse sea salt", + "black grapes" + ] + }, + { + "id": 21396, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "fresh ginger", + "salt", + "chicken broth", + "pepper", + "lemon", + "sweet rice", + "green onions", + "onions", + "chicken wings", + "olive oil", + "garlic" + ] + }, + { + "id": 1619, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "peeled fresh ginger", + "salt", + "black pepper", + "vegetable oil", + "sugar", + "shallots", + "lettuce leaves", + "dry sherry" + ] + }, + { + "id": 41628, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "portabello mushroom", + "salt", + "pinto beans", + "onions", + "olive oil", + "meat", + "cilantro", + "tortilla chips", + "sour cream", + "pepper", + "green onions", + "veggies", + "salsa", + "smoked paprika", + "ground cumin", + "chopped tomatoes", + "queso fresco", + "garlic", + "shredded cheese", + "chipotle peppers" + ] + }, + { + "id": 22521, + "cuisine": "french", + "ingredients": [ + "chives", + "tarragon", + "white asparagus", + "salt", + "eggs", + "pistachio nuts", + "unsalted butter", + "chopped parsley" + ] + }, + { + "id": 27436, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "whole kernel corn, drain", + "tomatoes", + "garlic", + "white onion", + "salt", + "chile pepper", + "beef tongue" + ] + }, + { + "id": 26560, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "tomatillos", + "garlic cloves", + "avocado", + "whole peeled tomatoes", + "low sodium canned chicken stock", + "ground cumin", + "white onion", + "jalapeno chilies", + "freshly ground pepper", + "corn", + "cilantro leaves", + "nonstick spray" + ] + }, + { + "id": 29166, + "cuisine": "southern_us", + "ingredients": [ + "pickle relish", + "paprika", + "Hellmann's® Real Mayonnaise", + "dijon mustard" + ] + }, + { + "id": 24030, + "cuisine": "italian", + "ingredients": [ + "sugar", + "shallots", + "tomatoes", + "ground black pepper", + "dried rosemary", + "kosher salt", + "lemon juice", + "dried basil", + "marjoram" + ] + }, + { + "id": 36251, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "ginger", + "red chili peppers", + "yellow split peas", + "curry leaves", + "salt", + "shallots", + "oil" + ] + }, + { + "id": 44032, + "cuisine": "jamaican", + "ingredients": [ + "fresh thyme", + "scallions", + "water", + "salt", + "coconut milk", + "red kidney beans", + "hot pepper", + "garlic cloves", + "ground pepper", + "rice", + "onions" + ] + }, + { + "id": 14829, + "cuisine": "spanish", + "ingredients": [ + "salad greens", + "curly endive", + "red wine vinegar", + "large eggs", + "hot water", + "pepper", + "oil" + ] + }, + { + "id": 22958, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "large eggs", + "vegetable oil", + "pork stock", + "carrots", + "bread crumb fresh", + "tomato juice", + "bay leaves", + "ground pork", + "hot sauce", + "masa", + "black pepper", + "fresh cilantro", + "jalapeno chilies", + "lemon", + "salt", + "celery", + "guajillo chiles", + "fresh thyme", + "green onions", + "garlic", + "mexican chorizo" + ] + }, + { + "id": 29642, + "cuisine": "southern_us", + "ingredients": [ + "fresh mushrooms", + "low sodium chicken broth", + "long grain and wild rice mix", + "sour cream", + "cooked chicken", + "italian salad dressing" + ] + }, + { + "id": 7744, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "diced tomatoes", + "chipotle peppers", + "pepper", + "garlic cloves", + "chicken thighs", + "cotija", + "salt", + "onions", + "olive oil", + "corn tortillas" + ] + }, + { + "id": 10497, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "vegetable broth", + "minced garlic", + "onion powder", + "dried oregano", + "dried basil", + "russet potatoes", + "dried rosemary", + "dried sage", + "dried parsley" + ] + }, + { + "id": 10593, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "large eggs", + "all-purpose flour", + "baking soda", + "buttermilk", + "unsalted butter", + "salt", + "sugar", + "baking powder" + ] + }, + { + "id": 21108, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "vegetable stock", + "bay leaf", + "arborio rice", + "shallots", + "salt", + "parmigiano-reggiano cheese", + "balsamic vinegar", + "freshly ground pepper", + "dry white wine", + "extra-virgin olive oil" + ] + }, + { + "id": 34198, + "cuisine": "thai", + "ingredients": [ + "wide rice noodles", + "lime juice", + "peanut oil", + "medium shrimp", + "tofu", + "water", + "creamy peanut butter", + "Thai fish sauce", + "brown sugar", + "rice vinegar", + "garlic chili sauce", + "chopped cilantro fresh", + "ketchup", + "chinese cabbage", + "corn starch", + "sliced green onions" + ] + }, + { + "id": 26659, + "cuisine": "spanish", + "ingredients": [ + "large egg yolks", + "dark rum", + "confectioners sugar", + "unsalted butter", + "vegetable oil", + "semisweet chocolate", + "all-purpose flour", + "sugar", + "large eggs", + "cornflakes" + ] + }, + { + "id": 13096, + "cuisine": "indian", + "ingredients": [ + "sugar", + "canned chopped tomatoes", + "red curry paste", + "chili flakes", + "curry powder", + "potatoes", + "coconut milk", + "red lentils", + "minced garlic", + "garam masala", + "lemon juice", + "tumeric", + "minced ginger", + "purple onion", + "chopped cilantro" + ] + }, + { + "id": 48078, + "cuisine": "chinese", + "ingredients": [ + "chili paste", + "boneless skinless chicken breasts", + "salt", + "corn starch", + "soy sauce", + "low sodium chicken broth", + "marinade", + "roasted peanuts", + "cooking sherry", + "sugar", + "hoisin sauce", + "rice wine", + "sauce", + "red bell pepper", + "fresh ginger", + "green onions", + "garlic", + "peanut oil" + ] + }, + { + "id": 11120, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "queso fresco", + "cream cheese, soften", + "chili powder", + "chopped onion", + "chopped cilantro fresh", + "fat free less sodium chicken broth", + "lime wedges", + "garlic cloves", + "cooked chicken breasts", + "cooking spray", + "cilantro sprigs", + "corn tortillas" + ] + }, + { + "id": 16220, + "cuisine": "moroccan", + "ingredients": [ + "fresh basil", + "green onions", + "couscous", + "water", + "salt", + "ground cinnamon", + "dried apricot", + "ground allspice", + "unsalted pistachios", + "extra-virgin olive oil" + ] + }, + { + "id": 36435, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "kosher salt", + "rice", + "chillies", + "asafoetida", + "golden raisins", + "cumin seed", + "ground turmeric", + "sugar", + "vegetable oil", + "black mustard seeds", + "curry leaves", + "coconut", + "roasted peanuts", + "cashew nuts" + ] + }, + { + "id": 30485, + "cuisine": "thai", + "ingredients": [ + "tapioca flour", + "coconut cream", + "mung beans", + "water", + "white sugar", + "salt" + ] + }, + { + "id": 37023, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "cilantro sprigs", + "pork shoulder", + "green cabbage", + "flour tortillas", + "chinese black vinegar", + "soy sauce", + "garlic", + "sliced green onions", + "hoisin sauce", + "chinese five-spice powder" + ] + }, + { + "id": 2847, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "oxtails", + "garlic", + "firmly packed brown sugar", + "rice wine", + "salt", + "soy sauce", + "daikon", + "cilantro leaves", + "fresh ginger", + "star anise" + ] + }, + { + "id": 8519, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "green chilies", + "coconut milk", + "light brown sugar", + "star anise", + "oil", + "galangal", + "lime", + "beef rib short", + "lime leaves", + "fish sauce", + "rice vinegar", + "garlic cloves", + "coriander" + ] + }, + { + "id": 42173, + "cuisine": "korean", + "ingredients": [ + "water", + "chili bean sauce", + "white vinegar", + "sea salt", + "onions", + "hot chili oil", + "cucumber", + "red chili peppers", + "garlic", + "white sugar" + ] + }, + { + "id": 28402, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "harissa", + "cilantro sprigs", + "freshly ground pepper", + "chicken", + "saffron threads", + "low sodium chicken broth", + "coarse salt", + "garlic", + "couscous", + "ground ginger", + "dried apricot", + "fresh orange juice", + "purple onion", + "raw almond", + "green olives", + "wheat", + "extra-virgin olive oil", + "carrots" + ] + }, + { + "id": 24463, + "cuisine": "mexican", + "ingredients": [ + "salt", + "lettuce leaves", + "cooked chicken breasts", + "avocado", + "fresh lime juice", + "whole wheat tortillas", + "plum tomatoes" + ] + }, + { + "id": 33769, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "white truffle oil", + "unsalted butter", + "prosciutto" + ] + }, + { + "id": 16616, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "garlic cloves", + "collard greens", + "olive oil", + "chicken broth", + "water", + "onions", + "cooked ham", + "black-eyed peas" + ] + }, + { + "id": 47923, + "cuisine": "japanese", + "ingredients": [ + "salt", + "edamame", + "seasoning salt" + ] + }, + { + "id": 41146, + "cuisine": "british", + "ingredients": [ + "milk", + "tikka paste", + "green beans", + "tumeric", + "smoked mackerel", + "rice", + "ground cumin", + "eggs", + "cherry tomatoes", + "purple onion", + "fresh parsley", + "medium curry powder", + "mushrooms", + "ground coriander" + ] + }, + { + "id": 35887, + "cuisine": "french", + "ingredients": [ + "olive oil", + "dry white wine", + "yellow onion", + "chicken stock", + "fresh thyme", + "gruyere cheese", + "bay leaf", + "unsalted butter", + "garlic", + "ground white pepper", + "port wine", + "french bread", + "salt" + ] + }, + { + "id": 15371, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chilegarlic sauce", + "sesame oil", + "scallions", + "kosher salt", + "Shaoxing wine", + "ginger", + "white pepper", + "flowering chives", + "ground pork", + "dumpling wrappers", + "cilantro stems", + "rice vinegar" + ] + }, + { + "id": 1052, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "sliced green onions", + "eggs", + "rice vinegar", + "wasabi paste", + "sesame seeds", + "mayonaise", + "panko breadcrumbs" + ] + }, + { + "id": 6510, + "cuisine": "southern_us", + "ingredients": [ + "garnish", + "vanilla extract", + "cream sweeten whip", + "refrigerated piecrusts", + "sugar", + "butter", + "self rising flour", + "juice" + ] + }, + { + "id": 22887, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "sausages", + "dried oregano", + "dried basil", + "linguine", + "fresh parsley", + "rosemary", + "large garlic cloves", + "low salt chicken broth", + "olive oil", + "crushed red pepper", + "onions" + ] + }, + { + "id": 13548, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "salt", + "mint leaves", + "turbinado", + "mango", + "sticky rice" + ] + }, + { + "id": 19101, + "cuisine": "russian", + "ingredients": [ + "clove", + "mayonaise", + "potatoes", + "apples", + "ham", + "cucumber", + "onions", + "green olives", + "water", + "chicken breasts", + "dill", + "carrots", + "celery", + "tomatoes", + "pepper", + "hard-boiled egg", + "salt", + "lemon juice", + "sour cream", + "capers", + "dijon mustard", + "peas", + "dill pickles", + "thyme", + "bay leaf" + ] + }, + { + "id": 16006, + "cuisine": "greek", + "ingredients": [ + "cooking spray", + "fresh lemon juice", + "dried rosemary", + "black pepper", + "grated lemon zest", + "dried oregano", + "green bell pepper", + "purple onion", + "feta cheese crumbles", + "fat free yogurt", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 43007, + "cuisine": "british", + "ingredients": [ + "hazelnuts", + "elderflower cordial", + "gooseberries", + "sweet white wine", + "caster sugar", + "double cream", + "lime" + ] + }, + { + "id": 22853, + "cuisine": "chinese", + "ingredients": [ + "water", + "vegetable oil", + "large shrimp", + "egg whites", + "white sugar", + "honey", + "walnuts", + "mayonaise", + "mochiko", + "sweetened condensed milk" + ] + }, + { + "id": 39044, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "cayenne pepper", + "soy sauce", + "fresh shiitake mushrooms", + "onions", + "sake", + "sea scallops", + "asparagus spears", + "minced garlic", + "butter" + ] + }, + { + "id": 9208, + "cuisine": "brazilian", + "ingredients": [ + "spinach leaves", + "orange bell pepper", + "garlic", + "collard greens", + "ground black pepper", + "salt", + "curly kale", + "bell pepper", + "red bell pepper", + "palm oil", + "water", + "jalapeno chilies", + "onions" + ] + }, + { + "id": 9980, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "unsalted butter", + "garlic", + "bay leaf", + "pepper", + "ranch dressing", + "coca-cola", + "giardiniera", + "brown gravy mix", + "jalapeno chilies", + "beef rump", + "onions", + "bacon drippings", + "dried thyme", + "cracked black pepper", + "corn starch", + "dried rosemary" + ] + }, + { + "id": 34285, + "cuisine": "italian", + "ingredients": [ + "sugar", + "champagne", + "lime wedges", + "water", + "fresh lime juice", + "fresh orange juice" + ] + }, + { + "id": 4805, + "cuisine": "japanese", + "ingredients": [ + "reduced sodium soy sauce", + "freshly ground pepper", + "soba", + "kosher salt", + "ginger", + "garlic cloves", + "large egg yolks", + "maitake mushrooms", + "toasted sesame seeds", + "wakame", + "vegetable oil", + "scallions", + "baby turnips" + ] + }, + { + "id": 26111, + "cuisine": "mexican", + "ingredients": [ + "instant rice", + "diced tomatoes", + "onions", + "cheddar cheese", + "kidney beans", + "taco seasoning", + "water", + "green pepper", + "tomato sauce", + "chili powder", + "ground beef" + ] + }, + { + "id": 20947, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "zucchini", + "diced tomatoes", + "chopped onion", + "dried oregano", + "frozen whole kernel corn", + "vegetable oil", + "salt", + "chopped cilantro fresh", + "finely chopped onion", + "baking potatoes", + "chickpeas", + "cooked chicken breasts", + "low-fat sour cream", + "lime wedges", + "cheese", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 28643, + "cuisine": "greek", + "ingredients": [ + "celery ribs", + "pitas", + "lentils", + "olive oil", + "fresh lemon juice", + "dried oregano", + "pepper", + "salt", + "carrots", + "water", + "garlic cloves", + "onions" + ] + }, + { + "id": 49601, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "black pepper", + "Shaoxing wine", + "salt", + "canola oil", + "sugar", + "oysters", + "oyster liquor", + "corn starch", + "mayonaise", + "white pepper", + "sesame oil", + "scallions", + "eggs", + "spring roll skins", + "regular soy sauce", + "ground pork", + "beansprouts" + ] + }, + { + "id": 38062, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "crushed tomatoes", + "frozen okra", + "all-purpose flour", + "celery", + "dried oregano", + "green bell pepper", + "dried thyme", + "worcestershire sauce", + "scallions", + "fresh parsley", + "spicy sausage", + "dried basil", + "old bay seasoning", + "crabmeat", + "bay leaf", + "pepper", + "olive oil", + "salt", + "shrimp", + "onions" + ] + }, + { + "id": 32927, + "cuisine": "british", + "ingredients": [ + "lean bacon", + "worcestershire sauce", + "beef broth", + "onions", + "cheddar cheese", + "lean ground beef", + "button mushrooms", + "tarragon", + "marmite", + "flour", + "paprika", + "carrots", + "pepper", + "baking potatoes", + "salt", + "celery" + ] + }, + { + "id": 528, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "tomatillos", + "shrimp", + "jalapeno chilies", + "salt", + "onions", + "lime juice", + "clam juice", + "chopped cilantro", + "cotija", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 46824, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil cooking spray", + "catfish fillets", + "dijon mustard", + "ground pepper", + "reduced fat sharp cheddar cheese", + "Corn Flakes Cereal" + ] + }, + { + "id": 12939, + "cuisine": "filipino", + "ingredients": [ + "wonton wrappers", + "pork sausages", + "pepper", + "hamburger", + "green onions", + "garlic cloves", + "salt" + ] + }, + { + "id": 34375, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "olive oil", + "jalapeno chilies", + "cinnamon", + "turkey meat", + "oregano", + "lettuce", + "black beans", + "vinegar", + "turkey stock", + "salt", + "onions", + "monterey jack", + "ground cloves", + "garlic powder", + "flour", + "purple onion", + "sour cream", + "ice", + "avocado", + "lime juice", + "flour tortillas", + "chili powder", + "garlic cloves", + "chopped cilantro fresh", + "ground cumin" + ] + }, + { + "id": 13839, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "prosciutto", + "boneless skinless chicken breast halves", + "mozzarella cheese", + "garlic", + "olive oil", + "shredded parmesan cheese", + "white wine", + "butter" + ] + }, + { + "id": 28343, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "grated parmesan cheese", + "smoked salmon", + "milk", + "all-purpose flour", + "fettuccine pasta", + "butter", + "capers", + "sun-dried tomatoes", + "fresh oregano" + ] + }, + { + "id": 10956, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "water", + "ghee", + "sugar", + "salt", + "active dry yeast", + "bread flour" + ] + }, + { + "id": 46525, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "baby spinach", + "chickpeas", + "kosher salt", + "orzo", + "carrots", + "parmigiano reggiano cheese", + "dry bread crumbs", + "homemade chicken stock", + "ground pork", + "freshly ground pepper" + ] + }, + { + "id": 11930, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "extra-virgin olive oil", + "onions", + "chili powder", + "chickpeas", + "cumin", + "ground ginger", + "spices", + "ground coriander", + "ground cumin", + "water", + "salt", + "ground turmeric" + ] + }, + { + "id": 32259, + "cuisine": "italian", + "ingredients": [ + "pepper", + "ricotta cheese", + "tomato sauce", + "meatballs", + "fresh parsley", + "pasta", + "parmesan cheese", + "salt", + "mozzarella cheese", + "large eggs" + ] + }, + { + "id": 3805, + "cuisine": "mexican", + "ingredients": [ + "lime", + "triple sec", + "silver tequila", + "lime juice", + "blood orange juice" + ] + }, + { + "id": 8435, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "onions", + "chicken broth", + "salt", + "canola oil", + "cilantro", + "long grain white rice", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 19269, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "scallions", + "long grain white rice", + "green bell pepper", + "paprika", + "onions", + "celery ribs", + "coarse salt", + "medium shrimp", + "canola oil", + "ground pepper", + "garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 16877, + "cuisine": "filipino", + "ingredients": [ + "raisins", + "carrots", + "whole peppercorn", + "garlic", + "onions", + "white vinegar", + "ginger", + "red bell pepper", + "granulated sugar", + "salt", + "green papaya" + ] + }, + { + "id": 36748, + "cuisine": "moroccan", + "ingredients": [ + "chopped tomatoes", + "green beans", + "ground cinnamon", + "boneless skinless chicken breasts", + "ground cumin", + "olive oil", + "lemon", + "chicken stock", + "clear honey", + "couscous" + ] + }, + { + "id": 23568, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "ground beef", + "shredded cheddar cheese", + "chunky salsa", + "corn tortilla chips", + "onions", + "ranch dressing", + "iceberg lettuce" + ] + }, + { + "id": 14511, + "cuisine": "mexican", + "ingredients": [ + "celery ribs", + "green onions", + "tater tots", + "yellow peppers", + "corn", + "cajun seasoning", + "ground beef", + "ground cumin", + "tomatoes", + "chili powder", + "cream of mushroom soup", + "dried oregano", + "Mexican cheese blend", + "salt", + "onions" + ] + }, + { + "id": 21257, + "cuisine": "cajun_creole", + "ingredients": [ + "broiler-fryer chicken", + "hot pepper sauce", + "green pepper", + "onions", + "tomatoes", + "water", + "salt", + "garlic cloves", + "sliced green onions", + "celery ribs", + "pepper", + "bay leaves", + "okra", + "canola oil", + "cooked rice", + "dried basil", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 19082, + "cuisine": "mexican", + "ingredients": [ + "light sour cream", + "cooking spray", + "fresh lime juice", + "frozen whole kernel corn", + "black olives", + "ground cumin", + "refried beans", + "green onions", + "chopped cilantro fresh", + "Mexican cheese blend", + "salsa" + ] + }, + { + "id": 23141, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "yolk", + "matzo cake meal", + "water", + "parmigiano reggiano cheese", + "scallions", + "olive oil", + "large eggs", + "frozen peas", + "potato starch", + "zucchini", + "grated lemon zest" + ] + }, + { + "id": 40870, + "cuisine": "mexican", + "ingredients": [ + "bell pepper", + "frozen corn", + "cumin", + "black beans", + "chili powder", + "sharp cheddar cheese", + "brown rice", + "chunky", + "pepper", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 46003, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "fresh ginger root", + "chopped cilantro fresh", + "lime juice", + "garlic", + "fish sauce", + "jalapeno chilies", + "large shrimp", + "bean threads", + "lemongrass", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 10035, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "red wine", + "marjoram", + "dried basil", + "pork roast", + "water", + "cracked black pepper", + "dried thyme", + "onions" + ] + }, + { + "id": 17764, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "salt", + "onions", + "black peppercorns", + "baking potatoes", + "margarine", + "shallots", + "all-purpose flour", + "shredded reduced fat reduced sodium swiss cheese", + "1% low-fat milk", + "garlic cloves" + ] + }, + { + "id": 27915, + "cuisine": "irish", + "ingredients": [ + "eggs", + "cooking oil", + "salt", + "irish bacon", + "ground black pepper", + "cheese", + "onions", + "savoy cabbage", + "light cream", + "butter", + "plain breadcrumbs", + "chicken stock", + "boneless chicken breast", + "garlic", + "italian seasoning" + ] + }, + { + "id": 33321, + "cuisine": "italian", + "ingredients": [ + "Italian seasoned breadcrumbs", + "milk", + "onions", + "nutmeg", + "ground beef", + "garlic powder" + ] + }, + { + "id": 2392, + "cuisine": "vietnamese", + "ingredients": [ + "peanuts", + "basil", + "rice paper", + "eggs", + "rice noodles", + "shrimp", + "tofu", + "hoisin sauce", + "carrots", + "water", + "red pepper", + "cucumber" + ] + }, + { + "id": 7860, + "cuisine": "italian", + "ingredients": [ + "eggs", + "eggplant", + "all-purpose flour", + "mozzarella cheese", + "marinara sauce", + "bread crumb fresh", + "grated parmesan cheese", + "olive oil", + "ricotta cheese" + ] + }, + { + "id": 16772, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "oyster sauce", + "kosher salt", + "rice vinegar", + "canola oil", + "minced garlic", + "pork spareribs", + "soy sauce", + "yellow mustard", + "corn starch" + ] + }, + { + "id": 15280, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "vegetable oil spray", + "plum tomatoes", + "ricotta cheese" + ] + }, + { + "id": 34504, + "cuisine": "mexican", + "ingredients": [ + "mozzarella cheese", + "tortilla shells", + "pizza sauce", + "italian seasoning", + "garlic powder", + "pepperoni", + "butter" + ] + }, + { + "id": 23703, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "fresh green bean", + "sugar", + "unsalted butter", + "salt", + "ground black pepper", + "garlic", + "white onion", + "apple cider vinegar", + "ham" + ] + }, + { + "id": 8642, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh mushrooms", + "sweet onion", + "butter", + "kosher salt", + "grated parmesan cheese", + "fresh parsley", + "pepper", + "cheese ravioli" + ] + }, + { + "id": 10355, + "cuisine": "french", + "ingredients": [ + "gelatin", + "sugar", + "strawberries", + "cold water", + "whipping cream", + "vanilla beans" + ] + }, + { + "id": 34219, + "cuisine": "japanese", + "ingredients": [ + "asafoetida", + "semolina", + "flour", + "salt", + "cumin", + "tumeric", + "coriander powder", + "mint leaves", + "green chilies", + "masala", + "amchur", + "potatoes", + "ginger", + "beansprouts", + "fresh coriander", + "cooking oil", + "chili powder", + "lemon juice" + ] + }, + { + "id": 26479, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "red bell pepper", + "chihuahua cheese", + "reduced-fat sour cream", + "fresh lime juice", + "navy beans", + "cooking spray", + "poblano chiles", + "fat free less sodium chicken broth", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 39848, + "cuisine": "chinese", + "ingredients": [ + "tomato paste", + "white pepper", + "sesame oil", + "oil", + "soy sauce", + "hoisin sauce", + "salt", + "pork shoulder", + "sugar", + "minced garlic", + "paprika", + "hot water", + "molasses", + "sherry", + "chinese five-spice powder" + ] + }, + { + "id": 13806, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "salt", + "butter", + "baking powder", + "shortening", + "buttermilk" + ] + }, + { + "id": 25149, + "cuisine": "mexican", + "ingredients": [ + "pepper jack", + "salt", + "corn kernels", + "flour tortillas", + "chopped cilantro fresh", + "zucchini", + "onions", + "olive oil", + "garlic" + ] + }, + { + "id": 19177, + "cuisine": "italian", + "ingredients": [ + "water", + "cinnamon sticks", + "sugar", + "mascarpone", + "vanilla beans", + "orange peel", + "marsala wine", + "bosc pears" + ] + }, + { + "id": 310, + "cuisine": "greek", + "ingredients": [ + "salt", + "onions", + "pepper", + "scallions", + "oregano", + "eggs", + "cayenne pepper", + "chopped fresh mint", + "paprika", + "fresh lemon juice", + "ground lamb" + ] + }, + { + "id": 49390, + "cuisine": "italian", + "ingredients": [ + "eggs", + "crushed tomatoes", + "grated parmesan cheese", + "garlic", + "white sugar", + "fennel seeds", + "mozzarella cheese", + "minced onion", + "ricotta cheese", + "sweet italian sausage", + "tomato sauce", + "ground black pepper", + "lean ground beef", + "salt", + "italian seasoning", + "tomato paste", + "water", + "lasagna noodles", + "basil dried leaves", + "fresh parsley" + ] + }, + { + "id": 36296, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "grits", + "coarse salt", + "mascarpone" + ] + }, + { + "id": 26808, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "toasted sesame seeds", + "vegetable oil", + "reduced sodium soy sauce", + "boiling water", + "sweet potato vermicelli" + ] + }, + { + "id": 963, + "cuisine": "southern_us", + "ingredients": [ + "syrup", + "lemon juice", + "eggs", + "vegetable oil", + "water", + "lemon cake mix", + "sugar", + "pudding powder" + ] + }, + { + "id": 17200, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "diced green chilies", + "garlic", + "sharp cheddar cheese", + "adobo sauce", + "kosher salt", + "chicken breasts", + "hot sauce", + "smoked gouda", + "olive oil", + "chili powder", + "yellow onion", + "chipotle peppers", + "black pepper", + "flour tortillas", + "all-purpose flour", + "sour cream", + "cumin" + ] + }, + { + "id": 40627, + "cuisine": "french", + "ingredients": [ + "superfine sugar", + "salt", + "powdered sugar", + "egg whites", + "pure vanilla extract", + "almond flour", + "sugar", + "light corn syrup" + ] + }, + { + "id": 49292, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "coffee", + "butter", + "salt", + "eggs", + "milk", + "baking powder", + "vanilla", + "powdered sugar", + "baking soda", + "vegetable oil", + "red food coloring", + "white distilled vinegar", + "flour", + "buttermilk", + "unsweetened cocoa powder" + ] + }, + { + "id": 37364, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "lime wedges", + "scallions", + "medium shrimp", + "light brown sugar", + "fresh cilantro", + "red pepper flakes", + "beansprouts", + "rice stick noodles", + "dry roasted peanuts", + "vegetable oil", + "garlic cloves", + "tomatoes", + "large eggs", + "anchovy paste", + "fresh lime juice" + ] + }, + { + "id": 32027, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "mustard seeds", + "salmon", + "vegetable oil", + "ground turmeric", + "chile pepper", + "onions", + "water", + "salt" + ] + }, + { + "id": 38210, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "tomatillos", + "sour cream", + "kosher salt", + "diced red onions", + "cream cheese", + "beef", + "cilantro", + "mozzarella cheese", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 49325, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic salt", + "lemon juice", + "avocado", + "cream cheese, soften", + "picante sauce" + ] + }, + { + "id": 6121, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "ground ginger", + "boneless skinless chicken breasts", + "garlic cloves", + "zucchini", + "balsamic vinegar", + "white button mushrooms", + "sesame oil", + "corn starch" + ] + }, + { + "id": 14259, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "honey", + "onions", + "light soy sauce", + "chicken fillets", + "fresh ginger" + ] + }, + { + "id": 2425, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "old bay seasoning", + "hot pepper sauce", + "cream cheese, soften", + "lump crab meat", + "fresh lemon juice", + "finely chopped onion" + ] + }, + { + "id": 18822, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "green onions", + "oyster sauce", + "dark soy sauce", + "soaking liquid", + "vegetable oil", + "fresh ginger", + "chicken breasts", + "chinese rice wine", + "mushrooms", + "garlic" + ] + }, + { + "id": 12497, + "cuisine": "french", + "ingredients": [ + "vidalia onion", + "extra-virgin olive oil", + "vegetables", + "sauce", + "sweet chili sauce", + "beef fillet", + "coarse salt", + "freshly ground pepper" + ] + }, + { + "id": 19083, + "cuisine": "spanish", + "ingredients": [ + "cauliflower", + "fresh lemon juice", + "extra-virgin olive oil", + "serrano ham", + "grape tomatoes", + "flat leaf parsley", + "purple onion" + ] + }, + { + "id": 35119, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "parmesan cheese", + "heavy cream", + "garlic cloves", + "pork cutlets", + "olive oil", + "balsamic vinegar", + "all-purpose flour", + "onions", + "pepper", + "egg noodles", + "salt", + "red bell pepper", + "chicken broth", + "garlic powder", + "butter", + "cream cheese" + ] + }, + { + "id": 22640, + "cuisine": "chinese", + "ingredients": [ + "duck breasts", + "radishes", + "vegetable oil", + "golden caster sugar", + "soy sauce", + "rice wine", + "chinese five-spice powder", + "brown sugar", + "sesame seeds", + "sesame oil", + "garlic cloves", + "red chili peppers", + "clear honey", + "white wine vinegar" + ] + }, + { + "id": 30791, + "cuisine": "chinese", + "ingredients": [ + "ground black pepper", + "Yakisoba noodles", + "soy sauce", + "garlic", + "cabbage", + "brown sugar", + "vegetable oil", + "onions", + "fresh ginger", + "chopped celery" + ] + }, + { + "id": 4568, + "cuisine": "greek", + "ingredients": [ + "anise seed", + "milk", + "butter", + "whole allspice", + "sesame seeds", + "all-purpose flour", + "eggs", + "active dry yeast", + "salt", + "sugar", + "large eggs" + ] + }, + { + "id": 18094, + "cuisine": "jamaican", + "ingredients": [ + "ground ginger", + "pepper", + "ground nutmeg", + "sea salt", + "chicken pieces", + "sugar", + "olive oil", + "onion powder", + "ground rosemary", + "black pepper", + "garlic powder", + "ground thyme", + "ground allspice", + "ground cinnamon", + "lime", + "bay leaves", + "paprika" + ] + }, + { + "id": 2011, + "cuisine": "southern_us", + "ingredients": [ + "old bay seasoning", + "onions", + "bacon", + "black-eyed peas" + ] + }, + { + "id": 13771, + "cuisine": "french", + "ingredients": [ + "fine sea salt", + "shallots", + "lemon juice", + "extra-virgin olive oil", + "radishes", + "dijon style mustard" + ] + }, + { + "id": 1591, + "cuisine": "italian", + "ingredients": [ + "sugar", + "chopped fresh herbs", + "extra-virgin olive oil", + "cherry tomatoes", + "campanelle", + "garlic cloves" + ] + }, + { + "id": 13011, + "cuisine": "french", + "ingredients": [ + "large eggs", + "lemon slices", + "almonds", + "salt", + "fresh lemon juice", + "sugar", + "ice water", + "all-purpose flour", + "unsalted butter", + "crème fraîche" + ] + }, + { + "id": 36017, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "salt", + "pepper", + "baking potatoes", + "garlic cloves", + "turkey kielbasa", + "chopped onion", + "kale", + "1% low-fat milk" + ] + }, + { + "id": 31799, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "butter", + "white sugar", + "milk", + "Dutch-processed cocoa powder", + "shortening", + "vanilla extract", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 22335, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "crushed red pepper flakes", + "green chilies", + "onions", + "coconut", + "garlic", + "black mustard seeds", + "curry leaves", + "green peas", + "cumin seed", + "ground turmeric", + "fresh ginger", + "salt", + "cinnamon sticks" + ] + }, + { + "id": 18891, + "cuisine": "mexican", + "ingredients": [ + "honey", + "salt", + "medium shrimp", + "cider vinegar", + "cooking spray", + "celery", + "sliced green onions", + "cherry tomatoes", + "ground red pepper", + "fresh lime juice", + "avocado", + "Anaheim chile", + "cucumber", + "chopped cilantro fresh" + ] + }, + { + "id": 30935, + "cuisine": "italian", + "ingredients": [ + "sliced almonds", + "asiago", + "white wine vinegar", + "ground black pepper", + "manzanilla", + "water", + "Italian parsley leaves", + "large garlic cloves", + "uncooked rigatoni" + ] + }, + { + "id": 3348, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "freshly ground pepper", + "short rib", + "coconut aminos", + "garlic cloves", + "organic chicken broth", + "ginger", + "scallions", + "pears", + "fish sauce", + "coconut vinegar", + "chopped cilantro fresh" + ] + }, + { + "id": 38463, + "cuisine": "mexican", + "ingredients": [ + "sliced black olives", + "chili powder", + "black beans", + "green onions", + "ground cumin", + "water", + "brown rice", + "black pepper", + "jalapeno chilies", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 32463, + "cuisine": "jamaican", + "ingredients": [ + "mayonaise", + "flour", + "salt", + "lime", + "dried salted codfish", + "chopped garlic", + "pepper", + "baking powder", + "oil", + "cold water", + "chili paste", + "purple onion" + ] + }, + { + "id": 49020, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "scallions", + "Shaoxing wine", + "garlic", + "ground white pepper", + "sugar", + "chicken breasts", + "salt", + "onions", + "steamed rice", + "ginger", + "corn starch" + ] + }, + { + "id": 47136, + "cuisine": "italian", + "ingredients": [ + "pecorino romano cheese", + "arugula", + "pinenuts", + "extra-virgin olive oil", + "water", + "garlic cloves", + "loosely packed fresh basil leaves", + "grated lemon peel" + ] + }, + { + "id": 1381, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "garlic powder", + "all-purpose flour", + "low-fat spaghetti sauce", + "chicken breast halves", + "pepper", + "egg whites", + "cornflakes", + "part-skim mozzarella cheese", + "paprika" + ] + }, + { + "id": 25644, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "shiitake", + "vegetable oil", + "fish balls", + "noodles", + "white pepper", + "bay scallops", + "garlic", + "shrimp", + "kosher salt", + "sesame oil", + "squid", + "corn starch", + "soy sauce", + "baking soda", + "choy sum", + "oyster sauce" + ] + }, + { + "id": 35733, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "coarse salt", + "fresh parsley", + "lime", + "dry white wine", + "garlic", + "red snapper", + "fennel", + "watercress", + "fronds", + "shallots", + "freshly ground pepper" + ] + }, + { + "id": 13420, + "cuisine": "jamaican", + "ingredients": [ + "brown sugar", + "cinnamon", + "thyme", + "nutmeg", + "pepper", + "berries", + "black pepper", + "salt", + "low sodium soy sauce", + "green onions", + "garlic cloves" + ] + }, + { + "id": 33299, + "cuisine": "southern_us", + "ingredients": [ + "bread", + "salt", + "black pepper", + "white sugar", + "whole peeled tomatoes", + "butter" + ] + }, + { + "id": 2414, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "turkey sausage", + "ground black pepper", + "paprika", + "olive oil", + "sea salt", + "chile powder", + "shallots", + "shrimp" + ] + }, + { + "id": 36326, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "salt", + "olive oil", + "flat leaf parsley", + "lemon zest", + "minced garlic", + "carrots" + ] + }, + { + "id": 16882, + "cuisine": "thai", + "ingredients": [ + "lime", + "garlic", + "red bell pepper", + "jasmine rice", + "cilantro", + "scallions", + "unsweetened coconut milk", + "palm sugar", + "red curry paste", + "lemongrass", + "ginger", + "shrimp" + ] + }, + { + "id": 24072, + "cuisine": "french", + "ingredients": [ + "strawberry ice cream", + "sorbet" + ] + }, + { + "id": 2310, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "stewed tomatoes", + "hot sauce", + "chicken broth", + "boneless skinless chicken breasts", + "smoked sausage", + "onions", + "green onions", + "garlic", + "green pepper", + "pepper", + "butter", + "salt", + "basmati rice" + ] + }, + { + "id": 24688, + "cuisine": "italian", + "ingredients": [ + "manicotti shells", + "shredded mozzarella cheese", + "pork sausages", + "minced garlic", + "fresh parsley", + "pasta sauce", + "ground beef", + "dried oregano", + "sweet onion", + "italian seasoned dry bread crumbs" + ] + }, + { + "id": 37425, + "cuisine": "french", + "ingredients": [ + "milk", + "vanilla", + "sugar", + "semisweet chocolate", + "large egg yolks", + "coffee beans", + "eggs", + "instant espresso powder" + ] + }, + { + "id": 13570, + "cuisine": "southern_us", + "ingredients": [ + "worcestershire sauce", + "horseradish", + "fresh lemon juice", + "ketchup", + "hot sauce" + ] + }, + { + "id": 40047, + "cuisine": "italian", + "ingredients": [ + "chees fresh mozzarella", + "fresh basil", + "penne pasta", + "red wine vinegar", + "plum tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 41519, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "cooking spray", + "chees fresh mozzarella", + "fresh oregano", + "red bell pepper", + "caper berries", + "olive oil", + "pitted green olives", + "crushed red pepper", + "baby zucchini", + "grated orange", + "tomatoes", + "ground black pepper", + "large garlic cloves", + "salt", + "garlic cloves", + "japanese eggplants", + "sweet onion", + "red wine vinegar", + "extra-virgin olive oil", + "pizza doughs", + "fresh basil leaves" + ] + }, + { + "id": 14475, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "tuna", + "soy sauce", + "rolls", + "wasabi", + "pickled okra", + "pickled vegetables", + "gari", + "cream cheese, soften" + ] + }, + { + "id": 32086, + "cuisine": "japanese", + "ingredients": [ + "bonito flakes", + "sesame seeds", + "toasted nori", + "smoked sea salt" + ] + }, + { + "id": 15362, + "cuisine": "chinese", + "ingredients": [ + "spring roll wrappers", + "shredded carrots", + "vegetable oil", + "chopped cilantro fresh", + "water", + "green onions", + "oyster sauce", + "minced garlic", + "shredded cabbage", + "ground pork", + "chile sauce", + "fresh ginger root", + "sesame oil", + "corn starch" + ] + }, + { + "id": 40421, + "cuisine": "spanish", + "ingredients": [ + "water", + "tomato sauce", + "salt", + "instant rice", + "chunky salsa", + "seasoning", + "chili powder" + ] + }, + { + "id": 17003, + "cuisine": "japanese", + "ingredients": [ + "red chili powder", + "kasuri methi", + "onions", + "chopped tomatoes", + "okra", + "cumin", + "amchur", + "cilantro leaves", + "boiling potatoes", + "garam masala", + "oil" + ] + }, + { + "id": 25310, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "egg whites", + "salt", + "chinese black vinegar", + "white pepper", + "chives", + "shrimp", + "soy sauce", + "tapioca starch", + "oil", + "fish sauce", + "cooking oil", + "sesame oil", + "chicken-flavored soup powder" + ] + }, + { + "id": 22618, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning", + "refried beans", + "corn tortillas", + "shredded cheddar cheese", + "enchilada sauce", + "onion flakes", + "ground beef" + ] + }, + { + "id": 24546, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "lime wedges", + "carrots", + "ground cayenne pepper", + "tomato paste", + "green onions", + "cilantro", + "olive oil cooking spray", + "green cabbage", + "egg whites", + "rice noodles", + "Thai fish sauce", + "fresh lime juice", + "honey", + "apple cider vinegar", + "firm tofu", + "beansprouts" + ] + }, + { + "id": 19511, + "cuisine": "french", + "ingredients": [ + "coarse salt", + "grated nutmeg", + "large eggs", + "salt", + "unsalted butter", + "baking potatoes", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 41601, + "cuisine": "cajun_creole", + "ingredients": [ + "lump crab meat", + "diced tomatoes", + "baby spinach leaves", + "chopped fresh thyme", + "garlic cloves", + "vegetable oil", + "all-purpose flour", + "bottled clam juice", + "cajun seasoning", + "juice" + ] + }, + { + "id": 42063, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "soft tofu", + "scallions", + "water", + "white rice", + "canola oil", + "kosher salt", + "ground pork", + "corn starch", + "ground chuck", + "hoisin sauce", + "bean sauce" + ] + }, + { + "id": 7418, + "cuisine": "irish", + "ingredients": [ + "fat free less sodium chicken broth", + "leeks", + "asiago", + "chervil", + "olive oil", + "yukon gold potatoes", + "all-purpose flour", + "black pepper", + "reduced fat milk", + "butter", + "minced garlic", + "green onions", + "salt" + ] + }, + { + "id": 31560, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "water", + "vegetable oil", + "salt", + "bread flour", + "part-skim mozzarella", + "dry yeast", + "garlic", + "freshly ground pepper", + "fresh basil", + "honey", + "extra-virgin olive oil", + "fresh oregano", + "semolina flour", + "grated parmesan cheese", + "plums", + "cornmeal" + ] + }, + { + "id": 20016, + "cuisine": "thai", + "ingredients": [ + "serrano chilies", + "curry powder", + "butternut squash", + "green beans", + "ground ginger", + "tumeric", + "lime", + "yellow onion", + "medium shrimp", + "chicken stock", + "fish sauce", + "lemongrass", + "basil", + "coconut milk", + "kaffir lime leaves", + "minced garlic", + "olive oil", + "chinese ginger" + ] + }, + { + "id": 9915, + "cuisine": "vietnamese", + "ingredients": [ + "mayonaise", + "water", + "extra firm tofu", + "garlic", + "carrots", + "baguette", + "Sriracha", + "cilantro sprigs", + "lemon juice", + "soy sauce", + "white miso", + "daikon", + "rice vinegar", + "sugar", + "lime juice", + "jalapeno chilies", + "purple onion", + "cucumber" + ] + }, + { + "id": 12286, + "cuisine": "irish", + "ingredients": [ + "milk", + "butter", + "all-purpose flour", + "baking powder", + "currant", + "baking soda", + "raisins", + "white sugar", + "caraway seeds", + "apple cider vinegar", + "salt" + ] + }, + { + "id": 30865, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "rib", + "unsweetened coconut milk", + "chicken breasts", + "chili", + "chopped cilantro fresh", + "lime juice", + "low salt chicken broth" + ] + }, + { + "id": 15178, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "lettuce leaves", + "carrots", + "fresh basil", + "dijon mustard", + "rice bran oil", + "rice paper", + "lime", + "rice vinegar", + "fresh mint", + "brown sugar", + "Haas avocados", + "english cucumber" + ] + }, + { + "id": 46800, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "apple cider vinegar", + "boneless pork shoulder", + "golden brown sugar", + "crushed red pepper", + "black pepper", + "worcestershire sauce", + "hamburger buns", + "dijon mustard", + "salt" + ] + }, + { + "id": 6379, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "crème fraîche", + "polenta", + "whole milk", + "extra-virgin olive oil", + "bay leaf", + "butter", + "low salt chicken broth", + "wild mushrooms", + "shallots", + "cheese", + "fresh parsley" + ] + }, + { + "id": 8890, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sake", + "oil", + "sesame", + "boneless chicken thighs", + "sugar" + ] + }, + { + "id": 29909, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "crushed red pepper", + "white onion", + "extra-virgin olive oil", + "carrots", + "dandelion greens", + "salt", + "fava beans", + "yukon gold potatoes", + "garlic cloves" + ] + }, + { + "id": 37573, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vanilla extract", + "large eggs", + "all-purpose flour", + "baking soda", + "salt", + "butter" + ] + }, + { + "id": 22598, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vegetable shortening", + "self rising flour" + ] + }, + { + "id": 20680, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "spring onions", + "oil", + "red chili peppers", + "egg roll wraps", + "cilantro leaves", + "carrots", + "dark soy sauce", + "lime", + "rice noodles", + "garlic cloves", + "caster sugar", + "mint leaves", + "rice vinegar", + "beansprouts" + ] + }, + { + "id": 21958, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "garlic powder", + "fresh orange juice", + "orange zest", + "brown sugar", + "water", + "green onions", + "oil", + "minced garlic", + "flour", + "rice vinegar", + "soy sauce", + "minced ginger", + "boneless skinless chicken breasts", + "corn starch" + ] + }, + { + "id": 37553, + "cuisine": "greek", + "ingredients": [ + "frozen spinach", + "pepper", + "salt", + "greek seasoning", + "feta cheese", + "pasta", + "olive oil", + "shrimp", + "fresh dill", + "heavy cream" + ] + }, + { + "id": 46672, + "cuisine": "brazilian", + "ingredients": [ + "melted butter", + "mozzarella cheese", + "pizza seasoning", + "baking powder", + "eggs", + "pizza sauce", + "pizza toppings", + "tapioca flour" + ] + }, + { + "id": 42750, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "chinese five-spice powder", + "ketchup", + "red food coloring", + "brandy", + "red preserved bean curd", + "hoisin sauce", + "salt" + ] + }, + { + "id": 48502, + "cuisine": "chinese", + "ingredients": [ + "chile paste with garlic", + "water chestnuts", + "wonton wrappers", + "dried shiitake mushrooms", + "corn starch", + "water", + "green onions", + "salt", + "grated lemon zest", + "ground chicken", + "peeled fresh ginger", + "dry sherry", + "hot sauce", + "bok choy", + "low sodium soy sauce", + "mirin", + "vegetable oil", + "seasoned rice wine vinegar", + "dark sesame oil" + ] + }, + { + "id": 25313, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "garlic", + "tomato paste", + "chili powder", + "onions", + "flour tortillas", + "salt", + "tomato sauce", + "lean ground beef", + "ground cumin" + ] + }, + { + "id": 41286, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "long grain brown rice", + "pimento stuffed green olives", + "olive oil", + "frozen corn kernels", + "fresh lime juice", + "ground cumin", + "green bell pepper", + "lime wedges", + "grate lime peel", + "chunky salsa", + "water", + "salt", + "red bell pepper", + "large shrimp" + ] + }, + { + "id": 33652, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "minced garlic", + "basil leaves", + "ricotta cheese", + "nutmeg", + "mozzarella cheese", + "grated parmesan cheese", + "lasagna sheets", + "salt", + "brown sugar", + "olive oil", + "boneless skinless chicken breasts", + "garlic", + "tomatoes", + "pepper", + "egg yolks", + "balsamic vinegar", + "chili sauce" + ] + }, + { + "id": 18191, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "baby carrots", + "green cabbage", + "leeks", + "low salt chicken broth", + "olive oil", + "sausages", + "tomato paste", + "cannellini beans", + "flat leaf parsley" + ] + }, + { + "id": 1673, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "uncooked rigatoni", + "Italian turkey sausage", + "fat free milk", + "yellow bell pepper", + "chopped onion", + "marinara sauce", + "salt", + "garlic cloves", + "green bell pepper", + "cooking spray", + "all-purpose flour", + "red bell pepper" + ] + }, + { + "id": 49049, + "cuisine": "thai", + "ingredients": [ + "chiles", + "lemongrass", + "chopped cilantro", + "water", + "coconut milk", + "straw mushrooms", + "skinless chicken breasts", + "galangal", + "fish sauce", + "lime juice", + "lime leaves" + ] + }, + { + "id": 27989, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "basil leaves", + "tomatoes", + "salt" + ] + }, + { + "id": 42716, + "cuisine": "cajun_creole", + "ingredients": [ + "fennel seeds", + "dried thyme", + "creole seasoning", + "dried lentils", + "beef stock", + "carrots", + "chicken stock", + "olive oil", + "chopped onion", + "andouille sausage", + "chopped celery" + ] + }, + { + "id": 10053, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "shallots", + "roasted peanuts", + "fish sauce", + "flour", + "vegetable oil", + "cucumber", + "lime", + "rice noodles", + "garlic cloves", + "brown sugar", + "peeled prawns", + "purple onion", + "coriander" + ] + }, + { + "id": 5009, + "cuisine": "italian", + "ingredients": [ + "white button mushrooms", + "olive oil", + "skinless chicken breasts", + "pepper", + "salt", + "chicken broth", + "balsamic vinegar", + "onions", + "dried thyme", + "all-purpose flour" + ] + }, + { + "id": 43847, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "chili powder", + "green cardamom", + "garam masala", + "paneer", + "onions", + "cream", + "butter", + "oil", + "coriander powder", + "salt", + "methi" + ] + }, + { + "id": 4817, + "cuisine": "cajun_creole", + "ingredients": [ + "lower sodium chicken broth", + "white onion", + "brown rice", + "okra", + "medium shrimp", + "tomatoes", + "boneless chicken skinless thigh", + "hot pepper sauce", + "all-purpose flour", + "carrots", + "canola oil", + "celery ribs", + "green bell pepper", + "water", + "worcestershire sauce", + "garlic cloves", + "onions", + "black peppercorns", + "black pepper", + "bay leaves", + "creole seasoning", + "smoked paprika" + ] + }, + { + "id": 21223, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "cilantro", + "tomatillos", + "lime", + "garlic cloves" + ] + }, + { + "id": 516, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "bay leaves", + "old bay seasoning", + "garlic cloves", + "chicken broth", + "olive oil", + "chicken breasts", + "hot sauce", + "crushed tomatoes", + "turkey kielbasa", + "salt", + "onions", + "celery stick", + "bell pepper", + "red pepper flakes", + "long-grain rice" + ] + }, + { + "id": 22298, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "salt", + "tomatoes", + "cooking spray", + "sharp cheddar cheese", + "flour", + "penne pasta", + "black pepper", + "butter" + ] + }, + { + "id": 46764, + "cuisine": "southern_us", + "ingredients": [ + "egg whites", + "frosting", + "butter", + "white cake mix", + "buttermilk", + "almond extract" + ] + }, + { + "id": 38400, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "hot pepper sauce", + "littleneck clams", + "sweet onion", + "dry white wine", + "olive oil", + "large garlic cloves", + "crushed tomatoes", + "bay leaves", + "red bell pepper" + ] + }, + { + "id": 38125, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic", + "avocado", + "parsley", + "olive oil", + "salt", + "pasta", + "lemon" + ] + }, + { + "id": 46152, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "goat cheese", + "french bread", + "sugar", + "basil leaves", + "roasted red peppers", + "onions" + ] + }, + { + "id": 10079, + "cuisine": "southern_us", + "ingredients": [ + "andouille chicken sausage", + "chopped celery", + "peanut oil", + "fresh thyme leaves", + "yellow onion", + "red bell pepper", + "chopped green bell pepper", + "salt", + "long grain brown rice", + "chicken broth", + "garlic", + "cayenne pepper" + ] + }, + { + "id": 12772, + "cuisine": "southern_us", + "ingredients": [ + "bread crumbs", + "grated parmesan cheese", + "all-purpose flour", + "onions", + "andouille sausage", + "shredded cheddar cheese", + "butter", + "elbow macaroni", + "kosher salt", + "prepared mustard", + "grated Gruyère cheese", + "black pepper", + "milk", + "paprika", + "celery" + ] + }, + { + "id": 6624, + "cuisine": "japanese", + "ingredients": [ + "water", + "eggs", + "baking powder", + "plain flour", + "bananas", + "sugar", + "vegetable oil" + ] + }, + { + "id": 7981, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "shallots", + "roasted peanuts", + "minced garlic", + "crushed red pepper flakes", + "coconut milk", + "pomelo", + "cilantro leaves", + "fresh lime juice", + "coconut flakes", + "vegetable oil", + "shrimp" + ] + }, + { + "id": 35921, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "oil", + "chicken pieces", + "red curry paste", + "fresh lemon juice", + "ground turmeric", + "water", + "organic sugar", + "curry paste", + "peanut butter", + "coconut milk" + ] + }, + { + "id": 30507, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "ricotta cheese", + "grated parmesan cheese", + "salt", + "pepper", + "fresh mozzarella", + "eggs", + "lasagna noodles, cooked and drained" + ] + }, + { + "id": 10520, + "cuisine": "southern_us", + "ingredients": [ + "country ham", + "chopped fresh thyme", + "onions", + "black-eyed peas", + "thyme sprigs", + "olive oil", + "freshly ground pepper", + "chicken broth", + "balsamic vinegar", + "bay leaf" + ] + }, + { + "id": 34044, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "vanilla extract", + "water", + "coffee beans", + "sugar", + "1% low-fat milk", + "mint sprigs" + ] + }, + { + "id": 3773, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "worcestershire sauce", + "hot sauce", + "pepper", + "salt", + "ground cumin", + "crawfish", + "garlic", + "onions", + "butter", + "all-purpose flour" + ] + }, + { + "id": 49501, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "shrimp", + "chile pepper", + "garlic cloves", + "salt", + "parsley", + "lemon juice" + ] + }, + { + "id": 17776, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "red wine vinegar", + "boneless chicken skinless thigh", + "cayenne", + "chopped cilantro", + "ground ginger", + "garlic powder", + "nonfat yogurt plain", + "kosher salt", + "vegetable oil", + "ground cumin" + ] + }, + { + "id": 26937, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "chopped onion", + "monterey jack", + "olive oil", + "corn tortillas", + "shredded cheddar cheese", + "enchilada sauce", + "black pepper", + "chili powder", + "ground beef" + ] + }, + { + "id": 10410, + "cuisine": "mexican", + "ingredients": [ + "onions", + "flour tortillas", + "green bell pepper", + "fajita seasoning mix", + "pork tenderloin" + ] + }, + { + "id": 17813, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "avocado", + "serrano chile" + ] + }, + { + "id": 2639, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "egg whites", + "grated nutmeg", + "seasoning salt", + "paprika", + "fresh parsley", + "minced garlic", + "red wine", + "ground beef", + "olive oil", + "ground pork" + ] + }, + { + "id": 1984, + "cuisine": "brazilian", + "ingredients": [ + "seedless watermelon", + "demerara sugar", + "cachaca", + "lime juice", + "basil leaves" + ] + }, + { + "id": 19310, + "cuisine": "indian", + "ingredients": [ + "evaporated milk", + "tahini", + "ginger", + "meat tenderizer", + "onions", + "white pepper", + "coriander powder", + "cinnamon", + "green cardamom", + "garlic cloves", + "saffron", + "clove", + "garam masala", + "yoghurt", + "salt", + "oil", + "cashew nuts", + "mace", + "boneless chicken breast", + "poppy seeds", + "brown cardamom", + "coconut milk" + ] + }, + { + "id": 44714, + "cuisine": "southern_us", + "ingredients": [ + "diced onions", + "milk", + "baking powder", + "chiles", + "jalapeno chilies", + "cornmeal", + "eggs", + "baking soda", + "salt", + "sugar", + "flour" + ] + }, + { + "id": 33617, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "jicama", + "chopped cilantro fresh", + "lime juice", + "frozen corn kernels", + "purple onion", + "mango" + ] + }, + { + "id": 25715, + "cuisine": "italian", + "ingredients": [ + "warm water", + "balsamic vinegar", + "all-purpose flour", + "fresh rosemary", + "olive oil", + "rapid rise yeast", + "yellow corn meal", + "kosher salt", + "diced tomatoes", + "freshly ground pepper", + "sugar", + "parmesan cheese", + "salt" + ] + }, + { + "id": 41996, + "cuisine": "brazilian", + "ingredients": [ + "black beans", + "bacon", + "sausages", + "tomato paste", + "water", + "salt", + "onions", + "pepper", + "garlic", + "bay leaf", + "chicken broth", + "chili powder", + "ground coriander", + "pork butt roast" + ] + }, + { + "id": 9958, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "chopped fresh mint", + "cucumber", + "lemon juice", + "white sugar", + "greek yogurt" + ] + }, + { + "id": 20310, + "cuisine": "southern_us", + "ingredients": [ + "chopped pecans", + "butter", + "vanilla extract", + "powdered sugar", + "cream cheese, soften" + ] + }, + { + "id": 49305, + "cuisine": "jamaican", + "ingredients": [ + "white rum", + "lemon juice", + "fresh ginger", + "sugar", + "boiling water", + "sorrel", + "berries" + ] + }, + { + "id": 3440, + "cuisine": "british", + "ingredients": [ + "dried currants", + "ground nutmeg", + "golden raisins", + "orange juice", + "grated lemon peel", + "ground cinnamon", + "ground cloves", + "unsalted butter", + "rum raisin ice cream", + "pitted prunes", + "brandy", + "light molasses", + "salt", + "dark brown sugar", + "grated orange peel", + "milk", + "dark rum", + "ground allspice", + "pippin apples" + ] + }, + { + "id": 43434, + "cuisine": "indian", + "ingredients": [ + "salt", + "basmati rice", + "coconut milk" + ] + }, + { + "id": 4003, + "cuisine": "italian", + "ingredients": [ + "water", + "artichokes", + "black pepper", + "fresh parmesan cheese", + "olive oil", + "salt", + "minced garlic", + "lemon" + ] + }, + { + "id": 33906, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "dried oregano", + "provolone cheese", + "eggplant", + "italian salad dressing", + "marinara sauce", + "dried rosemary" + ] + }, + { + "id": 22493, + "cuisine": "cajun_creole", + "ingredients": [ + "active dry yeast", + "salt", + "warm water", + "large eggs", + "confectioners sugar", + "sugar", + "evaporated milk", + "all-purpose flour", + "canola", + "butter" + ] + }, + { + "id": 10436, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "curry powder", + "salt", + "boneless, skinless chicken breast", + "cooking oil", + "garlic cloves", + "sugar", + "lemongrass", + "scallions", + "fish sauce", + "water", + "shallots", + "bulb" + ] + }, + { + "id": 36845, + "cuisine": "italian", + "ingredients": [ + "halibut fillets", + "crushed red pepper", + "flat leaf parsley", + "cavatappi", + "littleneck clams", + "salt", + "plum tomatoes", + "water", + "dry red wine", + "garlic cloves", + "olive oil", + "purple onion", + "medium shrimp" + ] + }, + { + "id": 773, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "salt", + "arborio rice", + "vegetable broth", + "butter", + "chanterelle", + "ground black pepper", + "garlic" + ] + }, + { + "id": 25803, + "cuisine": "mexican", + "ingredients": [ + "jack", + "enchilada sauce", + "green onions", + "tortillas", + "rotisserie chicken" + ] + }, + { + "id": 10754, + "cuisine": "italian", + "ingredients": [ + "Alfredo sauce", + "grated parmesan cheese", + "shredded mozzarella cheese", + "frozen chopped spinach", + "cheese tortellini", + "marinara sauce", + "italian seasoning" + ] + }, + { + "id": 41011, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "fresh lemon juice", + "onions", + "rosemary", + "bone-in pork chops", + "flat leaf parsley", + "reduced sodium chicken broth", + "extra-virgin olive oil", + "red bell pepper", + "unsalted butter", + "garlic cloves", + "cherry peppers" + ] + }, + { + "id": 31685, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "almond extract", + "salt", + "white vinegar", + "low-fat buttermilk", + "red food coloring", + "unsweetened cocoa powder", + "granulated sugar", + "vegetable shortening", + "all-purpose flour", + "cream cheese frosting", + "large eggs", + "vanilla extract" + ] + }, + { + "id": 5109, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "flour tortillas", + "yellow onion", + "black pepper", + "lime", + "chili powder", + "red bell pepper", + "green bell pepper", + "fresh cilantro", + "yoghurt", + "sweet corn", + "black beans", + "olive oil", + "garlic", + "ground cumin" + ] + }, + { + "id": 14338, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "barbecue sauce", + "tortilla chips", + "pepper", + "bacon", + "onions", + "tomatoes", + "green onions", + "ground beef", + "shredded cheddar cheese", + "salt" + ] + }, + { + "id": 10466, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "honey", + "lean ground beef", + "garlic", + "celery", + "bread crumbs", + "whole milk", + "ground pork", + "cayenne pepper", + "black pepper", + "bell pepper", + "worcestershire sauce", + "hot sauce", + "ketchup", + "ground nutmeg", + "butter", + "salt", + "onions" + ] + }, + { + "id": 13040, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "scallions", + "paprika", + "honey", + "fresh lime juice", + "fat free yogurt", + "cilantro" + ] + }, + { + "id": 17257, + "cuisine": "italian", + "ingredients": [ + "pink grapefruit juice", + "campari", + "star anise", + "bitters", + "agave nectar", + "grapefruit" + ] + }, + { + "id": 45660, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "garlic", + "oyster sauce", + "soy sauce", + "sesame oil", + "scallions", + "chili paste", + "dark brown sugar", + "fish", + "kosher salt", + "crushed red pepper flakes", + "fresh lemon juice" + ] + }, + { + "id": 47517, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "jalapeno chilies", + "frozen corn kernels", + "corn tortillas", + "lower sodium chicken broth", + "salsa verde", + "shredded sharp cheddar cheese", + "garlic cloves", + "ground cumin", + "water", + "ground red pepper", + "low-fat cream cheese", + "bone in chicken thighs", + "kosher salt", + "cooking spray", + "chopped onion", + "chopped cilantro fresh" + ] + }, + { + "id": 11915, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "lemon-lime soda", + "grated lemon peel", + "unsalted butter", + "all-purpose flour", + "vegetable oil spray", + "salt", + "powdered sugar", + "large eggs", + "grate lime peel" + ] + }, + { + "id": 23928, + "cuisine": "chinese", + "ingredients": [ + "sweet potato starch", + "ground black pepper", + "coarse salt", + "chinese five-spice powder", + "boneless chicken skinless thigh", + "sesame oil", + "garlic", + "corn starch", + "soy sauce", + "Shaoxing wine", + "ginger", + "garlic cloves", + "thai basil", + "vegetable oil", + "granulated white sugar", + "ground white pepper" + ] + }, + { + "id": 36184, + "cuisine": "korean", + "ingredients": [ + "dijon mustard", + "salt", + "garlic cloves", + "snow peas", + "molasses", + "purple onion", + "long-grain rice", + "chopped cilantro fresh", + "low sodium soy sauce", + "extra firm tofu", + "peanut oil", + "carrots", + "sugar", + "vegetable broth", + "fresh onion", + "red bell pepper" + ] + }, + { + "id": 39971, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "fresh parsley", + "water", + "cream cheese", + "spaghetti", + "cooking spray", + "salad dressing mix", + "condensed cream of chicken soup", + "garlic", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 38220, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "bananas", + "white sugar", + "white vinegar", + "peanut butter", + "egg yolks" + ] + }, + { + "id": 16060, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "large eggs", + "part-skim ricotta cheese", + "red bell pepper", + "tomatoes", + "olive oil", + "basil", + "scallions", + "onions", + "pasta", + "dried thyme", + "large garlic cloves", + "ground allspice", + "ground turkey", + "part-skim mozzarella", + "freshly grated parmesan", + "dry red wine", + "carrots" + ] + }, + { + "id": 26478, + "cuisine": "vietnamese", + "ingredients": [ + "black pepper", + "corn starch", + "fish sauce", + "flank steak", + "regular soy sauce", + "sugar", + "salt" + ] + }, + { + "id": 26831, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "garlic powder", + "onion powder", + "sour cream", + "mango", + "fresh cilantro", + "guacamole", + "beer", + "chopped cilantro", + "pork shoulder roast", + "jalapeno chilies", + "salt", + "corn tortillas", + "canola oil", + "lime", + "chili powder", + "smoked paprika", + "cumin" + ] + }, + { + "id": 28688, + "cuisine": "moroccan", + "ingredients": [ + "chicken stock", + "drumstick", + "lemon", + "black olives", + "chicken", + "green olives", + "fresh coriander", + "ginger", + "garlic cloves", + "tumeric", + "flour", + "extra-virgin olive oil", + "cumin", + "tomatoes", + "black pepper", + "paprika", + "cayenne pepper" + ] + }, + { + "id": 40570, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "olive oil", + "whipping cream", + "low salt chicken broth", + "pinenuts", + "meatballs", + "penne pasta", + "cherry tomatoes", + "grated parmesan cheese", + "garlic cloves", + "serrano chilies", + "eggplant", + "salt", + "fresh basil leaves" + ] + }, + { + "id": 36494, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "lemon wedge", + "spaghetti", + "pasta sauce", + "precooked meatballs", + "crushed red pepper", + "dried basil", + "kalamata", + "capers", + "parmesan cheese", + "anchovy paste" + ] + }, + { + "id": 22612, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "milk", + "purple onion", + "chorizo sausage", + "black beans", + "jalapeno chilies", + "tortilla chips", + "jack cheese", + "lime", + "salt", + "American cheese", + "cilantro", + "tequila" + ] + }, + { + "id": 24109, + "cuisine": "italian", + "ingredients": [ + "fettuccine pasta", + "grated parmesan cheese", + "olive oil", + "evaporated skim milk", + "dried basil", + "lemon", + "ground black pepper" + ] + }, + { + "id": 39234, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "saffron", + "ground cardamom", + "Equal Sweetener", + "chopped nuts", + "ghee" + ] + }, + { + "id": 12104, + "cuisine": "japanese", + "ingredients": [ + "sake", + "water", + "pork", + "mirin", + "sugar", + "sesame seeds", + "soy sauce", + "ginger root" + ] + }, + { + "id": 30916, + "cuisine": "chinese", + "ingredients": [ + "water", + "flank steak", + "scallions", + "toasted sesame oil", + "white pepper", + "regular soy sauce", + "safflower", + "beansprouts", + "coconut sugar", + "mirin", + "garlic", + "corn starch", + "greens", + "dark soy sauce", + "fresh ginger root", + "rice noodles", + "oyster sauce", + "fermented black beans" + ] + }, + { + "id": 34073, + "cuisine": "moroccan", + "ingredients": [ + "parsley sprigs", + "garlic cloves", + "ground cumin", + "extra-virgin olive oil", + "carrots", + "kosher salt", + "fresh lemon juice", + "cayenne pepper", + "flat leaf parsley" + ] + }, + { + "id": 29299, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "broccoli florets", + "all-purpose flour", + "fresh asparagus", + "olive oil", + "garlic", + "fresh mushrooms", + "milk", + "butter", + "penne pasta", + "prepar pesto", + "salt and ground black pepper", + "salt", + "onions" + ] + }, + { + "id": 36244, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "chili powder", + "salt", + "onions", + "garam masala", + "peas", + "oil", + "fresh coriander", + "ginger", + "green chilies", + "plum tomatoes", + "fenugreek", + "paneer", + "garlic cloves" + ] + }, + { + "id": 43077, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken skinless thigh", + "Shaoxing wine", + "peanut oil", + "snow peas", + "sugar", + "chili paste", + "ginger", + "corn starch", + "soy sauce", + "water chestnuts", + "garlic", + "bamboo shoots", + "sesame seeds", + "sesame oil", + "scallions" + ] + }, + { + "id": 14836, + "cuisine": "italian", + "ingredients": [ + "almonds", + "all-purpose flour", + "chopped almonds", + "confectioners sugar", + "lemon zest", + "margarine", + "eggs", + "vanilla extract" + ] + }, + { + "id": 48119, + "cuisine": "mexican", + "ingredients": [ + "honey", + "freshly ground pepper", + "chopped cilantro fresh", + "lime zest", + "extra-virgin olive oil", + "scallions", + "red wine vinegar", + "english cucumber", + "avocado", + "salt", + "fresh lime juice" + ] + }, + { + "id": 23788, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "cooking spray", + "chopped onion", + "chicken broth", + "chopped green bell pepper", + "all-purpose flour", + "cooked turkey", + "non-fat sour cream", + "ground coriander", + "black pepper", + "flour tortillas", + "salsa" + ] + }, + { + "id": 40890, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "ground cinnamon", + "whole milk", + "salt", + "buttermilk biscuits", + "cream", + "lemon", + "walnuts", + "light brown sugar", + "powdered sugar", + "butter", + "apple pie filling", + "nutmeg", + "granulated sugar", + "apples" + ] + }, + { + "id": 8374, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "grated parmesan cheese", + "baked pizza crust", + "tomatoes", + "olive oil", + "chicken breasts", + "dried basil", + "Alfredo sauce", + "dried oregano", + "sundried tomato pesto", + "feta cheese", + "butter" + ] + }, + { + "id": 24386, + "cuisine": "thai", + "ingredients": [ + "mayonaise", + "large egg whites", + "romaine lettuce leaves", + "bread crumb fresh", + "green onions", + "cucumber", + "tomatoes", + "green curry paste", + "light mayonnaise", + "olive oil flavored cooking spray", + "hamburger buns", + "ground turkey breast", + "salt" + ] + }, + { + "id": 48205, + "cuisine": "greek", + "ingredients": [ + "english cucumber", + "feta cheese", + "cherry tomatoes", + "tuna packed in olive oil", + "kalamata" + ] + }, + { + "id": 15885, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "vegetable oil", + "dried shrimp", + "fresh peas", + "salt", + "water", + "ground pork", + "chicken bouillon granules", + "soft tofu", + "corn starch" + ] + }, + { + "id": 10699, + "cuisine": "french", + "ingredients": [ + "water packed artichoke hearts", + "garlic cloves", + "fresh basil", + "cayenne pepper", + "salt", + "crackers", + "olive oil", + "brie cheese" + ] + }, + { + "id": 9892, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "olive oil", + "garlic", + "ground coriander", + "cooked quinoa", + "tomato sauce", + "flour tortillas", + "salt", + "red bell pepper", + "onions", + "shredded cheddar cheese", + "sea salt", + "wild rice", + "sour cream", + "avocado", + "ground black pepper", + "purple onion", + "pinto beans", + "fresh parsley" + ] + }, + { + "id": 21824, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "garlic cloves", + "pasta sauce", + "boneless skinless chicken breasts", + "potatoes", + "olive oil", + "red bell pepper" + ] + }, + { + "id": 28071, + "cuisine": "british", + "ingredients": [ + "brown sugar", + "raisins", + "eggs", + "ground nutmeg", + "golden syrup", + "single crust pie", + "butter", + "pastry", + "salt" + ] + }, + { + "id": 18424, + "cuisine": "british", + "ingredients": [ + "balsamic vinegar", + "large shrimp", + "bacon slices", + "blue cheese", + "fresh rosemary", + "stilton cheese" + ] + }, + { + "id": 17192, + "cuisine": "southern_us", + "ingredients": [ + "cayenne pepper", + "pimentos", + "mayonaise", + "sharp cheddar cheese", + "hot sauce" + ] + }, + { + "id": 28779, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "annatto seeds", + "spring onions", + "salt", + "beansprouts", + "lemongrass", + "beef brisket", + "lime wedges", + "oil", + "banana blossom", + "water", + "pork leg", + "shrimp paste", + "cilantro leaves", + "sliced shallots", + "leaves", + "mint leaves", + "rice noodles", + "ground white pepper" + ] + }, + { + "id": 31326, + "cuisine": "italian", + "ingredients": [ + "pizza sauce", + "italian seasoning", + "shredded mozzarella cheese", + "lean ground beef", + "pizza crust", + "red bell pepper" + ] + }, + { + "id": 25284, + "cuisine": "thai", + "ingredients": [ + "sugar", + "coconut milk", + "coconut oil", + "salt", + "pandan essence", + "maple syrup", + "eggs", + "vanilla", + "canola oil" + ] + }, + { + "id": 42101, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "carrots", + "sugar", + "salt", + "onions", + "eggs", + "wonton wrappers", + "ground beef", + "soy sauce", + "chinese cabbage" + ] + }, + { + "id": 2822, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "okra", + "white vinegar", + "onions", + "vegetable oil" + ] + }, + { + "id": 33128, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "fresh cilantro", + "juice", + "pepper", + "salt", + "jalapeno chilies", + "sweet yellow corn" + ] + }, + { + "id": 41755, + "cuisine": "southern_us", + "ingredients": [ + "water", + "star anise", + "ice cubes", + "honey", + "cinnamon sticks", + "white vinegar", + "watermelon", + "salt", + "syrup", + "lemon", + "brine" + ] + }, + { + "id": 38726, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "buttermilk", + "shredded cheddar cheese", + "splenda", + "yellow corn meal", + "jalapeno chilies", + "salt", + "baking soda", + "butter" + ] + }, + { + "id": 48487, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "unsalted butter", + "chopped fresh thyme", + "grits", + "andouille sausage", + "olive oil", + "shallots", + "freshly ground pepper", + "jumbo shrimp", + "chopped tomatoes", + "coarse salt", + "lemon juice", + "shrimp stock", + "minced garlic", + "chopped fresh chives", + "creole seasoning", + "fresh chervil" + ] + }, + { + "id": 36587, + "cuisine": "french", + "ingredients": [ + "sugar", + "all-purpose flour", + "blackberries", + "sweet vermouth", + "whole milk", + "grated lemon peel", + "large egg whites", + "fresh lemon juice", + "large egg yolks", + "corn starch" + ] + }, + { + "id": 11607, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "milk", + "pepper", + "vegetable oil", + "boneless chop pork", + "crumbs", + "minced garlic", + "salt" + ] + }, + { + "id": 34163, + "cuisine": "italian", + "ingredients": [ + "seasoning rub", + "balsamic vinegar", + "olive oil", + "boneless pork loin" + ] + }, + { + "id": 29315, + "cuisine": "french", + "ingredients": [ + "granulated sugar", + "fresh lemon juice", + "unsalted butter", + "heavy cream", + "gala apples", + "apple jelly", + "pastry dough", + "confectioners sugar", + "calvados", + "applesauce" + ] + }, + { + "id": 39916, + "cuisine": "thai", + "ingredients": [ + "black peppercorns", + "lemongrass", + "ground nutmeg", + "szechwan peppercorns", + "green cardamom", + "galangal", + "fish sauce", + "mace", + "shrimp paste", + "button mushrooms", + "cinnamon sticks", + "kosher salt", + "coriander seeds", + "shallots", + "star anise", + "chopped cilantro", + "long pepper", + "hot chili", + "whole cloves", + "vegetable oil", + "brown cardamom", + "chicken" + ] + }, + { + "id": 40682, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "garlic powder", + "diced tomatoes", + "ground beef", + "water", + "vegetable oil", + "salt", + "dried oregano", + "pepper", + "chili powder", + "chopped celery", + "onions", + "kidney beans", + "worcestershire sauce", + "green pepper" + ] + }, + { + "id": 35082, + "cuisine": "greek", + "ingredients": [ + "flour", + "eggs", + "greek yogurt", + "baking soda" + ] + }, + { + "id": 20632, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "duck", + "bay leaf", + "black peppercorns", + "fresh thyme", + "carrots", + "unflavored gelatin", + "shallots", + "flat leaf parsley", + "water", + "garlic cloves", + "armagnac" + ] + }, + { + "id": 32820, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "all-purpose flour", + "boiling water", + "brown sugar", + "baking powder", + "corn starch", + "ground cinnamon", + "unsalted butter", + "fresh lemon juice", + "ground nutmeg", + "salt", + "white sugar" + ] + }, + { + "id": 25743, + "cuisine": "thai", + "ingredients": [ + "thai basil", + "vegetable oil", + "rice vinegar", + "Thai fish sauce", + "soy sauce", + "beef", + "coarse sea salt", + "garlic cloves", + "holy basil", + "lime juice", + "shallots", + "red pepper", + "oyster sauce", + "cooked rice", + "palm sugar", + "cilantro root", + "free range egg", + "chillies" + ] + }, + { + "id": 22020, + "cuisine": "filipino", + "ingredients": [ + "cooked bone in ham", + "pineapple juice", + "clove", + "yellow mustard", + "liquid", + "sprite", + "beer", + "brown sugar", + "salt", + "crushed pineapple" + ] + }, + { + "id": 47704, + "cuisine": "mexican", + "ingredients": [ + "chopped tomatoes", + "hot sauce", + "vegan sour cream", + "gluten", + "sliced green onions", + "lettuce", + "guacamole", + "chopped cilantro", + "kale", + "salsa" + ] + }, + { + "id": 40790, + "cuisine": "indian", + "ingredients": [ + "cilantro", + "lemon juice", + "chili powder", + "vinaigrette", + "onions", + "chickpeas", + "cucumber", + "vegetable oil", + "garlic cloves", + "chaat masala" + ] + }, + { + "id": 39313, + "cuisine": "greek", + "ingredients": [ + "eggs", + "green onions", + "small curd cottage cheese", + "dried dillweed", + "phyllo dough", + "butter", + "frozen chopped spinach", + "feta cheese" + ] + }, + { + "id": 20339, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "black olives", + "enchilada sauce", + "tomatoes", + "salad greens", + "frozen corn", + "bread flour", + "warm water", + "olive oil", + "tricolor quinoa", + "avocado", + "active dry yeast", + "salt", + "liquid sweetener" + ] + }, + { + "id": 13466, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "butter", + "all-purpose flour", + "flour", + "buttermilk", + "lemon juice", + "baking soda", + "lemon", + "blueberries", + "sugar", + "baking powder", + "salt", + "nectarines" + ] + }, + { + "id": 902, + "cuisine": "italian", + "ingredients": [ + "bay scallops", + "chopped celery", + "peas", + "fresh parsley", + "corn oil", + "shrimp", + "kosher salt", + "garlic" + ] + }, + { + "id": 30611, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chile pepper", + "salt", + "dried oregano", + "fresh cilantro", + "tomatillos", + "chopped cilantro", + "water", + "vegetable oil", + "sour cream", + "shredded Monterey Jack cheese", + "boneless pork shoulder", + "jalapeno chilies", + "garlic", + "onions" + ] + }, + { + "id": 11642, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "lemon zest", + "vanilla wafer crumbs", + "sweetened condensed milk", + "powdered sugar", + "butter", + "fresh lemon juice", + "mint", + "yellow food coloring", + "lemon slices", + "granulated sugar", + "whipped cream", + "cream cheese, soften" + ] + }, + { + "id": 32073, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "jalapeno chilies", + "eye of round steak", + "salt", + "cumin", + "white pepper", + "vegetable oil", + "cheese", + "sauce", + "jack cheese", + "chili powder", + "cilantro", + "yellow onion", + "flour tortillas", + "heavy cream", + "garlic", + "sour cream" + ] + }, + { + "id": 14706, + "cuisine": "french", + "ingredients": [ + "chicken broth", + "garlic", + "sour cream", + "olive oil", + "all-purpose flour", + "boneless skinless chicken breast halves", + "pepper", + "salt", + "onions", + "butter", + "sliced mushrooms", + "dried rosemary" + ] + }, + { + "id": 15546, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "large eggs", + "vanilla extract", + "baking soda", + "buttermilk", + "brown sugar", + "flour", + "salt" + ] + }, + { + "id": 5918, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "zucchini", + "vegetable broth", + "smoked paprika", + "pepper", + "shallots", + "garlic", + "water", + "brown rice", + "salt", + "olive oil", + "diced tomatoes", + "chickpeas" + ] + }, + { + "id": 22131, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "sesame oil", + "corn starch", + "chicken broth", + "broccoli florets", + "crushed red pepper flakes", + "ginger root", + "minced garlic", + "red wine vinegar", + "Foster Farms boneless skinless chicken breasts", + "sugar", + "green onions", + "oil" + ] + }, + { + "id": 7477, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "flour", + "dry sherry", + "salt", + "shrimp", + "onions", + "shrimp stock", + "pepper", + "butter", + "tomatoes with juice", + "lemon juice", + "celery", + "brandy", + "dry white wine", + "paprika", + "oil", + "thyme", + "arborio rice", + "water", + "heavy cream", + "garlic", + "carrots", + "bay leaf" + ] + }, + { + "id": 34618, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "cajun seasoning", + "chopped celery", + "ground beef", + "jalapeno chilies", + "cracked black pepper", + "chopped onion", + "chopped green bell pepper", + "bacon", + "hot sauce", + "cooked rice", + "green onions", + "garlic", + "chicken livers" + ] + }, + { + "id": 11031, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "purple onion", + "vegetable oil", + "ground ginger", + "cinnamon", + "golden raisins" + ] + }, + { + "id": 33364, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "flour tortillas", + "cherry tomatoes", + "green chilies", + "refried beans", + "cayenne pepper", + "avocado", + "kidney beans", + "coriander" + ] + }, + { + "id": 39552, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "bay leaves", + "garlic cloves", + "pancetta", + "dried porcini mushrooms", + "shoulder roast", + "carrots", + "celery ribs", + "olive oil", + "brine-cured black olives", + "onions", + "rosemary sprigs", + "dry white wine", + "juice" + ] + }, + { + "id": 19274, + "cuisine": "mexican", + "ingredients": [ + "tequila", + "triple sec", + "grapefruit juice", + "sugar" + ] + }, + { + "id": 44865, + "cuisine": "cajun_creole", + "ingredients": [ + "crab meat", + "garlic powder", + "relish", + "creole seasoning", + "greens", + "capers", + "Ritz Crackers", + "hot sauce", + "fresh parsley", + "eggs", + "finely chopped onion", + "red pepper", + "lemon juice", + "creole mustard", + "mayonaise", + "Tabasco Pepper Sauce", + "sauce", + "olives" + ] + }, + { + "id": 34750, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "ginger", + "black cardamom pods", + "clove", + "szechwan peppercorns", + "star anise", + "bay leaves", + "chile de arbol", + "canola oil", + "kosher salt", + "cinnamon", + "garlic" + ] + }, + { + "id": 23481, + "cuisine": "cajun_creole", + "ingredients": [ + "warm water", + "vegetable oil", + "powdered sugar", + "evaporated milk", + "all-purpose flour", + "sugar", + "large eggs", + "active dry yeast", + "salt" + ] + }, + { + "id": 46018, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "all-purpose flour", + "mashed potatoes", + "vegetable oil", + "chicken", + "whole milk", + "corn-on-the-cob", + "kosher salt", + "butter" + ] + }, + { + "id": 27765, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "sour cream", + "shredded cheddar cheese", + "refrigerated pizza dough", + "flour", + "refried beans", + "salsa" + ] + }, + { + "id": 15204, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "chopped cilantro", + "kosher salt", + "jalapeno chilies", + "white onion", + "chopped tomatoes", + "minced garlic", + "hass avocado" + ] + }, + { + "id": 18744, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "peeled fresh ginger", + "salt", + "garlic cloves", + "ground turmeric", + "clove", + "cooking spray", + "vegetable oil", + "cardamom pods", + "cinnamon sticks", + "garam masala", + "ground red pepper", + "chopped onion", + "leg of lamb", + "plum tomatoes", + "water", + "bay leaves", + "paprika", + "long-grain rice", + "chopped cilantro fresh" + ] + }, + { + "id": 19849, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "extra-virgin olive oil", + "garlic cloves", + "ground black pepper", + "littleneck clams", + "anchovy fillets", + "dried thyme", + "butter", + "crushed red pepper", + "kosher salt", + "clam juice", + "linguine", + "fresh parsley" + ] + }, + { + "id": 22842, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "tomato basil sauce", + "pesto", + "baby spinach", + "ham", + "frozen shelled edamame", + "olive oil", + "parmagiano reggiano", + "frozen cheese ravioli", + "part-skim ricotta cheese" + ] + }, + { + "id": 4147, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vegetable shortening", + "poultry seasoning", + "chicken parts", + "salt", + "black pepper", + "parsley", + "baking mix", + "cream of chicken soup", + "paprika" + ] + }, + { + "id": 19675, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "cucumber", + "hot pepper", + "peanuts", + "white vinegar", + "crushed garlic" + ] + }, + { + "id": 24054, + "cuisine": "french", + "ingredients": [ + "sea salt", + "leg of lamb", + "rosemary sprigs", + "tapenade", + "cracked black pepper", + "thyme sprigs", + "large garlic cloves", + "extra-virgin olive oil" + ] + }, + { + "id": 473, + "cuisine": "indian", + "ingredients": [ + "water", + "bay leaves", + "garlic", + "onions", + "salmon fillets", + "ground black pepper", + "parsley", + "carrots", + "peppercorns", + "dried thyme", + "dry white wine", + "salt", + "chopped fresh mint", + "plain yogurt", + "vinegar", + "paprika", + "cucumber" + ] + }, + { + "id": 38589, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "boneless skinless chicken breast halves", + "angel hair", + "salt", + "chopped garlic", + "seasoning", + "olive oil", + "plum tomatoes", + "pepper", + "feta cheese crumbles" + ] + }, + { + "id": 34045, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "frozen corn kernels", + "chicken thighs", + "frozen banana leaf", + "sour cream", + "flour", + "sauce", + "salad oil", + "salt", + "fat skimmed chicken broth", + "olives" + ] + }, + { + "id": 11651, + "cuisine": "french", + "ingredients": [ + "swiss chard", + "dry white wine", + "freshly ground pepper", + "water", + "egg yolks", + "yellow onion", + "carrots", + "olive oil", + "leeks", + "white fleshed fish", + "baguette", + "fresh thyme", + "salt", + "garlic cloves", + "orange zest" + ] + }, + { + "id": 39744, + "cuisine": "southern_us", + "ingredients": [ + "wish bone ranch dress", + "cut up cooked chicken", + "tomatoes", + "purple onion", + "frozen whole kernel corn", + "black beans", + "torn romain lettuc leav" + ] + }, + { + "id": 29534, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "linguine", + "fresh parsley", + "pancetta", + "large eggs", + "salt", + "finely chopped onion", + "1% low-fat milk", + "fresh parmesan cheese", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 30635, + "cuisine": "mexican", + "ingredients": [ + "ground chipotle chile pepper", + "corn kernels", + "salt", + "avocado", + "lime", + "serrano peppers", + "fresh cilantro", + "olive oil", + "sliced green onions", + "pepper", + "cherry tomatoes", + "cooked quinoa" + ] + }, + { + "id": 27257, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "chili sauce", + "flank steak", + "fresh ginger root", + "dark sesame oil", + "garlic" + ] + }, + { + "id": 11925, + "cuisine": "thai", + "ingredients": [ + "tofu", + "coriander seeds", + "green chilies", + "jeera", + "black peppercorns", + "lemon grass", + "oil", + "ground ginger", + "vegetables", + "lemon rind", + "coriander", + "sugar", + "salt", + "corn flour" + ] + }, + { + "id": 11716, + "cuisine": "indian", + "ingredients": [ + "asafoetida", + "millet", + "cumin seed", + "daal", + "salt", + "ground turmeric", + "red chili peppers", + "green peas", + "clarified butter", + "garam masala", + "green chilies", + "ground cumin" + ] + }, + { + "id": 12809, + "cuisine": "italian", + "ingredients": [ + "pepper", + "dry white wine", + "salt", + "tomato sauce", + "beef", + "pecorino romano cheese", + "olive oil", + "hot pepper", + "fresh parsley", + "pork", + "veal", + "garlic" + ] + }, + { + "id": 13223, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "ground sausage", + "whole milk", + "biscuits", + "butter", + "pepper", + "salt" + ] + }, + { + "id": 24825, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "salt", + "soy yogurt", + "tomatoes", + "baby spinach", + "onions", + "ground cumin", + "fenugreek", + "firm tofu", + "ginger paste", + "tumeric", + "garlic", + "coriander" + ] + }, + { + "id": 13339, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "italian seasoning", + "seasoned bread crumbs", + "ground black pepper", + "fresh parsley", + "kosher salt", + "fresh parmesan cheese", + "fresh lemon juice", + "large egg whites", + "cooking spray", + "center cut loin pork chop" + ] + }, + { + "id": 181, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "cayenne pepper", + "fresh lemon juice", + "ground cinnamon", + "mint sprigs", + "garlic cloves", + "golden raisins", + "scallions", + "greek yogurt", + "kosher salt", + "lamb loin chops", + "carrots" + ] + }, + { + "id": 28510, + "cuisine": "italian", + "ingredients": [ + "eggs", + "diced tomatoes", + "garlic salt", + "dried basil", + "shredded mozzarella cheese", + "ketchup", + "dry bread crumbs", + "dried oregano", + "italian style seasoning", + "ground beef" + ] + }, + { + "id": 46923, + "cuisine": "filipino", + "ingredients": [ + "water", + "oil", + "brown sugar", + "mung beans", + "sesame seeds", + "sugar", + "glutinous rice flour" + ] + }, + { + "id": 9648, + "cuisine": "greek", + "ingredients": [ + "coriander seeds", + "extra-virgin olive oil", + "lemon juice", + "black pepper", + "parsley", + "all-purpose flour", + "onions", + "olive oil", + "large garlic cloves", + "fresh oregano", + "chicken", + "dry white wine", + "salt", + "bay leaf" + ] + }, + { + "id": 6817, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "medium salsa", + "boneless chicken breast halves", + "lime", + "pepper", + "taco seasoning" + ] + }, + { + "id": 36096, + "cuisine": "southern_us", + "ingredients": [ + "lettuce leaves", + "cayenne pepper", + "mayonaise", + "paprika", + "tuna", + "boneless skinless chicken breasts", + "ground white pepper", + "whole grain mustard", + "biscuit dough", + "ground cumin" + ] + }, + { + "id": 14337, + "cuisine": "southern_us", + "ingredients": [ + "white pepper", + "flour", + "salt", + "country gravy", + "milk", + "vegetable shortening", + "water", + "cutlet", + "eggs", + "ground black pepper", + "paprika" + ] + }, + { + "id": 4753, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "ground coriander", + "ground turmeric", + "ground cinnamon", + "salt", + "fresh lemon juice", + "whole milk yoghurt", + "garlic cloves", + "ground cumin", + "ground cloves", + "ground allspice", + "ground cayenne pepper" + ] + }, + { + "id": 23402, + "cuisine": "italian", + "ingredients": [ + "sugar", + "crushed ice", + "mint sprigs", + "apricot nectar", + "apricot halves", + "sparkling wine" + ] + }, + { + "id": 23759, + "cuisine": "italian", + "ingredients": [ + "nonfat half-and-half", + "blueberries", + "vanilla beans", + "strawberries", + "low-fat milk", + "sugar", + "whipped cream", + "powdered gelatin", + "raspberries", + "mint sprigs", + "blackberries" + ] + }, + { + "id": 37230, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "large egg whites", + "jalapeno chilies", + "paprika", + "ripe olives", + "black pepper", + "fresh parmesan cheese", + "butter", + "all-purpose flour", + "sliced green onions", + "saltines", + "corn kernels", + "large eggs", + "onion salt", + "fresh lemon juice", + "sugar", + "fat free milk", + "cooking spray", + "salt", + "dried oregano" + ] + }, + { + "id": 27166, + "cuisine": "mexican", + "ingredients": [ + "light mayonnaise", + "pickle relish", + "chipotles in adobo", + "green onions" + ] + }, + { + "id": 41534, + "cuisine": "filipino", + "ingredients": [ + "peanuts", + "condensed milk", + "egg yolks", + "unsalted butter", + "vanilla" + ] + }, + { + "id": 2936, + "cuisine": "french", + "ingredients": [ + "green bell pepper", + "zucchini", + "thyme sprigs", + "fresh basil", + "olive oil", + "salt", + "pepper", + "fresh thyme leaves", + "onions", + "grape tomatoes", + "eggplant", + "garlic cloves" + ] + }, + { + "id": 46068, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "ginger", + "corn starch", + "nonfat evaporated milk", + "kosher salt", + "chicken breasts", + "garlic", + "chicken thighs", + "sugar", + "jalapeno chilies", + "cauliflower florets", + "onions", + "cumin", + "crushed tomatoes", + "butter", + "nonfat yogurt plain", + "coriander" + ] + }, + { + "id": 21746, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "cream cheese", + "green bell pepper", + "onions", + "tomatoes", + "sour cream", + "chile pepper" + ] + }, + { + "id": 9332, + "cuisine": "indian", + "ingredients": [ + "water", + "sugar", + "low-fat yogurt", + "cumin seed", + "fresh coriander", + "rosewater" + ] + }, + { + "id": 18974, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "frozen corn", + "bay leaf", + "black pepper", + "diced tomatoes", + "rotisserie chicken", + "kosher salt", + "garlic", + "okra", + "brown rice", + "cayenne pepper", + "onions" + ] + }, + { + "id": 46462, + "cuisine": "mexican", + "ingredients": [ + "water", + "cooking spray", + "fresh oregano", + "corn tortillas", + "kale", + "crushed red pepper", + "pork spareribs", + "black pepper", + "hominy", + "salt", + "garlic cloves", + "lime", + "bay leaves", + "chopped onion", + "chicken" + ] + }, + { + "id": 14053, + "cuisine": "french", + "ingredients": [ + "sliced black olives", + "garlic", + "olive oil", + "grated parmesan cheese", + "red bell pepper", + "capers", + "minced onion", + "salt", + "ground black pepper", + "balsamic vinegar", + "fresh parsley" + ] + }, + { + "id": 38388, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "guacamole", + "paprika", + "chopped onion", + "dried oregano", + "garlic powder", + "boneless skinless chicken breasts", + "salsa", + "red bell pepper", + "ground cumin", + "seasoning salt", + "green onions", + "crushed red pepper flakes", + "lemon juice", + "canola oil", + "taco sauce", + "flour tortillas", + "chili powder", + "green pepper", + "sour cream" + ] + }, + { + "id": 3388, + "cuisine": "italian", + "ingredients": [ + "vegetables", + "ciabatta", + "focaccia", + "fresh mozzarella", + "arugula", + "bread", + "salt" + ] + }, + { + "id": 12085, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "Sriracha", + "fresh lime juice", + "peanuts", + "salt", + "sugar", + "green onions", + "chopped cilantro", + "asian eggplants", + "zucchini", + "peanut oil" + ] + }, + { + "id": 38961, + "cuisine": "french", + "ingredients": [ + "white chocolate", + "whipping cream", + "ice cubes", + "egg yolks", + "edible gold leaf", + "sugar", + "fresh cranberries", + "whole cranberry sauce", + "vanilla extract" + ] + }, + { + "id": 42722, + "cuisine": "indian", + "ingredients": [ + "water", + "ginger", + "green chilies", + "coriander", + "asafoetida", + "buttermilk", + "salt", + "gram flour", + "coconut", + "grated carrot", + "oil", + "ground cumin", + "tumeric", + "raisins", + "cilantro leaves", + "mustard seeds" + ] + }, + { + "id": 7728, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "cilantro", + "ground cumin", + "lettuce", + "tomatillos", + "salt", + "jalapeno chilies", + "garlic", + "chicken broth", + "butter", + "onions" + ] + }, + { + "id": 20961, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "vanilla extract", + "milk", + "butter", + "confectioners sugar", + "eggs", + "almond extract", + "all-purpose flour", + "baking powder", + "red food coloring", + "white sugar" + ] + }, + { + "id": 47608, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "chili powder", + "sour milk", + "mayonaise", + "garlic", + "chillies", + "tumeric", + "mutton", + "lemon juice", + "tandoori spices", + "salt", + "ghee" + ] + }, + { + "id": 3354, + "cuisine": "jamaican", + "ingredients": [ + "curry powder", + "green onions", + "rice", + "onions", + "soy sauce", + "bay leaves", + "crushed red pepper", + "coconut milk", + "chopped bell pepper", + "meat", + "oil", + "dried oregano", + "fresh basil", + "ground black pepper", + "peas", + "carrots", + "chopped garlic" + ] + }, + { + "id": 38358, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "crushed tomatoes", + "lasagna noodles", + "garlic", + "fresh parsley", + "water", + "minced onion", + "basil dried leaves", + "sauce", + "eggs", + "parmesan cheese", + "lean ground beef", + "salt", + "white sugar", + "mozzarella cheese", + "ground black pepper", + "ricotta cheese", + "sweet italian sausage", + "italian seasoning" + ] + }, + { + "id": 30614, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "vanilla", + "sugar", + "butter", + "flour", + "salt", + "ground nutmeg", + "buttermilk" + ] + }, + { + "id": 26152, + "cuisine": "chinese", + "ingredients": [ + "low sodium chicken broth", + "dry sherry", + "garlic cloves", + "low sodium soy sauce", + "peeled fresh ginger", + "pea pods", + "red bell pepper", + "cooking spray", + "yellow bell pepper", + "corn starch", + "sesame seeds", + "vegetable oil", + "long-grain rice", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 17392, + "cuisine": "italian", + "ingredients": [ + "butter", + "Good Seasons Italian Dressing Mix", + "bow-tie pasta", + "whipping cream", + "grated parmesan cheese" + ] + }, + { + "id": 6134, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "lemon juice", + "oil", + "potatoes", + "onions", + "pepper", + "sausages" + ] + }, + { + "id": 24447, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "caramels", + "buttermilk", + "dark corn syrup", + "chop fine pecan", + "all-purpose flour", + "sugar", + "large eggs", + "vanilla extract", + "baking soda", + "butter", + "heavy whipping cream" + ] + }, + { + "id": 13734, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "dijon mustard", + "butter", + "bay leaf", + "polenta", + "chicken broth", + "prosciutto", + "dry white wine", + "salt", + "boiling water", + "fresh rosemary", + "ground black pepper", + "chopped fresh thyme", + "carrots", + "short rib", + "olive oil", + "mushrooms", + "large garlic cloves", + "onions" + ] + }, + { + "id": 14199, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "dried oregano", + "pizza crust", + "fresh parmesan cheese", + "minced garlic", + "cooking spray", + "olive oil" + ] + }, + { + "id": 14362, + "cuisine": "french", + "ingredients": [ + "milk", + "grated parmesan cheese", + "nutmeg", + "unsalted butter", + "salt", + "chopped ham", + "parmesan cheese", + "flour", + "pepper", + "large eggs" + ] + }, + { + "id": 27518, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "grated parmesan cheese", + "garlic", + "celery", + "low sodium beef stock", + "tomato paste", + "olive oil", + "soup", + "lemon juice", + "fresh parsley", + "oregano", + "water", + "bay leaves", + "salt", + "ground beef", + "peppercorns", + "eggs", + "meatballs", + "russet potatoes", + "carrots", + "onions", + "cabbage" + ] + }, + { + "id": 41082, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "fresh basil leaves", + "grape tomatoes", + "balsamic vinegar", + "ground black pepper", + "kosher salt", + "extra-virgin olive oil" + ] + }, + { + "id": 22923, + "cuisine": "french", + "ingredients": [ + "fresh thyme leaves", + "goat cheese", + "olive oil", + "ice water", + "sour cream", + "large eggs", + "all-purpose flour", + "unsalted butter", + "salt", + "onions" + ] + }, + { + "id": 22888, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "garlic cloves", + "greens", + "fresh rosemary", + "purple onion", + "low-fat soft goat cheese", + "fat-free chicken broth", + "flour for dusting", + "plum tomatoes", + "cannellini beans", + "pizza doughs", + "cornmeal" + ] + }, + { + "id": 30513, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "ground black pepper", + "salt", + "ground beef", + "eggs", + "vegetable oil", + "dry bread crumbs", + "tomato paste", + "potatoes", + "all-purpose flour", + "ground cumin", + "green bell pepper", + "garlic", + "chopped onion" + ] + }, + { + "id": 43152, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "barbecue sauce", + "cayenne pepper", + "pork baby back ribs", + "garlic powder", + "worcestershire sauce", + "sweet paprika", + "light brown sugar", + "water", + "chili powder", + "mustard powder", + "kosher salt", + "ground black pepper", + "hot sauce", + "ground white pepper" + ] + }, + { + "id": 45231, + "cuisine": "italian", + "ingredients": [ + "bread crumb fresh", + "egg noodles", + "button mushrooms", + "olive oil", + "green onions", + "all-purpose flour", + "cooked turkey", + "parmigiano reggiano cheese", + "salt", + "chicken broth", + "unsalted butter", + "shallots", + "ground white pepper" + ] + }, + { + "id": 28307, + "cuisine": "french", + "ingredients": [ + "water", + "reduced fat milk", + "cream cheese", + "sugar", + "chopped almonds", + "all-purpose flour", + "large egg whites", + "cooking spray", + "large eggs", + "almond extract" + ] + }, + { + "id": 3266, + "cuisine": "moroccan", + "ingredients": [ + "flax egg", + "chopped tomatoes", + "cinnamon", + "maple syrup", + "soy sauce", + "dried apricot", + "garlic", + "chickpeas", + "fresh oregano leaves", + "quinoa", + "lemon", + "cilantro leaves", + "olive oil", + "apple cider vinegar", + "purple onion", + "pumpkin seeds" + ] + }, + { + "id": 32280, + "cuisine": "french", + "ingredients": [ + "cream", + "lemon juice", + "salt", + "melted butter", + "cayenne pepper", + "egg yolks" + ] + }, + { + "id": 9577, + "cuisine": "brazilian", + "ingredients": [ + "sea bass", + "reduced sodium fat free chicken broth", + "green onions", + "salt", + "bay leaf", + "olive oil", + "chopped green bell pepper", + "clam juice", + "red bell pepper", + "fresh cilantro", + "ground black pepper", + "ground red pepper", + "garlic cloves", + "large shrimp", + "chopped tomatoes", + "finely chopped onion", + "light coconut milk", + "fresh lime juice" + ] + }, + { + "id": 5577, + "cuisine": "cajun_creole", + "ingredients": [ + "worcestershire sauce", + "cream cheese, soften", + "prepared horseradish", + "dry bread crumbs", + "crackers", + "hot pepper sauce", + "crabmeat", + "paprika", + "onions" + ] + }, + { + "id": 359, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "wheat flour", + "onion powder", + "chili powder", + "tomato paste", + "vegetable broth" + ] + }, + { + "id": 13987, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "olive oil", + "fresh lemon juice", + "dried oregano", + "black pepper", + "salt", + "cucumber", + "tomatoes", + "sourdough bread", + "garlic cloves", + "arugula", + "sugar", + "purple onion", + "feta cheese crumbles" + ] + }, + { + "id": 30004, + "cuisine": "mexican", + "ingredients": [ + "semisweet chocolate", + "dried oregano", + "chicken broth", + "hot chili powder", + "ground cumin", + "diced onions", + "vegetable oil", + "chopped garlic", + "ground cinnamon", + "all-purpose flour" + ] + }, + { + "id": 15436, + "cuisine": "french", + "ingredients": [ + "olive oil", + "conger eel", + "salt", + "saffron", + "tomatoes", + "base", + "garlic", + "orange peel", + "crab", + "potatoes", + "bouquet garni", + "onions", + "mussels", + "fennel", + "leeks", + "freshly ground pepper", + "fish" + ] + }, + { + "id": 4278, + "cuisine": "indian", + "ingredients": [ + "poha", + "rice", + "salt", + "urad dal", + "water", + "fenugreek seeds" + ] + }, + { + "id": 8701, + "cuisine": "greek", + "ingredients": [ + "artichoke hearts", + "purple onion", + "boneless skinless chicken breast halves", + "romaine lettuce", + "artichokes", + "Greek dressing", + "grape tomatoes", + "whole wheat tortillas", + "red bell pepper", + "cooking spray", + "feta cheese crumbles" + ] + }, + { + "id": 27964, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "teriyaki sauce", + "spaghetti", + "chicken broth", + "boneless skinless chicken breasts", + "hot sauce", + "cold water", + "hoisin sauce", + "rice vinegar", + "ginger paste", + "brown sugar", + "sesame oil", + "corn starch" + ] + }, + { + "id": 19926, + "cuisine": "spanish", + "ingredients": [ + "granny smith apples", + "lime slices", + "lime", + "lemon", + "orange slices", + "dry red wine", + "orange", + "lemon-lime soda" + ] + }, + { + "id": 11073, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salted peanuts", + "light corn syrup", + "baking soda", + "white sugar", + "salt" + ] + }, + { + "id": 16522, + "cuisine": "russian", + "ingredients": [ + "eggs", + "vanilla", + "lemon zest", + "ground almonds", + "sugar", + "farmer cheese", + "butter", + "sour cream" + ] + }, + { + "id": 1767, + "cuisine": "greek", + "ingredients": [ + "coriander seeds", + "extra-virgin olive oil", + "green olives", + "white wine vinegar", + "pita loaves" + ] + }, + { + "id": 34182, + "cuisine": "thai", + "ingredients": [ + "jasmine rice", + "corn starch", + "asian fish sauce", + "firmly packed light brown sugar", + "vegetable oil", + "fresh basil leaves", + "chicken stock", + "green onions", + "red bell pepper", + "chiles", + "garlic cloves", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 5872, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "chocolate liqueur", + "heavy whipping cream", + "evaporated milk", + "vanilla extract", + "bittersweet chocolate", + "whole milk", + "cinnamon sticks", + "unsweetened cocoa powder", + "sugar", + "ancho powder", + "dried red chile peppers" + ] + }, + { + "id": 45815, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "water", + "dry roasted peanuts", + "rose water" + ] + }, + { + "id": 26695, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "hoagie rolls", + "pasta sauce", + "italian sausage", + "onions" + ] + }, + { + "id": 12055, + "cuisine": "italian", + "ingredients": [ + "butter", + "lemon zest", + "rigatoni", + "ricotta cheese", + "black pepper", + "salt" + ] + }, + { + "id": 42192, + "cuisine": "southern_us", + "ingredients": [ + "dark corn syrup", + "granulated sugar", + "heavy cream", + "large egg yolks", + "bourbon whiskey", + "all-purpose flour", + "kosher salt", + "large eggs", + "vanilla extract", + "pecan halves", + "unsalted butter", + "ice water", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 12290, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "cornmeal", + "flour", + "green tomatoes", + "vegetable oil" + ] + }, + { + "id": 25677, + "cuisine": "italian", + "ingredients": [ + "salmon fillets", + "crumbled ricotta salata cheese", + "salt", + "water", + "white wine vinegar", + "arugula", + "black pepper", + "extra-virgin olive oil", + "garlic cloves", + "cooking spray", + "quick-cooking barley" + ] + }, + { + "id": 48602, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "lime juice", + "mexicorn", + "ground cumin", + "cider vinegar", + "jalapeno chilies", + "cucumber", + "black beans", + "olive oil", + "salt", + "avocado", + "pepper", + "green onions", + "dried oregano" + ] + }, + { + "id": 36608, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "onions", + "yukon gold potatoes", + "large eggs", + "extra-virgin olive oil" + ] + }, + { + "id": 9027, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "laurel leaves", + "garlic cloves", + "plum tomatoes", + "pepper", + "vinegar", + "red bell pepper", + "tomato sauce", + "stewing beef", + "carrots", + "baby potatoes", + "fish sauce", + "water", + "salt", + "onions" + ] + }, + { + "id": 11337, + "cuisine": "italian", + "ingredients": [ + "basil pesto sauce", + "parmesan cheese", + "whitefish fillets", + "pinenuts", + "mayonaise", + "minced garlic" + ] + }, + { + "id": 2724, + "cuisine": "spanish", + "ingredients": [ + "clams", + "minced garlic", + "olive oil", + "crushed red pepper", + "bay leaf", + "cherrystone clams", + "sea bass", + "crushed tomatoes", + "diced tomatoes", + "ground allspice", + "fresh parsley", + "dried rosemary", + "ground cinnamon", + "water", + "red wine vinegar", + "crabmeat", + "medium shrimp", + "dried oregano", + "white wine", + "dried thyme", + "dry red wine", + "celery", + "onions" + ] + }, + { + "id": 27014, + "cuisine": "chinese", + "ingredients": [ + "hot red pepper flakes", + "honey", + "yellow bell pepper", + "scallions", + "soy sauce", + "extra firm tofu", + "rice vinegar", + "red bell pepper", + "warm water", + "sesame seeds", + "dried soba", + "garlic cloves", + "seedless cucumber", + "peeled fresh ginger", + "creamy peanut butter", + "toasted sesame oil" + ] + }, + { + "id": 5375, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium soy sauce", + "garlic", + "fresh cilantro", + "ground pork", + "carrots", + "honey dijon mustard", + "yellow onion", + "fresh ginger", + "extra-virgin olive oil" + ] + }, + { + "id": 19373, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "fresh basil", + "turkey sausage", + "plum tomatoes", + "ground black pepper", + "red bell pepper", + "kosher salt", + "purple onion", + "dried oregano" + ] + }, + { + "id": 11235, + "cuisine": "british", + "ingredients": [ + "milk", + "butter", + "garlic cloves", + "pork", + "dried thyme", + "all-purpose flour", + "pepper", + "potatoes", + "beef broth", + "corn", + "salt", + "onions" + ] + }, + { + "id": 7242, + "cuisine": "greek", + "ingredients": [ + "tomato paste", + "parsley", + "carrots", + "white onion", + "extra-virgin olive oil", + "celery", + "pepper", + "salt", + "white kidney beans", + "water", + "garlic cloves" + ] + }, + { + "id": 14062, + "cuisine": "thai", + "ingredients": [ + "chili flakes", + "palm sugar", + "shallots", + "beansprouts", + "lime", + "large eggs", + "garlic", + "fish sauce", + "tamarind pulp", + "vegetable oil", + "dried shrimp", + "rice stick noodles", + "peanuts", + "boneless skinless chicken breasts", + "scallions" + ] + }, + { + "id": 2961, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "mein", + "onions", + "green cabbage", + "lower sodium soy sauce", + "grapeseed oil", + "garlic powder", + "green onions", + "frozen peas", + "ground ginger", + "ground black pepper", + "celery" + ] + }, + { + "id": 30722, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "garlic", + "onions", + "ground black pepper", + "thyme", + "olive oil", + "salt", + "rigatoni", + "grated parmesan cheese", + "ground beef" + ] + }, + { + "id": 1190, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "garam masala", + "green onions", + "ground coriander", + "ground turmeric", + "diced onions", + "fresh cilantro", + "peeled fresh ginger", + "salt", + "basmati rice", + "water", + "bay leaves", + "butter", + "fresh lime juice", + "low-fat plain yogurt", + "jalapeno chilies", + "vegetable oil", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 23035, + "cuisine": "japanese", + "ingredients": [ + "miso paste", + "fresh mushrooms", + "eggs", + "green onions", + "tofu", + "vegetables", + "dashi", + "miso" + ] + }, + { + "id": 14060, + "cuisine": "british", + "ingredients": [ + "baking powder", + "beer", + "potatoes", + "vegetable oil", + "cod", + "onion powder", + "corn starch", + "flour", + "paprika" + ] + }, + { + "id": 44740, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "kosher salt", + "crushed red pepper flakes", + "sugar", + "whole peeled tomatoes", + "freshly ground pepper", + "pancetta", + "cured pork", + "dry white wine", + "onions", + "penne", + "olive oil", + "grated pecorino" + ] + }, + { + "id": 39778, + "cuisine": "indian", + "ingredients": [ + "split yellow lentils", + "white sugar", + "cardamom", + "jaggery", + "raisins", + "clarified butter", + "milk", + "cashew nuts", + "basmati rice" + ] + }, + { + "id": 11717, + "cuisine": "southern_us", + "ingredients": [ + "fresh blueberries", + "all-purpose flour", + "baking soda", + "buttermilk", + "cornmeal", + "sugar", + "baking powder", + "I Can't Believe It's Not Butter!® All Purpose Sticks", + "large eggs", + "salt" + ] + }, + { + "id": 16833, + "cuisine": "japanese", + "ingredients": [ + "pepper", + "ginger", + "corn starch", + "soy sauce", + "green onions", + "cooking wine", + "celery heart", + "garlic", + "white onion", + "ground pork", + "gyoza wrappers" + ] + }, + { + "id": 13973, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "ground black pepper", + "garlic", + "scallions", + "onions", + "homemade chicken stock", + "boneless skinless chicken breasts", + "rice vinegar", + "corn starch", + "eggs", + "extra firm tofu", + "salt", + "carrots", + "shiitake", + "ginger", + "cayenne pepper", + "toasted sesame oil" + ] + }, + { + "id": 22216, + "cuisine": "irish", + "ingredients": [ + "red potato", + "butter", + "onions", + "dried thyme", + "carrots", + "corned beef", + "milk", + "beef broth", + "cabbage", + "celery ribs", + "flour", + "bay leaf" + ] + }, + { + "id": 14666, + "cuisine": "korean", + "ingredients": [ + "sugar", + "seeds", + "oyster sauce", + "cabbage", + "water", + "russet potatoes", + "cucumber", + "pork", + "bean paste", + "corn starch", + "zucchini", + "salt", + "onions" + ] + }, + { + "id": 25135, + "cuisine": "indian", + "ingredients": [ + "sugar", + "chili powder", + "cider vinegar", + "salt", + "pitted date", + "garlic", + "fresh ginger" + ] + }, + { + "id": 62, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "finely chopped onion", + "water", + "dry white wine", + "pernod", + "grated parmesan cheese", + "frozen chopped spinach", + "olive oil", + "long-grain rice" + ] + }, + { + "id": 20483, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "salt", + "eggs", + "baking powder", + "extra sharp cheddar cheese", + "large eggs", + "all-purpose flour", + "milk", + "buttermilk" + ] + }, + { + "id": 2811, + "cuisine": "southern_us", + "ingredients": [ + "green tomatoes", + "milk", + "bacon grease", + "eggs", + "all-purpose flour", + "ground black pepper", + "cornmeal" + ] + }, + { + "id": 12526, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sunflower oil", + "toasted sesame oil", + "hoisin sauce", + "rice vinegar", + "fresh ginger", + "garlic", + "rub", + "red pepper flakes", + "green beans" + ] + }, + { + "id": 332, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "flour", + "sauce", + "dashi", + "bacon", + "cabbage", + "Japanese mountain yam", + "aonori", + "scallions", + "large eggs", + "dried bonito flakes" + ] + }, + { + "id": 18462, + "cuisine": "thai", + "ingredients": [ + "green bell pepper", + "fresh thyme", + "chicken stock cubes", + "jasmine rice", + "black trumpet mushrooms", + "onions", + "water", + "garlic", + "soy sauce", + "vegetable oil", + "skinless chicken breasts" + ] + }, + { + "id": 917, + "cuisine": "southern_us", + "ingredients": [ + "dark chocolate", + "egg yolks", + "sea salt", + "candy", + "coconut sugar", + "large eggs", + "heavy cream", + "cayenne pepper", + "raw cane sugar", + "arrowroot powder", + "vanilla extract", + "unsweetened cocoa powder", + "coconut oil", + "cinnamon", + "anise", + "straight bourbon whiskey" + ] + }, + { + "id": 14873, + "cuisine": "french", + "ingredients": [ + "butter", + "pepper", + "all-purpose flour", + "milk", + "salt" + ] + }, + { + "id": 41642, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "salt", + "roma tomatoes", + "lemon juice", + "grated parmesan cheese", + "catfish", + "mayonaise", + "butter" + ] + }, + { + "id": 27901, + "cuisine": "chinese", + "ingredients": [ + "gai lan", + "flank steak", + "creamy peanut butter", + "Sriracha", + "asian barbecue sauce", + "white sesame seeds", + "jasmine rice", + "ginger", + "scallions", + "hoisin sauce", + "garlic" + ] + }, + { + "id": 6779, + "cuisine": "french", + "ingredients": [ + "fat free less sodium chicken broth", + "chicken breasts", + "salt", + "dried thyme", + "dry red wine", + "sliced mushrooms", + "pearl onions", + "sliced carrots", + "all-purpose flour", + "tomato paste", + "egg noodles", + "bacon slices" + ] + }, + { + "id": 45847, + "cuisine": "japanese", + "ingredients": [ + "salt and ground black pepper", + "imitation crab meat", + "white wine vinegar", + "soy sauce", + "cucumber" + ] + }, + { + "id": 48991, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "cinnamon", + "extra-virgin olive oil", + "cayenne pepper", + "boneless skinless chicken breast halves", + "ground black pepper", + "paprika", + "salt", + "corn starch", + "cumin", + "garam masala", + "heavy cream", + "garlic", + "lemon juice", + "long grain white rice", + "tomato purée", + "bay leaves", + "ginger", + "yellow onion", + "chopped cilantro" + ] + }, + { + "id": 17528, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "garlic powder", + "salt", + "minced garlic", + "cajun seasoning", + "onions", + "pepper", + "red beans", + "celery", + "chicken broth", + "water", + "smoked sausage" + ] + }, + { + "id": 44285, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "cherry tomatoes", + "oil", + "kosher salt", + "extra-virgin olive oil", + "pitted kalamata olives", + "ground black pepper", + "small red potato", + "minced garlic", + "white wine vinegar" + ] + }, + { + "id": 13079, + "cuisine": "japanese", + "ingredients": [ + "enokitake", + "choy sum", + "white miso", + "beef demi-glace", + "garlic", + "soy sauce", + "flank steak", + "ginger", + "hoisin sauce", + "ramen noodles", + "scallions" + ] + }, + { + "id": 23701, + "cuisine": "indian", + "ingredients": [ + "lime", + "cold water", + "tamarind concentrate", + "chili powder", + "vodka", + "ice" + ] + }, + { + "id": 47208, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "balsamic vinegar", + "olive oil", + "Italian bread", + "mushroom caps", + "water", + "garlic cloves" + ] + }, + { + "id": 45385, + "cuisine": "italian", + "ingredients": [ + "roasted chestnuts", + "coarse kosher salt", + "ruby port", + "orange peel", + "sugar", + "low salt chicken broth", + "seedless red grapes", + "butter", + "flat leaf parsley" + ] + }, + { + "id": 4602, + "cuisine": "french", + "ingredients": [ + "cream", + "leeks", + "garlic cloves", + "lard", + "brandy", + "egg yolks", + "salt", + "thyme", + "nutmeg", + "pepper", + "shallots", + "lemon juice", + "onions", + "wine", + "flour", + "parsley", + "carrots", + "chicken" + ] + }, + { + "id": 19158, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "chicken broth", + "fresh lemon juice", + "crème fraîche", + "asparagus", + "onions" + ] + }, + { + "id": 44960, + "cuisine": "italian", + "ingredients": [ + "artichoke hearts", + "baked pizza crust", + "chicken breast strips", + "fontina cheese", + "sauce" + ] + }, + { + "id": 20191, + "cuisine": "italian", + "ingredients": [ + "vegetable oil spray", + "salt", + "chocolate syrup", + "large eggs", + "chopped pecans", + "golden brown sugar", + "baking powder", + "miniature semisweet chocolate chips", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 10017, + "cuisine": "chinese", + "ingredients": [ + "thai chile", + "chopped cilantro", + "water", + "peanut oil", + "soy sauce", + "rice vinegar", + "chicken", + "ginger", + "garlic cloves" + ] + }, + { + "id": 18390, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "chicken breasts", + "enchilada sauce", + "tortillas", + "taco seasoning", + "cheese" + ] + }, + { + "id": 32591, + "cuisine": "indian", + "ingredients": [ + "butter", + "sweet paprika", + "chopped garlic", + "bay leaves", + "ginger", + "ground cardamom", + "ground cumin", + "whole milk yoghurt", + "poppy seeds", + "ground coriander", + "chicken", + "hot pepper", + "chopped onion", + "ground turmeric" + ] + }, + { + "id": 21282, + "cuisine": "italian", + "ingredients": [ + "kale", + "bacon", + "white onion", + "potato gnocchi", + "hot Italian sausages", + "chicken stock", + "grated parmesan cheese", + "salt", + "pepper", + "heavy cream", + "roast red peppers, drain" + ] + }, + { + "id": 27050, + "cuisine": "french", + "ingredients": [ + "fresh thyme", + "button mushrooms", + "ground nutmeg", + "frozen pastry puff sheets", + "soft fresh goat cheese", + "large eggs", + "whipping cream", + "unsalted butter", + "shallots" + ] + }, + { + "id": 45954, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "ranch dressing", + "chopped cilantro", + "water", + "salt", + "pepper", + "brown rice", + "tomatoes", + "boneless skinless chicken breasts", + "shredded cheese" + ] + }, + { + "id": 21608, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "chopped onion", + "italian seasoning", + "ground round", + "condensed reduced fat reduced sodium tomato soup", + "sliced mushrooms", + "reduced fat sharp cheddar cheese", + "cooking spray", + "elbow macaroni", + "sugar", + "stewed tomatoes", + "garlic salt" + ] + }, + { + "id": 32372, + "cuisine": "greek", + "ingredients": [ + "nonfat yogurt", + "cucumber", + "ground lamb", + "bread crumbs", + "lettuce leaves", + "onions", + "pita bread rounds", + "fresh parsley", + "minced garlic", + "fresh lemon juice", + "dried oregano" + ] + }, + { + "id": 49006, + "cuisine": "french", + "ingredients": [ + "condensed cream", + "butter", + "chicken breasts", + "all-purpose flour", + "mushrooms", + "dry sherry", + "chicken stock", + "pastry shell", + "onions" + ] + }, + { + "id": 26243, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "ground black pepper", + "onions", + "pork spareribs", + "barbecue sauce" + ] + }, + { + "id": 37299, + "cuisine": "mexican", + "ingredients": [ + "ragu old world style pasta sauc", + "vegetable oil", + "regular or convert rice", + "chorizo sausage", + "water", + "garlic", + "onions", + "boneless chicken skinless thigh", + "green peas", + "chipotles in adobo", + "ground black pepper", + "salt", + "large shrimp" + ] + }, + { + "id": 12122, + "cuisine": "italian", + "ingredients": [ + "baby portobello mushrooms", + "olive oil", + "potato gnocchi", + "sage leaves", + "fat free less sodium chicken broth", + "pumpkin", + "rubbed sage", + "light alfredo sauce", + "ground black pepper", + "salt", + "pancetta", + "minced garlic", + "leeks" + ] + }, + { + "id": 25336, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "cheese cubes", + "chilli paste", + "lemon juice", + "garam masala", + "chili powder", + "curds", + "ground turmeric", + "ajwain", + "capsicum", + "salt", + "chaat masala", + "flour", + "butter", + "mustard oil" + ] + }, + { + "id": 44839, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "salt", + "eggs", + "butter", + "white sugar", + "single crust pie", + "vanilla extract", + "pastry", + "corn syrup" + ] + }, + { + "id": 49677, + "cuisine": "filipino", + "ingredients": [ + "angel hair", + "shiitake", + "garlic cloves", + "soy sauce", + "vinegar", + "onions", + "black pepper", + "salt", + "pork", + "hoisin sauce", + "bay leaf" + ] + }, + { + "id": 32842, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "mango", + "lime", + "seedless watermelon", + "salt", + "diced red onions", + "cilantro leaves" + ] + }, + { + "id": 5167, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "garlic powder", + "cayenne pepper", + "olive oil", + "salt", + "dried thyme", + "red wine vinegar", + "pork shoulder", + "honey", + "paprika", + "onions" + ] + }, + { + "id": 29432, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper flakes", + "red bell pepper", + "balsamic vinegar", + "garlic", + "italian seasoning", + "salt and ground black pepper", + "yellow bell pepper", + "fresh asparagus", + "fettuccine pasta", + "butter", + "portobello caps" + ] + }, + { + "id": 31616, + "cuisine": "italian", + "ingredients": [ + "pesto", + "basil", + "water", + "garlic", + "pasta sauce", + "wonton wrappers", + "nonfat ricotta cheese", + "olive oil", + "green pepper" + ] + }, + { + "id": 21520, + "cuisine": "italian", + "ingredients": [ + "water", + "egg yolks", + "arugula", + "kosher salt", + "freshly grated parmesan", + "salt", + "eggs", + "olive oil", + "wonton wrappers", + "pepper", + "ground black pepper", + "ricotta" + ] + }, + { + "id": 48498, + "cuisine": "mexican", + "ingredients": [ + "chopped onion", + "garlic", + "plum tomatoes", + "serrano peppers", + "chopped cilantro fresh", + "salt" + ] + }, + { + "id": 13849, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "lime", + "peeled fresh ginger", + "peanut oil", + "fresh basil", + "water", + "lower sodium soy sauce", + "rice vermicelli", + "tofu", + "minced garlic", + "ground nutmeg", + "cilantro", + "mung bean sprouts", + "ground cloves", + "vegetables", + "anise powder", + "scallions" + ] + }, + { + "id": 7083, + "cuisine": "japanese", + "ingredients": [ + "sake", + "sesame oil", + "salt", + "mirin", + "shoyu", + "canola oil", + "fresh ginger", + "miso", + "ground beef", + "green onions", + "garlic", + "japanese eggplants" + ] + }, + { + "id": 28977, + "cuisine": "jamaican", + "ingredients": [ + "chicken feet", + "pumpkin", + "salt", + "garlic cloves", + "water", + "onion powder", + "scallions", + "onions", + "pepper", + "chicken breasts", + "baby carrots", + "thyme", + "turnips", + "garlic powder", + "butter", + "allspice berries", + "baby potatoes" + ] + }, + { + "id": 37743, + "cuisine": "thai", + "ingredients": [ + "boneless chicken skinless thigh", + "cilantro leaves", + "onions", + "fish sauce", + "thai chile", + "corn starch", + "chile sauce", + "white vinegar", + "jalapeno chilies", + "garlic cloves", + "fresh basil leaves", + "sugar", + "salt", + "fresh mint", + "canola oil" + ] + }, + { + "id": 3884, + "cuisine": "russian", + "ingredients": [ + "eggs", + "honey", + "instant coffee", + "grated nutmeg", + "sugar", + "flour", + "anise", + "allspice", + "powdered sugar", + "baking soda", + "butter", + "hot water", + "white vinegar", + "milk", + "baking powder", + "vanilla extract" + ] + }, + { + "id": 13843, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salsa", + "water", + "taco seasoning", + "Mexican cheese blend", + "ground beef" + ] + }, + { + "id": 24068, + "cuisine": "moroccan", + "ingredients": [ + "minced garlic", + "jalapeno chilies", + "garlic", + "ground coriander", + "flat leaf parsley", + "black pepper", + "ground nutmeg", + "ginger", + "lamb chops", + "lemon juice", + "ground cumin", + "tumeric", + "olive oil", + "cinnamon", + "salt", + "ground cardamom", + "cumin", + "kosher salt", + "lemon zest", + "extra-virgin olive oil", + "cilantro leaves", + "smoked paprika" + ] + }, + { + "id": 46147, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "Campbell's Condensed Cream of Chicken Soup", + "tomatoes", + "cooked chicken", + "shredded Monterey Jack cheese", + "pace picante sauce", + "sour cream", + "flour tortillas", + "chili powder" + ] + }, + { + "id": 12593, + "cuisine": "chinese", + "ingredients": [ + "orange", + "chili powder", + "salt", + "dark soy sauce", + "clear honey", + "ginger", + "chinese five-spice powder", + "garlic powder", + "nut oil", + "rice vinegar", + "pepper", + "chicken breasts", + "cornflour", + "carrots" + ] + }, + { + "id": 28809, + "cuisine": "italian", + "ingredients": [ + "spinach", + "coarse salt", + "chicken stock", + "beef", + "grated nutmeg", + "ground black pepper", + "all-purpose flour", + "eggs", + "grated parmesan cheese" + ] + }, + { + "id": 6944, + "cuisine": "french", + "ingredients": [ + "pepper", + "bay leaves", + "dry red wine", + "cognac", + "chicken", + "pearl onions", + "parsley", + "salt", + "carrots", + "minced garlic", + "crimini mushrooms", + "pinot noir", + "fat skimmed reduced sodium chicken broth", + "black peppercorns", + "fresh thyme", + "bacon", + "all-purpose flour", + "toast" + ] + }, + { + "id": 18208, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "garlic", + "dark soy sauce", + "ground black pepper", + "pork shoulder", + "honey", + "oil", + "fish sauce", + "shallots" + ] + }, + { + "id": 29319, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "salt", + "leaves", + "spring onions", + "pepper", + "shrimp" + ] + }, + { + "id": 46217, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "unsalted butter", + "cilantro", + "fine sea salt", + "serrano chile", + "fresh cilantro", + "yoghurt", + "green peas", + "serrano", + "water", + "zucchini", + "romaine lettuce leaves", + "crème fraîche", + "corn kernels", + "lime wedges", + "garlic", + "pepitas" + ] + }, + { + "id": 8198, + "cuisine": "southern_us", + "ingredients": [ + "hot pepper sauce", + "freshly ground pepper", + "canola oil", + "table salt", + "buttermilk", + "marjoram", + "baking powder", + "rubbed sage", + "chicken", + "dried thyme", + "all-purpose flour", + "dried rosemary" + ] + }, + { + "id": 4581, + "cuisine": "korean", + "ingredients": [ + "ice cubes", + "soya bean", + "noodles", + "water", + "mixed nuts", + "tomatoes", + "salt", + "sesame seeds", + "cucumber" + ] + }, + { + "id": 16744, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "onions", + "chicken stock", + "garlic", + "cumin", + "chili powder", + "oregano", + "tomato sauce", + "salt" + ] + }, + { + "id": 954, + "cuisine": "greek", + "ingredients": [ + "white pepper", + "butter", + "shredded Monterey Jack cheese", + "feta cheese", + "all-purpose flour", + "milk", + "salt", + "phyllo dough", + "egg yolks", + "flat leaf parsley" + ] + }, + { + "id": 21061, + "cuisine": "chinese", + "ingredients": [ + "sliced almonds", + "almond extract", + "unsalted butter", + "all-purpose flour", + "milk", + "salt", + "sugar", + "chopped almonds", + "chinese five-spice powder" + ] + }, + { + "id": 13960, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "shiitake", + "sesame oil", + "scallions", + "soy sauce", + "water chestnuts", + "garlic", + "ground white pepper", + "warm water", + "hoisin sauce", + "dry sherry", + "oyster sauce", + "dark soy sauce", + "boneless chicken skinless thigh", + "lettuce leaves", + "chili sauce" + ] + }, + { + "id": 30119, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "black pepper", + "salt", + "water", + "grits", + "whole milk" + ] + }, + { + "id": 48230, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "collard greens", + "onions", + "bacon grease", + "bacon" + ] + }, + { + "id": 31293, + "cuisine": "french", + "ingredients": [ + "bread crumbs", + "heavy cream", + "garlic cloves", + "unsalted butter", + "all-purpose flour", + "onions", + "swiss chard", + "gruyere cheese", + "fresh herbs", + "spinach", + "low sodium chicken broth", + "grated nutmeg" + ] + }, + { + "id": 30265, + "cuisine": "filipino", + "ingredients": [ + "green cabbage", + "hard-boiled egg", + "paprika", + "boneless chop pork", + "rice noodles", + "ground black pepper", + "vegetable oil", + "low sodium soy sauce", + "green onions", + "yellow onion" + ] + }, + { + "id": 32805, + "cuisine": "italian", + "ingredients": [ + "evaporated milk", + "sherry", + "butter", + "kosher salt", + "low sodium chicken broth", + "crimini mushrooms", + "bread crumbs", + "grated parmesan cheese", + "green onions", + "freshly ground pepper", + "cooked turkey", + "flour", + "fusilli" + ] + }, + { + "id": 31139, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "vanilla extract", + "butter", + "chopped pecans", + "unbaked pie crusts", + "salt", + "eggs", + "light corn syrup" + ] + }, + { + "id": 2438, + "cuisine": "italian", + "ingredients": [ + "spinach", + "red wine vinegar", + "garlic cloves", + "olive oil", + "salt", + "dried basil", + "cauliflower florets", + "dried oregano", + "pepper", + "cheese tortellini", + "red bell pepper" + ] + }, + { + "id": 46326, + "cuisine": "chinese", + "ingredients": [ + "coconut sugar", + "chili pepper", + "szechwan peppercorns", + "salt", + "red bell pepper", + "chicken broth", + "tapioca flour", + "chicken breasts", + "white wine vinegar", + "garlic cloves", + "cold water", + "coconut oil", + "green onions", + "balsamic vinegar", + "coconut aminos", + "roasted cashews", + "minced ginger", + "sesame oil", + "rice vinegar", + "cooked white rice" + ] + }, + { + "id": 23216, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "balsamic vinegar", + "freshly ground pepper", + "arborio rice", + "dry white wine", + "salt", + "diced onions", + "grated parmesan cheese", + "butter", + "broth", + "chicken stock", + "shallots", + "edamame" + ] + }, + { + "id": 6665, + "cuisine": "mexican", + "ingredients": [ + "barbecue sauce", + "ground beef", + "tortilla chips", + "stewed tomatoes", + "shredded cheddar cheese", + "whole kernel corn, drain" + ] + }, + { + "id": 30574, + "cuisine": "japanese", + "ingredients": [ + "cold water", + "seaweed", + "dried bonito flakes" + ] + }, + { + "id": 41415, + "cuisine": "italian", + "ingredients": [ + "milk", + "butter", + "potatoes", + "basil pesto sauce" + ] + }, + { + "id": 21505, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "ground black pepper", + "fresh lemon juice", + "olive oil", + "garlic cloves", + "egg yolks" + ] + }, + { + "id": 15992, + "cuisine": "french", + "ingredients": [ + "water", + "zucchini", + "lemon juice", + "haricots verts", + "radishes", + "tapenade", + "kidney beans", + "cannellini beans", + "sliced tomatoes", + "garbanzo beans", + "fresh green bean" + ] + }, + { + "id": 22030, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "whole kernel corn, drain", + "chopped cilantro fresh", + "tomatoes", + "soft shelled crabs", + "fresh lime juice", + "ground pepper", + "garlic cloves", + "ground cumin", + "black beans", + "salt", + "onions" + ] + }, + { + "id": 8550, + "cuisine": "french", + "ingredients": [ + "fat free milk", + "butter", + "seasoned bread crumbs", + "cooking spray", + "salt", + "turnips", + "ground black pepper", + "gruyere cheese", + "dried thyme", + "baking potatoes", + "all-purpose flour" + ] + }, + { + "id": 18760, + "cuisine": "greek", + "ingredients": [ + "white wine", + "chopped tomatoes", + "salt", + "free-range eggs", + "lean minced lamb", + "olive oil", + "ground black pepper", + "cinnamon sticks", + "plain flour", + "milk", + "parmesan cheese", + "garlic cloves", + "fresh oregano leaves", + "eggplant", + "butter", + "onions" + ] + }, + { + "id": 32523, + "cuisine": "southern_us", + "ingredients": [ + "almond flour", + "unsalted butter", + "buttermilk", + "turbinado", + "ground nutmeg", + "baking powder", + "all-purpose flour", + "sugar", + "peaches", + "almond extract", + "baking soda", + "large eggs", + "vanilla extract" + ] + }, + { + "id": 6398, + "cuisine": "chinese", + "ingredients": [ + "won ton wrappers", + "reduced sodium soy sauce", + "ginger", + "chicken broth", + "miso paste", + "green onions", + "oyster sauce", + "shiitake", + "Sriracha", + "garlic", + "baby bok choy", + "ground black pepper", + "sesame oil", + "medium shrimp" + ] + }, + { + "id": 11952, + "cuisine": "indian", + "ingredients": [ + "pepper", + "red food coloring", + "chicken thighs", + "tumeric", + "garam masala", + "cayenne pepper", + "fresh ginger", + "salt", + "cumin", + "plain yogurt", + "fresh lemon", + "garlic cloves" + ] + }, + { + "id": 2607, + "cuisine": "greek", + "ingredients": [ + "honey", + "chicken breasts", + "cucumber", + "kosher salt", + "low-fat plain greek yogurt", + "yellow mustard", + "nuts", + "grapes", + "ground black pepper", + "lemon", + "garlic salt", + "Cholula Hot Sauce", + "flax seeds", + "chopped celery", + "pickle relish" + ] + }, + { + "id": 36290, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "vegetable oil", + "coconut", + "red chili peppers", + "black mustard seeds" + ] + }, + { + "id": 35372, + "cuisine": "greek", + "ingredients": [ + "fresh spinach", + "extra-virgin olive oil", + "fresh lemon juice", + "sliced black olives", + "bulgur", + "plum tomatoes", + "ground black pepper", + "salt", + "boiling water", + "water", + "purple onion", + "feta cheese crumbles" + ] + }, + { + "id": 37319, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "sea salt", + "onions", + "fresh basil", + "parmesan cheese", + "wine vinegar", + "plum tomatoes", + "eggplant", + "garlic", + "buffalo mozzarella", + "fresh oregano leaves", + "ground black pepper", + "dry bread crumbs", + "dried oregano" + ] + }, + { + "id": 33260, + "cuisine": "french", + "ingredients": [ + "prunes", + "olive oil", + "garlic cloves", + "reduced sodium chicken broth", + "shallots", + "gala apples", + "brandy", + "unsalted butter", + "California bay leaves", + "cider vinegar", + "lamb shoulder chops" + ] + }, + { + "id": 48177, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "fresh parmesan cheese", + "salt", + "uncooked ziti", + "diced tomatoes", + "garlic cloves", + "sausage links", + "cooking spray", + "chopped onion", + "tomato paste", + "black pepper", + "chees fresh mozzarella" + ] + }, + { + "id": 31618, + "cuisine": "indian", + "ingredients": [ + "ground blanched almonds", + "cauliflower florets", + "fresh lemon juice", + "plain whole-milk yogurt", + "white onion", + "ground red pepper", + "garlic cloves", + "chopped cilantro fresh", + "water", + "salt", + "cinnamon sticks", + "ground turmeric", + "clove", + "peeled fresh ginger", + "cardamom pods", + "bay leaf", + "canola oil" + ] + }, + { + "id": 1334, + "cuisine": "italian", + "ingredients": [ + "fat free milk", + "salt", + "gorgonzola", + "romano cheese", + "butter", + "and fat free half half", + "cooking spray", + "all-purpose flour", + "black pepper", + "uncooked rigatoni", + "garlic cloves" + ] + }, + { + "id": 9820, + "cuisine": "french", + "ingredients": [ + "sugar", + "candied lemon peel", + "meringue powder", + "slivered almonds", + "whipping cream", + "lemon juice", + "cold water", + "water", + "lemon slices", + "unflavored gelatin", + "butter", + "grated lemon zest" + ] + }, + { + "id": 17717, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "ground black pepper", + "dry red wine", + "carrots", + "brandy", + "shallots", + "salt", + "bone in chicken thighs", + "fat free less sodium chicken broth", + "chicken drumsticks", + "garlic cloves", + "cremini mushrooms", + "fresh thyme", + "bacon slices", + "flat leaf parsley" + ] + }, + { + "id": 31971, + "cuisine": "french", + "ingredients": [ + "sliced almonds", + "low-fat buttermilk", + "grated lemon zest", + "large egg yolks", + "butter", + "large egg whites", + "cooking spray", + "fresh lemon juice", + "cream of tartar", + "granulated sugar", + "all-purpose flour" + ] + }, + { + "id": 9935, + "cuisine": "british", + "ingredients": [ + "kosher salt", + "butter", + "onions", + "eggs", + "leeks", + "carrots", + "pie crust", + "potatoes", + "cracked black pepper", + "parsnips", + "hanger steak", + "thyme" + ] + }, + { + "id": 8870, + "cuisine": "greek", + "ingredients": [ + "dried currants", + "dry white wine", + "fresh mint", + "grape leaves", + "olive oil", + "chopped onion", + "pepper", + "garlic", + "long grain white rice", + "tomato sauce", + "italian seasoning mix", + "lemon juice" + ] + }, + { + "id": 17423, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "pimentos", + "cream cheese", + "collard greens", + "olive oil", + "hot sauce", + "andouille sausage", + "ground black pepper", + "yellow onion", + "water", + "shredded sharp cheddar cheese", + "garlic cloves" + ] + }, + { + "id": 29550, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "plum sauce", + "rolls", + "kosher salt", + "vegetable oil", + "shiitake mushroom caps", + "soy sauce", + "Shaoxing wine", + "carrots", + "peanuts", + "napa cabbage", + "char siu" + ] + }, + { + "id": 9004, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "olive oil", + "dried oregano", + "pitted kalamata olives", + "provolone cheese", + "tomatoes", + "crushed red pepper", + "sourdough bread", + "feta cheese crumbles" + ] + }, + { + "id": 43285, + "cuisine": "indian", + "ingredients": [ + "crushed red pepper flakes", + "black mustard seeds", + "tomatoes", + "green chilies", + "ground turmeric", + "curry leaves", + "ginger", + "onions", + "brown rice", + "cumin seed" + ] + }, + { + "id": 10239, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "coarse salt", + "serrano chile", + "fresh cilantro", + "onions", + "tomatillos" + ] + }, + { + "id": 28882, + "cuisine": "southern_us", + "ingredients": [ + "ground ginger", + "unbaked pie crusts", + "butter", + "eggs", + "ground nutmeg", + "white sugar", + "ground cinnamon", + "evaporated milk", + "salt", + "brown sugar", + "sweet potatoes" + ] + }, + { + "id": 43165, + "cuisine": "italian", + "ingredients": [ + "sugar", + "flour tortillas", + "purple onion", + "olive oil", + "ricotta cheese", + "kosher salt", + "balsamic vinegar", + "cremini mushrooms", + "ground black pepper", + "asiago" + ] + }, + { + "id": 26729, + "cuisine": "vietnamese", + "ingredients": [ + "brown sugar", + "granulated sugar", + "cilantro leaves", + "serrano chilies", + "kosher salt", + "ponzu", + "beef sirloin", + "fish sauce", + "olive oil", + "crushed red pepper", + "juice", + "sugar pea", + "shredded carrots", + "rice vinegar" + ] + }, + { + "id": 40872, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "chicken stock cubes", + "plum tomatoes", + "chorizo", + "chili powder", + "onions", + "fresh coriander", + "cannellini beans", + "sour cream", + "lime juice", + "red pepper", + "chicken thighs" + ] + }, + { + "id": 47787, + "cuisine": "chinese", + "ingredients": [ + "cooked rice", + "green pepper", + "vegetable oil", + "sauce", + "frozen popcorn chicken", + "onions" + ] + }, + { + "id": 46586, + "cuisine": "russian", + "ingredients": [ + "ground cloves", + "lemon zest", + "all-purpose flour", + "sugar", + "unsalted butter", + "jam", + "sliced almonds", + "cinnamon", + "large egg yolks", + "salt" + ] + }, + { + "id": 4980, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "napa cabbage", + "garlic cloves", + "boiled eggs", + "ramen noodles", + "low sodium chicken stock", + "sake", + "sesame oil", + "ginger", + "carrots", + "miso paste", + "vegetable oil", + "scallions" + ] + }, + { + "id": 26046, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "chives", + "shredded mozzarella cheese", + "olive oil", + "salt", + "oven-ready lasagna noodles", + "fresh spinach", + "ricotta cheese", + "garlic cloves", + "zucchini", + "cream cheese", + "fresh basil leaves" + ] + }, + { + "id": 24300, + "cuisine": "moroccan", + "ingredients": [ + "cooking spray", + "crushed red pepper", + "canola oil", + "warm water", + "paprika", + "chopped onion", + "sea salt", + "all-purpose flour", + "ground cumin", + "dry yeast", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 6728, + "cuisine": "french", + "ingredients": [ + "shallots", + "fresh parsley", + "bone marrow", + "beef broth", + "dry red wine", + "unsalted butter", + "new york strip steaks" + ] + }, + { + "id": 42526, + "cuisine": "indian", + "ingredients": [ + "red lentils", + "ginger", + "yellow onion", + "ground turmeric", + "chopped tomatoes", + "garlic", + "ground cardamom", + "jalapeno chilies", + "fine sea salt", + "chopped cilantro fresh", + "low sodium vegetable broth", + "extra-virgin olive oil", + "cumin seed" + ] + }, + { + "id": 14426, + "cuisine": "mexican", + "ingredients": [ + "water", + "salt", + "jalapeno chilies", + "tuna", + "chopped tomatoes", + "chopped onion", + "pepper", + "cilantro" + ] + }, + { + "id": 33218, + "cuisine": "british", + "ingredients": [ + "large egg yolks", + "dark brown sugar", + "water", + "vanilla extract", + "sugar", + "whipping cream", + "milk", + "salt" + ] + }, + { + "id": 21188, + "cuisine": "thai", + "ingredients": [ + "chile paste with garlic", + "flank steak", + "Thai fish sauce", + "plum tomatoes", + "romaine lettuce", + "english cucumber", + "chopped fresh mint", + "brown sugar", + "purple onion", + "fresh lime juice", + "cooking spray", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 38455, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "chili powder", + "dried oregano", + "egg whites", + "ground coriander", + "ground black pepper", + "paprika", + "ground cumin", + "potatoes", + "ground turmeric" + ] + }, + { + "id": 12747, + "cuisine": "french", + "ingredients": [ + "white bread", + "olive oil", + "french bread", + "garlic", + "onions", + "saffron threads", + "tomatoes", + "fennel bulb", + "hot pepper", + "squid", + "mussels", + "fish fillets", + "fresh thyme", + "fish stock", + "bay leaf", + "fennel seeds", + "ground black pepper", + "leeks", + "salt", + "orange zest" + ] + }, + { + "id": 41568, + "cuisine": "french", + "ingredients": [ + "bay leaves", + "artichokes", + "olive oil", + "large garlic cloves", + "chicken", + "pearl onions", + "lemon", + "boiling water", + "water", + "red wine vinegar", + "flat leaf parsley" + ] + }, + { + "id": 691, + "cuisine": "indian", + "ingredients": [ + "salt", + "whole wheat flour", + "water", + "flour" + ] + }, + { + "id": 357, + "cuisine": "french", + "ingredients": [ + "lemon wedge", + "coarse kosher salt", + "ground black pepper", + "all-purpose flour", + "sole fillet", + "vegetable oil", + "flat leaf parsley", + "unsalted butter", + "fresh lemon juice" + ] + }, + { + "id": 48441, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "poblano peppers", + "salt", + "pepper", + "boneless skinless chicken breasts", + "white onion", + "crema mexican", + "canola oil", + "corn kernels", + "heavy cream" + ] + }, + { + "id": 32494, + "cuisine": "chinese", + "ingredients": [ + "Philadelphia Cream Cheese", + "powdered sugar", + "oil", + "wonton wrappers", + "crab meat", + "salt" + ] + }, + { + "id": 11368, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "dry white wine", + "yellow onion", + "cumin", + "green olives", + "kosher salt", + "cracked black pepper", + "cinnamon sticks", + "lamb shanks", + "cilantro", + "garlic cloves", + "mint", + "olive oil", + "vegetable broth", + "couscous" + ] + }, + { + "id": 20922, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "boiling water", + "sun-dried tomatoes", + "Italian parsley leaves", + "fresh parmesan cheese", + "fresh basil leaves", + "pinenuts", + "large garlic cloves" + ] + }, + { + "id": 34869, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "pepper", + "all-purpose flour", + "parsley sprigs", + "balsamic vinegar", + "plum tomatoes", + "boneless chop pork", + "salt", + "capers", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 25155, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "white sugar", + "soy sauce", + "sirloin steak", + "green onions", + "msg", + "garlic" + ] + }, + { + "id": 36592, + "cuisine": "brazilian", + "ingredients": [ + "brown sugar", + "olive oil", + "garlic cloves", + "cashew nuts", + "mussels", + "fresh cilantro", + "salt", + "roasted tomatoes", + "serrano chilies", + "lime", + "beer", + "onions", + "lime juice", + "fish stock", + "coconut milk" + ] + }, + { + "id": 29712, + "cuisine": "french", + "ingredients": [ + "dark chocolate", + "orange", + "sugar", + "cointreau", + "double cream", + "water" + ] + }, + { + "id": 41102, + "cuisine": "french", + "ingredients": [ + "bread crumbs", + "mushroom caps", + "shallots", + "swiss", + "pepper", + "flour", + "parsley", + "fat free milk", + "cooking spray", + "salt", + "unsalted butter", + "mushrooms", + "bechamel" + ] + }, + { + "id": 13364, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "garlic paste", + "serrano peppers", + "salt", + "fenugreek leaves", + "water", + "butter", + "boneless skinless chicken breast halves", + "black peppercorns", + "crushed tomatoes", + "paprika", + "ginger paste", + "clove", + "cream", + "vegetable oil", + "cinnamon sticks" + ] + }, + { + "id": 898, + "cuisine": "japanese", + "ingredients": [ + "seaweed", + "extra firm tofu", + "miso paste", + "scallions", + "fish stock" + ] + }, + { + "id": 37748, + "cuisine": "italian", + "ingredients": [ + "soy sauce", + "red wine vinegar", + "olive oil", + "pepper", + "garlic cloves", + "fresh rosemary", + "shallots" + ] + }, + { + "id": 9369, + "cuisine": "japanese", + "ingredients": [ + "tumeric", + "garam masala", + "kasuri methi", + "bay leaf", + "clove", + "cream", + "cinnamon", + "cardamom", + "coriander", + "tomato purée", + "fresh ginger", + "butter", + "garlic cloves", + "sugar", + "chili powder", + "salt", + "onions" + ] + }, + { + "id": 34705, + "cuisine": "cajun_creole", + "ingredients": [ + "tomatoes", + "water", + "chopped celery", + "okra", + "celery", + "pepper", + "vegetable oil", + "hot sauce", + "turkey breast", + "turkey carcass", + "frozen whole kernel corn", + "salt", + "carrots", + "bay leaf", + "vegetable oil cooking spray", + "finely chopped onion", + "all-purpose flour", + "thyme", + "peppercorns" + ] + }, + { + "id": 48990, + "cuisine": "mexican", + "ingredients": [ + "Tabasco Pepper Sauce", + "green chilies", + "no-salt-added diced tomatoes", + "extra-virgin olive oil", + "baked tortilla chips", + "avocado", + "red wine vinegar", + "whole kernel corn, drain", + "black beans", + "salt", + "chopped cilantro" + ] + }, + { + "id": 22061, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "cayenne pepper", + "kosher salt", + "lemon", + "ground cumin", + "ground ginger", + "yoghurt", + "ground lamb", + "pepper", + "garlic" + ] + }, + { + "id": 21815, + "cuisine": "filipino", + "ingredients": [ + "spring roll wrappers", + "water chestnuts", + "garlic", + "sliced mushrooms", + "soy sauce", + "lumpia wrappers", + "yellow onion", + "eggs", + "pepper", + "ground pork", + "oil", + "sugar", + "green onions", + "salt", + "large shrimp" + ] + }, + { + "id": 30847, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "mushrooms", + "alfalfa sprouts", + "dark sesame oil", + "chile paste", + "chicken breasts", + "pineapple juice", + "red bell pepper", + "romaine lettuce", + "peeled fresh ginger", + "rice vinegar", + "garlic cloves", + "low sodium soy sauce", + "red cabbage", + "vegetable oil", + "chinese cabbage", + "chopped fresh mint" + ] + }, + { + "id": 1787, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "pepper", + "Tabasco Pepper Sauce", + "salt", + "black pepper", + "lime juice", + "Mexican beer", + "skirt steak", + "soy sauce", + "minced garlic", + "vegetable oil", + "orange juice", + "white onion", + "Mexican oregano", + "cilantro", + "cumin" + ] + }, + { + "id": 41885, + "cuisine": "french", + "ingredients": [ + "white wine", + "leeks", + "extra-virgin olive oil", + "garlic cloves", + "mussels", + "snow crab", + "spot prawns", + "yellow onion", + "bay leaf", + "pepper", + "rouille", + "fine sea salt", + "thyme", + "tomatoes", + "Dungeness crabs", + "fish stock", + "squid", + "fish" + ] + }, + { + "id": 26059, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "unsalted butter", + "vanilla extract", + "vanilla frosting", + "buttermilk", + "salt", + "baking soda", + "red food coloring", + "unsweetened cocoa powder", + "cider vinegar", + "large eggs", + "cake flour" + ] + }, + { + "id": 4108, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "vanilla extract", + "butter", + "granulated sugar", + "dry roasted peanuts", + "light corn syrup" + ] + }, + { + "id": 44361, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "extra-virgin olive oil", + "chopped cilantro fresh", + "raisins", + "corn tortillas", + "ground cumin", + "green bell pepper", + "ground allspice", + "skirt steak", + "diced tomatoes", + "pimento stuffed green olives" + ] + }, + { + "id": 45474, + "cuisine": "italian", + "ingredients": [ + "angel hair", + "vegetable bouillon", + "crushed red pepper flakes", + "sour cream", + "brussels sprouts", + "pepper", + "grated parmesan cheese", + "corn starch", + "dried tarragon leaves", + "minced onion", + "salt", + "dried oregano", + "diced potatoes", + "water", + "sliced carrots", + "green beans" + ] + }, + { + "id": 36449, + "cuisine": "cajun_creole", + "ingredients": [ + "jumbo shrimp", + "leeks", + "heavy whipping cream", + "dry vermouth", + "dried thyme", + "large garlic cloves", + "andouille sausage", + "seafood stock", + "all-purpose flour", + "red potato", + "bottled clam juice", + "butter", + "puff pastry" + ] + }, + { + "id": 10737, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "seeds", + "coconut milk", + "tumeric", + "green plantains", + "green chilies", + "plantains", + "water", + "pandanus leaf", + "cinnamon sticks", + "curry leaves", + "lime", + "salt", + "onions" + ] + }, + { + "id": 17125, + "cuisine": "indian", + "ingredients": [ + "milk", + "plain flour", + "unsalted butter", + "powdered sugar", + "ground cardamom", + "sliced almonds", + "saffron" + ] + }, + { + "id": 4802, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "fine sea salt", + "anise seed", + "corn kernels", + "acorn squash", + "milk", + "grated nutmeg", + "eggs", + "olive oil", + "scallions" + ] + }, + { + "id": 48536, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "purple onion", + "tomatoes", + "large garlic cloves", + "balsamic vinegar", + "fresh basil leaves", + "olive oil", + "orzo" + ] + }, + { + "id": 20811, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "bacon", + "pepper", + "salt", + "chicken broth", + "Tabasco Pepper Sauce", + "dark brown sugar", + "collard greens", + "red pepper flakes", + "onions" + ] + }, + { + "id": 46261, + "cuisine": "italian", + "ingredients": [ + "diced onions", + "zucchini", + "salt", + "cream", + "barilla piccolini mini", + "fresh tomatoes", + "chicken breasts", + "pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 8667, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "salt", + "fresh cilantro", + "chili powder", + "garlic cloves", + "bread crumbs", + "corn", + "purple onion", + "cumin", + "pepper", + "jalapeno chilies", + "cayenne pepper" + ] + }, + { + "id": 22850, + "cuisine": "french", + "ingredients": [ + "water", + "ground cardamom", + "salt", + "hachiya", + "sugar", + "fresh lemon juice" + ] + }, + { + "id": 9945, + "cuisine": "mexican", + "ingredients": [ + "salt", + "ground black pepper", + "fresh lime juice", + "green onions", + "plum tomatoes", + "avocado", + "garlic cloves" + ] + }, + { + "id": 33750, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "salt", + "butter", + "chocolate chips", + "sugar", + "corn syrup", + "eggs", + "deep dish pie crust" + ] + }, + { + "id": 48527, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "shallots", + "freshly ground pepper", + "shiitake", + "whole milk", + "salt", + "thyme", + "unsalted butter", + "dry white wine", + "rotisserie chicken", + "sage", + "low sodium chicken broth", + "peas", + "carrots" + ] + }, + { + "id": 32339, + "cuisine": "vietnamese", + "ingredients": [ + "sirloin", + "homemade beef stock", + "asian fish sauce", + "rice noodles", + "beansprouts", + "chile pepper", + "scallions", + "chile sauce", + "cilantro leaves", + "onions" + ] + }, + { + "id": 34318, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "red wine vinegar", + "anise", + "fresh lime juice", + "chicken stock", + "pepper", + "red pepper", + "peanut oil", + "ground cumin", + "chile powder", + "black beans", + "uncle bens", + "green pepper", + "chopped cilantro", + "seasoning", + "green onions", + "worcestershire sauce", + "fresh lemon juice" + ] + }, + { + "id": 32085, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "cannellini beans", + "chopped onion", + "prosciutto", + "chopped celery", + "carrots", + "olive oil", + "garlic", + "fat skimmed chicken broth", + "roma tomatoes", + "salt" + ] + }, + { + "id": 13861, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "vegetable stock", + "oil", + "ginger juice", + "Shaoxing wine", + "garlic", + "juice", + "rock sugar", + "shiitake", + "cornflour", + "oyster sauce", + "black pepper", + "sesame oil", + "salt" + ] + }, + { + "id": 9269, + "cuisine": "french", + "ingredients": [ + "sugar", + "apples", + "prepared pie crusts", + "salt", + "heavy cream", + "tart", + "water", + "apple pie spice" + ] + }, + { + "id": 17121, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "ground black pepper", + "boneless pork loin", + "fennel seeds", + "salt", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 36640, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "coriander seeds", + "salt", + "onions", + "water", + "ginger", + "green chilies", + "chiles", + "vegetable oil", + "white fleshed fish", + "ground turmeric", + "coconut", + "garlic", + "cumin seed" + ] + }, + { + "id": 13745, + "cuisine": "italian", + "ingredients": [ + "lump crab meat", + "eggplant", + "lemon wedge", + "pepperoncini", + "fresh marjoram", + "water", + "leeks", + "red pepper", + "thyme sprigs", + "celery ribs", + "pepper", + "grated parmesan cheese", + "fresh thyme leaves", + "garlic cloves", + "bread crumbs", + "olive oil", + "dry white wine", + "salt", + "onions" + ] + }, + { + "id": 47749, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "water", + "ground red pepper", + "fresh lemon juice", + "angel hair", + "olive oil", + "chickpeas", + "red bell pepper", + "ground cinnamon", + "fresh cilantro", + "salt", + "leg of lamb", + "red lentils", + "black pepper", + "chopped tomatoes", + "chopped onion" + ] + }, + { + "id": 44748, + "cuisine": "mexican", + "ingredients": [ + "mozzarella cheese", + "fresh basil leaves", + "flour tortillas", + "tomato sauce" + ] + }, + { + "id": 8104, + "cuisine": "spanish", + "ingredients": [ + "white wine", + "turkey sausage", + "garlic cloves", + "mussels", + "unsalted butter", + "crushed red pepper flakes", + "smoked paprika", + "ground black pepper", + "heavy cream", + "fresh parsley leaves", + "tomatoes", + "french bread", + "yellow onion" + ] + }, + { + "id": 9695, + "cuisine": "chinese", + "ingredients": [ + "large egg whites", + "granulated white sugar", + "large shrimp", + "mayonaise", + "green onions", + "corn starch", + "honey", + "walnuts", + "water", + "vegetable oil", + "sweetened condensed milk" + ] + }, + { + "id": 44496, + "cuisine": "british", + "ingredients": [ + "sausage casings", + "vegetable oil", + "corn flakes", + "freshly ground pepper", + "mustard", + "large eggs", + "kosher salt", + "all-purpose flour" + ] + }, + { + "id": 19456, + "cuisine": "irish", + "ingredients": [ + "water", + "raisins", + "evaporated skim milk", + "ground cinnamon", + "large eggs", + "1% low-fat milk", + "light butter", + "granulated sugar", + "vanilla extract", + "baguette", + "Irish whiskey", + "low-fat cream cheese" + ] + }, + { + "id": 9784, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "fresh asparagus", + "eggs", + "freshly ground pepper", + "red wine vinegar", + "scallions", + "salt" + ] + }, + { + "id": 10702, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "apple cider vinegar", + "scallions", + "nori", + "miso paste", + "ginger", + "cucumber", + "honey", + "daikon", + "carrots", + "avocado", + "tahini", + "salmon sashimi", + "white sesame seeds" + ] + }, + { + "id": 44953, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "ground black pepper", + "cashew chop unsalt", + "chopped cilantro fresh", + "corn kernels", + "extra firm tofu", + "salt", + "mushroom soy sauce", + "yellow squash", + "jalapeno chilies", + "peanut oil", + "sliced green onions", + "water", + "zucchini", + "light coconut milk", + "basmati rice" + ] + }, + { + "id": 18276, + "cuisine": "spanish", + "ingredients": [ + "arborio rice", + "water", + "pimentos", + "green peas", + "garlic cloves", + "dried tarragon leaves", + "finely chopped onion", + "large garlic cloves", + "crushed red pepper", + "red bell pepper", + "saffron threads", + "monkfish", + "dry white wine", + "diced tomatoes", + "sweet paprika", + "fresh parsley", + "jumbo shrimp", + "olive oil", + "clam juice", + "littleneck clams", + "fresh lemon juice" + ] + }, + { + "id": 30175, + "cuisine": "mexican", + "ingredients": [ + "rotelle", + "salt", + "lime", + "tomatoes with juice", + "ground cumin", + "sugar", + "cilantro", + "yellow onion", + "jalapeno chilies", + "garlic" + ] + }, + { + "id": 9939, + "cuisine": "thai", + "ingredients": [ + "cider vinegar", + "golden raisins", + "garlic cloves", + "mango", + "curry powder", + "cilantro", + "coconut milk", + "pepper", + "vegetable oil", + "red bell pepper", + "ground cumin", + "boneless chicken skinless thigh", + "minced ginger", + "salt", + "onions" + ] + }, + { + "id": 43994, + "cuisine": "korean", + "ingredients": [ + "sesame oil", + "seaweed", + "sesame", + "butter", + "kimchi", + "eggs", + "vegetable oil", + "scallions", + "black pepper", + "red pepper", + "cooked white rice" + ] + }, + { + "id": 14827, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "large eggs", + "olive oil", + "shredded mozzarella cheese", + "pasta sauce", + "eggplant", + "water", + "grated parmesan cheese" + ] + }, + { + "id": 15106, + "cuisine": "irish", + "ingredients": [ + "light butter", + "large eggs", + "vanilla extract", + "sugar", + "Irish whiskey", + "sauce", + "ground cinnamon", + "cooking spray", + "1% low-fat milk", + "baguette", + "raisins", + "evaporated skim milk" + ] + }, + { + "id": 16287, + "cuisine": "french", + "ingredients": [ + "grated parmesan cheese", + "all-purpose flour", + "eggs", + "boneless skinless chicken breasts", + "green onions", + "heavy whipping cream", + "pepper", + "salt" + ] + }, + { + "id": 41770, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "corn tortillas", + "roma tomatoes", + "salt", + "onions", + "white onion", + "garlic", + "bay leaf", + "serrano peppers", + "beef tongue" + ] + }, + { + "id": 40867, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vegetable oil", + "vanilla extract", + "cream cheese", + "coffee", + "buttermilk", + "cake flour", + "confectioners sugar", + "large eggs", + "butter", + "frosting", + "marshmallow creme", + "white vinegar", + "soda", + "red food coloring", + "salt", + "unsweetened cocoa powder" + ] + }, + { + "id": 39683, + "cuisine": "brazilian", + "ingredients": [ + "seeds", + "cachaca", + "lime", + "extra-virgin olive oil", + "mint", + "raw sugar", + "papaya", + "crushed ice" + ] + }, + { + "id": 40042, + "cuisine": "southern_us", + "ingredients": [ + "bread", + "granulated sugar", + "eggs", + "salt", + "ground cinnamon", + "raisins", + "milk" + ] + }, + { + "id": 30954, + "cuisine": "greek", + "ingredients": [ + "red mullet", + "garlic cloves", + "olive oil", + "lemon", + "finely chopped fresh parsley", + "salt", + "pepper", + "grape vine leaves", + "lemon juice" + ] + }, + { + "id": 33433, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "thai chile", + "canola oil", + "wide rice noodles", + "extra firm tofu", + "Gochujang base", + "hoisin sauce", + "garlic", + "string beans", + "sesame oil", + "red bell pepper" + ] + }, + { + "id": 4503, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "salt", + "chicken broth", + "baking powder", + "cooked chicken", + "milk", + "butter" + ] + }, + { + "id": 19498, + "cuisine": "southern_us", + "ingredients": [ + "pecan halves", + "sweetened coconut flakes", + "bananas", + "orange juice", + "sugar", + "navel oranges", + "pineapple", + "lemon juice" + ] + }, + { + "id": 47380, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "boneless skinless chicken breasts", + "sour cream", + "fresh cilantro", + "green chilies", + "dried oregano", + "reduced sodium chicken broth", + "garlic", + "onions", + "yellow hominy", + "fat", + "ground cumin" + ] + }, + { + "id": 47714, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "plum tomatoes", + "fresh cilantro", + "lime juice", + "serrano chile" + ] + }, + { + "id": 30715, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "vegetable oil", + "gyoza wrappers", + "ground white pepper", + "soy sauce", + "dry white wine", + "salt", + "corn starch", + "sliced green onions", + "sugar", + "water chestnuts", + "chili oil", + "oyster sauce", + "shiitake mushroom caps", + "large eggs", + "napa cabbage", + "rice vinegar", + "ground turkey" + ] + }, + { + "id": 32702, + "cuisine": "italian", + "ingredients": [ + "won ton wrappers", + "grated lemon zest", + "bread crumb fresh", + "shallots", + "fresh chervil", + "olive oil", + "peas", + "chicken broth", + "freshly grated parmesan", + "garlic cloves" + ] + }, + { + "id": 27728, + "cuisine": "mexican", + "ingredients": [ + "bacon", + "lime", + "ground chipotle chile pepper", + "deveined shrimp", + "olive oil" + ] + }, + { + "id": 4771, + "cuisine": "cajun_creole", + "ingredients": [ + "yellow corn meal", + "cajun seasoning", + "olive oil", + "lemon", + "tilapia fillets", + "butter", + "self rising flour", + "fresh parsley" + ] + }, + { + "id": 15758, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "oil", + "eggplant", + "pepper", + "onions", + "tomatoes", + "salt" + ] + }, + { + "id": 16734, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "kosher salt", + "red potato", + "freshly ground pepper", + "large garlic cloves" + ] + }, + { + "id": 10921, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "sesame oil", + "peanut butter", + "lime", + "garlic", + "water", + "cilantro", + "coconut milk", + "brown sugar", + "fresh ginger", + "hot sauce" + ] + }, + { + "id": 18131, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "garam masala", + "garlic", + "cumin", + "water", + "vegetable oil", + "small green chile", + "pepper", + "cayenne", + "salt", + "tomatoes", + "fresh ginger", + "heavy cream", + "onions" + ] + }, + { + "id": 992, + "cuisine": "french", + "ingredients": [ + "coars ground black pepper", + "lemon", + "chicken stock", + "chopped fresh chives", + "pork tenderloin", + "fresh lemon juice", + "capers", + "butter" + ] + }, + { + "id": 5159, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "lemon juice", + "ground black pepper", + "robiola", + "salt", + "baby arugula", + "bresaola" + ] + }, + { + "id": 21091, + "cuisine": "mexican", + "ingredients": [ + "corn tortillas", + "reduced-fat sour cream", + "boneless skinless chicken breast halves", + "garlic salt", + "enchilada sauce", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 23667, + "cuisine": "japanese", + "ingredients": [ + "water", + "yukon gold potatoes", + "apples", + "onions", + "ketchup", + "ground black pepper", + "peas", + "oil", + "kosher salt", + "flour", + "tonkatsu sauce", + "carrots", + "garam masala", + "butter", + "cayenne pepper", + "chicken thighs" + ] + }, + { + "id": 8907, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "heavy cream", + "semisweet chocolate", + "confectioners sugar", + "granulated sugar", + "salt", + "whole almonds", + "egg whites", + "unsweetened cocoa powder" + ] + }, + { + "id": 19972, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "pepper", + "salt", + "black pepper", + "cinnamon", + "gnocchi", + "brown butter", + "sweet potatoes", + "maple syrup", + "whole wheat pastry flour", + "butter" + ] + }, + { + "id": 33782, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "garlic", + "onions", + "ground cumin", + "water", + "salt", + "chopped cilantro fresh", + "cream", + "paneer", + "white sugar", + "tomatoes", + "cooking oil", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 27546, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "bell pepper", + "paprika", + "freshly ground pepper", + "fresh oregano leaves", + "grated parmesan cheese", + "chili powder", + "country style bread", + "cheddar cheese", + "large eggs", + "beefsteak tomatoes", + "ricotta", + "fresh basil leaves", + "olive oil", + "jalapeno chilies", + "purple onion", + "garlic cloves" + ] + }, + { + "id": 20654, + "cuisine": "russian", + "ingredients": [ + "egg noodles", + "bacon", + "sliced mushrooms", + "cold water", + "butter", + "beef broth", + "celery", + "seasoning salt", + "worcestershire sauce", + "corn starch", + "onions", + "vegetable oil", + "beef stew meat", + "sour cream" + ] + }, + { + "id": 35508, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "buttermilk", + "large eggs", + "all-purpose flour", + "shortening", + "baking powder", + "baking soda", + "salt" + ] + }, + { + "id": 12259, + "cuisine": "italian", + "ingredients": [ + "pizza doughs", + "sea salt", + "extra-virgin olive oil", + "fresh rosemary" + ] + }, + { + "id": 30535, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "stewed tomatoes", + "shrimp", + "vegetable oil", + "seafood", + "large garlic cloves", + "fresh mushrooms", + "crushed tomatoes", + "crushed red pepper", + "onions" + ] + }, + { + "id": 45018, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "hoisin sauce", + "rice vinegar", + "sesame seeds", + "green onions", + "ground beef", + "soy sauce", + "large eggs", + "toasted sesame oil", + "panko", + "garlic" + ] + }, + { + "id": 38424, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "bell pepper", + "fresh parsley", + "dried basil", + "eye of round steak", + "dried oregano", + "pepper", + "bay leaves", + "onions", + "olive oil", + "salt" + ] + }, + { + "id": 18625, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "unsalted butter", + "all-purpose flour", + "fresh parsley leaves", + "caper berries", + "olive oil", + "large garlic cloves", + "veal shanks", + "onions", + "capers", + "lemon zest", + "grated lemon zest", + "brine cured green olives", + "minced garlic", + "dry white wine", + "anchovy fillets", + "low salt chicken broth" + ] + }, + { + "id": 38309, + "cuisine": "italian", + "ingredients": [ + "pepper", + "fresh mozzarella", + "tomatoes", + "chicken breasts", + "grill seasoning", + "olive oil", + "salt", + "fresh basil", + "balsamic vinegar" + ] + }, + { + "id": 26006, + "cuisine": "italian", + "ingredients": [ + "bread flour", + "instant yeast", + "water", + "salt" + ] + }, + { + "id": 2218, + "cuisine": "spanish", + "ingredients": [ + "saffron", + "turkey", + "water", + "salt pork" + ] + }, + { + "id": 18346, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "whole milk", + "olive oil", + "all-purpose flour", + "sage leaves", + "ground pepper", + "grated lemon peel", + "pork shoulder roast", + "garlic" + ] + }, + { + "id": 7495, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "ground beef", + "light brown sugar", + "sauce", + "yellow mustard", + "onions", + "green bell pepper", + "pork and beans" + ] + }, + { + "id": 26154, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "long-grain rice", + "water", + "compressed yeast" + ] + }, + { + "id": 29781, + "cuisine": "british", + "ingredients": [ + "olive oil", + "haddock fillets", + "salt", + "milk", + "potatoes", + "cheese", + "smoked salmon", + "ground nutmeg", + "butter", + "all-purpose flour", + "salmon fillets", + "ground black pepper", + "green peas", + "onions" + ] + }, + { + "id": 13666, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cherry tomatoes", + "purple onion", + "kosher salt", + "ground black pepper", + "cumin", + "black beans", + "olive oil", + "sweet corn", + "lime", + "cilantro" + ] + }, + { + "id": 40219, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "green chilies", + "onions", + "olive oil", + "cumin seed", + "frozen peas", + "tumeric", + "garam masala", + "carrots", + "fresh coriander", + "potatoes", + "phyllo pastry" + ] + }, + { + "id": 4807, + "cuisine": "brazilian", + "ingredients": [ + "sugar", + "ice", + "hibiscus flowers", + "cachaca", + "lime wedges" + ] + }, + { + "id": 46825, + "cuisine": "japanese", + "ingredients": [ + "bonito", + "orange", + "soy sauce", + "konbu", + "rice vinegar" + ] + }, + { + "id": 3780, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "all-purpose flour", + "veal shanks", + "fresh rosemary", + "ground black pepper", + "chopped celery", + "grated lemon zest", + "kosher salt", + "dry white wine", + "purple onion", + "garlic cloves", + "pappardelle pasta", + "anchovy paste", + "beef broth", + "flat leaf parsley" + ] + }, + { + "id": 13318, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "heavy cream", + "garlic", + "tomato paste", + "fresh cilantro", + "paprika", + "kosher salt", + "diced tomatoes", + "onions", + "cooked rice", + "garam masala", + "ginger" + ] + }, + { + "id": 15785, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "butter", + "all-purpose flour", + "milk", + "shoepeg corn", + "sugar", + "bacon", + "lima beans" + ] + }, + { + "id": 44348, + "cuisine": "jamaican", + "ingredients": [ + "eggs", + "baking powder", + "all-purpose flour", + "ground ginger", + "milk", + "vanilla extract", + "brown sugar", + "butter", + "confectioners sugar", + "ground cinnamon", + "fresh ginger root", + "salt" + ] + }, + { + "id": 29275, + "cuisine": "british", + "ingredients": [ + "sugar", + "dijon mustard", + "extra-virgin olive oil", + "ground white pepper", + "ground black pepper", + "red wine vinegar", + "salt", + "granny smith apples", + "shallots", + "white wine vinegar", + "stilton cheese", + "Belgian endive", + "unsalted butter", + "fresh tarragon", + "walnuts" + ] + }, + { + "id": 13398, + "cuisine": "greek", + "ingredients": [ + "zucchini", + "fresh oregano", + "plain low-fat yogurt", + "boneless skinless chicken breasts", + "fresh lemon juice", + "cooking spray", + "garlic cloves", + "olive oil", + "salt", + "cucumber" + ] + }, + { + "id": 5419, + "cuisine": "french", + "ingredients": [ + "semisweet chocolate", + "honey", + "whipping cream" + ] + }, + { + "id": 25638, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "green onions", + "salted cashews", + "fresh dill", + "ground black pepper", + "buttermilk", + "red leaf lettuce", + "boneless skinless chicken breasts", + "dill weed", + "grapes", + "dry white wine", + "celery" + ] + }, + { + "id": 38044, + "cuisine": "greek", + "ingredients": [ + "italian tomatoes", + "ziti", + "dry red wine", + "grated nutmeg", + "allspice", + "sugar", + "unsalted butter", + "pecorino romano cheese", + "all-purpose flour", + "dried oregano", + "tomato paste", + "milk", + "vegetable oil", + "lamb shoulder", + "freshly ground pepper", + "tomato sauce", + "large egg yolks", + "cinnamon", + "salt", + "onions" + ] + }, + { + "id": 16286, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dark rum", + "almonds", + "heavy whipping cream", + "sugar", + "salt", + "semisweet chocolate" + ] + }, + { + "id": 29715, + "cuisine": "southern_us", + "ingredients": [ + "low-fat buttermilk", + "salt", + "orange juice", + "baking soda", + "vanilla extract", + "whipped topping", + "butter-margarine blend", + "baking powder", + "strawberries", + "sugar", + "cooking spray", + "all-purpose flour", + "lemon juice" + ] + }, + { + "id": 14326, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "agave nectar", + "orange liqueur", + "tequila", + "lime wedges", + "key lime juice" + ] + }, + { + "id": 17066, + "cuisine": "italian", + "ingredients": [ + "calamari", + "red pepper flakes", + "freshly ground pepper", + "fresh parsley", + "fresh chives", + "lemon", + "salt", + "medium shrimp", + "mussels", + "olive oil", + "garlic", + "mixed greens", + "pitted kalamata olives", + "sea scallops", + "purple onion", + "lemon juice" + ] + }, + { + "id": 16178, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "lean ground beef", + "white bread", + "minced onion", + "worcestershire sauce", + "water", + "condensed cream of mushroom soup", + "eggs", + "beef base" + ] + }, + { + "id": 42468, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "pesto", + "chees fresh mozzarella", + "fresh basil", + "refrigerated pizza dough", + "prosciutto", + "fresh parsley" + ] + }, + { + "id": 33261, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "bread slices", + "pepper", + "iceberg lettuce", + "cold meatloaf", + "plum tomatoes", + "fresh basil", + "salt" + ] + }, + { + "id": 7926, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "salt", + "unsalted butter", + "baking powder", + "honey", + "all-purpose flour" + ] + }, + { + "id": 7682, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "ground black pepper", + "lemon juice", + "soy sauce", + "oil", + "white onion", + "garlic cloves", + "sugar", + "sirloin steak" + ] + }, + { + "id": 184, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "garlic powder", + "diced tomatoes", + "boneless skinless chicken breasts", + "Swanson Chicken Broth", + "italian seasoning" + ] + }, + { + "id": 38426, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "bacon", + "whole wheat breadcrumbs", + "eggs", + "baking potatoes", + "all-purpose flour", + "half & half", + "shredded sharp cheddar cheese", + "italian seasoning", + "pepper", + "butter", + "fresh herbs" + ] + }, + { + "id": 33385, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "fresh ginger", + "hot chili sauce", + "water", + "ramen noodles", + "sliced mushrooms", + "fresh spinach", + "green onions", + "carrots", + "fresh basil", + "lime", + "garlic", + "medium shrimp" + ] + }, + { + "id": 22050, + "cuisine": "japanese", + "ingredients": [ + "cream of tartar", + "large egg whites", + "powdered sugar", + "green tea powder" + ] + }, + { + "id": 41083, + "cuisine": "french", + "ingredients": [ + "sugar", + "salt", + "unsalted butter", + "club soda", + "large eggs", + "milk", + "all-purpose flour" + ] + }, + { + "id": 47548, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "chili pepper", + "water chestnuts", + "garlic", + "red bell pepper", + "chinese rice wine", + "peanuts", + "chili oil", + "rice vinegar", + "brown sugar", + "large egg whites", + "meat", + "salt", + "canola oil", + "chicken broth", + "soy sauce", + "zucchini", + "ginger", + "corn starch" + ] + }, + { + "id": 49030, + "cuisine": "french", + "ingredients": [ + "wine", + "unsalted butter", + "vanilla extract", + "grated lemon peel", + "olive oil", + "baking powder", + "all-purpose flour", + "grated orange peel", + "baking soda", + "extra-virgin olive oil", + "seedless red grapes", + "sugar", + "large eggs", + "salt" + ] + }, + { + "id": 22934, + "cuisine": "mexican", + "ingredients": [ + "ground chicken", + "ancho powder", + "yellow onion", + "fresh lime juice", + "ground cumin", + "corn kernels", + "salt", + "ground white pepper", + "monterey jack", + "water", + "garlic", + "sweet paprika", + "dried oregano", + "dough", + "unsalted butter", + "all-purpose flour", + "poblano chiles", + "canola oil" + ] + }, + { + "id": 35484, + "cuisine": "thai", + "ingredients": [ + "pepper", + "cooked chicken", + "edamame", + "garlic cloves", + "ground ginger", + "quinoa", + "salt", + "creamy peanut butter", + "chopped cilantro", + "light brown sugar", + "lime juice", + "red pepper", + "canned coconut milk", + "carrots", + "sweet chili sauce", + "green onions", + "rice vinegar", + "roasted peanuts" + ] + }, + { + "id": 19265, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "freshly ground pepper", + "green olives", + "sherry vinegar", + "sliced shallots", + "orange bell pepper", + "garlic cloves", + "capers", + "salt" + ] + }, + { + "id": 28086, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "sour cream", + "extra-virgin olive oil", + "english cucumber", + "greek yogurt" + ] + }, + { + "id": 15772, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "tomato paste", + "onions", + "cilantro leaves", + "lime juice" + ] + }, + { + "id": 5840, + "cuisine": "cajun_creole", + "ingredients": [ + "hot pepper sauce", + "bacon", + "thyme", + "black pepper", + "chili powder", + "garlic", + "dijon mustard", + "basil", + "oregano", + "scallops", + "vegetable oil", + "salt" + ] + }, + { + "id": 11212, + "cuisine": "vietnamese", + "ingredients": [ + "white pepper", + "garlic", + "bean curd", + "cooking oil", + "scallions", + "sugar", + "egg whites", + "shrimp", + "fresh ginger", + "salt" + ] + }, + { + "id": 20677, + "cuisine": "southern_us", + "ingredients": [ + "dry roasted peanuts", + "whole milk", + "corn starch", + "unflavored gelatin", + "evaporated milk", + "corn syrup", + "cold water", + "water", + "heavy cream", + "kosher salt", + "granulated sugar", + "coca-cola" + ] + }, + { + "id": 28512, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "pasta", + "broccoli rabe", + "olive oil", + "romano cheese", + "red pepper flakes" + ] + }, + { + "id": 3511, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lemon juice", + "galangal", + "kaffir lime leaves", + "chopped onion", + "chillies", + "chopped garlic", + "lemongrass", + "coconut milk", + "ground turmeric", + "brown sugar", + "mustard seeds", + "coriander" + ] + }, + { + "id": 24638, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "all-purpose flour", + "top round steak", + "flour", + "oil", + "eggs", + "milk", + "cayenne pepper", + "kosher salt", + "salt" + ] + }, + { + "id": 17468, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "cayenne", + "salt", + "onions", + "clove", + "ground black pepper", + "garlic", + "cinnamon sticks", + "ground cumin", + "plain yogurt", + "butter", + "long-grain rice", + "cashew nuts", + "water", + "raisins", + "ground cardamom", + "boneless lamb" + ] + }, + { + "id": 38975, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "tomatoes with juice", + "minced garlic", + "macaroni", + "homemade chicken stock", + "fennel", + "onions", + "italian sausage", + "dried basil", + "grated parmesan cheese" + ] + }, + { + "id": 49530, + "cuisine": "italian", + "ingredients": [ + "all-purpose flour", + "kosher salt", + "whole milk ricotta cheese", + "cornmeal" + ] + }, + { + "id": 15118, + "cuisine": "jamaican", + "ingredients": [ + "coconut oil", + "lime juice", + "sweet pepper", + "thyme", + "chicken", + "tomatoes", + "pepper", + "sea salt", + "yellow onion", + "browning", + "black pepper", + "arrowroot powder", + "salt", + "onions", + "green bell pepper", + "water", + "garlic", + "carrots", + "cabbage" + ] + }, + { + "id": 27731, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "cheese", + "kosher salt", + "large eggs", + "ground black pepper", + "all-purpose flour", + "nutmeg", + "unsalted butter" + ] + }, + { + "id": 41345, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "garam masala", + "heavy cream", + "chickpeas", + "cumin", + "pepper", + "sweet potatoes", + "garlic", + "smoked paprika", + "kosher salt", + "jalapeno chilies", + "cilantro", + "ground coriander", + "olive oil", + "butter", + "sweet peas", + "coconut milk" + ] + }, + { + "id": 6314, + "cuisine": "brazilian", + "ingredients": [ + "white vinegar", + "pepper", + "beef rib short", + "low-fat chicken broth", + "smoked bacon", + "onions", + "boneless pork shoulder", + "orange", + "garlic cloves", + "dried black beans", + "salt", + "smoked ham hocks" + ] + }, + { + "id": 42749, + "cuisine": "moroccan", + "ingredients": [ + "green bell pepper", + "freshly ground pepper", + "feta cheese crumbles", + "avocado", + "extra-virgin olive oil", + "garlic cloves", + "fresh parsley", + "kalamata", + "mixed greens", + "fresh mint", + "preserved lemon", + "purple onion", + "fresh lemon juice", + "plum tomatoes" + ] + }, + { + "id": 3420, + "cuisine": "mexican", + "ingredients": [ + "black peppercorns", + "sea salt", + "cilantro leaves", + "cumin seed", + "chicken stock", + "green onions", + "garlic", + "grated lemon zest", + "bone in chicken thighs", + "jalapeno chilies", + "extra-virgin olive oil", + "salsa", + "lemon juice", + "tomato paste", + "cinnamon", + "purple onion", + "pumpkin seeds", + "dried oregano" + ] + }, + { + "id": 6392, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "peanuts", + "boneless skinless chicken breasts", + "cooked rice", + "water", + "vinegar", + "red bell pepper", + "cold water", + "minced garlic", + "zucchini", + "corn starch", + "brown sugar", + "chile paste", + "green onions" + ] + }, + { + "id": 28110, + "cuisine": "mexican", + "ingredients": [ + "chopped green chilies", + "green pepper", + "red bell pepper", + "fresh parsley", + "pepper", + "jalapeno chilies", + "tortilla chips", + "ground turkey", + "shredded cheddar cheese", + "salsa", + "pimento stuffed olives", + "ripe olives", + "cheese soup", + "chopped onion", + "sour cream", + "dried oregano" + ] + }, + { + "id": 20612, + "cuisine": "southern_us", + "ingredients": [ + "cointreau", + "baking powder", + "heavy cream", + "corn starch", + "raspberries", + "cold cut", + "all-purpose flour", + "pure vanilla extract", + "peaches", + "butter", + "lemon juice", + "sugar", + "orange bitters", + "sea salt" + ] + }, + { + "id": 40386, + "cuisine": "japanese", + "ingredients": [ + "eggplant", + "red miso", + "sake", + "sesame oil", + "sugar", + "shoyu", + "mirin", + "dried red chile peppers" + ] + }, + { + "id": 36663, + "cuisine": "moroccan", + "ingredients": [ + "caraway seeds", + "fresh ginger root", + "purple onion", + "ground cumin", + "sea bass", + "fresh orange juice", + "fresh lime juice", + "preserved lemon", + "harissa", + "fresh lemon juice", + "unsweetened coconut milk", + "kosher salt", + "extra-virgin olive oil", + "fresh chervil" + ] + }, + { + "id": 46770, + "cuisine": "french", + "ingredients": [ + "gruyere cheese", + "frozen pastry puff sheets", + "fig jam" + ] + }, + { + "id": 37449, + "cuisine": "mexican", + "ingredients": [ + "salmon", + "salsa", + "tortillas", + "monterey jack" + ] + }, + { + "id": 49197, + "cuisine": "italian", + "ingredients": [ + "baby greens", + "white wine vinegar", + "fresh lemon juice", + "large egg whites", + "dijon mustard", + "salt", + "fresh parsley", + "ground black pepper", + "purple onion", + "flounder fillets", + "olive oil", + "large eggs", + "dry bread crumbs", + "plum tomatoes" + ] + }, + { + "id": 17766, + "cuisine": "italian", + "ingredients": [ + "asiago", + "olive oil", + "broccoli" + ] + }, + { + "id": 31292, + "cuisine": "brazilian", + "ingredients": [ + "pure vanilla extract", + "sweetened coconut flakes", + "unsalted butter", + "water", + "sweetened condensed milk", + "white vinegar", + "granulated sugar" + ] + }, + { + "id": 3110, + "cuisine": "korean", + "ingredients": [ + "pepper", + "zucchini", + "red pepper flakes", + "scallions", + "chicken", + "soy sauce", + "water", + "sesame oil", + "salt", + "onions", + "minced garlic", + "flour", + "ginger", + "garlic cloves", + "dried kelp", + "sesame seeds", + "vegetable oil", + "meat bones", + "noodles" + ] + }, + { + "id": 47666, + "cuisine": "french", + "ingredients": [ + "dried thyme", + "anchovy paste", + "onions", + "cooking oil", + "black olives", + "chicken", + "ground black pepper", + "garlic", + "dried rosemary", + "crushed tomatoes", + "red wine", + "salt" + ] + }, + { + "id": 41653, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "cold water", + "salt", + "green onions", + "avocado", + "cucumber" + ] + }, + { + "id": 34441, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "taco seasoning", + "kidney beans", + "frozen corn", + "tomato sauce", + "chili powder", + "onions", + "black beans", + "diced tomatoes", + "cumin" + ] + }, + { + "id": 29403, + "cuisine": "vietnamese", + "ingredients": [ + "black pepper", + "onions", + "sugar", + "shallots", + "fish sauce", + "water", + "sliced green onions", + "pork belly", + "spaghetti, cook and drain" + ] + }, + { + "id": 42094, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "salt", + "arborio rice", + "dry white wine", + "beef marrow", + "beef stock", + "onions", + "grated parmesan cheese", + "saffron powder" + ] + }, + { + "id": 36930, + "cuisine": "jamaican", + "ingredients": [ + "eggs", + "dried thyme", + "spring onions", + "salt", + "water", + "unsalted butter", + "scotch bonnet chile", + "ground beef", + "pepper", + "olive oil", + "baking powder", + "all-purpose flour", + "cold water", + "curry powder", + "crumbs", + "garlic", + "onions" + ] + }, + { + "id": 45962, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil cooking spray", + "butter", + "freshly ground pepper", + "sweet onion", + "salsa", + "sour cream", + "pepper", + "salt", + "garlic cloves", + "green bell pepper", + "large eggs", + "goat cheese", + "chorizo sausage" + ] + }, + { + "id": 5334, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "toasted pine nuts", + "spaghetti", + "pinenuts", + "part-skim ricotta cheese", + "fresh mint", + "large garlic cloves", + "fresh lemon juice", + "grana padano", + "pepper", + "salt", + "frozen peas" + ] + }, + { + "id": 3796, + "cuisine": "japanese", + "ingredients": [ + "white vinegar", + "water", + "all-purpose flour", + "chicken wings", + "butter", + "white sugar", + "eggs", + "garlic powder", + "sauce", + "soy sauce", + "salt" + ] + }, + { + "id": 33561, + "cuisine": "indian", + "ingredients": [ + "clove", + "cardamom pods", + "tea bags", + "sweetened condensed milk", + "black peppercorns", + "cinnamon sticks", + "water" + ] + }, + { + "id": 28984, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "zucchini", + "button mushrooms", + "cumin", + "corn kernels", + "bell pepper", + "yellow onion", + "black beans", + "flour tortillas", + "cheese", + "seasoning", + "olive oil", + "jalapeno chilies", + "cayenne pepper" + ] + }, + { + "id": 4266, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "bay leaves", + "black cardamom pods", + "onions", + "cooking oil", + "green peas", + "carrots", + "water", + "fresh green bean", + "cumin seed", + "basmati rice", + "clove", + "potatoes", + "salt", + "cinnamon sticks" + ] + }, + { + "id": 18497, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "lobster", + "salt", + "water", + "sesame oil", + "scallions", + "white pepper", + "Shaoxing wine", + "e-fu noodl", + "sugar", + "cooking oil", + "ginger", + "oyster sauce" + ] + }, + { + "id": 26775, + "cuisine": "moroccan", + "ingredients": [ + "tilapia fillets", + "garlic", + "red bell pepper", + "ground cumin", + "chicken bouillon granules", + "vegetable oil", + "cayenne pepper", + "onions", + "tomatoes", + "paprika", + "carrots", + "olives", + "garbanzo beans", + "salt", + "fresh parsley" + ] + }, + { + "id": 44824, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "onions", + "spinach", + "dried mint flakes", + "eggs", + "feta cheese", + "phyllo dough", + "butter" + ] + }, + { + "id": 38899, + "cuisine": "french", + "ingredients": [ + "cherry tomatoes", + "white wine vinegar", + "water", + "grated parmesan cheese", + "garlic cloves", + "pepper", + "olive oil", + "purple onion", + "dried thyme", + "fresh green bean", + "fresh parsley" + ] + }, + { + "id": 25917, + "cuisine": "french", + "ingredients": [ + "curry powder", + "sauvignon blanc", + "thyme sprigs", + "black peppercorns", + "half & half", + "sea salt", + "sea scallops", + "butter", + "bay leaf", + "white pepper", + "leeks", + "all-purpose flour" + ] + }, + { + "id": 1264, + "cuisine": "mexican", + "ingredients": [ + "serrano peppers", + "cilantro leaves", + "cumin", + "vine ripened tomatoes", + "garlic cloves", + "vegetable oil", + "yellow onion", + "salt", + "fresh lime juice" + ] + }, + { + "id": 47083, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "sesame paste", + "water", + "salt", + "fresh mint", + "garlic", + "fresh lemon juice", + "moroccan seasoning", + "rack of lamb", + "ground cumin" + ] + }, + { + "id": 33245, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "lean ground beef", + "purple onion", + "honey", + "ginger", + "canola oil", + "water", + "cilantro", + "garlic cloves", + "fish sauce", + "hoisin sauce", + "thai chile" + ] + }, + { + "id": 39, + "cuisine": "mexican", + "ingredients": [ + "tostada shells", + "cheese", + "ground beef", + "shredded lettuce", + "taco seasoning", + "tortillas", + "salsa", + "diced tomatoes", + "sour cream" + ] + }, + { + "id": 2147, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "butter", + "ground black pepper", + "hominy grits", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 34740, + "cuisine": "french", + "ingredients": [ + "almonds", + "almond extract", + "granulated sugar", + "grated lemon zest", + "large eggs", + "confectioners sugar", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 19928, + "cuisine": "french", + "ingredients": [ + "sugar", + "vanilla extract", + "semi-sweet chocolate morsels", + "fat free milk", + "margarine", + "egg substitute", + "all-purpose flour", + "unsweetened cocoa powder", + "ice water", + "peanut butter chips" + ] + }, + { + "id": 33008, + "cuisine": "italian", + "ingredients": [ + "hot pepper sauce", + "yellow bell pepper", + "dill pickles", + "eggplant", + "cooking spray", + "salt", + "frozen peas", + "tuna in oil", + "extra-virgin olive oil", + "red bell pepper", + "ground black pepper", + "red wine vinegar", + "long-grain rice" + ] + }, + { + "id": 31373, + "cuisine": "italian", + "ingredients": [ + "red chili peppers", + "large garlic cloves", + "Diamond Crystal® Kosher Salt", + "fresh thyme", + "fresh oregano", + "lemon juice", + "lemon", + "striped bass", + "flat leaf parsley", + "large egg whites", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 44594, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "mozzarella cheese", + "dry bread crumbs", + "risotto", + "all-purpose flour", + "large eggs" + ] + }, + { + "id": 41284, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "fresh lemon juice", + "black pepper", + "salt", + "pancetta", + "shallots", + "gnocchi", + "parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 16390, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "salt", + "vegetable oil", + "cayenne pepper", + "white pepper", + "all-purpose flour", + "paprika", + "chicken" + ] + }, + { + "id": 35023, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "oil", + "green tomatoes", + "cornmeal", + "milk", + "corn starch", + "chili powder" + ] + }, + { + "id": 42782, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "flaked coconut", + "vanilla extract", + "chips", + "butter", + "egg yolks", + "pastry shell", + "corn starch", + "half & half", + "whipping cream" + ] + }, + { + "id": 19756, + "cuisine": "mexican", + "ingredients": [ + "sliced carrots", + "white vinegar", + "white sugar", + "purple onion", + "jalapeno chilies" + ] + }, + { + "id": 44219, + "cuisine": "indian", + "ingredients": [ + "warm water", + "garam masala", + "purple onion", + "coconut milk", + "hot chili", + "stewed tomatoes", + "cumin seed", + "fresh ginger", + "chicken breasts", + "salt", + "ground turmeric", + "coriander seeds", + "chicken stock cubes", + "garlic cloves" + ] + }, + { + "id": 36174, + "cuisine": "italian", + "ingredients": [ + "italian tomatoes", + "coarse sea salt", + "olive oil", + "onions", + "perciatelli", + "garlic cloves", + "fresh basil", + "eggplant" + ] + }, + { + "id": 15348, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "orange", + "onion powder", + "yellow mustard", + "brown sugar", + "water", + "bourbon whiskey", + "spicy brown mustard", + "molasses", + "garlic powder", + "apple cider vinegar", + "sea salt", + "black pepper", + "cayenne", + "cajun seasoning", + "apple juice" + ] + }, + { + "id": 42825, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "corn kernels", + "beans", + "Tabasco Pepper Sauce", + "tomato purée", + "cherry tomatoes", + "taco shells", + "ground cumin" + ] + }, + { + "id": 45571, + "cuisine": "indian", + "ingredients": [ + "flour", + "crushed red pepper", + "onions", + "fresh ginger", + "diced tomatoes", + "firm tofu", + "canola oil", + "half & half", + "salt", + "ground turmeric", + "garam masala", + "garlic", + "red bell pepper" + ] + }, + { + "id": 36281, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "hot pepper sauce", + "Mexican oregano", + "salt", + "sour cream", + "black pepper", + "egg whites", + "stewed tomatoes", + "shredded mozzarella cheese", + "shredded Monterey Jack cheese", + "ground cinnamon", + "poblano peppers", + "vegetable oil", + "all-purpose flour", + "onions", + "white vinegar", + "shredded cheddar cheese", + "egg yolks", + "garlic", + "oil", + "ground cumin" + ] + }, + { + "id": 34046, + "cuisine": "chinese", + "ingredients": [ + "regular tofu", + "dry sherry", + "long grain white rice", + "chili flakes", + "reduced sodium soy sauce", + "garlic", + "fresh ginger", + "vegetable broth", + "firmly packed brown sugar", + "broccoli florets", + "fermented black beans" + ] + }, + { + "id": 21040, + "cuisine": "southern_us", + "ingredients": [ + "mandarin oranges", + "small curd cottage cheese", + "cool whip", + "jello", + "crushed pineapple" + ] + }, + { + "id": 10500, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "fresh mint", + "sugar", + "Spring! Water" + ] + }, + { + "id": 33453, + "cuisine": "southern_us", + "ingredients": [ + "chiles", + "light molasses", + "garlic cloves", + "ground cumin", + "crushed tomatoes", + "chili powder", + "low salt chicken broth", + "white onion", + "coffee", + "hot water", + "olive oil", + "dark brown sugar", + "chopped cilantro fresh" + ] + }, + { + "id": 23891, + "cuisine": "italian", + "ingredients": [ + "water", + "lemon", + "chicken broth", + "unsalted butter", + "arborio rice", + "olive oil", + "salt", + "lump crab meat", + "green onions" + ] + }, + { + "id": 4898, + "cuisine": "spanish", + "ingredients": [ + "sherry vinegar", + "blanched almonds", + "extra-virgin olive oil", + "serrano ham", + "asparagus", + "escarole", + "dry bread crumbs", + "ground cumin" + ] + }, + { + "id": 43629, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "flour", + "lemon", + "juice", + "olive oil", + "Tabasco Pepper Sauce", + "salt", + "water", + "quickcooking grits", + "garlic", + "medium shrimp", + "chicken broth", + "grated parmesan cheese", + "baby spinach", + "scallions" + ] + }, + { + "id": 14096, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "salt", + "ground black pepper", + "mayonaise", + "ground cayenne pepper", + "dijon style mustard" + ] + }, + { + "id": 34258, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "sugar", + "lime", + "chopped cilantro fresh", + "garlic paste", + "pepper", + "salt", + "ginger paste", + "kaffir lime leaves", + "straw mushrooms", + "thai chile", + "chicken", + "fish sauce", + "lemongrass", + "coconut milk" + ] + }, + { + "id": 18758, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "lemon juice", + "capers", + "paprika", + "fresh parsley", + "olive oil", + "all-purpose flour", + "cutlet", + "ground white pepper" + ] + }, + { + "id": 8111, + "cuisine": "british", + "ingredients": [ + "dark molasses", + "cinnamon", + "sugar", + "baking soda", + "all-purpose flour", + "cream of tartar", + "milk", + "salt", + "mixed spice", + "butter" + ] + }, + { + "id": 42014, + "cuisine": "southern_us", + "ingredients": [ + "granulated garlic", + "buttermilk", + "pork lard", + "baking powder", + "cayenne pepper", + "chicken", + "black pepper", + "all-purpose flour", + "canola oil", + "rub", + "chili powder", + "white sugar" + ] + }, + { + "id": 36073, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "jalapeno chilies", + "salsa", + "cheese soup", + "onion powder", + "cumin", + "garlic powder", + "chicken breasts", + "sour cream", + "tortillas", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 5106, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "salt", + "onions", + "potatoes", + "cumin seed", + "garam masala", + "cilantro leaves", + "ground turmeric", + "curry leaves", + "chili powder", + "oil" + ] + }, + { + "id": 49, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "white sugar", + "water", + "light corn syrup", + "butter", + "peanuts", + "salt" + ] + }, + { + "id": 40906, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "onion powder", + "all-purpose flour", + "dijon mustard", + "buttermilk", + "chicken", + "ground black pepper", + "vegetable oil", + "cayenne pepper", + "baking powder", + "salt" + ] + }, + { + "id": 6647, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "cannellini beans", + "seasoning salt", + "onions", + "turkey bacon", + "mustard greens", + "chicken broth", + "olive oil" + ] + }, + { + "id": 47547, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "lemon juice", + "melted butter", + "peaches", + "fresh raspberries", + "yoplait", + "cold water", + "baking soda", + "Gold Medal All Purpose Flour", + "corn starch", + "eggs", + "baking powder", + "ground allspice" + ] + }, + { + "id": 46726, + "cuisine": "mexican", + "ingredients": [ + "halibut fillets", + "chili powder", + "chopped cilantro fresh", + "sugar", + "cooking spray", + "corn tortillas", + "avocado", + "ground black pepper", + "salt", + "fat free yogurt", + "shredded cabbage", + "fresh lime juice" + ] + }, + { + "id": 43148, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "ground nutmeg", + "salt", + "onions", + "ground cinnamon", + "pepper", + "chopped almonds", + "chicken pieces", + "saffron", + "powdered sugar", + "water", + "butter", + "fresh parsley", + "ground ginger", + "ground cloves", + "large eggs", + "phyllo pastry", + "chopped cilantro fresh" + ] + }, + { + "id": 28497, + "cuisine": "moroccan", + "ingredients": [ + "yukon gold potatoes", + "chickpeas", + "garlic cloves", + "peppercorns", + "water", + "salt", + "freshly ground pepper", + "leg of lamb", + "ground ginger", + "extra-virgin olive oil", + "sweet paprika", + "fresh lemon juice", + "chopped cilantro fresh", + "coriander seeds", + "yellow onion", + "cumin seed", + "couscous" + ] + }, + { + "id": 26490, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked chicken", + "chopped celery", + "garlic cloves", + "bay leaves", + "diced tomatoes", + "yellow onion", + "green bell pepper", + "low-sodium fat-free chicken broth", + "salt", + "fresh parsley", + "ground red pepper", + "smoked sausage", + "long-grain rice" + ] + }, + { + "id": 39455, + "cuisine": "italian", + "ingredients": [ + "white wine", + "olive oil", + "basil", + "onions", + "pepper", + "leeks", + "salt", + "risotto", + "grated parmesan cheese", + "garlic", + "broth", + "arborio rice", + "water", + "green onions", + "carrots" + ] + }, + { + "id": 42366, + "cuisine": "french", + "ingredients": [ + "almonds", + "nectarines", + "sugar", + "crème fraîche", + "large eggs", + "hazelnuts", + "puff pastry" + ] + }, + { + "id": 35072, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "chicken breasts", + "yellow onion", + "masa", + "kosher salt", + "achiote paste", + "liquid", + "white vinegar", + "lettuce leaves", + "purple onion", + "plum tomatoes", + "black beans", + "vegetable oil", + "sauce" + ] + }, + { + "id": 12171, + "cuisine": "korean", + "ingredients": [ + "sugar", + "sesame salt", + "scallions", + "rib eye steaks", + "black pepper", + "red pepper flakes", + "toasted sesame seeds", + "soy sauce", + "sesame oil", + "garlic cloves", + "sake", + "fresh ginger", + "peanut oil" + ] + }, + { + "id": 48559, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "coconut milk", + "coriander", + "vine tomatoes", + "curry paste", + "ginger", + "fillets", + "basmati rice", + "plain flour", + "garlic cloves", + "onions" + ] + }, + { + "id": 17908, + "cuisine": "mexican", + "ingredients": [ + "frozen lemonade concentrate", + "beer", + "vodka", + "ice cubes" + ] + }, + { + "id": 19984, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "Mexican oregano", + "salt", + "pork butt", + "chicken broth", + "jalapeno chilies", + "cilantro", + "peanut oil", + "masa harina", + "white pepper", + "serrano peppers", + "garlic", + "dark beer", + "poblano peppers", + "tomatillos", + "yellow onion", + "cumin" + ] + }, + { + "id": 43250, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "bacon slices", + "shredded cheddar cheese", + "fresh parsley", + "green chile", + "salt", + "chicken broth", + "quickcooking grits" + ] + }, + { + "id": 15975, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "fresh basil", + "garlic cloves", + "tomatoes", + "salt", + "pepper" + ] + }, + { + "id": 36598, + "cuisine": "italian", + "ingredients": [ + "clams", + "olive oil", + "fresh parsley", + "fettucine", + "crushed red pepper", + "tomatoes", + "dry white wine", + "fresh basil", + "garlic cloves" + ] + }, + { + "id": 45433, + "cuisine": "italian", + "ingredients": [ + "chicken sausage", + "large eggs", + "sea salt", + "ground black pepper", + "shallots", + "olive oil", + "grated parmesan cheese", + "garlic", + "asparagus", + "whole wheat spaghetti" + ] + }, + { + "id": 1036, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "white pepper", + "salt", + "chicken broth", + "green onions", + "ground ginger", + "tapioca flour", + "toasted sesame oil", + "eggs", + "garlic" + ] + }, + { + "id": 6628, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "large eggs", + "corn starch", + "corn flakes", + "rice vinegar", + "soy sauce", + "boneless skinless chicken breasts", + "chicken broth", + "hoisin sauce", + "all-purpose flour" + ] + }, + { + "id": 21575, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "parmesan cheese", + "yellow onion", + "pepper", + "balsamic vinegar", + "red bell pepper", + "fresh basil", + "large eggs", + "garlic cloves", + "olive oil", + "salt", + "bay leaf" + ] + }, + { + "id": 37986, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "chicken legs", + "lime", + "lobster", + "red wine vinegar", + "dry red wine", + "cayenne pepper", + "garlic cloves", + "onions", + "tomatoes", + "bottled clam juice", + "short-grain rice", + "chopped fresh thyme", + "yellow bell pepper", + "salt pork", + "ground coriander", + "flat leaf parsley", + "mussels", + "black peppercorns", + "halibut fillets", + "bay leaves", + "lemon", + "salt", + "fresh oregano", + "ham", + "frozen peas", + "chicken stock", + "green bell pepper", + "olive oil", + "vegetable oil", + "littleneck clams", + "spanish chorizo", + "hot Italian sausages", + "red bell pepper", + "large shrimp" + ] + }, + { + "id": 34490, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vermicelli", + "beef broth", + "ground beef", + "fresh ginger", + "sesame oil", + "corn starch", + "minced garlic", + "green onions", + "chopped onion", + "hoisin sauce", + "red pepper flakes", + "celery" + ] + }, + { + "id": 4937, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "garlic", + "palm sugar", + "lime juice", + "hot water", + "thai chile" + ] + }, + { + "id": 12773, + "cuisine": "chinese", + "ingredients": [ + "zucchini", + "green peas", + "scallions", + "soy sauce", + "brown rice", + "broccoli", + "eggs", + "chicken breasts", + "rice vinegar", + "onions", + "corn kernels", + "sesame oil", + "edamame" + ] + }, + { + "id": 12356, + "cuisine": "korean", + "ingredients": [ + "sugar", + "rice vinegar", + "green onions", + "english cucumber", + "kosher salt", + "dark sesame oil", + "crushed red pepper" + ] + }, + { + "id": 3865, + "cuisine": "vietnamese", + "ingredients": [ + "pork neck", + "yellow onion", + "chicken", + "water", + "fat", + "fish sauce", + "squid", + "salt", + "dried shrimp" + ] + }, + { + "id": 18691, + "cuisine": "korean", + "ingredients": [ + "potatoes", + "carrots", + "soy sauce", + "garlic", + "white sugar", + "chicken wing drummettes", + "onions", + "water", + "Gochujang base" + ] + }, + { + "id": 2561, + "cuisine": "mexican", + "ingredients": [ + "whitefish fillets", + "whole wheat tortillas", + "ground cayenne pepper", + "chili powder", + "salt", + "canola oil", + "ground black pepper", + "relish", + "fresh lime juice", + "lime wedges", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 48031, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "eggs", + "corn kernels", + "melted butter", + "milk", + "green bell pepper", + "finely chopped onion" + ] + }, + { + "id": 19690, + "cuisine": "french", + "ingredients": [ + "fontina cheese", + "pastry shell", + "eggs", + "sage leaves", + "bacon" + ] + }, + { + "id": 8729, + "cuisine": "indian", + "ingredients": [ + "water", + "vegetable oil", + "cinnamon sticks", + "granny smith apples", + "dried apricot", + "chopped onion", + "curry powder", + "salt", + "basmati rice", + "sliced almonds", + "peeled fresh ginger", + "garlic cloves" + ] + }, + { + "id": 5173, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "pineapple", + "diced ham", + "soy sauce", + "green onions", + "frozen corn", + "frozen peas", + "ground ginger", + "olive oil", + "garlic", + "onions", + "cooked brown rice", + "sesame oil", + "carrots" + ] + }, + { + "id": 37918, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "frozen corn", + "KRAFT Mexican Style Finely Shredded Four Cheese", + "chopped cilantro fresh", + "canned black beans", + "TACO BELL® Thick & Chunky Mild Salsa", + "sweet mini bells" + ] + }, + { + "id": 42224, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "long-grain rice", + "corn kernels", + "extra-virgin olive oil", + "pinto beans", + "red wine vinegar", + "garlic cloves", + "cherry tomatoes", + "fresh oregano", + "red bell pepper" + ] + }, + { + "id": 3286, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chopped tomatoes", + "green chilies", + "refried beans", + "salt", + "onions", + "lime", + "large garlic cloves", + "corn tortillas", + "red chili peppers", + "olive oil", + "free range egg", + "coriander" + ] + }, + { + "id": 16101, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "wonton wrappers", + "peanut oil", + "crab meat", + "kosher salt", + "rice vinegar", + "corn starch", + "ketchup", + "crushed red pepper flakes", + "scallions", + "pineapple chunks", + "water", + "cream cheese" + ] + }, + { + "id": 23169, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "salt", + "radishes", + "scallions", + "ground pepper", + "beef rib short", + "seasoning", + "chili powder" + ] + }, + { + "id": 4459, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "lemon juice", + "pinenuts", + "boneless skinless chicken breasts", + "scallions", + "golden raisins", + "grated lemon zest", + "flat leaf parsley", + "olive oil", + "peas", + "long-grain rice" + ] + }, + { + "id": 31219, + "cuisine": "mexican", + "ingredients": [ + "mint sprigs", + "cold water", + "white sugar", + "strawberries", + "lime" + ] + }, + { + "id": 28222, + "cuisine": "japanese", + "ingredients": [ + "miso paste", + "dashi", + "green onions", + "soy sauce", + "soft tofu", + "shiitake" + ] + }, + { + "id": 36576, + "cuisine": "french", + "ingredients": [ + "olive oil", + "fresh thyme leaves", + "carrots", + "chicken thighs", + "cannellini beans", + "white beans", + "bay leaf", + "turkey kielbasa", + "fat skimmed chicken broth", + "onions", + "french bread", + "salt", + "chopped parsley" + ] + }, + { + "id": 4917, + "cuisine": "italian", + "ingredients": [ + "grated romano cheese", + "eggs", + "vegetable oil", + "cold water", + "flour", + "ground black pepper" + ] + }, + { + "id": 43521, + "cuisine": "italian", + "ingredients": [ + "fresh spinach", + "provolone cheese", + "pizza crust", + "lemon juice", + "pepper", + "boneless skinless chicken breast halves", + "great northern beans", + "garlic powder", + "dried rosemary" + ] + }, + { + "id": 48127, + "cuisine": "southern_us", + "ingredients": [ + "red potato", + "onions", + "clam juice", + "clams", + "fatback", + "ground black pepper" + ] + }, + { + "id": 16636, + "cuisine": "chinese", + "ingredients": [ + "scallion greens", + "sugar", + "szechwan peppercorns", + "noodles", + "spinach", + "soy sauce", + "oil", + "toasted peanuts", + "bean paste", + "chinkiang vinegar", + "mustard", + "red chili peppers", + "vegetable oil" + ] + }, + { + "id": 5819, + "cuisine": "italian", + "ingredients": [ + "reduced sodium chicken broth", + "kale", + "finely chopped onion", + "pepper", + "mascarpone", + "oil", + "kosher salt", + "olive oil", + "toasted walnuts", + "pancetta", + "minced garlic", + "unsalted butter", + "carnaroli rice" + ] + }, + { + "id": 7193, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "plum tomatoes", + "jalapeno chilies", + "salt", + "cantaloupe", + "purple onion", + "lime", + "cilantro", + "cucumber" + ] + }, + { + "id": 18483, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "grated nutmeg", + "light brown sugar", + "all-purpose flour", + "light corn syrup", + "cinnamon" + ] + }, + { + "id": 27261, + "cuisine": "mexican", + "ingredients": [ + "stock", + "fresh cilantro", + "sea salt", + "tortilla chips", + "cumin", + "diced onions", + "crushed tomatoes", + "chili powder", + "sauce", + "chipotles in adobo", + "lime juice", + "extra firm tofu", + "salsa", + "corn tortillas", + "white onion", + "garlic powder", + "garlic", + "Mexican cheese" + ] + }, + { + "id": 36738, + "cuisine": "chinese", + "ingredients": [ + "cilantro stems", + "fish", + "kosher salt", + "fresh lime juice", + "basil", + "olive oil", + "key lime" + ] + }, + { + "id": 23327, + "cuisine": "southern_us", + "ingredients": [ + "vanilla ice cream", + "butter", + "rum", + "bananas", + "firmly packed brown sugar", + "banana liqueur" + ] + }, + { + "id": 18709, + "cuisine": "southern_us", + "ingredients": [ + "butter-margarine blend", + "self rising flour", + "yellow corn meal", + "fat free milk", + "ground red pepper", + "sugar", + "frozen whole kernel corn", + "red bell pepper", + "large egg whites", + "cooking spray" + ] + }, + { + "id": 19348, + "cuisine": "moroccan", + "ingredients": [ + "cayenne", + "extra-virgin olive oil", + "flat leaf parsley", + "smoked sweet Spanish paprika", + "garlic cloves", + "granulated sugar", + "salt", + "ground cumin", + "lemon", + "carrots" + ] + }, + { + "id": 9447, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "grated parmesan cheese", + "onions", + "olive oil", + "diced tomatoes", + "cooked meatballs", + "dry red wine", + "perciatelli", + "large garlic cloves" + ] + }, + { + "id": 43888, + "cuisine": "italian", + "ingredients": [ + "angel hair", + "flour", + "lemon", + "salt", + "chicken broth", + "pepper", + "baby spinach", + "extra-virgin olive oil", + "capers", + "dry white wine", + "Italian parsley leaves", + "boneless skinless chicken breast halves", + "eggs", + "parmigiano reggiano cheese", + "butter", + "garlic" + ] + }, + { + "id": 34300, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "White Lily Flour", + "buttermilk", + "baking powder", + "kosher salt", + "lard" + ] + }, + { + "id": 21633, + "cuisine": "moroccan", + "ingredients": [ + "green olives", + "kaiser rolls", + "cumin seed", + "tomatoes", + "ketchup", + "grated lemon zest", + "dried currants", + "lettuce leaves", + "ground turkey", + "ground cinnamon", + "black pepper", + "chopped onion" + ] + }, + { + "id": 31422, + "cuisine": "cajun_creole", + "ingredients": [ + "fontina cheese", + "sweet onion", + "garlic", + "pepper", + "jalapeno chilies", + "cooked quinoa", + "tomatoes", + "olive oil", + "salt", + "tomato paste", + "fresh cilantro", + "cajun seasoning", + "large shrimp" + ] + }, + { + "id": 19474, + "cuisine": "greek", + "ingredients": [ + "sliced black olives", + "pita rounds", + "feta cheese crumbles", + "artichok heart marin", + "tomato sauce", + "chopped fresh herbs" + ] + }, + { + "id": 34578, + "cuisine": "southern_us", + "ingredients": [ + "pork shoulder roast", + "onion powder", + "paprika", + "firmly packed light brown sugar", + "garlic powder", + "yellow mustard", + "salt", + "honey", + "apple cider vinegar", + "sandwich buns", + "slaw", + "ground red pepper", + "worcestershire sauce" + ] + }, + { + "id": 7593, + "cuisine": "italian", + "ingredients": [ + "yellow onion", + "tomato basil sauce", + "pasta", + "sausages", + "green bell pepper" + ] + }, + { + "id": 36162, + "cuisine": "thai", + "ingredients": [ + "calamari", + "crushed red pepper flakes", + "peanut oil", + "beansprouts", + "chicken stock", + "palm sugar", + "raw cashews", + "scallions", + "chicken", + "fish sauce", + "rice noodles", + "sauce", + "cucumber", + "eggs", + "lime wedges", + "purple onion", + "shrimp" + ] + }, + { + "id": 42790, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "ground cumin", + "salsa", + "black beans", + "shredded Monterey Jack cheese", + "chili powder" + ] + }, + { + "id": 43919, + "cuisine": "indian", + "ingredients": [ + "nonfat milk", + "salt", + "ice cubes", + "cumin seed", + "nonfat yogurt plain" + ] + }, + { + "id": 35767, + "cuisine": "cajun_creole", + "ingredients": [ + "diced onions", + "kidney beans", + "bay leaves", + "garlic", + "fresh lemon juice", + "cherry tomatoes", + "fresh thyme", + "paprika", + "rice", + "black pepper", + "garbanzo beans", + "red pepper", + "salt", + "olive oil", + "flour", + "vegetable broth", + "okra" + ] + }, + { + "id": 47348, + "cuisine": "russian", + "ingredients": [ + "eggs", + "vegetable oil", + "carrots", + "diced potatoes", + "apple cider vinegar", + "frozen corn", + "dijon mustard", + "gherkins", + "mayonaise", + "salt", + "frozen peas" + ] + }, + { + "id": 39068, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "chili powder", + "garlic", + "green chilies", + "cumin", + "water", + "cilantro", + "frozen corn", + "bay leaf", + "black beans", + "diced tomatoes", + "salt", + "enchilada sauce", + "pepper flakes", + "chicken breasts", + "cheese", + "tortilla chips", + "onions" + ] + }, + { + "id": 7306, + "cuisine": "irish", + "ingredients": [ + "water", + "carrots", + "yellow mustard seeds", + "bay leaves", + "cabbage", + "turnips", + "potatoes", + "onions", + "black pepper", + "vegetable broth" + ] + }, + { + "id": 2953, + "cuisine": "thai", + "ingredients": [ + "eggplant", + "coconut milk", + "jasmine rice", + "base", + "frozen peas", + "cherry tomatoes", + "new york strip steaks", + "canola oil", + "chiles", + "thai basil", + "lime leaves" + ] + }, + { + "id": 40864, + "cuisine": "greek", + "ingredients": [ + "diced red onions", + "green bell pepper", + "feta cheese crumbles", + "sliced black olives", + "salad dressing", + "grape tomatoes", + "zucchini" + ] + }, + { + "id": 16714, + "cuisine": "british", + "ingredients": [ + "flour", + "kidney", + "black pepper", + "shoulder lamb chops", + "chicken stock", + "butter", + "onions", + "potatoes", + "salt" + ] + }, + { + "id": 4345, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "potatoes", + "cheddar cheese", + "feta cheese", + "spinach", + "red pepper" + ] + }, + { + "id": 29160, + "cuisine": "irish", + "ingredients": [ + "beef stock", + "country bread", + "sherry vinegar", + "beer", + "cheddar cheese", + "fresh thyme leaves", + "onions", + "minced garlic", + "extra-virgin olive oil", + "gray salt" + ] + }, + { + "id": 47326, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "garam masala", + "cinnamon", + "greek style plain yogurt", + "chopped cilantro", + "olive oil", + "bay leaves", + "garlic", + "rice", + "cumin", + "black pepper", + "half & half", + "paprika", + "cayenne pepper", + "onions", + "fresh ginger", + "boneless skinless chicken breasts", + "salt", + "corn starch" + ] + }, + { + "id": 22714, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "vinegar", + "salt", + "seaweed", + "lotus roots", + "avocado", + "water", + "vegetable stock", + "dried shiitake mushrooms", + "carrots", + "chicken", + "wasabi", + "soy sauce", + "vegetable oil", + "sushi grade tuna", + "kelp", + "snow peas", + "eggs", + "mirin", + "ginger", + "rice", + "shrimp" + ] + }, + { + "id": 20471, + "cuisine": "chinese", + "ingredients": [ + "egg roll wrappers", + "soy sauce", + "chicken broth", + "large eggs", + "corn kernels" + ] + }, + { + "id": 16082, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "oil", + "ground cumin", + "plain yogurt", + "chili powder", + "chicken thighs", + "ground ginger", + "ground black pepper", + "lemon juice", + "minced garlic", + "salt", + "coriander" + ] + }, + { + "id": 7731, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "apricot jam", + "vanilla ice cream", + "cinnamon", + "frozen pastry puff sheets", + "apricots", + "sugar", + "plums" + ] + }, + { + "id": 29236, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "rib", + "large garlic cloves", + "black pepper", + "salt", + "mustard greens" + ] + }, + { + "id": 17926, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "chile de arbol", + "tamarind concentrate", + "asafoetida", + "coriander seeds", + "cumin seed", + "cooked rice", + "pearl onions", + "peanut oil", + "ground turmeric", + "kosher salt", + "chana dal", + "black mustard seeds" + ] + }, + { + "id": 18206, + "cuisine": "mexican", + "ingredients": [ + "long-grain rice", + "cumin", + "chicken broth", + "chopped cilantro", + "lime", + "onions", + "olive oil", + "garlic salt" + ] + }, + { + "id": 17058, + "cuisine": "southern_us", + "ingredients": [ + "chicken breasts", + "brown sugar", + "italian salad dressing", + "jack daniels", + "sauce", + "barbecue sauce" + ] + }, + { + "id": 7777, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "jalapeno chilies", + "firm tofu", + "galangal", + "lime juice", + "salt", + "carrots", + "Boston lettuce", + "peanuts", + "rice vinegar", + "green beans", + "cuban peppers", + "garlic", + "scallions", + "asian fish sauce" + ] + }, + { + "id": 25379, + "cuisine": "russian", + "ingredients": [ + "vanilla extract", + "water", + "fresh lemon juice", + "sugar", + "orange juice", + "almond extract" + ] + }, + { + "id": 28049, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "chinese five-spice powder", + "soy sauce", + "shallots", + "asian fish sauce", + "sugar", + "peeled fresh ginger", + "garlic cloves", + "honey", + "rice vinegar" + ] + }, + { + "id": 47307, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "pecan halves", + "bittersweet chocolate", + "light brown sugar", + "heavy cream", + "sugar" + ] + }, + { + "id": 25535, + "cuisine": "thai", + "ingredients": [ + "star anise", + "water", + "coconut milk", + "tea bags", + "cardamom pods", + "honey" + ] + }, + { + "id": 673, + "cuisine": "french", + "ingredients": [ + "water", + "leeks", + "gruyere cheese", + "fresh lemon juice", + "fennel seeds", + "olive oil", + "dry white wine", + "chickpeas", + "plum tomatoes", + "saffron threads", + "sourdough bread", + "butternut squash", + "fine sea salt", + "fresh parsley", + "black pepper", + "fennel bulb", + "baking potatoes", + "garlic cloves" + ] + }, + { + "id": 659, + "cuisine": "cajun_creole", + "ingredients": [ + "cremini mushrooms", + "boneless skinless chicken breasts", + "worcestershire sauce", + "garlic cloves", + "creole mustard", + "chopped green bell pepper", + "butter", + "all-purpose flour", + "sliced green onions", + "fresh parmesan cheese", + "cajun seasoning", + "salt", + "fresh parsley", + "fettucine", + "cooking spray", + "2% reduced-fat milk", + "chopped onion" + ] + }, + { + "id": 27509, + "cuisine": "mexican", + "ingredients": [ + "squash seeds", + "parsley", + "salt", + "seasoning", + "serrano peppers", + "cilantro", + "ground black pepper", + "tomatillos", + "onions", + "chicken broth", + "chicken breasts", + "garlic" + ] + }, + { + "id": 7300, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "ginger", + "chopped fresh mint", + "fish sauce", + "beef", + "thai chile", + "sugar", + "vegetable oil", + "fresh lime juice", + "asian eggplants", + "reduced sodium soy sauce", + "rice vermicelli" + ] + }, + { + "id": 44232, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "asparagus", + "yellow bell pepper", + "salt", + "olive oil", + "fusilli", + "crushed red pepper", + "cherry tomatoes", + "cooking spray", + "whipping cream", + "garlic cloves", + "fresh basil", + "fresh parmesan cheese", + "green peas", + "purple onion" + ] + }, + { + "id": 22868, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "kosher salt", + "yams", + "dark brown sugar", + "water" + ] + }, + { + "id": 39733, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "chees fresh mozzarella", + "semolina flour", + "basil leaves", + "salt", + "tomato sauce", + "flour", + "extra-virgin olive oil", + "olive oil", + "pecorino romano cheese", + "pizza doughs" + ] + }, + { + "id": 30137, + "cuisine": "indian", + "ingredients": [ + "spanish onion", + "garam masala", + "garlic", + "carrots", + "ground cloves", + "paste tomato", + "potatoes", + "cumin seed", + "frozen peas", + "olive oil", + "ground black pepper", + "salt", + "ground beef", + "water", + "coriander seeds", + "cinnamon", + "lentils" + ] + }, + { + "id": 951, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "ancho powder", + "squash", + "olive oil", + "salt", + "lime", + "cracked black pepper", + "red pepper flakes", + "Mexican cheese" + ] + }, + { + "id": 20937, + "cuisine": "italian", + "ingredients": [ + "water", + "fresh lemon juice", + "fresh basil", + "extra-virgin olive oil", + "large shrimp", + "baby spinach", + "spaghetti", + "capers", + "salt" + ] + }, + { + "id": 44266, + "cuisine": "italian", + "ingredients": [ + "bread", + "ground cloves", + "olive oil", + "ground veal", + "salt", + "ground beef", + "eggs", + "water", + "bay leaves", + "crushed red pepper flakes", + "chopped onion", + "spaghetti", + "tomato paste", + "pepper", + "meatballs", + "diced tomatoes", + "green pepper", + "fresh parsley", + "celery ribs", + "sugar", + "milk", + "vegetable oil", + "ground pork", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 5618, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "fresh mozzarella", + "spaghetti", + "black pepper", + "large eggs", + "grated nutmeg", + "parmigiano reggiano cheese", + "salt", + "olive oil", + "whole milk", + "ham" + ] + }, + { + "id": 6023, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "corn starch", + "toasted sesame seeds", + "dark soy sauce", + "flour", + "rice vinegar", + "dried red chile peppers", + "chicken stock", + "broccoli florets", + "salt", + "ground white pepper", + "sugar", + "Shaoxing wine", + "peanut oil", + "chicken thighs" + ] + }, + { + "id": 40084, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "bay leaves", + "ham", + "baby lima beans", + "purple onion", + "boneless chicken skinless thigh", + "chopped fresh thyme", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 17258, + "cuisine": "chinese", + "ingredients": [ + "baby bok choy", + "Shaoxing wine", + "salt", + "white pepper", + "wonton wrappers", + "soy sauce", + "sesame oil", + "chicken stock", + "water", + "ground pork" + ] + }, + { + "id": 32541, + "cuisine": "jamaican", + "ingredients": [ + "jalapeno chilies", + "scallions", + "coconut milk", + "coconut oil", + "red pepper flakes", + "garlic cloves", + "broth", + "tomato paste", + "chips", + "yams", + "onions", + "black pepper", + "salt", + "thyme", + "fish" + ] + }, + { + "id": 39428, + "cuisine": "russian", + "ingredients": [ + "water", + "whole peeled tomatoes", + "garlic", + "carrots", + "green bell pepper", + "swiss chard", + "diced tomatoes", + "dried dillweed", + "onions", + "olive oil", + "potatoes", + "salt", + "celery", + "silken tofu", + "ground black pepper", + "vegetable broth", + "beets" + ] + }, + { + "id": 44810, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "red pepper flakes", + "green pepper", + "picante sauce", + "brown rice", + "cilantro leaves", + "onions", + "black beans", + "flour tortillas", + "diced tomatoes", + "garlic cloves", + "shredded reduced fat cheddar cheese", + "chili powder", + "salsa", + "ground cumin" + ] + }, + { + "id": 6051, + "cuisine": "italian", + "ingredients": [ + "baking soda", + "large eggs", + "all-purpose flour", + "unsweetened cocoa powder", + "powdered sugar", + "brewed coffee", + "salt", + "chocolate morsels", + "mascarpone", + "mint leaves", + "heavy whipping cream", + "peppermint extract", + "granulated sugar", + "butter", + "fresh mint" + ] + }, + { + "id": 43977, + "cuisine": "spanish", + "ingredients": [ + "chiles", + "green plantains", + "garlic cloves", + "chopped cilantro fresh", + "chicken broth", + "pigeon peas", + "cilantro sprigs", + "red bell pepper", + "water", + "fresh thyme", + "ham", + "tomatoes", + "olive oil", + "calabaza", + "onions" + ] + }, + { + "id": 21978, + "cuisine": "moroccan", + "ingredients": [ + "fennel bulb", + "couscous", + "olive oil", + "shallots", + "dried cranberries", + "merguez sausage", + "cumin seed", + "chicken stock", + "harissa paste", + "dried oregano" + ] + }, + { + "id": 26765, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "garlic", + "butter", + "dried oregano", + "cheese", + "boneless chicken breast", + "fresh parsley" + ] + }, + { + "id": 30438, + "cuisine": "chinese", + "ingredients": [ + "mandarin oranges", + "simple syrup", + "grain alcohol" + ] + }, + { + "id": 35218, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "large eggs", + "kosher salt", + "unsalted butter", + "ricotta", + "sage leaves", + "swiss chard", + "grated parmesan cheese", + "frozen chopped spinach", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 40425, + "cuisine": "mexican", + "ingredients": [ + "colby cheese", + "frozen corn kernels", + "canola oil", + "purple onion", + "sour cream", + "flour tortillas", + "red bell pepper", + "andouille sausage links", + "salsa", + "poblano chiles" + ] + }, + { + "id": 7111, + "cuisine": "indian", + "ingredients": [ + "tamarind", + "malt vinegar", + "garlic cloves", + "lime", + "chili powder", + "green chilies", + "salad", + "mint sauce", + "lamb", + "gram flour", + "papaya", + "star anise", + "mustard oil" + ] + }, + { + "id": 10596, + "cuisine": "french", + "ingredients": [ + "shallots", + "white vinegar", + "bacon slices", + "red wine vinegar", + "large eggs", + "frisee" + ] + }, + { + "id": 27071, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "shredded pepper jack cheese", + "bell pepper", + "cooked quinoa", + "crumbles", + "salsa", + "cheese", + "chopped cilantro fresh" + ] + }, + { + "id": 835, + "cuisine": "filipino", + "ingredients": [ + "spinach", + "cooking oil", + "bok choy", + "chicken broth", + "pepper", + "salt", + "fish sauce", + "garlic", + "onions", + "chicken legs", + "fresh ginger", + "chayotes" + ] + }, + { + "id": 25147, + "cuisine": "mexican", + "ingredients": [ + "lime", + "fresh lime juice", + "coarse salt", + "triple sec", + "ice cubes", + "tequila" + ] + }, + { + "id": 42712, + "cuisine": "french", + "ingredients": [ + "eggs", + "all-purpose flour", + "semisweet chocolate", + "sugar", + "frozen pastry puff sheets" + ] + }, + { + "id": 17501, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "breakfast sausages", + "cream cheese", + "flour tortillas", + "cheese", + "pepper", + "butter", + "green onions", + "salt" + ] + }, + { + "id": 31762, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "boneless skinless chicken breasts", + "white cheddar cheese", + "tequila", + "olive oil", + "cajun seasoning", + "cayenne pepper", + "garlic salt", + "lime juice", + "onion powder", + "broccoli", + "corn tortillas", + "chicken broth", + "beef bouillon", + "stewed tomatoes", + "whole kernel corn, drain" + ] + }, + { + "id": 2962, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "green onions", + "cilantro leaves", + "fish sauce", + "lo mein noodles", + "red pepper flakes", + "peanuts", + "vegetable oil", + "fresh lime juice", + "brown sugar", + "large eggs", + "garlic" + ] + }, + { + "id": 8451, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "turkey", + "olive oil", + "celery ribs", + "ground black pepper", + "kosher salt", + "onions" + ] + }, + { + "id": 40659, + "cuisine": "french", + "ingredients": [ + "sugar", + "large egg yolks", + "vanilla beans", + "whipping cream", + "kahlúa", + "milk", + "bittersweet chocolate", + "praline", + "amaretto" + ] + }, + { + "id": 7705, + "cuisine": "french", + "ingredients": [ + "cold water", + "baguette", + "chopped fresh chives", + "carrots", + "onions", + "beef bones", + "ground black pepper", + "butter", + "thyme sprigs", + "celery ribs", + "kosher salt", + "beef shank", + "gruyere cheese", + "bay leaf", + "black peppercorns", + "olive oil", + "chopped fresh thyme", + "flat leaf parsley" + ] + }, + { + "id": 866, + "cuisine": "thai", + "ingredients": [ + "fresh ginger", + "bow-tie pasta", + "dry roasted peanuts", + "large garlic cloves", + "fresh lime juice", + "green onions", + "peanut oil", + "fresh cilantro", + "crushed red pepper", + "medium shrimp" + ] + }, + { + "id": 31026, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "shredded cheddar cheese", + "romaine lettuce", + "ground beef", + "corn tortilla chips", + "chopped onion", + "taco sauce" + ] + }, + { + "id": 21345, + "cuisine": "southern_us", + "ingredients": [ + "whole wheat pastry flour", + "sucanat", + "bacon", + "cornmeal", + "baking soda", + "butter", + "bacon fat", + "honey", + "baking powder", + "salt", + "large eggs", + "buttermilk", + "frozen corn kernels" + ] + }, + { + "id": 9053, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "extra-virgin olive oil", + "carrots", + "fat free less sodium chicken broth", + "finely chopped onion", + "bow-tie pasta", + "ground lamb", + "kosher salt", + "dry white wine", + "garlic cloves", + "fresh rosemary", + "ground black pepper", + "part-skim ricotta cheese", + "fresh mint" + ] + }, + { + "id": 41321, + "cuisine": "mexican", + "ingredients": [ + "green enchilada sauce", + "flat leaf parsley", + "flour tortillas", + "chopped onion", + "black beans", + "frozen corn kernels", + "monterey jack", + "vegetable oil", + "liquid" + ] + }, + { + "id": 22574, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "chickpeas", + "prosecco", + "white wine vinegar", + "freshly ground pepper", + "pancetta", + "extra-virgin olive oil", + "provolone cheese", + "radicchio", + "salt", + "red bell pepper" + ] + }, + { + "id": 12714, + "cuisine": "indian", + "ingredients": [ + "fenugreek leaves", + "leeks", + "purple onion", + "tamarind concentrate", + "ground cumin", + "ground ginger", + "fresh thyme", + "garlic", + "cumin seed", + "ground turmeric", + "chicken stock", + "pepper", + "cilantro", + "cardamom pods", + "ground turkey", + "clove", + "red chili powder", + "lemon", + "salt", + "red bell pepper" + ] + }, + { + "id": 19663, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "chopped tomatoes", + "dried thyme", + "dried oregano", + "dried basil", + "linguini", + "olive oil" + ] + }, + { + "id": 39842, + "cuisine": "mexican", + "ingredients": [ + "fresh coriander", + "salt", + "cherry tomatoes", + "lime", + "avocado", + "jalapeno chilies" + ] + }, + { + "id": 41071, + "cuisine": "french", + "ingredients": [ + "sugar", + "unsalted butter", + "shallots", + "goat cheese", + "olive oil", + "large eggs", + "bacon", + "phyllo dough", + "sherry vinegar", + "dandelion greens", + "salt", + "black pepper", + "dijon mustard", + "heavy cream", + "rib" + ] + }, + { + "id": 47888, + "cuisine": "italian", + "ingredients": [ + "salt", + "large eggs", + "fresh mint", + "olive oil", + "garlic cloves", + "grated parmesan cheese", + "wild mushrooms" + ] + }, + { + "id": 34039, + "cuisine": "moroccan", + "ingredients": [ + "seasoning salt", + "carrots", + "chicken broth", + "almonds", + "couscous", + "i can't believ it' not butter! made with olive oil spread", + "raisins", + "curry powder", + "yellow onion" + ] + }, + { + "id": 44597, + "cuisine": "filipino", + "ingredients": [ + "lime juice", + "black bean and corn salsa", + "eggs", + "jalapeno chilies", + "frozen corn", + "pie pastry", + "chicken strips", + "fresh cilantro", + "cheese" + ] + }, + { + "id": 48290, + "cuisine": "spanish", + "ingredients": [ + "grating cheese", + "serrano ham", + "green pepper", + "chorizo sausage", + "penne pasta", + "onions", + "tomatoes", + "garlic cloves" + ] + }, + { + "id": 29641, + "cuisine": "spanish", + "ingredients": [ + "sea salt", + "chopped cilantro", + "jalapeno chilies", + "garlic cloves", + "butter", + "fresh lime juice", + "peeled shrimp" + ] + }, + { + "id": 47499, + "cuisine": "vietnamese", + "ingredients": [ + "shiitake", + "spring onions", + "wheat flour", + "dark soy sauce", + "beef", + "salt", + "cabbage", + "eggs", + "leaves", + "garlic", + "onions", + "minced ginger", + "zucchini", + "shrimp" + ] + }, + { + "id": 4649, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "anchovy paste", + "olive oil", + "grated parmesan cheese", + "garlic cloves", + "Belgian endive", + "dijon mustard", + "ciabatta", + "radicchio", + "worcestershire sauce", + "fresh lemon juice" + ] + }, + { + "id": 3509, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "salt", + "black pepper", + "butter", + "fresh lemon juice", + "olive oil", + "linguine", + "flat leaf parsley", + "capers", + "chicken breast halves", + "all-purpose flour" + ] + }, + { + "id": 20473, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "cumin", + "pepper", + "salsa", + "shredded Monterey Jack cheese", + "salt", + "chicken", + "flour tortillas", + "cream cheese" + ] + }, + { + "id": 3751, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "light soy sauce", + "lettuce leaves", + "pork butt", + "kosher salt", + "sherry vinegar", + "scallions", + "beans", + "fresh ginger", + "white rice", + "white sugar", + "neutral oil", + "oysters", + "chili paste", + "kimchi" + ] + }, + { + "id": 9324, + "cuisine": "indian", + "ingredients": [ + "sugar", + "brown rice flour", + "fresh yeast", + "corn flour", + "water", + "coconut cream", + "coconut oil", + "salt", + "yeast" + ] + }, + { + "id": 15177, + "cuisine": "russian", + "ingredients": [ + "bread crumb fresh", + "russet potatoes", + "dried porcini mushrooms", + "ground black pepper", + "garlic cloves", + "olive oil", + "salt", + "hungarian hot paprika", + "large eggs", + "hot water" + ] + }, + { + "id": 10622, + "cuisine": "mexican", + "ingredients": [ + "pork shoulder butt", + "all-purpose flour", + "sour cream", + "canola oil", + "pepper", + "cheese", + "enchilada sauce", + "onions", + "chicken broth", + "flour tortillas", + "garlic cloves", + "ripe olives", + "ground cumin", + "fresh cilantro", + "salt", + "carrots", + "dried oregano" + ] + }, + { + "id": 41178, + "cuisine": "indian", + "ingredients": [ + "water", + "lime wedges", + "onions", + "tumeric", + "potatoes", + "cumin seed", + "fresh curry leaves", + "brown mustard seeds", + "chopped cilantro", + "roasted cashews", + "large eggs", + "vegetable oil", + "serrano chile" + ] + }, + { + "id": 20849, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "won ton wrappers", + "sherry", + "crushed red pepper", + "shrimp", + "serrano chilies", + "water", + "distilled vinegar", + "sesame oil", + "oil", + "chicken", + "minced garlic", + "fresh ginger", + "green onions", + "salt", + "corn starch", + "soy sauce", + "fresh cilantro", + "granulated sugar", + "garlic", + "garlic chili sauce" + ] + }, + { + "id": 8891, + "cuisine": "greek", + "ingredients": [ + "romaine lettuce", + "cooking spray", + "salt", + "plum tomatoes", + "pita wraps", + "garlic", + "cucumber", + "halibut fillets", + "extra-virgin olive oil", + "fresh lemon juice", + "dried oregano", + "fresh dill", + "ground black pepper", + "purple onion", + "greek yogurt" + ] + }, + { + "id": 23606, + "cuisine": "french", + "ingredients": [ + "eggs", + "dark brown sugar", + "vanilla extract", + "butter", + "all-purpose flour" + ] + }, + { + "id": 41689, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "radishes", + "vegetable oil", + "freshly ground pepper", + "monterey jack", + "kosher salt", + "seeds", + "guajillo", + "corn tortillas", + "white onion", + "large eggs", + "queso fresco", + "garlic cloves", + "hungarian sweet paprika", + "honey", + "lime wedges", + "tortilla chips", + "chopped cilantro fresh" + ] + }, + { + "id": 45291, + "cuisine": "chinese", + "ingredients": [ + "garlic paste", + "water", + "chili sauce", + "chicken", + "soy sauce", + "white wine vinegar", + "carrots", + "sugar", + "spring onions", + "oil", + "pepper", + "salt", + "noodles" + ] + }, + { + "id": 2294, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "oil", + "baking powder", + "flour", + "salt" + ] + }, + { + "id": 1472, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "orecchiette", + "black pepper", + "baby spinach", + "onions", + "parmigiano reggiano cheese", + "California bay leaves", + "French lentils", + "garlic cloves" + ] + }, + { + "id": 11841, + "cuisine": "russian", + "ingredients": [ + "jalapeno chilies", + "oil", + "tomatoes", + "apples", + "large garlic cloves", + "carrots", + "bell pepper", + "salt" + ] + }, + { + "id": 37135, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "boneless skinless chicken breasts", + "cilantro leaves", + "coriander", + "fresh ginger", + "garlic", + "cardamom", + "crushed tomatoes", + "chili powder", + "greek style plain yogurt", + "cumin", + "unsweetened coconut milk", + "garam masala", + "salt", + "corn starch" + ] + }, + { + "id": 31465, + "cuisine": "irish", + "ingredients": [ + "sliced almonds", + "dried apricot", + "1% low-fat milk", + "granulated sugar", + "baking powder", + "all-purpose flour", + "honey", + "cooking spray", + "salt", + "powdered sugar", + "large eggs", + "butter" + ] + }, + { + "id": 46435, + "cuisine": "thai", + "ingredients": [ + "low sodium soy sauce", + "cooking spray", + "light coconut milk", + "garlic cloves", + "ground cumin", + "curry powder", + "green onions", + "red curry paste", + "chopped cilantro fresh", + "brown sugar", + "peeled fresh ginger", + "salt", + "red bell pepper", + "tilapia fillets", + "lime wedges", + "dark sesame oil", + "basmati rice" + ] + }, + { + "id": 20466, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "salt", + "peaches", + "baking powder", + "blackberries", + "unsalted butter", + "cinnamon", + "sugar", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 644, + "cuisine": "greek", + "ingredients": [ + "large egg whites", + "cheese", + "chopped fresh mint", + "safflower oil", + "pumpkin", + "onions", + "chili flakes", + "fennel bulb", + "feta cheese crumbles", + "spring roll wrappers", + "olive oil", + "bulgur" + ] + }, + { + "id": 27421, + "cuisine": "korean", + "ingredients": [ + "miso paste", + "sesame oil", + "salt", + "pepper", + "mushrooms", + "crushed red pepper flakes", + "scallions", + "firm silken tofu", + "napa cabbage", + "beef broth", + "water", + "chuka soba noodles", + "garlic", + "beansprouts" + ] + }, + { + "id": 42891, + "cuisine": "indian", + "ingredients": [ + "warm water", + "pappadams", + "fresh lime juice", + "honey", + "salt", + "seedless cucumber", + "baby spinach", + "vegetable oil", + "tamarind concentrate" + ] + }, + { + "id": 2571, + "cuisine": "indian", + "ingredients": [ + "fish fillets", + "chili powder", + "oil", + "onions", + "milk", + "garlic", + "fat", + "ground turmeric", + "black pepper", + "ginger", + "cardamom", + "coriander", + "clove", + "garam masala", + "salt", + "bay leaf" + ] + }, + { + "id": 44555, + "cuisine": "french", + "ingredients": [ + "grated orange peel", + "anise", + "honey", + "walnuts", + "dough", + "golden brown sugar", + "sugar", + "whipping cream" + ] + }, + { + "id": 30564, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "lemon juice", + "tomato sauce", + "cilantro leaves", + "chile pepper", + "water", + "cumin seed" + ] + }, + { + "id": 34588, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "olive oil", + "kosher salt", + "yellow onion", + "black pepper", + "red pepper flakes", + "chicken stock", + "smoked bacon", + "garlic cloves" + ] + }, + { + "id": 34268, + "cuisine": "french", + "ingredients": [ + "radishes", + "baby carrots", + "tomatoes", + "peas", + "low salt chicken broth", + "turnips", + "romaine lettuce leaves", + "green beans", + "sugar pea", + "bacon slices" + ] + }, + { + "id": 21480, + "cuisine": "mexican", + "ingredients": [ + "salt", + "roma tomatoes", + "salad oil", + "poblano chilies", + "onions", + "pepper", + "sour cream" + ] + }, + { + "id": 24441, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "crushed red pepper", + "green beans", + "soy sauce", + "brown rice", + "peanut oil", + "sugar", + "hoisin sauce", + "salt", + "lean ground pork", + "garlic", + "corn starch" + ] + }, + { + "id": 13840, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "chili powder", + "sliced green onions", + "black pepper", + "ground red pepper", + "fresh lime juice", + "canned black beans", + "cooking spray", + "salsa", + "ground cumin", + "water", + "chicken breasts", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 45367, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "onions", + "sliced green onions", + "low sodium soy sauce", + "large eggs", + "corn kernel whole", + "spinach", + "shiitake mushroom caps", + "canola oil", + "mirin", + "soba" + ] + }, + { + "id": 41266, + "cuisine": "vietnamese", + "ingredients": [ + "clove", + "sugar", + "beef tendons", + "jalapeno chilies", + "rice noodles", + "cilantro", + "oil", + "red chili powder", + "minced garlic", + "ground pepper", + "green onions", + "cinnamon", + "star anise", + "pickled onion", + "fresh basil", + "baguette", + "lime", + "bay leaves", + "anise powder", + "ginger", + "carrots", + "fish sauce", + "lemongrass", + "beef shank", + "shallots", + "paprika", + "beef broth" + ] + }, + { + "id": 42648, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "chili powder", + "chicken breasts", + "tandoori spices", + "salt" + ] + }, + { + "id": 27735, + "cuisine": "mexican", + "ingredients": [ + "red kidney beans", + "chili powder", + "garlic cloves", + "chopped tomatoes", + "cheese", + "sour cream", + "seasoning", + "lean ground beef", + "enchilada sauce", + "diced onions", + "frozen whole kernel corn", + "salsa", + "corn tortillas" + ] + }, + { + "id": 13801, + "cuisine": "japanese", + "ingredients": [ + "teriyaki sauce", + "black pepper", + "kosher salt", + "chicken" + ] + }, + { + "id": 24272, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "eggs", + "plain flour", + "chopped pecans", + "brown sugar" + ] + }, + { + "id": 2225, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "salt", + "seasoning", + "shallots", + "rib", + "mesquite seasoning", + "creole seasoning", + "granulated garlic", + "smoked paprika" + ] + }, + { + "id": 43070, + "cuisine": "chinese", + "ingredients": [ + "sake", + "cherry tomatoes", + "sesame oil", + "oyster sauce", + "eggs", + "ketchup", + "green onions", + "ginger", + "canola oil", + "chicken broth", + "soy sauce", + "flour", + "lemon", + "corn starch", + "brown sugar", + "minced garlic", + "boneless skinless chicken breasts", + "purple onion" + ] + }, + { + "id": 21366, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "chopped fresh thyme", + "fresh parsley", + "shiitake", + "salt", + "olive oil", + "diced tomatoes", + "shallots", + "garlic cloves" + ] + }, + { + "id": 39187, + "cuisine": "british", + "ingredients": [ + "sugar", + "hot water", + "butter", + "orange juice", + "bourbon whiskey" + ] + }, + { + "id": 35972, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "water", + "lemon zest", + "peas", + "flat leaf parsley", + "fresh basil", + "pinenuts", + "unsalted butter", + "balsamic vinegar", + "green beans", + "warm water", + "asparagus", + "mushrooms", + "extra-virgin olive oil", + "grape tomatoes", + "minced garlic", + "parmigiano reggiano cheese", + "heavy cream", + "spaghettini" + ] + }, + { + "id": 48324, + "cuisine": "italian", + "ingredients": [ + "low-fat mozzarella cheese", + "olive oil", + "whole wheat pizza dough", + "onions", + "bacon" + ] + }, + { + "id": 42294, + "cuisine": "italian", + "ingredients": [ + "water", + "butternut squash", + "unsalted butter", + "chopped fresh sage", + "olive oil", + "salt", + "cavatappi", + "parmigiano reggiano cheese", + "garlic cloves" + ] + }, + { + "id": 17346, + "cuisine": "greek", + "ingredients": [ + "salmon fillets", + "lemon juice", + "kalamata", + "plum tomatoes", + "olive oil", + "feta cheese crumbles", + "fresh basil", + "purple onion" + ] + }, + { + "id": 36769, + "cuisine": "italian", + "ingredients": [ + "water", + "minced onion", + "arborio rice", + "freshly grated parmesan", + "dry white wine", + "dried porcini mushrooms", + "unsalted butter", + "roast turkey", + "broccoli rabe", + "hot water" + ] + }, + { + "id": 14118, + "cuisine": "italian", + "ingredients": [ + "red wine vinegar", + "purple onion", + "kosher salt", + "extra-virgin olive oil", + "fresh basil leaves", + "capers", + "heirloom tomatoes", + "chickpeas", + "ground black pepper", + "whole grain bread", + "arugula" + ] + }, + { + "id": 14908, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "tomatoes", + "lime juice", + "kosher salt", + "serrano chilies", + "cilantro leaves" + ] + }, + { + "id": 38991, + "cuisine": "british", + "ingredients": [ + "pure maple syrup", + "baking powder", + "dark brown sugar", + "baking soda", + "salt", + "powdered sugar", + "whipping cream", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 26800, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "dark corn syrup", + "semi sweet mini chocolate chips", + "pecan halves", + "large eggs", + "pie crust", + "granulated sugar", + "salt", + "brown sugar", + "butter" + ] + }, + { + "id": 29479, + "cuisine": "cajun_creole", + "ingredients": [ + "black peppercorns", + "bay leaves", + "coarse kosher salt", + "water", + "chile de arbol", + "ice cubes", + "whole cloves", + "mustard seeds", + "whole allspice", + "chopped fresh thyme", + "large shrimp" + ] + }, + { + "id": 16375, + "cuisine": "southern_us", + "ingredients": [ + "dark corn syrup", + "egg yolks", + "peach preserves", + "peaches", + "butter", + "fresh lemon juice", + "firmly packed light brown sugar", + "large eggs", + "cake flour", + "cream sweeten whip", + "granulated sugar", + "vanilla extract", + "chopped pecans" + ] + }, + { + "id": 2287, + "cuisine": "indian", + "ingredients": [ + "ice cubes", + "yoghurt", + "sugar", + "mango" + ] + }, + { + "id": 23965, + "cuisine": "french", + "ingredients": [ + "black pepper", + "unsalted butter", + "vegetable oil", + "dry red wine", + "onions", + "figs", + "veal demi-glace", + "shallots", + "fresh tarragon", + "chopped walnuts", + "bread crumb fresh", + "mission figs", + "balsamic vinegar", + "chopped celery", + "celery ribs", + "quail", + "arrowroot", + "large garlic cloves", + "salt" + ] + }, + { + "id": 43175, + "cuisine": "italian", + "ingredients": [ + "chopped parsley", + "grated parmesan cheese", + "unsalted butter", + "Italian bread", + "garlic" + ] + }, + { + "id": 39160, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "veal cutlets", + "Burgundy wine", + "olive oil", + "all-purpose flour", + "pepper", + "butter", + "italian seasoning", + "eggs", + "grated parmesan cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 39027, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "chopped cilantro fresh", + "white corn", + "yellow corn", + "diced tomatoes", + "garlic powder", + "cream cheese" + ] + }, + { + "id": 28290, + "cuisine": "brazilian", + "ingredients": [ + "water", + "salt", + "dried oregano", + "tofu", + "paprika", + "red bell pepper", + "olive oil", + "carrots", + "ground cumin", + "black beans", + "garlic", + "onions" + ] + }, + { + "id": 14862, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "non-fat sour cream", + "peppercorns", + "tomatillos", + "bone-in chicken breasts", + "monterey jack", + "vegetable oil", + "salt", + "serrano chile", + "garlic", + "corn tortillas" + ] + }, + { + "id": 3615, + "cuisine": "mexican", + "ingredients": [ + "water", + "crushed red pepper", + "fresh lime juice", + "ground cumin", + "green onions", + "low salt chicken broth", + "boneless skinless chicken breast halves", + "olive oil", + "garlic cloves", + "bay leaf", + "stewed tomatoes", + "corn tortillas", + "chopped cilantro fresh" + ] + }, + { + "id": 22211, + "cuisine": "cajun_creole", + "ingredients": [ + "lower sodium chicken broth", + "andouille turkey sausages", + "yellow onion", + "canola oil", + "no-salt-added diced tomatoes", + "red pepper flakes", + "garlic cloves", + "green bell pepper", + "chicken breasts", + "wild rice", + "celery ribs", + "water", + "salt", + "thyme sprigs" + ] + }, + { + "id": 12645, + "cuisine": "italian", + "ingredients": [ + "water", + "yellow onion", + "red wine vinegar", + "dried oregano", + "chuck roast", + "freshly ground pepper", + "tomato paste", + "garlic" + ] + }, + { + "id": 2251, + "cuisine": "british", + "ingredients": [ + "milk", + "golden syrup", + "vanilla extract", + "self rising flour", + "white sugar", + "eggs", + "margarine" + ] + }, + { + "id": 43631, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "garlic", + "boneless skinless chicken breast halves", + "garbanzo beans", + "bay leaf", + "italian seasoning", + "crushed red pepper flakes", + "white sugar", + "olive oil", + "cayenne pepper", + "dried rosemary" + ] + }, + { + "id": 2066, + "cuisine": "russian", + "ingredients": [ + "powdered sugar", + "unsalted butter", + "apricot jam", + "large egg yolks", + "salt", + "grated lemon peel", + "ground cinnamon", + "lemon extract", + "all-purpose flour", + "sugar", + "large eggs", + "toast" + ] + }, + { + "id": 23686, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "bell pepper", + "chili powder", + "light cream cheese", + "corn", + "blue corn tortilla chips", + "salt", + "water", + "jalapeno chilies", + "cilantro", + "cumin", + "pepper jack", + "boneless skinless chicken breasts", + "salsa" + ] + }, + { + "id": 36348, + "cuisine": "southern_us", + "ingredients": [ + "baby back ribs", + "spices", + "sauce" + ] + }, + { + "id": 45125, + "cuisine": "irish", + "ingredients": [ + "ground cloves", + "ground allspice", + "ground cinnamon", + "cranberry juice cocktail", + "lemon juice", + "orange", + "orange juice", + "sugar", + "apple juice" + ] + }, + { + "id": 25605, + "cuisine": "jamaican", + "ingredients": [ + "lime", + "ginger", + "cayenne pepper", + "soy sauce", + "honey", + "purple onion", + "scallions", + "nutmeg", + "dried thyme", + "garlic", + "ground allspice", + "boneless chicken thighs", + "cinnamon", + "salt" + ] + }, + { + "id": 23872, + "cuisine": "greek", + "ingredients": [ + "zucchini", + "garlic cloves", + "dried oregano", + "plain low-fat yogurt", + "boneless skinless chicken breasts", + "lemon juice", + "cooking spray", + "fresh lemon juice", + "olive oil", + "salt", + "cucumber" + ] + }, + { + "id": 48578, + "cuisine": "french", + "ingredients": [ + "egg whites", + "chocolate morsels", + "cocoa", + "vanilla extract", + "cream of tartar", + "almond extract", + "superfine sugar", + "salt" + ] + }, + { + "id": 42626, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh oregano", + "fresh basil", + "littleneck clams", + "fresh parsley", + "fresh parmesan cheese", + "fresh lemon juice", + "black pepper", + "dry bread crumbs" + ] + }, + { + "id": 27939, + "cuisine": "southern_us", + "ingredients": [ + "muscadine grapes", + "water" + ] + }, + { + "id": 26235, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "vanilla extract", + "powdered sugar", + "whole milk", + "vanilla wafers", + "eggs", + "granulated sugar", + "salt", + "bananas", + "heavy cream", + "corn starch" + ] + }, + { + "id": 4690, + "cuisine": "moroccan", + "ingredients": [ + "lamb stew meat", + "ground allspice", + "chopped fresh mint", + "extra-virgin olive oil", + "couscous", + "apricot nectar", + "onions", + "lemon", + "carrots", + "ground cumin" + ] + }, + { + "id": 27368, + "cuisine": "filipino", + "ingredients": [ + "banana leaves", + "juice", + "pepper", + "salt", + "onions", + "pork", + "garlic", + "shrimp", + "coconut", + "coconut cream" + ] + }, + { + "id": 24268, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "jalapeno chilies", + "garlic", + "onions", + "green bell pepper", + "fresh ginger root", + "vegetable oil", + "carrots", + "fresh cilantro", + "unsalted cashews", + "salt", + "frozen peas", + "tomato sauce", + "potatoes", + "heavy cream", + "red bell pepper" + ] + }, + { + "id": 41619, + "cuisine": "mexican", + "ingredients": [ + "processed cheese", + "chili powder", + "chili" + ] + }, + { + "id": 38819, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "flank steak", + "chinese black vinegar", + "chinese rice wine", + "beef", + "oyster sauce", + "ground black pepper", + "broccoli", + "soy sauce", + "cooking oil", + "corn starch" + ] + }, + { + "id": 32858, + "cuisine": "italian", + "ingredients": [ + "processed cheese", + "sour cream", + "pasta sauce", + "pasta spiral", + "onions", + "part-skim mozzarella cheese", + "sliced mushrooms", + "garlic", + "ground beef" + ] + }, + { + "id": 33359, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "shallots", + "fresh lime juice", + "lemongrass", + "garlic chili sauce", + "chicken", + "water", + "garlic cloves", + "canola oil", + "fish sauce", + "ground black pepper", + "oyster sauce" + ] + }, + { + "id": 42331, + "cuisine": "russian", + "ingredients": [ + "schmaltz", + "onions", + "bread crumbs", + "russet potatoes", + "pepper", + "salt", + "eggs", + "baking powder" + ] + }, + { + "id": 22452, + "cuisine": "greek", + "ingredients": [ + "eggs", + "greek yogurt", + "sugar", + "baking powder", + "plain flour", + "salt" + ] + }, + { + "id": 4607, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "diced tomatoes", + "fresh parsley", + "dried basil", + "crushed red pepper", + "large shrimp", + "minced garlic", + "linguine", + "onions", + "olive oil", + "salt" + ] + }, + { + "id": 26810, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "ground black pepper", + "crushed red pepper flakes", + "olive oil", + "chopped fresh chives", + "bow-tie pasta", + "sun-dried tomatoes", + "diced tomatoes", + "goat cheese", + "minced garlic", + "sliced black olives", + "salt" + ] + }, + { + "id": 47155, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cooked rigatoni", + "pork roast", + "fresh basil", + "ground sirloin", + "chopped onion", + "water", + "dry red wine", + "crushed tomatoes", + "salt" + ] + }, + { + "id": 26703, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "large eggs", + "all-purpose flour", + "crystallized ginger", + "vanilla extract", + "semi-sweet chocolate morsels", + "vegetable oil spray", + "coffee", + "coffee beans", + "pecans", + "unsalted butter", + "salt", + "unsweetened cocoa powder" + ] + }, + { + "id": 22496, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "paprika", + "ground black pepper", + "dried oregano", + "garlic powder", + "cayenne pepper", + "dried basil", + "onion powder" + ] + }, + { + "id": 31770, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "salsa", + "boneless skinless chicken breasts", + "taco seasoning", + "lettuce leaves", + "yellow onion", + "salt" + ] + }, + { + "id": 25624, + "cuisine": "filipino", + "ingredients": [ + "black pepper", + "ground pork", + "wine", + "cane vinegar", + "purple onion", + "brown sugar", + "msg", + "garlic", + "soy sauce", + "paprika", + "corn starch" + ] + }, + { + "id": 31768, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil", + "beef liver", + "grits", + "pepper", + "salt", + "bay leaf", + "green bell pepper", + "diced tomatoes", + "garlic cloves", + "dried thyme", + "all-purpose flour", + "onions" + ] + }, + { + "id": 17043, + "cuisine": "italian", + "ingredients": [ + "water", + "purple onion", + "plum tomatoes", + "olive oil", + "frozen corn kernels", + "watercress leaves", + "salt", + "yellow corn meal", + "balsamic vinegar", + "crumbled gorgonzola" + ] + }, + { + "id": 36190, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "chocolate", + "evaporated milk", + "water", + "condensed milk", + "egg yolks" + ] + }, + { + "id": 29796, + "cuisine": "greek", + "ingredients": [ + "hummus", + "extra-virgin olive oil", + "dried oregano", + "fresh lemon juice" + ] + }, + { + "id": 48725, + "cuisine": "spanish", + "ingredients": [ + "chicken legs", + "bay leaves", + "extra-virgin olive oil", + "smoked paprika", + "black pepper", + "dry white wine", + "spanish chorizo", + "green olives", + "golden raisins", + "salt", + "onions", + "reduced sodium chicken broth", + "large garlic cloves", + "pizza doughs" + ] + }, + { + "id": 24562, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "sesame oil", + "king prawns", + "garlic paste", + "caster sugar", + "cilantro leaves", + "tomato purée", + "cider vinegar", + "salt", + "sweet chili sauce", + "spring onions", + "oil" + ] + }, + { + "id": 47433, + "cuisine": "southern_us", + "ingredients": [ + "fat-free buttermilk", + "chicken drumsticks", + "grated parmesan cheese", + "salt", + "vegetable oil cooking spray", + "ground red pepper", + "ground black pepper", + "cornflake cereal" + ] + }, + { + "id": 343, + "cuisine": "british", + "ingredients": [ + "fresh dill", + "lemon", + "juice", + "baking powder", + "beer", + "fish", + "soy sauce", + "all-purpose flour", + "corn starch", + "coarse salt", + "freshly ground pepper", + "canola oil" + ] + }, + { + "id": 11510, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "salt", + "pepper", + "cajun seasoning", + "long-grain rice", + "red kidney beans", + "chopped green bell pepper", + "chopped onion", + "water", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 18357, + "cuisine": "mexican", + "ingredients": [ + "tortillas", + "vegetable oil", + "salt", + "sour cream", + "ground cumin", + "black beans", + "yoghurt", + "cheese", + "salsa", + "dried oregano", + "red chili powder", + "large eggs", + "cilantro", + "all-purpose flour", + "chèvre", + "garlic powder", + "spring onions", + "garlic", + "enchilada sauce", + "chicken" + ] + }, + { + "id": 26246, + "cuisine": "french", + "ingredients": [ + "swiss cheese", + "beef broth", + "pepper", + "heavy cream", + "onions", + "butter", + "provolone cheese", + "french bread", + "salt" + ] + }, + { + "id": 6790, + "cuisine": "indian", + "ingredients": [ + "chunky peanut butter", + "garlic", + "coconut milk", + "water", + "sunflower oil", + "yellow onion", + "basmati rice", + "sweet potatoes", + "salt", + "butter beans", + "amchur", + "paprika", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 27566, + "cuisine": "mexican", + "ingredients": [ + "manchego cheese", + "empanada", + "jalapeno chilies", + "garlic salt", + "2 1/2 to 3 lb. chicken, cut into serving pieces", + "hellmann' or best food real mayonnais", + "vegetable oil", + "sliced green onions" + ] + }, + { + "id": 35778, + "cuisine": "chinese", + "ingredients": [ + "vegetables", + "salt", + "celery", + "savory", + "carrots", + "Shaoxing wine", + "peanut oil", + "sugar", + "sesame oil", + "ground white pepper" + ] + }, + { + "id": 42098, + "cuisine": "japanese", + "ingredients": [ + "brown sugar", + "fresh cilantro", + "vegetable oil", + "cumin", + "low sodium soy sauce", + "lime juice", + "chili powder", + "coriander", + "tumeric", + "lime", + "creamy peanut butter", + "water", + "marinade", + "onions" + ] + }, + { + "id": 19528, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "chili powder", + "brown sugar", + "pork ribs", + "rub", + "garlic powder", + "onion powder", + "black pepper", + "chips" + ] + }, + { + "id": 19599, + "cuisine": "british", + "ingredients": [ + "flour", + "drippings", + "roast beef", + "ground pepper", + "garlic cloves" + ] + }, + { + "id": 20786, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "freshly ground pepper", + "kalamata", + "feta cheese crumbles", + "lemon", + "english cucumber", + "tomatoes", + "purple onion", + "dried oregano" + ] + }, + { + "id": 9697, + "cuisine": "filipino", + "ingredients": [ + "water", + "ginger", + "cubed beef", + "ground black pepper", + "star anise", + "onions", + "sugar", + "beef", + "garlic", + "soy sauce", + "cooking oil", + "scallions" + ] + }, + { + "id": 35638, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "olive oil", + "cream cheese", + "bread crumb fresh", + "garlic", + "onions", + "tomato purée", + "ground black pepper", + "fresh parsley", + "smoked bacon", + "jumbo pasta shells", + "buffalo mozzarella" + ] + }, + { + "id": 43643, + "cuisine": "irish", + "ingredients": [ + "caraway seeds", + "unsalted butter", + "salt", + "dried currants", + "baking powder", + "sugar", + "large eggs", + "all-purpose flour", + "baking soda", + "buttermilk" + ] + }, + { + "id": 49364, + "cuisine": "french", + "ingredients": [ + "quick oats", + "frozen mixed berries", + "vanilla sugar", + "vanilla", + "flour", + "apples", + "brown sugar", + "butter" + ] + }, + { + "id": 47332, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "soft taco size flour tortillas", + "shredded pepper jack cheese", + "chicken" + ] + }, + { + "id": 12781, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "parsley", + "garlic", + "corn tortillas", + "cabbage", + "black pepper", + "Mexican oregano", + "cilantro", + "beef rib short", + "cumin", + "olive oil", + "red wine vinegar", + "crema", + "onions", + "pico de gallo", + "jalapeno chilies", + "red pepper flakes", + "salt", + "garlic salt" + ] + }, + { + "id": 33314, + "cuisine": "mexican", + "ingredients": [ + "low-fat sour cream", + "flour tortillas", + "garlic", + "ground turkey", + "pepper", + "vegetable oil", + "salt", + "Heinz Chili Sauce", + "shredded lettuce", + "tomato ketchup", + "cheddar cheese", + "chili powder", + "sweet pepper", + "onions" + ] + }, + { + "id": 48814, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "soup", + "Vietnamese coriander", + "scallions", + "boneless chicken skinless thigh", + "salt", + "small yellow onion", + "canola oil" + ] + }, + { + "id": 35299, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "large egg whites", + "parmigiano reggiano cheese", + "shallots", + "salt", + "minced garlic", + "swiss chard", + "cooking spray", + "extra-virgin olive oil", + "red bell pepper", + "fontina cheese", + "water", + "ground black pepper", + "baking powder", + "part-skim ricotta cheese", + "kosher salt", + "fat free milk", + "large eggs", + "chopped fresh thyme", + "all-purpose flour" + ] + }, + { + "id": 39129, + "cuisine": "mexican", + "ingredients": [ + "broccolini", + "kosher salt", + "butter", + "lime", + "pepper", + "ancho powder" + ] + }, + { + "id": 15688, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "black pepper", + "peeled diced tomatoes", + "cajun seasoning", + "okra", + "fresh corn", + "dried thyme", + "flour", + "salt", + "cooked rice", + "gumbo file powder", + "chopped green bell pepper", + "garlic", + "celery", + "andouille sausage", + "olive oil", + "bay leaves", + "chopped onion" + ] + }, + { + "id": 44262, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "olive oil", + "chili powder", + "yellow onion", + "dried oregano", + "fresh cilantro", + "pace picante sauce", + "garlic", + "smoked paprika", + "ground cumin", + "black beans", + "jalapeno chilies", + "diced tomatoes", + "tortilla chips", + "monterey jack", + "chicken broth", + "corn", + "chicken breast halves", + "salt", + "red bell pepper" + ] + }, + { + "id": 3749, + "cuisine": "italian", + "ingredients": [ + "capers", + "grated parmesan cheese", + "anchovy fillets", + "olive oil", + "diced tomatoes", + "whole wheat angel hair pasta", + "sliced black olives", + "garlic", + "kale", + "red pepper flakes", + "onions" + ] + }, + { + "id": 38300, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "chicken breasts", + "seasoning salt", + "cheese", + "pepper", + "butter", + "quickcooking grits" + ] + }, + { + "id": 44142, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "olive oil", + "grated parmesan cheese", + "freshly ground pepper", + "chopped leaves", + "sherry vinegar", + "orzo", + "fontina cheese", + "red swiss chard", + "shallots", + "water", + "unsalted butter", + "salt" + ] + }, + { + "id": 49606, + "cuisine": "mexican", + "ingredients": [ + "sliced black olives", + "taco seasoning", + "cheddar cheese", + "green onions", + "sour cream", + "tomatoes", + "flour tortillas", + "enchilada sauce", + "refried beans", + "lean ground beef" + ] + }, + { + "id": 22729, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "Anaheim chile", + "whole kernel corn, drain", + "onions", + "olive oil", + "raisins", + "ripe olives", + "water", + "lean ground beef", + "sharp cheddar cheese", + "cumin", + "chile powder", + "cornbread mix", + "salt", + "roasted tomatoes" + ] + }, + { + "id": 45959, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "sugar", + "shredded sharp cheddar cheese", + "diced pimentos", + "buttermilk", + "self rising flour", + "salt" + ] + }, + { + "id": 16421, + "cuisine": "thai", + "ingredients": [ + "smooth natural peanut butter", + "whole wheat spaghetti", + "red bell pepper", + "reduced sodium soy sauce", + "salt", + "chopped cilantro fresh", + "fresh ginger", + "kohlrabi", + "toasted sesame oil", + "frozen edamame beans", + "shallots", + "yellow curry paste" + ] + }, + { + "id": 8913, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "unsalted butter", + "scallions", + "onions", + "fish sauce", + "silken tofu", + "ginger", + "kimchi", + "pork belly", + "red pepper flakes", + "garlic cloves", + "kimchi juice", + "water", + "Gochujang base", + "toasted sesame oil" + ] + }, + { + "id": 33001, + "cuisine": "indian", + "ingredients": [ + "water", + "oil", + "semolina", + "cardamom", + "Nido Milk Powder", + "sugar", + "teas" + ] + }, + { + "id": 33622, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "beef broth", + "brandy", + "swiss cheese", + "chopped ham", + "dry white wine", + "onions", + "baguette", + "butter" + ] + }, + { + "id": 44995, + "cuisine": "southern_us", + "ingredients": [ + "lime", + "vanilla extract", + "powdered sugar", + "cream cheese, soften", + "whipped cream" + ] + }, + { + "id": 32408, + "cuisine": "jamaican", + "ingredients": [ + "fresh ginger", + "vegetable stock", + "onions", + "lemongrass", + "jalapeno chilies", + "salt", + "pepper", + "potatoes", + "curry", + "olive oil", + "pumpkin", + "coconut milk" + ] + }, + { + "id": 20107, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "butter", + "seasoning salt", + "flour", + "sherry wine", + "marsala wine", + "boneless chicken breast", + "black", + "olive oil", + "mushrooms", + "oregano" + ] + }, + { + "id": 15644, + "cuisine": "italian", + "ingredients": [ + "sugar", + "riesling", + "sweet cherries", + "large egg yolks", + "water" + ] + }, + { + "id": 26388, + "cuisine": "indian", + "ingredients": [ + "chili pepper", + "cucumber", + "tomatoes", + "cilantro", + "sea salt", + "masala", + "plain yogurt", + "cumin seed" + ] + }, + { + "id": 20399, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "cracked black pepper", + "milk", + "salt", + "fettucine", + "garlic", + "olive oil", + "ricotta" + ] + }, + { + "id": 37715, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "linguine", + "pepper", + "crushed red pepper", + "large garlic cloves", + "fresh parsley" + ] + }, + { + "id": 2222, + "cuisine": "japanese", + "ingredients": [ + "pepper", + "mirin", + "ramen noodles", + "scallions", + "toasted sesame oil", + "onions", + "chicken wings", + "vegetables", + "leeks", + "salt", + "konbu", + "pork shoulder", + "low sodium soy sauce", + "water", + "bonito flakes", + "garlic", + "oil", + "celery", + "sake", + "pork spare ribs", + "shichimi togarashi", + "soft-boiled egg", + "carrots", + "chicken base" + ] + }, + { + "id": 28331, + "cuisine": "french", + "ingredients": [ + "baguette", + "purple onion", + "fresh lemon juice", + "fresh basil", + "large eggs", + "tuna packed in olive oil", + "kosher salt", + "extra-virgin olive oil", + "garlic cloves", + "ground black pepper", + "Niçoise olives", + "plum tomatoes" + ] + }, + { + "id": 33432, + "cuisine": "russian", + "ingredients": [ + "water", + "scallions", + "new potatoes", + "sorrel", + "salt", + "radishes", + "sour cream" + ] + }, + { + "id": 13381, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "fat free milk", + "salt", + "shredded Monterey Jack cheese", + "large egg whites", + "large eggs", + "baked tortilla chips", + "olive oil", + "cooking spray", + "chopped cilantro fresh", + "refried beans", + "green chile sauce", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 46212, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "olive oil", + "garlic", + "frozen peas", + "kosher salt", + "roma tomatoes", + "carrots", + "cumin", + "tomato sauce", + "ground black pepper", + "cilantro leaves", + "basmati rice", + "corn kernels", + "chili powder", + "onions" + ] + }, + { + "id": 36527, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vegetable oil", + "celery seed", + "sweet onion", + "salt", + "cider vinegar", + "dry mustard", + "cabbage", + "bell pepper", + "carrots" + ] + }, + { + "id": 43080, + "cuisine": "french", + "ingredients": [ + "vanilla ice cream", + "large egg yolks", + "bittersweet chocolate", + "brandy", + "granulated sugar", + "large egg whites", + "whole milk", + "sugar", + "unsalted butter" + ] + }, + { + "id": 47949, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "yellow peas", + "garlic cloves", + "pepper", + "salt", + "onions", + "moong dal", + "ginger", + "ghee", + "water", + "cumin seed" + ] + }, + { + "id": 36197, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "garlic", + "dried red chile peppers", + "demerara sugar", + "cinnamon", + "cardamom pods", + "clove", + "vinegar", + "salt", + "mango", + "water", + "ginger", + "cumin seed" + ] + }, + { + "id": 904, + "cuisine": "chinese", + "ingredients": [ + "garam masala", + "lemon", + "green chilies", + "onions", + "butter lettuce", + "basil leaves", + "ginger", + "garlic cloves", + "ground turmeric", + "grated coconut", + "chili powder", + "salt", + "greek yogurt", + "plum tomatoes", + "tomatoes", + "extra firm tofu", + "cilantro", + "oil", + "coriander" + ] + }, + { + "id": 38994, + "cuisine": "greek", + "ingredients": [ + "lemon", + "feta cheese crumbles", + "garbanzo beans", + "black olives", + "salad dressing", + "cherry tomatoes", + "garlic", + "cucumber", + "ground black pepper", + "purple onion", + "garlic salt" + ] + }, + { + "id": 12885, + "cuisine": "brazilian", + "ingredients": [ + "tangerine", + "cachaca", + "sugar", + "fresh lime" + ] + }, + { + "id": 10469, + "cuisine": "vietnamese", + "ingredients": [ + "mayonaise", + "french style sandwich rolls", + "vegetable oil", + "garlic", + "carrots", + "pepper", + "flank steak", + "red pepper", + "rice vinegar", + "soy sauce", + "granulated sugar", + "daikon", + "salt", + "fish sauce", + "liverwurst", + "sesame oil", + "cilantro sprigs", + "english cucumber" + ] + }, + { + "id": 3188, + "cuisine": "moroccan", + "ingredients": [ + "mint", + "eggplant", + "pitted green olives", + "bulgur", + "greek yogurt", + "sliced almonds", + "golden raisins", + "garlic", + "ground coriander", + "ground cumin", + "warm water", + "lemon peel", + "cilantro", + "sweet paprika", + "boiling water", + "chili flakes", + "olive oil", + "green onions", + "salt", + "lemon juice" + ] + }, + { + "id": 18294, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "vegetable oil", + "cooked turkey", + "sour cream", + "red chile sauce", + "chees fresco queso", + "lime wedges", + "corn tortillas" + ] + }, + { + "id": 47516, + "cuisine": "mexican", + "ingredients": [ + "fresh corn", + "large eggs", + "sea salt", + "smoked paprika", + "cold water", + "milk", + "green onions", + "salt", + "sugar", + "flour", + "garlic", + "mustard", + "olive oil", + "butter", + "lemon juice" + ] + }, + { + "id": 25702, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "bow-tie pasta", + "olive oil", + "portabello mushroom", + "red wine vinegar", + "red bell pepper", + "parmesan cheese", + "garlic" + ] + }, + { + "id": 7615, + "cuisine": "korean", + "ingredients": [ + "eggs", + "salt", + "carrots", + "spring onions" + ] + }, + { + "id": 45588, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "butter", + "boneless skinless chicken breasts", + "monterey jack", + "grated parmesan cheese", + "salt", + "seasoned bread crumbs", + "chile pepper", + "ground cumin" + ] + }, + { + "id": 28493, + "cuisine": "thai", + "ingredients": [ + "thai basil", + "salt", + "lemon", + "granulated sugar", + "orange", + "buttermilk" + ] + }, + { + "id": 40415, + "cuisine": "vietnamese", + "ingredients": [ + "lime wedges", + "serrano chile", + "white pepper", + "coarse salt" + ] + }, + { + "id": 33271, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "chicken breasts", + "greek yogurt", + "pepper", + "salt", + "ground cumin", + "black beans", + "chili powder", + "cooked quinoa", + "fresh spinach", + "cherry tomatoes", + "greek style plain yogurt" + ] + }, + { + "id": 4089, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "sour cream", + "colby cheese", + "jalapeno chilies", + "sliced black olives", + "black beans", + "salsa" + ] + }, + { + "id": 41947, + "cuisine": "italian", + "ingredients": [ + "eggs", + "veal", + "butter", + "salt", + "pepper", + "mushrooms", + "garlic", + "fresh basil", + "grated parmesan cheese", + "extra-virgin olive oil", + "medium zucchini", + "fresh rosemary", + "finely chopped onion", + "dry white wine", + "chopped celery" + ] + }, + { + "id": 38909, + "cuisine": "southern_us", + "ingredients": [ + "baby back ribs", + "seasoning", + "dry rub", + "glaze" + ] + }, + { + "id": 10233, + "cuisine": "chinese", + "ingredients": [ + "water", + "white vinegar", + "corn starch", + "pineapple", + "tomato paste", + "white sugar" + ] + }, + { + "id": 4790, + "cuisine": "irish", + "ingredients": [ + "whole wheat flour", + "salt", + "light molasses", + "salad oil", + "baking soda", + "all-purpose flour", + "buttermilk" + ] + }, + { + "id": 27486, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "milk", + "salt", + "lemon juice", + "green bell pepper", + "quickcooking grits", + "creole seasoning", + "bay leaf", + "tomato paste", + "unsalted butter", + "all-purpose flour", + "shrimp", + "water", + "worcestershire sauce", + "garlic cloves", + "onions" + ] + }, + { + "id": 13817, + "cuisine": "mexican", + "ingredients": [ + "salt", + "olive oil", + "chopped cilantro", + "pepper", + "fresh lime juice", + "avocado", + "salsa" + ] + }, + { + "id": 33690, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "fresh oregano", + "onions", + "ground pepper", + "fresh lemon juice", + "olive oil", + "garlic cloves", + "liquid honey", + "grated lemon zest", + "baby back ribs" + ] + }, + { + "id": 32294, + "cuisine": "chinese", + "ingredients": [ + "teriyaki sauce", + "stewing beef", + "pineapple" + ] + }, + { + "id": 46247, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "chicken", + "extra-virgin olive oil", + "grated parmesan cheese", + "fresh spinach", + "garlic" + ] + }, + { + "id": 11673, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "soy sauce", + "salt", + "hot water", + "eggs", + "ground black pepper", + "sauce", + "beansprouts", + "sugar", + "chicken breasts", + "minced beef", + "celery", + "cold water", + "pork", + "cornflour", + "fresh mushrooms", + "onions" + ] + }, + { + "id": 19631, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "pepper", + "flour tortillas", + "all-purpose flour", + "cumin", + "white onion", + "garlic powder", + "vegetable oil", + "ground beef", + "black beans", + "fresh cilantro", + "chili powder", + "freshly ground pepper", + "chicken stock", + "kosher salt", + "Mexican cheese blend", + "salt", + "oregano" + ] + }, + { + "id": 29713, + "cuisine": "mexican", + "ingredients": [ + "part-skim mozzarella cheese", + "chili powder", + "enchilada sauce", + "black beans", + "nonfat greek yogurt", + "frozen corn", + "shredded Monterey Jack cheese", + "diced green chilies", + "cilantro", + "cumin", + "kosher salt", + "green onions", + "low-fat cream cheese" + ] + }, + { + "id": 30803, + "cuisine": "mexican", + "ingredients": [ + "diced onions", + "boneless chicken skinless thigh", + "radishes", + "yellow onion", + "sour cream", + "chicken stock", + "pepper", + "vegetable oil", + "garlic cloves", + "chopped cilantro fresh", + "avocado", + "kosher salt", + "lime wedges", + "cumin seed", + "chopped cilantro", + "cotija", + "hominy", + "tomatillos", + "pepitas", + "dried oregano" + ] + }, + { + "id": 17817, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "shredded cheddar cheese", + "ground black pepper", + "chicken breasts", + "cayenne pepper", + "sugar", + "water", + "tortillas", + "tomato salsa", + "long grain white rice", + "fresh spinach", + "minced garlic", + "unsalted butter", + "red wine vinegar", + "chopped cilantro", + "pepper", + "fresh lime", + "green onions", + "salt", + "dried oregano" + ] + }, + { + "id": 1352, + "cuisine": "mexican", + "ingredients": [ + "cooked turkey", + "salsa", + "shredded sharp cheddar cheese", + "corn tortillas", + "vegetable oil", + "sour cream", + "salt" + ] + }, + { + "id": 38078, + "cuisine": "italian", + "ingredients": [ + "salt", + "parsley", + "olive oil", + "grated lemon peel", + "pepper", + "garlic cloves" + ] + }, + { + "id": 25352, + "cuisine": "indian", + "ingredients": [ + "cherry tomatoes", + "yellow bell pepper", + "leg of lamb", + "fat free yogurt", + "cooking spray", + "garlic cloves", + "couscous", + "brown sugar", + "olive oil", + "salt", + "cucumber", + "curry powder", + "ground red pepper", + "lemon juice", + "chopped fresh mint" + ] + }, + { + "id": 23952, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "salsa", + "sour cream", + "black beans", + "salt", + "garlic cloves", + "ground cumin", + "shredded cheddar cheese", + "frozen corn", + "red bell pepper", + "olive oil", + "shredded zucchini", + "corn tortillas" + ] + }, + { + "id": 2179, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "boneless skinless chicken breasts", + "frozen peas and carrots", + "gluten free soy sauce", + "eggs", + "pepper", + "salt", + "onions", + "white vinegar", + "ketchup", + "sesame oil", + "cooked white rice", + "canola oil", + "sugar", + "minced garlic", + "corn starch", + "garlic salt" + ] + }, + { + "id": 34377, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "flour", + "fish fillets", + "salt", + "pico de gallo", + "vegetable oil", + "ground black pepper", + "salsa" + ] + }, + { + "id": 3259, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "garlic", + "Shaoxing wine", + "oil", + "light soy sauce", + "coca-cola", + "chicken wings", + "ginger" + ] + }, + { + "id": 21198, + "cuisine": "french", + "ingredients": [ + "Kitchen Bouquet", + "orange", + "flour", + "beaten eggs", + "fat", + "onions", + "grated orange peel", + "white wine", + "potatoes", + "lemon", + "curaçao", + "bay leaf", + "sugar", + "light cream", + "egg yolks", + "duck", + "carrots", + "chicken", + "bread crumbs", + "vinegar", + "butter", + "cognac", + "thyme" + ] + }, + { + "id": 46869, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "fish sauce", + "garlic", + "sugar", + "rice vinegar", + "crushed red pepper flakes" + ] + }, + { + "id": 47331, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "white onion", + "white cabbage", + "salt", + "ancho chile pepper", + "avocado", + "snappers", + "lime", + "lemon", + "garlic cloves", + "pasilla chiles", + "pepper", + "flour tortillas", + "orange juice", + "chayotes", + "tomato sauce", + "guajillo chiles", + "olive oil", + "achiote paste", + "carrots" + ] + }, + { + "id": 26836, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "cayenne pepper", + "black pepper", + "paprika", + "dried oregano", + "sea salt", + "onions", + "white pepper", + "garlic" + ] + }, + { + "id": 31207, + "cuisine": "italian", + "ingredients": [ + "egg noodles", + "pepperoni slices", + "sliced mushrooms", + "pasta sauce", + "shredded mozzarella cheese", + "sliced black olives", + "ground beef" + ] + }, + { + "id": 34038, + "cuisine": "italian", + "ingredients": [ + "clams", + "sea scallops", + "dry white wine", + "squid", + "plum tomatoes", + "olive oil", + "parmigiano reggiano cheese", + "salt", + "carnaroli rice", + "mussels", + "ground black pepper", + "fish stock", + "flat leaf parsley", + "chopped garlic", + "brandy", + "unsalted butter", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 1789, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "pork shoulder", + "orange", + "garlic", + "dried oregano", + "chili powder", + "onions", + "lime", + "salt", + "ground cumin" + ] + }, + { + "id": 40526, + "cuisine": "jamaican", + "ingredients": [ + "tomato paste", + "brown sugar", + "olive oil", + "white wine vinegar", + "chicken thighs", + "nutmeg", + "lime juice", + "hot pepper", + "ground allspice", + "plain flour", + "pepper", + "spring onions", + "salt", + "chicken stock", + "ground cinnamon", + "dried thyme", + "butter", + "garlic cloves" + ] + }, + { + "id": 16103, + "cuisine": "russian", + "ingredients": [ + "green onions", + "salt", + "ground black pepper", + "cilantro", + "milk", + "parsley", + "ground beef", + "tortillas", + "ground pork" + ] + }, + { + "id": 26253, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "flank steak", + "beer", + "onions", + "green bell pepper", + "flour tortillas", + "chili powder", + "red bell pepper", + "ground cumin", + "black pepper", + "cooking spray", + "salt", + "fresh lime juice", + "tomatoes", + "olive oil", + "chicken breasts", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 11668, + "cuisine": "russian", + "ingredients": [ + "tomato sauce", + "confit duck leg", + "onions", + "fresh dill", + "pickled beets", + "mixed greens", + "clove", + "reduced sodium beef broth", + "salt", + "caraway seeds", + "black pepper", + "beets" + ] + }, + { + "id": 41435, + "cuisine": "italian", + "ingredients": [ + "grated orange peel", + "vanilla extract", + "coffee", + "sugar", + "sambuca" + ] + }, + { + "id": 35645, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "baking powder", + "salt", + "large eggs", + "buttermilk", + "sugar", + "golden raisins", + "currant", + "unsalted butter", + "all purpose unbleached flour" + ] + }, + { + "id": 33196, + "cuisine": "greek", + "ingredients": [ + "savory", + "ground allspice", + "ground cumin", + "bread", + "garlic", + "onions", + "lean ground beef", + "ground coriander", + "ground black pepper", + "salt", + "ground lamb" + ] + }, + { + "id": 25762, + "cuisine": "japanese", + "ingredients": [ + "salt", + "lemon juice", + "canola oil", + "fresh ginger", + "scallions", + "onions", + "freshly ground pepper", + "carrots", + "reduced sodium soy sauce", + "red radishes", + "boneless sirloin steak" + ] + }, + { + "id": 39882, + "cuisine": "italian", + "ingredients": [ + "tortellini, cook and drain", + "shallots", + "white wine", + "grated parmesan cheese", + "garlic", + "fresh basil", + "ground pepper", + "butter", + "cream", + "flour" + ] + }, + { + "id": 41582, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "salt", + "elbow macaroni", + "cheddar cheese", + "pecorino romano cheese", + "grated nutmeg", + "white bread", + "unsalted butter", + "all-purpose flour", + "milk", + "gruyere cheese", + "cayenne pepper" + ] + }, + { + "id": 13670, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "corn starch", + "butter", + "sugar", + "juice", + "egg yolks" + ] + }, + { + "id": 22413, + "cuisine": "mexican", + "ingredients": [ + "ground chipotle chile pepper", + "bell pepper", + "red pepper flakes", + "oregano", + "olive oil", + "brown rice", + "salt", + "black beans", + "jalapeno chilies", + "garlic", + "cumin", + "poblano peppers", + "chili powder", + "onions" + ] + }, + { + "id": 33787, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "hot sauce", + "quickcooking grits", + "half & half", + "cream cheese", + "pepper", + "salt" + ] + }, + { + "id": 29620, + "cuisine": "mexican", + "ingredients": [ + "parsley sprigs", + "radishes", + "sea salt", + "pozole", + "chicken stock", + "white onion", + "tomatillos", + "garlic cloves", + "canola oil", + "boneless pork shoulder", + "pork", + "shredded cabbage", + "romaine lettuce leaves", + "dried oregano", + "serrano chilies", + "lime", + "epazote", + "green pumpkin seeds" + ] + }, + { + "id": 10788, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "fresh cilantro", + "garlic", + "scallions", + "fresh mint", + "black pepper", + "sesame oil", + "dark brown sugar", + "nuoc cham", + "molasses", + "do chua", + "spring rolls", + "mixed greens", + "fish sauce", + "dry roasted peanuts", + "rice vermicelli", + "english cucumber", + "pork loin chops" + ] + }, + { + "id": 487, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "all-purpose flour", + "baking soda", + "buttermilk", + "sharp cheddar cheese", + "garlic powder", + "baking powder", + "cayenne pepper", + "unsalted butter", + "salt", + "fresh parsley" + ] + }, + { + "id": 43749, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cilantro", + "chinese black vinegar", + "coconut sugar", + "shallots", + "all-purpose flour", + "black garlic", + "spices", + "scallions", + "sushi rice", + "ground pork" + ] + }, + { + "id": 14773, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "flour for dusting", + "all-purpose flour" + ] + }, + { + "id": 42979, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "unsalted butter", + "fusilli", + "chopped onion", + "tomato sauce", + "part-skim mozzarella cheese", + "cooking spray", + "all-purpose flour", + "fresh parsley", + "black pepper", + "ground nutmeg", + "mushrooms", + "fresh oregano", + "olive oil", + "large eggs", + "1% low-fat milk", + "garlic cloves" + ] + }, + { + "id": 35805, + "cuisine": "mexican", + "ingredients": [ + "whipping heavy cream", + "garlic salt", + "roast", + "roast red peppers, drain", + "Best Food's Mayonnaise with Lime Juice", + "chopped cilantro fresh", + "vegetable oil", + "onions" + ] + }, + { + "id": 12530, + "cuisine": "filipino", + "ingredients": [ + "chili pepper", + "roma tomatoes", + "salt", + "tamarind", + "shallots", + "coconut milk", + "leaves", + "ginger", + "pepper", + "pandanus leaf", + "tilapia" + ] + }, + { + "id": 14265, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "coconut milk", + "onions", + "mushrooms", + "fresh lime juice", + "fish sauce", + "cilantro", + "galangal", + "cherry tomatoes", + "lime leaves", + "chicken thighs" + ] + }, + { + "id": 40686, + "cuisine": "mexican", + "ingredients": [ + "butter", + "milk", + "all-purpose flour", + "shoepeg corn", + "jalapeno chilies", + "cream cheese" + ] + }, + { + "id": 41565, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "cilantro", + "jalapeno chilies", + "pumpkin seeds", + "water", + "garlic", + "chicken stock", + "tomatillos", + "lard" + ] + }, + { + "id": 28121, + "cuisine": "italian", + "ingredients": [ + "boneless skinless chicken breasts", + "Good Seasons Italian Dressing Mix", + "garlic powder", + "grated parmesan cheese" + ] + }, + { + "id": 12228, + "cuisine": "cajun_creole", + "ingredients": [ + "ground chuck", + "ground black pepper", + "mortadella", + "capers", + "kosher salt", + "extra-virgin olive oil", + "giardiniera", + "pepperoni slices", + "red wine vinegar", + "provolone cheese", + "burger buns", + "capicola", + "black olives" + ] + }, + { + "id": 37038, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "paprika", + "onion powder", + "dried oregano", + "chili powder", + "crushed red pepper flakes", + "black pepper", + "sea salt", + "ground cumin" + ] + }, + { + "id": 8219, + "cuisine": "southern_us", + "ingredients": [ + "cool whip", + "Nilla Wafers", + "mini marshmallows", + "bananas", + "vanilla instant pudding" + ] + }, + { + "id": 44248, + "cuisine": "southern_us", + "ingredients": [ + "vinegar", + "collard greens", + "salt", + "bacon", + "ground black pepper", + "ground cayenne pepper" + ] + }, + { + "id": 14127, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "Thai red curry paste", + "sesame chili oil", + "water", + "creamy peanut butter", + "apple cider vinegar", + "coconut milk", + "Swerve Sweetener", + "salt" + ] + }, + { + "id": 12909, + "cuisine": "moroccan", + "ingredients": [ + "water", + "yukon gold potatoes", + "yellow onion", + "apricots", + "pita bread", + "ground black pepper", + "salt", + "fresh parsley", + "ground cinnamon", + "dried cherry", + "vegetable broth", + "carrots", + "ground cumin", + "ground ginger", + "olive oil", + "large garlic cloves", + "ground coriander", + "canola oil" + ] + }, + { + "id": 26958, + "cuisine": "french", + "ingredients": [ + "butter", + "pie dough", + "fresh lemon juice", + "sugar", + "vanilla extract", + "water", + "nectarines" + ] + }, + { + "id": 42300, + "cuisine": "spanish", + "ingredients": [ + "egg yolks", + "cinnamon sticks", + "heavy cream", + "lemon", + "sugar", + "vanilla extract" + ] + }, + { + "id": 34719, + "cuisine": "southern_us", + "ingredients": [ + "sage leaves", + "olive oil", + "fryer chickens", + "fresh rosemary", + "fresh shiitake mushrooms", + "chopped garlic", + "pancetta", + "beef stock", + "whipping cream", + "chicken stock", + "dry white wine", + "grits" + ] + }, + { + "id": 49322, + "cuisine": "filipino", + "ingredients": [ + "olive oil", + "garlic", + "bay leaves", + "ground black pepper", + "chicken", + "soy sauce", + "apple cider vinegar" + ] + }, + { + "id": 39656, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "chives", + "fresh basil", + "cannelloni shells", + "garlic salt", + "frozen chopped spinach", + "pepper", + "shredded mozzarella cheese", + "pepper sauce", + "cooked chicken" + ] + }, + { + "id": 3746, + "cuisine": "italian", + "ingredients": [ + "salt", + "crusty bread", + "fresh basil leaves", + "extra-virgin olive oil", + "tomatoes", + "garlic cloves" + ] + }, + { + "id": 26507, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "yellow onion", + "ground beef", + "fresh spinach", + "cheese", + "taco seasoning", + "water", + "tortilla chips", + "Velveeta", + "salsa", + "sour cream" + ] + }, + { + "id": 40000, + "cuisine": "thai", + "ingredients": [ + "fresh red chili", + "soy sauce", + "asparagus", + "rice noodles", + "garlic", + "chicken thighs", + "fish sauce", + "lime", + "spring onions", + "ginger", + "peanut butter", + "five spice", + "fresh coriander", + "butternut squash", + "vegetable stock", + "runny honey", + "tumeric", + "sesame seeds", + "sesame oil", + "light coconut milk", + "lime leaves" + ] + }, + { + "id": 10323, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "cannellini beans", + "juice", + "celery ribs", + "swiss chard", + "purple onion", + "hot water", + "pancetta", + "tomatoes", + "extra-virgin olive oil", + "carrots", + "savoy cabbage", + "parmigiano reggiano cheese", + "garlic cloves", + "escarole" + ] + }, + { + "id": 28565, + "cuisine": "irish", + "ingredients": [ + "instant coffee", + "evaporated milk", + "vanilla extract", + "milk chocolate", + "heavy cream", + "Irish whiskey", + "sweetened condensed milk" + ] + }, + { + "id": 46262, + "cuisine": "italian", + "ingredients": [ + "dijon mustard", + "extra-virgin olive oil", + "fresh tomatoes", + "chicken breasts", + "salt", + "spinach", + "bell pepper", + "purple onion", + "barilla", + "balsamic vinegar", + "freshly ground pepper" + ] + }, + { + "id": 14512, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "kosher salt", + "basil leaves", + "medium shrimp", + "tomatoes", + "ground black pepper", + "fresh lemon juice", + "baguette", + "crushed red pepper" + ] + }, + { + "id": 40143, + "cuisine": "french", + "ingredients": [ + "parsley sprigs", + "leeks", + "garlic cloves", + "turnips", + "water", + "salt", + "onions", + "pepper", + "bay leaves", + "carrots", + "celery ribs", + "beef brisket", + "sauce" + ] + }, + { + "id": 11159, + "cuisine": "thai", + "ingredients": [ + "sugar", + "lemongrass", + "Flora Cuisine", + "lime leaves", + "fresh coriander", + "prawns", + "tamarind paste", + "Knorr Fish Stock Cubes", + "lime", + "garlic", + "coconut", + "ginger", + "pak choi" + ] + }, + { + "id": 37090, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "mint leaves", + "fresh lime juice", + "sugar pea", + "garlic chili sauce", + "rice stick noodles", + "japanese cucumber", + "red bell pepper", + "sugar", + "cilantro leaves", + "medium shrimp" + ] + }, + { + "id": 9347, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "unsalted butter", + "chicken broth", + "olive oil", + "garlic", + "fettucine", + "ground black pepper", + "fresh parsley leaves", + "milk", + "grated parmesan cheese" + ] + }, + { + "id": 21910, + "cuisine": "mexican", + "ingredients": [ + "red chili peppers", + "coriander seeds", + "chipotle paste", + "avocado", + "lime", + "purple onion", + "chicken", + "black beans", + "chili oil", + "corn tortillas", + "tomatoes", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 4786, + "cuisine": "italian", + "ingredients": [ + "dried porcini mushrooms", + "cooking spray", + "chopped fresh thyme", + "boiling water", + "ground black pepper", + "shallots", + "less sodium beef broth", + "arborio rice", + "parmigiano reggiano cheese", + "fresh thyme leaves", + "garlic cloves", + "mascarpone", + "dry white wine", + "salt" + ] + }, + { + "id": 4912, + "cuisine": "southern_us", + "ingredients": [ + "water", + "maple syrup", + "butter", + "grits", + "sweet potatoes", + "garlic salt", + "salt", + "cumin" + ] + }, + { + "id": 11074, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "red pepper flakes", + "garlic" + ] + }, + { + "id": 35892, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "bean curd", + "white pepper", + "garlic", + "green peas", + "fish paste", + "salt" + ] + }, + { + "id": 21024, + "cuisine": "vietnamese", + "ingredients": [ + "garlic cloves", + "olive oil" + ] + }, + { + "id": 26794, + "cuisine": "mexican", + "ingredients": [ + "chili", + "ground beef", + "shredded cheese", + "flour tortillas", + "enchilada sauce" + ] + }, + { + "id": 12918, + "cuisine": "italian", + "ingredients": [ + "tomato purée", + "grated parmesan cheese", + "salt", + "clove", + "olive oil", + "red pepper flakes", + "vodka", + "butter", + "onions", + "pasta", + "ground black pepper", + "heavy cream" + ] + }, + { + "id": 48587, + "cuisine": "southern_us", + "ingredients": [ + "barbecue sauce", + "Crisco Pure Vegetable Oil", + "chopped onion", + "green pepper", + "roast", + "pork butt roast" + ] + }, + { + "id": 44966, + "cuisine": "french", + "ingredients": [ + "cod fillets", + "extra-virgin olive oil", + "ground black pepper", + "large garlic cloves", + "fresh lemon juice", + "red potato", + "parmigiano reggiano cheese", + "grated lemon zest", + "baguette", + "whole milk", + "cayenne pepper" + ] + }, + { + "id": 46988, + "cuisine": "italian", + "ingredients": [ + "warm water", + "large egg yolks", + "all-purpose flour", + "sugar", + "honey", + "fine sea salt", + "active dry yeast", + "unsalted butter", + "gelato", + "large egg whites", + "large eggs" + ] + }, + { + "id": 12213, + "cuisine": "mexican", + "ingredients": [ + "dried thyme", + "vegetable oil", + "serrano", + "chopped cilantro fresh", + "fresca", + "low sodium chicken broth", + "tomatillos", + "corn tortillas", + "shredded Monterey Jack cheese", + "large eggs", + "queso fresco", + "garlic cloves", + "dried oregano", + "white onion", + "corn oil", + "salt", + "bay leaf" + ] + }, + { + "id": 43098, + "cuisine": "southern_us", + "ingredients": [ + "pork chops", + "black pepper", + "salt", + "eggs", + "flour", + "milk" + ] + }, + { + "id": 12614, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "collard greens", + "rib", + "salt", + "black pepper" + ] + }, + { + "id": 43340, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "shanghai bok choy", + "peanut oil", + "soy sauce", + "garlic", + "reduced sodium chicken broth", + "corn starch" + ] + }, + { + "id": 17733, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "butter", + "hot water", + "tomatoes", + "cooking spray", + "salt", + "carnitas", + "saffron threads", + "cider vinegar", + "crushed red pepper", + "onions", + "green bell pepper", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 18904, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "heavy cream", + "flat leaf parsley", + "penne", + "italian plum tomatoes", + "garlic", + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "vodka", + "red pepper", + "salt" + ] + }, + { + "id": 44479, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "crushed red pepper", + "garlic cloves", + "pecorino romano cheese", + "sweet italian sausage", + "fresh basil", + "whipping cream", + "chopped onion", + "olive oil", + "bow-tie pasta" + ] + }, + { + "id": 47003, + "cuisine": "spanish", + "ingredients": [ + "soy sauce", + "extra-virgin olive oil", + "red bell pepper", + "egg noodles", + "salt", + "medium shrimp", + "hot pepper sauce", + "garlic", + "flat leaf parsley", + "slivered almonds", + "dry sherry", + "scallions" + ] + }, + { + "id": 35997, + "cuisine": "spanish", + "ingredients": [ + "potatoes", + "sweet paprika", + "water", + "parsley", + "tuna", + "tomatoes", + "bay leaves", + "garlic cloves", + "olive oil", + "cayenne pepper", + "onions" + ] + }, + { + "id": 3364, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "jalapeno chilies", + "onions", + "avocado", + "quinoa", + "ground turkey", + "black beans", + "garlic", + "ground cumin", + "crushed tomatoes", + "whole kernel corn, drain" + ] + }, + { + "id": 31407, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "sour cream", + "water", + "green onions", + "oregano", + "lasagna noodles", + "ground beef", + "refried beans", + "salsa", + "monterey jack" + ] + }, + { + "id": 16408, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium soy sauce", + "dry sherry", + "dark sesame oil", + "toasted sesame seeds", + "peeled fresh ginger", + "crushed red pepper", + "oyster sauce", + "water chestnuts", + "garlic", + "scallions", + "large egg whites", + "wonton wrappers", + "seasoned rice wine vinegar", + "medium shrimp" + ] + }, + { + "id": 33958, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "boiling water", + "green tea bags", + "fresh mint" + ] + }, + { + "id": 12761, + "cuisine": "italian", + "ingredients": [ + "cake", + "liqueur", + "powdered sugar", + "fresh raspberries", + "mint sprigs", + "unsweetened cocoa powder", + "mascarpone", + "cream cheese, soften" + ] + }, + { + "id": 14718, + "cuisine": "southern_us", + "ingredients": [ + "capers", + "vegetable oil", + "celery seed", + "white vinegar", + "water", + "hot sauce", + "pickling spices", + "salt", + "onions", + "celery ribs", + "bay leaves", + "shrimp" + ] + }, + { + "id": 48090, + "cuisine": "southern_us", + "ingredients": [ + "pie filling", + "sparkling sugar" + ] + }, + { + "id": 14446, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "lemon", + "corn starch", + "chicken stock", + "black pepper", + "tomato ketchup", + "soy sauce", + "garlic", + "canola oil", + "pepper sauce", + "assorted fresh vegetables", + "shrimp" + ] + }, + { + "id": 31201, + "cuisine": "thai", + "ingredients": [ + "large egg whites", + "unsweetened cocoa powder", + "salt", + "flaked coconut", + "lime juice", + "white sugar" + ] + }, + { + "id": 28324, + "cuisine": "jamaican", + "ingredients": [ + "papaya", + "sea salt", + "jerk sauce", + "lime", + "spiced rum", + "yellow rice", + "poblano peppers", + "paprika", + "sour cream", + "avocado", + "boneless skinless chicken breasts", + "kiwi fruits", + "mango" + ] + }, + { + "id": 41052, + "cuisine": "chinese", + "ingredients": [ + "egg roll wrappers", + "pork sausages", + "shredded coleslaw mix", + "dipping sauces", + "fresh ginger", + "garlic cloves", + "vegetable oil" + ] + }, + { + "id": 18786, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "lime juice", + "lime", + "chicken breasts", + "garlic", + "bbq sauce", + "black beans", + "milk", + "bibb lettuce", + "buttermilk", + "cayenne pepper", + "ground cumin", + "black pepper", + "fresh cilantro", + "granulated sugar", + "chili powder", + "salt", + "cumin", + "white vinegar", + "pepper", + "corn", + "barbecue sauce", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 4425, + "cuisine": "italian", + "ingredients": [ + "fennel bulb", + "salt", + "olive oil", + "fresh orange juice", + "grated orange", + "ground black pepper", + "purple onion", + "grated parmesan cheese", + "lemon juice" + ] + }, + { + "id": 47596, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "black beans", + "sesame oil", + "garlic", + "ketchup", + "water", + "coarse salt", + "shrimp", + "brown sugar", + "white onion", + "vegetable oil", + "oyster sauce", + "lettuce", + "white pepper", + "ground black pepper", + "ginger", + "iceberg lettuce" + ] + }, + { + "id": 33945, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "cream cheese, soften", + "powdered sugar", + "vanilla extract" + ] + }, + { + "id": 40177, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "green onions", + "chili bean sauce", + "garlic cloves", + "water", + "dry sherry", + "peanut oil", + "dried red chile peppers", + "soy sauce", + "rice wine", + "green chilies", + "red bell pepper", + "boneless chicken breast", + "ginger", + "scallions", + "celery" + ] + }, + { + "id": 15479, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "jalapeno chilies", + "tomatillos", + "salt", + "freshly ground pepper", + "fresh lime juice", + "white vinegar", + "shiitake", + "vegetable stock", + "purple onion", + "frozen corn kernels", + "corn tortillas", + "canola oil", + "white onion", + "butternut squash", + "raw cashews", + "cilantro leaves", + "garlic cloves", + "chopped cilantro", + "kale", + "shallots", + "extra-virgin olive oil", + "toasted pumpkinseeds", + "smoked paprika", + "onions" + ] + }, + { + "id": 32188, + "cuisine": "cajun_creole", + "ingredients": [ + "part-skim mozzarella cheese", + "cooking spray", + "garlic", + "plum tomatoes", + "zucchini", + "chopped fresh thyme", + "salt", + "yellow squash", + "french bread", + "extra-virgin olive oil", + "red bell pepper", + "ground black pepper", + "balsamic vinegar", + "purple onion" + ] + }, + { + "id": 28207, + "cuisine": "british", + "ingredients": [ + "large eggs", + "vanilla extract", + "toasted almonds", + "sugar", + "English toffee bits", + "cream cheese", + "candy", + "unsalted butter", + "almond extract", + "dark brown sugar", + "chocolate covered english toffee", + "graham cracker crumbs", + "salt", + "sour cream" + ] + }, + { + "id": 38119, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "sesame seeds", + "corn starch", + "cold water", + "honey", + "boneless skinless chicken breasts", + "diced onions", + "minced garlic", + "green onions", + "cooked rice", + "fresh ginger", + "rice vinegar" + ] + }, + { + "id": 20926, + "cuisine": "french", + "ingredients": [ + "rolls", + "almonds", + "preserves" + ] + }, + { + "id": 3043, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "sea salt", + "scallions", + "water", + "mung bean noodles", + "garlic", + "onions", + "ume plum vinegar", + "agave nectar", + "cilantro", + "toasted sesame oil", + "olive oil", + "arrowroot powder", + "broccoli" + ] + }, + { + "id": 15043, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "bacon", + "olive oil", + "garlic cloves", + "white bread", + "balsamic vinegar", + "fresh basil leaves", + "mozzarella cheese", + "salt" + ] + }, + { + "id": 4378, + "cuisine": "french", + "ingredients": [ + "instant yeast", + "water", + "salt", + "caster sugar", + "all purpose unbleached flour", + "unsalted butter" + ] + }, + { + "id": 13071, + "cuisine": "vietnamese", + "ingredients": [ + "coconut oil", + "grated cauliflower", + "coarse sea salt", + "sausages", + "onions", + "chili flakes", + "honey", + "spring onions", + "cracked black pepper", + "shrimp", + "water", + "large eggs", + "cilantro", + "carrots", + "fish sauce", + "asparagus", + "apple cider vinegar", + "garlic cloves", + "fresh lime juice" + ] + }, + { + "id": 40641, + "cuisine": "thai", + "ingredients": [ + "frozen edamame beans", + "whole wheat linguine", + "beansprouts", + "broccoli florets", + "carrots", + "peanuts", + "salted dry roasted peanuts", + "lime wedges", + "red bell pepper" + ] + }, + { + "id": 3491, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "mian", + "unsalted chicken stock", + "leaves", + "top sirloin steak", + "dark soy sauce", + "light soy sauce", + "vegetable oil", + "gai lan", + "ground black pepper", + "oyster sauce" + ] + }, + { + "id": 43324, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "lime juice", + "lettuce leaves", + "dipping sauces", + "barbecued pork", + "chile sauce", + "water", + "mint leaves", + "vegetable oil", + "cilantro leaves", + "coconut milk", + "sugar", + "prawns", + "parsley", + "fine sea salt", + "soda water", + "tumeric", + "thai basil", + "green onions", + "garlic", + "rice flour" + ] + }, + { + "id": 46702, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "lettuce leaves", + "minced garlic", + "crushed red pepper flakes", + "sushi rice", + "green onions", + "rib eye steaks", + "ground black pepper", + "toasted sesame oil" + ] + }, + { + "id": 22688, + "cuisine": "french", + "ingredients": [ + "salt", + "heavy cream", + "semi-sweet chocolate morsels", + "egg yolks", + "white sugar", + "vanilla extract" + ] + }, + { + "id": 11140, + "cuisine": "italian", + "ingredients": [ + "pepperoncini", + "water", + "hamburger buns", + "italian salad dressing mix", + "chuck roast" + ] + }, + { + "id": 23494, + "cuisine": "british", + "ingredients": [ + "pinenuts", + "granulated sugar", + "cake flour", + "ground cardamom", + "baking soda", + "cinnamon", + "grated nutmeg", + "milk", + "large eggs", + "salt", + "double-acting baking powder", + "light brown sugar", + "unsalted butter", + "vanilla extract", + "grated lemon zest" + ] + }, + { + "id": 6194, + "cuisine": "spanish", + "ingredients": [ + "unsalted butter", + "Tabasco Pepper Sauce", + "olive oil", + "potatoes", + "chopped onion", + "minced garlic", + "large eggs", + "salt", + "ground black pepper", + "leeks" + ] + }, + { + "id": 26417, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "honey", + "extra-virgin olive oil", + "cornmeal", + "kosher salt", + "vegetable oil", + "goat cheese", + "active dry yeast", + "balsamic vinegar", + "freshly ground pepper", + "warm water", + "seeds", + "all-purpose flour", + "onions" + ] + }, + { + "id": 6319, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "fresh coriander", + "unsalted butter", + "paprika", + "onions", + "fish fillets", + "olive oil", + "fennel bulb", + "fresh parsley leaves", + "black peppercorns", + "water", + "lemon peel", + "garlic cloves", + "hot red pepper flakes", + "coriander seeds", + "coarse salt", + "lemon juice" + ] + }, + { + "id": 14792, + "cuisine": "greek", + "ingredients": [ + "sun-dried tomatoes", + "dried oregano", + "minced garlic", + "black olives", + "feta cheese", + "olive oil", + "lemon juice" + ] + }, + { + "id": 6321, + "cuisine": "thai", + "ingredients": [ + "tamarind", + "black tea", + "sugar", + "star anise", + "evaporated milk", + "water", + "condensed milk" + ] + }, + { + "id": 4348, + "cuisine": "thai", + "ingredients": [ + "sugar", + "lemongrass", + "lime wedges", + "coconut milk", + "water", + "shiitake", + "cilantro", + "boneless chicken skinless thigh", + "lime", + "chili oil", + "fish sauce", + "lime juice", + "low sodium chicken broth", + "ginger" + ] + }, + { + "id": 13387, + "cuisine": "southern_us", + "ingredients": [ + "rosemary sprigs", + "large eggs", + "vegetable oil", + "pepper", + "lemon wedge", + "salt", + "seasoned bread crumbs", + "grated parmesan cheese", + "paprika", + "lamb rib chops", + "garlic powder", + "onion powder", + "all-purpose flour" + ] + }, + { + "id": 39382, + "cuisine": "southern_us", + "ingredients": [ + "large garlic cloves", + "chipotles in adobo", + "unsalted butter", + "dry red wine", + "worcestershire sauce", + "adobo sauce", + "shell-on shrimp", + "salt" + ] + }, + { + "id": 26036, + "cuisine": "chinese", + "ingredients": [ + "corn oil", + "scallions", + "ginger", + "sesame oil", + "chicken", + "water", + "salt" + ] + }, + { + "id": 35898, + "cuisine": "mexican", + "ingredients": [ + "msg", + "shredded extra sharp cheddar cheese", + "purple onion", + "seasoning", + "chopped tomatoes", + "coarse salt", + "sour cream", + "olive oil", + "lean ground beef", + "tortilla chips", + "black pepper", + "sliced black olives", + "white wine vinegar", + "iceberg lettuce" + ] + }, + { + "id": 48316, + "cuisine": "southern_us", + "ingredients": [ + "parmigiano-reggiano cheese", + "sherry vinegar", + "dry white wine", + "hot sauce", + "grits", + "kosher salt", + "parmigiano reggiano cheese", + "heavy cream", + "fresh lemon juice", + "country ham", + "unsalted butter", + "shallots", + "fresh mushrooms", + "olive oil", + "large eggs", + "crushed red pepper", + "bay leaf" + ] + }, + { + "id": 23071, + "cuisine": "southern_us", + "ingredients": [ + "Tabasco Pepper Sauce", + "cayenne pepper", + "buttermilk", + "chicken", + "coarse salt", + "peanut oil", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 751, + "cuisine": "french", + "ingredients": [ + "duxelles", + "dry white wine", + "leeks", + "cooking spray", + "salt", + "char fillets" + ] + }, + { + "id": 18588, + "cuisine": "mexican", + "ingredients": [ + "cavatappi", + "large garlic cloves", + "serrano chile", + "unsalted butter", + "salt", + "queso fresco", + "poblano chiles", + "white onion", + "crema", + "dried oregano" + ] + }, + { + "id": 32696, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "garlic", + "coriander", + "lime", + "vegetable broth", + "onions", + "taco sauce", + "chili powder", + "green chilies", + "chicken breasts", + "salt", + "cumin" + ] + }, + { + "id": 7947, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "garam masala", + "salt", + "coconut milk", + "saffron", + "roasted cashews", + "steamed rice", + "Thai red curry paste", + "hot curry powder", + "paneer cheese", + "tomato paste", + "sweet onion", + "broccoli florets", + "cayenne pepper", + "chopped cilantro", + "coconut oil", + "fresh ginger", + "garlic", + "greek yogurt", + "naan" + ] + }, + { + "id": 39634, + "cuisine": "indian", + "ingredients": [ + "coconut", + "thai chile", + "brown mustard seeds", + "ground turmeric", + "shell-on shrimp", + "salt", + "water", + "vegetable oil" + ] + }, + { + "id": 32816, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "fresh parsley", + "kosher salt", + "large eggs", + "garlic cloves", + "pepper", + "shallots", + "asparagus spears", + "capers", + "dijon mustard", + "white wine vinegar", + "plum tomatoes" + ] + }, + { + "id": 1051, + "cuisine": "korean", + "ingredients": [ + "rice cakes", + "fruit", + "chips" + ] + }, + { + "id": 12966, + "cuisine": "korean", + "ingredients": [ + "honey", + "heavy cream", + "tangerine zest", + "white sesame seeds", + "sugar", + "black sesame seeds", + "large egg yolks", + "mandarin orange juice" + ] + }, + { + "id": 49693, + "cuisine": "french", + "ingredients": [ + "crescent rolls", + "Nutella" + ] + }, + { + "id": 905, + "cuisine": "greek", + "ingredients": [ + "pepper", + "lettuce leaves", + "lemon juice", + "dried oregano", + "artichoke hearts", + "salt", + "cucumber", + "olive oil", + "pitted olives", + "feta cheese crumbles", + "tomatoes", + "zucchini", + "garlic cloves", + "onions" + ] + }, + { + "id": 27568, + "cuisine": "greek", + "ingredients": [ + "nutmeg", + "onion powder", + "corn starch", + "ground black pepper", + "cinnamon", + "garlic powder", + "parsley", + "oregano", + "beef", + "salt" + ] + }, + { + "id": 12544, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "flour tortillas", + "red bell pepper", + "canned black beans", + "garlic powder", + "Campbell's Condensed Cream of Chicken Soup", + "tomato paste", + "chopped green chilies", + "chili powder", + "water", + "cooked chicken" + ] + }, + { + "id": 40796, + "cuisine": "mexican", + "ingredients": [ + "colby jack cheese", + "cream cheese", + "baby spinach", + "corn tortillas", + "vegetable oil", + "sour cream", + "salsa", + "chicken" + ] + }, + { + "id": 8122, + "cuisine": "japanese", + "ingredients": [ + "salt", + "cumin", + "peanut oil", + "green chilies", + "potatoes", + "lemon juice" + ] + }, + { + "id": 42558, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "corn", + "salt", + "tumeric", + "cilantro", + "brown mustard seeds", + "serrano chile" + ] + }, + { + "id": 44337, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato purée", + "dried thyme", + "boneless skinless chicken breasts", + "yellow onion", + "dried oregano", + "fat free less sodium chicken broth", + "jalapeno chilies", + "chopped celery", + "red bell pepper", + "sliced green onions", + "andouille sausage", + "ground black pepper", + "ground red pepper", + "garlic cloves", + "canola oil", + "dried basil", + "bay leaves", + "salt", + "basmati rice" + ] + }, + { + "id": 43335, + "cuisine": "cajun_creole", + "ingredients": [ + "lemon", + "mayonaise", + "herbes de provence", + "cajun spice mix", + "garlic cloves", + "dijon mustard" + ] + }, + { + "id": 10479, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "paprika", + "garlic cloves", + "green chile", + "ground sirloin", + "chopped onion", + "tomatoes", + "green onions", + "shredded sharp cheddar cheese", + "canola oil", + "kidney beans", + "chili powder", + "beer" + ] + }, + { + "id": 31861, + "cuisine": "mexican", + "ingredients": [ + "water", + "plum tomatoes", + "coarse salt", + "habanero chile" + ] + }, + { + "id": 23118, + "cuisine": "russian", + "ingredients": [ + "corn oil", + "champagne vinegar", + "horseradish", + "beets", + "watercress", + "hothouse cucumber", + "sugar", + "sour cream" + ] + }, + { + "id": 14950, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable juice", + "hot sauce", + "prepared horseradish", + "cherry peppers", + "vodka", + "pickled okra", + "worcestershire sauce" + ] + }, + { + "id": 889, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "bread crumbs", + "garlic cloves", + "hard shelled clams", + "fresh oregano", + "lemon zest", + "plum tomatoes" + ] + }, + { + "id": 3100, + "cuisine": "italian", + "ingredients": [ + "pepper", + "cheese tortellini", + "frozen peas", + "unsalted butter", + "garlic", + "kosher salt", + "grated parmesan cheese", + "onions", + "olive oil", + "fresh tarragon" + ] + }, + { + "id": 44086, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "shiitake", + "lemon", + "soy sauce", + "shrimp heads", + "konbu", + "parsley sprigs", + "mirin", + "dried bonito flakes", + "anchovies", + "boneless skinless chicken breasts" + ] + }, + { + "id": 6306, + "cuisine": "southern_us", + "ingredients": [ + "cayenne", + "frozen corn", + "juice", + "green bell pepper", + "rabbit", + "garlic cloves", + "reduced sodium chicken broth", + "all-purpose flour", + "California bay leaves", + "tomatoes", + "vegetable oil", + "lima beans", + "onions" + ] + }, + { + "id": 11693, + "cuisine": "mexican", + "ingredients": [ + "tostadas", + "hominy", + "salt", + "cabbage", + "lime", + "cilantro stems", + "onions", + "water", + "bay leaves", + "red radishes", + "pork", + "chili", + "garlic", + "dried oregano" + ] + }, + { + "id": 47744, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "butter", + "wild mushrooms", + "beef stock", + "dried oregano", + "flour", + "onions", + "pepper", + "vegetable oil", + "chopped garlic" + ] + }, + { + "id": 34748, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chicken breasts", + "pizza crust", + "cooking spray", + "fresh basil", + "artichoke hearts", + "sliced mushrooms", + "tomato sauce", + "part-skim mozzarella cheese" + ] + }, + { + "id": 41968, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "swiss chard", + "freshly ground pepper", + "tortellini", + "garlic cloves", + "water", + "salt" + ] + }, + { + "id": 8691, + "cuisine": "italian", + "ingredients": [ + "capers", + "olive oil", + "garlic cloves", + "black pepper", + "salt", + "dried parsley", + "sugar", + "diced tomatoes", + "rotini", + "dried basil", + "chopped onion", + "dried oregano" + ] + }, + { + "id": 19479, + "cuisine": "cajun_creole", + "ingredients": [ + "ground pepper", + "whipping cream", + "boneless skinless chicken breast halves", + "bread crumbs", + "dry white wine", + "cayenne pepper", + "eggs", + "grated parmesan cheese", + "salt", + "large shrimp", + "olive oil", + "fusilli", + "fresh parsley" + ] + }, + { + "id": 4177, + "cuisine": "southern_us", + "ingredients": [ + "neutral oil", + "salsa verde", + "crema mexican", + "paprika", + "smoked paprika", + "chicken", + "boneless pork shoulder", + "kosher salt", + "ground black pepper", + "chili powder", + "hot sauce", + "dried oregano", + "pork", + "corn husks", + "baking powder", + "garlic", + "onions", + "ground cumin", + "chicken stock", + "garlic powder", + "unsalted butter", + "vegetable stock", + "cayenne pepper", + "masa harina" + ] + }, + { + "id": 37140, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic", + "corn starch", + "sherry", + "round steaks", + "white sugar", + "fresh ginger root", + "broccoli", + "toasted sesame oil", + "vegetable oil", + "oyster sauce" + ] + }, + { + "id": 10985, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "shredded lettuce", + "taco sauce", + "green onions", + "sour cream", + "tomatoes", + "sliced black olives", + "cream cheese", + "shredded cheddar cheese", + "lean ground beef" + ] + }, + { + "id": 13553, + "cuisine": "spanish", + "ingredients": [ + "chocolate", + "orange rind", + "brewed espresso", + "boiling water", + "1% low-fat milk", + "fat free frozen top whip", + "brown sugar", + "cocoa powder", + "unsweetened cocoa powder" + ] + }, + { + "id": 7438, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "buttermilk", + "hot sauce", + "onion powder", + "salt", + "self-rising cornmeal", + "cayenne", + "paprika", + "okra", + "black pepper", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 41777, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cooking oil", + "garlic", + "scallions", + "corn starch", + "green bell pepper", + "baking soda", + "rice wine", + "all-purpose flour", + "oyster sauce", + "Chinese rice vinegar", + "eggs", + "water", + "pork tenderloin", + "salt", + "oil", + "red bell pepper", + "sugar", + "plum sauce", + "pineapple rings", + "tomato ketchup", + "Lea & Perrins Worcestershire Sauce" + ] + }, + { + "id": 13399, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "basil", + "roasted peanuts", + "carrots", + "asian fish sauce", + "soy sauce", + "cayenne", + "rice vermicelli", + "garlic cloves", + "toasted sesame oil", + "brown sugar", + "vegetables", + "ginger", + "scallions", + "cucumber", + "boneless chicken skinless thigh", + "lime wedges", + "rice vinegar", + "unsalted peanut butter", + "serrano chile" + ] + }, + { + "id": 9723, + "cuisine": "brazilian", + "ingredients": [ + "water", + "sugar", + "sweetened condensed milk", + "lime juice" + ] + }, + { + "id": 46540, + "cuisine": "southern_us", + "ingredients": [ + "grape tomatoes", + "green onions", + "olive oil", + "salt", + "pepper", + "balsamic vinegar", + "fresh basil", + "corn husks" + ] + }, + { + "id": 45716, + "cuisine": "japanese", + "ingredients": [ + "large eggs", + "salt", + "honey", + "matcha green tea powder", + "glaze", + "cream of tartar", + "whole milk", + "all-purpose flour", + "granulated sugar", + "lemon" + ] + }, + { + "id": 20009, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "yellow corn meal", + "large eggs", + "salt", + "baking soda", + "buttermilk", + "shortening", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 28075, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "butter", + "orange juice concentrate", + "large eggs", + "chopped pecans", + "ground cinnamon", + "sweet potatoes", + "ground nutmeg", + "salt" + ] + }, + { + "id": 23688, + "cuisine": "korean", + "ingredients": [ + "radishes", + "garlic", + "water", + "napa cabbage", + "red chili peppers", + "green onions", + "fresh ginger", + "sea salt" + ] + }, + { + "id": 15506, + "cuisine": "italian", + "ingredients": [ + "penne", + "grated parmesan cheese", + "mozzarella cheese", + "fat-free cottage cheese", + "black pepper", + "marinara sauce", + "zucchini", + "sea salt" + ] + }, + { + "id": 48000, + "cuisine": "mexican", + "ingredients": [ + "chili", + "corn", + "sea salt", + "parmigiano reggiano cheese", + "lime", + "crema" + ] + }, + { + "id": 46866, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "andouille sausage", + "tomatoes with juice", + "freshly ground pepper", + "chicken broth", + "olive oil", + "salt", + "biscuits", + "milk", + "smoked sausage", + "garlic cloves", + "green bell pepper", + "cajun seasoning", + "yellow onion" + ] + }, + { + "id": 41609, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "corn kernels", + "roma tomatoes", + "onions", + "canned black beans", + "Mexican cheese blend", + "Bisquick Baking Mix", + "romaine lettuce", + "olive oil", + "taco seasoning", + "milk", + "large eggs", + "ground beef" + ] + }, + { + "id": 7483, + "cuisine": "southern_us", + "ingredients": [ + "cream of tartar", + "egg whites", + "fresh lime juice", + "sugar", + "lime slices", + "unflavored gelatin", + "egg yolks", + "sweetened condensed milk", + "cold water", + "graham cracker crusts", + "salt" + ] + }, + { + "id": 37745, + "cuisine": "filipino", + "ingredients": [ + "garlic powder", + "romano cheese", + "butter", + "fettucine", + "fresh lemon", + "milk", + "salt" + ] + }, + { + "id": 2170, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "unsalted butter", + "smoked sweet Spanish paprika", + "all-purpose flour", + "peanut oil", + "seasoning", + "ground nutmeg", + "cooking spray", + "buttermilk", + "strawberries", + "chicken", + "ground cinnamon", + "ground black pepper", + "baking powder", + "maple syrup", + "poultry seasoning", + "brown mustard", + "garlic powder", + "large eggs", + "butter", + "grenadine syrup", + "eggnog" + ] + }, + { + "id": 37228, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "salt", + "white sugar", + "milk", + "margarine", + "warm water", + "all-purpose flour", + "orange zest", + "anise seed", + "active dry yeast", + "orange juice" + ] + }, + { + "id": 29084, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "peeled fresh ginger", + "cilantro sprigs", + "olive oil", + "lemon wedge", + "onions", + "peeled tomatoes", + "cilantro stems", + "salt", + "mild curry powder", + "whole milk yoghurt", + "cauliflower florets" + ] + }, + { + "id": 9175, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "marinara sauce", + "mascarpone", + "flat leaf parsley", + "parmesan cheese", + "cheese tortellini", + "fresh thyme" + ] + }, + { + "id": 28490, + "cuisine": "french", + "ingredients": [ + "coarse sea salt", + "cayenne pepper", + "baguette", + "extra-virgin olive oil", + "egg yolks", + "dry bread crumbs", + "fish stock", + "garlic cloves" + ] + }, + { + "id": 29243, + "cuisine": "french", + "ingredients": [ + "olive oil", + "asparagus spears", + "sea salt", + "pepper", + "herbes de provence" + ] + }, + { + "id": 10455, + "cuisine": "french", + "ingredients": [ + "sliced almonds", + "extra-virgin olive oil", + "ground black pepper", + "sherry vinegar", + "salt", + "haricots verts", + "dijon mustard" + ] + }, + { + "id": 12780, + "cuisine": "korean", + "ingredients": [ + "zucchini", + "all-purpose flour", + "eggs", + "vegetable oil" + ] + }, + { + "id": 4399, + "cuisine": "greek", + "ingredients": [ + "fresh basil", + "ground black pepper", + "purple onion", + "dried rosemary", + "pitted kalamata olives", + "sliced cucumber", + "fresh parsley", + "penne", + "roasted red peppers", + "feta cheese crumbles", + "low-fat caesar dressing", + "water", + "sprinkles", + "large shrimp" + ] + }, + { + "id": 14583, + "cuisine": "indian", + "ingredients": [ + "ginger", + "rice flour", + "flour", + "green chilies", + "curry leaves", + "salt", + "onions", + "chili powder", + "oil" + ] + }, + { + "id": 36352, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "water", + "cannellini beans", + "smoked ham hocks", + "parsnips", + "leeks", + "carrots", + "savoy cabbage", + "peasant bread", + "cheese", + "red potato", + "ground black pepper", + "salt" + ] + }, + { + "id": 24628, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "chicken base", + "pan drippings", + "flour", + "chicken stock", + "heavy cream" + ] + }, + { + "id": 7577, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "rice vinegar", + "peeled fresh ginger", + "chicken thighs", + "hot red pepper flakes", + "sesame oil", + "hoisin sauce", + "garlic cloves" + ] + }, + { + "id": 30914, + "cuisine": "mexican", + "ingredients": [ + "milk", + "fresh lemon juice", + "pure vanilla extract", + "large eggs", + "semisweet chocolate", + "sugar", + "cinnamon" + ] + }, + { + "id": 34118, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "grating cheese", + "cooked white rice", + "diced green chilies", + "ancho powder", + "ground cumin", + "olive oil", + "diced tomatoes", + "onions", + "extra lean ground beef", + "bell pepper", + "juice" + ] + }, + { + "id": 44172, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "salt", + "ghee", + "ground cloves", + "fenugreek", + "dried chile", + "chicken thighs", + "garam masala", + "garlic cloves", + "onions", + "grated coconut", + "chili powder", + "coconut milk", + "ground turmeric" + ] + }, + { + "id": 43224, + "cuisine": "indian", + "ingredients": [ + "white sugar", + "pistachio nuts", + "chickpea flour", + "clarified butter", + "cashew nuts" + ] + }, + { + "id": 45885, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "dried basil", + "crushed red pepper flakes", + "dried oregano", + "pepper", + "mushroom caps", + "salt", + "mozzarella cheese", + "lean ground meat", + "garlic", + "meat filling", + "pizza sauce", + "fresh basil leaves" + ] + }, + { + "id": 11601, + "cuisine": "southern_us", + "ingredients": [ + "white pepper", + "heavy cream", + "fillets", + "eggs", + "vegetable oil", + "salt", + "pork sausages", + "garlic powder", + "garlic", + "fresh parsley", + "black pepper", + "butter", + "all-purpose flour" + ] + }, + { + "id": 20656, + "cuisine": "thai", + "ingredients": [ + "salt", + "galangal", + "fish sauce", + "coconut milk", + "kaffir lime leaves", + "fresh mushrooms", + "chile pepper", + "fresh lime juice" + ] + }, + { + "id": 19146, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "bay leaves", + "oil", + "pepper", + "garlic", + "cooked rice", + "beef tenderloin", + "ground black pepper", + "salt" + ] + }, + { + "id": 37426, + "cuisine": "british", + "ingredients": [ + "self rising flour", + "caster sugar", + "salt", + "milk", + "eggs", + "butter" + ] + }, + { + "id": 43476, + "cuisine": "mexican", + "ingredients": [ + "water", + "fresh lime juice", + "boneless pork shoulder", + "ground black pepper", + "dried oregano", + "orange", + "onions", + "kosher salt", + "bay leaves", + "ground cumin" + ] + }, + { + "id": 2145, + "cuisine": "vietnamese", + "ingredients": [ + "rice vinegar", + "lime juice", + "asian fish sauce", + "hot chili", + "sugar", + "garlic cloves" + ] + }, + { + "id": 32363, + "cuisine": "irish", + "ingredients": [ + "beer", + "water", + "onions", + "red potato", + "carrots", + "beef brisket", + "cabbage" + ] + }, + { + "id": 30551, + "cuisine": "thai", + "ingredients": [ + "basil pesto sauce", + "fresh mushrooms", + "seasoning" + ] + }, + { + "id": 8513, + "cuisine": "moroccan", + "ingredients": [ + "mayonaise", + "paprika", + "ground coriander", + "fresh ginger", + "garlic", + "ground cumin", + "parsley sprigs", + "cilantro", + "lemon juice", + "cayenne", + "salt" + ] + }, + { + "id": 32362, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "garlic", + "bread flour", + "kosher salt", + "baby spinach", + "pizza doughs", + "ricotta cheese", + "yellow onion", + "olive oil", + "chees fresh mozzarella", + "freshly ground pepper" + ] + }, + { + "id": 11311, + "cuisine": "indian", + "ingredients": [ + "salt", + "lemon juice", + "whole milk" + ] + }, + { + "id": 42448, + "cuisine": "italian", + "ingredients": [ + "warm water", + "whole wheat flour", + "1% low-fat milk", + "pitted kalamata olives", + "large egg whites", + "cooking spray", + "fresh oregano", + "water", + "dry yeast", + "salt", + "sugar", + "olive oil", + "asiago", + "bread flour" + ] + }, + { + "id": 26114, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "crushed tomatoes", + "vegetable oil", + "ground beef", + "tomato purée", + "parmesan cheese", + "garlic", + "garlic salt", + "chicken broth", + "dried basil", + "worcestershire sauce", + "onions", + "pepper", + "parsley", + "salt" + ] + }, + { + "id": 1068, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "fresh ginger", + "rice vinegar", + "white onion", + "boneless skinless chicken breasts", + "corn starch", + "soy sauce", + "ground black pepper", + "scallions", + "honey", + "garlic", + "toasted sesame seeds" + ] + }, + { + "id": 20779, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "ground pork", + "chicken livers", + "canola oil", + "celery ribs", + "jalapeno chilies", + "scallions", + "onions", + "chicken broth", + "chili powder", + "garlic cloves", + "dried oregano", + "ground black pepper", + "salt", + "chopped parsley" + ] + }, + { + "id": 9904, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "lime wedges", + "cooked shrimp", + "chili", + "tortilla chips", + "avocado", + "finely chopped onion", + "tequila", + "lime juice", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 26404, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "water", + "converted rice", + "chopped onion", + "black pepper", + "dried thyme", + "cooked chicken", + "minced garlic", + "cooking spray", + "stewed tomatoes", + "fat free less sodium chicken broth", + "low-fat smoked sausage", + "green peas" + ] + }, + { + "id": 34653, + "cuisine": "japanese", + "ingredients": [ + "stock", + "fresh chives", + "white sesame seeds", + "sugar", + "lemon", + "fresh udon", + "bonito flakes", + "soy sauce", + "scallions" + ] + }, + { + "id": 2165, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "parsley", + "salt", + "dried basil", + "garlic", + "bone in chicken thighs", + "pasta", + "olive oil", + "crushed red pepper", + "crushed tomatoes", + "diced tomatoes", + "all-purpose flour" + ] + }, + { + "id": 13953, + "cuisine": "french", + "ingredients": [ + "pepper", + "butter", + "dry white wine", + "white wine vinegar", + "lemon zest", + "fresh tarragon", + "shallots" + ] + }, + { + "id": 18899, + "cuisine": "french", + "ingredients": [ + "large eggs", + "large garlic cloves", + "parmigiano reggiano cheese", + "pastry dough", + "cayenne", + "half & half", + "extra sharp cheddar cheese", + "broccoli florets", + "grated nutmeg" + ] + }, + { + "id": 31651, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "garlic cloves", + "sugar", + "fermented bean paste", + "szechwan peppercorns", + "chili pepper", + "peanut oil" + ] + }, + { + "id": 22922, + "cuisine": "southern_us", + "ingredients": [ + "pie crust", + "unsalted butter", + "chopped pecans", + "powdered sugar", + "bourbon whiskey", + "pecan halves", + "large eggs", + "white sugar", + "light brown sugar", + "milk", + "all-purpose flour" + ] + }, + { + "id": 36032, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "golden raisins", + "ground cardamom", + "pinenuts", + "purple onion", + "water", + "salt", + "sugar", + "butter", + "basmati rice" + ] + }, + { + "id": 20120, + "cuisine": "british", + "ingredients": [ + "sugar", + "raisins", + "eggs", + "unsalted butter", + "all-purpose flour", + "cream of tartar", + "milk", + "salt", + "old-fashioned oatmeal", + "baking powder" + ] + }, + { + "id": 31747, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "water", + "duck", + "long grain white rice", + "green bell pepper", + "all-purpose flour", + "onions", + "scallion greens", + "cayenne", + "long grain brown rice", + "chicken broth", + "kielbasa", + "red bell pepper" + ] + }, + { + "id": 22196, + "cuisine": "cajun_creole", + "ingredients": [ + "bread crumbs", + "butter", + "green onions", + "cream of mushroom soup", + "crawfish", + "red bell pepper", + "green bell pepper", + "cajun seasoning", + "Pillsbury Pie Crusts" + ] + }, + { + "id": 18880, + "cuisine": "korean", + "ingredients": [ + "napa cabbage", + "scallions", + "kosher salt", + "ginger", + "onions", + "red pepper", + "shrimp", + "water", + "garlic" + ] + }, + { + "id": 26051, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "curry powder", + "garlic", + "onions", + "plain yogurt", + "vegetable oil", + "coconut milk", + "boneless chicken skinless thigh", + "garam masala", + "salt", + "green cardamom pods", + "tandoori spices", + "butter", + "curry paste" + ] + }, + { + "id": 25161, + "cuisine": "japanese", + "ingredients": [ + "water", + "salt", + "mayonaise", + "garlic juice", + "ground white pepper", + "ground ginger", + "hot pepper sauce", + "ground mustard", + "ketchup", + "paprika", + "white sugar" + ] + }, + { + "id": 22246, + "cuisine": "greek", + "ingredients": [ + "ground pepper", + "english cucumber", + "feta cheese", + "salt", + "dried oregano", + "pitted kalamata olives", + "purple onion", + "chopped parsley", + "tomatoes", + "extra-virgin olive oil", + "lemon juice" + ] + }, + { + "id": 17372, + "cuisine": "southern_us", + "ingredients": [ + "coconut oil", + "cayenne", + "thyme", + "peanuts", + "apple cider vinegar", + "onions", + "black-eyed peas", + "coarse sea salt", + "water", + "chopped green bell pepper", + "cornmeal" + ] + }, + { + "id": 11678, + "cuisine": "british", + "ingredients": [ + "curry powder", + "butternut squash", + "frozen corn kernels", + "minced garlic", + "sweet potatoes", + "whipping cream", + "frozen peas", + "pure maple syrup", + "hot pepper sauce", + "russet potatoes", + "ground coriander", + "sausage casings", + "large eggs", + "butter", + "onions" + ] + }, + { + "id": 47917, + "cuisine": "southern_us", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "low-sodium fat-free chicken broth", + "grated parmesan cheese", + "hot sauce", + "fat free milk", + "salt", + "quickcooking grits", + "ground white pepper" + ] + }, + { + "id": 38603, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "broccoli florets", + "dark brown sugar", + "greens", + "fresh ginger", + "sesame oil", + "oyster sauce", + "minced garlic", + "rice wine", + "scallions", + "reduced sodium soy sauce", + "sirloin steak", + "corn starch" + ] + }, + { + "id": 32853, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "finely chopped onion", + "garlic cloves", + "fresh basil", + "parmesan cheese", + "brown rice penne", + "eggplant", + "salt", + "olive oil", + "crushed red pepper" + ] + }, + { + "id": 10047, + "cuisine": "french", + "ingredients": [ + "sugar", + "lemon juice", + "salt", + "fresh ginger", + "blueberries" + ] + }, + { + "id": 32231, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "fresh bay leaves", + "fine sea salt", + "tomatoes", + "ground black pepper", + "garlic", + "green cardamom pods", + "coriander seeds", + "cilantro stems", + "fresh ginger", + "whole cloves", + "cinnamon sticks" + ] + }, + { + "id": 6756, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "beef sausage", + "red food coloring", + "water", + "salt" + ] + }, + { + "id": 44637, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "spring onions", + "salsa", + "sour cream", + "ground cumin", + "tilapia fillets", + "hot pepper sauce", + "red pepper", + "green pepper", + "cabbage", + "fresh coriander", + "salt and ground black pepper", + "watercress", + "cayenne pepper", + "corn tortillas", + "lime", + "red cabbage", + "purple onion", + "sweet corn", + "fish" + ] + }, + { + "id": 23055, + "cuisine": "mexican", + "ingredients": [ + "water", + "masa harina", + "salt" + ] + }, + { + "id": 18730, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "grated lemon peel", + "prosciutto", + "whipping cream", + "fresh peas", + "fresh lemon juice", + "angel hair", + "pecorino romano cheese" + ] + }, + { + "id": 4939, + "cuisine": "mexican", + "ingredients": [ + "milk", + "extra-virgin olive oil", + "chicken breasts", + "cream cheese", + "vegetables", + "dry pasta", + "kosher salt", + "ranch dressing" + ] + }, + { + "id": 24471, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "parboiled rice", + "fenugreek seeds", + "boiling potatoes", + "fresh coriander", + "ginger", + "green chilies", + "daal", + "chili powder", + "rice", + "ground turmeric", + "pigeon peas", + "salt", + "lemon juice" + ] + }, + { + "id": 12465, + "cuisine": "greek", + "ingredients": [ + "red wine vinegar", + "dill", + "mint", + "lemon slices", + "feta cheese crumbles", + "tomatoes", + "extra-virgin olive oil", + "fresh lemon juice", + "mayonaise", + "mahimahi fillet" + ] + }, + { + "id": 43383, + "cuisine": "italian", + "ingredients": [ + "water", + "vegetable oil", + "goat cheese", + "dried thyme", + "salt", + "active dry yeast", + "purple onion", + "dried fig", + "fennel seeds", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 6460, + "cuisine": "brazilian", + "ingredients": [ + "cold water", + "lime", + "sugar", + "sweetened condensed milk" + ] + }, + { + "id": 11729, + "cuisine": "greek", + "ingredients": [ + "orzo", + "cucumber", + "kosher salt", + "lemon juice", + "great northern beans", + "vinaigrette", + "fresh parsley", + "cracked black pepper", + "feta cheese crumbles" + ] + }, + { + "id": 32207, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "kosher salt", + "finely chopped fresh parsley", + "extra-virgin olive oil", + "blanched almonds", + "chicken", + "ground ginger", + "honey", + "dried apricot", + "garlic", + "couscous", + "ground cumin", + "picholine olives", + "unsalted butter", + "paprika", + "ground coriander", + "chopped cilantro fresh", + "ground cinnamon", + "ground black pepper", + "lemon", + "cayenne pepper", + "onions" + ] + }, + { + "id": 38904, + "cuisine": "southern_us", + "ingredients": [ + "dijon mustard", + "snow pea shoots", + "chicken broth", + "red wine vinegar", + "tilapia", + "clementines", + "shallots", + "garlic", + "cheddar cheese", + "cajun seasoning", + "grits" + ] + }, + { + "id": 43308, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lemon juice", + "salt", + "salsa verde", + "pepper" + ] + }, + { + "id": 11322, + "cuisine": "southern_us", + "ingredients": [ + "dry vermouth", + "fresh tarragon", + "bay leaf", + "fresh thyme", + "extra-virgin olive oil", + "fennel bulb", + "crushed red pepper flakes", + "onions", + "heavy cream", + "garlic" + ] + }, + { + "id": 43576, + "cuisine": "chinese", + "ingredients": [ + "broccoli florets", + "corn starch", + "sugar", + "ginger", + "chicken broth", + "boneless skinless chicken breasts", + "soy sauce", + "garlic cloves" + ] + }, + { + "id": 41057, + "cuisine": "chinese", + "ingredients": [ + "green cabbage", + "shiitake", + "sesame oil", + "garlic", + "white pepper", + "hoisin sauce", + "ground pork", + "soy sauce", + "Sriracha", + "vegetable oil", + "won ton wrappers", + "green onions", + "ginger" + ] + }, + { + "id": 24904, + "cuisine": "indian", + "ingredients": [ + "fresh chives", + "coriander seeds", + "salt", + "chopped cilantro fresh", + "honey", + "half & half", + "baby carrots", + "ground cumin", + "olive oil", + "paprika", + "garlic cloves", + "fat free less sodium chicken broth", + "ground black pepper", + "yellow onion", + "ground turmeric" + ] + }, + { + "id": 35732, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken breast", + "seasoning", + "salt", + "green onions", + "cheddar cheese", + "enchilada sauce" + ] + }, + { + "id": 9656, + "cuisine": "irish", + "ingredients": [ + "warm water", + "baking soda", + "baking powder", + "honey", + "dried apricot", + "buttermilk", + "dried porcini mushrooms", + "unsalted butter", + "coarse salt", + "eggs", + "whole wheat flour", + "old-fashioned oats", + "all-purpose flour" + ] + }, + { + "id": 6409, + "cuisine": "spanish", + "ingredients": [ + "chopped fresh chives", + "low salt chicken broth", + "serrano chile", + "tomatoes", + "garlic cloves", + "chopped cilantro fresh", + "cold water", + "extra-virgin olive oil", + "flat leaf parsley", + "avocado", + "purple onion", + "fresh lime juice" + ] + }, + { + "id": 46361, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "shredded zucchini", + "water", + "rice vinegar", + "onions", + "soy sauce", + "salt", + "garlic cloves", + "fresh ginger", + "all-purpose flour", + "chicken" + ] + }, + { + "id": 27320, + "cuisine": "french", + "ingredients": [ + "asian eggplants", + "orange bell pepper", + "salt", + "pepper", + "diced tomatoes", + "fresh basil leaves", + "yellow summer squash", + "zucchini", + "onions", + "olive oil", + "garlic" + ] + }, + { + "id": 28796, + "cuisine": "french", + "ingredients": [ + "butter", + "superfine sugar", + "egg whites", + "ground almonds" + ] + }, + { + "id": 5145, + "cuisine": "filipino", + "ingredients": [ + "fresh ginger", + "chicken", + "coconut milk", + "salt and ground black pepper", + "frozen chopped spinach", + "canola oil" + ] + }, + { + "id": 39913, + "cuisine": "thai", + "ingredients": [ + "water", + "red curry paste", + "kaffir lime leaves", + "thai basil", + "eggplant", + "coconut milk", + "fish sauce", + "chicken breasts" + ] + }, + { + "id": 17023, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "yellow onion", + "tomato paste", + "bell pepper", + "coconut milk", + "ground ginger", + "curry powder", + "garlic cloves", + "chicken broth", + "salt", + "chicken" + ] + }, + { + "id": 40362, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "butter", + "long grain white rice", + "pepper", + "salt", + "tomato paste", + "garlic", + "cumin", + "chili powder", + "onions" + ] + }, + { + "id": 14408, + "cuisine": "british", + "ingredients": [ + "ground black pepper", + "balsamic vinegar", + "purple onion", + "brown sugar", + "grated parmesan cheese", + "crushed red pepper flakes", + "unsalted butter", + "sea salt", + "sausages", + "milk", + "potatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 28400, + "cuisine": "cajun_creole", + "ingredients": [ + "shredded coleslaw mix", + "salt", + "eye steaks", + "cajun seasoning", + "creole mustard", + "apple cider vinegar", + "mayonaise", + "purple onion" + ] + }, + { + "id": 7096, + "cuisine": "british", + "ingredients": [ + "cold milk", + "baking powder", + "unsalted butter", + "salt", + "large eggs", + "sugar", + "cake flour" + ] + }, + { + "id": 27527, + "cuisine": "mexican", + "ingredients": [ + "water", + "cilantro leaves", + "coarse salt", + "jalapeno chilies", + "white onion", + "tomatillos" + ] + }, + { + "id": 48103, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "bacon slices", + "garlic herb feta", + "baby spinach", + "fresh mushrooms", + "green chile", + "large eggs", + "salt", + "pepper", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 26878, + "cuisine": "cajun_creole", + "ingredients": [ + "creole seasoning", + "large eggs", + "monterey jack", + "sauce", + "pepper", + "Texas toast bread" + ] + }, + { + "id": 3567, + "cuisine": "mexican", + "ingredients": [ + "banana squash", + "salt", + "celery", + "diced green chilies", + "diced tomatoes", + "fat", + "chopped cilantro fresh", + "pepper", + "chili powder", + "frozen corn kernels", + "onions", + "white hominy", + "garlic", + "sour cream", + "ground cumin" + ] + }, + { + "id": 29234, + "cuisine": "japanese", + "ingredients": [ + "water", + "extra large eggs", + "nuts", + "sake", + "shiitake", + "carrots", + "soy sauce", + "chicken breasts", + "medium shrimp", + "dashi", + "salt" + ] + }, + { + "id": 7234, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "water", + "Tabasco Pepper Sauce", + "scallions", + "cheddar cheese", + "cayenne", + "paprika", + "plum tomatoes", + "canned low sodium chicken broth", + "milk", + "butter", + "red bell pepper", + "canned black beans", + "quickcooking grits", + "salt" + ] + }, + { + "id": 1937, + "cuisine": "italian", + "ingredients": [ + "salt and ground black pepper", + "crushed red pepper flakes", + "dried oregano", + "sliced black olives", + "sun-dried tomatoes in oil", + "olive oil", + "onion powder", + "boneless skinless chicken breast halves", + "garlic powder", + "hoagie rolls" + ] + }, + { + "id": 3385, + "cuisine": "chinese", + "ingredients": [ + "water", + "garlic", + "corn starch", + "green onions", + "hot chili sauce", + "frozen peas and carrots", + "cooking oil", + "firm tofu", + "ground turkey", + "vegetable stock", + "oyster sauce", + "onions" + ] + }, + { + "id": 41920, + "cuisine": "mexican", + "ingredients": [ + "fajita seasoning mix", + "chile pepper", + "boneless skinless chicken breasts", + "cheese" + ] + }, + { + "id": 48430, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "ground black pepper", + "salt", + "flat leaf parsley", + "pitted kalamata olives", + "extra-virgin olive oil", + "anchovy fillets", + "orecchiette", + "capers", + "anchovy paste", + "grated lemon zest", + "plum tomatoes", + "fresh parmesan cheese", + "purple onion", + "fresh lemon juice" + ] + }, + { + "id": 20413, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "ground pepper", + "toasted pine nuts", + "freshly grated parmesan", + "garlic cloves", + "coarse salt", + "fresh basil leaves" + ] + }, + { + "id": 7533, + "cuisine": "southern_us", + "ingredients": [ + "large egg whites", + "cooking spray", + "garlic cloves", + "bread crumbs", + "large eggs", + "tomato salsa", + "diced onions", + "black-eyed peas", + "vegetable oil", + "basmati rice", + "cherry tomatoes", + "jalapeno chilies", + "all-purpose flour" + ] + }, + { + "id": 24475, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "pepper", + "ditalini pasta", + "fresh parsley", + "chicken broth", + "olive oil", + "carrots", + "italian sausage", + "crushed tomatoes", + "salt", + "onions", + "fresh basil", + "grated parmesan cheese", + "celery" + ] + }, + { + "id": 14336, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "red pepper flakes", + "frozen orange juice concentrate", + "flour", + "salt", + "brown sugar", + "boneless chicken breast", + "ginger", + "ketchup", + "balsamic vinegar" + ] + }, + { + "id": 23390, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "fat free less sodium chicken broth", + "ground black pepper", + "extra-virgin olive oil", + "red bell pepper", + "capers", + "salad greens", + "large eggs", + "small red potato", + "olives", + "fresh basil", + "tarragon vinegar", + "dijon mustard", + "garlic cloves", + "fresh parsley", + "haricots verts", + "romaine lettuce", + "artichoke hearts", + "cooking spray", + "fresh lemon juice", + "large shrimp" + ] + }, + { + "id": 47318, + "cuisine": "chinese", + "ingredients": [ + "chicken wings", + "medium dry sherry", + "chinese five-spice powder", + "soy sauce", + "coarse salt", + "onions", + "sugar", + "vegetable oil", + "corn starch", + "ground black pepper", + "gingerroot" + ] + }, + { + "id": 43800, + "cuisine": "french", + "ingredients": [ + "pepper", + "crème fraîche", + "mustard", + "butter", + "neutral oil", + "salt", + "veal stock", + "dry white wine", + "steak" + ] + }, + { + "id": 36213, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "cheese", + "eggplant", + "plum tomatoes", + "grated parmesan cheese", + "olive oil", + "dry bread crumbs" + ] + }, + { + "id": 3981, + "cuisine": "irish", + "ingredients": [ + "water", + "port", + "grated orange", + "fresh cranberries", + "chopped walnuts", + "dried tart cherries", + "ground allspice", + "sugar", + "almond extract", + "orange rind" + ] + }, + { + "id": 31593, + "cuisine": "mexican", + "ingredients": [ + "guacamole", + "rice", + "taco seasoning mix", + "shredded lettuce", + "shredded Monterey Jack cheese", + "refried beans", + "vegetable oil", + "sour cream", + "flour tortillas", + "salsa" + ] + }, + { + "id": 28543, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "shredded cheddar cheese", + "flour tortillas", + "red wine vinegar", + "sour cream", + "romaine lettuce", + "corn kernels", + "ground sirloin", + "freshly ground pepper", + "chopped cilantro fresh", + "grape tomatoes", + "lime", + "shredded carrots", + "salt", + "onions", + "avocado", + "canned black beans", + "olive oil", + "chili powder", + "scallions", + "ground cumin" + ] + }, + { + "id": 49309, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "old bay seasoning", + "peanuts", + "olive oil", + "salt", + "cayenne" + ] + }, + { + "id": 39908, + "cuisine": "french", + "ingredients": [ + "flour", + "fryer chickens", + "thyme", + "baguette", + "parsley", + "garlic cloves", + "fresh parsley", + "wine", + "mushrooms", + "bacon", + "bay leaf", + "pearl onions", + "butter", + "carrots", + "onions" + ] + }, + { + "id": 38790, + "cuisine": "mexican", + "ingredients": [ + "spinach", + "olive oil", + "pork tenderloin", + "ground coriander", + "sliced green onions", + "chipotle chile", + "hominy", + "salt", + "adobo sauce", + "romaine lettuce", + "manchego cheese", + "cilantro sprigs", + "garlic cloves", + "ground cumin", + "fat free less sodium chicken broth", + "radishes", + "chopped onion", + "plum tomatoes" + ] + }, + { + "id": 40126, + "cuisine": "italian", + "ingredients": [ + "diced onions", + "fennel bulb", + "crushed red pepper", + "dried oregano", + "water", + "balsamic vinegar", + "carrots", + "capers", + "marinara sauce", + "garlic cloves", + "olive oil", + "kalamata", + "cooked vermicelli" + ] + }, + { + "id": 20455, + "cuisine": "greek", + "ingredients": [ + "penne pasta", + "cannellini beans", + "fresh spinach", + "feta cheese crumbles", + "diced tomatoes" + ] + }, + { + "id": 707, + "cuisine": "italian", + "ingredients": [ + "egg whites", + "fresh lemon juice", + "shredded Italian cheese", + "bread dough", + "boneless skinless chicken breasts", + "feta cheese crumbles", + "frozen chopped spinach", + "artichokes" + ] + }, + { + "id": 34447, + "cuisine": "thai", + "ingredients": [ + "light brown sugar", + "hot pepper sauce", + "rice vinegar", + "toasted sesame oil", + "fresh ginger", + "garlic", + "carrots", + "boneless skinless chicken breast halves", + "soy sauce", + "chunky peanut butter", + "scallions", + "noodles", + "sesame seeds", + "salt", + "hot water" + ] + }, + { + "id": 36552, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "all-purpose flour", + "white sugar", + "eggs", + "vanilla extract", + "marshmallow creme", + "butter", + "chopped walnuts", + "unsweetened cocoa powder", + "milk", + "salt", + "confectioners sugar" + ] + }, + { + "id": 21662, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "pork butt", + "orange", + "fresh lime juice", + "water", + "garlic cloves", + "cumin", + "bay leaves", + "onions" + ] + }, + { + "id": 44347, + "cuisine": "cajun_creole", + "ingredients": [ + "collard greens", + "large eggs", + "butter", + "cayenne pepper", + "canola oil", + "creole mustard", + "honey", + "shallots", + "extra-virgin olive oil", + "coarse kosher salt", + "capers", + "whole milk", + "large garlic cloves", + "fresh lemon juice", + "catfish fillets", + "ground black pepper", + "red wine vinegar", + "all-purpose flour", + "cornmeal" + ] + }, + { + "id": 15019, + "cuisine": "thai", + "ingredients": [ + "egg whites", + "kaffir lime leaves", + "whitefish", + "Thai red curry paste", + "fresh coriander" + ] + }, + { + "id": 42203, + "cuisine": "british", + "ingredients": [ + "milk", + "raisins", + "all-purpose flour", + "brown sugar", + "baking powder", + "ginger", + "cream of tartar", + "chopped almonds", + "currant", + "allspice", + "brandy", + "butter", + "beaten eggs" + ] + }, + { + "id": 21768, + "cuisine": "southern_us", + "ingredients": [ + "baguette", + "roasted red peppers", + "cayenne", + "mayonaise", + "extra sharp cheddar cheese" + ] + }, + { + "id": 1441, + "cuisine": "southern_us", + "ingredients": [ + "minced garlic", + "chili powder", + "ground cumin", + "reduced fat sharp cheddar cheese", + "white hominy", + "diced tomatoes", + "fresh cilantro", + "vegetable oil", + "low-fat sour cream", + "red beans", + "stewed tomatoes" + ] + }, + { + "id": 12362, + "cuisine": "spanish", + "ingredients": [ + "chicken broth", + "red pepper flakes", + "large shrimp", + "french bread", + "salt", + "olive oil", + "garlic", + "parsley", + "lemon juice" + ] + }, + { + "id": 14924, + "cuisine": "french", + "ingredients": [ + "great northern beans", + "olive oil", + "bacon slices", + "sausages", + "fresh rosemary", + "baby lima beans", + "diced tomatoes", + "garlic cloves", + "onions", + "tomato paste", + "bread crumb fresh", + "chopped fresh thyme", + "ground allspice", + "fresh parsley", + "brandy", + "grated parmesan cheese", + "crushed red pepper", + "low salt chicken broth" + ] + }, + { + "id": 48986, + "cuisine": "greek", + "ingredients": [ + "bread crumbs", + "lemon", + "oregano", + "medium eggs", + "low-fat greek yogurt", + "dill", + "olive oil", + "purple onion", + "pork", + "radishes", + "garlic cloves" + ] + }, + { + "id": 30143, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "sugar", + "basil dried leaves", + "onions", + "tomato sauce", + "olive oil", + "garlic cloves", + "tomato paste", + "black pepper", + "shredded parmesan cheese", + "dried leaves oregano", + "table salt", + "butter", + "celery" + ] + }, + { + "id": 36295, + "cuisine": "indian", + "ingredients": [ + "chicken broth", + "peeled fresh ginger", + "onions", + "chiles", + "large garlic cloves", + "slivered almonds", + "vegetable oil", + "basmati rice", + "garam masala", + "salt" + ] + }, + { + "id": 49496, + "cuisine": "mexican", + "ingredients": [ + "Mexican seasoning mix", + "cilantro", + "soft corn tortillas", + "frozen sweet corn", + "sweet onion", + "salt", + "shredded Monterey Jack cheese", + "crushed tomatoes", + "avocado oil", + "chicken", + "cider vinegar", + "baby spinach", + "scallions" + ] + }, + { + "id": 21251, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "crème fraîche", + "bay leaf", + "extra-virgin olive oil", + "freshly ground pepper", + "red wine vinegar", + "rice", + "chicken", + "chicken stock", + "salt", + "garlic cloves" + ] + }, + { + "id": 29918, + "cuisine": "filipino", + "ingredients": [ + "black beans", + "rice wine", + "garlic", + "bok choy", + "tofu", + "cooking oil", + "vegetable stock", + "corn starch", + "ground black pepper", + "sesame oil", + "salt", + "soy sauce", + "green onions", + "ginger", + "red bell pepper" + ] + }, + { + "id": 41450, + "cuisine": "chinese", + "ingredients": [ + "dark sesame oil", + "boiling water", + "all-purpose flour" + ] + }, + { + "id": 37676, + "cuisine": "french", + "ingredients": [ + "white button mushrooms", + "olive oil", + "chicken breasts", + "cognac", + "homemade chicken stock", + "unsalted butter", + "garlic", + "flat leaf parsley", + "black peppercorns", + "ground black pepper", + "dry red wine", + "corn starch", + "tomato paste", + "pearl onions", + "fresh thyme", + "salt", + "bay leaf" + ] + }, + { + "id": 29926, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "tortillas", + "salt", + "pork butt", + "lime juice", + "cilantro", + "dried guajillo chiles", + "chipotle chile", + "lime", + "garlic", + "ancho chile pepper", + "cider vinegar", + "pineapple", + "cumin seed", + "oregano" + ] + }, + { + "id": 3179, + "cuisine": "italian", + "ingredients": [ + "milk", + "cayenne pepper", + "eggs", + "grated parmesan cheese", + "wheat germ", + "tomato sauce", + "salt", + "eggplant", + "shredded mozzarella cheese" + ] + }, + { + "id": 44098, + "cuisine": "mexican", + "ingredients": [ + "low-fat ricotta cheese", + "red bell pepper", + "salt free southwest chipotle seasoning", + "cheese", + "onions", + "dough", + "pizza sauce", + "ground beef", + "large eggs", + "salt" + ] + }, + { + "id": 18850, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "diced tomatoes", + "pork roast", + "chicken broth", + "chips", + "salt", + "butter beans", + "white vinegar", + "pepper", + "yellow corn", + "onions", + "firmly packed brown sugar", + "worcestershire sauce", + "hot sauce", + "chicken" + ] + }, + { + "id": 10690, + "cuisine": "thai", + "ingredients": [ + "light coconut milk", + "medium shrimp", + "asparagus", + "red curry paste", + "water", + "salt", + "sliced green onions", + "cooking spray", + "rice" + ] + }, + { + "id": 39448, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "linguine", + "flat leaf parsley", + "clams", + "shallots", + "salt", + "dry white wine", + "crushed red pepper", + "cornmeal", + "black pepper", + "lemon wedge", + "garlic cloves" + ] + }, + { + "id": 28061, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "red wine vinegar", + "grated parmesan cheese", + "salt", + "olive oil", + "boneless skinless chicken breasts", + "scallions", + "artichoke hearts", + "fusilli", + "flat leaf parsley" + ] + }, + { + "id": 1199, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "oregano", + "chicken fingers", + "garlic powder", + "cumin" + ] + }, + { + "id": 9869, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salsa", + "dried oregano", + "reduced fat cheddar cheese", + "flour tortillas", + "onions", + "chicken bouillon granules", + "chopped green chilies", + "and fat free half half", + "ground cumin", + "reduced sodium chicken broth", + "all-purpose flour", + "cooked chicken breasts" + ] + }, + { + "id": 19089, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "chicken thighs", + "lime zest", + "chili powder", + "garlic cloves", + "jalapeno chilies", + "cilantro leaves", + "honey", + "lime wedges", + "fresh lime juice" + ] + }, + { + "id": 25780, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "avocado", + "greek style plain yogurt", + "shredded cheddar cheese", + "cooked brown rice", + "salsa" + ] + }, + { + "id": 39884, + "cuisine": "southern_us", + "ingredients": [ + "fat free less sodium chicken broth", + "cooking spray", + "chopped onion", + "frozen whole kernel corn", + "butter", + "boneless skinless chicken breast halves", + "black pepper", + "chopped green bell pepper", + "salt", + "stone-ground cornmeal", + "cajun seasoning", + "corn starch" + ] + }, + { + "id": 32264, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "garlic powder", + "onions", + "black beans", + "stewed tomatoes", + "quick cooking brown rice", + "dried oregano" + ] + }, + { + "id": 37650, + "cuisine": "korean", + "ingredients": [ + "green onions", + "crushed red pepper", + "fresh ginger", + "garlic", + "soy sauce", + "dry sherry", + "firmly packed light brown sugar", + "flank steak", + "dark sesame oil" + ] + }, + { + "id": 3305, + "cuisine": "moroccan", + "ingredients": [ + "water", + "yellow onion", + "serrano chile", + "black pepper", + "garlic", + "lemon juice", + "canola oil", + "pepper", + "salt", + "onions", + "chiles", + "paprika", + "scallions", + "cumin" + ] + }, + { + "id": 32741, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "yellow bell pepper", + "red bell pepper", + "pepper", + "garlic", + "green bell pepper", + "extra-virgin olive oil", + "fresh parsley", + "balsamic vinegar", + "salt" + ] + }, + { + "id": 1116, + "cuisine": "mexican", + "ingredients": [ + "spring onions", + "green chilies", + "tomatoes", + "lemon", + "avocado", + "chili powder", + "pepper", + "salt" + ] + }, + { + "id": 7596, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cilantro", + "ground cumin", + "vegetable oil", + "salt", + "jalapeno chilies", + "garlic", + "avocado", + "tomatillos", + "onions" + ] + }, + { + "id": 49016, + "cuisine": "french", + "ingredients": [ + "dried tarragon leaves", + "shallots", + "white vinegar", + "butter", + "egg yolks" + ] + }, + { + "id": 21694, + "cuisine": "french", + "ingredients": [ + "caster", + "vanilla pods", + "demerara sugar", + "whipping cream", + "egg yolks" + ] + }, + { + "id": 9072, + "cuisine": "french", + "ingredients": [ + "parsley", + "salt", + "bay leaf", + "ground black pepper", + "butter", + "carrots", + "onions", + "cremini mushrooms", + "zinfandel", + "all-purpose flour", + "fresh parsley", + "cooking spray", + "chicken drumsticks", + "thyme sprigs", + "chicken" + ] + }, + { + "id": 22409, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "marinara sauce", + "garlic", + "onions", + "frozen spinach", + "olive oil", + "portabello mushroom", + "salt", + "dried basil", + "ricotta cheese", + "crushed red pepper", + "eggs", + "parmesan cheese", + "red pepper", + "jumbo pasta shells" + ] + }, + { + "id": 40304, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "ground beef", + "brown sugar", + "rice wine", + "cooked rice", + "green onions", + "soy sauce", + "togarashi" + ] + }, + { + "id": 33847, + "cuisine": "mexican", + "ingredients": [ + "cold water", + "white onion", + "yukon gold potatoes", + "cilantro sprigs", + "boiling water", + "chipotle chile", + "radishes", + "queso fresco", + "ancho chile pepper", + "boneless chicken skinless thigh", + "guacamole", + "tomato salsa", + "corn tortillas", + "tomatoes", + "olive oil", + "lime wedges", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 7453, + "cuisine": "indian", + "ingredients": [ + "chicken stock", + "roma tomatoes", + "sea salt", + "garlic cloves", + "chili flakes", + "yoghurt", + "ground coriander", + "chicken", + "curry leaves", + "potatoes", + "yellow onion", + "ground turmeric", + "ground cloves", + "vegetable oil", + "whole chicken", + "ground cumin" + ] + }, + { + "id": 29583, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "vegetable oil", + "vanilla extract", + "chopped pecans", + "granulated sugar", + "buttermilk", + "blueberries", + "baking soda", + "butter", + "all-purpose flour", + "eggs", + "baking powder", + "sweetened coconut flakes", + "cream cheese" + ] + }, + { + "id": 46444, + "cuisine": "mexican", + "ingredients": [ + "corn", + "ancho powder", + "cotija", + "unsalted butter", + "mayonaise", + "lime", + "kosher salt", + "epazote" + ] + }, + { + "id": 32206, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "cooking spray", + "less sodium beef broth", + "arborio rice", + "ground black pepper", + "shallots", + "boiling water", + "mascarpone", + "dry white wine", + "garlic cloves", + "dried porcini mushrooms", + "parmigiano reggiano cheese", + "salt" + ] + }, + { + "id": 36012, + "cuisine": "japanese", + "ingredients": [ + "wasabi", + "sugar", + "salmon", + "seaweed", + "nori", + "wasabi paste", + "sushi rice", + "salt", + "cucumber", + "brill", + "avocado", + "soy sauce", + "shells", + "king prawns", + "fish", + "sake", + "gari", + "rice vinegar", + "tuna" + ] + }, + { + "id": 16644, + "cuisine": "russian", + "ingredients": [ + "warm water", + "dark rye flour", + "active dry yeast", + "salt", + "dark corn syrup" + ] + }, + { + "id": 49015, + "cuisine": "mexican", + "ingredients": [ + "water", + "pickling salt", + "jalapeno chilies", + "white vinegar" + ] + }, + { + "id": 41603, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "sour cream", + "garlic powder", + "lime juice", + "chipotle peppers", + "salt" + ] + }, + { + "id": 26390, + "cuisine": "italian", + "ingredients": [ + "capers", + "cooking spray", + "garlic cloves", + "olive oil", + "pitted green olives", + "baguette", + "balsamic vinegar", + "plum tomatoes", + "fresh basil", + "ground black pepper", + "sea salt" + ] + }, + { + "id": 36506, + "cuisine": "southern_us", + "ingredients": [ + "chopped celery", + "tomatoes", + "sliced green onions", + "basil mayonnaise", + "cooked shrimp" + ] + }, + { + "id": 16059, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "butter", + "unsalted butter", + "crust", + "large eggs", + "fresh lemon juice", + "sugar", + "flour" + ] + }, + { + "id": 33451, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "garlic", + "onions", + "olive oil", + "fresh parsley leaves", + "ground flaxseed", + "water", + "dried chickpeas", + "fresh basil leaves", + "chili flakes", + "sea salt", + "lemon juice" + ] + }, + { + "id": 13785, + "cuisine": "korean", + "ingredients": [ + "vegetable oil", + "garlic cloves", + "extra firm tofu", + "Gochujang base", + "onions", + "shiitake", + "vegetable broth", + "kimchi", + "sesame oil", + "scallions", + "chopped cilantro fresh" + ] + }, + { + "id": 41503, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "hamburger", + "chicken", + "eggs", + "cooking oil", + "onions", + "pork chops", + "shrimp", + "cooked rice", + "bacon", + "fish" + ] + }, + { + "id": 41375, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "ground black pepper", + "coconut milk", + "panang curry paste", + "kosher salt", + "basil", + "fish sauce", + "boneless skinless chicken breasts", + "chicken stock", + "jasmine rice", + "dark brown sugar" + ] + }, + { + "id": 20848, + "cuisine": "italian", + "ingredients": [ + "water", + "reduced fat ranch dressing", + "cornflake crumbs", + "garlic powder", + "italian seasoning", + "boneless skinless chicken breasts" + ] + }, + { + "id": 37450, + "cuisine": "french", + "ingredients": [ + "pernod", + "dried thyme", + "clam juice", + "garlic cloves", + "arugula", + "clams", + "hearts of palm", + "tomato juice", + "samphire", + "fresh parsley", + "fish", + "crab", + "bouillon cube", + "crushed red pepper", + "tarragon", + "saffron", + "catfish fillets", + "corn", + "dry white wine", + "hot sauce", + "onions" + ] + }, + { + "id": 41312, + "cuisine": "italian", + "ingredients": [ + "cold water", + "unsalted butter", + "all-purpose flour", + "confectioners sugar", + "water", + "whole milk", + "orange flower water", + "orange zest", + "pure vanilla extract", + "large egg yolks", + "salt", + "corn starch", + "sugar", + "large eggs", + "ricotta", + "citron" + ] + }, + { + "id": 11917, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "unsalted butter", + "minced garlic", + "flat leaf parsley", + "kosher salt", + "grated romano cheese", + "fresh rosemary", + "ground black pepper", + "greens" + ] + }, + { + "id": 10563, + "cuisine": "mexican", + "ingredients": [ + "ground round", + "ground black pepper", + "cabbage", + "minced garlic", + "crushed red pepper flakes", + "shredded cheddar cheese", + "flour tortillas", + "water", + "onions" + ] + }, + { + "id": 25664, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "ground pork", + "shrimp", + "sugar", + "Shaoxing wine", + "oil", + "large eggs", + "scallions", + "beansprouts", + "soy sauce", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 16353, + "cuisine": "italian", + "ingredients": [ + "ladyfingers", + "egg yolks", + "brewed espresso", + "mascarpone", + "heavy cream", + "sugar", + "rum", + "cocoa powder", + "egg whites", + "vanilla extract" + ] + }, + { + "id": 36370, + "cuisine": "indian", + "ingredients": [ + "eggs", + "active dry yeast", + "white sugar", + "minced garlic", + "butter", + "warm water", + "garam masala", + "bread flour", + "milk", + "salt" + ] + }, + { + "id": 19850, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "onions", + "soy sauce", + "bonito", + "sugar", + "large eggs", + "chicken thighs", + "water", + "scallions" + ] + }, + { + "id": 44482, + "cuisine": "mexican", + "ingredients": [ + "chips", + "goat cheese", + "adobo sauce", + "paprika", + "fresh lime juice", + "cumin", + "white corn tortillas", + "purple onion", + "chipotles in adobo", + "canola oil", + "tomatillos", + "cream cheese, soften", + "chopped cilantro fresh" + ] + }, + { + "id": 11230, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "toasted sesame seeds", + "garlic cloves", + "fresh green bean", + "toasted sesame oil" + ] + }, + { + "id": 40954, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "green onions", + "vegetable oil", + "chili sauce", + "fish sauce", + "fresh coriander", + "marinade", + "sauce", + "ground white pepper", + "chicken stock", + "soy sauce", + "chicken breasts", + "garlic", + "corn starch", + "brown sugar", + "peanuts", + "rice noodles", + "tamarind paste", + "beansprouts" + ] + }, + { + "id": 15818, + "cuisine": "southern_us", + "ingredients": [ + "chop fine pecan", + "dried cranberries", + "refrigerated piecrusts" + ] + }, + { + "id": 44404, + "cuisine": "italian", + "ingredients": [ + "water", + "low salt chicken broth", + "asiago", + "arborio rice", + "purple onion", + "olive oil" + ] + }, + { + "id": 6719, + "cuisine": "british", + "ingredients": [ + "ground black pepper", + "butter", + "ground beef", + "brown sauce", + "potatoes", + "salt", + "frozen peas", + "cooking oil", + "beef stock cubes", + "onions", + "water", + "spring onions", + "carrots" + ] + }, + { + "id": 3448, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "red chili peppers", + "garam masala", + "salt", + "garlic cloves", + "red chili powder", + "white onion", + "ginger", + "ground coriander", + "chopped cilantro", + "eggs", + "bread crumbs", + "vegetable oil", + "cardamom pods", + "cinnamon sticks", + "clove", + "tumeric", + "water", + "garlic", + "cumin seed", + "ground beef" + ] + }, + { + "id": 48457, + "cuisine": "british", + "ingredients": [ + "kosher salt", + "baking powder", + "light brown sugar", + "fresh blueberries", + "heavy cream", + "granulated sugar", + "butter", + "eggs", + "half & half", + "all-purpose flour" + ] + }, + { + "id": 39236, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "boneless chicken breast", + "cayenne pepper", + "oregano", + "white wine", + "cajun seasoning", + "cooked shrimp", + "green bell pepper", + "parsley", + "rice", + "crushed tomatoes", + "smoked sausage", + "onions" + ] + }, + { + "id": 41216, + "cuisine": "mexican", + "ingredients": [ + "sausage casings", + "milk", + "cheese", + "onions", + "mayonaise", + "chipotle puree", + "prepared guacamole", + "plum tomatoes", + "raspberry jam", + "lime juice", + "cilantro", + "orange juice", + "unsweetened cocoa powder", + "green bell pepper", + "olive oil", + "garlic", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 30295, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "mirin", + "onions", + "eggs", + "fresh ginger", + "salt", + "sake", + "beef", + "scallions", + "tofu", + "soy sauce", + "udon" + ] + }, + { + "id": 2266, + "cuisine": "french", + "ingredients": [ + "olive oil", + "yellow onion", + "zucchini", + "herbes de provence", + "eggplant", + "garlic cloves", + "sage leaves", + "fine sea salt", + "plum tomatoes" + ] + }, + { + "id": 617, + "cuisine": "chinese", + "ingredients": [ + "water", + "razor clams", + "green onions", + "red bell pepper", + "fresh ginger", + "sauce", + "vegetable oil" + ] + }, + { + "id": 49351, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "mexicorn", + "cream of chicken soup", + "rotel tomatoes", + "chicken breasts", + "onions", + "cream of potato soup", + "green pepper" + ] + }, + { + "id": 5171, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "salt", + "tomatoes", + "ricotta cheese", + "grated parmesan cheese", + "tuna packed in olive oil", + "fresh basil", + "pasta shells" + ] + }, + { + "id": 43096, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "jicama", + "garlic cloves", + "jalapeno chilies", + "extra-virgin olive oil", + "fresh lime juice", + "chopped green bell pepper", + "yellow corn", + "red bell pepper", + "avocado", + "cooking spray", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 410, + "cuisine": "chinese", + "ingredients": [ + "ground black pepper", + "worcestershire sauce", + "kosher salt", + "sesame oil", + "cream cheese", + "crab meat", + "green onions", + "garlic", + "won ton wrappers", + "vegetable oil" + ] + }, + { + "id": 38697, + "cuisine": "russian", + "ingredients": [ + "fresh basil", + "salt", + "blackberries", + "raspberries", + "corn starch", + "sugar", + "fresh lemon juice", + "vanilla beans", + "muscat" + ] + }, + { + "id": 11870, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "roast", + "rosemary", + "garlic cloves", + "kosher salt", + "freshly ground pepper", + "olive oil" + ] + }, + { + "id": 10802, + "cuisine": "southern_us", + "ingredients": [ + "heavy cream", + "ground cayenne pepper", + "pepper", + "all-purpose flour", + "eggs", + "salt", + "butter", + "dry bread crumbs" + ] + }, + { + "id": 27730, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "ground coriander", + "boiling water", + "butter", + "onions", + "curry powder", + "sour cream", + "ground cumin", + "tomato paste", + "salt", + "chicken thighs" + ] + }, + { + "id": 48474, + "cuisine": "irish", + "ingredients": [ + "sugar", + "large eggs", + "vanilla extract", + "dried pear", + "whole wheat flour", + "baking powder", + "all-purpose flour", + "large egg whites", + "cooking spray", + "salt", + "ground cardamom", + "low-fat buttermilk", + "butter", + "grated lemon zest" + ] + }, + { + "id": 38425, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "radishes", + "condiments", + "purple onion", + "cucumber", + "sugar", + "lemongrass", + "shredded carrots", + "cilantro sprigs", + "firm tofu", + "mayonaise", + "baguette", + "vinegar", + "sesame oil", + "salt", + "warm water", + "ground black pepper", + "jalapeno chilies", + "garlic", + "peanut oil" + ] + }, + { + "id": 21371, + "cuisine": "italian", + "ingredients": [ + "water", + "dry white wine", + "garlic cloves", + "artichoke hearts", + "crushed red pepper", + "olive oil", + "vegetable broth", + "arborio rice", + "fresh parmesan cheese", + "grated lemon zest" + ] + }, + { + "id": 46548, + "cuisine": "french", + "ingredients": [ + "fennel fronds", + "leeks", + "garlic", + "oregano", + "saffron threads", + "orange", + "parsley", + "thyme", + "water", + "dry white wine", + "fresh herbs", + "fish", + "tomatoes", + "olive oil", + "sea salt", + "onions" + ] + }, + { + "id": 40513, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "garlic", + "wine", + "onions", + "italian sausage", + "roma tomatoes", + "olive oil" + ] + }, + { + "id": 730, + "cuisine": "mexican", + "ingredients": [ + "fresh lime juice", + "sugar", + "mango", + "lime zest", + "guanabana", + "water" + ] + }, + { + "id": 2603, + "cuisine": "thai", + "ingredients": [ + "rice sticks", + "lime wedges", + "Thai fish sauce", + "sliced green onions", + "brown sugar", + "large eggs", + "oil", + "medium shrimp", + "low sodium soy sauce", + "peanuts", + "paprika", + "beansprouts", + "water", + "chicken breasts", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 7267, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "cilantro", + "garlic cloves", + "red bell pepper", + "brown sugar", + "green onions", + "salted peanuts", + "carrots", + "ground ginger", + "green bell pepper, slice", + "yellow bell pepper", + "oyster sauce", + "beef steak", + "black pepper", + "rice noodles", + "oil", + "green beans" + ] + }, + { + "id": 4406, + "cuisine": "jamaican", + "ingredients": [ + "Angostura bitters", + "fresh mint", + "rum", + "fresh lime juice", + "simple syrup", + "champagne" + ] + }, + { + "id": 46642, + "cuisine": "italian", + "ingredients": [ + "water", + "grated parmesan cheese", + "sage leaves", + "unsalted butter", + "whole milk ricotta cheese", + "dough", + "large eggs", + "bacon slices", + "ground black pepper", + "flour" + ] + }, + { + "id": 47630, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "purple onion", + "bread, cut into italian loaf", + "Wish-Bone Italian Dressing", + "fresh basil leaves", + "ground black pepper" + ] + }, + { + "id": 9064, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "linguine", + "pears", + "butter", + "chopped pecans", + "whipping cream", + "gorgonzola", + "grated parmesan cheese", + "low salt chicken broth" + ] + }, + { + "id": 32679, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "olive oil", + "green onions", + "greek seasoning", + "roma tomatoes", + "artichoke hearts", + "chicken breasts" + ] + }, + { + "id": 22477, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "garlic cloves", + "black peppercorns", + "vinegar", + "water", + "chicken", + "brown sugar", + "bay leaves" + ] + }, + { + "id": 42117, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "channa dal", + "oil", + "masoor dal", + "rice", + "curry leaves", + "potatoes", + "green chilies", + "black pepper", + "salt", + "dal" + ] + }, + { + "id": 7713, + "cuisine": "chinese", + "ingredients": [ + "brussels sprouts", + "brown sugar", + "egg roll wrappers", + "sesame oil", + "chili sauce", + "eggs", + "pomegranate seeds", + "green onions", + "garlic", + "carrots", + "pomegranate juice", + "fish sauce", + "fresh ginger", + "boneless skinless chicken breasts", + "rice vinegar", + "low sodium soy sauce", + "soy sauce", + "hoisin sauce", + "button mushrooms", + "chinese five-spice powder" + ] + }, + { + "id": 32825, + "cuisine": "mexican", + "ingredients": [ + "knorr chicken flavor bouillon cube", + "queso blanco", + "knorr chipotl minicub", + "crema mexican", + "corn tortillas", + "knorr garlic minicub", + "whole peel tomatoes, undrain and chop", + "Knorr Onion Minicubes", + "vegetable oil", + "chorizo sausage" + ] + }, + { + "id": 29417, + "cuisine": "mexican", + "ingredients": [ + "black peppercorns", + "corn kernels", + "lime wedges", + "cinnamon sticks", + "plum tomatoes", + "chipotle chile", + "garbanzo beans", + "salt", + "onions", + "ground cumin", + "red potato", + "water", + "butternut squash", + "green beans", + "chopped cilantro fresh", + "chiles", + "olive oil", + "large garlic cloves", + "corn tortillas", + "dried oregano" + ] + }, + { + "id": 33807, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "salt", + "plum tomatoes", + "olive oil", + "onion tops", + "pepper", + "shoepeg corn", + "chopped green bell pepper", + "onions" + ] + }, + { + "id": 7764, + "cuisine": "french", + "ingredients": [ + "sugar", + "rhubarb", + "strawberries", + "large eggs", + "wine" + ] + }, + { + "id": 16214, + "cuisine": "greek", + "ingredients": [ + "fillet red snapper", + "tomato juice", + "garlic cloves", + "cherry tomatoes", + "crushed red pepper", + "plum tomatoes", + "white wine", + "red wine vinegar", + "onions", + "rosemary sprigs", + "olive oil", + "all-purpose flour", + "dried rosemary" + ] + }, + { + "id": 11631, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "nonfat yogurt plain", + "ground cumin", + "garlic", + "ground coriander", + "cilantro", + "cayenne pepper", + "boneless salmon fillets", + "salt", + "ground turmeric" + ] + }, + { + "id": 25295, + "cuisine": "french", + "ingredients": [ + "eggs", + "semisweet chocolate", + "white sugar", + "coffee granules", + "heavy whipping cream", + "water", + "butter", + "almonds", + "confectioners sugar" + ] + }, + { + "id": 24760, + "cuisine": "japanese", + "ingredients": [ + "sweet potatoes", + "beer", + "cake flour", + "red bell pepper", + "vegetable oil", + "asparagus spears", + "salt", + "large shrimp" + ] + }, + { + "id": 49236, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "orange", + "silken tofu", + "fresh ginger" + ] + }, + { + "id": 17438, + "cuisine": "italian", + "ingredients": [ + "Italian bread", + "honey", + "gorgonzola", + "water", + "toast", + "calimyrna figs" + ] + }, + { + "id": 4762, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "honey", + "sugar", + "garlic", + "chinese rice wine", + "hoisin sauce", + "pork belly", + "chinese five-spice powder" + ] + }, + { + "id": 15045, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "cooking spray", + "olive oil", + "bread dough", + "shredded cheddar cheese", + "salt", + "part-skim mozzarella cheese" + ] + }, + { + "id": 17163, + "cuisine": "indian", + "ingredients": [ + "clove", + "whole milk yoghurt", + "ginger", + "cardamom pods", + "onions", + "tumeric", + "bay leaves", + "canned tomatoes", + "lemon juice", + "ground cumin", + "garam masala", + "vegetable oil", + "salt", + "cinnamon sticks", + "spinach", + "whole milk", + "garlic", + "ground coriander", + "serrano chile" + ] + }, + { + "id": 43890, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "green onions", + "garlic", + "chopped onion", + "chicken stock", + "ground black pepper", + "worcestershire sauce", + "green pepper", + "chopped parsley", + "cooked rice", + "flour", + "diced tomatoes", + "creole seasoning", + "celery", + "dried thyme", + "butter", + "hot sauce", + "shrimp" + ] + }, + { + "id": 29741, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "minced ginger", + "cilantro", + "carrots", + "brown sugar", + "thai basil", + "salt", + "onions", + "water", + "vegetable oil", + "chinese five-spice powder", + "chuck", + "fresh tomatoes", + "lemongrass", + "star anise", + "bay leaf" + ] + }, + { + "id": 30923, + "cuisine": "japanese", + "ingredients": [ + "bonito", + "konbu" + ] + }, + { + "id": 49563, + "cuisine": "french", + "ingredients": [ + "unsalted pistachios", + "unflavored gelatin", + "almond extract", + "cold water", + "whole milk", + "sugar", + "heavy cream" + ] + }, + { + "id": 43561, + "cuisine": "french", + "ingredients": [ + "black pepper", + "purple onion", + "fresh lemon juice", + "white tuna in water", + "roasted red peppers", + "rolls", + "plum tomatoes", + "sherry vinegar", + "anchovy fillets", + "fresh parsley", + "spinach leaves", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 25024, + "cuisine": "italian", + "ingredients": [ + "egg yolks", + "pasta sauce", + "salt", + "baking potatoes", + "flour" + ] + }, + { + "id": 43472, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "self-rising cornmeal", + "large eggs", + "buttermilk" + ] + }, + { + "id": 349, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chips", + "ancho powder", + "dark brown sugar", + "cumin", + "soy sauce", + "ground black pepper", + "Mexican oregano", + "garlic", + "chopped cilantro", + "cotija", + "olive oil", + "flank steak", + "cilantro", + "fresh lime juice", + "crema mexicana", + "poblano peppers", + "lime wedges", + "salt", + "onions" + ] + }, + { + "id": 34771, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "green tomatoes", + "panko breadcrumbs", + "flour", + "oil", + "mayonaise", + "salt", + "fresh thyme", + "sauce" + ] + }, + { + "id": 19105, + "cuisine": "italian", + "ingredients": [ + "water", + "parmigiano reggiano cheese", + "garlic cloves", + "whole wheat flour", + "salt", + "pinenuts", + "large egg yolks", + "all-purpose flour", + "cherry tomatoes", + "extra-virgin olive oil", + "arugula" + ] + }, + { + "id": 20396, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "pork tenderloin", + "napa cabbage", + "soy sauce", + "sesame oil", + "white pepper", + "vegetable oil", + "sugar", + "sherry", + "salt" + ] + }, + { + "id": 10816, + "cuisine": "greek", + "ingredients": [ + "phyllo" + ] + }, + { + "id": 17284, + "cuisine": "japanese", + "ingredients": [ + "black pepper", + "finely chopped onion", + "ginger", + "cardamom pods", + "coriander", + "tomatoes", + "coriander seeds", + "bay leaves", + "chickpeas", + "instant tea powder", + "clove", + "pomegranate seeds", + "cooking oil", + "salt", + "cumin seed", + "mango", + "chiles", + "garam masala", + "cinnamon", + "green chilies", + "jeera" + ] + }, + { + "id": 13435, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "extra-virgin olive oil", + "garlic cloves", + "balsamic vinegar", + "crushed red pepper", + "basil leaves", + "linguine", + "pepper", + "vine ripened tomatoes", + "salt" + ] + }, + { + "id": 41680, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "cinnamon sticks", + "water", + "clove", + "white sugar", + "peaches" + ] + }, + { + "id": 43244, + "cuisine": "italian", + "ingredients": [ + "capers", + "olive oil", + "fresh parsley", + "fat free less sodium chicken broth", + "grated lemon zest", + "seasoned bread crumbs", + "fresh lemon juice", + "black pepper", + "shallots", + "center cut loin pork chop" + ] + }, + { + "id": 22308, + "cuisine": "french", + "ingredients": [ + "walnut halves", + "natural pistachios", + "golden raisins", + "raisins", + "dried apricot", + "dried dates" + ] + }, + { + "id": 4354, + "cuisine": "french", + "ingredients": [ + "capers", + "sherry wine vinegar", + "hard-boiled egg", + "fresh tarragon", + "dijon mustard", + "sunflower oil", + "sweet gherkin", + "shallots", + "flat leaf parsley" + ] + }, + { + "id": 24083, + "cuisine": "korean", + "ingredients": [ + "garlic", + "spring onions", + "mung bean sprouts", + "gochugaru", + "salt", + "sesame oil", + "toasted sesame seeds" + ] + }, + { + "id": 261, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "olive oil", + "green onions", + "white mushrooms", + "soy sauce", + "Sriracha", + "garlic", + "fresh udon", + "boneless chicken breast", + "ginger", + "black pepper", + "hoisin sauce", + "oil" + ] + }, + { + "id": 43048, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "pepper", + "salt", + "spinach", + "eggplant", + "couscous", + "melted butter", + "yellow squash", + "ground coriander", + "filo dough", + "powdered sugar", + "zucchini", + "onions" + ] + }, + { + "id": 9753, + "cuisine": "chinese", + "ingredients": [ + "potatoes", + "green garlic", + "sugar", + "vegetable oil", + "salt", + "chives", + "dipping sauces", + "soy sauce", + "Italian parsley leaves", + "rice vinegar" + ] + }, + { + "id": 46932, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "Italian turkey sausage", + "dried thyme", + "garlic cloves", + "fat free less sodium chicken broth", + "chopped fresh sage", + "fennel seeds", + "cannellini beans", + "plum tomatoes" + ] + }, + { + "id": 33910, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "vanilla extract", + "water", + "light corn syrup", + "sugar", + "butter", + "baking soda" + ] + }, + { + "id": 21289, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "honey", + "anise", + "sugar", + "baking powder", + "shortening", + "flour", + "water", + "vegetable oil" + ] + }, + { + "id": 40366, + "cuisine": "italian", + "ingredients": [ + "sugar", + "butter", + "egg yolks", + "vanilla extract", + "panettone", + "heavy cream", + "eggs", + "whole milk", + "grated orange" + ] + }, + { + "id": 40582, + "cuisine": "spanish", + "ingredients": [ + "red potato", + "salt", + "olive oil", + "garlic cloves", + "cooking spray", + "dried thyme", + "sauce" + ] + }, + { + "id": 33709, + "cuisine": "british", + "ingredients": [ + "heavy cream", + "white sugar", + "lemon" + ] + }, + { + "id": 29404, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "garlic powder", + "salt", + "poultry seasoning", + "broiler-fryer chicken", + "onion powder", + "hot sauce", + "dried parsley", + "black pepper", + "cooking oil", + "all-purpose flour", + "seasoning mix", + "celery salt", + "dried thyme", + "paprika", + "ground mustard", + "oregano" + ] + }, + { + "id": 10009, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "japanese cucumber", + "crab sticks", + "dashi", + "salt", + "soy sauce", + "sea salt", + "wakame", + "roasted white sesame seeds", + "rice vinegar" + ] + }, + { + "id": 44287, + "cuisine": "indian", + "ingredients": [ + "clove", + "low-fat buttermilk", + "black tea leaves", + "salt", + "brown sugar", + "peeled fresh ginger", + "vanilla extract", + "cardamom pods", + "oats", + "large eggs", + "butter", + "all-purpose flour", + "baking soda", + "baking powder", + "1% low-fat milk", + "cinnamon sticks" + ] + }, + { + "id": 32102, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "cumin", + "granulated garlic", + "cilantro" + ] + }, + { + "id": 8407, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "pepper", + "cayenne pepper", + "andouille sausage", + "diced tomatoes", + "onions", + "green bell pepper", + "brown rice", + "creole seasoning", + "tomato paste", + "boneless chicken thighs", + "salt", + "spaghetti" + ] + }, + { + "id": 24649, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "chicken", + "gai lan", + "rice noodles", + "eggs", + "vinegar", + "sugar", + "oyster sauce" + ] + }, + { + "id": 15240, + "cuisine": "indian", + "ingredients": [ + "water", + "red pepper flakes", + "garlic", + "smoked paprika", + "ground turmeric", + "boneless chicken skinless thigh", + "ground black pepper", + "diced tomatoes", + "ground coriander", + "onions", + "tomato paste", + "garam masala", + "sea salt", + "cayenne pepper", + "coconut milk", + "ground cumin", + "kosher salt", + "vegetable oil", + "ginger", + "ground cardamom", + "chopped cilantro fresh" + ] + }, + { + "id": 33822, + "cuisine": "italian", + "ingredients": [ + "corn kernels", + "scallions", + "fusilli", + "olive oil", + "tomatoes", + "red wine vinegar" + ] + }, + { + "id": 8025, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "red wine vinegar", + "cucumber", + "tomatoes", + "bell pepper", + "salt", + "marjoram", + "olive oil", + "basil", + "onions", + "sugar", + "parsley", + "croutons", + "oregano" + ] + }, + { + "id": 9129, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "unsalted butter", + "basil", + "ground white pepper", + "brandy", + "vermouth", + "garlic", + "canola oil", + "shrimp stock", + "water", + "shallots", + "fine sea salt", + "black peppercorns", + "lobster", + "whipping cream", + "tarragon" + ] + }, + { + "id": 23228, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "fresh oregano", + "fresh basil", + "artichoke hearts", + "boneless skinless chicken breast halves", + "olive oil", + "red bell pepper", + "fresh tomatoes", + "marinara sauce" + ] + }, + { + "id": 12308, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "vegetable oil", + "green pepper", + "onions", + "garam masala", + "paneer", + "cumin seed", + "ground turmeric", + "fresh ginger root", + "wine vinegar", + "green chilies", + "yellow peppers", + "chili powder", + "salt", + "chillies" + ] + }, + { + "id": 40270, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "chicken", + "enchilada sauce", + "shredded cheese", + "corn tortillas" + ] + }, + { + "id": 33905, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "ground black pepper", + "salt", + "dried oregano", + "tasso", + "dried thyme", + "butter", + "fresh mushrooms", + "crawfish", + "ground red pepper", + "all-purpose flour", + "sliced green onions", + "fettucine", + "parmesan cheese", + "whipping cream", + "garlic cloves" + ] + }, + { + "id": 39379, + "cuisine": "british", + "ingredients": [ + "cauliflower", + "dijon mustard", + "cheddar cheese", + "salt", + "plain flour", + "butter", + "milk" + ] + }, + { + "id": 24913, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "chopped cilantro fresh", + "cucumber", + "salt", + "ground cumin", + "plain yogurt", + "chopped fresh mint" + ] + }, + { + "id": 10908, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking soda", + "egg yolks", + "butter", + "corn starch", + "cream of tartar", + "water", + "egg whites", + "baking powder", + "vanilla extract", + "confectioners sugar", + "eggs", + "honey", + "flour", + "almond extract", + "salt", + "sliced almonds", + "unsalted butter", + "whole milk", + "buttermilk", + "heavy whipping cream" + ] + }, + { + "id": 6116, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "shredded mozzarella cheese", + "chicken broth", + "Barilla Oven-Ready Lasagne", + "italian seasoning", + "ricotta cheese", + "ground beef", + "pasta sauce", + "salt" + ] + }, + { + "id": 16640, + "cuisine": "spanish", + "ingredients": [ + "clove", + "water", + "lemon peel", + "dry red wine", + "sugar", + "unsalted butter", + "anise", + "pears", + "powdered sugar", + "vanilla beans", + "anisette", + "vanilla extract", + "vanilla ice cream", + "milk", + "vegetable oil", + "all-purpose flour" + ] + }, + { + "id": 3777, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "chicken breasts", + "cayenne pepper", + "cumin", + "tortillas", + "garlic", + "cream cheese, soften", + "green onions", + "salt", + "rotel tomatoes", + "Mexican cheese blend", + "chili powder", + "ground coriander" + ] + }, + { + "id": 40898, + "cuisine": "southern_us", + "ingredients": [ + "tomatoes", + "cooked bacon", + "unsalted butter", + "grits", + "cheddar cheese", + "freshly ground pepper", + "coarse salt" + ] + }, + { + "id": 30290, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "chicken breasts", + "salt", + "red bell pepper", + "garlic powder", + "paprika", + "cayenne pepper", + "dried oregano", + "dried thyme", + "butter", + "yellow onion", + "roasted tomatoes", + "fettucine", + "green onions", + "cracked black pepper", + "cream cheese" + ] + }, + { + "id": 448, + "cuisine": "indian", + "ingredients": [ + "mayonaise", + "curry powder", + "salt", + "chicken broth", + "grapes", + "boneless skinless chicken breasts", + "mango", + "ground ginger", + "black pepper", + "honey", + "fresh lime juice", + "roasted cashews", + "plain yogurt", + "purple onion" + ] + }, + { + "id": 4822, + "cuisine": "vietnamese", + "ingredients": [ + "lettuce", + "hoisin sauce", + "shrimp", + "rice paper", + "peanuts", + "rice vermicelli", + "beansprouts", + "nuoc nam", + "cilantro leaves", + "fresh mint", + "fish sauce", + "cooked chicken", + "cucumber" + ] + }, + { + "id": 46783, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "asparagus", + "whipping cream", + "rosemary sprigs", + "dry white wine", + "onions", + "water", + "butter", + "fresh rosemary", + "grated parmesan cheese", + "low salt chicken broth" + ] + }, + { + "id": 15495, + "cuisine": "chinese", + "ingredients": [ + "baby bok choy", + "tapioca starch", + "dried shiitake mushrooms", + "water", + "vegetable oil", + "low salt chicken broth", + "soy sauce", + "sesame oil", + "oyster sauce", + "sugar", + "fresh ginger", + "large garlic cloves" + ] + }, + { + "id": 29539, + "cuisine": "italian", + "ingredients": [ + "bread crumb fresh", + "all-purpose flour", + "olive oil", + "risotto", + "large eggs" + ] + }, + { + "id": 15368, + "cuisine": "irish", + "ingredients": [ + "salt", + "ground pepper", + "fresh parsley", + "potatoes", + "onions", + "water", + "lamb" + ] + }, + { + "id": 9145, + "cuisine": "italian", + "ingredients": [ + "pork chops", + "bread crumbs", + "salt", + "grated parmesan cheese", + "olive oil", + "dried parsley" + ] + }, + { + "id": 32531, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "salt", + "sugar", + "sesame seeds", + "eggs", + "minced garlic", + "beef ribs", + "soy sauce", + "green onions" + ] + }, + { + "id": 21338, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ricotta cheese", + "milk", + "white sugar", + "vanilla pudding", + "instant rice", + "vanilla extract" + ] + }, + { + "id": 38322, + "cuisine": "british", + "ingredients": [ + "pepper", + "potatoes", + "salt", + "nutmeg", + "dijon mustard", + "butter", + "onions", + "milk", + "flour", + "sausages", + "wine", + "cooking oil", + "chicken stock cubes" + ] + }, + { + "id": 38689, + "cuisine": "spanish", + "ingredients": [ + "orange", + "serrano chile", + "avocado", + "salt", + "lime rind", + "grated lemon zest", + "purple onion" + ] + }, + { + "id": 11214, + "cuisine": "southern_us", + "ingredients": [ + "frozen whipped topping", + "butter", + "confectioners sugar", + "graham cracker crumbs", + "crushed pineapple", + "bananas", + "cream cheese", + "peanuts", + "cocktail cherries", + "white sugar" + ] + }, + { + "id": 13229, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "whipping cream", + "white baking bar", + "chocolate candy bars", + "ganache", + "vanilla extract", + "cream cheese, soften", + "granulated sugar", + "chocolate curls", + "crackers", + "peanuts", + "peanut butter", + "confectioners sugar" + ] + }, + { + "id": 16639, + "cuisine": "southern_us", + "ingredients": [ + "tomato paste", + "garlic powder", + "worcestershire sauce", + "celery ribs", + "ketchup", + "lean ground beef", + "flat leaf parsley", + "tomato sauce", + "large eggs", + "creole seasoning", + "greek seasoning", + "seasoned bread crumbs", + "butter", + "onions" + ] + }, + { + "id": 34119, + "cuisine": "filipino", + "ingredients": [ + "spring roll wrappers", + "canola oil", + "bananas", + "cinnamon", + "sugar" + ] + }, + { + "id": 34416, + "cuisine": "mexican", + "ingredients": [ + "vegetable stock", + "onions", + "tomatoes", + "garlic", + "cilantro", + "boiling potatoes", + "kosher salt", + "chipotles in adobo" + ] + }, + { + "id": 829, + "cuisine": "italian", + "ingredients": [ + "bread ciabatta", + "large eggs", + "pancetta", + "olive oil", + "arugula", + "pepper", + "large garlic cloves", + "light brown sugar", + "fennel bulb" + ] + }, + { + "id": 22990, + "cuisine": "greek", + "ingredients": [ + "kosher salt", + "lemon", + "bone in skin on chicken thigh", + "red potato", + "red wine vinegar", + "green beans", + "olive oil", + "garlic", + "dried oregano", + "ground black pepper", + "fresh parsley leaves" + ] + }, + { + "id": 5463, + "cuisine": "mexican", + "ingredients": [ + "celery ribs", + "ground black pepper", + "vegetable oil", + "ground coriander", + "red bell pepper", + "dried oregano", + "water", + "cooked chicken", + "paprika", + "garlic cloves", + "corn tortillas", + "ground cumin", + "kosher salt", + "low sodium chicken broth", + "heavy cream", + "scallions", + "sour cream", + "shredded Monterey Jack cheese", + "crushed tomatoes", + "chili powder", + "cayenne pepper", + "carrots", + "onions" + ] + }, + { + "id": 32692, + "cuisine": "french", + "ingredients": [ + "fennel seeds", + "marjoram", + "extra-virgin olive oil", + "lavender buds", + "thyme leaves" + ] + }, + { + "id": 18984, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "parboiled rice", + "garlic", + "celery", + "tomatoes", + "chili powder", + "salt", + "onions", + "pepper flakes", + "boneless skinless chicken breasts", + "smoked sausage", + "bay leaf", + "bell pepper", + "vegetable oil", + "shrimp", + "frozen peas" + ] + }, + { + "id": 31876, + "cuisine": "french", + "ingredients": [ + "pancetta", + "French lentils", + "garlic cloves", + "onions", + "clove", + "salt", + "flat leaf parsley", + "celery ribs", + "extra-virgin olive oil", + "carrots", + "water", + "wild rice", + "bay leaf" + ] + }, + { + "id": 5254, + "cuisine": "japanese", + "ingredients": [ + "gari", + "oil", + "sugar", + "beef sirloin", + "onions", + "sake", + "salt", + "chopped cilantro", + "soy sauce", + "medium-grain rice" + ] + }, + { + "id": 40728, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "yukon gold potatoes", + "parmigiano-reggiano cheese", + "whole milk", + "garlic cloves", + "unsalted butter", + "gruyere cheese", + "kosher salt", + "shallots", + "whole nutmegs" + ] + }, + { + "id": 6411, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "cooked chicken", + "cream cheese", + "cumin", + "flour tortillas", + "onion powder", + "sour cream", + "garlic powder", + "chili powder", + "shredded cheese", + "green onions", + "salsa", + "chopped cilantro" + ] + }, + { + "id": 4871, + "cuisine": "filipino", + "ingredients": [ + "salt", + "sweet rice", + "coconut milk", + "cocoa powder", + "light coconut milk", + "white sugar" + ] + }, + { + "id": 44371, + "cuisine": "brazilian", + "ingredients": [ + "whole milk", + "eggs", + "salt", + "butter", + "tapioca starch", + "monterey jack" + ] + }, + { + "id": 13450, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "tapioca starch", + "orange juice", + "soy sauce", + "extra-virgin olive oil", + "sugar", + "chicken cutlets", + "spaghetti", + "frozen broccoli florets", + "garlic" + ] + }, + { + "id": 49311, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "adobo sauce", + "pepper", + "pork roast", + "salt", + "chopped garlic", + "tomato paste", + "beer" + ] + }, + { + "id": 42858, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "salt", + "ground cinnamon", + "chocolate chips", + "sugar", + "pure vanilla extract", + "whole milk" + ] + }, + { + "id": 17855, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "white mushrooms", + "boneless, skinless chicken breast", + "green onions", + "bow-tie pasta", + "kosher salt", + "shiitake", + "oyster mushrooms", + "store bought low sodium chicken stock", + "sesame oil", + "ground white pepper" + ] + }, + { + "id": 15100, + "cuisine": "southern_us", + "ingredients": [ + "sack", + "mushrooms", + "celery", + "andouille sausage", + "fresh lemon", + "crab boil", + "seasoning", + "celery powder", + "garlic", + "onions", + "corn", + "bay leaves", + "small red potato" + ] + }, + { + "id": 17806, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "garlic cloves", + "cheddar cheese", + "coarse salt", + "white sandwich bread", + "half & half", + "elbow macaroni", + "ground pepper", + "butter" + ] + }, + { + "id": 28340, + "cuisine": "italian", + "ingredients": [ + "butter", + "low sodium chicken stock", + "baby portobello mushrooms", + "heavy cream", + "rigatoni", + "chicken tenderloin", + "onions", + "marsala wine", + "garlic" + ] + }, + { + "id": 38406, + "cuisine": "british", + "ingredients": [ + "sugar", + "strawberries", + "salt", + "lemon juice", + "mint", + "grated lemon zest", + "heavy cream", + "vanilla bean paste" + ] + }, + { + "id": 40089, + "cuisine": "italian", + "ingredients": [ + "cottage cheese", + "ground black pepper", + "salt", + "dried oregano", + "tomato paste", + "crushed tomatoes", + "grated parmesan cheese", + "onions", + "eggs", + "garlic powder", + "lean ground beef", + "white sugar", + "water", + "lasagna noodles", + "shredded mozzarella cheese" + ] + }, + { + "id": 35054, + "cuisine": "french", + "ingredients": [ + "melted butter", + "flour", + "pitted prunes", + "sugar", + "whole milk", + "armagnac", + "large eggs", + "salt", + "large egg yolks", + "vanilla extract" + ] + }, + { + "id": 23770, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "paprika", + "ground turmeric", + "vegetable oil", + "salt", + "chili powder", + "cauliflower florets", + "water", + "russet potatoes", + "frozen peas" + ] + }, + { + "id": 46811, + "cuisine": "mexican", + "ingredients": [ + "chip plain tortilla", + "Country Crock® Spread", + "water", + "knorr chicken flavor bouillon", + "ragu", + "cooked chicken", + "chorizo sausage", + "lime juice", + "chopped cilantro fresh" + ] + }, + { + "id": 2190, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "lemon grass", + "ginger", + "black mustard seeds", + "curry leaves", + "butter", + "salt", + "basmati rice", + "clove", + "pandanus leaf", + "garlic", + "onions", + "water", + "lemon", + "lemon rind", + "ground turmeric" + ] + }, + { + "id": 21360, + "cuisine": "korean", + "ingredients": [ + "rice powder", + "yellow onion", + "white radish", + "sugar", + "napa cabbage", + "garlic cloves", + "fish sauce", + "coarse salt", + "scallions", + "fresh ginger", + "red pepper", + "shrimp" + ] + }, + { + "id": 29990, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "strawberry ice cream", + "marshmallows", + "heavy cream", + "sorbet", + "ladyfingers", + "strawberries" + ] + }, + { + "id": 25298, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "peeled fresh ginger", + "fresh lime juice", + "ground turkey breast", + "purple onion", + "dry roasted peanuts", + "green onions", + "chile paste with garlic", + "cooking spray", + "chinese cabbage" + ] + }, + { + "id": 32033, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "thai basil", + "Thai red curry paste", + "boneless chicken skinless thigh", + "corn oil", + "garlic cloves", + "firmly packed light brown sugar", + "butternut squash", + "rice", + "unsweetened coconut milk", + "lime", + "shallots", + "asian fish sauce" + ] + }, + { + "id": 48729, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "cauliflower florets", + "lemon juice", + "frozen peas", + "sugar", + "chili paste", + "chickpeas", + "coconut milk", + "tomatoes", + "garam masala", + "salt", + "salted cashews", + "chopped cilantro fresh", + "black pepper", + "zucchini", + "garlic cloves", + "onions" + ] + }, + { + "id": 1266, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "garlic cloves", + "bittersweet chocolate", + "tomato paste", + "salt", + "red bell pepper", + "clove", + "extra-virgin olive oil", + "cinnamon sticks", + "boiling water", + "sunflower seeds", + "cumin seed", + "ancho chile pepper" + ] + }, + { + "id": 36475, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "varnish clams", + "red chili peppers", + "shallots", + "dried oregano", + "dry white wine", + "spaghetti", + "olive oil", + "flat leaf parsley", + "chopped garlic" + ] + }, + { + "id": 2871, + "cuisine": "greek", + "ingredients": [ + "honey", + "white sugar", + "ground cinnamon", + "butter", + "cold water", + "ricotta cheese", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 20547, + "cuisine": "japanese", + "ingredients": [ + "lime juice", + "vegetable oil", + "soba noodles", + "nori", + "peeled fresh ginger", + "garlic", + "toasted sesame oil", + "reduced-sodium tamari sauce", + "coarse salt", + "scallions", + "savoy cabbage", + "shallots", + "dried shiitake mushrooms", + "chopped cilantro fresh" + ] + }, + { + "id": 46744, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "yeast", + "melted butter", + "coconut milk", + "salt", + "all-purpose flour" + ] + }, + { + "id": 49219, + "cuisine": "russian", + "ingredients": [ + "green onions", + "red russian kale", + "agave nectar", + "white wine vinegar", + "mayonaise", + "ancho powder", + "celery seed", + "red cabbage", + "salt" + ] + }, + { + "id": 9755, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "russet potatoes", + "beef broth", + "cabbage", + "whole milk", + "salt", + "smoked paprika", + "unsalted butter", + "stout", + "yellow onion", + "chuck", + "pepper", + "green onions", + "all-purpose flour", + "thick-cut bacon" + ] + }, + { + "id": 4370, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "honey", + "vegetable shortening", + "cane syrup", + "dark corn syrup", + "large eggs", + "all-purpose flour", + "pecans", + "unsalted butter", + "vanilla extract", + "light brown sugar", + "kosher salt", + "bourbon whiskey", + "grated nutmeg" + ] + }, + { + "id": 14009, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "salt", + "potato starch", + "vegetable oil", + "chicken thighs", + "orange marmalade", + "orange juice", + "sake", + "ginger" + ] + }, + { + "id": 32444, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "canola oil", + "whole wheat tortillas", + "black beans", + "shredded Monterey Jack cheese", + "salsa" + ] + }, + { + "id": 7336, + "cuisine": "southern_us", + "ingredients": [ + "clove", + "ground cinnamon", + "peach slices", + "ground ginger", + "honey", + "cardamom seeds", + "low-fat vanilla yogurt", + "lime juice", + "mint sprigs", + "candied ginger", + "peaches", + "orange juice" + ] + }, + { + "id": 10339, + "cuisine": "french", + "ingredients": [ + "eggs", + "almonds", + "baking powder", + "vanilla", + "salt", + "cocoa", + "cherries", + "almond extract", + "cake flour", + "confectioners sugar", + "unflavored gelatin", + "granulated sugar", + "instant coffee", + "whipping cream", + "unsweetened chocolate", + "water", + "egg whites", + "butter", + "cocktail cherries", + "candy" + ] + }, + { + "id": 22188, + "cuisine": "mexican", + "ingredients": [ + "water", + "ground black pepper", + "cotija", + "garbanzo beans", + "cilantro", + "kosher salt", + "quinoa", + "fresh lime juice", + "avocado", + "olive oil", + "diced tomatoes" + ] + }, + { + "id": 580, + "cuisine": "cajun_creole", + "ingredients": [ + "oysters", + "vegetable oil", + "salt", + "chopped onion", + "thyme", + "pepper", + "ground red pepper", + "chopped celery", + "green pepper", + "shrimp", + "tomato paste", + "bay leaves", + "paprika", + "all-purpose flour", + "okra", + "oregano", + "andouille sausage", + "green onions", + "garlic", + "broiler-fryers", + "long-grain rice" + ] + }, + { + "id": 21747, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "tortilla chips", + "romaine lettuce", + "ranch dressing", + "tomatoes", + "Taco Bell Taco Seasoning Mix", + "ground beef", + "water", + "sauce" + ] + }, + { + "id": 27913, + "cuisine": "japanese", + "ingredients": [ + "frozen shelled edamame", + "garlic", + "toasted sesame oil", + "wasabi", + "water", + "carrots", + "baby bok choy", + "dried shiitake mushrooms", + "buckwheat soba noodles", + "wakame", + "mellow white miso", + "ginger root" + ] + }, + { + "id": 36787, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "vegetable oil", + "minced garlic", + "long grain white rice", + "black pepper", + "salt", + "water", + "ground cumin" + ] + }, + { + "id": 31787, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "hazelnuts", + "apple cider", + "granny smith apples", + "whole milk", + "grated lemon peel", + "bread crumb fresh", + "whipped cream", + "sugar", + "unsalted butter", + "salt" + ] + }, + { + "id": 15535, + "cuisine": "indian", + "ingredients": [ + "chickpea flour", + "crushed red pepper flakes", + "cumin seed", + "cabbage", + "water", + "salt", + "boiling potatoes", + "red chili powder", + "garlic", + "onions", + "canola oil", + "cauliflower", + "fresh ginger", + "green chilies", + "ground turmeric" + ] + }, + { + "id": 45462, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "cinnamon sugar", + "sugar", + "butter", + "self rising flour", + "milk", + "heavy cream" + ] + }, + { + "id": 12500, + "cuisine": "russian", + "ingredients": [ + "sugar", + "salt", + "cinnamon", + "heavy whipping cream", + "eggs", + "butter", + "yeast", + "milk", + "all-purpose flour" + ] + }, + { + "id": 26215, + "cuisine": "french", + "ingredients": [ + "olive oil", + "butter", + "vidalia onion", + "dry white wine", + "french bread", + "beef broth", + "black pepper", + "shredded swiss cheese" + ] + }, + { + "id": 29857, + "cuisine": "greek", + "ingredients": [ + "spinach", + "chicken breast halves", + "feta cheese crumbles", + "pepper", + "dry bread crumbs", + "vegetable oil cooking spray", + "balsamic vinegar", + "fresh basil", + "olive oil", + "margarine" + ] + }, + { + "id": 37321, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "taco seasoning", + "onions", + "diced tomatoes", + "ground turkey", + "hominy", + "pinto beans", + "black beans", + "Hidden Valley® Original Ranch® Dressing", + "rotel tomatoes" + ] + }, + { + "id": 8181, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "salt", + "dried fettuccine", + "nonfat ricotta cheese", + "nonfat yogurt", + "ground white pepper", + "large egg whites", + "part-skim ricotta cheese" + ] + }, + { + "id": 36261, + "cuisine": "french", + "ingredients": [ + "white wine", + "fresh thyme", + "butter", + "fresh oregano", + "fresh parsley", + "chicken stock", + "olive oil", + "bay leaves", + "garlic", + "carrots", + "boneless skinless chicken breast halves", + "fresh rosemary", + "salt and ground black pepper", + "spring onions", + "all-purpose flour", + "celery", + "water", + "leeks", + "fresh tarragon", + "fresh mushrooms", + "onions" + ] + }, + { + "id": 17439, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime wedges", + "ginger root", + "low sodium chicken broth", + "scallions", + "bird chile", + "lemongrass", + "cilantro", + "lime leaves", + "unsweetened coconut milk", + "chicken breasts", + "sliced mushrooms" + ] + }, + { + "id": 25005, + "cuisine": "mexican", + "ingredients": [ + "milk", + "sour cream", + "margarine", + "salt", + "chipotles in adobo", + "chicken bouillon granules", + "chicken leg quarters" + ] + }, + { + "id": 32732, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "caesar salad dressing", + "frozen chopped spinach", + "butter", + "croutons", + "quickcooking grits", + "freshly ground pepper", + "parmesan cheese", + "purple onion", + "garlic salt" + ] + }, + { + "id": 1700, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "boneless skinless chicken breasts", + "ginger", + "rice vinegar", + "scallions", + "peanuts", + "chili pepper flakes", + "salt", + "roasted peanuts", + "carrots", + "soy sauce", + "sesame oil", + "garlic", + "mustard powder", + "chow mein noodles", + "bell pepper", + "red pepper flakes", + "cilantro leaves", + "dark sesame oil", + "iceberg lettuce" + ] + }, + { + "id": 39673, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "ground black pepper", + "shallots", + "water", + "fresh thyme", + "sugar", + "unsalted butter", + "salt", + "olive oil", + "frozen pastry puff sheets" + ] + }, + { + "id": 1708, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "butter", + "large eggs", + "salt", + "baking powder", + "white cornmeal", + "baking soda", + "buttermilk" + ] + }, + { + "id": 27202, + "cuisine": "mexican", + "ingredients": [ + "raisins", + "corn tortillas", + "ground cumin", + "tomato paste", + "extra-virgin olive oil", + "chopped cilantro fresh", + "diced tomatoes", + "pimento stuffed green olives", + "green bell pepper", + "ground allspice", + "skirt steak" + ] + }, + { + "id": 1741, + "cuisine": "mexican", + "ingredients": [ + "cilantro", + "pickled jalapeno peppers", + "sour cream", + "ranch dressing" + ] + }, + { + "id": 13365, + "cuisine": "russian", + "ingredients": [ + "reduced sodium chicken broth", + "smoked kielbasa", + "granny smith apples", + "unsalted butter", + "olive oil", + "onions", + "black pepper", + "salt" + ] + }, + { + "id": 16019, + "cuisine": "jamaican", + "ingredients": [ + "flour tortillas", + "slaw mix", + "low fat coleslaw dressing", + "prepared mustard", + "caribbean jerk seasoning", + "turkey breast tenderloins", + "tomatoes", + "jalapeno chilies" + ] + }, + { + "id": 47191, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "pita rounds", + "garlic cloves", + "freshly ground pepper", + "salt" + ] + }, + { + "id": 45904, + "cuisine": "japanese", + "ingredients": [ + "hijiki", + "dark sesame oil", + "dried shiitake mushrooms", + "onions", + "brown rice", + "hot water", + "low sodium soy sauce", + "edamame", + "toasted sesame seeds" + ] + }, + { + "id": 2655, + "cuisine": "southern_us", + "ingredients": [ + "boneless skinless chicken breasts", + "olive oil", + "smoked paprika", + "black pepper", + "salt", + "garlic powder" + ] + }, + { + "id": 13592, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "salt", + "creole seasoning", + "vegetable oil", + "hot sauce", + "meat", + "all-purpose flour", + "buttermilk", + "cayenne pepper" + ] + }, + { + "id": 21119, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "apple cider vinegar", + "chipotle peppers", + "chicken broth", + "chuck roast", + "garlic", + "dried oregano", + "ground black pepper", + "extra-virgin olive oil", + "adobo sauce", + "ground cloves", + "bay leaves", + "fresh lime juice", + "ground cumin" + ] + }, + { + "id": 28231, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "fennel bulb", + "extra-virgin olive oil", + "escarole", + "honey", + "balsamic vinegar", + "grated lemon zest", + "black pepper", + "cannellini beans", + "purple onion", + "fennel seeds", + "fresh parmesan cheese", + "diced tomatoes", + "fresh lemon juice" + ] + }, + { + "id": 7696, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "chinese five-spice powder", + "chicken wings", + "rice vinegar", + "chili flakes", + "garlic", + "kosher salt", + "peanut oil" + ] + }, + { + "id": 2230, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "vegetarian oyster sauce", + "soybean sprouts", + "ginkgo nut", + "dried black mushrooms", + "sugar", + "fresh ginger", + "garlic cloves", + "bean threads", + "bean curd skins", + "cake", + "hot water", + "romaine lettuce", + "light soy sauce", + "peanut oil", + "bamboo shoots" + ] + }, + { + "id": 19323, + "cuisine": "brazilian", + "ingredients": [ + "manioc flour", + "olive oil", + "white rice", + "red bell pepper", + "eggs", + "minced garlic", + "cracked black pepper", + "diced yellow onion", + "red kidney beans", + "green bell pepper", + "unsalted butter", + "smoked sausage", + "thick-cut bacon", + "chicken stock", + "farofa", + "bay leaves", + "salt" + ] + }, + { + "id": 10008, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "pepper", + "sesame oil", + "frozen peas", + "soy sauce", + "boneless skinless chicken breasts", + "salt", + "eggs", + "garlic powder", + "ginger", + "white onion", + "chili powder", + "cooked white rice" + ] + }, + { + "id": 32115, + "cuisine": "italian", + "ingredients": [ + "almond extract", + "sugar", + "blanched almonds", + "salt", + "large egg whites", + "apricot jam" + ] + }, + { + "id": 29418, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "large eggs", + "all-purpose flour", + "hazelnuts", + "unsalted butter", + "salt", + "sugar", + "almonds", + "heavy cream", + "light brown sugar", + "honey", + "baking powder" + ] + }, + { + "id": 10301, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "gruyere cheese", + "sliced mushrooms", + "chicken broth", + "whole milk", + "all-purpose flour", + "olive oil", + "salt", + "baby spinach leaves", + "linguine", + "garlic cloves" + ] + }, + { + "id": 20690, + "cuisine": "italian", + "ingredients": [ + "melted butter", + "olive oil", + "onion powder", + "cheese", + "sausages", + "sausage links", + "ground black pepper", + "butter", + "all-purpose flour", + "dried oregano", + "tomato purée", + "garlic powder", + "ricotta cheese", + "salt", + "white sugar", + "warm water", + "dry yeast", + "crushed red pepper flakes", + "hot sauce" + ] + }, + { + "id": 417, + "cuisine": "southern_us", + "ingredients": [ + "poblano peppers", + "fatfree lowsodium chicken broth", + "black-eyed peas", + "reduced-fat sour cream", + "diced onions", + "cooking spray", + "garlic cloves", + "kosher salt", + "green onions", + "chopped cilantro fresh" + ] + }, + { + "id": 11527, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "all-purpose flour", + "vidalia onion", + "paprika", + "oil", + "yellow corn meal", + "ground black pepper", + "cayenne pepper", + "milk", + "salt", + "white sugar" + ] + }, + { + "id": 24544, + "cuisine": "russian", + "ingredients": [ + "sugar", + "fresh cranberries", + "potato starch", + "water" + ] + }, + { + "id": 5447, + "cuisine": "moroccan", + "ingredients": [ + "hungarian sweet paprika", + "olive oil", + "couscous", + "ground cumin", + "ground cinnamon", + "fresh lemon juice", + "boneless skinless chicken breast halves", + "ground ginger", + "diced tomatoes", + "onions", + "golden brown sugar", + "low salt chicken broth", + "chopped cilantro fresh" + ] + }, + { + "id": 18250, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "green pepper", + "garlic cloves", + "ground cumin", + "salt", + "cumin seed", + "onions", + "chili powder", + "okra", + "lemon juice", + "garam masala", + "cilantro leaves", + "oil", + "ground turmeric" + ] + }, + { + "id": 24378, + "cuisine": "russian", + "ingredients": [ + "brown sugar", + "cider vinegar", + "large eggs", + "brown rice flour", + "molasses", + "unsalted butter", + "salt", + "flax seed meal", + "caraway seeds", + "tapioca flour", + "dry yeast", + "sorghum flour", + "unsweetened cocoa powder", + "warm water", + "coffee granules", + "cooking spray", + "xanthan gum" + ] + }, + { + "id": 30632, + "cuisine": "french", + "ingredients": [ + "fresh coriander", + "gingerroot", + "cinnamon sticks", + "saffron threads", + "chopped onion", + "fresh parsley leaves", + "chicken", + "olive oil", + "garlic cloves", + "rice pilaf", + "preserved lemon", + "brine-cured black olives", + "fresh lemon juice" + ] + }, + { + "id": 16649, + "cuisine": "mexican", + "ingredients": [ + "baked corn tortilla chips", + "cooking spray", + "purple onion", + "chopped cilantro fresh", + "crumbles", + "non-fat sour cream", + "pinto beans", + "romaine lettuce", + "diced tomatoes", + "chopped onion", + "avocado", + "chopped green bell pepper", + "shredded sharp cheddar cheese", + "chipotles in adobo" + ] + }, + { + "id": 45932, + "cuisine": "mexican", + "ingredients": [ + "extra lean ground beef", + "olive oil", + "jalapeno chilies", + "red bell pepper", + "dried oregano", + "water", + "quinoa", + "garlic", + "dried parsley", + "green bell pepper", + "crushed tomatoes", + "zucchini", + "frozen corn kernels", + "chopped cilantro fresh", + "black beans", + "salt and ground black pepper", + "chili powder", + "onions", + "ground cumin" + ] + }, + { + "id": 6864, + "cuisine": "italian", + "ingredients": [ + "eggs", + "margarine", + "salt", + "white sugar", + "anise seed", + "all-purpose flour", + "baking powder", + "chopped walnuts" + ] + }, + { + "id": 20003, + "cuisine": "southern_us", + "ingredients": [ + "refrigerated biscuits", + "boneless skinless chicken", + "frozen vegetables", + "cream of chicken soup", + "onions" + ] + }, + { + "id": 43217, + "cuisine": "cajun_creole", + "ingredients": [ + "ground cloves", + "salt", + "dri leav thyme", + "onions", + "green bell pepper", + "bay leaves", + "beef broth", + "garlic cloves", + "sliced green onions", + "tomato paste", + "pepper", + "all-purpose flour", + "creole seasoning", + "canola oil", + "tomato sauce", + "chopped celery", + "cayenne pepper", + "flat leaf parsley", + "chuck" + ] + }, + { + "id": 14801, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "baking powder", + "sauce", + "chicken broth", + "quickcooking grits", + "buttermilk", + "yellow corn meal", + "large eggs", + "butter", + "thyme sprigs", + "milk", + "ground red pepper", + "salt" + ] + }, + { + "id": 7570, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "crushed red pepper flakes", + "red bell pepper", + "green onions", + "garlic", + "cooked chicken breasts", + "reduced sodium soy sauce", + "ginger", + "fresh lime juice", + "reduced sodium chicken broth", + "wheat", + "peanut butter" + ] + }, + { + "id": 7780, + "cuisine": "french", + "ingredients": [ + "cannelloni", + "sauce", + "large eggs", + "chopped fresh thyme", + "fresh parsley", + "cooking spray", + "chopped fresh sage", + "grated parmesan cheese", + "ground veal" + ] + }, + { + "id": 39925, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "fresh ginger", + "boneless skinless chicken breasts", + "kosher salt", + "jalapeno chilies", + "cooked white rice", + "olive oil", + "cilantro stems", + "soy sauce", + "eggplant", + "yellow onion" + ] + }, + { + "id": 15547, + "cuisine": "italian", + "ingredients": [ + "yellow onion", + "olive oil", + "ground beef", + "italian sausage", + "flat leaf parsley", + "garlic" + ] + }, + { + "id": 12475, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "salt", + "medium shrimp", + "chicken stock", + "shallots", + "ground white pepper", + "spring onions", + "cilantro leaves", + "greens", + "cabbage leaves", + "ground pork", + "hot water" + ] + }, + { + "id": 27602, + "cuisine": "british", + "ingredients": [ + "sugar", + "baking powder", + "all-purpose flour", + "unsalted butter", + "buttermilk", + "large eggs", + "salt", + "baking soda", + "quick-cooking oats" + ] + }, + { + "id": 32186, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "cachaca", + "kiwi fruits", + "sugar" + ] + }, + { + "id": 26908, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "boneless skinless chicken breast halves", + "ground black pepper", + "salt", + "tomatoes", + "chees fresh mozzarella", + "balsamic vinaigrette salad dressing", + "fresh basil leaves" + ] + }, + { + "id": 17306, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "shredded lettuce", + "onions", + "lime juice", + "sweet potatoes", + "garlic cloves", + "pepper", + "soy milk", + "salt", + "ground cumin", + "avocado", + "fresh cilantro", + "chili powder", + "corn tortillas" + ] + }, + { + "id": 42504, + "cuisine": "spanish", + "ingredients": [ + "crushed red pepper", + "plum tomatoes", + "ground black pepper", + "garlic cloves", + "extra-virgin olive oil", + "fresh parsley", + "fresh basil", + "salt" + ] + }, + { + "id": 47045, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "clam juice", + "salt", + "bay scallops", + "crushed red pepper flakes", + "fresh parsley", + "sun-dried tomatoes", + "butter", + "medium shrimp", + "pasta", + "lemon zest", + "garlic" + ] + }, + { + "id": 1342, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "butter", + "all-purpose flour", + "dried cranberries", + "yellow corn meal", + "large egg whites", + "chopped fresh thyme", + "salt", + "chopped pecans", + "black pepper", + "cooking spray", + "1% low-fat milk", + "chopped onion", + "fat free less sodium chicken broth", + "baking powder", + "chopped celery", + "chopped fresh sage" + ] + }, + { + "id": 15085, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger", + "rice noodles", + "cilantro leaves", + "cinnamon sticks", + "sliced green onions", + "sugar", + "hoisin sauce", + "star anise", + "green chilies", + "sliced shallots", + "anise seed", + "chili paste", + "sirloin steak", + "yellow onion", + "beansprouts", + "chuck", + "lime", + "basil leaves", + "salt", + "fat", + "asian fish sauce" + ] + }, + { + "id": 37060, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "flour tortillas", + "vegetable oil", + "salsa", + "sour cream", + "brown sugar", + "lime juice", + "chili powder", + "worcestershire sauce", + "cayenne pepper", + "ground cumin", + "pico de gallo", + "minced garlic", + "bell pepper", + "red pepper flakes", + "yellow onion", + "chopped cilantro", + "black pepper", + "boneless chicken breast", + "lime wedges", + "cilantro", + "smoked paprika" + ] + }, + { + "id": 29162, + "cuisine": "chinese", + "ingredients": [ + "long-grain rice", + "water" + ] + }, + { + "id": 42941, + "cuisine": "mexican", + "ingredients": [ + "all-purpose flour", + "vanilla extract", + "confectioners sugar", + "salt", + "butter", + "chopped pecans" + ] + }, + { + "id": 2958, + "cuisine": "italian", + "ingredients": [ + "coarse salt", + "arugula", + "olive oil", + "shredded mozzarella cheese", + "french bread", + "garlic cloves", + "extra-virgin olive oil" + ] + }, + { + "id": 27425, + "cuisine": "thai", + "ingredients": [ + "lettuce", + "lime juice", + "purple onion", + "rib eye steaks", + "cherry tomatoes", + "salt", + "fish sauce", + "mint leaves", + "cilantro leaves", + "sugar", + "vegetable oil", + "cucumber" + ] + }, + { + "id": 31533, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "russet potatoes", + "grated lemon peel", + "fresh sage", + "grated parmesan cheese", + "all-purpose flour", + "ground nutmeg", + "butter", + "ground black pepper", + "salt" + ] + }, + { + "id": 48167, + "cuisine": "irish", + "ingredients": [ + "napa cabbage", + "small red potato", + "milk", + "bacon", + "kosher salt", + "butter", + "ground black pepper", + "yellow onion" + ] + }, + { + "id": 35328, + "cuisine": "southern_us", + "ingredients": [ + "spices", + "bay leaf", + "firmly packed brown sugar", + "worcestershire sauce", + "water", + "hot sauce", + "red wine vinegar" + ] + }, + { + "id": 26822, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "vegetable oil", + "low sodium chicken broth", + "tomatoes", + "green onions", + "granulated sugar", + "firm tofu" + ] + }, + { + "id": 45476, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "crimini mushrooms", + "pancetta", + "marinara sauce", + "grated parmesan cheese", + "mozzarella cheese", + "pizza doughs" + ] + }, + { + "id": 46210, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "ogura-an", + "baking powder", + "sugar", + "pastry flour", + "katakuriko" + ] + }, + { + "id": 17453, + "cuisine": "indian", + "ingredients": [ + "water", + "garlic", + "black mustard seeds", + "tumeric", + "nut oil", + "ground coriander", + "onions", + "asafoetida", + "potatoes", + "cilantro leaves", + "juice", + "red chili peppers", + "sea salt", + "cumin seed" + ] + }, + { + "id": 47754, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "white hominy", + "tomatillos", + "dried oregano", + "avocado", + "olive oil", + "jalapeno chilies", + "cilantro", + "lime", + "radishes", + "large garlic cloves", + "chicken stock", + "salt and ground black pepper", + "chicken breasts", + "tortilla chips" + ] + }, + { + "id": 37821, + "cuisine": "italian", + "ingredients": [ + "sugar", + "fresh lemon juice", + "honeydew melon", + "prosecco" + ] + }, + { + "id": 8381, + "cuisine": "mexican", + "ingredients": [ + "Old El Paso™ refried beans", + "tortilla chips", + "green bell pepper", + "Old El Paso™ Thick 'n Chunky salsa", + "ripe olives", + "tomatoes", + "green onions", + "40% less sodium taco seasoning mix", + "shredded cheddar cheese", + "shredded lettuce", + "ground beef" + ] + }, + { + "id": 38602, + "cuisine": "french", + "ingredients": [ + "mint", + "egg yolks", + "white chocolate", + "vanilla extract", + "ice cubes", + "whole cranberry sauce", + "cranberries", + "sugar", + "whipping cream" + ] + }, + { + "id": 20838, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "red wine vinegar", + "pinenuts", + "dry white wine", + "extra-virgin olive oil", + "lower sodium chicken broth", + "fennel bulb", + "raisins", + "kosher salt", + "chicken cutlets", + "dried rosemary" + ] + }, + { + "id": 10342, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "whole milk", + "salt", + "cornmeal", + "sliced tomatoes", + "garlic powder", + "green tomatoes", + "lemon juice", + "pepper", + "basil leaves", + "oil", + "eggs", + "flour", + "ancho powder", + "smoked paprika" + ] + }, + { + "id": 22851, + "cuisine": "southern_us", + "ingredients": [ + "golden raisins", + "almonds", + "raisins", + "salt and ground black pepper", + "vegetable oil", + "shredded carrots", + "apples" + ] + }, + { + "id": 20856, + "cuisine": "greek", + "ingredients": [ + "pepper", + "extra-virgin olive oil", + "shrimp", + "green onions", + "salt", + "fresh parsley", + "peeled tomatoes", + "garlic", + "feta cheese crumbles", + "dry white wine", + "fresh oregano", + "onions" + ] + }, + { + "id": 1468, + "cuisine": "chinese", + "ingredients": [ + "water", + "oyster mushrooms", + "freshly ground pepper", + "bok choy", + "low sodium soy sauce", + "sherry", + "salt", + "corn starch", + "canola oil", + "chicken stock", + "fresh ginger", + "crushed red pepper", + "garlic cloves", + "boneless skinless chicken breast halves", + "sugar", + "sesame oil", + "rice vinegar", + "red bell pepper" + ] + }, + { + "id": 38174, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "orange juice", + "lime peel", + "pomegranate juice", + "tequila" + ] + }, + { + "id": 33436, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "celery", + "mayonaise", + "salt", + "red potato", + "green onions", + "pepper", + "carrots" + ] + }, + { + "id": 26348, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "hoisin sauce", + "broccoli", + "toasted sesame oil", + "eggs", + "minced ginger", + "cilantro", + "scallions", + "minced garlic", + "ramen noodles", + "peanut oil", + "brown sugar", + "shiitake", + "rice vinegar", + "red bell pepper" + ] + }, + { + "id": 35256, + "cuisine": "thai", + "ingredients": [ + "chili flakes", + "soy sauce", + "ginger", + "fish sauce", + "steamed rice", + "gai lan", + "lemongrass", + "brown sugar", + "chicken thigh fillets" + ] + }, + { + "id": 10364, + "cuisine": "british", + "ingredients": [ + "Jell-O Gelatin", + "bittersweet chocolate", + "sponge cake", + "vanilla pudding", + "jelli strawberri", + "heavy cream" + ] + }, + { + "id": 2788, + "cuisine": "russian", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "water", + "whole milk", + "saffron", + "active dry yeast", + "salt", + "sugar", + "large eggs", + "flour for dusting" + ] + }, + { + "id": 29059, + "cuisine": "southern_us", + "ingredients": [ + "chowchow", + "pork", + "shredded Monterey Jack cheese", + "prebaked pizza crusts", + "barbecue sauce" + ] + }, + { + "id": 37735, + "cuisine": "japanese", + "ingredients": [ + "mayonaise", + "lime juice", + "toasted sesame oil", + "lime zest", + "gari", + "chives", + "wasabi paste", + "scallops", + "vegetable oil", + "sugar", + "sesame seeds" + ] + }, + { + "id": 33574, + "cuisine": "spanish", + "ingredients": [ + "grape tomatoes", + "large eggs", + "salt", + "pepper", + "fingerling potatoes", + "fresh corn", + "grated parmesan cheese", + "garlic cloves", + "olive oil", + "basil" + ] + }, + { + "id": 3837, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "green olives", + "cucumber", + "roma tomatoes", + "romaine lettuce" + ] + }, + { + "id": 595, + "cuisine": "mexican", + "ingredients": [ + "picante sauce", + "salt", + "ground cumin", + "black beans", + "jalapeno chilies", + "chopped cilantro", + "green bell pepper", + "white hominy", + "red bell pepper", + "white onion", + "green onions", + "white sugar" + ] + }, + { + "id": 35183, + "cuisine": "italian", + "ingredients": [ + "soft goat's cheese", + "large garlic cloves", + "mozzarella cheese", + "plum tomatoes", + "pizza crust", + "fresh basil leaves", + "olive oil", + "japanese eggplants" + ] + }, + { + "id": 42358, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "garlic", + "ground allspice", + "chicken", + "avocado", + "hominy", + "tomatillos", + "yellow onion", + "bay leaf", + "celery ribs", + "lime juice", + "whole cloves", + "salt", + "allspice berries", + "ground cumin", + "black peppercorns", + "cayenne", + "cilantro", + "kale leaves", + "chopped cilantro" + ] + }, + { + "id": 40584, + "cuisine": "italian", + "ingredients": [ + "fennel bulb", + "garlic cloves", + "fat free less sodium chicken broth", + "leeks", + "cranberry beans", + "cooking spray", + "red bell pepper", + "fronds", + "Italian turkey sausage" + ] + }, + { + "id": 14086, + "cuisine": "italian", + "ingredients": [ + "pizza crust", + "shredded mozzarella cheese", + "green onions", + "barbecue sauce", + "dried oregano", + "cooked chicken" + ] + }, + { + "id": 17216, + "cuisine": "italian", + "ingredients": [ + "capers", + "olive oil", + "bow-tie pasta", + "pinenuts", + "balsamic vinegar", + "garlic cloves", + "cherry tomatoes", + "crushed red pepper", + "pitted kalamata olives", + "feta cheese", + "fresh oregano" + ] + }, + { + "id": 42606, + "cuisine": "mexican", + "ingredients": [ + "salt", + "ice cubes", + "fresh lime juice", + "cold water", + "cucumber", + "sugar" + ] + }, + { + "id": 45176, + "cuisine": "japanese", + "ingredients": [ + "pork", + "mirin", + "carrots", + "sake", + "sugar pea", + "salt", + "soy sauce", + "potatoes", + "onions", + "sugar", + "water", + "oil" + ] + }, + { + "id": 9552, + "cuisine": "french", + "ingredients": [ + "Hogue Cabernet Sauvignon", + "garlic", + "onions", + "olive oil", + "diced tomatoes", + "flat leaf parsley", + "haddock", + "cracked black pepper", + "celery", + "parmigiana-reggiano", + "sea salt", + "white beans", + "olive tapenade" + ] + }, + { + "id": 7717, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "peas", + "masala", + "brown mustard seeds", + "cumin seed", + "potatoes", + "salt", + "cauliflower", + "cilantro", + "oil" + ] + }, + { + "id": 32069, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "rice vinegar", + "bamboo shoots", + "large eggs", + "garlic chili sauce", + "shiitake", + "firm tofu", + "chicken stock", + "green onions", + "carrots" + ] + }, + { + "id": 18737, + "cuisine": "jamaican", + "ingredients": [ + "baking powder", + "cornmeal", + "water", + "salt", + "sugar", + "vegetable oil", + "baking soda", + "all-purpose flour" + ] + }, + { + "id": 9916, + "cuisine": "italian", + "ingredients": [ + "white chocolate", + "vanilla", + "grated orange", + "sugar", + "large eggs", + "all-purpose flour", + "unsalted butter", + "salt", + "dried currants", + "baking powder", + "shelled pistachios" + ] + }, + { + "id": 2417, + "cuisine": "indian", + "ingredients": [ + "sugar", + "crushed red pepper flakes", + "green chilies", + "onions", + "tomatoes", + "pandanus leaf", + "garlic", + "black mustard seeds", + "canola oil", + "curry leaves", + "frozen okra", + "ginger", + "cumin seed", + "ground turmeric", + "red chili powder", + "seeds", + "salt", + "cinnamon sticks" + ] + }, + { + "id": 35015, + "cuisine": "japanese", + "ingredients": [ + "dried bonito flakes", + "broth", + "natto", + "scallions", + "quail eggs", + "soba noodles", + "Japanese soy sauce", + "shredded nori" + ] + }, + { + "id": 1755, + "cuisine": "spanish", + "ingredients": [ + "endive", + "all-purpose flour", + "cabrales", + "whole milk", + "unsalted butter", + "cracked black pepper", + "salad", + "large eggs", + "coarse kosher salt" + ] + }, + { + "id": 5762, + "cuisine": "french", + "ingredients": [ + "bay leaves", + "salt", + "garlic cloves", + "tomatoes", + "butter", + "beef broth", + "onions", + "celery ribs", + "mushrooms", + "all-purpose flour", + "fresh parsley", + "dried thyme", + "dry red wine", + "freshly ground pepper" + ] + }, + { + "id": 4217, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "extra-virgin olive oil", + "roasted red peppers", + "dried oregano", + "feta cheese", + "fresh parsley", + "kalamata" + ] + }, + { + "id": 38694, + "cuisine": "greek", + "ingredients": [ + "eggs", + "green onions", + "olive oil cooking spray", + "spinach", + "large garlic cloves", + "phyllo pastry", + "olive oil", + "nonfat milk", + "dried oregano", + "feta cheese", + "corn starch" + ] + }, + { + "id": 46539, + "cuisine": "french", + "ingredients": [ + "dried thyme", + "whole milk", + "all-purpose flour", + "large eggs", + "butter", + "grated Gruyère cheese", + "ground black pepper", + "chili powder", + "cayenne pepper", + "milk", + "grated parmesan cheese", + "salt", + "pepperoni" + ] + }, + { + "id": 20550, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "reduced-fat sour cream", + "lemon juice", + "fresh cilantro", + "garlic", + "cotija", + "anchovy paste", + "chili", + "pumpkin seeds" + ] + }, + { + "id": 48039, + "cuisine": "vietnamese", + "ingredients": [ + "mung beans", + "banana leaves", + "ground black pepper", + "color food green", + "fish sauce", + "shallots", + "salt", + "glutinous rice", + "vegetable oil", + "pork shoulder" + ] + }, + { + "id": 6617, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "olive oil", + "fresh parsley", + "french baguette", + "goat cheese", + "fresh basil", + "salt", + "pepper", + "garlic cloves" + ] + }, + { + "id": 6186, + "cuisine": "irish", + "ingredients": [ + "whipping cream", + "unsalted butter", + "dark brown sugar" + ] + }, + { + "id": 15622, + "cuisine": "italian", + "ingredients": [ + "boneless chicken thighs", + "large eggs", + "butter", + "parmesan cheese", + "vegetable oil", + "kosher salt", + "marinara sauce", + "freshly ground pepper", + "seasoned bread crumbs", + "vermicelli", + "fresh parsley" + ] + }, + { + "id": 33634, + "cuisine": "spanish", + "ingredients": [ + "butter", + "garlic", + "turkey", + "adobo seasoning", + "rosemary", + "vegetable broth", + "bacon", + "fresh parsley" + ] + }, + { + "id": 4330, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "sea salt", + "garlic cloves", + "chopped cilantro", + "steak tips", + "chili paste", + "ground coriander", + "ginger root", + "garlic powder", + "paprika", + "fresh lemon juice", + "ground cumin", + "cider vinegar", + "onion powder", + "freshly ground pepper", + "chopped parsley" + ] + }, + { + "id": 4609, + "cuisine": "indian", + "ingredients": [ + "water", + "paprika", + "serrano chile", + "red lentils", + "lime juice", + "ginger", + "canola oil", + "tomatoes", + "fresh cilantro", + "garlic", + "ground cumin", + "tumeric", + "sea salt", + "onions" + ] + }, + { + "id": 3955, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "chili pepper flakes", + "scallions", + "radishes", + "soybean paste", + "onions", + "tofu", + "mushroom caps", + "medium zucchini", + "broth", + "chili pepper", + "vinegar", + "seafood" + ] + }, + { + "id": 9836, + "cuisine": "mexican", + "ingredients": [ + "light mayonnaise", + "cayenne pepper", + "lime", + "fine sea salt", + "queso fresco", + "chipotles in adobo", + "corn husks", + "crème fraîche" + ] + }, + { + "id": 48738, + "cuisine": "irish", + "ingredients": [ + "brown sugar", + "baking soda", + "baking powder", + "all-purpose flour", + "ground cinnamon", + "water", + "large eggs", + "fresh orange juice", + "dried plum", + "ground cloves", + "granulated sugar", + "butter", + "fresh lemon juice", + "powdered sugar", + "whole wheat flour", + "cooking spray", + "salt" + ] + }, + { + "id": 21224, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "butter", + "poblano chiles", + "homemade chicken broth", + "ground black pepper", + "salt", + "green chile", + "cooked chicken", + "sour cream", + "olive oil", + "large garlic cloves", + "corn tortillas" + ] + }, + { + "id": 1705, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "serrano peppers", + "paprika", + "cayenne pepper", + "coconut milk", + "lemongrass", + "vegetable oil", + "salt", + "ground coriander", + "water", + "shallots", + "garlic", + "fenugreek seeds", + "ground cumin", + "ground cinnamon", + "fresh ginger", + "boneless chicken", + "cilantro leaves", + "ground cardamom" + ] + }, + { + "id": 47085, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "shredded cheese", + "refried beans", + "ground beef", + "taco shells", + "taco toppings", + "taco seasoning" + ] + }, + { + "id": 25044, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "hot pepper sauce", + "beef broth", + "fresh basil", + "lime", + "thai chile", + "mung bean sprouts", + "cold water", + "fresh cilantro", + "green onions", + "oyster sauce", + "top round steak", + "fresh ginger root", + "dried rice noodles" + ] + }, + { + "id": 38000, + "cuisine": "french", + "ingredients": [ + "italian sausage", + "fat free less sodium chicken broth", + "salt", + "onions", + "great northern beans", + "ground black pepper", + "garlic cloves", + "tomato purée", + "water", + "leg quarters", + "canola oil", + "bread crumbs", + "bacon slices", + "leg of lamb" + ] + }, + { + "id": 26798, + "cuisine": "french", + "ingredients": [ + "fat free milk", + "italian seasoning", + "frozen chopped spinach", + "salt", + "fontina cheese", + "all-purpose flour", + "large eggs" + ] + }, + { + "id": 3974, + "cuisine": "greek", + "ingredients": [ + "tomato paste", + "ground black pepper", + "celery", + "dried oregano", + "dried thyme", + "salt", + "onions", + "water", + "diced tomatoes", + "fresh parsley", + "olive oil", + "carrots", + "white kidney beans" + ] + }, + { + "id": 17531, + "cuisine": "southern_us", + "ingredients": [ + "sweet pickle relish", + "prepared mustard", + "ground black pepper", + "paprika", + "mayonaise", + "Tabasco Pepper Sauce", + "sweet gherkin", + "large eggs", + "salt" + ] + }, + { + "id": 21993, + "cuisine": "russian", + "ingredients": [ + "water", + "potatoes", + "ground pork", + "onions", + "sugar", + "vinegar", + "bacon", + "blueberries", + "melted butter", + "cherries", + "2% reduced-fat milk", + "all-purpose flour", + "pierogi", + "large eggs", + "turkey", + "sour cream" + ] + }, + { + "id": 36383, + "cuisine": "mexican", + "ingredients": [ + "lime", + "red wine vinegar", + "coarse kosher salt", + "shallots", + "cilantro leaves", + "ground black pepper", + "extra-virgin olive oil", + "arugula", + "orange", + "queso fresco", + "beets" + ] + }, + { + "id": 48522, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "dried sage", + "salt", + "corn bread", + "black pepper", + "large eggs", + "butter", + "red bell pepper", + "fat free less sodium chicken broth", + "cooking spray", + "chopped celery", + "fresh parsley", + "prunes", + "frozen whole kernel corn", + "turkey kielbasa", + "chopped onion" + ] + }, + { + "id": 12979, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "cachaca", + "lime slices", + "sugar", + "ice" + ] + }, + { + "id": 41201, + "cuisine": "french", + "ingredients": [ + "sherry vinegar", + "garlic cloves", + "olive oil", + "freshly ground pepper", + "salt", + "dijon mustard" + ] + }, + { + "id": 38059, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "balsamic vinegar", + "fresh basil", + "finely chopped onion", + "dried oregano", + "tomato paste", + "ground black pepper", + "garlic cloves", + "white wine", + "cooking spray" + ] + }, + { + "id": 21839, + "cuisine": "southern_us", + "ingredients": [ + "batter", + "butter beans", + "pepper", + "salt", + "chicken broth", + "olive oil", + "sweet onion", + "poblano chiles" + ] + }, + { + "id": 18583, + "cuisine": "italian", + "ingredients": [ + "white wine", + "part-skim mozzarella cheese", + "cooking spray", + "part-skim ricotta cheese", + "carrots", + "tomato paste", + "crushed tomatoes", + "ground turkey breast", + "1% low-fat milk", + "chopped onion", + "pancetta", + "kosher salt", + "ground black pepper", + "lasagna noodles, cooked and drained", + "crushed red pepper", + "dried oregano", + "fresh basil", + "olive oil", + "large eggs", + "chopped celery", + "garlic cloves" + ] + }, + { + "id": 39973, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "grated parmesan cheese", + "penne pasta", + "sugar", + "olive oil", + "dry red wine", + "fresh basil", + "dried basil", + "diced tomatoes", + "dried oregano", + "cooked steak", + "ground black pepper", + "garlic" + ] + }, + { + "id": 47898, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "dri leav rosemari", + "soup", + "salt", + "pepper", + "bay leaves", + "dry red wine", + "carrots", + "frozen chopped spinach", + "tomato juice", + "center cut bacon", + "beef broth", + "lamb shanks", + "dijon mustard", + "diced tomatoes", + "chopped onion" + ] + }, + { + "id": 17852, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "large eggs", + "onions", + "bottled clam juice", + "salt", + "black peppercorns", + "water", + "fresh lemon juice", + "fillet red snapper", + "Turkish bay leaves" + ] + }, + { + "id": 27850, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "cold water", + "wheat flour", + "kosher salt", + "extra-virgin olive oil" + ] + }, + { + "id": 11706, + "cuisine": "irish", + "ingredients": [ + "nutmeg", + "flour", + "Jameson Whiskey", + "brown sugar", + "cinnamon", + "clove", + "dried fruit", + "black tea", + "eggs", + "baking powder", + "orange zest" + ] + }, + { + "id": 10266, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "frozen corn", + "orange", + "garlic", + "plantains", + "avocado", + "extra-virgin olive oil", + "fresh lime juice", + "baking powder", + "salt" + ] + }, + { + "id": 16524, + "cuisine": "mexican", + "ingredients": [ + "milk", + "garlic salt", + "cayenne pepper", + "butter", + "cumin", + "American cheese", + "green chilies" + ] + }, + { + "id": 14095, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "pickle relish", + "tomatoes", + "dill pickles", + "mustard", + "tomato ketchup", + "shredded cheddar cheese", + "ground beef" + ] + }, + { + "id": 47467, + "cuisine": "indian", + "ingredients": [ + "fresh coriander", + "salt", + "garam masala", + "cumin seed", + "potatoes", + "chillies", + "ginger" + ] + }, + { + "id": 14054, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "salsa verde", + "onions", + "iceberg lettuce", + "avocado", + "kosher salt", + "tortilla chips", + "skirt steak", + "green chile", + "lime juice", + "mexican chorizo", + "dried oregano", + "black beans", + "large garlic cloves", + "chopped cilantro fresh", + "ground cumin" + ] + }, + { + "id": 22181, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "lasagna noodles", + "dry mustard", + "cream cheese, soften", + "fresh chives", + "ground black pepper", + "cooking spray", + "salt", + "large egg whites", + "dijon mustard", + "fat-free cottage cheese", + "garlic cloves", + "pasta sauce", + "fresh parmesan cheese", + "large eggs", + "part-skim ricotta cheese" + ] + }, + { + "id": 23643, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "bay leaves", + "bacon slices", + "garlic cloves", + "black pepper", + "diced tomatoes", + "salt", + "dried rosemary", + "finely chopped onion", + "dry red wine", + "beef broth", + "lamb shanks", + "cannellini beans", + "chopped celery", + "carrots" + ] + }, + { + "id": 73, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ricotta cheese", + "mozzarella cheese", + "salt", + "pasta sauce", + "pecorino romano cheese", + "pasta", + "eggplant" + ] + }, + { + "id": 47508, + "cuisine": "thai", + "ingredients": [ + "water", + "sweet potatoes", + "palm sugar", + "ginger" + ] + }, + { + "id": 25708, + "cuisine": "brazilian", + "ingredients": [ + "kosher salt", + "skirt steak", + "flat leaf parsley", + "black pepper", + "olives" + ] + }, + { + "id": 12825, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "ground cumin", + "chicken wings", + "butter", + "chili powder", + "ketchup", + "hot sauce" + ] + }, + { + "id": 21543, + "cuisine": "korean", + "ingredients": [ + "sugar", + "ground black pepper", + "green onions", + "carrots", + "shiitake", + "jalapeno chilies", + "dark sesame oil", + "noodles", + "water", + "enokitake", + "salt", + "boneless rib eye steaks", + "sake", + "lower sodium soy sauce", + "beef stock", + "garlic cloves" + ] + }, + { + "id": 150, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "water", + "Country Crock® Spread", + "instant rice", + "prepar salsa", + "frozen whole kernel corn" + ] + }, + { + "id": 44275, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "beef rib short", + "soy sauce", + "sesame oil", + "garlic cloves", + "water", + "Gochujang base", + "light brown sugar", + "peeled fresh ginger", + "scallions" + ] + }, + { + "id": 11416, + "cuisine": "indian", + "ingredients": [ + "fresh ginger root", + "vegetable oil", + "garlic", + "onions", + "ground turmeric", + "clove", + "potatoes", + "fresh green bean", + "carrots", + "cashew nuts", + "quinoa", + "butter", + "cardamom", + "frozen peas", + "water", + "broccoli florets", + "cauliflower florets", + "cinnamon sticks", + "chopped cilantro fresh" + ] + }, + { + "id": 43313, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "boneless skinless chicken breasts", + "salt", + "soy sauce", + "large eggs", + "vegetable oil", + "brown sugar", + "fresh ginger", + "apple cider vinegar", + "corn starch", + "ketchup", + "spring onions", + "garlic" + ] + }, + { + "id": 38444, + "cuisine": "greek", + "ingredients": [ + "great northern beans", + "zucchini", + "chopped onion", + "dried oregano", + "water", + "diced tomatoes", + "green beans", + "fresh dill", + "baking potatoes", + "feta cheese crumbles", + "ground black pepper", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 30792, + "cuisine": "jamaican", + "ingredients": [ + "water", + "yukon gold potatoes", + "garlic", + "allspice", + "dried thyme", + "habanero", + "coconut milk", + "curry powder", + "vegetable oil", + "salt", + "tomato sauce", + "goat", + "ginger", + "onions" + ] + }, + { + "id": 818, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "flour tortillas", + "salt", + "water", + "chile pepper", + "ripe olives", + "pepper", + "chili powder", + "chopped onion", + "Mexican cheese blend", + "lean ground beef", + "cumin" + ] + }, + { + "id": 41999, + "cuisine": "southern_us", + "ingredients": [ + "dried mint flakes", + "yellow bell pepper", + "vinaigrette", + "rose petals", + "buttermilk", + "toasted walnuts", + "bibb lettuce", + "vegetable oil", + "salt", + "ground cumin", + "green tomatoes", + "purple onion", + "cornmeal" + ] + }, + { + "id": 10611, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "pork tenderloin", + "chopped onion", + "cider vinegar", + "butter", + "ketchup", + "vegetable oil", + "garlic cloves", + "lower sodium soy sauce", + "salt" + ] + }, + { + "id": 42813, + "cuisine": "french", + "ingredients": [ + "minced garlic", + "flat leaf parsley", + "shallots", + "snails", + "unsalted butter" + ] + }, + { + "id": 20065, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "minced garlic", + "red pepper flakes", + "green bell pepper", + "olive oil", + "chickpeas", + "chicken broth", + "Italian herbs", + "diced tomatoes", + "basil pesto sauce", + "grated parmesan cheese", + "onions" + ] + }, + { + "id": 35621, + "cuisine": "italian", + "ingredients": [ + "jumbo shrimp", + "lemon zest", + "linguine", + "pepper", + "butter", + "salt", + "white wine", + "parsley", + "garlic", + "olive oil", + "red pepper flakes", + "lemon juice" + ] + }, + { + "id": 21474, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "brown rice", + "scallions", + "large eggs", + "beef broth", + "korean chile paste", + "zucchini", + "vegetable oil", + "kimchi", + "soy sauce", + "soft tofu", + "yellow onion" + ] + }, + { + "id": 49102, + "cuisine": "japanese", + "ingredients": [ + "large eggs", + "milk", + "vanilla extract", + "baking powder", + "granulated sugar", + "all-purpose flour" + ] + }, + { + "id": 29690, + "cuisine": "indian", + "ingredients": [ + "warm water", + "salt", + "active dry yeast", + "ghee", + "plain yogurt", + "all-purpose flour", + "seeds", + "white sugar" + ] + }, + { + "id": 10783, + "cuisine": "italian", + "ingredients": [ + "anchovies", + "extra-virgin olive oil", + "romaine lettuce", + "red wine vinegar", + "croutons", + "egg substitute", + "worcestershire sauce", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 588, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "tortilla chips", + "tomato salsa", + "salt", + "lime", + "corn tortillas" + ] + }, + { + "id": 4711, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "sour cream", + "green onions", + "fatfre cream of chicken soup", + "tomatoes", + "chili powder", + "shredded Monterey Jack cheese", + "pace picante sauce", + "fajita size flour tortillas" + ] + }, + { + "id": 465, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "vegetable oil", + "garlic cloves", + "galangal", + "fish sauce", + "serrano peppers", + "rice vinegar", + "red bell pepper", + "mushroom soy sauce", + "brown sugar", + "shallots", + "low sodium chicken stock", + "coconut milk", + "mango", + "kaffir lime leaves", + "peanuts", + "cilantro", + "chili garlic paste", + "chicken thighs" + ] + }, + { + "id": 14849, + "cuisine": "indian", + "ingredients": [ + "white vinegar", + "fresh ginger", + "boneless skinless chicken breasts", + "garlic cloves", + "ketchup", + "garam masala", + "salt", + "onions", + "tamarind", + "ground black pepper", + "cayenne pepper", + "sugar", + "whole grain mustard", + "vegetable oil", + "unsulphured molasses" + ] + }, + { + "id": 35939, + "cuisine": "indian", + "ingredients": [ + "cayenne", + "cucumber", + "paprika", + "ground cumin", + "mint leaves", + "plain whole-milk yogurt", + "pepper", + "salt" + ] + }, + { + "id": 26021, + "cuisine": "chinese", + "ingredients": [ + "water", + "dry sherry", + "corn starch", + "sugar", + "napa cabbage", + "oyster sauce", + "onions", + "light soy sauce", + "dark sesame oil", + "hot water", + "dried black mushrooms", + "chicken breast halves", + "garlic cloves", + "fermented black beans" + ] + }, + { + "id": 39619, + "cuisine": "french", + "ingredients": [ + "water", + "corn starch", + "fresh raspberries", + "sugar", + "fresh lime juice" + ] + }, + { + "id": 15427, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "poblano peppers", + "diced tomatoes", + "juice", + "ground cumin", + "green bell pepper", + "green onions", + "salt", + "fresh lime juice", + "black beans", + "vegetable stock", + "rice", + "chopped cilantro fresh", + "green chile", + "finely chopped onion", + "extra-virgin olive oil", + "red bell pepper" + ] + }, + { + "id": 30443, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "garlic cloves", + "peeled tomatoes", + "extra-virgin olive oil", + "kosher salt", + "crushed red pepper flakes", + "onions", + "fresh basil", + "grated parmesan cheese", + "bucatini" + ] + }, + { + "id": 2939, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "cilantro", + "oil", + "fennel seeds", + "coriander powder", + "salt", + "asafetida", + "eggplant", + "ginger", + "gram flour", + "red chili powder", + "yoghurt", + "cumin seed" + ] + }, + { + "id": 37747, + "cuisine": "brazilian", + "ingredients": [ + "crushed tomatoes", + "garlic", + "medium shrimp", + "green bell pepper", + "cooking oil", + "long-grain rice", + "onions", + "water", + "red pepper flakes", + "lemon juice", + "unsweetened coconut milk", + "ground black pepper", + "salt", + "fresh parsley" + ] + }, + { + "id": 37997, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "cornflakes", + "boneless skinless chicken breasts", + "large eggs", + "vegetable oil" + ] + }, + { + "id": 26770, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "cooking spray", + "fresh lime juice", + "low sodium soy sauce", + "pork tenderloin", + "red bell pepper", + "ground cumin", + "low-fat flour tortillas", + "garlic cloves", + "mango", + "sugar", + "non-fat sour cream", + "onions" + ] + }, + { + "id": 3257, + "cuisine": "italian", + "ingredients": [ + "angel food cake", + "unsweetened cocoa powder", + "mascarpone", + "heavy whipping cream", + "coffee granules", + "vanilla extract", + "coffee liqueur", + "confectioners sugar" + ] + }, + { + "id": 7097, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "baking soda", + "turkey sausage", + "white cornmeal", + "diced onions", + "whole wheat flour", + "large eggs", + "nonfat milk", + "egg substitute", + "cream style corn", + "greek style plain yogurt", + "pickled jalapeno peppers", + "black-eyed peas", + "colby jack cheese", + "lemon juice" + ] + }, + { + "id": 20285, + "cuisine": "japanese", + "ingredients": [ + "black cod fillets", + "mirin", + "vegetable oil", + "water", + "enokitake", + "garlic cloves", + "pepper", + "base", + "shimeji mushrooms", + "scallion greens", + "reduced sodium soy sauce", + "shallots" + ] + }, + { + "id": 19839, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "chopped fresh sage", + "black pepper", + "butternut squash", + "water", + "salt", + "parmigiano reggiano cheese", + "penne rigate" + ] + }, + { + "id": 18923, + "cuisine": "cajun_creole", + "ingredients": [ + "ground cinnamon", + "sprinkles", + "milk", + "confectioners sugar", + "firmly packed brown sugar", + "chopped pecans", + "refrigerated crescent rolls" + ] + }, + { + "id": 17668, + "cuisine": "french", + "ingredients": [ + "extra-virgin olive oil", + "garlic", + "kosher salt" + ] + }, + { + "id": 24099, + "cuisine": "french", + "ingredients": [ + "halibut fillets", + "small new potatoes", + "salt", + "vidalia onion", + "dijon mustard", + "white wine vinegar", + "green beans", + "fresh bay leaves", + "extra-virgin olive oil", + "fresh lemon juice", + "ground black pepper", + "lemon", + "garlic cloves" + ] + }, + { + "id": 45557, + "cuisine": "filipino", + "ingredients": [ + "ketchup", + "ground black pepper", + "rice vinegar", + "shrimp", + "sugar", + "kosher salt", + "ground pork", + "peanut oil", + "spring roll wrappers", + "chinese celery", + "large eggs", + "yellow onion", + "corn starch", + "soy sauce", + "water", + "salt", + "carrots" + ] + }, + { + "id": 35375, + "cuisine": "italian", + "ingredients": [ + "finely chopped onion", + "red wine vinegar", + "salt", + "prepared lasagne", + "black pepper", + "mushrooms", + "part-skim ricotta cheese", + "garlic cloves", + "olive oil", + "baby spinach", + "crushed red pepper", + "red bell pepper", + "fresh basil", + "lasagna noodles", + "diced tomatoes", + "shredded mozzarella cheese" + ] + }, + { + "id": 13887, + "cuisine": "indian", + "ingredients": [ + "nonfat yogurt", + "cayenne pepper", + "hothouse cucumber", + "curry powder", + "cilantro sprigs", + "halibut steak", + "peeled fresh ginger", + "garlic cloves", + "ground cumin", + "olive oil", + "seasoned rice wine vinegar", + "chopped cilantro fresh" + ] + }, + { + "id": 15090, + "cuisine": "mexican", + "ingredients": [ + "reduced sodium soy sauce", + "chopped cilantro fresh", + "olive oil", + "garlic cloves", + "lime", + "Sriracha", + "honey", + "boneless skinless chicken breasts" + ] + }, + { + "id": 15141, + "cuisine": "mexican", + "ingredients": [ + "flour", + "eggs", + "green chilies", + "salt", + "milk", + "monterey jack" + ] + }, + { + "id": 3864, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "cilantro sprigs", + "avocado", + "brown rice", + "shredded Monterey Jack cheese", + "black beans", + "lime wedges", + "bean dip", + "chunky" + ] + }, + { + "id": 4460, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "wheat flour", + "water", + "minced beef", + "soy sauce", + "ginger", + "spring onions", + "carrots" + ] + }, + { + "id": 6427, + "cuisine": "italian", + "ingredients": [ + "cottage cheese", + "egg noodles", + "dried oregano", + "part-skim mozzarella cheese", + "ground sirloin", + "dried basil", + "cooking spray", + "tomato purée", + "garlic powder", + "onions" + ] + }, + { + "id": 7766, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "pepper", + "salsa", + "sliced green onions", + "cheddar cheese", + "garlic powder", + "baked tortilla chips", + "taco sauce", + "non-fat sour cream", + "iceberg lettuce", + "ground round", + "kidney beans", + "whole kernel corn, drain" + ] + }, + { + "id": 29900, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "egg roll wrappers", + "butter", + "all-purpose flour", + "cream sauce", + "chicken bouillon", + "chopped green chilies", + "chili powder", + "garlic", + "oil", + "diced onions", + "water", + "chicken breasts", + "cheese", + "cayenne pepper", + "ground cumin", + "black pepper", + "garlic powder", + "onion powder", + "salt", + "sour cream" + ] + }, + { + "id": 32824, + "cuisine": "vietnamese", + "ingredients": [ + "green onions", + "white sugar", + "fish sauce", + "lemon", + "white vinegar", + "chile pepper", + "warm water", + "garlic" + ] + }, + { + "id": 14921, + "cuisine": "italian", + "ingredients": [ + "penne", + "fresh parmesan cheese", + "arugula", + "water", + "salt", + "olive oil", + "fresh lemon juice", + "pinenuts", + "large garlic cloves" + ] + }, + { + "id": 17355, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "bow-tie pasta", + "half & half", + "fresh mushrooms", + "grated parmesan cheese", + "sweet italian sausage", + "vodka", + "crushed red pepper flakes", + "roast red peppers, drain" + ] + }, + { + "id": 33350, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "fat", + "pepper", + "worcestershire sauce", + "light brown sugar", + "sesame oil", + "asian chile paste", + "light soy sauce", + "garlic" + ] + }, + { + "id": 10518, + "cuisine": "vietnamese", + "ingredients": [ + "rice stick noodles", + "fresh coriander", + "large garlic cloves", + "fresh mint", + "asian fish sauce", + "seedless cucumber", + "flank steak", + "roasted peanuts", + "fresh basil leaves", + "hot red pepper flakes", + "minced garlic", + "shredded lettuce", + "toasted sesame oil", + "sugar", + "water", + "salt", + "fresh lime juice" + ] + }, + { + "id": 42199, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "boneless skinless chicken breasts", + "all-purpose flour", + "black pepper", + "red pepper flakes", + "bbq sauce", + "soy sauce", + "vegetable oil", + "garlic cloves", + "fresh ginger", + "rice vinegar", + "cashew nuts" + ] + }, + { + "id": 16290, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "ground black pepper", + "extra-virgin olive oil", + "boneless skinless chicken breast halves", + "chicken stock", + "prosciutto", + "dry white wine", + "lentils", + "tomato sauce", + "unsalted butter", + "salt", + "italian tomatoes", + "parmigiano reggiano cheese", + "all-purpose flour" + ] + }, + { + "id": 46125, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "lean ground beef", + "cheddar cheese", + "green onions", + "onions", + "kidney beans", + "hot sauce", + "taco seasoning mix", + "canned jalapeno peppers" + ] + }, + { + "id": 34696, + "cuisine": "french", + "ingredients": [ + "fennel seeds", + "baguette", + "extra-virgin olive oil", + "celery", + "parsley sprigs", + "large eggs", + "garlic cloves", + "onions", + "black peppercorns", + "water", + "salt", + "thyme sprigs", + "black pepper", + "peas", + "California bay leaves", + "boiling potatoes" + ] + }, + { + "id": 40819, + "cuisine": "indian", + "ingredients": [ + "sugar", + "brown mustard seeds", + "canola oil", + "fresh curry leaves", + "cilantro leaves", + "kosher salt", + "thai chile", + "tumeric", + "fresh cranberries", + "asafetida" + ] + }, + { + "id": 15465, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "fresh cilantro", + "brown mustard seeds", + "salt", + "oil", + "cauliflower", + "lime juice", + "broccoli florets", + "garlic", + "chickpeas", + "frozen peas", + "chili pepper", + "fresh ginger", + "russet potatoes", + "yellow onion", + "coconut milk", + "spinach", + "sweetener", + "crimini mushrooms", + "powdered turmeric", + "cumin seed" + ] + }, + { + "id": 41682, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic cloves", + "black pepper", + "salt", + "polenta", + "fat free less sodium chicken broth", + "chopped onion", + "green cabbage", + "fresh parmesan cheese", + "bay leaf" + ] + }, + { + "id": 10752, + "cuisine": "russian", + "ingredients": [ + "sugar", + "cardamom pods", + "fresh ginger", + "fresh mint", + "clove", + "lemon zest", + "honey", + "cinnamon sticks" + ] + }, + { + "id": 23197, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "water chestnuts", + "salt", + "chopped cilantro", + "won ton skins", + "cooking wine", + "ground white pepper", + "soy sauce", + "napa cabbage leaves", + "scallions", + "pork butt", + "large egg whites", + "sesame oil", + "corn starch", + "dried mushrooms" + ] + }, + { + "id": 43662, + "cuisine": "italian", + "ingredients": [ + "almonds", + "corkscrew pasta", + "pecorino cheese", + "garlic", + "pancetta", + "extra-virgin olive oil", + "kale", + "salt" + ] + }, + { + "id": 2271, + "cuisine": "mexican", + "ingredients": [ + "milk", + "sugar", + "cinnamon sticks", + "egg yolks", + "shredded coconut" + ] + }, + { + "id": 14018, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "salt", + "soy sauce", + "ground pork", + "white sugar", + "chinese winter melon", + "fresh ginger", + "corn starch", + "eggs", + "water", + "cilantro leaves" + ] + }, + { + "id": 758, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "cake flour", + "ground cinnamon", + "anise", + "margarine", + "sugar", + "vanilla extract", + "baking powder", + "salt" + ] + }, + { + "id": 41109, + "cuisine": "french", + "ingredients": [ + "dry vermouth", + "bacon slices", + "low salt chicken broth", + "russet potatoes", + "garlic cloves", + "chopped fresh thyme", + "all-purpose flour", + "butter", + "veal scallops" + ] + }, + { + "id": 16007, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "baby spinach", + "shredded Monterey Jack cheese", + "flour tortillas", + "yellow onion", + "grapeseed oil" + ] + }, + { + "id": 17606, + "cuisine": "chinese", + "ingredients": [ + "ground black pepper", + "salt", + "soy sauce", + "fresh shiitake mushrooms", + "peanut oil", + "hoisin sauce", + "rice", + "kale", + "ginger", + "scallions" + ] + }, + { + "id": 17995, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "jalapeno chilies", + "salt", + "oil", + "masa harina", + "lime juice", + "chili powder", + "cayenne pepper", + "onions", + "water", + "Mexican oregano", + "salsa", + "ground beef", + "fresh cilantro", + "garlic", + "peanut oil", + "cumin" + ] + }, + { + "id": 40193, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "red bell pepper", + "balsamic vinegar", + "green bell pepper", + "yellow bell pepper", + "olive oil", + "onions" + ] + }, + { + "id": 19776, + "cuisine": "british", + "ingredients": [ + "dark corn syrup", + "whipping cream", + "grated lemon peel", + "sugar", + "unsalted butter", + "dark brown sugar", + "milk", + "all-purpose flour", + "blackberries", + "brandy", + "large eggs", + "fresh lemon juice" + ] + }, + { + "id": 48043, + "cuisine": "greek", + "ingredients": [ + "salt", + "ground black pepper", + "fresh mint", + "plain yogurt", + "cucumber", + "crushed garlic" + ] + }, + { + "id": 5793, + "cuisine": "southern_us", + "ingredients": [ + "curry powder", + "barbecue sauce", + "salt", + "fat free less sodium chicken broth", + "cooking spray", + "chili powder", + "and fat free half half", + "jalapeno chilies", + "cooked chicken", + "chopped onion", + "black beans", + "condensed reduced fat reduced sodium tomato soup", + "reduced-fat sour cream", + "garlic cloves" + ] + }, + { + "id": 24347, + "cuisine": "mexican", + "ingredients": [ + "romano cheese", + "olive oil", + "all-purpose flour", + "poblano chiles", + "shredded Monterey Jack cheese", + "roast breast of chicken", + "fat free less sodium chicken broth", + "Anaheim chile", + "rubbed sage", + "fat free cream cheese", + "ground cumin", + "cremini mushrooms", + "water", + "cooking spray", + "red bell pepper", + "chopped cilantro fresh", + "black pepper", + "shiitake", + "garlic cloves", + "corn tortillas", + "sliced green onions" + ] + }, + { + "id": 14435, + "cuisine": "southern_us", + "ingredients": [ + "white corn", + "green onions", + "chicken fingers", + "eggs", + "water", + "white beans", + "sour cream", + "green chile", + "cream of chicken soup", + "taco seasoning", + "onions", + "chicken broth", + "corn mix muffin", + "garlic", + "Mexican cheese" + ] + }, + { + "id": 19252, + "cuisine": "french", + "ingredients": [ + "chopped fresh chives", + "garlic cloves", + "unsalted butter", + "salt", + "potatoes", + "grated Gruyère cheese", + "ground black pepper", + "double cream" + ] + }, + { + "id": 42441, + "cuisine": "mexican", + "ingredients": [ + "crushed tomatoes", + "cilantro", + "eggs", + "poblano peppers", + "purple onion", + "avocado", + "lime", + "garlic", + "cotija", + "spices", + "corn tortillas" + ] + }, + { + "id": 9963, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "preserv raspberri seedless", + "fat free less sodium beef broth", + "ancho powder", + "center cut pork chops", + "dried thyme", + "salt" + ] + }, + { + "id": 5250, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "cooking oil", + "garlic", + "shredded Monterey Jack cheese", + "lime", + "cilantro stems", + "corn tortillas", + "black pepper", + "sweet potatoes", + "salt", + "ground cumin", + "avocado", + "chopped tomatoes", + "cooked chicken", + "onions" + ] + }, + { + "id": 2296, + "cuisine": "japanese", + "ingredients": [ + "chili powder", + "salt", + "wheat flour", + "amchur", + "peas", + "cumin seed", + "sugar", + "butter", + "all-purpose flour", + "cooking oil", + "rapid rise yeast", + "oil" + ] + }, + { + "id": 35245, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "ground allspice", + "mayonaise", + "large garlic cloves", + "creole mustard", + "green onions", + "bread crumb fresh", + "veal rib chops" + ] + }, + { + "id": 1383, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "shrimp", + "sugar", + "cilantro", + "white kidney beans", + "dried tarragon leaves", + "red wine vinegar", + "plum tomatoes", + "dried basil", + "purple onion" + ] + }, + { + "id": 41209, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "salt", + "chopped parsley", + "pepper", + "crushed red pepper flakes", + "carrots", + "chicken broth", + "black-eyed peas", + "chopped onion", + "celery", + "turkey bacon", + "garlic", + "red bell pepper" + ] + }, + { + "id": 567, + "cuisine": "thai", + "ingredients": [ + "butternut squash", + "lemongrass", + "coconut milk", + "red chili peppers", + "cilantro leaves", + "lime", + "onions" + ] + }, + { + "id": 2537, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "buttermilk", + "ground red pepper", + "all-purpose flour", + "butter", + "white cornmeal", + "large eggs", + "white cheddar cheese" + ] + }, + { + "id": 43860, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "large eggs", + "unsalted butter", + "salt", + "chipotle chile", + "fresh orange juice", + "semisweet chocolate", + "all-purpose flour" + ] + }, + { + "id": 39870, + "cuisine": "chinese", + "ingredients": [ + "gai lan", + "minced ginger", + "beef sirloin", + "white onion", + "Shaoxing wine", + "corn starch", + "sugar", + "light soy sauce", + "peanut oil", + "dark soy sauce", + "minced garlic", + "green onions", + "noodles" + ] + }, + { + "id": 5761, + "cuisine": "italian", + "ingredients": [ + "pearl onions", + "chicken breast halves", + "pitted olives", + "dried rosemary", + "chicken stock", + "potatoes", + "green peas", + "fresh mushrooms", + "dried thyme", + "butter", + "salt", + "pepper", + "dry white wine", + "garlic", + "pimento stuffed green olives" + ] + }, + { + "id": 29678, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "shredded lettuce", + "pinto beans", + "chopped cilantro fresh", + "tomato sauce", + "olive oil", + "salt", + "ground beef", + "taco shells", + "chili powder", + "salsa", + "onions", + "water", + "diced tomatoes", + "sour cream", + "ground cumin" + ] + }, + { + "id": 34513, + "cuisine": "greek", + "ingredients": [ + "prawns", + "fresh lemon juice", + "olive oil", + "coarse salt", + "dried thyme", + "lemon wedge", + "dried oregano", + "ground black pepper", + "grated lemon zest" + ] + }, + { + "id": 43286, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "cooking wine", + "soy", + "sugar", + "star anise", + "chinese five-spice powder", + "ground cumin", + "chili", + "salt", + "chicken", + "white wine", + "garlic", + "oil" + ] + }, + { + "id": 21874, + "cuisine": "cajun_creole", + "ingredients": [ + "redfish", + "unsalted butter", + "fresh orange juice", + "fresh herbs", + "brioche", + "butter", + "rice vinegar", + "shrimp", + "fennel", + "fresh tarragon", + "cayenne pepper", + "salad", + "egg yolks", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 978, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "fresh basil", + "large eggs", + "sliced green onions", + "bread", + "ground black pepper", + "plum tomatoes", + "pecorino cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 30874, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "olive oil", + "salt", + "serrano chile", + "pepper", + "green onions", + "garlic cloves", + "soy sauce", + "eggplant", + "rice vinegar", + "cooked chicken breasts", + "cooked rice", + "water", + "sesame oil", + "bok choy" + ] + }, + { + "id": 22569, + "cuisine": "greek", + "ingredients": [ + "green onions", + "plain yogurt", + "feta cheese", + "grated lemon peel" + ] + }, + { + "id": 32204, + "cuisine": "greek", + "ingredients": [ + "fat free yogurt", + "cucumber", + "lemon rind", + "salt", + "chopped cilantro fresh", + "ground black pepper", + "fresh parsley" + ] + }, + { + "id": 16706, + "cuisine": "southern_us", + "ingredients": [ + "barbecue sauce", + "hot chili sauce", + "soy sauce" + ] + }, + { + "id": 40703, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "crushed red pepper", + "dry roasted peanuts", + "dark sesame oil", + "sugar", + "rice vinegar", + "thai basil", + "garlic cloves" + ] + }, + { + "id": 697, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "salt", + "nutmeg", + "parmigiano reggiano cheese", + "goat cheese", + "eggs", + "whole milk ricotta cheese", + "garlic cloves", + "frozen spinach", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 22150, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "worcestershire sauce", + "fresh lemon juice", + "pepper", + "french bread", + "salt", + "dried oregano", + "unsalted butter", + "paprika", + "shrimp shells", + "dried thyme", + "onion powder", + "cayenne pepper", + "chopped garlic" + ] + }, + { + "id": 45083, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "beef", + "cilantro", + "roasted peanuts", + "coriander", + "lemongrass", + "shallots", + "salt", + "lime leaves", + "water", + "shrimp paste", + "garlic", + "oil", + "ground cumin", + "palm sugar", + "chili powder", + "coconut cream", + "galangal" + ] + }, + { + "id": 26824, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "unsalted butter", + "vanilla extract", + "pecans", + "sweet potatoes", + "grated nutmeg", + "ground cinnamon", + "large eggs", + "maple syrup", + "kosher salt", + "bourbon whiskey", + "pie shell" + ] + }, + { + "id": 37032, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "szechwan peppercorns", + "cinnamon sticks", + "chinese rock sugar", + "licorice root", + "star anise", + "clove", + "soy sauce", + "black tea leaves", + "orange peel", + "eggs", + "fresh ginger root", + "chinese five-spice powder" + ] + }, + { + "id": 3702, + "cuisine": "korean", + "ingredients": [ + "fresh ginger root", + "beef rib short", + "brown sugar", + "green onions", + "reduced sodium soy sauce", + "carrots", + "water", + "garlic" + ] + }, + { + "id": 17835, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "spices", + "chinese black vinegar", + "spring onions", + "duck", + "chinese pancakes", + "star anise", + "rice wine", + "orange peel" + ] + }, + { + "id": 35926, + "cuisine": "spanish", + "ingredients": [ + "water", + "prawns", + "farro", + "fine sea salt", + "ancho chile pepper", + "mussels", + "ground black pepper", + "dry white wine", + "extra-virgin olive oil", + "sweet paprika", + "varnish clams", + "clams", + "crushed tomatoes", + "green onions", + "tomatoes with juice", + "yellow onion", + "flat leaf parsley", + "green bell pepper", + "seafood stock", + "parsley", + "garlic", + "red bell pepper", + "chorizo sausage" + ] + }, + { + "id": 19324, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "diced tomatoes", + "carrots", + "brown basmati rice", + "chicken broth", + "minced ginger", + "salt", + "onions", + "curry powder", + "garlic", + "chopped cilantro", + "canola oil", + "black pepper", + "heavy cream", + "cayenne pepper", + "chicken thighs" + ] + }, + { + "id": 38341, + "cuisine": "greek", + "ingredients": [ + "vanilla extract", + "water", + "chopped walnuts", + "butter", + "confectioners sugar", + "clove", + "all-purpose flour" + ] + }, + { + "id": 40420, + "cuisine": "french", + "ingredients": [ + "canned low sodium chicken broth", + "ground black pepper", + "butter", + "fresh parsley", + "crushed tomatoes", + "flour", + "salt", + "dry vermouth", + "cooking oil", + "garlic", + "onions", + "dried thyme", + "mushrooms", + "bone-in chicken breasts" + ] + }, + { + "id": 34062, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "red wine vinegar", + "chopped garlic", + "soy sauce", + "cooked chicken", + "scallions", + "spinach", + "hoisin sauce", + "chinese cabbage", + "fresh ginger", + "corn oil", + "carrots" + ] + }, + { + "id": 34952, + "cuisine": "chinese", + "ingredients": [ + "garlic chili sauce", + "vegetable oil", + "extra large shrimp", + "long grain white rice", + "broccoli" + ] + }, + { + "id": 34817, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "garlic", + "scallions", + "grits", + "Tabasco Pepper Sauce", + "all-purpose flour", + "shrimp", + "unsalted butter", + "salt", + "lemon juice", + "chicken stock", + "bacon", + "sharp cheddar cheese", + "onions" + ] + }, + { + "id": 38243, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "grated parmesan cheese", + "black pepper", + "dry white wine", + "fresh basil", + "low sodium chicken broth", + "unsalted butter", + "onions" + ] + }, + { + "id": 6162, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "soybean sprouts", + "garlic cloves", + "brown sugar", + "mushrooms", + "rice", + "beef carpaccio", + "eggs", + "zucchini", + "Gochujang base", + "carrots", + "fresh spinach", + "salt", + "oil" + ] + }, + { + "id": 9934, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "okra pods", + "salt" + ] + }, + { + "id": 21314, + "cuisine": "irish", + "ingredients": [ + "buttermilk", + "grated orange", + "self rising flour", + "vanilla extract", + "butter", + "chopped pecans", + "sugar", + "fresh orange juice" + ] + }, + { + "id": 1099, + "cuisine": "thai", + "ingredients": [ + "pepper", + "cilantro", + "vegetable broth", + "peanut butter", + "sliced green onions", + "celery ribs", + "olive oil", + "Thai red curry paste", + "garlic", + "beansprouts", + "lime", + "ginger", + "light coconut milk", + "shrimp", + "brown sugar", + "baby spinach", + "rice vermicelli", + "salt", + "onions" + ] + }, + { + "id": 36690, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "fresh ginger root", + "vegetable oil", + "oil", + "chile paste", + "flank steak", + "salt", + "red bell pepper", + "water", + "granulated sugar", + "garlic", + "corn starch", + "soy sauce", + "honey", + "rice wine", + "rice vinegar", + "onions" + ] + }, + { + "id": 21256, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "cilantro", + "garlic paste", + "chile pepper", + "cumin seed", + "tomatoes", + "eggplant", + "salt", + "plain yogurt", + "vegetable oil", + "onions" + ] + }, + { + "id": 24485, + "cuisine": "thai", + "ingredients": [ + "black pepper", + "light coconut milk", + "corn starch", + "green curry paste", + "yellow onion", + "lime", + "salt", + "stir fry vegetable blend", + "brown sugar", + "boneless skinless chicken breasts", + "garlic cloves" + ] + }, + { + "id": 8857, + "cuisine": "mexican", + "ingredients": [ + "guacamole", + "shredded Monterey Jack cheese", + "olive oil", + "cilantro leaves", + "prepar salsa", + "flour tortillas", + "flat leaf parsley" + ] + }, + { + "id": 2333, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "rice wine", + "garlic cloves", + "sugar", + "thai basil", + "chicken drumsticks", + "fresh ginger", + "sesame oil", + "red chili peppers", + "steamed white rice", + "meat bones" + ] + }, + { + "id": 44675, + "cuisine": "vietnamese", + "ingredients": [ + "eggs", + "lime juice", + "cucumber", + "sweet chili sauce", + "salt", + "chicken", + "white vinegar", + "pepper", + "carrots", + "sugar", + "vegetables", + "green papaya" + ] + }, + { + "id": 23789, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "boneless skinless chicken breasts", + "fresh mushrooms", + "bok choy", + "toasted sesame seeds", + "water", + "purple onion", + "corn starch", + "wonton noodles", + "pepper", + "vegetable oil", + "oyster sauce", + "celery", + "green onions", + "salt", + "red bell pepper", + "mung bean sprouts" + ] + }, + { + "id": 6503, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "chopped onion", + "minced garlic", + "dry white wine", + "fresh basil", + "eggplant", + "brine-cured black olives", + "whole wheat bread slices", + "vegetable oil spray", + "low salt chicken broth" + ] + }, + { + "id": 29896, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "mozzarella cheese", + "grated parmesan cheese", + "sausages", + "ground chuck", + "ground black pepper", + "salt", + "dried oregano", + "fire roasted diced tomatoes", + "olive oil", + "ricotta cheese", + "onions", + "pepperoni slices", + "lasagna noodles", + "garlic cloves" + ] + }, + { + "id": 25796, + "cuisine": "french", + "ingredients": [ + "sugar", + "olive oil", + "fresh thyme", + "coarse salt", + "beef tenderloin", + "bay leaf", + "fresh rosemary", + "ground cloves", + "ground black pepper", + "shallots", + "large garlic cloves", + "all-purpose flour", + "brandy", + "ground nutmeg", + "bay leaves", + "canned beef broth", + "rosemary leaves", + "grated orange peel", + "minced garlic", + "unsalted butter", + "fresh thyme leaves", + "dry red wine", + "sliced shallots" + ] + }, + { + "id": 40734, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "bay leaves", + "sweetened condensed milk", + "orange", + "pork shoulder", + "water", + "garlic cloves", + "dried oregano", + "white onion", + "fine salt", + "pork lard" + ] + }, + { + "id": 1947, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "cilantro leaves", + "mayonaise", + "green onions", + "corn tortillas", + "lime", + "salt", + "vidalia onion", + "red cabbage", + "filet" + ] + }, + { + "id": 26700, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "chili powder", + "cayenne pepper", + "corn tortillas", + "ground cumin", + "corn salsa", + "lime juice", + "ground pork", + "sour cream", + "onions", + "black beans", + "ground black pepper", + "pineapple juice", + "coconut milk", + "oregano", + "avocado", + "shredded cheddar cheese", + "large garlic cloves", + "smoked paprika", + "chopped cilantro" + ] + }, + { + "id": 49203, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "monterey jack", + "prepar salsa", + "flour tortillas", + "chorizo sausage", + "hot sauce" + ] + }, + { + "id": 29271, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "fresh lemon juice", + "ground black pepper", + "salt", + "boneless skinless chicken breast halves", + "dried mint flakes", + "garlic cloves", + "dried oregano", + "salad", + "purple onion", + "fresh mint" + ] + }, + { + "id": 13416, + "cuisine": "vietnamese", + "ingredients": [ + "lime juice", + "fresh ginger root", + "sesame oil", + "rice paper", + "seedless cucumber", + "ground peanut", + "jalapeno chilies", + "fresh mint", + "fish sauce", + "fresh cilantro", + "lemon grass", + "peanut oil", + "red leaf lettuce", + "thai basil", + "boneless skinless chicken breasts", + "white sugar" + ] + }, + { + "id": 29656, + "cuisine": "mexican", + "ingredients": [ + "enchilada sauce", + "milk", + "chicken", + "shredded cheddar cheese", + "fritos", + "cream of chicken soup" + ] + }, + { + "id": 28358, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "cooking oil", + "unsalted butter", + "heavy cream", + "granulated sugar", + "strawberries", + "self rising flour" + ] + }, + { + "id": 44499, + "cuisine": "chinese", + "ingredients": [ + "dry sherry", + "broccoli", + "kosher salt", + "ginger", + "corn starch", + "soy sauce", + "crushed red pepper flakes", + "oyster sauce", + "flank steak", + "garlic", + "canola oil" + ] + }, + { + "id": 49220, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic", + "escarole", + "olive oil", + "salt", + "italian chicken sausage", + "crushed red pepper", + "onions", + "pasta", + "parmigiano reggiano cheese", + "red bell pepper" + ] + }, + { + "id": 43075, + "cuisine": "jamaican", + "ingredients": [ + "jamaican jerk season", + "chopped onion", + "brown rice", + "red beans", + "chopped cilantro fresh", + "fat free less sodium chicken broth", + "bacon slices" + ] + }, + { + "id": 5033, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "butter", + "roasting chickens", + "olive oil", + "mushrooms", + "heavy cream", + "onions", + "fresh spinach", + "grated parmesan cheese", + "condensed cream of mushroom soup", + "shredded mozzarella cheese", + "salt and ground black pepper", + "ricotta cheese", + "garlic" + ] + }, + { + "id": 30371, + "cuisine": "mexican", + "ingredients": [ + "bananas", + "fresh lemon juice", + "roasted salted cashews", + "sugar" + ] + }, + { + "id": 24831, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "tomatoes", + "extra-virgin olive oil", + "fresh basil leaves", + "parmesan cheese", + "spaghetti squash", + "mozzarella cheese", + "garlic" + ] + }, + { + "id": 39872, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "purple onion", + "jalapeno chilies", + "lime", + "tomatoes", + "cilantro" + ] + }, + { + "id": 41616, + "cuisine": "italian", + "ingredients": [ + "sea salt", + "beefsteak tomatoes", + "extra-virgin olive oil", + "avocado", + "chees fresh mozzarella", + "balsamic vinegar", + "freshly ground pepper" + ] + }, + { + "id": 40924, + "cuisine": "british", + "ingredients": [ + "water", + "red wine", + "balsamic reduction", + "eggs", + "potatoes", + "all-purpose flour", + "diced onions", + "rosemary", + "salt", + "steak", + "pepper", + "butter", + "carrots" + ] + }, + { + "id": 37271, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "ground coriander", + "chopped cilantro fresh", + "chicken breasts", + "sour cream", + "Mexican cheese blend", + "red enchilada sauce", + "ground cumin", + "chile pepper", + "corn tortillas" + ] + }, + { + "id": 7875, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "broccoli", + "garlic", + "peanut oil", + "water", + "peanut butter", + "brown sugar", + "crushed red pepper", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 15809, + "cuisine": "italian", + "ingredients": [ + "baguette", + "grated parmesan cheese", + "olive oil", + "red bell pepper", + "minced garlic", + "whipping cream", + "fresh spinach", + "prosciutto" + ] + }, + { + "id": 33565, + "cuisine": "italian", + "ingredients": [ + "water", + "garlic", + "white onion", + "ground black pepper", + "garlic salt", + "romano cheese", + "garbanzo beans", + "tuna packed in olive oil", + "pitted black olives", + "olive oil", + "penne pasta" + ] + }, + { + "id": 18221, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "Italian seasoned breadcrumbs", + "pasta sauce", + "ricotta cheese", + "eggs", + "parmesan cheese", + "mozzarella cheese", + "basil" + ] + }, + { + "id": 41482, + "cuisine": "cajun_creole", + "ingredients": [ + "hot pepper sauce", + "all-purpose flour", + "medium shrimp", + "crushed tomatoes", + "crushed garlic", + "celery", + "white sugar", + "tomato sauce", + "vegetable oil", + "cayenne pepper", + "onions", + "ground black pepper", + "salt", + "bay leaf" + ] + }, + { + "id": 45682, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "red wine vinegar", + "garlic cloves", + "olive oil", + "salt", + "onions", + "pepper", + "cheese", + "croutons", + "tomatoes", + "garnish", + "fresh oregano" + ] + }, + { + "id": 46576, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "salt", + "eggs", + "yucca", + "chopped cilantro", + "garlic powder", + "chopped onion", + "chorizo", + "coconut flour" + ] + }, + { + "id": 25428, + "cuisine": "italian", + "ingredients": [ + "scallops", + "linguine", + "green peas", + "uncook medium shrimp, peel and devein", + "dry white wine", + "garlic", + "I Can't Believe It's Not Butter!® Spread", + "onions" + ] + }, + { + "id": 36196, + "cuisine": "french", + "ingredients": [ + "pepper", + "butter", + "chopped parsley", + "riesling", + "salt", + "onions", + "olive oil", + "bacon", + "chicken pieces", + "cream", + "crimini mushrooms", + "garlic cloves" + ] + }, + { + "id": 29672, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "water", + "corn starch", + "reduced sodium chicken broth", + "broccoli florets", + "canola oil", + "table salt", + "beef", + "ginger root", + "minced garlic", + "red pepper flakes" + ] + }, + { + "id": 24164, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "ground black pepper", + "salt", + "lemon juice", + "navy beans", + "water", + "butter", + "cayenne pepper", + "white sugar", + "eggs", + "olive oil", + "garlic", + "frozen brussels sprouts", + "boneless skinless chicken breast halves", + "pepper", + "grated parmesan cheese", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 3493, + "cuisine": "mexican", + "ingredients": [ + "catalina dressing", + "water", + "doritos", + "cheddar cheese", + "sour cream", + "tomatoes", + "taco seasoning", + "lettuce", + "red kidnei beans, rins and drain", + "ground beef" + ] + }, + { + "id": 45351, + "cuisine": "thai", + "ingredients": [ + "white pepper", + "jalapeno chilies", + "bird chile", + "fish sauce", + "palm sugar", + "garlic", + "thai basil", + "shallots", + "ground chicken", + "kecap manis", + "oil" + ] + }, + { + "id": 31579, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "cracker crumbs", + "fresh parsley", + "dijon mustard", + "butter", + "garlic powder", + "chicken cutlets", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 18370, + "cuisine": "mexican", + "ingredients": [ + "serrano peppers", + "chopped onion", + "chopped cilantro", + "kosher salt", + "garlic", + "red bell pepper", + "monterey jack", + "canned black beans", + "diced tomatoes", + "scallions", + "cumin", + "reduced sodium fat free chicken broth", + "frozen corn", + "ground turkey" + ] + }, + { + "id": 36943, + "cuisine": "southern_us", + "ingredients": [ + "pimentos", + "chopped parsley", + "worcestershire sauce", + "extra sharp cheddar cheese", + "ground red pepper", + "onions", + "mayonaise", + "sharp cheddar cheese" + ] + }, + { + "id": 39873, + "cuisine": "italian", + "ingredients": [ + "red wine", + "carrots", + "tomatoes", + "extra-virgin olive oil", + "ground beef", + "tomato paste", + "ground pork", + "celery", + "black pepper", + "salt", + "onions" + ] + }, + { + "id": 1320, + "cuisine": "italian", + "ingredients": [ + "ground round", + "chili powder", + "beef broth", + "ground cumin", + "tomato paste", + "shredded cheddar cheese", + "purple onion", + "onions", + "black beans", + "diced tomatoes", + "sour cream", + "green chile", + "olive oil", + "salt", + "spaghetti" + ] + }, + { + "id": 2591, + "cuisine": "italian", + "ingredients": [ + "clams", + "fresh parmesan cheese", + "onions", + "pizza crust", + "reduced fat alfredo sauce", + "black pepper", + "bacon slices", + "dried thyme", + "fresh parsley" + ] + }, + { + "id": 1283, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "chopped garlic", + "serrano chilies", + "salt", + "lime juice", + "chopped cilantro fresh", + "tomatillos" + ] + }, + { + "id": 39524, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "serrano peppers", + "purple onion", + "scallions", + "cumin", + "lime juice", + "hand", + "pineapple", + "greek style plain yogurt", + "chopped cilantro", + "mango", + "avocado", + "pineapple salsa", + "chili powder", + "salt", + "mahi mahi fillets", + "cabbage", + "chili", + "flour tortillas", + "cilantro", + "serrano", + "coriander" + ] + }, + { + "id": 28775, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "onions", + "fresh rosemary", + "low salt chicken broth", + "bread", + "grated parmesan cheese", + "thick-cut bacon", + "fresh basil", + "escarole" + ] + }, + { + "id": 9571, + "cuisine": "british", + "ingredients": [ + "water", + "worcestershire sauce", + "vegetable oil", + "onions", + "black pepper", + "canned beef broth", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 17870, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "slaw mix", + "low sodium soy sauce", + "green onions", + "garlic cloves", + "white button mushrooms", + "flour tortillas", + "rice vinegar", + "olive oil", + "boneless skinless chicken breasts", + "corn starch" + ] + }, + { + "id": 1439, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "black beans", + "ground black pepper", + "purple onion", + "ground cumin", + "tomato paste", + "ancho chili ground pepper", + "lean ground beef", + "homemade beef stock", + "avocado", + "chili pepper", + "chile pepper", + "salt", + "(14.5 oz.) diced tomatoes", + "olive oil", + "cilantro", + "fresh lime juice" + ] + }, + { + "id": 21748, + "cuisine": "moroccan", + "ingredients": [ + "paprika", + "garlic cloves", + "basmati rice", + "cooking spray", + "mahimahi", + "flat leaf parsley", + "extra-virgin olive oil", + "fresh lemon juice", + "ground cumin", + "ground red pepper", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 1558, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "mirin", + "ramen noodles", + "salt", + "nori sheets", + "chicken", + "dashi kombu", + "spring onions", + "ginger", + "oil", + "pork shoulder", + "sake", + "bonito flakes", + "chili oil", + "freshly ground pepper", + "toasted sesame oil", + "cold water", + "reduced sodium soy sauce", + "shichimi togarashi", + "garlic", + "carrots", + "pork bones" + ] + }, + { + "id": 24147, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "shallots", + "corn starch", + "water", + "salt", + "fat free less sodium chicken broth", + "butter", + "polenta", + "chopped fresh chives", + "fresh lemon juice" + ] + }, + { + "id": 6407, + "cuisine": "irish", + "ingredients": [ + "chopped fresh chives", + "salsa", + "grating cheese", + "potatoes", + "greek yogurt" + ] + }, + { + "id": 18005, + "cuisine": "italian", + "ingredients": [ + "pepper", + "grated parmesan cheese", + "fresh mushrooms", + "pearl onions", + "butter", + "water", + "orzo pasta", + "fresh parsley", + "white wine", + "garlic powder", + "salt" + ] + }, + { + "id": 132, + "cuisine": "spanish", + "ingredients": [ + "coriander seeds", + "sea salt", + "fresh mint", + "frozen orange juice concentrate", + "fennel bulb", + "extra-virgin olive oil", + "ground black pepper", + "navel oranges", + "fat free yogurt", + "red wine vinegar", + "purple onion" + ] + }, + { + "id": 27955, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "boneless skinless chicken breasts", + "salt", + "corn starch", + "white pepper", + "marinade", + "oil", + "soy sauce", + "baking powder", + "lemon slices", + "chicken broth", + "large eggs", + "yellow food coloring", + "lemon juice" + ] + }, + { + "id": 43864, + "cuisine": "mexican", + "ingredients": [ + "corn husks", + "sauce", + "masa dough", + "salt", + "hot water", + "cooking spray", + "chopped onion", + "dried oregano", + "ground sirloin", + "garlic cloves" + ] + }, + { + "id": 16034, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame seeds", + "grapeseed oil", + "garlic cloves", + "onions", + "fresh ginger", + "rice wine", + "Gochujang base", + "kimchi", + "water", + "mirin", + "beef broth", + "carrots", + "boneless chuck roast", + "sesame oil", + "scallions", + "bay leaf" + ] + }, + { + "id": 18400, + "cuisine": "southern_us", + "ingredients": [ + "poblano peppers", + "yellow onion", + "corn", + "heavy cream", + "butter", + "olive oil", + "salt" + ] + }, + { + "id": 28079, + "cuisine": "greek", + "ingredients": [ + "orange", + "frozen mixed berries", + "bananas", + "greek yogurt" + ] + }, + { + "id": 26510, + "cuisine": "mexican", + "ingredients": [ + "dried cherry", + "tomatillos", + "corn tortillas", + "pears", + "green onions", + "large garlic cloves", + "dried oregano", + "dried apricot", + "epazote", + "onions", + "chipotle chile", + "vegetable oil", + "cinnamon sticks", + "chicken" + ] + }, + { + "id": 13357, + "cuisine": "jamaican", + "ingredients": [ + "capers", + "dried thyme", + "crushed red pepper flakes", + "long-grain rice", + "black beans", + "boneless skinless chicken breasts", + "garlic", + "black pepper", + "olive oil", + "dry red wine", + "onions", + "curry powder", + "diced tomatoes", + "ground allspice" + ] + }, + { + "id": 24721, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "asian fish sauce", + "brown sugar", + "fresh lime juice" + ] + }, + { + "id": 8808, + "cuisine": "indian", + "ingredients": [ + "bread", + "garam masala", + "salt", + "tomatoes", + "capsicum", + "oil", + "mustard", + "seeds", + "green chilies", + "tumeric", + "chili powder", + "coriander" + ] + }, + { + "id": 10219, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "orzo", + "red bell pepper", + "greek seasoning", + "cooking spray", + "salt", + "chicken breast tenders", + "extra-virgin olive oil", + "capers", + "green onions", + "fresh lemon juice" + ] + }, + { + "id": 13729, + "cuisine": "brazilian", + "ingredients": [ + "chili flakes", + "paprika", + "piri-piri sauce", + "pepper", + "salt", + "paprika paste", + "garlic", + "chicken", + "olive oil", + "lemon juice" + ] + }, + { + "id": 48750, + "cuisine": "greek", + "ingredients": [ + "pitas", + "garlic", + "garlic cloves", + "oregano", + "water", + "red wine vinegar", + "salt", + "lemon juice", + "pepper", + "pork loin", + "purple onion", + "fresh lemon juice", + "olive oil", + "extra-virgin olive oil", + "english cucumber", + "greek yogurt" + ] + }, + { + "id": 15305, + "cuisine": "japanese", + "ingredients": [ + "edamame", + "sushi rice", + "nori", + "wasabi", + "white sesame seeds", + "salt" + ] + }, + { + "id": 12125, + "cuisine": "southern_us", + "ingredients": [ + "fresh thyme leaves", + "lemon juice", + "ground black pepper", + "old bay seasoning", + "butter", + "large shrimp", + "Tabasco Pepper Sauce", + "worcestershire sauce" + ] + }, + { + "id": 3131, + "cuisine": "indian", + "ingredients": [ + "pastry", + "potatoes", + "cumin seed", + "frozen peas", + "cold water", + "water", + "ginger", + "rapeseed oil", + "fresh coriander", + "chili powder", + "oil", + "plain flour", + "garam masala", + "salt", + "chillies" + ] + }, + { + "id": 38976, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "coriander powder", + "cumin seed", + "tumeric", + "gluten free all purpose flour", + "tomatoes", + "salt", + "oil", + "marsala wine", + "chickpeas" + ] + }, + { + "id": 37609, + "cuisine": "irish", + "ingredients": [ + "large egg whites", + "jam", + "large eggs", + "sugar", + "fine sea salt", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 43290, + "cuisine": "mexican", + "ingredients": [ + "guajillo chiles", + "cinnamon", + "lard", + "boneless pork shoulder", + "ground black pepper", + "garlic cloves", + "dried oregano", + "chicken stock", + "baking powder", + "hot water", + "masa harina", + "kosher salt", + "banana leaves", + "chipotles in adobo" + ] + }, + { + "id": 1236, + "cuisine": "italian", + "ingredients": [ + "pecorino cheese", + "bay leaves", + "garlic", + "onions", + "tomatoes", + "boar", + "extra-virgin olive oil", + "fresh parsley", + "gnocchetti sardi", + "red wine", + "carrots", + "juniper berries", + "basil", + "celery" + ] + }, + { + "id": 33204, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "Progresso Balsamic Vinegar", + "shredded mozzarella cheese", + "gray salt", + "beef broth", + "onions", + "sage leaves", + "country bread", + "chopped garlic" + ] + }, + { + "id": 1164, + "cuisine": "korean", + "ingredients": [ + "red chili peppers", + "sesame oil", + "scallions", + "shiitake", + "garlic", + "soy sauce", + "chinese wheat noodles", + "carrots", + "sugar", + "flank steak", + "peanut oil" + ] + }, + { + "id": 10126, + "cuisine": "italian", + "ingredients": [ + "pepper", + "truffle oil", + "dry white wine", + "chopped celery", + "chopped fresh sage", + "shiitake mushroom caps", + "tomatoes", + "sherry vinegar", + "butternut squash", + "green peas", + "unsalted pumpkinseed kernels", + "carrots", + "water", + "chopped fresh chives", + "brown rice", + "salt", + "wild rice", + "fresh parsley", + "fontina cheese", + "olive oil", + "leeks", + "chopped fresh thyme", + "pearl barley", + "garlic cloves" + ] + }, + { + "id": 3747, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "cumin", + "low sodium chicken broth", + "chopped cilantro", + "olive oil", + "yellow onion", + "tomato paste", + "garlic", + "long grain white rice" + ] + }, + { + "id": 4954, + "cuisine": "italian", + "ingredients": [ + "capers", + "ground black pepper", + "chopped onion", + "flat leaf parsley", + "water", + "diced tomatoes", + "garlic cloves", + "large shrimp", + "pitted kalamata olives", + "dry white wine", + "lemon rind", + "couscous", + "fresh basil", + "olive oil", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 17940, + "cuisine": "french", + "ingredients": [ + "whole allspice", + "veal", + "heavy cream", + "fatback", + "pork shoulder", + "unsalted butter", + "baked ham", + "grated nutmeg", + "California bay leaves", + "black peppercorns", + "finely chopped onion", + "chopped fresh thyme", + "cognac", + "chicken livers", + "kosher salt", + "large eggs", + "bacon slices", + "garlic cloves" + ] + }, + { + "id": 43704, + "cuisine": "greek", + "ingredients": [ + "rice", + "greek seasoning", + "ripe olives", + "tomatoes", + "lemon juice" + ] + }, + { + "id": 14692, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "sesame oil", + "soy sauce", + "green onions", + "ground black pepper", + "white sugar", + "minced garlic", + "flank steak" + ] + }, + { + "id": 42921, + "cuisine": "italian", + "ingredients": [ + "milk", + "lemon zest", + "salt", + "marsala wine", + "large egg yolks", + "golden raisins", + "citron", + "sugar", + "active dry yeast", + "large eggs", + "fresh lemon juice", + "water", + "unsalted butter", + "all purpose unbleached flour" + ] + }, + { + "id": 34151, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "tomatoes", + "grated parmesan cheese", + "anchovy fillets", + "ground black pepper", + "salt", + "fontina", + "baking potatoes", + "dried oregano" + ] + }, + { + "id": 21835, + "cuisine": "cajun_creole", + "ingredients": [ + "yellow squash", + "green onions", + "garlic", + "oil", + "cooked rice", + "file powder", + "worcestershire sauce", + "chopped onion", + "shrimp", + "chicken broth", + "cayenne", + "parsley", + "salt", + "diced celery", + "green bell pepper", + "bay leaves", + "bacon", + "okra" + ] + }, + { + "id": 42440, + "cuisine": "italian", + "ingredients": [ + "Italian parsley leaves", + "chopped fresh mint", + "grated parmesan cheese", + "garlic cloves", + "fresh dill", + "toasted walnuts", + "grated lemon peel", + "chopped fresh chives", + "walnut oil" + ] + }, + { + "id": 44869, + "cuisine": "jamaican", + "ingredients": [ + "water", + "margarine", + "salt", + "sugar", + "all-purpose flour", + "instant yeast" + ] + }, + { + "id": 23969, + "cuisine": "italian", + "ingredients": [ + "nonfat yogurt", + "chestnut spread", + "ladyfingers", + "rum", + "semisweet chocolate", + "orange", + "whipping cream" + ] + }, + { + "id": 3682, + "cuisine": "southern_us", + "ingredients": [ + "dijon mustard", + "italian salad dressing", + "fresh cilantro", + "leaf lettuce", + "celery ribs", + "green onions", + "black-eyed peas", + "red bell pepper" + ] + }, + { + "id": 23262, + "cuisine": "vietnamese", + "ingredients": [ + "black pepper", + "garlic sauce", + "canola oil", + "fish sauce", + "sesame seeds", + "tri-tip steak", + "lemongrass", + "salt", + "brown sugar", + "shallots", + "sauce" + ] + }, + { + "id": 14477, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "garlic powder", + "refrigerated buttermilk biscuits", + "salt", + "unsalted butter" + ] + }, + { + "id": 30531, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "carrots", + "onions", + "yellow mustard seeds", + "peeled fresh ginger", + "grate lime peel", + "coriander seeds", + "low salt chicken broth", + "plain yogurt", + "peanut oil", + "fresh lime juice" + ] + }, + { + "id": 12346, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "shallots", + "fresh lemon juice", + "bibb lettuce", + "vinaigrette", + "ground black pepper", + "Italian parsley leaves", + "chervil", + "chives", + "tarragon leaves" + ] + }, + { + "id": 15987, + "cuisine": "italian", + "ingredients": [ + "roma tomatoes", + "pesto sauce", + "prepared pizza crust", + "mozzarella cheese" + ] + }, + { + "id": 9492, + "cuisine": "cajun_creole", + "ingredients": [ + "butter", + "Sargento® Artisan Blends® Shredded Parmesan Cheese", + "boneless skinless chicken breasts", + "heavy whipping cream", + "penne pasta", + "cajun seasoning", + "chopped parsley" + ] + }, + { + "id": 37844, + "cuisine": "indian", + "ingredients": [ + "large eggs", + "all-purpose flour", + "ground turmeric", + "russet", + "yoghurt", + "ground coriander", + "ground cumin", + "unsalted butter", + "vegetable oil", + "frozen peas", + "fresh cilantro", + "peeled fresh ginger", + "onions" + ] + }, + { + "id": 24259, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "fresh lemon juice", + "sugar", + "salt", + "blackberries", + "baking powder", + "nectarines", + "milk", + "all-purpose flour" + ] + }, + { + "id": 34231, + "cuisine": "indian", + "ingredients": [ + "tortillas", + "greek yogurt", + "purple onion", + "tandoori paste", + "chicken breasts", + "red bell pepper", + "carrots", + "iceberg lettuce" + ] + }, + { + "id": 19130, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "flour tortillas", + "salsa", + "iceberg lettuce", + "kidney beans", + "chili powder", + "ground beef", + "shredded cheddar cheese", + "corn oil", + "sour cream", + "finely chopped onion", + "salt", + "cumin" + ] + }, + { + "id": 46455, + "cuisine": "mexican", + "ingredients": [ + "bay leaves", + "ground allspice", + "ancho chile pepper", + "chopped cilantro fresh", + "kosher salt", + "large garlic cloves", + "dark beer", + "fresh lime juice", + "ground cumin", + "radishes", + "chile de arbol", + "pork shoulder boston butt", + "onions", + "sugar", + "vegetable oil", + "ground coriander", + "corn tortillas", + "dried oregano" + ] + }, + { + "id": 47384, + "cuisine": "indian", + "ingredients": [ + "chile de arbol", + "basmati rice", + "asafoetida", + "yellow onion", + "plum tomatoes", + "curry leaves", + "garlic", + "ground turmeric", + "kosher salt", + "black mustard seeds", + "canola oil" + ] + }, + { + "id": 2928, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "all-purpose flour", + "milk", + "butter", + "active dry yeast", + "salt", + "warm water", + "vegetable oil" + ] + }, + { + "id": 14443, + "cuisine": "indian", + "ingredients": [ + "water", + "cilantro leaves", + "dried red chile peppers", + "red chili powder", + "chile pepper", + "mustard seeds", + "white sugar", + "tomatoes", + "cooking oil", + "cumin seed", + "onions", + "fresh curry leaves", + "salt", + "asafoetida powder", + "ground turmeric" + ] + }, + { + "id": 18447, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "fat free milk", + "romaine lettuce leaves", + "all-purpose flour", + "warm water", + "cooking spray", + "salt", + "garlic cloves", + "sesame seeds", + "peeled fresh ginger", + "rice vinegar", + "sugar", + "dry yeast", + "crushed red pepper", + "pork roast" + ] + }, + { + "id": 8775, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "rice noodles", + "green onions", + "garlic chili sauce", + "medium shrimp uncook", + "napa cabbage", + "brown sugar", + "sesame oil", + "carrots" + ] + }, + { + "id": 40252, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "salt", + "sesame oil", + "scallions", + "sesame seeds", + "persian cucumber", + "vegetable oil" + ] + }, + { + "id": 4267, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "yellow onion", + "soya bean", + "coconut milk", + "sugar", + "rice vinegar", + "chili paste", + "roasted peanuts" + ] + }, + { + "id": 20796, + "cuisine": "jamaican", + "ingredients": [ + "white pepper", + "ground nutmeg", + "rum", + "ground allspice", + "lime", + "jerk rub seasoning", + "purple onion", + "chicken", + "dried thyme", + "cooking oil", + "salt", + "ground cinnamon", + "leaves", + "jalapeno chilies", + "onion tops" + ] + }, + { + "id": 6203, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "dark rum", + "apple cider", + "sugar", + "large eggs", + "heavy cream", + "unsalted butter", + "vegetable oil", + "confectioners sugar", + "water", + "golden delicious apples", + "self-rising cake flour" + ] + }, + { + "id": 19991, + "cuisine": "vietnamese", + "ingredients": [ + "mint", + "pepper", + "thai basil", + "hot pepper", + "garlic", + "fresh herbs", + "sirloin tip", + "sugar", + "olive oil", + "shallots", + "cilantro", + "scallions", + "Balsamico Bianco", + "fish sauce", + "water", + "herbs", + "rice noodles", + "hot sauce", + "fresh lime juice", + "dressing", + "kosher salt", + "hot chili", + "marinade", + "crushed red pepper flakes", + "garlic cloves" + ] + }, + { + "id": 12868, + "cuisine": "japanese", + "ingredients": [ + "spinach leaves", + "white miso", + "white sugar", + "salmon fillets", + "egg yolks", + "sake", + "mirin", + "water", + "salt" + ] + }, + { + "id": 43690, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper", + "olive oil", + "fresh rosemary", + "cornish game hens" + ] + }, + { + "id": 13538, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "chopped cilantro fresh", + "corn kernels", + "salt", + "sweet onion", + "cracked black pepper", + "unsalted butter", + "red bell pepper" + ] + }, + { + "id": 46288, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "waxy potatoes", + "unsalted butter", + "garlic cloves", + "onions", + "ground black pepper", + "salt", + "flat leaf parsley", + "lemon", + "mullet" + ] + }, + { + "id": 19139, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "fresh cilantro", + "udon", + "salt", + "soy sauce", + "sesame seeds", + "vegetable oil", + "toasted sesame oil", + "baby bok choy", + "fresh ginger", + "green onions", + "carrots", + "chicken broth", + "black cod fillets", + "ground black pepper", + "dry sherry", + "five-spice powder" + ] + }, + { + "id": 37458, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "ground coriander", + "ground cumin", + "hungarian paprika", + "ground turmeric", + "ground cloves", + "ground cardamom", + "fennel seeds", + "ground red pepper", + "brown mustard" + ] + }, + { + "id": 9587, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "butter", + "onions", + "cream", + "meat", + "pork roast", + "potatoes", + "salt", + "milk", + "chicken meat" + ] + }, + { + "id": 2290, + "cuisine": "filipino", + "ingredients": [ + "kosher salt", + "shallots", + "tomatoes", + "Anaheim chile", + "kabocha squash", + "ground black pepper", + "okra", + "pork belly", + "shrimp paste", + "japanese eggplants" + ] + }, + { + "id": 10761, + "cuisine": "spanish", + "ingredients": [ + "chicken broth", + "golden raisins", + "extra-virgin olive oil", + "boneless skinless chicken breast halves", + "sliced almonds", + "dry sherry", + "freshly ground pepper", + "tumeric", + "butter", + "salt", + "saffron threads", + "piquillo peppers", + "white rice", + "flat leaf parsley" + ] + }, + { + "id": 49646, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "fresh ginger", + "coarse salt", + "salt", + "carrots", + "toasted cashews", + "sweet potatoes", + "raw cashews", + "chickpeas", + "onions", + "neutral oil", + "coriander seeds", + "raisins", + "broccoli", + "coconut milk", + "fresh cilantro", + "seeds", + "garlic", + "cumin seed", + "naan" + ] + }, + { + "id": 26818, + "cuisine": "cajun_creole", + "ingredients": [ + "liquid smoke", + "Tabasco Pepper Sauce", + "garlic", + "oregano", + "Heinz Chili Sauce", + "worcestershire sauce", + "fresh lemon juice", + "jumbo shrimp", + "butter", + "cayenne pepper", + "olive oil", + "paprika", + "fresh parsley" + ] + }, + { + "id": 12310, + "cuisine": "filipino", + "ingredients": [ + "vanilla beans", + "coconut milk", + "sugar", + "flaked coconut", + "soy milk", + "fruit", + "small pearl tapioca" + ] + }, + { + "id": 49149, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "baking powder", + "whole milk", + "all-purpose flour", + "butter" + ] + }, + { + "id": 3718, + "cuisine": "filipino", + "ingredients": [ + "condensed milk", + "water", + "table cream", + "gelatin" + ] + }, + { + "id": 4189, + "cuisine": "greek", + "ingredients": [ + "sugar", + "dry white wine", + "plum tomatoes", + "water", + "salt", + "black pepper", + "red wine vinegar", + "chicken", + "prunes", + "unsalted butter", + "cinnamon sticks" + ] + }, + { + "id": 6807, + "cuisine": "indian", + "ingredients": [ + "evaporated milk", + "white rice", + "chillies", + "tomatoes", + "chicken breasts", + "natural yogurt", + "ground cumin", + "cooking spray", + "garlic", + "coriander", + "lime juice", + "paprika", + "ginger root" + ] + }, + { + "id": 22536, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "onions", + "mint", + "garlic", + "greek yogurt", + "feta cheese", + "cayenne pepper", + "oregano", + "chicken breasts", + "lemon juice" + ] + }, + { + "id": 24953, + "cuisine": "french", + "ingredients": [ + "sugar", + "semisweet chocolate", + "water", + "hot water", + "instant espresso granules", + "whipped topping", + "cream of tartar", + "large egg whites", + "unsweetened cocoa powder" + ] + }, + { + "id": 12559, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "large egg yolks", + "whole milk", + "vanilla extract", + "milk chocolate", + "semisweet chocolate", + "almond extract", + "all-purpose flour", + "marzipan", + "large eggs", + "whipping cream", + "sugar", + "unsalted butter", + "mushrooms", + "salt" + ] + }, + { + "id": 46434, + "cuisine": "japanese", + "ingredients": [ + "pomegranate seeds", + "daikon", + "granulated sugar", + "rice vinegar", + "Fuyu persimmons", + "carrots", + "dashi", + "salt" + ] + }, + { + "id": 45909, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "salt", + "olive oil", + "balsamic vinegar", + "plum tomatoes", + "fresh cilantro", + "green onions", + "white sugar", + "black-eyed peas", + "garlic" + ] + }, + { + "id": 3164, + "cuisine": "mexican", + "ingredients": [ + "turkey bacon", + "onions", + "black beans", + "jalapeno chilies", + "chicken stock", + "ground black pepper", + "chopped cilantro fresh", + "minced garlic", + "salt" + ] + }, + { + "id": 49107, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "taco seasoning mix", + "shredded cheddar cheese", + "chopped cilantro", + "boneless skinless chicken breasts" + ] + }, + { + "id": 12422, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "pepper", + "butter", + "coriander", + "tandoori masala mix", + "chicken breasts", + "paprika", + "tumeric", + "ground nutmeg", + "heavy cream", + "ground cumin", + "ground ginger", + "ground cloves", + "cinnamon", + "salt" + ] + }, + { + "id": 33095, + "cuisine": "southern_us", + "ingredients": [ + "chopped green bell pepper", + "clam juice", + "chopped celery", + "garlic cloves", + "lump crab meat", + "cooking spray", + "old bay seasoning", + "all-purpose flour", + "red bell pepper", + "black pepper", + "half & half", + "butter", + "salt", + "carrots", + "dried thyme", + "whole milk", + "dry sherry", + "chopped onion", + "bay leaf" + ] + }, + { + "id": 15398, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "frozen whole kernel corn", + "cilantro sprigs", + "boneless pork loin", + "dried oregano", + "chicken broth", + "shredded cheddar cheese", + "vegetable oil", + "salsa", + "onions", + "green chile", + "flour tortillas", + "salt", + "garlic cloves", + "ground cumin", + "black beans", + "green onions", + "all-purpose flour", + "sour cream" + ] + }, + { + "id": 10576, + "cuisine": "mexican", + "ingredients": [ + "lime", + "purple onion", + "freshly ground pepper", + "cumin", + "poblano peppers", + "grated jack cheese", + "adobo sauce", + "olive oil", + "salt", + "sour cream", + "lime juice", + "jalapeno chilies", + "ear of corn", + "chopped cilantro fresh" + ] + }, + { + "id": 24608, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "garlic powder", + "chopped onion", + "ground cumin", + "pepper", + "cheese", + "chopped cilantro", + "black beans", + "chili powder", + "red bell pepper", + "cooked rice", + "corn", + "salt", + "ground beef" + ] + }, + { + "id": 44454, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "chili powder", + "salt", + "peanut oil", + "chicken", + "coriander powder", + "ginger", + "rice", + "juice", + "plain yogurt", + "cinnamon", + "cilantro leaves", + "cardamom", + "clove", + "mint leaves", + "garlic", + "green chilies", + "onions" + ] + }, + { + "id": 22525, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "slaw mix", + "chipotle chile powder", + "plain yogurt", + "flounder fillets", + "black pepper", + "salt", + "olive oil", + "corn tortillas" + ] + }, + { + "id": 14604, + "cuisine": "french", + "ingredients": [ + "spanish onion", + "fresh thyme leaves", + "unsalted butter", + "frozen pastry puff sheets", + "ground black pepper", + "salt" + ] + }, + { + "id": 3598, + "cuisine": "spanish", + "ingredients": [ + "crusty bread", + "salt", + "olive oil", + "garlic cloves", + "broad beans", + "dill", + "mint", + "lemon", + "chorizo sausage" + ] + }, + { + "id": 30355, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "heavy cream", + "sliced mushrooms", + "parsley flakes", + "butter", + "bow-tie pasta", + "chicken bouillon", + "asiago", + "corn starch", + "vegetable oil", + "garlic", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 1327, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "vegetable oil", + "dried rosemary", + "vinegar", + "salt", + "ground black pepper", + "garlic", + "water", + "italian style seasoning", + "poultry seasoning" + ] + }, + { + "id": 18944, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "butter", + "applesauce", + "honey", + "large eggs", + "salt", + "melted butter", + "raw honey", + "buttermilk", + "cornmeal", + "baking soda", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 30204, + "cuisine": "british", + "ingredients": [ + "cream", + "strawberries", + "egg whites", + "orange liqueur", + "superfine sugar", + "confectioners sugar", + "cream of tartar", + "meringue nests" + ] + }, + { + "id": 32890, + "cuisine": "french", + "ingredients": [ + "parsley sprigs", + "yukon gold potatoes", + "carrots", + "celery ribs", + "beef shank", + "beef rib short", + "thyme sprigs", + "black peppercorns", + "Turkish bay leaves", + "garlic cloves", + "cold water", + "leeks", + "allspice berries" + ] + }, + { + "id": 29094, + "cuisine": "chinese", + "ingredients": [ + "honey", + "peeled fresh ginger", + "garlic cloves", + "soy sauce", + "hoisin sauce", + "rice vinegar", + "cayenne", + "plums", + "boneless chicken skinless thigh", + "flour tortillas", + "scallions" + ] + }, + { + "id": 49696, + "cuisine": "french", + "ingredients": [ + "grated parmesan cheese", + "bay leaves", + "salt", + "ground nutmeg", + "egg yolks", + "butter", + "large eggs", + "half & half", + "heavy cream", + "milk", + "frozen pastry puff sheets", + "yukon gold potatoes", + "freshly ground pepper" + ] + }, + { + "id": 17964, + "cuisine": "mexican", + "ingredients": [ + "pasta", + "vegetable oil", + "sour cream", + "green onions", + "yellow onion", + "jack", + "garlic", + "chicken breasts", + "enchilada sauce" + ] + }, + { + "id": 10906, + "cuisine": "french", + "ingredients": [ + "capers", + "lemon juice", + "dried tarragon leaves", + "mayonaise", + "creole mustard", + "sweet pickle" + ] + }, + { + "id": 42736, + "cuisine": "chinese", + "ingredients": [ + "turbinado", + "light soy sauce", + "chinese five-spice powder", + "dark soy sauce", + "star anise", + "cinnamon sticks", + "eggs", + "coarse salt", + "black tea", + "water", + "freshly ground pepper" + ] + }, + { + "id": 45862, + "cuisine": "french", + "ingredients": [ + "honey", + "parsnips", + "extra-virgin olive oil", + "kosher salt", + "carrots", + "fresh rosemary", + "butter" + ] + }, + { + "id": 32671, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking soda", + "pineapple juice", + "confectioners sugar", + "whole wheat pastry flour", + "unsalted butter", + "chopped walnuts", + "sugar", + "bananas", + "cream cheese", + "ground cinnamon", + "olive oil", + "vanilla extract", + "crushed pineapple" + ] + }, + { + "id": 23220, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "chopped cilantro", + "crushed tomatoes", + "chickpeas", + "serrano chile", + "tomato paste", + "vegetable oil", + "onions", + "fresh ginger", + "greek yogurt" + ] + }, + { + "id": 5960, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "cooking spray", + "fresh parmesan cheese", + "yellow corn meal", + "extra-virgin olive oil" + ] + }, + { + "id": 9501, + "cuisine": "moroccan", + "ingredients": [ + "chicken stock", + "extra-virgin olive oil", + "cumin seed", + "bay leaf", + "cornish game hens", + "sauce", + "carrots", + "coriander seeds", + "cardamom seeds", + "garlic cloves", + "fennel seeds", + "whole cloves", + "orange juice", + "cinnamon sticks" + ] + }, + { + "id": 23885, + "cuisine": "italian", + "ingredients": [ + "turkey breast cutlets", + "olive oil", + "basil", + "black pepper", + "cooking spray", + "garlic cloves", + "marsala wine", + "garlic powder", + "salt", + "fresh basil", + "fat free less sodium chicken broth", + "mushrooms", + "corn starch" + ] + }, + { + "id": 145, + "cuisine": "french", + "ingredients": [ + "ground ginger", + "salt", + "butter", + "white pepper", + "chicken", + "dry sherry" + ] + }, + { + "id": 42207, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "chicken broth", + "dry white wine", + "sweet onion", + "butter", + "arborio rice", + "parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 4026, + "cuisine": "cajun_creole", + "ingredients": [ + "bacon", + "creole seasoning", + "ground black pepper", + "salt", + "onions", + "green bell pepper", + "garlic", + "green beans", + "unsalted butter", + "cayenne pepper" + ] + }, + { + "id": 28386, + "cuisine": "spanish", + "ingredients": [ + "mussels", + "baguette", + "dry white wine", + "garlic cloves", + "celery ribs", + "pepper", + "unsalted butter", + "cayenne pepper", + "tomato paste", + "water", + "extra-virgin olive oil", + "fresh lemon juice", + "saffron threads", + "bottled clam juice", + "light cream", + "salt", + "onions" + ] + }, + { + "id": 23442, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "pineapple", + "liquid", + "ground cumin", + "catfish fillets", + "water", + "salt", + "beansprouts", + "sugar", + "cilantro", + "okra", + "tomatoes", + "rice paddy herb", + "yellow onion", + "canola oil" + ] + }, + { + "id": 26206, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "salt", + "melted butter", + "large eggs", + "oil", + "powdered sugar", + "baking powder", + "granulated sugar", + "all-purpose flour" + ] + }, + { + "id": 12446, + "cuisine": "greek", + "ingredients": [ + "pitted kalamata olives", + "feta cheese", + "orzo", + "dried oregano", + "minced garlic", + "green onions", + "fresh lemon juice", + "pinenuts", + "dijon mustard", + "white wine vinegar", + "ground cumin", + "capers", + "olive oil", + "yellow bell pepper", + "red bell pepper" + ] + }, + { + "id": 47478, + "cuisine": "indian", + "ingredients": [ + "white bread", + "cilantro", + "green chilies", + "bell pepper", + "salt", + "oil", + "tomatoes", + "ginger", + "cumin seed", + "yoghurt", + "all-purpose flour", + "coarse semolina" + ] + }, + { + "id": 21103, + "cuisine": "indian", + "ingredients": [ + "grated coconut", + "urad dal", + "asafetida", + "red chili peppers", + "channa dal", + "jaggery", + "vegetable oil", + "fenugreek seeds", + "tamarind", + "salt" + ] + }, + { + "id": 22397, + "cuisine": "indian", + "ingredients": [ + "warm water", + "cilantro sprigs", + "onions", + "vegetable oil", + "tamarind concentrate", + "coconut", + "black mustard seeds", + "serrano chile", + "tumeric", + "coarse salt", + "fillets" + ] + }, + { + "id": 47590, + "cuisine": "spanish", + "ingredients": [ + "chicken wings", + "clam juice", + "rice mix", + "frozen peas", + "pepperoni slices", + "cooked shrimp", + "roasted red peppers", + "saffron" + ] + }, + { + "id": 1351, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "butter", + "grated lemon peel", + "milk", + "salt", + "sugar", + "vanilla extract", + "pears", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 20738, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "black pepper", + "salt", + "water", + "polenta", + "parmigiano reggiano cheese" + ] + }, + { + "id": 40104, + "cuisine": "mexican", + "ingredients": [ + "dark chocolate", + "olive oil", + "chipotles in adobo", + "black beans", + "shallots", + "pasilla chiles", + "almonds", + "chicken stock", + "kosher salt", + "garlic" + ] + }, + { + "id": 47816, + "cuisine": "chinese", + "ingredients": [ + "chinese black mushrooms", + "green onions", + "shrimp", + "soy sauce", + "won ton wrappers", + "dry sherry", + "hot water", + "sugar", + "water", + "sesame oil", + "corn starch", + "lean ground pork", + "water chestnuts", + "chinese pepper" + ] + }, + { + "id": 8542, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "butter", + "cheddar cheese", + "ground black pepper", + "milk", + "grits", + "vegetable oil cooking spray", + "half & half" + ] + }, + { + "id": 14270, + "cuisine": "mexican", + "ingredients": [ + "barbecue sauce", + "sazon seasoning", + "ground black pepper", + "coriander", + "garlic powder", + "Mexican beer", + "achiote", + "bone in chicken thighs" + ] + }, + { + "id": 35111, + "cuisine": "chinese", + "ingredients": [ + "chili oil", + "oil", + "soy sauce", + "rice", + "eggs", + "sauce", + "zucchini", + "scallions" + ] + }, + { + "id": 24106, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "fresh dill", + "red wine vinegar", + "salt", + "rocket leaves", + "ground black pepper", + "extra-virgin olive oil", + "garlic cloves", + "pita bread", + "fresh oregano leaves", + "dry red wine", + "greek style plain yogurt", + "tomato paste", + "capers", + "pork tenderloin", + "purple onion", + "bay leaf" + ] + }, + { + "id": 43089, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "salt", + "tumeric", + "green onions", + "water", + "vegetable oil", + "finely chopped onion", + "long grain white rice" + ] + }, + { + "id": 16707, + "cuisine": "greek", + "ingredients": [ + "artichoke hearts", + "white wine vinegar", + "dried oregano", + "tomatoes", + "yellow bell pepper", + "cucumber", + "kalamata", + "feta cheese crumbles", + "sweet onion", + "extra-virgin olive oil", + "grated lemon peel" + ] + }, + { + "id": 5747, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garbanzo beans", + "peas", + "garlic cloves", + "water", + "chili powder", + "paneer", + "basmati rice", + "tumeric", + "garam masala", + "mild green chiles", + "onions", + "olive oil", + "ginger", + "salt" + ] + }, + { + "id": 25174, + "cuisine": "cajun_creole", + "ingredients": [ + "white wine", + "roma tomatoes", + "cajun seasoning", + "medium shrimp", + "fettucine", + "ground black pepper", + "mushrooms", + "garlic", + "green bell pepper", + "grated parmesan cheese", + "green onions", + "smoked sausage", + "milk", + "broccoli florets", + "butter", + "cooked chicken breasts" + ] + }, + { + "id": 19337, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "lemon peel", + "all-purpose flour", + "sugar", + "active dry yeast", + "beaten eggs", + "lemon juice", + "warm water", + "ground nutmeg", + "salt", + "glaze", + "ground cinnamon", + "milk", + "egg yolks", + "softened butter" + ] + }, + { + "id": 8070, + "cuisine": "indian", + "ingredients": [ + "whole wheat flour", + "hot water", + "salt", + "olive oil" + ] + }, + { + "id": 258, + "cuisine": "irish", + "ingredients": [ + "vegetable oil", + "crumbled blue cheese", + "large eggs", + "all-purpose flour", + "milk", + "salt" + ] + }, + { + "id": 38477, + "cuisine": "mexican", + "ingredients": [ + "extra-virgin olive oil", + "garlic cloves", + "medium shrimp", + "corn husks", + "cilantro leaves", + "masa dough", + "lime wedges", + "frozen corn kernels", + "fresh lime juice", + "salt", + "hot water", + "sliced green onions" + ] + }, + { + "id": 20115, + "cuisine": "southern_us", + "ingredients": [ + "corn kernels", + "shallots", + "chopped onion", + "fresh mint", + "rosemary sprigs", + "pork tenderloin", + "all-purpose flour", + "chutney", + "olive oil", + "whipping cream", + "garlic cloves", + "ground black pepper", + "salt", + "low salt chicken broth" + ] + }, + { + "id": 30427, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "mushrooms", + "large shrimp", + "spinach", + "olive oil", + "refrigerated fettuccine", + "fresh basil", + "kosher salt", + "garlic cloves", + "vodka", + "marinara sauce", + "heavy whipping cream" + ] + }, + { + "id": 30098, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dry white wine", + "salt", + "canned low sodium chicken broth", + "pork tenderloin", + "garlic", + "clove", + "ground black pepper", + "bacon", + "onions", + "rosemary", + "bay leaves", + "wine vinegar" + ] + }, + { + "id": 38888, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "lemon-lime soda", + "grated lemon peel", + "unsalted butter", + "all-purpose flour", + "vegetable oil spray", + "salt", + "powdered sugar", + "large eggs", + "grate lime peel" + ] + }, + { + "id": 17153, + "cuisine": "italian", + "ingredients": [ + "bell pepper", + "baby arugula", + "orzo", + "olive oil", + "feta cheese crumbles" + ] + }, + { + "id": 27686, + "cuisine": "italian", + "ingredients": [ + "parsley sprigs", + "olive oil", + "salt", + "italian sausage", + "water", + "large eggs", + "Italian bread", + "pepper", + "prosciutto", + "provolone cheese", + "spinach", + "milk", + "hard-boiled egg", + "ground beef" + ] + }, + { + "id": 4369, + "cuisine": "mexican", + "ingredients": [ + "lime", + "sour cream", + "whitefish", + "olive oil", + "salad greens", + "corn tortillas", + "pico de gallo", + "Sriracha" + ] + }, + { + "id": 28945, + "cuisine": "filipino", + "ingredients": [ + "worcestershire sauce", + "onions", + "water", + "ground mustard", + "canola oil", + "soy sauce", + "green pepper", + "boneless skinless chicken breast halves", + "zucchini", + "fresh mushrooms" + ] + }, + { + "id": 47152, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "fresh orange juice", + "ancho chile pepper", + "honey", + "turkey", + "low salt chicken broth", + "stock", + "unsalted butter", + "garlic", + "plum tomatoes", + "water", + "chili powder", + "unsweetened chocolate" + ] + }, + { + "id": 41010, + "cuisine": "filipino", + "ingredients": [ + "cooking oil", + "scallions", + "garlic powder", + "yellow onion", + "plum tomatoes", + "minced ginger", + "sea salt", + "lemon juice", + "ground black pepper", + "tilapia" + ] + }, + { + "id": 35612, + "cuisine": "italian", + "ingredients": [ + "white pepper", + "gorgonzola", + "butter", + "milk", + "brown mustard", + "eggs", + "cheese" + ] + }, + { + "id": 48603, + "cuisine": "mexican", + "ingredients": [ + "strawberries", + "sugar", + "fresh lime juice", + "water" + ] + }, + { + "id": 30051, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "salt", + "chili powder", + "garlic cloves", + "crushed red pepper", + "peanuts", + "salted peanuts" + ] + }, + { + "id": 15205, + "cuisine": "mexican", + "ingredients": [ + "skim milk", + "butter", + "salt", + "eggs", + "pepper", + "red pepper", + "shredded cheese", + "chili pepper", + "grapeseed oil", + "green pepper", + "spinach", + "garlic powder", + "purple onion", + "smoked paprika" + ] + }, + { + "id": 25395, + "cuisine": "italian", + "ingredients": [ + "garbanzo beans", + "chopped fresh mint", + "extra-virgin olive oil", + "orecchiette", + "feta cheese", + "chopped cilantro fresh", + "grape tomatoes", + "garlic cloves", + "sliced green onions" + ] + }, + { + "id": 21572, + "cuisine": "french", + "ingredients": [ + "red potato", + "ground black pepper", + "loin", + "plum tomatoes", + "brine-cured olives", + "romaine lettuce", + "purple onion", + "fresh parsley leaves", + "dressing", + "rosemary sprigs", + "hard-boiled egg", + "tarragon leaves", + "haricots verts", + "olive oil", + "salt", + "chopped fresh herbs" + ] + }, + { + "id": 40331, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "salt", + "medium eggs", + "eggplant", + "nonfat ricotta cheese", + "olive oil", + "fresh parsley", + "tomato sauce", + "pecorino romano cheese" + ] + }, + { + "id": 36939, + "cuisine": "cajun_creole", + "ingredients": [ + "green onions", + "white wine vinegar", + "garlic cloves", + "jumbo shrimp", + "sub buns", + "peanut oil", + "pickle relish", + "yellow corn meal", + "light mayonnaise", + "all-purpose flour", + "cabbage", + "creole mustard", + "ground red pepper", + "salt", + "fresh parsley" + ] + }, + { + "id": 4889, + "cuisine": "italian", + "ingredients": [ + "gaeta olives", + "pecorino romano cheese", + "unsalted butter", + "water", + "salt", + "black pepper", + "basil leaves" + ] + }, + { + "id": 28694, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "kosher salt", + "finely chopped onion", + "heirloom tomatoes", + "chopped fresh mint", + "bread crumb fresh", + "ground black pepper", + "large garlic cloves", + "red bell pepper", + "pecorino cheese", + "water", + "large eggs", + "extra-virgin olive oil", + "polenta", + "fresh marjoram", + "eggplant", + "dry white wine", + "salt", + "ground lamb" + ] + }, + { + "id": 22776, + "cuisine": "thai", + "ingredients": [ + "butter lettuce", + "tangerine zest", + "raw sugar", + "champagne vinegar", + "avocado", + "kosher salt", + "rice noodles", + "cilantro leaves", + "jumbo shrimp", + "zucchini", + "fresh orange juice", + "rice paper", + "pea shoots", + "vegetables", + "red pepper flakes", + "garlic cloves" + ] + }, + { + "id": 16825, + "cuisine": "indian", + "ingredients": [ + "batter", + "garlic", + "masala", + "sugar", + "color food orang", + "all-purpose flour", + "water", + "chili powder", + "chicken thighs", + "olive oil", + "salt", + "ginger paste" + ] + }, + { + "id": 7896, + "cuisine": "italian", + "ingredients": [ + "sourdough bread", + "diced tomatoes with garlic and onion", + "fresh basil", + "fresh parmesan cheese", + "olive oil", + "garlic cloves", + "fat free less sodium chicken broth", + "chopped onion" + ] + }, + { + "id": 11308, + "cuisine": "italian", + "ingredients": [ + "sugar", + "almond extract", + "whole milk", + "slivered almonds", + "almond paste" + ] + }, + { + "id": 44147, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "rice wine", + "honey", + "chopped garlic", + "sugar", + "asian pear", + "pepper", + "sesame oil" + ] + }, + { + "id": 12113, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "scallions", + "sugar", + "chicken breasts", + "star anise", + "Shaoxing wine", + "ginger", + "garlic cloves", + "soy sauce", + "szechwan peppercorns", + "rice vinegar" + ] + }, + { + "id": 6299, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "Tabasco Pepper Sauce", + "green pepper", + "thyme", + "fresh basil", + "bay leaves", + "salt", + "okra", + "oregano", + "non fat chicken stock", + "garlic", + "chopped onion", + "celery", + "andouille sausage", + "brown rice", + "cayenne pepper", + "shrimp", + "plum tomatoes" + ] + }, + { + "id": 38791, + "cuisine": "southern_us", + "ingredients": [ + "kielbasa", + "water", + "shrimp", + "fresh corn", + "small red potato", + "old bay seasoning" + ] + }, + { + "id": 31637, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "whole wheat tortillas", + "onions", + "Anaheim chile", + "green pepper", + "black beans", + "romaine lettuce leaves", + "shredded Monterey Jack cheese", + "corn oil", + "red bell pepper" + ] + }, + { + "id": 11727, + "cuisine": "chinese", + "ingredients": [ + "white button mushrooms", + "fresh ginger", + "all-purpose flour", + "soy sauce", + "boneless skinless chicken breasts", + "garlic cloves", + "chicken broth", + "cooking oil", + "broccoli", + "honey", + "sesame oil", + "onions" + ] + }, + { + "id": 31794, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "chinese barbecue sauce", + "sugar" + ] + }, + { + "id": 12419, + "cuisine": "french", + "ingredients": [ + "cooking spray", + "cinnamon sticks", + "phyllo dough", + "port", + "walnut oil", + "honey", + "salt", + "dried fig", + "powdered sugar", + "fresh orange juice", + "cream cheese, soften" + ] + }, + { + "id": 14424, + "cuisine": "cajun_creole", + "ingredients": [ + "crawfish", + "vegetable oil", + "onions", + "tomato paste", + "chopped green bell pepper", + "corn starch", + "water", + "butter", + "chicken broth", + "green onions", + "celery" + ] + }, + { + "id": 16265, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "purple onion", + "chopped cilantro fresh", + "sugar", + "balsamic vinegar", + "fresh lime juice", + "corn kernels", + "salt", + "vegetable oil", + "nopalitos" + ] + }, + { + "id": 6135, + "cuisine": "southern_us", + "ingredients": [ + "yellow squash", + "salt", + "garlic cloves", + "water", + "condensed reduced fat reduced sodium cream of mushroom soup", + "provolone cheese", + "black pepper", + "non-fat sour cream", + "Italian turkey sausage", + "white bread", + "cooking spray", + "chopped onion" + ] + }, + { + "id": 10215, + "cuisine": "thai", + "ingredients": [ + "romaine lettuce", + "serrano peppers", + "green peas", + "corn starch", + "unsweetened coconut milk", + "granny smith apples", + "vegetable oil", + "freshly ground pepper", + "curry paste", + "soy sauce", + "green onions", + "dried shiitake mushrooms", + "hot water", + "cold water", + "boneless chicken thighs", + "loosely packed fresh basil leaves", + "carrots" + ] + }, + { + "id": 36909, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "garlic", + "parsley", + "couscous", + "lemon", + "heirloom squash", + "lamb sausage", + "purple onion" + ] + }, + { + "id": 9441, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "granulated garlic", + "flour", + "thyme", + "eggs", + "milk", + "oil", + "black pepper", + "paprika" + ] + }, + { + "id": 41439, + "cuisine": "southern_us", + "ingredients": [ + "egg yolks", + "vanilla extract", + "heavy whipping cream", + "unflavored gelatin", + "whole milk", + "all-purpose flour", + "sugar", + "butter", + "gingersnap crumbs", + "banana puree", + "graham cracker crumbs", + "vanilla wafers", + "confectioners sugar" + ] + }, + { + "id": 4166, + "cuisine": "thai", + "ingredients": [ + "dark soy sauce", + "dark brown sugar", + "baby eggplants", + "white vinegar", + "garlic", + "red bell pepper", + "jasmine rice", + "peanut oil", + "fresh basil", + "crushed red pepper", + "onions" + ] + }, + { + "id": 30411, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "ground sirloin", + "fresh onion", + "fresh parmesan cheese", + "1% low-fat milk", + "fresh parsley", + "shredded carrots", + "salt", + "fat free less sodium chicken broth", + "orzo", + "Italian bread" + ] + }, + { + "id": 18057, + "cuisine": "southern_us", + "ingredients": [ + "whole grain mustard", + "buttermilk", + "cornmeal", + "Louisiana Hot Sauce", + "vegetable oil", + "creole seasoning", + "catfish fillets", + "lemon wedge", + "all-purpose flour", + "minced garlic", + "coarse salt", + "tartar sauce" + ] + }, + { + "id": 40698, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "chicken", + "avocado", + "crema mexican", + "flour tortillas", + "white onion", + "salsa" + ] + }, + { + "id": 4269, + "cuisine": "italian", + "ingredients": [ + "garlic", + "ground black pepper", + "spaghettini", + "butter" + ] + }, + { + "id": 4226, + "cuisine": "french", + "ingredients": [ + "fresh raspberries", + "sugar", + "chambord", + "water" + ] + }, + { + "id": 7215, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "olive oil", + "chopped celery", + "carrots", + "fat free less sodium chicken broth", + "shallots", + "garlic cloves", + "rosemary sprigs", + "dry white wine", + "lamb loin chops", + "flageolet", + "ground black pepper", + "salt" + ] + }, + { + "id": 25011, + "cuisine": "cajun_creole", + "ingredients": [ + "onion powder", + "oregano", + "dried thyme", + "salt", + "black pepper", + "paprika", + "garlic powder", + "cayenne pepper" + ] + }, + { + "id": 28157, + "cuisine": "greek", + "ingredients": [ + "meat", + "all-purpose flour", + "pepper", + "garlic", + "olive oil", + "salt", + "red wine vinegar", + "fresh parsley" + ] + }, + { + "id": 29436, + "cuisine": "japanese", + "ingredients": [ + "water", + "potatoes", + "cumin seed", + "coriander seeds", + "green peas", + "tumeric", + "garam masala", + "salt", + "fresh ginger", + "butter", + "basmati rice" + ] + }, + { + "id": 16328, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "kecap manis", + "shallots", + "onions", + "lime juice", + "green onions", + "chili oil", + "minced garlic", + "sliced cucumber", + "sesame oil", + "chopped cilantro fresh", + "tomatoes", + "fresh ginger root", + "flank steak", + "thai chile" + ] + }, + { + "id": 42302, + "cuisine": "southern_us", + "ingredients": [ + "egg whites", + "pecans", + "agave nectar", + "ground cinnamon", + "sea salt" + ] + }, + { + "id": 32569, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "artichoke hearts", + "reduced sodium chicken broth", + "bread ciabatta", + "parmesan cheese", + "chard", + "olive oil" + ] + }, + { + "id": 30547, + "cuisine": "southern_us", + "ingredients": [ + "molasses", + "buttermilk", + "sugar", + "unsalted butter", + "all-purpose flour", + "ground cloves", + "cinnamon", + "ground ginger", + "baking soda", + "salt" + ] + }, + { + "id": 24577, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "rolls", + "chuck", + "pepper", + "pimentos", + "juice", + "beef stock", + "provolone cheese", + "crushed tomatoes", + "salt", + "hot cherry pepper" + ] + }, + { + "id": 5175, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "bacon slices", + "granulated sugar", + "mixed greens", + "cider vinegar", + "scallions", + "light brown sugar", + "chives", + "arugula" + ] + }, + { + "id": 32291, + "cuisine": "mexican", + "ingredients": [ + "water", + "jalapeno chilies", + "peaches", + "fresh lime juice", + "watermelon", + "queso fresco", + "sugar", + "fresh blueberries" + ] + }, + { + "id": 8598, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "shallots", + "salmon steaks", + "fenugreek seeds", + "mustard seeds", + "coriander powder", + "vegetable oil", + "vegetable broth", + "garlic cloves", + "water", + "chili powder", + "ginger", + "rice", + "ground turmeric", + "saffron threads", + "fenugreek", + "butter", + "salt", + "lemon juice" + ] + }, + { + "id": 43453, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "marjoram", + "white vinegar", + "salt", + "pepper", + "garlic cloves", + "dried thyme", + "leg of lamb" + ] + }, + { + "id": 1019, + "cuisine": "indian", + "ingredients": [ + "clove", + "tomatoes", + "jackfruit", + "black cumin seeds", + "cumin seed", + "basmati rice", + "ground ginger", + "red chili powder", + "coriander powder", + "green cardamom", + "bay leaf", + "fennel seeds", + "black peppercorns", + "mace", + "salt", + "cinnamon sticks", + "ground turmeric", + "nutmeg", + "garlic paste", + "mint leaves", + "curds", + "onions" + ] + }, + { + "id": 629, + "cuisine": "italian", + "ingredients": [ + "eggs", + "parmesan cheese", + "mozzarella cheese", + "ricotta cheese", + "Bertolli Tomato & Basil Sauce", + "lasagna noodles", + "Bertolli® Alfredo Sauce" + ] + }, + { + "id": 19067, + "cuisine": "chinese", + "ingredients": [ + "hot red pepper flakes", + "steamer", + "rice vinegar", + "cabbage", + "soy sauce", + "vegetable oil", + "scallions", + "sugar", + "sesame oil", + "gingerroot", + "fish", + "scrod fillets", + "salt", + "garlic cloves" + ] + }, + { + "id": 44545, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "green onions", + "rice vinegar", + "chicken broth", + "jalapeno chilies", + "garlic", + "roast breast of chicken", + "fresh ginger", + "sesame oil", + "chopped cilantro", + "baby bok choy", + "chinese noodles", + "salt" + ] + }, + { + "id": 39309, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "fresh fava bean", + "onions", + "olive oil", + "scallions", + "red pepper", + "garlic cloves", + "corn kernels", + "ear of corn" + ] + }, + { + "id": 16004, + "cuisine": "indian", + "ingredients": [ + "spinach", + "vegetable oil", + "black mustard seeds", + "coriander seeds", + "large garlic cloves", + "serrano chile", + "plain yogurt", + "coarse salt", + "onions", + "lobster", + "gingerroot" + ] + }, + { + "id": 15769, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "garlic", + "sea bass", + "peeled fresh ginger", + "scallions", + "chinese rice wine", + "sesame oil", + "fresh ginger", + "dried shiitake mushrooms" + ] + }, + { + "id": 9384, + "cuisine": "british", + "ingredients": [ + "eggs", + "salt", + "baking powder", + "white sugar", + "milk", + "all-purpose flour", + "caraway seeds", + "butter" + ] + }, + { + "id": 31726, + "cuisine": "italian", + "ingredients": [ + "baby portobello mushrooms", + "fresh parmesan cheese", + "fontina cheese", + "artichoke hearts", + "kalamata", + "pizza crust", + "prosciutto", + "fresh basil", + "part-skim mozzarella cheese", + "garlic" + ] + }, + { + "id": 26053, + "cuisine": "indian", + "ingredients": [ + "lime wedges", + "red curry paste", + "canola oil", + "green bell pepper", + "light coconut milk", + "fresh lime juice", + "less sodium soy sauce", + "long-grain rice", + "sugar", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 25025, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "scallions", + "beef", + "corn starch", + "soy sauce", + "oil", + "sake", + "mirin", + "white sesame seeds" + ] + }, + { + "id": 42635, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "olive oil", + "fish stock", + "sausages", + "yellow corn meal", + "leeks", + "littleneck clams", + "dried oregano", + "mussels", + "cod fillets", + "diced tomatoes", + "fresh parsley", + "minced garlic", + "dry white wine", + "chopped onion" + ] + }, + { + "id": 36452, + "cuisine": "mexican", + "ingredients": [ + "coffee", + "brown sugar", + "cinnamon sticks", + "piloncillo", + "anise", + "molasses" + ] + }, + { + "id": 35467, + "cuisine": "southern_us", + "ingredients": [ + "celery salt", + "black pepper", + "raisins", + "carrots", + "cooked rice", + "chuck roast", + "salt", + "garlic salt", + "ground ginger", + "water", + "diced tomatoes", + "onions", + "bacon drippings", + "molasses", + "red wine vinegar", + "all-purpose flour" + ] + }, + { + "id": 33723, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "chiffonade", + "large shrimp", + "tomato paste", + "vegetable oil", + "lemon juice", + "garam masala", + "watercress", + "minced garlic", + "coarse salt", + "coconut milk" + ] + }, + { + "id": 3487, + "cuisine": "italian", + "ingredients": [ + "french baguette", + "fresh parsley", + "butter", + "chop fine pecan", + "crumbled blue cheese" + ] + }, + { + "id": 4379, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "vegetable oil", + "jalapeno chilies", + "all-purpose flour", + "ground black pepper", + "salt", + "eggs", + "chili powder", + "beer" + ] + }, + { + "id": 27414, + "cuisine": "indian", + "ingredients": [ + "water", + "chili powder", + "corn starch", + "ground turmeric", + "pepper", + "brown rice", + "salt", + "stir fry vegetable blend", + "cod fillets", + "garlic", + "onions", + "curry powder", + "vegetable oil", + "coconut milk", + "ground cumin" + ] + }, + { + "id": 24530, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "cooking spray", + "large egg yolks", + "amaretto", + "water", + "whole milk", + "large eggs", + "salt" + ] + }, + { + "id": 11763, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "salt", + "chillies", + "fresh coriander", + "chili powder", + "gram flour", + "potatoes", + "cumin seed", + "water", + "ginger", + "rapeseed oil" + ] + }, + { + "id": 199, + "cuisine": "indian", + "ingredients": [ + "fresh lemon juice", + "whole milk" + ] + }, + { + "id": 35226, + "cuisine": "mexican", + "ingredients": [ + "flour", + "boiling water", + "vegetable shortening", + "baking powder", + "salt" + ] + }, + { + "id": 22785, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "toasted baguette", + "cajun seasoning", + "garlic cloves", + "crawfish", + "cream cheese", + "diced pimentos", + "butter", + "sliced green onions" + ] + }, + { + "id": 8817, + "cuisine": "irish", + "ingredients": [ + "capers", + "chives", + "raisins", + "kosher salt", + "butter", + "salmon fillets", + "vegetable oil", + "ground black pepper", + "lemon" + ] + }, + { + "id": 25144, + "cuisine": "irish", + "ingredients": [ + "brussels sprouts", + "stout", + "apple juice concentrate", + "cheddar cheese", + "cauliflower florets", + "red potato", + "apples", + "dijon mustard", + "all-purpose flour" + ] + }, + { + "id": 18051, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "grated lemon peel", + "grated parmesan cheese", + "fresh lemon juice", + "dry white wine", + "low salt chicken broth", + "arborio rice", + "shallots", + "fresh parsley" + ] + }, + { + "id": 23985, + "cuisine": "greek", + "ingredients": [ + "milk", + "grated nutmeg", + "penne", + "large eggs", + "kefalotyri", + "fresh dill", + "unsalted butter", + "liquid", + "lamb shanks", + "all-purpose flour" + ] + }, + { + "id": 6388, + "cuisine": "mexican", + "ingredients": [ + "lime", + "queso fresco", + "purple onion", + "dried oregano", + "tomatoes", + "jalapeno chilies", + "cilantro", + "red radishes", + "chicken", + "avocado", + "hominy", + "watercress", + "salt", + "cabbage", + "tostadas", + "chile pepper", + "garlic", + "Mexican cheese" + ] + }, + { + "id": 48339, + "cuisine": "indian", + "ingredients": [ + "cinnamon", + "water", + "ghee", + "sugar", + "salt", + "whole wheat flour" + ] + }, + { + "id": 3012, + "cuisine": "chinese", + "ingredients": [ + "yams", + "white sugar", + "vegetable oil" + ] + }, + { + "id": 44279, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "vanilla extract", + "half & half", + "sugar", + "chopped pecans", + "butter" + ] + }, + { + "id": 2967, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "garlic", + "boneless skinless chicken breasts", + "oil", + "light beer", + "orange juice", + "reduced sodium chicken broth", + "yellow mustard", + "chipotles in adobo" + ] + }, + { + "id": 22111, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "eggplant", + "salt", + "oyster sauce", + "chopped cilantro fresh", + "fresh ginger", + "green onions", + "peanut oil", + "bok choy", + "water", + "cooking spray", + "rice vinegar", + "red bell pepper", + "sesame seeds", + "crushed red pepper", + "garlic chili sauce", + "medium shrimp" + ] + }, + { + "id": 3106, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "chipotle chile", + "coriander seeds", + "vegetable oil", + "rolls", + "pasilla chiles", + "sesame seeds", + "mulato chiles", + "garlic", + "ancho chile pepper", + "whole almonds", + "kosher salt", + "ground black pepper", + "raisins", + "dark brown sugar", + "ground cloves", + "chopped tomatoes", + "turkey stock", + "mexican chocolate", + "onions" + ] + }, + { + "id": 9080, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "leeks", + "salt", + "shiitake mushroom caps", + "cremini mushrooms", + "chopped fresh chives", + "baking potatoes", + "carrots", + "thyme sprigs", + "water", + "cooking spray", + "butter", + "gnocchi", + "low sodium soy sauce", + "ground black pepper", + "sliced carrots", + "all-purpose flour", + "celery" + ] + }, + { + "id": 37045, + "cuisine": "italian", + "ingredients": [ + "merlot", + "sugar", + "orange rind", + "whipped topping", + "tangerine juice", + "clove", + "cinnamon sticks" + ] + }, + { + "id": 32379, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "butter", + "ground cinnamon", + "sweet potatoes", + "large eggs", + "salt", + "firmly packed brown sugar", + "pastry shell" + ] + }, + { + "id": 5610, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "zucchini", + "frozen peas", + "coconut oil", + "water", + "cayenne pepper", + "ground turmeric", + "hot red pepper flakes", + "coconut", + "carrots", + "ground cumin", + "green chile", + "fresh curry leaves", + "salt", + "boiling potatoes" + ] + }, + { + "id": 1030, + "cuisine": "italian", + "ingredients": [ + "capers", + "red pepper flakes", + "arugula", + "sweet onion", + "garlic", + "black pepper", + "extra-virgin olive oil", + "dried oregano", + "whole wheat spaghetti", + "roasted tomatoes" + ] + }, + { + "id": 10692, + "cuisine": "british", + "ingredients": [ + "molasses", + "vanilla", + "white sugar", + "unsalted butter", + "cranberries", + "baking soda", + "all-purpose flour", + "heavy cream", + "hot water" + ] + }, + { + "id": 18336, + "cuisine": "filipino", + "ingredients": [ + "granulated sugar", + "eggs", + "condensed milk", + "vanilla extract", + "milk" + ] + }, + { + "id": 47939, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "cannellini beans", + "tomatoes", + "parmesan cheese", + "italian seasoning", + "chicken broth", + "olive oil", + "ham", + "small shells", + "marinara sauce" + ] + }, + { + "id": 22301, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "canned tomatoes", + "medium shrimp", + "fresh tomatoes", + "bay leaves", + "salt", + "cayenne", + "chopped celery", + "onions", + "water", + "vegetable oil", + "okra" + ] + }, + { + "id": 2453, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "roasted tomatoes", + "shredded cheese", + "green chilies", + "green onions", + "bbq sauce" + ] + }, + { + "id": 29685, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "olive oil", + "jalapeno chilies", + "ginger", + "corn starch", + "soy sauce", + "zucchini", + "sesame oil", + "rice vinegar", + "onions", + "baby bok choy", + "ground black pepper", + "sweet potatoes", + "salt", + "red bell pepper", + "savoy cabbage", + "water", + "extra firm tofu", + "diced tomatoes", + "carrots" + ] + }, + { + "id": 19120, + "cuisine": "mexican", + "ingredients": [ + "reduced fat cheddar cheese", + "low-sodium fat-free chicken broth", + "frozen corn", + "chopped cilantro", + "chili", + "garlic", + "skinless chicken breasts", + "dried oregano", + "black beans", + "diced tomatoes", + "sauce", + "onions", + "olive oil", + "non-fat sour cream", + "scallions", + "cumin" + ] + }, + { + "id": 30911, + "cuisine": "thai", + "ingredients": [ + "boneless skinless chicken breasts", + "fresh lime juice", + "glutinous rice", + "fresh mint", + "chiles", + "scallions", + "asian fish sauce", + "vegetable oil", + "chopped cilantro fresh" + ] + }, + { + "id": 41157, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "all-purpose flour", + "warm water", + "baby spinach", + "dried parsley", + "sugar", + "ricotta cheese", + "shredded mozzarella cheese", + "olive oil", + "sea salt" + ] + }, + { + "id": 17807, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "water", + "brown rice", + "canola oil", + "black peppercorns", + "Kikkoman Soy Sauce", + "corn starch", + "cold water", + "sunchokes", + "okra pods", + "minced garlic", + "bay leaves", + "chicken thighs" + ] + }, + { + "id": 18782, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "Eggland's Best® eggs", + "onions", + "eggs", + "green onions", + "beansprouts", + "mushrooms", + "corn starch", + "beef gravy", + "vegetable oil", + "cooked shrimp" + ] + }, + { + "id": 21823, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "cooked chicken", + "water", + "chopped cooked ham", + "jambalaya mix" + ] + }, + { + "id": 9609, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "red pepper flakes", + "onions", + "pork tail", + "garlic" + ] + }, + { + "id": 40085, + "cuisine": "italian", + "ingredients": [ + "capers", + "oil-cured black olives", + "garlic cloves", + "olive oil", + "red wine vinegar", + "water", + "fusilli", + "fresh basil leaves", + "tomatoes", + "grated parmesan cheese", + "oil" + ] + }, + { + "id": 25080, + "cuisine": "korean", + "ingredients": [ + "ground black pepper", + "top sirloin", + "fresh ginger", + "rice wine", + "white sugar", + "soy sauce", + "green onions", + "garlic", + "sesame seeds", + "sesame oil", + "pears" + ] + }, + { + "id": 6877, + "cuisine": "italian", + "ingredients": [ + "lemon", + "limoncello", + "champagne", + "sugar", + "fresh lemon juice", + "mint leaves" + ] + }, + { + "id": 45070, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "heavy cream", + "onions", + "pasta", + "egg yolks", + "garlic", + "parmesan cheese", + "bacon", + "pepper", + "shallots", + "salt" + ] + }, + { + "id": 30135, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "salt", + "ground black pepper", + "italian salad dressing", + "spicy brown mustard", + "eggs", + "paprika" + ] + }, + { + "id": 36477, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "red beans", + "fresh basil leaves", + "green bell pepper", + "ground black pepper", + "creole seasoning", + "cooked rice", + "sweet onion", + "garlic", + "andouille sausage", + "jalapeno chilies", + "ham hock" + ] + }, + { + "id": 28119, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "fresh ginger", + "salt", + "onions", + "fresh coriander", + "chili powder", + "coconut milk", + "ground cumin", + "coconut oil", + "coriander powder", + "green chilies", + "ground turmeric", + "curry leaves", + "water", + "crushed garlic", + "chicken pieces" + ] + }, + { + "id": 6105, + "cuisine": "filipino", + "ingredients": [ + "cream style corn", + "coconut cream", + "vanilla extract", + "white sugar", + "frozen corn", + "butter", + "corn starch" + ] + }, + { + "id": 9794, + "cuisine": "japanese", + "ingredients": [ + "milk", + "cake flour", + "sugar", + "butter", + "corn starch", + "medium eggs", + "yolk", + "salt", + "water", + "vanilla extract" + ] + }, + { + "id": 42235, + "cuisine": "moroccan", + "ingredients": [ + "mayonaise", + "vegetable oil spray", + "paprika", + "garlic cloves", + "olives", + "honey", + "bibb lettuce", + "salt", + "orange peel", + "ground cumin", + "chiles", + "olive oil", + "shallots", + "beets", + "chopped cilantro fresh", + "hamburger buns", + "ground black pepper", + "purple onion", + "fresh lemon juice", + "ground lamb" + ] + }, + { + "id": 21125, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "salad leaves", + "cooked turkey", + "jalapeno chilies", + "cheddar cheese", + "flour tortillas", + "sour cream", + "avocado", + "lime", + "purple onion" + ] + }, + { + "id": 5557, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "low salt chicken broth", + "giant white beans", + "crushed red pepper", + "plum tomatoes", + "fresh dill", + "red wine vinegar", + "onions", + "ouzo", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 37530, + "cuisine": "irish", + "ingredients": [ + "sugar", + "cointreau liqueur", + "fresh orange juice", + "grated orange peel", + "whipping cream", + "plain yogurt", + "strawberries" + ] + }, + { + "id": 13989, + "cuisine": "italian", + "ingredients": [ + "roasted red peppers", + "pesto sauce", + "all-purpose flour", + "refrigerated pizza dough", + "mozzarella cheese", + "Italian turkey sausage" + ] + }, + { + "id": 8168, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "olive oil", + "cracked black pepper", + "garlic cloves", + "parsley sprigs", + "dry white wine", + "dry bread crumbs", + "herbes de provence", + "halibut fillets", + "diced tomatoes", + "chopped onion", + "pitted kalamata olives", + "fennel bulb", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 35331, + "cuisine": "italian", + "ingredients": [ + "speck", + "salt", + "whole milk", + "potatoes", + "asiago" + ] + }, + { + "id": 6938, + "cuisine": "chinese", + "ingredients": [ + "chicken wings", + "kosher salt", + "cayenne pepper", + "mayonaise", + "lemon", + "regular sour cream", + "ground black pepper", + "chinese five-spice powder", + "plain yogurt", + "cilantro leaves" + ] + }, + { + "id": 49622, + "cuisine": "italian", + "ingredients": [ + "water", + "parsley", + "stewed tomatoes", + "carrots", + "oregano", + "tomato purée", + "kidney beans", + "red wine", + "garlic", + "celery", + "pepper", + "cannellini beans", + "basil", + "beef broth", + "onions", + "french onion soup", + "lasagna noodles", + "bacon", + "salt", + "ground beef" + ] + }, + { + "id": 30331, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "shredded cheese", + "table salt", + "macaroni", + "salted butter", + "Velveeta", + "mustard powder" + ] + }, + { + "id": 3869, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garam masala", + "vegetable oil", + "sauce", + "chopped cilantro", + "tumeric", + "salami", + "ginger", + "cumin seed", + "min", + "potatoes", + "spices", + "green chilies", + "onions", + "cauliflower", + "fresh cilantro", + "chili powder", + "salt", + "garlic cloves" + ] + }, + { + "id": 6309, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "chili pepper", + "salt", + "onion flakes", + "pepper", + "chopped cilantro" + ] + }, + { + "id": 8960, + "cuisine": "japanese", + "ingredients": [ + "salt", + "boneless skinless chicken breast halves", + "all-purpose flour", + "eggs", + "oil", + "pepper", + "panko breadcrumbs" + ] + }, + { + "id": 43777, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "part-skim ricotta cheese", + "frozen chopped spinach, thawed and squeezed dry", + "sweet onion", + "butter", + "sauce", + "grated parmesan cheese", + "salt", + "shrimp", + "lasagna noodles", + "heavy cream", + "garlic cloves" + ] + }, + { + "id": 22281, + "cuisine": "brazilian", + "ingredients": [ + "minced garlic", + "grated parmesan cheese", + "milk", + "butter", + "water", + "tapioca starch", + "table salt", + "large eggs" + ] + }, + { + "id": 37559, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "fresh orange juice", + "fresh lime juice", + "ground cumin", + "kosher salt", + "jicama", + "california avocado", + "arugula", + "white vinegar", + "tuna steaks", + "cracked black pepper", + "chipotles in adobo", + "olive oil", + "chili powder", + "ground coriander", + "chopped cilantro fresh" + ] + }, + { + "id": 47441, + "cuisine": "chinese", + "ingredients": [ + "evaporated cane juice", + "soy sauce", + "salt", + "garlic chives", + "vegetable oil", + "large eggs" + ] + }, + { + "id": 1523, + "cuisine": "spanish", + "ingredients": [ + "crushed tomatoes", + "yellow bell pepper", + "chickpeas", + "red bell pepper", + "saffron threads", + "vegetable oil", + "salt", + "juice", + "chuck", + "ground black pepper", + "dry red wine", + "sweet paprika", + "onions", + "chicken broth", + "large garlic cloves", + "all-purpose flour", + "rioja", + "ground cumin" + ] + }, + { + "id": 2409, + "cuisine": "italian", + "ingredients": [ + "condensed cream of chicken soup", + "sliced black olives", + "chicken meat", + "sour cream", + "dried basil", + "condensed cream of mushroom soup", + "shredded mozzarella cheese", + "cottage cheese", + "grated parmesan cheese", + "poultry seasoning", + "colby cheese", + "lasagna noodles", + "chopped onion", + "dried oregano" + ] + }, + { + "id": 12161, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "bacon", + "fresh parsley", + "butter", + "beef broth", + "spaghetti", + "dry white wine", + "salt", + "onions", + "tomato paste", + "heavy cream", + "ground beef", + "dried oregano" + ] + }, + { + "id": 24346, + "cuisine": "thai", + "ingredients": [ + "sticky rice", + "coconut milk", + "salt", + "sugar", + "mango" + ] + }, + { + "id": 1876, + "cuisine": "japanese", + "ingredients": [ + "shiso", + "fine sea salt", + "ground black pepper", + "pork belly" + ] + }, + { + "id": 35776, + "cuisine": "mexican", + "ingredients": [ + "base", + "dried oregano", + "shells", + "ground cumin", + "chili powder", + "iceberg lettuce", + "salt" + ] + }, + { + "id": 5277, + "cuisine": "japanese", + "ingredients": [ + "japanese rice", + "honey", + "cilantro leaves", + "warm water", + "mirin", + "konbu", + "cremini mushrooms", + "fresh ginger", + "dried shiitake mushrooms", + "soy sauce", + "salt", + "carrots" + ] + }, + { + "id": 19770, + "cuisine": "filipino", + "ingredients": [ + "mussels", + "garlic", + "fresh leav spinach", + "celery", + "chicken broth", + "carrots", + "olive oil", + "onions" + ] + }, + { + "id": 23615, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "duck", + "garam masala", + "pepper", + "ginger paste", + "salt" + ] + }, + { + "id": 12023, + "cuisine": "filipino", + "ingredients": [ + "water", + "ginger", + "oil", + "fish sauce", + "pork liver", + "salt", + "onions", + "blood", + "leaves", + "garlic", + "pork heart", + "pepper", + "pork tenderloin", + "miswa" + ] + }, + { + "id": 23608, + "cuisine": "japanese", + "ingredients": [ + "pork", + "cabbage", + "green onions", + "soy sauce", + "eggs", + "wonton wrappers" + ] + }, + { + "id": 5324, + "cuisine": "italian", + "ingredients": [ + "butter", + "fresh parsley", + "fresh lemon juice", + "dijon style mustard", + "chopped garlic", + "shrimp" + ] + }, + { + "id": 19544, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "toasted sesame oil", + "water chestnuts", + "carrots", + "phyllo pastry", + "zucchini", + "dry sherry", + "fillets", + "spring onions", + "beansprouts", + "bamboo shoots" + ] + }, + { + "id": 8758, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "coriander powder", + "ginger", + "green chilies", + "clove", + "coconut oil", + "chili powder", + "garlic", + "onions", + "black peppercorns", + "beef", + "star anise", + "cardamom", + "fennel seeds", + "water", + "cinnamon", + "salt", + "ground turmeric" + ] + }, + { + "id": 4230, + "cuisine": "japanese", + "ingredients": [ + "basil pesto sauce", + "shredded mozzarella cheese", + "brown beech mushrooms", + "fresh basil leaves", + "olive oil", + "onions", + "flatbread", + "grated parmesan cheese" + ] + }, + { + "id": 26470, + "cuisine": "southern_us", + "ingredients": [ + "water", + "fresh mushrooms", + "diced onions", + "olive oil", + "grits", + "milk", + "sausages", + "shredded cheddar cheese", + "raspberry preserves" + ] + }, + { + "id": 44964, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chinese sausage", + "garlic cloves", + "kosher salt", + "peeled fresh ginger", + "sugar pea", + "medium dry sherry", + "corn starch", + "sugar", + "water", + "scallions" + ] + }, + { + "id": 44346, + "cuisine": "thai", + "ingredients": [ + "vegetable oil cooking spray", + "fresh ginger", + "slaw mix", + "fresh mint", + "fish sauce", + "olive oil", + "sesame oil", + "cucumber", + "basmati rice", + "light soy sauce", + "ground red pepper", + "rice vinegar", + "chopped cilantro fresh", + "boneless chop pork", + "green onions", + "cilantro sprigs", + "fresh lime juice" + ] + }, + { + "id": 12441, + "cuisine": "chinese", + "ingredients": [ + "tilapia fillets", + "rice vinegar", + "canola oil", + "low sodium soy sauce", + "ground red pepper", + "lemon juice", + "fresh ginger", + "orange juice", + "sliced green onions", + "brown sugar", + "salt", + "five-spice powder" + ] + }, + { + "id": 13949, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "curry powder", + "chicken breasts", + "red curry paste", + "ginger root", + "coconut oil", + "garam masala", + "green peas", + "cumin seed", + "ground turmeric", + "tomato paste", + "fresh cilantro", + "brown rice", + "fenugreek seeds", + "coconut milk", + "cauliflower", + "plain yogurt", + "cayenne", + "salt", + "lemon juice", + "raita" + ] + }, + { + "id": 12502, + "cuisine": "italian", + "ingredients": [ + "pepper", + "beef consomme", + "garlic", + "deli rolls", + "rosemary", + "spices", + "thyme", + "water", + "sherry", + "salt", + "italian seasoning", + "soy sauce", + "chuck roast", + "butter", + "onions" + ] + }, + { + "id": 13606, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "ground black pepper", + "kosher salt", + "scallions", + "chiles", + "flour tortillas", + "avocado", + "lime", + "chopped cilantro" + ] + }, + { + "id": 37076, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "shrimp", + "pepper", + "garlic", + "fettuccine pasta", + "seafood seasoning", + "fresh asparagus", + "olive oil", + "salt" + ] + }, + { + "id": 40876, + "cuisine": "japanese", + "ingredients": [ + "water", + "radishes", + "wasabi powder", + "eggplant", + "sesame oil", + "raw tiger prawn", + "Japanese soy sauce", + "vegetable oil", + "shiitake", + "large eggs", + "cornflour" + ] + }, + { + "id": 40416, + "cuisine": "thai", + "ingredients": [ + "lime wedges", + "fresh basil", + "Thai red curry paste", + "unsweetened coconut milk", + "top sirloin", + "asparagus", + "oil" + ] + }, + { + "id": 47702, + "cuisine": "italian", + "ingredients": [ + "swiss chard", + "large eggs", + "fresh basil leaves", + "black pepper", + "zucchini", + "scallions", + "olive oil", + "parmigiano reggiano cheese", + "fresh parsley", + "prosciutto", + "salt" + ] + }, + { + "id": 41560, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "butter", + "serrano ham", + "large eggs", + "sour cream", + "manchego cheese", + "salt", + "masa", + "baking powder", + "poblano chiles" + ] + }, + { + "id": 23282, + "cuisine": "italian", + "ingredients": [ + "sherry", + "fresh mushrooms", + "chicken", + "crushed tomatoes", + "salt", + "onions", + "tomato sauce", + "garlic", + "peanut oil", + "chopped green bell pepper", + "all-purpose flour", + "dried oregano" + ] + }, + { + "id": 32899, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "(10 oz.) frozen chopped spinach", + "olive oil", + "ricotta cheese", + "ground nutmeg", + "garlic", + "dough", + "marinara sauce" + ] + }, + { + "id": 21310, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "butter", + "ground cinnamon", + "ground nutmeg", + "salt", + "milk", + "light corn syrup", + "eggs", + "sweet potatoes", + "pie shell" + ] + }, + { + "id": 43035, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "garam masala", + "salt", + "oil", + "atta", + "lime juice", + "butter", + "cumin seed", + "ground turmeric", + "chat masala", + "potatoes", + "cilantro leaves", + "onions", + "warm water", + "chili powder", + "green chilies", + "coriander" + ] + }, + { + "id": 1143, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "cornish hens", + "olive oil", + "garlic", + "grated parmesan cheese", + "lemon juice", + "sun-dried tomatoes", + "salt" + ] + }, + { + "id": 33685, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "ranch dressing", + "hot sauce", + "sour cream", + "tomato paste", + "taco shells", + "salt", + "taco seasoning", + "beans", + "grating cheese", + "tortilla chips", + "ground beef", + "grape tomatoes", + "green leaf lettuce", + "salsa", + "hot water" + ] + }, + { + "id": 7992, + "cuisine": "chinese", + "ingredients": [ + "caster sugar", + "cooking oil", + "peanut oil", + "pork belly", + "light soy sauce", + "red preserved bean curd", + "water", + "Shaoxing wine", + "oyster sauce", + "white pepper", + "honey", + "salt" + ] + }, + { + "id": 30207, + "cuisine": "jamaican", + "ingredients": [ + "flour", + "cold water", + "salt" + ] + }, + { + "id": 35316, + "cuisine": "indian", + "ingredients": [ + "mace", + "star anise", + "nutmeg", + "whole cloves", + "cinnamon sticks", + "black peppercorns", + "bay leaves", + "green cardamom pods", + "coriander seeds", + "cumin seed" + ] + }, + { + "id": 37542, + "cuisine": "italian", + "ingredients": [ + "sugar", + "dry red wine", + "spaghetti", + "fresh basil", + "finely chopped onion", + "salt", + "tomato paste", + "olive oil", + "crushed red pepper", + "ground round", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 27517, + "cuisine": "italian", + "ingredients": [ + "mussels", + "large garlic cloves", + "red bell pepper", + "unsalted butter", + "linguine", + "black pepper", + "heavy cream", + "flat leaf parsley", + "celery ribs", + "shallots", + "salt" + ] + }, + { + "id": 43657, + "cuisine": "mexican", + "ingredients": [ + "ground turkey breast", + "salad oil", + "fresh oregano leaves", + "chopped onion", + "chopped cilantro fresh", + "jack cheese", + "salt", + "corn tortillas", + "minced garlic", + "enchilada sauce", + "ground cumin" + ] + }, + { + "id": 37538, + "cuisine": "french", + "ingredients": [ + "active dry yeast", + "white vinegar", + "all purpose unbleached flour", + "warm water", + "salt", + "olive oil" + ] + }, + { + "id": 41877, + "cuisine": "moroccan", + "ingredients": [ + "eggs", + "orange flower water", + "sugar", + "lemon juice", + "powdered sugar", + "ground almonds", + "baking powder", + "corn flour" + ] + }, + { + "id": 31511, + "cuisine": "spanish", + "ingredients": [ + "walnut halves", + "half & half", + "bananas", + "sugar", + "vanilla bean paste", + "large eggs" + ] + }, + { + "id": 11792, + "cuisine": "southern_us", + "ingredients": [ + "vinegar", + "salt", + "green tomatoes", + "cabbage", + "bell pepper", + "onions", + "sugar", + "hot pepper" + ] + }, + { + "id": 11414, + "cuisine": "french", + "ingredients": [ + "Emmenthal", + "grated Gruyère cheese", + "baguette", + "heavy cream", + "chicken broth", + "pumpkin", + "olive oil", + "grated nutmeg" + ] + }, + { + "id": 4793, + "cuisine": "mexican", + "ingredients": [ + "ground chipotle chile pepper", + "scallions", + "sea salt", + "mango", + "lime juice", + "cucumber", + "cilantro" + ] + }, + { + "id": 572, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "extra-virgin olive oil", + "white onion", + "tomatillos", + "chopped cilantro fresh", + "pasta", + "kosher salt", + "fresh orange juice", + "chiles", + "sea scallops", + "fresh lime juice" + ] + }, + { + "id": 29289, + "cuisine": "british", + "ingredients": [ + "melted butter", + "potatoes", + "milk", + "pork sausages", + "beef gravy", + "onions", + "chicken stock", + "cooking oil", + "dried oregano" + ] + }, + { + "id": 44766, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "grated parmesan cheese", + "chopped fresh thyme", + "garlic cloves", + "olive oil", + "butternut squash", + "acorn squash", + "white wine", + "low sodium chicken broth", + "sea salt", + "onions", + "unsalted butter", + "balsamic vinegar", + "freshly ground pepper" + ] + }, + { + "id": 28321, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "ground meat", + "cooking wine", + "salt", + "large eggs" + ] + }, + { + "id": 40662, + "cuisine": "italian", + "ingredients": [ + "eggs", + "frozen pastry puff sheets", + "dried oregano", + "marinara sauce", + "onions", + "bread crumbs", + "large garlic cloves", + "milk", + "sweet italian sausage" + ] + }, + { + "id": 3097, + "cuisine": "mexican", + "ingredients": [ + "red chili peppers", + "tortillas", + "garlic cloves", + "avocado", + "lime", + "butter", + "sour cream", + "black beans", + "cajun seasoning", + "waxy potatoes", + "eggs", + "olive oil", + "sweet corn" + ] + }, + { + "id": 45232, + "cuisine": "jamaican", + "ingredients": [ + "pizza sauce", + "shredded mozzarella cheese", + "olive oil", + "portabello mushroom", + "thin pizza crust", + "green bell pepper", + "salami", + "jerk sauce", + "boneless skinless chicken breasts", + "garlic" + ] + }, + { + "id": 12591, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "baking soda", + "butter", + "nonfat buttermilk", + "egg substitute", + "jalapeno chilies", + "all-purpose flour", + "yellow corn meal", + "reduced fat cheddar cheese", + "cream style corn", + "salt", + "vegetable oil cooking spray", + "garlic powder", + "green onions" + ] + }, + { + "id": 1614, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "dry white wine", + "chicken", + "kosher salt", + "garlic cloves", + "ground cinnamon", + "cooking spray", + "fresh lemon juice", + "black pepper", + "pomegranate" + ] + }, + { + "id": 4256, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "skinless chicken breasts", + "pepper", + "garlic", + "cilantro", + "oil", + "lime juice", + "salt" + ] + }, + { + "id": 42508, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "green onions", + "chees fresco queso", + "romaine lettuce", + "ranch dressing", + "taco seasoning", + "grape tomatoes", + "boneless skinless chicken breasts", + "salsa", + "corn kernels", + "bacon" + ] + }, + { + "id": 39165, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "lettuce leaves", + "sauce", + "tomatoes", + "pita bread rounds", + "dry bread crumbs", + "chopped fresh mint", + "finely chopped onion", + "salt", + "garlic cloves", + "pepper", + "cooking spray", + "fresh oregano", + "ground lamb" + ] + }, + { + "id": 39192, + "cuisine": "italian", + "ingredients": [ + "pepper", + "large garlic cloves", + "kosher salt", + "roasted red peppers", + "country bread", + "olive oil", + "heirloom tomatoes", + "mozzarella cheese", + "basil leaves", + "sourdough" + ] + }, + { + "id": 15071, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "shallots", + "corn grits", + "olive oil", + "rosemary leaves", + "eggs", + "spices", + "unsalted butter", + "salt" + ] + }, + { + "id": 34134, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "red pepper", + "frozen corn", + "sliced green onions", + "chicken broth", + "chili powder", + "diced tomatoes", + "cumin", + "poblano peppers", + "grating cheese", + "rice", + "black beans", + "chili pepper flakes", + "salt", + "chicken" + ] + }, + { + "id": 33973, + "cuisine": "spanish", + "ingredients": [ + "salt", + "large shrimp", + "lemon wedge", + "bay leaf", + "ground red pepper", + "garlic cloves", + "extra-virgin olive oil", + "fresh parsley" + ] + }, + { + "id": 35069, + "cuisine": "italian", + "ingredients": [ + "water", + "grated parmesan cheese", + "white sugar", + "olive oil", + "salt", + "active dry yeast", + "butter", + "bread flour", + "garlic powder", + "shredded mozzarella cheese" + ] + }, + { + "id": 26815, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "rice wine", + "oil", + "angel hair", + "fresh ginger", + "star anise", + "tomatoes", + "water", + "napa cabbage", + "garlic cloves", + "rock sugar", + "beef shank", + "scallions" + ] + }, + { + "id": 23999, + "cuisine": "mexican", + "ingredients": [ + "cooked ham", + "guacamole", + "cream", + "jack cheese", + "vegetable oil", + "pico de gallo", + "flour tortillas" + ] + }, + { + "id": 39149, + "cuisine": "moroccan", + "ingredients": [ + "ground nutmeg", + "sweet paprika", + "ground lamb", + "olive oil", + "purple onion", + "chopped cilantro", + "ground cinnamon", + "cayenne", + "chopped parsley", + "ground cumin", + "mace", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 2060, + "cuisine": "southern_us", + "ingredients": [ + "granny smith apples", + "allspice", + "clove", + "apple juice", + "cinnamon", + "sugar", + "applesauce" + ] + }, + { + "id": 11881, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "flour", + "salt", + "melted butter", + "milk", + "butter", + "water", + "sweet potatoes", + "chopped pecans", + "eggs", + "mini marshmallows", + "vanilla" + ] + }, + { + "id": 28053, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "water", + "sesame oil", + "rice vinegar", + "red chili peppers", + "mint leaves", + "red pepper", + "chopped garlic", + "duck breasts", + "lime", + "rice noodles", + "coriander", + "caster sugar", + "spring onions", + "salt", + "mango" + ] + }, + { + "id": 37708, + "cuisine": "russian", + "ingredients": [ + "raspberries", + "honey", + "water" + ] + }, + { + "id": 8537, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "salt", + "baguette", + "garlic", + "herbes de provence", + "duck fat", + "cognac", + "shallots", + "duck liver" + ] + }, + { + "id": 24479, + "cuisine": "mexican", + "ingredients": [ + "serrano chilies", + "asadero", + "salt", + "white onion", + "tomatillos", + "white corn tortillas", + "vegetable oil", + "poblano peppers", + "garlic" + ] + }, + { + "id": 45074, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "tortilla chips", + "chili", + "water", + "tamales", + "green onions" + ] + }, + { + "id": 42068, + "cuisine": "italian", + "ingredients": [ + "jalapeno chilies", + "tortilla chips", + "onions", + "pasta sauce", + "black olives", + "feta cheese crumbles", + "crushed red pepper flakes", + "pepperoni", + "bulk italian sausag", + "salsa", + "sour cream" + ] + }, + { + "id": 43811, + "cuisine": "british", + "ingredients": [ + "skim milk", + "beef stock cubes", + "carrots", + "tomato purée", + "leeks", + "grated nutmeg", + "porridge oats", + "water", + "worcestershire sauce", + "whole wheat breadcrumbs", + "minced lean steak", + "butternut squash", + "garlic cloves" + ] + }, + { + "id": 5237, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "diced tomatoes", + "garlic cloves", + "chopped cilantro fresh", + "tumeric", + "ground pepper", + "cayenne pepper", + "shrimp", + "cooked rice", + "fresh ginger", + "yellow onion", + "lemon juice", + "canola oil", + "kosher salt", + "ground black pepper", + "ground coriander", + "coconut milk" + ] + }, + { + "id": 33566, + "cuisine": "japanese", + "ingredients": [ + "sweet onion", + "gala apples", + "sugar", + "watercress", + "avocado", + "vegetable oil", + "soy sauce", + "rice vinegar" + ] + }, + { + "id": 23174, + "cuisine": "french", + "ingredients": [ + "framboise liqueur", + "strawberries", + "fresh lemon juice", + "sugar" + ] + }, + { + "id": 45553, + "cuisine": "chinese", + "ingredients": [ + "pimentos", + "cream of mushroom soup", + "green bell pepper", + "butter", + "cashew nuts", + "soy sauce", + "chow mein noodles", + "celery ribs", + "cooked chicken", + "onions" + ] + }, + { + "id": 20990, + "cuisine": "indian", + "ingredients": [ + "water", + "all-purpose flour", + "baking powder", + "kosher salt", + "canola oil" + ] + }, + { + "id": 11383, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "chili", + "shredded cheddar cheese", + "cream cheese", + "diced green chilies" + ] + }, + { + "id": 15676, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "white pepper", + "chicken breasts", + "garlic", + "orange juice", + "orange zest", + "soy sauce", + "baking soda", + "dry sherry", + "rice vinegar", + "oil", + "red chili peppers", + "water", + "sesame oil", + "salt", + "scallions", + "eggs", + "canned chicken broth", + "cooking oil", + "ginger", + "all-purpose flour", + "corn starch" + ] + }, + { + "id": 2423, + "cuisine": "italian", + "ingredients": [ + "Italian cheese", + "shells", + "large eggs", + "plum tomatoes", + "milk", + "freshly ground pepper", + "fresh basil", + "bacon slices" + ] + }, + { + "id": 1811, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "halibut fillets", + "green onions", + "shredded cheddar cheese", + "flour tortillas", + "chopped cilantro fresh", + "mayonaise", + "garlic powder", + "sour cream", + "green bell pepper", + "salt and ground black pepper", + "enchilada sauce" + ] + }, + { + "id": 15660, + "cuisine": "italian", + "ingredients": [ + "white chocolate chips", + "butter", + "grated lemon zest", + "sugar", + "cooking spray", + "salt", + "chopped pecans", + "large eggs", + "vanilla extract", + "and fat free half half", + "large egg whites", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 7119, + "cuisine": "spanish", + "ingredients": [ + "cream", + "salt", + "kidney", + "brandy", + "butter", + "oil", + "tomatoes", + "mushrooms", + "green pepper", + "onions", + "black pepper", + "dry sherry", + "garlic cloves" + ] + }, + { + "id": 11427, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "yukon gold potatoes", + "broccoli", + "salt", + "peperoncino" + ] + }, + { + "id": 28560, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "green onions", + "black-eyed peas", + "sweet corn", + "olive oil", + "apple cider vinegar", + "feta cheese" + ] + }, + { + "id": 19571, + "cuisine": "mexican", + "ingredients": [ + "salt", + "bay leaf", + "crimini mushrooms", + "fresh lemon juice", + "rosemary sprigs", + "garlic cloves", + "dried oregano", + "cracked black pepper", + "tequila" + ] + }, + { + "id": 10400, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "broccoli", + "tomatoes", + "sliced black olives", + "salsa verde", + "pickled jalapenos", + "corn chips" + ] + }, + { + "id": 37473, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cilantro", + "minced onion", + "chopped cilantro fresh", + "avocado", + "chile pepper", + "pomegranate seeds", + "salt" + ] + }, + { + "id": 23103, + "cuisine": "french", + "ingredients": [ + "hazelnuts", + "olive oil", + "salt", + "pepper", + "dijon mustard", + "blood orange", + "sherry vinegar", + "salad greens", + "confit" + ] + }, + { + "id": 45623, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "smoked sausage", + "lipton onion soup mix", + "rotisserie chicken", + "olive oil", + "salt", + "chicken broth", + "brown rice", + "onions" + ] + }, + { + "id": 35779, + "cuisine": "french", + "ingredients": [ + "olive oil", + "green onions", + "anchovy paste", + "dried tarragon leaves", + "cooking spray", + "chicken breast halves", + "garlic cloves", + "red potato", + "dijon mustard", + "dry white wine", + "white wine vinegar", + "cherry tomatoes", + "lettuce leaves", + "shallots", + "green beans" + ] + }, + { + "id": 17447, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "olive oil", + "sugar", + "salt", + "warm water", + "bread flour" + ] + }, + { + "id": 46587, + "cuisine": "southern_us", + "ingredients": [ + "mini marshmallows", + "chopped walnuts", + "milk", + "margarine", + "unsweetened cocoa powder", + "eggs", + "all-purpose flour", + "white sugar", + "vanilla extract", + "confectioners sugar" + ] + }, + { + "id": 46274, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "cider vinegar", + "flour", + "cayenne pepper", + "celery", + "safflower oil", + "black-eyed peas", + "paprika", + "scallions", + "sugar", + "boneless, skinless chicken breast", + "buttermilk", + "freshly ground pepper", + "romaine lettuce", + "cream", + "garlic powder", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 4451, + "cuisine": "italian", + "ingredients": [ + "pepper", + "bow-tie pasta", + "parsley sprigs", + "garlic", + "plum tomatoes", + "olive oil", + "sweet italian sausage", + "kosher salt", + "purple onion" + ] + }, + { + "id": 47819, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "olive oil", + "lean ground beef", + "hot sauce", + "capers", + "chopped green bell pepper", + "canned tomatoes", + "green olives", + "ground black pepper", + "garlic", + "chopped onion", + "white vinegar", + "ground cloves", + "bay leaves", + "salt" + ] + }, + { + "id": 24244, + "cuisine": "french", + "ingredients": [ + "sugar", + "puff pastry", + "unsalted butter", + "heavy cream", + "granny smith apples" + ] + }, + { + "id": 25208, + "cuisine": "italian", + "ingredients": [ + "baking powder", + "eggs", + "confectioners sugar", + "all-purpose flour", + "ground cloves" + ] + }, + { + "id": 43545, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "corn", + "old bay seasoning", + "onions", + "minced garlic", + "butter", + "beer", + "shrimp and crab boil seasoning", + "prawns", + "kielbasa", + "water", + "lemon", + "small red potato" + ] + }, + { + "id": 47379, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "olive oil", + "golden raisins", + "flat leaf parsley", + "kosher salt", + "ground black pepper", + "yellow bell pepper", + "bread crumb fresh", + "oil packed anchovy fillets", + "pitted green olives", + "saffron threads", + "minced garlic", + "cream sherry", + "red bell pepper" + ] + }, + { + "id": 35976, + "cuisine": "mexican", + "ingredients": [ + "pasta", + "garlic powder", + "sea salt", + "smoked paprika", + "white onion", + "meat", + "extra-virgin olive oil", + "chopped cilantro", + "black pepper", + "salsa verde", + "diced tomatoes", + "ancho chile pepper", + "minced garlic", + "heavy cream", + "sweet pepper" + ] + }, + { + "id": 41249, + "cuisine": "vietnamese", + "ingredients": [ + "pepper", + "rice", + "green beans", + "soy sauce", + "garlic", + "carrots", + "white wine", + "salt", + "shrimp", + "eggs", + "vegetable oil", + "ham", + "coriander" + ] + }, + { + "id": 13977, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "garlic", + "red bell pepper", + "cotija", + "flour tortillas", + "cumin seed", + "onions", + "red chili peppers", + "cilantro sprigs", + "enchilada sauce", + "chopped cilantro fresh", + "avocado", + "pepper jack", + "frozen corn kernels", + "salad oil" + ] + }, + { + "id": 30536, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "green onions", + "garlic", + "chicken broth", + "hoisin sauce", + "sesame oil", + "corn starch", + "soy sauce", + "chicken breasts", + "rice vinegar", + "eggs", + "flour", + "ginger" + ] + }, + { + "id": 32467, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "lemon juice", + "angel hair", + "salt", + "chopped parsley", + "chicken stock", + "chives", + "heavy whipping cream", + "black pepper", + "zest", + "medium shrimp" + ] + }, + { + "id": 27333, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "rice wine", + "rice vinegar", + "sugar", + "ground black pepper", + "beef tenderloin", + "garlic cloves", + "fish sauce", + "lime", + "watercress", + "scallions", + "soy sauce", + "unsalted butter", + "purple onion", + "canola oil" + ] + }, + { + "id": 7803, + "cuisine": "italian", + "ingredients": [ + "sugar", + "crushed tomatoes", + "cheese tortellini", + "fat free less sodium chicken broth", + "olive oil", + "garlic cloves", + "black pepper", + "dried basil", + "chopped onion", + "water", + "fresh parmesan cheese" + ] + }, + { + "id": 6401, + "cuisine": "italian", + "ingredients": [ + "sugar", + "unsalted butter", + "lemon", + "pure vanilla extract", + "blood orange", + "orange marmalade", + "plain whole-milk yogurt", + "eggs", + "almonds", + "pistachio nuts", + "kosher salt", + "flour", + "lemon juice" + ] + }, + { + "id": 27501, + "cuisine": "greek", + "ingredients": [ + "russet potatoes", + "feta cheese crumbles", + "olive oil", + "salt", + "garlic", + "oregano", + "lemon zest", + "lemon juice" + ] + }, + { + "id": 2773, + "cuisine": "italian", + "ingredients": [ + "roasted red peppers", + "ground red pepper", + "tomato paste", + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "finely chopped onion", + "balsamic vinegar", + "fresh basil", + "half & half", + "bow-tie pasta" + ] + }, + { + "id": 9889, + "cuisine": "japanese", + "ingredients": [ + "diced onions", + "garam masala", + "seeds", + "cilantro leaves", + "fresh lemon juice", + "ground cumin", + "coriander seeds", + "potatoes", + "green peas", + "cumin seed", + "clarified butter", + "water", + "chili paste", + "chili powder", + "all-purpose flour", + "carrots", + "cauliflower", + "baking soda", + "poha", + "salt", + "oil", + "ground turmeric" + ] + }, + { + "id": 39528, + "cuisine": "filipino", + "ingredients": [ + "pork belly", + "fresh ginger", + "green onions", + "rice vinegar", + "soy sauce", + "milk", + "flour", + "fresh chili", + "asian fish sauce", + "brown sugar", + "water", + "cooking oil", + "salt", + "kimchi", + "chili pepper", + "hoisin sauce", + "garlic", + "flour for dusting" + ] + }, + { + "id": 15691, + "cuisine": "french", + "ingredients": [ + "wine", + "honey", + "salt", + "calimyrna figs", + "melted butter", + "water", + "large eggs", + "all-purpose flour", + "frozen sweetened raspberries", + "grated orange peel", + "vanilla beans", + "whole milk", + "chopped walnuts", + "orange peel", + "sugar", + "unsalted butter", + "crème fraîche", + "dark brown sugar" + ] + }, + { + "id": 48104, + "cuisine": "thai", + "ingredients": [ + "whitefish", + "peanuts", + "cucumber", + "kaffir lime leaves", + "cilantro", + "long beans", + "green onions", + "bird chile", + "eggs", + "curry" + ] + }, + { + "id": 41461, + "cuisine": "mexican", + "ingredients": [ + "evaporated milk", + "sweetened condensed milk", + "semisweet chocolate", + "cool whip", + "white cake mix", + "sour cream" + ] + }, + { + "id": 27376, + "cuisine": "french", + "ingredients": [ + "green onions", + "all-purpose flour", + "pepper", + "butter", + "cream", + "shredded swiss cheese", + "fresh parsley", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 30528, + "cuisine": "cajun_creole", + "ingredients": [ + "Kitchen Bouquet", + "garlic powder", + "butter", + "beef roast", + "tomatoes", + "water", + "flour", + "broth", + "black pepper", + "beef", + "salt", + "French bread loaves", + "mayonaise", + "sweet onion", + "vegetable oil", + "iceberg lettuce" + ] + }, + { + "id": 31054, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "salt", + "pepper", + "chili powder", + "cumin", + "soy sauce", + "olive oil", + "corn tortillas", + "tilapia fillets", + "garlic" + ] + }, + { + "id": 44481, + "cuisine": "italian", + "ingredients": [ + "smoked salmon", + "lemon zest", + "black pepper", + "salt", + "fresh dill", + "heavy cream", + "asparagus", + "gemelli" + ] + }, + { + "id": 34530, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "scallions", + "lobster", + "sauce", + "corn starch", + "fresh ginger", + "chinese black bean", + "garlic cloves", + "sugar", + "rice wine", + "dark sesame oil" + ] + }, + { + "id": 8990, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "ground allspice", + "brown sugar", + "maple syrup", + "bourbon whiskey", + "fresh ham", + "ground ginger", + "salt", + "garlic cloves" + ] + }, + { + "id": 10023, + "cuisine": "italian", + "ingredients": [ + "parsnips", + "fettucine", + "flat leaf parsley", + "unsalted butter", + "pancetta slices" + ] + }, + { + "id": 30273, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "mussels, well scrubbed", + "linguine, cook and drain" + ] + }, + { + "id": 36210, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "mushrooms", + "salt", + "soy sauce", + "vegetable oil", + "beansprouts", + "eggs", + "spring onions", + "ground white pepper", + "cold water", + "prawns", + "cornflour" + ] + }, + { + "id": 37202, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cherry tomatoes", + "chili powder", + "spaghetti squash", + "minced garlic", + "Tabasco Green Pepper Sauce", + "vegetable broth", + "ground cumin", + "lime juice", + "Anaheim chile", + "salt", + "black beans", + "olive oil", + "cilantro", + "onions" + ] + }, + { + "id": 7070, + "cuisine": "vietnamese", + "ingredients": [ + "napa cabbage", + "soybean sprouts", + "red cabbage", + "purple onion", + "ground black pepper", + "fine sea salt", + "carrots", + "green onions", + "cilantro leaves" + ] + }, + { + "id": 26691, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garam masala", + "seeds", + "salt", + "white sesame seeds", + "amchur", + "finely chopped onion", + "ginger", + "green chilies", + "cumin", + "curry leaves", + "peanuts", + "dry coconut", + "kasuri methi", + "oil", + "red chili powder", + "coriander powder", + "capsicum", + "green cardamom", + "onions" + ] + }, + { + "id": 34329, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "garlic powder", + "Mexican oregano", + "salt", + "ground cumin", + "serrano chilies", + "fresh cilantro", + "green onions", + "paprika", + "monterey jack", + "soy sauce", + "lime", + "flank steak", + "cracked black pepper", + "canola oil", + "avocado", + "water", + "roma tomatoes", + "russet potatoes", + "sour cream" + ] + }, + { + "id": 21020, + "cuisine": "southern_us", + "ingredients": [ + "honey", + "sweet potatoes", + "sweetened coconut flakes", + "chopped pecans", + "sugar", + "large eggs", + "whipped cream", + "dark brown sugar", + "ground nutmeg", + "dark rum", + "vanilla extract", + "coconut milk", + "ground cinnamon", + "tart shells", + "butter", + "ground allspice" + ] + }, + { + "id": 14286, + "cuisine": "chinese", + "ingredients": [ + "water", + "salt", + "corn starch", + "boneless skinless chicken breast halves", + "pepper", + "garlic", + "chinese five-spice powder", + "onions", + "soy sauce", + "red pepper flakes", + "roasted peanuts", + "celery", + "brown sugar", + "vegetable oil", + "rice vinegar", + "toasted sesame oil" + ] + }, + { + "id": 18513, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "rice noodles", + "white wine vinegar", + "chopped cilantro", + "minced garlic", + "lemon", + "shrimp", + "white sugar", + "eggs", + "peanuts", + "unsalted dry roast peanuts", + "beansprouts", + "ketchup", + "vegetable oil", + "lemon juice", + "onions" + ] + }, + { + "id": 39792, + "cuisine": "russian", + "ingredients": [ + "potatoes", + "salt", + "carrots", + "olive oil", + "green onions", + "dill", + "chicken broth", + "half & half", + "all-purpose flour", + "bay leaf", + "ground black pepper", + "butter", + "fresh mushrooms" + ] + }, + { + "id": 6946, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "carrots", + "cold water", + "turkey", + "celery ribs", + "Turkish bay leaves", + "onions", + "clove", + "garlic" + ] + }, + { + "id": 16102, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "baby spinach", + "black beans", + "salsa", + "cooked brown rice", + "sea salt", + "cheddar cheese", + "tortillas", + "greek yogurt" + ] + }, + { + "id": 49624, + "cuisine": "russian", + "ingredients": [ + "capers", + "kosher salt", + "vegan butter", + "vegan mayonnaise", + "mayonaise", + "baking powder", + "buckwheat flour", + "fresh chives", + "all purpose unbleached flour", + "brine", + "beluga lentil", + "water", + "non dairy milk" + ] + }, + { + "id": 14934, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper flakes", + "crushed tomatoes", + "garlic", + "fresh basil", + "extra-virgin olive oil", + "bay leaves", + "penne pasta" + ] + }, + { + "id": 125, + "cuisine": "jamaican", + "ingredients": [ + "dried basil", + "yellow mustard", + "scallions", + "chicken", + "cider vinegar", + "jerk paste", + "beer", + "flat leaf parsley", + "kosher salt", + "dried thyme", + "cracked black pepper", + "mustard seeds", + "lime juice", + "chile pepper", + "orange juice", + "dried rosemary" + ] + }, + { + "id": 40148, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "garlic cloves", + "celery", + "ground black pepper", + "white beans", + "carrots", + "fresh basil leaves", + "yellow crookneck squash", + "salt", + "small red potato", + "onions", + "chicken stock", + "zucchini", + "grated Gruyère cheese", + "green beans" + ] + }, + { + "id": 38913, + "cuisine": "italian", + "ingredients": [ + "cucumber", + "mayonaise", + "salad dressing", + "rye bread" + ] + }, + { + "id": 13171, + "cuisine": "brazilian", + "ingredients": [ + "crushed tomatoes", + "salt", + "medium shrimp", + "green bell pepper", + "cooking oil", + "garlic cloves", + "onions", + "unsweetened coconut milk", + "ground black pepper", + "long-grain rice", + "fresh parsley", + "water", + "red pepper flakes", + "lemon juice" + ] + }, + { + "id": 3239, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "pork tenderloin", + "dried shiitake mushrooms", + "sliced green onions", + "white wine", + "hoisin sauce", + "vegetable oil", + "white sugar", + "minced garlic", + "large eggs", + "napa cabbage", + "pancake", + "soy sauce", + "ground black pepper", + "sesame oil", + "corn starch" + ] + }, + { + "id": 22542, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "buttermilk", + "kosher salt", + "large eggs", + "all-purpose flour", + "yellow corn meal", + "unsalted butter", + "maple syrup", + "whole wheat flour", + "baking powder" + ] + }, + { + "id": 2935, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "baking powder", + "shrimp", + "jalapeno chilies", + "salt", + "garlic powder", + "coconut flour", + "eggs", + "sweet potatoes", + "bacon fat" + ] + }, + { + "id": 27391, + "cuisine": "thai", + "ingredients": [ + "molasses", + "garlic", + "ginger", + "red wine vinegar", + "beef ribs", + "soy sauce", + "thai chile" + ] + }, + { + "id": 31824, + "cuisine": "brazilian", + "ingredients": [ + "molasses", + "sesame seeds", + "sunflower seeds", + "kosher salt", + "sharp cheddar cheese", + "eggs", + "tapioca flour", + "whole milk", + "safflower oil", + "water", + "pepitas" + ] + }, + { + "id": 44046, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "boneless skinless chicken breasts", + "sauce", + "beansprouts", + "chicken stock", + "green bell pepper, slice", + "sesame oil", + "Chinese egg noodles", + "black pepper", + "marinade", + "peanut oil", + "onions", + "chinese rice wine", + "hoisin sauce", + "dried shiitake mushrooms", + "carrots" + ] + }, + { + "id": 17042, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "corn starch", + "sugar", + "garlic", + "chicken broth", + "ginger", + "bok choy", + "soy sauce", + "oyster-flavor sauc" + ] + }, + { + "id": 8316, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "butter", + "sour cream", + "tortillas", + "salsa", + "fajita seasoning mix", + "olive oil", + "cheese", + "onions", + "boneless chicken breast", + "red bell pepper" + ] + }, + { + "id": 25584, + "cuisine": "indian", + "ingredients": [ + "water", + "oil", + "salt", + "active dry yeast", + "thyme", + "sugar", + "all-purpose flour" + ] + }, + { + "id": 20469, + "cuisine": "thai", + "ingredients": [ + "palm sugar", + "sticky rice", + "coconut milk", + "shallots", + "tamarind concentrate", + "shrimp paste", + "salt", + "minced pork", + "peanuts", + "cilantro root", + "shrimp" + ] + }, + { + "id": 8348, + "cuisine": "italian", + "ingredients": [ + "sugar", + "semisweet chocolate", + "salt", + "large egg yolks", + "whole milk", + "all-purpose flour", + "hazelnuts", + "large eggs", + "crème fraîche", + "unsalted butter", + "vanilla" + ] + }, + { + "id": 32847, + "cuisine": "italian", + "ingredients": [ + "hazelnuts", + "fine sea salt", + "pecorino romano cheese", + "fresh lemon juice", + "whole milk ricotta cheese", + "garlic cloves", + "fresh basil", + "extra-virgin olive oil", + "grated lemon peel" + ] + }, + { + "id": 10835, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "thyme", + "rosemary", + "garlic", + "kosher salt", + "lemon", + "sugar", + "vegetable oil", + "chicken" + ] + }, + { + "id": 2858, + "cuisine": "french", + "ingredients": [ + "chocolate morsels", + "whipping cream", + "orange liqueur" + ] + }, + { + "id": 37040, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "parmesan cheese", + "milk", + "crumbs", + "mozzarella cheese", + "boneless chicken breast", + "eggs", + "olive oil" + ] + }, + { + "id": 30245, + "cuisine": "italian", + "ingredients": [ + "capers", + "salt", + "veal scallops", + "unsalted butter", + "all-purpose flour", + "olive oil", + "lemon slices", + "dry white wine", + "fresh parsley leaves" + ] + }, + { + "id": 14073, + "cuisine": "indian", + "ingredients": [ + "lime", + "cracked black pepper", + "green chilies", + "plain flour", + "cassia cinnamon", + "garlic", + "chicken", + "vinegar", + "ginger", + "cumin seed", + "eggs", + "vegetable oil", + "salt" + ] + }, + { + "id": 6078, + "cuisine": "french", + "ingredients": [ + "warm water", + "olive oil", + "cornmeal", + "dried basil", + "sea salt", + "active dry yeast", + "savory", + "dried rosemary", + "dried thyme", + "all-purpose flour" + ] + }, + { + "id": 11306, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "ripe olives", + "chili beans", + "salsa", + "onions", + "vegetable oil", + "ground beef", + "shredded cheddar cheese", + "enchilada sauce" + ] + }, + { + "id": 23599, + "cuisine": "indian", + "ingredients": [ + "fat free yogurt", + "brown mustard seeds", + "cumin seed", + "basmati rice", + "curry powder", + "cauliflower florets", + "onions", + "water", + "diced tomatoes", + "garlic cloves", + "canola oil", + "fresh ginger", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 31299, + "cuisine": "cajun_creole", + "ingredients": [ + "kosher salt", + "worcestershire sauce", + "fresh oregano", + "fresh rosemary", + "fresh thyme", + "hot sauce", + "fresh lemon juice", + "black pepper", + "shell-on shrimp", + "cayenne pepper", + "flat leaf parsley", + "unsalted butter", + "garlic", + "beer" + ] + }, + { + "id": 48959, + "cuisine": "mexican", + "ingredients": [ + "pork lard", + "queso fresco", + "chopped garlic", + "white onion", + "broth", + "sea salt" + ] + }, + { + "id": 18693, + "cuisine": "italian", + "ingredients": [ + "granulated garlic", + "all purpose unbleached flour", + "dry yeast", + "italian seasoning", + "olive oil", + "salt", + "ice water" + ] + }, + { + "id": 10121, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "fresh mozzarella", + "italian seasoning", + "Alfredo sauce", + "fresh oregano", + "pasta", + "chicken breasts", + "italian salad dressing", + "bread crumbs", + "garlic" + ] + }, + { + "id": 25213, + "cuisine": "italian", + "ingredients": [ + "pasta", + "lemon", + "parsley", + "butter", + "pepper", + "salt" + ] + }, + { + "id": 16889, + "cuisine": "russian", + "ingredients": [ + "ground black pepper", + "salt", + "large eggs", + "onions", + "finely chopped fresh parsley", + "minced beef", + "plain flour", + "ground pork" + ] + }, + { + "id": 9592, + "cuisine": "italian", + "ingredients": [ + "swiss chard", + "extra-virgin olive oil", + "walnuts", + "pinto beans", + "Italian bread", + "fat free less sodium chicken broth", + "basil leaves", + "purple onion", + "garlic cloves", + "hot water", + "rosemary", + "yukon gold potatoes", + "salt", + "fresh lemon juice", + "thyme leaves", + "ground black pepper", + "chopped celery", + "chopped fresh sage", + "carrots", + "flat leaf parsley" + ] + }, + { + "id": 17347, + "cuisine": "italian", + "ingredients": [ + "water", + "goat s milk cheese", + "kosher salt", + "unsalted butter", + "pasta water", + "olive oil", + "farro", + "red beets", + "poppy seeds" + ] + }, + { + "id": 879, + "cuisine": "italian", + "ingredients": [ + "clove", + "dry red wine", + "olive oil", + "veal shanks", + "tomatoes", + "purple onion", + "red pepper" + ] + }, + { + "id": 7363, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "dried porcini mushrooms", + "extra-virgin olive oil", + "onions", + "black peppercorns", + "beef stock", + "garlic cloves", + "sage leaves", + "barolo", + "sea salt", + "carrots", + "fresh rosemary", + "ground black pepper", + "grated nutmeg", + "beef roast" + ] + }, + { + "id": 24635, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "bacon", + "parsley", + "ear of corn", + "granulated sugar", + "cracked black pepper", + "kosher salt", + "heavy cream" + ] + }, + { + "id": 25110, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "grated parmesan cheese", + "fresh mushrooms", + "dried oregano", + "dried basil", + "tortellini", + "fresh parsley", + "sugar", + "italian plum tomatoes", + "garlic cloves", + "olive oil", + "crushed red pepper", + "onions" + ] + }, + { + "id": 2959, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "all-purpose flour", + "kosher salt", + "baking powder", + "bacon drippings", + "large eggs", + "stone-ground cornmeal", + "buttermilk" + ] + }, + { + "id": 47074, + "cuisine": "southern_us", + "ingredients": [ + "cake", + "pecan halves", + "chopped pecans", + "cream" + ] + }, + { + "id": 11234, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "onions", + "ragu old world style pasta sauc", + "chop green chilies, undrain", + "vegetable oil", + "shredded cheddar cheese", + "ground beef" + ] + }, + { + "id": 44814, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "vegetable oil", + "chopped celery", + "carrots", + "fresh thyme leaves", + "dry red wine", + "bulgur", + "lamb shanks", + "parsley", + "garlic", + "fresh lemon juice", + "ground black pepper", + "diced tomatoes", + "salt", + "onions" + ] + }, + { + "id": 19364, + "cuisine": "filipino", + "ingredients": [ + "fresh ginger root", + "carrots", + "white vinegar", + "raisins", + "green papaya", + "water", + "salt", + "white sugar", + "chile pepper", + "red bell pepper" + ] + }, + { + "id": 4684, + "cuisine": "mexican", + "ingredients": [ + "wish bone ranch dress", + "red kidney beans", + "whole kernel corn, drain", + "chickpeas", + "pasta", + "sliced green onions" + ] + }, + { + "id": 32189, + "cuisine": "italian", + "ingredients": [ + "broccoli rabe", + "Italian parsley leaves", + "olive oil", + "cannellini beans", + "freshly ground pepper", + "oil packed anchovy fillets", + "lemon", + "garlic cloves", + "kosher salt", + "grated parmesan cheese", + "crushed red pepper flakes" + ] + }, + { + "id": 31078, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "red capsicum", + "carrots", + "prawns", + "garlic", + "vermicelli noodles", + "mirin", + "chilli paste", + "green beans", + "red chili peppers", + "kecap manis", + "oil", + "onions" + ] + }, + { + "id": 5213, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "milk", + "cream cheese", + "water", + "all-purpose flour", + "unsalted butter", + "jelly" + ] + }, + { + "id": 8206, + "cuisine": "southern_us", + "ingredients": [ + "fresh rosemary", + "butter", + "all-purpose flour", + "sugar", + "black olives", + "white cornmeal", + "grape tomatoes", + "buttermilk", + "feta cheese crumbles", + "large eggs", + "rapid rise yeast" + ] + }, + { + "id": 1874, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "cilantro", + "lime juice", + "scallions", + "brown sugar", + "garlic", + "chili" + ] + }, + { + "id": 7781, + "cuisine": "italian", + "ingredients": [ + "pasta", + "grated parmesan cheese", + "onions", + "pasta sauce", + "provolone cheese", + "fresh basil", + "lean ground beef", + "mozzarella cheese", + "sour cream" + ] + }, + { + "id": 28687, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "marinade", + "chicken wings", + "minced garlic", + "Gochujang base", + "sugar", + "honey", + "toasted sesame oil", + "black pepper", + "paprika" + ] + }, + { + "id": 33564, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "diced tomatoes", + "salt", + "diced onions", + "garbanzo beans", + "white rice", + "canola oil", + "curry powder", + "ginger", + "chicken thighs", + "chicken broth", + "red pepper flakes", + "garlic" + ] + }, + { + "id": 43997, + "cuisine": "mexican", + "ingredients": [ + "oysters", + "green onions", + "olive oil", + "plum tomatoes", + "french bread", + "ground cumin", + "chili", + "chopped cilantro fresh" + ] + }, + { + "id": 22239, + "cuisine": "mexican", + "ingredients": [ + "ancho chili ground pepper", + "butter", + "confectioners sugar", + "eggs", + "chocolate cake mix", + "cayenne pepper", + "ground cinnamon", + "water", + "vanilla extract", + "red chili peppers", + "vegetable oil", + "cream cheese" + ] + }, + { + "id": 4573, + "cuisine": "french", + "ingredients": [ + "yellow squash", + "fresh thyme", + "red bell pepper", + "plum tomatoes", + "green bell pepper", + "eggplant", + "garlic", + "fresh parsley", + "pepper", + "zucchini", + "salt", + "onions", + "olive oil", + "yellow bell pepper", + "bay leaf" + ] + }, + { + "id": 13459, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large egg yolks", + "strawberries", + "marsala wine" + ] + }, + { + "id": 35471, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "unsweetened coconut milk", + "red curry paste", + "lime", + "fish sauce", + "peanut butter" + ] + }, + { + "id": 44919, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "shallots", + "caviar", + "white bread", + "ground black pepper", + "fresh lemon juice", + "olive oil", + "sweet paprika", + "tarama", + "whole milk", + "roe" + ] + }, + { + "id": 30021, + "cuisine": "british", + "ingredients": [ + "Angostura bitters", + "gin", + "boiling water", + "lemon slices", + "sugar" + ] + }, + { + "id": 44130, + "cuisine": "greek", + "ingredients": [ + "butter", + "milk", + "all-purpose flour", + "eggs", + "salt", + "vinegar" + ] + }, + { + "id": 36926, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "refrigerated biscuits", + "yellow onion", + "chicken broth", + "cream of chicken soup", + "garlic", + "celery", + "ground black pepper", + "butter", + "carrots", + "cream of celery soup", + "boneless chicken breast", + "chicken stock cubes" + ] + }, + { + "id": 40132, + "cuisine": "mexican", + "ingredients": [ + "water", + "corn tortillas", + "tomato paste", + "onion powder", + "garlic salt", + "refried beans", + "ground beef", + "shredded cheddar cheese", + "enchilada sauce", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 46928, + "cuisine": "french", + "ingredients": [ + "butter", + "milk", + "freshly ground pepper", + "flour", + "salt" + ] + }, + { + "id": 36327, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "kale leaves", + "homemade chicken stock", + "red pepper flakes", + "rotini", + "large garlic cloves", + "hot Italian sausages", + "olive oil", + "salt" + ] + }, + { + "id": 43190, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "pearl barley", + "fresh parsley", + "homemade chicken stock", + "ground black pepper", + "garlic cloves", + "olive oil", + "chopped onion", + "kosher salt", + "zucchini", + "feta cheese crumbles" + ] + }, + { + "id": 37398, + "cuisine": "italian", + "ingredients": [ + "penne", + "extra-virgin olive oil", + "yellow bell pepper", + "large garlic cloves", + "dry white wine" + ] + }, + { + "id": 32077, + "cuisine": "mexican", + "ingredients": [ + "extra lean ground beef", + "jalapeno chilies", + "taco seasoning mix", + "cream cheese", + "water", + "salsa", + "Mexican cheese blend" + ] + }, + { + "id": 7026, + "cuisine": "greek", + "ingredients": [ + "salad", + "pepper", + "paprika", + "ground coriander", + "greek yogurt", + "flatbread", + "ground black pepper", + "salt", + "lemon juice", + "cumin", + "ground cinnamon", + "fresh coriander", + "garlic", + "cumin seed", + "onions", + "bread crumbs", + "red cabbage", + "cayenne pepper", + "carrots", + "ground lamb" + ] + }, + { + "id": 45913, + "cuisine": "mexican", + "ingredients": [ + "Herdez Salsa", + "shredded cheddar cheese", + "lean ground beef", + "black olives", + "sour cream", + "ground cumin", + "beans", + "green onions", + "extra-virgin olive oil", + "hot sauce", + "chopped cilantro", + "warm water", + "jalapeno chilies", + "diced tomatoes", + "sweet pepper", + "fresh lime juice", + "tomato paste", + "kosher salt", + "chili powder", + "garlic", + "fritos", + "onions" + ] + }, + { + "id": 17722, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "chili powder", + "oil", + "black pepper", + "cilantro leaves", + "chicken", + "tomatoes", + "coriander powder", + "curds", + "ground cumin", + "tumeric", + "salt", + "onions" + ] + }, + { + "id": 31622, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "parmesan cheese", + "olive oil", + "lamb cutlet", + "tomato chutney" + ] + }, + { + "id": 4383, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "lime", + "paprika", + "chipotle peppers", + "avocado", + "tilapia fillets", + "roma tomatoes", + "greek style plain yogurt", + "cumin", + "pepper", + "garlic powder", + "salt", + "cooked quinoa", + "fresh corn", + "fresh cilantro", + "chili powder", + "garlic cloves" + ] + }, + { + "id": 13070, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "honey", + "cumin seed", + "black beans", + "coriander seeds", + "pepper flakes", + "olive oil", + "corn tortillas", + "lime", + "goat cheese" + ] + }, + { + "id": 21011, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "sweet potatoes", + "light whipping cream", + "milk", + "vanilla extract", + "unbaked pie crusts", + "butter", + "white sugar", + "ground nutmeg", + "lemon juice" + ] + }, + { + "id": 20441, + "cuisine": "french", + "ingredients": [ + "white flour", + "yeast", + "fine sea salt", + "poolish", + "dough", + "Spring! Water" + ] + }, + { + "id": 33590, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "sesame oil", + "carrots", + "gochugaru", + "ginger", + "asian pear", + "daikon", + "pears", + "fish sauce", + "green onions", + "garlic" + ] + }, + { + "id": 15744, + "cuisine": "italian", + "ingredients": [ + "purple onion", + "Wish-Bone® Robusto Italian Dressing", + "bread crumb fresh", + "fresh basil leaves", + "tomatoes", + "hellmann' or best food real mayonnais", + "grated parmesan cheese", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 6989, + "cuisine": "italian", + "ingredients": [ + "dough", + "garlic cloves", + "ground pepper", + "fennel seeds", + "olive oil flavored cooking spray", + "extra-virgin olive oil" + ] + }, + { + "id": 7879, + "cuisine": "chinese", + "ingredients": [ + "water", + "red pepper flakes", + "corn starch", + "green onions", + "round steaks", + "sesame seeds", + "garlic", + "white sugar", + "soy sauce", + "vegetable oil", + "carrots" + ] + }, + { + "id": 47139, + "cuisine": "italian", + "ingredients": [ + "sugar", + "whipped topping", + "brewed coffee", + "unsweetened cocoa powder", + "mascarpone", + "cream cheese, soften", + "kahlúa", + "cake" + ] + }, + { + "id": 40156, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "corn starch", + "fryer chickens", + "oil", + "dried oregano", + "eggs", + "paprika", + "rubbed sage", + "water", + "all-purpose flour", + "cornmeal" + ] + }, + { + "id": 33395, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "Mexican oregano", + "all-purpose flour", + "smoked paprika", + "chuck", + "minced onion", + "ground pork", + "beer", + "cornmeal", + "water", + "chili powder", + "hot sauce", + "meat drippings", + "ground cumin", + "beef stock", + "garlic", + "ground coriander", + "unsweetened cocoa powder" + ] + }, + { + "id": 38147, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "cinnamon sticks", + "cardamom seeds", + "nutmeg", + "cumin seed", + "whole cloves" + ] + }, + { + "id": 3119, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "lamb stew meat", + "chickpeas", + "chopped cilantro fresh", + "curry powder", + "diced tomatoes", + "chopped onion", + "ground cumin", + "rice stick noodles", + "peeled fresh ginger", + "whipping cream", + "ground coriander", + "fat free less sodium chicken broth", + "mango chutney", + "all-purpose flour", + "garlic cloves" + ] + }, + { + "id": 35544, + "cuisine": "jamaican", + "ingredients": [ + "cold water", + "garlic", + "long-grain rice", + "scotch bonnet chile", + "ground allspice", + "dried kidney beans", + "fresh thyme", + "salt", + "coconut milk", + "butter", + "scallions" + ] + }, + { + "id": 18908, + "cuisine": "italian", + "ingredients": [ + "pepperoni slices", + "bisquick", + "pizza sauce", + "water", + "shredded mozzarella cheese" + ] + }, + { + "id": 3944, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "worcestershire sauce", + "kosher salt", + "butter", + "cracked black pepper", + "Tabasco Pepper Sauce", + "paprika", + "minced garlic", + "spicy brown mustard", + "large shrimp" + ] + }, + { + "id": 27310, + "cuisine": "italian", + "ingredients": [ + "dark chocolate", + "coffee", + "cocoa powder", + "marsala wine", + "cookies", + "light brown sugar", + "large eggs", + "butter", + "roasted hazelnuts", + "roasted pistachios" + ] + }, + { + "id": 14581, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "ginger", + "chile powder", + "daikon", + "scallions", + "white vinegar", + "napa cabbage", + "garlic", + "sugar", + "watercress", + "shrimp" + ] + }, + { + "id": 14898, + "cuisine": "japanese", + "ingredients": [ + "cold water", + "corn starch", + "fresh ginger", + "soy sauce", + "white sugar", + "rice wine" + ] + }, + { + "id": 10756, + "cuisine": "korean", + "ingredients": [ + "pepper", + "scallions", + "hot red pepper flakes", + "salt", + "kimchi", + "stock", + "minced garlic", + "juice", + "soy sauce", + "soybean sprouts" + ] + }, + { + "id": 25340, + "cuisine": "mexican", + "ingredients": [ + "light sour cream", + "fresh cilantro", + "baked tortilla chips", + "pico de gallo", + "bean dip", + "cumin", + "reduced fat Mexican cheese", + "garlic powder", + "turkey breast", + "pepper", + "salt" + ] + }, + { + "id": 37770, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "water", + "garlic", + "corn starch", + "chicken broth", + "boneless chicken skinless thigh", + "sesame oil", + "rice vinegar", + "orange zest", + "ground ginger", + "soy sauce", + "green onions", + "salt", + "white sugar", + "eggs", + "white pepper", + "vegetable oil", + "peanut oil" + ] + }, + { + "id": 43214, + "cuisine": "southern_us", + "ingredients": [ + "crawfish", + "milk", + "creole seasoning", + "condensed cream of chicken soup", + "minced garlic", + "broccoli", + "corn starch", + "chicken broth", + "shredded cheddar cheese", + "hot pepper sauce", + "chopped onion", + "condensed cream of celery soup", + "water", + "margarine" + ] + }, + { + "id": 37839, + "cuisine": "italian", + "ingredients": [ + "salad dressing", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 43275, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "lime", + "boneless skinless chicken breasts", + "salt", + "garlic cloves", + "pepper", + "red cabbage", + "napa cabbage", + "edamame", + "coconut milk", + "sweet chili sauce", + "peanuts", + "sliced carrots", + "rice vinegar", + "cucumber", + "brown sugar", + "fresh cilantro", + "green onions", + "ginger", + "creamy peanut butter" + ] + }, + { + "id": 28360, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "grits", + "salt", + "freshly ground pepper", + "asiago" + ] + }, + { + "id": 48893, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "rice vinegar", + "oil", + "light brown sugar", + "reduced sodium soy sauce", + "barbecued pork", + "salad", + "napa cabbage", + "dark sesame oil", + "chili paste", + "salted peanuts", + "garlic cloves" + ] + }, + { + "id": 42664, + "cuisine": "italian", + "ingredients": [ + "sweet italian sausage", + "olive oil", + "cabbage", + "beef stock", + "peeled tomatoes", + "polenta" + ] + }, + { + "id": 5139, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "ground turmeric", + "pineapple juice", + "cider vinegar", + "garlic cloves", + "salt", + "mango" + ] + }, + { + "id": 35097, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "habanero chile", + "dried thyme", + "salt", + "garlic cloves", + "andouille sausage", + "lump crab meat", + "vegetable oil", + "okra", + "bay leaf", + "celery ribs", + "shucked oysters", + "steamed rice", + "worcestershire sauce", + "freshly ground pepper", + "onions", + "tomatoes", + "bottled clam juice", + "file powder", + "all-purpose flour", + "red bell pepper" + ] + }, + { + "id": 13552, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "scallions", + "vegetable oil", + "monterey jack", + "flour tortillas", + "chopped cilantro fresh", + "mayonaise", + "frozen corn" + ] + }, + { + "id": 1043, + "cuisine": "french", + "ingredients": [ + "large eggs", + "cornichons", + "bread crumb fresh", + "russet potatoes", + "onions", + "vegetable oil", + "grated Gruyère cheese", + "large egg yolks", + "fresh tarragon" + ] + }, + { + "id": 9999, + "cuisine": "italian", + "ingredients": [ + "white mushrooms", + "extra-virgin olive oil", + "pecorino cheese", + "celery", + "fresh lemon juice" + ] + }, + { + "id": 3959, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "ziti", + "portobello caps", + "olive oil", + "shredded carrots", + "chopped onion", + "dried oregano", + "chopped green bell pepper", + "dry red wine", + "garlic cloves", + "marinara sauce", + "chopped celery", + "red bell pepper" + ] + }, + { + "id": 44663, + "cuisine": "thai", + "ingredients": [ + "mussels", + "shallots", + "peanut oil", + "lemongrass", + "Thai red curry paste", + "fresh basil leaves", + "light brown sugar", + "large garlic cloves", + "coconut milk", + "lime", + "vietnamese fish sauce" + ] + }, + { + "id": 39413, + "cuisine": "thai", + "ingredients": [ + "thai basil", + "salt", + "fresh cilantro", + "gluten", + "eggs", + "grassfed beef", + "coconut aminos", + "almond flour", + "Thai red curry paste" + ] + }, + { + "id": 3782, + "cuisine": "cajun_creole", + "ingredients": [ + "butter", + "salt", + "lemon juice", + "ground black pepper", + "worcestershire sauce", + "cognac", + "large shrimp", + "dried thyme", + "lemon", + "cayenne pepper", + "dried oregano", + "shallots", + "garlic", + "sweet paprika" + ] + }, + { + "id": 14116, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cilantro leaves", + "black pepper", + "jalapeno chilies", + "ground cumin", + "boneless pork shoulder", + "flour tortillas", + "apricot jam", + "kosher salt", + "purple onion" + ] + }, + { + "id": 9281, + "cuisine": "mexican", + "ingredients": [ + "salt", + "fresh lemon juice", + "black pepper", + "scallions", + "plum tomatoes", + "california avocado", + "fresh lime juice", + "lime wedges", + "garlic cloves", + "large shrimp" + ] + }, + { + "id": 30814, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "lemon juice", + "couscous", + "water", + "salt", + "cucumber", + "dried oregano", + "purple onion", + "feta cheese crumbles", + "plum tomatoes", + "ground pepper", + "chickpeas", + "ripe olives" + ] + }, + { + "id": 40773, + "cuisine": "indian", + "ingredients": [ + "water", + "peeled fresh ginger", + "garlic cloves", + "plum tomatoes", + "fat free yogurt", + "sweet potatoes", + "ground coriander", + "basmati rice", + "roasted cashews", + "cooking spray", + "chopped onion", + "chopped cilantro", + "chile paste with garlic", + "garam masala", + "salt", + "coconut milk" + ] + }, + { + "id": 8495, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "ground sirloin", + "cream cheese", + "penne", + "part-skim mozzarella cheese", + "all-purpose flour", + "flat leaf parsley", + "fat free milk", + "diced tomatoes", + "garlic cloves", + "kosher salt", + "cooking spray", + "chopped onion", + "fat free cream cheese" + ] + }, + { + "id": 29340, + "cuisine": "japanese", + "ingredients": [ + "sake", + "sesame oil", + "orange juice", + "white miso", + "ginger", + "low sodium soy sauce", + "black sesame seeds", + "rice vinegar", + "ahi", + "red pepper", + "white sesame seeds" + ] + }, + { + "id": 4208, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "salt", + "oil", + "water", + "green chilies", + "red chili powder", + "cilantro leaves", + "ground turmeric", + "chickpea flour", + "potatoes", + "cumin seed" + ] + }, + { + "id": 20194, + "cuisine": "thai", + "ingredients": [ + "water", + "cilantro root", + "serrano chile", + "palm sugar", + "peanut oil", + "minced garlic", + "Sriracha", + "shrimp", + "tamarind", + "sea salt", + "asian fish sauce" + ] + }, + { + "id": 7284, + "cuisine": "brazilian", + "ingredients": [ + "heavy cream", + "semisweet chocolate", + "unsweetened cocoa powder", + "sweetened condensed milk", + "unsalted butter", + "chocolate sprinkles" + ] + }, + { + "id": 37286, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "star anise", + "sugar", + "black tea leaves", + "Shaoxing wine", + "cinnamon sticks", + "quail eggs", + "ginger" + ] + }, + { + "id": 22961, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "flour tortillas", + "salt", + "avocado", + "olive oil", + "shallots", + "fresh lime juice", + "kale", + "jalapeno chilies", + "garlic cloves", + "cotija", + "tortillas", + "cilantro", + "ground cumin" + ] + }, + { + "id": 14066, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "quickcooking grits", + "cream of tartar", + "large egg yolks", + "ground white pepper", + "large egg whites", + "salt", + "water", + "unsalted butter", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 35528, + "cuisine": "filipino", + "ingredients": [ + "butter", + "hawaiian sweet rolls", + "granulated sugar", + "cheddar cheese", + "ham" + ] + }, + { + "id": 37872, + "cuisine": "jamaican", + "ingredients": [ + "white vinegar", + "molasses", + "fresh thyme", + "garlic", + "orange juice", + "ground ginger", + "water", + "shredded cabbage", + "purple onion", + "thyme", + "ground cinnamon", + "ground nutmeg", + "green onions", + "salt", + "ground beef", + "mayonaise", + "ground black pepper", + "scotch bonnet chile", + "ground allspice", + "grated orange" + ] + }, + { + "id": 38793, + "cuisine": "irish", + "ingredients": [ + "Guinness Beer", + "sugar", + "beef brisket", + "green cabbage", + "ground black pepper", + "olive oil", + "balsamic vinegar" + ] + }, + { + "id": 38467, + "cuisine": "southern_us", + "ingredients": [ + "pepper flakes", + "lemon wedge", + "egg whites", + "all-purpose flour", + "corn oil", + "cornmeal", + "fish fillets", + "paprika" + ] + }, + { + "id": 40594, + "cuisine": "italian", + "ingredients": [ + "clams", + "olive oil", + "lemon", + "medium shrimp", + "tentacles", + "ground black pepper", + "salt", + "italian seasoning", + "crushed tomatoes", + "bay scallops", + "anchovy fillets", + "pasta", + "manchego cheese", + "garlic", + "fresh basil leaves" + ] + }, + { + "id": 17915, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "ground pepper", + "ginger", + "chopped cilantro", + "ground cumin", + "tumeric", + "potatoes", + "cayenne pepper", + "frozen peas", + "eggs", + "garam masala", + "crust", + "onions", + "kosher salt", + "vegetable stock", + "cumin seed", + "canola oil" + ] + }, + { + "id": 21893, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "pasta shells", + "ground pepper", + "garlic cloves", + "coarse salt", + "tomatoes", + "extra-virgin olive oil" + ] + }, + { + "id": 11902, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "garlic cloves", + "tomato paste", + "salt", + "olive oil", + "dried porcini mushrooms", + "whole chicken" + ] + }, + { + "id": 21239, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "chees fresh mozzarella", + "chopped cilantro", + "kosher salt", + "barbecue sauce", + "salt", + "warm water", + "olive oil", + "purple onion", + "pizza crust", + "boneless skinless chicken breasts", + "all-purpose flour" + ] + }, + { + "id": 42079, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "butter", + "frozen corn", + "red bell pepper", + "green bell pepper", + "flour", + "garlic", + "green chilies", + "onions", + "chicken broth", + "flour tortillas", + "ground pork", + "cayenne pepper", + "sour cream", + "black pepper", + "chili powder", + "salt", + "shredded cheese", + "dried oregano" + ] + }, + { + "id": 34539, + "cuisine": "irish", + "ingredients": [ + "mayonaise", + "chips", + "pepper", + "malt vinegar" + ] + }, + { + "id": 4124, + "cuisine": "southern_us", + "ingredients": [ + "evaporated milk", + "cinnamon", + "salt", + "nutmeg", + "flour", + "raw sugar", + "pie crust", + "lemon extract", + "orange extract", + "softened butter", + "eggs", + "sweet potatoes", + "vanilla extract" + ] + }, + { + "id": 34192, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "kosher salt", + "cooking spray", + "chopped walnuts", + "warm water", + "prosciutto", + "purple onion", + "arugula", + "sugar", + "olive oil", + "chopped fresh thyme", + "fresh lemon juice", + "black pepper", + "dry yeast", + "all-purpose flour" + ] + }, + { + "id": 14392, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil cooking spray", + "cream style corn", + "all-purpose flour", + "skim milk", + "vegetable oil", + "sugar", + "baking powder", + "yellow corn meal", + "egg substitute", + "salt" + ] + }, + { + "id": 4656, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime juice", + "chili powder", + "garlic cloves", + "chopped cilantro", + "water", + "flour", + "salt", + "corn tortillas", + "black beans", + "diced red onions", + "purple onion", + "flavored oil", + "cumin", + "tomato paste", + "garlic powder", + "red pepper flakes", + "carrots", + "cooked quinoa" + ] + }, + { + "id": 14193, + "cuisine": "korean", + "ingredients": [ + "sugar", + "green onions", + "garlic chili sauce", + "salmon fillets", + "olive oil", + "sesame oil", + "chinese rice wine", + "peeled fresh ginger", + "large garlic cloves", + "soy sauce", + "fresh shiitake mushrooms", + "bok choy" + ] + }, + { + "id": 31574, + "cuisine": "spanish", + "ingredients": [ + "water", + "salt", + "potatoes", + "olive oil", + "cayenne pepper", + "pancetta", + "paprika" + ] + }, + { + "id": 14409, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "canola oil", + "thai chile", + "ground pork", + "garlic chives", + "fermented black beans" + ] + }, + { + "id": 6431, + "cuisine": "italian", + "ingredients": [ + "bacon", + "fresh basil", + "bow-tie pasta", + "mozzarella cheese", + "balsamic vinaigrette", + "diced tomatoes" + ] + }, + { + "id": 17851, + "cuisine": "italian", + "ingredients": [ + "baking soda", + "old-fashioned oats", + "all purpose unbleached flour", + "sugar", + "lemon zest", + "vegetable oil", + "orange zest", + "kosher salt", + "large eggs", + "almond extract", + "unsalted shelled pistachio", + "dried cherry", + "baking powder", + "vanilla extract" + ] + }, + { + "id": 43604, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "boneless skinless chicken breasts", + "all-purpose flour", + "low sodium soy sauce", + "sesame seeds", + "red pepper flakes", + "fresh lemon juice", + "honey", + "green onions", + "light corn syrup", + "fresh ginger", + "sesame oil", + "garlic cloves" + ] + }, + { + "id": 1023, + "cuisine": "vietnamese", + "ingredients": [ + "rice vermicelli", + "lettuce leaves", + "rice paper", + "cilantro", + "mint leaves", + "medium shrimp" + ] + }, + { + "id": 8795, + "cuisine": "italian", + "ingredients": [ + "garlic", + "plum tomatoes", + "olive oil", + "pumpkin seeds", + "pasta", + "cayenne pepper", + "green onions", + "goat cheese" + ] + }, + { + "id": 24739, + "cuisine": "french", + "ingredients": [ + "single crust pie", + "herbes de provence", + "olive oil", + "pastry", + "brown mustard", + "tomatoes", + "swiss cheese" + ] + }, + { + "id": 430, + "cuisine": "indian", + "ingredients": [ + "clove", + "boneless skinless chicken breasts", + "chopped onion", + "ghee", + "tumeric", + "salt", + "cinnamon sticks", + "black peppercorns", + "garlic", + "ground coriander", + "basmati rice", + "roma tomatoes", + "cilantro leaves", + "ginger root" + ] + }, + { + "id": 4015, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "papaya", + "shallots", + "cucumber", + "brown sugar", + "minced garlic", + "yardlong beans", + "salted roast peanuts", + "fish sauce", + "Vietnamese coriander", + "thai basil", + "cilantro root", + "mango", + "chiles", + "lime", + "peeled fresh ginger", + "baton" + ] + }, + { + "id": 37529, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "baking soda", + "all-purpose flour", + "shortening", + "buttermilk", + "eggs", + "baking powder", + "milk", + "salt" + ] + }, + { + "id": 45135, + "cuisine": "mexican", + "ingredients": [ + "low-fat sour cream", + "green onions", + "goya sazon", + "avocado", + "minced garlic", + "brown rice", + "onions", + "black beans", + "Mexican oregano", + "salsa", + "green chile", + "mozzarella string cheese", + "vegetable broth", + "ground cumin" + ] + }, + { + "id": 31981, + "cuisine": "irish", + "ingredients": [ + "white pepper", + "flour", + "salt", + "clams", + "milk", + "butter", + "bay leaf", + "water", + "egg yolks", + "chopped parsley", + "mussels", + "ground nutmeg", + "heavy cream", + "onions" + ] + }, + { + "id": 16434, + "cuisine": "brazilian", + "ingredients": [ + "milk", + "sweetened condensed milk", + "mango", + "vanilla extract" + ] + }, + { + "id": 42714, + "cuisine": "greek", + "ingredients": [ + "butter", + "spaghetti", + "salt", + "grated parmesan cheese", + "dried oregano" + ] + }, + { + "id": 9229, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "minced ginger", + "gluten-free oyster sauce", + "white pepper", + "minced garlic", + "gluten-free tamari sauce", + "jasmine rice", + "water", + "salt", + "frozen seafood", + "fresh coriander", + "green onions", + "fish" + ] + }, + { + "id": 15637, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "ricotta cheese", + "frozen chopped spinach", + "dried basil", + "salt", + "fennel seeds", + "grated parmesan cheese", + "jumbo pasta shells", + "pepper", + "garlic" + ] + }, + { + "id": 35356, + "cuisine": "italian", + "ingredients": [ + "red potato", + "fat free milk", + "cooking spray", + "large egg whites", + "large eggs", + "beets", + "black pepper", + "fresh parmesan cheese", + "salt", + "beet greens", + "part-skim mozzarella cheese", + "butter" + ] + }, + { + "id": 25508, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "sour cream", + "taco sauce", + "sharp cheddar cheese", + "flatbread", + "shredded lettuce", + "ground beef", + "chopped tomatoes", + "taco seasoning" + ] + }, + { + "id": 30587, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "coarse salt", + "hot sauce", + "plum tomatoes", + "unsalted butter", + "paprika", + "cooked white rice", + "green bell pepper", + "cajun seasoning", + "flat leaf parsley", + "large shrimp", + "low sodium chicken broth", + "all-purpose flour", + "onions" + ] + }, + { + "id": 22007, + "cuisine": "british", + "ingredients": [ + "large egg yolks", + "baking powder", + "malt vinegar", + "corn flour", + "fresh dill", + "ground black pepper", + "vegetable oil", + "all-purpose flour", + "club soda", + "kosher salt", + "french fries", + "old bay seasoning", + "freshly ground pepper", + "cod", + "baking soda", + "lemon wedge", + "light lager", + "sea salt flakes" + ] + }, + { + "id": 10416, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "broccoli florets", + "chinese five-spice powder", + "curry powder", + "ginger", + "coconut milk", + "soy sauce", + "crushed red pepper flakes", + "carrots", + "potatoes", + "boneless skinless chicken", + "onions" + ] + }, + { + "id": 6572, + "cuisine": "french", + "ingredients": [ + "sugar", + "butter", + "whipped cream", + "golden delicious apples", + "vegetable shortening", + "flour", + "lemon", + "unsalted butter", + "ice water", + "cake flour" + ] + }, + { + "id": 18876, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "fresh lemon juice", + "black pepper", + "whole milk", + "wondra flour", + "kosher salt", + "butter", + "soft-shelled crabs", + "flat leaf parsley" + ] + }, + { + "id": 21337, + "cuisine": "italian", + "ingredients": [ + "fronds", + "fusilli", + "green peas", + "dry vermouth", + "fennel bulb", + "chopped fresh thyme", + "garlic cloves", + "fresh basil", + "olive oil", + "sliced carrots", + "salt", + "fresh dill", + "leeks", + "asiago", + "red bell pepper" + ] + }, + { + "id": 20752, + "cuisine": "spanish", + "ingredients": [ + "Belgian endive", + "water", + "finely chopped fresh parsley", + "medium shrimp", + "pepper", + "dijon mustard", + "salt", + "sugar", + "ground black pepper", + "extra-virgin olive oil", + "vidalia onion", + "sherry vinegar", + "watercress", + "onions" + ] + }, + { + "id": 41835, + "cuisine": "mexican", + "ingredients": [ + "herbs", + "salt", + "lime", + "crushed red pepper flakes", + "paprika", + "shrimp", + "olive oil", + "garlic" + ] + }, + { + "id": 7775, + "cuisine": "mexican", + "ingredients": [ + "butter", + "American cheese", + "all-purpose flour", + "salt", + "milk" + ] + }, + { + "id": 9334, + "cuisine": "french", + "ingredients": [ + "green olives", + "dijon mustard", + "black pepper", + "fresh lemon juice", + "capers", + "garlic cloves", + "artichoke hearts", + "fresh parsley" + ] + }, + { + "id": 10674, + "cuisine": "indian", + "ingredients": [ + "pea pods", + "oil", + "ground turmeric", + "tomatoes", + "ground coriander", + "coconut milk", + "salt", + "cinnamon sticks", + "chili powder", + "cumin seed", + "onions" + ] + }, + { + "id": 39712, + "cuisine": "italian", + "ingredients": [ + "reduced fat milk", + "chopped onion", + "minced garlic", + "dry red wine", + "black pepper", + "ground sirloin", + "spaghetti", + "low-fat spaghetti sauce", + "salt" + ] + }, + { + "id": 14254, + "cuisine": "chinese", + "ingredients": [ + "thai basil", + "szechwan peppercorns", + "garlic cloves", + "boneless skinless chicken breasts", + "dark brown sugar", + "fresno chiles", + "reduced sodium soy sauce", + "all-purpose flour", + "rice flour", + "kosher salt", + "rice wine", + "peanut oil", + "potato flour" + ] + }, + { + "id": 43119, + "cuisine": "italian", + "ingredients": [ + "shredded cheddar cheese", + "bacon", + "olive oil", + "shredded mozzarella cheese", + "minced garlic", + "purple onion", + "dough", + "bell pepper", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 863, + "cuisine": "french", + "ingredients": [ + "milk", + "grated nutmeg", + "salt", + "butter", + "all-purpose flour" + ] + }, + { + "id": 3867, + "cuisine": "southern_us", + "ingredients": [ + "pectin", + "mint leaves", + "sugar", + "white vinegar", + "water", + "food colouring" + ] + }, + { + "id": 37698, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "corn tortillas", + "shredded cheddar cheese", + "vegetable oil", + "green bell pepper", + "boneless skinless chicken breasts", + "onions", + "water", + "salsa" + ] + }, + { + "id": 43319, + "cuisine": "thai", + "ingredients": [ + "sugar", + "jalapeno chilies", + "sirloin steak", + "Thai fish sauce", + "peanuts", + "shallots", + "carrots", + "lime zest", + "red cabbage", + "napa cabbage", + "green beans", + "lime juice", + "peeled fresh ginger", + "scallions", + "canola oil" + ] + }, + { + "id": 17561, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "rice vinegar", + "chopped cilantro", + "lime", + "garlic", + "bird chile", + "sugar", + "ponzu", + "corn tortillas", + "skirt steak", + "red pepper flakes", + "kimchi", + "onions" + ] + }, + { + "id": 44325, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "vegetable oil", + "onions", + "tomatoes", + "lager", + "ancho chile pepper", + "chipotle chile", + "Mexican oregano", + "pork shoulder", + "silver tequila", + "garlic cloves", + "ground cumin" + ] + }, + { + "id": 29293, + "cuisine": "italian", + "ingredients": [ + "artichoke hearts", + "lemon rind", + "parmigiano reggiano cheese", + "olive oil", + "salt", + "finely chopped fresh parsley", + "fresh lemon juice" + ] + }, + { + "id": 8117, + "cuisine": "french", + "ingredients": [ + "plain low-fat yogurt", + "cheese", + "cottage cheese", + "gran marnier", + "raspberries", + "orange zest", + "sugar", + "strawberries" + ] + }, + { + "id": 48140, + "cuisine": "filipino", + "ingredients": [ + "kangkong", + "oil", + "sesame oil", + "oyster sauce", + "water", + "garlic chili sauce", + "firm tofu", + "onions" + ] + }, + { + "id": 9181, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "corn kernels", + "bacon slices", + "basil pesto sauce", + "fusilli", + "zucchini" + ] + }, + { + "id": 40020, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "cilantro leaves", + "fish sauce", + "linguine", + "beansprouts", + "slaw mix", + "english cucumber", + "sugar", + "unsalted dry roast peanuts", + "fresh lime juice" + ] + }, + { + "id": 23468, + "cuisine": "mexican", + "ingredients": [ + "baking powder", + "shortening", + "all-purpose flour", + "salt", + "warm water" + ] + }, + { + "id": 39301, + "cuisine": "southern_us", + "ingredients": [ + "oysters", + "saltine crumbs", + "large eggs", + "prepared horseradish", + "canola oil", + "ketchup", + "hot sauce" + ] + }, + { + "id": 15598, + "cuisine": "italian", + "ingredients": [ + "semolina flour", + "baking powder", + "orange juice", + "sliced almonds", + "vanilla extract", + "grated orange", + "brandy", + "butter", + "white sugar", + "eggs", + "almonds", + "all-purpose flour" + ] + }, + { + "id": 16733, + "cuisine": "spanish", + "ingredients": [ + "chicken stock", + "russet potatoes", + "fresh parsley", + "fresh shiitake mushrooms", + "button mushrooms", + "chives", + "large garlic cloves", + "greens", + "sherry wine vinegar", + "extra-virgin olive oil" + ] + }, + { + "id": 11672, + "cuisine": "mexican", + "ingredients": [ + "mozzarella cheese", + "salsa", + "taco shells", + "garlic", + "chiles", + "chicken breasts", + "olive oil", + "red bell pepper" + ] + }, + { + "id": 45148, + "cuisine": "mexican", + "ingredients": [ + "condensed cream of chicken soup", + "chopped tomatoes", + "reduced-fat sour cream", + "white corn", + "cooked chicken", + "green chile", + "shredded cheddar cheese", + "shredded lettuce", + "fat free yogurt", + "green onions" + ] + }, + { + "id": 20652, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "apple cider vinegar", + "garlic cloves", + "onions", + "coke", + "water", + "salt", + "lemon juice", + "ketchup", + "red pepper flakes", + "oyster sauce", + "brown sugar", + "ground black pepper", + "orange juice", + "pork shoulder" + ] + }, + { + "id": 2747, + "cuisine": "mexican", + "ingredients": [ + "country white bread", + "mascarpone", + "olive oil", + "salt", + "pepper", + "jalapeno chilies", + "salted butter", + "aged cheddar cheese" + ] + }, + { + "id": 34263, + "cuisine": "vietnamese", + "ingredients": [ + "herbs", + "rolls", + "pickles", + "rice vermicelli", + "perilla", + "mint", + "balm", + "cucumber", + "red leaf lettuce", + "dipping sauces" + ] + }, + { + "id": 24874, + "cuisine": "indian", + "ingredients": [ + "mint", + "star anise", + "rice", + "lemon juice", + "shahi jeera", + "mace", + "salt", + "green chilies", + "bay leaf", + "water", + "garlic", + "green cardamom", + "cinnamon sticks", + "clove", + "ginger", + "cilantro leaves", + "oil", + "onions" + ] + }, + { + "id": 46925, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "honey", + "extra-virgin olive oil", + "carrots", + "hothouse cucumber", + "romaine lettuce", + "ground black pepper", + "pitted olives", + "flat leaf parsley", + "grape tomatoes", + "feta cheese", + "garlic", + "red bell pepper", + "ricotta salata", + "red wine vinegar", + "salt", + "dried oregano" + ] + }, + { + "id": 46026, + "cuisine": "chinese", + "ingredients": [ + "pork tenderloin", + "garlic chili sauce", + "fat free less sodium chicken broth", + "peanut butter", + "soba", + "low sodium soy sauce", + "green onions", + "red bell pepper", + "fresh ginger", + "dark sesame oil" + ] + }, + { + "id": 16996, + "cuisine": "southern_us", + "ingredients": [ + "white bread", + "large eggs", + "sugar", + "butter", + "ground cinnamon", + "golden raisins", + "milk", + "vanilla extract" + ] + }, + { + "id": 17577, + "cuisine": "italian", + "ingredients": [ + "pizza crust", + "garlic", + "olive oil", + "shredded mozzarella cheese", + "pepper", + "salt", + "pizza sauce", + "escarole" + ] + }, + { + "id": 14074, + "cuisine": "italian", + "ingredients": [ + "shredded Italian cheese", + "marinara sauce", + "french bread", + "cold meatloaf", + "italian seasoning" + ] + }, + { + "id": 45283, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "essence", + "peanuts", + "all-purpose flour", + "sugar", + "salt", + "eggs", + "butter" + ] + }, + { + "id": 19888, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "sugar", + "bacon", + "water", + "beans", + "salt" + ] + }, + { + "id": 8696, + "cuisine": "indian", + "ingredients": [ + "saffron threads", + "vegetable oil", + "gram flour", + "granulated sugar", + "fresh lemon juice", + "water", + "all-purpose flour", + "yeast", + "color food orang", + "ground cardamom" + ] + }, + { + "id": 19566, + "cuisine": "korean", + "ingredients": [ + "stock", + "water", + "leeks", + "salt", + "chuck", + "Korean chile flakes", + "pepper", + "soft tofu", + "garlic", + "onions", + "clams", + "soy sauce", + "enokitake", + "chili oil", + "kelp", + "red chili peppers", + "anchovies", + "sesame oil", + "green chilies" + ] + }, + { + "id": 30400, + "cuisine": "spanish", + "ingredients": [ + "clams", + "white wine", + "olive oil", + "garlic", + "langoustines", + "onions", + "tomatoes", + "chili pepper", + "lemon", + "squid", + "red bell pepper", + "fish", + "mussels", + "scallops", + "chicken parts", + "salt", + "shrimp", + "frozen peas", + "saffron threads", + "valencia rice", + "chorizo", + "paprika", + "ham", + "fresh parsley" + ] + }, + { + "id": 41664, + "cuisine": "greek", + "ingredients": [ + "fresh tomatoes", + "feta cheese crumbles", + "salt and ground black pepper", + "fettuccine pasta", + "chopped fresh mint", + "black olives" + ] + }, + { + "id": 13348, + "cuisine": "japanese", + "ingredients": [ + "dark miso", + "soy sauce", + "yellow onion", + "sake", + "panko", + "ground round", + "canola", + "hot water", + "sugar", + "beaten eggs" + ] + }, + { + "id": 15121, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "shallots", + "fresh parsley", + "grated parmesan cheese", + "butter", + "prosciutto fat", + "ricotta cheese", + "fresh basil", + "marinara sauce", + "jumbo pasta shells" + ] + }, + { + "id": 35428, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "italian seasoning", + "sausage casings", + "ricotta cheese", + "pasta", + "marinara sauce", + "mozzarella cheese", + "salt" + ] + }, + { + "id": 30491, + "cuisine": "british", + "ingredients": [ + "mushrooms", + "chopped onion", + "kidney", + "cold water", + "parsley", + "carrots", + "flour", + "round steaks", + "bay leaf", + "pastry shell", + "oil" + ] + }, + { + "id": 10105, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "sour cream", + "ranch dressing", + "shredded cheddar cheese" + ] + }, + { + "id": 30266, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "garlic", + "corn starch", + "soy sauce", + "chili oil", + "rice vinegar", + "sake", + "sesame oil", + "gyoza wrappers", + "cabbage", + "water", + "ground pork", + "oil" + ] + }, + { + "id": 14173, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "baking powder", + "bittersweet chocolate", + "raw pistachios", + "dark rum", + "salt", + "sugar", + "large eggs", + "cinnamon", + "unsweetened cocoa powder", + "large egg whites", + "vanilla bean seeds", + "all-purpose flour" + ] + }, + { + "id": 28572, + "cuisine": "southern_us", + "ingredients": [ + "chestnuts", + "large eggs", + "dried apple", + "medjool date", + "light brown sugar", + "granulated sugar", + "unsweetened apple juice", + "grated nutmeg", + "honey", + "sweet potatoes", + "cinnamon", + "pure vanilla extract", + "unsalted butter", + "whole milk", + "heavy cream" + ] + }, + { + "id": 5893, + "cuisine": "cajun_creole", + "ingredients": [ + "warm water", + "large eggs", + "powdered sugar", + "evaporated milk", + "salt", + "active dry yeast", + "vegetable oil", + "shortening", + "granulated sugar", + "bread flour" + ] + }, + { + "id": 27567, + "cuisine": "italian", + "ingredients": [ + "warm water", + "butter", + "olive oil", + "all-purpose flour", + "active dry yeast", + "salt", + "fresh basil", + "sun-dried tomatoes", + "white sugar" + ] + }, + { + "id": 44035, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "chipotle chile", + "cilantro leaves", + "avocado", + "sea salt", + "white onion", + "fresh lime juice" + ] + }, + { + "id": 972, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "whole milk", + "all-purpose flour", + "unsalted butter", + "cinnamon", + "honey", + "baking powder", + "sweet potatoes", + "salt" + ] + }, + { + "id": 35691, + "cuisine": "korean", + "ingredients": [ + "tofu", + "garlic", + "mushrooms", + "noodles", + "green onions", + "chicken broth", + "kimchi" + ] + }, + { + "id": 40736, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "golden raisins", + "garlic", + "boneless skinless chicken breast halves", + "chicken broth", + "hot pepper sauce", + "currant", + "toasted sesame seeds", + "slivered almonds", + "ancho powder", + "cocoa powder", + "tomato sauce", + "diced tomatoes", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 35236, + "cuisine": "italian", + "ingredients": [ + "Italian bread", + "grated parmesan cheese", + "large garlic cloves", + "salted butter" + ] + }, + { + "id": 12758, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "cooking oil", + "shrimp", + "soy sauce", + "green onions", + "pork", + "water chestnuts", + "lumpia skins", + "black pepper", + "salt" + ] + }, + { + "id": 45734, + "cuisine": "chinese", + "ingredients": [ + "center cut pork roast", + "hoisin sauce", + "chinese five-spice powder", + "lo mein noodles", + "garlic", + "snow peas", + "reduced sodium chicken broth", + "reduced sodium soy sauce", + "scallions", + "honey", + "ginger", + "corn starch" + ] + }, + { + "id": 21904, + "cuisine": "cajun_creole", + "ingredients": [ + "flour", + "yeast", + "eggs", + "salt", + "butter", + "sugar", + "candy" + ] + }, + { + "id": 5807, + "cuisine": "jamaican", + "ingredients": [ + "snappers", + "beer", + "dried thyme", + "lime", + "smoked paprika", + "onion powder" + ] + }, + { + "id": 21924, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "anise", + "grated lemon zest", + "water", + "baking powder", + "all-purpose flour", + "sugar", + "large eggs", + "vanilla extract", + "bittersweet chocolate", + "hazelnuts", + "cooking spray", + "salt" + ] + }, + { + "id": 45319, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "half & half", + "salt", + "quickcooking grits", + "pepper", + "gruyere cheese" + ] + }, + { + "id": 12703, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salt", + "scallions", + "chili powder", + "frozen corn kernels", + "cumin", + "flour tortillas", + "shredded pepper jack cheese", + "sour cream", + "pepper", + "prepar salsa", + "cream cheese", + "chicken" + ] + }, + { + "id": 12690, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "hot water", + "granulated sugar" + ] + }, + { + "id": 16914, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "leeks", + "bacon slices", + "aged cheddar cheese", + "pasta", + "unsalted butter", + "heavy cream", + "all-purpose flour", + "ground black pepper", + "ground red pepper", + "salt", + "bread crumb fresh", + "egg yolks", + "dry mustard", + "grated Gruyère cheese" + ] + }, + { + "id": 4806, + "cuisine": "british", + "ingredients": [ + "pepper", + "red wine", + "chopped parsley", + "mashed cauliflower", + "salt", + "olive oil", + "heavy cream", + "onions", + "chicken stock", + "butter", + "sausages" + ] + }, + { + "id": 30498, + "cuisine": "french", + "ingredients": [ + "french baguette", + "shredded swiss cheese", + "tomato chutney", + "sliced ham", + "milk", + "butter", + "eggs", + "chopped fresh chives" + ] + }, + { + "id": 41540, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "boiling potatoes", + "pepper", + "coarse salt", + "chicken broth", + "artichok heart marin", + "olive oil", + "onions" + ] + }, + { + "id": 39498, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "olive oil", + "crushed tomatoes", + "fresh basil leaves", + "balsamic vinegar" + ] + }, + { + "id": 30013, + "cuisine": "mexican", + "ingredients": [ + "bananas", + "vanilla extract", + "butter", + "sweetened condensed milk", + "graham cracker crumbs", + "confectioners sugar", + "whipping cream" + ] + }, + { + "id": 28009, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "shiitake", + "rice wine", + "salt", + "soy sauce", + "spring onions", + "ground pork", + "pork lard", + "warm water", + "flour", + "sesame oil", + "oyster sauce", + "cold water", + "fresh ginger", + "baking powder", + "garlic", + "yeast" + ] + }, + { + "id": 24438, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "butternut squash", + "water", + "dried sage", + "ground black pepper", + "chicken" + ] + }, + { + "id": 7165, + "cuisine": "korean", + "ingredients": [ + "sugar", + "green onions", + "pork belly", + "kimchi", + "pork", + "Gochujang base", + "tofu", + "water" + ] + }, + { + "id": 26418, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "broccoli florets", + "pepper", + "heavy whipping cream", + "kosher salt", + "chicken breasts", + "parmesan cheese" + ] + }, + { + "id": 11865, + "cuisine": "mexican", + "ingredients": [ + "poblano peppers", + "ancho powder", + "sour cream", + "lime", + "chicken breasts", + "purple onion", + "kosher salt", + "flour", + "cilantro", + "cumin", + "tortillas", + "vegetable oil", + "salsa" + ] + }, + { + "id": 32880, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "salt", + "sugar", + "baking powder", + "eggs", + "egg yolks", + "all-purpose flour", + "fresh chives", + "buttermilk" + ] + }, + { + "id": 24178, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "cumin seed", + "ground turmeric", + "tomatoes", + "salt", + "mustard seeds", + "chili powder", + "oil", + "puffed rice", + "green bell pepper", + "green chilies", + "coriander" + ] + }, + { + "id": 23300, + "cuisine": "southern_us", + "ingredients": [ + "cooking oil", + "salmon", + "eggs", + "all-purpose flour", + "baking soda" + ] + }, + { + "id": 27683, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "garlic", + "italian sausage", + "parsley", + "bow-tie pasta", + "italian plum tomatoes", + "salt", + "olive oil", + "whipping cream", + "onions" + ] + }, + { + "id": 43683, + "cuisine": "chinese", + "ingredients": [ + "large egg whites", + "sesame oil", + "salt", + "oil", + "low sodium soy sauce", + "cayenne", + "napa cabbage", + "rice vinegar", + "toasted sesame oil", + "dumpling wrappers", + "shallots", + "ginger", + "scallions", + "large shrimp", + "ground black pepper", + "vegetable oil", + "cilantro leaves", + "carrots" + ] + }, + { + "id": 19543, + "cuisine": "indian", + "ingredients": [ + "cooking oil", + "purple onion", + "white mushrooms", + "curry powder", + "crushed garlic", + "chickpeas", + "chili powder", + "salt", + "chopped tomatoes", + "red pepper", + "rice" + ] + }, + { + "id": 18014, + "cuisine": "irish", + "ingredients": [ + "red potato", + "ground black pepper", + "corned beef", + "mustard", + "white wine", + "butter cooking spray", + "phyllo dough", + "shredded swiss cheese", + "melted butter", + "garlic powder", + "cabbage" + ] + }, + { + "id": 47220, + "cuisine": "british", + "ingredients": [ + "dried currants", + "frozen pastry puff sheets", + "raw cane sugar", + "cinnamon", + "unsalted butter", + "whole milk", + "nutmeg", + "large eggs", + "allspice" + ] + }, + { + "id": 32093, + "cuisine": "southern_us", + "ingredients": [ + "flank steak", + "ground pepper", + "leaf lettuce", + "tomatoes", + "purple onion", + "barbecue sauce", + "rolls" + ] + }, + { + "id": 13578, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "long grain white rice", + "salt", + "vegetable oil", + "water", + "chopped cilantro" + ] + }, + { + "id": 47485, + "cuisine": "italian", + "ingredients": [ + "pasta", + "garbanzo beans", + "pepper", + "salt", + "olive oil", + "fresh rosemary", + "diced tomatoes" + ] + }, + { + "id": 26367, + "cuisine": "indian", + "ingredients": [ + "cumin seed", + "fennel seeds", + "dried oregano", + "fenugreek seeds", + "black mustard seeds" + ] + }, + { + "id": 46668, + "cuisine": "italian", + "ingredients": [ + "shredded cheddar cheese", + "salt", + "dried oregano", + "tomato sauce", + "frozen bread dough", + "onions", + "pepper", + "paprika", + "garlic salt", + "melted butter", + "part-skim mozzarella cheese", + "ground beef" + ] + }, + { + "id": 35147, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "bacon slices", + "lentils", + "dried rosemary", + "canned low sodium chicken broth", + "tubetti", + "canned tomatoes", + "celery", + "fresh rosemary", + "mushrooms", + "garlic", + "carrots", + "water", + "red pepper flakes", + "salt", + "onions" + ] + }, + { + "id": 44402, + "cuisine": "korean", + "ingredients": [ + "pepper", + "shredded carrots", + "vegetable broth", + "garlic cloves", + "eggs", + "sesame seeds", + "sesame oil", + "rice vinegar", + "mung bean sprouts", + "honey", + "green onions", + "salt", + "sliced mushrooms", + "spinach", + "beef", + "sticky rice", + "sauce" + ] + }, + { + "id": 29684, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "ground black pepper", + "garlic", + "kosher salt", + "grated parmesan cheese", + "fresh basil leaves", + "tomato sauce", + "large eggs", + "nonstick spray", + "cauliflower", + "part-skim mozzarella cheese", + "crushed red pepper flakes" + ] + }, + { + "id": 18264, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "grated parmesan cheese", + "garlic cloves", + "tomatoes", + "olive oil", + "salt", + "dried basil", + "butter", + "dried oregano", + "eggs", + "boneless chicken breast halves", + "dry bread crumbs" + ] + }, + { + "id": 20137, + "cuisine": "irish", + "ingredients": [ + "baking powder", + "salt", + "eggs", + "buttermilk", + "white sugar", + "baking soda", + "raisins", + "butter", + "all-purpose flour" + ] + }, + { + "id": 10652, + "cuisine": "italian", + "ingredients": [ + "fresh parsley", + "red wine vinegar", + "olive oil", + "oregano" + ] + }, + { + "id": 39703, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "prepared horseradish", + "Tabasco Pepper Sauce", + "smoked sausage", + "small red potato", + "kosher salt", + "bay leaves", + "lemon", + "beer", + "fresh corn", + "water", + "shell-on shrimp", + "old bay seasoning", + "garlic cloves", + "ketchup", + "Sriracha", + "red wine vinegar", + "cayenne pepper" + ] + }, + { + "id": 32856, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "fennel bulb", + "red bell pepper", + "tumeric", + "olive oil", + "purple onion", + "sugar", + "cayenne", + "garlic cloves", + "cider vinegar", + "red cabbage" + ] + }, + { + "id": 27681, + "cuisine": "thai", + "ingredients": [ + "shell-on shrimp", + "salt", + "grapefruit", + "asian fish sauce", + "dry coconut", + "thai chile", + "coconut cream", + "dried shrimp", + "boneless skinless chicken breasts", + "cilantro leaves", + "rice flour", + "sugar", + "vegetable oil", + "pummelo", + "fresh lime juice" + ] + }, + { + "id": 48018, + "cuisine": "irish", + "ingredients": [ + "dried thyme", + "vegetable oil", + "bacon", + "chopped onion", + "cabbage", + "chuck roast", + "butter", + "salt", + "carrots", + "ground black pepper", + "russet potatoes", + "garlic", + "beer", + "milk", + "bay leaves", + "worcestershire sauce", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 46531, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "bean paste", + "corn starch", + "sambal ulek", + "water", + "ginger", + "black vinegar", + "boneless pork shoulder", + "kosher salt", + "chinese wheat noodles", + "chinese chives", + "chiles", + "light soy sauce", + "garlic", + "canola oil" + ] + }, + { + "id": 26060, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "garlic", + "onions", + "tumeric", + "red pepper flakes", + "ground coriander", + "cooking oil", + "salt", + "ground cumin", + "water", + "sirloin steak", + "chopped cilantro" + ] + }, + { + "id": 41413, + "cuisine": "italian", + "ingredients": [ + "sea salt", + "anchovy fillets", + "flat leaf parsley", + "cracked black pepper", + "fresh lemon juice", + "green garlic", + "garlic cloves", + "tagliarini", + "white wine", + "extra-virgin olive oil", + "halibut steak" + ] + }, + { + "id": 12779, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "green onions", + "yellow corn", + "shrimp", + "avocado", + "bell pepper", + "heavy cream", + "garlic cloves", + "water", + "brown rice", + "salt", + "sour cream", + "flour tortillas", + "butter", + "salsa", + "onions" + ] + }, + { + "id": 8228, + "cuisine": "mexican", + "ingredients": [ + "piloncillo", + "dark rum", + "fresh lime juice", + "water", + "vanilla extract", + "vegetable oil cooking spray", + "pineapple", + "clove", + "papaya", + "cinnamon sticks" + ] + }, + { + "id": 44313, + "cuisine": "japanese", + "ingredients": [ + "ice cubes", + "water", + "red cabbage", + "scallions", + "nori", + "soy sauce", + "baking soda", + "soba noodles", + "medium shrimp", + "eggs", + "sesame seeds", + "all-purpose flour", + "shiso", + "wasabi paste", + "yellow squash", + "salt", + "carrots" + ] + }, + { + "id": 43672, + "cuisine": "french", + "ingredients": [ + "bittersweet chocolate", + "crust", + "light corn syrup", + "heavy whipping cream" + ] + }, + { + "id": 8116, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chili sauce", + "curry powder", + "orzo", + "garlic cloves", + "low sodium chicken broth", + "chopped onion", + "dried thyme", + "chickpeas", + "carrots" + ] + }, + { + "id": 10153, + "cuisine": "italian", + "ingredients": [ + "semolina", + "all purpose unbleached flour", + "water" + ] + }, + { + "id": 35839, + "cuisine": "cajun_creole", + "ingredients": [ + "light brown sugar", + "granulated sugar", + "evaporated milk", + "pecan halves", + "vanilla extract", + "unsalted butter" + ] + }, + { + "id": 33241, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "sugar", + "vanilla", + "heavy cream", + "peaches" + ] + }, + { + "id": 17838, + "cuisine": "cajun_creole", + "ingredients": [ + "onion powder", + "salt", + "paprika", + "lemon pepper", + "butter", + "cayenne pepper", + "garlic powder", + "popcorn" + ] + }, + { + "id": 16109, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "olive oil", + "lean ground beef", + "chopped cilantro fresh", + "light sour cream", + "cream", + "jalapeno chilies", + "salt", + "green chile", + "shredded cheddar cheese", + "fat-free cottage cheese", + "elbow macaroni", + "white pepper", + "garlic powder", + "butter", + "adobo seasoning" + ] + }, + { + "id": 28500, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "cider vinegar", + "puff pastry", + "sugar", + "golden delicious apples", + "water" + ] + }, + { + "id": 24050, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "boneless skinless chicken breasts", + "panko breadcrumbs", + "freshly grated parmesan", + "worcestershire sauce", + "olive oil", + "parsley", + "mayonaise", + "ground black pepper", + "fresh lemon juice" + ] + }, + { + "id": 37799, + "cuisine": "italian", + "ingredients": [ + "cremini mushrooms", + "unsalted butter", + "worcestershire sauce", + "fresh lemon juice", + "bread crumb fresh", + "parmigiano reggiano cheese", + "grated lemon zest", + "spaghetti", + "olive oil", + "lemon wedge", + "garlic cloves", + "black pepper", + "fresh thyme", + "salt", + "fresh parsley" + ] + }, + { + "id": 19927, + "cuisine": "indian", + "ingredients": [ + "Lipton Lemon Iced Tea Mix", + "mango", + "water" + ] + }, + { + "id": 1258, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "jalapeno chilies", + "brown rice", + "extra-virgin olive oil", + "dried oregano", + "low sodium black beans", + "boneless skinless chicken breasts", + "paprika", + "salt", + "pepper", + "low sodium chicken broth", + "onion powder", + "garlic", + "cumin", + "garlic powder", + "shallots", + "cilantro", + "fresh lime juice" + ] + }, + { + "id": 18658, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "cannellini beans", + "salt", + "pasta", + "finely chopped fresh parsley", + "purple onion", + "ground black pepper", + "chopped celery", + "olive oil", + "bacon", + "chopped fresh sage" + ] + }, + { + "id": 2859, + "cuisine": "british", + "ingredients": [ + "kosher salt", + "russet potatoes", + "tartar sauce", + "pollock", + "cayenne pepper", + "ground black pepper", + "malt vinegar", + "crispy rice cereal", + "large egg whites", + "extra-virgin olive oil", + "olive oil cooking spray" + ] + }, + { + "id": 24469, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "vegetable oil", + "bread", + "fresh ginger", + "purple onion", + "fresh lime juice", + "rib eye steaks", + "fresh cilantro", + "garlic", + "onions", + "kosher salt", + "mango chutney", + "green chilies" + ] + }, + { + "id": 40490, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "heavy cream", + "Madeira", + "fresh thyme leaves", + "shallots", + "unsalted butter", + "chicken livers" + ] + }, + { + "id": 25339, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "olive oil", + "brown rice", + "garlic", + "boneless skinless chicken breast halves", + "curry powder", + "chunky peanut butter", + "sliced carrots", + "red bell pepper", + "crushed tomatoes", + "sweet potatoes", + "crushed red pepper flakes", + "onions", + "ground cinnamon", + "ground black pepper", + "chili powder", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 13605, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "full fat coconut milk", + "diced tomatoes", + "avocado oil", + "coconut cream", + "cashew nuts", + "water", + "white poppy seeds", + "ginger", + "cilantro leaves", + "carrots", + "chili", + "sweet potatoes", + "garlic", + "yellow onion", + "frozen peas", + "tapioca flour", + "coriander powder", + "paprika", + "salt", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 37176, + "cuisine": "vietnamese", + "ingredients": [ + "green mango", + "medium shrimp", + "red chili peppers", + "carrots", + "fish sauce", + "bawang goreng", + "leaves", + "chinese chives" + ] + }, + { + "id": 13441, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "chili powder", + "salt", + "quinoa", + "cilantro", + "oregano", + "pepper", + "diced tomatoes", + "onions", + "corn oil", + "garlic", + "cumin" + ] + }, + { + "id": 24755, + "cuisine": "southern_us", + "ingredients": [ + "pimentos", + "sharp cheddar cheese", + "hot sauce", + "salt", + "mayonaise", + "cayenne pepper" + ] + }, + { + "id": 3256, + "cuisine": "french", + "ingredients": [ + "large egg whites", + "large eggs", + "dried oregano", + "pepper", + "zucchini", + "chopped onion", + "olive oil", + "cooking spray", + "fresh parmesan cheese", + "salt" + ] + }, + { + "id": 2091, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "mutton", + "mustard oil", + "onions", + "cilantro", + "brown cardamom", + "bay leaf", + "water", + "salt", + "garlic cloves", + "ground turmeric", + "clove", + "ginger", + "curds", + "ghee" + ] + }, + { + "id": 25828, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "sugar", + "light corn syrup", + "baking soda", + "vanilla extract", + "buttermilk" + ] + }, + { + "id": 28667, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "white rice", + "onions", + "minced garlic", + "Shaoxing wine", + "chinese cabbage", + "soy sauce", + "ground black pepper", + "salt", + "water", + "ground pork", + "corn starch" + ] + }, + { + "id": 49647, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "water", + "lemon juice", + "sugar", + "pistachios", + "phyllo dough", + "honey", + "cinnamon sticks", + "chopped nuts", + "ground cloves", + "butter" + ] + }, + { + "id": 2097, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "whole wheat penne", + "diced onions", + "marinara sauce", + "green bell pepper", + "ground turkey", + "freshly grated parmesan" + ] + }, + { + "id": 44557, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "fennel", + "vegetable oil", + "garlic", + "lemon juice", + "serrano chile", + "tumeric", + "brown rice", + "cilantro sprigs", + "cumin seed", + "onions", + "red kidney beans", + "cayenne", + "ginger", + "ground coriander", + "bay leaf", + "green cardamom pods", + "garam masala", + "florets", + "salt", + "cinnamon sticks", + "plum tomatoes" + ] + }, + { + "id": 7916, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "garlic", + "tomatillos", + "pasilla chiles" + ] + }, + { + "id": 26344, + "cuisine": "spanish", + "ingredients": [ + "collard greens", + "crushed red pepper", + "russet potatoes", + "onions", + "olive oil", + "low salt chicken broth", + "spicy sausage", + "garlic" + ] + }, + { + "id": 39398, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sprouts", + "rice vinegar", + "sugar", + "mirin", + "ginger", + "fresh salmon", + "fish sauce", + "lime", + "wonton skins", + "sauce", + "red chili peppers", + "spring onions", + "garlic", + "toasted sesame oil" + ] + }, + { + "id": 49461, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "salt", + "vidalia onion", + "green peas", + "fresh ginger", + "small red potato", + "fat free beef broth", + "cooking spray", + "leg of lamb" + ] + }, + { + "id": 16536, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh parsley", + "button mushrooms", + "tomatoes", + "garlic cloves", + "cooking spray", + "polenta" + ] + }, + { + "id": 34621, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "green onions", + "ground ginger", + "hoisin sauce", + "cooking sherry", + "granulated sugar", + "salt", + "soy sauce", + "pork loin" + ] + }, + { + "id": 24542, + "cuisine": "korean", + "ingredients": [ + "ketchup", + "ginger", + "garlic cloves", + "brown sugar", + "chuck roast", + "apple juice", + "onions", + "mirin", + "white rice", + "carrots", + "soy sauce", + "sesame oil", + "scallions", + "cabbage" + ] + }, + { + "id": 3657, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "mushrooms", + "medium shrimp", + "cold water", + "udon", + "rice vinegar", + "fresh ginger", + "green onions", + "low sodium soy sauce", + "bonito flakes", + "konbu" + ] + }, + { + "id": 9161, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "buttermilk", + "peanut butter", + "powdered sugar", + "baking powder", + "salt", + "bananas", + "bacon slices", + "honey roasted peanuts", + "butter", + "all-purpose flour" + ] + }, + { + "id": 30781, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "ajwain", + "kasuri methi", + "chapati flour", + "tumeric", + "minced ginger", + "salt", + "lentils", + "green bell pepper", + "minced garlic", + "paneer", + "oil", + "tomato paste", + "red chili peppers", + "coriander seeds", + "chopped onion", + "canola oil" + ] + }, + { + "id": 47632, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "rice noodles", + "oil", + "medium shrimp", + "Shaoxing wine", + "chinese roast pork", + "red bell pepper", + "soy sauce", + "garlic", + "oyster sauce", + "onions", + "eggs", + "sesame oil", + "scallions", + "boiled ham" + ] + }, + { + "id": 31308, + "cuisine": "italian", + "ingredients": [ + "eggs", + "panko", + "pepper", + "flat leaf parsley", + "lean ground pork", + "salt", + "fennel seeds", + "olive oil", + "onions" + ] + }, + { + "id": 46859, + "cuisine": "indian", + "ingredients": [ + "red pepper", + "cumin seed", + "ghee", + "fresh spinach", + "urad dal", + "asafoetida powder", + "red chili powder", + "ginger", + "mustard seeds", + "ground turmeric", + "water", + "salt", + "small green chile" + ] + }, + { + "id": 36464, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "meat", + "hot sauce", + "green chile", + "minced onion", + "garlic", + "olive oil", + "chili powder", + "ground cumin", + "tomato sauce", + "flour tortillas", + "shredded pepper jack cheese" + ] + }, + { + "id": 13753, + "cuisine": "french", + "ingredients": [ + "green chile", + "cooked chicken", + "garlic", + "onions", + "green onions", + "whipping cream", + "red bell pepper", + "green bell pepper", + "shredded swiss cheese", + "salt", + "pepper", + "butter", + "poultry seasoning" + ] + }, + { + "id": 17774, + "cuisine": "indian", + "ingredients": [ + "scallops", + "heavy cream", + "cumin seed", + "garam masala", + "salt", + "ground turmeric", + "fresh ginger", + "purple onion", + "garlic cloves", + "fresh leav spinach", + "ground black pepper", + "cayenne pepper", + "canola oil" + ] + }, + { + "id": 39390, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "ground black pepper", + "fresh spinach", + "salt", + "chicken broth", + "potatoes", + "evaporated milk", + "onions" + ] + }, + { + "id": 15723, + "cuisine": "korean", + "ingredients": [ + "seasoning", + "pork sirloin chops", + "pepper", + "panko breadcrumbs", + "eggs", + "salt", + "flour", + "canola oil" + ] + }, + { + "id": 33374, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cooking spray", + "chopped pecans", + "ground ginger", + "white chocolate chips", + "salt", + "water", + "baking powder", + "canola oil", + "oats", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 39084, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "fresh raspberries", + "eggs", + "unsalted butter", + "greek yogurt", + "unsalted pistachios", + "all-purpose flour", + "confectioners sugar", + "mascarpone", + "ground almonds" + ] + }, + { + "id": 44519, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "unsalted butter", + "salt", + "active dry yeast", + "large eggs", + "confectioners sugar", + "pure vanilla extract", + "evaporated milk", + "sanding sugar", + "milk", + "granulated sugar", + "all-purpose flour" + ] + }, + { + "id": 40455, + "cuisine": "indian", + "ingredients": [ + "chili flakes", + "pepper", + "fennel", + "potatoes", + "vegetable oil", + "salt", + "ground coriander", + "jaggery", + "granny smith apples", + "amchur", + "cayenne", + "seeds", + "star anise", + "tamarind paste", + "mustard seeds", + "ground turmeric", + "clove", + "plain yogurt", + "fresh ginger", + "granulated sugar", + "apple cider vinegar", + "garlic", + "green chilies", + "frozen peas", + "ground cumin", + "warm water", + "water", + "garam masala", + "mint leaves", + "cilantro", + "all-purpose flour", + "cardamom", + "greens" + ] + }, + { + "id": 26113, + "cuisine": "indian", + "ingredients": [ + "golden raisins", + "onions", + "blanched almonds", + "salt", + "basmati rice", + "olive oil", + "cinnamon sticks" + ] + }, + { + "id": 10941, + "cuisine": "southern_us", + "ingredients": [ + "fresh basil", + "peaches", + "sweetened coconut flakes", + "panko breadcrumbs", + "lime", + "flour", + "salt", + "jumbo shrimp", + "jalapeno chilies", + "crushed red pepper flakes", + "mango", + "eggs", + "cayenne", + "buttermilk", + "chili sauce" + ] + }, + { + "id": 21421, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "cooking spray", + "all-purpose flour", + "parsnips", + "panko", + "butter", + "turnips", + "water", + "whole milk", + "fat free less sodium chicken broth", + "ground black pepper", + "gruyere cheese" + ] + }, + { + "id": 19240, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "powdered vanilla pudding mix", + "large eggs", + "butter", + "corn starch", + "sugar", + "custard powder", + "starch", + "salt", + "medium eggs", + "warm water", + "unsalted butter", + "yellow food coloring", + "all-purpose flour", + "powdered sugar", + "active dry yeast", + "powdered milk", + "vanilla extract", + "sweetened condensed milk" + ] + }, + { + "id": 5946, + "cuisine": "spanish", + "ingredients": [ + "large egg whites", + "all-purpose flour", + "sugar", + "unsalted butter", + "honey", + "sea salt flakes", + "sliced almonds", + "light corn syrup" + ] + }, + { + "id": 24850, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "button mushrooms", + "ground ginger", + "Kikkoman Soy Sauce", + "shrimp", + "chicken stock", + "water chestnuts", + "scallions", + "Kikkoman Oyster Sauce", + "sesame oil", + "cooking sherry" + ] + }, + { + "id": 31003, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "provolone cheese", + "ground black pepper", + "purple onion", + "hot water", + "fresh basil", + "part-skim ricotta cheese", + "beets", + "red wine vinegar", + "salt", + "serrano chile" + ] + }, + { + "id": 40388, + "cuisine": "chinese", + "ingredients": [ + "spring roll wrappers", + "thai basil", + "sesame oil", + "chinese five-spice powder", + "beansprouts", + "red chili peppers", + "mushrooms", + "cornflour", + "oyster sauce", + "coriander", + "toasted peanuts", + "reduced sodium soy sauce", + "ginger", + "oil", + "vermicelli noodles", + "sweet chili sauce", + "spring onions", + "chinese cabbage", + "carrots" + ] + }, + { + "id": 13732, + "cuisine": "southern_us", + "ingredients": [ + "fresh basil", + "peach nectar", + "water", + "sugar", + "vanilla beans" + ] + }, + { + "id": 10623, + "cuisine": "greek", + "ingredients": [ + "eggs", + "vanilla extract", + "unsalted butter", + "all-purpose flour", + "sesame seeds", + "salt", + "baking powder", + "white sugar" + ] + }, + { + "id": 40367, + "cuisine": "italian", + "ingredients": [ + "dry vermouth", + "chopped fresh chives", + "medium egg noodles", + "unsalted butter", + "fresh tarragon", + "capers", + "pork tenderloin" + ] + }, + { + "id": 43955, + "cuisine": "mexican", + "ingredients": [ + "milk", + "butter", + "shredded cheese", + "flour", + "garlic", + "onions", + "jalapeno chilies", + "cilantro", + "sour cream", + "serrano peppers", + "salt", + "plum tomatoes" + ] + }, + { + "id": 24011, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "whole wheat hamburger buns", + "apple cider vinegar", + "firm tofu", + "beansprouts", + "eggs", + "ground chicken", + "shiitake", + "cilantro", + "carrots", + "white vinegar", + "soy sauce", + "olive oil", + "sesame oil", + "scallions", + "ground cumin", + "brown sugar", + "black pepper", + "radishes", + "salt", + "cucumber" + ] + }, + { + "id": 39760, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "butter", + "all-purpose flour", + "cream of tartar", + "large egg yolks", + "salt", + "large egg whites", + "vanilla extract", + "meringue", + "sugar", + "bananas", + "vanilla wafers" + ] + }, + { + "id": 21273, + "cuisine": "japanese", + "ingredients": [ + "dark soy sauce", + "spring onions", + "cornflour", + "fresh coriander", + "red pepper", + "soba", + "stock", + "sirloin steak", + "garlic cloves", + "wasabi paste", + "shiitake", + "sunflower oil", + "nori" + ] + }, + { + "id": 28304, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "cannellini beans", + "country bread", + "sage leaves", + "diced tomatoes", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 18804, + "cuisine": "vietnamese", + "ingredients": [ + "lime", + "hoisin sauce", + "beef broth", + "onions", + "black peppercorns", + "lemon grass", + "cilantro leaves", + "beansprouts", + "sirloin tip", + "fresh ginger root", + "jalapeno chilies", + "cinnamon sticks", + "fresh basil leaves", + "fish sauce", + "hot pepper sauce", + "dried rice noodles", + "fresh mint" + ] + }, + { + "id": 16494, + "cuisine": "southern_us", + "ingredients": [ + "romaine lettuce", + "butter", + "salt", + "fat free less sodium chicken broth", + "green peas", + "sugar", + "cracked black pepper", + "fresh parsley", + "vidalia onion", + "dried thyme", + "chopped celery" + ] + }, + { + "id": 47491, + "cuisine": "mexican", + "ingredients": [ + "guajillo chiles", + "vegetable oil", + "salt", + "skirt steak", + "water", + "anise", + "corn tortillas", + "avocado", + "olive oil", + "chile de arbol", + "chopped cilantro fresh", + "white onion", + "tomatillos", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 2183, + "cuisine": "filipino", + "ingredients": [ + "water", + "coconut milk", + "lumpia wrappers", + "bananas", + "brown sugar", + "oil" + ] + }, + { + "id": 15310, + "cuisine": "italian", + "ingredients": [ + "bread crumb fresh", + "grated parmesan cheese", + "fresh basil leaves", + "eggplant", + "ricotta cheese", + "mozzarella cheese", + "marinara sauce", + "olive oil spray", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 680, + "cuisine": "greek", + "ingredients": [ + "plain low-fat yogurt", + "purple onion", + "fresh mint", + "swordfish steaks", + "fresh lemon juice", + "dried oregano", + "pita bread", + "salt", + "plum tomatoes", + "parsley leaves", + "cucumber", + "chopped garlic" + ] + }, + { + "id": 15833, + "cuisine": "italian", + "ingredients": [ + "eggs", + "cooking oil", + "garlic", + "olive oil", + "boneless skinless chicken breasts", + "dry bread crumbs", + "crushed tomatoes", + "grated parmesan cheese", + "salt", + "sandwich rolls", + "ground black pepper", + "red pepper flakes", + "onions" + ] + }, + { + "id": 28966, + "cuisine": "southern_us", + "ingredients": [ + "fresh rosemary", + "peas", + "onions", + "low-sodium fat-free chicken broth", + "carrots", + "olive oil", + "ham", + "batter", + "garlic cloves", + "butter beans" + ] + }, + { + "id": 23182, + "cuisine": "british", + "ingredients": [ + "cream", + "coffee" + ] + }, + { + "id": 26532, + "cuisine": "italian", + "ingredients": [ + "baking powder", + "all-purpose flour", + "eggs", + "vanilla extract", + "white sugar", + "butter", + "anise extract", + "chopped almonds", + "salt" + ] + }, + { + "id": 42456, + "cuisine": "italian", + "ingredients": [ + "heavy cream", + "lemon juice", + "shallots", + "linguine", + "ground pepper", + "extra-virgin olive oil", + "coarse salt", + "grated lemon zest" + ] + }, + { + "id": 13628, + "cuisine": "thai", + "ingredients": [ + "sugar", + "lime wedges", + "chopped cilantro fresh", + "fish sauce", + "green curry paste", + "fresh lime juice", + "mussels", + "water", + "light coconut milk", + "lime rind", + "clam juice", + "long grain white rice" + ] + }, + { + "id": 34199, + "cuisine": "chinese", + "ingredients": [ + "black sesame seeds", + "rice vinegar", + "ground black pepper", + "napa cabbage", + "scallions", + "olive oil", + "sesame oil", + "rotisserie chicken", + "shredded carrots", + "peanut sauce" + ] + }, + { + "id": 30686, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "leeks", + "elbow macaroni", + "salt and ground black pepper", + "vegetable stock", + "green beans", + "chopped tomatoes", + "cannellini beans", + "carrots", + "zucchini", + "chopped fresh thyme", + "celery" + ] + }, + { + "id": 35373, + "cuisine": "moroccan", + "ingredients": [ + "prunes", + "sesame seeds", + "onions", + "ground ginger", + "pepper", + "cilantro sprigs", + "ground turmeric", + "chicken broth", + "honey", + "salt", + "saffron", + "ground cinnamon", + "olive oil", + "leg of lamb" + ] + }, + { + "id": 6028, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "sweet pepper", + "mango", + "fish fillets", + "shredded lettuce", + "tequila", + "jalapeno chilies", + "purple onion", + "ground cumin", + "lime juice", + "garlic", + "corn tortillas" + ] + }, + { + "id": 18335, + "cuisine": "cajun_creole", + "ingredients": [ + "red kidney beans", + "salt", + "long grain brown rice", + "cajun seasoning", + "garlic cloves", + "boiling water", + "chives", + "green pepper", + "celery", + "purple onion", + "smoked paprika" + ] + }, + { + "id": 31733, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "baking soda", + "dark rum", + "vanilla extract", + "cream cheese, soften", + "lime juice", + "large eggs", + "butter", + "all-purpose flour", + "lime rind", + "bananas", + "baking powder", + "salt", + "fresh lime juice", + "brown sugar", + "fat free milk", + "cooking spray", + "sweetened coconut flakes", + "chopped pecans" + ] + }, + { + "id": 37226, + "cuisine": "french", + "ingredients": [ + "potatoes", + "salt", + "tarragon vinegar", + "green onions", + "beef consomme", + "fresh parsley", + "ground black pepper", + "vegetable oil" + ] + }, + { + "id": 33683, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "grated parmesan cheese", + "flat leaf parsley", + "egg substitute", + "low-fat pasta sauce", + "seasoned bread crumbs", + "chicken breasts", + "whole wheat rotini", + "olive oil", + "shredded low-fat mozzarella cheese" + ] + }, + { + "id": 25786, + "cuisine": "italian", + "ingredients": [ + "capers", + "kalamata", + "garlic cloves", + "beefsteak tomatoes", + "linguine", + "hot red pepper flakes", + "extra-virgin olive oil", + "flat leaf parsley", + "fresh basil", + "red wine vinegar", + "anchovy fillets" + ] + }, + { + "id": 30272, + "cuisine": "vietnamese", + "ingredients": [ + "lime", + "salt", + "asian fish sauce", + "coriander seeds", + "cinnamon sticks", + "canola oil", + "fresh ginger", + "beef broth", + "beef steak", + "fresh basil", + "rice vermicelli", + "beansprouts" + ] + }, + { + "id": 37301, + "cuisine": "jamaican", + "ingredients": [ + "water", + "garlic", + "vegetable oil", + "onions", + "curry powder", + "salt", + "red pepper", + "chicken" + ] + }, + { + "id": 8061, + "cuisine": "korean", + "ingredients": [ + "sugar", + "tortillas", + "salt", + "chili flakes", + "pork belly", + "ginger", + "kimchi", + "sambal ulek", + "soy sauce", + "sesame oil", + "sauce", + "dark soy sauce", + "water", + "garlic", + "toasted sesame seeds" + ] + }, + { + "id": 47856, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "heavy cream", + "ground coriander", + "chopped cilantro fresh", + "tomato paste", + "whole peeled tomatoes", + "chile de arbol", + "ghee", + "ground turmeric", + "kosher salt", + "chicken breast halves", + "cardamom pods", + "onions", + "ground cumin", + "whole milk yoghurt", + "ginger", + "garlic cloves", + "basmati rice" + ] + }, + { + "id": 44045, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "tomatoes with juice", + "sour cream", + "egg noodles", + "salt", + "onions", + "sliced black olives", + "garlic", + "ground beef", + "chili beans", + "green onions", + "liquid" + ] + }, + { + "id": 18149, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "sesame oil", + "scallions", + "Sriracha", + "rice", + "minced ginger", + "garlic", + "frozen peas", + "soy sauce", + "fresh shiitake mushrooms", + "peanut oil" + ] + }, + { + "id": 24733, + "cuisine": "chinese", + "ingredients": [ + "salt", + "toasted sesame oil", + "seeds", + "garlic cloves", + "chinese five-spice powder", + "sesame oil", + "carrots" + ] + }, + { + "id": 22300, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "garlic cloves", + "sliced green onions", + "water chestnuts, drained and chopped", + "hoisin sauce", + "creamy peanut butter", + "iceberg lettuce", + "shiitake", + "rice vinegar", + "ground turkey", + "fresh ginger", + "teriyaki sauce", + "carrots" + ] + }, + { + "id": 9634, + "cuisine": "japanese", + "ingredients": [ + "ponzu", + "sliced green onions", + "silken tofu", + "shredded nori" + ] + }, + { + "id": 18148, + "cuisine": "italian", + "ingredients": [ + "coarse salt", + "salt", + "olive oil", + "garlic cloves", + "focaccia" + ] + }, + { + "id": 18907, + "cuisine": "mexican", + "ingredients": [ + "mole sauce", + "cooked chicken", + "pico de gallo", + "corn tortillas", + "cilantro" + ] + }, + { + "id": 39255, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "shredded extra sharp cheddar cheese", + "butter", + "salsa", + "chopped cilantro fresh", + "chile powder", + "refried beans", + "jalapeno chilies", + "diced tomatoes", + "sour cream", + "black pepper", + "flour tortillas", + "shredded lettuce", + "rotisserie chicken", + "ground cumin", + "avocado", + "olive oil", + "coarse salt", + "garlic", + "onions" + ] + }, + { + "id": 15930, + "cuisine": "mexican", + "ingredients": [ + "posole", + "eggplant", + "garlic", + "onions", + "yellow squash", + "chile pepper", + "dried minced onion", + "ketchup", + "hot pepper sauce", + "salt", + "water", + "pork loin", + "carrots" + ] + }, + { + "id": 10267, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "lemon grass", + "salt", + "cucumber", + "iceberg lettuce", + "fish sauce", + "minced garlic", + "grated carrot", + "hot water", + "chopped cilantro fresh", + "soy sauce", + "flank steak", + "rice vinegar", + "beansprouts", + "pineapple slices", + "spring roll wrappers", + "pepper", + "vegetable oil", + "corn starch", + "chopped fresh mint" + ] + }, + { + "id": 44441, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "kidney beans", + "yellow bell pepper", + "rice", + "dried oregano", + "black pepper", + "bay leaves", + "salt", + "celery", + "andouille sausage", + "cayenne", + "garlic", + "red bell pepper", + "allspice", + "clove", + "olive oil", + "diced tomatoes", + "hot sauce", + "onions" + ] + }, + { + "id": 46690, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "extra-virgin olive oil", + "mayonaise", + "buttermilk", + "lemon juice", + "dijon mustard", + "garlic cloves", + "kosher salt", + "scallions" + ] + }, + { + "id": 29871, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "zucchini", + "ground almonds", + "couscous", + "ground cumin", + "cherry tomatoes", + "butternut squash", + "garlic cloves", + "onions", + "tomatoes", + "olive oil", + "apricot halves", + "leg of lamb", + "saffron", + "lamb stock", + "harissa paste", + "ground coriander", + "fresh parsley" + ] + }, + { + "id": 38562, + "cuisine": "mexican", + "ingredients": [ + "water", + "salsa", + "baby spinach leaves", + "low sodium tomato sauce", + "boneless skinless chicken breast halves", + "Mexican cheese blend", + "taco seasoning", + "black beans", + "non-fat sour cream" + ] + }, + { + "id": 32862, + "cuisine": "mexican", + "ingredients": [ + "Knorr Onion Minicubes", + "boneless sirloin steak", + "vegetable oil", + "knorr garlic minicub", + "lime juice", + "corn tortillas" + ] + }, + { + "id": 16202, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "chili sauce", + "sesame seeds", + "garlic", + "safflower oil", + "linguine", + "sugar", + "green onions", + "rice vinegar" + ] + }, + { + "id": 34562, + "cuisine": "british", + "ingredients": [ + "sugar", + "large eggs", + "milk", + "salt", + "dried currants", + "baking powder", + "unsalted margarine", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 37808, + "cuisine": "indian", + "ingredients": [ + "cooking spray", + "paprika", + "fresh mint", + "chicken legs", + "chili powder", + "salt", + "ground turmeric", + "ground red pepper", + "garlic", + "fresh lime juice", + "fresh ginger", + "fat free greek yogurt", + "cucumber", + "ground cumin" + ] + }, + { + "id": 714, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "vegetable oil", + "salt", + "ground white pepper", + "iceberg lettuce", + "sirloin", + "chili", + "garlic", + "roasted peanuts", + "beansprouts", + "fish sauce", + "lemongrass", + "rice vermicelli", + "rice vinegar", + "cucumber", + "sugar", + "mint leaves", + "purple onion", + "scallions", + "fresh lime juice" + ] + }, + { + "id": 6167, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "salt", + "garlic cloves", + "dried oregano", + "flour tortillas", + "chopped onion", + "fresh lime juice", + "ground black pepper", + "salsa", + "pork shoulder boston butt", + "ground cumin", + "lime wedges", + "orange juice", + "chopped cilantro fresh" + ] + }, + { + "id": 5502, + "cuisine": "italian", + "ingredients": [ + "parsley sprigs", + "prosciutto", + "dried parsley", + "olive oil", + "dry white wine", + "fat free less sodium chicken broth", + "ground black pepper", + "plum tomatoes", + "arborio rice", + "fresh parmesan cheese", + "chopped onion" + ] + }, + { + "id": 21643, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "tortilla chips", + "monterey jack", + "guacamole", + "sour cream", + "jalapeno chilies", + "sharp cheddar cheese", + "sliced green onions", + "black beans", + "salsa", + "plum tomatoes" + ] + }, + { + "id": 38140, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "ground beef", + "frozen corn", + "purple onion", + "taco sauce", + "corn tortillas" + ] + }, + { + "id": 2412, + "cuisine": "mexican", + "ingredients": [ + "canned low sodium chicken broth", + "lime juice", + "garlic", + "boneless, skinless chicken breast", + "cooking oil", + "corn tortillas", + "chiles", + "ground black pepper", + "salt", + "avocado", + "water", + "Tabasco Pepper Sauce", + "onions" + ] + }, + { + "id": 32481, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless skinless chicken breasts", + "button mushrooms", + "purple onion", + "olive oil", + "butter", + "linguine", + "red bell pepper", + "milk", + "cajun seasoning", + "yellow bell pepper", + "shredded parmesan cheese", + "flour", + "heavy cream", + "garlic", + "fresh parsley" + ] + }, + { + "id": 28517, + "cuisine": "indian", + "ingredients": [ + "clove", + "poppy seeds", + "garlic", + "cumin seed", + "canola oil", + "kosher salt", + "chile de arbol", + "yellow onion", + "jaggery", + "black peppercorns", + "ginger", + "white wine vinegar", + "black mustard seeds", + "boneless pork shoulder", + "cinnamon", + "thai chile", + "tamarind paste", + "ground turmeric" + ] + }, + { + "id": 10708, + "cuisine": "indian", + "ingredients": [ + "fresh spinach", + "vegetable oil", + "long grain white rice", + "fresh ginger root", + "salt", + "water", + "yellow lentils", + "jaggery", + "chile pepper", + "carrots" + ] + }, + { + "id": 44239, + "cuisine": "french", + "ingredients": [ + "black pepper", + "chopped celery", + "carrots", + "dried tarragon leaves", + "finely chopped onion", + "goat cheese", + "cooked rice", + "fat free less sodium chicken broth", + "salt", + "red bell pepper", + "boneless chicken skinless thigh", + "butter", + "garlic cloves" + ] + }, + { + "id": 20909, + "cuisine": "british", + "ingredients": [ + "butter", + "stilton cheese", + "russet potatoes", + "low salt chicken broth" + ] + }, + { + "id": 14106, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "whole milk", + "mozzarella cheese", + "grated parmesan cheese", + "fresh rosemary" + ] + }, + { + "id": 25881, + "cuisine": "italian", + "ingredients": [ + "salad", + "cherry tomatoes", + "worcestershire sauce", + "croutons", + "romano cheese", + "chicken breasts", + "anchovy paste", + "ground cumin", + "vegetable oil cooking spray", + "low-fat buttermilk", + "dry mustard", + "lemon juice", + "pepper", + "chili powder", + "garlic cloves" + ] + }, + { + "id": 13232, + "cuisine": "italian", + "ingredients": [ + "pasta", + "salt and ground black pepper", + "garlic", + "olive oil", + "diced tomatoes", + "onions", + "sweet italian pork sausage", + "red wine", + "fresh parsley", + "green bell pepper", + "marinara sauce", + "red bell pepper" + ] + }, + { + "id": 6098, + "cuisine": "french", + "ingredients": [ + "granulated sugar", + "milk", + "flour", + "melted butter", + "egg whites", + "unsalted butter", + "salt" + ] + }, + { + "id": 38183, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "maple syrup", + "juice", + "fettucine", + "extra firm tofu", + "crushed red pepper flakes", + "rice vinegar", + "soy sauce", + "serrano peppers", + "garlic", + "creamy peanut butter", + "liquid smoke", + "fresh ginger", + "sea salt", + "cilantro leaves" + ] + }, + { + "id": 14726, + "cuisine": "southern_us", + "ingredients": [ + "parmesan cheese", + "salt", + "water", + "tomato salsa", + "black pepper", + "cooking spray", + "grits", + "garlic powder", + "extra-virgin olive oil" + ] + }, + { + "id": 13002, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "chickpeas", + "ground cloves", + "sea salt", + "ground ginger", + "cinnamon", + "allspice", + "curry powder", + "cayenne pepper" + ] + }, + { + "id": 17580, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "jalapeno chilies", + "cilantro", + "tamarind concentrate", + "honey roasted peanuts", + "rice noodles", + "rice vinegar", + "eggs", + "pepper", + "vegetable oil", + "garlic cloves", + "sugar", + "shallots", + "salt", + "medium shrimp" + ] + }, + { + "id": 39415, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "fennel bulb", + "salt", + "feta cheese crumbles", + "greek seasoning", + "pitas", + "non-fat sour cream", + "pimento stuffed olives", + "ground lamb", + "fat free yogurt", + "ground turkey breast", + "purple onion", + "garlic cloves", + "honey", + "cooking spray", + "grated lemon zest", + "chopped fresh mint" + ] + }, + { + "id": 39955, + "cuisine": "japanese", + "ingredients": [ + "red chili powder", + "beef", + "mutton", + "ghee", + "spinach", + "teas", + "cumin seed", + "cracked wheat", + "spices", + "oil", + "garlic paste", + "yoghurt", + "salt", + "onions" + ] + }, + { + "id": 6439, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "water", + "sea salt", + "ground coriander", + "tomatoes", + "guajillo chiles", + "ground black pepper", + "pineapple juice", + "chipotle chile", + "sweet onion", + "garlic", + "ancho chile pepper", + "chiles", + "cider vinegar", + "mango juice", + "mustard powder" + ] + }, + { + "id": 30645, + "cuisine": "french", + "ingredients": [ + "milk", + "cracked black pepper", + "xanthan gum", + "unsalted butter", + "gruyere cheese", + "corn starch", + "ancho chili ground pepper", + "coarse salt", + "white rice flour", + "large eggs", + "salt" + ] + }, + { + "id": 1188, + "cuisine": "french", + "ingredients": [ + "green bell pepper", + "brie cheese", + "heavy cream", + "celery", + "butter", + "red bell pepper", + "chicken stock", + "all-purpose flour", + "onions" + ] + }, + { + "id": 26576, + "cuisine": "french", + "ingredients": [ + "chambord", + "red food coloring", + "granulated sugar", + "water", + "fresh lemon juice", + "vodka", + "pineapple juice" + ] + }, + { + "id": 10540, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "salsa", + "garlic cloves", + "ground cumin", + "chicken stock", + "flour tortillas", + "chees fresco queso", + "cayenne pepper", + "iceberg lettuce", + "avocado", + "chopped tomatoes", + "cilantro", + "yellow onion", + "chopped cilantro fresh", + "tomatoes", + "cooked chicken", + "salt", + "fresh oregano", + "canola oil" + ] + }, + { + "id": 37645, + "cuisine": "mexican", + "ingredients": [ + "mild salsa", + "chili powder", + "raisins", + "carrots", + "pepper jack", + "lean ground beef", + "garlic", + "onions", + "flour", + "cinnamon", + "toasted walnuts", + "oregano", + "eggs", + "half & half", + "poblano", + "shredded cheese", + "ground cumin" + ] + }, + { + "id": 34193, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "curry", + "mustard seeds", + "vegetable oil", + "salt", + "ginger paste", + "potatoes", + "purple onion", + "ground turmeric", + "tomatoes", + "peas", + "green chilies" + ] + }, + { + "id": 36286, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salt", + "pepper", + "chopped cilantro", + "boneless skinless chicken breasts", + "monterey jack", + "pasta sauce", + "corn tortillas" + ] + }, + { + "id": 29721, + "cuisine": "southern_us", + "ingredients": [ + "sweet and sour mix", + "triple sec", + "ice cubes", + "whiskey", + "lemon-lime soda" + ] + }, + { + "id": 39141, + "cuisine": "mexican", + "ingredients": [ + "scallions", + "monterey jack", + "jalapeno chilies", + "low fat tortilla chip", + "black beans", + "chopped cilantro fresh", + "lime wedges", + "plum tomatoes" + ] + }, + { + "id": 18177, + "cuisine": "chinese", + "ingredients": [ + "vegetables", + "rice vinegar", + "green onions", + "hoisin sauce", + "minced garlic", + "chicken breasts" + ] + }, + { + "id": 23339, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "red pepper flakes", + "peanut oil", + "fresh pineapple", + "spring roll wrappers", + "water", + "garlic", + "corn starch", + "brown sugar", + "green onions", + "pineapple juice", + "toasted sesame seeds", + "cider vinegar", + "ginger", + "spam" + ] + }, + { + "id": 20820, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "lemon juice", + "sugar" + ] + }, + { + "id": 44730, + "cuisine": "italian", + "ingredients": [ + "watercress", + "mayonaise", + "walnuts", + "garlic", + "grated parmesan cheese" + ] + }, + { + "id": 19636, + "cuisine": "french", + "ingredients": [ + "brandy", + "canned beef broth", + "all-purpose flour", + "onions", + "red potato", + "mushrooms", + "beef stew meat", + "Burgundy wine", + "celery ribs", + "bay leaves", + "large garlic cloves", + "thyme sprigs", + "ground nutmeg", + "butter", + "carrots", + "dried oregano" + ] + }, + { + "id": 14779, + "cuisine": "korean", + "ingredients": [ + "green onions", + "water", + "soybean paste", + "sugar", + "vegetable oil", + "flour" + ] + }, + { + "id": 2048, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "dried thyme", + "cooking spray", + "yellow onion", + "fresh lime juice", + "dried oregano", + "tomato paste", + "water", + "ground black pepper", + "littleneck clams", + "tequila", + "ground turmeric", + "kosher salt", + "sea scallops", + "diced tomatoes", + "red bell pepper", + "chopped cilantro fresh", + "fat free less sodium chicken broth", + "olive oil", + "green onions", + "garlic cloves", + "medium shrimp", + "ground cumin" + ] + }, + { + "id": 35459, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "garlic", + "lime", + "kosher salt", + "chopped cilantro", + "serrano peppers" + ] + }, + { + "id": 31161, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "yellow bell pepper", + "mushrooms", + "lemon pepper", + "olive oil", + "garlic", + "green onions", + "onions" + ] + }, + { + "id": 26639, + "cuisine": "greek", + "ingredients": [ + "eggplant", + "italian plum tomatoes", + "cinnamon", + "dried oregano", + "minced garlic", + "unsalted butter", + "baking potatoes", + "onions", + "freshly grated parmesan", + "dried mint flakes", + "ground allspice", + "ground lamb", + "tomato paste", + "feta cheese", + "vegetable oil", + "juice" + ] + }, + { + "id": 4799, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "garlic", + "onions", + "fresh cilantro", + "brown lentils", + "curry powder", + "salt", + "olive oil", + "carrots" + ] + }, + { + "id": 22745, + "cuisine": "british", + "ingredients": [ + "large eggs", + "sugar", + "vanilla", + "challa", + "half & half", + "unsalted butter", + "salt" + ] + }, + { + "id": 3464, + "cuisine": "italian", + "ingredients": [ + "fresh lemon juice", + "linguine", + "large garlic cloves", + "fresh parsley", + "butter", + "shrimp" + ] + }, + { + "id": 18741, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "boneless pork loin", + "canola oil", + "white vinegar", + "pickling liquid", + "kimchi", + "mung beans", + "scallions", + "soy sauce", + "garlic", + "mung bean sprouts" + ] + }, + { + "id": 23531, + "cuisine": "mexican", + "ingredients": [ + "seedless cucumber", + "scallions", + "avocado", + "salt", + "lime", + "chopped cilantro", + "mayonaise", + "hot sauce" + ] + }, + { + "id": 19141, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "garlic", + "lime juice", + "oyster sauce", + "black pepper", + "salt", + "brown sugar", + "bouillon cube", + "chicken thighs" + ] + }, + { + "id": 8389, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "cream cheese", + "salsa", + "shredded cheddar cheese" + ] + }, + { + "id": 42314, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "onion powder", + "sour cream", + "shredded cheddar cheese", + "ranch dressing", + "salt", + "ground beef", + "beans", + "green onions", + "black olives", + "rotel tomatoes", + "garlic powder", + "chili powder", + "yellow onion" + ] + }, + { + "id": 1955, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "palm sugar", + "vegetable oil", + "fish sauce", + "Vietnamese coriander", + "green onions", + "rice vinegar", + "pork", + "kecap manis", + "seedless watermelon", + "brown sugar", + "lime juice", + "shallots", + "garlic cloves" + ] + }, + { + "id": 8950, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "lemon juice", + "olive oil", + "salt", + "parmesan cheese", + "garlic cloves", + "fresh basil", + "zucchini" + ] + }, + { + "id": 37416, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "rice noodles", + "shrimp", + "soy sauce", + "garlic", + "cabbage", + "chicken broth", + "boneless chicken breast", + "carrots", + "pork", + "vegetable oil", + "onions" + ] + }, + { + "id": 38986, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "water", + "lettuce leaves", + "beer", + "chili garlic paste", + "perilla", + "salad", + "sugar", + "mung beans", + "cilantro", + "rice flour", + "coconut milk", + "mint", + "pork", + "sliced cucumber", + "salt", + "shrimp", + "onions", + "tumeric", + "lime juice", + "soda", + "garlic cloves", + "beansprouts", + "sliced green onions" + ] + }, + { + "id": 23888, + "cuisine": "italian", + "ingredients": [ + "mushroom soup", + "yellow onion", + "tomato paste", + "bell pepper", + "ground beef", + "italian sausage", + "tomato sauce", + "tomato soup", + "tomatoes", + "garlic" + ] + }, + { + "id": 35739, + "cuisine": "irish", + "ingredients": [ + "sauerkraut", + "mayonaise", + "shredded swiss cheese", + "rye bread", + "shredded cheddar cheese", + "corned beef" + ] + }, + { + "id": 34743, + "cuisine": "thai", + "ingredients": [ + "sweet chili sauce", + "boneless chicken breast", + "eggs", + "milk", + "vegetable oil", + "pepper", + "flour", + "red chili powder", + "garlic powder", + "salt" + ] + }, + { + "id": 25108, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "salt", + "dried oregano", + "water", + "cajun seasoning", + "garlic cloves", + "andouille sausage links", + "red beans", + "long-grain rice", + "olive oil", + "diced tomatoes", + "onions" + ] + }, + { + "id": 38336, + "cuisine": "italian", + "ingredients": [ + "lacinato kale", + "parmigiano reggiano cheese", + "Italian turkey sausage", + "rigatoni", + "whole wheat flour", + "1% low-fat milk", + "olive oil cooking spray", + "sun-dried tomatoes", + "sea salt", + "low moisture mozzarella", + "ground black pepper", + "garlic", + "organic unsalted butter" + ] + }, + { + "id": 14728, + "cuisine": "british", + "ingredients": [ + "dijon mustard", + "salt", + "pepper", + "extra-virgin olive oil", + "panko breadcrumbs", + "mayonaise", + "sweet potatoes", + "fresh lemon juice", + "eggs", + "flour", + "tilapia" + ] + }, + { + "id": 46575, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "flour for dusting", + "pizza doughs", + "dried oregano", + "salt", + "plum tomatoes", + "shredded mozzarella cheese" + ] + }, + { + "id": 36293, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "fresh orange juice", + "red bell pepper", + "green bell pepper", + "cooking spray", + "garlic cloves", + "diced onions", + "jalapeno chilies", + "salt", + "grated orange", + "olive oil", + "shuck corn", + "fresh lemon juice" + ] + }, + { + "id": 13751, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "water chestnuts", + "purple onion", + "serrano chile", + "fat free less sodium chicken broth", + "peeled fresh ginger", + "fresh lime juice", + "sugar", + "lettuce leaves", + "salt", + "sliced green onions", + "peanuts", + "boneless skinless chicken breasts", + "chopped cilantro fresh" + ] + }, + { + "id": 20017, + "cuisine": "vietnamese", + "ingredients": [ + "chili paste", + "chopped fresh mint", + "Thai fish sauce", + "carrots", + "chopped cilantro fresh", + "sugar", + "fresh lime juice" + ] + }, + { + "id": 1421, + "cuisine": "southern_us", + "ingredients": [ + "great northern beans", + "ground black pepper", + "garlic cloves", + "water", + "sea salt", + "tomatoes", + "olive oil", + "dried pinto beans", + "collard greens", + "leeks", + "dried oregano" + ] + }, + { + "id": 3612, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "key lime", + "shredded cheddar cheese" + ] + }, + { + "id": 25667, + "cuisine": "italian", + "ingredients": [ + "chopped tomatoes", + "salad dressing", + "fresh basil", + "salt", + "chees fresh mozzarella", + "sliced green onions", + "ground black pepper", + "crackers" + ] + }, + { + "id": 9389, + "cuisine": "southern_us", + "ingredients": [ + "water", + "buttermilk", + "ground ginger", + "baking powder", + "all-purpose flour", + "baking soda", + "salt", + "shortening", + "dried apple", + "white sugar" + ] + }, + { + "id": 48769, + "cuisine": "mexican", + "ingredients": [ + "dried apricot", + "cilantro sprigs", + "pineapple", + "jicama", + "purple onion", + "habanero" + ] + }, + { + "id": 28801, + "cuisine": "cajun_creole", + "ingredients": [ + "creole seasoning", + "lemon", + "chopped parsley", + "minced garlic", + "red bell pepper", + "grapeseed oil", + "large shrimp" + ] + }, + { + "id": 1609, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "cilantro leaves", + "carrots", + "red lentils", + "crushed tomatoes", + "ground coriander", + "kosher salt", + "chickpeas", + "ground cumin", + "ground ginger", + "lemon", + "garlic cloves" + ] + }, + { + "id": 31891, + "cuisine": "southern_us", + "ingredients": [ + "parmesan cheese", + "condensed chicken broth", + "pork sausages", + "celery ribs", + "cooking spray", + "fresh parsley", + "water", + "butter", + "onions", + "large eggs", + "garlic cloves", + "grits" + ] + }, + { + "id": 34223, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "peeled fresh ginger", + "water", + "ice cubes", + "pineapple" + ] + }, + { + "id": 45055, + "cuisine": "indian", + "ingredients": [ + "milk", + "ground cardamom", + "butter", + "powdered milk", + "saffron", + "condensed milk" + ] + }, + { + "id": 23690, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "lasagna noodles", + "salt", + "carrots", + "fresh basil", + "small curd cottage cheese", + "grated parmesan cheese", + "cream cheese", + "boiling water", + "chicken bouillon", + "ground black pepper", + "butter", + "shredded mozzarella cheese", + "milk", + "zucchini", + "all-purpose flour", + "onions" + ] + }, + { + "id": 47187, + "cuisine": "mexican", + "ingredients": [ + "cayenne", + "english cucumber", + "chili powder", + "coarse salt", + "jicama", + "fresh lime juice" + ] + }, + { + "id": 30901, + "cuisine": "indian", + "ingredients": [ + "poha", + "oil", + "whole wheat flour", + "salt", + "ground turmeric", + "water", + "chili powder", + "jeera", + "garam masala", + "cilantro leaves" + ] + }, + { + "id": 33836, + "cuisine": "filipino", + "ingredients": [ + "ketchup", + "hot dogs", + "carrots", + "noodles", + "pasta sauce", + "water", + "salt", + "ground beef", + "pepper", + "grating cheese", + "bay leaf", + "sugar", + "olive oil", + "garlic cloves", + "onions" + ] + }, + { + "id": 1606, + "cuisine": "italian", + "ingredients": [ + "sugar", + "dry red wine", + "dri leav rosemari", + "salt", + "minced garlic", + "extra-virgin olive oil", + "black peppercorns", + "balsamic vinegar", + "fresh lime juice" + ] + }, + { + "id": 40966, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "sliced black olives", + "scallions", + "corn tortillas", + "lean ground turkey", + "frozen corn kernels", + "red bell pepper", + "ground cumin", + "green chile", + "mexican style 4 cheese blend", + "enchilada sauce", + "onions", + "olive oil", + "diced tomatoes with garlic and onion", + "sour cream" + ] + }, + { + "id": 28020, + "cuisine": "mexican", + "ingredients": [ + "ground pepper", + "taco seasoning", + "fresh cilantro", + "boneless skinless chicken breasts", + "corn", + "green chilies", + "shredded cheddar cheese", + "green onions", + "enchilada sauce" + ] + }, + { + "id": 3512, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "piecrust", + "creole seasoning", + "onions", + "green bell pepper", + "cheese spread", + "garlic cloves", + "tomato paste", + "water", + "freshly ground pepper", + "plum tomatoes", + "andouille sausage", + "salt", + "shrimp" + ] + }, + { + "id": 21534, + "cuisine": "mexican", + "ingredients": [ + "low sodium worcestershire sauce", + "olive oil", + "salt", + "baked tortilla chips", + "oregano", + "pepper", + "green onions", + "green pepper", + "thyme", + "vegetable oil cooking spray", + "black-eyed peas", + "hot sauce", + "long-grain rice", + "green chile", + "minced garlic", + "stewed tomatoes", + "chopped onion", + "fresh parsley" + ] + }, + { + "id": 9672, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "ground black pepper", + "sprinkles", + "fettucine", + "fresh parmesan cheese", + "shallots", + "boiling water", + "olive oil", + "dry white wine", + "salt", + "chicken breast tenders", + "cooking spray", + "whipping cream" + ] + }, + { + "id": 2367, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "crushed tomatoes", + "yoghurt", + "salt", + "canola oil", + "water", + "fresh ginger", + "garlic", + "ground cardamom", + "pepper", + "honey", + "cinnamon", + "ground coriander", + "boneless chicken skinless thigh", + "curry powder", + "garam masala", + "purple onion", + "onions" + ] + }, + { + "id": 3431, + "cuisine": "vietnamese", + "ingredients": [ + "prawns", + "vegetable oil", + "coconut cream", + "chillies", + "lettuce leaves", + "cilantro leaves", + "rice flour", + "mint leaves", + "sprouts", + "shiso leaves", + "ground turmeric", + "spring onions", + "jam", + "carrots" + ] + }, + { + "id": 25280, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "ghee", + "cardamom", + "carrots", + "milk", + "cashew nuts" + ] + }, + { + "id": 37971, + "cuisine": "southern_us", + "ingredients": [ + "water", + "bourbon whiskey", + "cake flour", + "confectioners sugar", + "light brown sugar", + "large eggs", + "cinnamon", + "grated nutmeg", + "pure vanilla extract", + "baking soda", + "vegetable oil", + "salt", + "pecans", + "baking powder", + "heavy cream", + "black mission figs" + ] + }, + { + "id": 3697, + "cuisine": "mexican", + "ingredients": [ + "shortening", + "semisweet chocolate", + "vanilla extract", + "firmly packed light brown sugar", + "milk", + "butter", + "powdered sugar", + "water", + "vegetable oil", + "ground cinnamon", + "sliced almonds", + "large eggs", + "devil's food cake mix" + ] + }, + { + "id": 28970, + "cuisine": "cajun_creole", + "ingredients": [ + "light mayonnaise", + "spinach tortilla", + "canned black beans", + "vegetable oil", + "dip mix", + "cilantro leaves", + "chicken breasts", + "mango" + ] + }, + { + "id": 6584, + "cuisine": "irish", + "ingredients": [ + "eggs", + "vegetable oil", + "ground pepper", + "canadian bacon", + "cheddar cheese", + "salt", + "diced onions", + "potatoes", + "chopped parsley" + ] + }, + { + "id": 1059, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "iceberg lettuce", + "tomatoes", + "ground beef", + "taco seasoning", + "french dressing", + "doritos" + ] + }, + { + "id": 47905, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "garlic", + "corn starch", + "chopped cilantro fresh", + "cold water", + "ground red pepper", + "black mustard seeds", + "medium shrimp", + "tomato paste", + "vegetable oil", + "fresh lemon juice", + "white sugar", + "jalapeno chilies", + "salt", + "coconut milk", + "ground cumin" + ] + }, + { + "id": 2428, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "shallots", + "small red potato", + "leeks", + "sea salt", + "carrots", + "unsalted butter", + "heavy cream", + "lemon juice", + "olive oil", + "dry white wine", + "whole chicken", + "flat leaf parsley" + ] + }, + { + "id": 10684, + "cuisine": "greek", + "ingredients": [ + "artichokes", + "lemon", + "fresh dill", + "salt", + "extra-virgin olive oil" + ] + }, + { + "id": 33605, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large egg yolks", + "marsala wine", + "strawberries" + ] + }, + { + "id": 30283, + "cuisine": "chinese", + "ingredients": [ + "sesame", + "rooster", + "baking powder", + "all-purpose flour", + "oil", + "chicken broth", + "sugar", + "boneless chicken breast", + "garlic", + "orange juice", + "orange zest", + "chinese rice wine", + "water", + "apple cider vinegar", + "sauce", + "corn starch", + "eggs", + "soy sauce", + "cooking oil", + "salt", + "scallions" + ] + }, + { + "id": 24286, + "cuisine": "southern_us", + "ingredients": [ + "orange", + "butter", + "white wine vinegar", + "light brown sugar", + "ground black pepper", + "apples", + "orange zest", + "Belgian endive", + "olive oil", + "sea salt", + "mixed greens", + "pecan halves", + "dijon mustard", + "extra-virgin olive oil" + ] + }, + { + "id": 6461, + "cuisine": "filipino", + "ingredients": [ + "butter", + "bone-in pork chops", + "pepper", + "all-purpose flour", + "black pepper", + "salt", + "canola oil", + "seasoning salt", + "cayenne pepper" + ] + }, + { + "id": 1812, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "flour", + "vanilla", + "brown sugar", + "cinnamon", + "pecans", + "sweet potatoes", + "margarine", + "sugar", + "sweetened coconut flakes" + ] + }, + { + "id": 10063, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "chopped onion", + "water", + "diced tomatoes", + "ground beef", + "black beans", + "flour tortillas", + "taco seasoning", + "refried beans", + "green pepper" + ] + }, + { + "id": 9003, + "cuisine": "italian", + "ingredients": [ + "milk", + "all-purpose flour", + "unsweetened cocoa powder", + "ground cinnamon", + "ground nutmeg", + "white sugar", + "ground cloves", + "butter", + "semi-sweet chocolate morsels", + "baking soda", + "chopped walnuts" + ] + }, + { + "id": 46689, + "cuisine": "mexican", + "ingredients": [ + "vanilla extract", + "white sugar", + "large eggs", + "cream cheese", + "evaporated milk", + "cream of coconut", + "sweetened condensed milk", + "rum", + "coconut milk" + ] + }, + { + "id": 7139, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "garlic", + "fresh parsley", + "radicchio leaves", + "ricotta cheese", + "mixed greens", + "grated lemon peel", + "fresh corn", + "chopped fresh chives", + "capellini", + "fresh basil leaves", + "fresh dill", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 40765, + "cuisine": "mexican", + "ingredients": [ + "orange", + "red pepper", + "onions", + "chicken broth", + "jalapeno chilies", + "garlic", + "lime", + "paprika", + "cumin", + "pepper", + "boneless skinless chicken breasts", + "green pepper" + ] + }, + { + "id": 15201, + "cuisine": "japanese", + "ingredients": [ + "silver", + "almonds", + "saffron", + "water", + "carrots", + "sugar", + "cardamom", + "evaporated milk", + "ghee" + ] + }, + { + "id": 27081, + "cuisine": "chinese", + "ingredients": [ + "water", + "salt", + "soy sauce", + "sesame oil", + "rice", + "green onions", + "bone-in chicken breasts", + "pepper", + "ginger" + ] + }, + { + "id": 3204, + "cuisine": "irish", + "ingredients": [ + "sugar", + "baking powder", + "unsalted butter", + "cake flour", + "dried currants", + "heavy cream", + "egg yolks", + "salt" + ] + }, + { + "id": 21880, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "unsalted butter", + "white cornmeal", + "baking soda", + "fine sea salt", + "large eggs" + ] + }, + { + "id": 34636, + "cuisine": "mexican", + "ingredients": [ + "bell pepper", + "yellow onion", + "shredded Monterey Jack cheese", + "lean ground beef", + "enchilada sauce", + "green onions", + "rice", + "pepper", + "salt", + "sour cream" + ] + }, + { + "id": 24625, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "salt", + "pepper", + "ricotta cheese", + "shredded cheddar cheese", + "garlic", + "pasta sauce", + "lean ground beef", + "shredded mozzarella cheese" + ] + }, + { + "id": 33192, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "extra-virgin olive oil", + "green onions", + "campanelle", + "large garlic cloves", + "arugula", + "cherry tomatoes", + "feta cheese crumbles" + ] + }, + { + "id": 9803, + "cuisine": "indian", + "ingredients": [ + "flour", + "warm water", + "chapati flour" + ] + }, + { + "id": 5907, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "olive oil", + "boneless skinless chicken breasts", + "salt", + "ground cumin", + "shredded cheddar cheese", + "garlic powder", + "chili powder", + "red enchilada sauce", + "crushed tomatoes", + "tortillas", + "paprika", + "onions", + "corn kernels", + "flour", + "garlic", + "dried leaves oregano" + ] + }, + { + "id": 36501, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "dried oregano", + "garlic", + "ground black pepper", + "kosher salt", + "lemon juice" + ] + }, + { + "id": 38362, + "cuisine": "russian", + "ingredients": [ + "lean ground beef", + "onions", + "eggs", + "salt", + "cold water", + "vegetable oil", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 29866, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "fresh oregano", + "fresh rosemary", + "fresh orange juice", + "olives", + "crushed red pepper flakes", + "fresh parsley", + "olive oil", + "garlic", + "grated orange" + ] + }, + { + "id": 32312, + "cuisine": "southern_us", + "ingredients": [ + "light rum", + "watermelon", + "sugar", + "fresh lime juice", + "strawberries" + ] + }, + { + "id": 26936, + "cuisine": "greek", + "ingredients": [ + "garlic", + "fresh mint", + "plain low fat greek yogurt", + "english cucumber", + "mint", + "salt", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 1750, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "chicken stock", + "black-eyed peas", + "collard greens", + "white wine vinegar", + "spanish onion", + "chipotles in adobo" + ] + }, + { + "id": 1934, + "cuisine": "vietnamese", + "ingredients": [ + "dried basil", + "orzo", + "reduced sodium chicken broth", + "butter", + "uncook medium shrimp, peel and devein", + "broccoli florets", + "salt", + "pepper", + "diced tomatoes" + ] + }, + { + "id": 18797, + "cuisine": "british", + "ingredients": [ + "low-fat sour cream", + "strawberries", + "nonfat yogurt", + "light brown sugar", + "vanilla extract", + "sugar", + "confectioners sugar" + ] + }, + { + "id": 28007, + "cuisine": "french", + "ingredients": [ + "chopped fresh chives", + "garlic cloves", + "zucchini", + "yukon gold potatoes", + "leeks", + "low salt chicken broth", + "half & half", + "butter" + ] + }, + { + "id": 30215, + "cuisine": "french", + "ingredients": [ + "eggs", + "kalamata", + "ground black pepper", + "salad dressing", + "salad greens", + "small red potato", + "fresh green bean" + ] + }, + { + "id": 25502, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "fresh basil leaves", + "jack cheese", + "basil", + "parmesan cheese", + "polenta", + "dried porcini mushrooms", + "dry red wine" + ] + }, + { + "id": 14893, + "cuisine": "korean", + "ingredients": [ + "pinenuts", + "black sesame seeds", + "pumpkin", + "hot water", + "water", + "salt", + "brown sugar", + "red beans", + "sweet rice flour" + ] + }, + { + "id": 7194, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "chili powder", + "salt", + "cumin seed", + "onions", + "masala", + "clove", + "seeds", + "garlic", + "curds", + "bay leaf", + "boiling potatoes", + "garbanzo beans", + "ginger", + "all-purpose flour", + "flour for dusting", + "peppercorns", + "whole wheat flour", + "cinnamon", + "cilantro leaves", + "oil", + "coriander" + ] + }, + { + "id": 15692, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "chickpeas", + "couscous", + "mango chutney", + "feta cheese crumbles", + "ground turmeric", + "olive oil", + "garlic cloves", + "chopped fresh mint", + "vegetable broth", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 38607, + "cuisine": "greek", + "ingredients": [ + "water", + "green onions", + "fresh parsley", + "fresh dill", + "cooking spray", + "yellow onion", + "ground lamb", + "pinenuts", + "golden raisins", + "long-grain rice", + "grape leaves", + "ground black pepper", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 24692, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "balsamic vinegar", + "mozzarella cheese", + "fresh basil leaves", + "kosher salt", + "extra-virgin olive oil", + "pepper" + ] + }, + { + "id": 10225, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "dried guajillo chiles", + "large garlic cloves", + "large shrimp", + "olive oil", + "onions", + "salt" + ] + }, + { + "id": 24612, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "garlic", + "serrano chile", + "water", + "ice water", + "all-purpose flour", + "Mexican oregano", + "yellow mustard", + "fresh lime juice", + "white corn tortillas", + "vegetable oil", + "fine sea salt" + ] + }, + { + "id": 24757, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "chopped onion", + "pepper", + "salt", + "cooked rice", + "green onions", + "ham", + "water", + "hot sauce" + ] + }, + { + "id": 12943, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "large eggs", + "italian seasoning", + "finely chopped onion", + "carrots", + "panko", + "sea salt", + "store bought low sodium chicken broth", + "zucchini", + "ground turkey" + ] + }, + { + "id": 33099, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "butter", + "grated parmesan cheese", + "artichokes", + "dry white wine", + "low salt chicken broth", + "finely chopped onion", + "extra-virgin olive oil" + ] + }, + { + "id": 12685, + "cuisine": "mexican", + "ingredients": [ + "onions", + "boneless skinless chicken breast halves", + "green bell pepper, slice" + ] + }, + { + "id": 267, + "cuisine": "vietnamese", + "ingredients": [ + "clove", + "water", + "low sodium chicken broth", + "ginger", + "beef broth", + "sugar", + "shiitake", + "flank steak", + "garlic", + "snow peas", + "soy sauce", + "thai basil", + "rice noodles", + "cilantro leaves", + "canola oil", + "fish sauce", + "lime", + "green onions", + "star anise", + "onions" + ] + }, + { + "id": 47031, + "cuisine": "italian", + "ingredients": [ + "great northern beans", + "olive oil", + "zucchini", + "chopped onion", + "water", + "fennel", + "asiago", + "carrots", + "tomato paste", + "dried basil", + "ground black pepper", + "acorn squash", + "dried oregano", + "fat free less sodium chicken broth", + "swiss chard", + "ditalini", + "garlic cloves" + ] + }, + { + "id": 47270, + "cuisine": "indian", + "ingredients": [ + "cream", + "butter", + "diced tomatoes in juice", + "ground ginger", + "minced onion", + "salt", + "whole milk yoghurt", + "large garlic cloves", + "masala", + "tomato paste", + "boneless skinless chicken breasts", + "lemon juice" + ] + }, + { + "id": 22871, + "cuisine": "moroccan", + "ingredients": [ + "clear honey", + "ground cumin", + "olive oil", + "chickpeas", + "fresh coriander", + "purple onion", + "eggplant", + "lemon juice" + ] + }, + { + "id": 3437, + "cuisine": "cajun_creole", + "ingredients": [ + "corn mix muffin", + "peanut oil", + "creole mustard", + "buttermilk", + "large eggs", + "andouille sausage", + "creole seasoning" + ] + }, + { + "id": 23792, + "cuisine": "mexican", + "ingredients": [ + "diced green chilies", + "butter", + "shredded mozzarella cheese", + "parmesan cheese", + "green onions", + "cream cheese", + "fresh parsley", + "salt and ground black pepper", + "seafood seasoning", + "halibut", + "sour cream", + "mayonaise", + "flour tortillas", + "heavy cream", + "lemon juice" + ] + }, + { + "id": 31776, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "granulated sugar", + "butter", + "all-purpose flour", + "light brown sugar", + "baking soda", + "graham cracker crumbs", + "vanilla extract", + "semi-sweet chocolate morsels", + "marshmallows", + "crystallized ginger", + "baking powder", + "salt", + "shortening", + "large eggs", + "sea salt", + "sour cream" + ] + }, + { + "id": 17149, + "cuisine": "british", + "ingredients": [ + "blueberries", + "sugar", + "brioche", + "fresh lemon juice", + "raspberries" + ] + }, + { + "id": 40088, + "cuisine": "indian", + "ingredients": [ + "mild curry powder", + "coriander powder", + "salt", + "olive oil", + "boneless skinless chicken breasts", + "coconut milk", + "tumeric", + "mint leaves", + "cilantro leaves", + "tomato paste", + "garam masala", + "paprika", + "onions" + ] + }, + { + "id": 42254, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "garlic cloves", + "lemon", + "broad beans", + "lemon rind", + "spices", + "coriander" + ] + }, + { + "id": 48650, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "mild salsa", + "farro", + "salt", + "smoked paprika", + "tomatoes", + "corn kernels", + "chili powder", + "raw cashews", + "cayenne pepper", + "sliced green onions", + "water", + "guacamole", + "cilantro", + "salsa", + "fresh lime juice", + "romaine lettuce", + "olive oil", + "lime wedges", + "garlic", + "tortilla chips", + "ground cumin" + ] + }, + { + "id": 35007, + "cuisine": "greek", + "ingredients": [ + "garlic powder", + "black olives", + "dried oregano", + "cherry tomatoes", + "red wine vinegar", + "sliced mushrooms", + "green onions", + "feta cheese crumbles", + "olive oil", + "basil dried leaves", + "rotini" + ] + }, + { + "id": 4066, + "cuisine": "french", + "ingredients": [ + "sugar", + "cooking spray", + "large eggs", + "all-purpose flour", + "figs", + "reduced fat milk", + "grated orange", + "ground cloves", + "salt" + ] + }, + { + "id": 21741, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red pepper flakes", + "yellow onion", + "water", + "flour", + "diced tomatoes", + "pepper", + "roasted red peppers", + "red wine", + "rosemary", + "pork loin", + "salt" + ] + }, + { + "id": 42140, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "reduced sugar ketchup", + "salt", + "pepper", + "chicken tenderloin", + "horseradish sauce", + "mayonaise", + "lemon", + "oil", + "celery salt", + "almond flour", + "paprika", + "pickle juice" + ] + }, + { + "id": 16159, + "cuisine": "french", + "ingredients": [ + "cooking spray", + "garlic cloves", + "black pepper", + "artichokes", + "fresh spinach", + "sea salt", + "fresh lemon juice", + "water", + "grated Gruyère cheese" + ] + }, + { + "id": 46951, + "cuisine": "italian", + "ingredients": [ + "cheese ravioli", + "pasta sauce", + "cheese", + "diced tomatoes", + "water", + "Kraft Grated Parmesan Cheese" + ] + }, + { + "id": 3340, + "cuisine": "jamaican", + "ingredients": [ + "fresh spinach", + "zucchini", + "sea salt", + "celery", + "fresh ginger root", + "vegetable stock", + "cayenne pepper", + "ground turmeric", + "olive oil", + "potatoes", + "garlic", + "onions", + "demerara sugar", + "ground nutmeg", + "red pepper", + "ground allspice" + ] + }, + { + "id": 41096, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "water", + "shallots", + "ground coriander", + "ground turmeric", + "red chili peppers", + "thai noodles", + "light coconut milk", + "chopped cilantro fresh", + "canola oil", + "sugar", + "curry powder", + "lime wedges", + "garlic cloves", + "cooked chicken breasts", + "lower sodium chicken broth", + "fresh leav spinach", + "green onions", + "red curry paste", + "snow peas" + ] + }, + { + "id": 48532, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "crushed tomatoes", + "chili powder", + "heavy cream", + "plain yogurt", + "fresh ginger", + "butter", + "firm tofu", + "tumeric", + "honey", + "crushed garlic", + "extra-virgin olive oil", + "curry powder", + "garam masala", + "lemon", + "onions" + ] + }, + { + "id": 32742, + "cuisine": "indian", + "ingredients": [ + "water", + "unbleached flour", + "slivered almonds", + "baking soda", + "ground cardamom", + "evaporated milk", + "oil", + "sugar", + "pistachios", + "nonfat milk powder" + ] + }, + { + "id": 39845, + "cuisine": "mexican", + "ingredients": [ + "granulated garlic", + "cream cheese lowfat", + "chili powder", + "cumin", + "kosher salt", + "cooking spray", + "fresh lime juice", + "jack cheese", + "flour tortillas", + "onion powder", + "sliced green onions", + "salsa verde", + "cooked chicken", + "chopped cilantro" + ] + }, + { + "id": 1817, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "crushed red pepper flakes", + "whole kernel corn, drain", + "red wine vinegar", + "garlic", + "red bell pepper", + "ground black pepper", + "stewed tomatoes", + "cucumber", + "cilantro", + "salt", + "cumin" + ] + }, + { + "id": 5071, + "cuisine": "chinese", + "ingredients": [ + "oyster mushrooms", + "low sodium soy sauce", + "toasted sesame oil", + "long beans", + "carrots", + "chile de arbol", + "bamboo shoots" + ] + }, + { + "id": 47739, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "chopped cilantro", + "shredded cheddar cheese", + "purple onion", + "vegetable oil", + "shredded Monterey Jack cheese", + "flour tortillas", + "red bell pepper" + ] + }, + { + "id": 28520, + "cuisine": "italian", + "ingredients": [ + "eggs", + "garlic powder", + "chopped onion", + "marjoram", + "frozen chopped spinach", + "small curd cottage cheese", + "butter", + "red bell pepper", + "black pepper", + "grated parmesan cheese", + "shredded mozzarella cheese", + "tomato sauce", + "lasagna noodles", + "fresh mushrooms", + "white sugar" + ] + }, + { + "id": 18072, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "waxy potatoes", + "salt", + "olive oil", + "onions" + ] + }, + { + "id": 44790, + "cuisine": "chinese", + "ingredients": [ + "hoisin sauce", + "white rice", + "corn starch", + "vegetable oil", + "rice vinegar", + "boneless skinless chicken breasts", + "garlic", + "cashew nuts", + "ground pepper", + "coarse salt", + "scallions" + ] + }, + { + "id": 1111, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "olive oil", + "chili powder", + "red bell pepper", + "monterey jack", + "water", + "flour tortillas", + "salsa", + "chopped cilantro", + "pepper", + "zucchini", + "salt", + "fresh lime juice", + "canned black beans", + "corn", + "green onions", + "cayenne pepper", + "cumin" + ] + }, + { + "id": 36996, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "fresh basil leaves", + "part-skim mozzarella cheese", + "focaccia", + "ground pepper", + "sauce", + "large garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 8679, + "cuisine": "italian", + "ingredients": [ + "water", + "frozen chopped spinach", + "ricotta cheese", + "lasagna noodles", + "prego fresh mushroom italian sauce", + "shredded mozzarella cheese" + ] + }, + { + "id": 42072, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "vegetable oil", + "garlic", + "chopped cilantro", + "kosher salt", + "vine ripened tomatoes", + "firm tofu", + "soy sauce", + "vegetable stock", + "tamarind paste", + "onions", + "chili flakes", + "chives", + "cracked black pepper", + "sliced mushrooms" + ] + }, + { + "id": 11850, + "cuisine": "french", + "ingredients": [ + "potatoes", + "paprika", + "spinach leaves", + "chives", + "scallions", + "chicken broth", + "lettuce leaves", + "salt", + "cress", + "butter" + ] + }, + { + "id": 24041, + "cuisine": "british", + "ingredients": [ + "large egg yolks", + "fresh cranberries", + "grated lemon zest", + "large eggs", + "salt", + "unsalted butter", + "heavy cream", + "dried cranberries", + "sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 78, + "cuisine": "mexican", + "ingredients": [ + "fresh spinach", + "flour", + "garlic", + "olive oil", + "queso fresco", + "shrimp", + "green chile", + "poblano peppers", + "heavy cream", + "corn tortillas", + "pepper", + "mushrooms", + "salt" + ] + }, + { + "id": 45659, + "cuisine": "italian", + "ingredients": [ + "baby portobello mushrooms", + "diced red onions", + "shredded mozzarella cheese", + "eggs", + "crushed tomatoes", + "grapeseed oil", + "fresh spinach", + "lean ground beef", + "garlic cloves", + "fresh basil", + "small curd cottage cheese", + "shells" + ] + }, + { + "id": 35624, + "cuisine": "russian", + "ingredients": [ + "eggs", + "butter", + "milk", + "oil", + "sugar", + "salt", + "flour" + ] + }, + { + "id": 46580, + "cuisine": "southern_us", + "ingredients": [ + "cheddar cheese", + "minced onion", + "vegetable oil", + "chipotle sauce", + "tomatoes", + "olive oil", + "cake", + "seasoned panko bread crumbs", + "kosher salt", + "flour", + "heavy cream", + "eggs", + "extra large shrimp", + "chives", + "chopped parsley" + ] + }, + { + "id": 24630, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "diced tomatoes", + "fresh oregano", + "bay leaf", + "olive oil", + "salt", + "carrots", + "pepper", + "garlic", + "veal shanks", + "onions", + "butter", + "all-purpose flour", + "celery" + ] + }, + { + "id": 45007, + "cuisine": "mexican", + "ingredients": [ + "dried basil", + "russet potatoes", + "onions", + "cotija", + "olive oil", + "salt", + "dried thyme", + "garlic", + "pepper", + "roma tomatoes", + "hot sauce" + ] + }, + { + "id": 23960, + "cuisine": "italian", + "ingredients": [ + "tomato purée", + "ground black pepper", + "extra-virgin olive oil", + "red chili peppers", + "prawns", + "garlic", + "white wine", + "lemon", + "spaghetti", + "sun-dried tomatoes", + "sea salt", + "arugula" + ] + }, + { + "id": 21132, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "ground black pepper", + "ground red pepper", + "salt", + "bay leaf", + "fresh cilantro", + "finely chopped onion", + "sea bass fillets", + "red bell pepper", + "olive oil", + "green onions", + "light coconut milk", + "fresh lime juice", + "fat free less sodium chicken broth", + "chopped green bell pepper", + "clam juice", + "garlic cloves", + "large shrimp" + ] + }, + { + "id": 10322, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "bay leaves", + "paprika", + "cane syrup", + "black pepper", + "cooking spray", + "worcestershire sauce", + "garlic cloves", + "dried thyme", + "ground red pepper", + "salt", + "dried oregano", + "extra large shrimp", + "butter", + "hot sauce", + "sliced green onions" + ] + }, + { + "id": 33739, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic shoots", + "lemon juice", + "grated parmesan cheese", + "olive oil" + ] + }, + { + "id": 16384, + "cuisine": "japanese", + "ingredients": [ + "kosher salt", + "bacon", + "shrimp", + "eggs", + "vegetable oil", + "all-purpose flour", + "cabbage", + "gari", + "Kewpie Mayonnaise", + "scallions", + "dashi", + "tonkatsu sauce", + "toasted sesame seeds" + ] + }, + { + "id": 16371, + "cuisine": "moroccan", + "ingredients": [ + "cherry tomatoes", + "harissa paste", + "ground cumin", + "zucchini", + "skinless chicken breasts", + "olive oil", + "chickpeas", + "clear honey", + "onions" + ] + }, + { + "id": 44523, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "bow-tie pasta", + "parsley", + "kielbasa", + "boneless skinless chicken breasts", + "sauce" + ] + }, + { + "id": 22740, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "tomatillos", + "tortilla chips", + "sour cream", + "jalapeno chilies", + "cilantro", + "garlic cloves", + "oregano", + "hominy", + "bacon", + "beets", + "onions", + "lettuce", + "chicken breasts", + "salt", + "ham", + "chicken" + ] + }, + { + "id": 30511, + "cuisine": "italian", + "ingredients": [ + "chicken sausage", + "purple onion", + "pizza sauce", + "part-skim mozzarella cheese", + "thin pizza crust", + "fresh basil", + "yellow bell pepper" + ] + }, + { + "id": 22322, + "cuisine": "indian", + "ingredients": [ + "eggs", + "ground black pepper", + "ginger", + "onions", + "bread crumb fresh", + "serrano peppers", + "chutney", + "clove", + "kosher salt", + "vegetable oil", + "bay leaf", + "black peppercorns", + "goat", + "garlic", + "ground turmeric" + ] + }, + { + "id": 42893, + "cuisine": "italian", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "garlic", + "provolone cheese", + "olive oil", + "heavy cream", + "cream cheese", + "water", + "ricotta cheese", + "all-purpose flour", + "dried parsley", + "basil pesto sauce", + "marinara sauce", + "salt", + "shredded mozzarella cheese" + ] + }, + { + "id": 15946, + "cuisine": "thai", + "ingredients": [ + "sugar", + "fresh cilantro", + "fresh green bean", + "corn starch", + "eggs", + "whitefish fillets", + "shallots", + "red curry paste", + "fresh basil leaves", + "kaffir lime leaves", + "kosher salt", + "fresh ginger", + "rice vinegar", + "cucumber", + "fish sauce", + "water", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 16223, + "cuisine": "mexican", + "ingredients": [ + "clove", + "sesame seeds", + "sea salt", + "allspice berries", + "flat leaf parsley", + "water", + "giblet", + "pumpkin seeds", + "lard", + "chicken", + "chicken broth", + "swiss chard", + "cilantro", + "garlic cloves", + "peppercorns", + "white onion", + "tomate verde", + "romaine lettuce leaves", + "poblano chiles", + "serrano chile" + ] + }, + { + "id": 49266, + "cuisine": "indian", + "ingredients": [ + "light mayonnaise", + "carrots", + "red cabbage", + "roasting chickens", + "mild curry powder", + "mango chutney", + "coriander", + "yoghurt", + "black mustard seeds" + ] + }, + { + "id": 26284, + "cuisine": "french", + "ingredients": [ + "semisweet chocolate", + "sugar", + "whipping cream", + "whole milk", + "large egg yolks" + ] + }, + { + "id": 17205, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "enchilada sauce", + "Campbell's Condensed Cheddar Cheese Soup", + "onions", + "taco seasoning mix", + "ground beef", + "shredded cheddar cheese", + "flour tortillas", + "long grain white rice" + ] + }, + { + "id": 27734, + "cuisine": "italian", + "ingredients": [ + "celery salt", + "milk", + "ground pepper", + "butter", + "sweet pepper", + "shrimp", + "crab", + "garlic powder", + "onion powder", + "paprika", + "salt", + "eggs", + "olive oil", + "flour", + "coarse sea salt", + "pasta shells", + "onions", + "crab meat", + "cream", + "parmesan cheese", + "ricotta cheese", + "garlic", + "shredded mozzarella cheese" + ] + }, + { + "id": 23287, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "dried oregano", + "olive oil", + "onions", + "spareribs", + "low salt chicken broth", + "chopped garlic", + "hominy", + "chopped cilantro fresh" + ] + }, + { + "id": 46418, + "cuisine": "southern_us", + "ingredients": [ + "bourbon whiskey", + "Breyers® Natural Vanilla Ice Cream", + "granulated sugar", + "I Can't Believe It's Not Butter!® Spread", + "pecan halves", + "light corn syrup", + "large eggs", + "deep dish pie crust" + ] + }, + { + "id": 47841, + "cuisine": "japanese", + "ingredients": [ + "wasabi", + "water", + "vegetable oil", + "garlic cloves", + "sushi rice", + "eggplant", + "rice vinegar", + "soy sauce", + "sesame seeds", + "salt", + "nori sheets", + "gari", + "chili paste", + "scallions" + ] + }, + { + "id": 36225, + "cuisine": "southern_us", + "ingredients": [ + "fresh chives", + "cream cheese", + "hot pepper sauce", + "pickle juice", + "mayonaise", + "roasted red peppers", + "ground black pepper", + "sharp cheddar cheese" + ] + }, + { + "id": 12439, + "cuisine": "mexican", + "ingredients": [ + "corn tortillas", + "olive oil", + "fine sea salt" + ] + }, + { + "id": 46075, + "cuisine": "spanish", + "ingredients": [ + "water", + "salt", + "medium shrimp", + "chopped green bell pepper", + "medium-grain rice", + "olive oil", + "chopped onion", + "plum tomatoes", + "chopped celery", + "garlic cloves" + ] + }, + { + "id": 45286, + "cuisine": "cajun_creole", + "ingredients": [ + "gumbo file", + "andouille sausage", + "butter", + "flour", + "red pepper", + "green onions" + ] + }, + { + "id": 38649, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "pistachios", + "diced tomatoes", + "couscous", + "ground ginger", + "olive oil", + "raisins", + "chopped onion", + "water", + "sweet potatoes", + "garlic", + "ground cumin", + "cooked turkey", + "sliced carrots", + "salt" + ] + }, + { + "id": 31056, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "paprika", + "dried oregano", + "ground black pepper", + "cayenne pepper", + "olive oil", + "lemon slices", + "coarse salt", + "filet" + ] + }, + { + "id": 704, + "cuisine": "indian", + "ingredients": [ + "cottage cheese", + "raisins", + "oil", + "ground cumin", + "cream", + "salt", + "cashew nuts", + "tomatoes", + "whole milk", + "cilantro leaves", + "boiling potatoes", + "black pepper", + "cornflour", + "ground cardamom" + ] + }, + { + "id": 43892, + "cuisine": "chinese", + "ingredients": [ + "silken tofu", + "coriander", + "roasted hazelnuts", + "egg noodles", + "olive oil", + "snow peas", + "red chili peppers", + "sauce" + ] + }, + { + "id": 34245, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "baby carrots", + "onions", + "chinese rice wine", + "garlic", + "oil", + "dark soy sauce", + "lean ground beef", + "dark sesame oil", + "spaghetti", + "sugar", + "salt", + "celery" + ] + }, + { + "id": 34511, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "cooking oil", + "tomatillos", + "broth", + "water", + "flour", + "chopped onion", + "minced garlic", + "jalapeno chilies", + "salt", + "ground cumin", + "diced green chilies", + "chili powder", + "pork roast" + ] + }, + { + "id": 47988, + "cuisine": "chinese", + "ingredients": [ + "water", + "ground pork", + "sake", + "green onions", + "chili bean sauce", + "tofu", + "fresh ginger", + "garlic", + "soy sauce", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 3873, + "cuisine": "indian", + "ingredients": [ + "seeds", + "thai chile", + "clarified butter", + "dried neem leaves", + "yukon gold potatoes", + "cumin seed", + "taro", + "tapioca pearls", + "chopped cilantro", + "water", + "brown mustard seeds", + "roasted peanuts", + "chopped garlic" + ] + }, + { + "id": 6582, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "boneless skinless chicken breast halves", + "paprika", + "corn kernel whole", + "water", + "long grain white rice", + "Campbell's Condensed Cream of Chicken Soup", + "Pace Chunky Salsa" + ] + }, + { + "id": 581, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "salt and ground black pepper", + "red wine vinegar", + "fresh orange juice", + "ground coriander", + "ground cumin", + "ground cinnamon", + "crushed tomatoes", + "green onions", + "chicken drumsticks", + "garlic", + "onions", + "green olives", + "olive oil", + "coarse salt", + "paprika", + "cayenne pepper", + "orange zest", + "water", + "almonds", + "lemon", + "extra-virgin olive oil", + "couscous" + ] + }, + { + "id": 47958, + "cuisine": "french", + "ingredients": [ + "sugar", + "egg yolks", + "all-purpose flour", + "vanilla beans", + "vegetable oil", + "corn starch", + "eggs", + "milk", + "salt", + "white sugar", + "water", + "glucose", + "lemon juice" + ] + }, + { + "id": 40932, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "laurel leaves", + "fresh parsley", + "water", + "bell pepper", + "fish", + "saffron threads", + "olive oil", + "salt", + "white wine", + "potatoes", + "onions" + ] + }, + { + "id": 17119, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "oil", + "mirin", + "soy sauce", + "salt" + ] + }, + { + "id": 25090, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "starch", + "scallions", + "black vinegar", + "red chili peppers", + "sweet soy sauce", + "roasted peanuts", + "onions", + "green bell pepper", + "white pepper", + "sesame oil", + "oil", + "sugar", + "water", + "garlic", + "shrimp" + ] + }, + { + "id": 22936, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "oil", + "paprika", + "red bell pepper", + "smoked turkey", + "low salt chicken broth", + "green peas", + "long grain white rice" + ] + }, + { + "id": 44526, + "cuisine": "jamaican", + "ingredients": [ + "chile powder", + "black beans", + "balsamic vinegar", + "garlic", + "chopped cilantro fresh", + "ground round", + "kidney beans", + "yellow bell pepper", + "chopped onion", + "tomato paste", + "olive oil", + "paprika", + "salt", + "ground cumin", + "ground cloves", + "cannellini beans", + "stewed tomatoes", + "white sugar" + ] + }, + { + "id": 10892, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "vinegar", + "meat bones", + "pork back ribs", + "butter", + "peppercorns", + "soy sauce", + "bay leaves", + "panko breadcrumbs", + "honey", + "garlic" + ] + }, + { + "id": 3061, + "cuisine": "southern_us", + "ingredients": [ + "crushed red pepper", + "pepper", + "dark brown sugar", + "vegetable oil", + "whole chicken", + "cider vinegar", + "salt" + ] + }, + { + "id": 40149, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "butter", + "arborio rice", + "grated parmesan cheese", + "flat leaf parsley", + "pancetta", + "minced onion", + "extra-virgin olive oil", + "kosher salt", + "vegetable stock", + "frozen peas" + ] + }, + { + "id": 2518, + "cuisine": "southern_us", + "ingredients": [ + "minced garlic", + "onions", + "salt", + "crushed red pepper flakes", + "chitterlings" + ] + }, + { + "id": 41322, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "olive oil", + "fresh mint", + "sweet onion", + "red pepper", + "fresh spinach", + "feta cheese", + "phyllo dough", + "large egg whites", + "olive oil cooking spray" + ] + }, + { + "id": 45307, + "cuisine": "chinese", + "ingredients": [ + "beef", + "sauce", + "brown sugar", + "sesame oil", + "corn starch", + "cooked rice", + "broccoli florets", + "garlic cloves", + "soy sauce", + "boneless beef chuck roast" + ] + }, + { + "id": 33255, + "cuisine": "southern_us", + "ingredients": [ + "toasted pecans", + "baking soda", + "butter", + "cake flour", + "white vinegar", + "cocoa", + "baking powder", + "red food coloring", + "all-purpose flour", + "sugar", + "large eggs", + "buttermilk", + "salt", + "powdered sugar", + "milk", + "vegetable oil", + "vanilla extract", + "cream cheese" + ] + }, + { + "id": 34250, + "cuisine": "greek", + "ingredients": [ + "radicchio", + "walnuts", + "extra-virgin olive oil", + "feta cheese crumbles", + "parsley leaves", + "fresh lemon juice", + "celery ribs", + "pearl barley", + "pears" + ] + }, + { + "id": 33706, + "cuisine": "french", + "ingredients": [ + "cayenne", + "bread crumb fresh", + "extra-virgin olive oil", + "coarse sea salt", + "water", + "garlic cloves" + ] + }, + { + "id": 24617, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "olive oil", + "garlic", + "red bell pepper", + "sugar pea", + "lime wedges", + "creamy peanut butter", + "chopped cilantro fresh", + "cooked rice", + "boneless skinless chicken breasts", + "salt", + "coconut milk yogurt", + "pepper", + "Thai red curry paste", + "gingerroot" + ] + }, + { + "id": 12244, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "raw cashews", + "hot water", + "clove", + "raisins", + "fresh lemon juice", + "clarified butter", + "ground cinnamon", + "fryer chickens", + "ground cardamom", + "ground cumin", + "ground black pepper", + "cayenne pepper", + "coarse kosher salt" + ] + }, + { + "id": 34761, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "monterey jack", + "crab meat", + "sour cream", + "enchilada sauce", + "flour tortillas", + "medium shrimp" + ] + }, + { + "id": 33995, + "cuisine": "italian", + "ingredients": [ + "water", + "ground thyme", + "tomato paste", + "beef", + "spaghetti", + "dried basil", + "carrots", + "granulated garlic", + "lean ground beef", + "dried oregano" + ] + }, + { + "id": 15683, + "cuisine": "french", + "ingredients": [ + "morel", + "vegetable oil", + "garlic cloves", + "chives", + "crème fraîche", + "tarragon", + "unsalted butter", + "veal rib chops", + "thyme", + "shallots", + "cognac", + "boiling water" + ] + }, + { + "id": 16028, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "corn starch", + "cold water", + "all-purpose flour", + "boiling water", + "salt", + "white sugar", + "baking powder", + "lemon juice", + "blackberries" + ] + }, + { + "id": 27601, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "large eggs", + "prepar pesto", + "shredded parmesan cheese", + "fontina cheese", + "ricotta cheese", + "chunky pasta sauce", + "oven-ready lasagna noodles" + ] + }, + { + "id": 7271, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "jalapeno chilies", + "garlic", + "scallions", + "Mexican cheese blend", + "vegetable oil", + "crema", + "garlic cloves", + "white onion", + "radishes", + "tomatillos", + "salt", + "poblano chiles", + "pepper", + "flour tortillas", + "butter", + "acorn squash", + "allspice" + ] + }, + { + "id": 24922, + "cuisine": "korean", + "ingredients": [ + "anchovies", + "garlic", + "onions", + "potatoes", + "green chilies", + "zucchini", + "soybean paste", + "tofu", + "green onions", + "shrimp" + ] + }, + { + "id": 1646, + "cuisine": "mexican", + "ingredients": [ + "shallots", + "cooked shrimp", + "queso panela", + "red bell pepper", + "fresh basil", + "poblano chilies", + "fresh basil leaves", + "pepper sauce", + "soft fresh goat cheese", + "chopped cilantro fresh" + ] + }, + { + "id": 47519, + "cuisine": "southern_us", + "ingredients": [ + "vanilla extract", + "vanilla ice cream", + "bittersweet chocolate", + "ground cinnamon", + "grated nutmeg", + "bourbon whiskey" + ] + }, + { + "id": 2589, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "heavy cream", + "penne pasta", + "fresh basil leaves", + "kosher salt", + "red pepper", + "extra-virgin olive oil", + "garlic cloves", + "jumbo shrimp", + "shiitake", + "cracked black pepper", + "creole seasoning", + "milk", + "skinless salmon fillets", + "cooking wine", + "onions" + ] + }, + { + "id": 1243, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "flour", + "ground mustard", + "thyme", + "celery", + "cooked rice", + "chili pepper", + "Italian parsley leaves", + "okra", + "chopped parsley", + "marjoram", + "tomato paste", + "black pepper", + "bay leaves", + "low sodium chicken stock", + "red bell pepper", + "onions", + "green bell pepper", + "duck fat", + "garlic", + "sweet paprika", + "duck drumsticks", + "large shrimp" + ] + }, + { + "id": 15813, + "cuisine": "jamaican", + "ingredients": [ + "vegetable oil", + "dried minced onion", + "dried thyme", + "cayenne pepper", + "ground cinnamon", + "salt", + "ground black pepper", + "ground allspice" + ] + }, + { + "id": 23764, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "grated parmesan cheese", + "all-purpose flour", + "cream", + "butter", + "crabmeat", + "white pepper", + "green onions", + "frozen corn", + "eggs", + "ground nutmeg", + "salt" + ] + }, + { + "id": 20355, + "cuisine": "mexican", + "ingredients": [ + "water", + "cilantro leaves", + "corn tortillas", + "ground cumin", + "tomatoes", + "vegetable oil", + "garlic cloves", + "chopped cilantro", + "white onion", + "queso fresco", + "red bell pepper", + "serrano chile", + "zucchini", + "pumpkin seeds", + "fresh lime juice" + ] + }, + { + "id": 30863, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "kosher salt", + "cracked black pepper", + "scallions", + "chicken stock", + "medium shrimp uncook", + "garlic", + "thyme sprigs", + "cod", + "jasmine rice", + "extra-virgin olive oil", + "red bell pepper", + "andouille sausage", + "old bay seasoning", + "creole seasoning", + "onions" + ] + }, + { + "id": 10406, + "cuisine": "thai", + "ingredients": [ + "green curry paste", + "unsweetened coconut milk", + "ginger", + "lime wedges", + "boneless chicken skinless thigh", + "chopped cilantro" + ] + }, + { + "id": 24419, + "cuisine": "italian", + "ingredients": [ + "candy sprinkles", + "all-purpose flour", + "water", + "anise", + "eggs", + "butter", + "confectioners sugar", + "baking powder", + "vanilla extract" + ] + }, + { + "id": 40973, + "cuisine": "moroccan", + "ingredients": [ + "chicken stock", + "minced garlic", + "salt", + "ground coriander", + "ground cumin", + "tumeric", + "olive oil", + "cayenne pepper", + "couscous", + "green olives", + "minced ginger", + "yellow onion", + "smoked paprika", + "pepper", + "boneless skinless chicken breasts", + "beer", + "coriander" + ] + }, + { + "id": 33456, + "cuisine": "french", + "ingredients": [ + "large garlic cloves", + "ground white pepper", + "chives", + "extra-virgin olive oil", + "smoked trout fillets", + "heavy cream", + "yukon gold potatoes", + "salt" + ] + }, + { + "id": 25718, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "cherries", + "red wine vinegar", + "garlic cloves", + "crushed tomatoes", + "chicken thigh fillets", + "rosemary leaves", + "pepper", + "potatoes", + "extra-virgin olive oil", + "black pepper", + "olive oil", + "fresh thyme leaves", + "salt" + ] + }, + { + "id": 37779, + "cuisine": "italian", + "ingredients": [ + "whole wheat rigatoni", + "ground sirloin", + "fresh parmesan cheese", + "cooking spray", + "part-skim mozzarella cheese", + "tomato basil sauce" + ] + }, + { + "id": 8171, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger root", + "rice vinegar", + "water", + "vegetable oil", + "japanese eggplants", + "raw honey", + "scallions", + "white miso", + "garlic" + ] + }, + { + "id": 14927, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic", + "olive oil", + "chopped cilantro", + "lime", + "salt", + "diced onions", + "jalapeno chilies" + ] + }, + { + "id": 26521, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "cayenne", + "salt", + "ground cumin", + "crushed tomatoes", + "vegetable broth", + "ground coriander", + "white onion", + "extra-virgin olive oil", + "goat cheese", + "sun-dried tomatoes", + "garlic", + "corn tortillas" + ] + }, + { + "id": 33140, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "fine sea salt", + "corn tortillas", + "ground cinnamon", + "dried thyme", + "garlic cloves", + "canola oil", + "ground cloves", + "crema mexican", + "mexican chorizo", + "avocado", + "white onion", + "plums", + "pork shoulder" + ] + }, + { + "id": 27181, + "cuisine": "mexican", + "ingredients": [ + "green cabbage", + "crema mexican", + "canola oil", + "taco sauce", + "corn tortillas", + "green chile", + "lime wedges", + "halibut fillets", + "chopped cilantro fresh" + ] + }, + { + "id": 34888, + "cuisine": "italian", + "ingredients": [ + "frozen spinach", + "almonds", + "lemon juice", + "pinenuts", + "grated parmesan cheese", + "chicken broth", + "lemon zest", + "olive oil", + "garlic" + ] + }, + { + "id": 3564, + "cuisine": "italian", + "ingredients": [ + "plum tomatoes", + "coarse salt", + "minced garlic", + "extra-virgin olive oil" + ] + }, + { + "id": 15993, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dry white wine", + "fresh oregano", + "angel hair", + "ground black pepper", + "Italian parsley leaves", + "boiling water", + "sea scallops", + "shallots", + "fresh lemon juice", + "capers", + "golden raisins", + "grated lemon zest" + ] + }, + { + "id": 17044, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "olive oil", + "apple cider vinegar", + "yellow onion", + "frozen peas", + "low sodium soy sauce", + "curry powder", + "bay leaves", + "garlic", + "bay leaf", + "water", + "dry coconut", + "ginger", + "rice", + "chicken", + "red chili peppers", + "lime juice", + "dried shallots", + "salt", + "coriander" + ] + }, + { + "id": 25046, + "cuisine": "greek", + "ingredients": [ + "phyllo dough", + "walnuts", + "vegetable oil", + "white sugar", + "water", + "lemon juice", + "ground cinnamon", + "margarine" + ] + }, + { + "id": 16125, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "vegetable broth", + "onions", + "pepper", + "brown rice", + "salt", + "butternut squash", + "garlic", + "curry powder", + "stewed tomatoes", + "chickpeas" + ] + }, + { + "id": 24687, + "cuisine": "thai", + "ingredients": [ + "coconut milk", + "fish sauce", + "large shrimp", + "curry paste", + "red chili peppers" + ] + }, + { + "id": 35398, + "cuisine": "japanese", + "ingredients": [ + "low sodium soy sauce", + "crushed red pepper", + "mirin", + "water", + "fresh lemon juice", + "fresh orange juice" + ] + }, + { + "id": 29400, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "salt", + "chopped cilantro", + "garlic powder", + "butter", + "chipotles in adobo", + "olive oil", + "low sodium chicken broth", + "sour cream", + "diced onions", + "chopped green bell pepper", + "all-purpose flour", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 23212, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "large egg yolks", + "grated parmesan cheese", + "low salt chicken broth", + "fresh chives", + "finely chopped onion", + "dry white wine", + "canola oil", + "fontina cheese", + "panko", + "chopped fresh chives", + "fresh parsley", + "olive oil", + "large eggs", + "butter" + ] + }, + { + "id": 29065, + "cuisine": "southern_us", + "ingredients": [ + "whole milk", + "steak", + "eggs", + "pan drippings", + "vegetable oil", + "flour", + "buttermilk" + ] + }, + { + "id": 46621, + "cuisine": "indian", + "ingredients": [ + "plain low-fat yogurt", + "low-fat buttermilk", + "black mustard seeds", + "canola oil", + "water", + "unsalted cashews", + "basmati rice", + "red chili peppers", + "peeled fresh ginger", + "ghee", + "curry leaves", + "fresh cilantro", + "salt", + "mango" + ] + }, + { + "id": 10459, + "cuisine": "greek", + "ingredients": [ + "diced tomatoes", + "feta cheese crumbles", + "green onions", + "garlic", + "hummus", + "greek seasoning", + "kalamata", + "cucumber", + "lemon", + "cream cheese", + "fresh parsley" + ] + }, + { + "id": 44223, + "cuisine": "indian", + "ingredients": [ + "jasmine rice", + "unsalted butter", + "grapeseed oil", + "yellow onion", + "ground turmeric", + "cauliflower", + "coriander seeds", + "fenugreek", + "extra-virgin olive oil", + "chopped cilantro", + "fresh ginger", + "jalapeno chilies", + "sea salt", + "cumin seed", + "tomato purée", + "garam masala", + "brown mustard seeds", + "garlic", + "frozen peas" + ] + }, + { + "id": 5353, + "cuisine": "french", + "ingredients": [ + "green onions", + "cognac", + "brown gravy", + "red wine", + "marrow", + "butter", + "chopped parsley", + "melted butter", + "lemon", + "chateaubriand" + ] + }, + { + "id": 25374, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "breakfast sausages", + "shredded Monterey Jack cheese", + "ground black pepper", + "shredded sharp cheddar cheese", + "milk", + "butter", + "flour tortillas", + "salsa" + ] + }, + { + "id": 15147, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "medium shrimp", + "cannellini beans", + "scallions", + "french bread", + "freshly ground pepper", + "kosher salt", + "garlic" + ] + }, + { + "id": 43221, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "prawns", + "cinnamon", + "brown cardamom", + "basmati rice", + "clove", + "milk", + "mint leaves", + "essence", + "ghee", + "saffron", + "garlic paste", + "Biryani Masala", + "salt", + "bay leaf", + "ground turmeric", + "tomatoes", + "mace", + "vegetable oil", + "green cardamom", + "onions" + ] + }, + { + "id": 45952, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "extra-virgin olive oil", + "chopped cilantro fresh", + "cauliflower", + "coarse salt", + "chickpeas", + "peeled fresh ginger", + "yellow onion", + "long grain white rice", + "tomatoes", + "baby spinach", + "garlic cloves" + ] + }, + { + "id": 21861, + "cuisine": "indian", + "ingredients": [ + "cucumber", + "fresh cilantro", + "sugar", + "nonfat yogurt" + ] + }, + { + "id": 49254, + "cuisine": "indian", + "ingredients": [ + "grated orange peel", + "whole milk", + "cardamom pods", + "golden brown sugar", + "whipping cream", + "sugar", + "peeled fresh ginger", + "cinnamon sticks", + "clove", + "large egg yolks", + "english breakfast tea" + ] + }, + { + "id": 4284, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "yellow onion", + "ground pepper", + "tomatillos", + "corn tortillas", + "cotija", + "vegetable oil", + "garlic cloves", + "pepper", + "coarse salt", + "sour cream" + ] + }, + { + "id": 49246, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "non-fat sour cream", + "ground cumin", + "cooking spray", + "corn tortillas", + "bell pepper", + "enchilada sauce", + "white onion", + "chicken breasts", + "chopped cilantro fresh" + ] + }, + { + "id": 11688, + "cuisine": "southern_us", + "ingredients": [ + "cayenne", + "paprika", + "onions", + "vegetable oil", + "all-purpose flour", + "buttermilk", + "hot sauce", + "whole milk", + "bacon slices", + "chicken" + ] + }, + { + "id": 8998, + "cuisine": "british", + "ingredients": [ + "grated orange peel", + "orange marmalade", + "gingersnap cookie crumbs", + "refrigerated piecrusts", + "sugar", + "golden raisins", + "granny smith apples", + "whipping cream" + ] + }, + { + "id": 19701, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "curry powder", + "lime wedges", + "ginger", + "garlic cloves", + "unsweetened coconut milk", + "boneless chicken skinless thigh", + "cilantro stems", + "chili oil", + "purple onion", + "beansprouts", + "fish sauce", + "lemongrass", + "vegetable oil", + "thai chile", + "Chinese egg noodles", + "light brown sugar", + "kosher salt", + "shallots", + "cilantro", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 14749, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "chicken drumsticks", + "olive oil", + "salt", + "orange", + "purple onion", + "sausage links", + "new potatoes", + "dried oregano" + ] + }, + { + "id": 42479, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "fresh tarragon", + "fresh dill", + "red wine vinegar", + "fine sea salt", + "sherry wine vinegar", + "extra-virgin olive oil", + "fresh chives", + "Italian parsley leaves", + "fresh mint" + ] + }, + { + "id": 36090, + "cuisine": "italian", + "ingredients": [ + "vegetable stock", + "broccoli", + "bread crumbs", + "purple onion", + "german mustard", + "penne", + "gruyere cheese", + "dried mixed herbs", + "parsley leaves", + "crème fraîche" + ] + }, + { + "id": 25308, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "minced garlic", + "boneless chicken thighs", + "sesame oil", + "soy sauce", + "sesame seeds", + "cider vinegar", + "onions" + ] + }, + { + "id": 36082, + "cuisine": "brazilian", + "ingredients": [ + "crushed tomatoes", + "garlic", + "medium shrimp", + "water", + "red pepper flakes", + "lemon juice", + "unsweetened coconut milk", + "ground black pepper", + "salt", + "fresh parsley", + "green bell pepper", + "cooking oil", + "long-grain rice", + "onions" + ] + }, + { + "id": 21698, + "cuisine": "italian", + "ingredients": [ + "Johnsonville® Mild Italian Ground Sausage", + "marinara sauce", + "onions", + "fresh spinach", + "large eggs", + "garlic", + "lasagna noodles", + "ricotta cheese", + "dried oregano", + "olive oil", + "grated parmesan cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 43649, + "cuisine": "british", + "ingredients": [ + "all-purpose flour", + "milk", + "eggs", + "butter" + ] + }, + { + "id": 32814, + "cuisine": "southern_us", + "ingredients": [ + "spices", + "purple onion", + "pickling spices", + "lemon", + "thyme sprigs", + "red wine vinegar", + "salt", + "bay leaves", + "extra-virgin olive oil", + "medium shrimp" + ] + }, + { + "id": 30878, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lemongrass", + "shallots", + "purple onion", + "bird chile", + "boneless chicken skinless thigh", + "sweet potatoes", + "hot chili paste", + "garlic cloves", + "snow peas", + "unsweetened coconut milk", + "curry powder", + "peeled fresh ginger", + "rice vermicelli", + "low salt chicken broth", + "sliced green onions", + "sugar", + "lime", + "vegetable oil", + "yellow curry paste", + "chopped cilantro fresh" + ] + }, + { + "id": 37112, + "cuisine": "greek", + "ingredients": [ + "grated parmesan cheese", + "feta cheese crumbles", + "cream cheese", + "sundried tomato pesto" + ] + }, + { + "id": 46836, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "oil", + "pepper", + "garlic", + "vegetable broth", + "onions", + "Anaheim chile", + "salt" + ] + }, + { + "id": 37831, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "mushroom caps", + "ginger", + "oyster sauce", + "honey", + "rice wine", + "scallions", + "onions", + "pepper", + "potatoes", + "dark brown sugar", + "carrots", + "red chili peppers", + "sesame seeds", + "sesame oil", + "garlic cloves", + "chicken" + ] + }, + { + "id": 821, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "low salt chicken broth", + "unsweetened coconut milk", + "Thai red curry paste", + "japanese eggplants", + "corn oil", + "boneless skinless chicken breast halves", + "fresh basil", + "green beans" + ] + }, + { + "id": 33272, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "spaghettini", + "soy sauce", + "seaweed", + "fresh basil leaves", + "butter", + "shiso", + "mentaiko", + "konbu" + ] + }, + { + "id": 35974, + "cuisine": "japanese", + "ingredients": [ + "bonito flakes", + "water", + "dashi kombu" + ] + }, + { + "id": 32602, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "bacon", + "onions", + "ground nutmeg", + "ice water", + "fresh parsley", + "sugar", + "unsalted butter", + "salt", + "large egg yolks", + "whole milk", + "all-purpose flour" + ] + }, + { + "id": 24538, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "water", + "lasagna noodles", + "basil dried leaves", + "fresh parsley", + "tomato sauce", + "ground black pepper", + "lean ground beef", + "salt", + "italian seasoning", + "fennel seeds", + "mozzarella cheese", + "minced onion", + "ricotta cheese", + "sweet italian sausage", + "eggs", + "crushed tomatoes", + "grated parmesan cheese", + "garlic", + "white sugar" + ] + }, + { + "id": 31782, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "dried thyme", + "diced tomatoes", + "salt", + "flat leaf parsley", + "spaghetti", + "chicken stock", + "bread crumbs", + "grated parmesan cheese", + "extra-virgin olive oil", + "low sodium chicken stock", + "ground beef", + "sugar", + "ground black pepper", + "ground pork", + "cayenne pepper", + "bay leaf", + "eggs", + "kosher salt", + "fresh thyme leaves", + "garlic", + "garlic cloves", + "onions" + ] + }, + { + "id": 28351, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "dill", + "canned low sodium chicken broth", + "orzo", + "carrots", + "eggs", + "boneless skinless chicken breasts", + "lemon juice", + "olive oil", + "salt" + ] + }, + { + "id": 25593, + "cuisine": "southern_us", + "ingredients": [ + "extra-virgin olive oil", + "vidalia onion", + "garlic pepper blend", + "salt", + "sweet potatoes" + ] + }, + { + "id": 42565, + "cuisine": "french", + "ingredients": [ + "shallots", + "shrimp", + "fresh chives", + "dry sherry", + "butter", + "cream cheese, soften", + "seafood seasoning", + "fresh lemon juice" + ] + }, + { + "id": 23918, + "cuisine": "french", + "ingredients": [ + "sugar", + "almonds" + ] + }, + { + "id": 34665, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "green onions", + "garlic", + "bamboo shoots", + "soy sauce", + "crushed red pepper flakes", + "rice vinegar", + "red chili peppers", + "sesame oil", + "salt", + "Shaoxing wine", + "ground pork", + "peanut oil" + ] + }, + { + "id": 20338, + "cuisine": "thai", + "ingredients": [ + "red grapefruit", + "shrimp", + "iceberg lettuce", + "red chili peppers", + "shallots", + "white sugar", + "fish sauce", + "meat", + "fresh lime juice", + "mint leaves", + "garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 9551, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "chaat masala", + "black pepper", + "cilantro leaves", + "salt", + "potatoes", + "oil" + ] + }, + { + "id": 43528, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "chicken", + "italian salad dressing mix" + ] + }, + { + "id": 32350, + "cuisine": "jamaican", + "ingredients": [ + "water", + "egg whites", + "onion powder", + "ground turmeric", + "garlic powder", + "old-fashioned oats", + "dri leav thyme", + "curry powder", + "low sodium chicken broth", + "cayenne pepper", + "lean ground meat", + "chili powder", + "five-spice powder" + ] + }, + { + "id": 11319, + "cuisine": "chinese", + "ingredients": [ + "cream style corn", + "chicken meat", + "chicken stock", + "spring onions", + "salt", + "egg whites", + "cornflour", + "water", + "sesame oil", + "ground white pepper" + ] + }, + { + "id": 12637, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "olive oil", + "jalapeno chilies", + "salt", + "chopped cilantro fresh", + "avocado", + "fresh cilantro", + "poblano peppers", + "cooked chicken", + "shredded cheese", + "pepper", + "garlic powder", + "flour", + "yellow onion", + "cumin", + "chicken broth", + "lime", + "flour tortillas", + "butter", + "sour cream" + ] + }, + { + "id": 46599, + "cuisine": "italian", + "ingredients": [ + "pepper", + "butter", + "cream of chicken soup", + "cream cheese", + "milk", + "salt", + "chicken breasts", + "italian seasoning" + ] + }, + { + "id": 35118, + "cuisine": "chinese", + "ingredients": [ + "water", + "cornflour", + "ground white pepper", + "peppercorns", + "egg whites", + "catfish", + "chillies", + "fresh ginger root", + "bean sauce", + "celery", + "chopped garlic", + "vegetable oil", + "chinese leaf", + "coriander" + ] + }, + { + "id": 32649, + "cuisine": "french", + "ingredients": [ + "yellow corn meal", + "unsalted butter", + "all-purpose flour", + "feta cheese", + "ice water", + "tomatoes", + "basil leaves", + "ground black pepper", + "salt" + ] + }, + { + "id": 29181, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "sliced green onions", + "sugar", + "jalapeno chilies", + "lower sodium soy sauce", + "water", + "rice vinegar" + ] + }, + { + "id": 44988, + "cuisine": "indian", + "ingredients": [ + "light brown sugar", + "unsalted butter", + "jasmine rice", + "ground cardamom", + "slivered almonds", + "pistachios", + "milk", + "saffron" + ] + }, + { + "id": 30040, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chicken", + "Mexican beer", + "chipotle", + "red pepper" + ] + }, + { + "id": 37404, + "cuisine": "italian", + "ingredients": [ + "white bread", + "ground black pepper", + "fresh parsley", + "mozzarella cheese", + "salami", + "eggs", + "grated parmesan cheese", + "prosciutto", + "pepperoni" + ] + }, + { + "id": 4934, + "cuisine": "italian", + "ingredients": [ + "sugar", + "vanilla extract", + "heavy whipping cream", + "refrigerated piecrusts", + "blueberries", + "mascarpone", + "strawberries", + "raspberries", + "grated lemon zest", + "blackberries" + ] + }, + { + "id": 368, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "vanilla extract", + "melted butter", + "flour", + "butter", + "grated nutmeg", + "peaches", + "cinnamon", + "salt", + "brown sugar", + "dark rum", + "whipping cream", + "corn starch" + ] + }, + { + "id": 33527, + "cuisine": "italian", + "ingredients": [ + "linguine", + "chicken", + "grated parmesan cheese", + "lemon juice", + "lemon slices", + "butter", + "chopped parsley" + ] + }, + { + "id": 46698, + "cuisine": "greek", + "ingredients": [ + "white bread", + "dried mint flakes", + "all-purpose flour", + "milk", + "garlic", + "onions", + "eggs", + "vegetable oil", + "ground beef", + "ground black pepper", + "salt", + "ground lamb" + ] + }, + { + "id": 5926, + "cuisine": "italian", + "ingredients": [ + "marjoram", + "dried thyme", + "dried rosemary", + "dried basil", + "dried oregano", + "dried sage" + ] + }, + { + "id": 3689, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "cream cheese, soften", + "shredded mozzarella cheese", + "Knorr® Pasta Sides™ - Butter & Herb", + "cut up cooked chicken", + "frozen chopped spinach, thawed and squeezed dry" + ] + }, + { + "id": 32999, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "sesame oil", + "whole chicken", + "shiitake", + "salt", + "wood ear mushrooms", + "light soy sauce", + "ginger", + "oyster sauce", + "green onions", + "chili sauce" + ] + }, + { + "id": 38439, + "cuisine": "french", + "ingredients": [ + "dried tarragon leaves", + "white wine vinegar", + "herbes de provence", + "tomatoes", + "chives", + "garlic cloves", + "cooking spray", + "salt", + "fresh parsley", + "tuna steaks", + "Niçoise olives" + ] + }, + { + "id": 30753, + "cuisine": "mexican", + "ingredients": [ + "lean ground pork", + "eggs", + "Taco Bell Taco Seasoning Mix", + "minced garlic", + "cheddar cheese", + "green onions" + ] + }, + { + "id": 4358, + "cuisine": "brazilian", + "ingredients": [ + "manioc flour", + "salt", + "red bell pepper", + "palm oil", + "parsley", + "diced bacon", + "pepper", + "yellow onion", + "eggs", + "yellow bell pepper", + "carrots" + ] + }, + { + "id": 37730, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "cooking spray", + "ground round", + "sun-dried tomatoes", + "garlic cloves", + "fresh basil", + "large egg whites", + "provolone cheese", + "ketchup", + "finely chopped onion", + "boiling water" + ] + }, + { + "id": 43901, + "cuisine": "british", + "ingredients": [ + "eggs", + "salt", + "drippings", + "flour", + "milk" + ] + }, + { + "id": 18388, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "ground beef", + "fresh basil", + "wonton wrappers", + "marinara sauce", + "mozzarella cheese", + "ricotta cheese" + ] + }, + { + "id": 8176, + "cuisine": "spanish", + "ingredients": [ + "salt", + "olive oil", + "boiling potatoes", + "kale", + "onions", + "large eggs" + ] + }, + { + "id": 27943, + "cuisine": "italian", + "ingredients": [ + "Velveeta", + "onions", + "chicken breasts", + "cream of chicken soup", + "spaghetti", + "cream of mushroom soup" + ] + }, + { + "id": 5781, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "candy", + "buttermilk", + "boiling water", + "vegetable oil", + "white sugar", + "white frostings", + "cake mix" + ] + }, + { + "id": 27516, + "cuisine": "italian", + "ingredients": [ + "butter cooking spray", + "grated parmesan cheese", + "bread dough", + "butter", + "ground pepper", + "sprinkles" + ] + }, + { + "id": 44497, + "cuisine": "italian", + "ingredients": [ + "roast beef deli meat", + "oil", + "crumbled blue cheese", + "Italian bread", + "tomatoes", + "lettuce leaves", + "fat-free mayonnaise", + "low sodium worcestershire sauce", + "balsamic vinegar" + ] + }, + { + "id": 41247, + "cuisine": "mexican", + "ingredients": [ + "water", + "ground black pepper", + "salt", + "onions", + "tomatoes", + "olive oil", + "finely chopped onion", + "carrots", + "cabbage", + "lime", + "beef", + "beef broth", + "chopped cilantro fresh", + "red potato", + "corn husks", + "beef stew meat", + "chayotes" + ] + }, + { + "id": 31380, + "cuisine": "french", + "ingredients": [ + "shallots", + "tarragon vinegar", + "tarragon", + "chopped leaves", + "crushed peppercorn", + "dry white wine" + ] + }, + { + "id": 11715, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "tartar sauce", + "purple onion", + "romaine lettuce", + "fish" + ] + }, + { + "id": 7154, + "cuisine": "irish", + "ingredients": [ + "milk", + "paprika", + "ground beef", + "condensed cream", + "potatoes", + "garlic cloves", + "fresh asparagus", + "pepper", + "butter", + "rubbed sage", + "part-skim mozzarella cheese", + "salt", + "onions" + ] + }, + { + "id": 39535, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "chop green chilies, undrain", + "black beans", + "mexicorn", + "ragu old world style pasta sauc", + "whole wheat tortillas", + "boneless skinless chicken breast halves", + "shredded cheddar cheese", + "pitted olives" + ] + }, + { + "id": 29581, + "cuisine": "thai", + "ingredients": [ + "boneless chicken skinless thigh", + "palm sugar", + "french fried onions", + "ginger", + "garlic cloves", + "unsweetened coconut milk", + "kosher salt", + "cilantro stems", + "vegetable oil", + "purple onion", + "beansprouts", + "fish sauce", + "curry powder", + "shallots", + "chili oil", + "ground coriander", + "ground turmeric", + "guajillo chiles", + "low sodium chicken broth", + "lime wedges", + "cilantro sprigs", + "Chinese egg noodles" + ] + }, + { + "id": 10747, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "baking soda", + "garlic", + "oyster sauce", + "cabbage", + "white pepper", + "chicken breasts", + "scallions", + "corn starch", + "soy sauce", + "egg noodles", + "salt", + "carrots", + "dark soy sauce", + "water", + "sesame oil", + "oil", + "beansprouts" + ] + }, + { + "id": 13353, + "cuisine": "french", + "ingredients": [ + "crushed tomatoes", + "kalamata", + "yellow onion", + "ground black pepper", + "salt", + "fresh basil leaves", + "dry white wine", + "all-purpose flour", + "chicken", + "olive oil", + "garlic", + "fresh parsley" + ] + }, + { + "id": 31018, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "flour", + "unsalted butter", + "corn", + "vanilla", + "sugar", + "large eggs" + ] + }, + { + "id": 8086, + "cuisine": "cajun_creole", + "ingredients": [ + "creole seasoning", + "olive oil", + "black-eyed peas" + ] + }, + { + "id": 5989, + "cuisine": "chinese", + "ingredients": [ + "unflavored gelatin", + "mango", + "granulated sugar", + "milk", + "heavy cream" + ] + }, + { + "id": 39303, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "kosher salt", + "lamb shoulder", + "ground cardamom", + "sliced almonds", + "fresh ginger", + "garlic cloves", + "plain whole-milk yogurt", + "clove", + "white onion", + "vegetable oil", + "fresh lemon juice", + "serrano chile", + "black peppercorns", + "golden brown sugar", + "cumin seed", + "cashew nuts" + ] + }, + { + "id": 5831, + "cuisine": "irish", + "ingredients": [ + "chicken broth", + "olive oil", + "yellow onion", + "minced garlic", + "stout", + "carrots", + "pepper", + "flour", + "sharp cheddar cheese", + "milk", + "salt" + ] + }, + { + "id": 12011, + "cuisine": "mexican", + "ingredients": [ + "red pepper flakes", + "white sugar", + "ground black pepper", + "salt", + "olive oil", + "garlic", + "red wine vinegar", + "chayotes" + ] + }, + { + "id": 9673, + "cuisine": "southern_us", + "ingredients": [ + "country ham", + "whole cloves", + "cider vinegar", + "biscuits" + ] + }, + { + "id": 38052, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "chili sauce", + "olive oil", + "pepper", + "brussels sprouts", + "salt" + ] + }, + { + "id": 39285, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "raisins", + "all-purpose flour", + "sugar", + "golden raisins", + "vanilla extract", + "large eggs", + "whipping cream", + "grated lemon peel", + "water", + "baking powder", + "salt" + ] + }, + { + "id": 15802, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "ginger", + "garlic cloves", + "soy sauce", + "green onions", + "rice vinegar", + "coconut milk", + "red chili peppers", + "zucchini", + "purple onion", + "toasted almonds", + "kosher salt", + "sesame oil", + "peanut butter", + "toasted sesame seeds" + ] + }, + { + "id": 16792, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "paprika", + "bread crumb fresh", + "boneless skinless chicken breast halves", + "eggs", + "shredded mozzarella cheese", + "ragu cheesi classic alfredo sauc" + ] + }, + { + "id": 11491, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic", + "chopped cilantro fresh", + "flour tortillas", + "salt", + "lime juice", + "purple onion", + "mango", + "avocado", + "butter", + "shrimp" + ] + }, + { + "id": 6658, + "cuisine": "indian", + "ingredients": [ + "cold water", + "sweet potatoes", + "cilantro", + "lemon juice", + "garam masala", + "mango chutney", + "salt", + "chickpea flour", + "baking powder", + "ginger", + "ghee", + "cayenne", + "watercress", + "oil" + ] + }, + { + "id": 42111, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "whipping cream", + "crimini mushrooms", + "fresh parsley", + "olive oil", + "large garlic cloves", + "grated parmesan cheese", + "linguine" + ] + }, + { + "id": 33879, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "garlic", + "orzo pasta", + "crumbled gorgonzola", + "olive oil", + "purple onion", + "fresh basil", + "vegetable broth" + ] + }, + { + "id": 19054, + "cuisine": "southern_us", + "ingredients": [ + "fat free milk", + "flat leaf parsley", + "fontina cheese", + "grating cheese", + "rigatoni", + "fresh thyme leaves", + "panko breadcrumbs", + "mozzarella cheese", + "ground white pepper" + ] + }, + { + "id": 24642, + "cuisine": "southern_us", + "ingredients": [ + "lump crab meat", + "large egg whites", + "low-fat mayonnaise", + "fresh lime juice", + "fresh cilantro", + "lime wedges", + "garlic cloves", + "curry powder", + "finely chopped onion", + "dry bread crumbs", + "chopped fresh mint", + "low sodium soy sauce", + "corn kernels", + "vegetable oil", + "red bell pepper" + ] + }, + { + "id": 3829, + "cuisine": "indian", + "ingredients": [ + "salt", + "cinnamon sticks", + "onions", + "potatoes", + "cardamom pods", + "coconut milk", + "plum tomatoes", + "pepper", + "green chilies", + "ginger root", + "coriander", + "whole milk", + "oil", + "bay leaf" + ] + }, + { + "id": 35030, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "diced tomatoes", + "andouille sausage", + "green onions", + "great northern beans", + "dried thyme", + "long-grain rice", + "fat free less sodium chicken broth", + "ground red pepper" + ] + }, + { + "id": 33127, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "sugar", + "peach slices", + "ground cinnamon", + "baking powder", + "lemon juice", + "milk", + "salt" + ] + }, + { + "id": 42249, + "cuisine": "italian", + "ingredients": [ + "brandy", + "worcestershire sauce", + "unsalted butter", + "fine sea salt", + "slivered almonds", + "minced onion", + "flat leaf parsley", + "sea scallops", + "heavy cream" + ] + }, + { + "id": 7051, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "red food coloring", + "sherry", + "chinese five-spice powder", + "hoisin sauce", + "garlic", + "brown sugar", + "sesame oil" + ] + }, + { + "id": 20078, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "yellow onion", + "ground cumin", + "red bliss potato", + "ground turmeric", + "vegetable oil", + "cayenne pepper", + "garam masala", + "salt", + "chicken" + ] + }, + { + "id": 3744, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "red pepper", + "green pepper", + "oregano", + "tortillas", + "garlic", + "steak", + "olive oil", + "cilantro", + "oil", + "cumin", + "pepper", + "jalapeno chilies", + "salt", + "onions" + ] + }, + { + "id": 41524, + "cuisine": "thai", + "ingredients": [ + "lime zest", + "kosher salt", + "shrimp paste", + "peanut oil", + "boneless pork shoulder", + "black peppercorns", + "palm sugar", + "thai chile", + "asian fish sauce", + "kaffir lime leaves", + "lemongrass", + "cilantro root", + "galangal", + "long beans", + "minced garlic", + "shallots", + "shrimp powder" + ] + }, + { + "id": 6290, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed light brown sugar", + "purple onion", + "butter", + "lemon juice", + "minced garlic", + "hot sauce", + "pecans", + "worcestershire sauce" + ] + }, + { + "id": 26907, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "parsley", + "banana peppers", + "pepper", + "orzo pasta", + "kalamata", + "roasted red peppers", + "lemon", + "cucumber", + "cherry tomatoes", + "chives", + "salt" + ] + }, + { + "id": 40780, + "cuisine": "mexican", + "ingredients": [ + "semisweet chocolate", + "sweetened condensed milk", + "kahlúa", + "salt", + "ground cinnamon", + "large eggs", + "evaporated milk", + "cream cheese" + ] + }, + { + "id": 37192, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "crushed tomatoes", + "ground turkey breast", + "garlic", + "tomato paste", + "extra lean ground beef", + "dried thyme", + "turkey kielbasa", + "marjoram", + "tomato sauce", + "dried basil", + "bay leaves", + "onions", + "black peppercorns", + "mild olive oil", + "yellow squash", + "diced tomatoes", + "dried oregano" + ] + }, + { + "id": 37330, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "whole kernel corn, drain", + "butter", + "corn bread", + "cream style corn", + "sour cream", + "eggs", + "2% reduced-fat milk" + ] + }, + { + "id": 5244, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "ground cumin", + "vegetable oil", + "yellow onion", + "jalapeno chilies", + "salt", + "dried pinto beans", + "monterey jack" + ] + }, + { + "id": 24750, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "whipped cream", + "chopped pecans", + "large eggs", + "salt", + "granny smith apples", + "vanilla", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 35927, + "cuisine": "thai", + "ingredients": [ + "sugar", + "Sriracha", + "dark sesame oil", + "boneless chicken skinless thigh", + "shallots", + "fresh lime juice", + "ketchup", + "peeled fresh ginger", + "garlic cloves", + "fish sauce", + "honey", + "rice vinegar" + ] + }, + { + "id": 28162, + "cuisine": "italian", + "ingredients": [ + "pepper", + "chicken breasts", + "onions", + "crushed tomatoes", + "basil", + "olive oil", + "salt", + "celery ribs", + "grated parmesan cheese", + "carrots" + ] + }, + { + "id": 14010, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "kidney beans", + "sour cream", + "corn tortilla chips", + "taco seasoning mix", + "chopped onion", + "avocado", + "water", + "tomatoes with juice", + "shredded cheddar cheese", + "lean ground beef" + ] + }, + { + "id": 15523, + "cuisine": "mexican", + "ingredients": [ + "colby cheese", + "salsa", + "tomatoes", + "shredded monterey jack cheese", + "ground beef", + "chili powder", + "tortilla chips", + "mayonaise", + "shredded lettuce" + ] + }, + { + "id": 35352, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "dried oregano", + "garlic", + "chile pepper", + "ground cumin", + "chuck roast", + "salt" + ] + }, + { + "id": 28336, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "garlic", + "tortilla chips", + "serrano chile", + "lime", + "chili powder", + "hot sauce", + "sour cream", + "cheddar cheese", + "guacamole", + "cilantro leaves", + "scallions", + "kidney beans", + "extra-virgin olive oil", + "yellow onion", + "roasted tomatoes" + ] + }, + { + "id": 30752, + "cuisine": "mexican", + "ingredients": [ + "pitted black olives", + "flank steak", + "sour cream", + "flour tortillas", + "salsa", + "olive oil", + "shredded lettuce", + "chopped cilantro fresh", + "tomatoes", + "green onions", + "grated jack cheese" + ] + }, + { + "id": 1879, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "scallions", + "sugar", + "salt", + "fish sauce", + "shallots", + "pork belly", + "rice" + ] + }, + { + "id": 11118, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "olive oil", + "butter", + "fresh lemon juice", + "fresh spinach", + "grated parmesan cheese", + "salt", + "plum tomatoes", + "pepper", + "chicken cutlets", + "all-purpose flour", + "capers", + "lemon zest", + "linguine", + "fresh asparagus" + ] + }, + { + "id": 12486, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked brown rice", + "vegetable stock", + "smoked paprika", + "greens", + "jalapeno chilies", + "garlic", + "onions", + "andouille sausage", + "flour", + "okra", + "thick-cut bacon", + "white pepper", + "clam juice", + "celery seed", + "dried oregano" + ] + }, + { + "id": 49182, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "extra-virgin olive oil", + "fresh basil leaves", + "tomatoes", + "pecorino romano cheese", + "blanched almonds", + "black pepper", + "salt", + "fresh basil", + "dried fettuccine", + "garlic cloves" + ] + }, + { + "id": 27092, + "cuisine": "moroccan", + "ingredients": [ + "white pepper", + "cilantro sprigs", + "nigella seeds", + "preserved lemon", + "olive oil", + "salt", + "chicken", + "saffron threads", + "water", + "garlic", + "onions", + "tumeric", + "ginger", + "cinnamon sticks" + ] + }, + { + "id": 35860, + "cuisine": "italian", + "ingredients": [ + "ground chuck", + "ground nutmeg", + "low sodium chicken broth", + "all-purpose flour", + "pancetta", + "crushed tomatoes", + "large eggs", + "dry white wine", + "carrots", + "celery ribs", + "olive oil", + "grated parmesan cheese", + "ground pork", + "onions", + "kosher salt", + "unsalted butter", + "whole milk", + "freshly ground pepper" + ] + }, + { + "id": 5798, + "cuisine": "greek", + "ingredients": [ + "filo dough", + "feta cheese", + "freshly ground pepper", + "fresh spinach", + "salt", + "flat leaf parsley", + "olive oil", + "grated nutmeg", + "onions", + "melted butter", + "large eggs", + "lemon juice" + ] + }, + { + "id": 18387, + "cuisine": "mexican", + "ingredients": [ + "long-grain rice", + "milk", + "white sugar", + "water", + "cinnamon sticks", + "vanilla" + ] + }, + { + "id": 3022, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "kosher salt", + "garlic cloves", + "guajillo chiles", + "vegetable oil", + "dried oregano", + "sugar", + "sherry vinegar", + "hot water", + "white onion", + "all-purpose flour", + "ground cumin" + ] + }, + { + "id": 28446, + "cuisine": "southern_us", + "ingredients": [ + "turnip greens", + "dry white wine", + "cream cheese", + "wafer", + "crushed red pepper", + "sour cream", + "flatbread", + "grated parmesan cheese", + "salt", + "crackers", + "sweet onion", + "bacon slices", + "garlic cloves" + ] + }, + { + "id": 11030, + "cuisine": "greek", + "ingredients": [ + "honey-flavored greek style yogurt", + "frozen mango", + "mango", + "mint", + "mango juice", + "honey" + ] + }, + { + "id": 46107, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "hoisin sauce", + "salt", + "oyster sauce", + "chopped garlic", + "chicken stock", + "water", + "cornflour", + "sweet corn", + "steak", + "black pepper", + "marinade", + "sauce", + "carrots", + "sugar", + "light soy sauce", + "rice vermicelli", + "oil", + "onions" + ] + }, + { + "id": 24311, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "almond extract", + "apricot preserves", + "slivered almonds", + "calvados", + "salt", + "unsalted butter", + "vanilla extract", + "tart", + "sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 21070, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "unsalted butter", + "all-purpose flour", + "milk", + "broccoli florets", + "shredded cheddar cheese", + "egg noodles", + "chicken broth", + "ground black pepper", + "chicken breasts" + ] + }, + { + "id": 42434, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "provolone cheese", + "dried oregano", + "cooked ham", + "yellow mustard", + "bread dough", + "italian sausage", + "salami", + "sausages", + "American cheese", + "dijon style mustard", + "cornmeal" + ] + }, + { + "id": 13717, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "chili powder", + "chuck steaks", + "ground cumin", + "mint", + "ground black pepper", + "ground coriander", + "coriander", + "tumeric", + "beef stock", + "garlic cloves", + "basmati rice", + "tomato paste", + "olive oil", + "ginger", + "lemon juice" + ] + }, + { + "id": 27430, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "sugar", + "oyster sauce", + "gai lan", + "peanut oil", + "minced garlic" + ] + }, + { + "id": 48552, + "cuisine": "southern_us", + "ingredients": [ + "water", + "onions", + "peas", + "beef stock cubes", + "kielbasa" + ] + }, + { + "id": 11650, + "cuisine": "chinese", + "ingredients": [ + "dry sherry", + "fresh ginger", + "oil", + "soy sauce", + "chinese five-spice powder", + "garlic powder", + "chicken" + ] + }, + { + "id": 44654, + "cuisine": "indian", + "ingredients": [ + "bread crumbs", + "fresh ginger", + "garlic", + "chopped cilantro", + "cumin", + "garlic paste", + "fresh cilantro", + "shredded carrots", + "green chilies", + "coriander", + "canola oil", + "mayonaise", + "lime", + "chili powder", + "cumin seed", + "Madras curry powder", + "cauliflower", + "toasted buns", + "large eggs", + "salt", + "onions", + "asafetida" + ] + }, + { + "id": 1446, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "orange marmalade", + "salt", + "saffron threads", + "olive oil", + "baking powder", + "gran marnier", + "plain low-fat yogurt", + "large eggs", + "fresh orange juice", + "large egg whites", + "cooking spray", + "all-purpose flour" + ] + }, + { + "id": 37339, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "pastry", + "garlic", + "shredded mozzarella cheese", + "plum tomatoes", + "tomato paste", + "dried basil", + "salt", + "ground beef", + "sausage casings", + "sliced black olives", + "fresh mushrooms", + "onions", + "pie crust", + "water", + "part-skim ricotta cheese", + "red bell pepper", + "dried oregano" + ] + }, + { + "id": 23790, + "cuisine": "japanese", + "ingredients": [ + "water", + "rice", + "sugar", + "salt", + "cucumber", + "wasabi", + "peeled shrimp", + "carrots", + "soy sauce", + "rice vinegar", + "nori" + ] + }, + { + "id": 17797, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "zucchini", + "vegetable oil", + "oyster mushrooms", + "onions", + "tomatoes", + "hot pepper sauce", + "chili powder", + "vegetable broth", + "ancho chile pepper", + "olive oil", + "flour tortillas", + "tomatillos", + "salt", + "chopped cilantro fresh", + "eggplant", + "green onions", + "large garlic cloves", + "red bell pepper", + "ground cumin" + ] + }, + { + "id": 4299, + "cuisine": "spanish", + "ingredients": [ + "pure vanilla extract", + "unsalted butter", + "espresso beans", + "ground cardamom", + "milk chocolate", + "vegetable oil", + "all-purpose flour", + "milk", + "cinnamon", + "grated lemon zest", + "sugar", + "large eggs", + "salt", + "orange zest" + ] + }, + { + "id": 21130, + "cuisine": "chinese", + "ingredients": [ + "short-grain rice", + "green peas", + "canola oil", + "large eggs", + "garlic cloves", + "ground black pepper", + "salt", + "sliced green onions", + "low sodium soy sauce", + "peeled fresh ginger", + "chopped cilantro fresh" + ] + }, + { + "id": 12165, + "cuisine": "chinese", + "ingredients": [ + "white distilled vinegar", + "chicken breasts", + "corn starch", + "fresh ginger", + "garlic", + "light soy sauce", + "vegetable oil", + "unsweetened pineapple juice", + "sugar", + "green onions", + "cayenne pepper" + ] + }, + { + "id": 11114, + "cuisine": "indian", + "ingredients": [ + "coriander powder", + "ground turmeric", + "chili powder", + "potatoes", + "salt" + ] + }, + { + "id": 6004, + "cuisine": "jamaican", + "ingredients": [ + "mixed spice", + "vanilla", + "coconut milk", + "brown sugar", + "cinnamon", + "all-purpose flour", + "yellow corn meal", + "granulated sugar", + "salt", + "shredded coconut", + "raisins", + "grated nutmeg" + ] + }, + { + "id": 25883, + "cuisine": "southern_us", + "ingredients": [ + "soy milk", + "baking powder", + "sausages", + "vinegar", + "salt", + "baking soda", + "vegan butter", + "black pepper", + "flour", + "oil" + ] + }, + { + "id": 30705, + "cuisine": "chinese", + "ingredients": [ + "sugar substitute", + "rice vinegar", + "white vinegar", + "wheat free soy sauce", + "scallions", + "water", + "xanthan gum", + "chicken wings", + "sesame oil", + "dried chile" + ] + }, + { + "id": 21416, + "cuisine": "french", + "ingredients": [ + "anchovies", + "Niçoise olives", + "kosher salt", + "frozen pastry puff sheets", + "olive oil", + "onions", + "pepper", + "fresh thyme leaves" + ] + }, + { + "id": 42524, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "jicama", + "mango", + "lime juice", + "lettuce leaves", + "fresh parsley", + "pepper", + "radishes", + "salt", + "dijon mustard", + "shallots" + ] + }, + { + "id": 21973, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "hominy", + "lime wedges", + "crema", + "tortilla chips", + "coriander", + "cotija", + "chicken breasts", + "red pepper flakes", + "yellow onion", + "bay leaf", + "chicken stock", + "radishes", + "chopped fresh thyme", + "salt", + "scallions", + "cumin", + "cherry tomatoes", + "chili powder", + "garlic", + "fresh oregano", + "chopped cilantro" + ] + }, + { + "id": 3187, + "cuisine": "japanese", + "ingredients": [ + "wasabi powder", + "fresh lemon juice", + "tuna fillets", + "salt", + "fat-free mayonnaise", + "vegetable oil", + "and fat free half half" + ] + }, + { + "id": 37379, + "cuisine": "korean", + "ingredients": [ + "mushrooms", + "onions", + "zucchini", + "squid", + "cabbage", + "olive oil", + "sauce", + "noodles", + "pork tenderloin", + "cucumber" + ] + }, + { + "id": 44933, + "cuisine": "vietnamese", + "ingredients": [ + "spring roll wrappers", + "ground black pepper", + "corn oil", + "garlic", + "thai basil", + "soup", + "ground pork", + "medium shrimp", + "kosher salt", + "egg whites", + "shallots", + "crabmeat", + "leaves", + "lettuce leaves", + "grated carrot" + ] + }, + { + "id": 41842, + "cuisine": "thai", + "ingredients": [ + "baking powder", + "rice flour", + "large eggs", + "salt", + "corn", + "Thai red curry paste", + "sweet chili sauce", + "vegetable oil", + "lime leaves" + ] + }, + { + "id": 36394, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "cream", + "chili powder", + "salt", + "tumeric", + "garam masala", + "diced tomatoes", + "frozen peas", + "ground ginger", + "crushed tomatoes", + "butter", + "coriander", + "sugar", + "mushrooms", + "extra-virgin olive oil", + "cumin" + ] + }, + { + "id": 14082, + "cuisine": "thai", + "ingredients": [ + "sugar pea", + "tempeh", + "coconut milk", + "coconut sugar", + "thai basil", + "red curry paste", + "coconut oil", + "mushrooms", + "lime juice", + "tamari soy sauce", + "baby corn" + ] + }, + { + "id": 38192, + "cuisine": "spanish", + "ingredients": [ + "pasta", + "vine ripened tomatoes", + "onions", + "lobster", + "flat leaf parsley", + "dry white wine", + "bay leaf", + "olive oil", + "garlic cloves", + "saffron" + ] + }, + { + "id": 18494, + "cuisine": "korean", + "ingredients": [ + "sweet onion", + "red pepper", + "tomato paste", + "beef", + "garlic", + "cheddar cheese", + "bell pepper", + "pepperoncini", + "soy sauce", + "beef for stew", + "french rolls" + ] + }, + { + "id": 17183, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "bread slices", + "bacon slices", + "strawberry preserves", + "cheese" + ] + }, + { + "id": 1020, + "cuisine": "russian", + "ingredients": [ + "water", + "ramen noodles", + "large eggs", + "salt", + "baking powder", + "granulated sugar", + "whipping cream" + ] + }, + { + "id": 34572, + "cuisine": "southern_us", + "ingredients": [ + "minced garlic", + "flour", + "lard", + "minced onion", + "buttermilk", + "baking soda", + "baking powder", + "cornmeal", + "eggs", + "crisco", + "salt" + ] + }, + { + "id": 15187, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "diced tomatoes", + "zucchini", + "canola oil" + ] + }, + { + "id": 31688, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "dried thyme", + "large garlic cloves", + "onions", + "chicken broth", + "black pepper", + "vegetable oil", + "fresh parsley", + "celery ribs", + "green bell pepper", + "file powder", + "all-purpose flour", + "sliced green onions", + "tasso", + "andouille sausage", + "ground red pepper", + "shrimp" + ] + }, + { + "id": 14483, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "milk", + "salt", + "black pepper", + "low sodium chicken broth", + "water", + "garlic", + "fresh rosemary", + "parmesan cheese" + ] + }, + { + "id": 13827, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "mayonaise", + "prepared horseradish", + "creole mustard", + "ground pepper", + "garlic cloves", + "sugar", + "white wine vinegar" + ] + }, + { + "id": 33825, + "cuisine": "filipino", + "ingredients": [ + "water", + "garlic chili sauce", + "black beans", + "salt", + "soy sauce", + "tilapia fillets", + "pepper", + "oil" + ] + }, + { + "id": 31524, + "cuisine": "british", + "ingredients": [ + "strawberries", + "sponge cake", + "jelli strawberri", + "whipped topping", + "custard" + ] + }, + { + "id": 40811, + "cuisine": "japanese", + "ingredients": [ + "water", + "salt", + "bonito flakes", + "sesame seeds", + "nori", + "white rice" + ] + }, + { + "id": 14478, + "cuisine": "cajun_creole", + "ingredients": [ + "diced onions", + "minced garlic", + "littleneck clams", + "carrots", + "broth", + "lump crab meat", + "butter", + "salt", + "bay leaf", + "mussels", + "crawfish", + "diced tomatoes", + "freshly ground pepper", + "fresh parsley", + "chicken broth", + "chopped fresh thyme", + "chopped celery", + "shrimp", + "basmati rice" + ] + }, + { + "id": 20903, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "worcestershire sauce", + "garlic cloves", + "cider vinegar", + "chili sauce", + "ketchup", + "dry mustard", + "lemon juice", + "ground red pepper", + "chopped onion" + ] + }, + { + "id": 43761, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "olive oil", + "yellow onion", + "chervil", + "salt", + "gold potatoes" + ] + }, + { + "id": 39401, + "cuisine": "italian", + "ingredients": [ + "french baguette", + "grated parmesan cheese", + "salt", + "fresh basil", + "chopped tomatoes", + "green onions", + "olive oil", + "chopped almonds", + "spinach", + "ground black pepper", + "garlic" + ] + }, + { + "id": 23430, + "cuisine": "indian", + "ingredients": [ + "soy sauce", + "florets", + "cauliflower", + "peeled fresh ginger", + "ground cumin", + "ketchup", + "garlic cloves", + "sugar", + "vegetable oil" + ] + }, + { + "id": 2087, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cayenne", + "rice vinegar", + "toasted sesame oil", + "olive oil", + "lemon", + "fresh herbs", + "honey", + "butter", + "fresh mushrooms", + "noodles", + "sesame seeds", + "ginger", + "lemon juice" + ] + }, + { + "id": 47984, + "cuisine": "indian", + "ingredients": [ + "asafoetida", + "coriander seeds", + "oil", + "tomatoes", + "minced garlic", + "salt", + "ground turmeric", + "red chili powder", + "water", + "cumin seed", + "red chili peppers", + "arhar", + "onions" + ] + }, + { + "id": 36402, + "cuisine": "korean", + "ingredients": [ + "rib eye steaks", + "water", + "rice wine", + "carrots", + "soy sauce", + "sesame seeds", + "garlic", + "sugar", + "honey", + "sesame oil", + "onions", + "pepper", + "asian pear", + "scallions" + ] + }, + { + "id": 31503, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "dried bonito flakes", + "soy sauce", + "daikon", + "corn starch", + "sugar", + "soft tofu", + "oil", + "dashi", + "ginger", + "sliced green onions" + ] + }, + { + "id": 35824, + "cuisine": "indian", + "ingredients": [ + "lite coconut milk", + "Massaman curry paste", + "peanuts", + "scallions", + "kale", + "chickpeas", + "butternut squash", + "onions" + ] + }, + { + "id": 3107, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "large garlic cloves", + "olive oil", + "leg of lamb", + "fresh basil", + "garlic cloves", + "grated parmesan cheese", + "fresh basil leaves" + ] + }, + { + "id": 1298, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "fresh mint", + "firmly packed light brown sugar", + "whipping cream", + "semisweet chocolate", + "fresh raspberries", + "sugar", + "vanilla extract" + ] + }, + { + "id": 40123, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "all purpose unbleached flour", + "unsalted butter", + "salt", + "baking powder", + "cornmeal", + "sugar", + "buttermilk" + ] + }, + { + "id": 10513, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "granulated sugar", + "non-fat sour cream", + "light cream cheese", + "ground cinnamon", + "bananas", + "carambola", + "margarine", + "phyllo dough", + "cooking spray", + "dry bread crumbs", + "papaya", + "soft tofu", + "grated lemon zest" + ] + }, + { + "id": 30213, + "cuisine": "mexican", + "ingredients": [ + "swordfish steaks", + "lime wedges", + "cabbage", + "jalapeno chilies", + "sour cream", + "olive oil", + "red wine vinegar", + "tomatoes", + "green onions", + "corn tortillas" + ] + }, + { + "id": 9240, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "scallions", + "Gochujang base", + "ground pork", + "garlic cloves", + "sweet onion", + "firm tofu" + ] + }, + { + "id": 13246, + "cuisine": "french", + "ingredients": [ + "pepper", + "chives", + "olive oil", + "chopped parsley", + "pork tenderloin", + "rosemary", + "salt" + ] + }, + { + "id": 10441, + "cuisine": "french", + "ingredients": [ + "bacon", + "unsalted butter", + "lardons", + "large eggs", + "black pepper", + "salt" + ] + }, + { + "id": 3690, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "corn husks", + "toasted pine nuts", + "kosher salt", + "golden raisins", + "anise seed", + "unsalted butter", + "masa harina", + "light brown sugar", + "water", + "baking powder" + ] + }, + { + "id": 814, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "grated lemon zest", + "fresh basil", + "extra-virgin olive oil", + "fresh lemon juice", + "large garlic cloves", + "anchovy fillets", + "capers", + "cornichons", + "flat leaf parsley" + ] + }, + { + "id": 21722, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "jalapeno chilies", + "mango", + "black pepper", + "cilantro", + "tomatoes", + "sea salt", + "lime", + "purple onion" + ] + }, + { + "id": 43689, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "sun-dried tomatoes", + "lemon rind", + "baguette", + "crushed red pepper", + "fresh basil", + "ground black pepper", + "garlic cloves", + "olive oil", + "goat cheese" + ] + }, + { + "id": 36870, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "large garlic cloves", + "flat leaf parsley", + "parmigiano reggiano cheese", + "salt", + "onions", + "celery ribs", + "ditalini", + "carrots", + "dried rosemary", + "water", + "extra-virgin olive oil", + "borlotti" + ] + }, + { + "id": 22021, + "cuisine": "indian", + "ingredients": [ + "chopped tomatoes", + "ginger", + "cinnamon sticks", + "chicken", + "finely chopped onion", + "ground coriander", + "ground turmeric", + "garam masala", + "cardamom pods", + "ghee", + "ground cumin", + "curry leaves", + "chicken thigh fillets", + "greek yogurt", + "chopped garlic" + ] + }, + { + "id": 41035, + "cuisine": "brazilian", + "ingredients": [ + "olive oil", + "lemon", + "garlic", + "okra pods", + "jumbo shrimp", + "ground dried shrimp", + "cilantro", + "cilantro leaves", + "cooked white rice", + "ground black pepper", + "dende oil", + "salt", + "red bell pepper", + "water", + "Tabasco Pepper Sauce", + "crushed red pepper flakes", + "roasted peanuts", + "onions" + ] + }, + { + "id": 9542, + "cuisine": "mexican", + "ingredients": [ + "tequila", + "juice concentrate", + "fresh lime juice", + "margarita mix", + "ice", + "orange liqueur" + ] + }, + { + "id": 15858, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "red preserved bean curd", + "pork belly", + "chinese five-spice powder", + "sugar", + "fine sea salt", + "baking soda" + ] + }, + { + "id": 42850, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "white sugar", + "pinenuts", + "balsamic vinegar", + "sun-dried tomatoes", + "water", + "fresh basil leaves" + ] + }, + { + "id": 35265, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "balsamic vinegar", + "salt", + "ground black pepper", + "purple onion", + "chopped cilantro fresh", + "low sodium tomato juice", + "whole grain bread", + "chipotle chile powder", + "orange bell pepper", + "extra-virgin olive oil", + "cucumber" + ] + }, + { + "id": 24811, + "cuisine": "chinese", + "ingredients": [ + "chestnuts", + "peeled fresh ginger", + "peanut oil", + "soy sauce", + "napa cabbage", + "sugar", + "sesame oil", + "minced garlic", + "salt" + ] + }, + { + "id": 37283, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "barbecued pork", + "flour tortillas", + "cilantro sprigs", + "chopped cilantro fresh", + "barbecue sauce", + "cheese", + "sliced green onions", + "butter", + "sour cream" + ] + }, + { + "id": 44057, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "scallions", + "shrimp", + "sugar", + "chicken breasts", + "sausages", + "water", + "oil", + "onions", + "glutinous rice", + "shallots", + "oyster sauce" + ] + }, + { + "id": 10025, + "cuisine": "korean", + "ingredients": [ + "rice cakes", + "sugar", + "korean chile", + "dark sesame oil", + "lower sodium soy sauce", + "canola oil" + ] + }, + { + "id": 22293, + "cuisine": "mexican", + "ingredients": [ + "water", + "chihuahua cheese", + "cooked rice", + "mole paste", + "beans" + ] + }, + { + "id": 1350, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "chopped garlic", + "grated parmesan cheese", + "all-purpose flour", + "clams", + "crushed red pepper", + "refrigerated pizza dough", + "flat leaf parsley" + ] + }, + { + "id": 26795, + "cuisine": "spanish", + "ingredients": [ + "potatoes", + "olive oil", + "onions", + "pepper", + "salt", + "large eggs" + ] + }, + { + "id": 12198, + "cuisine": "french", + "ingredients": [ + "diced potatoes", + "white wine", + "dried thyme", + "lobster", + "onion powder", + "essence", + "onions", + "clams", + "crusty bread", + "pepper", + "olive oil", + "bay leaves", + "red pepper", + "cayenne pepper", + "yellow peppers", + "tomatoes", + "black pepper", + "chorizo", + "aioli", + "soft shelled crabs", + "salt", + "chopped parsley", + "saffron", + "mussels", + "shucked oysters", + "minced garlic", + "garlic powder", + "green onions", + "paprika", + "shrimp", + "oregano" + ] + }, + { + "id": 32580, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "grated parmesan cheese", + "salt", + "pinenuts", + "extra-virgin olive oil", + "softened butter", + "black pepper", + "basil leaves", + "walnuts", + "parsley leaves", + "garlic" + ] + }, + { + "id": 49101, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "purple onion", + "chopped cilantro fresh", + "jalapeno chilies", + "garlic cloves", + "corn kernels", + "salt", + "plum tomatoes", + "cooking spray", + "fresh lime juice" + ] + }, + { + "id": 43359, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "baking powder", + "bread flour", + "unsalted butter", + "ramps", + "eggs", + "heavy cream" + ] + }, + { + "id": 33393, + "cuisine": "mexican", + "ingredients": [ + "lettuce leaves", + "salt", + "garlic powder", + "chili powder", + "ground cumin", + "sliced tomatoes", + "boneless skinless chicken breasts", + "onions", + "guacamole", + "onion powder" + ] + }, + { + "id": 6436, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "mint leaves", + "green tea", + "boiling water" + ] + }, + { + "id": 46790, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "water", + "salt", + "parmigiano-reggiano cheese", + "1% low-fat milk", + "mascarpone", + "polenta" + ] + }, + { + "id": 36323, + "cuisine": "korean", + "ingredients": [ + "jasmine rice", + "asparagus", + "scallions", + "eggs", + "shiitake", + "sesame oil", + "sesame seeds", + "gochugaru", + "carrots", + "soy sauce", + "swiss chard", + "garlic" + ] + }, + { + "id": 46717, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "olive oil", + "garlic", + "balsamic vinegar", + "parmesan cheese", + "dried oregano" + ] + }, + { + "id": 42510, + "cuisine": "japanese", + "ingredients": [ + "ground chicken", + "lemon", + "white sesame seeds", + "chicken demi-glace", + "savoy spinach", + "garlic", + "soy sauce", + "ramen noodles", + "scallions", + "shiitake", + "ginger", + "panko breadcrumbs" + ] + }, + { + "id": 47859, + "cuisine": "spanish", + "ingredients": [ + "vanilla extract", + "sugar", + "non stick spray", + "eggs", + "cream of coconut", + "evaporated milk", + "condensed milk" + ] + }, + { + "id": 5874, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "grated parmesan cheese", + "sliced black olives", + "shredded mozzarella cheese", + "bread crumbs", + "garlic", + "zucchini", + "ground beef" + ] + }, + { + "id": 10167, + "cuisine": "mexican", + "ingredients": [ + "dried currants", + "roasted pepitas", + "ground beef", + "poblano peppers", + "garlic", + "ground cumin", + "lime", + "cilantro", + "long grain white rice", + "tomato paste", + "crema mexican", + "yellow onion" + ] + }, + { + "id": 45709, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "ginger", + "scallions", + "vegetable oil", + "rice vinegar", + "sesame oil", + "salt", + "boiling water", + "sugar", + "red pepper flakes", + "all-purpose flour" + ] + }, + { + "id": 13967, + "cuisine": "italian", + "ingredients": [ + "eggs", + "white sugar", + "vegetable oil", + "all-purpose flour", + "anise oil", + "whiskey" + ] + }, + { + "id": 4696, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "butter", + "milk", + "yeast", + "warm water", + "salt", + "eggs", + "flour" + ] + }, + { + "id": 30539, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "salt", + "flat leaf parsley", + "fresh parmesan cheese", + "crushed red pepper", + "sliced mushrooms", + "fresh basil", + "soft tofu", + "jumbo pasta shells", + "olive oil", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 35545, + "cuisine": "italian", + "ingredients": [ + "melted butter", + "ricotta cheese", + "grated nutmeg", + "pepper", + "salt", + "spinach", + "extra large eggs", + "chopped fresh sage", + "parmigiano reggiano cheese", + "all-purpose flour" + ] + }, + { + "id": 42839, + "cuisine": "mexican", + "ingredients": [ + "water", + "cilantro sprigs", + "poblano chiles", + "onions", + "pepper", + "chives", + "garlic cloves", + "adobo sauce", + "tomatoes", + "fresh cilantro", + "salt", + "chayotes", + "oregano", + "chipotle chile", + "corn kernels", + "dry bread crumbs", + "bay leaf", + "sliced green onions" + ] + }, + { + "id": 6110, + "cuisine": "british", + "ingredients": [ + "ground ginger", + "salt", + "lemon juice", + "lemon", + "dry bread crumbs", + "unsalted butter", + "all-purpose flour", + "cold water", + "heavy cream", + "golden syrup" + ] + }, + { + "id": 22898, + "cuisine": "moroccan", + "ingredients": [ + "orange", + "broccoli", + "cinnamon sticks", + "lamb stock", + "clear honey", + "ground almonds", + "onions", + "olive oil", + "lamb", + "couscous", + "sliced almonds", + "dried apricot", + "garlic cloves", + "chopped fresh mint" + ] + }, + { + "id": 26793, + "cuisine": "french", + "ingredients": [ + "corn oil", + "sherry vinegar", + "fine sea salt", + "dijon mustard", + "ground white pepper", + "olive oil", + "red wine vinegar" + ] + }, + { + "id": 32303, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "garlic", + "shallots", + "salt", + "chile pepper", + "chopped cilantro fresh", + "tomatillos" + ] + }, + { + "id": 41838, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "ground black pepper", + "peanut oil", + "water", + "salt", + "celery", + "ketchup", + "garlic", + "lemon juice", + "sugar", + "fresh ginger", + "rice vinegar", + "onions" + ] + }, + { + "id": 16538, + "cuisine": "vietnamese", + "ingredients": [ + "cooking spray", + "beef tenderloin", + "oyster sauce", + "low sodium soy sauce", + "vegetable oil", + "yellow onion", + "cucumber", + "green cabbage", + "basil leaves", + "light coconut milk", + "carrots", + "sugar", + "rice vermicelli", + "sauce", + "beansprouts" + ] + }, + { + "id": 10604, + "cuisine": "korean", + "ingredients": [ + "low sodium soy sauce", + "garlic cloves", + "salt", + "brown sugar", + "dark sesame oil" + ] + }, + { + "id": 16009, + "cuisine": "spanish", + "ingredients": [ + "Belgian endive", + "sherry vinegar", + "garlic", + "almonds", + "extra-virgin olive oil", + "goat cheese", + "orange", + "shallots", + "vinaigrette", + "pepper", + "chives", + "salt" + ] + }, + { + "id": 6241, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "fresh cilantro", + "cucumber", + "eggs", + "chili pepper", + "meat filling", + "french baguette", + "liver pate", + "mayonaise", + "pickled carrots", + "cold cut" + ] + }, + { + "id": 28924, + "cuisine": "italian", + "ingredients": [ + "granulated sugar", + "walnuts", + "baking soda", + "salt", + "semi-sweet chocolate morsels", + "large eggs", + "confectioners sugar", + "unsalted butter", + "all-purpose flour", + "unsweetened cocoa powder" + ] + }, + { + "id": 9125, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "shallots", + "garlic", + "truffle oil", + "heavy cream", + "chopped onion", + "ground black pepper", + "butter", + "chanterelle", + "arborio rice", + "dry white wine", + "button mushrooms", + "crumbled gorgonzola" + ] + }, + { + "id": 16505, + "cuisine": "mexican", + "ingredients": [ + "roma tomatoes", + "chiles", + "red wine vinegar", + "Anaheim chile", + "green onions" + ] + }, + { + "id": 23649, + "cuisine": "british", + "ingredients": [ + "yellow split peas", + "eggs", + "onions", + "butter", + "seasoning", + "shanks" + ] + }, + { + "id": 36321, + "cuisine": "thai", + "ingredients": [ + "tomatoes", + "white pepper", + "cilantro leaves", + "cucumber", + "fish sauce", + "lime wedges", + "scallions", + "eggs", + "light soy sauce", + "rice", + "crab meat", + "chiles", + "garlic", + "oil" + ] + }, + { + "id": 35228, + "cuisine": "cajun_creole", + "ingredients": [ + "granulated garlic", + "smoked turkey breast", + "parsley", + "purple onion", + "red bell pepper", + "andouille sausage", + "kosher salt", + "flour", + "crushed red pepper flakes", + "carrots", + "cooked white rice", + "mesquite seasoning", + "smoked turkey", + "onion powder", + "garlic", + "ground white pepper", + "canola oil", + "green bell pepper", + "white onion", + "cayenne", + "worcestershire sauce", + "scallions", + "celery" + ] + }, + { + "id": 15029, + "cuisine": "mexican", + "ingredients": [ + "salmon fillets", + "bacon", + "avocado", + "tortillas", + "pepper", + "salt", + "tomatoes", + "shredded lettuce" + ] + }, + { + "id": 44114, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "flour", + "baby spinach", + "sour cream", + "chile powder", + "olive oil", + "vegetable oil", + "garlic", + "onions", + "corn", + "Mexican oregano", + "vegetable broth", + "corn tortillas", + "cheddar cheese", + "ground black pepper", + "coarse salt", + "smoked paprika", + "ground cumin" + ] + }, + { + "id": 41787, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dried basil", + "french rolls", + "pepper", + "salt", + "dried oregano", + "tomato sauce", + "olive oil", + "onions", + "fennel seeds", + "minced garlic", + "ground turkey" + ] + }, + { + "id": 30235, + "cuisine": "cajun_creole", + "ingredients": [ + "sausage links", + "cayenne", + "chicken thighs", + "green bell pepper", + "orange bell pepper", + "onions", + "fresh basil", + "cherry tomatoes", + "thyme sprigs", + "celery ribs", + "corn", + "oil" + ] + }, + { + "id": 16720, + "cuisine": "vietnamese", + "ingredients": [ + "peanuts", + "garlic", + "fresh lime juice", + "fish sauce", + "hoisin sauce", + "garlic chili sauce", + "white sugar", + "lettuce", + "thai basil", + "rice", + "cooked shrimp", + "water", + "rice vermicelli", + "fresh mint", + "chopped cilantro fresh" + ] + }, + { + "id": 39091, + "cuisine": "thai", + "ingredients": [ + "white pepper", + "purple onion", + "apple cider vinegar", + "cucumber", + "stevia powder", + "salt", + "red pepper flakes" + ] + }, + { + "id": 22739, + "cuisine": "italian", + "ingredients": [ + "eggs", + "salt", + "water", + "all-purpose flour" + ] + }, + { + "id": 5534, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "jumbo pasta shells", + "italian seasoning", + "pasta sauce", + "large eggs", + "shredded mozzarella cheese", + "ground nutmeg", + "ricotta", + "pepper", + "salt", + "frozen chopped spinach, thawed and squeezed dry" + ] + }, + { + "id": 4329, + "cuisine": "indian", + "ingredients": [ + "garlic", + "cayenne pepper", + "ground cumin", + "baby spinach", + "beef broth", + "ground turmeric", + "ginger", + "yellow onion", + "canola oil", + "yoghurt", + "salt", + "leg of lamb" + ] + }, + { + "id": 4508, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "tomatoes with juice", + "ground cumin", + "jalapeno chilies", + "garlic", + "rotelle", + "salt", + "sugar", + "cilantro", + "chopped onion" + ] + }, + { + "id": 19879, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "pure vanilla extract", + "large eggs", + "granulated sugar", + "baking soda", + "salt" + ] + }, + { + "id": 36624, + "cuisine": "thai", + "ingredients": [ + "lemon grass", + "sea salt", + "white peppercorns", + "hot chili", + "shallots", + "cumin seed", + "lime rind", + "shrimp paste", + "garlic", + "coriander seeds", + "cilantro root", + "galangal" + ] + }, + { + "id": 22001, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "andouille sausage", + "vegetable oil", + "creole seasoning", + "cooked rice", + "bay leaves", + "all-purpose flour", + "shrimp", + "chicken broth", + "dried thyme", + "worcestershire sauce", + "garlic cloves", + "green bell pepper", + "green onions", + "hot sauce", + "onions" + ] + }, + { + "id": 44398, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "lime", + "hellmann' or best food light mayonnais", + "milk", + "chopped cilantro fresh", + "olive oil" + ] + }, + { + "id": 17063, + "cuisine": "greek", + "ingredients": [ + "ground pepper", + "canola oil", + "tomatoes", + "salt", + "purple onion", + "feta cheese", + "fresh parsley" + ] + }, + { + "id": 31452, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "ground black pepper", + "low fat mozzarella", + "yellow squash", + "grated parmesan cheese", + "dried thyme", + "zucchini", + "salt", + "garlic powder", + "green onions" + ] + }, + { + "id": 7999, + "cuisine": "italian", + "ingredients": [ + "yellow tomato", + "ground black pepper", + "chees fresh mozzarella", + "five-spice powder", + "tomatoes", + "french bread", + "salt", + "seasoning", + "honey", + "vegetable oil", + "garlic cloves", + "water", + "peeled fresh ginger", + "rice vinegar" + ] + }, + { + "id": 17819, + "cuisine": "french", + "ingredients": [ + "strawberries", + "fresh blueberries", + "fresh lemon juice", + "dry red wine", + "blackberries", + "sugar", + "fresh raspberries" + ] + }, + { + "id": 29021, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "ground beef", + "oil", + "enchilada sauce", + "flour" + ] + }, + { + "id": 6183, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "jalapeno chilies", + "shrimp", + "white onion", + "olive oil", + "lemon", + "tomatoes", + "lime", + "serrano peppers", + "cucumber", + "scallops", + "ground black pepper", + "cilantro" + ] + }, + { + "id": 28044, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "milk", + "salt", + "Louisiana Hot Sauce", + "unsalted butter", + "grits", + "andouille sausage", + "extra sharp white cheddar cheese", + "red bell pepper", + "pepper", + "shallots" + ] + }, + { + "id": 39610, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "hot sauce", + "sesame oil", + "garlic puree", + "green onions", + "cayenne pepper", + "brown sugar", + "rice vinegar" + ] + }, + { + "id": 24077, + "cuisine": "greek", + "ingredients": [ + "minced garlic", + "salt", + "fresh rosemary", + "olive oil", + "fresh parsley", + "pita bread", + "sweet onion", + "nonfat yogurt plain", + "pepper", + "top sirloin steak", + "dried oregano" + ] + }, + { + "id": 24192, + "cuisine": "chinese", + "ingredients": [ + "instant rice", + "sherry", + "vegetable oil", + "dark sesame oil", + "grated orange", + "water chestnuts", + "flank steak", + "salt", + "lemon juice", + "minced garlic", + "peeled fresh ginger", + "crushed red pepper", + "orange juice", + "low sodium soy sauce", + "broccoli florets", + "sliced carrots", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 7985, + "cuisine": "korean", + "ingredients": [ + "pepper", + "buttermilk", + "sour cream", + "mayonaise", + "garlic powder", + "salt", + "Korean chile flakes", + "chili seasoning", + "garlic", + "black pepper", + "flour", + "boneless skinless chicken" + ] + }, + { + "id": 19843, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "chopped cilantro fresh", + "chili powder", + "tomatoes", + "garlic", + "poblano peppers", + "ground cumin" + ] + }, + { + "id": 19714, + "cuisine": "brazilian", + "ingredients": [ + "ice", + "lime", + "vodka", + "white sugar" + ] + }, + { + "id": 6274, + "cuisine": "southern_us", + "ingredients": [ + "cooked ham", + "chopped parsley", + "sweet gherkin", + "dijon mustard", + "white sandwich bread", + "pecans", + "Tabasco Pepper Sauce", + "mayonaise", + "onions" + ] + }, + { + "id": 45092, + "cuisine": "british", + "ingredients": [ + "buttermilk", + "baking soda", + "all-purpose flour", + "cream of tartar", + "salt", + "unsalted butter" + ] + }, + { + "id": 10304, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "salt", + "sugar", + "sweet potatoes", + "whipped topping", + "ground cinnamon", + "large eggs", + "grated lemon zest", + "piecrust", + "vanilla extract", + "nonfat evaporated milk" + ] + }, + { + "id": 46238, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "boneless skinless chicken breast halves", + "onions", + "curry powder" + ] + }, + { + "id": 37024, + "cuisine": "thai", + "ingredients": [ + "yellow crookneck squash", + "Thai red curry paste", + "chopped cilantro fresh", + "nonfat yogurt", + "vegetable broth", + "curry powder", + "large garlic cloves", + "onions", + "vegetable oil", + "light coconut milk" + ] + }, + { + "id": 14885, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "cooking spray", + "ground turkey", + "seasoned bread crumbs", + "marinara sauce", + "worcestershire sauce", + "ground black pepper", + "quick-cooking oats", + "garlic salt", + "large eggs", + "hot dog bun", + "italian seasoning" + ] + }, + { + "id": 16951, + "cuisine": "mexican", + "ingredients": [ + "beef bouillon", + "salt", + "ground black pepper", + "jalapeno chilies", + "garlic cloves", + "tomatoes", + "flour tortillas", + "yellow onion", + "tri tip", + "vegetable oil" + ] + }, + { + "id": 23561, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "salt", + "chicken stock", + "crushed garlic", + "white wine", + "loin pork roast", + "olive oil" + ] + }, + { + "id": 39223, + "cuisine": "french", + "ingredients": [ + "olive oil", + "dry white wine", + "roast", + "flat leaf parsley", + "ground black pepper", + "sea salt", + "figs", + "bay leaves", + "onions" + ] + }, + { + "id": 6458, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "pink grapefruit", + "heavy cream", + "unsalted butter", + "fresh parsley leaves", + "penne", + "navel oranges" + ] + }, + { + "id": 31689, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "water chestnuts", + "fine sea salt", + "ground white pepper", + "large eggs", + "green onions", + "chinese five-spice powder", + "self rising flour", + "soya bean", + "yellow onion", + "pork", + "kecap manis", + "corn oil", + "shrimp" + ] + }, + { + "id": 23065, + "cuisine": "moroccan", + "ingredients": [ + "powdered sugar", + "fresh lemon juice", + "pitted date", + "slivered almonds", + "grated orange", + "ground cinnamon", + "orange" + ] + }, + { + "id": 39137, + "cuisine": "indian", + "ingredients": [ + "ground cardamom", + "plain yogurt", + "mango", + "sugar", + "ice", + "milk" + ] + }, + { + "id": 38475, + "cuisine": "french", + "ingredients": [ + "dry white wine", + "cornichons", + "fresh parsley", + "dijon mustard", + "extra-virgin olive oil", + "garlic cloves", + "capers", + "fresh tarragon", + "purple onion", + "mussels", + "clam juice", + "white wine vinegar" + ] + }, + { + "id": 44386, + "cuisine": "mexican", + "ingredients": [ + "chicken demi-glace", + "cuban peppers", + "white rice", + "chicken thighs", + "capers", + "parsley", + "carrots", + "tomato paste", + "tumeric", + "garden peas", + "onions", + "green olives", + "smoked sweet Spanish paprika", + "garlic", + "oregano" + ] + }, + { + "id": 5663, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "vegetable oil cooking spray", + "large eggs", + "dry bread crumbs", + "fresh parsley", + "chicken broth", + "green bell pepper", + "water", + "green onions", + "garlic cloves", + "wild mushrooms", + "tasso", + "fresh basil", + "pepper", + "french bread", + "fresh mushrooms", + "onions", + "melted butter", + "fresh spinach", + "asparagus", + "salt", + "red bell pepper" + ] + }, + { + "id": 45676, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "tumeric", + "ginger", + "garlic cloves", + "basmati rice", + "chicken stock", + "boneless skinless chicken breasts", + "natural yogurt", + "cinnamon sticks", + "low-fat milk", + "ground cinnamon", + "hot chili powder", + "cumin seed", + "onions", + "clove", + "garam masala", + "cilantro leaves", + "rapeseed oil", + "saffron" + ] + }, + { + "id": 12137, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "garlic powder", + "diced tomatoes", + "carrots", + "shredded Monterey Jack cheese", + "chicken broth", + "lime juice", + "boneless skinless chicken breasts", + "purple onion", + "corn tortillas", + "avocado", + "tomato sauce", + "tomato juice", + "garlic", + "nonstick spray", + "ground cumin", + "fresh basil", + "chopped green chilies", + "chili powder", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 28332, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "all-purpose flour", + "garlic cloves", + "capers", + "dry white wine", + "anchovy fillets", + "fettucine", + "ground black pepper", + "grated lemon zest", + "center cut loin pork chop", + "fat free less sodium chicken broth", + "proscuitto", + "chopped fresh sage" + ] + }, + { + "id": 14975, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "worcestershire sauce", + "brown sugar", + "vinegar", + "cooking sherry", + "pork back ribs", + "bbq sauce", + "ketchup", + "cajun seasoning" + ] + }, + { + "id": 18412, + "cuisine": "italian", + "ingredients": [ + "large garlic cloves", + "salt", + "extra-virgin olive oil", + "broccoli rabe" + ] + }, + { + "id": 32593, + "cuisine": "italian", + "ingredients": [ + "eggs", + "grated parmesan cheese", + "red pepper flakes", + "fresh parsley", + "olive oil", + "vermicelli", + "sweet italian sausage", + "italian seasoning", + "water", + "marinara sauce", + "garlic", + "onions", + "shiitake", + "ricotta cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 42819, + "cuisine": "french", + "ingredients": [ + "sugar", + "vegetable oil", + "grated lemon peel", + "large eggs", + "corn starch", + "water", + "fresh lemon juice", + "unflavored gelatin", + "whole milk", + "caramel sauce" + ] + }, + { + "id": 34876, + "cuisine": "brazilian", + "ingredients": [ + "andouille sausage", + "purple onion", + "bay leaf", + "vegetable oil", + "beef jerky", + "plantains", + "garlic", + "low sodium beef broth", + "black beans", + "rice", + "dried oregano" + ] + }, + { + "id": 38592, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "white rice", + "sausages", + "canola oil", + "seasoning", + "prepared pie crusts", + "beaten eggs", + "uncook medium shrimp, peel and devein", + "chicken broth", + "cajun seasoning", + "all-purpose flour", + "celery", + "green bell pepper", + "chicken meat", + "cayenne pepper", + "onions" + ] + }, + { + "id": 40574, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "extra-virgin olive oil", + "sesame oil", + "lemon juice", + "chives", + "garlic", + "soy sauce", + "ginger", + "fillets" + ] + }, + { + "id": 4464, + "cuisine": "cajun_creole", + "ingredients": [ + "cayenne", + "garlic", + "celery", + "green bell pepper", + "butter", + "scallions", + "crawfish", + "fish stock", + "corn starch", + "parsley", + "salt", + "onions" + ] + }, + { + "id": 10890, + "cuisine": "british", + "ingredients": [ + "melted butter", + "sweetened condensed milk", + "graham cracker crumbs", + "bananas", + "whipped cream" + ] + }, + { + "id": 10486, + "cuisine": "italian", + "ingredients": [ + "white onion", + "leeks", + "garlic", + "olive oil", + "farro", + "carrots", + "chicken stock", + "grated parmesan cheese", + "diced tomatoes", + "celery", + "kale", + "chopped fresh thyme", + "salt" + ] + }, + { + "id": 3522, + "cuisine": "southern_us", + "ingredients": [ + "bananas", + "1% low-fat milk", + "sugar", + "egg yolks", + "all-purpose flour", + "low-fat vanilla wafers", + "egg whites", + "salt", + "nonfat sweetened condensed milk", + "vanilla extract" + ] + }, + { + "id": 25655, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "bow-tie pasta", + "green bell pepper", + "green onions", + "sausages", + "diced onions", + "parmigiano reggiano cheese", + "creole seasoning", + "sun-dried tomatoes", + "heavy cream", + "white mushrooms" + ] + }, + { + "id": 5904, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "jalapeno chilies", + "white vinegar", + "olive oil", + "onions", + "fresh cilantro", + "salt", + "tomatoes", + "garlic powder" + ] + }, + { + "id": 4365, + "cuisine": "italian", + "ingredients": [ + "white vermouth", + "ground black pepper", + "lemon juice", + "minced garlic", + "grated lemon zest", + "jumbo shrimp", + "unsalted butter", + "chopped parsley", + "kosher salt", + "grated parmesan cheese" + ] + }, + { + "id": 43539, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "cilantro leaves", + "ground turmeric", + "potatoes", + "cayenne pepper", + "coriander seeds", + "yellow split peas", + "sea salt", + "cumin seed" + ] + }, + { + "id": 35915, + "cuisine": "indian", + "ingredients": [ + "crushed tomatoes", + "boneless skinless chicken breasts", + "cayenne pepper", + "ground cumin", + "table salt", + "garlic powder", + "heavy cream", + "onions", + "tomato paste", + "fresh ginger", + "vegetable oil", + "garlic cloves", + "sugar", + "garam masala", + "cilantro leaves", + "plain whole-milk yogurt" + ] + }, + { + "id": 14745, + "cuisine": "southern_us", + "ingredients": [ + "andouille sausage", + "unsalted butter", + "vegetable oil", + "chicken stock cubes", + "garlic cloves", + "medium shrimp", + "water", + "whole milk", + "heavy cream", + "all-purpose flour", + "ground white pepper", + "ground cumin", + "kosher salt", + "chopped fresh chives", + "clam juice", + "purple onion", + "ham", + "grits", + "tomato paste", + "curry powder", + "dry white wine", + "paprika", + "cayenne pepper", + "chipotles in adobo" + ] + }, + { + "id": 22508, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "ground black pepper", + "onions", + "russet potatoes", + "olive oil", + "salt" + ] + }, + { + "id": 32477, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "sesame seeds", + "dried oregano", + "crushed tomatoes", + "garlic cloves", + "ground cinnamon", + "raisins", + "chicken", + "ancho", + "olive oil", + "corn tortillas" + ] + }, + { + "id": 13078, + "cuisine": "cajun_creole", + "ingredients": [ + "melted butter", + "dried thyme", + "garlic cloves", + "kosher salt", + "cracked black pepper", + "brown sugar", + "apple cider", + "whole turkey", + "creole seasoning" + ] + }, + { + "id": 7591, + "cuisine": "thai", + "ingredients": [ + "mint", + "romaine lettuce", + "peanuts", + "stevia", + "fish sauce", + "lime juice", + "splenda", + "peanut oil", + "lean ground turkey", + "minced garlic", + "jalapeno chilies", + "sauce", + "brown sugar", + "lime", + "shallots", + "chopped cilantro" + ] + }, + { + "id": 14973, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "cajun seasoning", + "long-grain rice", + "chicken broth", + "diced tomatoes", + "garlic cloves", + "kidney beans", + "smoked sausage", + "fresh parsley", + "bay leaves", + "hot sauce", + "onions" + ] + }, + { + "id": 11832, + "cuisine": "mexican", + "ingredients": [ + "cream style corn", + "all-purpose flour", + "onions", + "ground cumin", + "chicken broth", + "half & half", + "margarine", + "fajita seasoning mix", + "condensed cream of chicken soup", + "garlic", + "tortilla chips", + "shredded Monterey Jack cheese", + "boneless chicken breast halves", + "salsa", + "chopped cilantro fresh" + ] + }, + { + "id": 34345, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "pepper", + "chili powder", + "onions", + "garlic paste", + "garam masala", + "vegetable oil", + "coriander", + "tumeric", + "coriander powder", + "salt", + "ginger paste", + "minced chicken", + "potatoes", + "green chilies", + "ground cumin" + ] + }, + { + "id": 39815, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "tomatoes", + "dried oregano", + "extra-virgin olive oil" + ] + }, + { + "id": 39915, + "cuisine": "vietnamese", + "ingredients": [ + "red leaf lettuce", + "vegetable oil", + "cilantro leaves", + "beansprouts", + "ground turmeric", + "warm water", + "thai basil", + "salt", + "rice flour", + "onions", + "fish sauce", + "water", + "ground pork", + "scallions", + "coconut milk", + "sugar", + "lime", + "thai chile", + "garlic cloves", + "medium shrimp" + ] + }, + { + "id": 755, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "chives", + "toasted sesame oil", + "filet mignon", + "asian pear", + "fresh lemon juice", + "ground black pepper", + "scallions", + "toasted sesame seeds", + "reduced sodium soy sauce", + "garlic cloves" + ] + }, + { + "id": 33235, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "olive oil", + "stewed tomatoes", + "taco sauce", + "flour tortillas", + "purple onion", + "corn kernels", + "turkey", + "cumin", + "black beans", + "chili powder", + "scallions" + ] + }, + { + "id": 44529, + "cuisine": "indian", + "ingredients": [ + "sourdough starter", + "nonfat greek yogurt", + "milk", + "kosher salt", + "baking powder", + "melted butter", + "whole wheat flour" + ] + }, + { + "id": 3637, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "olive oil", + "vegetable stock", + "ground turmeric", + "minced garlic", + "garam masala", + "salt", + "fresh spinach", + "coriander seeds", + "light coconut milk", + "ground cumin", + "red lentils", + "fresh lime", + "ground black pepper", + "onions" + ] + }, + { + "id": 31751, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil cooking spray", + "salt", + "reduced fat sharp cheddar cheese", + "water", + "ham", + "egg substitute", + "margarine", + "low sodium worcestershire sauce", + "quickcooking grits" + ] + }, + { + "id": 38678, + "cuisine": "japanese", + "ingredients": [ + "rice vinegar", + "soy sauce", + "citrus juice" + ] + }, + { + "id": 4517, + "cuisine": "mexican", + "ingredients": [ + "water", + "cajeta", + "spice cake mix", + "sweetened condensed milk", + "evaporated milk", + "vanilla extract", + "eggs", + "vegetable oil" + ] + }, + { + "id": 6608, + "cuisine": "italian", + "ingredients": [ + "salt", + "polenta", + "water" + ] + }, + { + "id": 43748, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "light soy sauce", + "choy sum", + "pork", + "udon", + "corn starch", + "sugar", + "shiitake", + "oil", + "soy sauce", + "Shaoxing wine" + ] + }, + { + "id": 37097, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "vegetable oil", + "roasted peanuts", + "cucumber", + "soy sauce", + "shallots", + "cilantro leaves", + "juice", + "bird chile", + "bean curd skins", + "rice noodles", + "Maggi", + "carrots", + "brown sugar", + "lime", + "garlic", + "grapefruit", + "fresh mint" + ] + }, + { + "id": 39059, + "cuisine": "greek", + "ingredients": [ + "fresh parmesan cheese", + "baby spinach", + "feta cheese crumbles", + "kale", + "ground black pepper", + "chopped onion", + "olive oil", + "cooking spray", + "garlic cloves", + "dough", + "ground nutmeg", + "salt" + ] + }, + { + "id": 26427, + "cuisine": "french", + "ingredients": [ + "eggs", + "dry bread crumbs", + "milk", + "ham", + "condensed cream of chicken soup", + "oil", + "swiss cheese", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 44351, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger", + "salt", + "coconut milk", + "firmly packed brown sugar", + "chicken breast halves", + "english cucumber", + "corn oil", + "rice vinegar", + "asian fish sauce", + "soy sauce", + "shallots", + "garlic cloves" + ] + }, + { + "id": 15986, + "cuisine": "cajun_creole", + "ingredients": [ + "shrimp", + "lemon", + "melted butter", + "flat leaf parsley", + "italian salad dressing mix" + ] + }, + { + "id": 34769, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "beer", + "vegetable oil", + "fresh lime juice", + "granulated sugar", + "green beans", + "soy sauce", + "all-purpose flour" + ] + }, + { + "id": 49041, + "cuisine": "cajun_creole", + "ingredients": [ + "lump crab meat", + "flour", + "garlic", + "celery", + "green bell pepper", + "cayenne", + "parsley", + "scallions", + "cooked white rice", + "blue crabs", + "ground black pepper", + "bay leaves", + "yellow onion", + "medium shrimp", + "kosher salt", + "seafood stock", + "worcestershire sauce", + "fresh lemon juice", + "canola oil" + ] + }, + { + "id": 46671, + "cuisine": "indian", + "ingredients": [ + "ravva", + "cumin seed", + "chopped cilantro", + "curry leaves", + "all-purpose flour", + "rice flour", + "peppercorns", + "salt", + "oil", + "onions", + "water", + "green chilies", + "carrots" + ] + }, + { + "id": 22163, + "cuisine": "japanese", + "ingredients": [ + "miso paste", + "onions", + "soy sauce", + "butter", + "mirin", + "chicken", + "water", + "garlic" + ] + }, + { + "id": 34338, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "ground nutmeg", + "white pepper", + "butter", + "milk", + "Philadelphia Cream Cheese", + "garlic powder", + "Kraft Grated Parmesan Cheese" + ] + }, + { + "id": 17672, + "cuisine": "japanese", + "ingredients": [ + "lime juice", + "all-purpose flour", + "fresh green bean", + "oil", + "soy sauce", + "salt", + "white sugar", + "sesame seeds", + "beer" + ] + }, + { + "id": 7643, + "cuisine": "mexican", + "ingredients": [ + "dark molasses", + "ground black pepper", + "purple onion", + "sandwich rolls", + "kosher salt", + "jalapeno chilies", + "chipotles in adobo", + "avocado", + "fresh leav spinach", + "poblano peppers", + "cilantro leaves", + "cremini mushrooms", + "olive oil", + "garlic", + "vegetarian refried beans" + ] + }, + { + "id": 36925, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "scallion greens", + "wakame", + "soft tofu", + "shiro miso" + ] + }, + { + "id": 13621, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "salt", + "sliced green onions", + "tomato salsa", + "fat", + "flour tortillas", + "orange juice", + "ground cumin", + "grated orange peel", + "non-fat sour cream", + "onions" + ] + }, + { + "id": 20124, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken skinless thigh", + "canned beans", + "salt", + "shredded cheese", + "chopped cilantro", + "chipotle", + "lime wedges", + "tortilla chips", + "ancho chile pepper", + "cumin", + "black pepper", + "guacamole", + "salsa", + "sour cream", + "dried oregano", + "jalapeno chilies", + "garlic", + "scallions", + "chipotles in adobo", + "canola oil" + ] + }, + { + "id": 18775, + "cuisine": "spanish", + "ingredients": [ + "base", + "fresh lime juice", + "ground black pepper", + "beer", + "hot pepper sauce", + "garlic cloves", + "soy sauce", + "worcestershire sauce" + ] + }, + { + "id": 14752, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "stewed tomatoes", + "ground cumin", + "chile pepper", + "onions", + "chicken breasts", + "white rice", + "butter", + "chopped cilantro fresh" + ] + }, + { + "id": 44023, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "reduced-fat sour cream", + "fresh lime juice", + "table salt", + "cooking spray", + "pinto beans", + "ground cumin", + "avocado", + "salsa verde", + "cilantro", + "plum tomatoes", + "ground chicken", + "low fat shred cheddar chees sharp varieti", + "corn tortillas" + ] + }, + { + "id": 11800, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "fine sea salt", + "chopped tomatoes", + "lime juice", + "chopped cilantro", + "jalapeno chilies" + ] + }, + { + "id": 20941, + "cuisine": "southern_us", + "ingredients": [ + "fresh lima beans", + "corn kernels", + "ground mustard", + "white sugar", + "green bell pepper", + "fresh green bean", + "celery seed", + "cider vinegar", + "salt", + "onions", + "cauliflower", + "green tomatoes", + "mustard seeds", + "ground turmeric" + ] + }, + { + "id": 47443, + "cuisine": "mexican", + "ingredients": [ + "chili", + "chopped onion", + "cheese soup", + "milk", + "tortilla chips" + ] + }, + { + "id": 11939, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "ground black pepper", + "butter", + "milk", + "chopped fresh chives", + "salt", + "dried tarragon leaves", + "grated parmesan cheese", + "fresh tarragon", + "olive oil", + "mushrooms", + "goat cheese" + ] + }, + { + "id": 33498, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "ginger", + "lemon juice", + "tomatoes", + "garam masala", + "garlic cloves", + "fresh cilantro", + "salt", + "grained", + "olive oil", + "chickpeas", + "onions" + ] + }, + { + "id": 19301, + "cuisine": "chinese", + "ingredients": [ + "beef bones", + "beef shank", + "spices", + "chinese radish", + "scallions", + "noodles", + "fennel seeds", + "dried orange peel", + "bay leaves", + "ginger", + "roasting chickens", + "cinnamon sticks", + "clove", + "sugar", + "hot chili oil", + "crushed red pepper flakes", + "salt", + "oil", + "white peppercorns", + "chicken stock", + "water", + "szechwan peppercorns", + "star anise", + "cumin seed", + "chopped cilantro" + ] + }, + { + "id": 12121, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "sugar", + "olive oil", + "garlic cloves", + "sake", + "kosher salt", + "scallions", + "baby bok choy", + "ground black pepper" + ] + }, + { + "id": 32606, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "chicken breast halves", + "ground coriander", + "sugar", + "salt", + "chicken thighs", + "chicken legs", + "red wine vinegar", + "fresh parsley", + "olive oil", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 36521, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "garlic cloves", + "queso blanco", + "onions", + "cooking spray", + "corn tortillas", + "fat free less sodium chicken broth", + "salsa", + "cooked chicken breasts" + ] + }, + { + "id": 20351, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "yukon gold potatoes", + "salt", + "pepper", + "flour", + "heavy cream", + "oil", + "brown sugar", + "fresh thyme", + "worcestershire sauce", + "yellow onion", + "water", + "beef stock", + "garlic", + "pork sausages" + ] + }, + { + "id": 45114, + "cuisine": "brazilian", + "ingredients": [ + "black beans", + "fennel", + "purple onion", + "garlic cloves", + "chopped cilantro", + "fresh tomatoes", + "water", + "brown rice", + "ground coriander", + "diced celery", + "collard greens", + "chili pepper", + "bell pepper", + "salt", + "fresh lemon juice", + "onions", + "soy sauce", + "orange", + "canned tomatoes", + "oil", + "thyme" + ] + }, + { + "id": 25343, + "cuisine": "italian", + "ingredients": [ + "capers", + "purple onion", + "fregola", + "extra-virgin olive oil", + "ground white pepper", + "blood orange", + "salt", + "orange zest", + "Sicilian olives", + "fresh lemon juice" + ] + }, + { + "id": 31978, + "cuisine": "mexican", + "ingredients": [ + "Mazola Corn Oil", + "Spice Islands Garlic Salt", + "chicken breast tenders", + "onions", + "Spice Islands Oregano", + "red bell pepper", + "tortillas", + "Spice Islands Ground Cumin Seed" + ] + }, + { + "id": 23777, + "cuisine": "southern_us", + "ingredients": [ + "parsnips", + "sweet potatoes", + "turnips", + "ground black pepper", + "kosher salt", + "carrots", + "rutabaga", + "unsalted butter" + ] + }, + { + "id": 32533, + "cuisine": "french", + "ingredients": [ + "large eggs", + "fresh lemon juice", + "fresh ginger", + "all-purpose flour", + "cortland apples", + "ground cinnamon", + "refrigerated piecrusts", + "bartlett pears", + "granulated sugar", + "apricot preserves" + ] + }, + { + "id": 45432, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "ground black pepper", + "1% low-fat milk", + "dry bread crumbs", + "large egg yolks", + "cooking spray", + "salt", + "large egg whites", + "asparagus", + "gruyere cheese", + "ground nutmeg", + "dry mustard", + "all-purpose flour" + ] + }, + { + "id": 47214, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "garlic cloves", + "corn", + "relish", + "fresh lime juice", + "fish fillets", + "coarse salt", + "corn tortillas", + "ground pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 37699, + "cuisine": "brazilian", + "ingredients": [ + "min", + "white rice", + "rice", + "onions", + "black-eyed peas", + "salt", + "liquid", + "white onion", + "garlic", + "amber", + "sofrito", + "palm oil", + "dende oil", + "cilantro leaves", + "marjoram leaves" + ] + }, + { + "id": 28826, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ground black pepper", + "sliced carrots", + "worcestershire sauce", + "broccoli", + "flat leaf parsley", + "italian seasoning", + "marsala wine", + "soup", + "butter", + "crushed red pepper flakes", + "pearl couscous", + "ground beef", + "spinach", + "grated parmesan cheese", + "crushed garlic", + "basil", + "Italian seasoned breadcrumbs", + "celery", + "homemade meatballs", + "chicken stock", + "olive oil", + "green onions", + "red pepper flakes", + "salt", + "garlic cloves", + "onions" + ] + }, + { + "id": 44952, + "cuisine": "british", + "ingredients": [ + "Belgian endive", + "frozen pastry puff sheets", + "stilton cheese", + "large eggs", + "balsamic vinegar", + "curry powder", + "chopped fresh chives", + "pears", + "unsalted butter", + "shallots" + ] + }, + { + "id": 48016, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "basil", + "roasted red peppers", + "sauce", + "pepper", + "salt", + "fresh spinach", + "boneless chicken breast" + ] + }, + { + "id": 44862, + "cuisine": "mexican", + "ingredients": [ + "sliced turkey", + "purple onion", + "cotija", + "cilantro sprigs", + "sour cream", + "avocado", + "shredded lettuce", + "hot sauce", + "kaiser rolls", + "white wine vinegar", + "fresh lime juice" + ] + }, + { + "id": 13058, + "cuisine": "filipino", + "ingredients": [ + "mayonaise", + "water", + "lemon", + "onions", + "pork belly", + "ground black pepper", + "salt", + "soy sauce", + "chili", + "ginger", + "pig", + "butter", + "chicken livers" + ] + }, + { + "id": 675, + "cuisine": "southern_us", + "ingredients": [ + "toasted unsweetened coconut", + "nonfat vanilla frozen yogurt", + "peaches", + "canola oil" + ] + }, + { + "id": 32225, + "cuisine": "southern_us", + "ingredients": [ + "minced garlic", + "butter", + "tomatoes", + "green onions", + "fresh parsley", + "black-eyed peas", + "ham", + "cider vinegar", + "Success White Rice", + "onions" + ] + }, + { + "id": 6990, + "cuisine": "british", + "ingredients": [ + "baking potatoes", + "celery", + "white pepper", + "heavy cream", + "sage", + "brussels sprouts", + "lemon", + "onions", + "unsalted butter", + "bacon" + ] + }, + { + "id": 40257, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "salt", + "pesto", + "light mayonnaise", + "fat free cream cheese", + "marinara sauce", + "provolone cheese", + "baguette", + "cracked black pepper", + "fresh basil leaves" + ] + }, + { + "id": 39520, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "all-purpose flour", + "shortening", + "vanilla extract", + "eggs", + "ricotta cheese", + "white sugar", + "dry white wine", + "salt" + ] + }, + { + "id": 46183, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "salt", + "shortening", + "ground nutmeg", + "whipped cream", + "chopped pecans", + "cold water", + "ground cloves", + "sweet potatoes", + "all-purpose flour", + "ground cinnamon", + "evaporated milk", + "butter", + "dark brown sugar" + ] + }, + { + "id": 23438, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "cayenne pepper", + "bay leaf", + "water", + "dried sage", + "creole seasoning", + "dried parsley", + "celery ribs", + "kidney beans", + "green pepper", + "onions", + "dried thyme", + "smoked sausage", + "garlic cloves" + ] + }, + { + "id": 33, + "cuisine": "mexican", + "ingredients": [ + "diced potatoes", + "beef", + "salt", + "corn tortillas", + "white onion", + "radishes", + "garlic cloves", + "oregano", + "pepper", + "vegetable oil", + "carrots", + "fresh cheese", + "shredded lettuce", + "ancho chile pepper" + ] + }, + { + "id": 39984, + "cuisine": "moroccan", + "ingredients": [ + "lemon zest", + "paprika", + "ground coriander", + "ground cumin", + "ground cinnamon", + "yukon gold potatoes", + "purple onion", + "ground turmeric", + "golden raisins", + "garlic", + "fresh mint", + "fresh dill", + "lemon", + "salt", + "canola oil" + ] + }, + { + "id": 46812, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "cabbage", + "whole cloves", + "corned beef", + "knorr leek recip mix", + "carrots", + "water", + "bay leaf" + ] + }, + { + "id": 31162, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "onions", + "green chile", + "flour tortillas", + "shredded Monterey Jack cheese", + "Mexican cheese blend", + "chicken", + "black beans", + "salsa" + ] + }, + { + "id": 27316, + "cuisine": "japanese", + "ingredients": [ + "reduced sodium soy sauce", + "water", + "snow pea shoots", + "sugar", + "mirin", + "sesame seeds", + "bulb" + ] + }, + { + "id": 45444, + "cuisine": "spanish", + "ingredients": [ + "spinach", + "purple onion", + "mushrooms", + "coconut oil", + "coconut milk", + "eggs", + "sea salt" + ] + }, + { + "id": 16291, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "ground red pepper", + "dried red chile peppers", + "cooking oil", + "cumin seed", + "split black lentils", + "salt", + "ground cumin", + "potatoes", + "mustard seeds" + ] + }, + { + "id": 9017, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "ancho chile pepper", + "garlic cloves", + "ground cumin", + "apple cider vinegar", + "dried oregano", + "sugar", + "shrimp" + ] + }, + { + "id": 29858, + "cuisine": "korean", + "ingredients": [ + "large egg yolks", + "Gochujang base", + "toasted sesame seeds", + "kosher salt", + "reduced sodium soy sauce", + "kimchi", + "ground black pepper", + "scallions", + "silken tofu", + "vegetable oil", + "toasted sesame oil" + ] + }, + { + "id": 19380, + "cuisine": "greek", + "ingredients": [ + "pepper", + "rice vinegar", + "flat leaf parsley", + "garlic", + "dried dill", + "worcestershire sauce", + "hot sauce", + "fresh chives", + "salt", + "greek yogurt" + ] + }, + { + "id": 15628, + "cuisine": "french", + "ingredients": [ + "large eggs", + "vanilla extract", + "sweet cherries", + "whole milk", + "all-purpose flour", + "sugar", + "pistachios", + "salt", + "almonds", + "butter", + "corn starch" + ] + }, + { + "id": 33771, + "cuisine": "mexican", + "ingredients": [ + "salt", + "warm water", + "oil", + "shortening", + "all-purpose flour", + "baking powder" + ] + }, + { + "id": 10109, + "cuisine": "filipino", + "ingredients": [ + "fresh tomatoes", + "olive oil", + "salt", + "bread crumbs", + "pimentos", + "fillet red snapper", + "ground black pepper", + "onions", + "lime juice", + "parsley" + ] + }, + { + "id": 41005, + "cuisine": "japanese", + "ingredients": [ + "crab meat", + "dashi", + "rice vinegar", + "soy sauce", + "mirin", + "cucumber", + "sugar", + "fresh ginger", + "king crab", + "water", + "salt" + ] + }, + { + "id": 44596, + "cuisine": "irish", + "ingredients": [ + "eggs", + "white chocolate chips", + "all-purpose flour", + "sugar", + "liquor", + "brown sugar", + "baking powder", + "unsalted butter", + "salt" + ] + }, + { + "id": 46477, + "cuisine": "italian", + "ingredients": [ + "honey", + "french bread", + "butter", + "freshly ground pepper", + "salad greens", + "grated parmesan cheese", + "vegetable oil", + "chopped onion", + "feta cheese", + "cannellini beans", + "bacon", + "garlic cloves", + "cider vinegar", + "dijon mustard", + "tuna steaks", + "salt" + ] + }, + { + "id": 17783, + "cuisine": "mexican", + "ingredients": [ + "lime peel", + "water", + "sour cream", + "sugar", + "cinnamon sticks", + "papaya", + "fresh lime juice" + ] + }, + { + "id": 20237, + "cuisine": "italian", + "ingredients": [ + "white onion", + "garlic", + "clams", + "unsalted butter", + "sour cream", + "ground black pepper", + "fresh mushrooms", + "pasta", + "dry white wine", + "flat leaf parsley" + ] + }, + { + "id": 9778, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "corn tortillas" + ] + }, + { + "id": 2530, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "strawberries", + "whipping cream", + "mint sprigs", + "cointreau", + "vanilla extract" + ] + }, + { + "id": 29455, + "cuisine": "japanese", + "ingredients": [ + "green cardamom", + "milk", + "cinnamon sticks", + "condensed milk", + "dry coconut" + ] + }, + { + "id": 27698, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "cream cheese", + "vanilla extract", + "sour cream", + "graham cracker crusts", + "chopped pecans", + "eggs", + "butter extract" + ] + }, + { + "id": 30168, + "cuisine": "french", + "ingredients": [ + "vanilla ice cream", + "large egg whites", + "confectioners sugar", + "water", + "basil leaves", + "lime", + "heavy cream", + "sugar", + "sorbet", + "mango" + ] + }, + { + "id": 14986, + "cuisine": "thai", + "ingredients": [ + "water", + "mushrooms", + "green chilies", + "mango", + "lime", + "ginger", + "onions", + "lemongrass", + "shallots", + "garlic cloves", + "soy sauce", + "eggplant", + "light coconut milk", + "coriander" + ] + }, + { + "id": 23917, + "cuisine": "southern_us", + "ingredients": [ + "oats", + "peaches", + "brown sugar", + "sweetened coconut flakes", + "ground cinnamon", + "butter", + "pie dough", + "all-purpose flour" + ] + }, + { + "id": 19080, + "cuisine": "moroccan", + "ingredients": [ + "white vinegar", + "carrots", + "chopped onion", + "chopped cilantro", + "garlic cloves", + "olive oil", + "flat leaf parsley" + ] + }, + { + "id": 20784, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "chopped cilantro fresh", + "pepper", + "garlic", + "jalapeno chilies", + "salt", + "tomatillos" + ] + }, + { + "id": 42198, + "cuisine": "japanese", + "ingredients": [ + "minced garlic", + "rice vinegar", + "chopped cilantro fresh", + "sugar", + "peeled fresh ginger", + "scallions", + "sesame seeds", + "seaweed", + "soy sauce", + "sesame oil", + "tart apples" + ] + }, + { + "id": 41532, + "cuisine": "thai", + "ingredients": [ + "orange", + "sea scallops", + "sweet chili sauce", + "lime", + "orange juice", + "fresh cilantro", + "garlic", + "coconut", + "fresh ginger", + "scallions" + ] + }, + { + "id": 27574, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "vegetable oil", + "salt", + "sugar", + "sugar cane", + "pepper", + "sweet and sour sauce", + "chiles", + "cilantro", + "shrimp" + ] + }, + { + "id": 25449, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "yoghurt", + "teas", + "white pepper" + ] + }, + { + "id": 24858, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "garlic", + "collard greens" + ] + }, + { + "id": 31180, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "chicken breasts", + "peanut oil", + "red bell pepper", + "honey", + "garlic", + "carrots", + "romaine lettuce hearts", + "soy sauce", + "fresh ginger", + "rice vinegar", + "salted cashews", + "pepper", + "sesame oil", + "scallions", + "chopped cilantro fresh" + ] + }, + { + "id": 1129, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "green pepper", + "dressing", + "red pepper", + "onions", + "lime juice", + "diced tomatoes", + "ground cumin", + "avocado", + "jalapeno chilies", + "cream cheese" + ] + }, + { + "id": 45604, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "all-purpose flour", + "buttermilk", + "large eggs", + "self-rising cornmeal" + ] + }, + { + "id": 31713, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "kalamata", + "greek seasoning", + "ground black pepper", + "olive oil", + "feta cheese crumbles", + "vinaigrette dressing", + "zucchini" + ] + }, + { + "id": 42061, + "cuisine": "italian", + "ingredients": [ + "water", + "brown rice", + "red lentils", + "garlic powder", + "salt", + "dried basil", + "vegetable oil", + "eggs", + "grated parmesan cheese", + "dry bread crumbs" + ] + }, + { + "id": 44800, + "cuisine": "southern_us", + "ingredients": [ + "jalapeno chilies", + "all-purpose flour", + "baking soda", + "buttermilk", + "peanut oil", + "yellow corn meal", + "baking powder", + "cayenne pepper", + "large eggs", + "salt" + ] + }, + { + "id": 33990, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "fresh parsley", + "garlic cloves", + "olive oil", + "toasted pine nuts", + "fresh thyme leaves" + ] + }, + { + "id": 330, + "cuisine": "mexican", + "ingredients": [ + "salt", + "fat free less sodium chicken broth", + "garlic cloves", + "tomato paste", + "pork roast", + "ground black pepper", + "fresh lime juice" + ] + }, + { + "id": 41520, + "cuisine": "italian", + "ingredients": [ + "egg whites", + "almond paste", + "slivered almonds", + "salt", + "white sugar", + "red food coloring", + "confectioners sugar", + "lemon extract", + "all-purpose flour" + ] + }, + { + "id": 36819, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "chicken breasts", + "cucumber", + "pita chips", + "garlic cloves", + "kosher salt", + "purple onion", + "greek yogurt", + "salad", + "ground black pepper", + "fresh lemon juice" + ] + }, + { + "id": 36842, + "cuisine": "italian", + "ingredients": [ + "fresh oregano leaves", + "ground black pepper", + "onions", + "tomato paste", + "olive oil", + "diced tomatoes", + "kosher salt", + "large garlic cloves", + "spaghetti", + "fresh rosemary", + "parmesan cheese", + "sliced mushrooms" + ] + }, + { + "id": 18421, + "cuisine": "filipino", + "ingredients": [ + "vegetable oil", + "eggs", + "asian eggplants", + "salt", + "ground black pepper" + ] + }, + { + "id": 5035, + "cuisine": "japanese", + "ingredients": [ + "chili powder", + "ground beef", + "parmesan cheese", + "salt", + "tomato juice", + "beansprouts", + "mixed vegetables", + "onions" + ] + }, + { + "id": 1072, + "cuisine": "chinese", + "ingredients": [ + "cooked rice", + "sesame oil", + "white onion", + "oyster sauce", + "soy sauce", + "garlic", + "eggs", + "green onions", + "frozen peas and carrots" + ] + }, + { + "id": 23115, + "cuisine": "brazilian", + "ingredients": [ + "milk", + "tapioca flour", + "vegetable oil", + "eggs", + "grated parmesan cheese", + "water", + "salt" + ] + }, + { + "id": 18810, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetables", + "slaw mix", + "spaghetti squash", + "toasted sesame oil", + "honey", + "sambal chile paste", + "ginger", + "carrots", + "lime juice", + "red cabbage", + "cilantro", + "chow mein noodles", + "cabbage", + "olive oil", + "green onions", + "garlic", + "beansprouts" + ] + }, + { + "id": 49422, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "beef", + "sea salt", + "veal demi-glace", + "dry white wine", + "carnaroli rice", + "water", + "parmigiano reggiano cheese", + "salt", + "saffron threads", + "unsalted butter", + "shallots" + ] + }, + { + "id": 20023, + "cuisine": "french", + "ingredients": [ + "milk", + "baking powder", + "sugar", + "unsalted butter", + "eggs", + "honey", + "all-purpose flour", + "vanilla beans", + "madeleine" + ] + }, + { + "id": 8375, + "cuisine": "chinese", + "ingredients": [ + "brisket", + "szechwan peppercorns", + "beer", + "onions", + "San Marzano tomatoes", + "fresh ginger", + "habanero", + "chinese five-spice powder", + "green bell pepper", + "hoisin sauce", + "garlic", + "oil", + "soy sauce", + "jalapeno chilies", + "rice vinegar", + "chopped cilantro" + ] + }, + { + "id": 27045, + "cuisine": "thai", + "ingredients": [ + "water", + "condensed milk", + "evaporated milk", + "tamarind", + "black tea", + "sugar", + "star anise" + ] + }, + { + "id": 12673, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "freshly ground pepper", + "salt", + "water", + "frozen corn kernels", + "whole milk", + "grits" + ] + }, + { + "id": 17512, + "cuisine": "italian", + "ingredients": [ + "country ham", + "egg whites", + "salt", + "onions", + "chicken bouillon granules", + "molasses", + "sweet potatoes", + "all-purpose flour", + "collard greens", + "olive oil", + "crushed red pepper", + "pasta sheets", + "eggs", + "pepper", + "butter", + "garlic cloves" + ] + }, + { + "id": 18928, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "roasted red peppers", + "salt", + "ground cumin", + "olive oil", + "jicama", + "reduced sodium black beans", + "chili", + "lettuce leaves", + "frozen corn kernels", + "quinoa", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 38415, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "chopped fresh chives", + "salt", + "milk", + "vegetable oil", + "japanese breadcrumbs", + "boneless skinless chicken breasts", + "large eggs", + "cheese" + ] + }, + { + "id": 15265, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "salt", + "enchilada sauce", + "olive oil", + "cheese", + "green chilies", + "onions", + "red pepper", + "penne pasta", + "sour cream", + "chicken breasts", + "black olives", + "garlic cloves", + "cumin" + ] + }, + { + "id": 4077, + "cuisine": "italian", + "ingredients": [ + "sugar", + "coffee liqueur", + "ground espresso", + "eggs", + "butter" + ] + }, + { + "id": 46833, + "cuisine": "southern_us", + "ingredients": [ + "grape tomatoes", + "water", + "hot sauce", + "smoked paprika", + "kosher salt", + "vegetable oil", + "scallions", + "chipotles in adobo", + "soy sauce", + "black-eyed peas", + "beer", + "chopped parsley", + "shredded cheddar cheese", + "garlic", + "long-grain rice", + "onions" + ] + }, + { + "id": 20440, + "cuisine": "japanese", + "ingredients": [ + "shiitake", + "green onions", + "carrots", + "glass noodles", + "chicken stock", + "Japanese soy sauce", + "yellow onion", + "celery", + "beef", + "vegetable oil", + "nonstick spray", + "sugar", + "mirin", + "firm tofu", + "boiling water" + ] + }, + { + "id": 1364, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "roasted red peppers", + "kalamata", + "black pepper", + "balsamic vinegar", + "grape tomatoes", + "cooking spray", + "extra-virgin olive oil", + "fillet red snapper", + "shallots", + "salt" + ] + }, + { + "id": 638, + "cuisine": "mexican", + "ingredients": [ + "fresh tomatoes", + "corn kernels", + "salt", + "lime", + "purple onion", + "chopped cilantro fresh", + "pepper", + "balsamic vinegar", + "hass avocado", + "salmon", + "olive oil", + "garlic cloves" + ] + }, + { + "id": 11097, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "fresh ginger", + "sliced carrots", + "Thai fish sauce", + "lemongrass", + "mint leaves", + "cilantro leaves", + "boneless skinless chicken breast halves", + "curry powder", + "shiitake", + "coarse salt", + "beansprouts", + "chicken stock", + "lime", + "chile pepper", + "scallions", + "ground cumin" + ] + }, + { + "id": 2265, + "cuisine": "italian", + "ingredients": [ + "warm water", + "all-purpose flour", + "cooking spray", + "salt", + "dry yeast", + "cornmeal" + ] + }, + { + "id": 17231, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "crushed red pepper", + "pepper", + "salt" + ] + }, + { + "id": 38686, + "cuisine": "korean", + "ingredients": [ + "ground ginger", + "pork", + "fresh ginger", + "garlic", + "Gochujang base", + "toasted sesame seeds", + "romaine lettuce", + "pepper", + "sesame oil", + "salt", + "corn tortillas", + "cumin", + "Korean chile flakes", + "soy sauce", + "garlic powder", + "purple onion", + "shredded cheese", + "plum tomatoes", + "sugar", + "lime juice", + "cilantro", + "corn syrup", + "onions", + "canola oil" + ] + }, + { + "id": 33501, + "cuisine": "mexican", + "ingredients": [ + "granulated sugar", + "white rice flour", + "baking powder", + "lard", + "tapioca starch", + "xanthan gum", + "cold water", + "salt" + ] + }, + { + "id": 15191, + "cuisine": "italian", + "ingredients": [ + "rosemary", + "garlic cloves", + "olive oil", + "polenta", + "cherry tomatoes", + "fillets", + "parmesan cheese" + ] + }, + { + "id": 11042, + "cuisine": "southern_us", + "ingredients": [ + "whipping cream", + "firmly packed light brown sugar", + "chopped pecans" + ] + }, + { + "id": 19488, + "cuisine": "japanese", + "ingredients": [ + "wasabi powder", + "dijon mustard", + "fat free yogurt", + "miso" + ] + }, + { + "id": 40848, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "egg noodles", + "scallions", + "medium shrimp", + "chinese black mushrooms", + "gingerroot", + "toasted sesame oil", + "sugar", + "vegetable oil", + "corn starch", + "snow peas", + "soy sauce", + "scotch", + "hot water" + ] + }, + { + "id": 36777, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "taco seasoning", + "ground beef", + "taco sauce", + "diced tomatoes", + "sour cream", + "lettuce", + "chili powder", + "fritos", + "olives", + "ketchup", + "tomatoes with juice", + "tomato soup" + ] + }, + { + "id": 47137, + "cuisine": "greek", + "ingredients": [ + "bay leaves", + "leg of lamb", + "mint sprigs", + "olive oil", + "dry red wine", + "large garlic cloves", + "fresh mint" + ] + }, + { + "id": 10472, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "whole peeled tomatoes", + "onions", + "kosher salt", + "garlic cloves", + "ground cumin", + "neutral oil", + "chile pepper", + "long grain white rice", + "lime", + "chopped cilantro" + ] + }, + { + "id": 36235, + "cuisine": "filipino", + "ingredients": [ + "vanilla ice cream", + "nuts", + "evaporated milk", + "cantaloupe", + "coconut", + "ice" + ] + }, + { + "id": 9712, + "cuisine": "mexican", + "ingredients": [ + "frozen limeade concentrate", + "frozen whipped topping", + "sweetened condensed milk", + "triple sec", + "pie crust", + "tequila" + ] + }, + { + "id": 3731, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "green onions", + "garlic", + "dried oregano", + "ground black pepper", + "red wine vinegar", + "salsa", + "flour tortillas", + "shredded lettuce", + "white sugar", + "lime", + "boneless skinless chicken breasts", + "salt", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 27643, + "cuisine": "spanish", + "ingredients": [ + "tomato sauce", + "cayenne pepper", + "large garlic cloves", + "sharp cheddar cheese", + "cooked chicken", + "green chilies", + "green bell pepper", + "paprika", + "onions" + ] + }, + { + "id": 12542, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "reduced sodium soy sauce", + "vegetable oil", + "somen", + "water", + "green onions", + "carrots", + "toasted peanuts", + "zucchini", + "Thai red curry paste", + "chopped garlic", + "fresh ginger", + "sesame oil", + "fresh mint" + ] + }, + { + "id": 40512, + "cuisine": "southern_us", + "ingredients": [ + "water", + "bacon", + "tomatoes", + "ground black pepper", + "garlic cloves", + "celery ribs", + "black-eyed peas", + "salt", + "cooked rice", + "red pepper flakes", + "onions" + ] + }, + { + "id": 1209, + "cuisine": "greek", + "ingredients": [ + "chicken stock", + "scallions", + "large eggs", + "long grain white rice", + "reduced sodium chicken broth", + "fresh lemon juice", + "dill" + ] + }, + { + "id": 22801, + "cuisine": "mexican", + "ingredients": [ + "taco bell home originals", + "zesty italian dressing", + "cooked long-grain brown rice", + "TACO BELL® HOME ORIGINALS® Taco Seasoning Mix", + "frozen corn", + "boneless chicken skinless thigh", + "no-salt-added black beans", + "green onions", + "KRAFT Mexican Style 2% Milk Finely Shredded Four Cheese" + ] + }, + { + "id": 23795, + "cuisine": "cajun_creole", + "ingredients": [ + "frozen okra", + "diced tomatoes", + "celery", + "andouille sausage", + "cooking spray", + "garlic cloves", + "medium shrimp", + "dried thyme", + "worcestershire sauce", + "frozen peppers and onions", + "fresh parsley", + "cooked rice", + "tomato juice", + "hot sauce", + "bay leaf" + ] + }, + { + "id": 46051, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "fresh parmesan cheese", + "escarole", + "pepper", + "salt", + "tomato sauce", + "cannellini beans", + "fresh rosemary", + "won ton wrappers", + "garlic cloves" + ] + }, + { + "id": 19459, + "cuisine": "mexican", + "ingredients": [ + "ratatouille", + "pepper jack", + "flour tortillas" + ] + }, + { + "id": 11555, + "cuisine": "mexican", + "ingredients": [ + "cactus paddles", + "salsa verde", + "salt", + "serrano chile", + "avocado", + "lime", + "queso fresco", + "chopped cilantro", + "white onion", + "jalapeno chilies", + "corn tortillas", + "chile verde", + "olive oil", + "tomatillos", + "chopped cilantro fresh" + ] + }, + { + "id": 7899, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "diced tomatoes", + "fresh basil", + "corn kernels", + "salt", + "black pepper", + "crushed red pepper", + "vidalia onion", + "olive oil", + "fresh lime juice" + ] + }, + { + "id": 19992, + "cuisine": "spanish", + "ingredients": [ + "minced garlic", + "almonds", + "dijon mustard", + "fresh lemon juice", + "medium shrimp", + "kosher salt", + "honey", + "ground black pepper", + "crushed red pepper", + "smoked paprika", + "olives", + "salad greens", + "sherry vinegar", + "extra-virgin olive oil", + "shrimp", + "fresh parsley", + "baguette", + "manchego cheese", + "roasted red peppers", + "fino sherry", + "serrano ham" + ] + }, + { + "id": 15520, + "cuisine": "italian", + "ingredients": [ + "green olives", + "extra-virgin olive oil", + "shark", + "fresh basil leaves", + "bread crumbs", + "garlic cloves", + "almonds", + "plum tomatoes" + ] + }, + { + "id": 20286, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "all-purpose flour", + "vanilla beans", + "butter", + "sugar", + "whole milk", + "Grand Marnier", + "large egg whites", + "Amaretti Cookies" + ] + }, + { + "id": 38858, + "cuisine": "chinese", + "ingredients": [ + "chinese rice wine", + "green onions", + "scallions", + "low sodium soy sauce", + "low sodium chicken broth", + "ground pork", + "bok choy", + "water", + "wonton wrappers", + "shrimp", + "brown sugar", + "egg yolks", + "salt" + ] + }, + { + "id": 26895, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "baking powder", + "Dutch-processed cocoa powder", + "confectioners sugar", + "unsalted butter", + "red food coloring", + "all-purpose flour", + "baking soda", + "buttermilk", + "salt", + "large eggs", + "vanilla extract", + "cream cheese" + ] + }, + { + "id": 31578, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "ground red pepper", + "fresh parsley", + "cooked rice", + "ground black pepper", + "smoked sausage", + "celery ribs", + "cooked ham", + "butter", + "onions", + "green bell pepper", + "green onions", + "salt" + ] + }, + { + "id": 21079, + "cuisine": "french", + "ingredients": [ + "large eggs", + "long grain white rice", + "zucchini", + "thyme", + "olive oil", + "garlic cloves", + "plum tomatoes", + "parmigiano reggiano cheese", + "onions" + ] + }, + { + "id": 16959, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "salt", + "baking soda", + "all purpose unbleached flour", + "dark brown sugar", + "light molasses", + "buttermilk", + "whole wheat flour", + "large eggs", + "walnuts" + ] + }, + { + "id": 41820, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "all-purpose flour", + "sea salt", + "water" + ] + }, + { + "id": 21078, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "granulated sugar", + "honey", + "cake flour", + "water", + "cooking oil", + "baking soda" + ] + }, + { + "id": 23248, + "cuisine": "spanish", + "ingredients": [ + "pork tenderloin", + "orange", + "dried oregano", + "garlic cloves", + "olive oil" + ] + }, + { + "id": 1248, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "boneless chicken", + "garlic", + "egg whites", + "grating cheese", + "lemon juice", + "cream", + "yoghurt", + "cracked black pepper", + "cumin", + "chili paste", + "butter", + "salt" + ] + }, + { + "id": 41821, + "cuisine": "italian", + "ingredients": [ + "sliced almonds", + "shortbread cookies", + "large eggs", + "sugar", + "heavy cream", + "mascarpone", + "strawberries" + ] + }, + { + "id": 8664, + "cuisine": "japanese", + "ingredients": [ + "shortening", + "ice water", + "shrimp", + "baking powder", + "all-purpose flour", + "white sugar", + "egg yolks", + "salt", + "corn starch", + "rice wine", + "oil" + ] + }, + { + "id": 34283, + "cuisine": "mexican", + "ingredients": [ + "water", + "garlic cloves", + "ground cumin", + "brown sugar", + "chili powder", + "ground turkey", + "Mexican cheese blend", + "elbow macaroni", + "tomato sauce", + "vegetable oil", + "onions" + ] + }, + { + "id": 2214, + "cuisine": "italian", + "ingredients": [ + "fresh tomatoes", + "extra large eggs", + "pecorino cheese", + "red wine vinegar", + "fresh basil leaves", + "chicken broth", + "ground black pepper", + "salt", + "bread", + "olive oil", + "garlic" + ] + }, + { + "id": 29843, + "cuisine": "mexican", + "ingredients": [ + "kidney beans", + "frozen corn kernels", + "chopped cilantro fresh", + "tomato sauce", + "chili powder", + "taco seasoning reduced sodium", + "boneless skinless chicken breasts", + "green chilies", + "cumin", + "black beans", + "diced tomatoes", + "onions" + ] + }, + { + "id": 3879, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "kale", + "vegetable stock", + "frozen corn", + "avocado", + "lime", + "chili powder", + "salt", + "cumin", + "pepper", + "flour tortillas", + "garlic", + "dried oregano", + "black beans", + "olive oil", + "cilantro", + "onions" + ] + }, + { + "id": 14591, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "ground pork", + "peanut oil", + "cold water", + "leeks", + "salt", + "fermented black beans", + "soft tofu", + "garlic", + "corn starch", + "chicken stock", + "ground sichuan pepper", + "chili bean paste", + "white sugar" + ] + }, + { + "id": 34146, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "ground black pepper", + "salt", + "dried porcini mushrooms", + "butter", + "hot water", + "canned low sodium chicken broth", + "grated parmesan cheese", + "goat cheese", + "olive oil", + "garlic", + "onions" + ] + }, + { + "id": 21322, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "olive oil", + "vegetable oil", + "lemon juice", + "avocado", + "fresh cilantro", + "green onions", + "nopales", + "pepper", + "serrano peppers", + "salt", + "corn tortillas", + "tomatoes", + "fresh cheese", + "Mexican oregano", + "chopped onion" + ] + }, + { + "id": 25880, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "sesame oil", + "peanut oil", + "Shaoxing wine", + "salt", + "red chili peppers", + "boneless chicken", + "scallions", + "celery ribs", + "szechwan peppercorns", + "chili bean paste" + ] + }, + { + "id": 25697, + "cuisine": "indian", + "ingredients": [ + "water", + "vegetable oil", + "yellow split peas", + "garlic cloves", + "spinach", + "ground red pepper", + "cauliflower florets", + "ground coriander", + "ground turmeric", + "peeled fresh ginger", + "butter", + "chopped onion", + "bay leaf", + "ground cloves", + "brown mustard seeds", + "salt", + "cumin seed" + ] + }, + { + "id": 39612, + "cuisine": "thai", + "ingredients": [ + "eggs", + "green onions", + "oyster sauce", + "white sugar", + "fish sauce", + "vegetable oil", + "fresh lime juice", + "chopped cilantro fresh", + "pepper sauce", + "rice noodles", + "beansprouts", + "boneless skinless chicken breast halves", + "chicken stock", + "lime", + "unsalted dry roast peanuts", + "medium shrimp", + "chopped garlic" + ] + }, + { + "id": 25887, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil cooking spray", + "green onions", + "chopped celery", + "long-grain rice", + "smoked turkey sausage", + "tomato paste", + "bay leaves", + "garlic", + "chopped onion", + "no salt added chicken broth", + "pepper", + "chicken breast halves", + "all-purpose flour", + "shrimp", + "oregano", + "water", + "vegetable oil", + "green pepper", + "thyme" + ] + }, + { + "id": 21426, + "cuisine": "italian", + "ingredients": [ + "butter", + "fresh parsley", + "ground black pepper", + "salt", + "garlic powder", + "heavy cream", + "grated parmesan cheese", + "mostaccioli" + ] + }, + { + "id": 47241, + "cuisine": "italian", + "ingredients": [ + "sugar pea", + "olive oil", + "garlic cloves", + "black pepper", + "red wine", + "lean ground pork", + "marinara sauce", + "refrigerated fettuccine", + "fresh basil", + "kosher salt", + "grated carrot" + ] + }, + { + "id": 42730, + "cuisine": "mexican", + "ingredients": [ + "salsa verde", + "cilantro", + "yellow onion", + "corn-on-the-cob", + "shredded cheddar cheese", + "chili powder", + "garlic", + "pinto beans", + "ground cumin", + "flour tortillas", + "extra-virgin olive oil", + "cayenne pepper", + "chorizo sausage", + "chopped tomatoes", + "lean ground beef", + "sweet pepper", + "sour cream" + ] + }, + { + "id": 27726, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "diced green chilies", + "chili powder", + "paprika", + "sour cream", + "dried oregano", + "taco shells", + "fat-free refried beans", + "low sodium tomato sauce", + "salsa", + "onions", + "black pepper", + "guacamole", + "onion powder", + "crushed red pepper flakes", + "ground beef", + "ground cumin", + "lettuce", + "garlic powder", + "colby jack cheese", + "sea salt", + "taco seasoning", + "olives" + ] + }, + { + "id": 10, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "crushed red pepper flakes", + "top round steak", + "rice wine", + "corn starch", + "bell pepper", + "fat", + "soy sauce", + "vegetable oil", + "onions" + ] + }, + { + "id": 18233, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "garlic", + "chickpeas", + "tomatoes", + "garam masala", + "salt", + "cumin seed", + "water", + "purple onion", + "ground coriander", + "chat masala", + "ginger", + "dried chickpeas", + "serrano chile" + ] + }, + { + "id": 34690, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "sea salt", + "ground black pepper", + "ground white pepper", + "cider vinegar", + "dark brown sugar", + "red pepper flakes", + "white sugar" + ] + }, + { + "id": 19885, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "grated orange", + "ground cinnamon", + "white sugar", + "vanilla extract", + "eggs", + "whiskey" + ] + }, + { + "id": 33347, + "cuisine": "italian", + "ingredients": [ + "grated lemon zest", + "pizza doughs", + "ricotta", + "asparagus", + "oil" + ] + }, + { + "id": 17910, + "cuisine": "southern_us", + "ingredients": [ + "quick-cooking hominy grits", + "whipping cream", + "soft fresh goat cheese", + "chopped fresh thyme", + "garlic cloves", + "butter", + "low salt chicken broth", + "chopped fresh chives", + "oil" + ] + }, + { + "id": 25619, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "hoisin sauce", + "button mushrooms", + "cooking sherry", + "black pepper", + "rice noodles", + "carrots", + "soy sauce", + "chicken breasts", + "garlic", + "onions", + "olive oil", + "red pepper", + "asparagus spears" + ] + }, + { + "id": 30734, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "lemon slices", + "feta cheese crumbles", + "kalamata", + "freshly ground pepper", + "lemon", + "fresh oregano", + "dried oregano", + "bone-in chicken breast halves", + "salt", + "garlic cloves" + ] + }, + { + "id": 18651, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "zucchini", + "scallions", + "cumin", + "lean ground turkey", + "mild salsa", + "chili powder", + "onions", + "water", + "bell pepper", + "shredded cheese", + "tomato sauce", + "garlic powder", + "paprika", + "oregano" + ] + }, + { + "id": 23750, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "frozen corn", + "monterey jack", + "watercress", + "fresh lime juice", + "flour tortillas", + "cayenne pepper", + "canola oil", + "black pepper", + "purple onion", + "ground beef" + ] + }, + { + "id": 9757, + "cuisine": "thai", + "ingredients": [ + "pork", + "chili paste", + "galangal", + "tomatoes", + "chili", + "sliced mushrooms", + "fish sauce", + "lemon grass", + "lime leaves", + "lime juice", + "rice noodles" + ] + }, + { + "id": 49643, + "cuisine": "french", + "ingredients": [ + "butter", + "water", + "salt", + "old-fashioned oatmeal", + "apples", + "milk", + "lemon juice" + ] + }, + { + "id": 997, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "sea salt", + "poblano chiles", + "baking powder", + "frozen corn kernels", + "whole milk", + "all-purpose flour", + "monterey jack", + "eggs", + "butter", + "red bell pepper" + ] + }, + { + "id": 12970, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "tortillas", + "cilantro", + "tomatoes", + "lime", + "boneless skinless chicken breasts", + "sweet corn", + "lime juice", + "guacamole", + "salt", + "black beans", + "olive oil", + "shredded lettuce", + "tequila" + ] + }, + { + "id": 341, + "cuisine": "italian", + "ingredients": [ + "diced tomatoes", + "crushed red pepper", + "pork sausages", + "zucchini", + "dry red wine", + "carrots", + "rigatoni", + "tomato paste", + "basil", + "garlic cloves", + "oregano", + "grated parmesan cheese", + "garlic", + "onions" + ] + }, + { + "id": 14788, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "garam masala", + "arrowroot powder", + "coconut oil", + "ground black pepper", + "garlic", + "curry powder", + "chicken breasts", + "fine sea salt", + "full fat coconut milk", + "chili powder", + "onions" + ] + }, + { + "id": 2645, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "salt", + "sesame oil", + "hearts of romaine", + "sugar", + "vegetable oil", + "Shaoxing wine", + "garlic cloves" + ] + }, + { + "id": 29991, + "cuisine": "mexican", + "ingredients": [ + "poblano peppers", + "garlic", + "shrimp", + "chopped cilantro fresh", + "olive oil", + "baby spinach", + "cayenne pepper", + "chipotles in adobo", + "chicken", + "green cabbage", + "flour", + "salt", + "sour cream", + "oregano", + "garlic powder", + "butter", + "carrots", + "onions", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 3519, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "butter", + "chicken bouillon", + "butter beans" + ] + }, + { + "id": 23931, + "cuisine": "russian", + "ingredients": [ + "water", + "bacon", + "dill seed", + "marjoram", + "polish sausage", + "red wine vinegar", + "beets", + "fresh parsley", + "black peppercorns", + "shredded cabbage", + "chopped onion", + "dill weed", + "chuck", + "leeks", + "salt", + "carrots", + "white sugar" + ] + }, + { + "id": 20739, + "cuisine": "italian", + "ingredients": [ + "pepperoni slices", + "marinara sauce", + "mozzarella cheese", + "italian sausage", + "pizza doughs" + ] + }, + { + "id": 35539, + "cuisine": "southern_us", + "ingredients": [ + "country ham", + "butter", + "reduced sodium chicken broth", + "kimchi", + "soy sauce", + "chopped onion", + "collard greens", + "apple cider vinegar", + "lard" + ] + }, + { + "id": 2814, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "ground pepper", + "vegetable oil", + "beer", + "tomatoes", + "ketchup", + "red cabbage", + "all-purpose flour", + "white corn tortillas", + "lime", + "lime wedges", + "halibut", + "crema mexicana", + "hot pepper sauce", + "fine sea salt" + ] + }, + { + "id": 7762, + "cuisine": "indian", + "ingredients": [ + "cream", + "chili powder", + "cumin seed", + "chaat masala", + "fenugreek leaves", + "garam masala", + "salt", + "jeera", + "tomatoes", + "milk", + "paneer", + "oil", + "ground turmeric", + "garlic paste", + "coriander powder", + "green chilies", + "onions" + ] + }, + { + "id": 29005, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "grated parmesan cheese", + "bread crumb fresh", + "ground black pepper", + "garlic cloves", + "lacinato kale", + "oil packed anchovy fillets", + "crushed red pepper flakes", + "kosher salt", + "unsalted butter", + "orecchiette" + ] + }, + { + "id": 17875, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "sesame oil", + "sesame seeds", + "garlic cloves", + "soy sauce", + "teriyaki sauce", + "chicken broth", + "chicken breasts" + ] + }, + { + "id": 48067, + "cuisine": "mexican", + "ingredients": [ + "cilantro", + "sugar", + "salt", + "white vinegar", + "purple onion", + "pepper", + "plum tomatoes" + ] + }, + { + "id": 26109, + "cuisine": "mexican", + "ingredients": [ + "red leaf lettuce", + "large garlic cloves", + "fresh lime juice", + "ground cumin", + "avocado", + "vegetable oil", + "cucumber", + "large shrimp", + "chili", + "purple onion", + "chopped cilantro fresh", + "flour tortillas", + "cilantro leaves", + "plum tomatoes" + ] + }, + { + "id": 34130, + "cuisine": "filipino", + "ingredients": [ + "cooked ham", + "ground black pepper", + "ground pork", + "red bell pepper", + "bread crumbs", + "golden raisins", + "yellow onion", + "ground beef", + "soy sauce", + "hard-boiled egg", + "garlic", + "chopped parsley", + "kosher salt", + "pimentos", + "carrots", + "canola oil" + ] + }, + { + "id": 30952, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "sherry vinegar", + "slivered almonds", + "sourdough bread", + "roasted almond oil", + "kefir", + "english cucumber", + "seedless green grape", + "honey" + ] + }, + { + "id": 9484, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "honey", + "blanched almonds" + ] + }, + { + "id": 21176, + "cuisine": "southern_us", + "ingredients": [ + "dijon mustard", + "worcestershire sauce", + "mayonaise" + ] + }, + { + "id": 41334, + "cuisine": "french", + "ingredients": [ + "pepper", + "butter", + "hash brown", + "green pepper", + "milk", + "salt", + "eggs", + "fully cooked ham", + "sharp cheddar cheese" + ] + }, + { + "id": 10325, + "cuisine": "mexican", + "ingredients": [ + "grated jack cheese", + "hot pepper sauce", + "chopped cilantro fresh", + "flour tortillas", + "pork sausages", + "cheddar cheese", + "green chilies" + ] + }, + { + "id": 33298, + "cuisine": "moroccan", + "ingredients": [ + "clove", + "paprika", + "coriander seeds", + "ground red pepper", + "ground cinnamon", + "cumin seed" + ] + }, + { + "id": 35744, + "cuisine": "southern_us", + "ingredients": [ + "bay leaves", + "pork shoulder", + "dried thyme", + "all-purpose flour", + "dry white wine", + "onions", + "unsalted butter", + "garlic cloves" + ] + }, + { + "id": 11848, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "vegetable oil", + "oil", + "flour", + "salt", + "water", + "paprika", + "corn tortillas", + "chili powder", + "shredded American cheese" + ] + }, + { + "id": 46557, + "cuisine": "japanese", + "ingredients": [ + "boneless chicken breast", + "eggs", + "scallions", + "dipping sauces", + "sushi rice", + "onions" + ] + }, + { + "id": 27547, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "garlic cloves", + "olive oil", + "chicken", + "pepper", + "fresh lemon juice", + "salt" + ] + }, + { + "id": 29968, + "cuisine": "chinese", + "ingredients": [ + "sake", + "ginger", + "cabbage", + "low sodium soy sauce", + "sliced carrots", + "toasted sesame oil", + "diced onions", + "sugar", + "red bell pepper", + "chopped garlic", + "green bell pepper", + "red pepper flakes", + "large shrimp" + ] + }, + { + "id": 22209, + "cuisine": "mexican", + "ingredients": [ + "vanilla ice cream", + "raspberry sherbet", + "cinnamon", + "chopped fresh mint", + "granny smith apples", + "peach sorbet", + "corn tortillas", + "sugar", + "orange marmalade", + "strawberries", + "mango", + "fresh ginger", + "vegetable oil", + "fresh lime juice" + ] + }, + { + "id": 4081, + "cuisine": "indian", + "ingredients": [ + "grape tomatoes", + "garam masala", + "crushed red pepper flakes", + "fenugreek seeds", + "mustard seeds", + "ground turmeric", + "curry powder", + "bell pepper", + "garlic", + "cumin seed", + "coconut milk", + "curry leaves", + "fresh ginger", + "frozen green beans", + "salt", + "carrots", + "onions", + "water", + "potatoes", + "button mushrooms", + "green chilies", + "cinnamon sticks" + ] + }, + { + "id": 29338, + "cuisine": "cajun_creole", + "ingredients": [ + "large eggs", + "vegetable oil", + "all-purpose flour", + "catfish fillets", + "whole milk", + "worcestershire sauce", + "chop fine pecan", + "large garlic cloves", + "fresh lemon juice", + "unsalted butter", + "dry white wine", + "whipping cream" + ] + }, + { + "id": 26211, + "cuisine": "southern_us", + "ingredients": [ + "water", + "freshly ground pepper", + "salt", + "grits" + ] + }, + { + "id": 22117, + "cuisine": "italian", + "ingredients": [ + "candy bar", + "all-purpose flour", + "granulated sugar", + "butter", + "chocolate candy bars", + "large eggs", + "salt", + "white cornmeal", + "milk chocolate", + "baking powder", + "hazelnut liqueur" + ] + }, + { + "id": 45431, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "chopped cilantro fresh", + "hellmann' or best food real mayonnais", + "ground cumin", + "purple onion", + "mango", + "grape tomatoes", + "chipotle peppers" + ] + }, + { + "id": 16618, + "cuisine": "indian", + "ingredients": [ + "wafer", + "vegetable oil" + ] + }, + { + "id": 13428, + "cuisine": "italian", + "ingredients": [ + "ground pepper", + "fresh mozzarella", + "garlic cloves", + "butternut squash", + "part-skim ricotta cheese", + "plum tomatoes", + "grated parmesan cheese", + "extra-virgin olive oil", + "oven-ready lasagna noodles", + "spinach", + "coarse salt", + "grated nutmeg", + "dried oregano" + ] + }, + { + "id": 13891, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "cilantro leaves", + "large shrimp", + "soy sauce", + "sesame oil", + "rice flour", + "sake", + "egg yolks", + "hot chili sauce", + "kosher salt", + "vegetable oil", + "seltzer water" + ] + }, + { + "id": 28022, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "garlic", + "pasta", + "cracked black pepper", + "parmigiano reggiano cheese", + "salt", + "large egg yolks", + "extra-virgin olive oil" + ] + }, + { + "id": 45856, + "cuisine": "spanish", + "ingredients": [ + "yukon gold potatoes", + "kosher salt", + "onions", + "extra-virgin olive oil", + "large eggs" + ] + }, + { + "id": 20636, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "chopped green bell pepper", + "tomato basil sauce", + "part-skim mozzarella cheese", + "butter", + "Italian turkey sausage", + "fat free milk", + "cooking spray", + "chopped onion", + "fresh parmesan cheese", + "all-purpose flour", + "manicotti" + ] + }, + { + "id": 48759, + "cuisine": "jamaican", + "ingredients": [ + "scotch bonnet chile", + "thyme sprigs", + "water", + "scallions", + "black pepper", + "salt", + "allspice", + "shell-on shrimp", + "garlic cloves" + ] + }, + { + "id": 33745, + "cuisine": "spanish", + "ingredients": [ + "salt", + "roasted red peppers" + ] + }, + { + "id": 31106, + "cuisine": "french", + "ingredients": [ + "honey", + "lime rind", + "plums", + "vanilla beans", + "fresh lime juice", + "vanilla lowfat yogurt", + "sauterne" + ] + }, + { + "id": 44329, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "balsamic vinegar", + "salt", + "asparagus", + "sweet pepper", + "fresh oregano", + "ground black pepper", + "whole grain rotini", + "shredded parmesan cheese", + "zucchini", + "purple onion" + ] + }, + { + "id": 24775, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "green onions", + "garlic cloves", + "mung bean sprouts", + "soy sauce", + "barbecued pork", + "carrots", + "peeled fresh ginger", + "peanut oil", + "corn starch", + "sugar", + "sesame oil", + "Chinese egg noodles", + "snow peas" + ] + }, + { + "id": 25719, + "cuisine": "southern_us", + "ingredients": [ + "warm water", + "club soda", + "tea bags", + "lemon", + "wheels", + "sugar", + "george dickel" + ] + }, + { + "id": 29249, + "cuisine": "italian", + "ingredients": [ + "1% low-fat milk", + "freshly ground pepper", + "minced garlic", + "margarine", + "fettucine", + "all-purpose flour", + "canadian bacon", + "grated parmesan cheese", + "cream cheese" + ] + }, + { + "id": 17983, + "cuisine": "cajun_creole", + "ingredients": [ + "mayonaise", + "scallions", + "italian salad dressing", + "chopped celery", + "chopped parsley", + "cream cheese", + "medium shrimp", + "cajun seasoning", + "fresh lemon juice" + ] + }, + { + "id": 48433, + "cuisine": "mexican", + "ingredients": [ + "condensed cream of chicken soup", + "sour cream", + "chile pepper", + "corn tortillas", + "green onions", + "shredded colby", + "roasting chickens", + "muenster cheese" + ] + }, + { + "id": 33660, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "diced tomatoes", + "garlic salt", + "chopped green chilies", + "worcestershire sauce", + "onions", + "water", + "beef stock cubes", + "ground beef", + "ground cumin", + "molasses", + "ground black pepper", + "salt", + "pork sausages" + ] + }, + { + "id": 48217, + "cuisine": "french", + "ingredients": [ + "lamb shanks", + "sea salt", + "carrots", + "dijon mustard", + "garlic", + "ground black pepper", + "dry red wine", + "fresh rosemary", + "lemon", + "yellow onion" + ] + }, + { + "id": 27791, + "cuisine": "spanish", + "ingredients": [ + "water", + "whipping cream", + "dark brown sugar", + "egg yolks", + "apple juice", + "unsalted butter", + "vanilla extract", + "sour cream", + "sugar", + "half & half", + "fresh raspberries" + ] + }, + { + "id": 24057, + "cuisine": "french", + "ingredients": [ + "sugar", + "all-purpose flour", + "ice water", + "unsalted butter", + "salt" + ] + }, + { + "id": 47615, + "cuisine": "southern_us", + "ingredients": [ + "egg yolks", + "chopped pecans", + "sugar", + "all-purpose flour", + "milk", + "lemon juice", + "butter" + ] + }, + { + "id": 29839, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "baking soda", + "vegetable shortening", + "salt", + "cocoa", + "vinegar", + "vanilla", + "sugar", + "granulated sugar", + "buttermilk", + "eggs", + "milk", + "flour", + "red food coloring" + ] + }, + { + "id": 45790, + "cuisine": "moroccan", + "ingredients": [ + "warm water", + "salt", + "sea salt flakes", + "plain flour", + "semolina", + "wholemeal flour", + "salad", + "pepper", + "cumin seed", + "ground cumin", + "sugar", + "lamb shoulder", + "yeast" + ] + }, + { + "id": 31062, + "cuisine": "greek", + "ingredients": [ + "non-fat sour cream", + "nonfat yogurt", + "cucumber", + "baked pita chips", + "lemon juice", + "Hidden Valley® Original Ranch® Light Dressing" + ] + }, + { + "id": 32317, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "celery", + "green bell pepper", + "diced tomatoes", + "onions", + "turkey sausage", + "bay leaf", + "low sodium chicken broth", + "garlic", + "long grain white rice" + ] + }, + { + "id": 40280, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "frozen peas", + "water", + "carrots", + "soy sauce", + "worcestershire sauce", + "basmati rice", + "green onions", + "onions" + ] + }, + { + "id": 33141, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "onions", + "parsnips", + "carrots", + "salt", + "water", + "ground beef" + ] + }, + { + "id": 307, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "large eggs", + "raisins", + "ground cumin", + "olive oil", + "pimentos", + "ground beef", + "honey", + "pastry dough", + "hot sauce", + "ground black pepper", + "coarse salt", + "onions" + ] + }, + { + "id": 48583, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "vegetable oil", + "pea shoots", + "chinese noodles", + "chopped walnuts", + "soy sauce", + "sesame oil", + "scallions", + "mustard", + "peanuts", + "chili oil" + ] + }, + { + "id": 10764, + "cuisine": "french", + "ingredients": [ + "sugar", + "apples", + "canola oil", + "Boston lettuce", + "dried cherry", + "salt", + "pepper", + "white wine vinegar", + "camembert", + "mayonaise", + "glazed pecans", + "maple syrup" + ] + }, + { + "id": 22288, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "white sugar", + "pinenuts", + "all-purpose flour", + "eggs", + "salt", + "honey", + "confectioners sugar" + ] + }, + { + "id": 16549, + "cuisine": "mexican", + "ingredients": [ + "hominy", + "garlic", + "iceberg lettuce", + "white onion", + "boneless skinless chicken breasts", + "rib", + "tostadas", + "jalapeno chilies", + "achiote paste", + "chicken", + "lime", + "cilantro", + "oregano" + ] + }, + { + "id": 5158, + "cuisine": "italian", + "ingredients": [ + "eggs", + "pepper", + "flour", + "anchovy paste", + "oregano", + "chili flakes", + "olive oil", + "basil", + "loin pork chops", + "capers", + "minced garlic", + "balsamic vinegar", + "salt", + "tomatoes", + "brown sugar", + "grated parmesan cheese", + "kalamata", + "panko breadcrumbs" + ] + }, + { + "id": 13284, + "cuisine": "chinese", + "ingredients": [ + "fat free less sodium chicken broth", + "salt", + "ground white pepper", + "sliced green onions", + "peeled fresh ginger", + "firm tofu", + "wood ear mushrooms", + "bean threads", + "less sodium soy sauce", + "dark sesame oil", + "boiling water", + "tilapia fillets", + "rice vinegar", + "chinese black vinegar" + ] + }, + { + "id": 9777, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "cayenne", + "cornmeal", + "dried thyme", + "salt", + "mayonaise", + "cooking oil", + "greens", + "catfish fillets", + "ground black pepper", + "crusty rolls" + ] + }, + { + "id": 16481, + "cuisine": "cajun_creole", + "ingredients": [ + "lettuce leaves", + "crushed red pepper", + "fresh lemon juice", + "lime", + "lemon", + "sauce", + "fresh lime juice", + "orange", + "grapefruit juice", + "pineapple juice", + "shrimp", + "citrus fruit", + "fresh orange juice", + "grapefruit" + ] + }, + { + "id": 5446, + "cuisine": "indian", + "ingredients": [ + "clove", + "mace", + "rice", + "cinnamon sticks", + "tomatoes", + "teas", + "green chilies", + "chicken", + "nutmeg", + "yoghurt", + "green cardamom", + "onions", + "water", + "salt", + "oil" + ] + }, + { + "id": 33530, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium chicken broth", + "shallots", + "Sriracha", + "chopped cilantro", + "lime juice", + "ground pork", + "soy sauce", + "chinese eggplants", + "canola oil" + ] + }, + { + "id": 38449, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "quickcooking grits", + "ground cinnamon", + "egg yolks", + "peach preserves", + "unsalted butter", + "vanilla extract", + "sugar", + "mint leaves", + "frozen peach slices" + ] + }, + { + "id": 15659, + "cuisine": "thai", + "ingredients": [ + "lime", + "coconut milk", + "red chili peppers", + "cilantro leaves", + "galangal", + "chicken stock", + "chicken breasts", + "lime leaves", + "lemongrass", + "Thai fish sauce" + ] + }, + { + "id": 46459, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lemongrass", + "radishes", + "hanger steak", + "salt", + "fresh mint", + "pepper", + "chili paste", + "shallots", + "tamari soy sauce", + "peanut oil", + "fresh lime juice", + "soy sauce", + "peanuts", + "lemon zest", + "watercress", + "cilantro leaves", + "toasted sesame oil", + "minced garlic", + "raw honey", + "sesame oil", + "purple onion", + "chinese five-spice powder" + ] + }, + { + "id": 17803, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped fresh thyme", + "olive oil", + "smoked paprika", + "andouille sausage", + "garlic cloves", + "sherry wine vinegar" + ] + }, + { + "id": 42393, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "salt", + "hothouse cucumber", + "extra-virgin olive oil", + "chopped fresh mint", + "2% lowfat greek yogurt" + ] + }, + { + "id": 37995, + "cuisine": "spanish", + "ingredients": [ + "chicken stock", + "bay leaves", + "garlic", + "frozen peas", + "chorizo", + "coarse salt", + "red bell pepper", + "tomatoes", + "vegetable oil", + "medium-grain rice", + "pimenton", + "saffron threads", + "ground black pepper", + "chicken meat", + "onions" + ] + }, + { + "id": 1171, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "diced onions", + "fresh lime juice", + "tomatoes", + "chopped cilantro fresh", + "salt" + ] + }, + { + "id": 16112, + "cuisine": "cajun_creole", + "ingredients": [ + "shrimp tails", + "frozen okra", + "chili powder", + "purple onion", + "corn starch", + "green bell pepper", + "dried thyme", + "low sodium chicken broth", + "garlic", + "all-purpose flour", + "roasted tomatoes", + "cold water", + "dried basil", + "quinoa", + "cajun seasoning", + "salt", + "red bell pepper", + "black pepper", + "olive oil", + "boneless skinless chicken breasts", + "chopped celery", + "cayenne pepper", + "dried oregano" + ] + }, + { + "id": 11550, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "dipping sauces", + "soy sauce", + "mirin", + "water", + "green onions", + "sesame seeds", + "soba noodles" + ] + }, + { + "id": 34929, + "cuisine": "mexican", + "ingredients": [ + "turkey bacon", + "freshly ground pepper", + "russet potatoes", + "monterey jack", + "olive oil", + "scallions", + "salt" + ] + }, + { + "id": 8369, + "cuisine": "greek", + "ingredients": [ + "green onions", + "lemon juice", + "ground black pepper", + "salt", + "garbanzo beans", + "garlic", + "flat leaf parsley", + "tahini", + "grated lemon zest" + ] + }, + { + "id": 33572, + "cuisine": "southern_us", + "ingredients": [ + "fresh basil", + "half & half", + "all-purpose flour", + "pepper", + "bacon slices", + "vidalia onion", + "butter", + "garlic cloves", + "corn kernels", + "salt" + ] + }, + { + "id": 3052, + "cuisine": "british", + "ingredients": [ + "turnips", + "milk", + "dry white wine", + "lamb shoulder", + "carrots", + "water", + "leeks", + "heavy cream", + "beef broth", + "black pepper", + "unsalted butter", + "baking potatoes", + "all-purpose flour", + "tomato paste", + "pearl onions", + "chopped fresh thyme", + "salt", + "chopped garlic" + ] + }, + { + "id": 17448, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "chili powder", + "ginger", + "purple onion", + "mustard seeds", + "grated coconut", + "mint leaves", + "lemon", + "garlic", + "green chilies", + "coconut milk", + "garam masala", + "vegetable oil", + "cardamom seeds", + "salt", + "cinnamon sticks", + "cream", + "free-range chickens", + "poppy seeds", + "curry", + "cumin seed", + "clarified butter" + ] + }, + { + "id": 6896, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "croutons", + "tomatoes", + "ground black pepper", + "english cucumber", + "tomato juice", + "purple onion", + "green bell pepper", + "red wine vinegar", + "garlic cloves" + ] + }, + { + "id": 38980, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "vegetable oil", + "dark sesame oil", + "boneless skinless chicken breast halves", + "fresh basil", + "lime", + "dried rice noodles", + "coconut milk", + "dark soy sauce", + "fresh ginger root", + "chopped onion", + "fresh lime juice", + "water", + "heavy cream", + "corn starch", + "chopped cilantro fresh" + ] + }, + { + "id": 44837, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "onions", + "boneless skinless chicken breasts", + "crushed tomatoes", + "Hidden Valley® Farmhouse Originals Italian with Herbs Dressing" + ] + }, + { + "id": 27322, + "cuisine": "italian", + "ingredients": [ + "melted butter", + "pepper", + "bay leaves", + "garlic cloves", + "garlic salt", + "tomato sauce", + "dried basil", + "salt", + "ground beef", + "italian seasoning", + "brown sugar", + "crushed tomatoes", + "butter", + "bay leaf", + "dried oregano", + "tomato paste", + "hot red pepper flakes", + "dried thyme", + "italian loaf", + "onions" + ] + }, + { + "id": 38138, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "crushed red pepper", + "clams", + "clam juice", + "fresh parsley", + "dry white wine", + "garlic cloves", + "anise seed", + "linguine" + ] + }, + { + "id": 31360, + "cuisine": "mexican", + "ingredients": [ + "soy sauce", + "guacamole", + "yellow onion", + "ancho chile pepper", + "lime", + "cilantro leaves", + "oil", + "ground cumin", + "lime juice", + "garlic", + "cayenne pepper", + "dried oregano", + "sugar", + "flour tortillas", + "salsa", + "sour cream" + ] + }, + { + "id": 15444, + "cuisine": "southern_us", + "ingredients": [ + "ground red pepper", + "oregano", + "garlic powder", + "paprika", + "ground black pepper", + "dry mustard", + "seasoning salt", + "chili powder" + ] + }, + { + "id": 41688, + "cuisine": "greek", + "ingredients": [ + "eggplant", + "large garlic cloves", + "veal shanks", + "large eggs", + "salt", + "pasta", + "whole milk", + "all-purpose flour", + "unsalted butter", + "extra-virgin olive oil", + "feta cheese crumbles" + ] + }, + { + "id": 17676, + "cuisine": "chinese", + "ingredients": [ + "cooked rice", + "vegetable oil", + "hoisin sauce", + "dark sesame oil", + "light soy sauce", + "top sirloin", + "chicken broth", + "green onions", + "corn starch" + ] + }, + { + "id": 19521, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "pan drippings", + "kosher salt", + "cooking oil", + "cracked black pepper", + "large eggs", + "cajun seasoning", + "milk", + "chicken breast halves", + "seasoned flour" + ] + }, + { + "id": 26025, + "cuisine": "southern_us", + "ingredients": [ + "white onion", + "creole seasoning", + "turkey", + "peanut oil" + ] + }, + { + "id": 27179, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "cream cheese", + "chopped green chilies", + "salt", + "corn tortillas", + "jack cheese", + "shallots", + "enchilada sauce", + "low sodium chicken broth", + "tortilla chips", + "evaporated skim milk" + ] + }, + { + "id": 38231, + "cuisine": "indian", + "ingredients": [ + "water", + "garlic", + "dry yeast", + "all-purpose flour", + "milk", + "salt", + "sugar", + "butter", + "curds" + ] + }, + { + "id": 31860, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "water", + "lasagna noodles", + "chopped fresh thyme", + "goat cheese", + "large shrimp", + "cottage cheese", + "part-skim mozzarella cheese", + "mushrooms", + "all-purpose flour", + "fresh lemon juice", + "celery salt", + "lump crab meat", + "fresh parmesan cheese", + "dry white wine", + "chopped onion", + "flat leaf parsley", + "fresh basil", + "olive oil", + "cooking spray", + "1% low-fat milk", + "garlic cloves" + ] + }, + { + "id": 28429, + "cuisine": "russian", + "ingredients": [ + "garlic powder", + "worcestershire sauce", + "ketchup", + "Tabasco Pepper Sauce", + "mayonaise", + "dijon mustard", + "chili sauce", + "olive oil", + "lemon" + ] + }, + { + "id": 4816, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh lemon juice", + "fresh basil", + "penne pasta", + "plum tomatoes", + "medium shrimp uncook", + "grated lemon peel", + "baby spinach leaves", + "garlic cloves" + ] + }, + { + "id": 5718, + "cuisine": "indian", + "ingredients": [ + "water", + "chili powder", + "chopped cilantro fresh", + "fresh ginger", + "salt", + "curry powder", + "vegetable oil", + "ground cloves", + "finely chopped onion", + "lentils" + ] + }, + { + "id": 42395, + "cuisine": "filipino", + "ingredients": [ + "water", + "beef stew meat", + "canola oil", + "fresh green bean", + "bok choy", + "tomatoes", + "garlic", + "onions", + "base", + "broccoli" + ] + }, + { + "id": 43684, + "cuisine": "thai", + "ingredients": [ + "coconut oil", + "spicy mayonnaise", + "red pepper flakes", + "filet", + "water", + "chili powder", + "cilantro leaves", + "ground cumin", + "mayonaise", + "coconut butter", + "garlic", + "ground coriander", + "fish sauce", + "fresh ginger", + "lime wedges", + "hot sauce" + ] + }, + { + "id": 6006, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "ravioli", + "shredded mozzarella cheese", + "olive oil", + "garlic", + "dried thyme", + "coarse salt", + "onions", + "tomatoes", + "grated parmesan cheese", + "freshly ground pepper" + ] + }, + { + "id": 14466, + "cuisine": "chinese", + "ingredients": [ + "chile paste with garlic", + "cooking spray", + "filet", + "honey", + "green onions", + "hoisin sauce", + "seasoned rice wine vinegar", + "grape tomatoes", + "peeled fresh ginger" + ] + }, + { + "id": 40423, + "cuisine": "greek", + "ingredients": [ + "honey", + "purple onion", + "feta cheese crumbles", + "arugula", + "skim milk", + "dijon mustard", + "fresh oregano", + "onions", + "ground lamb", + "tomatoes", + "olive oil", + "nonfat yogurt plain", + "cucumber", + "chopped garlic", + "whole wheat pita", + "garlic", + "fresh lemon juice", + "chopped fresh mint" + ] + }, + { + "id": 26267, + "cuisine": "filipino", + "ingredients": [ + "salt", + "pepper", + "cooked white rice", + "oil", + "garlic" + ] + }, + { + "id": 39207, + "cuisine": "british", + "ingredients": [ + "baking soda", + "butter", + "applesauce", + "eggs", + "cold coffee", + "all-purpose flour", + "ground cinnamon", + "ground nutmeg", + "raisins", + "brown sugar", + "baking powder", + "chopped pecans" + ] + }, + { + "id": 16310, + "cuisine": "italian", + "ingredients": [ + "whole milk", + "extra-virgin olive oil", + "fennel seeds", + "paprika", + "flat leaf parsley", + "large garlic cloves", + "squid", + "bread crumb fresh", + "ground pork" + ] + }, + { + "id": 25582, + "cuisine": "french", + "ingredients": [ + "large eggs", + "vegetable oil spray", + "bittersweet chocolate", + "sugar", + "fresh lemon juice", + "unsalted butter", + "unsweetened cocoa powder" + ] + }, + { + "id": 9819, + "cuisine": "italian", + "ingredients": [ + "bread crumb fresh", + "olive oil", + "escarole", + "onions", + "water", + "grated parmesan cheese", + "ground beef", + "kosher salt", + "ground black pepper", + "celery", + "dried oregano", + "chicken stock", + "kale", + "garlic", + "fresh parsley" + ] + }, + { + "id": 43962, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "boneless skinless chicken breasts", + "corn tortillas", + "jalapeno chilies", + "cilantro leaves", + "chorizo sausage", + "mayonaise", + "salt", + "fresh lime juice", + "avocado", + "cooking spray", + "rolls", + "fat-free mayonnaise" + ] + }, + { + "id": 40005, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "olive oil", + "bay leaves", + "garlic", + "small white beans", + "baby potatoes", + "water", + "zucchini", + "orzo", + "yellow onion", + "green beans", + "rosemary", + "leeks", + "extra-virgin olive oil", + "grated Gruyère cheese", + "pistou", + "tomatoes", + "kidney beans", + "basil", + "salt", + "carrots" + ] + }, + { + "id": 15934, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "heavy whipping cream", + "chocolate morsels", + "coffee liqueur" + ] + }, + { + "id": 18130, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh basil", + "artichoke hearts", + "balsamic vinegar", + "salad greens", + "roasted red peppers", + "rolls", + "roast breast of chicken", + "olive oil", + "swiss cheese", + "garlic cloves", + "capers", + "roast beef deli meat", + "kalamata" + ] + }, + { + "id": 43199, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "brandy", + "salt", + "black peppercorns", + "sunflower oil", + "unsalted butter", + "tenderloin steaks" + ] + }, + { + "id": 48298, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "salt", + "eggs", + "ginger", + "chopped cilantro fresh", + "tomatoes", + "vegetable oil", + "cayenne pepper", + "tumeric", + "purple onion" + ] + }, + { + "id": 16931, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "peaches", + "evaporated milk", + "self raising flour", + "butter" + ] + }, + { + "id": 39785, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "red bell pepper", + "shredded cheddar cheese", + "cilantro", + "ground cumin", + "diced tomatoes", + "boneless skinless chicken breast halves", + "chopped green bell pepper", + "salt" + ] + }, + { + "id": 5132, + "cuisine": "southern_us", + "ingredients": [ + "large egg yolks", + "all-purpose flour", + "whipping cream", + "grate lime peel", + "unsalted butter", + "blueberries", + "sugar", + "salt", + "fresh lime juice" + ] + }, + { + "id": 39737, + "cuisine": "french", + "ingredients": [ + "whole grain mustard", + "lemon", + "coarse kosher salt", + "water", + "fresh thyme leaves", + "fresh lemon juice", + "bay leaf", + "honey", + "butter", + "low salt chicken broth", + "chicken", + "salad", + "vegetables", + "all-purpose flour", + "thyme sprigs" + ] + }, + { + "id": 35783, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "pork shoulder", + "pepper", + "chili sauce", + "skirt steak", + "seasoning salt", + "salad oil", + "chorizo sausage", + "chiles", + "marinade", + "chicken thighs" + ] + }, + { + "id": 31588, + "cuisine": "vietnamese", + "ingredients": [ + "shallots", + "rice vinegar", + "toasted sesame oil", + "chopped garlic", + "honey", + "ginger", + "carrots", + "chopped fresh mint", + "reduced sodium soy sauce", + "rice vermicelli", + "cucumber", + "chopped cilantro fresh", + "kosher salt", + "vegetable oil", + "scallions", + "fresh lime juice" + ] + }, + { + "id": 42291, + "cuisine": "vietnamese", + "ingredients": [ + "brown sugar", + "straw mushrooms", + "chili", + "bananas", + "cilantro", + "canola oil", + "pickled garlic", + "coconut", + "peanuts", + "shallots", + "salt", + "soy sauce", + "Vietnamese coriander", + "seasoning salt", + "cane vinegar", + "ginger", + "ginger paste", + "white pepper", + "lime", + "thai basil", + "lemon", + "toasted sesame oil" + ] + }, + { + "id": 48429, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "goat cheese", + "tumeric", + "dry white wine", + "onions", + "arborio rice", + "low sodium chicken broth", + "red bell pepper", + "olive oil", + "salt" + ] + }, + { + "id": 42467, + "cuisine": "british", + "ingredients": [ + "bananas", + "whipping cream", + "butter", + "digestive biscuit", + "chocolate", + "sugar", + "carnation condensed milk" + ] + }, + { + "id": 18038, + "cuisine": "italian", + "ingredients": [ + "water", + "butter", + "fresh parsley", + "dry vermouth", + "cooking oil", + "crabmeat", + "canned low sodium chicken broth", + "asparagus", + "salt", + "grated orange", + "arborio rice", + "ground black pepper", + "garlic", + "onions" + ] + }, + { + "id": 17265, + "cuisine": "indian", + "ingredients": [ + "chiles", + "large eggs", + "ground turmeric", + "fresh ginger", + "scallions", + "fresh coriander", + "salt", + "ground cumin", + "tomatoes", + "ground black pepper", + "clarified butter" + ] + }, + { + "id": 15228, + "cuisine": "irish", + "ingredients": [ + "hot sauce", + "finely chopped onion", + "fresh lemon juice", + "worcestershire sauce", + "pickle relish", + "parsley flakes", + "hellmann' or best food real mayonnais" + ] + }, + { + "id": 13405, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "cooking spray", + "chopped garlic", + "parmigiano-reggiano cheese", + "dry yeast", + "part-skim ricotta cheese", + "yellow corn meal", + "olive oil", + "cheese", + "warm water", + "chopped fresh chives", + "bread flour" + ] + }, + { + "id": 7371, + "cuisine": "indian", + "ingredients": [ + "clove", + "fresh ginger", + "salt", + "cinnamon sticks", + "chicken thighs", + "plain yogurt", + "vegetable oil", + "ground coriander", + "bay leaf", + "ground cumin", + "green cardamom pods", + "water", + "garlic", + "split peas", + "onions", + "black peppercorns", + "jalapeno chilies", + "cilantro leaves", + "coconut milk", + "ground turmeric" + ] + }, + { + "id": 31129, + "cuisine": "japanese", + "ingredients": [ + "water", + "white sugar", + "rice vinegar", + "salt", + "dried kelp", + "rice" + ] + }, + { + "id": 47534, + "cuisine": "southern_us", + "ingredients": [ + "water", + "quickcooking grits", + "cream cheese, soften", + "graham cracker crusts", + "salt", + "milk", + "vanilla extract", + "sugar", + "large eggs", + "crushed pineapple" + ] + }, + { + "id": 47288, + "cuisine": "jamaican", + "ingredients": [ + "tomatoes", + "garlic", + "onions", + "pepper", + "lemon rind", + "chicken", + "white rum", + "salt", + "fresh pineapple", + "raisins", + "lemon juice" + ] + }, + { + "id": 17659, + "cuisine": "indian", + "ingredients": [ + "fresh spinach", + "ricotta cheese", + "ground coriander", + "ground cumin", + "fresh ginger root", + "garlic", + "dried red chile peppers", + "olive oil", + "coarse sea salt", + "sour cream", + "tomatoes", + "finely chopped onion", + "cilantro leaves", + "ground turmeric" + ] + }, + { + "id": 8555, + "cuisine": "mexican", + "ingredients": [ + "enchilada sauce", + "onions", + "corn tortillas", + "shredded cheddar cheese" + ] + }, + { + "id": 25597, + "cuisine": "japanese", + "ingredients": [ + "wasabi powder", + "soy sauce" + ] + }, + { + "id": 39140, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "fresh tarragon", + "seasoning salt", + "freshly ground pepper", + "mayonaise", + "purple onion", + "chives", + "diced celery" + ] + }, + { + "id": 13939, + "cuisine": "greek", + "ingredients": [ + "caster sugar", + "granulated sugar", + "phyllo pastry", + "eggs", + "orange", + "baking powder", + "ground cinnamon", + "water", + "cake", + "syrup", + "olive oil", + "greek yogurt" + ] + }, + { + "id": 5711, + "cuisine": "spanish", + "ingredients": [ + "chiles", + "garlic", + "lemon", + "medium shrimp", + "baguette", + "garlic cloves", + "extra-virgin olive oil", + "fresh parsley" + ] + }, + { + "id": 7680, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "butter", + "shredded sharp cheddar cheese", + "green pepper", + "white sugar", + "black beans", + "onion powder", + "diced tomatoes", + "frozen corn", + "corn starch", + "ground cumin", + "chicken broth", + "chili powder", + "red pepper", + "salt", + "cream cheese", + "fajita seasoning mix", + "garlic powder", + "spices", + "paprika", + "cayenne pepper", + "onions" + ] + }, + { + "id": 46257, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "all-purpose flour", + "luke warm water", + "granulated sugar", + "italian seasoning", + "olive oil", + "yeast", + "warm water", + "pizza sauce" + ] + }, + { + "id": 38653, + "cuisine": "southern_us", + "ingredients": [ + "andouille sausage", + "low salt chicken broth", + "butter", + "grits" + ] + }, + { + "id": 14320, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "artichokes", + "fresh lemon juice", + "whole milk ricotta cheese", + "walnuts", + "flat leaf parsley", + "water", + "extra-virgin olive oil", + "garlic cloves", + "dry white wine", + "salt", + "ground white pepper" + ] + }, + { + "id": 10413, + "cuisine": "italian", + "ingredients": [ + "penne", + "leeks", + "garlic cloves", + "olive oil", + "vegetable broth", + "walnut halves", + "pecorino romano cheese", + "grated lemon peel", + "broccoli rabe", + "whipping cream" + ] + }, + { + "id": 44962, + "cuisine": "chinese", + "ingredients": [ + "water", + "garlic", + "carrots", + "black peppercorns", + "rice wine", + "scallions", + "bay leaf", + "white vinegar", + "honey", + "sauce", + "rib", + "soy sauce", + "ginger", + "oyster sauce", + "onions" + ] + }, + { + "id": 6117, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "salt", + "fresh lemon juice", + "catfish fillets", + "ground red pepper", + "tartar sauce", + "onions", + "milk", + "vegetable oil", + "fry mix", + "prepared mustard", + "hot sauce", + "corn starch" + ] + }, + { + "id": 38806, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "and fat free half half", + "olive oil", + "all-purpose flour", + "vodka", + "crushed red pepper", + "penne", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 40750, + "cuisine": "greek", + "ingredients": [ + "salmon fillets", + "orzo", + "plum tomatoes", + "ground black pepper", + "lemon juice", + "olive oil", + "salt", + "fresh dill", + "lemon", + "cucumber" + ] + }, + { + "id": 41499, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "tomato sauce", + "boneless skinless chicken breast halves", + "vegetable oil", + "minced onion", + "ground cumin" + ] + }, + { + "id": 45013, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "extra-virgin olive oil", + "prosciutto", + "fresh mozzarella", + "rocket leaves" + ] + }, + { + "id": 7804, + "cuisine": "southern_us", + "ingredients": [ + "gravy", + "pepper", + "cream cheese, soften", + "mashed potatoes", + "salt", + "milk" + ] + }, + { + "id": 39495, + "cuisine": "mexican", + "ingredients": [ + "onion powder", + "ground cumin", + "garlic powder", + "cornflour", + "paprika", + "chili powder", + "cayenne pepper" + ] + }, + { + "id": 26485, + "cuisine": "japanese", + "ingredients": [ + "fresh spinach", + "peeled fresh ginger", + "sliced green onions", + "low sodium soy sauce", + "water", + "crushed red pepper", + "sugar", + "whole wheat spaghetti", + "sake", + "pork loin", + "carrots" + ] + }, + { + "id": 38826, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "scallions", + "long grain white rice", + "cayenne", + "onions", + "vegetable oil", + "pork sausages", + "chicken broth", + "red bell pepper" + ] + }, + { + "id": 30779, + "cuisine": "indian", + "ingredients": [ + "marsala wine", + "avocado oil", + "lentils", + "cumin", + "spinach", + "stewed tomatoes", + "salt", + "coconut milk", + "tomato paste", + "red pepper flakes", + "purple onion", + "smoked paprika", + "masala", + "coconut oil", + "garlic", + "cilantro leaves", + "coriander" + ] + }, + { + "id": 34183, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "minced garlic", + "parsley", + "mussels", + "shallots", + "flour", + "butter" + ] + }, + { + "id": 16128, + "cuisine": "italian", + "ingredients": [ + "peeled tomatoes", + "salt", + "crab", + "Dungeness crabs", + "fresh basil leaves", + "angel hair", + "olive oil", + "flat leaf parsley", + "pepper", + "garlic" + ] + }, + { + "id": 33415, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "ground black pepper", + "salt", + "boneless skinless chicken breast halves", + "olive oil", + "shallots", + "fresh lime juice", + "ground cumin", + "tomatoes", + "unsalted butter", + "tequila", + "fresh chile", + "almonds", + "large garlic cloves", + "hass avocado" + ] + }, + { + "id": 45601, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "kidney beans", + "diced tomatoes", + "red bell pepper", + "kosher salt", + "lean ground beef", + "scallions", + "ground cumin", + "tomato sauce", + "chili powder", + "yellow onion", + "sour cream", + "shredded cheddar cheese", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 26343, + "cuisine": "japanese", + "ingredients": [ + "milk", + "salt", + "chicken thighs", + "soy sauce", + "ground black pepper", + "frozen mixed vegetables", + "japanese rice", + "olive oil", + "sharp cheddar cheese", + "ketchup", + "large eggs", + "onions" + ] + }, + { + "id": 5576, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "Tabasco Pepper Sauce", + "salt", + "chopped parsley", + "hot sausage", + "bay leaves", + "smoked sausage", + "sauce", + "olive oil", + "garlic", + "yellow onion", + "pepper", + "red beans", + "chopped celery", + "ham" + ] + }, + { + "id": 9962, + "cuisine": "brazilian", + "ingredients": [ + "tapioca flour", + "queso fresco", + "olive oil", + "milk", + "table salt", + "large eggs" + ] + }, + { + "id": 24940, + "cuisine": "thai", + "ingredients": [ + "sambal ulek", + "red cabbage", + "rice noodles", + "cilantro leaves", + "beansprouts", + "chicken stock", + "black pepper", + "sliced carrots", + "crushed red pepper flakes", + "tamarind concentrate", + "light brown sugar", + "fish sauce", + "boneless skinless chicken breasts", + "vegetable oil", + "scallions", + "low sodium soy sauce", + "peanuts", + "lime wedges", + "garlic", + "corn starch" + ] + }, + { + "id": 2807, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "dried salted codfish", + "flat leaf parsley", + "extra-virgin olive oil", + "fresh mint", + "red pepper flakes", + "salt", + "onions", + "coarse sea salt", + "juice" + ] + }, + { + "id": 7289, + "cuisine": "filipino", + "ingredients": [ + "broccoli florets", + "green beans", + "yellow squash", + "salt", + "pepper", + "vegetable broth", + "red bell pepper", + "zucchini", + "yellow onion" + ] + }, + { + "id": 17914, + "cuisine": "chinese", + "ingredients": [ + "ground chicken", + "large egg whites", + "low sodium chicken broth", + "cilantro sprigs", + "ground white pepper", + "kosher salt", + "shiitake", + "wonton wrappers", + "garlic cloves", + "white pepper", + "fresh ginger", + "sesame oil", + "scallions", + "soy sauce", + "water", + "mirin", + "napa cabbage", + "corn starch" + ] + }, + { + "id": 22142, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "skim milk", + "frozen whole kernel corn", + "non-fat sour cream", + "sliced green onions", + "vegetable oil cooking spray", + "lime juice", + "chili powder", + "garlic cloves", + "eggs", + "picante sauce", + "chopped green bell pepper", + "all-purpose flour", + "yellow corn meal", + "reduced fat cheddar cheese", + "fresh cilantro", + "parsley", + "pinto beans" + ] + }, + { + "id": 44707, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "olive oil", + "queso fresco", + "cilantro leaves", + "onions", + "orange", + "panela", + "garlic", + "tequila", + "cumin", + "black pepper", + "jalapeno chilies", + "cilantro", + "Mexican cheese", + "skirt steak", + "white vinegar", + "lime", + "lime slices", + "salt", + "corn tortillas" + ] + }, + { + "id": 33398, + "cuisine": "italian", + "ingredients": [ + "artichoke hearts", + "banana peppers", + "pesto", + "salami", + "sliced black olives", + "sun-dried tomatoes in oil", + "prebaked pizza crusts", + "shredded mozzarella cheese" + ] + }, + { + "id": 13951, + "cuisine": "italian", + "ingredients": [ + "water", + "salt", + "olive oil", + "eggs", + "all-purpose flour" + ] + }, + { + "id": 48766, + "cuisine": "british", + "ingredients": [ + "light brown sugar", + "granulated sugar", + "almond extract", + "salt", + "water", + "dried apricot", + "all purpose unbleached flour", + "sliced almonds", + "large eggs", + "amaretto", + "almond paste", + "unsalted butter", + "baking powder", + "buttermilk" + ] + }, + { + "id": 2621, + "cuisine": "japanese", + "ingredients": [ + "olive oil", + "ume plum vinegar", + "grapeseed oil", + "agave nectar", + "salmon", + "fillets" + ] + }, + { + "id": 20352, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "black olives", + "avocado", + "green onions", + "shredded Monterey Jack cheese", + "msg", + "chopped cilantro fresh", + "tomatoes", + "zesty italian dressing" + ] + }, + { + "id": 731, + "cuisine": "thai", + "ingredients": [ + "natural sugar", + "lime wedges", + "cilantro leaves", + "garlic cloves", + "fresh lime juice", + "reduced sodium tamari", + "nutritional yeast", + "sunflower oil", + "roasted peanuts", + "red bell pepper", + "fresh spinach", + "chili paste", + "salt", + "liquid", + "beansprouts", + "shiitake", + "rice noodles", + "firm tofu", + "carrots", + "ground turmeric" + ] + }, + { + "id": 38651, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "biscuit dough", + "garlic powder", + "mayonaise", + "green onions", + "dried basil", + "dried oregano" + ] + }, + { + "id": 12748, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "large eggs", + "garlic cloves", + "crushed tomatoes", + "extra-virgin olive oil", + "dried oregano", + "finely chopped fresh parsley", + "salt", + "plain dry bread crumb", + "grated parmesan cheese", + "ground turkey" + ] + }, + { + "id": 30641, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "crushed red pepper", + "water", + "diced tomatoes", + "navy beans", + "asiago", + "dried oregano", + "cheese ravioli", + "escarole" + ] + }, + { + "id": 44267, + "cuisine": "southern_us", + "ingredients": [ + "lime rind", + "fresh lime juice", + "large eggs", + "light cream", + "sweetened condensed milk", + "sugar", + "graham cracker crumbs" + ] + }, + { + "id": 25076, + "cuisine": "brazilian", + "ingredients": [ + "shallots", + "garlic", + "collard greens", + "sea salt", + "butter", + "ground pepper", + "extra-virgin olive oil" + ] + }, + { + "id": 15374, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "lime", + "ground nutmeg", + "chicken breasts", + "orange juice", + "white vinegar", + "white onion", + "olive oil", + "ground sage", + "cayenne pepper", + "soy sauce", + "dried thyme", + "ground black pepper", + "salt", + "ground cinnamon", + "pepper", + "garlic powder", + "green onions", + "ground allspice" + ] + }, + { + "id": 11871, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "ginger", + "olive oil", + "chickpeas", + "crushed tomatoes", + "salt", + "garam masala", + "onions" + ] + }, + { + "id": 43755, + "cuisine": "chinese", + "ingredients": [ + "boneless pork shoulder", + "hoisin sauce", + "shaoxing", + "ketchup", + "peeled fresh ginger", + "mirin", + "salt", + "sugar", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 24375, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "lean ground beef", + "salt", + "chopped onion", + "dried oregano", + "pepper", + "grated parmesan cheese", + "dry red wine", + "dry bread crumbs", + "feta cheese crumbles", + "ground cinnamon", + "large eggs", + "stewed tomatoes", + "all-purpose flour", + "garlic cloves", + "water", + "cooking spray", + "1% low-fat milk", + "fresh oregano", + "spaghetti" + ] + }, + { + "id": 15607, + "cuisine": "french", + "ingredients": [ + "turbinado", + "orange marmalade", + "large eggs", + "pears", + "granulated sugar", + "crème fraîche", + "frozen pastry puff sheets" + ] + }, + { + "id": 6101, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "cayenne pepper", + "sherry wine vinegar", + "cooked shrimp", + "french bread", + "roast red peppers, drain", + "slivered almonds", + "large garlic cloves" + ] + }, + { + "id": 3118, + "cuisine": "british", + "ingredients": [ + "brown sugar", + "butter", + "bread", + "milk", + "grated orange", + "mixed spice", + "grated nutmeg", + "eggs", + "mixed dried fruit" + ] + }, + { + "id": 6395, + "cuisine": "southern_us", + "ingredients": [ + "coconut syrup", + "half & half", + "diet dr. pepper" + ] + }, + { + "id": 48181, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "all-purpose flour" + ] + }, + { + "id": 28406, + "cuisine": "southern_us", + "ingredients": [ + "large egg whites", + "vanilla extract", + "dark brown sugar", + "brandy", + "pastry shell", + "cream cheese", + "large eggs", + "salt", + "chopped pecans", + "sweet potatoes", + "corn syrup", + "pumpkin pie spice" + ] + }, + { + "id": 11169, + "cuisine": "filipino", + "ingredients": [ + "evaporated milk", + "salt", + "sugar", + "egg yolks", + "oil", + "instant yeast", + "all-purpose flour", + "warm water", + "butter" + ] + }, + { + "id": 26330, + "cuisine": "indian", + "ingredients": [ + "urad dal", + "seeds", + "rice" + ] + }, + { + "id": 46718, + "cuisine": "italian", + "ingredients": [ + "eggs", + "ground black pepper", + "salt", + "baguette", + "extra-virgin olive oil", + "romaine lettuce", + "anchovy paste", + "lemon juice", + "parmesan cheese", + "garlic" + ] + }, + { + "id": 41851, + "cuisine": "italian", + "ingredients": [ + "basil dried leaves", + "shredded Italian cheese", + "Pillsbury™ Refrigerated Crescent Dinner Rolls", + "ground beef", + "basil" + ] + }, + { + "id": 18901, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "garlic", + "onions", + "black peppercorns", + "vegetable oil", + "cayenne pepper", + "tomato paste", + "water", + "salt", + "ground turmeric", + "stew meat", + "ginger", + "ground coriander" + ] + }, + { + "id": 6362, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "flat leaf parsley", + "eggplant", + "provolone cheese", + "pizza doughs", + "pitted green olives", + "garlic cloves" + ] + }, + { + "id": 44711, + "cuisine": "japanese", + "ingredients": [ + "ketchup", + "dijon mustard", + "Kewpie Mayonnaise", + "all-purpose flour", + "cole slaw mix", + "dashi powder", + "green onions", + "salt", + "onions", + "sugar", + "water", + "baking powder", + "dried bonito flakes", + "canola oil", + "gari", + "large eggs", + "worcestershire sauce", + "seafood" + ] + }, + { + "id": 23314, + "cuisine": "chinese", + "ingredients": [ + "white vinegar", + "kosher salt", + "sesame oil", + "beer", + "syrup", + "fresh ginger", + "all-purpose flour", + "garlic chili sauce", + "sugar", + "water", + "plums", + "scallions", + "soy sauce", + "baking powder", + "duck", + "cucumber" + ] + }, + { + "id": 29753, + "cuisine": "mexican", + "ingredients": [ + "Mexican cheese blend", + "rice", + "water", + "Green Giant Whole Kernel Sweet Corn", + "roasted red peppers", + "ground beef", + "Old El Paso™ taco seasoning mix", + "diced tomatoes" + ] + }, + { + "id": 34758, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "olive oil", + "cheese", + "tortilla chips", + "avocado", + "lime", + "flank steak", + "rice vinegar", + "lettuce", + "lime juice", + "chipotle", + "salt", + "tequila", + "black beans", + "honey", + "red pepper", + "green pepper" + ] + }, + { + "id": 31148, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "regular soy sauce", + "rice noodles", + "oil", + "white pepper", + "flank steak", + "salt", + "mung bean sprouts", + "soy sauce", + "Shaoxing wine", + "ginger", + "corn starch", + "dark soy sauce", + "baking soda", + "sesame oil", + "scallions" + ] + }, + { + "id": 16261, + "cuisine": "moroccan", + "ingredients": [ + "vegetable oil cooking spray", + "olive oil", + "low salt chicken broth", + "ground cinnamon", + "pepper", + "salt", + "ground turmeric", + "ground ginger", + "sliced almonds", + "chicken breasts", + "couscous", + "prunes", + "water", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 31138, + "cuisine": "moroccan", + "ingredients": [ + "slivered almonds", + "large garlic cloves", + "freshly ground pepper", + "chicken broth", + "dried apricot", + "yellow onion", + "ground cumin", + "ground cinnamon", + "lemon", + "ground coriander", + "olive oil", + "salt", + "leg of lamb" + ] + }, + { + "id": 46138, + "cuisine": "spanish", + "ingredients": [ + "white pepper", + "Tabasco Pepper Sauce", + "garlic", + "flat leaf parsley", + "roma tomatoes", + "ice water", + "dry bread crumbs", + "tomato juice", + "red wine vinegar", + "salt", + "green bell pepper", + "green onions", + "extra-virgin olive oil", + "cucumber" + ] + }, + { + "id": 1294, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "corn husks", + "japanese eggplants", + "white onion", + "extra-virgin olive oil", + "fresh basil", + "zucchini", + "yellow squash", + "garlic cloves" + ] + }, + { + "id": 26218, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "salt", + "tiger prawn", + "pepper", + "cilantro", + "lemon juice", + "tomatoes", + "serrano peppers", + "tortilla chips", + "lime", + "purple onion", + "cucumber" + ] + }, + { + "id": 17965, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "sliced black olives", + "garlic", + "ground cumin", + "corn", + "lean ground beef", + "green chilies", + "taco sauce", + "flour tortillas", + "yellow onion", + "refried beans", + "diced tomatoes", + "ground cayenne pepper" + ] + }, + { + "id": 47144, + "cuisine": "japanese", + "ingredients": [ + "white pepper", + "green onions", + "oil", + "tofu", + "water", + "ginger", + "soy sauce", + "mirin", + "cane sugar", + "chili pepper", + "daikon", + "potato flour" + ] + }, + { + "id": 31068, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "chinese sausage", + "crushed red pepper", + "minced garlic", + "shallots", + "shrimp", + "dried scallops", + "bean paste", + "crabmeat", + "minced ginger", + "sesame oil" + ] + }, + { + "id": 36776, + "cuisine": "cajun_creole", + "ingredients": [ + "pure vanilla extract", + "brandy", + "ground nutmeg", + "dark brown sugar", + "allspice", + "ground ginger", + "Angostura bitters", + "bourbon whiskey", + "white sugar", + "light brown sugar", + "ground cloves", + "dark rum", + "cinnamon sticks", + "eggs", + "mace", + "heavy cream", + "liqueur" + ] + }, + { + "id": 19045, + "cuisine": "french", + "ingredients": [ + "french baguette", + "extra-virgin olive oil", + "capers", + "balsamic vinegar", + "garlic cloves", + "fresh basil", + "pepper", + "salt", + "sugar", + "kalamata", + "plum tomatoes" + ] + }, + { + "id": 43430, + "cuisine": "southern_us", + "ingredients": [ + "vanilla beans", + "baking powder", + "eggs", + "granulated sugar", + "vanilla", + "milk", + "butter", + "powdered sugar", + "flour", + "salt" + ] + }, + { + "id": 2455, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salt", + "lime juice", + "long-grain rice", + "canned black beans", + "scallions", + "corn", + "chopped cilantro" + ] + }, + { + "id": 32374, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "bananas", + "English toffee bits", + "vanilla instant pudding", + "sliced almonds", + "cool whip", + "vanilla wafer crumbs", + "caramel ice cream topping", + "whole milk", + "cream cheese", + "powdered sugar", + "granulated sugar", + "butter" + ] + }, + { + "id": 22611, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "vegetable oil", + "ground black pepper", + "spices", + "pork chops", + "crushed garlic", + "fish sauce", + "shallots", + "oil" + ] + }, + { + "id": 20088, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "salt", + "butter", + "sour cream", + "chopped fresh chives", + "cream cheese", + "paprika" + ] + }, + { + "id": 46325, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "garlic", + "mustard oil", + "clove", + "yoghurt", + "brown cardamom", + "onions", + "black peppercorns", + "salt", + "cinnamon sticks", + "fennel seeds", + "mutton", + "cumin seed", + "saffron" + ] + }, + { + "id": 11962, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "artichokes", + "pitted kalamata olives", + "sea salt", + "roma tomatoes", + "olive oil", + "garlic" + ] + }, + { + "id": 8197, + "cuisine": "irish", + "ingredients": [ + "wheat bran", + "granulated sugar", + "salt", + "baking soda", + "all purpose unbleached flour", + "oat bran", + "graham flour", + "large eggs", + "flaxseed", + "sunflower seeds", + "unsalted butter", + "buttermilk", + "wheat germ" + ] + }, + { + "id": 41182, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "ice", + "white sugar", + "mango" + ] + }, + { + "id": 1463, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "fresh corn", + "butter", + "eggs", + "flour", + "cornmeal", + "sugar", + "buttermilk" + ] + }, + { + "id": 37670, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "lime", + "all-purpose flour", + "french rolls", + "mayonaise", + "shredded lettuce", + "creole seasoning", + "pickle relish", + "horseradish", + "vegetable oil", + "cayenne pepper", + "panko breadcrumbs", + "minced garlic", + "beaten eggs", + "shrimp" + ] + }, + { + "id": 15052, + "cuisine": "greek", + "ingredients": [ + "mint", + "feta cheese", + "ground lamb", + "cherry tomatoes", + "potatoes", + "eggs", + "olive oil", + "onions", + "bread crumbs", + "zucchini" + ] + }, + { + "id": 39722, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh tomatoes", + "minced onion", + "frozen sweet corn", + "fresh lime juice", + "baby lima beans", + "fresh parsley", + "andouille sausage", + "butter" + ] + }, + { + "id": 30458, + "cuisine": "southern_us", + "ingredients": [ + "water", + "diced tomatoes", + "thyme", + "chicken broth", + "black-eyed peas", + "salt", + "smoked ham hocks", + "olive oil", + "garlic", + "bay leaf", + "pepper", + "garlic powder", + "yellow onion" + ] + }, + { + "id": 15236, + "cuisine": "mexican", + "ingredients": [ + "Campbell's Condensed Tomato Soup", + "flour tortillas", + "shredded cheddar cheese", + "salsa", + "water", + "ground beef" + ] + }, + { + "id": 14843, + "cuisine": "italian", + "ingredients": [ + "brussels sprouts", + "extra-virgin olive oil", + "pancetta", + "garlic cloves", + "water" + ] + }, + { + "id": 23570, + "cuisine": "japanese", + "ingredients": [ + "shiitake", + "watercress", + "sake", + "fresh ginger root", + "tofu", + "miso paste", + "seaweed", + "caster sugar", + "spring onions" + ] + }, + { + "id": 23560, + "cuisine": "mexican", + "ingredients": [ + "tomato paste", + "ground black pepper", + "chili powder", + "salt", + "sour cream", + "ground cumin", + "cooked brown rice", + "unsalted butter", + "cream cheese spread", + "sauce", + "canola oil", + "chicken broth", + "Mexican cheese blend", + "ricotta cheese", + "all-purpose flour", + "onions", + "pepper", + "poblano peppers", + "garlic", + "ground coriander", + "chicken" + ] + }, + { + "id": 41756, + "cuisine": "french", + "ingredients": [ + "boar", + "red wine vinegar", + "jelly", + "chicken stock", + "fresh thyme", + "sea salt", + "onions", + "clove", + "olive oil", + "red wine", + "carrots", + "black peppercorns", + "bay leaves", + "cracked black pepper" + ] + }, + { + "id": 27626, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "yellow bell pepper", + "garlic cloves", + "ground cumin", + "lime wedges", + "purple onion", + "fresh lime juice", + "flank steak", + "cilantro sprigs", + "sour cream", + "ground pepper", + "coarse salt", + "salsa", + "canola oil" + ] + }, + { + "id": 17064, + "cuisine": "moroccan", + "ingredients": [ + "fresh coriander", + "boneless skinless chicken breasts", + "ground coriander", + "onions", + "low sodium vegetable stock", + "chopped tomatoes", + "peas", + "cinnamon sticks", + "ground cumin", + "olive oil", + "butter", + "garlic cloves", + "boiling water", + "pepper", + "zucchini", + "chickpeas", + "couscous" + ] + }, + { + "id": 42355, + "cuisine": "italian", + "ingredients": [ + "grape tomatoes", + "ground pepper", + "sea salt", + "thyme", + "baby spinach leaves", + "yukon gold potatoes", + "garlic", + "broth", + "hot red pepper flakes", + "bell pepper", + "diced tomatoes", + "onions", + "fresh rosemary", + "olive oil", + "raisins", + "black olives" + ] + }, + { + "id": 27963, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "bow-tie pasta", + "romaine lettuce", + "anchovy paste", + "fresh lemon juice", + "large garlic cloves", + "croutons", + "dijon mustard", + "extra-virgin olive oil" + ] + }, + { + "id": 6433, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "ancho powder", + "yellow onion", + "dried oregano", + "tomato sauce", + "Mexican cheese blend", + "garlic", + "red bell pepper", + "ground chicken", + "shredded lettuce", + "salt", + "chopped cilantro fresh", + "green bell pepper", + "olive oil", + "paprika", + "cayenne pepper", + "ground cumin" + ] + }, + { + "id": 41904, + "cuisine": "italian", + "ingredients": [ + "whole milk ricotta cheese", + "ground cinnamon", + "candied lemon peel", + "semisweet chocolate", + "confectioners sugar", + "vanilla extract" + ] + }, + { + "id": 3425, + "cuisine": "southern_us", + "ingredients": [ + "green bell pepper", + "olive oil", + "worcestershire sauce", + "garlic", + "small white beans", + "molasses", + "bay leaves", + "dry mustard", + "dark brown sugar", + "chicken", + "tomato sauce", + "veal", + "bacon", + "pork stock", + "celery", + "ground cloves", + "fresh thyme", + "cracked black pepper", + "salt", + "onions" + ] + }, + { + "id": 46609, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "olive oil", + "harissa", + "sweet paprika", + "couscous", + "dressing", + "water", + "almonds", + "salt", + "garlic cloves", + "cumin", + "pepper", + "coriander seeds", + "crushed red pepper", + "cumin seed", + "fresh lime juice", + "caraway seeds", + "fresh cilantro", + "coriander powder", + "sweet corn", + "grate lime peel", + "chicken" + ] + }, + { + "id": 47176, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "red pepper flakes", + "fresh rosemary", + "ground black pepper", + "olive oil", + "boneless rib eye steaks", + "kosher salt", + "chopped fresh thyme" + ] + }, + { + "id": 5903, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "baking powder", + "lemon juice", + "nutmeg", + "granulated sugar", + "butter", + "peaches", + "cinnamon", + "brown sugar", + "flour", + "vanilla" + ] + }, + { + "id": 3592, + "cuisine": "thai", + "ingredients": [ + "tumeric", + "fresh ginger", + "sea bass fillets", + "unsweetened coconut milk", + "lemongrass", + "cilantro stems", + "crushed red pepper", + "bottled clam juice", + "finely chopped onion", + "large garlic cloves", + "cooked rice", + "fresh cilantro", + "vegetable oil", + "ground cumin" + ] + }, + { + "id": 2054, + "cuisine": "mexican", + "ingredients": [ + "reduced fat monterey jack cheese", + "flour tortillas", + "lime juice", + "reduced fat mayonnaise", + "vegetable oil cooking spray", + "chile pepper", + "corn kernels", + "ground cumin" + ] + }, + { + "id": 47021, + "cuisine": "russian", + "ingredients": [ + "yukon gold potatoes", + "garlic cloves", + "pepper", + "dill", + "onions", + "mayonaise", + "salt", + "sour cream", + "minced garlic", + "oil" + ] + }, + { + "id": 26147, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "fresh mushrooms", + "ground pork", + "water chestnuts", + "white sugar", + "turnips", + "salt" + ] + }, + { + "id": 14431, + "cuisine": "japanese", + "ingredients": [ + "parmesan cheese", + "fresh shiitake mushrooms", + "salt", + "olive oil", + "dijon mustard", + "butter", + "edamame", + "soy sauce", + "ground pepper", + "red wine vinegar", + "bow-tie pasta", + "radicchio", + "mushrooms", + "garlic" + ] + }, + { + "id": 3622, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "pasilla chile pepper", + "tomatoes", + "chile pepper", + "onions", + "mushrooms", + "garlic cloves", + "water", + "vegetable oil", + "dried oregano" + ] + }, + { + "id": 29519, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "chopped green bell pepper", + "garlic cloves", + "water", + "chopped onion", + "chopped cilantro fresh", + "fresh chives", + "sherry wine vinegar", + "cucumber", + "white bread", + "olive oil", + "crabmeat" + ] + }, + { + "id": 1151, + "cuisine": "southern_us", + "ingredients": [ + "white pepper", + "leeks", + "dijon mustard", + "salt", + "ground nutmeg", + "fat-free chicken broth", + "sweet potatoes", + "evaporated skim milk" + ] + }, + { + "id": 6826, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "butter", + "grated Gruyère cheese", + "large egg yolks", + "whole milk", + "all-purpose flour", + "large egg whites", + "grated parmesan cheese", + "salt", + "ground nutmeg", + "dry white wine", + "cayenne pepper" + ] + }, + { + "id": 21221, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "old-fashioned oats", + "peach slices", + "milk", + "cinnamon", + "salt", + "brown sugar", + "baking powder", + "vanilla", + "baking soda", + "butter" + ] + }, + { + "id": 26402, + "cuisine": "italian", + "ingredients": [ + "coconut milk", + "water", + "sugar", + "crushed pineapples in juice" + ] + }, + { + "id": 37832, + "cuisine": "chinese", + "ingredients": [ + "honey", + "crème fraîche", + "tuna", + "crushed tomatoes", + "leeks", + "chinese five-spice powder", + "olive oil", + "penne pasta", + "onions", + "light soy sauce", + "worcestershire sauce", + "carrots" + ] + }, + { + "id": 3334, + "cuisine": "japanese", + "ingredients": [ + "red chili peppers", + "bay leaves", + "salt", + "cinnamon sticks", + "ginger paste", + "garlic paste", + "garam masala", + "kasuri methi", + "oil", + "cashew nuts", + "tomato purée", + "cream", + "butter", + "cilantro leaves", + "onions", + "sugar", + "coriander powder", + "paneer", + "cardamom", + "ground turmeric" + ] + }, + { + "id": 19807, + "cuisine": "french", + "ingredients": [ + "baguette", + "garlic", + "herbes de provence", + "duck fat", + "cognac", + "shallots", + "duck liver", + "ground black pepper", + "salt" + ] + }, + { + "id": 40851, + "cuisine": "vietnamese", + "ingredients": [ + "chicken wings", + "sesame oil", + "onions", + "garlic powder", + "garlic cloves", + "asian fish sauce", + "soy sauce", + "salt", + "white sugar", + "ground black pepper", + "fresh lemon juice" + ] + }, + { + "id": 28123, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "worcestershire sauce", + "cucumber", + "pepper", + "red pepper", + "carrots", + "dark soy sauce", + "onion powder", + "rolls", + "beef", + "leaf lettuce" + ] + }, + { + "id": 7113, + "cuisine": "irish", + "ingredients": [ + "eggs", + "buttermilk", + "margarine", + "baking soda", + "salt", + "white sugar", + "caraway seeds", + "baking powder", + "all-purpose flour", + "milk", + "raisins", + "sour cream" + ] + }, + { + "id": 34086, + "cuisine": "mexican", + "ingredients": [ + "mild salsa", + "cumin", + "canned black beans", + "chili powder", + "flour tortillas", + "chicken", + "corn", + "shredded cheese" + ] + }, + { + "id": 18033, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "anchovy paste", + "fresh parsley", + "cauliflower", + "red pepper flakes", + "garlic", + "grated parmesan cheese", + "linguine", + "bread crumb fresh", + "florets", + "salt" + ] + }, + { + "id": 11323, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "penne pasta", + "peeled tomatoes", + "butter", + "flat leaf parsley", + "olive oil", + "whipping cream", + "onions", + "sausage casings", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 23953, + "cuisine": "moroccan", + "ingredients": [ + "fresh ginger", + "vegetable broth", + "chickpeas", + "tomato paste", + "parsley", + "ras el hanout", + "onions", + "chopped tomatoes", + "garlic", + "oil", + "sambal ulek", + "lemon", + "salt" + ] + }, + { + "id": 2386, + "cuisine": "filipino", + "ingredients": [ + "green cabbage", + "vegetable oil", + "carrots", + "ground black pepper", + "firm tofu", + "chopped garlic", + "reduced sodium chicken broth", + "rice vermicelli", + "noodles", + "soy sauce", + "lemon", + "onions" + ] + }, + { + "id": 17175, + "cuisine": "greek", + "ingredients": [ + "eggs", + "milk", + "all-purpose flour", + "ground cloves", + "baking powder", + "lemon juice", + "shortening", + "honey", + "chopped walnuts", + "ground cinnamon", + "water", + "salt", + "white sugar" + ] + }, + { + "id": 30838, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "chocolate", + "light cream cheese", + "sugar", + "baking powder", + "salt", + "unsweetened cocoa powder", + "nonfat buttermilk", + "large eggs", + "vanilla extract", + "confectioners sugar", + "whole wheat pastry flour", + "red food coloring", + "all-purpose flour" + ] + }, + { + "id": 40998, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "scallions", + "soy sauce", + "dark sesame oil", + "corn starch", + "cooked rice", + "salt", + "garlic cloves", + "broccoli florets", + "filet", + "low sodium beef broth" + ] + }, + { + "id": 22367, + "cuisine": "cajun_creole", + "ingredients": [ + "boneless skinless chicken breasts", + "garlic", + "rotini", + "sweet onion", + "bacon", + "freshly ground pepper", + "crushed tomatoes", + "cajun seasoning", + "all-purpose flour", + "canola oil", + "green bell pepper, slice", + "reduced-fat sour cream", + "scallions" + ] + }, + { + "id": 19342, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "part-skim ricotta cheese", + "eggplant", + "marinara sauce", + "olive oil", + "grated parmesan cheese", + "fresh oregano", + "ground pepper", + "coarse salt" + ] + }, + { + "id": 3578, + "cuisine": "british", + "ingredients": [ + "heavy cream", + "water", + "lemon juice", + "sugar", + "strawberries", + "lemon" + ] + }, + { + "id": 46297, + "cuisine": "southern_us", + "ingredients": [ + "lime juice", + "sweetened condensed milk", + "lime zest", + "egg yolks", + "sugar", + "butter", + "graham crackers", + "crust" + ] + }, + { + "id": 41663, + "cuisine": "southern_us", + "ingredients": [ + "fresh dill", + "dijon mustard", + "liquid", + "horseradish", + "roasted red peppers", + "purple onion", + "pepper", + "shredded sharp cheddar cheese", + "mayonaise", + "havarti cheese", + "fresh parsley" + ] + }, + { + "id": 21208, + "cuisine": "spanish", + "ingredients": [ + "boneless skinless chicken breasts", + "salt", + "frozen peas", + "diced tomatoes", + "long-grain rice", + "vegetable oil", + "all-purpose flour", + "chorizo sausage", + "low sodium chicken broth", + "garlic", + "onions" + ] + }, + { + "id": 39076, + "cuisine": "spanish", + "ingredients": [ + "papaya", + "pineapple juice", + "fresh pineapple", + "chopped green bell pepper", + "cucumber", + "tomato juice", + "hot sauce", + "mango", + "fresh cilantro", + "salt", + "red bell pepper" + ] + }, + { + "id": 44932, + "cuisine": "korean", + "ingredients": [ + "ground ginger", + "boneless chicken skinless thigh", + "leaves", + "rice wine", + "garlic cloves", + "low sodium soy sauce", + "water", + "sweet potatoes", + "corn syrup", + "toasted sesame seeds", + "Korean chile flakes", + "pepper", + "rice cakes", + "sesame oil", + "onions", + "sugar", + "curry powder", + "seeds", + "Gochujang base", + "cabbage" + ] + }, + { + "id": 35803, + "cuisine": "italian", + "ingredients": [ + "water", + "large garlic cloves", + "anchovy fillets", + "onions", + "tomatoes", + "bay leaves", + "salt", + "juice", + "black pepper", + "dry white wine", + "all-purpose flour", + "flat leaf parsley", + "lemon zest", + "extra-virgin olive oil", + "veal shanks", + "orange zest" + ] + }, + { + "id": 44102, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "cooked chicken", + "cream cheese", + "cumin", + "salsa verde", + "onion powder", + "fresh lime juice", + "garlic powder", + "chili powder", + "corn tortillas", + "sliced green onions", + "cooking spray", + "cheese", + "chopped cilantro" + ] + }, + { + "id": 41544, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "low sodium chicken broth", + "small pasta", + "flat leaf parsley", + "olive oil", + "cannellini beans", + "garlic cloves", + "smoked ham hocks", + "celery ribs", + "salsa verde", + "butternut squash", + "green beans", + "flat leaf spinach", + "leeks", + "freshly ground pepper", + "onions" + ] + }, + { + "id": 8488, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "lime", + "cilantro", + "onions", + "water", + "quinoa", + "salt", + "pepper", + "olive oil", + "garlic", + "ground cumin", + "avocado", + "corn", + "chili powder", + "chipotle peppers" + ] + }, + { + "id": 43856, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "olive oil", + "paprika", + "red bell pepper", + "minced garlic", + "ground red pepper", + "chopped onion", + "sliced green onions", + "fat free less sodium chicken broth", + "chopped green bell pepper", + "salt", + "dried oregano", + "andouille sausage", + "cooked turkey", + "diced tomatoes", + "long-grain rice" + ] + }, + { + "id": 36499, + "cuisine": "italian", + "ingredients": [ + "ground chicken", + "chili powder", + "onions", + "olive oil", + "corn bread crumbs", + "kosher salt", + "paprika", + "eggs", + "barbecue sauce", + "applesauce" + ] + }, + { + "id": 33606, + "cuisine": "moroccan", + "ingredients": [ + "extra-virgin olive oil", + "ground cumin", + "white onion", + "lemon juice", + "tomatoes", + "salt", + "pepper", + "flat leaf parsley" + ] + }, + { + "id": 6067, + "cuisine": "greek", + "ingredients": [ + "garlic", + "carrots", + "ground black pepper", + "all-purpose flour", + "onions", + "anise seed", + "salt", + "celery seed", + "zucchini", + "oil", + "celery root" + ] + }, + { + "id": 21964, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "honeydew melon", + "evaporated milk", + "water", + "coconut milk", + "sago" + ] + }, + { + "id": 13690, + "cuisine": "indian", + "ingredients": [ + "clove", + "chili powder", + "cumin seed", + "baby potatoes", + "garam masala", + "cilantro leaves", + "onions", + "tomatoes", + "salt", + "cinnamon sticks", + "yoghurt", + "green chilies", + "ground turmeric" + ] + }, + { + "id": 6921, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vermicelli", + "sesame oil", + "rice vinegar", + "celery", + "peanuts", + "chicken breasts", + "ginger", + "corn starch", + "pepper", + "green onions", + "red pepper flakes", + "garlic cloves", + "snow peas", + "sugar", + "water chestnuts", + "marinade", + "salt", + "red bell pepper" + ] + }, + { + "id": 29471, + "cuisine": "mexican", + "ingredients": [ + "skim milk", + "large garlic cloves", + "light mayonnaise", + "chopped cilantro fresh", + "balsamic vinegar", + "lime juice", + "non-fat sour cream" + ] + }, + { + "id": 19, + "cuisine": "mexican", + "ingredients": [ + "red kidnei beans, rins and drain", + "chile pepper", + "garlic", + "ground cumin", + "water", + "stewed tomatoes", + "celery", + "shredded cheddar cheese", + "lean ground beef", + "sour cream", + "tomato paste", + "chili powder", + "cilantro sprigs", + "onions" + ] + }, + { + "id": 27299, + "cuisine": "british", + "ingredients": [ + "olive oil", + "shallots", + "sherry vinegar", + "pears", + "chicory", + "stilton cheese", + "chestnuts", + "dijon mustard" + ] + }, + { + "id": 44905, + "cuisine": "italian", + "ingredients": [ + "eggs", + "garlic powder", + "shredded mozzarella cheese", + "pasta sauce", + "part-skim ricotta cheese", + "italian seasoning", + "manicotti shells", + "portabello mushroom", + "red bell pepper", + "pepper", + "salt" + ] + }, + { + "id": 2919, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "paprika", + "chickpeas", + "red chili peppers", + "garam masala", + "purple onion", + "plum tomatoes", + "tumeric", + "coriander seeds", + "garlic", + "green chilies", + "water", + "vegetable oil", + "salt", + "cumin" + ] + }, + { + "id": 16224, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic salt", + "pasta sauce", + "grated parmesan cheese", + "eggs", + "zucchini", + "seasoned bread crumbs", + "shredded mozzarella cheese" + ] + }, + { + "id": 19859, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "vegetable oil", + "garlic cloves", + "onions", + "celery ribs", + "jasmine rice", + "diced tomatoes", + "corn starch", + "green chile", + "green onions", + "smoked sausage", + "fresh parsley", + "tomato sauce", + "cajun seasoning", + "shrimp" + ] + }, + { + "id": 24564, + "cuisine": "irish", + "ingredients": [ + "water", + "white sugar", + "fruit", + "butter", + "eggs", + "baking soda", + "mixed spice", + "all-purpose flour" + ] + }, + { + "id": 38776, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chicken stock", + "creole seasoning", + "chile powder", + "Uncle Ben's Original Converted Brand rice", + "Spike Seasoning" + ] + }, + { + "id": 26736, + "cuisine": "brazilian", + "ingredients": [ + "kiwi fruits", + "sugar", + "lime", + "cachaca" + ] + }, + { + "id": 37487, + "cuisine": "british", + "ingredients": [ + "salt", + "large eggs", + "all purpose unbleached flour", + "milk" + ] + }, + { + "id": 21209, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "lime wedges", + "corn tortillas", + "olive oil", + "epazote", + "water", + "tomatillos", + "pasilla chiles", + "medium shrimp uncook", + "garlic cloves" + ] + }, + { + "id": 24941, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "sesame oil", + "baking powder", + "salt", + "water", + "cornflour", + "plain flour", + "chicken breasts", + "oil" + ] + }, + { + "id": 1329, + "cuisine": "italian", + "ingredients": [ + "lemon rind", + "sugar", + "fat free frozen top whip", + "fresh lemon juice", + "fat free yogurt" + ] + }, + { + "id": 40055, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "fresh ginger root", + "rice flour", + "chicken bouillon granules", + "black pepper", + "salt", + "boneless skinless chicken breast halves", + "soy sauce", + "sesame oil", + "white sugar", + "potato starch", + "minced garlic", + "oil" + ] + }, + { + "id": 49691, + "cuisine": "thai", + "ingredients": [ + "full fat coconut milk", + "Thai red curry paste", + "chicken broth", + "vegetable oil", + "chopped cilantro", + "shallots", + "carrots", + "white onion", + "yellow lentils" + ] + }, + { + "id": 21546, + "cuisine": "greek", + "ingredients": [ + "fresh chevre", + "flatbread", + "thyme sprigs", + "grated lemon zest", + "extra-virgin olive oil", + "olives" + ] + }, + { + "id": 48255, + "cuisine": "italian", + "ingredients": [ + "breadstick", + "pizza sauce", + "grated parmesan cheese", + "cream cheese", + "part-skim mozzarella cheese", + "green pepper", + "green onions", + "italian seasoning" + ] + }, + { + "id": 45910, + "cuisine": "italian", + "ingredients": [ + "dough", + "diced tomatoes", + "veggie crumbles", + "part-skim mozzarella cheese", + "salsa", + "Mexican seasoning mix", + "non-fat sour cream", + "cooking spray", + "chopped onion" + ] + }, + { + "id": 23085, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "ground black pepper", + "cilantro leaves", + "shredded Monterey Jack cheese", + "cherry tomatoes", + "shallots", + "corn tortillas", + "lime juice", + "serrano peppers", + "scallions", + "crab meat", + "olive oil", + "lime wedges", + "hass avocado" + ] + }, + { + "id": 28455, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "brown sugar", + "garlic", + "pineapple chunks", + "boneless skinless chicken breasts", + "corn starch", + "low sodium soy sauce", + "vinegar", + "carrots", + "green bell pepper", + "vegetable oil", + "red bell pepper" + ] + }, + { + "id": 28312, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "white rice", + "carrots", + "water", + "firm tofu", + "minced garlic", + "rice vinegar", + "cucumber", + "avocado", + "honey", + "seaweed" + ] + }, + { + "id": 11343, + "cuisine": "greek", + "ingredients": [ + "linguine", + "dried oregano", + "parsley", + "garlic cloves", + "diced tomatoes", + "feta cheese crumbles", + "olive oil", + "crushed red pepper", + "large shrimp" + ] + }, + { + "id": 46520, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "green onions", + "salt", + "white vinegar", + "sliced black olives", + "cheese tortellini", + "mozzarella cheese", + "balsamic vinegar", + "herb seasoning", + "pepperoni slices", + "artichok heart marin", + "extra-virgin olive oil" + ] + }, + { + "id": 5187, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "water", + "flour", + "canola oil", + "crema mexicana", + "diced red onions", + "buttermilk", + "kosher salt", + "Anaheim chile", + "corn tortillas", + "chihuahua cheese", + "garlic powder", + "queso fresco" + ] + }, + { + "id": 9219, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "green beans", + "pinenuts", + "walnuts", + "olive oil", + "garlic cloves", + "fettucine", + "potatoes", + "fresh basil leaves" + ] + }, + { + "id": 34953, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "long-grain rice", + "hoisin sauce", + "dark sesame oil", + "boneless skinless chicken breast halves", + "lower sodium soy sauce", + "chinese cabbage", + "red bell pepper", + "sugar pea", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 14457, + "cuisine": "italian", + "ingredients": [ + "mushrooms", + "tomatoes", + "onions", + "dressing", + "fusilli", + "green bell pepper" + ] + }, + { + "id": 10507, + "cuisine": "mexican", + "ingredients": [ + "milk", + "tortilla chips", + "eggs", + "unsalted butter", + "ground black pepper", + "shredded Monterey Jack cheese", + "kosher salt", + "salsa" + ] + }, + { + "id": 20228, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "minced garlic", + "crushed red pepper", + "green beans", + "sugar", + "flank steak", + "long-grain rice", + "fermented black beans", + "sake", + "fresh ginger", + "purple onion", + "red bell pepper", + "fat free less sodium chicken broth", + "vegetable oil", + "corn starch" + ] + }, + { + "id": 39905, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "oyster sauce", + "gai lan", + "tapioca starch", + "beef sirloin", + "chicken stock", + "ground black pepper", + "large garlic cloves", + "noodles", + "sugar", + "Shaoxing wine", + "dark sesame oil" + ] + }, + { + "id": 37935, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "minced onion", + "greek style plain yogurt", + "coriander", + "olive oil", + "ground tumeric", + "garlic cloves", + "minced ginger", + "ground red pepper", + "ground coriander", + "cumin", + "hungarian sweet paprika", + "garam masala", + "salt", + "lemon juice" + ] + }, + { + "id": 509, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "mandarin oranges", + "scallions", + "sugar", + "parsley", + "chopped celery", + "romaine lettuce", + "almonds", + "dry mustard", + "pepper", + "red wine vinegar", + "salt" + ] + }, + { + "id": 2175, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "honey", + "vanilla extract", + "white sugar", + "white vinegar", + "brown sugar", + "butter", + "all-purpose flour", + "pecan halves", + "bourbon whiskey", + "salt", + "cold water", + "shortening", + "light corn syrup", + "chopped pecans" + ] + }, + { + "id": 33229, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "purple onion", + "vinegar", + "salt", + "roma tomatoes", + "bitter gourd", + "granulated white sugar" + ] + }, + { + "id": 40972, + "cuisine": "thai", + "ingredients": [ + "eggs", + "salt", + "onions", + "fish sauce", + "corn flour", + "fish fillets", + "oil", + "coriander", + "red chili peppers", + "green beans" + ] + }, + { + "id": 42135, + "cuisine": "thai", + "ingredients": [ + "chili flakes", + "sugar", + "yellow bean sauce", + "oyster sauce", + "gai lan", + "vinegar", + "garlic", + "corn flour", + "dark soy sauce", + "light soy sauce", + "boneless chicken", + "ground white pepper", + "chicken stock", + "fish sauce", + "condiments", + "oil", + "noodles" + ] + }, + { + "id": 10584, + "cuisine": "southern_us", + "ingredients": [ + "water", + "onions", + "white vinegar", + "garlic", + "ground black pepper", + "pork", + "salt" + ] + }, + { + "id": 28452, + "cuisine": "cajun_creole", + "ingredients": [ + "dried basil", + "cayenne pepper", + "celery", + "boneless chicken skinless thigh", + "diced tomatoes", + "okra", + "cooked brown rice", + "chopped tomatoes", + "chopped onion", + "medium shrimp", + "quick-cooking tapioca", + "sweet pepper", + "smoked turkey sausage" + ] + }, + { + "id": 12146, + "cuisine": "mexican", + "ingredients": [ + "shortening", + "salt", + "onions", + "corn husks", + "garlic cloves", + "baking powder", + "pork shoulder", + "water", + "chili sauce", + "masa harina" + ] + }, + { + "id": 18491, + "cuisine": "chinese", + "ingredients": [ + "sunflower seeds", + "ramen noodles", + "white vinegar", + "granulated sugar", + "slaw mix", + "sliced almonds", + "vegetable oil", + "seasoning", + "green onions" + ] + }, + { + "id": 35702, + "cuisine": "indian", + "ingredients": [ + "peanuts", + "salt", + "chile pepper", + "fresh ginger root", + "lemon juice", + "fresh cilantro", + "garlic" + ] + }, + { + "id": 8699, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "water", + "garlic", + "oil", + "soy sauce", + "egg noodles", + "chili sauce", + "beansprouts", + "sugar", + "shiitake", + "salt", + "carrots", + "white pepper", + "sesame oil", + "scallions", + "cabbage" + ] + }, + { + "id": 35849, + "cuisine": "vietnamese", + "ingredients": [ + "brown sugar", + "lime juice", + "cilantro", + "rice flour", + "ground ginger", + "kosher salt", + "lime wedges", + "salt", + "warm water", + "granulated sugar", + "garlic", + "drum", + "fish sauce", + "water", + "vegetable oil", + "hot sauce" + ] + }, + { + "id": 19734, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "green onions", + "Potatoes O'Brien", + "salsa", + "shredded cheddar cheese", + "bacon", + "flour tortillas", + "rolls" + ] + }, + { + "id": 48402, + "cuisine": "moroccan", + "ingredients": [ + "chicken stock", + "lime", + "coriander seeds", + "pomegranate", + "couscous", + "ground cinnamon", + "olive oil", + "sea salt", + "lemon juice", + "coriander", + "tomatoes", + "honey", + "ground black pepper", + "garlic cloves", + "onions", + "tomato purée", + "fresh ginger", + "lamb shoulder", + "greek yogurt" + ] + }, + { + "id": 36882, + "cuisine": "french", + "ingredients": [ + "butter", + "halibut fillets", + "all-purpose flour", + "black pepper", + "salt", + "finely chopped fresh parsley", + "fresh lemon juice" + ] + }, + { + "id": 11186, + "cuisine": "southern_us", + "ingredients": [ + "sweet potatoes", + "extra light olive oil", + "free-range eggs", + "light brown sugar", + "cinnamon", + "pumpkin pie spice", + "baking powder", + "baking mix", + "madagascar bourbon vanilla extract", + "sea salt", + "gluten free cornmeal" + ] + }, + { + "id": 15643, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "honey", + "salt", + "dried fig", + "pitted kalamata olives", + "lemon wedge", + "wild rice", + "capers", + "olive oil", + "ground allspice", + "ground cumin", + "ground ginger", + "boneless chicken skinless thigh", + "dry red wine", + "lemon juice" + ] + }, + { + "id": 208, + "cuisine": "cajun_creole", + "ingredients": [ + "blackening seasoning", + "sea scallops", + "heavy cream", + "seasoned bread crumbs", + "butter", + "grated parmesan cheese" + ] + }, + { + "id": 22329, + "cuisine": "indian", + "ingredients": [ + "table salt", + "olive oil", + "daikon", + "lime juice", + "asparagus", + "orange zest", + "kosher salt", + "whole wheat flour", + "ghee", + "dried thyme", + "whey" + ] + }, + { + "id": 12377, + "cuisine": "italian", + "ingredients": [ + "pecorino cheese", + "ground black pepper", + "green peppercorns", + "pepper", + "ground white pepper", + "guanciale", + "large egg yolks", + "rigatoni", + "kosher salt", + "large eggs" + ] + }, + { + "id": 48386, + "cuisine": "southern_us", + "ingredients": [ + "ground ginger", + "ground cloves", + "water", + "bourbon whiskey", + "worcestershire sauce", + "chile de arbol", + "dark brown sugar", + "ground cumin", + "brown sugar", + "chipotle chile", + "garlic powder", + "onion powder", + "paprika", + "purple onion", + "canola oil", + "ground cinnamon", + "molasses", + "honey", + "chili powder", + "ancho powder", + "garlic", + "ground coriander", + "ground fennel", + "ketchup", + "kosher salt", + "dijon mustard", + "red wine vinegar", + "cracked black pepper", + "cayenne pepper", + "allspice" + ] + }, + { + "id": 5286, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "butter", + "pepper", + "potatoes", + "salt", + "yellow squash", + "fresh tarragon", + "reduced fat cheddar cheese", + "large eggs", + "1% low-fat milk" + ] + }, + { + "id": 33976, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "beansprouts", + "red chili peppers", + "spring onions", + "fresh basil leaves", + "fish sauce", + "unsalted roasted peanuts", + "fresh mint", + "caster sugar", + "cucumber" + ] + }, + { + "id": 40793, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "boneless skinless chicken breasts", + "salt", + "red bell pepper", + "garlic powder", + "chili powder", + "cayenne pepper", + "oregano", + "flour tortillas", + "paprika", + "green pepper", + "canola oil", + "sugar", + "green onions", + "garlic", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 21845, + "cuisine": "british", + "ingredients": [ + "smoked haddock", + "milk", + "thai chile", + "juice", + "jasmine rice", + "ground black pepper", + "cilantro leaves", + "onions", + "kosher salt", + "lime", + "garlic", + "bay leaf", + "eggs", + "curry powder", + "butter", + "scallions" + ] + }, + { + "id": 14868, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "flour tortillas", + "sour cream", + "shredded cheddar cheese", + "vegetable oil", + "green onions", + "chunky salsa" + ] + }, + { + "id": 3013, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic powder", + "salsa", + "boneless skinless chicken breast halves", + "lime juice", + "worcestershire sauce", + "corn tortillas", + "lemonade", + "onion powder", + "sour cream", + "lettuce", + "olive oil", + "shredded sharp cheddar cheese", + "bay leaf" + ] + }, + { + "id": 43126, + "cuisine": "italian", + "ingredients": [ + "french bread", + "lemon juice", + "fresh parmesan cheese", + "salt", + "water", + "purple onion", + "arugula", + "fennel bulb", + "freshly ground pepper" + ] + }, + { + "id": 32384, + "cuisine": "russian", + "ingredients": [ + "baking powder", + "cream cheese", + "cool whip", + "vanilla", + "large eggs", + "fresh raspberries", + "sugar", + "all purpose unbleached flour", + "sour cream" + ] + }, + { + "id": 29260, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "butternut squash", + "feta cheese crumbles", + "ground black pepper", + "bulgur", + "fresh parmesan cheese", + "salt", + "chopped fresh mint", + "phyllo dough", + "cooking spray", + "chopped onion" + ] + }, + { + "id": 37390, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "potatoes", + "sweet pepper", + "onions", + "dried basil", + "pimentos", + "chopped parsley", + "milk", + "dry white wine", + "salt", + "tomatoes", + "olive oil", + "large garlic cloves", + "orange rind" + ] + }, + { + "id": 12250, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "leeks", + "dried shiitake mushrooms", + "ground white pepper", + "dark soy sauce", + "rice cakes", + "garlic", + "oyster sauce", + "pork shoulder", + "light soy sauce", + "napa cabbage", + "oil", + "sliced mushrooms", + "sugar", + "Shaoxing wine", + "salt", + "corn starch" + ] + }, + { + "id": 13296, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "crushed red pepper flakes", + "black pepper", + "sea salt", + "dried oregano", + "onion powder", + "cayenne pepper", + "garlic powder", + "paprika", + "ground cumin" + ] + }, + { + "id": 33509, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "condensed cheddar cheese soup", + "onions", + "milk", + "tortilla chips", + "ground beef", + "taco sauce", + "condensed fiesta nacho cheese soup", + "cream cheese, soften", + "water", + "pitted olives", + "sour cream" + ] + }, + { + "id": 35818, + "cuisine": "italian", + "ingredients": [ + "water", + "new potatoes", + "carrots", + "whole peeled tomatoes", + "extra-virgin olive oil", + "onions", + "kale", + "farro", + "celery", + "savoy cabbage", + "red beans", + "salt" + ] + }, + { + "id": 47657, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "jalapeno chilies", + "sour cream", + "sliced black olives", + "diced tomatoes", + "chili", + "green onions", + "corn tortilla chips", + "pepper jack", + "salsa" + ] + }, + { + "id": 45978, + "cuisine": "vietnamese", + "ingredients": [ + "garlic", + "canola oil", + "soy sauce", + "dark brown sugar", + "fish sauce", + "beef sirloin", + "fresh cilantro", + "grated orange" + ] + }, + { + "id": 45745, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "chopped fresh chives", + "all-purpose flour", + "mascarpone", + "shallots", + "lager", + "vegetable oil", + "lump crab meat", + "baking powder", + "corn starch" + ] + }, + { + "id": 7821, + "cuisine": "british", + "ingredients": [ + "milk", + "potatoes", + "all-purpose flour", + "ground turkey", + "olive oil", + "garlic", + "sliced mushrooms", + "onions", + "dried thyme", + "butter", + "carrots", + "fresh parsley", + "ground black pepper", + "salt", + "chicken-flavored soup powder" + ] + }, + { + "id": 15872, + "cuisine": "british", + "ingredients": [ + "eggs", + "self rising flour", + "margarine", + "light brown sugar", + "mixed spice", + "grated lemon zest", + "dried currants", + "golden raisins", + "almond paste", + "fruit", + "candied cherries", + "apricot jam" + ] + }, + { + "id": 46943, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "sweet potatoes", + "chopped pecans", + "milk", + "butter", + "brown sugar", + "dark rum", + "white sugar", + "self rising flour", + "vanilla extract" + ] + }, + { + "id": 40392, + "cuisine": "italian", + "ingredients": [ + "feta cheese crumbles", + "diced tomatoes", + "chicken breasts", + "salt" + ] + }, + { + "id": 39189, + "cuisine": "moroccan", + "ingredients": [ + "dried currants", + "cilantro", + "yellow onion", + "tomato paste", + "date molasses", + "garlic", + "ground lamb", + "mint", + "beef demi-glace", + "ras el hanout", + "swiss chard", + "whole wheat couscous", + "greek yogurt" + ] + }, + { + "id": 27137, + "cuisine": "jamaican", + "ingredients": [ + "coconut oil", + "curry powder", + "green pepper", + "onions", + "pepper", + "sea salt", + "shrimp", + "ketchup", + "full fat coconut milk", + "scallions", + "water", + "garlic", + "thyme" + ] + }, + { + "id": 48473, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "eggplant", + "sweet potatoes", + "green chilies", + "mustard seeds", + "tumeric", + "ground black pepper", + "sea salt", + "ground coriander", + "onions", + "tomatoes", + "garam masala", + "chili powder", + "okra", + "coconut milk", + "haricots verts", + "olive oil", + "potatoes", + "peas", + "cumin seed" + ] + }, + { + "id": 12571, + "cuisine": "chinese", + "ingredients": [ + "pork", + "chinese sausage", + "rice flour", + "sugar", + "shiitake", + "scallions", + "low sodium soy sauce", + "white pepper", + "salt", + "black pepper", + "daikon", + "dried shrimp" + ] + }, + { + "id": 5177, + "cuisine": "filipino", + "ingredients": [ + "garlic", + "onions", + "oil", + "salt", + "pepper", + "lemon juice" + ] + }, + { + "id": 33142, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "pure vanilla extract", + "confectioners sugar", + "salt", + "hazelnuts" + ] + }, + { + "id": 43051, + "cuisine": "french", + "ingredients": [ + "clove", + "fresh thyme", + "heavy cream", + "fresh mushrooms", + "onions", + "water", + "butter", + "garlic", + "celery", + "white wine", + "egg yolks", + "fresh tarragon", + "carrots", + "chicken", + "salt and ground black pepper", + "lemon", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 1897, + "cuisine": "italian", + "ingredients": [ + "butter", + "freshly ground pepper", + "fillets", + "ravioli", + "chopped fresh sage", + "chopped pecans", + "parmesan cheese", + "salt", + "green beans", + "cheese", + "garlic cloves" + ] + }, + { + "id": 2311, + "cuisine": "brazilian", + "ingredients": [ + "coconut", + "sweetened condensed milk", + "heavy whipping cream", + "butter", + "kosher salt", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 2841, + "cuisine": "vietnamese", + "ingredients": [ + "serrano chilies", + "baby spinach leaves", + "mint leaves", + "chicken breasts", + "ginger", + "onions", + "bean threads", + "fish sauce", + "lemon grass", + "basil leaves", + "cinnamon", + "garlic", + "sambal ulek", + "water", + "leeks", + "lime wedges", + "thai chile", + "chicken broth", + "soy sauce", + "Sriracha", + "green onions", + "lemon", + "beansprouts" + ] + }, + { + "id": 32712, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "lemon", + "red bell pepper", + "chicken stock", + "French lentils", + "salt", + "olive oil", + "yellow bell pepper", + "onions", + "tomatoes", + "garam masala", + "cayenne pepper" + ] + }, + { + "id": 18451, + "cuisine": "filipino", + "ingredients": [ + "milk", + "brown sugar", + "vanilla", + "coconut", + "butter" + ] + }, + { + "id": 16032, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "diced tomatoes", + "condensed cream of chicken soup", + "cooked chicken", + "green onions", + "corn tortillas", + "shredded cheddar cheese", + "condensed cream of mushroom soup" + ] + }, + { + "id": 10385, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "enokitake", + "shrimp", + "chicken broth", + "lime juice", + "tom yum paste", + "coriander", + "rice stick noodles", + "fish sauce", + "soup", + "coconut milk", + "tomatoes", + "lemongrass", + "garlic cloves" + ] + }, + { + "id": 4653, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "salt", + "cider vinegar", + "yellow bell pepper", + "chopped cilantro fresh", + "roma tomatoes", + "purple onion", + "ground cumin", + "sugar", + "ground red pepper", + "fresh lime juice" + ] + }, + { + "id": 8154, + "cuisine": "vietnamese", + "ingredients": [ + "butter lettuce", + "mint leaves", + "cilantro leaves", + "fresh lime juice", + "pepper", + "garlic", + "carrots", + "glass noodles", + "chili flakes", + "dry roasted peanuts", + "salt", + "shrimp", + "sugar", + "basil leaves", + "rice vinegar", + "asian fish sauce" + ] + }, + { + "id": 10901, + "cuisine": "cajun_creole", + "ingredients": [ + "buttermilk", + "ground white pepper", + "garlic powder", + "all-purpose flour", + "chicken", + "Louisiana Hot Sauce", + "salt", + "lard", + "ground black pepper", + "cayenne pepper" + ] + }, + { + "id": 23941, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "red wine vinegar", + "persian cucumber", + "roma tomatoes", + "purple onion", + "pitted kalamata olives", + "mint leaves", + "salt", + "ground black pepper", + "extra-virgin olive oil", + "flat leaf parsley" + ] + }, + { + "id": 35020, + "cuisine": "italian", + "ingredients": [ + "cavatappi", + "canned tomatoes", + "olive oil", + "flat leaf parsley", + "pepperoni slices", + "salt", + "green bell pepper", + "garlic", + "onions" + ] + }, + { + "id": 31128, + "cuisine": "chinese", + "ingredients": [ + "shrimp stock", + "large eggs", + "ground pork", + "fresh lemon juice", + "canola oil", + "boneless chicken skinless thigh", + "napa cabbage", + "freshly ground pepper", + "shrimp", + "fish sauce", + "coarse salt", + "rice vermicelli", + "carrots", + "minced garlic", + "lemon", + "scallions", + "onions" + ] + }, + { + "id": 15004, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "purple onion", + "ham", + "tomatoes", + "scotch bonnet chile", + "sweet paprika", + "vegetable oil", + "salt", + "corn tortillas", + "green bell pepper", + "large garlic cloves", + "freshly ground pepper" + ] + }, + { + "id": 43458, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "shallots", + "freshly ground pepper", + "kosher salt", + "grated parmesan cheese", + "dry bread crumbs", + "arborio rice", + "unsalted butter", + "vegetable oil", + "chopped parsley", + "chicken stock", + "large eggs", + "all-purpose flour", + "frozen peas" + ] + }, + { + "id": 42848, + "cuisine": "spanish", + "ingredients": [ + "green bell pepper", + "red wine vinegar", + "cucumber", + "tomatoes", + "tomato juice", + "salt", + "fresh parsley", + "navy beans", + "olive oil", + "garlic", + "celery", + "fresh basil", + "green onions", + "fresh oregano", + "ground cumin" + ] + }, + { + "id": 25618, + "cuisine": "mexican", + "ingredients": [ + "water", + "dried pinto beans", + "dried oregano", + "chile pepper", + "pork roast", + "chili powder", + "salt", + "pepper", + "corn chips", + "cumin seed" + ] + }, + { + "id": 2210, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken breast", + "garlic", + "peanut oil", + "toasted sesame seeds", + "water", + "baking powder", + "salt", + "corn starch", + "egg whites", + "cooking wine", + "oil", + "honey", + "apple cider vinegar", + "all-purpose flour", + "ground white pepper" + ] + }, + { + "id": 35711, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "onions", + "condensed tomato soup", + "shredded mozzarella cheese", + "refrigerated pizza dough", + "pepperoni turkei", + "italian seasoning", + "green bell pepper", + "cheese", + "sliced mushrooms" + ] + }, + { + "id": 2000, + "cuisine": "mexican", + "ingredients": [ + "cream", + "tomatoes", + "red bell pepper", + "cheese", + "spinach", + "onions" + ] + }, + { + "id": 26357, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "coarse salt", + "yellow corn meal", + "large eggs", + "molasses", + "baking powder", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 38090, + "cuisine": "russian", + "ingredients": [ + "fresh basil", + "bay leaves", + "salt", + "sour cream", + "pepper", + "lemon", + "beets", + "onions", + "fresh dill", + "butter", + "beef broth", + "fresh parsley", + "tomatoes", + "potatoes", + "garlic", + "carrots", + "cabbage" + ] + }, + { + "id": 25512, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "hot pepper sauce", + "rice", + "onions", + "pepper", + "barbecue sauce", + "celery", + "ketchup", + "bell pepper", + "sausages", + "tomato paste", + "water", + "salt", + "ground beef" + ] + }, + { + "id": 1109, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh oregano", + "fresh rosemary", + "balsamic vinegar", + "boneless beef rib eye steaks", + "white pepper", + "garlic" + ] + }, + { + "id": 1178, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "all-purpose flour", + "sea scallops", + "salt", + "medium shrimp", + "lemon", + "sardines", + "vegetable oil", + "squid" + ] + }, + { + "id": 31576, + "cuisine": "korean", + "ingredients": [ + "white vinegar", + "soy sauce", + "ice water", + "kimchi", + "eggs", + "sesame oil", + "pancake mix", + "potato starch", + "agave nectar", + "seafood", + "red chili peppers", + "vegetable oil", + "scallions" + ] + }, + { + "id": 26583, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "pitas", + "vegetable oil", + "scallions", + "minced garlic", + "hoisin sauce", + "rice vinegar", + "red bell pepper", + "soy sauce", + "sichuanese chili paste", + "dry sherry", + "corn starch", + "light brown sugar", + "eggplant", + "sesame oil", + "gingerroot" + ] + }, + { + "id": 49225, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "grated lemon zest", + "salt", + "plum tomatoes", + "extra-virgin olive oil", + "flat leaf parsley", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 23218, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "green bell pepper", + "kosher salt", + "unsalted butter", + "vegetable oil", + "ground mustard", + "garlic cloves", + "ground cumin", + "celery salt", + "tomato sauce", + "garlic powder", + "bay leaves", + "yellow onion", + "ground coriander", + "long grain white rice", + "tomato paste", + "boneless chicken skinless thigh", + "ground black pepper", + "onion powder", + "cayenne pepper", + "scallions", + "dried oregano", + "tasso", + "andouille sausage", + "dried thyme", + "jalapeno chilies", + "paprika", + "low sodium chicken stock", + "ground white pepper" + ] + }, + { + "id": 12576, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "garam masala", + "heavy cream", + "salt", + "onions", + "olive oil", + "boneless skinless chicken breasts", + "cilantro", + "cayenne pepper", + "black pepper", + "bay leaves", + "paprika", + "greek style plain yogurt", + "cumin", + "fresh ginger", + "cinnamon", + "garlic", + "corn starch" + ] + }, + { + "id": 15505, + "cuisine": "french", + "ingredients": [ + "black pepper", + "unsalted butter", + "lemon", + "hazelnut oil", + "fresh lemon juice", + "sea scallops", + "finely chopped fresh parsley", + "artichokes", + "California bay leaves", + "onions", + "olive oil", + "dijon mustard", + "port", + "garlic cloves", + "carrots", + "sherry vinegar", + "fresh thyme", + "salt", + "small white beans", + "canola oil" + ] + }, + { + "id": 110, + "cuisine": "spanish", + "ingredients": [ + "fresh tomatoes", + "sherry vinegar", + "garlic cloves", + "crushed tomatoes", + "salt", + "crusty bread", + "roasted red peppers", + "smoked paprika", + "olive oil", + "blanched almonds" + ] + }, + { + "id": 34482, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "corn husks", + "fresh lime juice", + "black beans", + "salt", + "chopped cilantro fresh", + "vegetable oil cooking spray", + "jalapeno chilies", + "chopped fresh mint", + "avocado", + "pepper", + "tortilla chips" + ] + }, + { + "id": 2153, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salt", + "jalapeno chilies", + "chopped cilantro fresh", + "sugar", + "fresh lime juice", + "purple onion", + "mango" + ] + }, + { + "id": 12944, + "cuisine": "chinese", + "ingredients": [ + "wonton wrappers", + "cream cheese", + "soy sauce", + "salt", + "scallions", + "worcestershire sauce", + "peanut oil", + "sesame oil", + "crabmeat", + "imitation crab meat" + ] + }, + { + "id": 4599, + "cuisine": "italian", + "ingredients": [ + "ground nutmeg", + "all-purpose flour", + "spaghetti", + "pepper", + "cooking spray", + "fresh mushrooms", + "fat free less sodium chicken broth", + "chopped green bell pepper", + "chopped onion", + "cooked chicken breasts", + "fresh parmesan cheese", + "dry sherry", + "nonfat evaporated milk" + ] + }, + { + "id": 36172, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "button mushrooms", + "Madeira", + "porcini powder", + "all-purpose flour", + "veal", + "whipping cream", + "olive oil", + "butter", + "flat leaf parsley" + ] + }, + { + "id": 1055, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "boneless skinless chicken breasts", + "corn kernel whole", + "lime", + "white rice", + "green bell pepper", + "chili powder", + "garlic powder", + "onions" + ] + }, + { + "id": 2504, + "cuisine": "greek", + "ingredients": [ + "honey", + "salt", + "orange zest", + "raki", + "lemon zest", + "chopped walnuts", + "water", + "extra-virgin olive oil", + "fresh lemon juice", + "sugar", + "sesame seeds", + "all-purpose flour" + ] + }, + { + "id": 10247, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "avocado", + "ground red pepper", + "chopped cilantro fresh", + "jalapeno chilies", + "fresh lime juice", + "olive oil", + "sea salt", + "ground cumin" + ] + }, + { + "id": 31132, + "cuisine": "italian", + "ingredients": [ + "spinach", + "ground nutmeg", + "1% low-fat milk", + "garlic cloves", + "small curd cottage cheese", + "large eggs", + "all-purpose flour", + "part-skim mozzarella cheese", + "grated parmesan cheese", + "freshly ground pepper", + "olive oil", + "lasagna noodles", + "salt", + "onions" + ] + }, + { + "id": 25421, + "cuisine": "mexican", + "ingredients": [ + "lean ground beef", + "sliced green onions", + "green chile", + "Mexican cheese", + "pasta", + "diced tomatoes", + "taco seasoning mix", + "corn kernel whole" + ] + }, + { + "id": 30003, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "dill pickles", + "yellow mustard", + "boiling potatoes", + "boiled eggs", + "onions", + "salt" + ] + }, + { + "id": 42834, + "cuisine": "italian", + "ingredients": [ + "clams", + "lemon wedge", + "spaghettini", + "capers", + "whipping cream", + "fresh basil", + "butter", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 1123, + "cuisine": "italian", + "ingredients": [ + "spinach leaves", + "olive oil", + "fingerling", + "sliced green onions", + "fresh basil", + "ricotta cheese", + "salt", + "rocket leaves", + "large eggs", + "gruyere cheese", + "milk", + "butter", + "freshly ground pepper" + ] + }, + { + "id": 8932, + "cuisine": "french", + "ingredients": [ + "flour", + "beef stew meat", + "Equal Sweetener", + "chuck", + "pearl onions", + "red wine", + "cubed meat", + "thyme", + "pepper", + "crimini mushrooms", + "salt", + "carrots", + "olive oil", + "garlic", + "softened butter", + "bay leaf" + ] + }, + { + "id": 29585, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "cinnamon", + "evaporated milk", + "pie shell", + "melted butter", + "sweet potatoes", + "sugar", + "vanilla" + ] + }, + { + "id": 42046, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "olive oil", + "sour cream", + "ground cumin", + "cotija", + "large garlic cloves", + "corn tortillas", + "homemade chicken stock", + "granulated sugar", + "ancho chile pepper", + "kosher salt", + "yellow onion", + "fresh lime juice" + ] + }, + { + "id": 48816, + "cuisine": "mexican", + "ingredients": [ + "taco shells", + "diced tomatoes", + "pico de gallo", + "guacamole", + "shredded Monterey Jack cheese", + "shredded cheddar cheese", + "chicken", + "taco sauce", + "shredded lettuce" + ] + }, + { + "id": 30054, + "cuisine": "korean", + "ingredients": [ + "cayenne pepper", + "sugar", + "green beans", + "soy sauce" + ] + }, + { + "id": 21970, + "cuisine": "italian", + "ingredients": [ + "earl grey tea bags", + "sugar", + "fresh lemon juice", + "whole milk", + "water" + ] + }, + { + "id": 13424, + "cuisine": "southern_us", + "ingredients": [ + "crawfish", + "worcestershire sauce", + "green onions", + "hot pepper sauce", + "cream cheese", + "mayonaise", + "butter" + ] + }, + { + "id": 43001, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "napa cabbage", + "salted roast peanuts", + "red bell pepper", + "rice stick noodles", + "chicken breast halves", + "hot chili paste", + "creamy peanut butter", + "peeled fresh ginger", + "large garlic cloves", + "purple onion", + "fresh lime juice", + "sugar", + "vegetable oil", + "grated carrot", + "cucumber" + ] + }, + { + "id": 47881, + "cuisine": "french", + "ingredients": [ + "all-purpose flour", + "ice water", + "unsalted butter", + "salt" + ] + }, + { + "id": 10794, + "cuisine": "mexican", + "ingredients": [ + "cold water", + "picholine olives", + "vegetable oil", + "salt", + "garlic cloves", + "eggs", + "unsalted butter", + "diced tomatoes", + "yellow onion", + "ground beef", + "chicken stock", + "ground black pepper", + "red pepper flakes", + "all-purpose flour", + "cornmeal", + "shortening", + "green onions", + "cook egg hard", + "liquid", + "ground cumin" + ] + }, + { + "id": 8771, + "cuisine": "moroccan", + "ingredients": [ + "milk", + "dry sherry", + "dried currants", + "boneless chicken breast halves", + "all-purpose flour", + "slivered almonds", + "finely chopped onion", + "apples", + "curry powder", + "butter" + ] + }, + { + "id": 47736, + "cuisine": "italian", + "ingredients": [ + "sourdough bread", + "fat-free mayonnaise", + "tomatoes", + "provolone cheese", + "cooking spray", + "basil pesto sauce", + "turkey breast" + ] + }, + { + "id": 5036, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "Tabasco Pepper Sauce", + "dried rosemary", + "avocado", + "ground black pepper", + "greek seasoning mix", + "garlic powder", + "greek style plain yogurt", + "kosher salt", + "boneless skinless chicken breasts", + "lemon juice" + ] + }, + { + "id": 8861, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning", + "chicken breasts", + "chicken broth", + "ranch dressing" + ] + }, + { + "id": 17611, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "bacon", + "baby spinach leaves", + "salt and ground black pepper", + "olive oil", + "minced garlic", + "butter" + ] + }, + { + "id": 33589, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "onion salt", + "flour tortillas", + "cayenne pepper", + "ground black pepper", + "salsa", + "vegetable oil", + "pork loin chops" + ] + }, + { + "id": 16860, + "cuisine": "french", + "ingredients": [ + "butter", + "runny honey", + "black pepper", + "apples", + "phyllo pastry", + "sage leaves", + "sea salt", + "walnuts", + "apple cider vinegar", + "fresh chevre" + ] + }, + { + "id": 33846, + "cuisine": "mexican", + "ingredients": [ + "syrup", + "olive oil", + "vegetable broth", + "garlic cloves", + "guajillo chiles", + "zucchini", + "yellow onion", + "ground cumin", + "warm water", + "hominy", + "salt", + "dried oregano", + "lime", + "tempeh", + "cacao powder" + ] + }, + { + "id": 48667, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "ground red pepper", + "ground nutmeg", + "salt", + "garlic powder", + "paprika", + "ground black pepper", + "dried oregano" + ] + }, + { + "id": 34857, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "dates", + "salt", + "cinnamon sticks", + "rock sugar", + "white pepper", + "star anise", + "scallions", + "wine", + "water", + "garlic", + "oil", + "dark soy sauce", + "chicken bouillon", + "ginger", + "leg quarters" + ] + }, + { + "id": 3977, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "butter", + "all-purpose flour", + "powdered sugar", + "granulated sugar", + "stout", + "sour cream", + "eggs", + "unsalted butter", + "heavy cream", + "cocoa powder", + "cream", + "Irish whiskey", + "salt", + "bittersweet chocolate" + ] + }, + { + "id": 29067, + "cuisine": "french", + "ingredients": [ + "fresh blueberries", + "all-purpose flour", + "eggs", + "vanilla extract", + "white sugar", + "egg yolks", + "confectioners sugar", + "milk", + "salt" + ] + }, + { + "id": 18316, + "cuisine": "mexican", + "ingredients": [ + "grape tomatoes", + "garlic powder", + "tortilla chips", + "black beans", + "sliced black olives", + "fresh lime juice", + "romaine lettuce", + "salsa verde", + "sour cream", + "avocado", + "corn", + "cilantro stems", + "ground cumin" + ] + }, + { + "id": 6139, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "butter", + "fresh basil leaves", + "ground black pepper", + "fresh parsley", + "breadstick", + "garlic" + ] + }, + { + "id": 49096, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "fresh ginger", + "cornflour", + "tilapia fillets", + "spring onions", + "soy sauce", + "basil leaves", + "garlic cloves", + "brown sugar", + "lime", + "sunflower oil" + ] + }, + { + "id": 26495, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "shortening", + "all-purpose flour", + "sugar", + "eggs", + "buttermilk" + ] + }, + { + "id": 16923, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "breakfast sausages", + "all-purpose flour", + "cheddar cheese", + "half & half", + "heavy cream", + "black pepper", + "baking powder", + "salt", + "green chile", + "unsalted butter", + "buttermilk" + ] + }, + { + "id": 28955, + "cuisine": "irish", + "ingredients": [ + "sugar", + "butter", + "white vinegar", + "large eggs", + "salt", + "shortening", + "baking powder", + "all-purpose flour", + "milk", + "raisins" + ] + }, + { + "id": 35668, + "cuisine": "brazilian", + "ingredients": [ + "sunflower seeds", + "açai powder", + "frozen banana", + "pure vanilla extract", + "flaked coconut", + "blueberries", + "almond butter", + "strawberries", + "pecans", + "passion fruit", + "almond milk" + ] + }, + { + "id": 23709, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "large eggs", + "olive oil", + "scallions", + "kosher salt", + "baby spinach", + "grape tomatoes", + "feta cheese" + ] + }, + { + "id": 3923, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "dried oregano", + "fontina", + "freshly grated parmesan", + "oven-ready lasagna noodles", + "eggplant", + "ricotta", + "kosher salt", + "zucchini", + "plum tomatoes" + ] + }, + { + "id": 18759, + "cuisine": "russian", + "ingredients": [ + "water", + "butter", + "sugar", + "active dry yeast", + "eggs", + "milk", + "vanilla", + "pitted cherries", + "flour" + ] + }, + { + "id": 29555, + "cuisine": "mexican", + "ingredients": [ + "honey", + "garlic", + "cooked chicken", + "enchilada sauce", + "flour tortillas", + "and fat free half half", + "lime juice", + "chili powder", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 33256, + "cuisine": "french", + "ingredients": [ + "light brown sugar", + "large egg yolks", + "milk", + "heavy cream", + "kahlúa", + "granulated sugar", + "eggs", + "instant espresso powder" + ] + }, + { + "id": 27584, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "egg whites", + "ground pork", + "beansprouts", + "black pepper", + "vegetable oil", + "fresh mushrooms", + "canola oil", + "sugar pea", + "green onions", + "salt", + "ground beef", + "garlic powder", + "lumpia wrappers", + "carrots" + ] + }, + { + "id": 46694, + "cuisine": "italian", + "ingredients": [ + "capers", + "lemon", + "sourdough", + "fennel", + "salt", + "pitted kalamata olives", + "extra-virgin olive oil", + "tuna in oil", + "dill" + ] + }, + { + "id": 44429, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "dijon mustard", + "green beans", + "kidney beans", + "balsamic vinegar", + "chopped fresh mint", + "vidalia onion", + "garlic powder", + "salt", + "olive oil", + "onion powder", + "fresh parsley" + ] + }, + { + "id": 2439, + "cuisine": "italian", + "ingredients": [ + "pepperoncini", + "monterey jack", + "barbecue sauce", + "boneless skinless chicken breast halves", + "baked pizza crust", + "purple onion", + "chopped cilantro fresh" + ] + }, + { + "id": 21483, + "cuisine": "korean", + "ingredients": [ + "potatoes", + "soy sauce", + "scallions", + "sugar", + "garlic", + "sesame seeds", + "oil" + ] + }, + { + "id": 31023, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "almond extract", + "strawberries", + "whole wheat pastry flour", + "granulated sugar", + "salt", + "sliced almonds", + "baking powder", + "all-purpose flour", + "turbinado", + "unsalted butter", + "buttermilk", + "confectioners sugar" + ] + }, + { + "id": 7549, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "coarse salt", + "button mushrooms", + "red bell pepper", + "chicken stock", + "minced garlic", + "dry sherry", + "scallions", + "soy sauce", + "grapeseed oil", + "ginger", + "bamboo shoots", + "chiles", + "boneless chicken breast halves", + "basil", + "corn starch" + ] + }, + { + "id": 20582, + "cuisine": "british", + "ingredients": [ + "ketchup", + "ground pepper", + "yukon gold potatoes", + "red wine", + "sharp cheddar cheese", + "milk", + "beef stock", + "balsamic vinegar", + "garlic", + "bay leaf", + "kosher salt", + "flour", + "lean ground beef", + "extra-virgin olive oil", + "carrots", + "low sodium soy sauce", + "dried thyme", + "shallots", + "butter", + "yellow onion", + "frozen peas" + ] + }, + { + "id": 4225, + "cuisine": "indian", + "ingredients": [ + "tomato sauce", + "yoghurt", + "paprika", + "lemon juice", + "ground black pepper", + "butter", + "salt", + "ground cumin", + "fresh ginger", + "boneless skinless chicken breasts", + "garlic", + "chopped cilantro fresh", + "ground cinnamon", + "jalapeno chilies", + "heavy cream", + "cayenne pepper" + ] + }, + { + "id": 29666, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "rosemary sprigs", + "black peppercorns", + "crushed red pepper", + "lemon peel" + ] + }, + { + "id": 9140, + "cuisine": "southern_us", + "ingredients": [ + "sour cream", + "lemon curd", + "blackberries" + ] + }, + { + "id": 16603, + "cuisine": "french", + "ingredients": [ + "eggs", + "egg whites", + "fresh parsley", + "green cabbage", + "skim milk", + "gruyere cheese", + "vegetable oil cooking spray", + "shredded carrots", + "sliced green onions", + "caraway seeds", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 23699, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "beef", + "garlic", + "sesame seeds", + "butter", + "onions", + "prunes", + "vegetables", + "ginger", + "saffron", + "olive oil", + "spices", + "salt" + ] + }, + { + "id": 14330, + "cuisine": "mexican", + "ingredients": [ + "corn", + "grated jack cheese", + "zucchini", + "olive oil", + "corn tortilla chips", + "purple onion" + ] + }, + { + "id": 28103, + "cuisine": "thai", + "ingredients": [ + "fresh turmeric", + "coriander seeds", + "green cardamom", + "cinnamon sticks", + "basmati rice", + "fennel seeds", + "fresh ginger", + "salt", + "garlic cloves", + "onions", + "clove", + "black pepper", + "yoghurt", + "cumin seed", + "ghee", + "chicken", + "nutmeg", + "bay leaves", + "brown cardamom", + "ground cayenne pepper", + "saffron" + ] + }, + { + "id": 15101, + "cuisine": "vietnamese", + "ingredients": [ + "boneless sirloin", + "lemongrass", + "shrimp paste", + "ham hock", + "red chili peppers", + "lime", + "sea salt", + "fresh mint", + "sugar", + "fresh cilantro", + "rice noodles", + "beansprouts", + "sambal ulek", + "black pepper", + "nuoc nam", + "boneless pork loin", + "holy basil" + ] + }, + { + "id": 10642, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "rice noodles", + "oil", + "sugar", + "chili powder", + "rice vinegar", + "chinese chives", + "fish sauce", + "large eggs", + "garlic", + "shrimp", + "water", + "lime wedges", + "firm tofu", + "beansprouts" + ] + }, + { + "id": 44598, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "nori", + "sake", + "seeds", + "avocado", + "sushi rice", + "sugar", + "unagi" + ] + }, + { + "id": 19895, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "cinnamon", + "powdered egg whites", + "water", + "granulated sugar", + "salt", + "peaches", + "vanilla extract", + "canola oil", + "powdered buttermilk", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 41315, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "buttermilk", + "sour cream", + "caraway seeds", + "baking powder", + "salt", + "sugar", + "butter", + "all-purpose flour", + "large eggs", + "raisins" + ] + }, + { + "id": 21712, + "cuisine": "italian", + "ingredients": [ + "red potato", + "parmigiano reggiano cheese", + "lemon", + "new york strip steaks", + "thyme sprigs", + "water", + "cooking spray", + "artichokes", + "garlic cloves", + "kosher salt", + "baby arugula", + "extra-virgin olive oil", + "lemon rind", + "bay leaf", + "ground black pepper", + "fresh thyme leaves", + "purple onion", + "fresh lemon juice" + ] + }, + { + "id": 1753, + "cuisine": "indian", + "ingredients": [ + "runny honey", + "garam masala", + "smoked paprika", + "boneless chicken skinless thigh", + "salt", + "lemon" + ] + }, + { + "id": 20066, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "self rising flour", + "beer", + "cheddar cheese", + "dill", + "onion powder", + "white sugar" + ] + }, + { + "id": 48238, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "medium-grain rice", + "soy sauce", + "sesame oil", + "green onions", + "chicken base", + "water", + "ginger" + ] + }, + { + "id": 2553, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "diced tomatoes", + "oil", + "no-salt-added black beans", + "pasta shells", + "chopped cilantro fresh", + "cooked chicken", + "cheese", + "40% less sodium taco seasoning mix", + "red pepper", + "yellow onion" + ] + }, + { + "id": 42250, + "cuisine": "korean", + "ingredients": [ + "pork ribs", + "white sugar", + "soy sauce", + "onion powder", + "green onions", + "chopped garlic", + "ground black pepper", + "sesame oil" + ] + }, + { + "id": 30136, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "beef", + "corn starch", + "soy sauce", + "oil", + "onions", + "sugar", + "garlic", + "red bell pepper", + "dark soy sauce", + "thai basil", + "oyster sauce" + ] + }, + { + "id": 12706, + "cuisine": "southern_us", + "ingredients": [ + "cream sweeten whip", + "large eggs", + "sugar", + "all-purpose flour", + "pecans", + "baking powder", + "pure vanilla extract", + "kosher salt", + "cooking apples" + ] + }, + { + "id": 26725, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "corn tortillas", + "radishes", + "chopped onion", + "boneless skinless chicken breast halves", + "black pepper", + "cilantro leaves", + "fresh lime juice", + "jalapeno chilies", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 22252, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken breast halves", + "enchilada sauce", + "white rice", + "monterey jack", + "butter", + "corn tortillas", + "chicken broth", + "sweet corn" + ] + }, + { + "id": 19546, + "cuisine": "southern_us", + "ingredients": [ + "water", + "vegetable broth", + "carrots", + "dry white wine", + "boneless pork loin", + "base", + "crushed red pepper", + "onions", + "collard greens", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 17016, + "cuisine": "southern_us", + "ingredients": [ + "parmesan cheese", + "grits", + "sugar", + "bacon slices", + "roast turkey", + "vegetable oil", + "extra sharp cheddar cheese", + "sweet onion", + "sauce" + ] + }, + { + "id": 49417, + "cuisine": "indian", + "ingredients": [ + "amchur", + "bay leaves", + "salt", + "mustard oil", + "ground turmeric", + "garam masala", + "vegetable oil", + "green chilies", + "onions", + "fresh ginger root", + "chili powder", + "cilantro leaves", + "garlic cloves", + "ground cumin", + "asafoetida", + "potatoes", + "passata", + "ground coriander", + "frozen peas" + ] + }, + { + "id": 35096, + "cuisine": "french", + "ingredients": [ + "clove", + "fresh thyme", + "coarse salt", + "freshly ground pepper", + "celery", + "turnips", + "asparagus", + "chicken breasts", + "low sodium chicken stock", + "flat leaf parsley", + "pearl onions", + "dry white wine", + "extra-virgin olive oil", + "carrots", + "black peppercorns", + "bay leaves", + "button mushrooms", + "small red potato", + "onions" + ] + }, + { + "id": 44856, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "salt", + "diced onions", + "boneless skinless chicken breasts", + "rice", + "olive oil", + "creole seasoning", + "shredded cheddar cheese", + "diced tomatoes" + ] + }, + { + "id": 2855, + "cuisine": "italian", + "ingredients": [ + "sugar", + "espresso" + ] + }, + { + "id": 637, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "garlic", + "grated Gruyère cheese", + "onions", + "black peppercorns", + "large eggs", + "grated nutmeg", + "thyme leaves", + "clove", + "parmigiano reggiano cheese", + "all-purpose flour", + "California bay leaves", + "olive oil", + "whole milk", + "dry bread crumbs", + "thyme sprigs" + ] + }, + { + "id": 18735, + "cuisine": "indian", + "ingredients": [ + "golden raisins", + "garlic", + "mixed spice", + "red wine vinegar", + "onions", + "fresh ginger root", + "paprika", + "white sugar", + "tomatoes", + "chili powder", + "curry paste" + ] + }, + { + "id": 19706, + "cuisine": "indian", + "ingredients": [ + "lime juice", + "salt", + "tumeric", + "vegetable oil", + "onions", + "garlic paste", + "chile pepper", + "cumin seed", + "plain yogurt", + "chicken drumsticks", + "chopped cilantro fresh" + ] + }, + { + "id": 42174, + "cuisine": "thai", + "ingredients": [ + "yellow miso", + "japanese eggplants", + "low sodium soy sauce", + "Thai red curry paste", + "haricots verts", + "peeled fresh ginger", + "minced garlic", + "peanut oil" + ] + }, + { + "id": 6155, + "cuisine": "mexican", + "ingredients": [ + "cooked rice", + "boneless skinless chicken breasts", + "red bell pepper", + "reduced fat monterey jack cheese", + "poblano peppers", + "no-salt-added black beans", + "corn kernels", + "chili powder", + "cumin", + "tomatoes", + "jalapeno chilies", + "garlic cloves" + ] + }, + { + "id": 44658, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "zucchini", + "fresh oregano", + "olive oil", + "diced tomatoes", + "onions", + "part-skim mozzarella cheese", + "stuffing mix", + "garlic salt", + "pepper", + "grated parmesan cheese", + "garlic cloves" + ] + }, + { + "id": 34350, + "cuisine": "italian", + "ingredients": [ + "white wine", + "parmesan cheese", + "purple onion", + "minced garlic", + "ground black pepper", + "kosher salt", + "broccoli rabe", + "green grape", + "sausage casings", + "olive oil", + "red wine vinegar" + ] + }, + { + "id": 3182, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "large garlic cloves", + "carrots", + "cabbage", + "lime juice", + "salt", + "onions", + "black pepper", + "thai chile", + "Thai fish sauce", + "mint", + "vegetable oil", + "rice vinegar", + "cooked chicken breasts" + ] + }, + { + "id": 36396, + "cuisine": "russian", + "ingredients": [ + "sugar", + "vegetable oil", + "lemon juice", + "flanken short ribs", + "freshly ground pepper", + "cabbage", + "tomatoes", + "potatoes", + "bermuda onion", + "water", + "salt", + "snip fresh dill" + ] + }, + { + "id": 48721, + "cuisine": "italian", + "ingredients": [ + "cherry tomatoes", + "coarse salt", + "sardines", + "potatoes", + "purple onion", + "olive oil", + "crushed red pepper flakes", + "dried oregano", + "capers", + "oil-cured black olives", + "flat leaf parsley" + ] + }, + { + "id": 18820, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "fresh lime juice", + "ground cumin", + "salt", + "plain whole-milk yogurt", + "chili powder", + "chicken pieces", + "fresh ginger", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 25175, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "sugar", + "corn starch", + "salmon fillets", + "teriyaki sauce", + "soy sauce" + ] + }, + { + "id": 35075, + "cuisine": "chinese", + "ingredients": [ + "sea bass", + "sesame oil", + "soy sauce", + "garlic cloves", + "red chili peppers", + "sunflower oil", + "fresh ginger root", + "cabbage" + ] + }, + { + "id": 16986, + "cuisine": "italian", + "ingredients": [ + "heavy cream", + "egg yolks", + "sugar", + "sea salt", + "whole milk" + ] + }, + { + "id": 28205, + "cuisine": "greek", + "ingredients": [ + "cherry tomatoes", + "green pepper", + "olives", + "sugar", + "extra-virgin olive oil", + "feta cheese crumbles", + "pasta", + "red wine vinegar", + "lemon juice", + "dried oregano", + "minced garlic", + "purple onion", + "cucumber" + ] + }, + { + "id": 29807, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "salt", + "lamb leg", + "tumeric", + "ginger", + "cayenne pepper", + "ground cumin", + "ground cinnamon", + "diced tomatoes", + "yellow onion", + "coconut milk", + "water", + "garlic", + "ground coriander" + ] + }, + { + "id": 27666, + "cuisine": "southern_us", + "ingredients": [ + "dried beef", + "sour cream", + "shredded cheddar cheese", + "worcestershire sauce", + "bread", + "chile pepper", + "green onions", + "cream cheese" + ] + }, + { + "id": 17403, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "ground turmeric", + "tomatoes", + "ground coriander", + "chili powder", + "onions", + "okra", + "ground cumin" + ] + }, + { + "id": 18536, + "cuisine": "greek", + "ingredients": [ + "cooking spray", + "flounder fillets", + "pepper", + "salt", + "dried oregano", + "balsamic vinegar", + "fresh parsley", + "olive oil", + "lemon juice" + ] + }, + { + "id": 39539, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "potatoes", + "carrots", + "sake", + "sesame seeds", + "ginger", + "chopped garlic", + "red chili powder", + "water", + "sesame oil", + "onions", + "sugar", + "chili paste", + "scallions", + "chicken" + ] + }, + { + "id": 47446, + "cuisine": "chinese", + "ingredients": [ + "green bell pepper", + "white wine", + "cayenne pepper", + "sugar", + "vegetable oil", + "jumbo shrimp", + "shallots", + "corn starch", + "soy sauce", + "rice vinegar" + ] + }, + { + "id": 37098, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salsa", + "onions", + "kosher salt", + "flank steak", + "red bell pepper", + "jalapeno chilies", + "hot sauce", + "olive oil", + "chili powder", + "sour cream" + ] + }, + { + "id": 39868, + "cuisine": "southern_us", + "ingredients": [ + "peaches", + "lemon", + "eggs", + "flour", + "all-purpose flour", + "unsalted butter", + "salt", + "sugar", + "ice water" + ] + }, + { + "id": 23191, + "cuisine": "british", + "ingredients": [ + "shallots", + "salt", + "mushroom caps", + "extra-virgin olive oil", + "puff pastry", + "swiss chard", + "chopped fresh thyme", + "garlic cloves", + "large eggs", + "beef tenderloin" + ] + }, + { + "id": 26352, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "salt", + "red bell pepper", + "ground cumin", + "olive oil", + "orange juice", + "long grain white rice", + "black beans", + "hot sauce", + "onions", + "celery ribs", + "green onions", + "lemon juice", + "plum tomatoes" + ] + }, + { + "id": 13650, + "cuisine": "indian", + "ingredients": [ + "sugar", + "coriander seeds", + "salt", + "cinnamon sticks", + "onions", + "fennel seeds", + "fresh curry leaves", + "meat", + "cardamom pods", + "dried red chile peppers", + "ginger paste", + "garlic paste", + "water", + "vegetable oil", + "cumin seed", + "ghee", + "warm water", + "garam masala", + "tamarind paste", + "coconut milk", + "ground turmeric" + ] + }, + { + "id": 29863, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "water", + "sweet pepper", + "soy sauce", + "spring onions", + "shrimp", + "brown sugar", + "thai basil", + "garlic cloves", + "black pepper", + "crushed red pepper flakes" + ] + }, + { + "id": 34275, + "cuisine": "spanish", + "ingredients": [ + "manchego cheese", + "crackers", + "celery", + "green olives" + ] + }, + { + "id": 33417, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "dried thyme", + "sauce", + "boneless pork shoulder", + "chipotle chile", + "vegetable oil", + "onions", + "italian tomatoes", + "bay leaves", + "garlic cloves", + "red potato", + "chorizo", + "salt", + "marjoram" + ] + }, + { + "id": 37541, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "water", + "grated parmesan cheese", + "heavy cream", + "scallops", + "whole grain mustard", + "miso", + "salt", + "white wine", + "superfine sugar", + "vegetable oil", + "garlic", + "pepper", + "mirin", + "watercress", + "all-purpose flour" + ] + }, + { + "id": 35405, + "cuisine": "thai", + "ingredients": [ + "honey", + "lime wedges", + "peanut butter", + "red chili peppers", + "peanuts", + "garlic", + "coconut milk", + "chicken stock", + "fresh ginger", + "rice noodles", + "corn flour", + "soy sauce", + "spring onions", + "rice vinegar", + "chicken thighs" + ] + }, + { + "id": 20434, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "chicken breasts", + "coconut milk", + "pepper", + "basil", + "olive oil", + "garlic", + "sun-dried tomatoes", + "salt" + ] + }, + { + "id": 43364, + "cuisine": "mexican", + "ingredients": [ + "seasoning", + "coconut butter", + "onions", + "lime", + "lentils", + "tomato paste", + "salt", + "liquid smoke", + "tortillas", + "smoked paprika" + ] + }, + { + "id": 19068, + "cuisine": "italian", + "ingredients": [ + "white wine", + "low sodium chicken broth", + "chopped fresh sage", + "unsalted butter", + "chopped fresh thyme", + "garlic cloves", + "olive oil", + "shallots", + "freshly ground pepper", + "arborio rice", + "grated parmesan cheese", + "sea salt", + "wild mushrooms" + ] + }, + { + "id": 48482, + "cuisine": "indian", + "ingredients": [ + "sliced almonds", + "green onions", + "reduced fat mayonnaise", + "fat-free buttermilk", + "fresh lemon juice", + "nectarines", + "curry powder", + "salt", + "cooked chicken breasts", + "ground black pepper", + "diced celery" + ] + }, + { + "id": 26552, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "olive oil", + "chipotle", + "ground coriander", + "fish", + "lime juice", + "tortillas", + "habanero", + "adobo sauce", + "kosher salt", + "peaches", + "large garlic cloves", + "fresh lime juice", + "ground cumin", + "lime", + "diced red onions", + "cracked black pepper", + "chopped cilantro" + ] + }, + { + "id": 8473, + "cuisine": "southern_us", + "ingredients": [ + "pimentos", + "chopped pecans", + "mayonaise", + "shredded sharp cheddar cheese", + "butter", + "white sugar", + "garlic powder", + "salt" + ] + }, + { + "id": 5135, + "cuisine": "italian", + "ingredients": [ + "salami", + "short pasta", + "peas", + "butter", + "ground pepper", + "ricotta" + ] + }, + { + "id": 19434, + "cuisine": "chinese", + "ingredients": [ + "pork", + "water", + "sesame oil", + "scallions", + "sake", + "pork belly", + "flour", + "ginger", + "onions", + "potato starch", + "soy sauce", + "egg whites", + "vegetable oil", + "oyster sauce", + "sugar", + "black pepper", + "baking powder", + "dried shiitake mushrooms", + "yeast" + ] + }, + { + "id": 11109, + "cuisine": "italian", + "ingredients": [ + "bacon", + "onions", + "fresh mushrooms", + "pizza doughs", + "pizza sauce", + "shredded cheese" + ] + }, + { + "id": 7147, + "cuisine": "greek", + "ingredients": [ + "curry powder", + "cheese", + "feta cheese", + "fresh parsley", + "red pepper flakes", + "onions", + "olive oil", + "red bell pepper" + ] + }, + { + "id": 32550, + "cuisine": "italian", + "ingredients": [ + "salami", + "artichoke hearts", + "caesar salad dressing", + "cheese tortellini", + "green onions", + "ripe olives" + ] + }, + { + "id": 22316, + "cuisine": "cajun_creole", + "ingredients": [ + "cold water", + "heavy cream", + "yeast", + "unsalted butter", + "all-purpose flour", + "eggs", + "fine sea salt", + "canola oil", + "granulated sugar", + "confectioners sugar" + ] + }, + { + "id": 34153, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "cinnamon", + "white sugar", + "oats", + "flour", + "lemon juice", + "peaches", + "butter", + "brown sugar", + "baking powder", + "corn starch" + ] + }, + { + "id": 47551, + "cuisine": "irish", + "ingredients": [ + "pickles", + "canola oil", + "swiss cheese", + "egg roll wrappers", + "brown mustard", + "eggs", + "corned beef" + ] + }, + { + "id": 4868, + "cuisine": "jamaican", + "ingredients": [ + "dried thyme", + "ginger", + "carrots", + "ketchup", + "bell pepper", + "garlic", + "onions", + "black pepper", + "hot pepper", + "salt", + "browning", + "water", + "vegetable oil", + "ground allspice", + "chicken" + ] + }, + { + "id": 18352, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "corn tortillas", + "shredded cheddar cheese", + "garlic", + "cumin", + "black beans", + "rotelle", + "onions", + "garlic powder", + "enchilada sauce" + ] + }, + { + "id": 8290, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "granulated sugar", + "heavy cream", + "corn starch", + "pure vanilla extract", + "instant espresso powder", + "coffee", + "cocoa powder", + "large egg yolks", + "large eggs", + "salt", + "nonstick spray", + "dark chocolate", + "unsalted butter", + "whole milk", + "chocolate sandwich cookies" + ] + }, + { + "id": 14396, + "cuisine": "thai", + "ingredients": [ + "Thai red curry paste", + "beans", + "eggs", + "lime leaves", + "fish paste" + ] + }, + { + "id": 10175, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "cilantro", + "avocado", + "roma tomatoes", + "purple onion", + "ground black pepper", + "garlic", + "lime", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 37914, + "cuisine": "italian", + "ingredients": [ + "ziti", + "kale leaves", + "garlic", + "crushed red pepper flakes", + "shredded mozzarella cheese", + "italian sausage", + "shredded parmesan cheese" + ] + }, + { + "id": 12601, + "cuisine": "greek", + "ingredients": [ + "cherry tomatoes", + "garlic", + "crostini", + "flatbread", + "feta cheese", + "flat leaf parsley", + "dried oregano", + "olive oil", + "purple onion", + "olives", + "pita chips", + "ground black pepper", + "crackers" + ] + }, + { + "id": 34064, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "salt", + "italian plum tomatoes", + "onions", + "olive oil", + "rice", + "chicken broth", + "cilantro" + ] + }, + { + "id": 13440, + "cuisine": "korean", + "ingredients": [ + "honey", + "yellow bell pepper", + "garlic cloves", + "cooking spray", + "lamb", + "lower sodium soy sauce", + "crushed red pepper", + "kosher salt", + "green onions", + "dark sesame oil" + ] + }, + { + "id": 7199, + "cuisine": "irish", + "ingredients": [ + "water", + "lamb neck", + "carrots", + "beef bouillon granules", + "pearl barley", + "cabbage", + "dried thyme", + "vegetable oil", + "onions", + "rutabaga", + "bay leaves", + "ground allspice" + ] + }, + { + "id": 14352, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime juice", + "salt", + "english cucumber", + "pepper", + "shallots", + "cayenne pepper", + "greens", + "sugar", + "flank steak", + "cilantro leaves", + "fresh mint", + "water", + "thai chile", + "sweet paprika" + ] + }, + { + "id": 8062, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "red wine vinegar", + "flank steak", + "garlic", + "dijon mustard", + "worcestershire sauce", + "soy sauce", + "vegetable oil", + "fresh lemon juice" + ] + }, + { + "id": 33805, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "green onions", + "red pepper", + "salt", + "toasted sesame oil", + "brown sugar", + "water", + "lemon", + "beaten eggs", + "peanut oil", + "jasmine rice", + "boneless skinless chicken breasts", + "garlic", + "all-purpose flour", + "orange zest", + "soy sauce", + "orange marmalade", + "red pepper flakes", + "purple onion", + "chinese five-spice powder" + ] + }, + { + "id": 17166, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "english cucumber", + "wakame", + "salt", + "japanese cucumber", + "sugar", + "rice vinegar" + ] + }, + { + "id": 23820, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "rosemary leaves", + "garlic cloves", + "chicken", + "avocado", + "chili powder", + "grated lemon zest", + "poblano chiles", + "kosher salt", + "red wine vinegar", + "cayenne pepper", + "fresh basil leaves", + "ground black pepper", + "purple onion", + "red bell pepper" + ] + }, + { + "id": 19283, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "olive oil", + "chili powder", + "salt", + "melted butter", + "water", + "yoghurt", + "butter", + "chopped garlic", + "fenugreek leaves", + "honey", + "boneless skinless chicken breasts", + "heavy cream", + "ginger paste", + "garlic paste", + "garam masala", + "chile pepper", + "lemon juice" + ] + }, + { + "id": 27004, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "fresh parmesan cheese", + "basil", + "olive oil", + "balsamic vinegar", + "oregano", + "seasoned bread crumbs", + "cooking spray", + "boneless skinless chicken breast halves", + "sugar", + "part-skim mozzarella cheese", + "diced tomatoes", + "italian seasoning" + ] + }, + { + "id": 1986, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "vegetable stock", + "pumpkin seeds", + "cooked white rice", + "hoja santa", + "boneless skinless chicken breasts", + "garlic", + "chayotes", + "canola oil", + "kosher salt", + "tomatillos", + "cumin seed", + "onions", + "fresh cilantro", + "epazote", + "green beans", + "serrano chile" + ] + }, + { + "id": 39060, + "cuisine": "vietnamese", + "ingredients": [ + "salt", + "wheat flour", + "ketchup", + "chicken egg", + "sugar", + "rice vinegar", + "pepper", + "pork meat" + ] + }, + { + "id": 32388, + "cuisine": "french", + "ingredients": [ + "savoy cabbage", + "black peppercorns", + "seedless green grape", + "coriander seeds", + "fennel bulb", + "extra-virgin olive oil", + "sour cherries", + "porcini", + "juniper berries", + "olive oil", + "unsalted butter", + "lemon", + "cherry vinegar", + "chicken", + "lime zest", + "chestnuts", + "Japanese turnips", + "fennel", + "mushrooms", + "fine sea salt", + "carrots", + "chicken stock", + "granny smith apples", + "lime", + "ground black pepper", + "spring onions", + "artichokes", + "rib" + ] + }, + { + "id": 38493, + "cuisine": "moroccan", + "ingredients": [ + "fresh coriander", + "beef stock", + "yellow onion", + "ground cumin", + "tomato paste", + "stewing beef", + "diced tomatoes", + "smoked paprika", + "olive oil", + "large garlic cloves", + "chickpeas", + "ground cloves", + "ground black pepper", + "black olives", + "bay leaf" + ] + }, + { + "id": 33543, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "corn chips", + "Mexican cheese", + "chunky salsa", + "milk", + "all-purpose flour", + "ground beef", + "Mazola Corn Oil", + "cooking spray", + "taco seasoning", + "yeast", + "sugar", + "salt", + "corn flour" + ] + }, + { + "id": 38470, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "part-skim mozzarella cheese", + "plum tomatoes", + "pepper", + "salt", + "pizza crust", + "cooking spray", + "olive oil", + "fresh oregano" + ] + }, + { + "id": 3523, + "cuisine": "spanish", + "ingredients": [ + "flour", + "olive oil", + "salt", + "milk", + "runny honey", + "eggplant", + "orange blossom honey" + ] + }, + { + "id": 49447, + "cuisine": "french", + "ingredients": [ + "flour", + "chopped onion", + "milk", + "salt", + "pepper", + "butter", + "potatoes", + "mild cheddar cheese" + ] + }, + { + "id": 21276, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "peanuts", + "garlic", + "chile paste", + "udon", + "soy sauce", + "fresh ginger root", + "peanut butter", + "honey", + "green onions" + ] + }, + { + "id": 48708, + "cuisine": "indian", + "ingredients": [ + "spinach", + "flour", + "cumin seed", + "asafetida", + "amchur", + "salt", + "rice flour", + "water", + "red pepper", + "oil", + "potatoes", + "green chilies", + "coriander" + ] + }, + { + "id": 35187, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "currant", + "salt", + "romano cheese", + "flank steak", + "dry red wine", + "kale", + "vegetable oil", + "garlic", + "chicken stock", + "ground black pepper", + "anchovy paste", + "onions" + ] + }, + { + "id": 14833, + "cuisine": "moroccan", + "ingredients": [ + "salt", + "ground cumin", + "eggplant", + "fresh lemon juice", + "paprika", + "fresh parsley", + "pepper", + "garlic cloves" + ] + }, + { + "id": 49244, + "cuisine": "italian", + "ingredients": [ + "spinach", + "coarse salt", + "large egg yolks", + "semolina flour", + "all-purpose flour", + "large eggs" + ] + }, + { + "id": 26755, + "cuisine": "french", + "ingredients": [ + "potatoes", + "garlic", + "red bell pepper", + "fresh basil leaves", + "zucchini", + "vegetable broth", + "carrots", + "onions", + "cannellini beans", + "salt", + "celery", + "pepper", + "butternut squash", + "white beans", + "pistou" + ] + }, + { + "id": 41026, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "promise buttery spread", + "chopped cilantro fresh", + "orange bell pepper", + "ground turkey", + "shredded cheddar cheese", + "chili powder", + "tomatoes", + "chip plain tortilla", + "onions" + ] + }, + { + "id": 21393, + "cuisine": "southern_us", + "ingredients": [ + "lemon", + "cornmeal", + "ground black pepper", + "all-purpose flour", + "olive oil", + "salt", + "trout", + "cayenne pepper" + ] + }, + { + "id": 45298, + "cuisine": "italian", + "ingredients": [ + "white truffle oil", + "pizza doughs", + "taleggio", + "sliced mushrooms" + ] + }, + { + "id": 17059, + "cuisine": "japanese", + "ingredients": [ + "water", + "mirin", + "hot red pepper flakes", + "eggplant", + "gingerroot", + "dashi", + "vegetable oil", + "sugar", + "Japanese soy sauce", + "radish sprouts" + ] + }, + { + "id": 2171, + "cuisine": "mexican", + "ingredients": [ + "ear of corn", + "chopped cilantro fresh", + "crema mexicana", + "fresh lime juice", + "lime", + "chipotle chile powder", + "coarse kosher salt" + ] + }, + { + "id": 47522, + "cuisine": "brazilian", + "ingredients": [ + "lime juice", + "avocado", + "sugar" + ] + }, + { + "id": 16956, + "cuisine": "mexican", + "ingredients": [ + "apples", + "tortillas", + "chicken", + "bacon", + "cheddar cheese", + "bbq sauce" + ] + }, + { + "id": 12317, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "grated parmesan cheese", + "oven-ready lasagna noodles", + "part-skim mozzarella cheese", + "part-skim ricotta cheese", + "vegetables", + "garlic cloves", + "large egg whites", + "marinara sauce" + ] + }, + { + "id": 23313, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "purple onion", + "extra-virgin olive oil", + "fresh basil leaves", + "whole grain bread", + "red wine vinegar", + "cucumber" + ] + }, + { + "id": 33452, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "onions", + "fresh ginger", + "garlic", + "canola oil", + "water", + "red pepper flakes", + "toasted sesame seeds", + "sugar", + "hoisin sauce", + "green beans" + ] + }, + { + "id": 14094, + "cuisine": "italian", + "ingredients": [ + "light butter", + "italian seasoning", + "grated parmesan cheese", + "garlic powder", + "whole wheat bread dough" + ] + }, + { + "id": 32347, + "cuisine": "korean", + "ingredients": [ + "cider vinegar", + "beef fillet", + "onions", + "eggs", + "vegetable oil", + "cucumber", + "chard", + "water", + "carrots", + "nori", + "soy sauce", + "white rice", + "tuna" + ] + }, + { + "id": 43756, + "cuisine": "italian", + "ingredients": [ + "red potato", + "fusilli", + "low salt chicken broth", + "fresh parmesan cheese", + "crushed red pepper", + "black pepper", + "extra-virgin olive oil", + "broccoli rabe", + "garlic cloves" + ] + }, + { + "id": 48780, + "cuisine": "korean", + "ingredients": [ + "pork", + "garlic", + "toasted sesame seeds", + "Korean chile flakes", + "fresh ginger", + "Gochujang base", + "ground ginger", + "soy sauce", + "corn syrup", + "canola oil", + "sugar", + "sesame oil", + "onions" + ] + }, + { + "id": 14491, + "cuisine": "cajun_creole", + "ingredients": [ + "ground nutmeg", + "half & half", + "vanilla extract", + "golden brown sugar", + "raisin bread", + "amaretto", + "large egg yolks", + "large eggs", + "whipping cream", + "sugar", + "unsalted butter", + "pumpkin", + "salt" + ] + }, + { + "id": 18187, + "cuisine": "french", + "ingredients": [ + "olive oil", + "fresh parsley leaves", + "grated lemon zest", + "garlic cloves", + "red wine vinegar", + "boiling potatoes" + ] + }, + { + "id": 1042, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "flank steak", + "scallions", + "chopped garlic", + "sugar", + "shiitake", + "choy sum", + "Chinese egg noodles", + "chinese rice wine", + "reduced sodium chicken broth", + "sesame oil", + "oyster sauce", + "soy sauce", + "peeled fresh ginger", + "peanut oil", + "corn starch" + ] + }, + { + "id": 27775, + "cuisine": "italian", + "ingredients": [ + "ground cinnamon", + "egg whites", + "confectioners sugar", + "hazelnuts", + "all-purpose flour", + "unsweetened cocoa powder", + "ground cloves", + "salt", + "orange liqueur", + "honey", + "walnuts" + ] + }, + { + "id": 13539, + "cuisine": "italian", + "ingredients": [ + "vegetable oil", + "sardines", + "horseradish", + "oil", + "beets", + "fresh dill", + "sour cream" + ] + }, + { + "id": 2151, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger", + "ground pork", + "green onions", + "shredded cabbage", + "gyoza wrappers", + "soy sauce", + "sesame oil" + ] + }, + { + "id": 36322, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "butter", + "corn starch", + "pecan halves", + "flour", + "light corn syrup", + "unsweetened cocoa powder", + "eggs", + "unsalted butter", + "ice water", + "semi-sweet chocolate morsels", + "shortening", + "bourbon whiskey", + "salt" + ] + }, + { + "id": 12804, + "cuisine": "indian", + "ingredients": [ + "white onion", + "ground red pepper", + "ground coriander", + "chopped cilantro", + "garam masala", + "salt", + "oil", + "lime", + "ginger", + "cumin seed", + "chopped garlic", + "bread crumbs", + "sweet potatoes", + "green pepper", + "gram flour" + ] + }, + { + "id": 39360, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "tuna, drain and flake", + "hellmann' or best food real mayonnais", + "prepar salsa", + "shredded cheddar cheese" + ] + }, + { + "id": 6196, + "cuisine": "chinese", + "ingredients": [ + "fat free less sodium chicken broth", + "sesame oil", + "corn starch", + "low sodium soy sauce", + "mushrooms", + "garlic chili sauce", + "sliced green onions", + "water", + "rice vinegar", + "ground white pepper", + "large eggs", + "firm tofu", + "bamboo shoots" + ] + }, + { + "id": 30633, + "cuisine": "moroccan", + "ingredients": [ + "fat free less sodium chicken broth", + "ground red pepper", + "chopped onion", + "chopped cilantro fresh", + "green olives", + "ground black pepper", + "all-purpose flour", + "fresh lemon juice", + "boneless chicken skinless thigh", + "peeled fresh ginger", + "grated lemon zest", + "cinnamon sticks", + "olive oil", + "salt", + "garlic cloves", + "ground turmeric" + ] + }, + { + "id": 46289, + "cuisine": "chinese", + "ingredients": [ + "salmon fillets", + "black bean sauce", + "scallions", + "canola oil", + "soy sauce", + "white rice", + "carrots", + "sugar", + "radishes", + "garlic cloves", + "chicken stock", + "fresh ginger", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 32950, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "hellmann' or best food light mayonnais", + "black beans", + "whole kernel corn, drain", + "tomatoes", + "purple onion", + "ground cumin", + "lime juice", + "chopped cilantro fresh" + ] + }, + { + "id": 12075, + "cuisine": "vietnamese", + "ingredients": [ + "fronds", + "garlic", + "ground turmeric", + "sugar", + "baton", + "roasted peanuts", + "fish sauce", + "rice vermicelli", + "halibut", + "canola oil", + "lime juice", + "thai chile", + "fresh pineapple" + ] + }, + { + "id": 38139, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "light cream", + "chop fine pecan", + "rum extract", + "cream of tartar", + "brown sugar", + "granulated sugar", + "butter", + "ground ginger", + "sugar", + "egg whites", + "salt", + "clove", + "eggs", + "ground nutmeg", + "sweet potatoes", + "crushed graham crackers" + ] + }, + { + "id": 26606, + "cuisine": "french", + "ingredients": [ + "cooked ham", + "large eggs", + "grated nutmeg", + "unsalted butter", + "salt", + "white sandwich bread", + "black pepper", + "whole milk", + "grated Gruyère cheese", + "dijon mustard", + "all-purpose flour" + ] + }, + { + "id": 46111, + "cuisine": "greek", + "ingredients": [ + "swiss chard", + "garlic cloves", + "garbanzo beans", + "extra-virgin olive oil", + "fennel seeds", + "shallots", + "bay leaves", + "low salt chicken broth" + ] + }, + { + "id": 30866, + "cuisine": "italian", + "ingredients": [ + "pepper", + "garlic", + "plain yogurt", + "fresh green bean", + "pesto", + "grated parmesan cheese", + "penne pasta", + "red potato", + "olive oil", + "salt" + ] + }, + { + "id": 31668, + "cuisine": "irish", + "ingredients": [ + "baking powder", + "all-purpose flour", + "mashed potatoes", + "buttermilk", + "butter", + "potatoes", + "sea salt" + ] + }, + { + "id": 9711, + "cuisine": "spanish", + "ingredients": [ + "water", + "sugar", + "soft fresh goat cheese", + "grapes", + "apples" + ] + }, + { + "id": 28292, + "cuisine": "mexican", + "ingredients": [ + "water", + "white hominy", + "chile pepper", + "onions", + "avocado", + "corn kernels", + "green onions", + "garlic", + "dried oregano", + "crushed tomatoes", + "boneless chicken breast halves", + "condensed chicken broth", + "chopped cilantro fresh", + "black beans", + "olive oil", + "chili powder", + "tortilla chips", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 28581, + "cuisine": "korean", + "ingredients": [ + "sugar", + "medium dry sherry", + "chopped cilantro fresh", + "hot red pepper flakes", + "habanero chile", + "vegetable oil", + "top loin", + "soy sauce", + "sesame oil", + "chiles", + "minced garlic", + "fresh lime juice" + ] + }, + { + "id": 48153, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "dry white wine", + "diced ham", + "dried thyme", + "paprika", + "onions", + "tomatoes", + "olive oil", + "cayenne pepper", + "long grain white rice", + "dried basil", + "large garlic cloves", + "red bell pepper" + ] + }, + { + "id": 22185, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "ground pork", + "white radish", + "soy sauce", + "rice wine", + "rice flour", + "sugar", + "shallots", + "salt", + "dried mushrooms", + "water", + "garlic", + "dried shrimp" + ] + }, + { + "id": 19119, + "cuisine": "japanese", + "ingredients": [ + "ice cubes", + "dipping sauces", + "egg yolks", + "tempura batter", + "vegetables", + "cake flour", + "cold water", + "vegetable oil", + "toasted sesame oil" + ] + }, + { + "id": 38663, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "onions", + "potatoes", + "salt", + "ground cumin", + "water", + "peas", + "ground turmeric", + "chili powder", + "ground coriander" + ] + }, + { + "id": 39300, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cajun seasoning", + "orange juice", + "water", + "salsa", + "onions", + "pickled jalapenos", + "red pepper", + "corn tortillas", + "beef", + "green pepper" + ] + }, + { + "id": 24208, + "cuisine": "spanish", + "ingredients": [ + "vegetable juice", + "reduced-fat sour cream", + "onions", + "orange bell pepper", + "garlic cloves", + "olive oil", + "salt", + "tomatoes", + "red wine vinegar", + "cucumber" + ] + }, + { + "id": 15771, + "cuisine": "indian", + "ingredients": [ + "greek yogurt", + "sugar", + "mango", + "ice", + "fat free milk" + ] + }, + { + "id": 23455, + "cuisine": "japanese", + "ingredients": [ + "kirby cucumbers", + "ginger", + "rice noodles", + "cilantro", + "scallions", + "sesame oil", + "skinless salmon fillets", + "edamame", + "white miso", + "furikake", + "garlic" + ] + }, + { + "id": 6022, + "cuisine": "italian", + "ingredients": [ + "milk", + "chopped onion", + "garlic salt", + "fresh spinach", + "grated parmesan cheese", + "shredded mozzarella cheese", + "artichoke hearts", + "cream cheese", + "italian seasoning", + "pepper", + "garlic", + "sour cream" + ] + }, + { + "id": 37671, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "garlic", + "italian tomatoes", + "salt", + "pepper" + ] + }, + { + "id": 3675, + "cuisine": "british", + "ingredients": [ + "plain flour", + "muscovado sugar", + "apples", + "suet", + "lemon", + "mixed spice", + "baking powder", + "whole milk", + "currant" + ] + }, + { + "id": 31036, + "cuisine": "southern_us", + "ingredients": [ + "shallots", + "iodized salt", + "honey", + "cracked black pepper", + "canola oil", + "water", + "button mushrooms", + "collards", + "garlic powder", + "salt" + ] + }, + { + "id": 15590, + "cuisine": "italian", + "ingredients": [ + "bell pepper", + "salt", + "olive oil", + "balsamic vinegar", + "garlic cloves", + "red potato", + "cooking spray", + "Italian turkey sausage", + "ground black pepper", + "crushed red pepper", + "dried rosemary" + ] + }, + { + "id": 31853, + "cuisine": "japanese", + "ingredients": [ + "hakusai", + "garlic", + "sake", + "ground pork", + "gyoza wrappers", + "sesame oil", + "salt", + "soy sauce", + "ginger", + "dried shiitake mushrooms" + ] + }, + { + "id": 14687, + "cuisine": "british", + "ingredients": [ + "eggs", + "flour", + "salt", + "fruit", + "butter", + "sherry wine", + "sugar", + "sponge cake", + "strawberries", + "bananas", + "whipping cream", + "lemon juice" + ] + }, + { + "id": 4360, + "cuisine": "korean", + "ingredients": [ + "sugar", + "sesame oil", + "onions", + "enokitake", + "sirloin steak", + "ground black pepper", + "vegetable oil", + "toasted sesame seeds", + "dark soy sauce", + "green onions", + "garlic cloves" + ] + }, + { + "id": 8422, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "serrano peppers", + "romaine lettuce leaves", + "cumin seed", + "chicken stock", + "ground black pepper", + "tomatillos", + "cilantro leaves", + "olive oil", + "Mexican oregano", + "garlic", + "onions", + "black peppercorns", + "radishes", + "turkey", + "pumpkin seeds" + ] + }, + { + "id": 20394, + "cuisine": "french", + "ingredients": [ + "unsalted pistachios", + "boneless skinless chicken breasts", + "apples", + "cognac", + "caul fat", + "large eggs", + "vegetable oil", + "garlic", + "fatback", + "dried thyme", + "shallots", + "boneless duck breast", + "freshly ground pepper", + "boneless pork shoulder", + "dried apricot", + "coarse salt", + "ground allspice", + "onions" + ] + }, + { + "id": 36014, + "cuisine": "indian", + "ingredients": [ + "salt", + "onions", + "vegetable oil" + ] + }, + { + "id": 41491, + "cuisine": "italian", + "ingredients": [ + "mayonaise", + "ground black pepper", + "cream cheese", + "water", + "green onions", + "ground beef", + "pasta sauce", + "bread, cut into italian loaf", + "garlic", + "italian seasoning", + "seasoned bread crumbs", + "grated parmesan cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 5100, + "cuisine": "french", + "ingredients": [ + "butter", + "grated lemon peel", + "white wine vinegar", + "fresh tarragon", + "shallots", + "flat leaf parsley" + ] + }, + { + "id": 19246, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "butter", + "sweet onion", + "salt", + "milk", + "Corn Flakes Cereal", + "eggs", + "yellow squash", + "corn starch" + ] + }, + { + "id": 48331, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "cucumber", + "pitted kalamata olives", + "purple onion", + "green bell pepper", + "ranch dressing", + "dried oregano", + "dried basil", + "feta cheese crumbles" + ] + }, + { + "id": 4001, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "flat leaf parsley", + "tomatoes", + "salt", + "garlic", + "capers", + "Italian bread" + ] + }, + { + "id": 26706, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "salt", + "garlic salt", + "onion powder", + "long-grain rice", + "red beans", + "freshly ground pepper", + "smoked ham hocks", + "crushed red pepper", + "lard" + ] + }, + { + "id": 37068, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "catsup", + "salt", + "water", + "worcestershire sauce", + "cider vinegar", + "red pepper", + "yellow onion", + "brown sugar", + "pork shoulder butt", + "dry mustard" + ] + }, + { + "id": 42390, + "cuisine": "french", + "ingredients": [ + "baguette", + "ground nutmeg", + "butter", + "fresh raspberries", + "powdered sugar", + "fat free milk", + "dry white wine", + "strawberries", + "ground cinnamon", + "water", + "fresh blueberries", + "salt", + "blackberries", + "egg substitute", + "granulated sugar", + "vanilla extract", + "corn starch" + ] + }, + { + "id": 40091, + "cuisine": "cajun_creole", + "ingredients": [ + "celery ribs", + "butter", + "shrimp", + "ground black pepper", + "salt", + "onions", + "flour", + "okra", + "chorizo", + "fish stock", + "fresh parsley" + ] + }, + { + "id": 22034, + "cuisine": "french", + "ingredients": [ + "olive oil", + "garlic", + "chervil", + "shallots", + "bay leaf", + "mussels", + "chives", + "tarragon", + "white wine", + "Italian parsley leaves" + ] + }, + { + "id": 28731, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "salt", + "scallions", + "clarified butter", + "cottage cheese", + "extra-virgin olive oil", + "freshly ground pepper", + "rib", + "spinach", + "swiss chard", + "grated nutmeg", + "fresh lemon juice", + "phyllo dough", + "large eggs", + "dill", + "flat leaf parsley" + ] + }, + { + "id": 28693, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "butter", + "onions", + "water", + "rosemary leaves", + "eggs", + "old bay seasoning", + "corn grits", + "olive oil", + "salt" + ] + }, + { + "id": 38454, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "diced tomatoes", + "beef stew meat", + "sour cream", + "kosher salt", + "bay leaves", + "dry red wine", + "baby carrots", + "tomato paste", + "fresh thyme", + "button mushrooms", + "spanish paprika", + "onions", + "olive oil", + "worcestershire sauce", + "garlic", + "roast red peppers, drain" + ] + }, + { + "id": 21991, + "cuisine": "brazilian", + "ingredients": [ + "butter", + "sweetened condensed milk", + "other", + "chocolate sprinkles" + ] + }, + { + "id": 43733, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "lime juice", + "lime leaves", + "straw mushrooms", + "oil", + "chiles", + "lemongrass", + "galangal", + "shrimp stock", + "Thai chili paste", + "shrimp" + ] + }, + { + "id": 32730, + "cuisine": "mexican", + "ingredients": [ + "pork and beans", + "beans", + "hot dogs" + ] + }, + { + "id": 19284, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "cream cheese, soften", + "vanilla extract", + "pineapple juice", + "butter" + ] + }, + { + "id": 29149, + "cuisine": "jamaican", + "ingredients": [ + "tomato paste", + "finely chopped onion", + "vegetable oil", + "beef broth", + "dried black beans", + "green onions", + "chopped celery", + "diced ham", + "green bell pepper", + "jamaican jerk season", + "reduced-fat sour cream", + "garlic cloves", + "water", + "chili powder", + "salt" + ] + }, + { + "id": 46815, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "large eggs", + "vegetable oil", + "shrimp", + "pepper", + "lettuce leaves", + "salt", + "sweet chili sauce", + "water chestnuts", + "ground pork", + "bamboo shoots", + "spring roll wrappers", + "fresh ginger", + "green onions", + "garlic cloves" + ] + }, + { + "id": 45189, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "garlic cloves", + "olive oil spray", + "crushed tomatoes", + "fat-free chicken broth", + "onions", + "whole wheat pasta", + "mushrooms", + "red bell pepper", + "dried oregano", + "ground black pepper", + "salt", + "chicken thighs" + ] + }, + { + "id": 37807, + "cuisine": "italian", + "ingredients": [ + "sugar", + "sugar cane", + "prosecco", + "lime juice", + "raspberries", + "ice", + "white rum", + "mint leaves" + ] + }, + { + "id": 14527, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "ground black pepper", + "fresh oregano", + "cotija", + "pumpkin seed mole", + "corn tortillas", + "olive oil", + "purple onion", + "lump crab meat", + "green onions", + "celery" + ] + }, + { + "id": 39468, + "cuisine": "chinese", + "ingredients": [ + "white flour", + "green onions", + "cold water", + "Sriracha", + "rice vinegar", + "mayonaise", + "extra firm tofu", + "canola oil", + "sugar", + "egg yolks" + ] + }, + { + "id": 40035, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "long grain white rice", + "taco seasoning mix", + "Campbell's Condensed Cream of Chicken Soup", + "butter", + "swanson chicken stock", + "Mexican cheese blend", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 12710, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "sea salt", + "boneless skinless chicken breasts", + "lemon", + "lemon peel", + "extra-virgin olive oil" + ] + }, + { + "id": 1204, + "cuisine": "indian", + "ingredients": [ + "mint", + "jalapeno chilies", + "ginger", + "chopped cilantro", + "seedless cucumber", + "vegetable oil", + "grated nutmeg", + "ground cumin", + "tumeric", + "shell-on shrimp", + "purple onion", + "mango", + "garam masala", + "large garlic cloves", + "fresh lime juice" + ] + }, + { + "id": 12200, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "butter", + "onions", + "tomatoes", + "vegetable stock", + "garlic", + "pepper", + "red pepper flakes", + "olive oil", + "sea salt" + ] + }, + { + "id": 6150, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "active dry yeast", + "extra-virgin olive oil", + "warm water", + "large eggs", + "pernod", + "ground black pepper", + "bread flour", + "water", + "coarse salt" + ] + }, + { + "id": 24730, + "cuisine": "french", + "ingredients": [ + "water", + "salt", + "celery ribs", + "balsamic vinegar", + "carrots", + "olive oil", + "lentils", + "black pepper", + "smoked sausage", + "onions" + ] + }, + { + "id": 23133, + "cuisine": "russian", + "ingredients": [ + "green bell pepper", + "kidney beans", + "sour cream", + "dried parsley", + "water", + "salt", + "ground beef", + "tomato paste", + "olive oil", + "beer", + "onions", + "pepper", + "chili powder", + "celery", + "ground cumin" + ] + }, + { + "id": 6869, + "cuisine": "french", + "ingredients": [ + "semisweet chocolate", + "half & half" + ] + }, + { + "id": 34148, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "coarse salt", + "garlic cloves", + "shredded Monterey Jack cheese", + "tomato paste", + "jalapeno chilies", + "rice", + "sour cream", + "ground pepper", + "salsa", + "pinto beans", + "ground cumin", + "corn kernels", + "large flour tortillas", + "scallions", + "onions" + ] + }, + { + "id": 42652, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dried fettuccine", + "hot red pepper flakes", + "unsalted butter", + "edamame beans", + "haricots verts", + "frozen broccoli florets", + "garlic cloves", + "cherry tomatoes", + "parmigiano reggiano cheese", + "onions" + ] + }, + { + "id": 41228, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "corn kernels", + "salt", + "yellow corn meal", + "whole milk", + "unsalted butter" + ] + }, + { + "id": 11534, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "butter", + "rice", + "dry white wine", + "garlic", + "fresh parsley", + "grated parmesan cheese", + "peas", + "celery", + "canned low sodium chicken broth", + "deli ham", + "salt", + "onions" + ] + }, + { + "id": 16189, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "mango chutney", + "garlic", + "onions", + "red lentils", + "curry powder", + "vegetable stock", + "salt", + "pepper", + "vegetable oil", + "malt vinegar", + "ground ginger", + "potatoes", + "cauliflower florets", + "fresh parsley" + ] + }, + { + "id": 15620, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "tomatoes", + "aioli", + "rocket leaves", + "extra-virgin olive oil", + "pancetta", + "whole wheat sourdough bread" + ] + }, + { + "id": 35167, + "cuisine": "thai", + "ingredients": [ + "snow pea pods", + "Sriracha", + "red pepper flakes", + "carrots", + "sugar", + "fresh ginger", + "lemon wedge", + "scallions", + "olive oil", + "chunky peanut butter", + "linguine", + "soy sauce", + "zucchini", + "large garlic cloves", + "lemon juice" + ] + }, + { + "id": 706, + "cuisine": "british", + "ingredients": [ + "white pepper", + "whipping cream", + "nutmeg", + "flour", + "frozen corn", + "sugar", + "butter", + "cayenne pepper", + "milk", + "salt" + ] + }, + { + "id": 26891, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "lean ground beef", + "taco shells", + "ketchup", + "iceberg lettuce", + "shredded cheddar cheese" + ] + }, + { + "id": 43742, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "spaghetti squash", + "part-skim ricotta cheese", + "parmesan cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 4682, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "shiitake", + "dry white wine", + "watercress", + "freshly ground pepper", + "olive oil", + "dijon mustard", + "red wine vinegar", + "provolone cheese", + "red potato", + "radicchio", + "shallots", + "anchovy paste", + "garlic cloves", + "white wine", + "unsalted butter", + "chopped fresh thyme", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 32267, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "diced tomatoes", + "pork sausages", + "eggs", + "grated parmesan cheese", + "chopped onion", + "fennel seeds", + "lasagna noodles", + "garlic", + "italian seasoning", + "tomato sauce", + "ricotta cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 24230, + "cuisine": "spanish", + "ingredients": [ + "tumeric", + "green onions", + "salt", + "shrimp", + "mussels", + "minced garlic", + "lemon wedge", + "linguisa", + "onions", + "arborio rice", + "olive oil", + "paprika", + "fat skimmed chicken broth", + "saffron threads", + "pepper", + "dry white wine", + "white fleshed fish", + "red bell pepper" + ] + }, + { + "id": 1608, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "low salt chicken broth", + "chopped fresh thyme", + "garlic cloves", + "grated parmesan cheese", + "polenta" + ] + }, + { + "id": 32395, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "baby spinach", + "ricotta", + "black pepper", + "lasagna noodles", + "italian eggplant", + "onions", + "water", + "parmigiano reggiano cheese", + "salt", + "plum tomatoes", + "fresh basil", + "large egg yolks", + "large garlic cloves", + "garlic cloves" + ] + }, + { + "id": 47154, + "cuisine": "french", + "ingredients": [ + "frozen pastry puff sheets", + "anchovy fillets", + "olive oil", + "salt", + "black pepper", + "kalamata", + "chopped fresh thyme", + "onions" + ] + }, + { + "id": 47072, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "water", + "salt", + "black pepper", + "hot pepper sauce", + "ketchup", + "garlic powder", + "mayonaise", + "white pepper", + "paprika" + ] + }, + { + "id": 12974, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "sharp cheddar cheese", + "lasagna noodles", + "salsa", + "sour cream", + "eggs", + "chili powder", + "scallions", + "guacamole", + "ricotta", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 27972, + "cuisine": "british", + "ingredients": [ + "calimyrna figs", + "grated lemon peel", + "brandy", + "chopped pecans", + "brown sugar", + "mincemeat", + "refrigerated piecrusts", + "gala apples" + ] + }, + { + "id": 43772, + "cuisine": "mexican", + "ingredients": [ + "whole wheat flour", + "ancho powder", + "taco seasoning", + "avocado", + "boneless skinless chicken breasts", + "purple onion", + "sour cream", + "jalapeno chilies", + "cilantro", + "oil", + "cabbage leaves", + "lime wedges", + "salt", + "corn tortillas" + ] + }, + { + "id": 17927, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "tomato sauce", + "garlic powder", + "diced tomatoes", + "green chilies", + "ground cumin", + "ground ginger", + "kosher salt", + "lime wedges", + "salsa", + "sour cream", + "tri-tip roast", + "white onion", + "ground black pepper", + "paprika", + "garlic cloves", + "fresh tomatoes", + "shredded cheddar cheese", + "worcestershire sauce", + "cayenne pepper", + "corn tortillas" + ] + }, + { + "id": 35026, + "cuisine": "japanese", + "ingredients": [ + "wakame", + "vegetable oil", + "scallions", + "baby turnips", + "large egg yolks", + "maitake mushrooms", + "toasted sesame seeds", + "reduced sodium soy sauce", + "freshly ground pepper", + "soba", + "kosher salt", + "ginger", + "garlic cloves" + ] + }, + { + "id": 23676, + "cuisine": "french", + "ingredients": [ + "rosemary sprigs", + "extra-virgin olive oil", + "bay leaf", + "tomatoes", + "zucchini", + "red bell pepper", + "eggplant", + "garlic cloves", + "onions", + "fresh basil", + "yellow bell pepper", + "thyme sprigs" + ] + }, + { + "id": 7610, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "butter", + "flour tortillas", + "water", + "white sugar", + "brown sugar", + "apple pie filling" + ] + }, + { + "id": 9749, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "small red potato", + "fat free milk", + "salt", + "extra-virgin olive oil", + "parmigiano reggiano cheese" + ] + }, + { + "id": 45504, + "cuisine": "brazilian", + "ingredients": [ + "water", + "vegetable oil", + "large shrimp", + "cooked rice", + "green bell pepper, slice", + "coconut milk", + "cod", + "lime juice", + "garlic", + "ragu old world style pasta sauc", + "ground red pepper", + "onions" + ] + }, + { + "id": 3479, + "cuisine": "spanish", + "ingredients": [ + "short-grain rice", + "green pepper", + "mussels", + "green peas", + "saffron", + "chicken stock", + "garlic", + "clams", + "lobster", + "chicken thighs" + ] + }, + { + "id": 38082, + "cuisine": "indian", + "ingredients": [ + "grated coconut", + "jaggery", + "extract" + ] + }, + { + "id": 361, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "olive oil", + "purple onion", + "pinto beans", + "lime", + "poblano peppers", + "taco seasoning", + "ground cumin", + "lime juice", + "ground black pepper", + "salt", + "chopped cilantro", + "cauliflower", + "cherry tomatoes", + "green onions", + "garlic cloves" + ] + }, + { + "id": 18584, + "cuisine": "thai", + "ingredients": [ + "palm sugar", + "coconut cream", + "white rice", + "black rice", + "water", + "vanilla extract" + ] + }, + { + "id": 6531, + "cuisine": "irish", + "ingredients": [ + "Baileys Irish Cream Liqueur", + "sugar", + "vanilla", + "eggs", + "flour", + "unsalted butter", + "baking chocolate" + ] + }, + { + "id": 42966, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "chopped fresh thyme", + "shiitake mushroom caps", + "fat free less sodium chicken broth", + "parmigiano reggiano cheese", + "green peas", + "minced garlic", + "dry white wine", + "extra-virgin olive oil", + "arborio rice", + "finely chopped onion", + "butter" + ] + }, + { + "id": 44228, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "butter", + "turkey breast", + "dried thyme", + "fresh lemon juice", + "canned chicken broth", + "all-purpose flour", + "chopped fresh chives", + "sliced mushrooms" + ] + }, + { + "id": 17899, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "yoghurt", + "cardamom", + "cashew nuts", + "eggs", + "leaves", + "salt", + "chicken pieces", + "ground paprika", + "garam masala", + "oil", + "onions", + "tomatoes", + "cream", + "chili powder", + "gram flour", + "ground turmeric" + ] + }, + { + "id": 25269, + "cuisine": "italian", + "ingredients": [ + "unflavored gelatin", + "ground black pepper", + "strawberries", + "water", + "whipping cream", + "sugar", + "balsamic vinegar", + "milk", + "vanilla extract" + ] + }, + { + "id": 48927, + "cuisine": "italian", + "ingredients": [ + "salt", + "broccoli florets", + "garlic cloves", + "butter", + "pancetta", + "grated lemon zest" + ] + }, + { + "id": 5422, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "dry white wine", + "salt", + "allspice", + "olive oil", + "parsley", + "onions", + "tomato paste", + "ground black pepper", + "lemon", + "dried mushrooms", + "tomatoes", + "bay leaves", + "garlic", + "chicken" + ] + }, + { + "id": 36671, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "ground nutmeg", + "Amaretti Cookies", + "dried currants", + "unsalted butter", + "strawberries", + "sugar", + "large egg yolks", + "vanilla extract", + "dark corn syrup", + "whipping cream", + "grated lemon peel" + ] + }, + { + "id": 45480, + "cuisine": "vietnamese", + "ingredients": [ + "chicken thighs", + "lime", + "rice noodles" + ] + }, + { + "id": 28276, + "cuisine": "italian", + "ingredients": [ + "water", + "garlic", + "garlic cloves", + "clams", + "dry white wine", + "squid", + "flat leaf parsley", + "olive oil", + "salt", + "country bread", + "tomatoes", + "red pepper flakes", + "filet" + ] + }, + { + "id": 44265, + "cuisine": "italian", + "ingredients": [ + "hot pepperoni", + "basil leaves", + "Stonefire Italian Thin Pizza Crust", + "cherry tomatoes", + "salt", + "chili flakes", + "pizza sauce", + "smoked gouda", + "olive oil", + "buffalo mozarella" + ] + }, + { + "id": 11964, + "cuisine": "filipino", + "ingredients": [ + "water", + "lard", + "garlic", + "chicken", + "vinegar", + "peppercorns", + "salt" + ] + }, + { + "id": 10022, + "cuisine": "italian", + "ingredients": [ + "powdered sugar", + "granulated sugar", + "fat free frozen top whip", + "large egg whites", + "large eggs", + "roasted hazelnuts", + "semisweet chocolate", + "unsweetened cocoa powder", + "fat free milk", + "cooking spray" + ] + }, + { + "id": 24009, + "cuisine": "irish", + "ingredients": [ + "black pepper", + "chopped celery", + "green split peas", + "leeks", + "pearl barley", + "fat free less sodium chicken broth", + "salt", + "turnips", + "sliced carrots", + "leg of lamb" + ] + }, + { + "id": 42131, + "cuisine": "japanese", + "ingredients": [ + "Angostura bitters", + "cognac", + "lemon peel", + "orgeat syrup" + ] + }, + { + "id": 8009, + "cuisine": "vietnamese", + "ingredients": [ + "cold water", + "lime", + "jalapeno chilies", + "cinnamon", + "yellow onion", + "mung bean sprouts", + "sugar", + "coriander seeds", + "shallots", + "cilantro leaves", + "cardamom", + "canola oil", + "kosher salt", + "hoisin sauce", + "spices", + "dried rice noodles", + "garlic chili sauce", + "chicken", + "fennel seeds", + "fresh ginger", + "basil leaves", + "star anise", + "scallions", + "asian fish sauce" + ] + }, + { + "id": 23797, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "portabello mushroom", + "chile sauce", + "silken tofu", + "rice vinegar", + "soy sauce", + "vegetable broth", + "cabbage", + "green onions", + "citric acid powder" + ] + }, + { + "id": 34510, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "garlic", + "corn starch", + "long grain white rice", + "chicken broth", + "cayenne", + "chopped onion", + "chutney", + "bananas", + "salt", + "cucumber", + "ground cumin", + "dried currants", + "nonfat yogurt", + "lamb", + "salad oil" + ] + }, + { + "id": 26174, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "water", + "salt", + "green beans", + "black pepper", + "balsamic vinegar", + "fresh lemon juice", + "peppercorns", + "fresh basil", + "olive oil", + "garlic cloves", + "ripe olives", + "red leaf lettuce", + "fat-free chicken broth", + "halibut steak", + "olive oil flavored cooking spray" + ] + }, + { + "id": 335, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "cinnamon", + "curds", + "coriander", + "clove", + "chili powder", + "rice", + "onions", + "potatoes", + "salt", + "ghee", + "arhar dal", + "asafoetida", + "chilli paste", + "mustard seeds", + "ground turmeric" + ] + }, + { + "id": 25862, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "cooking spray", + "salt", + "large eggs", + "butter", + "corn starch", + "granulated sugar", + "whole milk", + "cooki vanilla wafer", + "powdered sugar", + "half & half", + "vanilla extract" + ] + }, + { + "id": 13903, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "green onions", + "white sugar", + "fresh ginger", + "sesame oil", + "rib eye steaks", + "sesame seeds", + "garlic cloves", + "black pepper", + "rice wine", + "pears" + ] + }, + { + "id": 612, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "salt", + "sugar", + "apples", + "chopped pecans", + "ground cinnamon", + "vegetable oil", + "all-purpose flour", + "baking soda", + "vanilla extract" + ] + }, + { + "id": 2278, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "sesame oil", + "garlic", + "sake", + "flour", + "ground pork", + "gyoza wrappers", + "pepper", + "spices", + "salt", + "sugar", + "green onions", + "ginger", + "cabbage" + ] + }, + { + "id": 48077, + "cuisine": "italian", + "ingredients": [ + "italian meatballs", + "garlic powder", + "salt", + "italian seasoning", + "mozzarella cheese", + "marinara sauce", + "ground beef", + "eggs", + "grated parmesan cheese", + "dry bread crumbs", + "pepper", + "worcestershire sauce", + "onions" + ] + }, + { + "id": 33366, + "cuisine": "southern_us", + "ingredients": [ + "worcestershire sauce", + "salt", + "garlic cloves", + "cider vinegar", + "dry mustard", + "lemon slices", + "onions", + "ketchup", + "paprika", + "maple syrup", + "fresh lemon juice", + "butter", + "crushed red pepper", + "orange juice" + ] + }, + { + "id": 24829, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "vegetable oil", + "red bell pepper", + "sake", + "mushrooms", + "beef sirloin", + "ground black pepper", + "tamari soy sauce", + "green bell pepper", + "mirin", + "salt" + ] + }, + { + "id": 1426, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "salt", + "vinegar", + "water", + "white sugar", + "collard greens", + "bacon" + ] + }, + { + "id": 1910, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "cilantro", + "ground lamb", + "water", + "onions", + "mild curry paste", + "garlic", + "vegetable oil", + "frozen peas" + ] + }, + { + "id": 3810, + "cuisine": "greek", + "ingredients": [ + "grape tomatoes", + "olive oil", + "white wine vinegar", + "garlic cloves", + "sugar", + "ground black pepper", + "salt", + "pitted kalamata olives", + "feta cheese", + "purple onion", + "large shrimp", + "water", + "yellow bell pepper", + "english cucumber" + ] + }, + { + "id": 26666, + "cuisine": "irish", + "ingredients": [ + "cocktail cherries", + "sweet vermouth", + "Irish whiskey" + ] + }, + { + "id": 27344, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "salt", + "lime", + "cilantro", + "cumin", + "black pepper", + "canola oil cooking spray", + "skirt steak", + "jalapeno chilies", + "garlic" + ] + }, + { + "id": 27379, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "corn-on-the-cob", + "lime", + "salt", + "butter", + "coriander", + "feta cheese", + "cayenne pepper" + ] + }, + { + "id": 28173, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "vegetable oil", + "extra-virgin olive oil", + "ground cumin", + "poblano peppers", + "heavy cream", + "corn tortillas", + "ground black pepper", + "tomatillos", + "garlic cloves", + "white onion", + "jalapeno chilies", + "cilantro", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 7487, + "cuisine": "irish", + "ingredients": [ + "olive oil", + "ground turkey", + "chicken broth", + "potatoes", + "frozen peas", + "cauliflower", + "salt and ground black pepper", + "onions", + "low sodium worcestershire sauce", + "carrots" + ] + }, + { + "id": 45703, + "cuisine": "british", + "ingredients": [ + "vegetable oil", + "crushed tomatoes", + "potato flakes", + "shredded cheddar cheese", + "salt", + "lean ground beef", + "onions" + ] + }, + { + "id": 1040, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger root", + "baby spinach", + "tamari soy sauce", + "water", + "mushrooms", + "vegetable broth", + "oil", + "wakame", + "extra firm tofu", + "extra-virgin olive oil", + "scallions", + "miso paste", + "sliced carrots", + "garlic" + ] + }, + { + "id": 21379, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "onions", + "angel hair", + "tomatoes with juice", + "olive oil", + "garlic", + "vegetables", + "chicken" + ] + }, + { + "id": 29, + "cuisine": "cajun_creole", + "ingredients": [ + "louisiana hot sauce", + "ground black pepper", + "large garlic cloves", + "apples", + "beer", + "dried thyme", + "vegetable oil", + "turkey", + "crab boil", + "cumin", + "garlic powder", + "butter", + "paprika", + "creole seasoning", + "kosher salt", + "onion powder", + "worcestershire sauce", + "cayenne pepper", + "dried oregano" + ] + }, + { + "id": 6753, + "cuisine": "italian", + "ingredients": [ + "boneless chicken skinless thigh", + "salt", + "pepper", + "marinara sauce", + "pesto", + "chees fresh mozzarella" + ] + }, + { + "id": 40919, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "shredded cheese", + "large eggs", + "cilantro", + "flour tortillas", + "salsa", + "veggies" + ] + }, + { + "id": 40010, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "butter", + "cocoa powder", + "evaporated milk", + "vanilla extract", + "white sugar", + "sugar", + "ice water", + "cornmeal", + "eggs", + "flour", + "salt" + ] + }, + { + "id": 10465, + "cuisine": "irish", + "ingredients": [ + "back bacon rashers", + "cooking apples", + "potatoes", + "Kerrygold Pure Irish Butter", + "chives" + ] + }, + { + "id": 24063, + "cuisine": "southern_us", + "ingredients": [ + "water", + "garlic", + "celery", + "black pepper", + "lean ground beef", + "chopped pecans", + "onions", + "crawfish", + "butter", + "red bell pepper", + "long grain white rice", + "green bell pepper", + "green onions", + "creole seasoning", + "fresh parsley" + ] + }, + { + "id": 47931, + "cuisine": "italian", + "ingredients": [ + "boneless chuck roast", + "garlic", + "tomatoes" + ] + }, + { + "id": 35086, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "extra-virgin olive oil", + "basmati rice", + "fat free less sodium chicken broth", + "red wine vinegar", + "green beans", + "grape tomatoes", + "green onions", + "salt", + "water", + "pecorino romano cheese", + "olive oil flavored cooking spray" + ] + }, + { + "id": 41378, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "soy sauce", + "chili", + "garlic", + "baby bok choy", + "lime juice", + "vegetables", + "coconut milk", + "brown sugar", + "fresh coriander", + "cherry tomatoes", + "fresh mushrooms", + "kaffir lime leaves", + "red chili peppers", + "lemongrass", + "soft tofu", + "galangal" + ] + }, + { + "id": 492, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "garlic cloves", + "red kidnei beans, rins and drain", + "diced tomatoes", + "ground cumin", + "green bell pepper", + "lean ground beef", + "onions", + "pepper", + "salt" + ] + }, + { + "id": 5487, + "cuisine": "irish", + "ingredients": [ + "rolled oats", + "salt", + "cream of tartar", + "baking soda", + "dark molasses", + "buttermilk", + "whole wheat flour", + "all-purpose flour" + ] + }, + { + "id": 45635, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "vegetable oil", + "gingerroot", + "ground cumin", + "scallion greens", + "lump crab meat", + "large garlic cloves", + "coconut milk", + "red chili peppers", + "coarse salt", + "black mustard seeds", + "black peppercorns", + "coriander seeds", + "cilantro sprigs", + "onions" + ] + }, + { + "id": 46542, + "cuisine": "chinese", + "ingredients": [ + "szechwan peppercorns", + "peanut oil", + "chili flakes", + "garlic", + "ginger", + "chili pepper", + "salt" + ] + }, + { + "id": 31112, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "green tomatoes", + "panko", + "all-purpose flour", + "olive oil", + "salt", + "egg whites", + "white cornmeal" + ] + }, + { + "id": 25193, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "balsamic vinegar", + "orzo", + "dried basil", + "butter", + "feta cheese crumbles", + "minced garlic", + "baby spinach", + "salt", + "fresh tomatoes", + "olive oil", + "crushed red pepper flakes" + ] + }, + { + "id": 27192, + "cuisine": "indian", + "ingredients": [ + "unsalted butter" + ] + }, + { + "id": 33809, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ginger", + "varnish clams", + "sugar", + "rice wine", + "scallions", + "cooking oil", + "garlic", + "red chili peppers", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 30149, + "cuisine": "southern_us", + "ingredients": [ + "cream cheese", + "white sugar", + "butter", + "chopped pecans", + "white cake mix", + "crushed pineapples in juice", + "vanilla extract", + "confectioners sugar" + ] + }, + { + "id": 2672, + "cuisine": "mexican", + "ingredients": [ + "boneless chicken skinless thigh", + "chipotles in adobo", + "garlic", + "lime juice", + "chopped cilantro fresh", + "hellmann' or best food real mayonnais" + ] + }, + { + "id": 9088, + "cuisine": "brazilian", + "ingredients": [ + "red chili peppers", + "prawns", + "fish stock", + "coconut milk", + "palm oil", + "calamari", + "cutlet", + "salt", + "tomatoes", + "lime", + "red capsicum", + "chopped parsley", + "black pepper", + "capsicum", + "garlic", + "onions" + ] + }, + { + "id": 24242, + "cuisine": "moroccan", + "ingredients": [ + "lemon", + "kosher salt", + "extra-virgin olive oil" + ] + }, + { + "id": 32645, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "panko", + "cod fillets", + "Tabasco Pepper Sauce", + "chopped celery", + "sugar", + "unsalted butter", + "green onions", + "worcestershire sauce", + "all-purpose flour", + "cider vinegar", + "dijon mustard", + "meat", + "bacon", + "ground mustard", + "mayonaise", + "ground black pepper", + "Ritz Crackers", + "vegetable oil", + "salt" + ] + }, + { + "id": 44974, + "cuisine": "italian", + "ingredients": [ + "balsamic vinegar", + "figs", + "goat cheese" + ] + }, + { + "id": 9490, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "ground black pepper", + "all-purpose flour", + "veal shanks", + "plum tomatoes", + "celery ribs", + "horseradish", + "vegetable oil", + "yellow onion", + "flat leaf parsley", + "veal stock", + "kosher salt", + "dry red wine", + "garlic cloves", + "bay leaf", + "fresh rosemary", + "fresh thyme", + "grated lemon zest", + "carrots" + ] + }, + { + "id": 13564, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "large eggs", + "buttermilk", + "canola oil", + "fresh basil", + "ground black pepper", + "green tomatoes", + "fresh tarragon", + "yellow corn meal", + "lime", + "chopped fresh chives", + "sea salt", + "mayonaise", + "dijon mustard", + "kirby cucumbers", + "all-purpose flour" + ] + }, + { + "id": 42764, + "cuisine": "indian", + "ingredients": [ + "sugar", + "baking powder", + "oil", + "baking soda", + "salt", + "cumin", + "milk", + "butter", + "coriander", + "yoghurt", + "all-purpose flour" + ] + }, + { + "id": 13802, + "cuisine": "brazilian", + "ingredients": [ + "water", + "margarine", + "eggs", + "active dry yeast", + "bread flour", + "sugar", + "salt", + "anise seed", + "milk", + "corn flour" + ] + }, + { + "id": 26411, + "cuisine": "italian", + "ingredients": [ + "mint", + "dijon mustard", + "purple onion", + "olive oil", + "red wine vinegar", + "garlic cloves", + "kosher salt", + "cannellini beans", + "tuna packed in olive oil", + "ground black pepper", + "extra-virgin olive oil", + "Italian bread" + ] + }, + { + "id": 4827, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "serrano chile", + "white onion", + "fresh lime juice", + "garlic cloves", + "water", + "chopped cilantro" + ] + }, + { + "id": 9425, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "diced tomatoes", + "coriander", + "olive oil", + "baby spinach", + "garlic cloves", + "red lentils", + "serrano peppers", + "purple onion", + "ground cumin", + "fresh ginger", + "sea salt", + "coconut milk" + ] + }, + { + "id": 6483, + "cuisine": "southern_us", + "ingredients": [ + "turkey legs", + "hot sauce", + "collard greens", + "red pepper flakes", + "onions", + "chicken broth", + "vinegar", + "garlic cloves", + "pepper", + "salt" + ] + }, + { + "id": 12480, + "cuisine": "mexican", + "ingredients": [ + "ground pork", + "water", + "dried oregano", + "white vinegar", + "garlic", + "crushed red pepper flakes" + ] + }, + { + "id": 13263, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "ground black pepper", + "sea salt", + "flat leaf parsley", + "capers", + "salsa verde", + "cooking spray", + "fat free less sodium beef broth", + "chopped fresh mint", + "fresh dill", + "bread, cut into italian loaf", + "shallots", + "extra-virgin olive oil", + "boneless chuck roast", + "beef", + "stout", + "onions" + ] + }, + { + "id": 19013, + "cuisine": "thai", + "ingredients": [ + "baby bok choy", + "fresh cilantro", + "cooked chicken", + "sliced mushrooms", + "chicken stock", + "water", + "chili paste", + "salt", + "coconut milk", + "fish sauce", + "lemongrass", + "peeled fresh ginger", + "red curry paste", + "white onion", + "lime", + "hot pepper", + "red bell pepper" + ] + }, + { + "id": 41335, + "cuisine": "irish", + "ingredients": [ + "skim milk", + "butter", + "potatoes", + "onions", + "salt and ground black pepper", + "cream cheese", + "shredded cabbage" + ] + }, + { + "id": 47693, + "cuisine": "mexican", + "ingredients": [ + "beef stock", + "salt", + "tamale filling", + "water", + "baking powder", + "lard", + "masa harina", + "dough", + "pork loin", + "sour cream", + "onions", + "corn husks", + "garlic", + "chillies" + ] + }, + { + "id": 25447, + "cuisine": "japanese", + "ingredients": [ + "fresh ginger root", + "tamari soy sauce", + "soft-boiled egg", + "toasted sesame oil", + "broccolini", + "rice noodles", + "togarashi", + "scallions", + "sesame seeds", + "sunflower oil", + "dried shiitake mushrooms", + "konbu", + "yellow miso", + "sweet potatoes", + "salt", + "firm tofu", + "boiling water" + ] + }, + { + "id": 38500, + "cuisine": "italian", + "ingredients": [ + "avocado", + "fine sea salt", + "red wine vinegar", + "red bell pepper", + "black pepper", + "black olives", + "celery ribs", + "extra-virgin olive oil" + ] + }, + { + "id": 4667, + "cuisine": "mexican", + "ingredients": [ + "water", + "cooking spray", + "all-purpose flour", + "large egg whites", + "butter", + "masa harina", + "mozzarella cheese", + "poblano peppers", + "salt", + "corn kernels", + "chili powder", + "garlic cloves" + ] + }, + { + "id": 27191, + "cuisine": "chinese", + "ingredients": [ + "chinese pancakes", + "spring onions", + "rice vinegar", + "sesame seeds", + "cornflour", + "whole chicken", + "brown sugar", + "sunflower oil", + "chinese five-spice powder", + "clear honey", + "plums", + "cucumber" + ] + }, + { + "id": 23378, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "salt", + "sugar", + "vinegar", + "garlic cloves", + "water", + "scallions", + "soy sauce", + "cooking oil", + "medium shrimp" + ] + }, + { + "id": 16274, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "grated lemon zest", + "onions", + "vegetable oil", + "red bell pepper", + "light coconut milk", + "curry paste", + "boneless skinless chicken breasts", + "fresh lemon juice", + "chopped cilantro fresh" + ] + }, + { + "id": 10182, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "dry white wine", + "garlic cloves", + "onions", + "mint", + "pecorino romano cheese", + "juice", + "cold water", + "honeycomb tripe", + "salt", + "fresh mint", + "celery ribs", + "pepper", + "extra-virgin olive oil", + "carrots" + ] + }, + { + "id": 13517, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "bertolli vineyard premium collect marinara with burgundi wine sauc", + "eggs", + "shredded mozzarella cheese", + "spaghetti, cook and drain", + "bread crumb fresh", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 42357, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "spring onions", + "sauce", + "noodles", + "mint", + "water", + "cilantro leaves", + "carrots", + "salad", + "chili pepper", + "lemon", + "soybean sprouts", + "fish sauce", + "knoblauch", + "rice vinegar", + "cucumber" + ] + }, + { + "id": 38998, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "whole milk", + "cooking spray", + "salt", + "ground cinnamon", + "sweet potatoes", + "ground nutmeg", + "butter" + ] + }, + { + "id": 24547, + "cuisine": "italian", + "ingredients": [ + "sweet onion", + "grated parmesan cheese", + "salt", + "swiss chard", + "crushed red pepper flakes", + "toasted pine nuts", + "olive oil", + "ricotta cheese", + "pizza doughs", + "ground nutmeg", + "oil packed dried tomatoes" + ] + }, + { + "id": 10769, + "cuisine": "thai", + "ingredients": [ + "brown sugar", + "broccoli florets", + "coconut milk", + "curry powder", + "carrots", + "chicken", + "sugar pea", + "crushed red pepper flakes", + "onions", + "fish sauce", + "thai basil", + "sliced mushrooms" + ] + }, + { + "id": 46948, + "cuisine": "greek", + "ingredients": [ + "eggs", + "bananas", + "rolled oats", + "greek style plain yogurt", + "brown sugar", + "baking powder", + "baking soda", + "chocolate chips" + ] + }, + { + "id": 16874, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "crushed red pepper flakes", + "liquid", + "pears", + "mung beans", + "thai chile", + "kimchi", + "white vinegar", + "vegetable oil", + "garlic", + "toasted sesame oil", + "kosher salt", + "ground pork", + "scallions" + ] + }, + { + "id": 32176, + "cuisine": "indian", + "ingredients": [ + "water", + "onions", + "ground cumin", + "ground ginger", + "vegetable oil", + "basmati rice", + "red lentils", + "chili", + "chopped cilantro fresh", + "tumeric", + "garlic cloves", + "plum tomatoes" + ] + }, + { + "id": 2614, + "cuisine": "italian", + "ingredients": [ + "peperoncino", + "scallions", + "fresh peas", + "salt", + "onions", + "romaine lettuce", + "extra-virgin olive oil", + "fresh mint", + "zucchini", + "fresh fava bean" + ] + }, + { + "id": 40189, + "cuisine": "italian", + "ingredients": [ + "milk chocolate", + "vegetable oil spray", + "whole milk", + "salt", + "sour cream", + "unflavored gelatin", + "vanilla beans", + "large eggs", + "vegetable oil", + "hot water", + "unsweetened cocoa powder", + "water", + "baking soda", + "baking powder", + "all-purpose flour", + "bittersweet chocolate", + "sugar", + "golden brown sugar", + "coffee", + "vanilla extract", + "heavy whipping cream" + ] + }, + { + "id": 47309, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "minced ginger", + "Shaoxing wine", + "scallions", + "dark soy sauce", + "white pepper", + "large eggs", + "salt", + "sugar", + "minced garlic", + "white rice vinegar", + "peanut oil", + "boneless chicken skinless thigh", + "hoisin sauce", + "chili oil", + "corn starch" + ] + }, + { + "id": 19225, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "shredded Monterey Jack cheese", + "lean ground beef", + "taco seasoning mix", + "salsa" + ] + }, + { + "id": 37646, + "cuisine": "italian", + "ingredients": [ + "water", + "chopped onion", + "cottage cheese", + "egg noodles", + "italian seasoning", + "tomato paste", + "garlic powder", + "ground beef", + "mozzarella cheese", + "diced tomatoes" + ] + }, + { + "id": 24280, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "milk", + "minced onion", + "salt", + "fresh parsley", + "pork", + "ground pepper", + "dry white wine", + "garlic cloves", + "tomato purée", + "olive oil", + "beef stock", + "all-purpose flour", + "onions", + "clove", + "bread crumb fresh", + "beef", + "vegetable oil", + "carrots" + ] + }, + { + "id": 22831, + "cuisine": "filipino", + "ingredients": [ + "water", + "carrots", + "cabbage", + "brown sugar", + "garlic", + "ground beef", + "lumpia wrappers", + "corn starch", + "soy sauce", + "oil", + "onions" + ] + }, + { + "id": 39282, + "cuisine": "italian", + "ingredients": [ + "nutmeg", + "dijon mustard", + "butter", + "all-purpose flour", + "Italian bread", + "black pepper", + "whole milk", + "garlic", + "chopped parsley", + "melted butter", + "grated parmesan cheese", + "white cheddar cheese", + "shredded mozzarella cheese", + "olive oil", + "coarse salt", + "salt", + "gnocchi" + ] + }, + { + "id": 35579, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "extra-virgin olive oil", + "onions", + "plain dry bread crumb", + "lemon wedge", + "baby zucchini", + "grated parmesan cheese", + "salt", + "plum tomatoes", + "ground black pepper", + "chopped fresh thyme", + "garlic cloves" + ] + }, + { + "id": 10222, + "cuisine": "japanese", + "ingredients": [ + "water", + "rice", + "nori", + "mayonaise", + "rice vinegar", + "imitation crab meat", + "sugar", + "nori furikake", + "sour cream", + "salt", + "crabmeat" + ] + }, + { + "id": 34313, + "cuisine": "italian", + "ingredients": [ + "white pepper", + "meyer lemon", + "garlic cloves", + "pea shoots", + "zucchini", + "basil", + "arugula", + "avocado", + "cherries", + "heirloom tomatoes", + "cucumber", + "grapes", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 43039, + "cuisine": "korean", + "ingredients": [ + "tomato paste", + "yellow miso", + "firm tofu", + "toasted sesame seeds", + "sushi rice", + "vegetable oil", + "carrots", + "nori", + "garlic paste", + "large eggs", + "scallions", + "snow peas", + "water", + "salt", + "beansprouts" + ] + }, + { + "id": 39572, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "ground cayenne pepper", + "ground ginger", + "curry powder", + "canola oil", + "kosher salt", + "boneless skinless chicken breast halves", + "granulated garlic", + "white wine vinegar", + "ground cumin" + ] + }, + { + "id": 16514, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "chili powder", + "baked tortilla chips", + "adobo sauce", + "avocado", + "olive oil", + "salt", + "celery", + "onions", + "minced garlic", + "diced tomatoes", + "carrots", + "medium shrimp", + "lower sodium chicken broth", + "white hominy", + "cilantro leaves", + "fresh lime juice", + "ground cumin" + ] + }, + { + "id": 27193, + "cuisine": "italian", + "ingredients": [ + "sun-dried tomatoes", + "florets", + "fresh basil", + "zucchini", + "garlic cloves", + "shiitake", + "linguine", + "olive oil", + "grated parmesan cheese", + "low salt chicken broth" + ] + }, + { + "id": 27670, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "salt", + "pinenuts", + "extra-virgin olive oil", + "fresh basil leaves", + "mozzarella cheese", + "garlic", + "plum tomatoes", + "parmigiano reggiano cheese", + "bocconcini" + ] + }, + { + "id": 9559, + "cuisine": "filipino", + "ingredients": [ + "water", + "sago pearls", + "glutinous rice", + "coconut cream", + "sugar", + "glutinous rice flour", + "jackfruit", + "coconut milk" + ] + }, + { + "id": 34407, + "cuisine": "italian", + "ingredients": [ + "cold water", + "chiles", + "salt", + "garlic cloves", + "black peppercorns", + "olive oil", + "anchovy fillets", + "flat leaf parsley", + "tomato paste", + "baguette", + "white fleshed fish", + "carrots", + "celery ribs", + "stock", + "dry white wine", + "squid", + "onions" + ] + }, + { + "id": 39962, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "fresh mozzarella", + "arugula", + "black pepper", + "grated parmesan cheese", + "chickpeas", + "olive oil", + "pasta shells", + "dried oregano", + "kosher salt", + "balsamic vinegar", + "garlic cloves" + ] + }, + { + "id": 30100, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "wonton wrappers", + "rice vinegar", + "fresh ginger root", + "garlic", + "chopped cilantro fresh", + "extra lean ground beef", + "chili oil", + "onions", + "spinach", + "green onions", + "salt" + ] + }, + { + "id": 36490, + "cuisine": "jamaican", + "ingredients": [ + "baking soda", + "beaten eggs", + "brown sugar", + "cinnamon", + "oil", + "nutmeg", + "flour", + "salt", + "mixed spice", + "vanilla", + "carrots" + ] + }, + { + "id": 29179, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "lime", + "worcestershire sauce", + "tequila", + "kosher salt", + "unsalted butter", + "freshly ground pepper", + "hamburger buns", + "corn", + "chips", + "bbq sauce", + "warm water", + "hot pepper sauce", + "apple cider", + "pork shoulder" + ] + }, + { + "id": 44107, + "cuisine": "mexican", + "ingredients": [ + "ground chipotle chile pepper", + "vegetable oil", + "chipotle peppers", + "avocado", + "lime juice", + "knorr reduc sodium chicken flavor bouillon cube", + "water", + "garlic", + "chopped cilantro fresh", + "sugar", + "sweet onion", + "sour cream" + ] + }, + { + "id": 2597, + "cuisine": "japanese", + "ingredients": [ + "eggs", + "green onions", + "carrots", + "lime", + "soba noodles", + "soy sauce", + "sesame oil", + "toasted sesame seeds", + "honey", + "oil" + ] + }, + { + "id": 36428, + "cuisine": "irish", + "ingredients": [ + "butter", + "lemon zest", + "sugar", + "fresh lemon juice", + "egg yolks" + ] + }, + { + "id": 45228, + "cuisine": "french", + "ingredients": [ + "water", + "cooking spray", + "unsweetened cocoa powder", + "powdered sugar", + "granulated sugar", + "all-purpose flour", + "cream of tartar", + "large egg yolks", + "1% low-fat milk", + "large egg whites", + "vanilla extract" + ] + }, + { + "id": 757, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "shallots", + "veal escalopes", + "olive oil", + "red wine", + "fresh sage", + "butter", + "shiitake", + "all-purpose flour" + ] + }, + { + "id": 19147, + "cuisine": "southern_us", + "ingredients": [ + "dijon mustard", + "butter", + "pepper", + "habanero pepper", + "salt", + "honey", + "teas", + "italian seasoning", + "country ham", + "large eggs", + "paprika" + ] + }, + { + "id": 11329, + "cuisine": "japanese", + "ingredients": [ + "granny smith apples", + "garlic", + "fresh ginger root", + "fresh pineapple", + "orange", + "white sugar", + "soy sauce", + "mirin" + ] + }, + { + "id": 23406, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "reduced sodium chicken broth", + "chopped onion", + "cilantro", + "boneless skinless chicken breasts", + "green chilies" + ] + }, + { + "id": 11060, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "cayenne", + "hot sauce", + "dried oregano", + "water", + "garlic", + "celery", + "black pepper", + "diced tomatoes", + "flavoring", + "black-eyed peas", + "salt", + "onions" + ] + }, + { + "id": 23524, + "cuisine": "korean", + "ingredients": [ + "daikon", + "asian fish sauce", + "water", + "ginger", + "green onions", + "garlic", + "chile powder", + "coarse sea salt", + "cabbage" + ] + }, + { + "id": 23253, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "v8", + "salt", + "ground beef", + "water", + "diced tomatoes", + "chopped onion", + "dried basil", + "garlic", + "shredded cheese", + "pepper", + "shell pasta", + "beef broth", + "dried parsley" + ] + }, + { + "id": 36381, + "cuisine": "french", + "ingredients": [ + "popcorn kernels", + "garlic cloves", + "grapeseed oil", + "celery salt", + "salt", + "unsalted butter", + "herbes de provence" + ] + }, + { + "id": 29210, + "cuisine": "french", + "ingredients": [ + "extra-virgin olive oil", + "arugula", + "sherry vinegar", + "Italian bread", + "roquefort", + "dijon style mustard", + "unsalted butter", + "frisee" + ] + }, + { + "id": 49066, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "garlic", + "canola oil", + "green onions", + "salsa", + "shredded cheddar cheese", + "salt", + "tomatoes", + "chicken breasts", + "tortilla chips" + ] + }, + { + "id": 37802, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "olive oil", + "garlic", + "oil", + "black pepper", + "vanilla powder", + "orange juice", + "peppercorns", + "white vinegar", + "honey", + "apples", + "chinese five-spice powder", + "chicken", + "soy sauce", + "fennel", + "salt", + "cashew nuts" + ] + }, + { + "id": 40383, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "rice wine", + "green beans", + "egg noodles", + "red pepper", + "chicken thighs", + "shiitake", + "vegetable oil", + "ginger root", + "chicken stock", + "spring onions", + "cornflour" + ] + }, + { + "id": 10949, + "cuisine": "southern_us", + "ingredients": [ + "cheese", + "creole seasoning", + "milk", + "all-purpose flour", + "frozen chopped spinach", + "garlic", + "butter", + "hot sauce" + ] + }, + { + "id": 14076, + "cuisine": "italian", + "ingredients": [ + "white wine", + "ground black pepper", + "salt", + "ground beef", + "olive oil", + "butter", + "diced celery", + "diced onions", + "ground nutmeg", + "2% reduced-fat milk", + "carrots", + "water", + "italian plum tomatoes", + "cayenne pepper" + ] + }, + { + "id": 28344, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "black-eyed peas", + "hand", + "collards", + "black pepper", + "slab bacon", + "garlic", + "long grain white rice", + "homemade chicken stock", + "leaves", + "crushed red pepper flakes", + "onions", + "olive oil", + "ground black pepper", + "salt" + ] + }, + { + "id": 25989, + "cuisine": "mexican", + "ingredients": [ + "red beans", + "corn tortillas", + "large eggs", + "non-fat sour cream", + "sliced green onions", + "cooking spray", + "salsa", + "ground cumin", + "garlic powder", + "stewed tomatoes", + "chopped cilantro fresh" + ] + }, + { + "id": 38740, + "cuisine": "korean", + "ingredients": [ + "water", + "garlic", + "pears", + "jackfruit", + "sesame oil", + "tamari soy sauce", + "agave nectar", + "Bragg Liquid Aminos", + "white wine", + "ginger", + "onions" + ] + }, + { + "id": 14894, + "cuisine": "italian", + "ingredients": [ + "dry yeast", + "cornmeal", + "warm water", + "salt", + "sugar", + "cooking spray", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 19262, + "cuisine": "french", + "ingredients": [ + "olive oil", + "basil leaves", + "salt", + "ground black pepper", + "garlic", + "onions", + "eggplant", + "linguine", + "red bell pepper", + "crushed tomatoes", + "zucchini", + "wine vinegar" + ] + }, + { + "id": 32609, + "cuisine": "chinese", + "ingredients": [ + "long-grain rice", + "soy sauce", + "fresh ginger" + ] + }, + { + "id": 5614, + "cuisine": "french", + "ingredients": [ + "pernod", + "escargot", + "butter", + "puff pastry cups", + "fresh herbs" + ] + }, + { + "id": 48350, + "cuisine": "italian", + "ingredients": [ + "vodka", + "Italian parsley leaves", + "anchovy fillets", + "ground black pepper", + "diced tomatoes", + "spaghetti", + "olive oil", + "sea salt", + "garlic cloves", + "red chili peppers", + "lemon", + "extra-virgin olive oil" + ] + }, + { + "id": 25717, + "cuisine": "french", + "ingredients": [ + "salmon fillets", + "leeks", + "salt", + "crab", + "butter", + "fresh chives", + "lemon wedge", + "dry vermouth", + "pepper", + "whipping cream" + ] + }, + { + "id": 24114, + "cuisine": "greek", + "ingredients": [ + "pita bread", + "coarse salt", + "hothouse cucumber", + "plain yogurt", + "fresh lemon juice", + "olive oil", + "sour cream", + "fresh dill", + "garlic cloves" + ] + }, + { + "id": 18216, + "cuisine": "southern_us", + "ingredients": [ + "lump crab meat", + "jicama", + "hot sauce", + "avocado", + "lime juice", + "purple onion", + "cucumber", + "crawfish", + "chile pepper", + "shrimp", + "ketchup", + "olive oil", + "salt", + "chopped cilantro" + ] + }, + { + "id": 43780, + "cuisine": "italian", + "ingredients": [ + "vegetable oil cooking spray", + "ground turkey breast", + "nonfat ricotta cheese", + "part-skim mozzarella", + "garlic powder", + "whole wheat lasagna noodles", + "nutmeg", + "tomato sauce", + "mushrooms", + "italian seasoning", + "fresh spinach", + "ground black pepper", + "chopped onion" + ] + }, + { + "id": 40877, + "cuisine": "brazilian", + "ingredients": [ + "rice", + "vegetable oil", + "fresh chevre", + "bananas", + "ground beef" + ] + }, + { + "id": 39711, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "lemon peel", + "chopped fresh chives", + "extra-virgin olive oil", + "onions", + "capers", + "zucchini", + "sea bass fillets", + "garlic cloves", + "saffron", + "green olives", + "fennel bulb", + "basil leaves", + "fine sea salt", + "olives", + "celery ribs", + "green bell pepper", + "fresh thyme", + "sea salt", + "red bell pepper" + ] + }, + { + "id": 35759, + "cuisine": "mexican", + "ingredients": [ + "white corn tortillas", + "white onion", + "queso fresco", + "plum tomatoes", + "crema mexicana", + "baking soda", + "large garlic cloves", + "pasilla chiles", + "water", + "epazote", + "avocado", + "guajillo chiles", + "corn oil", + "low salt chicken broth" + ] + }, + { + "id": 46854, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "light soy sauce", + "boneless skinless chicken breasts", + "oil", + "soy sauce", + "Shaoxing wine", + "roasted peanuts", + "black vinegar", + "red chili peppers", + "cooking oil", + "garlic", + "corn starch", + "dark soy sauce", + "water", + "peeled fresh ginger", + "scallions" + ] + }, + { + "id": 13818, + "cuisine": "mexican", + "ingredients": [ + "milk", + "all-purpose flour", + "cotija", + "garlic", + "tequila", + "avocado", + "butter", + "lemon juice", + "cream", + "salt", + "onions" + ] + }, + { + "id": 7832, + "cuisine": "french", + "ingredients": [ + "salted butter", + "crème fraîche", + "mint", + "heavy cream", + "orange zest", + "shallots", + "garlic cloves", + "parsley sprigs", + "ginger" + ] + }, + { + "id": 10312, + "cuisine": "italian", + "ingredients": [ + "great northern beans", + "nutritional yeast", + "diced tomatoes", + "chopped parsley", + "sugar", + "cayenne", + "garlic", + "oregano", + "spinach", + "ground black pepper", + "basil", + "onions", + "tomato paste", + "eggplant", + "zucchini", + "salt" + ] + }, + { + "id": 6949, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato paste", + "brown rice", + "yellow onion", + "fresh tomatoes", + "sea salt", + "celery", + "boneless skinless chicken breasts", + "garlic", + "organic chicken broth", + "green bell pepper", + "cajun seasoning", + "shrimp" + ] + }, + { + "id": 44129, + "cuisine": "japanese", + "ingredients": [ + "tomatoes", + "amchur", + "salt", + "oil", + "sugar", + "coriander powder", + "okra", + "ground turmeric", + "garlic paste", + "garam masala", + "green chilies", + "onions", + "coconut", + "chili powder", + "cumin seed", + "ground cumin" + ] + }, + { + "id": 22706, + "cuisine": "vietnamese", + "ingredients": [ + "garlic powder", + "fish sauce", + "dried red chile peppers", + "rice vinegar", + "water", + "white sugar" + ] + }, + { + "id": 31546, + "cuisine": "filipino", + "ingredients": [ + "sambal ulek", + "water", + "grated lemon zest", + "onions", + "low sodium soy sauce", + "black pepper", + "garlic", + "carrots", + "ketchup", + "large eggs", + "diced celery", + "canola oil", + "spring roll wrappers", + "cider vinegar", + "salt", + "ground turkey" + ] + }, + { + "id": 20895, + "cuisine": "cajun_creole", + "ingredients": [ + "heavy cream", + "yellow onion", + "shrimp", + "unsalted butter", + "shells", + "garlic cloves", + "plum tomatoes", + "bread crumb fresh", + "dry sherry", + "cayenne pepper", + "flat leaf parsley", + "fish stock", + "salt", + "carrots" + ] + }, + { + "id": 7412, + "cuisine": "mexican", + "ingredients": [ + "watercress", + "fresh lime juice", + "coarse kosher salt", + "avocado" + ] + }, + { + "id": 38397, + "cuisine": "mexican", + "ingredients": [ + "fresh coriander", + "purple onion", + "black pepper", + "chopped tomatoes", + "crème fraîche", + "wensleydale", + "lime", + "salt", + "mozzarella cheese", + "flour tortillas", + "green chilies" + ] + }, + { + "id": 35159, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "bacon slices", + "green onions", + "sour cream", + "flour tortillas", + "salsa", + "avocado", + "vegetable oil", + "medium shrimp" + ] + }, + { + "id": 11361, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "enchilada sauce", + "salt", + "chicken breasts", + "cheddar cheese", + "cream cheese" + ] + }, + { + "id": 11483, + "cuisine": "italian", + "ingredients": [ + "dried currants", + "ground black pepper", + "fine sea salt", + "pitted kalamata olives", + "swordfish steaks", + "garlic", + "plum tomatoes", + "capers", + "pinenuts", + "dry white wine", + "all-purpose flour", + "yellow summer squash", + "sweet onion", + "extra-virgin olive oil", + "fresh basil leaves" + ] + }, + { + "id": 20858, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "peas", + "green chilies", + "onions", + "mustard", + "potatoes", + "salt", + "carrots", + "clove", + "chana dal", + "urad dal", + "oil", + "curry leaves", + "ginger", + "cilantro leaves", + "jeera" + ] + }, + { + "id": 17901, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "honey", + "balsamic vinegar", + "cilantro leaves", + "black beans", + "jalapeno chilies", + "purple onion", + "tostada shells", + "olive oil", + "shredded lettuce", + "white corn", + "orange bell pepper", + "non-fat sour cream" + ] + }, + { + "id": 48930, + "cuisine": "greek", + "ingredients": [ + "grape leaves", + "lemon", + "rice", + "ground beef", + "olive oil", + "salt", + "fresh mint", + "ground lamb", + "homemade chicken stock", + "garlic", + "carrots", + "onions", + "ground black pepper", + "grated lemon zest", + "flat leaf parsley" + ] + }, + { + "id": 28314, + "cuisine": "italian", + "ingredients": [ + "large eggs", + "salt", + "boneless skinless chicken breast halves", + "olive oil", + "cooking spray", + "bread slices", + "parmigiano-reggiano cheese", + "reduced fat milk", + "all-purpose flour", + "dried rosemary", + "ground black pepper", + "lemon wedge", + "marjoram" + ] + }, + { + "id": 4876, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "peas", + "onions", + "saffron threads", + "olive oil", + "salt", + "arborio rice", + "hot spanish paprika", + "red bell pepper", + "reduced sodium chicken broth", + "garlic", + "large shrimp" + ] + }, + { + "id": 4538, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "garlic", + "fresh rosemary", + "fresh thyme leaves", + "lemon juice", + "cream sherry", + "salt", + "pepper", + "dry red wine", + "leg of lamb" + ] + }, + { + "id": 47477, + "cuisine": "cajun_creole", + "ingredients": [ + "french bread", + "garlic cloves", + "parmesan cheese", + "worcestershire sauce", + "onions", + "jalapeno chilies", + "creole seasoning", + "mayonaise", + "butter", + "lemon juice" + ] + }, + { + "id": 16323, + "cuisine": "mexican", + "ingredients": [ + "reduced fat monterey jack cheese", + "water", + "reduced sodium reduced fat cream of mushroom soup", + "vegetable oil cooking spray", + "salt", + "green chile", + "paprika", + "skim milk", + "long-grain rice" + ] + }, + { + "id": 9622, + "cuisine": "southern_us", + "ingredients": [ + "pastry", + "fresh basil", + "green onions", + "tomatoes", + "parmesan cheese", + "mayonaise", + "salt" + ] + }, + { + "id": 24606, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "ground nutmeg", + "sugar", + "all-purpose flour", + "eggs", + "butter", + "milk" + ] + }, + { + "id": 8103, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "unsalted butter", + "milk", + "all-purpose flour", + "warm water", + "salt", + "active dry yeast", + "white cornmeal" + ] + }, + { + "id": 20036, + "cuisine": "italian", + "ingredients": [ + "water", + "sugar", + "extra-virgin olive oil", + "instant yeast", + "kosher salt", + "bread flour" + ] + }, + { + "id": 9586, + "cuisine": "indian", + "ingredients": [ + "clove", + "butter", + "onions", + "garlic paste", + "curds", + "basmati rice", + "tomatoes", + "green chilies", + "coriander", + "cheese cubes", + "oil" + ] + }, + { + "id": 14341, + "cuisine": "french", + "ingredients": [ + "egg bread", + "butter", + "powdered sugar", + "large eggs", + "star anise", + "sugar", + "whole milk", + "orange liqueur", + "water", + "apricot halves" + ] + }, + { + "id": 35384, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "olive oil", + "red pepper flakes", + "salt", + "bay leaf", + "orange", + "fresh thyme", + "garlic", + "cavatelli", + "fennel seeds", + "pearl onions", + "leeks", + "lamb shoulder", + "celery", + "fresh rosemary", + "ground black pepper", + "red wine", + "sweet peas" + ] + }, + { + "id": 12203, + "cuisine": "mexican", + "ingredients": [ + "yellow onion", + "chili powder", + "cheese dip", + "water", + "taco seasoning", + "diced tomatoes", + "ground beef" + ] + }, + { + "id": 31728, + "cuisine": "japanese", + "ingredients": [ + "lime", + "extra firm tofu", + "soba noodles", + "toasted sesame oil", + "water", + "shiitake", + "togarashi", + "konbu", + "kale", + "tamari soy sauce", + "scallions", + "toasted sesame seeds", + "yellow miso", + "Sriracha", + "dried shiitake mushrooms", + "ginger root" + ] + }, + { + "id": 3768, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "salt", + "chiles", + "baking powder", + "yellow corn meal", + "large eggs", + "all-purpose flour", + "sugar", + "buttermilk" + ] + }, + { + "id": 7854, + "cuisine": "indian", + "ingredients": [ + "fresh green bean", + "dried red chile peppers", + "ground black pepper", + "salt", + "garlic", + "white sugar", + "vegetable oil", + "black mustard seeds" + ] + }, + { + "id": 32436, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "zucchini", + "olive oil", + "butter", + "herbs" + ] + }, + { + "id": 14416, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "fresh lime juice", + "black beans", + "purple onion", + "chopped tomatoes", + "mango", + "corn kernels", + "cilantro leaves" + ] + }, + { + "id": 17132, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "green bell pepper", + "haddock", + "mozzarella cheese", + "butter", + "tomatoes", + "dried basil", + "onions" + ] + }, + { + "id": 10873, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "light soy sauce", + "scallions", + "red chili peppers", + "grated carrot", + "sugar", + "sesame oil", + "noodles", + "lettuce", + "water", + "tomato ketchup" + ] + }, + { + "id": 39268, + "cuisine": "southern_us", + "ingredients": [ + "black peppercorns", + "finely chopped onion", + "bacon", + "greens", + "cider vinegar", + "shallots", + "garlic cloves", + "hot red pepper flakes", + "whole milk", + "all-purpose flour", + "unsalted butter", + "heavy cream", + "California bay leaves" + ] + }, + { + "id": 19971, + "cuisine": "indian", + "ingredients": [ + "coconut", + "baking potatoes", + "gingerroot", + "serrano chile", + "water", + "vegetable oil", + "yellow split peas", + "chopped cilantro fresh", + "eggplant", + "cilantro sprigs", + "cumin seed", + "sweet potatoes", + "salt", + "garlic cloves" + ] + }, + { + "id": 155, + "cuisine": "korean", + "ingredients": [ + "sugar", + "udon", + "sesame oil", + "noodles", + "buckwheat", + "water", + "pork loin", + "corn starch", + "minced garlic", + "potatoes", + "carrots", + "cold water", + "zucchini", + "bean paste", + "onions" + ] + }, + { + "id": 2726, + "cuisine": "italian", + "ingredients": [ + "milk", + "chopped onion", + "elbow macaroni", + "tomato sauce", + "mild Italian sausage", + "canadian bacon", + "sliced black olives", + "fresh mushrooms", + "pepperoni slices", + "pizza sauce", + "shredded mozzarella cheese" + ] + }, + { + "id": 14301, + "cuisine": "british", + "ingredients": [ + "turnips", + "cider vinegar", + "bay leaves", + "garlic", + "fresh rosemary", + "prepared horseradish", + "russet potatoes", + "English mustard", + "olive oil", + "rib roast", + "runny honey", + "black peppercorns", + "unsalted butter", + "sea salt" + ] + }, + { + "id": 19321, + "cuisine": "cajun_creole", + "ingredients": [ + "vegetable oil", + "chopped onion", + "bay leaf", + "dried thyme", + "diced tomatoes", + "garlic cloves", + "catfish fillets", + "cajun seasoning", + "Italian turkey sausage", + "large shrimp", + "chopped green bell pepper", + "all-purpose flour", + "low salt chicken broth" + ] + }, + { + "id": 46019, + "cuisine": "brazilian", + "ingredients": [ + "ground cinnamon", + "egg yolks", + "salt", + "milk", + "butter", + "corn starch", + "sugar", + "vegetable oil", + "all-purpose flour", + "lime zest", + "active dry yeast", + "vanilla extract", + "confectioners sugar" + ] + }, + { + "id": 37855, + "cuisine": "irish", + "ingredients": [ + "bay leaves", + "thick-cut bacon", + "black pepper", + "salt", + "chicken stock", + "yukon gold potatoes", + "pork sausages", + "sweet onion", + "flat leaf parsley" + ] + }, + { + "id": 10916, + "cuisine": "italian", + "ingredients": [ + "radishes", + "anchovy fillets", + "celery ribs", + "white wine vinegar", + "Belgian endive", + "extra-virgin olive oil", + "garlic cloves", + "black pepper", + "salt" + ] + }, + { + "id": 42630, + "cuisine": "southern_us", + "ingredients": [ + "pies", + "caramel syrup", + "whipped topping", + "vanilla pudding", + "bananas" + ] + }, + { + "id": 32001, + "cuisine": "jamaican", + "ingredients": [ + "lime juice", + "large eggs", + "sweetened coconut flakes", + "cream cheese", + "sugar", + "baking soda", + "baking powder", + "salt", + "fresh lime juice", + "lime rind", + "bananas", + "butter", + "all-purpose flour", + "brown sugar", + "fat free milk", + "dark rum", + "vanilla extract", + "chopped pecans" + ] + }, + { + "id": 20376, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "prosciutto", + "baby spinach", + "celery ribs", + "dry vermouth", + "lemon zest", + "scallions", + "arborio rice", + "olive oil", + "grated parmesan cheese", + "lemon juice", + "mint", + "fresh peas", + "salt" + ] + }, + { + "id": 5220, + "cuisine": "french", + "ingredients": [ + "ground ginger", + "white pepper", + "ground cloves", + "grated nutmeg" + ] + }, + { + "id": 29062, + "cuisine": "thai", + "ingredients": [ + "lime rind", + "fresh cilantro", + "light coconut milk", + "bamboo shoots", + "fish sauce", + "fat free less sodium chicken broth", + "olive oil", + "fresh lime juice", + "rice stick noodles", + "straw mushrooms", + "green curry paste", + "corn starch", + "brown sugar", + "water", + "boneless skinless chicken breasts", + "onions" + ] + }, + { + "id": 5085, + "cuisine": "brazilian", + "ingredients": [ + "garlic", + "long-grain rice", + "water", + "hot sauce", + "olive oil", + "pumpkin seeds", + "salt", + "onions" + ] + }, + { + "id": 46045, + "cuisine": "italian", + "ingredients": [ + "ground cloves", + "butter", + "carrots", + "broth", + "ground black pepper", + "garlic", + "rib", + "olive oil", + "dry red wine", + "flat leaf parsley", + "dried lentils", + "italian plum tomatoes", + "salt", + "onions" + ] + }, + { + "id": 44729, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "cilantro", + "cream of chicken soup", + "chicken", + "beef", + "sour cream", + "green chile", + "large eggs" + ] + }, + { + "id": 31841, + "cuisine": "mexican", + "ingredients": [ + "chili beans", + "flour tortillas", + "black olives", + "ground beef", + "black beans", + "diced tomatoes", + "pinto beans", + "shredded Monterey Jack cheese", + "chili seasoning mix", + "shredded cheddar cheese", + "mexicorn", + "sour cream", + "light red kidney beans", + "jalapeno chilies", + "hot sauce", + "onions" + ] + }, + { + "id": 26090, + "cuisine": "thai", + "ingredients": [ + "black pepper", + "oyster sauce", + "fish sauce", + "vegetable oil", + "chicken breasts", + "coriander", + "soy sauce", + "garlic cloves" + ] + }, + { + "id": 43945, + "cuisine": "filipino", + "ingredients": [ + "hoisin sauce", + "garlic", + "noodles", + "soy sauce", + "vegetable oil", + "carrots", + "green onions", + "rice", + "cabbage", + "Sriracha", + "deveined shrimp", + "onions" + ] + }, + { + "id": 6822, + "cuisine": "indian", + "ingredients": [ + "lime rind", + "fresh ginger", + "peanut oil", + "onions", + "plum tomatoes", + "light brown sugar", + "minced garlic", + "jalapeno chilies", + "coconut milk", + "chopped cilantro fresh", + "calamari", + "ground black pepper", + "ground coriander", + "chopped fresh mint", + "fish", + "cooked rice", + "curry powder", + "salt", + "fresh lime juice", + "toasted coconut" + ] + }, + { + "id": 23576, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "buttermilk", + "yellow corn meal", + "large eggs", + "all-purpose flour", + "sugar", + "baking powder", + "extra sharp cheddar cheese", + "unsalted butter", + "salt" + ] + }, + { + "id": 38305, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "pecorino romano cheese", + "part-skim mozzarella", + "large eggs", + "part-skim ricotta cheese", + "kosher salt", + "italian eggplant", + "spinach", + "marinara sauce", + "garlic cloves" + ] + }, + { + "id": 14015, + "cuisine": "japanese", + "ingredients": [ + "honey", + "green onions", + "toasted sesame seeds", + "soy sauce", + "boneless chicken breast", + "garlic", + "sake", + "ground black pepper", + "ginger", + "water", + "mirin", + "corn starch" + ] + }, + { + "id": 23432, + "cuisine": "southern_us", + "ingredients": [ + "vegetable shortening", + "baking soda", + "salt", + "buttermilk", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 20368, + "cuisine": "thai", + "ingredients": [ + "fresh basil", + "salt", + "asian fish sauce", + "lime", + "coconut milk", + "orange", + "freshly ground pepper", + "chicken broth", + "button mushrooms", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 11844, + "cuisine": "japanese", + "ingredients": [ + "sake", + "mirin", + "garlic cloves", + "soy sauce", + "ginger", + "pork belly", + "scallions", + "sugar", + "shallots" + ] + }, + { + "id": 19504, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "onions", + "taco shells", + "salt", + "taco seasoning mix", + "spaghetti squash", + "vegetable oil" + ] + }, + { + "id": 46784, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "russet potatoes", + "large eggs", + "vanilla extract", + "evaporated milk", + "butter", + "pie crust", + "sweet potatoes", + "grated nutmeg" + ] + }, + { + "id": 40023, + "cuisine": "spanish", + "ingredients": [ + "pork", + "peas", + "onions", + "arborio rice", + "lobster", + "salt", + "saffron", + "olive oil", + "garlic", + "boiling water", + "tomatoes", + "chicken breasts", + "mussels, well scrubbed" + ] + }, + { + "id": 10807, + "cuisine": "thai", + "ingredients": [ + "olive oil", + "green onions", + "carrots", + "fresh lime", + "Sriracha", + "garlic", + "large shrimp", + "fish sauce", + "shiitake", + "ginger", + "coconut milk", + "fresh cilantro", + "low sodium chicken broth", + "red curry paste" + ] + }, + { + "id": 30467, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "mint leaves", + "green chilies", + "cinnamon sticks", + "basmati rice", + "garlic paste", + "salt", + "cardamom", + "onions", + "red chili powder", + "yoghurt", + "oil", + "bay leaf", + "chicken", + "clove", + "coriander powder", + "cilantro leaves", + "lemon juice", + "shahi jeera" + ] + }, + { + "id": 32756, + "cuisine": "indian", + "ingredients": [ + "spinach", + "butter", + "onions", + "garam masala", + "mustard seeds", + "ground cumin", + "red lentils", + "chili powder", + "coconut milk", + "water", + "salt", + "ground turmeric" + ] + }, + { + "id": 34575, + "cuisine": "italian", + "ingredients": [ + "swiss chard", + "salt", + "pepper", + "large garlic cloves", + "whole wheat angel hair pasta", + "grated parmesan cheese", + "chopped walnuts", + "olive oil", + "Italian parsley leaves" + ] + }, + { + "id": 19356, + "cuisine": "indian", + "ingredients": [ + "white pepper", + "yoghurt", + "garlic", + "cinnamon sticks", + "clove", + "almonds", + "poppy seeds", + "green chilies", + "onions", + "nutmeg", + "bay leaves", + "ginger", + "cardamom", + "chicken", + "mace", + "unsalted cashews", + "salt", + "ghee" + ] + }, + { + "id": 24516, + "cuisine": "greek", + "ingredients": [ + "mayonaise", + "mahimahi fillet", + "tomatoes", + "extra-virgin olive oil", + "fresh lemon juice", + "mint", + "lemon slices", + "feta cheese crumbles", + "red wine vinegar", + "dill" + ] + }, + { + "id": 40821, + "cuisine": "southern_us", + "ingredients": [ + "white onion", + "garlic powder", + "onion powder", + "beef broth", + "sharp cheddar cheese", + "water", + "bell pepper", + "extra-virgin olive oil", + "cayenne pepper", + "grits", + "crawfish", + "beef", + "butter", + "hot sauce", + "celery", + "black pepper", + "milk", + "green onions", + "garlic", + "creole seasoning" + ] + }, + { + "id": 2015, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "dry bread crumbs", + "fresh rosemary", + "cooking spray", + "yellow onion", + "sugar", + "pecorino romano cheese", + "garlic cloves", + "Chianti", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 44782, + "cuisine": "italian", + "ingredients": [ + "salmon fillets", + "leeks", + "salt", + "ground black pepper", + "savory", + "fresh mint", + "unsalted chicken stock", + "unsalted butter", + "extra-virgin olive oil", + "flat leaf parsley", + "pappardelle pasta", + "dry white wine", + "lemon rind" + ] + }, + { + "id": 21317, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "garam masala", + "cumin seed", + "red chili peppers", + "yoghurt", + "salmon fillets", + "coriander powder", + "ground turmeric", + "black peppercorns", + "olive oil", + "salt" + ] + }, + { + "id": 18453, + "cuisine": "indian", + "ingredients": [ + "passata", + "frozen peas", + "spices", + "onions", + "yoghurt", + "skinless chicken breasts", + "basmati rice", + "red pepper", + "coriander" + ] + }, + { + "id": 14895, + "cuisine": "french", + "ingredients": [ + "sugar", + "olive oil", + "lemon zest", + "salt", + "nutmeg", + "pepper", + "unsalted butter", + "ice water", + "whole wheat pastry flour", + "swiss chard", + "leeks", + "garlic cloves", + "eggs", + "dried thyme", + "dijon mustard", + "gruyere cheese" + ] + }, + { + "id": 25282, + "cuisine": "chinese", + "ingredients": [ + "broccoli", + "water chestnuts", + "celery", + "chicken breasts", + "canola oil", + "soy sauce", + "yellow onion" + ] + }, + { + "id": 12757, + "cuisine": "italian", + "ingredients": [ + "canned low sodium chicken broth", + "cannellini beans", + "escarole", + "cooking oil", + "salt", + "ground black pepper", + "garlic", + "rigatoni", + "grated parmesan cheese", + "hot Italian sausages" + ] + }, + { + "id": 21382, + "cuisine": "thai", + "ingredients": [ + "cayenne pepper", + "hot water", + "soy sauce", + "golden syrup", + "creamy peanut butter", + "dry sherry", + "lemon juice" + ] + }, + { + "id": 13716, + "cuisine": "chinese", + "ingredients": [ + "chili pepper", + "star anise", + "cassia cinnamon", + "ginger root", + "roasted sesame seeds", + "oil", + "szechwan peppercorns" + ] + }, + { + "id": 17385, + "cuisine": "cajun_creole", + "ingredients": [ + "large eggs", + "butter", + "red bell pepper", + "bread crumbs", + "vegetable oil", + "garlic cloves", + "creole mustard", + "green onions", + "sauce", + "mayonaise", + "cooked chicken", + "creole seasoning" + ] + }, + { + "id": 19513, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "fresh ginger", + "cilantro", + "carrots", + "water", + "crushed garlic", + "english cucumber", + "rice paper", + "fresh chives", + "agave nectar", + "seasoned rice wine vinegar", + "hot water", + "olive oil", + "napa cabbage", + "oil" + ] + }, + { + "id": 15797, + "cuisine": "mexican", + "ingredients": [ + "water", + "chicken breasts", + "salt", + "pepper", + "garlic powder", + "onion powder", + "cheddar cheese", + "refried beans", + "chili powder", + "salsa", + "shredded cheddar cheese", + "flour tortillas", + "vegetable oil" + ] + }, + { + "id": 23325, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "garlic", + "onions", + "pepper", + "raisins", + "corn starch", + "shredded coconut", + "sweet potatoes", + "rice", + "sliced green onions", + "chicken bouillon granules", + "peanuts", + "salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 28799, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "salt", + "water", + "onions", + "pepper", + "shrimp", + "olive oil", + "fresh asparagus" + ] + }, + { + "id": 36623, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "garlic cloves", + "cooked rice", + "red beans", + "sliced green onions", + "celery ribs", + "water", + "onions", + "green bell pepper", + "creole seasoning" + ] + }, + { + "id": 31754, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "salt", + "pepper", + "basil", + "sugar", + "balsamic vinegar", + "dried oregano", + "olive oil", + "garlic" + ] + }, + { + "id": 33535, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "california chile", + "whole chicken", + "salt", + "olive oil", + "dried red chile peppers" + ] + }, + { + "id": 18781, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "eggplant", + "salt", + "yellow squash", + "diced tomatoes", + "red bell pepper", + "green bell pepper", + "zucchini", + "garlic cloves", + "olive oil", + "yellow bell pepper", + "onions" + ] + }, + { + "id": 17701, + "cuisine": "irish", + "ingredients": [ + "steel-cut oats", + "large eggs", + "all-purpose flour", + "baking soda", + "baking powder", + "whole wheat flour", + "cooking spray", + "wheat germ", + "brown sugar", + "low-fat buttermilk", + "salt" + ] + }, + { + "id": 1681, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "olive oil", + "salt", + "long-grain rice", + "ground turmeric", + "light brown sugar", + "black pepper", + "shallots", + "cayenne pepper", + "leg of lamb", + "ground cloves", + "bay leaves", + "rice vinegar", + "garlic cloves", + "canola oil", + "chicken stock", + "lime juice", + "lambs liver", + "sweet paprika", + "bay leaf" + ] + }, + { + "id": 13004, + "cuisine": "italian", + "ingredients": [ + "sugar", + "balsamic vinegar", + "purple onion", + "oven-ready lasagna noodles", + "fresh basil", + "zucchini", + "garlic", + "shredded mozzarella cheese", + "ground black pepper", + "portabello mushroom", + "fresh oregano", + "plum tomatoes", + "olive oil", + "baby spinach", + "salt", + "feta cheese crumbles" + ] + }, + { + "id": 46354, + "cuisine": "british", + "ingredients": [ + "sugar", + "almond extract", + "pastry dough", + "rice flour", + "strawberry jam", + "butter", + "eggs", + "baking powder" + ] + }, + { + "id": 17002, + "cuisine": "japanese", + "ingredients": [ + "vegetable stock", + "miso paste", + "scallions", + "water", + "firm tofu", + "mushrooms" + ] + }, + { + "id": 13854, + "cuisine": "italian", + "ingredients": [ + "vanilla ice cream", + "espresso", + "kahlua", + "whipped cream", + "cocoa", + "ice", + "sugar", + "liqueur" + ] + }, + { + "id": 17377, + "cuisine": "italian", + "ingredients": [ + "tomato purée", + "minced garlic", + "grated parmesan cheese", + "extra-virgin olive oil", + "freshly ground pepper", + "chuck", + "sausage casings", + "peeled tomatoes", + "bay leaves", + "crushed red pepper", + "flat leaf parsley", + "tomato paste", + "mozzarella cheese", + "large eggs", + "basil", + "ricotta", + "dried oregano", + "chicken stock", + "sugar", + "lasagna noodles", + "ground sirloin", + "salt", + "thyme sprigs" + ] + }, + { + "id": 18438, + "cuisine": "southern_us", + "ingredients": [ + "shredded sharp cheddar cheese", + "water", + "grits", + "fat free less sodium chicken broth", + "garlic cloves", + "cream cheese" + ] + }, + { + "id": 47991, + "cuisine": "thai", + "ingredients": [ + "jalapeno chilies", + "large garlic cloves", + "lemongrass", + "napa cabbage", + "shallots", + "fresh lime juice", + "coarse salt", + "asian fish sauce" + ] + }, + { + "id": 9926, + "cuisine": "filipino", + "ingredients": [ + "water", + "salt", + "black peppercorns", + "vegetable oil", + "chicken pieces", + "white vinegar", + "potatoes", + "bay leaf", + "soy sauce", + "garlic" + ] + }, + { + "id": 14935, + "cuisine": "chinese", + "ingredients": [ + "water", + "worcestershire sauce", + "chinese five-spice powder", + "sweet bean sauce", + "eggs", + "pork spare ribs", + "tomato ketchup", + "corn starch", + "plum sauce", + "salt", + "oil", + "black vinegar", + "sugar", + "Shaoxing wine", + "chili sauce", + "toasted sesame seeds" + ] + }, + { + "id": 34966, + "cuisine": "french", + "ingredients": [ + "water", + "salt", + "white sugar", + "almond extract", + "unsweetened chocolate", + "milk", + "all-purpose flour", + "eggs", + "butter", + "confectioners sugar" + ] + }, + { + "id": 6206, + "cuisine": "mexican", + "ingredients": [ + "ground round", + "chili powder", + "corn tortillas", + "turkey breakfast sausage", + "whole kernel corn, drain", + "ground cumin", + "reduced fat sharp cheddar cheese", + "cooking spray", + "enchilada sauce", + "pepper", + "chopped onion", + "sliced green onions" + ] + }, + { + "id": 18065, + "cuisine": "british", + "ingredients": [ + "large eggs", + "crème fraîche", + "tangerine", + "raw sugar", + "tangerine juice", + "unsalted butter", + "salt", + "dried cranberries", + "sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 38614, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "water", + "cilantro stems", + "cilantro leaves", + "bird chile", + "chiles", + "trout", + "vegetable oil", + "pork shoulder boston butt", + "white peppercorns", + "fruit", + "peeled fresh ginger", + "star anise", + "fresh mint", + "mango", + "fish sauce", + "palm sugar", + "shallots", + "garlic cloves", + "fresh lime juice" + ] + }, + { + "id": 29137, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "corn starch", + "low sodium soy sauce", + "minced ginger", + "scallions", + "water", + "garlic", + "dried red chile peppers", + "brown sugar", + "flank steak", + "oil" + ] + }, + { + "id": 22809, + "cuisine": "filipino", + "ingredients": [ + "sugar", + "vinegar", + "chili pepper", + "salt", + "soy sauce", + "japanese cucumber", + "ground black pepper", + "onions" + ] + }, + { + "id": 34622, + "cuisine": "southern_us", + "ingredients": [ + "vegetable shortening", + "all-purpose flour", + "unsalted butter", + "cake flour", + "baking soda", + "buttermilk", + "baking powder", + "salt" + ] + }, + { + "id": 37406, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "unsalted pecans", + "butter", + "salt", + "cider vinegar", + "large eggs", + "ice water", + "all-purpose flour", + "ground nutmeg", + "egg yolks", + "vegetable shortening", + "dark brown sugar", + "granulated sugar", + "bourbon whiskey", + "vanilla", + "sorghum syrup" + ] + }, + { + "id": 10248, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "vegetable oil", + "grapefruit", + "sugar", + "extra-virgin olive oil", + "fresh lime juice", + "red leaf lettuce", + "salt", + "Boston lettuce", + "passion fruit", + "corn tortillas" + ] + }, + { + "id": 48452, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "dry yeast", + "salt", + "freshly ground pepper", + "yellow tomato", + "honey", + "chopped fresh thyme", + "fresh oregano", + "plum tomatoes", + "yellow corn meal", + "warm water", + "cooking spray", + "all-purpose flour", + "garlic cloves", + "fresh rosemary", + "olive oil", + "asiago", + "chopped onion" + ] + }, + { + "id": 4600, + "cuisine": "italian", + "ingredients": [ + "brandy", + "hazelnut liqueur", + "coffee liqueur", + "cocoa", + "boiling water" + ] + }, + { + "id": 9638, + "cuisine": "british", + "ingredients": [ + "fruit", + "greek yogurt", + "meringue nests", + "vanilla", + "strawberries" + ] + }, + { + "id": 6540, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "part-skim mozzarella cheese", + "salt", + "nonfat ricotta cheese", + "light alfredo sauce", + "olive oil", + "yukon gold potatoes", + "garlic cloves", + "fat free less sodium chicken broth", + "mushroom caps", + "fresh oregano", + "fresh basil", + "large egg whites", + "cooking spray", + "chopped onion" + ] + }, + { + "id": 49130, + "cuisine": "korean", + "ingredients": [ + "sesame oil", + "baby back ribs", + "sliced green onions", + "soy sauce", + "rice vinegar", + "toasted sesame seeds", + "brown sugar", + "garlic", + "onions", + "honey", + "toasted sesame oil", + "pears" + ] + }, + { + "id": 11900, + "cuisine": "jamaican", + "ingredients": [ + "ketchup", + "hot pepper sauce", + "cinnamon", + "ground allspice", + "chicken pieces", + "sugar", + "dried thyme", + "dark rum", + "scotch", + "scallions", + "white vinegar", + "jerk marinade", + "bay leaves", + "garlic", + "dark brown sugar", + "soy sauce", + "fresh ginger", + "barbecue sauce", + "salt", + "fresh lime juice" + ] + }, + { + "id": 13022, + "cuisine": "southern_us", + "ingredients": [ + "italian seasoning mix", + "flour", + "crisco", + "garlic salt", + "cream of chicken soup", + "chopped onion", + "low sodium chicken broth", + "chicken" + ] + }, + { + "id": 46561, + "cuisine": "chinese", + "ingredients": [ + "ground cinnamon", + "honey", + "chinese five-spice powder", + "ketchup", + "hoisin sauce", + "white sugar", + "soy sauce", + "fresh ginger root", + "oyster sauce", + "pork shoulder roast", + "dry sherry" + ] + }, + { + "id": 47989, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "almonds", + "butter", + "chopped parsley", + "ground turmeric", + "sugar", + "egg yolks", + "cinnamon sticks", + "onions", + "eggs", + "ground pepper", + "salt", + "phyllo pastry", + "ground ginger", + "squabs", + "cinnamon", + "confectioners sugar", + "chopped cilantro fresh" + ] + }, + { + "id": 20697, + "cuisine": "british", + "ingredients": [ + "vanilla extract", + "unsalted butter", + "all-purpose flour", + "sugar", + "salt", + "raisins" + ] + }, + { + "id": 35371, + "cuisine": "indian", + "ingredients": [ + "hungarian sweet paprika", + "fat free less sodium chicken broth", + "cooking spray", + "salt", + "cinnamon sticks", + "white vinegar", + "tomato purée", + "finely chopped onion", + "boneless skinless chicken breasts", + "garlic cloves", + "chopped cilantro fresh", + "tomato paste", + "garam masala", + "peeled fresh ginger", + "ground coriander", + "cashew nuts", + "green cardamom pods", + "boneless chicken skinless thigh", + "half & half", + "ground red pepper", + "greek yogurt" + ] + }, + { + "id": 31990, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "frozen corn kernels", + "black beans", + "chees fresco queso", + "chopped cilantro fresh", + "avocado", + "chili powder", + "chipotle salsa", + "olive oil", + "purple onion" + ] + }, + { + "id": 47797, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "salt", + "tomatillos", + "serrano chile", + "black pepper", + "chopped cilantro fresh", + "purple onion" + ] + }, + { + "id": 30218, + "cuisine": "chinese", + "ingredients": [ + "fish sauce", + "wonton wrappers", + "toasted sesame oil", + "peeled fresh ginger", + "scallions", + "vegetable oil", + "shrimp", + "soy sauce", + "red curry paste" + ] + }, + { + "id": 42666, + "cuisine": "spanish", + "ingredients": [ + "hungarian sweet paprika", + "chopped green bell pepper", + "salt", + "chicken thighs", + "saffron threads", + "pepper", + "dry white wine", + "garlic cloves", + "black peppercorns", + "bay leaves", + "yellow onion", + "arborio rice", + "water", + "vegetable oil", + "fresh parsley" + ] + }, + { + "id": 19745, + "cuisine": "italian", + "ingredients": [ + "grated lemon zest", + "fresh rosemary", + "boneless skinless chicken breasts" + ] + }, + { + "id": 19592, + "cuisine": "italian", + "ingredients": [ + "penne pasta", + "cooked chicken", + "cheese", + "milk", + "sour cream" + ] + }, + { + "id": 5562, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "garlic", + "mussels", + "flat leaf parsley", + "dry white wine" + ] + }, + { + "id": 2182, + "cuisine": "italian", + "ingredients": [ + "water", + "extra-virgin olive oil", + "onions", + "hot red pepper flakes", + "fresh pasta", + "walnuts", + "asparagus tips", + "black pepper", + "parmigiano reggiano cheese", + "flat leaf parsley", + "pancetta", + "olive oil", + "salt", + "marjoram" + ] + }, + { + "id": 30393, + "cuisine": "chinese", + "ingredients": [ + "green cabbage", + "ground black pepper", + "vegetable oil", + "kosher salt", + "green onions", + "ginger", + "soy sauce", + "mirin", + "ground pork", + "won ton wrappers", + "sesame oil", + "shrimp" + ] + }, + { + "id": 46237, + "cuisine": "vietnamese", + "ingredients": [ + "brown sugar", + "garlic powder", + "pork tenderloin", + "rice vermicelli", + "garlic cloves", + "chopped fresh mint", + "fish sauce", + "water", + "Sriracha", + "lime wedges", + "english cucumber", + "fresh lime juice", + "fresh basil", + "red leaf lettuce", + "granulated sugar", + "peeled fresh ginger", + "rice vinegar", + "beansprouts", + "dry roasted peanuts", + "ground black pepper", + "cooking spray", + "salt", + "carrots", + "chopped cilantro fresh" + ] + }, + { + "id": 35773, + "cuisine": "vietnamese", + "ingredients": [ + "rice stick noodles", + "water", + "vegetable oil", + "fresh lime juice", + "black peppercorns", + "lemongrass", + "gingerroot", + "chicken broth", + "curry powder", + "chili oil", + "asian fish sauce", + "unsweetened coconut milk", + "fresh coriander", + "chicken breasts", + "garlic cloves" + ] + }, + { + "id": 17081, + "cuisine": "brazilian", + "ingredients": [ + "tomatoes", + "olive oil", + "red pepper flakes", + "nonstick spray", + "black beans", + "leeks", + "yellow onion", + "fresh lime juice", + "cooked rice", + "sweet potatoes", + "yellow bell pepper", + "red bell pepper", + "fresh cilantro", + "dark rum", + "thyme", + "ground cumin" + ] + }, + { + "id": 10688, + "cuisine": "british", + "ingredients": [ + "eggs", + "milk", + "sherry", + "currant", + "allspice", + "ground cloves", + "suet", + "candied peel", + "cognac", + "sugar", + "mace", + "cinnamon", + "salt", + "nutmeg", + "bread crumb fresh", + "ground black pepper", + "raisins", + "citron" + ] + }, + { + "id": 39175, + "cuisine": "mexican", + "ingredients": [ + "reduced fat sharp cheddar cheese", + "non-fat sour cream", + "chopped cilantro fresh", + "corn", + "enchilada sauce", + "black beans", + "salt", + "cooking spray", + "corn tortillas" + ] + }, + { + "id": 1651, + "cuisine": "french", + "ingredients": [ + "milk", + "water", + "vanilla extract", + "large eggs", + "sugar", + "egg yolks" + ] + }, + { + "id": 39630, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "milk", + "baking powder", + "salt", + "grated coconut", + "flour", + "raisins", + "water", + "egg yolks", + "vanilla extract", + "brandy", + "egg whites", + "butter", + "chopped pecans" + ] + }, + { + "id": 7381, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "garlic", + "onions", + "pineapple chunks", + "water", + "pineapple juice", + "pepper", + "salt", + "brown sugar", + "pork leg", + "oil" + ] + }, + { + "id": 6374, + "cuisine": "filipino", + "ingredients": [ + "water", + "chunky peanut butter", + "salt", + "onions", + "fish sauce", + "leaves", + "shrimp paste", + "oil", + "long beans", + "eggplant", + "oxtails", + "annatto powder", + "pepper", + "bananas", + "garlic", + "rice flour" + ] + }, + { + "id": 32491, + "cuisine": "mexican", + "ingredients": [ + "lime", + "jalapeno chilies", + "salt", + "sour cream", + "cumin", + "pepper", + "green bell pepper, slice", + "cilantro", + "scallions", + "adobo sauce", + "black beans", + "olive oil", + "boneless skinless chicken breasts", + "freshly ground pepper", + "chipotles in adobo", + "ground cumin", + "fresh cilantro", + "flour tortillas", + "garlic", + "red bell pepper", + "onions" + ] + }, + { + "id": 24554, + "cuisine": "mexican", + "ingredients": [ + "water", + "crema mexican", + "garlic", + "masa harina", + "cotija", + "peanuts", + "chicken breasts", + "sour cream", + "chicken stock", + "refried beans", + "jalapeno chilies", + "cilantro leaves", + "kosher salt", + "poblano peppers", + "tomatillos", + "onions" + ] + }, + { + "id": 25709, + "cuisine": "japanese", + "ingredients": [ + "gari", + "green onions", + "garlic", + "beansprouts", + "soy sauce", + "shiitake", + "sesame oil", + "carrots", + "sake", + "olive oil", + "chicken breasts", + "rice vinegar", + "ground ginger", + "honey", + "napa cabbage leaves", + "buckwheat noodles", + "onions" + ] + }, + { + "id": 9141, + "cuisine": "italian", + "ingredients": [ + "seasoned bread crumbs", + "garlic cloves", + "frozen chopped spinach", + "olive oil", + "romano cheese", + "salt", + "pepper" + ] + }, + { + "id": 42690, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "honey", + "butternut squash", + "raisins", + "salt", + "ground turmeric", + "slivered almonds", + "garbanzo beans", + "chicken breasts", + "garlic", + "couscous", + "water", + "dried apricot", + "butter", + "chicken stock cubes", + "onions", + "preserved lemon", + "olive oil", + "harissa", + "ginger", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 12443, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "sprinkles", + "red bell pepper", + "spinach leaves", + "cannellini beans", + "feta cheese crumbles", + "italian seasoning", + "grated parmesan cheese", + "garlic cloves", + "ripe olives", + "seasoned bread crumbs", + "balsamic vinegar", + "low salt chicken broth", + "sliced green onions" + ] + }, + { + "id": 20712, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "cream cheese", + "marinara sauce", + "italian seasoning", + "lasagna noodles", + "shredded mozzarella cheese", + "shredded parmesan cheese" + ] + }, + { + "id": 8193, + "cuisine": "mexican", + "ingredients": [ + "queso fresco", + "oil", + "masa", + "water" + ] + }, + { + "id": 36268, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "pork stock", + "carrots", + "black vinegar", + "sesame oil", + "dried shiitake mushrooms", + "ground white pepper", + "kosher salt", + "dried rice noodles", + "corn starch", + "boneless pork shoulder", + "vegetable oil", + "scallions", + "bamboo shoots" + ] + }, + { + "id": 40355, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "rice vinegar", + "sesame oil", + "green beans", + "sesame seeds", + "lemon juice", + "ginger" + ] + }, + { + "id": 45647, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "cornflour", + "kaffir lime leaves", + "beans", + "coriander", + "whitefish", + "red chili peppers", + "oil", + "eggs", + "spring onions" + ] + }, + { + "id": 45495, + "cuisine": "moroccan", + "ingredients": [ + "fresh lemon juice", + "coarse salt", + "lemon" + ] + }, + { + "id": 36132, + "cuisine": "british", + "ingredients": [ + "kosher salt", + "beef stock", + "rosemary leaves", + "marmite", + "frozen pastry puff sheets", + "vegetable oil", + "onions", + "eggs", + "ale", + "button mushrooms", + "chuck", + "ground black pepper", + "fresh thyme leaves", + "carrots" + ] + }, + { + "id": 15115, + "cuisine": "italian", + "ingredients": [ + "diced onions", + "ground black pepper", + "fresh parsley", + "white wine", + "garlic", + "tomato paste", + "stewed tomatoes", + "dried oregano", + "olive oil", + "salt" + ] + }, + { + "id": 25739, + "cuisine": "irish", + "ingredients": [ + "cheddar cheese", + "unsalted butter", + "water", + "sausages", + "kosher salt", + "large eggs", + "ground black pepper" + ] + }, + { + "id": 40530, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "pepper", + "salt", + "tomatoes", + "basil", + "olive oil", + "farmer cheese" + ] + }, + { + "id": 27823, + "cuisine": "brazilian", + "ingredients": [ + "cachaca", + "blood orange", + "superfine sugar" + ] + }, + { + "id": 5369, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "eggplant", + "chopped fresh thyme", + "low salt chicken broth", + "olive oil", + "dry white wine", + "garlic cloves", + "peeled tomatoes", + "finely chopped onion", + "crushed red pepper", + "penne", + "radicchio", + "Italian parsley leaves", + "soft fresh goat cheese" + ] + }, + { + "id": 2843, + "cuisine": "southern_us", + "ingredients": [ + "salad", + "navel oranges", + "ripe olives", + "sliced cucumber", + "purple onion", + "sugar", + "white wine vinegar", + "vegetable oil", + "orange juice" + ] + }, + { + "id": 760, + "cuisine": "filipino", + "ingredients": [ + "table cream", + "salt", + "red pepper", + "onions", + "pepper", + "oil", + "pineapple chunks", + "garlic", + "chicken" + ] + }, + { + "id": 1674, + "cuisine": "italian", + "ingredients": [ + "salt", + "olive oil", + "spaghettini", + "broccoli", + "ground black pepper" + ] + }, + { + "id": 46260, + "cuisine": "indian", + "ingredients": [ + "mint leaves", + "water", + "salt", + "lime juice", + "white sugar", + "chile pepper" + ] + }, + { + "id": 33152, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "garlic", + "peanut oil", + "large eggs", + "crushed red pepper", + "whole peeled tomatoes", + "fine sea salt", + "calamari", + "lemon wedge", + "all-purpose flour" + ] + }, + { + "id": 49712, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "salt", + "ground cumin", + "finely chopped onion", + "tamarind paste", + "pepper", + "curry", + "canola oil", + "cayenne", + "chickpeas" + ] + }, + { + "id": 5208, + "cuisine": "mexican", + "ingredients": [ + "water", + "garlic cloves", + "black beans", + "chopped cilantro fresh", + "corn oil" + ] + }, + { + "id": 19483, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "sugar", + "tea bags", + "water" + ] + }, + { + "id": 35343, + "cuisine": "mexican", + "ingredients": [ + "blanco tequila", + "rosemary sprigs", + "club soda", + "lemon juice", + "sugar" + ] + }, + { + "id": 11093, + "cuisine": "mexican", + "ingredients": [ + "lime wedges", + "mahimahi", + "green cabbage", + "reduced-fat sour cream", + "corn tortillas", + "vegetable oil", + "taco seasoning", + "green onions", + "fresh orange juice", + "fresh lime juice" + ] + }, + { + "id": 21142, + "cuisine": "southern_us", + "ingredients": [ + "golden brown sugar", + "salt", + "pecans", + "vanilla extract", + "unsalted butter", + "all-purpose flour", + "whipping cream", + "chopped pecans" + ] + }, + { + "id": 46053, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "chicken tenderloin", + "flat leaf parsley", + "brown sugar", + "lemon", + "extra-virgin olive oil", + "red chili powder", + "parsley", + "sea salt", + "oregano", + "pesto", + "red pepper flakes", + "garlic cloves" + ] + }, + { + "id": 1567, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "paneer", + "coconut milk", + "moong dal", + "cilantro leaves", + "spinach leaves", + "salt", + "onions", + "clove", + "ginger", + "oil" + ] + }, + { + "id": 20865, + "cuisine": "cajun_creole", + "ingredients": [ + "bell pepper", + "rice", + "andouille sausage", + "garlic", + "onions", + "water", + "smoked sausage", + "pork loin", + "celery" + ] + }, + { + "id": 35822, + "cuisine": "mexican", + "ingredients": [ + "sliced tomatoes", + "minced beef", + "shredded lettuce", + "shredded mozzarella cheese", + "shredded cheddar cheese", + "taco seasoning", + "Doritos Tortilla Chips" + ] + }, + { + "id": 26863, + "cuisine": "chinese", + "ingredients": [ + "red bean paste", + "cooking oil", + "raisins", + "garlic cloves", + "dried cranberries", + "light soy sauce", + "spring onions", + "jujube", + "shrimp", + "sugar", + "mushrooms", + "sticky rice", + "oyster sauce", + "chinese sausage", + "sesame oil", + "oil", + "lard" + ] + }, + { + "id": 43529, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "garlic cloves", + "clove", + "vegetable oil", + "oregano", + "dried thyme", + "ancho chile pepper", + "white distilled vinegar", + "pork loin chops" + ] + }, + { + "id": 47311, + "cuisine": "cajun_creole", + "ingredients": [ + "yellow mustard", + "olive oil", + "catfish", + "cracked black pepper", + "butter" + ] + }, + { + "id": 13179, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "flour tortillas", + "salt", + "cayenne", + "paprika", + "achiote", + "fresh lime juice" + ] + }, + { + "id": 4663, + "cuisine": "jamaican", + "ingredients": [ + "nutmeg", + "pepper", + "ginger", + "garlic cloves", + "sugar", + "olive oil", + "ground allspice", + "onions", + "ground cinnamon", + "lime", + "salt", + "thyme", + "white vinegar", + "soy sauce", + "ground black pepper", + "orange juice", + "chicken" + ] + }, + { + "id": 18365, + "cuisine": "british", + "ingredients": [ + "eggs", + "flour", + "cold water", + "salt", + "milk" + ] + }, + { + "id": 37516, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "ground white pepper", + "french baguette", + "fresh oregano", + "fresh basil", + "garlic powder", + "plum tomatoes", + "mozzarella cheese", + "provolone cheese" + ] + }, + { + "id": 26748, + "cuisine": "mexican", + "ingredients": [ + "salt", + "vegetable oil", + "pepper", + "nopales", + "cheese" + ] + }, + { + "id": 39094, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "lime zest", + "key lime juice", + "sweetened condensed milk", + "pie crust" + ] + }, + { + "id": 17572, + "cuisine": "chinese", + "ingredients": [ + "orange juice concentrate", + "white pepper", + "large eggs", + "oil", + "white vinegar", + "sugar", + "boneless chicken breast", + "garlic", + "orange zest", + "ground ginger", + "soy sauce", + "Sriracha", + "salt", + "chicken broth", + "sesame seeds", + "green onions", + "corn starch" + ] + }, + { + "id": 41075, + "cuisine": "brazilian", + "ingredients": [ + "lime juice", + "garlic", + "fish steaks", + "hot pepper sauce", + "coconut milk", + "tomato paste", + "olive oil", + "salt", + "water", + "parsley", + "onions" + ] + }, + { + "id": 12520, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "chili powder", + "ground coriander", + "tomato paste", + "olive oil", + "garlic", + "cumin", + "water", + "dry red wine", + "onions", + "tomatoes", + "cayenne", + "salt" + ] + }, + { + "id": 43209, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "garlic cloves", + "white onion", + "coarse salt", + "boneless pork shoulder", + "vegetable oil", + "poblano chiles", + "ground pepper", + "tomatillos" + ] + }, + { + "id": 27722, + "cuisine": "chinese", + "ingredients": [ + "lean ground pork", + "sesame oil", + "dipping sauces", + "ground white pepper", + "dumpling wrappers", + "napa cabbage", + "scallions", + "kosher salt", + "balsamic vinegar", + "garlic", + "toasted sesame oil", + "soy sauce", + "egg whites", + "ginger", + "oyster sauce" + ] + }, + { + "id": 9605, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "tomatillos", + "salt", + "garlic cloves", + "jack cheese", + "chili powder", + "heavy cream", + "sauce", + "ground beef", + "meat", + "red pepper flakes", + "yellow onion", + "sour cream", + "flour tortillas", + "vegetable oil", + "cilantro", + "shredded cheese", + "cumin" + ] + }, + { + "id": 23534, + "cuisine": "southern_us", + "ingredients": [ + "cold water", + "sugar", + "tea bags" + ] + }, + { + "id": 38521, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "vegetable broth", + "boiling water", + "cauliflower", + "butter", + "salt", + "olive oil", + "garlic", + "nutmeg", + "heavy cream", + "noodles" + ] + }, + { + "id": 6012, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "goat cheese", + "spinach leaves", + "focaccia", + "sherry vinegar", + "olive oil", + "onions" + ] + }, + { + "id": 44680, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dill", + "sea salt", + "chopped parsley", + "relish", + "freshly ground pepper", + "baguette", + "cheese spread" + ] + }, + { + "id": 18461, + "cuisine": "chinese", + "ingredients": [ + "straw mushrooms", + "sesame oil", + "oil", + "snow peas", + "sugar", + "water chestnuts", + "dried shiitake mushrooms", + "carrots", + "tofu", + "water", + "garlic", + "oyster sauce", + "soy sauce", + "tapioca starch", + "chinese cabbage", + "baby corn" + ] + }, + { + "id": 19832, + "cuisine": "thai", + "ingredients": [ + "thai basil", + "chicken breasts", + "ground white pepper", + "fish sauce", + "kecap manis", + "garlic", + "palm sugar", + "shallots", + "chiles", + "jalapeno chilies", + "oil" + ] + }, + { + "id": 7932, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "cilantro", + "pinto beans", + "avocado", + "jalapeno chilies", + "enchilada sauce", + "canned corn", + "olive oil", + "tortilla chips", + "oregano", + "cheddar cheese", + "hot sauce", + "ground turkey" + ] + }, + { + "id": 14530, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "sweet onion", + "salt", + "white pepper", + "cinnamon", + "chicken", + "black pepper", + "olive oil", + "saffron", + "ground ginger", + "fresh cilantro", + "butter" + ] + }, + { + "id": 25466, + "cuisine": "moroccan", + "ingredients": [ + "red lentils", + "vegetable broth", + "ground cumin", + "olive oil", + "ground coriander", + "sea scallops", + "chopped cilantro fresh", + "ground cinnamon", + "chopped onion" + ] + }, + { + "id": 31159, + "cuisine": "brazilian", + "ingredients": [ + "active dry yeast", + "extra-virgin olive oil", + "sugar", + "unsalted butter", + "all-purpose flour", + "warm water", + "coarse salt", + "boiling water", + "stone-ground cornmeal", + "salt" + ] + }, + { + "id": 30654, + "cuisine": "japanese", + "ingredients": [ + "miso paste", + "soy sauce", + "vegetable broth", + "green onions", + "shiitake", + "firm tofu" + ] + }, + { + "id": 834, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "large egg whites", + "cooking spray", + "all-purpose flour", + "syrup", + "large eggs", + "vanilla extract", + "sugar", + "sweet cherries", + "almond extract", + "corn starch", + "fat free yogurt", + "tart cherries", + "1% low-fat milk" + ] + }, + { + "id": 25835, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "minced garlic", + "diced tomatoes", + "ground cumin", + "chiles", + "olive oil", + "enchilada sauce", + "diced onions", + "refried beans", + "salt", + "pepper", + "queso blanco", + "chopped cilantro" + ] + }, + { + "id": 11348, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "collard greens", + "bacon drippings", + "water" + ] + }, + { + "id": 4712, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "corn husks", + "all-purpose flour", + "kosher salt", + "buttermilk", + "baking powder" + ] + }, + { + "id": 30328, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "water", + "chile pepper", + "lentils", + "white pepper", + "green onions", + "garlic", + "sugar", + "minced garlic", + "shallots", + "salt", + "potsticker wrappers", + "fresh ginger", + "sunflower oil" + ] + }, + { + "id": 3570, + "cuisine": "indian", + "ingredients": [ + "double cream", + "paneer", + "cumin seed", + "tumeric", + "raw cashews", + "green chilies", + "tomatoes", + "ginger", + "cilantro leaves", + "sugar", + "garlic", + "ground coriander" + ] + }, + { + "id": 49215, + "cuisine": "italian", + "ingredients": [ + "water", + "minced onion", + "vegetable broth", + "fresh parsley", + "arborio rice", + "olive oil", + "shallots", + "asparagus spears", + "dried thyme", + "dry white wine", + "garlic", + "dried oregano", + "fresh chives", + "fresh parmesan cheese", + "shuck corn", + "red bell pepper" + ] + }, + { + "id": 22996, + "cuisine": "korean", + "ingredients": [ + "green onions", + "sesame seeds", + "cayenne pepper", + "soy sauce", + "vegetable oil", + "potatoes", + "red bell pepper" + ] + }, + { + "id": 45578, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "creole seasoning", + "butter", + "celery", + "andouille turkey sausages", + "garlic cloves", + "green bell pepper", + "diced tomatoes", + "onions" + ] + }, + { + "id": 48396, + "cuisine": "italian", + "ingredients": [ + "chopped green bell pepper", + "diced tomatoes", + "white sugar", + "eggs", + "lean ground beef", + "chopped onion", + "dried oregano", + "cottage cheese", + "butter", + "shredded mozzarella cheese", + "tomato paste", + "grated parmesan cheese", + "garlic", + "spaghetti" + ] + }, + { + "id": 912, + "cuisine": "italian", + "ingredients": [ + "wide egg noodles", + "cheese", + "light sour cream", + "lean ground beef", + "italian seasoning", + "green onions", + "cream cheese, soften", + "pasta sauce", + "diced tomatoes" + ] + }, + { + "id": 7172, + "cuisine": "greek", + "ingredients": [ + "seasoning", + "quinoa", + "ground caraway", + "ginger root", + "ground turmeric", + "extra lean ground beef", + "vegetable oil", + "ground coriander", + "chopped fresh mint", + "tomatoes", + "minced onion", + "rice", + "couscous", + "ground cumin", + "minced garlic", + "fat free greek yogurt", + "ground cardamom", + "chopped cilantro fresh" + ] + }, + { + "id": 48809, + "cuisine": "indian", + "ingredients": [ + "milk", + "ghee", + "chopped nuts", + "khoa", + "raisins", + "sugar", + "carrots" + ] + }, + { + "id": 43408, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "flank steak", + "ground cumin", + "chile powder", + "cayenne", + "hearts of romaine", + "flour tortillas (not low fat)", + "salt", + "black pepper", + "cilantro sprigs" + ] + }, + { + "id": 40990, + "cuisine": "mexican", + "ingredients": [ + "salt", + "masa harina", + "oil", + "all-purpose flour", + "shortening", + "hot water" + ] + }, + { + "id": 25034, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "Cinnamon Toast Crunch Cereal", + "sugar", + "mandarin oranges", + "pure vanilla extract", + "whipped cream", + "grated orange", + "unsalted butter", + "cream cheese" + ] + }, + { + "id": 38570, + "cuisine": "greek", + "ingredients": [ + "sesame seeds", + "salt", + "baking powder", + "white sugar", + "egg yolks", + "all-purpose flour", + "cream", + "butter" + ] + }, + { + "id": 19616, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "olive oil", + "dry white wine", + "escarole", + "dried thyme", + "dried sage", + "fresh parsley leaves", + "italian tomatoes", + "freshly grated parmesan", + "fusilli", + "dried rosemary", + "minced garlic", + "finely chopped onion", + "white beans" + ] + }, + { + "id": 23841, + "cuisine": "italian", + "ingredients": [ + "cream cheese", + "chicken breasts", + "cream of chicken soup", + "zesty italian dressing" + ] + }, + { + "id": 32654, + "cuisine": "spanish", + "ingredients": [ + "red chili peppers", + "lemon zest", + "navel oranges", + "carrots", + "fresh chives", + "shell-on shrimp", + "purple onion", + "fresh lime juice", + "tumeric", + "fennel bulb", + "fresh orange juice", + "carrot juice", + "canola oil", + "lemongrass", + "peeled fresh ginger", + "salt", + "chopped fresh mint" + ] + }, + { + "id": 31727, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "salt", + "fettucine", + "extra-virgin olive oil", + "fresh basil leaves", + "grated parmesan cheese", + "lemon juice", + "pepper", + "garlic" + ] + }, + { + "id": 5020, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "dry white wine", + "chopped onion", + "grape tomatoes", + "chees fresh mozzarella", + "garlic cloves", + "fresh basil", + "butter", + "organic vegetable broth", + "cooking spray", + "salt" + ] + }, + { + "id": 201, + "cuisine": "thai", + "ingredients": [ + "sugar", + "curry powder", + "ginger", + "Thai fish sauce", + "chicken broth", + "jasmine rice", + "mushrooms", + "cayenne pepper", + "Thai chili paste", + "lemongrass", + "salt", + "coconut milk", + "fresh basil", + "pepper", + "chicken breasts", + "juice" + ] + }, + { + "id": 18220, + "cuisine": "spanish", + "ingredients": [ + "chicken broth", + "green onions", + "green pepper", + "saffron", + "olive oil", + "garlic", + "frozen mixed vegetables", + "pepper", + "red pepper", + "rice", + "boneless chicken breast", + "salt", + "onions" + ] + }, + { + "id": 11448, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "low fat mozzarella", + "juice", + "ground cumin", + "chicken stock", + "diced green chilies", + "enchilada sauce", + "ancho chile pepper", + "cold water", + "Tabasco Green Pepper Sauce", + "hot sauce", + "red bell pepper", + "lean ground turkey", + "Mexican oregano", + "pinto beans", + "onions" + ] + }, + { + "id": 23433, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "red wine vinegar", + "extra-virgin olive oil", + "garlic cloves", + "fresh basil leaves", + "capers", + "parmigiano reggiano cheese", + "yellow bell pepper", + "Niçoise olives", + "sourdough", + "olive oil", + "heirloom tomatoes", + "purple onion", + "cucumber", + "fennel bulb", + "cracked black pepper", + "grated lemon zest", + "red bell pepper" + ] + }, + { + "id": 7650, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "black beans", + "flour tortillas", + "chili powder", + "garlic cloves", + "sugar", + "olive oil", + "flour", + "purple onion", + "oregano", + "ground cloves", + "garlic powder", + "cooked chicken", + "salt", + "ground cumin", + "cheddar cheese", + "lime juice", + "jalapeno chilies", + "cinnamon", + "chopped cilantro fresh" + ] + }, + { + "id": 18205, + "cuisine": "mexican", + "ingredients": [ + "grate lime peel", + "frozen orange juice concentrate", + "crema mexican", + "mayonaise", + "fresh lime juice" + ] + }, + { + "id": 24535, + "cuisine": "italian", + "ingredients": [ + "sea scallops", + "freshly ground pepper", + "whole wheat angel hair pasta", + "white wine", + "butter", + "corn starch", + "capers", + "clam juice", + "lemon juice", + "chopped garlic", + "kosher salt", + "extra-virgin olive oil", + "fresh parsley" + ] + }, + { + "id": 36918, + "cuisine": "greek", + "ingredients": [ + "French mustard", + "garlic", + "olive oil", + "leg of lamb", + "orange", + "salt", + "pepper", + "potatoes", + "dried oregano" + ] + }, + { + "id": 17595, + "cuisine": "mexican", + "ingredients": [ + "wonton wrappers", + "chopped cilantro", + "olive oil", + "part-skim ricotta cheese", + "chorizo sausage", + "garlic", + "cumin", + "queso asadero", + "salt" + ] + }, + { + "id": 9503, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "paprika", + "dried oregano", + "red snapper", + "onion powder", + "cayenne pepper", + "ground black pepper", + "salt", + "dried thyme", + "butter", + "ground white pepper" + ] + }, + { + "id": 41579, + "cuisine": "southern_us", + "ingredients": [ + "water", + "fresh mint", + "bourbon whiskey", + "white sugar" + ] + }, + { + "id": 22696, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "ground black pepper", + "bouquet garni", + "red bell pepper", + "onions", + "avocado", + "corn kernels", + "jalapeno chilies", + "salt", + "celery", + "dried oregano", + "lime juice", + "fresh thyme", + "purple onion", + "poblano chiles", + "chopped cilantro fresh", + "green bell pepper", + "olive oil", + "garlic", + "carrots", + "fresh parsley", + "ground cumin" + ] + }, + { + "id": 25769, + "cuisine": "italian", + "ingredients": [ + "chunky pasta sauce", + "oven-ready lasagna noodles", + "fontina cheese", + "large eggs", + "frozen chopped spinach", + "parmesan cheese", + "prepar pesto", + "ricotta cheese" + ] + }, + { + "id": 15395, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "large garlic cloves", + "capers", + "finely chopped onion", + "fresh parsley", + "tomatoes", + "ground pepper", + "salt", + "dried basil", + "sherry wine vinegar" + ] + }, + { + "id": 47996, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "onions", + "crushed tomatoes", + "chili powder", + "dried oregano", + "tomato sauce", + "bay leaves", + "dried parsley", + "olive oil", + "garlic" + ] + }, + { + "id": 42212, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "lemon wedge", + "garlic powder", + "gingerroot", + "water", + "salt", + "soy sauce", + "orange marmalade", + "pork spareribs" + ] + }, + { + "id": 43726, + "cuisine": "spanish", + "ingredients": [ + "corn kernels", + "butter", + "fresh lime juice", + "mussels", + "jicama", + "large garlic cloves", + "chiles", + "vegetable oil", + "chopped onion", + "chicken stock", + "lime wedges", + "cilantro leaves" + ] + }, + { + "id": 42409, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "crushed red pepper flakes", + "ground black pepper", + "beer", + "garlic powder", + "all-purpose flour", + "green tomatoes", + "oil" + ] + }, + { + "id": 48391, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "buttermilk", + "all-purpose flour", + "sugar", + "butter", + "maple syrup", + "eggs", + "bourbon whiskey", + "salt", + "melted butter", + "baking powder", + "vanilla extract" + ] + }, + { + "id": 33052, + "cuisine": "vietnamese", + "ingredients": [ + "honey", + "shredded cabbage", + "salt", + "celery", + "asian fish sauce", + "minced garlic", + "shredded carrots", + "balsamic vinegar", + "fresh mint", + "chopped cilantro fresh", + "soy sauce", + "chili paste", + "chicken breasts", + "lemon juice", + "toasted sesame seeds", + "fresh ginger", + "jicama", + "english cucumber", + "onions" + ] + }, + { + "id": 47131, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "honey", + "quick-cooking oats", + "all-purpose flour", + "sugar", + "peaches", + "vanilla extract", + "brown sugar", + "baking soda", + "butter", + "chopped pecans", + "ground cinnamon", + "milk", + "baking powder", + "salt" + ] + }, + { + "id": 42158, + "cuisine": "italian", + "ingredients": [ + "cheddar cheese", + "cooked bacon", + "parmigiano reggiano cheese", + "sourdough bread", + "butter" + ] + }, + { + "id": 28019, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "water", + "vegetable oil", + "wonton noodles", + "white pepper", + "chicken breasts", + "scallions", + "sugar", + "Shaoxing wine", + "dried shiitake mushrooms", + "kosher salt", + "sesame oil", + "corn starch" + ] + }, + { + "id": 5039, + "cuisine": "mexican", + "ingredients": [ + "water", + "cilantro", + "leaf lettuce", + "roma tomatoes", + "salt", + "boneless skinless chicken breast halves", + "lime juice", + "purple onion", + "corn tortillas", + "light sour cream", + "jalapeno chilies", + "cayenne pepper", + "mango" + ] + }, + { + "id": 15632, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "bell pepper", + "vegetable stock", + "shrimp", + "crushed tomatoes", + "bay leaves", + "salt", + "pepper", + "flour", + "diced tomatoes", + "onions", + "celery ribs", + "olive oil", + "salt free seasoning", + "garlic cloves" + ] + }, + { + "id": 25931, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "large eggs", + "corn starch", + "kosher salt", + "ground black pepper", + "boneless skinless chicken breasts", + "soy sauce", + "panko", + "green onions", + "honey", + "Sriracha", + "garlic" + ] + }, + { + "id": 24558, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "sesame oil", + "purple onion", + "noodles", + "tomatoes", + "soy sauce", + "ginger", + "carrots", + "dressing", + "red chili peppers", + "cilantro", + "peanut oil", + "fish sauce", + "boneless chicken breast", + "garlic", + "green beans" + ] + }, + { + "id": 43252, + "cuisine": "cajun_creole", + "ingredients": [ + "baby leaf lettuce", + "mizuna", + "hass avocado", + "coarse salt", + "scallions", + "ground black pepper", + "sauce", + "grape tomatoes", + "extra-virgin olive oil", + "shrimp" + ] + }, + { + "id": 49395, + "cuisine": "irish", + "ingredients": [ + "cod", + "olive oil", + "garlic", + "black pepper", + "yukon gold potatoes", + "kosher salt", + "lemon", + "capers", + "fresh thyme" + ] + }, + { + "id": 43327, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "salt", + "water", + "egg whites", + "glaze", + "large eggs", + "all-purpose flour", + "superfine sugar", + "vegetable oil" + ] + }, + { + "id": 9925, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "creole seasoning", + "extra large shrimp", + "worcestershire sauce", + "long grain white rice", + "coarse salt", + "scallions", + "celery ribs", + "lemon", + "garlic cloves" + ] + }, + { + "id": 6521, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "purple onion", + "plum tomatoes", + "avocado", + "chile pepper", + "hot sauce", + "ground black pepper", + "cilantro leaves", + "kosher salt", + "worcestershire sauce", + "fresh lime juice" + ] + }, + { + "id": 14660, + "cuisine": "italian", + "ingredients": [ + "capers", + "golden raisins", + "country style bread", + "caraway seeds", + "dijon mustard", + "white wine vinegar", + "cauliflower", + "kosher salt", + "extra-virgin olive oil", + "black pepper", + "salami" + ] + }, + { + "id": 5402, + "cuisine": "italian", + "ingredients": [ + "medium dry sherry", + "garlic cloves", + "pinenuts", + "extra-virgin olive oil", + "white mushrooms", + "freshly grated parmesan", + "salt", + "penne rigate", + "worcestershire sauce", + "fresh parsley leaves" + ] + }, + { + "id": 38024, + "cuisine": "greek", + "ingredients": [ + "water", + "dried dillweed", + "tomato sauce", + "white rice", + "dried parsley", + "fresh spinach", + "olive oil", + "onions", + "pepper", + "salt" + ] + }, + { + "id": 40575, + "cuisine": "brazilian", + "ingredients": [ + "cachaca", + "lime", + "simple syrup" + ] + }, + { + "id": 29541, + "cuisine": "mexican", + "ingredients": [ + "cooked chicken", + "sour cream", + "green bell pepper", + "grated jack cheese", + "onions", + "dried basil", + "enchilada sauce", + "dried oregano", + "vegetable oil", + "corn tortillas" + ] + }, + { + "id": 12950, + "cuisine": "italian", + "ingredients": [ + "asparagus", + "mustard greens", + "freshly ground pepper", + "ricotta salata", + "large eggs", + "purple onion", + "peasant bread", + "red wine vinegar", + "salt", + "radishes", + "extra-virgin olive oil" + ] + }, + { + "id": 31819, + "cuisine": "french", + "ingredients": [ + "cream", + "butter", + "large eggs", + "baguette", + "vanilla", + "sugar", + "whole milk" + ] + }, + { + "id": 1860, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "ground black pepper", + "onions", + "olive oil", + "salt", + "parmesan cheese", + "garlic cloves", + "fat free less sodium chicken broth", + "green peas" + ] + }, + { + "id": 15985, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "ground cumin", + "tumeric", + "butter", + "chicken broth", + "cinnamon", + "jasmine rice", + "bay leaf" + ] + }, + { + "id": 29553, + "cuisine": "mexican", + "ingredients": [ + "water", + "green peas", + "knorr garlic minicub", + "carrots", + "Knorr Onion Minicubes", + "regular or convert rice", + "vegetable oil" + ] + }, + { + "id": 26251, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "Breakstone’s Sour Cream", + "taco seasoning mix", + "diced tomatoes", + "water", + "lean ground beef", + "shredded mild cheddar cheese", + "tortilla chips" + ] + }, + { + "id": 6137, + "cuisine": "irish", + "ingredients": [ + "cream", + "salt", + "potatoes", + "pepper", + "ham hock", + "chicken stock", + "shredded cabbage" + ] + }, + { + "id": 18538, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "jack cheese", + "salt", + "onions", + "chicken broth", + "fresh cilantro", + "sour cream", + "ground cumin", + "avocado", + "black pepper", + "boneless skinless chicken", + "cabbage", + "tomatoes", + "poblano peppers", + "corn tortillas" + ] + }, + { + "id": 46410, + "cuisine": "jamaican", + "ingredients": [ + "shortening", + "dried thyme", + "dry bread crumbs", + "water", + "all-purpose flour", + "ground beef", + "pepper", + "salt", + "margarine", + "eggs", + "curry powder", + "beef broth", + "onions" + ] + }, + { + "id": 31566, + "cuisine": "italian", + "ingredients": [ + "diced onions", + "potato gnocchi", + "sweet peas", + "water", + "heavy cream", + "ham", + "pepper", + "butter", + "shredded cheese", + "low sodium chicken broth", + "salt" + ] + }, + { + "id": 33115, + "cuisine": "cajun_creole", + "ingredients": [ + "powdered sugar", + "flour", + "butter", + "low-fat milk", + "nutmeg", + "low-fat sour cream", + "baking powder", + "salt", + "eggs", + "sugar", + "cinnamon", + "applesauce", + "brown sugar", + "egg yolks", + "vanilla" + ] + }, + { + "id": 19463, + "cuisine": "mexican", + "ingredients": [ + "lean ground turkey", + "bell pepper", + "salsa", + "shredded cheddar cheese", + "garlic", + "whole wheat penne", + "black beans", + "chili powder", + "onions", + "olive oil", + "salt", + "cumin" + ] + }, + { + "id": 2653, + "cuisine": "mexican", + "ingredients": [ + "scallion greens", + "lime", + "vegetable oil", + "mayonaise", + "jalapeno chilies", + "cilantro leaves", + "fresh corn", + "feta cheese", + "garlic", + "kosher salt", + "chili powder", + "juice" + ] + }, + { + "id": 42426, + "cuisine": "korean", + "ingredients": [ + "eggs", + "sesame seeds", + "green onions", + "oyster mushrooms", + "onions", + "sugar", + "ground black pepper", + "vegetable oil", + "carrots", + "spinach", + "shiitake", + "sesame oil", + "salt", + "noodles", + "soy sauce", + "beef", + "garlic", + "red bell pepper" + ] + }, + { + "id": 13188, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "processed cheese", + "ground beef", + "condensed cream of mushroom soup" + ] + }, + { + "id": 36709, + "cuisine": "greek", + "ingredients": [ + "romaine lettuce", + "red wine vinegar", + "lemon juice", + "tomatoes", + "feta cheese", + "salt", + "gaeta olives", + "extra-virgin olive oil", + "oregano", + "mint", + "kirby cucumbers", + "freshly ground pepper" + ] + }, + { + "id": 5112, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "garlic cloves", + "fat free less sodium chicken broth", + "queso fresco", + "onions", + "pasilla", + "epazote", + "tomatoes", + "cooking spray", + "corn tortillas" + ] + }, + { + "id": 8900, + "cuisine": "italian", + "ingredients": [ + "cheese ravioli", + "pasta sauce", + "frozen chopped spinach", + "shredded mozzarella cheese", + "grated parmesan cheese" + ] + }, + { + "id": 44063, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "diced tomatoes", + "shrimp", + "chicken broth", + "chicken breasts", + "cayenne pepper", + "yellow peppers", + "celery ribs", + "base", + "paprika", + "onions", + "chorizo", + "red pepper", + "rice" + ] + }, + { + "id": 21850, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "prepared mustard", + "garlic cloves", + "fresh basil", + "roasted red peppers", + "salt", + "olive oil flavored cooking spray", + "ground black pepper", + "balsamic vinegar", + "beef tenderloin steaks", + "honey", + "french bread", + "fresh oregano", + "arugula" + ] + }, + { + "id": 32200, + "cuisine": "irish", + "ingredients": [ + "large egg yolks", + "flour", + "sugar", + "grated nutmeg", + "unsalted butter" + ] + }, + { + "id": 2702, + "cuisine": "french", + "ingredients": [ + "bread crumb fresh", + "sea scallops", + "dry white wine", + "California bay leaves", + "water", + "parmigiano reggiano cheese", + "salt", + "onions", + "kosher salt", + "unsalted butter", + "heavy cream", + "flat leaf parsley", + "black pepper", + "large egg yolks", + "mushrooms", + "all-purpose flour" + ] + }, + { + "id": 48716, + "cuisine": "french", + "ingredients": [ + "mayonaise", + "fresh lemon juice", + "capers", + "purple onion", + "tomatoes", + "tuna packed in water", + "olives", + "loaves", + "arugula" + ] + }, + { + "id": 3993, + "cuisine": "spanish", + "ingredients": [ + "chiles", + "pepper", + "red wine vinegar", + "blanched almonds", + "medium shrimp", + "tomatoes", + "kosher salt", + "blanched hazelnuts", + "freshly ground pepper", + "flat leaf parsley", + "mussels", + "warm water", + "monkfish fillets", + "squid", + "smoked paprika", + "clams", + "red chili peppers", + "olive oil", + "crust", + "garlic cloves" + ] + }, + { + "id": 42238, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "peanuts" + ] + }, + { + "id": 36442, + "cuisine": "italian", + "ingredients": [ + "pasta", + "ground black pepper", + "salt", + "carrots", + "fresh rosemary", + "extra-virgin olive oil", + "Progresso Diced Tomatoes", + "parmesan cheese", + "garlic", + "diced celery", + "progresso reduced sodium chicken broth", + "cannellini beans", + "yellow onion", + "golden zucchini" + ] + }, + { + "id": 17281, + "cuisine": "italian", + "ingredients": [ + "warm water", + "grated parmesan cheese", + "provolone cheese", + "olive oil", + "salt", + "bread flour", + "active dry yeast", + "ricotta cheese", + "shredded mozzarella cheese", + "garlic powder", + "frozen broccoli", + "dried oregano" + ] + }, + { + "id": 33317, + "cuisine": "french", + "ingredients": [ + "eggs", + "shredded swiss cheese", + "salt", + "cold water", + "flour", + "crust", + "ground nutmeg", + "bacon", + "cream", + "butter", + "onions" + ] + }, + { + "id": 7307, + "cuisine": "french", + "ingredients": [ + "large eggs", + "sugar", + "chop fine pecan", + "water", + "ground cinnamon", + "frozen pastry puff sheets" + ] + }, + { + "id": 27852, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "salt", + "eggs", + "macaroni", + "cucumber", + "tomatoes", + "tarragon vinegar", + "all-purpose flour", + "green bell pepper", + "butter" + ] + }, + { + "id": 6612, + "cuisine": "mexican", + "ingredients": [ + "lime", + "romaine lettuce leaves", + "pumpkin seeds", + "heirloom tomatoes", + "purple onion", + "raw almond", + "bell pepper", + "garlic", + "sweet corn", + "cilantro", + "sauce" + ] + }, + { + "id": 17730, + "cuisine": "chinese", + "ingredients": [ + "lemon pepper", + "paprika", + "egg roll wrappers", + "garlic pepper seasoning", + "whipped cream cheese" + ] + }, + { + "id": 32117, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "mango", + "cilantro", + "avocado", + "purple onion", + "lime", + "salt" + ] + }, + { + "id": 8740, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "garlic", + "flat leaf parsley", + "canned low sodium chicken broth", + "grated parmesan cheese", + "hot Italian sausages", + "olive oil", + "salt", + "onions", + "dry vermouth", + "whole wheat spaghetti", + "red bell pepper" + ] + }, + { + "id": 13582, + "cuisine": "mexican", + "ingredients": [ + "flank steak", + "chipotle peppers", + "olive oil" + ] + }, + { + "id": 4668, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "cooked chicken", + "chopped cilantro fresh", + "black beans", + "enchilada sauce", + "green chile", + "wonton wrappers", + "green onions", + "Mexican cheese" + ] + }, + { + "id": 28485, + "cuisine": "british", + "ingredients": [ + "ground black pepper", + "vegetable oil", + "fresh lime juice", + "pitted date", + "bay leaves", + "pheasant", + "sugar", + "dried apricot", + "gran marnier", + "dried thyme", + "dry white wine", + "thyme sprigs" + ] + }, + { + "id": 23735, + "cuisine": "french", + "ingredients": [ + "whole almonds", + "honey", + "whipping cream", + "saffron threads", + "sugar", + "whole milk", + "brown sugar", + "water", + "dried lavender blossoms", + "grated orange peel", + "large egg yolks", + "salt" + ] + }, + { + "id": 15268, + "cuisine": "japanese", + "ingredients": [ + "lychees", + "winesap", + "chili powder", + "unsalted dry roast peanuts", + "asian fish sauce", + "golden delicious apples", + "scallions", + "cayenne", + "bacon", + "fresh lime juice" + ] + }, + { + "id": 43494, + "cuisine": "italian", + "ingredients": [ + "eggs", + "paprika", + "ground black pepper", + "fresh basil leaves", + "minced onion", + "canola oil", + "minced garlic", + "flat leaf parsley" + ] + }, + { + "id": 272, + "cuisine": "british", + "ingredients": [ + "corn", + "potatoes", + "garlic", + "onions", + "tomato purée", + "olive oil", + "worcestershire sauce", + "carrots", + "chicken stock", + "rosemary", + "butter", + "salt", + "pepper", + "beef", + "peas", + "thyme" + ] + }, + { + "id": 37517, + "cuisine": "italian", + "ingredients": [ + "friselle", + "baby arugula", + "garlic cloves", + "burrata", + "extra-virgin olive oil", + "lemon" + ] + }, + { + "id": 47947, + "cuisine": "irish", + "ingredients": [ + "light brown sugar", + "Irish whiskey", + "bananas", + "butter" + ] + }, + { + "id": 45707, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "peeled fresh ginger", + "shaoxing", + "lower sodium chicken broth", + "lower sodium soy sauce", + "cilantro sprigs", + "large shrimp", + "minced garlic", + "green onions", + "corn starch", + "sugar", + "jalapeno chilies", + "dark sesame oil", + "canola oil" + ] + }, + { + "id": 12814, + "cuisine": "thai", + "ingredients": [ + "eggs", + "minced garlic", + "lime wedges", + "beansprouts", + "sugar", + "peanuts", + "salt", + "sliced green onions", + "fish sauce", + "lime juice", + "vegetable oil", + "chopped cilantro", + "rice stick noodles", + "ketchup", + "boneless skinless chicken breasts", + "creamy peanut butter" + ] + }, + { + "id": 4549, + "cuisine": "thai", + "ingredients": [ + "cooked rice", + "thai basil", + "vegetable oil", + "kosher salt", + "flour", + "cilantro leaves", + "reduced sodium chicken broth", + "jalapeno chilies", + "large garlic cloves", + "fresh ginger", + "shallots", + "rotisserie chicken" + ] + }, + { + "id": 5359, + "cuisine": "filipino", + "ingredients": [ + "glutinous rice", + "coconut cream", + "light brown sugar", + "banana leaves", + "coconut milk", + "pandanus leaf", + "dark brown sugar", + "coconut oil", + "salt" + ] + }, + { + "id": 25672, + "cuisine": "thai", + "ingredients": [ + "lime rind", + "crushed red pepper", + "chopped fresh mint", + "fish sauce", + "shallots", + "fresh lemon juice", + "green cabbage", + "ground turkey breast", + "grated lemon zest", + "serrano chile", + "brown sugar", + "vegetable oil", + "fresh lime juice" + ] + }, + { + "id": 26482, + "cuisine": "jamaican", + "ingredients": [ + "red kidney beans", + "garlic cloves", + "white rice", + "unsweetened coconut milk", + "scallions", + "pepper", + "thyme" + ] + }, + { + "id": 39764, + "cuisine": "spanish", + "ingredients": [ + "grape tomatoes", + "ground red pepper", + "salt", + "fresh lime juice", + "black pepper", + "paprika", + "chopped onion", + "ground cumin", + "lower sodium chicken broth", + "large garlic cloves", + "greek style plain yogurt", + "medium shrimp", + "fresh cilantro", + "extra-virgin olive oil", + "english cucumber" + ] + }, + { + "id": 41410, + "cuisine": "moroccan", + "ingredients": [ + "egg yolks", + "cardamom", + "butter", + "raw almond", + "cinnamon", + "confectioners sugar", + "phyllo dough", + "vanilla" + ] + }, + { + "id": 9078, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "granulated sugar", + "all-purpose flour", + "milk", + "large eggs", + "ground nutmeg", + "baking powder", + "ground cinnamon", + "unsalted butter", + "peach slices" + ] + }, + { + "id": 2385, + "cuisine": "italian", + "ingredients": [ + "fresh oregano leaves", + "sea salt", + "freshly ground pepper", + "olive oil", + "purple onion", + "capers", + "grated parmesan cheese", + "pizza doughs", + "kosher salt", + "cheese", + "celery root" + ] + }, + { + "id": 13521, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "queso fresco", + "masa harina", + "white onion", + "chopped cilantro fresh", + "warm water", + "salt", + "vegetable oil", + "serrano chile" + ] + }, + { + "id": 34838, + "cuisine": "thai", + "ingredients": [ + "cooked rice", + "chili powder", + "carrots", + "soy sauce", + "salt", + "onions", + "fish sauce", + "garlic", + "shrimp", + "eggs", + "black pepper", + "oil" + ] + }, + { + "id": 34936, + "cuisine": "japanese", + "ingredients": [ + "dried bonito flakes", + "water", + "konbu" + ] + }, + { + "id": 15105, + "cuisine": "chinese", + "ingredients": [ + "water", + "salt", + "baking powder", + "bread flour", + "instant yeast", + "oil", + "sugar", + "vegetable oil" + ] + }, + { + "id": 45684, + "cuisine": "mexican", + "ingredients": [ + "green chilies", + "vegetable oil", + "onions", + "whipping cream", + "garlic cloves" + ] + }, + { + "id": 8037, + "cuisine": "chinese", + "ingredients": [ + "miso", + "duck", + "pepper", + "salt", + "ginger", + "onions", + "honey", + "rice vinegar" + ] + }, + { + "id": 13870, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "lime juice", + "chicken drumsticks", + "orange juice", + "avocado", + "ground cloves", + "ground nutmeg", + "cilantro", + "Jamaican allspice", + "lime", + "pineapple", + "ground cayenne pepper", + "ground ginger", + "black pepper", + "Himalayan salt", + "salt" + ] + }, + { + "id": 25098, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "applewood smoked bacon", + "shallots", + "kosher salt", + "whole milk ricotta cheese", + "large eggs", + "greens" + ] + }, + { + "id": 37848, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "fat free cream cheese", + "honey", + "chopped walnuts", + "apricot halves", + "chopped fresh mint", + "ground nutmeg", + "lemon juice" + ] + }, + { + "id": 26650, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "chicken breasts", + "salt", + "fresh parsley", + "black pepper", + "butter", + "orange juice", + "ground cumin", + "chicken broth", + "cinnamon", + "all-purpose flour", + "onions", + "golden raisins", + "kalamata", + "couscous" + ] + }, + { + "id": 15200, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "baking powder", + "shredded cheddar cheese", + "buttermilk", + "sugar", + "butter", + "soft-wheat flour", + "chopped fresh chives" + ] + }, + { + "id": 5942, + "cuisine": "irish", + "ingredients": [ + "eggs", + "butter", + "milk", + "vanilla extract", + "sugar", + "raisins", + "self rising flour", + "dried cranberries" + ] + }, + { + "id": 18084, + "cuisine": "southern_us", + "ingredients": [ + "water", + "sharp cheddar cheese", + "fresh lemon juice", + "butter", + "grit quick", + "thick-cut bacon", + "cajun seasoning", + "scallions", + "shrimp", + "chicken stock cubes", + "garlic cloves" + ] + }, + { + "id": 22224, + "cuisine": "french", + "ingredients": [ + "aquavit", + "white wine vinegar", + "bay leaf", + "shredded cabbage", + "dried pear", + "sauerkraut", + "kielbasa", + "onions", + "caraway seeds", + "bacon slices", + "low salt chicken broth" + ] + }, + { + "id": 39810, + "cuisine": "italian", + "ingredients": [ + "water", + "all-purpose flour", + "extra-virgin olive oil", + "active dry yeast", + "salt" + ] + }, + { + "id": 46182, + "cuisine": "spanish", + "ingredients": [ + "chicken broth", + "sliced almonds", + "garlic", + "chopped cilantro", + "sausage casings", + "lemon", + "smoked paprika", + "green olives", + "hot pepper sauce", + "scallions", + "frozen peas", + "saffron threads", + "jumbo shrimp", + "extra-virgin olive oil", + "couscous" + ] + }, + { + "id": 3691, + "cuisine": "thai", + "ingredients": [ + "mint leaves", + "peanut sauce", + "shrimp", + "bacon", + "roasted peanuts", + "beansprouts", + "lettuce leaves", + "cilantro leaves", + "chinese chives", + "sugar", + "rice vermicelli", + "carrots", + "rice paper" + ] + }, + { + "id": 37162, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "corn starch", + "boneless skinless chicken breast halves", + "water", + "broccoli", + "onions", + "dark soy sauce", + "garlic", + "bok choy", + "ground black pepper", + "oyster sauce", + "white sugar" + ] + }, + { + "id": 48711, + "cuisine": "russian", + "ingredients": [ + "milk", + "poppy seeds", + "sugar", + "vegetable oil", + "cottage cheese", + "raisins", + "eggs", + "flour", + "salt" + ] + }, + { + "id": 26376, + "cuisine": "spanish", + "ingredients": [ + "rock shrimp", + "worcestershire sauce", + "lemon juice", + "tomato juice", + "salt", + "red bell pepper", + "pepper", + "garlic", + "cucumber", + "tomatoes", + "red wine vinegar", + "hot sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 19189, + "cuisine": "japanese", + "ingredients": [ + "water", + "sato imo", + "shiro miso", + "daikon", + "komatsuna", + "rice cakes", + "konbu", + "silken tofu", + "zest", + "carrots" + ] + }, + { + "id": 18342, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "lime", + "coriander", + "tomatoes", + "garlic cloves", + "jalapeno chilies" + ] + }, + { + "id": 41902, + "cuisine": "cajun_creole", + "ingredients": [ + "seasoning", + "honey", + "fresh lemon juice", + "sunflower seeds", + "roasted red peppers", + "ripe olives", + "romaine lettuce", + "olive oil", + "sliced mushrooms", + "creole mustard", + "crawfish", + "large eggs", + "sliced green onions" + ] + }, + { + "id": 23623, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "whole kernel corn, drain", + "dried oregano", + "vegetable oil", + "boneless skinless chicken breast halves", + "chili powder", + "corn tortillas", + "ground cumin", + "chicken broth", + "salsa", + "chopped cilantro fresh" + ] + }, + { + "id": 28950, + "cuisine": "french", + "ingredients": [ + "milk", + "fresh tarragon", + "eggs", + "butter", + "grated parmesan cheese", + "zucchini", + "whipping cream" + ] + }, + { + "id": 41570, + "cuisine": "cajun_creole", + "ingredients": [ + "mozzarella cheese", + "butter", + "shrimp", + "black pepper", + "flour", + "garlic", + "whole wheat pasta", + "milk", + "asiago", + "kosher salt", + "cajun seasoning", + "broccoli" + ] + }, + { + "id": 26701, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "green enchilada sauce", + "chopped cilantro", + "chili powder", + "sour cream", + "cumin", + "boneless skinless chicken breasts", + "diced tomatoes", + "onions", + "vegetable oil", + "corn tortillas" + ] + }, + { + "id": 28727, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cold water", + "extra-virgin olive oil", + "large garlic cloves", + "great northern beans", + "chopped fresh sage" + ] + }, + { + "id": 46179, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "jalapeno chilies", + "rice", + "onions", + "blue crabs", + "peeled tomatoes", + "chopped fresh thyme", + "flat leaf parsley", + "sausage casings", + "ground black pepper", + "salt", + "medium shrimp", + "shrimp stock", + "lump crab meat", + "gumbo file", + "okra", + "roux" + ] + }, + { + "id": 41772, + "cuisine": "southern_us", + "ingredients": [ + "melon liqueur", + "pineapple juice", + "Jagermeister Liqueur", + "liqueur", + "coconut rum" + ] + }, + { + "id": 44881, + "cuisine": "spanish", + "ingredients": [ + "jalapeno chilies", + "orange juice", + "plum tomatoes", + "ketchup", + "purple onion", + "fresh lime juice", + "green onions", + "cucumber", + "lump crab meat", + "hot sauce", + "chopped cilantro fresh" + ] + }, + { + "id": 38797, + "cuisine": "greek", + "ingredients": [ + "black pepper", + "shallots", + "lemon juice", + "eggs", + "zucchini", + "salt", + "chopped fresh mint", + "olive oil", + "garlic", + "fresh parsley", + "water", + "white rice", + "ground beef" + ] + }, + { + "id": 34089, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "onion powder", + "garlic powder", + "salt", + "dried thyme", + "paprika", + "white pepper", + "chili powder", + "dried oregano" + ] + }, + { + "id": 9327, + "cuisine": "british", + "ingredients": [ + "pepper", + "all-purpose flour", + "vegetable oil", + "milk", + "pork sausages", + "eggs", + "salt" + ] + }, + { + "id": 14414, + "cuisine": "mexican", + "ingredients": [ + "white corn tortillas", + "butter", + "shredded cheese", + "tomatoes", + "cooked chicken", + "frozen corn", + "onions", + "black beans", + "garlic", + "enchilada sauce", + "cooked rice", + "spices", + "salsa" + ] + }, + { + "id": 46906, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "salt", + "large shrimp", + "dry sherry", + "bay leaf", + "red pepper flakes", + "lemon juice", + "olive oil", + "garlic", + "fresh parsley" + ] + }, + { + "id": 31001, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "cumin", + "salt", + "chicken", + "pepper", + "salsa", + "shredded Monterey Jack cheese", + "flour tortillas", + "cream cheese" + ] + }, + { + "id": 19501, + "cuisine": "indian", + "ingredients": [ + "green chilies", + "teas", + "onions", + "water", + "oil", + "salt", + "chicken" + ] + }, + { + "id": 11167, + "cuisine": "southern_us", + "ingredients": [ + "fat free yogurt", + "cooking spray", + "butter", + "cake flour", + "sugar", + "baking soda", + "extract", + "frosting", + "fat free milk", + "vegetable oil", + "vanilla extract", + "large egg whites", + "baking powder", + "sweetened coconut flakes", + "salt" + ] + }, + { + "id": 25274, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "peanut butter", + "onions", + "black pepper", + "ginger", + "coconut milk", + "tumeric", + "chopped tomatoes", + "garlic cloves", + "chicken thighs", + "curry powder", + "salt", + "chillies" + ] + }, + { + "id": 42896, + "cuisine": "italian", + "ingredients": [ + "lean ground beef", + "cream cheese", + "italian seasoning", + "tomato sauce", + "diced tomatoes", + "fresh parsley", + "fennel seeds", + "ricotta cheese", + "shredded mozzarella cheese", + "pepper", + "salt", + "noodles" + ] + }, + { + "id": 36971, + "cuisine": "italian", + "ingredients": [ + "canned low sodium chicken broth", + "artichoke hearts", + "salt", + "dried thyme", + "dry white wine", + "boiling potatoes", + "crushed tomatoes", + "ground black pepper", + "fresh parsley", + "italian sausage", + "olive oil", + "garlic" + ] + }, + { + "id": 40658, + "cuisine": "indian", + "ingredients": [ + "water", + "mustard oil", + "salt", + "pigeon peas", + "ground turmeric", + "red chili peppers", + "cumin seed" + ] + }, + { + "id": 10336, + "cuisine": "jamaican", + "ingredients": [ + "yukon gold potatoes", + "freshly ground pepper", + "ground turmeric", + "piecrust", + "salt", + "carrots", + "vegetable oil", + "garlic cloves", + "jalapeno chilies", + "ground allspice", + "onions" + ] + }, + { + "id": 42271, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "black-eyed peas", + "cajun seasoning", + "long grain white rice", + "kosher salt", + "green onions", + "yellow onion", + "celery ribs", + "smoked bacon", + "apple cider vinegar", + "garlic cloves", + "green bell pepper", + "bay leaves", + "diced tomatoes" + ] + }, + { + "id": 41320, + "cuisine": "southern_us", + "ingredients": [ + "seasoning salt", + "spices", + "cheese", + "thyme", + "macaroni", + "paprika", + "all-purpose flour", + "ground black pepper", + "butter", + "salt", + "eggs", + "whole milk", + "dry mustard", + "cayenne pepper" + ] + }, + { + "id": 28651, + "cuisine": "italian", + "ingredients": [ + "milk", + "polenta", + "salt", + "fat skimmed chicken broth", + "grated parmesan cheese" + ] + }, + { + "id": 35315, + "cuisine": "japanese", + "ingredients": [ + "sea bass fillets", + "sugar", + "scallions", + "sake", + "ginger", + "soy sauce" + ] + }, + { + "id": 28203, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "garlic", + "lime juice", + "water", + "white sugar", + "crushed red pepper flakes" + ] + }, + { + "id": 38789, + "cuisine": "french", + "ingredients": [ + "ice water", + "all-purpose flour", + "salt", + "unsalted butter" + ] + }, + { + "id": 37667, + "cuisine": "southern_us", + "ingredients": [ + "fresh tomatoes", + "minced garlic", + "cracked black pepper", + "lemon juice", + "vidalia onion", + "jumbo shrimp", + "asiago", + "salt", + "fresh parsley", + "green bell pepper", + "pepper", + "heavy cream", + "goat cheese", + "grits", + "chicken stock", + "cheddar cheese", + "hungarian paprika", + "extra-virgin olive oil", + "sour cream" + ] + }, + { + "id": 1213, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "peanuts" + ] + }, + { + "id": 17874, + "cuisine": "italian", + "ingredients": [ + "medium eggs", + "grated parmesan cheese", + "plum tomatoes", + "vegetable oil spray", + "low salt chicken broth", + "yellow corn meal", + "butter", + "fresh leav spinach", + "grated Gruyère cheese" + ] + }, + { + "id": 20590, + "cuisine": "japanese", + "ingredients": [ + "water", + "napa cabbage", + "soba", + "brown sugar", + "sesame seeds", + "ginger", + "chopped garlic", + "soy sauce", + "vegetable oil", + "scallions", + "frozen shelled edamame", + "fresh shiitake mushrooms", + "Gochujang base" + ] + }, + { + "id": 11181, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "herbs", + "Flora Cuisine", + "bay leaf", + "sage", + "canned chopped tomatoes", + "flour", + "minced beef", + "prepared lasagne", + "rosemary", + "Knorr Beef Stock Cubes", + "garlic", + "onions", + "parmesan cheese", + "red wine", + "freshly ground pepper", + "oregano" + ] + }, + { + "id": 36002, + "cuisine": "indian", + "ingredients": [ + "crushed tomatoes", + "curry", + "potatoes", + "onions", + "olive oil", + "salt", + "pepper", + "vegetable stock" + ] + }, + { + "id": 20118, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "flour", + "ground cumin", + "lime juice", + "crushed red pepper flakes", + "water", + "Mexican oregano", + "tomato paste", + "olive oil", + "salt" + ] + }, + { + "id": 38685, + "cuisine": "jamaican", + "ingredients": [ + "kale", + "vegetable oil", + "garlic", + "ground coriander", + "lime juice", + "sweet potatoes", + "peas", + "okra", + "fresh ginger root", + "diced tomatoes", + "ground allspice", + "ground turmeric", + "dried thyme", + "vegetable stock", + "chopped onion", + "coconut milk" + ] + }, + { + "id": 40751, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "large egg yolks", + "sugar", + "corn starch", + "half & half" + ] + }, + { + "id": 33254, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chicken", + "shredded low-fat cheddar cheese", + "whole wheat tortillas", + "barbecue sauce", + "vidalia onion", + "shredded lowfat monterey jack cheese" + ] + }, + { + "id": 44927, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "ground black pepper", + "pork roast", + "olive oil", + "garlic", + "chopped cilantro fresh", + "kosher salt", + "dry sherry", + "red bell pepper", + "fennel", + "yellow onion", + "long grain white rice" + ] + }, + { + "id": 21921, + "cuisine": "irish", + "ingredients": [ + "sugar", + "vanilla extract", + "melted butter", + "large eggs", + "all-purpose flour", + "milk", + "salt", + "powdered sugar", + "butter", + "fresh lemon juice" + ] + }, + { + "id": 18574, + "cuisine": "italian", + "ingredients": [ + "pomegranate seeds", + "huckleberries", + "mostarda" + ] + }, + { + "id": 30342, + "cuisine": "korean", + "ingredients": [ + "zucchini", + "vegetable oil", + "noodles", + "water", + "green onions", + "cucumber", + "sugar", + "pork loin", + "carrots", + "cabbage", + "shiitake", + "bean paste", + "onions" + ] + }, + { + "id": 6794, + "cuisine": "russian", + "ingredients": [ + "unsalted butter", + "bittersweet chocolate", + "sugar", + "walnuts", + "matzo meal", + "large eggs", + "walnut halves", + "chocolate" + ] + }, + { + "id": 49372, + "cuisine": "italian", + "ingredients": [ + "pasta", + "salami", + "green pepper", + "cheddar cheese", + "zesty italian dressing", + "ham", + "cauliflower", + "mozzarella cheese", + "broccoli", + "pepperoni slices", + "red pepper", + "yellow peppers" + ] + }, + { + "id": 35942, + "cuisine": "russian", + "ingredients": [ + "tumeric", + "olive oil", + "summer savory", + "water", + "large garlic cloves", + "kosher salt", + "coriander seeds", + "pork shoulder", + "fresh cilantro", + "purple onion" + ] + }, + { + "id": 42288, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "black beans", + "cooked quinoa", + "cheddar cheese", + "cilantro", + "tomatoes", + "zucchini", + "taco sauce", + "salt" + ] + }, + { + "id": 30439, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "carrots", + "color food orang", + "saffron", + "cardamom", + "milk", + "ghee" + ] + }, + { + "id": 36699, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "kale", + "diced tomatoes", + "chopped onion", + "water", + "zucchini", + "crushed red pepper", + "carrots", + "fat free less sodium chicken broth", + "fennel bulb", + "chopped celery", + "garlic cloves", + "tomato paste", + "dried basil", + "bacon", + "salt", + "borlotti beans" + ] + }, + { + "id": 31845, + "cuisine": "mexican", + "ingredients": [ + "grated parmesan cheese", + "shuck corn", + "ground cumin", + "cooking spray", + "salt", + "ground red pepper", + "fresh lime juice", + "chili powder", + "fat-free mayonnaise" + ] + }, + { + "id": 3453, + "cuisine": "italian", + "ingredients": [ + "eggs", + "olive oil", + "sea salt", + "yellow onion", + "ground beef", + "unseasoned breadcrumbs", + "italian plum tomatoes", + "extra-virgin olive oil", + "carrots", + "pork sausages", + "fresh basil", + "ground black pepper", + "basil", + "grated parmesan romano", + "spaghetti", + "tomato paste", + "brown mushroom", + "red wine", + "salt", + "flat leaf parsley", + "chopped garlic" + ] + }, + { + "id": 38456, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "red wine vinegar", + "boneless skinless chicken breast halves", + "sesame oil", + "ground allspice", + "habanero pepper", + "garlic", + "brown sugar", + "chopped fresh thyme", + "onions" + ] + }, + { + "id": 34227, + "cuisine": "japanese", + "ingredients": [ + "edamame", + "sea salt", + "chipotles in adobo", + "ground black pepper", + "garlic cloves", + "extra-virgin olive oil", + "ground cumin" + ] + }, + { + "id": 14486, + "cuisine": "italian", + "ingredients": [ + "fat free less sodium chicken broth", + "butter", + "salt", + "cooking spray", + "1% low-fat milk", + "turkey breast", + "pepper", + "dry sherry", + "all-purpose flour", + "reduced fat sharp cheddar cheese", + "mushrooms", + "chopped celery", + "spaghetti" + ] + }, + { + "id": 2346, + "cuisine": "mexican", + "ingredients": [ + "picante sauce", + "pepper jack", + "chile pepper", + "chopped onion", + "chopped cilantro", + "chile powder", + "minced garlic", + "half & half", + "salt", + "sour cream", + "shredded cheddar cheese", + "large eggs", + "butter", + "red bell pepper", + "black pepper", + "chorizo", + "Tabasco Pepper Sauce", + "onion tops", + "corn tortillas" + ] + }, + { + "id": 37157, + "cuisine": "italian", + "ingredients": [ + "mascarpone", + "basil", + "onions", + "tomatoes", + "tubetti", + "crushed red pepper", + "tomato paste", + "herbs", + "extra-virgin olive oil", + "boiling water", + "vegetable bouillon", + "yukon gold potatoes", + "salt" + ] + }, + { + "id": 8049, + "cuisine": "mexican", + "ingredients": [ + "frozen tater tots", + "taco seasoning", + "chopped onion", + "condensed fiesta nacho cheese soup", + "ground beef", + "water", + "whole kernel corn, drain" + ] + }, + { + "id": 42506, + "cuisine": "spanish", + "ingredients": [ + "water", + "cooking spray", + "sugar", + "reduced fat milk", + "large egg whites", + "vanilla extract", + "large eggs", + "sweetened condensed milk" + ] + }, + { + "id": 25945, + "cuisine": "french", + "ingredients": [ + "hazelnuts", + "golden raisins", + "walnut pieces", + "chocolate", + "almonds", + "pinenuts", + "pistachio nuts" + ] + }, + { + "id": 34538, + "cuisine": "vietnamese", + "ingredients": [ + "red chili peppers", + "carrots", + "bread rolls", + "spring onions", + "fresh mint", + "fresh coriander", + "cucumber", + "mayonaise", + "sausages", + "cabbage" + ] + }, + { + "id": 10870, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "dark soy sauce", + "shallots", + "tofu", + "green onions", + "red chili peppers", + "dried shrimp" + ] + }, + { + "id": 23625, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "fresh lime juice", + "fresh ginger", + "olive oil", + "large shrimp", + "mango chutney" + ] + }, + { + "id": 22081, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "lentils", + "mint", + "potatoes", + "green chilies", + "onions", + "curry leaves", + "tamarind", + "fenugreek seeds", + "mustard seeds", + "garlic paste", + "spices", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 6197, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chopped onion", + "canola oil", + "tomato sauce", + "chili powder", + "garlic cloves", + "jalapeno chilies", + "ground coriander", + "ground cumin", + "taco shells", + "salt", + "ground beef" + ] + }, + { + "id": 8041, + "cuisine": "jamaican", + "ingredients": [ + "grated nutmeg", + "fresh lime juice", + "orange slices", + "grenadine syrup", + "white rum", + "pineapple juice", + "pineapple slices", + "fresh orange juice", + "light rum" + ] + }, + { + "id": 33301, + "cuisine": "vietnamese", + "ingredients": [ + "pickles", + "mint leaves", + "salt", + "shrimp", + "rice paper", + "fish sauce", + "water", + "butter", + "oil", + "beansprouts", + "lean ground pork", + "shallots", + "crabmeat", + "ground white pepper", + "sugar", + "egg whites", + "garlic", + "carrots", + "dried wood ear mushrooms" + ] + }, + { + "id": 2735, + "cuisine": "italian", + "ingredients": [ + "parmigiano reggiano cheese", + "lemon juice", + "fettucine", + "extra-virgin olive oil", + "fresh asparagus", + "pepper", + "salt", + "pistachios", + "fresh parsley" + ] + }, + { + "id": 8577, + "cuisine": "korean", + "ingredients": [ + "honey", + "ginger", + "soy sauce", + "green onions", + "oil", + "sesame seeds", + "beef rib short", + "water", + "apple cider", + "garlic cloves" + ] + }, + { + "id": 18921, + "cuisine": "mexican", + "ingredients": [ + "chicken and rice soup", + "tomato sauce", + "tortilla chips", + "diced tomatoes", + "shredded cheddar cheese" + ] + }, + { + "id": 48003, + "cuisine": "mexican", + "ingredients": [ + "sweet onion", + "cream of chicken soup", + "soup", + "cilantro", + "taco seasoning", + "tomatoes", + "olive oil", + "flavored tortilla chips", + "red pepper", + "salt", + "chili", + "poblano peppers", + "green onions", + "garlic", + "sour cream", + "black pepper", + "Mexican cheese blend", + "half & half", + "shredded lettuce", + "roasting chickens" + ] + }, + { + "id": 20490, + "cuisine": "japanese", + "ingredients": [ + "dashi", + "firm tofu", + "miso", + "water", + "scallions" + ] + }, + { + "id": 23957, + "cuisine": "southern_us", + "ingredients": [ + "mini marshmallows", + "salt", + "unsweetened cocoa powder", + "sugar", + "butter", + "chocolate baking bar", + "powdered sugar", + "large eggs", + "all-purpose flour", + "milk", + "vanilla extract", + "chopped pecans" + ] + }, + { + "id": 37938, + "cuisine": "italian", + "ingredients": [ + "pitted kalamata olives", + "fresh parmesan cheese", + "shredded reduced fat cheddar cheese", + "dough", + "jalapeno chilies" + ] + }, + { + "id": 1028, + "cuisine": "southern_us", + "ingredients": [ + "condensed cream of celery soup", + "biscuit dough", + "onions", + "chicken broth", + "boneless skinless chicken breasts", + "rib", + "condensed cream of chicken soup", + "onion powder", + "frozen peas and carrots", + "garlic powder", + "poultry seasoning" + ] + }, + { + "id": 9044, + "cuisine": "indian", + "ingredients": [ + "fresh dill", + "olive oil", + "chopped almonds", + "garlic", + "coconut milk", + "sweet onion", + "garam masala", + "harissa", + "goat cheese", + "naan", + "fresh cilantro", + "fresh ginger", + "jalapeno chilies", + "crushed red pepper", + "sun-dried tomatoes in oil", + "eggs", + "lime", + "whole peeled tomatoes", + "chili powder", + "smoked paprika", + "ground cumin" + ] + }, + { + "id": 25170, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "egg noodles", + "capellini", + "chopped cilantro fresh", + "celery ribs", + "water", + "vegetable broth", + "fresh parsley", + "tomatoes", + "unsalted butter", + "dried chickpeas", + "onions", + "black pepper", + "cinnamon", + "lentils" + ] + }, + { + "id": 15431, + "cuisine": "indian", + "ingredients": [ + "pepper", + "head cauliflower", + "extra-virgin olive oil", + "chopped parsley", + "ground cumin", + "garam masala", + "diced tomatoes", + "salt", + "onions", + "minced ginger", + "large garlic cloves", + "vegetable broth", + "bay leaf", + "red potato", + "chili powder", + "raw cashews", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 28995, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "ground black pepper", + "greens", + "store bought low sodium chicken stock", + "dumplings", + "kosher salt", + "szechwan peppercorns", + "canola oil", + "shiitake", + "bamboo shoots" + ] + }, + { + "id": 21105, + "cuisine": "greek", + "ingredients": [ + "water", + "white sugar", + "phyllo dough", + "vanilla extract", + "chopped nuts", + "honey", + "ground cinnamon", + "butter" + ] + }, + { + "id": 33012, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic", + "Sriracha", + "purple onion", + "kosher salt", + "jalapeno chilies", + "ground cumin", + "avocado", + "roma tomatoes", + "chopped cilantro" + ] + }, + { + "id": 7729, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "pepper jack", + "all-purpose flour", + "roast breast of chicken", + "garlic powder", + "shredded sharp cheddar cheese", + "ground cumin", + "pepper", + "butter", + "tortilla chips", + "chicken broth", + "poblano peppers", + "salt" + ] + }, + { + "id": 12647, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "ginger syrup", + "dry sherry", + "purple onion", + "onions", + "olive oil", + "ice water", + "raspberry vinegar", + "crème fraîche", + "wild mushrooms", + "ground black pepper", + "red wine", + "garlic", + "all-purpose flour", + "eggs", + "butter", + "vegetable broth", + "salt", + "celery root" + ] + }, + { + "id": 16360, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "salt", + "onions", + "green chile", + "diced tomatoes", + "boneless pork loin", + "ground cumin", + "hot pepper sauce", + "frozen corn", + "dried oregano", + "shredded cheddar cheese", + "garlic", + "yams" + ] + }, + { + "id": 40798, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "fresh thyme", + "fresh oregano", + "polenta", + "black pepper", + "mushrooms", + "garlic cloves", + "cremini mushrooms", + "reduced fat milk", + "organic vegetable broth", + "olive oil", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 13363, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "red pepper flakes", + "thyme", + "chicken broth", + "cayenne", + "white rice", + "large shrimp", + "italian sausage", + "chopped tomatoes", + "paprika", + "onions", + "pepper", + "chili powder", + "garlic cloves", + "chicken" + ] + }, + { + "id": 21469, + "cuisine": "japanese", + "ingredients": [ + "eggplant", + "sake", + "mirin", + "hatcho miso", + "granulated sugar", + "sesame seeds", + "vegetable oil" + ] + }, + { + "id": 38962, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "yukon gold potatoes", + "salt", + "chopped cilantro fresh", + "ground black pepper", + "peas", + "cayenne pepper", + "ground cumin", + "garam masala", + "vegetable oil", + "yellow onion", + "ground turmeric", + "water", + "brown mustard seeds", + "cauliflower florets", + "garlic cloves" + ] + }, + { + "id": 46601, + "cuisine": "mexican", + "ingredients": [ + "sweet potatoes", + "salt", + "dried oregano", + "chili powder", + "enchilada sauce", + "ground cumin", + "green onions", + "cream cheese", + "shredded Monterey Jack cheese", + "ground black pepper", + "vegetable oil", + "corn tortillas" + ] + }, + { + "id": 47435, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "water", + "all-purpose flour", + "mozzarella cheese", + "ricotta cheese", + "romano cheese", + "vegetable oil", + "fresh parsley", + "eggs", + "pepper", + "salt" + ] + }, + { + "id": 22812, + "cuisine": "british", + "ingredients": [ + "pork", + "veal", + "lemon rind", + "plain flour", + "pepper", + "salt", + "eggs", + "suet", + "grated nutmeg", + "bread crumb fresh", + "herbs", + "chopped fresh sage" + ] + }, + { + "id": 30223, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger root", + "mandarin oranges", + "white sugar", + "soy sauce", + "sesame oil", + "carp", + "chicken stock", + "green onions", + "salt", + "chopped garlic", + "black bean sauce", + "dry sherry", + "corn starch" + ] + }, + { + "id": 49508, + "cuisine": "french", + "ingredients": [ + "fresh parmesan cheese", + "cooking spray", + "baking potatoes", + "baguette", + "crumbled blue cheese", + "shallots", + "salt", + "olive oil", + "reduced fat milk", + "chopped fresh thyme", + "chopped onion", + "fat free less sodium chicken broth", + "ground black pepper", + "dry white wine", + "garlic" + ] + }, + { + "id": 47169, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "chili powder", + "crushed red pepper flakes", + "cooked quinoa", + "black beans", + "sea salt", + "frozen corn kernels", + "95% lean ground beef", + "black pepper", + "onion powder", + "non-fat sour cream", + "oregano", + "garlic powder", + "paprika", + "red enchilada sauce", + "ground cumin" + ] + }, + { + "id": 47004, + "cuisine": "greek", + "ingredients": [ + "feta cheese crumbles", + "zucchini", + "fresh mint", + "orzo", + "japanese eggplants", + "greek-style vinaigrette", + "red bell pepper" + ] + }, + { + "id": 15673, + "cuisine": "southern_us", + "ingredients": [ + "batter", + "beef broth", + "vegetable oil", + "barbecue sauce", + "barbecued pork", + "sweet onion", + "all-purpose flour" + ] + }, + { + "id": 5568, + "cuisine": "russian", + "ingredients": [ + "milk", + "butter", + "plain flour", + "large eggs", + "walnuts", + "caster sugar", + "baking powder", + "apricots", + "honey", + "dry bread crumbs" + ] + }, + { + "id": 35775, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "green onions", + "ground black pepper", + "hass avocado", + "lime", + "salt", + "jalapeno chilies", + "chopped cilantro fresh" + ] + }, + { + "id": 40923, + "cuisine": "italian", + "ingredients": [ + "kale", + "marinara sauce", + "salt", + "eggs", + "part-skim mozzarella cheese", + "garlic", + "olive oil", + "mushrooms", + "noodles", + "pepper", + "grated parmesan cheese", + "part-skim ricotta cheese" + ] + }, + { + "id": 23177, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dry yeast", + "bread flour", + "fat free milk", + "salt", + "fresh chives", + "prosciutto", + "provolone cheese", + "semolina", + "cooking spray" + ] + }, + { + "id": 29267, + "cuisine": "brazilian", + "ingredients": [ + "sweetened condensed milk", + "roasted peanuts", + "biscuits", + "white sugar" + ] + }, + { + "id": 6722, + "cuisine": "italian", + "ingredients": [ + "radicchio", + "fresh lemon juice", + "fennel bulb", + "extra-virgin olive oil", + "bibb lettuce", + "carrots" + ] + }, + { + "id": 11976, + "cuisine": "mexican", + "ingredients": [ + "lime", + "chile pepper", + "onions", + "habanero pepper", + "canned tomatoes", + "ground black pepper", + "garlic", + "white sugar", + "fresh cilantro", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 27262, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "non-fat sour cream", + "vegetable oil cooking spray", + "green onions", + "frozen corn kernels", + "reduced fat monterey jack cheese", + "flour tortillas", + "hot sauce", + "lump crab meat", + "red pepper", + "ground cumin" + ] + }, + { + "id": 3242, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "large garlic cloves", + "fresh parsley", + "capers", + "bay leaves", + "diced tomatoes", + "green olives", + "jalapeno chilies", + "raisins", + "fillet red snapper", + "Mexican oregano", + "extra-virgin olive oil" + ] + }, + { + "id": 42244, + "cuisine": "jamaican", + "ingredients": [ + "fresh thyme", + "coconut milk", + "brown rice", + "minced garlic", + "red pepper", + "green onions", + "dried kidney beans" + ] + }, + { + "id": 19993, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "bell pepper", + "sliced green onions", + "cooked rice", + "chopped almonds", + "garlic chili sauce", + "diced onions", + "large eggs", + "oil", + "chopped cooked meat", + "green peas" + ] + }, + { + "id": 24477, + "cuisine": "indian", + "ingredients": [ + "halibut fillets", + "mustard oil", + "fennel seeds", + "chili powder", + "clove", + "coriander seeds", + "tumeric", + "cumin seed" + ] + }, + { + "id": 20763, + "cuisine": "chinese", + "ingredients": [ + "fennel", + "cumin seed", + "chili powder", + "Shaoxing wine", + "powdered garlic", + "kosher salt", + "lamb breast" + ] + }, + { + "id": 17315, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "cooked rice", + "sunflower oil", + "eggs", + "frozen broccoli florets", + "pepper", + "garlic" + ] + }, + { + "id": 3967, + "cuisine": "indian", + "ingredients": [ + "chicken broth", + "fresh ginger", + "cayenne pepper", + "onions", + "curry powder", + "garlic", + "lentils", + "ground cumin", + "olive oil", + "salt", + "carrots", + "water", + "diced tomatoes", + "ground coriander", + "ground turmeric" + ] + }, + { + "id": 31280, + "cuisine": "korean", + "ingredients": [ + "water", + "all-purpose flour", + "medium shrimp", + "sesame oil", + "garlic cloves", + "large eggs", + "scallions", + "vegetable oil", + "red bell pepper" + ] + }, + { + "id": 48296, + "cuisine": "french", + "ingredients": [ + "cooked deli ham", + "confectioners sugar", + "flour", + "sandwich bread", + "swiss cheese", + "turkey breast deli meat", + "eggs", + "vegetable oil", + "panko breadcrumbs" + ] + }, + { + "id": 494, + "cuisine": "mexican", + "ingredients": [ + "water", + "jalapeno chilies", + "salt", + "lime", + "cheese", + "sour cream", + "fresh cilantro", + "chicken breasts", + "white beans", + "chicken broth", + "salsa verde", + "purple onion" + ] + }, + { + "id": 3191, + "cuisine": "korean", + "ingredients": [ + "sugar", + "black bean sauce", + "kimchi", + "kosher salt", + "liquid", + "canola oil", + "soy sauce", + "all-purpose flour", + "black vinegar", + "roasted sesame seeds", + "scallions" + ] + }, + { + "id": 2019, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "fresh ginger root", + "lemon juice", + "garbanzo beans", + "salt", + "ground cumin", + "water", + "vegetable oil", + "chopped cilantro fresh", + "red chili peppers", + "chile pepper", + "onions" + ] + }, + { + "id": 13612, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "salt", + "fat free less sodium chicken broth", + "dry white wine", + "sage leaves", + "ground black pepper", + "chopped fresh sage", + "olive oil", + "chicken cutlets" + ] + }, + { + "id": 8889, + "cuisine": "chinese", + "ingredients": [ + "clove", + "pepper", + "szechwan peppercorns", + "cumin seed", + "peppercorns", + "soy sauce", + "egg noodles", + "crushed red pepper", + "garlic cloves", + "red chili peppers", + "water", + "cilantro", + "oil", + "ground cumin", + "white onion", + "green onions", + "lamb", + "red bell pepper" + ] + }, + { + "id": 13275, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "sesame seeds", + "red curry paste", + "olive oil", + "extra firm tofu", + "pepper", + "quinoa", + "fresh ginger", + "fresh green bean" + ] + }, + { + "id": 47927, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "vanilla extract", + "cocoa", + "butter", + "chopped pecans", + "sugar", + "refrigerated piecrusts", + "salt", + "dark corn syrup", + "sweetened coconut flakes" + ] + }, + { + "id": 36008, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "vegetable oil", + "rice", + "ground cumin", + "frozen chopped spinach", + "fresh ginger", + "yellow onion", + "garlic cloves", + "water", + "heavy cream", + "ground coriander", + "plain yogurt", + "garam masala", + "firm tofu", + "serrano chile" + ] + }, + { + "id": 27272, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "rapid rise yeast", + "fresh basil", + "fresh thyme", + "bread flour", + "warm water", + "sea salt", + "sun-dried tomatoes", + "salt" + ] + }, + { + "id": 16781, + "cuisine": "indian", + "ingredients": [ + "butter", + "tomato ketchup" + ] + }, + { + "id": 13174, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "fresh lemon juice", + "flat leaf parsley", + "ground nutmeg", + "cinnamon sticks", + "kaffir lime leaves", + "cayenne pepper", + "chayotes", + "fresh ginger", + "low salt chicken broth" + ] + }, + { + "id": 17150, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "white onion", + "lime wedges", + "salt", + "cooked rice", + "curry powder", + "cilantro", + "red lentils", + "water", + "diced tomatoes", + "ginger root", + "plain yogurt", + "peanuts", + "garlic" + ] + }, + { + "id": 15951, + "cuisine": "french", + "ingredients": [ + "large eggs", + "all-purpose flour", + "unsalted butter", + "crème fraîche", + "sugar", + "baking powder", + "grated lemon zest", + "kosher salt", + "heavy cream", + "tart apples" + ] + }, + { + "id": 23827, + "cuisine": "italian", + "ingredients": [ + "french bread", + "plum tomatoes", + "fresh basil", + "chees fresh mozzarella", + "cooking spray", + "prosciutto", + "reduced fat mayonnaise" + ] + }, + { + "id": 3149, + "cuisine": "southern_us", + "ingredients": [ + "vanilla low-fat frozen yogurt", + "bananas", + "1% low-fat chocolate milk", + "peanut butter", + "vanilla lowfat yogurt" + ] + }, + { + "id": 34793, + "cuisine": "korean", + "ingredients": [ + "minced garlic", + "Gochujang base", + "soy sauce", + "soybean paste", + "broth", + "napa cabbage", + "scallions", + "pepper", + "salt" + ] + }, + { + "id": 17868, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "black pepper", + "lemon", + "garlic cloves", + "chopped cilantro fresh", + "saffron threads", + "parsley sprigs", + "orange", + "chopped onion", + "couscous", + "pitted kalamata olives", + "fat free less sodium chicken broth", + "salt", + "red bell pepper", + "ground ginger", + "boneless chicken skinless thigh", + "olive oil", + "orange juice", + "fresh parsley" + ] + }, + { + "id": 2116, + "cuisine": "mexican", + "ingredients": [ + "table cream", + "condensed milk", + "sugar", + "evaporated milk", + "eggs", + "vanilla" + ] + }, + { + "id": 18966, + "cuisine": "greek", + "ingredients": [ + "milk", + "butter", + "fresh parsley", + "eggs", + "eggplant", + "all-purpose flour", + "dried oregano", + "ground cinnamon", + "olive oil", + "dry red wine", + "onions", + "tomato sauce", + "grated parmesan cheese", + "ground beef" + ] + }, + { + "id": 36119, + "cuisine": "vietnamese", + "ingredients": [ + "kosher salt", + "scallions", + "brown sugar", + "shallots", + "beef steak", + "fish sauce", + "ground black pepper", + "fresh lime juice", + "soy sauce", + "garlic", + "canola oil" + ] + }, + { + "id": 30653, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "thai basil", + "spices", + "black pepper", + "chicken breasts", + "soy sauce", + "egg yolks", + "oil", + "potato starch flour", + "rice wine" + ] + }, + { + "id": 17507, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "garlic", + "shrimp", + "stock", + "olive oil", + "yellow onion", + "tomatoes", + "kale", + "smoked sausage", + "celery", + "green bell pepper", + "cajun seasoning", + "carrots" + ] + }, + { + "id": 42360, + "cuisine": "mexican", + "ingredients": [ + "french bread", + "dark brown sugar", + "slivered almonds", + "golden raisins", + "shredded Monterey Jack cheese", + "water", + "butter", + "cooking spray", + "cinnamon sticks" + ] + }, + { + "id": 7088, + "cuisine": "japanese", + "ingredients": [ + "cooked rice", + "cooking spray", + "sesame seeds", + "red bell pepper", + "low sodium soy sauce", + "mirin", + "boneless skinless chicken breast halves", + "green bell pepper", + "dark sesame oil" + ] + }, + { + "id": 35268, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "ground black pepper", + "bacon", + "parmesan cheese", + "green tomatoes", + "olive oil", + "lettuce leaves", + "country white bread", + "cooking spray", + "reduced fat mayonnaise" + ] + }, + { + "id": 44163, + "cuisine": "italian", + "ingredients": [ + "tawny port", + "cracked black pepper", + "rosemary sprigs", + "crumbled blue cheese", + "polenta", + "sugar", + "cooking spray", + "quinces", + "apple juice" + ] + }, + { + "id": 23725, + "cuisine": "italian", + "ingredients": [ + "coars ground black pepper", + "olive oil", + "baby spinach", + "chopped onion", + "great northern beans", + "yellow squash", + "ditalini pasta", + "fresh oregano", + "tomatoes", + "corn kernels", + "zucchini", + "salt", + "carrots", + "fat free less sodium chicken broth", + "ground black pepper", + "asiago", + "garlic cloves" + ] + }, + { + "id": 24457, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "chile pepper", + "flour tortillas", + "monterey jack", + "cream of chicken soup", + "boneless skinless chicken breast halves", + "half & half" + ] + }, + { + "id": 46178, + "cuisine": "southern_us", + "ingredients": [ + "sweetened condensed milk", + "peaches", + "soda" + ] + }, + { + "id": 22783, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "polenta", + "water", + "parmigiano reggiano cheese" + ] + }, + { + "id": 37993, + "cuisine": "korean", + "ingredients": [ + "cinnamon", + "pinenuts", + "brown sugar", + "ginger", + "water" + ] + }, + { + "id": 5789, + "cuisine": "southern_us", + "ingredients": [ + "dark corn syrup", + "pie filling", + "chop fine pecan", + "raspberries", + "cake batter", + "mint sprigs" + ] + }, + { + "id": 27146, + "cuisine": "moroccan", + "ingredients": [ + "cayenne", + "purple onion", + "garlic cloves", + "olive oil", + "parsley", + "lamb", + "cilantro stems", + "salt", + "ground cumin", + "ground black pepper", + "lemon", + "sweet paprika" + ] + }, + { + "id": 14454, + "cuisine": "southern_us", + "ingredients": [ + "red potato", + "pepper", + "grated carrot", + "onions", + "cream", + "minced garlic", + "red bell pepper", + "green bell pepper", + "shredded cheddar cheese", + "salt", + "chicken broth", + "crawfish", + "bacon", + "celery" + ] + }, + { + "id": 9930, + "cuisine": "mexican", + "ingredients": [ + "salt and ground black pepper", + "ground beef", + "diced tomatoes", + "potatoes", + "garlic salt", + "Ranch Style Beans" + ] + }, + { + "id": 20437, + "cuisine": "cajun_creole", + "ingredients": [ + "diced onions", + "bell pepper", + "butter", + "carrots", + "unsalted butter", + "bay leaves", + "scallions", + "cooked white rice", + "shrimp stock", + "fresh thyme", + "cajun seasoning", + "diced celery", + "kosher salt", + "flour", + "peeled shrimp", + "chopped parsley" + ] + }, + { + "id": 31724, + "cuisine": "italian", + "ingredients": [ + "eggs", + "unsalted butter", + "sliced almonds", + "almond paste", + "sugar", + "all purpose unbleached flour", + "dough", + "raspberries" + ] + }, + { + "id": 15054, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "star anise", + "peeled fresh ginger", + "chopped cilantro fresh", + "boneless pork shoulder", + "less sodium soy sauce", + "canola oil", + "Shaoxing wine", + "cinnamon sticks" + ] + }, + { + "id": 19199, + "cuisine": "british", + "ingredients": [ + "water", + "flour", + "baking soda", + "milk", + "salt", + "sugar", + "instant yeast" + ] + }, + { + "id": 9842, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "feta cheese crumbles", + "salsa", + "chopped cilantro fresh", + "purple onion", + "corn tortillas", + "romaine lettuce", + "hot Italian sausages", + "ground cumin" + ] + }, + { + "id": 11251, + "cuisine": "italian", + "ingredients": [ + "soft-wheat flour", + "large eggs" + ] + }, + { + "id": 21010, + "cuisine": "british", + "ingredients": [ + "sweet sherry", + "whipping cream", + "forest fruit", + "powdered sugar", + "egg yolks", + "kiwi fruits", + "raspberry jam", + "peaches", + "vanilla extract", + "frozen pound cake", + "sugar", + "whole milk", + "strawberries" + ] + }, + { + "id": 29799, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "spaghetti", + "olive oil", + "red pepper flakes", + "coarse salt", + "plum tomatoes", + "unsalted butter", + "garlic" + ] + }, + { + "id": 41943, + "cuisine": "indian", + "ingredients": [ + "heavy cream", + "sugar", + "carrots", + "golden raisins", + "ground cardamom" + ] + }, + { + "id": 20748, + "cuisine": "moroccan", + "ingredients": [ + "ground cloves", + "sea salt", + "apple juice", + "ground cumin", + "chicken stock", + "mission figs", + "garlic", + "coriander", + "fresh ginger root", + "cracked black pepper", + "chopped onion", + "brown sugar", + "cinnamon", + "grated nutmeg", + "chicken" + ] + }, + { + "id": 18445, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "salt", + "sugar", + "dry mustard", + "red bell pepper", + "ground ginger", + "shredded cabbage", + "celery seed", + "vinegar", + "mustard seeds" + ] + }, + { + "id": 21352, + "cuisine": "italian", + "ingredients": [ + "pepper", + "dried oregano", + "pork loin chops", + "garlic powder", + "fennel seeds", + "fresh parsley" + ] + }, + { + "id": 9238, + "cuisine": "thai", + "ingredients": [ + "fresh coriander", + "chicken breasts", + "curry paste", + "fish sauce", + "evaporated milk", + "oil", + "lime", + "garlic", + "onions", + "brown sugar", + "vegetables", + "chillies" + ] + }, + { + "id": 46581, + "cuisine": "cajun_creole", + "ingredients": [ + "fresh tuna steaks", + "cajun seasoning", + "olive oil", + "butter" + ] + }, + { + "id": 15736, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "cilantro", + "lettuce", + "guacamole", + "sour cream", + "boneless chicken skinless thigh", + "salsa", + "chicken broth", + "spices", + "corn tortillas" + ] + }, + { + "id": 2445, + "cuisine": "indian", + "ingredients": [ + "chopped fresh mint", + "mango chutney", + "fresh lime juice" + ] + }, + { + "id": 13593, + "cuisine": "irish", + "ingredients": [ + "pepper", + "low sodium chicken broth", + "salt", + "unsalted butter", + "yukon gold potatoes", + "onions", + "milk", + "cooked chicken", + "all-purpose flour", + "dijon mustard", + "vegetable oil" + ] + }, + { + "id": 26779, + "cuisine": "italian", + "ingredients": [ + "bread ciabatta", + "balsamic vinegar", + "olive oil", + "fresh basil leaves", + "tomatoes", + "prosciutto", + "mozzarella cheese", + "large garlic cloves" + ] + }, + { + "id": 46222, + "cuisine": "southern_us", + "ingredients": [ + "cold water", + "sugar", + "red cabbage", + "apple cider vinegar", + "all-purpose flour", + "celery seed", + "yellow mustard seeds", + "ground black pepper", + "boneless skinless chicken breasts", + "buttermilk", + "garlic cloves", + "pickle juice", + "green cabbage", + "kosher salt", + "jalapeno chilies", + "kirby cucumbers", + "hot sauce", + "ground turmeric", + "hamburger buns", + "bread and butter pickles", + "olive oil mayonnaise", + "purple onion", + "nonstick spray", + "canola oil" + ] + }, + { + "id": 46838, + "cuisine": "italian", + "ingredients": [ + "green onions", + "green beans", + "brown sugar", + "diced tomatoes", + "bacon", + "dried oregano", + "dried basil", + "garlic" + ] + }, + { + "id": 41672, + "cuisine": "chinese", + "ingredients": [ + "pork belly", + "red preserved bean curd", + "sugar", + "Shaoxing wine", + "oyster sauce", + "white pepper", + "chinese five-spice powder", + "soy sauce", + "maltose", + "chopped garlic" + ] + }, + { + "id": 26884, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "honey", + "apples", + "minced garlic", + "sesame oil", + "onions", + "black pepper", + "rice wine", + "Gochujang base", + "brown sugar", + "water", + "ginger" + ] + }, + { + "id": 24815, + "cuisine": "vietnamese", + "ingredients": [ + "tomatoes", + "pepper", + "oil", + "coriander", + "sugar", + "vinegar", + "carrots", + "fish sauce", + "chili", + "fat", + "fruit", + "pâté", + "cucumber" + ] + }, + { + "id": 6262, + "cuisine": "indian", + "ingredients": [ + "canola oil", + "milk", + "buttermilk" + ] + }, + { + "id": 45064, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "salt", + "ground turmeric", + "tomato purée", + "chili powder", + "onions", + "red lentils", + "fresh ginger", + "curry paste", + "ground cumin", + "minced garlic", + "vegetable oil", + "white sugar" + ] + }, + { + "id": 39994, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "sesame oil", + "chopped cilantro fresh", + "soy sauce", + "peeled fresh ginger", + "all-purpose flour", + "ground pepper", + "vegetable oil", + "chicken", + "ground ginger", + "large eggs", + "salt", + "sliced green onions" + ] + }, + { + "id": 49347, + "cuisine": "japanese", + "ingredients": [ + "white sesame seeds", + "chives", + "dashi", + "fish", + "extra-virgin olive oil" + ] + }, + { + "id": 27701, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "purple onion", + "canola oil", + "curry powder", + "peeled fresh ginger", + "fresh lemon juice", + "plain low-fat yogurt", + "honey", + "salt", + "boneless chicken skinless thigh", + "cooking spray", + "garlic cloves" + ] + }, + { + "id": 35575, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "quinoa", + "butter", + "chopped onion", + "carrots", + "ground cumin", + "water", + "finely chopped onion", + "salt", + "garlic cloves", + "chopped cilantro fresh", + "tumeric", + "ground black pepper", + "diced tomatoes", + "ground coriander", + "chopped fresh mint", + "hungarian sweet paprika", + "olive oil", + "butternut squash", + "cayenne pepper", + "fresh lemon juice", + "saffron" + ] + }, + { + "id": 8759, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "salsa", + "tortillas", + "refried beans", + "reduced-fat cheese", + "shredded lettuce" + ] + }, + { + "id": 42766, + "cuisine": "korean", + "ingredients": [ + "honey", + "sesame oil", + "soy sauce", + "green onions", + "garlic cloves", + "black pepper", + "rice wine", + "pears", + "light brown sugar", + "sesame seeds", + "sprite" + ] + }, + { + "id": 4631, + "cuisine": "chinese", + "ingredients": [ + "water", + "apricot preserves", + "soy sauce", + "dry mustard", + "fruit", + "apple juice", + "light brown sugar", + "garlic powder" + ] + }, + { + "id": 26228, + "cuisine": "southern_us", + "ingredients": [ + "cauliflower", + "half & half", + "dry bread crumbs", + "unsalted butter", + "all-purpose flour", + "ground black pepper", + "salt", + "scallions", + "parmigiano reggiano cheese", + "grated nutmeg" + ] + }, + { + "id": 4820, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "kosher salt", + "unsalted butter", + "ground cardamom", + "candied ginger", + "toasted pecans", + "peaches", + "grated nutmeg", + "vanilla ice cream", + "orange", + "all-purpose flour", + "firmly packed brown sugar", + "rolled oats", + "granulated sugar", + "corn starch" + ] + }, + { + "id": 700, + "cuisine": "chinese", + "ingredients": [ + "kosher salt", + "garlic", + "scallions", + "wonton wrappers", + "cream cheese", + "ground black pepper", + "crabmeat", + "toasted sesame oil", + "worcestershire sauce", + "peanut oil" + ] + }, + { + "id": 49590, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "ginger", + "oyster sauce", + "sweet rice", + "mushrooms", + "chinese five-spice powder", + "ground white pepper", + "dark soy sauce", + "Shaoxing wine", + "scallions", + "corn starch", + "boneless chicken skinless thigh", + "sea salt", + "oil", + "lotus leaves" + ] + }, + { + "id": 21190, + "cuisine": "japanese", + "ingredients": [ + "light brown sugar", + "meat", + "white rice", + "mirin", + "vegetable oil", + "soy sauce", + "sesame oil", + "spring onions", + "ginger" + ] + }, + { + "id": 29942, + "cuisine": "italian", + "ingredients": [ + "sugar", + "large eggs", + "salt", + "baking soda", + "almond extract", + "semi-sweet chocolate morsels", + "hazelnuts", + "baking powder", + "all-purpose flour", + "unsalted butter", + "vanilla extract", + "unsweetened cocoa powder" + ] + }, + { + "id": 40671, + "cuisine": "french", + "ingredients": [ + "half & half", + "vanilla beans", + "sugar", + "large egg yolks" + ] + }, + { + "id": 11606, + "cuisine": "indian", + "ingredients": [ + "hot red pepper flakes", + "vegetable oil", + "garlic cloves", + "plum tomatoes", + "green chile", + "coriander seeds", + "ginger", + "cinnamon sticks", + "tumeric", + "sherry vinegar", + "cumin seed", + "onions", + "clove", + "grated coconut", + "coarse sea salt", + "tamarind concentrate", + "large shrimp" + ] + }, + { + "id": 40727, + "cuisine": "irish", + "ingredients": [ + "cod fillets", + "malt vinegar", + "vegetable oil", + "tartar sauce", + "kosher salt", + "baking potatoes", + "freshly ground pepper", + "lager", + "all-purpose flour" + ] + }, + { + "id": 22984, + "cuisine": "irish", + "ingredients": [ + "vegetable oil spray", + "butter-margarine blend", + "buttermilk", + "whole wheat flour", + "all-purpose flour", + "brown sugar", + "baking soda" + ] + }, + { + "id": 15971, + "cuisine": "thai", + "ingredients": [ + "green onions", + "purple onion", + "coconut milk", + "tilapia fillets", + "cilantro", + "carrots", + "coconut oil", + "red pepper", + "salt", + "lime", + "Thai red curry paste", + "green beans" + ] + }, + { + "id": 20920, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "fresh lemon juice", + "extra-virgin olive oil", + "sesame seeds", + "baby lima beans", + "garlic cloves" + ] + }, + { + "id": 2605, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "tomatillos", + "lime juice", + "chipotles in adobo", + "sugar", + "orange segments", + "kosher salt", + "cilantro leaves" + ] + }, + { + "id": 26119, + "cuisine": "indian", + "ingredients": [ + "fresh ginger", + "vegetable oil", + "cumin seed", + "cayenne", + "garlic", + "onions", + "garbanzo beans", + "diced tomatoes", + "mustard seeds", + "curry powder", + "nonfat yogurt", + "salt" + ] + }, + { + "id": 38320, + "cuisine": "southern_us", + "ingredients": [ + "soy sauce", + "panko", + "sesame oil", + "minced garlic", + "large eggs", + "red wine vinegar", + "black pepper", + "cayenne", + "vegetable oil", + "mayonaise", + "whole grain mustard", + "flank steak", + "fresh lemon juice" + ] + }, + { + "id": 25356, + "cuisine": "korean", + "ingredients": [ + "green onions", + "all-purpose flour", + "dipping sauces", + "ice water", + "canola oil", + "sugar", + "salt" + ] + }, + { + "id": 647, + "cuisine": "chinese", + "ingredients": [ + "pork belly", + "soy sauce", + "shaoxing", + "sugar", + "green onions", + "dark soy sauce", + "fresh ginger root" + ] + }, + { + "id": 31317, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "pecorino romano cheese", + "kosher salt", + "garlic cloves", + "pinenuts", + "extra-virgin olive oil", + "parmigiano reggiano cheese" + ] + }, + { + "id": 23250, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "plum tomatoes", + "garlic cloves", + "extra-virgin olive oil" + ] + }, + { + "id": 30016, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "tomatoes", + "chips", + "orange juice", + "lime juice", + "cilantro leaves", + "queso panela", + "tomatillos" + ] + }, + { + "id": 6044, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "ground black pepper", + "garlic", + "water", + "meat", + "veal for stew", + "marsala wine", + "butternut squash", + "salt", + "olive oil", + "seeds", + "onions" + ] + }, + { + "id": 49648, + "cuisine": "british", + "ingredients": [ + "white bread flour", + "yeast", + "salt", + "milk" + ] + }, + { + "id": 13642, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "Sriracha", + "corn starch", + "honey", + "onion powder", + "water", + "chicken breasts", + "panko breadcrumbs", + "garlic powder", + "extra large eggs" + ] + }, + { + "id": 31788, + "cuisine": "thai", + "ingredients": [ + "fresh ginger", + "cilantro leaves", + "boneless skinless chicken breast halves", + "fish sauce", + "green onions", + "coconut milk", + "dark soy sauce", + "cooking oil", + "all-purpose flour", + "green curry paste", + "garlic", + "white sugar" + ] + }, + { + "id": 27760, + "cuisine": "italian", + "ingredients": [ + "dijon mustard", + "whipping cream", + "dried thyme", + "dry white wine", + "low salt chicken broth", + "pork tenderloin", + "all-purpose flour", + "olive oil", + "butter", + "crumbled gorgonzola" + ] + }, + { + "id": 33954, + "cuisine": "italian", + "ingredients": [ + "eggs", + "crushed tomatoes", + "egg yolks", + "red pepper", + "hot water", + "fresh rosemary", + "dried porcini mushrooms", + "grated parmesan cheese", + "large garlic cloves", + "goat cheese", + "tomatoes", + "pesto sauce", + "lasagna noodles", + "ricotta cheese", + "dry red wine", + "fresh basil", + "olive oil", + "fresh shiitake mushrooms", + "button mushrooms", + "onions" + ] + }, + { + "id": 20073, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil cooking spray", + "cinnamon", + "cilantro sprigs", + "chicken breasts", + "cracked black pepper", + "unsweetened cocoa powder", + "garlic powder", + "relish", + "coarse-grain salt", + "chili powder", + "Domino Light Brown Sugar" + ] + }, + { + "id": 14857, + "cuisine": "mexican", + "ingredients": [ + "banana leaves", + "snapper fillets", + "safflower oil", + "salt", + "white onion", + "cilantro leaves", + "crema", + "poblano chiles" + ] + }, + { + "id": 44576, + "cuisine": "greek", + "ingredients": [ + "salt", + "ground black pepper", + "chopped fresh mint", + "plain yogurt", + "fresh lemon juice", + "garlic cloves" + ] + }, + { + "id": 34239, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "extra-virgin olive oil", + "mozzarella cheese", + "large garlic cloves", + "pizza doughs", + "black pepper", + "baby arugula", + "ricotta", + "parmigiano reggiano cheese", + "salt" + ] + }, + { + "id": 10142, + "cuisine": "british", + "ingredients": [ + "olive oil", + "sweet potatoes", + "minced beef", + "tomato paste", + "potatoes", + "dry red wine", + "onions", + "cheddar cheese", + "beef stock", + "dried mixed herbs", + "frozen peas", + "ground nutmeg", + "worcestershire sauce", + "garlic cloves" + ] + }, + { + "id": 5766, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "honey", + "ground red pepper", + "kosher salt", + "dried apricot", + "garlic cloves", + "ground cinnamon", + "roast", + "chopped onion", + "lower sodium beef broth", + "cooking spray", + "ground cumin" + ] + }, + { + "id": 16467, + "cuisine": "jamaican", + "ingredients": [ + "olive oil", + "frozen peas", + "bacon", + "sazon goya with coriander and annatto", + "cabbage", + "minute rice", + "onions" + ] + }, + { + "id": 3732, + "cuisine": "cajun_creole", + "ingredients": [ + "loaves", + "whipping cream", + "cane syrup", + "powdered sugar", + "ground nutmeg", + "cream cheese", + "ground cinnamon", + "raspberries", + "vanilla extract", + "sugar", + "large eggs", + "champagne" + ] + }, + { + "id": 5769, + "cuisine": "thai", + "ingredients": [ + "sticky rice", + "unsweetened coconut milk", + "salt", + "water" + ] + }, + { + "id": 22808, + "cuisine": "italian", + "ingredients": [ + "milk", + "mushrooms", + "all-purpose flour", + "oregano", + "ketchup", + "olive oil", + "cheese", + "ham", + "sugar", + "active dry yeast", + "butter", + "pepperoni", + "water", + "egg yolks", + "salt", + "sour cream" + ] + }, + { + "id": 12977, + "cuisine": "italian", + "ingredients": [ + "superfine sugar", + "cake flour", + "fruit", + "balsamic vinegar", + "grated lemon zest", + "eggs", + "baking powder", + "salt", + "milk", + "extra-virgin olive oil" + ] + }, + { + "id": 7018, + "cuisine": "chinese", + "ingredients": [ + "honey", + "sesame oil", + "toasted sesame seeds", + "soy sauce", + "broccoli florets", + "scallions", + "asparagus", + "vegetable stock", + "minced ginger", + "boneless skinless chicken breasts", + "garlic cloves" + ] + }, + { + "id": 28338, + "cuisine": "thai", + "ingredients": [ + "sugar pea", + "Sriracha", + "green onions", + "freshly ground pepper", + "onions", + "fish sauce", + "honey", + "broccoli florets", + "garlic", + "baby corn", + "low sodium soy sauce", + "water", + "udon", + "sesame oil", + "red bell pepper", + "brown sugar", + "olive oil", + "mushrooms", + "firm tofu", + "beansprouts" + ] + }, + { + "id": 32860, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "black pepper", + "jalapeno chilies", + "garlic", + "oregano", + "tomatoes", + "corn", + "sea salt", + "purple onion", + "pasta", + "water", + "chili powder", + "avocado oil", + "cumin", + "spinach", + "lime", + "cilantro", + "smoked paprika" + ] + }, + { + "id": 46529, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "vegetable broth", + "arborio rice", + "butter", + "dried parsley", + "grated parmesan cheese", + "onions", + "fennel", + "heavy cream" + ] + }, + { + "id": 49503, + "cuisine": "cajun_creole", + "ingredients": [ + "dry white wine", + "Lea & Perrins Worcestershire Sauce", + "cayenne", + "paprika", + "canola oil", + "salted butter", + "Tabasco Pepper Sauce", + "chopped garlic", + "green onions", + "shrimp" + ] + }, + { + "id": 35816, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "extra-virgin olive oil", + "all purpose unbleached flour", + "sea salt", + "active dry yeast" + ] + }, + { + "id": 33313, + "cuisine": "italian", + "ingredients": [ + "cheese slices", + "French bread loaves", + "ground round", + "garlic cloves", + "pasta sauce", + "italian seasoning", + "chopped onion" + ] + }, + { + "id": 30809, + "cuisine": "russian", + "ingredients": [ + "horseradish", + "sour cream", + "black pepper" + ] + }, + { + "id": 31155, + "cuisine": "french", + "ingredients": [ + "milk", + "butter", + "thyme", + "large eggs", + "garlic", + "bread crumbs", + "grated parmesan cheese", + "all-purpose flour", + "vinegar", + "heavy cream", + "cantal" + ] + }, + { + "id": 7146, + "cuisine": "jamaican", + "ingredients": [ + "orange", + "orange juice", + "fresh cranberries", + "brown sugar", + "cinnamon sticks" + ] + }, + { + "id": 2742, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "chopped fresh sage", + "low salt chicken broth", + "olive oil", + "veal shanks", + "celery", + "kosher salt", + "garlic cloves", + "flat leaf parsley", + "dry white wine", + "carrots", + "onions" + ] + }, + { + "id": 15131, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "hot sauce", + "chopped cilantro fresh", + "green onions", + "corn tortillas", + "olive oil", + "feta cheese crumbles", + "ground cumin", + "slaw mix", + "fresh lime juice" + ] + }, + { + "id": 30150, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "corn starch", + "soy sauce", + "ground pork", + "onions", + "water chestnuts", + "oyster sauce", + "chicken broth", + "large garlic cloves", + "roast red peppers, drain" + ] + }, + { + "id": 6124, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "bacon slices", + "carrots", + "chopped cilantro fresh", + "hominy", + "poblano chilies", + "beer", + "onions", + "pork shoulder butt", + "diced tomatoes", + "ham", + "marjoram", + "ground black pepper", + "large garlic cloves", + "salt", + "low salt chicken broth" + ] + }, + { + "id": 47260, + "cuisine": "korean", + "ingredients": [ + "white vinegar", + "slaw", + "vegetable oil", + "garlic cloves", + "toasted sesame seeds", + "sugar", + "red cabbage", + "salt", + "cooked white rice", + "green cabbage", + "ground black pepper", + "dry red wine", + "carrots", + "canola oil", + "soy sauce", + "sesame oil", + "beef rib short", + "onions" + ] + }, + { + "id": 46934, + "cuisine": "italian", + "ingredients": [ + "swiss chard", + "garlic", + "kosher salt", + "pappardelle", + "black pepper", + "ricotta cheese", + "parmesan cheese", + "extra-virgin olive oil" + ] + }, + { + "id": 12732, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "sugar", + "butter", + "fruit", + "self rising flour" + ] + }, + { + "id": 30819, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "plum tomatoes", + "onions", + "garlic cloves", + "vegetable oil" + ] + }, + { + "id": 21616, + "cuisine": "chinese", + "ingredients": [ + "tofu", + "minced garlic", + "salt", + "corn starch", + "seitan", + "soy sauce", + "sesame oil", + "scallions", + "wood ear mushrooms", + "sugar", + "light soy sauce", + "rice vinegar", + "dumpling skins", + "white pepper", + "vegetable oil", + "carrots", + "cabbage" + ] + }, + { + "id": 33007, + "cuisine": "italian", + "ingredients": [ + "garlic", + "fresh basil leaves", + "small white beans", + "bow-tie pasta", + "extra-virgin olive oil", + "diced tomatoes in juice" + ] + }, + { + "id": 32599, + "cuisine": "italian", + "ingredients": [ + "tomato purée", + "Mexican oregano", + "salt", + "olive oil", + "dry red wine", + "roma tomatoes", + "garlic", + "tomato sauce", + "basil", + "onions" + ] + }, + { + "id": 43372, + "cuisine": "korean", + "ingredients": [ + "low sodium soy sauce", + "sesame seeds", + "rice vinegar", + "water", + "ground red pepper", + "canola oil", + "fresh ginger", + "garlic", + "sliced green onions", + "kosher salt", + "mirin", + "dark sesame oil" + ] + }, + { + "id": 43566, + "cuisine": "indian", + "ingredients": [ + "all-purpose flour", + "nigella seeds", + "oil", + "salt" + ] + }, + { + "id": 8899, + "cuisine": "french", + "ingredients": [ + "butter", + "hazelnuts", + "fresh lemon juice", + "white pepper", + "salt", + "egg yolks" + ] + }, + { + "id": 15351, + "cuisine": "french", + "ingredients": [ + "fresh sage", + "chopped fresh sage", + "shallots", + "sage", + "rosemary sprigs", + "roasting chickens", + "fresh rosemary", + "vinaigrette" + ] + }, + { + "id": 25998, + "cuisine": "southern_us", + "ingredients": [ + "kosher salt", + "lard", + "baking powder", + "unsalted butter", + "White Lily Flour", + "buttermilk" + ] + }, + { + "id": 10874, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "dried fettuccine", + "flat leaf parsley", + "capers", + "coarse salt", + "tuna packed in olive oil", + "gaeta olives", + "extra-virgin olive oil", + "tomato purée", + "ground black pepper", + "anchovy fillets" + ] + }, + { + "id": 47700, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "jumbo pasta shells", + "eggs", + "olive oil", + "ground beef", + "minced garlic", + "cream cheese", + "pasta sauce", + "parsley", + "garlic salt" + ] + }, + { + "id": 31464, + "cuisine": "french", + "ingredients": [ + "ground nutmeg", + "fresh parsley", + "sugar", + "butter", + "turnips", + "ground black pepper", + "water", + "salt" + ] + }, + { + "id": 34052, + "cuisine": "chinese", + "ingredients": [ + "gai lan", + "low sodium chicken broth", + "freshly ground pepper", + "kosher salt", + "crushed red pepper flakes", + "garlic cloves", + "ground chicken", + "vegetable oil", + "scallions", + "reduced sodium soy sauce", + "ginger" + ] + }, + { + "id": 20265, + "cuisine": "mexican", + "ingredients": [ + "water", + "all-purpose flour", + "poblano chiles", + "ground cumin", + "tomatillos", + "freshly ground pepper", + "dried oregano", + "pork tenderloin", + "chopped onion", + "chopped cilantro fresh", + "salt", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 32618, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "tortillas", + "salt", + "tomatoes", + "olive oil", + "chili powder", + "garlic cloves", + "avocado", + "cherry tomatoes", + "poblano peppers", + "tortilla chips", + "fresh spinach", + "ground pepper", + "butter", + "ground beef" + ] + }, + { + "id": 36493, + "cuisine": "french", + "ingredients": [ + "tomato paste", + "olive oil", + "sherry wine vinegar", + "red bell pepper", + "fresh basil", + "ground black pepper", + "salt", + "plum tomatoes", + "fresh rosemary", + "eggplant", + "chopped fresh thyme", + "onions", + "vegetable oil cooking spray", + "zucchini", + "chickpeas", + "chopped garlic" + ] + }, + { + "id": 17213, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "enchilada sauce", + "fresh mushrooms", + "condensed cream of mushroom soup", + "Mexican cheese", + "imitation crab meat" + ] + }, + { + "id": 10062, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "sausages", + "pepper", + "butter", + "refrigerated biscuits", + "milk", + "salt" + ] + }, + { + "id": 900, + "cuisine": "spanish", + "ingredients": [ + "mint", + "large garlic cloves", + "fresh lemon juice", + "manchego cheese", + "linguine", + "tarragon", + "sliced almonds", + "extra-virgin olive oil", + "thyme", + "saffron threads", + "unsalted butter", + "freshly ground pepper", + "flat leaf parsley" + ] + }, + { + "id": 38252, + "cuisine": "thai", + "ingredients": [ + "olive oil", + "curry paste", + "fish sauce", + "skinless chicken breasts", + "coriander", + "sugar", + "chili sauce", + "ginger paste", + "lime juice", + "garlic cloves" + ] + }, + { + "id": 37022, + "cuisine": "mexican", + "ingredients": [ + "lime", + "cilantro", + "taco seasoning", + "black beans", + "minced onion", + "salt", + "avocado", + "tortillas", + "purple onion", + "water", + "tvp", + "salsa" + ] + }, + { + "id": 2258, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "ginger", + "chinese chives", + "bean paste", + "garlic", + "canola oil", + "light soy sauce", + "crosswise", + "black vinegar", + "sesame oil", + "rice", + "japanese eggplants" + ] + }, + { + "id": 20459, + "cuisine": "italian", + "ingredients": [ + "white bread", + "cremini mushrooms", + "large egg yolks", + "finely chopped fresh parsley", + "crushed red pepper", + "garlic cloves", + "penne", + "olive oil", + "tomato juice", + "balsamic vinegar", + "chopped onion", + "plum tomatoes", + "fresh basil", + "sugar", + "fresh parmesan cheese", + "cooking spray", + "salt", + "ground turkey", + "pitted kalamata olives", + "orange bell pepper", + "ground black pepper", + "yellow bell pepper", + "fresh onion", + "dried oregano" + ] + }, + { + "id": 13139, + "cuisine": "indian", + "ingredients": [ + "pepper", + "extra-virgin olive oil", + "black mustard seeds", + "basmati rice", + "tomatoes", + "garam masala", + "soft-boiled egg", + "onions", + "smoked haddock fillet", + "salt", + "bay leaf", + "cumin", + "garlic paste", + "fresh thyme", + "green chilies", + "coriander" + ] + }, + { + "id": 45012, + "cuisine": "greek", + "ingredients": [ + "unsalted butter", + "salt", + "liqueur", + "honey", + "baking powder", + "fresh lemon juice", + "sugar", + "large eggs", + "all-purpose flour", + "sesame seeds", + "anise", + "grated lemon peel" + ] + }, + { + "id": 47737, + "cuisine": "italian", + "ingredients": [ + "butter", + "grated parmesan cheese", + "heavy cream" + ] + }, + { + "id": 1394, + "cuisine": "italian", + "ingredients": [ + "lower sodium chicken broth", + "balsamic vinegar", + "polenta", + "ground black pepper", + "cream cheese, soften", + "kosher salt", + "large garlic cloves", + "fresh rosemary", + "whole milk", + "center cut pork chops" + ] + }, + { + "id": 42377, + "cuisine": "british", + "ingredients": [ + "ground cinnamon", + "vegetable shortening", + "apricot jam", + "turbinado", + "mixed dried fruit", + "ground coriander", + "ground ginger", + "ground nutmeg", + "flour for dusting", + "dough", + "mace", + "cognac" + ] + }, + { + "id": 39851, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "pineapple", + "shrimp", + "ground cumin", + "tumeric", + "roasted red peppers", + "ground coriander", + "fresh lime juice", + "serrano chilies", + "olive oil", + "chopped onion", + "grate lime peel", + "lime", + "green onions", + "garlic cloves", + "toasted sesame seeds" + ] + }, + { + "id": 46705, + "cuisine": "brazilian", + "ingredients": [ + "shredded coconut", + "sweetened condensed milk", + "eggs", + "parmesan cheese", + "milk", + "sugar", + "vanilla" + ] + }, + { + "id": 4065, + "cuisine": "italian", + "ingredients": [ + "romaine lettuce", + "sprinkles", + "fresh oregano", + "cherry tomatoes", + "purple onion", + "cucumber", + "fresh basil", + "olive oil", + "salt", + "pepper", + "white wine vinegar", + "garlic cloves" + ] + }, + { + "id": 27682, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "salt", + "olive oil", + "littleneck clams", + "garlic cloves", + "fettucine", + "diced tomatoes", + "chopped onion", + "low sodium tomato juice", + "crushed red pepper", + "fresh parsley" + ] + }, + { + "id": 26219, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "fresh parsley", + "lemon juice", + "carrots", + "olive oil", + "cumin" + ] + }, + { + "id": 1613, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "vinaigrette dressing", + "lemon", + "boneless chicken breast" + ] + }, + { + "id": 26820, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "bay leaves", + "whole nutmegs", + "coriander seeds", + "cinnamon sticks", + "green cardamom pods", + "whole cloves", + "dried red chile peppers", + "mace", + "cumin seed" + ] + }, + { + "id": 36485, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "extra-virgin olive oil", + "dried oregano", + "fresh cilantro", + "chili powder", + "yellow onion", + "kosher salt", + "chicken breasts", + "hot sauce", + "ground cumin", + "lime", + "yellow bell pepper", + "red bell pepper" + ] + }, + { + "id": 24505, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "pasta shell small", + "fat free less sodium chicken broth", + "Italian turkey sausage", + "baby spinach leaves", + "diced tomatoes", + "parmesan cheese" + ] + }, + { + "id": 36136, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "Mexican oregano", + "garlic", + "ground cumin", + "posole", + "tortillas", + "queso fresco", + "garlic cloves", + "lime", + "chile pepper", + "fine sea salt", + "red chili peppers", + "flour", + "extra-virgin olive oil", + "dried oregano" + ] + }, + { + "id": 29255, + "cuisine": "italian", + "ingredients": [ + "eggs", + "dry bread crumbs", + "sausage links", + "onions", + "milk", + "parmesan cheese" + ] + }, + { + "id": 12047, + "cuisine": "mexican", + "ingredients": [ + "water", + "masa harina" + ] + }, + { + "id": 34341, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "garlic cloves", + "olive oil", + "biscuits", + "freshly ground pepper", + "kosher salt" + ] + }, + { + "id": 38357, + "cuisine": "moroccan", + "ingredients": [ + "pitted date", + "dijon mustard", + "dates", + "cilantro leaves", + "fresh lemon juice", + "ground cinnamon", + "cherry tomatoes", + "mint leaves", + "purple onion", + "ground coriander", + "pepper", + "bell pepper", + "extra-virgin olive oil", + "chickpeas", + "carrots", + "chili flakes", + "fresh ginger", + "sweet potatoes", + "salt", + "shelled pistachios" + ] + }, + { + "id": 39742, + "cuisine": "mexican", + "ingredients": [ + "chicken stock", + "chopped cilantro fresh", + "garlic powder", + "dried black beans", + "cilantro" + ] + }, + { + "id": 41444, + "cuisine": "thai", + "ingredients": [ + "sugar", + "salt", + "asian fish sauce", + "vegetable oil", + "green beans", + "yardlong beans", + "rice flour", + "skinless snapper fillets", + "unsweetened coconut milk", + "Thai red curry paste", + "dried shrimp" + ] + }, + { + "id": 34287, + "cuisine": "southern_us", + "ingredients": [ + "cooked bone in ham", + "golden brown sugar", + "marjoram", + "frozen orange juice concentrate", + "ground black pepper", + "fresh marjoram", + "whole grain dijon mustard", + "Madeira", + "minced garlic", + "orange juice" + ] + }, + { + "id": 41781, + "cuisine": "brazilian", + "ingredients": [ + "unsweetened coconut milk", + "olive oil", + "crushed red pepper flakes", + "garlic cloves", + "black pepper", + "ground red pepper", + "salt", + "shrimp", + "fish fillets", + "bay scallops", + "tomatoes with juice", + "lemon juice", + "white onion", + "cilantro", + "gingerroot", + "red bell pepper" + ] + }, + { + "id": 30269, + "cuisine": "chinese", + "ingredients": [ + "boneless skinless chicken breasts", + "dark brown sugar", + "low sodium soy sauce", + "rice vinegar", + "corn starch", + "vegetable oil", + "garlic cloves", + "water", + "broccoli" + ] + }, + { + "id": 6652, + "cuisine": "southern_us", + "ingredients": [ + "refrigerated biscuits", + "boneless skinless chicken breasts", + "chicken broth" + ] + }, + { + "id": 560, + "cuisine": "mexican", + "ingredients": [ + "corn starch", + "butter", + "shredded cheddar cheese", + "sour cream", + "salsa" + ] + }, + { + "id": 5151, + "cuisine": "southern_us", + "ingredients": [ + "water", + "extra large eggs", + "flour", + "peanut oil", + "seasoning salt", + "salt", + "pepper", + "boneless skinless chicken breasts" + ] + }, + { + "id": 27417, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "white wine vinegar", + "reduced sodium soy sauce", + "chicken wings", + "cucumber" + ] + }, + { + "id": 3961, + "cuisine": "french", + "ingredients": [ + "milk", + "corn kernel whole", + "condensed cheddar cheese soup", + "potatoes", + "cooked ham", + "boiling water" + ] + }, + { + "id": 19760, + "cuisine": "mexican", + "ingredients": [ + "Old El Paso™ taco seasoning mix", + "Old El Paso™ Thick 'n Chunky salsa", + "Pillsbury™ Refrigerated Crescent Dinner Rolls", + "shredded cheddar cheese", + "ground beef" + ] + }, + { + "id": 24285, + "cuisine": "italian", + "ingredients": [ + "butter", + "fresh basil leaves", + "white wine", + "salt", + "tomatoes", + "garlic", + "pepper", + "tilapia" + ] + }, + { + "id": 29533, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "clove garlic, fine chop", + "cooking oil", + "prawns", + "scallions", + "sugar", + "Shaoxing wine" + ] + }, + { + "id": 22062, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "kosher salt", + "fresh ginger", + "hoisin sauce", + "soba noodles", + "extra lean ground beef", + "milk", + "reduced sodium soy sauce", + "red pepper", + "panko breadcrumbs", + "black pepper", + "sweet onion", + "Sriracha", + "hot chili sauce", + "ketchup", + "minced garlic", + "asparagus", + "fat free reduced sodium chicken broth", + "carrots" + ] + }, + { + "id": 5315, + "cuisine": "indian", + "ingredients": [ + "butternut squash", + "chickpeas", + "mild curry paste", + "fat free greek yogurt", + "brown basmati rice", + "tomatoes", + "vegetable stock", + "coriander", + "olive oil", + "purple onion" + ] + }, + { + "id": 13863, + "cuisine": "italian", + "ingredients": [ + "paprika", + "black pepper", + "sauce", + "all-purpose flour", + "olive oil", + "filet" + ] + }, + { + "id": 38566, + "cuisine": "mexican", + "ingredients": [ + "poblano peppers", + "cilantro leaves", + "ground cumin", + "cuban peppers", + "vegetable oil", + "pork shoulder", + "chicken stock", + "jalapeno chilies", + "garlic cloves", + "kosher salt", + "tomatillos", + "onions" + ] + }, + { + "id": 10357, + "cuisine": "irish", + "ingredients": [ + "kosher salt", + "russet potatoes", + "onions", + "unsalted butter", + "scallions", + "ground black pepper", + "bacon", + "green cabbage", + "whole milk", + "flat leaf parsley" + ] + }, + { + "id": 32404, + "cuisine": "greek", + "ingredients": [ + "crumbled goat cheese", + "extra fine granulated sugar", + "purple onion", + "olive oil", + "sliced kalamata olives", + "lemon juice", + "cherry tomatoes", + "apple cider vinegar", + "english cucumber", + "romaine lettuce", + "ground black pepper", + "lemon" + ] + }, + { + "id": 46678, + "cuisine": "irish", + "ingredients": [ + "milk", + "cabbage", + "bacon", + "potatoes", + "knorr leek recip mix", + "I Can't Believe It's Not Butter!® Spread" + ] + }, + { + "id": 40187, + "cuisine": "mexican", + "ingredients": [ + "chicken bouillon", + "garlic", + "ground cumin", + "potatoes", + "lentils", + "water", + "nopales", + "tomatoes", + "extra-virgin olive oil", + "onions" + ] + }, + { + "id": 29300, + "cuisine": "russian", + "ingredients": [ + "powdered sugar", + "milk", + "butter", + "saffron", + "vanilla beans", + "large eggs", + "lemon juice", + "candied orange peel", + "active dry yeast", + "salt", + "vodka", + "granulated sugar", + "all-purpose flour" + ] + }, + { + "id": 19962, + "cuisine": "italian", + "ingredients": [ + "frozen spinach", + "fresh basil", + "yellow squash", + "zucchini", + "bay leaves", + "red wine vinegar", + "chees fresh mozzarella", + "shredded mozzarella cheese", + "fresh parsley", + "nutmeg", + "white wine", + "eggplant", + "fresh thyme", + "onion powder", + "crushed red pepper flakes", + "salt", + "carrots", + "dried oregano", + "fresh rosemary", + "kosher salt", + "garlic powder", + "grated parmesan cheese", + "ricotta cheese", + "cracked black pepper", + "yellow onion", + "chopped parsley", + "tomato paste", + "black pepper", + "olive oil", + "whole peeled tomatoes", + "crimini mushrooms", + "paprika", + "extra-virgin olive oil", + "garlic cloves", + "oregano" + ] + }, + { + "id": 23421, + "cuisine": "greek", + "ingredients": [ + "pinenuts", + "large eggs", + "feta cheese crumbles", + "frozen chopped spinach", + "unsalted butter", + "dry bread crumbs", + "olive oil", + "phyllo", + "onions", + "freshly grated parmesan", + "salt" + ] + }, + { + "id": 1931, + "cuisine": "british", + "ingredients": [ + "ground ginger", + "golden syrup", + "butter", + "white sugar", + "all-purpose flour", + "baking powder", + "confectioners sugar" + ] + }, + { + "id": 48901, + "cuisine": "southern_us", + "ingredients": [ + "mustard", + "cider vinegar", + "peaches", + "worcestershire sauce", + "ketchup", + "honey", + "bourbon whiskey", + "hot sauce", + "brown sugar", + "sweet onion", + "pork tenderloin", + "garlic", + "molasses", + "cayenne", + "butter" + ] + }, + { + "id": 33696, + "cuisine": "thai", + "ingredients": [ + "whole wheat flour", + "green onions", + "rice vinegar", + "water", + "large eggs", + "boneless skinless chicken", + "chili flakes", + "garlic powder", + "salt", + "corn starch", + "milk", + "cooking spray", + "maple syrup" + ] + }, + { + "id": 4472, + "cuisine": "italian", + "ingredients": [ + "pepper", + "eggplant", + "green onions", + "cauliflower florets", + "olive oil cooking spray", + "cottage cheese", + "cherry tomatoes", + "zucchini", + "butter", + "dry bread crumbs", + "salmon", + "olive oil", + "grated parmesan cheese", + "sea salt", + "fresh mushrooms", + "fresh spinach", + "dried basil", + "finely chopped fresh parsley", + "ricotta cheese", + "garlic", + "pasta sheets" + ] + }, + { + "id": 31358, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "diced tomatoes", + "chopped cilantro", + "lime wedges", + "boneless pork loin", + "ground cumin", + "white hominy", + "garlic", + "onions", + "avocado", + "green enchilada sauce", + "baked tortilla chips" + ] + }, + { + "id": 15795, + "cuisine": "mexican", + "ingredients": [ + "lemon juice", + "chile de arbol", + "fruit", + "salt" + ] + }, + { + "id": 32282, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame oil", + "oil", + "onions", + "tortillas", + "Gochujang base", + "bird chile", + "minced ginger", + "garlic", + "kimchi", + "green onions", + "shredded cheese", + "ground beef" + ] + }, + { + "id": 28219, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "green onions", + "corn tortillas", + "whitefish fillets", + "olive oil", + "salt", + "tomatoes", + "lime", + "lime wedges", + "pepper", + "egg yolks", + "creole seasoning" + ] + }, + { + "id": 22701, + "cuisine": "mexican", + "ingredients": [ + "tomatillos", + "chipotle chile", + "garlic", + "kosher salt" + ] + }, + { + "id": 27790, + "cuisine": "italian", + "ingredients": [ + "salt", + "olive oil", + "fresh mushrooms", + "fresh basil", + "penne pasta", + "diced tomatoes", + "feta cheese crumbles" + ] + }, + { + "id": 49159, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "ground black pepper", + "garlic", + "lemon juice", + "clove", + "fresh curry leaves", + "chile pepper", + "chopped onion", + "cinnamon sticks", + "coconut oil", + "bay leaves", + "salt", + "mustard seeds", + "fennel seeds", + "fresh ginger root", + "beef tenderloin", + "cardamom pods", + "ground turmeric" + ] + }, + { + "id": 45634, + "cuisine": "vietnamese", + "ingredients": [ + "fresh ginger", + "star anise", + "asian fish sauce", + "black peppercorns", + "boneless beef sirloin steak", + "onions", + "cold water", + "beef shank", + "salt", + "clove", + "rice noodles", + "cinnamon sticks" + ] + }, + { + "id": 11554, + "cuisine": "greek", + "ingredients": [ + "romaine lettuce", + "cucumber", + "tomatoes", + "purple onion", + "spinach", + "feta cheese crumbles", + "pitted kalamata olives", + "salad dressing" + ] + }, + { + "id": 20661, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "salt", + "pancetta", + "leeks", + "garlic cloves", + "fresh rosemary", + "baking potatoes", + "fat free less sodium chicken broth", + "and fat free half half" + ] + }, + { + "id": 10832, + "cuisine": "thai", + "ingredients": [ + "palm sugar", + "kosher salt", + "garlic", + "white vinegar", + "jalapeno chilies", + "water" + ] + }, + { + "id": 23613, + "cuisine": "greek", + "ingredients": [ + "white pepper", + "salt", + "garlic", + "cucumber", + "fresh dill", + "white wine vinegar", + "sour cream", + "olive oil", + "greek style plain yogurt" + ] + }, + { + "id": 23533, + "cuisine": "mexican", + "ingredients": [ + "chicken bouillon granules", + "chopped cilantro fresh", + "salt", + "water", + "long grain white rice", + "fresh lime juice" + ] + }, + { + "id": 43025, + "cuisine": "mexican", + "ingredients": [ + "part-skim mozzarella", + "olive oil", + "cooked chicken breasts", + "kosher salt", + "onions", + "ground cumin", + "cheddar cheese", + "poblano peppers", + "dried oregano", + "tomatoes", + "minced garlic", + "chopped cilantro fresh" + ] + }, + { + "id": 9977, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "yellow onion", + "ground cumin", + "green chile", + "diced tomatoes", + "pinto beans", + "coarse salt", + "garlic cloves", + "kidney beans", + "extra-virgin olive oil", + "poblano chiles" + ] + }, + { + "id": 48660, + "cuisine": "italian", + "ingredients": [ + "eggs", + "pepper", + "parmesan cheese", + "salt", + "italian seasoning", + "fennel seeds", + "sugar", + "crushed tomatoes", + "ricotta cheese", + "ground beef", + "tomato sauce", + "water", + "lasagna noodles", + "sweet italian sausage", + "tomato paste", + "mozzarella cheese", + "dried basil", + "garlic", + "onions" + ] + }, + { + "id": 36665, + "cuisine": "korean", + "ingredients": [ + "sugar", + "rice cakes", + "onions", + "gochugaru", + "garlic cloves", + "water", + "scallions", + "canola oil", + "fishcake", + "Gochujang base", + "cabbage" + ] + }, + { + "id": 45121, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "monterey jack", + "water", + "corn tortillas", + "extra lean ground beef", + "ragu cheesi classic alfredo sauc", + "Country Crock® Spread", + "fresh cilantro", + "chipotles in adobo" + ] + }, + { + "id": 13597, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "Gochujang base", + "sesame seeds", + "ginger", + "soba", + "water", + "napa cabbage", + "scallions", + "brown sugar", + "fresh shiitake mushrooms", + "edamame", + "chopped garlic" + ] + }, + { + "id": 16389, + "cuisine": "french", + "ingredients": [ + "clove", + "beurre manié", + "carp", + "eel", + "garlic", + "bay leaf", + "pike", + "red wine", + "croutons", + "parsley", + "salt", + "onions" + ] + }, + { + "id": 19431, + "cuisine": "cajun_creole", + "ingredients": [ + "catfish fillets", + "butter", + "riesling", + "garlic cloves", + "shallots", + "cooking spray", + "creole seasoning" + ] + }, + { + "id": 42829, + "cuisine": "mexican", + "ingredients": [ + "fresh shiitake mushrooms", + "grated jack cheese", + "dried oregano", + "finely chopped onion", + "butter", + "corn tortillas", + "cooked chicken", + "button mushrooms", + "chopped cilantro fresh", + "olive oil", + "chili powder", + "garlic cloves" + ] + }, + { + "id": 11157, + "cuisine": "indian", + "ingredients": [ + "sugar", + "cilantro", + "salt", + "onions", + "fenugreek leaves", + "whole peeled tomatoes", + "garlic", + "green chilies", + "ground cumin", + "garam masala", + "ginger", + "fenugreek seeds", + "cashew nuts", + "red chili powder", + "butter", + "paneer", + "oil" + ] + }, + { + "id": 8568, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "ranch dressing", + "ground ginger", + "soy sauce", + "garlic salt", + "celery stick", + "pineapple juice", + "chicken wings", + "pepper" + ] + }, + { + "id": 25402, + "cuisine": "mexican", + "ingredients": [ + "vanilla beans", + "mexican chocolate", + "whole milk", + "unsweetened chocolate", + "sugar", + "heavy cream", + "cinnamon sticks", + "egg yolks", + "salt" + ] + }, + { + "id": 4532, + "cuisine": "mexican", + "ingredients": [ + "cilantro", + "onions", + "sesame seeds", + "mole sauce", + "chicken broth", + "sour cream", + "chicken", + "queso fresco", + "corn tortillas" + ] + }, + { + "id": 48293, + "cuisine": "chinese", + "ingredients": [ + "black pepper", + "hot sauce", + "white vinegar", + "garlic powder", + "soy sauce", + "sesame oil", + "honey", + "peanut butter" + ] + }, + { + "id": 15636, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken breasts", + "garlic cloves", + "pimentos", + "reduced fat provolone cheese", + "kaiser rolls", + "extra-virgin olive oil", + "giardiniera", + "genoa salami", + "red wine vinegar", + "ham" + ] + }, + { + "id": 25256, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "rice", + "cilantro", + "pepper", + "chicken", + "salt" + ] + }, + { + "id": 9464, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "cayenne pepper", + "dried thyme", + "paprika", + "onion powder", + "dried oregano", + "garlic powder", + "salt" + ] + }, + { + "id": 1687, + "cuisine": "irish", + "ingredients": [ + "cream", + "crème de menthe", + "brandy" + ] + }, + { + "id": 36049, + "cuisine": "greek", + "ingredients": [ + "ground cinnamon", + "ground black pepper", + "bay leaves", + "extra-virgin olive oil", + "ground cayenne pepper", + "water", + "grated parmesan cheese", + "coarse salt", + "freshly ground pepper", + "white onion", + "unsalted butter", + "baking powder", + "all-purpose flour", + "ground lamb", + "tomato paste", + "ground nutmeg", + "whole milk", + "dry red wine", + "elbow macaroni" + ] + }, + { + "id": 43389, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "romaine lettuce", + "goat", + "guajillo", + "chopped cilantro", + "black peppercorns", + "radishes", + "queso fresco", + "corn tortillas", + "tomatoes", + "salsa verde", + "lime wedges", + "ancho chile pepper", + "clove", + "white onion", + "bay leaves", + "garlic cloves", + "dried oregano" + ] + }, + { + "id": 30435, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "hellmann' or best food real mayonnais", + "flour tortillas", + "garlic", + "onions", + "ground black pepper", + "shredded monterey jack cheese", + "sliced mushrooms", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 30167, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "hot sauce", + "sharp cheddar cheese", + "worcestershire sauce", + "cream cheese", + "pimentos", + "cayenne pepper", + "salt", + "grated jack cheese" + ] + }, + { + "id": 9439, + "cuisine": "french", + "ingredients": [ + "broccolini", + "camembert", + "baked ham", + "large egg yolks", + "heavy cream" + ] + }, + { + "id": 40896, + "cuisine": "korean", + "ingredients": [ + "baby bok choy", + "sesame seeds", + "sesame oil", + "basmati rice", + "eggs", + "strip steaks", + "miso paste", + "chili paste with garlic", + "soy sauce", + "shiitake", + "vegetable oil", + "spinach", + "beans", + "zucchini", + "carrots" + ] + }, + { + "id": 22133, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "sugar", + "salt", + "large egg yolks", + "grated orange peel", + "all purpose unbleached flour" + ] + }, + { + "id": 49248, + "cuisine": "vietnamese", + "ingredients": [ + "egg roll wrappers", + "garlic", + "pork", + "sesame oil", + "chopped cilantro fresh", + "green onions", + "shrimp", + "fresh ginger", + "vegetable oil", + "glass noodles" + ] + }, + { + "id": 8142, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "large shrimp", + "salt and ground black pepper", + "cumin", + "flour tortillas", + "lime", + "mixed greens" + ] + }, + { + "id": 30333, + "cuisine": "mexican", + "ingredients": [ + "flour", + "oil", + "salt", + "plain flour" + ] + }, + { + "id": 13958, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "rice vinegar", + "ground ginger", + "honey", + "garlic cloves", + "soy sauce", + "chinese five-spice powder", + "fish sauce", + "hoisin sauce", + "pork butt roast" + ] + }, + { + "id": 389, + "cuisine": "french", + "ingredients": [ + "yellow mustard seeds", + "fingerling potatoes", + "fresh lemon juice", + "dried oregano", + "chicken stock", + "unsalted butter", + "crème fraîche", + "green beans", + "cauliflower", + "coriander seeds", + "salt", + "carrots", + "black peppercorns", + "boneless chicken breast", + "freshly ground pepper", + "tarragon" + ] + }, + { + "id": 9254, + "cuisine": "irish", + "ingredients": [ + "stout", + "green cabbage", + "carrots", + "beer", + "beef brisket" + ] + }, + { + "id": 8597, + "cuisine": "indian", + "ingredients": [ + "yoghurt", + "milk", + "cardamom pods", + "cinnamon", + "honey", + "mango" + ] + }, + { + "id": 1228, + "cuisine": "vietnamese", + "ingredients": [ + "boneless chicken thighs", + "chiles", + "vegetable oil", + "sugar", + "garlic", + "fish sauce", + "lemongrass" + ] + }, + { + "id": 45853, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "whole chicken", + "cider vinegar", + "salt", + "crushed red pepper", + "pepper", + "dark brown sugar" + ] + }, + { + "id": 34047, + "cuisine": "spanish", + "ingredients": [ + "triple sec", + "orange juice", + "sugar", + "lemon", + "clove", + "satsuma orange", + "cinnamon sticks", + "lime", + "red wine" + ] + }, + { + "id": 47662, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "parsley leaves", + "lemon juice", + "dijon mustard", + "garlic", + "large shrimp", + "ground black pepper", + "anchovy paste", + "spaghetti", + "capers", + "zucchini", + "salt" + ] + }, + { + "id": 24455, + "cuisine": "italian", + "ingredients": [ + "shiitake", + "extra-virgin olive oil", + "bread", + "dry white wine", + "chorizo sausage", + "red vermouth", + "purple onion", + "tomato sauce", + "littleneck clams" + ] + }, + { + "id": 20256, + "cuisine": "japanese", + "ingredients": [ + "fresh coriander", + "egg whites", + "salt", + "carrots", + "fresh lime juice", + "large egg yolks", + "ice water", + "gingerroot", + "corn starch", + "honey", + "vegetable oil", + "all-purpose flour", + "shrimp", + "toasted nori", + "soy sauce", + "ground black pepper", + "heavy cream", + "scallions", + "red bell pepper" + ] + }, + { + "id": 17685, + "cuisine": "cajun_creole", + "ingredients": [ + "mayonaise", + "dijon mustard", + "chopped celery", + "fresh lemon juice", + "capers", + "prepared horseradish", + "paprika", + "garlic cloves", + "ketchup", + "green onions", + "salt", + "fresh parsley", + "cider vinegar", + "worcestershire sauce", + "hot sauce" + ] + }, + { + "id": 16686, + "cuisine": "southern_us", + "ingredients": [ + "instant espresso powder", + "heavy cream", + "all-purpose flour", + "light brown sugar", + "coffee", + "Dutch-processed cocoa powder", + "sugar", + "baking powder", + "salt", + "unsalted butter", + "vanilla extract" + ] + }, + { + "id": 41351, + "cuisine": "japanese", + "ingredients": [ + "salmon fillets", + "fresh lemon", + "japanese eggplants", + "miso paste", + "chives", + "sugar", + "peeled fresh ginger", + "sake", + "mirin", + "canola oil" + ] + }, + { + "id": 10397, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "sweet potatoes or yams", + "coconut milk", + "diced onions", + "roasted red peppers", + "ground coriander", + "olive oil", + "salt", + "ground cumin", + "crab", + "Thai red curry paste", + "fat skimmed chicken broth" + ] + }, + { + "id": 22334, + "cuisine": "italian", + "ingredients": [ + "sugar", + "all-purpose flour", + "large eggs", + "hot fudge topping", + "butter", + "coffee ice cream" + ] + }, + { + "id": 44167, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "lime juice", + "slaw mix", + "taco shells", + "olive oil", + "white sugar", + "lime zest", + "tilapia fillets", + "jalapeno chilies", + "chopped cilantro fresh", + "plain yogurt", + "taco seasoning mix", + "salt" + ] + }, + { + "id": 38422, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "sage leaves", + "provolone cheese", + "extra-virgin olive oil", + "prosciutto", + "skirt steak" + ] + }, + { + "id": 9894, + "cuisine": "italian", + "ingredients": [ + "fettucine", + "crushed tomatoes", + "anchovy fillets", + "pitted kalamata olives", + "grated parmesan cheese", + "fresh parsley", + "capers", + "olive oil", + "garlic cloves", + "water", + "crushed red pepper" + ] + }, + { + "id": 31243, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "diced tomatoes", + "curry paste", + "jalapeno chilies", + "cilantro leaves", + "fresh ginger", + "salt", + "onions", + "black pepper", + "boneless skinless chicken breasts", + "coconut milk" + ] + }, + { + "id": 25462, + "cuisine": "filipino", + "ingredients": [ + "beef shank", + "green beans", + "water", + "green onions", + "peppercorns", + "fish sauce", + "potatoes", + "onions", + "beef tendons", + "salt", + "cabbage" + ] + }, + { + "id": 26932, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "non-fat sour cream", + "flour tortillas", + "roasted red peppers", + "fresh basil leaves", + "sun-dried tomatoes", + "salami" + ] + }, + { + "id": 48267, + "cuisine": "chinese", + "ingredients": [ + "water", + "shiitake", + "serrano peppers", + "red pepper", + "soy sauce", + "lime", + "hoisin sauce", + "green onions", + "chopped cilantro", + "tomato sauce", + "minced ginger", + "peanuts", + "chinese noodles", + "carrots", + "minced garlic", + "light soy sauce", + "pork tenderloin", + "sesame oil" + ] + }, + { + "id": 4318, + "cuisine": "cajun_creole", + "ingredients": [ + "melted butter", + "instant yeast", + "water", + "all purpose unbleached flour", + "sugar", + "large eggs", + "dough", + "milk", + "salt" + ] + }, + { + "id": 37367, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "ground black pepper", + "red pepper flakes", + "warm water", + "minced garlic", + "grated parmesan cheese", + "sausages", + "table salt", + "mozzarella cheese", + "instant yeast", + "extra-virgin olive oil", + "fresh oregano leaves", + "large egg yolks", + "whole milk ricotta cheese", + "bread flour" + ] + }, + { + "id": 28702, + "cuisine": "french", + "ingredients": [ + "heavy cream", + "large egg yolks", + "turbinado", + "vanilla", + "lemon" + ] + }, + { + "id": 32906, + "cuisine": "indian", + "ingredients": [ + "red kidney beans", + "black pepper", + "bay leaves", + "salt", + "chopped cilantro", + "tumeric", + "garam masala", + "heavy cream", + "cumin seed", + "canola oil", + "tomato paste", + "fresh ginger", + "butter", + "yellow onion", + "dhal", + "sugar", + "cayenne", + "garlic", + "chillies" + ] + }, + { + "id": 44304, + "cuisine": "italian", + "ingredients": [ + "lean ground beef", + "black olives", + "sliced mushrooms", + "shredded cheddar cheese", + "condensed cream of mushroom soup", + "chopped onion", + "dried oregano", + "fettuccine pasta", + "butter", + "beef broth", + "red bell pepper", + "grated parmesan cheese", + "diced tomatoes", + "shredded mozzarella cheese" + ] + }, + { + "id": 2269, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "corn", + "guacamole", + "salt", + "garlic cloves", + "kosher salt", + "quinoa", + "vegetable broth", + "tortilla chips", + "chopped cilantro fresh", + "black beans", + "lime", + "diced tomatoes", + "salsa", + "sour cream", + "pepper", + "jalapeno chilies", + "garlic", + "shredded cheese" + ] + }, + { + "id": 43306, + "cuisine": "southern_us", + "ingredients": [ + "refrigerated piecrusts", + "sugar", + "I Can't Believe It's Not Butter!® Spread", + "chop fine pecan", + "vanilla extract", + "eggs", + "light corn syrup" + ] + }, + { + "id": 1261, + "cuisine": "greek", + "ingredients": [ + "green onions", + "dried parsley", + "pepper", + "lemon", + "spinach", + "red wine vinegar", + "dried oregano", + "potatoes", + "salt" + ] + }, + { + "id": 41225, + "cuisine": "italian", + "ingredients": [ + "bell pepper", + "tomato paste", + "diced tomatoes", + "cooked meatballs" + ] + }, + { + "id": 22175, + "cuisine": "japanese", + "ingredients": [ + "spinach", + "water", + "vegetable oil", + "sugar", + "mirin", + "sake", + "dashi", + "corn starch", + "soy sauce", + "large eggs" + ] + }, + { + "id": 5586, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "green onions", + "carrots", + "sugar", + "quinoa", + "garlic", + "fresh mint", + "fish sauce", + "lime", + "shredded lettuce", + "cucumber", + "pepper", + "Sriracha", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 13929, + "cuisine": "italian", + "ingredients": [ + "fresh tomatoes", + "parmesan cheese", + "pizza doughs", + "dried thyme", + "sea salt", + "mozzarella cheese", + "ground black pepper", + "bay leaf", + "fresh basil", + "olive oil", + "garlic" + ] + }, + { + "id": 25661, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "garlic", + "spaghetti", + "blue crabs", + "bay leaves", + "sauce", + "pepper", + "lemon", + "onions", + "tomatoes", + "bell pepper", + "salt" + ] + }, + { + "id": 24205, + "cuisine": "italian", + "ingredients": [ + "celery ribs", + "chicken breasts", + "water", + "onions", + "romano cheese", + "tomatoes with juice", + "vermicelli", + "chicken" + ] + }, + { + "id": 7906, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "dipping sauces", + "hot sauce", + "dumplings", + "vegetable oil", + "salt", + "scallions", + "ground beef", + "sesame seeds", + "garlic", + "firm tofu", + "toasted sesame oil", + "soy sauce", + "red pepper flakes", + "rice vinegar", + "carrots" + ] + }, + { + "id": 20806, + "cuisine": "filipino", + "ingredients": [ + "ketchup", + "green onions", + "sugar", + "vinegar", + "carrots", + "celery ribs", + "water", + "ground pork", + "soy sauce", + "pastry dough" + ] + }, + { + "id": 3752, + "cuisine": "french", + "ingredients": [ + "fish fillets", + "olive oil", + "leeks", + "large garlic cloves", + "plum tomatoes", + "tomato paste", + "dried thyme", + "dijon mustard", + "red wine vinegar", + "fresh parsley", + "chicken stock", + "baguette", + "fennel bulb", + "shallots", + "carrots", + "saffron threads", + "mayonaise", + "hot pepper sauce", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 22679, + "cuisine": "korean", + "ingredients": [ + "olive oil", + "scallions", + "eggs", + "sesame oil", + "kimchi", + "ground black pepper", + "shredded nori", + "soy sauce", + "rice" + ] + }, + { + "id": 34840, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "baking powder", + "bittersweet chocolate", + "brown sugar", + "dried cherry", + "salt", + "port wine", + "instant espresso powder", + "vanilla extract", + "unsweetened cocoa powder", + "hazelnuts", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 43180, + "cuisine": "indian", + "ingredients": [ + "garlic", + "green chilies", + "ghee", + "masoor dal", + "yellow onion", + "cumin seed", + "tumeric", + "salt", + "ground coriander", + "ground cumin", + "ginger", + "cayenne pepper", + "black mustard seeds" + ] + }, + { + "id": 17922, + "cuisine": "southern_us", + "ingredients": [ + "chili powder", + "ham hock", + "water", + "salt", + "garlic", + "onions", + "ground black pepper", + "pinto beans" + ] + }, + { + "id": 22039, + "cuisine": "chinese", + "ingredients": [ + "lettuce", + "chicken breasts", + "sesame paste", + "soy sauce", + "sesame oil", + "cucumber", + "sugar", + "szechwan peppercorns", + "carrots", + "green onions", + "chili oil", + "black rice vinegar" + ] + }, + { + "id": 10542, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "diced tomatoes", + "onions", + "green bell pepper", + "cajun seasoning", + "red bell pepper", + "olive oil", + "hot sauce", + "frozen cod fillets", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 47959, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "butter", + "lime juice", + "corn kernel whole", + "cotija", + "cilantro", + "ground red pepper" + ] + }, + { + "id": 41288, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "gingerroot", + "curry powder", + "salt", + "water", + "sweetened coconut flakes", + "garlic cloves", + "lime juice", + "cilantro leaves" + ] + }, + { + "id": 34232, + "cuisine": "korean", + "ingredients": [ + "sesame seeds", + "rice vinegar", + "chile powder", + "sesame oil", + "green onions", + "soybean sprouts", + "soy sauce", + "garlic" + ] + }, + { + "id": 46618, + "cuisine": "indian", + "ingredients": [ + "green cardamom pods", + "tumeric", + "cinnamon", + "salt", + "full-fat plain yogurt", + "tomatoes", + "coriander seeds", + "ginger", + "cumin seed", + "clove", + "water", + "paprika", + "yellow onion", + "black peppercorns", + "sesame oil", + "lamb shoulder", + "garlic cloves" + ] + }, + { + "id": 12321, + "cuisine": "russian", + "ingredients": [ + "fresh dill", + "kidney beans", + "mushrooms", + "lemon", + "cayenne pepper", + "garlic cloves", + "fresh cilantro", + "unsalted butter", + "butter", + "plums", + "scallions", + "smoked & dried fish", + "pepper", + "feta cheese", + "red wine vinegar", + "black olives", + "dark brown sugar", + "sour cream", + "olive oil", + "hard-boiled egg", + "creamed horseradish", + "salt", + "pitted prunes" + ] + }, + { + "id": 26213, + "cuisine": "indian", + "ingredients": [ + "cooked rice", + "coriander seeds", + "serrano", + "cauliflower", + "kosher salt", + "diced tomatoes", + "chopped cilantro", + "neutral oil", + "lime", + "ginger", + "tumeric", + "cayenne", + "cumin seed" + ] + }, + { + "id": 4698, + "cuisine": "chinese", + "ingredients": [ + "wonton wrappers", + "oil", + "water chestnuts, drained and chopped", + "crabmeat", + "paprika", + "garlic powder", + "cream cheese" + ] + }, + { + "id": 32297, + "cuisine": "southern_us", + "ingredients": [ + "coarse salt", + "collard greens", + "hot sauce", + "white wine vinegar", + "ground pepper", + "smoked ham hocks" + ] + }, + { + "id": 38777, + "cuisine": "mexican", + "ingredients": [ + "evaporated milk", + "corn starch", + "hot sauce", + "salt", + "sharp cheddar cheese" + ] + }, + { + "id": 27296, + "cuisine": "italian", + "ingredients": [ + "sunchokes", + "large garlic cloves", + "anchovy fillets", + "vegetable oil", + "crushed red pepper", + "fresh lemon juice", + "unsalted butter", + "extra-virgin olive oil", + "freshly ground pepper", + "lemon", + "salt", + "chopped parsley" + ] + }, + { + "id": 19360, + "cuisine": "chinese", + "ingredients": [ + "low sodium soy sauce", + "kosher salt", + "mint sprigs", + "chopped onion", + "red bell pepper", + "five-spice powder", + "butter lettuce", + "green onions", + "rice vinegar", + "garlic cloves", + "chopped fresh mint", + "fat free less sodium chicken broth", + "turkey", + "hot chili sauce", + "oyster sauce", + "chopped cilantro fresh", + "fresh basil", + "shiitake", + "rice vermicelli", + "dark sesame oil", + "fresh lime juice" + ] + }, + { + "id": 40700, + "cuisine": "british", + "ingredients": [ + "kosher salt", + "egg yolks", + "mustard powder", + "sourdough bread", + "crème fraîche", + "ground black pepper", + "jam", + "shredded cheddar cheese", + "worcestershire sauce" + ] + }, + { + "id": 20144, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "refrigerated pizza dough", + "spinach", + "grated parmesan cheese", + "ricotta", + "olive oil", + "salami", + "black pepper", + "marinara sauce" + ] + }, + { + "id": 7157, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "olive oil", + "grated parmesan cheese", + "linguine", + "chopped cilantro fresh", + "cherry tomatoes", + "zucchini", + "heavy cream", + "boneless skinless chicken breast halves", + "lime juice", + "ground black pepper", + "butter", + "salt", + "white wine", + "garlic powder", + "green onions", + "garlic", + "ground cumin" + ] + }, + { + "id": 46887, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "hot water", + "dried porcini mushrooms", + "chopped fresh chives", + "brandy", + "sea scallops", + "bread crumbs", + "large garlic cloves" + ] + }, + { + "id": 35821, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "water", + "vegetable oil", + "sliced green onions", + "cold water", + "soy sauce", + "baking soda", + "rice", + "sugar", + "sesame seeds", + "rice vinegar", + "ground ginger", + "minced garlic", + "beef", + "corn starch" + ] + }, + { + "id": 41338, + "cuisine": "japanese", + "ingredients": [ + "mirin", + "sugar", + "white miso", + "sake" + ] + }, + { + "id": 28964, + "cuisine": "mexican", + "ingredients": [ + "low-fat plain yogurt", + "ground black pepper", + "green onions", + "cooked chicken breasts", + "reduced fat sharp cheddar cheese", + "flour tortillas", + "chopped onion", + "green chile", + "Mexican cheese blend", + "butter", + "canola oil", + "minced garlic", + "cooking spray", + "condensed reduced fat reduced sodium cream of chicken soup" + ] + }, + { + "id": 37190, + "cuisine": "indian", + "ingredients": [ + "powdered milk", + "ground cardamom", + "whole milk", + "pistachios", + "condensed milk" + ] + }, + { + "id": 33053, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "basil", + "fresh basil", + "fusilli", + "garlic cloves", + "tomatoes", + "fresh parmesan cheese", + "salt", + "dried thyme", + "extra-virgin olive oil" + ] + }, + { + "id": 25062, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "peanuts", + "sesame oil", + "corn starch", + "chicken stock", + "large egg whites", + "Shaoxing wine", + "peanut oil", + "minced garlic", + "reduced sodium soy sauce", + "salt", + "black rice vinegar", + "sugar", + "fresh ginger", + "boneless skinless chicken breasts", + "scallions" + ] + }, + { + "id": 16642, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "cilantro", + "onions", + "chicken stock", + "boneless skinless chicken breasts", + "ground cayenne pepper", + "ground cumin", + "Anaheim chile", + "white beans", + "oregano", + "great northern beans", + "vegetable oil", + "chicken base" + ] + }, + { + "id": 22424, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "corn tortillas", + "cheddar cheese", + "corn oil", + "tomatoes", + "guacamole", + "fresh cilantro", + "sour cream" + ] + }, + { + "id": 26475, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "garlic powder", + "paprika", + "long-grain rice", + "ground cumin", + "tomato purée", + "lime", + "chicken thigh fillets", + "cayenne pepper", + "onions", + "chicken stock", + "lime juice", + "jalapeno chilies", + "salt", + "garlic cloves", + "black pepper", + "olive oil", + "red capsicum", + "frozen corn kernels", + "coriander" + ] + }, + { + "id": 41567, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "chili powder", + "mustard seeds", + "coconut", + "salt", + "water", + "ginger", + "pearl onions", + "oil" + ] + }, + { + "id": 48338, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "dried sage", + "onions", + "shortening", + "chopped celery", + "eggs", + "butter", + "cornbread", + "pepper", + "salt" + ] + }, + { + "id": 48319, + "cuisine": "russian", + "ingredients": [ + "active dry yeast", + "salt", + "warm water", + "butter", + "white sugar", + "eggs", + "vegetable oil", + "all-purpose flour", + "milk", + "raisins" + ] + }, + { + "id": 13565, + "cuisine": "southern_us", + "ingredients": [ + "tasso", + "garlic cloves", + "water", + "onions", + "celery ribs", + "bay leaves", + "smoked ham hocks", + "great northern beans", + "red bell pepper" + ] + }, + { + "id": 39731, + "cuisine": "british", + "ingredients": [ + "milk", + "banger", + "eggs", + "vegetable oil", + "melted butter", + "ground black pepper", + "kosher salt", + "all-purpose flour" + ] + }, + { + "id": 4036, + "cuisine": "chinese", + "ingredients": [ + "mustard greens", + "sugar", + "garlic cloves", + "chiles", + "salt", + "vegetable oil" + ] + }, + { + "id": 41993, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "part-skim mozzarella cheese", + "dry red wine", + "garlic cloves", + "dried basil", + "cooking spray", + "salt", + "dried oregano", + "penne", + "ground black pepper", + "crushed red pepper", + "onions", + "olive oil", + "diced tomatoes", + "Italian turkey sausage" + ] + }, + { + "id": 28410, + "cuisine": "southern_us", + "ingredients": [ + "powdered sugar", + "baking soda", + "butter", + "corn starch", + "maple extract", + "flour", + "salt", + "pumpkin pie spice", + "brown sugar", + "mini marshmallows", + "vanilla extract", + "chopped pecans", + "eggs", + "buttercream frosting", + "sweet potatoes", + "crushed pineapple" + ] + }, + { + "id": 31286, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "eggs", + "baking potatoes", + "mayonaise", + "spicy brown mustard", + "celery ribs", + "sweet onion" + ] + }, + { + "id": 43120, + "cuisine": "italian", + "ingredients": [ + "boneless chicken breast", + "smoked gouda", + "pizza crust", + "vegetable oil", + "barbecue sauce", + "chopped cilantro", + "mozzarella cheese", + "purple onion" + ] + }, + { + "id": 49349, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "rice wine", + "honey", + "garlic", + "sugar", + "spring onions", + "salt", + "pepper", + "sesame oil" + ] + }, + { + "id": 6772, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "onion powder", + "yellow corn meal", + "ground black pepper", + "salt", + "catfish fillets", + "garlic powder", + "paprika", + "skim milk", + "cooking spray", + "celery seed" + ] + }, + { + "id": 37604, + "cuisine": "japanese", + "ingredients": [ + "lemon wedge", + "nori", + "salmon fillets", + "furikake", + "vegetable oil", + "sushi rice", + "fine sea salt" + ] + }, + { + "id": 18096, + "cuisine": "italian", + "ingredients": [ + "spinach leaves", + "cannellini beans", + "salt", + "onions", + "dried basil", + "diced tomatoes", + "fat skimmed chicken broth", + "pepper", + "shell pasta", + "white beans", + "italian sausage", + "grated parmesan cheese", + "garlic", + "carrots" + ] + }, + { + "id": 14496, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "yoghurt", + "salt", + "garlic cloves", + "tomatoes", + "fresh cilantro", + "lemon", + "green chilies", + "onions", + "whitefish fillets", + "chili powder", + "rice", + "nigella seeds", + "fresh dill", + "coriander powder", + "garlic", + "cumin seed", + "ground turmeric" + ] + }, + { + "id": 38619, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "salsa", + "tomato juice", + "purple onion" + ] + }, + { + "id": 31040, + "cuisine": "italian", + "ingredients": [ + "capers", + "cooking spray", + "anchovy fillets", + "pepper", + "dry white wine", + "marjoram", + "penne", + "green onions", + "garlic cloves", + "tomatoes", + "grated parmesan cheese", + "anchovy paste", + "olives" + ] + }, + { + "id": 43543, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "quinoa", + "vegetable oil", + "salt", + "frozen edamame beans", + "lime juice", + "green onions", + "basil", + "cucumber", + "dressing", + "water", + "red cabbage", + "red pepper flakes", + "carrots", + "sugar", + "peanuts", + "sesame oil", + "ginger", + "chopped cilantro" + ] + }, + { + "id": 6740, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "salt", + "dry white wine", + "freshly ground pepper", + "dried sage", + "all-purpose flour", + "prosciutto", + "lemon wedge", + "veal scallops" + ] + }, + { + "id": 1314, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "small pasta", + "dry red wine", + "chuck", + "ground black pepper", + "heavy cream", + "carrots", + "olive oil", + "ground veal", + "tomatoes with juice", + "pancetta", + "parmigiano reggiano cheese", + "ground pork", + "onions" + ] + }, + { + "id": 17113, + "cuisine": "moroccan", + "ingredients": [ + "tomatoes", + "eggplant", + "matzos", + "juice", + "olive oil", + "cinnamon", + "garlic cloves", + "ground lamb", + "sugar", + "cayenne", + "ras el hanout", + "onions", + "black pepper", + "dried mint flakes", + "salt", + "dried oregano" + ] + }, + { + "id": 30860, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "semolina flour", + "all-purpose flour", + "eggs", + "salt", + "water" + ] + }, + { + "id": 752, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "grissini" + ] + }, + { + "id": 26117, + "cuisine": "italian", + "ingredients": [ + "pesto sauce", + "cheese", + "italian sausage", + "ravioli", + "pasta sauce", + "tomatoes", + "baby spinach" + ] + }, + { + "id": 30538, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "lemon", + "tart apples", + "unsalted butter", + "grated nutmeg", + "bread crumbs", + "vanilla", + "cinnamon", + "hard cider" + ] + }, + { + "id": 47671, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "egg whites", + "evaporated milk", + "white sugar", + "milk", + "vanilla extract", + "self rising flour", + "sweetened condensed milk" + ] + }, + { + "id": 20840, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "dried lavender blossoms", + "salt", + "sugar", + "lemon zest", + "extra-virgin olive oil", + "Meyer lemon juice", + "honey", + "large eggs", + "cake flour", + "confectioners sugar", + "unsalted butter", + "heavy cream", + "all-purpose flour" + ] + }, + { + "id": 33005, + "cuisine": "chinese", + "ingredients": [ + "peeled fresh ginger", + "dark sesame oil", + "boneless sirloin steak", + "low sodium soy sauce", + "sliced carrots", + "corn starch", + "brown rice", + "garlic cloves", + "broccoli florets", + "beef broth", + "onions" + ] + }, + { + "id": 21956, + "cuisine": "irish", + "ingredients": [ + "mace", + "butter", + "fresh parsley", + "chopped fresh chives", + "chopped onion", + "grated parmesan cheese", + "all-purpose flour", + "cabbage", + "milk", + "russet potatoes", + "low salt chicken broth" + ] + }, + { + "id": 18409, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "vegetable oil", + "frozen peas", + "eggs", + "spring onions", + "oyster sauce", + "chinese sausage", + "garlic", + "cooked rice", + "sesame oil", + "carrots" + ] + }, + { + "id": 619, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "dry sherry", + "arborio rice", + "chopped fresh thyme", + "wild mushrooms", + "shallots", + "vegetable broth", + "olive oil", + "butter" + ] + }, + { + "id": 29931, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "pizza doughs", + "wild mushrooms", + "fresh rosemary", + "butter", + "cornmeal", + "garlic oil", + "grapeseed oil", + "onions", + "fontina cheese", + "shallots", + "garlic cloves" + ] + }, + { + "id": 44809, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "flank steak", + "yellow onion", + "black vinegar", + "jalapeno chilies", + "ginger", + "carrots", + "jasmine rice", + "cilantro", + "okra", + "black peppercorns", + "bay leaves", + "garlic", + "red bell pepper" + ] + }, + { + "id": 9689, + "cuisine": "indian", + "ingredients": [ + "sweet potatoes", + "spinach", + "purple onion", + "tomatoes", + "chicken thigh fillets", + "olive oil", + "curry paste" + ] + }, + { + "id": 15586, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "salt", + "large eggs", + "buttermilk", + "pepper", + "white cornmeal" + ] + }, + { + "id": 18629, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "large eggs", + "salt", + "ground cinnamon", + "large egg whites", + "whole milk", + "pecans", + "unsalted butter", + "heavy cream", + "cold water", + "sugar", + "sweet potatoes", + "all-purpose flour" + ] + }, + { + "id": 45248, + "cuisine": "mexican", + "ingredients": [ + "sirloin steak", + "dried oregano", + "minced garlic", + "chipotles in adobo", + "pepper", + "salt", + "ground cumin", + "lime", + "adobo sauce" + ] + }, + { + "id": 31188, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "mayonaise", + "olive oil", + "red pepper", + "green pepper", + "cumin", + "tomatoes", + "lime", + "chicken breasts", + "garlic", + "taco seasoning", + "seasoning", + "black pepper", + "green onions", + "cilantro", + "tortilla chips", + "romaine lettuce", + "corn kernels", + "chili powder", + "salt", + "sour cream" + ] + }, + { + "id": 49485, + "cuisine": "mexican", + "ingredients": [ + "lime", + "salt", + "skirt steak", + "white vinegar", + "ground black pepper", + "cumin seed", + "olive oil", + "cilantro leaves", + "sugar", + "chile pepper", + "garlic cloves" + ] + }, + { + "id": 8586, + "cuisine": "mexican", + "ingredients": [ + "garlic cloves", + "vegetable oil", + "black beans", + "chipotle salsa", + "chopped cilantro fresh", + "red bell pepper" + ] + }, + { + "id": 28037, + "cuisine": "french", + "ingredients": [ + "shallots", + "radishes", + "fresh tarragon", + "dry white wine", + "fresh lemon juice", + "unsalted butter", + "sea salt" + ] + }, + { + "id": 16886, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "vegetable oil", + "soy sauce", + "salt", + "whole peppercorn", + "garlic", + "water", + "chicken" + ] + }, + { + "id": 10547, + "cuisine": "southern_us", + "ingredients": [ + "reduced fat milk", + "collard green leaves", + "low-sodium fat-free chicken broth", + "garlic salt", + "quickcooking grits", + "sharp cheddar cheese", + "pepper", + "butter" + ] + }, + { + "id": 7309, + "cuisine": "chinese", + "ingredients": [ + "orange juice concentrate", + "mandarin orange segments", + "salt", + "green bell pepper", + "boneless skinless chicken breasts", + "cooked rice", + "green onions", + "carrots", + "ground ginger", + "pepper", + "garlic" + ] + }, + { + "id": 13156, + "cuisine": "cajun_creole", + "ingredients": [ + "ground black pepper", + "margarine", + "green bell pepper", + "crushed red pepper flakes", + "corn starch", + "minced onion", + "shrimp", + "water", + "salt", + "celery" + ] + }, + { + "id": 8885, + "cuisine": "russian", + "ingredients": [ + "sauerkraut", + "sour cream", + "pierogi", + "butter", + "mushrooms", + "onions", + "water", + "all-purpose flour" + ] + }, + { + "id": 32147, + "cuisine": "indian", + "ingredients": [ + "salt", + "chili powder", + "green chilies", + "cream", + "rice", + "black gram", + "curds" + ] + }, + { + "id": 4331, + "cuisine": "french", + "ingredients": [ + "chervil", + "peppercorns", + "coarse salt", + "extra-virgin olive oil", + "bay leaves", + "fish" + ] + }, + { + "id": 23412, + "cuisine": "moroccan", + "ingredients": [ + "water", + "salt", + "tomatoes", + "olive oil", + "red bell pepper", + "chicken bouillon granules", + "tilapia fillets", + "cayenne pepper", + "pepper", + "paprika", + "fresh parsley" + ] + }, + { + "id": 47112, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "water", + "green onions", + "ginger", + "salt", + "corn flour", + "white vinegar", + "black pepper", + "Sriracha", + "boneless chicken", + "garlic", + "orange juice", + "soy sauce", + "sesame seeds", + "baking powder", + "cornflour", + "sauce", + "orange zest", + "chicken stock", + "white pepper", + "flour", + "crushed red pepper flakes", + "granulated white sugar", + "oil" + ] + }, + { + "id": 29643, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "cannellini beans", + "baguette", + "stewed tomatoes", + "reduced sodium chicken broth", + "large garlic cloves", + "romaine lettuce", + "baked ham", + "extra-virgin olive oil" + ] + }, + { + "id": 7253, + "cuisine": "southern_us", + "ingredients": [ + "sausage casings", + "honey", + "large eggs", + "freshly ground pepper", + "yellow corn meal", + "kosher salt", + "baking soda", + "buttermilk", + "grated orange", + "black peppercorns", + "corn kernels", + "unsalted butter", + "cayenne pepper", + "sugar", + "whole wheat flour", + "baking powder", + "scallions" + ] + }, + { + "id": 43477, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "diced tomatoes", + "chopped green bell pepper", + "polenta", + "part-skim mozzarella cheese", + "hot italian turkey sausage", + "cooking spray", + "italian seasoning" + ] + }, + { + "id": 12074, + "cuisine": "french", + "ingredients": [ + "white bread", + "thousand island dressing", + "swiss cheese", + "ham", + "salted butter" + ] + }, + { + "id": 1413, + "cuisine": "thai", + "ingredients": [ + "sambal ulek", + "mirin", + "baby tatsoi", + "peanut butter", + "lime", + "sesame oil", + "ginger", + "soy sauce", + "chicken breasts", + "cilantro", + "tamarind concentrate", + "peanuts", + "rice noodles", + "garlic" + ] + }, + { + "id": 31518, + "cuisine": "british", + "ingredients": [ + "milk", + "beef stock", + "ground pork", + "thyme", + "bread crumbs", + "unsalted butter", + "worcestershire sauce", + "yellow onion", + "madeira wine", + "ground black pepper", + "dry white wine", + "grated nutmeg", + "sage", + "kosher salt", + "flour", + "bacon", + "liver" + ] + }, + { + "id": 16909, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "rice vinegar", + "eggs", + "rice wine", + "dried chile", + "boneless skinless chicken breasts", + "corn starch", + "sugar", + "vegetable oil" + ] + }, + { + "id": 12917, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "diced tomatoes", + "flat leaf parsley", + "fresh basil", + "shallots", + "small white beans", + "plum tomatoes", + "chicken stock", + "olive oil", + "garlic", + "campanelle", + "sausage casings", + "pecorino romano cheese", + "juice" + ] + }, + { + "id": 23700, + "cuisine": "italian", + "ingredients": [ + "capers", + "dry white wine", + "salt", + "lemon zest", + "vegetable oil", + "fresh lemon juice", + "unsalted butter", + "chicken breast halves", + "all-purpose flour", + "low sodium chicken broth", + "garlic" + ] + }, + { + "id": 6122, + "cuisine": "indian", + "ingredients": [ + "melted butter", + "chopped cilantro", + "garlic", + "naan" + ] + }, + { + "id": 44226, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "kosher salt", + "parmigiano reggiano cheese", + "lasagna noodles, cooked and drained", + "all-purpose flour", + "lower sodium chicken broth", + "olive oil", + "chopped fresh chives", + "pattypan squash", + "fresh basil", + "cherry tomatoes", + "large eggs", + "shallots", + "heavy whipping cream", + "black pepper", + "dijon mustard", + "cooking spray", + "garlic" + ] + }, + { + "id": 23396, + "cuisine": "mexican", + "ingredients": [ + "red leaf lettuce", + "chopped cilantro fresh", + "jalapeno chilies", + "Anaheim chile", + "tomatoes", + "purple onion" + ] + }, + { + "id": 33473, + "cuisine": "french", + "ingredients": [ + "low-fat deli ham", + "boneless skinless chicken breast halves", + "swiss cheese", + "dijon mustard", + "olive oil flavored cooking spray", + "caraway seeds", + "dry bread crumbs" + ] + }, + { + "id": 8521, + "cuisine": "mexican", + "ingredients": [ + "sweet corn", + "quinoa", + "black beans", + "shredded cheese", + "salsa" + ] + }, + { + "id": 41063, + "cuisine": "french", + "ingredients": [ + "cracked black pepper", + "thyme", + "duck fat", + "salt", + "garlic", + "duck drumsticks", + "shallots", + "duck" + ] + }, + { + "id": 28894, + "cuisine": "indian", + "ingredients": [ + "sugar", + "yeast", + "luke warm water", + "beaten eggs", + "milk", + "bread flour", + "melted butter", + "salt" + ] + }, + { + "id": 36376, + "cuisine": "french", + "ingredients": [ + "cooking spray", + "garlic", + "pepper", + "chicken breast halves", + "reduced fat mayonnaise", + "tomatoes", + "lettuce leaves", + "salt", + "grated parmesan cheese", + "sandwich buns", + "olive oil flavored cooking spray" + ] + }, + { + "id": 39518, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "dates", + "sweet potatoes", + "maple syrup", + "honey", + "raw cashews", + "nutmeg", + "cinnamon", + "allspice" + ] + }, + { + "id": 22727, + "cuisine": "italian", + "ingredients": [ + "minced garlic", + "half & half", + "basil", + "capers", + "olive oil", + "butter", + "penne pasta", + "dried basil", + "boneless skinless chicken breasts", + "salt", + "black pepper", + "grated parmesan cheese", + "lemon" + ] + }, + { + "id": 19375, + "cuisine": "japanese", + "ingredients": [ + "sweet potato starch", + "baking powder", + "water", + "coconut milk", + "sugar", + "corn starch", + "flour" + ] + }, + { + "id": 34731, + "cuisine": "spanish", + "ingredients": [ + "frozen spinach", + "large eggs", + "red bell pepper", + "pepper", + "grating cheese", + "bread crumbs", + "potatoes", + "olive oil", + "salt" + ] + }, + { + "id": 19985, + "cuisine": "moroccan", + "ingredients": [ + "water", + "flour", + "salt", + "ground ginger", + "green lentil", + "cilantro", + "onions", + "black pepper", + "egg noodles", + "stewed tomatoes", + "saffron", + "celery ribs", + "olive oil", + "parsley", + "chickpeas" + ] + }, + { + "id": 28922, + "cuisine": "italian", + "ingredients": [ + "water", + "broccoli florets", + "Wish-Bone Italian Dressing", + "roast red peppers, drain" + ] + }, + { + "id": 18489, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "tumeric", + "kosher salt", + "cilantro", + "canola oil", + "flour", + "yellow onion", + "eggs", + "cream", + "cinnamon", + "lentils", + "tomato sauce", + "garam masala", + "ginger" + ] + }, + { + "id": 8858, + "cuisine": "jamaican", + "ingredients": [ + "caribbean jerk seasoning", + "dijon mustard", + "tamari soy sauce", + "allspice", + "eggs", + "fresh ginger", + "habanero", + "orange juice", + "white vinegar", + "water", + "worcestershire sauce", + "salt", + "orange zest", + "sugar substitute", + "almond flour", + "ground pork", + "xanthan gum" + ] + }, + { + "id": 5323, + "cuisine": "korean", + "ingredients": [ + "dry pasta", + "garlic cloves", + "butter", + "Gochujang base", + "sesame seeds", + "salt", + "kimchi", + "bacon", + "scallions" + ] + }, + { + "id": 9665, + "cuisine": "thai", + "ingredients": [ + "water", + "red pepper flakes", + "cilantro leaves", + "cucumber", + "lemongrass", + "sirloin steak", + "rice vinegar", + "chopped fresh mint", + "romaine lettuce", + "ground black pepper", + "garlic", + "lemon juice", + "asian fish sauce", + "sugar", + "cooking oil", + "salt", + "carrots" + ] + }, + { + "id": 33252, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "poblano", + "salt", + "ground cumin", + "green bell pepper", + "ground black pepper", + "vegetable broth", + "red bell pepper", + "minced garlic", + "Mexican oregano", + "purple onion", + "onions", + "avocado", + "olive oil", + "dried pinto beans", + "goya sazon" + ] + }, + { + "id": 14600, + "cuisine": "italian", + "ingredients": [ + "heavy cream", + "unsalted butter", + "salt", + "fettucine", + "cracked black pepper", + "grated parmesan cheese", + "fresh parsley" + ] + }, + { + "id": 129, + "cuisine": "thai", + "ingredients": [ + "chicken stock", + "fresh coriander", + "chile pepper", + "fresh basil", + "lemon grass", + "fresh mushrooms", + "kaffir lime leaves", + "lime juice", + "garlic", + "fish sauce", + "tom yum paste", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 34076, + "cuisine": "italian", + "ingredients": [ + "chopped fresh thyme", + "prosciutto", + "garlic cloves", + "mozzarella cheese", + "extra-virgin olive oil", + "refrigerated pizza dough", + "soft fresh goat cheese" + ] + }, + { + "id": 23092, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "garlic", + "carrots", + "cabbage", + "seasoning", + "chicken breasts", + "peanut oil", + "bok choy", + "low sodium soy sauce", + "sesame oil", + "Yakisoba noodles", + "onions", + "white pepper", + "salt", + "beansprouts" + ] + }, + { + "id": 22130, + "cuisine": "indian", + "ingredients": [ + "chili pepper", + "garam masala", + "salt", + "greek yogurt", + "frozen spinach", + "water", + "cilantro", + "cumin seed", + "minced garlic", + "bay leaves", + "ground coriander", + "onions", + "tomatoes", + "fresh ginger", + "paneer", + "oil" + ] + }, + { + "id": 19064, + "cuisine": "indian", + "ingredients": [ + "milk", + "ginger", + "serrano chile", + "spinach", + "cayenne", + "fresh lemon juice", + "flatbread", + "garam masala", + "garlic", + "kosher salt", + "heavy cream", + "ghee" + ] + }, + { + "id": 29964, + "cuisine": "russian", + "ingredients": [ + "bread", + "parmesan cheese", + "vegetable broth", + "onions", + "wild asparagus", + "leeks", + "garlic cloves", + "eggs", + "ground black pepper", + "milk", + "vegetable oil", + "ground meat", + "salt" + ] + }, + { + "id": 35714, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "large garlic cloves", + "fettucine", + "grated parmesan cheese", + "low salt chicken broth", + "unsalted butter", + "hot water", + "dried porcini mushrooms", + "chopped fresh thyme", + "wild mushrooms" + ] + }, + { + "id": 36614, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "curry paste", + "salt", + "pepper", + "chicken wings", + "coconut milk" + ] + }, + { + "id": 10627, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "white sugar", + "eggs", + "baking powder", + "yellow corn meal", + "whole wheat flour", + "shortening", + "salt" + ] + }, + { + "id": 14312, + "cuisine": "korean", + "ingredients": [ + "water", + "sesame oil", + "carrots", + "yellow summer squash", + "gold potatoes", + "all purpose unbleached flour", + "eggs", + "orange", + "vegetable oil", + "pepper", + "green onions", + "salt" + ] + }, + { + "id": 24726, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "vegetable oil", + "corn starch", + "sugar", + "sesame oil", + "garlic cloves", + "wine", + "green onions", + "hot sauce", + "tofu", + "black pepper", + "ground pork" + ] + }, + { + "id": 34522, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "chili powder", + "ghee", + "garam masala", + "salt", + "cashew nuts", + "pepper", + "paprika", + "coriander", + "curry sauce", + "lamb leg", + "cumin" + ] + }, + { + "id": 47327, + "cuisine": "mexican", + "ingredients": [ + "Sriracha", + "grating cheese", + "long-grain rice", + "light sour cream", + "boneless skinless chicken breasts", + "garlic", + "cumin", + "chicken stock", + "jalapeno chilies", + "diced tomatoes", + "onions", + "tortillas", + "chili powder", + "salt" + ] + }, + { + "id": 39692, + "cuisine": "southern_us", + "ingredients": [ + "water", + "cream cheese", + "butter", + "dried apricot", + "white sugar", + "all-purpose flour" + ] + }, + { + "id": 19399, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "tamarind pulp", + "vegetable oil", + "beansprouts", + "green cabbage", + "lime", + "roma tomatoes", + "garlic cloves", + "fresh pineapple", + "sambal ulek", + "thai basil", + "shallots", + "shrimp", + "reduced sodium chicken broth", + "rice paddy herb", + "vietnamese fish sauce", + "bird chile" + ] + }, + { + "id": 44721, + "cuisine": "spanish", + "ingredients": [ + "black pepper", + "bay leaves", + "morel", + "chicken thighs", + "fat free less sodium chicken broth", + "salt", + "cooked rice", + "cooking spray", + "boiling water" + ] + }, + { + "id": 47604, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "green pepper", + "noodles", + "mozzarella cheese", + "ground beef", + "cheddar cheese", + "pepperoni", + "red pepper", + "onions" + ] + }, + { + "id": 40310, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "butter", + "half & half", + "salt and ground black pepper" + ] + }, + { + "id": 14943, + "cuisine": "indian", + "ingredients": [ + "golden brown sugar", + "dried apricot", + "purple onion", + "fresh lime juice", + "jalapeno chilies", + "crushed red pepper", + "leg of lamb", + "light molasses", + "fresh orange juice", + "fresh lemon juice", + "coriander seeds", + "lamb shoulder chops", + "tamarind paste", + "chopped cilantro fresh" + ] + }, + { + "id": 20522, + "cuisine": "southern_us", + "ingredients": [ + "evaporated milk", + "corn starch", + "eggs", + "vanilla extract", + "milk", + "vanilla wafers", + "bananas", + "white sugar" + ] + }, + { + "id": 42211, + "cuisine": "jamaican", + "ingredients": [ + "white vinegar", + "kale", + "salt", + "fresh parsley", + "spinach", + "hot pepper sauce", + "garlic cloves", + "collard greens", + "dried thyme", + "okra", + "center cut loin pork chop", + "water", + "finely chopped onion", + "cornmeal" + ] + }, + { + "id": 9585, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "white beans", + "roma tomatoes", + "boneless skinless chicken breast halves", + "zucchini", + "fresh basil leaves", + "garlic" + ] + }, + { + "id": 18841, + "cuisine": "chinese", + "ingredients": [ + "blue crabs", + "peeled fresh ginger", + "soy sauce", + "salt", + "sugar", + "cilantro stems", + "water", + "chinese black vinegar" + ] + }, + { + "id": 16327, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "all-purpose flour", + "pepper", + "butter", + "dried basil", + "salt", + "cutlet", + "fresh lemon juice" + ] + }, + { + "id": 7654, + "cuisine": "russian", + "ingredients": [ + "dark corn syrup", + "coffee granules", + "bread flour", + "fennel seeds", + "cider vinegar", + "rye flour", + "unsweetened cocoa powder", + "caraway seeds", + "water", + "salt", + "brown sugar", + "active dry yeast", + "margarine" + ] + }, + { + "id": 25892, + "cuisine": "japanese", + "ingredients": [ + "milk", + "cake", + "egg whites", + "corn starch", + "unsalted butter", + "cream cheese", + "sugar", + "egg yolks" + ] + }, + { + "id": 33494, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "flank steak", + "sour cream", + "shredded cabbage", + "scallions", + "adobo sauce", + "lime", + "cilantro leaves", + "chipotle peppers", + "kosher salt", + "vegetable oil", + "corn tortillas" + ] + }, + { + "id": 21742, + "cuisine": "italian", + "ingredients": [ + "pepper", + "lasagna sheets", + "asparagus", + "bechamel", + "milk", + "salt", + "grated parmesan cheese" + ] + }, + { + "id": 8273, + "cuisine": "indian", + "ingredients": [ + "mild curry powder", + "ground black pepper", + "crème fraîche", + "chicken stock", + "fresh coriander", + "apples", + "basmati rice", + "sultana", + "chicken breasts", + "onions", + "tomato purée", + "olive oil", + "garlic" + ] + }, + { + "id": 4585, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "large garlic cloves", + "water", + "red beans", + "onions", + "olive oil", + "cayenne pepper", + "andouille sausage", + "pork chops", + "rice" + ] + }, + { + "id": 43056, + "cuisine": "irish", + "ingredients": [ + "ale", + "Guinness Beer" + ] + }, + { + "id": 114, + "cuisine": "mexican", + "ingredients": [ + "tilapia fillets", + "jalapeno chilies", + "anise", + "poblano chiles", + "mussels", + "fresh cilantro", + "vegetable oil", + "cumin seed", + "medium shrimp", + "sugar", + "finely chopped onion", + "clam juice", + "garlic cloves", + "crushed tomatoes", + "lime slices", + "salt", + "fresh lime juice" + ] + }, + { + "id": 17518, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "water", + "vegetable oil", + "salt", + "chicken", + "granulated garlic", + "jalapeno chilies", + "cilantro", + "garlic cloves", + "tomatoes", + "lime juice", + "lemon", + "rice", + "pepper", + "lime wedges", + "chicken stock cubes", + "onions" + ] + }, + { + "id": 37011, + "cuisine": "irish", + "ingredients": [ + "leeks", + "salt", + "butter", + "freshly ground pepper", + "chopped potatoes", + "chopped onion", + "homemade chicken stock", + "heavy cream", + "young nettle" + ] + }, + { + "id": 37929, + "cuisine": "korean", + "ingredients": [ + "boneless chicken skinless thigh", + "white rice", + "dark sesame oil", + "low sodium soy sauce", + "fresh ginger", + "crushed red pepper", + "water", + "garlic", + "green onion bottoms", + "brown sugar", + "sesame seeds", + "Gochujang base" + ] + }, + { + "id": 15931, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "baking soda", + "water", + "salt", + "pepper", + "fresh green bean", + "smoked turkey", + "onions" + ] + }, + { + "id": 39054, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "water", + "boneless skinless chicken breasts", + "salt", + "lemon juice", + "beansprouts", + "red chili peppers", + "minced ginger", + "white rice", + "oil", + "corn starch", + "brown sugar", + "lime juice", + "fresh orange juice", + "rice vinegar", + "carrots", + "orange zest", + "diced onions", + "pepper", + "light soy sauce", + "garlic", + "diced celery", + "sliced mushrooms" + ] + }, + { + "id": 45628, + "cuisine": "southern_us", + "ingredients": [ + "pie crust", + "butter", + "corn syrup", + "pecans", + "vanilla", + "eggs", + "toffee bits", + "sugar", + "salt" + ] + }, + { + "id": 27515, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "confectioners sugar", + "vanilla", + "butter", + "cocoa powder" + ] + }, + { + "id": 47291, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "jalapeno chilies", + "hominy", + "salt", + "olive oil", + "stewed tomatoes", + "black pepper", + "finely chopped onion", + "chopped cilantro fresh" + ] + }, + { + "id": 26167, + "cuisine": "vietnamese", + "ingredients": [ + "chicken stock", + "sugar", + "cooking oil", + "salt", + "eggs", + "pepper", + "shallots", + "fish sauce", + "minced garlic", + "tapioca", + "tomatoes", + "ketchup", + "jicama", + "minced pork" + ] + }, + { + "id": 28326, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "lemon wedge", + "onions", + "olive oil", + "garlic cloves", + "ground cumin", + "slivered almonds", + "long-grain rice", + "frozen peas", + "chicken broth", + "zucchini", + "red bell pepper" + ] + }, + { + "id": 38151, + "cuisine": "moroccan", + "ingredients": [ + "pepper", + "ginger", + "parsley sprigs", + "boneless skinless chicken breasts", + "phyllo pastry", + "eggs", + "almonds", + "salt", + "sugar", + "cinnamon" + ] + }, + { + "id": 15514, + "cuisine": "french", + "ingredients": [ + "rib eye steaks", + "shallots", + "olive oil", + "fresh tarragon", + "dried tarragon leaves", + "butter", + "dry white wine" + ] + }, + { + "id": 37948, + "cuisine": "filipino", + "ingredients": [ + "carrots", + "beef brisket", + "onions", + "fish sauce", + "bok choy", + "potatoes", + "peppercorns" + ] + }, + { + "id": 5866, + "cuisine": "french", + "ingredients": [ + "framboise eau-de-vie", + "whipping cream", + "large egg yolks", + "sugar", + "fresh raspberries" + ] + }, + { + "id": 42641, + "cuisine": "southern_us", + "ingredients": [ + "pecans", + "paprika", + "pepper", + "all-purpose flour", + "vegetable oil cooking spray", + "salt", + "saltines", + "egg whites", + "chicken fingers" + ] + }, + { + "id": 31297, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "shallots", + "all-purpose flour", + "dry white wine", + "lemon", + "lemon zest", + "butter", + "herbes de provence", + "chicken stock", + "boneless skinless chicken breasts", + "garlic" + ] + }, + { + "id": 12026, + "cuisine": "cajun_creole", + "ingredients": [ + "fat free milk", + "salt", + "baking potatoes", + "cream style corn", + "large shrimp", + "pepper", + "cajun seasoning" + ] + }, + { + "id": 41548, + "cuisine": "british", + "ingredients": [ + "brown gravy mix", + "baking potatoes", + "water", + "salt", + "pepper", + "butter", + "diced onions", + "milk", + "beef sausage" + ] + }, + { + "id": 10029, + "cuisine": "japanese", + "ingredients": [ + "base", + "mung bean sprouts", + "olive oil", + "green onions", + "sweet onion", + "udon", + "beef", + "sweet peas" + ] + }, + { + "id": 34902, + "cuisine": "greek", + "ingredients": [ + "tahini paste", + "garlic powder", + "water", + "fresh lemon juice", + "salt" + ] + }, + { + "id": 10433, + "cuisine": "vietnamese", + "ingredients": [ + "rice stick noodles", + "peanuts", + "rice vinegar", + "asian fish sauce", + "hot red pepper flakes", + "lemon", + "english cucumber", + "large shrimp", + "sugar", + "large garlic cloves", + "scallions", + "fresh coriander", + "mint sprigs", + "fresh lime juice" + ] + }, + { + "id": 5888, + "cuisine": "vietnamese", + "ingredients": [ + "kaffir lime leaves", + "unsalted roasted peanuts", + "daikon", + "grated carrot", + "garlic cloves", + "fresh lime juice", + "mint", + "jalapeno chilies", + "ground pork", + "salt", + "oyster sauce", + "chili flakes", + "fresh ginger", + "cilantro", + "garlic", + "fresh herbs", + "asian fish sauce", + "lettuce", + "sugar", + "soft buns", + "ginger", + "rice vinegar", + "hot water" + ] + }, + { + "id": 42628, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "chicken breast halves", + "garlic", + "chayotes", + "avocado", + "zucchini", + "vegetable oil", + "cumin seed", + "cooked rice", + "jalapeno chilies", + "diced tomatoes", + "fat skimmed chicken broth", + "garbanzo beans", + "lime wedges", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 34738, + "cuisine": "british", + "ingredients": [ + "sugar", + "baking powder", + "baking soda", + "salt", + "milk", + "butter", + "fresh blueberries", + "all-purpose flour" + ] + }, + { + "id": 37063, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chopped walnuts", + "garlic", + "spaghetti", + "grated parmesan cheese", + "flat leaf parsley", + "pepper", + "salt" + ] + }, + { + "id": 22297, + "cuisine": "italian", + "ingredients": [ + "eggs", + "asparagus", + "white wine", + "garlic", + "penne", + "extra-virgin olive oil", + "manchego cheese", + "fresh parsley" + ] + }, + { + "id": 5529, + "cuisine": "thai", + "ingredients": [ + "peanuts", + "rice noodles", + "cayenne pepper", + "medium shrimp", + "sugar", + "shallots", + "salt", + "scallions", + "canola oil", + "fish sauce", + "large eggs", + "garlic", + "tamarind paste", + "boiling water", + "fresh cilantro", + "lime wedges", + "rice vinegar", + "beansprouts" + ] + }, + { + "id": 40557, + "cuisine": "greek", + "ingredients": [ + "pepper", + "grated parmesan cheese", + "reduced fat reduced sodium cream of mushroom soup", + "olive oil", + "ground lamb", + "ground cinnamon", + "water", + "dry bread crumbs", + "pasta sauce", + "eggplant" + ] + }, + { + "id": 22948, + "cuisine": "moroccan", + "ingredients": [ + "salt and ground black pepper", + "fresh coriander", + "minced beef", + "ground cinnamon", + "cayenne pepper", + "olive oil", + "ground turmeric" + ] + }, + { + "id": 38282, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "salt", + "large eggs", + "grated Gruyère cheese", + "dijon mustard", + "all-purpose flour", + "water", + "butter" + ] + }, + { + "id": 14460, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "meat bones", + "dark soy sauce", + "dipping sauces", + "ground white pepper", + "fish sauce", + "garlic", + "chicken", + "light brown sugar", + "cilantro", + "ground coriander" + ] + }, + { + "id": 15918, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "garam masala", + "salt", + "cinnamon sticks", + "onions", + "garlic paste", + "water", + "vegetable oil", + "cardamom pods", + "curry paste", + "ginger paste", + "fennel seeds", + "warm water", + "meat", + "tamarind paste", + "coconut milk", + "ground turmeric", + "sugar", + "coriander seeds", + "curry", + "cumin seed", + "ghee" + ] + }, + { + "id": 19237, + "cuisine": "french", + "ingredients": [ + "whole milk", + "salt", + "large eggs", + "green onions", + "monterey jack", + "quickcooking grits", + "chopped onion", + "leeks", + "butter" + ] + }, + { + "id": 41352, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "catsup", + "pork shoulder", + "brown sugar", + "baking soda", + "garlic", + "water", + "calamansi juice", + "onions", + "sugar", + "ground black pepper", + "oil" + ] + }, + { + "id": 31913, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "rice noodles", + "beansprouts", + "Sriracha", + "dark brown sugar", + "large shrimp", + "lower sodium soy sauce", + "unsalted dry roast peanuts", + "fresh lime juice", + "fresh basil", + "green onions", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 15556, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "fresh cranberries", + "salt", + "white frostings", + "large eggs", + "lemon", + "unsalted butter", + "flaked coconut", + "all-purpose flour", + "sugar", + "baking powder", + "vanilla extract" + ] + }, + { + "id": 8259, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "pepper", + "green onions", + "vegetable oil", + "cayenne pepper", + "fresh parsley", + "mayonaise", + "flour tortillas", + "chili powder", + "salt", + "red bell pepper", + "cumin", + "avocado", + "garlic powder", + "boneless skinless chicken breasts", + "buttermilk", + "dried dillweed", + "dried parsley", + "frozen spinach", + "canned black beans", + "jalapeno chilies", + "onion powder", + "frozen corn", + "sour cream", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 24971, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "vegetable oil", + "garlic", + "chopped garlic", + "garam masala", + "butter", + "lemon juice", + "no salt added canned tomatoes", + "cinnamon", + "chopped onion", + "cream", + "boneless skinless chicken breasts", + "paprika", + "chopped cilantro" + ] + }, + { + "id": 21514, + "cuisine": "jamaican", + "ingredients": [ + "curry powder", + "salt", + "tomatoes", + "vegetable oil", + "onions", + "water", + "ground thyme", + "boneless skinless chicken breast halves", + "habanero pepper", + "garlic cloves" + ] + }, + { + "id": 38142, + "cuisine": "cajun_creole", + "ingredients": [ + "bay leaves", + "chopped celery", + "round steaks", + "grits", + "dried thyme", + "stewed tomatoes", + "green bellpepper", + "fresh parsley", + "pepper", + "green onions", + "salt", + "chopped onion", + "water", + "vegetable oil", + "all-purpose flour", + "garlic cloves" + ] + }, + { + "id": 9742, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "orzo", + "saffron threads", + "grated parmesan cheese", + "parmesan cheese", + "butter", + "asparagus", + "low salt chicken broth" + ] + }, + { + "id": 47483, + "cuisine": "italian", + "ingredients": [ + "country white bread", + "extra-virgin olive oil", + "grated parmesan cheese", + "purple onion", + "large garlic cloves", + "plum tomatoes", + "fresh basil", + "vegetable broth" + ] + }, + { + "id": 2109, + "cuisine": "spanish", + "ingredients": [ + "green onions", + "cilantro leaves", + "red bell pepper", + "olive oil", + "red wine vinegar", + "fresh lemon juice", + "large shrimp", + "green bell pepper", + "lemon wedge", + "garlic cloves", + "plum tomatoes", + "tomato juice", + "jalape", + "cucumber" + ] + }, + { + "id": 47683, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "mace", + "chili powder", + "cardamom seeds", + "onions", + "fresh coriander", + "coriander powder", + "ginger", + "bay leaf", + "ground cumin", + "black peppercorns", + "vegetables", + "cinnamon", + "salt", + "ground turmeric", + "clove", + "water", + "yoghurt", + "star anise", + "chicken pieces" + ] + }, + { + "id": 36312, + "cuisine": "thai", + "ingredients": [ + "straw mushrooms", + "lemon grass", + "vegetable oil", + "baby corn", + "tiger prawn", + "chiles", + "lime juice", + "shallots", + "squid", + "galangal", + "fresh tomatoes", + "water", + "boneless skinless chicken breasts", + "salt", + "lime leaves", + "minced garlic", + "chili paste", + "shells", + "coconut milk" + ] + }, + { + "id": 42681, + "cuisine": "chinese", + "ingredients": [ + "broccoli florets", + "chili paste with garlic", + "corn starch", + "soy sauce", + "green onions", + "rice vinegar", + "ginger paste", + "brown sugar", + "pork tenderloin", + "teriyaki sauce", + "noodles", + "sesame seeds", + "sesame oil", + "peanut oil" + ] + }, + { + "id": 11354, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "salt", + "cheese", + "olive oil", + "milk" + ] + }, + { + "id": 4843, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "butter", + "flat leaf parsley", + "kosher salt", + "shallots", + "fresh lemon juice", + "capers", + "ground black pepper", + "all-purpose flour", + "boneless skinless chicken breast halves", + "lower sodium chicken broth", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 26615, + "cuisine": "southern_us", + "ingredients": [ + "mini marshmallows", + "brown sugar", + "butter", + "cinnamon hot candy", + "sweet potatoes", + "water" + ] + }, + { + "id": 43717, + "cuisine": "brazilian", + "ingredients": [ + "butter-margarine blend", + "cocoa powder", + "chocolate sprinkles", + "condensed milk" + ] + }, + { + "id": 43445, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "dried thyme", + "salt", + "onions", + "pepper", + "diced tomatoes", + "bay leaf", + "dried basil", + "garlic", + "chicken pieces", + "sweet vermouth", + "olive oil", + "corn starch" + ] + }, + { + "id": 559, + "cuisine": "greek", + "ingredients": [ + "Stonefire Tandoori Garlic Naan", + "kalamata", + "tomatoes", + "feta cheese", + "shredded mozzarella cheese", + "fresh basil", + "green onions", + "olive oil", + "fresh oregano" + ] + }, + { + "id": 24427, + "cuisine": "chinese", + "ingredients": [ + "tofu", + "white pepper", + "french fried onions", + "pork", + "shiitake", + "dried shrimp", + "sweet rice", + "water", + "chinese five-spice powder", + "soy sauce", + "pickled radish" + ] + }, + { + "id": 24149, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "garlic cloves", + "olive oil", + "spaghetti", + "slivered almonds", + "fresh basil leaves", + "pecorino romano cheese", + "plum tomatoes" + ] + }, + { + "id": 40152, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "queso fresco", + "frozen corn", + "chopped cilantro", + "avocado", + "boneless skinless chicken breasts", + "Hidden Valley® Original Ranch® Light Dressing", + "tortilla chips", + "cumin", + "low sodium chicken broth", + "diced tomatoes", + "hot sauce", + "dried oregano", + "black beans", + "lime wedges", + "garlic", + "corn tortillas" + ] + }, + { + "id": 13719, + "cuisine": "irish", + "ingredients": [ + "baking powder", + "salt", + "brown sugar", + "dates", + "mixed peel", + "eggs", + "teas", + "all-purpose flour", + "baking soda", + "raisins" + ] + }, + { + "id": 45130, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "yellow bell pepper", + "juice", + "fresh basil", + "italian plum tomatoes", + "garlic", + "rigatoni", + "italian sausage", + "mozzarella cheese", + "extra-virgin olive oil", + "red bell pepper", + "white onion", + "red pepper flakes", + "freshly ground pepper" + ] + }, + { + "id": 9851, + "cuisine": "greek", + "ingredients": [ + "feta cheese", + "fresh oregano", + "shrimp", + "cherry tomatoes", + "yellow bell pepper", + "garlic cloves", + "olive oil", + "purple onion", + "fresh lemon juice", + "pita loaves", + "english cucumber" + ] + }, + { + "id": 13295, + "cuisine": "southern_us", + "ingredients": [ + "shortening", + "buttermilk", + "all-purpose flour", + "eggs", + "butter", + "salt", + "white sugar", + "white vinegar", + "baking soda", + "vanilla extract", + "cocoa powder", + "milk", + "red food coloring", + "butter extract" + ] + }, + { + "id": 26914, + "cuisine": "spanish", + "ingredients": [ + "sweet onion", + "baking potatoes", + "large eggs", + "kosher salt", + "cooking spray", + "olive oil", + "oregano" + ] + }, + { + "id": 16943, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "garlic", + "kosher salt", + "canola oil", + "black peppercorns", + "bay leaves", + "pork belly", + "rice vinegar" + ] + }, + { + "id": 36616, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "lamb shoulder", + "tomato sauce", + "garlic powder", + "carrots", + "canned chicken broth", + "lemon wedge", + "onions", + "spinach leaves", + "garbanzo beans", + "fresh lemon juice" + ] + }, + { + "id": 41566, + "cuisine": "italian", + "ingredients": [ + "penne", + "chicken breasts", + "parmesan cheese", + "olive oil", + "asparagus" + ] + }, + { + "id": 35696, + "cuisine": "korean", + "ingredients": [ + "sesame oil", + "meat bones", + "water", + "maple syrup", + "garlic cloves", + "black pepper", + "ginger", + "coconut aminos", + "green onions", + "rice vinegar", + "short rib" + ] + }, + { + "id": 1155, + "cuisine": "japanese", + "ingredients": [ + "ketchup", + "worcestershire sauce", + "garlic powder", + "sugar", + "dijon mustard", + "soy sauce", + "mirin" + ] + }, + { + "id": 28354, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "ear of corn", + "cotija", + "butter", + "olive oil", + "black pepper", + "bacon" + ] + }, + { + "id": 2612, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "peanut oil", + "noodles", + "garlic chives", + "chicken breasts", + "corn starch", + "fish sauce", + "red curry paste", + "galangal", + "chicken broth", + "peanuts", + "juice" + ] + }, + { + "id": 45544, + "cuisine": "french", + "ingredients": [ + "cheese", + "ham", + "dried porcini mushrooms", + "grated Gruyère cheese", + "hot water", + "sauvignon blanc", + "garlic cloves", + "ciabatta", + "corn starch" + ] + }, + { + "id": 45027, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "garlic cloves", + "tomatoes", + "purple onion", + "ground cumin", + "cider vinegar", + "salt", + "fresh cilantro", + "chopped onion" + ] + }, + { + "id": 10517, + "cuisine": "southern_us", + "ingredients": [ + "extra-virgin olive oil", + "fresh lemon juice", + "turnip greens", + "crushed red pepper", + "garlic", + "water", + "salt" + ] + }, + { + "id": 45347, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "paprika", + "garlic powder", + "cayenne pepper", + "dried thyme", + "salt", + "onion powder", + "dried oregano" + ] + }, + { + "id": 3629, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "milk", + "butter", + "peaches", + "pure vanilla extract", + "flour" + ] + }, + { + "id": 20018, + "cuisine": "filipino", + "ingredients": [ + "garlic powder", + "pork shoulder", + "soy sauce", + "lemon", + "brown sugar", + "ground black pepper", + "ketchup", + "salt" + ] + }, + { + "id": 24148, + "cuisine": "vietnamese", + "ingredients": [ + "tomatoes", + "minced garlic", + "corn starch", + "tomato sauce", + "wonton wrappers", + "canola oil", + "fish sauce", + "rice wine", + "sliced shallots", + "chicken stock", + "pork", + "thai chile" + ] + }, + { + "id": 5635, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "salt", + "cauliflower florets", + "garlic cloves", + "Italian parsley leaves", + "chickpeas", + "crushed red pepper", + "olives" + ] + }, + { + "id": 4101, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "shallots", + "pepper", + "salt", + "bread crumbs", + "butter", + "clams", + "mushrooms", + "chopped parsley" + ] + }, + { + "id": 18000, + "cuisine": "irish", + "ingredients": [ + "milk", + "large eggs", + "all-purpose flour", + "ground black pepper", + "coarse salt", + "scallions", + "large egg yolks", + "baking powder", + "freshly ground pepper", + "russet", + "unsalted butter", + "russet potatoes" + ] + }, + { + "id": 32180, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "shredded lettuce", + "guacamole", + "sour cream", + "tortillas", + "taco seasoning", + "tomatoes", + "colby jack cheese", + "ground beef" + ] + }, + { + "id": 7544, + "cuisine": "irish", + "ingredients": [ + "seasoning salt", + "rib", + "rock salt" + ] + }, + { + "id": 10976, + "cuisine": "french", + "ingredients": [ + "sugar", + "unsalted butter", + "blue cheese", + "chopped walnuts", + "active dry yeast", + "whole milk", + "walnuts", + "warm water", + "large eggs", + "salt", + "grape juice", + "white wine", + "mission figs", + "all-purpose flour" + ] + }, + { + "id": 35886, + "cuisine": "italian", + "ingredients": [ + "sugar", + "vinegar", + "garlic", + "citric acid", + "white sugar", + "olive oil", + "bay leaves", + "green pepper", + "onions", + "black pepper", + "jalapeno chilies", + "salt", + "fresh parsley", + "dried oregano", + "tomatoes", + "garlic powder", + "onion salt", + "lemon juice", + "garlic salt" + ] + }, + { + "id": 45034, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "diced celery", + "granny smith apples", + "purple onion", + "cooked chicken breasts", + "mayonaise", + "fresh tarragon", + "chopped pecans", + "lemon zest", + "fresh lemon juice" + ] + }, + { + "id": 34172, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "salt", + "italian salad dressing", + "chili powder", + "cayenne pepper", + "cumin", + "chicken broth", + "onion powder", + "fresh lime juice", + "garlic powder", + "paprika", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 21517, + "cuisine": "thai", + "ingredients": [ + "lime", + "low sodium chicken broth", + "garlic", + "smoked paprika", + "brown sugar", + "peanuts", + "red pepper", + "creamy peanut butter", + "chopped cilantro", + "fish sauce", + "fresh ginger", + "sweet potatoes", + "ramen noodle soup", + "coconut milk", + "cremini mushrooms", + "reduced sodium soy sauce", + "Thai red curry paste", + "peanut oil", + "chicken thighs" + ] + }, + { + "id": 29845, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "rice", + "tasso", + "condensed chicken broth", + "celery ribs", + "chicken breast halves", + "onions", + "green bell pepper", + "diced tomatoes" + ] + }, + { + "id": 36412, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "salt", + "tomatillos", + "serrano chilies", + "purple onion", + "lime juice", + "chopped cilantro fresh" + ] + }, + { + "id": 44750, + "cuisine": "greek", + "ingredients": [ + "curry powder", + "salt", + "carrots", + "ground turmeric", + "soy sauce", + "chile pepper", + "chopped onion", + "chicken-flavored soup powder", + "water", + "garlic", + "lentils", + "celery", + "olive oil", + "fenugreek seeds", + "mustard seeds" + ] + }, + { + "id": 11955, + "cuisine": "chinese", + "ingredients": [ + "honey", + "dark sesame oil", + "brown sugar", + "green onions", + "garlic cloves", + "ketchup", + "dry sherry", + "low sodium soy sauce", + "hoisin sauce", + "pork roast" + ] + }, + { + "id": 18380, + "cuisine": "japanese", + "ingredients": [ + "sake", + "white miso", + "vegetable oil", + "asparagus spears", + "sugar", + "ground black pepper", + "rice vinegar", + "kosher salt", + "mirin", + "soba noodles", + "walnut halves", + "sea scallops", + "ginger" + ] + }, + { + "id": 2568, + "cuisine": "thai", + "ingredients": [ + "fresh ginger", + "shallots", + "cilantro leaves", + "Splenda Brown Sugar Blend", + "lemon grass", + "garlic", + "full fat coconut milk", + "Thai red curry paste", + "green beans", + "fish sauce", + "boneless skinless chicken breasts", + "avocado oil" + ] + }, + { + "id": 32135, + "cuisine": "chinese", + "ingredients": [ + "fresh ginger", + "scallions", + "red chili peppers", + "rice wine", + "chicken pieces", + "sugar", + "thai basil", + "garlic cloves", + "light soy sauce", + "sesame oil" + ] + }, + { + "id": 23674, + "cuisine": "mexican", + "ingredients": [ + "green chilies", + "chili con carne", + "American cheese", + "tortilla chips" + ] + }, + { + "id": 24563, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "leaves", + "vegetable oil", + "hot sauce", + "chopped parsley", + "roux", + "cooked rice", + "chopped tomatoes", + "flour", + "garlic", + "carrots", + "bay leaf", + "fish", + "tilapia fillets", + "bell pepper", + "worcestershire sauce", + "okra", + "celery", + "imitation seafood", + "salmon fillets", + "vegetables", + "mushrooms", + "salt", + "smoked paprika", + "onions" + ] + }, + { + "id": 46320, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "celery", + "kosher salt", + "diced tomatoes", + "onions", + "tomato paste", + "ground nutmeg", + "ground beef", + "milk", + "carrots" + ] + }, + { + "id": 20182, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "diced tomatoes", + "onions", + "black beans", + "chili powder", + "garlic", + "cumin", + "eggs", + "corn oil", + "cilantro", + "oregano", + "pepper", + "grating cheese", + "salt" + ] + }, + { + "id": 39738, + "cuisine": "russian", + "ingredients": [ + "unsalted butter", + "fine sea salt", + "sugar", + "chopped fresh chives", + "rice flour", + "large eggs", + "all-purpose flour", + "active dry yeast", + "whole milk", + "sour cream" + ] + }, + { + "id": 43218, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "whole milk", + "chopped onion", + "sugar", + "lasagna noodles", + "salt", + "hot water", + "fresh basil", + "unsalted butter", + "extra-virgin olive oil", + "garlic cloves", + "dried porcini mushrooms", + "parmigiano reggiano cheese", + "all-purpose flour", + "diced tomatoes in juice" + ] + }, + { + "id": 21101, + "cuisine": "brazilian", + "ingredients": [ + "superfine sugar", + "cachaca", + "sour cherries", + "fresh lime", + "ice" + ] + }, + { + "id": 48665, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "olive oil", + "fresh mushrooms", + "pasta sauce", + "salt", + "red bell pepper", + "tomatoes", + "sweet onion", + "penne pasta", + "boiling water", + "green bell pepper", + "zucchini", + "garlic cloves" + ] + }, + { + "id": 35303, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "black pepper", + "corn starch", + "dark soy sauce", + "vinegar", + "eggs", + "water", + "white button mushrooms", + "soy sauce", + "soft tofu" + ] + }, + { + "id": 7776, + "cuisine": "cajun_creole", + "ingredients": [ + "creole mustard", + "sour cream", + "ground red pepper", + "cajun seasoning", + "cider vinegar" + ] + }, + { + "id": 32081, + "cuisine": "french", + "ingredients": [ + "smoked bacon", + "potatoes", + "bread dough", + "light cream", + "salt", + "olive oil", + "butter", + "pepper", + "ground nutmeg", + "chopped onion" + ] + }, + { + "id": 48620, + "cuisine": "korean", + "ingredients": [ + "molasses", + "edamame", + "toasted sesame seeds", + "water", + "carrots", + "canola oil", + "sushi rice", + "chopped walnuts", + "nori", + "soy sauce", + "daikon", + "shiso" + ] + }, + { + "id": 39422, + "cuisine": "mexican", + "ingredients": [ + "extra-lean ground beef", + "eggs", + "Mexican cheese", + "tomatoes", + "taco seasoning", + "bread crumbs" + ] + }, + { + "id": 323, + "cuisine": "thai", + "ingredients": [ + "sugar", + "thai chile", + "chopped cilantro", + "lime juice", + "freshly ground pepper", + "chicken legs", + "vegetable oil", + "tamarind concentrate", + "water", + "garlic", + "asian fish sauce" + ] + }, + { + "id": 14542, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "dried oregano", + "pepper", + "garlic cloves", + "green olives", + "crushed red pepper", + "red wine vinegar", + "celery" + ] + }, + { + "id": 18635, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "large eggs", + "Italian bread", + "green peppercorns", + "olive oil", + "fresh parsley leaves", + "bread crumb fresh", + "unsalted butter", + "fresh lemon juice", + "milk", + "anchovy paste", + "plum tomatoes" + ] + }, + { + "id": 16576, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "sour cream", + "lime zest" + ] + }, + { + "id": 12046, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "baking powder", + "all-purpose flour", + "corn starch", + "sugar", + "low-fat buttermilk", + "vanilla extract", + "blueberries", + "ground cinnamon", + "peaches", + "mint sprigs", + "grated lemon zest", + "butter-margarine blend", + "cooking spray", + "salt", + "lemon juice" + ] + }, + { + "id": 19085, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "water", + "baking potatoes", + "chopped onion", + "flat leaf parsley", + "black pepper", + "fennel bulb", + "green peas", + "garlic cloves", + "clams", + "fat free less sodium chicken broth", + "zucchini", + "salt", + "carrots", + "great northern beans", + "olive oil", + "asiago", + "long-grain rice", + "dried oregano" + ] + }, + { + "id": 49405, + "cuisine": "southern_us", + "ingredients": [ + "fresh dill", + "white wine vinegar", + "kosher salt", + "sour cream", + "capers", + "lemon zest", + "mayonaise", + "fresh lemon juice" + ] + }, + { + "id": 12629, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "chile pepper", + "olive oil", + "salt", + "tarragon vinegar", + "black olives", + "green onions", + "garlic salt" + ] + }, + { + "id": 35329, + "cuisine": "mexican", + "ingredients": [ + "water", + "mint leaves", + "corn starch", + "granulated sugar", + "1% low-fat milk", + "sweetened condensed milk", + "large egg whites", + "vanilla extract", + "nonfat evaporated milk", + "brown sugar", + "large eggs", + "cream cheese" + ] + }, + { + "id": 481, + "cuisine": "irish", + "ingredients": [ + "salt", + "milk", + "white sugar", + "baking soda", + "white vinegar", + "all-purpose flour" + ] + }, + { + "id": 3082, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "rice wine", + "strawberries", + "garlic cloves", + "ground ginger", + "pepper", + "salt", + "Gochujang base", + "onions", + "sugar", + "fresh ginger", + "rice vinegar", + "walnuts", + "canola oil", + "ketchup", + "chicken wing drummettes", + "corn syrup", + "corn starch" + ] + }, + { + "id": 37072, + "cuisine": "mexican", + "ingredients": [ + "hominy", + "ground pork", + "mixed spice", + "tomatillos", + "purple onion", + "avocado", + "radishes", + "garlic", + "lime", + "cilantro", + "pepitas" + ] + }, + { + "id": 43831, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "bell pepper", + "diced tomatoes", + "serrano", + "cinnamon sticks", + "ginger paste", + "water", + "bay leaves", + "curry", + "green cardamom", + "frozen peas", + "pepper", + "mint leaves", + "crushed red pepper flakes", + "rice", + "onions", + "ground cumin", + "clove", + "garam masala", + "yoghurt", + "salt", + "ground coriander", + "chicken" + ] + }, + { + "id": 7354, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "salt and ground black pepper", + "zucchini" + ] + }, + { + "id": 10712, + "cuisine": "italian", + "ingredients": [ + "baking powder", + "chopped walnuts", + "water", + "vanilla extract", + "miniature semisweet chocolate chips", + "eggs", + "butter", + "white sugar", + "egg yolks", + "all-purpose flour", + "unsweetened cocoa powder" + ] + }, + { + "id": 13746, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "crushed red pepper flakes", + "onion powder", + "dried oregano", + "ground black pepper", + "salt", + "paprika", + "ground cumin" + ] + }, + { + "id": 12020, + "cuisine": "italian", + "ingredients": [ + "canned low sodium chicken broth", + "heavy cream", + "fettucine", + "salami", + "goat cheese", + "ground black pepper", + "garlic", + "fresh basil", + "butter" + ] + }, + { + "id": 25510, + "cuisine": "french", + "ingredients": [ + "navel oranges", + "freshly ground pepper", + "black peppercorns", + "yellow onion", + "thyme", + "kosher salt", + "duck", + "celery ribs", + "port", + "carrots" + ] + }, + { + "id": 22348, + "cuisine": "thai", + "ingredients": [ + "tomatoes", + "tumeric", + "green onions", + "chili sauce", + "coconut milk", + "fish sauce", + "cayenne", + "chili powder", + "ground coriander", + "galangal", + "kaffir lime leaves", + "fresh coriander", + "shrimp paste", + "fresh mushrooms", + "fillets", + "fresh red chili", + "brown sugar", + "curry sauce", + "garlic", + "green beans", + "ground cumin" + ] + }, + { + "id": 42112, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "water", + "ground black pepper", + "all-purpose flour", + "minced garlic", + "baking soda", + "buttermilk", + "kosher salt", + "black-eyed peas", + "butter", + "chopped onion", + "unsalted chicken stock", + "smoked bacon", + "green onions", + "hot sauce" + ] + }, + { + "id": 22715, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "water", + "pork shoulder butt" + ] + }, + { + "id": 22110, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "vegetable oil", + "sauce", + "ground beef", + "green onions", + "salt", + "sharp cheddar cheese", + "chopped cilantro fresh", + "flour", + "red pepper flakes", + "green chilies", + "onions", + "chicken broth", + "chili powder", + "all-purpose flour", + "chopped cilantro", + "ground cumin" + ] + }, + { + "id": 851, + "cuisine": "mexican", + "ingredients": [ + "angel hair", + "grated cotija", + "carrots", + "black pepper", + "cilantro stems", + "tomato sauce", + "jalapeno chilies", + "canola oil", + "celery ribs", + "white onion", + "salt" + ] + }, + { + "id": 20709, + "cuisine": "british", + "ingredients": [ + "milk", + "lard", + "bicarbonate of soda", + "soft margarine", + "porridge oats", + "ground ginger", + "flour", + "white sugar", + "black treacle", + "golden syrup" + ] + }, + { + "id": 17524, + "cuisine": "filipino", + "ingredients": [ + "granulated sugar", + "vanilla extract", + "brown sugar", + "baking powder", + "all-purpose flour", + "powdered sugar", + "large eggs", + "salt", + "dark chocolate cocoa powder", + "vegetable oil" + ] + }, + { + "id": 39509, + "cuisine": "spanish", + "ingredients": [ + "shredded cheddar cheese", + "green onions", + "spanish chorizo", + "milk", + "russet potatoes", + "eggs", + "sweet onion", + "cracked black pepper", + "kosher salt", + "olive oil", + "garlic" + ] + }, + { + "id": 25345, + "cuisine": "italian", + "ingredients": [ + "water", + "dark rum", + "unsweetened cocoa powder", + "large egg yolks", + "Amaretti Cookies", + "sugar", + "whole milk", + "orange peel", + "large eggs", + "berries" + ] + }, + { + "id": 19753, + "cuisine": "japanese", + "ingredients": [ + "red wine vinegar", + "fresh ginger", + "fresh lime juice", + "brown sugar", + "cucumber", + "mirin", + "onions" + ] + }, + { + "id": 1776, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "Shaoxing wine", + "ground pork", + "minced ginger", + "green onions", + "salt", + "soy sauce", + "starch", + "garlic", + "large eggs", + "sesame oil", + "bok choy" + ] + }, + { + "id": 20421, + "cuisine": "french", + "ingredients": [ + "rosemary", + "garlic cloves", + "tomatoes", + "shallots", + "boiling potatoes", + "olive oil", + "thyme", + "water", + "rack of lamb" + ] + }, + { + "id": 19630, + "cuisine": "filipino", + "ingredients": [ + "bananas", + "brown sugar", + "spring roll wrappers", + "cooking oil", + "jackfruit" + ] + }, + { + "id": 1134, + "cuisine": "spanish", + "ingredients": [ + "lemon zest", + "ground almonds", + "potatoes", + "white sugar", + "egg whites", + "corn starch", + "pinenuts", + "egg yolks" + ] + }, + { + "id": 39645, + "cuisine": "russian", + "ingredients": [ + "alum", + "vinegar", + "onions", + "minced garlic", + "pickling cucumbers", + "pickling spices", + "canning salt", + "sugar", + "water", + "dill" + ] + }, + { + "id": 41985, + "cuisine": "french", + "ingredients": [ + "butter", + "cream cheese, soften", + "pork sausages", + "eggs", + "all-purpose flour", + "onions", + "shredded Monterey Jack cheese", + "salt", + "sour cream", + "canola oil", + "milk", + "asparagus spears", + "marjoram" + ] + }, + { + "id": 8564, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "ginger paste", + "garlic paste", + "ground red pepper", + "chopped cilantro fresh", + "white vinegar", + "ground black pepper", + "onions", + "chuck", + "plain yogurt", + "vegetable oil", + "plum tomatoes" + ] + }, + { + "id": 31377, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "black olives", + "onions", + "low sodium taco seasoning", + "extra-virgin olive oil", + "turkey meat", + "colby jack cheese", + "red enchilada sauce", + "low sodium chicken broth", + "garlic", + "rotini" + ] + }, + { + "id": 9932, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "garam masala", + "salt", + "fennel seeds", + "pepper", + "shallots", + "cumin", + "boneless chicken thighs", + "cassia cinnamon", + "ghee", + "curry leaves", + "honey", + "chili powder" + ] + }, + { + "id": 24607, + "cuisine": "irish", + "ingredients": [ + "large eggs", + "all-purpose flour", + "pitted date", + "butter", + "baking soda", + "crème fraîche", + "firmly packed brown sugar", + "baking powder" + ] + }, + { + "id": 25861, + "cuisine": "french", + "ingredients": [ + "egg whites", + "vanilla extract", + "creme anglaise", + "bittersweet chocolate", + "granulated sugar", + "whipped cream", + "egg yolks", + "confectioners sugar" + ] + }, + { + "id": 20525, + "cuisine": "italian", + "ingredients": [ + "picante sauce", + "dried thyme", + "cayenne pepper", + "tomato paste", + "water", + "white rice", + "boneless skinless chicken breast halves", + "pepper", + "grated parmesan cheese", + "dried parsley", + "tomatoes", + "chunky pasta sauce", + "salt", + "dried oregano" + ] + }, + { + "id": 9039, + "cuisine": "italian", + "ingredients": [ + "eggs", + "whole milk", + "salt", + "confectioners sugar", + "milk", + "sprinkles", + "candied fruit", + "anise seed", + "active dry yeast", + "vanilla extract", + "blanched almonds", + "shortening", + "butter", + "all-purpose flour", + "white sugar" + ] + }, + { + "id": 15189, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "leg of lamb", + "fine sea salt", + "tapenade", + "fresh rosemary", + "garlic cloves" + ] + }, + { + "id": 28599, + "cuisine": "british", + "ingredients": [ + "potatoes", + "olive oil flavored cooking spray", + "eggs", + "rice crackers", + "mixed spice", + "fillets", + "flour for dusting" + ] + }, + { + "id": 17304, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salsa", + "pinto beans", + "zucchini", + "chopped onion", + "dried oregano", + "paprika", + "long-grain rice", + "olive oil", + "cayenne pepper", + "garlic salt" + ] + }, + { + "id": 25333, + "cuisine": "filipino", + "ingredients": [ + "tamarind extract", + "cooking oil", + "garlic", + "tomatoes", + "other vegetables", + "finger chili", + "dumplings", + "pepper", + "shallots", + "salt", + "kangkong", + "eggplant", + "vegetable broth" + ] + }, + { + "id": 11436, + "cuisine": "french", + "ingredients": [ + "kaiser rolls", + "light mayonnaise", + "white wine vinegar", + "corn starch", + "fat free less sodium chicken broth", + "dry white wine", + "butter", + "garlic cloves", + "lump crab meat", + "ground red pepper", + "paprika", + "lemon juice", + "black pepper", + "green onions", + "shallots", + "stone ground mustard", + "bay leaf" + ] + }, + { + "id": 22466, + "cuisine": "cajun_creole", + "ingredients": [ + "minced garlic", + "salt", + "flat leaf parsley", + "mayonaise", + "ground black pepper", + "sweet paprika", + "tomato paste", + "whole grain mustard", + "hot sauce", + "ketchup", + "chopped celery", + "scallions" + ] + }, + { + "id": 13519, + "cuisine": "french", + "ingredients": [ + "golden caster sugar", + "unsalted butter", + "raisins", + "ground cinnamon", + "egg yolks", + "puff pastry", + "powdered sugar", + "dark rum", + "plain flour", + "large free range egg", + "ground almonds" + ] + }, + { + "id": 14135, + "cuisine": "mexican", + "ingredients": [ + "jicama", + "lime", + "crushed red pepper" + ] + }, + { + "id": 22136, + "cuisine": "indian", + "ingredients": [ + "granular sucrolose sweetener", + "ice", + "nonfat milk", + "ground cardamom", + "nonfat yogurt plain", + "mango" + ] + }, + { + "id": 15779, + "cuisine": "chinese", + "ingredients": [ + "brown sugar", + "green onions", + "corn starch", + "water", + "vegetable oil", + "soy sauce", + "flank steak", + "cooked rice", + "fresh ginger", + "garlic" + ] + }, + { + "id": 27974, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "sugar", + "almond extract", + "slivered almonds", + "compote", + "grated lemon peel", + "powdered sugar", + "large eggs", + "salt", + "candied orange peel", + "whole milk", + "dry bread crumbs" + ] + }, + { + "id": 46938, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "boneless skinless chicken breasts", + "beansprouts", + "green cabbage", + "egg roll wrappers", + "carrots", + "water", + "vegetable oil", + "canola oil", + "soy sauce", + "green onions", + "corn starch" + ] + }, + { + "id": 43835, + "cuisine": "southern_us", + "ingredients": [ + "large egg yolks", + "key lime juice", + "crushed graham crackers", + "butter", + "sugar", + "sweetened condensed milk" + ] + }, + { + "id": 1325, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "carrots", + "fresh parsley", + "ground black pepper", + "dry white wine", + "chopped celery", + "whole nutmegs", + "plum tomatoes", + "pancetta", + "finely chopped onion", + "ground pork", + "organic vegetable broth", + "bay leaf", + "chopped garlic", + "kosher salt", + "pork tenderloin", + "1% low-fat milk", + "cinnamon sticks", + "spaghetti" + ] + }, + { + "id": 46992, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "poblano chiles", + "chiles", + "garlic cloves", + "white onion", + "red bell pepper", + "Mexican oregano" + ] + }, + { + "id": 14580, + "cuisine": "french", + "ingredients": [ + "black peppercorns", + "olive oil", + "purple onion", + "baguette", + "star anise", + "reduced sodium chicken broth", + "manchego cheese", + "water", + "dry red wine" + ] + }, + { + "id": 23974, + "cuisine": "french", + "ingredients": [ + "sugar", + "heavy cream", + "fresh lemon juice", + "large eggs", + "fresh orange juice", + "orange zest", + "cream of tartar", + "whole milk", + "salt", + "large egg whites", + "sweetened coconut flakes", + "fresh pineapple" + ] + }, + { + "id": 14565, + "cuisine": "southern_us", + "ingredients": [ + "celery ribs", + "cooked chicken", + "mixed greens", + "slivered almonds", + "purple onion", + "avocado", + "poppy seed dressing", + "mayonaise", + "strawberries" + ] + }, + { + "id": 2558, + "cuisine": "italian", + "ingredients": [ + "green olives", + "olive oil", + "chicken breast halves", + "chopped onion", + "fresh basil", + "sugar", + "ground red pepper", + "chopped celery", + "chicken thighs", + "tomatoes", + "parsley sprigs", + "bay leaves", + "chicken drumsticks", + "flat leaf parsley", + "capers", + "macaroni", + "red wine vinegar", + "garlic cloves" + ] + }, + { + "id": 41029, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "boneless skinless chicken breast halves", + "water", + "garlic cloves", + "shredded Monterey Jack cheese", + "finely chopped onion", + "nopalitos", + "ground cumin", + "black pepper", + "salt", + "masa harina" + ] + }, + { + "id": 30387, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "curry powder", + "clam juice", + "sugar", + "minced ginger", + "light coconut milk", + "salmon fillets", + "lime juice", + "watercress", + "chile paste with garlic", + "minced garlic", + "vegetable oil", + "onions" + ] + }, + { + "id": 27758, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "green onions", + "salt", + "onions", + "green bell pepper", + "ground black pepper", + "garlic", + "red bell pepper", + "cold water", + "dried basil", + "crushed red pepper flakes", + "corn starch", + "water", + "vegetable oil", + "shrimp", + "spaghetti" + ] + }, + { + "id": 1431, + "cuisine": "british", + "ingredients": [ + "savoy cabbage", + "potatoes", + "pepper", + "salt", + "cheddar cheese", + "swede", + "unsalted butter" + ] + }, + { + "id": 28404, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "crushed red pepper", + "minced garlic", + "whipping cream", + "dry vermouth", + "bacon slices", + "onions", + "large eggs", + "linguine" + ] + }, + { + "id": 45267, + "cuisine": "mexican", + "ingredients": [ + "chili flakes", + "paprika", + "taco shells", + "dried oregano", + "lean minced beef", + "garlic cloves", + "sunflower oil", + "ground cumin" + ] + }, + { + "id": 45439, + "cuisine": "thai", + "ingredients": [ + "water", + "medium-grain rice", + "sea salt", + "coconut milk", + "coconut", + "flavoring", + "coconut oil", + "maple syrup" + ] + }, + { + "id": 25036, + "cuisine": "italian", + "ingredients": [ + "seedless raspberry jam", + "almond extract", + "slivered almonds", + "unsalted butter", + "salt", + "sugar", + "large eggs", + "all-purpose flour", + "raspberries", + "vanilla extract" + ] + }, + { + "id": 47203, + "cuisine": "cajun_creole", + "ingredients": [ + "egg whites", + "bread crumbs", + "onions", + "plain flour", + "cajun seasoning", + "olive oil" + ] + }, + { + "id": 18124, + "cuisine": "indian", + "ingredients": [ + "plain yogurt", + "green chilies", + "kosher salt", + "hot water", + "grated coconut", + "black mustard seeds", + "fresh coriander", + "ghee" + ] + }, + { + "id": 11897, + "cuisine": "french", + "ingredients": [ + "flour", + "sugar", + "salt", + "eggs", + "butter", + "water" + ] + }, + { + "id": 22629, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "zucchini", + "red bell pepper", + "olive oil", + "garlic", + "onions", + "salsa verde", + "shredded cheese", + "ground cumin", + "yellow squash", + "large flour tortillas", + "ground cayenne pepper" + ] + }, + { + "id": 44097, + "cuisine": "italian", + "ingredients": [ + "chicken stock", + "green lentil", + "bone-in chicken breasts", + "fresh leav spinach", + "salsa", + "fresh parsley", + "Italian turkey sausage links", + "garlic", + "pearl barley", + "olive oil", + "chickpeas", + "onions" + ] + }, + { + "id": 21415, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "green enchilada sauce", + "chicken broth", + "jalapeno chilies", + "corn tortillas", + "avocado", + "cooked turkey", + "red enchilada sauce", + "tomatoes", + "half & half", + "ground cumin" + ] + }, + { + "id": 1506, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "lamb chops", + "ground chuck", + "sea salt", + "minced onion", + "marjoram", + "minced garlic", + "ground rosemary" + ] + }, + { + "id": 29565, + "cuisine": "chinese", + "ingredients": [ + "romaine lettuce", + "sliced almonds", + "vegetable oil", + "scallions", + "soy sauce", + "cooked chicken", + "napa cabbage", + "chopped cilantro fresh", + "sugar", + "sesame seeds", + "wonton wrappers", + "fresh lemon juice", + "white vinegar", + "black pepper", + "sesame oil", + "salt", + "snow peas" + ] + }, + { + "id": 43263, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "ground black pepper", + "red bell pepper", + "olive oil", + "salt", + "onions", + "honey", + "jalapeno chilies", + "fresh lime juice", + "garbanzo beans", + "frozen corn kernels", + "chopped cilantro fresh" + ] + }, + { + "id": 26549, + "cuisine": "italian", + "ingredients": [ + "hot red pepper flakes", + "linguine", + "extra-virgin olive oil", + "garlic cloves", + "bread crumbs", + "chopped walnuts", + "cheese", + "flat leaf parsley" + ] + }, + { + "id": 44947, + "cuisine": "japanese", + "ingredients": [ + "pork", + "mirin", + "sake", + "water", + "ginger", + "soy sauce", + "miso", + "sugar", + "corn", + "garlic" + ] + }, + { + "id": 26871, + "cuisine": "russian", + "ingredients": [ + "sugar", + "salt", + "baking powder", + "oil", + "large eggs", + "all-purpose flour", + "buttermilk" + ] + }, + { + "id": 22573, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "Mexican oregano", + "garlic", + "corn tortillas", + "avocado", + "black pepper", + "vegetable oil", + "sauce", + "chopped cilantro", + "chicken broth", + "corn", + "coarse salt", + "shrimp", + "onions", + "green chile", + "flour", + "butter", + "sour cream" + ] + }, + { + "id": 22772, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "garlic", + "corn tortillas", + "cumin", + "avocado", + "diced tomatoes", + "sour cream", + "roasted tomatoes", + "chile powder", + "green onions", + "cream cheese", + "chopped cilantro", + "shredded cheddar cheese", + "cilantro", + "ground turkey", + "onions" + ] + }, + { + "id": 11170, + "cuisine": "thai", + "ingredients": [ + "chili flakes", + "russet potatoes", + "thai green curry paste", + "reduced fat coconut milk", + "fresh cilantro", + "duck", + "firmly packed brown sugar", + "cilantro sprigs", + "asian fish sauce", + "chicken broth", + "curry powder", + "salt" + ] + }, + { + "id": 41277, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "large egg whites", + "vanilla", + "cider vinegar", + "half & half", + "vanilla wafers", + "cream of tartar", + "vanilla beans", + "butter", + "corn starch", + "sugar", + "bananas", + "salt" + ] + }, + { + "id": 12957, + "cuisine": "thai", + "ingredients": [ + "medium egg noodles", + "Thai red curry paste", + "coconut milk", + "brown sugar", + "spring onions", + "chinese leaf", + "coriander", + "lime", + "vegetable oil", + "carrots", + "cherry tomatoes", + "vegetable stock", + "beansprouts" + ] + }, + { + "id": 12412, + "cuisine": "british", + "ingredients": [ + "fresh rosemary", + "ground black pepper", + "vegetable stock", + "all-purpose flour", + "nutmeg", + "vegetables", + "balsamic vinegar", + "purple onion", + "chestnuts", + "all potato purpos", + "butter", + "venison", + "olive oil", + "bay leaves", + "sea salt", + "pork sausages" + ] + }, + { + "id": 40401, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "Shaoxing wine", + "scallions", + "potato starch", + "light soy sauce", + "salt", + "short rib", + "red chili peppers", + "sesame oil", + "garlic cloves", + "chili flakes", + "fresh ginger", + "peanut oil", + "ground cumin" + ] + }, + { + "id": 33848, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "fresh oregano", + "kosher salt", + "Italian parsley leaves", + "corn tortillas", + "black pepper", + "ground red pepper", + "garlic cloves", + "halibut fillets", + "extra-virgin olive oil", + "ground cumin" + ] + }, + { + "id": 28729, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped green bell pepper", + "white rice", + "dri leav thyme", + "minced garlic", + "cajun seasoning", + "chopped celery", + "onions", + "chicken broth", + "bay leaves", + "smoked sausage", + "medium shrimp", + "olive oil", + "tomatoes with juice", + "salt" + ] + }, + { + "id": 45520, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "salt", + "oil", + "coriander powder", + "rice", + "water", + "cilantro leaves", + "potatoes", + "green chilies" + ] + }, + { + "id": 20869, + "cuisine": "italian", + "ingredients": [ + "milk", + "low sodium chicken broth", + "garlic", + "yellow onion", + "black pepper", + "parmesan cheese", + "baby spinach", + "salt", + "fresh parsley", + "dried basil", + "cooked chicken", + "part-skim ricotta cheese", + "oven-ready lasagna noodles", + "mozzarella cheese", + "lasagne", + "butter", + "all-purpose flour", + "dried oregano" + ] + }, + { + "id": 36879, + "cuisine": "italian", + "ingredients": [ + "pasta", + "sausage casings", + "red pepper flakes", + "salt", + "onions", + "tomato paste", + "pepper", + "basil", + "oil", + "fennel seeds", + "mozzarella cheese", + "diced tomatoes", + "ricotta", + "oregano", + "chicken broth", + "parmesan cheese", + "garlic", + "bay leaf" + ] + }, + { + "id": 36639, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "dri basil leaves, crush", + "vegetables", + "fettuccine, cook and drain" + ] + }, + { + "id": 42547, + "cuisine": "italian", + "ingredients": [ + "garlic", + "grated parmesan cheese", + "pinenuts", + "fresh basil leaves", + "extra-virgin olive oil" + ] + }, + { + "id": 37720, + "cuisine": "southern_us", + "ingredients": [ + "graham crackers", + "egg yolks", + "key lime juice", + "lime zest", + "mascarpone", + "confectioners sugar", + "kosher salt", + "heavy cream", + "melted butter", + "granulated sugar", + "sweetened condensed milk" + ] + }, + { + "id": 4993, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "large eggs", + "grated lemon zest", + "kosher salt", + "vanilla extract", + "sugar", + "buttermilk", + "fresh lemon juice", + "light brown sugar", + "unsalted butter", + "all-purpose flour" + ] + }, + { + "id": 26911, + "cuisine": "french", + "ingredients": [ + "cream of tartar", + "vegetable oil spray", + "sugar", + "water", + "pecan halves" + ] + }, + { + "id": 23984, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "sweet potatoes", + "red curry paste", + "carrots", + "lime", + "ginger", + "roasted peanuts", + "coconut oil", + "cilantro", + "yellow onion", + "coconut milk", + "ground black pepper", + "vegetable broth", + "garlic cloves" + ] + }, + { + "id": 28199, + "cuisine": "southern_us", + "ingredients": [ + "egg whites", + "pork sausages", + "ketchup", + "flavoring", + "onion powder", + "grits", + "garlic powder", + "ground beef" + ] + }, + { + "id": 45241, + "cuisine": "italian", + "ingredients": [ + "penne", + "bacon", + "parmesan cheese", + "salt", + "parsley", + "medium shrimp", + "dried thyme", + "purple onion" + ] + }, + { + "id": 8967, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "ginger", + "ground coriander", + "lemongrass", + "salt", + "lime juice", + "garlic", + "ground cumin", + "fish sauce", + "shallots", + "cilantro leaves" + ] + }, + { + "id": 47109, + "cuisine": "indian", + "ingredients": [ + "water", + "canola oil", + "finely chopped onion", + "chiles", + "salt", + "grated coconut", + "all-purpose flour" + ] + }, + { + "id": 45583, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "pineapple", + "chopped cilantro", + "chicken breasts", + "salt", + "jalapeno chilies", + "purple onion", + "cajun seasoning", + "juice" + ] + }, + { + "id": 32377, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "large egg yolks", + "chopped fresh chives", + "fresh parsley", + "fresh chives", + "large eggs", + "butter", + "canola oil", + "fontina cheese", + "finely chopped onion", + "dry white wine", + "panko breadcrumbs", + "olive oil", + "grated parmesan cheese", + "low salt chicken broth" + ] + }, + { + "id": 29637, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "chickpeas", + "curry powder", + "kosher salt", + "cumin", + "cayenne pepper" + ] + }, + { + "id": 39730, + "cuisine": "moroccan", + "ingredients": [ + "beef stock", + "gingerroot", + "ground turmeric", + "stewing beef", + "chili powder", + "garlic cloves", + "pimentos", + "oil", + "pumpkin", + "salt", + "onions" + ] + }, + { + "id": 32701, + "cuisine": "vietnamese", + "ingredients": [ + "clove", + "beef bones", + "thai basil", + "cilantro", + "salt", + "fish sauce", + "water", + "oxtails", + "star anise", + "cinnamon sticks", + "black peppercorns", + "pepper", + "bay leaves", + "ginger", + "yellow onion", + "brown sugar", + "rice sticks", + "lime wedges", + "beef tenderloin", + "beansprouts" + ] + }, + { + "id": 7504, + "cuisine": "italian", + "ingredients": [ + "pasta", + "condensed tomato soup", + "tomato sauce", + "hot Italian sausages", + "milk", + "shredded mozzarella cheese", + "tomato paste", + "sweet italian sausage" + ] + }, + { + "id": 23275, + "cuisine": "mexican", + "ingredients": [ + "granulated garlic", + "pepper jack", + "salsa", + "sour cream", + "water", + "chili powder", + "pork roast", + "dried oregano", + "ground black pepper", + "onion powder", + "smoked paprika", + "kosher salt", + "guacamole", + "cayenne pepper", + "corn tortillas" + ] + }, + { + "id": 29174, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "vegetable broth", + "bay leaf", + "tomato paste", + "parsley", + "thyme", + "red lentils", + "brown rice", + "garlic", + "onions", + "spinach", + "cajun seasoning", + "celery" + ] + }, + { + "id": 15219, + "cuisine": "italian", + "ingredients": [ + "pasta sauce", + "ground black pepper", + "chopped fresh thyme", + "flat leaf parsley", + "eggs", + "part-skim mozzarella cheese", + "lasagna noodles, cooked and drained", + "fresh oregano", + "fresh basil", + "fresh parmesan cheese", + "ground red pepper", + "garlic cloves", + "kosher salt", + "cooking spray", + "part-skim ricotta cheese" + ] + }, + { + "id": 47040, + "cuisine": "french", + "ingredients": [ + "sugar", + "all-purpose flour", + "unsalted butter", + "large egg whites", + "orange zest", + "vanilla" + ] + }, + { + "id": 11198, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "honey", + "dried apricot", + "lamb", + "ground cinnamon", + "sultana", + "almonds", + "Flora Cuisine", + "onions", + "lamb stock", + "chopped tomatoes", + "paprika", + "fresh parsley", + "tomato purée", + "fresh coriander", + "ground black pepper", + "garlic" + ] + }, + { + "id": 10211, + "cuisine": "indian", + "ingredients": [ + "brussels sprouts", + "cilantro", + "ground coriander", + "ground turmeric", + "chile powder", + "olive oil", + "garlic", + "black mustard seeds", + "kosher salt", + "ginger", + "cumin seed", + "ground cumin", + "tomatoes", + "garam masala", + "purple onion", + "bay leaf" + ] + }, + { + "id": 26774, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "white sugar", + "chopped celery", + "chopped green bell pepper", + "tomatoes", + "chopped onion" + ] + }, + { + "id": 43818, + "cuisine": "filipino", + "ingredients": [ + "asian pear", + "sour cream", + "fruit", + "lychees", + "red delicious apples", + "seeds", + "sweetened condensed milk", + "cream style corn", + "preserves" + ] + }, + { + "id": 14315, + "cuisine": "filipino", + "ingredients": [ + "egg yolks", + "water", + "evaporated milk", + "brown sugar", + "sweetened condensed milk" + ] + }, + { + "id": 23620, + "cuisine": "japanese", + "ingredients": [ + "ground chicken", + "peeled fresh ginger", + "sansho", + "water", + "shichimi togarashi", + "black pepper", + "green onions", + "soy sauce", + "mirin", + "sea salt" + ] + }, + { + "id": 19012, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "rice vinegar", + "black pepper", + "white sugar", + "boneless chicken skinless thigh", + "corn starch", + "cold water", + "garlic" + ] + }, + { + "id": 34834, + "cuisine": "mexican", + "ingredients": [ + "butter", + "shrimp shells", + "green bell pepper", + "frozen corn", + "tex mex seasoning", + "whole wheat tortillas", + "onions", + "mozzarella cheese", + "red bell pepper" + ] + }, + { + "id": 7245, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "garlic cloves", + "large eggs", + "dried oregano", + "canned black beans", + "corn tortillas", + "salsa", + "canola oil" + ] + }, + { + "id": 35378, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "shredded mozzarella cheese", + "pasta sauce", + "ricotta cheese", + "eggs", + "ziti", + "dried parsley", + "pepper", + "salt" + ] + }, + { + "id": 12635, + "cuisine": "greek", + "ingredients": [ + "water", + "salt", + "onions", + "fresh green peas", + "extra-virgin olive oil", + "fresh lemon juice", + "ground black pepper", + "small red potato", + "chopped fresh mint", + "fresh dill", + "artichokes", + "carrots" + ] + }, + { + "id": 8486, + "cuisine": "french", + "ingredients": [ + "salad", + "sugar", + "flour", + "eggs", + "evaporated milk", + "vanilla", + "chopped nuts", + "shredded coconut", + "butter", + "brown sugar", + "baking soda", + "salt" + ] + }, + { + "id": 24812, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "chunky peanut butter", + "red bell pepper", + "brown sugar", + "water chestnuts", + "ground coriander", + "green bell pepper", + "sweet onion", + "green onions", + "ground cayenne pepper", + "soy sauce", + "pork tenderloin", + "lemon juice" + ] + }, + { + "id": 20773, + "cuisine": "thai", + "ingredients": [ + "chiles", + "bay leaves", + "salt", + "lard", + "fresh turmeric", + "ground nutmeg", + "cinnamon", + "venison", + "galangal", + "fish sauce", + "potatoes", + "cardamom seeds", + "garlic cloves", + "onions", + "clove", + "lemongrass", + "chives", + "yellow curry paste", + "coconut milk" + ] + }, + { + "id": 3438, + "cuisine": "japanese", + "ingredients": [ + "salt", + "ground pepper", + "firm tofu", + "sesame seeds", + "broccoli", + "reduced sodium soy sauce", + "toasted sesame oil" + ] + }, + { + "id": 25847, + "cuisine": "mexican", + "ingredients": [ + "whole milk", + "corn starch", + "grated orange peel", + "vanilla extract", + "sweetened condensed milk", + "eggs", + "heavy cream", + "white sugar", + "egg yolks", + "orange juice" + ] + }, + { + "id": 22756, + "cuisine": "korean", + "ingredients": [ + "brown sugar", + "minced garlic", + "green onions", + "pear juice", + "honey", + "red pepper flakes", + "soy sauce", + "minced ginger", + "sesame oil", + "black pepper", + "beef", + "onions" + ] + }, + { + "id": 5461, + "cuisine": "spanish", + "ingredients": [ + "white pepper", + "white sugar", + "ketchup", + "pimentos", + "mayonaise", + "Jell-O Gelatin", + "tuna packed in water", + "paprika" + ] + }, + { + "id": 1219, + "cuisine": "southern_us", + "ingredients": [ + "bay leaves", + "cayenne pepper", + "black-eyed peas", + "garlic", + "freshly ground pepper", + "extra-virgin olive oil", + "okra", + "low sodium chicken broth", + "salt", + "onions" + ] + }, + { + "id": 19288, + "cuisine": "mexican", + "ingredients": [ + "crushed tomatoes", + "paprika", + "garlic cloves", + "dried oregano", + "kosher salt", + "low sodium chicken broth", + "yellow onion", + "ground beef", + "ground cumin", + "ground black pepper", + "shredded sharp cheddar cheese", + "sour cream", + "masa harina", + "cider vinegar", + "vegetable oil", + "cayenne pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 12731, + "cuisine": "thai", + "ingredients": [ + "sweet chili sauce", + "rice wine", + "toasted sesame oil", + "fish sauce", + "minced garlic", + "peanut butter", + "dark soy sauce", + "gari", + "rice vinegar", + "brown sugar", + "curry powder", + "coconut milk" + ] + }, + { + "id": 535, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "garlic", + "coarse salt", + "yukon gold potatoes", + "curds", + "milk", + "heavy cream" + ] + }, + { + "id": 6016, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "scallions", + "buttermilk", + "sour cream", + "salsa verde", + "cucumber", + "kosher salt", + "cayenne pepper" + ] + }, + { + "id": 41031, + "cuisine": "japanese", + "ingredients": [ + "pork", + "flour", + "tonkatsu sauce", + "eggs", + "vegetables", + "Japanese Mayonnaise", + "gari", + "green onions", + "panko breadcrumbs", + "cabbage leaves", + "ground black pepper", + "sea salt" + ] + }, + { + "id": 26134, + "cuisine": "thai", + "ingredients": [ + "boiled eggs", + "cooking oil", + "dark brown sugar", + "chiles", + "tamarind pulp", + "cilantro leaves", + "fish sauce", + "palm sugar", + "vegetable oil", + "water", + "bawang goreng", + "red bell pepper" + ] + }, + { + "id": 4180, + "cuisine": "chinese", + "ingredients": [ + "cold water", + "boneless chicken skinless thigh", + "olive oil", + "ginger", + "corn starch", + "soy sauce", + "minced garlic", + "coarse salt", + "rice vinegar", + "white sesame seeds", + "pineapple chunks", + "black pepper", + "granulated sugar", + "white rice", + "red bell pepper", + "ketchup", + "water", + "worcestershire sauce", + "orange juice" + ] + }, + { + "id": 24946, + "cuisine": "italian", + "ingredients": [ + "hazelnuts", + "fresh orange juice", + "liqueur", + "sugar", + "baking soda", + "all-purpose flour", + "unsweetened cocoa powder", + "ground cloves", + "unsalted butter", + "confectioners sugar", + "ground cinnamon", + "water", + "salt", + "grated orange" + ] + }, + { + "id": 80, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "salt" + ] + }, + { + "id": 8859, + "cuisine": "filipino", + "ingredients": [ + "minced ginger", + "sauce", + "Holland House White Wine Vinegar", + "sugar", + "sweetened coconut flakes", + "apricot jam", + "vegetable oil", + "chicken fingers", + "soy sauce", + "garlic", + "panko breadcrumbs" + ] + }, + { + "id": 33741, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "vegetable oil", + "ground beef", + "pasta sauce", + "water", + "garlic", + "white sugar", + "shredded cheddar cheese", + "ground pork", + "onions", + "ketchup", + "hot dogs", + "salt", + "spaghetti" + ] + }, + { + "id": 38478, + "cuisine": "british", + "ingredients": [ + "eggs", + "active dry yeast", + "salt", + "water", + "butter", + "white sugar", + "milk", + "raisins", + "warm water", + "egg yolks", + "all-purpose flour" + ] + }, + { + "id": 13111, + "cuisine": "french", + "ingredients": [ + "pork loin", + "champagne", + "frankfurters", + "garlic cloves", + "sauerkraut", + "brats", + "knockwurst", + "ground black pepper", + "salt pork", + "onions" + ] + }, + { + "id": 15065, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "lemon", + "garlic cloves", + "unsalted butter", + "cracked black pepper", + "olive oil", + "worcestershire sauce", + "jumbo shrimp", + "cajun seasoning", + "salt" + ] + }, + { + "id": 30248, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "chili powder", + "cooked chicken breasts", + "eggs", + "chopped green chilies", + "enchilada sauce", + "milk", + "cilantro", + "ground cumin", + "corn mix muffin", + "cream style corn", + "sour cream" + ] + }, + { + "id": 25051, + "cuisine": "italian", + "ingredients": [ + "artichoke hearts", + "extra-virgin olive oil", + "black pepper", + "red wine vinegar", + "flat leaf parsley", + "lemon zest", + "salt", + "pinenuts", + "orzo" + ] + }, + { + "id": 23889, + "cuisine": "irish", + "ingredients": [ + "kosher salt", + "garlic cloves", + "thick-cut bacon", + "black peppercorns", + "bay leaves", + "pig's trotters", + "caul fat", + "cream", + "russet potatoes", + "onions", + "green cabbage", + "ground black pepper", + "carrots", + "cabbage" + ] + }, + { + "id": 5424, + "cuisine": "indian", + "ingredients": [ + "sliced almonds", + "chutney", + "hothouse cucumber", + "butter", + "Madras curry powder", + "cantaloupe", + "chopped fresh mint", + "trout fillet", + "plain whole-milk yogurt" + ] + }, + { + "id": 40468, + "cuisine": "mexican", + "ingredients": [ + "jicama", + "cayenne", + "seedless cucumber", + "navel oranges" + ] + }, + { + "id": 42087, + "cuisine": "southern_us", + "ingredients": [ + "diced onions", + "cooked ham", + "leeks", + "cayenne pepper", + "collard greens", + "olive oil", + "cajun seasoning", + "celery", + "chicken stock", + "minced garlic", + "bay leaves", + "ham hock", + "green bell pepper", + "black-eyed peas", + "salt", + "cumin" + ] + }, + { + "id": 14498, + "cuisine": "indian", + "ingredients": [ + "black pepper", + "boneless skinless chicken breasts", + "salt", + "tumeric", + "cayenne", + "paprika", + "allspice", + "garlic powder", + "cinnamon", + "cumin", + "boneless chicken skinless thigh", + "cooking oil", + "extra-virgin olive oil" + ] + }, + { + "id": 25983, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "bacon", + "spaghetti", + "crushed tomatoes", + "onions", + "white wine", + "crushed red pepper flakes" + ] + }, + { + "id": 36680, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "polenta", + "marinara sauce", + "grated parmesan cheese", + "wild mushrooms", + "sausage casings", + "dry red wine" + ] + }, + { + "id": 37767, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "chicken breast halves", + "reduced sodium soy sauce", + "long grain white rice", + "green onions", + "pepper", + "garlic" + ] + }, + { + "id": 17549, + "cuisine": "thai", + "ingredients": [ + "gai lan", + "garlic", + "sugar", + "oyster sauce", + "fish sauce", + "oil", + "water" + ] + }, + { + "id": 37484, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "red chili peppers", + "ground black pepper", + "fillet red snapper", + "shiitake", + "salt", + "tomatoes", + "fresh ginger", + "cilantro" + ] + }, + { + "id": 11282, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "scallions", + "eggs", + "wonton wrappers", + "canola oil", + "avocado", + "jalapeno chilies", + "chopped cilantro", + "lime", + "salt" + ] + }, + { + "id": 16336, + "cuisine": "indian", + "ingredients": [ + "chiles", + "fresh ginger", + "brown mustard seeds", + "garlic cloves", + "chopped cilantro", + "pie dough", + "cayenne", + "cauliflower florets", + "chutney", + "tumeric", + "kosher salt", + "finely chopped onion", + "chopped onion", + "fresh mint", + "sugar", + "garam masala", + "russet potatoes", + "lemon juice", + "canola oil" + ] + }, + { + "id": 11334, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "cayenne pepper", + "onions", + "vegetable oil", + "venison", + "dried oregano", + "seasoning salt", + "fajita size flour tortillas", + "garlic salt", + "yellow bell pepper", + "red bell pepper" + ] + }, + { + "id": 18422, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "buttermilk", + "whole milk", + "heavy cream" + ] + }, + { + "id": 46060, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "olive oil", + "chicken breasts", + "all-purpose flour", + "minced garlic", + "bay leaves", + "chopped celery", + "cooked rice", + "chopped green bell pepper", + "cajun seasoning", + "onions", + "crushed tomatoes", + "ground red pepper", + "salt" + ] + }, + { + "id": 48537, + "cuisine": "spanish", + "ingredients": [ + "beef stock", + "salt", + "bay leaf", + "pepper", + "diced tomatoes", + "carrots", + "onions", + "dried thyme", + "smoked sausage", + "celery", + "cabbage", + "baking potatoes", + "lemon juice", + "Burgundy wine" + ] + }, + { + "id": 19574, + "cuisine": "indian", + "ingredients": [ + "fresh curry leaves", + "urad dal", + "ground turmeric", + "tomatoes", + "brown mustard seeds", + "salt", + "potatoes", + "ground asafetida", + "red chili peppers", + "vegetable oil", + "onions" + ] + }, + { + "id": 46383, + "cuisine": "mexican", + "ingredients": [ + "lean ground beef", + "chopped onion", + "green bell pepper", + "cheese", + "elbow macaroni", + "tomato paste", + "diced tomatoes", + "taco seasoning", + "cheese soup", + "garlic" + ] + }, + { + "id": 32230, + "cuisine": "filipino", + "ingredients": [ + "pork", + "vinegar", + "garlic", + "onions", + "pork belly", + "shallots", + "firm tofu", + "broth", + "soy sauce", + "bay leaves", + "salt", + "peppercorns", + "sugar", + "pepper", + "thai chile", + "oil" + ] + }, + { + "id": 38535, + "cuisine": "irish", + "ingredients": [ + "baking powder", + "all-purpose flour", + "vanilla extract", + "butter", + "toasted coconut", + "powdered sugar", + "salt" + ] + }, + { + "id": 12828, + "cuisine": "italian", + "ingredients": [ + "sugar", + "olive oil", + "kosher salt", + "warm water", + "all-purpose flour", + "active dry yeast" + ] + }, + { + "id": 31608, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "radishes", + "mustard seeds", + "chaat masala", + "amchur", + "mint leaves", + "ghee", + "water", + "flour", + "nigella seeds", + "ground cumin", + "fennel seeds", + "tamarind pulp", + "salt", + "coriander" + ] + }, + { + "id": 31772, + "cuisine": "filipino", + "ingredients": [ + "tofu", + "tamarind", + "salt", + "onions", + "pepper", + "fresh green bean", + "chayotes", + "stock", + "potatoes", + "garlic cloves", + "water", + "diced tomatoes", + "bok choy" + ] + }, + { + "id": 42340, + "cuisine": "mexican", + "ingredients": [ + "dried pinto beans", + "onions", + "ground black pepper", + "salt", + "garlic", + "cumin", + "paprika", + "fat" + ] + }, + { + "id": 6493, + "cuisine": "chinese", + "ingredients": [ + "sugar pea", + "ground black pepper", + "sesame oil", + "red pepper", + "salt", + "honey", + "green onions", + "vegetable oil", + "teriyaki sauce", + "carrots", + "black pepper", + "flour", + "rice noodles", + "crushed red pepper flakes", + "green pepper", + "soy sauce", + "sesame seeds", + "boneless skinless chicken breasts", + "spices", + "garlic" + ] + }, + { + "id": 48568, + "cuisine": "thai", + "ingredients": [ + "boneless chicken skinless thigh", + "full fat coconut milk", + "mint leaves", + "cucumber", + "soy sauce", + "lemongrass", + "shredded carrots", + "cilantro", + "noodles", + "garlic paste", + "water", + "red cabbage", + "marinade", + "red bell pepper", + "sweet chili sauce", + "lime", + "chunky peanut butter", + "rice vinegar", + "canola oil" + ] + }, + { + "id": 36935, + "cuisine": "southern_us", + "ingredients": [ + "granulated sugar", + "karo syrup", + "cayenne pepper", + "butter", + "brown sugar", + "mixed nuts" + ] + }, + { + "id": 24693, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "light soy sauce", + "broccoli", + "white vinegar", + "salt", + "sesame oil", + "white sugar" + ] + }, + { + "id": 35446, + "cuisine": "french", + "ingredients": [ + "tomatoes", + "hard-boiled egg", + "purple onion", + "scallions", + "white onion", + "red wine vinegar", + "anchovy fillets", + "tuna", + "radishes", + "extra-virgin olive oil", + "Niçoise olives", + "black pepper", + "lettuce leaves", + "salt", + "lemon juice" + ] + }, + { + "id": 24895, + "cuisine": "mexican", + "ingredients": [ + "adobo sauce", + "light mayonnaise" + ] + }, + { + "id": 24247, + "cuisine": "vietnamese", + "ingredients": [ + "tomatoes", + "white pepper", + "green onions", + "rice", + "cucumber", + "soy sauce", + "honey", + "lime wedges", + "garlic chili sauce", + "black pepper", + "cooking oil", + "cornish hens", + "juice", + "red chili peppers", + "minced garlic", + "sesame oil", + "chinese five-spice powder" + ] + }, + { + "id": 34934, + "cuisine": "chinese", + "ingredients": [ + "red chili peppers", + "roast", + "ginger", + "sauce", + "ground white pepper", + "dark soy sauce", + "light soy sauce", + "chicken breasts", + "salt", + "oil", + "water", + "Shaoxing wine", + "garlic", + "scallions", + "chicken", + "sugar", + "peanuts", + "szechwan peppercorns", + "rice vinegar", + "corn starch" + ] + }, + { + "id": 15070, + "cuisine": "thai", + "ingredients": [ + "bread", + "lime juice", + "thai chile", + "water", + "Sriracha", + "white beans", + "soy sauce", + "olive oil", + "garlic", + "curry powder", + "sesame oil", + "crackers" + ] + }, + { + "id": 47777, + "cuisine": "spanish", + "ingredients": [ + "baking potatoes", + "garlic cloves", + "eggs", + "salt", + "olive oil", + "yellow onion", + "lemon" + ] + }, + { + "id": 1358, + "cuisine": "southern_us", + "ingredients": [ + "cold milk", + "butter", + "granulated sugar", + "all-purpose flour", + "cream of tartar", + "salt", + "baking powder", + "white sugar" + ] + }, + { + "id": 35649, + "cuisine": "cajun_creole", + "ingredients": [ + "jasmine rice", + "vegetable oil", + "salt", + "oregano", + "jack cheese", + "ground black pepper", + "heavy cream", + "cayenne pepper", + "tomatoes", + "pepper", + "large garlic cloves", + "yellow onion", + "white wine", + "chicken breasts", + "paprika", + "thyme" + ] + }, + { + "id": 30651, + "cuisine": "italian", + "ingredients": [ + "sugar", + "fresh parmesan cheese", + "carrots", + "tomato paste", + "white onion", + "salt", + "pasta", + "black pepper", + "garlic", + "fresh parsley", + "tomatoes", + "olive oil", + "fresh oregano" + ] + }, + { + "id": 15878, + "cuisine": "southern_us", + "ingredients": [ + "pork chops", + "flour", + "biscuits", + "salt", + "pepper", + "oil" + ] + }, + { + "id": 23357, + "cuisine": "southern_us", + "ingredients": [ + "cooked turkey", + "freshly ground pepper", + "eggs", + "ranch dressing", + "iceberg lettuce", + "avocado", + "crumbled blue cheese", + "plum tomatoes", + "sugar pea", + "bacon slices" + ] + }, + { + "id": 40580, + "cuisine": "mexican", + "ingredients": [ + "medium shrimp uncook", + "fresh lime juice", + "plum tomatoes", + "lime wedges", + "pimento stuffed green olives", + "white onion", + "garlic cloves", + "chopped cilantro fresh", + "olive oil", + "grate lime peel", + "serrano chile" + ] + }, + { + "id": 22183, + "cuisine": "spanish", + "ingredients": [ + "lime", + "lemon slices", + "sugar", + "dry white wine", + "club soda", + "lime slices", + "cognac", + "orange", + "lemon" + ] + }, + { + "id": 38721, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "chicken", + "biscuits", + "butter", + "milk", + "salt", + "ground pepper", + "sausages" + ] + }, + { + "id": 18568, + "cuisine": "southern_us", + "ingredients": [ + "McCormick Parsley Flakes", + "old bay seasoning", + "eggs", + "milk", + "salt", + "bread", + "lump crab meat", + "worcestershire sauce", + "mayonaise", + "baking powder" + ] + }, + { + "id": 4268, + "cuisine": "thai", + "ingredients": [ + "ground cloves", + "shallots", + "Thai fish sauce", + "ground cumin", + "coriander seeds", + "cinnamon", + "coconut milk", + "lemongrass", + "chile pepper", + "ginger root", + "light brown sugar", + "cardamon", + "garlic cloves", + "ground turmeric" + ] + }, + { + "id": 31738, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "salt", + "chopped cilantro fresh", + "jalapeno chilies", + "red bell pepper", + "flour tortillas", + "cream cheese", + "black beans", + "vegetable oil", + "onions" + ] + }, + { + "id": 27397, + "cuisine": "french", + "ingredients": [ + "ground black pepper", + "baking potatoes", + "grated nutmeg", + "fresh thyme", + "heavy cream", + "raclette", + "unsalted butter", + "Jarlsberg", + "garlic cloves", + "bay leaves", + "salt" + ] + }, + { + "id": 41077, + "cuisine": "russian", + "ingredients": [ + "salmon", + "large eggs", + "sugar", + "unsalted butter", + "crème fraîche", + "active dry yeast", + "coarse salt", + "warm water", + "low-fat buttermilk", + "all-purpose flour" + ] + }, + { + "id": 356, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "pasta sauce", + "grated parmesan cheese", + "manicotti shells", + "part-skim mozzarella cheese", + "nonfat ricotta cheese", + "fresh basil", + "large egg whites", + "firm tofu" + ] + }, + { + "id": 37734, + "cuisine": "spanish", + "ingredients": [ + "sherry vinegar", + "cilantro leaves", + "kosher salt", + "tomatillos", + "cumin", + "sugar", + "sweet potatoes", + "oregano", + "olive oil", + "extra-virgin olive oil" + ] + }, + { + "id": 32515, + "cuisine": "spanish", + "ingredients": [ + "fresh parsley", + "dry red wine", + "extra-virgin olive oil", + "honey", + "chicken" + ] + }, + { + "id": 35465, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "fat free milk", + "cooking oil", + "all-purpose flour", + "sugar", + "lemon extract", + "vanilla", + "nonfat evaporated milk", + "eggs", + "ground nutmeg", + "sweet potatoes", + "flavoring", + "pastry", + "whipped dessert topping", + "salt" + ] + }, + { + "id": 7578, + "cuisine": "spanish", + "ingredients": [ + "clams", + "bacon", + "Italian bread", + "chorizo", + "garlic", + "chicken broth", + "diced tomatoes", + "chopped cilantro fresh", + "dry white wine", + "crushed red pepper" + ] + }, + { + "id": 42500, + "cuisine": "indian", + "ingredients": [ + "cinnamon sticks", + "saffron", + "salt", + "nigella seeds", + "lemon", + "coconut milk", + "juice", + "basmati rice" + ] + }, + { + "id": 11390, + "cuisine": "indian", + "ingredients": [ + "red chili peppers", + "coriander powder", + "garlic", + "onions", + "medium tomatoes", + "ginger", + "cumin seed", + "tumeric", + "garam masala", + "urad dal", + "ghee", + "water", + "chana dal", + "salt" + ] + }, + { + "id": 45133, + "cuisine": "thai", + "ingredients": [ + "lemongrass", + "shallots", + "purple onion", + "chicken breast tenderloins", + "low sodium soy sauce", + "thai basil", + "light coconut milk", + "cilantro leaves", + "toasted sesame oil", + "lime", + "ginger", + "maple syrup", + "oyster sauce", + "fish sauce", + "jalapeno chilies", + "garlic", + "low sodium chicken stock", + "canola oil" + ] + }, + { + "id": 2917, + "cuisine": "greek", + "ingredients": [ + "seedless cucumber", + "ground black pepper", + "purple onion", + "romaine lettuce", + "cherry tomatoes", + "Greek feta", + "red bell pepper", + "tomatoes", + "fresh chives", + "fresh thyme", + "salt", + "pitted kalamata olives", + "olive oil", + "red wine vinegar", + "dried oregano" + ] + }, + { + "id": 9895, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "sour cream", + "garlic", + "cumin", + "bell pepper", + "onions", + "tostada shells", + "scallions" + ] + }, + { + "id": 24639, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "salt and ground black pepper", + "onion powder", + "cayenne pepper", + "chopped cilantro", + "avocado", + "dried thyme", + "ground black pepper", + "purple onion", + "red bell pepper", + "baguette", + "garlic powder", + "paprika", + "ground allspice", + "ground cumin", + "tomatoes", + "olive oil", + "green onions", + "flat iron steaks", + "fresh lime juice" + ] + }, + { + "id": 15192, + "cuisine": "southern_us", + "ingredients": [ + "dried thyme", + "shallots", + "granny smith apples", + "whole grain dijon mustard", + "salt", + "fat free less sodium chicken broth", + "pork tenderloin", + "Madeira", + "olive oil", + "cracked black pepper" + ] + }, + { + "id": 27764, + "cuisine": "southern_us", + "ingredients": [ + "water", + "garlic powder", + "paprika", + "chicken gizzards", + "flour", + "panko breadcrumbs", + "milk", + "ground pepper", + "salt", + "eggs", + "seasoning salt", + "vegetable oil" + ] + }, + { + "id": 28273, + "cuisine": "chinese", + "ingredients": [ + "caster sugar", + "vegetable oil", + "rice vinegar", + "pineapple chunks", + "spring onions", + "star anise", + "soda water", + "self rising flour", + "red pepper", + "tamarind paste", + "red chili peppers", + "boneless skinless chicken breasts", + "cornflour" + ] + }, + { + "id": 12618, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "large eggs", + "red bell pepper", + "black-eyed peas", + "coarse salt", + "ground cumin", + "yellow corn meal", + "unsalted butter", + "large garlic cloves", + "bread crumb fresh", + "vegetable oil", + "chopped cilantro fresh" + ] + }, + { + "id": 48311, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "rotisserie chicken", + "tomatillos", + "and fat free half half", + "fresh cilantro", + "non-fat sour cream", + "shredded Monterey Jack cheese", + "flour tortillas", + "green chilies" + ] + }, + { + "id": 1362, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "sake", + "white miso", + "soy sauce", + "salmon fillets", + "vegetable oil" + ] + }, + { + "id": 14047, + "cuisine": "chinese", + "ingredients": [ + "black tea leaves", + "soy sauce", + "eggs", + "salt", + "teas" + ] + }, + { + "id": 21336, + "cuisine": "brazilian", + "ingredients": [ + "fresh cilantro", + "red wine vinegar", + "kosher salt", + "flank steak", + "purple onion", + "tomatoes", + "serrano peppers", + "extra-virgin olive oil", + "hearts of palm", + "hot pepper", + "garlic cloves" + ] + }, + { + "id": 41459, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "ramen noodles", + "scallions", + "dashi powder", + "chili oil", + "beansprouts", + "white miso", + "pork stock", + "fresh spinach", + "enokitake", + "soft-boiled egg" + ] + }, + { + "id": 9090, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "Ragu Traditional Sauce", + "ricotta cheese", + "grated parmesan cheese", + "eggs", + "shredded mozzarella cheese" + ] + }, + { + "id": 49652, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "garlic", + "white wine", + "soy sauce", + "wheat flour", + "chicken meat" + ] + }, + { + "id": 24557, + "cuisine": "mexican", + "ingredients": [ + "Old El Paso Enchilada Sauce", + "cilantro", + "shredded Monterey Jack cheese", + "corn", + "taco seasoning", + "black beans", + "spaghetti squash", + "avocado", + "queso fresco", + "sour cream" + ] + }, + { + "id": 1004, + "cuisine": "vietnamese", + "ingredients": [ + "espresso", + "cream", + "sweetened condensed milk", + "coffee" + ] + }, + { + "id": 42365, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "lentils", + "tomato sauce", + "garlic", + "white sugar", + "tomato paste", + "zucchini", + "sliced mushrooms", + "water", + "chopped onion" + ] + }, + { + "id": 3392, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking powder", + "molasses", + "all-purpose flour", + "pecan halves", + "butter", + "light brown sugar", + "dark corn syrup" + ] + }, + { + "id": 45663, + "cuisine": "mexican", + "ingredients": [ + "shredded reduced fat cheddar cheese", + "paprika", + "red bell pepper", + "ground cumin", + "corn kernels", + "cooking spray", + "baked tortilla chips", + "cooked chicken breasts", + "minced garlic", + "zucchini", + "chopped onion", + "chopped cilantro fresh", + "kosher salt", + "ground black pepper", + "salsa", + "poblano chiles" + ] + }, + { + "id": 20307, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chili powder", + "fresh lime juice", + "chopped tomatoes", + "chopped onion", + "ground cumin", + "corn kernels", + "garlic", + "shredded Monterey Jack cheese", + "picante sauce", + "vegetable oil", + "chopped cilantro fresh" + ] + }, + { + "id": 36985, + "cuisine": "italian", + "ingredients": [ + "fennel bulb", + "salt", + "bay leaf", + "fresh rosemary", + "extra-virgin olive oil", + "carrots", + "water", + "artichokes", + "celery", + "lemon", + "freshly ground pepper", + "onions" + ] + }, + { + "id": 33630, + "cuisine": "filipino", + "ingredients": [ + "garbanzo beans", + "potatoes", + "pepper", + "bananas", + "oil", + "polish sausage", + "leaves", + "salt", + "water", + "beef shank", + "onions" + ] + }, + { + "id": 28566, + "cuisine": "southern_us", + "ingredients": [ + "large egg yolks", + "vanilla", + "brandy", + "unsalted butter", + "all-purpose flour", + "sugar", + "peaches", + "salt", + "ground cloves", + "baking powder", + "corn starch" + ] + }, + { + "id": 19056, + "cuisine": "mexican", + "ingredients": [ + "corn", + "oil", + "ground beef", + "jalapeno chilies", + "corn tortillas", + "Mexican cheese blend", + "sour cream", + "onions", + "black beans", + "taco seasoning", + "diced tomatoes and green chilies" + ] + }, + { + "id": 25427, + "cuisine": "moroccan", + "ingredients": [ + "fresh orange juice", + "dried oregano", + "cucumber", + "superfine sugar" + ] + }, + { + "id": 49228, + "cuisine": "thai", + "ingredients": [ + "white pepper", + "green onions", + "raisins", + "cashew nuts", + "water", + "lychees", + "chopped onion", + "reduced sodium soy sauce", + "soy-based liquid seasoning", + "carrots", + "jasmine rice", + "vegetable oil", + "garlic", + "white sugar" + ] + }, + { + "id": 47116, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "sugar", + "salt", + "pinenuts", + "raw almond", + "cake flour" + ] + }, + { + "id": 26322, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "lamb stew meat", + "cinnamon sticks", + "ground cinnamon", + "ground black pepper", + "chopped onion", + "olive oil", + "salt", + "ground turmeric", + "slivered almonds", + "dried apricot", + "less sodium beef broth" + ] + }, + { + "id": 29556, + "cuisine": "thai", + "ingredients": [ + "mussels", + "dry white wine", + "minced garlic", + "cilantro sprigs", + "sugar", + "Thai red curry paste", + "unsweetened coconut milk", + "lime", + "asian fish sauce" + ] + }, + { + "id": 733, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "salt", + "onions", + "chicken broth", + "ground black pepper", + "red bell pepper", + "ground cumin", + "olive oil", + "garlic cloves", + "large shrimp", + "tomatoes", + "chopped celery", + "bay leaf" + ] + }, + { + "id": 19542, + "cuisine": "indian", + "ingredients": [ + "eggplant", + "diced tomatoes", + "red bell pepper", + "garam masala", + "chickpeas", + "onions", + "tumeric", + "cayenne", + "ground coriander", + "asafetida", + "water", + "parsley", + "cumin seed", + "ginger paste" + ] + }, + { + "id": 13267, + "cuisine": "chinese", + "ingredients": [ + "chicken broth", + "boneless skinless chicken breasts", + "fresh mushrooms", + "canola oil", + "reduced sodium soy sauce", + "red pepper", + "hot water", + "ground ginger", + "green onions", + "linguine", + "snow peas", + "reduced sodium chicken bouillon granules", + "sesame oil", + "corn starch" + ] + }, + { + "id": 13069, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "lime", + "asparagus", + "green onions", + "whole wheat tortillas", + "salt", + "peanut butter", + "beansprouts", + "pepper", + "fresh ginger", + "hot chili oil", + "marinade", + "crushed red pepper", + "cilantro leaves", + "corn starch", + "baby spinach leaves", + "honey", + "Sriracha", + "boneless skinless chicken breasts", + "peanut sauce", + "alfalfa sprouts", + "carrots", + "brown sugar", + "water", + "peanuts", + "lettuce leaves", + "sesame oil", + "purple onion", + "rice vinegar", + "cucumber" + ] + }, + { + "id": 9678, + "cuisine": "french", + "ingredients": [ + "cold milk", + "butter", + "all-purpose flour", + "water", + "vanilla extract", + "hot water", + "eggs", + "heavy cream", + "vanilla instant pudding", + "semisweet chocolate", + "salt", + "confectioners sugar" + ] + }, + { + "id": 19970, + "cuisine": "spanish", + "ingredients": [ + "aged Manchego cheese", + "sliced almonds", + "quince paste" + ] + }, + { + "id": 2390, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "heavy cream", + "green chilies", + "broth", + "flour", + "cilantro", + "corn tortillas", + "canola oil", + "jalapeno chilies", + "paprika", + "sour cream", + "monterey jack", + "picante sauce", + "butter", + "salt", + "onions", + "chicken" + ] + }, + { + "id": 15416, + "cuisine": "vietnamese", + "ingredients": [ + "mint leaves", + "shallots", + "garlic cloves", + "pork", + "lettuce leaves", + "salt", + "fish sauce", + "basil leaves", + "rice noodles", + "beansprouts", + "palm sugar", + "muscovado sugar", + "cilantro leaves" + ] + }, + { + "id": 1602, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "salt", + "chopped cilantro fresh", + "chili oil", + "scallions", + "tahini", + "roasted peanuts", + "sugar", + "mung bean vermicelli", + "chinkiang vinegar" + ] + }, + { + "id": 19296, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "lean ground beef", + "dried oregano", + "pasta", + "grated parmesan cheese", + "shredded mozzarella cheese", + "garlic powder", + "black olives", + "seasoning salt", + "butter" + ] + }, + { + "id": 72, + "cuisine": "french", + "ingredients": [ + "whole peeled tomatoes", + "free-range chickens", + "purple onion", + "chile powder", + "bay leaves", + "garlic", + "dijon mustard", + "dry white wine", + "fine sea salt", + "fresh thyme", + "extra-virgin olive oil", + "freshly ground pepper" + ] + }, + { + "id": 34197, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "red wine vinegar", + "olive oil", + "penne pasta", + "corn kernels", + "large garlic cloves", + "grated parmesan cheese", + "plum tomatoes" + ] + }, + { + "id": 9152, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "chopped tomatoes", + "large eggs", + "garlic cloves", + "olive oil", + "zucchini", + "heavy cream", + "onions", + "eggplant", + "parmigiano reggiano cheese", + "all-purpose flour", + "milk", + "unsalted butter", + "fresh thyme leaves", + "red bell pepper" + ] + }, + { + "id": 17681, + "cuisine": "spanish", + "ingredients": [ + "tomatoes", + "ground black pepper", + "lima beans", + "saffron", + "rosemary sprigs", + "rabbit", + "rice", + "chicken", + "water", + "salt", + "onions", + "minced garlic", + "extra-virgin olive oil", + "green beans" + ] + }, + { + "id": 31561, + "cuisine": "mexican", + "ingredients": [ + "low sodium canned chicken stock", + "red bell pepper", + "chicken", + "tomato salsa", + "sharp cheddar cheese", + "corn tortillas", + "extra-virgin olive oil", + "enchilada sauce", + "onions", + "pepper", + "grated jack cheese", + "sour cream" + ] + }, + { + "id": 3908, + "cuisine": "greek", + "ingredients": [ + "yogurt low fat", + "dark chocolate", + "hazelnuts" + ] + }, + { + "id": 21659, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "cooking oil", + "garlic", + "honey", + "maltose", + "chinese five-spice powder", + "white pepper", + "sesame oil", + "Chinese rose wine", + "hoisin sauce", + "red food coloring", + "pork butt" + ] + }, + { + "id": 28169, + "cuisine": "korean", + "ingredients": [ + "sugar", + "sesame oil", + "ground black pepper", + "scallions", + "vinegar", + "garlic cloves", + "soy sauce", + "sirloin steak" + ] + }, + { + "id": 13518, + "cuisine": "southern_us", + "ingredients": [ + "bacon drippings", + "white cornmeal", + "salt" + ] + }, + { + "id": 4520, + "cuisine": "greek", + "ingredients": [ + "spinach", + "honey", + "red pepper", + "smoked paprika", + "pepper", + "artichok heart marin", + "garlic cloves", + "mayonaise", + "water chestnuts", + "salt", + "greek yogurt", + "kale", + "green onions", + "carrots" + ] + }, + { + "id": 5517, + "cuisine": "indian", + "ingredients": [ + "dal", + "salt", + "yoghurt", + "rice" + ] + }, + { + "id": 9277, + "cuisine": "filipino", + "ingredients": [ + "rice vinegar", + "gluten free soy sauce", + "water", + "chicken thighs", + "garlic cloves", + "canola oil", + "bay leaves", + "peppercorns" + ] + }, + { + "id": 3370, + "cuisine": "moroccan", + "ingredients": [ + "orange flower water", + "sugar", + "water", + "ground cinnamon", + "blanched almonds" + ] + }, + { + "id": 37352, + "cuisine": "italian", + "ingredients": [ + "sausage links", + "lean ground beef", + "bay leaf", + "olive oil", + "canned tomatoes", + "dried oregano", + "dried basil", + "garlic", + "onions", + "tomato sauce", + "ground black pepper", + "salt" + ] + }, + { + "id": 10815, + "cuisine": "chinese", + "ingredients": [ + "vegetable oil", + "soy sauce", + "oyster sauce", + "large garlic cloves", + "kale" + ] + }, + { + "id": 46509, + "cuisine": "mexican", + "ingredients": [ + "coffee", + "sugar cubes", + "whipped cream", + "coffee liqueur", + "hot water" + ] + }, + { + "id": 26171, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "baking powder", + "cayenne pepper", + "powdered sugar", + "cherries", + "salt", + "ground cinnamon", + "unsalted butter", + "vanilla extract", + "unsweetened chocolate", + "sugar", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 24225, + "cuisine": "italian", + "ingredients": [ + "boneless pork shoulder", + "water", + "extra-virgin olive oil", + "chicken thighs", + "fresh rosemary", + "dry white wine", + "carrots", + "cabbage", + "arborio rice", + "unsalted butter", + "garlic cloves", + "boneless veal shoulder", + "celery ribs", + "kosher salt", + "rabbit", + "onions" + ] + }, + { + "id": 40762, + "cuisine": "italian", + "ingredients": [ + "water", + "garlic cloves", + "tomatoes", + "ground black pepper", + "spaghetti", + "tomato paste", + "olive oil", + "cashew nuts", + "fresh basil", + "salt" + ] + }, + { + "id": 26024, + "cuisine": "southern_us", + "ingredients": [ + "peanuts", + "smoked ham hocks", + "salt", + "water" + ] + }, + { + "id": 4475, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "short-grain rice", + "scallions", + "soy sauce", + "corn kernels", + "vegetable oil", + "sugar", + "water", + "Shaoxing wine", + "corn starch", + "kosher salt", + "fresh ginger", + "ground pork" + ] + }, + { + "id": 21150, + "cuisine": "irish", + "ingredients": [ + "pepper", + "parsley", + "lamb chops", + "onions", + "potatoes", + "peas", + "celery", + "cabbage", + "rosemary", + "vegetable oil", + "thyme", + "peppercorns", + "white onion", + "leeks", + "salt", + "fresh parsley" + ] + }, + { + "id": 47845, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "salt", + "ground turmeric", + "water", + "oil", + "asafoetida", + "cilantro leaves", + "curry leaves", + "tamarind", + "mustard seeds" + ] + }, + { + "id": 14841, + "cuisine": "greek", + "ingredients": [ + "greek seasoning", + "shallots", + "lemon juice", + "olive oil", + "penne pasta", + "mayonaise", + "black olives", + "pimentos", + "fresh mushrooms" + ] + }, + { + "id": 17969, + "cuisine": "southern_us", + "ingredients": [ + "shredded carrots", + "chicken soup base", + "leeks", + "carrots", + "half & half", + "salt", + "chicken broth", + "baking potatoes", + "ground white pepper" + ] + }, + { + "id": 49386, + "cuisine": "russian", + "ingredients": [ + "honey", + "white sugar", + "apples", + "cinnamon sticks", + "raisins", + "yeast" + ] + }, + { + "id": 47727, + "cuisine": "mexican", + "ingredients": [ + "serrano peppers", + "white onion", + "cilantro leaves", + "tomatoes", + "coarse salt", + "lime juice" + ] + }, + { + "id": 31587, + "cuisine": "irish", + "ingredients": [ + "salt", + "corned beef", + "ground black pepper", + "onions", + "milk", + "all-purpose flour", + "butter", + "cabbage" + ] + }, + { + "id": 49272, + "cuisine": "cajun_creole", + "ingredients": [ + "butter", + "large shrimp", + "french bread", + "cayenne pepper", + "worcestershire sauce", + "dried rosemary", + "dry white wine", + "garlic cloves" + ] + }, + { + "id": 41936, + "cuisine": "chinese", + "ingredients": [ + "sesame oil", + "chinese chives", + "water", + "salt", + "white pepper", + "ground pork", + "rice wine", + "all-purpose flour" + ] + }, + { + "id": 21126, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "unsalted butter", + "shallots", + "grated lemon zest", + "yellow squash", + "chopped fresh chives", + "extra-virgin olive oil", + "fresh lemon juice", + "asparagus", + "dry white wine", + "salt", + "sugar pea", + "zucchini", + "pecorino romano cheese", + "organic vegetable broth" + ] + }, + { + "id": 6415, + "cuisine": "italian", + "ingredients": [ + "pasta", + "crushed tomatoes", + "dry red wine", + "onions", + "vegetable oil cooking spray", + "ground Italian sausage", + "shredded mozzarella cheese", + "pancetta", + "kosher salt", + "ricotta cheese", + "garlic cloves", + "fresh basil", + "grated parmesan cheese", + "crushed red pepper" + ] + }, + { + "id": 33716, + "cuisine": "southern_us", + "ingredients": [ + "green onions", + "shredded cheddar cheese", + "country ham", + "baking mix", + "milk" + ] + }, + { + "id": 2085, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "salt", + "sour cream", + "eggs", + "butter", + "chopped pecans", + "unsweetened cocoa powder", + "brewed coffee", + "all-purpose flour", + "white sugar", + "milk", + "vanilla extract", + "confectioners sugar" + ] + }, + { + "id": 17246, + "cuisine": "mexican", + "ingredients": [ + "large eggs", + "salt", + "chopped cilantro", + "vegetable oil", + "hot sauce", + "flour", + "salsa", + "onions", + "green chile", + "chees fresco queso", + "corn tortillas" + ] + }, + { + "id": 31765, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "shredded lettuce", + "salsa", + "avocado", + "lean ground beef", + "purple onion", + "chopped cilantro fresh", + "kidney beans", + "bacon", + "tortilla chips", + "tostitos", + "chopped tomatoes", + "cheese", + "sour cream" + ] + }, + { + "id": 41657, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "all-purpose flour", + "yellow corn meal", + "buttermilk", + "bacon drippings", + "baking powder", + "sugar", + "salt" + ] + }, + { + "id": 19036, + "cuisine": "cajun_creole", + "ingredients": [ + "ground cinnamon", + "milk", + "sprinkles", + "plain flour", + "caster sugar", + "double cream", + "cream cheese", + "medium eggs", + "brown sugar", + "butter", + "salt", + "powdered sugar", + "unsalted butter", + "vanilla extract" + ] + }, + { + "id": 2522, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "risotto rice", + "olive oil", + "butter", + "onions", + "homemade chicken broth", + "dry white wine", + "flat leaf parsley", + "ground black pepper", + "salt" + ] + }, + { + "id": 1113, + "cuisine": "indian", + "ingredients": [ + "eggs", + "sunflower oil", + "cumin seed", + "spring onions", + "paneer", + "coriander", + "mint leaves", + "ginger", + "garlic cloves", + "plain flour", + "lemon", + "chili sauce" + ] + }, + { + "id": 4752, + "cuisine": "southern_us", + "ingredients": [ + "bananas", + "vanilla extract", + "heavy whipping cream", + "kosher salt", + "large eggs", + "lemon juice", + "large egg yolks", + "whole milk", + "corn starch", + "sugar", + "unsalted butter", + "vanilla wafers" + ] + }, + { + "id": 8995, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "olive oil", + "butter", + "salt", + "chopped cilantro fresh", + "saffron threads", + "white pepper", + "vegetable oil", + "garlic", + "fresh parsley", + "black pepper", + "beef", + "ginger", + "cinnamon sticks", + "tomatoes", + "honey", + "cinnamon", + "ras el hanout", + "onions" + ] + }, + { + "id": 12348, + "cuisine": "italian", + "ingredients": [ + "pasta", + "water", + "garlic", + "spinach", + "diced tomatoes", + "chicken broth", + "olive oil", + "hot Italian sausages", + "tomato sauce", + "chees fresh mozzarella" + ] + }, + { + "id": 24599, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "garam masala", + "ground tumeric", + "cashew nuts", + "fresh coriander", + "chili powder", + "ghee", + "ground cumin", + "garlic paste", + "coriander powder", + "salt", + "ginger paste", + "eggplant", + "raisins", + "onions" + ] + }, + { + "id": 38393, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "minced garlic", + "jalapeno chilies", + "tomato sauce", + "crushed tomatoes", + "white sugar", + "ketchup", + "minced onion", + "ground cumin", + "tomato paste", + "water", + "salt" + ] + }, + { + "id": 39633, + "cuisine": "french", + "ingredients": [ + "pepper", + "salt", + "dried tarragon leaves", + "dijon mustard", + "baby lima beans", + "yoghurt", + "water" + ] + }, + { + "id": 43520, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "oil", + "mirin", + "confectioners sugar", + "dashi", + "corn starch", + "sake", + "soft tofu" + ] + }, + { + "id": 2899, + "cuisine": "spanish", + "ingredients": [ + "mussels", + "pitted black olives", + "olive oil", + "dry white wine", + "peas", + "shrimp", + "chicken thighs", + "saffron threads", + "tomatoes", + "crab", + "sea scallops", + "lemon wedge", + "yellow onion", + "red bell pepper", + "clams", + "green olives", + "chorizo", + "prawns", + "liquor", + "rice", + "chopped parsley", + "chicken broth", + "pork", + "garbanzo beans", + "pimentos", + "garlic", + "smoked paprika" + ] + }, + { + "id": 32479, + "cuisine": "indian", + "ingredients": [ + "black peppercorns", + "cilantro", + "salt", + "lemon juice", + "ground cinnamon", + "cayenne", + "purple onion", + "oil", + "fennel seeds", + "garam masala", + "garlic", + "cumin seed", + "frozen peas", + "cauliflower", + "water", + "ginger", + "green chilies", + "red bell pepper" + ] + }, + { + "id": 10917, + "cuisine": "cajun_creole", + "ingredients": [ + "yellow mustard seeds", + "bay leaves", + "celery", + "kosher salt", + "paprika", + "onions", + "crawfish", + "garlic", + "black peppercorns", + "orange", + "cayenne pepper" + ] + }, + { + "id": 42015, + "cuisine": "french", + "ingredients": [ + "slivered almonds", + "large egg whites", + "mushrooms", + "confectioners sugar", + "ganache", + "large egg yolks", + "all-purpose flour", + "pastry cream", + "baking soda", + "cocoa powder", + "sugar", + "marzipan", + "vegetable oil" + ] + }, + { + "id": 2772, + "cuisine": "spanish", + "ingredients": [ + "vanilla beans", + "whipping cream", + "sugar", + "large eggs", + "milk", + "salt", + "water", + "yolk" + ] + }, + { + "id": 24912, + "cuisine": "cajun_creole", + "ingredients": [ + "skim milk", + "all-purpose flour", + "cajun seasoning", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 28359, + "cuisine": "french", + "ingredients": [ + "ground round", + "kosher salt", + "finely chopped fresh parsley", + "vegetable oil", + "carrots", + "pancetta", + "brandy", + "ground black pepper", + "whole milk", + "all-purpose flour", + "cremini mushrooms", + "dried thyme", + "large eggs", + "red wine", + "fresh parsley", + "tomato paste", + "bread crumb fresh", + "unsalted butter", + "shallots", + "homemade beef stock" + ] + }, + { + "id": 41869, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "baking powder", + "salt", + "milk", + "butter", + "chopped pecans", + "brown sugar", + "vegetable oil", + "all-purpose flour", + "peaches", + "vanilla extract" + ] + }, + { + "id": 14709, + "cuisine": "mexican", + "ingredients": [ + "chicken breasts", + "cheese", + "jalapeno chilies", + "cilantro", + "cumin", + "chili powder", + "garlic", + "chicken broth", + "bacon", + "cream cheese" + ] + }, + { + "id": 18157, + "cuisine": "french", + "ingredients": [ + "yellow mustard seeds", + "gruyere cheese", + "ground black pepper", + "pork chops", + "dijon mustard" + ] + }, + { + "id": 33474, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "table salt", + "all-purpose flour", + "baking powder", + "shortening" + ] + }, + { + "id": 29648, + "cuisine": "southern_us", + "ingredients": [ + "water", + "salt", + "sugar", + "flour", + "corn", + "pepper", + "butter" + ] + }, + { + "id": 23138, + "cuisine": "italian", + "ingredients": [ + "pepper", + "salt", + "part-skim mozzarella", + "grated parmesan cheese", + "eggplant", + "bread crumbs", + "diced tomatoes" + ] + }, + { + "id": 10772, + "cuisine": "southern_us", + "ingredients": [ + "crawfish", + "leeks", + "extra-virgin olive oil", + "heavy whipping cream", + "chicken stock", + "sweet onion", + "green onions", + "salt", + "cauliflower", + "minced garlic", + "bay leaves", + "crushed red pepper", + "red potato", + "fresh thyme", + "butter", + "ground white pepper" + ] + }, + { + "id": 23199, + "cuisine": "vietnamese", + "ingredients": [ + "fennel seeds", + "cinnamon", + "onions", + "green cardamom pods", + "mushrooms", + "star anise", + "noodles", + "coriander seeds", + "sea salt", + "coriander", + "clove", + "vegetable stock", + "shrimp", + "broth" + ] + }, + { + "id": 15449, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "diced red onions", + "garlic", + "shredded cheese", + "avocado", + "diced green chilies", + "boneless skinless chicken breasts", + "whole kernel corn, drain", + "chopped cilantro fresh", + "chicken stock", + "tortillas", + "tomatoes with juice", + "red enchilada sauce", + "ground cumin", + "white onion", + "chips", + "salt", + "sour cream" + ] + }, + { + "id": 14770, + "cuisine": "french", + "ingredients": [ + "water", + "shallots", + "salt", + "sugar", + "ground black pepper", + "whipping cream", + "boneless duck breast halves", + "fat free less sodium chicken broth", + "dried tart cherries", + "pinot noir", + "olive oil", + "red wine vinegar", + "garlic cloves" + ] + }, + { + "id": 35333, + "cuisine": "korean", + "ingredients": [ + "chicken wings", + "white pepper", + "sesame oil", + "ginger", + "oil", + "soy sauce", + "sesame seeds", + "worcestershire sauce", + "Gochujang base", + "onions", + "ketchup", + "green onions", + "sea salt", + "green chilies", + "sugar", + "milk", + "red pepper", + "garlic", + "corn starch" + ] + }, + { + "id": 15592, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "garlic", + "cabbage", + "soy sauce", + "green onions", + "rotisserie chicken", + "eggs", + "egg roll wrappers", + "salt", + "pepper", + "vegetable oil", + "beansprouts" + ] + }, + { + "id": 16692, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "ground white pepper", + "melted butter", + "shallots", + "fresh chervil", + "dry white wine", + "fresh parsley", + "tarragon vinegar", + "fresh tarragon" + ] + }, + { + "id": 47899, + "cuisine": "southern_us", + "ingredients": [ + "seedless watermelon", + "sugar", + "chopped fresh mint", + "fresh mint", + "bourbon whiskey" + ] + }, + { + "id": 35613, + "cuisine": "italian", + "ingredients": [ + "warm water", + "extra-virgin olive oil", + "hungarian paprika", + "fresh oregano", + "semolina flour", + "flour", + "anchovy fillets", + "active dry yeast", + "salt" + ] + }, + { + "id": 2195, + "cuisine": "greek", + "ingredients": [ + "fresh dill", + "olive oil", + "zucchini", + "red pepper", + "fresh oregano", + "smoked paprika", + "pita bread", + "pepper", + "feta cheese", + "balsamic vinegar", + "garlic", + "fresh herbs", + "chicken broth", + "pinenuts", + "eggplant", + "orzo pasta", + "kalamata", + "tzatziki", + "basmati rice", + "fresh rosemary", + "cherry tomatoes", + "boneless chicken breast", + "butter", + "salt", + "fresh lemon juice" + ] + }, + { + "id": 1250, + "cuisine": "filipino", + "ingredients": [ + "tomato paste", + "Velveeta", + "milk", + "butter", + "oil", + "onions", + "cheddar cheese", + "ketchup", + "flour", + "salt", + "red bell pepper", + "green bell pepper", + "sugar", + "ground nutmeg", + "garlic", + "elbow macaroni", + "italian seasoning", + "tomato sauce", + "pepper", + "hot dogs", + "beef broth", + "ground beef" + ] + }, + { + "id": 32558, + "cuisine": "indian", + "ingredients": [ + "fat free yogurt", + "ground black pepper", + "onions", + "tomato sauce", + "fresh ginger", + "salt", + "red potato", + "reduced sodium chicken broth", + "garlic", + "frozen peas", + "boneless chicken skinless thigh", + "garam masala", + "nonstick spray" + ] + }, + { + "id": 46225, + "cuisine": "greek", + "ingredients": [ + "pita bread", + "lean ground beef", + "salt", + "tzatziki", + "ground lamb", + "ground ginger", + "pepper", + "garlic", + "cayenne pepper", + "garlic cloves", + "black pepper", + "lemon", + "greek style plain yogurt", + "english cucumber", + "ground cumin", + "ground cinnamon", + "olive oil", + "purple onion", + "dill", + "chopped cilantro" + ] + }, + { + "id": 41708, + "cuisine": "cajun_creole", + "ingredients": [ + "diced onions", + "minced garlic", + "ground black pepper", + "bay leaves", + "salt", + "shrimp", + "bay leaf", + "tomato sauce", + "dried basil", + "chopped green bell pepper", + "paprika", + "diced celery", + "ground cayenne pepper", + "onions", + "clove", + "water", + "hot pepper sauce", + "corn oil", + "crabmeat", + "ground white pepper", + "fresh parsley", + "shucked oysters", + "dried thyme", + "file powder", + "garlic", + "carrots", + "celery", + "dried oregano" + ] + }, + { + "id": 49432, + "cuisine": "indian", + "ingredients": [ + "water", + "poppy seeds", + "green chilies", + "garam masala", + "salt", + "onions", + "fresh ginger", + "garlic", + "fillets", + "tumeric", + "vegetable oil", + "cayenne pepper" + ] + }, + { + "id": 34366, + "cuisine": "italian", + "ingredients": [ + "frozen spinach", + "black pepper", + "low-fat cottage cheese", + "Classico Pasta Sauce", + "grated nutmeg", + "dried oregano", + "brown sugar", + "dried basil", + "parmesan cheese", + "garlic", + "shredded mozzarella cheese", + "eggs", + "pepper", + "eggplant", + "crushed red pepper flakes", + "anchovy fillets", + "granulated garlic", + "olive oil", + "lean ground meat", + "salt", + "onions" + ] + }, + { + "id": 27011, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "garlic cloves", + "heavy whipping cream", + "olive oil", + "low salt chicken broth", + "white onion", + "fresh lemon juice", + "chicken thighs", + "saffron threads", + "dry white wine", + "paccheri" + ] + }, + { + "id": 4030, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "heirloom tomatoes", + "regular cucumber", + "coriander seeds", + "extra-virgin olive oil", + "watermelon", + "basil", + "hass avocado", + "aged balsamic vinegar", + "ground black pepper", + "fresh herbs" + ] + }, + { + "id": 37159, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "salmon", + "fresh ginger", + "cilantro", + "shrimp", + "fish sauce", + "lime", + "assorted fresh vegetables", + "garlic", + "snow peas", + "spinach", + "lemongrass", + "cooking oil", + "vegetable broth", + "coconut milk", + "tomatoes", + "red chili peppers", + "kale", + "bell pepper", + "purple onion" + ] + }, + { + "id": 11654, + "cuisine": "chinese", + "ingredients": [ + "chinese sausage", + "cooking wine", + "rice flour", + "water", + "cooking oil", + "salt", + "sugar", + "radishes", + "purple onion", + "dried shrimp", + "shiitake", + "green onions", + "chinese five-spice powder" + ] + }, + { + "id": 47189, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "white asparagus", + "salt", + "sugar", + "corn starch", + "chicken stock", + "heavy cream" + ] + }, + { + "id": 46190, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "chicken", + "soy sauce", + "sauce", + "rice vinegar", + "ginger", + "apricot jam" + ] + }, + { + "id": 24574, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salsa", + "ground cumin", + "Daisy Sour Cream", + "lean ground beef", + "whole kernel corn, drain", + "colby jack cheese", + "chopped onion", + "refried beans", + "salt", + "dried oregano" + ] + }, + { + "id": 1230, + "cuisine": "mexican", + "ingredients": [ + "reduced fat cheddar cheese", + "flour tortillas", + "sea salt", + "cayenne pepper", + "cumin", + "olive oil", + "boneless skinless chicken breasts", + "purple onion", + "red bell pepper", + "black pepper", + "jalapeno chilies", + "garlic", + "taco seasoning", + "green bell pepper", + "chicken broth low fat", + "chili powder", + "greek style plain yogurt", + "chopped cilantro fresh" + ] + }, + { + "id": 34789, + "cuisine": "southern_us", + "ingredients": [ + "hot red pepper flakes", + "white vinegar", + "water", + "sugar", + "green chile" + ] + }, + { + "id": 42735, + "cuisine": "mexican", + "ingredients": [ + "refried beans", + "ground beef", + "jalapeno chilies", + "cheese soup", + "picante sauce", + "processed cheese" + ] + }, + { + "id": 47442, + "cuisine": "southern_us", + "ingredients": [ + "white vinegar", + "pork tenderloin", + "rolls", + "fresh lime juice", + "olive oil", + "purple onion", + "orange juice", + "vegetable oil spray", + "salt", + "garlic cloves", + "tomatoes", + "cracked black pepper", + "spanish paprika", + "boiling water" + ] + }, + { + "id": 2331, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "balsamic vinegar", + "garlic cloves", + "spring greens", + "bacon slices", + "frozen peas", + "dry white wine", + "tortelloni", + "plum tomatoes", + "parmesan cheese", + "baby spinach", + "onions" + ] + }, + { + "id": 4858, + "cuisine": "mexican", + "ingredients": [ + "roma tomatoes", + "non-fat sour cream", + "sliced green onions", + "olive oil", + "chili powder", + "ground coriander", + "potatoes", + "salt", + "ground cumin", + "garlic powder", + "tomato salsa", + "chopped cilantro fresh" + ] + }, + { + "id": 41115, + "cuisine": "indian", + "ingredients": [ + "long grain white rice", + "salt", + "butter", + "saffron", + "boiling water" + ] + }, + { + "id": 46782, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "sour cream", + "large eggs", + "white cornmeal", + "granulated sugar", + "pumpkin pie spice", + "sweet potatoes" + ] + }, + { + "id": 28960, + "cuisine": "spanish", + "ingredients": [ + "sherry vinegar", + "salt", + "chopped almonds", + "red bell pepper", + "tomatoes", + "extra-virgin olive oil", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 8949, + "cuisine": "indian", + "ingredients": [ + "jaggery", + "cardamom", + "white sesame seeds" + ] + }, + { + "id": 7881, + "cuisine": "japanese", + "ingredients": [ + "salmon", + "mirin", + "chicken stock", + "light soy sauce", + "ginger", + "white onion", + "spring onions", + "eggs", + "beef", + "corn starch" + ] + }, + { + "id": 12358, + "cuisine": "korean", + "ingredients": [ + "sugar", + "garlic cloves", + "eggs", + "ground sirloin", + "kimchi", + "low sodium soy sauce", + "quinoa", + "garlic chili sauce", + "fish sauce", + "crushed red pepper", + "bok choy" + ] + }, + { + "id": 49344, + "cuisine": "italian", + "ingredients": [ + "whipping cream", + "cooked shrimp", + "pepper", + "penne pasta", + "prepar pesto", + "salt", + "oil packed dried tomatoes", + "fat skimmed chicken broth" + ] + }, + { + "id": 4223, + "cuisine": "jamaican", + "ingredients": [ + "water", + "green pepper", + "beef", + "thyme", + "black pepper", + "red beans", + "onions", + "stewing beef", + "scallions" + ] + }, + { + "id": 7135, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "whole wheat pita bread", + "sundried tomato pesto", + "fresh mushrooms", + "spinach", + "grated parmesan cheese", + "plum tomatoes", + "olive oil", + "feta cheese crumbles" + ] + }, + { + "id": 3129, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "vegetable oil", + "all-purpose flour", + "eggs", + "dry white wine", + "lemon", + "fresh lemon juice", + "water", + "boneless skinless chicken breasts", + "salt", + "fresh parsley", + "ground black pepper", + "butter", + "dry bread crumbs" + ] + }, + { + "id": 22761, + "cuisine": "italian", + "ingredients": [ + "eggs", + "mozzarella cheese", + "lean ground beef", + "white sugar", + "tomato paste", + "cottage cheese", + "grated parmesan cheese", + "dried parsley", + "sausage casings", + "lasagna noodles", + "salt", + "tomato purée", + "ground black pepper", + "garlic" + ] + }, + { + "id": 25191, + "cuisine": "italian", + "ingredients": [ + "active dry yeast", + "vegetable oil", + "sun-dried tomatoes", + "bread flour", + "dried basil", + "salt", + "tomato paste", + "sherry" + ] + }, + { + "id": 22732, + "cuisine": "mexican", + "ingredients": [ + "ground chicken", + "quinoa", + "chili powder", + "enchilada sauce", + "water", + "jalapeno chilies", + "frozen corn", + "onions", + "black beans", + "Mexican cheese blend", + "garlic", + "roasted tomatoes", + "fresh cilantro", + "green onions", + "ground coriander" + ] + }, + { + "id": 24847, + "cuisine": "spanish", + "ingredients": [ + "white bread", + "water", + "extra-virgin olive oil", + "hot red pepper flakes", + "red wine vinegar", + "blanched almonds", + "tomatoes", + "pimentos", + "salt", + "hazelnuts", + "large garlic cloves", + "ancho chile pepper" + ] + }, + { + "id": 14077, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "sweet potatoes", + "ground allspice", + "ground nutmeg", + "vanilla extract", + "sweetened condensed milk", + "ground ginger", + "mini marshmallows", + "salt", + "orange zest", + "melted butter", + "navel oranges", + "chopped pecans" + ] + }, + { + "id": 37936, + "cuisine": "greek", + "ingredients": [ + "romaine lettuce", + "fresh lemon juice", + "green onions", + "olive oil", + "hothouse cucumber", + "fresh dill", + "garlic cloves" + ] + }, + { + "id": 928, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped tomatoes", + "all-purpose flour", + "canola oil", + "reduced sodium chicken broth", + "cajun seasoning", + "scallions", + "quick cooking brown rice", + "okra", + "hot italian turkey sausage links", + "garlic", + "onions" + ] + }, + { + "id": 10837, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "chopped onion", + "chicken stock", + "white rice", + "dried oregano", + "italian sausage", + "heavy cream", + "fresh parsley", + "dried basil", + "garlic" + ] + }, + { + "id": 13173, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "fresh ginger", + "greek style plain yogurt", + "black mustard seeds", + "lime juice", + "jalapeno chilies", + "cumin seed", + "pepper", + "coriander seeds", + "beets", + "chopped cilantro fresh", + "pomegranate seeds", + "extra-virgin olive oil", + "garlic cloves" + ] + }, + { + "id": 45252, + "cuisine": "italian", + "ingredients": [ + "sundried tomato pesto", + "penne pasta", + "heavy cream", + "roast red peppers, drain", + "olive oil", + "cayenne pepper", + "fresh basil", + "garlic", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 36448, + "cuisine": "indian", + "ingredients": [ + "cumin seed", + "water", + "jaggery", + "grated coconut", + "ground cardamom", + "parboiled rice" + ] + }, + { + "id": 20390, + "cuisine": "jamaican", + "ingredients": [ + "garlic powder", + "cinnamon", + "ginger", + "vegetable seasoning", + "cumin", + "ground cloves", + "chili powder", + "basil", + "skinless chicken breasts", + "onions", + "sugar", + "cayenne", + "onion salt", + "salt", + "thyme", + "allspice", + "black pepper", + "vegetable oil", + "crushed red pepper flakes", + "green pepper", + "coriander" + ] + }, + { + "id": 1419, + "cuisine": "japanese", + "ingredients": [ + "sake", + "light soy sauce", + "yuzu", + "toasted sesame seeds", + "water", + "mirin", + "red miso", + "dashi kombu", + "extra firm tofu", + "shiso", + "sugar", + "white miso", + "dried bonito flakes" + ] + }, + { + "id": 28641, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "garlic", + "spaghetti", + "fresh basil", + "sea salt", + "ricotta", + "dried oregano", + "ground black pepper", + "passata", + "plum tomatoes", + "herb vinegar", + "extra-virgin olive oil", + "dried red chile peppers" + ] + }, + { + "id": 24199, + "cuisine": "italian", + "ingredients": [ + "sugar", + "vanilla extract", + "corn starch", + "vanilla ice cream", + "ice water", + "all-purpose flour", + "nectarines", + "eggs", + "unsalted butter", + "salt", + "polenta", + "grated orange peel", + "raw sugar", + "peach preserves", + "blackberries" + ] + }, + { + "id": 12364, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "mint leaves", + "cumin seed", + "sago", + "salt", + "mustard seeds", + "peanuts", + "crushed red pepper flakes", + "oil", + "curry leaves", + "potatoes", + "green chilies" + ] + }, + { + "id": 33595, + "cuisine": "mexican", + "ingredients": [ + "taco sauce", + "jalapeno chilies", + "salt", + "chopped cilantro fresh", + "avocado", + "refried beans", + "shredded lettuce", + "freshly ground pepper", + "minced garlic", + "green onions", + "chopped onion", + "shredded Monterey Jack cheese", + "tomatoes", + "flour tortillas", + "extra-virgin olive oil", + "sour cream" + ] + }, + { + "id": 42926, + "cuisine": "chinese", + "ingredients": [ + "slaw mix", + "water", + "sliced green onions", + "lean ground pork", + "teriyaki sauce", + "green onions" + ] + }, + { + "id": 39840, + "cuisine": "southern_us", + "ingredients": [ + "pork shoulder roast", + "sugar", + "hot red pepper flakes", + "cider vinegar" + ] + }, + { + "id": 8195, + "cuisine": "mexican", + "ingredients": [ + "finely chopped onion", + "extra-virgin olive oil", + "medium shrimp", + "Boston lettuce", + "cooking spray", + "frozen corn kernels", + "lump crab meat", + "sweetened coconut flakes", + "fresh lemon juice", + "avocado", + "jalapeno chilies", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 48432, + "cuisine": "japanese", + "ingredients": [ + "starch", + "oyster sauce", + "corn", + "russet potatoes", + "soy sauce", + "sesame oil", + "tuna", + "honey", + "scallions" + ] + }, + { + "id": 9627, + "cuisine": "mexican", + "ingredients": [ + "guajillo chiles", + "spanish onion", + "tomatillos", + "orange juice", + "cinnamon sticks", + "canola oil", + "black peppercorns", + "fresh cilantro", + "pork tenderloin", + "salt", + "fresh lemon juice", + "fresh pineapple", + "fresh chives", + "honey", + "sherry wine vinegar", + "cumin seed", + "adobo sauce", + "masa", + "clove", + "kosher salt", + "ground black pepper", + "garlic", + "garlic cloves", + "serrano chile" + ] + }, + { + "id": 33636, + "cuisine": "chinese", + "ingredients": [ + "water", + "flour", + "worcestershire sauce", + "oil", + "soy sauce", + "pork chops", + "sesame oil", + "scallions", + "chinese black vinegar", + "baking soda", + "Shaoxing wine", + "maple syrup", + "corn starch", + "ketchup", + "hoisin sauce", + "ice water", + "chinese five-spice powder", + "toasted sesame seeds" + ] + }, + { + "id": 44153, + "cuisine": "mexican", + "ingredients": [ + "white rice", + "sugar", + "rice milk", + "ground cinnamon", + "cinnamon sticks", + "warm water" + ] + }, + { + "id": 31555, + "cuisine": "chinese", + "ingredients": [ + "chives", + "garlic", + "soy sauce", + "baby spinach", + "soba", + "chicken broth", + "sesame oil", + "carrots", + "shiitake", + "ginger" + ] + }, + { + "id": 41549, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "onion powder", + "ham", + "bread crumbs", + "flour", + "salt", + "ground black pepper", + "butter", + "shredded cheddar cheese", + "green onions", + "elbow macaroni" + ] + }, + { + "id": 34467, + "cuisine": "greek", + "ingredients": [ + "pepper", + "grated parmesan cheese", + "escarole", + "tomatoes", + "dried thyme", + "crushed red pepper", + "fresh parsley", + "chicken sausage", + "cannellini beans", + "bay leaf", + "canned low sodium chicken broth", + "garbanzo beans", + "salt" + ] + }, + { + "id": 42881, + "cuisine": "chinese", + "ingredients": [ + "molasses", + "orange marmalade", + "lime juice", + "shrimp", + "minced garlic", + "red pepper", + "honey" + ] + }, + { + "id": 13610, + "cuisine": "british", + "ingredients": [ + "hard-boiled egg", + "lemon", + "onions", + "milk", + "butter", + "cracked black pepper", + "basmati rice", + "smoked haddock", + "parsley", + "sea salt", + "Madras curry powder", + "cayenne", + "double cream", + "grated nutmeg" + ] + }, + { + "id": 37969, + "cuisine": "chinese", + "ingredients": [ + "asparagus", + "chow mein noodles", + "reduced sodium chicken broth", + "Sriracha", + "fresh ginger", + "pork tenderloin", + "reduced sodium soy sauce", + "sliced green onions" + ] + }, + { + "id": 35969, + "cuisine": "chinese", + "ingredients": [ + "eggplant", + "salt", + "soy sauce", + "peeled fresh ginger", + "peanut oil", + "scallion greens", + "large eggs", + "all-purpose flour", + "water", + "ground pork" + ] + }, + { + "id": 943, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "baking powder", + "large eggs", + "all-purpose flour", + "parmigiano reggiano cheese", + "salt", + "black peppercorns", + "whole milk" + ] + }, + { + "id": 16232, + "cuisine": "vietnamese", + "ingredients": [ + "soy sauce", + "pepper", + "vegetable oil", + "ground cumin", + "bread crumbs", + "chili powder", + "ground coriander", + "ketchup", + "flour", + "firm tofu", + "kosher salt", + "sesame oil", + "toasted sesame seeds" + ] + }, + { + "id": 43353, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "pappadams" + ] + }, + { + "id": 23603, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "corn starch", + "hot red pepper flakes", + "peeled fresh ginger", + "chopped garlic", + "chicken wings", + "reduced sodium chicken broth", + "fermented black beans", + "sugar", + "peanut oil" + ] + }, + { + "id": 21655, + "cuisine": "korean", + "ingredients": [ + "mushrooms", + "doenzang", + "water", + "green chilies", + "greens", + "white onion", + "spring onions", + "arugula", + "zucchini", + "garlic cloves" + ] + }, + { + "id": 40154, + "cuisine": "italian", + "ingredients": [ + "cauliflower", + "salt", + "parmesan cheese", + "eggs", + "herb seasoning", + "ground black pepper" + ] + }, + { + "id": 37290, + "cuisine": "british", + "ingredients": [ + "black pepper", + "Turkish bay leaves", + "dry mustard", + "beef rib short", + "olive oil", + "stout", + "beef broth", + "chopped garlic", + "curry powder", + "diced tomatoes", + "salt", + "carrots", + "celery ribs", + "leeks", + "paprika", + "dark brown sugar", + "ground cumin" + ] + }, + { + "id": 48116, + "cuisine": "mexican", + "ingredients": [ + "bacon", + "serrano peppers", + "pinto beans" + ] + }, + { + "id": 3957, + "cuisine": "japanese", + "ingredients": [ + "white onion", + "russet potatoes", + "chopped celery", + "ground white pepper", + "japanese cucumber", + "yellow bell pepper", + "fresh lemon juice", + "escarole", + "honey", + "dry mustard", + "purple onion", + "red bell pepper", + "mayonaise", + "daikon", + "white wine vinegar", + "carrots" + ] + }, + { + "id": 26590, + "cuisine": "irish", + "ingredients": [ + "russet potatoes", + "large garlic cloves", + "butter", + "milk", + "whipping cream" + ] + }, + { + "id": 27759, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "red bell pepper", + "salad dressing", + "chicken meat", + "onions", + "green bell pepper", + "sliced mushrooms" + ] + }, + { + "id": 23428, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "tomatoes", + "ground black pepper", + "mozzarella cheese", + "fresh basil leaves", + "pinenuts", + "flour tortillas" + ] + }, + { + "id": 48156, + "cuisine": "french", + "ingredients": [ + "black pepper", + "sauvignon blanc", + "fresh lemon juice", + "kosher salt", + "roasting chickens", + "onions", + "cooking spray", + "garlic cloves", + "fat free less sodium chicken broth", + "butter", + "herbes de provence" + ] + }, + { + "id": 37, + "cuisine": "mexican", + "ingredients": [ + "queso fresco", + "margarine", + "chicken breasts", + "extra-virgin olive oil", + "cilantro", + "red bell pepper", + "large flour tortillas", + "purple onion" + ] + }, + { + "id": 33939, + "cuisine": "spanish", + "ingredients": [ + "pepper", + "vegetable oil", + "garlic cloves", + "dijon mustard", + "white wine vinegar", + "boiling potatoes", + "large egg yolks", + "extra-virgin olive oil", + "fresh lemon juice", + "kosher salt", + "chili powder", + "hot smoked paprika" + ] + }, + { + "id": 47521, + "cuisine": "italian", + "ingredients": [ + "water", + "extra-virgin olive oil", + "flat leaf parsley", + "cannellini beans", + "chopped fresh sage", + "ground black pepper", + "salt", + "polenta", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 49158, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "whole milk", + "all-purpose flour", + "sugar", + "unsalted butter", + "whipping cream", + "water", + "large eggs", + "salt", + "unflavored gelatin", + "large egg yolks", + "butter" + ] + }, + { + "id": 15123, + "cuisine": "korean", + "ingredients": [ + "gochugaru", + "garlic", + "spam", + "soy sauce", + "hot dogs", + "Gochujang base", + "brown sugar", + "rice cakes", + "yellow onion", + "water", + "ramen noodles", + "scallions" + ] + }, + { + "id": 48362, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "white wine vinegar", + "ground black pepper", + "olive oil", + "fresh basil leaves", + "sea salt" + ] + }, + { + "id": 25297, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper", + "jalapeno chilies", + "shredded cheddar cheese", + "cream cheese", + "bread crumbs", + "hot sauce", + "tortillas", + "red bell pepper" + ] + }, + { + "id": 32940, + "cuisine": "french", + "ingredients": [ + "red potato", + "cooking spray", + "escarole", + "minced garlic", + "Italian turkey sausage", + "fat free less sodium chicken broth", + "cannellini beans", + "onions", + "fresh rosemary", + "fresh parmesan cheese", + "chardonnay" + ] + }, + { + "id": 31760, + "cuisine": "indian", + "ingredients": [ + "eggs", + "Manischewitz Potato Starch", + "tzatziki", + "sour cream", + "allspice", + "curry powder", + "zucchini", + "carrots", + "Manischewitz Matzo Meal", + "pepper", + "hand", + "peanut oil", + "onions", + "cayenne", + "salt", + "greek yogurt", + "cumin" + ] + }, + { + "id": 26995, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "spring onions", + "oil", + "dark soy sauce", + "light soy sauce", + "salt", + "water", + "ginger", + "shrimp", + "sugar", + "hot chili", + "shaoxing" + ] + }, + { + "id": 37591, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "fresh basil", + "extra-virgin olive oil", + "baguette", + "plum tomatoes", + "soft goat's cheese", + "cooking spray" + ] + }, + { + "id": 9615, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "cajun seasoning", + "all-purpose flour", + "onions", + "chicken broth", + "grated parmesan cheese", + "heavy cream", + "shrimp", + "fettucine", + "green onions", + "cheese", + "fresh parsley", + "celery ribs", + "andouille sausage", + "butter", + "garlic cloves" + ] + }, + { + "id": 43074, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "coriander seeds", + "ground cardamom", + "ground cinnamon", + "water", + "red wine vinegar", + "ground cumin", + "fresh coriander", + "unsalted butter", + "ground turmeric", + "sugar", + "eggplant", + "salt" + ] + }, + { + "id": 26887, + "cuisine": "italian", + "ingredients": [ + "extra-virgin olive oil", + "penne rigate", + "pecorino cheese", + "broccoli", + "salt", + "florets", + "freshly ground pepper" + ] + }, + { + "id": 47890, + "cuisine": "cajun_creole", + "ingredients": [ + "butter", + "brandy", + "orange zest", + "sugar", + "heavy cream", + "coffee" + ] + }, + { + "id": 22192, + "cuisine": "spanish", + "ingredients": [ + "russet potatoes", + "onions", + "salt", + "eggs", + "olives" + ] + }, + { + "id": 12270, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "garlic salt", + "diced onions", + "cilantro leaves", + "lemon", + "chopped tomatoes", + "nopales" + ] + }, + { + "id": 38613, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken breasts", + "fresh parsley", + "olive oil", + "butter", + "yellow corn meal", + "cajun seasoning", + "self rising flour", + "lemon" + ] + }, + { + "id": 11347, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "medium shrimp", + "dried basil", + "anchovy fillets", + "grape tomatoes", + "garlic", + "pasta", + "red pepper flakes", + "dried oregano" + ] + }, + { + "id": 7106, + "cuisine": "southern_us", + "ingredients": [ + "chop fine pecan", + "honey", + "salt", + "large eggs", + "all-purpose flour", + "milk", + "butter" + ] + }, + { + "id": 23936, + "cuisine": "thai", + "ingredients": [ + "boneless chicken skinless thigh", + "basil leaves", + "garlic cloves", + "fish sauce", + "water", + "brown rice", + "snow peas", + "chile paste with garlic", + "pepper", + "shallots", + "corn starch", + "sugar", + "lower sodium soy sauce", + "salt", + "canola oil" + ] + }, + { + "id": 41453, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "salt", + "wheat germ", + "honey", + "buttermilk", + "oat bran", + "eggs", + "baking powder", + "all-purpose flour", + "whole wheat flour", + "steel-cut oatmeal", + "oatmeal" + ] + }, + { + "id": 17785, + "cuisine": "mexican", + "ingredients": [ + "coarse salt", + "water", + "white sugar", + "lime", + "brandy", + "tequila" + ] + }, + { + "id": 7492, + "cuisine": "chinese", + "ingredients": [ + "chinese celery", + "lo mein noodles", + "peanut oil", + "chopped cilantro", + "soy sauce", + "fresh ginger", + "ground pork", + "carrots", + "sugar pea", + "white miso", + "garlic", + "ground turkey", + "clove", + "lemongrass", + "mirin", + "scallions", + "toasted sesame seeds" + ] + }, + { + "id": 2659, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "garlic cloves", + "ground black pepper", + "lamb loin chops", + "olive oil", + "dried lavender flowers" + ] + }, + { + "id": 43803, + "cuisine": "mexican", + "ingredients": [ + "sliced tomatoes", + "pickled jalapenos", + "garlic powder", + "salt", + "garlic cloves", + "sirloin tip", + "ground ginger", + "lime", + "extra-virgin olive oil", + "cayenne pepper", + "cumin", + "avocado", + "black pepper", + "onion powder", + "hot sauce", + "smoked paprika", + "chile powder", + "cotija", + "iceberg", + "purple onion", + "rolls" + ] + }, + { + "id": 33899, + "cuisine": "italian", + "ingredients": [ + "ladyfingers", + "mascarpone", + "large egg yolks", + "unsweetened cocoa powder", + "sugar", + "dark rum", + "large egg whites", + "brewed espresso" + ] + }, + { + "id": 35626, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "chopped onion", + "milk", + "cut up cooked chicken", + "shredded cheddar cheese", + "Bisquick Baking Mix", + "Old El Paso™ taco seasoning mix" + ] + }, + { + "id": 46908, + "cuisine": "french", + "ingredients": [ + "fine sea salt", + "bay leaf", + "water", + "carrots", + "peppercorns", + "parsley sprigs", + "garlic cloves", + "onions", + "red wine vinegar", + "thyme" + ] + }, + { + "id": 42962, + "cuisine": "indian", + "ingredients": [ + "panko", + "ginger", + "ground coriander", + "fresh coriander", + "potatoes", + "salt", + "ground cumin", + "garam masala", + "arctic char", + "oil", + "water", + "crushed garlic", + "all-purpose flour" + ] + }, + { + "id": 35641, + "cuisine": "jamaican", + "ingredients": [ + "sugar", + "raisins", + "coconut milk", + "nutmeg", + "rum", + "salt", + "water", + "vanilla extract", + "cornmeal", + "ground cinnamon", + "butter", + "all-purpose flour" + ] + }, + { + "id": 45886, + "cuisine": "british", + "ingredients": [ + "pecans", + "green leaf lettuce", + "stilton", + "dijon style mustard", + "olive oil", + "red bartlett pears", + "white wine vinegar" + ] + }, + { + "id": 17799, + "cuisine": "indian", + "ingredients": [ + "ground ginger", + "salt", + "leg of lamb", + "ground cumin", + "ground cloves", + "ground coriander", + "ground turmeric", + "ground cinnamon", + "less sodium beef broth", + "chopped cilantro fresh", + "saffron threads", + "chili powder", + "low-fat yogurt", + "canola oil" + ] + }, + { + "id": 41685, + "cuisine": "filipino", + "ingredients": [ + "garlic", + "beansprouts", + "rolls", + "cabbage", + "soy sauce", + "oil", + "hamburger", + "onions" + ] + }, + { + "id": 48199, + "cuisine": "british", + "ingredients": [ + "ground ginger", + "all-purpose flour", + "crystallized ginger", + "unsalted butter", + "sugar", + "white rice flour" + ] + }, + { + "id": 24275, + "cuisine": "chinese", + "ingredients": [ + "garlic powder", + "top sirloin steak", + "peanut oil", + "low sodium soy sauce", + "baking soda", + "dry sherry", + "corn starch", + "brown sugar", + "cayenne", + "steamed brown rice", + "minced ginger", + "broccoli florets", + "orange juice" + ] + }, + { + "id": 40814, + "cuisine": "italian", + "ingredients": [ + "shredded cheddar cheese", + "shredded mozzarella cheese", + "diced tomatoes", + "ground beef", + "marinara sauce", + "sliced mushrooms", + "sausage casings", + "cheese tortellini" + ] + }, + { + "id": 11039, + "cuisine": "chinese", + "ingredients": [ + "chicken stock", + "boneless chicken skinless thigh", + "egg whites", + "salt", + "scallions", + "sugar", + "chili paste", + "crushed red pepper flakes", + "peanut oil", + "toasted sesame seeds", + "tomato paste", + "white wine", + "sesame oil", + "rice vinegar", + "corn starch", + "soy sauce", + "hoisin sauce", + "garlic", + "freshly ground pepper" + ] + }, + { + "id": 13881, + "cuisine": "cajun_creole", + "ingredients": [ + "chives", + "cayenne", + "crabmeat", + "mayonaise", + "red wine vinegar", + "roasted red peppers", + "garlic cloves" + ] + }, + { + "id": 14928, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "lime", + "chili powder", + "garlic cloves", + "onions", + "avocado", + "kosher salt", + "sweet potatoes", + "red wine vinegar", + "corn tortillas", + "ground cumin", + "tomatoes", + "shredded cheddar cheese", + "green onions", + "ground coriander", + "chopped cilantro", + "black beans", + "jalapeno chilies", + "vegetable oil", + "sour cream", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 14128, + "cuisine": "japanese", + "ingredients": [ + "potato starch", + "soy sauce", + "green onions", + "ginger", + "chicken thighs", + "sake", + "ground black pepper", + "sesame oil", + "oil", + "fish sauce", + "chili", + "lemon wedge", + "garlic", + "sugar", + "flour", + "sea salt", + "garlic cloves" + ] + }, + { + "id": 45094, + "cuisine": "french", + "ingredients": [ + "green beans", + "olive oil" + ] + }, + { + "id": 45275, + "cuisine": "indian", + "ingredients": [ + "zucchini", + "ground asafetida", + "chaat masala", + "plain yogurt", + "coarse salt", + "ground coriander", + "brown mustard seeds", + "green pepper", + "olive oil", + "lemon", + "cumin seed" + ] + }, + { + "id": 14405, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "water", + "ground black pepper", + "ground thyme", + "canola oil", + "black pepper", + "olive oil", + "flour", + "salt", + "soy sauce", + "honey", + "ground sage", + "paprika", + "ground ginger", + "minced garlic", + "ground nutmeg", + "boneless skinless chicken breasts", + "cayenne pepper" + ] + }, + { + "id": 33650, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "red pepper flakes", + "boneless skinless chicken breast halves", + "water", + "oil", + "soy sauce", + "rice vinegar", + "orange marmalade", + "garlic cloves" + ] + }, + { + "id": 30126, + "cuisine": "southern_us", + "ingredients": [ + "chocolate instant pudding", + "vanilla instant pudding", + "graham cracker crusts", + "cream cheese", + "pecan halves", + "vanilla extract", + "confectioners sugar", + "cold milk", + "heavy cream", + "chopped pecans" + ] + }, + { + "id": 35052, + "cuisine": "thai", + "ingredients": [ + "cilantro", + "garlic cloves", + "water", + "purple onion", + "coconut milk", + "cauliflower", + "fine sea salt", + "green beans", + "curry powder", + "firm tofu", + "cashew nuts" + ] + }, + { + "id": 13413, + "cuisine": "italian", + "ingredients": [ + "chives", + "extra-virgin olive oil", + "eggs", + "lemon", + "fine sea salt", + "tomatoes", + "ricotta cheese", + "garlic", + "mozzarella cheese", + "crushed red pepper flakes", + "pasta shells" + ] + }, + { + "id": 24372, + "cuisine": "greek", + "ingredients": [ + "spinach leaves", + "eggplant", + "garlic cloves", + "pepper", + "balsamic vinegar", + "plum tomatoes", + "pizza crust", + "cooking spray", + "feta cheese crumbles", + "olive oil", + "salt", + "dried oregano" + ] + }, + { + "id": 6348, + "cuisine": "mexican", + "ingredients": [ + "green bell pepper, slice", + "diced tomatoes", + "red bell pepper", + "cumin", + "olive oil", + "boneless skinless chicken breasts", + "cheese", + "onions", + "flour tortillas", + "cilantro", + "sour cream", + "garlic powder", + "chili powder", + "salsa", + "dried oregano" + ] + }, + { + "id": 14865, + "cuisine": "irish", + "ingredients": [ + "baking soda", + "all-purpose flour", + "buttermilk", + "baking powder", + "sugar", + "salt" + ] + }, + { + "id": 9460, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "heavy cream", + "cornmeal", + "canned low sodium chicken broth", + "dry mustard", + "catfish fillets", + "cooking oil", + "salt", + "ground black pepper", + "garlic" + ] + }, + { + "id": 45850, + "cuisine": "chinese", + "ingredients": [ + "sirloin", + "granulated sugar", + "fresh green bean", + "dried chile", + "fresh ginger", + "sesame oil", + "garlic", + "light soy sauce", + "green onions", + "dry sherry", + "dark soy sauce", + "chili paste", + "vegetable oil", + "freshly ground pepper" + ] + }, + { + "id": 38184, + "cuisine": "mexican", + "ingredients": [ + "lime", + "long grain white rice", + "black pepper", + "yellow onion", + "avocado", + "cilantro leaves", + "chicken", + "kosher salt", + "carrots" + ] + }, + { + "id": 26027, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "large egg whites", + "zucchini", + "salt", + "pitted kalamata olives", + "olive oil", + "grated parmesan cheese", + "onions", + "tomatoes", + "yellow squash", + "jasmine", + "garlic cloves", + "dried basil", + "fennel bulb", + "cooking spray", + "dried oregano" + ] + }, + { + "id": 45331, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "mustard", + "instant coffee", + "bourbon whiskey", + "ham steak", + "heavy cream" + ] + }, + { + "id": 15593, + "cuisine": "thai", + "ingredients": [ + "straw mushrooms", + "light soy sauce", + "salt", + "fresh lime juice", + "lime zest", + "minced ginger", + "vegetable stock", + "red bell pepper", + "sweetener", + "extra firm tofu", + "grate lime peel", + "sugar", + "lemongrass", + "Thai red curry paste", + "coconut milk" + ] + }, + { + "id": 38518, + "cuisine": "moroccan", + "ingredients": [ + "cayenne", + "ground cumin", + "sugar", + "fresh lemon juice", + "olive oil", + "carrots", + "ground cinnamon", + "garlic cloves" + ] + }, + { + "id": 42756, + "cuisine": "greek", + "ingredients": [ + "nonfat yogurt", + "garlic cloves", + "non-fat sour cream", + "salt", + "dried mint flakes", + "fresh lemon juice" + ] + }, + { + "id": 16605, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "large eggs", + "sugar", + "unsalted butter", + "all-purpose flour", + "instant espresso powder", + "salt", + "milk", + "semisweet chocolate", + "corn syrup" + ] + }, + { + "id": 16934, + "cuisine": "mexican", + "ingredients": [ + "reduced sodium chicken broth", + "diced tomatoes", + "sour cream", + "onions", + "boneless skinless chicken breasts", + "garlic", + "corn tortillas", + "sliced green onions", + "lime", + "crushed red pepper flakes", + "coarse kosher salt", + "chopped cilantro fresh", + "avocado", + "vegetable oil", + "grated jack cheese", + "chopped cilantro", + "ground cumin" + ] + }, + { + "id": 26540, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "green garlic", + "garlic cloves", + "arborio rice", + "leeks", + "extra-virgin olive oil", + "onions", + "asparagus", + "dry white wine", + "vegetable broth", + "grated parmesan cheese", + "peas", + "flat leaf parsley" + ] + }, + { + "id": 44132, + "cuisine": "mexican", + "ingredients": [ + "jalapeno chilies", + "corn tortillas", + "ground chipotle chile pepper", + "knorr chicken flavor bouillon", + "hellmann' or best food light mayonnais", + "purple onion", + "fresh pineapple", + "lime juice", + "uncook medium shrimp, peel and devein" + ] + }, + { + "id": 28703, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "green pepper", + "cooked rice", + "salt", + "onions", + "pepper", + "cayenne pepper", + "canola oil", + "Johnsonville Smoked Sausage", + "rabbit", + "okra" + ] + }, + { + "id": 31037, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "sugar", + "butter", + "salt", + "eggs", + "granulated sugar", + "vanilla", + "fudge brownie mix", + "melted butter", + "water", + "light corn syrup", + "cream cheese", + "pecan halves", + "large eggs", + "vanilla extract" + ] + }, + { + "id": 28880, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "coarse salt", + "firm tofu", + "carrots", + "rice noodles", + "cilantro leaves", + "scallions", + "large eggs", + "salted roast peanuts", + "dark brown sugar", + "fresh lime juice", + "vegetable oil", + "chili sauce", + "garlic cloves" + ] + }, + { + "id": 26250, + "cuisine": "moroccan", + "ingredients": [ + "angel hair", + "olive oil", + "chopped onion", + "red bell pepper", + "tomatoes", + "water", + "salt", + "fresh lemon juice", + "tomato paste", + "black pepper", + "ground red pepper", + "brown lentils", + "ground cinnamon", + "fresh cilantro", + "chickpeas", + "leg of lamb" + ] + }, + { + "id": 1732, + "cuisine": "spanish", + "ingredients": [ + "green onions", + "freshly ground pepper", + "butter", + "olive oil", + "salt", + "russet potatoes", + "garlic cloves" + ] + }, + { + "id": 24049, + "cuisine": "italian", + "ingredients": [ + "roasted red peppers", + "sandwich wraps", + "mayonaise", + "salt", + "romaine lettuce", + "hard salami", + "italian salad dressing", + "pepper", + "provolone cheese" + ] + }, + { + "id": 6403, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "fresh ginger root", + "garlic", + "water", + "egg whites", + "peanut oil", + "orange bell pepper", + "cutlet", + "ginger root", + "sugar pea", + "Sriracha", + "rice vinegar" + ] + }, + { + "id": 960, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "chopped onion", + "large garlic cloves", + "chopped cilantro fresh", + "fillet red snapper", + "stewed tomatoes", + "lime wedges", + "green chilies" + ] + }, + { + "id": 628, + "cuisine": "japanese", + "ingredients": [ + "tonic water", + "gin", + "Chartreuse Liqueur", + "aloe juice", + "shiso", + "sliced cucumber" + ] + }, + { + "id": 27468, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "bell pepper", + "chopped cilantro fresh", + "part-skim mozzarella cheese", + "frozen corn", + "lime juice", + "dark leafy greens", + "no-salt-added diced tomatoes", + "salt free chili powder", + "corn tortillas" + ] + }, + { + "id": 8224, + "cuisine": "italian", + "ingredients": [ + "nutmeg", + "curly parsley", + "dried basil", + "dry red wine", + "ground beef", + "light brown sugar", + "tomatoes", + "black pepper", + "parmesan cheese", + "garlic", + "italian seasoning", + "tomato paste", + "tomato sauce", + "spanish onion", + "ricotta cheese", + "sweet italian sausage", + "fennel seeds", + "eggs", + "mozzarella cheese", + "lasagna noodles", + "salt" + ] + }, + { + "id": 35083, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "dried pinto beans", + "beer", + "chicken stock", + "bay leaves", + "salt", + "jalapeno chilies", + "garlic", + "dried oregano", + "ground black pepper", + "stewed tomatoes", + "chopped cilantro fresh" + ] + }, + { + "id": 33029, + "cuisine": "french", + "ingredients": [ + "navel oranges", + "large eggs", + "sugar", + "whole milk" + ] + }, + { + "id": 33278, + "cuisine": "indian", + "ingredients": [ + "ground cloves", + "herbs", + "cinnamon", + "sauce", + "tofu sour cream", + "tofu", + "garam masala", + "chili powder", + "cardamom seeds", + "garlic cloves", + "ginger paste", + "almond butter", + "meat", + "cilantro", + "oil", + "onions", + "min", + "beef", + "spices", + "salt", + "almond milk", + "ground cumin" + ] + }, + { + "id": 29182, + "cuisine": "italian", + "ingredients": [ + "capocollo", + "sliced ham", + "hot pepper rings", + "Pillsbury™ Refrigerated Crescent Dinner Rolls", + "roasted red peppers", + "spicy salami", + "provolone cheese", + "capocollo", + "hot pepper", + "refrigerated crescent rolls", + "sliced ham", + "roasted red peppers", + "provolone cheese", + "salami" + ] + }, + { + "id": 41782, + "cuisine": "french", + "ingredients": [ + "olive oil", + "lamb shoulder", + "bay leaf", + "tomatoes", + "butter", + "carrots", + "fennel bulb", + "purple onion", + "water", + "garlic", + "thyme sprigs" + ] + }, + { + "id": 40277, + "cuisine": "indian", + "ingredients": [ + "steamed white rice", + "salt", + "ground turmeric", + "chicken broth", + "white wine vinegar", + "freshly ground pepper", + "ground cumin", + "boneless pork shoulder", + "paprika", + "yellow onion", + "canola oil", + "fresh ginger", + "curry", + "garlic cloves" + ] + }, + { + "id": 44317, + "cuisine": "italian", + "ingredients": [ + "prosecco", + "fresh lemon juice", + "water", + "sugar", + "strawberries" + ] + }, + { + "id": 28875, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "salt", + "crushed tomatoes", + "dried pinto beans", + "onions", + "ground cinnamon", + "corn kernels", + "garlic", + "ground cumin", + "pepper", + "garbanzo beans", + "cayenne pepper" + ] + }, + { + "id": 22869, + "cuisine": "filipino", + "ingredients": [ + "salt", + "milk", + "eggs", + "rice flour", + "vegetable oil" + ] + }, + { + "id": 4494, + "cuisine": "thai", + "ingredients": [ + "ketchup", + "boneless chicken", + "Thai fish sauce", + "rice stick noodles", + "large eggs", + "unsalted dry roast peanuts", + "medium shrimp", + "minced garlic", + "sprouts", + "chopped cilantro", + "sugar", + "vegetable oil", + "crushed red pepper", + "sliced green onions" + ] + }, + { + "id": 38828, + "cuisine": "southern_us", + "ingredients": [ + "ground cloves", + "salt", + "blackberries", + "shortening", + "butter cooking spray", + "orange juice", + "sugar", + "ice water", + "white sugar", + "ground cinnamon", + "ground nutmeg", + "all-purpose flour" + ] + }, + { + "id": 39844, + "cuisine": "cajun_creole", + "ingredients": [ + "melted butter", + "creole seasoning", + "fish fillets" + ] + }, + { + "id": 7107, + "cuisine": "mexican", + "ingredients": [ + "melted butter", + "large eggs", + "salt", + "sugar", + "chili powder", + "green chile", + "baking powder", + "all-purpose flour", + "yellow corn meal", + "jack cheese", + "buttermilk" + ] + }, + { + "id": 19167, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "granulated sugar", + "eggs", + "instant espresso powder", + "almonds", + "cocoa powder", + "raspberry jam", + "unsalted butter" + ] + }, + { + "id": 29854, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "scallions", + "corn kernels", + "salt", + "milk", + "large eggs", + "mascarpone", + "all-purpose flour" + ] + }, + { + "id": 35572, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "carrots", + "chicken thighs", + "curry powder", + "coconut milk", + "fresh pineapple", + "chicken stock", + "chopped green bell pepper", + "curry paste", + "brown sugar", + "corn starch", + "frozen peas" + ] + }, + { + "id": 596, + "cuisine": "indian", + "ingredients": [ + "fat free milk", + "butter", + "corn starch", + "fat free less sodium chicken broth", + "ground red pepper", + "garlic cloves", + "finely chopped onion", + "salt", + "turkey breast", + "curry powder", + "golden delicious apples", + "fresh lemon juice" + ] + }, + { + "id": 31327, + "cuisine": "french", + "ingredients": [ + "zucchini", + "salt", + "chicken broth", + "extra-virgin olive oil", + "ground white pepper", + "leeks", + "sliced ham", + "milk", + "cheese", + "onions" + ] + }, + { + "id": 36972, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "green beans", + "olive oil", + "whole kernel corn, drain", + "butter", + "vegetables", + "fresh mushrooms" + ] + }, + { + "id": 27342, + "cuisine": "french", + "ingredients": [ + "fresh rosemary", + "unsalted butter", + "sugar", + "all-purpose flour", + "eggs", + "sea salt", + "cold water", + "water", + "tart apples" + ] + }, + { + "id": 35906, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "corn oil", + "all-purpose flour", + "cream style corn", + "buttermilk", + "onions", + "baking soda", + "baking powder", + "cornmeal", + "eggs", + "jalapeno chilies", + "salt" + ] + }, + { + "id": 32633, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "warm water", + "salt", + "sugar", + "cake flour", + "active dry yeast", + "all-purpose flour" + ] + }, + { + "id": 30569, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "plum tomatoes", + "rice", + "black beans", + "chorizo sausage" + ] + }, + { + "id": 31274, + "cuisine": "italian", + "ingredients": [ + "honey", + "extra-virgin olive oil", + "limoncello", + "large eggs", + "all-purpose flour", + "large egg yolks", + "salt", + "orange", + "lemon", + "confectioners sugar" + ] + }, + { + "id": 36546, + "cuisine": "mexican", + "ingredients": [ + "ground cinnamon", + "vanilla extract", + "pecans", + "powdered sugar", + "all-purpose flour", + "butter" + ] + }, + { + "id": 715, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "chinkiang vinegar", + "yardlong beans", + "chili bean sauce", + "soy sauce", + "garlic", + "minced pork", + "mustard", + "szechwan peppercorns", + "peanut oil" + ] + }, + { + "id": 17417, + "cuisine": "southern_us", + "ingredients": [ + "apple cider vinegar", + "dijon mustard", + "freshly ground pepper", + "bourbon whiskey", + "canola oil", + "light brown sugar", + "salt" + ] + }, + { + "id": 33573, + "cuisine": "irish", + "ingredients": [ + "soy sauce", + "tomatoes", + "potatoes", + "eggs", + "green onions", + "chicken broth", + "fresh ginger root" + ] + }, + { + "id": 41464, + "cuisine": "italian", + "ingredients": [ + "pasta", + "Alfredo sauce", + "large eggs", + "sour cream", + "mozzarella cheese", + "ricotta cheese", + "grated parmesan cheese", + "fresh parsley" + ] + }, + { + "id": 41960, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "salt", + "white pepper", + "onion powder", + "dried oregano", + "black pepper", + "garlic powder", + "cayenne pepper", + "dried basil", + "paprika" + ] + }, + { + "id": 21383, + "cuisine": "cajun_creole", + "ingredients": [ + "white wine", + "garlic", + "onions", + "pepper", + "meat bones", + "chorizo sausage", + "chopped tomatoes", + "hot smoked paprika", + "stock", + "fresh thyme", + "celery" + ] + }, + { + "id": 15248, + "cuisine": "vietnamese", + "ingredients": [ + "oil", + "garlic", + "tofu", + "bird chile", + "scallions" + ] + }, + { + "id": 21088, + "cuisine": "thai", + "ingredients": [ + "minced garlic", + "dark sesame oil", + "Boston lettuce", + "flour tortillas", + "fresh lime juice", + "sugar", + "beef deli roast slice thinli", + "chopped fresh mint", + "fish sauce", + "fresh ginger", + "carrots" + ] + }, + { + "id": 28445, + "cuisine": "greek", + "ingredients": [ + "eggplant", + "lemon", + "juice", + "kosher salt", + "ground black pepper", + "fresh oregano", + "fresh mint", + "fresh dill", + "feta cheese", + "extra-virgin olive oil", + "greek yogurt", + "minced garlic", + "roma tomatoes", + "english cucumber" + ] + }, + { + "id": 25585, + "cuisine": "french", + "ingredients": [ + "salt", + "unsalted butter", + "large eggs", + "ground black pepper" + ] + }, + { + "id": 38405, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "ginger", + "oil", + "glutinous rice", + "vinegar", + "salt", + "sugar", + "water", + "thai chile", + "soy sauce", + "shallots", + "firm tofu" + ] + }, + { + "id": 35404, + "cuisine": "cajun_creole", + "ingredients": [ + "cayenne", + "lemon", + "mayonaise", + "shell-on shrimp", + "garlic cloves", + "ketchup", + "cajun seasoning", + "boiling potatoes", + "horseradish", + "bay leaves", + "ear of corn" + ] + }, + { + "id": 2827, + "cuisine": "french", + "ingredients": [ + "nutmeg", + "flour", + "cayenne pepper", + "grated parmesan cheese", + "butter", + "milk", + "egg yolks", + "grated Gruyère cheese", + "egg whites", + "salt" + ] + }, + { + "id": 15042, + "cuisine": "italian", + "ingredients": [ + "ground sirloin", + "brown sugar", + "spaghetti", + "olive oil", + "onions" + ] + }, + { + "id": 5107, + "cuisine": "italian", + "ingredients": [ + "dry white wine", + "salt", + "carrots", + "minced garlic", + "butter", + "grated lemon zest", + "onions", + "pepper", + "crushed garlic", + "all-purpose flour", + "fresh parsley", + "beef stock", + "diced tomatoes", + "veal shanks" + ] + }, + { + "id": 23635, + "cuisine": "italian", + "ingredients": [ + "beef bouillon", + "paprika", + "white sugar", + "salt and ground black pepper", + "vegetable oil", + "all-purpose flour", + "dried oregano", + "dried thyme", + "sherry", + "beef stew meat", + "boiling water", + "garlic powder", + "condensed tomato soup", + "onions", + "dried rosemary" + ] + }, + { + "id": 18225, + "cuisine": "jamaican", + "ingredients": [ + "ground cinnamon", + "large eggs", + "raisins", + "grated coconut", + "baking powder", + "grated nutmeg", + "water", + "butter", + "brown sugar", + "flour", + "salt" + ] + }, + { + "id": 13633, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "salt", + "tomatoes", + "large eggs", + "red bell pepper", + "olive oil", + "garlic cloves", + "fresh basil", + "whole milk", + "flat leaf parsley" + ] + }, + { + "id": 34139, + "cuisine": "mexican", + "ingredients": [ + "beef shank", + "carrots", + "bouillon", + "lime wedges", + "onions", + "green cabbage", + "zucchini", + "celery", + "water", + "garlic cloves", + "chopped cilantro fresh" + ] + }, + { + "id": 40351, + "cuisine": "indian", + "ingredients": [ + "water", + "salt", + "lemon juice", + "fresh tomatoes", + "mung beans", + "garlic cloves", + "fresh ginger", + "cayenne pepper", + "ground turmeric", + "black pepper", + "extra-virgin olive oil", + "black mustard seeds" + ] + }, + { + "id": 15997, + "cuisine": "mexican", + "ingredients": [ + "poblano chiles", + "mexican chorizo", + "monterey jack", + "corn tortillas", + "red bell pepper" + ] + }, + { + "id": 32850, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "peach nectar", + "orange liqueur", + "orange", + "dry red wine", + "lime", + "orange juice", + "granny smith apples", + "lemon", + "club soda" + ] + }, + { + "id": 27156, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "tamarind", + "rice flour", + "ground cumin", + "kosher salt", + "vegetable oil", + "ground turmeric", + "curry leaves", + "chili powder", + "coriander", + "water", + "garlic", + "fish" + ] + }, + { + "id": 26110, + "cuisine": "filipino", + "ingredients": [ + "black pepper", + "chicken sausage", + "jalapeno chilies", + "garlic", + "shrimp", + "ground cumin", + "turbinado", + "white onion", + "orange bell pepper", + "pineapple", + "green pepper", + "boiling water", + "lime rind", + "lime", + "zucchini", + "extra-virgin olive oil", + "pearl couscous", + "saffron", + "white wine", + "olive oil", + "red pepper", + "salt", + "smoked paprika" + ] + }, + { + "id": 36025, + "cuisine": "italian", + "ingredients": [ + "radishes", + "olive oil", + "fresh lemon juice", + "rosemary sprigs", + "whole milk", + "unsalted butter", + "chicken livers" + ] + }, + { + "id": 31945, + "cuisine": "southern_us", + "ingredients": [ + "Velveeta", + "large eggs", + "shredded sharp cheddar cheese", + "shredded mild cheddar cheese", + "vegetable oil", + "muenster cheese", + "ground black pepper", + "butter", + "monterey jack", + "seasoning salt", + "half & half", + "elbow macaroni" + ] + }, + { + "id": 33844, + "cuisine": "italian", + "ingredients": [ + "bacon, crisp-cooked and crumbled", + "boneless skinless chicken breast halves", + "Bertolli® Alfredo Sauce", + "green peas", + "dry white wine", + "Bertolli® Classico Olive Oil", + "onions" + ] + }, + { + "id": 38635, + "cuisine": "italian", + "ingredients": [ + "gold potatoes", + "salt", + "lemon juice", + "water", + "paprika", + "chopped onion", + "coconut milk", + "macaroni", + "cayenne pepper", + "carrots", + "garlic powder", + "raw cashews", + "nutritional yeast flakes" + ] + }, + { + "id": 47790, + "cuisine": "indian", + "ingredients": [ + "ground coriander", + "pepper", + "ground cumin", + "salt" + ] + }, + { + "id": 45295, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "olive oil", + "pepper", + "salt", + "fresh basil", + "garlic", + "water", + "white sugar" + ] + }, + { + "id": 33188, + "cuisine": "moroccan", + "ingredients": [ + "feta cheese", + "fresh mint", + "cherry tomatoes", + "white wine vinegar", + "couscous", + "water", + "large garlic cloves", + "lentilles du puy", + "olive oil", + "salt", + "arugula" + ] + }, + { + "id": 20674, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "black pepper", + "vegetable oil", + "cherry tomatoes", + "watercress", + "cotija", + "sherry vinegar", + "corn tortillas" + ] + }, + { + "id": 505, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "spring onions", + "cake flour", + "sugar", + "cooking oil", + "cornflour", + "ginger root", + "dough", + "water", + "baking powder", + "barbecued pork", + "plain flour", + "instant yeast", + "sesame oil", + "oyster sauce" + ] + }, + { + "id": 22779, + "cuisine": "brazilian", + "ingredients": [ + "eggs", + "passion fruit juice", + "water", + "white sugar", + "syrup", + "condensed milk", + "passion fruit" + ] + }, + { + "id": 6609, + "cuisine": "mexican", + "ingredients": [ + "grate lime peel", + "triple sec", + "white sugar", + "gold tequila", + "fresh lime juice", + "frozen limeade concentrate", + "ice" + ] + }, + { + "id": 14668, + "cuisine": "mexican", + "ingredients": [ + "canned chicken broth", + "flour tortillas", + "salsa", + "ground cumin", + "avocado", + "garlic powder", + "paprika", + "onions", + "tomatoes", + "boneless chicken breast halves", + "yellow bell pepper", + "dried oregano", + "dried thyme", + "vegetable oil", + "cayenne pepper" + ] + }, + { + "id": 47119, + "cuisine": "chinese", + "ingredients": [ + "pepper", + "ginger", + "maple syrup", + "onions", + "celery ribs", + "sesame oil", + "tamari soy sauce", + "chow mein noodles", + "water", + "garlic", + "rice vinegar", + "green cabbage", + "tempeh", + "salt", + "carrots" + ] + }, + { + "id": 37852, + "cuisine": "chinese", + "ingredients": [ + "water", + "garlic", + "noodles", + "roasted cashews", + "sesame oil", + "oyster sauce", + "broccoli florets", + "firm tofu", + "canola oil", + "soy sauce", + "ginger", + "carrots" + ] + }, + { + "id": 17882, + "cuisine": "french", + "ingredients": [ + "cooking spray", + "salt", + "ground nutmeg", + "2% reduced-fat milk", + "ham", + "haricots verts", + "bay leaves", + "garlic cloves", + "ground black pepper", + "gruyere cheese", + "small red potato" + ] + }, + { + "id": 1244, + "cuisine": "indian", + "ingredients": [ + "salt", + "pitted date", + "hot water", + "plain low-fat yogurt", + "tamarind paste", + "palm sugar", + "cabbage" + ] + }, + { + "id": 787, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "olive oil", + "grated lemon zest", + "boiling water", + "vegetable oil cooking spray", + "1% low-fat milk", + "cornmeal", + "eggs", + "raisins", + "rome apples", + "pears", + "white bread", + "sugar", + "all-purpose flour", + "seedless red grapes" + ] + }, + { + "id": 31247, + "cuisine": "french", + "ingredients": [ + "ground cinnamon", + "butter", + "ground cloves", + "confectioners sugar", + "eggs", + "whole wheat bread", + "ground ginger", + "ground nutmeg" + ] + }, + { + "id": 1007, + "cuisine": "greek", + "ingredients": [ + "eggs", + "salt and ground black pepper", + "whole peeled tomatoes", + "garlic", + "fresh parsley", + "olive oil", + "ground black pepper", + "potatoes", + "lentils", + "dried oregano", + "milk", + "ground nutmeg", + "grated parmesan cheese", + "all-purpose flour", + "onions", + "white vinegar", + "eggplant", + "zucchini", + "butter", + "feta cheese crumbles" + ] + }, + { + "id": 36908, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "butter", + "quickcooking grits", + "salt", + "jalapeno chilies", + "condensed chicken broth", + "water", + "process cheese spread" + ] + }, + { + "id": 26901, + "cuisine": "vietnamese", + "ingredients": [ + "chicken broth", + "dry white wine", + "corn starch", + "plum tomatoes", + "tofu", + "water", + "oil", + "white sugar", + "pepper", + "salt", + "bamboo shoots", + "soy sauce", + "fresh green bean", + "onions" + ] + }, + { + "id": 47498, + "cuisine": "thai", + "ingredients": [ + "lime", + "shallots", + "cilantro leaves", + "store bought low sodium chicken stock", + "short-grain rice", + "garlic", + "scallions", + "lemongrass", + "bawang goreng", + "salt", + "juice", + "fish sauce", + "chili", + "ground pork", + "firm tofu" + ] + }, + { + "id": 25543, + "cuisine": "italian", + "ingredients": [ + "warm water", + "all-purpose flour", + "olive oil", + "sugar", + "salt", + "active dry yeast", + "wheat flour" + ] + }, + { + "id": 47421, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "dry mustard", + "zesty italian dressing", + "baking soda", + "beef broth", + "collard greens", + "bacon" + ] + }, + { + "id": 16492, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "butter", + "herb seasoned stuffing", + "cream of chicken soup", + "carrots", + "yellow squash", + "salt", + "water chestnuts, drained and chopped", + "zucchini", + "sour cream" + ] + }, + { + "id": 46788, + "cuisine": "mexican", + "ingredients": [ + "coriander seeds", + "poblano chiles", + "boneless skinless chicken breasts", + "fresh lime juice", + "olive oil", + "purple onion", + "ground cumin", + "yellow bell pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 44211, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "marinara sauce", + "rigatoni", + "parmigiano reggiano cheese", + "shredded mozzarella cheese", + "coarse salt" + ] + }, + { + "id": 44170, + "cuisine": "french", + "ingredients": [ + "pepper", + "leeks", + "extra-virgin olive oil", + "broccoli", + "thyme", + "broth", + "celery ribs", + "kale", + "russet potatoes", + "shredded parmesan cheese", + "garlic cloves", + "fresh parsley", + "whole wheat rotini", + "zucchini", + "butter", + "white beans", + "carrots", + "onions", + "water", + "broccoli stems", + "salt", + "toasted walnuts", + "green beans", + "oregano" + ] + }, + { + "id": 34080, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "dried chickpeas", + "fresh lemon juice", + "plain yogurt", + "cumin seed", + "chopped fresh mint", + "aleppo pepper", + "peanut oil", + "mustard seeds", + "salt", + "scallions", + "chopped cilantro fresh" + ] + }, + { + "id": 12592, + "cuisine": "italian", + "ingredients": [ + "dried thyme", + "bacon", + "onions", + "grated parmesan cheese", + "salt", + "red pepper flakes", + "fresh parsley", + "ground black pepper", + "linguine" + ] + }, + { + "id": 463, + "cuisine": "mexican", + "ingredients": [ + "pickling spices", + "jalape", + "red bell pepper", + "chicken broth", + "yellow bell pepper", + "tortilla chips", + "ground cumin", + "olive oil", + "cilantro leaves", + "onions", + "large garlic cloves", + "rice vinegar", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 44117, + "cuisine": "mexican", + "ingredients": [ + "low sodium vegetable stock", + "sweet onion", + "butternut squash", + "sage", + "nutmeg", + "pepper", + "unsalted butter", + "salt", + "fontina cheese", + "beans", + "olive oil", + "whole wheat tortillas", + "brown butter", + "milk", + "flour", + "garlic cloves" + ] + }, + { + "id": 6201, + "cuisine": "indian", + "ingredients": [ + "curry leaves", + "coriander seeds", + "bay leaves", + "fenugreek seeds", + "cinnamon sticks", + "ground ginger", + "tumeric", + "mint leaves", + "vegetable oil", + "black mustard seeds", + "fennel seeds", + "black peppercorns", + "vinegar", + "chili powder", + "cumin seed", + "clove", + "fenugreek leaves", + "garlic powder", + "seeds", + "cardamom pods", + "citric acid" + ] + }, + { + "id": 39374, + "cuisine": "chinese", + "ingredients": [ + "light soy sauce", + "shrimp", + "tofu", + "garlic", + "hoisin sauce", + "corn starch", + "green bell pepper", + "oyster sauce" + ] + }, + { + "id": 46595, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "sugar", + "chili powder", + "grated lemon zest", + "shrimp", + "cooked ham", + "unsalted butter", + "salt", + "long-grain rice", + "tomatoes", + "dried basil", + "vegetable oil", + "sweet italian sausage", + "red bell pepper", + "green bell pepper", + "dried thyme", + "garlic", + "freshly ground pepper", + "onions" + ] + }, + { + "id": 13245, + "cuisine": "indian", + "ingredients": [ + "sea scallops", + "scallions", + "water", + "vegetable oil", + "unsalted butter", + "fresh lime juice", + "curry powder", + "peas" + ] + }, + { + "id": 20782, + "cuisine": "italian", + "ingredients": [ + "sugar", + "spaghetti", + "hard shelled clams", + "large garlic cloves", + "tomatoes", + "olive oil", + "hot red pepper flakes", + "juice" + ] + }, + { + "id": 25467, + "cuisine": "indian", + "ingredients": [ + "stewed tomatoes", + "onions", + "chickpeas", + "garlic", + "cumin", + "olive oil", + "couscous" + ] + }, + { + "id": 17361, + "cuisine": "mexican", + "ingredients": [ + "ground chuck", + "shredded lettuce", + "sour cream", + "tomatoes", + "queso asadero", + "garlic", + "onions", + "garlic powder", + "paprika", + "corn tortillas", + "green bell pepper", + "chili powder", + "salt", + "cumin" + ] + }, + { + "id": 46080, + "cuisine": "jamaican", + "ingredients": [ + "jamaican jerk season", + "purple onion", + "yuca", + "sweet potatoes or yams", + "Country Crock® Spread", + "jicama", + "hellmann' or best food light mayonnais", + "lime juice", + "garlic" + ] + }, + { + "id": 36548, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "peeled fresh ginger", + "purple onion", + "noodles", + "green bell pepper", + "zucchini", + "vegetable oil", + "carrots", + "low sodium soy sauce", + "water", + "green onions", + "dark sesame oil", + "sake", + "sweet potatoes", + "portabello mushroom", + "corn starch" + ] + }, + { + "id": 34496, + "cuisine": "chinese", + "ingredients": [ + "dark soy sauce", + "kosher salt", + "chile de arbol", + "yellow onion", + "sugar", + "egg noodles", + "garlic", + "greens", + "chinese rice wine", + "beef shank", + "star anise", + "chinese black vinegar", + "black peppercorns", + "baby bok choy", + "ginger", + "meat bones", + "plum tomatoes" + ] + }, + { + "id": 13109, + "cuisine": "italian", + "ingredients": [ + "butter", + "fresh parsley", + "grated parmesan cheese", + "salt", + "fettucine", + "garlic", + "half & half", + "cooked shrimp" + ] + }, + { + "id": 10044, + "cuisine": "indian", + "ingredients": [ + "sugar", + "salt", + "melted butter", + "olive oil", + "plain flour", + "milk", + "coriander", + "eggs", + "baking powder" + ] + }, + { + "id": 26054, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "green pepper", + "tomatoes", + "lean ground beef", + "onions", + "pizza sauce", + "jumbo shells", + "pepperoni slices", + "garlic", + "oregano" + ] + }, + { + "id": 25286, + "cuisine": "chinese", + "ingredients": [ + "asparagus", + "soy sauce", + "dark sesame oil", + "chili oil", + "sesame seeds" + ] + }, + { + "id": 33517, + "cuisine": "korean", + "ingredients": [ + "low sodium soy sauce", + "peeled fresh ginger", + "garlic cloves", + "cooking spray", + "dark sesame oil", + "pork tenderloin", + "rice vinegar", + "sugar", + "crushed red pepper" + ] + }, + { + "id": 16407, + "cuisine": "spanish", + "ingredients": [ + "tomato paste", + "red wine vinegar", + "cayenne pepper", + "red bell pepper", + "diced onions", + "chives", + "salt", + "cucumber", + "minced garlic", + "lemon", + "fresh herbs", + "plum tomatoes", + "tomato juice", + "extra-virgin olive oil", + "croutons" + ] + }, + { + "id": 45717, + "cuisine": "italian", + "ingredients": [ + "ground cloves", + "pork shoulder butt", + "onions", + "coriander seeds", + "extra-virgin olive oil", + "unsweetened cocoa powder", + "water", + "sea salt", + "white peppercorns", + "ground cinnamon", + "ground nutmeg", + "chopped fresh sage" + ] + }, + { + "id": 36331, + "cuisine": "jamaican", + "ingredients": [ + "unsalted butter", + "yeast", + "warm water", + "salt", + "eggs", + "granulated sugar", + "milk", + "all-purpose flour" + ] + }, + { + "id": 40593, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "asian pear", + "sesame oil", + "toasted sesame seeds", + "butter lettuce", + "vegetable oil spray", + "jalapeno chilies", + "garlic cloves", + "sugar", + "ground black pepper", + "green onions", + "butterflied leg of lamb", + "fresh ginger", + "mirin", + "kochujang" + ] + }, + { + "id": 9160, + "cuisine": "thai", + "ingredients": [ + "black beans", + "coconut milk", + "palm sugar", + "water", + "salt" + ] + }, + { + "id": 1564, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "lemon", + "chickpeas", + "fresh parsley", + "eggs", + "cinnamon", + "canned tomatoes", + "lentils", + "noodles", + "fresh cilantro", + "ginger", + "lamb", + "onions", + "tumeric", + "butter", + "salt", + "celery" + ] + }, + { + "id": 2498, + "cuisine": "indian", + "ingredients": [ + "tumeric", + "onion powder", + "garlic", + "garam masala", + "paprika", + "lemon juice", + "black pepper", + "chicken drumsticks", + "salt", + "red chili powder", + "yoghurt", + "ginger", + "cumin" + ] + }, + { + "id": 44047, + "cuisine": "thai", + "ingredients": [ + "red chili peppers", + "pork tenderloin", + "scallions", + "chopped cilantro fresh", + "granulated sugar", + "vegetable oil", + "Thai fish sauce", + "jasmine rice", + "shallots", + "garlic cloves", + "toasted peanuts", + "large eggs", + "cilantro root", + "cucumber" + ] + }, + { + "id": 31149, + "cuisine": "italian", + "ingredients": [ + "ground cloves", + "ricotta cheese", + "all-purpose flour", + "nutmeg", + "pumpkin", + "butter", + "parmesan cheese", + "cinnamon", + "allspice", + "eggs", + "dried sage", + "salt" + ] + }, + { + "id": 7115, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "part-skim mozzarella cheese", + "salt", + "bread ciabatta", + "balsamic vinegar", + "cucumber", + "pitted kalamata olives", + "ground black pepper", + "garlic cloves", + "tomatoes", + "olive oil", + "crushed red pepper" + ] + }, + { + "id": 3004, + "cuisine": "indian", + "ingredients": [ + "coriander seeds", + "salt", + "ghee", + "saffron threads", + "whole milk yoghurt", + "cumin seed", + "milk", + "garlic", + "fresh lemon juice", + "fresh ginger root", + "cayenne pepper", + "chicken thighs" + ] + }, + { + "id": 29296, + "cuisine": "mexican", + "ingredients": [ + "white vinegar", + "habanero pepper", + "diced tomatoes", + "cilantro leaves", + "lime juice", + "serrano peppers", + "garlic", + "onions", + "ground black pepper", + "green onions", + "salt", + "tomatoes", + "jalapeno chilies", + "stewed tomatoes", + "carrots" + ] + }, + { + "id": 13265, + "cuisine": "indian", + "ingredients": [ + "mild curry powder", + "silver dragees", + "sweetened coconut flakes", + "confectioners sugar", + "eggs", + "white cake mix", + "vegetable oil", + "fresh lemon juice", + "coconut extract", + "unsalted butter", + "cream cheese", + "white sugar", + "fresh basil", + "water", + "lemon", + "heavy whipping cream" + ] + }, + { + "id": 16222, + "cuisine": "cajun_creole", + "ingredients": [ + "tasso", + "andouille sausage", + "file powder", + "all-purpose flour", + "cooked rice", + "black pepper", + "vegetable oil", + "onions", + "celery ribs", + "green bell pepper", + "dried thyme", + "large garlic cloves", + "sliced green onions", + "chicken broth", + "boneless chicken thighs", + "ground red pepper", + "fresh parsley" + ] + }, + { + "id": 14361, + "cuisine": "mexican", + "ingredients": [ + "cooking spray", + "salsa", + "shredded cheddar cheese", + "garlic", + "boneless skinless chicken breasts", + "ground cumin", + "ground black pepper", + "salt" + ] + }, + { + "id": 8989, + "cuisine": "southern_us", + "ingredients": [ + "ground red pepper", + "fresh lemon juice", + "dijon mustard", + "paprika", + "mayonaise", + "butter", + "ground white pepper", + "large eggs", + "salt" + ] + }, + { + "id": 18194, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "white cornmeal", + "sugar", + "salt", + "milk", + "dry bread crumbs", + "large eggs" + ] + }, + { + "id": 40942, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "flour tortillas", + "garlic cloves", + "onions", + "shredded cheddar cheese", + "shredded lettuce", + "ripe olives", + "shredded Monterey Jack cheese", + "pepper", + "chili powder", + "sour cream", + "dried oregano", + "water", + "salt", + "fresh parsley", + "ground cumin" + ] + }, + { + "id": 38483, + "cuisine": "mexican", + "ingredients": [ + "jack cheese", + "olive oil", + "jalapeno chilies", + "chili powder", + "salt", + "sauce", + "sour cream", + "avocado", + "lime juice", + "unsalted butter", + "chips", + "cilantro", + "hot sauce", + "smoked paprika", + "ground cumin", + "pepper", + "garlic powder", + "low sodium chicken broth", + "onion powder", + "all-purpose flour", + "ear of corn", + "squash", + "tomatoes", + "lime", + "flour tortillas", + "chicken breasts", + "shredded sharp cheddar cheese", + "cayenne pepper", + "red bell pepper" + ] + }, + { + "id": 18062, + "cuisine": "indian", + "ingredients": [ + "tomato paste", + "boneless skinless chicken breasts", + "crushed red pepper", + "carrots", + "ground ginger", + "chopped green bell pepper", + "chopped celery", + "chopped onion", + "curry powder", + "vegetable oil", + "all-purpose flour", + "fresh parsley", + "fat free less sodium chicken broth", + "mango chutney", + "salt", + "Braeburn Apple" + ] + }, + { + "id": 7170, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "vanilla wafers", + "potatoes", + "white sugar", + "peaches", + "all-purpose flour", + "butter" + ] + }, + { + "id": 22881, + "cuisine": "korean", + "ingredients": [ + "food colouring", + "red beans", + "sweet rice flour", + "rice syrup", + "salt", + "sugar", + "vanilla extract", + "starch", + "green tea powder" + ] + }, + { + "id": 24201, + "cuisine": "italian", + "ingredients": [ + "pepper", + "baking potatoes", + "fresh mushrooms", + "onions", + "shredded swiss cheese", + "black olives", + "red bell pepper", + "large eggs", + "butter", + "garlic cloves", + "vegetable oil", + "salt", + "sun-dried tomatoes in oil" + ] + }, + { + "id": 9036, + "cuisine": "british", + "ingredients": [ + "eggs", + "sausages", + "salt", + "bacon drippings", + "all-purpose flour", + "milk" + ] + }, + { + "id": 47167, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "broccoli florets", + "shrimp", + "brown sugar", + "green pepper", + "red bell pepper", + "cooked rice", + "vegetable oil", + "corn starch", + "soy sauce", + "orange juice" + ] + }, + { + "id": 6505, + "cuisine": "french", + "ingredients": [ + "all-purpose flour", + "large eggs", + "butter", + "sugar", + "lemon juice" + ] + }, + { + "id": 45393, + "cuisine": "chinese", + "ingredients": [ + "crushed red pepper", + "toasted sesame seeds", + "reduced sodium soy sauce", + "scallions", + "canola oil", + "rice vinegar", + "spaghetti", + "sesame oil", + "red bell pepper" + ] + }, + { + "id": 25733, + "cuisine": "french", + "ingredients": [ + "active dry yeast", + "crème fraîche", + "warm water", + "bacon slices", + "large curd cottage cheese", + "white onion", + "fine sea salt", + "sour cream", + "ground black pepper", + "all-purpose flour" + ] + }, + { + "id": 45560, + "cuisine": "italian", + "ingredients": [ + "lean ground beef", + "mozzarella cheese", + "stuffing mix", + "pasta sauce", + "worcestershire sauce", + "water", + "italian seasoning" + ] + }, + { + "id": 27593, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "bay leaves", + "garlic", + "celery", + "water", + "ground thyme", + "cayenne pepper", + "Honeysuckle White® Hot Italian Turkey Sausage Links", + "red beans", + "salt", + "onions", + "green bell pepper", + "olive oil", + "instant white rice", + "creole seasoning" + ] + }, + { + "id": 40313, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "honey", + "baby arugula", + "blood orange", + "sherry vinegar", + "extra-virgin olive oil", + "hazelnuts", + "radicchio", + "shallots", + "salad greens", + "fresh thyme", + "salt" + ] + }, + { + "id": 3556, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "chocolate curls", + "chocolate extract", + "whipped cream", + "chocolate graham crackers", + "light brown sugar", + "butter", + "semi-sweet chocolate morsels", + "sugar", + "heavy cream", + "unsweetened cocoa powder" + ] + }, + { + "id": 45805, + "cuisine": "japanese", + "ingredients": [ + "sesame seeds", + "green onions", + "radish sprouts", + "salmon fillets", + "vegetable oil spray", + "relish", + "fresh ginger", + "mirin", + "rice vinegar", + "white miso", + "sesame oil", + "nori" + ] + }, + { + "id": 8458, + "cuisine": "korean", + "ingredients": [ + "ground black pepper", + "maple syrup", + "water", + "brown rice", + "corn starch", + "fresh ginger root", + "garlic", + "soy sauce", + "boneless skinless chicken breasts", + "dark sesame oil" + ] + }, + { + "id": 1153, + "cuisine": "greek", + "ingredients": [ + "sugar", + "salt", + "eggs", + "vegetable oil", + "creamy peanut butter", + "ground cinnamon", + "ground cloves", + "all-purpose flour", + "walnut halves", + "almond extract" + ] + }, + { + "id": 44390, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "medium dry sherry", + "corn starch", + "cold water", + "fresh coriander", + "salt", + "chuck", + "turnips", + "soy sauce", + "anise", + "cinnamon sticks", + "cooked rice", + "water", + "gingerroot" + ] + }, + { + "id": 18978, + "cuisine": "thai", + "ingredients": [ + "granny smith apples", + "sea salt", + "light brown sugar", + "shallots", + "fresh lime juice", + "granulated sugar", + "Thai fish sauce", + "smoked salmon", + "kumquats", + "serrano chile" + ] + }, + { + "id": 26799, + "cuisine": "southern_us", + "ingredients": [ + "parsley sprigs", + "shell-on shrimp", + "sweet corn", + "chicken stock", + "finely chopped onion", + "heavy cream", + "wild mushrooms", + "black peppercorns", + "bay leaves", + "crème fraîche", + "unsalted butter", + "chives", + "thyme" + ] + }, + { + "id": 29022, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "water", + "flour", + "lentils", + "chopped cilantro fresh", + "tomato purée", + "garbanzo beans", + "chopped celery", + "fresh parsley", + "tomato paste", + "olive oil", + "butter", + "cinnamon sticks", + "saffron", + "black pepper", + "diced lamb", + "salt", + "onions" + ] + }, + { + "id": 11740, + "cuisine": "mexican", + "ingredients": [ + "wasabi paste", + "shredded cabbage", + "light sour cream", + "flour tortillas", + "sashimi grade tuna", + "light soy sauce", + "green onions", + "ground black pepper", + "peanut oil" + ] + }, + { + "id": 15705, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "sugar", + "golden delicious apples", + "frozen pastry puff sheets", + "honey" + ] + }, + { + "id": 12078, + "cuisine": "italian", + "ingredients": [ + "pepper", + "sea salt", + "asparagus", + "salt", + "sourdough bread", + "extra-virgin olive oil", + "lemon", + "ricotta" + ] + }, + { + "id": 15060, + "cuisine": "italian", + "ingredients": [ + "warm water", + "extra-virgin olive oil", + "semi-sweet chocolate morsels", + "dry yeast", + "all-purpose flour", + "sugar", + "cooking spray", + "apricot preserves", + "bananas", + "salt" + ] + }, + { + "id": 19401, + "cuisine": "mexican", + "ingredients": [ + "boneless skinless chicken breasts", + "taco seasoning", + "diced tomatoes" + ] + }, + { + "id": 23861, + "cuisine": "spanish", + "ingredients": [ + "corn", + "eggs", + "low-fat milk", + "bread mix", + "jalapeno chilies", + "cheddar cheese" + ] + }, + { + "id": 22753, + "cuisine": "italian", + "ingredients": [ + "chili flakes", + "broccolini", + "florets", + "kosher salt", + "ground black pepper", + "fresh parsley leaves", + "sausage links", + "olive oil", + "garlic cloves", + "fresh rosemary", + "water", + "cannellini beans" + ] + }, + { + "id": 2322, + "cuisine": "korean", + "ingredients": [ + "fresh ginger", + "mirin", + "garlic", + "sirloin", + "granulated sugar", + "sesame oil", + "sesame seeds", + "green onions", + "soy sauce", + "asian pear", + "vegetable oil" + ] + }, + { + "id": 4201, + "cuisine": "moroccan", + "ingredients": [ + "ground cinnamon", + "sliced almonds", + "ground black pepper", + "paprika", + "oil", + "saffron", + "lamb stock", + "chopped tomatoes", + "dried apricot", + "lamb shoulder", + "onions", + "tumeric", + "olive oil", + "clear honey", + "garlic", + "flat leaf parsley", + "ground ginger", + "sultana", + "tomato juice", + "dates", + "cayenne pepper", + "coriander" + ] + }, + { + "id": 16879, + "cuisine": "italian", + "ingredients": [ + "prosciutto", + "salt", + "cream cheese, soften", + "artichok heart marin", + "freshly ground pepper", + "grated parmesan cheese", + "grated lemon zest", + "extra-virgin olive oil", + "blanched almonds" + ] + }, + { + "id": 13764, + "cuisine": "italian", + "ingredients": [ + "pitas", + "asiago", + "tomatoes", + "ground black pepper", + "garlic cloves", + "baby greens", + "oil", + "fresh basil", + "balsamic vinegar", + "cooked chicken breasts" + ] + }, + { + "id": 35872, + "cuisine": "indian", + "ingredients": [ + "lime juice", + "nonfat yogurt plain", + "ground cumin", + "minced garlic", + "extra-virgin olive oil", + "scallions", + "paprika", + "ground coriander", + "water", + "salt", + "ground turmeric" + ] + }, + { + "id": 12296, + "cuisine": "british", + "ingredients": [ + "pepper", + "butter", + "onions", + "whole grain mustard", + "salt", + "cumberland sausage", + "chicken stock", + "potatoes", + "crème fraîche", + "cream", + "flour", + "oil" + ] + }, + { + "id": 32399, + "cuisine": "irish", + "ingredients": [ + "brown sugar", + "granulated sugar", + "cinnamon sticks", + "cider vinegar", + "ginger", + "yellow mustard seeds", + "golden raisins", + "nectarines", + "clove", + "peaches", + "crushed red pepper" + ] + }, + { + "id": 9750, + "cuisine": "russian", + "ingredients": [ + "cottage cheese", + "minced onion", + "cornichons", + "unsalted butter", + "paprika", + "cocktail pumpernickel bread", + "green onions", + "caraway seeds", + "radishes", + "dry mustard" + ] + }, + { + "id": 48917, + "cuisine": "british", + "ingredients": [ + "baking soda", + "pitted Medjool dates", + "all-purpose flour", + "light brown sugar", + "large eggs", + "vanilla extract", + "hot water", + "unsalted butter", + "heavy cream", + "dark brown sugar", + "large egg yolks", + "baking powder", + "salt" + ] + }, + { + "id": 7061, + "cuisine": "french", + "ingredients": [ + "dry sherry", + "chopped onion", + "pepper", + "salt", + "chicken livers", + "garlic", + "cream cheese", + "butter", + "hot sauce" + ] + }, + { + "id": 15027, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "Sriracha", + "button mushrooms", + "bean threads", + "reduced sodium chicken broth", + "green onions", + "red bell pepper", + "sugar pea", + "peeled fresh ginger", + "firm tofu", + "sugar", + "mirin", + "meat" + ] + }, + { + "id": 16197, + "cuisine": "moroccan", + "ingredients": [ + "sugar", + "salt", + "cinnamon", + "chopped parsley", + "beet greens", + "lemon juice", + "extra-virgin olive oil" + ] + }, + { + "id": 14172, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "garlic cloves", + "kosher salt", + "roma tomatoes", + "serrano chile", + "white onion", + "large eggs", + "poblano chiles", + "lime juice", + "vegetable oil", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 21193, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "ground black pepper", + "red pepper flakes", + "squash", + "eggs", + "olive oil", + "grated parmesan cheese", + "red bell pepper", + "onions", + "tomatoes", + "mozzarella cheese", + "lasagna noodles", + "garlic", + "fresh parsley", + "white wine", + "parmesan cheese", + "ricotta cheese", + "white mushrooms" + ] + }, + { + "id": 8807, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "chicken meat", + "chicken stock", + "cajun seasoning", + "celery", + "flour", + "scallions", + "cooked rice", + "butter" + ] + }, + { + "id": 49629, + "cuisine": "southern_us", + "ingredients": [ + "sweet potatoes", + "eggs", + "hot sauce", + "vegetable oil", + "corn mix muffin", + "scallions" + ] + }, + { + "id": 45263, + "cuisine": "french", + "ingredients": [ + "pepper", + "cayenne", + "salt", + "parmesan cheese", + "butter", + "low-fat milk", + "cream of tartar", + "ground nutmeg", + "gruyere cheese", + "large egg whites", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 47157, + "cuisine": "moroccan", + "ingredients": [ + "chicken stock", + "clear honey", + "ginger", + "cinnamon sticks", + "olive oil", + "chicken breasts", + "garlic cloves", + "coriander", + "ground ginger", + "butternut squash", + "cumin seed", + "chicken thighs", + "saffron threads", + "coriander seeds", + "shallots", + "dried chile" + ] + }, + { + "id": 20853, + "cuisine": "japanese", + "ingredients": [ + "beans", + "egg yolks", + "water", + "vanilla extract", + "caster sugar", + "double cream", + "milk", + "lemon juice" + ] + }, + { + "id": 18311, + "cuisine": "mexican", + "ingredients": [ + "fresh cilantro", + "chopped fresh mint", + "scallion greens", + "ricotta", + "Belgian endive", + "radishes", + "chopped cilantro fresh", + "kosher salt", + "poblano chiles" + ] + }, + { + "id": 21814, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "chickpeas", + "ground turmeric", + "chili powder", + "ginger root", + "coriander powder", + "garlic cloves", + "ground cumin", + "fresh tomatoes", + "salt", + "onions" + ] + }, + { + "id": 45587, + "cuisine": "italian", + "ingredients": [ + "parmesan cheese", + "flat leaf parsley", + "pinenuts", + "garlic", + "pasta", + "heavy cream", + "onions", + "olive oil", + "red bell pepper" + ] + }, + { + "id": 22162, + "cuisine": "spanish", + "ingredients": [ + "kosher salt", + "roasted red peppers", + "extra-virgin olive oil", + "slivered almonds", + "sherry vinegar", + "clam juice", + "fresh basil leaves", + "brandy", + "cayenne", + "paprika", + "tomato paste", + "minced garlic", + "french bread", + "fresh lemon juice" + ] + }, + { + "id": 40262, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "water", + "light corn syrup", + "sugar", + "semisweet chocolate", + "almonds" + ] + }, + { + "id": 2926, + "cuisine": "southern_us", + "ingredients": [ + "dried basil", + "mango chutney", + "garlic cloves", + "pepper", + "black-eyed peas", + "salt", + "onions", + "dried thyme", + "vegetable oil", + "flat leaf parsley", + "lime juice", + "sweet potatoes", + "ground coriander", + "ground cumin" + ] + }, + { + "id": 19077, + "cuisine": "vietnamese", + "ingredients": [ + "shallots", + "salad oil" + ] + }, + { + "id": 35047, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "cumin seed", + "black pepper", + "salt", + "onions", + "black gram", + "ghee", + "amchur", + "green chilies" + ] + }, + { + "id": 19609, + "cuisine": "chinese", + "ingredients": [ + "spinach leaves", + "soy sauce", + "sesame oil", + "oyster sauce", + "brown sugar", + "water chestnuts", + "ginger", + "corn starch", + "garlic paste", + "straw mushrooms", + "crushed red pepper flakes", + "shrimp", + "chicken stock", + "chinese rice wine", + "bell pepper", + "green chilies", + "onions" + ] + }, + { + "id": 34152, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "cooking spray", + "garlic cloves", + "center cut pork chops", + "cider vinegar", + "salt", + "fresh lime juice", + "ground cumin", + "ground black pepper", + "ground allspice", + "onions", + "fat free less sodium chicken broth", + "fresh orange juice", + "ancho chile pepper", + "oregano" + ] + }, + { + "id": 5179, + "cuisine": "mexican", + "ingredients": [ + "dried thyme", + "yellow rice", + "dried oregano", + "ground cinnamon", + "garlic", + "toasted almonds", + "ground cumin", + "ground pork", + "ground coriander", + "mango", + "chunky tomatoes", + "cilantro leaves", + "onions" + ] + }, + { + "id": 21297, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "red cabbage", + "ginger", + "chow mein noodles", + "white pepper", + "boneless skinless chicken breasts", + "rice vinegar", + "soy sauce", + "green onions", + "garlic", + "carrots", + "romaine lettuce", + "sliced almonds", + "sesame oil", + "edamame" + ] + }, + { + "id": 39936, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "pepper", + "all-purpose flour", + "shortening", + "salt", + "milk", + "chicken" + ] + }, + { + "id": 360, + "cuisine": "mexican", + "ingredients": [ + "pepper jack", + "salt", + "canola oil", + "black beans", + "cooking spray", + "chopped onion", + "pico de gallo", + "flour tortillas", + "salsa", + "ground cumin", + "cream", + "garlic", + "rotisserie chicken" + ] + }, + { + "id": 44584, + "cuisine": "southern_us", + "ingredients": [ + "mashed potatoes", + "dried basil", + "salt", + "fresh lemon juice", + "pepper", + "chicken breasts", + "fresh mushrooms", + "chicken broth", + "water", + "butter", + "garlic cloves", + "seasoned bread crumbs", + "olive oil", + "all-purpose flour", + "dried oregano" + ] + }, + { + "id": 39837, + "cuisine": "cajun_creole", + "ingredients": [ + "andouille sausage", + "butter", + "cayenne pepper", + "shrimp", + "olive oil", + "salt", + "rice", + "chicken broth", + "chicken breasts", + "hot sauce", + "okra", + "crushed tomatoes", + "red pepper", + "green pepper", + "onions" + ] + }, + { + "id": 23842, + "cuisine": "british", + "ingredients": [ + "cheddar cheese", + "Colman's Mustard Powder", + "bread", + "ground black pepper", + "milk", + "fresh spinach", + "worcestershire sauce" + ] + }, + { + "id": 39818, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "lime wedges", + "ground allspice", + "olive oil", + "salmon steaks", + "ground cumin", + "ground cinnamon", + "ground black pepper", + "sauce", + "fresh cilantro", + "large garlic cloves", + "fresh lime juice" + ] + }, + { + "id": 36595, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "provolone cheese", + "pepper flakes", + "eggplant", + "cherry tomatoes", + "fresh spinach", + "Himalayan salt" + ] + }, + { + "id": 19178, + "cuisine": "mexican", + "ingredients": [ + "ground cloves", + "jalapeno chilies", + "cilantro sprigs", + "blanched almonds", + "tomatoes", + "water", + "chicken breast halves", + "chopped onion", + "corn tortillas", + "ground cinnamon", + "sesame seeds", + "chili powder", + "ground allspice", + "ground cumin", + "seasoning", + "sweet baking chocolate", + "cooking spray", + "salt", + "garlic cloves" + ] + }, + { + "id": 7511, + "cuisine": "southern_us", + "ingredients": [ + "orange bell pepper", + "balsamic vinegar", + "ground coriander", + "cheddar cheese", + "cooking spray", + "1% low-fat milk", + "jalapeno chilies", + "extra-virgin olive oil", + "fat free less sodium chicken broth", + "quickcooking grits", + "salt" + ] + }, + { + "id": 15365, + "cuisine": "italian", + "ingredients": [ + "sugar", + "parmigiano reggiano cheese", + "crushed red pepper", + "plum tomatoes", + "capers", + "sherry vinegar", + "green onions", + "garlic cloves", + "cremini mushrooms", + "mushroom caps", + "butter", + "shiitake mushroom caps", + "baguette", + "basil leaves", + "salt" + ] + }, + { + "id": 26739, + "cuisine": "mexican", + "ingredients": [ + "low-fat sour cream", + "boneless skinless chicken breasts", + "purple onion", + "chile powder", + "romaine lettuce", + "whole wheat tortillas", + "cilantro leaves", + "avocado", + "water", + "sea salt", + "olive oil cooking spray", + "green bell pepper", + "lime", + "garlic" + ] + }, + { + "id": 17811, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "garam masala", + "garlic", + "mustard seeds", + "tumeric", + "fenugreek", + "cumin seed", + "onions", + "tomatoes", + "potatoes", + "salt", + "chillies", + "fresh coriander", + "ginger", + "mustard oil" + ] + }, + { + "id": 15595, + "cuisine": "cajun_creole", + "ingredients": [ + "milk chocolate", + "chocolate shavings", + "all-purpose flour", + "dark chocolate", + "egg yolks", + "vanilla extract", + "confectioners sugar", + "pecans", + "butter", + "salt", + "granulated sugar", + "heavy cream", + "cream cheese" + ] + }, + { + "id": 358, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "salt", + "plain yogurt", + "pappadams", + "brown sugar", + "vegetable oil", + "fresh lime juice", + "water", + "cilantro sprigs" + ] + }, + { + "id": 11781, + "cuisine": "chinese", + "ingredients": [ + "ground ginger", + "ground black pepper", + "vegetable oil", + "cabbage", + "minced garlic", + "sherry", + "onions", + "soy sauce", + "egg roll wrappers", + "salt", + "water", + "lean ground beef", + "white sugar" + ] + }, + { + "id": 29665, + "cuisine": "irish", + "ingredients": [ + "unsalted butter", + "milk", + "scallions", + "yukon gold potatoes", + "salt and ground black pepper" + ] + }, + { + "id": 48179, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "chuck roast", + "lime wedges", + "salsa", + "brown basmati rice", + "black beans", + "poblano peppers", + "apple cider vinegar", + "salt", + "chopped cilantro", + "black pepper", + "lime", + "onion powder", + "cheese", + "chipotles in adobo", + "ground cumin", + "romaine lettuce", + "water", + "bay leaves", + "butter", + "sour cream", + "oregano" + ] + }, + { + "id": 794, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "cumin seed", + "ground turmeric", + "fresh curry leaves", + "salt", + "asafoetida powder", + "fresh spinach", + "ground red pepper", + "mustard seeds", + "ground cumin", + "water", + "peanut oil", + "dried red chile peppers" + ] + }, + { + "id": 40958, + "cuisine": "korean", + "ingredients": [ + "sugar", + "Tabasco Pepper Sauce", + "lemon juice", + "flour", + "rice vinegar", + "light soy sauce", + "chicken wing drummettes", + "green onions", + "garlic cloves" + ] + }, + { + "id": 22680, + "cuisine": "mexican", + "ingredients": [ + "homemade chicken stock", + "loin pork roast", + "tomato paste", + "lime", + "fat", + "orange", + "garlic cloves", + "adobo", + "garlic powder" + ] + }, + { + "id": 33837, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salt", + "mexicorn", + "garlic cloves", + "cooking spray", + "lima beans", + "shredded sharp cheddar cheese", + "cumin" + ] + }, + { + "id": 27477, + "cuisine": "british", + "ingredients": [ + "irish cream liqueur", + "large eggs", + "Dutch-processed cocoa powder", + "dried dates", + "vegetable oil cooking spray", + "unsalted butter", + "heavy cream", + "orange juice", + "firmly packed brown sugar", + "baking soda", + "baking powder", + "all-purpose flour", + "ground cinnamon", + "ground cloves", + "whole milk", + "salt", + "semi-sweet chocolate morsels" + ] + }, + { + "id": 30920, + "cuisine": "korean", + "ingredients": [ + "honey", + "rice vinegar", + "brown sugar", + "ginger", + "garlic cloves", + "chicken wings", + "sesame oil", + "Gochujang base", + "soy sauce", + "salt" + ] + }, + { + "id": 40510, + "cuisine": "thai", + "ingredients": [ + "fresh cilantro", + "salt", + "light coconut milk", + "oil", + "Thai red curry paste", + "scallions", + "fish sauce", + "garlic", + "shrimp" + ] + }, + { + "id": 29108, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "olive oil", + "italian style seasoning", + "crushed red pepper flakes", + "pork roast", + "dried parsley", + "water", + "ground black pepper", + "crushed garlic", + "all-purpose flour", + "sliced mushrooms", + "dried oregano", + "msg", + "ground nutmeg", + "bay leaves", + "salt", + "hot water", + "white sugar", + "celery salt", + "dried basil", + "sliced black olives", + "red wine", + "anchovy fillets", + "onions", + "dried rosemary" + ] + }, + { + "id": 31650, + "cuisine": "british", + "ingredients": [ + "beef stock", + "salt", + "ground black pepper", + "butter", + "beer", + "bay leaves", + "onion tops", + "beef", + "idaho potatoes", + "onions" + ] + }, + { + "id": 31647, + "cuisine": "greek", + "ingredients": [ + "eggs", + "ground black pepper", + "salt", + "olive oil", + "manouri", + "warm water", + "large eggs", + "bread", + "large egg yolks", + "extra-virgin olive oil" + ] + }, + { + "id": 26233, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "self rising flour", + "shortening", + "white sugar", + "baking powder" + ] + }, + { + "id": 15292, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "garlic", + "ground cumin", + "black beans", + "brown rice", + "shredded mozzarella cheese", + "green chile", + "lime", + "hot sauce", + "white onion", + "extra-virgin olive oil", + "chicken" + ] + }, + { + "id": 38391, + "cuisine": "italian", + "ingredients": [ + "broccoli rabe", + "crushed red pepper", + "garlic cloves", + "parmigiano reggiano cheese", + "chickpeas", + "ground black pepper", + "salt", + "dried oregano", + "olive oil", + "center cut bacon", + "chopped onion" + ] + }, + { + "id": 32549, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "large eggs", + "garlic", + "fresh basil", + "olive oil", + "marinara sauce", + "mozzarella cheese", + "grated parmesan cheese", + "jumbo pasta shells", + "fresh leav spinach", + "ground black pepper", + "ricotta cheese" + ] + }, + { + "id": 28895, + "cuisine": "southern_us", + "ingredients": [ + "ground black pepper", + "heavy cream", + "all-purpose flour", + "extra sharp cheddar cheese", + "sugar", + "cajun seasoning", + "garlic", + "heavy whipping cream", + "italian seasoning", + "tomato paste", + "unsalted butter", + "paprika", + "hot sauce", + "large shrimp", + "store bought low sodium chicken stock", + "worcestershire sauce", + "chicken stock cubes", + "grits" + ] + }, + { + "id": 36800, + "cuisine": "japanese", + "ingredients": [ + "zucchini", + "salmon fillets", + "scallions", + "low sodium teriyaki sauce", + "sesame seeds", + "canola oil" + ] + }, + { + "id": 40805, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "beer", + "large eggs", + "shrimp", + "self rising flour", + "okra", + "diced onions", + "creole seasoning", + "canola oil" + ] + }, + { + "id": 29820, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "cream style corn", + "onions", + "cream of potato soup", + "salted butter", + "cajun seasoning", + "green bell pepper", + "water", + "Tabasco Pepper Sauce", + "crawfish", + "evaporated milk", + "salt" + ] + }, + { + "id": 39794, + "cuisine": "french", + "ingredients": [ + "black pepper", + "cayenne pepper", + "capers", + "fresh thyme leaves", + "fresh lemon juice", + "pitted black olives", + "garlic", + "olive oil", + "anchovy fillets" + ] + }, + { + "id": 38712, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "hot water", + "fish sauce", + "garlic cloves", + "shredded carrots", + "granulated sugar", + "fresh lime juice" + ] + }, + { + "id": 12207, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "salt", + "instant yeast", + "warm water", + "all-purpose flour" + ] + }, + { + "id": 33237, + "cuisine": "french", + "ingredients": [ + "capers", + "dried dillweed", + "mayonaise", + "fresh parsley leaves", + "milk", + "hot mustard", + "freshly ground pepper" + ] + }, + { + "id": 48334, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "chopped onion", + "chile pepper", + "cheddar cheese", + "garlic salt", + "chopped celery" + ] + }, + { + "id": 7440, + "cuisine": "indian", + "ingredients": [ + "mango", + "plain yogurt", + "sugar", + "kosher salt" + ] + }, + { + "id": 18919, + "cuisine": "japanese", + "ingredients": [ + "baby spinach", + "dashi", + "carrots", + "boneless salmon fillets", + "dried shiitake mushrooms", + "white miso", + "cabbage" + ] + }, + { + "id": 2651, + "cuisine": "italian", + "ingredients": [ + "freshly grated parmesan", + "white beans", + "rib", + "bacon", + "fresh parsley leaves", + "chicken broth", + "canned tomatoes", + "carrots", + "tubetti", + "garlic cloves", + "onions" + ] + }, + { + "id": 37467, + "cuisine": "mexican", + "ingredients": [ + "cream", + "corn tortilla chips", + "cream cheese", + "green chile", + "cilantro leaves", + "chiles", + "monterey jack" + ] + }, + { + "id": 12583, + "cuisine": "british", + "ingredients": [ + "sugar", + "whipping cream", + "semi-sweet chocolate morsels", + "English toffee bits", + "all-purpose flour", + "baking powder", + "walnuts", + "unsalted butter", + "salt" + ] + }, + { + "id": 43814, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "pepper", + "salt", + "whipping cream", + "yukon gold potatoes" + ] + }, + { + "id": 10217, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "garlic cloves", + "tomatillos", + "Anaheim chile", + "cilantro sprigs" + ] + }, + { + "id": 40140, + "cuisine": "french", + "ingredients": [ + "celery ribs", + "zinfandel", + "baby carrots", + "herbes de provence", + "olives", + "water", + "diced tomatoes", + "garlic cloves", + "fresh parsley", + "olive oil", + "all-purpose flour", + "carrots", + "onions", + "mashed potatoes", + "canned beef broth", + "beef rib short", + "bay leaf" + ] + }, + { + "id": 29175, + "cuisine": "moroccan", + "ingredients": [ + "chicken legs", + "water", + "garlic", + "saffron", + "grass-fed butter", + "kalamata", + "chopped cilantro", + "preserved lemon", + "sea salt", + "chopped parsley", + "tomatoes", + "pepper", + "ginger", + "onions" + ] + }, + { + "id": 24520, + "cuisine": "indian", + "ingredients": [ + "nutmeg", + "green cardamom", + "bay leaves", + "cardamom", + "coriander seeds", + "cumin seed", + "clove", + "cinnamon", + "peppercorns" + ] + }, + { + "id": 9198, + "cuisine": "italian", + "ingredients": [ + "pepper", + "potatoes", + "milk", + "salt", + "minced garlic", + "paprika", + "romano cheese", + "olive oil", + "fresh basil leaves" + ] + }, + { + "id": 17255, + "cuisine": "french", + "ingredients": [ + "coconut extract", + "vanilla extract", + "large egg whites", + "unsweetened cocoa powder", + "sugar", + "salt", + "cream of tartar", + "sweetened coconut flakes" + ] + }, + { + "id": 9172, + "cuisine": "italian", + "ingredients": [ + "whole wheat hamburger buns", + "baby spinach", + "canola oil", + "grated parmesan cheese", + "chili sauce", + "part-skim mozzarella cheese", + "green pepper", + "italian seasoning", + "parsley flakes", + "ricotta cheese", + "ground beef" + ] + }, + { + "id": 5873, + "cuisine": "indian", + "ingredients": [ + "fresh peas", + "vegetable stock", + "onions", + "red chili peppers", + "lime wedges", + "natural yogurt", + "Madras curry powder", + "tumeric", + "new potatoes", + "ginger", + "coriander", + "lime", + "vegetable oil", + "cumin seed", + "naan" + ] + }, + { + "id": 27539, + "cuisine": "thai", + "ingredients": [ + "romaine lettuce leaves", + "carrots", + "fresh basil leaves", + "fish sauce", + "Thai red curry paste", + "cucumber", + "rice paper", + "rice sticks", + "rice vinegar", + "fresh mint", + "honey", + "onion tops", + "medium shrimp" + ] + }, + { + "id": 5103, + "cuisine": "irish", + "ingredients": [ + "water", + "beef stock", + "lamb shoulder", + "onions", + "ground black pepper", + "bacon", + "all-purpose flour", + "dried thyme", + "bay leaves", + "salt", + "white sugar", + "white wine", + "potatoes", + "garlic", + "carrots" + ] + }, + { + "id": 22942, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "pimentos", + "diced celery", + "onions", + "zucchini", + "butter", + "sliced mushrooms", + "water", + "chili powder", + "carrots", + "green bell pepper", + "whole peeled tomatoes", + "white rice", + "medium shrimp" + ] + }, + { + "id": 2892, + "cuisine": "greek", + "ingredients": [ + "ground black pepper", + "ground coriander", + "ground lamb", + "ground cinnamon", + "cayenne pepper", + "onions", + "ground ginger", + "garlic", + "fresh parsley", + "ground cumin", + "kosher salt", + "ground allspice", + "bamboo shoots" + ] + }, + { + "id": 17641, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "coarse salt", + "sausage casings", + "grated parmesan cheese", + "diced tomatoes in juice", + "arborio rice", + "ground pepper", + "butter", + "flat leaf spinach", + "dry white wine", + "onions" + ] + }, + { + "id": 1286, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "chili powder", + "cayenne pepper", + "boneless chicken breast", + "garlic", + "oregano", + "hominy", + "diced tomatoes", + "carrots", + "chicken broth", + "green onions", + "salt", + "cumin" + ] + }, + { + "id": 42551, + "cuisine": "southern_us", + "ingredients": [ + "half & half", + "softened butter", + "country ham", + "vegetable oil", + "boiling water", + "baking powder", + "white cornmeal", + "sugar", + "salt" + ] + }, + { + "id": 5488, + "cuisine": "cajun_creole", + "ingredients": [ + "powdered sugar", + "unsalted butter", + "vanilla extract", + "cream cheese", + "cider vinegar", + "buttermilk", + "salt", + "chopped pecans", + "sugar", + "butter", + "frosting", + "cocoa powder", + "eggs", + "baking soda", + "red food coloring", + "all-purpose flour" + ] + }, + { + "id": 1595, + "cuisine": "moroccan", + "ingredients": [ + "tomato paste", + "olive oil", + "paprika", + "fresh lemon juice", + "ground turmeric", + "minced garlic", + "ground red pepper", + "salt", + "onions", + "ground ginger", + "water", + "diced tomatoes", + "chickpeas", + "chopped cilantro fresh", + "ground cinnamon", + "ground black pepper", + "chopped celery", + "carrots", + "ground cumin" + ] + }, + { + "id": 28903, + "cuisine": "filipino", + "ingredients": [ + "adobo", + "cooking oil" + ] + }, + { + "id": 27443, + "cuisine": "russian", + "ingredients": [ + "prunes", + "chopped walnuts", + "garlic", + "mayonaise", + "beets", + "salt" + ] + }, + { + "id": 43647, + "cuisine": "cajun_creole", + "ingredients": [ + "unsalted butter", + "salt", + "pecan halves", + "half & half", + "light brown sugar", + "granulated sugar", + "baking soda", + "bourbon whiskey" + ] + }, + { + "id": 10842, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "salt", + "ground red pepper", + "okra pods", + "olive oil", + "chopped onion", + "tomato paste", + "diced tomatoes", + "celery" + ] + }, + { + "id": 36074, + "cuisine": "russian", + "ingredients": [ + "boysenberries", + "salt", + "fresh lemon juice", + "sugar", + "vegetable oil", + "all-purpose flour", + "corn starch", + "lemon peel", + "hoop cheese", + "blueberries", + "grated lemon peel", + "water", + "extra large eggs", + "strawberries", + "sour cream" + ] + }, + { + "id": 44100, + "cuisine": "jamaican", + "ingredients": [ + "water", + "vanilla", + "baking powder", + "cornmeal", + "flour", + "salt", + "brown sugar", + "vegetable oil" + ] + }, + { + "id": 11027, + "cuisine": "russian", + "ingredients": [ + "capers", + "vegetable oil", + "dry bread crumbs", + "large eggs", + "all-purpose flour", + "unsalted butter", + "salt", + "black pepper", + "chicken cutlets", + "flat leaf parsley" + ] + }, + { + "id": 6273, + "cuisine": "spanish", + "ingredients": [ + "potatoes", + "lentils", + "chorizo", + "salt", + "onions", + "garlic", + "carrots", + "olive oil", + "spanish paprika" + ] + }, + { + "id": 23200, + "cuisine": "japanese", + "ingredients": [ + "whitefish", + "garlic powder", + "sesame oil", + "cayenne pepper", + "fillets", + "snappers", + "agave nectar", + "salt", + "corn starch", + "low sodium soy sauce", + "cayenne", + "vegetable oil", + "orange juice", + "panko breadcrumbs", + "sesame seeds", + "flour", + "rice vinegar", + "seltzer water" + ] + }, + { + "id": 17262, + "cuisine": "italian", + "ingredients": [ + "unsalted butter", + "fresh oregano", + "large garlic cloves", + "fresh basil", + "beef tenderloin steaks" + ] + }, + { + "id": 14485, + "cuisine": "italian", + "ingredients": [ + "yellow tomato", + "balsamic vinegar", + "vegetable broth", + "fresh basil", + "loosely packed fresh basil leaves", + "ground black pepper", + "chees fresh mozzarella", + "tomatoes", + "sea salt" + ] + }, + { + "id": 48914, + "cuisine": "british", + "ingredients": [ + "parsnips", + "whipping cream", + "whole milk" + ] + }, + { + "id": 8860, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "fresh basil leaves", + "olive oil", + "cherry tomatoes", + "whitefish", + "black olives" + ] + }, + { + "id": 41556, + "cuisine": "southern_us", + "ingredients": [ + "lemon wedge", + "dry bread crumbs", + "pepper", + "paprika", + "fresh parsley", + "catfish fillets", + "butter", + "fresh oregano", + "grated parmesan cheese", + "salt" + ] + }, + { + "id": 24387, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "flat leaf parsley", + "jumbo shrimp", + "butter", + "parmesan cheese", + "pepper", + "salt" + ] + }, + { + "id": 41342, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "fresh ginger", + "jalapeno chilies", + "fennel seeds", + "water", + "garam masala", + "cilantro", + "fresh turmeric", + "chili", + "potatoes", + "ghee", + "cauliflower", + "asafoetida", + "coriander seeds", + "sea salt" + ] + }, + { + "id": 18286, + "cuisine": "cajun_creole", + "ingredients": [ + "crushed red pepper flakes", + "black peppercorns", + "white peppercorns", + "sweet paprika", + "dried thyme", + "dried oregano" + ] + }, + { + "id": 12160, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "cooking spray", + "salt", + "red bell pepper", + "fresh basil", + "italian style stewed tomatoes", + "orzo", + "garlic cloves", + "italian seasoning", + "spinach", + "chopped green bell pepper", + "crushed red pepper", + "carrots", + "fennel seeds", + "eggplant", + "basil", + "chopped onion", + "polenta" + ] + }, + { + "id": 11408, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "tumeric", + "mixed vegetables", + "salt", + "brown cardamom", + "oil", + "onions", + "stone flower", + "red chili powder", + "mint leaves", + "garlic", + "green cardamom", + "kewra water", + "bay leaf", + "clove", + "tomatoes", + "mace", + "star anise", + "rice", + "curds", + "cinnamon sticks", + "shahi jeera", + "nutmeg", + "water", + "ginger", + "cilantro leaves", + "green chilies", + "cardamom", + "peppercorns" + ] + }, + { + "id": 13454, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "cooking spray", + "corn tortillas", + "canola oil", + "salsa verde", + "garlic cloves", + "chicken thighs", + "peeled tomatoes", + "ground red pepper", + "fresh lime juice", + "ground cumin", + "white onion", + "pepper jack", + "sour cream", + "chopped cilantro fresh" + ] + }, + { + "id": 29006, + "cuisine": "southern_us", + "ingredients": [ + "cold water", + "apples", + "sugar", + "unflavored gelatin", + "chopped pecans", + "celery ribs", + "whole cranberry sauce" + ] + }, + { + "id": 2609, + "cuisine": "italian", + "ingredients": [ + "pepper", + "ground pork sausage", + "bread crumbs", + "marinara sauce", + "ground beef", + "eggs", + "olive oil", + "garlic cloves", + "mozzarella cheese", + "salt", + "italian seasoning" + ] + }, + { + "id": 48194, + "cuisine": "southern_us", + "ingredients": [ + "clove", + "kosher salt", + "lemon", + "dill seed", + "whole allspice", + "hot pepper sauce", + "garlic", + "large shrimp", + "yellow mustard seeds", + "bay leaves", + "cayenne pepper", + "black peppercorns", + "coriander seeds", + "crushed red pepper flakes", + "onions" + ] + }, + { + "id": 808, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "crushed red pepper", + "bread flour", + "olive oil", + "hot water", + "sugar", + "salt", + "dry yeast", + "cornmeal" + ] + }, + { + "id": 24751, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "dry white wine", + "linguine", + "unsalted butter", + "red pepper flakes", + "fresh parsley", + "pepper", + "lemon", + "garlic cloves", + "grape tomatoes", + "parmigiano reggiano cheese", + "extra-virgin olive oil", + "large shrimp" + ] + }, + { + "id": 15603, + "cuisine": "cajun_creole", + "ingredients": [ + "low-fat smoked sausage", + "creole seasoning", + "onions", + "celery ribs", + "diced tomatoes", + "garlic cloves", + "ground red pepper", + "long-grain rice", + "green bell pepper", + "fat-free chicken broth", + "medium shrimp" + ] + }, + { + "id": 39095, + "cuisine": "mexican", + "ingredients": [ + "brown sugar", + "flour", + "salt", + "oil", + "ground cumin", + "black pepper", + "crushed red pepper flakes", + "chili con carne", + "sour cream", + "tomato sauce", + "chicken breasts", + "all-purpose flour", + "Mexican cheese", + "chicken broth", + "black beans", + "garlic", + "cream cheese", + "dried oregano" + ] + }, + { + "id": 5695, + "cuisine": "spanish", + "ingredients": [ + "granny smith apples", + "ice water", + "green grape", + "sherry vinegar", + "extra-virgin olive oil", + "baguette", + "honeydew melon", + "garlic cloves", + "fresh lima beans", + "large eggs", + "salt" + ] + }, + { + "id": 48732, + "cuisine": "mexican", + "ingredients": [ + "cherry tomatoes", + "grate lime peel", + "ground cumin", + "large garlic cloves", + "onions", + "olive oil", + "fresh lime juice", + "fresh basil", + "hot chili sauce", + "skirt steak" + ] + }, + { + "id": 11080, + "cuisine": "french", + "ingredients": [ + "pearl onions", + "mushrooms", + "garlic cloves", + "chicken broth", + "unsalted butter", + "worcestershire sauce", + "dried thyme", + "boneless skinless chicken breasts", + "onions", + "cooked rice", + "lean bacon", + "dry red wine" + ] + }, + { + "id": 30030, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "ice cream", + "strawberries", + "almond extract", + "salt", + "baking powder", + "heavy cream", + "lemon juice", + "sugar", + "butter", + "all-purpose flour" + ] + }, + { + "id": 25223, + "cuisine": "british", + "ingredients": [ + "whole allspice", + "bay leaf", + "black peppercorns", + "pickling salt", + "pepper flakes", + "water", + "onions", + "brown sugar", + "malt vinegar" + ] + }, + { + "id": 44085, + "cuisine": "indian", + "ingredients": [ + "kosher salt", + "garam masala", + "vegetable oil", + "garlic", + "onions", + "chili", + "whole cloves", + "green peas", + "black mustard seeds", + "tumeric", + "honey", + "yukon gold potatoes", + "cauliflower florets", + "lemon juice", + "water", + "hand", + "ginger", + "cumin seed" + ] + }, + { + "id": 11509, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "cooking spray", + "garlic salt", + "olive oil", + "button mushrooms", + "beef", + "yellow onion", + "fettuccine pasta", + "diced tomatoes" + ] + }, + { + "id": 29531, + "cuisine": "korean", + "ingredients": [ + "rice syrup", + "starch", + "Gochujang base", + "eggs", + "ground black pepper", + "garlic", + "chicken", + "baking soda", + "apple cider vinegar", + "canola oil", + "ketchup", + "flour", + "salt", + "sweet rice flour" + ] + }, + { + "id": 9144, + "cuisine": "french", + "ingredients": [ + "chocolate ice cream", + "chocolate wafer cookies", + "vegetable oil", + "bittersweet chocolate", + "cocktail cherries", + "cherry vanilla ice cream", + "unsalted butter", + "walnuts" + ] + }, + { + "id": 25808, + "cuisine": "french", + "ingredients": [ + "salt", + "olive oil", + "carrots", + "dijon mustard" + ] + }, + { + "id": 21816, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "boneless skinless chicken breasts", + "asian fish sauce", + "sugar", + "cooking oil", + "garlic", + "water", + "red pepper flakes", + "red chili peppers", + "basil leaves", + "onions" + ] + }, + { + "id": 8180, + "cuisine": "british", + "ingredients": [ + "tangerine", + "unsalted butter", + "powdered sugar", + "dark rum", + "golden brown sugar" + ] + }, + { + "id": 42474, + "cuisine": "french", + "ingredients": [ + "chicken broth", + "whipping cream", + "dijon mustard", + "marsala wine", + "fillets", + "green peppercorns", + "butter" + ] + }, + { + "id": 11085, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "large eggs", + "finely chopped fresh parsley", + "salt", + "unsalted butter", + "lettuce leaves", + "parmigiano reggiano cheese", + "tuna packed in olive oil" + ] + }, + { + "id": 33821, + "cuisine": "jamaican", + "ingredients": [ + "pepper sauce", + "bacon", + "cooking oil", + "salt", + "black pepper", + "dried salted codfish", + "tomatoes", + "callaloo", + "onions" + ] + }, + { + "id": 29144, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "minced garlic", + "purple onion", + "ground cumin", + "tomato paste", + "kosher salt", + "vegetable oil", + "serrano chile", + "sugar", + "garam masala", + "chopped cilantro fresh", + "reduced fat coconut milk", + "fresh ginger", + "lemon juice" + ] + }, + { + "id": 5703, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "yellow corn meal", + "buttermilk", + "butter", + "milk" + ] + }, + { + "id": 34780, + "cuisine": "indian", + "ingredients": [ + "ajwain", + "seeds", + "ground coriander", + "amchur", + "garlic", + "canola oil", + "kosher salt", + "daikon", + "ground turmeric", + "red chile powder", + "yellow onion", + "ground cumin" + ] + }, + { + "id": 33381, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "seasoned bread crumbs", + "basil mayonnaise", + "hamburger buns", + "garlic powder", + "salt", + "lettuce", + "ground chuck", + "large eggs", + "hot sauce", + "vegetable oil cooking spray", + "pepper", + "onion powder" + ] + }, + { + "id": 23186, + "cuisine": "thai", + "ingredients": [ + "kirby cucumbers", + "salt", + "ground white pepper", + "jasmine rice", + "ginger", + "ground coriander", + "chile sauce", + "chicken drumsticks", + "peanut oil", + "ground turmeric", + "shallots", + "garlic", + "skinless chicken thighs", + "ground cumin" + ] + }, + { + "id": 14232, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "diced tomatoes", + "ancho chile pepper", + "Mexican oregano", + "cumin seed", + "bay leaf", + "chuck roast", + "purple onion", + "corn tortillas", + "guajillo chiles", + "large garlic cloves", + "coca-cola", + "canola oil" + ] + }, + { + "id": 36556, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "chili powder", + "celery seed", + "sugar", + "pork shoulder roast", + "cinnamon", + "water", + "Tabasco Pepper Sauce", + "ketchup", + "ground nutmeg", + "salt" + ] + }, + { + "id": 48307, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic cloves", + "canola oil", + "beef", + "corn starch", + "sugar pea", + "oyster sauce", + "brown sugar", + "cracked black pepper", + "onions" + ] + }, + { + "id": 25252, + "cuisine": "irish", + "ingredients": [ + "confectioners sugar", + "potatoes", + "creamy peanut butter" + ] + }, + { + "id": 15524, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "whole cloves", + "salt", + "cumin seed", + "black peppercorns", + "large egg yolks", + "poblano", + "serrano", + "cinnamon sticks", + "bone-in ribeye steak", + "chipotle", + "garlic", + "sweet paprika", + "fresh lime juice", + "chile powder", + "kosher salt", + "vegetable oil", + "cilantro leaves", + "allspice berries" + ] + }, + { + "id": 48367, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "yellow onion", + "corn oil", + "red chile sauce", + "corn tortillas", + "queso fresco" + ] + }, + { + "id": 7651, + "cuisine": "southern_us", + "ingredients": [ + "bacon", + "cooked white rice", + "celery ribs", + "cayenne pepper", + "diced tomatoes", + "onions", + "worcestershire sauce", + "okra" + ] + }, + { + "id": 20653, + "cuisine": "thai", + "ingredients": [ + "medium egg noodles", + "red pepper", + "chicken breasts", + "oil", + "spring onions", + "sweet corn", + "light soy sauce", + "sesame oil", + "garlic cloves" + ] + }, + { + "id": 3527, + "cuisine": "japanese", + "ingredients": [ + "light brown sugar", + "panko", + "scallions", + "olive oil", + "sweet potatoes", + "soy sauce", + "mirin", + "garlic cloves", + "fresh ginger", + "rice vinegar" + ] + }, + { + "id": 14049, + "cuisine": "italian", + "ingredients": [ + "sage leaves", + "smoked bacon", + "grated parmesan cheese", + "garlic", + "chicken broth", + "parmesan cheese", + "crushed red pepper flakes", + "onions", + "fresh basil", + "swiss chard", + "extra-virgin olive oil", + "pasta", + "sun-dried tomatoes", + "cannellini beans", + "grated nutmeg" + ] + }, + { + "id": 8959, + "cuisine": "italian", + "ingredients": [ + "frozen chopped spinach", + "pepper", + "grated parmesan cheese", + "manicotti shells", + "garlic powder", + "shredded mozzarella cheese", + "eggs", + "water", + "ricotta cheese", + "pasta sauce", + "minced onion", + "fresh parsley" + ] + }, + { + "id": 47373, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "shredded mozzarella cheese", + "pasta", + "cajun seasoning", + "plum tomatoes", + "minced garlic", + "salt", + "grated parmesan cheese", + "fresh parsley" + ] + }, + { + "id": 7830, + "cuisine": "indian", + "ingredients": [ + "sugar", + "garam masala", + "salt", + "tomatoes", + "water", + "ginger", + "oil", + "cream", + "chili powder", + "green chilies", + "tumeric", + "milk", + "paneer", + "cumin" + ] + }, + { + "id": 38918, + "cuisine": "italian", + "ingredients": [ + "water", + "cooking spray", + "extra-virgin olive oil", + "polenta", + "fresh rosemary", + "finely chopped onion", + "chopped fresh thyme", + "fresh oregano", + "ground black pepper", + "dry white wine", + "salt", + "fresh marjoram", + "pork tenderloin", + "butter", + "garlic cloves" + ] + }, + { + "id": 17168, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "kosher salt", + "garlic", + "onions", + "marmite", + "soy sauce", + "hot chili", + "chickpeas", + "cumin", + "chiles", + "water", + "fresh chili", + "dried oregano", + "red kidney beans", + "vodka", + "vegetable oil", + "chipotles in adobo", + "masa" + ] + }, + { + "id": 15722, + "cuisine": "japanese", + "ingredients": [ + "water", + "salt", + "soy sauce", + "fresh shiitake mushrooms", + "medium shrimp", + "sake", + "chicken breasts", + "carrots", + "dashi powder", + "extra large eggs", + "nuts" + ] + }, + { + "id": 47974, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "lemon", + "cajun seasoning", + "center cut pork chops", + "self rising flour", + "fresh parsley", + "yellow corn meal", + "butter" + ] + }, + { + "id": 18176, + "cuisine": "southern_us", + "ingredients": [ + "baking soda", + "buttermilk", + "baking powder", + "all-purpose flour", + "large eggs", + "salt", + "yellow corn meal", + "vegetable oil" + ] + }, + { + "id": 7984, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "fresh basil leaves" + ] + }, + { + "id": 33240, + "cuisine": "french", + "ingredients": [ + "large egg yolks", + "sugar", + "whipping cream", + "vanilla beans" + ] + }, + { + "id": 35269, + "cuisine": "indian", + "ingredients": [ + "freshly ground pepper", + "nonfat yogurt", + "chopped fresh mint", + "hot sauce", + "ground cumin", + "kosher salt", + "english cucumber" + ] + }, + { + "id": 26939, + "cuisine": "spanish", + "ingredients": [ + "sliced tomatoes", + "russet potatoes", + "bay leaf", + "olive oil", + "dried salted codfish", + "baguette", + "large garlic cloves", + "olives", + "lettuce leaves", + "flat leaf parsley" + ] + }, + { + "id": 27327, + "cuisine": "british", + "ingredients": [ + "puff pastry", + "minced meat" + ] + }, + { + "id": 44899, + "cuisine": "filipino", + "ingredients": [ + "water", + "liver", + "lemon", + "oil", + "chicken legs", + "garlic", + "onions", + "soy sauce", + "salt", + "peppercorns" + ] + }, + { + "id": 35185, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "salt", + "pepper", + "vegetable oil", + "large eggs", + "buttermilk", + "green tomatoes", + "cornmeal" + ] + }, + { + "id": 28122, + "cuisine": "filipino", + "ingredients": [ + "black peppercorns", + "jalapeno chilies", + "soy sauce", + "garlic", + "white vinegar", + "water", + "onions", + "chicken wings", + "bay leaves" + ] + }, + { + "id": 22473, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "salt", + "eggs", + "ground black pepper", + "ground meat", + "chicken broth", + "mozzarella cheese", + "rice", + "tomato purée", + "vegetable oil", + "onions" + ] + }, + { + "id": 29891, + "cuisine": "greek", + "ingredients": [ + "green bell pepper", + "whole wheat pita", + "purple onion", + "feta cheese crumbles", + "romaine lettuce", + "radishes", + "roasting chickens", + "fresh dill", + "cherry tomatoes", + "chickpeas", + "cucumber", + "pitted kalamata olives", + "extra-virgin olive oil", + "fresh lemon juice" + ] + }, + { + "id": 7555, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "cooking oil", + "rib", + "dark soy sauce", + "sesame seeds", + "cooking wine", + "light soy sauce", + "spring onions", + "stock", + "vinegar", + "salt" + ] + }, + { + "id": 25772, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "sea scallops", + "fresh lime juice", + "large shrimp", + "chiles", + "scallions", + "asian fish sauce", + "chicken broth", + "linguine", + "chopped cilantro fresh", + "light brown sugar", + "vegetable oil", + "thai green curry paste" + ] + }, + { + "id": 44836, + "cuisine": "southern_us", + "ingredients": [ + "red potato", + "garlic", + "shrimp", + "old bay seasoning", + "salt", + "water", + "smoked sausage", + "fresh parsley", + "yellow corn", + "freshly ground pepper" + ] + }, + { + "id": 20103, + "cuisine": "french", + "ingredients": [ + "fresh basil", + "eggplant", + "cooking spray", + "chopped onion", + "olive oil", + "large eggs", + "salt", + "Italian bread", + "black pepper", + "fresh parmesan cheese", + "diced tomatoes", + "garlic cloves", + "large egg whites", + "zucchini", + "1% low-fat milk", + "red bell pepper" + ] + }, + { + "id": 25755, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "chicken breasts", + "enchilada sauce", + "chicken broth", + "bell pepper", + "diced tomatoes", + "milk", + "butter", + "onions", + "jack cheese", + "flour", + "frozen corn" + ] + }, + { + "id": 41142, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "garlic cloves", + "pickling salt", + "peanuts", + "whole peppercorn", + "apple cider vinegar" + ] + }, + { + "id": 8489, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "salsa", + "black beans", + "chili powder", + "shredded Monterey Jack cheese", + "tomatoes", + "green onions", + "red bell pepper", + "shredded cheddar cheese", + "white cheddar cheese" + ] + }, + { + "id": 44761, + "cuisine": "italian", + "ingredients": [ + "simple syrup", + "crushed ice", + "brewed espresso" + ] + }, + { + "id": 99, + "cuisine": "mexican", + "ingredients": [ + "parmigiano reggiano cheese", + "cream cheese, soften", + "shredded Monterey Jack cheese", + "chiles", + "garlic", + "onions", + "cooking spray", + "fresno chiles", + "ground cumin", + "kosher salt", + "shredded sharp cheddar cheese", + "panko breadcrumbs" + ] + }, + { + "id": 4310, + "cuisine": "french", + "ingredients": [ + "romaine lettuce", + "large egg yolks", + "tarragon", + "water", + "toasted baguette", + "lump crab meat", + "chives", + "tomatoes", + "olive oil", + "white wine vinegar" + ] + }, + { + "id": 27381, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "vegetable oil", + "fresh lemon juice", + "avocado", + "shredded cheddar cheese", + "salt", + "corn tortillas", + "black beans", + "garlic", + "red bell pepper", + "green bell pepper", + "chopped tomatoes", + "salsa", + "onions" + ] + }, + { + "id": 30160, + "cuisine": "chinese", + "ingredients": [ + "water", + "sesame oil", + "carrots", + "canola oil", + "spinach", + "shiitake", + "salt", + "ground white pepper", + "dough", + "fresh ginger", + "dipping sauces", + "corn starch", + "sugar", + "regular soy sauce", + "pressed tofu", + "chinese chives" + ] + }, + { + "id": 6666, + "cuisine": "southern_us", + "ingredients": [ + "ground nutmeg", + "baking powder", + "all-purpose flour", + "egg yolks", + "butter", + "white sugar", + "egg whites", + "bourbon whiskey", + "chopped pecans", + "brown sugar", + "golden raisins", + "candied cherries" + ] + }, + { + "id": 25189, + "cuisine": "korean", + "ingredients": [ + "zucchini", + "garlic", + "water", + "green onions", + "jalapeno chilies", + "firm tofu", + "soy bean paste", + "vegetable stock" + ] + }, + { + "id": 44993, + "cuisine": "italian", + "ingredients": [ + "romaine lettuce", + "chicken breast halves", + "salt", + "frozen lemonade concentrate, thawed and undiluted", + "pepper", + "paprika", + "margarine", + "slivered almonds", + "vegetable oil", + "all-purpose flour", + "fresh parsley", + "capers", + "sweet onion", + "whipping cream", + "fresh lemon juice" + ] + }, + { + "id": 548, + "cuisine": "moroccan", + "ingredients": [ + "boneless chicken skinless thigh", + "olive oil", + "low-sodium fat-free chicken broth", + "salt", + "saffron", + "pepper", + "dried apricot", + "non-fat sour cream", + "cinnamon sticks", + "fresh cilantro", + "harissa paste", + "ras el hanout", + "flat leaf parsley", + "no-salt-added diced tomatoes", + "garbanzo beans", + "garlic", + "yellow onion" + ] + }, + { + "id": 1081, + "cuisine": "mexican", + "ingredients": [ + "tomato sauce", + "lean ground beef", + "onions", + "tomatoes", + "pepper", + "garlic", + "kosher salt", + "cilantro", + "ground cumin", + "capers", + "ground pepper", + "bay leaf" + ] + }, + { + "id": 48466, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "salt", + "sugar", + "almond extract", + "bing cherries", + "vanilla ice cream", + "large eggs", + "all-purpose flour", + "milk", + "vanilla extract", + "orange zest" + ] + }, + { + "id": 23580, + "cuisine": "french", + "ingredients": [ + "shortening", + "chicken parts", + "golden mushroom soup", + "sliced carrots", + "ground nutmeg" + ] + }, + { + "id": 981, + "cuisine": "indian", + "ingredients": [ + "cauliflower", + "coriander powder", + "salt", + "onions", + "water", + "small tomatoes", + "cumin seed", + "ground turmeric", + "garlic paste", + "potatoes", + "green chilies", + "frozen peas", + "garam masala", + "cilantro", + "oil" + ] + }, + { + "id": 21423, + "cuisine": "brazilian", + "ingredients": [ + "bay leaves", + "salt", + "chicken", + "paprika", + "garlic cloves", + "black pepper", + "dijon style mustard", + "onions", + "vegetable oil", + "beer" + ] + }, + { + "id": 8269, + "cuisine": "japanese", + "ingredients": [ + "white pepper", + "water", + "sesame oil", + "sugar", + "kosher salt", + "Shaoxing wine", + "konbu", + "soy sauce", + "lump crab meat", + "bonito flakes", + "flowering chinese chives", + "oloroso sherry", + "chinese black mushrooms", + "large eggs", + "heavy cream" + ] + }, + { + "id": 2809, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic", + "fat skimmed chicken broth", + "chipotle chile", + "chili powder", + "salt", + "chopped cilantro fresh", + "lime juice", + "queso fresco", + "yellow onion", + "ground cumin", + "tomatoes", + "olive oil", + "purple onion", + "corn tortillas" + ] + }, + { + "id": 5917, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "boneless skinless chicken breast halves", + "fat free less sodium chicken broth", + "salt", + "marsala wine", + "cooking spray", + "olive oil", + "sliced mushrooms" + ] + }, + { + "id": 36177, + "cuisine": "southern_us", + "ingredients": [ + "condensed cream of celery soup", + "green onions", + "paprika", + "mustard seeds", + "cooked rice", + "water", + "condensed cream of mushroom soup", + "salt", + "fresh parsley", + "crawfish", + "butter", + "garlic", + "celery", + "green bell pepper", + "sweet onion", + "worcestershire sauce", + "cayenne pepper" + ] + }, + { + "id": 33427, + "cuisine": "vietnamese", + "ingredients": [ + "chiles", + "water", + "salt", + "rice flour", + "pork shoulder", + "red chili peppers", + "vegetable oil", + "canned coconut milk", + "sliced mushrooms", + "sugar", + "lime juice", + "yellow onion", + "shrimp", + "ground turmeric", + "fish sauce", + "warm water", + "garlic", + "scallions", + "beansprouts" + ] + }, + { + "id": 27329, + "cuisine": "vietnamese", + "ingredients": [ + "baguette", + "salt", + "sugar", + "garlic", + "cucumber", + "mayonaise", + "chicken breasts", + "carrots", + "white vinegar", + "radishes", + "cilantro leaves" + ] + }, + { + "id": 10098, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "cooking spray", + "paprika", + "ground black pepper", + "chili powder", + "center cut pork loin chops", + "onion powder", + "garlic powder", + "barbecue sauce", + "salt" + ] + }, + { + "id": 16048, + "cuisine": "mexican", + "ingredients": [ + "salt", + "chipotles in adobo", + "black beans", + "adobo sauce", + "sour cream" + ] + }, + { + "id": 27676, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "black beans", + "Anaheim chile", + "chopped cilantro", + "cooked rice", + "cherry tomatoes", + "sauce", + "chicken", + "tomatoes", + "lime", + "purple onion", + "cooked chicken breasts", + "fat free yogurt", + "red cabbage", + "shredded cheese" + ] + }, + { + "id": 5629, + "cuisine": "thai", + "ingredients": [ + "water", + "salt", + "thai green curry paste", + "chicken stock", + "peeled fresh ginger", + "garlic cloves", + "snow peas", + "jasmine rice", + "boneless skinless chicken breasts", + "fresh lime juice", + "asian fish sauce", + "unsweetened coconut milk", + "coriander seeds", + "cilantro leaves", + "medium shrimp" + ] + }, + { + "id": 12841, + "cuisine": "indian", + "ingredients": [ + "clove", + "black peppercorns", + "vegetables", + "green chilies", + "curry leaves", + "coconut", + "cinnamon", + "onions", + "fennel seeds", + "garlic paste", + "beef", + "mustard seeds", + "tomatoes", + "coriander seeds", + "green cardamom", + "ginger paste" + ] + }, + { + "id": 17731, + "cuisine": "italian", + "ingredients": [ + "water", + "tuna steaks", + "extra-virgin olive oil", + "fresh lemon juice", + "pitted kalamata olives", + "fat-free cottage cheese", + "anchovy paste", + "garlic cloves", + "ground black pepper", + "red wine vinegar", + "salt", + "green beans", + "potatoes", + "worcestershire sauce", + "mixed greens" + ] + }, + { + "id": 19621, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "garlic", + "tumeric", + "chicken breasts", + "salt", + "plain yogurt", + "lemon", + "yellow onion", + "fresh ginger", + "paprika", + "cayenne pepper" + ] + }, + { + "id": 14056, + "cuisine": "southern_us", + "ingredients": [ + "cream cheese frosting", + "baking powder", + "salt", + "sugar", + "large eggs", + "vanilla extract", + "praline topping", + "unsalted butter", + "bourbon whiskey", + "chopped pecans", + "water", + "whole milk", + "cake flour" + ] + }, + { + "id": 28277, + "cuisine": "italian", + "ingredients": [ + "eggplant", + "zucchini", + "salt", + "fresh basil leaves", + "crushed tomatoes", + "ground black pepper", + "ground red pepper", + "chopped onion", + "olive oil", + "lasagna noodles", + "part-skim ricotta cheese", + "garlic cloves", + "part-skim mozzarella cheese", + "cooking spray", + "fresh oregano" + ] + }, + { + "id": 15, + "cuisine": "mexican", + "ingredients": [ + "water", + "crescent dinner rolls", + "sour cream", + "crescent rolls", + "chopped onion", + "refried beans", + "salsa", + "ground beef", + "shredded cheddar cheese", + "guacamole", + "taco seasoning" + ] + }, + { + "id": 34767, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "boneless skinless chicken breasts", + "garlic cloves", + "chopped cilantro fresh", + "ground black pepper", + "salt", + "greek yogurt", + "fresh ginger", + "vegetable oil", + "corn starch", + "sugar", + "low sodium chicken broth", + "yellow onion", + "frozen peas" + ] + }, + { + "id": 5842, + "cuisine": "italian", + "ingredients": [ + "condensed soup", + "shredded cheese", + "pasta", + "salt", + "boneless chicken breast", + "pepper", + "broccoli" + ] + }, + { + "id": 32674, + "cuisine": "italian", + "ingredients": [ + "white wine", + "boneless skinless chicken breast halves", + "butter", + "prosciutto", + "provolone cheese" + ] + }, + { + "id": 5095, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "fresh ginger", + "balsamic vinegar", + "garlic cloves", + "soy sauce", + "shallots", + "beef tenderloin", + "brandy", + "vegetable oil", + "scallions", + "red chili peppers", + "chinese noodles", + "star anise", + "grated orange" + ] + }, + { + "id": 30713, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "bell pepper", + "hoagie rolls", + "red wine", + "yellow onion", + "italian sausage", + "garlic", + "italian seasoning" + ] + }, + { + "id": 17809, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "chili powder", + "ground cumin", + "cayenne", + "corn tortillas", + "salt" + ] + }, + { + "id": 23675, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken stock", + "olive oil", + "diced tomatoes", + "freshly ground pepper", + "medium shrimp", + "dried oregano", + "cooked ham", + "red wine vinegar", + "salt", + "fat", + "frozen peas", + "white wine", + "lemon", + "yellow onion", + "flat leaf parsley", + "long grain white rice", + "green bell pepper", + "green onions", + "shells", + "garlic cloves", + "bone in skin on chicken thigh" + ] + }, + { + "id": 8232, + "cuisine": "italian", + "ingredients": [ + "part-skim mozzarella cheese", + "garlic cloves", + "fresh basil", + "acorn squash", + "onions", + "basil", + "orange rind", + "olive oil", + "freshly ground pepper", + "plum tomatoes" + ] + }, + { + "id": 24742, + "cuisine": "southern_us", + "ingredients": [ + "garlic powder", + "old bay seasoning", + "salt", + "pepper", + "onion powder", + "white rice", + "shrimp", + "chicken broth", + "chicken breasts", + "paprika", + "cayenne pepper", + "water", + "red pepper flakes", + "smoked sausage", + "bay leaf" + ] + }, + { + "id": 48227, + "cuisine": "filipino", + "ingredients": [ + "coconut meat", + "corn starch", + "jackfruit", + "condensed milk", + "corn kernel whole", + "grating cheese", + "coconut milk", + "evaporated milk", + "butter oil" + ] + }, + { + "id": 14602, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "pecans", + "all-purpose flour", + "cold water", + "vanilla extract", + "sugar" + ] + }, + { + "id": 25131, + "cuisine": "jamaican", + "ingredients": [ + "water", + "green onions", + "garlic cloves", + "soy sauce", + "bell pepper", + "salt", + "onions", + "red snapper", + "vinegar", + "sweet and sour sauce", + "thyme", + "ketchup", + "flour", + "oil", + "fish" + ] + }, + { + "id": 15080, + "cuisine": "greek", + "ingredients": [ + "yukon gold potatoes", + "sea salt", + "lemon", + "olive oil", + "onions" + ] + }, + { + "id": 47964, + "cuisine": "southern_us", + "ingredients": [ + "lime zest", + "jalapeno chilies", + "salsa", + "mango", + "olive oil", + "salt", + "scallions", + "black beans", + "fresh orange juice", + "swordfish fillets", + "ground black pepper", + "rice vinegar", + "red bell pepper" + ] + }, + { + "id": 29359, + "cuisine": "irish", + "ingredients": [ + "sourdough bread", + "balsamic vinegar", + "ground black pepper", + "salt", + "olive oil", + "spicy brown mustard", + "beef brisket", + "cabbage" + ] + }, + { + "id": 241, + "cuisine": "mexican", + "ingredients": [ + "prunes", + "sesame seeds", + "anise", + "low salt chicken broth", + "cashew nuts", + "ground cinnamon", + "peeled tomatoes", + "raisins", + "garlic cloves", + "onions", + "sugar", + "pumpernickel bread", + "salt", + "ancho chile pepper", + "boiling water", + "ground cloves", + "vegetable oil", + "ground coriander", + "corn tortillas" + ] + }, + { + "id": 29805, + "cuisine": "thai", + "ingredients": [ + "cooked rice", + "fresh ginger", + "vegetable oil", + "chopped cilantro fresh", + "reduced sodium chicken broth", + "mixed vegetables", + "garlic", + "sugar", + "spring onions", + "sea salt", + "whitefish", + "curry powder", + "lime wedges", + "coconut milk" + ] + }, + { + "id": 12540, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "riblets", + "garlic", + "fresh ginger", + "cracked black pepper", + "scallions", + "kosher salt", + "shallots", + "vietnamese fish sauce", + "sugar", + "pork spare ribs", + "dipping sauces", + "chopped cilantro fresh" + ] + }, + { + "id": 8904, + "cuisine": "southern_us", + "ingredients": [ + "sweet onion", + "corn bread", + "vegetable oil", + "yukon gold potatoes", + "okra" + ] + }, + { + "id": 39423, + "cuisine": "british", + "ingredients": [ + "puff paste", + "unsalted butter", + "watercress", + "black truffles", + "arrowroot", + "beef broth", + "cold water", + "large egg whites", + "mushrooms", + "fat", + "Madeira", + "large egg yolks", + "foie gras" + ] + }, + { + "id": 37760, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "freshly grated parmesan", + "russet", + "flour", + "nutmeg" + ] + }, + { + "id": 46312, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "salt", + "chicken", + "coriander powder", + "onions", + "ground cumin", + "ground paprika", + "chili powder", + "chicken thighs", + "sugar", + "sesame oil", + "ground turmeric" + ] + }, + { + "id": 31581, + "cuisine": "spanish", + "ingredients": [ + "water", + "salt", + "sugar", + "honey", + "slivered almonds", + "large egg whites", + "unsalted pistachios", + "whipping cream" + ] + }, + { + "id": 10292, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "fresh basil leaves", + "kosher salt", + "garlic", + "grape tomatoes", + "extra-virgin olive oil", + "freshly grated parmesan", + "Barilla Plus Pasta" + ] + }, + { + "id": 44335, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "vegetable shortening", + "melted butter", + "baking soda", + "salt", + "bacon drippings", + "milk", + "buttermilk", + "sugar", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 14854, + "cuisine": "cajun_creole", + "ingredients": [ + "chopped bell pepper", + "vegetable oil", + "cayenne pepper", + "flat leaf parsley", + "andouille sausage", + "green onions", + "all-purpose flour", + "whole chicken", + "cooked rice", + "bay leaves", + "salt", + "chopped onion", + "chicken broth", + "file powder", + "chopped celery", + "dri leav thyme" + ] + }, + { + "id": 30543, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "heavy cream", + "onions", + "turkey giblet stock", + "parmigiano reggiano cheese", + "garlic cloves", + "sausage casings", + "large eggs", + "flat leaf parsley", + "celery ribs", + "unsalted butter", + "italian loaf" + ] + }, + { + "id": 21859, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "green onions", + "ginger", + "noodles", + "sugar", + "peanuts", + "chili oil", + "liquid", + "dark soy sauce", + "light soy sauce", + "vegetable oil", + "garlic", + "baby bok choy", + "Shaoxing wine", + "ground pork", + "corn starch" + ] + }, + { + "id": 32891, + "cuisine": "indian", + "ingredients": [ + "tomato purée", + "cider vinegar", + "cardamom pods", + "cinnamon sticks", + "onions", + "brown sugar", + "fresh ginger", + "garlic cloves", + "light chicken stock", + "clove", + "fresh curry leaves", + "vegetable oil", + "mustard seeds", + "pork shoulder", + "black peppercorns", + "fresh coriander", + "cumin seed", + "chillies", + "ground turmeric" + ] + }, + { + "id": 42206, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame seeds", + "tahini", + "cilantro", + "corn starch", + "cooked rice", + "chili", + "pork chops", + "sesame oil", + "scallions", + "serrano chile", + "celery ribs", + "water", + "peanuts", + "water chestnuts", + "garlic", + "frozen peas", + "green bell pepper", + "fresh ginger", + "hoisin sauce", + "vegetable oil", + "carrots" + ] + }, + { + "id": 40311, + "cuisine": "moroccan", + "ingredients": [ + "orange marmalade", + "water", + "carrots", + "curry powder", + "salt" + ] + }, + { + "id": 28462, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "sweet potatoes", + "peanut butter", + "onions", + "dry roasted peanuts", + "whipping cream", + "cinnamon sticks", + "molasses", + "butter", + "garlic cloves", + "celery ribs", + "ground nutmeg", + "salt", + "thyme sprigs" + ] + }, + { + "id": 20007, + "cuisine": "indian", + "ingredients": [ + "fresh cilantro", + "salt", + "vegetable oil", + "ground turmeric", + "whole wheat flour", + "cayenne pepper", + "mashed potatoes", + "butter" + ] + }, + { + "id": 2937, + "cuisine": "spanish", + "ingredients": [ + "dry sherry", + "salt", + "olive oil", + "crushed red pepper flakes", + "medium shrimp", + "paprika", + "flat leaf parsley", + "ground black pepper", + "garlic" + ] + }, + { + "id": 43809, + "cuisine": "southern_us", + "ingredients": [ + "pure vanilla extract", + "granulated sugar", + "salt", + "dark corn syrup", + "bourbon whiskey", + "chopped pecans", + "dark chocolate", + "large eggs", + "all-purpose flour", + "unsalted butter", + "buttermilk" + ] + }, + { + "id": 41125, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "salt", + "milk", + "flour", + "confectioners sugar", + "orange", + "large eggs", + "peanut oil", + "superfine sugar", + "rum" + ] + }, + { + "id": 20852, + "cuisine": "thai", + "ingredients": [ + "potatoes", + "light coconut milk", + "chopped cilantro fresh", + "green bell pepper", + "Thai red curry paste", + "red bell pepper", + "vegetable oil", + "salt", + "brown sugar", + "cauliflower florets", + "onions" + ] + }, + { + "id": 38767, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "green onions", + "sake", + "beef", + "onions", + "eggs", + "gari", + "oil", + "sugar", + "mirin" + ] + }, + { + "id": 35157, + "cuisine": "spanish", + "ingredients": [ + "saffron threads", + "french bread", + "extra-virgin olive oil", + "garlic cloves", + "ground black pepper", + "ground veal", + "all-purpose flour", + "flat leaf parsley", + "hungarian sweet paprika", + "dry white wine", + "salt", + "low salt chicken broth", + "large eggs", + "ground pork", + "chopped onion" + ] + }, + { + "id": 3591, + "cuisine": "italian", + "ingredients": [ + "bread crumbs", + "pecorino romano cheese", + "onions", + "unsalted butter", + "salt", + "prosciutto", + "gruyere cheese", + "pasta shapes", + "fresh thyme leaves", + "sauce" + ] + }, + { + "id": 19221, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "balsamic reduction", + "mozzarella cheese", + "pie crust", + "plum tomatoes" + ] + }, + { + "id": 33058, + "cuisine": "french", + "ingredients": [ + "sugar", + "vanilla extract", + "firmly packed light brown sugar", + "whipping cream", + "macadamia nuts", + "fresh raspberries", + "egg yolks", + "fresh mint" + ] + }, + { + "id": 38908, + "cuisine": "mexican", + "ingredients": [ + "green onions", + "tomatillos", + "nonstick spray", + "sugar", + "chile pepper", + "salsa", + "cooked chicken breasts", + "tomatoes", + "mexican style 4 cheese blend", + "salt", + "corn tortillas", + "fresh cilantro", + "vegetable oil", + "chopped onion", + "ground cumin" + ] + }, + { + "id": 44190, + "cuisine": "japanese", + "ingredients": [ + "water", + "corn starch", + "boneless skinless chicken breasts", + "vegetables", + "cooked white rice", + "teriyaki sauce" + ] + }, + { + "id": 4091, + "cuisine": "japanese", + "ingredients": [ + "white vinegar", + "light soy sauce", + "wasabi paste", + "salmon sashimi", + "avocado", + "furikake", + "eggs", + "white rice" + ] + }, + { + "id": 576, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "salt", + "black pepper", + "onion powder", + "dried thyme", + "paprika", + "ground red pepper" + ] + }, + { + "id": 26499, + "cuisine": "italian", + "ingredients": [ + "chives", + "garlic", + "ground black pepper", + "butter", + "grated parmesan cheese", + "heavy cream", + "artichoke hearts", + "fusilli", + "salt" + ] + }, + { + "id": 35045, + "cuisine": "indian", + "ingredients": [ + "mission figs", + "fresh orange juice", + "serrano chile", + "brown sugar", + "peeled fresh ginger", + "fresh lemon juice", + "ground cinnamon", + "pistachios", + "cranberries", + "ground cumin", + "kosher salt", + "vegetable oil", + "mustard seeds" + ] + }, + { + "id": 30354, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "grape tomatoes", + "extra-virgin olive oil", + "fresh mozzarella balls", + "fresh basil leaves", + "sea salt" + ] + }, + { + "id": 21996, + "cuisine": "italian", + "ingredients": [ + "genoa salami", + "ground black pepper", + "red bell pepper", + "olive oil", + "purple onion", + "kosher salt", + "red wine vinegar", + "flat leaf parsley", + "tortellini, cook and drain", + "lemon juice" + ] + }, + { + "id": 65, + "cuisine": "italian", + "ingredients": [ + "pecorino cheese", + "garlic", + "basil leaves", + "spaghetti squash", + "olive oil", + "salt", + "tomatoes", + "balsamic vinegar" + ] + }, + { + "id": 5757, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "iced tea", + "peaches", + "vodka", + "light corn syrup" + ] + }, + { + "id": 23898, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "celery", + "white pepper", + "garlic", + "soy sauce", + "ginger", + "soba", + "brown sugar", + "shredded cabbage", + "onions" + ] + }, + { + "id": 43183, + "cuisine": "southern_us", + "ingredients": [ + "white pepper", + "half & half", + "butter", + "hot sauce", + "medium shrimp", + "chicken broth", + "water", + "lemon wedge", + "salt", + "fresh lemon juice", + "shredded cheddar cheese", + "green onions", + "bacon slices", + "garlic cloves", + "grits", + "black pepper", + "grated parmesan cheese", + "low-sodium fat-free chicken broth", + "all-purpose flour", + "sliced mushrooms" + ] + }, + { + "id": 28661, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "salt", + "garlic cloves", + "fat free less sodium chicken broth", + "ground red pepper", + "and fat free half half", + "cooking spray", + "chopped onion", + "leg of lamb", + "sweet potatoes", + "dark sesame oil" + ] + }, + { + "id": 29387, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "vegetable oil", + "diced tomatoes in juice", + "cumin", + "cod fillets", + "cardamom", + "onions", + "tumeric", + "salt", + "chopped cilantro", + "ginger paste", + "jalapeno chilies", + "lemon juice", + "coriander" + ] + }, + { + "id": 8433, + "cuisine": "mexican", + "ingredients": [ + "chorizo", + "salt", + "white onion", + "whole wheat tortillas", + "chopped cilantro fresh", + "red potato", + "queso fresco", + "fresh lime juice", + "tomatoes", + "olive oil", + "poblano chiles" + ] + }, + { + "id": 18639, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "salt", + "linguine", + "fresh lemon juice", + "grated parmesan cheese", + "garlic cloves", + "pancetta", + "crushed red pepper", + "greens" + ] + }, + { + "id": 1734, + "cuisine": "italian", + "ingredients": [ + "swiss chard", + "onions", + "water", + "extra-virgin olive oil", + "dried currants", + "kalamata", + "spaghetti", + "feta cheese", + "garlic cloves" + ] + }, + { + "id": 31920, + "cuisine": "mexican", + "ingredients": [ + "chicken broth", + "black pepper", + "diced tomatoes", + "bay leaf", + "brown sugar", + "vegetable oil", + "garlic", + "semi-sweet chocolate morsels", + "ground cloves", + "raisins", + "cayenne pepper", + "chicken", + "ground cinnamon", + "sesame seeds", + "paprika", + "onions" + ] + }, + { + "id": 46351, + "cuisine": "thai", + "ingredients": [ + "baby bok choy", + "soft tofu", + "carrots", + "linguini", + "kaffir lime leaves", + "lemongrass", + "ginger", + "coconut milk", + "soy sauce", + "rice noodles", + "beansprouts", + "fresh basil", + "vegetables", + "broccoli", + "celery" + ] + }, + { + "id": 23372, + "cuisine": "japanese", + "ingredients": [ + "olive oil", + "chicken breasts", + "salt", + "raw honey", + "cilantro", + "ground black pepper", + "lemon wedge", + "garlic cloves", + "soy sauce", + "Sriracha", + "ginger" + ] + }, + { + "id": 35125, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "fresh lemon juice", + "garlic", + "fresh oregano", + "parsley" + ] + }, + { + "id": 38837, + "cuisine": "southern_us", + "ingredients": [ + "yellow corn meal", + "coarse salt", + "unsalted butter", + "baking soda", + "buttermilk", + "large eggs" + ] + }, + { + "id": 26022, + "cuisine": "vietnamese", + "ingredients": [ + "red leaf lettuce", + "thai basil", + "boneless skinless chicken breasts", + "white sugar", + "fish sauce", + "fresh cilantro", + "lemon grass", + "peanut oil", + "seedless cucumber", + "ground peanut", + "jalapeno chilies", + "fresh mint", + "lime juice", + "fresh ginger root", + "sesame oil", + "rice paper" + ] + }, + { + "id": 1445, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "red wine vinegar", + "garlic powder", + "cucumber", + "green olives", + "yukon gold potatoes", + "celery", + "salt and ground black pepper", + "purple onion" + ] + }, + { + "id": 9823, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "tomatillos", + "marjoram", + "chicken broth", + "roma tomatoes", + "sauce", + "chicken", + "dried thyme", + "coarse sea salt", + "dried oregano", + "chipotle chile", + "vegetable oil", + "garlic cloves" + ] + }, + { + "id": 27526, + "cuisine": "southern_us", + "ingredients": [ + "evaporated milk", + "extra-virgin olive oil", + "large shrimp", + "cheddar cheese", + "quickcooking grits", + "okra", + "flour", + "salt", + "pepper", + "bacon", + "scallions" + ] + }, + { + "id": 41094, + "cuisine": "indian", + "ingredients": [ + "yellow mustard seeds", + "black mustard seeds", + "vegetable oil", + "ground red pepper", + "ground turmeric", + "turnips", + "salt" + ] + }, + { + "id": 23301, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "butter", + "salt", + "sour cream", + "chicken stock", + "garlic powder", + "cilantro", + "Mexican cheese", + "cumin", + "corn", + "paprika", + "rice", + "onions", + "ground chipotle chile pepper", + "cooked chicken", + "garlic", + "red bell pepper" + ] + }, + { + "id": 9120, + "cuisine": "french", + "ingredients": [ + "pitted kalamata olives", + "anchovy fillets", + "finely chopped fresh parsley", + "capers", + "garlic cloves" + ] + }, + { + "id": 3919, + "cuisine": "mexican", + "ingredients": [ + "pepper jack", + "tomatillos", + "farmer cheese", + "sour cream", + "cooked chicken", + "cilantro", + "freshly ground pepper", + "ground cumin", + "jalapeno chilies", + "large garlic cloves", + "tortilla chips", + "coriander", + "vegetable oil", + "salt", + "scallions" + ] + }, + { + "id": 32157, + "cuisine": "southern_us", + "ingredients": [ + "salt", + "ground pepper", + "dry mustard", + "garlic powder" + ] + }, + { + "id": 25104, + "cuisine": "japanese", + "ingredients": [ + "dashi powder", + "udon", + "onions", + "sake", + "honey", + "green onions", + "water", + "curry sauce", + "soy sauce", + "beef", + "vegetable oil" + ] + }, + { + "id": 4536, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium soy sauce", + "rice vinegar", + "chopped cilantro fresh", + "sesame oil", + "red bell pepper", + "canola oil", + "whole wheat spaghetti", + "scallions", + "snow peas", + "crushed red pepper", + "toasted sesame seeds" + ] + }, + { + "id": 12145, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "cayenne pepper", + "ground cumin", + "ground cinnamon", + "ground black pepper", + "ground coriander", + "brown sugar", + "salt", + "lemon juice", + "garam masala", + "chickpeas" + ] + }, + { + "id": 13705, + "cuisine": "italian", + "ingredients": [ + "basil leaves", + "heavy cream", + "ground black pepper", + "chicken breasts", + "salt", + "grated parmesan cheese", + "butter", + "penne pasta", + "half & half", + "lemon" + ] + }, + { + "id": 11937, + "cuisine": "mexican", + "ingredients": [ + "garlic powder", + "guacamole", + "sharp cheddar cheese", + "chopped cilantro fresh", + "sliced tomatoes", + "ground black pepper", + "lean ground beef", + "cornmeal", + "lettuce", + "diced green chilies", + "onion powder", + "smoked paprika", + "cumin", + "table salt", + "large eggs", + "salsa", + "onions" + ] + }, + { + "id": 43922, + "cuisine": "jamaican", + "ingredients": [ + "papaya", + "cooking spray", + "red bell pepper", + "mango", + "jamaican jerk season", + "purple onion", + "fresh lime juice", + "large egg whites", + "sweet and sour sauce", + "ground turkey", + "lime rind", + "kaiser rolls", + "dry bread crumbs", + "chopped cilantro fresh" + ] + }, + { + "id": 38088, + "cuisine": "japanese", + "ingredients": [ + "vinegar", + "sugar", + "hot water", + "spring onions", + "gyoza", + "chillies" + ] + }, + { + "id": 30221, + "cuisine": "cajun_creole", + "ingredients": [ + "catfish fillets", + "cider vinegar", + "ground red pepper", + "salt", + "sugar", + "garlic powder", + "butter", + "dried oregano", + "green cabbage", + "dried thyme", + "light mayonnaise", + "all-purpose flour", + "black pepper", + "flour tortillas", + "paprika" + ] + }, + { + "id": 17158, + "cuisine": "italian", + "ingredients": [ + "bread, cut into italian loaf", + "shredded mozzarella cheese", + "butter", + "garlic powder", + "dried parsley" + ] + }, + { + "id": 47631, + "cuisine": "thai", + "ingredients": [ + "green bell pepper", + "mung beans", + "mango chutney", + "yellow onion", + "lime juice", + "flour", + "vegetable broth", + "red bell pepper", + "zucchini", + "nori flakes", + "garlic", + "soy sauce", + "extra firm tofu", + "Thai red curry paste", + "crushed pineapple" + ] + }, + { + "id": 21614, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "boneless skinless chicken breasts", + "garlic", + "bay leaf", + "tomato sauce", + "diced tomatoes", + "scallions", + "chicken", + "andouille sausage", + "brown rice", + "cayenne pepper", + "onions", + "celery ribs", + "olive oil", + "paprika", + "shrimp" + ] + }, + { + "id": 44458, + "cuisine": "french", + "ingredients": [ + "warm water", + "salt", + "unsalted butter", + "caster sugar", + "bread flour", + "instant yeast" + ] + }, + { + "id": 6853, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "olive oil", + "mushrooms", + "salt", + "pepper", + "lasagna noodles", + "diced tomatoes", + "onions", + "mozzarella cheese", + "parmesan cheese", + "butter", + "ground turkey", + "tomato paste", + "milk", + "flour", + "garlic", + "italian seasoning" + ] + }, + { + "id": 14039, + "cuisine": "indian", + "ingredients": [ + "red chili powder", + "coriander seeds", + "peas", + "green chilies", + "coriander", + "black peppercorns", + "water", + "ginger", + "salt", + "onions", + "tomatoes", + "cream", + "cinnamon", + "paneer", + "oil", + "ground turmeric", + "clove", + "sugar", + "garam masala", + "garlic", + "cumin seed", + "cashew nuts" + ] + }, + { + "id": 37231, + "cuisine": "japanese", + "ingredients": [ + "scallion greens", + "dashi", + "shiro miso", + "wakame", + "soft tofu" + ] + }, + { + "id": 27241, + "cuisine": "cajun_creole", + "ingredients": [ + "caster sugar", + "egg yolks", + "eggs", + "unsalted butter", + "corn starch", + "plain flour", + "milk", + "salt", + "vanilla essence", + "dry yeast" + ] + }, + { + "id": 26565, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "water", + "dry white wine", + "garlic cloves", + "parmigiano-reggiano cheese", + "cooking spray", + "baby spinach", + "arborio rice", + "green lentil", + "shallots", + "fat free less sodium chicken broth", + "leeks", + "chopped onion" + ] + }, + { + "id": 8314, + "cuisine": "italian", + "ingredients": [ + "salt", + "large egg yolks", + "water", + "all-purpose flour", + "large eggs" + ] + }, + { + "id": 17053, + "cuisine": "italian", + "ingredients": [ + "zucchini", + "fresh basil leaves", + "marinara sauce", + "lasagna noodles", + "low-fat ricotta cheese", + "grated parmesan cheese", + "plum tomatoes" + ] + }, + { + "id": 43216, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "fresh bean", + "toasted sesame oil" + ] + }, + { + "id": 22943, + "cuisine": "italian", + "ingredients": [ + "water", + "diced tomatoes", + "sliced mushrooms", + "tomato sauce", + "dried basil", + "chopped onion", + "ground beef", + "pasta sauce", + "rosemary", + "grated carrot", + "chopped parsley", + "sugar", + "beef", + "sausages", + "chopped garlic" + ] + }, + { + "id": 29132, + "cuisine": "indian", + "ingredients": [ + "chile pepper", + "fenugreek seeds", + "dried red chile peppers", + "buttermilk", + "mustard seeds", + "vegetable oil", + "cumin seed", + "ground turmeric", + "fresh curry leaves", + "salt", + "asafoetida powder" + ] + }, + { + "id": 33568, + "cuisine": "southern_us", + "ingredients": [ + "syrup", + "white sugar", + "butter", + "self rising flour", + "blackberries", + "cold water", + "vegetable shortening" + ] + }, + { + "id": 26876, + "cuisine": "thai", + "ingredients": [ + "soy sauce", + "creamy peanut butter", + "chicken wings", + "pork back ribs", + "apple juice concentrate", + "fresh cilantro", + "garlic cloves", + "sugar", + "fresh ginger" + ] + }, + { + "id": 10320, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "ginger", + "lumpia wrappers", + "ground black pepper", + "garlic", + "eggs", + "ground pork" + ] + }, + { + "id": 30483, + "cuisine": "southern_us", + "ingredients": [ + "baking powder", + "boiling water", + "milk", + "salt", + "large eggs", + "cornmeal", + "butter" + ] + }, + { + "id": 7149, + "cuisine": "spanish", + "ingredients": [ + "extra-virgin olive oil", + "green pumpkin seeds", + "chopped cilantro fresh", + "cooked rice", + "spanish chorizo", + "onions", + "hot red pepper flakes", + "cumin seed", + "frozen peas", + "salt", + "red bell pepper" + ] + }, + { + "id": 6529, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "shredded swiss cheese", + "honey mustard", + "cider vinegar", + "salt", + "sugar", + "bacon slices", + "eggs", + "green onions", + "freshly ground pepper" + ] + }, + { + "id": 28124, + "cuisine": "british", + "ingredients": [ + "gin", + "lemon", + "rhubarb", + "kosher salt", + "strawberries", + "light brown sugar", + "egg whites", + "fresh basil leaves", + "sugar", + "heavy cream" + ] + }, + { + "id": 37053, + "cuisine": "italian", + "ingredients": [ + "conchiglie", + "garlic cloves", + "pancetta", + "crushed red pepper", + "diced tomatoes", + "onions", + "parmigiano-reggiano cheese", + "salt" + ] + }, + { + "id": 14624, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "cachaca", + "passion fruit", + "caster sugar", + "ice" + ] + }, + { + "id": 48049, + "cuisine": "brazilian", + "ingredients": [ + "garlic", + "carrots", + "water", + "cayenne pepper", + "onions", + "black beans", + "salt", + "red bell pepper", + "olive oil", + "orange juice", + "ground cumin" + ] + }, + { + "id": 15761, + "cuisine": "chinese", + "ingredients": [ + "molasses", + "cracked black pepper", + "toasted sesame oil", + "chili paste", + "orange juice", + "fresh ginger", + "rice vinegar", + "soy sauce", + "hoisin sauce", + "chinese five-spice powder" + ] + }, + { + "id": 46475, + "cuisine": "spanish", + "ingredients": [ + "large eggs", + "kosher salt", + "red bliss potato", + "extra-virgin olive oil", + "ground black pepper", + "onions" + ] + }, + { + "id": 12090, + "cuisine": "chinese", + "ingredients": [ + "large egg whites", + "rice wine", + "chinese wheat noodles", + "carrots", + "cashew nuts", + "fresh spinach", + "extra large shrimp", + "vegetable oil", + "low sodium chicken stock", + "red bell pepper", + "straw mushrooms", + "water chestnuts", + "coarse salt", + "scallions", + "toasted sesame oil", + "potato starch", + "fresh ginger", + "chile pepper", + "garlic", + "corn starch" + ] + }, + { + "id": 7706, + "cuisine": "italian", + "ingredients": [ + "brown sugar", + "grated parmesan cheese", + "garlic", + "ground beef", + "eggs", + "ground black pepper", + "red pepper flakes", + "fresh oregano", + "onions", + "fresh basil", + "zucchini", + "diced tomatoes", + "shredded mozzarella cheese", + "tomato paste", + "bulk italian sausag", + "ricotta cheese", + "salt", + "fresh parsley" + ] + }, + { + "id": 1597, + "cuisine": "chinese", + "ingredients": [ + "green onions", + "seasoned rice wine vinegar", + "ground turkey", + "soy sauce", + "ginger", + "garlic chili sauce", + "sesame oil", + "medium-grain rice", + "hoisin sauce", + "garlic", + "green beans" + ] + }, + { + "id": 47444, + "cuisine": "italian", + "ingredients": [ + "fresh rosemary", + "pizza doughs", + "coarse salt", + "cornmeal", + "unsalted butter", + "garlic cloves", + "extra-virgin olive oil" + ] + }, + { + "id": 2722, + "cuisine": "french", + "ingredients": [ + "black pepper", + "leeks", + "salt", + "turnips", + "cooked turkey", + "dry white wine", + "carrots", + "rutabaga", + "olive oil", + "chopped fresh thyme", + "thyme sprigs", + "fat free less sodium chicken broth", + "mushrooms", + "garlic cloves" + ] + }, + { + "id": 19410, + "cuisine": "italian", + "ingredients": [ + "penne", + "cooking spray", + "roasted red peppers", + "garlic cloves", + "ground black pepper", + "Italian turkey sausage", + "tomatoes", + "grated parmesan cheese" + ] + }, + { + "id": 43527, + "cuisine": "chinese", + "ingredients": [ + "chiles", + "orange", + "crushed red pepper", + "low sodium soy sauce", + "soy sauce", + "peeled fresh ginger", + "corn starch", + "cooked rice", + "boneless chicken skinless thigh", + "garlic", + "canola oil", + "scallion greens", + "sugar", + "Shaoxing wine", + "rice vinegar" + ] + }, + { + "id": 29671, + "cuisine": "vietnamese", + "ingredients": [ + "water", + "cilantro leaves", + "beansprouts", + "fresh basil leaves", + "sugar", + "salt", + "red bell pepper", + "fresh lime juice", + "tumeric", + "Sriracha", + "cucumber", + "coconut milk", + "fish sauce", + "canola", + "rice flour", + "fresh mint" + ] + }, + { + "id": 44961, + "cuisine": "italian", + "ingredients": [ + "kirschenliqueur", + "orange liqueur", + "slivered almonds", + "whipping cream", + "unsweetened cocoa powder", + "hazelnuts", + "pound cake", + "powdered sugar", + "semisweet chocolate", + "grappa" + ] + }, + { + "id": 3288, + "cuisine": "italian", + "ingredients": [ + "sugar", + "parsley", + "garlic", + "oregano", + "crushed tomatoes", + "heavy cream", + "salt", + "vodka", + "butter", + "crushed red pepper", + "grated parmesan cheese", + "basil", + "onions" + ] + }, + { + "id": 1652, + "cuisine": "filipino", + "ingredients": [ + "fish sauce", + "bihon", + "garlic", + "onions", + "soy sauce", + "vegetable oil", + "green beans", + "pork", + "chicken breasts", + "carrots", + "cabbage", + "chicken broth", + "ground pepper", + "calamansi juice", + "celery" + ] + }, + { + "id": 2157, + "cuisine": "italian", + "ingredients": [ + "parsley flakes", + "parmesan cheese", + "ground beef", + "tomato paste", + "mozzarella cheese", + "basil", + "tomatoes", + "pepper", + "garlic", + "eggs", + "ricotta cheese", + "noodles" + ] + }, + { + "id": 9946, + "cuisine": "italian", + "ingredients": [ + "cooking spray", + "fresh lemon juice", + "eggplant", + "salt", + "tomatoes", + "extra-virgin olive oil", + "chopped fresh mint", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 46675, + "cuisine": "chinese", + "ingredients": [ + "chili pepper", + "zucchini", + "rice wine", + "cornflour", + "soy sauce", + "fresh ginger", + "spring onions", + "sesame oil", + "red bell pepper", + "white pepper", + "peanuts", + "chicken breasts", + "vegetable oil", + "sugar", + "pepper", + "hoisin sauce", + "marinade", + "garlic cloves" + ] + }, + { + "id": 21908, + "cuisine": "japanese", + "ingredients": [ + "water", + "salt", + "egg yolks", + "corn starch", + "egg whites", + "all-purpose flour", + "vegetable oil", + "medium shrimp" + ] + }, + { + "id": 15708, + "cuisine": "italian", + "ingredients": [ + "pepper", + "french bread", + "dried oregano", + "zucchini", + "salt", + "tomatoes", + "grated parmesan cheese", + "fresh oregano", + "olive oil", + "garlic" + ] + }, + { + "id": 38643, + "cuisine": "cajun_creole", + "ingredients": [ + "powdered sugar", + "flour", + "bread flour", + "baking soda", + "buttermilk", + "active dry yeast", + "whole milk", + "canola oil", + "granulated sugar", + "salt" + ] + }, + { + "id": 41025, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "coconut milk", + "sea salt", + "bananas", + "oil" + ] + }, + { + "id": 40173, + "cuisine": "french", + "ingredients": [ + "olive oil", + "long-grain rice", + "pinenuts", + "freshly ground pepper", + "saffron", + "salt", + "bay leaf", + "grated nutmeg", + "onions" + ] + }, + { + "id": 33050, + "cuisine": "southern_us", + "ingredients": [ + "buttermilk", + "self rising flour", + "melted butter", + "cream cheese", + "butter" + ] + }, + { + "id": 18171, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "olive oil", + "garlic", + "onions", + "lime juice", + "chili powder", + "whole kernel corn, drain", + "cumin", + "water", + "boneless chicken breast halves", + "tortilla chips", + "chopped cilantro fresh", + "chicken broth", + "crushed tomatoes", + "chile pepper", + "sour cream", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 35689, + "cuisine": "french", + "ingredients": [ + "unsalted butter", + "all-purpose flour", + "cold water", + "sea salt" + ] + }, + { + "id": 32663, + "cuisine": "chinese", + "ingredients": [ + "rice", + "green onions", + "ham", + "eggs", + "peanut oil", + "peas", + "dried shrimp" + ] + }, + { + "id": 31214, + "cuisine": "italian", + "ingredients": [ + "pepper", + "vegetable oil", + "fettucine", + "unsalted butter", + "cherry tomatoes", + "prepar pesto", + "boneless skinless chicken breasts" + ] + }, + { + "id": 27883, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "milk", + "salt", + "carrots", + "white vinegar", + "sugar", + "cajun seasoning", + "hot sauce", + "chicken thighs", + "green cabbage", + "pepper", + "paprika", + "peanut oil", + "panko breadcrumbs", + "mayonaise", + "chives", + "all-purpose flour", + "onions" + ] + }, + { + "id": 42502, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "cayenne pepper", + "ground cumin", + "mexicorn", + "fresh lime juice", + "green onions", + "sour cream", + "cheddar cheese", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 18249, + "cuisine": "italian", + "ingredients": [ + "tomato sauce", + "ground pepper", + "Italian bread", + "part-skim mozzarella cheese", + "dry bread crumbs", + "eggplant", + "coarse salt", + "olive oil", + "large eggs" + ] + }, + { + "id": 40221, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "dried dill", + "dried parsley", + "onion powder", + "Mexican cheese", + "garlic powder", + "tortilla chips", + "salsa", + "sour cream" + ] + }, + { + "id": 39046, + "cuisine": "spanish", + "ingredients": [ + "matzo meal", + "dry white wine", + "smoked paprika", + "orange zest", + "sherry vinegar", + "garlic cloves", + "sardines", + "olive oil", + "purple onion", + "cinnamon sticks", + "lemon zest", + "carrots", + "dried oregano" + ] + }, + { + "id": 27408, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "garlic powder", + "gravy", + "sea salt", + "pork loin chops", + "bread crumbs", + "ground black pepper", + "onion powder", + "chopped onion", + "eggs", + "pork chops", + "whole milk", + "all-purpose flour", + "olive oil", + "flour", + "butter", + "and fat free half half" + ] + }, + { + "id": 36097, + "cuisine": "italian", + "ingredients": [ + "finely chopped onion", + "baby spinach", + "fresh parmesan cheese", + "dry white wine", + "salt", + "large egg whites", + "large eggs", + "bacon slices", + "ground black pepper", + "gluten-free spaghetti", + "fresh parsley" + ] + }, + { + "id": 7208, + "cuisine": "italian", + "ingredients": [ + "butter", + "rigatoni", + "grated parmesan cheese", + "all-purpose flour", + "bread crumb fresh", + "whipping cream", + "whole milk", + "gorgonzola" + ] + }, + { + "id": 48027, + "cuisine": "filipino", + "ingredients": [ + "pork belly", + "shredded cabbage", + "salt", + "chicken stock", + "apple brandy", + "grapeseed oil", + "sugar", + "sliced apples", + "apple cider", + "juniper berries", + "apple cider vinegar", + "mustard seeds" + ] + }, + { + "id": 43334, + "cuisine": "irish", + "ingredients": [ + "turbinado", + "strawberries", + "heavy cream", + "steel-cut oats", + "salt" + ] + }, + { + "id": 48192, + "cuisine": "indian", + "ingredients": [ + "warm water", + "flour", + "coriander powder", + "baking powder", + "garam masala", + "celtic salt", + "fresh spinach", + "potatoes", + "chili powder" + ] + }, + { + "id": 25469, + "cuisine": "italian", + "ingredients": [ + "sugar", + "cooking spray", + "garlic cloves", + "active dry yeast", + "salt", + "warm water", + "kalamata", + "fleur de sel", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 9163, + "cuisine": "southern_us", + "ingredients": [ + "light brown sugar", + "butter", + "blackberries", + "peaches", + "all-purpose flour", + "sugar", + "salt", + "cinnamon", + "oatmeal" + ] + }, + { + "id": 29922, + "cuisine": "indian", + "ingredients": [ + "coconut oil", + "whole wheat flour", + "green chilies", + "water", + "salt", + "chopped cilantro fresh", + "tumeric", + "baking potatoes", + "onions", + "amchur", + "all-purpose flour", + "ground cumin" + ] + }, + { + "id": 8327, + "cuisine": "italian", + "ingredients": [ + "lasagna noodles", + "ground beef", + "pasta sauce", + "2% milk shredded mozzarella cheese", + "water", + "Kraft Grated Parmesan Cheese", + "eggs", + "ricotta cheese", + "fresh parsley" + ] + }, + { + "id": 2089, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "garlic cloves", + "plum tomatoes", + "green bell pepper", + "jalapeno chilies", + "chopped cilantro fresh", + "sweet onion", + "green onions", + "italian salad dressing", + "Belgian endive", + "frozen whole kernel corn", + "sour cream" + ] + }, + { + "id": 48279, + "cuisine": "korean", + "ingredients": [ + "tortillas", + "kimchi", + "sesame seeds", + "butter", + "garlic powder", + "sirloin steak", + "cheddar cheese", + "green onions" + ] + }, + { + "id": 31273, + "cuisine": "italian", + "ingredients": [ + "large egg yolks", + "heavy cream", + "grappa", + "vanilla beans", + "granulated sugar", + "bread flour", + "mascarpone", + "confectioners sugar", + "blackberries", + "eggs", + "unsalted butter", + "cornmeal" + ] + }, + { + "id": 30234, + "cuisine": "moroccan", + "ingredients": [ + "tumeric", + "harissa paste", + "black olives", + "garlic cloves", + "ground cumin", + "chicken stock", + "black pepper", + "cinnamon", + "cilantro leaves", + "onions", + "boneless chicken thighs", + "vegetable oil", + "runny honey", + "smoked paprika", + "preserved lemon", + "zucchini", + "ginger", + "cayenne pepper", + "saffron" + ] + }, + { + "id": 25504, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "arugula", + "parmesan cheese", + "porterhouse steaks" + ] + }, + { + "id": 23910, + "cuisine": "chinese", + "ingredients": [ + "minced garlic", + "sesame oil", + "vegetables", + "oyster sauce", + "minced ginger", + "granulated white sugar", + "low sodium soy sauce", + "egg noodles" + ] + }, + { + "id": 40274, + "cuisine": "indian", + "ingredients": [ + "ground cinnamon", + "vanilla extract", + "ground cardamom", + "unsalted butter", + "all-purpose flour", + "powdered sugar", + "salt", + "toasted almonds", + "almond extract", + "ground allspice" + ] + }, + { + "id": 33320, + "cuisine": "french", + "ingredients": [ + "white wine", + "ground black pepper", + "salt", + "fresh rosemary", + "water", + "cooking spray", + "corn starch", + "fat free less sodium chicken broth", + "fresh thyme", + "garlic cloves", + "cremini mushrooms", + "olive oil", + "chopped fresh thyme", + "beef tenderloin steaks" + ] + }, + { + "id": 2992, + "cuisine": "italian", + "ingredients": [ + "lean ground beef", + "italian seasoning", + "pasta sauce", + "cream cheese", + "garlic", + "parmesan cheese", + "spaghetti" + ] + }, + { + "id": 1455, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "italian plum tomatoes", + "dried oregano", + "grated parmesan cheese", + "linguine", + "artichok heart marin", + "onions", + "olive oil", + "large garlic cloves" + ] + }, + { + "id": 33638, + "cuisine": "mexican", + "ingredients": [ + "chiles", + "wonton wrappers", + "sour cream", + "corn kernels", + "salt", + "black beans", + "purple onion", + "chopped cilantro", + "tomatoes", + "vegetable oil", + "hot sauce" + ] + }, + { + "id": 31780, + "cuisine": "southern_us", + "ingredients": [ + "water", + "butter", + "eggs", + "processed cheese", + "milk", + "salt", + "minced garlic", + "quickcooking grits" + ] + }, + { + "id": 49273, + "cuisine": "mexican", + "ingredients": [ + "guajillo chiles", + "sesame seeds", + "ancho chile pepper", + "pasilla chiles", + "water", + "salt", + "plum tomatoes", + "black pepper", + "fresh ginger", + "garlic cloves", + "canola oil", + "black peppercorns", + "white onion", + "sea salt", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 4218, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "raw sugar", + "coarse kosher salt", + "sugar", + "baking powder", + "cake flour", + "large eggs", + "star anise", + "grated lemon peel", + "baking soda", + "raisins", + "heavy whipping cream" + ] + }, + { + "id": 19686, + "cuisine": "brazilian", + "ingredients": [ + "minced garlic", + "olive oil", + "salt", + "tilapia fillets", + "bell pepper", + "coconut milk", + "lime juice", + "diced tomatoes", + "onions", + "pepper", + "fresh cilantro", + "paprika", + "ground cumin" + ] + }, + { + "id": 45878, + "cuisine": "jamaican", + "ingredients": [ + "bread", + "mayonaise", + "jerk seasoning", + "olive oil", + "snapper fillets", + "tomatoes", + "kosher salt", + "milk", + "green leaf lettuce", + "fish", + "sandwiches", + "sugar", + "water", + "flour", + "softened butter", + "coconut oil", + "pepper", + "active dry yeast", + "salt" + ] + }, + { + "id": 19079, + "cuisine": "russian", + "ingredients": [ + "squirt", + "lemon", + "all-purpose flour", + "ground cinnamon", + "large eggs", + "apples", + "unsalted butter", + "raisins", + "sugar", + "baking powder", + "salt" + ] + }, + { + "id": 23746, + "cuisine": "italian", + "ingredients": [ + "ground sausage", + "loaves", + "tomato sauce", + "mozzarella cheese" + ] + }, + { + "id": 7734, + "cuisine": "chinese", + "ingredients": [ + "lemon", + "chicken breasts", + "olive oil", + "onions", + "fresh thyme leaves" + ] + }, + { + "id": 38807, + "cuisine": "mexican", + "ingredients": [ + "salt", + "olive oil", + "chopped cilantro fresh", + "chile pepper", + "tomatoes", + "onions" + ] + }, + { + "id": 6707, + "cuisine": "southern_us", + "ingredients": [ + "mayonaise", + "cornflake cereal", + "sweet onion", + "cabbage", + "cream of celery soup", + "butter", + "milk", + "shredded sharp cheddar cheese" + ] + }, + { + "id": 18937, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "orange bell pepper", + "rice vinegar", + "steak", + "brown rice noodles", + "fresh ginger", + "green onions", + "oil", + "fresh cilantro", + "mushrooms", + "Gochujang base", + "toasted sesame oil", + "brown sugar", + "sesame seeds", + "garlic", + "carrots" + ] + }, + { + "id": 21170, + "cuisine": "indian", + "ingredients": [ + "soy sauce", + "salt", + "garlic paste", + "chili powder", + "garam masala", + "oil", + "tomato sauce", + "paneer" + ] + }, + { + "id": 24411, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "grated nutmeg", + "olive oil flavored cooking spray", + "phyllo dough", + "button mushrooms", + "flat leaf parsley", + "dried porcini mushrooms", + "salt", + "onions", + "ground black pepper", + "cream cheese", + "dried oregano" + ] + }, + { + "id": 147, + "cuisine": "indian", + "ingredients": [ + "vegetable oil", + "serrano chile", + "white poppy seeds", + "hot water", + "zucchini", + "nigella seeds", + "salt" + ] + }, + { + "id": 8809, + "cuisine": "southern_us", + "ingredients": [ + "mint", + "bitters", + "water", + "Makers Mark Whisky", + "sugar cubes", + "mint leaves" + ] + }, + { + "id": 5524, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "knorr pasta side cheesi cheddar", + "black beans", + "yellow onion", + "chip plain tortilla", + "ground beef", + "tomatoes", + "chili powder" + ] + }, + { + "id": 18803, + "cuisine": "korean", + "ingredients": [ + "yellow squash", + "daikon", + "medium firm tofu", + "green onions", + "garlic", + "beef stock", + "red pepper", + "dashi kombu", + "napa cabbage", + "soybean paste" + ] + }, + { + "id": 32864, + "cuisine": "french", + "ingredients": [ + "vanilla beans", + "large eggs", + "all-purpose flour", + "vanilla ice cream", + "large egg yolks", + "star anise", + "cinnamon sticks", + "sugar", + "unsalted butter", + "salt", + "clove", + "vegetable oil spray", + "golden delicious apples", + "fresh lemon juice" + ] + }, + { + "id": 44935, + "cuisine": "mexican", + "ingredients": [ + "roma tomatoes", + "lime juice", + "serrano chile", + "avocado", + "scallions", + "kosher salt", + "chopped cilantro" + ] + }, + { + "id": 39335, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "heavy cream", + "fresh mushrooms", + "pepper", + "vegetable stock", + "salt", + "fresh parsley", + "whole milk", + "garlic", + "celery", + "olive oil", + "butter", + "rice", + "onions" + ] + }, + { + "id": 16229, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "english cucumber", + "bonito flakes", + "sherry vinegar", + "toasted nori", + "dark soy sauce", + "coarse salt" + ] + }, + { + "id": 4913, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "ground pork", + "shrimp", + "soy sauce", + "sesame oil", + "oyster sauce", + "large eggs", + "scallions", + "beansprouts", + "sugar", + "Shaoxing wine", + "oil" + ] + }, + { + "id": 5258, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "baby spinach", + "white mushrooms", + "flour tortillas", + "salsa", + "pepper", + "butter", + "fontina", + "sherry", + "goat cheese" + ] + }, + { + "id": 23691, + "cuisine": "southern_us", + "ingredients": [ + "apple cider vinegar", + "yellow onion", + "water", + "salt", + "collards", + "black pepper", + "garlic", + "dark brown sugar", + "smoked bacon", + "hot sauce" + ] + }, + { + "id": 18683, + "cuisine": "chinese", + "ingredients": [ + "ketchup", + "garlic cloves", + "sugar", + "peeled fresh ginger", + "pork baby back ribs", + "medium dry sherry", + "soy sauce", + "salt" + ] + }, + { + "id": 13735, + "cuisine": "british", + "ingredients": [ + "pepper", + "lean ground beef", + "pork and beans", + "dried thyme", + "salt", + "cream of mushroom soup", + "corn", + "cheese", + "sour cream", + "mashed potatoes", + "parmesan cheese", + "chopped onion" + ] + }, + { + "id": 12914, + "cuisine": "italian", + "ingredients": [ + "eggs", + "pepper", + "cream cheese", + "wine", + "salt", + "fresh parsley", + "nutmeg", + "mozzarella cheese", + "ricotta", + "pasta sauce", + "parmesan cheese", + "manicotti" + ] + }, + { + "id": 2903, + "cuisine": "chinese", + "ingredients": [ + "large eggs", + "oil", + "long grain white rice", + "white pepper", + "sesame oil", + "diced ham", + "table salt", + "green onions", + "garlic cloves", + "light soy sauce", + "Maggi", + "frozen peas" + ] + }, + { + "id": 37420, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "garlic", + "italian seasoning", + "red pepper flakes", + "salt", + "ground black pepper", + "white wine vinegar", + "extra-virgin olive oil", + "fresh parsley" + ] + }, + { + "id": 40874, + "cuisine": "chinese", + "ingredients": [ + "lettuce", + "fresh coriander", + "large garlic cloves", + "chicken", + "sugar", + "hoisin sauce", + "sunflower oil", + "chicken stock", + "light soy sauce", + "dry sherry", + "water chestnuts, drained and chopped", + "spring onions", + "cornflour" + ] + }, + { + "id": 44311, + "cuisine": "southern_us", + "ingredients": [ + "chicken stock", + "large eggs", + "heavy cream", + "garlic cloves", + "sharp white cheddar cheese", + "vegetable oil", + "beer", + "large shrimp", + "tasso", + "unsalted butter", + "butter", + "freshly ground pepper", + "kosher salt", + "jalapeno chilies", + "fresh tarragon", + "grits" + ] + }, + { + "id": 6795, + "cuisine": "italian", + "ingredients": [ + "fresh basil", + "water", + "part-skim ricotta cheese", + "pasta sauce", + "grated parmesan cheese", + "sausage casings", + "lasagna noodles", + "mozzarella cheese", + "lean ground beef" + ] + }, + { + "id": 30305, + "cuisine": "indian", + "ingredients": [ + "seasoning", + "coriander powder", + "onions", + "curry powder", + "salt", + "canola oil", + "garam masala", + "chickpeas", + "water", + "beef bouillon", + "cumin" + ] + }, + { + "id": 8234, + "cuisine": "vietnamese", + "ingredients": [ + "peeled fresh ginger", + "chicken stock", + "garlic cloves", + "jasmine rice", + "chopped cilantro fresh", + "vegetable oil" + ] + }, + { + "id": 36647, + "cuisine": "italian", + "ingredients": [ + "ground fennel", + "fresh oregano leaves", + "grated parmesan cheese", + "garlic", + "onions", + "polenta", + "green bell pepper", + "dried basil", + "crushed red pepper flakes", + "all-purpose flour", + "fresh basil leaves", + "pasta", + "tomato sauce", + "olive oil", + "button mushrooms", + "red bell pepper", + "plum tomatoes", + "chicken broth", + "black pepper", + "bacon", + "salt", + "bone in skin on chicken thigh", + "dried oregano" + ] + }, + { + "id": 30270, + "cuisine": "japanese", + "ingredients": [ + "rice vinegar", + "salt", + "lemon", + "white sugar" + ] + }, + { + "id": 12448, + "cuisine": "indian", + "ingredients": [ + "oil", + "whole wheat flour", + "mango", + "milk", + "ghee", + "salt", + "ground cumin" + ] + }, + { + "id": 13230, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "hot water", + "Shaoxing wine", + "dried shiitake mushrooms", + "white pepper", + "garlic", + "gai lan", + "chicken breasts", + "corn starch" + ] + }, + { + "id": 44055, + "cuisine": "indian", + "ingredients": [ + "orange slices", + "cumin seed", + "onions", + "fresh ginger", + "vegetable oil", + "garlic cloves", + "chicken", + "coriander seeds", + "coarse salt", + "mustard seeds", + "water", + "whole peeled tomatoes", + "scallions", + "serrano chile" + ] + }, + { + "id": 42550, + "cuisine": "vietnamese", + "ingredients": [ + "honey", + "red bell pepper", + "whole grain baguette", + "fresh ginger", + "radish sprouts", + "tofu", + "peanut butter", + "onions", + "olive oil", + "toasted sesame oil" + ] + }, + { + "id": 47104, + "cuisine": "indian", + "ingredients": [ + "water", + "jalapeno chilies", + "cilantro", + "greek yogurt", + "boneless chicken skinless thigh", + "garam masala", + "diced tomatoes", + "juice", + "kosher salt", + "unsalted butter", + "paprika", + "corn starch", + "fresh ginger root", + "heavy cream", + "cumin seed", + "ground cumin" + ] + }, + { + "id": 28139, + "cuisine": "irish", + "ingredients": [ + "shredded cheddar cheese", + "ranch dressing", + "mashed potatoes", + "ground black pepper", + "salt", + "milk", + "vegetable oil", + "eggs", + "potatoes", + "all-purpose flour" + ] + }, + { + "id": 18542, + "cuisine": "british", + "ingredients": [ + "unsalted butter", + "white rice flour", + "all-purpose flour", + "white sugar" + ] + }, + { + "id": 6071, + "cuisine": "italian", + "ingredients": [ + "lemon", + "anchovy fillets", + "garlic", + "extra-virgin olive oil", + "escarole", + "ground black pepper", + "salt" + ] + }, + { + "id": 13804, + "cuisine": "spanish", + "ingredients": [ + "chickpea flour", + "salt", + "potatoes", + "onions", + "water", + "black salt", + "extra-virgin olive oil" + ] + }, + { + "id": 22480, + "cuisine": "italian", + "ingredients": [ + "water", + "dry white wine", + "fresh parsley", + "butter-margarine blend", + "fresh parmesan cheese", + "salt", + "arborio rice", + "olive oil", + "yellow bell pepper", + "black pepper", + "minced onion", + "low salt chicken broth" + ] + }, + { + "id": 4055, + "cuisine": "southern_us", + "ingredients": [ + "olive oil", + "crushed red pepper", + "grated orange", + "honey", + "cooking spray", + "salt", + "yellow squash", + "fresh orange juice", + "fresh lime juice", + "fresh basil", + "zucchini", + "purple onion" + ] + }, + { + "id": 34836, + "cuisine": "indian", + "ingredients": [ + "light brown sugar", + "whole allspice", + "fresh ginger", + "dry white wine", + "black cardamom pods", + "celery root", + "black peppercorns", + "kosher salt", + "bay leaves", + "garlic", + "onions", + "clove", + "lamb stock", + "coriander seeds", + "corn oil", + "tamarind paste", + "fresh rosemary", + "lamb shanks", + "fresh thyme", + "dried Thai chili", + "cumin seed" + ] + }, + { + "id": 43537, + "cuisine": "mexican", + "ingredients": [ + "diced tomatoes", + "white corn", + "cream cheese", + "butter" + ] + }, + { + "id": 21173, + "cuisine": "southern_us", + "ingredients": [ + "green cabbage", + "freshly ground pepper", + "unsalted butter", + "country ham", + "yellow onion" + ] + }, + { + "id": 2572, + "cuisine": "russian", + "ingredients": [ + "eggs", + "baking powder", + "milk", + "butter", + "ground cinnamon", + "flour", + "sugar", + "vegetable oil" + ] + }, + { + "id": 19116, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "freshly ground pepper", + "red wine vinegar", + "grated lemon zest", + "flat leaf parsley", + "capers", + "salt", + "small red potato", + "sea salt", + "ground coriander" + ] + }, + { + "id": 3494, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "baby spinach", + "ground black pepper", + "salt", + "ground nutmeg", + "crushed red pepper", + "pinenuts", + "golden raisins", + "garlic cloves" + ] + }, + { + "id": 28385, + "cuisine": "cajun_creole", + "ingredients": [ + "black pepper", + "chili powder", + "garlic", + "salt", + "onions", + "chicken broth", + "flour", + "butter", + "chopped celery", + "thyme", + "frozen okra", + "vegetable oil", + "smoked sausage", + "creole seasoning", + "green bell pepper", + "cooked chicken", + "diced tomatoes", + "crushed red pepper", + "red bell pepper" + ] + }, + { + "id": 24690, + "cuisine": "italian", + "ingredients": [ + "pasta", + "garlic", + "grated parmesan cheese", + "broccoli", + "olive oil", + "salt", + "crushed red pepper flakes" + ] + }, + { + "id": 28716, + "cuisine": "italian", + "ingredients": [ + "pancetta", + "lemon zest", + "garlic cloves", + "reduced sodium chicken broth", + "peas", + "arborio rice", + "grated parmesan cheese", + "onions", + "unsalted butter", + "extra-virgin olive oil" + ] + }, + { + "id": 2587, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "vanilla extract", + "lemon juice", + "eggs", + "butter", + "salt", + "ground cinnamon", + "milk", + "beaten eggs", + "shortening", + "buttermilk", + "all-purpose flour" + ] + }, + { + "id": 1080, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "shredded lettuce", + "tomatoes", + "flour tortillas", + "salt", + "avocado", + "cooking oil", + "cilantro", + "lime", + "queso fresco", + "skirt steak" + ] + }, + { + "id": 23660, + "cuisine": "greek", + "ingredients": [ + "tomatoes", + "linguine", + "sliced black olives", + "feta cheese crumbles", + "olive oil", + "garlic", + "mushrooms", + "dried oregano" + ] + }, + { + "id": 43365, + "cuisine": "southern_us", + "ingredients": [ + "tea bags", + "dark rum", + "frozen lemonade concentrate", + "fresh mint", + "sugar", + "citrus slices", + "cold water", + "water" + ] + }, + { + "id": 29901, + "cuisine": "mexican", + "ingredients": [ + "water", + "butter", + "onions", + "chicken bouillon", + "basil leaves", + "long-grain rice", + "black pepper", + "chicken breasts", + "red bell pepper", + "tomato sauce", + "garlic powder", + "salt", + "ground cumin" + ] + }, + { + "id": 4486, + "cuisine": "russian", + "ingredients": [ + "granulated sugar", + "all-purpose flour", + "brandy", + "whole milk", + "confectioners sugar", + "large eggs", + "apricot jam", + "unsalted butter", + "salt" + ] + }, + { + "id": 41888, + "cuisine": "korean", + "ingredients": [ + "sugar", + "asian pear", + "garlic", + "soy sauce", + "sesame oil", + "onions", + "Fuji Apple", + "green onions", + "beef rib short", + "sesame seeds", + "ginger" + ] + }, + { + "id": 25072, + "cuisine": "greek", + "ingredients": [ + "chicken breasts", + "feta cheese crumbles", + "purple onion", + "red bell pepper", + "fresh dill", + "fresh lemon juice", + "hummus", + "kalamata", + "greek yogurt" + ] + }, + { + "id": 11305, + "cuisine": "chinese", + "ingredients": [ + "water chestnuts", + "oyster sauce", + "onions", + "soy sauce", + "garlic cloves", + "ground beef", + "ground ginger", + "vermicelli", + "beansprouts", + "broccoli florets", + "sliced mushrooms" + ] + }, + { + "id": 14356, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "white sugar", + "eggs", + "all-purpose flour", + "ground cinnamon", + "salt", + "water", + "margarine" + ] + }, + { + "id": 9317, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "green onions", + "large garlic cloves", + "all-purpose flour", + "andouille sausage", + "bay leaves", + "butter", + "salt", + "low salt chicken broth", + "yellow corn meal", + "whole milk", + "chopped fresh thyme", + "extra-virgin olive oil", + "ground allspice", + "turnips", + "hot pepper sauce", + "baking powder", + "diced tomatoes", + "chopped onion" + ] + }, + { + "id": 12680, + "cuisine": "french", + "ingredients": [ + "egg yolks", + "sugar", + "vanilla extract", + "bourbon whiskey", + "reduced fat milk" + ] + }, + { + "id": 6305, + "cuisine": "thai", + "ingredients": [ + "cooked rice", + "low salt chicken broth", + "snow peas", + "unsweetened coconut milk", + "fresh ginger", + "boneless skinless chicken breast halves", + "olive oil", + "thai green curry paste", + "sliced green onions", + "fresh basil", + "chopped onion", + "chopped cilantro fresh" + ] + }, + { + "id": 17801, + "cuisine": "spanish", + "ingredients": [ + "sliced almonds", + "all-purpose flour", + "shucked oysters", + "extra-virgin olive oil", + "lemon juice", + "mayonaise", + "salt", + "minced garlic", + "spanish paprika" + ] + }, + { + "id": 35637, + "cuisine": "italian", + "ingredients": [ + "parmigiano-reggiano cheese", + "large eggs", + "salt", + "country white bread", + "ground black pepper", + "1% low-fat milk", + "herbes de provence", + "artichoke hearts", + "shallots", + "garlic cloves", + "olive oil", + "cooking spray", + "goat cheese" + ] + }, + { + "id": 37826, + "cuisine": "french", + "ingredients": [ + "clove", + "bread crumb fresh", + "duck fat", + "sea salt", + "thyme", + "pork sausages", + "tomato paste", + "ground nutmeg", + "confit", + "garlic", + "flat leaf parsley", + "plum tomatoes", + "pork belly", + "fresh bay leaves", + "coarse sea salt", + "white beans", + "onions", + "black peppercorns", + "ground black pepper", + "dry white wine", + "lamb shoulder", + "duck drumsticks" + ] + }, + { + "id": 30778, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "ground chipotle chile pepper", + "red cabbage", + "ancho powder", + "smoked paprika", + "tomatoes", + "lime", + "Mexican oregano", + "ground coriander", + "ground cumin", + "green cabbage", + "black pepper", + "jalapeno chilies", + "cilantro", + "corn tortillas", + "granulated garlic", + "olive oil", + "sea salt", + "shrimp" + ] + }, + { + "id": 32725, + "cuisine": "korean", + "ingredients": [ + "lower sodium soy sauce", + "scallions", + "water", + "beef tenderloin", + "pepper", + "splenda", + "garlic cloves", + "steamer", + "rice vinegar" + ] + }, + { + "id": 28659, + "cuisine": "southern_us", + "ingredients": [ + "boneless skinless chicken breasts", + "catalina dressing", + "onions", + "flour" + ] + }, + { + "id": 30254, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "flour tortillas", + "chipotle chile powder", + "light sour cream", + "kidney beans", + "salsa", + "canola oil", + "water", + "salt", + "plum tomatoes", + "romaine lettuce", + "Mexican cheese blend", + "garlic cloves", + "sliced green onions" + ] + }, + { + "id": 21456, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "cilantro", + "juice", + "kosher salt", + "grapeseed oil", + "tilapia", + "tomatillos", + "purple onion", + "jalapeno chilies", + "old bay seasoning", + "garlic cloves" + ] + }, + { + "id": 7317, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "garlic powder", + "bell pepper", + "sesame oil", + "creole seasoning", + "black pepper", + "Sriracha", + "green onions", + "rice vinegar", + "corn starch", + "ketchup", + "boneless chicken breast", + "flour", + "purple onion", + "orange juice", + "cooked rice", + "olive oil", + "cooking oil", + "onion powder", + "pineapple juice" + ] + }, + { + "id": 1816, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "salt", + "large shrimp", + "chicken broth", + "extra-virgin olive oil", + "flat leaf parsley", + "crushed tomatoes", + "okra", + "andouille sausage", + "garlic", + "onions" + ] + }, + { + "id": 48657, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "sesame oil", + "corn starch", + "mein", + "garlic cloves", + "chicken", + "reduced sodium soy sauce", + "rice vinegar", + "snow peas", + "ground ginger", + "chives", + "carrots" + ] + }, + { + "id": 10981, + "cuisine": "italian", + "ingredients": [ + "pesto", + "ground black pepper", + "salt", + "rocket leaves", + "white wine", + "cannellini beans", + "crumbled goat cheese", + "andouille chicken sausage", + "penne pasta", + "grape tomatoes", + "olive oil", + "garlic" + ] + }, + { + "id": 26279, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken thighs", + "broccoli florets", + "rice vinegar", + "peanuts", + "red pepper flakes", + "soy sauce", + "hoisin sauce", + "ginger", + "water", + "green onions", + "oil" + ] + }, + { + "id": 48557, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "salt", + "eggs", + "ice water", + "corn syrup", + "butter", + "all-purpose flour", + "pecan halves", + "vanilla" + ] + }, + { + "id": 29302, + "cuisine": "mexican", + "ingredients": [ + "yukon gold potatoes", + "salsa", + "ground black pepper", + "queso fresco", + "mexican chorizo", + "vegetable oil", + "yellow onion", + "large eggs", + "salt", + "corn tortillas" + ] + }, + { + "id": 41239, + "cuisine": "cajun_creole", + "ingredients": [ + "Alfredo sauce", + "shrimp", + "tilapia fillets" + ] + }, + { + "id": 44973, + "cuisine": "brazilian", + "ingredients": [ + "egg whites", + "all-purpose flour", + "sweetened condensed milk", + "baking powder", + "coconut milk", + "egg yolks", + "orange juice", + "milk", + "flaked coconut", + "white sugar" + ] + }, + { + "id": 22463, + "cuisine": "indian", + "ingredients": [ + "water", + "whole wheat flour", + "olive oil", + "salt" + ] + }, + { + "id": 143, + "cuisine": "moroccan", + "ingredients": [ + "chicken stock", + "fresh coriander", + "parsley", + "lamb", + "coriander", + "chili flakes", + "olive oil", + "garlic", + "couscous", + "ground cumin", + "dukkah", + "peeled tomatoes", + "cinnamon", + "garlic cloves", + "cumin", + "pepper", + "beef", + "salt", + "onions" + ] + }, + { + "id": 45066, + "cuisine": "italian", + "ingredients": [ + "sliced almonds", + "large eggs", + "all-purpose flour", + "ground cloves", + "granulated sugar", + "vegetable oil", + "water", + "cooking spray", + "dark brown sugar", + "ground cinnamon", + "large egg whites", + "baking powder" + ] + }, + { + "id": 2458, + "cuisine": "irish", + "ingredients": [ + "parsnips", + "maple syrup", + "ground nutmeg", + "lemon juice", + "white pepper", + "orange juice", + "ground ginger", + "salt", + "carrots" + ] + }, + { + "id": 17936, + "cuisine": "chinese", + "ingredients": [ + "minced ginger", + "sesame oil", + "salt", + "pork", + "Shaoxing wine", + "cilantro", + "dried shrimp", + "baby bok choy", + "light soy sauce", + "wonton wrappers", + "seaweed", + "chicken bouillon", + "green onions", + "peeled shrimp" + ] + }, + { + "id": 12851, + "cuisine": "french", + "ingredients": [ + "water", + "large eggs", + "all-purpose flour", + "unsalted butter", + "bacon slices", + "corn", + "chives", + "extra sharp cheddar cheese", + "parmigiano reggiano cheese", + "salt" + ] + }, + { + "id": 18646, + "cuisine": "italian", + "ingredients": [ + "fresh parmesan cheese", + "fettucine", + "butter", + "half & half", + "black pepper", + "salt" + ] + }, + { + "id": 32094, + "cuisine": "indian", + "ingredients": [ + "water", + "cumin seed", + "tumeric", + "jalapeno chilies", + "onions", + "kosher salt", + "ground coriander", + "toor dal", + "coconut oil", + "fresh ginger", + "garlic cloves" + ] + }, + { + "id": 5149, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "vegetable oil", + "diced onions", + "turnip greens", + "sugar", + "chopped cooked ham", + "pepper" + ] + }, + { + "id": 23791, + "cuisine": "italian", + "ingredients": [ + "pita bread", + "sun-dried tomatoes", + "basil pesto sauce", + "goat cheese" + ] + }, + { + "id": 2551, + "cuisine": "brazilian", + "ingredients": [ + "lime wedges", + "sugar", + "cachaca", + "tangerine" + ] + }, + { + "id": 35419, + "cuisine": "french", + "ingredients": [ + "sugar", + "large eggs", + "instant espresso", + "water", + "salt", + "cream", + "cooking spray", + "evaporated skim milk", + "large egg whites", + "chocolate covered coffee beans" + ] + }, + { + "id": 18934, + "cuisine": "italian", + "ingredients": [ + "water", + "lime wedges", + "sugar", + "fresh lime juice", + "watermelon" + ] + }, + { + "id": 49193, + "cuisine": "cajun_creole", + "ingredients": [ + "tomato sauce", + "dried basil", + "pimentos", + "salt", + "water", + "finely chopped onion", + "sliced carrots", + "garlic cloves", + "sugar", + "olive oil", + "chicken breasts", + "hot sauce", + "reduced sodium ham", + "peeled tomatoes", + "dry white wine", + "green peas", + "dried oregano" + ] + }, + { + "id": 17535, + "cuisine": "southern_us", + "ingredients": [ + "granny smith apples", + "mint sprigs", + "sugar", + "cranberries", + "dry white wine" + ] + }, + { + "id": 12659, + "cuisine": "thai", + "ingredients": [ + "kaffir lime leaves", + "lemongrass", + "coconut milk", + "fish sauce", + "shallots", + "curry paste", + "sugar", + "vegetable oil", + "onions", + "fresh coriander", + "skinless chicken breasts" + ] + }, + { + "id": 23657, + "cuisine": "italian", + "ingredients": [ + "salt", + "pesto", + "green beans", + "cavatappi", + "waxy potatoes", + "pepper" + ] + }, + { + "id": 41860, + "cuisine": "french", + "ingredients": [ + "warm water", + "salt", + "cold water", + "egg yolks", + "white sugar", + "active dry yeast", + "all-purpose flour", + "eggs", + "butter" + ] + }, + { + "id": 44723, + "cuisine": "chinese", + "ingredients": [ + "boneless skinless chicken breasts", + "garlic", + "toasted sesame seeds", + "soy sauce", + "lemon", + "rice vinegar", + "broccoli stems", + "crushed red pepper", + "canola oil", + "honey", + "florets", + "corn starch" + ] + }, + { + "id": 32923, + "cuisine": "mexican", + "ingredients": [ + "corn tortillas", + "achiote", + "guacamole", + "chicken", + "salsa" + ] + }, + { + "id": 24594, + "cuisine": "filipino", + "ingredients": [ + "chicken legs", + "garlic", + "cabbage", + "olive oil", + "chickpeas", + "plantains", + "water", + "salt", + "chorizo sausage", + "tomatoes", + "potatoes", + "onions" + ] + }, + { + "id": 27521, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "lean ground beef", + "onions", + "chili powder", + "garlic", + "salsa verde", + "cilantro", + "sugar", + "lime wedges", + "corn tortillas" + ] + }, + { + "id": 3314, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "milk", + "butter", + "grated parmesan cheese", + "garlic powder", + "cream cheese" + ] + }, + { + "id": 29959, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "lemon", + "creole seasoning", + "kosher salt", + "large eggs", + "lemon slices", + "thyme sprigs", + "pepper", + "butter", + "all-purpose flour", + "pecan halves", + "fresh thyme", + "worcestershire sauce", + "catfish" + ] + }, + { + "id": 39854, + "cuisine": "southern_us", + "ingredients": [ + "flavored syrup", + "light rum", + "rum", + "lime juice", + "ice", + "lemon-lime soda" + ] + }, + { + "id": 6883, + "cuisine": "mexican", + "ingredients": [ + "cotija", + "beef", + "meat", + "garlic cloves", + "water", + "bay leaves", + "salt", + "onions", + "cream", + "potatoes", + "vegetable oil", + "corn tortillas", + "tortillas", + "flank steak", + "meat bones", + "chicken" + ] + }, + { + "id": 4351, + "cuisine": "mexican", + "ingredients": [ + "Herdez Salsa Verde", + "Mexican oregano", + "ground cumin", + "green chile", + "pork tenderloin", + "bay leaf", + "chicken broth", + "hominy", + "garlic", + "pasilla chiles", + "chicken breasts", + "onions" + ] + }, + { + "id": 45383, + "cuisine": "indian", + "ingredients": [ + "minced garlic", + "salt", + "chicken", + "ground ginger", + "garam masala", + "ground cardamom", + "olive oil", + "fat", + "black pepper", + "lemon", + "cumin" + ] + }, + { + "id": 46911, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "turkey", + "flat leaf parsley", + "salt and ground black pepper", + "lemon", + "Italian bread", + "onions", + "olive oil", + "large eggs", + "fresh mushrooms", + "ground beef", + "water", + "parmesan cheese", + "garlic", + "celery" + ] + }, + { + "id": 15906, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "unsalted butter", + "sweet potatoes", + "spiced rum", + "molasses", + "self rising flour", + "yolk", + "brown sugar", + "granulated sugar", + "whole milk", + "salt", + "ground nutmeg", + "large eggs", + "cinnamon" + ] + }, + { + "id": 37548, + "cuisine": "french", + "ingredients": [ + "honey", + "mint sprigs", + "whole wheat peasant bread", + "ricotta cheese", + "ground black pepper", + "fresh raspberries" + ] + }, + { + "id": 41205, + "cuisine": "greek", + "ingredients": [ + "greek yogurt", + "medjool date", + "sliced fresh fruit" + ] + }, + { + "id": 35248, + "cuisine": "japanese", + "ingredients": [ + "ginger", + "toasted sesame oil", + "mirin", + "carrots", + "miso paste", + "rice vinegar", + "toasted sesame seeds", + "agave nectar", + "ground white pepper" + ] + }, + { + "id": 28403, + "cuisine": "chinese", + "ingredients": [ + "water", + "lean ground beef", + "Sriracha", + "chopped cilantro", + "lime", + "flavored oil", + "fish sauce", + "green onions", + "iceberg lettuce" + ] + }, + { + "id": 40794, + "cuisine": "mexican", + "ingredients": [ + "lime", + "garlic", + "cumin", + "avocado", + "agave nectar", + "salsa", + "olive oil", + "salt", + "black beans", + "cilantro stems", + "corn tortillas" + ] + }, + { + "id": 18526, + "cuisine": "indian", + "ingredients": [ + "low-fat plain yogurt", + "cumin seed", + "fresh ginger", + "serrano chile", + "kosher salt", + "chopped cilantro fresh", + "rice", + "canola oil" + ] + }, + { + "id": 22750, + "cuisine": "cajun_creole", + "ingredients": [ + "bread", + "green onions", + "cayenne pepper", + "white onion", + "garlic", + "cooked white rice", + "black pepper", + "vegetable oil", + "chopped parsley", + "boneless pork shoulder", + "chopped green bell pepper", + "salt" + ] + }, + { + "id": 3542, + "cuisine": "italian", + "ingredients": [ + "eggs", + "bay leaves", + "fresh oregano", + "fresh parsley", + "diced onions", + "water", + "red pepper", + "hamburger", + "fresh basil", + "ricotta cheese", + "sauce", + "prepared lasagne", + "tomato paste", + "parmesan cheese", + "garlic", + "shredded mozzarella cheese" + ] + }, + { + "id": 34324, + "cuisine": "italian", + "ingredients": [ + "nonfat dry milk", + "bread flour", + "sponge", + "salt", + "warm water", + "cornmeal", + "dry yeast" + ] + }, + { + "id": 32717, + "cuisine": "moroccan", + "ingredients": [ + "ground ginger", + "ground black pepper", + "lamb shoulder", + "ground coriander", + "cinnamon sticks", + "kosher salt", + "pitted green olives", + "cayenne pepper", + "fresh lemon juice", + "onions", + "saffron threads", + "water", + "extra-virgin olive oil", + "sweet paprika", + "carrots", + "ground cumin", + "ground cloves", + "lemon zest", + "cilantro leaves", + "garlic cloves", + "flat leaf parsley" + ] + }, + { + "id": 9179, + "cuisine": "southern_us", + "ingredients": [ + "chicken broth", + "baking powder", + "butter", + "dumplings", + "chicken", + "milk", + "mixed vegetables", + "salt", + "bay leaf", + "black pepper", + "chicken breasts", + "garlic", + "celery", + "flour", + "parsley", + "poultry seasoning", + "onions" + ] + }, + { + "id": 30187, + "cuisine": "brazilian", + "ingredients": [ + "pepper", + "green onions", + "green beans", + "olive oil", + "salt", + "olives", + "hearts of palm", + "peas", + "chopped parsley", + "mayonaise", + "potatoes", + "carrots" + ] + }, + { + "id": 29423, + "cuisine": "chinese", + "ingredients": [ + "flour", + "salt", + "soy sauce", + "vegetable oil", + "ground white pepper", + "chicken stock", + "sesame oil", + "scallions", + "minced garlic", + "vegetable shortening", + "chile sauce" + ] + }, + { + "id": 674, + "cuisine": "italian", + "ingredients": [ + "fennel seeds", + "crushed red pepper", + "large garlic cloves", + "dried oregano", + "organic tomato", + "boneless rib eye steaks", + "extra-virgin olive oil" + ] + }, + { + "id": 36784, + "cuisine": "italian", + "ingredients": [ + "slivered almonds", + "vermicelli", + "all-purpose flour", + "milk", + "cooked chicken", + "pepper", + "dry white wine", + "sliced mushrooms", + "chicken bouillon granules", + "grated parmesan cheese", + "butter" + ] + }, + { + "id": 30855, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken skinless thigh", + "green onions", + "salt", + "dark soy sauce", + "fresh ginger root", + "dry sherry", + "dried red chile peppers", + "black peppercorns", + "honey", + "vegetable oil", + "bean sauce", + "minced garlic", + "sesame oil", + "rice vinegar" + ] + }, + { + "id": 6420, + "cuisine": "vietnamese", + "ingredients": [ + "lemongrass", + "chopped garlic", + "ground black pepper", + "coriander seeds", + "canola oil", + "kosher salt", + "boneless pork loin" + ] + }, + { + "id": 3878, + "cuisine": "russian", + "ingredients": [ + "bread crumb fresh", + "vegetable oil", + "sour cream", + "unsalted butter", + "all-purpose flour", + "water", + "salt", + "flat leaf parsley", + "large eggs", + "farmer cheese" + ] + }, + { + "id": 43380, + "cuisine": "cajun_creole", + "ingredients": [ + "cajun seasoning", + "salt", + "grated parmesan cheese", + "worcestershire sauce", + "cornflakes", + "mayonaise", + "lemon", + "catfish", + "cooking spray", + "paprika", + "fresh parsley" + ] + }, + { + "id": 17864, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "red bell pepper", + "minced ginger", + "scallions", + "minced garlic", + "wonton wrappers", + "fish sauce", + "hot chili", + "shrimp" + ] + }, + { + "id": 14842, + "cuisine": "cajun_creole", + "ingredients": [ + "brandy", + "fresh thyme", + "cayenne pepper", + "flat leaf parsley", + "celery ribs", + "ground black pepper", + "bay leaves", + "carrots", + "long grain white rice", + "kosher salt", + "chopped fresh chives", + "fresh lemon juice", + "onions", + "tomato paste", + "unsalted butter", + "shells", + "heavy whipping cream" + ] + }, + { + "id": 5662, + "cuisine": "irish", + "ingredients": [ + "fat free less sodium chicken broth", + "baking potatoes", + "savoy cabbage", + "ground black pepper", + "salt", + "diced onions", + "fresh thyme leaves", + "water", + "butter" + ] + }, + { + "id": 35577, + "cuisine": "japanese", + "ingredients": [ + "green onions", + "soy sauce", + "vegetable oil", + "rice wine", + "granulated sugar", + "chicken thighs" + ] + }, + { + "id": 21387, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "salt", + "italian salad dressing", + "paprika", + "chees mozzarella stick", + "cooking spray", + "dry bread crumbs", + "green bell pepper", + "crushed red pepper", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 2831, + "cuisine": "vietnamese", + "ingredients": [ + "self rising flour", + "all-purpose flour", + "milk", + "egg yolks", + "sausages", + "sugar", + "large eggs", + "orange juice", + "unsalted butter", + "cilantro", + "orange zest" + ] + }, + { + "id": 13003, + "cuisine": "mexican", + "ingredients": [ + "tortilla chips", + "shredded cheddar cheese", + "shredded Monterey Jack cheese", + "Old El Paso Enchilada Sauce", + "cooked chicken breasts", + "Old El Paso™ chopped green chiles" + ] + }, + { + "id": 41615, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "minced onion", + "paprika", + "fresh lemon juice", + "water", + "harissa", + "ground coriander", + "chicken", + "olive oil", + "butter", + "garlic cloves", + "ground cumin", + "caraway seeds", + "peeled fresh ginger", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 3104, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "lime", + "red wine vinegar", + "sweet corn", + "olives", + "butter lettuce", + "boneless skinless chicken breasts", + "purple onion", + "garlic cloves", + "ground cumin", + "grape tomatoes", + "olive oil", + "whole wheat tortillas", + "tortilla chips", + "monterey jack", + "pepper", + "chili powder", + "salt", + "smoked paprika" + ] + }, + { + "id": 9589, + "cuisine": "spanish", + "ingredients": [ + "honey", + "orange", + "brandy", + "grated orange peel" + ] + }, + { + "id": 30879, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "granulated sugar", + "salt", + "peaches", + "heavy cream", + "baking powder", + "all-purpose flour" + ] + }, + { + "id": 29793, + "cuisine": "french", + "ingredients": [ + "chicken breast halves", + "low salt chicken broth", + "butter", + "shallots", + "tarragon vinegar", + "fresh tarragon" + ] + }, + { + "id": 36486, + "cuisine": "southern_us", + "ingredients": [ + "black-eyed peas", + "cayenne pepper", + "minced garlic", + "grated parmesan cheese", + "dried oregano", + "tomato sauce", + "finely chopped onion", + "low salt chicken broth", + "olive oil", + "red wine vinegar" + ] + }, + { + "id": 40624, + "cuisine": "southern_us", + "ingredients": [ + "flour", + "grated nutmeg", + "sugar", + "fine salt", + "light brown sugar", + "egg yolks", + "unsalted butter", + "buttermilk" + ] + }, + { + "id": 2400, + "cuisine": "chinese", + "ingredients": [ + "Shaoxing wine", + "szechwan peppercorns", + "chili bean paste", + "cooked rice", + "boneless skinless chicken breasts", + "chili oil", + "corn starch", + "store bought low sodium chicken broth", + "green onions", + "vegetable oil", + "garlic cloves", + "soy sauce", + "chili powder", + "ginger" + ] + }, + { + "id": 39435, + "cuisine": "filipino", + "ingredients": [ + "eggs", + "white sugar", + "evaporated milk", + "salt", + "coconut", + "sweetened condensed milk" + ] + }, + { + "id": 21627, + "cuisine": "indian", + "ingredients": [ + "fennel seeds", + "red chili peppers", + "vinegar", + "ginger", + "cumin seed", + "peppercorns", + "tomatoes", + "water", + "chili powder", + "fenugreek seeds", + "chicken pieces", + "chopped garlic", + "curry leaves", + "grated coconut", + "shallots", + "salt", + "mustard seeds", + "ground turmeric", + "coconut oil", + "coriander powder", + "cinnamon", + "green chilies", + "onions" + ] + }, + { + "id": 47770, + "cuisine": "vietnamese", + "ingredients": [ + "beef bones", + "beef", + "cinnamon", + "chili sauce", + "peppercorns", + "clove", + "thai basil", + "jalapeno chilies", + "ginger", + "steak", + "lime", + "hoisin sauce", + "cilantro", + "beansprouts", + "fish sauce", + "palm sugar", + "rice noodles", + "star anise", + "onions" + ] + }, + { + "id": 3497, + "cuisine": "japanese", + "ingredients": [ + "white miso", + "dried shiitake mushrooms", + "silken tofu", + "dried udon", + "toasted sesame oil", + "spinach", + "green onions", + "carrots", + "water", + "ginger" + ] + }, + { + "id": 38404, + "cuisine": "vietnamese", + "ingredients": [ + "green cabbage", + "minced ginger", + "green onions", + "maple syrup", + "cucumber", + "warm water", + "Sriracha", + "rice noodles", + "oil", + "beansprouts", + "soy sauce", + "extra firm tofu", + "salt", + "corn starch", + "fresh mint", + "fish sauce", + "fresh cilantro", + "sesame oil", + "roasted peanuts", + "red bell pepper" + ] + }, + { + "id": 47510, + "cuisine": "indian", + "ingredients": [ + "ghee", + "rice", + "water", + "jaggery", + "cardamom pods" + ] + }, + { + "id": 39680, + "cuisine": "japanese", + "ingredients": [ + "sugar", + "large garlic cloves", + "fresh ginger", + "boneless, skinless chicken breast", + "dark sesame oil", + "teriyaki marinade", + "green onions" + ] + }, + { + "id": 28634, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "red wine vinegar", + "shredded Monterey Jack cheese", + "frozen chopped spinach", + "whole peeled tomatoes", + "cream cheese", + "cream", + "vegetable oil", + "onions", + "diced green chilies", + "salt" + ] + }, + { + "id": 35393, + "cuisine": "indian", + "ingredients": [ + "romaine lettuce", + "spices", + "garlic", + "onions", + "chicken", + "garam masala", + "paprika", + "cayenne pepper", + "ground turmeric", + "tomatoes", + "yoghurt", + "ginger", + "lemon juice", + "saffron", + "plain yogurt", + "butter", + "salt", + "coriander", + "ground cumin" + ] + }, + { + "id": 7813, + "cuisine": "italian", + "ingredients": [ + "chicken broth", + "butter", + "onions", + "olive oil", + "fresh lemon juice", + "arborio rice", + "grated parmesan cheese", + "fresh lime juice", + "lime rind", + "grated lemon zest" + ] + }, + { + "id": 44000, + "cuisine": "french", + "ingredients": [ + "fat free less sodium chicken broth", + "olive oil", + "chopped celery", + "carrots", + "sweet onion", + "ground black pepper", + "garlic cloves", + "dried thyme", + "diced tomatoes", + "fresh lemon juice", + "water", + "green lentil", + "salt", + "bay leaf" + ] + }, + { + "id": 22398, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "salt", + "parsley sprigs", + "large garlic cloves", + "onions", + "tomato purée", + "ground pepper", + "ground beef", + "chili pepper", + "paprika", + "ground cumin" + ] + }, + { + "id": 41962, + "cuisine": "cajun_creole", + "ingredients": [ + "milk", + "cooked bacon", + "green bell pepper", + "green onions", + "cayenne pepper", + "corn husks", + "salt", + "fresh tomatoes", + "vegetable oil", + "onions" + ] + }, + { + "id": 38859, + "cuisine": "southern_us", + "ingredients": [ + "chuck roast", + "water", + "ranch-style seasoning", + "au jus gravy mix", + "pepperoncini", + "butter" + ] + }, + { + "id": 42445, + "cuisine": "italian", + "ingredients": [ + "marinara sauce", + "pesto sauce", + "crushed red pepper", + "pasta", + "ricotta cheese", + "grated parmesan cheese", + "shredded mozzarella cheese" + ] + }, + { + "id": 9323, + "cuisine": "mexican", + "ingredients": [ + "water", + "vegetable oil", + "diced celery", + "potatoes", + "salt", + "large shrimp", + "corn kernels", + "diced tomatoes", + "carrots", + "octopuses", + "chile pepper", + "chopped onion" + ] + }, + { + "id": 9202, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "powdered sugar", + "strawberries", + "refrigerated piecrusts", + "sugar", + "corn starch" + ] + }, + { + "id": 16787, + "cuisine": "cajun_creole", + "ingredients": [ + "cooked rice", + "dried thyme", + "paprika", + "red bell pepper", + "onions", + "kosher salt", + "green onions", + "cayenne pepper", + "celery", + "black pepper", + "garlic powder", + "smoked sausage", + "ground cayenne pepper", + "oregano", + "chili beans", + "water", + "onion powder", + "creole seasoning", + "bay leaf" + ] + }, + { + "id": 4905, + "cuisine": "spanish", + "ingredients": [ + "butter", + "ground white pepper", + "shallots", + "champagne", + "salt", + "whipping cream", + "saffron" + ] + }, + { + "id": 5477, + "cuisine": "mexican", + "ingredients": [ + "table salt", + "vegetable oil", + "corn tortillas", + "pepper jack", + "juice", + "lime", + "garlic", + "avocado", + "chili powder", + "sour cream" + ] + }, + { + "id": 28058, + "cuisine": "mexican", + "ingredients": [ + "lime zest", + "chopped cilantro", + "fresh lime juice", + "water", + "long grain white rice", + "butter" + ] + }, + { + "id": 13352, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "olive oil", + "diced tomatoes", + "celery seed", + "onions", + "black beans", + "garlic powder", + "cilantro leaves", + "celery", + "homemade chicken stock", + "Tabasco Green Pepper Sauce", + "vegetable broth", + "sour cream", + "ground cumin", + "lime", + "cooked chicken", + "salsa", + "fresh lime juice" + ] + }, + { + "id": 6754, + "cuisine": "korean", + "ingredients": [ + "low sodium soy sauce", + "ground black pepper", + "lettuce leaves", + "beef sirloin", + "fresh ginger", + "mirin", + "hot bean paste", + "toasted sesame oil", + "sesame seeds", + "enokitake", + "garlic", + "onions", + "sugar", + "asian pear", + "vegetable oil", + "kimchi" + ] + }, + { + "id": 36071, + "cuisine": "korean", + "ingredients": [ + "ground ginger", + "kecap manis", + "paprika", + "beansprouts", + "sugar", + "mushrooms", + "oil", + "eggs", + "sambal chile paste", + "tomato ketchup", + "ketjap", + "water", + "sesame oil", + "carrots" + ] + }, + { + "id": 20970, + "cuisine": "indian", + "ingredients": [ + "potatoes", + "ground tumeric", + "ground coriander", + "greek yogurt", + "curry leaves", + "butter", + "cayenne pepper", + "chapati flour", + "ground cumin", + "cauliflower", + "vegetable oil", + "garlic", + "cumin seed", + "onions", + "tomatoes", + "ginger", + "green chilies", + "mustard seeds" + ] + }, + { + "id": 40578, + "cuisine": "mexican", + "ingredients": [ + "nonfat plain greek yogurt", + "salt", + "ground cumin", + "whole wheat penne pasta", + "red bell pepper", + "green onions", + "salsa", + "corn", + "cilantro", + "reduced sodium black beans" + ] + }, + { + "id": 49318, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "lemon", + "rice", + "dried parsley", + "green bell pepper", + "dried thyme", + "collard leaves", + "celery", + "water", + "red pepper flakes", + "garlic cloves", + "tomato sauce", + "red beans", + "diced tomatoes", + "onions" + ] + }, + { + "id": 10573, + "cuisine": "mexican", + "ingredients": [ + "sugar", + "olive oil", + "sweet potatoes", + "vegetable oil", + "all-purpose flour", + "shredded cheddar cheese", + "large eggs", + "baking powder", + "garlic", + "red enchilada sauce", + "black beans", + "poblano peppers", + "green onions", + "cilantro", + "yellow onion", + "yellow corn meal", + "milk", + "jalapeno chilies", + "chili powder", + "salt", + "cumin" + ] + }, + { + "id": 41634, + "cuisine": "spanish", + "ingredients": [ + "water", + "mayonaise", + "minced garlic", + "saffron threads", + "lemon juice" + ] + }, + { + "id": 7185, + "cuisine": "italian", + "ingredients": [ + "mozzarella cheese", + "bay leaves", + "crushed red pepper", + "onions", + "pasta", + "boston butt", + "dry red wine", + "carrots", + "pancetta slices", + "grated parmesan cheese", + "chopped celery", + "thyme sprigs", + "olive oil", + "large garlic cloves", + "sausages", + "plum tomatoes" + ] + }, + { + "id": 26536, + "cuisine": "japanese", + "ingredients": [ + "soft tofu", + "dashi", + "wakame", + "scallions", + "miso paste" + ] + }, + { + "id": 6498, + "cuisine": "italian", + "ingredients": [ + "black pepper", + "cooking spray", + "goat cheese", + "olive oil", + "part-skim ricotta cheese", + "plum tomatoes", + "fresh parmesan cheese", + "salt", + "peasant bread", + "baby spinach", + "garlic cloves" + ] + }, + { + "id": 25434, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "fat", + "cotija", + "flour", + "squash blossoms", + "spinach", + "corn kernels", + "chayotes", + "red chili peppers", + "salt" + ] + }, + { + "id": 17218, + "cuisine": "french", + "ingredients": [ + "chocolate flavored liqueur", + "unsweetened chocolate", + "egg yolks", + "unsweetened cocoa powder", + "sugar", + "heavy whipping cream", + "vanilla extract" + ] + }, + { + "id": 9578, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "lemon wedge", + "salt", + "diced onions", + "radishes", + "baking potatoes", + "garlic cloves", + "boneless pork shoulder roast", + "green onions", + "yellow corn", + "corn tortillas", + "green bell pepper", + "shredded cabbage", + "cilantro", + "enchilada sauce" + ] + }, + { + "id": 7150, + "cuisine": "italian", + "ingredients": [ + "salt and ground black pepper", + "bow-tie pasta", + "kale", + "yellow bell pepper", + "ground cayenne pepper", + "dried basil", + "feta cheese", + "red bell pepper", + "olive oil", + "garlic" + ] + }, + { + "id": 16039, + "cuisine": "italian", + "ingredients": [ + "ground round", + "medium egg noodles", + "nonfat ricotta cheese", + "black pepper", + "salt", + "tomato sauce", + "cooking spray", + "dried oregano", + "dried basil", + "provolone cheese" + ] + }, + { + "id": 43231, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking powder", + "sharp cheddar cheese", + "water", + "salt", + "boneless chicken skinless thigh", + "butter", + "yellow corn meal", + "olive oil", + "all-purpose flour" + ] + }, + { + "id": 35934, + "cuisine": "japanese", + "ingredients": [ + "mochi", + "soy sauce", + "nori" + ] + }, + { + "id": 13094, + "cuisine": "mexican", + "ingredients": [ + "black pepper", + "olive oil", + "ranch dressing", + "purple onion", + "taco seasoning", + "ripe olives", + "garlic salt", + "pico de gallo", + "chili", + "roma tomatoes", + "worcestershire sauce", + "salsa", + "pinto beans", + "chopped cilantro", + "corn", + "poblano peppers", + "lean ground beef", + "salt", + "lemon pepper", + "fresh lime juice", + "iceberg lettuce", + "pickled jalapenos", + "jack", + "jalapeno chilies", + "garlic", + "tortilla chips", + "sour cream", + "onions" + ] + }, + { + "id": 19721, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "ginger", + "garlic cloves", + "eggs", + "cream style corn", + "salt", + "chicken broth", + "water", + "cornflour", + "soy sauce", + "cooked chicken", + "scallions" + ] + }, + { + "id": 37366, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "Mexican oregano", + "garlic cloves", + "pepper", + "crema", + "adobo sauce", + "white onion", + "bacon", + "chipotles in adobo", + "chicken broth", + "lime", + "salt", + "cumin" + ] + }, + { + "id": 49692, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "vegetable oil", + "garlic cloves", + "unsalted butter", + "all-purpose flour", + "large eggs", + "dry bread crumbs", + "water", + "salt", + "grits" + ] + }, + { + "id": 39011, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "baking powder", + "carrots", + "chicken broth", + "olive oil", + "diced chicken", + "coconut milk", + "kale", + "coconut flour", + "thyme", + "eggs", + "almond flour", + "salt", + "onions" + ] + }, + { + "id": 21271, + "cuisine": "southern_us", + "ingredients": [ + "eggs", + "kosher salt", + "unsalted butter", + "shallots", + "sharp cheddar cheese", + "hot water", + "sugar pea", + "ground black pepper", + "whole milk", + "garden peas", + "fresh parsley leaves", + "fresh chives", + "asparagus", + "mushrooms", + "zest", + "juice", + "fava beans", + "water", + "parmigiano reggiano cheese", + "vegetable oil", + "tarragon leaves", + "grits" + ] + }, + { + "id": 46334, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame oil", + "onions", + "sugar", + "asian pear", + "garlic", + "sesame seeds", + "ginger", + "Fuji Apple", + "green onions", + "beef rib short" + ] + }, + { + "id": 6253, + "cuisine": "indian", + "ingredients": [ + "chili powder", + "mango", + "unsweetened coconut milk", + "salt", + "purple onion", + "fresh ginger root", + "swordfish" + ] + }, + { + "id": 25327, + "cuisine": "french", + "ingredients": [ + "lemon", + "freshly ground pepper", + "black bass", + "extra-virgin olive oil", + "chopped parsley", + "cipollini onions", + "thyme", + "yukon gold potatoes", + "salt" + ] + }, + { + "id": 46378, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "cilantro", + "monterey jack", + "refried beans", + "basmati rice", + "corn", + "enchilada sauce", + "salt and ground black pepper", + "cooked chicken breasts" + ] + }, + { + "id": 19161, + "cuisine": "mexican", + "ingredients": [ + "romaine lettuce", + "boneless skinless chicken breasts", + "fresh lime juice", + "ground cumin", + "avocado", + "black beans", + "purple onion", + "chopped cilantro fresh", + "light sour cream", + "cherry tomatoes", + "salt", + "corn kernel whole", + "chipotle chile", + "chili powder", + "adobo sauce" + ] + }, + { + "id": 46033, + "cuisine": "southern_us", + "ingredients": [ + "fresh lemon juice", + "fat-free buttermilk", + "sugar", + "blackberries", + "grated lemon zest" + ] + }, + { + "id": 22735, + "cuisine": "french", + "ingredients": [ + "sugar", + "almonds", + "almond extract", + "dough", + "honey", + "large eggs", + "salt", + "powdered sugar", + "large egg yolks", + "whole milk", + "corn starch", + "vanilla beans", + "unsalted butter", + "apricot halves" + ] + }, + { + "id": 23988, + "cuisine": "british", + "ingredients": [ + "brandy", + "powdered sugar", + "unsalted butter" + ] + }, + { + "id": 45765, + "cuisine": "southern_us", + "ingredients": [ + "lemon zest", + "buttermilk", + "chopped fresh thyme", + "white cornmeal", + "sugar", + "butter", + "large eggs", + "all-purpose flour" + ] + }, + { + "id": 6777, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "butter", + "spaghettini", + "olive oil", + "salt", + "fresh basil leaves", + "dried basil", + "turkey", + "onions", + "tomatoes", + "grated parmesan cheese", + "freshly ground pepper" + ] + }, + { + "id": 12607, + "cuisine": "southern_us", + "ingredients": [ + "quickcooking grits", + "extra sharp cheddar cheese", + "large eggs", + "salt", + "water", + "butter", + "whole milk", + "grated jack cheese" + ] + }, + { + "id": 46597, + "cuisine": "italian", + "ingredients": [ + "crushed red pepper flakes", + "broccoli", + "pepper", + "garlic", + "pinenuts", + "extra-virgin olive oil", + "lemon wedge", + "salt" + ] + }, + { + "id": 30575, + "cuisine": "thai", + "ingredients": [ + "tomato purée", + "rice", + "curry paste", + "vegetable oil", + "green chilies", + "coriander", + "prawns", + "coconut cream", + "onions", + "vegetable stock", + "garlic cloves" + ] + }, + { + "id": 5468, + "cuisine": "thai", + "ingredients": [ + "unsweetened coconut milk", + "olive oil", + "red curry paste", + "red bell pepper", + "fresh basil", + "chile pepper", + "garlic cloves", + "chopped cilantro fresh", + "light brown sugar", + "fresh ginger", + "fresh mushrooms", + "fresh lime juice", + "fish sauce", + "vegetable broth", + "shrimp", + "sliced green onions" + ] + }, + { + "id": 162, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "rice wine", + "ground beef", + "soy sauce", + "garlic", + "sugar", + "sesame oil", + "egg whites", + "corn starch" + ] + }, + { + "id": 6011, + "cuisine": "italian", + "ingredients": [ + "pinenuts", + "lemon juice", + "grated parmesan cheese", + "olive oil", + "fresh mint", + "cold water", + "garlic cloves" + ] + }, + { + "id": 38881, + "cuisine": "mexican", + "ingredients": [ + "flour tortillas", + "shredded sharp cheddar cheese", + "sour cream", + "dried oregano", + "fresh cilantro", + "chili powder", + "garlic cloves", + "fresh lime juice", + "ground cumin", + "tomato paste", + "low sodium chicken broth", + "salt", + "ground turkey", + "shredded Monterey Jack cheese", + "finely chopped onion", + "vegetable oil", + "pinto beans", + "long grain white rice" + ] + }, + { + "id": 48874, + "cuisine": "jamaican", + "ingredients": [ + "fresh thyme", + "sunflower oil", + "low salt chicken broth", + "callaloo", + "garlic cloves", + "green onions", + "okra", + "sugar pumpkin", + "scotch bonnet chile", + "ham" + ] + }, + { + "id": 3582, + "cuisine": "japanese", + "ingredients": [ + "reduced sodium soy sauce", + "japanese eggplants", + "extra light olive oil", + "sugar", + "scallions", + "mirin" + ] + }, + { + "id": 10771, + "cuisine": "french", + "ingredients": [ + "cherry tomatoes", + "large garlic cloves", + "flat leaf parsley", + "pitted kalamata olives", + "large eggs", + "tuna packed in olive oil", + "sugar", + "potatoes", + "green beans", + "capers", + "dijon mustard", + "extra-virgin olive oil", + "champagne vinegar" + ] + }, + { + "id": 8882, + "cuisine": "filipino", + "ingredients": [ + "brown sugar", + "bananas", + "vegetable oil" + ] + }, + { + "id": 16782, + "cuisine": "italian", + "ingredients": [ + "crushed tomatoes", + "cracked black pepper", + "garlic cloves", + "penne", + "grated parmesan cheese", + "crushed red pepper", + "onions", + "fresh basil", + "olive oil", + "whipping cream", + "fresh parsley", + "vodka", + "butter", + "salt" + ] + }, + { + "id": 47840, + "cuisine": "southern_us", + "ingredients": [ + "waffle", + "baking powder", + "bacon", + "cornmeal", + "eggs", + "ground black pepper", + "butter", + "chicken fingers", + "kosher salt", + "flour", + "buttermilk", + "rice flour", + "melted butter", + "baking soda", + "vegetable oil", + "poultry seasoning", + "chicken" + ] + }, + { + "id": 47130, + "cuisine": "vietnamese", + "ingredients": [ + "brown sugar", + "thai basil", + "green onions", + "salt", + "beansprouts", + "lime juice", + "enokitake", + "daikon", + "rice flour", + "toasted sesame oil", + "tumeric", + "sweet soy sauce", + "vegetable oil", + "rice vinegar", + "coconut milk", + "eggs", + "fresh ginger", + "mint leaves", + "thai chile", + "carrots", + "snow peas" + ] + }, + { + "id": 47721, + "cuisine": "cajun_creole", + "ingredients": [ + "cayenne", + "shallots", + "paprika", + "coconut cream", + "yellow peppers", + "ketchup", + "large eggs", + "worcestershire sauce", + "salt", + "fresh lemon juice", + "horseradish", + "dijon mustard", + "chili powder", + "garlic", + "freshly ground pepper", + "olive oil", + "green onions", + "sea salt", + "cayenne pepper", + "shrimp" + ] + }, + { + "id": 33794, + "cuisine": "brazilian", + "ingredients": [ + "butter", + "chocolate sprinkles", + "unsweetened cocoa powder", + "sweetened condensed milk" + ] + }, + { + "id": 14250, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed light brown sugar", + "biscotti", + "ground cinnamon", + "bananas", + "water", + "butter", + "vanilla ice cream", + "dark rum" + ] + }, + { + "id": 7222, + "cuisine": "cajun_creole", + "ingredients": [ + "garlic powder", + "paprika", + "onion powder", + "dried oregano", + "ground black pepper", + "cayenne pepper", + "dried thyme", + "coarse salt" + ] + }, + { + "id": 40141, + "cuisine": "french", + "ingredients": [ + "unbaked pie crusts", + "heavy cream", + "onions", + "ground nutmeg", + "salt", + "eggs", + "ground black pepper", + "all-purpose flour", + "milk", + "bacon" + ] + }, + { + "id": 11544, + "cuisine": "cajun_creole", + "ingredients": [ + "green bell pepper", + "ground black pepper", + "vegetable oil", + "cayenne pepper", + "chicken", + "water", + "bay leaves", + "salt", + "medium shrimp", + "minced garlic", + "file powder", + "smoked sausage", + "chopped onion", + "dried thyme", + "green onions", + "all-purpose flour", + "fresh parsley" + ] + }, + { + "id": 37527, + "cuisine": "irish", + "ingredients": [ + "capers", + "watercress", + "dijon mustard", + "smoked salmon", + "rye bread", + "pepper", + "cream cheese, soften" + ] + }, + { + "id": 38409, + "cuisine": "greek", + "ingredients": [ + "pepper", + "ground beef", + "feta cheese", + "dried thyme", + "plain yogurt", + "salt" + ] + }, + { + "id": 46612, + "cuisine": "korean", + "ingredients": [ + "garlic paste", + "potatoes", + "onions", + "dashi", + "Gochujang base", + "zucchini", + "fresh mushrooms", + "water", + "soft tofu", + "bean curd" + ] + }, + { + "id": 15945, + "cuisine": "greek", + "ingredients": [ + "orzo pasta", + "fresh lemon juice", + "pitted kalamata olives", + "purple onion", + "red bell pepper", + "olive oil", + "fresh oregano", + "fresh parsley", + "tomatoes", + "garlic", + "feta cheese crumbles" + ] + }, + { + "id": 44353, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "chile pepper", + "Anaheim chile", + "cornmeal", + "milk", + "salt", + "baking powder", + "shredded Monterey Jack cheese" + ] + }, + { + "id": 15574, + "cuisine": "cajun_creole", + "ingredients": [ + "sugar", + "whole grain dijon mustard", + "paprika", + "fresh lemon juice", + "ground cumin", + "dried thyme", + "ground red pepper", + "salt", + "dried oregano", + "halibut fillets", + "chopped fresh chives", + "cornichons", + "flat leaf parsley", + "garlic powder", + "low-fat mayonnaise", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 12913, + "cuisine": "chinese", + "ingredients": [ + "white pepper", + "large eggs", + "ginger", + "corn starch", + "cold water", + "granulated sugar", + "green onions", + "yellow onion", + "grated orange", + "white vinegar", + "sesame seeds", + "low sodium chicken broth", + "garlic", + "boneless skinless chicken breast halves", + "soy sauce", + "Sriracha", + "vegetable oil", + "orange juice" + ] + }, + { + "id": 4448, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "asiago", + "pitted kalamata olives", + "ground black pepper", + "fresh basil", + "artichoke hearts", + "salt", + "cherry tomatoes", + "ziti" + ] + }, + { + "id": 25047, + "cuisine": "greek", + "ingredients": [ + "lemon", + "greek yogurt", + "fresh dill", + "salt", + "garlic", + "olive oil", + "cucumber" + ] + }, + { + "id": 36129, + "cuisine": "southern_us", + "ingredients": [ + "pie crust", + "sweet potatoes", + "softened butter", + "eggs", + "vanilla extract", + "ground cinnamon", + "whole milk", + "sugar", + "grated nutmeg" + ] + }, + { + "id": 27800, + "cuisine": "italian", + "ingredients": [ + "ragu old world style pasta sauc", + "ground beef", + "water", + "rotini pasta, cook and drain", + "shredded mozzarella cheese" + ] + }, + { + "id": 45919, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "low salt chicken broth", + "serrano chile", + "chili powder", + "fresh lime juice", + "green onions", + "fresh mint", + "avocado", + "buttermilk", + "chopped cilantro fresh" + ] + }, + { + "id": 15649, + "cuisine": "cajun_creole", + "ingredients": [ + "dried thyme", + "paprika", + "garlic powder", + "cayenne pepper", + "olive oil", + "salt", + "ground nutmeg", + "uncook medium shrimp, peel and devein" + ] + }, + { + "id": 35022, + "cuisine": "moroccan", + "ingredients": [ + "saffron threads", + "fresh cilantro", + "zucchini", + "cinnamon", + "chickpeas", + "carrots", + "boneless lamb", + "ground ginger", + "olive oil", + "dried apricot", + "garlic", + "long-grain rice", + "onions", + "chicken stock", + "pomegranate seeds", + "pistachios", + "diced tomatoes", + "orange juice", + "smoked paprika", + "tumeric", + "ground black pepper", + "lemon wedge", + "salt", + "lemon juice", + "cumin" + ] + }, + { + "id": 9067, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "ground black pepper", + "garlic", + "game", + "olive oil", + "lemon", + "red bell pepper", + "ground cumin", + "corn kernels", + "chili powder", + "salt", + "chopped cilantro fresh", + "lime", + "jalapeno chilies", + "purple onion", + "chopped cilantro" + ] + }, + { + "id": 2754, + "cuisine": "japanese", + "ingredients": [ + "serrano peppers", + "garlic", + "fresh lime juice", + "shallots", + "cane sugar", + "cilantro stems", + "fine sea salt", + "extra firm tofu", + "extra-virgin olive oil", + "soba noodles" + ] + }, + { + "id": 37536, + "cuisine": "vietnamese", + "ingredients": [ + "rice stick noodles", + "water", + "sirloin steak", + "thai chile", + "beansprouts", + "fish sauce", + "peeled fresh ginger", + "fat free less sodium beef broth", + "yellow onion", + "fresh basil leaves", + "clove", + "leaves", + "less sodium soy sauce", + "garlic", + "fresh mint", + "brown sugar", + "lime wedges", + "star anise", + "cardamom pods", + "snow peas" + ] + }, + { + "id": 44567, + "cuisine": "southern_us", + "ingredients": [ + "pork roast", + "pepper", + "salt", + "garlic cloves" + ] + }, + { + "id": 3436, + "cuisine": "mexican", + "ingredients": [ + "purple onion", + "fresh lime juice", + "ground red pepper", + "garlic cloves", + "ground cumin", + "chili powder", + "sour cream", + "salt", + "chopped cilantro fresh" + ] + }, + { + "id": 3180, + "cuisine": "moroccan", + "ingredients": [ + "pitted date", + "garlic powder", + "salt", + "couscous", + "brown sugar", + "water", + "cinnamon", + "ground coriander", + "chopped cilantro fresh", + "fat free less sodium chicken broth", + "shallots", + "all-purpose flour", + "chicken thighs", + "slivered almonds", + "olive oil", + "paprika", + "freshly ground pepper", + "ground cumin" + ] + }, + { + "id": 7040, + "cuisine": "korean", + "ingredients": [ + "black pepper", + "crushed red pepper flakes", + "organic sugar", + "green onions", + "garlic", + "onions", + "mirin", + "ginger", + "toasted sesame oil", + "tofu", + "wheat", + "rice vinegar", + "pears" + ] + }, + { + "id": 30550, + "cuisine": "mexican", + "ingredients": [ + "clove", + "cider vinegar", + "Mexican oregano", + "dark brown sugar", + "black peppercorns", + "olive oil", + "fine sea salt", + "garlic cloves", + "piloncillo", + "water", + "baking potatoes", + "allspice berries", + "avocado", + "skim milk", + "bay leaves", + "yellow onion", + "poblano chiles" + ] + }, + { + "id": 33032, + "cuisine": "cajun_creole", + "ingredients": [ + "melted butter", + "granulated sugar", + "buttermilk", + "salt", + "sliced almonds", + "baking powder", + "vanilla extract", + "sour cream", + "coconut flakes", + "large eggs", + "heavy cream", + "confectioners sugar", + "pure vanilla extract", + "baking soda", + "butter", + "cake flour" + ] + }, + { + "id": 40768, + "cuisine": "spanish", + "ingredients": [ + "sugar", + "ground black pepper", + "large shrimp", + "orange bell pepper", + "sea salt", + "water", + "heirloom tomatoes", + "chopped garlic", + "fresh basil", + "sherry vinegar", + "extra-virgin olive oil" + ] + }, + { + "id": 25124, + "cuisine": "italian", + "ingredients": [ + "lemon", + "anchovy fillets", + "kosher salt", + "garlic", + "flat leaf parsley", + "capers", + "extra-virgin olive oil", + "lemon juice", + "ground black pepper", + "white wine vinegar" + ] + }, + { + "id": 12760, + "cuisine": "spanish", + "ingredients": [ + "baguette", + "salt", + "hard-boiled egg", + "garlic cloves", + "sherry vinegar", + "blanched almonds", + "tomatoes", + "extra-virgin olive oil", + "serrano ham" + ] + }, + { + "id": 12630, + "cuisine": "japanese", + "ingredients": [ + "rice vinegar", + "raw sugar", + "sesame seeds", + "cucumber", + "sea salt" + ] + }, + { + "id": 18251, + "cuisine": "southern_us", + "ingredients": [ + "pepper", + "salt", + "crackers", + "vegetable oil", + "hot sauce", + "large eggs", + "all-purpose flour", + "buttermilk", + "shrimp" + ] + }, + { + "id": 16306, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "sesame oil", + "yellow onion", + "beef", + "ginger", + "white sugar", + "black pepper", + "red pepper flakes", + "toasted sesame seeds", + "rib eye steaks", + "green onions", + "garlic" + ] + }, + { + "id": 41476, + "cuisine": "chinese", + "ingredients": [ + "curry powder", + "crushed red pepper flakes", + "oyster sauce", + "straw mushrooms", + "green onions", + "peanut oil", + "boneless skinless chicken breast halves", + "soy sauce", + "water chestnuts", + "peanut butter", + "noodles", + "fresh ginger", + "garlic", + "carrots" + ] + }, + { + "id": 21065, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "garlic", + "pork tenderloin", + "chopped cilantro fresh", + "salsa verde", + "all-purpose flour", + "chicken broth", + "jalapeno chilies", + "Country Crock® Spread" + ] + }, + { + "id": 38001, + "cuisine": "mexican", + "ingredients": [ + "green cabbage", + "pumpkin purée", + "cream cheese", + "corn tortillas", + "orange", + "butter", + "orange juice", + "olive oil", + "toasted pumpkinseeds", + "ancho chile pepper", + "kosher salt", + "green onions", + "ground allspice", + "chopped cilantro" + ] + }, + { + "id": 26777, + "cuisine": "thai", + "ingredients": [ + "lime zest", + "fresh lemon", + "light coconut milk", + "chopped cilantro", + "jalapeno chilies", + "baby spinach", + "grated lemon zest", + "shiitake", + "boneless skinless chicken breasts", + "garlic", + "glass noodles", + "low sodium chicken broth", + "ginger", + "Thai fish sauce" + ] + }, + { + "id": 31866, + "cuisine": "russian", + "ingredients": [ + "kefir", + "vegetable oil", + "eggs", + "baking soda", + "salt", + "milk", + "sunflower oil", + "sugar", + "flour" + ] + }, + { + "id": 4198, + "cuisine": "chinese", + "ingredients": [ + "fat free less sodium chicken broth", + "green onions", + "corn starch", + "sliced almonds", + "peeled fresh ginger", + "garlic cloves", + "low sodium soy sauce", + "broccoli florets", + "peanut oil", + "large shrimp", + "water", + "instant white rice", + "red bell pepper" + ] + }, + { + "id": 6021, + "cuisine": "italian", + "ingredients": [ + "milk", + "grated parmesan cheese", + "heavy cream", + "onions", + "swiss chard", + "dried sage", + "grated nutmeg", + "olive oil", + "pumpkin purée", + "salt", + "ground black pepper", + "butter", + "oven-ready lasagna noodles" + ] + }, + { + "id": 1430, + "cuisine": "southern_us", + "ingredients": [ + "collard greens", + "olive oil", + "hot sauce", + "chicken broth", + "water", + "all-purpose flour", + "celery ribs", + "cider vinegar", + "bacon slices", + "ham hock", + "diced onions", + "pepper", + "whipping cream" + ] + }, + { + "id": 31582, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "olive oil", + "fresh mushrooms", + "pepper", + "onion soup mix", + "italian seasoning", + "tomato sauce", + "boneless chuck roast", + "corn starch", + "sweet onion", + "beef broth" + ] + }, + { + "id": 34746, + "cuisine": "french", + "ingredients": [ + "whipping cream", + "cucumber", + "fresh lemon juice", + "salt", + "unsalted butter", + "ground white pepper" + ] + }, + { + "id": 31675, + "cuisine": "italian", + "ingredients": [ + "yellow corn meal", + "active dry yeast", + "all-purpose flour", + "mozzarella cheese", + "salt", + "sugar", + "eggplant", + "fresh basil leaves", + "warm water", + "red wine vinegar", + "plum tomatoes" + ] + }, + { + "id": 1589, + "cuisine": "southern_us", + "ingredients": [ + "hot pepper sauce", + "chile pepper", + "vidalia onion", + "baked beans", + "ground beef", + "brown sugar", + "barbecue sauce", + "garlic powder", + "chili powder" + ] + }, + { + "id": 33537, + "cuisine": "cajun_creole", + "ingredients": [ + "Madeira", + "whipping cream", + "garlic powder", + "medium shrimp", + "black pepper", + "fresh mushrooms", + "butter" + ] + }, + { + "id": 30767, + "cuisine": "italian", + "ingredients": [ + "eggs", + "milk", + "red wine", + "yellow onion", + "spaghetti", + "bread crumbs", + "ground black pepper", + "garlic", + "ground beef", + "sugar", + "olive oil", + "ground pork", + "flat leaf parsley", + "tomatoes", + "crushed tomatoes", + "grated parmesan cheese", + "salt", + "fresh basil leaves" + ] + }, + { + "id": 6605, + "cuisine": "spanish", + "ingredients": [ + "ground black pepper", + "salt", + "great northern beans", + "sherry wine vinegar", + "fresh parsley", + "bay leaves", + "anchovy fillets", + "water", + "extra-virgin olive oil" + ] + }, + { + "id": 30709, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "roast red peppers, drain", + "fresh basil", + "basil", + "plum tomatoes", + "red wine vinegar", + "olive oil spray", + "pitted kalamata olives", + "purple onion" + ] + }, + { + "id": 17625, + "cuisine": "italian", + "ingredients": [ + "salad", + "salami", + "italian seasoning", + "pasta" + ] + }, + { + "id": 40675, + "cuisine": "indian", + "ingredients": [ + "jalapeno chilies", + "orange juice", + "papaya", + "purple onion", + "chaat masala", + "mint leaves", + "fresh lime juice", + "pistachios", + "salt", + "kiwi" + ] + }, + { + "id": 48745, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "baking potatoes", + "unsalted butter", + "all-purpose flour", + "active dry yeast", + "salt", + "whole milk" + ] + }, + { + "id": 17415, + "cuisine": "southern_us", + "ingredients": [ + "large eggs", + "chicken pieces", + "water", + "salt", + "garlic powder", + "all-purpose flour", + "pepper", + "vegetable oil" + ] + }, + { + "id": 3632, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "fresh peas", + "fresh chevre", + "pepper", + "butter", + "salt", + "cream", + "spring onions", + "garlic", + "almonds", + "basil" + ] + }, + { + "id": 6674, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "zucchini", + "corn flour", + "water", + "rice", + "onions", + "brown sugar", + "chicken breasts", + "coconut milk", + "green curry paste", + "cooking cream" + ] + }, + { + "id": 39232, + "cuisine": "chinese", + "ingredients": [ + "sesame seeds", + "apple cider vinegar", + "canola oil", + "soy sauce", + "sherry", + "garlic", + "ground black pepper", + "chicken wing drummettes", + "fresh ginger", + "green onions", + "cola" + ] + }, + { + "id": 33812, + "cuisine": "japanese", + "ingredients": [ + "mochiko", + "water", + "granulated sugar", + "kosher salt" + ] + }, + { + "id": 3863, + "cuisine": "french", + "ingredients": [ + "capers", + "butter", + "dijon mustard", + "fresh parsley", + "shallots", + "filet mignon steaks", + "cabernet sauvignon" + ] + }, + { + "id": 5916, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "butter", + "sake", + "mirin", + "garlic", + "pork belly", + "ginger", + "sugar", + "shallots", + "chinese five-spice powder" + ] + }, + { + "id": 25103, + "cuisine": "chinese", + "ingredients": [ + "olive oil", + "sea salt", + "boneless skinless chicken breast halves", + "flour", + "low salt chicken broth", + "unsalted butter", + "cracked black pepper", + "lemon", + "flat leaf parsley" + ] + }, + { + "id": 37877, + "cuisine": "french", + "ingredients": [ + "haricots verts", + "roasted chestnuts", + "unsalted butter", + "liqueur", + "chicken broth", + "whiskey", + "shallots" + ] + }, + { + "id": 5302, + "cuisine": "korean", + "ingredients": [ + "pork loin", + "vegetable oil", + "garlic cloves", + "sugar", + "napa cabbage leaves", + "dried shiitake mushrooms", + "glass noodles", + "sesame", + "green onions", + "salt", + "onions", + "soy sauce", + "sesame oil", + "Gochujang base" + ] + }, + { + "id": 27116, + "cuisine": "japanese", + "ingredients": [ + "konnyaku", + "mirin", + "rice", + "sugar", + "shiitake", + "sesame oil", + "onions", + "tongue", + "potatoes", + "carrots", + "soy sauce", + "beef", + "burdock" + ] + }, + { + "id": 42106, + "cuisine": "french", + "ingredients": [ + "kosher salt", + "cod fillets", + "garlic", + "mussels", + "olive oil", + "red wine vinegar", + "large shrimp", + "tomatoes", + "fennel", + "fresh tarragon", + "pepper", + "dry white wine", + "celery" + ] + }, + { + "id": 31755, + "cuisine": "indian", + "ingredients": [ + "sugar", + "rice flour", + "salt", + "plantains", + "water", + "ground turmeric", + "coconut oil", + "all-purpose flour" + ] + }, + { + "id": 7287, + "cuisine": "french", + "ingredients": [ + "powdered sugar", + "unsalted butter", + "salt", + "corn starch", + "sugar", + "whole milk", + "cream cheese", + "large egg yolks", + "apricot halves", + "apricot preserves", + "grated orange peel", + "cherries", + "all-purpose flour" + ] + }, + { + "id": 44737, + "cuisine": "italian", + "ingredients": [ + "fresh peas", + "shallots", + "frozen peas", + "fettucine", + "dry white wine", + "whipping cream", + "green onions", + "butter", + "prosciutto", + "fresh shiitake mushrooms", + "flat leaf parsley" + ] + }, + { + "id": 467, + "cuisine": "italian", + "ingredients": [ + "grated parmesan cheese", + "boneless skinless chicken breast halves", + "frozen broccoli florets", + "condensed cream of mushroom soup", + "milk", + "butter", + "ground black pepper", + "linguine" + ] + }, + { + "id": 24901, + "cuisine": "chinese", + "ingredients": [ + "fresh cilantro", + "Sriracha", + "butter", + "salt", + "brown sugar", + "lo mein noodles", + "green onions", + "ginger", + "olive oil", + "large eggs", + "crushed red pepper flakes", + "shrimp", + "soy sauce", + "zucchini", + "sesame oil", + "garlic" + ] + }, + { + "id": 5714, + "cuisine": "italian", + "ingredients": [ + "milk", + "apples", + "eggs", + "flour", + "melted butter", + "lemon peel", + "salt", + "sugar", + "baking powder" + ] + }, + { + "id": 19775, + "cuisine": "southern_us", + "ingredients": [ + "vinegar", + "tartar sauce", + "yellow corn meal", + "vegetable oil", + "catfish fillets", + "lemon wedge", + "ground black pepper", + "sea salt" + ] + }, + { + "id": 20781, + "cuisine": "mexican", + "ingredients": [ + "chile powder", + "white onion", + "lime wedges", + "corn tortillas", + "oregano", + "pico de gallo", + "lime", + "salt", + "chopped cilantro fresh", + "avocado", + "orange", + "garlic", + "chopped cilantro", + "cumin", + "black pepper", + "jalapeno chilies", + "oil", + "skirt steak" + ] + }, + { + "id": 4295, + "cuisine": "greek", + "ingredients": [ + "pepper", + "garlic cloves", + "sour cream", + "white vinegar", + "green onions", + "feta cheese crumbles", + "lemon zest", + "lemon juice", + "oregano", + "plain yogurt", + "salt", + "cucumber" + ] + }, + { + "id": 22718, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "finely chopped onion", + "cayenne pepper", + "basmati rice", + "fresh ginger", + "garlic", + "chopped cilantro", + "canola oil", + "unsalted butter", + "salt", + "toor dal", + "tumeric", + "jalapeno chilies", + "cumin seed", + "naan" + ] + }, + { + "id": 3320, + "cuisine": "mexican", + "ingredients": [ + "eggs", + "milk", + "chopped cilantro fresh", + "Velveeta", + "green pepper", + "red potato", + "garlic", + "KRAFT Zesty Italian Dressing", + "Oscar Mayer Deli Fresh Smoked Ham", + "onions" + ] + }, + { + "id": 42274, + "cuisine": "greek", + "ingredients": [ + "tomato paste", + "eggplant", + "salt", + "bay leaf", + "diced onions", + "water", + "russet potatoes", + "ground allspice", + "ground lamb", + "clove", + "olive oil", + "dry red wine", + "cinnamon sticks", + "minced garlic", + "ground black pepper", + "plain breadcrumbs", + "plum tomatoes" + ] + }, + { + "id": 33232, + "cuisine": "french", + "ingredients": [ + "bay leaves", + "dry red wine", + "baguette", + "butter", + "low sodium beef broth", + "fresh thyme", + "cracked black pepper", + "onions", + "shredded swiss cheese", + "salt" + ] + }, + { + "id": 3604, + "cuisine": "southern_us", + "ingredients": [ + "fresh rosemary", + "eggplant", + "extra-virgin olive oil", + "chopped fresh sage", + "grana padano", + "chicken stock", + "olive oil", + "butter", + "hot sauce", + "onions", + "shucked oysters", + "salt and ground black pepper", + "grated nutmeg", + "garlic cloves", + "tasso", + "cream", + "flour", + "dry bread crumbs", + "chopped parsley" + ] + }, + { + "id": 12186, + "cuisine": "filipino", + "ingredients": [ + "ground black pepper", + "garlic", + "vegetable oil", + "onions", + "large eggs", + "salt", + "eggplant", + "ground pork" + ] + }, + { + "id": 4659, + "cuisine": "italian", + "ingredients": [ + "garlic powder", + "salt", + "grated parmesan cheese", + "fresh parsley", + "grated romano cheese", + "fillets", + "seasoned bread crumbs", + "butter" + ] + }, + { + "id": 38933, + "cuisine": "chinese", + "ingredients": [ + "sugar", + "napa cabbage leaves", + "salt", + "medium shrimp", + "large egg whites", + "vegetable oil", + "corn starch", + "soy sauce", + "sesame oil", + "bacon fat", + "bamboo shoots", + "starch", + "cooking wine", + "ground white pepper" + ] + }, + { + "id": 43619, + "cuisine": "moroccan", + "ingredients": [ + "chicken breast halves", + "grated lemon zest", + "couscous", + "ground turmeric", + "cilantro sprigs", + "fresh lemon juice", + "chicken thighs", + "ground cumin", + "chicken drumsticks", + "garlic cloves", + "fresh parsley", + "plum tomatoes", + "green olives", + "salt", + "low salt chicken broth", + "chopped cilantro fresh" + ] + }, + { + "id": 44189, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "fresh cilantro", + "button mushrooms", + "coconut milk", + "kaffir lime leaves", + "sugar", + "fresh ginger", + "scallions", + "chicken stock", + "tumeric", + "lime", + "garlic", + "galangal", + "sambal ulek", + "lemongrass", + "boneless skinless chicken breasts", + "carrots" + ] + }, + { + "id": 6459, + "cuisine": "italian", + "ingredients": [ + "arborio rice", + "dried thyme", + "grated parmesan cheese", + "carrots", + "boiling potatoes", + "tomato paste", + "ground black pepper", + "salt", + "bay leaf", + "green cabbage", + "olive oil", + "garlic", + "celery", + "canned low sodium chicken broth", + "zucchini", + "pinto beans", + "onions" + ] + }, + { + "id": 15421, + "cuisine": "japanese", + "ingredients": [ + "enokitake", + "Japanese soy sauce", + "beef sirloin", + "asparagus", + "cooking oil", + "mirin", + "scallions" + ] + }, + { + "id": 512, + "cuisine": "vietnamese", + "ingredients": [ + "frozen banana leaf", + "corn oil", + "black pepper", + "fatback", + "meat" + ] + }, + { + "id": 43143, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "refried beans", + "chickpeas", + "taco shells", + "Daiya", + "onions", + "tomatoes", + "guacamole", + "taco seasoning", + "lime juice", + "salsa", + "chipotle sauce" + ] + }, + { + "id": 10677, + "cuisine": "italian", + "ingredients": [ + "fresh peas", + "sugar pea", + "bow-tie pasta", + "pancetta", + "shallots", + "olive oil" + ] + }, + { + "id": 8546, + "cuisine": "italian", + "ingredients": [ + "chees fresh mozzarella", + "french baguette", + "prepar pesto", + "I Can't Believe It's Not Butter!® Spread", + "red" + ] + }, + { + "id": 47041, + "cuisine": "korean", + "ingredients": [ + "boneless chicken skinless thigh", + "ginger", + "toasted sesame seeds", + "malt syrup", + "granulated sugar", + "garlic cloves", + "ground black pepper", + "scallions", + "soy sauce", + "vegetable oil", + "toasted sesame oil" + ] + }, + { + "id": 13269, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "whole peeled tomatoes", + "garlic", + "okra", + "green bell pepper", + "dried thyme", + "chicken parts", + "all-purpose flour", + "bay leaf", + "andouille sausage", + "ground black pepper", + "vegetable oil", + "cayenne pepper", + "dried basil", + "file powder", + "salt", + "celery" + ] + }, + { + "id": 11404, + "cuisine": "cajun_creole", + "ingredients": [ + "cremini mushrooms", + "olive oil", + "cajun seasoning", + "salt", + "red bell pepper", + "white pepper", + "chicken breasts", + "basil", + "cayenne pepper", + "black pepper", + "garlic powder", + "butter", + "shredded pepper jack cheese", + "oregano", + "green bell pepper", + "white onion", + "onion powder", + "paprika", + "thyme" + ] + }, + { + "id": 33144, + "cuisine": "italian", + "ingredients": [ + "tomato paste", + "corn oil", + "chopped celery", + "low salt chicken broth", + "black peppercorns", + "sea salt", + "beef rib short", + "fresh rosemary", + "red wine", + "chopped onion", + "bay leaf", + "sage leaves", + "potatoes", + "extra-virgin olive oil", + "carrots" + ] + }, + { + "id": 2359, + "cuisine": "cajun_creole", + "ingredients": [ + "frozen whole kernel corn", + "diced tomatoes with garlic and onion", + "cajun seasoning", + "garlic cloves", + "boneless skinless chicken breasts", + "okra", + "lima beans" + ] + }, + { + "id": 8429, + "cuisine": "jamaican", + "ingredients": [ + "bay leaves", + "malt vinegar", + "black peppercorns", + "vegetable oil", + "allspice berries", + "water", + "cinnamon", + "chicken", + "chile pepper", + "scallions" + ] + }, + { + "id": 27002, + "cuisine": "indian", + "ingredients": [ + "boneless chicken skinless thigh", + "ginger", + "roma tomatoes", + "garlic cloves", + "curry mix", + "salt", + "yoghurt", + "ghee" + ] + }, + { + "id": 14332, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "extra-virgin olive oil", + "softened butter", + "flour tortillas", + "cilantro leaves", + "corn kernels", + "salt", + "garlic salt", + "grape tomatoes", + "cracked black pepper", + "goat cheese" + ] + }, + { + "id": 20139, + "cuisine": "indian", + "ingredients": [ + "brown sugar", + "ground cardamom", + "lime juice", + "chopped fresh mint", + "plain yogurt", + "fresh mint", + "star anise", + "mango" + ] + }, + { + "id": 28495, + "cuisine": "italian", + "ingredients": [ + "sugar", + "butter", + "polenta", + "grated parmesan cheese", + "salt", + "water", + "extra-virgin olive oil", + "dried oregano", + "oil-cured black olives", + "plum tomatoes" + ] + }, + { + "id": 42493, + "cuisine": "mexican", + "ingredients": [ + "cream", + "olive oil", + "chili powder", + "salt", + "sour cream", + "avocado", + "shredded cheddar cheese", + "flour tortillas", + "diced tomatoes", + "ground sausage", + "diced onions", + "pepper", + "large eggs", + "green enchilada sauce", + "salsa", + "chopped cilantro", + "jack cheese", + "milk", + "green onions", + "garlic", + "green chilies" + ] + }, + { + "id": 28011, + "cuisine": "french", + "ingredients": [ + "granulated sugar", + "vanilla", + "dried beans", + "frozen pastry puff sheets", + "almond paste", + "large eggs", + "all-purpose flour", + "unsalted butter", + "almond extract", + "confectioners sugar" + ] + }, + { + "id": 5763, + "cuisine": "french", + "ingredients": [ + "salt", + "black pepper", + "boneless skinless chicken breast halves", + "brie cheese", + "light beer", + "dried oregano" + ] + }, + { + "id": 41942, + "cuisine": "british", + "ingredients": [ + "white flour", + "salt", + "bicarbonate of soda", + "wholemeal flour", + "buttermilk" + ] + }, + { + "id": 38340, + "cuisine": "chinese", + "ingredients": [ + "honey", + "pork shoulder", + "chinese five-spice powder", + "hoisin sauce", + "light soy sauce", + "sweet rice wine" + ] + }, + { + "id": 8837, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "boneless skinless chicken breasts", + "shredded cheese", + "jalapeno chilies", + "garlic", + "flour tortillas", + "tomatillos", + "sour cream", + "chicken broth", + "green onions", + "cilantro leaves" + ] + }, + { + "id": 43514, + "cuisine": "indian", + "ingredients": [ + "garlic paste", + "yoghurt", + "all-purpose flour", + "coriander", + "garam masala", + "paneer", + "corn starch", + "ground turmeric", + "milk", + "kasuri methi", + "oil", + "cashew nuts", + "tomatoes", + "coriander powder", + "salt", + "onions", + "ginger paste" + ] + }, + { + "id": 41745, + "cuisine": "italian", + "ingredients": [ + "green bell pepper", + "crushed tomatoes", + "salt", + "onions", + "pasta", + "mozzarella cheese", + "chicken breasts", + "carrots", + "celery ribs", + "black pepper", + "parmesan cheese", + "garlic cloves", + "italian seasoning", + "chicken broth", + "water", + "crushed red pepper", + "red bell pepper" + ] + }, + { + "id": 21453, + "cuisine": "cajun_creole", + "ingredients": [ + "KRAFT Zesty Italian Dressing", + "black olives", + "pimento stuffed green olives", + "Kraft Slim Cut Mozzarella Cheese Slices", + "Italian bread", + "Oscar Mayer Deli Fresh Smoked Ham", + "Oscar Mayer Cotto Salami", + "garlic", + "celery" + ] + }, + { + "id": 16312, + "cuisine": "italian", + "ingredients": [ + "kosher salt", + "garlic cloves", + "rib eye steaks", + "cooking spray", + "ground black pepper", + "fresh rosemary", + "lemon wedge" + ] + }, + { + "id": 19550, + "cuisine": "italian", + "ingredients": [ + "large egg whites", + "green onions", + "canadian bacon", + "black pepper", + "cooking spray", + "chopped onion", + "cheddar cheese", + "large eggs", + "hot sauce", + "brown hash potato", + "salt" + ] + }, + { + "id": 46931, + "cuisine": "french", + "ingredients": [ + "dijon mustard", + "shallots", + "cheese", + "unsalted butter", + "dry white wine", + "tapenade", + "canola oil", + "honey", + "pork tenderloin", + "cracked black pepper", + "lemon juice", + "kosher salt", + "fresh thyme", + "parsley", + "all-purpose flour" + ] + }, + { + "id": 1836, + "cuisine": "filipino", + "ingredients": [ + "soy sauce", + "lemon", + "corn starch", + "olive oil", + "salt", + "white sugar", + "pepper", + "garlic", + "onions", + "vegetable oil", + "new york strip steaks" + ] + }, + { + "id": 2713, + "cuisine": "mexican", + "ingredients": [ + "avocado", + "red cabbage", + "salt", + "pomegranate seeds", + "purple onion", + "corn tortillas", + "lime", + "queso fresco", + "olive oil cooking spray", + "Mexican seasoning mix", + "chicken breast halves", + "garlic cloves" + ] + }, + { + "id": 23782, + "cuisine": "southern_us", + "ingredients": [ + "unsalted butter", + "buttermilk", + "eggs", + "almond extract", + "all-purpose flour", + "ground cinnamon", + "granulated sugar", + "salt", + "pure maple syrup", + "ice water", + "dark brown sugar" + ] + }, + { + "id": 38855, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "water", + "grated parmesan cheese", + "shredded mozzarella cheese", + "dried oregano", + "italian sausage", + "warm water", + "chopped tomatoes", + "ricotta cheese", + "fresh parsley", + "fresh basil", + "olive oil", + "mushrooms", + "garlic cloves", + "tomato paste", + "dried porcini mushrooms", + "lasagna noodles", + "dry red wine", + "onions" + ] + }, + { + "id": 43151, + "cuisine": "mexican", + "ingredients": [ + "bouillon", + "garlic", + "chuck roast", + "pepper", + "salt", + "tomatoes", + "vegetable oil" + ] + }, + { + "id": 36229, + "cuisine": "mexican", + "ingredients": [ + "lettuce", + "lime", + "butternut squash", + "tomatoes", + "radishes", + "frozen corn", + "avocado", + "quinoa", + "green onions", + "black beans", + "bell pepper", + "carrots" + ] + }, + { + "id": 27881, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "dry red wine", + "lemon juice", + "water", + "fresh shiitake mushrooms", + "salt", + "veal", + "vegetable broth", + "ground white pepper", + "honey", + "butter", + "all-purpose flour" + ] + }, + { + "id": 39425, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "milkfish", + "long beans", + "zucchini", + "okra", + "water", + "salt", + "tomatoes", + "shrimp paste", + "onions" + ] + }, + { + "id": 16049, + "cuisine": "italian", + "ingredients": [ + "all-purpose flour", + "active dry yeast", + "warm water", + "white sugar", + "salt" + ] + }, + { + "id": 24395, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "dried rosemary", + "water", + "carrots", + "dried thyme", + "bay leaf", + "white onion", + "lamb shoulder" + ] + }, + { + "id": 31305, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "feta cheese crumbles", + "roasted red peppers", + "fresh oregano", + "ground black pepper", + "salt", + "fresh mint", + "crimini mushrooms", + "fresh lemon juice" + ] + }, + { + "id": 6188, + "cuisine": "italian", + "ingredients": [ + "honey", + "salt", + "ground black pepper", + "olive oil", + "red bell pepper", + "balsamic vinegar" + ] + }, + { + "id": 19613, + "cuisine": "italian", + "ingredients": [ + "pepper", + "diced tomatoes", + "carrots", + "chicken thighs", + "( oz.) tomato sauce", + "salt", + "chopped parsley", + "dried rosemary", + "fresh rosemary", + "grated parmesan cheese", + "fat skimmed chicken broth", + "onions", + "olive oil", + "garlic", + "sliced mushrooms", + "polenta" + ] + }, + { + "id": 35953, + "cuisine": "cajun_creole", + "ingredients": [ + "eggs", + "milk", + "peanut oil", + "sugar", + "flour", + "water", + "salt", + "powdered sugar", + "crisco", + "yeast" + ] + }, + { + "id": 29997, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "baking powder", + "baking soda", + "all-purpose flour", + "milk", + "salt", + "eggs", + "Anaheim chile", + "canola oil" + ] + }, + { + "id": 41162, + "cuisine": "spanish", + "ingredients": [ + "eggs", + "milk", + "salt", + "tomato sauce", + "butter", + "white sugar", + "green bell pepper", + "minced onion", + "ground cayenne pepper", + "pepper", + "worcestershire sauce" + ] + }, + { + "id": 1465, + "cuisine": "mexican", + "ingredients": [ + "salad greens", + "green onions", + "plum tomatoes", + "flour tortillas", + "enchilada sauce", + "feta cheese", + "fat-free refried beans", + "avocado", + "jalapeno chilies", + "ripe olives" + ] + }, + { + "id": 49135, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "firmly packed light brown sugar", + "milk", + "powdered sugar", + "vanilla extract" + ] + }, + { + "id": 17165, + "cuisine": "moroccan", + "ingredients": [ + "baby spinach leaves", + "pomegranate molasses", + "lemon rind", + "dried cranberries", + "ground cinnamon", + "pistachios", + "purple onion", + "greek yogurt", + "olive oil", + "garlic", + "smoked paprika", + "ground cumin", + "soy sauce", + "fresh lemon", + "chickpeas", + "chopped parsley" + ] + }, + { + "id": 49636, + "cuisine": "french", + "ingredients": [ + "milk", + "all-purpose flour", + "cooking oil", + "salt", + "large eggs", + "beer" + ] + }, + { + "id": 2707, + "cuisine": "filipino", + "ingredients": [ + "powdered sugar", + "lemon", + "superfine sugar", + "vanilla extract", + "egg whites", + "condensed milk", + "cream of tartar", + "egg yolks" + ] + }, + { + "id": 7930, + "cuisine": "indian", + "ingredients": [ + "tomatoes", + "paneer", + "oil", + "ground cumin", + "gravy", + "tomato ketchup", + "onions", + "chili powder", + "cumin seed", + "ground turmeric", + "water", + "salt", + "black mustard seeds" + ] + }, + { + "id": 33249, + "cuisine": "korean", + "ingredients": [ + "chiles", + "sesame seeds", + "sesame oil", + "all-purpose flour", + "minced garlic", + "large eggs", + "salt", + "carrots", + "hot red pepper flakes", + "water", + "seeds", + "rice vinegar", + "soy sauce", + "mung beans", + "vegetable oil", + "scallions" + ] + }, + { + "id": 20379, + "cuisine": "italian", + "ingredients": [ + "fontina cheese", + "dry yeast", + "chopped fresh thyme", + "garlic cloves", + "kosher salt", + "cooking spray", + "extra-virgin olive oil", + "cornmeal", + "warm water", + "baby arugula", + "cracked black pepper", + "lemon juice", + "prosciutto", + "lemon wedge", + "fresh oregano", + "bread flour" + ] + }, + { + "id": 38942, + "cuisine": "korean", + "ingredients": [ + "kosher salt", + "dark brown sugar", + "rice vinegar", + "reduced sodium soy sauce", + "toasted sesame oil", + "pork baby back ribs", + "Gochujang base" + ] + }, + { + "id": 43006, + "cuisine": "greek", + "ingredients": [ + "lean ground beef", + "salt", + "greek seasoning", + "red wine vinegar", + "feta cheese crumbles", + "ground black pepper", + "extra-virgin olive oil", + "onions", + "large eggs", + "garlic", + "oregano" + ] + }, + { + "id": 34753, + "cuisine": "thai", + "ingredients": [ + "fresh ginger", + "salt", + "soy sauce", + "sweetened coconut flakes", + "garlic cloves", + "natural peanut butter", + "vegetable oil", + "rice vinegar", + "fresh chives", + "crushed red pepper flakes", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 39727, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "diced tomatoes", + "elbow macaroni", + "canned black beans", + "ground black pepper", + "cilantro leaves", + "onions", + "taco sauce", + "corn kernels", + "garlic", + "ground beef", + "kosher salt", + "Old El Paso™ chopped green chiles", + "salsa" + ] + }, + { + "id": 46421, + "cuisine": "thai", + "ingredients": [ + "coconut oil", + "brown rice", + "garlic chili sauce", + "reduced sodium tamari", + "green onions", + "salt", + "fresh pineapple", + "lime", + "garlic", + "red bell pepper", + "eggs", + "unsalted cashews", + "cilantro leaves" + ] + }, + { + "id": 24660, + "cuisine": "vietnamese", + "ingredients": [ + "sugar", + "flour tortillas", + "rice vinegar", + "cucumber", + "fresh ginger", + "dipping sauces", + "garlic cloves", + "chopped fresh mint", + "honey", + "sesame oil", + "freshly ground pepper", + "steak", + "fish sauce", + "red cabbage", + "purple onion", + "carrots", + "chopped cilantro fresh" + ] + }, + { + "id": 19556, + "cuisine": "southern_us", + "ingredients": [ + "firmly packed brown sugar", + "salt", + "bread", + "granulated sugar", + "Country Crock® Spread", + "eggs", + "vanilla extract", + "milk", + "chopped pecans" + ] + }, + { + "id": 37790, + "cuisine": "mexican", + "ingredients": [ + "cheddar cheese", + "water", + "ground black pepper", + "diced tomatoes", + "yams", + "cumin", + "cottage cheese", + "olive oil", + "chili powder", + "salsa", + "dried parsley", + "tomato sauce", + "dried basil", + "tortillas", + "salt", + "garlic cloves", + "ground cumin", + "black beans", + "garlic powder", + "onion powder", + "sauce", + "dried oregano" + ] + }, + { + "id": 35492, + "cuisine": "italian", + "ingredients": [ + "heavy cream", + "italian seasoning", + "grated parmesan cheese", + "penne pasta", + "butter", + "sliced mushrooms", + "minced garlic", + "bacon" + ] + }, + { + "id": 28370, + "cuisine": "southern_us", + "ingredients": [ + "cider vinegar", + "jalapeno chilies", + "red bell pepper", + "peaches", + "salt", + "bottled lime juice", + "purple onion", + "chopped cilantro fresh", + "sugar", + "habanero pepper", + "garlic cloves" + ] + }, + { + "id": 16564, + "cuisine": "thai", + "ingredients": [ + "baby spinach leaves", + "vegetable oil", + "onions", + "fish sauce", + "lime", + "squash", + "lemongrass", + "coconut milk", + "red chili peppers", + "basil leaves", + "curry paste" + ] + }, + { + "id": 48299, + "cuisine": "italian", + "ingredients": [ + "eggs", + "vanilla extract", + "almond extract", + "all-purpose flour", + "baking powder", + "salt", + "butter", + "confectioners sugar" + ] + }, + { + "id": 42948, + "cuisine": "moroccan", + "ingredients": [ + "black pepper", + "ground coriander", + "ground cinnamon", + "salt", + "ground cloves", + "ground allspice", + "ground ginger", + "cayenne", + "ground cumin" + ] + }, + { + "id": 44194, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "basil leaves", + "garlic cloves", + "fish sauce", + "olive oil", + "Thai eggplants", + "onions", + "green curry paste", + "skinless chicken breasts", + "coconut milk", + "brown sugar", + "bell pepper", + "coconut cream" + ] + }, + { + "id": 47597, + "cuisine": "italian", + "ingredients": [ + "ground black pepper", + "low-fat cream cheese", + "reduced sodium chicken broth", + "chicken breasts", + "ground cumin", + "broccoli florets", + "chipotle sauce", + "kosher salt", + "tortellini" + ] + }, + { + "id": 43983, + "cuisine": "cajun_creole", + "ingredients": [ + "chicken broth", + "red beans", + "black pepper", + "red bell pepper", + "white onion", + "canola oil", + "green bell pepper", + "smoked sausage" + ] + }, + { + "id": 5894, + "cuisine": "greek", + "ingredients": [ + "zucchini", + "chopped onion", + "tomatoes", + "fresh green bean", + "olive oil", + "cayenne pepper", + "russet potatoes", + "flat leaf parsley" + ] + }, + { + "id": 4468, + "cuisine": "indian", + "ingredients": [ + "spices", + "salt", + "tumeric", + "ginger", + "yoghurt", + "garlic", + "paprika", + "chicken" + ] + }, + { + "id": 42226, + "cuisine": "southern_us", + "ingredients": [ + "dried tarragon leaves", + "garlic powder", + "onion powder", + "lemon juice", + "eggs", + "bread crumb fresh", + "flour", + "salt", + "mayonaise", + "white onion", + "green tomatoes", + "oil", + "black pepper", + "leaves", + "parsley", + "smoked paprika" + ] + }, + { + "id": 13749, + "cuisine": "italian", + "ingredients": [ + "marsala wine", + "ground black pepper", + "all-purpose flour", + "fat free less sodium chicken broth", + "cutlet", + "dried porcini mushrooms", + "shallots", + "cremini mushrooms", + "olive oil", + "salt" + ] + }, + { + "id": 46499, + "cuisine": "chinese", + "ingredients": [ + "eggs", + "vinegar", + "salt", + "onions", + "black pepper", + "chicken drumsticks", + "carrots", + "soy sauce", + "teas", + "hot sauce", + "water", + "ginger", + "corn flour" + ] + }, + { + "id": 41588, + "cuisine": "irish", + "ingredients": [ + "irish cream liqueur", + "all-purpose flour", + "cream cheese", + "sugar", + "Challenge Butter", + "chocolate curls", + "eggs", + "egg yolks", + "espresso", + "sour cream", + "cocoa", + "espresso beans", + "coffee beans" + ] + }, + { + "id": 37510, + "cuisine": "southern_us", + "ingredients": [ + "diced onions", + "green bell pepper", + "dried thyme", + "dry red wine", + "hot sauce", + "diced celery", + "chicken broth", + "minced garlic", + "ground black pepper", + "smoked sausage", + "okra", + "italian sausage", + "cooked ham", + "eggplant", + "bacon slices", + "peanut oil", + "red bell pepper", + "tomato purée", + "dried basil", + "bay leaves", + "salt", + "long-grain rice" + ] + }, + { + "id": 1832, + "cuisine": "southern_us", + "ingredients": [ + "ground cinnamon", + "ground nutmeg", + "citrus", + "salt", + "ground ginger", + "orange glaze", + "sweet potatoes", + "cake flour", + "sugar", + "large eggs", + "baking powder", + "hot water", + "ground cloves", + "chop fine pecan", + "vanilla extract", + "canola oil" + ] + }, + { + "id": 12365, + "cuisine": "italian", + "ingredients": [ + "fresh lemon juice", + "cannellini beans", + "flat leaf parsley", + "extra-virgin olive oil" + ] + }, + { + "id": 18666, + "cuisine": "moroccan", + "ingredients": [ + "harissa", + "chopped fresh mint", + "salmon fillets", + "salt", + "purple onion", + "mango", + "cooking spray", + "orange juice" + ] + }, + { + "id": 42509, + "cuisine": "chinese", + "ingredients": [ + "soy sauce", + "sesame oil", + "bean sauce", + "fresh ginger root", + "ground pork", + "white sugar", + "minced garlic", + "vegetable oil", + "corn starch", + "cold water", + "green onions", + "firm tofu" + ] + }, + { + "id": 20188, + "cuisine": "italian", + "ingredients": [ + "cold water", + "olive oil", + "warm water", + "salt", + "sugar", + "cooking spray", + "active dry yeast", + "bread flour" + ] + }, + { + "id": 39077, + "cuisine": "filipino", + "ingredients": [ + "white vinegar", + "crushed red pepper flakes", + "canola oil", + "ground black pepper", + "scallions", + "kosher salt", + "garlic", + "fried eggs", + "cooked white rice" + ] + }, + { + "id": 14651, + "cuisine": "mexican", + "ingredients": [ + "taco seasoning mix", + "pinto beans", + "shredded cheddar cheese", + "diced tomatoes", + "ground turkey", + "lettuce", + "green onions", + "red bell pepper", + "water", + "tortilla chips" + ] + }, + { + "id": 22709, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "onions", + "crushed tomatoes", + "large garlic cloves", + "dried basil", + "flat leaf parsley", + "italian sausage", + "bay leaves", + "dried oregano" + ] + }, + { + "id": 703, + "cuisine": "southern_us", + "ingredients": [ + "cholesterol free egg substitute", + "sugar", + "whole kernel corn, drain", + "all-purpose flour", + "2% reduced-fat milk", + "Country Crock® Spread" + ] + }, + { + "id": 3513, + "cuisine": "mexican", + "ingredients": [ + "lemon", + "white sugar", + "seedless green grape", + "crushed ice", + "plums", + "fresh pineapple", + "orange", + "black tea" + ] + }, + { + "id": 46368, + "cuisine": "chinese", + "ingredients": [ + "plain flour", + "seasoning salt", + "baking powder", + "toasted sesame oil", + "white vinegar", + "soy sauce", + "soda", + "oil", + "sugar", + "garlic powder", + "tomato ketchup", + "white sugar", + "light brown sugar", + "water", + "boneless skinless chicken breasts", + "corn flour" + ] + }, + { + "id": 40514, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "cooking spray", + "cornmeal", + "low-fat buttermilk", + "salt", + "honey", + "large eggs", + "all-purpose flour", + "baking soda", + "pumpkinseed kernels" + ] + }, + { + "id": 45996, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "salt", + "grits", + "large garlic cloves", + "fresh lemon juice", + "sliced green onions", + "bacon", + "shrimp", + "shredded sharp cheddar cheese", + "fresh parsley" + ] + }, + { + "id": 18539, + "cuisine": "japanese", + "ingredients": [ + "vegetable oil", + "cayenne pepper", + "eggs", + "cilantro", + "shrimp", + "paprika", + "garlic cloves", + "onion powder", + "salt", + "panko breadcrumbs" + ] + }, + { + "id": 42222, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "processed cheese", + "macaroni", + "corn" + ] + }, + { + "id": 13080, + "cuisine": "korean", + "ingredients": [ + "white vinegar", + "hoisin sauce", + "yellow onion", + "ground black pepper", + "green onions", + "garlic cloves", + "soy sauce", + "steamed white rice", + "dark brown sugar", + "Sriracha", + "rice vinegar", + "short rib" + ] + }, + { + "id": 44734, + "cuisine": "french", + "ingredients": [ + "french bread", + "fresh tarragon", + "mussels", + "shallots", + "bay leaf", + "water", + "butter", + "dry white wine", + "flat leaf parsley" + ] + }, + { + "id": 1782, + "cuisine": "southern_us", + "ingredients": [ + "milk", + "vegetable oil", + "large eggs", + "all-purpose flour", + "unsalted butter", + "salt", + "sugar", + "baking powder", + "cornmeal" + ] + }, + { + "id": 33781, + "cuisine": "spanish", + "ingredients": [ + "olive oil", + "fresh lemon juice", + "fresh rosemary", + "red pepper flakes", + "orange", + "garlic cloves", + "fennel seeds", + "lemon", + "olives" + ] + }, + { + "id": 26039, + "cuisine": "mexican", + "ingredients": [ + "olive oil", + "salt", + "oil", + "serrano chilies", + "cilantro", + "yellow onion", + "roma tomatoes", + "nopales", + "corn tortillas", + "black beans", + "purple onion", + "butter oil" + ] + }, + { + "id": 32582, + "cuisine": "mexican", + "ingredients": [ + "white onion", + "tomatoes", + "chile pepper", + "fresh cilantro", + "green bell pepper", + "fresh lemon juice" + ] + }, + { + "id": 22323, + "cuisine": "indian", + "ingredients": [ + "ground black pepper", + "garlic", + "couscous", + "curry powder", + "vegetable broth", + "toasted sesame oil", + "canola oil", + "ground cinnamon", + "chili powder", + "broccoli", + "ground turmeric", + "ajwain", + "sea salt", + "edamame", + "hing (powder)" + ] + }, + { + "id": 31884, + "cuisine": "italian", + "ingredients": [ + "toasted pecans", + "loosely packed fresh basil leaves", + "olive oil", + "garlic cloves", + "pepper", + "salt", + "parmesan cheese", + "lemon juice" + ] + }, + { + "id": 29327, + "cuisine": "greek", + "ingredients": [ + "olive oil", + "feta cheese crumbles", + "tomatoes", + "salt", + "olives", + "purple onion", + "cucumber", + "pepper", + "lemon juice", + "dried oregano" + ] + }, + { + "id": 4965, + "cuisine": "mexican", + "ingredients": [ + "ice cubes", + "tequila", + "strawberries", + "white sugar", + "basil leaves", + "orange liqueur", + "lemon juice" + ] + }, + { + "id": 17825, + "cuisine": "italian", + "ingredients": [ + "baguette", + "capers", + "oil", + "pitted kalamata olives", + "dried oregano", + "olive oil" + ] + }, + { + "id": 6558, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "sun-dried tomatoes in oil", + "basil pesto sauce", + "garlic", + "boneless skinless chicken breast halves", + "ricotta cheese", + "noodles", + "dried basil", + "feta cheese crumbles" + ] + }, + { + "id": 5157, + "cuisine": "mexican", + "ingredients": [ + "pepper", + "roma tomatoes", + "salt", + "olive oil", + "boneless skinless chicken breasts", + "mango", + "lime", + "jalapeno chilies", + "chopped cilantro", + "garlic powder", + "purple onion" + ] + }, + { + "id": 12803, + "cuisine": "chinese", + "ingredients": [ + "reduced sodium chicken broth", + "sesame oil", + "shrimp", + "green bell pepper", + "fresh ginger", + "salt", + "chinkiang vinegar", + "tomato paste", + "minced garlic", + "crushed red pepper", + "corn starch", + "sugar", + "reduced sodium soy sauce", + "szechuan sauce", + "canola oil" + ] + }, + { + "id": 8587, + "cuisine": "mexican", + "ingredients": [ + "chips", + "enchilada sauce", + "colby cheese", + "green chilies", + "ground beef", + "chopped onion", + "cream of mushroom soup", + "corn", + "garlic cloves" + ] + }, + { + "id": 48002, + "cuisine": "italian", + "ingredients": [ + "brie cheese", + "strawberries", + "fresh basil leaves", + "smoked turkey", + "jelly", + "butter", + "bread slices" + ] + }, + { + "id": 6265, + "cuisine": "cajun_creole", + "ingredients": [ + "black beans", + "diced tomatoes", + "whole kernel corn, drain", + "chicken broth", + "leeks", + "garlic", + "green bell pepper", + "vegetable oil", + "cayenne pepper", + "water", + "paprika", + "garlic salt" + ] + }, + { + "id": 49090, + "cuisine": "filipino", + "ingredients": [ + "pepper", + "ground pork", + "onions", + "potatoes", + "salt", + "olive oil", + "garlic", + "raisins", + "frozen peas and carrots" + ] + }, + { + "id": 32097, + "cuisine": "greek", + "ingredients": [ + "eggs", + "salt", + "unsalted butter", + "white sugar", + "milk", + "all-purpose flour", + "anise seed", + "baking powder" + ] + }, + { + "id": 34633, + "cuisine": "cajun_creole", + "ingredients": [ + "lemon slices", + "vegetable oil cooking spray", + "fresh lemon juice", + "paprika", + "italian salad dressing", + "catfish fillets", + "creole seasoning" + ] + }, + { + "id": 21691, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "portabello mushroom", + "Belgian endive", + "green onions", + "garlic", + "radicchio", + "yellow bell pepper", + "anchovies", + "butter", + "Italian bread" + ] + }, + { + "id": 35635, + "cuisine": "southern_us", + "ingredients": [ + "sugar", + "egg yolks", + "all-purpose flour", + "cream of tartar", + "milk", + "ice water", + "fresh lemon juice", + "eggs", + "unsalted butter", + "vanilla extract", + "shortening", + "egg whites", + "salt" + ] + }, + { + "id": 45184, + "cuisine": "moroccan", + "ingredients": [ + "honey", + "ginger", + "cayenne pepper", + "onions", + "black pepper", + "golden raisins", + "ras el hanout", + "carrots", + "tumeric", + "olive oil", + "garlic", + "chickpeas", + "water", + "cinnamon", + "salt", + "chopped parsley" + ] + }, + { + "id": 32714, + "cuisine": "thai", + "ingredients": [ + "fish sauce", + "ginger", + "red bell pepper", + "brown sugar", + "garlic", + "coconut milk", + "mussels", + "ciabatta loaf", + "red curry paste", + "chicken broth", + "lime", + "yellow onion" + ] + }, + { + "id": 18039, + "cuisine": "russian", + "ingredients": [ + "hazelnuts", + "baking soda", + "salt", + "confectioners sugar", + "ground cinnamon", + "water", + "large eggs", + "candied fruit", + "ground ginger", + "sliced almonds", + "unsalted butter", + "all-purpose flour", + "unsweetened cocoa powder", + "ground cloves", + "honey", + "baking powder", + "dark brown sugar" + ] + }, + { + "id": 14494, + "cuisine": "southern_us", + "ingredients": [ + "black pepper", + "crushed red pepper flakes", + "pork shoulder", + "brown sugar", + "worcestershire sauce", + "salt", + "garlic salt", + "sugar", + "paprika", + "cayenne pepper", + "cider vinegar", + "dry mustard", + "onions" + ] + }, + { + "id": 36903, + "cuisine": "italian", + "ingredients": [ + "sea salt", + "chunky", + "basil leaves", + "extra-virgin olive oil", + "dried oregano", + "fresh mozzarella", + "all-purpose flour", + "active dry yeast", + "diced tomatoes", + "garlic cloves" + ] + }, + { + "id": 12806, + "cuisine": "southern_us", + "ingredients": [ + "fresh orange juice", + "long-grain rice", + "lemon zest", + "salt", + "Balsamico Bianco", + "pinenuts", + "extra-virgin olive oil", + "fresh lemon juice", + "golden raisins", + "freshly ground pepper", + "sliced green onions" + ] + }, + { + "id": 32137, + "cuisine": "southern_us", + "ingredients": [ + "brown sugar", + "salt", + "refrigerated buttermilk biscuits", + "dried minced onion", + "shredded cheddar cheese", + "pork and beans", + "barbecue sauce", + "ground beef" + ] + }, + { + "id": 46309, + "cuisine": "mexican", + "ingredients": [ + "pico de gallo", + "refried beans", + "flour", + "queso fresco", + "salt", + "dried oregano", + "tomato paste", + "lime", + "jalapeno chilies", + "vegetable stock", + "black olives", + "onions", + "fresh cilantro", + "roma tomatoes", + "vegetable oil", + "cheese", + "sour cream", + "pickled jalapenos", + "flour tortillas", + "chili powder", + "sea salt", + "enchilada sauce", + "ground cumin" + ] + }, + { + "id": 41002, + "cuisine": "chinese", + "ingredients": [ + "cilantro", + "onions", + "garlic powder", + "salt", + "ginger", + "chili oil", + "lamb chops" + ] + }, + { + "id": 17980, + "cuisine": "southern_us", + "ingredients": [ + "fresh tomatoes", + "whole milk", + "fresh mushrooms", + "canola oil", + "kosher salt", + "worcestershire sauce", + "flat leaf parsley", + "cream", + "green onions", + "shrimp", + "shredded Monterey Jack cheese", + "chicken broth", + "hot pepper sauce", + "smoked sausage", + "corn grits" + ] + }, + { + "id": 20170, + "cuisine": "irish", + "ingredients": [ + "evaporated milk", + "white sugar", + "cream of tartar", + "vanilla extract", + "butter", + "ground cinnamon", + "salt" + ] + }, + { + "id": 25414, + "cuisine": "thai", + "ingredients": [ + "lime juice", + "coconut milk", + "fish sauce", + "garlic", + "ginger", + "sweet chili sauce", + "peanut butter" + ] + }, + { + "id": 46861, + "cuisine": "mexican", + "ingredients": [ + "corn kernels", + "large flour tortillas", + "ground cumin", + "chili powder", + "boneless skinless chicken breast halves", + "olive oil", + "poblano chiles", + "taco sauce", + "mexican style 4 cheese blend", + "chopped cilantro fresh" + ] + }, + { + "id": 43498, + "cuisine": "irish", + "ingredients": [ + "potatoes", + "peanut butter", + "color food green", + "milk", + "confectioners sugar" + ] + }, + { + "id": 20720, + "cuisine": "cajun_creole", + "ingredients": [ + "olive oil", + "diced tomatoes", + "boneless skinless chicken breasts", + "linguine", + "shallots", + "garlic", + "cream", + "cajun seasoning" + ] + }, + { + "id": 9691, + "cuisine": "japanese", + "ingredients": [ + "green chilies", + "melon", + "ginger", + "celery seed", + "cilantro", + "mustard seeds", + "bottle gourd", + "salt", + "ground turmeric" + ] + }, + { + "id": 17214, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "salsa", + "refried beans", + "flour tortillas", + "cooking spray" + ] + }, + { + "id": 37837, + "cuisine": "mexican", + "ingredients": [ + "tomatoes", + "olive oil", + "heavy cream", + "poblano chiles", + "sugar", + "large garlic cloves", + "goat cheese", + "chopped cilantro fresh", + "black beans", + "raisins", + "toasted pine nuts", + "spinach", + "epazote", + "salt", + "corn tortillas" + ] + }, + { + "id": 41037, + "cuisine": "japanese", + "ingredients": [ + "soy sauce", + "oil", + "mirin", + "beef", + "onions", + "sake", + "edamame" + ] + }, + { + "id": 35838, + "cuisine": "italian", + "ingredients": [ + "fresh mozzarella", + "fresh parsley leaves", + "part-skim mozzarella", + "pizza doughs", + "red pepper flakes", + "fontina", + "oil" + ] + }, + { + "id": 21989, + "cuisine": "brazilian", + "ingredients": [ + "lime", + "water", + "sugar", + "sweetened condensed milk" + ] + }, + { + "id": 17945, + "cuisine": "mexican", + "ingredients": [ + "garlic", + "ground cumin", + "taco seasoning mix", + "hot sauce", + "tomato sauce", + "salsa", + "chili powder", + "boneless skinless chicken breast halves" + ] + }, + { + "id": 28482, + "cuisine": "vietnamese", + "ingredients": [ + "white vinegar", + "kosher salt", + "hoisin sauce", + "cilantro leaves", + "hero rolls", + "Sriracha", + "garlic", + "mayonaise", + "shiitake", + "extra firm tofu", + "carrots", + "sugar", + "ground black pepper", + "vegetable oil", + "cucumber" + ] + }, + { + "id": 42724, + "cuisine": "italian", + "ingredients": [ + "bread", + "sugar", + "milk", + "grated parmesan cheese", + "shallots", + "heavy cream", + "sauce", + "fresh basil leaves", + "chicken broth", + "pepper", + "sun-dried tomatoes", + "extra wide egg noodles", + "balsamic vinegar", + "basil", + "squash", + "tomato paste", + "pinenuts", + "olive oil", + "flour", + "onion powder", + "diced tomatoes", + "garlic cloves", + "oregano", + "green bell pepper", + "sundried tomato pesto", + "garlic powder", + "chicken breasts", + "red pepper flakes", + "salt", + "fresh parsley" + ] + }, + { + "id": 105, + "cuisine": "french", + "ingredients": [ + "toasted pecans", + "bourbon whiskey", + "golden brown sugar", + "vanilla extract", + "sugar", + "whipping cream", + "large egg yolks" + ] + }, + { + "id": 48281, + "cuisine": "mexican", + "ingredients": [ + "salsa", + "flour tortillas", + "shredded Monterey Jack cheese", + "cotija", + "mexican chorizo", + "corn oil" + ] + }, + { + "id": 48365, + "cuisine": "southern_us", + "ingredients": [ + "vegetable oil", + "whole milk", + "all-purpose flour", + "baking powder", + "cornmeal", + "large eggs", + "salt" + ] + }, + { + "id": 46749, + "cuisine": "korean", + "ingredients": [ + "soy sauce", + "asian pear", + "rice vinegar", + "toasted sesame oil", + "cabbage", + "lettuce", + "leaves", + "hard-boiled egg", + "cucumber", + "toasted sesame seeds", + "honey", + "red cabbage", + "carrots", + "radish sprouts", + "brown sugar", + "chili paste", + "green onions", + "kimchi", + "soba" + ] + }, + { + "id": 16673, + "cuisine": "french", + "ingredients": [ + "pecans", + "unsalted butter", + "bourbon whiskey", + "water", + "semisweet chocolate", + "all-purpose flour", + "sugar", + "fresh bay leaves", + "salt", + "powdered sugar", + "bananas", + "large eggs", + "heavy whipping cream" + ] + }, + { + "id": 36147, + "cuisine": "mexican", + "ingredients": [ + "chipotle chile", + "salt", + "ground allspice", + "oregano", + "shredded cheddar cheese", + "beef broth", + "corn tortillas", + "black pepper", + "all-purpose flour", + "lard", + "ground cumin", + "pasilla chiles", + "garlic", + "yellow onion", + "ground beef" + ] + }, + { + "id": 20877, + "cuisine": "mexican", + "ingredients": [ + "pineapple", + "rice vinegar", + "purple onion", + "crushed red pepper flakes", + "mango", + "fresh ginger", + "cilantro leaves" + ] + }, + { + "id": 36135, + "cuisine": "southern_us", + "ingredients": [ + "water", + "Lipton® Iced Tea Brew Family Size Tea Bags", + "sugar", + "baking soda" + ] + }, + { + "id": 15550, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "fresh parmesan cheese", + "garlic", + "fat free less sodium chicken broth", + "dry white wine", + "salt", + "baby spinach leaves", + "quinoa", + "crushed red pepper", + "olive oil", + "shallots" + ] + }, + { + "id": 43233, + "cuisine": "chinese", + "ingredients": [ + "water chestnuts, drained and chopped", + "Sriracha", + "garlic", + "onions", + "kosher salt", + "green onions", + "rice vinegar", + "ground chicken", + "hoisin sauce", + "tamari soy sauce", + "ginger paste", + "butter lettuce", + "ground black pepper", + "vegetable oil", + "toasted sesame oil" + ] + }, + { + "id": 33516, + "cuisine": "southern_us", + "ingredients": [ + "ground cloves", + "large eggs", + "cinnamon", + "salt", + "pecan halves", + "large egg yolks", + "whole milk", + "ginger", + "grated nutmeg", + "sugar", + "unsalted butter", + "bourbon whiskey", + "vanilla extract", + "kosher salt", + "sweet potatoes", + "ice water", + "all-purpose flour" + ] + }, + { + "id": 19135, + "cuisine": "moroccan", + "ingredients": [ + "water", + "large eggs", + "russet potatoes", + "salt", + "sour cream", + "cauliflower", + "ground black pepper", + "harissa", + "garlic", + "ground coriander", + "ground cumin", + "olive oil", + "butternut squash", + "red pepper", + "sweet paprika", + "onions", + "green olives", + "lemon peel", + "boneless skinless chicken breasts", + "ras el hanout", + "green beans" + ] + }, + { + "id": 46070, + "cuisine": "mexican", + "ingredients": [ + "minced garlic", + "purple onion", + "ground cumin", + "honey", + "organic vegetable broth", + "crushed tomatoes", + "salt", + "chili powder", + "canola oil" + ] + }, + { + "id": 45985, + "cuisine": "italian", + "ingredients": [ + "sausage casings", + "red pepper flakes", + "dried oregano", + "kosher salt", + "garlic", + "sugar", + "diced tomatoes", + "orecchiette", + "olive oil", + "ricotta" + ] + }, + { + "id": 1502, + "cuisine": "southern_us", + "ingredients": [ + "melted butter", + "butter", + "self rising flour", + "buttermilk" + ] + }, + { + "id": 6143, + "cuisine": "cajun_creole", + "ingredients": [ + "red kidney beans", + "bay leaves", + "garlic cloves", + "celery", + "water", + "extra-virgin olive oil", + "thyme", + "black pepper", + "diced tomatoes", + "sausages", + "onions", + "bell pepper", + "cayenne pepper", + "long grain brown rice" + ] + }, + { + "id": 33890, + "cuisine": "indian", + "ingredients": [ + "olive oil", + "red pepper flakes", + "potatoes", + "cumin seed", + "water", + "yoghurt", + "ground turmeric", + "coriander powder", + "salt" + ] + }, + { + "id": 47679, + "cuisine": "moroccan", + "ingredients": [ + "caraway seeds", + "extra-virgin olive oil", + "coriander seeds", + "red bell pepper", + "large garlic cloves", + "sugar", + "crushed red pepper" + ] + }, + { + "id": 23024, + "cuisine": "irish", + "ingredients": [ + "light brown sugar", + "dried thyme", + "all-purpose flour", + "onions", + "soy sauce", + "worcestershire sauce", + "garlic cloves", + "chuck", + "steak sauce", + "bay leaves", + "beer", + "canola oil", + "black pepper", + "salt", + "flat leaf parsley" + ] + }, + { + "id": 32778, + "cuisine": "italian", + "ingredients": [ + "olive oil", + "warm water", + "salt", + "sugar", + "corn oil", + "active dry yeast", + "all-purpose flour" + ] + }, + { + "id": 40586, + "cuisine": "greek", + "ingredients": [ + "chili sauce", + "Hidden Valley® Greek Yogurt Original Ranch® Dip Mix", + "prepared horseradish", + "greek style plain yogurt" + ] + }, + { + "id": 10013, + "cuisine": "mexican", + "ingredients": [ + "warm water", + "masa" + ] + }, + { + "id": 43241, + "cuisine": "cajun_creole", + "ingredients": [ + "water", + "vegetable gumbo", + "hot sauce", + "onions", + "soy sauce", + "vegetable bouillon", + "garlic", + "thyme", + "tomatoes", + "kidney beans", + "paprika", + "chickpeas", + "black pepper", + "file powder", + "salt", + "celery" + ] + }, + { + "id": 13672, + "cuisine": "thai", + "ingredients": [ + "chicken broth", + "vegetable oil", + "carrots", + "thai green curry paste", + "fresh ginger", + "salt", + "coconut milk", + "soy sauce", + "white rice", + "white mushrooms", + "light brown sugar", + "boneless skinless chicken breasts", + "cilantro leaves", + "fresh lime juice" + ] + }, + { + "id": 40653, + "cuisine": "mexican", + "ingredients": [ + "coriander seeds", + "chicken breasts", + "chocolate", + "ancho chile pepper", + "ground cinnamon", + "tortillas", + "instant coffee", + "salt", + "oregano", + "chicken broth", + "almonds", + "chile pepper", + "garlic", + "onions", + "sesame seeds", + "roma tomatoes", + "raisins", + "oil", + "cumin" + ] + }, + { + "id": 45255, + "cuisine": "french", + "ingredients": [ + "semolina flour", + "sea salt", + "active dry yeast", + "grated lemon peel", + "warm water", + "extra-virgin olive oil", + "fresh rosemary", + "all purpose unbleached flour" + ] + }, + { + "id": 31719, + "cuisine": "vietnamese", + "ingredients": [ + "fish sauce", + "cooked chicken", + "beansprouts", + "lemon grass", + "pak choi", + "fresh ginger root", + "garlic", + "chicken stock", + "spring onions", + "Chinese egg noodles" + ] + }, + { + "id": 24930, + "cuisine": "italian", + "ingredients": [ + "italian sausage", + "grated parmesan cheese", + "spaghetti", + "spinach", + "salt", + "pepper", + "onions", + "chicken broth", + "half & half" + ] + }, + { + "id": 15271, + "cuisine": "french", + "ingredients": [ + "unsalted shelled pistachio", + "large egg whites", + "scallions", + "lump crab meat", + "sea bass fillets", + "fleur de sel", + "curry powder", + "sauce", + "fresh lime juice", + "beans", + "vegetable oil", + "oil" + ] + }, + { + "id": 1923, + "cuisine": "japanese", + "ingredients": [ + "plums", + "sesame seeds", + "japanese eggplants", + "miso", + "gari", + "canola oil" + ] + }, + { + "id": 44512, + "cuisine": "french", + "ingredients": [ + "instant espresso powder", + "confectioners sugar", + "blanched almonds", + "granulated sugar", + "large egg whites", + "meringue" + ] + }, + { + "id": 3828, + "cuisine": "mexican", + "ingredients": [ + "lime juice", + "yams", + "avocado", + "salt and ground black pepper", + "chopped cilantro fresh", + "olive oil", + "red bell pepper", + "shredded cheddar cheese", + "green onions", + "ground cumin" + ] + }, + { + "id": 39318, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "boneless skinless chicken breasts", + "sour cream", + "flour tortillas", + "enchilada sauce", + "olive oil", + "garlic", + "onions", + "green onions", + "pinto beans" + ] + }, + { + "id": 39328, + "cuisine": "italian", + "ingredients": [ + "romano cheese", + "garlic powder", + "garlic", + "pork meat", + "eggs", + "water", + "ground sirloin", + "dry bread crumbs", + "onions", + "tomato paste", + "pepper", + "grated parmesan cheese", + "salt", + "fresh parsley", + "tomato sauce", + "olive oil", + "tomatoes with juice", + "sweet italian sausage", + "dried oregano" + ] + }, + { + "id": 16201, + "cuisine": "greek", + "ingredients": [ + "dried basil", + "zucchini", + "purple onion", + "ground coriander", + "fresh parsley", + "olive oil", + "extra-virgin olive oil", + "greek style plain yogurt", + "cucumber", + "dried thyme", + "red wine vinegar", + "salt", + "fresh lemon juice", + "dried oregano", + "fresh dill", + "ground black pepper", + "garlic", + "skinless chicken breasts", + "red bell pepper" + ] + }, + { + "id": 19201, + "cuisine": "italian", + "ingredients": [ + "bottled clam juice", + "olive oil", + "dry white wine", + "carrots", + "onions", + "crushed tomatoes", + "fennel bulb", + "garlic", + "celery", + "water", + "ground black pepper", + "red pepper flakes", + "shrimp shells", + "fish fillets", + "dried thyme", + "bay leaves", + "salt", + "fresh parsley" + ] + }, + { + "id": 23322, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "sweet mini bells", + "onions", + "queso fresco", + "enchilada sauce", + "chicken stock", + "spices", + "Mexican cheese", + "tortillas", + "salsa", + "chicken" + ] + }, + { + "id": 3708, + "cuisine": "filipino", + "ingredients": [ + "mayonaise", + "base", + "pepper", + "salmon fillets", + "salt" + ] + }, + { + "id": 46216, + "cuisine": "italian", + "ingredients": [ + "milk", + "parmigiano reggiano cheese", + "freshly ground pepper", + "unsalted butter", + "chives", + "fontina cheese", + "lasagna noodles", + "all-purpose flour", + "prosciutto", + "large eggs", + "chopped parsley" + ] + }, + { + "id": 22230, + "cuisine": "greek", + "ingredients": [ + "rocket leaves", + "sun-dried tomatoes", + "yellow bell pepper", + "feta cheese crumbles", + "minced garlic", + "ground black pepper", + "salt", + "yellow squash", + "balsamic vinegar", + "bow-tie pasta", + "fresh basil", + "eggplant", + "extra-virgin olive oil", + "red bell pepper" + ] + }, + { + "id": 10913, + "cuisine": "indian", + "ingredients": [ + "garam masala", + "garlic", + "ground turmeric", + "water", + "cooking oil", + "onions", + "tomatoes", + "split black lentils", + "salt", + "fresh ginger root", + "chile pepper", + "chopped cilantro fresh" + ] + }, + { + "id": 11866, + "cuisine": "japanese", + "ingredients": [ + "dried lentils", + "white wine", + "olive oil", + "lemon", + "lentils", + "tumeric", + "curry powder", + "ground black pepper", + "salt", + "plum tomatoes", + "spinach", + "water", + "garam masala", + "garlic", + "onions", + "fresh spinach", + "fresh cilantro", + "dry white wine", + "cayenne pepper" + ] + }, + { + "id": 4880, + "cuisine": "southern_us", + "ingredients": [ + "fresh basil", + "cucumber", + "avocado", + "sweetened coconut flakes", + "arugula", + "celery ribs", + "jalapeno chilies", + "ruby red grapefruit", + "dressing", + "navel oranges" + ] + }, + { + "id": 3614, + "cuisine": "italian", + "ingredients": [ + "spinach", + "purple onion", + "french bread", + "plum tomatoes", + "mozzarella cheese", + "english cucumber", + "kalamata", + "chicken" + ] + }, + { + "id": 34814, + "cuisine": "russian", + "ingredients": [ + "pepper", + "garlic", + "pork sirloin", + "onions", + "olive oil", + "salt", + "dry red wine" + ] + }, + { + "id": 12038, + "cuisine": "mexican", + "ingredients": [ + "mayonaise", + "large eggs", + "salt", + "chipotle peppers", + "catfish fillets", + "red cabbage", + "vegetable oil", + "fresh lime juice", + "cabbage", + "honey", + "flour tortillas", + "all-purpose flour", + "adobo sauce", + "ground black pepper", + "green onions", + "hot sauce", + "panko breadcrumbs" + ] + }, + { + "id": 48610, + "cuisine": "southern_us", + "ingredients": [ + "catfish fillets", + "pimento stuffed green olives", + "extra-virgin olive oil", + "lemon zest", + "flat leaf parsley" + ] + }, + { + "id": 37564, + "cuisine": "italian", + "ingredients": [ + "heavy cream", + "fresh lemon juice", + "parmigiano reggiano cheese", + "fine sea salt", + "baby spinach leaves", + "garlic", + "frozen peas", + "potato gnocchi", + "grated lemon zest" + ] + }, + { + "id": 29437, + "cuisine": "jamaican", + "ingredients": [ + "soy sauce", + "pimentos", + "carrots", + "tomatoes", + "fresh thyme", + "scallions", + "chicken", + "unsweetened coconut milk", + "lime", + "hot pepper", + "onions", + "coconut oil", + "flour", + "garlic cloves" + ] + }, + { + "id": 15176, + "cuisine": "indian", + "ingredients": [ + "peanuts", + "lemon", + "mustard seeds", + "split black lentils", + "salt", + "basmati rice", + "bengal gram", + "raw cashews", + "dried red chile peppers", + "fresh curry leaves", + "chile pepper", + "oil", + "ground turmeric" + ] + }, + { + "id": 16940, + "cuisine": "british", + "ingredients": [ + "sugar", + "salt", + "baking powder", + "extra sharp cheddar cheese", + "heavy cream", + "chopped fresh chives", + "all-purpose flour" + ] + }, + { + "id": 20691, + "cuisine": "irish", + "ingredients": [ + "sugar", + "cooking spray", + "all-purpose flour", + "baking soda", + "dried apple", + "apple juice", + "dried currants", + "baking powder", + "margarine", + "low-fat buttermilk", + "salt", + "chopped walnuts" + ] + }, + { + "id": 31892, + "cuisine": "mexican", + "ingredients": [ + "black beans", + "diced green chilies", + "boneless skinless chicken breasts", + "purple onion", + "grated jack cheese", + "corn tortillas", + "chopped tomatoes", + "guacamole", + "shredded lettuce", + "salsa", + "sour cream", + "corn kernels", + "unsalted butter", + "large garlic cloves", + "mild cheddar cheese", + "red enchilada sauce", + "cumin", + "kosher salt", + "ground black pepper", + "chili powder", + "cilantro leaves", + "scallions", + "chipotle peppers" + ] + }, + { + "id": 8279, + "cuisine": "french", + "ingredients": [ + "french bread", + "dried basil", + "butter" + ] + }, + { + "id": 20705, + "cuisine": "cajun_creole", + "ingredients": [ + "pepper", + "garlic", + "golden mushroom soup", + "cajun seasoning", + "rice", + "green bell pepper", + "water", + "salt", + "crawfish", + "butter", + "onions" + ] + }, + { + "id": 32801, + "cuisine": "cajun_creole", + "ingredients": [ + "creole seasoning", + "olive oil", + "seasoned bread crumbs", + "okra", + "smoked sausage" + ] + }, + { + "id": 31744, + "cuisine": "vietnamese", + "ingredients": [ + "vietnamese rice paper", + "ground pork", + "noodles", + "eggs", + "shredded carrots", + "salt", + "crab meat", + "ground black pepper", + "garlic", + "fish sauce", + "shallots", + "shrimp" + ] + }, + { + "id": 28291, + "cuisine": "italian", + "ingredients": [ + "ricotta cheese", + "eggs", + "salt", + "baby spinach", + "grated parmesan cheese", + "grated nutmeg" + ] + }, + { + "id": 38509, + "cuisine": "chinese", + "ingredients": [ + "jasmine rice", + "sesame oil", + "salt", + "corn starch", + "pork", + "water chestnuts", + "green peas", + "oyster sauce", + "water", + "red wine", + "dried shiitake mushrooms", + "white sugar", + "soy sauce", + "green onions", + "lop chong", + "shrimp" + ] + }, + { + "id": 31168, + "cuisine": "southern_us", + "ingredients": [ + "coarse salt", + "all-purpose flour", + "ground black pepper", + "dry mustard", + "sea salt flakes", + "yellow corn meal", + "fryer chickens", + "safflower", + "buttermilk", + "cayenne pepper" + ] + }, + { + "id": 49392, + "cuisine": "indian", + "ingredients": [ + "sugar", + "yoghurt", + "onions", + "chicken stock", + "curry powder", + "salt", + "fresh coriander", + "vegetable oil", + "chicken", + "tomatoes", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 39166, + "cuisine": "french", + "ingredients": [ + "shallots", + "thyme sprigs", + "bay leaf", + "cabernet sauvignon" + ] + }, + { + "id": 39106, + "cuisine": "mexican", + "ingredients": [ + "black peppercorns", + "cilantro stems", + "yellow onion", + "flour tortillas", + "garlic", + "bay leaf", + "kosher salt", + "tomatillos", + "whole chicken", + "jalapeno chilies", + "cilantro leaves", + "canola oil" + ] + }, + { + "id": 34764, + "cuisine": "southern_us", + "ingredients": [ + "ketchup", + "baking soda", + "vegetable oil", + "salt", + "corn flour", + "horseradish", + "seasoning salt", + "onion powder", + "paprika", + "lemon juice", + "eggs", + "lime", + "baking powder", + "worcestershire sauce", + "beer", + "pepper", + "flour", + "buttermilk", + "bacon grease", + "shrimp shells" + ] + }, + { + "id": 5303, + "cuisine": "indian", + "ingredients": [ + "sugar", + "all-purpose flour", + "instant yeast", + "milk", + "melted butter", + "salt" + ] + }, + { + "id": 6744, + "cuisine": "italian", + "ingredients": [ + "tomatoes", + "sea salt", + "dried red chile peppers", + "olive oil", + "fresh oregano", + "spaghetti", + "white wine", + "extra-virgin olive oil", + "flat leaf parsley", + "mussels", + "ground black pepper", + "garlic cloves" + ] + }, + { + "id": 10115, + "cuisine": "italian", + "ingredients": [ + "basil", + "zucchini", + "olive oil flavored cooking spray", + "black pepper", + "Italian cheese blend", + "ground sirloin", + "tomato garlic pasta sauce" + ] + }, + { + "id": 38785, + "cuisine": "korean", + "ingredients": [ + "cooked rice", + "boneless chuck roast", + "scallions", + "water", + "sesame oil", + "sugar", + "sesame seeds", + "kimchi", + "low sodium soy sauce", + "fresh ginger", + "large garlic cloves" + ] + }, + { + "id": 45025, + "cuisine": "italian", + "ingredients": [ + "dried basil", + "diced tomatoes", + "dried parsley", + "sausage links", + "crushed garlic", + "penne pasta", + "pasta sauce", + "mushrooms", + "salt", + "grated parmesan cheese", + "crushed red pepper" + ] + }, + { + "id": 5680, + "cuisine": "greek", + "ingredients": [ + "extra-virgin olive oil", + "oregano", + "potatoes", + "garlic cloves", + "pepper", + "salt", + "yellow mustard", + "fresh lemon juice" + ] + }, + { + "id": 5511, + "cuisine": "spanish", + "ingredients": [ + "quinoa", + "extra-virgin olive oil", + "fresh thyme leaves", + "scallion greens" + ] + }, + { + "id": 32051, + "cuisine": "indian", + "ingredients": [ + "clove", + "bay leaves", + "ginger", + "chopped cilantro", + "ground turmeric", + "white onion", + "cinnamon", + "cardamom pods", + "serrano chile", + "canola oil", + "kosher salt", + "dates", + "ground coriander", + "basmati rice", + "black peppercorns", + "russet potatoes", + "garlic", + "frozen peas", + "plum tomatoes" + ] + }, + { + "id": 5119, + "cuisine": "moroccan", + "ingredients": [ + "water", + "sugar", + "grated lemon zest", + "butter", + "pitted date", + "blanched almonds" + ] + }, + { + "id": 9526, + "cuisine": "italian", + "ingredients": [ + "sea salt", + "pizza doughs", + "all-purpose flour", + "cornmeal", + "extra-virgin olive oil", + "shredded mozzarella cheese", + "kosher salt", + "ricotta" + ] + }, + { + "id": 45599, + "cuisine": "mexican", + "ingredients": [ + "kosher salt", + "minced onion", + "tortilla chips", + "sugar", + "tomato juice", + "cilantro leaves", + "avocado", + "lime juice", + "roma tomatoes", + "Manzanilla olives", + "fish fillets", + "olive oil", + "Mexican oregano", + "serrano chile" + ] + }, + { + "id": 49670, + "cuisine": "mexican", + "ingredients": [ + "ground black pepper", + "chicken breasts", + "salsa", + "cheddar cheese", + "pepper jack", + "heavy cream", + "red enchilada sauce", + "unsalted butter", + "chili powder", + "tortilla chips", + "kosher salt", + "large eggs", + "mild green chiles", + "sour cream" + ] + }, + { + "id": 30735, + "cuisine": "moroccan", + "ingredients": [ + "olive oil", + "cayenne pepper", + "chopped cilantro fresh", + "boneless chicken skinless thigh", + "fine sea salt", + "low salt chicken broth", + "fennel bulb", + "fresh lemon juice", + "ground cumin", + "paprika", + "brine cured green olives" + ] + }, + { + "id": 5911, + "cuisine": "southern_us", + "ingredients": [ + "self rising flour", + "milk", + "white sugar", + "butter", + "peaches in light syrup" + ] + }, + { + "id": 33294, + "cuisine": "italian", + "ingredients": [ + "rosemary sprigs", + "lemon zest", + "garlic cloves", + "ground black pepper", + "vegetable broth", + "fresh basil leaves", + "minced garlic", + "extra-virgin olive oil", + "thyme sprigs", + "red potato", + "parsley leaves", + "artichokes" + ] + }, + { + "id": 27082, + "cuisine": "vietnamese", + "ingredients": [ + "jasmine rice", + "bay leaves", + "sticky rice", + "rotisserie chicken", + "chopped cilantro", + "large eggs", + "vegetable oil", + "yellow onion", + "beansprouts", + "lime", + "savory", + "salt", + "carrots", + "pepper", + "green onions", + "ginger", + "garlic cloves", + "peppercorns" + ] + }, + { + "id": 36337, + "cuisine": "indian", + "ingredients": [ + "mint leaves", + "cilantro leaves", + "ghee", + "tomatoes", + "cinnamon", + "oil", + "basmati rice", + "garlic paste", + "salt", + "coconut milk", + "clove", + "bay leaves", + "green chilies", + "onions" + ] + }, + { + "id": 15508, + "cuisine": "mexican", + "ingredients": [ + "vegetable oil", + "cinnamon sticks", + "water", + "all-purpose flour", + "piloncillo", + "salt", + "orange zest", + "baking powder", + "hot water" + ] + }, + { + "id": 34331, + "cuisine": "greek", + "ingredients": [ + "red bell pepper", + "garlic cloves", + "extra-virgin olive oil", + "feta cheese crumbles" + ] + }, + { + "id": 47387, + "cuisine": "greek", + "ingredients": [ + "milk", + "salt", + "ground cayenne pepper", + "ground lamb", + "ground cinnamon", + "ground black pepper", + "pomegranate", + "chopped fresh mint", + "pitas", + "ground coriander", + "fresh mint", + "ground cumin", + "kosher salt", + "purple onion", + "greek yogurt", + "canola oil" + ] + }, + { + "id": 12153, + "cuisine": "korean", + "ingredients": [ + "red chili peppers", + "sea salt", + "onions", + "water", + "chilli bean sauce", + "caster sugar", + "garlic", + "white vinegar", + "chili oil", + "cucumber" + ] + }, + { + "id": 41840, + "cuisine": "southern_us", + "ingredients": [ + "butter", + "large eggs", + "cornmeal", + "baking powder", + "boiling water", + "milk", + "salt" + ] + }, + { + "id": 6487, + "cuisine": "chinese", + "ingredients": [ + "honey", + "chicken breast halves", + "cilantro leaves", + "carrots", + "soy sauce", + "Sriracha", + "wonton wrappers", + "freshly ground pepper", + "beansprouts", + "fresh ginger", + "shallots", + "rice vinegar", + "red bell pepper", + "kosher salt", + "green onions", + "napa cabbage", + "garlic cloves", + "canola oil" + ] + }, + { + "id": 26646, + "cuisine": "indian", + "ingredients": [ + "curry powder", + "salt", + "chicken", + "water", + "vegetable oil", + "basmati rice", + "eggs", + "finely chopped onion", + "lemon juice", + "pepper", + "mango chutney", + "puff pastry" + ] + }, + { + "id": 44798, + "cuisine": "italian", + "ingredients": [ + "fettuccine pasta", + "low-fat cream cheese", + "garlic", + "nonfat evaporated milk", + "grated parmesan cheese", + "corn starch", + "nonfat milk" + ] + }, + { + "id": 8089, + "cuisine": "mexican", + "ingredients": [ + "chili powder", + "worcestershire sauce", + "celery", + "red kidney beans", + "lean ground beef", + "stewed tomatoes", + "dried parsley", + "pepper", + "red wine vinegar", + "salt", + "ground cumin", + "dried basil", + "red wine", + "red bell pepper" + ] + }, + { + "id": 6153, + "cuisine": "indian", + "ingredients": [ + "coconut", + "unsweetened coconut milk", + "mint leaves", + "plain yogurt" + ] + }, + { + "id": 25557, + "cuisine": "irish", + "ingredients": [ + "rutabaga", + "ham", + "thick-cut bacon", + "potatoes", + "fresh parsley", + "salt", + "onions", + "pepper", + "carrots", + "pork sausages" + ] + }, + { + "id": 24348, + "cuisine": "italian", + "ingredients": [ + "low-fat sour cream", + "grated parmesan cheese", + "salt", + "dried oregano", + "low-fat cottage cheese", + "butter", + "onions", + "olive oil", + "artichok heart marin", + "ground cayenne pepper", + "ground black pepper", + "garlic", + "spaghetti" + ] + }, + { + "id": 7377, + "cuisine": "mexican", + "ingredients": [ + "shredded cheddar cheese", + "crushed cheese crackers", + "cheddar cheese soup", + "cream of chicken soup", + "hot sauce", + "diced green chilies", + "salt", + "pepper", + "cooked chicken", + "rotini" + ] + }, + { + "id": 29109, + "cuisine": "irish", + "ingredients": [ + "light brown sugar", + "granulated sugar", + "butter", + "warm water", + "large eggs", + "all-purpose flour", + "whole wheat flour", + "cooking spray", + "boiling water", + "steel-cut oats", + "dry yeast", + "salt" + ] + }, + { + "id": 11462, + "cuisine": "italian", + "ingredients": [ + "KRAFT Zesty Italian Dressing", + "purple onion", + "broccoli florets", + "rotini", + "pitted black olives", + "Kraft Grated Parmesan Cheese", + "red pepper" + ] + }, + { + "id": 2238, + "cuisine": "irish", + "ingredients": [ + "eggs", + "citrus fruit", + "raisins", + "sourdough starter", + "flour", + "hot tea", + "sugar", + "ground nutmeg", + "salt", + "ground cinnamon", + "milk", + "butter" + ] + }, + { + "id": 41882, + "cuisine": "chinese", + "ingredients": [ + "boneless chicken skinless thigh", + "minced garlic", + "steamed white rice", + "baking powder", + "corn starch", + "dark soy sauce", + "kosher salt", + "peanuts", + "flour", + "scallions", + "Chinese rice vinegar", + "vodka", + "fresh ginger", + "egg whites", + "broccoli", + "toasted sesame seeds", + "sugar", + "store bought low sodium chicken stock", + "baking soda", + "Shaoxing wine", + "oil" + ] + }, + { + "id": 2362, + "cuisine": "mexican", + "ingredients": [ + "green chile", + "jalapeno chilies", + "onions", + "ground black pepper", + "salt", + "chopped cilantro fresh", + "green bell pepper", + "garlic", + "white sugar", + "roma tomatoes", + "celery", + "dried oregano" + ] + } +] \ No newline at end of file diff --git a/Python_For_ML/Week_4/Conceptual Session/CS-1/zomato.csv b/Python_For_ML/Week_4/Conceptual Session/CS-1/zomato.csv new file mode 100644 index 0000000..b5270ff --- /dev/null +++ b/Python_For_ML/Week_4/Conceptual Session/CS-1/zomato.csv @@ -0,0 +1,9552 @@ +Restaurant ID,Restaurant Name,Country Code,City,Address,Locality,Locality Verbose,Longitude,Latitude,Cuisines,Average Cost for two,Currency,Has Table booking,Has Online delivery,Is delivering now,Switch to order menu,Price range,Aggregate rating,Rating color,Rating text,Votes +6317637,Le Petit Souffle,162,Makati City,"Third Floor, Century City Mall, Kalayaan Avenue, Poblacion, Makati City","Century City Mall, Poblacion, Makati City","Century City Mall, Poblacion, Makati City, Makati City",121.027535,14.565443,"French, Japanese, Desserts",1100,Botswana Pula(P),Yes,No,No,No,3,4.8,Dark Green,Excellent,314 +6304287,Izakaya Kikufuji,162,Makati City,"Little Tokyo, 2277 Chino Roces Avenue, Legaspi Village, Makati City","Little Tokyo, Legaspi Village, Makati City","Little Tokyo, Legaspi Village, Makati City, Makati City",121.014101,14.553708,Japanese,1200,Botswana Pula(P),Yes,No,No,No,3,4.5,Dark Green,Excellent,591 +6300002,Heat - Edsa Shangri-La,162,Mandaluyong City,"Edsa Shangri-La, 1 Garden Way, Ortigas, Mandaluyong City","Edsa Shangri-La, Ortigas, Mandaluyong City","Edsa Shangri-La, Ortigas, Mandaluyong City, Mandaluyong City",121.056831,14.581404,"Seafood, Asian, Filipino, Indian",4000,Botswana Pula(P),Yes,No,No,No,4,4.4,Green,Very Good,270 +6318506,Ooma,162,Mandaluyong City,"Third Floor, Mega Fashion Hall, SM Megamall, Ortigas, Mandaluyong City","SM Megamall, Ortigas, Mandaluyong City","SM Megamall, Ortigas, Mandaluyong City, Mandaluyong City",121.056475,14.585318,"Japanese, Sushi",1500,Botswana Pula(P),No,No,No,No,4,4.9,Dark Green,Excellent,365 +6314302,Sambo Kojin,162,Mandaluyong City,"Third Floor, Mega Atrium, SM Megamall, Ortigas, Mandaluyong City","SM Megamall, Ortigas, Mandaluyong City","SM Megamall, Ortigas, Mandaluyong City, Mandaluyong City",121.057508,14.58445,"Japanese, Korean",1500,Botswana Pula(P),Yes,No,No,No,4,4.8,Dark Green,Excellent,229 +18189371,Din Tai Fung,162,Mandaluyong City,"Ground Floor, Mega Fashion Hall, SM Megamall, Ortigas, Mandaluyong City","SM Megamall, Ortigas, Mandaluyong City","SM Megamall, Ortigas, Mandaluyong City, Mandaluyong City",121.056314,14.583764,Chinese,1000,Botswana Pula(P),No,No,No,No,3,4.4,Green,Very Good,336 +6300781,Buffet 101,162,Pasay City,"Building K, SM By The Bay, Sunset Boulevard, Mall of Asia Complex (MOA), Pasay City","SM by the Bay, Mall of Asia Complex, Pasay City","SM by the Bay, Mall of Asia Complex, Pasay City, Pasay City",120.9796667,14.53133333,"Asian, European",2000,Botswana Pula(P),Yes,No,No,No,4,4,Green,Very Good,520 +6301290,Vikings,162,Pasay City,"Building B, By The Bay, Seaside Boulevard, Mall of Asia Complex (MOA), Pasay City","SM by the Bay, Mall of Asia Complex, Pasay City","SM by the Bay, Mall of Asia Complex, Pasay City, Pasay City",120.9793333,14.54,"Seafood, Filipino, Asian, European",2000,Botswana Pula(P),Yes,No,No,No,4,4.2,Green,Very Good,677 +6300010,Spiral - Sofitel Philippine Plaza Manila,162,Pasay City,"Plaza Level, Sofitel Philippine Plaza Manila, CCP Complex, Pasay City","Sofitel Philippine Plaza Manila, Pasay City","Sofitel Philippine Plaza Manila, Pasay City, Pasay City",120.98009,14.55299,"European, Asian, Indian",6000,Botswana Pula(P),Yes,No,No,No,4,4.9,Dark Green,Excellent,621 +6314987,Locavore,162,Pasig City,"Brixton Technology Center, 10 Brixton Street, Kapitolyo, Pasig City",Kapitolyo,"Kapitolyo, Pasig City",121.056532,14.572041,Filipino,1100,Botswana Pula(P),Yes,No,No,No,3,4.8,Dark Green,Excellent,532 +6309903,Silantro Fil-Mex,162,Pasig City,"75 East Capitol Drive, Kapitolyo, Pasig City",Kapitolyo,"Kapitolyo, Pasig City",121.057916,14.567689,"Filipino, Mexican",800,Botswana Pula(P),No,No,No,No,3,4.9,Dark Green,Excellent,1070 +6309455,Mad Mark's Creamery & Good Eats,162,Pasig City,"23 East Capitol Drive, Kapitolyo, Pasig City",Kapitolyo,"Kapitolyo, Pasig City",121.06082,14.570849,"American, Ice Cream, Desserts",900,Botswana Pula(P),Yes,No,No,No,3,4.2,Green,Very Good,488 +6318433,Silantro Fil-Mex,162,Quezon City,"Second Floor, UP Town Center, Katipunan Avenue, Diliman, Quezon City","UP Town Center, Diliman, Quezon City","UP Town Center, Diliman, Quezon City, Quezon City",121.075419,14.649503,"Filipino, Mexican",800,Botswana Pula(P),No,No,No,No,3,4.8,Dark Green,Excellent,294 +6310470,Guevarra's,162,San Juan City,"387 P. Guevarra Corner Argonne Street, Addition Hills, San Juan City",Addition Hills,"Addition Hills, San Juan City",121.0335917,14.59345,Filipino,1000,Botswana Pula(P),Yes,No,No,No,3,4.2,Green,Very Good,458 +6314605,Sodam Korean Restaurant,162,San Juan City,"17 J. Abad Santos Drive, Little Baguio, San Juan City",Little Baguio,"Little Baguio, San Juan City",121.03811,14.59889,Korean,700,Botswana Pula(P),No,No,No,No,3,4.3,Green,Very Good,223 +18185059,Cafe Arabelle,162,Santa Rosa,"Ayala Mall, Solenad, Nuvali, Santa Rosa - Tagaytay Road, Don Jose, Santa Rosa","Nuvali, Don Jose, Santa Rosa","Nuvali, Don Jose, Santa Rosa, Santa Rosa",121.05704,14.237082,"Cafe, American, Italian, Filipino",800,Botswana Pula(P),No,No,No,No,3,3.6,Yellow,Good,29 +18182702,Nonna's Pasta & Pizzeria,162,Santa Rosa,"Ground Floor, Building G, Solenad 3, Nuvali, Don Jose, Santa Rosa","Solenad 3, Don Jose, Santa Rosa","Solenad 3, Don Jose, Santa Rosa, Santa Rosa",121.0565874,14.23767897,"Italian, Pizza",850,Botswana Pula(P),No,No,No,No,3,4,Green,Very Good,72 +6318213,Balay Dako,162,Tagaytay City,"Aguinaldo Highway, Tagaytay City",Tagaytay City,"Tagaytay City, Tagaytay City",120.951589,14.101834,Filipino,1200,Botswana Pula(P),Yes,No,No,No,3,4.5,Dark Green,Excellent,211 +18255654,Hobing Korean Dessert Cafe,162,Taguig City,"Third Floor, BGC Stopover Pavillion, Rizal Drive Corner 31st Street, Bonifacio Global City, Taguig City","BGC Stopover Pavillion, Bonifacio Global City","BGC Stopover Pavillion, Bonifacio Global City, Taguig City",121.045878,14.55436,"Cafe, Korean, Desserts",600,Botswana Pula(P),No,No,No,No,2,4.5,Dark Green,Excellent,118 +6308205,Wildflour Cafe + Bakery,162,Taguig City,"Ground Floor, Netlima Building, 4th Avenue Corner 26th Street, Bonifacio Global City, Taguig City",Bonifacio Global City,"Bonifacio Global City, Taguig City",121.04622,14.549337,"Cafe, Bakery, American, Italian",1500,Botswana Pula(P),Yes,No,No,No,4,4.4,Green,Very Good,392 +6315438,NIU by Vikings,162,Taguig City,"Sixth Floor, SM Aura Premier, C5 Road Corner 26th Street, Bonifacio Global City, Taguig City","SM Aura Premier, Bonifacio Global City, Taguig City","SM Aura Premier, Bonifacio Global City, Taguig City, Taguig City",121.053725,14.545858,"Seafood, American, Mediterranean, Japanese",3000,Botswana Pula(P),Yes,No,No,No,4,4.7,Dark Green,Excellent,535 +6310406,The Food Hall by Todd English,162,Taguig City,"Fifth Floor, SM Aura Premier, C5 Corner 26th Street, Bonifacio Global City, Taguig City","SM Aura Premier, Bonifacio Global City, Taguig City","SM Aura Premier, Bonifacio Global City, Taguig City, Taguig City",121.0534998,14.54565535,"American, Asian, Italian, Seafood",1800,Botswana Pula(P),Yes,No,No,No,4,4.5,Dark Green,Excellent,618 +6600681,Chez Michou,30,Bras_lia,"SCLN, 208, Bloco A, Loja 30, Asa Norte, Bras_lia",Asa Norte,"Asa Norte, Bras_lia",-47.88178889,-15.76414167,"Fast Food, French",55,Brazilian Real(R$),No,No,No,No,2,3,Orange,Average,6 +6601005,Caf Daniel Briand,30,Bras_lia,"SCLN 104, Bloco A, Loja 26, Asa Norte, Bras_lia",Asa Norte,"Asa Norte, Bras_lia",-47.88266667,-15.7775,Cafe,30,Brazilian Real(R$),No,No,No,No,1,3.8,Yellow,Good,9 +6600292,Casa do Biscoito Mineiro,30,Bras_lia,"SCLN 210, Bloco D, Loja 36/48, Asa Norte, Bras_lia",Asa Norte,"Asa Norte, Bras_lia",-47.88213611,-15.75747222,Bakery,45,Brazilian Real(R$),No,No,No,No,2,3.7,Yellow,Good,11 +6600441,Maori,30,Bras_lia,"CLN 110, Bloco D, Loja 28, Asa Norte, Bras_lia",Asa Norte,"Asa Norte, Bras_lia",-47.88816667,-15.75883333,Brazilian,60,Brazilian Real(R$),No,No,No,No,3,3.8,Yellow,Good,11 +6600970,Pizza Bessa,30,Bras_lia,"SCS 214, Bloco C, Loja 40, Asa Sul, Bras_lia",Asa Sul,"Asa Sul, Bras_lia",-47.91566667,-15.83116667,Pizza,50,Brazilian Real(R$),No,No,No,No,2,3.2,Orange,Average,11 +6600379,Sushi Loko,30,Bras_lia,"SCS 213, Bloco C, Loja 35, Asa Sul, Bras_lia",Asa Sul,"Asa Sul, Bras_lia",-47.91566667,-15.831,Japanese,80,Brazilian Real(R$),No,No,No,No,3,3.1,Orange,Average,10 +6600214,Beirute,30,Bras_lia,"CLS 109, Bloco A, Loja 2/6, Asa Sul, Bras_lia",Asa Sul,"Asa Sul, Bras_lia",-47.9075,-15.82,Arabian,90,Brazilian Real(R$),No,No,No,No,3,3.7,Yellow,Good,8 +6601218,New Koto,30,Bras_lia,"SCS 212, Bloco B, Loja 26, Asa Sul, Bras_lia",Asa Sul,"Asa Sul, Bras_lia",-47.91016667,-15.82733333,Japanese,200,Brazilian Real(R$),No,No,No,No,4,3.7,Yellow,Good,5 +6600060,Sandubas Caf,30,Bras_lia,"Edif_cio Jos Severo, SCS 6, Bloco A, Loja 99, Asa Sul, Bras_lia",Asa Sul,"Asa Sul, Bras_lia",-47.89016667,-15.797,"Brazilian, Cafe",30,Brazilian Real(R$),No,No,No,No,1,0,White,Not rated,2 +6600083,Villa Tevere,30,Bras_lia,"CLS 115, Bloco A, Loja 2, Asa Sul, Bras_lia",Asa Sul,"Asa Sul, Bras_lia",-47.92366667,-15.83133333,Italian,150,Brazilian Real(R$),No,No,No,No,4,4.1,Green,Very Good,12 +6601515,Rovereto,30,Bras_lia,"Rua 13 Norte, Lote 4, guas Claras, Bras_lia",guas Claras,"guas Claras, Bras_lia",-48.019,-15.83716667,Pizza,100,Brazilian Real(R$),No,No,No,No,4,3.1,Orange,Average,9 +6601361,Buena Carne,30,Bras_lia,"Avenida Araucrias, 1325, Loja 19, guas Claras, Bras_lia",guas Claras,"guas Claras, Bras_lia",-48.01909167,-15.839775,"Bar Food, Brazilian",60,Brazilian Real(R$),No,No,No,No,3,3.6,Yellow,Good,9 +6601602,Taco Pep,30,Bras_lia,"Vila Malls, Avenida das Castanheiras, Lote 1060, guas Claras, Bras_lia",guas Claras,"guas Claras, Bras_lia",-48.01666667,-15.83483333,"Mexican, Grill",100,Brazilian Real(R$),No,No,No,No,4,4.3,Green,Very Good,29 +6601589,Coco Bambu,30,Bras_lia,"Bras_lia Shopping - Piso 2, SCN 5, Bloco A, Asa Norte, Bras_lia","Bras_lia Shopping, Asa Norte","Bras_lia Shopping, Asa Norte, Bras_lia",-47.889,-15.7865,International,230,Brazilian Real(R$),No,No,No,No,4,4.2,Green,Very Good,17 +6601862,Tayp,30,Bras_lia,"Fashion Park, Shis Ql 17, Bloco G, Loja 208, Lago Sul, Bras_lia",Lago Sul,"Lago Sul, Bras_lia",-47.872359,-15.860621,"Peruvian, Latin American",100,Brazilian Real(R$),No,No,No,No,4,3.6,Yellow,Good,5 +6601595,Outback Steakhouse,30,Bras_lia,"ParkShopping - Piso 2, SAI/SO, rea 6580, Guar I, Bras_lia","ParkShopping, Guar I","ParkShopping, Guar I, Bras_lia",-47.95628333,-15.83451389,"American, Grill",150,Brazilian Real(R$),No,No,No,No,4,4,Green,Very Good,10 +6601158,Manzu,30,Bras_lia,"Ponto Lago Sul, SHIS 10, Lote 9, Lago Sul, Bras_lia","Ponto Lago Sul, Lago Sul","Ponto Lago Sul, Lago Sul, Bras_lia",-47.87283333,-15.82566667,Seafood,240,Brazilian Real(R$),No,No,No,No,4,3.2,Orange,Average,6 +6600427,Coco Bambu,30,Bras_lia,"SCES, Trecho 2, Conjunto 13/36, Setor de Clubes Esportivos Sul, Bras_lia",Setor De Clubes Esportivos Sul,"Setor De Clubes Esportivos Sul, Bras_lia",-47.8685,-15.819,International,230,Brazilian Real(R$),No,No,No,No,4,4.9,Dark Green,Excellent,30 +6600116,Gero,30,Bras_lia,"Shopping Iguatemi - piso 1, SHIN CA 4, Lote A, Lago Norte, Bras_lia","Shopping Iguatemi, Lago Norte","Shopping Iguatemi, Lago Norte, Bras_lia",-47.885812,-15.720118,Italian,350,Brazilian Real(R$),No,No,No,No,4,3.3,Orange,Average,8 +6601457,Brazilian American Burgers,30,Bras_lia,"CLSN 301, Bloco C, Loja 86, Sudoeste, Bras_lia",Sudoeste,"Sudoeste, Bras_lia",-47.92102778,-15.79753056,"American, Burger",50,Brazilian Real(R$),No,No,No,No,2,3.6,Yellow,Good,9 +7303219,Pesqueiro Eco Gourmet,30,Rio de Janeiro,"Praia da Barra da Tijuca, Avenida L_cio Costa, Ilha 25, Barra da Tijuca, Rio de Janeiro",Barra da Tijuca,"Barra da Tijuca, Rio de Janeiro",-43.377,-23.0115,"Seafood, Bar Food, Brazilian",140,Brazilian Real(R$),No,No,No,No,4,4,Green,Very Good,7 +7304307,Confeitaria Colombo,30,Rio de Janeiro,"Rua Gon_alves Dias, 32, Centro, Rio de Janeiro",Centro,"Centro, Rio de Janeiro",-43.178826,-22.905293,"Desserts, Cafe",100,Brazilian Real(R$),No,No,No,No,4,4.8,Dark Green,Excellent,29 +7301215,Bibi,30,Rio de Janeiro,"Rua Santa Clara, 36, Copabana, Rio de Janeiro",Copacabana,"Copacabana, Rio de Janeiro",-43.18669167,-22.97207222,"Juices, Healthy Food",60,Brazilian Real(R$),No,No,No,No,3,4.7,Dark Green,Excellent,24 +7300596,Cervantes,30,Rio de Janeiro,"Avenida Prado Junior, 335 B, Copacabana, Rio de Janeiro",Copacabana,"Copacabana, Rio de Janeiro",-43.17583333,-22.96216667,"Beverages, Bar Food, Fast Food",90,Brazilian Real(R$),No,No,No,No,3,4.5,Dark Green,Excellent,29 +7300612,Amir,30,Rio de Janeiro,"Rua Ronald de Carvalho, 55, Copacabana, Rio de Janeiro",Copacabana,"Copacabana, Rio de Janeiro",-43.176,-22.96516667,Lebanese,170,Brazilian Real(R$),No,No,No,No,4,4.2,Green,Very Good,11 +7300704,TT Burger,30,Rio de Janeiro,"Galeria River, Rua Francisco Otaviano, 67, Copacabana, Rio de Janeiro","Galeria River, Copacabana","Galeria River, Copacabana, Rio de Janeiro",-43.191,-22.98683333,Burger,60,Brazilian Real(R$),No,No,No,No,3,4.8,Dark Green,Excellent,19 +7300955,Braseiro da Gvea,30,Rio de Janeiro,"Pra_a Santos Dumont, 116, Gvea, Rio de Janeiro",Gvea,"Gvea, Rio de Janeiro",-43.227042,-22.973507,"Brazilian, Bar Food",100,Brazilian Real(R$),No,No,No,No,4,4.9,Dark Green,Excellent,40 +7300521,Balada Mix,30,Rio de Janeiro,"Rua An_bal de Mendon_a, 37, Ipanema, Rio de Janeiro",Ipanema,"Ipanema, Rio de Janeiro",-43.211425,-22.98520833,"Brazilian, Healthy Food, Juices, Pizza",90,Brazilian Real(R$),No,No,No,No,3,4.6,Dark Green,Excellent,21 +7300515,Garota de Ipanema,30,Rio de Janeiro,"Rua Vinicius de Moraes, 49, Ipanema, Rio de Janeiro",Ipanema,"Ipanema, Rio de Janeiro",-43.203,-22.98533333,"Brazilian, Bar Food",120,Brazilian Real(R$),No,No,No,No,4,4.9,Dark Green,Excellent,49 +7300483,Zaz Bistr Tropical,30,Rio de Janeiro,"Rua Joana Anglica, 40, Ipanema, Rio de Janeiro",Ipanema,"Ipanema, Rio de Janeiro",-43.20520833,-22.98531944,Brazilian,170,Brazilian Real(R$),No,No,No,No,4,4.6,Dark Green,Excellent,21 +7301064,Fil de Ouro,30,Rio de Janeiro,"Rua Jardim Botnico, 731, Jardim Botnico, Lagoa, Rio de Janeiro",Lagoa,"Lagoa, Rio de Janeiro",-43.219563,-22.966647,Brazilian,90,Brazilian Real(R$),No,No,No,No,3,4.3,Green,Very Good,14 +7304312,D.O.C Ristorante,30,Rio de Janeiro,"Le Monde, Bloco 3, Lojas A/B, Avenida das Amricas, 3500, Barra da Tijuca, Rio de Janeiro","Le Monde, Barra da Tijuca","Le Monde, Barra da Tijuca, Rio de Janeiro",-43.34879167,-22.99991111,Italian,150,Brazilian Real(R$),No,No,No,No,4,4,Green,Very Good,5 +7300004,Sushi Leblon,30,Rio de Janeiro,"Rua Dias Ferreira, 256, Leblon, Rio de Janeiro",Leblon,"Leblon, Rio de Janeiro",-43.227,-22.98416667,Japanese,250,Brazilian Real(R$),No,No,No,No,4,4.6,Dark Green,Excellent,25 +7300868,Talho Capixaba,30,Rio de Janeiro,"Avenida Ataulfo de Paiva, 1022, Lojas A e B, Leblon, Rio de Janeiro",Leblon,"Leblon, Rio de Janeiro",-43.22566667,-22.98516667,"Bakery, Sandwich, Brazilian",120,Brazilian Real(R$),No,No,No,No,4,4.4,Green,Very Good,13 +7302637,Leme Light,30,Rio de Janeiro,"Rua Gustavo Sampaio, 798, Leme, Rio de Janeiro",Leme,"Leme, Rio de Janeiro",-43.17279167,-22.963925,Brazilian,40,Brazilian Real(R$),No,No,No,No,2,4.2,Green,Very Good,7 +7302140,Shirley,30,Rio de Janeiro,"Rua Gustavo Sampaio, 610, Leme, Rio de Janeiro",Leme,"Leme, Rio de Janeiro",-43.17126389,-22.96337222,"Brazilian, Seafood",250,Brazilian Real(R$),No,No,No,No,4,4.2,Green,Very Good,8 +7305048,Quiosque Chopp Brahma,30,Rio de Janeiro,"Madureira Shopping - Loja 289/290, Piso 2, Estrada do Portela, 222, Madureira, Rio de Janeiro, RJ",Madureira,"Madureira, Rio de Janeiro",-43.341164,-22.870413,"Bar Food, Brazilian",70,Brazilian Real(R$),No,No,No,No,3,0,White,Not rated,1 +7302898,Apraz_vel,30,Rio de Janeiro,"Rua Apraz_vel, 62, Santa Teresa, Rio de Janeiro",Santa Teresa,"Santa Teresa, Rio de Janeiro",-43.18736944,-22.92481389,Brazilian,300,Brazilian Real(R$),No,No,No,No,4,4.7,Dark Green,Excellent,44 +7302859,Aconchego Carioca,30,Rio de Janeiro,"Rua Baro de Iguatemi, 379, Tijuca, Rio de Janeiro",Tijuca,"Tijuca, Rio de Janeiro",-43.21551111,-22.91370833,"Brazilian, Bar Food",85,Brazilian Real(R$),No,No,No,No,3,4.6,Dark Green,Excellent,24 +7301700,Garota de Ipanema,30,Rio de Janeiro,"Avenida Joo Alves, 56, Urca, Rio de Janeiro",Urca,"Urca, Rio de Janeiro",-43.16266667,-22.94783333,"Brazilian, Bar Food",80,Brazilian Real(R$),No,No,No,No,3,4.3,Green,Very Good,10 +6706313,Cantina Famiglia Mancini,30,So Paulo,"Rua Avanhandava, 81, Bela Vista, So Paulo 10000","Bela Vista, Centro","Bela Vista, Centro, So Paulo",-46.64516667,-23.55066667,"Italian, Pizza",250,Brazilian Real(R$),No,No,No,No,4,4.5,Dark Green,Excellent,49 +6704326,Templo da Carne - Marcos Bassi,30,So Paulo,"Rua Treze de Maio, 668, Bela Vista, So Paulo 01327000","Bela Vista, Centro","Bela Vista, Centro, So Paulo",-46.64633333,-23.559,"Steak, BBQ",250,Brazilian Real(R$),No,No,No,No,4,4.4,Green,Very Good,17 +6711179,Gopala Hari,30,So Paulo,"Rua Antonio Carlos, 429, Consola_o, So Paulo",Consola_o,"Consola_o, So Paulo",-46.65866667,-23.55616667,Indian,70,Brazilian Real(R$),No,No,No,No,3,3.1,Orange,Average,5 +6702797,Jiquitaia,30,So Paulo,"Rua Antnio Carlos, 268, Consola_o, So Paulo",Consola_o,"Consola_o, So Paulo",-46.657523,-23.55671,Brazilian,100,Brazilian Real(R$),No,No,No,No,4,4.1,Green,Very Good,15 +6700475,Skye - Hotel Unique,30,So Paulo,"Hotel Unique, Avenida Brigadeiro Lu_s Antnio, 4700, Jardim Paulista, So Paulo","Hotel Unique, Jardim Paulista","Hotel Unique, Jardim Paulista, So Paulo",-46.666851,-23.581688,"Beverages, International",300,Brazilian Real(R$),No,No,No,No,4,4.8,Dark Green,Excellent,59 +6713413,Les 3 Brasseurs,30,So Paulo,"Rua Jesu_no Arruda, 470, Itaim Bibi, So Paulo",Itaim Bibi,"Itaim Bibi, So Paulo",-46.67511,-23.582135,"French, Brazilian, Beverages",120,Brazilian Real(R$),No,No,No,No,4,4.6,Dark Green,Excellent,30 +6714340,Red Steak & Burger,30,So Paulo,"Rua Tabapu, 1417, Itaim Bibi, So Paulo",Itaim Bibi,"Itaim Bibi, So Paulo",-46.683888,-23.585324,"Brazilian, Grill",75,Brazilian Real(R$),No,No,No,No,3,3.9,Yellow,Good,5 +6710645,Cantinho da Gula,30,So Paulo,"Rua Pedroso Alvarenga, 522, Itaim Bibi, So Paulo, SP",Itaim Bibi,"Itaim Bibi, So Paulo",-46.67566667,-23.581,Brazilian,55,Brazilian Real(R$),No,No,No,No,2,0,White,Not rated,0 +6700402,Paris 6 Classique,30,So Paulo,"Rua Haddock Lobo, 1240, Cerqueira Csar, Jardim Paulista, So Paulo",Jardim Paulista,"Jardim Paulista, So Paulo",-46.666041,-23.561568,French,200,Brazilian Real(R$),No,No,No,No,4,3.4,Orange,Average,73 +6700846,Kawa Sushi,30,So Paulo,"Alameda Lorena, 300, Jardim Paulista, So Paulo",Jardim Paulista,"Jardim Paulista, So Paulo",-46.657418,-23.571638,"Sushi, Japanese",120,Brazilian Real(R$),No,No,No,No,4,3.5,Yellow,Good,9 +6702159,A Figueira Rubaiyat,30,So Paulo,"Rua Haddock Lobo, 1738, Cerqueira Csar, Jardim Paulista, So Paulo 10000",Jardim Paulista,"Jardim Paulista, So Paulo",-46.66983333,-23.5655,"BBQ, Grill, Brazilian",300,Brazilian Real(R$),No,No,No,No,4,4.3,Green,Very Good,39 +6711666,Kinoshita,30,So Paulo,"Rua Jacques Flix, 405, Vila Nova Concei_o, Moema, So Paulo",Moema,"Moema, So Paulo",-46.67133333,-23.59233333,Sushi,230,Brazilian Real(R$),No,No,No,No,4,3.9,Yellow,Good,12 +6701257,Meats,30,So Paulo,"Rua dos Pinheiros, 320, Pinheiros, So Paulo",Pinheiros,"Pinheiros, So Paulo",-46.68133333,-23.56483333,"Gourmet Fast Food, Burger",120,Brazilian Real(R$),No,No,No,No,4,4.3,Green,Very Good,68 +6706211,Paribar,30,So Paulo,"Pra_a Dom Jos Gaspar, 42, Rep_blica, So Paulo 10000",Rep_blica,"Rep_blica, So Paulo",-46.64159444,-23.54664167,"Brazilian, Italian",150,Brazilian Real(R$),No,No,No,No,4,4.3,Green,Very Good,46 +6705858,Terra_o Itlia,30,So Paulo,"Edif_cio Itlia - 41 Andar, Avenida Ipiranga, 344, Rep_blica, So Paulo",Rep_blica,"Rep_blica, So Paulo",-46.643425,-23.545163,Italian,400,Brazilian Real(R$),No,No,No,No,4,4.4,Green,Very Good,37 +6701419,Divino Fogo,30,So Paulo,"Shopping Metr Santa Cruz - Piso L2, Rua Domingos de Morais, 2564, Vila Mariana, So Paulo","Shopping Metr Santa Cruz, Vila Mariana","Shopping Metr Santa Cruz, Vila Mariana, So Paulo",-46.63716667,-23.5995,"Brazilian, Mineira",65,Brazilian Real(R$),No,No,No,No,3,0,White,Not rated,2 +6703956,Super Grill,30,So Paulo,"Shopping Morumbi - Piso Lazer, Avenida Roque Petroni J_nior, 1089, Santo Amaro, So Paulo","Shopping Morumbi, Santo Amaro","Shopping Morumbi, Santo Amaro, So Paulo",-46.698574,-23.622925,Brazilian,50,Brazilian Real(R$),No,No,No,No,2,0,White,Not rated,2 +6709580,Esquina Mocot_,30,So Paulo,"Avenida Nossa Senhora do Loreto, 1104, Vila Medeiros, Vila Maria, So Paulo",Vila Maria,"Vila Maria, So Paulo",-46.581672,-23.486535,"Brazilian, North Eastern",100,Brazilian Real(R$),No,No,No,No,4,4.4,Green,Very Good,22 +6703176,Veloso,30,So Paulo,"Rua Concei_o Veloso, 56, Vila Mariana, So Paulo",Vila Mariana,"Vila Mariana, So Paulo",-46.63566667,-23.58516667,"Brazilian, Bar Food, Beverages",70,Brazilian Real(R$),No,No,No,No,3,4.6,Dark Green,Excellent,58 +6713772,Sainte Marie Gastronomia,30,So Paulo,"Rua Dom Joo Batista da Costa, 70, Vila Snia, So Paulo",Vila Snia,"Vila Snia, So Paulo",-46.746958,-23.609207,"Lebanese, Arabian",120,Brazilian Real(R$),No,No,No,No,4,4.1,Green,Very Good,11 +17284404,Austin's BBQ and Oyster Bar,216,Albany,"2820 Meredyth Dr, Albany, GA 31707",Albany,"Albany, Albany",-84.221535,31.610387,"BBQ, Burger, Seafood",25,Dollar($),No,No,No,No,2,3.3,Orange,Average,35 +17284203,BJ's Country Buffet,216,Albany,"2401 Dawson Rd, Albany, GA 31707",Albany,"Albany, Albany",-84.207095,31.608743,"American, BBQ",10,Dollar($),No,No,No,No,1,3.3,Orange,Average,25 +17284105,Cookie Shoppe,216,Albany,"115 N Jackson St, Albany, GA 31701",Albany,"Albany, Albany",-84.154,31.5772,,0,Dollar($),No,No,No,No,1,3.4,Orange,Average,34 +17284302,El Vaquero Mexican Restaurant,216,Albany,"2700 Dawson Rd, Albany, GA 31707",Albany,"Albany, Albany",-84.2194,31.6158,Mexican,0,Dollar($),No,No,No,No,1,3.4,Orange,Average,45 +17284397,Elements Coffee Co - Northwest,216,Albany,"2726 Ledo Rd Ste 10, Albany, GA 31707",Albany,"Albany, Albany",-84.206944,31.622412,"Coffee and Tea, Sandwich",10,Dollar($),No,No,No,No,1,3.4,Orange,Average,26 +17284211,Pearly's Famous Country Cookng,216,Albany,"814 N Slappey Blvd, Albany, GA 31701",Albany,"Albany, Albany",-84.1759,31.5882,,0,Dollar($),No,No,No,No,1,3.4,Orange,Average,36 +17284094,Chick-fil-A,216,Albany,"2703 Dawson Rd, Albany, GA 31707",Albany,"Albany, Albany",-84.2193,31.616,Fast Food,10,Dollar($),No,No,No,No,1,3.5,Yellow,Good,67 +17284409,Guang Zhou Chinese Restaurant,216,Albany,"1214 N Westover Blvd, Albany, GA 31707",Albany,"Albany, Albany",-84.2091458,31.6155186,"Asian, Chinese, Vegetarian",10,Dollar($),No,No,No,No,1,3.9,Yellow,Good,141 +17284139,Harvest Moon,216,Albany,"2347 Dawson Road, Albany, GA 31707",Albany,"Albany, Albany",-84.205718,31.604905,"Pizza, Bar Food, Sandwich",25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,147 +17284403,Henry Campbell's Steakhouse,216,Albany,"629 N. Westover Blvd, Albany, GA 31707",Albany,"Albany, Albany",-84.223278,31.612121,"Steak, Tapas, Bar Food",70,Dollar($),No,No,No,No,4,3.5,Yellow,Good,51 +17284145,Hong Kong Cafe,216,Albany,"2700 Dawson Rd, Albany, GA 31707",Albany,"Albany, Albany",-84.2191,31.6156,"Chinese, Seafood, Vegetarian",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,88 +17284150,House of China Restaurant II,216,Albany,"2526 Dawson Rd Ste A, Albany, GA 31707",Albany,"Albany, Albany",-84.212,31.6104,Chinese,10,Dollar($),No,No,No,No,1,3.8,Yellow,Good,153 +17284158,Jimmie's Hot Dogs,216,Albany,"204 S Jackson St, Albany, GA 31701",Albany,"Albany, Albany",-84.1534,31.5751,,10,Dollar($),No,No,No,No,1,3.9,Yellow,Good,160 +17284175,Locos Grill & Pub,216,Albany,"547 N Westover Blvd, Albany, GA 31707",Albany,"Albany, Albany",-84.2228,31.6077,"American, Burger, Sandwich",25,Dollar($),No,No,No,No,2,3.5,Yellow,Good,57 +17284179,Longhorn Steakhouse,216,Albany,"2733 Dawson Rd, Albany, GA 31707",Albany,"Albany, Albany",-84.2229,31.6185,"American, Steak",25,Dollar($),No,No,No,No,2,3.5,Yellow,Good,58 +17284197,Mikata Japanese Steakhouse,216,Albany,"2610 Dawson Rd, Albany, GA 31707",Albany,"Albany, Albany",-84.2164,31.6137,"Japanese, Steak, Sushi",40,Dollar($),No,No,No,No,3,3.6,Yellow,Good,115 +17284241,Shogun Japanese Steak House,216,Albany,"629 N Westover Blvd, Albany, GA 31707",Albany,"Albany, Albany",-84.2233,31.6118,"Japanese, Steak, Sushi",40,Dollar($),No,No,No,No,3,3.5,Yellow,Good,51 +17284390,The Catch Seafood Room & Oyster Bar,216,Albany,"2332 Whispering Pines Road, Albany, GA 31707",Albany,"Albany, Albany",-84.205025,31.605882,"Seafood, Tapas, Bar Food",40,Dollar($),No,No,No,No,3,3.8,Yellow,Good,250 +17284279,Villa Gargano,216,Albany,"1604 N Slappey Blvd, Albany, GA 31701",Albany,"Albany, Albany",-84.1757,31.5985,"Italian, Pizza",10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,117 +17284364,3 Squares Diner,216,Albany,"202 W Franklin St, Sylvester, GA 31791",Sylvester,"Sylvester, Albany",-83.8389,31.5308,"American, Breakfast, Diner",10,Dollar($),No,No,No,No,1,3.4,Orange,Average,20 +16611114,Whitebull Hotel,14,Armidale,"117 Marsh St, Armidale, NSW",Armidale,"Armidale, Armidale",151.6688792,-30.5147169,"Bar Food, Steak",20,Dollar($),No,No,No,No,2,3.5,Yellow,Good,25 +17293281,Last Resort Grill,216,Athens,"184 W Clayton St, Athens, GA 30601",Athens,"Athens, Athens",-83.378273,33.957999,"American, Southern, Southwestern",40,Dollar($),No,No,No,No,3,4.5,Dark Green,Excellent,1821 +17293301,Mama's Boy Restaurant,216,Athens,"197 Oak St, GA 30601",Athens,"Athens, Athens",-83.3654,33.9535,Southern,10,Dollar($),No,No,No,No,1,4.5,Dark Green,Excellent,849 +17293409,Sr. Sol 1,216,Athens,"175 Tallassee Rd, Athens, GA 30606",Athens,"Athens, Athens",-83.4293,33.9652,Mexican,10,Dollar($),No,No,No,No,1,4.6,Dark Green,Excellent,917 +17293163,Choo Choo Eastside,216,Athens,"1055 Gaines School Rd Ste 100, Athens, GA 30605",Athens,"Athens, Athens",-83.3389,33.9259,"Japanese, Korean",10,Dollar($),No,No,No,No,1,3.9,Yellow,Good,439 +17293228,The Grill,216,Athens,"171 College Ave, Athens, GA 30601",Athens,"Athens, Athens",-83.375523,33.958198,"Breakfast, Burger, Sandwich",10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,289 +17293880,Big City Bread Cafe,216,Athens,"393 N Finley St, Athens, GA 30601",Athens,"Athens, Athens",-83.384004,33.959392,"Breakfast, Sandwich",10,Dollar($),No,No,No,No,1,4.3,Green,Very Good,558 +17293169,Clocked,216,Athens,"259 W Washington St, Athens, GA 30601",Athens,"Athens, Athens",-83.3797,33.9584,"American, Burger, Sandwich",10,Dollar($),No,No,No,No,1,4.2,Green,Very Good,613 +17293186,DePalma's Italian Cafe - Downtown,216,Athens,"401 E Broad St, Athens, GA 30601",Athens,"Athens, Athens",-83.373596,33.958112,"American, Italian, Pizza",25,Dollar($),No,No,No,No,2,4,Green,Very Good,353 +17293180,DePalma's Italian Cafe - East Side,216,Athens,"1965 Barnett Shoals Rd, Athens, GA 30605",Athens,"Athens, Athens",-83.33995,33.924275,"American, Italian, Pizza",25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,387 +17293205,Five & Ten,216,Athens,"1073 South Milledge Ave, Athens, GA 30605",Athens,"Athens, Athens",-83.3872482,33.9415545,American,40,Dollar($),No,No,No,No,3,4.3,Green,Very Good,755 +17293229,Grit,216,Athens,"199 Prince Ave, Athens, GA 30601",Athens,"Athens, Athens",-83.381625,33.960112,"International, Southern, Vegetarian",10,Dollar($),No,No,No,No,1,4.2,Green,Very Good,800 +17293897,Ike & Jane,216,Athens,"1307 Prince Ave, Athens, GA 30606",Athens,"Athens, Athens",-83.400887,33.963296,Sandwich,10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,350 +17293273,La Dolce Vita Ristorante,216,Athens,"323 E Broad St, Athens, GA 30601",Athens,"Athens, Athens",-83.4075,33.9584,Italian,40,Dollar($),No,No,No,No,3,4.1,Green,Very Good,464 +17293870,Shokitini,216,Athens,"251 W Clayton St, Athens, GA 30601",Athens,"Athens, Athens",-83.379251,33.957503,"Asian, Japanese, Sushi",25,Dollar($),No,No,No,No,2,4.2,Green,Very Good,550 +17293877,Taqueria Del Sol,216,Athens,"334 Prince Ave, Athens, GA 30601",Athens,"Athens, Athens",-83.383605,33.960571,"Mexican, Spanish",10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,543 +17293890,The National,216,Athens,"232 W. Hancock Ave., Athens, GA 30601",Athens,"Athens, Athens",-83.37967,33.959468,"International, Southern",40,Dollar($),No,No,No,No,3,4.1,Green,Very Good,465 +17293915,The Royal Peasant,216,Athens,"1675 S. Lumpkin St., Athens, GA 30606",Athens,"Athens, Athens",-83.38728,33.937502,Bar Food,10,Dollar($),No,No,No,No,1,4.4,Green,Very Good,546 +17293422,Transmetropolitan,216,Athens,"145 E Clayton St, Athens, GA 30601",Athens,"Athens, Athens",-83.3764,33.9584,"Italian, Pizza, Sandwich",10,Dollar($),No,No,No,No,1,4.4,Green,Very Good,1098 +17293873,Trappeze Pub,216,Athens,"269 N Hull St, Athens, GA 30601",Athens,"Athens, Athens",-83.378881,33.958363,"Burger, Bar Food",25,Dollar($),No,No,No,No,2,4.2,Green,Very Good,579 +17294014,Viva! Argentine Cuisine,216,Athens,"247 Prince Ave, Athens, GA 30601",Athens,"Athens, Athens",-83.3828224,33.9600227,"Desserts, Latin American, Argentine",10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,374 +17294556,Miyabi Kyoto Japanese Steak House,216,Augusta,"1315 Augusta West Pkwy, Augusta, GA 30909",Augusta,"Augusta, Augusta",-82.0865,33.4721,"Chinese, Steak",40,Dollar($),No,No,No,No,3,4.6,Dark Green,Excellent,717 +17294607,Rae's Coastal Cafe,216,Augusta,"3208 W Wimbledon Dr, Augusta, GA 30909",Augusta,"Augusta, Augusta",-82.0698,33.4791,"American, Caribbean, Seafood",40,Dollar($),No,No,No,No,3,4.9,Dark Green,Excellent,548 +17294279,The Bee's Knees,216,Augusta,"211 10th Street, Augusta, GA 30901",Augusta,"Augusta, Augusta",-81.97,33.4765,"International, Tapas, Vegetarian",25,Dollar($),No,No,No,No,2,4.5,Dark Green,Excellent,631 +17294300,Boll Weevil Cafe,216,Augusta,"10 9th St, Augusta, GA 30901",Augusta,"Augusta, Augusta",-81.9684,33.474,"Desserts, Sandwich, Southern",10,Dollar($),No,No,No,No,1,3.9,Yellow,Good,372 +17295215,Farmhaus Burger,216,Augusta,"1204 Broad St, Augusta, GA 30901",Augusta,"Augusta, Augusta",-81.973006,33.477444,"American, Burger",25,Dollar($),No,No,No,No,2,3.9,Yellow,Good,201 +17295028,Manuel's Bread Cafe,216,Augusta,"505 Railroad Ave, North Augusta, GA 29841",Augusta,"Augusta, Augusta",-81.965571,33.481779,"Breakfast, French",40,Dollar($),No,No,No,No,3,3.8,Yellow,Good,332 +17294642,Sconyers Bar B Que,216,Augusta,"2250 Sconyers Way, Augusta, GA 30906",Augusta,"Augusta, Augusta",-82.0327,33.4086,BBQ,25,Dollar($),No,No,No,No,2,3.5,Yellow,Good,304 +17295109,Frog Hollow Tavern,216,Augusta,"1282 broad street, Augusta, GA 30901",Augusta,"Augusta, Augusta",-81.974944,33.478231,American,40,Dollar($),No,No,No,No,3,4.3,Green,Very Good,368 +17294441,Giuseppe's Pizza & Italian Specialities,216,Augusta,"3690 Wheeler Rd, Augusta, GA 30909",Augusta,"Augusta, Augusta",-82.096,33.4827,"Desserts, Italian, Pizza",25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,430 +17294552,Mellow Mushroom,216,Augusta,"1167 Broad St, Augusta, GA 30901",Augusta,"Augusta, Augusta",-81.9721,33.4778,"Italian, Pizza, Sandwich",25,Dollar($),No,No,No,No,2,4.4,Green,Very Good,433 +17294565,Nacho Mamas Burritos,216,Augusta,"976 Broad St, Augusta, GA 30901",Augusta,"Augusta, Augusta",-81.9694,33.4764,Mexican,10,Dollar($),No,No,No,No,1,4,Green,Very Good,380 +17294623,Rhinehart's Oyster Bar,216,Augusta,"3051 Washington Rd, Augusta, GA 30907",Augusta,"Augusta, Augusta",-82.0505,33.5133,"Bar Food, Sandwich, Seafood",25,Dollar($),No,No,No,No,2,4,Green,Very Good,456 +17294712,Takosushi,216,Augusta,"437 Highland Ave, Augusta, GA 30909",Augusta,"Augusta, Augusta",-82.0301,33.4848,"Mexican, Southwestern, Sushi",40,Dollar($),No,No,No,No,3,4.2,Green,Very Good,647 +17295033,The Chop House,216,Augusta,"Augusta Mall, Augusta, GA 30909",Augusta,"Augusta, Augusta",-82.080788,33.467201,Steak,40,Dollar($),No,No,No,No,3,4,Green,Very Good,360 +17295069,The Taj of India,216,Augusta,"502 Furys Ferry Rd, Augusta, GA 30907",Augusta,"Augusta, Augusta",-82.0805493,33.5375868,Indian,25,Dollar($),No,No,No,No,2,4,Green,Very Good,227 +17294261,Augsburg Haus,216,Augusta,"4460 Washington Road, Evans, GA 30809",Evans,"Evans, Augusta",-82.143793,33.544342,German,25,Dollar($),No,No,No,No,2,3.9,Yellow,Good,290 +17295115,Pho Bac,216,Augusta,"4300 Towne Centre, Evans, GA 30809",Evans,"Evans, Augusta",-82.126161,33.532249,Vietnamese,10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,270 +17294836,Rhinehart's Oyster Bar,216,Augusta,"303 North Bel Air Rd, Evans, GA 30809",Evans,"Evans, Augusta",-82.141284,33.521291,"Burger, Seafood",25,Dollar($),No,No,No,No,2,4,Green,Very Good,326 +17294850,Thai Kitchen,216,Augusta,"4357 Washington Road, Evans, GA 30809",Evans,"Evans, Augusta",-82.1328,33.5406,Thai,35,Dollar($),No,No,No,No,3,4.3,Green,Very Good,317 +17294883,El Kiosco Mexican Restaurant,216,Augusta,"5174 Wrightsboro Rd, Grovetown, GA 30813",Grovetown,"Grovetown, Augusta",-82.1997,33.4574,Mexican,10,Dollar($),No,No,No,No,1,4.2,Green,Very Good,300 +16608864,Taste of Balingup,14,Balingup,"63 South Western Hwy, Balingup, WA",Balingup,"Balingup, Balingup",115.9844924,-33.7845269,Modern Australian,20,Dollar($),No,No,No,No,2,3.2,Orange,Average,21 +16604911,Bridge Road Brewers,14,Beechworth,"Old Coach House 50 Ford St, Beechworth, Beechworth, VIC",Beechworth,"Beechworth, Beechworth",146.685852,-36.360439,"Pizza, Bar Food",20,Dollar($),No,No,No,No,2,4.6,Dark Green,Excellent,237 +17303465,Bardenay,216,Boise,"610 W Grove St, Boise, ID 83702",Boise,"Boise, Boise",-116.2019,43.6138,"American, Bar Food",25,Dollar($),No,No,No,No,2,4.5,Dark Green,Excellent,879 +17303642,Flatbread Neapolitan Pizzeria,216,Boise,"800 W Main Suite 230, Boise, ID 83702",Boise,"Boise, Boise",-116.203466,43.616068,"Italian, Pizza",25,Dollar($),No,No,No,No,2,4.6,Dark Green,Excellent,615 +17303670,Goldy's Breakfast Bistro,216,Boise,"108 S Capitol Blvd, Boise, ID 83702",Boise,"Boise, Boise",-116.2023,43.6149,"Breakfast, Sandwich",25,Dollar($),No,No,No,No,2,4.5,Dark Green,Excellent,879 +17303545,Chandlers Steakhouse,216,Boise,"981 W Grove St, Boise, ID 83702",Boise,"Boise, Boise",-116.2064,43.6157,"American, Seafood, Steak",70,Dollar($),No,No,No,No,4,3.9,Yellow,Good,379 +17303655,Bar Gernika Basque Pub & Eatery,216,Boise,"202 S Capitol Blvd, Boise, ID 83702",Boise,"Boise, Boise",-116.2031,43.614,"European, Spanish",10,Dollar($),No,No,No,No,1,4.3,Green,Very Good,303 +17304691,Barbacoa Restaurant,216,Boise,"276 Bobwhite Ct, Boise, ID 83706",Boise,"Boise, Boise",-116.185034,43.597235,"Latin American, Steak",70,Dollar($),No,No,No,No,4,4.1,Green,Very Good,538 +17303478,Big Jud's,216,Boise,"1289 Protest Rd, Boise, ID 83706",Boise,"Boise, Boise",-116.2062,43.5945,"American, Burger, Sandwich",10,Dollar($),No,No,No,No,1,4.2,Green,Very Good,334 +17303480,Bittercreek Ale House,216,Boise,"246 N 8th St, Boise, ID 83702",Boise,"Boise, Boise",-116.2022,43.6167,"American, Bar Food",25,Dollar($),No,No,No,No,2,4.3,Green,Very Good,555 +17304733,Boise Fry Company,216,Boise,"204 N Capitol Blvd, Boise, ID 83702",Boise,"Boise, Boise",-116.193409,43.610279,"American, Burger",10,Dollar($),No,No,No,No,1,4.4,Green,Very Good,823 +17303646,Flying Pie Pizzaria,216,Boise,"6508 W Fairview Ave, Boise, ID 83704",Boise,"Boise, Boise",-116.2625,43.6192,Pizza,25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,550 +17304929,Fork,216,Boise,"199 N 8th St, Boise, ID 83702",Boise,"Boise, Boise",-116.202845,43.616295,"American, Burger",25,Dollar($),No,No,No,No,2,4.4,Green,Very Good,650 +17303684,Guido's Original New York Style Pizza,216,Boise,"235 N 5th St, Boise, ID 83702",Boise,"Boise, Boise",-116.199,43.615,Pizza,10,Dollar($),No,No,No,No,1,4.3,Green,Very Good,410 +17303772,Los Beto's,216,Boise,"5220 W Fairview Ave, Boise, ID 83706",Boise,"Boise, Boise",-116.2463,43.6191,Mexican,10,Dollar($),No,No,No,No,1,4.4,Green,Very Good,660 +17305123,Lucianos Italian Restaurant,216,Boise,"11 N Orchard St, Boise, ID 83706",Boise,"Boise, Boise",-116.245165,43.6051379,"Italian, Seafood, Vegetarian",25,Dollar($),No,No,No,No,2,4.4,Green,Very Good,360 +17303787,Mai Thai Restaurant,216,Boise,"750 W Idaho St, Boise, ID 83702",Boise,"Boise, Boise",-116.2021,43.6162,"Sushi, Thai",40,Dollar($),No,No,No,No,3,4,Green,Very Good,340 +17303990,Shige Japanese Cuisine,216,Boise,"100 N 8th St, Boise, ID 83702",Boise,"Boise, Boise",-116.2031,43.6156,"Japanese, Sushi, Teriyaki",25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,393 +17304741,The Egg Factory,216,Boise,"8061 W Fairview Ave, Boise, ID 83704",Boise,"Boise, Boise",-116.281809,43.619274,Breakfast,10,Dollar($),No,No,No,No,1,4.3,Green,Very Good,422 +17304726,Tucanos,216,Boise,"1388 S Entertainment Ave, Boise, ID 83709",Boise,"Boise, Boise",-116.280614,43.591706,Brazilian,40,Dollar($),No,No,No,No,3,4,Green,Very Good,435 +17304486,Texas Roadhouse,216,Boise,"3801 E Fairview Avenue, Meridian, Boise, ID 83642",Meridian,"Meridian, Boise",-116.347304,43.619108,"American, BBQ, Steak",25,Dollar($),No,No,No,No,2,4,Green,Very Good,369 +17304533,Brick 29,216,Boise,"320 11th Avenue S, Nampa, ID 83651",Nampa,"Nampa, Boise",-116.5629,43.5777,American,40,Dollar($),No,No,No,No,3,4.4,Green,Very Good,487 +17316233,Winifreds,216,Cedar Rapids/Iowa City,"3847 1st Ave SE, Cedar Rapids, IA 52402",Cedar Rapids,"Cedar Rapids, Cedar Rapids/Iowa City",-91.6336,42.0179,"American, Mediterranean, Seafood",40,Dollar($),No,No,No,No,3,3.7,Yellow,Good,98 +17315883,Biaggi's Ristorante Italiano,216,Cedar Rapids/Iowa City,"320 Collins Rd NE, Cedar Rapids, IA 52402",Cedar Rapids,"Cedar Rapids, Cedar Rapids/Iowa City",-91.6327,42.0281,"Italian, Pizza",40,Dollar($),No,No,No,No,3,4.1,Green,Very Good,365 +17315995,El Super Burrito,216,Cedar Rapids/Iowa City,"3300 Johnson Ave NW, Cedar Rapids, IA 52405",Cedar Rapids,"Cedar Rapids, Cedar Rapids/Iowa City",-91.7148,41.9748,Mexican,10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,190 +17316018,Granite City Food & Brewery,216,Cedar Rapids/Iowa City,"4755 1st Ave SE, Cedar Rapids, IA 52402",Cedar Rapids,"Cedar Rapids, Cedar Rapids/Iowa City",-91.6224,42.0249,"American, Breakfast, Burger",40,Dollar($),No,No,No,No,3,4.1,Green,Very Good,429 +17316038,Irish Democrat,216,Cedar Rapids/Iowa City,"3207 1st Ave SE, Cedar Rapids, IA 52402",Cedar Rapids,"Cedar Rapids, Cedar Rapids/Iowa City",-91.6347,42.01,"American, BBQ, Burger",25,Dollar($),No,No,No,No,2,4.4,Green,Very Good,430 +17316771,Taste of India,216,Cedar Rapids/Iowa City,"1060 Old Marion Rd NE, Cedar Rapids, IA 52402",Cedar Rapids,"Cedar Rapids, Cedar Rapids/Iowa City",-91.6499622,42.0215347,Indian,25,Dollar($),No,No,No,No,2,4.2,Green,Very Good,186 +17316201,Thai Moon Restaurant,216,Cedar Rapids/Iowa City,"4362 16th Ave SW, Cedar Rapids, IA 52404",Cedar Rapids,"Cedar Rapids, Cedar Rapids/Iowa City",-91.7266,41.9639,"Chinese, Sushi, Thai",10,Dollar($),No,No,No,No,1,4.2,Green,Very Good,220 +17316208,Ting's Red Lantern,216,Cedar Rapids/Iowa City,"540 Boyson Rd NE, Cedar Rapids, IA 52402",Cedar Rapids,"Cedar Rapids, Cedar Rapids/Iowa City",-91.6394,42.0468,Chinese,10,Dollar($),No,No,No,No,1,4.2,Green,Very Good,347 +17316389,Monica's,216,Cedar Rapids/Iowa City,"303 2nd Street, Coralville, IA 52241",Coralville,"Coralville, Cedar Rapids/Iowa City",-91.569767,41.670466,"American, Italian, Pizza",25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,161 +17316278,Exotic India,216,Cedar Rapids/Iowa City,"102 2nd Ave, Coralville, IA 52241",Coralville,"Coralville, Cedar Rapids/Iowa City",-91.5687,41.6685,Indian,25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,160 +17316744,Shorts Burger and Shine,216,Cedar Rapids/Iowa City,"18 S Clinton St, Iowa City, IA 52240",Iowa City,"Iowa City, Cedar Rapids/Iowa City",-91.534424,41.660982,Burger,10,Dollar($),No,No,No,No,1,4.9,Dark Green,Excellent,820 +17316751,The Hamburg Inn No. 2 Inc.,216,Cedar Rapids/Iowa City,"214 N Linn St, Iowa City, IA 52245",Iowa City,"Iowa City, Cedar Rapids/Iowa City",-91.531414,41.663849,"American, Breakfast, Burger",10,Dollar($),No,No,No,No,1,4.5,Dark Green,Excellent,488 +17316766,Bluebird Diner,216,Cedar Rapids/Iowa City,"330 E Market St, Iowa City, IA 52245",Iowa City,"Iowa City, Cedar Rapids/Iowa City",-91.531093,41.663751,"Breakfast, Diner",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,253 +17316743,Graze,216,Cedar Rapids/Iowa City,"115 East College St, Iowa City, IA 52240",Iowa City,"Iowa City, Cedar Rapids/Iowa City",-91.534302,41.658691,"American, International, Sushi",40,Dollar($),No,No,No,No,3,3.8,Yellow,Good,220 +17316374,A & A Pagliai's Pizza,216,Cedar Rapids/Iowa City,"302 E Bloomington St, Iowa City, IA 52245",Iowa City,"Iowa City, Cedar Rapids/Iowa City",-91.5314,41.6648,Pizza,25,Dollar($),No,No,No,No,2,4.3,Green,Very Good,485 +17316381,Atlas World Grill,216,Cedar Rapids/Iowa City,"127 Iowa Ave, Iowa City, IA 52240",Iowa City,"Iowa City, Cedar Rapids/Iowa City",-91.5341,41.661,International,40,Dollar($),No,No,No,No,3,4.3,Green,Very Good,428 +17316802,BlackStone,216,Cedar Rapids/Iowa City,"503 Westbury Dr Ste 1, Iowa City, IA 52245",Iowa City,"Iowa City, Cedar Rapids/Iowa City",-91.482165,41.667742,"American, Breakfast",25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,294 +17316416,Devotay,216,Cedar Rapids/Iowa City,"117 N Linn St, Iowa City, IA 52245",Iowa City,"Iowa City, Cedar Rapids/Iowa City",-91.5318,41.6625,"Mediterranean, Tapas, Vegetarian",40,Dollar($),No,No,No,No,3,4,Green,Very Good,380 +17316449,Jimmy Jack's Rib Shack,216,Cedar Rapids/Iowa City,"1940 Lower Muscatine Rd, Iowa City, IA 52240",Iowa City,"Iowa City, Cedar Rapids/Iowa City",-91.5074,41.6428,BBQ,25,Dollar($),No,No,No,No,2,4.2,Green,Very Good,259 +17316603,Zoeys Pizzeria,216,Cedar Rapids/Iowa City,"690 10th St, Marion, IA 52302",Marion,"Marion, Cedar Rapids/Iowa City",-91.5995,42.0331,"Pizza, Sandwich",25,Dollar($),No,No,No,No,2,4.7,Dark Green,Excellent,433 +16659169,Tokyo Sushi,37,Chatham-Kent,"150 Richmond St, Chatham-Kent, ON N7M2V2",Chatham-Kent,"Chatham-Kent, Chatham-Kent",-82.188438,42.397683,"Japanese, Sushi",25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,176 +17558684,Berry Patch Restaurant,216,Clatskanie,"49289 Us-30, Westport, OR 97016",Clatskanie,"Clatskanie, Clatskanie",-123.368151,46.126967,"American, Breakfast, Desserts",10,Dollar($),No,No,No,No,1,4.3,Green,Very Good,96 +18366580,Sakura Sushi & Grill,216,Cochrane,"130 Quarry Street, Unit 20, Cochrane, AB T4C 0W5",Cochrane,"Cochrane, Cochrane",-114.472474,51.183934,"Asian, Japanese",25,Dollar($),No,No,No,No,2,3.1,Orange,Average,6 +17330755,Uptown Vietnam cuisine,216,Columbus,"1250 Broadway, Columbus, GA 31901",Columbus,"Columbus, Columbus",-84.992671,32.470315,"Asian, Vietnamese",10,Dollar($),No,No,No,No,1,3.3,Orange,Average,33 +17330611,Cafe Le Rue @ The Landings,216,Columbus,"2523 Airport Thruway, Columbus, GA 31904",Columbus,"Columbus, Columbus",-84.95591,32.519247,"American, Seafood, Cajun",25,Dollar($),No,No,No,No,2,4.6,Dark Green,Excellent,489 +17330609,Mark's City Grille,216,Columbus,"7160 moon road, Columbus, GA 31909",Columbus,"Columbus, Columbus",-84.927047,32.555591,American,25,Dollar($),No,No,No,No,2,4.5,Dark Green,Excellent,345 +17330024,B Merrell's,216,Columbus,"7600 Veterans Pkwy, Columbus, GA 31909",Columbus,"Columbus, Columbus",-84.9436,32.5577,"Burger, Bar Food, Southern",25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,149 +17330074,Cannon Brewpub,216,Columbus,"1041 Broadway, Columbus, GA 31901",Columbus,"Columbus, Columbus",-84.9936,32.4656,"Pizza, Bar Food",25,Dollar($),No,No,No,No,2,3.9,Yellow,Good,330 +17330185,Fuji Japanese Steak House,216,Columbus,"6499 Veterans Pkwy, Columbus, GA 31909",Columbus,"Columbus, Columbus",-84.954984,32.5382197,"Japanese, Steak",40,Dollar($),No,No,No,No,3,3.9,Yellow,Good,247 +17330397,Ruth Ann's Family Restaurant,216,Columbus,"941 Veterans Parkway, Columbus, GA 31901",Columbus,"Columbus, Columbus",-84.9876,32.4637,"Breakfast, Diner, Southern",10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,123 +17330735,Samurai Japanese Cuisine & Sushi Bar,216,Columbus,"1009 Broadway, Columbus, GA 31901",Columbus,"Columbus, Columbus",-84.9933631,32.4652417,"Japanese, Steak, Sushi",40,Dollar($),No,No,No,No,3,3.6,Yellow,Good,109 +17330676,Wasabi Sushi and Thai,216,Columbus,"1639 Bradley Park Dr, Columbus, GA 31904",Columbus,"Columbus, Columbus",-84.96661,32.534002,"Japanese, Sushi, Thai",40,Dollar($),No,No,No,No,3,3.7,Yellow,Good,134 +17330048,Buckhead Bar and Grill,216,Columbus,"5010 Armour Rd, Columbus, GA 31904",Columbus,"Columbus, Columbus",-84.95367,32.513154,"Seafood, Steak, Vegetarian",40,Dollar($),No,No,No,No,3,4.2,Green,Very Good,722 +17330604,Burt's Butcher Shoppe and Eatery,216,Columbus,"2932 Warm Springs Rd, Columbus, GA 31909",Columbus,"Columbus, Columbus",-84.947569,32.504657,Steak,25,Dollar($),No,No,No,No,2,4.3,Green,Very Good,213 +17330087,Chef Lee's Peking Restaurant,216,Columbus,"6100 Bradley Park Dr, Columbus, GA 31904",Columbus,"Columbus, Columbus",-84.9607,32.5393,Chinese,25,Dollar($),No,No,No,No,2,4,Green,Very Good,335 +17330137,Country's Barbecue,216,Columbus,"3137 Mercury Dr, Columbus, GA 31906",Columbus,"Columbus, Columbus",-84.9464,32.4792,"BBQ, Southern",25,Dollar($),No,No,No,No,2,4,Green,Very Good,353 +17330155,Deorio's,216,Columbus,"3201 Macon Rd Ste 167, Columbus, GA 31906",Columbus,"Columbus, Columbus",-84.9427,32.481,"Italian, Pizza",0,Dollar($),No,No,No,No,1,4,Green,Very Good,170 +17330309,Mellow Mushroom,216,Columbus,"6100 Veterans Pkwy, Columbus, GA 31909",Columbus,"Columbus, Columbus",-84.9557,32.5321,Pizza,25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,192 +17330311,Meritage,216,Columbus,"1039 1st Ave, Columbus, GA 31901",Columbus,"Columbus, Columbus",-84.992093,32.466158,"American, Tapas",40,Dollar($),No,No,No,No,3,4.1,Green,Very Good,302 +17330615,Mongo The Mongolian Fire Pit,216,Columbus,"7830 - E Veterans Pkwy, Columbus, GA 31909",Columbus,"Columbus, Columbus",-84.938698,32.560905,"Asian, Chinese",10,Dollar($),No,No,No,No,1,4.2,Green,Very Good,355 +17330638,The Black Cow,216,Columbus,"115 A 12th St, Columbus, GA 31901",Columbus,"Columbus, Columbus",-84.991384,32.468757,American,25,Dollar($),No,No,No,No,2,4.3,Green,Very Good,287 +17330628,Wood Stone,216,Columbus,"5739 Whitesville Rd, Columbus, GA 31904",Columbus,"Columbus, Columbus",-84.963201,32.527217,"Italian, Mediterranean, Pizza",40,Dollar($),No,No,No,No,3,4,Green,Very Good,264 +17330546,Hunter's Pub,216,Columbus,"11269 GA Hwy 219, Hamilton, GA 31811",Hamilton,"Hamilton, Columbus",-85.0213,32.7455,"American, Seafood, Steak",40,Dollar($),No,No,No,No,3,4.4,Green,Very Good,235 +16643459,Consort Restaurant,37,Consort,"4931 50th Street, Consort, AB T0C 1B0",Consort,"Consort, Consort",-110.7746994,52.0082889,"Chinese, Canadian",25,Dollar($),No,No,No,No,2,3,Orange,Average,6 +17334434,Thatcher's Barbeque and Grill,216,Dalton,"1214 N Wall St, Calhoun, GA 30701",Calhoun,"Calhoun, Dalton",-84.9396931,34.5251331,"American, BBQ, Southern",25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,38 +17334348,Christian and Jake's Bistro,216,Dalton,"555 Georgia Hwy 53, Calhoun, GA 30701",Calhoun,"Calhoun, Dalton",-84.926258,34.474635,"Desserts, Sandwich",10,Dollar($),No,No,No,No,1,4.4,Green,Very Good,122 +17334213,Dub's High on the Hog,216,Dalton,"349 S Wall St, Calhoun, GA 30701",Calhoun,"Calhoun, Dalton",-84.9523921,34.4972488,BBQ,25,Dollar($),No,No,No,No,2,4.4,Green,Very Good,207 +17334355,Sierra's Mexican Restaurant,216,Dalton,"500 S. 3rd Avenue, Chatsworth, GA 30705",Chatsworth,"Chatsworth, Dalton",-84.767911,34.752476,"Mexican, Tex-Mex",10,Dollar($),No,No,No,No,1,3.9,Yellow,Good,66 +17334212,Oakwood Cafe,216,Dalton,"201 West Cuyler Street, Dalton, GA 30720",Dalton,"Dalton, Dalton",-84.969393,34.769686,"BBQ, Breakfast, Southern",10,Dollar($),No,No,No,No,1,4.9,Dark Green,Excellent,249 +17333797,Chili's Grill & Bar,216,Dalton,"881 College Dr, Dalton, GA 30720",Dalton,"Dalton, Dalton",-85.0039,34.7643,American,25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,63 +17334217,Fuji Japanese Steakhouse,216,Dalton,"1321 W Walnut Ave, Dalton, GA 30720",Dalton,"Dalton, Dalton",-84.992342,34.759551,"Japanese, Sushi",40,Dollar($),No,No,No,No,3,3.8,Yellow,Good,145 +17334273,Las Palmas,216,Dalton,"1331 W Walnut Ave, Dalton, GA 30720",Dalton,"Dalton, Dalton",-84.992924,34.759665,Mexican,10,Dollar($),No,No,No,No,1,3.8,Yellow,Good,83 +17334254,Tony's Italian Restaurant & Pizza,216,Dalton,"933 Market St, Dalton, GA 30720",Dalton,"Dalton, Dalton",-84.999678,34.758645,Italian,25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,116 +17333836,Filling Station,216,Dalton,"316 N Hamilton St, Dalton, GA 30720",Dalton,"Dalton, Dalton",-84.9678,34.7742,"American, Burger",10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,122 +17334197,Five Guys Burgers and Fries,216,Dalton,"1303 W. Walnut Ave., Dalton, GA 30720",Dalton,"Dalton, Dalton",-84.990925,34.759273,Fast Food,10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,142 +17333882,Los Pablos,216,Dalton,"1513 W Walnut Ave Ste 6, Dalton, GA 30720",Dalton,"Dalton, Dalton",-84.9964,34.7604,Mexican,10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,114 +17334211,Kobe Hibachi & Sushi,216,Dalton,"2603 Battlefield Pkwy, Fort Oglethorpe, GA 30742",Fort Oglethorpe,"Fort Oglethorpe, Dalton",-85.2229101,34.9428786,"American, Japanese, Sushi",25,Dollar($),No,No,No,No,2,4.6,Dark Green,Excellent,214 +17334390,Soho Hibachi,216,Dalton,"1014 Battlefield Parkway, Fort Oglethorpe, GA 30742",Fort Oglethorpe,"Fort Oglethorpe, Dalton",-85.246237,34.9528157,Japanese,10,Dollar($),No,No,No,No,1,4.3,Green,Very Good,116 +17334034,Thai Garden,216,Dalton,"685 Battlefield Pkwy, Fort Oglethorpe, GA 30742",Fort Oglethorpe,"Fort Oglethorpe, Dalton",-85.2545,34.9546,Thai,25,Dollar($),No,No,No,No,2,4.2,Green,Very Good,111 +17334414,Southern Bliss Bakery,216,Dalton,"300 W Patton St., Lafayette, GA 30728",LaFayette,"LaFayette, Dalton",-85.294955,34.705093,"Desserts, Sandwich",10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,25 +17334082,Bailey's Bar-B-Que,216,Dalton,"5540 Highway 41, Ringgold, GA 30736",Ringgold,"Ringgold, Dalton",-85.1321,34.9273,BBQ,10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,128 +17334364,Farm To Fork,216,Dalton,"118 Remco Shops Lane, Ringgold, GA 30736",Ringgold,"Ringgold, Dalton",-85.130492,34.912109,"American, Diner, Southern",10,Dollar($),No,No,No,No,1,4.3,Green,Very Good,244 +17334398,Home Plate Grill,216,Dalton,"7807 Nashville St, Ringgold, GA 30736",Ringgold,"Ringgold, Dalton",-85.1079396,34.9151853,"American, BBQ, Southern",10,Dollar($),No,No,No,No,1,4.2,Green,Very Good,112 +17334219,Pie Slingers Pizzeria,216,Dalton,"56A Fieldstone Village Drive, Rock Spring, GA 30739",Rock Spring,"Rock Spring, Dalton",-85.249727,34.851907,"Italian, Pizza",10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,144 +17335173,Olive Tree Cafe,216,Davenport,"2513 53rd Avenue, Bettendorf, IA 52722",Bettendorf,"Bettendorf, Davenport",-90.496986,41.574935,"Indian, Mediterranean, Middle Eastern",25,Dollar($),No,No,No,No,2,4.6,Dark Green,Excellent,166 +17335195,"Red Ginger Sushi, Grill & Bar",216,Davenport,"793 Middle Rd, Bettendorf, IA 52722",Bettendorf,"Bettendorf, Davenport",-90.522479,41.53845,"Sushi, Teriyaki",40,Dollar($),No,No,No,No,3,4.5,Dark Green,Excellent,208 +17335225,Crust Stone Oven Pizza,216,Davenport,"2561 E 53rd Ave, Bettendorf, IA 52722",Bettendorf,"Bettendorf, Davenport",-90.4912446,41.5747801,"Burger, Pizza",25,Dollar($),No,No,No,No,2,3.9,Yellow,Good,136 +17335219,Jimmy's Pancake House,216,Davenport,"2521 - 18th St., Bettendorf, IA 52722",Bettendorf,"Bettendorf, Davenport",-90.504176,41.548746,"American, Breakfast, Greek",10,Dollar($),No,No,No,No,1,4,Green,Very Good,85 +17334965,Trattoria Tiramisu,216,Davenport,"1804 State St, Bettendorf, IA 52722",Bettendorf,"Bettendorf, Davenport",-90.50709,41.525384,Italian,25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,117 +17335189,Prairie Grille at SteepleGate Inn,216,Davenport,"100 W 76th St, Davenport, IA 52806",Davenport,"Davenport, Davenport",-90.574088,41.593892,"American, Breakfast",25,Dollar($),No,No,No,No,2,3.4,Orange,Average,53 +17335156,Tantra Asian Bistro,216,Davenport,"589 East 53rd St, Davenport, IA 52807",Davenport,"Davenport, Davenport",-90.565837,41.574459,Asian,25,Dollar($),No,No,No,No,2,4.9,Dark Green,Excellent,474 +17334717,Chick-fil-A,216,Davenport,"320 W Kimberly Rd, Davenport, IA 52806",Davenport,"Davenport, Davenport",-90.5716,41.5604,Fast Food,10,Dollar($),No,No,No,No,1,3.9,Yellow,Good,125 +17334752,Duck City Bistro,216,Davenport,"115 E 3rd St, Davenport, IA 52801",Davenport,"Davenport, Davenport",-90.5737,41.5223,"American, French",70,Dollar($),No,No,No,No,4,3.7,Yellow,Good,201 +18453427,Frick's Tap,216,Davenport,"1402 W 3rd Street, IA 52802",Davenport,"Davenport, Davenport",-90.59466452,41.52253634,"American, Bar Food, BBQ",25,Dollar($),No,No,No,No,2,0,White,Not rated,2 +17793744,Los Agaves,216,Davenport,"4882 Utica Ridge Rd, Davenport, IA 52807",Davenport,"Davenport, Davenport",-90.5154313,41.5709434,Mexican,25,Dollar($),No,No,No,No,2,0,White,Not rated,3 +17334679,Azteca,216,Davenport,"4811 N Brady St Ste 3, Davenport, IA 52806",Davenport,"Davenport, Davenport",-90.5683,41.5699,Mexican,0,Dollar($),No,No,No,No,1,4.3,Green,Very Good,167 +17334718,China Cafe,216,Davenport,"3018 E 53rd St, Davenport, IA 52807",Davenport,"Davenport, Davenport",-90.5321,41.5749,Chinese,25,Dollar($),No,No,No,No,2,4,Green,Very Good,112 +17334763,Exotic Thai Restaurant,216,Davenport,"2303 E 53rd St, Davenport, IA 52807",Davenport,"Davenport, Davenport",-90.5432,41.5747,Thai,25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,256 +17335158,Front Street Brewery,216,Davenport,"208 E River Dr, Davenport, IA 52801",Davenport,"Davenport, Davenport",-90.572418,41.520389,American,10,Dollar($),No,No,No,No,1,4.3,Green,Very Good,123 +17334782,Granite City Food & Brewery,216,Davenport,"5270 Utica Ridge Rd, Davenport, IA 52807",Davenport,"Davenport, Davenport",-90.5137,41.5745,American,25,Dollar($),No,No,No,No,2,4,Green,Very Good,199 +17334846,Los Agaves,216,Davenport,"3852 N Brady St, Davenport, IA 52806",Davenport,"Davenport, Davenport",-90.5686,41.559,Mexican,25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,157 +17334853,Machine Shed Restaurant,216,Davenport,"7250 Northwest Blvd, Davenport, IA 52806",Davenport,"Davenport, Davenport",-90.6136,41.5944,American,25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,100 +17335168,Osaka,216,Davenport,"4901 Utica Ridge Rd, Davenport, IA 52807",Davenport,"Davenport, Davenport",-90.515175,41.570997,"Japanese, Sushi",40,Dollar($),No,No,No,No,3,4.2,Green,Very Good,141 +17334958,Texas Roadhouse,216,Davenport,"4005 E 53rd Street, Davenport, IA 52807",Davenport,"Davenport, Davenport",-90.517,41.5747,"American, BBQ, Steak",25,Dollar($),No,No,No,No,2,4.2,Green,Very Good,197 +17258496,Hickory Park,216,Des Moines,"1404 S Duff Ave, Ames, IA 50010",Ames,"Ames, Des Moines",-93.610084,42.010254,"BBQ, Burger, Desserts",25,Dollar($),No,No,No,No,2,4.5,Dark Green,Excellent,1025 +17259395,The Cafe,216,Des Moines,"2616 Northridge Pkwy, Ames, IA 50010",Ames,"Ames, Des Moines",-93.643094,42.048779,"American, Coffee and Tea",25,Dollar($),No,No,No,No,2,4.9,Dark Green,Excellent,570 +17258350,Flying Mango,216,Des Moines,"4345 Hickman Rd, Des Moines, IA 50310",Beaverdale,"Beaverdale, Des Moines",-93.677638,41.614965,"BBQ, Caribbean, Cajun",40,Dollar($),No,No,No,No,3,4.5,Dark Green,Excellent,674 +17258136,Cool Basil,216,Des Moines,"8801 University Ave, Clive, IA 50325",Clive,"Clive, Des Moines",-93.739573,41.600564,"Asian, Sushi, Thai",25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,496 +17258522,HuHot Mongolian Grill,216,Des Moines,"4100 University Avenue, West Des Moines, IA 50266",Clive,"Clive, Des Moines",-93.760027,41.60028,"Asian, Chinese",25,Dollar($),No,No,No,No,2,4,Green,Very Good,411 +17259958,Malo,216,Des Moines,"900 Mulberry Street, Des Moines, IA 50309",Downtown,"Downtown, Des Moines",-93.627896,41.583309,"Latin American, Mexican",25,Dollar($),No,No,No,No,2,3.2,Orange,Average,113 +17258036,Centro,216,Des Moines,"1007 Locust St, Des Moines, IA 50309",Downtown,"Downtown, Des Moines",-93.6300803,41.5857431,"Italian, Pizza",40,Dollar($),No,No,No,No,3,4.5,Dark Green,Excellent,1109 +17259368,Fong's Pizza,216,Des Moines,"223 4th Street, Des Moines, IA 50309",Downtown,"Downtown, Des Moines",-93.621631,41.585465,"Chinese, Pizza",25,Dollar($),No,No,No,No,2,4.6,Dark Green,Excellent,728 +17257684,A Dong Restaurant,216,Des Moines,"1511 High Street, Des Moines, IA 50309",Downtown,"Downtown, Des Moines",-93.637401,41.587219,"Asian, Vegetarian, Vietnamese, Bubble Tea",10,Dollar($),No,No,No,No,1,4.4,Green,Very Good,659 +17258154,Court Avenue Brewing Company,216,Des Moines,"309 Court Ave, Des Moines, IA 50309",Downtown,"Downtown, Des Moines",-93.620726,41.58536,"American, Pizza, Bar Food",40,Dollar($),No,No,No,No,3,4.2,Green,Very Good,370 +17259340,Django,216,Des Moines,"210 10th Street, Des Moines, IA 50309",Downtown,"Downtown, Des Moines",-93.629436,41.584027,French,40,Dollar($),No,No,No,No,3,4.3,Green,Very Good,532 +17259243,Miyabi 9,216,Des Moines,"512 E Grand Ave, Des Moines, IA 50309",East Village,"East Village, Des Moines",-93.611366,41.590819,"Japanese, Sushi",25,Dollar($),No,No,No,No,2,4.8,Dark Green,Excellent,860 +17259625,Zombie Burger + Drink Lab,216,Des Moines,"300 E. Grand Ave., Des Moines, IA 50309",East Village,"East Village, Des Moines",-93.61474,41.590106,"Burger, Desserts, Vegetarian",10,Dollar($),No,No,No,No,1,4.2,Green,Very Good,943 +17259169,Tursi's Latin King,216,Des Moines,"2200 Hubbell Ave, Des Moines, IA 50317",Fairground,"Fairground, Des Moines",-93.577383,41.601415,"American, Italian",70,Dollar($),No,No,No,No,4,4.1,Green,Very Good,476 +17259166,Tsing Tsao South,216,Des Moines,"4230 Fleur Dr, Des Moines, IA 50321",Greater South Side,"Greater South Side, Des Moines",-93.645245,41.545869,Chinese,10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,218 +17259335,Bandit Burrito,216,Des Moines,"5340 Merle Hay Road, Johnston, IA 50131",Johnston,"Johnston, Des Moines",-93.6976773,41.6714654,"Breakfast, Mexican, Southwestern",10,Dollar($),No,No,No,No,1,4,Green,Very Good,214 +17259248,Jethro's BBQ,216,Des Moines,"3100 Forest Ave, Des Moines, IA 50311",Kingman Place Historic District,"Kingman Place Historic District, Des Moines",-93.659797,41.603901,"American, BBQ",25,Dollar($),No,No,No,No,2,4.3,Green,Very Good,699 +17258552,The Machine Shed Restaurant,216,Des Moines,"11151 Hickman Road, Urbandale, IA 50322",Urbandale,"Urbandale, Des Moines",-93.772033,41.615083,"American, Breakfast",25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,308 +17259550,Mi Patria,216,Des Moines,"1410 22nd St., West Des Moines, IA 50266",West Des Moines,"West Des Moines, Des Moines",-93.73624,41.594039,Latin American,25,Dollar($),No,No,No,No,2,4,Green,Very Good,157 +17259200,Waterfront Seafood Market,216,Des Moines,"2900 University Ave, West Des Moines, IA 50266",West Des Moines,"West Des Moines, Des Moines",-93.7441981,41.5991771,"Seafood, Sushi",40,Dollar($),No,No,No,No,3,4.2,Green,Very Good,530 +16615894,The Giggling Goat,14,Dicky Beach,"14 Beerburrum St, Dicky Beach, QLD",Dicky Beach,"Dicky Beach, Dicky Beach",153.137401,-26.783576,"Coffee and Tea, Tea, Modern Australian",7,Dollar($),No,No,No,No,1,3.6,Yellow,Good,29 +17342816,Burnt Toast Cafe,216,Dubuque,"1220 Iowa St, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.667668,42.504759,Breakfast,10,Dollar($),No,No,No,No,1,3.4,Orange,Average,33 +17342498,Catfish Charlie's,216,Dubuque,"1630 E 16th St, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.6499328,42.5124724,Seafood,25,Dollar($),No,No,No,No,2,3.3,Orange,Average,40 +17342648,Salsa's Mexican Restaurant,216,Dubuque,"1091 Main St, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.6684746,42.5032004,Mexican,10,Dollar($),No,No,No,No,1,3.4,Orange,Average,153 +17342781,Tony Roma's,216,Dubuque,"350 Bell St, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.658609,42.496464,"American, BBQ, Seafood",25,Dollar($),No,No,No,No,2,3.3,Orange,Average,65 +17342799,Vinny Vanucchi's,216,Dubuque,"180 Main Street, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.664029,42.495689,Italian,25,Dollar($),No,No,No,No,2,3.4,Orange,Average,58 +17342772,Champps Americana,216,Dubuque,"3100 Dodge St., Dubuque, IA 52003",Dubuque,"Dubuque, Dubuque",-90.715247,42.492018,"American, Burger, Sandwich",25,Dollar($),No,No,No,No,2,3.5,Yellow,Good,100 +17342771,Fiesta Cancun,216,Dubuque,"2515 NW Arterial, Dubuque, IA 52002",Dubuque,"Dubuque, Dubuque",-90.740213,42.49092,Mexican,10,Dollar($),No,No,No,No,1,3.6,Yellow,Good,156 +17342548,Happy Joe's Pizza & Ice Cream,216,Dubuque,"855 Century Dr, Dubuque, IA 52002",Dubuque,"Dubuque, Dubuque",-90.7264,42.4955,"Desserts, Pizza, Ice Cream",0,Dollar($),No,No,No,No,1,3.5,Yellow,Good,74 +17342556,Houlihan's,216,Dubuque,"1795 Greyhound Park Rd, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.645294,42.516621,"American, Burger",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,117 +17342811,Ichiban Hibachi Steakhouse & Sushi Bar,216,Dubuque,"3187 University Ave, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.712084,42.492963,"Japanese, Steak, Sushi",40,Dollar($),No,No,No,No,3,3.7,Yellow,Good,83 +17342576,Kalmes Breaktime Bar & Grill,216,Dubuque,"1097 Jackson St, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.6646,42.5043,"American, Burger",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,48 +17342770,L. May Eatery,216,Dubuque,"1072 Main St, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.668164,42.503075,"International, Pizza",40,Dollar($),No,No,No,No,3,3.8,Yellow,Good,198 +17342585,Los Aztecas,216,Dubuque,"2700 Dodge St, Dubuque, IA 52003",Dubuque,"Dubuque, Dubuque",-90.7055,42.4916,Mexican,10,Dollar($),No,No,No,No,1,3.5,Yellow,Good,126 +17342494,Manna Java World Cafe,216,Dubuque,"700 Locust St, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.6677349,42.500191,"Breakfast, Pizza",10,Dollar($),No,No,No,No,1,3.5,Yellow,Good,119 +17342594,Mario's Italian Restaurant,216,Dubuque,"1298 Main St, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.6691,42.5048,"American, Italian",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,140 +17342625,Pepper Sprout Incorporated,216,Dubuque,"378 Main St, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.6651,42.4974,American,40,Dollar($),No,No,No,No,3,3.6,Yellow,Good,159 +17342652,Shot Tower Inn,216,Dubuque,"290 Locust St, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.6658,42.4963,"Italian, Pizza",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,131 +17342665,Sunshine Family Restaurant,216,Dubuque,"401 Central Ave, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.663686,42.4982789,"American, Breakfast, Burger",10,Dollar($),No,No,No,No,1,3.5,Yellow,Good,60 +17342810,Watershed Cafe,216,Dubuque,"51 W 32nd Street, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.684882,42.527556,"American, Burger, Pizza, Cafe",25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,89 +17342775,Woodfire Grille,216,Dubuque,"301 Bell Street, Dubuque, IA 52001",Dubuque,"Dubuque, Dubuque",-90.658988,42.496378,"American, Seafood, Steak",70,Dollar($),No,No,No,No,4,3.6,Yellow,Good,72 +16612028,The Belle General,14,East Ballina,"12 Shelly Beach Rd, East Ballina, NSW",East Ballina,"East Ballina, East Ballina",153.593331,-28.862663,Cafe,20,Dollar($),No,No,No,No,2,4.1,Green,Very Good,56 +17536645,Jehova es Mi Pastor Tacos y Burritos,216,Fernley,"135 W. Main Street, Fernley, NV 89408",Fernley,"Fernley, Fernley",-119.252694,39.607515,Mexican,10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,83 +16613507,Flaxton Gardens,14,Flaxton,"313 Flaxton Drive, Flaxton, QLD",Flaxton,"Flaxton, Flaxton",152.8771473,-26.6521332,"Tea, Modern Australian",30,Dollar($),No,No,No,No,3,3.5,Yellow,Good,37 +16607969,Bespoke Harvest,14,Forrest,"16 Grant St, Forrest, VIC",Forrest,"Forrest, Forrest",143.714315,-38.517292,"Cafe, Australian",20,Dollar($),No,No,No,No,2,3.7,Yellow,Good,29 +17374405,Houndstooth Grill & Tavern,216,Gainesville,"6323 Grand Hickory Dr Ste 200A, Braselton, GA 30517",Braselton,"Braselton, Gainesville",-83.8461,34.0901,"American, Sandwich, Seafood",25,Dollar($),No,No,No,No,2,4.4,Green,Very Good,239 +17375060,Hawg Wild BBQ & Catfish House,216,Gainesville,"515 Grant Street, Clarkesville, GA 30523",Clarkesville,"Clarkesville, Gainesville",-83.520693,34.61802,"BBQ, Burger, Seafood",10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,235 +17375164,Bourbon Street Grille,216,Gainesville,"90 Public Sq N, Dahlonega, GA 30533",Dahlonega,"Dahlonega, Gainesville",-83.985353,34.532973,"American, Burger, Cajun",25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,88 +17374552,Corkscrew Cafe,216,Gainesville,"51 W Main St, Dahlonega, GA 30533",Dahlonega,"Dahlonega, Gainesville",-83.9858,34.5318,,40,Dollar($),No,No,No,No,3,3.9,Yellow,Good,209 +17375078,Smokin Gold BBQ,216,Gainesville,"59 E Main St, Dahlonega, GA 30533",Dahlonega,"Dahlonega, Gainesville",-83.983939,34.533626,BBQ,10,Dollar($),No,No,No,No,1,3.9,Yellow,Good,133 +17375049,Hoka-Hoka Japanese Steak & Sushi,216,Gainesville,"617 North Grove Street, Dahlonega, GA 30533",Dahlonega,"Dahlonega, Gainesville",-83.989317,34.541044,"Chinese, Japanese, Thai",10,Dollar($),No,No,No,No,1,4.4,Green,Very Good,267 +17375077,Shenanigan's Irish Pub,216,Gainesville,"87 N. Chestatee St., Dahlonega, GA 30533",Dahlonega,"Dahlonega, Gainesville",-83.986119,34.533198,"Bar Food, Seafood, Vegetarian",25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,171 +17375141,Fish Tales Lakeside Grille,216,Gainesville,"6330 Mitchell Street, Flowery Branch, GA 30542",Flowery Branch,"Flowery Branch, Gainesville",-83.938024,34.183573,Seafood,25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,107 +17375198,Antebellum,216,Gainesville,"5510 Church Street, Flowery Branch, GA 30542",Flowery Branch,"Flowery Branch, Gainesville",-83.926217,34.185707,"American, Southern",40,Dollar($),No,No,No,No,3,4.3,Green,Very Good,164 +17375180,Moonie's Texas Barbecue,216,Gainesville,"5545 Atlanta Highway, Flowery Branch, GA 30542",Flowery Branch,"Flowery Branch, Gainesville",-83.927794,34.180043,"BBQ, Sandwich",10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,182 +17375072,Atlanta Highway Seafood Market,216,Gainesville,"227 Atlanta Highway Suite 900, Gainesville, GA 30501",Gainesville,"Gainesville, Gainesville",-83.838457,34.285102,"Sandwich, Seafood, Cajun",25,Dollar($),No,No,No,No,2,4.9,Dark Green,Excellent,681 +17375047,Eat at Thai,216,Gainesville,"975 Dawsonville Hwy, Gainesville, GA 30501",Gainesville,"Gainesville, Gainesville",-83.857993,34.300182,Thai,10,Dollar($),No,No,No,No,1,4.6,Dark Green,Excellent,357 +17375074,Smoke House BBQ and Catering,216,Gainesville,"3205 Atlanta Hwy, Atlanta Highway, Gainesville, GA, Gainesville, GA 30507",Gainesville,"Gainesville, Gainesville",-83.860098,34.222755,BBQ,25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,89 +17374921,2 Dog,216,Gainesville,"317 Spring St SE, Gainesville, GA 30501",Gainesville,"Gainesville, Gainesville",-83.824023,34.300567,"American, European, Sandwich",25,Dollar($),No,No,No,No,2,4.2,Green,Very Good,350 +17374819,Longstreet Cafe,216,Gainesville,"1043 Riverside Terrace, Gainesville, GA 30501",Gainesville,"Gainesville, Gainesville",-83.8272,34.3166,Southern,10,Dollar($),No,No,No,No,1,4.3,Green,Very Good,298 +17375089,Re-Cess,216,Gainesville,"118 Bradford St NE, Gainesville, GA 30501",Gainesville,"Gainesville, Gainesville",-83.82686,34.300332,"American, Southern",25,Dollar($),No,No,No,No,2,4.2,Green,Very Good,319 +17375214,Bodensee,216,Gainesville,"64 Munich Strasse, Helen, GA 30545",Helen,"Helen, Gainesville",-83.727741,34.701594,German,40,Dollar($),No,No,No,No,3,3.8,Yellow,Good,114 +17374951,Hofer's Bakery & Cafe,216,Gainesville,"8758 N Main St, Helen, GA 30545",Helen,"Helen, Gainesville",-83.7345,34.7024,"German, Ice Cream",10,Dollar($),No,No,No,No,1,3.9,Yellow,Good,136 +17374978,Troll Tavern,216,Gainesville,"8590 N Main St Ste B, Helen, GA 30545",Helen,"Helen, Gainesville",-83.7334,34.7021,"Burger, German, Sandwich",25,Dollar($),No,No,No,No,2,2.2,Red,Poor,108 +17375104,The Nacoochee Village Tavern & Pizzeria,216,Gainesville,"7275 S Main St., Helen, GA 30545",Helen,"Helen, Gainesville",-83.713498,34.691208,"Italian, Pizza, Sandwich",10,Dollar($),No,No,No,No,1,4,Green,Very Good,161 +16604358,Blue Bean Love Cafe,14,Hepburn Springs,"115 Main Rd, Hepburn Springs, Hepburn Springs, VIC",Hepburn Springs,"Hepburn Springs, Hepburn Springs",144.1387014,-37.3123267,"Cafe, Coffee and Tea, Modern Australian",20,Dollar($),No,No,No,No,2,3.8,Yellow,Good,192 +16604896,La Trattoria of Lavandula,14,Hepburn Springs,"350 Hepburn-Newstead Road, Hepburn Springs, VIC",Hepburn Springs,"Hepburn Springs, Hepburn Springs",144.110062,-37.275494,"Italian, Fusion, Cafe",7,Dollar($),No,No,No,No,1,3.8,Yellow,Good,93 +16612550,5 Little Pigs,14,Huskisson,"64 Owen St, Huskisson, NSW",Huskisson,"Huskisson, Huskisson",150.6710743,-35.0388698,"Breakfast, Modern Australian",20,Dollar($),No,No,No,No,2,4.1,Green,Very Good,40 +16606299,Beach Box Cafe,14,Inverloch,"6a Ramsay Blvd, Inverloch, VIC",Inverloch,"Inverloch, Inverloch",145.7287133,-38.6347458,"Burger, Coffee and Tea, Modern Australian",7,Dollar($),No,No,No,No,1,3.7,Yellow,Good,100 +16605794,Funkey Monkey,14,Lakes Entrance,"26 Myer street, Lakes Entrance, VIC",Lakes Entrance,"Lakes Entrance, Lakes Entrance",147.9942247,-37.8783865,"Breakfast, Coffee and Tea",7,Dollar($),No,No,No,No,1,3.8,Yellow,Good,97 +17557488,Burger Queen Drive In,216,Lakeview,"109 S F St, Lakeview, OR 97630",Lakeview,"Lakeview, Lakeview",-120.3458,42.1885,"Burger, Desserts, Sandwich",10,Dollar($),No,No,No,No,1,3.6,Yellow,Good,41 +17452342,Blue Orchid Thai Restaurant,216,Lincoln,"129 N 10th St, Lincoln, NE 68508",Haymarket,"Haymarket, Lincoln",-96.7072,40.8143,Thai,25,Dollar($),No,No,No,No,2,4.5,Dark Green,Excellent,799 +16611498,Stillwater on Belmore,14,Lorn,"27 Belmore Rd,, Lorn, NSW",Lorn,"Lorn, Lorn",151.558475,-32.728097,"Breakfast, Coffee and Tea",20,Dollar($),No,No,No,No,2,3.6,Yellow,Good,18 +17842104,Mr.,14,Macedon,"23 Victoria St, Macedon, VIC",Macedon,"Macedon, Macedon",144.564174,-37.423189,Cafe,20,Dollar($),No,No,No,No,2,3.5,Yellow,Good,31 +17501291,Emilio's Cuban Cafe,216,Macon,"402 Ga. Highway 247, Bonaire, GA 31005",Bonaire,"Bonaire, Macon",-83.594494,32.567741,"Coffee and Tea, Cuban, Latin American",25,Dollar($),No,No,No,No,2,3.9,Yellow,Good,146 +17500759,Ingleside Village Pizza,216,Macon,"2395 Ingleside Ave, Macon, GA 31204",Macon,"Macon, Macon",-83.657061,32.853896,"Pizza, Sandwich",10,Dollar($),No,No,No,No,1,4.9,Dark Green,Excellent,478 +17500767,Jim Shaw's Seafood Grill & Bar,216,Macon,"3040 Vineville Ave, Macon, GA 31204",Macon,"Macon, Macon",-83.6737,32.8496,Seafood,25,Dollar($),No,No,No,No,2,4.6,Dark Green,Excellent,467 +17500819,Mandarin Chinese Restaurant,216,Macon,"3086 Riverside Dr, Macon, GA 31210",Macon,"Macon, Macon",-83.6766,32.8899,"Chinese, Thai",25,Dollar($),No,No,No,No,2,4.5,Dark Green,Excellent,302 +17500911,Rookery,216,Macon,"543 Cherry St, Macon, GA 31201",Macon,"Macon, Macon",-83.6279,32.8361,"Burger, Desserts, Bar Food",25,Dollar($),No,No,No,No,2,4.5,Dark Green,Excellent,289 +17501439,Dovetail,216,Macon,"543 Cherry St, Macon, GA 31201",Macon,"Macon, Macon",-83.627979,32.83641,,40,Dollar($),No,No,No,No,3,3.8,Yellow,Good,102 +17501279,Bonefish Grill,216,Macon,"5080 Riverside Dr, Macon, GA 31210",Macon,"Macon, Macon",-83.713978,32.929278,"American, Seafood",40,Dollar($),No,No,No,No,3,4.1,Green,Very Good,293 +17500695,Downtown Grill,216,Macon,"562 Mulberry St, Macon, GA 31201",Macon,"Macon, Macon",-83.6276,32.8375,Steak,70,Dollar($),No,No,No,No,4,4,Green,Very Good,195 +17501298,Greek Corner Deli,216,Macon,"587 Cherry St, Macon, GA 31201",Macon,"Macon, Macon",-83.628703,32.83654,"Desserts, Greek, Sandwich",10,Dollar($),No,No,No,No,1,4.3,Green,Very Good,244 +17500847,Natalia's,216,Macon,"201 North Macon St., Macon, GA 31210",Macon,"Macon, Macon",-83.787993,32.928495,"European, Italian, Mediterranean",70,Dollar($),No,No,No,No,4,4.2,Green,Very Good,379 +17500872,Papouli's Mediterranean Cafe & Market,216,Macon,"121 Tom Hill Sr Blvd, Macon, GA 31210",Macon,"Macon, Macon",-83.6873,32.901,"Greek, Mediterranean, Vegetarian",10,Dollar($),No,No,No,No,1,4.2,Green,Very Good,223 +17501315,Benson's Steak and Sushi,216,Macon,"1289 S Houston Lake Rd, Warner Robins, GA 31088",Warner Robins,"Warner Robins, Macon",-83.662421,32.556873,"American, Chinese, Sushi",25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,243 +17501201,My Fathers Place,216,Macon,"2507 Moody Rd, Warner Robins, GA 31088",Warner Robins,"Warner Robins, Macon",-83.624,32.5786,Italian,25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,104 +17501247,Sushi Thai Restaurant,216,Macon,"2624 Watson Blvd Ste D, Warner Robins, GA 31093",Warner Robins,"Warner Robins, Macon",-83.6665,32.6184,"Japanese, Sushi, Thai",10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,153 +17501281,The Mellow Mushroom,216,Macon,"710 Lake Joy Road, Warner Robins, GA 31088",Warner Robins,"Warner Robins, Macon",-83.691044,32.552684,"Pizza, Sandwich, Vegetarian",25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,323 +17501143,El Jalisciense Mexican Restaurant,216,Macon,"1224 Russell Pkwy, Warner Robins, GA 31088",Warner Robins,"Warner Robins, Macon",-83.64935,32.594666,Mexican,10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,181 +17501292,Greek Village,216,Macon,"1801 Watson Blvd, Warner Robins, GA 31093",Warner Robins,"Warner Robins, Macon",-83.636618,32.6176839,"American, Greek, Seafood",25,Dollar($),No,No,No,No,2,4,Green,Very Good,316 +17501308,Martin's BBQ,216,Macon,"102 S Armed Forces Boulevard, Warner Robins, GA 31088",Warner Robins,"Warner Robins, Macon",-83.600201,32.619321,BBQ,25,Dollar($),No,No,No,No,2,4.2,Green,Very Good,288 +17501301,Thai Pepper,216,Macon,"1806 Russell Parkway, Warner Robins, GA 31088",Warner Robins,"Warner Robins, Macon",-83.665557,32.593264,"Japanese, Sushi, Thai",10,Dollar($),No,No,No,No,1,4,Green,Very Good,232 +17501268,Zen Japanese Steakhouse and Sushi Bar,216,Macon,"4086 Watson Blvd, Warner Robins, GA 31093",Warner Robins,"Warner Robins, Macon",-83.7184,32.6147,"Japanese, Steak, Sushi",40,Dollar($),No,No,No,No,3,4.1,Green,Very Good,314 +16611701,Star Buffet,14,Mayfield,"58 Hanbury St, Mayfield, NSW",Mayfield,"Mayfield, Mayfield",151.7343832,-32.899178,Asian,20,Dollar($),No,No,No,No,2,2.9,Orange,Average,11 +17482142,Triangle Restaurant,216,Mc Millan,"21053 State Hwy M28, Mc Millan, MI 49853",Mc Millan,"Mc Millan, Mc Millan",-85.7363,46.3718,"Breakfast, Burger",10,Dollar($),No,No,No,No,1,2.4,Red,Poor,17 +16609169,Three Anchors,14,Middleton Beach,"2 Flinders Pde, Middleton Beach, WA",Middleton Beach,"Middleton Beach, Middleton Beach",117.917166,-35.025861,"Bar Food, Modern Australian",30,Dollar($),No,No,No,No,3,3.8,Yellow,Good,176 +17606621,HI Lite Bar & Lounge,216,Miller,"109 N Broadway Ave, Miller, SD 57362",Miller,"Miller, Miller",-98.9891,44.5158,,0,Dollar($),No,No,No,No,1,3.4,Orange,Average,11 +17687832,Vince's Restaurant & Pizzeria,216,Monroe,"619 4th Ave, Monroe, WI 53566",Monroe,"Monroe, Monroe",-89.653487,42.606306,"Italian, Pizza",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,65 +16613059,Poets Cafe,14,Montville,"167 Main St, Montville, QLD",Montville,"Montville, Montville",152.893735,-26.690462,"Coffee and Tea, Modern Australian",30,Dollar($),No,No,No,No,3,2.4,Red,Poor,193 +17534788,The Artesian Restaurant,216,Ojo Caliente,"Ojo Caliente Mineral Springs Resort And Spa 50 Los Banos Rd, Ojo Caliente, NM 87549",Ojo Caliente,"Ojo Caliente, Ojo Caliente",-106.057666,36.313638,"American, International, Southwestern",40,Dollar($),No,No,No,No,3,3.6,Yellow,Good,30 +17061237,Cev_che Tapas Bar & Restaurant,216,Orlando,"125 West Church Street, Orlando, FL 32801",Church Street District,"Church Street District, Orlando",-81.381077,28.540432,"Spanish, Tapas",40,Dollar($),No,No,No,No,3,4.4,Green,Very Good,981 +17057397,'Ohana,216,Orlando,"1600 Seven Seas Drive, Lake Buena Vista, FL 32830",Disney World Area,"Disney World Area, Orlando",-81.585226,28.405437,Hawaiian,45,Dollar($),No,No,No,No,3,4.5,Dark Green,Excellent,1151 +17058534,Earl of Sandwich,216,Orlando,"1750 E Buena Vista Drive, Lake Buena Vista, FL 32830",Disney: Downtown Disney,"Disney: Downtown Disney, Orlando",-81.514608,28.372858,"American, Sandwich, Salad",35,Dollar($),No,No,No,No,3,4.7,Dark Green,Excellent,1341 +17060320,Raglan Road Irish Pub and Restaurant,216,Orlando,"1640 E Buena Vista Drive, Lake Buena Vista, FL 32830",Disney: Downtown Disney,"Disney: Downtown Disney, Orlando",-81.517725,28.371338,Irish,50,Dollar($),No,No,No,No,4,4.3,Green,Very Good,782 +17057925,Caf Tu Tu Tango,216,Orlando,"8625 International Drive, Orlando, FL 32819",I-Drive/Universal,"I-Drive/Universal, Orlando",-81.469986,28.440344,"New American, Tapas",40,Dollar($),No,No,No,No,3,4.6,Dark Green,Excellent,1293 +17060869,Texas de Brazil,216,Orlando,"5259 International Drive, Orlando, FL 32819",I-Drive/Universal,"I-Drive/Universal, Orlando",-81.4510725,28.4676808,"Brazilian, Steak",100,Dollar($),No,No,No,No,4,4.6,Dark Green,Excellent,2324 +17057591,Bahama Breeze Island Grille,216,Orlando,"8849 International Drive, Orlando, FL 32819",I-Drive/Universal,"I-Drive/Universal, Orlando",-81.471526,28.437065,Caribbean,45,Dollar($),No,No,No,No,3,4.3,Green,Very Good,910 +17059541,Maggiano's Little Italy,216,Orlando,"9101 International Drive,Orlando, FL 32819",I-Drive/Universal,"I-Drive/Universal, Orlando",-81.471447,28.433235,Italian,50,Dollar($),No,No,No,No,4,4.4,Green,Very Good,886 +17064266,Hawkers Asian Street Fare,216,Orlando,"1103 N Mills Avenue, Orlando, FL 32803",Mills 50,"Mills 50, Orlando",-81.364347,28.560505,"Asian, Thai",35,Dollar($),No,No,No,No,3,4.6,Dark Green,Excellent,1293 +17064405,Tako Cheena by Pom Pom,216,Orlando,"932 North Mills Avenue, Orlando, FL 32803",Mills 50,"Mills 50, Orlando",-81.364547,28.557845,"Asian, Latin American, Vegetarian",10,Dollar($),No,No,No,No,1,4.4,Green,Very Good,570 +17060516,Seasons 52 Fresh Grill,216,Orlando,"7700 West Sand Lake Road, Orlando, FL 32819",Restaurant Row,"Restaurant Row, Orlando",-81.487978,28.448175,American,60,Dollar($),No,No,No,No,4,4.4,Green,Very Good,1685 +17059012,Hollerbach's Willow Tree Caf,216,Orlando,"205 East 1st Street, Sanford, FL 32771",Sanford,"Sanford, Orlando",-81.266871,28.811653,German,40,Dollar($),No,No,No,No,3,4.8,Dark Green,Excellent,1699 +17061296,Pom Pom's Teahouse and Sandwicheria,216,Orlando,"67 North Bumby Avenue, Orlando, FL 32803",The Milk District,"The Milk District, Orlando",-81.351467,28.543571,"American, Sandwich, Tea",25,Dollar($),No,No,No,No,2,4.9,Dark Green,Excellent,1457 +17061205,Yellow Dog Eats,216,Orlando,"1236 Hempel Avenue,Gotha, FL 34786",Windermere,"Windermere, Orlando",-81.522987,28.527592,"American, BBQ, Sandwich",35,Dollar($),No,No,No,No,3,4.9,Dark Green,Excellent,1252 +17064031,Tibby's New Orleans Kitchen,216,Orlando,"2203 Aloma Avenue, Winter Park, FL 32792",Winter Park,"Winter Park, Orlando",-81.322631,28.601088,Cajun,25,Dollar($),No,No,No,No,2,4.7,Dark Green,Excellent,1412 +17066603,The Coop,216,Orlando,"610 W Morse Boulevard, Winter Park, FL 32789",Winter Park,"Winter Park, Orlando",-81.357219,28.597366,"Southern, Cajun, Soul Food",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,432 +17057797,Bosphorous Turkish Cuisine,216,Orlando,"108 S Park Ave, Winter Park, FL 32789",Winter Park,"Winter Park, Orlando",-81.3508344,28.5976271,"Mediterranean, Turkish",40,Dollar($),No,No,No,No,3,4.2,Green,Very Good,568 +17061253,Ethos Vegan Kitchen,216,Orlando,"601-B South New York Avenue, Winter Park, FL 32789",Winter Park,"Winter Park, Orlando",-81.352921,28.592857,"American, Breakfast, Vegetarian",25,Dollar($),No,No,No,No,2,4.4,Green,Very Good,797 +17059060,Hillstone,216,Orlando,"215 South Orlando Avenue, Winter Park, FL 32789",Winter Park,"Winter Park, Orlando",-81.36526,28.596682,,40,Dollar($),No,No,No,No,3,4.4,Green,Very Good,1158 +17061231,The Ravenous Pig,216,Orlando,"565 W Fairbanks Avenue, Winter Park, FL 32789",Winter Park,"Winter Park, Orlando",-81.356024,28.593297,Pub Food,40,Dollar($),No,No,No,No,3,4.4,Green,Very Good,1998 +16613649,Vivo Bar and Grill,14,Palm Cove,"49 Williams Esplanade, Palm Cove, QLD",Palm Cove,"Palm Cove, Palm Cove",145.670768,-16.748083,"Mediterranean, Seafood",30,Dollar($),No,No,No,No,3,4.4,Green,Very Good,381 +18255631,Pier 70,14,Paynesville,"70 The Esplanade, Paynesville",Paynesville,"Paynesville, Paynesville",147.7227832,-37.9194154,Modern Australian,120,Dollar($),No,No,No,No,4,2.6,Orange,Average,16 +16608483,DiVine,14,Penola,"39 Church St, Penola, SA",Penola,"Penola, Penola",140.837409,-37.379153,"Cafe, Coffee and Tea, Sandwich",20,Dollar($),No,No,No,No,2,3.4,Orange,Average,19 +17580453,Cactus Flower Cafe Navarre,216,Pensacola,"8725 Ortega Park Dr, Navarre, FL 32566",Navarre,"Navarre, Pensacola",-86.8573393,30.4025979,"Mexican, Southwestern, Tex-Mex",25,Dollar($),No,No,No,No,2,4.2,Green,Very Good,635 +17580142,McGuire's Irish Pub & Brewery,216,Pensacola,"600 E Gregory Street, Pensacola, FL 32502",Pensacola,"Pensacola, Pensacola",-87.2027,30.4179,"Burger, Bar Food, Steak",40,Dollar($),No,No,No,No,3,4.9,Dark Green,Excellent,2238 +17580160,New Yorker Deli & Pizzeria,216,Pensacola,"3001 E Cervantes St, Pensacola, FL 32503",Pensacola,"Pensacola, Pensacola",-87.1819,30.4251,"Italian, Pizza, Sandwich",10,Dollar($),No,No,No,No,1,4.6,Dark Green,Excellent,792 +17580349,Tu-Do Vietnamese Restaurant,216,Pensacola,"7130 N Davis Hwy, Pensacola, FL 32504",Pensacola,"Pensacola, Pensacola",-87.2216,30.4982,"Asian, Vietnamese",10,Dollar($),No,No,No,No,1,4.5,Dark Green,Excellent,828 +17580412,Carrabba's Italian Grill,216,Pensacola,"311 N 9th Avenue, Pensacola, FL 32502",Pensacola,"Pensacola, Pensacola",-87.205855,30.417318,"Italian, Pizza, Seafood",40,Dollar($),No,No,No,No,3,3.7,Yellow,Good,292 +17580590,Jaco's Bayfront Bar and Grille,216,Pensacola,"997 South Palafox, Pensacola, FL 32502",Pensacola,"Pensacola, Pensacola",-87.213274,30.403034,Tapas,25,Dollar($),No,No,No,No,2,3.9,Yellow,Good,502 +17580704,The Tin Cow,216,Pensacola,"102 S Palafox Pl, Pensacola, FL",Pensacola,"Pensacola, Pensacola",-87.2150874,30.4116106,"Burger, Bar Food",25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,559 +17579928,Cactus Flower Cafe,216,Pensacola,"3425 N 12th Ave, Pensacola, FL 32503",Pensacola,"Pensacola, Pensacola",-87.2080932,30.4473322,"Latin American, Mexican, Southwestern",25,Dollar($),No,No,No,No,2,4.2,Green,Very Good,1268 +17579992,Dharma Blue,216,Pensacola,"300 S Alcaniz Street, Pensacola, FL 32502",Pensacola,"Pensacola, Pensacola",-87.2092,30.4101,"Seafood, Sushi",40,Dollar($),No,No,No,No,3,4.1,Green,Very Good,669 +17580030,Global Grill,216,Pensacola,"27 South Palafox Pl, Pensacola, FL 32501",Pensacola,"Pensacola, Pensacola",-87.2153054,30.411878,"European, International, Tapas",40,Dollar($),No,No,No,No,3,4.4,Green,Very Good,900 +17580074,Ichiban,216,Pensacola,"5555 N Davis Hwy Ste I, Pensacola, FL 32503",Pensacola,"Pensacola, Pensacola",-87.2252,30.4767,"Japanese, Sushi",25,Dollar($),No,No,No,No,2,4.3,Green,Very Good,765 +17580020,The Fish House,216,Pensacola,"600 S Barracks St, Pensacola, FL 32502",Pensacola,"Pensacola, Pensacola",-87.211082,30.407358,"American, Seafood, Sushi",40,Dollar($),No,No,No,No,3,4,Green,Very Good,1270 +17580350,Tuscan Oven,216,Pensacola,"4801 N 9th Ave, Pensacola, FL 32503",Pensacola,"Pensacola, Pensacola",-87.214,30.4692,"Italian, Mediterranean, Pizza",25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,502 +17580408,Flounders Chowder House,216,Pensacola,"800 Quietwater Beach Rd, Pensacola Beach, FL 32561",Pensacola Beach,"Pensacola Beach, Pensacola",-87.143,30.3359,Seafood,40,Dollar($),No,No,No,No,3,3.9,Yellow,Good,724 +17579653,Hemingway's Island Grill,216,Pensacola,"400 Quietwater Beach Rd, Pensacola Beach, FL 32561",Pensacola Beach,"Pensacola Beach, Pensacola",-87.142602,30.335521,"Caribbean, Seafood, Steak",40,Dollar($),No,No,No,No,3,3.5,Yellow,Good,479 +17580476,Native Cafe,216,Pensacola,"45 A Via De Luna Dr, Pensacola Beach, FL 32561",Pensacola Beach,"Pensacola Beach, Pensacola",-87.132932,30.334776,"Breakfast, Burger",25,Dollar($),No,No,No,No,2,4.2,Green,Very Good,591 +17580422,Peg Leg Pete's,216,Pensacola,"1010 Fort Pickens Rd, Pensacola Beach, FL 32561",Pensacola Beach,"Pensacola Beach, Pensacola",-87.164376,30.327864,"Burger, Sandwich, Seafood",40,Dollar($),No,No,No,No,3,4.4,Green,Very Good,1408 +17580539,The Grand Marlin,216,Pensacola,"400 Pensacola Beach Boulevard, Pensacola Beach, FL 32561",Pensacola Beach,"Pensacola Beach, Pensacola",-87.149178,30.34262,"Caribbean, Seafood",40,Dollar($),No,No,No,No,3,4.3,Green,Very Good,905 +17580511,Original Georgios Authentic Greek Food,216,Pensacola,"13310 Merilla Street, Pensacola, FL 32507",Perdido Key,"Perdido Key, Pensacola",-87.4218962,30.3199824,Greek,10,Dollar($),No,No,No,No,1,4.7,Dark Green,Excellent,816 +17580021,Fisherman's Corner,216,Pensacola,"13486 Perdido Key Dr, Pensacola, FL 32507",Perdido Key,"Perdido Key, Pensacola",-87.427707,30.308468,"Sandwich, Seafood, Cajun",40,Dollar($),No,No,No,No,3,4.4,Green,Very Good,747 +16604370,Mad Cowes Cafe,14,Phillip Island,"4/17 The Esplanade, Cowes, VIC",Phillip Island,"Phillip Island, Phillip Island",145.237813,-38.448307,"Breakfast, Coffee and Tea, Modern Australian",20,Dollar($),No,No,No,No,2,3.7,Yellow,Good,351 +17582467,Rupes Burgers,216,Pocatello,"302 NE Main St, Blackfoot, ID 83221",Blackfoot,"Blackfoot, Pocatello",-112.3415,43.1903,"Burger, Fast Food",10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,104 +17582668,Texas Roadhouse,216,Pocatello,"560 Bullock Street, Pocatello, ID 83202",Chubbuck,"Chubbuck, Pocatello",-112.461326,42.910518,"American, BBQ, Steak",45,Dollar($),No,No,No,No,3,3.5,Yellow,Good,83 +17582498,Riverwalk Cafe,216,Pocatello,"695 E Main St, Lava Hot Springs, ID 83246",Lava Hot Springs,"Lava Hot Springs, Pocatello",-112.0132,42.62,"Asian, Thai",10,Dollar($),No,No,No,No,1,3.6,Yellow,Good,91 +17582499,Royal Hotel,216,Pocatello,"11 E Main St, Lava Hot Springs, ID 83246",Lava Hot Springs,"Lava Hot Springs, Pocatello",-112.0127,42.6192,"Pizza, Bar Food",0,Dollar($),No,No,No,No,1,3.6,Yellow,Good,59 +17582522,Buddy's Italian Restaurant,216,Pocatello,"626 E Lewis St, Pocatello, ID 83201",Pocatello,"Pocatello, Pocatello",-112.4423,42.8661,"Italian, Pizza, Sandwich",40,Dollar($),No,No,No,No,3,3.7,Yellow,Good,222 +17582524,Butterburrs,216,Pocatello,"917 Yellowstone Avenue, Pocatello, ID 83201",Pocatello,"Pocatello, Pocatello",-112.4516,42.8919,"American, Breakfast",30,Dollar($),No,No,No,No,3,3.6,Yellow,Good,121 +17582527,Chang Garden,216,Pocatello,"1000 Pocatello Creek Rd Ste W2, Pocatello, ID 83201",Pocatello,"Pocatello, Pocatello",-112.441,42.8928,Chinese,10,Dollar($),No,No,No,No,1,3.5,Yellow,Good,93 +17582551,Fifth Street Bagelry,216,Pocatello,"559 S 5TH Ave, Pocatello, ID 83201",Pocatello,"Pocatello, Pocatello",-112.4397,42.8631,"Coffee and Tea, Sandwich",10,Dollar($),No,No,No,No,1,3.8,Yellow,Good,136 +17582558,Goody's Deli,216,Pocatello,"905 S 5th Ave, Pocatello, ID 83201",Pocatello,"Pocatello, Pocatello",-112.4365,42.8604,"Pizza, Sandwich",10,Dollar($),No,No,No,No,1,3.8,Yellow,Good,160 +17582560,Grecian Key Restaurant,216,Pocatello,"314 N Main St, Pocatello, ID 83204",Pocatello,"Pocatello, Pocatello",-112.4524,42.8639,"American, Greek",25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,152 +17582677,Outer Limits Fun Zone,216,Pocatello,"1800 Garrett Way, Pocatello, ID 83201",Pocatello,"Pocatello, Pocatello",-112.459988,42.878077,"Burger, Pizza, Sandwich",10,Dollar($),No,No,No,No,1,3.5,Yellow,Good,57 +17582670,Portneuf Valley Brewing,216,Pocatello,"615 South 1st Avenue, ID 83201",Pocatello,"Pocatello, Pocatello",-112.443213,42.860024,"American, Pizza",25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,191 +17582625,Sandpiper Restaurant & Lounge,216,Pocatello,"1400 Bench Rd, Pocatello, ID 83201",Pocatello,"Pocatello, Pocatello",-112.432,42.9012,"American, Seafood, Steak",40,Dollar($),No,No,No,No,3,3.6,Yellow,Good,85 +17582627,Senor Iguanas,216,Pocatello,"961 Hiline Rd, Pocatello, ID 83201",Pocatello,"Pocatello, Pocatello",-112.4433,42.8942,Mexican,0,Dollar($),No,No,No,No,1,3.6,Yellow,Good,108 +17582700,Sushi Family,216,Pocatello,"415 Yellowstone Ave, Pocatello, ID 83201",Pocatello,"Pocatello, Pocatello",-112.452013,42.88245,"Asian, Sushi, Vegetarian",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,132 +17582664,Taste of India Nepal,216,Pocatello,"330 N Main Street, Pocatello, ID 83204",Pocatello,"Pocatello, Pocatello",-112.45253,42.863969,"Indian, International, Vegetarian",25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,141 +17582682,Thai Paradise,216,Pocatello,"140 S. Main, Pocatello, ID 83204",Pocatello,"Pocatello, Pocatello",-112.450106,42.861871,"Desserts, Thai",25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,162 +17582669,The Bridge,216,Pocatello,"815 S 1st Street, Pocatello, ID 83201",Pocatello,"Pocatello, Pocatello",-112.4413856,42.8585987,New American,40,Dollar($),No,No,No,No,3,3.6,Yellow,Good,144 +18491935,Nosh Mahal,216,Pocatello,"303 E Alameda Road, ID 83201",Pocatello,"Pocatello, Pocatello",-112.44853,42.891174,"Indian, Persian",25,Dollar($),No,No,No,No,2,0,White,Not rated,1 +17582546,El Herradero,216,Pocatello,"123 Jefferson Ave, Pocatello, ID 83201",Pocatello,"Pocatello, Pocatello",-112.4419,42.8774,Mexican,10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,365 +17629582,Barrett Junction Cafe,216,Potrero,"1020 Barrett Lake Rd, Dulzura, CA 91917",Potrero,"Potrero, Potrero",-116.704731,32.613431,"American, BBQ, Burger",25,Dollar($),No,No,No,No,2,3.3,Orange,Average,9 +17211719,Blue Point Grill,216,Princeton,"258 Nassau St, Princeton, NJ 08542",Princeton,"Princeton, Princeton",-74.651139,40.352385,Seafood,70,Dollar($),No,No,No,No,4,4,Green,Very Good,542 +17144717,Giovanni's Shrimp Truck,216,Rest of Hawaii,"56-505 Kamehameha Hwy, Kahuku, HI 96731",Kahuku,"Kahuku, Rest of Hawaii",-157.948486,21.677078,Seafood,25,Dollar($),No,No,No,No,2,4.5,Dark Green,Excellent,691 +17143970,Kona Brewing Company,216,Rest of Hawaii,"75-5629 Kuakini Highway, Kailua Kona, HI 96740",Kailua Kona,"Kailua Kona, Rest of Hawaii",-155.997362,19.642752,"American, Pizza, Bar Food",35,Dollar($),No,No,No,No,3,4.7,Dark Green,Excellent,764 +17142698,Leonard's Bakery,216,Rest of Hawaii,"933 Kapahulu Ave, Honolulu, HI 96816",Kaimuki,"Kaimuki, Rest of Hawaii",-157.813432,21.284586,,10,Dollar($),No,No,No,No,1,4.7,Dark Green,Excellent,707 +17144991,Coconuts Fish Cafe,216,Rest of Hawaii,"1279 S Kihei Road, Kihei, HI 96753",Kihei,"Kihei, Rest of Hawaii",-156.455284,20.748838,Seafood,30,Dollar($),No,No,No,No,3,4.5,Dark Green,Excellent,487 +17142519,Kihei Caffe,216,Rest of Hawaii,"1945 S Kihei Road, Kihei, HI 96753",Kihei,"Kihei, Rest of Hawaii",-156.451847,20.731487,"American, Hawaiian",10,Dollar($),No,No,No,No,1,4.5,Dark Green,Excellent,695 +17145408,Monkeypod Kitchen by Merriman,216,Rest of Hawaii,"10 Wailea Gateway Place, Unit B-201 Kihei, Hawaii, HI 96753",Kihei,"Kihei, Rest of Hawaii",-156.4309473,20.6883746,Burger,40,Dollar($),No,No,No,No,3,4.2,Green,Very Good,485 +17143336,Sansei Seafood Restaurant & Sushi Bar,216,Rest of Hawaii,"1881 S Kihei Rd, Kihei, HI 96753",Kihei,"Kihei, Rest of Hawaii",-156.452556,20.733554,"Japanese, Seafood, Sushi",40,Dollar($),No,No,No,No,3,4.2,Green,Very Good,807 +17145077,Star Noodle,216,Rest of Hawaii,"286 Kupuohi St, Lahaina, HI 96761",Lahaina,"Lahaina, Rest of Hawaii",-156.674835,20.885226,Asian,10,Dollar($),No,No,No,No,1,4.6,Dark Green,Excellent,723 +17141447,Aloha Mixed Plate,216,Rest of Hawaii,"1285 Front St, Lahaina, HI 96761",Lahaina,"Lahaina, Rest of Hawaii",-156.684967,20.886564,"Asian, Breakfast, Hawaiian",10,Dollar($),No,No,No,No,1,4.2,Green,Very Good,874 +17142096,Gazebo,216,Rest of Hawaii,"5315 Lower Honoapiilani Rd, Lahaina, HI 96761",Lahaina,"Lahaina, Rest of Hawaii",-156.667037,20.992316,"Breakfast, Burger",25,Dollar($),No,No,No,No,2,4.4,Green,Very Good,552 +17142297,Hula Grill,216,Rest of Hawaii,"2435 Kaanapali Pkwy, Lahaina, HI 96761",Lahaina,"Lahaina, Rest of Hawaii",-156.693821,20.921347,"Hawaiian, Seafood, Steak",40,Dollar($),No,No,No,No,3,4.3,Green,Very Good,1056 +17142535,Kimo's,216,Rest of Hawaii,"845 Front St, Lahaina, HI 96761",Lahaina,"Lahaina, Rest of Hawaii",-156.680666,20.876127,"Hawaiian, Seafood, Steak",40,Dollar($),No,No,No,No,3,4.3,Green,Very Good,707 +17142792,Mama's Fish House,216,Rest of Hawaii,"799 Poho Pl, Paia, HI 96779",Paia,"Paia, Rest of Hawaii",-156.366445,20.929622,"Hawaiian, Seafood",70,Dollar($),No,No,No,No,4,4.9,Dark Green,Excellent,1343 +17145495,Marukame Udon,216,Rest of Hawaii,"2310 Kuhio Avenue, Honolulu, HI 96815",Waikiki,"Waikiki, Rest of Hawaii",-157.825979,21.279476,Japanese,10,Dollar($),No,No,No,No,1,4.9,Dark Green,Excellent,602 +17143950,Yard House,216,Rest of Hawaii,"226 Lewers St, Honolulu, HI 96815",Waikiki,"Waikiki, Rest of Hawaii",-157.8312476,21.2794952,"American, Asian, Burger",40,Dollar($),No,No,No,No,3,4.6,Dark Green,Excellent,1078 +17142747,Lulu's Waikiki,216,Rest of Hawaii,"2586 Kalakaua Ave, Honolulu, HI 96815",Waikiki,"Waikiki, Rest of Hawaii",-157.822716,21.271826,American,25,Dollar($),No,No,No,No,2,3.9,Yellow,Good,232 +17141990,Duke's Waikiki,216,Rest of Hawaii,"2335 Kalakaua Ave, Honolulu, HI 96815",Waikiki,"Waikiki, Rest of Hawaii",-157.827196,21.277583,"Hawaiian, Seafood, Steak",70,Dollar($),No,No,No,No,4,4.4,Green,Very Good,1492 +17144732,Eggs 'n Things,216,Rest of Hawaii,"343 Saratoga Road, Honolulu, HI 96815",Waikiki,"Waikiki, Rest of Hawaii",-157.831538,21.280663,Breakfast,10,Dollar($),No,No,No,No,1,4,Green,Very Good,535 +17143282,Roy's,216,Rest of Hawaii,"226 Lewers St, Honolulu, HI 96815",Waikiki,"Waikiki, Rest of Hawaii",-157.831176,21.279154,"Asian, European, Seafood",70,Dollar($),No,No,No,No,4,4.2,Green,Very Good,531 +17143705,Wailana Coffee House,216,Rest of Hawaii,"1860 Ala Moana Blvd, Honolulu, HI 96815",Waikiki,"Waikiki, Rest of Hawaii",-157.836031,21.285396,"American, Breakfast, Hawaiian",25,Dollar($),No,No,No,No,2,4.2,Green,Very Good,694 +17615915,The Lady & Sons,216,Savannah,"102 W Congress St, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0954,32.0804,Southern,40,Dollar($),No,No,No,No,3,3.3,Orange,Average,1201 +17616487,Green Truck Pub,216,Savannah,"2430 Habersham Street, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.096647,32.052858,Burger,40,Dollar($),No,No,No,No,3,4.7,Dark Green,Excellent,906 +17615924,Leopold's Ice Cream,216,Savannah,"212 E Broughton Street, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0894,32.0785,"Desserts, Sandwich, Ice Cream",10,Dollar($),No,No,No,No,1,4.6,Dark Green,Excellent,880 +17615979,Mrs. Wilkes' Dining Room,216,Savannah,"107 W Jones St, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0955,32.0727,"American, Southern",40,Dollar($),No,No,No,No,3,4.5,Dark Green,Excellent,1014 +17616266,Zunzi's,216,Savannah,"108 E York Street, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0911,32.0775,"International, Mediterranean, Sandwich",25,Dollar($),No,No,No,No,2,4.5,Dark Green,Excellent,796 +17615976,Moon River Brewing Company,216,Savannah,"21 W Bay St, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0916,32.0809,"American, Bar Food, Sandwich",25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,747 +17616025,Pirates' House Restaurant,216,Savannah,"20 E Broad St, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0844,32.0782,"American, Seafood, Steak",40,Dollar($),No,No,No,No,3,3.8,Yellow,Good,566 +17615597,B. Matthew's Eatery,216,Savannah,"325 E Bay St, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0875,32.0798,"American, Breakfast",25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,683 +17615740,Crystal Beer Parlor,216,Savannah,"301 W Jones St, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0979,32.0735,"American, Bar Food",25,Dollar($),No,No,No,No,2,4.4,Green,Very Good,690 +17616203,Goose Feathers Cafe and Bakery,216,Savannah,"39 Barnard St, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0941,32.0801,"Breakfast, Vegetarian",10,Dollar($),No,No,No,No,1,4.2,Green,Very Good,680 +17616590,Henry's,216,Savannah,"28 Drayton St, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0905213,32.0794767,"American, Breakfast",10,Dollar($),No,No,No,No,1,4.1,Green,Very Good,287 +17615855,Huey's On The River,216,Savannah,"115 E River St, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0897,32.0812,"Breakfast, Cajun",40,Dollar($),No,No,No,No,3,4.1,Green,Very Good,802 +17616348,J. Christopher's,216,Savannah,"122 E. Liberty, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.091482,32.074495,"Breakfast, Diner, Sandwich",25,Dollar($),No,No,No,No,2,4.3,Green,Very Good,710 +17616368,Lulu's Chocolate Bar,216,Savannah,"42 MLK Jr. Blvd, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.097051,32.080742,"Coffee and Tea, Desserts",10,Dollar($),No,No,No,No,1,4.3,Green,Very Good,456 +17616400,Rocks on the River,216,Savannah,"102 West Bay St., Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.092484,32.081394,"Pizza, Seafood, Steak",70,Dollar($),No,No,No,No,4,4,Green,Very Good,687 +17616076,SOHO South Cafe,216,Savannah,"12 W Liberty St, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0939,32.0747,"Cafe, Sandwich, Southern",25,Dollar($),No,No,No,No,2,4.3,Green,Very Good,719 +17616205,The Olde Pink House,216,Savannah,"23 Abercorn St, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0897,32.0798,"American, Seafood, Southern",70,Dollar($),No,No,No,No,4,4.4,Green,Very Good,1803 +17616222,Vic's On The River,216,Savannah,"26 E Bay St, Savannah, GA 31401",Savannah,"Savannah, Savannah",-81.0908,32.0809,American,70,Dollar($),No,No,No,No,4,4.1,Green,Very Good,558 +17616295,The Crab Shack,216,Savannah,"40 Estill Hammock Rd, Tybee Island, GA 31328",Tybee Island,"Tybee Island, Savannah",-80.865909,32.011689,Seafood,40,Dollar($),No,No,No,No,3,3.8,Yellow,Good,883 +17616465,Tybee Island Social Club,216,Savannah,"1311 Butler Ave, Tybee Island, GA 31328",Tybee Island,"Tybee Island, Savannah",-80.848297,31.99581,,10,Dollar($),No,No,No,No,1,3.9,Yellow,Good,309 +18483372,Sky On 57,184,Singapore,"10 Bayfront Avenue, 57 Marina Bay Sands 018956","Bayfront Avenue, Downtown Core","Bayfront Avenue, Downtown Core, Singapore",103.8600048,1.2826608,"Chinese, Continental, Singaporean",300,Dollar($),No,No,No,No,4,3.4,Orange,Average,34 +18484349,Cut By Wolfgang Puck,184,Singapore,"2 Bayfront Avenue, B1-71 Marina Bay Sands 018972","Bayfront Subzone, Downtown Core","Bayfront Subzone, Downtown Core, Singapore",103.8594222,1.285476931,"American, Steak",270,Dollar($),No,No,No,No,4,4,Green,Very Good,33 +18496057,Restaurant Andre,184,Singapore,41 Bukit Pasoh Road 089855,"Cantonment Road, Outram","Cantonment Road, Outram, Singapore",103.8403602,1.279419756,"French, Mediterranean, European",500,Dollar($),No,No,No,No,4,3.8,Yellow,Good,33 +18483389,Potato Head Folk,184,Singapore,36 Keong Saik Road 089143,"Chinatown, Outram","Chinatown, Outram, Singapore",103.8416688,1.280502991,American,80,Dollar($),No,No,No,No,4,3.1,Orange,Average,34 +18483222,Jaan,184,Singapore,"2 Stamford Road, Level 70 Equinox Complex 178882","City Hall, Downtown Core","City Hall, Downtown Core, Singapore",103.8536048,1.293220698,French,430,Dollar($),No,No,No,No,4,3.8,Yellow,Good,35 +18483085,Rhubarb Le Restaurant,184,Singapore,"3 Duxton Hill, Duxton 089589","Duxton Hill, Outram","Duxton Hill, Outram, Singapore",103.8430222,1.27944363,French,315,Dollar($),No,No,No,No,4,3.9,Yellow,Good,33 +18484423,Al'frank Cookies,184,Singapore,12 Haji Lane 189205,"Haji Lane, Rochor","Haji Lane, Rochor, Singapore",103.859422,1.300404333,Bakery,20,Dollar($),No,No,No,No,2,4.2,Green,Very Good,29 +18483714,Fratini La Trattoria,184,Singapore,"10 Greenwood Avenue, Hillcrest Park 289201","Hillcrest, Bukit Timah","Hillcrest, Bukit Timah, Singapore",103.8070809,1.331128397,Italian,100,Dollar($),No,No,No,No,4,4.1,Green,Very Good,35 +18485469,Boufe Boutique Cafe,184,Singapore,"308 Tanglin Road,Phoenix Park #01-01 247974","Kay Siang Road, Tanglin","Kay Siang Road, Tanglin, Singapore",103.8146178,1.29782554,"Italian, French, Bakery, Cafe",50,Dollar($),No,No,No,No,3,3.2,Orange,Average,29 +18479690,The Refinery Singapore,184,Singapore,"115 King George Avenue, #01-02 Ann Chuan Industrial Building 208561","Lavender, Kallang","Lavender, Kallang, Singapore",103.8621195,1.310668316,"American, Japanese, Singaporean",80,Dollar($),No,No,No,No,4,3.2,Orange,Average,30 +18483224,Chye Seng Huat Hardware,184,Singapore,150 Tyrwhitt Road 207563,"Lavender, Kallang","Lavender, Kallang, Singapore",103.8604162,1.311550709,Cafe,40,Dollar($),No,No,No,No,3,3.7,Yellow,Good,33 +18493989,Makansutra Gluttons Bay,184,Singapore,"803 Raffles Avenue, #01-15 Esplanade Mall 039802","Marina Centre, Downtown Core","Marina Centre, Downtown Core, Singapore",103.8558665,1.289761964,"Singaporean, Chinese, Seafood, Malay, Indian",30,Dollar($),No,No,No,No,3,3,Orange,Average,25 +18484464,Colony,184,Singapore,"7 Raffles Avenue, Ritz-carlton Millenia Singapore 039799","Marina Centre, Downtown Core","Marina Centre, Downtown Core, Singapore",103.859955,1.2905805,"Asian, Continental, Seafood",220,Dollar($),No,No,No,No,4,3.8,Yellow,Good,30 +18483051,Summer Pavilion,184,Singapore,"The Ritz-Carlton, 7 Raffles Avenue, Millenia Singapore, 039799","Marina Centre, Downtown Core","Marina Centre, Downtown Core, Singapore",103.8601766,1.290800881,"Chinese, Seafood, Cantonese, Dim Sum",300,Dollar($),No,No,No,No,4,3.9,Yellow,Good,34 +18482983,The Lokal,184,Singapore,136 Neil Road 088865,"Neil Road, Outram","Neil Road, Outram, Singapore",103.840921,1.278373182,"Singaporean, Australian, German",60,Dollar($),No,No,No,No,4,3.1,Orange,Average,33 +18479742,I Am,184,Singapore,"674 North Bridge Road, #01-01 Haji Lane 188804","North Bridge Road, Rochor","North Bridge Road, Rochor, Singapore",103.8584296,1.301707168,"Western, Fusion, Fast Food",60,Dollar($),No,No,No,No,4,3.2,Orange,Average,32 +18482938,Super Loco,184,Singapore,"The Quayside 60 Roberston Quay #01-13 238252","Robertson Quay, Singapore River","Robertson Quay, Singapore River, Singapore",103.839165,1.290083898,"American, Mexican",95,Dollar($),No,No,No,No,4,3.2,Orange,Average,30 +18483082,Artistry,184,Singapore,17 Jalan Pinang 199149,"Sungai Pinang, Rochor","Sungai Pinang, Rochor, Singapore",103.8581813,1.303034648,"American, Bakery, European, Burger, Fusion",50,Dollar($),No,No,No,No,3,3.8,Yellow,Good,28 +18483446,Bitters & Love,184,Singapore,118 Telok Ayer Street 068587,"Telok Ayer Street, Outram","Telok Ayer Street, Outram, Singapore",103.8482541,1.28197,Finger Food,40,Dollar($),No,No,No,No,3,3.9,Yellow,Good,35 +18483252,Artichoke Cafe,184,Singapore,"161 Middle Road, Sculpture Square 188978","Victoria, Rochor","Victoria, Rochor, Singapore",103.8519943,1.299707726,"Cafe, Spanish, Turkish, Greek",75,Dollar($),No,No,No,No,4,3.2,Orange,Average,33 +17621616,Archie's Waeside,216,Sioux City,"224 4th Ave NE, Le Mars, IA 51031",Le Mars,"Le Mars, Sioux City",-96.1608,42.7956,"Burger, Seafood, Steak",40,Dollar($),No,No,No,No,3,3.7,Yellow,Good,100 +17621696,Bob Roe's Pizza,216,Sioux City,"2320 Transit Ave, Sioux City, IA 51106",Sioux City,"Sioux City, Sioux City",-96.379,42.4765,"American, Pizza, Bar Food",10,Dollar($),No,No,No,No,1,3.6,Yellow,Good,92 +17621744,Da Kao Restaurant,216,Sioux City,"800 W 7th St, Sioux City, IA 51103",Sioux City,"Sioux City, Sioux City",-96.4173,42.5026,"Asian, Vegetarian, Vietnamese",10,Dollar($),No,No,No,No,1,3.8,Yellow,Good,182 +17621759,Famous Dave's,216,Sioux City,"201 Pierce St, Sioux City, IA 51101",Sioux City,"Sioux City, Sioux City",-96.4051,42.492,BBQ,10,Dollar($),No,No,No,No,1,3.6,Yellow,Good,76 +17621763,Fuji Bay Japanese Restaurant,216,Sioux City,"513 6th St, Sioux City, IA 51101",Sioux City,"Sioux City, Sioux City",-96.4046,42.4965,"Japanese, Sushi",40,Dollar($),No,No,No,No,3,3.7,Yellow,Good,129 +17621780,HuHot Mongolian Grill,216,Sioux City,"4229 S Lakeport St, Sioux City, IA 51106",Sioux City,"Sioux City, Sioux City",-96.3479,42.4391,"Asian, Chinese",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,94 +17621781,Hunan Palace,216,Sioux City,"3523 Singing Hills Blvd, Sioux City, IA 51106",Sioux City,"Sioux City, Sioux City",-96.362,42.4375,Chinese,25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,129 +17621788,Jerry's Pizza,216,Sioux City,"1417 Morningside Ave, Sioux City, IA 51106",Sioux City,"Sioux City, Sioux City",-96.3596,42.4764,Pizza,25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,178 +17621793,Jim's Burgers,216,Sioux City,"800 Pierce St, Sioux City, IA 51101",Sioux City,"Sioux City, Sioux City",-96.4048,42.4985,Burger,10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,97 +17621796,Johnnie Mars,216,Sioux City,"2401 5th St, Sioux City, IA 51101",Sioux City,"Sioux City, Sioux City",-96.378049,42.495534,"American, Desserts, Diner",10,Dollar($),No,No,No,No,1,3.9,Yellow,Good,161 +17621831,Miles Inn,216,Sioux City,"2622 Leech Ave, Sioux City, IA 51106",Sioux City,"Sioux City, Sioux City",-96.3755,42.4876,American,10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,122 +17621832,Milwaukee Wiener House,216,Sioux City,"301 Douglas St, Sioux City, IA 51101",Sioux City,"Sioux City, Sioux City",-96.4063904,42.4930681,"American, Fast Food",10,Dollar($),No,No,No,No,1,3.8,Yellow,Good,195 +17621833,Minerva's Food & Cocktails,216,Sioux City,"2945 Hamilton Blvd, Sioux City, IA 51104",Sioux City,"Sioux City, Sioux City",-96.418,42.5212,"American, Seafood, Steak",40,Dollar($),No,No,No,No,3,3.7,Yellow,Good,146 +17621834,Monterrey Mexican Restaurant,216,Sioux City,"3138 Singing Hills Blvd, Sioux City, IA 51106",Sioux City,"Sioux City, Sioux City",-96.3691,42.4351,Mexican,10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,117 +17621869,Rebos,216,Sioux City,"1107 4th St, Sioux City, IA 51101",Sioux City,"Sioux City, Sioux City",-96.3959487,42.4944454,"Caribbean, Mexican, Cajun",25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,187 +17621960,Tokyo Japanese Steakhouse & Sushi Bar,216,Sioux City,"4567 Southern Hills Drive, Sioux City, IA 51106",Sioux City,"Sioux City, Sioux City",-96.349464,42.440592,"Japanese, Steak, Sushi",40,Dollar($),No,No,No,No,3,3.9,Yellow,Good,239 +17621746,Diamond Thai Cuisine,216,Sioux City,"515 W 7th St, Sioux City, IA 51103",Sioux City,"Sioux City, Sioux City",-96.4136,42.5011,"Asian, Thai, Vegetarian",10,Dollar($),No,No,No,No,1,4,Green,Very Good,303 +17621755,El Fredo Pizza,216,Sioux City,"523 W 19th St, Sioux City, IA 51103",Sioux City,"Sioux City, Sioux City",-96.4204,42.5106,Pizza,40,Dollar($),No,No,No,No,3,4,Green,Very Good,280 +17621946,Trattoria Fresco,216,Sioux City,"416 Jackson St., Sioux City, IA 51101",Sioux City,"Sioux City, Sioux City",-96.4019631,42.4949153,Italian,25,Dollar($),No,No,No,No,2,4,Green,Very Good,271 +17621552,Kahill's Steak-Fish Chophouse,216,Sioux City,"385 E 4th St, South Sioux City, IA 68776",South Sioux City,"South Sioux City, Sioux City",-96.4092028,42.485608,"American, Seafood, Steak",70,Dollar($),No,No,No,No,4,3.5,Yellow,Good,58 +17096140,Rumba Island Bar & Grill,216,Tampa Bay,"1800 Gulf To Bay Blvd, Clearwater, FL 33765",Clearwater,"Clearwater, Tampa Bay",-82.762624,27.96076,"BBQ, Caribbean, Seafood",25,Dollar($),No,No,No,No,2,4.6,Dark Green,Excellent,1321 +17099925,Red Mesa Cantina,216,Tampa Bay,"128 3rd St S, St Petersburg, FL 33701",Downtown St Petersburg,"Downtown St Petersburg, Tampa Bay",-82.636924,27.770026,"Latin American, Mexican, Southwestern",25,Dollar($),No,No,No,No,2,4.6,Dark Green,Excellent,1629 +17092257,BellaBrava,216,Tampa Bay,"204 Beach Drive Northeast, St Petersburg, FL 33701",Downtown St Petersburg,"Downtown St Petersburg, Tampa Bay",-82.6329663,27.7737426,"American, Italian, Seafood",25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,921 +17092799,Ceviche Tapas Bar & Restaurant,216,Tampa Bay,"10 Beach Dr, St Petersburg, FL 33701",Downtown St Petersburg,"Downtown St Petersburg, Tampa Bay",-82.6333294,27.7711464,"Spanish, Tapas",25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,986 +17095222,The Moon Under Water,216,Tampa Bay,"332 Beach Dr NE, St Petersburg, FL 33701",Downtown St Petersburg,"Downtown St Petersburg, Tampa Bay",-82.632174,27.775462,"British, Bar Food, Sandwich",25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,1020 +17092293,Bern's Steak House,216,Tampa Bay,"1208 S Howard Ave, Tampa, FL 33606",Hyde Park,"Hyde Park, Tampa Bay",-82.482962,27.931516,"American, Desserts, Steak",70,Dollar($),No,No,No,No,4,4.7,Dark Green,Excellent,3157 +17102241,Boca Kitchen Bar Market,216,Tampa Bay,"901 W. Platt St., Tampa, FL 33606",Hyde Park,"Hyde Park, Tampa Bay",-82.46887,27.941942,Breakfast,40,Dollar($),No,No,No,No,3,3.9,Yellow,Good,665 +17102579,Edison: Food+Drink Lab,216,Tampa Bay,"912 W Kennedy Blvd, Tampa, FL 33606",Hyde Park,"Hyde Park, Tampa Bay",-82.469306,27.944244,International,70,Dollar($),No,No,No,No,4,3.9,Yellow,Good,373 +17092801,Ceviche Tapas Bar & Restaurant,216,Tampa Bay,"2500 W Azeele St, Tampa, FL 33609",Hyde Park,"Hyde Park, Tampa Bay",-82.4852372,27.9410382,"Breakfast, Spanish, Tapas",25,Dollar($),No,No,No,No,2,4.4,Green,Very Good,1007 +17093273,Daily Eats,216,Tampa Bay,"901 S Howard Avenue, Tampa, FL 33606",Hyde Park,"Hyde Park, Tampa Bay",-82.483124,27.935039,"American, Burger",25,Dollar($),No,No,No,No,2,4.4,Green,Very Good,803 +17096198,Salt Rock Grill,216,Tampa Bay,"19325 Gulf Blvd, Indian Shores, FL 33785",Indian Rocks/Indian Shores,"Indian Rocks/Indian Shores, Tampa Bay",-82.843253,27.848357,"American, Seafood, Steak",40,Dollar($),No,No,No,No,3,4.2,Green,Very Good,1363 +17095098,Mazzaro's Italian Market,216,Tampa Bay,"2909 22nd Ave N, St Petersburg, FL 33713",Kenwood,"Kenwood, Tampa Bay",-82.673621,27.792047,"Italian, Deli",10,Dollar($),No,No,No,No,1,4.9,Dark Green,Excellent,1424 +17093135,Conch Republic Grill,216,Tampa Bay,"16699 Gulf Blvd, North Redington Beach, FL 33708",Madeira Beach/Redington Beach,"Madeira Beach/Redington Beach, Tampa Bay",-82.820856,27.816086,"Sandwich, Seafood, Steak",40,Dollar($),No,No,No,No,3,4.5,Dark Green,Excellent,844 +17095236,Mr. Dunderbak's Biergarten and Marketplatz,216,Tampa Bay,"14929 Bruce B Downs Blvd, Tampa, FL 33612",New Tampa,"New Tampa, Tampa Bay",-82.41294,28.082909,"European, German",40,Dollar($),No,No,No,No,3,4.9,Dark Green,Excellent,1413 +17095979,Red Mesa Restaurant,216,Tampa Bay,"4912 4th St N, St Petersburg, FL 33703",Northeast St Petersburg,"Northeast St Petersburg, Tampa Bay",-82.638843,27.816848,"Breakfast, Mexican",40,Dollar($),No,No,No,No,3,4.5,Dark Green,Excellent,1203 +17099856,Datz,216,Tampa Bay,"2616 S Macdill Avenue, Tampa, FL 33629",Palma Ceia,"Palma Ceia, Tampa Bay",-82.4932815,27.9219315,"Desserts, Bar Food",40,Dollar($),No,No,No,No,3,4.7,Dark Green,Excellent,3074 +17100307,Ella's Americana Folk Art Cafe,216,Tampa Bay,"5119 N Nebraska Ave, Tampa, FL 33603",Seminole Heights,"Seminole Heights, Tampa Bay",-82.451041,27.993645,"International, Italian, Southern",40,Dollar($),No,No,No,No,3,4.8,Dark Green,Excellent,1715 +17093600,Taco Bus,216,Tampa Bay,"913 E Hillsborough Ave, Tampa, FL 33604",Seminole Heights,"Seminole Heights, Tampa Bay",-82.449897,27.995964,"Mexican, Vegetarian",10,Dollar($),No,No,No,No,1,4.5,Dark Green,Excellent,1868 +17100547,The Refinery,216,Tampa Bay,"5137 N. Florida Ave., Tampa, FL 33603",Seminole Heights,"Seminole Heights, Tampa Bay",-82.459339,27.99384,"Seafood, Steak",40,Dollar($),No,No,No,No,3,4,Green,Very Good,875 +17093124,Columbia Restaurant,216,Tampa Bay,"2117 E 7th Ave, Tampa, FL 33605",Ybor City,"Ybor City, Tampa Bay",-82.4351499,27.959884,"Cuban, Spanish",40,Dollar($),No,No,No,No,3,4.4,Green,Very Good,1746 +16608059,1918 Bistro & Grill,14,Tanunda,"94 Murray St, Tanunda, SA",Tanunda,"Tanunda, Tanunda",138.966064,-34.519619,"Modern Australian, Australian",30,Dollar($),No,No,No,No,3,4.4,Green,Very Good,339 +16605194,Pig and Whistle,14,Trentham East,"Pearsons Rd, Trentham East, VIC",Trentham East,"Trentham East, Trentham East",144.41272,-37.396942,Australian,20,Dollar($),No,No,No,No,2,4.1,Green,Very Good,87 +17678243,Buffalo Wild Wings,216,Valdosta,"1553 Baytree Rd., Valdosta, GA 31602",Valdosta,"Valdosta, Valdosta",-83.319123,30.846819,Bar Food,25,Dollar($),No,No,No,No,2,3.4,Orange,Average,98 +17678043,El Toreo Mexican Restaurant,216,Valdosta,"1713 Gornto Rd, Valdosta, GA 31601",Valdosta,"Valdosta, Valdosta",-83.3247,30.8426,Mexican,25,Dollar($),No,No,No,No,2,3.1,Orange,Average,83 +17677978,306 North Restaurant,216,Valdosta,"306 N Patterson St, Valdosta, GA 31601",Valdosta,"Valdosta, Valdosta",-83.2799,30.8332,"Seafood, Southern",40,Dollar($),No,No,No,No,3,3.9,Yellow,Good,231 +17677988,Austins Cattle Co,216,Valdosta,"2101 W Hill Ave, Valdosta, GA 31601",Valdosta,"Valdosta, Valdosta",-83.3170843,30.8164364,"Burger, Seafood, Steak",40,Dollar($),No,No,No,No,3,3.7,Yellow,Good,216 +17678231,Beijing Cafe,216,Valdosta,"1715 C Norman Drive, Valdosta, GA 31601",Valdosta,"Valdosta, Valdosta",-83.318554,30.841892,"Asian, Chinese, Thai",35,Dollar($),No,No,No,No,3,3.8,Yellow,Good,185 +17677990,Bleu Cafe,216,Valdosta,"125 N Patterson St, Valdosta, GA 31601",Valdosta,"Valdosta, Valdosta",-83.279,30.8308,"Pizza, Sandwich",25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,185 +17677991,Bleu Pub,216,Valdosta,"116 W Hill Ave, Valdosta, GA 31601",Valdosta,"Valdosta, Valdosta",-83.2792,30.8308,"Burger, Bar Food, Vegetarian",10,Dollar($),No,No,No,No,1,3.8,Yellow,Good,281 +17678307,Bubba Jax Crab Shack,216,Valdosta,"1700 W Hill Ave, Valdosta, GA 31601",Valdosta,"Valdosta, Valdosta",-83.3085736,30.8223548,"Fast Food, Seafood",40,Dollar($),No,No,No,No,3,3.7,Yellow,Good,137 +17678276,Cheddar's Scratch Kitchen,216,Valdosta,"270 Norman Drive, Valdosta, GA 31601",Valdosta,"Valdosta, Valdosta",-83.316402,30.824691,American,25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,209 +17678283,El Cazador,216,Valdosta,"1600 N. Ashley St., Valdosta, GA 31602",Valdosta,"Valdosta, Valdosta",-83.28078,30.850888,Mexican,10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,168 +17678222,Friends Grille and Bar,216,Valdosta,"3338-B Country Club Rd, GA 31605",Valdosta,"Valdosta, Valdosta",-83.29633,30.880146,"American, Southern",25,Dollar($),No,No,No,No,2,3.9,Yellow,Good,243 +17678055,Giulios Greek & Italian Restaurant,216,Valdosta,"105 E Ann St, Valdosta, GA 31601",Valdosta,"Valdosta, Valdosta",-83.2851,30.8433,"Greek, Italian",40,Dollar($),No,No,No,No,3,3.8,Yellow,Good,221 +17678326,La Jalisco Supermercato,216,Valdosta,"1300 N. Ashley St., Valdosta, GA 31601",Valdosta,"Valdosta, Valdosta",-83.281,30.8465,Mexican,10,Dollar($),No,No,No,No,1,3.5,Yellow,Good,46 +17678229,Masato Japanese,216,Valdosta,"1337 Baytree Rd, Valdosta, GA 31602",Valdosta,"Valdosta, Valdosta",-83.310343,30.846763,"Japanese, Sushi",25,Dollar($),No,No,No,No,2,3.9,Yellow,Good,262 +17678097,Mom & Dad's Italian Restaurant,216,Valdosta,"4143 N Valdosta Rd, Valdosta, GA 31602",Valdosta,"Valdosta, Valdosta",-83.3283,30.8971,Italian,25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,183 +17678216,Mori's Japanese Steakhouse & Sushi Bar,216,Valdosta,"1709 Norman Dr, Valdosta, GA 31601",Valdosta,"Valdosta, Valdosta",-83.318958,30.841547,"Japanese, Steak, Sushi",70,Dollar($),No,No,No,No,4,3.5,Yellow,Good,208 +17678233,Passage 2 India,216,Valdosta,"2910 N Ashley St Ste E, Valdosta, GA 31602",Valdosta,"Valdosta, Valdosta",-83.289338,30.87114,"Indian, Middle Eastern",25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,245 +17678148,Rodeo Mexican Restaurant,216,Valdosta,"2801 N Ashley St, Valdosta, GA 31602",Valdosta,"Valdosta, Valdosta",-83.2868,30.868,Mexican,25,Dollar($),No,No,No,No,2,3.8,Yellow,Good,199 +17678291,Steel Magnolias,216,Valdosta,"132 N. Patterson St, Valdosta, GA 31601",Valdosta,"Valdosta, Valdosta",-83.2796,30.8316,Southern,40,Dollar($),No,No,No,No,3,3.8,Yellow,Good,225 +17678218,Smok'n Pig B-B-Q,216,Valdosta,"4228 N Valdosta Rd, Valdosta, GA 31602",Valdosta,"Valdosta, Valdosta",-83.332796,30.897087,BBQ,25,Dollar($),No,No,No,No,2,4.1,Green,Very Good,575 +17558738,Blue House Cafe,216,Vernonia,"919 Bridge St, Vernonia, OR 97064",Vernonia,"Vernonia, Vernonia",-123.1954368,45.858667,"Coffee and Tea, Mediterranean",10,Dollar($),No,No,No,No,1,4.3,Green,Very Good,88 +16608209,Anchorage Cafe Restaurant Wine Bar,14,Victor Harbor,"21 Flinders Parade, Victor Harbor, SA",Victor Harbor,"Victor Harbor, Victor Harbor",138.624316,-35.5536609,"Coffee and Tea, Tapas, Australian",20,Dollar($),No,No,No,No,2,3.6,Yellow,Good,96 +16654702,Lake House Restaurant,37,Vineland Station,"3100 N Service Rd, Vineland Station, ON L0R2E0",Vineland Station,"Vineland Station, Vineland Station",-79.3791465,43.1868697,"Italian, Mediterranean, Pizza",70,Dollar($),No,No,No,No,4,4.3,Green,Very Good,204 +17697444,Masala Grill & Coffee House,216,Waterloo,"911 W 23rd St, Cedar Falls, IA 50613",Cedar Falls,"Cedar Falls, Waterloo",-92.456343,42.516908,"Indian, Middle Eastern",10,Dollar($),No,No,No,No,1,3.2,Orange,Average,18 +17696871,Brown Bottle The Cedar Falls,216,Waterloo,"1111 Center St, Cedar Falls, IA 50613",Cedar Falls,"Cedar Falls, Waterloo",-92.4507,42.5464,"Italian, Pizza, Vegetarian",25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,134 +17696891,Four Queens Dairy Cream,216,Waterloo,"1310 W 1st St, Cedar Falls, IA 50613",Cedar Falls,"Cedar Falls, Waterloo",-92.4599,42.5377,Desserts,10,Dollar($),No,No,No,No,1,3.9,Yellow,Good,190 +17696901,Hong Kong Chinese Restaurant,216,Waterloo,"6306 University Ave, Cedar Falls, IA 50613",Cedar Falls,"Cedar Falls, Waterloo",-92.4322,42.5133,Chinese,10,Dollar($),No,No,No,No,1,3.8,Yellow,Good,136 +17697384,HuHot Mongolian Grill,216,Waterloo,"6301 University Ave, Cedar Falls, IA 50613",Cedar Falls,"Cedar Falls, Waterloo",-92.432177,42.512646,"Asian, Chinese",25,Dollar($),No,No,No,No,2,3.7,Yellow,Good,113 +17697417,J's Homestyle Cooking,216,Waterloo,"1724 West 31st Street, Cedar Falls, IA 50613",Cedar Falls,"Cedar Falls, Waterloo",-92.466597,42.509472,"American, Breakfast",10,Dollar($),No,No,No,No,1,3.6,Yellow,Good,69 +17696918,Montage,216,Waterloo,"222 Main St, Cedar Falls, IA 50613",Cedar Falls,"Cedar Falls, Waterloo",-92.4453,42.5366,"American, Italian, Seafood",40,Dollar($),No,No,No,No,3,3.6,Yellow,Good,89 +17696920,Mulligan's Brick Oven Grill,216,Waterloo,"205 E 18th St, Cedar Falls, IA 50613",Cedar Falls,"Cedar Falls, Waterloo",-92.444,42.5219,"Burger, Pizza, Sandwich",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,80 +17697398,Sakura,216,Waterloo,"5719 university avenue, Cedar Falls, IA 50613",Cedar Falls,"Cedar Falls, Waterloo",-92.426215,42.51259,"Japanese, Sushi",40,Dollar($),No,No,No,No,3,3.8,Yellow,Good,175 +17697406,Scratch,216,Waterloo,"315 Main St, Cedar Falls, IA 50613",Cedar Falls,"Cedar Falls, Waterloo",-92.4457417,42.5354081,"Coffee and Tea, Desserts, Beverages",10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,136 +17696941,SOHO Sushi Bar & Deli,216,Waterloo,"119 Main St, Cedar Falls, IA 50613",Cedar Falls,"Cedar Falls, Waterloo",-92.4457,42.5375,"Sandwich, Sushi, Tapas",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,114 +17696955,Texas Roadhouse,216,Waterloo,"5715 University Ave, Cedar Falls, IA 50613",Cedar Falls,"Cedar Falls, Waterloo",-92.4291,42.5127,"American, BBQ, Steak",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,93 +17696957,Tony's La Pizzeria,216,Waterloo,"407 Main St, Cedar Falls, IA 50613",Cedar Falls,"Cedar Falls, Waterloo",-92.445723,42.53489,"Pizza, Sandwich",25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,89 +17697418,Chapala,216,Waterloo,"900 La Porte Road, Waterloo, IA 50702",Waterloo,"Waterloo, Waterloo",-92.323032,42.477281,Mexican,25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,69 +17697386,Galleria de Paco,216,Waterloo,"622 Commercial Street, Waterloo, IA 50701",Waterloo,"Waterloo, Waterloo",-92.339721,42.494908,American,40,Dollar($),No,No,No,No,3,3.6,Yellow,Good,86 +17697224,Golden China,216,Waterloo,"106 Brookridge Dr, IA 50702",Waterloo,"Waterloo, Waterloo",-92.356066,42.458979,Chinese,10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,73 +17697304,Rudy's Tacos,216,Waterloo,"2401 Falls Avenue, IA 50701",Waterloo,"Waterloo, Waterloo",-92.3772,42.499705,Mexican,25,Dollar($),No,No,No,No,2,3.6,Yellow,Good,104 +17697389,The Screaming Eagle,216,Waterloo,"228 E 4th St., Waterloo, IA 50703",Waterloo,"Waterloo, Waterloo",-92.335523,42.4984,"American, Bar Food",10,Dollar($),No,No,No,No,1,3.7,Yellow,Good,101 +17697424,The Thai Bowl,216,Waterloo,"624 Sycamore Street, Waterloo, IA 50703",Waterloo,"Waterloo, Waterloo",-92.335769,42.497919,Thai,10,Dollar($),No,No,No,No,1,3.5,Yellow,Good,58 +17697332,Tokyo Japanese Steak House,216,Waterloo,"1931 Sears Street, Waterloo, IA 50702",Waterloo,"Waterloo, Waterloo",-92.3234,42.46558,"Japanese, Steak, Sushi",25,Dollar($),No,No,No,No,2,3.9,Yellow,Good,156 +17694056,Theo Yianni's Authentic Greek Restaurant,216,Weirton,"322 American Way, Weirton, WV 26062",Weirton,"Weirton, Weirton",-80.529488,40.396043,"Burger, Greek, Sandwich",25,Dollar($),No,No,No,No,2,3.9,Yellow,Good,156 +17559793,Fishpatrick's Crabby Cafe,216,Winchester Bay,"196 Bayfront Loop, Winchester Bay, OR 97467",Winchester Bay,"Winchester Bay, Winchester Bay",-124.175346,43.678998,"Burger, Seafood, Steak",25,Dollar($),No,No,No,No,2,3.2,Orange,Average,16 +16668008,Arigato Sushi,37,Yorkton,"14 Second Ave North, Yorkton, SK S3N 1G1",Yorkton,"Yorkton, Yorkton",-102.4613173,51.2106824,Asian,25,Dollar($),No,No,No,No,2,3.3,Orange,Average,26 +18212135,Denny's,214,Abu Dhabi,"Abu Dhabi Mall, Tourist Club Area (Al Zahiyah), Abu Dhabi","Abu Dhabi Mall, Tourist Club Area (Al Zahiyah)","Abu Dhabi Mall, Tourist Club Area (Al Zahiyah), Abu Dhabi",54.38279729,24.49550307,American,190,Emirati Diram(AED),No,No,No,No,4,4.6,Dark Green,Excellent,207 +5704255,Famous Dave's Barbecue,214,Abu Dhabi,"Near The One, Level 3, Abu Dhabi Mall, Tourist Club Area (Al Zahiyah), Abu Dhabi","Abu Dhabi Mall, Tourist Club Area (Al Zahiyah)","Abu Dhabi Mall, Tourist Club Area (Al Zahiyah), Abu Dhabi",54.38294616,24.49569253,American,260,Emirati Diram(AED),No,Yes,No,No,4,4.6,Dark Green,Excellent,376 +5701978,Pizza Di Rocco,214,Abu Dhabi,"Near Corner of Salam and Al Falah Street (9th Street), Salam Street, Al Dhafrah, Abu Dhabi",Al Dhafrah,"Al Dhafrah, Abu Dhabi",54.38193094,24.48557932,"Italian, Pizza",150,Emirati Diram(AED),Yes,Yes,No,No,3,4.4,Green,Very Good,471 +5701729,Sofra Istanbul,214,Abu Dhabi,"Next to ADNOC Petrol Station, Muroor Road, Al Dhafrah, Abu Dhabi",Al Dhafrah,"Al Dhafrah, Abu Dhabi",54.37127855,24.47756501,"Turkish, Arabian, Middle Eastern",70,Emirati Diram(AED),No,No,No,No,2,4.3,Green,Very Good,224 +5704168,Salt,214,Abu Dhabi,"Inside Mushrif Park, Al Mushrif, Abu Dhabi",Al Mushrif,"Al Mushrif, Abu Dhabi",54.38080709,24.4543119,"Fast Food, Burger",100,Emirati Diram(AED),No,No,No,No,3,4.2,Green,Very Good,228 +18277098,Genghis Grill,214,Abu Dhabi,"Level 2, Al Wahda Mall New Extension, Al Wahda, Abu Dhabi","Al Wahda Mall, Al Wahda","Al Wahda Mall, Al Wahda, Abu Dhabi",54.37500816,24.47083582,Asian,180,Emirati Diram(AED),No,No,No,No,4,4.6,Dark Green,Excellent,81 +5701446,Olive Garden,214,Abu Dhabi,"Level 3, Al Wahda Mall Extension, Al Wahda, Abu Dhabi","Al Wahda Mall, Al Wahda","Al Wahda Mall, Al Wahda, Abu Dhabi",54.37332205,24.46936983,"Italian, Pizza",230,Emirati Diram(AED),No,No,No,No,4,4.1,Green,Very Good,422 +5700052,Cho Gao - Crowne Plaza Abu Dhabi,214,Abu Dhabi,"Crowne Plaza Abu Dhabi, Sheikh Hamdan Bin Mohammed Street, Al Markaziya, Abu Dhabi","Crowne Plaza Abu Dhabi, Al Markaziya","Crowne Plaza Abu Dhabi, Al Markaziya, Abu Dhabi",54.365694,24.491235,"Thai, Japanese, Chinese, Indonesian, Vietnamese",350,Emirati Diram(AED),Yes,Yes,No,No,4,4.4,Green,Very Good,246 +5702418,Gazebo,214,Abu Dhabi,"Ground Level, Next to E-Max, Dalma Mall, Mussafah Sanaiya, Abu Dhabi","Dalma Mall, Mussafah Sanaiya","Dalma Mall, Mussafah Sanaiya, Abu Dhabi",54.52412188,24.33421694,"Indian, North Indian, Mughlai, Biryani",120,Emirati Diram(AED),Yes,Yes,No,No,3,4,Green,Very Good,355 +5700386,Sangeetha Vegetarian Restaurant,214,Abu Dhabi,"Opposite Cristal Hotel, Behind KM Trading, Electra Street, Madinat Zayed, Abu Dhabi",Madinat Zayed,"Madinat Zayed, Abu Dhabi",54.36377607,24.48525254,"Indian, South Indian",60,Emirati Diram(AED),No,Yes,No,No,2,3.6,Yellow,Good,268 +5704202,Hot Palayok,214,Abu Dhabi,"Food Court, Level 2, Madinat Zayed Shopping Centre, Madinat Zayed, Abu Dhabi","Madinat Zayed Shopping Centre, Madinat Zayed ","Madinat Zayed Shopping Centre, Madinat Zayed , Abu Dhabi",54.36615754,24.48277094,"Filipino, Japanese, Asian",100,Emirati Diram(AED),No,Yes,No,No,3,4.5,Dark Green,Excellent,162 +5701052,Applebee's,214,Abu Dhabi,"Level 3, Mushrif Mall, Al Mushrif, Abu Dhabi","Mushrif Mall, Al Mushrif","Mushrif Mall, Al Mushrif, Abu Dhabi",54.41314146,24.43409939,"American, Mexican, Seafood",250,Emirati Diram(AED),No,Yes,No,No,4,4,Green,Very Good,205 +5704118,Tikka Tonight,214,Abu Dhabi,"Behind RAK Bank, Sanaiya ME11, Mussafah Sanaiya, Abu Dhabi",Mussafah Sanaiya,"Mussafah Sanaiya, Abu Dhabi",54.51003961,24.36312973,"Pakistani, Afghani, Indian, Hyderabadi",50,Emirati Diram(AED),No,Yes,No,No,2,4,Green,Very Good,277 +5701548,Bait El Khetyar,214,Abu Dhabi,"Al Najda Street, Najda, Abu Dhabi",Najda,"Najda, Abu Dhabi",54.37143378,24.48841145,"Lebanese, Arabian, Middle Eastern",70,Emirati Diram(AED),No,Yes,No,No,2,4,Green,Very Good,380 +18235425,Indian By Nature,214,Abu Dhabi,"Shop 2-3, Tolico Building, Behind Lebanese Roastery, Near National Hospital, Najda, Abu Dhabi",Najda,"Najda, Abu Dhabi",54.37324997,24.48959102,Indian,80,Emirati Diram(AED),Yes,Yes,No,No,3,4.3,Green,Very Good,180 +5702615,Via Delhi,214,Abu Dhabi,"Near First Flight Couriers, Behind ADNOC Head Office, Salam Street, Najda Area, Najda, Abu Dhabi",Najda,"Najda, Abu Dhabi",54.37422059,24.49089202,"Indian, North Indian, Chinese",100,Emirati Diram(AED),No,Yes,No,No,3,4,Green,Very Good,525 +5703500,Punjab Grill,214,Abu Dhabi,"Venetian Village, Ritz Carlton Abu Dhabi, Grand Canal, Al Maqtaa, Abu Dhabi","Venetian Village, Al Maqtaa","Venetian Village, Al Maqtaa, Abu Dhabi",54.4872137,24.4106148,"Indian, North Indian",330,Emirati Diram(AED),Yes,No,No,No,4,4.9,Dark Green,Excellent,216 +18253896,Tamba,214,Abu Dhabi,"6th Floor, World Trade Centre Mall, Al Markaziya, Abu Dhabi","World Trade Center Mall, Al Markaziya","World Trade Center Mall, Al Markaziya, Abu Dhabi",54.358147,24.488161,Indian,500,Emirati Diram(AED),Yes,No,No,No,4,4.7,Dark Green,Excellent,201 +5701917,P.F. Chang's,214,Abu Dhabi,"Level 1, World Trade Center Mall, Central Market, Al Markaziya, Abu Dhabi","World Trade Center Mall, Al Markaziya","World Trade Center Mall, Al Markaziya, Abu Dhabi",54.35782894,24.48761082,Chinese,250,Emirati Diram(AED),No,No,No,No,4,4.2,Green,Very Good,435 +5702574,The Cheesecake Factory,214,Abu Dhabi,"Level 1, Yas Mall, Yas Leisure Dr, Yas Island, Abu Dhabi","Yas Mall, Yas Island","Yas Mall, Yas Island, Abu Dhabi",54.60685361,24.49053138,"American, Desserts",200,Emirati Diram(AED),No,No,No,No,4,4.6,Dark Green,Excellent,586 +202321,The Farm,214,Dubai,"Al Barari Villas, Opposite Falcon City, Al Barari, Dubai",Al Barari,"Al Barari, Dubai",55.310519,25.095044,"Mediterranean, Italian, Thai, European",280,Emirati Diram(AED),Yes,No,No,No,3,3.9,Yellow,Good,927 +206488,Maharaja Bhog,214,Dubai,"Ground Level, Hamsah Mall, Next to Ansar Gallery, Al Karama, Dubai",Al Karama,"Al Karama, Dubai",55.30919038,25.25124063,"Indian, Rajasthani",90,Emirati Diram(AED),Yes,Yes,No,No,2,4.1,Green,Very Good,1448 +209654,Rasoi Ghar,214,Dubai,"Zainal Mohebi Plaza, Sheikh Khalifa Bin Zayed Road, Opposite Centrepoint, Al Karama, Dubai",Al Karama,"Al Karama, Dubai",55.3019169,25.25007862,Indian,90,Emirati Diram(AED),Yes,Yes,No,No,2,4.3,Green,Very Good,1281 +18340881,Barbeque Nation,214,Dubai,"G1, Villa, Near HQ Fitness, Near Lulu Mall, Barsha 2, Dubai",Barsha 2,"Barsha 2, Dubai",55.215341,25.11338,"Indian, North Indian",150,Emirati Diram(AED),Yes,No,No,No,3,4.5,Dark Green,Excellent,307 +18233284,Farzi Cafe,214,Dubai,"CITY WALK, Al Safa & Al Wasl Road Intersection, Al Safa, Dubai","CITY WALK, Al Safa","CITY WALK, Al Safa, Dubai",55.26191946,25.2080323,"International, Indian",200,Emirati Diram(AED),Yes,No,No,No,3,4.5,Dark Green,Excellent,909 +18269368,AB's Absolute Barbecues,214,Dubai,"Mezzanaine Floor, Centurion Star Tower, Deira City Centre Area, Dubai",Deira City Centre Area,"Deira City Centre Area, Dubai",55.32874,25.254105,"Continental, Indian",160,Emirati Diram(AED),Yes,No,No,No,3,4.9,Dark Green,Excellent,641 +18254160,Carnival By Tresind,214,Dubai,"Podium Level, Burj Daman, DIFC, Dubai",DIFC,"DIFC, Dubai",55.281966,25.211183,Indian,500,Emirati Diram(AED),Yes,No,No,No,4,4.9,Dark Green,Excellent,322 +208939,AB's Absolute Barbecues,214,Dubai,"Shop G05, Sidra Tower, Near GEMS Wellington School, Exit 36, Sheikh Zayed Road, Dubai Media City, Dubai",Dubai Media City,"Dubai Media City, Dubai",55.17874617,25.10777315,"Indian, Continental",160,Emirati Diram(AED),Yes,No,No,No,3,4.8,Dark Green,Excellent,2510 +201531,Hard Rock Cafe,214,Dubai,"Next to Marks & Spencer's, Festival City, Dubai",Festival City,"Festival City, Dubai",55.35147775,25.22399154,"American, Burger",300,Emirati Diram(AED),No,No,No,No,4,4.5,Dark Green,Excellent,1388 +208965,The Coffee Club,214,Dubai,"Wasl Vita, Opposite Civil Defence Station, Near Emirates NBD, Al Wasl Road, Jumeirah 1, Dubai",Jumeirah 1,"Jumeirah 1, Dubai",55.25639722,25.21110278,Cafe,140,Emirati Diram(AED),No,Yes,No,No,3,4.5,Dark Green,Excellent,403 +208778,SALT,214,Dubai,"Kite Beach, Street 2D, Umm Suqeim, Dubai","Kite Beach, Umm Suqeim","Kite Beach, Umm Suqeim, Dubai",55.21152779,25.16812806,"Fast Food, Burger",100,Emirati Diram(AED),No,No,No,No,3,4.3,Green,Very Good,1351 +209703,Din Tai Fung,214,Dubai,"Level 2 Expansion, Mall of the Emirates, Barsha 1, Dubai","Mall of the Emirates, Barsha 1","Mall of the Emirates, Barsha 1, Dubai",55.19854523,25.11851301,"Asian, Chinese",160,Emirati Diram(AED),No,No,No,No,3,4.3,Green,Very Good,661 +18381837,SpiceKlub,214,Dubai,"Opposite Aster Hospital, Near Sharaf DG, Kuwait Street, Mankhool, Dubai",Mankhool,"Mankhool, Dubai",55.288061,25.252054,"Indian, North Indian, Street Food",150,Emirati Diram(AED),Yes,No,No,No,3,4.4,Green,Very Good,281 +208850,Tresind - Nassima Royal Hotel,214,Dubai,"Level 2, Nassima Royal Hotel, Sheikh Zayad Road, Trade Centre Area, Dubai","Nassima Royal Hotel, Trade Centre Area","Nassima Royal Hotel, Trade Centre Area, Dubai",55.28256778,25.22347744,Indian,500,Emirati Diram(AED),Yes,No,No,No,4,4.9,Dark Green,Excellent,1352 +210134,Grand Barbeque Buffet Restaurant,214,Dubai,"Al Mina Road, Next to Ibis Styles Jumeirah Hotel, Satwa, Dubai",Satwa,"Satwa, Dubai",55.27340334,25.24107351,"Indian, Asian",150,Emirati Diram(AED),Yes,Yes,No,No,3,4.4,Green,Very Good,552 +201044,Red Lobster,214,Dubai,"Near the Fountain, Lower Ground Level, The Dubai Mall, Downtown Dubai, Dubai","The Dubai Mall,Downtown Dubai","The Dubai Mall,Downtown Dubai, Dubai",55.278525,25.198291,"Seafood, American",285,Emirati Diram(AED),No,No,No,No,3,3.2,Orange,Average,506 +201340,The Cheesecake Factory,214,Dubai,"Ground Level, Near Aquarium, The Dubai Mall, Downtown Dubai, Dubai","The Dubai Mall,Downtown Dubai","The Dubai Mall,Downtown Dubai, Dubai",55.27856994,25.19726756,"American, Desserts",270,Emirati Diram(AED),No,No,No,No,3,4.7,Dark Green,Excellent,2424 +18289126,Parker's,214,Dubai,"The Dubai Mall, Downtown Dubai, Dubai","The Dubai Mall,Downtown Dubai","The Dubai Mall,Downtown Dubai, Dubai",55.27927805,25.19500831,"Cafe, Burger",170,Emirati Diram(AED),No,No,No,No,3,4.3,Green,Very Good,386 +202507,Applebee's,214,Dubai,"Sheikh Issa Tower, Sheikh Zayed Road, Trade Centre Area, Dubai",Trade Centre Area,"Trade Centre Area, Dubai",55.27430557,25.21135663,"American, Mexican, Burger",250,Emirati Diram(AED),No,Yes,No,No,3,3.7,Yellow,Good,500 +210139,Grub Shack,214,Dubai,"Building 41, Next to Dubai Healthcare City Metro Station, Dubai Healthcare City, Umm Hurair, Dubai",Umm Hurair,"Umm Hurair, Dubai",55.32548446,25.22931113,"Goan, Chinese, Indian, North Indian",130,Emirati Diram(AED),Yes,Yes,No,No,3,4.3,Green,Very Good,544 +5600424,Kamat,214,Sharjah,"Opposite HSBC, Near Emax, King Faisal Street, Abu Shagara, Sharjah",Abu Shagara,"Abu Shagara, Sharjah",55.39273214,25.33315516,"Indian, North Indian, South Indian, Chinese",85,Emirati Diram(AED),No,Yes,No,No,3,3.9,Yellow,Good,285 +5602751,Vadakkan Pepper,214,Sharjah,"Near New City Center Supermarket, Abu Shagara, Sharjah",Abu Shagara,"Abu Shagara, Sharjah",55.396984,25.338089,South Indian,70,Emirati Diram(AED),No,Yes,No,No,3,3.8,Yellow,Good,210 +5600457,Gazebo,214,Sharjah,"Opposite Safeer Market, Near E max, King Faisal Street, Abu Shagara, Sharjah",Abu Shagara,"Abu Shagara, Sharjah",55.39269626,25.33320395,"Indian, Mughlai, South Indian, Biryani",120,Emirati Diram(AED),No,Yes,No,No,4,4.1,Green,Very Good,372 +5600642,Katis Restaurant,214,Sharjah,"Opposite Safeer Market, Al Khan Street, Al Khan, Sharjah",Al Khan,"Al Khan, Sharjah",55.37637066,25.32578908,"Indian, North Indian, Chinese",65,Emirati Diram(AED),No,No,No,No,3,4.3,Green,Very Good,316 +18268134,Zaroob,214,Sharjah,"Al Buhaira Corniche Street, Al Majaz Water Front, Al Majaz, Sharjah",Al Majaz,"Al Majaz, Sharjah",55.38474888,25.32451353,Lebanese,110,Emirati Diram(AED),No,Yes,No,No,4,3.9,Yellow,Good,69 +18376208,Derby,214,Sharjah,"Al Khan Street, Al Majaz 3, Al Majaz, Sharjah",Al Majaz,"Al Majaz, Sharjah",55.37086055,25.33045321,"Fast Food, American",40,Emirati Diram(AED),No,No,No,No,2,4.1,Green,Very Good,33 +5600959,Nayaab Haandi,214,Sharjah,"Near Etisalat Business Center, Opposite ADNOC Petrol Station, Al Khan Street, Al Majaz 2, Al Majaz, Sharjah",Al Majaz,"Al Majaz, Sharjah",55.37552107,25.32813499,"Pakistani, Indian",100,Emirati Diram(AED),No,Yes,No,No,4,4.1,Green,Very Good,449 +5600103,Najmat Lahore Restaurant,214,Sharjah,"Near Sharjah Animal Market, Al Mina Road, Al Mareija, Sharjah",Al Mareija,"Al Mareija, Sharjah",55.38215585,25.35508316,"Pakistani, Indian, Mughlai",80,Emirati Diram(AED),No,Yes,No,No,3,4.2,Green,Very Good,504 +5602586,Saffron,214,Sharjah,"Mina Road, Opposite Bird Market, Al Mareija, Sharjah",Al Mareija,"Al Mareija, Sharjah",55.38290787,25.35443539,"Pakistani, Chinese, Indian, Afghani",90,Emirati Diram(AED),No,Yes,No,No,3,4.1,Green,Very Good,192 +5600961,Pizza Hut,214,Sharjah,"Next to Safeer Mall, Al Nahda, Sharjah",Al Nahda,"Al Nahda, Sharjah",55.37454341,25.30564046,"Fast Food, Pizza",80,Emirati Diram(AED),No,No,No,No,3,2.4,Red,Poor,154 +5600960,Al Mukhtar Bakery,214,Sharjah,"Near Safeer Mall, Al Nahda, Sharjah",Al Nahda,"Al Nahda, Sharjah",55.37728127,25.3084117,"Bakery, Arabian, Middle Eastern",50,Emirati Diram(AED),No,No,No,No,2,4.2,Green,Very Good,142 +5601340,Aroos Damascus,214,Sharjah,"Opposite Emirates NBD, Near First Gulf Bank, King Abdul Aziz Street, Al Nud, Sharjah",Al Nud,"Al Nud, Sharjah",55.39045796,25.34640794,"Arabian, Middle Eastern",60,Emirati Diram(AED),No,No,No,No,3,4.2,Green,Very Good,444 +5600701,Nando's,214,Sharjah,"Ground level, Block D, Qanat Al Qasba, Al Khan, Sharjah","Al Qasba, Al Khan","Al Qasba, Al Khan, Sharjah",55.376027,25.32188994,"African, Portuguese",160,Emirati Diram(AED),No,Yes,No,No,4,4.2,Green,Very Good,265 +5601404,Peking Chinese Restaurant,214,Sharjah,"Opposite Spinneys Roundabout, Estiqlal Square, Halwan Suburb, Sharjah",Halwan Suburb,"Halwan Suburb, Sharjah",55.39922744,25.34839077,"Chinese, Thai",130,Emirati Diram(AED),No,Yes,No,No,4,3.8,Yellow,Good,227 +5600556,TGI Friday's,214,Sharjah,"Majaz Waterfront, Buhairah Corniche, Al Majaz 3, Al Majaz, Sharjah","Majaz Waterfront, Al Majaz 3","Majaz Waterfront, Al Majaz 3, Sharjah",55.38781766,25.32774497,"American, Mexican",250,Emirati Diram(AED),No,Yes,No,No,4,3.9,Yellow,Good,357 +5602055,Rajasthan Al Malaki,214,Sharjah,"Behind DPS Sharjah Primary School, Muwailih Commercial, Sharjah",Muwailih Commercial,"Muwailih Commercial, Sharjah",55.45195531,25.2887722,"Indian, North Indian",60,Emirati Diram(AED),No,No,No,No,3,4.8,Dark Green,Excellent,459 +5601521,Applebee's,214,Sharjah,"Opposite Jumbo Electronics, Level 2, Sahara Centre, Al Nahda, Sharjah","Sahara Centre, Al Nahda","Sahara Centre, Al Nahda, Sharjah",55.37353624,25.29782287,"American, Mexican, Burger",250,Emirati Diram(AED),No,Yes,No,No,4,4.1,Green,Very Good,197 +5602377,Paper Fig,214,Sharjah,"Near Dubai Islamic Bank, Muweilah, University City, Sharjah",University City,"University City, Sharjah",55.45834266,25.3084123,"Cafe, Bakery, Desserts",150,Emirati Diram(AED),No,No,No,No,4,4.5,Dark Green,Excellent,143 +5602884,Sis Burger,214,Sharjah,"Behind ADNOC Petrol Station, Univercity City Road, University City, Sharjah",University City,"University City, Sharjah",55.45425095,25.31127229,"Fast Food, Burger",50,Emirati Diram(AED),No,No,No,No,2,3.8,Yellow,Good,12 +5602942,Crafted Blends,214,Sharjah,"Next To Super Bonanza Hyper Market, Opposite Defence Camp, University City, Sharjah",University City,"University City, Sharjah",55.460279,25.310369,Cafe,110,Emirati Diram(AED),No,No,No,No,4,4.2,Green,Very Good,43 +3400025,Jahanpanah,1,Agra,"E 23, Shopping Arcade, Sadar Bazaar, Agra Cantt, Agra",Agra Cantt,"Agra Cantt, Agra",78.01154444,27.16166111,"North Indian, Mughlai",850,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,140 +3400341,Rangrezz Restaurant,1,Agra,"E-20, Shopping Arcade, Sadar Bazaar, Agra Cantt, Agra",Agra Cantt,"Agra Cantt, Agra",0,0,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,71 +3400005,Time2Eat - Mama Chicken,1,Agra,"Main Market, Sadar Bazaar, Agra Cantt, Agra",Agra Cantt,"Agra Cantt, Agra",78.01160797,27.16083249,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,94 +3400021,Chokho Jeeman Marwari Jain Bhojanalya,1,Agra,"1/48, Delhi Gate, Station Road, Raja Mandi, Civil Lines, Agra",Civil Lines,"Civil Lines, Agra",77.99809167,27.19592778,Rajasthani,400,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,87 +3400017,Pinch Of Spice,1,Agra,"23/453, Opposite Sanjay Cinema, Wazipura Road, Sanjay Place, Civil Lines, Agra",Civil Lines,"Civil Lines, Agra",78.00755278,27.201725,"North Indian, Chinese, Mughlai",1000,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,177 +3400325,MoMo Cafe,1,Agra,"Courtyard by Marriott Agra, Phase 2, Fatehabad Road, Tajganj, Agra","Courtyard by Marriott Agra, Tajganj","Courtyard by Marriott Agra, Tajganj, Agra",0,0,"North Indian, European",2000,Indian Rupees(Rs.),No,No,No,No,4,4,Green,Very Good,45 +3400059,Peshawri - ITC Mughal,1,Agra,"ITC Mughal, Fatehabad Road, Tajganj, Agra","ITC Mughal, Tajganj","ITC Mughal, Tajganj, Agra",78.044095,27.160934,"North Indian, Mughlai",2500,Indian Rupees(Rs.),No,No,No,No,4,4.3,Green,Very Good,133 +3400060,Taj Bano - ITC Mughal,1,Agra,"ITC Mughal, Fatehabad Road, Tajganj, Agra","ITC Mughal, Tajganj","ITC Mughal, Tajganj, Agra",78.044095,27.160934,Mughlai,2500,Indian Rupees(Rs.),No,No,No,No,4,4,Green,Very Good,41 +3400348,G Thal,1,Agra,"3/20, KPS Tower, Near Tulsi Talkies, Bypass Road, Khandari, Agra",Khandari,"Khandari, Agra",0,0,"Rajasthani, Gujarati, Mughlai",800,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,59 +3400072,Dawat-e-Nawab - Radisson Blu,1,Agra,"Radisson Blu, Taj East Gate Road, Tajganj, Agra","Radisson Blu, Tajganj","Radisson Blu, Tajganj, Agra",78.057044,27.163303,"North Indian, Mughlai",3600,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,46 +3400073,The Latitude - Radisson Blu,1,Agra,"Radisson Blu, Taj East Gate Road, Tajganj, Agra","Radisson Blu, Tajganj","Radisson Blu, Tajganj, Agra",78.057044,27.163303,"North Indian, Chinese, Continental",0,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,103 +3400019,Dasaprakash Restaurant,1,Agra,"Meher Cinema Complex, Gwalior Road, Rakabganj, Agra",Rakabganj,"Rakabganj, Agra",78.01505278,27.16510833,"South Indian, Desserts",550,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,121 +3400033,The Charcoal Chimney,1,Agra,"Hotel Samovar, Fatehabad Road, Tajganj, Agra",Tajganj,"Tajganj, Agra",78.04299,27.159795,"North Indian, Chinese, Continental, Mughlai",1100,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,70 +3400346,Sheroes Hangout,1,Agra,"Opposite The Gateway Hotel, Fatehabad Road, Tajganj, Agra",Tajganj,"Tajganj, Agra",78.040165,27.16185,"Cafe, North Indian, Chinese",0,Indian Rupees(Rs.),No,No,No,No,1,4.9,Dark Green,Excellent,77 +3400350,Bon Barbecue,1,Agra,"Parador Hotel, 3A-3B, Phase 1, Fatehabad Road, Taj Nagri, Tajganj, Agra",Tajganj,"Tajganj, Agra",0,0,"North Indian, Chinese, Continental",1500,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,57 +3400391,Chapter 1 Cafe,1,Agra,"1374 K/1375 K, 2nd floor, Dinesh Nagar, Fatehbad Road, Tajganj, Agra",Tajganj,"Tajganj, Agra",0,0,"Cafe, Italian, Mexican, North Indian, Continental",0,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,98 +3400016,Pind Balluchi,1,Agra,"Opposite Saga Emporium, Fatehabad Road, Tajganj, Agra",Tajganj,"Tajganj, Agra",78.04725,27.15777222,"North Indian, Mughlai",900,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,175 +3400105,Pizza Hut,1,Agra,"8, Handicraft Nagar, Fatehabad Road, Tajganj, Agra",Tajganj,"Tajganj, Agra",78.03471389,27.16169444,"Italian, Pizza",700,Indian Rupees(Rs.),No,No,No,No,2,4.4,Green,Very Good,134 +3400326,Tea'se Me - Rooftop Tea Boutique,1,Agra,"Near Purani Mandi Crossing,Fatehabad Road, Tajganj, Agra",Tajganj,"Tajganj, Agra",0,0,"Chinese, Italian, Continental, North Indian",1000,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,166 +3400392,Thaaliwala,1,Agra,"Next To ITC Mughal Hotel, Fatehabad Road, Tajganj, Agra",Tajganj,"Tajganj, Agra",78.045359,27.158822,"North Indian, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,168 +111895,650 - The Global Kitchen,1,Ahmedabad,"Shreekunj Mandapam, Beside Golden Tulip Bunglows & Tulip Citadel, Manekbaug, Ambavadi, Ahmedabad",Ambavadi,"Ambavadi, Ahmedabad",72.5375741,23.01045111,"Chinese, Italian, North Indian, Mexican, Mediterranean, Thai",900,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,1582 +110502,Patang - The Revolving Restaurant,1,Ahmedabad,"Chinubhai Tower, Nehru Bridge Corner, Ashram Road, Ahmedabad",Ashram Road,"Ashram Road, Ahmedabad",72.572009,23.0261651,"Continental, Chinese, North Indian",1800,Indian Rupees(Rs.),No,No,No,No,4,3.7,Yellow,Good,1315 +18396250,Huber & Holly,1,Ahmedabad,"7 B, Circle B, Opposite Rajpath Club, Sarkhej, Gandhinagar Highway, Bodakdev, Ahmedabad",Bodakdev,"Bodakdev, Ahmedabad",72.5123947,23.0383109,"Ice Cream, Desserts, Continental",300,Indian Rupees(Rs.),No,Yes,No,No,1,4.5,Dark Green,Excellent,217 +113702,@Mango,1,Ahmedabad,"Opposite Sindhu Bhawan, Bodakdev, Ahmedabad",Bodakdev,"Bodakdev, Ahmedabad",72.5017644,23.0401633,"North Indian, Continental, Mexican, Italian",800,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,769 +113433,Fozzie's Pizzaiolo,1,Ahmedabad,"Ground Floor, Maruti Crystal, Opposite Rajpath Club, Service Road, Bodakdev, Ahmedabad",Bodakdev,"Bodakdev, Ahmedabad",72.5098065,23.0330688,"Pizza, Italian, Beverages, Desserts",900,Indian Rupees(Rs.),No,Yes,No,No,3,4.3,Green,Very Good,731 +18438909,La Pino'z Pizza,1,Ahmedabad,"Shop 10, Circle B, Nyay Marg, Bodakdev, Ahmedabad",Bodakdev,"Bodakdev, Ahmedabad",72.5124872,23.0382314,"Pizza, Italian",500,Indian Rupees(Rs.),No,Yes,No,No,2,4.4,Green,Very Good,113 +18143128,Mocha,1,Ahmedabad,"6-9, Ground Floor, Devashish Business Park, Opposite Krishna Complex, Bodakdev, Ahmedabad",Bodakdev,"Bodakdev, Ahmedabad",72.511307,23.0318508,"Cafe, Continental, Desserts",1000,Indian Rupees(Rs.),No,Yes,No,No,3,4.4,Green,Very Good,944 +18438944,Blue - Rooftop Cafe Restaurant Bistro,1,Ahmedabad,"10th Floor, Balaji Heights Buliding, Behind Tanishq Showroom, C G Road, Ahmedabad",C G Road,"C G Road, Ahmedabad",72.5570374,23.0290619,"North Indian, Cafe, Italian, Mexican, Continental",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,63 +110436,MoMo Caf - Courtyard By Marriott,1,Ahmedabad,"Courtyard By Marriott, Ramdevnagar Cross Road, Satellite, Ahmedabad","Courtyard By Marriott, Satellite","Courtyard By Marriott, Satellite, Ahmedabad",72.5115815,23.027929,"North Indian, South Indian, Asian, Continental",1400,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,375 +18385201,Cryo Lab,1,Ahmedabad,"Ground Floor, Arjun Avenue, Opposite Samartheshwar Mahadev, Law Garden, Ahmedabad",Ellis Bridge,"Ellis Bridge, Ahmedabad",72.55998429,23.02874796,"Desserts, Ice Cream",350,Indian Rupees(Rs.),No,No,No,No,2,4.6,Dark Green,Excellent,166 +110395,Swati Snacks,1,Ahmedabad,"Near Law Garden, Ellis Bridge, Ahmedabad",Ellis Bridge,"Ellis Bridge, Ahmedabad",72.55903311,23.02443364,"Fast Food, Street Food, South Indian",450,Indian Rupees(Rs.),No,No,No,No,2,4.4,Green,Very Good,697 +18335583,Brick Kitchen,1,Ahmedabad,"At Five Petals Hotel & Banquets, Near Chanakyapuri Bridge, Ghatlodia, Ahmedabad",Ghatlodia,"Ghatlodia, Ahmedabad",72.5316389,23.0643038,"North Indian, Chinese, Continental",900,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,325 +110237,Kabir Restaurant,1,Ahmedabad,"JB Tower, Opposite Doordarshan Kendra, Drive In Road, Gurukul, Ahmedabad",Gurukul,"Gurukul, Ahmedabad",72.5239649,23.04850469,"North Indian, Chinese, Continental, Desserts, Fast Food, Sandwich",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,432 +113537,Puffizza,1,Ahmedabad,"103, Kairos, Opposite Mahatma Gandhi Labour Institute, Drive In Road, Gurukul, Ahmedabad",Gurukul,"Gurukul, Ahmedabad",72.53774978,23.04619268,"Italian, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,4.3,Green,Very Good,744 +113703,Cafe Alfresco,1,Ahmedabad,"101, Dynamic House, Vijay Cross Road, Above HDFC Bank, Opposite Child Care Hospital, Navrangpura, Ahmedabad",Navrangpura,"Navrangpura, Ahmedabad",72.5498285,23.0437235,"Cafe, Beverages, Desserts, Pizza",700,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,404 +18385186,The Cafe Baraco,1,Ahmedabad,"34, Shribhuvan Complex, Near Memnagar Fire Station, Navrangpura, Ahmedabad",Navrangpura,"Navrangpura, Ahmedabad",72.5504755,23.0443367,"Cafe, Italian",600,Indian Rupees(Rs.),No,Yes,No,No,2,4.4,Green,Very Good,317 +113325,Nini's Kitchen,1,Ahmedabad,"12, First Floor, Camps Corner 2, Opposite Prahlad Nagar Garden, Prahlad Nagar, Ahmedabad",Prahlad Nagar,"Prahlad Nagar, Ahmedabad",72.5072645,23.0117723,"North Indian, Continental, Beverages, Italian, Burger, Healthy Food, Mediterranean",950,Indian Rupees(Rs.),No,Yes,No,No,3,4.5,Dark Green,Excellent,1138 +111826,Yanki Sizzlers,1,Ahmedabad,"4, Ground Floor, Binori Ambit, Next to Renault Showroom, Thaltej Circle, Thaltej, Ahmedabad",Thaltej,"Thaltej, Ahmedabad",72.5181257,23.0534466,"Continental, Italian, Chinese",1200,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,1041 +110516,The Garden Cafe - The Fern,1,Ahmedabad,"The Fern, Near Sola Overbridge, S G Highway, Sola, Ahmedabad","The Fern, Sola","The Fern, Sola, Ahmedabad",72.5222172,23.0640914,"North Indian, Italian, Asian, South Indian",1200,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,192 +18371341,Mazzo,1,Ahmedabad,"27, Sunshine Villa, Sunrise Park Society, Vastrapur, Ahmedabad",Vastrapur,"Vastrapur, Ahmedabad",72.5281083,23.0418026,"Cafe, American, Continental, Armenian, Fast Food",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,166 +113570,Turquoise Villa,1,Ahmedabad,"Ground Floor, Shanay - 1, Near AMA, IIM Road, Vastrapur, Ahmedabad",Vastrapur,"Vastrapur, Ahmedabad",72.5434513,23.0285142,Continental,1200,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,535 +2400020,Aryan Family's Delight,1,Allahabad,"Ground Floor, Vinayak City Centre, Sardar Patel Marg, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",81.834502,25.454648,"North Indian, South Indian, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,57 +2400148,Bean Here,1,Allahabad,"Vinayak Pushp, 77 Elgin Road, Near Florista, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",81.83316667,25.45343611,"Cafe, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,76 +2400019,Bikanerwala,1,Allahabad,"2A, JMD Bhawan, Strachey Road, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",81.832616,25.451517,"North Indian, Street Food, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,3,3.2,Orange,Average,51 +2400193,Dewsis,1,Allahabad,"2, MG Marg, Opposite Hanuman Mandir, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",0,0,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,99 +2400027,Friends Forever,1,Allahabad,"13/13, Sardar Patel Marg, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",81.835585,25.457687,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,83 +17960073,Hotel Ravisha Continental,1,Allahabad,"57 A, Purshottamdas Tandon Marg, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",0,0,"North Indian, South Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,18 +2400119,KFC,1,Allahabad,"P Square Mall, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",81.839744,25.449659,"American, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,58 +2400014,McDonald's,1,Allahabad,"Shop 4, 34-B, M G Marg, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",81.834279,25.450329,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,53 +2400403,Pind Balluchi,1,Allahabad,"5-A, Sardar Patel Marg, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",0,0,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,No,No,No,3,3.2,Orange,Average,6 +2400349,Pizza Hut,1,Allahabad,"31/31, Sardar Patel Marg, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",0,0,"Italian, Pizza",700,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,35 +2400279,Subway,1,Allahabad,"207/53, Mahatma Gandhi Marg, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",0,0,"Fast Food, American, Salad, Healthy Food",400,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,32 +2400017,Tandoor Restaurant,1,Allahabad,"17/33, Mahatama Gandhi Marg, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",81.860187,25.443994,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,3,3.2,Orange,Average,151 +18317988,The BrewMaster,1,Allahabad,"Near Vishal Megamart, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",81.83279631,25.45164569,"North Indian, Chinese, Italian",0,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,49 +2400144,The Tamarind Tree,1,Allahabad,"60 C, Thornhill Road, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",81.834841,25.459775,"South Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,106 +2400195,Cafe El Chico,1,Allahabad,"24, Mahatma Gandhi, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",81.83616667,25.44987222,"Continental, Italian",1000,Indian Rupees(Rs.),No,No,No,No,4,3.6,Yellow,Good,59 +2400052,Eat On,1,Allahabad,"Palace Compound, Near Palace Cinema, MG Marg, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",81.834236,25.450377,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,105 +2400016,Hot Stuff,1,Allahabad,"21 C, Lal Bhadhur Shastri Marg, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",81.841889,25.45235,"North Indian, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,105 +2400293,Paradise,1,Allahabad,"19/35, MG Marg, Civil Lines, Allahabad",Civil Lines,"Civil Lines, Allahabad",81.83168056,25.45031667,"Desserts, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,57 +2400009,Sagar Ratna,1,Allahabad,"3/3, Near Balson Crossing, Hashimpur Road, Tagore Town, Allahabad",Tagore Town,"Tagore Town, Allahabad",81.859682,25.457116,"South Indian, North Indian, Chinese, Continental",400,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,134 +2400010,Moti Mahal Delux,1,Allahabad,"Second Floor, Vinayak City Center Mall, SP Marg, Civil Lines, Allahabad","Vinayak City Centre Mall, Civil Lines","Vinayak City Centre Mall, Civil Lines, Allahabad",81.834492,25.454697,"Mughlai, North Indian, Chinese",800,Indian Rupees(Rs.),No,No,No,No,3,3.3,Orange,Average,58 +2200011,Makhan Fish and Chicken Corner,1,Amritsar,"21-A, Near Madaan Hospital, Majitha Road, Basant Nagar, Amritsar",Basant Nagar,"Basant Nagar, Amritsar",74.884359,31.64362,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,345 +2200078,Charming Chicken,1,Amritsar,"Shop 3, Opposite Nari Nikaten, Majithia Road, Near Basant Nagar, Amritsar",Basant Nagar,"Basant Nagar, Amritsar",74.884384,31.644532,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,151 +18204507,Ahuja Milk Bhandar,1,Amritsar,"Dhab Khatikan, Near Hindu College, Hathi Gate, Amritsar",Hathi Gate,"Hathi Gate, Amritsar",0,0,Beverages,100,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,52 +2200030,Crystal Restaurant,1,Amritsar,"Crystal Chowk, Queens Road, INA Colony, Amritsar",INA Colony,"INA Colony, Amritsar",74.875878,31.635658,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,122 +2200201,Brijwasi Chat Bhandar,1,Amritsar,"Crystal Chowk, Cooper Road, Near INA Colony",INA Colony,"INA Colony, Amritsar",74.87575556,31.63488333,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,56 +2200067,Bubby Fish & Chicken Corner,1,Amritsar,"Near Crystal Chowk, Cooper Road, INA Colony, Amritsar",INA Colony,"INA Colony, Amritsar",74.875828,31.635671,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,91 +2200358,Bon Gateau,1,Amritsar,"SCF 27, C Block Market, Ranjit Avenue, Amritsar",Ranjit Avenue,"Ranjit Avenue, Amritsar",0,0,"Cafe, Bakery, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,26 +2200001,The Yellow Chilli,1,Amritsar,"108, GRD Towers, District Shopping Center, Ranjit Avenue, Amritsar",Ranjit Avenue,"Ranjit Avenue, Amritsar",74.86276111,31.65558889,"North Indian, Mughlai, Chinese",1200,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,98 +2200033,La Roma Pizzeria,1,Amritsar,"SCO 6, District Shopping Complex, Ranjit Avenue, Amritsar",Ranjit Avenue,"Ranjit Avenue, Amritsar",74.86299167,31.65044167,"Fast Food, Italian",400,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,111 +2200283,Sakhis Watz Kukin,1,Amritsar,"M 47, Green Avenue, opp Main Park, Amritsar",Ranjit Avenue,"Ranjit Avenue, Amritsar",74.8649101,31.6466891,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,51 +2200045,The Kulcha Land,1,Amritsar,"Opposite M.K Hotel, District Shopping Centre, Ranjit Avenue, Amritsar",Ranjit Avenue,"Ranjit Avenue, Amritsar",74.86416667,31.65319167,"North Indian, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,206 +2200149,Shudh Restaurant,1,Amritsar,"Opposite Gurudwara Saragarhi, Near Dharm Singh Market Chowk, Fuwara, Town Hall, Amritsar",Town Hall,"Town Hall, Amritsar",74.87981389,31.62404722,"North Indian, South Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,44 +2200043,Bade Bhai Ka Brothers' Dhaba,1,Amritsar,"Near Amritsar Municipal Corporation, Town Hall, Amritsar",Town Hall,"Town Hall, Amritsar",74.87461944,31.62394722,"North Indian, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,94 +2200044,Bharawan Da Dhaba,1,Amritsar,"Near Amritsar Municipal Corporation, Town Hall, Amritsar",Town Hall,"Town Hall, Amritsar",74.87833333,31.62615278,"North Indian, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,461 +2200132,Brothers Dhaba,1,Amritsar,"Golden Temple Out Road, Opposite Amritsar Municipal Corporation, Town Hall, Amritsar",Town Hall,"Town Hall, Amritsar",74.877666,31.625981,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,276 +2200236,Brothers' Amritsari Dhaba,1,Amritsar,"Phawara Chowk, Town Hall, Amritsar",Town Hall,"Town Hall, Amritsar",74.87957778,31.62261111,North Indian,400,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,71 +2200175,Gurdas Ram Jalebi Wala,1,Amritsar,"Near Golden Temple, Town Hall, Amritsar",Town Hall,"Town Hall, Amritsar",0,0,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,104 +2200000,Kesar Da Dhabha,1,Amritsar,"Near Telephone Exchange, Chowk Passian, Shastri Market, Near Town Hall, Amritsar",Town Hall,"Town Hall, Amritsar",74.873005,31.624386,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,878 +2200055,Beera Chicken Corner,1,Amritsar,"Opposite Bandari Hospital, Sehaj Avenue, Majitha Road, Near White Avenue, Amritsar",White Avenue,"White Avenue, Amritsar",74.883997,31.641991,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,192 +2200034,Surjit Food Plaza,1,Amritsar,"Shop 4, Nehru Shopping Complex, Lawrence Road, White Avenue, Amritsar",White Avenue,"White Avenue, Amritsar",74.877002,31.644818,North Indian,1000,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,96 +2200153,Kanha Sweets,1,Amritsar,"Shop 1, Opposite Bijli Pehalwan Mandir, Lawrence Road, White Avenue, Amritsar",White Avenue,"White Avenue, Amritsar",0,0,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,140 +2500023,Kream N Krunch,1,Aurangabad,"2, Near Akashwani Circle, Mahesh Nagar, Jalna Road, Akashwani, Aurangabad",Akashwani,"Akashwani, Aurangabad",75.34601667,19.87621944,"North Indian, Chinese, Continental, Italian",800,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,240 +2500076,Balbeer's Kitchen & Bar,1,Aurangabad,"Shendra, Near Cambridge School, Jalna Road, Chicalthana, Aurangabad",Chicalthana,"Chicalthana, Aurangabad",0,0,"Italian, Continental, Chinese, North Indian",850,Indian Rupees(Rs.),No,No,No,No,3,3.3,Orange,Average,65 +2500054,Angeethi Restaurant,1,Aurangabad,"Seven Hill Flyover, Jalna Road, Vidya Nagar, CIDCO, Aurangabad",CIDCO,"CIDCO, Aurangabad",75.35394167,19.87473333,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,63 +2500134,Domino's Pizza,1,Aurangabad,"8, Upper Ground Floor, City Pride Commercial Complex, Kali Bawdi, Jalna Road, CIDCO, Aurangabad",CIDCO,"CIDCO, Aurangabad",75.340775,19.87610556,Pizza,700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,19 +2500069,Hotel Laadli,1,Aurangabad,"Goodwill Complex, Opposite Cidco Busstand, N-2, CIDCO, Aurangabad",CIDCO,"CIDCO, Aurangabad",75.3671268,19.8755223,"North Indian, South Indian",350,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,46 +2500256,Indiana Veg Restaurant,1,Aurangabad,"Plot 2, Near High Court, N-3, CIDCO, Aurangabad",CIDCO,"CIDCO, Aurangabad",75.360232,19.874449,"South Indian, North Indian, Chinese, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,75 +2500024,Madhuban Restaurant - Welcome Hotel Rama International,1,Aurangabad,"Welcome Hotel Rama International, Opposite High Court, CIDCO, Aurangabad",CIDCO,"CIDCO, Aurangabad",75.358888,19.875908,"North Indian, Chinese, Continental, Italian, Mexican",1800,Indian Rupees(Rs.),No,No,No,No,4,3.4,Orange,Average,94 +2500075,Mauj Restaurant,1,Aurangabad,"31, Kailash Arcade, Opposite Bank of Baroda, Connaught Place, CIDCO, Aurangabad",CIDCO,"CIDCO, Aurangabad",75.36479167,19.87642778,"Italian, Fast Food, North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,47 +2500029,Naivedya,1,Aurangabad,"Sakal Office, Jalna Road, CIDCO, Aurangabad",CIDCO,"CIDCO, Aurangabad",75.3684187,19.874103,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,71 +2500079,d' Curry House,1,Aurangabad,"Hotel Green Olive, Near Baba Petrol Pump, Nirala Bazar, Aurangabad","Hotel Green Olive, Nirala Bazar","Hotel Green Olive, Nirala Bazar, Aurangabad",75.316722,19.875337,"Continental, Chinese, Biryani, North Indian",1000,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,73 +2500343,Mokoholic Juice Bar,1,Aurangabad,"Opposite Municipal Car Parking, Paithan Gate, Near Mondha, Aurangabad",Mondha,"Mondha, Aurangabad",0,0,"Juices, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,21 +2500052,Ashoka's Veg Restaurant,1,Aurangabad,"31, Opposite Kohinoor Plaza, Near M P Law College, Nirala Bazar, Aurangabad",Nirala Bazar,"Nirala Bazar, Aurangabad",75.32340278,19.87963056,"South Indian, Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,46 +2500062,Kareem's Fine Dining,1,Aurangabad,"A1-A3, Motiwala Complex, Below KFC Restaurant, Nirala Bazar, Aurangabad",Nirala Bazar,"Nirala Bazar, Aurangabad",75.32350278,19.88025556,"Mughlai, Biryani",700,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,45 +2500056,That Baat,1,Aurangabad,"Near Vivekanand College, Samarth Nagar, Nirala Bazar Road, Aurangabad",Nirala Bazar,"Nirala Bazar, Aurangabad",75.322405,19.875016,Maharashtrian,450,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,34 +2500030,Bhoj Restaurant,1,Aurangabad,"First Floor, Bhau Pathak Smriti Kamgar Bhavan, CBS Road, Nirala Bazar, Aurangabad",Nirala Bazar,"Nirala Bazar, Aurangabad",75.317475,19.87802778,North Indian,450,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,89 +2500390,Downside Up,1,Aurangabad,"6&7 B, Kuber Avenue, Rana Nagar, Near Nyay Nagar, Aurangabad",Nyay Nagar,"Nyay Nagar, Aurangabad",0,0,"Cafe, Mughlai, North Indian",400,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,8 +2500007,Kareem's Kabab & Biryani,1,Aurangabad,"First Floor, Food Court, Prozone Mall, MIDC Industrial Area, Chicalthana, Aurangabad","Prozone Mall, Chicalthana","Prozone Mall, Chicalthana, Aurangabad",75.37235278,19.87699444,Mughlai,650,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,39 +2500123,Great Sagar Restaurant,1,Aurangabad,"Near Bhadkal Gate, VIP Road, Shahgunj, Aurangabad",Shahgunj,"Shahgunj, Aurangabad",75.321461,19.888716,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,74 +2500122,Kailash Restaurant,1,Aurangabad,"Rachanakar colony, Railway Station Road, Usmanpura, Aurangabad",Usmanpura,"Usmanpura, Aurangabad",75.31889444,19.86696944,"North Indian, Chinese, South Indian, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,76 +2500346,Yalla Yalla,1,Aurangabad,"Near Gopal Tea Corner, Usmanpura Circle, Usmanpura, Aurangabad",Usmanpura,"Usmanpura, Aurangabad",0,0,"North Indian, Hyderabadi",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,71 +50943,Sultans of Spice,1,Bangalore,"BluPetal Hotel, 60 Jyoti Nivas College Road, Koramangala 5th Block, Bangalore","BluPetal Hotel, Koramangala","BluPetal Hotel, Koramangala, Bangalore",77.61542793,12.93328392,"North Indian, Mughlai",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,2416 +58268,The Fatty Bao - Asian Gastro Bar,1,Bangalore,"610, 3rd Floor, 12th Main, Off 80 Feet Road, Indiranagar, Bangalore",Indiranagar,"Indiranagar, Bangalore",77.64539558,12.97022064,Asian,2400,Indian Rupees(Rs.),Yes,Yes,No,No,4,4.7,Dark Green,Excellent,2369 +51705,Toit,1,Bangalore,"298, Namma Metro Pillar 62, 100 Feet Road, Indiranagar, Bangalore",Indiranagar,"Indiranagar, Bangalore",77.64070876,12.9791658,"Italian, American, Pizza",2000,Indian Rupees(Rs.),No,No,No,No,4,4.8,Dark Green,Excellent,10934 +18162866,Three Dots & A Dash,1,Bangalore,"840/1,100 Feet Road, Metro Pillar 56-57, Indiranagar, Bangalore",Indiranagar,"Indiranagar, Bangalore",77.64048882,12.98041024,"European, Continental",1300,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,1354 +18407918,Bombay Brasserie,1,Bangalore,"2989/B, 12th Main Road, HAL 2nd Stage, Indiranagar, Bangalore",Indiranagar,"Indiranagar, Bangalore",77.645748,12.970324,Modern Indian,1500,Indian Rupees(Rs.),No,Yes,No,No,3,4.2,Green,Very Good,231 +56464,Glen's Bakehouse,1,Bangalore,"297, 100 Feet Road, Indiranagar, Bangalore",Indiranagar,"Indiranagar, Bangalore",77.64062494,12.97909556,"Bakery, Desserts, Cafe",800,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,3533 +18221572,Onesta,1,Bangalore,"501, Binnamangala Extension, 1st stage, C.M.H Road, Indiranagar, Bangalore",Indiranagar,"Indiranagar, Bangalore",77.64368467,12.97845292,"Pizza, Cafe, Italian",600,Indian Rupees(Rs.),No,Yes,No,No,2,4.3,Green,Very Good,1413 +18359919,Onesta,1,Bangalore,"Site 15, 15th Cross, 100 Feet Road, 4th Phase, JP Nagar, Bangalore",JP Nagar,"JP Nagar, Bangalore",77.59679094,12.90622878,"Pizza, Cafe, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,4.6,Dark Green,Excellent,781 +18439634,ECHOES Koramangala,1,Bangalore,"44, 4th B Cross, Koramangala 5th Block, Bangalore",Koramangala 5th Block,"Koramangala 5th Block, Bangalore",77.615797,12.934179,"Continental, American, Italian, North Indian, Chinese, Cafe",950,Indian Rupees(Rs.),No,No,No,No,2,4.7,Dark Green,Excellent,276 +51040,Truffles,1,Bangalore,"28, 4th 'B' Cross, Koramangala 5th Block, Bangalore",Koramangala 5th Block,"Koramangala 5th Block, Bangalore",77.61429269,12.93329764,"American, Burger, Cafe",800,Indian Rupees(Rs.),No,Yes,No,No,2,4.7,Dark Green,Excellent,9667 +54162,The Black Pearl,1,Bangalore,"105, 1st A Cross Road, Jyothi Nivas College Road, Koramangala 5th Block, Bangalore",Koramangala 5th Block,"Koramangala 5th Block, Bangalore",77.61615515,12.93436454,"North Indian, European, Mediterranean",1400,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,5385 +18305628,Eat Street,1,Bangalore,"11, 80 Feet Road, Opposite Indian Oil Petrol Pump, Koramangala 6th Block, Bangalore",Koramangala 6th Block,"Koramangala 6th Block, Bangalore",77.625999,12.939496,"North Indian, Chinese, Italian, Street Food, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,4.3,Green,Very Good,753 +18385443,Koramangala Social,1,Bangalore,"118, Koramangala Industrial Area, Koramangala 7th Block, Bangalore",Koramangala 7th Block,"Koramangala 7th Block, Bangalore",77.61413042,12.93566181,"Continental, American",1500,Indian Rupees(Rs.),No,No,No,No,3,4.5,Dark Green,Excellent,1288 +56618,AB's - Absolute Barbecues,1,Bangalore,"90/4, 3rd Floor, Outer Ring Road, Munnekollaly Village, Marathahalli, Bangalore",Marathahalli,"Marathahalli, Bangalore",77.6993861,12.94993396,"European, Mediterranean, North Indian",1400,Indian Rupees(Rs.),No,No,No,No,3,4.6,Dark Green,Excellent,6907 +18353121,Flechazo,1,Bangalore,"9/1, 1st Floor, Above Surya Nissan, VRR Orchid, Doddanakkundi, Marathahalli, Bangalore",Marathahalli,"Marathahalli, Bangalore",77.696664,12.97537691,"Asian, Mediterranean, North Indian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,4.4,Green,Very Good,983 +18366652,Onesta,1,Bangalore,"215, 216 & 220, Devasandra Village, Kasaba Hobli, New BEL Road, Bangalore",New BEL Road,"New BEL Road, Bangalore",77.5709967,13.0291977,"Pizza, Cafe, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,4.6,Dark Green,Excellent,627 +18430785,Communiti,1,Bangalore,"67 & 68, Brigade Solitaire, Opposite to Advaith Hyundai, Residency Road, Bangalore",Residency Road,"Residency Road, Bangalore",77.60817859,12.97253153,Continental,1200,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,334 +58882,Big Brewsky,1,Bangalore,"Behind MK Retail, Before WIPRO Corporate Office, Sarjapur Road, Bangalore",Sarjapur Road,"Sarjapur Road, Bangalore",77.68323686,12.91304096,"Finger Food, North Indian, Italian, Continental, Thai, South Indian",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.5,Dark Green,Excellent,5705 +18422898,Hoot,1,Bangalore,"BBMP 2034/69, Block 2, Kaikondrahalli, Varthur Hobli, Sarjapur Road, Bangalore",Sarjapur Road,"Sarjapur Road, Bangalore",77.6784,12.914264,"Continental, Italian, North Indian",1400,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,405 +18339874,Farzi Cafe,1,Bangalore,"202, Level 2, UB City, Vittal Mallya Road, Lavelle Road, Bangalore",UB City,"UB City, Bangalore",77.5960137,12.9721612,Modern Indian,1500,Indian Rupees(Rs.),No,No,No,No,3,4.4,Green,Very Good,754 +2600472,Black N White Cafe,1,Bhopal,"G-1, Raksha Tower, Eden Garden, Arera Colony, Bhopal",Arera Colony,"Arera Colony, Bhopal",77.419399,23.211529,"Cafe, Chinese, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,51 +2600514,Maybe There,1,Bhopal,"4th floor,10th Cross Road Building, Above Vishal Fitness Centre, 10 Main Road, Arera Colony, Bhopal",Arera Colony,"Arera Colony, Bhopal",0,0,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,63 +2600109,Sagar Gaire Fast Food,1,Bhopal,"10, Number Market, Arera Colony, Bhopal",Arera Colony,"Arera Colony, Bhopal",77.435361,23.214294,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,4.9,Dark Green,Excellent,427 +2600311,The Kasbah,1,Bhopal,"110/7, Mandakini, Opposite Union Bank, Kolar Main Road, Arera Colony, Bhopal",Arera Colony,"Arera Colony, Bhopal",77.41722744,23.18499152,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,126 +2600008,Bake N Shake,1,Bhopal,"B-1, GM Tower, Stop No. 10, Arera Colony, Bhopal",Arera Colony,"Arera Colony, Bhopal",77.434976,23.214459,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,223 +2600031,10 Downing Street,1,Bhopal,"Third Floor, DB City Mall, Maharana Pratap Nagar, Bhopal","DB City, Maharana Pratap Nagar","DB City, Maharana Pratap Nagar, Bhopal",77.429989,23.232357,"North Indian, Chinese",1000,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,257 +2600250,Chi Kitchen,1,Bhopal,"12-13, Food Court, DB City Mall, Maharana Pratap Nagar, Bhopal","DB City, Maharana Pratap Nagar","DB City, Maharana Pratap Nagar, Bhopal",0,0,Chinese,1000,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,103 +2600025,Pizza Hut,1,Bhopal,"Third Floor, DB City Mall, Arera Hills, Maharana Pratap Nagar, Bhopal","DB City, Maharana Pratap Nagar","DB City, Maharana Pratap Nagar, Bhopal",77.429845,23.232537,Pizza,650,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,118 +2600494,Kafe Kulture,1,Bhopal,"A-66A, Jai Bhawani Housing Society, Bawadiyan Kalan, Gulmohar Colony, Bhopal",Gulmohar Colony,"Gulmohar Colony, Bhopal",0,0,"Cafe, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,98 +18108352,Violet Hour,1,Bhopal,"Shop 3-4, Plot 5B, Sai Mehndi Appartment, B.D.A, Kohefiza Main Road, Kohefiza, Bhopal",Kohefiza,"Kohefiza, Bhopal",77.3796051,23.26626099,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,33 +2600079,Bapu Ki Kutia,1,Bhopal,"Behind Jyoti Cineplex, Zone 1, Maharana Pratap Nagar, Bhopal",Maharana Pratap Nagar,"Maharana Pratap Nagar, Bhopal",77.433571,23.233219,"North Indian, Chinese, South Indian, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,175 +2600340,Da pizzeria,1,Bhopal,"177, Zone 2, Maharana Pratap Nagar, Bhopal",Maharana Pratap Nagar,"Maharana Pratap Nagar, Bhopal",0,0,"Pizza, Italian, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,111 +18461339,Papa Mexicano,1,Bhopal,"R-24, Zone II, Maharana Pratap Nagar, Bhopal",Maharana Pratap Nagar,"Maharana Pratap Nagar, Bhopal",77.43702042,23.23079116,"Fast Food, Mexican, Tex-Mex",350,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,20 +2600010,Bake N Shake,1,Bhopal,"Near Jyoti Cineplex, Zone 1, Maharana Pratap Nagar, Bhopal",Maharana Pratap Nagar,"Maharana Pratap Nagar, Bhopal",0,0,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,103 +2600230,Manohar Dairy And Restaurant,1,Bhopal,"132, Zone 1, Maharana Pratap Nagar, Bhopal",Maharana Pratap Nagar,"Maharana Pratap Nagar, Bhopal",77.434007,23.234249,"North Indian, South Indian, Street Food, Bakery",400,Indian Rupees(Rs.),No,No,No,No,2,4.4,Green,Very Good,243 +2600003,Manohar Dairy And Restaurant,1,Bhopal,"6, Hamidia Road, Opposite Alpana Cineplex, Peer Gate Area, Bhopal",Peer Gate Area,"Peer Gate Area, Bhopal",77.408236,23.264015,"North Indian, South Indian, Street Food, Bakery",400,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,238 +2600303,Kebabsville - Sayaji Hotel,1,Bhopal,"A-3,Van Vihar Road, Prempura, TT Nagar, Bhopal",Sayaji Hotel,"Sayaji Hotel, Bhopal",77.373573,23.218998,North Indian,1800,Indian Rupees(Rs.),No,No,No,No,4,4.3,Green,Very Good,128 +2600180,Indian Coffee House,1,Bhopal,"Near Apex Bank, TT Nagar, Bhopal",TT Nagar,"TT Nagar, Bhopal",77.401663,23.234631,South Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,161 +2600393,The Urban Socialite,1,Bhopal,"Hotel Lake View Ashoka, 5th Floor, Shyamla Hills, TT Nagar, Bhopal",TT Nagar,"TT Nagar, Bhopal",0,0,"Italian, Mexican, Chinese",900,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,79 +2600007,Bake N Shake,1,Bhopal,"Bhadbhada Road, Near Rang Mahal Talkies, TT Nagar, Bhopal",TT Nagar,"TT Nagar, Bhopal",77.398886,23.235123,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,120 +2900587,Tyre Patty,1,Bhubaneshwar,"3rd Floor, BMC Bhawani Mall, Sahid Nagar, Bhubaneshwar","BMC Bhawani Mall, Sahid Nagar","BMC Bhawani Mall, Sahid Nagar, Bhubaneshwar",0,0,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,289 +2900354,Silver Streak,1,Bhubaneshwar,"Ground Floor, BMC Bhawani Mall, Sahid Nagar, Bhubaneshwar","BMC Bhawani Mall, Sahid Nagar","BMC Bhawani Mall, Sahid Nagar, Bhubaneshwar",85.846838,20.286333,Chinese,550,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,379 +2900633,Barbeque Nation,1,Bhubaneshwar,"Plot 12-13/557, 3rd Floor, Mauza Samantapuri,Gajapati Nagar, Chandrasekharpur, Bhubaneshwar",Chandrasekharpur,"Chandrasekharpur, Bhubaneshwar",0,0,"Mediterranean, Asian, Continental, North Indian, Arabian",1200,Indian Rupees(Rs.),No,No,No,No,3,4.6,Dark Green,Excellent,154 +18408676,Central Perk 7,1,Bhubaneshwar,"Plot 133/A, District Center, Chandrasekharpur, Bhubaneshwar",Chandrasekharpur,"Chandrasekharpur, Bhubaneshwar",85.81781287,20.32553933,"Cafe, Charcoal Grill, Steak",600,Indian Rupees(Rs.),No,No,No,No,2,4.5,Dark Green,Excellent,145 +2900234,The Chicken Dinesty,1,Bhubaneshwar,"District Center, Niladri Vihar Road, Chandrasekharpur, Bhubaneshwar",Chandrasekharpur,"Chandrasekharpur, Bhubaneshwar",85.81856667,20.32634444,"Fast Food, North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,247 +2900550,Taste Of China,1,Bhubaneshwar,"139, District Center, Chandrasekharpur, Bhubaneshwar",Chandrasekharpur,"Chandrasekharpur, Bhubaneshwar",0,0,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,145 +18362677,Michael's Kitchen,1,Bhubaneshwar,"7798, Sainik School Road, Gajapati Nagar, Bhubaneswar, Gajapati Nagar, Bhubaneshwar",Gajapati Nagar,"Gajapati Nagar, Bhubaneshwar",85.83394811,20.31149633,"North Indian, Asian, European",850,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,118 +2900044,Mamma Mia - Mayfair Lagoon,1,Bhubaneshwar,"Mayfair Lagoon, 8-B, Jayadev Vihar, Bhubaneshwar","Mayfair Lagoon, Jayadev Vihar","Mayfair Lagoon, Jayadev Vihar, Bhubaneshwar",85.819178,20.301785,"Cafe, Italian, Mexican, Bakery",1400,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,256 +2900469,99 North Restaurant,1,Bhubaneshwar,"B36, Chandaka Industrial Estate, Near CTTC, Patia, Bhubaneshwar",Patia,"Patia, Bhubaneshwar",85.80823611,20.34306944,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,173 +2900219,Adda,1,Bhubaneshwar,"4th Floor, SJ Complex, KIIT College Road, Patia, Bhubaneshwar",Patia,"Patia, Bhubaneshwar",85.82272222,20.353675,"North Indian, Chinese, Mexican, Beverages",600,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,424 +2900473,Chill Ummm,1,Bhubaneshwar,"DS Tower, 2nd Floor, Plot 516/1763/4177, Near Big Bazar, Patia, Bhubaneshwar",Patia,"Patia, Bhubaneshwar",85.825257,20.35324774,"Chinese, North Indian, Cafe",450,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,338 +2900020,Lal Qila,1,Bhubaneshwar,"Sampark Vihar, Opposite Big Bazaar, KIIT Square, Patia, Bhubaneshwar",Patia,"Patia, Bhubaneshwar",85.82685,20.35299167,"Mughlai, Chinese, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,228 +2900562,Richard's Kitchen & Coffee Bar,1,Bhubaneshwar,"Rooftop Bata Showroom, KIIT Square, Patia, Bhubaneshwar",Patia,"Patia, Bhubaneshwar",85.82599327,20.35343289,"Cafe, Chinese, Fast Food, Seafood",450,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,253 +18413814,Aangan Horizon,1,Bhubaneshwar,"Above Patia Pantaloons, Nandankanan Road, Patia, Bhubaneshwar",Patia,"Patia, Bhubaneshwar",85.82289287,20.34347604,"North Indian, Chinese, Continental",900,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,90 +18235390,Brewberrys The Coffee Bar,1,Bhubaneshwar,"3, Infocity Road, Patia, Bhubaneshwar",Patia,"Patia, Bhubaneshwar",85.81112333,20.34314407,Cafe,400,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,197 +2900640,Chai Break,1,Bhubaneshwar,"KIIT Road, PS Plaza, Patia, Bhubaneshwar",Patia,"Patia, Bhubaneshwar",0,0,"Italian, Cafe, Chinese, Continental",800,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,69 +18271459,JUGAAD JN.,1,Bhubaneshwar,"KIIT Road, Opposite SBI, Patia, Bhubaneshwar",Patia,"Patia, Bhubaneshwar",85.82225987,20.35348061,"North Indian, Rajasthani",300,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,199 +18377283,Cha cTea,1,Bhubaneshwar,"797, Near Shivam Honda Showroom, Sahid Nagar, Bhubaneshwar",Sahid Nagar,"Sahid Nagar, Bhubaneshwar",85.84295925,20.29322917,"Cafe, Tea",500,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,56 +18408600,Food Fever,1,Bhubaneshwar,"A-54, Opposite Law University, Sahid Nagar, Bhubaneshwar",Sahid Nagar,"Sahid Nagar, Bhubaneshwar",85.84516996,20.29575519,"Chinese, North Indian",900,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,49 +2900012,Mainland China,1,Bhubaneshwar,"The Crown, A1, Near IRC Village, Nayapalli, Bhubaneshwar","The Crown, Nayapalli","The Crown, Nayapalli, Bhubaneshwar",85.818494,20.292363,Chinese,1500,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,345 +18436042,Eram Rooftop,1,Bhubaneshwar,"206, 3rd Floor, Suryansh Enclave, Shastri Nagar, Unit 4, Bhubaneshwar",Unit 4,"Unit 4, Bhubaneshwar",85.82669624,20.28398889,"Asian, Continental",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,89 +122003,The Night Factory,1,Chandigarh,"Phase 1, Chandigarh Industrial Area, Chandigarh",Chandigarh Industrial Area,"Chandigarh Industrial Area, Chandigarh",76.801234,30.71005476,"North Indian, Chinese, Continental, Pizza",850,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.7,Yellow,Good,665 +121552,Brooklyn Central,1,Chandigarh,"Courtyard, Elante Mall, Phase 1, Chandigarh Industrial Area, Chandigarh","Elante Mall, Chandigarh Industrial Area","Elante Mall, Chandigarh Industrial Area, Chandigarh",76.8009555,30.7050693,"American, Cafe",1600,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,676 +121214,Chili's,1,Chandigarh,"312 B, 3rd Floor, Elante Mall, Phase 1, Chandigarh Industrial Area, Chandigarh","Elante Mall, Chandigarh Industrial Area","Elante Mall, Chandigarh Industrial Area, Chandigarh",76.8007752,30.7056682,"Mexican, American, Italian",1400,Indian Rupees(Rs.),No,Yes,No,No,3,4.3,Green,Very Good,970 +121553,Kylin Experience,1,Chandigarh,"312 A, 3rd Floor, Elante Mall, Phase 1, Chandigarh Industrial Area, Chandigarh","Elante Mall, Chandigarh Industrial Area","Elante Mall, Chandigarh Industrial Area, Chandigarh",76.80064,30.7056102,"Japanese, Chinese, Thai, Malaysian, Burmese, Asian",1600,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,300 +121312,Mocha,1,Chandigarh,"Ground Floor, Elante Mall, Phase 1, Chandigarh Industrial Area, Chandigarh","Elante Mall, Chandigarh Industrial Area","Elante Mall, Chandigarh Industrial Area, Chandigarh",76.8008653,30.7051482,"Continental, Italian, Thai, Finger Food",1400,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,428 +121335,Pirates of Grill,1,Chandigarh,"313, Third Floor, Elante Mall, Phase 1, Chandigarh Industrial Area, Chandigarh","Elante Mall, Chandigarh Industrial Area","Elante Mall, Chandigarh Industrial Area, Chandigarh",76.8009555,30.705775,"North Indian, Continental, Asian",1200,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,1022 +120014,Barbeque Nation,1,Chandigarh,"SCO 39, Madhya Marg, Sector 26, Chandigarh",Sector 26,"Sector 26, Chandigarh",76.8051917,30.7257045,"North Indian, Chinese",1300,Indian Rupees(Rs.),No,No,No,No,3,4.5,Dark Green,Excellent,1450 +123125,TGI Friday's,1,Chandigarh,"SCO 51, Madhya Marg, Sector 26, Chandigarh",Sector 26,"Sector 26, Chandigarh",76.8063634,30.7249431,"American, Tex-Mex",1800,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,228 +120221,Pal Dhaba,1,Chandigarh,"SCO 151 & 152, Sector 28 D, Sector 28, Chandigarh",Sector 28,"Sector 28, Chandigarh",76.801316,30.7194841,North Indian,700,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,982 +122064,Midnight Chef,1,Chandigarh,"SCO 329-332, Sector 35B, Sector 35, Chandigarh",Sector 35,"Sector 35, Chandigarh",76.76560555,30.72476574,"North Indian, Chinese, Continental, Italian, Burger",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.4,Orange,Average,502 +120203,Nik Baker's,1,Chandigarh,"SCO 441 & 442, Sector 35 C, Sector 35, Chandigarh",Sector 35,"Sector 35, Chandigarh",76.76055595,30.72152328,"Bakery, Desserts, Cafe",650,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,698 +120219,OvenFresh,1,Chandigarh,"SCO 437 & 438, Sector 35 C, Sector 35, Chandigarh",Sector 35,"Sector 35, Chandigarh",76.7606106,30.7216086,"Cafe, Bakery",650,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,397 +121425,Super Donuts,1,Chandigarh,"SCO 446 Sector 35 C, Sector 35, Chandigarh",Sector 35,"Sector 35, Chandigarh",76.76028337,30.72137975,"Burger, Fast Food, Desserts, Beverages",450,Indian Rupees(Rs.),No,Yes,No,No,1,4,Green,Very Good,265 +123010,Taco Bell,1,Chandigarh,"SCO 453-454, Sector 35C, Sector 35, Chandigarh",Sector 35,"Sector 35, Chandigarh",76.75984483,30.72114167,"Mexican, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,252 +123294,Karim's,1,Chandigarh,"SCO 33, Madhya Marg, Sector 7, Chandigarh",Sector 7,"Sector 7, Chandigarh",76.8009793,30.7306181,"Mughlai, North Indian",800,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,86 +121120,Virgin Courtyard,1,Chandigarh,"Backside, SCO 1A, Madhya Marg, Sector 7, Chandigarh",Sector 7,"Sector 7, Chandigarh",76.7976205,30.7334795,Italian,2200,Indian Rupees(Rs.),No,No,No,No,4,4.4,Green,Very Good,817 +122940,Burgrill,1,Chandigarh,"Booth 70, Sector 8, Chandigarh",Sector 8,"Sector 8, Chandigarh",76.7978909,30.740827,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,4.5,Dark Green,Excellent,249 +122830,Uncle Jack's,1,Chandigarh,"Booth 11, Sector 8, Chandigarh",Sector 8,"Sector 8, Chandigarh",76.7972148,30.7408896,"Desserts, American",600,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,356 +69024,That Madras Place,1,Chennai,"34/29, 2nd Main Road, Kasturibai Nagar, Adyar, Chennai",Adyar,"Adyar, Chennai",80.250744,13.0058006,"European, Italian, Desserts",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.2,Green,Very Good,1810 +72475,Haunted,1,Chennai,"273, F13, New Number 71, 2nd Main Road, Anna Nagar East, Chennai",Anna Nagar East,"Anna Nagar East, Chennai",80.2206723,13.0864385,"North Indian, Chinese, Arabian",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.8,Yellow,Good,519 +70431,Pantry d'or,1,Chennai,"21/11, J Block, 6th Avenue Main Road, Anna Nagar East, Chennai",Anna Nagar East,"Anna Nagar East, Chennai",80.2191037,13.0918088,"Continental, Cafe, Italian, Desserts",750,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.4,Green,Very Good,1504 +71443,Palmshore,1,Chennai,"95, Jawaharlal Nehru Salai, Jafferkhanpet, Ashok Nagar, Chennai",Ashok Nagar,"Ashok Nagar, Chennai",80.20881157,13.02977985,"North Indian, Mughlai, Chinese, South Indian",850,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.2,Green,Very Good,841 +73088,Chili's,1,Chennai,"49 & 50 L, Express Avenue Mall, White's Road, Royapettah, Chennai","Express Avenue Mall, Royapettah","Express Avenue Mall, Royapettah, Chennai",80.264151,13.058616,"Mexican, American, Tex-Mex, Burger",1700,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.8,Dark Green,Excellent,1262 +18423075,Writer's Cafe,1,Chennai,"98, Peter's Road, Behind Philip's Service Centre, Gopalapuram, Chennai",Gopalapuram,"Gopalapuram, Chennai",80.25722075,13.05434714,"Cafe, European",450,Indian Rupees(Rs.),No,Yes,No,No,1,4.2,Green,Very Good,191 +70890,Fusilli Reasons,1,Chennai,"1/9, Dr. Vasudevan Street, Ormes Road, Kilpauk, Chennai",Kilpauk,"Kilpauk, Chennai",80.24851944,13.08187778,Italian,350,Indian Rupees(Rs.),No,No,No,No,1,4.6,Dark Green,Excellent,1510 +71492,Ciclo Cafe,1,Chennai,"47, Gandhi Mandapam Road, Kotturpuram, Chennai",Kotturpuram,"Kotturpuram, Chennai",80.24243889,13.02239444,"Cafe, Continental",1100,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,1004 +70092,Kaidi Kitchen,1,Chennai,"20/3, Bishop Wallers Avenue, Mylapore, Chennai",Mylapore,"Mylapore, Chennai",80.26147,13.044694,"Italian, Mexican, Chinese, Thai, North Indian",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,1820 +70393,Bombay Brasserie,1,Chennai,"3, College Lane, Nungambakkam, Chennai",Nungambakkam,"Nungambakkam, Chennai",80.251865,13.066762,North Indian,1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.6,Dark Green,Excellent,1753 +70894,Maplai,1,Chennai,"14, Sterling Avenue, Nungambakkam, Chennai",Nungambakkam,"Nungambakkam, Chennai",80.23644167,13.06418056,"South Indian, Chettinad",1000,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,1714 +73279,Paradise,1,Chennai,"392, Anjali Devi Towers Kandanchavadi, OMR, Perungudi, Chennai",Perungudi,"Perungudi, Chennai",80.24998214,12.97279291,"Biryani, North Indian",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,1317 +69951,L'amandier,1,Chennai,"57, 2nd Main Road, RA Puram, Chennai",RA Puram,"RA Puram, Chennai",80.25479067,13.02701773,"European, Cafe, Italian",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.3,Green,Very Good,1607 +72497,Palmshore,1,Chennai,"Plot 8, Park Dugar, Mount Poonamallee High Road, Ramapuram, Chennai",Ramapuram,"Ramapuram, Chennai",80.17456822,13.02627908,"North Indian, Mughlai, Chinese, South Indian",850,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.4,Green,Very Good,645 +65413,Palmshore,1,Chennai,"111/108, Santhome High Road, Foreshore Estate, Santhome, Chennai",Santhome,"Santhome, Chennai",80.2752348,13.02628637,"North Indian, Mughlai, Chinese, South Indian",850,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.3,Green,Very Good,742 +70497,Basil With A Twist,1,Chennai,"58-A, Habibullah Road, T. Nagar, Chennai",T. Nagar,"T. Nagar, Chennai",80.24226844,13.04964535,"Continental, Cafe, Spanish, Italian, European, Greek, Mediterranean",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.5,Dark Green,Excellent,1210 +65055,Barbeque Nation,1,Chennai,"Shri Devi Park Hotel, 1, Hanumantha Road, North Usman Road, T. Nagar, Chennai",T. Nagar,"T. Nagar, Chennai",80.23311,13.045479,"North Indian, Continental",2000,Indian Rupees(Rs.),No,No,No,No,4,4.4,Green,Very Good,3848 +18384227,AB's - Absolute Barbecues,1,Chennai,"Velachery Tharamani Link Road, Opposite TCS, Velachery, Chennai",Velachery,"Velachery, Chennai",80.231598,12.981615,"North Indian, European, Mediterranean",1600,Indian Rupees(Rs.),No,No,No,No,3,4.9,Dark Green,Excellent,859 +72604,Coal Barbecues,1,Chennai,"17-18, Rajalakshmi Nagar, 7th Cross Street, 100 Feet Bypass Road, Velachery, Chennai",Velachery,"Velachery, Chennai",80.21811381,12.98604688,"North Indian, Mediterranean, Asian, Arabian",1400,Indian Rupees(Rs.),No,No,No,No,3,4.6,Dark Green,Excellent,1267 +66457,Pind,1,Chennai,"2, Sarathy Nagar, 1st Main Road, Velachery, Chennai",Velachery,"Velachery, Chennai",80.221898,12.975996,"North Indian, Chinese",900,Indian Rupees(Rs.),Yes,No,No,No,2,4,Green,Very Good,2272 +18260777,Kuchi n Kream,1,Coimbatore,"353/1, Hotel Landmark Complex, Bharathiaar Road, Gandhipuram, Coimbatore",Gandhipuram,"Gandhipuram, Coimbatore",76.9720757,11.01629845,"Cafe, Continental, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,3,4.6,Dark Green,Excellent,202 +3000107,Haribhavanam Hotel,1,Coimbatore,"2, Bharathi Colony, Peelamedu, Coimbatore",Peelamedu,"Peelamedu, Coimbatore",76.995667,11.022477,"South Indian, Chettinad, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,318 +3000132,Kites Cafe,1,Coimbatore,"267, B.R. Puram, Near Royal Enfield Showroom, Avinashi Road, Peelamedu, Coimbatore",Peelamedu,"Peelamedu, Coimbatore",77.015393,11.025083,Cafe,400,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,124 +3000122,Zucca Pizzeria,1,Coimbatore,"GRG College Road, Opposite Rajasree Ford Showroom, Peelamedu, Coimbatore",Peelamedu,"Peelamedu, Coimbatore",77.00700302,11.02483917,Pizza,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,274 +3001032,Burger Ka Baap,1,Coimbatore,"Avinashi Road, Near PSG College Of Technology, Peelamedu, Coimbatore",Peelamedu,"Peelamedu, Coimbatore",76.99959444,11.02216944,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,147 +3000021,The Cascade Restaurant,1,Coimbatore,"479-B1, Avinashi Road, Near Suguna Kalyana Mandapam, Peelamedu, Coimbatore",Peelamedu,"Peelamedu, Coimbatore",76.99501667,11.02127778,Chinese,1200,Indian Rupees(Rs.),No,Yes,No,No,3,4.1,Green,Very Good,243 +18434000,24 Plus Cafe & Restaurant,1,Coimbatore,"1A, Pollachi Main Road, Eachanari, Podanur, Coimbatore",Podanur,"Podanur, Coimbatore",76.971082,10.96185,"Continental, Fast Food, Desserts, Indian",450,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,24 +3000195,Valarmathi Kongunaatu Samayal,1,Coimbatore,"207/A, CSI Compound, Opposite Photo Centre, Race Course, Coimbatore",Race Course,"Race Course, Coimbatore",76.976268,11.001852,"South Indian, Biryani",350,Indian Rupees(Rs.),No,No,No,No,2,4.5,Dark Green,Excellent,380 +3000126,Bird On Tree,1,Coimbatore,"28, Opposite Circuit House, Behind HDFC, Race Course, Coimbatore",Race Course,"Race Course, Coimbatore",76.98431119,11.00863836,"Continental, Chinese, Thai, Malaysian, North Indian",1200,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,221 +18280306,Tim's Bistro,1,Coimbatore,"156, Race Course Road, Race Course, Coimbatore",Race Course,"Race Course, Coimbatore",76.9754397,11.0030085,"North Indian, Continental",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,85 +3001489,Batlivala & Khanabhoy,1,Coimbatore,"122, 4th Floor, Appusamy Layout, Red Fields, Race Course, Coimbatore",Race Course,"Race Course, Coimbatore",76.98624135,11.00175265,"Parsi, North Indian",1200,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,40 +3000770,Cafe Totaram,1,Coimbatore,"245/1, Near Veejay Hall, Raheja Apartment, Race Course, Coimbatore",Race Course,"Race Course, Coimbatore",76.98187642,11.00076241,"Cafe, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,132 +3000062,Cream Centre,1,Coimbatore,"128/180, Orbit Avenue, Thirugnanasambandam Road, Opposite Bishop Appasamy College, Gopalapuram, Race Course, Coimbatore",Race Course,"Race Course, Coimbatore",76.97649444,11.00366944,"North Indian, Chinese, Italian, Mexican",1000,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,203 +3000016,On The Go,1,Coimbatore,"167, Race Course Road, Gopalapuram, Race Course, Coimbatore",Race Course,"Race Course, Coimbatore",76.975525,11.00368056,"Italian, North Indian, Desserts",1500,Indian Rupees(Rs.),No,No,No,No,4,4,Green,Very Good,215 +3000014,Sree Annapoorna,1,Coimbatore,"75, East Arokiasamy Road, RS Puram, Coimbatore",RS Puram,"RS Puram, Coimbatore",76.95173611,11.00668611,"South Indian, North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,225 +3000001,That's Y Food,1,Coimbatore,"24/49, TV Swamy Road East, Opposite Emeral Building, RS Puram, Coimbatore",RS Puram,"RS Puram, Coimbatore",76.95295,11.010375,"North Indian, Biryani",1400,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,299 +3001321,CakeBee,1,Coimbatore,"6/1, SRP Nagar, Saibaba Colony, Coimbatore",Saibaba Colony,"Saibaba Colony, Coimbatore",76.94465239,11.02611735,"Bakery, Desserts",350,Indian Rupees(Rs.),No,Yes,No,No,2,4.9,Dark Green,Excellent,200 +3000996,Yari,1,Coimbatore,"69, Bharathi Park, 6th Cross, Saibaba Colony, Coimbatore",Saibaba Colony,"Saibaba Colony, Coimbatore",76.940432,11.02091,"North Indian, Chinese, Street Food",700,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,221 +3001065,Cream Stone,1,Coimbatore,"Creamstone , 1335, Avinashi Road, Opposite Bharath Petrol Bunk, Peelamedu, Coimbatore","SMS Hotel, Peelamedu","SMS Hotel, Peelamedu, Coimbatore",76.9983492,11.02229761,"Desserts, Ice Cream",300,Indian Rupees(Rs.),No,No,No,No,1,4.3,Green,Very Good,161 +3000048,Barbeque Nation,1,Coimbatore,"6th Floor, Metro Park Inn, 1000, Raja Street, Near Clock Tower, Town Hall, Coimbatore",Town Hall,"Town Hall, Coimbatore",76.96330278,10.99413611,"North Indian, European, Mediterranean",1400,Indian Rupees(Rs.),No,No,No,No,3,4.4,Green,Very Good,505 +3500012,The Punjabi Essence Restaurant,1,Dehradun,"27 B, Near Premier Plaza, Rajpur Road, Chukkuwala, Dehradun",Chukkuwala,"Chukkuwala, Dehradun",0,0,"North Indian, Chinese",800,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,102 +3500007,Tirupati Restaurant,1,Dehradun,"27 B, Rajpur Road, Opposite St. Joseph's Academy, Chukkuwala, Dehradun",Chukkuwala,"Chukkuwala, Dehradun",0,0,"South Indian, North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,115 +3500017,Anandam,1,Dehradun,"69, Krishna Tower, Rajpur Road, Hathibarkala Salwala, Dehradun",Hathibarkala Salwala,"Hathibarkala Salwala, Dehradun",78.053162,30.335259,"Desserts, North Indian, Chinese, South Indian, Fast Food, Street Food",650,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,141 +3500018,Town Table Restaurant,1,Dehradun,"101, Rajpur Road, Hathibarkala Salwala, Dehradun",Hathibarkala Salwala,"Hathibarkala Salwala, Dehradun",78.060221,30.340722,"North Indian, Chinese, Continental",1000,Indian Rupees(Rs.),No,No,No,No,4,3.9,Yellow,Good,173 +3500011,Kalsang Friends Corner,1,Dehradun,"88 A, Opposite Osho, Chander Lok Colony, Rajpur Road, Hathibarkala Salwala, Dehradun",Hathibarkala Salwala,"Hathibarkala Salwala, Dehradun",78.062543,30.346994,"Chinese, Thai, Tibetan",750,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,406 +18416632,The Great Indian Pub,1,Dehradun,"138/345, Rajpur Road, Jakhan, Dehradun",Jakhan,"Jakhan, Dehradun",78.06802238,30.36128079,North Indian,1500,Indian Rupees(Rs.),No,No,No,No,4,4.9,Dark Green,Excellent,50 +18279289,BMG - All Day Dining,1,Dehradun,"140 A, Rajpur Road, Jakhan, Dehradun",Jakhan,"Jakhan, Dehradun",78.06888981,30.36268594,"Chinese, North Indian, Fast Food",0,Indian Rupees(Rs.),No,No,No,No,1,4.3,Green,Very Good,63 +18408585,Punjab Grill,1,Dehradun,"Rajpur Road, Jakhan, Dehradun",Jakhan,"Jakhan, Dehradun",78.067079,30.359722,"Mughlai, North Indian",1250,Indian Rupees(Rs.),No,No,No,No,4,4,Green,Very Good,98 +3500059,TBistro,1,Dehradun,"Saina Inn, 3, Old Survey Road, Karanpur, Dehradun",Karanpur,"Karanpur, Dehradun",78.054222,30.332735,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,230 +3500081,Y Cafe & Restaurant,1,Dehradun,"Hotel White House, Behind St. Joseph's Academy, Subhash Road, Karanpur, Dehradun",Karanpur,"Karanpur, Dehradun",78.049117,30.328174,Cafe,500,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,94 +17971273,Eddie's Patisserie,1,Dehradun,"102 Yamuna Colony, Above Punjab National Bank, Chakrata Road, Dehradun",Krishna Nagar,"Krishna Nagar, Dehradun",0,0,Bakery,350,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,64 +3500365,First Gear Cafe,1,Dehradun,"Khala Gaon, Near Shiv Mandir, Malsi, Dehradun",Malsi,"Malsi, Dehradun",0,0,"Cafe, Chinese",700,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,131 +3500013,Dunkin Donuts,1,Dehradun,"UG 03, Pacific Mall, Rajpur Road, Jakhan, Dehradun","Pacific Mall, Jakhan","Pacific Mall, Jakhan, Dehradun",78.070453,30.366322,"Burger, Desserts",600,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,101 +3500024,Doon Darbar,1,Dehradun,"43, Gandhi Road, Paltan Bazaar, Dehradun",Paltan Bazaar,"Paltan Bazaar, Dehradun",78.04026667,30.31952778,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,121 +3500488,Razzmatazz,1,Dehradun,"5, Pritam Road, Dalanwala, Near Race Course, Dehradun",Race Course,"Race Course, Dehradun",0,0,Cafe,400,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,39 +3500505,Barbeque Nation,1,Dehradun,"Chaudhary Plaza, Rajpur Road, Rajpur, Dehradun",Rajpur,"Rajpur, Dehradun",78.061187,30.3425093,"North Indian, Mediterranean, Asian, Chinese",1600,Indian Rupees(Rs.),No,No,No,No,4,4.4,Green,Very Good,66 +3500010,Black Pepper Restaurant,1,Dehradun,"3, Astley Hall, Rajpur Road, Rajpur, Dehradun",Rajpur,"Rajpur, Dehradun",78.046106,30.327968,"North Indian, Chinese",1200,Indian Rupees(Rs.),No,No,No,No,4,4,Green,Very Good,175 +3500414,Cafe Marigold,1,Dehradun,"Near Shehanshahi Ashram, Old Mussorie Road, Rajpur, Dehradun",Rajpur,"Rajpur, Dehradun",0,0,"Cafe, Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,104 +18440677,Jalapenos,1,Dehradun,"Mussourie Diversion, Pacific Hills,Rajpur Road, Rajpur, Dehradun",Rajpur,"Rajpur, Dehradun",78.07715102,30.37220198,"Cafe, Mexican",500,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,68 +3500484,Kalsang AMA Cafe,1,Dehradun,"88, Opposite Osho, Chander Lok Colony, Rajpur Road, Rajpur, Dehradun",Rajpur,"Rajpur, Dehradun",0,0,Cafe,600,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,89 +301728,Desire Foods,1,Faridabad,"G 25/22, Main Road, 40 Feet, Molarband Extension, Badarpur Border, Faridabad",Badarpur Border,"Badarpur Border, Faridabad",77.3066401,28.4900591,"Chinese, Fast Food, Bakery",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +5992,Knight Rock,1,Faridabad,"11/6, Delhi Mathura Road, Near Bharat Petrol Pump, Badarpur Border, Faridabad",Badarpur Border,"Badarpur Border, Faridabad",77.304776,28.4901567,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,16 +301730,Punjab Restaurant,1,Faridabad,"Main 40 Feet Road, Molarband Extension, Badarpur Border, Faridabad",Badarpur Border,"Badarpur Border, Faridabad",77.305563,28.4901368,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,8 +301729,Raju Dhaba,1,Faridabad,"Main 40 Feet Road, Molarband Extension, Badarpur Border, Faridabad",Badarpur Border,"Badarpur Border, Faridabad",77.3061016,28.4900979,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,8 +301731,Rakheja Bakery,1,Faridabad,"Main 40 Feet Road, Molarband Extension, Badarpur Border, Faridabad",Badarpur Border,"Badarpur Border, Faridabad",77.3057446,28.490062,Bakery,100,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,7 +311053,Snax Points,1,Faridabad,"A-68/5, Near Mehra Petrol Pump, Main Tajpur Road, Badarpur Border, Faridabad",Badarpur Border,"Badarpur Border, Faridabad",77.3053835,28.4901198,"Chinese, North Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +9299,Aggarwal Sweet Corner,1,Faridabad,"Badarpur Border Chowk Post, Badarpur Border, Faridabad",Badarpur Border,"Badarpur Border, Faridabad",77.30274167,28.49629167,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +9178,Kashyap Vaishno Dhaba,1,Faridabad,"Near Seble Cinema, Dharamveer Market, Badarpur Border, Faridabad",Badarpur Border,"Badarpur Border, Faridabad",77.303542,28.4959154,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18477319,Total Food Court,1,Faridabad,"B-222, Shishram Complex, Main Market, Badarpur Border, Faridabad",Badarpur Border,"Badarpur Border, Faridabad",0,0,"North Indian, Mughlai, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18433852,The Chaiwalas,1,Faridabad,"Sector 21 A, Asian Hospital, Badhkal Chowk, Badkal Lake, Faridabad",Badkal Lake,"Badkal Lake, Faridabad",77.3000877,28.4262842,Cafe,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304046,Cafe And More,1,Faridabad,"UGF 22, Charmwood Plaza, Eros Garden, Charmwood Village, Faridabad",Charmwood Village,"Charmwood Village, Faridabad",77.2905651,28.4946638,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +309936,Green Chick Chop,1,Faridabad,"UG 58, Charmwood Plaza, Eros Garden Colony, Suraj Kund Road, Charmwood Village, Faridabad",Charmwood Village,"Charmwood Village, Faridabad",77.2905276,28.4946804,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +309927,Kolkata Hot Kathi Rolls,1,Faridabad,"Deepak Complex, Near Eros Garden, Charmwood Village, Faridabad",Charmwood Village,"Charmwood Village, Faridabad",77.2918292,28.4922473,"Fast Food, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,11 +18377449,Aapki Rasoi,1,Faridabad,"HR-227, 60 Feet Road, Pul Pehlad Pur, Charmwood Village, Faridabad",Charmwood Village,"Charmwood Village, Faridabad",77.2918292,28.4990636,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18465871,Fusion Food Corner,1,Faridabad,"158/7, Opposite DDA Flat, Pul Pehlad Pur, Charmwood Village, Faridabad",Charmwood Village,"Charmwood Village, Faridabad",0,0,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18472646,Punjabi Rasoi,1,Faridabad,"1, Deepak Complex, Eros Charmwood Village, Faridabad",Charmwood Village,"Charmwood Village, Faridabad",77.292431,28.4923251,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18037826,Kebab Xpress,1,Faridabad,"Shop 23-24, 2nd Floor, Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad, Faridabad",77.3074479,28.4698631,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,49 +301163,McDonald's,1,Faridabad,"12/7, 2nd Floor, Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad, Faridabad",77.3074479,28.4695043,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,58 +4931,Suruchi,1,Faridabad,"29, 2nd Floor, Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad, Faridabad",77.3074479,28.4701322,"North Indian, South Indian, Gujarati, Rajasthani",700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,233 +1804,Berco's,1,Faridabad,"Shop R-2, 3rd Floor, Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad, Faridabad",77.3072684,28.4700256,"Chinese, Thai",1100,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,508 +312102,Dunkin' Donuts,1,Faridabad,"3, 2nd Floor, Crown Interiorz Mall, Near Toll Bridge, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad, Faridabad",77.3074031,28.4693655,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,98 +18217857,The Chocolate Room,1,Faridabad,"10, 2nd Floor, Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad, Faridabad",77.3074031,28.4693655,"Cafe, Desserts",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,59 +18471268,Baskin Robbin,1,Faridabad,"Ground Floor, Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad, Faridabad",77.3074479,28.469594,Desserts,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18381244,Popcorn Fusion,1,Faridabad,"Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad, Faridabad",77.3074031,28.4693655,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18408041,Subway,1,Faridabad,"SF 25, 2nd Floor, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad, Faridabad",77.3074928,28.4700019,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +311051,KFC,1,Faridabad,"Shops 21-22, 2nd Floor, Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad, Faridabad",77.30706006,28.46980656,"American, Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.1,Red,Poor,57 +18133510,Barbeque Nation,1,Faridabad,"2nd Floor, Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad, Faridabad",77.3073785,28.4698629,North Indian,1600,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,299 +308380,Yo! China,1,Faridabad,"S-2, 2nd Floor, Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad","Crown Interiorz Mall, Sector 35, Faridabad, Faridabad",77.3074031,28.4693655,Chinese,1300,Indian Rupees(Rs.),No,Yes,No,No,3,4.1,Green,Very Good,239 +6077,Giani's,1,Faridabad,"Food Court, Crown Plaza Mall, Sector 15-A, Near, Sector 15, Faridabad","Crown Plaza Mall, Sector 15, Faridabad","Crown Plaza Mall, Sector 15, Faridabad, Faridabad",77.3130127,28.3980691,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,16 +308082,Momo-Cha,1,Faridabad,"Crown Plaza Mall, Sector 15, Faridabad","Crown Plaza Mall, Sector 15, Faridabad","Crown Plaza Mall, Sector 15, Faridabad, Faridabad",77.3130127,28.3979794,Fast Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,16 +309558,Shree Rathnam,1,Faridabad,"LG-28, Crown Plaza Mall, Sector 15-A, Sector 15, Faridabad","Crown Plaza Mall, Sector 15, Faridabad","Crown Plaza Mall, Sector 15, Faridabad, Faridabad",77.3128332,28.397424,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,48 +8128,Mirage Restro Bar,1,Faridabad,"2nd Floor, Crown Plaza Mall, Sector 15-A, Sector 15, Faridabad","Crown Plaza Mall, Sector 15, Faridabad","Crown Plaza Mall, Sector 15, Faridabad, Faridabad",77.3131025,28.3978083,"North Indian, Mughlai",1000,Indian Rupees(Rs.),Yes,No,No,No,3,2.4,Red,Poor,25 +304062,Jai Jagannath Hotel,1,Faridabad,"E 51, Shiv Durga Vihar, Dayal Bagh, Faridabad",Dayal Bagh,"Dayal Bagh, Faridabad",77.294319,28.4937692,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +9785,Gelato Vinto,1,Faridabad,"40 GF, Eldeco Station 1 Mall, Sector 12, Faridabad","Eldeco Station 1 Mall, Sector 12, Faridabad","Eldeco Station 1 Mall, Sector 12, Faridabad, Faridabad",77.3139102,28.3868454,"Desserts, Ice Cream",250,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,12 +312514,Maggi Point,1,Faridabad,"F-46 A, 1st Floor, Eldeco Mall, Sector 12, Faridabad","Eldeco Station 1 Mall, Sector 12, Faridabad","Eldeco Station 1 Mall, Sector 12, Faridabad, Faridabad",77.3140449,28.3869029,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +308961,Angaar,1,Faridabad,"Hotel Saffron Kiran, 12/6, Adjacent to Badarpur Toll, NH-2, Sector 35, Faridabad","Hotel Saffron Kiran, Faridabad","Hotel Saffron Kiran, Faridabad, Faridabad",77.3056977,28.4719854,"North Indian, Chinese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,0 +308963,TcozY,1,Faridabad,"Hotel Saffron Kiran, 12/6, Adjacent to Badarpur Toll, NH-2, Sector 35, Faridabad","Hotel Saffron Kiran, Faridabad","Hotel Saffron Kiran, Faridabad, Faridabad",77.3066401,28.4722089,Cafe,1500,Indian Rupees(Rs.),No,No,No,No,3,0,White,Not rated,0 +308962,The Retriever,1,Faridabad,"Hotel Saffron Kiran, 12/6, Adjacent to Badarpur Toll, NH-2, Sector 35, Faridabad","Hotel Saffron Kiran, Faridabad","Hotel Saffron Kiran, Faridabad, Faridabad",77.3062507,28.4723428,"North Indian, Mughlai, Chinese",1500,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,0 +8169,Bangali Sweets & Restaurant,1,Faridabad,"6, Plot 17, New DLF, Indraprastha Colony, Faridabad",Indraprastha Colony,"Indraprastha Colony, Faridabad",77.3153578,28.4534629,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +309368,Silver,1,Faridabad,"K Hotel, Plot 2, Behind Pristine Mall, Sector 31, Faridabad",K Hotel,"K Hotel, Faridabad",77.316429,28.446715,"North Indian, Chinese, Continental",1500,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,3 +18472429,Chill 'N Grill,1,Faridabad,"3C-188, Opposite Bharat Optical, NIT, Faridabad",NIT,"NIT, Faridabad",77.2900667,28.3954463,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18472418,Punjabi Restaurant,1,Faridabad,"3F/49, Sainik Colony Road, NIT, Faridabad",NIT,"NIT, Faridabad",77.2874809,28.3939512,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18472426,Standard Chicken Point,1,Faridabad,"3F/90, Sainik Colony Road, NIT Faridabad",NIT,"NIT, Faridabad",77.2875524,28.3940171,Mughlai,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18450934,The Grillz & Gravy,1,Faridabad,"3G/1, NIT, Faridabad",NIT,"NIT, Faridabad",77.2922781,28.3982684,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +6025,Cakes 'n Bakes - Park Plaza,1,Faridabad,"Park Plaza, Sector 21 C, Sector 21, Faridabad","Park Plaza, Sector 21, Faridabad","Park Plaza, Sector 21, Faridabad, Faridabad",77.2969459,28.4292178,Bakery,1000,Indian Rupees(Rs.),No,No,No,No,3,3,Orange,Average,15 +6013,Cafe Bite,1,Faridabad,"UGF 35, Parsvanath City Mall, Sector 12, Faridabad","Parsavnath City Mall, Sector 12, Faridabad","Parsavnath City Mall, Sector 12, Faridabad, Faridabad",77.3144487,28.383665,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,19 +8153,Cafe Light,1,Faridabad,"Shop 38, Upper Ground Floor, Parsvnath City Mall, Sector 12, Faridabad","Parsavnath City Mall, Sector 12, Faridabad","Parsavnath City Mall, Sector 12, Faridabad, Faridabad",77.3144877,28.3837046,"Cafe, Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,8 +18471296,Little Cafe,1,Faridabad,"Shop 32, Upper Ground Floor, Parsvnath City Mall, Sector 12, Faridabad","Parsavnath City Mall, Sector 12, Faridabad","Parsavnath City Mall, Sector 12, Faridabad, Faridabad",77.3145373,28.3836738,"Fast Food, Beverages",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18279477,Momo-Cha,1,Faridabad,"J-121, Near Lean Wolf Gym, Sector 10, Faridabad",Sector 10,"Sector 10, Faridabad",77.3291609,28.3754863,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,20 +18359331,Oregano India,1,Faridabad,"Shop 2661, Sector 7-10 Market, YMCA Road, Sector 10, Faridabad",Sector 10,"Sector 10, Faridabad",77.3266079,28.3689797,"Fast Food, Chinese, Italian",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,11 +301151,Sagar Bakery,1,Faridabad,"938, 7-10 Chowk, YMCA Road, Sector 10, Faridabad",Sector 10,"Sector 10, Faridabad",77.3270132,28.3692291,Bakery,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,11 +18204479,Smugglers,1,Faridabad,"Near Big Bus, Sector 9-10 Road, Sector 10, Faridabad",Sector 10,"Sector 10, Faridabad",77.329628,28.3702087,North Indian,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,7 +2198,Welcome,1,Faridabad,"J140, Sector 10, Faridabad",Sector 10,"Sector 10, Faridabad",77.3288978,28.3777541,"North Indian, Chinese",700,Indian Rupees(Rs.),Yes,No,No,No,2,2.9,Orange,Average,13 +18434243,Giani's,1,Faridabad,"Sector 10, Faridabad",Sector 10,"Sector 10, Faridabad",77.3270132,28.3692291,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18273628,Invitation,1,Faridabad,"Invitation Inn Banquet & Rooms, DLF Sector 10, Faridabad",Sector 10,"Sector 10, Faridabad",0,0,North Indian,700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18471262,New Dilight,1,Faridabad,"H - 147, Sector 10, Faridabad",Sector 10,"Sector 10, Faridabad",77.3295018,28.3730138,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18258480,Chimney,1,Faridabad,"SCF 9, Near Bank of India, Sector 11, Faridabad",Sector 11,"Sector 11, Faridabad",77.319026,28.3725172,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,25 +9698,Chopstick,1,Faridabad,"Booth 15, Sector 11, Faridabad",Sector 11,"Sector 11, Faridabad",77.3185858,28.371835,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,22 +8326,Hot & Tasty Chinese Food,1,Faridabad,"18, DLF Market, Sector 11, Faridabad",Sector 11,"Sector 11, Faridabad",77.3184832,28.3719511,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,26 +18270379,Sanjha Chulha,1,Faridabad,"Plot 1-A, Sector 11-D, Sector 11, Faridabad",Sector 11,"Sector 11, Faridabad",77.32157,28.3692881,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,16 +304006,Frontier,1,Faridabad,"Ground Floor, Parsvnath CIty Mall, Sector 12, Faridabad",Sector 12,"Sector 12, Faridabad",77.31429167,28.38339444,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +308957,Oxy Lounge,1,Faridabad,"Town Park, Opposite District Court, Sector 12, Faridabad",Sector 12,"Sector 12, Faridabad",77.3244365,28.384502,"North Indian, Chinese, Italian",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.1,Orange,Average,28 +18427216,City Dhaba,1,Faridabad,"11-12 Dividing Road, Sector 12, Faridabad",Sector 12,"Sector 12, Faridabad",77.3144456,28.3811924,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18433315,Garam Masala,1,Faridabad,"Plot 6, Bata Chowk, BIryaniwali Gali, Sector 12, Faridabad",Sector 12,"Sector 12, Faridabad",0,0,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +8266,Mittal Fast Food,1,Faridabad,"10, Town Park, Sector 12, Faridabad",Sector 12,"Sector 12, Faridabad",77.32425,28.38471389,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18383469,Al Bake,1,Faridabad,"SCF 58, Ground Floor, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3229299,28.395009,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,31 +1367,Anupam Sweet,1,Faridabad,"SCF 74, Sector 15 Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3222568,28.3949008,"North Indian, South Indian, Chinese, Fast Food, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,70 +9650,Cafe Coffee Day,1,Faridabad,"SCF 42, Shopping Centre, Main Huda Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3236112,28.3952671,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,67 +308335,Chicago Pizza,1,Faridabad,"Booth Number 135, Main Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3217184,28.3950296,Pizza,600,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,35 +18391065,Crispy Crust,1,Faridabad,"Shop 19, HUDA Market, Opposite Mother Dairy, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3241683,28.3950992,"North Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,22 +301193,Frontier,1,Faridabad,"SCO 46, Main Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3235114,28.3951274,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,17 +18107832,Gulab,1,Faridabad,"Shop 33, Main Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3239437,28.3952906,"North Indian, South Indian, Fast Food, Street Food, Mithai",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,39 +18089254,Hunger Cure Express,1,Faridabad,"HUDA Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3217312,28.3946937,"Fast Food, Beverages",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,35 +312981,Maitre Patissier,1,Faridabad,"697, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",0,0,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,35 +18082235,Momo-Cha,1,Faridabad,"87, Near City Chemist, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3224363,28.3951869,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,32 +18138421,Nirula's,1,Faridabad,"135, Lower Ground Floor, HUDA Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.292179,28.452631,"Fast Food, Desserts, Ice Cream, Beverages",950,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,14 +18421965,The Grub House,1,Faridabad,"SCF 55, Main Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.323244,28.3950834,"Cafe, North Indian, Chinese, Continental",600,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,17 +303267,Twenty Four Seven,1,Faridabad,"A-45/49, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3234608,28.3950913,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,35 +7471,Cafe Parmesan,1,Faridabad,"42, 1st Floor, HUDA Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3236479,28.3950766,Italian,1000,Indian Rupees(Rs.),No,No,No,No,3,4.5,Dark Green,Excellent,799 +18219542,Briosca,1,Faridabad,"Shop 45, Main Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3234235,28.3952798,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,62 +18355112,Burger Point,1,Faridabad,"Shop 105, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3220773,28.3949736,"Burger, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,24 +18270895,Cafe Grub Up,1,Faridabad,"SCF 43, 2nd Floor, Main Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3235233,28.395196,"Cafe, American, Mexican, Italian, Thai",900,Indian Rupees(Rs.),Yes,No,No,No,2,3.8,Yellow,Good,134 +18313839,Cakes At Bhawanas,1,Faridabad,"418, 1st Floor, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.317231,28.393261,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,26 +5005,Chaudhary Bhojnalaya,1,Faridabad,"HUDA Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3240517,28.3953389,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,93 +1820,Chickenette,1,Faridabad,"11 & 12, Main Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3244107,28.3951035,"Raw Meats, North Indian, Chinese, Fast Food",650,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,280 +3863,Giani,1,Faridabad,"125, Near Gurudwara, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3216428,28.3951385,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,70 +9814,Green Chick Chop,1,Faridabad,"135, Main Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3244107,28.3951932,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,31 +18474912,Hash Stix,1,Faridabad,"Shop 160, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.32343964,28.39483205,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,25 +18161568,Juice On Go,1,Faridabad,"SCF 46-50, 1st Floor, Fitstop Gym, Main Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.32328642,28.39527358,"Juices, Beverages",150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,18 +18416829,Keventers,1,Faridabad,"Booth 125-P, Ground Floor, Huda Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3218081,28.3947688,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,27 +18400756,MD's Kebabs & Curries,1,Faridabad,"Shop 18, Opposite Mother Dairy, Sector 15 Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3244107,28.395283,"North Indian, Mughlai, Chinese",750,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,27 +301177,Perfect Bake,1,Faridabad,"DSS-48, Huda Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.29659833,28.43002333,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,39 +6161,Perfect Bake,1,Faridabad,"SCF 40, Main Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3231543,28.3952545,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,126 +2565,Sethi's Delicacy,1,Faridabad,"9 & 10, Main Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3244651,28.3950376,"Fast Food, Bakery",150,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,75 +3866,Subway,1,Faridabad,"SCF 78, HUDA Market, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.3219427,28.3948264,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,143 +18250288,Caf Bogchi,1,Faridabad,"SCF 39, First Floor, Above Axis Bank, Sector 15, Faridabad",Sector 15,"Sector 15, Faridabad",77.32380275,28.39572041,"Cafe, Italian, Mexican, Continental",650,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,153 +1430,Ashoka Restaurant,1,Faridabad,"Main Market, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3203273,28.4104693,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,43 +18393702,Baskin Robbins,1,Faridabad,"Shop 60, Near Sagar Cinema, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3201927,28.4107707,Ice Cream,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,4 +6152,China Hot Pot,1,Faridabad,"Shop 147, HUDA Market, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3192063,28.4106963,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.5,Orange,Average,25 +306962,Handi Chhadeyan Di,1,Faridabad,"Shop 138, HUDA Market, Near HDFC Bank, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3185323,28.4106593,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,26 +18445360,Hungrill,1,Faridabad,"Booth 110, HUDA Market, Near ICICI Bank, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3190765,28.4108198,"North Indian, Chinese, Continental",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +6150,Kant Khana Khazana,1,Faridabad,"135, Huda Market, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.318667,28.4106772,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,22 +18421024,Open Yard,1,Faridabad,"SCO 22-23, Main Market, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3199015,28.4095652,"North Indian, Chinese, Continental",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,14 +18471260,Recipe Badshah,1,Faridabad,"Shop 98, Sabzi Mandi, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",0,0,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +18367316,The Chai Cafe,1,Faridabad,"Shop 123, HUDA Market, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3185772,28.4108878,"Cafe, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +18466931,Apna Restaurant,1,Faridabad,"Booth 146, HUDA Market, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3190262,28.4105451,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18466420,Chaudhary Chaap & Chinese,1,Faridabad,"Shop 137, Huda Market, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3187017,28.4106649,"Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18464607,Chings Chinese,1,Faridabad,"Near Gold Gym, Behind Petro Pump Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3200132,28.4118307,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18464631,Food On Wheels,1,Faridabad,"Near Gold Gym, Behind Petrol Pump, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3202824,28.4120355,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +301170,Gulshan Hotel,1,Faridabad,"Booth 2, Main Huda Market, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3203273,28.4104693,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18466939,Maa Kali Foods,1,Faridabad,"SCO 35, HUDA Market, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3196991,28.4104999,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18380180,The Street Kitchen,1,Faridabad,"Shop 139, Main HUDA Market, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3185772,28.4107084,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18466407,United Kitchen,1,Faridabad,"2nd Floor, SCO 95, HUDA Market, Sector 16, Faridabad",Sector 16,"Sector 16, Faridabad",77.3189708,28.4120254,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +304001,Eat N Treat,1,Faridabad,"145, Main Market, Sector 17, Faridabad",Sector 17,"Sector 17, Faridabad",77.3266023,28.4101024,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,20 +8319,Hotel Ekant,1,Faridabad,"12 - 14, Sector 17, Faridabad",Sector 17,"Sector 17, Faridabad",77.329167,28.4101795,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,39 +303871,Momo-Cha,1,Faridabad,"31, Near HDFC Bank ATM, Sector 17 Market, Sector 17, Faridabad",Sector 17,"Sector 17, Faridabad",77.3288978,28.4106029,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,56 +8321,Paradise Inn,1,Faridabad,"124, Near OBC Bank, Sector 17 Market, Faridabad, Sector 17, Faridabad",Sector 17,"Sector 17, Faridabad",77.3275764,28.4103725,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,43 +311047,Red Chilli,1,Faridabad,"Shop 140, Back Side, Main Market, Sector 17, Faridabad",Sector 17,"Sector 17, Faridabad",77.326744,28.4099515,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,9 +8320,Shiv Restaurant,1,Faridabad,"122 & 123, HUDA Market, Sector 17, Faridabad",Sector 17,"Sector 17, Faridabad",77.3278324,28.4101647,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,20 +8308,Sohan Sweets & Namkeen,1,Faridabad,"115 & 116, Sector 17, Faridabad",Sector 17,"Sector 17, Faridabad",77.3279106,28.4103306,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,41 +18303717,The Binge Box Cafe,1,Faridabad,"1st Floor, 110, HUDA Market, Sector 17, Faridabad",Sector 17,"Sector 17, Faridabad",77.3279106,28.4105998,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,18 +304004,Tmos Moving Feast,1,Faridabad,"156, Main Market, Sector 17, Faridabad",Sector 17,"Sector 17, Faridabad",77.32609671,28.4101156,"Chinese, North Indian",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,76 +18472625,Tmos Cafe Corner,1,Faridabad,"Shop 164, Huda Market, Sector 17, Faridabad",Sector 17,"Sector 17, Faridabad",77.326227,28.409801,Cafe,700,Indian Rupees(Rs.),Yes,Yes,No,No,2,0,White,Not rated,1 +18420432,Parkash Dhaba,1,Faridabad,"Shop 32, HUDA Market, Sector 19, Faridabad",Sector 19,"Sector 19, Faridabad",77.3138205,28.417529,"North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +9824,Sanjha Chulha,1,Faridabad,"Booth 16, Part 2 Market, Sector 19, Faridabad",Sector 19,"Sector 19, Faridabad",77.3144487,28.4175882,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,219 +8029,Hareram Bikanerzaika,1,Faridabad,"77 & 78, HUDA Market, Opposite Community Centre, Sector 21 C, Near Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",77.2969594,28.4304159,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +312788,Kulcha Paaji,1,Faridabad,"Opposite 21-C Market, Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",77.2967664,28.4317132,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +309672,Shree Bikaner Misthan Bhandar,1,Faridabad,"DSS 44, Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",77.2964432,28.4301217,"Street Food, South Indian, Mithai",350,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,13 +18359861,"The Hub - Gourmet, Bakers & More",1,Faridabad,"Asian Institute of Medical Sciences, Badkal Flyover, Sector 21 A, Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",0,0,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +18439547,Anand Dhaba,1,Faridabad,"DSS-38, Sector 21C Market, Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",77.2963379,28.4298355,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18241538,Bikaneri Sweets & Restaurant,1,Faridabad,"Ankhir Road, Near Union Bank, Opposite Sector 21-D, Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",0,0,"Mithai, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18452730,Delicieux Ice Cream Rolls,1,Faridabad,"Shop 73, Main Market, Sector 21 C, Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",77.2969354,28.4300562,"Ice Cream, Desserts, Beverages",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18317486,Flying Tandoor,1,Faridabad,"Shop 57, Sector 21D Market, Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",77.291919,28.4221037,"North Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18432933,Food Station,1,Faridabad,"G-5, Post Office Gali, Indra Enclave, Sector 21-D, Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",0,0,"North Indian, Mughlai, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18452267,Grub Hub,1,Faridabad,"Shop 11, HUDA Main Market, Behind Park Plaza Hotel, Sector 21-C, Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",77.2964494,28.4296999,Asian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18466980,Punjabi Chulha,1,Faridabad,"Shop 16, Sector 21C, Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",77.2965369,28.4298396,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18469937,Purani Dilli Da Swad,1,Faridabad,"Shop 52, Sector 21C Market, Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",77.2966226,28.4301909,"Street Food, Fast Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18466937,The BBQ Garden,1,Faridabad,"Plot 1, Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",0,0,"North Indian, Seafood",700,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,0 +18433879,The Chaiwalas,1,Faridabad,"Asian Institute of Medical Sciences, Near Badhkal Road, Sector 21, Faridabad",Sector 21,"Sector 21, Faridabad",77.3002223,28.4263417,Cafe,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18369105,Funk House Cafe,1,Faridabad,"Plot 2347, Near Sector 28 Metro Station, Sector 28, Faridabad",Sector 28,"Sector 28, Faridabad",77.31297973,28.43892133,"Cafe, Italian, Salad",650,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,15 +18133473,Shiksha Fast Food,1,Faridabad,"13, Near Water Tank, HUDA Market, Sector 28, Faridabad",Sector 28,"Sector 28, Faridabad",77.315069,28.4353341,"Fast Food, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +18458540,Hungry Head,1,Faridabad,"Near Reliance Fresh, Huda Market, Sector 28, Faridabad",Sector 28,"Sector 28, Faridabad",77.3150688,28.4353375,"Street Food, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18482753,Tandoori Hut,1,Faridabad,"Shop 77-78, Near Balaji Sweets, Main Huda Market Sector 28, Faridabad",Sector 28,"Sector 28, Faridabad",0,0,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +8167,Lalit Kathi Rolls Momos,1,Faridabad,"Main HUDA Market, Sector 29, Faridabad",Sector 29,"Sector 29, Faridabad",77.3211256,28.4334516,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +18463990,Tamasha In Tafree,1,Faridabad,"2nd Floor, Main HUDA Market, Sector 29, Faridabad",Sector 29,"Sector 29, Faridabad",77.3212535,28.4334249,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18353030,Oh My!,1,Faridabad,"Shop 45, Ground floor, SLF MALL, IP Colony, Sector 30, Faridabad",Sector 30,"Sector 30, Faridabad",0,0,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18420465,Butter & Grace,1,Faridabad,"14/5, SRS Tower, Ground Floor, Sector 31, Faridabad",Sector 31,"Sector 31, Faridabad",77.309147,28.446933,"North Indian, Chinese, Italian, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,7 +309656,Green Chick Chop,1,Faridabad,"DSS 24, Shopping Centre, Sector 31, Faridabad",Sector 31,"Sector 31, Faridabad",77.317127,28.4465451,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +305235,Snacks Bar,1,Faridabad,"Near Pristine Mall, Sector 31, Faridabad",Sector 31,"Sector 31, Faridabad",77.315795,28.4452616,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +309654,Ahata,1,Faridabad,"Huda Market, Sector 31, Faridabad",Sector 31,"Sector 31, Faridabad",77.31723889,28.44589444,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18480389,Fritrolla,1,Faridabad,"Choudhary Hetram Complex, 30-31 Dividing Road, Sector 31, Faridabad",Sector 31,"Sector 31, Faridabad",0,0,Desserts,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18446428,KitchenYard,1,Faridabad,"13/6, Mathura Road, SSR Cooperate Park, Opp NHPC Chowk Metro Station, Sector 31, Faridabad",Sector 31,"Sector 31, Faridabad",0,0,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +4462,Meghansh Bakery,1,Faridabad,"DSS-28, Sector 31, Faridabad",Sector 31,"Sector 31, Faridabad",77.3170515,28.4466361,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18469962,Oh My !,1,Faridabad,"Ground Floor, 45 SLF Mall, IP Colony, Sector-30-33, Faridabad",Sector 31,"Sector 31, Faridabad",77.3159508,28.4549967,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18380284,The Dark Hour - Kitchen,1,Faridabad,"Block 7, Spring Fields Colony, Sector 31, Faridabad",Sector 31,"Sector 31, Faridabad",0,0,Italian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +1414,Anupama Sweets & Family Restaurant,1,Faridabad,"SCF 3, Ashoka Enclave Part 1, Near Kanishka Tower, Sector 34, Faridabad",Sector 34,"Sector 34, Faridabad",77.3149118,28.4718644,"Mithai, North Indian, South Indian, Chinese, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,28 +304112,Shree Rathnam,1,Faridabad,"Ground Floor, Ridhi Sidhi Plaza, Ashoka Main, Sector 34, Faridabad",Sector 34,"Sector 34, Faridabad",77.3107195,28.471413,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,29 +18472443,Bikaner Misthan Bhandar,1,Faridabad,"Ground Floor, Ridhi Sidhi Plaza, Ashoka Main, Sector 35, Faridabad",Sector 35,"Sector 35, Faridabad",77.3108138,28.471302,"Mithai, Street Food, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18456807,King's Kitchen,1,Faridabad,"SCF-1, Shop 5, Ashoka Enclave Main, Sector 35, Faridabad",Sector 35,"Sector 35, Faridabad",77.3108138,28.471302,"North Indian, Mughlai, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18471284,Muradabadi Chicken Biryani Corner,1,Faridabad,"12/4, Sarai Khawaja, Banarasi Market, Near Toll Gate, Main Mathura Road, Sector 37, Faridabad",Sector 35,"Sector 35, Faridabad",77.3060306,28.4749127,Mughlai,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18471328,The Black Kettle,1,Faridabad,"Ground Floor, Ridhi Sidhi Plaza, Ashoka Main, Sector 35, Faridabad",Sector 35,"Sector 35, Faridabad",77.3105616,28.4711559,"Fast Food, Beverages",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18204478,Desi Tadka,1,Faridabad,"Shop 1, Devi Sahai Market, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.30693936,28.48429689,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,6 +18444264,Destination Live,1,Faridabad,"Shop 5, 12/2, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3062811,28.4807864,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,12 +9224,Kay's Bake Land,1,Faridabad,"14, Huda Market, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3116575,28.480381,"Bakery, Desserts",150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,19 +8054,Kay's Food Land,1,Faridabad,"129, HUDA Shopping Centre, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3104099,28.4805482,"Bakery, Desserts",100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +304114,Laziz Restaurant,1,Faridabad,"Shop 14, Devi Sahai Market, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.30677778,28.48426667,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,11 +1413,Le Chef Restro Bar,1,Faridabad,"SCF 146/37, HUDA Complex, Delhi Badarpur Border, Near Main Mathura Road, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3104996,28.480467,"North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,2.7,Orange,Average,70 +1715,Republic of Chicken,1,Faridabad,"106, Huda Market, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3107689,28.4805821,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,18 +4464,Tanishka Restaurant & Caterers,1,Faridabad,"Shop 44, Huda Market, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3113972,28.4805517,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,14 +5010,The Tandoori Times,1,Faridabad,"22, HUDA Market, Main Road, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3115506,28.4804188,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,48 +301127,Twist of Italy,1,Faridabad,"92, HUDA Market, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3109543,28.4807634,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,52 +9233,Aggarwal Sweets And Caterers,1,Faridabad,"Anangpur Dairy, Devi Sahay Market, Near, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3066403,28.48420819,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18471246,Biryani Bot,1,Faridabad,"HUDA Market, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.311746,28.4805778,Biryani,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18446082,Caf Kitchen,1,Faridabad,"Shop 65, HUDA Market, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3114869,28.4808293,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18396398,Evergreen Sweets & Restaurant,1,Faridabad,"SCF 147, hUDA Market, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3106046,28.4803991,"North Indian, South Indian, Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18471244,Magic Spice Wok,1,Faridabad,"Shop 53, HUDA Market, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3113363,28.4806939,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18367078,Magical Momos,1,Faridabad,"Huda Market, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3104099,28.4806379,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18469976,Sam's Bake Shop,1,Faridabad,"Shop 121, HUDA Market, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3103201,28.4808985,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18381643,Shri Bikaner Misthan Bhandar,1,Faridabad,"Sher Shah Suri Road Rajaram Market, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3092797,28.4773757,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18471327,Tasty Dhaba Family Restaurant,1,Faridabad,"12/4, Sarai Khawaja, Banarasi Market, Near Toll Gate, Main Mathura Road, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3060567,28.474531,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18469936,U & I,1,Faridabad,"Shop 15, Main Road, Sector 37, Faridabad",Sector 37,"Sector 37, Faridabad",77.3056065,28.4807304,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18433895,Cravings,1,Faridabad,"Shop 6, SCO C-3166, Lower Ground Floor, Pujara Complex, Green Fields Colony, Sector 41, Faridabad",Sector 41,"Sector 41, Faridabad",77.28759091,28.46626355,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +313089,Evergreen Tandoori Night,1,Faridabad,"C-3548, Basement, Greenfield, Sector 41, Faridabad",Sector 41,"Sector 41, Faridabad",77.28919957,28.46191014,North Indian,550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18349251,Prelibato,1,Faridabad,"3176, C Block Market, Green Field Colony, Sector 41, Faridabad",Sector 41,"Sector 41, Faridabad",0,0,"Italian, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18344478,Aravali Owls,1,Faridabad,"B-263, Green Field Colony, Sector 42, Faridabad",Sector 42,"Sector 42, Faridabad",0,0,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18089775,Chicken Inn Family Meat Shop,1,Faridabad,"B-204, Green Field Colony, Sector 42, Faridabad",Sector 42,"Sector 42, Faridabad",77.30027778,28.46118611,"Raw Meats, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18424179,Mother's Kitchen,1,Faridabad,"B-1212, Ground Floor, Front Side, Green Fields Colony, Main Road, Sector 42, Faridabad",Sector 42,"Sector 42, Faridabad",0,0,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +309632,Domino's Pizza,1,Faridabad,"Ground Floor, Plot 201, Block B, Greenfield Colony, Sector 43, Faridabad",Sector 43,"Sector 43, Faridabad",77.3001795,28.4609554,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,10 +312874,Green Chick Chop,1,Faridabad,"Shop 15, Omaxe Hills And Forest Spa, Surajkund Road, Sector 43, Faridabad",Sector 43,"Sector 43, Faridabad",77.2886873,28.460556,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,5 +18107870,Punjabi Culture,1,Faridabad,"B-474, Greenfield Plaza, Sector 43, Faridabad",Sector 43,"Sector 43, Faridabad",77.2978395,28.4622059,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +18237362,Three Olives,1,Faridabad,"B-102, Green Field Colony, Sector 43, Faridabad",Sector 43,"Sector 43, Faridabad",77.30083365,28.46227858,"Italian, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +18277177,Aggarwal's Bikaner Mishthan Bhandar,1,Faridabad,"Anangpur Chowk, Opposite Omaxe Tower, Sector 43, Faridabad",Sector 43,"Sector 43, Faridabad",77.2847783,28.46117,"Mithai, South Indian, Chinese, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18345740,Aravalli Owls,1,Faridabad,"B - 263, Green Field Colony, Sector 43, Faridabad",Sector 43,"Sector 43, Faridabad",0,0,"North Indian, Chinese, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18472651,Chatny Delight,1,Faridabad,"B-205, Green Field Colony, Sector 43, Faridabad",Sector 43,"Sector 43, Faridabad",77.2988233,28.4621065,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +313076,Harmann Restaurant,1,Faridabad,"3256, C Block, Greenfields Colony, Sector 43, Faridabad",Sector 43,"Sector 43, Faridabad",77.29056667,28.46681111,"North Indian, South Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18380159,Kulcha King,1,Faridabad,"Opposite Omaxe Forest, Main Surajkund Road, Anangpur Chowk, Sector 41-42, Near Sector 43, Faridabad",Sector 43,"Sector 43, Faridabad",77.2845595,28.4601453,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18377907,Royal Bakers,1,Faridabad,"B 229, Shop 3, Greenfield Colony, Sector 43, Faridabad",Sector 43,"Sector 43, Faridabad",77.2999207,28.4614258,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18292444,Touch of Spice,1,Faridabad,"B-195, City Square Complex, Green Field Colony, Sector 43, Faridabad",Sector 43,"Sector 43, Faridabad",77.29738433,28.46210674,"Chinese, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +307084,Hunger Cure,1,Faridabad,"SCF 76, HUDA Market, Sector 46, Faridabad",Sector 46,"Sector 46, Faridabad",77.2983871,28.4376977,"Fast Food, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,47 +305618,Sanjha Chulha,1,Faridabad,"55, HUDA Market, Sector 46, Faridabad",Sector 46,"Sector 46, Faridabad",77.2983353,28.4375489,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,79 +307803,Queens Cakes,1,Faridabad,"SCO 63, Above Indian Overseas Bank, 1st Floor, Main Market, Sector 46, Faridabad",Sector 46,"Sector 46, Faridabad",77.2984265,28.4370903,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,29 +18419654,Sri Meenakshi South Indian Food,1,Faridabad,"HUDA Market, Sector 46, Faridabad",Sector 46,"Sector 46, Faridabad",77.2990075,28.4375707,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18471285,Sardar A Pure Meat Shop,1,Faridabad,"Shop 5, Ground Floor, Achievers Mall, Near Sainik Colony, Sector 49, Faridabad",Sector 49,"Sector 49, Faridabad",77.2670505,28.3959758,"Raw Meats, Fast Food, North Indian",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +313040,Invitation Restaurant,1,Faridabad,"SCF 68, HUDA Market, Sector 7, Faridabad",Sector 7,"Sector 7, Faridabad",77.3239171,28.363238,"North Indian, South Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,17 +17982346,Kaushik Bakery,1,Faridabad,"SCF Complex 58, Huda Market, Sector 7, Faridabad",Sector 7,"Sector 7, Faridabad",77.3241415,28.3632142,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,9 +18204501,Rama Vaishnav Bhojnalaya,1,Faridabad,"Shop 140, Main Market, Sector 7, Faridabad",Sector 7,"Sector 7, Faridabad",77.3259973,28.3638989,"North Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +1823,Shiv Saras Vyanjan,1,Faridabad,"Shop 2398, Sector 7-A, Near, Sector 7, Faridabad",Sector 7,"Sector 7, Faridabad",77.3282696,28.3691677,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +6143,Shree Bikaner Misthan Bhandar,1,Faridabad,"2613, YMCA Road, Sector 7, Faridabad",Sector 7,"Sector 7, Faridabad",77.32705828,28.36942587,"Mithai, Bakery, Street Food, Chinese, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +8297,Shree Bikaner Misthan Bhandar,1,Faridabad,"21, HUDA Market, Sector 7, Faridabad",Sector 7,"Sector 7, Faridabad",77.3264093,28.3633036,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,15 +8318,Standard Family Restaurant,1,Faridabad,"31, Main Market, Sector 7, Faridabad",Sector 7,"Sector 7, Faridabad",77.3260374,28.3633487,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,16 +18458631,The Hunger End,1,Faridabad,"Shop 2385, Sector 7A, Near Sector 7, Faridabad",Sector 7,"Sector 7, Faridabad",77.3285388,28.3686544,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +18382355,Pizza Express,1,Faridabad,"Shop 232, HUDA Market, Sector 7, Faridabad",Sector 7,"Sector 7, Faridabad",77.3262953,28.3630576,"Pizza, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +312842,Anupam Sweets & Restaurant,1,Faridabad,"Sai Plaza, Opposite Sai Dham, Tigaon Road, Sector 86, Faridabad",Sector 86,"Sector 86, Faridabad",77.3396661,28.4087438,"North Indian, Chinese, Fast Food",450,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,10 +312084,Caramel,1,Faridabad,"Omaxe Heights Club, Sector 86, Faridabad",Sector 86,"Sector 86, Faridabad",77.33637929,28.40775168,"North Indian, Chinese, Continental",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,9 +18247033,Chaska Restaurant,1,Faridabad,"Shop 72, Near Omaxe Heights, Gate 2, Sector 86, Faridabad",Sector 86,"Sector 86, Faridabad",77.3364513,28.4086778,"North Indian, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,24 +18126118,Club Pizzeria,1,Faridabad,"Shop 7, Sai Complex, Opposite Sai Dham, Tigaon Road, Sector 86, Faridabad",Sector 86,"Sector 86, Faridabad",77.3397558,28.4085728,Pizza,550,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,19 +18429393,Gupha,1,Faridabad,"SRS Royal Hills, Near Club Sec 87, Sector 86, Faridabad",Sector 86,"Sector 86, Faridabad",77.34231301,28.41226833,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,8 +18241905,Indian Gourmet,1,Faridabad,"Plot 6, Tigaon Road, Sector 86, Faridabad",Sector 86,"Sector 86, Faridabad",77.3409272,28.4081056,"North Indian, Chinese, Raw Meats",450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +18425750,Tandoori Zaaika's,1,Faridabad,"Tigaon Road, Near Omaxe, Sector 86, Faridabad",Sector 86,"Sector 86, Faridabad",77.336292,28.4102194,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,39 +18261694,TCD Cake & Bake,1,Faridabad,"Shop 121, Sai Dham Road, Near Omaxe Chowk, Sector 86, Faridabad",Sector 86,"Sector 86, Faridabad",77.3372048,28.4098256,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +18365998,The Grill Darbar,1,Faridabad,"Shop 87, Near Omaxe Heights, Gate 2, Sector 86, Faridabad",Sector 86,"Sector 86, Faridabad",77.33666,28.4080574,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,17 +18273572,Urban Cuisine,1,Faridabad,"Shop 2-4, Tigaon Road, Near Sai Dham Mandir, Sector 86, Faridabad",Sector 86,"Sector 86, Faridabad",77.3409826,28.4080719,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,37 +18363078,Mister Mughal,1,Faridabad,"Shop 16, BPTP Princess Park Shopping Arcade, Sector 86, Faridabad",Sector 86,"Sector 86, Faridabad",77.3423218,28.4067402,Mughlai,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,33 +18356019,The Hub,1,Faridabad,"Huda Market, Sector 9, Faridabad",Sector 9,"Sector 9, Faridabad",77.3315619,28.3765371,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +312688,Bake Your Dreamz,1,Faridabad,"Sector 9, Faridabad",Sector 9,"Sector 9, Faridabad",0,0,"Bakery, Desserts",800,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18381668,Green Chilly Chinese Food,1,Faridabad,"Shop 100, Main HUDA Market, Sector 9, Faridabad",Sector 9,"Sector 9, Faridabad",77.3328117,28.3764571,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18287397,Mom's Kitchen,1,Faridabad,"SCF 218, Huda Market, Sector 9, Faridabad",Sector 9,"Sector 9, Faridabad",77.3299747,28.3763294,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18294253,The Baking Treats N More,1,Faridabad,"383, Sector 9, Faridabad",Sector 9,"Sector 9, Faridabad",0,0,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18471304,Twin Brothers,1,Faridabad,"Ground Floor, SRS Mall, City Centre, Sector 12, Faridabad","SRS Mall, Sector 12, Faridabad","SRS Mall, Sector 12, Faridabad, Faridabad",77.3167822,28.3865773,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +8026,Aggarwal Sweets Centre,1,Faridabad,"HR 1B, Pul Pehladpur, Main Suraj Kund Road, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.2899232,28.4997177,"Mithai, Street Food, Chinese",100,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18265697,Bawarchi,1,Faridabad,"HR-250, B/10, 60 Feet Road, Pul Prahladpur, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.29385857,28.49820594,"North Indian, Chinese, Mughlai",550,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,14 +307151,D ART of Flavour,1,Faridabad,"H-250, B/10, 60 Feet Road, Pul Prahladpur, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.2937593,28.4982147,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,13 +18107844,Italia Cafe by Aura,1,Faridabad,"A-4, Pul Prahladpur, Suraj Kund Road, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.2903929,28.5000937,"Fast Food, Beverages",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,5 +18337896,Pizza Street,1,Faridabad,"A 34, Pul Pehladpur, Main Surajkund Road, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.2903,28.50064,"Fast Food, Pizza",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,12 +18261699,Rock Cafe,1,Faridabad,"Near Anandvan, Opposite NHPC Society, Suraj Kund Road, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.2869976,28.4727738,"North Indian, Chinese, South Indian",550,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,8 +18306531,Sardaar Ji Chaap & Rolls,1,Faridabad,"Opposite CNG Pump, Pul Prahladpur, Suraj Kund Road, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.2896526,28.49916279,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +303571,Spice Wok,1,Faridabad,"B-147, Naveen Plaza, Sharma Market, Prahladpur, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.2930411,28.4992231,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,18 +8099,Vrindavan Sweets & Restaurant,1,Faridabad,"A-3, Pul Prahladpur, Main Suraj Kund Road, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.2902208,28.5002348,"North Indian, Chinese, South Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,22 +18477428,Yummy Cake,1,Faridabad,"285, DDA Flat, Suraj Kund Road, Pul Prahladpur, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",0,0,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +8037,Bikaner Sweets & Bakers,1,Faridabad,"A-1, Shiv Durga Vihar, Near Eros Garden, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.2940734,28.4938048,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18471308,Burger Xpress,1,Faridabad,"HR 62E, 60 Feet Road Pul Pehladpur, New Delhi",Suraj Kund,"Suraj Kund, Faridabad",77.2921516,28.4989698,"Fast Food, Chinese, Burger",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18471318,Da Pizza Zone,1,Faridabad,"HR 62, CD 60 Foot Road, Pul Pehladpur, Near Sharma Market, New Delhi",Suraj Kund,"Suraj Kund, Faridabad",77.2918806,28.4990357,Italian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18471320,Finger Licious,1,Faridabad,"Shop 5, Anangpur Chowk, Green Field, Opposite Apartments, Suraj Kund Road, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.2846781,28.4609284,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18460293,Med E Taste,1,Faridabad,"1, Anangpur Chowk, Opposite Omaxe Forest & Spa, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.2847168,28.4609545,Mediterranean,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18446418,Punjabii Tandoor,1,Faridabad,"A-1559, Green Field Colony, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.2997286,28.462227,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +9496,Shankar Sweets,1,Faridabad,"E 588, Mittal Colony, Pul Parahladpur, Suraj Kund Road, Faridabad, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.29654722,28.49710833,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312967,Tasty Bites,1,Faridabad,"A-8, A-60 Feet Road, Pul Prahladpur, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.2899124,28.4997138,"South Indian, Chinese, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18449815,The Street- Curries & Grills,1,Faridabad,"57, EWA, Charmwood Village, Suraj Kund, Faridabad",Suraj Kund,"Suraj Kund, Faridabad",77.290565,28.489496,"North Indian, Mughlai, Continental",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +2680,Bakers Delight - The Atrium,1,Faridabad,"The Atrium Hotel, Shooting Range Road, Suraj Kund, Faridabad","The Atrium, Suraj Kund","The Atrium, Suraj Kund, Faridabad",77.283011,28.489796,"Bakery, Desserts",700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,10 +2679,On The Rocks - The Atrium,1,Faridabad,"The Atrium Hotel, Shooting Range Road, Suraj Kund, Faridabad","The Atrium, Suraj Kund","The Atrium, Suraj Kund, Faridabad",77.283011,28.489796,Finger Food,1400,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,18 +8417,World Cafe - Vibe by The LaLiT Traveller,1,Faridabad,"Vibe by The Lalit Traveller, 12/7, Sector 35, Faridabad","Vibe by The LaLit Traveller, Mathura Road","Vibe by The LaLit Traveller, Mathura Road, Faridabad",77.3060732,28.4729124,"North Indian, Continental, Chinese",1900,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,56 +309757,Chaudhary Ke Mashhoor Paranthe,1,Ghaziabad,"MB 48, Shipra Suncity, Indirapuram, Ghaziabad",Indirapuram,"Indirapuram, Ghaziabad",77.37444167,28.63601389,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,14 +307903,Thakur Bakers,1,Ghaziabad,"Shop 24, Regalia Heights, Shipra Suncity, Indirapuram, Ghaziabad",Indirapuram,"Indirapuram, Ghaziabad",77.37419167,28.63602222,Bakery,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +313502,FoodByMom,1,Ghaziabad,"Near Shipra Mall, Indirapuram, Ghaziabad",Indirapuram,"Indirapuram, Ghaziabad",77.369326,28.635083,North Indian,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,161 +18409175,Mr. Brown,1,Ghaziabad,"C-1, Saya Zenith, Next to CISF Camp, Opposite Shipra Sun City, Indirapuram, Ghaziabad",Indirapuram,"Indirapuram, Ghaziabad",77.378751,28.637449,"Fast Food, Cafe, Desserts, Bakery",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,52 +18456342,Mitalis Kitchen,1,Ghaziabad,"Mall Road, Ahinsha Khand ll, Near Shanti Gopal Hospital, Indirapuram, Ghaziabad",Indirapuram,"Indirapuram, Ghaziabad",77.31548297,28.63823809,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18244229,The Big Scoop,1,Ghaziabad,"C 17, 1st Floor, Patparganj Industrial Area, Kaushambi, Ghaziabad",Kaushambi,"Kaushambi, Ghaziabad",77.31069862,28.6411332,Ice Cream,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +300713,9 Mars Lounge,1,Ghaziabad,"Level 3, Shipra Mall, Vaibhav Khand, Gulmohar Road, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.36989718,28.63423199,"North Indian, Chinese",2500,Indian Rupees(Rs.),Yes,No,No,No,4,2.5,Orange,Average,184 +8623,Barista,1,Ghaziabad,"Ground Floor, Shipra Mall, Gulmohar Road, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.37024722,28.63404167,Cafe,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,33 +1318,Baskin Robbins,1,Ghaziabad,"1st Floor, Shipra Mall, Gulmohar Road, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.3704,28.63392778,Ice Cream,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,27 +311523,Burger King,1,Ghaziabad,"Shop 18, Ground Floor, Shipra Mall, Vaibhav Khand, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.36986466,28.63388299,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,327 +8590,Cafe Coffee Day,1,Ghaziabad,"1st Floor, Shipra Mall, Gulmohar Road, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.37020833,28.63404722,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,63 +8583,Chinese X'Press,1,Ghaziabad,"Bite Inn Food Court, 2nd Floor, Shipra Mall, Gulmohar Road, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.36986466,28.63388299,Chinese,600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,16 +300756,Cinch,1,Ghaziabad,"3rd Floor, Shipra Mall, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.36972552,28.63412753,"North Indian, Chinese, Continental",1500,Indian Rupees(Rs.),Yes,No,No,No,3,2.6,Orange,Average,92 +4239,Costa Coffee,1,Ghaziabad,"1st Floor, Shipra Mall, Gulmohar Road, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.370576,28.634123,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,60 +18168161,Domino's Pizza,1,Ghaziabad,"Shop 18, Lower Ground, Shipra Mall, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.36981537,28.63407809,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,17 +18381223,Dosa X'press,1,Ghaziabad,"Food Court, 2nd Floor, Shipra Mall, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.36972786,28.63378764,South Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,6 +18034077,Kebab Xpress,1,Ghaziabad,"1, Food Court, 2nd Floor, Shipra Mall, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.36959241,28.63383826,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,14 +3824,Let's Noodle,1,Ghaziabad,"18, 2nd Floor, Shipra Mall, Gulmohar Road, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.36971814,28.63421758,Chinese,700,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,181 +2572,McDonald's,1,Ghaziabad,"9, Shipra Mall, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.37036925,28.63401924,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,150 +8595,Mx Corn,1,Ghaziabad,"Ground Floor, Shipra Mall, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.36987706,28.63431586,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +309702,Dunkin' Donuts,1,Ghaziabad,"19 & 50, Level 2, Shipra Mall, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.37019444,28.634175,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,252 +8601,Haldiram's,1,Ghaziabad,"Ground Floor, Shipra Mall, Gulmohar Road, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.37023715,28.6339389,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,187 +1683,Pind Balluchi,1,Ghaziabad,"Shop 34-40, Level 3, Shipra Mall, Gulmohar Road, Indirapuram, Ghaziabad","Shipra Mall, Indirapuram","Shipra Mall, Indirapuram, Ghaziabad",77.37016473,28.63397039,"North Indian, Mughlai",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,1.8,Red,Poor,322 +301670,Maini Restaurant,1,Ghaziabad,"A Block Market, Surya Nagar, Ghaziabad",Surya Nagar,"Surya Nagar, Ghaziabad",77.3252184,28.6698582,"North Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,114 +17953902,The Dosa King,1,Ghaziabad,"Shop 4, B Block, Main Market, Opposite Vivek Vihar, Surya Nagar, Ghaziabad",Surya Nagar,"Surya Nagar, Ghaziabad",77.3231543,28.6644658,"South Indian, North Indian, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,80 +130409,Baba Au Rhum,1,Goa,"1054, Sim Vaddo, Anjuna, Goa",Anjuna,"Anjuna, Goa",73.75574991,15.57668259,"Italian, French, Cafe",800,Indian Rupees(Rs.),No,No,No,No,3,4.5,Dark Green,Excellent,280 +130275,Burger Factory,1,Goa,"Anjuna Main Road, Opposite Paradise Guest House, Anjuna, Goa",Anjuna,"Anjuna, Goa",73.74360556,15.58565833,Fast Food,1100,Indian Rupees(Rs.),No,No,No,No,4,4.8,Dark Green,Excellent,415 +130332,Club Cubana,1,Goa,"82, Sim Waddo, Arpora Hill, Anjuna, Goa",Anjuna,"Anjuna, Goa",73.76688333,15.57482778,Finger Food,2000,Indian Rupees(Rs.),No,No,No,No,4,4.4,Green,Very Good,646 +130230,Curlies,1,Goa,"Anjuna Beach, Anjuna, Goa","Anjuna Beach, Anjuna","Anjuna Beach, Anjuna, Goa",73.74229444,15.5696,"Continental, North Indian, Italian, Seafood, Goan",1500,Indian Rupees(Rs.),No,No,No,No,4,3.5,Yellow,Good,1681 +16519268,La Plage,1,Goa,"Aswem Beach, Near Papa Jolly Hotel, Aswem Road, Morjim, Arambol, Goa",Arambol,"Arambol, Goa",0,0,"Seafood, French",800,Indian Rupees(Rs.),No,No,No,No,3,4.6,Dark Green,Excellent,302 +16512186,St. Anthony's,1,Goa,"Baga Beach, Calangute-Baga Road, Baga, Goa",Baga,"Baga, Goa",73.74909167,15.56155,"North Indian, Chinese, Continental, Goan, Seafood",1100,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,911 +16512333,Britto's Bar & Restaurant,1,Goa,"Baga Calangute, Bardez, Baga, Goa",Baga,"Baga, Goa",73.74947806,15.56129549,"North Indian, Continental, Chinese, Seafood",1400,Indian Rupees(Rs.),No,No,No,No,4,4.3,Green,Very Good,2191 +16512336,Fat Fish,1,Goa,"Agar Waddo, Calangute Arpora Road, Bardez, Baga, Goa",Baga,"Baga, Goa",73.76363333,15.55656111,"North Indian, Continental, Goan",1000,Indian Rupees(Rs.),No,No,No,No,4,4.2,Green,Very Good,856 +16519168,Martin's Corner,1,Goa,"Ranvaddo, Salcete, Betalbatim, Goa",Betalbatim,"Betalbatim, Goa",73.91433611,15.30389722,"Goan, Seafood, Chinese, North Indian",1600,Indian Rupees(Rs.),No,No,No,No,4,4.4,Green,Very Good,1115 +130021,Infantaria,1,Goa,"5/181, Calangute Baga Junction, Calangute, Goa",Calangute,"Calangute, Goa",73.76043056,15.54659444,"Italian, Continental, Goan",800,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,1221 +130567,Souza Lobo,1,Goa,"Calangute Beach, Calangute, Goa","Calangute Beach, Calangute","Calangute Beach, Calangute, Goa",73.75573611,15.54441944,"North Indian, Continental, Goan",1300,Indian Rupees(Rs.),No,No,No,No,4,4.3,Green,Very Good,918 +130008,Fisherman's Cove,1,Goa,"Main Candolim Road, Titos Vaddo, Candolim, Goa",Candolim,"Candolim, Goa",73.76817222,15.51683333,"Goan, North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,601 +16519267,Calamari,1,Goa,"Dando Beach, Opposite Santana Beach Resort, Candolim, Goa",Candolim,"Candolim, Goa",73.7666682,15.5062047,"Goan, Seafood, Chinese",800,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,414 +130535,The Fisherman's Wharf,1,Goa,"Before The Leela, Mobor, Cavelossim, Goa",Cavelossim,"Cavelossim, Goa",73.95088889,15.15794444,"Continental, Goan, Seafood, North Indian",1100,Indian Rupees(Rs.),No,No,No,No,4,4.6,Dark Green,Excellent,555 +130699,LPK Waterfront,1,Goa,"Near Bank Of India, Bhatiwado, Nerul, Goa",Nerul,"Nerul, Goa",73.7834595,15.51315,Finger Food,1500,Indian Rupees(Rs.),No,No,No,No,4,3.7,Yellow,Good,516 +16512168,Ritz Classic,1,Goa,"1st Floor, Vagle Vision, 18th June Road, Panaji, Goa",Panaji,"Panaji, Goa",73.82691111,15.49860278,"Goan, Seafood, North Indian",600,Indian Rupees(Rs.),No,No,No,No,3,4.5,Dark Green,Excellent,840 +130888,The Black Sheep Bistro,1,Goa,"Swami Vivekanand Road, Near ICICI Bank, Panaji, Goa",Panaji,"Panaji, Goa",73.825364,15.496162,"Seafood, Continental, European, German",1500,Indian Rupees(Rs.),No,No,No,No,4,4.7,Dark Green,Excellent,681 +16519231,Cafe Al Fresco by Cantina Bodega,1,Goa,"Sunaparanta Centre For The Arts, Altinho, Panaji, Goa",Panaji,"Panaji, Goa",73.827423,15.49395,Cafe,800,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,265 +16541849,The Fisherman's Wharf,1,Goa,"D. B. Bandodkar Road, Campal, Panaji, Goa",Panaji,"Panaji, Goa",0,0,"Continental, Goan, Seafood, North Indian",1100,Indian Rupees(Rs.),No,No,No,No,4,4.4,Green,Very Good,323 +18022206,Antares,1,Goa,"Small Vagator Beach, Ozran, Vagator, Goa",Vagator,"Vagator, Goa",0,0,Seafood,2000,Indian Rupees(Rs.),No,No,No,No,4,4.2,Green,Very Good,367 +18396451,K Lab,1,Gurgaon,"Shop GF-18, ILD Trade Centre, Sector 47, Near Sohna Road, Gurgaon"," ILD Trade Centre Mall, Sohna Road"," ILD Trade Centre Mall, Sohna Road, Gurgaon",77.0393103,28.4248315,"Cafe, Beverages",350,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,16 +18237941,Pind Balluchi,1,Gurgaon,"112/112-A, 1st Floor, ILD Trade Centre, Near Subhash Chowk, Sohna Road, Gurgaon"," ILD Trade Centre Mall, Sohna Road"," ILD Trade Centre Mall, Sohna Road, Gurgaon",77.0392204,28.4249125,"North Indian, Mughlai",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.7,Orange,Average,80 +2787,Punjab Grill,1,Gurgaon,"3rd Floor, Ambience Mall, Gurgaon","Ambience Mall, Gurgaon","Ambience Mall, Gurgaon, Gurgaon",77.0971178,28.5030769,"North Indian, Mughlai",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,4.3,Green,Very Good,1887 +3431,Zambar,1,Gurgaon,"3rd Floor, Ambience Mall, Gurgaon","Ambience Mall, Gurgaon","Ambience Mall, Gurgaon, Gurgaon",77.0971853,28.5026128,"South Indian, Seafood, Kerala",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,802 +303699,Cakes & More,1,Gurgaon,"27, Ground Floor, Ansal Plaza Mall, Palam Vihar, Gurgaon","Ansal Plaza Mall, Palam Vihar","Ansal Plaza Mall, Palam Vihar, Gurgaon",77.0420091,28.5114162,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +5915,Kwality Wall's Swirl's,1,Gurgaon,"Ground Floor, Ansal Plaza Mall, Palam Vihar, Gurgaon","Ansal Plaza Mall, Palam Vihar","Ansal Plaza Mall, Palam Vihar, Gurgaon",77.0419641,28.5114567,Ice Cream,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +7076,Yo! Dimsum,1,Gurgaon,"Ground Floor, Ansal Plaza Mall, Palam Vihar, Gurgaon","Ansal Plaza Mall, Palam Vihar","Ansal Plaza Mall, Palam Vihar, Gurgaon",77.0420091,28.5115059,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +311866,Mx Corn,1,Gurgaon,"Ground Floor, Ansal Plaza Mall, Palam Vihar, Gurgaon","Ansal Plaza Mall, Palam Vihar","Ansal Plaza Mall, Palam Vihar, Gurgaon",77.0418253,28.5114067,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +300439,Red,1,Gurgaon,"5, Sector 52 A, Near Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.08785083,28.44070881,"Japanese, Thai, Chinese",1200,Indian Rupees(Rs.),No,Yes,No,No,3,3,Orange,Average,57 +18458334,Rocketchefs,1,Gurgaon,"IOCL Petrol Pump, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0855313,28.4423933,"Pizza, Desserts",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,4 +18353710,The Fresh Chicken Store,1,Gurgaon,"C Block Market, Sector 52, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0757671,28.4418793,"Raw Meats, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18291229,Achoos Food Corner,1,Gurgaon,"Vohra Market, Near Government School, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0787681,28.4347278,"South Indian, Chinese, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18398616,Aha Bites,1,Gurgaon,"Shop 19, Baba Chitru Complex, Sector 52, Near, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0898569,28.4308575,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18430561,Ancient Spice,1,Gurgaon,"Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0780576,28.432548,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18445248,Chimney - The Takeaway,1,Gurgaon,"C-51, Sector 52, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.078405,28.440599,"North Indian, South Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18313132,Costa Coffee,1,Gurgaon,"Ground Floor, Artemis Hospital, Sector 51, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0735119,28.4319102,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18433874,Good to Go,1,Gurgaon,"D12/12b, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0738947,28.436274,Raw Meats,500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,1 +18291231,Gopi Sweets & Caters,1,Gurgaon,"Vohra Market, Near Government School, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0787448,28.4346864,"Mithai, North Indian",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18477541,Late Night Food,1,Gurgaon,"Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",0,0,"North Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18352271,Lavi Foji Dhaba,1,Gurgaon,"Shop 4, B Block, Vicky Market, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.081492,28.4406523,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18291233,Narayan Fast Food Home,1,Gurgaon,"Vohra Market, Near Government School, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0762723,28.4353217,"North Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441809,OMG Kitchenz,1,Gurgaon,"Opposite Block D-10, Sector 52, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0728193,28.4370922,"South Indian, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18349508,OMG Tiffinz,1,Gurgaon,"1797, Gate 3, Opposite Block D-10, Sector 52, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0728605,28.4371161,"North Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18217127,Sardarji Chicken Point,1,Gurgaon,"C Block, Near Walking Park, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0754948,28.4394519,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18471335,Solty Hotel,1,Gurgaon,"Mata Road, Wazirabad, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0837565,28.430634,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18458335,Tanishk Gourmet Indian,1,Gurgaon,"VPO, Wazirabad, Sector 52, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",0,0,"North Indian, Mughlai, Seafood",800,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18429842,The Burger Chef,1,Gurgaon,"C Block, Sector 52, Ardee City, Gurgaon",Ardee City,"Ardee City, Gurgaon",77.0756612,28.4419493,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +5904,Club Tokyo - Best Western Skycity Hotel,1,Gurgaon,"Best Western Skycity Hotel, 1 Old Judicial Complex, Sector 15, Gurgaon","Best Western Skycity Hotel, Sector 15, Gurgaon","Best Western Skycity Hotel, Sector 15, Gurgaon, Gurgaon",77.0347151,28.4580879,Japanese,1500,Indian Rupees(Rs.),Yes,No,No,No,3,2.8,Orange,Average,13 +5876,Lattitude - Skycity Hotel,1,Gurgaon,"Best Western Skycity Hotel, 1, Old Judicial Complex, Sector 15, Gurgaon","Best Western Skycity Hotel, Sector 15, Gurgaon","Best Western Skycity Hotel, Sector 15, Gurgaon, Gurgaon",77.0349627,28.4582412,"North Indian, Chinese, Continental",2500,Indian Rupees(Rs.),Yes,No,No,No,4,2.9,Orange,Average,15 +872,Bisque Bakery,1,Gurgaon,"133/134, Central Arcade, DLF Phase 2, Gurgaon","Central Arcade, DLF Phase 2, Gurgaon","Central Arcade, DLF Phase 2, Gurgaon, Gurgaon",77.0857204,28.4807592,"Bakery, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,415 +18365849,Behrouz Biryani,1,Gurgaon,"Sector 53, Gurgaon","Central Plaza Mall, Golf Course Road","Central Plaza Mall, Golf Course Road, Gurgaon",77.1006623,28.4434069,Biryani,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,36 +227,Domino's Pizza,1,Gurgaon,"G-4/5, Central Plaza Mall, Golf Course Road, Gurgaon","Central Plaza Mall, Golf Course Road","Central Plaza Mall, Golf Course Road, Gurgaon",77.1010066,28.4428671,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,104 +3446,Giani,1,Gurgaon,"GF-11, Central Plaza Mall, Golf Course Road, Gurgaon","Central Plaza Mall, Golf Course Road","Central Plaza Mall, Golf Course Road, Gurgaon",77.1009167,28.4430378,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,70 +300100,PizzaVito,1,Gurgaon,"Ground Floor, Central Plaza Mall, Golf Course Road, Gurgaon","Central Plaza Mall, Golf Course Road","Central Plaza Mall, Golf Course Road, Gurgaon",77.1007369,28.4431102,"Italian, Pizza, Lebanese",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,218 +8597,Shawarma House,1,Gurgaon,"2, Central Plaza Mall, Golf Course Road, Gurgaon","Central Plaza Mall, Golf Course Road","Central Plaza Mall, Golf Course Road, Gurgaon",77.1010965,28.4426964,Lebanese,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,225 +3449,Subway,1,Gurgaon,"G-6, Central Plaza Mall, Golf Course Road, Gurgaon","Central Plaza Mall, Golf Course Road","Central Plaza Mall, Golf Course Road, Gurgaon",77.1009167,28.4430378,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,150 +303749,Asian Bistro,1,Gurgaon,"F10/F11, Central Plaza Mall, Golf Course Road, Gurgaon","Central Plaza Mall, Golf Course Road","Central Plaza Mall, Golf Course Road, Gurgaon",77.1008268,28.4429395,"Chinese, Thai, North Indian, Japanese",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,184 +18349898,BBQ Factory,1,Gurgaon,"Ground Floor 1, Central Plaza Mall, Golf Course Road, Gurgaon","Central Plaza Mall, Golf Course Road","Central Plaza Mall, Golf Course Road, Gurgaon",77.1009883,28.442717,North Indian,1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,146 +18349892,Faaso's,1,Gurgaon,"Shop 18, Ground Floor, Central Plaza Mall, Golf Course Road, Gurgaon","Central Plaza Mall, Golf Course Road","Central Plaza Mall, Golf Course Road, Gurgaon",77.1005772,28.443403,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,33 +18425752,Chaayos,1,Gurgaon,"13 & 28, Central Plaza, Golf Course Road, Gurgaon","Central Plaza Mall, Golf Course Road","Central Plaza Mall, Golf Course Road, Gurgaon",77.1007871,28.4431891,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,4.3,Green,Very Good,48 +7507,Mosaic - Country Inn & Suites,1,Gurgaon,"Country Inn & Suites by Carlson, Sector 29, Gurgaon","Country Inn & Suites by Carlson, Gurgaon","Country Inn & Suites by Carlson, Gurgaon, Gurgaon",77.0676442,28.4619878,"North Indian, Asian, Continental",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,91 +300490,60 ML - Country Inn & Suites by Carlson,1,Gurgaon,"Country Inn & Suites by Carlson, Old Delhi Gurgaon Road, Sector 12, Gurgaon","Country Inn & Suites by Carlson, Sector 12","Country Inn & Suites by Carlson, Sector 12, Gurgaon",77.0376911,28.468336,Finger Food,1000,Indian Rupees(Rs.),Yes,No,No,No,3,3,Orange,Average,7 +300488,Mosaic - Country Inn & Suites by Carlson,1,Gurgaon,"Country Inn & Suites by Carlson, Old Delhi Gurgaon Road, Sector 12, Gurgaon","Country Inn & Suites by Carlson, Sector 12","Country Inn & Suites by Carlson, Sector 12, Gurgaon",77.037781,28.4684343,"Continental, North Indian, Chinese",1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,37 +18306521,Big Shot Bar - Country Inn & Suites,1,Gurgaon,"Country Inn & Suites By Carlson, 406, Phase 3, Udyog Vihar, Gurgaon","Country Inn & Suites By Carlson, Udyog Vihar","Country Inn & Suites By Carlson, Udyog Vihar, Gurgaon",77.0918351,28.5092246,"Chinese, Italian, North Indian",2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,32 +309090,Mosaic - Country Inn & Suites By Carlson,1,Gurgaon,"Country Inn & Suites By Carlson, 10th KM Stone, Bhondsi, Sohna Road, Gurgaon","Country Inn & Suites, Sohna Road","Country Inn & Suites, Sohna Road, Gurgaon",77.0684986,28.3349418,"North Indian, Chinese, Italian, Continental",1300,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,19 +18441709,Downtown Kitchen & Bar - Courtyard by Marriott,1,Gurgaon,"Courtyard by Marriott, Plot 27 B, Sushant Lok 1, Sushant Lok, Gurgaon","Courtyard by Marriott, Sushant Lok","Courtyard by Marriott, Sushant Lok, Gurgaon",77.080367,28.460925,"Chinese, North Indian, Italian",2700,Indian Rupees(Rs.),No,No,No,No,4,3.2,Orange,Average,6 +18441707,Courtyard Grill - Courtyard by Marriott,1,Gurgaon,"Courtyard by Marriott, Plot 27 B, Sushant Lok 1, Sushant Lok, Gurgaon","Courtyard by Marriott, Sushant Lok","Courtyard by Marriott, Sushant Lok, Gurgaon",77.080367,28.460925,"Chinese, North Indian, Italian",2500,Indian Rupees(Rs.),No,No,No,No,4,0,White,Not rated,3 +304832,Di Ghent Boulangerie,1,Gurgaon,"Shop 212/214, Level 2, Cross Point Mall, DLF Phase 4, Gurgaon","Cross Point Mall, DLF Phase 4","Cross Point Mall, DLF Phase 4, Gurgaon",77.0835375,28.46836827,"Cafe, Belgian",1700,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,231 +311297,Khyen Chyen,1,Gurgaon,"G 11, DLF Cross Point Mall, Opposite Galleria Market, DLF Phase 4, Gurgaon","Cross Point Mall, DLF Phase 4","Cross Point Mall, DLF Phase 4, Gurgaon",77.0832475,28.4683741,Kashmiri,800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.7,Yellow,Good,364 +303858,The Pint Room,1,Gurgaon,"1st Floor, Cross Point Mall, DLF Phase 4, Gurgaon","Cross Point Mall, DLF Phase 4","Cross Point Mall, DLF Phase 4, Gurgaon",77.0830226,28.4683973,"Finger Food, Continental, Italian",1700,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,127 +302288,Tughlaq,1,Gurgaon,"Shop 217, 2nd Floor, Cross Point Mall, DLF Phase 4, Gurgaon","Cross Point Mall, DLF Phase 4","Cross Point Mall, DLF Phase 4, Gurgaon",77.08390966,28.46844136,"North Indian, Mughlai, Chinese, Seafood",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.5,Yellow,Good,351 +18233573,Big Wong XL,1,Gurgaon,"116, 117, & 130, 1st Floor, Cross Point Mall, DLF Phase 4, Gurgaon","Cross Point Mall, DLF Phase 4","Cross Point Mall, DLF Phase 4, Gurgaon",77.0834723,28.4681716,"Chinese, Thai, Sushi",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,162 +309015,Bunker,1,Gurgaon,"Shop 204-206, Cross Point Mall, DLF Phase 4, Gurgaon","Cross Point Mall, DLF Phase 4","Cross Point Mall, DLF Phase 4, Gurgaon",77.0831126,28.4682267,"Continental, North Indian, Chinese, Italian",1300,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,248 +18382344,Culture Cafe,1,Gurgaon,"2nd Floor, Cross Point Mall, DLF Phase 4, Gurgaon","Cross Point Mall, DLF Phase 4","Cross Point Mall, DLF Phase 4, Gurgaon",77.0837421,28.4681975,"Mediterranean, Continental",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,144 +18254537,Nowhere Terrace Brewpub Cafe,1,Gurgaon,"2nd Floor, Cross Point Mall, Galleria Market DLF Phase 4, Gurgaon","Cross Point Mall, DLF Phase 4","Cross Point Mall, DLF Phase 4, Gurgaon",77.083048,28.468314,"Continental, European, Asian, North Indian, Chinese, Italian",1600,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,214 +4358,Cafe G - Crowne Plaza,1,Gurgaon,"Crowne Plaza, NH-8, Sector 29, Gurgaon","Crowne Plaza, Sector 29","Crowne Plaza, Sector 29, Gurgaon",77.0600891,28.4684326,"North Indian, Continental, Chinese",3500,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,181 +2443,Wildfire - Crowne Plaza,1,Gurgaon,"Crowne Plaza, National Highway 8, Sector 29, Gurgaon","Crowne Plaza, Sector 29","Crowne Plaza, Sector 29, Gurgaon",77.0599093,28.4684152,South American,5000,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,131 +270,Isabella,1,Gurgaon,"KG-5 C, Ground Floor, Tower C, Cyber Greens, DLF Cyber City, Gurgaon","Cyber Greens, DLF Cyber City","Cyber Greens, DLF Cyber City, Gurgaon",77.0928243,28.4937229,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,191 +309252,Fatburger,1,Gurgaon,"102, 1st Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0882416,28.4947571,"American, Mexican",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,793 +18303709,Burma Burma,1,Gurgaon,"Ground Floor, Shop 6, Building 8, Tower C, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0887329,28.4946295,"Asian, Burmese",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.6,Dark Green,Excellent,563 +18409224,Pier 38,1,Gurgaon,"Shop 106-107, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0886429,28.4950691,"Persian, Arabian, Lebanese, North Indian",1200,Indian Rupees(Rs.),No,No,No,No,3,4.6,Dark Green,Excellent,177 +18277179,Yum Yum Cha,1,Gurgaon,"Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0885987,28.4950762,"Chinese, Japanese, Sushi",1800,Indian Rupees(Rs.),No,No,No,No,3,4.5,Dark Green,Excellent,407 +308570,Amici Cafe,1,Gurgaon,"Shop 15, Ground Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0889781,28.4955391,"Cafe, Italian, Pizza",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,647 +308263,Au Bon Pain,1,Gurgaon,"K-1, Ground Floor, Near Building 8, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.088508,28.494832,"Cafe, Bakery",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,503 +306133,California Pizza Kitchen,1,Gurgaon,"11, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0886879,28.4952975,"Pizza, Italian",2500,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.7,Yellow,Good,980 +306142,Chai Point,1,Gurgaon,"K-5, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0888677,28.4952251,"Tea, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,544 +308609,Cherry Comet,1,Gurgaon,"K-5/A, Near Building 8-B Entrance, Cyber hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0888677,28.4953148,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,455 +18383453,Circus,1,Gurgaon,"Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0888677,28.495763,"North Indian, Chinese, Italian",1250,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,230 +305478,Dunkin' Donuts,1,Gurgaon,"K-3A, Cyber Hub, Phase 2, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0887329,28.4951674,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,701 +308357,Holy Smoke,1,Gurgaon,"103, 1st Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0883732,28.4947742,"Steak, American",1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,313 +306128,Italiano,1,Gurgaon,"Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.088598,28.4951096,Italian,1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,625 +308020,Krispy Kreme,1,Gurgaon,"K-4/A, Ground Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0886879,28.4952079,"Desserts, Beverages",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,425 +309883,Not Just Paranthas,1,Gurgaon,"Shop 108, 1st Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.088598,28.4951096,North Indian,1100,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,734 +306132,Oh! Calcutta,1,Gurgaon,"9, Ground Floor, Cyber Hub, Opposite Gateway Towers, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0886879,28.4952079,"Bengali, Seafood",1700,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,706 +306956,Olive Bistro,1,Gurgaon,"Shop 101, 1st Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0878786,28.4945922,"Mediterranean, Italian, European",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,1490 +305862,Pita Pit,1,Gurgaon,"K3-B, Ground Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0886429,28.4950691,"Healthy Food, Salad",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,870 +307309,Raasta,1,Gurgaon,"2nd Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0883732,28.4953121,"Continental, Italian",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.8,Yellow,Good,1065 +306131,Red Mango,1,Gurgaon,"K-4B, Ground Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0886879,28.4952079,"Cafe, Desserts",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,365 +306127,Rred Hot Asian Bistro,1,Gurgaon,"110, 1st Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0886879,28.4953871,"Chinese, Japanese, Thai, Asian",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,384 +313149,Smaaash,1,Gurgaon,"Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0889127,28.4950054,"North Indian, Thai, Continental",1400,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,622 +306001,Starbucks,1,Gurgaon,"Ground Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0891982,28.4956457,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,560 +308016,Sutra Gastropub,1,Gurgaon,"201-202, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0883282,28.4948147,"Mediterranean, European, American, North Indian",2300,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,1046 +18336509,Taco Bell,1,Gurgaon,"Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0883113,28.4942639,"Mexican, Fast Food",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,176 +18336176,The People & Co.,1,Gurgaon,"Ground Floor, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0887778,28.4949476,"Continental, Italian",1700,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,173 +18383472,Theobroma,1,Gurgaon,"Ground Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0886879,28.4947597,"Bakery, Cafe",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,227 +18292448,Wendy's,1,Gurgaon,"2-A, UGF/A, Ground Floor, Building 10, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0875189,28.4949162,"Burger, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,296 +306134,The Wine Company,1,Gurgaon,"Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0890476,28.4962285,"Italian, European",2000,Indian Rupees(Rs.),Yes,No,No,No,4,2.4,Red,Poor,2412 +306946,Cafe Delhi Heights,1,Gurgaon,"Shop 10, Ground Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0886879,28.4952079,"Continental, American, Italian, Seafood, North Indian, Cafe",2000,Indian Rupees(Rs.),No,No,No,No,4,4,Green,Very Good,1840 +18289242,Cyber Hub Social,1,Gurgaon,"Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.088508,28.4939356,"Continental, American, Asian, North Indian",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.3,Green,Very Good,716 +18277030,Delifrance - The France Cafe Bakery,1,Gurgaon,"Building 10, Tower B, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.08856095,28.49427139,"Cafe, Bakery, Desserts",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,4,Green,Very Good,199 +306153,Dhaba By Claridges,1,Gurgaon,"1st Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0886879,28.4953871,North Indian,2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,4,Green,Very Good,1658 +308022,Farzi Cafe,1,Gurgaon,"7-8, Ground Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0886879,28.4952079,Modern Indian,2200,Indian Rupees(Rs.),No,No,No,No,4,4.3,Green,Very Good,4385 +305905,Hard Rock Cafe,1,Gurgaon,"Unit 4/5/104/105, R Block, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.088508,28.4949217,"Mediterranean, Mexican, North Indian, American",2500,Indian Rupees(Rs.),Yes,No,No,No,4,4.1,Green,Very Good,1949 +18245277,Instapizza,1,Gurgaon,"Unit 2A, Building 10, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0882383,28.494089,"Pizza, Fast Food",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,4,Green,Very Good,219 +305670,Made In Punjab,1,Gurgaon,"6-7, Ground Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.088598,28.4951096,"North Indian, Mughlai",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,1595 +305815,Nando's,1,Gurgaon,"Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0888677,28.4954941,"Portuguese, African",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,1730 +18208920,Quaff,1,Gurgaon,"Tower B, Building 10, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0880651,28.4944224,"American, Italian, Chinese",1750,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,353 +306046,SodaBottleOpenerWala,1,Gurgaon,"3, Ground Floor, Cyber Hub, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.088508,28.494832,"Parsi, Iranian",1300,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,2843 +18381226,The Grill Mill,1,Gurgaon,"Unit 1A, Ground Floor, Building 10, Tower C, DLF Cyber City, Gurgaon","Cyber Hub, DLF Cyber City","Cyber Hub, DLF Cyber City, Gurgaon",77.0884689,28.4940704,"North Indian, Continental, Asian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,209 +4992,Knight Rider,1,Gurgaon,"Near DLF Phase 2 Rapid Metro Station, DLF Cyber City, Gurgaon",DLF Cyber City,"DLF Cyber City, Gurgaon",77.0933407,28.4877882,"North Indian, Continental",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,185 +300749,Chaayos,1,Gurgaon,"Ground Floor, Tower B Atrium, Building 5, Near Indian Oil Petrol Pump, DLF Cyber City, Gurgaon",DLF Cyber City,"DLF Cyber City, Gurgaon",77.0921049,28.4897992,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,393 +278,Nooba,1,Gurgaon,"Premises 2G, Building 10, Tower A, DLF Cyber City, Gurgaon",DLF Cyber City,"DLF Cyber City, Gurgaon",77.0875639,28.4942482,Chinese,1500,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,333 +225,Domino's Pizza,1,Gurgaon,"UGF/RTC 9, Building 8, Tower C, DLF- 2, DLF Cyber City, Gurgaon",DLF Cyber City,"DLF Cyber City, Gurgaon",77.0890476,28.4945253,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,125 +18337929,Indigo Delicatessen,1,Gurgaon,"UGF/B/2C, Building 10B, DLF Cyber Hub, Gurgaon, DLF Cyber City, Gurgaon",DLF Cyber City,"DLF Cyber City, Gurgaon",77.0884181,28.4940166,"European, Continental",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,205 +5960,Escape Terrace Bar Kitchen,1,Gurgaon,"R-2, Level 2, DLF Galleria, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0822133,28.4671541,Finger Food,1700,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,294 +1664,Kwaliti,1,Gurgaon,"SF-71, 1st Floor, DLF Galleria, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0817637,28.4672902,"North Indian, Chinese, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,129 +157,Subway,1,Gurgaon,"SG-102, Ground Floor, DLF Galleria, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0814039,28.4676142,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,125 +18235155,Burger Point,1,Gurgaon,"SF-27, DLF Galleria, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0823032,28.4672524,"Burger, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,74 +310211,Chaat Chowk,1,Gurgaon,"SF-44, 1st Floor, DLF Galleria Market, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0821234,28.4670558,Street Food,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,217 +3346,Chef Style,1,Gurgaon,"SF 89-81, 1st Floor, DLF Galleria, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0817637,28.4673798,"North Indian, Mughlai",700,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.8,Yellow,Good,239 +310854,Delhicacy,1,Gurgaon,"SF-14, 1st Floor, DLF Galleria, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0823032,28.4674317,"Street Food, Fast Food, North Indian",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,317 +18247015,Dimsum & Co.,1,Gurgaon,"1st Floor, SF 90, Galleria Market, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0818119,28.4674661,Chinese,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,136 +309387,Instapizza,1,Gurgaon,"SF-008, DLF Galleria, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0821234,28.467504,"Pizza, Fast Food",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.6,Yellow,Good,426 +7418,L'Opera,1,Gurgaon,"22, DLF Galleria, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0824381,28.4671309,"Bakery, Desserts, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,196 +1455,Lazeez Food,1,Gurgaon,"SF-124 & SG - 48, DLF Galleria, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.081314,28.4670676,"Mughlai, North Indian",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,173 +18241867,Le Marche Sugar & Spice Cafe,1,Gurgaon,"105, Ground Floor, DLF Galleria Market, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0812241,28.4675073,"Cafe, Italian, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,52 +308889,The Breakfast Club,1,Gurgaon,"SF-35, 1st Floor, DLF Galleria Market, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0819435,28.4671282,"Continental, North Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,189 +4620,Sugar & Spice - Le Marche,1,Gurgaon,"SG-84 & 85, DLF Galleria, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0812241,28.4671487,"Bakery, Fast Food",800,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,88 +18322666,Crudo Juicery,1,Gurgaon,"SF-85, Galleria Market, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0819435,28.4674868,"Beverages, Salad",400,Indian Rupees(Rs.),No,Yes,No,No,1,4.3,Green,Very Good,154 +311718,Fork with Stick,1,Gurgaon,"SF-12, 1st Floor, DLF Galleria Market, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0823032,28.4674317,Chinese,800,Indian Rupees(Rs.),Yes,Yes,No,No,2,4,Green,Very Good,169 +18255106,Uptown Fresh Beer Cafe,1,Gurgaon,"106, DLF Galleria, DLF Phase 4, Gurgaon","DLF Galleria, DLF Phase 4","DLF Galleria, DLF Phase 4, Gurgaon",77.0812241,28.4675073,"Finger Food, North Indian, Italian, European, Continental",2500,Indian Rupees(Rs.),No,No,No,No,4,4.1,Green,Very Good,230 +4876,Barista,1,Gurgaon,"Lower Ground Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.09313545,28.47582155,Cafe,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,18 +631,Cafe Coffee Day,1,Gurgaon,"Upper Ground Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.09359512,28.47548941,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,27 +226,Domino's Pizza,1,Gurgaon,"Food Court, 3rd Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.09308315,28.47577587,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,30 +8805,Italiano,1,Gurgaon,"7, Food Court, 3rd Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.09323503,28.47573225,Italian,1500,Indian Rupees(Rs.),No,No,No,No,3,3,Orange,Average,49 +3540,McDonald's,1,Gurgaon,"314-315, Food Court, 3rd Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.09302582,28.47586163,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,30 +311579,Parantha Gurus,1,Gurgaon,"5, Food Court, 3rd Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.09312875,28.47574493,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,27 +303709,Pizza Hut Delivery,1,Gurgaon,"Ground Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.09333964,28.47626303,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,29 +18391156,Sibang Bakery,1,Gurgaon,"First Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.09336612,28.47581065,"Bakery, Desserts, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,13 +301319,Sonya Bakery Cafe,1,Gurgaon,"Lower Ground Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.093094,28.4759094,"Bakery, Desserts, Beverages",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,20 +158,Subway,1,Gurgaon,"Food Court, 3rd Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.09308684,28.47568922,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,46 +1360,Viva Hyderabad,1,Gurgaon,"Food Court, 3rd Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.09311534,28.4756627,"Biryani, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,69 +310737,7 Barrel Brew Pub,1,Gurgaon,"242A & 242B, 1st & 2nd Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.09335439,28.4761926,"North Indian, Continental, Chinese, Japanese, Italian, Thai",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.9,Yellow,Good,490 +4762,Wai Yu Mun Ching,1,Gurgaon,"5, Food Court, 3rd Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.09319044,28.47567184,"Chinese, Thai",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,112 +311736,Baskin Robbins,1,Gurgaon,"Ground Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.0930171,28.4757632,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +311116,KFC,1,Gurgaon,"MS-44, Upper Ground Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DLF Mega Mall, DLF Phase 1","DLF Mega Mall, DLF Phase 1, Gurgaon",77.09351432,28.47650794,"American, Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.2,Red,Poor,73 +3483,Burmese Kitchen Plus,1,Gurgaon,"DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.1002873,28.4778552,"Burmese, Chinese, Thai",800,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,65 +18308025,Drinks Come True,1,Gurgaon,"B-5/8, Near Qutab Plaza, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0993882,28.4693415,"Beverages, Juices",150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +307272,Eat All Nite,1,Gurgaon,"H Block, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0935886,28.4726847,"North Indian, Chinese, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,184 +18025115,Frontier,1,Gurgaon,"D-89, Shopping Mall, Arjun Marg, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0997478,28.4660588,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18454285,GenY Cuisines,1,Gurgaon,"A-55/2, Near DLF Mega Mall, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0922847,28.4733215,"Chinese, Mexican, Fast Food, Continental",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +1687,K Raga's,1,Gurgaon,"A-55/12, Behind DT Mega Mall, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0923747,28.4733301,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,5 +308605,Kangri,1,Gurgaon,"A Block, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.07935278,28.46121389,Kashmiri,750,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,84 +18422652,Makhmali Kebabs,1,Gurgaon,"Arjun Marg Market, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0992983,28.4661053,Mughlai,550,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,10 +18131568,Masala Ville,1,Gurgaon,"DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0984902,28.471636,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,15 +18034048,Night Food Xprs,1,Gurgaon,"DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0993882,28.4693415,"Chinese, North Indian",650,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,12 +18138457,Roti Boti,1,Gurgaon,"Pillar No. 12, Opposite Sikanderpur Rapid Metro Station,DLF Phase 1 Road",DLF Phase 1,"DLF Phase 1, Gurgaon",77.092856,28.481301,"North Indian, Mughlai, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,35 +313272,Sama Chicken Biryani,1,Gurgaon,"2020, Main Road, Near Union Bank, Saraswati Vihar, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0948286,28.48187686,"Biryani, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +9778,Subway,1,Gurgaon,"D-144, Shopping Mall, Arjun Marg, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0997478,28.4657898,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,54 +312523,The Rolling Pin Bakery,1,Gurgaon,"C-9/9-D, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0983092,28.4679828,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,10 +18424575,Weird Time Food,1,Gurgaon,"DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.074163,28.477689,"Continental, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,7 +18204463,Twigly,1,Gurgaon,"H Block, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0923421,28.4803156,"Continental, Italian, Pizza, Asian",500,Indian Rupees(Rs.),No,Yes,No,No,2,4.6,Dark Green,Excellent,395 +307627,Asian Haus,1,Gurgaon,"16/6, H Block, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.1003687,28.4778418,"Chinese, Thai, Asian, Malaysian, Vietnamese, Japanese",1500,Indian Rupees(Rs.),No,Yes,No,No,3,3.9,Yellow,Good,360 +301302,Beyond Breads,1,Gurgaon,"Behind DT Mega Mall, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0922847,28.4733215,"Bakery, Desserts",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,326 +312995,Biryani By Kilo,1,Gurgaon,"H-16/6, Ground Floor, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.1002873,28.4780345,"Biryani, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,403 +308577,Captain Grub,1,Gurgaon,"DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0997478,28.4660588,"American, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,447 +313376,Pita Pit,1,Gurgaon,"DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.1002873,28.4778552,"Healthy Food, Salad",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,56 +312536,Rawleaf,1,Gurgaon,"DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0957016,28.4694359,"Healthy Food, Salad",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,38 +310385,Sushi Haus,1,Gurgaon,"16/6, H Block, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.1003772,28.4778638,"Japanese, Sushi",1300,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,124 +18464003,Eggzellent,1,Gurgaon,"Plot H-16/6, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.10031841,28.47773187,Fast Food,250,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,1 +18349915,High On Tea,1,Gurgaon,"3rd Floor, DLF Mega Mall, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.09313076,28.47580623,"Cafe, Tea",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18299228,Sona Bridge Hotel,1,Gurgaon,"F-9/14, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.1,28.47,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18034074,Yo! Dimsum,1,Gurgaon,"Shopping Mall, Arjun Marg, DLF Phase 1, Gurgaon",DLF Phase 1,"DLF Phase 1, Gurgaon",77.0988037,28.4661923,"Fast Food, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +311080,Angrezee Choupal,1,Gurgaon,"N Block, DLF Phase 2, Gurgaon",DLF Phase 2,"DLF Phase 2, Gurgaon",77.0860801,28.4827659,"North Indian, Chinese, Italian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,299 +18462603,Ashoka Snacks Corner,1,Gurgaon,"Opposite 15 Dakshin Marg, DLF Phase 2, Gurgaon",DLF Phase 2,"DLF Phase 2, Gurgaon",77.0860056,28.4828445,"Street Food, Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18481295,Chefoncalls,1,Gurgaon,"N4/19, N-Block, DLF Phase 2, Gurgaon",DLF Phase 2,"DLF Phase 2, Gurgaon",0,0,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18472765,Corp Kitchen,1,Gurgaon,"J 10/7, DLF Phase 2, Gurgaon",DLF Phase 2,"DLF Phase 2, Gurgaon",77.08986362,28.48211622,"North Indian, Chinese, Continental",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18499452,Good Food,1,Gurgaon,"DLF Phase 2, Gurgaon",DLF Phase 2,"DLF Phase 2, Gurgaon",0,0,Healthy Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18500652,Mahek By Greenz,1,Gurgaon,"A 201, Belvedere Towers, DLF Phase 2, Gurgaon",DLF Phase 2,"DLF Phase 2, Gurgaon",0,0,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18361580,Pao King,1,Gurgaon,"K-13/3, DLF Phase 2, Gurgaon",DLF Phase 2,"DLF Phase 2, Gurgaon",77.0826144,28.4840963,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18417487,Prabhat Fast Food Corner,1,Gurgaon,"Opposite Plot 14, Sector 18, Near DLF Phase 2, Gurgaon",DLF Phase 2,"DLF Phase 2, Gurgaon",77.0843715,28.490311,"Chinese, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18462605,Shama Chicken Corner,1,Gurgaon,"K-7/41A, DLF Phase 2, Gurgaon",DLF Phase 2,"DLF Phase 2, Gurgaon",77.0860801,28.4823177,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18462609,Unique Food Hut,1,Gurgaon,"M 9, DLF Phase 2, Gurgaon",DLF Phase 2,"DLF Phase 2, Gurgaon",77.082573,28.4904966,"Fast Food, North Indian, Beverages",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +3565,A 1 - Snacks and food corner,1,Gurgaon,"Shop 2, U-73, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0942076,28.4899921,"North Indian, Chinese, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,16 +18367364,Anandum,1,Gurgaon,"S 31/1, Main Road, Near St. Stephen's Hospital, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.1034343,28.486136,South Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,13 +1028,Apni Rasoi,1,Gurgaon,"U 1/52-53, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0936335,28.4912907,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,160 +308673,Banke Bihari Bhojanalay,1,Gurgaon,"U-8/26, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0935436,28.4934335,"Mithai, Street Food, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,36 +18383473,Biryani 365,1,Gurgaon,"U/15/27, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0957016,28.4948958,Mughlai,700,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,17 +18444416,Bro's Kitchenette,1,Gurgaon,"67/53/54, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.09530905,28.48826511,"Fast Food, Street Food, Beverages",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,11 +18161609,Cafe Coffee Day,1,Gurgaon,"Cyber Green, Nathupur, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.09327124,28.49457813,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +611,Cafe Coffee Day,1,Gurgaon,"IBP Petrol Pump, Nathupur, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.09158514,28.49034965,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,26 +18322677,Cafe Du Rendezvous,1,Gurgaon,"Shop 12 & 13, U-25/31A, Pink Town House Road, Opposite Shemrock School, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0998522,28.4947415,"Cafe, Street Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,21 +18204847,Cake 24x7,1,Gurgaon,"S-27/9, Shop 5, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.1038389,28.4874747,Bakery,600,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.3,Orange,Average,25 +308044,Cake On Wheels,1,Gurgaon,"S-27/9, The Village Super Mart, Opposite Pullman Hotel, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.1047829,28.4874309,"Bakery, Desserts, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,18 +18294819,Cake Point,1,Gurgaon,"U-1/29, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0939033,28.4902409,"Bakery, Desserts",600,Indian Rupees(Rs.),No,Yes,Yes,No,2,2.9,Orange,Average,7 +309697,Cake Point,1,Gurgaon,"S-27/9 H, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.1038389,28.487654,"Bakery, Desserts",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,35 +18444353,Cakes Degree,1,Gurgaon,"U 44/31-1, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.094263,28.4923373,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,18 +304185,Chateau Garlic,1,Gurgaon,"DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.10263249,28.48750366,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,14 +18383489,Chennai Express,1,Gurgaon,"1st Floor, Near Phase 3 Rapid Metro Station, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0939932,28.4931181,"South Indian, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +312022,Crust N Cakes,1,Gurgaon,"DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0922847,28.4911611,Bakery,550,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,18 +18425765,Dabba Meat,1,Gurgaon,"U Block 1/16, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0930322,28.4906544,North Indian,550,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,29 +2827,Deepak Rasoi,1,Gurgaon,"U-54/21, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0951644,28.4897671,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,22 +18223957,Foodaucity - Bum Bum Bholey Ke Chole Bhature,1,Gurgaon,"Near Rapid Metro, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0937234,28.4938093,Street Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,14 +18492107,Foodies Nation,1,Gurgaon,"U-10/25, DLF phase 3, Gurgaon, Haryana-122001, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",0,0,"Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,19 +300074,Goli Vada Pav No. 1,1,Gurgaon,"Near U Block, Rapid Metro Station, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0934537,28.4935145,Street Food,150,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,83 +305096,Grandma's Kitchen,1,Gurgaon,"16/26, U Block, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0936335,28.49147,"North Indian, South Indian",400,Indian Rupees(Rs.),No,Yes,Yes,No,1,2.5,Orange,Average,20 +18336206,Gurgaon Hights,1,Gurgaon,"E-04, EWS Complex, Belverde Palace, Main U 16 Road, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.093679,28.4917895,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,19 +303094,Idliss,1,Gurgaon,"U-10/1, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0949823,28.4933028,"South Indian, North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,359 +306858,Indian Home Food,1,Gurgaon,"U-2/42, Opposite Central Bank ATM, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0934537,28.4911838,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,51 +312562,Jetha Lal Ka Dhabha,1,Gurgaon,"Road 9, U-9/50, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.09503077,28.49332817,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,53 +307935,Kusum Rolls,1,Gurgaon,"U-1/9, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.092692,28.4907443,"Fast Food, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,71 +302184,Megha Vaishno Dhaba,1,Gurgaon,"U-21/1, Road 15, Near Mother Dairy, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0952332,28.4949836,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,33 +1694,Nikhil Food Point,1,Gurgaon,"U-69/3, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0947642,28.4899703,"Chinese, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,19 +309541,Plan B,1,Gurgaon,"Opposite City Court, Near Rapid Metro Station, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0962564,28.4846488,"North Indian, Chinese, Continental",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,132 +18161587,Punjabi Zaika,1,Gurgaon,"Shop 2, Nathupur Road, Opposite Crossroad Complex, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.1048728,28.4872602,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,74 +18258475,Rasoi,1,Gurgaon,"Shop 11, Nathupur Road, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.1046906,28.487522,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,6 +313209,Roll's Royce,1,Gurgaon,"U-9/28, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0938134,28.4934594,"Fast Food, North Indian",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,42 +302229,Shree Bikaner Misthan Bhandar,1,Gurgaon,"U-5/50, Road 16, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0941281,28.4921002,"Street Food, Mithai",100,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,29 +18441196,Smokey Pan,1,Gurgaon,"Shop U1/48 ,DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0945327,28.4899428,"North Indian, Greek, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,14 +18398610,Surprise O Meal,1,Gurgaon,"T-20/18, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0935436,28.4911924,"Continental, North Indian, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,35 +18237322,Tandoor on The Way,1,Gurgaon,"U-8/45, Near Rapid Metro Station, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0935436,28.4931646,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,45 +309696,Tawa N Tandoor,1,Gurgaon,"U-16/10 DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0944877,28.4928519,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,51 +18357544,The Paradise Biryani,1,Gurgaon,"Pink Town House Market, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0994974,28.4942093,"Biryani, North Indian",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,22 +18431563,The Royal,1,Gurgaon,"1st Floor, Rapid Metro Station, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0934087,28.4936446,"Fast Food, Beverages",550,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,15 +18337747,Theka Desi Khaana,1,Gurgaon,"Shop U-16/64, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0948924,28.4932941,"North Indian, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,12 +18258477,Tobasco Kitchen,1,Gurgaon,"U-9/1, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0946676,28.4930484,"Fast Food, Pizza",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,38 +18396189,Tpot,1,Gurgaon,"Rapid Metro Phase 3, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0935436,28.4934335,"Fast Food, Beverages",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +6915,Uncle's Cafe,1,Gurgaon,"75, Behind RBS, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.094263,28.4900962,"North Indian, Biryani, Fast Food, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,23 +18233576,Welcome Cafeteria,1,Gurgaon,"U-8/36, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0940363,28.4931115,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,23 +18256890,Yo Yo China Town,1,Gurgaon,"S 31A/1, Near St. Stephen's Hospital, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.093805,28.49330872,"Chinese, North Indian, South Indian",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,31 +18384115,Caterspoint,1,Gurgaon,"S-27/11, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.1039737,28.4872636,"Mexican, American, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,4.9,Dark Green,Excellent,223 +18352208,Bake-a-boo,1,Gurgaon,"U 55, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.09623341,28.49025712,Bakery,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,55 +4171,Burger Hut,1,Gurgaon,"U-6/50, Near Yashwant Department Store, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.094263,28.4923373,"Burger, Fast Food, Chinese",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,319 +18238279,China Gatherings,1,Gurgaon,"U-75/52, Near RBS Building, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0939033,28.4902409,"Chinese, Thai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,46 +18286517,Crazy Bhukkhad,1,Gurgaon,"U-80, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0924646,28.4896545,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,54 +575,Deez Biryani & Kebabs,1,Gurgaon,"S-27/17, Nathupura, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.103659,28.4878161,"Biryani, North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,371 +18280305,Fomads,1,Gurgaon,"U-25/27, Ground Floor, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0943525,28.4922725,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,26 +18359286,Happy Beings,1,Gurgaon,"50/21, U Block, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.094627,28.490666,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,66 +18450609,InstaDozza,1,Gurgaon,"Inside DLF Phase 3 Rapid Metro Station, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0935436,28.4934335,South Indian,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,28 +18237324,Mom's Kitchen,1,Gurgaon,"U-9/26, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0938134,28.4937283,North Indian,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,27 +18461214,The Baker's Bar ... Bakery & Cafe,1,Gurgaon,"16/8, U Block, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.09333796,28.49088743,"Italian, Lebanese, Fast Food, Bakery",400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,29 +18294226,Veg Ex,1,Gurgaon,"DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.1036643,28.4879232,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,45 +18383513,Volt - By Plan B,1,Gurgaon,"Moulsari Road, Near Moulsari Arcade, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.1021761,28.4957118,"Mediterranean, Mughlai, Thai, North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,19 +18372311,ZASTY,1,Gurgaon,"DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.094031,28.492698,"Continental, North Indian, Asian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,52 +4172,Aahar,1,Gurgaon,"U-6/50, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0943256,28.492384,"North Indian, South Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2,Red,Poor,60 +310525,Chicken Bytes,1,Gurgaon,"Shop 4, U-6/50, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.094263,28.4923373,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.1,Red,Poor,34 +300054,Flying Cakes,1,Gurgaon,"Shop 3, U-6/50, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0943529,28.4924355,Bakery,350,Indian Rupees(Rs.),No,Yes,No,No,1,2.2,Red,Poor,136 +301278,Punjabi Tadka,1,Gurgaon,"U-16/24, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.0937234,28.4914786,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,2.2,Red,Poor,43 +18451182,Coldpress Company,1,Gurgaon,"U79/12 DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.09321138,28.489834,"Healthy Food, Juices, Salad, Italian, Continental",500,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,34 +18384142,Crudo Juicery,1,Gurgaon,"DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.1049154,28.4871499,"Beverages, Salad, Beverages",400,Indian Rupees(Rs.),No,Yes,No,No,1,4.3,Green,Very Good,33 +18241498,First Eat,1,Gurgaon,"DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.094173,28.4904461,"Healthy Food, North Indian, Continental",300,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,162 +18265384,Zoe,1,Gurgaon,"T-24, Cyber Green, DLF Phase 3, Gurgaon",DLF Phase 3,"DLF Phase 3, Gurgaon",77.08978873,28.49488428,"Juices, Beverages, Healthy Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,4.3,Green,Very Good,217 +311494,Dabba Meat,1,Gurgaon,"Opposite Hamilton Court, Galleria Road, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.087429,28.4681035,North Indian,550,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.1,Orange,Average,195 +7078,Kashmiri Kitchen,1,Gurgaon,"Near IFFCO Chowk Metro Station, Opposite Metro Pillar 141, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0715115,28.4739245,Kashmiri,1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,210 +307185,Rumi's Kitchen,1,Gurgaon,"DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0858383,28.4700182,"Biryani, Lucknowi, North Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,165 +18371404,Baking Bad,1,Gurgaon,"DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0813069,28.4666333,"Italian, Pizza",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.7,Yellow,Good,98 +18281982,Bamboo Boat,1,Gurgaon,"Behind Supermart 2, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0888382,28.4614757,"Japanese, Tibetan, Vietnamese, Korean",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,115 +311725,Big Jack's,1,Gurgaon,"DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.08591864,28.46970311,"Continental, Burger, American",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,129 +18365994,Kebab Gali,1,Gurgaon,"A 226 & 227, Ground Floor, Super Mart 1, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0872491,28.4626173,"North Indian, Mughlai, Biryani",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,164 +18254524,Lucknow Mail,1,Gurgaon,"Shop 4, Plot 1126, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0857654,28.4700505,"Awadhi, North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,86 +18070480,Monster's Cafe,1,Gurgaon,"Opposite DLF Galleria Market, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.08598737,28.46978122,"Continental, North Indian, Chinese",1200,Indian Rupees(Rs.),No,Yes,Yes,No,3,3.5,Yellow,Good,269 +312261,Monty's Chicken Wings,1,Gurgaon,"E-5, Supermart 2, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0881933,28.461408,Fast Food,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,124 +18433890,My Country Platter,1,Gurgaon,"Near Supermart 2, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0887329,28.4614598,"Asian, Chinese, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,61 +18138434,SARA World Cuisine,1,Gurgaon,"D-10, Supermart 2, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0880584,28.4616192,"Italian, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,90 +303100,Wah! Amritsar,1,Gurgaon,"E-21, Supermart 2, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0879685,28.4617002,"North Indian, Mughlai",750,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,213 +18025125,World In A Box,1,Gurgaon,"DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0966008,28.4834181,"Healthy Food, European, Continental, Salad",750,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,461 +18425140,Bun Intended,1,Gurgaon,"DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.08301514,28.46624793,"Burger, American, Fast Food",850,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,93 +18241497,Cafe Gatherings,1,Gurgaon,"B-133, Supermart 1, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0875226,28.4622589,"Cafe, Continental",750,Indian Rupees(Rs.),No,Yes,No,No,2,4.4,Green,Very Good,161 +18153541,Cafe Soul Garden,1,Gurgaon,"Next to Supermart 2, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0888677,28.4616072,"Cafe, Continental, Italian, Pizza",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,255 +18339049,Food O Gram,1,Gurgaon,"DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0859584,28.4699579,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,88 +18232093,Happy Hakka,1,Gurgaon,"Super Mart 2, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.0880135,28.46157,"Chinese, Asian, Thai",650,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,134 +18361762,Kaiser,1,Gurgaon,"Super Mart 2, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.088706,28.46147,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,152 +18025098,Pizza Central,1,Gurgaon,"B-210, DLF Super Mart 1, DLF Phase 4, Gurgaon",DLF Phase 4,"DLF Phase 4, Gurgaon",77.087295,28.4623501,"Fast Food, Italian, Pizza",600,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,151 +18337913,Tasty Fare,1,Gurgaon,"DLF Phase 5, Gurgaon",DLF Phase 5,"DLF Phase 5, Gurgaon",77.0957635,28.4486392,"American, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,42 +18138446,Burger Point,1,Gurgaon,"Shop 4, Near Genpact, DLF Phase 5, Gurgaon",DLF Phase 5,"DLF Phase 5, Gurgaon",77.0978116,28.4495295,"Burger, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,39 +18383447,Drifters Cafe,1,Gurgaon,"Club 5, Club Drive, DLF Phase 5, Gurgaon",DLF Phase 5,"DLF Phase 5, Gurgaon",77.0951664,28.4477214,"Chinese, Thai, Asian",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,40 +18381262,Oh! Fudge,1,Gurgaon,"DLF Phase 5, Gurgaon",DLF Phase 5,"DLF Phase 5, Gurgaon",77.0957435,28.4486422,"Bakery, Desserts",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,93 +18349894,Anjlika,1,Gurgaon,"LG-3, DLF South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0992983,28.447904,"Bakery, Desserts, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +304552,IZU,1,Gurgaon,"15, Upper Ground Floor, DLF South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0990285,28.4481471,"Japanese, Sushi",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,129 +4618,Sugar & Spice - Le Marche,1,Gurgaon,"DLF South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0994781,28.4476522,"Bakery, Fast Food",800,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,107 +307366,Bizibean,1,Gurgaon,"GK-1, Upper Basement, DLF South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0992084,28.4480747,Cafe,550,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,59 +18366026,ChandChini,1,Gurgaon,"101 & 101B, 1st Floor, DLF South Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.09939003,28.4478212,"North Indian, Mithai, Chinese, Street Food",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.8,Yellow,Good,40 +9895,Coffee & Chai Co.,1,Gurgaon,"UG-8, DLF South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0992156,28.4480264,"Italian, Mexican, Cafe",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,296 +18453035,Greek Food & Beyond,1,Gurgaon,"314, 3rd Floor, South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0990488,28.4479922,"Greek, Mediterranean",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,27 +302455,Mediumwelldone,1,Gurgaon,"LG-34, DLF South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0994781,28.4476522,"American, European, North Indian",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,259 +308248,Sonya Bakery Cafe,1,Gurgaon,"B-202, 2nd Floor, DLF South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0991634,28.4482945,"Bakery, Desserts, Beverages",350,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,34 +313047,Soul & Spice Co.,1,Gurgaon,"UG-7, DLF South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0991184,28.448066,"North Indian, Street Food, Beverages",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,120 +8241,7 Degrees Brauhaus,1,Gurgaon,"310 & 311, 3rd Floor, DLF South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0992983,28.448173,"Continental, North Indian, European, Finger Food",3200,Indian Rupees(Rs.),Yes,No,No,No,4,4.2,Green,Very Good,1193 +18341926,Cafe Amaretto,1,Gurgaon,"Ground Floor, DLF South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0991184,28.4481557,"Cafe, Italian, European, Bakery",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,147 +308023,Sibang Bakery,1,Gurgaon,"108, 1st Floor, DLF South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0993432,28.4472358,"Bakery, Desserts, Beverages",500,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,227 +311486,The Hangout by 1861,1,Gurgaon,"2, Lower Ground Floor, DLF South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0993882,28.4477333,"Continental, American, Italian",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,192 +18138430,The Mad Teapot/The Wishing Chair,1,Gurgaon,"Lower Ground Floor , DLF South Point Mall, Golf Course Road, Gurgaon","DLF South Point Mall, Golf Course Road","DLF South Point Mall, Golf Course Road, Gurgaon",77.0994781,28.4476522,"Cafe, Italian, Bakery",1000,Indian Rupees(Rs.),Yes,No,No,No,3,4.4,Green,Very Good,83 +18361778,Ninkasi Imperial Brews & Cookery,1,Gurgaon,"201-204, 2nd Floor, DLF Star Mall, Sector 30, Gurgaon","DLF Star Mall, Sector 30","DLF Star Mall, Sector 30, Gurgaon",77.0526236,28.4616176,"North Indian, Asian, European",3000,Indian Rupees(Rs.),Yes,No,No,No,4,4.2,Green,Very Good,77 +9742,Zaffran,1,Gurgaon,"LG-001, DLF Star Mall, NH-8, Sector 30, Gurgaon","DLF Star Mall, Sector 30","DLF Star Mall, Sector 30, Gurgaon",77.0525451,28.4616552,"North Indian, Mughlai",1600,Indian Rupees(Rs.),No,Yes,No,No,3,4.1,Green,Very Good,229 +7518,Spiritual Bar & Lounge-DoubleTree by Hilton,1,Gurgaon,"DoubleTree by Hilton, Golf Course Road, Sector 56, Gurgaon","DoubleTree by Hilton, Sector 56","DoubleTree by Hilton, Sector 56, Gurgaon",77.104693,28.4221468,"Pizza, Italian",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.4,Orange,Average,52 +7516,The Food Store - DoubleTree by Hilton,1,Gurgaon,"DoubleTree by Hilton, Golf Course Road, Sector 56, Gurgaon","DoubleTree by Hilton, Sector 56","DoubleTree by Hilton, Sector 56, Gurgaon",77.104693,28.4221468,"European, Italian",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,58 +3586,Barista,1,Gurgaon,"Ground Floor, DT City Centre Mall, MG Road, Gurgaon","DT City Centre Mall, MG Road","DT City Centre Mall, MG Road, Gurgaon",77.0808644,28.4788581,Cafe,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,25 +313264,Burger King,1,Gurgaon,"Ground Floor, DT City Centre Mall, MG Road, Gurgaon","DT City Centre Mall, MG Road","DT City Centre Mall, MG Road, Gurgaon",77.0807295,28.4792485,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,452 +311805,Club Mojo,1,Gurgaon,"CS-211, Level 2, DT City Centre Mall, MG Road, Gurgaon","DT City Centre Mall, MG Road","DT City Centre Mall, MG Road, Gurgaon",77.0808194,28.4788089,"North Indian, Chinese",2000,Indian Rupees(Rs.),Yes,No,No,No,4,2.6,Orange,Average,35 +308897,KFC,1,Gurgaon,"Ground Floor, DT City Centre Mall, MG Road, Gurgaon","DT City Centre Mall, MG Road","DT City Centre Mall, MG Road, Gurgaon",77.0808644,28.479127,"American, Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,134 +2825,Not Just Paranthas,1,Gurgaon,"2nd Floor, DT City Centre Mall, MG Road, Gurgaon","DT City Centre Mall, MG Road","DT City Centre Mall, MG Road, Gurgaon",77.0808644,28.4788581,North Indian,1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.7,Orange,Average,426 +9674,Shree Rathnam,1,Gurgaon,"212, DT City Centre Mall, MG Road, Gurgaon","DT City Centre Mall, MG Road","DT City Centre Mall, MG Road, Gurgaon",77.0806845,28.4787511,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,108 +18276997,Mogli's Coffee,1,Gurgaon,"Shop 219, 2nd Floor, DLF City Center Mall, MG Road, Gurgaon","DT City Centre Mall, MG Road","DT City Centre Mall, MG Road, Gurgaon",77.08076142,28.47907544,Cafe,150,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,35 +18336180,Pind Balluchi,1,Gurgaon,"DT Mega Mall, 3rd Floor, DLF Phase 1, Gurgaon","DT Mega Mall, DLF Phase 1","DT Mega Mall, DLF Phase 1, Gurgaon",77.0931234,28.4757509,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,26 +311061,Sip n Bite,1,Gurgaon,"Food Court, 3rd Floor, DLF Mega Mall, DLF Phase 1, Gurgaon","DT Mega Mall, DLF Phase 1","DT Mega Mall, DLF Phase 1, Gurgaon",77.09314417,28.47571545,"North Indian, Chinese, Continental",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,38 +18312471,Abar Khabo,1,Gurgaon,"3rd Floor, K4, DT Mega Mall, DLF Phase 1, Gurgaon","DT Mega Mall, DLF Phase 1","DT Mega Mall, DLF Phase 1, Gurgaon",77.09307712,28.47579915,Bengali,550,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,86 +18378048,Moti Mahal Delux,1,Gurgaon,"LG 24, DLF Mega Mall, Golf Course Road, DLF Phase 1, Gurgaon","DT Mega Mall, DLF Phase 1","DT Mega Mall, DLF Phase 1, Gurgaon",77.093094,28.476268,North Indian,1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,29 +18462584,The Lost Mughal,1,Gurgaon,"DT Mega Mall, Golf Course Road, A Block, Sector 53, DLF Phase 1, Gurgaon","DT Mega Mall, DLF Phase 1","DT Mega Mall, DLF Phase 1, Gurgaon",77.09335204,28.47565209,"North Indian, Mughlai, Biryani",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,43 +5019,Fortune Deli - Fortune Select Excalibur,1,Gurgaon,"Fortune Select Excalibur, Sohna Road, Gurgaon","Fortune Select Excalibur, Sohna Road","Fortune Select Excalibur, Sohna Road, Gurgaon",77.0411995,28.4164952,Bakery,1000,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,42 +4719,India on my Plate - Fortune Select Excalibur,1,Gurgaon,"Fortune Select Excalibur, Sohna Road, Gurgaon","Fortune Select Excalibur, Sohna Road","Fortune Select Excalibur, Sohna Road, Gurgaon",77.0411995,28.4164952,"North Indian, Mughlai",2000,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,111 +305400,Orchid - Fortune Select Global,1,Gurgaon,"Fortune Select Global, Global Arcade, MG Road, Gurgaon","Fortune Select Global, MG Road","Fortune Select Global, MG Road, Gurgaon",77.1031649,28.4818475,"North Indian, Chinese, Continental",2500,Indian Rupees(Rs.),Yes,No,No,No,4,2.6,Orange,Average,20 +309141,Hungry Buffoons,1,Gurgaon,"Basement Parking, Level 1, Global Foyer Mall, Golf Course Road, Gurgaon","Global Foyer Mall, Golf Course Road","Global Foyer Mall, Golf Course Road, Gurgaon",77.0950645,28.460459,"North Indian, Italian, Mexican",300,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,24 +302880,Karim's,1,Gurgaon,"GF-4, Global Foyer Mall, Sector 43, Gurgaon","Global Foyer Mall, Golf Course Road","Global Foyer Mall, Golf Course Road, Gurgaon",77.0948924,28.4603029,"Mughlai, North Indian",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.8,Orange,Average,261 +303960,Manhattan Brewery & Bar Exchange,1,Gurgaon,"1st Floor, Global Foyer Mall, Sector 43, Golf Course Road, Gurgaon","Global Foyer Mall, Golf Course Road","Global Foyer Mall, Golf Course Road, Gurgaon",77.0950273,28.460271,"Finger Food, American, Continental, North Indian, Italian",2000,Indian Rupees(Rs.),No,No,No,No,4,4.6,Dark Green,Excellent,2093 +9773,Di Miso,1,Gurgaon,"11, Ground Floor, Global Foyer Mall, Golf Course Road, Gurgaon","Global Foyer Mall, Golf Course Road","Global Foyer Mall, Golf Course Road, Gurgaon",77.0946226,28.460546,"Korean, Japanese, Chinese, Asian",1500,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,38 +309125,Kuuraku,1,Gurgaon,"Ground Floor, Global Foyer Mall, Golf Course Road, Gurgaon","Global Foyer Mall, Golf Course Road","Global Foyer Mall, Golf Course Road, Gurgaon",77.0946989,28.4604087,Japanese,1250,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,106 +18463965,Vapour Bar Exchange,1,Gurgaon,"Global Foyer Mall, Golf Course Road, Gurgaon","Global Foyer Mall, Golf Course Road","Global Foyer Mall, Golf Course Road, Gurgaon",77.0949823,28.4603115,"Continental, Finger Food, Chinese, North Indian",1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,31 +18408054,19 Flavours Biryani,1,Gurgaon,"Global Foyer Mall, Sector 43, Golf Course Road, Gurgaon","Global Foyer Mall, Golf Course Road","Global Foyer Mall, Golf Course Road, Gurgaon",77.0954319,28.4604444,"Mughlai, Hyderabadi",700,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,84 +2091,Bhai Ji Foods,1,Gurgaon,"DLF Golf Links, Near American Express, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.0971853,28.4543812,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,165 +305790,Captain Bill$ Deliverz,1,Gurgaon,"Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.08932303,28.43230959,"North Indian, Chinese, Fast Food",1000,Indian Rupees(Rs.),No,Yes,Yes,No,3,2.7,Orange,Average,185 +3445,Curry n Phulka,1,Gurgaon,"Near Genpact, Paras Hospital Road, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.0979495,28.4494782,"North Indian, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,48 +312111,Jaguar,1,Gurgaon,"Opposite Genpact, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.0986339,28.4499246,"Chinese, North Indian",800,Indian Rupees(Rs.),Yes,No,No,No,2,2.8,Orange,Average,14 +2475,Jalsa Lounge,1,Gurgaon,"Jalsa Builiding, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.0941432,28.4667953,"North Indian, Chinese",850,Indian Rupees(Rs.),Yes,No,No,No,2,3.2,Orange,Average,37 +18361772,Lord of Grillz,1,Gurgaon,"Shop 2 & 3, La Mart, La Lagune, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.1042874,28.4372372,"Chinese, North Indian, Italian, Continental",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,30 +308553,Midnight Cravings Beyond Control,1,Gurgaon,"Plot 414, Sector 53, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.0975132,28.4369224,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,336 +307043,Outback,1,Gurgaon,"Sector 53/54 Round About, Near Audi Showroom, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.1047562,28.4324764,"Continental, North Indian",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,106 +307304,The Cinnamon Kitchen,1,Gurgaon,"Plot 391, Saraswati Kunj, Sector 53, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.0974101,28.4370522,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,50 +18427868,Dudleys,1,Gurgaon,"Plot 1605, Sector 53, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.102108,28.441123,"American, Continental, Burger",1000,Indian Rupees(Rs.),No,Yes,No,No,3,4.6,Dark Green,Excellent,150 +2148,56 Ristorante Italiano,1,Gurgaon,"Ground Floor, Vatika Atrium, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.1019957,28.4400925,Italian,2200,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.7,Yellow,Good,416 +18450874,All Time Cafe,1,Gurgaon,"Plot 26, Saraswati Kunj, Opposite Alchemist Hospital, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.1039229,28.4393747,"North Indian, Chinese, Thai",500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,32 +18408063,Baba's,1,Gurgaon,"Opposite Metro Pillar 200, Near Suncity, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.1042012,28.434018,"North Indian, Mughlai",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,110 +18393697,Chilli Indiana,1,Gurgaon,"12, Saraswati Kunj, Opposite Park Hospital, Sector 54, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.1032552,28.4396385,Italian,500,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,74 +8931,Go Kylin,1,Gurgaon,"Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.09865443,28.43823059,"Japanese, Chinese, Asian, Malaysian, Thai, Vietnamese",1500,Indian Rupees(Rs.),No,Yes,No,No,3,3.5,Yellow,Good,81 +306880,Just for Chai,1,Gurgaon,"1185, Near Ocus Technopolis Building, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.1025313,28.4411247,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,116 +18408031,Kabab Mistri,1,Gurgaon,"Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.1004268,28.4372138,"North Indian, Mughlai, Biryani",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,36 +304897,Nashta,1,Gurgaon,"Sector 53, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.10256,28.441297,"Healthy Food, Continental",700,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,224 +309136,Nooba,1,Gurgaon,"Near IBIS Hotel, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.0987588,28.4461485,Chinese,1500,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,148 +307580,Side Wok,1,Gurgaon,"Ground Floor, MPD Tower, Opposite Magnolias, DLF 5, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.0971853,28.4549192,"Burmese, Chinese, Japanese, Malaysian, Thai",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.9,Yellow,Good,280 +18430557,Takamaka,1,Gurgaon,"1st Floor, The Palm Springs Plaza, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.1015446,28.4451163,"North Indian, Continental, Italian",1700,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,67 +18441771,The Ark,1,Gurgaon,"Address One, Second Floor, Next to Hilton Double Tree Hotel, Baani, Sector 56, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.105038,28.4218116,"Seafood, Mediterranean",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,45 +18460311,The Gathering Hut,1,Gurgaon,"Opposite Magnolia Apartment, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.0974101,28.4545373,"North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,27 +18161583,Wangchuk's Ladakhi Kitchen,1,Gurgaon,"2nd Floor, Jalsa Building, Opposite Arjun Marg, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.0940831,28.4663219,"Tibetan, Nepalese",850,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,241 +18237346,Daawat-e-Kashmir,1,Gurgaon,"Navkriti Building, Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.109638,28.4247729,"Kashmiri, Mughlai",1200,Indian Rupees(Rs.),No,Yes,No,No,3,4.2,Green,Very Good,146 +311662,La Pino'z Pizza,1,Gurgaon,"94-D, Opposite Vatika Towers, Sector-53, Main Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.10288294,28.43849033,"Pizza, Mexican, Chinese, Italian",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,259 +18430602,The Diet Kitchen,1,Gurgaon,"Golf Course Road, Gurgaon",Golf Course Road,"Golf Course Road, Gurgaon",77.0956926,28.4604777,"Continental, Healthy Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,20 +5172,Om Sweets & Snacks,1,Gurgaon,"2nd Floor, Food Court, Hongkong Bazaar, Sector 57, Gurgaon","Hong Kong Bazaar Mall, Sector 57, Gurgaon","Hong Kong Bazaar Mall, Sector 57, Gurgaon, Gurgaon",77.0904863,28.4211432,"North Indian, South Indian, Street Food, Mithai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,138 +6643,Subway,1,Gurgaon,"17, 1st Floor, Hongkong Bazar Mall, Sector 57, Gurgaon","Hong Kong Bazaar Mall, Sector 57, Gurgaon","Hong Kong Bazaar Mall, Sector 57, Gurgaon, Gurgaon",77.0906308,28.4210196,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,101 +300978,Taste of Tamil Nadu,1,Gurgaon,"23-24, 1st Floor, Hong Kong Bazar, Sector 57, Gurgaon","Hong Kong Bazaar Mall, Sector 57, Gurgaon","Hong Kong Bazaar Mall, Sector 57, Gurgaon, Gurgaon",77.0904863,28.4208742,"South Indian, Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,94 +311640,The Bridge - Hotel Clark Inn Gurgaon,1,Gurgaon,"Hotel Clark Inn, Plot 45/46, Old Judicial Complex, Sector 15, Gurgaon","Hotel Clark Inn, Sector 15","Hotel Clark Inn, Sector 15, Gurgaon",77.033939,28.4576098,"North Indian, Chinese",1400,Indian Rupees(Rs.),Yes,No,No,No,3,2.8,Orange,Average,7 +311629,Illusion The Lounge Bar - Hotel Clark Inn Gurgaon,1,Gurgaon,"Hotel Clark Inn, Plot 45/46, Old Judicial Complex, Sector 15, Gurgaon","Hotel Clark Inn, Sector 15","Hotel Clark Inn, Sector 15, Gurgaon",77.0338804,28.4576265,"North Indian, Chinese",1400,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,2 +303430,Gardenia - Hotel Grenville,1,Gurgaon,"Hotel Grenville, 29/4, Sector 14, Gurgaon","Hotel Grenville, MG Road","Hotel Grenville, MG Road, Gurgaon",77.0386607,28.4655997,"North Indian, Continental, Chinese",1500,Indian Rupees(Rs.),Yes,No,No,No,3,2.8,Orange,Average,15 +303486,Call For Cuisine - Hotel Grenville,1,Gurgaon,"Hotel Grenville, 29/4, Near Kalyani Hospital, Opposite SBI Gurgaon, Sector 14, Gurgaon","Hotel Grenville, MG Road","Hotel Grenville, MG Road, Gurgaon",77.038546,28.4655681,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +309423,Armory - Hotel Haut.Monde,1,Gurgaon,"Hotel Haut.Monde, Part 1, Sector 15, Gurgaon","Hotel Haute.Monde, Sector 15","Hotel Haute.Monde, Sector 15, Gurgaon",77.0382289,28.4553886,Finger Food,1000,Indian Rupees(Rs.),Yes,No,No,No,3,2.9,Orange,Average,6 +309421,Citron - Hotel Haut.Monde,1,Gurgaon,"Hotel Haut Monde, Jharsa Road, Sector 15, Gurgaon","Hotel Haute.Monde, Sector 15","Hotel Haute.Monde, Sector 15, Gurgaon",77.0382176,28.4553962,"North Indian, Chinese, Continental",1300,Indian Rupees(Rs.),Yes,No,No,No,3,2.7,Orange,Average,13 +308390,Gabbar Meals,1,Gurgaon,"Shop 18, Metropark Food Court, HUDA City Centre Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon, Gurgaon",77.0726806,28.459424,"North Indian, Mughlai",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,260 +308473,McDonald's,1,Gurgaon,"Metropark Food Court, HUDA City Centre Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon, Gurgaon",77.0727706,28.4594327,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,90 +308997,Crust Bistro,1,Gurgaon,"Food Court, HUDA City Center Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon, Gurgaon",77.07272552,28.45938349,"Italian, Pizza",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,144 +308470,Dunkin' Donuts,1,Gurgaon,"Shop 3, HUDA City Centre Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon, Gurgaon",77.0727706,28.4594327,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,243 +308477,Kabab Roll Cafe,1,Gurgaon,"Metropark Food Court, HUDA City Centre Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon, Gurgaon",77.0727256,28.4593835,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,121 +307786,Starbucks,1,Gurgaon,"Ground Floor, South Wing, HUDA City Centre Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon, Gurgaon",77.0725008,28.4588688,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,183 +308447,Eggers Madhouse,1,Gurgaon,"11, Metropark Food Court, HUDA City Centre Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon","Huda City Centre Metro Station, Sector 29, Gurgaon, Gurgaon",77.0726806,28.459424,Fast Food,500,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,647 +17977796,Gallery Caf - Hyatt Place,1,Gurgaon,"Hyatt Place,15/1, Old Delhi-Gurgaon Road, Sector 18, Udyog Vihar, Gurgaon",Hyatt Place Gurgaon,"Hyatt Place Gurgaon, Gurgaon",77.065948,28.5008981,Cafe,1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,73 +17977757,Coffee to Cocktail Bar - Hyatt Place,1,Gurgaon,"Hyatt Place,15/1, Old Delhi-Gurgaon Road, Sector 18, Udyog Vihar, Gurgaon",Hyatt Place Gurgaon,"Hyatt Place Gurgaon, Gurgaon",77.0659784,28.5008454,Drinks Only,2100,Indian Rupees(Rs.),Yes,No,No,No,4,0,White,Not rated,0 +4256,Spice It - Hotel IBIS,1,Gurgaon,"Hotel IBIS, Block 1, Sector 53, Golf Course Road, Gurgaon","IBIS Hotel, Golf Course Road","IBIS Hotel, Golf Course Road, Gurgaon",77.0993934,28.4470228,"Fast Food, North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,2.7,Orange,Average,96 +18306548,Nukkadwala,1,Gurgaon,"JMD Megapolis, Sector 48, Sohna Road, Gurgaon","JMD Megapolis Mall, Sohna Road","JMD Megapolis Mall, Sohna Road, Gurgaon",77.038187,28.419985,"Fast Food, Street Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,41 +5032,Power Play Resto Bar,1,Gurgaon,"Upper Ground Floor, JMD Regent Arcade, Near MGF Megacity Mall, MG Road, Gurgaon","JMD Regent Arcade Mall, MG Road","JMD Regent Arcade Mall, MG Road, Gurgaon",77.088553,28.4797315,"North Indian, American, Italian",1850,Indian Rupees(Rs.),Yes,No,No,No,3,2.8,Orange,Average,91 +7472,Daikichi,1,Gurgaon,"UGF-02, JMD Regent Arcade Mall, MG Road, Gurgaon","JMD Regent Arcade Mall, MG Road","JMD Regent Arcade Mall, MG Road, Gurgaon",77.0886879,28.4797893,Japanese,1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,70 +302336,The Atrium - By Jukaso It Suites,1,Gurgaon,"Jukaso It Suites, Plot 1, IDC Industrial Area, Near Sector 14, Gurgaon","Jukaso It Suites, Sector 14","Jukaso It Suites, Sector 14, Gurgaon",77.0536264,28.4725545,"Asian, Bakery",1500,Indian Rupees(Rs.),Yes,No,No,No,3,2.8,Orange,Average,21 +8413,Delhi - Kingdom of Dreams,1,Gurgaon,"Culture Gully, Kingdom of Dreams, Great Indian Nautanki Company Ltd., Auditorium Complex, Sector 29, Gurgaon","Kingdom of Dreams, Sector 29","Kingdom of Dreams, Sector 29, Gurgaon",77.0679481,28.4679413,Street Food,500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,364 +8437,Lucknow - Kingdom of Dreams,1,Gurgaon,"Culture Gully, Kingdom of Dreams, Great Indian Nautanki Company Ltd., Auditorium Complex, Sector 29, Gurgaon","Kingdom of Dreams, Sector 29","Kingdom of Dreams, Sector 29, Gurgaon",77.0683484,28.4684937,Lucknowi,1000,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,179 +8019,Longitude 7703' Bar - Le Meridien Gurgaon,1,Gurgaon,"Le Meridien Gurgaon, Sector 26, Gurgaon Delhi Border, MG Road, Gurgaon","Le Meridien Gurgaon, MG Road","Le Meridien Gurgaon, MG Road, Gurgaon",77.1081995,28.4805868,Finger Food,1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,23 +307416,I-Kandy - Le Meridien Gurgaon,1,Gurgaon,"Le Meridien Gurgaon, Sector 26, Gurgaon Delhi Border, MG Road, Gurgaon","Le Meridien Gurgaon, MG Road","Le Meridien Gurgaon, MG Road, Gurgaon",77.1087266,28.481264,Finger Food,4500,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,218 +18369743,Bella Cucina - Le Meridien Gurgaon,1,Gurgaon,"Le Meridien Gurgaon, Sector 26, Gurgaon Delhi Border, MG Road, Gurgaon","Le Meridien Gurgaon, MG Road","Le Meridien Gurgaon, MG Road, Gurgaon",77.1087258,28.4812481,Italian,4000,Indian Rupees(Rs.),Yes,No,No,No,4,4.1,Green,Very Good,38 +307533,Bar Code - Leisure Inn,1,Gurgaon,"Leisure Inn, 17/6, Old Delhi Gurgaon Road, Sector 14, Gurgaon","Leisure Inn, Sector 14, Gurgaon","Leisure Inn, Sector 14, Gurgaon, Gurgaon",77.0395172,28.4705263,Finger Food,1900,Indian Rupees(Rs.),Yes,No,No,No,3,3,Orange,Average,6 +307225,Bites - Leisure Inn,1,Gurgaon,"Leisure Inn, 17/6, Old Delhi Gurgaon Road, Sector 14, Gurgaon","Leisure Inn, Sector 14, Gurgaon","Leisure Inn, Sector 14, Gurgaon, Gurgaon",77.0395353,28.4705061,"North Indian, Continental, Asian",1400,Indian Rupees(Rs.),Yes,No,No,No,3,3,Orange,Average,19 +307426,Outback Bar and Grill - Leisure Inn,1,Gurgaon,"Leisure Inn, 17/6, Old Delhi Gurgaon Road, Sector 14, Gurgaon","Leisure Inn, Sector 14, Gurgaon","Leisure Inn, Sector 14, Gurgaon, Gurgaon",77.0396702,28.4704989,"North Indian, Finger Food",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3,Orange,Average,10 +6700,Citrus Cafe - Lemon Tree Premier,1,Gurgaon,"Lemon Tree Premier, 48, Leisure Valley, Sector 29, Gurgaon","Lemon Tree Premier, Sector 29","Lemon Tree Premier, Sector 29, Gurgaon",77.0648668,28.4676295,"North Indian, Continental, Chinese",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,137 +300538,Ammu's South Indian Restaurant,1,Gurgaon,"3, Ground Floor, Vakil Market, Chakkarpur, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0809099,28.4734916,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,45 +4879,Barista,1,Gurgaon,"Global Busines Park, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.1023726,28.4805404,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,22 +18198441,Bengali By Nature,1,Gurgaon,"Shop 1016, Maruti Vihar, Chakkarpur, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0827529,28.4766191,"Fast Food, Chinese, Bengali",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,38 +18334445,Burger Planet,1,Gurgaon,"Shop 7, Opposite to Universal Gym, Numberdar Market, Chakkarpur, Gurgaon, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.085001,28.4771042,"North Indian, Chinese, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,21 +302920,Cafe Coffee Day,1,Gurgaon,"MG Road Metro Station, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0802349,28.4797836,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,20 +18430882,Chini Bowl,1,Gurgaon,"1st Floor, Essel Towers, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0761927,28.476072,"Chinese, Thai, Japanese, Tibetan",800,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,15 +313204,E Yum,1,Gurgaon,"Plot H-16/6, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.10031841,28.47773187,"Continental, Italian, Mexican",750,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.4,Orange,Average,69 +303477,Handi X-Press,1,Gurgaon,"Shop 4, Housing Board Complex, Saraswati Vihar, Chakarpur, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0828835,28.4761607,"North Indian, Chinese, Mughlai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,75 +5230,Ion Club & Dining Lounge,1,Gurgaon,"12/14, UGF, JMD Arcade Mall, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.088598,28.479691,"Continental, North Indian, Mughlai, Chinese",1800,Indian Rupees(Rs.),Yes,No,No,No,3,2.6,Orange,Average,115 +3582,Komachi,1,Gurgaon,"TF 3A/3B/3C, 3rd Floor, MGF Plaza Mall, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0731066,28.4776351,Japanese,1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,39 +303470,Mehfil-e-Handi,1,Gurgaon,"634, Saraswati Vihar, Chakarpur, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0829327,28.4760986,"North Indian, Chinese, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,36 +429,Mezbaan's,1,Gurgaon,"SCO 20, Housing Board Shopping Complex, Saraswati Vihar, Near Union Bank, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0823932,28.4757777,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,61 +18034040,Mini Mahal Delux,1,Gurgaon,"217-A, 2nd Floor, City Center Mall, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0805946,28.4787425,"North Indian, Chinese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,2.8,Orange,Average,23 +17953932,Pita Pan,1,Gurgaon,"4-B, Food Court, 3rd Floor, MGF Metropolitan Mall, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0803248,28.4805094,"Arabian, Lebanese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,82 +312668,SBar Club & Lounge,1,Gurgaon,"1-4, Lower Ground Floor, Grand Mall, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0902166,28.4796672,Finger Food,2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.1,Orange,Average,13 +997,China Club,1,Gurgaon,"Lobby Level, Tower C, Global Business Park, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.1020369,28.4800544,"Chinese, Asian",2000,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,283 +2144,Coriander Leaf,1,Gurgaon,"Ground Floor, Vatika Triangle, Sushant Lok 1, Behind DT City Center, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0811126,28.4775699,"Mughlai, Pakistani, North Indian",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,665 +305682,Doughlicious,1,Gurgaon,"Global Business Park, Ground Floor, Tower B, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.1026087,28.4806694,"Bakery, Desserts, Fast Food",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,69 +17953934,FreshMenu,1,Gurgaon,"MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0820362,28.4800592,"Italian, Chinese, Continental, Thai, Mediterranean, Lebanese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,198 +3855,L'Angoor,1,Gurgaon,"Lobby Level, Tower C, Global Business Park, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.1020768,28.4806041,"American, Seafood, Italian, Japanese, Thai",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,57 +310445,The Cakelicious Factory,1,Gurgaon,"2nd Floor, Opposite Metro Pillar 57, Shanti Complex, Sikandarpur Market, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0963632,28.4821819,"Bakery, Desserts, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,43 +892,Green's,1,Gurgaon,"SCO 23, Housing Board Shopping Complex, Saraswati Vihar, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0824381,28.4757372,"Chinese, North Indian, South Indian, Street Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.3,Red,Poor,31 +2056,New Zaika,1,Gurgaon,"IFFCO Chowk, MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0692631,28.477294,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,35 +307509,Love Is Cakes,1,Gurgaon,"MG Road, Gurgaon",MG Road,"MG Road, Gurgaon",77.0935886,28.4726847,Bakery,600,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,246 +797,Costa Coffee,1,Gurgaon,"Ground Floor, MGF Mega City Mall, MG Road, Gurgaon","MGF Mega City Mall, MG Road","MGF Mega City Mall, MG Road, Gurgaon",77.0894073,28.4798584,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,31 +308013,Uforia,1,Gurgaon,"2nd Floor, MGF Mega City Mall, MG Road, Gurgaon","MGF Mega City Mall, MG Road","MGF Mega City Mall, MG Road, Gurgaon",77.0892274,28.4798411,"Continental, Asian, North Indian, Italian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,240 +2760,Vapour Pub & Brewery,1,Gurgaon,"2nd Floor, MGF Mega City Mall, MG Road, Gurgaon","MGF Mega City Mall, MG Road","MGF Mega City Mall, MG Road, Gurgaon",77.0892792,28.4798031,"Finger Food, Continental, North Indian, Italian, Chinese",1500,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,1902 +8913,Pirates of Grill,1,Gurgaon,"Ground Floor, MGF Mega City Mall, MG Road, Gurgaon","MGF Mega City Mall, MG Road","MGF Mega City Mall, MG Road, Gurgaon",77.0893563,28.4799415,"North Indian, Continental, Mughlai, Asian",2000,Indian Rupees(Rs.),Yes,No,No,No,4,4.1,Green,Very Good,2806 +311759,Barista Creme Lavazza,1,Gurgaon,"Lower Ground Floor, MGF Metropolis Mall, MG Road, Gurgaon","MGF Metropolis Mall, MG Road","MGF Metropolis Mall, MG Road, Gurgaon",77.0823932,28.4785568,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,13 +18446889,Frozen Adda,1,Gurgaon,"Food Court, 2nd Floor, MGF Metropolis Mall, MG Road, Gurgaon","MGF Metropolis Mall, MG Road","MGF Metropolis Mall, MG Road, Gurgaon",77.0816737,28.4784876,"Ice Cream, Desserts",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +9957,McDonald's,1,Gurgaon,"MGF Metropolis Mall, MG Road, Gurgaon","MGF Metropolis Mall, MG Road","MGF Metropolis Mall, MG Road, Gurgaon",77.0818967,28.479447,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,68 +308840,Mr Idli Xpress,1,Gurgaon,"LG-33, Lower Ground Floor, MGF Metropolis Mall, MG Road, Gurgaon","MGF Metropolis Mall, MG Road","MGF Metropolis Mall, MG Road, Gurgaon",77.0817187,28.4792539,"South Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,120 +18432226,buno,1,Gurgaon,"2nd Floor, Near Lifestyle, MGF Metropolis Mall, MG Road, Gurgaon","MGF Metropolis Mall, MG Road","MGF Metropolis Mall, MG Road, Gurgaon",77.0816737,28.478398,"Cafe, American, Desserts, Italian, Bakery",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,18 +311777,Starbucks,1,Gurgaon,"Upper Ground Floor, MGF Metropolis Mall, MG Road, Gurgaon","MGF Metropolis Mall, MG Road","MGF Metropolis Mall, MG Road, Gurgaon",77.0818667,28.4791426,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,66 +2064,Al Kabab,1,Gurgaon,"9, Food Court, 3rd Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0803248,28.4803301,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,67 +311758,Bangkok 1,1,Gurgaon,"FC-10B, 3rd Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0802124,28.4802521,Thai,550,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,40 +514,Barista,1,Gurgaon,"Ground Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0800708,28.4809987,Cafe,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,39 +18408212,Cafe Cravings,1,Gurgaon,"Shop 22, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0802574,28.481108,"Cafe, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,19 +2061,Hello Sichuan,1,Gurgaon,"3rd Floor, Food Court, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0802215,28.4806523,Chinese,750,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,42 +2458,McDonald's,1,Gurgaon,"Ground Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0800417,28.4803729,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,234 +420,Rajasthali,1,Gurgaon,"3rd Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0802124,28.4808348,"Gujarati, Rajasthani",750,Indian Rupees(Rs.),Yes,No,No,No,2,2.9,Orange,Average,501 +1599,Street Foods by Punjab Grill,1,Gurgaon,"3rd Floor, Food Court, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0803248,28.4803301,"Street Food, North Indian",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,61 +159,Subway,1,Gurgaon,"Shop 4A, 3rd Floor, Food Court, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0802124,28.4804762,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,81 +300119,Tibb's Frankie,1,Gurgaon,"Food Court, 3rd Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0801851,28.4803207,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,118 +18466924,Tunday Kababi Dastarkhwan-e-Awadh,1,Gurgaon,"3rd Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.08040039,28.48028198,"Mughlai, North Indian",700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,13 +18354984,Dunkin' Donuts,1,Gurgaon,"3rd Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0802349,28.4807697,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,26 +1096,Haldiram's,1,Gurgaon,"3rd Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0802798,28.4807292,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,185 +18336208,Keventers,1,Gurgaon,"3rd Floor, Opposite PVR Cinemas, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0802349,28.4807697,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,27 +3213,Khaaja Chowk,1,Gurgaon,"3rd Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0801711,28.4805322,"North Indian, Mughlai, South Indian, Rajasthani, Street Food",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,496 +18381642,Phantom,1,Gurgaon,"Shop 48 & 49, 2nd Floor , MGF Metropolitan, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0802349,28.4808594,"North Indian, Continental, Chinese",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,55 +338,Sage,1,Gurgaon,"Food Court, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0801226,28.4805204,"Pizza, Italian",900,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,205 +1245,TGI Friday's,1,Gurgaon,"Ground Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0801187,28.4810064,"American, Tex-Mex",2500,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.7,Yellow,Good,730 +18381233,The Belgian Fries Company,1,Gurgaon,"9 A, Food Court, 3rd Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0801674,28.4802478,"European, American, Street Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,31 +18153552,The Grills King,1,Gurgaon,"Shop 1-5, Ground Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0803727,28.4808767,"North Indian, Chinese, Continental",1400,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,468 +18082232,Chicago Pizza,1,Gurgaon,"FC-08B, Food Court, 3rd Floor, MGF Metropolitan, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.080144,28.4803174,Pizza,600,Indian Rupees(Rs.),No,No,No,No,2,2.3,Red,Poor,29 +3585,Suburbia - The Empire,1,Gurgaon,"2nd Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0802349,28.4811283,"Continental, European, North Indian",1800,Indian Rupees(Rs.),Yes,No,No,No,3,2.1,Red,Poor,90 +305698,Viva Hyderabad,1,Gurgaon,"Food Court, 3rd Floor, MGF Metropolitan Mall","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0802124,28.4803866,"Biryani, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,34 +18337917,Queens Caf,1,Gurgaon,"R3-B, 3rd Floor, MGF Metropolitan Mall, MG Road, Gurgaon","MGF Metropolitan Mall, MG Road","MGF Metropolitan Mall, MG Road, Gurgaon",77.0801793,28.4805091,"Cafe, North Indian",900,Indian Rupees(Rs.),Yes,No,No,No,2,4,Green,Very Good,62 +6847,Cafe Coffee Day,1,Gurgaon,"23, Ground Floor, Ninex City Mart Mall, Sohna Road, Gurgaon","Ninex City Mart Mall, Sohna Road","Ninex City Mart Mall, Sohna Road, Gurgaon",77.0412894,28.4166832,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,34 +8147,FOA - The Flavours of Arabia,1,Gurgaon,"3rd Floor, Ninex City Mart Mall, Sohna Road, Gurgaon","Ninex City Mart Mall, Sohna Road","Ninex City Mart Mall, Sohna Road, Gurgaon",77.0413756,28.4167026,"Lebanese, North Indian",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,165 +18198825,A1,1,Gurgaon,"4/9, Ratan Garden, New Colony Mor, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0204947,28.4669375,Biryani,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +302044,Apni Rasoi,1,Gurgaon,"Shop 301-302, Opposite Apna Enclave, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0129534,28.4841816,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18399220,DBDN Deena Meat Vala,1,Gurgaon,"Shop 105, Old Jail Market, Shivaji Nagar, Old Gurgaon, Sector 11, Near Sector 37, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.026849,28.4569872,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,5 +5084,Deep Chicken Corner,1,Gurgaon,"Shop 7, Palika Bazar, Near New Colony More, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0206596,28.4667157,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,18 +302024,Dilli Rasoi,1,Gurgaon,"B-386, Ratan Garden, New Colony Mor, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0203953,28.4667607,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,31 +18396399,French Omelette,1,Gurgaon,"New Colony More, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0204174,28.4668549,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,7 +309987,Green Chick Chop,1,Gurgaon,"Opposite Bhim Nagar Aryan Hospital, Shivpuri, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0189174,28.4709408,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +18358183,Hangout Cafe,1,Gurgaon,"16 C, Opposite Lady of Fatima Convent School, New Colony, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0196893,28.4653555,"Fast Food, Chinese",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,27 +304713,Hari Om Rasoi,1,Gurgaon,"Main Madanpuri Road, Gali 5, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0178663,28.4603933,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,28 +18396200,Harish Phulwari,1,Gurgaon,"Sohna Chowk, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0274904,28.4580309,"North Indian, South Indian, Fast Food, Street Food, Mithai",600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,4 +301358,Hotel Rajvanshi Restaurant,1,Gurgaon,"Hotel Rajvanshi, Near DSD College, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.022202,28.4645876,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,25 +6834,Jagdish Vaishno Dhaba,1,Gurgaon,"Opposite Gurgaon Dreams, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0181934,28.473084,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +6835,JVR Jayka,1,Gurgaon,"Opposite Gurgaon Dreamz, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0182331,28.4730183,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +302041,Kaza,1,Gurgaon,"Near Sector 4 & 5 Chowk, Opposite Sneh Hospital, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0136942,28.4823394,"North Indian, Mughlai, South Indian, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,25 +310412,Knight Delight Kafe,1,Gurgaon,"17, Shyam Palace, Baba Prakash Puri Chowk, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0141435,28.4810609,"Fast Food, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,12 +18350120,Ko Jitters,1,Gurgaon,"P-4, Circular Road, New Colony, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0166864,28.4678506,"Fast Food, Beverages",450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +301989,Laajawab Chaap Express,1,Gurgaon,"Circular Road, New Colony, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0175175,28.4674068,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,17 +2107,Laddu Gopal,1,Gurgaon,"727, Bhim Nagar, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0193016,28.4713437,"North Indian, South Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,13 +1029,Mini's Royal Cafe,1,Gurgaon,"Krishna Colony Corner, Near Taneja Hospital, New Colony, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0136441,28.4670202,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,21 +18144475,Pakwan,1,Gurgaon,"164/11, Shivpuri, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0189082,28.4712555,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,60 +18331053,Patiala,1,Gurgaon,"16-F, Madanpuri Road, New Colony, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0204469,28.4667702,"Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,33 +18383525,Pind Balluchi,1,Gurgaon,"204/1/13, Dhobi Ghat, Subash Nagar, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0221359,28.4639996,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,11 +1019,Pizza Man,1,Gurgaon,"Opposite Sector 7, Huda Market, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0186408,28.4721483,"Pizza, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,8 +18311926,Punjabi Dhani,1,Gurgaon,"220/11, Near Aryan Hospital, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0193636,28.470213,North Indian,700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,25 +302037,Raju Halwai,1,Gurgaon,"Shop 49, Gali 6, Main Madanpuri Road, Laxmi Bazar, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0179074,28.4603566,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +18396397,Rupa Tikki Wala And Caterers,1,Gurgaon,"Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.023212,28.4626082,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,4 +302027,Samrat The Cake Shoppe,1,Gurgaon,"Sohna Chowk, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0259078,28.4597556,"Bakery, Desserts, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,11 +306938,Samrat,1,Gurgaon,"Sohna Chowk, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0259899,28.4598188,"Bakery, Mithai, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,10 +17977759,Sanjha Chula,1,Gurgaon,"Opposite Tirath Ram Hospital, Basai Road, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0200512,28.4570545,North Indian,700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,6 +309986,Silver Crown,1,Gurgaon,"92/9, Near SBI Bank, New Colony, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0191832,28.4669487,"North Indian, Chinese, Street Food, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,12 +301800,Super Bakery,1,Gurgaon,"Near Bank of India, Jacobpura, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0247842,28.4609586,"Bakery, Fast Food, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,26 +2177,The Chic,1,Gurgaon,"Shivpuri, Old Railway Road Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0187625,28.470938,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,15 +304718,Unique Bus Wales,1,Gurgaon,"Opposite Furniture Height, New Colony, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0175382,28.467287,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,16 +310493,Dilli 6 Express,1,Gurgaon,"New Colony More, Near Easy Day, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0203817,28.4667732,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,31 +18017239,Mangle Di Kulfi,1,Gurgaon,"154-B, New Colony Road, New Colony, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0168909,28.4655014,"Ice Cream, Desserts",100,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,18 +18372397,The Oven Artist,1,Gurgaon,"191, New Colony, Near Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0157175,28.4652054,Bakery,800,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,25 +304700,Bal Ji Rasoi,1,Gurgaon,"Near IndusInd Bank ATM, Main Madanpuri Road, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0179026,28.460487,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18492087,Dakshin Bistro,1,Gurgaon,"P-3, Circular Road, Opposite Holy Heart Preparatory School, New Colony, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",0,0,"South Indian, Biryani",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18396391,Metro Dhaba,1,Gurgaon,"Sohna Chowk, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0277668,28.4579956,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18370499,Sukhman Food City,1,Gurgaon,"Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0212272,28.4688983,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18336543,The Burger Hub,1,Gurgaon,"P-6A, New Colony, Near, Old Railway Road, Gurgaon",Old Railway Road,"Old Railway Road, Gurgaon",77.0161752,28.4681772,"Burger, Fast Food, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +3603,Pizza Hut Delivery,1,Gurgaon,"11, Ground Floor, Omaxe Gurgaon Mall, Sohna Road, Gurgaon","Omaxe Celebration Mall, Sohna Road, Gurgaon","Omaxe Celebration Mall, Sohna Road, Gurgaon, Gurgaon",77.0432685,28.4109555,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.2,Red,Poor,93 +313043,Hot Cherries,1,Gurgaon,"UG-9, Block C, Omaxe Gurgaon Mall, Sohna Road, Gurgaon",Omaxe Gurgaon Mall,"Omaxe Gurgaon Mall, Gurgaon",77.0433584,28.4106951,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,84 +230,Domino's Pizza,1,Gurgaon,"4-C, Ground Floor, Omaxe Gurgaon Mall, Sohna Road, Gurgaon",Omaxe Gurgaon Mall,"Omaxe Gurgaon Mall, Gurgaon",77.0431785,28.4113952,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,112 +18322641,Coldpress Company,1,Gurgaon,"Omaxe Gurgaon Mall Sohna Road, Gurgaon",Omaxe Gurgaon Mall,"Omaxe Gurgaon Mall, Gurgaon",77.0435383,28.4105331,"Healthy Food, Juices, Salad, Italian, Continental",500,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,74 +18391155,Hahn's Kitchen,1,Gurgaon,"One Horizon Centre, Golf Course Road, Gurgaon","One Horizon Center, Golf Course Road","One Horizon Center, Golf Course Road, Gurgaon",77.09791951,28.45112282,Korean,1800,Indian Rupees(Rs.),No,No,No,No,3,3.2,Orange,Average,12 +18285742,Shree Rathnam,1,Gurgaon,"One Horizon Center, Golf Course Road, Gurgaon","One Horizon Center, Golf Course Road","One Horizon Center, Golf Course Road, Gurgaon",77.0974101,28.4511301,"South Indian, North Indian",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.4,Orange,Average,36 +18285725,Caffe Tonino,1,Gurgaon,"1st Floor, One Horizon Center, Golf Course Road, Gurgaon","One Horizon Center, Golf Course Road","One Horizon Center, Golf Course Road, Gurgaon",77.0974101,28.4511301,"Italian, Pizza, Cafe",1400,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,101 +18383488,Carl's Jr.,1,Gurgaon,"1st Floor, One Horizon Centre, Golf Course Road, Gurgaon","One Horizon Center, Golf Course Road","One Horizon Center, Golf Course Road, Gurgaon",77.0971403,28.4508352,"Burger, American, Fast Food",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,45 +18285745,Delhi Club House,1,Gurgaon,"One Horizon Center, Golf Course Road, Gurgaon","One Horizon Center, Golf Course Road","One Horizon Center, Golf Course Road, Gurgaon",77.0968183,28.4514834,"North Indian, Continental, Asian",1700,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,81 +18391159,GoGourmet,1,Gurgaon,"1st Floor, One Horizon Center, Golf Course Road, Gurgaon","One Horizon Center, Golf Course Road","One Horizon Center, Golf Course Road, Gurgaon",77.0975899,28.4511473,"Healthy Food, Beverages",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,33 +18391132,Shophouse by Kylin,1,Gurgaon,"T 1-107, One Horizon Centre, Golf Course Road, Gurgaon","One Horizon Center, Golf Course Road","One Horizon Center, Golf Course Road, Gurgaon",77.0972691,28.4506618,"Japanese, Chinese, Thai",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,37 +18272387,Starbucks,1,Gurgaon,"Ground Floor, One Horizon Center, Golf Course Road, Gurgaon","One Horizon Center, Golf Course Road","One Horizon Center, Golf Course Road, Gurgaon",77.09822863,28.45109776,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,16 +8651,Baskin Robbins,1,Gurgaon,"2-H, Commercial Complex, Opposite Ansal Celebrity Home, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0378999,28.5125527,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +18291436,Bikaner Sweets & Restaurant,1,Gurgaon,"Shri Ram Mandir Complex, Opposite Celebrity Homes, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0352809,28.5145359,"Street Food, North Indian, Mithai",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +301936,Burger Bites & More,1,Gurgaon,"Shop 5, Annapurna Market, Opposite C2 Block, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0203837,28.4939088,"Fast Food, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,19 +18264717,Caf Gramophone,1,Gurgaon,"UGF-114, C-2, Palam Corporate Plaza, Opposite Palm Tree Hotel, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0210472,28.496845,"Cafe, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,15 +7083,Chawla Bakers,1,Gurgaon,"6, Dharam Colony, Near Spanish Court, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.030404,28.502947,"Bakery, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,18 +312105,Crust N Cakes,1,Gurgaon,"Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0362376,28.5037904,Bakery,550,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,6 +18311942,Darjeeling Kanchanjanga Momos,1,Gurgaon,"Shop 2, G Block, Behind Ansal Plaza Mall, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0409296,28.5118498,"Chinese, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18430874,Desserts 83,1,Gurgaon,"K 1466 Ansal, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0436219,28.5216917,Desserts,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +18144481,Express Kitchen,1,Gurgaon,"Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",0,0,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +18264977,Giani's,1,Gurgaon,"Shop 3, Shri Ram Mandir Complex, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0347314,28.5150103,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,24 +303859,Hangover,1,Gurgaon,"Near Sector 5, Gol Chakkar, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0199219,28.4865257,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,2.7,Orange,Average,11 +5106,Sangam Sweets,1,Gurgaon,"Opposite H Block, Near OBC Bank, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0373642,28.5176801,"Street Food, Mithai, South Indian, North Indian, Chinese",250,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,9 +308726,Shree Bikaner Misthan Bhandar,1,Gurgaon,"Opposite B & C Block Gate, Near Spanish Court, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0302241,28.5029296,"Mithai, Street Food, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +303209,Shree Shyam Rasoi,1,Gurgaon,"Opposite Power House, Palam Vihar Road, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0336712,28.5034359,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +18375401,Swad On Grill,1,Gurgaon,"Shop 1, Near Celebrity Homes, DSOI Club Road, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.037902,28.5125468,"Continental, Chinese, North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,17 +18396428,The Pepper's,1,Gurgaon,"Shop 10, Behind Axis Bank, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0394717,28.5119564,"North Indian, Mughlai, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +18396178,Anisha Restaurant,1,Gurgaon,"Shop 7, Opposite B Block Power House, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0319416,28.5033789,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18346735,Annapoorna Foods,1,Gurgaon,"A-242, 1st Floor, Block E, Palam Vyapar Kendra, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0308638,28.5089193,"North Indian, Mughlai, South Indian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +303697,Bakelicious 18,1,Gurgaon,"Celebrity Homes, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0351721,28.5145201,"Bakery, Desserts",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18463987,Bansiwala Bakery,1,Gurgaon,"Shop 2, Sector 5 Chowk, Palam Vihar Road, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0196076,28.4857718,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18463989,Bansiwala Rasoi,1,Gurgaon,"Shop 3, Sector 5 Chowk, Palam Vihar Road, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0198157,28.4859312,Street Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304771,Bansiwala Sweets,1,Gurgaon,"Sector 5 Chowk, Palam Vihar Road, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0197677,28.4859483,"Street Food, Mithai",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +311850,Best Pizza Hut,1,Gurgaon,"Mian Bajghera Road, Opposite Durga Sweets, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0093235,28.4921812,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18471289,Bikaner Sweets & Restaurant,1,Gurgaon,"Bajgehara Road, New Palam Vihar, Near Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.024736,28.5144976,"North Indian, Street Food, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18324432,Chaska Food Corner,1,Gurgaon,"Shop 1, Bestech Park View Residency Market, Sector 3, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0225318,28.497571,"Chinese, North Indian",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18476508,Chulha,1,Gurgaon,"346-A, Jade Villas, H Block, Opposite Gold's Gym, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",0,0,"North Indian, Mughlai, Awadhi",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18350153,Dev Restaurant,1,Gurgaon,"Shop 4, Bestech Park View Residency, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.02189766,28.49841367,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18472669,Dietpoint,1,Gurgaon,"Bajgera Chowk, New Palam Vihar, Near Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.025184,28.5142695,"Chinese, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18463993,Gautam Bakery,1,Gurgaon,"Opposite Ansal API, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.02152,28.4959225,"Bakery, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18476498,Honey Hot & Spicy,1,Gurgaon,"Bijwasan, Palam Vihar Road, Near Rashan Card Office, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",0,0,"North Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18471248,Hot & Spicy,1,Gurgaon,"Opposite Mahindra Aura Apartment, New Palam Vihar, Near Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0252309,28.5118122,"North Indian, Chinese, South Indian, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18464002,Hot Fork,1,Gurgaon,"C-98, Vyapar Kendra, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0313937,28.5091367,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18478377,Icon Foods,1,Gurgaon,"A-13, Opposite Power House, Main Gurgaon Road, Palam Vihar Extension, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",0,0,"North Indian, South Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18244261,Indochi Cafe & Restaurant,1,Gurgaon,"G-1, Behind Ansal Plaza Mall, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0411995,28.512055,"North Indian, Mughlai, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18274332,Love to Wish,1,Gurgaon,"Opposite Golds Gym, Near Celebrity Homes, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0378566,28.5125685,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18460280,M Crme,1,Gurgaon,"K 1407, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.04251687,28.52068371,"Bakery, Desserts",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18263500,Mamta Tiffin Service,1,Gurgaon,"Block A, Rajendra Park, Bajghera Road, Near Railway Station, Sector 105, Near Palam Vihar, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",0,0,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18463994,Panther Restaurant,1,Gurgaon,"Shop 1, Near Wine Shop, Krishna Chowk, Palam Vihar, Gurgaon Palam Vihar",Palam Vihar,"Palam Vihar, Gurgaon",77.0283498,28.5019693,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18449816,Pizza King,1,Gurgaon,"2316/31, Chauma Road, Block A, Rajendra Park, Sector 105, Near Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.01025,28.4936502,"Pizza, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +309341,Radha Swami Shudh Vaishno Dhaba,1,Gurgaon,"Near Yamaha Showroom, Ashok Vihar, Near, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0196062,28.4877231,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18423904,RD's Authentic Aroma,1,Gurgaon,"Shop 12, 12-A, 14, Block C2, GTM Shopping Arcade, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0203724,28.4946737,"North Indian, South Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18462613,Savour,1,Gurgaon,"427, H Block, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0386974,28.51231235,Biryani,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18396180,Sheetla Dhaba,1,Gurgaon,"Dharma Colony, Opposite ACP Office, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0358272,28.5033611,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +303865,Shree Bikaner Mishthan Bhandar,1,Gurgaon,"Near Sector 5, Ashok Vihar Phase 2, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0194842,28.4860462,Mithai,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +7096,Shree Shyam Bhojnalaya,1,Gurgaon,"Ashok Vihar Part 2, Near Sector 5 Chowk, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0197876,28.4875817,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18463972,Shristi Happy Eats,1,Gurgaon,"G-1, Behind Ansal Plaza Mall, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0410645,28.5120868,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18463996,Singh Terrace Grill,1,Gurgaon,"C-96/97, 1st Floor, Vyapar Kendra, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.03139368,28.50913665,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18463992,Swami Vaishno Dhaba,1,Gurgaon,"Opposite Petrol Pump, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0196976,28.4890966,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18393708,Wah Ji Wah,1,Gurgaon,"Shop 2, Near Park View Apartment, Opposite Palm Tree Hotel, Palam Vihar, Gurgaon",Palam Vihar,"Palam Vihar, Gurgaon",77.0219634,28.4968821,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +306037,Cafe 55 - Park Inn,1,Gurgaon,"Park Inn, Sector 15, Gurgaon","Park Inn, Sector 15, Gurgaon","Park Inn, Sector 15, Gurgaon, Gurgaon",77.0318264,28.4590795,"Continental, North Indian, Chinese",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,13 +5720,New Town Lounge & Bar - Park Plaza,1,Gurgaon,"Park Plaza Hotel, B Block, Sushant Lok 1, Sushant Lok, Gurgaon","Park Plaza, Sushant Lok","Park Plaza, Sushant Lok, Gurgaon",77.0756484,28.4592611,"Continental, Finger Food",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.4,Orange,Average,20 +5721,New Town Pastry Shop - Park Plaza,1,Gurgaon,"Park Plaza Hotel, B Block, Sushant Lok 1, Sushant Lok, Gurgaon","Park Plaza, Sushant Lok","Park Plaza, Sushant Lok, Gurgaon",77.0757697,28.4592519,"Bakery, Desserts",1200,Indian Rupees(Rs.),No,No,No,No,3,3.2,Orange,Average,26 +1670,New Town Cafe - Park Plaza,1,Gurgaon,"Park Plaza Hotel, B Block, Phase 1, Sushant Lok, Gurgaon","Park Plaza, Sushant Lok","Park Plaza, Sushant Lok, Gurgaon",77.0757094,28.4592449,"Continental, American, North Indian, Chinese",2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,176 +7573,The Great Kabab Factory - Park Plaza,1,Gurgaon,"Park Plaza Hotel, B Block, Phase 1, Sushant Lok, Gurgaon","Park Plaza, Sushant Lok","Park Plaza, Sushant Lok, Gurgaon",77.075722,28.4592314,"North Indian, Mughlai",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,340 +3243,K2 Restaurant,1,Gurgaon,"3rd Floor, Plaza Mall, MG Road, Gurgaon","Plaza Mall, MG Road","Plaza Mall, MG Road, Gurgaon",77.0730853,28.4777065,"Korean, Chinese",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3,Orange,Average,21 +305171,Angels in my Kitchen,1,Gurgaon,"M-4, Qutab Plaza Market, DLF Phase 1, Gurgaon","Qutab Plaza, DLF Phase 1","Qutab Plaza, DLF Phase 1, Gurgaon",77.1019957,28.4722814,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,84 +3536,Barista,1,Gurgaon,"D1 & 13, Qutub Plaza Market, DLF Phase 1, Gurgaon","Qutab Plaza, DLF Phase 1","Qutab Plaza, DLF Phase 1, Gurgaon",77.1022778,28.4715146,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,41 +6743,Cafe Coffee Day,1,Gurgaon,"F-13, Qutub Plaza, DLF Phase 1, Gurgaon","Qutab Plaza, DLF Phase 1","Qutab Plaza, DLF Phase 1, Gurgaon",77.1017259,28.4718072,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,18 +18458663,Cafe Naklee,1,Gurgaon,"H-8, Qutab Plaza, DLF Phase 1, Gurgaon","Qutab Plaza, DLF Phase 1","Qutab Plaza, DLF Phase 1, Gurgaon",77.1021755,28.4720297,Cafe,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +312269,Chacha's Take Away,1,Gurgaon,"J-12, Qutub Plaza, DLF Phase 1, Gurgaon","Qutab Plaza, DLF Phase 1","Qutab Plaza, DLF Phase 1, Gurgaon",77.1020406,28.4718823,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,16 +308732,Colonel's Kababz,1,Gurgaon,"N-14, Ground Floor, Qutab Plaza, DLF Phase 1, Gurgaon","Qutab Plaza, DLF Phase 1","Qutab Plaza, DLF Phase 1, Gurgaon",77.1018865,28.4725209,"North Indian, Mughlai",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3,Orange,Average,61 +6747,Domino's Pizza,1,Gurgaon,"K-1 & K-13, Ground Floor, DLF Qutub Plaza, DLF Phase 1, Gurgaon","Qutab Plaza, DLF Phase 1","Qutab Plaza, DLF Phase 1, Gurgaon",77.1024452,28.4719659,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,70 +6804,Green Chick Chop,1,Gurgaon,"H 5, Qutab Plaza Market, DLF Phase 1, Gurgaon","Qutab Plaza, DLF Phase 1","Qutab Plaza, DLF Phase 1, Gurgaon",77.1022654,28.472128,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,16 +301506,Naushi's Kitchenette,1,Gurgaon,"Qutab Plaza, DLF Phase 1, Gurgaon","Qutab Plaza, DLF Phase 1","Qutab Plaza, DLF Phase 1, Gurgaon",77.10254565,28.47211841,"Bakery, Beverages",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,57 +1284,Sapra Pastry Treat,1,Gurgaon,"H-6, Qutab Plaza, DLF Phase 1, Gurgaon","Qutab Plaza, DLF Phase 1","Qutab Plaza, DLF Phase 1, Gurgaon",77.1022654,28.4720383,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,33 +1313,Subway,1,Gurgaon,"J-1, Qutab Plaza, DLF Phase 1, Gurgaon","Qutab Plaza, DLF Phase 1","Qutab Plaza, DLF Phase 1, Gurgaon",77.1024003,28.4715582,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,92 +301737,Sunny Sweets,1,Gurgaon,"A 6, Qutab Plaza, DLF Phase 1, Gurgaon","Qutab Plaza, DLF Phase 1","Qutab Plaza, DLF Phase 1, Gurgaon",77.1017259,28.4715383,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,22 +18455518,The Healthy Rasoi,1,Gurgaon,"Shop B-5, Qutab Plaza Market, DLF Phase 1, Gurgaon","Qutab Plaza, DLF Phase 1","Qutab Plaza, DLF Phase 1, Gurgaon",77.1018159,28.4713676,"Healthy Food, North Indian, Beverages",500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,25 +18398606,Burger King,1,Gurgaon,"Shop 6, Lower Ground Floor, Raheja Mall, Sohna Road, Gurgaon","Raheja Mall, Sohna Road","Raheja Mall, Sohna Road, Gurgaon",77.0392029,28.4237354,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,71 +309030,Hong Kong Express,1,Gurgaon,"2nd Floor, Raheja Mall, Sohna Road, Gurgaon","Raheja Mall, Sohna Road","Raheja Mall, Sohna Road, Gurgaon",77.0395802,28.4234228,"Chinese, Thai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,100 +3909,Viva Hyderabad,1,Gurgaon,"Food Court, 3rd Floor, Raheja Mall, Sohna Road, Gurgaon","Raheja Mall, Sohna Road","Raheja Mall, Sohna Road, Gurgaon",77.0394902,28.4234142,"Biryani, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,32 +4290,Cafe Rouge - Ramada,1,Gurgaon,"Ramada Gurgaon Central, Site No.2, Sector 44, Gurgaon","Ramada Gurgaon Central, Sector 44","Ramada Gurgaon Central, Sector 44, Gurgaon",77.0706524,28.4497396,"North Eastern, Continental, South Indian, Fast Food",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,194 +1452,Shamji Sweets,1,Gurgaon,"Sohna Chowk, Near Jama Masjid, Sadar Bazar, Gurgaon",Sadar Bazar,"Sadar Bazar, Gurgaon",77.0268394,28.4596657,Mithai,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +303779,Sialkoti Vaishno Dhaba,1,Gurgaon,"HPO Chowk, Sadar Bazar, Gurgaon",Sadar Bazar,"Sadar Bazar, Gurgaon",77.0313172,28.4623451,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,16 +554,Haldiram's,1,Gurgaon,"Ground Floor, Sahara Mall, MG Road, Gurgaon","Sahara Mall, MG Road","Sahara Mall, MG Road, Gurgaon",77.0868894,28.4797958,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,315 +3953,Club Prison,1,Gurgaon,"305 & 306, 3rd Floor, Sahara Mall, MG Road, Gurgaon","Sahara Mall, MG Road","Sahara Mall, MG Road, Gurgaon",77.0865747,28.4797207,Finger Food,1800,Indian Rupees(Rs.),No,No,No,No,3,2.4,Red,Poor,53 +18368009,Maa Bhagwati Tiffins,1,Gurgaon,"Subhash Nagar, Sector 12, Gurgaon",Sector 12,"Sector 12, Gurgaon",77.0324732,28.4636195,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +305242,Spices & Sauces,1,Gurgaon,"City Mark Hotel, Mahavir Chowk, Near Sector 12, Gurgaon",Sector 12,"Sector 12, Gurgaon",77.0324282,28.4637496,"North Indian, Continental",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3,Orange,Average,8 +18419914,Indian Food Cafe,1,Gurgaon,"Shop 323, Public Tree, Bus Stand Road, Opposite Allahabad Bank, Sector 12, Gurgaon",Sector 12,"Sector 12, Gurgaon",77.0338596,28.4675057,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +303730,Assam Tea Corner,1,Gurgaon,"New Mata Road, Rajiv Colony, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0404135,28.4755199,"Chinese, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,6 +18462214,Bakingo,1,Gurgaon,"M-14, Old DLF Colony, Sector 14, Gurgaon, Delhi NCR",Sector 14,"Sector 14, Gurgaon",77.0441684,28.4706936,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +309272,Balaji Sweets & Snacks,1,Gurgaon,"Shop 1, Near Shiv Mandir Chowk, Rajeev Nagar, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0348123,28.476036,"North Indian, South Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18311957,Baxman Delivers,1,Gurgaon,"Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",0,0,"North Indian, Chinese, Fast Food, Desserts",800,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +18218304,Burger Point,1,Gurgaon,"Shop 48, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0483361,28.4735491,"Burger, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,20 +18252419,Burger Xpress,1,Gurgaon,"Shop 140, Main Market, Opposite Hanuman Mandir, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0476105,28.4745207,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,20 +606,Cafe Coffee Day,1,Gurgaon,"SCO 10, Vishal Mega Mart, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.046327,28.4775051,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,34 +18133490,Cake Factory,1,Gurgaon,"450, Bhim Nagar, Near Ram Lila Ground, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0204025,28.4703517,"Bakery, Desserts",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,36 +18291476,Cake Maker,1,Gurgaon,"2322/3, Opposite Air Force School, Ground Floor, Excel House, Old Delhi Road, Near Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0424008,28.4741041,"Street Food, Bakery",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +2071,Captain's Table,1,Gurgaon,"SCF 96, Main Market, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0474607,28.4740266,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,41 +18445653,Carpedium,1,Gurgaon,"Shop 94, Huda Market, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0475174,28.474015,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +18466800,Chef Sack Kitchen,1,Gurgaon,"Khasra 3898/3173, Basement, Opposite Shubh Vatika, Atul Kataria Chowk, Sector-12A, Near, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",0,0,"Mexican, Lebanese, Italian, Continental, Thai",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,7 +303743,Chinar Junction,1,Gurgaon,"Late Atul Kataria Chowk, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.04808339,28.48038451,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,8 +300174,Frontier,1,Gurgaon,"59, 1143-336/2, Excel House, Old Delhi Road, Opposite Air Force School, Near Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0424589,28.4739949,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,10 +18461280,Ganpati Rasoi,1,Gurgaon,"New Railway Road, Opposite Easy Day, Jawahar Nagar, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,11 +6709,Indian & Chinese Corner,1,Gurgaon,"76, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.048056,28.4730599,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,21 +18070491,Juice Lounge,1,Gurgaon,"NM-22, Ground Floor, Old DLF, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0445066,28.4694139,"Beverages, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,25 +302907,KB's Kulfi & Icecream,1,Gurgaon,"3, Atul Kataria Chowk, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0494753,28.4822008,Ice Cream,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,19 +889,KB's Kulfi & Icecream,1,Gurgaon,"20, Opposite Plaza Hotel, Old Delhi Road, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0439881,28.4754869,Ice Cream,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,43 +18337904,Keventers,1,Gurgaon,"Shop 40, Main Market, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0481041,28.4736495,Beverages,250,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,18 +18415355,KFC,1,Gurgaon,"Plot 98, Main market, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.047405,28.4740886,"American, Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,17 +853,Madras Cafe,1,Gurgaon,"SCO 17, Near Huda Office, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0456073,28.476629,"South Indian, North Indian, Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,69 +2620,Madurai Meenakshi Bhawan,1,Gurgaon,"158, Sector 14 Market, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0473507,28.4740911,"South Indian, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,25 +310155,Masala Fusion,1,Gurgaon,"Opposite Air Force School, Old Delhi Road, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0424589,28.4740845,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,52 +5061,Moti Mahal Delux Tandoori Trail,1,Gurgaon,"Old Delhi Road, Opposite Ajit Cinema, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0351491,28.4665409,"North Indian, Continental",800,Indian Rupees(Rs.),Yes,No,No,No,2,2.9,Orange,Average,16 +18460326,Mr. & Mrs. Idly,1,Gurgaon,"165/6, Shining Sun Tower, Furniture Market Near Government Girls School, Jacobpura, New Railway Road, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",0,0,"South Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +18471259,Pind Bawarchi,1,Gurgaon,"Shop 4 & 5, Huda Market, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0482744,28.4728921,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,8 +4122,Republic of Chicken,1,Gurgaon,"SG 28, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0484406,28.4736075,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,9 +1140,Ridhi Sidhi,1,Gurgaon,"Bhim Nagar, Near Ram Lila Ground, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.020392,28.4703532,"North Indian, Chinese, South Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,30 +1145,Romi Da Dhaba,1,Gurgaon,"Opposite Air Force School, Old Delhi Road, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0432685,28.4750589,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,34 +887,Shamji Sweets,1,Gurgaon,"289/2, Old Delhi Road, Near Telephone Exchange, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0394496,28.4702133,"Mithai, South Indian, Chinese, Street Food, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,26 +18461599,Six Pack Kitchen,1,Gurgaon,"NM 6, Old DLF Colony, Opposite Dr. Lal Path Lab, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0453042,28.4699753,"Healthy Food, Continental",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,13 +18387990,Taste of Dilli 6,1,Gurgaon,"Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0474907,28.4749637,"Chinese, North Indian",650,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,9 +9169,The Guls,1,Gurgaon,"Sheetla Mata Road, Near Shiv Mandir Chowk, Near Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0349543,28.4768261,North Indian,650,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,21 +5129,The League Restaurant,1,Gurgaon,"Old Delhi Road, Opposite Officers Enclave, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0432685,28.4751486,"North Indian, Chinese",900,Indian Rupees(Rs.),Yes,No,No,No,2,3.1,Orange,Average,17 +1131,The Plaza Solitaire,1,Gurgaon,"30, HUDA Commercial Centre, Delhi Gurgaon Road, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.044168,28.4751457,"North Indian, Mughlai, Chinese, South Indian",900,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,32 +303747,Uttarakhand Fast Food,1,Gurgaon,"New Mata Kataria Road, Rajiv Colony, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0363305,28.4758641,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +329,Viva Hyderabad,1,Gurgaon,"5, New Gurgaon Plaza, Old Delhi Road, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0445955,28.4764122,"Biryani, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,70 +303765,Wahid Food Corner,1,Gurgaon,"Plot 100, Sheetla Mata Road, Rajeev Nagar, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0347763,28.4758171,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,6 +7225,Zync - Rosewood Hotel,1,Gurgaon,"Old Delhi Road, Exit 7 NH8, Near Raj Cinema, Near Sector 14 Market, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.037225,28.46715278,"North Indian, Chinese, Continental",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3,Orange,Average,5 +18382626,Konetto Pizza,1,Gurgaon,"Shop 7, Opposite Vishal Mega Mart, Next to Citikart, Old Delhi-Gurgaon Road, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0462096,28.4783985,Pizza,150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,32 +5068,South Store,1,Gurgaon,"157, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0475378,28.4743176,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,64 +18500628,Grill & Cafe,1,Gurgaon,"48/5, Mahrauli Road, Near Government College, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0404798,28.4662742,"Chinese, Mughlai, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18268726,Gurgaon Mughlai Chicken,1,Gurgaon,"Rajiv Nagar, Near Apple Hospital, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0351435,28.4771621,"North Indian, Mughlai",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +6913,Mughal Chicken Corner,1,Gurgaon,"Main Sheetla Mata Road, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0349588,28.4786503,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18398604,Oven Aroma,1,Gurgaon,"Shop 5 & 6, Atul Kataria Chowk, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0495364,28.4823461,Bakery,400,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +300156,Radha Swami Shudh Vaishno Dhaba,1,Gurgaon,"New Mata Road, Rajeev Nagar, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0384802,28.4756545,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18241516,Special No.1 Biryani Corner,1,Gurgaon,"Shop 4, New Gurgaon Plaza Market, Old Delhi Road, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0444379,28.4762474,Mughlai,700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +311166,Sun Sweets Restaurant,1,Gurgaon,"Chand Palace Fawara Chowk, Bus Stand Road, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0335214,28.464266,"Street Food, Mithai, North Indian, South Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18025110,Captain Bill$ Deliverz,1,Gurgaon,"Near Main Market, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0476588,28.4738648,"North Indian, Chinese, Fast Food",1000,Indian Rupees(Rs.),No,Yes,Yes,No,3,2.4,Red,Poor,23 +308223,China Hut,1,Gurgaon,"Shop No-3 Near Choudhary Tent House New Mata Road Rajiv Nagar, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0376289,28.4758573,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.4,Red,Poor,18 +6832,G Dot,1,Gurgaon,"Opposite Lt. Atul Kataria Memorial School, Mata Sheetla Mandir Road, Sector 14, Gurgaon",Sector 14,"Sector 14, Gurgaon",77.0338227,28.4785399,"North Indian, South Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,26 +18286626,Cake2you,1,Gurgaon,"522/5, Near Jyoti Hospital, Sector 15, Gurgaon",Sector 15,"Sector 15, Gurgaon",77.0371148,28.4579792,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +311770,Delight Express,1,Gurgaon,"Shop 82, HUDA Market, Part 2, Sector 15, Gurgaon",Sector 15,"Sector 15, Gurgaon",77.0435543,28.4583117,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +301221,Empress,1,Gurgaon,"Treehouse Queens Pearl, Opposite New Court, Near Rajiv Chowk, Near, Sector 15, Gurgaon",Sector 15,"Sector 15, Gurgaon",77.033231,28.4568511,"North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,2.9,Orange,Average,5 +8833,Hotel DDR,1,Gurgaon,"9, Old Judicial Complex, Sector 15, Gurgaon",Sector 15,"Sector 15, Gurgaon",77.0344852,28.4588673,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,10 +312438,Khan Kabab Corner,1,Gurgaon,"Next to Hotel Haut Monde, Sector 15, Gurgaon",Sector 15,"Sector 15, Gurgaon",77.0380952,28.4555436,"Mughlai, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +18153548,Kwality Cakes and Bakes,1,Gurgaon,"Shop 56, Opposite Hope Apartments, Main Jharsa Road, Sector 15, Gurgaon",Sector 15,"Sector 15, Gurgaon",77.0381307,28.4555152,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +18449792,Nite Bites,1,Gurgaon,"837/5, Sector 15, Gurgaon",Sector 15,"Sector 15, Gurgaon",77.041878,28.460253,"North Indian, Chinese, Continental",650,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,4 +18380639,Oriental Kitchen Express,1,Gurgaon,"1, Housing Board Colony, Near Jyoti Hospital, Sector 15, Gurgaon",Sector 15,"Sector 15, Gurgaon",77.0367474,28.4577727,"Chinese, Thai",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,14 +17953920,Royal Mart,1,Gurgaon,"Shop 96, Main Jharsa Road, Sector 15/1, Sector 15, Gurgaon",Sector 15,"Sector 15, Gurgaon",77.0390954,28.4544096,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +2154,Sikkim Fast Food,1,Gurgaon,"84, Main Market, Sector 15, Gurgaon",Sector 15,"Sector 15, Gurgaon",77.0435095,28.4584547,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,36 +18384112,ZASTY,1,Gurgaon,"Sector 15, Gurgaon",Sector 15,"Sector 15, Gurgaon",0,0,"Continental, North Indian, Asian",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,28 +9646,Maachh Bhaat,1,Gurgaon,"57, Opposite Maruti Udyog Ltd, Gate 2, Old Delhi Gurgaon Road, Opposite Sector 18, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0609808,28.4950876,Oriya,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,256 +18482069,ANTIDOTE,1,Gurgaon,"Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",0,0,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18451168,Bablu Fast Food,1,Gurgaon,"Shop 5, Opposite Oriental Club, Sector 18, Near Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0633149,28.4978576,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18492042,Bikaner Sweets Snacks & Restaurant,1,Gurgaon,"Huda Market, Near Vipul Motors & Siemens Company Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0671006,28.4906203,"Bakery, Chinese, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310632,Bikaner Sweets,1,Gurgaon,"Shop 1, Old Delhi Gurgaon Road, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.056052,28.4890258,"North Indian, Street Food, Mithai",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18481290,Biryani & Rolls,1,Gurgaon,"947, Sector 17 B, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0580477,28.4777059,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18469972,Cafe Coffee Day,1,Gurgaon,"B Block, IFFCO Colony, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",0,0,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18342375,Chefy's Kitchen,1,Gurgaon,"512, Sector 5 Sevice Lane, Atul Kataria Marg, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",0,0,"Biryani, Pizza, Fast Food, Healthy Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +310515,Delight Express,1,Gurgaon,"Shop 64, HUDA Market, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0610203,28.4780353,"Raw Meats, North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18449658,Dilli Rasoi,1,Gurgaon,"Divided Road, Near Pasco Maruti Ltd, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.057516,28.4879806,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18396426,Dujal Cafe,1,Gurgaon,"HUDA Market, Opposite Anshu Dairy, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0608014,28.4776466,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489522,Full Dabba,1,Gurgaon,"Plot 203, Sector 17A, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0633585,28.4978501,"North Indian, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18444299,HSI Food World,1,Gurgaon,"90, Lt. Atul Kataria Marg, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0670595,28.4772163,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18449785,Krishna Restaurant,1,Gurgaon,"Near PNB ATM, Kaushik Complex, Sukhrali Main Road, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0616195,28.4756552,"North Indian, South Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18449662,Lajawaab House Cafe,1,Gurgaon,"25-26, Huda Market, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0607991,28.4779663,"North Indian, South Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18432664,Luncheon Box,1,Gurgaon,"Plot 1523, Near Gyan Mandir School, Sector 17 C, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",0,0,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304793,Modern Sweets,1,Gurgaon,"Opposite Sun Tower, Sukhrali Village, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0603242,28.4753834,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +302256,Radha Swami Shudh Vaishno Dhaba,1,Gurgaon,"17 & 18, Old Delhi Road, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0558517,28.488876,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18312631,Raju Vaishno Amritsari Dhaba,1,Gurgaon,"17-C, Sukhrali, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0598733,28.4752695,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449666,Rustic Flavours,1,Gurgaon,"Shop 18, HUDA Market, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0605389,28.4783366,North Indian,550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18396191,VK Food Court,1,Gurgaon,"MG Road, Sukhrali, Sector 17, Gurgaon",Sector 17,"Sector 17, Gurgaon",77.0610258,28.4755709,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +302251,Domino's Pizza,1,Gurgaon,"Ground Floor, Amenity Block, IT/ITES SEZ, Village Dundahera, Near Sector 21, Sector 21, Gurgaon",Sector 21,"Sector 21, Gurgaon",77.0714215,28.5097704,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,32 +18466943,GoGourmet,1,Gurgaon,"Unit 2B, Amenity Block-II, Candor Techspace, Sector 21, Gurgaon",Sector 21,"Sector 21, Gurgaon",77.0716913,28.5094378,"Healthy Food, Beverages",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,8 +18238248,Snack Shack,1,Gurgaon,"Building 4, Near Food Court, Unitech Infospace, Sector 21, Gurgaon",Sector 21,"Sector 21, Gurgaon",77.0714215,28.5095911,Chinese,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,15 +18420426,Westross,1,Gurgaon,"A11/B32, Unit 2A, Block 4A, IT/ITeS SEZ Candor TechSpace, Dundahera, Sector 21, Gurgaon",Sector 21,"Sector 21, Gurgaon",77.0693827,28.510128,"Italian, Mexican",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,40 +18466973,Fruitpro,1,Gurgaon,"Unit Sez Aminity Block, Sector 21, Gurgaon",Sector 21,"Sector 21, Gurgaon",77.0716913,28.5100652,Beverages,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18446482,Konetto Pizza,1,Gurgaon,"Amenity Block 2, Info City, Old Delhi Gurugram Road, Sector 21, Gurgaon",Sector 21,"Sector 21, Gurgaon",0,0,Pizza,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18372325,Tpot,1,Gurgaon,"Shop 14, Aminities Block, Infospace, Sector 21, Gurgaon",Sector 21,"Sector 21, Gurgaon",77.0712645,28.5096025,Cafe,800,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,3 +18291458,Cake Desire,1,Gurgaon,"Shop 118, Sector 22, Gurgaon",Sector 22,"Sector 22, Gurgaon",77.0644469,28.5029596,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18485789,Burger Xpress,1,Gurgaon,"Shop 32, HUDA Market, Sector 22, Gurgaon",Sector 22,"Sector 22, Gurgaon",0,0,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +313477,Divine Bites,1,Gurgaon,"Sector 22, Gurgaon",Sector 22,"Sector 22, Gurgaon",77.0622916,28.5029001,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,0 +18133515,Interaxis,1,Gurgaon,"Sector 22, Gurgaon",Sector 22,"Sector 22, Gurgaon",0,0,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18312451,Kwality wall's swirl's,1,Gurgaon,"Unitech Infospace, Sector 22, Gurgaon",Sector 22,"Sector 22, Gurgaon",77.0738509,28.5101456,Ice Cream,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18312606,Milan Apna Dhaba,1,Gurgaon,"Near Jawala Mill Chowk, Sector 22, Gurgaon",Sector 22,"Sector 22, Gurgaon",77.0689476,28.5035524,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18144444,R S Foods,1,Gurgaon,"Shop 2, Old Delhi Gurgaon Road, Near Jawala Mill, Sector 22, Gurgaon",Sector 22,"Sector 22, Gurgaon",77.0696558,28.5050072,"Mughlai, North Indian",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18492641,Ronny Flavours,1,Gurgaon,"Shop 105, Main Market, Sector 22, Gurgaon, Delhi NCR",Sector 22,"Sector 22, Gurgaon",0,0,"Fast Food, Beverages",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18463956,Shahi Chicken Corner,1,Gurgaon,"Jwala Mill Road Shop No.6, Sector 22, Gurgaon",Sector 22,"Sector 22, Gurgaon",77.0691386,28.5035991,Mughlai,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18365988,Behrouz Biryani,1,Gurgaon,"Sector 23, Gurgaon",Sector 23,"Sector 23, Gurgaon",77.0541384,28.5041335,Biryani,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,17 +18463970,Biryani Art,1,Gurgaon,"SCO 48, DSC Market, A Urban Estate, Sector 23, Gurgaon",Sector 23,"Sector 23, Gurgaon",77.0535606,28.5041041,"Hyderabadi, North Indian, Biryani",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,8 +309867,Daawat-e! Amritsar,1,Gurgaon,"Shop 10, 1st Floor, Sector 23 Market, Sector 23, Gurgaon",Sector 23,"Sector 23, Gurgaon",77.0646633,28.5029179,Mughlai,700,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,27 +18412887,Faasos,1,Gurgaon,"SCO 48, Sector 23-A, Sector 23, Gurgaon",Sector 23,"Sector 23, Gurgaon",77.0538414,28.5041074,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,13 +18423107,Ovenstory Pizza,1,Gurgaon,"Sector 23, Gurgaon",Sector 23,"Sector 23, Gurgaon",77.0540643,28.5041784,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,15 +4121,Pizza Hut Delivery,1,Gurgaon,"SCO 63, Ground Floor, Behind HP Petrol Pump, Sector 23 A, Near Sector 23, Gurgaon",Sector 23,"Sector 23, Gurgaon",77.0541569,28.504122,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,53 +305072,Game n Grillz,1,Gurgaon,"Near ITM University, Sector 23-A, Sector 23, Gurgaon",Sector 23,"Sector 23, Gurgaon",77.051885,28.5046578,"North Indian, Chinese, Fast Food",850,Indian Rupees(Rs.),Yes,No,No,No,2,3.6,Yellow,Good,169 +18421938,Hamoni Red: Play Cafe,1,Gurgaon,"CK Farm, Carterpuri Village, Sector 23A, Gurgaon, Sector 23, Gurgaon",Sector 23,"Sector 23, Gurgaon",77.0537818,28.500642,Cafe,900,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,25 +18481321,Firangi Bake,1,Gurgaon,"SCO 48, Sec 23 A, Sector 23, Gurgaon",Sector 23,"Sector 23, Gurgaon",77.054079,28.5042056,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,0 +18489829,Indochi,1,Gurgaon,"Near ITM University, Sector 23-A, Near Sector 23, Gurgaon",Sector 23,"Sector 23, Gurgaon",77.0516126,28.5048386,"Chinese, Fast Food, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18414487,Kettle & Kegs,1,Gurgaon,"Sector 23, Gurgaon",Sector 23,"Sector 23, Gurgaon",77.0540696,28.5042347,Tea,200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +18449656,The Food Garage,1,Gurgaon,"Shop 65, Near Petrol Pump, Huda Shopping Market, Sector 23A, Sector 23, Gurgaon",Sector 23,"Sector 23, Gurgaon",77.0545497,28.5041169,"Chinese, North Indian",550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +313105,Machan,1,Gurgaon,"Near Leisure Valley Park, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0644064,28.4664277,"North Indian, Chinese",900,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,88 +300772,Mainland China,1,Gurgaon,"SCO 26, Opposite Reliance Mart, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0623603,28.4686372,Chinese,1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,563 +836,Pind Balluchi,1,Gurgaon,"Vatika Grand, Near Leisure Valley, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0644064,28.4680413,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,1022 +3606,Sagar Ratna,1,Gurgaon,"SCO 33-34, 1st Floor, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0629673,28.4681718,"South Indian, North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,235 +305996,Sasuraal,1,Gurgaon,"SCO 26, Ground Floor, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0624277,28.4686577,"North Indian, Mughlai",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,586 +18418247,feel ALIVE,1,Gurgaon,"SCO 53, 2nd Floor, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0641366,28.4679257,"North Indian, American, Asian, Biryani",1200,Indian Rupees(Rs.),Yes,No,No,No,3,4.7,Dark Green,Excellent,69 +18365987,Matchbox,1,Gurgaon,"30, Ground Floor, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0626075,28.4682268,"Continental, North Indian, Chinese",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.8,Dark Green,Excellent,245 +18337894,Prankster,1,Gurgaon,"Site 8-10, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0633573,28.4691662,"Modern Indian, North Indian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.8,Dark Green,Excellent,1478 +4398,21 Gun Salute,1,Gurgaon,"SCO 35-36, 1st Foor, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0631472,28.4681891,"North Indian, Mughlai, Asian, Continental",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.9,Yellow,Good,1365 +18336483,Backyard Underground,1,Gurgaon,"SCO 35-36, Leisure Valley Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.063143,28.468337,"Continental, Italian, North Indian, American",1400,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,134 +496,Bikanervala,1,Gurgaon,"Plot 3-5, Near Leisure Valley Park, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0635969,28.4686806,"Mithai, North Indian, South Indian, Fast Food, Street Food, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,966 +4133,Chin Chin,1,Gurgaon,"SCO 33, Ground Floor, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0626975,28.4682354,Chinese,1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,429 +5065,Domino's Pizza,1,Gurgaon,"SCO 35, Ground Floor, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0632194,28.4682247,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,146 +313393,Eggjactly,1,Gurgaon,"Location Varies, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0678878,28.4685801,"American, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,241 +5052,Gola Sizzlers,1,Gurgaon,"SCO 39, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.063417,28.4683943,"Chinese, North Indian, Mughlai, Continental",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,853 +18128900,Hunter Valley,1,Gurgaon,"SCO 61, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0638106,28.4673849,"Mexican, Italian, North Indian, Chinese",1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,254 +309339,Jungle Jamboree,1,Gurgaon,"2nd Floor, SCO 61, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0640466,28.4673792,"Continental, Chinese, Thai, Mughlai, North Indian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,1317 +5104,McDonald's,1,Gurgaon,"SCO 36, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0632371,28.4682874,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,187 +18254529,My Bar Headquarters By Dockyard,1,Gurgaon,"SCO 53, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0644064,28.4679517,"Continental, North Indian, Chinese, European, Asian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,401 +17953909,Punjabi by Nature,1,Gurgaon,"SCO 19, 1st Floor, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0624277,28.4691956,North Indian,1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,302 +310203,Sandys Cocktails & Kitchen,1,Gurgaon,"SCO 388, Near IFFCO Metro Station, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0712417,28.472016,"Asian, European",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,297 +18238250,Sense Of Spirits,1,Gurgaon,"SCO 11-12, 1st Floor, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0633627,28.4695542,"North Indian, Chinese, Continental, Thai",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,280 +305272,Starbucks,1,Gurgaon,"SCO 39, Ground Floor, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0632371,28.468377,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,269 +1851,Swagath,1,Gurgaon,"SCO 16-17, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0628774,28.4696871,"North Indian, Chinese, South Indian, Seafood, Chettinad",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,289 +18446415,The Old School Brew House,1,Gurgaon,"SCO 56, 4th Floor, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0641949,28.467777,"Continental, Burger, Pizza, North Indian, European, Finger Food",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,96 +18261703,Barcelos,1,Gurgaon,"SCO 22, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0624025,28.4691552,"Portuguese, African, Lebanese",1400,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,322 +18241517,Boombox Brewstreet,1,Gurgaon,"SCO 53, 1st Floor, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0642265,28.4679344,"North Indian, Italian, Chinese, American",1600,Indian Rupees(Rs.),Yes,No,No,No,3,4.4,Green,Very Good,391 +18252386,BRONX Bar Exchange,1,Gurgaon,"SCO 38, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.063417,28.4681254,"Chinese, Continental, North Indian, Mexican",2100,Indian Rupees(Rs.),No,No,No,No,4,4.1,Green,Very Good,569 +18281955,Djinggs,1,Gurgaon,"SCO 53, 3rd Floor, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0642265,28.4679344,"Asian, Seafood",1500,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,105 +4959,Downtown - Diners & Living Beer Cafe,1,Gurgaon,"SCO 34, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0631922,28.4683279,"North Indian, Chinese, Italian, Continental",1800,Indian Rupees(Rs.),No,No,No,No,3,4.4,Green,Very Good,3569 +18037822,Drifters Cafe,1,Gurgaon,"Location Varies, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0671046,28.471349,"Chinese, Thai, Asian",400,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,208 +3575,Gung The Palace,1,Gurgaon,"SCO 28, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0625436,28.4685726,Korean,2500,Indian Rupees(Rs.),Yes,Yes,No,No,4,4.2,Green,Very Good,327 +18273972,Magadh and Awadh,1,Gurgaon,"SCO 396, Near IFFCO Chowk Metro Station, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0716014,28.4723195,"Bihari, Lucknowi, North Indian",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,226 +8430,Mamagoto,1,Gurgaon,"SCO 56, City Centre, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0641366,28.4676568,"Asian, Thai, Chinese",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,875 +18157413,Molecule Air Bar,1,Gurgaon,"4th Floor, SCO 53, Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0642265,28.4679344,"Continental, North Indian, Italian, Chinese",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,1809 +18422475,Nagai,1,Gurgaon,"SCO 305, Ground Floor, Huda Gymkhana Road, Behind The Pllazio Hotel, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.064243,28.4640533,"Japanese, Sushi",3300,Indian Rupees(Rs.),No,No,No,No,4,4.3,Green,Very Good,56 +18435794,PitStop BrewPub,1,Gurgaon,"Oysters Beach, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0715571,28.4621449,"Continental, Italian, North Indian, Mughlai",1250,Indian Rupees(Rs.),Yes,No,No,No,3,4.4,Green,Very Good,166 +18429166,The Classroom,1,Gurgaon,"Main Market, Sector 29, Gurgaon",Sector 29,"Sector 29, Gurgaon",77.0627425,28.4681949,"North Indian, Italian, Parsi, Asian, Kerala",1200,Indian Rupees(Rs.),Yes,No,No,No,3,4.4,Green,Very Good,146 +18264995,buno,1,Gurgaon,"108, Vijay Vihar, Silokhera Road, Near BPTP Park Centra Building, Sector 30, Gurgaon",Sector 30,"Sector 30, Gurgaon",77.0553395,28.4598737,"Healthy Food, Cafe, Desserts, Italian, Bakery",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,99 +18025114,Bottles and Barrels,1,Gurgaon,"2nd Floor, Star Tower, Exit 8, NH-8, Sector 30, Gurgaon",Sector 30,"Sector 30, Gurgaon",77.0521813,28.4606832,"North Indian, Asian, Italian",1850,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,242 +310799,A One Rasoi,1,Gurgaon,"Shop 53, HUDA Market, Sector 40, Near, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0568391,28.4489745,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,11 +306719,Angeethi,1,Gurgaon,"200, Main Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0510698,28.4534927,"North Indian, Chinese, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,73 +18285721,Burger Point,1,Gurgaon,"Shop 163, HUDA Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0509079,28.4529876,"Burger, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,7 +598,Cafe Coffee Day,1,Gurgaon,"SCO-24, Main Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0504568,28.4532365,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,23 +300066,Cake Castle,1,Gurgaon,"117/184, Main Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0511154,28.453487,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,23 +18396412,CHA,1,Gurgaon,"Shop 99, HUDA Market, Sector 32, Near Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0446703,28.4457809,"Beverages, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,7 +18249121,Chai Point,1,Gurgaon,"3rd Floor, Tower A3, DLF Silokhera, Sector 30, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0549336,28.4645465,"Tea, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,10 +18241877,Fees - The Cloud Kitchen,1,Gurgaon,"1010, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0514542,28.4515538,"North Indian, Mughlai",850,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,5 +310461,Food Ka Mood,1,Gurgaon,"Shop 94-95, HUDA Market, Sector 40, Near, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.057398,28.4491214,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,34 +18385781,Frozen Factory,1,Gurgaon,"Near Cut and Style, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0505547,28.4529016,"Desserts, Beverages",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +18360098,Goli Vada Pav No. 1,1,Gurgaon,"Shop 212, Sector 31-32 A HUDA Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0510504,28.4534826,Street Food,150,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,5 +300491,Green Chick Chop,1,Gurgaon,"108, Opposite Corporation Bank, HUDA Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0512923,28.4538134,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +307678,Harichatni.com,1,Gurgaon,"Shop 15, Huda Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0558828,28.4549152,"North Indian, Street Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,7 +18352295,Kk Chaap Express,1,Gurgaon,"HUDA Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0506317,28.4527412,"Fast Food, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,8 +18451594,Latenight.in,1,Gurgaon,"147, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.04479218,28.45232201,"North Indian, Biryani, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,8 +18391176,Mitran Da Junction,1,Gurgaon,"Shop 57, Near Subway Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.051332,28.4540489,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,7 +313456,Mogambo Kitchen,1,Gurgaon,"961, Sector 40, Near Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",0,0,"North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +304518,Mother Ringlet,1,Gurgaon,"Shop 211, Huda Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0509743,28.4535417,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,2.5,Orange,Average,52 +6896,Sna-X Point,1,Gurgaon,"Shop 109, HUDA Market, Sector 40, Near, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0569404,28.4490081,"Fast Food, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,39 +18441701,Wow! Momo,1,Gurgaon,"Shop 214, Huda Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.050958,28.4534895,"Chinese, Tibetan",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,9 +4154,Yashna,1,Gurgaon,"Shop 199, Main Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0510225,28.4530419,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,73 +18376925,Twigly,1,Gurgaon,"Huda Market, Sector 46, Near Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0587634,28.4344744,"Asian, Continental, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,4.5,Dark Green,Excellent,76 +2180,Bakers Oven,1,Gurgaon,"141, Sector 31-32 A, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0509348,28.4529609,"Bakery, Desserts",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,183 +18224532,Dilli 6 On Wheels,1,Gurgaon,"Shop 84, 85, 86 & 87, HUDA Shopping Complex, Near Medanta Hospital, Sector 32, Near, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0448616,28.4457489,"North Indian, Chinese",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,142 +18356357,La Pino'z Pizza,1,Gurgaon,"Shop 19, 1st floor, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0502902,28.4530361,"Pizza, Italian",650,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.5,Yellow,Good,22 +18175268,LeanBodyMeals,1,Gurgaon,"Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.055519,28.455681,"Healthy Food, Salad, Italian, Continental",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,144 +5004,Om Sweets & Snacks,1,Gurgaon,"SCO 17, Main Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.050482,28.4528201,"North Indian, South Indian, Street Food, Mithai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,486 +308617,Tasty Tweets,1,Gurgaon,"118, HUDA Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0511135,28.453446,Bakery,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,104 +304351,The Kathi Rolls,1,Gurgaon,"Shop 150, HUDA Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0507229,28.4530322,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,136 +18354655,Bite N Sip,1,Gurgaon,"Shop 124, Huda Market, Sector 40, Near, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0572815,28.4492369,"Fast Food, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18391141,Burger Joint,1,Gurgaon,"Shop 46, Huda Market Sector 40, Near Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0566033,28.4493778,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18492062,Dilli Light,1,Gurgaon,"40, 1st Floor, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.051106,28.4537774,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18324806,Love Desserts,1,Gurgaon,"Sector 40, Near Sector 45, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.059453,28.444784,Bakery,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18354665,Flying Cakes,1,Gurgaon,"Main Huda Market, Sector 40, Near, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0571362,28.4497559,Bakery,350,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,13 +309543,Bikkgane Biryani,1,Gurgaon,"SCO 6, HUDA Market, Sector 31, Gurgaon",Sector 31,"Sector 31, Gurgaon",77.0505305,28.4528047,"Biryani, North Indian, Hyderabadi",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,4,Green,Very Good,530 +18419875,Cafeast,1,Gurgaon,"Next to ITC Green Centre, Institutional Area, Sector 32, Near, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.03975882,28.4444788,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,6 +18358189,Yomo-Your Only Momo Outlet,1,Gurgaon,"Unitech Cyber Park, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.04963807,28.45321428,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +18352250,Afghan Indian,1,Gurgaon,"1, V&D Tower Jharsa, Opposite Medicity Hospital, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.0463325,28.4393846,Afghani,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18435789,Al Fanoos,1,Gurgaon,"VPO Jharsa, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.0452895,28.4392847,"Afghani, North Indian",900,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +308199,Alwar Sweets & Namkeen,1,Gurgaon,"Shop 45-46, HUDA Market, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.0573908,28.4495255,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18393717,Baskin Robbins,1,Gurgaon,"Shop 1, Plot 1-A, Circular Road, New Colony, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.01766379,28.46721998,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18458642,Bisht Food Court,1,Gurgaon,"Huda Market, Sector 32, Near Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.044871,28.4457028,"Fast Food, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18458635,Burj Al Arab,1,Gurgaon,"Shop 1&2, Dharam Tower, Opposite Medanta Hospital, Jharsa Village, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.0450676,28.4394628,Afghani,700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18447121,Chinese Chilli Sizllers,1,Gurgaon,"Near City Centre Mall, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",0,0,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18313136,Costa Coffee,1,Gurgaon,"Upper Ground Floor, Medanta - The Medicity Hospital, Sector 38, Near Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.04079684,28.43954754,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18358175,Costa Coffee,1,Gurgaon,"Medanta - The Medicity Hospital, Sector 38, Near Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",0,0,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18357944,Desi Bites,1,Gurgaon,"Plot 410, Near Medanta, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.046147,28.4395668,"North Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18384132,Fresh Food,1,Gurgaon,"Q 292, Sector 40, Near Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18458643,Kwality Restaurant,1,Gurgaon,"Shop 91,92, Huda Market Sector 32, Near Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.0448877,28.4455421,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18292436,Kwality Wall's Swirl's,1,Gurgaon,"Ground Floor, Tower B, Cyber Park, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.0555919,28.4433453,Ice Cream,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18345759,Nehra's Food Point,1,Gurgaon,"Opposite Unitech Cyber Park, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.0557718,28.4415695,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18352657,Orange Food Cart,1,Gurgaon,"Opposite Medicity Hospital, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.04298183,28.43958321,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18458637,Royal Sweets,1,Gurgaon,"Near Gurudwara, Opposite Medanta Hospital, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.0449407,28.4394492,"North Indian, Mithai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18352655,Shree Annapurna,1,Gurgaon,"Opposite Medicity Hospital, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.04290237,28.43970173,"Chinese, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18458641,Underground Restaurant,1,Gurgaon,"Adjacent Unitech Cyber Park, Opposite HSBC Building, Sector 39, Gurgaon",Sector 39,"Sector 39, Gurgaon",77.0575645,28.4440456,"Chinese, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +304142,Midnight Sutra,1,Gurgaon,"Near Paras Hospital, Sector 43, Gurgaon",Sector 43,"Sector 43, Gurgaon",77.0906106,28.4507062,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,174 +18433016,Paddy's - The Grub Grill,1,Gurgaon,"Fuel Nation Petrol Pump, Opposite Ardee City Gate 2, Sector 52A, Near, Sector 43, Gurgaon",Sector 43,"Sector 43, Gurgaon",77.0859299,28.4419061,"North Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,11 +312683,Sugar Rush By Saiba,1,Gurgaon,"The Icon, Sector 43, Gurgaon",Sector 43,"Sector 43, Gurgaon",77.0959808,28.4514497,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,176 +18037824,Bamboo House,1,Gurgaon,"Shop 97, HUDA Market, Sector 46, Near Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0593066,28.4351572,"Chinese, Thai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,64 +303848,Burger Unlimited Kitchen,1,Gurgaon,"Shop 78, HUDA Market, Sector 46, Near Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0595047,28.4350181,"North Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,41 +18273536,Cafeteria Point,1,Gurgaon,"SCO 4, HUDA Market, Sector 46, Near Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0598728,28.4340212,Cafe,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,24 +18291450,Choudhary Gohana Famous Jalebi,1,Gurgaon,"Shop 3, Near Vita Booth, Huda Market, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0599779,28.4341404,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +18345780,Curry N' Tandoor,1,Gurgaon,"Shop 41, Huda Market, Sector 46, Near Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0598166,28.4345074,"Mughlai, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,18 +18303712,Dawat-e-Ishq,1,Gurgaon,"Shop 96, HUDA Market, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0592634,28.4351263,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,59 +309021,Delish Bake N Choc,1,Gurgaon,"Shop 108 & 109, HUDA Market, Sector 46, Near Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0589267,28.4349266,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,28 +306477,Flavours,1,Gurgaon,"Shop number 59, HUDA Market, Sector 46, Gurgaon, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0587691,28.4345889,"North Indian, Chinese, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,74 +18303698,Om Sweets & Snacks,1,Gurgaon,"Shop 135, Huda Market Sector 46, Near, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0586849,28.4347324,"North Indian, South Indian, Street Food, Mithai",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,14 +18381664,Om Sweets,1,Gurgaon,"SCO 141 & 142, Huda Market, Sector 46, Near, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0591044,28.4349952,"Mithai, North Indian, South Indian, Chinese",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,50 +18161601,Raj Restaurant,1,Gurgaon,"Next to Discovery Wines, Village Kanhai, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0593696,28.4342048,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,11 +18279913,Tasha's Artisan Foods,1,Gurgaon,"E-15, Greenwoods City, Sector 45, Gurgaon Near Sector 45",Sector 45,"Sector 45, Gurgaon",77.0593546,28.4447042,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +18268733,Urban Kitchen,1,Gurgaon,"Shop 93, HUDA Market, Sector 46,Near Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0593757,28.4352128,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,88 +18204811,Nite Bites,1,Gurgaon,"Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0724033,28.4471752,"North Indian, Chinese, Continental",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,427 +18476542,Apna Dabba,1,Gurgaon,"Basement, 1346, Opposite Delhi Public School, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18279459,BiBo's Kitchen,1,Gurgaon,"Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0717172,28.4418059,"Bengali, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18409216,Burger Point,1,Gurgaon,"Shop 37, Huda Market Sector 46, Near Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0597723,28.4344647,"Burger, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +313408,Cherry Crossing Foods,1,Gurgaon,"Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",0,0,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18345770,Chinese Fast Food,1,Gurgaon,"Village Kanhai Ramlila Ground, Opposite Shiv Mandir, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0732567,28.4472195,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18499475,Chinese Food,1,Gurgaon,"Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0594005,28.4446522,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18034069,Chop Shop,1,Gurgaon,"Shop 65, HUDA Market, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0591711,28.4346562,"Raw Meats, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18396431,Dhara,1,Gurgaon,"Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.059536,28.4446824,"North Indian, Fast Food, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18392211,Foody Goody,1,Gurgaon,"Plot 1991, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0679502,28.4513687,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18291213,Kehar Sweets And Snacks,1,Gurgaon,"Shop 43, HUDA Market, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0595633,28.4346657,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18350136,Muskan Chicken Biryani,1,Gurgaon,"Green Wood Plaza, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.059245,28.4444633,Biryani,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310454,Shakes Cakes 'n' More,1,Gurgaon,"24, Ground Floor, Greenwood Plaza, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0598983,28.4439045,"Bakery, Desserts",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18446413,Shri Sai Kirpa Food,1,Gurgaon,"Opposite Shiv Mandir, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0740245,28.4471412,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18499471,Sufiya Hotel,1,Gurgaon,"Near Ramada Hotel, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0735754,28.4479605,"Mughlai, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18124387,The Breakfast Bite,1,Gurgaon,"Near Delhi Public School, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",0,0,"North Indian, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18499459,Veg Hut,1,Gurgaon,"Near Ramada Hotel, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0735393,28.447879,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +894,Raj Restaurant,1,Gurgaon,"10, Green Woods Plaza, Green Wood City, Sector 45, Gurgaon",Sector 45,"Sector 45, Gurgaon",77.0596229,28.4448577,"Chinese, North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,92 +5079,Burger Hut,1,Gurgaon,"Shop 4, HUDA Market, Sector 5, Gurgaon",Sector 5,"Sector 5, Gurgaon",77.0205232,28.4802841,"Burger, Fast Food, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,16 +18289241,Dancing Turkeys,1,Gurgaon,"Shop 8-10, Samaspur Market, Sector 51, Tigra Road, Near Sector 50, Gurgaon",Sector 50,"Sector 50, Gurgaon",77.0710139,28.4477683,Continental,800,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,17 +18352682,The Pack King,1,Gurgaon,"Plot 46, Sector 51, Near Sector 50, Gurgaon",Sector 50,"Sector 50, Gurgaon",77.0689933,28.434682,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18352658,Bikaner Misthan Bhandar,1,Gurgaon,"Main Market, Wazirabad, Sector 52, Near, Sector 53, Gurgaon",Sector 53,"Sector 53, Gurgaon",77.0887235,28.4317225,"Mithai, Street Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18241896,Zizo,1,Gurgaon,"Palm Spring Plaza, Sector 54, Gurgaon",Sector 54,"Sector 54, Gurgaon",77.1011865,28.4454847,"Lebanese, Mediterranean, Middle Eastern, Arabian",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,233 +18363062,Grill King Kabab & Curries,1,Gurgaon,"Shop 1, La Mart, La Laguna Society, Golf Course Road, Sector 54, Gurgaon",Sector 54,"Sector 54, Gurgaon",77.1042435,28.4372591,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,20 +18380197,Aarush - A Mediterranean Kitchen,1,Gurgaon,"Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",0,0,Mediterranean,600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,6 +18472639,Blossoms 4 U,1,Gurgaon,"A 269, Ground Floor, Sushant Lok 2 , Sector 55, Near Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.110596,28.424109,"Bakery, Desserts",300,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,6 +18351822,Breakfast@60,1,Gurgaon,"801, Arihant CGHS, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",0,0,"Chinese, North Indian, South Indian, Healthy Food",120,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,6 +18388168,Bunny Burgers,1,Gurgaon,"Shop 114-E, HUDA Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0991634,28.4251591,"Fast Food, Burger",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,15 +18472449,Curry Haus,1,Gurgaon,"DSS 59, Sector 55, Near Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.093894,28.420766,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,4 +18314053,Droolfi,1,Gurgaon,"HUDA Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.09959824,28.42517935,Desserts,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +300654,Earthen Spices,1,Gurgaon,"7, Sushant Tower, Sushant Lok 2, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1019507,28.4213907,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,20 +18144467,FatPlates,1,Gurgaon,"3, Ground Floor, Sushant Tower, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1018657,28.4211708,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,18 +18332527,Food4U!,1,Gurgaon,"198-199, Paras Trade Centre, Gwal Pahari, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1362757,28.4362232,"North Indian, Chinese, Street Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,18 +18423797,Ghar Ki Handi,1,Gurgaon,"Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",0,0,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18265424,Giani,1,Gurgaon,"HUDA Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1000368,28.4255681,"Ice Cream, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,7 +311534,Great Desserts Company,1,Gurgaon,"SCO 86, 2nd Floor, District Shopping Centre, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0982526,28.4273124,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,14 +18124345,Green Chick Chop,1,Gurgaon,"Shop 114-E, HUDA Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0992983,28.4250375,"Raw Meats, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +5190,Mughlai Treat,1,Gurgaon,"26, Ground Floor, Sushant Tower, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1017259,28.421414,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,48 +310235,Munch,1,Gurgaon,"Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1349572,28.434589,"North Indian, South Indian, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,9 +18251519,New Spice World,1,Gurgaon,"Opposite SBI ATM, Main Huda Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.09929749,28.42516814,"Chinese, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,5 +6764,Pure Bliss,1,Gurgaon,"SCO 81, HUDA Market, Sector 55, Near Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.09992748,28.42894133,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,33 +18345767,Puskar Raj Momos & Chinese Corner,1,Gurgaon,"HUDA Market, Near SBI ATM, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0992973,28.4252326,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +313401,Sai-Yo!,1,Gurgaon,"Kiosk 11, District Commercial Center, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1001525,28.4283926,"North Indian, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,37 +307398,Shanghai Cafe,1,Gurgaon,"SCO 13, District Commercial Sector, Near Metro Mall, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1000683,28.4285248,Chinese,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,17 +309763,The Blaze,1,Gurgaon,"Club Florence, Block E, Sushant Lok 2, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0961512,28.4180994,"North Indian, Chinese",750,Indian Rupees(Rs.),Yes,No,No,No,2,2.9,Orange,Average,8 +18439540,Ullu Delivers,1,Gurgaon,"C Block, Near HUDA Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0993188,28.4250399,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,Yes,No,2,2.8,Orange,Average,5 +5011,Yomo-Your Only Momo Outlet,1,Gurgaon,"HUDA Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0994718,28.4253531,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18265720,Dimsum Democracy,1,Gurgaon,"Market Parking, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.10009377,28.42846486,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,47 +18444356,Midnight Hunger,1,Gurgaon,"Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",0,0,"Continental, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,46 +18419894,The Punjab Kitchen,1,Gurgaon,"A-704, Grand Arc, Golf Course Extension Road, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.112886,28.413665,North Indian,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,37 +18254541,Too Maach,1,Gurgaon,"Shop 8, District Shopping Centre, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1000307,28.4286826,"Bengali, North Indian",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,46 +18393709,Apni Rasoi,1,Gurgaon,"HUDA Market Parking, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.099865,28.4252571,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421493,Bala Ji Sweets Corner,1,Gurgaon,"HUDA Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0992983,28.4250375,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18464628,Barista,1,Gurgaon,"52, Paras Trade Center, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1340452,28.43675,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18398590,Biryani Express,1,Gurgaon,"Shop 3, Mehar Chand Complex, Wazirabad Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0893173,28.4316128,Biryani,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18476986,Cafe #22hours,1,Gurgaon,"W Pratiksha hospital, Golf Course Extension Road, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",0,0,"North Indian, South Indian, Chinese, Healthy Food, Bakery",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312560,Cake Innovation,1,Gurgaon,"ASF Insignia, Food Court, Gawal Pahari, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.134902,28.4345776,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18391166,Chawla's_,1,Gurgaon,"10, District Commercial Center, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.100181,28.4287959,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18464624,China Gathering,1,Gurgaon,"Shop 88, HUDA Market, Sector 55, Near Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1096659,28.4271903,Chinese,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18464616,Chinese Hot Express,1,Gurgaon,"Car Parking, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.099568,28.4254221,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18393725,Cookingo,1,Gurgaon,"Behind Legend Society, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",0,0,"Mughlai, North Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18438453,Firefly,1,Gurgaon,"HUDA Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",0,0,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18365603,Foodie Xpress,1,Gurgaon,"Plot 52, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18388039,Go! Dimsum,1,Gurgaon,"HUDA Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.09921435,28.42471111,Chinese,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18495252,Kanha North & South Indian Veg.,1,Gurgaon,"Shop 2, District Shopping Complex, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.10003416,28.42890893,"North Indian, South Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421502,Kings Kulfi,1,Gurgaon,"Shop No 18, Huda Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0999277,28.4256359,Ice Cream,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18464630,Lassi Cafe,1,Gurgaon,"Main Baliawas, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1420001,28.429125,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18335897,Marwadi Khana,1,Gurgaon,"Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.104693,28.4221468,"North Indian, Rajasthani",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +5935,Nukkadwala,1,Gurgaon,"Asf, Insignia, Gwal Pahari, Gurgaon-Faridabad Road, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1529576,28.4319337,"Fast Food, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18421476,Ravi Fast Food,1,Gurgaon,"Huda Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0990285,28.425191,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +305140,Shivalik Tiffin Corner,1,Gurgaon,"A1-148, Near Pawan Estate, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1072554,28.4298806,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18464618,Street Food By Punjab Grills,1,Gurgaon,"HUDA Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0997478,28.4253496,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18464626,Sweet Ginger Bakery,1,Gurgaon,"Shop 38, Paras Trade Centre, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.1345396,28.436573,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18261727,The Rolling Stove,1,Gurgaon,"HUDA Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0998491,28.425268,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18319384,Vijeta's Happy Kitchen,1,Gurgaon,"Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +306540,Chawla's_,1,Gurgaon,"2nd Floor, Community Centre, Devinder Vihar, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0921967,28.430031,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,2.2,Red,Poor,66 +304524,Chy - Na Express,1,Gurgaon,"Shop 104, HUDA Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0990285,28.4249219,Chinese,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.2,Red,Poor,46 +2087,Kwality,1,Gurgaon,"85, HUDA Market, Sector 56, Gurgaon",Sector 56,"Sector 56, Gurgaon",77.0992084,28.4251185,"Chinese, Mughlai, North Indian",650,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,52 +18439516,Brother's Snacks and Shakes,1,Gurgaon,"Shop 3, Near Artemis Hospital, Sector 57, Gurgaon",Sector 57,"Sector 57, Gurgaon",77.080462,28.4297813,Fast Food,300,Indian Rupees(Rs.),No,Yes,Yes,No,1,3.2,Orange,Average,12 +5588,Ginger Garlic,1,Gurgaon,"G-7, Bestech Mall, Sector 57, Gurgaon",Sector 57,"Sector 57, Gurgaon",77.0904414,28.4217218,Chinese,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,106 +311975,Arabicaa 9,1,Gurgaon,"Shop 1, Plot 1-A, Circular Road, New Colony, Sector 7, Gurgaon",Sector 7,"Sector 7, Gurgaon",77.0176107,28.467311,Lebanese,500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,22 +6897,Burger Xpress,1,Gurgaon,"1A/1, Circular Road, New Colony, Sector 7, Gurgaon",Sector 7,"Sector 7, Gurgaon",77.017531,28.4672588,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,94 +313122,Dilli Light,1,Gurgaon,"170/11, Shiv Puri, Sector 7, Gurgaon",Sector 7,"Sector 7, Gurgaon",77.0190993,28.4707962,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,16 +306976,KB's Kulfi & Icecream,1,Gurgaon,"1, Opposite Allahabad Bank, Sector 7 Chowk, Sector 7, Gurgaon",Sector 7,"Sector 7, Gurgaon",77.0184147,28.4726717,Ice Cream,200,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,11 +308191,MyLoveBiryani.Com,1,Gurgaon,"Near Sector 7, Gurgaon",Sector 7,"Sector 7, Gurgaon",77.0155627,28.4651285,"North Indian, Biryani",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,16 +18336484,Tandoori Adda,1,Gurgaon,"SCO 2, Dyal Market, Shivpuri, Near Sector 7, Gurgaon",Sector 7,"Sector 7, Gurgaon",77.0143446,28.4700416,"North Indian, Mughlai, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,32 +312665,Tiffins 4 U,1,Gurgaon,"Sector 7, Gurgaon",Sector 7,"Sector 7, Gurgaon",77.0148921,28.4648232,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,27 +18357570,Cafe Cup of Life,1,Gurgaon,"6B, New Colony, Circular Road, Sector 7, Gurgaon",Sector 7,"Sector 7, Gurgaon",77.0162592,28.4681375,"Cafe, Fast Food, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,45 +310829,DCK- Dana Choga's Kitchen,1,Gurgaon,"83-R, New Colony, Sector 7, Gurgaon",Sector 7,"Sector 7, Gurgaon",77.0170336,28.4677392,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,148 +9852,Kishu Di Hatti Sweets,1,Gurgaon,"53 L, New Colony Market, Sector 7, Gurgaon",Sector 7,"Sector 7, Gurgaon",77.0175244,28.4663672,Mithai,150,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,20 +18357912,KC Bakers,1,Gurgaon,"3/5, Khandsa Road, Sector 8, Gurgaon",Sector 8,"Sector 8, Gurgaon",77.022728,28.455974,Bakery,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,13 +311455,Sham Sweets,1,Gurgaon,"Shivaji Nagar, Near Balaji Mandir, Sector 8, Gurgaon",Sector 8,"Sector 8, Gurgaon",77.0236993,28.4525161,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,7 +18398839,Bake Cuddle,1,Gurgaon,"1090/11, Street 5, Near Arya Samaj Mandir, Arjun Nagar, Sector 8, Gurgaon",Sector 8,"Sector 8, Gurgaon",77.0213621,28.4591855,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +1920,Gopala,1,Gurgaon,"D-85, Shopping Mall, Arjun Marg, DLF Phase 1, Gurgaon","Shopping Mall, DLF Phase 1","Shopping Mall, DLF Phase 1, Gurgaon",77.0998689,28.4658365,"Mithai, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,37 +358,Halki Aanch,1,Gurgaon,"D-141, Shopping Mall, Arjun Marg, DLF Phase 1, Gurgaon","Shopping Mall, DLF Phase 1","Shopping Mall, DLF Phase 1, Gurgaon",77.0997223,28.4656305,"North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,64 +5080,New Sukh Sagar,1,Gurgaon,"CB-84, Shopping Mall, Arjun Marg, DLF Phase 1, Gurgaon","Shopping Mall, DLF Phase 1","Shopping Mall, DLF Phase 1, Gurgaon",77.1000176,28.465995,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,16 +1655,Sweets Corner,1,Gurgaon,"S 135, Shopping Mall, Market Road, Arjun Marg, DLF Phase 1, Gurgaon","Shopping Mall, DLF Phase 1","Shopping Mall, DLF Phase 1, Gurgaon",77.0993432,28.4658854,"Mithai, North Indian, Chinese, Street Food",450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,28 +18397469,Minus5degree,1,Gurgaon,"Shopping Mall, Arjun Marg, DLF Phase 1, Gurgaon","Shopping Mall, DLF Phase 1","Shopping Mall, DLF Phase 1, Gurgaon",77.0987074,28.4662158,"Desserts, Ice Cream",200,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,28 +1654,Qureshi's Kabab Corner,1,Gurgaon,"CB 70-71, Shopping Mall, Arjun Marg, DLF Phase 1, Gurgaon","Shopping Mall, DLF Phase 1","Shopping Mall, DLF Phase 1, Gurgaon",77.0992642,28.4661404,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,398 +18462602,Delicious Food Corner,1,Gurgaon,"Near Sikandarpur Metro Station, Sikandarpur, Gurgaon",Sikandarpur,"Sikandarpur, Gurgaon",77.0947125,28.4810852,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18479007,Firangi Bake,1,Gurgaon,"Shop 139, DLF City Court, Sikandarpur, Gurgaon",Sikandarpur,"Sikandarpur, Gurgaon",77.095457,28.482671,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18409187,Kettle & Kegs,1,Gurgaon,"Sikandarpur, Gurgaon",Sikandarpur,"Sikandarpur, Gurgaon",77.0954737,28.4828791,Tea,200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,0 +18357945,The Daily,1,Gurgaon,"3-5, Shiv Narayan Complex, Near Prachin Hanuman Mandir, Sikandarpur, Gurgaon",Sikandarpur,"Sikandarpur, Gurgaon",77.0967623,28.4834802,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +313085,Burger Singh,1,Gurgaon,"Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.03890722,28.42447847,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,190 +307502,Captain Bill$ Deliverz,1,Gurgaon,"Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.089166,28.433455,"North Indian, Chinese, Fast Food",1000,Indian Rupees(Rs.),No,Yes,Yes,No,3,2.5,Orange,Average,65 +18237318,Chaayos,1,Gurgaon,"Ground Floor, Block 2, Vatika Business Park, Sector 49, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0447688,28.406494,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,39 +18336504,Chai Point,1,Gurgaon,"Shop No 2, Block 3, Vatika Business Park, Sector 49, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0443061,28.4057383,"Tea, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,20 +18277212,Cyber Adda 24,1,Gurgaon,"Unit 1-A, Ground Floor, Weldone Tech Park, Near, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0383803,28.4183524,"North Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,17 +18411846,Desi Thaat,1,Gurgaon,"Near Omaxe Mall, P.D. Arcade, Sector 49, Near Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0430886,28.4118349,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,21 +300938,Doughlicious,1,Gurgaon,"Ground Floor, Block 2, Vatika Business Park, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0447626,28.4064865,"Bakery, Desserts, Fast Food",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,175 +309466,Dunkin' Donuts,1,Gurgaon,"Ground Floor, ILD Trade Centre, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0392204,28.4249125,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,138 +303606,Gulshan Dhaba,1,Gurgaon,"Sohna Chowk, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0276151,28.4579514,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,20 +18441175,Karari Kurry,1,Gurgaon,"Shop 2, Food Street, P.D Arcade, Near Omaxe Mall, Sector 49, Near Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.04253683,28.41240966,"North Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,51 +18292438,Moti Mahal Delux,1,Gurgaon,"Shop 1-A, Subhash Chowk, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0381858,28.4268302,"North Indian, Mughlai",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.2,Orange,Average,32 +301383,Needs Gourmet,1,Gurgaon,"Badshahpur Chowk, Vatika City, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0451575,28.4025286,"North Indian, Chinese, Italian",750,Indian Rupees(Rs.),Yes,No,No,No,2,3.1,Orange,Average,57 +310500,Rao's Meeting Point,1,Gurgaon,"Near Omaxe City Center Mall, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.042691,28.4118643,"South Indian, North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,54 +6867,Sadabahar Hotel,1,Gurgaon,"3 Km Milestone, Opposite 9X Mall, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0403449,28.4157403,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,41 +301310,Sagar Ratna,1,Gurgaon,"Plot 12-D, Ground Floor, JMD Galleria, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0383658,28.4209297,"South Indian, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,188 +18232128,Shri Ram Restaurant,1,Gurgaon,"Opposite Omaxe City Center, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0417392,28.4116153,"North Indian, Street Food, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,68 +4820,Shri Ram Restaurant,1,Gurgaon,"Sector 48, Opposite Eldeco Mansionz, Fazilpur Chowk, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0409296,28.411627,"North Indian, Mithai, Street Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,30 +306883,Subway,1,Gurgaon,"7, Ground Floor, Welldone Tech Park, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0382435,28.4184165,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,58 +4817,Subway,1,Gurgaon,"4, Ground Floor, Block B, Vatika Business Park, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0444681,28.4058183,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,101 +18423106,Sugarcraft Patisserie,1,Gurgaon,"G-37, Ground Floor, The Sapphire, Block S, Uppal Southend, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0484858,28.4117267,Bakery,800,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,16 +18161567,Tea Halt,1,Gurgaon,"Food Court, Amenity Block, Infospace, Sector 48, Near Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0322081,28.4256547,Cafe,500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,22 +303003,The Golden Dragon,1,Gurgaon,"Ground Floor, Spazedge Mall, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0406597,28.4201195,"Chinese, Seafood, Japanese",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.6,Orange,Average,83 +309033,The Spice Room,1,Gurgaon,"Ground Floor, Tower 3, Vatika Business Park, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0452475,28.406214,"North Indian, Chinese",1350,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,155 +18258571,The Tongue Twister,1,Gurgaon,"Opposite G D Goenka University, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.067268,28.266839,"Chinese, North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,40 +18322684,56 Fresca,1,Gurgaon,"Ground Floor, Block 3, Vatika Business Park, Sector 49, Near Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0447078,28.4060723,Italian,750,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.7,Yellow,Good,30 +18261309,BreakfastBay,1,Gurgaon,"241-242, Tower B3, Spaze Itech Park, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.04214934,28.41385572,"Healthy Food, Continental, North Indian, Salad",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,30 +304192,Cafe Maple Street,1,Gurgaon,"1, Tower B, Vatika Business Park, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0443479,28.4058584,"Cafe, Bakery, Desserts",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,84 +18381235,Fat Lulu's,1,Gurgaon,"Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.058018,28.434541,"Pizza, Italian",1250,Indian Rupees(Rs.),No,Yes,No,No,3,3.7,Yellow,Good,21 +18365865,Fat Monk,1,Gurgaon,"Food Court, Amenity Block, Infospace, Sector 48, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.033013,28.4255696,"Chinese, Asian",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,22 +18282037,First Eat,1,Gurgaon,"Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",0,0,"Healthy Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,57 +18415385,Flying Tuk Tuk,1,Gurgaon,"Unit 31 - 32, Ground Floor, Vipul Trade Centre, Sector 48, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0413794,28.4069177,Asian,1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,28 +18180062,FreshMenu,1,Gurgaon,"512, Gehlot Farm House, Sector 47, Near, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.041071,28.415066,"Italian, Chinese, Continental, Thai, Mediterranean, Lebanese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,101 +18368007,Little Skillet,1,Gurgaon,"Shop 5, Sapphire complex, Sector 49, Near Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0489356,28.4120391,"North Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,26 +18383504,PKay,1,Gurgaon,"Spaze IT Park, Tower C, Sector 49, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0432685,28.4133766,"North Indian, Continental",1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,28 +17977749,Shama Chicken Corner,1,Gurgaon,"Shop 1, Fazilpur Chowk, Near Omaxe City, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.042099,28.4120086,Biryani,500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,35 +312684,Starbucks,1,Gurgaon,"Ground Floor, Vatika Business Park, Sector 49, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0449776,28.4060983,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,51 +18303696,Tandoori Nation,1,Gurgaon,"G-4, Tower D Welldone Tech Park , Near JMD Megapolis, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.03833256,28.41864781,"North Indian, Mughlai, Chinese",950,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,39 +303174,Truffle Tangles,1,Gurgaon,"Flat 122, Jasmanium 2, Vatika City, Sector 49, Near Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0365475,28.4274393,"Bakery, Desserts, North Indian, Bengali, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,37 +6877,Domino's Pizza,1,Gurgaon,"30, Ground Floor, ILD Trade Center, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0393103,28.4248315,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.3,Red,Poor,70 +306975,KB's Icecream & Kulfis,1,Gurgaon,"2, Opposite Omaxe Mall, CD Chowk, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0418292,28.4116239,Ice Cream,200,Indian Rupees(Rs.),No,Yes,No,No,1,2.3,Red,Poor,26 +18014135,Wah Ji Wah,1,Gurgaon,"Shop 1A, Subhash Chowk, Near Omaxe Celebration Mall, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.0371694,28.4270829,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,2.4,Red,Poor,42 +18306533,The Brewhouse,1,Gurgaon,"Fortune Select Excalibur, Sector 49, Sohna Road, Gurgaon",Sohna Road,"Sohna Road, Gurgaon",77.04178983,28.41593885,Continental,2500,Indian Rupees(Rs.),Yes,No,No,No,4,4.1,Green,Very Good,56 +18441539,Boozer's,1,Gurgaon,"Phase-1, South City 1, Gurgaon",South City 1,"South City 1, Gurgaon",77.062693,28.454258,"Finger Food, North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,0 +18340217,Cheffy's,1,Gurgaon,"F-52, South City 1, Gurgaon",South City 1,"South City 1, Gurgaon",77.0678486,28.4584293,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18246068,Cake Point,1,Gurgaon,"Village Wazirabad, Near Lakshay Tent House Sector 52, South City 2, Gurgaon",South City 2,"South City 2, Gurgaon",77.0832002,28.4307097,"Bakery, Desserts",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,7 +304564,Shyam Sweets,1,Gurgaon,"Main Market, Wazirabad, Near South City 2, Gurgaon",South City 2,"South City 2, Gurgaon",77.08893042,28.4316636,"Street Food, Mithai",100,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,9 +312265,Uma Foodies' Hut,1,Gurgaon,"Main Market, Wazirabad, South City 2, Gurgaon",South City 2,"South City 2, Gurgaon",77.08898909,28.43185642,"North Indian, Chinese, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,33 +18378807,AK Your Food,1,Gurgaon,"Shop 4, B Block, Gate 2, Sector 52, South City 2, Gurgaon",South City 2,"South City 2, Gurgaon",77.0810496,28.4406267,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18205653,Freshnfit.in,1,Gurgaon,"Sector 52, Near South City 2, Gurgaon",South City 2,"South City 2, Gurgaon",77.0860608,28.4362534,Juices,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18458345,Shri Ram Bhojnalaya,1,Gurgaon,"Shop 6, Vohra Market, South City 2, Gurgaon",South City 2,"South City 2, Gurgaon",77.078993,28.4346629,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +311428,Special O-cake-sions,1,Gurgaon,"702, Jai Heights, Plot 10, Sector 52, South City 2, Gurgaon",South City 2,"South City 2, Gurgaon",77.0745897,28.4325962,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435818,Tasteful Biryani,1,Gurgaon,"South City 2, Gurgaon",South City 2,"South City 2, Gurgaon",77.0832881,28.4307149,Biryani,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +313316,Bikanervala,1,Gurgaon,"Suncity Business Tower, Golf Course Road, Gurgaon","Suncity Business Tower, Golf Course Road","Suncity Business Tower, Golf Course Road, Gurgaon",77.1053224,28.4335066,"North Indian, South Indian, Fast Food, Street Food, Chinese, Beverages, Desserts, Mithai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,178 +7528,Indian Grill Room,1,Gurgaon,"315, 3rd Floor, Suncity Business Tower, Golf Course Road, Gurgaon","Suncity Business Tower, Golf Course Road","Suncity Business Tower, Golf Course Road, Gurgaon",77.1052774,28.4334574,"North Indian, Mughlai",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.5,Dark Green,Excellent,1262 +1216,Oriental Fusion,1,Gurgaon,"A-112 & 114, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.0872491,28.4625277,"Chinese, Thai, Malaysian, Indonesian",650,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,199 +305662,Purani Dilli's Al Karam Kebab House,1,Gurgaon,"Super Mart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.08729528,28.46243126,"North Indian, Mughlai, Biryani",950,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,483 +305792,Rollmaal,1,Gurgaon,"B-136, Lower Ground Floor, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.0876088,28.4623829,"Fast Food, North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,346 +305776,Speedy Chow,1,Gurgaon,"B-134/135, Lower Ground Floor, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.0876088,28.4622932,"Chinese, Thai",850,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.2,Orange,Average,241 +18355106,Arabian Nites,1,Gurgaon,"A - 133, Ground Floor, Super Mart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.0868749,28.4625024,Lebanese,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,158 +308274,Giani's,1,Gurgaon,"A-131, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.0869794,28.4624121,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,92 +3538,Giani,1,Gurgaon,"A-130, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.08695229,28.46246192,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,115 +18420450,Juste Miam,1,Gurgaon,"A-137, Lower Ground Floor, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.0869794,28.4626811,"Bakery, Desserts, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,94 +306401,Patiala Shahi,1,Gurgaon,"A 134 135, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.0868501,28.4625094,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,118 +18257542,The Kathis,1,Gurgaon,"B-215, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.087339,28.4624466,"North Indian, Street Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,48 +9290,Wai Yu Mun Ching,1,Gurgaon,"A-215 & 216, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.0871567,28.4625963,"Chinese, Thai",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.6,Yellow,Good,321 +301499,Bernardo's,1,Gurgaon,"A-237, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.087339,28.4626259,Goan,2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,4,Green,Very Good,429 +18025103,Biryani Art,1,Gurgaon,"A-202 & 203, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.0870678,28.4625602,"Hyderabadi, North Indian, Biryani",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,344 +18424627,Nosh,1,Gurgaon,"A 222, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.0871573,28.4625905,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,103 +18403465,Tandoor Express,1,Gurgaon,"B-215, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.0874235,28.4624928,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,67 +18372668,Tandoori KnockOuts,1,Gurgaon,"A 224, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.0871592,28.4626087,"Fast Food, North Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,112 +18224536,Udaipuri,1,Gurgaon,"A-204, A-205, Supermart 1, DLF Phase 4, Gurgaon","Supermart 1, DLF Phase 4","Supermart 1, DLF Phase 4, Gurgaon",77.0871142,28.4623802,"North Indian, Rajasthani, Asian",700,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,157 +18128902,Begonia,1,Gurgaon,"C Block, Phase 1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",0,0,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,8 +18138454,Cakes & Muffins,1,Gurgaon,"B-1/75, 1st Floor, Phase 3, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0784363,28.4659842,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,21 +4602,Halki Aanch,1,Gurgaon,"The Laburnum, Phase 1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0756172,28.4714149,"North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,39 +18341082,Hungry Gopal,1,Gurgaon,"C-463 A, Basement, Near Gold Souk Mall, Phase 1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0786436,28.4543078,"Bengali, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,27 +18382055,Kuzo,1,Gurgaon,"Gold Souk Mall, Phase 1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0790658,28.4507135,"North Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +18391189,Lovecrumbs Bakery,1,Gurgaon,"B 286, Phase-1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0784363,28.4660738,Bakery,1000,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,16 +311837,Organic Express,1,Gurgaon,"Gurgaon Organic Farmers Market, C Block, Community Centre, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.081955,28.452042,"Healthy Food, North Indian, Italian, Salad",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,20 +254,Pizza Hut,1,Gurgaon,"Centerpoint, A Block, Phase 1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0746189,28.4684058,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,2.8,Orange,Average,80 +308113,Roti Te Boti,1,Gurgaon,"135, Ground Floor, Vyapar Kendra, Phase 1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0832025,28.4600768,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,42 +18365890,Behrouz Biryani,1,Gurgaon,"Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0787061,28.4609895,Biryani,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,49 +18354631,Caf Burger BC,1,Gurgaon,"2513, Near Gold Souk Mall, C Block, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0794255,28.4504791,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,65 +18336214,Dilli Darbar,1,Gurgaon,"UGF 138, Vypaar Kendra Market, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0843946,28.4602529,"North Indian, Mughlai, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,52 +18265365,Fu.D,1,Gurgaon,"9-C, Ground Floor, Vipul Square, Phase 1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0789759,28.4647809,"Cafe, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,58 +18363405,Jarfull,1,Gurgaon,"G35, Sushant Shopping arcade, Sushant Lok 1, Gurgaon, Delhi NCR, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0791557,28.4605845,"South Indian, Desserts, Beverages",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,25 +18322661,Mochamania,1,Gurgaon,"106, The Laburnum Villa, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0747614,28.4710018,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,50 +18261725,Mukhtalif Biryanis,1,Gurgaon,"Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0847227,28.4592935,"Mughlai, Biryani",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,125 +18157408,Mummy's Kitchen,1,Gurgaon,"Shop 114, Queens Plaza, C Block, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0853157,28.4543176,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,26 +18429378,Ovenstory Pizza,1,Gurgaon,"Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0788503,28.4609696,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,23 +18439519,The Godinho's,1,Gurgaon,"Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",0,0,"Goan, American, Portuguese",600,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,23 +18433295,Kujay's Spoon,1,Gurgaon,"C-2462, Phase 1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0796953,28.4499671,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18391171,Lily Food's,1,Gurgaon,"Ground Floor, Gold Souk Mall, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0791682,28.4508593,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18400489,Mutton Mewar,1,Gurgaon,"Phase 1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0762779,28.4513422,Rajasthani,800,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18411599,Tasty But Healthy,1,Gurgaon,"C-2356, Phase 1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0814039,28.4503106,"Fast Food, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18265082,Teddy Choco Studio,1,Gurgaon,"C-479, Phase 1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0830226,28.455756,Desserts,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +313275,Chin Chow,1,Gurgaon,"UGH-180, 1st Floor, Vyapar Kendra, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0840118,28.4601546,Chinese,550,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,38 +18343001,Cafe Sante,1,Gurgaon,"Peach Tree Complex, Block C, Phase 1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0815524,28.4510321,Cafe,1100,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,62 +18377905,Mughal Dine-Esty,1,Gurgaon,"Time Square Building, B Block, Phase 1, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0779417,28.4606023,"North Indian, Mughlai",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,32 +18406140,Nuterro,1,Gurgaon,"Sector 28, Sushant Lok Phase I, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.0751988,28.4708726,"Healthy Food, Continental, Juices, Beverages, Italian, Salad, Lebanese",600,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,101 +18472606,Sandburg Shakes,1,Gurgaon,"Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.079003,28.46082,"Cafe, Pizza, Burger",750,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,34 +18451577,The Millionaire Express,1,Gurgaon,"Sushant Shopping Arcade, Sushant Lok, Gurgaon",Sushant Lok,"Sushant Lok, Gurgaon",77.079311,28.460034,Continental,400,Indian Rupees(Rs.),No,Yes,No,No,1,4,Green,Very Good,53 +312540,Ammu's South Indian Restaurant,1,Gurgaon,"G-43, Ground Floor, Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0793521,28.4607475,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +18386419,Elma's Delivers,1,Gurgaon,"Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0792457,28.461131,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,5 +18412886,Faasos,1,Gurgaon,"Shop E-220, Shushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0788859,28.4609172,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,12 +18421029,Foodrath,1,Gurgaon,"Shop GF, 105-H, Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0793669,28.4613734,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18332044,Hyderabad House,1,Gurgaon,"H-154, Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0792457,28.461131,Biryani,500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,7 +18306553,Kake Da Hotel,1,Gurgaon,"G-114, Sushant Shopping Arcade, Phase 1, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0798015,28.460761,North Indian,700,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,35 +309451,Mitraao,1,Gurgaon,"Shop H-8, Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0796953,28.460995,North Indian,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,117 +18203171,PomoDoro Bistro,1,Gurgaon,"UGF, H-222, Sushant Shopping Arcade, Phase 1, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0790916,28.4610705,"Italian, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,67 +312570,Shri Shyam Ji Ke Mashhoor Chhole Bhature,1,Gurgaon,"C Block, Near Fauji Market, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0811311,28.4532726,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,26 +18273621,Spice Aangan Express,1,Gurgaon,"H-154, Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0792457,28.461131,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,33 +305919,Subway,1,Gurgaon,"D-104, Sushant Shopping Arcade, Phase 1, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0790658,28.4604862,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,59 +304520,Swaad Ka Khazana,1,Gurgaon,"F-11, Sushant Shopping Arcade, Phase 1, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0795604,28.4609372,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,11 +18292458,The Toddy Shop,1,Gurgaon,"C-128, B Block, Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0792715,28.460829,"South Indian, Kerala",1200,Indian Rupees(Rs.),No,Yes,No,No,3,3.4,Orange,Average,21 +4215,Truffles,1,Gurgaon,"G-28, Sushant Shopping Arcade, Phase 1, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0790658,28.4606655,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,15 +18360143,Cafe Bonkerz,1,Gurgaon,"Shop D-3, LGF, Sushant Shopping Arcade, Phase 1, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0787061,28.4604516,"American, Fast Food",850,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,41 +18423890,Wrapchick,1,Gurgaon,"F-10, Sushant Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0794255,28.4608794,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,67 +312555,WoW - Vada Pav & More,1,Gurgaon,"Shop 137-D, Ground Floor, Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0789039,28.4605516,"Street Food, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,2.2,Red,Poor,41 +18420454,Me Kong Bowl,1,Gurgaon,"G229, Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon","Sushant Shopping Arcade, Sushant Lok, Gurgaon, Gurgaon",77.0796953,28.460726,Asian,700,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,27 +3961,Palmyra - The Bristol Hotel,1,Gurgaon,"The Bristol Hotel, 108-110, DLF Phase 1, Gurgaon","The Bristol Hotel, DLF Phase 1","The Bristol Hotel, DLF Phase 1, Gurgaon",77.0923077,28.4799845,"Continental, North Indian",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,57 +3288,Shanghai Bar & Lounge - The Bristol Hotel,1,Gurgaon,"The Bristol Hotel, 108-110, DLF Phase 1, Gurgaon","The Bristol Hotel, DLF Phase 1","The Bristol Hotel, DLF Phase 1, Gurgaon",77.09232,28.4799981,Finger Food,2400,Indian Rupees(Rs.),Yes,No,No,No,4,3,Orange,Average,17 +7231,Zaffran - The Bristol Hotel,1,Gurgaon,"The Bristol Hotel, 108-110, DLF Phase 1, Gurgaon","The Bristol Hotel, DLF Phase 1","The Bristol Hotel, DLF Phase 1, Gurgaon",77.0922972,28.4799825,"Mughlai, Lucknowi, Awadhi",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,52 +18291211,Zaffran - The Claremont,1,Gurgaon,"The Claremont Hotel & Convention Centre, Near Aya Nagar, MG Road, Gurgaon","The Claremont, MG Road","The Claremont, MG Road, Gurgaon",77.0732202,28.4782126,"Mughlai, Lucknowi, Awadhi",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3,Orange,Average,4 +5768,Clove - The Galgotias,1,Gurgaon,"The Galgotias Hotel, 4, Sector 23 A, Sector 23, Gurgaon","The Galgotias, Sector 23","The Galgotias, Sector 23, Gurgaon",77.0529662,28.5047491,"Chinese, North Indian, Continental, Mexican",1500,Indian Rupees(Rs.),Yes,No,No,No,3,2.7,Orange,Average,19 +304276,Green Leaf,1,Gurgaon,"The Habitare Hotel, 21/1, MG Road, Sector 14, Gurgaon","The Habitare Hotel, Sector 14","The Habitare Hotel, Sector 14, Gurgaon",77.0395696,28.4664035,"North Indian, South Indian",800,Indian Rupees(Rs.),Yes,No,No,No,2,3,Orange,Average,6 +304279,Tokyo,1,Gurgaon,"The Habitare Hotel, 21/1, MG Road, Sector 14, Gurgaon","The Habitare Hotel, Sector 14","The Habitare Hotel, Sector 14, Gurgaon",77.0400898,28.4661418,Japanese,1600,Indian Rupees(Rs.),Yes,No,No,No,3,3,Orange,Average,10 +5717,Cigar Lounge - The Oberoi,1,Gurgaon,"The Oberoi, 443, Phase 5, Udyog Vihar, Gurgaon","The Oberoi, Udyog Vihar","The Oberoi, Udyog Vihar, Gurgaon",77.0867995,28.5022869,Finger Food,3000,Indian Rupees(Rs.),No,No,No,No,4,3.2,Orange,Average,17 +7496,Melange - The Pllazio Hotel,1,Gurgaon,"The Pllazio Hotel, 292-296, City Center, Sector 29, Gurgaon","The Pllazio Hotel, Sector 29","The Pllazio Hotel, Sector 29, Gurgaon",77.0640466,28.4646001,"North Indian, Continental, Chinese",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,94 +309377,Qureshi's Kabab Corner,1,Gurgaon,"G-44/A, The Sapphire Mall, Opposite Orchid Petals, Sector 49, Near, Sohna Road, Gurgaon","The Sapphire Mall, Sohna Road","The Sapphire Mall, Sohna Road, Gurgaon",77.048261,28.412019,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,96 +5042,EEST - The Westin Gurgaon,1,Gurgaon,"The Westin Hotel, Sector 29, Gurgaon","The Westin Gurgaon, Sector 29","The Westin Gurgaon, Sector 29, Gurgaon",77.0704322,28.476779,"Japanese, Chinese, Thai",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,272 +5044,Prego - The Westin Gurgaon,1,Gurgaon,"The Westin Hotel, Sector 29, Gurgaon","The Westin Gurgaon, Sector 29","The Westin Gurgaon, Sector 29, Gurgaon",77.0703873,28.4767298,Italian,3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.8,Yellow,Good,390 +5046,Seasonal Tastes - The Westin Gurgaon,1,Gurgaon,"The Westin Hotel, Sector 29, Gurgaon","The Westin Gurgaon, Sector 29","The Westin Gurgaon, Sector 29, Gurgaon",77.0704322,28.476779,"North Indian, Asian",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,394 +310700,Xiao Chi - The Westin Sohna Resort & Spa,1,Gurgaon,"The Westin Sohna Resort & Spa, Vatika Complex, P O Daula, Karanki Road, Sohna Road, Gurgaon","The Westin Sohna Resort & Spa, Sohna Road","The Westin Sohna Resort & Spa, Sohna Road, Gurgaon",77.1427506,28.2393668,Chinese,3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.4,Orange,Average,22 +310699,The Living Room - The Westin Sohna Resort & Spa,1,Gurgaon,"The Westin Sohna Resort & Spa, Vatika Complex, P O Daula, Karanki Road, Sohna Road, Gurgaon","The Westin Sohna Resort & Spa, Sohna Road","The Westin Sohna Resort & Spa, Sohna Road, Gurgaon",77.1427506,28.2393668,Continental,3000,Indian Rupees(Rs.),No,No,No,No,4,3.7,Yellow,Good,45 +2711,The Bar - Trident Gurgaon,1,Gurgaon,"Trident, 443, Phase 5, Udyog Vihar, Gurgaon","Trident, Udyog Vihar","Trident, Udyog Vihar, Gurgaon",77.0867995,28.5022869,Finger Food,2000,Indian Rupees(Rs.),No,No,No,No,4,3.3,Orange,Average,36 +2710,Konomi - Trident Gurgaon,1,Gurgaon,"Trident, 443, Phase 5, Udyog Vihar, Gurgaon","Trident, Udyog Vihar","Trident, Udyog Vihar, Gurgaon",77.0867995,28.5022869,Japanese,3000,Indian Rupees(Rs.),No,No,No,No,4,3.5,Yellow,Good,27 +18285736,L'Opera,1,Gurgaon,"Two Horizon Center, Golf Course Road, Gurgaon","Two Horizon Center, Golf Course Road","Two Horizon Center, Golf Course Road, Gurgaon",77.0958365,28.4512929,"Bakery, Desserts, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,16 +18291200,Town Hall,1,Gurgaon,"Two Horizon Center, Golf Course Road, Gurgaon","Two Horizon Center, Golf Course Road","Two Horizon Center, Golf Course Road, Gurgaon",77.096912,28.45097366,"Japanese, Thai, Italian, Asian",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,13 +18291198,Whisky Samba,1,Gurgaon,"Two Horizon Center, Golf Course Road, Gurgaon","Two Horizon Center, Golf Course Road","Two Horizon Center, Golf Course Road, Gurgaon",77.09688552,28.45104175,"Italian, Burger, Charcoal Grill",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.8,Yellow,Good,127 +18446404,Chokola,1,Gurgaon,"Plot 131, Phase 1, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.080139,28.5109714,"Bakery, Desserts, Bakery",700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,6 +6690,Citrus Cafe - Lemon Tree Hotel,1,Gurgaon,"Lemon Tree Hotel, 886, DLF Phase 5, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0867096,28.5026368,Cafe,2000,Indian Rupees(Rs.),No,No,No,No,4,2.7,Orange,Average,27 +306032,Green Hut,1,Gurgaon,"Opposite Army Canteen, Rao Market, Jwala Mill Road, Sector 18, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0753139,28.5004986,"North Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,23 +18216898,My Plate,1,Gurgaon,"Plot 243, 1st Floor, SP Infocity, Phase 1, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.086215,28.5130313,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,6 +310487,PiccoLicko,1,Gurgaon,"Plot 74, Sector 18, Near IFFCO Chowk, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0652612,28.4875966,Desserts,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,12 +18352277,Pind Balluchi,1,Gurgaon,"Vanijya Nikunj, Shankar Chowk, Phase 5, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.088159,28.4991161,"North Indian, Mughlai",1000,Indian Rupees(Rs.),No,Yes,No,No,3,2.7,Orange,Average,7 +4185,Raj Xpresso,1,Gurgaon,"238, Next to Plot 702, Peepal Chowk, Phase 5, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.083835,28.506391,"North Indian, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,13 +18374686,Riders Hub,1,Gurgaon,"Vanijya Nikunj, Near Income Tax Office, Phase 5, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0879685,28.4991724,"Chinese, Continental, North Indian",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.1,Orange,Average,11 +310870,Shivani Catering Services,1,Gurgaon,"Shop 68, Rao Market, Electronics City, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0728605,28.5011252,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,17 +18435802,The Diet Kitchen,1,Gurgaon,"Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0835622,28.5009896,"Continental, Healthy Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,7 +311788,The Gr8 Taste of India,1,Gurgaon,"Enkay Tower, Phase 5, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0867524,28.4975584,"North Indian, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,10 +312301,World Art Cafe,1,Gurgaon,"183, Nimitya, Phase I, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0842434,28.5120417,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,10 +18175242,XLNC Bakers,1,Gurgaon,"Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0801,28.5140563,Bakery,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18350142,Adventure Food,1,Gurgaon,"Food Court, Infocity, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.086215,28.5130313,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18463967,Baba Da Dhaba,1,Gurgaon,Near Hanuman Mandir,Udyog Vihar,"Udyog Vihar, Gurgaon",77.07576312,28.51150832,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18463954,Bandhani Fast Food,1,Gurgaon,"353, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0823439,28.501278,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18463969,Bhai Ji Dhaba,1,Gurgaon,"Hanuman Mandir, Phase-1, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0755585,28.511513,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18350144,Bikaner Sweets,1,Gurgaon,"Shop 7, Sector 18, HUDA Complex, Sarhaul Village, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0670773,28.4905933,"North Indian, South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18466414,Cafe Coffee Day,1,Gurgaon,"Infotech Center, Old Delhi Gurgaon Road, IDPL Township, Sector 22A, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",0,0,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18332976,Cake 24x7,1,Gurgaon,"Plot 424, Satguru Farm, Opposite Maruti Gate 1, Sector 18, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0627161,28.4969691,"Bakery, Desserts",450,Indian Rupees(Rs.),No,Yes,Yes,No,1,0,White,Not rated,2 +18412860,Chaayos,1,Gurgaon,"Plot 243, Tower A, SP Infocity, Udyog Vihar Phase 1, Sector 20, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.086215,28.5130313,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +18391133,Chauhan Hotel,1,Gurgaon,"Shop 5, HUDA Market, Sector 18, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0671046,28.4905322,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18311952,Costa Coffee,1,Gurgaon,"Airtel Centre Bharti Airtel Ltd, 5th Floor, Plot 16, Phase 4, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.07991786,28.49125312,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18350138,Dheeraj Vaishno Dhaba,1,Gurgaon,"Rao Chattar Singh Market, Opposite Siemens Sarhaul Village, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0673441,28.4907223,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +313078,Domino's Pizza,1,Gurgaon,"SCO 35, HUDA Commercial Complex, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.067069,28.4899846,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18265716,Food Ka Adda,1,Gurgaon,"Plot 481, Ground Floor, Phase 5, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0859902,28.4988926,"North Indian, Chinese, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18382370,iKitchen,1,Gurgaon,"Plot 477, Sector 18, Sarhaul, Phase IV, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.07016754,28.49064636,"North Indian, Chinese, Italian",650,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +18421451,Knights Kitchen,1,Gurgaon,"93-B, Phase 5, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0836521,28.4996537,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18427204,Ku-Kukdu-Ku,1,Gurgaon,"Near DCB ATM, Vimal Yadav Wali Galli, Sarhaul Village, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0665649,28.4872533,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18352171,Mogambo Kitchen,1,Gurgaon,"Plot 581, Phase 5, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0834007,28.4978821,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18458633,Noore-e-Seva,1,Gurgaon,"Shop 3, Huda Market, Sarahel, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0671777,28.490597,"Mughlai, Biryani",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18306504,Premier Bite,1,Gurgaon,"243, Phase 1, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.08617,28.5128925,"North Indian, Chinese, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18458319,Renu Sweets & Restaurant,1,Gurgaon,"Main Market Sarhaol, Opposite Siemens Company, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0693753,28.4909024,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18463955,Street Foods by Punjab Grill,1,Gurgaon,"Location Varies, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.081314,28.4999667,"Street Food, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18337883,Tpot,1,Gurgaon,"Plot 241, Smile Group, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.085902,28.509468,Cafe,400,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,1 +18391145,Uttrakhand Bohra Bhojnalaya & Fast Food,1,Gurgaon,"Main Sarhol Village, Opposite Siemens Office, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0683497,28.4907415,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18277216,Uttrakhand Dhaba,1,Gurgaon,"Near Ram Chowk, Udyog Vihar, Gurgaon",Udyog Vihar,"Udyog Vihar, Gurgaon",77.0762102,28.5114797,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312592,Tea Halt,1,Gurgaon,"Ground Floor, Unitech Cyber Park, Sector 39, Gurgaon","Unitech Cyber Park, Sector 39, Gurgaon","Unitech Cyber Park, Sector 39, Gurgaon, Gurgaon",77.0555019,28.443247,Cafe,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,82 +9273,Dunkin' Donuts,1,Gurgaon,"7, Tower C, Unitech Cyber Park, Sector 39, Gurgaon","Unitech Cyber Park, Sector 39, Gurgaon","Unitech Cyber Park, Sector 39, Gurgaon, Gurgaon",77.0563348,28.4429124,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,302 +309134,Indian Bistro Company,1,Gurgaon,"Unit 3, Tower B, Unitech Cyber Park, Sector 39, Gurgaon","Unitech Cyber Park, Sector 39, Gurgaon","Unitech Cyber Park, Sector 39, Gurgaon, Gurgaon",77.05503501,28.44359498,North Indian,750,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,276 +18458638,Department of Food and Social Affair,1,Gurgaon,"Unitech Cyber Park, Behind Tower A, Sector 39, Gurgaon","Unitech Cyber Park, Sector 39, Gurgaon","Unitech Cyber Park, Sector 39, Gurgaon, Gurgaon",0,0,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18337882,Tpot,1,Gurgaon,"Unitech Cyber Park, Sector 39, Gurgaon, Gurgaon","Unitech Cyber Park, Sector 39, Gurgaon","Unitech Cyber Park, Sector 39, Gurgaon, Gurgaon",77.0563114,28.4435939,Cafe,800,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,3 +18237342,Anaaj,1,Gurgaon,"Food Court, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0714665,28.5096403,"North Indian, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,7 +18383550,Au Bon Pain,1,Gurgaon,"New Food court, 12-A, Ground Floor, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.07236174,28.51055995,"Cafe, Bakery",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,8 +302243,Cafe Coffee Day,1,Gurgaon,"Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0715115,28.509779,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +18294576,Cafe Friends,1,Gurgaon,"Shop 14, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0712658,28.5095992,"Cafe, Fast Food, Street Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,31 +18233603,Chinese Bistro,1,Gurgaon,"Food Court, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0714665,28.5096403,Chinese,600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,5 +304182,Dunkin' Donuts,1,Gurgaon,"Unit 2, Ground Floor, Amenity Block, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0715115,28.509779,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,87 +18396424,Madras Coffee House,1,Gurgaon,"Unit 7, SEZ Block 4 Aminity, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0720511,28.5103687,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +9967,McDonald's,1,Gurgaon,"3, Ground Floor, Amenity Block, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0714215,28.5096807,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,35 +18350125,Nukkadwala,1,Gurgaon,"Unit 7, SEZ Block 4 Aminity, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.07199864,28.51028625,"Fast Food, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,25 +302248,Salad Chef,1,Gurgaon,"Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.07128014,28.5095226,"Healthy Food, Fast Food, Salad",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,44 +310531,Subway,1,Gurgaon,"Food Court, Ground Floor, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0715115,28.509779,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,27 +312708,Tea Halt,1,Gurgaon,"Food Court, Basement, Amenity Block, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0715115,28.509779,Cafe,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,14 +18175288,The Kachori Co.,1,Gurgaon,"Amenity Block, Unitech Infospace, Old Delhi-Gurgaon Road, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0714703,28.5096854,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,2.5,Orange,Average,11 +18124368,Urban Dhaba,1,Gurgaon,"Food Court, Basement 1, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0714665,28.5096403,North Indian,700,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,11 +18371415,A Piece of Paris,1,Gurgaon,"Next to Citibank ATM, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0716878,28.510247,"Desserts, Bakery",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,43 +305687,Chaayos,1,Gurgaon,"Amenity Block, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0715115,28.5096894,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,127 +309642,Doughlicious,1,Gurgaon,"Unit 11, Ground Floor, Amenity Block, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.07169354,28.50969289,"Bakery, Desserts, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,60 +18273546,Eggers Madhouse,1,Gurgaon,"15, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0713316,28.5096721,Fast Food,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,51 +18349911,Live Wok,1,Gurgaon,"Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0714215,28.5096807,"Chinese, Asian, Thai",500,Indian Rupees(Rs.),Yes,No,No,No,2,3.6,Yellow,Good,45 +300652,Orange Chopsticks,1,Gurgaon,"Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.07144342,28.50954204,"Chinese, Thai, Asian",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,200 +302239,Pizzoccheri,1,Gurgaon,"Block 4, Unitech Infospace, Opposite IDPL, Old Delhi Gurgaon Road, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.07135793,28.50954764,"Fast Food, Pizza",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.6,Yellow,Good,76 +18458317,Creamy Innovation,1,Gurgaon,"Counter 7, Food Court, Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",0,0,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18237348,Dosa Republic,1,Gurgaon,"Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0714665,28.5096403,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18311959,Giani's,1,Gurgaon,"Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0716464,28.5096576,"Ice Cream, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +309308,Chai Point,1,Gurgaon,"Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon","Unitech Infospace, Sector 21, Gurgaon, Gurgaon",77.0717813,28.5099843,"Tea, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,49 +301559,Latitude - Vivanta By Taj,1,Gurgaon,"Vivanta by Taj, Near HUDA City Center Metro Station, Sector 44, Gurgaon","Vivanta by Taj, Sector 44, Gurgaon","Vivanta by Taj, Sector 44, Gurgaon, Gurgaon",77.0700953,28.4562499,"North Indian, Mediterranean, European, Asian, Chinese, Pizza",3500,Indian Rupees(Rs.),Yes,No,No,No,4,3.8,Yellow,Good,305 +301562,Thai Pavilion - Vivanta By Taj,1,Gurgaon,"Vivanta by Taj, Near HUDA City Center Metro Station, Sector 44, Gurgaon","Vivanta by Taj, Sector 44, Gurgaon","Vivanta by Taj, Sector 44, Gurgaon, Gurgaon",77.0701624,28.4559543,"Thai, Asian",4000,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,219 +311480,3H Kitchen,1,Gurgaon,"B-70, Vyapar Kendra, Palam Vihar, Gurgaon","Vyapar Kendra, Palam Vihar","Vyapar Kendra, Palam Vihar, Gurgaon",77.0310152,28.5088255,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,15 +303866,Manish Sweets & Bakers,1,Gurgaon,"Shop 59, Vyapar Kendra, Palam Vihar, Gurgaon","Vyapar Kendra, Palam Vihar","Vyapar Kendra, Palam Vihar, Gurgaon",77.0313937,28.5085989,"Mithai, Bakery, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,5 +4188,Oasis Kitchen,1,Gurgaon,"S-161, Vyapar Kendra, Palam Vihar, Gurgaon","Vyapar Kendra, Palam Vihar","Vyapar Kendra, Palam Vihar, Gurgaon",77.0316635,28.5088043,"Chinese, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +311844,Ramchandra Chinese Food,1,Gurgaon,"C-145, Vyapar Kendra, Palam Vihar, Gurgaon","Vyapar Kendra, Palam Vihar","Vyapar Kendra, Palam Vihar, Gurgaon",77.0309826,28.508564,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,10 +308681,Sona Chinese,1,Gurgaon,"C-124, Vyapar Kendra, Palam Vihar, Gurgaon","Vyapar Kendra, Palam Vihar","Vyapar Kendra, Palam Vihar, Gurgaon",77.0308539,28.5090845,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,14 +2817,The Pastry Hut,1,Gurgaon,"S-73, Palam Vyapar Kendra, Palam Vihar, Gurgaon","Vyapar Kendra, Palam Vihar","Vyapar Kendra, Palam Vihar, Gurgaon",77.0313937,28.5088678,"Bakery, Desserts",150,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,13 +5927,Aggarwal Sweets & Restaurant,1,Gurgaon,"B-89, Vyaapar Kendra, Palam Vihar, Gurgaon","Vyapar Kendra, Palam Vihar","Vyapar Kendra, Palam Vihar, Gurgaon",77.0311238,28.5088417,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +301734,Bhoomika,1,Gurgaon,"39, Ground Floor, Vyapar Kendra, Phase 1, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0842702,28.4604845,"Bakery, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +309851,FoodZilla,1,Gurgaon,"UGF-126, 1st Floor, Vyapar Kendra, C Block, Phase 1, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0841917,28.4603512,"Chinese, Assamese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,153 +300097,Goli Vada Pav No. 1,1,Gurgaon,"180, Ground Floor, Vyapar Kendra, Phase 1, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0839756,28.4598562,Street Food,150,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,151 +18466966,Indo Chinese,1,Gurgaon,"178, Ground Floor, Vyapar Kendra, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",0,0,"North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +306524,Kathi Junction,1,Gurgaon,"GF-23, Ground Floor, Vyapar Kendra, Phase 1, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0836521,28.4606579,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,89 +1453,Romi da Dhaba,1,Gurgaon,"GF-177, Sushant Vyapar Kendra, Sushant Lok 1, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.083832,28.4600476,North Indian,550,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,122 +1451,Shamji Snacks,1,Gurgaon,"54, Vyapar Kendra, Block C, Phase 1, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0843266,28.4602296,"Mithai, Street Food, South Indian, Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,83 +300082,The Lunch Break,1,Gurgaon,"UGF-9, Vyapar Kendra, Phase 1, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0835622,28.46047,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +313479,Veg O Non,1,Gurgaon,"181, Vyapar Kendra, Phase 1, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0843266,28.459871,North Indian,650,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,21 +9122,Alwar Sweets,1,Gurgaon,"GF-40, Opposite Mother Dairy, Vyapar Kendra, Phase 1, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0842816,28.4603598,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,66 +3559,Bakers Oven,1,Gurgaon,"9, Ground Floor, Vyaapar Kendra, Phase 1, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.083832,28.4606752,"Bakery, Desserts",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,69 +18265678,Burgzz Bee,1,Gurgaon,"GF-179, Vyapar Kendra, Phase 1, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0840568,28.4599348,"Burger, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,60 +2165,Chinese Corner,1,Gurgaon,"GF-174, Vyapar Kendra, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0839219,28.4597873,"Chinese, Thai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,369 +6769,Iroha,1,Gurgaon,"GF-144-146, Vyapar Kendra, Phase 1, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0832025,28.4599872,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,63 +18441791,Chaudhary Burfi Wala,1,Gurgaon,"Shop 38, Vyapar Kendra, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0843266,28.4605883,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +1454,Curry 'n' Phulka,1,Gurgaon,"GF-1, Vyapar Kendra, Block C, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0837421,28.4607562,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,83 +6775,Wah Ji Wah,1,Gurgaon,"100, Ground Floor, Vyapar Kendra, C Block, Phase 1, Sushant Lok, Gurgaon","Vyapar Kendra, Sushant Lok","Vyapar Kendra, Sushant Lok, Gurgaon",77.0832256,28.4605726,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.2,Red,Poor,142 +306043,Woods Spice,1,Gurgaon,"Woods Resort, H Block, Greenwood City, Near Sector 45, Gurgaon","Woods Resort, Gurgaon","Woods Resort, Gurgaon, Gurgaon",77.0573475,28.4428081,"Continental, North Indian",1300,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,36 +2100712,Mocha,1,Guwahati,"Anil Plaza 2, G.S Road, Christian Basti, Guwahati","Anil Plaza, Christian Basti","Anil Plaza, Christian Basti, Guwahati",91.773932,26.16149,"Cafe, Italian",800,Indian Rupees(Rs.),No,No,No,No,3,4.6,Dark Green,Excellent,394 +2100478,Terra Mayaa Restaurant and Lounge,1,Guwahati,"6th Floor, Anil Plaza 2, G.S. Road, Christian Basti, Guwahati","Anil Plaza, Christian Basti","Anil Plaza, Christian Basti, Guwahati",91.77393191,26.1614901,"North Indian, Continental, Italian, Chinese",1400,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,360 +18384506,The Basement Caf,1,Guwahati,"R.G. Baruah Road, Near Guwahati Commerece College, Chandmari, Guwahati",Chandmari,"Chandmari, Guwahati",91.77524608,26.1802428,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,4.7,Dark Green,Excellent,126 +2100108,Strawberry Fields,1,Guwahati,"Chakradhar Villa, Opposite All India Radio, Chandmari, Guwahati",Chandmari,"Chandmari, Guwahati",91.77495472,26.18470185,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,290 +2100921,Brooklyn Blues,1,Guwahati,"4th Floor, Dona Planet Mall, G. S. Road, Christian Basti, Guwahati",Christian Basti,"Christian Basti, Guwahati",0,0,"Continental, European",1400,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,110 +2100565,Confucius,1,Guwahati,"Near VLCC, G.S. Road, Christian Basti, Guwahati",Christian Basti,"Christian Basti, Guwahati",91.77739722,26.15735,"Chinese, Thai",750,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,304 +2100870,The Woking Mama,1,Guwahati,"4th Floor, Dona Planet Multiplex Mall, D. Neog Path, GS Road, Christian Basti, Guwahati",Christian Basti,"Christian Basti, Guwahati",0,0,"Chinese, Thai, Japanese, Asian",1300,Indian Rupees(Rs.),No,No,No,No,3,4.4,Green,Very Good,129 +2100861,Underdoggs Sports Bar & Grill,1,Guwahati,"1st Floor, Central Mall, G.S. Road, Sree Nagar, Christian Basti, Guwahati",Christian Basti,"Christian Basti, Guwahati",0,0,"North Indian, Continental",1650,Indian Rupees(Rs.),No,No,No,No,4,4.4,Green,Very Good,222 +18381932,The Zouq : Resto-Cafe,1,Guwahati,"1st Floor, Royal Orchard, House 1, By Lane 2, Near Arohan and Passport Office, Dispur, Guwahati",Dispur,"Dispur, Guwahati",0,0,"Cafe, North Indian, Italian",500,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,124 +18397909,BrewBakes,1,Guwahati,"Near Six Mile Flyover, above Domino's Pizza, Six Mile, Guwahati G.S. Road",Six Mile,"Six Mile, Guwahati",91.806493,26.13298761,"Cafe, Continental, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,28 +2100702,Barbeque Nation,1,Guwahati,"2nd Floor, Adityam Building, Ulubari, Guwahati",Ulubari,"Ulubari, Guwahati",91.759857,26.172119,North Indian,1500,Indian Rupees(Rs.),No,No,No,No,4,4.9,Dark Green,Excellent,774 +2100101,Yo! China,1,Guwahati,"1st Floor, Adityam Building,Borthakur Mall Road, Ulubari, Guwahati",Ulubari,"Ulubari, Guwahati",91.75816667,26.171,Chinese,800,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,327 +2100322,4 Seasons,1,Guwahati,"Opposite Institute of Social Science, Bhuban Road, Uzan Bazaar, Guwahati",Uzan Bazaar,"Uzan Bazaar, Guwahati",91.75316667,26.19166667,"Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,142 +2100784,11th Avenue Cafe Bistro,1,Guwahati,"Opposite Assam State Museum, Dighalipukhuri, Tayabullah Road, Uzan Bazaar, Guwahati",Uzan Bazaar,"Uzan Bazaar, Guwahati",91.75231431,26.18600148,"Cafe, American, Italian, Continental",400,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,377 +2100849,Caf Riverrun,1,Guwahati,"47, Mahatma Gandhi Road, Uzan Bazaar, FabIndia Building, Guwahati ",Uzan Bazaar,"Uzan Bazaar, Guwahati",91.75386279,26.19376437,"Continental, Juices, Cafe, Desserts, Salad, Italian",500,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,99 +18480196,Fat Belly,1,Guwahati,"Opposite Rabindra Bhawan, GNB Road, Ambari, Dighalipukhuri East, Uzan Bazaar, Guwahati",Uzan Bazaar,"Uzan Bazaar, Guwahati",91.75222128,26.18571587,"Asian, Chinese, Tibetan",500,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,25 +2100719,The Corner Cafe,1,Guwahati,"Navin Bhawan, Lamb Road, Ambari, Uzan Bazaar Guwahti, Uzan Bazaar, Guwahati",Uzan Bazaar,"Uzan Bazaar, Guwahati",0,0,"Cafe, Continental",850,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,179 +2100676,Chung Fa,1,Guwahati,"Zoo Narengi Road, Geetanagar, Zoo Tiniali Area, Guwahati, Zoo Tiniali, Guwahati",Zoo Tiniali,"Zoo Tiniali, Guwahati",91.783,26.17266667,Chinese,600,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,369 +2100074,Shanghai Salsa,1,Guwahati,"37, 1st Floor, Hatigarh Chariali, Mother Teresa Road, Zoo Tiniali Area, Zoo Tiniali, Guwahati",Zoo Tiniali,"Zoo Tiniali, Guwahati",91.78535556,26.17221667,"Continental, Fast Food, Chinese, Charcoal Grill, Mexican",1000,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,256 +18224282,Three Guys,1,Guwahati,"R.G.B Road, Zonali, Near Jonali Bus Stop, Zoo Tiniali, Guwahati",Zoo Tiniali,"Zoo Tiniali, Guwahati",91.77896976,26.16767011,"Continental, North Indian, Chinese, Arabian, Thai",700,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,233 +2100776,Ziya,1,Guwahati,"Opposite 5th By-Lane, Mother Teresa Road, Zoo Road, Zoo Tiniali, Guwahati",Zoo Tiniali,"Zoo Tiniali, Guwahati",0,0,"Continental, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,96 +90744,Exotica,1,Hyderabad,"Opposite Audi Showroom, 5th Floor, 12th Square Building, Road 12, Banjara Hills, Hyderabad","12th Square Building, Banjara Hills","12th Square Building, Banjara Hills, Hyderabad",78.43722526,17.41037066,"Mughlai, North Indian, Chinese",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.3,Green,Very Good,3374 +18452864,AB's - Absolute Barbecues,1,Hyderabad,"No. 8-2-618/10-11,2nd Floor, Krishe Amethyst, Road No.1, Banjara Hills, Hyderabad",Banjara Hills,"Banjara Hills, Hyderabad",78.44965395,17.41233045,"European, Mediterranean, North Indian",1500,Indian Rupees(Rs.),No,No,No,No,3,4.9,Dark Green,Excellent,200 +97824,Chili's,1,Hyderabad,"Flat 48, Ground Floor, Opposite Vengal Rao Park, Road 1, Banjara Hills, Hyderabad",Banjara Hills,"Banjara Hills, Hyderabad",78.44957784,17.42281912,"Mexican, American, Tex-Mex, Burger",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.7,Dark Green,Excellent,1932 +18443506,The Fisherman's Wharf,1,Hyderabad,"304, Puppalaguda, Financial District,ISB - Outer Ring Road, Gachibowli, Hyderabad",Gachibowli,"Gachibowli, Hyderabad",78.3296446,17.4110278,"Seafood, Continental, Goan, Asian, Andhra",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,144 +90847,Chili's,1,Hyderabad,"F 48, 1st Floor, Inorbit Mall, Hitech City, Hyderabad",Hitech City,"Hitech City, Hyderabad",78.38674374,17.43380875,"Mexican, American, Tex-Mex, Burger",1800,Indian Rupees(Rs.),No,Yes,No,No,3,4.6,Dark Green,Excellent,2553 +18280329,Pine & Dine,1,Hyderabad,"Plot 73, Jubilee Enclave, Hitech City, Hyderabad",Hitech City,"Hitech City, Hyderabad",78.3754674,17.4558938,"North Indian, South Indian, Chinese",700,Indian Rupees(Rs.),Yes,Yes,No,No,2,4,Green,Very Good,682 +96626,Jonathan's Kitchen - Holiday Inn Express & Suites,1,Hyderabad,"Holiday Inn Express & Suites, Gachibowli, Hyderabad",Holiday Inn Express & Suites,"Holiday Inn Express & Suites, Hyderabad",78.3475536,17.424114,"North Indian, Japanese, Italian",1900,Indian Rupees(Rs.),Yes,No,No,No,3,4.3,Green,Very Good,860 +94286,AB's - Absolute Barbecues,1,Hyderabad,"Plot 483, 4th Floor, Pemmasani Complex, Bajaj Electronics Building, Near Madhapur Police Station, Road 36, Jubilee Hills, Hyderabad",Jubilee Hills,"Jubilee Hills, Hyderabad",78.3978647,17.4382631,"European, Mediterranean, North Indian",1500,Indian Rupees(Rs.),No,No,No,No,3,4.9,Dark Green,Excellent,5434 +96776,Con_u,1,Hyderabad,"479/B, Road 21, Jubilee Hills, Hyderabad",Jubilee Hills,"Jubilee Hills, Hyderabad",78.40832144,17.43166813,"Bakery, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,4.8,Dark Green,Excellent,1023 +18418733,Dock Forty Five,1,Hyderabad,"1067, Road 45, Jubilee Hills, Hyderabad",Jubilee Hills,"Jubilee Hills, Hyderabad",78.40442251,17.42829434,"Continental, Asian",1400,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,79 +18418730,Mocha Bar,1,Hyderabad,"161, Road 13, Jubilee Hills, Hyderabad",Jubilee Hills,"Jubilee Hills, Hyderabad",78.41821343,17.43044843,"North Indian, Continental, Italian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,221 +93766,Olive Bistro,1,Hyderabad,"Road 46, Inside Durgam Cheruvu, Jubilee Hills, Hyderabad",Jubilee Hills,"Jubilee Hills, Hyderabad",78.3926214,17.4295847,"Mediterranean, Italian, European",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,4.4,Green,Very Good,2218 +18356469,Prost Brew Pub,1,Hyderabad,"882/A Road No 45, Jubilee Hills, Hyderabad",Jubilee Hills,"Jubilee Hills, Hyderabad",78.40035025,17.43147653,"Italian, Continental, Chinese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,594 +97503,United Kitchens of India,1,Hyderabad,"Road 45, Jubilee Hills, Hyderabad",Jubilee Hills,"Jubilee Hills, Hyderabad",78.40749498,17.42622756,"North Indian, Andhra, Chettinad, Bengali, Mughlai, Chinese",1100,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,1431 +92577,Heart Cup Coffee,1,Hyderabad,"B 7 & 8, Jubilee Garden, Behind TCS Building, E Park, Kondapur, Hyderabad",Kondapur,"Kondapur, Hyderabad",78.36885475,17.45970973,"Cafe, Continental, North Indian, Chinese",1800,Indian Rupees(Rs.),No,Yes,No,No,3,4.2,Green,Very Good,1859 +18307251,Churrolto,1,Hyderabad,"Ground Floor, Shop 3, Opposite IndusInd Bank, Madhapur Main Road, Madhapur, Hyderabad",Madhapur,"Madhapur, Hyderabad",78.393391,17.440827,"Desserts, Cafe, Mexican",500,Indian Rupees(Rs.),No,No,No,No,2,4.7,Dark Green,Excellent,344 +18313013,The Grand Trunk Road,1,Hyderabad,"16, Image Garden Road, Madhapur, Hyderabad",Madhapur,"Madhapur, Hyderabad",78.38588309,17.45197577,"North Indian, Chinese",1100,Indian Rupees(Rs.),No,Yes,No,No,3,3.9,Yellow,Good,616 +18312984,Sahibs Barbeque by Ohris,1,Hyderabad,"First Floor, Shilparamam Complex, Opposite Cyber Tower, Hitech City, Hyderabad",Ohri' Hitech City,"Ohri' Hitech City, Hyderabad",78.37934721,17.45085056,"Hyderabadi, Awadhi",1400,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,571 +1401756,KYRO,1,Indore,"Fortune Aura Rooftop, 1, Gurmeet Nagar, Bhawar Kuan Main Road, Bhawar Kuan, Indore",Bhawar Kuan,"Bhawar Kuan, Indore",75.8660587,22.6952067,"North Indian, Chinese, Continental, Mediterranean, Asian",1300,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,238 +1400544,JAL - A Jungle Restaurant,1,Indore,"Behind Pushp Kunj Hospital, Khandwa Road, Bhawar Kuan, Indore",Bhawar Kuan,"Bhawar Kuan, Indore",75.88199135,22.65184685,"North Indian, Chinese",850,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,100 +18254231,Oye24,1,Indore,"HIG-LIG, Indore",HIG-LIG,"HIG-LIG, Indore",75.86669887,22.75185706,"North Indian, Chinese, South Indian",250,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,152 +1402314,Hobnob Gourmet Cafbar,1,Indore,"Infiniti Hotel, 1C/CA, Scheme 94, Vijay Nagar, Indore","Infiniti Hotel, Vijay Nagar","Infiniti Hotel, Vijay Nagar, Indore",75.90336453,22.75365871,"Italian, Continental",1950,Indian Rupees(Rs.),No,No,No,No,4,4.1,Green,Very Good,37 +1400466,Mangosteen Cafe,1,Indore,"4/5, 5th Floor, Pushpratna Solitaire, New Palasia, Indore",New Palasia,"New Palasia, Indore",75.8841666,22.7270206,"Cafe, Fast Food, Italian, Mexican",700,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,430 +1401934,Mama Loca,1,Indore,"G-1, Princess Centre, 6/3, New Palasia, Indore",New Palasia,"New Palasia, Indore",75.884212,22.7281631,"Greek, Lebanese",1000,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,304 +1401548,Vidorra,1,Indore,"1001, Rooftop, Shekhar Central, Palasia Square, New Palasia, Indore",New Palasia,"New Palasia, Indore",75.8869592,22.722634,"North Indian, Chinese",1200,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,404 +1400460,Cafe Palette,1,Indore,"136, Saket, Old Palasia, Indore",Old Palasia,"Old Palasia, Indore",75.8984969,22.7257475,"Cafe, Lebanese, Italian",800,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,214 +1400056,Nafees Restaurant,1,Indore,"30-B, Apollo Avenue, Old Palasia, Indore",Old Palasia,"Old Palasia, Indore",75.8876482,22.7258351,"North Indian, Mughlai",850,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,496 +1400169,The Creative Kitchen - Radisson Blu Hotel,1,Indore,"Radisson Blu Hotel, 12, Scheme 94C, Ring Road, Vijay Nagar, Indore","Radisson Blu Hotel, Vijay Nagar","Radisson Blu Hotel, Vijay Nagar, Indore",75.90284687,22.75003967,"North Indian, Continental, Mexican, Italian",2000,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,209 +1400186,Square - Sayaji Hotel,1,Indore,"Sayaji Hotel, H-1, Scheme 54, Vijay Nagar, Indore","Sayaji Hotel, Vijay Nagar","Sayaji Hotel, Vijay Nagar, Indore",75.88949014,22.75123407,"North Indian, Chinese, Italian",1500,Indian Rupees(Rs.),No,No,No,No,4,4.3,Green,Very Good,334 +1402335,Freito,1,Indore,"343-344, Rooftop, Scheme 54, Vijay Nagar, Indore",Vijay Nagar,"Vijay Nagar, Indore",75.8934001,22.7480596,"Mexican, Italian",650,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,26 +1400555,Cafe Terazza,1,Indore,"10th Floor, Airen Heights, Opposite C 21 Mall, Vijay Nagar, Indore",Vijay Nagar,"Vijay Nagar, Indore",75.89247074,22.74504922,"Cafe, Italian, Mexican, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,502 +1401948,Cafe Yolo,1,Indore,"65, Scheme 78-II, Opposite Prestige College, Vijay Nagar, Indore",Vijay Nagar,"Vijay Nagar, Indore",75.88636234,22.76159306,"Cafe, Fast Food",650,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,69 +18395137,Just My Bakes,1,Indore,"5-B/F, Scheme 74C, Vijay Nagar, Indore",Vijay Nagar,"Vijay Nagar, Indore",75.892574,22.7600723,"Cafe, Bakery",500,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,69 +1400121,10 Downing Street,1,Indore,"Second Floor, Malhar Mega Mall, AB Road, Scheme 54, Vijay Nagar, Indore",Vijay Nagar,"Vijay Nagar, Indore",75.8943769,22.744648,"North Indian, Chinese",1500,Indian Rupees(Rs.),No,No,No,No,4,4,Green,Very Good,413 +1402028,Cakesmith's Alley,1,Indore,"Shop 8, Scheme 78, Near Prestige College UG Campus, Vijay Nagar, Indore",Vijay Nagar,"Vijay Nagar, Indore",75.8875215,22.7612256,"Bakery, Cafe, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,87 +1401857,The Yellow Chilli,1,Indore,"Block B-3, Dhan Trident, Near Metro Tower, PU-4, Scheme 54, Vijay Nagar, Indore",Vijay Nagar,"Vijay Nagar, Indore",75.8974292,22.7538385,"North Indian, Mughlai, Seafood",1100,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,181 +1402089,Waffle House,1,Indore,"Shop 301, Satyaraj Building, Opposite Malhar Mall, A.B Road, Vijay Nagar, Indore",Vijay Nagar,"Vijay Nagar, Indore",75.8931063,22.745536,"Cafe, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,171 +1402050,Mocha,1,Indore,"G-1 & 2, Prakrati Corporate Building, Race Course Area, YN Road, Indore",YN Road,"YN Road, Indore",75.8747647,22.7322253,"Cafe, Continental, Italian, Street Food",800,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,341 +101212,Tapri Central,1,Jaipur,"B4 E, 3rd Floor, Surana Jewellers, Opposite Central Park, C Scheme, Jaipur",C Scheme,"C Scheme, Jaipur",75.81075322,26.90518991,"Cafe, Fast Food, Street Food",750,Indian Rupees(Rs.),No,Yes,No,No,2,4.7,Dark Green,Excellent,1469 +101834,Blackout,1,Jaipur,"Hotel Golden Oak, 9th Floor, Ahinsa Circle, Landmark Building, C Scheme, Jaipur",C Scheme,"C Scheme, Jaipur",75.8057035,26.9141424,"North Indian, European, Continental, Finger Food",1650,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,676 +101884,Mamu's Infusion,1,Jaipur,"101, D-46-B,First Floor, Mangalam Ambition Tower, Subhash Marg, Agresen Circle, C Scheme, Jaipur",C Scheme,"C Scheme, Jaipur",75.8031391,26.91348344,"Italian, Chinese, Mexican, Thai, North Indian",1400,Indian Rupees(Rs.),No,Yes,No,No,3,4,Green,Very Good,582 +102813,Nibs Cafe,1,Jaipur,"B-16 Durgadas Colony, Next to MGF Mall, Bhawani Singh Road, C Scheme, Jaipur",C Scheme,"C Scheme, Jaipur",75.7942573,26.9023283,"Cafe, Italian, Continental",750,Indian Rupees(Rs.),No,Yes,No,No,2,4.4,Green,Very Good,389 +101259,On The House,1,Jaipur,"E 145, Ramesh Marg, Behind Talwalkars, C Scheme, Jaipur",C Scheme,"C Scheme, Jaipur",75.7945919,26.9052866,"Italian, Continental, Mexican, Cafe, Bakery",1300,Indian Rupees(Rs.),No,Yes,No,No,3,4.4,Green,Very Good,843 +103065,WTF,1,Jaipur,"301, Man Upasna Mall, Chomu House, C Scheme, Jaipur",C Scheme,"C Scheme, Jaipur",75.797282,26.9119271,"Continental, Italian, North Indian, Lebanese, Thai",1000,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,212 +100080,Chokhi Dhani,1,Jaipur,"Chokhi Dhani Village Resort, 12 Mile, Tonk Road, Jaipur","Chokhi Dhani Village Resort, Tonk Road","Chokhi Dhani Village Resort, Tonk Road, Jaipur",75.837333,26.766536,Rajasthani,1600,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,1478 +103147,Meraaki Kitchen,1,Jaipur,"27, Madrampura, Civil Lines Metro Station, Opposite To Pillar 88, Civil Lines, Jaipur",Civil Lines,"Civil Lines, Jaipur",75.78301314,26.91026177,"Modern Indian, Asian",1500,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,67 +101311,Taruveda Bistro,1,Jaipur,"1st Floor, Sunraj Villa, 2 Mysore House, Jacob Road, Civil Lines, Jaipur",Civil Lines,"Civil Lines, Jaipur",75.7890337,26.91137752,"Cafe, Italian, Japanese, Continental",1000,Indian Rupees(Rs.),No,Yes,No,No,3,4.2,Green,Very Good,633 +100305,The Forresta Kitchen & Bar,1,Jaipur,"Devraj Niwas, Near Moti Mahal Cinema, Khasa Kothi Crossing, Gopalbari, Jaipur","Devraj Niwas, Bani Park","Devraj Niwas, Bani Park, Jaipur",75.7936039,26.9214108,"Continental, Mexican, Beverages, Desserts, North Indian, Chinese, Rajasthani",1800,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,916 +102215,Monarch Restaurant - Holiday Inn Jaipur City Centre,1,Jaipur,"Holiday Inn Jaipur City Centre, Commercial Plot 1, Sardar Patel Road, Bais Godam, Jaipur","Holiday Inn Jaipur City Centre, Bais Godam","Holiday Inn Jaipur City Centre, Bais Godam, Jaipur",75.7930067,26.9029402,"North Indian, Chinese, Continental, Rajasthani",2300,Indian Rupees(Rs.),No,No,No,No,4,4.5,Dark Green,Excellent,420 +102216,Chao Chinese Bistro - Holiday Inn Jaipur City Centre,1,Jaipur,"Holiday Inn Jaipur City Centre, Commercial Plot 1, Sardar Patel Road, Bais Godam, Jaipur","Holiday Inn Jaipur City Centre, Bais Godam","Holiday Inn Jaipur City Centre, Bais Godam, Jaipur",75.7929342,26.9029076,"Chinese, Asian",2500,Indian Rupees(Rs.),No,No,No,No,4,4.3,Green,Very Good,308 +18209498,Zolocrust - Hotel Clarks Amer,1,Jaipur,"Hotel Clarks Amer, Jawaharlal Nehru Marg, Near Malviya Nagar, Malviya Nagar, Jaipur","Hotel Clarks Amer, Malviya Nagar","Hotel Clarks Amer, Malviya Nagar, Jaipur",75.8023,26.84615556,"Italian, Bakery, Continental",2000,Indian Rupees(Rs.),No,Yes,No,No,4,4.9,Dark Green,Excellent,322 +103019,Mutual's,1,Jaipur,"1, Awadhpuri, Near Kailash Mall, Lal Kothi, Jaipur Lal Kothi",Lal Kothi,"Lal Kothi, Jaipur",75.80068856,26.8884204,"Cafe, Mexican, Italian, North Indian, Fast Food",650,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,198 +103090,O2- The Plant Cafe,1,Jaipur,"C 29, 4th Floor, Pankaj Singhvi Marg, Lal Kothi, Jaipur",Lal Kothi,"Lal Kothi, Jaipur",75.80208298,26.89119117,Continental,700,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,148 +102531,Cafe LazyMojo,1,Jaipur,"H 1, Lal Bahadur Nagar, S.L Marg, Malviya Nagar, Jaipur",Malviya Nagar,"Malviya Nagar, Jaipur",75.80051154,26.84959558,"Cafe, Mexican, Italian, Continental",800,Indian Rupees(Rs.),No,Yes,No,No,2,4.3,Green,Very Good,798 +100306,Replay,1,Jaipur,"SB 57, 5th Floor, Ridhi Tower, Opposite SMS Stadium, Tonk Road, Jaipur",Tonk Road,"Tonk Road, Jaipur",75.80689587,26.8923125,"North Indian, Continental, Chinese, Italian, Mexican",1500,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,1121 +18454586,Sky Beach,1,Jaipur,"328-329, Above Watch Factory, Queens Road, Vaishali Nagar, Jaipur",Vaishali Nagar,"Vaishali Nagar, Jaipur",75.75289118,26.91398711,"North Indian, Continental, Chinese, Mexican, Italian, Desserts",1000,Indian Rupees(Rs.),No,No,No,No,3,2.6,Orange,Average,46 +102504,Decked Up By Garden Cafe,1,Jaipur,"320, Queens Road, Opposite Jharkhand Mahadev Temple, Vaishali Nagar, Jaipur",Vaishali Nagar,"Vaishali Nagar, Jaipur",75.7528205,26.9137256,"Cafe, Fast Food, North Indian",1200,Indian Rupees(Rs.),No,Yes,No,No,3,3.9,Yellow,Good,310 +102867,Calzone- Dine & Rooftop Lounge,1,Jaipur,"Natani Tower, R-6-B, 3rd Floor, Sector 1, Vidhyadhar Nagar, Jaipur",Vidhyadhar Nagar,"Vidhyadhar Nagar, Jaipur",75.776649,26.9564308,"Continental, Mexican, North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,112 +2300061,Hucka,1,Kanpur,"3rd Floor, SGM Plaza, Arya Nagar, Kanpur",Arya Nagar,"Arya Nagar, Kanpur",80.32070833,26.48367222,"Chinese, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,148 +2300483,The Zaffran,1,Kanpur,"Ratan Zone, Coca-Cola Crossing, Ashok Nagar, Kanpur",Ashok Nagar,"Ashok Nagar, Kanpur",80.31356357,26.47161686,"North Indian, Continental, Asian",800,Indian Rupees(Rs.),No,No,No,No,3,3.3,Orange,Average,51 +2300065,Gyan Vaishnav,1,Kanpur,"Gumti 5,Kaushal Puri, Ashok Nagar, Kanpur",Ashok Nagar,"Ashok Nagar, Kanpur",80.31634444,26.46900278,North Indian,400,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,97 +18377936,Liquid,1,Kanpur,"The Terrace, Ratan Zone, Coca-Cola Crossing, Ashok Nagar, Kanpur",Ashok Nagar,"Ashok Nagar, Kanpur",80.31345762,26.47152862,"Finger Food, North Indian, Continental, Italian, Mediterranean",1000,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,24 +2300188,Royal Dine - Hotel Royal Cliff,1,Kanpur,"Hotel Royal Cliff, 113 / 72, Near Motijheel Garden, Swaroop Nagar, Kanpur",Hotel Royal Cliff,"Hotel Royal Cliff, Kanpur",80.31504167,26.47910833,"North Indian, Chinese",1500,Indian Rupees(Rs.),No,No,No,No,4,4,Green,Very Good,54 +18407105,Urban Crave Express,1,Kanpur,"Shop No-8, New Shopping Complex, IIT Kanpur, Kanpur",IIT Kanpur,"IIT Kanpur, Kanpur",0,0,"Cafe, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,43 +2300497,Atmosphere Grill Cafe Sheesha,1,Kanpur,"8th Floor, J.S. Tower, 16/106 - Mall Road, Kanpur, Mall Road, Kanpur",Mall Road,"Mall Road, Kanpur",80.35400223,26.47200132,"Indian, Chinese, Continental",0,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,34 +2300183,Mr Brown,1,Kanpur,"16/12, Phoolbagh, Mall Road, Kanpur",Mall Road,"Mall Road, Kanpur",0,0,"Bakery, Desserts, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,97 +2300476,Dunkin Donuts,1,Kanpur,"Third Floor, Plot 1 & 1A, Z Square Mall, Mall Road, Kanpur",Mall Road,"Mall Road, Kanpur",80.352677,26.473698,"Desserts, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,87 +2300018,Little Chef,1,Kanpur,"15/198- A, Near Civil Court, Civil Lines, Near, Mall Road, Kanpur",Mall Road,"Mall Road, Kanpur",80.351569,26.47775,"North Indian, Fast Food",1000,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,158 +18312106,UrbanCrave,1,Kanpur,"14/125, The Mall, Mall Road, Colonelganj, Parade, Kanpur",Parade,"Parade, Kanpur",80.34279578,26.47498638,"Cafe, Continental, Desserts, Ice Cream, Italian, Beverages",0,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,127 +2300042,Chin Mi,1,Kanpur,"Rave 3, Plot 11, Block 6 Parwati Bagla Road, Tilak Nagar, Kanpur","Rave 3, Tilak Nagar","Rave 3, Tilak Nagar, Kanpur",80.32779722,26.49210556,Chinese,1500,Indian Rupees(Rs.),No,No,No,No,4,3.9,Yellow,Good,86 +2300048,Tadka,1,Kanpur,"117/K/13, Rave Moti, Gutaiya, Kanpur","Rave Moti, Kakadeo","Rave Moti, Kakadeo, Kanpur",80.299775,26.48154722,North Indian,1000,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,97 +2300058,Dhuaan,1,Kanpur,"Plot 58, Status Club, Cantonment Area, Tagore Road, Kanpur","Status Club, Kanpur Cantonment","Status Club, Kanpur Cantonment, Kanpur",80.372929,26.463504,"North Indian, Mexican, Italian",1500,Indian Rupees(Rs.),No,No,No,No,4,4.3,Green,Very Good,155 +2300162,Upper Crust,1,Kanpur,"112/368-F, Swaroop Nagar, Kanpur",Swaroop Nagar,"Swaroop Nagar, Kanpur",80.32093889,26.48241944,"Bakery, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,49 +2300003,Anaicha's Food Joint,1,Kanpur,"113/187, Swaroop Nagar, Kanpur",Swaroop Nagar,"Swaroop Nagar, Kanpur",80.31562778,26.48258056,"Chinese, North Indian, Continental",850,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,106 +2300176,Aromas,1,Kanpur,"7/135, Opposite Indian Overses Bank, Swaroop Nagar, Kanpur",Swaroop Nagar,"Swaroop Nagar, Kanpur",80.31783333,26.48304167,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,171 +2300187,Waterside - The Landmark Hotel,1,Kanpur,"The Landmark Hotel, Landmark Towers, 10, Near Naveen Market, Mall Road, Kanpur","The Landmark Hotel, Mall Road","The Landmark Hotel, Mall Road, Kanpur",80.3481,26.47413333,"North Indian, Chinese",3000,Indian Rupees(Rs.),No,No,No,No,4,3.9,Yellow,Good,113 +2300009,Verandah,1,Kanpur,"Third Floor, 7/17, Parvati Bagla Road, Tilak Nagar, Kanpur",Tilak Nagar,"Tilak Nagar, Kanpur",80.31865556,26.49095,"Chinese, Italian, Fast Food",1500,Indian Rupees(Rs.),No,No,No,No,4,3.7,Yellow,Good,160 +18391601,Barbeque Nation,1,Kanpur,"16/113, 3rd Floor, Z Square Mall, MG Marg, Mall Road, Kanpur","Z Square Mall, Mall Road","Z Square Mall, Mall Road, Kanpur",80.35,26.47,"North Indian, Mughlai, Lebanese, Arabian, Mediterranean",1400,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,41 +900682,Nawras Seafood Restaurant,1,Kochi,"Near Pullepadi Bus stop, Chittoor Road, Kochi",Chittoor Road,"Chittoor Road, Kochi",76.28500095,9.979362921,Seafood,1000,Indian Rupees(Rs.),No,No,No,No,3,4.6,Dark Green,Excellent,289 +95361,Ifthar,1,Kochi,"KK Building, Opposite Pittappillil, Edappally, Kochi",Edappally,"Edappally, Kochi",76.31001944,10.02804722,Kerala,350,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,281 +95421,Dhe Puttu,1,Kochi,"NH 47, Edapally Bypass, Edappally, Kochi",Edappally,"Edappally, Kochi",76.31063056,10.02068333,Kerala,600,Indian Rupees(Rs.),No,Yes,No,No,2,4.4,Green,Very Good,662 +95256,Kashi Art Cafe,1,Kochi,"Burgher Street, Fort Kochi, Kochi",Fort Kochi,"Fort Kochi, Kochi",76.24298056,9.966783333,"European, Cafe",600,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,659 +95286,Grand Hotel Restaurant,1,Kochi,"Grand Hotel, MG Road, Kochi","Grand Hotel, MG Road","Grand Hotel, MG Road, Kochi",76.28544722,9.970716667,"North Indian, Kerala, Chinese, Continental",1000,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,394 +900969,Barbeque Nation,1,Kochi,"6th Floor, Imperial Trade Centre, Mahatma Gandhi Road, Kacheripady, Kochi",Kacheripady,"Kacheripady, Kochi",76.28326792,9.982833886,"European, North Indian, Mediterranean, American",1500,Indian Rupees(Rs.),No,No,No,No,3,4.5,Dark Green,Excellent,213 +95333,Chiyang,1,Kochi,"Mariyambika Building, Madhava Pharmacy Junction, Kacheripady, Kochi",Kacheripady,"Kacheripady, Kochi",76.28112778,9.985697222,"Chinese, Continental",800,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,277 +900547,Slice of Spice,1,Kochi,"Market Road, Opposite Saritha Savitha Theatre, Kacheripady, Kochi",Kacheripady,"Kacheripady, Kochi",76.27699893,9.985496938,"Fast Food, Biryani",400,Indian Rupees(Rs.),No,Yes,No,No,1,4,Green,Very Good,246 +901089,Mustake Multicuisine Restaurant,1,Kochi,"Near SEZ, Noel Focuz, Seaport-Airport Road, Kakkanad, Kochi",Kakkanad,"Kakkanad, Kochi",76.34951615,10.00070594,"Chinese, Thai, North Indian, South Indian",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.7,Yellow,Good,145 +901035,Palaaram,1,Kochi,"Vallathol Junction, Thrikkakara, Kakkanad, Kochi",Kakkanad,"Kakkanad, Kochi",76.33695804,10.03557278,"Kerala, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,105 +900561,Tonico Cafe,1,Kochi,"Opposite CSEZ, Seaport Airport Road, Kakkanad, Kochi",Kakkanad,"Kakkanad, Kochi",76.34539722,10.00688056,Cafe,400,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,406 +900524,Cafe 17,1,Kochi,"Ground Floor, Unisquare Building, Opposite Sreedhareeyam Eye Hospital, Kathrikadavu, Kaloor, Kochi",Kaloor,"Kaloor, Kochi",76.29521111,9.988483333,"Cafe, Continental, Italian",700,Indian Rupees(Rs.),No,Yes,No,No,2,4.4,Green,Very Good,333 +900800,ChaiCofi,1,Kochi,"Arammal Tower, Near Express Garden, KK Road, Kaloor, Kochi",Kaloor,"Kaloor, Kochi",76.29313611,9.991702778,"Cafe, Continental, Italian",800,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,160 +95304,Bloomsbury's Boutique Cafe and Artisan Bakery,1,Kochi,"S 74, Level 2, LuLu Mall, NH-17, Entrance Road, Edapally Junction, Edappally, Kochi","LuLu Mall, Edappally","LuLu Mall, Edappally, Kochi",76.30805278,10.02701389,"Cafe, Bakery, Desserts",650,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,482 +900533,Paragon,1,Kochi,"F 82-83, Level 1, LuLu Mall, NH-17, Entrance Road, Edapally Junction, Edappally, Kochi","LuLu Mall, Edappally","LuLu Mall, Edappally, Kochi",76.30825833,10.02736389,"Kerala, South Indian, Continental, North Indian, Seafood, Chinese",900,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,722 +901004,Aangan - Downtown Multicuisine Restaurant,1,Kochi,"32/1180C, Civil Lane Road, Palarivattom, Kochi",Palarivattom,"Palarivattom, Kochi",76.30758885,10.00306395,"Chinese, Seafood, North Indian, Biryani",650,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,146 +900111,Ali Baba & 41 Dishes,1,Kochi,"Main Avenue, Opposite South Indian Bank, Panampilly Nagar, Kochi",Panampilly Nagar,"Panampilly Nagar, Kochi",76.29610556,9.959777778,"Kerala, South Indian, Chinese, Biryani",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,348 +95331,Cocoa Tree,1,Kochi,"1st Floor, Above ICICI Bank, Next to Avenue Centre, Panampilly Nagar, Kochi",Panampilly Nagar,"Panampilly Nagar, Kochi",76.29678333,9.957144444,"Italian, Seafood, Mediterranean, Desserts, Cafe",1000,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,658 +900032,French Toast,1,Kochi,"8th Cross Street B, Ambikapuram Road, Panampilly Nagar, Panampilly Nagar, Kochi",Panampilly Nagar,"Panampilly Nagar, Kochi",76.29393613,9.960845813,"Continental, Cafe, Desserts, Bakery",700,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,312 +900282,Thakkaaram,1,Kochi,"Opposite Gold Souk Grande Mall, Vyttila, Kochi",Vyttila,"Vyttila, Kochi",76.31736111,9.979186111,"Kerala, South Indian",600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,361 +18217475,Asia Kitchen by Mainland China,1,Kolkata,"4th Floor, Acropolis Mall, 1858/1, Rajdanga Main Road, Kasba, Kolkata","Acropolis Mall, Kasba ","Acropolis Mall, Kasba , Kolkata",88.39329377,22.51468755,"Asian, Chinese",1400,Indian Rupees(Rs.),No,Yes,No,No,3,4.6,Dark Green,Excellent,945 +18249144,Hoppipola,1,Kolkata,"4th Floor, Acropolis Mall, 1858/1, Rajdanga Main Road, Kasba, Kolkata","Acropolis Mall, Kasba ","Acropolis Mall, Kasba , Kolkata",88.3933102,22.51458534,"Italian, Mexican, American, Mediterranean",1200,Indian Rupees(Rs.),No,Yes,No,No,3,4.2,Green,Very Good,1103 +18017612,Spice Kraft,1,Kolkata,"54/1/2A, Hazra Road, Ballygunge Phari, Near Hazra Law College, Ballygunge, Kolkata",Ballygunge,"Ballygunge, Kolkata",88.3644527,22.5264613,"Continental, Middle Eastern, Asian",1200,Indian Rupees(Rs.),No,No,No,No,3,4.8,Dark Green,Excellent,1424 +18377112,Nawwarah,1,Kolkata,"48A, Syed Amir Ali Avenue, Ballygunge, Kolkata",Ballygunge,"Ballygunge, Kolkata",88.364878,22.538731,"Chinese, Cafe, North Indian, Desserts",1000,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,326 +20002,6 Ballygunge Place,1,Kolkata,"6, Ballygunge Place, Ballygunge, Kolkata",Ballygunge,"Ballygunge, Kolkata",88.36862817,22.52789315,Bengali,1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.4,Green,Very Good,1778 +18343731,Mumbai Local,1,Kolkata,"19, Ballygunge Park Road, Near Quest Mall, Ballygunge, Kolkata",Ballygunge,"Ballygunge, Kolkata",88.3662166,22.5336623,"North Indian, Chinese, Street Food",1200,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,704 +25664,Gabbar's Bar & Kitchen,1,Kolkata,"11/1, Ho Chi Minh Sarani, Camac Street Area, Kolkata",Camac Street Area,"Camac Street Area, Kolkata",88.3506798,22.5471855,"North Indian, Chinese, Mexican, Italian",1400,Indian Rupees(Rs.),Yes,No,No,No,3,4.4,Green,Very Good,1484 +25587,TGI Friday's,1,Kolkata,"Forum Mall, 10/3, Elgin Road, Elgin, Kolkata",Elgin,"Elgin, Kolkata",88.34984265,22.53795995,"Tex-Mex, American",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,911 +24530,Santa's Fantasea,1,Kolkata,"9, Ballygunge Terrace, Near Anjali Jewellers, Golpark, Kolkata",Golpark,"Golpark, Kolkata",88.36783022,22.51508182,"Seafood, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,2584 +20747,India Restaurant,1,Kolkata,"Ground Floor, 1st Floor, 2nd Floor, 34, Karl Marx Sarani, Kidderpore, Kolkata",Kidderpore,"Kidderpore, Kolkata",88.3223365,22.5389989,"Biryani, North Indian, Chinese, Mughlai",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.6,Dark Green,Excellent,1219 +21220,Flame & Grill,1,Kolkata,"4th Floor, Mani Square Mall, 164/1, E.M. Bypass, Kankurgachi, Kolkata","Mani Square Mall, Kankurgachi","Mani Square Mall, Kankurgachi, Kolkata",88.400581,22.5778208,"North Indian, Continental",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,1064 +25570,Barbeque Nation,1,Kolkata,"24, 1st Floor, Park Center Building, Park Street Area, Kolkata",Park Street Area,"Park Street Area, Kolkata",88.35412715,22.55108374,"North Indian, Chinese",1600,Indian Rupees(Rs.),No,No,No,No,3,4.9,Dark Green,Excellent,1753 +20350,Mocambo,1,Kolkata,"25B Park Street, Park Street Area, Kolkata",Park Street Area,"Park Street Area, Kolkata",88.3532734,22.5532273,"Continental, Italian, North Indian",1050,Indian Rupees(Rs.),No,Yes,No,No,3,3.5,Yellow,Good,4464 +20870,BarBQ,1,Kolkata,"43-47-55, Park Street Area, Kolkata",Park Street Area,"Park Street Area, Kolkata",88.35231029,22.55299638,"Chinese, North Indian",900,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,5288 +20404,Peter Cat,1,Kolkata,"18A, Park Street, Park Street Area, Kolkata",Park Street Area,"Park Street Area, Kolkata",88.352885,22.5526719,"Continental, North Indian",1000,Indian Rupees(Rs.),No,Yes,No,No,3,4.3,Green,Very Good,7574 +24286,The Irish House,1,Kolkata,"5th Floor, Quest Mall, 33, Syed Ali Amir Avenue, Ballygunge, Kolkata","Quest Mall, Ballygunge","Quest Mall, Ballygunge, Kolkata",88.36550709,22.53912894,"European, American",1900,Indian Rupees(Rs.),No,No,No,No,3,4.4,Green,Very Good,2224 +20842,Barbeque Nation,1,Kolkata,"K1, RDB Boulevard, Block EP & GP, Sector 5, Salt Lake","Sector 5, Salt Lake","Sector 5, Salt Lake, Kolkata",88.43345214,22.56935843,"North Indian, Chinese",1600,Indian Rupees(Rs.),No,No,No,No,3,4.9,Dark Green,Excellent,5966 +18259462,Ocean Grill,1,Kolkata,"1st Floor, Infinity Benchmark, Near RDB Cinemas, Block GP, Sector 5, Salt Lake","Sector 5, Salt Lake","Sector 5, Salt Lake, Kolkata",88.43318693,22.56936679,"Continental, Seafood, North Indian, Asian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,1040 +24452,Sigree Global Grill,1,Kolkata,"1st Floor, Silver Spring Arcade, EM Bypass, Science City Area, Kolkata","Silver Spring Arcade, Science City Area","Silver Spring Arcade, Science City Area, Kolkata",88.4004673,22.5490998,North Indian,1600,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,1616 +18017615,What's Up,1,Kolkata,"122A, Southern Avenue, Kolkata",Southern Avenue,"Southern Avenue, Kolkata",88.36250436,22.51411859,"Cafe, Chinese, Continental",1000,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,1126 +800468,Grandson of Tunday Kababi,1,Lucknow,"Naaz Cinema Road, Aminabad, Lucknow",Aminabad,"Aminabad, Lucknow",80.92743056,26.84850556,"Mughlai, Lucknowi",300,Indian Rupees(Rs.),No,No,No,No,1,4.9,Dark Green,Excellent,1057 +801675,Frozen Factory,1,Lucknow,"1/99, Near Tata Motors, Viram Khand, Patrkarpuram, Gomti Nagar, Lucknow",Gomti Nagar,"Gomti Nagar, Lucknow",0,0,"Desserts, Ice Cream",200,Indian Rupees(Rs.),No,No,No,No,1,4.5,Dark Green,Excellent,144 +801690,Mocha,1,Lucknow,"CP-1, 2nd Floor, Anand Plaza, Viram Khand-1, Near Patrakarpuram Crossing, Gomti Nagar, Lucknow",Gomti Nagar,"Gomti Nagar, Lucknow",81.0011849,26.8528099,"Cafe, Italian, Continental",800,Indian Rupees(Rs.),No,No,No,No,3,4.6,Dark Green,Excellent,567 +801684,Chemistry Caf,1,Lucknow,"5/599, Vikas Khand, Near Dayal Paradise, Gomti Nagar, Lucknow",Gomti Nagar,"Gomti Nagar, Lucknow",0,0,"Cafe, Continental, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,147 +18296995,Homeys Cafe,1,Lucknow,"2/163, Vivek khand-2, Gomti Nagar Station Road, Gomti Nagar, Lucknow",Gomti Nagar,"Gomti Nagar, Lucknow",80.99,26.86,"Cafe, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,217 +800237,Percussion,1,Lucknow,"2/139, Vijay Khand, Next to Gomti Nagar Police Station, Gomti Nagar, Lucknow",Gomti Nagar,"Gomti Nagar, Lucknow",80.9945959,26.8551778,"Continental, North Indian, Asian",1000,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,514 +800273,The Urban Terrace,1,Lucknow,"Hotel Lineage, C 73, Viraj Khand, Opposite Sahara Hospital, Gomti Nagar, Lucknow",Gomti Nagar,"Gomti Nagar, Lucknow",81.0232496,26.8517588,"North Indian, Continental",1100,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,268 +18375866,Free Spirit,1,Lucknow,"Indira Gandhi Pratishthan-Kathauta Chauraha road, Near Shaheed Path Flyover, Vishesh Khand 2, Gomti Nagar, Lucknow",Gomti Nagar,"Gomti Nagar, Lucknow",81.01515904,26.86744546,"Cafe, Italian",450,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,106 +801170,Spice Caves,1,Lucknow,"Above Samsung TV Showroom, Patrakar Puram, Gomti Nagar, Lucknow",Gomti Nagar,"Gomti Nagar, Lucknow",80.99885715,26.85338395,"North Indian, Chinese, Mughlai",1200,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,691 +801636,The Chocolate Heaven,1,Lucknow,"3/553, Vivek Khand, Opposite Aryans, Gomti Nagar, Lucknow, Uttar Pradesh",Gomti Nagar,"Gomti Nagar, Lucknow",81.00087417,26.85585347,"Cafe, Italian, Desserts",400,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,165 +18385021,The Pebbles Bistro,1,Lucknow,"1/208 A, Vineet Khand, Opposite Jaipuria School, Gomti Nagar, Lucknow",Gomti Nagar,"Gomti Nagar, Lucknow",81.01126765,26.85123157,European,1000,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,80 +801640,Underdoggs Sports Bar & Grill,1,Lucknow,"4th Floor, City Mall, Vipul Khand 4, Gomti Nagar, Lucknow",Gomti Nagar,"Gomti Nagar, Lucknow",0,0,"Mediterranean, Italian, American",1300,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,124 +801269,Vintage Machine,1,Lucknow,"3/11 Patrakar Puram, Gomti Nagar, Lucknow",Gomti Nagar,"Gomti Nagar, Lucknow",81.00043965,26.8536376,"Italian, American, Lebanese",1000,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,887 +801693,Bar Bar,1,Lucknow,"4, Sapru Marg, Hazratganj, Lucknow",Hazratganj,"Hazratganj, Lucknow",0,0,"Cafe, Chinese, Thai, North Indian, Continental",1000,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,79 +800483,Dastarkhwan,1,Lucknow,"U. P. Press Club, China Bazaar Gate Road, Hazratganj, Lucknow",Hazratganj,"Hazratganj, Lucknow",80.93688889,26.85263889,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,2,4.4,Green,Very Good,818 +800891,The Cherry Tree Cafe,1,Lucknow,"11, Habibullah Estate, Hazratganj, Lucknow",Hazratganj,"Hazratganj, Lucknow",80.9415,26.852,"Cafe, Bakery",400,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,288 +800326,Royal Sky,1,Lucknow,"31/37, 1st Floor, Opposite Halwasiya Market, Maqbara Road, Lalbagh, Lucknow",Lalbagh,"Lalbagh, Lucknow",80.94088611,26.85019167,"North Indian, Mughlai, Chinese, Continental",1100,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,762 +801384,L 14 - Renaissance Lucknow Hotel,1,Lucknow,"14th Floor, Renaissance Lucknow Hotel, Vipin Khand, Gomti Nagar, Lucknow",Renaissance Lucknow Hotel,"Renaissance Lucknow Hotel, Lucknow",80.973027,26.852692,"North Indian, Continental, South Indian, Chinese, Thai, Asian",2000,Indian Rupees(Rs.),No,No,No,No,4,4.2,Green,Very Good,149 +800089,Barbeque Nation,1,Lucknow,"3rd Floor, Riverside Mall, Vipin Khand, Gomti Nagar, Lucknow","Riverside Mall, Gomti Nagar","Riverside Mall, Gomti Nagar, Lucknow",80.973185,26.853007,North Indian,1600,Indian Rupees(Rs.),No,No,No,No,4,4.7,Dark Green,Excellent,1069 +801247,Colours by Royal Cafe - Royal Inn,1,Lucknow,"3rd Floor, 9/7 Royal Inn, Opposite Saharaganj Mall, Hazratganj, Lucknow","Royal Inn, Hazratganj","Royal Inn, Hazratganj, Lucknow",80.945099,26.855957,"North Indian, Mughlai, Chinese",1000,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,411 +800576,Cappuccino Blast,1,Lucknow,"12, Mall Avenue, Near, Sadar Bazaar, Lucknow",Sadar Bazaar,"Sadar Bazaar, Lucknow",80.947029,26.834638,"Cafe, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,587 +15239,Basant Restaurant,1,Ludhiana,"Urban Estate, Main Market, Phase 1, Dugri, Ludhiana","A Hotel, Gurdev Nagar","A Hotel, Gurdev Nagar, Ludhiana",75.84273856,30.87398772,"North Indian, Chinese, Fast Food",800,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,93 +18444271,Hawai Adda,1,Ludhiana,"Verka Park, Ferozpur Road, Aggar Nagar, Ludhiana",Aggar Nagar,"Aggar Nagar, Ludhiana",0,0,"North Indian, Chinese, Continental",1500,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,17 +15005,Indian Summer,1,Ludhiana,"SCF 13/14, F Block, BRS Nagar, Ludhiana",BRS Nagar,"BRS Nagar, Ludhiana",75.80489259,30.88722034,"North Indian, Chinese",1400,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,191 +15221,Basant,1,Ludhiana,"Fountain Chowk, Civil Lines, Ludhiana",Civil Lines,"Civil Lines, Ludhiana",75.83981965,30.91405691,"North Indian, Chinese, South Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,109 +15292,Bistro 226,1,Ludhiana,"226, Civil Street, Ghumar Mandi Chowk, Civil Lines, Ludhiana",Civil Lines,"Civil Lines, Ludhiana",75.83284054,30.90556176,"Italian, Continental, North Indian, Cafe",1400,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,217 +15309,Mocha,1,Ludhiana,"27 & 28 F, 1st Floor, Malhar Road, Gurdev Nagar, Ludhiana",Gurdev Nagar,"Gurdev Nagar, Ludhiana",75.82210299,30.89520443,Cafe,800,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,153 +18400368,Pirates Of Grill,1,Ludhiana,"2nd Floor, Sandhu Tower 2, Near Ansal Mall, Gurdev Nagar, Ludhiana",Gurdev Nagar,"Gurdev Nagar, Ludhiana",0,0,"North Indian, Mughlai",1300,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,41 +15132,Bistro Flamme Bois,1,Ludhiana,"16-17, Green Park Avenue, Gurdev Nagar, Ludhiana",Gurdev Nagar,"Gurdev Nagar, Ludhiana",75.83133817,30.89999169,"Italian, Continental, Mexican, Lebanese",1500,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,178 +15705,Kitchen At 95 - Hyatt Regency,1,Ludhiana,"Hyatt Regency, Site 4, Ferozepur Road, Rajguru Nagar, Ludhiana","Hyatt Regency, Rajguru Nagar","Hyatt Regency, Rajguru Nagar, Ludhiana",75.78697577,30.88581363,"Mediterranean, Chinese, Continental",2000,Indian Rupees(Rs.),No,No,No,No,4,4.3,Green,Very Good,87 +15078,Domino's Pizza,1,Ludhiana,"SCF 21, Main Market, Sarabha Nagar, Ludhiana","Main Market, Sarabha Nagar","Main Market, Sarabha Nagar, Ludhiana",75.82219854,30.89285962,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,86 +15104,Nando's,1,Ludhiana,"SCO 35 & 36, Main Market, Sarabha Nagar, Ludhiana","Main Market, Sarabha Nagar","Main Market, Sarabha Nagar, Ludhiana",75.8214948,30.89308145,"Portuguese, African",1200,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,156 +15774,Belfrance Luxury Chocolates,1,Ludhiana,"SCF 32 C Main Market, Sarabha Nagar, Ludhiana","Main Market, Sarabha Nagar","Main Market, Sarabha Nagar, Ludhiana",75.82181666,30.893244,"Cafe, Continental, Italian, Bakery",1100,Indian Rupees(Rs.),No,No,No,No,3,4.4,Green,Very Good,138 +15008,Hot Breads,1,Ludhiana,"SCF 32, Main Market, Sarabha Nagar, Ludhiana","Main Market, Sarabha Nagar","Main Market, Sarabha Nagar, Ludhiana",75.82172044,30.89323422,"Continental, Chinese, Italian, Bakery",800,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,261 +15321,The Yellow Chilli,1,Ludhiana,"SCF 31 C, Main Market, Sarabha Nagar, Ludhiana","Main Market, Sarabha Nagar","Main Market, Sarabha Nagar, Ludhiana",75.82184684,30.89297787,"Mughlai, North Indian, Chinese",1200,Indian Rupees(Rs.),No,No,No,No,3,4.4,Green,Very Good,325 +15368,Spice Cube,1,Ludhiana,"Near Gate 1, Kartar Bhawan, Ferozepur Road, PAU, Ludhiana",PAU,"PAU, Ludhiana",75.80934606,30.89958432,"North Indian, Chinese, Continental",1000,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,116 +15853,Barbeque Nation,1,Ludhiana,"2nd Floor, 2439/1 & 2, Dhanraj Singh Complex, Main Ferozpur Road, Rajguru Nagar, Ludhiana",Rajguru Nagar,"Rajguru Nagar, Ludhiana",75.813112,30.895817,"North Indian, Chinese, Continental",1400,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,80 +15497,Nik Bakers,1,Ludhiana,"SCF 43-44, Kipps Market, Sarabha Nagar, Ludhiana",Sarabha Nagar,"Sarabha Nagar, Ludhiana",75.8212021,30.89338354,"Cafe, Bakery, Desserts",800,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,210 +15091,Aman Chicken,1,Ludhiana,"Jagjit Nagar, Near Railway Crossing, Near Shastri Nagar, Ludhiana",Shastri Nagar,"Shastri Nagar, Ludhiana",75.82961485,30.89018388,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,No,No,No,2,4.6,Dark Green,Excellent,196 +15777,District 6,1,Ludhiana,"4th Floor, Silver Arch Mall, Ferozpur Road, Gurdev Nagar, Ludhiana","Silver Arc Mall, Gurdev Nagar","Silver Arc Mall, Gurdev Nagar, Ludhiana",75.82680825,30.90287228,"European, Chinese",1600,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,53 +15717,The BrewMaster - The Mix Fine Dine,1,Ludhiana,"3rd Floor, Westend Mall, Rajguru Nagar, Ludhiana","Westend Mall, Rajguru Nagar","Westend Mall, Rajguru Nagar, Ludhiana",75.78825854,30.88591491,"North Indian, Continental",1500,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,154 +3100446,#45,1,Mangalore,"Ground Floor, Trinity Commercial Complex, Near Central Railway Station, Attavara Road, Attavar, Mangalore",Attavar,"Attavar, Mangalore",0,0,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,209 +3100159,Crave Desserts & Bakes,1,Mangalore,"Deepa Paradise, Balmatta, Mangalore",Balmatta,"Balmatta, Mangalore",74.85362222,12.87369722,"Desserts, Bakery",200,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,196 +3100010,Diesel Cafe,1,Mangalore,"Ground Floor, Hotel Prestige, Near Collector's Gate, Balmatta, Mangalore",Balmatta,"Balmatta, Mangalore",74.85274444,12.87367778,"American, Italian",900,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,196 +3100145,Froth On Top,1,Mangalore,"Silk House, Balmatta Arya Samaj Road, Balmatta, Mangalore",Balmatta,"Balmatta, Mangalore",74.85158611,12.87353056,"Chinese, Mangalorean",700,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,355 +3100013,Hao Ming,1,Mangalore,"Yenepoya Chambers, Opposite Hotel Prestige, Balmatta, Mangalore",Balmatta,"Balmatta, Mangalore",74.85343056,12.87343056,Chinese,600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,280 +3100143,Kobe Sizzlers,1,Mangalore,"G-1, Parin Tower, Collectors Gate Circle, Balmatta Road, Balmatta, Mangalore",Balmatta,"Balmatta, Mangalore",74.85209855,12.87334761,"Continental, American",1000,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,104 +3100033,Liquid Lounge,1,Mangalore,"KMC Mercara Trunk Road, Near Hotel Woodside, Balmatta, Mangalore",Balmatta,"Balmatta, Mangalore",74.84665556,12.87073611,"Finger Food, Continental, North Indian",800,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,290 +3100153,Maharaja Restaurant,1,Mangalore,"1st Floor, Trade Centre, Near Jyothi Circle, Bunts Hostel Road, Balmatta, Mangalore",Balmatta,"Balmatta, Mangalore",74.84863333,12.87378611,"South Indian, North Indian",700,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,275 +3100142,Giri Manja's,1,Mangalore,"Near Kalikamba Temple, Gopalkrishna Temple Road, Bhavathi, Mangalore Bhavathi",Bhavathi,"Bhavathi, Mangalore",0,0,Seafood,500,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,281 +3100030,Kabab Studio,1,Mangalore,"Goldfinch Hotel, Bunts Hostel Road, Near Jyoti Circle, Balmatta, Mangalore","Goldfinch Hotel, Balmatta","Goldfinch Hotel, Balmatta, Mangalore",74.85006667,12.87582222,"North Indian, Mughlai",1500,Indian Rupees(Rs.),No,No,No,No,4,3.5,Yellow,Good,183 +18237384,Brio Cafe and Grill,1,Mangalore,"Sainik Bhavan, Next to St Aloysius College, Lighthouse Hill, Hampankatta, Mangalore",Hampankatta,"Hampankatta, Mangalore",74.84500254,12.87221736,"Cafe, Continental",500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,84 +3100008,Gajalee Sea Food,1,Mangalore,"Circuit House Compound, Opposite Kadri Police Station, Kadri, Mangalore",Kadri,"Kadri, Mangalore",0,0,"Seafood, North Indian",750,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,257 +3100148,Smoke N Oven,1,Mangalore,"Opposite Vijaya Bank, Bejai Main Road, Bejai, Mangalore",Kadri,"Kadri, Mangalore",0,0,"Pizza, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,127 +3100044,Village Restaurant,1,Mangalore,"Airport Road, Yeyyadi, Kadri, Mangalore",Kadri,"Kadri, Mangalore",74.85946446,12.89897943,"Chinese, Continental, North Indian, Mughlai",1000,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,260 +3100441,Barbeque Nation,1,Mangalore,"3rd Floor, MAK Mall, Kankanady, Mangalore",Kankanady,"Kankanady, Mangalore",0,0,"North Indian, Chinese",1600,Indian Rupees(Rs.),No,No,No,No,4,3.7,Yellow,Good,193 +3100302,Machali,1,Mangalore,"Behind Ocean Pearl, Sharada Vidhyalaya Road, Kodailbail, Mangalore",Kodailbail,"Kodailbail, Mangalore",0,0,Seafood,800,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,245 +3100422,Punjab Da Pind,1,Mangalore,"3rd Floor, Excel Mischief Mall, KS Rao Road, Mangalore, KS Rao Nagar, Mangalore",KS Rao Nagar,"KS Rao Nagar, Mangalore",0,0,"North Indian, Mughlai, Chinese, Mangalorean",1000,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,173 +3100014,Sizzler's Ranch,1,Mangalore,"Nehru Avenue Road, Behind City Corporation, Lalbagh, Mangalore",Lalbagh,"Lalbagh, Mangalore",0,0,Continental,700,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,328 +3100448,Spindrift,1,Mangalore,"5th Floor, Bharath Mall, Lalbagh, Mangalore",Lalbagh,"Lalbagh, Mangalore",0,0,"North Indian, Italian, Finger Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,156 +3100017,Sagar Ratna,1,Mangalore,"Hotel Ocean Pearl, KS Rao Road, Near PVS Circle, Kodailbail, Mangalore","The Ocean Pearl, Kodailbail","The Ocean Pearl, Kodailbail, Mangalore",74.84048333,12.87505833,"South Indian, North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,175 +18424018,The Shooters Cafe,1,Mohali,"SCO 654,Himalaya Marg Road, Sector 70, Mohali, Chandigarh",Sector 70,"Sector 70, Mohali",76.7187888,30.6955506,"Continental, North Indian",550,Indian Rupees(Rs.),No,Yes,No,No,2,4.3,Green,Very Good,99 +35217,Joey's Pizza,1,Mumbai,"6 & 7, Upvan Building, Near Indian Oil Colony, DN Nagar, Azad Nagar, Mumbai",Azad Nagar,"Azad Nagar, Mumbai",72.829976,19.12663,Pizza,800,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,5145 +18447068,Cafe Hydro,1,Mumbai,"Esspee Tower, Rajendra Nagar, Dattapada Road, Borivali East, Mumbai",Borivali East,"Borivali East, Mumbai",72.86238123,19.22131488,Asian,1000,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,156 +18458563,The American Joint,1,Mumbai,"The Ahcl Homes Tower, Chikuwadi New Link Road, Borivali West, Mumbai",Borivali West,"Borivali West, Mumbai",72.8413473,19.2238399,"Healthy Food, American, Burger, Salad",850,Indian Rupees(Rs.),Yes,No,No,No,2,3.4,Orange,Average,170 +18075122,The Fusion Kitchen,1,Mumbai,"Shop 1, Opposite Veda Building, Near Bhavdevi Garage, Holy Cross Road, IC colony, Borivali West, Mumbai",Borivali West,"Borivali West, Mumbai",72.848923,19.254567,"North Indian, Italian, Chinese, Mexican",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.7,Dark Green,Excellent,2083 +18233317,145 Kala Ghoda,1,Mumbai,"145, Kala Ghoda, Fort, Mumbai",Fort,"Fort, Mumbai",72.83258457,18.92758399,"Fast Food, Beverages, Desserts",1500,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,1606 +18237753,Tea Villa Cafe,1,Mumbai,"31, Opposite Globus, Hill Road, Bandra West","Hill Road, Bandra West","Hill Road, Bandra West, Mumbai",72.83398401,19.05583064,"Cafe, Italian, Desserts, Fast Food, Chinese, Tea",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,2040 +18388642,Grandmama's Cafe,1,Mumbai,"Hotel Royal Garden, Ground Floor, Juhu Tara Road, Juhu, Mumbai",Juhu,"Juhu, Mumbai",72.82780755,19.09145752,"Continental, Italian",1100,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,617 +18463285,Mumbai Vibe,1,Mumbai,"Ganga Jamuna Block, 14th Road, Linking Road, Bandra West","Linking Road, Bandra West","Linking Road, Bandra West, Mumbai",72.83265799,19.06583751,"Cafe, Continental, North Indian, Italian, Chinese, Bakery, Desserts, Finger Food",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,146 +16527711,The Rolling Pin,1,Mumbai,"12, Janta Industrial Estate, Senapat Bapat Road, Lower Parel, Mumbai",Lower Parel,"Lower Parel, Mumbai",72.82520279,18.99404899,"Bakery, Desserts, Cafe",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,2076 +18313566,Farzi Cafe,1,Mumbai,"Kamala Mills, Near Radio Mirchi Office, Lower Parel, Mumbai",Lower Parel,"Lower Parel, Mumbai",72.82764997,19.0035172,Modern Indian,1500,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,1240 +49003,SpiceKlub,1,Mumbai,"8A, Janta Industrial Estate, Opposite Phoenix Mills, Senapati Bapat Road, Lower Parel, Mumbai",Lower Parel,"Lower Parel, Mumbai",72.82555282,18.99423667,North Indian,1500,Indian Rupees(Rs.),No,Yes,No,No,3,4.2,Green,Very Good,3370 +18441580,Tea Villa Cafe,1,Mumbai,"Shop 1& 2, Y-Building, Flower Valley, Opposite Viviana Mall,Eastern Express Highway, Majiwada, Thane West","Majiwada, Thane West","Majiwada, Thane West, Mumbai",72.97228105,19.20722241,"Cafe, Italian, Desserts, Fast Food, Chinese, Tea",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,317 +34757,Joey's Pizza,1,Mumbai,"Shop 1, Plot D, Samruddhi Complex, Chincholi Bunder Road, Mindspace, Malad West, Mumbai",Malad West,"Malad West, Mumbai",72.834715,19.178321,Pizza,800,Indian Rupees(Rs.),No,Yes,No,No,2,4.5,Dark Green,Excellent,2662 +18408295,Stacks And Racks,1,Mumbai,"Shop 1, Ganga Nivas, Opposite Toyota Showroom, Link Road, Malad West, Mumbai",Malad West,"Malad West, Mumbai",72.83619149,19.18129965,"American, Burger, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,4.6,Dark Green,Excellent,413 +18216876,The English Department Bar & Diner,1,Mumbai,"Malad link Road, Near Inorbit Mall Junction, Malad West, Mumbai",Malad West,"Malad West, Mumbai",72.83672087,19.17626869,"Italian, Continental, Mexican, Japanese, American, British",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,885 +17806994,Mirchi And Mime,1,Mumbai,"Transocean House, Lake Boulevard, Hiranandani Business Park, Powai, Mumbai",Powai,"Powai, Mumbai",72.90738534,19.12008268,"North Indian, South Indian, Mughlai",1500,Indian Rupees(Rs.),No,No,No,No,3,4.9,Dark Green,Excellent,3244 +18435740,38 Degree East,1,Mumbai,"Panchkutir, Pawarwardi, Adhishankracharya Marg, Opposite Powai Lake, JVLR,Powai, Mumbai",Powai,"Powai, Mumbai",72.90849264,19.12199866,"North Indian, Chinese, Thai",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,181 +18318116,R' ADDA,1,Mumbai,"Ramee Guestline Hotel, 462, A B Nair Road, Juhu, Mumbai","Ramee Guestline Hotel, Juhu","Ramee Guestline Hotel, Juhu, Mumbai",72.825451,19.1093,"Street Food, Burger, Desserts, Italian, Pizza, North Indian, European, Finger Food",1200,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,536 +18270976,Tea Villa Cafe,1,Mumbai,"28, Aaram Nagar 1, Opposite Dariya Mahal, Versova, Andheri West","Versova, Andheri West","Versova, Andheri West, Mumbai",72.8130738,19.1311405,"Cafe, Italian, Desserts, Fast Food, Chinese, Tea",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,1295 +49486,Tea Villa Cafe,1,Mumbai,"Pardhy House, Opposite Jain Temple, Junction of MG Road and Hanuman Road, Vile Parle East, Mumbai",Vile Parle East,"Vile Parle East, Mumbai",72.846749,19.103249,"Cafe, Italian, Desserts, Fast Food, Chinese, Tea",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,1515 +3600252,Hotel RRR Mysore,1,Mysore,"Gandhi Square, Chamrajpura, Mysore",Chamrajpura,"Chamrajpura, Mysore",76.65487778,12.31107222,Andhra,290,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,139 +3600265,Jalpaan Dining Saga,1,Mysore,"366, 2nd & 3rd Floor, Near Ramaswamy Circle, Chamaraja Mohalla, Chamrajpura, Mysore",Chamrajpura,"Chamrajpura, Mysore",76.64362222,12.30456944,"North Indian, Chinese, Italian",900,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,172 +3600375,The Old House,1,Mysore,"451, Jhansi Rani Lakshmi Bai Road, Chamrajpura, Mysore",Chamrajpura,"Chamrajpura, Mysore",76.64262,12.299524,Italian,800,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,264 +3600015,Vinayaka Mylari,1,Mysore,"79, Nazarbad Main Road, Near Police Station, Doora, Mysore",Doora,"Doora, Mysore",76.66580833,12.3085,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,4.2,Green,Very Good,392 +3600012,Empire Restaurant,1,Mysore,"2820/1, 8th Cross, Kalidasa Road, Vani Vilas Mohalla, Gokulam, Mysore",Gokulam,"Gokulam, Mysore",76.62796111,12.32397778,"North Indian, Andhra, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,393 +3600013,Green Leaf,1,Mysore,"Opposite Reebok Showroom, Kalidasa Road, Vani Vilas Mohalla, Gokulam, Mysore",Gokulam,"Gokulam, Mysore",76.62616667,12.32399444,"North Indian, Chinese, South Indian",400,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,214 +3600071,Pakva Lounge,1,Mysore,"Livin Corner, Temple Road, Vani Vilas Mohalla, Gokulam, Mysore",Gokulam,"Gokulam, Mysore",76.63227778,12.32546111,"Italian, North Indian, South Indian",650,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,262 +3600192,Spring - Radisson Blu Plaza,1,Mysore,"Radisson Blu Plaza, 1, MG Road, Ittige Gudu, Mysore",Ittige Gudu,"Ittige Gudu, Mysore",76.665169,12.297954,"Continental, North Indian, South Indian",1700,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,162 +3600119,Big Chicken,1,Mysore,"2902/1, Temple Road, Opposite Post Office, Vani Vilas Mohalla, Jayalakhsmipuram, Mysore",Jayalakhsmipuram,"Jayalakhsmipuram, Mysore",76.63058333,12.32319444,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,160 +3600352,Barbeque Nation,1,Mysore,"Ground Floor, BM Habitat Mall, Gokulam Main Road, Jayalakhsmipuram, Mysore",Jayalakhsmipuram,"Jayalakhsmipuram, Mysore",76.62109444,12.32121389,"North Indian, European, Mediterranean",1600,Indian Rupees(Rs.),No,No,No,No,4,4,Green,Very Good,286 +3600009,Pizza Hut,1,Mysore,"Opposite Loyal World Super Market, Temple Road, Vani Vilas Mohalla, Jayalakhsmipuram, Mysore",Jayalakhsmipuram,"Jayalakhsmipuram, Mysore",76.63002778,12.323225,"Pizza, Italian",700,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,304 +3600361,Tandooriwala,1,Mysore,"26, 1st Stage, KHB, Nrupathunga Road, Kuvempunagar, Mysore",Kuvempunagar,"Kuvempunagar, Mysore",76.62586111,12.28474722,North Indian,700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,127 +3600148,Jungle The Restaurant,1,Mysore,"Pai Hotels, Bangalore Nilgiri Road, Opposite Suburban Bus Stand, Mysore, Doora, Mysore","Pai Hotels, Doora","Pai Hotels, Doora, Mysore",76.65926389,12.31097222,"North Indian, Continental, Chinese",1000,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,132 +3600436,The Barge Restaurant,1,Mysore,"Plot 440A, Hebbal Industrial Area, Near Infosys Campus, Vijay Nagar, Mysore",Vijay Nagar,"Vijay Nagar, Mysore",0,0,"Continental, Chinese, North Indian",1500,Indian Rupees(Rs.),No,No,No,No,4,3.3,Orange,Average,11 +3600008,By The Way,1,Mysore,"Next to Bhartat Cancer Hospital, Opposite Infosys Circle Ring Road, Vijay Nagar, Mysore",Vijay Nagar,"Vijay Nagar, Mysore",76.60665,12.35205833,"North Indian, Chinese, South Indian",650,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,190 +3600354,Cafe Cornucopia,1,Mysore,"22nd Cross, 14th Main, 3rd Stage, Block C, Vijay Nagar, Mysore",Vijay Nagar,"Vijay Nagar, Mysore",76.60306667,12.31696667,"Cafe, Continental, European, Beverages",700,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,140 +3600285,Mezzaluna,1,Mysore,"First Floor, Kuvempu Trust Building, Near Chandrakala Hospital, New Kalidasa Road, Vijayanagar, Vijay Nagar, Mysore",Vijay Nagar,"Vijay Nagar, Mysore",76.61910278,12.32635556,"Continental, South Indian",650,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,249 +3600072,Nanking,1,Mysore,"High Tension Double Road, Near Vidyavardhaka College, 2nd Stage, Vijay Nagar, Mysore",Vijay Nagar,"Vijay Nagar, Mysore",76.61788889,12.33792778,"Chinese, Thai",550,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,208 +3600022,Oyster Bay,1,Mysore,"Kannada Parishath Road, 1st Stage, Vijay Nagar, Mysore",Vijay Nagar,"Vijay Nagar, Mysore",76.61820278,12.33402222,"North Indian, Asian, Continental",1000,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,270 +3600014,Purple Haze,1,Mysore,"129-131, High Tension Double Road, Mahadeswara Badavane, 2nd Stage, Vijay Nagar, Mysore",Vijay Nagar,"Vijay Nagar, Mysore",76.61679167,12.33797778,Finger Food,1200,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,183 +3301308,House of Caffeine,1,Nagpur,"J 12, Besides Face & Figure Gym, WHC Road, Laxmi Nagar, Nagpur",Bajaj Nagar,"Bajaj Nagar, Nagpur",79.06428449,21.12420256,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,27 +3300780,Hide Out The Street Cafe,1,Nagpur,"4, Plot No 54, Raghukul Building, Bajaj Nagar, Nagpur",Bajaj Nagar,"Bajaj Nagar, Nagpur",79.06046167,21.12949694,Cafe,250,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,73 +3301236,Tapri The Chai Books Cafe,1,Nagpur,"75, Abhyankar Nagar, Near Bajaj Nagar, Nagpur",Bajaj Nagar,"Bajaj Nagar, Nagpur",0,0,"Continental, Fast Food, Tea",250,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,26 +3300369,Eat Street Express,1,Nagpur,"Shraddhanandpeth Square, Opposite A-Square Building, Abhyankar Road, Near, Bajaj Nagar, Nagpur",Bajaj Nagar,"Bajaj Nagar, Nagpur",79.05922417,21.12499944,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,103 +3301013,Zaikart,1,Nagpur,"Plot-17, Sneha Gayatri Nagar, IT Park, Gayatri Nagar, Near Bajaj Nagar, Nagpur",Bajaj Nagar,"Bajaj Nagar, Nagpur",79.04722832,21.11882292,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,Yes,No,No,2,4.3,Green,Very Good,88 +3300741,Cafe Zinea,1,Nagpur,"56, Temple Road, Civil Lines, Nagpur",Civil Lines,"Civil Lines, Nagpur",79.0679011,21.1481626,"Cafe, Chinese, Fast Food, Italian",400,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,201 +3300138,Checker's,1,Nagpur,"23 to 25, VCA Complex, Civil Lines, Nagpur",Civil Lines,"Civil Lines, Nagpur",79.07658678,21.15841584,"Fast Food, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,185 +3300949,The B.A.W.A,1,Nagpur,"Opposite VCA Stadium, Civil Lines, Nagpur",Civil Lines,"Civil Lines, Nagpur",79.07730427,21.15619053,Cafe,600,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,164 +3300065,FSB,1,Nagpur,"B/9, Orange City Towers, Opposite Tilak Patrakar Bhavan, Dhantoli, Nagpur",Dhantoli,"Dhantoli, Nagpur",79.08047698,21.13851031,"Continental, North Indian, Thai, Chinese",1100,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,270 +3300416,NESCAF Illusions,1,Nagpur,"Oppsite Dharampeth High School, North Ambazari Road, Near ICICI Bank, Lad Apartment., Dharampeth, Nagpur",Dharampeth,"Dharampeth, Nagpur",79.0651371,21.13685791,Cafe,350,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,140 +3301169,Nineties,1,Nagpur,"Opposite Traffice Park, Dharampeth, Nagpur",Dharampeth,"Dharampeth, Nagpur",79.06652045,21.14083972,"Cafe, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,19 +3300061,Mocha,1,Nagpur,"202, Cement Road, Shankar Nagar, Dharampeth, Nagpur",Dharampeth,"Dharampeth, Nagpur",79.05853249,21.13784829,"Cafe, Continental",750,Indian Rupees(Rs.),No,Yes,No,No,3,4,Green,Very Good,284 +3300107,The Zuree Urban Kitchen,1,Nagpur,"8A, AD Complex, Mount Road, Mohan Nagar, Nagpur",Mohan Nagar,"Mohan Nagar, Nagpur",79.08184659,21.15848119,"North Indian, Italian, Continental",1200,Indian Rupees(Rs.),No,Yes,No,No,3,4.4,Green,Very Good,257 +3300058,The Breakfast Story,1,Nagpur,"Opposite Transmitting Station, Hingna Road, Jaitala, Pratap Nagar, Nagpur",Pratap Nagar,"Pratap Nagar, Nagpur",79.03866302,21.1232834,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,4.5,Dark Green,Excellent,520 +3300057,Ten Downing Street Restaurant & Bar,1,Nagpur,"5th Floor, Milestone Building, Wardha Road, Ramdaspeth, Nagpur",Ramdaspeth,"Ramdaspeth, Nagpur",79.07851763,21.13672376,"Chinese, Continental, North Indian",1000,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,306 +3300041,Ashoka Restaurant,1,Nagpur,"60, Sadar Bazar Main Road, Sadar, Nagpur",Sadar,"Sadar, Nagpur",79.079819,21.159225,"North Indian, Chinese, Continental",1300,Indian Rupees(Rs.),No,Yes,No,No,3,4.2,Green,Very Good,275 +3300958,Barbeque Nation,1,Nagpur,"2nd Floor, Eternity Mall, Amravati Road, Sitabuldi, Nagpur",Sitabuldi,"Sitabuldi, Nagpur",79.080247,21.143272,"North Indian, European, Mediterranean",1600,Indian Rupees(Rs.),No,No,No,No,4,4.9,Dark Green,Excellent,226 +3300707,KFC,1,Nagpur,"G1-G2, Ground Floor, Eternity Mall, Variety Square, Amravati Road, Sitabuldi, Nagpur",Sitabuldi,"Sitabuldi, Nagpur",79.08040556,21.14353333,"American, Fast Food",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.2,Red,Poor,147 +3300070,Moksh The Restro Lounge,1,Nagpur,"Panchshil Chowk, Sitabuldi, Nagpur",Sitabuldi,"Sitabuldi, Nagpur",79.08009443,21.14014612,"Seafood, Chinese, Thai",1000,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,100 +3301035,Mainland China,1,Nagpur,"Deepika Hospitalities Private Ltd, Plot 19, Wardha Road, Vivekanand Nagar, Nagpur",Vivekanand Nagar,"Vivekanand Nagar, Nagpur",79.06482127,21.08922374,Chinese,1000,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,45 +1600227,Divtya Budhlya Wada Restaurant,1,Nashik,"Next to Dura Gas Pump, Gangapur Rd, Ganpati Nagar, Anand Wali Goan, Nashik",Anand Wali Goan,"Anand Wali Goan, Nashik",0,0,Maharashtrian,400,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,76 +1600280,Spice Route,1,Nashik,"Gangapur Road, Navasha Ganpati, Sector C, Near Union Bank, Anand Wali Goan, Nashik",Anand Wali Goan,"Anand Wali Goan, Nashik",73.74210622,20.01361026,"North Indian, Maharashtrian",1000,Indian Rupees(Rs.),No,No,No,No,4,3.6,Yellow,Good,91 +1600169,Veg Aroma,1,Nashik,"Opposite Durga Gas Pump, Gangapur Road, Anand Wali, Nashik, Anand Wali Goan, Nashik",Anand Wali Goan,"Anand Wali Goan, Nashik",73.74589243,20.01207513,North Indian,600,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,125 +1600109,Eastern Spice,1,Nashik,"Bon Vivant, Opposite Dongre Ground, College Road, Nashik","Bon Vivant, College Road","Bon Vivant, College Road, Nashik",73.770914,20.006756,North Indian,800,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,140 +1600108,The Bake Studio,1,Nashik,"Bon Vivant, Opposite Dongre Ground, College Road, Nashik","Bon Vivant, College Road","Bon Vivant, College Road, Nashik",73.770914,20.006756,"Cafe, Desserts",400,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,86 +1600258,Barbeque Nation,1,Nashik,"2nd Floor, City Centre Mall, Sambaji Chowk, Lawate Nagar, Banyan Square, Untwadi, Off Parijat Nagar, Parijat Nagar, Nashik","City Center, Parijat Nagar","City Center, Parijat Nagar, Nashik",73.760948,19.990707,"North Indian, European, Mediterranean, Asian",1500,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,117 +1600252,Chai Tapri,1,Nashik,"Shop 2, Chandan Apartments, Model Colony, College Road, Nashik",College Road,"College Road, Nashik",0,0,Cafe,150,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,86 +1600007,Curry Leaves,1,Nashik,"Jehan Circle, Gangapur Road, College Road, Nashik",College Road,"College Road, Nashik",73.75582778,20.01271111,"North Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,162 +1600053,Enter The Dragon,1,Nashik,"4th Floor, Archit Arcade, Above Peter England, Near Big Bazar, College Road, Nashik",College Road,"College Road, Nashik",73.76653333,20.00551389,Chinese,700,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,177 +1600326,The Cafe Katta,1,Nashik,"Muktangan Apartment, Model Colony, College Road, Nashik",College Road,"College Road, Nashik",73.756229,20.008442,Cafe,600,Indian Rupees(Rs.),No,No,No,No,3,3.3,Orange,Average,15 +1600307,White X Sky Lounge,1,Nashik,"4th Floor, B Wing, Bosco Center, Prasad Circle, Gangapur Road, College Road, Nashik",College Road,"College Road, Nashik",0,0,North Indian,800,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,24 +1600219,12212,1,Nashik,"Shop 10, Ramrajya Building 7, Samarth Nagar, Next to Bhonsala Military school, College Road, Nashik",College Road,"College Road, Nashik",73.75463597,20.00669049,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,80 +1600067,Al Arabian Express,1,Nashik,"Near Big Bazar, College Road, Nashik",College Road,"College Road, Nashik",73.76504313,20.0037341,Mughlai,500,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,162 +1600039,RiverDine Restaurant & Bar,1,Nashik,"Opposite Asaram Bapu Ashram Bridge, Near Nandawan Lawns, Savarkar Nagar Extension, Off Gangapur Road, College Road, Nashik",College Road,"College Road, Nashik",0,0,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,166 +1600029,Barbeque Ville,1,Nashik,"Karambelkar Tower, Mumbai Agra Road, Cidco, Near Dutta Tyres, Parijat Nagar, Nashik",Parijat Nagar,"Parijat Nagar, Nashik",73.77734005,19.97720852,North Indian,1100,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,164 +1600292,Little Italy,1,Nashik,"36/2, Govardhan Village, Off Gangapur-Savargaon Road, Satpur, Nashik",Satpur,"Satpur, Nashik",0,0,Italian,800,Indian Rupees(Rs.),No,No,No,No,3,3,Orange,Average,25 +1600298,Soma at Sula,1,Nashik,"Survey 36/2, Govardhan, Off Gangapur-Ganghavare Road, Satpur, Nashik",Satpur,"Satpur, Nashik",0,0,North Indian,1000,Indian Rupees(Rs.),No,No,No,No,4,3.3,Orange,Average,33 +1600095,Hotel Radhakrishna,1,Nashik,"P-35, MIDC, Satpur, Nashik Behind ITI, Trimbak Road,",Satpur,"Satpur, Nashik",73.74630857,19.98975665,"Malwani, North Indian, Chinese, Seafood",400,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,77 +1600205,Sadhana Restaurant,1,Nashik,"Hardev Bagh, Near Someshwar, Motiwala College Road, Gangapur Road, Near Satpur, Nashik",Satpur,"Satpur, Nashik",73.72076757,20.02091783,Maharashtrian,100,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,218 +1600212,House Of Flavours,1,Nashik,"SSK Solitaire, Ahilyabai Holkar Marg, Tidke Colony, Near Mumbai Naka, Satpur, Nashik","SSK Solitaire, Satpur","SSK Solitaire, Satpur, Nashik",73.776176,19.991295,"North Indian, Chinese, Continental",900,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,71 +18287358,Food Cloud,1,New Delhi,"Aaya Nagar, New Delhi",Aaya Nagar,"Aaya Nagar, New Delhi",0,0,Cuisine Varies,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18216944,Burger.in,1,New Delhi,"84, Near Honda Showroom, Adchini, New Delhi",Adchini,"Adchini, New Delhi",77.19692286,28.53538174,Fast Food,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,46 +313333,Days of the Raj,1,New Delhi,"81/3, 1st Floor, Qutub Residency, Adchini, New Delhi",Adchini,"Adchini, New Delhi",77.19747473,28.53549308,"North Indian, Seafood, Continental",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,45 +18384127,Dilli Ka Dhaba,1,New Delhi,"66 A, Ground Floor, Sri Aurobindo Marg, Adchini, New Delhi",Adchini,"Adchini, New Delhi",77.1980333,28.5375472,"South Indian, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,11 +582,Govardhan,1,New Delhi,"84, Adjacent Hero Motor Bike Showroom, Main Mehrauli Road, Adchini, New Delhi",Adchini,"Adchini, New Delhi",77.1969242,28.5355234,"South Indian, North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,238 +18414465,Mezbaan Grills,1,New Delhi,"A- 96, Shri Aurbindo Marg, Adchini, New Delhi",Adchini,"Adchini, New Delhi",77.1981225,28.5381335,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +304243,Say Cheese,1,New Delhi,"88/3, Adchini, New Delhi",Adchini,"Adchini, New Delhi",77.19815936,28.53744768,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,64 +3554,Southy,1,New Delhi,"88/4, Adchini, New Delhi",Adchini,"Adchini, New Delhi",77.19795015,28.53747419,South Indian,450,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,113 +18369872,Monosoz,1,New Delhi,"Sri Aurobindo Marg, Adchini, New Delhi",Adchini,"Adchini, New Delhi",77.19804244,28.53839431,Pizza,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,66 +948,Waves,1,New Delhi,"A-4, Sarvodaya Enclave, Adchini, New Delhi",Adchini,"Adchini, New Delhi",77.1988082,28.5386662,"North Indian, Chinese",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,141 +2853,Delhi Darbar,1,New Delhi,"84, Main Road, Adchini, New Delhi",Adchini,"Adchini, New Delhi",77.19696745,28.53576259,"Chinese, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,2.2,Red,Poor,77 +18433900,Chateau,1,New Delhi,"84, Aurobindo Marg, Adchini, New Delhi",Adchini,"Adchini, New Delhi",77.19679244,28.53565508,"Mediterranean, Italian",1600,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,40 +18425159,Nariyal Cafe,1,New Delhi,"A-4, 3rd Foor, Adchini, New Delhi",Adchini,"Adchini, New Delhi",77.199152,28.538438,"Continental, Seafood, Goan, Andhra, Kerala, Thai",1200,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,46 +310958,Rustom's Parsi Bhonu,1,New Delhi,"94-A/B, Adchini, New Delhi",Adchini,"Adchini, New Delhi",77.19815668,28.53789627,Parsi,1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,665 +18334443,BarShala,1,New Delhi,"Aditya Mall, Next to Cross River Mall, CBD, Karkardooma, New Delhi","Aditya Mega Mall, Karkardooma","Aditya Mega Mall, Karkardooma, New Delhi",77.3006287,28.6557549,Finger Food,600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,31 +18255141,Chawla's_,1,New Delhi,"Shop SG 40, Aditya Mega Mall, Karkardooma, New Delhi","Aditya Mega Mall, Karkardooma","Aditya Mega Mall, Karkardooma, New Delhi",77.3011977,28.6560516,"North Indian, Mughlai",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.4,Orange,Average,32 +197,Domino's Pizza,1,New Delhi,"15/16/16-A, Plot 9-D, Aditya Mega Mall, Karkardooma, New Delhi","Aditya Mega Mall, Karkardooma","Aditya Mega Mall, Karkardooma, New Delhi",77.3016337,28.6564531,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,83 +308235,Sultanat,1,New Delhi,"31-BC, Ground Floor, Aditya Mega Mall, Karkardooma, New Delhi","Aditya Mega Mall, Karkardooma","Aditya Mega Mall, Karkardooma, New Delhi",77.3016026,28.6562624,"North Indian, Chinese, Continental",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,288 +18258757,Bella Italia,1,New Delhi,"Ground Floor, MLCP, IGI Terminal 3, Aerocity, New Delhi",Aerocity,"Aerocity, New Delhi",77.087897,28.554463,"Fast Food, Italian, Pizza",550,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,33 +307383,Clever Fox Cafe,1,New Delhi,"Red Fox Hotel, Asset 6, Aerocity Hospitality District, Near Aerocity, New Delhi",Aerocity,"Aerocity, New Delhi",77.120642,28.55169,"North Indian, Continental, Chinese",900,Indian Rupees(Rs.),Yes,No,No,No,2,3.2,Orange,Average,26 +18386746,365 Naturals,1,New Delhi,"Multilevel Car Parking, Terminal 3, Aerocity, New Delhi",Aerocity,"Aerocity, New Delhi",77.087897,28.554463,"Continental, North Indian, Fast Food, Street Food, South Indian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18337885,Tpot,1,New Delhi,"Basement, MLCP Parking, Terminal 3, Aerocity, New Delhi",Aerocity,"Aerocity, New Delhi",77.087897,28.554463,Cafe,800,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +310491,4 on 44 Restaurant & Bar,1,New Delhi,"112, Aggarwal City Mall, Road 44, Near M2K Multiplex, Pitampura, New Delhi","Aggarwal City Mall, Pitampura","Aggarwal City Mall, Pitampura, New Delhi",77.1346226,28.6901424,"North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.6,Orange,Average,49 +18337789,Rambhog,1,New Delhi,"Shop 31, Aggarwal City Mall, Near Chunmun Store, Rani Bagh, Pitampura, New Delhi","Aggarwal City Mall, Pitampura","Aggarwal City Mall, Pitampura, New Delhi",77.1345554,28.6900143,"Street Food, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,13 +18222573,Selfie Lounge Restro & Bar,1,New Delhi,"214-215, 2nd Floor, Aggarwal City Mall, Pitampura, New Delhi","Aggarwal City Mall, Pitampura","Aggarwal City Mall, Pitampura, New Delhi",77.13477239,28.68990208,"North Indian, Chinese",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.2,Orange,Average,64 +3370,BTW,1,New Delhi,"G-71 & G-87, Aggarwal City Plaza, Mangalam Palace, Rohini, New Delhi","Aggarwal City Plaza, Rohini","Aggarwal City Plaza, Rohini, New Delhi",77.1177269,28.7003322,"Street Food, South Indian, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,167 +307439,Chilli Pepper,1,New Delhi,"G-89-90, Near M2K Cinemas, Aggarwal City Plaza, Rohini, New Delhi","Aggarwal City Plaza, Rohini","Aggarwal City Plaza, Rohini, New Delhi",77.1176394,28.7006401,"North Indian, Chinese",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,99 +1078,Pizza Hut,1,New Delhi,"17, Mangalam Place, Aggarwal City Plaza, Rohini, New Delhi","Aggarwal City Plaza, Rohini","Aggarwal City Plaza, Rohini, New Delhi",77.1172629,28.7006935,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,2.6,Orange,Average,125 +9340,Puri Bakers,1,New Delhi,"G-97, Aggarwal City Plaza, Manglam Place, Rohini, New Delhi","Aggarwal City Plaza, Rohini","Aggarwal City Plaza, Rohini, New Delhi",77.1175742,28.7004868,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,124 +306761,Jaiveer Naan & Chaap,1,New Delhi,"Shop 95, Aggarwal City Plaza, Near M2K, Rohini, New Delhi","Aggarwal City Plaza, Rohini","Aggarwal City Plaza, Rohini, New Delhi",77.1176368,28.7004261,"North Indian, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.2,Red,Poor,79 +7580,Aggarwal's Sweets Paradise,1,New Delhi,"G-3, H/1, Alaknanda Shopping Complex, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.2542078,28.52497428,"Mithai, North Indian, South Indian, Street Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,8 +7584,Bikaner Sweets,1,New Delhi,"A-1/G3, Pushpa Bhawan, Alaknanda Market, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.2542551,28.5253209,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,20 +7582,Cafe Coffee Day,1,New Delhi,"Nilgiri Market, Opposite Nilgiri Appartments, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.25014627,28.52813297,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,23 +18351495,Cakeophony By Sonali,1,New Delhi,"Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",0,0,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,19 +7594,Chandra Sweets,1,New Delhi,"A-8, Alaknanda Shopping Complex, Near Tara Apartment, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.2540557,28.5255719,"Mithai, North Indian, South Indian, Street Food",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +7583,Chhotu Mashhoor Kathi Roll,1,New Delhi,"Near Mother Dairy, Alaknanda Market, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.25411225,28.52569245,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,11 +7610,Green Chick Chop,1,New Delhi,"10 & 11, Narmada Market, Opposite Don Bosco School, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.24689879,28.52810941,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,35 +18412603,Lazeez Restaurant,1,New Delhi,"J 15, Alaknanda Shopping Complex, Mini Market, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.2545694,28.5256646,"Chinese, North Indian, Italian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,11 +7639,Madhuvan Chinese Fast Food,1,New Delhi,"Alaknanda Shopping Complex, Near Gangotri Complex Part B, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.2532459,28.52560319,Chinese,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,32 +18441545,Mr Wong,1,New Delhi,"Shop 4, Nilgiri Shopping Complex, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.249793,28.525675,"Chinese, Thai",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,10 +9971,Mughlai Shahi Rasoi,1,New Delhi,"B-13, DDA Shopping Complex, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.253851,28.5253274,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,23 +18451572,Mumbai Central Street Food,1,New Delhi,"Shop 6, Narmada Market, Opposite Don Bosco School, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.24780235,28.52774267,"Street Food, Fast Food, Beverages",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +7593,Neha's Treat,1,New Delhi,"Alaknanda Shopping Complex, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.2540306,28.5257928,Chinese,450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,42 +301440,New Bakers Shoppee,1,New Delhi,"A-12, Alaknanda Shopping Complex, Opposite ICICI Bank, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.25402072,28.52553898,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,21 +7585,Pant Ice Cream Parlour,1,New Delhi,"A-17, Alaknanda Market, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.25401971,28.52572397,"Desserts, Ice Cream",150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,16 +306531,PM 2 AM Food Bank,1,New Delhi,"1st Floor, Alaknanda Market, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.25118,28.52757,North Indian,500,Indian Rupees(Rs.),No,Yes,Yes,No,2,2.5,Orange,Average,37 +18354658,Punjabi Chaap Corner,1,New Delhi,"Shop 6, GF, Plot 2, NRI Colony, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.2542022,28.533376,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18337782,Sartaj Food Corner,1,New Delhi,"J 3/21, DDA Flats, Opposite Alaknanda Market, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.2540755,28.5258419,"North Indian, South Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,7 +18258759,The Sugar Therapy,1,New Delhi,"63-C, Pocket F, Gangotri Apartments, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.252479,28.523785,"Bakery, Desserts",450,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,22 +18057805,Biryani Binge,1,New Delhi,"Mandakini Enclave, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.25034475,28.53141028,"North Indian, Biryani",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,97 +3428,City of Joy,1,New Delhi,"2, 1st Floor, Aravali Shopping Complex, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.25312788,28.53267894,Bengali,800,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,452 +18425771,Letz Roll,1,New Delhi,"Narmada Shopping Complex, Opposite Don Bosco School, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.2468466,28.5278902,"Ice Cream, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,14 +18304836,Nukkad,1,New Delhi,"Shop 14, Nilgiri Apartments, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.25,28.53,"Chinese, Mughlai, North Indian",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,82 +18311951,#InstaFreeze,1,New Delhi,"B-17, Alaknanda Shopping Complex, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.253694,28.52542,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18401128,Aahar Meat and Chicken Shop,1,New Delhi,"F-6, Pushpa Bhawan, Alaknanda Shopping Complex, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.25,28.52,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18354667,Food Cafe,1,New Delhi,"1-B, Mandakini Enclave, Near Gate 6, Opposite Kalka Public School, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.25012012,28.5299095,"South Indian, North Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18431379,Lazeez Restaurant,1,New Delhi,"15, Opposite Union Bank of India, Main Road, Greater Kailash 4, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.25394236,28.5335614,"Chinese, North Indian, Mughlai, Pizza",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18311953,Lemon Chick,1,New Delhi,"7 & 11, G-1, Raj Tower 1, Alaknanda Shopping Complex, Near Post Office, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.2546954,28.525267,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +18361522,Punjabi Chaap Corner,1,New Delhi,"Shop 6, Ground Floor, Plot 2, NRI Colony, Greater Kailash 4, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",0,0,"Fast Food, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18425780,Purani Dilli Foods,1,New Delhi,"J-16, Mini Market, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.2550814,28.5254928,Mughlai,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18489513,Tandoori Kebab,1,New Delhi,"356 Narmada, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.248174,28.526931,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +306795,Shree Rathnam,1,New Delhi,"D1, First Floor, Abhishek Tower, Alaknanda, New Delhi",Alaknanda,"Alaknanda, New Delhi",77.2543449,28.5255985,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,31 +7249,Alaturka,1,New Delhi,"Food Court, 3rd Floor, Ambience Mall, Vasant Kunj, New Delhi","Ambience Mall, Vasant Kunj","Ambience Mall, Vasant Kunj, New Delhi",77.1549849,28.541562,Turkish,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,100 +7246,Amici Gourmet Pizza,1,New Delhi,"Food Court, 3rd Floor, Ambience Mall, Vasant Kunj, New Delhi","Ambience Mall, Vasant Kunj","Ambience Mall, Vasant Kunj, New Delhi",77.1549896,28.5414797,"Pizza, Italian",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,230 +310723,Burger King,1,New Delhi,"3rd Floor, Ambience Mall, Vasant Kunj, New Delhi","Ambience Mall, Vasant Kunj","Ambience Mall, Vasant Kunj, New Delhi",77.1551985,28.5417053,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,458 +7253,Kylin Express,1,New Delhi,"5, Food Court, 3rd Floor, Ambience Mall, Vasant Kunj, New Delhi","Ambience Mall, Vasant Kunj","Ambience Mall, Vasant Kunj, New Delhi",77.155068,28.5411683,"Asian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,176 +18180041,Big Fat Sandwich,1,New Delhi,"Over Bridge, Ambience Mall, Vasant Kunj, New Delhi","Ambience Mall, Vasant Kunj","Ambience Mall, Vasant Kunj, New Delhi",77.15575699,28.54155381,American,800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.5,Yellow,Good,232 +18434414,Fashion Tv Cafe,1,New Delhi,"T-319, Level 3, Ambience Mall, Vasant Kunj, New Delhi","Ambience Mall, Vasant Kunj","Ambience Mall, Vasant Kunj, New Delhi",77.15530144,28.5414127,"Continental, Chinese, North Indian",2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,27 +4905,Kylin Skybar,1,New Delhi,"T-302, 3rd Floor, Ambience Mall, Vasant Kunj, New Delhi","Ambience Mall, Vasant Kunj","Ambience Mall, Vasant Kunj, New Delhi",77.154938,28.5414475,"Chinese, Japanese, Thai, Malaysian, Vietnamese, Asian",2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,210 +18421232,Lemon Drops,1,New Delhi,"T 314 -15, Food Court, 3rd Floor, Ambience Mall, Vasant Kunj, New Delhi","Ambience Mall, Vasant Kunj","Ambience Mall, Vasant Kunj, New Delhi",77.1552225,28.5410525,"North Indian, South Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,44 +7228,Punjabi By Nature Express,1,New Delhi,"3rd Floor, Food Court, Ambience Mall, Vasant Kunj, New Delhi","Ambience Mall, Vasant Kunj","Ambience Mall, Vasant Kunj, New Delhi",77.155099,28.5411702,"North Indian, Street Food, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,206 +7068,Red Mango,1,New Delhi,"Level 2, Ambience Mall, Vasant Kunj, New Delhi","Ambience Mall, Vasant Kunj","Ambience Mall, Vasant Kunj, New Delhi",77.1553877,28.5409809,"Cafe, Desserts",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,185 +302152,Starbucks,1,New Delhi,"1st Floor, Ambience Mall, Vasant Kunj, New Delhi","Ambience Mall, Vasant Kunj","Ambience Mall, Vasant Kunj, New Delhi",77.15541266,28.54089671,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,256 +312300,Peninsular Kitchen,1,New Delhi,"Level 3, Ambience Mall, Vasant Kunj, New Delhi","Ambience Mall, Vasant Kunj","Ambience Mall, Vasant Kunj, New Delhi",77.1550949,28.5411409,"Seafood, South Indian, Andhra, Hyderabadi, Goan",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,336 +5565,Mithapur,1,New Delhi,"4 & 5, Anand Lok Market, Opposite Gargi College, Anand Lok, New Delhi",Anand Lok,"Anand Lok, New Delhi",77.2187517,28.5555634,"Chinese, Fast Food, North Indian, South Indian",450,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,280 +307113,Diggin,1,New Delhi,"Anand Lok Shopping Centre, Opposite Gargi College, Anand Lok, New Delhi",Anand Lok,"Anand Lok, New Delhi",77.2194983,28.5556355,"Italian, Continental, Cafe",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,2131 +6258,Aggarwal Sweet India,1,New Delhi,"17, DDA Market, Savita Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3169197,28.6603476,"Fast Food, North Indian, Chinese, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,13 +6094,Banzara's,1,New Delhi,"8, A Block, Central Market, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3063202,28.6594964,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,38 +304592,Bobby Tikki Wala,1,New Delhi,"G-1, Ajnara Tower, DDA Market, Plot Number 1, Savita Vihar, Near Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3168615,28.6603647,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,69 +18421481,Chennai Junction,1,New Delhi,"G-3, Pankaj Plaza, LSC, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3065547,28.6596493,South Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,11 +310874,Chicken Bite,1,New Delhi,"G 3, Block A, Central Market, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3065301,28.6595397,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,6 +18313972,Chocolate Dreams,1,New Delhi,"D-130, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3068973,28.6594042,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18128860,Dial n Dine,1,New Delhi,"Shop 16, Ground Floor, DDA Market, Savita Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.316909,28.6602285,"North Indian, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,80 +310877,Fresh n Refresh,1,New Delhi,"Shop 4, Kamal Complex, Central Market, Pocket A, Surajmal Vihar, Near Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3066672,28.6596084,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,24 +304687,Garden Hut,1,New Delhi,"Maharaja Surajmal Samadhi Park, Opposite C Block, Suraj Mal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.305701,28.6601278,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,13 +312444,Giani,1,New Delhi,"G-4, Pankaj Plaza, A Block, Local Shopping Centre, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3064966,28.6596561,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,12 +18337975,Jugnu Gaming Zone and Cafe,1,New Delhi,"39, Opposite Bharat Petrol Pump, Near Yamuna Sports Complex, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3103233,28.6578549,"Cafe, North Indian, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +18124373,Keventer's South Indian & Chinese Food,1,New Delhi,"Shop No 5, Chetan Complex, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3068127,28.6594592,"Chinese, South Indian",200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,9 +305913,KTS,1,New Delhi,"Central Market, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.306795,28.65948,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,18 +310447,Mandarin,1,New Delhi,"G-7, Pankaj Plaza, Surajmal Vihar, Near, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3061657,28.6598026,Chinese,600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,14 +310858,Penguin Bakers & Shakers,1,New Delhi,"G-6, Pankaj Plaza, Local Shopping Complex, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3064705,28.6596774,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,9 +18332083,Rollmates,1,New Delhi,"G 4, Plot 10, LSC Market, Khetan Complex, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3064258,28.6595258,"Fast Food, North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,16 +18361241,Tandoori Nights,1,New Delhi,"Plot 5, Sikka Mansion, Savita Vihar Market, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3169899,28.6604475,"Mughlai, North Indian",650,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +305630,Burger Dominion,1,New Delhi,"G-5, Pankaj Plaza, Ground Floor, A Block, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3065439,28.6596325,Fast Food,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,251 +18034049,Cafe Gainz,1,New Delhi,"Shop G-7, Plot 4, LSC, Surajmal Vihar, Near, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.306742,28.6595377,Healthy Food,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,42 +6092,Chaskaa,1,New Delhi,"Kamal Complex, Local Shopping Centre, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3066776,28.6595993,"Chinese, North Indian, Italian",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,220 +18124361,Fabulous Cake Bites,1,New Delhi,"G-5, Ajnara Complex, Savita Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3057084,28.6601355,"Bakery, Desserts, Fast Food, Pizza, Burger, Continental",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,34 +6088,Hangout - A House Of Kathis,1,New Delhi,"G-2, Ashish Complex, Surajmal Vihar Market, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3065483,28.6594782,Street Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,103 +18394366,Malais By Anands,1,New Delhi,"Shop 11, Ground Floor, LSC Complex, Savita Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3171967,28.6602308,"North Indian, Chinese, South Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,46 +18354639,Panchwati Rasoi,1,New Delhi,"LSC, Savita Vihar Market, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.317158,28.6598763,"North Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,62 +311657,Sprinkles Cup & Cake,1,New Delhi,"B-268, Yojna Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3160226,28.6632543,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,42 +18350112,Target Ice Cream & Bakers,1,New Delhi,"Ground Floor, 4, Vigyan Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3128538,28.660001,"Desserts, Bakery, Pizza, Burger, Continental",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,58 +18377924,The Sweeet Jar,1,New Delhi,"A-276, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3049468,28.6600636,"Cafe, Bakery",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.9,Yellow,Good,106 +18428216,Amar Bakery,1,New Delhi,"G-5 & 6, Krit Plaza LSC, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3066854,28.6595807,"Bakery, Desserts, Fast Food, Mithai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18421050,Cafe Brewbug,1,New Delhi,"Shop 4, Atlantic Plaza, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3064428,28.6595978,"Fast Food, Beverages",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18377887,Chilll House Kafe,1,New Delhi,"F-201, A Block, Ashish Complex-2, Central Market, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3068152,28.6594371,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18421693,Cookie Shookie,1,New Delhi,"165, Vigyan Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3068421,28.6594206,Bakery,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18418263,Fabulous Cake,1,New Delhi,"C3, Yojna Vihar Market, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3181158,28.6640178,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421457,Jai Maa Shaarde Samose Wala,1,New Delhi,"G 2 Sarita Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3171146,28.6603594,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421463,Madaan Confectionery,1,New Delhi,"Shop 17, C Block, Yojna Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3180203,28.6636866,Bakery,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18268361,Magic Masala,1,New Delhi,"Shop 567, Plot 8, LSC Market, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3061815,28.6597573,"Chinese, South Indian, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18445804,Sikka Chinese Fast Food,1,New Delhi,"A-134, Surajmal Vihar, Near Bharat National School, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3065417,28.6579247,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18347812,Teedo's Cake Inn,1,New Delhi,"House 1, Dayanand Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3056481,28.6600976,"Cafe, Bakery",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18377920,Thalaiva Cafe,1,New Delhi,"Shop 6, Central Market, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3065199,28.659426,"South Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +311544,The Cake Affairs,1,New Delhi,"C-391, 1st Floor, Yojna Vihar, Near Anand Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3170268,28.6622024,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18377915,Tulsi Ram Chinese Hut,1,New Delhi,"G 6, Plot 10, Chetan Complex, Central Market, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3062409,28.6595326,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421058,V. K. Pasta,1,New Delhi,"Shop 2, Chetan Complex, Surajmal Vihar, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3066115,28.6595859,"Italian, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18335692,Xpert Bakers,1,New Delhi,"Shop 22, D Block, DDA Market, Anand Vihar, New Delhi",Anand Vihar,"Anand Vihar, New Delhi",77.3147803,28.6519961,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18429396,Juniper Bar - Andaz Delhi,1,New Delhi,"Andaz Delhi, Asset 1, Aerocity, New Delhi","Andaz Delhi, Aerocity","Andaz Delhi, Aerocity, New Delhi",77.12181085,28.55480667,"North Indian, European",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3,Orange,Average,4 +179,McDonald's,1,New Delhi,"BG-02, Ansal Plaza Mall, Khel Gaon Marg, New Delhi","Ansal Plaza Mall, Khel Gaon Marg","Ansal Plaza Mall, Khel Gaon Marg, New Delhi",77.2243586,28.5625545,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,48 +307843,Pizza Hut Delivery,1,New Delhi,"B-05, Ground Floor, Ansal Plaza Mall, Khel Gaon Marg, New Delhi","Ansal Plaza Mall, Khel Gaon Marg","Ansal Plaza Mall, Khel Gaon Marg, New Delhi",77.2242626,28.5625495,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,51 +18421042,The Arena,1,New Delhi,"C Block, Ansal Plaza, Khel Gaon Marg, New Delhi","Ansal Plaza Mall, Khel Gaon Marg","Ansal Plaza Mall, Khel Gaon Marg, New Delhi",77.2245776,28.5624498,"Continental, Asian, North Indian",1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,19 +3295,Restaurant De Seoul,1,New Delhi,"3rd Floor, C Block, Ansal Plaza Mall, Near Siri Fort, Khel Gaon Marg, New Delhi","Ansal Plaza Mall, Khel Gaon Marg","Ansal Plaza Mall, Khel Gaon Marg, New Delhi",77.2245397,28.562518,"Japanese, Korean",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,59 +18414499,Taksim,1,New Delhi,"CG 01, Ansal Plaza Mall, Khel Gaon Marg, New Delhi","Ansal Plaza Mall, Khel Gaon Marg","Ansal Plaza Mall, Khel Gaon Marg, New Delhi",77.2239998,28.5625562,Continental,1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,188 +18441775,Jom Jom Malay,1,New Delhi,"BG 04, Ansal Plaza, Andrews Ganj, Khel Gaon Marg, New Delhi","Ansal Plaza Mall, Khel Gaon Marg","Ansal Plaza Mall, Khel Gaon Marg, New Delhi",77.224443,28.563155,"Malaysian, Indonesian",1800,Indian Rupees(Rs.),No,No,No,No,3,4.4,Green,Very Good,77 +18427565,Kofuku,1,New Delhi,"BG-09, Ansal Plaza Mall, August Kranti Marg, Khel Gaon Marg, New Delhi","Ansal Plaza Mall, Khel Gaon Marg","Ansal Plaza Mall, Khel Gaon Marg, New Delhi",77.22493695,28.56257437,"Japanese, Asian",1500,Indian Rupees(Rs.),No,Yes,No,No,3,4,Green,Very Good,46 +18395381,The Sky High,1,New Delhi,"C-306 A & 307, T-101 & 102, 3rd Floor, Ansal Plaza Mall, Khel Gaon Marg, New Delhi","Ansal Plaza Mall, Khel Gaon Marg","Ansal Plaza Mall, Khel Gaon Marg, New Delhi",77.2243747,28.5622825,"Continental, North Indian, Mughlai, Italian",1400,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,387 +310281,Haldiram's,1,New Delhi,"1st Floor, ARSS Mall, Opposite Jwalaheri, Paschim Vihar, New Delhi","ARSS Mall, Paschim Vihar","ARSS Mall, Paschim Vihar, New Delhi",77.10154384,28.66894461,"North Indian, South Indian, Chinese, Mithai, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,117 +18207831,Jux Pux - The Dreamer's Cafe,1,New Delhi,"A-2/3, Near Delhi Stock Exchange, Asaf Ali Road, New Delhi",Asaf Ali Road,"Asaf Ali Road, New Delhi",77.238382,28.640954,"Beverages, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +5452,Pizzaon,1,New Delhi,"G-26, Ground Floor, Wardhman Plaza, Asaf Ali Road, New Delhi",Asaf Ali Road,"Asaf Ali Road, New Delhi",77.23196391,28.64244153,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,10 +18374418,FFC Restaurant,1,New Delhi,"2581, Shanker Street, Asaf Ali Road, New Delhi",Asaf Ali Road,"Asaf Ali Road, New Delhi",77.231881,28.642415,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18258778,"34, Chowringhee Lane",1,New Delhi,"115, Central Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1729156,28.6933274,Fast Food,350,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,7 +6560,Aapni Dhani,1,New Delhi,"14/1 A, Deep Cinema, Central Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1731452,28.6927118,"North Indian, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,23 +3322,Bengal Sweet Corner,1,New Delhi,"36, Central Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1725562,28.692666,"North Indian, South Indian, Chinese, Fast Food, Mithai",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,102 +18249102,Chicken Vicken,1,New Delhi,"Shop 12, I Block, DDA Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1664456,28.6849156,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,19 +18241609,Cup-a-licious,1,New Delhi,"Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1763302,28.6976846,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +8743,Frontier,1,New Delhi,"14, Building 3, Mohan Bazar, Central Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1714778,28.6931895,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +5294,Metro Fast Food,1,New Delhi,"Near Taxi Stand, Central Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1727344,28.6938333,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,17 +4651,Nagpal's,1,New Delhi,"Shop 14, Near Major Dhyan Chand Stadium, IB Block Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1664456,28.6848261,Street Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,135 +5315,Nile Restro & Bar,1,New Delhi,"26, 3rd Floor, Central Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1721967,28.6942435,"North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,2.7,Orange,Average,35 +6577,Popular Chicken,1,New Delhi,"21, DDA Murga Market, J Block, Opposite Water Tank, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1730055,28.6874254,"North Indian, Mughlai, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +309395,Sardar A Pure Meat Shop,1,New Delhi,"J-17, DDA Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1729156,28.6873272,"Raw Meats, Fast Food, North Indian",150,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,22 +300784,Shankar Fast Food,1,New Delhi,"A-5, Central Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1716576,28.6929381,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,74 +18430692,Singh's Zaika ,1,New Delhi,"C-9, Community Center, Nimri Colony, Ashok Vihar Phase 4, Near Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1767631,28.6812819,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +309503,The Mirch Masala,1,New Delhi,"27/4, Central Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1731558,28.6931964,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,7 +3326,The Mirch Masala,1,New Delhi,"DDA Murga Market, Near Deep Cinema, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1736345,28.6873066,North Indian,650,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,22 +309384,Uncle Cake Shop,1,New Delhi,"A-795, Shastri Nagar, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1855851,28.6738532,"Bakery, Desserts, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +3079,Kays Bar-Be-Que,1,New Delhi,"16/27, Community Cetre, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1731852,28.6933532,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,191 +303093,Master Bakers,1,New Delhi,"G-32 & 33, Usha Chambers, Community Centre, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1728257,28.6925128,"Bakery, Desserts, Chinese, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,199 +309375,The Master's Fast Food Centre,1,New Delhi,"8, Deep Cinema Complex, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1734098,28.6930613,"Fast Food, Chinese, Bakery",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,60 +18441672,6 Pack Momos,1,New Delhi,"BA-Block, Deep Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1724219,28.6940223,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18446423,Al Noor Foods,1,New Delhi,"23, J-Block, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1731402,28.6870353,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18462588,Avon Kitchen,1,New Delhi,"Shop 1, Ground Floor, J Block, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1736822,28.6872769,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18460330,Bhasad Cafe,1,New Delhi,"E-46, Near Gopal Paints, Shastri Nagar, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1808229,28.6720536,"Fast Food, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18361739,Bikaner Kesarvala,1,New Delhi,"Shop 10, H Block, DDA Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1685277,28.687879,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +312338,De Bone Chicken,1,New Delhi,"20, J Block, Murga Market, Near Water Tank, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1730688,28.6872543,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18057828,Indian Fresh Meat Shop,1,New Delhi,"Shop 8, Murga Market, J Block, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1728262,28.687261,"Raw Meats, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18361700,JD's Food Court,1,New Delhi,"E-46, Near Gopal Paints, Shastri Nagar, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1808229,28.6720536,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18383541,Keventers,1,New Delhi,"Shop 5/6, Building 26, Deep Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1722866,28.6942521,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18248970,Malhotra Bakery,1,New Delhi,"Shop 136, Shastri Nagar, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.18563,28.6738127,"Bakery, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18395538,Matthi Wala,1,New Delhi,"B-1138, Main Market, Shastri Nagar, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.18,28.67,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18446396,Nirula's Ice Cream,1,New Delhi,"Shop 26, Central Market, Deep Complex, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.172323,28.694039,"Ice Cream, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +313193,Punjabi Chaap Corner,1,New Delhi,"A-49, Subhtra Colony, Near Shastri Nagar Metro Station, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1809128,28.6703604,"Fast Food, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,1 +18457050,Puran Dhaba,1,New Delhi,"Shop J-11/11, Sanjay Market, Opposite Nimri Colony, Ashok Vihar Phase 4, Near Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1724663,28.6802986,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18375413,Rama Desi Ghee Meat Wala,1,New Delhi,"IA, Block 10 C, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",0,0,North Indian,650,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18458325,VadaPav 'n' Frankie,1,New Delhi,"Opposite Murga Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1732301,28.6873126,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +5296,Chhabra Sweets,1,New Delhi,"26, Central Market, Ashok Vihar Phase 1, New Delhi",Ashok Vihar Phase 1,"Ashok Vihar Phase 1, New Delhi",77.1723764,28.6939921,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,2.4,Red,Poor,15 +310802,Kanwarji's,1,New Delhi,"B4-33A, Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1787198,28.6945328,"Street Food, Chinese, North Indian, Mithai",300,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,29 +310777,Pizza Hut,1,New Delhi,"B-2/3, Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1780375,28.6929229,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.4,Orange,Average,35 +309,Sagar Ratna,1,New Delhi,"B-2/1, Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1779476,28.693362,"South Indian, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,278 +18390678,Smelling Salts,1,New Delhi,"C-2/13, Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1715677,28.6951682,"North Indian, Chinese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,53 +3329,Wah Ji Wah,1,New Delhi,"9, Community Centre, Near Satyawati College, Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1795361,28.6960643,"North Indian, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,142 +18216896,Wheelyz,1,New Delhi,"B4/57A, Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1782172,28.693567,"North Indian, Chinese, Fast Food",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,41 +307767,Bell Pepperz,1,New Delhi,"A-4, Community Centre, Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1795201,28.6965128,"Chinese, Italian, North Indian",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,492 +3332,Bharat Sweets,1,New Delhi,"B-2/3, Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1780375,28.6929229,"Mithai, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,28 +980,Invitation,1,New Delhi,"3, Community Centre, Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1794454,28.6961234,"North Indian, Chinese",1300,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,457 +18232098,Mystique Melange,1,New Delhi,"C-3/8, Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1702198,28.6963822,"North Indian, Mughlai, Chinese, Continental",1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,173 +6574,Pandit Ji Paranthe Wale,1,New Delhi,"Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1799506,28.6965655,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,131 +2379,Raju Chat Palace,1,New Delhi,"76, Srinagar Colony, Bharat Nagar Road, Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1855035,28.680204,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,123 +309390,Seasonings - The Spice Mysteries,1,New Delhi,"B-1/6, Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1793165,28.6950531,"North Indian, Mughlai, Chinese, Italian",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,274 +300809,SGF - Spice Grill Flame,1,New Delhi,"9, Community Centre 2, Ashok Vihar Phase 2, New Delhi",Ashok Vihar Phase 2,"Ashok Vihar Phase 2, New Delhi",77.1794162,28.6961906,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,87 +1192,Apni Rasoi,1,New Delhi,"1, Pocket B, DDA Market, Ashok Vihar Phase 3, New Delhi",Ashok Vihar Phase 3,"Ashok Vihar Phase 3, New Delhi",77.177678,28.6923511,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,78 +310803,Bablu Kabab Shop,1,New Delhi,"Shop 42, DDA Market, Near Taxi Stand, Ashok Vihar Phase 3, New Delhi",Ashok Vihar Phase 3,"Ashok Vihar Phase 3, New Delhi",77.1781273,28.6919464,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,10 +18250797,Cake o' Cuisine,1,New Delhi,"A-1/9, Satyawati Colony, Ashok Vihar Phase 3, New Delhi",Ashok Vihar Phase 3,"Ashok Vihar Phase 3, New Delhi",77.1778577,28.691831,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,26 +198,Domino's Pizza,1,New Delhi,"2-4 & 25-27, Pocket B, Ground Floor, DDA Market, Ashok Vihar Phase 3, New Delhi",Ashok Vihar Phase 3,"Ashok Vihar Phase 3, New Delhi",77.1778168,28.6924171,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,101 +18449782,Hunger Flames,1,New Delhi,"15, DDA Market 3, Satyawati Nagar, Ashok Vihar Phase 3, New Delhi",Ashok Vihar Phase 3,"Ashok Vihar Phase 3, New Delhi",77.1835542,28.6872232,"Pizza, Fast Food, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,17 +18057820,Puran Chand Ambala Wale Di Hatti,1,New Delhi,"Shop 8, DDA Market, Ashok Vihar Phase 3, New Delhi",Ashok Vihar Phase 3,"Ashok Vihar Phase 3, New Delhi",77.1780375,28.6924751,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,34 +310215,The Cake Gallery,1,New Delhi,"12, Jain Colony, Veer Nagar, Near Rana Pratap Bagh, Ashok Vihar Phase 3, New Delhi",Ashok Vihar Phase 3,"Ashok Vihar Phase 3, New Delhi",77.1674237,28.6849542,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,12 +306841,Bablu Chic Inn,1,New Delhi,"Shop 9, Pocket B, DDA Market, Ashok Vihar Phase 3, New Delhi",Ashok Vihar Phase 3,"Ashok Vihar Phase 3, New Delhi",77.1780492,28.6924851,"Mughlai, North Indian",750,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,34 +18412952,Masala Basket,1,New Delhi,"Shop 15, DDA Market, Ashok Vihar Phase 3, New Delhi",Ashok Vihar Phase 3,"Ashok Vihar Phase 3, New Delhi",77.1778832,28.6921495,"North Indian, South Indian, Street Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,46 +18432191,Udta Punjab,1,New Delhi,"Shop 12, DDA Market, B Block, Ashok Vihar Phase 3, New Delhi",Ashok Vihar Phase 3,"Ashok Vihar Phase 3, New Delhi",77.1780375,28.6924751,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,31 +18375420,Munch Nation,1,New Delhi,"Shop 29, Ground Floor, Durga Place DDA Market, Ashok Vihar Phase 3, New Delhi",Ashok Vihar Phase 3,"Ashok Vihar Phase 3, New Delhi",77.17785772,28.69218909,"Fast Food, Italian, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,4,Green,Very Good,96 +6286,Bengali Pastry Shop & Snack Bar,1,New Delhi,"34-37, Bengali Market, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.2319679,28.6295216,"North Indian, South Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,70 +1914,Bhimsain's Bengali Sweet House,1,New Delhi,"27-29, Bengali Market, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.231938,28.6297833,"North Indian, South Indian, Chinese, Street Food, Mithai",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,560 +18163907,Cafe Coffee Day,1,New Delhi,"Shop D, Ground Floor, DCM Building, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.22546157,28.62981784,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18344490,Colonel's Kababz,1,New Delhi,"Shop 44-45, Bengali Market, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.2322198,28.6291908,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,38 +18412878,Faasos,1,New Delhi,"Shop 30, Gandhi Market, Minto Road, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.22947,28.637044,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,11 +18294263,Karachi Bakery,1,New Delhi,"Shop 21, Bengali Market, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.2321395,28.6296552,"Bakery, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +588,Nathu's Sweets,1,New Delhi,"23-25, Bengali Market, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.2321162,28.6297135,"North Indian, South Indian, Street Food, Mithai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,421 +7150,Sachdeva Confectioners,1,New Delhi,"1, Gandhi Market, Mirdard Road, Minto Road, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.23034,28.636706,"North Indian, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,68 +18264634,Bengali Sweet House,1,New Delhi,"30-33, Bengali Market, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.2319464,28.6296407,"North Indian, Street Food, Chinese, South Indian, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,85 +301534,Bijoli Grill,1,New Delhi,"3, Hailey Road, Banga Bhawan, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.22564027,28.62586289,"Bengali, North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.7,Yellow,Good,343 +8340,Nathu's Pastry Shop,1,New Delhi,"12 & 13, Bengali Market, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.2320661,28.6291468,"Bakery, Desserts, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,120 +18400739,Balaji Dhaba,1,New Delhi,"Shop 23, NDMC Market, Babar Road, Near Bengal Market, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.2297102,28.6302526,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +304954,Bhagat Ji,1,New Delhi,Barakhamba Metro Station,Barakhamba Road,"Barakhamba Road, New Delhi",77.22556986,28.62948089,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18400737,Hangout Kathi Rolls,1,New Delhi,"Shop 39/40, NDMC Market, Babar Road, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.229817,28.6305852,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18382583,Makers & Bakers,1,New Delhi,"Shop 40, Shankar Market, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.2243937,28.6337562,"Bakery, Desserts",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18249122,Habibi Express,1,New Delhi,"47-48, Bengali Market, Barakhamba Road, New Delhi",Barakhamba Road,"Barakhamba Road, New Delhi",77.232182,28.6291992,"Lebanese, Arabian, Moroccan",750,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,55 +7354,Cafe Coffee Day,1,New Delhi,"14-A, Basant Lok Market, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16410805,28.55860308,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,49 +9267,China Town,1,New Delhi,"Basant Lok Market, Opposite Modern Bazar, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16399444,28.55882222,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +7352,Domino's Pizza,1,New Delhi,"6, Basant Lok Market, Priya Cinema Complex, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16454592,28.55759742,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,90 +304211,High Street Kitchen & Bar,1,New Delhi,"32, Basant Lok Market, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16416739,28.55803178,North Indian,1200,Indian Rupees(Rs.),Yes,No,No,No,3,2.9,Orange,Average,11 +262,Pizza Hut,1,New Delhi,"41, Basant Lok Market, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16408022,28.55750937,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.1,Orange,Average,161 +4621,Sugar & Spice - Le Marche,1,New Delhi,"58, Basant Lok Market, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16383245,28.55735771,"Bakery, Fast Food",800,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,67 +2134,The Kathis,1,New Delhi,"3, PVR Priya, Basant Lok Market, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16335401,28.55749052,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,23 +303472,The Kylin Experience,1,New Delhi,"24, Basant Lok Market, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16345278,28.55915278,"Japanese, Chinese, Malaysian, Thai, Vietnamese",1700,Indian Rupees(Rs.),No,Yes,No,No,3,3.3,Orange,Average,60 +758,Arabian Nites,1,New Delhi,"59, Basant Lok Market, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16421165,28.55731442,Lebanese,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,239 +7217,Asia Kitchen,1,New Delhi,"15-A, Basant Lok Market, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16395449,28.55894144,"Chinese, Thai, North Indian",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,137 +307054,Dunkin' Donuts,1,New Delhi,"Priya Complex, Basant Lok Market, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16427334,28.55739275,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,212 +771,Krips Restaurant,1,New Delhi,"59, Community Centre, Basant Lok Market, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16388777,28.55720016,"North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,193 +171,McDonald's,1,New Delhi,"Community Centre, Basant Lok Market, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16365643,28.5574864,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,202 +304675,Yo! China,1,New Delhi,"46, 1st Floor, Priya Cinema Complex, Basant Lok Market, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16364905,28.55722872,Chinese,1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,332 +3269,RPM,1,New Delhi,"40, Basant Lok Market, Vasant Vihar, New Delhi","Basant Lok Market, Vasant Vihar","Basant Lok Market, Vasant Vihar, New Delhi",77.16416772,28.55756561,Finger Food,1800,Indian Rupees(Rs.),Yes,No,No,No,3,2.4,Red,Poor,92 +3935,By The Way - Bellagio,1,New Delhi,"13 & 14, Ground Floor and Mezzanine Floor, Community Center, Ashok Vihar Phase 2, New Delhi","Bellagio, Ashok Vihar Phase 2","Bellagio, Ashok Vihar Phase 2, New Delhi",77.1799244,28.6963277,"Italian, Continental",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.9,Orange,Average,120 +4166,Red - Bellagio,1,New Delhi,"13-14, 2nd Floor, Community Center, Ashok Vihar Phase 2, New Delhi","Bellagio, Ashok Vihar Phase 2","Bellagio, Ashok Vihar Phase 2, New Delhi",77.1800463,28.6962508,Chinese,1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,137 +3936,Soul Curry - Bellagio,1,New Delhi,"13 & 14, 1st Floor, Community Center, Ashok Vihar Phase 2, New Delhi","Bellagio, Ashok Vihar Phase 2","Bellagio, Ashok Vihar Phase 2, New Delhi",77.1799244,28.6963277,"North Indian, Mughlai",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,158 +5227,Alpha 63,1,New Delhi,"Best Western Taurus, IGI Airport Road, NH 8, Mahipalpur, New Delhi","Best Western Taurus Hotel, Mahipalpur","Best Western Taurus Hotel, Mahipalpur, New Delhi",77.1271685,28.5488265,"North Indian, Chinese, Continental",1500,Indian Rupees(Rs.),Yes,No,No,No,3,2.7,Orange,Average,9 +1862,Bite-N-Sip,1,New Delhi,"6, UG-58 & 59, Ansal Chamber 2, Bhikaji Cama Place, New Delhi",Bhikaji Cama Place,"Bhikaji Cama Place, New Delhi",77.1884602,28.5677783,"North Indian, Street Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,38 +819,Lotus Garden,1,New Delhi,"SF-9, Bhikaji Cama Place, New Delhi",Bhikaji Cama Place,"Bhikaji Cama Place, New Delhi",77.1870054,28.5692067,"Chinese, Japanese, Thai",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,59 +2236,Meethas Sweets,1,New Delhi,"6, UG62, Ansal Chamber 2, Bhikaji Cama Place, New Delhi",Bhikaji Cama Place,"Bhikaji Cama Place, New Delhi",77.1882805,28.5682092,"Mithai, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,4 +4150,Nirula's,1,New Delhi,"Saran Motors, HP Petrol Pump, Near Muhammadpur, Bhikaji Cama Place, New Delhi",Bhikaji Cama Place,"Bhikaji Cama Place, New Delhi",77.18884371,28.56747782,"Fast Food, North Indian, Desserts, Ice Cream",1100,Indian Rupees(Rs.),No,Yes,No,No,3,2.5,Orange,Average,98 +6394,Punjabi Tadka,1,New Delhi,"6, UG-64, Ansal Chamber 2, Bhikaji Cama Place, New Delhi",Bhikaji Cama Place,"Bhikaji Cama Place, New Delhi",77.1883704,28.5680386,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +1867,Snack Bar,1,New Delhi,"9, UG-65 & 66, Somdutt Chamber 2, Bhikaji Cama Place, New Delhi",Bhikaji Cama Place,"Bhikaji Cama Place, New Delhi",77.1872056,28.5682072,"North Indian, Mughlai",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,11 +2608,South Indian Food,1,New Delhi,"6, UG-9, Ansal Chamber II, Bhikaji Cama Place, New Delhi",Bhikaji Cama Place,"Bhikaji Cama Place, New Delhi",77.1884696,28.567558,South Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +8388,Domino's Pizza,1,New Delhi,"30, 31, & 32, Upper Ground Floor, Ansal Chambers-1, Bhikaji Cama Place, New Delhi",Bhikaji Cama Place,"Bhikaji Cama Place, New Delhi",77.18894932,28.56902165,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,71 +3465,Southy,1,New Delhi,"UG-60, Ansal Chamber 2, Bhikaji Cama Place, New Delhi",Bhikaji Cama Place,"Bhikaji Cama Place, New Delhi",77.18844105,28.56823664,South Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,33 +301581,Coffee Shop - Centaur Hotel,1,New Delhi,"Centaur Hotel, Near Aerocity, New Delhi","Centaur Hotel, Aerocity","Centaur Hotel, Aerocity, New Delhi",77.115196,28.543091,Cafe,1500,Indian Rupees(Rs.),No,No,No,No,3,0,White,Not rated,2 +823,Al Kuresh,1,New Delhi,"7, Yashwant Place Market, Food Plaza, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1918744,28.5841464,"Chinese, North Indian",850,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,85 +18421499,Angan Bakery & Cafe,1,New Delhi,"Yashwant Palace Market, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.191515,28.5850979,"Bakery, Italian, Fast Food, Chinese, Continental",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,10 +846,Bamboo Chopstix,1,New Delhi,"21, Yashwant Place, Food Plaza, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1916048,28.5842999,"Chinese, North Indian",700,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,8 +816,Bawarchis,1,New Delhi,"25, Yashwant Place Market, Food Plaza, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1915599,28.5842508,"Chinese, North Indian",700,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,16 +4055,Bikanervala,1,New Delhi,"Satya Marg, Yashwant Place Market, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1912454,28.5851618,"North Indian, South Indian, Fast Food, Street Food, Chinese, Beverages, Desserts, Mithai",450,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,113 +18312487,Cafe Coffee Day,1,New Delhi,"1st Floor, BPCL Petrol Pump, Opposite Chanakyapuri Cinema, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1909759,28.5834333,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +1630,Chanakya Bar-Be-Que,1,New Delhi,"27, Yashwant Place Market, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1914283,28.5843608,"Chinese, North Indian",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.2,Orange,Average,17 +308261,Chattisgarh Bhawan,1,New Delhi,"7, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1863937,28.6043227,"North Indian, South Indian",450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,33 +2587,Chimney,1,New Delhi,"26, Yashwant Place Market, Food Plaza, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1916048,28.5843895,Chinese,800,Indian Rupees(Rs.),Yes,No,No,No,2,2.9,Orange,Average,66 +849,China Town Sizzlers,1,New Delhi,"V-15, Yashwant Place Market, Food Plaza, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1915599,28.5842508,Chinese,800,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,34 +848,Chinese Bite,1,New Delhi,"12 & 13, Food Plaza, Yashwant Place, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1917436,28.5842927,"Chinese, North Indian, Seafood",700,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,31 +852,Chinese Garden,1,New Delhi,"S14, Yashwant Place, Food Plaza, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.191558,28.5843202,Chinese,900,Indian Rupees(Rs.),Yes,No,No,No,2,3.2,Orange,Average,17 +312194,Costa Coffee,1,New Delhi,"Shantipath, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1683666,28.5952992,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +7643,Food Point,1,New Delhi,"50, Malcha Market, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1867082,28.6024263,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,5 +3238,Ikko,1,New Delhi,"6/48, Malcha Marg Shopping Centre, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1860137,28.6021467,"North Indian, Mughlai",1650,Indian Rupees(Rs.),Yes,No,No,No,3,2.9,Orange,Average,10 +18396184,Jammu And Kashmir House,1,New Delhi,"9, Kautilya Marg, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1969056,28.5998612,"Kashmiri, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +847,Laguna,1,New Delhi,"18, Yashwant Place, Food Plaza, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1916947,28.5843085,"Chinese, North Indian",900,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,60 +7575,Momo Point,1,New Delhi,"2, Yashwant Place Market, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1917845,28.5841379,"Chinese, North Indian",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,14 +850,New Zaika,1,New Delhi,"12 & 13, Food Plaza, Yashwant Place, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1917845,28.5841379,"Chinese, North Indian",700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,10 +311856,Organic Express,1,New Delhi,"Delhi Organic Farmers Market, Palika Services Officers Institute, Vinay Marg, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1933486,28.5867665,"Cafe, Healthy Food, North Indian",700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,7 +851,Tamil Nadu House Canteen,1,New Delhi,"Opposite Chanakya Theatre, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1908861,28.5830663,"South Indian, Chettinad, North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,161 +18228885,The Chocolate Avenue,1,New Delhi,"New Moti Bagh, Near Leela Palace Hotel, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1863937,28.5795901,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,28 +824,Chimney Sizzlers,1,New Delhi,"V-10 & 16, Yashwant Place Market, Food Plaza, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1916048,28.5842999,Chinese,800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.7,Yellow,Good,137 +301102,Gujarat Bhawan Restaurant,1,New Delhi,"11, Kautilya Marg, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1971751,28.5985428,"Gujarati, South Indian, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,203 +18238246,Its Sinful,1,New Delhi,"Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1735895,28.5974082,"Bakery, Desserts",450,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,20 +6003,Jakoi,1,New Delhi,"1, Assam Bhavan, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1876516,28.6055182,"Assamese, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,218 +18469659,Arunachal Bhawan,1,New Delhi,"27, Kautilya Marg, Diplomatic Enclave, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1980469,28.5986962,North Eastern,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18288994,Hotel New Tamil Nadu,1,New Delhi,"9, Bir Tikenderjith Marg, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1908861,28.5830663,"South Indian, North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +845,Milan Food,1,New Delhi,"5, Yashwant Place, Food Plaza, Near Chanakya Cinema, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1917845,28.5841379,"Chinese, North Indian",650,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18466422,Playboy Club,1,New Delhi,"Samrat Hotel, 50-B, Kautilya Marg, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1974446,28.5957906,Finger Food,3000,Indian Rupees(Rs.),No,No,No,No,4,0,White,Not rated,3 +815,Moti Mahal Delux,1,New Delhi,"20/48, Malcha Marg Shopping Complex, Diplomatic Enclave, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.1871125,28.6016137,"North Indian, Mughlai",1600,Indian Rupees(Rs.),Yes,No,No,No,3,2.4,Red,Poor,164 +305296,The Treat,1,New Delhi,"Behind Jesus & Mary College, Rizal Marg, Chanakyapuri, New Delhi",Chanakyapuri,"Chanakyapuri, New Delhi",77.178936,28.5928569,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.1,Red,Poor,138 +6079,Break Fast Point,1,New Delhi,"27, Satnam Park, Bhagat Singh Road, Chander Nagar, New Delhi",Chander Nagar,"Chander Nagar, New Delhi",77.2820446,28.6555014,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,21 +6117,Breakfast Corner,1,New Delhi,"K-14, Bhagat Singh Road, Satnam Park, Chander Nagar, New Delhi",Chander Nagar,"Chander Nagar, New Delhi",77.2822063,28.655449,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,6 +18082202,Domino's Pizza,1,New Delhi,"14, Geeta Colony Road, Sunder Park, Chander Nagar, New Delhi",Chander Nagar,"Chander Nagar, New Delhi",77.2777758,28.6519888,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,10 +308574,Frontier,1,New Delhi,"K-9 Block, Main Road, Chander Nagar, New Delhi",Chander Nagar,"Chander Nagar, New Delhi",77.2816637,28.656024,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +6123,Prince Cafe,1,New Delhi,"108, Main Road, Chander Nagar, New Delhi",Chander Nagar,"Chander Nagar, New Delhi",77.2821725,28.6548389,"South Indian, Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +312157,Spicy Eleven,1,New Delhi,"3, Opposite Navjeevan Nursing Home, Chander Nagar, New Delhi",Chander Nagar,"Chander Nagar, New Delhi",77.2779746,28.6536873,"North Indian, South Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,15 +302490,Vaishno Punjabi Dhaba,1,New Delhi,"H 1A, New Gobind Pura, Near, Chander Nagar, New Delhi",Chander Nagar,"Chander Nagar, New Delhi",77.2822247,28.6512423,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,12 +304697,Adarsh Bhojnalaya,1,New Delhi,"Ground Floor, Plot 482, Haveli Haider Quli, Near Andhra Bank, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.224214,28.6564057,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,29 +307713,Al Haj Bakery,1,New Delhi,"5080, Ballimaran Road, Katra Nawab, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2278068,28.6545089,Bakery,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,9 +18384137,Anmol Chicken,1,New Delhi,"6283, Main Bara Hindu Rao, Near choti Masjid, MD Ismail Marg, Sadar Bazar, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2094826,28.663599,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,4 +5459,Babu Ram Paranthe Wale,1,New Delhi,"1984-1985, Gali Paranthe Wali, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2304115,28.6560115,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,225 +311703,Bhaijaan Kababs,1,New Delhi,"Shop 2202, Bazar Chitli Qabar, Near Jama Masjid, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2335101,28.6494534,Mughlai,100,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,8 +308006,Bhikharam's,1,New Delhi,"251, Near Fathehpuri Masjid, Fatehpuri, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.22398333,28.65688889,"Mithai, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +4053,Bikanervala,1,New Delhi,"382, Kucha Ghasi Ram, Fatehpuri, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2244176,28.6566711,"North Indian, South Indian, Fast Food, Street Food, Chinese, Desserts, Mithai",550,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,42 +5468,Brijwasi Bhoj,1,New Delhi,"376, Near Kucha Ghasi Ram, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2243841,28.6568732,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,16 +5453,Brijwasi Restaurant,1,New Delhi,"379, Near Kucha Ghasi Ram, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2243823,28.656851,"North Indian, Fast Food, Chinese, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,39 +681,Comesum,1,New Delhi,"Old Delhi Railway Station, Mori Gate, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2280206,28.6606804,"North Indian, Street Food, Chinese, South Indian",350,Indian Rupees(Rs.),No,No,No,No,1,2.5,Orange,Average,49 +308008,Inderpuri Restaurant,1,New Delhi,"187, Church Mission Road, Fatehpuri, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2231981,28.6578654,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,20 +18272386,Kamdhenu Family Corner,1,New Delhi,"5469, Opposite Town Hall, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2271781,28.6563302,"North Indian, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,4 +306380,Khalsa Hindu Hotel,1,New Delhi,"711, Church Mission Road, Fatehpuri, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2234955,28.658756,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +312936,Mahalaxmi Mishthan Bhandar,1,New Delhi,"659, Church Mission Road, Fatehpuri, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2234057,28.6581203,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,16 +6698,McDonald's,1,New Delhi,"Near Sis Ganj Sahib Gurudwara, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.23421395,28.65606667,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,57 +9961,McDonald's,1,New Delhi,"Platform 3, Old Delhi Railway Station, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.22333167,28.65664,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,42 +312925,Natraj Cafe,1,New Delhi,"Main Road Near Central Bank, Opposite Paranthe Wali Gali, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2305013,28.6561992,"North Indian, Fast Food, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,21 +18342132,Padam Chaat Corner,1,New Delhi,"Gali Barf Wali, Near Kinari Bazar, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.23,28.66,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18323461,Pandit Ved Prakash Lemon Wale,1,New Delhi,"Opposite Town Hall, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2268188,28.6565647,"Beverages, Street Food",50,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,11 +5466,Pt. Babu Ram Devi Dayal Paranthe Wale,1,New Delhi,"9074, Gali Paranthe Wale, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2307138,28.6560495,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,53 +18232088,Rabri Bhandar,1,New Delhi,"42-B, Gali Parathewali, Opposite Central Bank, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2305013,28.6561097,Mithai,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,7 +304743,Ram Parshad Makhan Lal,1,New Delhi,"453, Khari Baoli, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2155012,28.6625615,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,23 +18128897,Rambhoj,1,New Delhi,"1894, Main Road, Opposite Dariba Kalan, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2324772,28.6562981,"North Indian, South Indian",150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18211151,Rehmatullah's Hotel,1,New Delhi,"105-110, Bazar Matia Mahal, Opposite Jama Masjid Gate 1, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.233555,28.6491441,Mughlai,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +5460,Sharma Bhojnalay,1,New Delhi,"Gali Paranthe Wali, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2306151,28.6559026,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,9 +311492,Shree Balaji Chaat Bhandar,1,New Delhi,"Shop 1462, Near Sheesh Ganj Sahib Gurudwara, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2320281,28.656524,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,16 +303643,Shri Duli Chand Naresh Gupta,1,New Delhi,"934, Kucha Pati Ram, Sitaram Bazar, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2269535,28.6476635,Desserts,100,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,18 +9156,Shri Hari Sharnam,1,New Delhi,"208, Katra Bariyan, Fatehpuri, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.222732,28.6577424,"North Indian, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +9160,Sindhi Chicken,1,New Delhi,"Babu Market, Fauna Chowk, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2316689,28.6573856,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +18235302,Soni Bhojnalaya,1,New Delhi,"161, Kucha Ghasi Ram, Fatehpuri, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.223481,28.657748,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +9157,Super Restaurant,1,New Delhi,"1937, HC Sen Road, Fountain, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2320281,28.6567032,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +9159,Tiwari Ji Confectioner,1,New Delhi,"43/1, Gali Pranthe Wali, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2306809,28.6561268,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,5 +6706,Wah Ji Wah,1,New Delhi,"1908, Opposite Gurudwara Sis Ganj Sahib, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2328586,28.6562478,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,59 +18082089,Zaika Mughlai Foods,1,New Delhi,"6490, Fatehpuri, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2233607,28.6566379,"Mughlai, Biryani",550,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,10 +312693,Al Yousuf,1,New Delhi,"5187, Ballimaran, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2254715,28.6551819,Mughlai,200,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,30 +308209,Amritsari Lassi Wala,1,New Delhi,"Shop 295, Fatehpuri Chowk, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2234007,28.6567084,Beverages,100,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,112 +306017,Annapurna Bhandar,1,New Delhi,"1463, Near Sheesh Ganj Gurudwara, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2323664,28.6563295,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,59 +304737,Bishan Swaroop Chaat Bhandar,1,New Delhi,"1421, Near Ashish Medicos, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2309504,28.6561525,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,40 +308318,Gole Hatti,1,New Delhi,"2-4, Church Mission Road, Fatehpuri, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2230342,28.6572505,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,116 +552,Haldiram's,1,New Delhi,"1454/2, Near Sheeshganj Gurudwara, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2316689,28.6563106,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,444 +6704,Kanwarji's,1,New Delhi,"1972-1973, Corner Gali Paranthe, Opposite Central Bank, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2307707,28.6562249,"Street Food, Chinese, North Indian, Mithai",300,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,163 +309722,Kedarnath Prem Chand Halwai,1,New Delhi,"Shop 4, Tiraha Kinari Bazar, Gali Paranthe Wale, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.229983,28.6556971,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,19 +18286206,Keventers,1,New Delhi,"1450/1, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2314893,28.6562039,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,63 +308894,Khan Omelette Corner,1,New Delhi,"48, Katra Bariyan, Lal Kuan, Near Fatehpuri Masjid, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2215109,28.6551982,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,43 +7545,Natraj Dahi Bhalle Wala,1,New Delhi,"1396, Main Road Near Central Bank, Opposite Paranthe Wali Gali, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2305013,28.6561992,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,1487 +9165,Old Famous Jalebi Wala,1,New Delhi,"Dariba Kalan, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.233555,28.6561321,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,752 +5458,Pt. Gaya Prasad Shiv Charan Paranthe Wale,1,New Delhi,"34, Gali Paranthe Wali, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2304115,28.6561011,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,437 +5467,Pt.Kanhaiyalal & Durga Prasad Dixit Paranthe Wale,1,New Delhi,"36, Gali Paranthe Wali, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2304674,28.6560207,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,297 +9161,Shiv Misthan Bhandar,1,New Delhi,"375, Kucha Ghasi Ram, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2243039,28.6568622,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,76 +302869,Special Jalebi Wala,1,New Delhi,"1469/1, Fabbara Chowk, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2320562,28.6566115,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,21 +1889,Tewari Bros Confectioners,1,New Delhi,"862, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2266392,28.6566371,"Street Food, North Indian, South Indian, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,51 +18466395,Annapurna Chaat & Sweets,1,New Delhi,"Near Sheeshganj Gurudwara, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2315132,28.6562432,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18469682,Delhi-6 The Chicken Planet,1,New Delhi,"2987/7, DDA Flats, Bari Masjid, Sarai Khalil, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",0,0,"Biryani, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18466396,Dessi Food,1,New Delhi,"2043, Katra Lachhoo Singh, H.C. Sen Marg, Chandni Chowk, Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2319961,28.6574304,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18466402,Foody Dragon,1,New Delhi,"2035, Near Katra Lachhu Singh, Fawara, Chandni Chowk, Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2319612,28.6572972,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +302859,Grover Eating Point,1,New Delhi,"1476, Deewan Hall Road, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2352925,28.6570185,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +308533,Hotel 121 Shakahari,1,New Delhi,"121, Kucha Ghasiram, Chatta Bhawani Shankar, Fatehpuri Chowk, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2234506,28.657811,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18462596,Lala Chaap Corner,1,New Delhi,"1388, Bazar Guliyan, Jama Masjid, Near Police Station, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.233113,28.6526767,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18333489,Meghraj & Sons,1,New Delhi,"292/293, Fateh Puri Chowk, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2233158,28.6565888,"Street Food, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18408052,Old Kheer Shop,1,New Delhi,"2867, Bazaar Sirkiwalan, Hauz Qazi, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.225538,28.65045,Desserts,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +302871,Punjabi Chicken,1,New Delhi,"9, Babu Market, Fuwara Chowk, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2316689,28.6573856,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18425711,Ratan Singh,1,New Delhi,"Shop 1444, Jama Masjid, Bazar Gulian Rd, Kucha Alam, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2338244,28.6531118,Mithai,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310678,Shri Bhujia Bhandar,1,New Delhi,"117, Moti Bazar, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",0,0,"Street Food, Mithai",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +300178,Chaina Ram Sindhi Confectioners,1,New Delhi,"6499, Fathepuri Chowk, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2235803,28.6566622,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,4.2,Green,Very Good,382 +1155,Giani's di Hatti,1,New Delhi,"651/52, Church Mission Road, Fatehpuri, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2233575,28.6579744,"Ice Cream, Mithai, North Indian, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,4.3,Green,Very Good,521 +9166,Jung Bahadur Kachori Wala,1,New Delhi,"1104, Maliwara, Jogiwari, Gali Paranthe Wali, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2298726,28.6556914,Street Food,50,Indian Rupees(Rs.),No,Yes,No,No,1,4.1,Green,Very Good,405 +18264992,Lakhori - Haveli Dharampura,1,New Delhi,"Haveli Dharampura, 2293, Gali Guliyan, Near Jama Masjid, Chandni Chowk, New Delhi",Chandni Chowk,"Chandni Chowk, New Delhi",77.2322078,28.653316,"Mughlai, Street Food",3000,Indian Rupees(Rs.),No,No,No,No,4,4.4,Green,Very Good,305 +18282012,Milk n More,1,New Delhi,"2406, Chawri Bazar, New Delhi",Chawri Bazar,"Chawri Bazar, New Delhi",77.2310851,28.650566,"Desserts, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,6 +303642,Kuremal Mohan Lal Kulfi Wale,1,New Delhi,"526, Kucha Pati Ram, Bazar Sita Ram, Near Chawri Bazar Metro Station, Chawri Bazar, New Delhi",Chawri Bazar,"Chawri Bazar, New Delhi",77.2270433,28.6477617,Ice Cream,200,Indian Rupees(Rs.),No,No,No,No,1,4.5,Dark Green,Excellent,545 +18281967,Hira Chaat Corner,1,New Delhi,"3636, Gali Lohe Wali, Chawri Bazar, New Delhi",Chawri Bazar,"Chawri Bazar, New Delhi",77.2293337,28.6501751,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,18 +18082228,Kuremal Mahavir Prasad Kulfi Wale,1,New Delhi,"546, Kucha Pati Ram, Sita Ram Bazar, Near Chawri Bazar Metro Station, Chawri Bazar, New Delhi",Chawri Bazar,"Chawri Bazar, New Delhi",77.2268188,28.6476059,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,36 +301287,Shakahari Restaurant,1,New Delhi,"3624/9, Chawri Bazar, New Delhi",Chawri Bazar,"Chawri Bazar, New Delhi",77.2270883,28.649513,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,185 +308192,Shri Gujrat Namkeen Bhandar,1,New Delhi,"3775, Charkhiwalan Gali, Khush Dil, Chawri Bazar, New Delhi",Chawri Bazar,"Chawri Bazar, New Delhi",77.2293345,28.6501776,"Street Food, Mithai",100,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,27 +306015,Standard Sweets,1,New Delhi,"3510, Chawri Bazar, New Delhi",Chawri Bazar,"Chawri Bazar, New Delhi",77.2273577,28.6494491,"Mithai, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,31 +311002,Sudarshan,1,New Delhi,"4097, Barshabulla Chowk, Chawri Bazar, New Delhi",Chawri Bazar,"Chawri Bazar, New Delhi",77.2302935,28.6504067,"Street Food, Beverages",150,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,54 +313511,Ustad Moinuddin Kebab,1,New Delhi,"Lal Kuan, Gali Qasimjan, Chawri Bazar, New Delhi",Chawri Bazar,"Chawri Bazar, New Delhi",77.2261003,28.6498667,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,21 +311022,Ashok Chaat Corner,1,New Delhi,"Shop 3488, Chowk Hauz Qazi, Near Chawri Bazar, New Delhi",Chawri Bazar,"Chawri Bazar, New Delhi",77.2268745,28.6493909,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,118 +303644,Jain Coffee House,1,New Delhi,"4013, Raghuganj, Near PNB ATM, Chawri Bazar, New Delhi",Chawri Bazar,"Chawri Bazar, New Delhi",77.2295582,28.65051,"Fast Food, Beverages",150,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,169 +307218,Shyam Sweets,1,New Delhi,"112, Barshahbulla Chowk, Near Metro Station, Chawri Bazar, New Delhi",Chawri Bazar,"Chawri Bazar, New Delhi",77.2303113,28.6504756,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,200 +304018,Spicy Food Court,1,New Delhi,"Khasra 361, Near Bank Of India, Sultanpur, Near, Chhatarpur, New Delhi",Chhatarpur,"Chhatarpur, New Delhi",77.16154855,28.49562447,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,23 +18239781,Aristocrat Sweet Shop,1,New Delhi,"Shop 9, Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.24861238,28.5400835,"Mithai, Bakery",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +18364354,Balluchi's - The Royal Cuisine,1,New Delhi,"K-1/10, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2518548,28.5399184,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,3,Orange,Average,4 +18175256,Bunty Dhaba,1,New Delhi,"19/1, Near B Block Gurudwara, EPDP Main Road, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.25204963,28.53972535,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,26 +7623,Gopal's Restaurant & Caterer's,1,New Delhi,"26, Ground Floor, Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.24894397,28.54027996,"North Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,22 +17953899,Horn Please,1,New Delhi,"D 616, Hotel Royal Castle Grand, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2564223,28.5374979,"North Indian, Mughlai, Chinese",1000,Indian Rupees(Rs.),Yes,Yes,Yes,No,3,3,Orange,Average,70 +309756,Khatey Raho,1,New Delhi,"Shop 22, Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2488511,28.5401398,"North Indian, Mughlai, Fast Food, South Indian",250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,26 +2595,Kolkata Biryani House,1,New Delhi,"Shop 49, Ground Floor, Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.24887993,28.54032355,"North Indian, Mughlai, Biryani",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,404 +7620,Kolkata Hot Kathi Roll,1,New Delhi,"8, Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2485628,28.5401027,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,35 +309161,Madly Bangalee,1,New Delhi,"Shop 9, Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2533122,28.5363941,"Mughlai, North Indian, Bengali, Continental",400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,135 +18249081,Oh! China,1,New Delhi,"K1/135, Opposite Oriental Bank of Commerce, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.24785432,28.54140536,"Chinese, Thai",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,16 +3632,Punjabi Zaika,1,New Delhi,"23, Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2534878,28.5364501,"Chinese, Mughlai, North Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,39 +7602,Rabi Snacks Corner,1,New Delhi,"44, Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.24898689,28.5401377,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,18 +1712,Republic of Chicken,1,New Delhi,"12 & 13, DDA, Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2534614,28.5364925,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,29 +300984,Roll n Roast,1,New Delhi,"7, Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.24858187,28.54001105,"North Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,27 +18429374,Roller's High,1,New Delhi,"K-1/38, EPDP Road, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",0,0,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,13 +18354627,Royal Chick 'N',1,New Delhi,"K-1/135, Main Road, C R Park, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2481801,28.5414227,"Mughlai, North Indian, Chinese",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,18 +301522,Royal Kolkata Biryani,1,New Delhi,"26, Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2487302,28.5404268,"North Indian, Chinese, Biryani",500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,14 +4973,Sameer's Restaurant,1,New Delhi,"125, 1st Floor, Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2533324,28.53629071,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,59 +3504,Sanjha Chulha,1,New Delhi,"27, C.S.C. Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.25324858,28.53638025,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,70 +18459885,Shepherd's,1,New Delhi,"E 778, Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",0,0,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +301405,Soya King,1,New Delhi,"Shop 25, Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2532497,28.5364506,North Indian,350,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,71 +18457499,Tasty Tonight,1,New Delhi,"Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",0,0,"North Indian, Mughlai, Chinese",1000,Indian Rupees(Rs.),No,No,No,No,3,3.1,Orange,Average,5 +18445801,The Mustard,1,New Delhi,"145, Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.248798,28.540204,Bengali,500,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,7 +18355107,Tibb's Frankie,1,New Delhi,"E-778, Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2534364,28.5363915,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,16 +18175328,Wazwaan Restaurant,1,New Delhi,"A-5, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2417726,28.5426944,"North Indian, Kashmiri",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,14 +7613,Yummi Kolkataa,1,New Delhi,"13, Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.248847,28.5399215,Mithai,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,17 +7599,Annapurna Sweet House,1,New Delhi,"38, CSC Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.25338604,28.53622797,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,55 +302936,Ashirbad,1,New Delhi,"Shop 3, Market 3, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2431467,28.5408504,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,46 +4608,Chocolatiers - The Chocolate Boutique,1,New Delhi,"9, DDA Market 4, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.248454,28.5371718,Desserts,100,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,112 +7636,Dadu Cutlet Shop,1,New Delhi,"39, C.S.C Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.25329351,28.53622856,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,99 +18373691,Dogs & Wiches,1,New Delhi,"Shop 105, 1st Floor, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2530626,28.53681321,"Continental, American, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,109 +7634,Maa Tara,1,New Delhi,"45, 46, & 47, Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2532976,28.5362306,"Bengali, North Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,458 +306028,My Spice Kitchen,1,New Delhi,"51, Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2487359,28.5403982,"North Indian, Mughlai, Biryani, Bengali",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,443 +311637,The Singing Tree,1,New Delhi,"Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2488222,28.5403609,Beverages,100,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,33 +18396171,Baba Chicken Ludhiana Wale,1,New Delhi,"K 1/38, EPDP Main Road, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.24996019,28.54047929,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18282004,Bengal Snacks,1,New Delhi,"Shop 53, Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.24868078,28.54036184,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +17989134,Brownies & More,1,New Delhi,"32, Market 4, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2485055,28.5371328,"Bakery, Fast Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18371396,Cafe Coffee Day,1,New Delhi,"K-1/14, Main Road, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2530302,28.5393728,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18396942,Craving Cure,1,New Delhi,"Shop 7, Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2533385,28.5366561,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18311930,Cuisine,1,New Delhi,"Rockland Inn, B-207, Block B, Outer Ring Road, Near Savitri Cinema Flyover, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2417726,28.5426944,"North Indian, Mughlai, Chinese",1500,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,1 +18481320,Food Nation,1,New Delhi,"Shop 22, Market 1, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",0,0,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +7635,Kamala Fast Food & Chinese,1,New Delhi,"32, Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.25298069,28.5359835,"Fast Food, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +7601,Lokenath Sweets,1,New Delhi,"22, Market 4, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2484567,28.5371718,Mithai,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18471314,Me and My Cake,1,New Delhi,"Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",0,0,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +309080,Chulha Punjabi Da,1,New Delhi,"36, C.S.C, Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.25327071,28.53634285,"North Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,41 +1358,Viva Hyderabad,1,New Delhi,"Shop 102, 1st Floor, DDA Market 2, Chittaranjan Park, New Delhi",Chittaranjan Park,"Chittaranjan Park, New Delhi",77.2529294,28.53692899,"Biryani, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,38 +5890,Metro Grill,1,New Delhi,"4th Floor, City Centre Mall, Rohini, New Delhi","City Centre Mall, Rohini","City Centre Mall, Rohini, New Delhi",77.1142232,28.7168739,"North Indian, Mughlai, Chinese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,134 +306513,Cafe Cruise,1,New Delhi,"UG 16-17, 1st Floor, City Square Mall, Rajouri Garden, New Delhi","City Square Mall, Rajouri Garden","City Square Mall, Rajouri Garden, New Delhi",77.1232509,28.6501775,"Continental, North Indian, Chinese",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.8,Orange,Average,153 +3089,Etal The Lounge Bar,1,New Delhi,"18-20, 2nd Floor, City Square Mall, Rajouri Garden, New Delhi","City Square Mall, Rajouri Garden","City Square Mall, Rajouri Garden, New Delhi",77.123654,28.6502181,"North Indian, Italian, Fast Food",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,455 +7061,"Game of Legends - Sports Bar, Grill, & Lounge",1,New Delhi,"Level 3, City Square Mall, Rajouri Garden, New Delhi","City Square Mall, Rajouri Garden","City Square Mall, Rajouri Garden, New Delhi",77.1233229,28.650366,"North Indian, Chinese, Continental, Italian",1450,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,609 +18466981,Al-raaya,1,New Delhi,"5B/1, Court Lane, Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.220848,28.671114,"Mughlai, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,6 +311093,Authentique Bites,1,New Delhi,"7, Rajpur Road, Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.2253817,28.6764039,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,17 +1055,Embassy,1,New Delhi,"2-13, Alipur Road, Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.2252021,28.6766555,"Chinese, North Indian, Mughlai",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3,Orange,Average,126 +18144470,Narang's Bake 'n' Cake,1,New Delhi,"Shop 53, New Market, Timarpur, Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.222238,28.7027947,"Bakery, Desserts, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +4089,New Darvesh,1,New Delhi,"B.D. Estate Market, Timarpur, Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.2203223,28.6976361,"Chinese, South Indian",150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,14 +311030,1UP,1,New Delhi,"13, Alipur Road, Exchange Store Building, Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.2252161,28.6762903,"Cafe, Italian, Continental",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,282 +9927,Gujarati Samaj Santushti,1,New Delhi,"2, Shri Delhi Gujarati Samaj, Raj Niwas Marg, Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.2241691,28.6722125,Gujarati,300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,95 +18261146,Hind Bakery & Chinese Fast Food,1,New Delhi,"50, New Market, Timarpur, Near Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.2222477,28.7028124,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424867,Hot Pot,1,New Delhi,"DTC Bus Pass Section, Timarpur Chowk, Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.2213398,28.7008282,Chinese,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18361206,Punjabi Flavour,1,New Delhi,"5, Khaibar Pass, Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.2212499,28.6919529,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424863,Saras Fast Food Feast,1,New Delhi,"Gujarati Samajh, Raj Niwas Marg, Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.2224176,28.6726275,"North Indian, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18361208,Shama Chicken Corner,1,New Delhi,"Khaibar Pass, Main Road, Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.2211471,28.6917878,"Biryani, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18398580,The Night Owl,1,New Delhi,"Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.2255613,28.6765107,Chinese,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18424871,Wimpy Sweets And Confectioners,1,New Delhi,"B.D. Estate Market, Timarpur, Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.2204415,28.6975181,"Bakery, Mithai",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18245298,Boa Village,1,New Delhi,"13, Alipur Road, Civil Lines, New Delhi",Civil Lines,"Civil Lines, New Delhi",77.2252919,28.6767537,"Chinese, Japanese, Korean, Asian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,225 +2578,Anand Ji Restaurant,1,New Delhi,"35, Community Centre, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.26811942,28.56171513,"Chinese, North Indian, Street Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,28 +709,Baskin Robbins,1,New Delhi,"67, Community Centre Market, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.2683524,28.5620725,Ice Cream,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,38 +1530,Bhoj Restaurant,1,New Delhi,"24, Community Center, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.26825587,28.56150782,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,54 +1401,Brijwasi Restaurant,1,New Delhi,"20, Community Center, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.268392,28.56159321,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,32 +602,Cafe Coffee Day - The Lounge,1,New Delhi,"14, Community Centre, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.2690337,28.562628,Cafe,750,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,42 +18175255,Cafe Coffee Day,1,New Delhi,"12, Community Centre, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.26926506,28.5624519,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,10 +2245,Chaat Tadka,1,New Delhi,"8, Community Center, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.26820022,28.56128843,"North Indian, Street Food, Mithai",300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,27 +2585,Chawla's Unique Chicken Corner,1,New Delhi,"14, Community Centre, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.26839837,28.56136028,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,35 +908,Dawat Khana,1,New Delhi,"17, Community Center, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.2688013,28.562384,"North Indian, Mughlai, Chinese",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.5,Orange,Average,82 +924,Eat n Joy,1,New Delhi,"16, Community Center, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.2684871,28.5614129,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,24 +7715,Khan Chicken Biryani,1,New Delhi,"Opposite LIC Office, Community Centre, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.26784986,28.56181849,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,14 +9476,Kolkata Roll,1,New Delhi,"Community Centre, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.2685365,28.56132406,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,16 +7686,R. Ahmad Food,1,New Delhi,"Community Centre, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.269169,28.562686,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,11 +305621,Sab Ke Khatir,1,New Delhi,"Community Centre, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.268562,28.560994,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,14 +1324,Bon Bon Pastry Shop,1,New Delhi,"73, Community Center, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.26831857,28.56217362,"Bakery, Desserts, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,91 +927,Moksha,1,New Delhi,"8, Community Center, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.26906691,28.56231173,North Indian,1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,110 +929,Pebble Street,1,New Delhi,"8, Community Center, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.26893816,28.56253759,"Italian, Tex-Mex, Continental, North Indian",2400,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.9,Yellow,Good,886 +18256780,Kebab Gallery,1,New Delhi,"Shop 86, Community Centre, New Friends Colony, New Delhi","Community Centre, New Friends Colony","Community Centre, New Friends Colony, New Delhi",77.26817206,28.56203051,"North Indian, Lucknowi",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +53,Amber,1,New Delhi,"N-19, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2208907,28.6301966,"North Indian, Chinese, Mughlai",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.6,Orange,Average,152 +307271,Attitude Kitchen & Bar,1,New Delhi,"N-12, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22035229,28.63004355,"North Indian, Continental, Italian",1300,Indian Rupees(Rs.),Yes,No,No,No,3,2.9,Orange,Average,140 +596,Cafe Coffee Day,1,New Delhi,"4, Rajiv Chowk, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2198128,28.6329609,Cafe,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,277 +1127,Castle 9,1,New Delhi,"B-45/47, 1st Floor, Near PVR Plaza, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2194984,28.6348572,"Finger Food, Continental, North Indian, Chinese",1350,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,1099 +4237,Costa Coffee,1,New Delhi,"Shop 49, Bengali Market, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2321919,28.62925605,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,76 +6357,Delhi Darbar Dhaba,1,New Delhi,"7, NDMC Market, Babar Road, Near Bengali Market, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2298312,28.6305968,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,89 +18124357,Garam Dharam,1,New Delhi,"M-16, Ground Floor, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2226871,28.6317119,North Indian,1300,Indian Rupees(Rs.),No,Yes,No,No,3,3.4,Orange,Average,1523 +2913,Gola Sizzlers,1,New Delhi,"K-24, Opposite PVR Plaza Cinema, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2198577,28.6352499,"Chinese, North Indian, Mughlai, Continental",1600,Indian Rupees(Rs.),No,Yes,No,No,3,3,Orange,Average,671 +3506,Indian Coffee House,1,New Delhi,"2nd Floor, Mohan Singh Place, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2160401,28.6305402,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,1300 +6957,My Bar Lounge & Restaurant,1,New Delhi,"G-68, Near Metro Exit 7 & 8, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2165791,28.6323836,"North Indian, Chinese, Italian, Continental",1000,Indian Rupees(Rs.),No,No,No,No,3,2.7,Orange,Average,2460 +304154,My Bar Square,1,New Delhi,"E-34 & 35, 1st Floor, Inner Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2213398,28.6328378,"North Indian, Chinese, Italian, Continental",1000,Indian Rupees(Rs.),No,No,No,No,3,2.5,Orange,Average,1096 +320,Sagar Ratna,1,New Delhi,"K-15, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.220409,28.6356827,"South Indian, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,499 +310097,The Immigrant Cafe,1,New Delhi,"B-45, 1st Floor, Inner Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2190044,28.6340485,"North Indian, Italian, Continental",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,563 +18418277,MOB Brewpub,1,New Delhi,"M 44, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2226422,28.6332756,"Continental, Italian, Asian, Indian",1500,Indian Rupees(Rs.),No,No,No,No,3,4.7,Dark Green,Excellent,52 +310143,Naturals Ice Cream,1,New Delhi,"L-8, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2221482,28.6343484,Ice Cream,150,Indian Rupees(Rs.),No,Yes,No,No,1,4.9,Dark Green,Excellent,2620 +18357940,Zabardast Indian Kitchen,1,New Delhi,"E-13/29, Ground Floor, Middle Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22217988,28.63259937,North Indian,1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.7,Dark Green,Excellent,242 +300595,Anand Restaurant,1,New Delhi,"15/96, Scindia House, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2208008,28.6290232,North Indian,550,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,485 +55,Berco's,1,New Delhi,"G-2/43, Middle Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2172977,28.6324521,"Chinese, Thai",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,2639 +3168,Blues,1,New Delhi,"N-18, Outer Circle, Opposite Katurbha Gandhi Marg, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22061079,28.62986493,"Continental, Mexican, American, Italian, North Indian",1100,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,706 +310448,Burger King,1,New Delhi,"E-8, Inner Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2212499,28.6327396,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,2093 +18237356,Burger Singh,1,New Delhi,"H-45, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.21751753,28.63432028,"Burger, Juices, Finger Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,548 +303034,Cafe Coffee Day The Square,1,New Delhi,"C-14, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.21993454,28.63372555,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,361 +18070476,Cafe Dalal Street,1,New Delhi,"M-89/90, M Block, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2228667,28.6332522,"North Indian, European",1500,Indian Rupees(Rs.),No,Yes,No,No,3,3.7,Yellow,Good,873 +18208892,Cafe Hawkers,1,New Delhi,"L-22, Radial Road, Near Odean Cinema, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2211601,28.6346126,"Chinese, Continental, North Indian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,673 +18157403,Cafe Public Connection,1,New Delhi,"F-39-40, 1st & 2nd Floor, Inner Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2202619,28.6314806,"North Indian, Continental, Italian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,834 +18306523,Caf MRP,1,New Delhi,"1st Floor, C-39, Opposite Odean Cinema, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2208907,28.6344973,"North Indian, Chinese, Italian, Mediterranean",800,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,877 +309664,Caffe Tonino,1,New Delhi,"1st Floor, PVR Plaza Building, H Block, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2194535,28.6348977,"Pizza, Italian, Cafe",1400,Indian Rupees(Rs.),No,Yes,No,No,3,3.9,Yellow,Good,1503 +302878,Cha Bar,1,New Delhi,"N-81, Oxford Bookstore, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22215876,28.63122333,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,3206 +18237315,Chaayos,1,New Delhi,"F-14/15, Mezzanine, 1st Floor, F Block, Inner Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22035263,28.63146522,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,487 +305453,Chew - Pan Asian Cafe,1,New Delhi,"M-16, 1st Floor, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2228218,28.6320384,"Asian, Japanese, Chinese, Thai",1700,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,2003 +308804,China Garden,1,New Delhi,"G-4/5/6, Marina Arcade, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.217118,28.6339581,Chinese,1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,496 +311373,Desi Vibes,1,New Delhi,"2nd Floor, N-95, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2206488,28.6302469,"North Indian, Mughlai",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,841 +143,Domino's Pizza,1,New Delhi,"M-42, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2228959,28.6332312,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,336 +308772,Dunkin' Donuts,1,New Delhi,"Ground Floor, HT House, Kasturba Gandhi Marg, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22320214,28.62801416,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,271 +7855,Dunkin' Donuts,1,New Delhi,"N-6, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2196331,28.6301662,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,1607 +66,Embassy,1,New Delhi,"11-D, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2210029,28.6336789,"North Indian, Continental, European",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.5,Yellow,Good,706 +18235515,FLYP@MTV,1,New Delhi,"N/57 & N/60, 1st Floor, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22072076,28.63033313,"North Indian, Mexican, Italian, Continental",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,1379 +18247029,GoGourmet,1,New Delhi,"18-20, Hindustan Times Buliding, KG Marg, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.223175,28.627897,"Healthy Food, Beverages",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,55 +2298,Haldiram's,1,New Delhi,"L-6, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2223278,28.6340072,"Street Food, North Indian, South Indian, Chinese, Mithai",550,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,1151 +310490,Indian Grill Company,1,New Delhi,"M-48, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2226871,28.6335935,"North Indian, Continental",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,626 +1896,Jain Chawal Wale,1,New Delhi,"P-1/190, Connaught Circus, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.216129,28.6318938,North Indian,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,301 +18157384,Jungle Jamboree,1,New Delhi,"P-17/90, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2161749,28.6324794,"North Indian, Continental, Chinese, Italian, Thai, Mughlai",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,1174 +2903,Kake Da Hotel,1,New Delhi,"67, Municipal Market, Connaught Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2218787,28.6350395,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,2185 +301653,Kebab Xpress,1,New Delhi,"N-5, Ground Floor, Opposite Palika Market Gate 5, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2196331,28.6305246,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,321 +2195,KFC,1,New Delhi,"6 & 7, Scindia House, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.217,28.63136,"American, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,427 +7367,Khan Chacha,1,New Delhi,"D-3, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2208907,28.6340493,"Mughlai, North Indian",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,1189 +309586,Kinbuck 2,1,New Delhi,"P-10/90, 1st & 2nd Floor, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2163994,28.6320976,"North Indian, Italian, Mexican, Chettinad, Chinese, Lebanese",1600,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,1286 +18398577,La Americana,1,New Delhi,"42, M Block, Outer circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.222736,28.6331936,"Fast Food, Burger",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,41 +18435302,Lady Baga,1,New Delhi,"P-3/90, Connaught Circus, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.21645035,28.63123951,"Goan, Seafood",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,277 +9747,Life Caffe,1,New Delhi,"B-49, The Corus, Inner Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.21829101,28.63417726,"Cafe, North Indian, Italian, Japanese, Fast Food",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,391 +312603,Lord of the Drinks,1,New Delhi,"G-72, 1st Floor, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2167587,28.6319527,"European, Chinese, North Indian, Italian",2200,Indian Rupees(Rs.),No,No,No,No,4,3.9,Yellow,Good,2589 +177,McDonald's,1,New Delhi,"P-14, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.216411,28.6323132,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,388 +9959,McDonald's,1,New Delhi,"N- 10, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22015667,28.63000833,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,108 +17953940,Moets Arabica,1,New Delhi,"N-20, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2208276,28.6303042,"Arabian, Mexican",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,95 +18441674,Mother India,1,New Delhi,"Ground Floor, H-11, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2190709,28.6355337,"Bengali, South Indian, North Indian, Mughlai",1400,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,66 +307485,Mughlai Junction,1,New Delhi,"N-33/10, Middle Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2204415,28.6307809,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,310 +311057,My Bar Headquarters,1,New Delhi,"N-49, 2nd Floor, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2198128,28.630721,"North Indian, Mughlai, Chinese",1000,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,3010 +309955,Nando's,1,New Delhi,"F-29/30 A, Malhotra Building, Inner Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.21980177,28.63089815,"Portuguese, African",1200,Indian Rupees(Rs.),No,Yes,No,No,3,3.7,Yellow,Good,1891 +870,Nizam's Kathi Kabab,1,New Delhi,"H-5/6, Plaza Building, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2193637,28.6349788,"North Indian, Fast Food",900,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,1761 +18265711,Oh My God,1,New Delhi,"14-15, 2nd Floor, Block F, Inner Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2205314,28.6312375,"North Indian, Italian, Chinese, Mexican",1400,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,367 +312601,Open House Cafe,1,New Delhi,"C-37, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22071037,28.63430998,"North Indian, Chinese, Mughlai, Italian",1700,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,1158 +3393,Parikrama - The Revolving Restaurant,1,New Delhi,"22, Antriksh Bhavan, Kasturba Gandhi Marg, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22263787,28.62845265,"North Indian, Chinese, Mughlai",2400,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,2689 +2504,Pind Balluchi,1,New Delhi,"13, Regal Building, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2180107,28.6308607,"North Indian, Mughlai",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.6,Yellow,Good,1434 +249,Pizza Hut,1,New Delhi,"M-20, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2228218,28.6322176,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.5,Yellow,Good,541 +18423119,Playboy Cafe,1,New Delhi,"49/1, 1st Floor, N Block, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2198128,28.6306314,"North Indian, Chinese, Continental",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,140 +18255131,Privee',1,New Delhi,"Shangri-La's Eros Hotel Complex, Above Kanishka Shopping Mall Arcade, 19, Ashoka Road, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.21826,28.620999,"Chinese, Italian, Continental, North Indian",5000,Indian Rupees(Rs.),No,No,No,No,4,3.6,Yellow,Good,61 +306497,Punjabi By Nature,1,New Delhi,"30-B, F Block, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2197679,28.6308511,"North Indian, Mughlai",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,1256 +308244,Quote - The Eclectic Bar and Lounge,1,New Delhi,"2nd Floor, 44, Regal Cinema Complex, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2171077,28.6308473,"Finger Food, European, North Indian",1700,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,422 +1286,Rajdhani Thali Restaurant,1,New Delhi,"9-A, Atmaram Mansion, Scindia House, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22053636,28.62981696,"Gujarati, Rajasthani",950,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,1134 +4815,Route 04,1,New Delhi,"K-2, Middle Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2200822,28.6348681,"Continental, American, Tex-Mex, North Indian",1350,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,1863 +310463,Sbarro,1,New Delhi,"N-4, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2197229,28.630354,"Pizza, Italian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,1311 +5738,Shake Square,1,New Delhi,"A-17, Inner Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2181959,28.6335234,"Beverages, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,1333 +302310,South Indian Snacks,1,New Delhi,"Near Jantar Mantar Bus Stand, Jantar Mantar Road, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.21608289,28.62612864,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,50 +5608,SSKY Bar & Lounge,1,New Delhi,"Antariksh Bhavan, 22, Kasturba Gandhi Marg, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22247191,28.6286716,"Mughlai, North Indian, Chinese",2800,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,92 +307535,Starbucks,1,New Delhi,"N-16, N Block, Near Rajiv Chowk Metro Gate 7, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22063158,28.63014067,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,552 +302156,Subway,1,New Delhi,"M-8, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.222238,28.6311315,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,276 +18238278,Tamasha,1,New Delhi,"28, Kasturba Gandhi Marg, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.221744,28.629606,"Finger Food, North Indian, Continental, Italian",1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,1801 +905,Taste of China,1,New Delhi,"N-18, Outer Circle, Opposite Kasturba Gandhi Marg, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2204748,28.6300841,"Chinese, Thai",1200,Indian Rupees(Rs.),No,Yes,No,No,3,3.5,Yellow,Good,327 +18281985,Teddy Boy,1,New Delhi,"N-86, 1st Floor, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2198128,28.6301834,"North Indian, Continental, Finger Food",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,1020 +307060,The Beer Cafe - BIGGIE,1,New Delhi,"D-2, Inner Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2208008,28.6339511,"Finger Food, North Indian, Italian",1250,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,645 +18425735,The Flying Saucer Cafe,1,New Delhi,"E-42 & 43, Inner Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2210703,28.6315577,"Italian, Mediterranean, Continental, North Indian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,143 +313256,The Junkyard Cafe,1,New Delhi,"91, 2nd Floor, N Block, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2207923,28.6303196,"North Indian, Mediterranean, Asian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,1545 +18337893,The Luggage Room Kitchen And Bar,1,New Delhi,"M-39, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2228667,28.6331626,"North Indian, Continental, Fast Food",1400,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,63 +307190,The Rolling Joint,1,New Delhi,"M-61/1, Middle Lane, Behind Odeon Cinema, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2219685,28.6335249,Fast Food,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,783 +309790,The Vault Cafe,1,New Delhi,"F-60, 2nd Floor, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.21964553,28.63104411,"North Indian, Mediterranean, Asian, Continental",1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,3413 +1800,Veda,1,New Delhi,"H-27, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2181061,28.6352172,"North Indian, Mughlai",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,1087 +301605,Warehouse Cafe,1,New Delhi,"D -19/20, 1st Floor, Inner Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22086292,28.63384356,"American, Continental, Italian, North Indian, Asian",1500,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,4914 +3394,Zaffran,1,New Delhi,"D-26/28, Hotel Palace Heights, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.221559,28.6336168,"North Indian, Mughlai",1800,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,908 +930,Zen,1,New Delhi,"B-25, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2192738,28.6342534,"Chinese, Japanese, Italian, Seafood",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,1027 +309073,Zizo,1,New Delhi,"K-18 & 22, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2199026,28.635299,"Lebanese, Mediterranean, Middle Eastern, Arabian",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,1071 +18414481,Kettle & Kegs,1,New Delhi,"Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.23041,28.636975,Tea,200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,0 +18469940,Ovenstory Pizza,1,New Delhi,"Gandhi Market, Minto Road, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22947,28.637044,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,0 +18380361,Shree Hari Vaishnav Dhaba,1,New Delhi,"Shop 20, NDMC Market, Babar Road, Near Bengali Market, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2296803,28.6302952,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18241537,38 Barracks,1,New Delhi,"M-38, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22285848,28.63302489,"North Indian, Italian, Asian, American",1600,Indian Rupees(Rs.),Yes,No,No,No,3,4.4,Green,Very Good,840 +309478,Ambrosia Bliss,1,New Delhi,"2nd Floor, L-51 to 54, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22212523,28.63386651,"North Indian, Chinese, Italian, Continental",1800,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,2333 +7713,Ardor 2.1,1,New Delhi,"N-55/56 & 88/89, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2201721,28.6300384,"North Indian, Chinese, Continental, Italian",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,4.1,Green,Very Good,1821 +301489,Barbeque Nation,1,New Delhi,"2nd Floor, Munshilal Building, Block N, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22067215,28.62996616,"North Indian, Chinese",1600,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,3164 +18219558,Bikkgane Biryani,1,New Delhi,"P-2/90, Opposite PVR Rivoli, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2161897,28.6316714,"Biryani, North Indian, Hyderabadi",800,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,740 +18216915,Biryani Blues,1,New Delhi,"Showroom 9, Scindia House, Connaught Circus, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2205314,28.6299831,"Biryani, Hyderabadi",1000,Indian Rupees(Rs.),No,Yes,No,No,3,4,Green,Very Good,510 +306913,Caffe 9,1,New Delhi,"P-15, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2162198,28.6324389,"North Indian, Chinese, Italian, American, Middle Eastern",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,4.2,Green,Very Good,961 +307036,Excuse Me Boss,1,New Delhi,"F-14/15, Middle Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2208457,28.6309539,"Continental, North Indian, Chinese, Mediterranean",1800,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,799 +67,Fa Yian,1,New Delhi,"A-25/5, Middle Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2172977,28.6328105,Chinese,1200,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,412 +18233593,Farzi Cafe,1,New Delhi,"38/39, Level 1, Block E , Inner Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2214296,28.6323984,Modern Indian,2200,Indian Rupees(Rs.),No,No,No,No,4,4.4,Green,Very Good,1942 +310123,Fuji Japanese Restaurant,1,New Delhi,"M-41/2, Speedbird House, Middle Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22193044,28.63298369,Japanese,2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,4,Green,Very Good,312 +18198427,Healthy Routes,1,New Delhi,"C-24, Middle Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2205314,28.6348214,"Healthy Food, Continental, Italian",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,4,Green,Very Good,361 +18279449,HotMess,1,New Delhi,"M-11, Middle Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.222238,28.6326547,"North Indian, Mediterranean, Asian, Fast Food",1900,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.3,Green,Very Good,1129 +18237357,House of Commons,1,New Delhi,"M-39, 2nd Floor, Outer Circle, Opposite Shankar Market, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2227769,28.6330645,"Continental, Mediterranean, Italian, North Indian",1400,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,510 +18254558,Johnny Rockets,1,New Delhi,"N-3, Radial Road 1, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2197229,28.6304436,"Fast Food, American, Burger",1000,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,608 +18246991,Odeon Social,1,New Delhi,"1st Floor, 23, Odeon Building, Radial 5, D Block, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22090885,28.63424877,"Continental, American, Asian, North Indian",1600,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,1959 +309859,Pebble Street,1,New Delhi,"61-62, N Block, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2204415,28.6302434,"Italian, Mexican, Continental, North Indian, Finger Food",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,817 +18294220,Piali - The Curry Bistro,1,New Delhi,"K 41, Level 1, Opposite PVR Plaza, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2198577,28.6352499,"Asian, North Indian",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,400 +900,Saravana Bhavan,1,New Delhi,"P-13, Connaught Circus, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2163096,28.6323578,South Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,4.3,Green,Very Good,5172 +18294269,Smoke On Water,1,New Delhi,"D-26, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2215438,28.6336429,"Continental, Mexican, Burger, American, Pizza, Tex-Mex",1300,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,467 +301011,Starbucks,1,New Delhi,"Block A, Hamilton House, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2177019,28.6321771,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,2417 +18423151,The Darzi Bar & Kitchen,1,New Delhi,"H-55, 1st Floor, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2191391,28.6355397,"North Indian, European",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,90 +18454488,The G.T. Road,1,New Delhi,"M 39, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2228913,28.6332275,"North Indian, Afghani, Mughlai",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.3,Green,Very Good,104 +308579,The Town House Cafe,1,New Delhi,"Munshilal Building, N Block, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22054273,28.62997057,"Continental, North Indian, Italian, Asian",2100,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,2252 +910,United Coffee House,1,New Delhi,"E-15, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2212499,28.6324708,"North Indian, European, Asian, Mediterranean",2200,Indian Rupees(Rs.),Yes,No,No,No,4,4.1,Green,Very Good,1838 +18216901,Unplugged Courtyard,1,New Delhi,"Near Odeon Cinema, L Block, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.22129744,28.63447388,"North Indian, Continental",1600,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,1758 +301114,Wenger's Deli,1,New Delhi,"A-18, Radial Road, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2182858,28.6336216,"Bakery, Desserts, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,4.3,Green,Very Good,1457 +4249,Wenger's,1,New Delhi,"A-16, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2183326,28.6333676,"Bakery, Fast Food, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,4.3,Green,Very Good,3591 +18222559,{Niche} - Cafe & Bar,1,New Delhi,"2nd & 3rd Floor, M-16, M Block, Outer Circle, Connaught Place, New Delhi",Connaught Place,"Connaught Place, New Delhi",77.2225074,28.6315156,"North Indian, Chinese, Italian, Continental",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,492 +303204,Chicken Minar,1,New Delhi,"10, Crescent Square Mall, DC Chowk, Rohini, New Delhi","Crescent Square Mall, Rohini","Crescent Square Mall, Rohini, New Delhi",77.1250143,28.7181477,"North Indian, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,77 +8881,G Lounge,1,New Delhi,"2nd Floor, Crescent Mall, DC Chowk, Rohini, New Delhi","Crescent Square Mall, Rohini","Crescent Square Mall, Rohini, New Delhi",77.124976,28.7182809,"North Indian, Chinese",1900,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,113 +310435,Gyms Kook,1,New Delhi,"S-22, Crescent Square Mall, DC Chowk, Rohini, New Delhi","Crescent Square Mall, Rohini","Crescent Square Mall, Rohini, New Delhi",77.125077,28.7186064,"Continental, Italian",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.3,Orange,Average,140 +309051,Burger Joint,1,New Delhi,"14, Crescent Square Mall, DC Chowk, Rohini, New Delhi","Crescent Square Mall, Rohini","Crescent Square Mall, Rohini, New Delhi",77.1248938,28.7183684,"Fast Food, Burger",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,164 +1258,Eleven to Eleven,1,New Delhi,"3rd Floor, Cross River Mall, Karkardooma, New Delhi","Cross River Mall, Karkardooma","Cross River Mall, Karkardooma, New Delhi",77.3027142,28.65784,"North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,106 +2308,Le Chef,1,New Delhi,"2nd Floor, Cross River Mall, Karkardooma, New Delhi","Cross River Mall, Karkardooma","Cross River Mall, Karkardooma, New Delhi",77.3023283,28.6571108,"North Indian, Chinese, South Indian, Fast Food",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,134 +195,McDonald's,1,New Delhi,"9-B & C, Cross River Mall, Karkardooma, New Delhi","Cross River Mall, Karkardooma","Cross River Mall, Karkardooma, New Delhi",77.3022802,28.657631,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,77 +307940,The Buffet Wagon,1,New Delhi,"G-10, Ground Floor, Cross River Mall, Karkardooma, New Delhi","Cross River Mall, Karkardooma","Cross River Mall, Karkardooma, New Delhi",77.3022817,28.6576462,North Indian,950,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,102 +2299,Haldiram's,1,New Delhi,"G-42-48, Cross River Mall, Karkardooma, New Delhi","Cross River Mall, Karkardooma","Cross River Mall, Karkardooma, New Delhi",77.3018958,28.6567112,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,217 +5997,Connexions Bar - Crowne Plaza,1,New Delhi,"Crowne Plaza, Twin District Centre, Sector 10, Rohini, New Delhi","Crowne Plaza Hotel, Rohini","Crowne Plaza Hotel, Rohini, New Delhi",77.1104921,28.7208561,Finger Food,2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,59 +6030,Deli - Crowne Plaza,1,New Delhi,"Crowne Plaza, Twin District Centre, Sector 10, Rohini, New Delhi","Crowne Plaza Hotel, Rohini","Crowne Plaza Hotel, Rohini, New Delhi",77.1104047,28.7203475,"Bakery, Desserts, Fast Food",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,60 +307362,Lobby Lounge - Crowne Plaza,1,New Delhi,"Crowne Plaza, 13 B, District Centre, Mayur Vihar Phase 1, New Delhi","Crowne Plaza, Mayur Vihar Phase 1","Crowne Plaza, Mayur Vihar Phase 1, New Delhi",77.2974845,28.5902478,Finger Food,2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,12 +307361,Infinity - Crowne Plaza,1,New Delhi,"Crowne Plaza, 13 B, District Centre, Mayur Vihar Phase 1, New Delhi","Crowne Plaza, Mayur Vihar Phase 1","Crowne Plaza, Mayur Vihar Phase 1, New Delhi",77.2975743,28.590346,"Italian, North Indian, Continental",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,115 +3105,Fiery Grills,1,New Delhi,"306, D Mall, Netaji Subhash Place, New Delhi","D Mall, Netaji Subhash Place","D Mall, Netaji Subhash Place, New Delhi",77.1527715,28.6927868,"North Indian, Chinese, Continental",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,165 +9960,McDonald's,1,New Delhi,"D Mall, Netaji Subhash Place, New Delhi","D Mall, Netaji Subhash Place","D Mall, Netaji Subhash Place, New Delhi",77.1527796,28.6925129,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,41 +18014114,Cafe Desire,1,New Delhi,"Shop 101, 1st Floor, D Mall, Netaji Subhash Place, New Delhi","D Mall, Netaji Subhash Place","D Mall, Netaji Subhash Place, New Delhi",77.1526057,28.6926319,"North Indian, Chinese, Finger Food",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,116 +3894,Haldiram's,1,New Delhi,"D Mall, Netaji Subhash Place, New Delhi","D Mall, Netaji Subhash Place","D Mall, Netaji Subhash Place, New Delhi",77.1518867,28.691936,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",550,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,262 +306479,Kake Di Hatti,1,New Delhi,"21, D Mall, Netaji Subhash Place, New Delhi","D Mall, Netaji Subhash Place","D Mall, Netaji Subhash Place, New Delhi",77.1528346,28.6928645,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,364 +3183,Akash Deep,1,New Delhi,"3627, 1st Floor, Golcha Cinema Corner, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2403806,28.6442398,"North Indian, South Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,28 +5451,Al Saad Foods,1,New Delhi,"Shop 13, Rajdhani D.D.A. Market, Near Badi Masjid, Turkman Gate, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2321629,28.6433222,"North Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +5464,Cafe Coffee Day,1,New Delhi,"3631, Ground Floor, Hameed Manzil, Near Golcha Cinema, Netaji Subhash Marg, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2402908,28.6445896,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,22 +3182,Chandrika,1,New Delhi,"4/9, Near Bank of India and Delite Cinema, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2373386,28.6409469,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18057826,Dawat-E-Chaman,1,New Delhi,"5051/3-4, Netaji Subhash Marg, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2402908,28.6464711,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,45 +18275791,Kallu Nihari,1,New Delhi,"180, Chhatta Lal Mian, Behind Delite Cinema, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2373206,28.6421251,Mughlai,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18261700,King Bikaneri,1,New Delhi,"3/5, Asaf Ali Road, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2341388,28.6415395,"North Indian, Chinese, Fast Food, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18228864,Manchanda Bakery,1,New Delhi,"Shop 7/36, Near Fire Station, Ansari Road, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2442871,28.6461798,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +310792,McDonald's,1,New Delhi,"E-25, Netaji Subhash Marg, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2405333,28.6437229,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,23 +18222587,Mehta Restaurant,1,New Delhi,"3627/1, Near Golcha Cinema, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2403616,28.6442887,"Street Food, Mithai",150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,6 +309530,Shree Jee Rasoi,1,New Delhi,"5, Pratap Bhawan, Near Passport Office, Bahadur Shaz Zafar Marg, ITO, Near Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2424889,28.62954592,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,33 +5462,Taj Snacks,1,New Delhi,"3575, Netaji Subhash Marg, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2404704,28.6428148,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +3181,Zaika,1,New Delhi,"3615, Near Golcha Cinema, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.240526,28.6437016,"North Indian, Chinese, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,159 +9912,Bagli's Kitchen,1,New Delhi,"Bahadurshah Zafar Marg, Near, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.24076111,28.63814444,Parsi,500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,85 +3180,Bhaja Govindam,1,New Delhi,"Delite Cinema Building, Main Asaf Ali Road, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2360697,28.6411412,"North Indian, South Indian",700,Indian Rupees(Rs.),Yes,No,No,No,2,3.8,Yellow,Good,189 +4092,Changezi Chicken,1,New Delhi,"3614, N.S.Marg, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2402908,28.6435145,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,519 +18261683,Dilli Gate,1,New Delhi,"3575/3576, Main Road, Near Sablok Clinic, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2404704,28.6428148,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,26 +4715,Jahangeer Foods,1,New Delhi,"5034, Netaji Subhash Marg, Mahavir Vatika, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2404704,28.6482801,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,124 +481,Moti Mahal,1,New Delhi,"3703, Netaji Subhash Marg, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.240201,28.6461938,"North Indian, Chinese",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,711 +302232,Nandlal Ka Dhaba,1,New Delhi,"4701/2, Ansari Road, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2436136,28.6450853,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,109 +1044,Sugandh,1,New Delhi,"4702/21, Ansari Road, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2436136,28.6451749,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,57 +3185,Suvidha Vegetarian,1,New Delhi,"3058, Near Golcha Cinema, Netaji Subhash Marg, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2398417,28.6437405,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,88 +18292467,Anupam Jalpan,1,New Delhi,"Ansari Road, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2436136,28.6450853,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18390082,Aunty's Kitchen,1,New Delhi,"Shop 7 & 8, Golcha Cinema, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2420496,28.6448122,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18466971,Cafe Coffee Day,1,New Delhi,"MBD House, Gulab Bhavan, 6 Bhadurshah Zafar Marg, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",0,0,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449652,Delhi 6 Foods,1,New Delhi,"3787, Netaji Subhash Marg, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",0,0,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18288623,Fry Centre,1,New Delhi,"5035, Netaji Subhash Marg, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2404428,28.6482292,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18345506,Hilal Hotel Nihari,1,New Delhi,"Gali Madarsa Hussain Baksh, Matia Mahal, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",0,0,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18397709,Iqbal's Mughal Cuisine,1,New Delhi,"5051, Netaji Subhash Marg, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2414133,28.6444725,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18294896,Kake Di Hatti Punjabi Khana,1,New Delhi,"Shop 13/2, Tikona Market, Katra Chobey Lal, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2357696,28.6413413,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +6678,Kaushal Dhaba,1,New Delhi,"Opposite Delite Cinema, Asaf Ali Road, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2357105,28.6410173,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18351471,Khan Foods,1,New Delhi,"G 3663/72, Netaji Subhash Marg, Near Golcha Cinema, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.24033283,28.6439042,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18206818,Kumar Sweet House,1,New Delhi,"5, Gandhi Market, Minto Road, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2444219,28.6452519,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +5463,Negi Restaurant,1,New Delhi,"3454, Near Mother Dairy, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2400213,28.6411593,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18345380,Old Delhi Food Factory,1,New Delhi,"Turkman Gate, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.243883,28.6449318,Mughlai,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +5450,Parantha Point,1,New Delhi,"Shop 7, Fruit Market, Daya Nand Road, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2420857,28.6448275,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18292465,R.P.W Pizza,1,New Delhi,"Shop 7, Dayanand Marg Fruit Market, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2419072,28.644762,Pizza,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18292472,Rajdhani Restaurant,1,New Delhi,"Netaji Subhash Marg, Near Golcha Cinema, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2402908,28.6451272,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449638,Roll's World,1,New Delhi,"Opposite Delite Cinema, Asaf Ali Road, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2358133,28.6413034,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449640,Shree Krishna Dhaba,1,New Delhi,"Netaji Subhash Marg, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2400961,28.6477718,"North Indian, South Indian",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18492527,Taj Chicken Point,1,New Delhi,"1205, Behind Delite Cinema, Daryaganj, New Delhi Daryaganj",Daryaganj,"Daryaganj, New Delhi",0,0,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +303637,Domino's Pizza,1,New Delhi,"Ground Floor, E-23, Netaji Subhash Marg, Opposite Golcha Cinema, Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2402141,28.6440556,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.3,Red,Poor,32 +304181,Delhi 6 - Royal Cuisine Of The Walled City,1,New Delhi,"Daryaganj, New Delhi",Daryaganj,"Daryaganj, New Delhi",77.2400213,28.6480581,Mughlai,500,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,271 +308183,Food Hub,1,New Delhi,"DDA Market, Kalu Sarai, Hauz Khas, New Delhi","DDA Market, Kalu Sarai, Hauz Khas","DDA Market, Kalu Sarai, Hauz Khas, New Delhi",77.2038911,28.5419032,"Bakery, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +313059,RR China Tawun,1,New Delhi,"DDA Market, Kalu Sarai, Hauz Khas, New Delhi","DDA Market, Kalu Sarai, Hauz Khas","DDA Market, Kalu Sarai, Hauz Khas, New Delhi",77.204111,28.5417882,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +763,Aka Saka,1,New Delhi,"28, Main Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2304115,28.5730331,"Chinese, Japanese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,176 +7557,Anil Mishtan Wala,1,New Delhi,"23-24, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2298726,28.5732507,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +525,Barista,1,New Delhi,"15, Gyandeep, Main Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.230142,28.5735453,Cafe,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,73 +7561,Cafe 1 Fast Food,1,New Delhi,"A-1, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2296031,28.573494,"Fast Food, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,12 +18387105,Cake Central - Premier Cake Design Studio,1,New Delhi,"D Block, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",0,0,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,13 +18451576,Chawla's Tandoori Junction,1,New Delhi,"Shop 25,27 & 29, Defence Colony Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2385256,28.57750982,"North Indian, Chinese, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,33 +580,Chawnsan Chef,1,New Delhi,"108 & 126, Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2388538,28.5780492,"Mughlai, North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,104 +308703,Choco Kraft,1,New Delhi,"A-24, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.238315,28.5774602,"Bakery, Desserts",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,12 +60,Colonel's Kababz,1,New Delhi,"29, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2305911,28.5740362,"North Indian, Mughlai",900,Indian Rupees(Rs.),Yes,No,No,No,2,3.2,Orange,Average,600 +305123,Confectionately Seerat's,1,New Delhi,"A 446, Ground Floor, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2318151,28.5765207,"Bakery, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,13 +18265689,Country Curries,1,New Delhi,"136, Defence Colony Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.23840289,28.57825443,"North Indian, Bengali",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,8 +199,Domino's Pizza,1,New Delhi,"A-1, DDA Shopping Complex, Near Moolchand Flyover, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.233061,28.5661594,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,78 +756,Duggal's Rasoi,1,New Delhi,"125, Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2384946,28.5780151,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,35 +309801,Firefly India,1,New Delhi,"2nd Floor, C-180, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.234004,28.5728373,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,16 +18433907,Fluffles - The Fluffy Waffle Co.,1,New Delhi,"Ground Floor, Building 47, Defence Colony Main Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.230527,28.573371,Desserts,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,7 +311511,Giani's,1,New Delhi,"Shop 41, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2305911,28.5734984,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,26 +308279,Giani,1,New Delhi,"MCD Booth, Near Mother Dairy, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2298726,28.5744159,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,29 +7621,Green Chick Chop,1,New Delhi,"13-15, Fly Over Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.238315,28.5773705,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,16 +306779,Gulshan Fish & Chicken Fry,1,New Delhi,"1549, Ground Floor, Gurudwara Road, Kotla Mubarakpur, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2239446,28.5701766,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,14 +312980,Kitchen22,1,New Delhi,"Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2305013,28.5731313,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,9 +18222580,La Chocoallure,1,New Delhi,"D-23, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.23718248,28.57345367,Desserts,250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +2878,Little Dragon,1,New Delhi,"Main Market, Near Mother Dairy, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2298726,28.574147,"Fast Food, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,102 +8902,Maddi Sweet Centre,1,New Delhi,"150/8, Sukhdev Market, Kotla Mubarakpur, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2269086,28.5748508,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,22 +18374707,Man Vs Food The Kitchen,1,New Delhi,"Shop 125, Defence Colony Flyover Complex, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.238347,28.576813,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,9 +678,MB's,1,New Delhi,"37, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2302318,28.5735538,"Continental, Chinese, North Indian",1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,128 +3568,Moet's Sizzlers,1,New Delhi,"27, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2304115,28.5731228,Continental,1600,Indian Rupees(Rs.),No,No,No,No,3,3,Orange,Average,496 +18354969,Oberoi's,1,New Delhi,"85, Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.23895844,28.57772917,"North Indian, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,8 +313242,Punjabee's Darbar,1,New Delhi,"150, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2387472,28.578638,"North Indian, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,19 +309838,Qureshi's Kabab Corner,1,New Delhi,"82, Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.238764,28.5783096,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,35 +437,Saleem's Restaurant,1,New Delhi,"39, Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2382701,28.5777696,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,53 +18303851,Suri Saab Restaurant,1,New Delhi,"159, Defence Colony Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2386742,28.5785699,"North Indian, Chinese, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,39 +307500,The Sweet Boutique,1,New Delhi,"D-30, 3rd Floor, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.23684,28.572495,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,25 +736,Tibb's Frankie,1,New Delhi,"29, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2298726,28.5739678,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,28 +18294230,Veg Ex,1,New Delhi,"Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2384048,28.5780065,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,44 +7851,Zaaika Junction,1,New Delhi,"805, Arjun Nagar, Opposite Defence Colony, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2283618,28.5735915,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,56 +2437,28 Capri Italy,1,New Delhi,"28-A, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2302768,28.5727962,Italian,1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,245 +573,4S Chinese Restaurant,1,New Delhi,"A-26, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2304115,28.5731228,"Chinese, Thai",700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,215 +9706,Amici Cafe,1,New Delhi,"8, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2302318,28.5735538,"Cafe, Italian",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,386 +1507,Angels in my Kitchen,1,New Delhi,"Shop 31, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2304115,28.5738398,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,460 +302655,Arabian Delites,1,New Delhi,"23, Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2381221,28.5776478,"Lebanese, Arabian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,146 +705,Baskin Robbins,1,New Delhi,"A-1, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2299624,28.574066,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,55 +1395,Cafe Brown Sugar,1,New Delhi,"36, 1st Floor, Main Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2303217,28.5737416,"Cafe, Italian, Chinese",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.7,Yellow,Good,390 +18418273,Chakhnaa Wala,1,New Delhi,"Shop 145, Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2385416,28.5783289,"Mughlai, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,15 +2067,Cocoberry,1,New Delhi,"32, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2302318,28.5735538,Desserts,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,130 +3492,Concept,1,New Delhi,"142, Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2388538,28.5782285,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,301 +576,Deez Biryani & Kebabs,1,New Delhi,"91-93, Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2386742,28.5778529,"Biryani, North Indian, Mughlai",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.7,Yellow,Good,338 +311211,Def Col Social,1,New Delhi,"28-A, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2304115,28.5729435,"Continental, American, Asian, North Indian",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,798 +311661,D_ner Grill,1,New Delhi,"Building 47, Ground Floor, Defence Colony Main Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2304115,28.5731228,"Fast Food, Turkish",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,192 +566,Hong Kong Express,1,New Delhi,"127, Flyover Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.238764,28.5783992,"Chinese, Thai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,196 +556,Kent's Fast Food,1,New Delhi,"29, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2302318,28.5736434,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,766 +18322644,Koyla Kebab,1,New Delhi,"Shop 3, Main Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2298726,28.5739678,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,42 +17953931,Meraki Cafe & Bar,1,New Delhi,"C-43/44/45, DDA Complex, Opposite Moolchand Flyover, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2338693,28.5666845,"North Indian, Continental, Chinese, Italian",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,139 +18396187,Milk Patisserie,1,New Delhi,"Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.23133,28.573539,"Bakery, Desserts",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,24 +730,Moets Curry Leaf,1,New Delhi,"50, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2304115,28.5732124,"North Indian, Mughlai, Kashmiri",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,208 +18247032,Moets Oh! Bao,1,New Delhi,"50, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2305784,28.5731536,"Chinese, Japanese, Thai",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,99 +570,Moets Shack,1,New Delhi,"50, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2304115,28.5732124,"Seafood, Continental, European",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,601 +760,Moets Stone,1,New Delhi,"50, Moets Restaurant Complex, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2304115,28.5732124,Italian,2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.8,Yellow,Good,354 +134,Moti Mahal Delux,1,New Delhi,"11, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2301869,28.5735944,"North Indian, Mughlai, Chinese",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,130 +3039,Nizam's Kathi Kabab,1,New Delhi,"C-25, Commercial Complex, Near Moolchand Flyover, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.234004,28.5667421,"North Indian, Fast Food",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,303 +310816,NYC.PIE,1,New Delhi,"Main Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2303467,28.5729411,"Italian, Pizza",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.8,Yellow,Good,306 +304735,Raro,1,New Delhi,"19, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2303666,28.5732529,"Cafe, Bakery",800,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,304 +306,Sagar Ratna,1,New Delhi,"24, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2304115,28.5731228,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,308 +312586,Subway,1,New Delhi,"47, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2305013,28.5732209,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,84 +451,Swagath,1,New Delhi,"14, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.230142,28.5735453,"North Indian, Chinese, South Indian, Seafood, Chettinad",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,749 +18254518,The Jugaad Cafe Bar,1,New Delhi,"10, Defence Colony Main Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2301869,28.5735944,"North Indian, Chinese, Continental",1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,238 +18419886,Chicken Biryani Centre,1,New Delhi,"941/3, Gurudwara Road, Kotla Mubarakpur, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2258308,28.5732244,Biryani,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +8987,Ekta Restaurant,1,New Delhi,"808/7, Sukhdev Market, Kotla Mubarakpur Road, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2282559,28.5750687,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18472678,Garam Masala,1,New Delhi,"1002, Gurudwara Road, Kotla Mubarakpur, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2254202,28.5728608,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +9879,Gulati Food Corner,1,New Delhi,"954, Arjun Nagar, Kotla Mubarakpur, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2260104,28.5731519,Chinese,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18472675,Kolkatta Kathi Roll,1,New Delhi,"A Block, Main Road, Timber Market, Sukhdev Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2286152,28.5740273,"North Indian, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18355127,Muradabadi Shahi Biryani & Chicken Corner,1,New Delhi,"A-181, Sukhdev Market, Kotla Mubarakpur, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2286152,28.5741169,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18357956,Rara Dragon,1,New Delhi,"825/4, Arjun Nagar, Opposite, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2272935,28.5729113,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +9569,Mehfil,1,New Delhi,"A-188, Main Road, Timber Market, Sukhdev Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2284355,28.5740102,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,35 +305269,Bonne Bouche,1,New Delhi,"Shop 16, 1st Floor, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2300522,28.5734471,"Italian, French",1750,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,711 +18415346,Cafe Yell,1,New Delhi,"35, Ground Floor, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2301869,28.5735944,"Cafe, Continental, Italian",1000,Indian Rupees(Rs.),Yes,No,No,No,3,4.4,Green,Very Good,50 +4268,Defence Bakery,1,New Delhi,"34, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2301021,28.5737979,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,4.1,Green,Very Good,561 +18350143,Desi Vibes,1,New Delhi,"Shop 7, Defence Colony Main Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.230142,28.5738142,"North Indian, Mughlai",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,183 +18161723,Ek Bar,1,New Delhi,"D-17, 1st Floor, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.23797072,28.57481074,Modern Indian,1700,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,242 +18232097,Hwealthcafe,1,New Delhi,"A-272, Ground Floor, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2290642,28.5745182,"Cafe, Healthy Food, Continental",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.1,Green,Very Good,223 +309882,Kathputli,1,New Delhi,"35, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.230456,28.5737426,Rajasthani,900,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.1,Green,Very Good,769 +303215,Kulfiano,1,New Delhi,"47, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2306809,28.5734173,Ice Cream,200,Indian Rupees(Rs.),No,Yes,No,No,1,4,Green,Very Good,169 +18400744,Number 31,1,New Delhi,"31, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2302318,28.5735538,"Continental, Asian, Sushi",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,63 +312567,RoadRomeo,1,New Delhi,"47, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2303666,28.5732529,"North Indian, Hyderabadi, Kashmiri, Chinese",1650,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,460 +305,Sagar Ratna,1,New Delhi,"18, Defence Colony Market, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.2303217,28.5733831,"South Indian, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,782 +18363787,The Culinary Pitaara,1,New Delhi,"A-177, Sukhdev Market, Bhisham Pitamah Marg, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.228705,28.5742151,"North Indian, Chinese",900,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,95 +305646,Whipped,1,New Delhi,"3, Defence Colony Market, Near Citibank, Defence Colony, New Delhi",Defence Colony,"Defence Colony, New Delhi",77.230142,28.5739038,"Bakery, Desserts",550,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,372 +18419649,Milko's,1,New Delhi,"4/1/048, Church Road, Gopinath Bazar, Khyber Lines, Delhi Cantt., New Delhi",Delhi Cantt.,"Delhi Cantt., New Delhi",77.13403689,28.59645787,"Street Food, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18313109,Mom's Bake,1,New Delhi,"2/40/10, Main Sadar Bazaar Market, Delhi Cantt., New Delhi",Delhi Cantt.,"Delhi Cantt., New Delhi",77.12170769,28.59346375,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18478723,RV Restaurant,1,New Delhi,"35 Infantry Brigade, Phillaurah Complex, Near Army Public School, Shankar Vihar, Delhi Cantt., New Delhi",Delhi Cantt.,"Delhi Cantt., New Delhi",77.13754522,28.56050598,"North Indian, Chinese, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18348614,Turning Point Fast Food,1,New Delhi,"Bawa's Arcade, Gopi Nath Bazar, Delhi Cantt., New Delhi",Delhi Cantt.,"Delhi Cantt., New Delhi",77.13251498,28.59696187,"South Indian, Chinese, Continental",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +6953,A Vaishno Bhojnalaya,1,New Delhi,"1, Edward Line, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2039877,28.6952736,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,29 +7691,Aim Delhi Cafe,1,New Delhi,"1611, Outram Lane, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.208764,28.7012381,Cafe,400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,69 +3252,Apni Rasoi,1,New Delhi,"7, Mall Road, Kingsway Camp, Hakikat Nagar, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2076173,28.6984992,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,109 +18400732,Blue Bull Cafe,1,New Delhi,"2511, Ground Floor, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2041824,28.6956951,"Cafe, North Indian, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,15 +18337757,Cafe Bethak,1,New Delhi,"2524, Ground Floor, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2043172,28.6949468,"Cafe, Continental, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,76 +9014,Cafe Coffee Day,1,New Delhi,"61, Ground Floor, Kingsway Camp, Mall Road, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2063856,28.6984528,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,46 +9453,Cafe Coffee Day,1,New Delhi,"2526, Hudson Lane, Kingsway Camp, Near North Campus, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2041824,28.69471,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,87 +18273614,Chakhlo Food Court,1,New Delhi,"83, Ground Floor, Mall Road, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2058893,28.6986347,"North Indian, South Indian, Chinese, Street Food, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,45 +6625,Domino's Pizza,1,New Delhi,"85-87, Ground Floor, Mall Road, Timarpur, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2058299,28.6985993,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,109 +300869,Frontier,1,New Delhi,"3/642, Dr Mukherjee Nagar, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2066978,28.7014883,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +18256980,Good Foods,1,New Delhi,"Rajpura Village, CC Colony, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.1968157,28.6896167,"North Indian, Fast Food, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,35 +2279,Grain Bell Restaurant,1,New Delhi,"1, DDA Market, Outram Lines, Opposite BBM Depot, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2105606,28.7039175,"North Indian, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,81 +307894,Green Chick Chop,1,New Delhi,"G-18, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2040261,28.6949494,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,72 +6949,Grover's - The Baker Shop,1,New Delhi,"Edward Line, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.204262,28.69692,"Bakery, Fast Food",100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,18 +311962,Hookups Cafe & Lounge,1,New Delhi,"2nd Floor, 17, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2045418,28.6970729,"Chinese, Continental, North Indian",850,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,113 +9433,Jai Hind Dairy,1,New Delhi,"17 &18, Edward Line, Kingsway Camp, Near, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2041824,28.6958742,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,5 +4065,Kaveri,1,New Delhi,"12, Hudson Lane, D.D.A. Market, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2052412,28.6946441,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,51 +5767,Khushboo Vaishno Dhaba,1,New Delhi,"Shop 5-6, Parmananda Chowk, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2045418,28.7099688,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +7681,Korea Restaurant,1,New Delhi,"1612-G/F, Outram Line, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2088089,28.7012872,Korean,900,Indian Rupees(Rs.),Yes,No,No,No,2,3,Orange,Average,82 +18395106,Kukkad Nukkad,1,New Delhi,"2515, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2040656,28.6955226,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,12 +5436,Metro Fast Food,1,New Delhi,"Near Metro Parking, Chhatra Marg, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2127619,28.6950637,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,26 +18370586,Mughlai Flavours,1,New Delhi,"17, DDA Market, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2050359,28.6944781,Mughlai,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,17 +306847,Pitstop,1,New Delhi,"1965, Outram Lines, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2057546,28.7022489,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,85 +4857,Pizza Hut,1,New Delhi,"2518, Hudson Lane, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2042264,28.6953048,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.4,Orange,Average,143 +4088,Prince Snacks & Momo's Point,1,New Delhi,"23, DDA Market, Behind NDPL, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.204991,28.6945186,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,39 +9969,Qash Retro Bar,1,New Delhi,"2512, 1st Floor, Hudson Lane, Kingsway Camp, Opposite Laxmi Dairy, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2043621,28.6958019,"Finger Food, North Indian, Italian",2000,Indian Rupees(Rs.),Yes,No,No,No,4,2.7,Orange,Average,81 +307106,Red Chillies,1,New Delhi,"Shop 2, 2507, Hudson Lane, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2041877,28.6961065,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,69 +5909,Samrat Bakers,1,New Delhi,"Chowk Harikat Nagar, Kingsway Camps, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2075896,28.6984683,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,16 +2287,Samrat Restaurant,1,New Delhi,"74-A, Near Gate 1, GTB Nagar Metro Station, Kingsway Camp Chowk, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2051324,28.6989923,"North Indian, Chinese, South Indian, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,173 +2288,Shammi Bhai Lassi Wala,1,New Delhi,"1B, Kingsway Camp Chowk, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2049573,28.6989525,"Chinese, Beverages",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,45 +312391,Shooters Lounge and Bar,1,New Delhi,"2531, Hudson Lane, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2043172,28.6944094,"North Indian, Chinese",1100,Indian Rupees(Rs.),No,No,No,No,3,2.7,Orange,Average,50 +302370,Singh Ching,1,New Delhi,"2512, Hudson Lane, Near GTB Nagar Metro Station, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2041824,28.6956951,"North Indian, Chinese, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,427 +9779,Southy,1,New Delhi,"65, Mall Road, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2062475,28.6983664,South Indian,450,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,138 +307387,Take n Taste Shawarma Zone,1,New Delhi,"25, DDA Market, Hudson Lane, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.20517535,28.69445928,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,14 +18350499,The Night Owl,1,New Delhi,"Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2048468,28.6991883,Chinese,450,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,51 +2290,Tilak's The Diners,1,New Delhi,"Shop 121, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2051338,28.6988729,"North Indian, Chinese, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,130 +18161577,Spezia Bistro,1,New Delhi,"2525, 1st Floor, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2041413,28.694839,"Cafe, Continental, Chinese, Italian",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.6,Dark Green,Excellent,1071 +6647,Cent Percent The Pastry Shop,1,New Delhi,"16-B, Hudson Lane, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2044468,28.6963995,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,258 +313267,For God's Cake,1,New Delhi,"2521, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2042568,28.6951581,Bakery,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,533 +5455,Laxmi Ice Cream,1,New Delhi,"H2, Hudson Line, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2044507,28.6968859,"Ice Cream, Desserts",150,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,93 +3401,Mirch Masala MM Cafe,1,New Delhi,"20, Edward Lane, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.20421,28.6959218,"North Indian, Chinese, Cafe",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,484 +18456762,Moh Maya Cafe,1,New Delhi,"2527, Hudson Lane, 1st Floor, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.204109,28.694703,"North Indian, Continental, Chinese, Italian, Lebanese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,49 +4825,QD's Restaurant,1,New Delhi,"2520, 1st Floor, Hudson Lane, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2042559,28.6951592,"Chinese, North Indian, Fast Food, Italian",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,2724 +311674,SuperHero Cafe,1,New Delhi,"2261, Ground Floor, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.207686,28.6959407,"Cafe, Chinese, Italian",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,541 +6646,Suresh Fast Food,1,New Delhi,"5, DDA Market, Hudson Lane, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2052605,28.6947235,"North Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,91 +304307,Wood Box Cafe,1,New Delhi,"1, DDA Market, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2047986,28.6943941,"Cafe, Fast Food, Italian, Chinese",650,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.8,Yellow,Good,1970 +18421487,Best Biryani,1,New Delhi,"Shop 9, Mall Road, Metro Gate 2, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2076069,28.69846,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18277324,Derawal Soda Fountain,1,New Delhi,"Shop 16 & 17, MCD Market, Near Hari Mandir, Kingway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2049915,28.7004311,Beverages,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18455950,Eat & Gulp,1,New Delhi,"1443/1, Outram Lines, Opposite BBM Depot 2, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2112792,28.7045236,"Fast Food, Italian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18463988,L.N Live Kitchen,1,New Delhi,"Shop 60, Wadhwa Market, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2050973,28.6979839,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18463995,Papa Buns,1,New Delhi,"1st Floor, B, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2039851,28.6943776,Cafe,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18426904,Preet Fast Foods,1,New Delhi,"Shop 56, Edward Lane, Kingsway Camp, Main Market, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2052605,28.7014404,Street Food,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18124356,Sikkim Chinese Food,1,New Delhi,"Shop 5, Probyn Road, Mall Road, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2132353,28.6960645,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18420653,Tawa King,1,New Delhi,"Old Gupta Colony Road, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2027451,28.6949307,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18432553,The Pork Shop,1,New Delhi,"Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.20346611,28.68074736,Chinese,400,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +18388132,TiffinToons,1,New Delhi,"A1, New Gupta Colony, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.19461525,28.69248552,"North Indian, South Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +6608,Vaishno Rasoi,1,New Delhi,"5, Swarg Ashram, Parmanand Chowk Red Light, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2045418,28.710327,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +300883,Sagar Ratna,1,New Delhi,"Gate 2, GTB Nagar Metro Station, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2077758,28.6979196,"South Indian, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,147 +3036,Slice of Italy,1,New Delhi,"2515, Hudson Lane, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2040764,28.6955728,"Italian, Pizza, Bakery",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,148 +18342940,Bakar The Cafe,1,New Delhi,"G-24, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2031499,28.6951306,Cafe,400,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,111 +6144,Indus Flavour,1,New Delhi,"2510, Ground Floor, Hudson Lane, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2029696,28.6956238,"North Indian, Chinese, Cafe",700,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.1,Green,Very Good,1384 +18365861,Raw Creams,1,New Delhi,"2509, Ground Floor, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2043172,28.6958424,"Ice Cream, Desserts, Beverages",250,Indian Rupees(Rs.),No,Yes,No,No,1,4.3,Green,Very Good,156 +304262,Ricos,1,New Delhi,"2526, 1st Floor, Hudson Lane, Kingsway Camp, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2041921,28.6948159,"Cafe, Mexican, American, Italian, Lebanese, Continental",900,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,4085 +312345,The Hudson Cafe,1,New Delhi,"2524, 1st Floor, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2043172,28.6949468,"Cafe, Italian, Continental, Chinese",850,Indian Rupees(Rs.),No,Yes,No,No,2,4.4,Green,Very Good,1537 +306407,YOLO 21,1,New Delhi,"2522, Ground Floor, Hudson Lane, Delhi University-GTB Nagar, New Delhi",Delhi University-GTB Nagar,"Delhi University-GTB Nagar, New Delhi",77.2042723,28.6950768,"Cafe, Italian, Continental",700,Indian Rupees(Rs.),Yes,No,No,No,2,4.2,Green,Very Good,1526 +7777,Assam Food Stall,1,New Delhi,"Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2063385,28.5730696,"Assamese, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,45 +3167,Darbar E Awadh,1,New Delhi,"Stall 7, Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2069673,28.5733089,"North Indian, Mughlai",750,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,26 +302555,Hotel Tamil Nadu,1,New Delhi,"Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2063385,28.57298,South Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,13 +309841,Incrivel Goa,1,New Delhi,"21, Dilli Haat, Opposite INA Market, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2062293,28.5731135,Goan,700,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,29 +3158,Lakshadweep,1,New Delhi,"Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2071919,28.5733751,"North Indian, Chinese, South Indian",200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +7814,Odisha,1,New Delhi,"Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2067876,28.5736502,Oriya,450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,52 +7770,Rajasthan Food Stall No. 1,1,New Delhi,"Stall 9, Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2065181,28.5733557,"Rajasthani, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,69 +7789,Shillong View,1,New Delhi,"Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.207032,28.573381,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,36 +302537,Wazwan,1,New Delhi,"Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2070571,28.5734071,Kashmiri,700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,44 +7790,Zayaka,1,New Delhi,"Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2072657,28.5733139,"Chinese, North Indian, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,8 +18025092,Bihar ki Rasoi,1,New Delhi,"Stall 14, Dilli Haat, Near INA Market, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2065181,28.5733557,Bihari,500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,28 +7768,Bijoli Grill,1,New Delhi,"Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2063385,28.57298,"Bengali, North Indian, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,182 +302264,Maharashtra Food Stall,1,New Delhi,"Stall 20 & 4, Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2062936,28.5731102,Maharashtrian,350,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,93 +300975,Manipur Food Stall,1,New Delhi,"12, Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2065181,28.5733557,"Chinese, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,72 +7772,Momo Mia,1,New Delhi,"Stall 6, Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2069673,28.5733089,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,152 +7834,Mother Dairy Ice Cream,1,New Delhi,"24, Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2063385,28.5730696,"Desserts, Ice Cream, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,19 +302542,Nagaland,1,New Delhi,"Stall 19, Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2062457,28.573123,"Chinese, Naga",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.7,Yellow,Good,143 +7774,Navdanya Organic Food Cafe,1,New Delhi,"Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2062671,28.5731173,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,24 +7769,Tashi Delek Food Stall,1,New Delhi,"Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2066529,28.5733237,"Chinese, Tibetan",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,30 +7788,Punjabi Rasoi,1,New Delhi,"Dilli Haat, INA, New Delhi","Dilli Haat, INA","Dilli Haat, INA, New Delhi",77.2062599,28.5731266,North Indian,700,Indian Rupees(Rs.),No,No,No,No,2,2.3,Red,Poor,30 +309037,Aggarwal Bikaner Sweets,1,New Delhi,"B-35/G-2, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3263341,28.6840941,"Mithai, Street Food",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,9 +18454058,Angels Kitchen,1,New Delhi,"Shop 5, 6, & 7, S Block, Som Bazar Road, Shalimar Garden, DLF Dilshad Extension ll, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.32792842,28.69405251,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,10 +312579,Bedi's Kabab Corner,1,New Delhi,"Pocket B, Plot 178, Opposite Arwachin School, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3153088,28.6793527,"Mughlai, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,15 +18398753,Bravo Diet Food and Nutrition,1,New Delhi,"17/A-4, O Block, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3228257,28.6880418,Healthy Food,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +301313,Chacha Chicken,1,New Delhi,"N 8/A 3, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3243611,28.6866525,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,9 +301305,Chao Cart,1,New Delhi,"Near Pocket A, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3133238,28.6812709,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,32 +18124346,Chimney,1,New Delhi,"LIG Flats, G.T.B. Enclave, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.31063947,28.68787472,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +310664,Chutneez Ishtyle Bar and Dining,1,New Delhi,"108, 1st Floor, Metro Station Complex, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3216767,28.6758998,"North Indian, Chinese, Mughlai",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,56 +6266,Deep Chicken Point,1,New Delhi,"Near Radha Krishna Mandir, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3138803,28.6785183,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,16 +5060,Domino's Pizza,1,New Delhi,"Shop G2, Ground Floor, Metro Station, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3219584,28.6760676,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,87 +312566,Govind Dhaba,1,New Delhi,"H4, H Pocket, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3187967,28.681041,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,39 +18368621,Huddle Cafe,1,New Delhi,"G-9, Satyam Plaza, Chetak Complex, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3165977,28.680441,"Fast Food, Beverages",250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,23 +310319,Kovilakam,1,New Delhi,"F-1/LG-2, Mrignaini Chowk, Dilshad Colony, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3265239,28.6840123,"South Indian, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,11 +302497,Mathur's Kitchen,1,New Delhi,"Shop 1-2, Pocket F, GTB Enclave, DDA Market, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3141201,28.6843495,North Indian,450,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,15 +302528,McDonald's,1,New Delhi,"G-2A, Ground Floor, Commercial Unit, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3218233,28.6760146,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,65 +305209,New South Indian Hut,1,New Delhi,"L 98, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3235369,28.6827502,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +313046,Night Bite,1,New Delhi,"Pocket D, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.31573399,28.68331488,"North Indian, Chinese, Continental",500,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,14 +313473,Pizza Station,1,New Delhi,"M3-A2, Near Mrignaini Chowk, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.32611515,28.68426375,"Pizza, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +9817,Pummy Restaurant,1,New Delhi,"L-3, Near MTNL Office, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3212477,28.6815286,"North Indian, South Indian",500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,14 +18255138,Republic of Chicken,1,New Delhi,"Shop 2, D/51, Main Road, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3237521,28.6877871,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +309727,Salt N' Pepper,1,New Delhi,"69-A, Pocket B, Main GTB Road, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3138452,28.6803927,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,177 +18204499,Shahi Zaikaa,1,New Delhi,"F-1/F-1, Mrignayani Chowk, Dilshad Colony, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3263201,28.6839708,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,6 +311187,Shubham,1,New Delhi,"41/1, Car Market, Near Gurudwara, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3149321,28.6780803,"Fast Food, North Indian, South Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,39 +301498,South Indian Corner,1,New Delhi,"Shop H-74 A, Mangal Bazaar Road, Near Kiran Dairy, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3203722,28.6817639,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,27 +18378033,Sultan Food,1,New Delhi,"400 A, J & K Pocket, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3225314,28.6818859,Mughlai,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,14 +309043,Uncle Bakery,1,New Delhi,"196, Pocket F, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3175002,28.6804166,"Bakery, Fast Food",100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,15 +308509,Urban Chopstick,1,New Delhi,"B-1,G-3 shop be 2, B Block, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3135599,28.6781679,Chinese,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,50 +6242,Urban Kabab,1,New Delhi,"488-1/2, R Block, Chowk Market, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3130113,28.6784414,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,97 +303994,Urban Punjab,1,New Delhi,"B & E Market, Opposite Mother Dairy, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3172671,28.6805428,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,103 +9002,Haldiram's,1,New Delhi,"G-3, Inside Dilshad Garden Metro Station, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3220465,28.6755738,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,88 +307364,Pizza Hut Delivery,1,New Delhi,"Shop 5-A, Dilashad Garden Metro Station, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.32103,28.6759651,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,107 +18265385,Aggarwal Sweet Corner,1,New Delhi,"M-1/A-1, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.31474,28.6789662,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424632,Amritsari Naan Hut,1,New Delhi,"24 A, Pocket E, Near Hansraj School, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3174779,28.6826566,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +301316,Annapurna Bhojnalaya,1,New Delhi,"Main Mangal Bazaar Road, Near Sai Chowk, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3191771,28.6802106,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18378032,Asia,1,New Delhi,"Main Mangal Bazar Road, Opposite Dhingra Garments, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3194607,28.6803726,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18128881,Bablu Chinese Food,1,New Delhi,"B Block, Main Market, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3221198,28.6766439,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18378035,Bikaner Rasoi,1,New Delhi,"O 6/A-3, Labour Chowk, Dilashad Colony, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3240717,28.6868371,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18435806,Crazzy Bite,1,New Delhi,"O-3/A3, Pocket Q, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3243518,28.6869556,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18471239,Da Pizza Farm,1,New Delhi,"Shop 2/A5, Ground Floor, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",0,0,Italian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18435819,Dada Ka,1,New Delhi,"Kalander Colony Chow,k Mangal Bazar Road, Dilshan Gardan, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3200498,28.6806456,"Mughlai, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18376475,Friends N Foods,1,New Delhi,"Pocket SG/5A, LIG DDA Flates, Near Deer Park, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.32285928,28.68393079,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18378043,Hot N Fresh Pizza,1,New Delhi,"243 A, Pocket F, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3179939,28.6806874,Pizza,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424636,Kake Di Chap,1,New Delhi,"F 196 A, LIG Flats, Shop 2 & 3, Pocket F, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3174105,28.6804081,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18424625,Kathi Junction,1,New Delhi,"F 243 A, Shop 1, Pocket F, Near Sai Chowk, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3180387,28.6806468,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18377889,KSG,1,New Delhi,"B Block, LSC Market, Near ICICI Bank, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.30874181,28.67811889,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18435822,Mahavrer Chap Express,1,New Delhi,"F-252-A, Sai Chowk, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3182032,28.6808405,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18429577,Mamma Drools,1,New Delhi,"F-179, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3151641,28.6784646,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424642,Pawan Foods,1,New Delhi,"137- A, Pocket E, GTB Enclave, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.31044468,28.68845296,"Chinese, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18378039,Pizza Hub,1,New Delhi,"Shop 847, Janta Flates, Near GTB Enclave, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3150927,28.6785109,Pizza,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18378037,Prem Rasoi,1,New Delhi,"E - 197 A, LIG Flates, GTB Enclave, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.30951831,28.68780825,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +311037,Sanjha Chulah Babe Da,1,New Delhi,"Shop 8, DDA Market, Near Mother Dairy, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.29831667,28.65281944,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18435816,Shakun Cook-Du-Ku,1,New Delhi,"P-25/A4, Near Dolphin Shoes, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3227227,28.6859527,"Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18128868,The Taste of Punjab,1,New Delhi,"378, Janta Flats, G.T.B. Enclave, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.30948444,28.68853914,"Chinese, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18350160,Vaishno Bhojanalaya,1,New Delhi,"168 A, Pocket E, LIG Flats, Opposite Pooja Park, , GTB Enclave, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.31081113,28.68710648,"North Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18378030,Wrap N Roll,1,New Delhi,"L 236 A, L Block, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.3207312,28.6817083,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18209806,Zaika-E-Chaap Express,1,New Delhi,"Near Police Chowki, Golchakkar, R Block, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.30820905,28.67788563,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18153563,Slice of Italy,1,New Delhi,"39, Block B, Local Shopping Centre, Dilshad Garden, New Delhi",Dilshad Garden,"Dilshad Garden, New Delhi",77.30849136,28.67810565,"Italian, Pizza, Bakery",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,57 +357,Bemisaal,1,New Delhi,"G-6, Janak Place, District Centre, Janakpuri, New Delhi","District Centre, Janakpuri","District Centre, Janakpuri, New Delhi",77.0800517,28.6301104,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.4,Orange,Average,122 +8453,Grillz,1,New Delhi,"G3A, Ground Floor, District Centre, Janakpuri, New Delhi","District Centre, Janakpuri","District Centre, Janakpuri, New Delhi",77.0813721,28.6301427,Fast Food,500,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,85 +306856,Tandoor Ka Zaika,1,New Delhi,"Shop 18, DDA Market AG1, Janakpuri, New Delhi","District Centre, Janakpuri","District Centre, Janakpuri, New Delhi",77.0807745,28.6301924,"North Indian, Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,55 +18332009,The Barley House,1,New Delhi,"G14, Jaina Tower, District Centre, Janakpuri, New Delhi","District Centre, Janakpuri","District Centre, Janakpuri, New Delhi",77.0815256,28.6298202,"Mexican, North Indian, European, Chinese, Italian",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,35 +6875,Muffins,1,New Delhi,"G-15, District Center, Janakpuri, New Delhi","District Centre, Janakpuri","District Centre, Janakpuri, New Delhi",77.0813133,28.6305419,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,56 +2530,Dilli Darbar,1,New Delhi,"F 20, UGF District Centre, Janakpuri, New Delhi","District Centre, Janakpuri","District Centre, Janakpuri, New Delhi",77.0818722,28.6300877,"North Indian, Chinese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,2.3,Red,Poor,118 +5260,Cafe Coffee Day,1,New Delhi,"Ground Floor, DLF City Centre Mall, Shalimar Bagh, New Delhi","DLF City Centre Mall, Shalimar Bagh","DLF City Centre Mall, Shalimar Bagh, New Delhi",77.1582677,28.7029361,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,29 +3224,Domino's Pizza,1,New Delhi,"FC 1, 3rd Floor, Food Court, DLF City Centre Mall, Shalimar Bagh, New Delhi","DLF City Centre Mall, Shalimar Bagh","DLF City Centre Mall, Shalimar Bagh, New Delhi",77.1581778,28.7030171,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,63 +5293,Kings Kulfi,1,New Delhi,"Ground Floor, DLF City Centre Mall, Shalimar Bagh, New Delhi","DLF City Centre Mall, Shalimar Bagh","DLF City Centre Mall, Shalimar Bagh, New Delhi",77.1582677,28.7029361,Ice Cream,150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,14 +307578,McDonald's,1,New Delhi,"Ground Floor, DLF City Centre Mall, Shalimar Bagh, New Delhi","DLF City Centre Mall, Shalimar Bagh","DLF City Centre Mall, Shalimar Bagh, New Delhi",77.1581925,28.7029534,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,62 +18445798,Tibb's Frankie,1,New Delhi,"Ground Floor, DLF City Centre Mall, Shalimar Bagh, New Delhi","DLF City Centre Mall, Shalimar Bagh","DLF City Centre Mall, Shalimar Bagh, New Delhi",77.1581943,28.7029971,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +4919,Cafe E,1,New Delhi,"151, Ground Floor, DLF Emporio Mall, Nelson Mandela Marg, Vasant Kunj, New Delhi","DLF Emporio Mall, Vasant Kunj","DLF Emporio Mall, Vasant Kunj, New Delhi",77.15665989,28.54283324,"Cafe, Continental",1600,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,83 +4921,Cha-Shi,1,New Delhi,"Ground Floor, DLF Emporio Mall, Nelson Mandela Marg, Vasant Kunj, New Delhi","DLF Emporio Mall, Vasant Kunj","DLF Emporio Mall, Vasant Kunj, New Delhi",77.15718493,28.54370415,"Thai, Chinese, Asian, Malaysian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,118 +307321,Habibi,1,New Delhi,"DLF Place Mall, Opposite Hilton Garden Hotel, Saket, New Delhi","DLF Place Mall, Saket","DLF Place Mall, Saket, New Delhi",77.2170282,28.527655,"Middle Eastern, Mediterranean, North Indian",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.1,Orange,Average,134 +2616,Tikka Town,1,New Delhi,"Food Court, 3rd Floor, DLF Place Mall, Saket, New Delhi","DLF Place Mall, Saket","DLF Place Mall, Saket, New Delhi",77.21589714,28.52890209,North Indian,550,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,138 +302212,4700BC Popcorn,1,New Delhi,"Ground Floor, DLF Place Mall, Saket, New Delhi","DLF Place Mall, Saket","DLF Place Mall, Saket, New Delhi",77.2166406,28.5281701,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,152 +3814,Al Zaitoon,1,New Delhi,"Food Court, FC-2/A, 2nd Floor, DLF Place Mall, Saket, New Delhi","DLF Place Mall, Saket","DLF Place Mall, Saket, New Delhi",77.21593738,28.52888088,"Lebanese, Mediterranean, Arabian",850,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,246 +8201,Dunkin' Donuts,1,New Delhi,"309, 2nd Floor, DLF Place Mall, Saket, New Delhi","DLF Place Mall, Saket","DLF Place Mall, Saket, New Delhi",77.21688252,28.52822812,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,426 +306571,Foodhall,1,New Delhi,"Level 1, DLF Place Mall, Saket, New Delhi","DLF Place Mall, Saket","DLF Place Mall, Saket, New Delhi",77.21723221,28.52766814,"Bakery, Italian, Chinese, Mexican",700,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,71 +2300,Haldiram's,1,New Delhi,"FD-12, 2nd Floor, DLF Place Mall, Saket, New Delhi","DLF Place Mall, Saket","DLF Place Mall, Saket, New Delhi",77.21655529,28.52844757,"Street Food, North Indian, South Indian, Chinese, Mithai",350,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,229 +3719,TGI Friday's,1,New Delhi,"314-316, 2nd Floor, DLF Place Mall, Saket, New Delhi","DLF Place Mall, Saket","DLF Place Mall, Saket, New Delhi",77.21612245,28.52857924,"American, Tex-Mex",2500,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.7,Yellow,Good,984 +9720,The Beer Cafe,1,New Delhi,"300, 2nd Floor, DLF Place Mall, Saket, New Delhi","DLF Place Mall, Saket","DLF Place Mall, Saket, New Delhi",77.21922308,28.53230279,"Finger Food, North Indian, Italian",1200,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,295 +3192,Big Chill,1,New Delhi,"DLF Place Mall, Saket, New Delhi","DLF Place Mall, Saket","DLF Place Mall, Saket, New Delhi",77.21779615,28.52817627,"Italian, Continental, European, Cafe",1500,Indian Rupees(Rs.),No,No,No,No,3,4.4,Green,Very Good,2777 +305781,Cinnabon,1,New Delhi,"GFK 4A, Ground Floor, DLF Place Mall, Saket, New Delhi","DLF Place Mall, Saket","DLF Place Mall, Saket, New Delhi",77.21694253,28.52799453,"Desserts, Cafe",400,Indian Rupees(Rs.),No,Yes,No,No,1,4.1,Green,Very Good,397 +18337927,RollsKing,1,New Delhi,"15, 2nd Floor, DLF Place Mall, Saket, New Delhi","DLF Place Mall, Saket","DLF Place Mall, Saket, New Delhi",77.21593738,28.52888088,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,71 +2615,Tikka Town,1,New Delhi,"Food Court, 2nd Floor, DLF Promenade Mall, Vasant Kunj, New Delhi","DLF Promenade Mall, Vasant Kunj","DLF Promenade Mall, Vasant Kunj, New Delhi",77.1555539,28.5429069,North Indian,550,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,118 +2893,Cafe Brown Sugar,1,New Delhi,"Food Court, 2nd Floor, DLF Promenade Mall, Vasant Kunj, New Delhi","DLF Promenade Mall, Vasant Kunj","DLF Promenade Mall, Vasant Kunj, New Delhi",77.15549883,28.54273752,Fast Food,750,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,161 +18237314,Chaayos,1,New Delhi,"Shop 301-B, 2nd Floor, DLF Promenade, Nelson Mandela Road, Vasant Kunj, New Delhi","DLF Promenade Mall, Vasant Kunj","DLF Promenade Mall, Vasant Kunj, New Delhi",77.15574123,28.54284148,"Cafe, Tea",400,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,91 +2436,Cinnabon,1,New Delhi,"Ground Floor, DLF Promenade Mall, Vasant Kunj, New Delhi","DLF Promenade Mall, Vasant Kunj","DLF Promenade Mall, Vasant Kunj, New Delhi",77.15598,28.542494,"Desserts, Cafe",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,360 +306572,Foodhall,1,New Delhi,"1st Floor, DLF Promenade Mall, Vasant Kunj, New Delhi","DLF Promenade Mall, Vasant Kunj","DLF Promenade Mall, Vasant Kunj, New Delhi",77.15693682,28.54270924,"Bakery, Italian, Chinese, Mexican",700,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,69 +2301,Haldiram's,1,New Delhi,"Food Court, 2nd Floor, DLF Promenade Mall, Vasant Kunj, New Delhi","DLF Promenade Mall, Vasant Kunj","DLF Promenade Mall, Vasant Kunj, New Delhi",77.1553105,28.5427394,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,134 +312542,Keventers,1,New Delhi,"Food Court, 2nd Floor, DLF Promenade Mall, Vasant Kunj, New Delhi","DLF Promenade Mall, Vasant Kunj","DLF Promenade Mall, Vasant Kunj, New Delhi",77.15570837,28.5427387,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,154 +310887,Krispy Kreme,1,New Delhi,"Ground Floor, DLF Promenade Mall, Vasant Kunj, New Delhi","DLF Promenade Mall, Vasant Kunj","DLF Promenade Mall, Vasant Kunj, New Delhi",77.15590451,28.54268656,"Desserts, Beverages",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,98 +7256,L'Opera,1,New Delhi,"2nd Floor, DLF Promenade Mall, Vasant Kunj, New Delhi","DLF Promenade Mall, Vasant Kunj","DLF Promenade Mall, Vasant Kunj, New Delhi",77.15617541,28.54235257,"Bakery, Desserts, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,159 +8593,Mad Over Donuts,1,New Delhi,"2nd Floor, DLF Promenade Mall, Vasant Kunj, New Delhi","DLF Promenade Mall, Vasant Kunj","DLF Promenade Mall, Vasant Kunj, New Delhi",77.15601213,28.54260469,Desserts,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,169 +311353,Starbucks,1,New Delhi,"254-256, 1st Floor, DLF Promenade Mall, Vasant Kunj, New Delhi","DLF Promenade Mall, Vasant Kunj","DLF Promenade Mall, Vasant Kunj, New Delhi",77.15557222,28.54234722,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,109 +311423,The Beer Cafe,1,New Delhi,"2nd Floor, DLF Promenade Mall, Vasant Kunj, New Delhi","DLF Promenade Mall, Vasant Kunj","DLF Promenade Mall, Vasant Kunj, New Delhi",77.15613484,28.54260027,"Finger Food, North Indian, Italian",1250,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,170 +7247,Ooh Lala !,1,New Delhi,"Food Court, 2nd Floor, DLF Promenade Mall, Vasant Kunj, New Delhi","DLF Promenade Mall, Vasant Kunj","DLF Promenade Mall, Vasant Kunj, New Delhi",77.15556856,28.54264798,"American, Fast Food, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,154 +8396,Domino's Pizza,1,New Delhi,"102-A, 1st Floor, DLF South Square Mall, Sarojini Nagar, New Delhi","DLF South Square, Sarojini Nagar","DLF South Square, Sarojini Nagar, New Delhi",77.194929,28.576014,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,59 +308544,Flaming Wok,1,New Delhi,"Shop 104, 1st Floor, DLF South Square, Sarojini Nagar, New Delhi","DLF South Square, Sarojini Nagar","DLF South Square, Sarojini Nagar, New Delhi",77.1951986,28.5762189,"Chinese, Seafood",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.7,Orange,Average,112 +301237,Frontier,1,New Delhi,"30, DLF South Square, Sarojini Nagar, New Delhi","DLF South Square, Sarojini Nagar","DLF South Square, Sarojini Nagar, New Delhi",77.194929,28.5761036,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,11 +300408,Haldiram's,1,New Delhi,"DLF South Square, Sarojini Nagar, New Delhi","DLF South Square, Sarojini Nagar","DLF South Square, Sarojini Nagar, New Delhi",77.1951986,28.5763982,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,195 +9657,McDonald's,1,New Delhi,"34, 102B, 109 & 110, Ground/1st Floor, Multilevel Parking Cum Commercial Complex (MLCP), DLF South Square, Sarojini Nagar, New Delhi","DLF South Square, Sarojini Nagar","DLF South Square, Sarojini Nagar, New Delhi",77.194929,28.576014,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,100 +18370535,Meatwale.com,1,New Delhi,"Shop 43, DLF South Square Mall, Sarojini Nagar, New Delhi","DLF South Square, Sarojini Nagar","DLF South Square, Sarojini Nagar, New Delhi",77.194929,28.5761036,"North Indian, Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +307167,Subway,1,New Delhi,"107 & 108, 1st Floor, DLF South Square, Multilevel Parking Complex, Sarojini Nagar, New Delhi","DLF South Square, Sarojini Nagar","DLF South Square, Sarojini Nagar, New Delhi",77.1951986,28.5762189,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,65 +303264,Twenty Four Seven,1,New Delhi,"Near Petrol Pump, Sundar Nagar, Dr. Zakir Hussain Marg, New Delhi",Dr. Zakir Hussain Marg,"Dr. Zakir Hussain Marg, New Delhi",77.2374755,28.6021693,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +311712,Wah Ji Wah,1,New Delhi,"E-6, Jyoti Colony, 100 Feet Road, Durga Puri, New Delhi",Durga Puri,"Durga Puri, New Delhi",0,0,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,8 +9886,Aggarwal Sweets,1,New Delhi,"2, C Block Market, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.25664444,28.55948889,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,10 +9891,Al-Malik,1,New Delhi,"187-A, G K House, Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.25142501,28.55597567,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,21 +9887,Bikaner Sweets,1,New Delhi,"1, Sai Plaza, Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.25097778,28.55600833,"Street Food, South Indian, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,13 +7893,Cafe Coffee Day,1,New Delhi,"6, Ground Floor Northside, Community Center, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.245962,28.558244,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,24 +18266888,Delhi Rasoi,1,New Delhi,"15, Community Center, Ground Floor, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24570923,28.55801293,"North Indian, Chinese, South Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,19 +7884,Food Land,1,New Delhi,"252-H, Kailash Plazza, Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.25065019,28.55561316,"North Indian, Chinese",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,16 +18377458,Froshier Fruits,1,New Delhi,"B 142/1, B Block, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",0,0,Healthy Food,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +7897,Govinda's Confectionery,1,New Delhi,"Iskcon Temple Complex, Main Road, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.25350372,28.5564445,Bakery,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +18391937,Halka Fulka,1,New Delhi,"382, White House, Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.251334,28.555408,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,11 +7888,Hasty Tasty,1,New Delhi,"C Block Market, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.256582,28.559209,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,12 +18037834,Ikreate,1,New Delhi,"206 D, Ground Floor, Prakash Mohalla, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.2540139,28.5618466,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +312605,Khan's Dilli-6 Biryani,1,New Delhi,"East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24476,28.562469,"Biryani, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,19 +7876,Kolkata Hot Kathi Roll,1,New Delhi,"285, Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24970538,28.55546709,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,21 +18358157,Kowloon Express,1,New Delhi,"Shop 11/12, DDA Market, Mount Kailash, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.2474937,28.5532108,"North Indian, Italian, Chinese, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,17 +18272344,LaDiDa,1,New Delhi,"1st Floor, D-123, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.2460754,28.5573496,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,14 +18458308,Litti.In,1,New Delhi,"Shop 9, D Block, DDA Market, Near HDFC Bank, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.248986,28.556008,Bihari,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,4 +4302,Mughals Rasoi,1,New Delhi,"227-B, Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24965878,28.55559431,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,38 +7886,Naagar Foods,1,New Delhi,"D-88, Amrit Puri B, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.2534918,28.5566725,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,17 +7873,Novelty Chicken Corner,1,New Delhi,"28, C Block Market, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.25683268,28.55942527,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,61 +303625,Raju Vaishnav Dhaba,1,New Delhi,"1, DDA Market, Garhi, Opposite ISCON Temple, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.2515556,28.55691625,"North Indian, South Indian",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,19 +310794,Republic of Chicken,1,New Delhi,"Shop 8, Mount Kailash Market, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.2475416,28.5530398,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +920,Shiv Shakti Vaishno Bhojnalaya,1,New Delhi,"39/1, Community Centre, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24604115,28.55872293,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,22 +18381237,Spice Tree,1,New Delhi,"Shop 4, DDA Market, Mount Kailash, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24759415,28.55342536,"North Indian, Mughlai, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,12 +18371426,Vadapav Junction,1,New Delhi,"B 19, DSIDC, Garhi, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.254524,28.560028,Maharashtrian,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,14 +312173,Zaaika Junction,1,New Delhi,"Shop 43/6, Ground Floor, Community Center, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24581651,28.55854948,"Chinese, Mughlai, North Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,25 +18361752,17 Degree Food Service,1,New Delhi,"Shop 41/1, Hari Complex 304, Garhi, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",0,0,North Indian,260,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +9883,Aggarwal Eating Point,1,New Delhi,"3-5, Mini DDA Market, Amrit Puri B, Garhi, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.25370757,28.55692569,"Street Food, Mithai",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18355117,Al- Laziz,1,New Delhi,"252, Nazar Singh Place,Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24972282,28.55566852,Mughlai,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18355119,Al- Sheikh,1,New Delhi,"Community Center, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24579573,28.55838722,"Afghani, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18414496,Anupama Sweets & Restaurant,1,New Delhi,"16, A, Main Road, Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.2480855,28.5540294,"North Indian, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18380379,Aurangzeb,1,New Delhi,"D-130, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",0,0,"Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18409218,Da Pizza Corner,1,New Delhi,"C 35, DDA Flats, Garhi, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.2529833,28.557711,"Fast Food, Pizza",600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +18432652,Delhi Food Adda,1,New Delhi,"9A, C Block Market, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",0,0,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18388133,Delhi Lazeez,1,New Delhi,"East of Kailash, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.2475006,28.5543714,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +18423121,Delhi Pizza Corner,1,New Delhi,"Shop 8, Near Isckon Temple, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",0,0,"Pizza, Fast Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +305402,Dessert Carte,1,New Delhi,"D-148, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",0,0,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18415664,Firangi Mithai,1,New Delhi,"30, Kailash Hills, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",0,0,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18356776,Ghar Ka Khana,1,New Delhi,"Neel Kanth Palace, Near Iskcon Temple, Main Road Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.25076921,28.55558547,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18427222,Heera Chicken Corner,1,New Delhi,"Ground Floor, Neelkanth Palace, Sant Nagar, Near, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",0,0,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +9884,Jagram Dhaba,1,New Delhi,"285, Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24972147,28.5554023,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18425767,Janaab,1,New Delhi,"East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",0,0,"Awadhi, Mughlai, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +3479,K.K. Fast Food Service,1,New Delhi,"44/4, Community Centre, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24595934,28.55813632,North Indian,200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +18414469,Kasur Khyon,1,New Delhi,"34/6, Community Centre, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.2460453,28.5590781,"Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +313419,Kitchen King,1,New Delhi,"Near Iskcon Temple, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.25373641,28.55696162,"North Indian, Mughlai, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18358162,Laziz Chinese Fast Food,1,New Delhi,"Kalka Devi Marg, Near DDA Park, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24382263,28.55974625,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18355111,Munch Brunch Cafe,1,New Delhi,"245- A, Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24882092,28.55569767,"Street Food, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18355115,Piyu Fast Food,1,New Delhi,"252, Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24957529,28.55550213,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18273617,Punjabi Tandoor,1,New Delhi,"Shop 1/191, Neelkanth Palace, Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.25070518,28.55600306,North Indian,300,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +18357958,Roll Corner,1,New Delhi,"Near Mool Chand Metro Station, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.2539276,28.5617082,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18331598,Sher-e-Punjab,1,New Delhi,"76, 1st Floor, Amrit Puri, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",0,0,"North Indian, Chinese, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18419884,Test Restaruants for Medio,1,New Delhi,"Test address, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",34,35,"Chinese, Lucknowi",800,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,1 +18362795,Uncle Sam,1,New Delhi,"Ramesh Market, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +9876,Vijay Store,1,New Delhi,"3/3, Community Centre, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.24595,28.55863333,"Fast Food, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18312598,Viya Cupcakery,1,New Delhi,"F-50, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.2446488,28.5562573,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18454461,Zaika Muradabadi,1,New Delhi,"Shop 27/6, Garhi Main Market, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.250781,28.560295,Biryani,200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,0 +8959,Asian Haus,1,New Delhi,"76/2, Near Iskcon Temple, Sant Nagar, East of Kailash, New Delhi",East of Kailash,"East of Kailash, New Delhi",77.25135762,28.55602603,"Chinese, Thai, Asian, Malaysian, Vietnamese, Japanese",1500,Indian Rupees(Rs.),No,Yes,No,No,3,4.1,Green,Very Good,686 +304176,Bake Club,1,New Delhi,"23/5-B, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1735895,28.6448006,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,44 +8822,Barichi,1,New Delhi,"Hotel Rahman, 3/1, Near Patel Nagar Metro Station, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1698272,28.6455402,"North Indian, Chinese, South Indian",1000,Indian Rupees(Rs.),Yes,No,No,No,3,2.9,Orange,Average,11 +511,Barista,1,New Delhi,"18/36, Ground Floor, Main Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1731083,28.6455589,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,44 +309166,Baskin Robbins,1,New Delhi,"Shop 4, 25/6, Ground Floor, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1747039,28.6441003,Ice Cream,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,11 +18268708,Bite & More,1,New Delhi,"9/10, Shop 2, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1743426,28.6428518,"Fast Food, North Indian",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,24 +18265722,Blue Water Grille Express,1,New Delhi,"23/23, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1741932,28.6457029,"North Indian, Mughlai, Chinese, Seafood",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,27 +18453878,Brainfreezzers,1,New Delhi,"23/21-C, 1st Floor, Main Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",0,0,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +309013,Caboose X Cafe & Lounge,1,New Delhi,"18/31, 1st Floor, Main Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1726854,28.6452593,"Fast Food, Cafe",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,39 +305077,Cafe Buddy's,1,New Delhi,"Patel Nagar Metro Station, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1724967,28.6440161,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +5262,Cafe Coffee Day,1,New Delhi,"11/15, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1696522,28.6449368,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,38 +7375,Chinese Food,1,New Delhi,"23/21C, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1743474,28.6457707,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,13 +18337880,Chinese King,1,New Delhi,"Shop 6, 26/32 Palmohan Sadan, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.17413515,28.64428733,"North Indian, Mughlai, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,6 +306978,Cocoberry,1,New Delhi,"11/23, East Patel Nagar Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.172769,28.6452876,Desserts,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,28 +18312478,Eggless Dukes,1,New Delhi,"23/5, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1737102,28.6447002,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,5 +3979,Empire The Meat Shop,1,New Delhi,"28/14, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1736976,28.6461308,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,31 +18336207,FOG Cafe and Lounge,1,New Delhi,"7/7, Ground Floor, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1716041,28.6445596,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +7377,Forty 3 East,1,New Delhi,"Almondz Hotel, 4/3, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1728444,28.6439265,"North Indian, Mughlai, Continental",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,38 +307506,Green Chick Chop,1,New Delhi,"29/1, Shop 2, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1740625,28.6458084,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,31 +3125,Gyan's,1,New Delhi,"28/10, Central Market, Opposite Neel Kanth Mandir, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1733197,28.6462535,North Indian,550,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,93 +305674,Indi-QUE,1,New Delhi,"23/16, Main Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1738098,28.6453787,"North Indian, Mughlai, Chinese",1400,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,46 +18391167,Keventers,1,New Delhi,"Shop No 5, Ground Floor, 29/1, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1741502,28.6458375,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +8727,Pick Fresh Fish,1,New Delhi,"29/1, East Patel Nagar Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1741204,28.645748,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,17 +3980,Sat Guru Dhaba,1,New Delhi,"18/52, Near Neel Kanth Mandir, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1730339,28.6463295,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,43 +312183,Sharazz,1,New Delhi,"23/2, Main Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1738144,28.6446627,"Chinese, Cafe, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,32 +311945,Spice Box,1,New Delhi,"13/5, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1746349,28.6439586,North Indian,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,21 +3126,The Baithak's,1,New Delhi,"18/41, Main Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1732263,28.6456229,"North Indian, Chinese, Mughlai",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.2,Orange,Average,87 +18475269,The Taste of India,1,New Delhi,"Shop 2, 12/20, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.17371749,28.6444715,"Continental, Chinese, North Indian, Healthy Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +303124,Twenty Four Seven,1,New Delhi,"18/43 & 18/44, Ground Floor, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.173298,28.6458333,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,23 +18034042,Wrapss,1,New Delhi,"18/51, Main Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1731998,28.6463046,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,50 +201,Domino's Pizza,1,New Delhi,"18/27, East Patel Nagar Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1726202,28.6453402,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,119 +303575,Dunkin' Donuts,1,New Delhi,"1/2, Ground Floor, Opposite Patel Nagar Metro Station, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1695686,28.6449373,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,177 +410,Naivedyam,1,New Delhi,"25/35, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1760203,28.6438411,South Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,359 +308107,Punjabi Chaap Corner,1,New Delhi,"Shop 3, 25/6, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1746447,28.6440899,North Indian,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,53 +4885,Rice Bowl,1,New Delhi,"1/4, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1701447,28.6448457,"Chinese, Seafood",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,241 +18273627,The Diet Kitchen,1,New Delhi,"23/21-A, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1742239,28.6455073,"Continental, Healthy Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,178 +311539,The Yellow Chef,1,New Delhi,"18/48, Main Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1734166,28.6462385,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,146 +2635,Tsui Wong,1,New Delhi,"23/1, East Patel Nagar Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1738702,28.6446415,"Chinese, Thai, Seafood",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.8,Yellow,Good,145 +18237962,VC's Food Paradise,1,New Delhi,"23/5A, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1736557,28.6446394,"North Indian, Fast Food, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,26 +18261486,WeDesi Flavours,1,New Delhi,"Near Jaypee Siddharth, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1765254,28.6449035,"Healthy Food, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,54 +18423116,Hardwari,1,New Delhi,"18/47, Main Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1734122,28.6460949,Mithai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18423112,Johny's Vada Pav,1,New Delhi,"12/17, Near Canara Bank, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1734844,28.6448988,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18258777,My Kind Of Cafe,1,New Delhi,"23/21-E Ground Floor, Main Market, Near Patel Nagar Park, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1744155,28.6456517,"Cafe, Continental",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18491227,Panchratna Thali,1,New Delhi,"Bodhraj Kohli Marg, Block 16, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",0,0,"North Indian, Rajasthani, Gujarati",900,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +304531,Punjabi Rasoi,1,New Delhi,"25/32, Near Fedex, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1756282,28.6435077,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18420433,Shisha,1,New Delhi,"Main Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1738594,28.6447299,Cafe,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +17977786,Snacks and More,1,New Delhi,"Shop-5, 15/5, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1702997,28.6469458,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18412868,Swag Cafe,1,New Delhi,"12/20 1st Floor, East Patel Nagar Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1737234,28.6446442,"North Indian, Chinese, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +311216,The Pink Whisk,1,New Delhi,"Ground Floor, 34/7, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.176511,28.6448934,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +311327,Stabbers,1,New Delhi,"29/1, Main Market, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1738744,28.6460278,"Fast Food, Burger",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,101 +7372,Duke's Pastry Shop,1,New Delhi,"23/5, East Patel Nagar, New Delhi",East Patel Nagar,"East Patel Nagar, New Delhi",77.1737481,28.6447151,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,150 +306016,Cafe Coffee Day,1,New Delhi,"Epicuria Food Mall, Near Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2517407,28.5514411,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,44 +304906,Chicago Pizza,1,New Delhi,"Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2514264,28.551456,Pizza,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,93 +18447890,Drool Waffles,1,New Delhi,"K-1, Lower Ground Floor, Epicuria Food Mall, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2517856,28.5514005,Desserts,500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,9 +18375391,Gelato Vinto,1,New Delhi,"Ground Floor, Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2517407,28.5514411,Ice Cream,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,9 +18355123,Joost Juice Bar,1,New Delhi,"Ground Floor, Epicuria Food Mall, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2517407,28.5514411,Juices,300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,9 +304915,Karim's,1,New Delhi,"Shop 2, Lower Ground Floor, Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2514264,28.551456,"Mughlai, North Indian",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,185 +304913,Moti Mahal Delux,1,New Delhi,"Lower Ground Floor, Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2514264,28.551456,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,100 +304923,Sagar Ratna,1,New Delhi,"Lower Ground Floor, Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2514264,28.551456,South Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,70 +309738,Yo! China,1,New Delhi,"Shop 7, Ground Floor, Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2514264,28.551456,Chinese,1300,Indian Rupees(Rs.),No,Yes,No,No,3,2.6,Orange,Average,110 +18261188,Chaayos,1,New Delhi,"Upper Ground Floor, Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2518754,28.5511401,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,106 +18336192,Dimcha,1,New Delhi,"Upper Ground Floor, Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2519652,28.5514176,"Chinese, Thai, Asian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,145 +18277187,Keventers,1,New Delhi,"Food Court, Epicuria Food Mall, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2514264,28.551456,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,57 +18381663,Khan Chacha,1,New Delhi,"Lower Ground Floor, FC_8, Epicuria, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2514264,28.551456,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,23 +304917,Sona Pure Veg Paradise,1,New Delhi,"Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2514264,28.551456,"North Indian, Street Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,158 +306031,Subway,1,New Delhi,"Epicuria Food Mall, Near Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2514264,28.551456,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,97 +18180083,The Crunch Box,1,New Delhi,"Lower Ground Floor, Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2517856,28.5514005,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,21 +18336213,Nando's,1,New Delhi,"Epicuria Food Mall, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2511121,28.551471,"Portuguese, African",1200,Indian Rupees(Rs.),No,Yes,No,No,3,0,White,Not rated,3 +304239,FIO Cookhouse and Bar,1,New Delhi,"Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.251157,28.5512512,"European, Italian, North Indian",3500,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,752 +18294261,Lord of the Drinks Forum,1,New Delhi,"Lower Basement, Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.252055,28.5513364,"European, Chinese, North Indian, Italian",2500,Indian Rupees(Rs.),Yes,No,No,No,4,4.2,Green,Very Good,756 +305240,The Chatter House,1,New Delhi,"Lower Basement, Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.252055,28.5515157,"Finger Food, Italian, North Indian",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,1700 +304299,The Flying Saucer Cafe,1,New Delhi,"Ground Floor, Epicuria Food Mall, Nehru Place Metro Station, Nehru Place, New Delhi","Epicuria Food Mall, Nehru Place","Epicuria Food Mall, Nehru Place, New Delhi",77.2523244,28.5514517,"Italian, Mediterranean, Continental, North Indian",1600,Indian Rupees(Rs.),Yes,No,No,No,3,4.3,Green,Very Good,3002 +305547,Tea Lounge - Eros Hotel,1,New Delhi,"Eros Hotel, American Plaza, Nehru Place, New Delhi","Eros Hotel, Nehru Place","Eros Hotel, Nehru Place, New Delhi",77.2495406,28.5499322,Cafe,1800,Indian Rupees(Rs.),No,No,No,No,3,3.3,Orange,Average,21 +305545,Blooms - Eros Hotel,1,New Delhi,"Eros Hotel, American Plaza, Nehru Place, New Delhi","Eros Hotel, Nehru Place","Eros Hotel, Nehru Place, New Delhi",77.2495406,28.5499322,"Continental, North Indian, Italian",4000,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,150 +305549,Lounge & Bar - Eros Hotel,1,New Delhi,"Eros Hotel, American Plaza, Nehru Place, New Delhi","Eros Hotel, Nehru Place","Eros Hotel, Nehru Place, New Delhi",77.2493161,28.5495074,Finger Food,3650,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,18 +305546,Sweet & Crusty - Eros Hotel,1,New Delhi,"Eros Hotel, American Plaza, Nehru Place, New Delhi","Eros Hotel, Nehru Place","Eros Hotel, Nehru Place, New Delhi",77.249361,28.5498255,"Bakery, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,44 +305548,Empress of China - Eros Hotel,1,New Delhi,"Eros Hotel, American Plaza, Nehru Place, New Delhi","Eros Hotel, Nehru Place","Eros Hotel, Nehru Place, New Delhi",77.2501692,28.5500815,Chinese,4800,Indian Rupees(Rs.),Yes,No,No,No,4,4.2,Green,Very Good,119 +9640,Essex Collections Patisserie,1,New Delhi,"Essex Farms, 4, Hauz Khas, New Delhi",Essex Farms,"Essex Farms, New Delhi",77.2011867,28.5437894,"Bakery, Desserts, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,50 +6200,Essex Village Garden,1,New Delhi,"Essex Farms, 4 Aurobindo Marg, Hauz Khas, New Delhi",Essex Farms,"Essex Farms, New Delhi",77.2014089,28.5439726,"North Indian, Chinese, Continental, Seafood",1500,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,218 +18128883,Yes Minister - Pub & Kitchen,1,New Delhi,"Essex Farms, 4, Hauz Khas, New Delhi",Essex Farms,"Essex Farms, New Delhi",77.2021829,28.5436328,"Mediterranean, Continental, Italian",1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,234 +305810,Gupta's Food Point,1,New Delhi,"Shop 1 & 2, Near Indian Medical Association, ITO Lane",Feroze Shah Road,"Feroze Shah Road, New Delhi",77.225247,28.6171268,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +4631,Andhra Bhavan,1,New Delhi,"1, Ashoka Road, Feroze Shah Road, New Delhi",Feroze Shah Road,"Feroze Shah Road, New Delhi",77.225522,28.6171019,"South Indian, Andhra",200,Indian Rupees(Rs.),No,No,No,No,1,4.2,Green,Very Good,3010 +302682,Barista,1,New Delhi,"17A, Friends Colony, New Delhi",Friends Colony,"Friends Colony, New Delhi",77.268165,28.570351,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,15 +2004,Indian Accent - The Manor,1,New Delhi,"The Manor, 77, Friends Colony, New Delhi",Friends Colony,"Friends Colony, New Delhi",77.257106,28.570142,Modern Indian,4000,Indian Rupees(Rs.),No,No,No,No,4,4.9,Dark Green,Excellent,1934 +18359294,Dilli Grillz,1,New Delhi,"Ground Floor, Fun City Mall, Prashant Vihar, New Delhi","Fun City Mall, Prashant Vihar","Fun City Mall, Prashant Vihar, New Delhi",77.1359778,28.7125231,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +18359292,Foodies,1,New Delhi,"Fun City Mall, Prashant Vihar, New Delhi","Fun City Mall, Prashant Vihar","Fun City Mall, Prashant Vihar, New Delhi",77.1359778,28.7124335,Italian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441790,Giani's,1,New Delhi,"Ground Floor, Fun City Mall, Prashant Vihar, New Delhi","Fun City Mall, Prashant Vihar","Fun City Mall, Prashant Vihar, New Delhi",77.1359944,28.7124394,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +4283,FIO Country Kitchen and Bar,1,New Delhi,"Gate 1, The Garden of Five Senses, Saidulajab, Saket, New Delhi","Garden of Five Senses, Saket","Garden of Five Senses, Saket, New Delhi",77.19707139,28.51423729,"European, Italian, North Indian",3300,Indian Rupees(Rs.),Yes,No,No,No,4,4.2,Green,Very Good,1561 +18335816,Amul Ice-Cream Parlour,1,New Delhi,"591-598, Near Sabzi Mandi Jheel, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.27527589,28.65770835,Ice Cream,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +17977792,Bunty Dhaba,1,New Delhi,"130/289, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.27280054,28.6588784,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,8 +301214,Chawla's,1,New Delhi,"13/41, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2743231,28.6506052,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,50 +312227,China Town,1,New Delhi,"Block 14, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",0,0,Chinese,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +303860,Chinese Inn,1,New Delhi,"13/82, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2742445,28.6503577,"Chinese, South Indian",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,28 +18244236,Grub Street,1,New Delhi,"Near Geeta Colony Police Station, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.27558903,28.65482657,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,31 +305577,Guru Kripa,1,New Delhi,"5/1/5, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2709113,28.6529689,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18014118,Himcream,1,New Delhi,"13/56, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2749795,28.65092671,"Ice Cream, Fast Food, Beverages",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,17 +5996,Kashish Restaurant & Caterers,1,New Delhi,"5/2/10, Main Road, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2708084,28.6529662,"North Indian, South Indian, Chinese, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,8 +313487,Punjabi's Veg Grill,1,New Delhi,"441/8, Jheel Khuranja, Main Road, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.27389522,28.65782692,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,8 +313004,Rahul Meat Corner,1,New Delhi,"447, Jheel Khurenja, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2739834,28.65745298,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,6 +312942,Ramesh Vaishno Dhaba,1,New Delhi,"439, Jheel Khuranja, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.27375876,28.65791871,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,17 +309168,The Chinese Hut,1,New Delhi,"6/18, Near 7 Block Gurudwara, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.27286156,28.65345053,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,50 +308994,Nagpal Di Hatti,1,New Delhi,"131, Budhh Bazar, Veer Savarkar Market, Gandhinagar, Near, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",0,0,"North Indian, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,29 +312943,Ramesh Vaishno Dhaba,1,New Delhi,"13/292, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2740471,28.65758714,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,31 +18455553,Baweja's Haandi,1,New Delhi,"11/89, Near Kanchan Studio and Geeta Colony Police Station, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",0,0,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18377929,Chaman Dhaba,1,New Delhi,"450/1, Jheel Kuranja, Near, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.27334738,28.6576701,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18472628,Insane Foods,1,New Delhi,"Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",0,0,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435335,Jo Jo Chinese Fast Food,1,New Delhi,"13/283, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.276516,28.6509219,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18435787,Kailash Vaishno Dhaba,1,New Delhi,"Block 8/112, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2705947,28.656203,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435331,Khurana Eating Point,1,New Delhi,"17/93, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2772052,28.6465239,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18364846,Lots of Food,1,New Delhi,"12/124 Geeta Colony, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",0,0,Chinese,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18438446,Madras Cafe,1,New Delhi,"Bhagwan Das Kothi, Gandhi Nagar, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2665213,28.6598571,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18446496,Parantha on Call,1,New Delhi,"Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",0,0,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18454568,Pompas Chicken,1,New Delhi,"Shop 14/9, Main Road, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.27064716,28.65482831,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18421462,Prem Ji Delhi Wale,1,New Delhi,"6/174, Near Ramleela Ground, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2743467,28.6541382,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435303,Punjabi Tandoori Tikka,1,New Delhi,"14/132, 14 Block, Near Gurudwara, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2765693,28.6509197,Street Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435314,Punjabi's Veg Grill,1,New Delhi,"13/288 , 14 Block Gurudwra, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2767689,28.6507753,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435315,Shree Banke Foods,1,New Delhi,"13/289, 14 Block Gurudwra, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2767586,28.6506851,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18418234,Singh's,1,New Delhi,"6/174, Near Ram Leela Ground, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2741884,28.6543108,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421470,Soya Twist,1,New Delhi,"A-2, Krishna Nagar Extension, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.2766789,28.6545768,"North Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18472613,Spice Studio,1,New Delhi,"Shop 17/38, Near Geeta Apartments, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",0,0,"Seafood, Mughlai, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435307,Tandoori Tadka,1,New Delhi,"13/279, Bhawan Mandir, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",0,0,Street Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18378015,Tasty Tandoor,1,New Delhi,"726/2, Jheel Khuranja, Geeta Colony, New Delhi",Geeta Colony,"Geeta Colony, New Delhi",77.27505159,28.65821556,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18460925,The Square Meal,1,New Delhi,"Ginger Hotel, DDA Community Center, Vivek-Vihar Police Station, Vivek Vihar, New Delhi","Ginger Hotel, Vivek Vihar","Ginger Hotel, Vivek Vihar, New Delhi",77.303949,28.665829,"North Indian, South Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,1 +9909,Barbeque Nation,1,New Delhi,"Ginger Hotel, DDA Community Center, Opposite Eastend Club, Vivek Vihar, New Delhi","Ginger Hotel, Vivek Vihar","Ginger Hotel, Vivek Vihar, New Delhi",77.303949,28.665829,"North Indian, Chinese",1600,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,756 +18423111,Burger King,1,New Delhi,"Shop GF-29, BG-1 BG-2, Gourmet Hub, Paschim Vihar, New Delhi","Gourmet Hub, Pashim Vihar","Gourmet Hub, Pashim Vihar, New Delhi",77.1120546,28.6681812,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,33 +18469938,BED,1,New Delhi,"2nd Floor, N-17, N Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2328365,28.5564122,"European, Sushi, Italian",2700,Indian Rupees(Rs.),Yes,No,No,No,4,3,Orange,Average,9 +651,Cafe Coffee Day - The Lounge,1,New Delhi,"M-37, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2365188,28.5497703,Cafe,750,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,70 +17953916,Hunger Strike,1,New Delhi,"M-69, Opposite Yes Bank, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2341837,28.5510721,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,70 +18168168,Karim's,1,New Delhi,"M-71, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2341388,28.5508438,"Mughlai, North Indian",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,75 +7589,Nescafe,1,New Delhi,"M-51, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2352165,28.5502291,"Fast Food, Beverages",200,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,36 +1934,New Bengal Sweets,1,New Delhi,"M-5, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2345429,28.5504788,"Chinese, South Indian, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,26 +4385,Red Wok,1,New Delhi,"13, Guru Nanak Market, Pamposh Enclave, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2439728,28.5467137,"Chinese, Thai",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,146 +309477,Room Service,1,New Delhi,"Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2353512,28.5501971,"North Indian, Fast Food, Continental",1000,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,246 +9835,Samavar,1,New Delhi,"B-36, Pamposh Enclave, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2440227,28.5462678,"Kashmiri, Chinese, Mughlai",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,89 +147,Subway,1,New Delhi,"M-57, 1st Floor, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.234992,28.5505215,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,115 +18237320,The Cocktail House,1,New Delhi,"M-69, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.234278,28.5510276,"North Indian, Continental",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.4,Orange,Average,58 +9980,The Food Junction,1,New Delhi,"Opposite R Block Park, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.243434,28.5469314,"Chinese, Healthy Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,78 +732,The Kathis,1,New Delhi,"M-29, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2362493,28.5493861,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,67 +311515,The Munchbox,1,New Delhi,"Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2350504,28.5502088,"North Indian, Continental, Fast Food",850,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,199 +309520,The Sugar Story,1,New Delhi,"W Block, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2327916,28.5504467,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,19 +18400736,Owl is Well,1,New Delhi,"Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.24070288,28.54163598,"Burger, American, Fast Food, Italian, Pizza",1000,Indian Rupees(Rs.),No,Yes,No,No,3,4.5,Dark Green,Excellent,162 +18255193,A Piece of Paris,1,New Delhi,"Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",0,0,"Desserts, Bakery",600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,38 +311584,Baking Bad,1,New Delhi,"Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.24227265,28.54865381,"Pizza, Italian",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,697 +702,Baskin Robbins,1,New Delhi,"C-8, Hotel Solo Victoria, Main Road, Near M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2368331,28.5484106,Ice Cream,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,56 +18313122,Bliss Bakery,1,New Delhi,"M 2, Next to SCI Hospital, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2337795,28.5500924,"Bakery, Desserts",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,51 +309156,Bread & More,1,New Delhi,"N-17, N Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2329263,28.5563311,"Bakery, Desserts, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,130 +18268706,Bun Intended,1,New Delhi,"Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.24445798,28.54763391,"Burger, American, Fast Food",850,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,349 +18415352,Cafe Culture,1,New Delhi,"M 33, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.23642308,28.54967193,Cafe,1000,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,50 +3620,Cafe Diva,1,New Delhi,"N-8, N Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2333753,28.5566428,"European, Italian",2200,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.9,Yellow,Good,347 +1902,Cafe Turtle,1,New Delhi,"3rd Floor, N-16, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.233061,28.5564784,"Cafe, Italian, Lebanese",1000,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,251 +18434596,Caf Healthilicious,1,New Delhi,"Inside Pacific Sports Complex, Near Petrol Pump, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.23497704,28.56002689,"Healthy Food, Continental",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,24 +311671,Captain Grub,1,New Delhi,"Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2350818,28.5502611,"American, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.7,Yellow,Good,263 +2653,Cocoberry,1,New Delhi,"S-5, Ground Floor, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2330661,28.5501728,Desserts,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,155 +18377926,Ding Ding,1,New Delhi,"41 - Zamrudpur, Near Gurudwara, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.23671846,28.54953822,Chinese,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,93 +309820,D_ner Grill,1,New Delhi,"S-13, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2334652,28.5499281,"Fast Food, Turkish",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,323 +18034050,Elation,1,New Delhi,"M-32, 2nd Floor, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2362942,28.5496144,"North Indian, Continental, Italian, Finger Food",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,227 +18382372,Fluffles - The Fluffy Waffle Co.,1,New Delhi,"S 13, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2334786,28.5499293,Desserts,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,27 +302478,For the Love of Cake,1,New Delhi,"S Block, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2341837,28.5510721,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,116 +18466978,Gatsby Kitchen & Bar by Club BW,1,New Delhi,"N-4, N Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",0,0,"Continental, North Indian",2100,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,22 +9840,Grills & Platters,1,New Delhi,"A-3, iLodge Hotel, Pamposh Enclave, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2470262,28.5453005,"North Indian, Continental",1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,150 +18279463,Hungry Pistals,1,New Delhi,"B-6, Ground Floor, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2127245,28.5351803,"Fast Food, American, Italian",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,108 +18317517,Jon's head Grill,1,New Delhi,"M-10, 1st Floor, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.234992,28.5503422,"Mexican, Italian, American",1100,Indian Rupees(Rs.),No,Yes,No,No,3,3.9,Yellow,Good,105 +1215,Kebabs & Curries,1,New Delhi,"G-14, Bhanot Corner, R Block, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2435687,28.5468097,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,227 +18241531,Londoners,1,New Delhi,"M-25, 1st & 2nd Floor with Terrace, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2358901,28.5498001,"British, Chinese, Italian",1700,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,244 +3589,Mad Over Donuts,1,New Delhi,"S-13, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2334652,28.5499281,Desserts,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,187 +1056,New Minar,1,New Delhi,"M-65, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2344254,28.5508679,"North Indian, Mughlai",1250,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,229 +5797,Prince Chaat Corner,1,New Delhi,"M-29, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2362677,28.5494743,Street Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,84 +300007,Side Wok,1,New Delhi,"N-11, N Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2334652,28.556472,"Burmese, Chinese, Japanese, Malaysian, Thai",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.8,Yellow,Good,223 +303288,Starbucks,1,New Delhi,"M-33, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.23637111,28.5497965,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,187 +18371438,Thai House by Kylin,1,New Delhi,"N-6, 1st Floor, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2334203,28.5568711,Thai,1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,54 +308766,The Chocolate Haven,1,New Delhi,"M Block, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2349022,28.5503337,"Bakery, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,76 +18203180,The Laidback Cafe,1,New Delhi,"11, N Block, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.233555,28.5563909,"Continental, North Indian, Asian",2000,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,85 +305166,Tibb's Frankie,1,New Delhi,"M-2/A, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2337434,28.550003,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,66 +18291475,Tirupati Vrindavan,1,New Delhi,"34, 1st Floor, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2365188,28.5496806,South Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,53 +311737,Wagh Bakri Tea Lounge,1,New Delhi,"M-57, 1st Floor, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2349022,28.550513,Cafe,400,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,48 +18363391,Depot48,1,New Delhi,"N 3, Level 2, N Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2329263,28.556869,"American, Mexican, Finger Food",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,107 +18271497,Dezertfox,1,New Delhi,"R-45, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.240961,28.5482151,"Bakery, Desserts",550,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,160 +18456728,Druk,1,New Delhi,"71, 2nd Floor, M-Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2340939,28.550974,"Continental, Chinese, Thai",1000,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,22 +310776,Gastronomica Kitchen & Bar,1,New Delhi,"2nd Floor, M-55, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2350818,28.5503508,"European, Asian, North Indian, Italian, Continental, Pizza",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,826 +18456764,Karate Kitchen,1,New Delhi,"Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2399315,28.5577145,"Asian, Chinese, Thai",950,Indian Rupees(Rs.),No,Yes,No,No,2,4.4,Green,Very Good,42 +18418209,Nimtho,1,New Delhi,"1st Floor, R Block, Pamposh Enclave, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.244433,28.54727,Nepalese,750,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,62 +18382342,Noshi - Yum Asian Delivery,1,New Delhi,"Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2366984,28.5495184,"Chinese, Thai, Japanese",1000,Indian Rupees(Rs.),No,Yes,No,No,3,4.2,Green,Very Good,111 +312302,Nutri Punch,1,New Delhi,"M 45, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2405602,28.5482719,Healthy Food,600,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,158 +18312632,Pho King Awesome,1,New Delhi,"41 - Zamrudpur, Near Gurudwara, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.23670874,28.54954205,Asian,850,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,253 +18386761,Roadhouse Cafe,1,New Delhi,"M-22, 2nd Floor, Main Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2356207,28.5497745,"Continental, Italian",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,68 +307065,Sakley's The Mountain Cafe,1,New Delhi,"M-23, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.23633256,28.54944192,"Cafe, Italian, Continental, Fast Food",1900,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,1327 +9834,Shikhara,1,New Delhi,"4, Guru Nanak Market, R Block, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2439536,28.5469731,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,237 +18025105,Sinyora's,1,New Delhi,"Greater Kailash (GK) 1, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.25337565,28.55668362,Italian,500,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,51 +18396409,Stop My Starvation,1,New Delhi,"M 28 E, M Block Market, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.23635536,28.54963187,"Desserts, Fast Food",450,Indian Rupees(Rs.),No,Yes,No,No,1,4.3,Green,Very Good,83 +18365895,The Grill Kitchen - Gourmet,1,New Delhi,"Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.259616,28.538071,"North Indian, Continental",800,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,81 +308865,The Sugar Cube,1,New Delhi,"C-67A, Greater Kailash (GK) 1, New Delhi",Greater Kailash (GK) 1,"Greater Kailash (GK) 1, New Delhi",77.2327504,28.5567356,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,173 +18278203,A Lot Like Cake,1,New Delhi,"E-567, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2388987,28.541704,"Bakery, Desserts",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +305652,A W Foods,1,New Delhi,"11, Savitri Cinema Complex, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.240404,28.541887,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,44 +4299,Angels in my Kitchen,1,New Delhi,"353, S Block, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2457042,28.5307774,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,77 +18423108,Brown Sugar,1,New Delhi,"33, L.S.C, Masjid Moth, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2385097,28.5367217,"Cafe, Fast Food, Continental",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.2,Orange,Average,12 +17953926,Cakes and Bakes,1,New Delhi,"E-572, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.240072,28.5398536,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,9 +310321,CDB Cafe,1,New Delhi,"M-31, Ground Floor, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2414931,28.5331658,"North Indian, Chinese, Continental, Italian",1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,35 +69,Chungwa,1,New Delhi,"M-34, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2431379,28.5339137,"Chinese, Thai, Seafood",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,489 +202,Domino's Pizza,1,New Delhi,"M-83, Main Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2428374,28.5321867,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,138 +309902,Fudged,1,New Delhi,"Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.24218,28.53412,"Desserts, Bakery",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,17 +1916,Gopala,1,New Delhi,"5, S Block, Chandan Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2460449,28.5306584,"Mithai, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +5735,Gourmet Affaire's,1,New Delhi,"E-556, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2400467,28.5386726,"Bakery, Desserts, Ice Cream",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,66 +2591,Hot N Chilly,1,New Delhi,"17, LSC, Block, Masjid Moth, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2391233,28.5378256,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,14 +306264,Kabooze,1,New Delhi,"M-4, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2432885,28.5343238,"North Indian, Chinese, Continental",1900,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,148 +305817,Koyla Kebab,1,New Delhi,"M-5, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2432392,28.5345941,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,99 +18432940,LaBont,1,New Delhi,"M-22, Ground Floor, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2420436,28.5335013,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,17 +311690,MR.D - Deliciousness Delivered,1,New Delhi,"Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2457421,28.5281318,"North Indian, Italian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,148 +309072,Panda Wokk,1,New Delhi,"23-24, Masjid Moth, Near HDFC Bank, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2391222,28.5375972,"Chinese, Thai",950,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.4,Orange,Average,77 +18277002,Relax Xpress,1,New Delhi,"Shop 19, LSC, Masjid Moth, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2390081,28.5376881,"North Indian, Mughlai, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,25 +18433883,Rollplay,1,New Delhi,"4, Nilgiri Shopping Complex, Alaknanda, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2504814,28.527611,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,7 +301435,Sagar Ratna,1,New Delhi,"Shop 25-27, E Block Local Market, Masjid Moth, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2390211,28.5375623,"South Indian, North Indian",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,134 +18352256,Spanish Delights,1,New Delhi,"B-25, Greater Kailash Enclave - II, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2398689,28.5410272,Ice Cream,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +308367,Subway,1,New Delhi,"M-75, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.243265,28.5328212,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,96 +309741,The Beer Cafe,1,New Delhi,"M-4, 1st Floor, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2435154,28.5341433,"Finger Food, North Indian, Italian",1250,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,90 +18241869,Tashan,1,New Delhi,"M-60, Main Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2441084,28.5335898,Modern Indian,2000,Indian Rupees(Rs.),Yes,No,No,No,4,4.6,Dark Green,Excellent,304 +305125,Amalfi,1,New Delhi,"M-82, 1st Floor, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2427665,28.5322514,Italian,1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,484 +312270,Backkerei,1,New Delhi,"Mandakini Enclave, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2399764,28.5400134,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,67 +18249082,Beeryani,1,New Delhi,"M-44, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2437527,28.5333292,"North Indian, Biryani",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,136 +18279452,Beijing Street,1,New Delhi,"Outlet 22, DT Cinema Complex, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2398703,28.5413133,"Chinese, Thai, Fast Food",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,120 +305303,Bikanervala,1,New Delhi,"7, Masjid Moth, Near HDFC Bank, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2389367,28.5373191,"North Indian, South Indian, Fast Food, Street Food, Chinese, Beverages, Desserts, Mithai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,272 +18354645,Chaayos,1,New Delhi,"M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2432781,28.5341539,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,68 +1218,China Garden,1,New Delhi,"M-73, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2431781,28.5328167,Chinese,1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,663 +8429,Chocolateria San Churro,1,New Delhi,"1, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2436699,28.5345364,"Bakery, Desserts, Fast Food",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,594 +7819,Cocoberry,1,New Delhi,"E-586, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2401507,28.5409162,Desserts,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,66 +785,Costa Coffee,1,New Delhi,"M-38, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2432456,28.5337162,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,103 +312486,Country Curries,1,New Delhi,"21, Savitri Cinema Complex, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.24002328,28.54125928,"North Indian, Bengali",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,139 +1922,Culinaire,1,New Delhi,"Shop 2, Chandan Market, S Block, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2456868,28.5306722,"Chinese, Thai",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,843 +7642,Defence Bakery,1,New Delhi,"M-70, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2434692,28.5329663,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,113 +64,Diva - The Italian Restaurant,1,New Delhi,"M-8A, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2431861,28.5342023,Italian,2500,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.8,Yellow,Good,372 +18413250,Fig & Maple,1,New Delhi,"M-27, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2418472,28.5332835,"Continental, Italian",1650,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,42 +312787,Fitoor,1,New Delhi,"M-31, 2nd & 3rd Floor, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.241504,28.5331306,"American, Italian, Mughlai, North Indian",1350,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,140 +3611,Giani's,1,New Delhi,"E-574, Main Road, Near ICICI Bank, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2400539,28.5399106,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,173 +309815,Happy Hakka,1,New Delhi,"E-578, Savitri Road, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.24028882,28.54047022,"Chinese, Asian, Thai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,312 +1018,Mainland China,1,New Delhi,"Plot 4, Local Shopping Centre, Masjid Moth, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2386742,28.5373346,Chinese,1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,780 +8689,Mini Mughal,1,New Delhi,"M-71, 1st Floor, M-Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2434648,28.5328936,"North Indian, Mughlai",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,256 +18383512,Movenpick,1,New Delhi,"M 7, Main Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2431486,28.5342396,"Ice Cream, Desserts",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,27 +308238,New York Slice - Express,1,New Delhi,"E-584, Near Savitri Cinema, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2400419,28.540691,"Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,160 +5944,Nirula's Ice Cream,1,New Delhi,"E-564, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2400534,28.5394362,"Desserts, Ice Cream",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,36 +285,Not Just Paranthas,1,New Delhi,"M-84, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2426617,28.5323086,North Indian,1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,487 +304635,Nutritious Nation,1,New Delhi,"M-45, Main Market, Ground Floor, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2425286,28.5337643,"Healthy Food, Continental, Juices, Salad",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,352 +1021,Open Oven,1,New Delhi,"E-564, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2401571,28.5393522,"Bakery, Desserts, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,290 +307532,Starbucks,1,New Delhi,"Ground Floor, M-11, Main Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2428767,28.5340181,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,132 +1913,Swagath,1,New Delhi,"M-9, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.243348,28.5340197,"North Indian, Chinese, South Indian, Seafood, Chettinad",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,198 +311601,The Health Box,1,New Delhi,"Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.24218,28.53412,Healthy Food,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,124 +18254553,Twisted Tacos,1,New Delhi,"M-192, Ground Floor, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2437305,28.5345667,Mexican,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,173 +4821,Uber Lounge,1,New Delhi,"M-42, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2436254,28.5334703,"Continental, North Indian, Italian",2200,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.6,Yellow,Good,430 +308018,Yeti - The Himalayan Kitchen,1,New Delhi,"M-20, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.242033,28.5335584,"Tibetan, Nepalese",1300,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,807 +310342,Zai,1,New Delhi,"Building 3, Local Shopping Complex, Masjid Moth, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2386784,28.5370786,"North Indian, Continental, Chinese",1550,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,302 +307344,Al Bake,1,New Delhi,"Shop 22, E Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.238998,28.5378735,"Lebanese, Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.4,Red,Poor,30 +307801,Artusi Ristorante e Bar,1,New Delhi,"M-24, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2421548,28.5335863,Italian,3000,Indian Rupees(Rs.),Yes,No,No,No,4,4.1,Green,Very Good,496 +18462002,Baris,1,New Delhi,"Building 3, Local Shopping Complex, Mazjid Moth, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.23869669,28.53712778,"Turkish, Mediterranean, Middle Eastern",2000,Indian Rupees(Rs.),Yes,No,No,No,4,4.3,Green,Very Good,43 +18208886,Carnatic Cafe,1,New Delhi,"M-21, M Block Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2422778,28.533561,South Indian,550,Indian Rupees(Rs.),No,No,No,No,2,4.4,Green,Very Good,400 +18435305,Chhalava - __Lava,1,New Delhi,"M-40, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2434183,28.5336924,"North Indian, Italian, Continental",1200,Indian Rupees(Rs.),Yes,No,No,No,3,4.4,Green,Very Good,80 +18260641,Dilli BC,1,New Delhi,"M-58, Main Market, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2445203,28.5335082,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,267 +18349921,Sumo Sushi,1,New Delhi,"Behind Savitri Cinema, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.23985,28.5417418,Sushi,1000,Indian Rupees(Rs.),No,Yes,No,No,3,4,Green,Very Good,70 +18380149,The Heroes Bistro & Bar,1,New Delhi,"M-13, 2nd Floor, M Block Market, Greater Kailash 2, New Delhi, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2429111,28.5339436,Continental,900,Indian Rupees(Rs.),Yes,No,No,No,2,4,Green,Very Good,47 +2649,Whipped,1,New Delhi,"E-556, Greater Kailash (GK) 2, New Delhi",Greater Kailash (GK) 2,"Greater Kailash (GK) 2, New Delhi",77.2400353,28.5388101,"Bakery, Desserts",550,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,1125 +601,Cafe Coffee Day,1,New Delhi,"E-12, DDA Market, Masjid Moth, Greater Kailash (GK) 3, New Delhi",Greater Kailash (GK) 3,"Greater Kailash (GK) 3, New Delhi",77.236,28.53698056,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,33 +18462572,Paparazzi,1,New Delhi,"2 VIPPS Centre, North Wing, LSC Masjid Moth, Greater Kailash (GK) 3, New Delhi",Greater Kailash (GK) 3,"Greater Kailash (GK) 3, New Delhi",0,0,"Continental, North Indian, Asian",1900,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,7 +309105,Chehel Pehel,1,New Delhi,"Shop 11, DDA Market, Masjid Mod, Greater Kailash (GK) 3, New Delhi",Greater Kailash (GK) 3,"Greater Kailash (GK) 3, New Delhi",77.23596912,28.53722177,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,159 +18089222,Cress Bistro,1,New Delhi,"E-6, DDA Market, Masjid Moth, Greater Kailash (GK) 3, New Delhi",Greater Kailash (GK) 3,"Greater Kailash (GK) 3, New Delhi",77.23567978,28.53732191,"North Indian, Mediterranean, Continental",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,131 +309688,Frosted Heaven,1,New Delhi,"55-C, 2nd Floor, DDA Flats, Next to Chirag Dilli Flyover, Masjid Moth, Near Greater Kailash (GK) 3, New Delhi",Greater Kailash (GK) 3,"Greater Kailash (GK) 3, New Delhi",77.233935,28.54053208,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,46 +18334422,Baskin Robbins,1,New Delhi,"G-53, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2024756,28.5565678,Ice Cream,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,9 +18365388,Behrouz Biryani,1,New Delhi,"Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2049011,28.557068,Biryani,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,51 +18312607,Cafe Coffee Day,1,New Delhi,"HPCL Petrol Pump, Near IOC Office, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2069091,28.5569719,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +309322,Cakeatouille,1,New Delhi,"P-11, 2nd Floor, Green Park Extension, Green Park, New Delhi",Green Park,"Green Park, New Delhi",0,0,"Bakery, Desserts",800,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,15 +18429154,Chilli Singh,1,New Delhi,"G-1 A, Aashirwad Complex, D-1, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2049011,28.5571577,"Chinese, Thai, Seafood",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.1,Orange,Average,7 +18336220,Da Pizza Corner,1,New Delhi,"107-A, Gautam Nagar, Green Park, New Delhi",Green Park,"Green Park, New Delhi",0,0,Pizza,600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +203,Domino's Pizza,1,New Delhi,"S-27, Ground Floor, Main Market, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2023408,28.5565998,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,238 +18414479,Faasos,1,New Delhi,"Shop G-1B, Ground Floor, Ashirwad complex, Near Uphar Cinema, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2049011,28.557068,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,13 +1625,Gupta Ji Ka Dhaba,1,New Delhi,"Near Uphaar Cinema, Green Park Extension Market, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2058893,28.5583275,North Indian,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,49 +2899,Karim's,1,New Delhi,"A-22, Aurobindo Place Market, Near Green Park Masjid, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2046765,28.5530579,"Mughlai, North Indian",750,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,235 +18180081,Let's Tango,1,New Delhi,"Shop C-107, Ground Floor, Green Park, New Delhi",Green Park,"Green Park, New Delhi",0,0,"North Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +473,Madras Cafe,1,New Delhi,"S-26, Main Market, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2023408,28.5565998,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,2.5,Orange,Average,191 +18355419,Nachos And Company,1,New Delhi,"L-1, 3rd Floor, Green Park Extension, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2018467,28.5608102,Mexican,700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,14 +18432237,Ovenstory Pizza,1,New Delhi,"Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.20523,28.556941,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,6 +259,Pizza Hut,1,New Delhi,"S-32, Main Road Market, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2020264,28.5563457,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.3,Orange,Average,276 +7316,Red Chilli,1,New Delhi,"S-15, Uphaar Cinema Complex, Opposite Metro Station, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2059791,28.5581568,"North Indian, Chinese",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.1,Orange,Average,104 +18222566,The Groghead,1,New Delhi,"A-5, 2nd Floor, Above Hyundai Showroom, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2057995,28.5557195,"Italian, North Indian",1700,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,267 +443,The Tandoor,1,New Delhi,"G-15, D-1, Aashirwaad Complex, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2051706,28.5570041,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,121 +308315,Twenty Ten - Ashtan Sarovar Portico,1,New Delhi,"Ashtan Sarovar Portico, C 2, Green Park Extension, New Delhi, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2066529,28.5595207,"North Indian, Continental, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,23 +769,Adyar Ananda Bhavan,1,New Delhi,"S-18, Main Market, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2025317,28.5572354,"South Indian, North Indian, Street Food, Chinese, Mithai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,368 +312011,Baked Love By Vatsala,1,New Delhi,"Near Uphaar Cinema, Green Park Main, New Delhi, Green Park, New Delhi",Green Park,"Green Park, New Delhi",0,0,"Bakery, Desserts",720,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,38 +65,Drums of Heaven,1,New Delhi,"S-14, Green Park Extension, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2059342,28.5580181,"Chinese, Seafood, Thai",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,234 +9672,Dunkin' Donuts,1,New Delhi,"S 36, Main Market, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2021844,28.5558677,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,431 +472,Evergreen Sweet House,1,New Delhi,"S-29 & 30, Main Market, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2026428,28.5562101,"South Indian, North Indian, Chinese, Fast Food, Street Food, Mithai",450,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,1198 +3400,Gung The Palace,1,New Delhi,"D-1/B, Near Ashirwad Complex, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2054344,28.5568725,Korean,2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,303 +18337744,Keventers,1,New Delhi,"Shop G53, Main Market, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2024756,28.5565678,Beverages,250,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,16 +18268360,La Seine -The Chocolate Emporium,1,New Delhi,"G-54, Main Market, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2023504,28.5566267,"Bakery, Desserts, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,25 +4096,Nagaland's Kitchen,1,New Delhi,"S-2, Uphaar Cinema Complex, Green Park Extension Market, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2057351,28.5577921,"Chinese, Thai, Seafood, Naga",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,556 +18358700,Pasta La Vista,1,New Delhi,"S-4, Oriental House, Gulmohar Enclave Commercial Complex, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2080004,28.5577669,Cafe,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,95 +2217,Tamura,1,New Delhi,"S-16, Uphar Commercial Complex, Green Park Extension Market, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2062936,28.5580523,Japanese,1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,163 +18398571,The Chai Story,1,New Delhi,"S1, Green Park Extension, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2057664,28.5574296,Cafe,300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,42 +1621,The Clay Oven,1,New Delhi,"D-1, Hotel Park Residency, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2049011,28.5574266,"North Indian, Mughlai, Chinese",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,181 +18425177,Aazad Chicken Corner,1,New Delhi,"S-12, Green Park Extension, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2057995,28.5584086,"Biryani, Mughlai",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18481289,Chaipiyoji,1,New Delhi,"G 39, Opposite The Asian Age Green Park, Green Park Main Market, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2028955,28.5579188,"Tea, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424593,Chatkara,1,New Delhi,"Opposite S-26, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2024756,28.5566575,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18383432,HoG - House of Goodies,1,New Delhi,"A 130, Neeti Bagh, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2169384,28.5610837,"Bakery, Desserts",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18412904,Kettle & Kegs,1,New Delhi,"Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2049011,28.557068,Tea,200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,0 +18481294,Krishna Juice & Shakes Corner,1,New Delhi,"F137/3, Near Hanuman Mandir, Gautam Nagar, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2097034,28.560101,Juices,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18354330,Momolicious,1,New Delhi,"H 12 B, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.20243322,28.5589794,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304230,Pastry Palace,1,New Delhi,"S-14/A, Main Market, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2025654,28.5572038,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18372315,South Gate,1,New Delhi,"C-18, Green Park, New Delhi",Green Park,"Green Park, New Delhi",0,0,"North Indian, Chinese",850,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18430894,Sweet Bakes,1,New Delhi,"U-30, Green Park, New Delhi",Green Park,"Green Park, New Delhi",0,0,"Bakery, Desserts",550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18250897,Sweet Sensations,1,New Delhi,"H-34, Green Park Extension, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.2039156,28.5608042,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18261052,The Pirates Of China Town,1,New Delhi,"9 A Gautam Nagar, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.21116707,28.56250844,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +3468,Hot n Hot,1,New Delhi,"Opposite Aurobindo Shopping Complex, Green Park, New Delhi",Green Park,"Green Park, New Delhi",77.203602,28.5526247,"Chinese, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,2.4,Red,Poor,23 +18463949,Feng Shuii,1,New Delhi,"2nd & 3rd Floor, S-27, Green Park, New Delhi",Green Park,"Green Park, New Delhi",0,0,"Thai, Chinese",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.3,Green,Very Good,31 +310949,Bikaner Sweets,1,New Delhi,"Outram Lane, Kingway Camp, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2052335,28.7010154,"Mithai, Street Food, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,10 +18356808,Coalition Cafe,1,New Delhi,"2530, 3rd Floor, Hudson Lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2044316,28.6945529,Cafe,800,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,34 +18361758,Keventers,1,New Delhi,"10, Edward Line, Kingsway Camp, Near GTB Nagar Metro Station, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2041375,28.695646,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +312755,Mid Night Khana,1,New Delhi,"GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.0955538,28.73409022,"North Indian, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,30 +18241525,Ministry of Cafe,1,New Delhi,"H-11/12, 1st Floor, Opposite Nirankari Jewellers, Above Yes Bank, Hudson Lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2041824,28.6965012,"North Indian, Chinese, Continental, Italian",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,79 +313492,Officer's Kitchen,1,New Delhi,"Shop 278, A Block, Gandhi Vihar, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2212289,28.7007738,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,27 +18472658,Oh Boy Lounge,1,New Delhi,"2527, Hudson Lane, 2nd Floor & Terrace, Delhi University, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",0,0,"North Indian, Chinese, Continental",1000,Indian Rupees(Rs.),No,No,No,No,3,3.1,Orange,Average,5 +18418248,Sahni's Fish Corner,1,New Delhi,"Shop 333, Bhai Parmanand Colony, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2028349,28.7073875,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18427869,Sardar A Pure Meat Shop,1,New Delhi,"1612, Outram Line. Kingsway Camp, Dr. UP Mukherjee Nagar, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2088685,28.7011015,"Raw Meats, Fast Food, North Indian",150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +310948,Singh Mutton & Chicken Shop,1,New Delhi,"45, Outram Line, Kingway Camp, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2051662,28.700431,"Raw Meats, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18463997,The Mashup,1,New Delhi,"2528, 1st Floor, Hudson Lane, Kingsway Camp, Delhi University, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2041824,28.69471,Fast Food,1100,Indian Rupees(Rs.),No,No,No,No,3,3.2,Orange,Average,12 +18337898,Vaishnu Bhojanalaya,1,New Delhi,"168 A, Pocket E, Opposite Pooja Prak, LIG Flats, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2042028,28.698905,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,13 +18427234,Central Perk,1,New Delhi,"2510, 1st Floor, Hudson Lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2042723,28.6957933,"Cafe, Chinese, Italian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,82 +18382697,Diet Dabba,1,New Delhi,"Shop 15, DDA Market, Hudson Lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2049891,28.6944315,"Healthy Food, Juices, Salad",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,37 +18400720,Mama's Buoi,1,New Delhi,"3rd Floor, 2624, Hudson Lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2054401,28.6929495,"North Indian, Continental, Italian",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,373 +3363,New Vikrant Restaurant,1,New Delhi,"119, Mall Road, Main Chowk, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2053503,28.6987623,"North Indian, Mughlai, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,90 +310592,The Vintage Avenue,1,New Delhi,"2516, Hudson Lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2038231,28.6951234,"North Indian, Chinese, Continental, Italian",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.9,Yellow,Good,1439 +18455511,Apna Punjabi Zayka,1,New Delhi,"Shop No. 10/1, Vishal Market, Near West Mukherjee Nagar, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2029119,28.7073367,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18361763,Best Biryani Centre,1,New Delhi,"Shop 9, Mall Road, Near GTB Nagar Metro Station, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2077365,28.6984564,Biryani,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18124350,Delhi Chaat Bhandar,1,New Delhi,"Parmanand Chowk, Kingsway Camp, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2044321,28.7099284,"Fast Food, Chinese",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18408045,Encounter,1,New Delhi,"22, 1st Floor, Hudson lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2044519,28.6975121,"North Indian, Finger Food",800,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,1 +18455515,Flavour's,1,New Delhi,"1616, Outram Lane, Opposite Nulife Hospital, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2084849,28.700706,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18489838,Food Adda,1,New Delhi,"Shop 2, DDA Market, Hudson Lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",0,0,"North Indian, Italian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18441835,Friends Fast Food,1,New Delhi,"Shop 27, DDA Market, Hudson Lane, Kingsway Camp, Hudson Lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2049879,28.6945895,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18361202,Hot & Pot,1,New Delhi,"Near DTC Bus Pass Section, Timar Pur Chowk, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2048113,28.6991585,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18463978,Lucky Corner Shop,1,New Delhi,"2418, Hudson Lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2048186,28.6961012,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18124389,Mahesh Shudh Vaishno Bhojanalya,1,New Delhi,"Near GTB Metro Station, Delhi University, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2050808,28.6979305,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18492048,Piper's & Grill - The Night Chef,1,New Delhi,"GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.208794,28.694348,"North Indian, Chinese, Continental",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18463985,RAM-G Samose Wale,1,New Delhi,"C-16, Hudson Lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2045178,28.6961124,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18124352,Shubham Vaishno Bhojanalya,1,New Delhi,"12 D, Dhaka Village, Main Road, Delhi University, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2046316,28.7077386,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +9442,Shudh Vaishno Bhojanalaya,1,New Delhi,"Shop 104, Near Metro Station Gate 3, Kingsway Camp, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2059791,28.6981059,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18361755,Shudh Vaishno Dhaba,1,New Delhi,"Near Indra Band, Kingsway Camp, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2048113,28.6990689,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18455513,Singh Chicken,1,New Delhi,"Shop 1, Plot 7 & 8, Vishal Market, West Mukherjee Nagar, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2027704,28.7075633,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18481309,Spezia Deliveries,1,New Delhi,"Hudson Lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",0,0,"North Indian, Continental, Chinese",900,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18499482,TAG,1,New Delhi,"Near GTB Nagar metro station, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",0,0,"Cafe, Continental, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18446394,UFO,1,New Delhi,"GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.204411,28.6966432,"Fast Food, Street Food, Beverages",500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +18431175,Urban Patty House,1,New Delhi,"Shop 13, DDA Market, Hudson Lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2050359,28.6944781,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18375397,Big Yellow Door,1,New Delhi,"2521, 2nd Floor, Kingsway Camp, Hudson Lane, GTB Nagar, New Delhi",GTB Nagar,"GTB Nagar, New Delhi",77.2040926,28.6950596,"Cafe, Fast Food, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,214 +6628,Amritsar Juction,1,New Delhi,"Opposite Amar Dev Public School, Near Vinayak Hospital, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1883704,28.7000027,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,13 +4079,Bawarchi,1,New Delhi,"236, Main Road, Opposite North Gate Orbit Plaza Mall, Part 3, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.193222,28.6978702,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,32 +9392,Bawarchi,1,New Delhi,"1, Local Shopping Complex, Derawala Nagar, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.192054,28.6989226,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,35 +9386,Bhogalji Bikaner Sweets,1,New Delhi,"A-353, Derawal Nagar, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1886399,28.7002971,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +312400,Bikanervala,1,New Delhi,"B-79, GT Karnal Road, Industrial Area, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1889993,28.6947792,"Mithai, Street Food, North Indian, South Indian, Chinese, Fast Food, Beverages",550,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,63 +310982,Changezi Chicken,1,New Delhi,"G-1, Vardhman Royal Plaza, LSC, Deraval Nagar Part 1, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1898079,28.7014836,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,42 +9421,Giani's,1,New Delhi,"A-353, 7, Derawala Nagar, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1889483,28.7004928,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,30 +1147,Gola Northend,1,New Delhi,"Plot 5, Local Shopping Centre, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1895384,28.7014578,"Mughlai, North Indian, Chinese",1300,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,155 +18057825,Kay's Chik-In,1,New Delhi,"G-3, Vardhman Royal Plaza, Gujranwala Town Part 1, Gujranwala Town , New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1897181,28.701475,North Indian,650,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,7 +18444811,Mr. Lobo,1,New Delhi,"Shop 1, Local Shopping Complex, Derawal Nagar, Phase 4, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1917845,28.6991655,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +9366,Nut Khut Rasoi,1,New Delhi,"1, Near Gola Northend, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1895597,28.7013265,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,30 +18361754,Purani Delhi 6,1,New Delhi,"98/11, Badi Madjid, G.T. Karnal Road, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1905019,28.6924395,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18245254,Raahgiri,1,New Delhi,"G-6, Local Shopping Complex, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.192099,28.6989717,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +18219524,Singh Dhaba,1,New Delhi,"Near Arya Bhatt College, G T Karnal Road, Industrial Area, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1863488,28.6975254,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +305276,Sugar Boutique,1,New Delhi,"58, State Bank Colony, Near Part 2, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1898978,28.6943279,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,11 +312355,Zaika Amritsari,1,New Delhi,"G-6/7, Balaji Plaza, DDA Market, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1898978,28.7017609,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,11 +6599,Ashok Meat Wala,1,New Delhi,"B-180/2, Derawal Nagar, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1898079,28.7014836,Mughlai,500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,106 +300022,Baker's Stop,1,New Delhi,"A-353, Near Malwa Taxi Stand Crossing, Derawal Nagar, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1887297,28.7003953,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,170 +6605,Nut Khat Caterers,1,New Delhi,"Near Vinayak Hospital, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1878236,28.699677,"Fast Food, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,71 +18034044,Penta Cafe,1,New Delhi,"663, Near Pentamed Hospital, Derawal Nagar, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1919642,28.6991827,"Fast Food, Italian",500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,24 +300946,Penta Cafeteria,1,New Delhi,"Shop 6, Block 5, LSC Derawala Nagar, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1917362,28.6993443,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,95 +18457090,Railway Yard,1,New Delhi,"B-36/11, GT Karnal Road Industrial Area, Near Nanak Piao Gurudwara, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",0,0,"North Indian, Chinese, Continental",300,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,35 +310409,Roti Aur Boti,1,New Delhi,"B-177, Derawal Nagar, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1899423,28.7016159,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,18 +307228,Sahni Fish Corner,1,New Delhi,"G2, Balaji Complex, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1894036,28.7015792,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,32 +18464633,Aap Ki Khatir,1,New Delhi,"G-1, LSC, Derawala Nagar, Near Pentamed Hospital, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1918129,28.6988557,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18358668,Aggarwal Sweets,1,New Delhi,"A-199, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1836813,28.7006314,"Street Food, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18361743,Amul Ice-Cream Parlour,1,New Delhi,"Ground Floor, North Gate Mall, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1919823,28.6982502,Ice Cream,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18245285,Chaat King,1,New Delhi,"Shop 6 & 7, DDA Market, Near Pentamed Hospital, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1917396,28.6991164,"Street Food, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18364336,Cherry Berry,1,New Delhi,"State Bank Colony, Near Nanak Piau Gurudwara, GTK Road, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1899876,28.6943365,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18358207,Flavours Kitchen,1,New Delhi,"G-4, Local Shopping Complex, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1898079,28.7014836,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +312357,Hook Up,1,New Delhi,"Shop 14, Pentamed Hospital Complex, LSC Derawal Nagar, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1916947,28.6991568,"North Indian, Continental",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18464627,Jnm Mama Mafia,1,New Delhi,"Shop G-7, Vardhman Royal Plaza, Local Shopping Complex, Deraval Nagar Part 1, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1894379,28.7015191,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18431125,Kitchen199,1,New Delhi,"A-199, Part 1, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1839678,28.7006555,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18361741,Noddy's,1,New Delhi,"Ground Floor, North Gate Mall, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1920054,28.6982616,"Beverages, Desserts",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18464621,Om Ji Bhature Wale,1,New Delhi,"G-6, Vardhman Royal Complex, Part 1, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1894954,28.7017374,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449634,Peshawari Mehel,1,New Delhi,"Shop 4, Plot 10, LSC, Derawala Nagar, Near Pentamid Hospital, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1921439,28.6990208,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18361745,Republic of Chicken,1,New Delhi,"251, Gujrawalan Town 3, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1940755,28.6971907,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18124390,Shri Radhe,1,New Delhi,"A-199, Gujranwala Town Part 1, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1840036,28.7007076,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18464637,Spices Affair,1,New Delhi,"G-7, LSC, Derawala Nagar, Near Pentamed Hospital, Gujranwala Town, New Delhi",Gujranwala Town,"Gujranwala Town, New Delhi",77.1920352,28.698891,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +5897,34 Parkstreet Lane,1,New Delhi,"DDA Market,Kala Sarai, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2096084,28.5602677,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,27 +18381236,Al Forno by Aishwarya,1,New Delhi,"Gulmohar Park, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",0,0,"Bakery, Desserts",800,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,17 +18416840,Bakingo,1,New Delhi,"Shop 8, Plot 1, Kaushalya Park, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2046327,28.5508626,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,11 +18222563,Bandstand,1,New Delhi,"214, DDA Shopping Complex, Aurobindo Place, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2033238,28.5523954,"European, Continental",1700,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,339 +18449796,Big Fat Sandwich,1,New Delhi,"A-15A Front, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2039324,28.5503273,American,800,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,21 +18471243,Blue Tokai Coffee Roasters,1,New Delhi,"A-15A Front, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.207813,28.552966,Cafe,350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,10 +652,Cafe Coffee Day - The Lounge,1,New Delhi,"E-29, Main Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2076874,28.5510835,Cafe,750,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,76 +9841,Cakes & Bakes,1,New Delhi,"Block E-1, Ground Floor, Near Hauz Khas Police Station, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2068141,28.557586,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +313482,Captain Grub,1,New Delhi,"Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.19397,28.55402,"American, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.3,Orange,Average,61 +308599,Chaat Corner,1,New Delhi,"Shop 6, Aurobindo Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2037786,28.5518155,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +807,Cosy Restaurant,1,New Delhi,"B-1/30, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2043582,28.5513556,"North Indian, Mughlai, Chinese",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,195 +18423871,Food Refill,1,New Delhi,"472, Hardevpuri , Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.214976,28.5626079,Chinese,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,23 +308188,Ganesh Anna South Indian Food Corner,1,New Delhi,"Sudarshan Road, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2094004,28.5605341,South Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +3156,Giani,1,New Delhi,"B-1/30, Ground Floor, Opposite Aurobindo Place Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2045662,28.551367,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,65 +306319,Gravies,1,New Delhi,"Adjacent Main Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2067363,28.5568936,"North Indian, Biryani, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,157 +311033,Green Chick Chop,1,New Delhi,"56, Kalu Sarai, Opposite IIT Gate, Near Azad Apatments, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2027931,28.542347,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +4250,Grub Pub,1,New Delhi,"E-11, Hauz Khas Main Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2084143,28.5516775,Chinese,1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,180 +300607,Handi Masala Restaurant,1,New Delhi,"101, DDA Shopping Complex, Vijay Mandal, Near Metro Satation, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2043752,28.5416535,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,16 +301325,Himalaya Dhaba,1,New Delhi,"122 A-10,Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2115953,28.5614631,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,21 +308277,Hot & Hot,1,New Delhi,"Opposite Aurobindo Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2036513,28.552691,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,10 +301328,Hot Box,1,New Delhi,"F-130/2, Gautam Nagar, Near, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2106376,28.5622242,"North Indian, Continental, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,114 +18313482,Indrani's Kitchen,1,New Delhi,"D 74, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2070845,28.5515237,Bengali,800,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,13 +18287406,Kallu Hot Zaika,1,New Delhi,"G-11, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2054205,28.5505307,Mughlai,800,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,8 +18354624,Kathi Roll Corner 44,1,New Delhi,"Hauz Khas Market Road, Opposite NIFT, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2093121,28.5554938,Fast Food,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,4 +307025,Mama Dhaba,1,New Delhi,"D-137, Gautam Nagar, Near Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2091679,28.560378,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,8 +18469980,Miam,1,New Delhi,"A-15A Front, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2039324,28.5503273,"Bakery, Desserts",800,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,8 +309593,Momos House,1,New Delhi,"G-130, Sudarshan Cinema Road, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2100361,28.5609831,Chinese,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,32 +18252376,Nirula's Ice Cream,1,New Delhi,"Surya Mansion 1, Kaushalya Park, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2046029,28.5505745,"Ice Cream, Desserts",300,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,9 +312809,Overdose,1,New Delhi,"27 C/3, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2141709,28.5618666,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,10 +304546,Punjabi Chaap Corner,1,New Delhi,"D-137, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2093036,28.5604449,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,21 +301327,Punjabi Tadka,1,New Delhi,"Shop 2, 117/1, Sudarshan Road, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2107833,28.562373,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,21 +303170,Rapti Chinese Food,1,New Delhi,"Shop 27, C/4, Gautam Nagar, Near Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2141542,28.5618535,Chinese,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,35 +306658,Riyaz Chicken Corner,1,New Delhi,"Shop 137, Block D, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2095255,28.5603597,"Biryani, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,74 +300564,Sharda Pastry Shop,1,New Delhi,"E 23, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2080868,28.5509252,"Bakery, Desserts, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,25 +5630,Southy,1,New Delhi,"15, Koushalya Park, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2056973,28.5500479,South Indian,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,175 +306511,Spicy,1,New Delhi,"117/1, Shop 3, Sudarshan Road, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2107781,28.5624222,"North Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,13 +306247,Subway,1,New Delhi,"E-25A, Hauz Khas Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2081473,28.5510151,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,87 +18245263,The Foodie Cafe,1,New Delhi,"DDA Shopping Complex, Aurobindo Place, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2039336,28.5521888,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,19 +305040,Uncle's Kabab Point,1,New Delhi,"103-A/1, Sudershan Cinema Road, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2120463,28.5639463,"Fast Food, North Indian",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,59 +673,Wimpy,1,New Delhi,"31, Aurobindo Place Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2039227,28.5522405,"Fast Food, Burger",350,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,220 +304542,Zaika,1,New Delhi,"27-A/1, Opposite Central Park, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2145148,28.5617035,"North Indian, Mughlai, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,26 +18349919,Natural Ice Cream,1,New Delhi,"G-1, Ground Floor, Opposite Aurobindo Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2045658,28.5513376,Ice Cream,150,Indian Rupees(Rs.),No,Yes,No,No,1,4.5,Dark Green,Excellent,67 +4251,Cafe 6,1,New Delhi,"D-6, Ground Floor, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2084289,28.5525624,"Cafe, Fast Food, North Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,406 +305736,Cafe Coffee Day,1,New Delhi,"Near Main Building, IIT, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2039819,28.550438,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,35 +308257,Dzukou Tribal Kitchen,1,New Delhi,"E-22, 3rd Floor, Main Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.208163,28.5509312,Naga,1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,145 +18359259,Havmor Ice Cream,1,New Delhi,"G-1, Opposite Aurobindo Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2045516,28.5513546,Ice Cream,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,30 +18335682,Lost in Frost,1,New Delhi,"Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2063121,28.5397438,Bakery,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,18 +303716,Pink Box,1,New Delhi,"B-1/30, Near Aurobindo Marg, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2045677,28.5513909,"Bakery, Desserts",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,243 +18430873,Potet,1,New Delhi,"The Junction, CSC Complex, Green Park Main Road, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2059157,28.5542453,"Fast Food, Beverages",300,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,23 +18440414,Root'd,1,New Delhi,"216, A/1, Gulmohar Park Main Road, Near Father Agnel School, Gulmohar Park, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2131207,28.5601373,"Continental, Cafe",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,18 +5267,South Cafe,1,New Delhi,"125-A, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2104167,28.5602363,South Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,95 +310259,Sri Balaji,1,New Delhi,"117/2, Shop 2 & 3, Sudarshan Road, Gautam Nagar, Near Hauz Khas, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2106438,28.5622518,"South Indian, Chinese",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,65 +18402768,Thalaivar,1,New Delhi,"E-25 A, Main Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2080928,28.5509721,"South Indian, Kerala",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,49 +18418258,The Junction,1,New Delhi,"CSC Complex, Opposite Aurobindo Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2059313,28.5543973,"North Indian, Continental, Asian, Italian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,93 +18427205,34 Park Street Lane,1,New Delhi,"63, Kalu Sarai, Opposite Bansal Tutorials, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2036655,28.5417943,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18472618,Adda The Spice Affair,1,New Delhi,"117/2, Sudarshan Road, Gautam Nagar, Near Hauz Khas, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.210758,28.5623218,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18424902,All About Food,1,New Delhi,"E 137 , Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2093815,28.5605085,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18427209,Bombay Pao Bhaji,1,New Delhi,"DDA Market, Kalu Sarai, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.203929,28.5414504,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18336472,Brown House Cafe,1,New Delhi,"117/3, Sudarshan Road, Gautam Nagar, Near Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2099284,28.5600874,"Chinese, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18163900,Chinese Hutt,1,New Delhi,"F-137/2 Ground Floor, Left Side Gulmohar Park Road, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2096165,28.5602665,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18425757,Desi Tadka,1,New Delhi,"F 137/2, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2098425,28.560245,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18427218,Food Daddy,1,New Delhi,"44 A/2, Kalu Sarai, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.204319,28.5419041,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18352684,Front Food Corner,1,New Delhi,"DDA Market, Kalu Sarai, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2043423,28.5418706,North Indian,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18423135,Gupta's Vegetarian Paradise,1,New Delhi,"107 A, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2116483,28.5636313,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18472605,Hot Kathi Roll,1,New Delhi,"Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2097525,28.5601549,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18224537,House Of Chocolate,1,New Delhi,"Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",0,0,"Desserts, Bakery",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18494204,Jaisons,1,New Delhi,"118/14, Gurukul Road, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",0,0,"Fast Food, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18425738,Sher -E- Punjab,1,New Delhi,"Shop 3, Main Road Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2081917,28.5608475,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18418229,Shi Cafe,1,New Delhi,"24/3, Hauz Khas Village, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.19461381,28.55510074,"Cafe, Mexican, Continental",1000,Indian Rupees(Rs.),No,No,No,No,3,0,White,Not rated,0 +18425748,Sri Balaji,1,New Delhi,"9 A, Gautam Nagar, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2143271,28.5631376,"South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18287398,Zaika Kathi Roll,1,New Delhi,"137, Gautam Nagar Nala, Near Hauz Khas, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2095383,28.5603853,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18436439,Cravity ,1,New Delhi,"A-15A/1, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.2079154,28.5532206,"Desserts, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,55 +18365575,Little Saigon,1,New Delhi,"E-16, Main Market, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.208506,28.5514459,Vietnamese,1000,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,83 +307490,Summer House Cafe,1,New Delhi,"1st Floor, DDA Shopping Complex, Aurobindo Place, Hauz Khas, New Delhi",Hauz Khas,"Hauz Khas, New Delhi",77.203809,28.5525204,"Italian, Continental",1850,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,1823 +301001,Elf Cafe & Bar,1,New Delhi,"26 A, 2nd Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1944778,28.5542839,"Italian, North Indian, Continental",1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,704 +8369,Garage Inc.,1,New Delhi,"30, 2nd Floor, Powerhouse Buliding, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.194918,28.5538347,"Continental, American, Italian",1900,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,763 +304296,My Bar Grill,1,New Delhi,"28, 3rd Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1944373,28.5543721,"North Indian, Italian, Continental, Chinese",1200,Indian Rupees(Rs.),No,No,No,No,3,3.3,Orange,Average,1363 +18082196,Wow! Momo,1,New Delhi,"8-A, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.194795,28.5546133,Chinese,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,491 +307931,Coast Cafe,1,New Delhi,"H-2, 2nd & 3rd Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1960285,28.5545112,"Continental, Kerala",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.5,Dark Green,Excellent,1033 +313304,Chaayos,1,New Delhi,"26, 1st Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1945289,28.5541711,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,Yes,No,1,3.9,Yellow,Good,454 +5732,"Elma's Bakery, Bar, and Kitchen",1,New Delhi,"31, 2nd Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1948429,28.5548297,"Continental, American, Italian, Bakery",1900,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,1756 +301131,Fork You,1,New Delhi,"30, 1st Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.194058,28.5540858,"Continental, Asian, Italian, Mediterranean, Burger",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,1845 +312437,High5 Cafe & Bar,1,New Delhi,"TB-6/1-A, 1st Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1949328,28.5542208,"American, Continental, North Indian, Chinese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,379 +301442,Imperfecto,1,New Delhi,"1-A/1, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1951433,28.5546859,"Mediterranean, Italian, Continental, Spanish, North Indian",1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,2247 +301574,Maison Des Desserts,1,New Delhi,"T-49, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1941291,28.5534325,"Cafe, Desserts",1200,Indian Rupees(Rs.),No,Yes,No,No,3,3.9,Yellow,Good,552 +308463,Maquina,1,New Delhi,"30-A, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1943109,28.5540646,"Continental, Tex-Mex",1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,567 +304027,Masha,1,New Delhi,"9-A, 1st Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1940584,28.5541496,"North Indian, Chinese, Thai, Italian, Middle Eastern",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,384 +307330,Moonshine Cafe & Bar,1,New Delhi,"30, 2nd Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.194159,28.5541314,"Continental, Italian",2400,Indian Rupees(Rs.),No,No,No,No,4,3.5,Yellow,Good,884 +306334,New York Slice,1,New Delhi,"50, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1941855,28.5536,"Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,489 +5030,Out Of The Box,1,New Delhi,"9-A, 2nd & 3rd Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1944824,28.5541766,"American, North Indian, European, Asian",1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,3697 +8893,Raasta,1,New Delhi,"30-A, 1st Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1944156,28.5541282,"Continental, Italian",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.9,Yellow,Good,1878 +308322,Hauz Khas Social,1,New Delhi,"9-A & 12, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1944706,28.5542851,"Continental, American, Asian, North Indian",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.3,Green,Very Good,7931 +3392,Kunzum Travel Cafe,1,New Delhi,"T-49, First Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1943217,28.55333,Cafe,200,Indian Rupees(Rs.),No,No,No,No,1,4.2,Green,Very Good,542 +18408040,Lord of the Drinks Meadow,1,New Delhi,"Inside Deer Park, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1952737,28.5557479,"European, Chinese, North Indian, Italian",2200,Indian Rupees(Rs.),Yes,No,No,No,4,4.2,Green,Very Good,278 +307360,Matchbox,1,New Delhi,"30, 1st Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1941749,28.5541009,"American, British, Continental",1700,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,969 +89,Naivedyam,1,New Delhi,"Shop 1, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1952749,28.555157,South Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,1627 +18208924,Rang De Basanti Urban Dhaba,1,New Delhi,"1-A, 1st Floor, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.195013,28.554476,North Indian,1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.4,Green,Very Good,541 +303092,Smoke House Deli,1,New Delhi,"12, Hauz Khas Village, New Delhi",Hauz Khas Village,"Hauz Khas Village, New Delhi",77.1948582,28.5542015,"European, Italian, Cafe",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,1199 +307436,Viva Deli - Holiday Inn,1,New Delhi,"Holiday Inn, 12, Asset Area, Hospitality District, Aerocity, New Delhi","Holiday Inn, Aerocity","Holiday Inn, Aerocity, New Delhi",77.122793,28.550327,Bakery,1000,Indian Rupees(Rs.),No,No,No,No,3,3.3,Orange,Average,30 +306510,Cafe on 3 - Holiday Inn,1,New Delhi,"Holiday Inn, 13-A, District Centre, Mayur Vihar Phase 1, New Delhi","Holiday Inn, Mayur Vihar","Holiday Inn, Mayur Vihar, New Delhi",77.2980406,28.5907981,"Continental, Chinese, Thai, Mediterranean",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.4,Orange,Average,174 +312801,The Kylin Experience - Holiday Inn,1,New Delhi,"Holiday Inn, 13 A, District Centre, Mayur Vihar Phase 1, New Delhi","Holiday Inn, Mayur Vihar","Holiday Inn, Mayur Vihar, New Delhi",77.2977869,28.5905091,"Japanese, Chinese, Asian, Thai",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,128 +3293,Thugs - Hotel Broadway,1,New Delhi,"Hotel Broadway, 4/15/A, Daryaganj, New Delhi","Hotel Broadway, Daryaganj","Hotel Broadway, Daryaganj, New Delhi",77.2379557,28.6409625,Finger Food,1100,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,72 +422,Chor Bizarre - Hotel Broadway,1,New Delhi,"Hotel Broadway, 4/15/A, Daryaganj, New Delhi","Hotel Broadway, Daryaganj","Hotel Broadway, Daryaganj, New Delhi",77.2378659,28.6410435,"North Indian, Kashmiri, Chinese, Thai, Korean",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,295 +3260,Opium Bar - Hotel City Park,1,New Delhi,"Hotel City Park, KP Block, Pitampura, New Delhi","Hotel City Park, Pitampura","Hotel City Park, Pitampura, New Delhi",77.1430501,28.7056604,"Finger Food, North Indian, Chinese",2000,Indian Rupees(Rs.),Yes,No,No,No,4,2.8,Orange,Average,19 +1267,Yellow Mirchi - Hotel City Park,1,New Delhi,"Hotel City Park, KP Block, Pitampura, New Delhi","Hotel City Park, Pitampura","Hotel City Park, Pitampura, New Delhi",77.1432187,28.7057393,North Indian,2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,259 +18273067,Curry Capital - Hotel Classic Diplomat,1,New Delhi,"A-4, NH 8, Near IGI Airport, Mahipalpur, New Delhi","Hotel Classic Diplomat, Mahipalpur","Hotel Classic Diplomat, Mahipalpur, New Delhi",77.1261797,28.5476562,"North Indian, Continental, South Indian, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,1 +18312623,Viceroy Bar - Hotel Classic Diplomat,1,New Delhi,"Hotel Classic Diplomat, A-4, NH 8, Near IGI Airport, Mahipalpur, New Delhi","Hotel Classic Diplomat, Mahipalpur","Hotel Classic Diplomat, Mahipalpur, New Delhi",77.1259999,28.5479078,North Indian,800,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,0 +308069,Cafe Regent,1,New Delhi,"Hotel Regent Grand, 2/6 East Patel Nagar, Near Pusa Road, East Patel Nagar, New Delhi","Hotel Regent Grand, Karol Bagh","Hotel Regent Grand, Karol Bagh, New Delhi",77.1729864,28.6430365,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,7 +308068,The Grand Kitchen,1,New Delhi,"Hotel Regent Grand, 2/6 East Patel Nagar, Near Pusa Road, East Patel Nagar, New Delhi","Hotel Regent Grand, Karol Bagh","Hotel Regent Grand, Karol Bagh, New Delhi",77.1729982,28.6430256,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,1 +4367,Lutyen's - Hotel The Royal Plaza,1,New Delhi,"Hotel The Royal Plaza, 19, Ashoka Road, Janpath, New Delhi","Hotel The Royal Plaza, Janpath","Hotel The Royal Plaza, Janpath, New Delhi",77.2170282,28.6212265,"Continental, North Indian, Italian",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,95 +4364,Onyx Bar - Hotel The Royal Plaza,1,New Delhi,"Hotel The Royal Plaza, 19, Ashoka Road, Janpath, New Delhi","Hotel The Royal Plaza, Janpath","Hotel The Royal Plaza, Janpath, New Delhi",77.2170731,28.6212756,"Continental, Chinese, Japanese, North Indian, Thai",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3,Orange,Average,19 +310365,SKY Lounge Bar & Grill - Hotel The Royal Plaza,1,New Delhi,"Rooftop, Hotel The Royal Plaza, 19, Ashoka Road, Connaught Place, New Delhi","Hotel The Royal Plaza, Janpath","Hotel The Royal Plaza, Janpath, New Delhi",77.2170731,28.6212756,Finger Food,2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.4,Orange,Average,265 +4366,Jasmine - Hotel The Royal Plaza,1,New Delhi,"Hotel The Royal Plaza, 19, Ashoka Road, Janpath, New Delhi","Hotel The Royal Plaza, Janpath","Hotel The Royal Plaza, Janpath, New Delhi",77.2170731,28.6212756,"Seafood, Chinese, Japanese, Sushi, Thai",4000,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,44 +4365,Lord William Tea Lounge - Hotel The Royal Plaza,1,New Delhi,"Hotel The Royal Plaza, 19, Ashoka Road, Janpath, New Delhi","Hotel The Royal Plaza, Janpath","Hotel The Royal Plaza, Janpath, New Delhi",77.216908,28.6212322,Cafe,2500,Indian Rupees(Rs.),No,No,No,No,4,3.6,Yellow,Good,38 +18419892,Royal Brewery Bistro,1,New Delhi,"Hotel The Royal Plaza, 19, Ashoka Road, Connaught Place, New Delhi","Hotel The Royal Plaza, Janpath","Hotel The Royal Plaza, Janpath, New Delhi",77.2170282,28.6213161,"Finger Food, Italian",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,14 +4357,Cafe - Hyatt Regency,1,New Delhi,"Hyatt Regency, Bhikaji Cama Place, New Delhi","Hyatt Regency, Bhikaji Cama Place","Hyatt Regency, Bhikaji Cama Place, New Delhi",77.185331,28.56904,"Cafe, Continental, North Indian",3500,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,261 +3379,La Piazza - Hyatt Regency,1,New Delhi,"Hyatt Regency, Bhikaji Cama Place, New Delhi","Hyatt Regency, Bhikaji Cama Place","Hyatt Regency, Bhikaji Cama Place, New Delhi",77.185331,28.56904,Italian,4500,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,410 +3264,Polo Lounge - Hyatt Regency,1,New Delhi,"Hyatt Regency, Bhikaji Cama Place, New Delhi","Hyatt Regency, Bhikaji Cama Place","Hyatt Regency, Bhikaji Cama Place, New Delhi",77.185331,28.56904,Finger Food,2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,49 +4368,Sidewalk - Hyatt Regency,1,New Delhi,"Hyatt Regency, Bhikaji Cama Place, New Delhi","Hyatt Regency, Bhikaji Cama Place","Hyatt Regency, Bhikaji Cama Place, New Delhi",77.185331,28.56904,"Bakery, Cafe",1000,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,79 +4356,T.K'S Oriental Grill - Hyatt Regency,1,New Delhi,"Hyatt Regency, Bhikaji Cama Place, New Delhi","Hyatt Regency, Bhikaji Cama Place","Hyatt Regency, Bhikaji Cama Place, New Delhi",77.185331,28.56904,"Japanese, Thai, Sushi",4000,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,290 +3378,China Kitchen - Hyatt Regency,1,New Delhi,"Hyatt Regency, Bhikaji Cama Place, New Delhi","Hyatt Regency, Bhikaji Cama Place","Hyatt Regency, Bhikaji Cama Place, New Delhi",77.185331,28.56904,Chinese,4500,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,424 +310032,The Hub - ibis New Delhi,1,New Delhi,"ibis New Delhi, Asset 9, Hospitality District, Aerocity, New Delhi","ibis New Delhi, Aerocity","ibis New Delhi, Aerocity, New Delhi",77.123127,28.551398,North Indian,1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,9 +18481317,Frugurpop- ibis New Delhi,1,New Delhi,"ibis New Delhi, Asset 9, Hospitality District, Aerocity, New Delhi","ibis New Delhi, Aerocity","ibis New Delhi, Aerocity, New Delhi",0,0,"Ice Cream, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18436483,Baked and Wrapped,1,New Delhi,"Laxmi Bai Nagar, INA, New Delhi",INA,"INA, New Delhi",77.2093928,28.5780214,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,5 +18245249,M.D. Kitchen,1,New Delhi,"62, Laxmi Bai Nagar Market, Opposite INA Market, Near Dilli Haat, INA, New Delhi",INA,"INA, New Delhi",77.2100616,28.5783748,"North Indian, Mughlai, Chinese, South Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,30 +301448,Kerala Hotel,1,New Delhi,"211-A, Mohan Singh Market, INA Market, INA, New Delhi",INA,"INA, New Delhi",77.2100216,28.5739586,"Kerala, Biryani",400,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,108 +18425152,New Classic Kitchen,1,New Delhi,"Shop 35, Laxmi Bai Nagar Market, INA, New Delhi",INA,"INA, New Delhi",77.2095724,28.5780386,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312231,M.P. Canteen,1,New Delhi,"South Avenue, President's Estate, Near, India Gate, New Delhi",India Gate,"India Gate, New Delhi",77.198618,28.607967,"South Indian, North Indian, Chinese, Mughlai",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,13 +18057802,Mysore Cafe,1,New Delhi,"12, South Avenue Market, Near Sena Bhawan, India Gate, New Delhi",India Gate,"India Gate, New Delhi",77.2014634,28.6083918,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +307622,Maharashtra Sadan,1,New Delhi,"Behind Baroda House, Kasturbha Gandhi Marg, Near India Gate, New Delhi",India Gate,"India Gate, New Delhi",77.2296031,28.6184829,"North Indian, Maharashtrian",300,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,266 +18475283,Kashmiri Hills Wazwan,1,New Delhi,"Kasmir House, India Gate, New Delhi",India Gate,"India Gate, New Delhi",0,0,Kashmiri,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18481278,Mirch Masala Restaurant,1,New Delhi,"Shop 1, South Avenue Market, India Gate, New Delhi",India Gate,"India Gate, New Delhi",77.1981633,28.6086732,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +311546,Shree Rathnam,1,New Delhi,"24, Akbar Road, Near India Gate, New Delhi",India Gate,"India Gate, New Delhi",77.2211555,28.6083206,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +1546,Abhishek Restaurant,1,New Delhi,"Shop G-6, Pankaj Corner Market, Near Prince Appartment, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3016535,28.6307448,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,36 +4673,AL Maroosh,1,New Delhi,"E/76, West Vinod Nagar, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.2933535,28.6221018,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,20 +18440187,Ambarsari Kababs & Curries,1,New Delhi,"G-45, Pankaj Central Market, Near Plato Public School, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3027284,28.6332414,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +304304,Ambrosia - The Golden Palms Hotel,1,New Delhi,"The Golden Palms Hotel, 6C, Opposite East Delhi Police Headquarter, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3061495,28.6310189,"North Indian, Continental",1500,Indian Rupees(Rs.),Yes,No,No,No,3,2.8,Orange,Average,68 +18107859,Bala's Kitchen,1,New Delhi,"B/1-133, Ekta Garden, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3062105,28.6311765,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +303582,Cafe Meadows,1,New Delhi,"9, DDA Market 1, Opposite St. Andrew's Scots School, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.2995552,28.6360907,"Fast Food, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,26 +306595,Dee The Baker,1,New Delhi,"Agrasen Apartments, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3089444,28.6281517,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,11 +305348,Dilli Darbaar,1,New Delhi,"Madhu Vihar Market, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3043502,28.6360024,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,18 +303586,Finger Licious,1,New Delhi,"A-142, Madhu Vihar Main Road, Near Patparganj Bus Depot, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3056876,28.6362503,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,137 +18289231,Garden Hut,1,New Delhi,"Balco Society, Front Market, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3059907,28.6306439,Chinese,450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,8 +9803,Hari Mirch Masala,1,New Delhi,"B-34, Gurudawara Road, Madhu Vihar, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3031004,28.6360078,"North Indian, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,101 +3700,Kamal's,1,New Delhi,"C-31, Gurudwara Road, Madhu Vihar, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3031053,28.6351912,"North Indian, South Indian, Chinese, Fast Food",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,103 +3093,Kocktails & Kurries,1,New Delhi,"4, Atlantic Plaza, Local Shopping Complex, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3089888,28.6280802,"North Indian, Chinese",950,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.1,Orange,Average,94 +308849,Madras Cafe,1,New Delhi,"C 30, Madhuvihar, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3032993,28.6355354,South Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,22 +301149,Mahalaxmi Dairy & Sweets,1,New Delhi,"C-2/1, Madhu Vihar, Sai Chowk, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3039947,28.6348977,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,16 +305159,Meet n Eat,1,New Delhi,"G-2, Atlantic Plaza, LSC 2, Opposite Ajanta Apartment, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3082609,28.6282279,"North Indian, Fast Food, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,56 +6256,Punjabi Mirchi,1,New Delhi,"G-21, Pankaj Central Market, Near Plato Public School, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3028343,28.6335406,"North Indian, Mughlai, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,49 +18258483,The Garam Masala,1,New Delhi,"G-7, Aggarwal Tower, Near Ajanta Market, LSC 2, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3079824,28.627967,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,60 +9806,Unique Pastry Shop,1,New Delhi,"C-15, Madhu Vihar, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3035124,28.6349194,Bakery,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,86 +303590,Vaishno Amritsari Dhaba,1,New Delhi,"G-12, Aggarwal Tower, Local Shopping Complex 2, Near AVB Public School, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.307845,28.6278421,North Indian,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,51 +311263,Zara Restaurant,1,New Delhi,"Shop 15, DDA Market, Opposite Mayor Public School, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.2919552,28.6220862,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,24 +303592,Bhatia Sweets,1,New Delhi,"2, DDA Market 2, Near Balco Apartment, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.305996,28.630711,"Mithai, South Indian, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,97 +18228856,De Cafepedia,1,New Delhi,"B-41, Shop 2, Gurdwara Road, Madhu Vihar, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3030936,28.6360258,"Fast Food, Chinese",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,60 +18308458,Icy Curls,1,New Delhi,"C-12/1 Main Road, Madhu Vihar Market, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3037739,28.634931,"Desserts, Ice Cream",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,25 +18378062,Chakhna,1,New Delhi,"G-2, Pankaj Plaza, Patparganj, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3012262,28.6308689,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +18464687,Choco-House Chocolatiers,1,New Delhi,"224 Vardhman Plaza, 9 Local Shopping Center 2, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",0,0,Desserts,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18428622,D Brown Affairs,1,New Delhi,"Anamika Apartments, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.2995024,28.6362246,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18432941,Daya Sagar,1,New Delhi,"204, Gali Number 13, Chander Vihar, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.2974464,28.6346331,"North Indian, Chinese, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18264980,Food Code 99,1,New Delhi,"C-72A, Shri Ram Chowk, Mandawali, Opposite Subzi Mandi, Vinod Nagar, Near, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3011496,28.6274039,"Chinese, South Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18378025,Foodie Singh,1,New Delhi,"A-105, Shop 4, Chander Vihar Market, Sahyadri Appartment, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.2990042,28.6336787,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18493572,Gluten Free by Deepika,1,New Delhi,"Agrasen Apartments, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",0,0,"Bakery, Healthy Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441696,Jain Restaurant,1,New Delhi,"246/67, Opposite Prince Apartment, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.2995973,28.630479,North Indian,500,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,0 +18421488,Kesariya Sweets,1,New Delhi,"G 8, Aggarwal Tower, LSC 2, Patparganj, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.30793916,28.62804124,Mithai,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +308853,KG Confectionery and Pastry Shop,1,New Delhi,"C-18, Madhuvihar, Opposite OM Bikanerwala, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3038718,28.6348699,"Bakery, Desserts",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +312864,Krishna Da Dhaba,1,New Delhi,"Shop C- 31 A, Madhu Vihar, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3032993,28.6355354,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18492957,Little Cup Cake,1,New Delhi,"107, Vidhi Apartments, Plot 116, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",0,0,"Bakery, Desserts",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18439029,New Kovilakam Restaurant,1,New Delhi,"A 70/3, Gali 5, Madhu Vihar, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.30450468,28.63570449,"Kerala, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18441698,Nice Food Corner,1,New Delhi,"E/74 West Vinod Nagar, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.2934576,28.6219398,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18440175,Radhey Radhey Foods,1,New Delhi,"D-500, West Vinod Nagar, Near Apex Hospital, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3029659,28.6264823,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18258502,Schezwan Bakery,1,New Delhi,"19, DDA Central Market (Balco Market), IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3065335,28.6304877,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18440143,Shama Muradabadi Chicken Corner,1,New Delhi,"C-12,G/F, Main Road Madhu Vihar, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3037861,28.6349562,Biryani,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18460414,Starve Stalkers,1,New Delhi,"IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",0,0,"Italian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18377928,Tava & Tandoor,1,New Delhi,"C-37, LG-1,2, Opposite Narwana Appartment, Madhu Vihar, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3030602,28.635191,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +6777,Chutneez Restaurant Lounge & Bar,1,New Delhi,"308-A, Above ICICI Bank, RG Square Mall, Near Max Hospital, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3095488,28.6339747,"North Indian, Chinese, Mughlai",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.4,Red,Poor,124 +8376,Domino's Pizza,1,New Delhi,"Plot 7, LSC, Prince Apartments Market, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3012464,28.6308576,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,113 +8619,Mangal Sweets,1,New Delhi,"6 LSC, RSN Arcade, New Prince Apartments, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.3015435,28.6304523,"North Indian, Chinese, South Indian, Street Food, Mithai",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,166 +18228125,Sweet Tickles,1,New Delhi,"A-18, Bathla Appartments, IP Extension, New Delhi",IP Extension,"IP Extension, New Delhi",77.305766,28.631723,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,71 +306026,Ira - The Waterside Bar - ITC Maurya,1,New Delhi,"ITC Maurya, Diplomatic Enclave, Chanakyapuri, New Delhi","ITC Maurya, Chanakyapuri","ITC Maurya, Chanakyapuri, New Delhi",77.1734292,28.5981818,Finger Food,2000,Indian Rupees(Rs.),No,No,No,No,4,3.2,Orange,Average,17 +302636,Nutmeg The Gourmet Shop - ITC Maurya,1,New Delhi,"ITC Maurya, Chanakyapuri, New Delhi","ITC Maurya, Chanakyapuri","ITC Maurya, Chanakyapuri, New Delhi",77.1735895,28.5974082,"Bakery, Desserts",1000,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,25 +18376494,Fabelle Chocolate Boutique - ITC Maurya,1,New Delhi,"ITC Maurya, Chanakyapuri, New Delhi","ITC Maurya, Chanakyapuri","ITC Maurya, Chanakyapuri, New Delhi",77.1735895,28.5974082,"Desserts, Ice Cream",1200,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,20 +2745,Golf Bar - ITC Maurya,1,New Delhi,"ITC Maurya, Chanakyapuri, New Delhi","ITC Maurya, Chanakyapuri","ITC Maurya, Chanakyapuri, New Delhi",77.1734391,28.5981778,Drinks Only,3500,Indian Rupees(Rs.),No,No,No,No,4,3.5,Yellow,Good,45 +2742,Bukhara - ITC Maurya,1,New Delhi,"ITC Maurya, Chanakyapuri, New Delhi","ITC Maurya, Chanakyapuri","ITC Maurya, Chanakyapuri, New Delhi",77.1737243,28.5974659,North Indian,6500,Indian Rupees(Rs.),No,No,No,No,4,4.4,Green,Very Good,2826 +309548,Tian - Asian Cuisine Studio - ITC Maurya,1,New Delhi,"ITC Maurya, Diplomatic Enclave, Chanakyapuri, New Delhi","ITC Maurya, Chanakyapuri","ITC Maurya, Chanakyapuri, New Delhi",77.1734547,28.5973505,"Asian, Japanese, Korean, Thai, Chinese",7000,Indian Rupees(Rs.),No,No,No,No,4,4.1,Green,Very Good,188 +311078,Ashish Lal Dhaba,1,New Delhi,"B4, Kotla Road, ITO, New Delhi",ITO,"ITO, New Delhi",77.23888333,28.63209722,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,26 +18144464,Lal Dhaba,1,New Delhi,"Plot B3, Kotla Road, ITO, New Delhi",ITO,"ITO, New Delhi",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +311117,McDonald's,1,New Delhi,"GF 3A-4D, Milap Building, Bahadur Shah Zafar Marg, ITO, New Delhi",ITO,"ITO, New Delhi",77.24104444,28.63255,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,25 +303261,Udupi Cafe,1,New Delhi,"Ground Floor, Pratap Bhawan, Building 5, Bahadurshah Zafar Marg, Near ITO, New Delhi",ITO,"ITO, New Delhi",77.24134527,28.6311424,"South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,117 +18037812,"34, Chowringhee Lane",1,New Delhi,"23/1, Prem Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.097151,28.6347982,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,11 +18037793,Amritsar Express,1,New Delhi,"Prem Nagar, Main Road, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0969155,28.6356447,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,6 +301818,Anand Chicken & Fast Food,1,New Delhi,"WZ-73, Gali 4, Shiv Nagar, Near Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.096421,28.6274912,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,9 +18427235,Baba Chicken Ludhiana Wale,1,New Delhi,"18/2, DS Prem Nagar, Near Tilak Nagar Metro Station, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0968706,28.6355956,North Indian,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,7 +307002,Bombay Vada Pav,1,New Delhi,"Shop 30/1, Double Storey, Ashok Nagar, Near Tilak Nagar Metro Station, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0969926,28.6360464,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,41 +18037806,Cafe Coffee Day,1,New Delhi,"30/3A, Ashok Nagar, Near Metro Station, Tilak Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0971876,28.6362828,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,5 +309087,Chin Pokli,1,New Delhi,"El-12 A, Shop 2, L Block, Hari Nagar, Near Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.107504,28.620964,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,13 +18367977,Curries,1,New Delhi,"BE 403, Lane 7, Hari Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1090874,28.6275885,"Chinese, Mughlai, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,6 +1106,Deepak Vaishno Dhaba,1,New Delhi,"Stalls A-F, DDA Market, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0981016,28.6310878,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,59 +301857,Delhi Dhaba,1,New Delhi,"A 2A, DDA Flat, Hari Nagar, Virender Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1022244,28.6237129,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,15 +302836,Dewan Sweets,1,New Delhi,"1, Pocket F, G-8 Area, Hari Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1108383,28.6196388,"Desserts, Street Food",100,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,18 +18279090,Flirty Momo's,1,New Delhi,"25/1, Ashok Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1028818,28.6494365,Chinese,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,37 +300502,Frontier,1,New Delhi,"BA 141A, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0975994,28.6312881,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,14 +18203169,Giani,1,New Delhi,"Shop 3, CE-2/1, Hari Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1109713,28.6255303,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +306891,Green Chick Chop,1,New Delhi,"AB/147, DDA Market, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0980497,28.6316476,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,60 +6959,Khalsa Veg Corner,1,New Delhi,"27, Gurudwara Market, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0980565,28.6343754,"North Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,22 +18282019,Kings Kulfi,1,New Delhi,"25/3, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0971673,28.6349446,Ice Cream,150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,10 +2399,Kohli Dhaba,1,New Delhi,"Shop 3, DDA Market, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0982505,28.631387,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,74 +5420,Laxmi Ice Cream,1,New Delhi,"27/1, Ashok Nagar, Double Store, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0968803,28.6353891,"Ice Cream, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,25 +8521,Mosaic - SK Premium Park,1,New Delhi,"SK Premium Park, 1-B, Sub District Center, Behind Deen Dayal Hospital, Hari Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1136177,28.6300121,"North Indian, Chinese, Continental",2500,Indian Rupees(Rs.),Yes,No,No,No,4,2.9,Orange,Average,14 +18292455,Moti Mahal Delux,1,New Delhi,"HL-3 GF, Opposite Santoshi Mata Mandir, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1013347,28.6255608,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.7,Orange,Average,12 +4000,Mukesh Chic-Inn Hot & Spice,1,New Delhi,"28/1, Double Storey, Ashok Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0969155,28.6356447,Mughlai,400,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,9 +18241858,Muradabadi Biryani,1,New Delhi,"E-68, Gurunanak Pura, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0981402,28.6322412,Hyderabadi,300,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,18 +310732,Muradabadi Shahi Biryani & Chicken Corner,1,New Delhi,"Shop 3, BA-141-A, Near Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0978255,28.6316146,"North Indian, Biryani",450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,68 +300522,Nagi Fish Corner,1,New Delhi,"4, 29/1, Ashok Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0965558,28.63561,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +18408034,Nirula's Ice Cream,1,New Delhi,"Shop 1BA-148A, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0981006,28.6316165,"Desserts, Ice Cream",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +301803,Papa Veg Chinese Food,1,New Delhi,"25/1, Double Story Prem Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0971629,28.6347297,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,33 +18282017,Pindi's Kitchen,1,New Delhi,"26/1, Ashok Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0971063,28.6350493,Mughlai,450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,11 +18455615,Rewari Sweets,1,New Delhi,"WZ - 3D, Lajwanti Garden, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1087679,28.6134073,Mithai,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,5 +5400,Roti Aur Boti,1,New Delhi,"9, DDA Complex, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.097836,28.6313278,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,38 +300561,Sahni Chicken Corner,1,New Delhi,"B/2-A, Saheed Major Rajeev Lal Marg, Near Red Light, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1017394,28.6249007,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,23 +301823,Sarpal Restaurant,1,New Delhi,"C-123 A, Clock Tower Chowk, Hari Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1112093,28.6249622,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,14 +18282009,SGF - Spice Grill Flame,1,New Delhi,"E-31, Shop 2, Guru Nanak Pura, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0981661,28.6334468,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,8 +6978,Shanta Fresh Fish Corner,1,New Delhi,"19/2, Prem Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0965824,28.635497,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +18281946,Shree Meenakshi Dosai,1,New Delhi,"29/2, Opposite Gate 3, Ashok Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0970387,28.6358663,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,8 +6052,Singz,1,New Delhi,"BA-144 A, Opposite DDA Market, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0977886,28.6315014,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,57 +5965,Sona Bakers,1,New Delhi,"18/1, Double Storey, Prem Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0967806,28.6356765,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,17 +18381639,Tak - a - Tak,1,New Delhi,"Shop 31, B Block, DDA Market, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0976322,28.6309971,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,14 +18289278,The Great Indian Food Truck,1,New Delhi,"Hari Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.110907,28.6246348,"Chinese, Mexican, Italian",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +308716,Tihar Food Court,1,New Delhi,"Tihar Jail Complex, Opposite Indraprastha Gas Station, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1040333,28.6197878,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,14 +306985,Uncle Da Dhabha,1,New Delhi,"Ashok Nagar Main Raod, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0998706,28.6351319,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +307861,Variety Chicken Corner,1,New Delhi,"Shop 1, DB Block, Shopping Complex, Hari Nagar, Near Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1074751,28.6212976,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,16 +18429381,Wah Ji Wah,1,New Delhi,"25/1, Double Story, Ashok Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0971697,28.6350345,"Mughlai, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,9 +18366009,9 Scoops,1,New Delhi,"WZ 44/4 Uggarsain Market, Ashok Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0998371,28.635251,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,33 +18415357,Kati Roll Cottage,1,New Delhi,"67/5, Ashok Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0994344,28.6344684,Fast Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,14 +300501,Pul Bangash Wale,1,New Delhi,"DDA Market, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.097993,28.6315308,"North Indian, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,89 +307006,Sunny Chicken Soup,1,New Delhi,"22/1, Double Storey, Prem Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0970504,28.6351651,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,75 +18424895,Yo Momos,1,New Delhi,"BA 142-A, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0977144,28.6314535,"Chinese, North Indian",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,29 +18282015,Bikaner Sweets,1,New Delhi,"45/1, Ashok Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0997544,28.6344525,"Chinese, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +306974,Bittoo Murge Wala,1,New Delhi,"Opposite Bombay Vada Pao, Near Tilak Nagar Metro Station, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0972622,28.6360885,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18431980,Jalebi Wala,1,New Delhi,"25/2, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0970875,28.6353275,Desserts,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18429401,Just Parkash,1,New Delhi,"WZ-111, Shop 3, Som Bazar Road, Shiv Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1088295,28.6628124,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +301822,Kwality Sweet Corner,1,New Delhi,"Clock Tower, Hari Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1109839,28.6244686,"Chinese, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18367979,Mohan Chaat Corner,1,New Delhi,"Shop 6 B, DB Block Shopping Complex, Near DESU Office, Hari Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1073269,28.6212971,"North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18366025,Mr. Momo,1,New Delhi,"Shop 41/1, Near House of Tax, Ashok Nagar, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0996828,28.6357503,"Fast Food, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18456774,Pishori Chicken Corner,1,New Delhi,"Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1018025,28.6235852,"Mughlai, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18458301,Punjab Patiyala Sahi,1,New Delhi,"Guru Nanak Pura, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.0974053,28.6342008,"Mughlai, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18037794,Shama Chicken Corner,1,New Delhi,"CE 1, Shop 5, Near Hari Nagar Clock Tower, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1108325,28.6258103,"Biryani, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18454474,Wah G Wah,1,New Delhi,"D-1, Fateh Nagar, Vaidic Marg, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.098778,28.631327,"North Indian, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,2 +18245258,Grillz,1,New Delhi,"BS-3, LIC Housing Finance Complex, Near Santoshi Mata Mandir, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.101117,28.625289,Fast Food,500,Indian Rupees(Rs.),No,Yes,No,No,2,2.2,Red,Poor,19 +17977777,The Barbeque Company,1,New Delhi,"HL 1-2, L Block, Jail Road, New Delhi",Jail Road,"Jail Road, New Delhi",77.1014229,28.6255344,"North Indian, Chinese, Continental",1200,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,621 +18349901,Anmol Chicken Corner,1,New Delhi,"4120, Urdu Bazar, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2349022,28.6498101,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +18349910,Babu Bhai Kabab Wale,1,New Delhi,"1465 B,Near Masjid Sayed Rafai, Chitli Qabar, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2339142,28.6472969,Mughlai,200,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,12 +304091,Chicken Mughlai,1,New Delhi,"Bazaar Matia Mahal, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2335637,28.6487528,"North Indian, Mughlai",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18420675,Cool Point Shahi Tukda,1,New Delhi,"933, Jama Masjid Main Market, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2349022,28.6497205,"Desserts, Beverages",100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,5 +308014,Jawahar Hotel,1,New Delhi,"Gate 1, Bazaar Matia Mahal, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2334814,28.649456,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,40 +18291241,Lalu Kababe,1,New Delhi,"Opposite Gate 1, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2339276,28.6497621,Mughlai,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,13 +18336178,Phelwan Biryani Wala,1,New Delhi,"701, Haveli Azam Khan, Chitli Qabar Chowk, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2350818,28.6470498,Mughlai,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +18454466,Qureshi Kabab Corner,1,New Delhi,"Urdu Bazar, Opposite Gate 1, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2348573,28.6498506,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +993,Al Jawahar,1,New Delhi,"8, Jama Masjid - Matia Mahal Road, Matia Mahal, Opposite Gate 1, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2327023,28.6496214,"Mughlai, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,1585 +305598,Aslam Chicken,1,New Delhi,"Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2335385,28.6486247,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,635 +18336494,Dil Pasand Biryani Point,1,New Delhi,"735, Haveli Azam Khan, Chitli Qabar Chowk, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2350818,28.6470498,Biryani,200,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,12 +18340727,Haji Mohd. Hussain,1,New Delhi,"113, Matia Mahal Road, Bazaar Matia Mahal, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2336085,28.6489324,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,22 +308001,Kallan Sweets,1,New Delhi,"Shop 4-5, Bazaar Matia Mahal, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2334979,28.649672,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,75 +18396855,The Walled City - Caf & Lounge,1,New Delhi,"898, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2328365,28.6491652,"Continental, North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,40 +18261688,Al-Nawab,1,New Delhi,"Jagat Cinema, Urdu Bazaar, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2362096,28.6498224,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18208922,Ameer Sweets House,1,New Delhi,"958, Haveli Azam Khan, Chitli Qabar, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2345429,28.6468193,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18308432,Anwar Food Corner,1,New Delhi,"Shop 911, Opposite Jama Masjid Gate 1, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2331077,28.6497611,Mughlai,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18408050,Fish Point,1,New Delhi,"4164, Urdu Bazar, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2348182,28.6497507,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18349897,Golden Bakery,1,New Delhi,"Bazar Matia Mahal, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2335999,28.6481181,Bakery,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18336488,Hotel Maidah,1,New Delhi,"2614 , Churiwalan, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2328365,28.6492548,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18454468,Lahori Food,1,New Delhi,"Matia Mahal Road, Opposite Gate 1, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2333916,28.6493023,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18451575,Majlis Foods,1,New Delhi,"Urdu Bazaar, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2355652,28.6498655,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18079620,Cool Point,1,New Delhi,"972, Bazaar Matia Mahal, Opposite Jama Masjid Gate 1, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2337024,28.6492691,"Desserts, Beverages",100,Indian Rupees(Rs.),No,No,No,No,1,4.2,Green,Very Good,69 +304617,Haji Shabrati Nihari Wale,1,New Delhi,"Shop 722, Haveli Azam Khan, Chitli Qabar, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.234498,28.6467702,Mughlai,200,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,115 +463,Karim's,1,New Delhi,"16, Gali Kababian, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.23363,28.6493933,"Mughlai, North Indian",800,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,4689 +18291442,Qureshi Kabab Corner,1,New Delhi,"Opposite Gate 1, Jama Masjid, New Delhi",Jama Masjid,"Jama Masjid, New Delhi",77.2348509,28.649739,Mughlai,200,Indian Rupees(Rs.),No,No,No,No,1,4.3,Green,Very Good,76 +300430,Bake Bikaner,1,New Delhi,"C-1/1, Opposite Mata Channan Devi Hospital, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0781883,28.6178488,"North Indian, South Indian, Chinese, Street Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,86 +533,Barista,1,New Delhi,"G-2/A, Janak Place District Centre, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.081247,28.6308738,Cafe,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,74 +18365984,Behrouz Biryani,1,New Delhi,"Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.076075,28.624851,Biryani,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,49 +18057812,Brunchilli,1,New Delhi,"C-4B/295 A, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.09158983,28.61913158,"North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,84 +7012,Cafe Coffee Day,1,New Delhi,"Opposite Easy Day Shopping Complex, B Block, Near Community Centre, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0919751,28.6270907,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,50 +313194,Chawla Dillivala,1,New Delhi,"C-5-A, Shop 4, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.08765,28.6217683,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,91 +18466975,Dhaba Ambarsariya,1,New Delhi,"BF-3, Jail Road, Next to Domino's, Hari Nager Depot, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.101121,28.625011,"North Indian, Chinese",700,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,23 +8365,Domino's Pizza,1,New Delhi,"G1-G3, B Block, Community Centre, Allied Chambers, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0903177,28.6298073,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,88 +307699,GPW - The Food Hub,1,New Delhi,"Shop 2, C6B, DDA Market, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0895476,28.6156773,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,70 +305723,Green Bhojanalya,1,New Delhi,"WZ 62F/3, Possangi Pur Market, Near A 4, C Block, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0821521,28.6237445,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,96 +18175283,Hira Sweets,1,New Delhi,"Janakpuri East Metro Station, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0870265,28.6330204,"North Indian, South Indian, Street Food, Fast Food, Mithai",600,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,85 +4018,Hot Curries,1,New Delhi,"C4F, DDA Market, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.09035702,28.61683827,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,60 +4019,Meenu Caterers,1,New Delhi,"C4F, DDA Market, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.090369,28.6168861,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,82 +482,Moti Mahal Delux,1,New Delhi,"F-15, District Center, Janak Place, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0820473,28.6300262,"North Indian, Mughlai, Chinese",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.6,Orange,Average,105 +355,New Kadimi,1,New Delhi,"1 & 2, C-5A, Kadimi Market, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0944197,28.6158468,"North Indian, South Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,162 +1104,Polka Pastry & Snack Bar,1,New Delhi,"BA-3A, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0966703,28.6311148,"Bakery, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,62 +300994,Pudding & Pie,1,New Delhi,"C4 A/46 A, Near Fire Station, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0888248,28.6180223,"Bakery, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,66 +310691,Singz,1,New Delhi,"A-5C/32A, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0859354,28.6219218,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,46 +303247,Slice of Italy,1,New Delhi,"A-86, C-2B, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0884552,28.6216295,"Italian, Pizza, Bakery",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,198 +311616,Subway,1,New Delhi,"A5B/66A, Lal Sai Mandir Marg, Near C2 Bus Stand, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0844615,28.6219496,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,69 +7025,Suruchee,1,New Delhi,"71/139, Prem Nagar, Near Choti Sabzi Mandi, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0935847,28.6343713,"Bengali, North Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,52 +301335,The Bubble Tea Cafe,1,New Delhi,"C-2B/86, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0883654,28.6215998,Cafe,600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,182 +4016,The Destination,1,New Delhi,"B 10, B Block, Community Centre, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0910311,28.6284185,"Chinese, Mughlai",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,85 +18238968,The Night Delights,1,New Delhi,"Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0887484,28.6202711,"North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.4,Orange,Average,102 +18175340,Tingling Pepper,1,New Delhi,"16/2, Double Story, Prem Nagar, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0960937,28.6361792,"North Indian, Chinese, Continental, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,69 +313498,Wah G Wah,1,New Delhi,"Shop 61, B1 Block, Community Centre, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0910906,28.6298512,"North Indian, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,37 +18421049,Midnight Hunger Hub,1,New Delhi,"Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0900756,28.6122787,"North Indian, Fast Food, Italian, Asian",800,Indian Rupees(Rs.),No,Yes,Yes,No,2,4.5,Dark Green,Excellent,50 +18345739,BarShala,1,New Delhi,"Shop 29, Janakpuri District Center, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0816045,28.6295635,Finger Food,600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,40 +18261158,Bemisaal Reloaded,1,New Delhi,"B-26 & 27, Community Centre, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.091394,28.6291122,"North Indian, Chinese",1250,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,128 +4010,Bon Apptit,1,New Delhi,"14, Ground Floor, Satyam Cineplex, District Centre, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0820832,28.6296625,Fast Food,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,212 +309283,Burger Point,1,New Delhi,"C-4B/332-A, Opposite Janak Nursing Home, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0901845,28.6180324,"Burger, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,164 +17977755,Cakes 'n' Crumbs,1,New Delhi,"Block A-2, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0871273,28.6331568,Bakery,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,70 +5388,China Fort,1,New Delhi,"B 8, Ground Floor, B Block, Community Centre, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0910903,28.6285431,"Chinese, North Indian, Thai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,74 +4723,Giani,1,New Delhi,"C-4, E-253, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0887384,28.6180887,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,33 +311889,Hot Cherries,1,New Delhi,"Block DB 12-B, Hari Nagar, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0871808,28.6335873,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,116 +311922,KFC,1,New Delhi,"C Block, Main Road, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0817882,28.6209459,"American, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,62 +185,McDonald's,1,New Delhi,"R 1, Janak Place, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0819207,28.6299374,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,179 +18268370,Pasta Xpress,1,New Delhi,"298-A, C-5/A, Near Kadimi, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0941454,28.6157655,"Italian, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,56 +4021,Tandoor Bar-Be-Que,1,New Delhi,"C-2/16, Near C-2 Bus Stop, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0846413,28.6218773,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,131 +300527,TBK Kulcha's,1,New Delhi,"296-A, C4B, Near Surajmal College, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.091738,28.6191652,"Fast Food, Street Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,155 +18219547,The Pindi,1,New Delhi,"C-1/122, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0801897,28.620389,"North Indian, Chinese, Mughlai",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,100 +18412874,The Tangy Tomatoes,1,New Delhi,"20/14, Chhoti Subzi Mandi, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0936598,28.6341679,"Italian, Chinese, Fast Food, North Indian",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,32 +18244719,Thela,1,New Delhi,"Ganesh Nagar, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0905124,28.6330626,"North Indian, Fast Food, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,87 +18322665,Wah Ji Wah,1,New Delhi,"C-2B/85A, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0884763,28.6217284,"North Indian, Chinese",450,Indian Rupees(Rs.),Yes,Yes,No,No,1,3.7,Yellow,Good,61 +7018,Muffins,1,New Delhi,"B-3/66, Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.0917978,28.6278364,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,1.9,Red,Poor,66 +18446409,Food Scouts,1,New Delhi,"Janakpuri, New Delhi",Janakpuri,"Janakpuri, New Delhi",77.090872,28.622406,"North Indian, Chinese, Continental",700,Indian Rupees(Rs.),No,Yes,No,No,2,4.3,Green,Very Good,22 +7891,Aggarwal Sweet India,1,New Delhi,"8/20, Sahi Hospital Road, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2450727,28.5830716,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,15 +304445,Bhola Dhaba,1,New Delhi,"1, Guru Nanak Market, Hospital Road, Bhogal, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2459911,28.5835117,North Indian,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,30 +18337922,Cake Me Up,1,New Delhi,"Q-6 B, 2nd Floor, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2415481,28.5799189,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +18357562,Chawla Snacks,1,New Delhi,"7/22, Masjid Road, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2467751,28.5826876,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +9602,Chef Joint,1,New Delhi,"1/17, Near DAV School, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2475434,28.5795335,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,45 +310305,China Hut,1,New Delhi,"S-8, Masjid Road, Bhogal, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2472956,28.5817203,Chinese,400,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,16 +18025100,Chinese Hut,1,New Delhi,"3/48, Jangpura Extension, Central Road, Double Story, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.247116,28.5816136,"Chinese, Fast Food",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,5 +18355110,Curries & Kebabs,1,New Delhi,"Shop 155, Bhagwan Nagar Chowk, Near Jeewan Hospital, Near Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2583408,28.5791847,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,7 +18322676,Giani's,1,New Delhi,"Shop 7, Q-25, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2412786,28.5793555,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +308488,Green Chick Chop,1,New Delhi,"Shop 1, 370 to 371/1, Laxman Chamber, Hospital Road, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2479691,28.584787,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,15 +7874,Kabul Restaurant,1,New Delhi,"4/8, Near Kashmiri Park, Central Road, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2464868,28.5813084,"Mughlai, Afghani",450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,25 +18313115,Kadimi Dukan,1,New Delhi,"38, Central Road, Bhogal, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2481871,28.5825578,"Street Food, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +302514,Kadimi Sweets,1,New Delhi,"38, Central Road, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.24752,28.5819657,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,42 +9573,McDonald's,1,New Delhi,"Ground Floor, Eros Cinema Building, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2419073,28.5812079,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,62 +7892,Modi Pastry Corner,1,New Delhi,"3/38, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2467562,28.5813908,"Bakery, Fast Food",100,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,17 +9568,New Evergreen Hotel,1,New Delhi,"7, Sai Hospital Road, Bhogal, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2476766,28.5844282,"North Indian, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +3681,Nikku Hotel,1,New Delhi,"16/5, Nikku Chowk, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2515162,28.5823905,"North Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,9 +3337,Om Hotel,1,New Delhi,"17-18, Jungpura Extension Market, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2417277,28.5805634,"North Indian, Mughlai, South Indian",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,140 +310101,Pakeeza Burger,1,New Delhi,"Near Kashmiri Gate, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.246482,28.5813093,"North Indian, Afghani",600,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,15 +7889,Paljees Fresh Baked,1,New Delhi,"8/24, Sahi Hospital Road, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2450505,28.5828513,"Bakery, Desserts, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,16 +7879,Pinka's Rasoi,1,New Delhi,"1, MCD Market, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2416379,28.5798378,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,21 +310469,Republic of Chicken,1,New Delhi,"Shashi Hospital Road, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2450954,28.5829004,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,5 +18449787,Sandwich & Sons,1,New Delhi,"428/1, Mathura Road, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2487324,28.5853525,Fast Food,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,24 +303608,Simple Restaurant,1,New Delhi,"39, Birbal Road, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2439728,28.5837347,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,15 +307785,Subway,1,New Delhi,"Shop 5 & 6, 1, Birbal Road, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2450505,28.5828513,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,78 +310100,Tempting Bar-B-Que,1,New Delhi,"8/36, Birbal Road, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2451403,28.5824117,"North Indian, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,29 +310468,The Biryani Hut,1,New Delhi,"4/64, Double Storey, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2473854,28.5818185,Biryani,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +3339,Beliram Degchiwala,1,New Delhi,"8/22-24, Near Birbal Park, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2450505,28.5828513,"North Indian, Mughlai",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,107 +18369763,Instapizza,1,New Delhi,"428/1, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2488222,28.5853611,"Pizza, Fast Food",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,55 +312949,Janta Bakery,1,New Delhi,"43, Central Road, Bhogal, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2482385,28.5823926,"Bakery, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,32 +3684,Pal Refreshment Corner,1,New Delhi,"20, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2417277,28.580653,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,32 +18463963,Transform Nutrition,1,New Delhi,"2, DDA Market, Opposite Eros Cinemas, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2415673,28.5807469,"Healthy Food, Continental",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,19 +18357554,Bhashi Caterers,1,New Delhi,"Shastri Market, Bhogal, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2515611,28.5819018,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,3 +310102,Birbal Ji Dhaba,1,New Delhi,"Shop 35, Shastri Market, Bhogal, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2512383,28.5815771,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18243438,Chaap Express,1,New Delhi,"Shop 2, Guru Nanak Market, Hospital Road, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2460575,28.5835827,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18419915,Daawat-e-Mehak,1,New Delhi,"Shop 5, Main Market, Kilokari, Near Jeevan Nagar, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.262305,28.5764607,"North Indian, Mughlai, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18479001,Delhi Biryani Hut,1,New Delhi,"Double Storey, Jungpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2468941,28.5815151,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18419906,K. B. Eating Point,1,New Delhi,"97, Bhagwan Nagar Chowk, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2603162,28.5798205,"Chinese, South Indian",250,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,0 +18419911,Kashmiri Wazwan,1,New Delhi,"5/2, Double Storey, Bhogal, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.247005,28.5815244,Kashmiri,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18419919,Maan Singh Halwai,1,New Delhi,"Bhagwan Nagar Chowk, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.258251,28.5792658,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18294233,Mughlai Darbar Muradabadi,1,New Delhi,"Shop 1B, Hospital Road, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2487324,28.5852629,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18419901,P.S. Chinese & Thai Food,1,New Delhi,"155, Bhagwan Nagar Chowk, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2585204,28.5791121,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18481273,Pak Afghan Restaurant,1,New Delhi,"Shop 4/3, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2467645,28.5814249,Afghani,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18313119,Pakeeza Restaurants,1,New Delhi,"4/10, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2463975,28.5812764,Mughlai,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18486830,Radhe Shyam Chole Bhature,1,New Delhi,"15/2, Central Road, Bazar Lane, Bhogal, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2490554,28.5827894,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18453186,Sanjha Chulha,1,New Delhi,"Near Pillar 291, Jangpura Flyover, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2574428,28.5738108,"North Indian, Mughlai",700,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,1 +18354663,Sardar A Pure Meat Shop,1,New Delhi,"329-330, Shop 5, Samman Bazar, Bhogal, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.247116,28.5843025,"Raw Meats, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18419897,Shahi Muradabadi & Hyderabadi,1,New Delhi,"206, A/3, Jeevan Nagar, Tikona Park, Sunlight Colony, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2622917,28.5771398,Mughlai,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18481322,Shankar Chinese Foods,1,New Delhi,"Hakikat Rai Road, Jungpura Extension, Jungpura",Jangpura,"Jangpura, New Delhi",77.2422216,28.5794004,"Chinese, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18357557,Shri Ram Sweets,1,New Delhi,"57, Bhagwan Nagar, Gurudwara Bala Sahib Road, Ashram, Near Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2584306,28.5792829,"South Indian, Street Food, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18025096,Subhash Punjabi Family Dhaba,1,New Delhi,"46, Shastri Market, Bhogal, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.251335,28.5815991,North Indian,350,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,1 +18286922,Tandoori Nature,1,New Delhi,"22, Samman Bazar, Bhogal, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2479992,28.5832431,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18458302,Tinker Koch,1,New Delhi,"Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2474752,28.5839782,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18447302,Wakhra Swag,1,New Delhi,"Shop 93, Near Petroleum, Hari Nagar Ashram, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2569041,28.5744768,"South Indian, Chinese, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +300744,Chawla's_,1,New Delhi,"12, Opposite Eros Cinema, Jangpura Extension Market, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2417277,28.5802945,"North Indian, Mughlai",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.3,Red,Poor,126 +8509,Barbeque Nation,1,New Delhi,"Ground Floor, Eros Cinema Building, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2413236,28.580749,"North Indian, Chinese",1600,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,744 +3338,Novelty Dairy & Stores,1,New Delhi,"43, Hawkers House, Birbal Road, Jangpura Extension, Jangpura, New Delhi",Jangpura,"Jangpura, New Delhi",77.2439279,28.5837753,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,352 +18133513,Caara Cafe,1,New Delhi,"17, Kasturba Gandhi Marg, British Council, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2225973,28.6274922,"Cafe, European",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,59 +619,Cafe Coffee Day - The Lounge,1,New Delhi,"Peary Lal and Sons, 42, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.22028926,28.62642941,Cafe,750,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,81 +300581,Cafe Coffee Day,1,New Delhi,"1, Ground Floor, Atma Ram Mansion, Scindia House, Connaught Circus, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2198128,28.6290186,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,34 +300577,Costa Coffee,1,New Delhi,"3, Ground Floor, Scindia House, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.21958833,28.629035,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,31 +6174,Gulnar - Hotel Janpath,1,New Delhi,"Hotel Janpath, Janpath Road, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.21879444,28.62175556,"North Indian, Chinese",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,40 +300593,Kalpana Restaurant,1,New Delhi,"84/A, Tolstoy Lane, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.220734,28.6285904,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,40 +300589,Meenas,1,New Delhi,"1, Behind Royal Plaza Hotel, Ashok Road, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2165193,28.6219039,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,7 +261,Pizza Hut,1,New Delhi,"58, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2195131,28.62751063,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.4,Orange,Average,116 +18400724,Prince Chaat Corner,1,New Delhi,"23, Indian Oil Building, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2185552,28.628809,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +300591,Rajeev Restaurant,1,New Delhi,"5, Behind Hotel Royal Plaza, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2166027,28.621945,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +18372578,RSVP,1,New Delhi,"Hotel The Royal Plaza, 19, Ashoka Road, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2170731,28.6212756,Finger Food,3000,Indian Rupees(Rs.),No,No,No,No,4,2.7,Orange,Average,16 +307371,Samridhi,1,New Delhi,"Kerala House, 3 Jantar Mantar Road, Near Patel Chowk Metro Station, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2167587,28.623172,"Kerala, South Indian",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,85 +300584,Shan E Dilli,1,New Delhi,"148, Scindia House, Behind Prem Nath Motor Corporation, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2209805,28.62913,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +18462606,Svasti Cafe,1,New Delhi,"Svasti Sankul, Gate 1, Indira Gandhi National Centre For The Arts, Janpath, New Delhi",Janpath,"Janpath, New Delhi",0,0,"North Indian, Fast Food, Bihari",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.1,Orange,Average,6 +18357558,The Zest,1,New Delhi,"3rdFloor, Handloom Hand, Near Janpath Metro Station, Gate 2, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.21957177,28.62727844,"North Indian, Continental",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,11 +18345728,Masala Library,1,New Delhi,"21 A, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2186451,28.6182446,Modern Indian,5000,Indian Rupees(Rs.),No,No,No,No,4,4.9,Dark Green,Excellent,408 +301301,Bhogal Chole Bhature Wala,1,New Delhi,"Scindia House, K G Marg, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.22037341,28.62921603,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,47 +18249111,Bunta Bar,1,New Delhi,"2nd Floor, 76, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2198128,28.6283018,"Modern Indian, North Indian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,450 +308280,Cafe Coffee Day The Square,1,New Delhi,"44, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2194865,28.626685,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,49 +309807,Cottage Caf by Smoothie factory,1,New Delhi,"Cottage Emporium, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.21970689,28.62590527,"Cafe, Desserts, Healthy Food, Juices",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,223 +8451,Depaul's,1,New Delhi,"22, Janpath Bhawan, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2186451,28.6289072,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,475 +3782,Fresc Co,1,New Delhi,"78, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2197229,28.6282932,"Italian, Mediterranean",1900,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,1347 +18168125,Informal,1,New Delhi,"52, Tolstoy Lane, Near Connaught Place, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.220458,28.627044,"North Indian, Spanish, Mediterranean",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,555 +311982,Lutyens Cocktail House,1,New Delhi,"22, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2194535,28.6183217,"North Indian, Lebanese, European, Mexican",2100,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,299 +182,McDonald's,1,New Delhi,"42, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.21920632,28.62662923,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,158 +18349923,Office Office,1,New Delhi,"48, Tolstoy Lane, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2196331,28.6269407,"North Indian, Continental",1200,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,291 +311871,Pappu Chat Bhandar,1,New Delhi,"19, Ground Floor, Suryakiran Building, Kasturba Gandhi Marg, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2225973,28.6276714,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,19 +8911,The Beer Cafe,1,New Delhi,"1/2, Scindia House, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.21962843,28.62913863,"Finger Food, North Indian",1250,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,1058 +18398618,The Masala Trail,1,New Delhi,"52, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.219697,28.62711,"North Indian, South Indian, Street Food",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.9,Yellow,Good,303 +18486847,Chill House Kafe,1,New Delhi,"Ground Floor, Handloom Haat, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2186451,28.627832,Cafe,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18394362,Connoisseur,1,New Delhi,"401, Surya Kiran Building, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.20999705,28.62569483,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18380392,Mahesh Chaat Corner,1,New Delhi,"Shop 23, Indian Oil Building, Janpath, New Delhi",Janpath,"Janpath, New Delhi",0,0,"Chinese, Fast Food, Pizza",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18458647,Pind Balluchi,1,New Delhi,"1/3, ScIndia House, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2197229,28.6291892,"North Indian, Mughlai",1000,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,3 +18124375,Queen's Way,1,New Delhi,"4, Raza Market, Behind DLF Building, Janpath Lane, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2181061,28.6284974,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +300582,Sea Lord,1,New Delhi,"5, Behind Royal Plaza Hotel, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2164893,28.6219815,"North Indian, South Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18306547,52 Janpath,1,New Delhi,"52, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2196331,28.6271199,"American, Italian, North Indian, European, Thai",1550,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,361 +18424189,Cafe Southall,1,New Delhi,"54, Tolstoy Lane, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2205314,28.6272055,"North Indian, Italian, Continental, Asian",1350,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,162 +899,Saravana Bhavan,1,New Delhi,"50, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2195882,28.6270708,South Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,1869 +18357911,Tourist Janpath,1,New Delhi,"1, Scindia House, Janpath Road, Janpath, New Delhi",Janpath,"Janpath, New Delhi",77.2196051,28.6291434,"North Indian, American, Chinese",2000,Indian Rupees(Rs.),Yes,No,No,No,4,4.1,Green,Very Good,501 +7901,Cafe Coffee Day,1,New Delhi,"G-18, Ground Floor, Spendour Farm, Distric Centre, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2865357,28.5377179,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,23 +309778,Cafe Punjabi,1,New Delhi,"GF-47, Plot 7, TDI Center, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2872342,28.5373236,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,33 +18359262,Chai Garam,1,New Delhi,"Food Court, Ground Floor, Splendor Forum, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2866593,28.5377077,"Beverages, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18358682,Chai Shots,1,New Delhi,"Shop 27-A, DLF Tower A, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2862858,28.5398301,"Beverages, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,15 +18413811,Chao Cart,1,New Delhi,"Omaxe Building, Near Apollo Metro Station, Jasola District Center, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2877168,28.53938,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,4 +8160,Deli Belly,1,New Delhi,"Shop 31, Ground Floor, DLF Tower B, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2884959,28.5398033,"North Indian, Italian, Continental",1000,Indian Rupees(Rs.),Yes,No,No,No,3,2.6,Orange,Average,49 +18240023,Ego,1,New Delhi,"Shop 14, Ground Floor, Omaxe Square, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2865123,28.5391313,"Continental, Italian",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,14 +306038,Fresh n Refresh,1,New Delhi,"Shop 35, Ground Floor, Living Square Mall, Pocket 6, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2970413,28.5413666,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,22 +18337775,Jack Po!tato's,1,New Delhi,"Atrium Floor, Splendor Forum Mall, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2875272,28.5372187,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,15 +18241514,Moti Mahal Delux,1,New Delhi,"33-34, Ground Floor, TDI Centre, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2875567,28.5373632,"North Indian, Mughlai",950,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.8,Orange,Average,26 +7912,Pizza Hut Delivery,1,New Delhi,"15-B, Ground Floor, Splendor Forum, District Centre, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2866858,28.5377272,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,47 +18387753,Riviera,1,New Delhi,"Ameya Suites, Plot-6, FC-33, Jasola Institutional Area, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2935319,28.5404503,"Continental, North Indian, Chinese, Mughlai, Asian",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,8 +9700,Subway,1,New Delhi,"Ground Floor Atrium, Splendor Forum, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2866755,28.5376733,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,67 +307342,Tamura,1,New Delhi,"TDI Centre, 1st Floor, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2874628,28.5374717,Japanese,1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,19 +301898,ANF Kitchen Express,1,New Delhi,"Shop 121, DLF Tower B, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2894195,28.5386022,"North Indian, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,49 +18322937,Mumu Dahlin,1,New Delhi,"The Nanee Suites, Plot 49, Pocket 1, Road 13A, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.294558,28.5398007,"Continental, North Indian, Chinese, Cafe",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,92 +18303834,Startup Cafe,1,New Delhi,"DLF Tower A, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2895211,28.5382002,Cafe,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,78 +18241883,Starvin' Marvin,1,New Delhi,"Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2978344,28.5436226,"Italian, Mexican, Lebanese, Continental",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,170 +18285180,Wok On Wheels,1,New Delhi,"District Center, Opposite DLF Towers, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2900843,28.5398573,Chinese,550,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,80 +18464001,Chai Mantra,1,New Delhi,"Shop 8, Ground Floor, DLF Tower B, Jasola District Center, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2899644,28.5382385,"Fast Food, Beverages",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +7908,Sagar Ratna,1,New Delhi,"24 & 25, Ground Floor, Tower B, DLF Building, Near District Center, Jasola, New Delhi",Jasola,"Jasola, New Delhi",77.2882379,28.5398069,"South Indian, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,76 +4503,Paatra - Jaypee Siddharth,1,New Delhi,"Jaypee Siddharth, 3, Rajendra Place, New Delhi","Jaypee Siddharth, Rajendra Place","Jaypee Siddharth, Rajendra Place, New Delhi",77.1758533,28.6427453,North Indian,3500,Indian Rupees(Rs.),Yes,No,No,No,4,3.4,Orange,Average,120 +4502,Eggspectation - Jaypee Siddharth,1,New Delhi,"Jaypee Siddharth, 3, Rajendra Place, New Delhi","Jaypee Siddharth, Rajendra Place","Jaypee Siddharth, Rajendra Place, New Delhi",77.1758886,28.642764,"European, Continental, North Indian",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,202 +4499,Ano Tai - Jaypee Vasant Continental,1,New Delhi,"Jaypee Vasant Continental, Vasant Vihar, New Delhi","Jaypee Vasant Continental, Vasant Vihar","Jaypee Vasant Continental, Vasant Vihar, New Delhi",77.16443762,28.55650347,Chinese,2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.4,Orange,Average,64 +4235,Tapas - Jaypee Vasant Continental,1,New Delhi,"Jaypee Vasant Continental, Vasant Vihar, New Delhi","Jaypee Vasant Continental, Vasant Vihar","Jaypee Vasant Continental, Vasant Vihar, New Delhi",77.16443762,28.55650347,North Indian,3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,24 +4500,The Old Baker - Jaypee Vasant Continental,1,New Delhi,"Jaypee Vasant Continental, Vasant Vihar, New Delhi","Jaypee Vasant Continental, Vasant Vihar","Jaypee Vasant Continental, Vasant Vihar, New Delhi",77.16443762,28.55650347,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,17 +4234,Eggspectation - Jaypee Vasant Continental,1,New Delhi,"Jaypee Vasant Continental, Vasant Vihar, New Delhi","Jaypee Vasant Continental, Vasant Vihar","Jaypee Vasant Continental, Vasant Vihar, New Delhi",77.16443762,28.55650347,"European, Continental, North Indian",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,162 +4501,Paatra - Jaypee Vasant Continental,1,New Delhi,"Jaypee Vasant Continental, Vasant Vihar, New Delhi","Jaypee Vasant Continental, Vasant Vihar","Jaypee Vasant Continental, Vasant Vihar, New Delhi",77.16443762,28.55650347,"North Indian, Mughlai",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,79 +308243,Ambarsaria by Gourmet Affaire's,1,New Delhi,"Ground Floor, JMD Kohinoor Mall, Greater Kailash (GK) 2, New Delhi","JMD Kohinoor Mall, Greater Kailash","JMD Kohinoor Mall, Greater Kailash, New Delhi",77.2383021,28.5364178,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,43 +703,August Moon,1,New Delhi,"11, JMD Kohinoor Mall, Masjid Moth, Greater Kailash (GK) 2, New Delhi","JMD Kohinoor Mall, Greater Kailash","JMD Kohinoor Mall, Greater Kailash, New Delhi",77.2385844,28.5366985,"Chinese, Thai",1250,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.8,Orange,Average,142 +18334427,Keventers,1,New Delhi,"Plot 33, Ground Floor, JMD Kohinoor Galleria Mall, LSC, Masjid Moth, Greater Kailash (GK) 2, New Delhi","JMD Kohinoor Mall, Greater Kailash","JMD Kohinoor Mall, Greater Kailash, New Delhi",77.2385653,28.5364802,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,10 +310529,Moets Curry Leaf Express,1,New Delhi,"Ground Floor,JMD Kohinoor Mall, Greater Kailash (GK) 2, New Delhi","JMD Kohinoor Mall, Greater Kailash","JMD Kohinoor Mall, Greater Kailash, New Delhi",77.2386159,28.5367169,"North Indian, Mughlai",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.2,Orange,Average,23 +309844,Natural Ice Cream,1,New Delhi,"Ground Floor, JMD Kohinoor Mall, Masjid Moth, Main Road, Greater Kailash (GK) 2, New Delhi","JMD Kohinoor Mall, Greater Kailash","JMD Kohinoor Mall, Greater Kailash, New Delhi",77.2386106,28.5367441,Ice Cream,150,Indian Rupees(Rs.),No,Yes,No,No,1,4.5,Dark Green,Excellent,665 +306034,"34, Chowringhee Lane",1,New Delhi,"61-D, Ground Floor, Ber Sarai Market, Opposite Old JNU Campus, JNU, New Delhi",JNU,"JNU, New Delhi",77.1810079,28.5490023,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +303604,Qureshi,1,New Delhi,"7, Kamal Complex, JNU, New Delhi",JNU,"JNU, New Delhi",77.16718253,28.54865293,"North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,27 +1505,Shree Ram Sweet Centre,1,New Delhi,"DDA Market, Ber Sarai, Near IIT Delhi Hostel Gate, JNU, New Delhi",JNU,"JNU, New Delhi",77.1807722,28.5494286,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,13 +303583,Teflas,1,New Delhi,"Opposite Narmada Hostel, JNU, New Delhi",JNU,"JNU, New Delhi",77.1656368,28.5474027,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,53 +18175324,The Viraj Food Zone,1,New Delhi,"61-B, Ber Sarai, JNU, New Delhi",JNU,"JNU, New Delhi",77.1811526,28.5490027,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,29 +18391147,RollsKing,1,New Delhi,"Shop 23, DDA Shopping Complex, Ber Serai, JNU, New Delhi",JNU,"JNU, New Delhi",77.1811374,28.5495565,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,14 +301130,Secular House Canteen,1,New Delhi,"9/1, Secular House, Opposite JNU East Gate, JNU, New Delhi",JNU,"JNU, New Delhi",77.1783133,28.5441245,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,414 +18354985,Amul Ice-Cream Parlour,1,New Delhi,"61-B, Ber Sarai, JNU, New Delhi",JNU,"JNU, New Delhi",77.1811823,28.5489782,Ice Cream,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18414503,Sunny Restaurant & Tiffin,1,New Delhi,"61-A, Ber Sarai, JNU, New Delhi",JNU,"JNU, New Delhi",77.1810026,28.5488714,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +7807,Kerala Cafe,1,New Delhi,"DDA Market, Ber Sarai, Aruna Ashif Ali Marg, JNU, New Delhi",JNU,"JNU, New Delhi",77.18089364,28.54979385,"North Indian, South Indian",150,Indian Rupees(Rs.),No,No,No,No,1,2.3,Red,Poor,44 +300887,Veer Jee Restaurant,1,New Delhi,"H-63, BK Dutt Colony, Jor Bagh Lane, Jor Bagh, New Delhi",Jor Bagh,"Jor Bagh, New Delhi",77.21763119,28.58429443,"North Indian, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,35 +306251,Oval Bar - JW Marriott New Delhi,1,New Delhi,"JW Marriott Delhi NCR, Asset Area 4, Hospitality District, Aerocity, New Delhi",JW Marriott New Delhi,"JW Marriott New Delhi, New Delhi",77.121445,28.552895,Finger Food,4500,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,15 +18144453,Bakey Wish,1,New Delhi,"L Block, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2398107,28.5531043,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +7862,Bikaner Namkeen Bhandar,1,New Delhi,"HS-9, Kailash Colony Market, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2416379,28.5526774,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +7857,Chhole Bhature Corner,1,New Delhi,"HS 6/1, Kailash Colony Market, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2412786,28.5525536,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,21 +2874,Fresh n Frozen,1,New Delhi,"HS-26, Ground Floor, Kailash Colony Market, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2409194,28.5536849,"Raw Meats, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +18458625,Pind Punjabi,1,New Delhi,"16&17, Mount Kailash, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",0,0,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,4 +18252369,Sanjha Chulha,1,New Delhi,"HS-36, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2411888,28.5538898,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,13 +18228895,Shaan e Punjab,1,New Delhi,"16, Ajit Arcade, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2402459,28.5571618,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,21 +2583,Cafe 27,1,New Delhi,"26, Level 2, Kailash Colony Market, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2408296,28.5536763,"North Indian, Chinese, Italian",1550,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,455 +304876,MR.D - Deliciousness Delivered,1,New Delhi,"26, Ajit Arcade, Opposite Metro Pillar 74, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2402908,28.556673,"North Indian, Italian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,367 +308407,Pita Pit,1,New Delhi,"Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.236741,28.557442,"Healthy Food, Salad",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,540 +18492050,Al-Malik Chicken Point,1,New Delhi,"86, Zamrudpur, Auto Complex Road, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2360071,28.5563436,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18492052,Amul Sweets & Bakery,1,New Delhi,"87/1, Zamrudpur, DDA Market, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2355758,28.5565383,"North Indian, South Indian, Chinese, Fast Food, Bakery, Mithai",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449620,Elements - Mapple Express,1,New Delhi,"A-60, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.243649,28.553673,"North Indian, Continental, Chinese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,0 +18452403,Food 24,1,New Delhi,"86, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2415481,28.5551789,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18425740,Food Corner,1,New Delhi,"HS 14, Back Side, Main Market, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.241099,28.5527158,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18313153,Food Master's Galley,1,New Delhi,"Kailash Colony Main Road, Near Kailash Colony Metro Station, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",0,0,"North Indian, Chinese",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18435830,Habibi Express,1,New Delhi,"5 Zamrudpur, Kailash Colony Extension, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.238586,28.555918,"Lebanese, Arabian, Moroccan",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,0,White,Not rated,0 +18473378,Hide Out Cafe,1,New Delhi,"1st Floor, HS 25, Kailash Colony Market, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2408296,28.5536763,"Cafe, Chinese, Italian",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18452241,Moriarty Delivers,1,New Delhi,"L- 14 A, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2401111,28.5535184,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +3190,Big Chill,1,New Delhi,"HS 5, Kailash Colony Market, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2421318,28.5527692,"Italian, Continental, European, Cafe",1500,Indian Rupees(Rs.),No,No,No,No,3,4.4,Green,Very Good,1521 +3041,Maxims Pastry Shop,1,New Delhi,"HS-3, Main Market, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2421767,28.5527286,"Bakery, Desserts, Fast Food, Beverages",300,Indian Rupees(Rs.),No,No,No,No,1,4.2,Green,Very Good,729 +18441798,Uncultured Cafe & Bar,1,New Delhi,"HS-12, Kailash Colony, New Delhi",Kailash Colony,"Kailash Colony, New Delhi",77.2412786,28.5526433,"Continental, Chinese, Italian, Finger Food",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.3,Green,Very Good,90 +306505,2 Nice 2 Slice,1,New Delhi,"262, Deshbandhu Apartments, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25765813,28.53853483,"Bakery, Desserts",1750,Indian Rupees(Rs.),No,No,No,No,3,3.2,Orange,Average,17 +302868,Aggarwal Bikaneri Sweets,1,New Delhi,"B-53, Main Road, Near Nirankari Bhawan, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.251157,28.5441688,"Mithai, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,11 +7383,Aggarwal Sweet Corner & Restaurant,1,New Delhi,"1, Krishna Market, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25511976,28.54153378,"North Indian, South Indian, Chinese, Mithai",300,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,38 +302793,Aggarwal Sweets India,1,New Delhi,"1666/1, Govindpuri Extension, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.26001167,28.53451667,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,9 +9993,Aggarwal's Sweets Paradise,1,New Delhi,"16, CSC, Pocket A-8, DDA Market, Kalkaji Extension, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.26306513,28.52530273,"Mithai, North Indian, South Indian, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,16 +9985,Aggarwal's Sweets,1,New Delhi,"5, CSC Market, Pocket 8, Kalkaji Extension, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.263331,28.52576,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +18138461,Anna Ka Dosa,1,New Delhi,"K-107/B, Ground Floor, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25950785,28.53920667,South Indian,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,41 +306957,Big Chow Xpress,1,New Delhi,"433-B/5, Street 5, Govindpuri Main, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.26394121,28.53706949,"Chinese, North Indian",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,58 +7590,Bikaner Sweets & Namkeen,1,New Delhi,"J-13/12, DDA Flats, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25476302,28.52562912,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +9620,Cafe Coffee Day,1,New Delhi,"E 154, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2563653,28.5409875,Cafe,450,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,33 +302884,Cake Plaza,1,New Delhi,"K-78, Main Road, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25926813,28.53930504,"Bakery, Desserts, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,28 +309238,Crispy Tokri,1,New Delhi,"H-15B, Main Road,, Delhi, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25810573,28.54024549,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,100 +309609,De Royale Food's,1,New Delhi,"B 53, Main Road, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25107197,28.54423341,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,22 +18414477,Faasos,1,New Delhi,"Shop N-9, Ground Floor, Opposite ICICI Bank, Near Govindpuri, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.257337,28.537027,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,4 +9992,Fouji Da Vaishno Dhaba,1,New Delhi,"36/1, Opposite Bus Depot, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25989409,28.53320649,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,14 +18224572,Fun Bytes,1,New Delhi,"A-1, Double Storey, Main Road, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.251193,28.54442544,Fast Food,250,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,13 +312594,G's Patisserie,1,New Delhi,"Near Bhairon Temple, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.260126,28.537134,"Bakery, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,8 +312728,Giani,1,New Delhi,"Near 15-16, Main Road, Block G, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.258148,28.54013,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,17 +18025133,Gopals 56,1,New Delhi,"Opposite Deshbandhu College, Krishna Market, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25543889,28.54143056,"Ice Cream, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,8 +7329,Green Chick Chop,1,New Delhi,"10 & 12, F-7, Main Road, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2537612,28.5421747,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,26 +302892,Heaven's Kitchen,1,New Delhi,"59-60, Mini Central Market, Near Mother Dairy, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2569098,28.53072249,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,85 +302893,Heavens Food Corner,1,New Delhi,"DDA Market, Near Mother Dairy, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25698889,28.53074722,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,14 +309533,Just Kababs,1,New Delhi,"Shop 9, Aravali Shopping Centre, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25312778,28.53283056,"Fast Food, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,25 +18376487,Keventers,1,New Delhi,"Shop 1, F3, Ground Floor, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2534918,28.5423284,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +302895,Komal Kitchen,1,New Delhi,"J-4/1A, DDA Flats, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25608056,28.52827222,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,7 +302896,Kwality Sweets & Restaurant,1,New Delhi,"A-8, Janta Market, DDA Flats, Near 429 Bus Stand, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25624796,28.52800925,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,10 +9776,Mehak Food Corner,1,New Delhi,"A-105, Double Storey, Opposite HDFC Bank, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25087617,28.54369031,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,87 +18245255,Mr. Sub,1,New Delhi,"G-16-A, Main Market, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25705095,28.54072765,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,57 +309648,Muradabadi Shahi Biryani & Chicken Corner,1,New Delhi,"A-71, Kalkaji Main Road, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25120507,28.5442178,"North Indian, Biryani",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,24 +18285214,Muradabadi,1,New Delhi,"J-4/48 A, DDA Flats, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25578628,28.52833711,"Mughlai, Biryani",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +302938,New Radhe Radhe Snacks Corner,1,New Delhi,"Govind Puri, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.24575,28.53103056,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +18396545,Nirula's Ice Cream,1,New Delhi,"F-8, Ground Floor, Main Market Road, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25391286,28.5419405,"Desserts, Ice Cream",250,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,14 +18414495,Noor Restaurant,1,New Delhi,"Shop 2, Krishna Market, Near Desh Bandhu College, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2553326,28.5415619,"North Indian, Mughlai, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,20 +311891,Paul's Homemade,1,New Delhi,"16/493, DDA Flat, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2583896,28.5302637,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,11 +312372,Pinkom's Bar-Be-Que,1,New Delhi,"15/449, DDA Flats, Near DDA Central Market, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2568858,28.5309441,"North Indian, Mughlai",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +8949,Prince of China,1,New Delhi,"31-A, Krishna Market, Opposite Deshbandhu College, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25677937,28.54172876,"Thai, Chinese, Seafood",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,70 +302898,Punjabi Corner,1,New Delhi,"Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25065958,28.5437554,North Indian,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,55 +302710,Punjabi Snacks,1,New Delhi,"1912/19, Govindpuri Extension, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25814529,28.53519117,"Street Food, North Indian, South Indian",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +9998,Quality Food Point,1,New Delhi,"1, Pocket A 8, CSC Market, Kalkaji Extension, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2634745,28.52588599,"North Indian, Fast Food, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +18317229,Radhe Shyam,1,New Delhi,"M-6, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2594998,28.53815752,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,10 +9623,Raj South Indian Food,1,New Delhi,"1/2, Krishna Market, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25519444,28.54165,"South Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +3634,Roll Club,1,New Delhi,"6, B-41/A, Main Road, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2520322,28.54306356,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,91 +7382,Shameem Kabab Corner,1,New Delhi,"30, Krishna Market, Opposite Deshbandu Collage, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25657452,28.54185423,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,67 +1866,Shiv Dhaba,1,New Delhi,"B-39/B, Main Road, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2519915,28.5429843,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,92 +304783,Silver Spoons,1,New Delhi,"A-107, Double Storey, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25765,28.535954,"North Indian, Street Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,6 +302811,Takkar Dhaba,1,New Delhi,"258, Gali 3, Govindpuri, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.26170357,28.53804707,North Indian,450,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,24 +308664,The Biryani Wallas,1,New Delhi,"Govindpuri, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.260126,28.537134,Biryani,650,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,26 +18133506,The Tuck Shop,1,New Delhi,"Govindpuri Extension, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25889722,28.53269444,Fast Food,700,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,17 +305293,Uncle Xpress,1,New Delhi,"1, Krishna Market, Near Desh Bandhu College, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25539435,28.54166043,Chinese,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,80 +2211,Vaishno Rasoi,1,New Delhi,"Opposite Desh Bandhu College, Krishna Market, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2554673,28.5417988,North Indian,350,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,23 +9622,Vatika,1,New Delhi,"A-373/435, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.24925745,28.54313277,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,52 +18281989,Walk To Italy,1,New Delhi,"Shop 1, 999/38, DDA Flats, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2552998,28.52858425,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,11 +18365855,Behrouz Biryani,1,New Delhi,"Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25938,28.537766,Biryani,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,30 +309737,Big Dragon,1,New Delhi,"B-41, Ground Floor, Main Market, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25188736,28.54319403,"Chinese, Thai",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.6,Yellow,Good,108 +18386707,Cafe Filter,1,New Delhi,"B-33, 1st Floor, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25268575,28.54270391,"Fast Food, Italian, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,22 +309338,Chowki,1,New Delhi,"Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.24800486,28.54287123,North Indian,750,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,89 +18380155,Circle Cafe and Bar,1,New Delhi,"F1, 1st Floor, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2528632,28.5422688,"Cafe, North Indian, Lebanese, Continental",800,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,30 +18372686,FreshMenu,1,New Delhi,"Shop 1, 3rd Floor, Ramji Lal Complex, Mini Central, DDA Market, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.257216,28.530672,"Italian, Chinese, Continental, Thai, Mediterranean, Lebanese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,36 +3610,Giani's,1,New Delhi,"Near 3, Kalkaji Main Road, Block F, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.253107,28.542481,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,80 +3054,Gopal's 56,1,New Delhi,"1691/2, Govind Puri Extension, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25814059,28.53444508,"Ice Cream, Desserts, North Indian, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,71 +311267,Instapizza,1,New Delhi,"Shop 1, G-34, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25816473,28.54019601,"Pizza, Fast Food",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,492 +307951,Just Vada Pav,1,New Delhi,"E-157, Krishna Market, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25293074,28.54286122,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,94 +1876,Khidmat,1,New Delhi,"E-9, Main Road, Near Deshbandhu College, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2544796,28.5417947,"North Indian, Mughlai, Chinese",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,372 +412,Naivedyam,1,New Delhi,"F-12, Main Road, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25427318,28.54195702,South Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,495 +3635,New Shere Punjab Dhaba,1,New Delhi,"G-17/A, Main Road, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2570837,28.540697,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,91 +9654,Sant Sweets,1,New Delhi,"A-135, Double Storey, Near HDFC Bank, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25048993,28.54400044,"Street Food, North Indian, Mithai",250,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,60 +18354973,Tikka- Way,1,New Delhi,"E-8, Kalkaji Main Road, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25476695,28.5417806,"North Indian, Chinese",850,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,23 +18392883,Bake Bite,1,New Delhi,"J-4,135A DDA Flat, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",0,0,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18446815,Chinese Chaat Corner,1,New Delhi,"A 385, Double Story, A Block, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",0,0,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +311014,Chocofairies,1,New Delhi,"Near Alaknanda Market, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2616631,28.5382626,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +4325,Punjabi Rasoi,1,New Delhi,"R-16, Nehru Enclave, Near Paras Ground, Main Kalkaji Road, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.2510672,28.5446085,North Indian,350,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,11 +18322653,Punjabi Xpress,1,New Delhi,"A-385, Double Story, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.24908177,28.54347678,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.3,Red,Poor,9 +9557,The Cake Factory,1,New Delhi,"14, Krishna Market, Near Desh Bandhu College, Kalkaji, New Delhi",Kalkaji,"Kalkaji, New Delhi",77.25578561,28.54201092,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.3,Red,Poor,19 +9470,"34, Chowringhee Lane",1,New Delhi,"UB-101, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2071483,28.6809045,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,86 +306491,Annapurna Restaurant,1,New Delhi,"1811, Chandrawal Road, Malka Ganj, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2061353,28.6778705,"North Indian, Chinese",250,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,56 +18416860,BTW,1,New Delhi,"6926-33/131A, Jaipuria Mill, Ghantaghar, GT Karnal Road, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",0,0,"Street Food, North Indian, South Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +640,Cafe Coffee Day,1,New Delhi,"9, UB, Jawahar Nagar, Bungalow Road, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2072484,28.6817513,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,82 +305161,Chawla's Chic Inn,1,New Delhi,"4, Vardhman Tower, Shakti Nagar Chowk, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.197804,28.6823671,"North Indian, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,26 +306149,Chennai Hot Cafe,1,New Delhi,"E 143, Shop 4, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2048113,28.6820522,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,75 +1197,Daawat E Mezbaan,1,New Delhi,"26A/UA, Bungalow Road, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.20841881,28.67991553,"Mughlai, North Indian",800,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,77 +18198467,Dessert in Desert,1,New Delhi,"21-UB, Jawahar Nagar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2066978,28.6819638,"Cafe, Fast Food, Desserts",450,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,38 +311903,Domino's Pizza,1,New Delhi,"Ground Floor, 29/4, Nangia Park, Shakti Nagar, Near Kamla Nagar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.1953759,28.67940137,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,36 +18458665,Filmy Cafe & Bar,1,New Delhi,"4/3, 1st Floor, Roop Nagar, Near Kamla Nagar Market, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2012178,28.6834998,"North Indian, Fast Food, Chinese, Continental",1200,Indian Rupees(Rs.),Yes,No,No,No,3,2.9,Orange,Average,4 +6651,Firenze,1,New Delhi,"6, 38 Bungalow Road, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2048445,28.6839604,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,25 +311076,Giani,1,New Delhi,"30/26, Near Nangia Park, Shakti Nagar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.19552509,28.68010437,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,41 +9001,Gullu's,1,New Delhi,"2, Main Road, Malka Ganj, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.207839,28.6770968,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,69 +8995,Manwhar,1,New Delhi,"5, Roop Nagar, Shakti Nagar Chowk, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.1982887,28.6819382,"South Indian, North Indian, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,69 +18489508,Midnight Hunger Hub,1,New Delhi,"Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",0,0,"North Indian, Fast Food, Italian, Asian",800,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,6 +7689,Mini Shop,1,New Delhi,"1, UB, Opposite KM College, Bunglow Road, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2064283,28.6824755,"Fast Food, Beverages",150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,49 +307959,Nine 75 Lounge & Bar,1,New Delhi,"B-49, Kamla Nagar Main Road, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.20048,28.6826214,"Chinese, North Indian, Italian, Continental, Fast Food",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.2,Orange,Average,145 +18222571,Pradhan Ji Multi Cuisine Restaurant,1,New Delhi,"32-UB, Lower Ground Floor, Jawahar Nagar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2073715,28.6808616,"North Indian, Chinese, Continental",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,41 +310202,Punjabi Chaap Corner,1,New Delhi,"E-146, Near Incense Showroom, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2050808,28.6821675,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,15 +301470,Sagar Ratna,1,New Delhi,"115-A, Ground Floor, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.1986842,28.6816581,"South Indian, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,109 +5433,Shiva Coffee & South Indian Fast Food,1,New Delhi,"1-D, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.199757,28.6823852,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,41 +18349733,The Ice Cafe,1,New Delhi,"25-UB, Jawahar Nagar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.20695868,28.6815983,"Cafe, Chinese, Continental, Italian, Desserts, Beverages",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,28 +18421019,Tikka Junction,1,New Delhi,"Shop G 2, Vardhaman City Centre, Near Shakti Nagar Underpass, Gulabi Bagh, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.1890553,28.6780077,"North Indian, Chinese",750,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,21 +18317510,Trending Eats,1,New Delhi,"23,Sai Dhaam PG,Bungalow Road,Block UA,Jawahar Nagar, Near Hansraj college, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2084945,28.6798964,"Italian, Fast Food",800,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,21 +303104,Twenty Four Seven,1,New Delhi,"23, Opposite Hansraj Hostel, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2080453,28.6786891,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,53 +8991,Vikrant Cafe,1,New Delhi,"13-A, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.1999533,28.6799319,"South Indian, North Indian",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,145 +6662,Vishal Restaurant,1,New Delhi,"5122, Building Harphool Singh, Clock Tower, Subzi Mandi, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2029247,28.675602,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,24 +18365889,Badri Prasad Ramesh Kumar Caterers,1,New Delhi,"66-67/E, Near Chota Gali Chakkar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2034689,28.6826461,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,12 +18245268,Bistro,1,New Delhi,"Jawahar Nagar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2075063,28.6806976,Beverages,150,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,55 +309856,Chaudhary Sweets Corner,1,New Delhi,"10/18, Shakti Nagar, Near Roshanara Club, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.1963486,28.6772166,"Desserts, Beverages",300,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,36 +309604,Chowringhee,1,New Delhi,"16 UB, Jawahar Nagar, Bungalow Road, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.20744444,28.68100278,"Fast Food, Beverages",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,108 +18332062,Cones & Curries,1,New Delhi,"Shop 28, Jawahar Nagar, Opposite Hansraj Boys Hostel, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.208375,28.680111,Fast Food,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,151 +6658,Darvesh Corner,1,New Delhi,"7673, Birla Lane, Clock Tower, Near Amba Cinema, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.201128,28.6787442,North Indian,550,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,91 +9644,Deez Biryani & Kebabs,1,New Delhi,"4/3, 1st Floor, Roop Nagar, Near Kamla Nagar Market, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2012178,28.6834998,"Biryani, North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,393 +18349974,Frozen Pan,1,New Delhi,"Shop PVT 3, Ground Floor, Block UB, Jawahar Nagar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.20738649,28.6809212,"Ice Cream, Fast Food, Beverages",250,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,72 +2267,Giani's,1,New Delhi,"28 UA, Main Bungalow Road, Jawahar Nagar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2082938,28.67999,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,167 +18377630,Havmor Ice Cream,1,New Delhi,"5885, 28-UA, Ground Floor, Jawajar Agar, Civil Lines Zone, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2083148,28.679521,Ice Cream,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,20 +18289256,Keventers,1,New Delhi,"Shop 6030, 1 UB, Jawahar Nagar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2062459,28.6826835,Beverages,250,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,61 +300849,Manohar Bikkaneri,1,New Delhi,"1512, Clock Tower, Near, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2027451,28.6763014,"Mithai, Chinese, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,83 +6675,Manohar Bikkaneri,1,New Delhi,"2, UA, Jawahar Nagar, Near Malkaganj Chowk, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2066539,28.6779587,"Bakery, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,62 +18430598,Nukkadwala,1,New Delhi,"27A, Block-UA, Jawahar Nagar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.208147,28.680957,"Fast Food, Street Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,58 +303082,Om Di Hatti,1,New Delhi,"14 A, Shakti Nagar Chowk, Main GT Karnal Road, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.1987024,28.6812887,"Street Food, North Indian",100,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,116 +18445775,Orange Tree Cafe,1,New Delhi,"4/2, Ground Floor, Opposite Raymond Showroom, Roop Nagar, Near Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",0,0,"Continental, Chinese, North Indian",600,Indian Rupees(Rs.),Yes,No,No,No,2,3.5,Yellow,Good,21 +309805,Rigo Noodles,1,New Delhi,"30, 4B, Jawahar Nagar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.20720008,28.68121151,"Chinese, Thai",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,133 +302972,Sethi's The Cake Shop,1,New Delhi,"5332, New Chandrawal Road, Near Malka Ganj Chowk, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.206069,28.6778732,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,150 +7667,Shake Square,1,New Delhi,"12-UB, Bungalow Road Market, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2074165,28.6814952,"Beverages, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,261 +307327,Sharma Kachoriwala,1,New Delhi,"38/A, Satyawati Marg, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.1992414,28.6822359,Street Food,50,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,131 +304461,Shawarma Wala,1,New Delhi,"33-34 UB, Bunglow Road, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2075961,28.6808854,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,234 +300854,Shree Rathnam,1,New Delhi,"3-F, Kamla Nagar Market, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2030146,28.6802681,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,85 +306402,Shri Bankey Bihari Brajwasi Rasgulle Wala,1,New Delhi,"D-128, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2006788,28.6812987,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,36 +18157402,Sid's Kitchen,1,New Delhi,"25-UB, Jawahar Nagar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.20699288,28.68162389,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,115 +2272,Subway,1,New Delhi,"29, Near ICICI Bank, Jawahar Nagar, Malka Ganj Road, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.208225,28.6796019,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,143 +18261675,Sweet Life By Henna,1,New Delhi,"69-B, DDA Flat, Gulabi Bagh, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.1934017,28.6709291,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,47 +18458347,The Midnight Heroes,1,New Delhi,"Kamla Nagar Market, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.20392846,28.68086237,"North Indian, Biryani, Chinese, Fast Food",950,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.8,Yellow,Good,41 +307415,Urban Hub,1,New Delhi,"1st Floor, 4/2, Opposite Raymond Showroom, Roop Nagar, Near Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2012628,28.6835489,"Chinese, North Indian, Italian, Fast Food",1900,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,346 +8985,Vaishno Chat Bhandar,1,New Delhi,"66-67/E, Near Chota Gali Chakkar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2033739,28.6825417,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,223 +6667,Ved Dhaba,1,New Delhi,"5307, Shree Ram Bhavan, Chandrawal Road, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2054401,28.6777235,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,97 +18294234,Veg Ex,1,New Delhi,"Bunglow Road,",Kamla Nagar,"Kamla Nagar, New Delhi",77.173372,28.720838,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,24 +18458013,Wokin Street,1,New Delhi,"28, UA, Jawahar Nagar, Opposite Hansraj College Gate 5, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2083451,28.6801444,Chinese,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,25 +18218265,Yadav Namkeens & Bakers,1,New Delhi,"1618, Kohlapur Road, Near Ghanta Ghar, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2051282,28.6776821,Bakery,100,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,15 +18460325,Javed Chicken Corner,1,New Delhi,"Shop 9, Main Market, Opposite Wine Shop, Malka Ganj, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2079014,28.6766471,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18458658,Kamal Chicken,1,New Delhi,"J-15, Partap Nagar, Near Pratap Nagar Metro Station, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.196097,28.6689477,"Mughlai, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18458655,Singh Chinese Fast Food,1,New Delhi,"C Block, Main Road, Pratap Nagar, Near, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.1991559,28.6675893,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +4227,Chill'm Bar & Cafe,1,New Delhi,"38, Bunglow Road, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",77.2047215,28.6839245,"North Indian, Italian, Chinese, Fast Food",600,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.2,Green,Very Good,300 +18418240,Coffee & Cream,1,New Delhi,"Delhi University North Campus, Kamla Nagar, New Delhi",Kamla Nagar,"Kamla Nagar, New Delhi",0,0,"Beverages, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,108 +5083,Chawla Di Hutti,1,New Delhi,"Opposite Auto Stand, Old Delhi Gurgaon Road, Near Kapashera, New Delhi",Kapashera,"Kapashera, New Delhi",77.07889594,28.51647834,North Indian,700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,59 +302254,Sher 'A' Punjab Bhojnalya,1,New Delhi,"Palam Gurgaon Road, Dundahera Border, Near Wine Shop, Kapashera, New Delhi",Kapashera,"Kapashera, New Delhi",77.0784756,28.5161533,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,36 +300973,Guru Rakha,1,New Delhi,"T-41-42, Super Market, Near Milan Cinema, New Moti Nagar, Near Karampura, New Delhi",Karampura,"Karampura, New Delhi",77.14673806,28.66228784,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,62 +307069,Shudh Vaishno Hotel,1,New Delhi,"T 32-34, Super Market, Near Milan Cinema, New Moti Nagar, Karampura, New Delhi",Karampura,"Karampura, New Delhi",77.14636557,28.66223077,North Indian,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,44 +305289,Kumar Samose Wala,1,New Delhi,"2/31, Near Milan Cinema, Karampura, New Delhi",Karampura,"Karampura, New Delhi",77.14383926,28.66439777,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,187 +18376493,Amigo's Deli,1,New Delhi,"B-11, East Arjun Nagar, Near Hedgewar Hospital, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.29406979,28.65678454,"Mughlai, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,11 +307989,Ananda Food Express,1,New Delhi,"B-10, Opposite Headgewar Hospital, East Arjun Nagar, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.29405772,28.65676424,"North Indian, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,27 +310899,Green Chick Chop,1,New Delhi,"G 4, Plot 15, Saini Enclave Market, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3054936,28.6511682,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,33 +18322591,Khana Vaana,1,New Delhi,"G 2, Rishabh Vihar Main Market, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3027743,28.6534064,"North Indian, South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,32 +18486915,Momoholic,1,New Delhi,"Shop 13, Plot 25, Parmesh Corporate Tower, Karkardooma Community Centre Tower, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",0,0,"Chinese, Fast Food, Ice Cream",200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,11 +302488,Nazeer Foods,1,New Delhi,"Plot 11, G-2-5, Sagar Deep Complex, Saini Enclave, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3050378,28.6515495,"North Indian, Mughlai, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,87 +3173,Pind Balluchi,1,New Delhi,"410, Karkardooma Village, Opposite Karkardooma Metro Station, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3047359,28.649656,"North Indian, Mughlai",850,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.6,Orange,Average,192 +313413,Rumours,1,New Delhi,"21, Hargobind Enclave, Near Karkarduma Metro Station, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3024918,28.6475149,"North Indian, Chinese, Italian",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,232 +307818,Spice Grill,1,New Delhi,"417, Jagriti Enclave, Near Metro Station, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3070793,28.6520694,"North Indian, Mughlai, Chinese, Continental",1300,Indian Rupees(Rs.),No,Yes,No,No,3,3.2,Orange,Average,177 +310332,Utopia,1,New Delhi,"Plot 7, Karkardooma Community Center, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.303195,28.6486474,"North Indian, Mediterranean, Continental",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,286 +2295,Aroma Rest O Bar,1,New Delhi,"18, Ashish Corporate Tower, Karkardooma Community Centre, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.302196,28.6484654,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.6,Yellow,Good,306 +18361742,Cafe Shloka,1,New Delhi,"183, Jagriti Enclave, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3090365,28.6537039,"Cafe, Italian, Chinese, North Indian",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.5,Yellow,Good,63 +303578,Chawla's Tandoori Junction,1,New Delhi,"G-3, Pankaj Plaza 2, Community Center, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3031754,28.6479181,North Indian,800,Indian Rupees(Rs.),Yes,No,No,No,2,3.5,Yellow,Good,159 +18429394,Desi Villa,1,New Delhi,"A 282, Surajmal Vihar, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.304534,28.6601143,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.7,Yellow,Good,28 +6705,Kanwarji's,1,New Delhi,"G-1, Sagar Chamber, Saini Enclave, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3051329,28.6509065,"Street Food, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,40 +18250020,Palomino,1,New Delhi,"11, Jagriti Enclave, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3079592,28.6528252,"North Indian, Mughlai, Continental, Chinese",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,213 +18235498,Raasa The Luxuriate Fine Dine,1,New Delhi,"C-5, Opposite Pushpanjali Medical Centre, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3094489,28.654069,"North Indian, Mughlai, Chinese",1150,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,160 +300910,Shiv Tikki Wala,1,New Delhi,"Ground Floor, Pramesh Tower, Karkardooma Community Centre, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3023084,28.6492275,"Street Food, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,300 +18317477,The Barbeque Company,1,New Delhi,"4, Hargovind Enclave, Opposite Shanti Mukund Hospital, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3011095,28.6461321,"North Indian, Chinese, Continental",1300,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,248 +308638,The Wrap Factory,1,New Delhi,"Shop 11, Ground Floor, 5, A Block Market, Surajmal Vihar, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3062599,28.6594593,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,109 +1270,Urban Punjab,1,New Delhi,"G-7, Pankaj Plaza 2, Karkardooma Community Center, Opposite Dayanand Vihar, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3029072,28.6480355,"North Indian, Chinese",750,Indian Rupees(Rs.),Yes,No,No,No,2,3.5,Yellow,Good,132 +18268715,Classic,1,New Delhi,"G-1, United Plaza, Karkardooma Market, Opposite Hargobind Enclave, Near Metro Pillar, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3023672,28.6484283,"Desserts, Fast Food, Ice Cream",250,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,95 +312518,Goosebumps,1,New Delhi,"House 1, Dayanand Vihar, Opposite HOD, Karkardooma, New Delhi",Karkardooma,"Karkardooma, New Delhi",77.3020809,28.6467421,"Ice Cream, Desserts",300,Indian Rupees(Rs.),No,Yes,No,No,1,4,Green,Very Good,292 +304028,Adyar Ananda Bhavan,1,New Delhi,"18/1, Arya Samaj Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1952884,28.646476,"South Indian, North Indian, Chinese, Street Food, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,39 +7422,Amma Mess,1,New Delhi,"19 & 20, Shastri Market, Gurudwara Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1919642,28.6470539,"South Indian, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,68 +306096,Amritsari Chaap Corner,1,New Delhi,"5060/1, Sant Nagar, Main Desh Bandhu Gupta Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18920413,28.65456149,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,92 +7450,Aroma Spice,1,New Delhi,"15A/61, WEA, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18937848,28.64779259,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.4,Orange,Average,51 +306106,Boheme Cafe Bar,1,New Delhi,"16-A/1, WEA, Near Metro Station, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1872922,28.6458903,"North Indian, Chinese, Continental, Italian",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.2,Orange,Average,142 +303963,Cafe Coffee Day,1,New Delhi,"Jhandewalan Metro Station, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1968947,28.64590801,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,21 +18124379,Chinese King,1,New Delhi,"Shop 6, 15-A/5, Near Pooja Park, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1875617,28.6457369,"Chinese, North Indian, Mughlai",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,71 +310758,Chopsuey,1,New Delhi,"7724, New Market, Near Liberty Cinema, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1889094,28.6576903,"Chinese, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,71 +309606,Chowringhee,1,New Delhi,"14A/34, China Market, Near Karol Bagh Metro Station, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1868879,28.6458068,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,122 +2408,Crossroad Bar and Restaurant,1,New Delhi,"17-A/1, WEA Gurudwara Road, Jessa Ram Hospital, Near Metro Pillar 99, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1899106,28.6448625,"North Indian, Chinese, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,39 +309560,Domino's Pizza,1,New Delhi,"61/34, 1st Floor, New Rohtak Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19380312,28.65824145,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,43 +306405,Giani's,1,New Delhi,"15-A/63, WEA, Near Punjab Sweet House, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1892688,28.6467961,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,38 +5529,Giani,1,New Delhi,"A/2, Prahlad Market, Desh Bandhu Gupta Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19036754,28.65432847,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,39 +9459,Gulnar Bar Be Que,1,New Delhi,"7-A/45, WEA, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1838779,28.6455636,"North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,73 +300359,Kwality Bengali Sweets,1,New Delhi,"8351, Rani Jhansi Road, Near Filmistan, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.20330585,28.65947151,"Desserts, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,10 +18128869,Little Chef,1,New Delhi,"B-1/8, Apsara Arcade, Near Karol Bagh Metro Station, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18858656,28.64356644,"North Indian, Mughlai, Chinese, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,32 +9011,M J Dosa Corner,1,New Delhi,"111, Guru Nanak Market, A Block, WEA, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1870226,28.6457749,South Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,36 +5507,Moolchand's,1,New Delhi,"2695, Desh Bandhu Gupta Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19397243,28.65203681,"North Indian, South Indian, Chinese, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,36 +303704,New Angaar Hyderabadi,1,New Delhi,"11747/4, Sant Nagar, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18398858,28.64837929,Hyderabadi,750,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.1,Orange,Average,134 +1924,New Frontier Hotel,1,New Delhi,"2, Ghaffar Market, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1912316,28.649189,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,55 +300257,Oberoi Biryani,1,New Delhi,"50, Shastri Market, Gurudwara Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19076987,28.64568939,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,90 +7534,Om Ji Om,1,New Delhi,"Netaji Subhash Market, Ajmal Khan Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19484482,28.65377446,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,60 +1925,Om Saravana Bhavan,1,New Delhi,"15-A/17, WEA, Saraswati Marg, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1877414,28.6464708,South Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,47 +311719,Pindi Meat,1,New Delhi,"1963, Nai Bank Street, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1962767,28.6494371,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,43 +1926,Punjab Sweet Corner,1,New Delhi,"15-A/65, Ajmal Khan Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1894036,28.6462267,"Fast Food, North Indian, South Indian, Chinese, Street Food, Mithai",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,236 +306392,R1 Lounge,1,New Delhi,"14-A/1, WEA, Chaana Market, Saraswati Marg, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18532767,28.64555639,"North Indian, Mughlai, Chinese",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.6,Orange,Average,31 +306338,R1 Take Away,1,New Delhi,"14-A/1, WEA, Chaana Market, Saraswati Marg, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18557075,28.64546136,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,38 +1905,Raffles,1,New Delhi,"6/78, Ajmal Khan Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1904368,28.6478036,"Fast Food, North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.1,Orange,Average,123 +300350,Raj Sweets,1,New Delhi,"8586, East Park Road, Model Basti, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.20225945,28.65795725,Mithai,150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,9 +7424,Ramas Cafe,1,New Delhi,"6/79, Padam Singh Road, WEA, Opposite Narang Sales, Naiwala, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1919134,28.6473123,"South Indian, Chinese, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,70 +1906,Sandoz,1,New Delhi,"2305, Arya Samaj Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1924134,28.6484406,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,114 +1908,Sandoz,1,New Delhi,"DB Gupta Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19053082,28.65404367,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,56 +1618,Shudh,1,New Delhi,"17-A/32, WEA Gurudwara Road, Near Metro Pillar 98, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.190378,28.645475,"North Indian, Chinese, South Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,247 +309064,Southy,1,New Delhi,"B-1/8, Below Karol Bagh Metro Station, Pusa Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1888196,28.6434385,South Indian,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,90 +1931,Spicy by Nature,1,New Delhi,"15/A 55, WEA, Saraswati Marg, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18850777,28.64772433,"North Indian, Mughlai, Chinese",900,Indian Rupees(Rs.),Yes,No,No,No,2,2.7,Orange,Average,84 +18277018,Spicy N Karara,1,New Delhi,"15/64, West Extension Area, Ajma Khan Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1892688,28.6467961,"North Indian, Chinese, Fast Food",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,93 +18425764,Spooky Sky,1,New Delhi,"Shop 62, WEA, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19650377,28.64966566,"Italian, Chinese, North Indian",650,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.4,Orange,Average,44 +1933,Sri Krishna Udupi,1,New Delhi,"12-A/20, WEA, Saraswati Marg, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1882805,28.6471494,South Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,27 +2411,Tempting Restaurant,1,New Delhi,"5/4, WEA, Near Hotel Rahul Place, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1886399,28.6470942,"Chinese, Mughlai, North Indian",750,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.7,Orange,Average,68 +18377922,The Smokin' Grill by The Flashback,1,New Delhi,"Shop 12, Apsara Arcade, Gate 7, Karol Bagh Metro Station, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18888596,28.64335635,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,23 +18138437,Three Tuns,1,New Delhi,"938/3, Ilahi Bux Marg, Hotel La Vista, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19822,28.6488288,"European, Italian, Thai, Chinese, North Indian",1400,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,30 +4655,Wah Ji Wah,1,New Delhi,"1-A, Prahlad Market, D.B. Gupta Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19013385,28.65432818,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,69 +18289258,Wow! Momo,1,New Delhi,"2816, Ajmal Khan Road, Beside Roshan Di Kulfi, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1923236,28.6504028,"Tibetan, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,41 +18198463,Wrap & Roll,1,New Delhi,"Ground Floor, B-1/8, Shop 7, Apsara Arcade, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18873441,28.6436297,"Fast Food, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,36 +300347,Anjlika Pastry Shop,1,New Delhi,"6/78, Ajmal Khan Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1904368,28.6478036,"Bakery, Desserts, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,179 +18423807,Bakeology,1,New Delhi,"795, Main Joshi Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",0,0,"Bakery, Desserts",450,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,22 +300661,Changezi Chicken,1,New Delhi,"3-A, New Rohtak Road, East Park Road, Shidi Pura, Dori Walan, Near HDFC Bank, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.20037386,28.65492631,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,456 +18349796,Chargrill Resto Bar,1,New Delhi,"4/66,1st Floor, Padam Singh Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18920581,28.64902483,"North Indian, European, South Indian",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.6,Yellow,Good,43 +306643,Chowringhee,1,New Delhi,"1/3, Pusha Road, Near Karol Bagh Metro Station, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19041716,28.64350406,Fast Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,120 +305758,Glenz Cafe N Bakers,1,New Delhi,"5/2, WEA, Saraswati Marg, Opposite Swati Hotel, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18855,28.6471752,"Cafe, Fast Food, Desserts",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,230 +18240475,Happy2Bake,1,New Delhi,"14A/33, Ground Floor, W.E.A., 2nd Gol Chakkar, Channa Market, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18687464,28.64575501,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,26 +18238241,Nazeer Foods,1,New Delhi,"Shop 71, Desh Bandu Gupta Road, Opposite PP Jewelers, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1941204,28.6521871,"Mughlai, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,27 +306071,Pakode Ki Dukaan,1,New Delhi,"120-121, Netaji Subhash Market, Ajmal Khan Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19434593,28.65306658,Street Food,50,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,35 +8864,Peshawari Chicken Corner,1,New Delhi,"33-34 B, Prehlad Market, Ramjas Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19039503,28.65448764,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,76 +9643,Prem Dhaba,1,New Delhi,"11139, East Park Road, Opposite JD Titler School, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.20031988,28.65494308,North Indian,650,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,177 +9016,Ravi Raj Di Kulfi,1,New Delhi,"Arya Samaj Road, Opposite Gaffar Market, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1901673,28.649659,Desserts,150,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,99 +300594,Shawarma King's,1,New Delhi,"14, Apsara Arcade, Near Metro Station, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18897313,28.64337636,Fast Food,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,136 +8872,Shri Rama Restaurant,1,New Delhi,"21-B/1, New Rohtak Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18914345,28.65951887,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,72 +2407,Sri Balaji,1,New Delhi,"17-A/41, WEA Gurudwara Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1907064,28.6455898,"South Indian, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,88 +7526,Standard Burfee,1,New Delhi,"2750/21, Ajmal Khan Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1928736,28.6507302,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,100 +306403,Subway,1,New Delhi,"15A/63, WEA, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1892688,28.6467961,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,118 +1301,Suruchi,1,New Delhi,"15-A/56, Ajmal Khan Road, Opposite Roopak Store, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.188527,28.647073,"Gujarati, Rajasthani, North Indian, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,603 +1904,Tera Hotel,1,New Delhi,"4, Ghaffar Market, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1911718,28.6491762,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,149 +18322672,The Diet Kitchen,1,New Delhi,"Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19195507,28.65337815,"Continental, Healthy Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,39 +5560,The Spot,1,New Delhi,"3379, DB Gupta Road, Near Police Station, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.191827,28.65317426,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,109 +307332,Wrapss,1,New Delhi,"Near City Hospital, Pusa Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.1905267,28.6435122,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,214 +311755,Wrapss,1,New Delhi,"B-1/8, Apsra Arcade, Near Karol Bagh Metro Station Gate 7, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18890373,28.64338136,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,64 +18396684,Al Naseem Foods Shawarma,1,New Delhi,"6330, Main Road, Bara Hindu Rao, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.2,28.66,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18453049,Ganpati Bhoj,1,New Delhi,"3270, Bahadurgarh Road Azad Market, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.20509924,28.66188863,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +312000,Pandit Dhaba,1,New Delhi,"Near Filmistan Studio, Rani Jhansi Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.2032841,28.6585277,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18203154,Red Chili Potato,1,New Delhi,"East Park Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.2027979,28.65867981,Chinese,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +305360,Cafe Coffee Day,1,New Delhi,"422 D, Ground Floor, Metro Station, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18823351,28.64438885,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.3,Red,Poor,32 +1923,Jade Garden,1,New Delhi,"5/66, Padam Singh Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18952768,28.64877767,Finger Food,1000,Indian Rupees(Rs.),Yes,No,No,No,3,2.4,Red,Poor,52 +8933,Art of Spices,1,New Delhi,"B-1/3, Behind City Hospital, Pusa Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19061162,28.64349552,"Fast Food, North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,841 +312003,Sindhi Corner,1,New Delhi,"Prahlad Market, Deshbandhu Gupta Road, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.19055898,28.65467653,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,74 +18446504,The Feast House,1,New Delhi,"1-B, Pusa Road, Near Karol Bagh Metro Station, Karol Bagh, New Delhi",Karol Bagh,"Karol Bagh, New Delhi",77.18803234,28.64370267,"Continental, North Indian, American, Italian, Mexican",1050,Indian Rupees(Rs.),Yes,No,No,No,3,4.3,Green,Very Good,142 +3541,Zaffran,1,New Delhi,"N-2, Greater Kailash (GK) 1, New Delhi","Kasbah, Greater Kailash (GK) 1","Kasbah, Greater Kailash (GK) 1, New Delhi",77.2329263,28.556869,"North Indian, Mughlai",2000,Indian Rupees(Rs.),No,No,No,No,4,4.5,Dark Green,Excellent,524 +189,McDonald's,1,New Delhi,"ISBT, Railway Station, Kashmiri Gate, New Delhi",Kashmiri Gate,"Kashmiri Gate, New Delhi",77.2293337,28.6676442,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,132 +18322651,Captain Grub,1,New Delhi,"Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2263032,28.5997542,"American, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.1,Orange,Average,18 +5586,M:Eat by Blanco,1,New Delhi,"53-B, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2273577,28.6005258,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,29 +303574,Omazoni,1,New Delhi,"48, Prithviraj Market, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2252919,28.6004185,"North Indian, Chinese, Mexican, Lebanese, Italian, Fast Food",650,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,120 +304628,Prabhu Chaat Bhandar,1,New Delhi,"Dholpur House, Shahjahan Road, Near UPSC Office, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2276721,28.6095619,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,242 +4624,Sugar & Spice - Le Marche,1,New Delhi,"58-A, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2270883,28.6003209,"Bakery, Fast Food",800,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,89 +1614,Big Chill,1,New Delhi,"68-A, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2274475,28.6006239,"Italian, Continental, European, Cafe",1500,Indian Rupees(Rs.),No,No,No,No,3,4.5,Dark Green,Excellent,4986 +8244,Big Chill,1,New Delhi,"35, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2275373,28.6005429,"Italian, Continental, European, Cafe",1500,Indian Rupees(Rs.),No,No,No,No,3,4.6,Dark Green,Excellent,1569 +3406,Amici Cafe,1,New Delhi,"47, Middle Lane, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2272679,28.6008757,"Cafe, Pizza, Italian",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,863 +309576,Azam's Mughlai,1,New Delhi,"1-B, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2260623,28.5999361,Mughlai,600,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,157 +4741,Boombox Cafe,1,New Delhi,"2 & 3, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2261003,28.5999579,"American, Italian, North Indian, Chinese, Lebanese",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,1428 +310674,Cafe Illuminatii,1,New Delhi,"2nd Floor, Shop 18, Inner Lane, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2269086,28.5999453,"Continental, Kashmiri, Italian, North Indian, Moroccan",2500,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.6,Yellow,Good,300 +1901,Cafe Turtle,1,New Delhi,"Shop 23, 1st & 2nd Floor, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2270883,28.600052,"Cafe, Italian, Lebanese",1000,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,574 +813,China Fare,1,New Delhi,"27-A, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2276954,28.5999935,Chinese,1000,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,243 +304989,Chokola,1,New Delhi,"67-A, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2265943,28.5997809,"Cafe, Desserts, Bakery",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,391 +300642,Cravings By Arshi Dhupia,1,New Delhi,"100, Golf Links, Near, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2279864,28.6025572,"Bakery, Desserts, Fast Food",800,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,29 +307284,Harry's Bar + Cafe,1,New Delhi,"2nd Floor, Shop 62, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2267949,28.6001414,"Mediterranean, American, Asian",1700,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,395 +844,Khan Chacha,1,New Delhi,"Shop 50, 1st Floor, Middle Lane, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2273128,28.6007455,"Mughlai, North Indian",650,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,2860 +308337,La Bodega,1,New Delhi,"1st Floor, 29-B, Middle Lane, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2275373,28.6003637,Mexican,1700,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,505 +307822,La Vie,1,New Delhi,"51-A, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.227379,28.6007115,"Italian, European",1400,Indian Rupees(Rs.),No,Yes,No,No,3,3.9,Yellow,Good,454 +3425,Latitude 28,1,New Delhi,"9, 2nd Floor, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2264353,28.5996365,"American, Continental, Italian",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.8,Yellow,Good,203 +6271,Laziz Kabab (Subhash Restaurant),1,New Delhi,"19, Prithvi Raj Market, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2259206,28.6006577,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,79 +312710,Mr. Choy,1,New Delhi,"15, Middle Lane, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2268188,28.5997575,"Seafood, Chinese, Japanese, Vietnamese, Asian, Thai",1200,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,287 +18255125,Public Affair,1,New Delhi,"67-68, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2265943,28.5997809,European,2100,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,199 +18285728,Qureshi Kabab,1,New Delhi,"L-2, Gate 4, Metro Station, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2280043,28.602474,Mughlai,450,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,17 +305686,Side Wok,1,New Delhi,"19, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2269984,28.5999538,"Burmese, Chinese, Japanese, Malaysian, Thai",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.9,Yellow,Good,372 +154,Subway,1,New Delhi,"8-C, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2260104,28.5998597,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,188 +18361747,t Lounge by Dilmah,1,New Delhi,"Flat 44, 1st Floor, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2271332,28.6010869,"Cafe, Tea, Desserts",800,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,34 +9618,The Blue Door Cafe,1,New Delhi,"66, Middle Lane, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2269577,28.5999548,"Italian, French, European, Cafe",1700,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,774 +307370,The Coffee Bean & Tea Leaf,1,New Delhi,"62, Middle Lane, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2269984,28.6000435,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,256 +307802,Town Hall,1,New Delhi,"60-61, Near Dayal Opticals, Middle Circle Lane, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2270521,28.6000351,"Japanese, Thai, Italian, Asian",2500,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,1186 +307799,Wok In The Clouds,1,New Delhi,"Shop 52, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2275373,28.6005429,"Chinese, Thai, Continental, North Indian",2000,Indian Rupees(Rs.),No,Yes,No,No,4,3.8,Yellow,Good,669 +18486842,Cafe Coffee Day,1,New Delhi,"Shop 34, Main Market, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2273075,28.6002736,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18419910,Civil House,1,New Delhi,"26, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2273577,28.6002569,"European, Continental, Pizza",1700,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,113 +4296,L'Opera,1,New Delhi,"5-B, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2261901,28.5997872,"Bakery, Desserts, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,4,Green,Very Good,518 +2632,Mamagoto,1,New Delhi,"53, 1st Floor, Middle Lane, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2275373,28.6005429,"Asian, Thai, Chinese",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,1330 +7227,Out Of The Box,1,New Delhi,"5, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2261901,28.5998768,"North Indian, Lebanese, Mexican, Asian, Italian, American, European",1550,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,1203 +18221038,Parallel,1,New Delhi,"12, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2265493,28.5997318,"Continental, American",2000,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,79 +313299,Perch Wine & Coffee Bar,1,New Delhi,"71, 1st Floor, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2261901,28.5998768,"Cafe, European",2000,Indian Rupees(Rs.),No,No,No,No,4,4.2,Green,Very Good,551 +300656,Smoke House Deli,1,New Delhi,"17, 1st Floor, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2269984,28.6000435,"Italian, European, Cafe",1650,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,1093 +313207,Smokey's BBQ and Grill,1,New Delhi,"51, 1st Floor, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2274475,28.6007136,"American, European",2100,Indian Rupees(Rs.),Yes,Yes,No,No,4,4.2,Green,Very Good,578 +309788,SodaBottleOpenerWala,1,New Delhi,"73, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2262463,28.6000106,"Parsi, Iranian",1300,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,1914 +18082237,The Artful Baker,1,New Delhi,"Shop 13-B, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2266392,28.5997404,"Bakery, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,220 +311531,The Big Chill Cakery,1,New Delhi,"Main Market, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2257861,28.5998374,"Bakery, Desserts",700,Indian Rupees(Rs.),No,No,No,No,2,4.4,Green,Very Good,912 +18273615,The Chatter House,1,New Delhi,"58, 1st & 2nd Floor, Khan Market, New Delhi",Khan Market,"Khan Market, New Delhi",77.2270883,28.6001416,"Finger Food, Italian, North Indian",1800,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,436 +17953908,Amaze Dining,1,New Delhi,"G-82, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1438291,28.6501384,"North Indian, Chinese",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,10 +305722,Amritsari Naan & Kulcha,1,New Delhi,"B-1/2, Saraswati Garden, Shani Mandir, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1391671,28.6461556,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +18430600,Bangla Sweets,1,New Delhi,"A-2, Near Metro Pillar 329, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1380354,28.6550605,"Mithai, North Indian, South Indian, Chinese, Bakery",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,13 +18441800,Bj's Lounge & Cafe,1,New Delhi,"1-5 & 6, Opposite Pillar 332, Kailash Park, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.136989,28.655071,"North Indian, Chinese",700,Indian Rupees(Rs.),Yes,Yes,No,No,2,3,Orange,Average,11 +18337965,BTW,1,New Delhi,"A-17, Tagore Market, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1371133,28.6542971,"Street Food, South Indian, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,19 +300452,Cabana's Kabab & Curry's,1,New Delhi,"I-1, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1466722,28.653603,"North Indian, Mughlai, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,73 +5590,Cafe Coffee Day,1,New Delhi,"Main Road, Metro Pillar 338, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1358371,28.6543213,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,23 +18070502,Chaap Point,1,New Delhi,"Appu Town, Near Gol Chakkar Park, Ramesh Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1316231,28.6491551,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,11 +312098,Chicken Chilli Corner,1,New Delhi,"E-361, Ramesh Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.130681,28.6489905,"Chinese, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,10 +303635,Chinese Dragon,1,New Delhi,"N-8, Opposite Kirti Club, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1406718,28.6560415,"Chinese, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,49 +302456,Copper Restro Bar,1,New Delhi,"F-37, Central Market, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1423902,28.6529002,"North Indian, Chinese, Continental",1200,Indian Rupees(Rs.),Yes,No,No,No,3,2.8,Orange,Average,15 +9549,Corner Sweets,1,New Delhi,"2 & 3, Corporation Market, Ramesh Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1330407,28.6493759,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,100 +306488,D'Casa,1,New Delhi,"Shop A-3, Kailash Park, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1379553,28.6554914,"North Indian, Chinese, Italian, Fast Food",1100,Indian Rupees(Rs.),Yes,No,No,No,3,2.7,Orange,Average,63 +302142,Delhi 15,1,New Delhi,"N-46, Scooter Market, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1407751,28.6556035,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.7,Orange,Average,45 +18350118,Dialogue Lounge & Caf,1,New Delhi,"A 21, Tagore Market, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1373231,28.6545957,"Cafe, Continental",750,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +7396,Domino's Pizza,1,New Delhi,"A-22, Ground Floor, Tagore Market, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1374776,28.6546527,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,57 +18435836,Flavours From Heaven,1,New Delhi,"Building 6, Laxmi Garden, Opposite Metro Pillar 337, Near Ramesh Nagar Metro Station, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.136123,28.6541881,"North Indian, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,12 +18277180,Flavours Of Biryani,1,New Delhi,"Ramesh Nagar, Near Kirti Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1312221,28.6474775,"Biryani, Mughlai",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,35 +18366018,Flirty Momo's,1,New Delhi,"R-361, Main Chowk, Near Tilak Market, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1306854,28.6489945,Chinese,350,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,6 +308555,Gedi Grill,1,New Delhi,"69/6-A, Najafgarh Road, Opposite Moments Mall, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.14861963,28.65784633,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,143 +306662,Green Chick Chop,1,New Delhi,"Shop 12, Old Market, Ramesh Nagar, Near Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1321064,28.6497956,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,23 +310253,Indian Bites,1,New Delhi,"G-1, Metro Station, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1501141,28.6563972,"North Indian, Chinese, Continental",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,41 +5664,Karan's Vaishno Dhaba,1,New Delhi,"B-14, Tilak Market, Ramesh Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1311592,28.6489052,North Indian,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,29 +18460329,Le Swaadik,1,New Delhi,"B17, Tilak Market, Ramesh Nagar, Near MCD Community Hall, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1313623,28.648918,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,13 +18360284,Let's Meet Up,1,New Delhi,"I-1, Shop 2, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.14399081,28.64679749,"Fast Food, Bakery",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,16 +9552,Madan's Kabab Centre,1,New Delhi,"1515, Ramesh Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1312308,28.648963,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,31 +308156,Midnight Fries,1,New Delhi,"D 40, Industrial Area, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1438903,28.6521954,"Chinese, Italian, Fast Food",550,Indian Rupees(Rs.),No,Yes,Yes,No,2,2.7,Orange,Average,46 +308189,Moradabadi Biryani,1,New Delhi,"E 361, Double Storey, Ramesh Nagar, Near, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1306799,28.6489773,"Lucknowi, Biryani",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +300448,Namdhari's Icecream & Bakers,1,New Delhi,"J-38, Near Ramesh Nagar, Najafgarh Road, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1300673,28.6522005,"Desserts, Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,23 +311944,Pahariya Chicken Corner,1,New Delhi,"Shop 2, New Market, Ramesh Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1302026,28.6484901,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +9550,Pahariya Chicken,1,New Delhi,"C-5, Tilak Market, Ramesh Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1306672,28.6489962,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,15 +18198179,Pappi Machhi Wala,1,New Delhi,"Opposite Adarsh School, Near Furniture Market, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1299154,28.6522777,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,9 +7400,Pizza Hut Delivery,1,New Delhi,"A-25, Tagore Market, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1374915,28.6546474,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,67 +309289,Polka Cakes & Coffee,1,New Delhi,"Shop 5/27, Near Gurudwara, Ramesh Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1366651,28.650206,"Fast Food, Chinese, Bakery",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,17 +18365872,Punjabi Joint,1,New Delhi,"Shop 1, 40 DLF Industrial Area, Alishan Building, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1422056,28.6553478,"Mughlai, North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,4 +9050,Rain Tree Grill,1,New Delhi,"A-8, Kailash Park, Near Metro Pillar 326, Opposite Kalra Hospital, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1384066,28.655369,"North Indian, Chinese, Mughlai",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.2,Orange,Average,74 +18366011,Resunga Food Corner,1,New Delhi,"Shop 24, Tilak Market, Near Gol Chakkar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1317062,28.6494447,"Chinese, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +305720,Shri Ram Poori Wale,1,New Delhi,"Near Metro Pillar 316, Najafgarh Road, Ramesh Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1407866,28.6570621,Street Food,50,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,8 +4036,Supa's Restaurant,1,New Delhi,"H-31, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.142172,28.6506233,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.2,Orange,Average,50 +5658,Swad Fast Food,1,New Delhi,"34A, Single Storey, Ramesh Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.13043333,28.65249167,"Chinese, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,16 +5659,Syall Kotian Da Dhaba,1,New Delhi,"45-46, Banda Bairagi Market, Ramesh Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1313127,28.6489309,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,20 +18265677,The Krib,1,New Delhi,"A-8, Kailash Park, Near Metro Pillar 326, Opposite Kalra Hospital, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1384406,28.6557286,"Italian, Continental",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,14 +309998,Turtle Bay,1,New Delhi,"Plot 8, Laxmi Garden, Opposite Metro Pillar 337, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1362569,28.6543517,"North Indian, Chinese, Fast Food",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,74 +18201995,Yakooz,1,New Delhi,"C-7, Tilak Market, Major Pankaj Batra Marg, Block 6, Sharda Puri, Ramesh Nagar, Near Kirti Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.130674,28.6489739,"Hyderabadi, North Indian",550,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,20 +306245,Above & Beyond,1,New Delhi,"A 22-23, 1st Floor, Tagore Market, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1375537,28.6546314,"North Indian, Chinese, Mughlai, Continental",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,133 +306168,Bawa Chicken,1,New Delhi,"42, DLF Industrial Area, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1428519,28.6552663,"North Indian, Mughlai, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,98 +18365996,Chatore,1,New Delhi,"Shop 2, I-78, Main Market, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1438814,28.6521899,Street Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,26 +311448,Chocomore,1,New Delhi,"2nd Floor, F 40, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",0,0,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,68 +303350,Clay 1 Grill,1,New Delhi,"A-10, 1st Floor, Najafgarh Road, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1394952,28.6555949,"North Indian, Mughlai",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,283 +18378056,Firangi Island,1,New Delhi,"62, Rama Road, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1519824,28.6575383,"North Indian, Chinese, Continental, Italian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,21 +9513,Jeet Chaat Bhandar,1,New Delhi,"Opposite Metro Pillar 367, Near Red Light, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.129287,28.6518949,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,23 +18303704,Mr. Grill,1,New Delhi,"Shop 4, A-1, Ground Floor, Kailash Park, Near Metro Pillar 330, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1374755,28.6554434,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,55 +308111,Tikka Junction,1,New Delhi,"N-40, Opposite Scooter Market, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1409427,28.6559956,"North Indian, Chinese",750,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,102 +312922,Momos Hut & Chinese Food,1,New Delhi,"6, Single Storey, Ground Floor, Near Gurudwara Singh Sabha, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1367382,28.6503488,"Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,20 +3918,Wah Ji Wah,1,New Delhi,"B-6/1, Double Story, Near Metro Pillar 371, Ramesh Nagar, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1284425,28.6517775,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,2.1,Red,Poor,54 +308784,Yo! China,1,New Delhi,"Shop 5, 2nd Floor, Food Court, Moments Mall, Kirti Nagar, New Delhi",Kirti Nagar,"Kirti Nagar, New Delhi",77.1466423,28.6568197,Chinese,800,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,39 +2316,Aapki Apni Rasoi,1,New Delhi,"F 20/10 Mandir Marg, Near Goyal Book Depot, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2862616,28.661112,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +2315,Aapki Rasoi,1,New Delhi,"F 20/10 Mandir Marg, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2861883,28.6611167,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,15 +313307,Advance Bakery,1,New Delhi,"A-8, Shivpuri, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",0,0,"Bakery, Fast Food, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +301208,Apni Rasoi,1,New Delhi,"A-45/2, Swana Cinema Road Main Chowk, East Azad Nagar, Near Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.284295,28.66551167,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,16 +18386203,Bakeyard,1,New Delhi,"26A South Anarkali Extension Opposite Community center, Baldev Park, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",0,0,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18258507,Bharat Chicken Inn Foods,1,New Delhi,"157, Jheel Khuranja, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.27581099,28.65854624,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,9 +313091,Bobby Veg Corner,1,New Delhi,"F-1/1, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.24231,28.57606,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +313381,Brunch Point,1,New Delhi,"B-15, Opposite Khandelwal Hospital, East, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2821,28.65905,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +301201,Bunty Dhaba,1,New Delhi,"410, Jheel Khuranja, Opposite 310 Bus Stop, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.273111,28.6590466,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,50 +309496,Chandni Chowk Ka Sonu Parathe Wala,1,New Delhi,"Opposite Jheel Khuranja Bus Stop, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2722581,28.658652,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +2297,Chankya,1,New Delhi,"C-6/1, Mandir Marg, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2815054,28.6593514,"North Indian, Fast Food, South Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,79 +305003,Chaudhary Di Hatti,1,New Delhi,"4, Post Office Block, Near Arya Samaj Mandir, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2814976,28.6602651,"Desserts, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,20 +306310,Cook Du Kdu,1,New Delhi,"B-15, Near Shri Ram Singh Hospital, East Krishna Nagar, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2882675,28.65986279,"North Indian, Chinese, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,52 +18332058,Daawat Restaurant,1,New Delhi,"D-3/11, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.280646,28.65981866,"North Indian, Chinese, South Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,26 +18128895,Delhi Dairy,1,New Delhi,"D-10, Main Kanti Nagar Market, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",0,0,"Fast Food, North Indian, South Indian, Chinese, Bakery",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,11 +312747,Domino's Pizza,1,New Delhi,"Ground Floor, 10, Shiv Puri, Main Patparganj Road, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2778171,28.6522731,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,13 +6128,Domino's Pizza,1,New Delhi,"K-74/A, Chachi Building, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2788164,28.66104399,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,75 +304994,F 2 Pastry Shop,1,New Delhi,"4 Post Office Block, Near Rupa Ice Cream Parlour, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2812826,28.6602119,"Bakery, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,26 +313132,Food Villa,1,New Delhi,"A-5/18 Krishna Nagar, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.27833997,28.65951181,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,10 +18423095,Goosebumps,1,New Delhi,"11, Shivpuri, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2779662,28.6523602,"Ice Cream, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,6 +18378024,Gulab,1,New Delhi,"F-3/18, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2836334,28.6592567,"Mithai, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,12 +313508,Health Buzzz,1,New Delhi,"F-9/19, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.285347,28.65975,Healthy Food,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,22 +301213,Jain Dhaba,1,New Delhi,"412/C, Jheel Kuranja, Opposite 310 Bus Stop, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2723274,28.6589025,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,30 +8293,Jeeta Kulfi Walle,1,New Delhi,"D 3/1, Lal Quarter, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.279894,28.6596933,Desserts,100,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,12 +309495,Kamal Meat House,1,New Delhi,"420/2, Jheel Khuranja Chowk, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2725723,28.6577411,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,15 +305565,Katyani Rasoi,1,New Delhi,"14/13, Near Happy English School, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2767835,28.652309,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +309489,Magic Masala,1,New Delhi,"C-7/1, Mandir Marg, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2819196,28.6593873,"North Indian, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,11 +3772,Masala Magic,1,New Delhi,"C-1/10, Lal Quarters, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2815369,28.6592597,"North Indian, South Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,16 +301204,Mother Sweets,1,New Delhi,"H-9, Vijay Chowk, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2843782,28.6579219,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,15 +18421495,Panj Taara,1,New Delhi,"C 1/10, Lal Quarter, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2805179,28.6573761,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,8 +306656,Prince Fried N Grilled Chicken,1,New Delhi,"Shop 3, Block C, Shivpuri, Main Patparganj Road, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2776449,28.652892,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,18 +18126085,Punjabi's Veg Grill,1,New Delhi,"Shop 2, F-1/9, Lal Quarter, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2829867,28.6598057,"North Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +308942,Raja Chat Corner,1,New Delhi,"2/18, F Block, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2836092,28.6592244,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,20 +309254,Rajshree,1,New Delhi,"C 1/9, Red Quarter, CCN Building, Main Market, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2806076,28.6573846,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,16 +301417,Sachdeva Chicken Corner,1,New Delhi,"Main Khureji Khas Road, Jheel Khuranja, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2750291,28.6583725,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,39 +301203,Shree Rathnam,1,New Delhi,"251/3, Post Office Block, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2814156,28.6602389,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,66 +18014143,Sialkot,1,New Delhi,"13-A, Shivpuri, Opposite 14 Block, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2781836,28.6515992,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +309793,Singh-O-Singh Kebabs,1,New Delhi,"32, Satnam Park, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.28203908,28.65563419,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,54 +6131,Super Snacks,1,New Delhi,"Main Market, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2794854,28.6595627,"South Indian, Fast Food, Street Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,44 +309498,Tandoori Night,1,New Delhi,"153, Jheel Khuranja Main Road, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.27633871,28.6588784,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,15 +1274,The Chaupal Bar And Restaurant,1,New Delhi,"F3/11, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2833907,28.6598889,"Chinese, North Indian",800,Indian Rupees(Rs.),Yes,No,No,No,2,2.9,Orange,Average,14 +18431416,The Grill Point,1,New Delhi,"A-2, Krishna Nagar Extension, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",0,0,"Chinese, Mughlai, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +309481,The Roll Hut,1,New Delhi,"439, Near Bank of Baroda, Jheel Khurenja, Near Pal Motors, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2738859,28.6580718,"Chinese, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,13 +301207,Triveni,1,New Delhi,"472 B, Dayanand Marg, Jheel Khuranja, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2731712,28.6565918,"North Indian, South Indian, Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,31 +18409201,Gokul Foods,1,New Delhi,"11, Shivpuri, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2780041,28.6519405,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,22 +308938,Papa Pizza,1,New Delhi,"J-2/1 , Near Pragati Eye Center, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2855453,28.6575847,"Pizza, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,21 +18282453,Aalishaan,1,New Delhi,"59, Indra Park Extension, Som Bazar Road, Near, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.28353441,28.65124712,"Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18434966,Amritsari Chaat Bhandar,1,New Delhi,"D-3/1, Lal Quarter, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",0,0,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18349764,Bansal Foods,1,New Delhi,"Near Police Chowki, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",0,0,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18421474,Bhatia Chinese Food,1,New Delhi,"9, Satnam Park, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2821467,28.6551369,"Chinese, South Indian, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18377904,Break Fast Junction,1,New Delhi,"32, Satnam Park, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.28215106,28.65558682,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421482,Breakfast Hut,1,New Delhi,"29, Satnam Park, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2822453,28.6555214,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18433869,Buddy 's. Pizza,1,New Delhi,"F1/1, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2825524,28.660629,Pizza,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18376495,Chai Garam,1,New Delhi,"E-7A/10, Sethi Chowk, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.28349753,28.65748122,"Beverages, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +309483,Deepu Fish & Chicken,1,New Delhi,"A 11, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2762894,28.6588582,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18217428,deliKitchen,1,New Delhi,"Baldev Park, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",0,0,"North Indian, Chinese, South Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18323446,Dial A Cake,1,New Delhi,"C-1/15, Lal Quarter, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.28099915,28.65655592,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,2 +18423892,Fuel Diet Cafe,1,New Delhi,"F-2/35, Vijay Chowk, Near Shiv Chowk, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2842188,28.6576075,Healthy Food,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18432000,GO CHATZ With Breadz,1,New Delhi,"D6/9, Lal Quarter, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2808326,28.6590094,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18261956,Goldy Chat Bhandar,1,New Delhi,"X/3478, Street 4, Raghubarpura Main Road, Near Shani Mandir, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.28,28.66,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18378017,Green Chick Chop,1,New Delhi,"A-4/17, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.27822732,28.65948063,"Raw Meats, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18126099,Hungry Heights,1,New Delhi,"Shop 5, F-1/9, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2815094,28.6602512,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18423101,Kebabish,1,New Delhi,"7/1, Shivpuri, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2777796,28.6525016,North Indian,550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18376513,Khalsa Dhaba,1,New Delhi,"Jheel Kuranja, Opposite 310, Bus Stop, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2730949,28.6590094,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18432218,Khanna's Hot Pizza,1,New Delhi,"Shop 5, F-1/9, Lal Quarter, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2829523,28.6597564,Pizza,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18255168,Lets Eat Veg,1,New Delhi,"C-7/1, Mandir Marg, Lal Quarter Market, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2820172,28.6594361,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18384143,Mitra Da Dhabha,1,New Delhi,"2 Shiv Puri, Patparganj Road, Near Abhishek Banquet Hall, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",0,0,"Mughlai, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18222598,Murliwala Bakers,1,New Delhi,"1, New Govind Park, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.285269,28.651044,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18431979,Panjabi Chic-Shoppe,1,New Delhi,"F3/10, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2833009,28.65997,"Raw Meats, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +313225,Raj Petha Bhandar,1,New Delhi,"C8/1, Mandir Marg, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2833458,28.660019,Mithai,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18423103,Ramlal Sweets,1,New Delhi,"C 5, Shivpuri, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2777667,28.6530845,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +308940,Sanjha Chula Baba Da,1,New Delhi,"F-2/9, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2832005,28.6600095,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18433871,Sri Krishna,1,New Delhi,"F-2/9, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.2831828,28.659873,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +308928,Sugandh Corner,1,New Delhi,"F-4/35, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.28492778,28.65814167,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18469838,The Friends Cafe,1,New Delhi,"F-2/1, Labour Chowk, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",0,0,"Chinese, Italian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18458342,The Muffin Girl,1,New Delhi,"C-3/2, Krishna Nagar, New Delhi",Krishna Nagar,"Krishna Nagar, New Delhi",77.28106979,28.6578175,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18382338,Rainbows,1,New Delhi,"Ground Floor, F 313/842, Lado Sarai, New Delhi",Lado Sarai,"Lado Sarai, New Delhi",77.195496,28.523803,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,10 +17977751,The Nest,1,New Delhi,"Qutab Golf Course, Lado Sarai, New Delhi",Lado Sarai,"Lado Sarai, New Delhi",77.1939597,28.5291758,"Continental, Italian, North Indian",2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,218 +18382373,Burger Head Quarter BHQ,1,New Delhi,"F 21, Lado Sarai, New Delhi",Lado Sarai,"Lado Sarai, New Delhi",77.1922337,28.5278024,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18485936,Chez Jerome - Q Cafe,1,New Delhi,"344/3, 4th Floor, Lado Sarai, New Delhi",Lado Sarai,"Lado Sarai, New Delhi",0,0,"Cafe, French",1500,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,1 +18415370,Mr. Billiken,1,New Delhi,"F-703, Lado Sarai, New Delhi",Lado Sarai,"Lado Sarai, New Delhi",77.1941204,28.5278927,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18363216,Mulligan Cafe,1,New Delhi,"Press Enclave Marg, Lado Sarai, New Delhi",Lado Sarai,"Lado Sarai, New Delhi",0,0,"South Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18472689,Naya Adda,1,New Delhi,"Near 'Made Easy', Lado Sarai, New Delhi",Lado Sarai,"Lado Sarai, New Delhi",77.1918882,28.5280987,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18385727,OCD - Online Cake Delivery,1,New Delhi,"M-395, Lado Sarai, New Delhi",Lado Sarai,"Lado Sarai, New Delhi",77.1954089,28.5231188,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18414508,Puja Sandwich House,1,New Delhi,"F-291/64, MB Road, Lado Sarai, New Delhi",Lado Sarai,"Lado Sarai, New Delhi",77.1954681,28.5231802,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +9571,Ambersari Dhaba,1,New Delhi,"C-125, Near Flyover Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.23905969,28.57857977,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,44 +313491,Arabian Knites,1,New Delhi,"B-206, Krishna Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24256869,28.57548265,"Cafe, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,7 +18260714,Aryan's Rajasthani Pyaz Ki Kachori,1,New Delhi,"177, E Block, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24,28.58,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,4 +310344,Aviram's Chinese Kitchen,1,New Delhi,"E- 196, Krishna Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.2428349,28.57509517,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,4 +9875,Bhagwan Sweets,1,New Delhi,"25, Krishna Market, Near Gurudwara Singh Sabha, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24261798,28.57557569,"Mithai, North Indian, Chinese, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,8 +18396161,Chawla,1,New Delhi,"E 178, Ground Floor, Krishna Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24215731,28.57518762,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,7 +9572,Chinese Hut,1,New Delhi,"C-222, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24129397,28.57850528,"Chinese, Fast Food",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,56 +18371289,Flavourz,1,New Delhi,"Shop 1D-177, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.242238,28.578557,Fast Food,150,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,6 +18356840,Lets Bake Love,1,New Delhi,"A 155, Near Samara Honda, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.240304,28.573524,"Bakery, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +303784,Mahadev Dhaba,1,New Delhi,"47, Krishna Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24246509,28.57534897,North Indian,100,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,10 +9906,Sethi's Food Corner,1,New Delhi,"37, Krishna Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24189311,28.57523591,"Chinese, North Indian",550,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,40 +305581,Sethi's Restaurant,1,New Delhi,"C-95, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24015605,28.57749657,"North Indian, Chinese, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,49 +9588,Sindhi Kulfi,1,New Delhi,"Lal Sai Market, Near Tiwari Sweets, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24651657,28.56557384,"Desserts, Ice Cream",100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +312798,Sri Kamakshi Vilas,1,New Delhi,"B-223, Krishna Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24151291,28.57573998,"South Indian, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,9 +18361738,The Midnight Hub - C,1,New Delhi,"G-16, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.245041,28.57453,"North Indian, Chinese, Fast Food",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,102 +9579,Anand Ji,1,New Delhi,"3, Krishna Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24148139,28.57535368,"North Indian, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,183 +309816,Happy Hakka,1,New Delhi,"A-117, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.23999545,28.57443534,"Chinese, Asian, Thai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,270 +307283,Oberoi's,1,New Delhi,"D-166, Shop 3, Near Railway Crossing, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.23870397,28.57748273,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,75 +311150,Relax Restaurant,1,New Delhi,"E-86, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24144083,28.57326317,"North Indian, Mughlai",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.5,Yellow,Good,116 +18294237,Al-Rihan,1,New Delhi,"Shop 10, Krishna Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24159539,28.57591488,Mughlai,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18455557,All Day 99,1,New Delhi,"48, Krishna Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.2377796,28.575746,"North Indian, Chinese, South Indian",250,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +18425773,Anna Dosa,1,New Delhi,"Shop 8, Krishna Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.2415063,28.5752885,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +310358,Chick Chicken House,1,New Delhi,"A 88, Near Desu Office, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.23935641,28.57287833,"Raw Meats, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18425161,Chicken King,1,New Delhi,"Ground Floor, C-196, Near Railway Fatak, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.2410469,28.5786022,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +308704,Choco Kraft,1,New Delhi,"C-107, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.23900907,28.57783516,"Bakery, Desserts",300,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,2 +18323603,Cocoalicious Delights,1,New Delhi,"I-54, First Floor, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",0,0,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18025089,FNV,1,New Delhi,"C-118, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.23922364,28.57852765,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18264993,Food En Vouge,1,New Delhi,"C-118, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.23921526,28.5786572,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,0 +18429151,Food Junction,1,New Delhi,"27, Main Market, Nehru Nagar, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.2533595,28.5690147,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18429161,Gian Ji Punjabi Dhaba,1,New Delhi,"43, Main Market, Nehru Nagar, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.2529469,28.569441,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18425781,Govinda,1,New Delhi,"E-196B, Krishna Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.2430561,28.5751889,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18446391,Intermission,1,New Delhi,"Shop 1, D-166, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.23870397,28.57748273,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +18481310,Karma Cafe & Lounge,1,New Delhi,"B-206, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.2393918,28.5753454,"North Indian, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,1 +18425777,Lotes Bakes,1,New Delhi,"Shop 55, Krishna Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.2427407,28.5753441,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,0 +18429157,New Anna Ka Dosa,1,New Delhi,"42, Main Market, Near Gurudwara, Nehru Nagar, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.2529979,28.5694893,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18265712,New Sethi's,1,New Delhi,"E-209, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24355239,28.57387443,"Mughlai, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +9599,Punjab Sweets,1,New Delhi,"C-222, Near Railway Crossing, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24115785,28.57857859,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18425148,Shri Ram Dhaba,1,New Delhi,"Shop 18, Krishna Market, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.2423223,28.5755255,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18265724,Standard Punjabi Food,1,New Delhi,"E-93, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.24150252,28.57324197,North Indian,200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +18458659,Sunrise Bakery,1,New Delhi,"C-96, Ground Floor, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",0,0,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424905,Taste of Spice,1,New Delhi,"C-222, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",77.2413122,28.5783107,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,0 +18410302,The Celiac Kitchen,1,New Delhi,"C-53/54, Lajpat Nagar 1, New Delhi",Lajpat Nagar 1,"Lajpat Nagar 1, New Delhi",0,0,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +7856,Aggarwal Sweet Corner,1,New Delhi,"J-35 B, Central Market, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2437034,28.5690093,"North Indian, Chinese, Street Food, Mithai",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,22 +18365894,Behrouz Biryani,1,New Delhi,"Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2433442,28.569244,Biryani,600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,32 +18441523,Biryani Blues,1,New Delhi,"Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2464874,28.5668537,"Biryani, Hyderabadi",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.1,Orange,Average,8 +18400728,Burger King,1,New Delhi,"J-2, 25AB, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2430012,28.5693419,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,45 +310345,Domino's Pizza,1,New Delhi,"D/34, Plot 11, Ground Floor, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.241099,28.5701061,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,47 +9596,Gopal (Sindhi) Restaurant,1,New Delhi,"1 & 2, Lal Sai Market, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.246667,28.5659744,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,59 +302577,Kabul Delhi,1,New Delhi,"I-83, Central Market, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2445117,28.5702514,Afghani,550,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,39 +18334458,Khan Chacha,1,New Delhi,"D35, Ground Floor, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.241099,28.5701061,"Mughlai, North Indian",650,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,31 +4847,Pizza Hut Delivery,1,New Delhi,"K-95, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2466986,28.5674166,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,54 +2601,Punjabi Jaika,1,New Delhi,"C-57, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2380758,28.5716356,"North Indian, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,40 +3490,Rozy Restaurant,1,New Delhi,"J-23 A, Central Market, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2428952,28.5694702,"North Indian, South Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,50 +18349930,Taj Cafe,1,New Delhi,"3rd Floor, I-2, Central market, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.243883,28.5693849,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,18 +7735,Tewari Sweets,1,New Delhi,"O-3/20, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2462179,28.5666488,"Mithai, North Indian, South Indian, Chinese, Street Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,33 +301239,The Burger Hut & Cake Shop,1,New Delhi,"C-160, Near Roxy Drycleaner, Central Market, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.24065,28.571408,"Burger, Fast Food, Chinese, Bakery",300,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,41 +7861,Angel's Basket,1,New Delhi,"C-152, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2403585,28.5714391,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,70 +491,Bikanervala,1,New Delhi,"A-80, Central Market, Near Axis Bank, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2390334,28.5710749,"North Indian, South Indian, Fast Food, Street Food, Chinese, Beverages, Desserts, Mithai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,269 +553,Haldiram's,1,New Delhi,"45, Ring Road, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2384048,28.5650991,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,472 +18426285,Moon of Taj,1,New Delhi,"I-29A, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2430159,28.5702313,Desserts,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,21 +18345810,Tongue Thai'd,1,New Delhi,"C-12, Ground Floor, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2393235,28.5710548,"Asian, Thai",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.7,Yellow,Good,57 +7906,Udupi Sai Sarover,1,New Delhi,"A-91B, Central Market, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2398417,28.5703451,"North Indian, South Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,63 +311593,Wagh Bakri Tea Lounge,1,New Delhi,"C-15, Ground Floor, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2392131,28.5711817,Cafe,550,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,54 +18466740,K2 Multi Cuisine Restaurant,1,New Delhi,"A-44, 1st Floor, Lajpat Nagar 2, New Delhi",Lajpat Nagar 2,"Lajpat Nagar 2, New Delhi",77.2373271,28.5717193,"North Indian, Mughlai, Nepalese, Tibetan, Korean",1000,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,2 +1533,Tibet Kitchen,1,New Delhi,"G-15, Old Double Storey, Lajpat Nagar 4, New Delhi",Lajpat Nagar 4,"Lajpat Nagar 4, New Delhi",77.2452301,28.5638657,"Tibetan, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,515 +9529,Baba Nagpal Corner,1,New Delhi,"7/25, Old Double Storey, Gupta Market, Lajpat Nagar 4, New Delhi",Lajpat Nagar 4,"Lajpat Nagar 4, New Delhi",77.24065,28.5637888,"North Indian, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,577 +311466,Burger Street,1,New Delhi,"C 7/191, Keshav Puram, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.158043,28.6920346,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,32 +5358,Dilli Zaika,1,New Delhi,"B-4/96 A, Keshavpuram, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.1598506,28.6897195,"Fast Food, South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,23 +301532,Mughal Chic Inn,1,New Delhi,"Near Petrol Pump, Hatoda Ram Park, Main, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.1580879,28.6862629,"Mughlai, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,23 +18336529,Nutrition Theka,1,New Delhi,"Shop A-4, Block B-4, Keshav Puram, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.1597056,28.6889256,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,12 +301530,Punjabi Chaap Corner,1,New Delhi,"B-4/317 A, Keshav Puram, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.1613602,28.689127,"North Indian, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,20 +18317975,Samosa Street,1,New Delhi,"2149, Old Bus Stand, Tri Nagar, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.1576386,28.6916824,"Fast Food, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,7 +18469935,Shanu's Chicken Planet,1,New Delhi,"1, Block C8, DDA Market, Keshav Puram, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.16032244,28.69054589,"North Indian, Mughlai, Chinese, Italian",450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,11 +300874,Shanu's Food Shop,1,New Delhi,"3, Block C8, DDA Market, Keshav Puram, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.1602156,28.6906395,"North Indian, Chinese, Fast Food",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,13 +18357561,Bigbee,1,New Delhi,"Shop A5, B4, DDA Market, Keshavpuram, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.158043,28.6916764,Bakery,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18445793,Delhi 6 Cafe,1,New Delhi,"C-7/85, Near Mother Dairy, Keshav Puram, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.1577799,28.690152,"Chinese, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18458348,Lala Ji Sweets,1,New Delhi,"Shop 2829/208, Old Bus Stand, Tri Nagar, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",0,0,"Mithai, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449646,MK's Chinese Food,1,New Delhi,"Shop 19, A-1 Block, DDA Market, Keshav Puram, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.1555845,28.6834348,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18445784,Nirvana The Divine Kitchen,1,New Delhi,"B-4, 1st Floor, DDA Market, Keshav Puram, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.1595266,28.6889287,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18378861,Preechen,1,New Delhi,"Keshav Puram, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.1576386,28.6918615,"North Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +301677,Rahul Eggs,1,New Delhi,"B-4/300 A, Main Road, Near Keshavpuram Metro Station, Near, Lawrence Road, New Delhi",Lawrence Road,"Lawrence Road, New Delhi",77.1627161,28.68711,"Fast Food, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,4.2,Green,Very Good,762 +8537,7 Stick,1,New Delhi,"D-32, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2791263,28.631572,"Pizza, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,8 +18268367,Aashirwad Restaurant,1,New Delhi,"B-125, Mangal Bazar Road, Guru Nanak Pura, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2846422,28.6367385,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,5 +18244534,Amar Bakery,1,New Delhi,"72-B, Vikas Marg, Opposite Metro Pillar 50, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2828507,28.6340688,"Fast Food, Mithai, Bakery",250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,13 +8517,Apni Rasoi,1,New Delhi,"A2, Ganesh Nagar, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2776898,28.6307187,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,24 +310653,Baked Buns,1,New Delhi,"6/276, Lalita Park, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2731602,28.6301736,Fast Food,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,18 +312479,Banspi,1,New Delhi,"L-25, Vijay Chowk, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2787671,28.634047,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,13 +18222593,Benchmark,1,New Delhi,"D-323, Street 11-12, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2761595,28.6305918,"Chinese, Continental, Mexican",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,14 +2012,Bobby Tikki Wala,1,New Delhi,"D-100, Vikas Marg, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2784272,28.631536,Street Food,250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,74 +6265,Cafe Coffee Day,1,New Delhi,"G 4, Sikka Galaxy, ISC, Shrestha Vihar, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2855554,28.6363729,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,18 +9829,Cafe Coffee Day,1,New Delhi,"A 47, Ground Floor, Gurunanak Road, Opposite V3S Mall, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2866228,28.6366215,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,14 +311949,Canteeno,1,New Delhi,"D-61, Gali 3, Opposite Pillar 31, VIkas Marg, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.278285,28.6315528,"North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +18421027,Chai Mantra,1,New Delhi,"Opposite Laxmi Vaishno Dhaba, Jawahar Park, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2813009,28.6342002,"Fast Food, Beverages",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +304957,Chandni Chowk ke Mashhoor Makkhan Wale Paranthe,1,New Delhi,"8, CR Road, Near Laxmi Nagar Metro Station, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2791263,28.6333642,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,9 +305948,Chandni Chowk Parantha Corner,1,New Delhi,"10, Latika Park, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2773248,28.6312335,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +306113,Chauhan Laxmi Sweets,1,New Delhi,"D Block Market, Lalita Park, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2754966,28.6306728,Mithai,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,11 +305987,Chawla's The Cake Room,1,New Delhi,"6, Krishan Kunj, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2794854,28.6398502,"Bakery, Fast Food, Beverages",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,17 +4935,China Town,1,New Delhi,"F-169/A, Main Market, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2791124,28.6376483,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,11 +313265,Domino's Pizza,1,New Delhi,"1st Floor, D-32, Plot 7-9/A, Near Sai Mandir, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2787671,28.6318963,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,46 +18414470,Faasos,1,New Delhi,"A-160, Near Laxmi Nagar Metro Pillar 41 & 42, Vikas Marg, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2817105,28.6341612,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,10 +18377903,Fast Trax,1,New Delhi,"Opposite V3S Mall, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2842251,28.6386148,Fast Food,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,4 +300729,Finger Licious,1,New Delhi,"A-72, Near Laxmi Nagar Metro Station, Guru Nanak Pura, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2850649,28.6356053,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,188 +9850,Gulshan Pastry Shop,1,New Delhi,"A 73, Silver Complex, Shakarpur, Madhuban Chowk, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2853555,28.6358385,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,9 +4939,Handa's,1,New Delhi,"292, Near Radhu Palace Cinema, West Guru Angad Nagar, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2830396,28.6405769,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,8 +18416369,Homely Delight,1,New Delhi,"J 3/126, Kishankunj, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2827592,28.6391685,"Mughlai, Biryani",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +311194,Jahangeer Foods,1,New Delhi,"B-44, Guru Nanak Pura, Near V3S Mall, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2846595,28.637565,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,64 +1205,Kaleva,1,New Delhi,"17, Shanker Vihar, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2889229,28.6378972,"North Indian, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,61 +305949,Laxmi Vaishno Dhaba,1,New Delhi,"E - 24, Jawahar Park, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2832549,28.6346399,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,13 +18400760,Little Pleasure Restaurant & Cafe,1,New Delhi,"D 223, Shop 58, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2776898,28.6307187,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,7 +18372696,Mauryan Multi Cuisine Restaurant,1,New Delhi,"A-6, Priya Darshani Vihar, Near Makkar Hospital, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2825534,28.6413024,"North Indian, Chinese",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,31 +9849,Mehta Food Junction,1,New Delhi,"434/113, Veer Savarkar Block, Shakarpur, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2846148,28.635231,"North Indian, South Indian",300,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,8 +305298,Om Bikaner Wale,1,New Delhi,"A-64, Vikas Marg, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2841775,28.6352991,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,8 +18451584,Ovenstory Pizza,1,New Delhi,"Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.281315,28.632793,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,17 +18291212,Prasadam,1,New Delhi,"G-57, Vikas Marg, Near Walia Nursing Home, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2807048,28.6328809,"South Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,34 +6072,Priyanshi Fast Food,1,New Delhi,"H 43, Laxmi Nagar, New Delhi Lado Sarai",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2798618,28.6321211,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,29 +308253,Punjabi Tadka,1,New Delhi,"Shop 4, Gali 2, West Guru Angad Nagar, Main Market, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2791913,28.639466,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,21 +18354257,Pyaali,1,New Delhi,"1st Floor, 72 A, Opposite Metro Pillar Number 50, Vikas Marg, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.28276461,28.63415519,"Fast Food, Tea",200,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,7 +6095,Ruby Dhaba,1,New Delhi,"G 576, Khureji Khas, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2794854,28.645585,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,25 +305942,Shree Manakamna Fast Food,1,New Delhi,"267, Ek Minar Masjid Road, Lalita Park, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2732552,28.6300597,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,31 +18208895,The Chinese Hut,1,New Delhi,"M-134, Jagat Ram Park, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2759194,28.6351409,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +309190,The Chinese Hut,1,New Delhi,"Shop 9, West Guru Angad Nagar, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2791371,28.6393449,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,23 +18472702,The Chinese Kitchen,1,New Delhi,"F-11, Shop 10, Vijay Chowk, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",0,0,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +311331,Twenty Four Seven,1,New Delhi,"E-371, Nirman Vihar, Near, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2882664,28.6370646,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,13 +18418242,Vegie Kitchen,1,New Delhi,"Shop 3, Krishan Kunj, Main Market, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2798445,28.6391674,"Chinese, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +18365372,Behrouz Biryani,1,New Delhi,"Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2813556,28.6342182,Biryani,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,22 +18415367,Burger King,1,New Delhi,"F-15 ,Vijay block, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2838434,28.634669,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,66 +18382755,Mohit di Hatti,1,New Delhi,"93-B,Guru Ram Das Nagar, Main Market, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2787671,28.6390651,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,70 +312385,Play Pizza,1,New Delhi,"Shop 2, DDA Market, Opposite V3S Mall, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2859338,28.6368181,"Italian, Pizza",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,270 +18345730,Sushiya Express,1,New Delhi,"L 49, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.285893,28.6355744,"Sushi, Asian",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,40 +312639,Tantrum Coffee Bar,1,New Delhi,"Near Nirman Vihar Metro Station, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2868134,28.6378437,"Cafe, Pizza",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,54 +18381652,Chawla's Tandoori Junction,1,New Delhi,"G1,2,3, Metroplex East Mall, Old Radhu Palace, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2836758,28.6398892,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18440186,Chennai Express Greens,1,New Delhi,"U-135, Near Laxmi Nagar Metro Station, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2773871,28.6306676,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421464,Omi Pizza,1,New Delhi,"D 3/93, Near Laxmi Nagar Metro Station, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2762533,28.6302238,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18440394,South Indian & Chinese Fast Food,1,New Delhi,"U-112, B/ 1, Vikas Marg, Near Laxmi Nagar Metro Station, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2777733,28.6302006,"South Indian, Chinese, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441680,The Khoj Cafe Restaurent,1,New Delhi,"Galli 11-12, D-324, Lalita Park, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2762533,28.6302238,"Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +6122,Bharat Chicken Inn,1,New Delhi,"G-1, CSC, Pankaj Plaza, DDA Market, Near Nirman Vihar Metro Station, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2863012,28.6368165,"Mughlai, Fast Food, North Indian",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,41 +584,Nathu's Sweets,1,New Delhi,"F-17, Vijay Block, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2835016,28.634547,"North Indian, South Indian, Street Food, Chinese, Fast Food, Mithai",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.1,Red,Poor,121 +4725,Wah Ji Wah,1,New Delhi,"B-35, Gurunanak Pura, Near V3S Mall, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2850298,28.6371081,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.2,Red,Poor,120 +18070486,QD's Restaurant,1,New Delhi,"A-47, GuruNanakpura, Near Nirman Vihar Metro Station, Laxmi Nagar, New Delhi",Laxmi Nagar,"Laxmi Nagar, New Delhi",77.2856137,28.6363985,"Chinese, North Indian, Fast Food, Italian",800,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,675 +3943,Henri's Bar - Le Meridien,1,New Delhi,"Le Meridien, Windsor Place, Janpath, New Delhi","Le Meridien, Janpath","Le Meridien, Janpath, New Delhi",77.2185552,28.6187736,Finger Food,2000,Indian Rupees(Rs.),No,No,No,No,4,3.3,Orange,Average,20 +3246,Le Belvedere - Le Meridien,1,New Delhi,"Le Meridien, Windsor Place, Janpath, New Delhi","Le Meridien, Janpath","Le Meridien, Janpath, New Delhi",77.2185552,28.6188632,Chinese,5000,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,114 +4380,Longitude - Le Meridien,1,New Delhi,"Le Meridien, Windsor Place, Janpath, New Delhi","Le Meridien, Janpath","Le Meridien, Janpath, New Delhi",77.2185114,28.6185594,Cafe,2000,Indian Rupees(Rs.),No,No,No,No,4,3.9,Yellow,Good,90 +6600,Nero - Le Meridien,1,New Delhi,"Le Meridien, Windsor Place, Janpath, New Delhi","Le Meridien, Janpath","Le Meridien, Janpath, New Delhi",77.2184654,28.6188547,Finger Food,3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,39 +3937,The One - Le Meridien,1,New Delhi,"Le Meridien, Windsor Place, Janpath, New Delhi","Le Meridien, Janpath","Le Meridien, Janpath, New Delhi",77.2185552,28.6188632,Continental,4500,Indian Rupees(Rs.),Yes,No,No,No,4,3.8,Yellow,Good,273 +3235,Eau De Monsoon - Le Meridien,1,New Delhi,"Le Meridien, Windsor Place, Janpath, New Delhi","Le Meridien, Janpath","Le Meridien, Janpath, New Delhi",77.2185653,28.6187207,"Continental, European, North Indian, French",4500,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,189 +306815,Slounge - Lemon Tree Premier,1,New Delhi,"Lemon Tree Premier, Asset 6, Aerocity Hospitality District, Near, Aerocity, New Delhi","Lemon Tree Premier, Aerocity","Lemon Tree Premier, Aerocity, New Delhi",77.120911,28.552036,North Indian,1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,26 +5869,Al Bake,1,New Delhi,"32, Food Court, Living Style Mall, Main Kalindi Kunj Road, Jasola, New Delhi","Living Style Mall, Jasola","Living Style Mall, Jasola, New Delhi",77.2969779,28.5411661,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,66 +18273623,Al-Bawarchi,1,New Delhi,"33, Ground Floor, Living Style Mall, Jasola, New Delhi","Living Style Mall, Jasola","Living Style Mall, Jasola, New Delhi",77.2970442,28.5413659,"North Indian, Mughlai, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,15 +2997,Big Dragon,1,New Delhi,"42, Living Style Mall, Main Kalindi Kunj Road, Jasola, New Delhi","Living Style Mall, Jasola","Living Style Mall, Jasola, New Delhi",77.296874,28.5411385,"Chinese, Thai",650,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,81 +3371,BTW,1,New Delhi,"1 & 2, Living Style Mall, Main Kalindi Kunj Road, Jasola, New Delhi","Living Style Mall, Jasola","Living Style Mall, Jasola, New Delhi",77.2967702,28.5411254,"North Indian, Street Food, South Indian, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,205 +3003,Capital Curry,1,New Delhi,"3rd Floor, Living Style Mall, Main Kalindi Kunj Road, Jasola, New Delhi","Living Style Mall, Jasola","Living Style Mall, Jasola, New Delhi",77.2968044,28.54114,"North Indian, Mughlai",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,54 +3004,Domino's Pizza,1,New Delhi,"14-16, Ground Floor, Living Style Mall, Main Kalindi Kunj Road, Jasola, New Delhi","Living Style Mall, Jasola","Living Style Mall, Jasola, New Delhi",77.2968703,28.541291,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,81 +3744,Ekta's Kitchen,1,New Delhi,"34, Living Style Mall, Main Kalindi Kunj Road, Jasola, New Delhi","Living Style Mall, Jasola","Living Style Mall, Jasola, New Delhi",77.2972363,28.5413197,"North Indian, Mughlai, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,67 +9996,Gopal's,1,New Delhi,"Shop 23/24, Living Style Mall, Jasola, New Delhi","Living Style Mall, Jasola","Living Style Mall, Jasola, New Delhi",77.2967478,28.5412029,"Ice Cream, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,8 +2999,Moti Mahal Delux,1,New Delhi,"313, Living Style Mall, Main Kalindi Kunj Road, Jasola, New Delhi","Living Style Mall, Jasola","Living Style Mall, Jasola, New Delhi",77.2971584,28.5413284,"North Indian, Mughlai, Chinese",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.6,Orange,Average,72 +9929,Open Oven,1,New Delhi,"GF 39, Living Style Mall, Main Kalindi Kunj Road, Jasola, New Delhi","Living Style Mall, Jasola","Living Style Mall, Jasola, New Delhi",77.2968302,28.5413124,"Bakery, Desserts, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,51 +3002,Relax Xpress,1,New Delhi,"30 & 31, Living Style Mall, Main Kalindi Kunj Road, Jasola, New Delhi","Living Style Mall, Jasola","Living Style Mall, Jasola, New Delhi",77.2972593,28.541297,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,75 +5899,Roll Club,1,New Delhi,"30,G.F, Living Style Mall, Main Kalindi Kunj Road, Jasola, New Delhi","Living Style Mall, Jasola","Living Style Mall, Jasola, New Delhi",77.2969868,28.541186,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,27 +2995,SM Gopal Ice Cream & Cakes,1,New Delhi,"8, Ground Floor, Living Style Mall, Main Kalindi Kunj Road, Jasola, New Delhi","Living Style Mall, Jasola","Living Style Mall, Jasola, New Delhi",77.29685,28.5412728,"Ice Cream, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +9316,Bangla Sweet Corner,1,New Delhi,"32 & 32/A, Khanna Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.220711,28.582058,"Chinese, North Indian, Mithai, Street Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,32 +311766,Chinois,1,New Delhi,"27, Main Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.22361319,28.58455646,Asian,1500,Indian Rupees(Rs.),Yes,No,No,No,3,3,Orange,Average,7 +3493,Dawat,1,New Delhi,"70, Khanna Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2205314,28.5838333,"North Indian, Chinese, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,49 +18027962,Establishment Ristorante,1,New Delhi,"96, Meherchand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",0,0,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +1407,Ganesha Sweets & Restaurant,1,New Delhi,"19, Mehar Chand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2264595,28.5863699,"North Indian, Mithai, Street Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,26 +1917,Gopala,1,New Delhi,"8, Meherchand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2263697,28.5867198,"Mithai, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,25 +3497,Green Chick Chop,1,New Delhi,"56, Khanna Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2206212,28.5829457,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,12 +3494,Hot Chimney,1,New Delhi,"68-69, Khanna Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2205314,28.5837437,"North Indian, Chinese, Mughlai",850,Indian Rupees(Rs.),Yes,No,No,No,2,2.5,Orange,Average,55 +18222557,Icon,1,New Delhi,"27, Main Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2237649,28.5845896,"Chinese, North Indian",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,18 +1397,Juneja's Eating Plaza,1,New Delhi,"74, Mehar Chand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.226729,28.5845134,"North Indian, Mughlai, Chinese, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,98 +18346857,Lodhi Knights,1,New Delhi,"Shop 14, Tejdar Babbar Market, Khanna Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2202427,28.5853283,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +6222,Ram Singh's Bhoj,1,New Delhi,"66 A, Khanna Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2205314,28.5834749,"Mithai, Street Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +5727,Republic of Chicken,1,New Delhi,"96, Meharchand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2268188,28.5836257,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,10 +776,Slice of Italy,1,New Delhi,"Shop 147, Mehar Chand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2269022,28.5823705,"Italian, Pizza, Bakery",700,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,171 +305604,Subway,1,New Delhi,"107, Meharchand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.226729,28.583169,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,66 +18391309,The Altitude Cafe and Deli,1,New Delhi,"116, Meher Chand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.1683836,28.5953744,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,11 +18255171,Tokyo Mon Amour,1,New Delhi,"28, Main Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",0,0,"Japanese, French",2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.1,Orange,Average,10 +313280,Bhane,1,New Delhi,"135/136, Mehar Chand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.22693745,28.58222618,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,26 +18279453,Celeste,1,New Delhi,"48, Mehar Chand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2264595,28.5852944,"Cafe, Desserts, Bakery",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,14 +9315,Chidambaram's New Madras Hotel,1,New Delhi,"7, Khanna Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2208457,28.5807713,"South Indian, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,330 +18438416,CJ's Fresh,1,New Delhi,"39 Meharchand Market, 1st floor, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2265194,28.5857905,"American, Italian, Bakery, Deli, Burger, Sandwich, Pizza",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,25 +303753,Elma's Brasserie,1,New Delhi,"73, Meherchand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.226711,28.5844597,"American, Continental, Italian, Bakery",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.7,Yellow,Good,393 +7515,Kunafa,1,New Delhi,"70, Mehar Chand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.22656094,28.58456559,"Desserts, Middle Eastern, Turkish",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,200 +308195,Lahori Gate,1,New Delhi,"97, Meherchand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2269086,28.5836343,"Mughlai, North Indian",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,148 +306088,M I Food Center,1,New Delhi,"43, Mehar Chand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2264595,28.5855632,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,202 +307223,Sugar Blossoms,1,New Delhi,"132 Meharchand Market, Lodhi Road, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.226937,28.5821,"Desserts, Bakery",300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,58 +18472648,Eywa by Saby @ Celeste,1,New Delhi,"48, Mehar Chand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",0,0,Cafe,1000,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,2 +658,Cafe Coffee Day,1,New Delhi,"Meherchand Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2265367,28.5849428,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.3,Red,Poor,52 +304931,Guppy,1,New Delhi,"28, Main Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2239062,28.584686,"Japanese, Sushi",2900,Indian Rupees(Rs.),Yes,No,No,No,4,4.1,Green,Very Good,665 +18277165,Ping's Caf Orient,1,New Delhi,"13, Main Market, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.223226,28.5837316,Asian,2100,Indian Rupees(Rs.),Yes,No,No,No,4,4.1,Green,Very Good,278 +1819,The All American Diner,1,New Delhi,"India Habitat Centre, Lodhi Colony, New Delhi",Lodhi Colony,"Lodhi Colony, New Delhi",77.2258757,28.5887789,"American, Fast Food",1000,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,3495 +6203,Armaan's Restaurant,1,New Delhi,"Shop 3, Market 2 Complex, Near Pragati Vihar Hostel, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.23113,28.5890553,"North Indian, South Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,8 +5840,Garden Chef,1,New Delhi,"Opposite Lodhi Road Post Office, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.2194086,28.5897758,Chinese,450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,63 +307695,Golooji's Chat Waat,1,New Delhi,"India Habitat Centre, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.225607,28.58997,Street Food,400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,13 +307693,Oriental Lee,1,New Delhi,"India Habitat Centre, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.225607,28.58997,"Chinese, Thai",500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,19 +301654,Peshawari Restaurant,1,New Delhi,"17, Khanna Market, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.2209805,28.5811874,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,55 +307696,Tikka Town,1,New Delhi,"India Habitat Centre, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.22557187,28.59026109,North Indian,550,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,53 +6202,Titu Restaurant,1,New Delhi,"5, Mini Market 2, CGO Complex, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.23113,28.5891449,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,13 +300888,Vijay Dhaba,1,New Delhi,"H 71, Karbla Jor Bagh Lane, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.21767209,28.58415194,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +307694,Wild Willy,1,New Delhi,"India Habitat Centre, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.225607,28.58997,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,19 +311470,Diva Spiced,1,New Delhi,"79 & 80, Meharchand Market, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.2264595,28.5842189,"Asian, Chinese",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,131 +307692,Granma's Homemade,1,New Delhi,"India Habitat Centre, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.225607,28.58997,"Bakery, Desserts, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,25 +4924,Karim's,1,New Delhi,"87 & 88, Indian Islamic Cultural Centre, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.2222225,28.5910546,"North Indian, Mughlai",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,194 +302742,Sab Ki Khatir,1,New Delhi,"Ispat Bhawan, Near Petrol Pump, MCD Stall, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.2357472,28.5922808,Mughlai,450,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,162 +18471330,Golden Bakery,1,New Delhi,"Shop 100, Khanna Market, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.2203517,28.5851606,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +6269,Krishan Sweets,1,New Delhi,"67, Khanna Market, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.22048056,28.5836,Mithai,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18423145,Rai Ji Caterers,1,New Delhi,"6, Shop Mini Market, Lodhi Road Complex, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.2284355,28.5823457,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18444040,Szoun Chinese Food,1,New Delhi,"E-89, BK Dutt Colony, Karbala Market, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.2161735,28.5823408,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18391691,Yummy Mummy @ Delhi,1,New Delhi,"B-126, BK Dutt Colony, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.21643761,28.58161703,"Bengali, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +1188,Lodi - The Garden Restaurant,1,New Delhi,"Opposite Mausam Bhawan, Near Gate 1, Lodhi Road, New Delhi",Lodhi Road,"Lodhi Road, New Delhi",77.2210583,28.5904431,"European, Lebanese, Mediterranean",2600,Indian Rupees(Rs.),Yes,Yes,No,No,4,4.2,Green,Very Good,2549 +7353,Aggarwal Sweets & Restaurant,1,New Delhi,"NH 8, Near Radission Hotel, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1231232,28.5454809,"North Indian, Mithai, South Indian, Street Food, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,11 +7365,Ashirwad Dhaba,1,New Delhi,"3, M.R. Complex, NH 8, Near Rangpuri Bus Stand, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1183586,28.5422454,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +303851,Barichi Restaurant,1,New Delhi,"A 29/3, NH 8, Mahipalpur Extension, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1277978,28.549335,"North Indian, South Indian, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,2.9,Orange,Average,7 +9097,Bikaner Sweets,1,New Delhi,"104/2, Near Rangpuri Bus Stand, NH 8, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1184863,28.542164,Mithai,200,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,14 +7317,Bikaner,1,New Delhi,"L-10, Near IGI Airport, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1249212,28.54646,"Mithai, North Indian, South Indian, Chinese, Street Food",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,6 +311067,Chatori Zubaan 2,1,New Delhi,"Near Nike Showroom, Rangpuri, NH-8, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1166056,28.5385371,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +305201,Chinese Mania,1,New Delhi,"Shop 2, J.D Complex, 11, Old Rangpuri Road, Mahipalpur Extension, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1228985,28.5429052,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,17 +18312458,Da Pizza Corner,1,New Delhi,"42, Near Sub Station, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1281574,28.5452469,"Fast Food, Pizza",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,6 +7332,Dhaba Cash 'N' Carry Kitchen,1,New Delhi,"Badam Singh Market, NH 8, Rangpuri Extention, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1180889,28.5415025,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,16 +305180,Dom Dang Kins Restaurant,1,New Delhi,"Shop 4, L 96, Rangpuri Road, Mahipalpur Extension, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1243021,28.5434991,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +4312,First Choice,1,New Delhi,"77, Main Vasant Kunj Road, Near IDBI Bank, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1285132,28.5437505,"North Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,11 +18356811,Hungry Hut,1,New Delhi,"Main Vasant Kunj Road, Opposite OBC Bank, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1291911,28.5420749,"North Indian, Chinese, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,6 +7315,Le Seasons Restaurant,1,New Delhi,"A-1A, NH 8, Mahipalpur Extention, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1252807,28.5473907,"North Indian, Chinese",950,Indian Rupees(Rs.),Yes,No,No,No,2,2.8,Orange,Average,17 +9145,Moti Mahal Delux,1,New Delhi,"La-Sapphire Hotel, A-23, NH 8, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1252807,28.5472115,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,3,Orange,Average,22 +18025111,Popsy's,1,New Delhi,"Shop 1 & 2, K Block, Mahipalpur Extension, Near Labor Chowk, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1240222,28.5433267,"North Indian, South Indian, Continental, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +303958,Prabhu,1,New Delhi,"Opposite Vishal Mega Mart, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1245783,28.5470031,"Fast Food, North Indian, Bakery",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,8 +4311,Saptagiri,1,New Delhi,"L73/L322, NH8, Near IGI Airport, Mahipalpur Extension, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1229435,28.5455533,"North Indian, Mughlai, Chinese, Continental, Fast Food",900,Indian Rupees(Rs.),Yes,No,No,No,2,2.8,Orange,Average,10 +7309,Spice Hut,1,New Delhi,"L 380, Near Allahabad Bank & Red Light Chowk, NH 8, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1237408,28.5462109,"North Indian, Fast Food, Biryani",500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,15 +7307,Taste of Vishal,1,New Delhi,"Hotel Vishal Residency, NH 8, Rangpuri, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1187632,28.5426875,"North Indian, Chinese",900,Indian Rupees(Rs.),Yes,No,No,No,2,2.9,Orange,Average,6 +4315,The Tandoori Night,1,New Delhi,"A-79, Chandgi Ram Building, Vasant Kunj Road, NH 8, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1249212,28.5467289,"Biryani, Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,5 +305151,Traffic Jaam,1,New Delhi,"A-63, Street 1, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1267191,28.5468118,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,5 +7366,Tripti,1,New Delhi,"A-67/1, NH 8 Extention, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.127618,28.5492281,"North Indian, Chinese, Mughlai, South Indian",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,16 +9141,Uttaranchal Dhaba & Restaurant,1,New Delhi,"78, Main Mehrauli Road, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1285619,28.5437174,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +18333396,Wah Ji Wah,1,New Delhi,"A-79, Main Red Light Chowk, Opposite Vishal Mega Mart, Main Vasant Kunj Road, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1247414,28.5467116,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +7363,Resto 37,1,New Delhi,"Hotel Delhi 37, A-78, NH 8, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1286068,28.5500399,"North Indian, Chinese, Continental, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,23 +305181,Aakash Sweets & Caterers,1,New Delhi,"L 96, Old Rangpuri Road, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1242919,28.5434422,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18403469,Aapka Mangal Restaurant,1,New Delhi,"L-192, Gali 7, Near Labour Chowk, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1238424,28.5446537,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18416845,Al-Karim,1,New Delhi,"L-1, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1254605,28.5459741,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +302475,Apna Dhaba,1,New Delhi,"Near Kavira Garden, NH-8, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.0996976,28.5232706,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18489805,Burger Wala,1,New Delhi,"K-26-C, Main Road, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.128427,28.5441077,"Burger, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +302473,Cafe Highway,1,New Delhi,"Near Kavira Garden, NH-8, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1077373,28.5332421,"Fast Food, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18361932,Cake Point,1,New Delhi,"Opposite NSG Camp, Mahipalpur Extension, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1333427,28.5489147,"Bakery, Desserts",600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,0 +18414467,Chatori Zubaan Chur Chur Naan,1,New Delhi,"NH8, Opposite IGI Airport, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1167352,28.5386133,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18358665,Coffee Shop,1,New Delhi,"Dee Marks Hotel & Resort, Adjoining Shiv Murti, NH 8, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1137736,28.5354421,"Cafe, North Indian, Continental",1000,Indian Rupees(Rs.),No,No,No,No,3,0,White,Not rated,0 +18427203,Colonel's Kebabs & Curries,1,New Delhi,"21, Milestone Hotel and Resort, N.H 8, Near Shiv Murti, Rangpuri, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",0,0,"North Indian, Chinese, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18358663,Dhaba Cash 'n' Carry Kitchen Chur Chur Naan,1,New Delhi,"Shop 1, Badam Singh Market, Rangpuri Bus Stop, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1181406,28.5415117,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489807,Dolphin - The Food Cafe,1,New Delhi,"Labour Chouk Mahipalpur, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1241504,28.5434269,"North Indian, Mughlai, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +305183,First Treat Bakers,1,New Delhi,"K 98, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1267191,28.5443024,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +305153,Flavours Of Delhi,1,New Delhi,"A-25, KH 393, Near IGI Airport, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1250299,28.5472207,"North Indian, Chinese, Fast Food",650,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18372674,Foresto Lawn & Restaurant,1,New Delhi,"Plot 802/2, Block K, Main Vasant Kunj Road, Near Mata Chowk & Prem Maruti, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1293063,28.541621,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18356797,Jain Sweets & Bakers,1,New Delhi,"A Block, Near Main Red Light Chowk, Opposite Vishal Mega Mart, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1247414,28.5469805,"North Indian, Mithai",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18414511,JD's Restaurant,1,New Delhi,"A 50/2, Lane 1, Near Manoj Telecom, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1281314,28.5470234,"North Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18408033,Just Vada Pav,1,New Delhi,"KH 406, NH 8, Delhi - Gurgaon Road, Rangpuri, Near Shiv Murti, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",0,0,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18358661,Kaka De Dhaba,1,New Delhi,"Badam Singh Market, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1228536,28.5454551,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18180072,Kolcata Bengali Dhaba,1,New Delhi,"Gali 7, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1239323,28.5435869,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18311961,Kukkuu Da Dhaba,1,New Delhi,"Shop 90A, Road 4, Gali 7, Near Anand Lok Inn, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",0,0,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18416830,M&S Coffee Cafe,1,New Delhi,"Shop 105, Old Rangpuri Road, Labour Chowk, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1241121,28.543156,Fast Food,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18357534,Malabar Style Kitchen,1,New Delhi,"K-311, Gali No. 4, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1249279,28.5429013,Kerala,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18356819,Mathura Lassi Wala,1,New Delhi,"K-Block, Rangpuri Road, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.125056,28.5438292,"North Indian, Chinese, South Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18356795,Metropolitan Cafe,1,New Delhi,"A-2/269, Road 2, Near Good Luck Hotel, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1257302,28.5477027,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18357529,Mr. Bake,1,New Delhi,"L-96, Shubraj Complex, Labour Chowk, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1242983,28.5434512,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +311666,Mughal-E-Zaika,1,New Delhi,"K111 Rang Puri Road, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1237525,28.54348,"Mughlai, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18357541,Mukesh Bhojnalaya,1,New Delhi,"K-4, Shop 159, Rangpuri Road, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1248542,28.5430525,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312970,New Royal Blue Dhaba,1,New Delhi,"Lane 9, Old Rangpuri Road, Mahipalpur Extension, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1231232,28.5435989,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +305190,New Sharma Chicken Corner,1,New Delhi,"814, Mahipalpur Mata Chowk, Vasant Kunj Road, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1295415,28.5415121,"North Indian, Biryani",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +303149,Pakwan,1,New Delhi,"Shalimar Hotel, A-160, Road 4, Mahipalpur Extension, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.12881389,28.54953611,"North Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18168164,Pizza Corner,1,New Delhi,"K-98, Rangpuri, Mahipalpur Road, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1239323,28.5432284,"Pizza, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18489540,Pokhreli Kitchen,1,New Delhi,"184, Ground Floor, Road 1, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1264494,28.5469651,"South Indian, Nepalese",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18268344,Rasoi,1,New Delhi,"A-160, Hotel Shalimaar, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1285169,28.5495832,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +309219,Satya Dhaba,1,New Delhi,"L 321/13, N.H. 8, Near Saptagiri Hotel, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1229265,28.545437,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +9129,Sha-O-Lin Chinese Fast Food,1,New Delhi,"3, A 104, Road 4, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1295057,28.5494988,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18358657,Shahi Chicken Corner,1,New Delhi,"L-25, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1238424,28.5461773,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +312972,Shama Muradabadi,1,New Delhi,"A-116, Road 4, Near IPH, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1283371,28.5440095,"North Indian, Biryani",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18415377,Sunil Punjabi Dhaba,1,New Delhi,"Main Vasant Kunj Road, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1297061,28.5413686,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489534,Sunita Dhaba,1,New Delhi,"National Highway 8, Near Shanti Place Hotel, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1279227,28.549416,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18313112,Taste of India,1,New Delhi,"A-53, NH-8, Near IGI Airport, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1293709,28.5505165,"North Indian, Mughlai, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,0 +18416842,U.P. Al-Flah Restaurant,1,New Delhi,"L-1, Street 1, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1252807,28.5457776,Biryani,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +7362,Vaishno Da Dhaba,1,New Delhi,"Badam Singh Market, NH 8, Rangpuri, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.1230334,28.5451138,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +305189,Yadav Sweets,1,New Delhi,"Old Rangpuri, Near Sabzi Mandi, Mahipalpur, New Delhi",Mahipalpur,"Mahipalpur, New Delhi",77.126764,28.5442619,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +3286,The Cavalry Bar - Maidens Hotel,1,New Delhi,"Maidens Hotel, 7, Shamnath Marg, Civil Lines, New Delhi","Maidens Hotel, Civil Lines","Maidens Hotel, Civil Lines, New Delhi",77.2258308,28.67367,Finger Food,2000,Indian Rupees(Rs.),Yes,No,No,No,4,2.7,Orange,Average,17 +4374,The Curzon Room - Maidens Hotel,1,New Delhi,"Maidens Hotel, 7, Shamnath Marg, Civil Lines, New Delhi","Maidens Hotel, Civil Lines","Maidens Hotel, Civil Lines, New Delhi",77.2258029,28.6737511,"European, North Indian",3200,Indian Rupees(Rs.),Yes,No,No,No,4,3.4,Orange,Average,39 +4373,The Garden Terrace - Maidens Hotel,1,New Delhi,"Maidens Hotel, 7, Shamnath Marg, Civil Lines, New Delhi","Maidens Hotel, Civil Lines","Maidens Hotel, Civil Lines, New Delhi",77.2256961,28.6737019,"North Indian, Continental",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,57 +18232577,Ama Rabsel House,1,New Delhi,"House 47, Majnu Ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2282559,28.7030113,"Chinese, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,8 +18317502,Cafe Plus,1,New Delhi,"B-29, New Sakya House, New Camp, Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2287499,28.7024763,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,13 +18410770,Hornbill,1,New Delhi,"158, Block 7, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2283906,28.7015464,"Naga, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +18303701,Orange Cafe & Restaurant,1,New Delhi,"Block 10, House 7, New Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2284355,28.702491,"Tibetan, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +18272391,ABC Restaurant,1,New Delhi,"House 74 A, Block H, New Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2276272,28.7003539,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18422748,Achi Restaurant,1,New Delhi,"Ground Floor, Achi House, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2284355,28.702491,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18424643,Asian House Restaurant,1,New Delhi,"1st floor, Asian Hotel, New Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2280763,28.7008446,"Tibetan, South Indian, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18481209,Cafe 59,1,New Delhi,"New Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",0,0,"Cafe, North Eastern",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +304280,Drepung Loselling,1,New Delhi,"42, New Tibetan Colony, New Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2283457,28.7033781,"Tibetan, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18272389,Dus Bab,1,New Delhi,"B-4, House 76, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2274475,28.7000681,Tibetan,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18261164,DZI House,1,New Delhi,"188-A, Block 9, New Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2282559,28.701847,"North Indian, Chinese, Tibetan",550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18391757,Good Luck Cafe,1,New Delhi,"House 8A, Block 3, Tara House, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2287499,28.7024763,Ice Cream,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18273526,Kathmandu,1,New Delhi,"Old Camp, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2275373,28.6998976,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +309101,Kullu Manali Restaurant,1,New Delhi,"170, Main Road, Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.227717,28.7014373,"Tibetan, Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18446419,Lhamo's Kitchen,1,New Delhi,"Block 10, House 7, New Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2284804,28.7027192,Nepalese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424639,Lhasa Manthang Restaurant,1,New Delhi,"House 100/B, Block 5, New Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2279864,28.7008361,"Tibetan, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18446411,Lhasa Thali House,1,New Delhi,"15-16, New Tibetan Camp, Majnu Ka Tila",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2283457,28.7028407,Nepalese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424646,Little Tibet,1,New Delhi,"House 16, Block 7, New Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2281661,28.7010323,"Cafe, Tibetan",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18261162,Lotus House Restaurant,1,New Delhi,"House 24/25, New Tibet Camp, New Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2283457,28.7031094,"Tibetan, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18273530,Mahi Rasoi,1,New Delhi,"11, Old Camp House, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2275645,28.7003464,"North Indian, South Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18446424,New Open Restaurant,1,New Delhi,"House 48, Old Camp, New Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2274924,28.6998485,"Nepalese, Tibetan",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18272385,Rooftop Restaurant,1,New Delhi,"B-4, House 76, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.227723,28.7003556,Chinese,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18424635,Somang House Restaurant,1,New Delhi,"4, Somang Complex, New Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2278966,28.7008275,"Asian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18272376,Tandoori Khazana,1,New Delhi,"2-B, Buta Singh Building, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2276272,28.70116,"North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18368943,Tsopema Restaurant,1,New Delhi,"House 24/25, New Aruna Nagar, Majnu ka Tila, New Delhi",Majnu ka Tila,"Majnu ka Tila, New Delhi",77.2282559,28.7016678,"Tibetan, Chinese, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +308286,33 Food,1,New Delhi,"J-1/13, Gupta Colony, Khirki Extension, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.216837,28.5358021,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,93 +18261723,Burger Point,1,New Delhi,"E-6/11,12, Main Road, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2077878,28.5328102,"Burger, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,78 +18463424,Cafe Blur,1,New Delhi,"C 114, Panchsheel Vihar, Khirki Extension, Malviya Nagar, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2185591,28.5349127,"Cafe, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +650,Cafe Coffee Day,1,New Delhi,"22, New Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2133292,28.5379729,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.5,Orange,Average,52 +1037,Cafe Rendezvous,1,New Delhi,"T-540, The Panchshila Rendezvous, Panchshila Park, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2132741,28.5396208,"Mexican, Italian, North Indian, Continental, Asian",1550,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,191 +6377,Cakes & Bakes,1,New Delhi,"C-77, Shivalik Road, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.210737,28.5378192,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,75 +311609,Chatorey Chacha,1,New Delhi,"E-2/16, Near Shani Mandir, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2097386,28.5340199,"Street Food, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,51 +18175252,Chilli Dragon,1,New Delhi,"C-2, Ground Floor, Panchsheel Vihar, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.218813,28.534252,"Chinese, Thai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,35 +309448,DCK- Dana Choga's Kitchen,1,New Delhi,"E-2/4, Main Road, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2090133,28.5338079,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,297 +2863,Divya's Rimpy Restaurant,1,New Delhi,"E-1/14, Main Road, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2089013,28.5338345,"North Indian, Chinese, Mughlai",800,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,245 +5135,Express Dhaba,1,New Delhi,"489/55-1, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2127552,28.5403273,"North Indian, Chinese, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,68 +300828,Go Foodie,1,New Delhi,"L-82, Shop 2, Ground Floor, Near Gol Chakkar, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2076299,28.5314946,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,105 +18238307,Health Pan,1,New Delhi,"210-B, Near Syndicate Bank, Savitri Nagar, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2202141,28.5403,Healthy Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,45 +1040,Karim's,1,New Delhi,"40-B, Corner Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2146666,28.5383428,"Mughlai, North Indian",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3,Orange,Average,183 +18285199,Karuna,1,New Delhi,"JB-9B, Shop 5, Gupta Colony, Khiki Extension, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2169997,28.5340999,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,15 +303423,Kathi,1,New Delhi,"Shop 1, 179-D, Opposite Select City Walk Mall, Khirki Village, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2189683,28.5309799,"North Indian, Fast Food, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,75 +18354972,King Chilly Kitchen,1,New Delhi,"M-67-A, Malviya Nagar, New Delhi Tikona Park",Malviya Nagar,"Malviya Nagar, New Delhi",77.2167814,28.5357192,"Chinese, Tibetan",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,17 +18332076,Kolhapuri Veg Non-Veg Foods,1,New Delhi,"JD-26, Khidki Extension, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2169065,28.5337938,Maharashtrian,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,20 +1406,Mehfil Dhaba,1,New Delhi,"2, Main Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2129078,28.5369107,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,214 +308444,Moti Mahal Delux - Legendary Culinary,1,New Delhi,"489/55/2, Corner Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2126586,28.5405605,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,146 +309452,Open Oven,1,New Delhi,"E-2/16, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.209366,28.5341102,"Bakery, Desserts, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,103 +310312,Paapi Paet,1,New Delhi,"E-5/1, Shop 5, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2079315,28.5330067,"Fast Food, Beverages",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,250 +305162,Pepper Corn Express,1,New Delhi,"T-540, Opposite Arya Samaj Mandir, Malviya Nagar Corner Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2132305,28.5394521,"North Indian, Chinese, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,50 +18471299,Pinch Of China,1,New Delhi,"C-2, Shop 2, Panchsheel Vihar, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.218629,28.534403,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,14 +4855,Pizza Hut Delivery,1,New Delhi,"17 & 18, Corner Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2137832,28.5386054,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,120 +18272382,Punjabee's Darbar,1,New Delhi,"Shop 9, Corner Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2134971,28.538882,"North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,34 +313398,Ramjee's,1,New Delhi,"E-2/16, 1st Floor, Near Shani Mandir, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2096823,28.5340507,"Street Food, North Indian",150,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,62 +307746,Rollmaal,1,New Delhi,"Shop 9, Corner Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2135137,28.5388893,"Fast Food, North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,218 +3043,Shaolin,1,New Delhi,"2/30, Shivalik Geetanjali Road, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2069233,28.5341425,Chinese,800,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,217 +301190,Subway,1,New Delhi,"1/3, E Block, Main Road, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2095102,28.534046,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,183 +18233599,The Chocolate Room,1,New Delhi,"B-6, Ground Floor, Shivalik, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2063347,28.5335269,"Cafe, Italian, Mexican, Salad, Desserts",850,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.4,Orange,Average,155 +1036,The Delhi Heights,1,New Delhi,"2 & 3, E-6/12, Main Road, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2078004,28.5327826,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.8,Orange,Average,198 +310665,Thok (The House of Kakori),1,New Delhi,"Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2096819,28.534082,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.4,Orange,Average,485 +18322671,Uloo,1,New Delhi,"JE 2, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2155012,28.5354885,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.2,Orange,Average,134 +18353692,Vadapav Junction & More,1,New Delhi,"Shop 4, Opposite Main Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2122866,28.5369963,"Street Food, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,37 +18365877,Behrouz Biryani,1,New Delhi,"Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2119129,28.5369433,Biryani,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,61 +310848,Beliram Degchiwala,1,New Delhi,"Shop 10 & 11, Corner Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2135506,28.5386851,"North Indian, Mughlai, Chinese",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,226 +18398602,Bhukkhar,1,New Delhi,"T -7A, Opposite 90/14-A, Khirki Extension, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.214436,28.5344871,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,100 +18376472,Biryani Blues,1,New Delhi,"Building 2, Ground Floor, Corner Market, Maharishi Dayanand Marg, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2132354,28.5391434,"Biryani, Hyderabadi",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.9,Yellow,Good,113 +18455531,Bun Intended,1,New Delhi,"Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.21034631,28.53449044,"Burger, American, Fast Food",850,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,50 +18208912,Casa Asia,1,New Delhi,"Opposite Select Citywalk, J Block, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2124201,28.5357513,Chinese,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,306 +2586,Chic Fish,1,New Delhi,"32, Corner Market, Maharishi Dayanand Marg, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2143619,28.5382487,"North Indian, Chinese",750,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,361 +301722,Dunkin' Donuts,1,New Delhi,"C-6, Main Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2115336,28.5363476,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,290 +18285729,Farratta,1,New Delhi,"17-18, 1st Floor, Corner Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2138677,28.5386342,"North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,93 +305526,Flavors of Chennai,1,New Delhi,"6, Corner Market, Near Hanuman Temple, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2136687,28.538922,South Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,370 +18357542,Food For Thought,1,New Delhi,"14, Navjivan Vihar, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2001377,28.5322332,"North Indian, Italian",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,55 +18291199,FreshMenu,1,New Delhi,"181-C, Khirki Extension, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2191149,28.5306173,"Italian, Chinese, Continental, Thai, Mediterranean, Lebanese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,132 +5726,Giani's,1,New Delhi,"2, C-10, Opposite ITI, Main Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2115555,28.5363348,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,145 +302922,Gopala,1,New Delhi,"C31, Main Market, Near HDFC Bank, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2111963,28.5364161,"Mithai, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,45 +7658,Green Chick Chop,1,New Delhi,"E 6/75, Main Road, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2093418,28.5341236,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,52 +18286490,Hunger Must Die,1,New Delhi,"Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2087849,28.5312482,"Italian, North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,99 +7654,Kolkata Kathi Roll,1,New Delhi,"3, E-2/16, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2097112,28.5340565,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,82 +18254534,Max Grille and Kitchen,1,New Delhi,"2A, Corner Market, Near Arya Samaj Mandir, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2133213,28.5393306,"North Indian, Mughlai, Chinese",850,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.5,Yellow,Good,99 +9100,Moti Sweets,1,New Delhi,"C-5, Main Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2115266,28.5363955,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,114 +6475,Nazeer Foods,1,New Delhi,"C-5, Ground Floor, Main Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2123353,28.5366373,"North Indian, Mughlai, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,427 +300302,Nikashee,1,New Delhi,"E-1/12, Ground Floor, Main Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2090442,28.5340283,"Chinese, Thai",600,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,408 +304302,Noodle Box,1,New Delhi,"B1/12, Near Apeejay School, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2177996,28.5370577,"Chinese, Thai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,60 +306166,Pema's,1,New Delhi,"Shop 3, 3/31, Upper Ground Floor, Shivalik Road, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2072907,28.5342075,"Chinese, Tibetan, Japanese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,412 +18345755,Plumber - The Lounge,1,New Delhi,"10 & 11, Corner Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2136424,28.5388893,"Thai, Chinese, North Indian",1500,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,38 +9751,Pudding & Pie,1,New Delhi,"C-60, Shivalik Road, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2093777,28.5363564,"Bakery, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,137 +2867,RP's Restaurant,1,New Delhi,"50-D, Savitri Nagar, Main Road, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2185071,28.5406266,"Mughlai, North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,259 +8346,Soi Thai,1,New Delhi,"Shop 3, Navjivan Vihar Market, Navjivan Vihar, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2000632,28.5320727,"Thai, Japanese",1500,Indian Rupees(Rs.),No,Yes,No,No,3,3.6,Yellow,Good,148 +305871,Speedy Chow,1,New Delhi,"9, 1st Floor, Corner Market, Maharishi Dayanand Marg, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2135346,28.538886,"Chinese, Thai",850,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,268 +18425151,Stoned Age Kitchen,1,New Delhi,"H-18/11, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2079315,28.5317046,Continental,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,91 +998,Suribachi,1,New Delhi,"T-540, Panchshila Park, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2132758,28.539624,"Asian, North Indian, Continental",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,104 +452,Swagath,1,New Delhi,"C-8, Main Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2116173,28.5364058,"North Indian, Chinese, Seafood, Chettinad",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,168 +18163892,The Delhi Canteen,1,New Delhi,"30, Corner Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2142624,28.5384888,"North Indian, Continental, Asian, Chinese, Thai",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,305 +18432219,The Grill Kitchen,1,New Delhi,"Opposite Gurudwara, L Block Road, Sector 6, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2060663,28.5331227,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,75 +18458339,The Midnight Heroes,1,New Delhi,"Sri Aurbindo Marg, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.21055888,28.5339573,"North Indian, Biryani, Chinese, Fast Food",950,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,41 +18375421,The Salad Bowl,1,New Delhi,"Navjeevan Vihar, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2002839,28.5322327,"Healthy Food, Salad",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,34 +209,Domino's Pizza,1,New Delhi,"C-7, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.211528,28.5363241,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.3,Red,Poor,185 +18428394,Food Army,1,New Delhi,"T-265 C/8A, Chirag Dilli, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2243276,28.5373992,"North Indian, Mughlai, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.3,Red,Poor,18 +1030,Moti Restaurant,1,New Delhi,"16, Main Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2121141,28.536674,"North Indian, South Indian, Chinese, Mughlai",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,137 +7661,New Baba Da Dhaba,1,New Delhi,"J1/110, Gupta Colony, Near Saini Estate, Khirki Extension, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2170275,28.5331218,"North Indian, Mughlai, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2,Red,Poor,84 +6179,Tunday Kababi,1,New Delhi,"489, 55/4, Corner Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2126555,28.5406063,"Lucknowi, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.2,Red,Poor,182 +18446475,Dilli BC,1,New Delhi,"B-2, Local Shopping Complex, STC/MMTC Market, Near Sri Aurobindo College, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2036117,28.5325807,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,4.4,Green,Very Good,84 +311161,Litti.In,1,New Delhi,"Shop 1-A, C-10, Ground Floor, Opposite HDFC Bank, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2111802,28.5364058,Bihari,300,Indian Rupees(Rs.),No,Yes,No,No,1,4,Green,Very Good,308 +313206,Nizam's Kathi Kabab,1,New Delhi,"33, Corner Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2145409,28.5384902,"North Indian, Fast Food",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,4,Green,Very Good,153 +18334452,Pepper Kitchen,1,New Delhi,"C 51, Ground Floor, Main Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2104778,28.5355604,"Cafe, American, Italian",500,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,244 +18253111,Rustom's Cafe & Bakery,1,New Delhi,"Khoj International Artists Association, S-17, Khirkee Extension, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2184409,28.5311532,"Cafe, Bakery, Parsi",700,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,84 +18219545,Salad Days,1,New Delhi,"Shop 1&2, C51, Ground Floor, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.21051,28.535704,"Healthy Food, Salad",800,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,255 +18348970,Stop My Starvation,1,New Delhi,"C-10, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2112209,28.5364043,"Cafe, Desserts",300,Indian Rupees(Rs.),No,Yes,No,No,1,4.3,Green,Very Good,126 +18334465,Sushi Junction,1,New Delhi,"Shivalik Road, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2072826,28.5340992,"Sushi, Japanese, Healthy Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,4,Green,Very Good,53 +18272370,Vero Gusto,1,New Delhi,"C-4, Main Market, Malviya Nagar, New Delhi",Malviya Nagar,"Malviya Nagar, New Delhi",77.2118497,28.5367368,"Cafe, Fast Food, Healthy Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,4.1,Green,Very Good,135 +311846,Snack Junction,1,New Delhi,"Opposite FICCI Auditorium, Near Metro Station, Mandi House, New Delhi",Mandi House,"Mandi House, New Delhi",77.2321792,28.6268536,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +311432,Turant,1,New Delhi,"Opposite FICCI Auditorium, Near Metro Station, Mandi House, New Delhi",Mandi House,"Mandi House, New Delhi",77.2319851,28.6267282,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,47 +304972,Snacks Point,1,New Delhi,"Mandi House Metro Station, Mandi House, New Delhi",Mandi House,"Mandi House, New Delhi",77.2337174,28.62540821,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18356812,The Sweet Spot,1,New Delhi,"25, Central Lane, Bengali Market, Mandi House, New Delhi",Mandi House,"Mandi House, New Delhi",77.2305796,28.6304834,Bakery,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18294392,Kafe @ Museum,1,New Delhi,"National Museum, Mansingh Road, New Delhi",Mansingh Road,"Mansingh Road, New Delhi",77.22,28.61,"North Indian, Continental",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +308489,Friends Cafe,1,New Delhi,"A-36, Mohan Cooperative Industrial Estate, Mathura Road, New Delhi",Mathura Road,"Mathura Road, New Delhi",77.29213391,28.52182344,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +313175,Aromas of Pind,1,New Delhi,"A-38, Mohan Cooperative Estate, Near Sarita Vihar Metro Station, Opposite Metro Pillar 302, Mathura Road, New Delhi",Mathura Road,"Mathura Road, New Delhi",77.29338784,28.52175981,"North Indian, Chinese",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,278 +301842,Apna Dhaba and Caters,1,New Delhi,"Street 2, BE-335, Hari Nagar, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.119036,28.6307787,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,20 +311378,Green Chick Chop,1,New Delhi,"BE 359-A, Swargashram Road, Hari Nagar, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.1186217,28.6308872,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,7 +301830,Jai Shree Durga South Indian Corner,1,New Delhi,"BE-324, Street 4, Hari Nagar, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.120189,28.6308138,"South Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18323144,Malabar Catering House,1,New Delhi,"C-84, Mayapuri Industrial Area, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.1193692,28.6216271,"Biryani, Kerala",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,13 +311377,Meenakshi Bhawan,1,New Delhi,"BE-334, Main Road, Hari Nagar, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.119336,28.6307842,"South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +301848,New Raja Sweets,1,New Delhi,"A 140, Gandhi Nagar, Hari Nagar, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.1144456,28.6258469,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,18 +307998,Pizza Treat,1,New Delhi,"A1, Main Gandhi Market, Hari Nagar, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.1155946,28.6258815,"Pizza, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +5940,Pudding & Pie,1,New Delhi,"B-99, Mayapuri Industrial Area, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.1141938,28.6258347,"Bakery, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +301826,Rita Chinese Food,1,New Delhi,"B 357, Hari Nagar, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.1160349,28.6257821,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +312923,Vibes of Punjab,1,New Delhi,"C-101, Mayapuri, Main Road, Near DD Motors, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.1176174,28.6227746,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,21 +301817,Ramji Di Hatti & Caterers,1,New Delhi,"BE-324, Street 4, Opposite M.I.G. Flats, Hari Nagar, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.120274,28.6307493,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,25 +301820,Spicy Tadka,1,New Delhi,"BE 332, Hari Nagar Street 3, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.1196062,28.6308168,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,24 +18460315,Mr. Tandoori Lal,1,New Delhi,"BE-321/A, Hari Nagar, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.1204704,28.6307568,"Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +301809,Om Sweets & Caterers,1,New Delhi,"70, Hari Nagar, Near Jasrotia Hospital, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.1118707,28.6258268,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18368012,Sardar Ji Take Away & Caterers,1,New Delhi,"A 148, Gandhi Market, Hari Nagar, Mayapuri Phase 2, New Delhi",Mayapuri Phase 2,"Mayapuri Phase 2, New Delhi",77.1139522,28.6259394,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18429423,9 is Mine,1,New Delhi,"4, BSES market, Pocket 1, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.297847,28.607116,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,4 +6180,Aashirwad,1,New Delhi,"A 1, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2924811,28.6089584,"Chinese, North Indian",450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,19 +301108,Aggarwal Sweet & Bakers,1,New Delhi,"B-1/3B, New Ashok Nagar, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3081612,28.5891462,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +8105,Amit Hotel,1,New Delhi,"A 110, New Ashok Nagar, Near, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3088206,28.5903034,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +313185,Angrezee Dhaba,1,New Delhi,"Mini DDA Market, Mayur Kunj, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.30209798,28.58521417,"North Indian, Mughlai, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,7 +8109,Ankur Family Restaurant,1,New Delhi,"B 17/E Metro Station, New Ashok Nagar, Near Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3062786,28.5892005,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +304267,Bansal Sweet,1,New Delhi,"A 4/1, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2934295,28.6082009,"Desserts, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,20 +313351,Baskin Robbins,1,New Delhi,"G-7-9, Sikka Plaza 2, Near Ahlcon Public School, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2905861,28.6071522,Ice Cream,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,13 +309227,Caravan Resto Bar,1,New Delhi,"A-10, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2938353,28.6078005,"North Indian, Chinese, Mughlai",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.2,Orange,Average,51 +18285695,Celebration Multi Cuisine Restaurant,1,New Delhi,"15, Upper Ground Floor, Pratap Nagar, Near Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2952484,28.6065957,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,14 +18146358,Chatto Chapati,1,New Delhi,"288-B, Pocket 2, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.30096575,28.61013581,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +312715,Chawla's_,1,New Delhi,"Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.30109818,28.58918625,"North Indian, Mughlai",750,Indian Rupees(Rs.),Yes,No,No,No,2,2.7,Orange,Average,29 +311245,China Town,1,New Delhi,"Samachar Market, DAV Complex, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2952961,28.5979305,Chinese,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,11 +6173,China Town,1,New Delhi,"Opposite Fine Home Apartments, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2936557,28.6080098,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,28 +301353,Dazzle Pastry Shop,1,New Delhi,"P 19, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2928133,28.6083198,"Bakery, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,25 +300957,Delicacy Foods,1,New Delhi,"1, DDA Market, Pocket 4, Near Maharaja Agrasen College, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2932581,28.6030873,"North Indian, Mughlai, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,86 +312703,Dolphin Rolls,1,New Delhi,"Shop 389, B Block, New Ashok Nagar, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3078187,28.5898772,"Fast Food, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +6183,Durbar Restaurant,1,New Delhi,"166, Pratap Nagar, Opposite Pocket 4, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2930355,28.6043403,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,33 +301037,Ever Green Pastry Shop,1,New Delhi,"230, Main Market, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.291701,28.6095613,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,34 +8069,Evergreen Sweets Corner,1,New Delhi,"A-650, New Ashok Nagar, Near Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3122802,28.5946814,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +306107,Great Plates By AJ,1,New Delhi,"G-1-4, DLF Galleria Mall, District Centre, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2964127,28.5921814,"North Indian, Chinese, Mughlai",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.1,Orange,Average,77 +308359,Green Chick Chop,1,New Delhi,"Shop 3, 4, & 4-A, Samachar Market, Mayur Vihar Phase 1 Extension, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2946516,28.5978455,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,24 +18260604,Haqeem's,1,New Delhi,"Shop 2, Plot 1, Sikka Plaza, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2904619,28.6070462,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,14 +6185,Himalaya Food Corner,1,New Delhi,"C-24, Acharya Niketan, Near ICICI Bank, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2956989,28.6078263,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,46 +304259,Hot Joint Fast Food,1,New Delhi,"Metro Station Gate 1, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2894952,28.6045493,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,61 +300959,Hyderabadi Dum Biryani,1,New Delhi,"24, DDA Market, Pocket 4, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.29358397,28.60318802,"Biryani, Hyderabadi",650,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,60 +18238249,Kasturi Family Restaurant,1,New Delhi,"1st Floor, P-13/A, Aacharya Niketan Market, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2925747,28.6090326,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,20 +309346,Kerala Cafe,1,New Delhi,"Shop 4 & 5, 1st Floor, Block A/18, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2947422,28.6071044,Kerala,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,45 +307306,Keuchen Paradise,1,New Delhi,"A-7, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2938753,28.6081948,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,8 +18203881,Kook For Health,1,New Delhi,"A 8, Acharya Niketan Market, Opposite Janta Book Depot, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2938857,28.6081736,"American, Asian, North Indian, Mexican, South Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,21 +18138441,Lahorian's Sweets & Bakers,1,New Delhi,"Shop 5, Plot 101, Gali 15, Pratap Nagar, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.293569,28.6044435,"Street Food, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +8531,Mr. Baker's,1,New Delhi,"G2-G3, DAV Complex, LSC, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2949573,28.5977616,"Bakery, Fast Food",100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,22 +18267785,Night Food Delivery,1,New Delhi,"Near Sikka Plaza, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.290883,28.606978,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,5 +8110,Nine 2 Nine Snacks & Restaurant,1,New Delhi,"B-1/26, New Ashok Nagar, Near, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3065907,28.5890442,"North Indian, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +18281964,Punjabi Mirch,1,New Delhi,"D-35, Acharya Niketan, Near Kukreja Hospital, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2952184,28.6074925,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +2932,Rasoi The Food Express,1,New Delhi,"38, DDA Market, Jeevan Anmol Hospital, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2953531,28.6065091,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,53 +6182,Republic of Chicken,1,New Delhi,"G-10, Samachar Market, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2949166,28.5977308,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +18324529,Sandwichai,1,New Delhi,"Sandwichai, Shop no 2,3-Sikka Plaza, Mayur Vihar Phase-1",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.29047,28.6069738,Fast Food,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,58 +308237,SB's Raisins,1,New Delhi,"A-9/1, Acharya Niketan, Central Market, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2938335,28.6078223,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,15 +311894,Shanghai Kitchen,1,New Delhi,"C-19, Opposite Ahlcon International School, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.28870839,28.61184943,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,26 +300960,Shiv Shakti Restaurant,1,New Delhi,"11, DDA Market, Pocket 4, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2933571,28.6035787,"South Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,18 +308222,Smoky Chettinad,1,New Delhi,"Shop 2, Local Shopping Complex, DDA Market, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.29534686,28.60690952,"South Indian, Chettinad",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,49 +18258510,Spice Fusion,1,New Delhi,"Shop 12, DDA Local Shoping Center Market, Mayur Vihar Phase 1",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2956494,28.6065417,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +308526,Sweet Toof Designer Cakes,1,New Delhi,"16-A, Pocket 3, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.29909826,28.60545101,"Bakery, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +301118,The Chef,1,New Delhi,"Shop 7 & 8, Block A, Main Road, Ashok Nagar, Near Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3084321,28.5894261,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,23 +309551,The Edge Cafe,1,New Delhi,"32-B, JP Complex, Opposite UNA Enclave, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.28917677,28.61092375,"Fast Food, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,53 +9736,The Epicure - Fraser Suites,1,New Delhi,"Fraser Suites, 4-A, District Centre, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.29954,28.5939142,"Asian, Thai, Chinese, North Indian",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.1,Orange,Average,80 +18022625,Udupidarshini Veg Restaurant,1,New Delhi,"C-24/A, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2957443,28.6076829,"Chinese, North Indian, South Indian",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,33 +18420679,36 lebzelter,1,New Delhi,"P 37/38, Pandav Nagar, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",0,0,"Bakery, Desserts",150,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,39 +301361,Baked Buns,1,New Delhi,"Shop 12, BR Complex, Near Alchon International School, Opposite UNA Enclave, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3347996,28.6040018,"Fast Food, Pizza, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,165 +312991,Freakin Beans,1,New Delhi,"606, Shikha Plaza 1, Shashi Park Road, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2905678,28.6068499,Cafe,250,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,72 +18277153,Nutri Cafe,1,New Delhi,"Shop G-3, Plot 1, LSC 11, Atlantic Plaza, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2952729,28.5975729,Fast Food,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,49 +18273548,Senorita's,1,New Delhi,"10, Samachar Market, Mayur Vihar Phase 1 Extension, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2949672,28.597776,"Mexican, North Indian",550,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,57 +18399818,Village - The House of Food,1,New Delhi,"B-1, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.29340594,28.6087318,"Street Food, Fast Food, Chinese, South Indian, North Indian",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,65 +8062,Aman Vaishno Dhaba,1,New Delhi,"417, New Ashok Nagar, Near Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3122819,28.594717,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +304254,Anupam Hotel,1,New Delhi,"A 60, Main Market Road, New Ashok Nagar, Near, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3078828,28.5901962,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18469823,Bake Bank,1,New Delhi,"B-19, Acharya Niketan Market, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.29497844,28.60724844,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18057803,Buzybee,1,New Delhi,"17/602, Eastend Apartments, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",0,0,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18208900,Cafe Tandoor,1,New Delhi,"G-6, Kanishka Complex, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",0,0,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18420694,Chawlas 2,1,New Delhi,"C31, C Block, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.295699,28.6073217,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18438463,Choksi Chinese,1,New Delhi,"Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3086422,28.5899497,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18317329,Desi Chulha,1,New Delhi,"193 Main Road, Shashi Garden, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2958351,28.6097862,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18442896,Fumble Foods,1,New Delhi,"East End Apartments, Near New Ashok Nagar Metro Station, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",0,0,"North Indian, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18494989,Games v/s Cafe,1,New Delhi,"Shop 15, DDA Local Shopping Center, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.29572514,28.6067005,"Cafe, Beverages",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18432170,Goodies- Snacks N More,1,New Delhi,"E 62 Pratap Nagar, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",0,0,"Fast Food, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18489526,Grubhouse Cafe,1,New Delhi,"D 33, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",0,0,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18375372,Mr. Baker's,1,New Delhi,"C-29, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2956929,28.6073554,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +8108,Muradabadi Chicken Biryani & Dhaba,1,New Delhi,"B-116, New Ashok Nagar, Near Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3063531,28.589274,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +6237,Pakiza Restaurant,1,New Delhi,"30, Block 15, Vasundhra Road, Mayur Vihar Phase 1, New Delhi Near Mayur Vihar Phase 1",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.30888665,28.60906117,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +311993,Riddhi Siddhi Restaurant,1,New Delhi,"A, Ground Floor , Near Ganpati Complex, New Ashok Nagar, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3091618,28.5903191,"North Indian, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18479003,Rockers & Shockers,1,New Delhi,"S-19, 2nd Floor, Star City Mall, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",0,0,"North Indian, Mughlai, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18472612,Saikutir Food,1,New Delhi,"F/206, Samaspur Road, Pandav Nagar, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",0,0,"North Indian, South Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18357972,Satnaam Foods,1,New Delhi,"101 A, Pratap Nagar, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",0,0,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18375388,Senorita's,1,New Delhi,"Pankaj Tower, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2905299,28.6068399,Mexican,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18292453,Shri Bala Ji Rasoi,1,New Delhi,"Near Authority, Main Road, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.296163,28.6051709,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421494,South Indian,1,New Delhi,"Opposite Balaji Dental Clinic, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",0,0,South Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +8033,Tip Top Eating Corner,1,New Delhi,"A 55 & 56, New Ashok Nagar, Near, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.3093426,28.5905357,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18360957,ToLoveFromLove,1,New Delhi,"Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",0,0,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18281993,Tripti Foods,1,New Delhi,"Shop 31, DDA Market, Near Jeevan Anmol Hospital, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.29558725,28.60682357,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18282003,U Like,1,New Delhi,"G-7, LSC 11, Main Market, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.294938,28.5980675,Bakery,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18421492,Zayka chicken restaurant,1,New Delhi,"C 31, Acharya niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2960093,28.6073214,"North Indian, Biryani",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +6190,Cafe Coffee Day,1,New Delhi,"Sikka Plaza, Near Ahlcon Public School, Opposite UNA Enclave, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.290606,28.6070669,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.4,Red,Poor,49 +2017,Food Fantasy,1,New Delhi,"P-35-36, Opposite Fine Home Apartments, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2928015,28.6082787,"North Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,76 +308812,Just Chinese,1,New Delhi,"C-2, Acharya Niketan, Mayur Vihar Phase 1, New Delhi",Mayur Vihar Phase 1,"Mayur Vihar Phase 1, New Delhi",77.2935856,28.6088911,Chinese,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,36 +308848,Agarwal Bikaneri Sweets,1,New Delhi,"Shop 7, Pocket A, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.2971024,28.6185258,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +301056,Bikaner Sweets,1,New Delhi,"1, Durga Complex, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3007976,28.6198235,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,14 +301692,Breadz,1,New Delhi,"Below Canara Bank, A Block Market, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.2960034,28.6170417,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,48 +18265707,Desi Jugaad,1,New Delhi,"G-6, Plot 14, Vardhaman Plaza, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.30071865,28.6193114,"North Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +18368006,Food Trax,1,New Delhi,"G-8, Durga Complex LSC, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.30117932,28.61981733,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18225277,Hub Tub,1,New Delhi,"112-A, Pocket F, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.30196454,28.61965104,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +2936,Malabar Foods,1,New Delhi,"G-9, Krishna Plaza Complex, Pocket A Bus Stand, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3010973,28.6196099,"North Indian, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,49 +18291201,Mitra Di Chaap,1,New Delhi,"D-1, Opposite Mayur Vihar Bus Depot, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.29992136,28.61961396,"Street Food, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +3854,New Hyderabadi Biryani House,1,New Delhi,"G-8, Manish Chamber, Pocket B Market, Near Neelam Mata Mandir, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.301318,28.6196741,"North Indian, Biryani",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,25 +308831,New Madras Cafe,1,New Delhi,"Shop 15, DDA Market, Pocket C, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3050334,28.6189331,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +301062,Roll Club,1,New Delhi,"G-6, Sachdeva Plaza, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3003716,28.619632,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,44 +5186,Sanju Cool & Hot Hut,1,New Delhi,"7, Purvanchal Plaza, ISC Market, Pocket B, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3009259,28.6199149,"North Indian, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,8 +3851,Sethi's Kabab & Curries,1,New Delhi,"G-5, Manish Chamber, LSC, Pocket B, Near Virmani Hospital, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3013079,28.6198516,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,22 +305357,South Indian Fast Food,1,New Delhi,"Near Canara Bank, Block A, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.2970156,28.6186666,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,23 +2019,Sweets and Spices,1,New Delhi,"G-1, Sagar Galaxy, Pocket B, Commercial Complex, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3008117,28.6196422,"North Indian, Chinese, South Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,69 +305370,Urban Degchi Kitchen & Bar,1,New Delhi,"Shop 5-10, LSC Pocket B, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3008167,28.6194659,"North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.6,Orange,Average,94 +301053,Wah Ji Wah,1,New Delhi,"3, Sachdeva Plaza, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3003715,28.619648,"North Indian, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,81 +308844,Zaiqa Kathi Roll & Momos,1,New Delhi,"4, Pocket B, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3002431,28.6199122,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,16 +308839,Duggal Snacks,1,New Delhi,"G-S, Abhishek Plaza, Pocket B, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3006489,28.6193502,Street Food,50,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,32 +18440191,Granny's Flavour,1,New Delhi,"11/7 Purvanchal Plaza, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3014164,28.6195294,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,16 +18203185,Moustache Coffee,1,New Delhi,"G-6, Vardhman Shrenik Plaza, Pocket B, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.30168425,28.61956952,Cafe,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,79 +301047,Pradeep Pav Bhaji,1,New Delhi,"G-2, Vardhman Sainik Plaza, Pocket B-2, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3020302,28.6194887,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,94 +312492,Sandwich Factory,1,New Delhi,"25A, Pocket B, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3011218,28.6192793,Cafe,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,254 +4672,Scorpio Cafe,1,New Delhi,"G-4, Durga Complex, Pocket B, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3012169,28.6196855,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,410 +311336,Veggie-Licious,1,New Delhi,"G-6, GS Arcade, Pocket B, Behind State Bank of India, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3011572,28.6192865,"North Indian, Chinese, Continental, Fast Food",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,100 +18379056,Creamy Creation,1,New Delhi,"B-66, East Vinod Nagar, Near Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.309698,28.623975,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18440185,Evergreen Food Corner,1,New Delhi,"55, A Block Market, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.2979348,28.6191348,"Fast Food, Raw Meats",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18440429,K.D Corner,1,New Delhi,"B-65, East Vinod Nagar, Near, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3094479,28.6232139,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +2942,Slice Of Italy,1,New Delhi,"104 & 105, Durga Complex, LSC Market, Pocket B, Mayur Vihar Phase 2, New Delhi",Mayur Vihar Phase 2,"Mayur Vihar Phase 2, New Delhi",77.3011572,28.6197374,"Italian, Pizza, Bakery",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.2,Red,Poor,119 +301103,Anokha Chinese Hut,1,New Delhi,"D-1/30, New Kondli, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3296222,28.6038472,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,27 +18292451,Bobby Dhaba & Caterers,1,New Delhi,"C-3/88, New Kondli, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.33470056,28.6042683,"North Indian, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,5 +9740,Clever Fox Cafe,1,New Delhi,"Red Fox Hotel, Community Center, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3328617,28.6071702,"North Indian, Continental, Chinese",900,Indian Rupees(Rs.),Yes,No,No,No,2,3,Orange,Average,25 +301106,Dana Pani,1,New Delhi,"B-1/60, New Kondli, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3302432,28.6032214,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,4 +6225,Hotel Malabar,1,New Delhi,"A-1312, Main Road, Opposite Pocket A-2, GD Colony, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3363682,28.6128083,Kerala,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,24 +301120,Lumbini Fast Point,1,New Delhi,"1-A, Pocket A3, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3375211,28.6137147,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,30 +307850,Mayur Restaurant,1,New Delhi,"81-B,Pocket A-2, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3369722,28.613483,"North Indian, South Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,19 +18292449,MOC - The American Restaurant,1,New Delhi,"38-A, Pocket A-2, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.33534496,28.61123545,"American, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,35 +301116,Muradabadi Chicken Biryani,1,New Delhi,"C-1/30, New Kondli, Near Mangal Bazar Chowk, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3335984,28.6054308,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,28 +8462,New Aggarwal Sweet Corner,1,New Delhi,"A-1240/2, DDA Market, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3360236,28.6117841,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,11 +309599,Pizza Castle,1,New Delhi,"80/A, Pocket A, LIG Flat, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3351273,28.6103555,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,29 +309499,Punjabi Dhaba,1,New Delhi,"140-A, Pocket A3, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3292098,28.6014232,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +300958,Qureshi Chicken Corner,1,New Delhi,"Near Ryan International School, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3364154,28.6132677,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +301105,Samarpan Fast Food,1,New Delhi,"118 - A2, LIG Flat Market, Opposite Sharma Medical Store, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3365387,28.6101623,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,9 +311228,Shaan-E-Tandoorz,1,New Delhi,"G-14, SSG East Plaza, DDA Local Shopping Centre, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3390604,28.6078313,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +6226,Sonu Sudh Bhojnalaya,1,New Delhi,"B 1/1 B, Janta Flat, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.336318,28.6126674,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,10 +311229,The Test,1,New Delhi,"G-11, Plot 1-2, SSG East Plaza, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3391034,28.6077552,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +306555,True Blue,1,New Delhi,"8, DDA Shopping Complex, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3390881,28.6076461,"Chinese, North Indian",900,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,26 +301110,Zaika Kathi Rolls,1,New Delhi,"GD Colony, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3292915,28.6029222,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,13 +304986,Baked Buns,1,New Delhi,"C-4/79, Near Indian Oil Petrol Pump, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3347657,28.6040454,Fast Food,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,90 +311256,A One Muradabadi,1,New Delhi,"A 118, Pocket A 2, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.336751,28.6130176,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +307847,Annapurna,1,New Delhi,"Shop 1, Basement, Tularam Complex, Old Kondi, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3369792,28.6134753,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18376492,Cake Walkers,1,New Delhi,"84-B, Pocket A-1, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.33557563,28.61051668,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +6216,Harish And Sonu Sudh Bhojnalya,1,New Delhi,"Old Kondli, Near State Bank Of Patiala, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3340142,28.6082998,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +313360,Mitra Da Dhaba,1,New Delhi,"DDA, Convenient Shopping Centre 1, Pocket C1, Sector C, Kondli Gharoli, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3369754,28.6134959,"North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18490756,Munchies Midnight Delivery,1,New Delhi,"Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3363461,28.60584544,"Continental, Italian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18375376,Muradabadi Chicken Corner,1,New Delhi,"C-1/130, New Kondli, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.33908128,28.60777224,Mughlai,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18089212,Riyaz Chicken Corner,1,New Delhi,"1A, Pocket A-3, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.337972,28.6133824,Biryani,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18375395,Romano's Pizza,1,New Delhi,"81A, Pocket A-2, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3371065,28.61364897,Pizza,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18237719,Royal Spice,1,New Delhi,"A-1155-1156, GD Colony, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.3351677,28.61080481,"Continental, North Indian, South Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18082236,Sonu Bhojanalya,1,New Delhi,"D-1/29, New Kondli, Sani Bazar Road, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.329599,28.6038407,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18375383,The Deshi Bites,1,New Delhi,"SFS Flats, Near Pocket-C, Mayur Vihar Phase 3, New Delhi",Mayur Vihar Phase 3,"Mayur Vihar Phase 3, New Delhi",77.33913861,28.60797505,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +309979,Green Chick Chop,1,New Delhi,"13/2, Ward 1, LIC Road, Near Bhool Bhulia, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1814052,28.5228127,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +18025093,Mahara Hotel,1,New Delhi,"13/2, Ward 1, LIC Road, Near Bus Terminal, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1814337,28.5228887,"North Indian, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +307990,Malik Vegetarian Rasoi,1,New Delhi,"13-A/4, Ward 1, Opposite Bhool Bhuliyan, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1818906,28.5227376,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,9 +309517,Yash Aadi Food Corner,1,New Delhi,"F-210/A, Main Market, Mehrauli, New Delhi Near Mehrauli",Mehrauli,"Mehrauli, New Delhi",77.1938889,28.5237475,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18489842,#hashtag,1,New Delhi,"1092/1, Mehrauli Bus Stand, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1818649,28.5222051,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18350159,Al Zaika,1,New Delhi,"F-341, Lado Sarai, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1912358,28.5244983,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18375201,Ashiyan Foods,1,New Delhi,"D-3/491, Chhatarpur Pahari, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1901673,28.5266192,"North Indian, Chinese, Continental",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18025127,Bake My Day,1,New Delhi,"Shop 1, Ambawata Complex, Gurudwara Road, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1818522,28.5222187,"Bakery, Desserts, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18478990,Bhutani Chaap,1,New Delhi,"Shop 1, Ambawata Complex, Gurudwara Road, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1818486,28.5222296,"North Indian, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18433297,China Pan,1,New Delhi,"16 A, Ward 1, LIC Building, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.190347,28.5265467,"Chinese, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18472695,Chinese Fast Food,1,New Delhi,"Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1919008,28.5279728,"Chinese, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18415339,Dilkhush Punjabi Dhaba,1,New Delhi,"893/8 Mehta Tailor Wali Gali Sarai Mehrauli, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1790259,28.515336,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +311683,Dragun Hut,1,New Delhi,"Lado Sarai Near Park, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1956559,28.5230624,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +313073,Giani's,1,New Delhi,"Qutub Tiffin, Ten Style Mile, Kalkadas Marg, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1873875,28.5266257,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18415338,Kathi House,1,New Delhi,"F-21, Lado Sarai, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.192373,28.5278328,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18168122,Kerala Kitchen & Restaurant,1,New Delhi,"F-228, Lado Sarai, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1937384,28.527825,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18478992,Retro Kichen,1,New Delhi,"1st Floor, Opposite Police Station, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1799022,28.5213242,"Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18168124,The China Town,1,New Delhi,"F-117, Lado Sarai, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.192244,28.525991,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18414506,The Urban Dhaba,1,New Delhi,"F-703, Lado Sarai, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1937245,28.5278198,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18409207,Twenty Four Seven,1,New Delhi,"M/S Qutab Service Station, IOC Pump, Opposite STC & MMTC Housing Colony, Mehrauli, New Delhi",Mehrauli,"Mehrauli, New Delhi",77.1898485,28.5239134,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +6341,McDonald's,1,New Delhi,"Ground Floor, Metro Walk Mall, Rohini, New Delhi","Metro Walk Mall, Rohini","Metro Walk Mall, Rohini, New Delhi",77.1135938,28.7240647,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,91 +1951,Moti Mahal Delux Tandoori Trail,1,New Delhi,"GA-7 & 8, Metro Walk Mall, Rohini, New Delhi","Metro Walk Mall, Rohini","Metro Walk Mall, Rohini, New Delhi",77.1136837,28.7240733,"North Indian, Mughlai, Chinese",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.2,Orange,Average,151 +250,Pizza Hut,1,New Delhi,"FA 7 & 8, Metro Walk Mall, Sector 11, Rohini, New Delhi","Metro Walk Mall, Rohini","Metro Walk Mall, Rohini, New Delhi",77.1136837,28.7241629,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,No,No,No,3,2.8,Orange,Average,83 +312753,Dill's Chawla Chik-Inn,1,New Delhi,"1843, Ghitorni, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1444781,28.494557,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +312983,Tandoori Zaaika,1,New Delhi,"Main Road, Aaya Nagar, Near Honda Showroom, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1280511,28.4785954,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +18492029,Aap Ki Khatir,1,New Delhi,"Near Ghitorni Metro Station, Near MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1482134,28.4932341,"Mughlai, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489541,Aggarwal Sweets,1,New Delhi,"Main Market, Ghitorni, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1459577,28.493198,"Mithai, South Indian, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18486862,Baskin Robbins,1,New Delhi,"The Gallery, New Manglapuri, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1663774,28.5009424,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18492025,Bikaner Sweets,1,New Delhi,"Mandi Gaon Road, Sultanpur, Near, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1651082,28.4940407,"Mithai, North Indian, South Indian, Chinese, Street Food, Bakery",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18352672,Bollywood Khana,1,New Delhi,"Shop 2, Arjangarh Metro Station, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1257624,28.4798478,"North Indian, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489825,Cake And Bakes,1,New Delhi,"Main Market, Ghitorni, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1449374,28.4941305,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18340302,Cake Point,1,New Delhi,"House 709-D, Ghitorni, Near MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1501341,28.4945103,"Bakery, Desserts",600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,0 +18489819,Chinese Corner,1,New Delhi,"Main Market, Ghitorni, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1451213,28.4940831,Chinese,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18175297,Choudhary Dhaba,1,New Delhi,"Main Market, Ghitorni, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1462741,28.4930732,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18034037,Green Chick Chop,1,New Delhi,"Khasara Number 580, Sultanpur, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.164633,28.4932439,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18175282,Green Chick Chop,1,New Delhi,"Near Air Force Staion Arjangarh, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1208414,28.4786827,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18489532,Gujjar Dhaba,1,New Delhi,"Arjangarh, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.124642,28.4801014,"Mughlai, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18277178,Hotel Aditi,1,New Delhi,"Shop 3, Khasra 385, Near Union Bank, 100 Feet Road, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.14572687,28.49366438,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18408079,JMD Food Palace,1,New Delhi,"Shasta 388-369, Chaudhary Market, Sultanpur, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1603368,28.4975958,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18232989,Kitchen Namaste,1,New Delhi,"Khatana Market, Near Sultanpur Metro Station, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1618543,28.4997301,"North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18492033,Lajawab Chicken & Fish Fry,1,New Delhi,"843/1, Opposite Metro Pillar 116, Ghitorni, Near MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1465358,28.4925721,Mughlai,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489832,Lotus Kitchen,1,New Delhi,"Near Post Office, Main Market, Ghitorni, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1444856,28.4945886,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18467388,Manami Japanese Restaurant,1,New Delhi,"Avalon Hotel, Near Sultanpur Metro Station, Sultanpur, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1604883,28.4968258,Japanese,1000,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,0 +18175299,Manna Sweets & Restaurant,1,New Delhi,"Main Market, Ghitorni, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.14563056,28.49609444,"Mithai, Bakery, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18337908,Moets Curry Pot,1,New Delhi,"Khasra 382, Shree Shyam Property, 100 Feet Road, Ghitorni, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1442598,28.4996281,"North Indian, Chinese, Italian",1200,Indian Rupees(Rs.),No,No,No,No,3,0,White,Not rated,1 +18463608,Mr. Sub,1,New Delhi,"The Gallery on MG, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1663257,28.500868,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18489836,New Gaurav Dhaba,1,New Delhi,"New Mangalapuri, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1682117,28.5020291,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18277163,Pandit Ji Ki Apni Rasoi,1,New Delhi,"Near Post Office, Main Market, Ghitorni, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1443624,28.4945867,North Indian,250,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,2 +18489545,Rajdhani Restaurant,1,New Delhi,"Main Road, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.126809,28.5456553,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18277176,Saraswati Food Corner,1,New Delhi,"Shop 240, 100 Feet Road, Ghitorni Village, Near, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1457322,28.494763,"Chinese, North Indian, South Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18175278,Shri Balaji Bhojnalaya,1,New Delhi,"Main Market, Ghitorni, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1443655,28.4945672,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18489808,Swadist Bhojnalaya,1,New Delhi,"Shop 240, Ghitorni Village, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.145774,28.494662,"Chinese, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18446867,Swiss Gourmessa,1,New Delhi,"Khasra 361/16, Sultanpur Village, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.162106,28.4960891,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18486879,Truly Yours,1,New Delhi,"Khasra 368, Sultanpur, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1603672,28.4975835,"North Indian, Street Food, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489852,Uttrakhand Hotel,1,New Delhi,"Khatana Market Sultanpur, Near Gurudwara, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1606287,28.4949478,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489804,Vandana Food Corner,1,New Delhi,"100 Feet Road, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1457079,28.4946506,"Fast Food, North Indian, South Indian",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489802,Zaika Biryani,1,New Delhi,"Main Market, Ghitorni, MG Road, New Delhi",MG Road,"MG Road, New Delhi",77.1457358,28.4936685,"Mughlai, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +3207,Buzz,1,New Delhi,"Ground Floor, MGF Metropolitan Mall, Saket, New Delhi","MGF Metropolitan Mall, Saket","MGF Metropolitan Mall, Saket, New Delhi",77.22022153,28.52954866,"North Indian, Chinese, Italian, Finger Food",2000,Indian Rupees(Rs.),No,Yes,No,No,4,3.4,Orange,Average,220 +4752,Lighthouse 13,1,New Delhi,"13, 1st Floor, MGF Metropolitan Mall, Saket, New Delhi","MGF Metropolitan Mall, Saket","MGF Metropolitan Mall, Saket, New Delhi",77.21950337,28.53013602,"North Indian, European, Chinese",2100,Indian Rupees(Rs.),Yes,No,No,No,4,3.4,Orange,Average,570 +4830,Berco's,1,New Delhi,"2nd Floor, MGF Metropolitan Mall, Saket, New Delhi","MGF Metropolitan Mall, Saket","MGF Metropolitan Mall, Saket, New Delhi",77.2200822,28.5293802,"Chinese, Thai",1100,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,565 +4341,The Great Kabab Factory,1,New Delhi,"1st Floor, MGF Metropolitan Mall, Saket, New Delhi","MGF Metropolitan Mall, Saket","MGF Metropolitan Mall, Saket, New Delhi",77.22012531,28.52937369,"North Indian, Mughlai",2200,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.5,Yellow,Good,498 +307237,The Tea Place by Manjushree,1,New Delhi,"8, Ground Floor, MGF Metropolitan Mall","MGF Metropolitan Mall, Saket","MGF Metropolitan Mall, Saket, New Delhi",77.21996941,28.52987562,"Cafe, Beverages",700,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,92 +18260028,Victoria,1,New Delhi,"19, Ansari Road, Ring Road, MGM Club, Daryaganj, New Delhi","MGM Club, Daryaganj","MGM Club, Daryaganj, New Delhi",77.242985,28.6465486,"North Indian, Chinese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,20 +18317481,Aces - The Card Room,1,New Delhi,"19, Ansari Road, Ring Road, MGM Club, Daryaganj, New Delhi","MGM Club, Daryaganj","MGM Club, Daryaganj, New Delhi",77.2431646,28.6463865,Finger Food,2000,Indian Rupees(Rs.),Yes,No,No,No,4,0,White,Not rated,2 +18317473,Curzon - The Royal Bar,1,New Delhi,"19, Ansari Road, Ring Road, MGM Club, Daryaganj, New Delhi","MGM Club, Daryaganj","MGM Club, Daryaganj, New Delhi",77.2430748,28.6464675,Finger Food,1000,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,0 +18317479,London Eye - The Open Lounge,1,New Delhi,"19, Ansari Road, Ring Road, MGM Club, Daryaganj, New Delhi","MGM Club, Daryaganj","MGM Club, Daryaganj, New Delhi",77.2430748,28.6464675,Finger Food,2000,Indian Rupees(Rs.),Yes,No,No,No,4,0,White,Not rated,0 +18317476,Lord's - The Sports Lounge,1,New Delhi,"19, Ansari Road, Ring Road, MGM Club, Daryaganj, New Delhi","MGM Club, Daryaganj","MGM Club, Daryaganj, New Delhi",77.2431197,28.6463374,Finger Food,2000,Indian Rupees(Rs.),Yes,No,No,No,4,0,White,Not rated,1 +18317483,Viceroy - The Coffee Shop,1,New Delhi,"19, Ansari Road, Ring Road, MGM Club, Daryaganj, New Delhi","MGM Club, Daryaganj","MGM Club, Daryaganj, New Delhi",77.2431646,28.6463865,Cafe,1000,Indian Rupees(Rs.),No,No,No,No,3,0,White,Not rated,0 +312576,Munch Nation,1,New Delhi,"Model Town 1, New Delhi",Model Town 1,"Model Town 1, New Delhi",77.1957717,28.7053075,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,Yes,Yes,No,1,3.8,Yellow,Good,727 +5347,"34, Chowringhee Lane",1,New Delhi,"B-10, Opposite Metro Pillar 21, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1901231,28.7046135,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,62 +300945,Any Time Food,1,New Delhi,"F-14/16, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1906165,28.7060386,"Fast Food, Beverages",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,52 +300934,Bikaner Sweet House,1,New Delhi,"F-14/17, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1907064,28.7059577,Mithai,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,16 +3223,Domino's Pizza,1,New Delhi,"F-14/12 A, Upper Ground Floor, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1899876,28.7058889,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,94 +307554,Giani,1,New Delhi,"F-14/17, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1905267,28.7057614,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,39 +967,Grand Plaza,1,New Delhi,"B-1, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1900774,28.7051811,"North Indian, Chinese, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,255 +6196,Great Wall,1,New Delhi,"F-14/55, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1914251,28.7084444,"North Indian, Mughlai, Chinese",1200,Indian Rupees(Rs.),No,No,No,No,3,2.7,Orange,Average,47 +18381220,Healthy Food Station,1,New Delhi,"Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1916048,28.7082825,"Salad, Healthy Food, Burger, Italian, Continental, Chinese, North Indian, Beverages",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,25 +2491,Hostess Tasty Bites,1,New Delhi,"F Block, Near Mother Dairy Booth, Ramlila Ground, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.190546,28.7065192,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,16 +1041,Hot Pot,1,New Delhi,"F Block, Near Mother Diary, Opposite Ramlila Ground, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1907078,28.7068586,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,105 +982,Kabab Factory,1,New Delhi,"F-14/55, Ground Floor, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1914273,28.7086256,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,12 +18352186,Keventers,1,New Delhi,"14/16, Main Market, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.190347,28.7060128,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,17 +9380,Krishna Sweet House,1,New Delhi,"H-4/7, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1904379,28.7058031,"Mithai, South Indian",200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,32 +1303,Mitraz,1,New Delhi,"F-14/7, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1898978,28.7064175,"North Indian, Chinese",850,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.4,Orange,Average,101 +18168462,Nut Khut Chaats & Snacks,1,New Delhi,"14/1-F, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1905958,28.7066366,"Fast Food, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,8 +311734,Subway,1,New Delhi,"F-14/14, Main Market, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.190347,28.7061024,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,68 +2291,The Host,1,New Delhi,"F Block, Behind Mother Dairy, Opposite MCD School Gate, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.19147,28.7074189,Chinese,450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,20 +9427,Chacha Di Hatti,1,New Delhi,"F Block, Near Mother Dairy, Ramlila Ground, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1902762,28.7059747,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,78 +5874,Cocoberry,1,New Delhi,"H-4/2, Main Market, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1899876,28.7050829,Desserts,300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,62 +3375,Eating Corner,1,New Delhi,"F-14/19, Central Market, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1908861,28.7057958,"North Indian, Fast Food, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,142 +312353,El Posto,1,New Delhi,"F-14/20, Shop 1, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1908861,28.7057958,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,41 +180,McDonald's,1,New Delhi,"F-14 & 15, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1901224,28.7059465,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,122 +18057822,Pizza Station,1,New Delhi,"Opposite Main Gate Shalimar Park, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1908398,28.7072177,Pizza,300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,20 +6607,Puri Bakers,1,New Delhi,"F-14/17, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1906614,28.7059982,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,128 +18247031,JAIL - Behind The Bar,1,New Delhi,"B-8, Model Town 2, New Delhi",Model Town 2,"Model Town 2, New Delhi",77.1900774,28.705002,"North Indian, Chinese, Continental, Italian",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,155 +18264447,Curry Shurry,1,New Delhi,"G-4, Main Market, Opposite ICICI Bank, Model Town 3, New Delhi",Model Town 3,"Model Town 3, New Delhi",77.1843721,28.7070075,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,28 +300911,Frontier,1,New Delhi,"D-2/15, Shopping Zone, Model Town 3, New Delhi",Model Town 3,"Model Town 3, New Delhi",77.1854054,28.7094795,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +4090,Hari Om Bhojnalaya,1,New Delhi,"C-1, Opposite HDFC Bank, Model Town 3, New Delhi",Model Town 3,"Model Town 3, New Delhi",77.1847764,28.7084342,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,21 +5729,Nirmal's,1,New Delhi,"Opposite NIIT, D Park, Model Town 3, New Delhi",Model Town 3,"Model Town 3, New Delhi",77.1853155,28.7092918,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,9 +309704,Sardar A Pure Meat Shop,1,New Delhi,"G-8, Shop 6, Near Punjab National Bank, Model Town 3, New Delhi",Model Town 3,"Model Town 3, New Delhi",77.1845518,28.7077411,"Raw Meats, Fast Food, North Indian",150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,13 +964,The Dragon Hucks,1,New Delhi,"D-2/12, Main Market, Model Town 3, New Delhi",Model Town 3,"Model Town 3, New Delhi",77.1853155,28.7092918,Chinese,800,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,97 +307333,Green Chick Chop,1,New Delhi,"G-4, Main Market, Model Town 3, New Delhi",Model Town 3,"Model Town 3, New Delhi",77.1843721,28.7070075,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,38 +5765,New Arjun Bombay Pav Bhaji,1,New Delhi,"D-2, Model Town 3, New Delhi",Model Town 3,"Model Town 3, New Delhi",77.1849561,28.7084514,Street Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,234 +18037821,Sweeter Delight,1,New Delhi,"G-3/67, Model Town 3, New Delhi",Model Town 3,"Model Town 3, New Delhi",77.1853604,28.7093409,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18400738,Madaari,1,New Delhi,"G-1, Near Azadpur Metro Station, Model Town 3, New Delhi",Model Town 3,"Model Town 3, New Delhi",77.18417834,28.70696168,"North Indian, Chinese, Continental, Italian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,4.3,Green,Very Good,113 +307730,Amritsari Express,1,New Delhi,"Food Court, 2nd Floor, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1467199,28.656862,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,33 +305251,Barista,1,New Delhi,"Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1467244,28.657132,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,18 +312087,Baskin Robbins,1,New Delhi,"Ground Floor, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1466016,28.6569524,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,6 +18070503,Bikano's Chat Cafe,1,New Delhi,"Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1467395,28.6568605,"Street Food, South Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,31 +18454460,Burger Singh,1,New Delhi,"Kitchen 6B, DEL 15 Food Court, 2nd Floor, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1471307,28.6571714,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,19 +18419902,Cafe Grub,1,New Delhi,"Ground Floor, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1466243,28.6567691,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,13 +307356,Chicago Pizza,1,New Delhi,"Food Court, 2nd Floor, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1467447,28.6568454,Pizza,800,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,48 +8580,Cocoberry,1,New Delhi,"67, 2nd Floor, Food Court, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.146731,28.656802,Desserts,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,25 +18324914,Dosa Plaza,1,New Delhi,"Food Court, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1467418,28.6568816,South Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,13 +300473,Karim's,1,New Delhi,"67, Food Court, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1468835,28.6567624,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,79 +306250,Kebab Xpress,1,New Delhi,"2nd Floor, Del15 Food Court, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1467374,28.6568545,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,32 +18356784,Keventers,1,New Delhi,"Food Court, Moments Mall, Patel Road, Near Kirti Nagar Metro Station, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1467208,28.6568576,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,11 +8373,KFC,1,New Delhi,"12 & 13, 2nd Floor, Food Court, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1467938,28.6571438,"American, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,87 +308101,Paranthas 21,1,New Delhi,"Food Court, Second Floor, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1468714,28.6568519,"North Indian, Street Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,28 +8840,Subway,1,New Delhi,"Food Court, 2nd Floor, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.146751,28.6570013,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,69 +18228870,Wow! Momo,1,New Delhi,"Shop 167, Food Court, 2nd Floor, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1469278,28.6571824,"Tibetan, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,41 +7066,Berco's,1,New Delhi,"Food Court, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1467263,28.6568579,"Chinese, Thai",1100,Indian Rupees(Rs.),No,Yes,No,No,3,3.5,Yellow,Good,120 +305479,Dunkin' Donuts,1,New Delhi,"14, Food Court, 2nd Floor, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.146741,28.6568576,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,107 +8845,Giani's,1,New Delhi,"2nd Floor, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.146642,28.6568212,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,33 +7509,The Beer Cafe,1,New Delhi,"218 & 219, 2nd Floor, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1466576,28.6570681,"Finger Food, North Indian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,371 +302715,Basil Tree,1,New Delhi,"223, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1469965,28.656931,"North Indian, Italian, Chinese",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.4,Red,Poor,96 +18241509,Chaayos,1,New Delhi,"Ground Floor, Moments Mall, Patel Road, Next to Kirti Nagar Metro Station, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.146758,28.6569808,"Cafe, Tea",400,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,60 +18277003,QD's Restaurant,1,New Delhi,"Food Court, 2nd Floor, Moments Mall, Kirti Nagar, New Delhi","Moments Mall, Kirti Nagar","Moments Mall, Kirti Nagar, New Delhi",77.1468497,28.6571509,"Chinese, North Indian, Fast Food, Italian",800,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,137 +7547,Ada e Handi Restaurant,1,New Delhi,"141, South Moti Bagh Market, Moti Bagh, New Delhi",Moti Bagh,"Moti Bagh, New Delhi",77.1701749,28.5796973,"Mughlai, North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,34 +301236,Darjeeling Momos,1,New Delhi,"155, Near Sadhu Vaswani School, South Moti Bagh, Moti Bagh, New Delhi",Moti Bagh,"Moti Bagh, New Delhi",77.1706691,28.5799686,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,22 +18082630,Ingredients,1,New Delhi,"Shop 4, Moti Bagh, New Delhi",Moti Bagh,"Moti Bagh, New Delhi",77.18306556,28.57900639,North Indian,750,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,27 +7548,Al Quresh,1,New Delhi,"160, South Moti Bagh Market, Moti Bagh, New Delhi",Moti Bagh,"Moti Bagh, New Delhi",77.1702647,28.5799748,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,62 +310419,Angels in my Kitchen,1,New Delhi,"Shop 139, South Moti Bagh Market, Opposite Anand Niketan, Moti Bagh, New Delhi",Moti Bagh,"Moti Bagh, New Delhi",77.1701299,28.5795586,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,57 +4634,Aapki Rasoi,1,New Delhi,"5, DLF, Industrial Area, Near Metro Station, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1420513,28.6575224,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,15 +18228874,Bats On Delivery,1,New Delhi,"DLF Industrial Area, Near Moti Nagar Metro Station, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1408316,28.6595295,"North Indian, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,17 +18433904,Bimbo Cakes,1,New Delhi,"Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",0,0,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +312145,Burger Bros,1,New Delhi,"Shop 1/20, Sabji Market, Near Metro Station, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.142103,28.6581968,"Fast Food, Burger",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,21 +304585,Chinese Food Corner,1,New Delhi,"5/29, Opposite Community Centre, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1397456,28.6590321,"Chinese, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,20 +312916,CL Snacks,1,New Delhi,"A-12/15, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1399797,28.6567779,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +313006,Kapoor's Sanjha Chulha,1,New Delhi,"16/9, Near Sudershan Park Pul, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1401443,28.6578471,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +305861,King's,1,New Delhi,"4 DLF, Industrial Area, Near Moti Nagar Metro Station, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.14251,28.6576259,Ice Cream,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,7 +9026,Kumar Hotel,1,New Delhi,"Opposite Fun Cinema, Near Metro Station, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1395053,28.6567194,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,57 +309178,Kumar Pastry Shop,1,New Delhi,"6/33, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1414135,28.658983,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,31 +18249097,Midnight Adda,1,New Delhi,"East Punjabi Bagh, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.139708,28.6594663,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,6 +308880,Mughlaai Daawat,1,New Delhi,"H 2, Bali Nagar, Ramesh Nagar, Near, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1414048,28.6617937,"North Indian, Mughlai, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,8 +18382113,Pindiwala,1,New Delhi,"Shop 72, DLF Industrial Area, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",0,0,Mughlai,500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +18241861,Pipes & Hipes,1,New Delhi,"Shop 29, 1st Floor, Opposite Metro Pillar 301, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1433724,28.6588206,"North Indian, Chinese, Fast Food",900,Indian Rupees(Rs.),Yes,No,No,No,2,3,Orange,Average,8 +310162,Sai Rasoi,1,New Delhi,"Shop 1, D-1, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",0,0,"Chinese, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,9 +303589,Snaxpress Tastes & Cakes,1,New Delhi,"2/49, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1399344,28.6577012,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +311459,Veggie Adda,1,New Delhi,"8/20, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1398511,28.6590028,"North Indian, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,25 +9053,C L Corner,1,New Delhi,"A-12/18, Near Fun Cinema, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1399823,28.6566565,Street Food,100,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,85 +312893,Chin 10,1,New Delhi,"C-111, New Moti Nagar, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1411461,28.6570966,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,53 +18273640,Kati Roll Cottage,1,New Delhi,"Shop 3, C-103, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1409215,28.6594485,Fast Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,39 +308130,Kings Kulfi,1,New Delhi,"Main Road, Below Metro Station, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1424685,28.6576448,Ice Cream,150,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,39 +5663,Paramjeet Machi Wala,1,New Delhi,"WZ-1, Opposite Metro Station, Basai Darapur Road, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1396116,28.6562368,"Seafood, North Indian",700,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,99 +18247005,Rajan Corner,1,New Delhi,"6/27, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1414608,28.6587838,South Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,20 +18449827,Amit Dhaba,1,New Delhi,"Shop 28, Sudama Market, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1389292,28.6576159,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18342574,Apni Rasoi,1,New Delhi,"Shop 5, DLF, Near Moti Nagar Metro Station, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1421854,28.6575323,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18391689,Chap Corner,1,New Delhi,"A/158, Near Jhule Lal Temple, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",0,0,Street Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304573,Chinese Corner,1,New Delhi,"19, Main Market, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1428234,28.6588187,"Fast Food, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304586,Evergreen Punjabi Swad,1,New Delhi,"3/32, Near Fun Cinema, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1392457,28.6574122,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18449629,Giani,1,New Delhi,"Shop 5, DLF, Near Moti Nagar Metro Station, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1422037,28.6576022,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18451179,Hot & Hot Shudhir Chinese Point,1,New Delhi,"5/8, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1411461,28.6581714,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18451158,Hungerz Hub,1,New Delhi,"8/30, Sanatan Dharm Mandir, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1389966,28.6594736,"Burger, Pizza, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18451166,Magic Mo:Mo Corner,1,New Delhi,"Shop 1/20, Sabji Market, Near Metro Station, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1419683,28.6582366,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18238245,Malhotra's Zayeeka,1,New Delhi,"Shop 23, Sudama Market, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1391896,28.6574573,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +308110,Moji Dhaba,1,New Delhi,"T 27, 28, 29, Super Market, Opposite Milan Cinema, New Moti Nagar, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1461711,28.6621083,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312213,Naughty 9 Kitchen & Bar,1,New Delhi,"31, DLF, Metro Pillar No. 314, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1414553,28.6570186,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18410370,Street Chaat Chatoron Ka Adda,1,New Delhi,"B-183, New, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",0,0,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18236975,Syall Kotian Da Dhaba,1,New Delhi,"A-201, New, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",0,0,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18471517,Taaj Kitchen,1,New Delhi,"69/6-A, Najafgarh Road, Opposite Moments Mall, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",0,0,"Asian, North Indian, Mughlai",700,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,1 +304469,Tirath Sweets,1,New Delhi,"Main Road, Main Market, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1400711,28.6570788,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18451144,Tummyy Tull,1,New Delhi,"Main Market, Moti Nagar, New Delhi",Moti Nagar,"Moti Nagar, New Delhi",77.1424589,28.6585987,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +4084,34 Parkstreet Lane,1,New Delhi,"Shop 7, Mukherjee Tower, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2152884,28.7112918,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +310947,Bhikaram Bhujawala,1,New Delhi,"1995, Main Road, Near Nulife Hospital, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2086741,28.7006026,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +310989,Chawla The Pastry Palace,1,New Delhi,"Ground Floor, Vardhman Central Mall, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2190493,28.7094307,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +18358295,Food Box,1,New Delhi,"House 70, Shop 2, Indra Vihar, Opposite International Girls Hostel, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2121775,28.7064006,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18317756,Foody Box,1,New Delhi,"Shop 2, Indra Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2137611,28.70477557,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +310936,Giani,1,New Delhi,"265, Main Road, Hakikat Nagar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2081351,28.699566,"Ice Cream, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +308796,Green Chick Chop,1,New Delhi,"A-18, Plot 2, Young Chamber Commercial Complex, Behind Batra Cinema, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2160401,28.7117849,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +18460320,Heaven's Shawarma,1,New Delhi,"B12, Near Batra Cinema, Main Road, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",0,0,Lebanese,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18241893,Hyderabad Spl. Chicken Biryani Point,1,New Delhi,"Batra Cinema Complex, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2151578,28.7105973,Mughlai,350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18363053,Keshar,1,New Delhi,"516, Parmanand Colony, Near Dusshera Ground, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2118241,28.7102543,"North Indian, South Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +310997,Madras Cafe,1,New Delhi,"Shop 4, 265 Main Road, Hakikat Nagar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2083401,28.6995605,"South Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,11 +6629,Milan Chole Bhature,1,New Delhi,"1341, Near Batra Cinema, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.215591,28.7129957,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +302685,New Laxmi Sweets,1,New Delhi,"Opposite Batra Hospital, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2146979,28.7110956,"South Indian, Chinese, Fast Food, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +18241860,Pasta Hub,1,New Delhi,"1341, Batra Complex, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2156863,28.7123548,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +2920,Patna Roll Center,1,New Delhi,"7, Mukherjee Tower, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2151419,28.7111617,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +18238281,Refuel,1,New Delhi,"Main Road, Indira Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2123452,28.7064044,Beverages,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,6 +18204485,Saara Veg,1,New Delhi,"A-19, Commercial Complex, Behind Batra Cinema, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2163058,28.7115878,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18126086,SGF - Spice Grill Flame,1,New Delhi,"Bhai Parmanand Colony, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2077758,28.7103677,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,8 +9031,Shivam Corner,1,New Delhi,"7, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2144524,28.7108844,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,14 +18254532,Swad Mubarak,1,New Delhi,"Opposite ICICI Bank, Main Road, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2155461,28.7125884,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,11 +18380219,The Little Fork,1,New Delhi,"1412, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2162337,28.7135608,"Chinese, North Indian",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,5 +18258473,The Metro Fast Food,1,New Delhi,"Next to Signature View Apartments, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2137944,28.7091523,Chinese,250,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,6 +303602,Tibet Kujing,1,New Delhi,"165, Block C, Ground Floor, Gandhi Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2120877,28.7054069,"Chinese, Tibetan",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,11 +18396163,Yummy Adda,1,New Delhi,"1333, Near Batra Cinema, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.21613,28.7120622,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,14 +18485962,Bawarchi's Canteen,1,New Delhi,"Sewa Kutir Complex, Banda Bahadur Marg, Hakikat Nagar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.21114504,28.70302109,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421485,Bikaner Restaurant,1,New Delhi,"Shop 264, Near Hakikat Nagar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2081351,28.699566,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18363044,Bikaner Sweets Chaat cafe,1,New Delhi,"G 25, Vardhman Central Mall, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2184653,28.7092739,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424171,Brijwasi,1,New Delhi,"Building 1A, Shop 2, Batra Cinema Complex, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.215591,28.7122793,"North Indian, Chinese, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18363051,Chaap Chaska,1,New Delhi,"252/4, Parmanand Colony, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2090651,28.7103505,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18449788,Delhi Chaap Express,1,New Delhi,"Shop 16, Dhaka Mini Market, Parmanand Colony, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2054728,28.7102021,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18466410,Delhi Chaat Bhandar,1,New Delhi,"Indira Vikas Colony, Near Nirankari School, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2087734,28.7130677,Street Food,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18107851,Delhite Ptisserie,1,New Delhi,"413, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2150185,28.7102675,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18466408,Desi Dhaba,1,New Delhi,"Indira Vikas Colony, Near Nirankari School, Indira Vikas Colony, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2090968,28.7142165,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18466400,Desi Thaat Amritsari Naan,1,New Delhi,"14/1, Indira Vikas Colony, Near Nirankari School, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2091154,28.7146792,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18361765,Dhaba Express,1,New Delhi,"Shop 10, DDA Market, A Block, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2214682,28.7115817,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424169,Flavours Kitchen,1,New Delhi,"GF-1, A-12/13, Ansal Building, Commercial Complex, Near Batra Cinema, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2159952,28.7118254,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18449653,Food Campus,1,New Delhi,"Plot 2706, Main Road, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2163995,28.7140298,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449786,Fresh Fast Food,1,New Delhi,"G-92, Vardhman Central Mall, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2187711,28.7091683,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18466675,Gungun Tiffin Services,1,New Delhi,"Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449647,Happy Italiano,1,New Delhi,"Near Batra Cinema, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2148134,28.7119855,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18361779,Haryana Bhojnalaya,1,New Delhi,"G 26, Vardhman Central Mall, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2187133,28.7092358,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18363048,Hasty Tasty,1,New Delhi,"Opposite Batra Cinema, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2146029,28.7110206,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +310954,Inam Muradabadi,1,New Delhi,"G-90, Vardhman Central Mall, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2187785,28.7089822,Mughlai,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +312413,Just In,1,New Delhi,"G-103, Vardhaman Mall, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2190942,28.7094798,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18361767,Jyoti Dhaba,1,New Delhi,"Opposite Vardhman Central Mall, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2187376,28.7099879,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421473,Lasha Chinese Food,1,New Delhi,"Shop 69, Indra Vihar, Opposite Girls Hostel, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2122224,28.7066288,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +310995,Lasha Chinese Food,1,New Delhi,"Shop 228, Block B, Central Park, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2211601,28.7111101,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18421475,Lily Tasty Fast Food,1,New Delhi,"58, Indra Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2122334,28.7062833,"North Eastern, North Indian, Chinese",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18418268,Maa Vaishno Dinesh Dhaba,1,New Delhi,"B-5, Ansal Building, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2156892,28.7106791,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18421459,Madras Cafe,1,New Delhi,"B4 Ansal Building, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2157015,28.7105709,"South Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18361771,NIK's Chicken Corner,1,New Delhi,"G 88, Vardhman Central Mall, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2188042,28.7089927,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18241864,Om Shanti Foods,1,New Delhi,"G-23, Vardhman Central Mall, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2185861,28.7094348,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449657,Panj Tara,1,New Delhi,"A-17, Behind Batra Cinema Complex, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2160901,28.7117332,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18396177,Pasta Pizza & Roll Hut,1,New Delhi,"4/10, Indra Vikas Colony, Nirankari Bhavan, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2090421,28.7140827,"Italian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449639,Pheva Tandooris,1,New Delhi,"Batra Complex, Near UCO Bank, Mukherjee Nagar",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2156916,28.7103288,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18357954,Punjabi Delight,1,New Delhi,"863, Gandhi Nagar Road, Near Batra Cinema, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.215591,28.7126375,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310965,Punjabi Parantha Station and Punjabi Thali,1,New Delhi,"Behind Batra Cinema, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.215591,28.7122793,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18418278,Punjabi Paratha Station,1,New Delhi,"Near ICICI Bank, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.215591,28.7122793,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18449664,Raja Rasoi,1,New Delhi,"Vardhman Central Mall, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2187996,28.7093643,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18480435,Rollacious,1,New Delhi,"834, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",0,0,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +311009,Singh Chicken,1,New Delhi,"Opposite Batra Cinema, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2155653,28.7104357,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +310988,Special Tea Point,1,New Delhi,"Ground Floor, Vardhman Central Mall, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2188247,28.709454,"Street Food, North Indian",50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421461,Spl. Flavour Sodas & Fruit shakes,1,New Delhi,"318, Bhai Parmanand Colony, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.208094,28.7102514,Juices,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310952,Student Corner,1,New Delhi,"G-94, Vardhman Central Mall, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2188247,28.7091854,Fast Food,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449667,Taneja Corner,1,New Delhi,"Vardhman Central Mall, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2188953,28.7093068,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449661,Taste Zone,1,New Delhi,"Opposite Vardhman Central Mall, Nehru Vihar, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2192812,28.7095569,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449643,Tea Point,1,New Delhi,"Opposite Batra Cinema Complex, Mukherjee Nagar",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2146844,28.7120416,"Beverages, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +300791,West Bangal Kolkata Hot Kathi Rolls,1,New Delhi,"Shop 6, Near Batra Cinema, Mukherjee Nagar, New Delhi",Mukherjee Nagar,"Mukherjee Nagar, New Delhi",77.2155461,28.7111556,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +300264,Asli Alam Muradabadi Biryani Centre,1,New Delhi,"208, Dr Kapoor Wali Gali, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1715403,28.5581521,Biryani,250,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,22 +18425751,Cafe Rasoi,1,New Delhi,"Shop 7&8, Rama Market, Munirka Village, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1713073,28.5589002,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,11 +7388,Chinese Food,1,New Delhi,"92/G1, Ground Floor, Outer Ring Road, Pratap Market, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1742101,28.5568282,"Fast Food, Street Food, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,8 +311485,Green Chick Chop,1,New Delhi,"Shop 9, Shopping Complex, DDA Marg, Near Canara Bank, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1750799,28.5554352,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,10 +2870,Hasty Tasty,1,New Delhi,"DDA Flats, Super Bazar, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1759375,28.5550108,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,86 +18397908,Hunter's Kitchen,1,New Delhi,"253, B-1, Ground Floor, Behind Multi Level Parking, Rama Market, Munirka Village, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.171471,28.5581944,"North Eastern, North Indian",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3,Orange,Average,6 +312765,Manahang Restaurant,1,New Delhi,"230-B, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1710298,28.5569323,"Chinese, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,12 +5879,Mezbaan Restaurant,1,New Delhi,"383/1-B, Mir Singh Complex, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1744294,28.5557779,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,135 +304621,Moon Light Sweets,1,New Delhi,"Shop 1-A, Shopping Centre 2, DDA Flats, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.173877,28.551484,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,16 +18472788,North East Castle,1,New Delhi,"Shop 7, Capital Court, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1759362,28.5550022,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +309510,Pizza Point,1,New Delhi,"Baba Gang Nath Market, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1720143,28.556519,"Fast Food, Pizza",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,10 +300259,Roll Point,1,New Delhi,"551, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1716444,28.5568582,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,7 +310430,Sanjha Tandoor,1,New Delhi,"Shop 2, DDA Shopping Complex, Phase II, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1760003,28.554897,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,17 +300273,Sayyam,1,New Delhi,"209-B, Baba Ganga Nath Market, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1719392,28.5563417,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,16 +7393,Shiv Bhojnalaya,1,New Delhi,"92-G/1, Partap Market, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1741505,28.5568492,"South Indian, North Indian, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,12 +311451,Subway,1,New Delhi,"250-B/2, Opposite Vasant Vihar Bus Depot, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1707693,28.5586338,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,78 +7240,Take Away,1,New Delhi,"551-A, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1717215,28.556875,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,20 +300268,Vedanta's,1,New Delhi,"209-B/3, SS Rathi Complex, BGN Market, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1718939,28.5563192,"North Indian, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,66 +310328,Asian Chopstick,1,New Delhi,"Shop 2, 352-D, Gym Building, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1686131,28.553128,"Chinese, Thai",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,27 +309471,Chinese Delights,1,New Delhi,"12, DDA Commercial Complex, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.175016,28.5556707,"Chinese, North Indian",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,21 +18383522,Dezertfox,1,New Delhi,"Ko352/E15, Village, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1682791,28.5532273,"Bakery, Desserts",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,21 +18424615,Aggarwal Sweets,1,New Delhi,"Munirka Shopping Complex, Behind Multilevel Parking, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1751965,28.5555979,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18425758,Aggarwal Sweets,1,New Delhi,"Shop 1, Main Rama Market, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1708462,28.5588962,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18425178,Al Meraj Chicken Shop,1,New Delhi,"249, Rama Market, Munirka Village, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1707986,28.5587394,"Awadhi, Mughlai",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18354994,Chinese Food Corner,1,New Delhi,"179, Near Jain Sweet, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1729675,28.5568298,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18146362,Creative Food House,1,New Delhi,"249, Rama Market, Munirka Village, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1714827,28.5582757,"Continental, Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18425175,D.A.A.,1,New Delhi,"236, Munirka Village Baburam Chowk, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1709048,28.5569236,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18225831,Dee Cake Shop,1,New Delhi,"336, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1745474,28.5551434,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18354988,Jaca Restaurant,1,New Delhi,"212-A, Six-Ten Building, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1721867,28.5563007,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18425772,King Of Roll,1,New Delhi,"Dr. Kapoor Wali Gali, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1719215,28.5564964,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18354998,Kirti Food Plaza,1,New Delhi,"C-249, Rama Market, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1706433,28.5580838,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18354992,KT's Shik-Shack,1,New Delhi,"F-92, Hanuman Market, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1730086,28.5567681,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +309509,Namaste Restaurant,1,New Delhi,"Dr Kapoorwali Gali, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1708774,28.5586286,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18423905,Nishaj Chicken Corner,1,New Delhi,"Shop 138, Dr. Kapoor Wali Gali, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1716186,28.5566765,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18357566,Royal Bakery,1,New Delhi,"F- 92, Hanuman Market, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1727207,28.5577256,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18425768,S.R. Bakers,1,New Delhi,"Shop 210, Munirka Village, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1718111,28.5568164,Bakery,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18025119,Shahi Muradabadi,1,New Delhi,"247/A, Rama Market, Munirka, New Delhi",Munirka,"Munirka, New Delhi",0,0,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18472683,Shree Vinayaga Restaurant,1,New Delhi,"K-92, Bank Street, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1742272,28.5560668,South Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18425739,The Cake Basket,1,New Delhi,"Rama Shopno.4 Market Munirka, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1713649,28.5589502,Bakery,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18468524,The Pure Kitchen,1,New Delhi,"Near Pal Dairy, Opposite JNU, Munirka Vihar, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1901673,28.5266192,"Chinese, Continental, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18354996,The Yolmo Kitchen,1,New Delhi,"Rama Market, Near Slice of Italy, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.170693,28.5588623,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18229077,Zawlbuk,1,New Delhi,"212, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1718481,28.5566063,Tibetan,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +300275,Anupam Restaurant,1,New Delhi,"205-F, Main Road, Furniture Market, Munirka, New Delhi",Munirka,"Munirka, New Delhi",77.1732311,28.5581547,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,32 +9251,Bobby Di Punjabi Rasoi,1,New Delhi,"22, Near Health Centre, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9857462,28.6134511,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18471235,Aditya Da Vaishno Dhaba,1,New Delhi,"Arjun Park, Near Metro Pillar 58, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",77.012198,28.6180639,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +306695,Aggarwal Bikaner Sweets,1,New Delhi,"Gurgaon Road, Near Aggarwal Medicos, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",77.0036364,28.5589382,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +9281,Aggarwal Sweet Centre,1,New Delhi,"1675, Chhawla Bus Stand, Mittal Market, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9854417,28.6096384,Mithai,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18432222,Anjel China & Tibetian Food,1,New Delhi,"Chawla Gurgaon Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",77.0024495,28.5607897,"Tibetan, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18471254,Annpurna Rasoi,1,New Delhi,"Rz-11/12, Najafgarh Nagloi Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9967933,28.6283564,"North Indian, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18371414,Apni Rasoi,1,New Delhi,"Plot 2, Shyam Enclave, Main Goyla Road, Deen Pur, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9969561,28.5910043,"Mughlai, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +306678,Bajrang Misthan Bhawan,1,New Delhi,"Main Paprawat Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9869396,28.6053412,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18371416,Bake Town,1,New Delhi,"A-9, Laxmi Garden, Tuda Mandi, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9906888,28.6125711,"Bakery, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18361199,Bikaner Sweets & Restaurant,1,New Delhi,"Near Khaira Mod, Bahadurgarh Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9759687,28.6157878,"Mithai, South Indian, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312620,Brown Town Bakers,1,New Delhi,"RZ-20-21, Old Roshan Pura, Parawat Road, Near Post Office, Chawla Stand, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9847266,28.6076142,"Desserts, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18432206,Captain Food Factory,1,New Delhi,"1620-B/2 Opposite HDFC Bank, Thana Road,Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9817555,28.610581,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +311394,Cheffron Bakery,1,New Delhi,"B-26, Gopal Nagar, Main Dhansa Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9718366,28.6103695,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18471270,Chicken Darwar,1,New Delhi,"CRPF Camp, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9622705,28.6361375,"Fast Food, Mughlai",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +313349,Chili's Treat,1,New Delhi,"1247, 1/4 Thana Road, Opposite Oriental Bank of Commerce, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9807734,28.6107987,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18359302,Chilli Tadka,1,New Delhi,"Laxmi Vatika, Nagloi Road, Jal Vihar Bus Stand, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",77.0003579,28.6315566,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18352287,Chinese Food Point,1,New Delhi,"Opposite BDO Office, Gurgaon Road, Roshan Pura, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9886171,28.601061,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +9262,Chinese Temptation,1,New Delhi,"Near Delhi Gate, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9856908,28.6130492,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18469981,Dana Pani,1,New Delhi,"Gemini Park, Near Metro Pillar 63, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",77.0094083,28.6170305,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18349922,Dev Sweets & Restaurant,1,New Delhi,"Main Goyla, Deenpur Road, Near 25 Feet Road, Shyam Vihar, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",77.0028244,28.590591,"North Indian, Chinese, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18432214,Dilli Darbar Chicken Point,1,New Delhi,"Deenpur Gurgaon, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9935221,28.5906017,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310357,Food Point and Sweets Corner,1,New Delhi,"Near Tura Mandi, Old Kakrola Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9911162,28.6119984,"South Indian, Fast Food, North Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18429155,Green Chick Chop,1,New Delhi,"RZ 4, Pillar 31, Roshanpura, Gurgaon Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9858424,28.6072328,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18471319,Grover Burfee & Cakes,1,New Delhi,"301/1, Gaushala Road, Navada Bazar, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9853771,28.6095844,"Bakery, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18471263,Hans's Planet-F,1,New Delhi,"Gurgaon Road, Near Aggarwal Medicos, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",77.0025685,28.5605204,"Chinese, Fast Food, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18432200,Hotel Delhi 43,1,New Delhi,"Nagloi, Near Nirmal Vihar, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9872421,28.6210795,North Indian,700,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,0 +18430911,Kanhaiya Fast Food,1,New Delhi,"Shop 21, Bhagat Singh Market, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9858415,28.6135195,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18354672,Karol Bagh Ke Chhole Bhature,1,New Delhi,"Opposite Peer Baba, Gurgaon Road, Roshan Pura, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9890278,28.5996154,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18352275,King's Food,1,New Delhi,"Plot 2-A, Gopal Nagar Extension, Near Goodwil School, Surakhpur Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9736469,28.6159872,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +303500,Lamba Sweets Corner,1,New Delhi,"Khaira Mod, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9752946,28.6110748,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18431998,Laxmi Food Corner,1,New Delhi,"Opposite BSES Office Najafgarh, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9856999,28.6130409,"Fast Food, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18430900,Lounge Bakery,1,New Delhi,"Goyala Road, Shyam Vihar Phase 2, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",77.0006609,28.5910291,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18313125,Mehtaab Sweet Corner & Restaurant,1,New Delhi,"Vinoba Enclave, Bahadurgarh Road, CRPF Camp, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9621244,28.6360808,"North Indian, Chinese, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18430579,Melting Food Point,1,New Delhi,"Opposite Gyan Jyoti Public School, Gurgaon Road, Chhawla, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",77.0005841,28.5653143,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +8957,Mithla Dhabha,1,New Delhi,"Baba Haridas Market, Chara Mandi Chowk, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9910272,28.6121768,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +9635,Mittal Caterer,1,New Delhi,"Near Chhawala Bus Stand, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9852777,28.6091697,"Street Food, South Indian, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18352288,Mittal Restaurant & Fast Food,1,New Delhi,"32/4, Chawla Stand, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9852777,28.6091697,"Fast Food, South Indian, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18349914,NBC Nirankari Bakers,1,New Delhi,"Khaira Mod, Near Suraj Cinema, Opposite Janta Xray Lab, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9753189,28.6112347,"Pizza, Fast Food, Bakery",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18430569,Pind Balluchi,1,New Delhi,"4-B/16, Najafgarh Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",77.0117519,28.6179639,"North Indian, Mughlai",800,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,0 +18361211,Prem Chinese Fast Food,1,New Delhi,"Main Dhansa Road, Near Nanak Pyaoo, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9654941,28.6090439,Chinese,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18471287,Punjabi Rasoi,1,New Delhi,"CRPF Camp, Jharoda Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9622191,28.6359913,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304393,Punjabi Special,1,New Delhi,"Shop 35-36, Dwarka Vihar, C Block, Near Radha Krishna Vatika, Old Kakrola Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9923844,28.6098677,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18361217,Radhe Shyam Dhaba,1,New Delhi,"Main Dhansa Road, Near Nanak Pyaoo, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9638597,28.609072,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +5483,Raj Rasoi,1,New Delhi,"9, Roshan Garden, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9910765,28.6127374,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +9271,Raju De Special Paneer Wale,1,New Delhi,"1506, Chawla Stand, Gaushala Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9856215,28.6100946,North Indian,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304610,Sangeeta Dhaba,1,New Delhi,"Plot 1, Nagli Sakravati Chowk, Opposite Metro Pillar 71, Main Uttam Nagar Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",77.0076551,28.6164413,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +303537,Sat Narayan Fast Food,1,New Delhi,"Dhansa Mod, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9753796,28.6112432,"Mithai, Chinese",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18430576,Shahi Chicken Point,1,New Delhi,"Deenpur, Gurgaon Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.993457,28.5905484,Mughlai,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304405,Sharma Sweets,1,New Delhi,"Shop 1, Nangloi Stand, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9838181,28.6169779,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18471313,Shere Hind Chicken Corner,1,New Delhi,"Chhawla Stand, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9856129,28.6088552,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +306710,Shiv Shakti Dhaba,1,New Delhi,"Near Kakrola Road, Tura Mandi, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9909045,28.6123474,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18430570,Shree Shyam Sweets,1,New Delhi,"Gurgaon Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9879296,28.6024678,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +303497,Shri Shyam Ji Shudh Shakahari Bhojnalaya,1,New Delhi,"Khaira Mod, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9748922,28.6112536,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18270343,Sky Hawk,1,New Delhi,"RZ-132, 1st Floor, Near Reliance Fresh, New Roshanpura, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9877493,28.6032958,"North Indian, Chinese, Continental",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18361200,Snack Shack,1,New Delhi,"Opposite Sri Ram International School, Main Dhansa Road, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9711827,28.6101996,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18261678,Soya Bite's,1,New Delhi,"Furniture Market, Near Krishan Mandir, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9840836,28.6150289,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18317507,Soya Bite's,1,New Delhi,"9, Roshan Garden, Main Tura Mandi Chowk, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9909279,28.6124522,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +9269,Taj Mahal Dhaba,1,New Delhi,"Deenpur Main Goyla Mod, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9932051,28.5906226,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18363067,Yadav Sweets,1,New Delhi,"Opposite Shri Ram Gate, Near Sabji Mandi, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",76.9797118,28.613206,Mithai,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18371421,Yummy Chinese Food,1,New Delhi,"Opposite Vidhata Properties, Shyam Vihar Phase 2, Najafgarh, New Delhi",Najafgarh,"Najafgarh, New Delhi",77.0007571,28.5914718,Chinese,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +304809,Aggarwal Sweets Corner,1,New Delhi,"E-2 Block, Near Park Mandir Marg, Sultanpuri, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.08195768,28.69273348,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304769,Anand Sweets,1,New Delhi,"Sultanpuri Mod Market, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0690735,28.6827398,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +304803,Annapurna Sweets Palace,1,New Delhi,"K-1249, Opposite Sanjay Gandhi Hospital, Mangolpuri, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0820784,28.6934044,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18261151,Aujla's Punjabi Zaika,1,New Delhi,"A-120, Shop 4, Uday Vihar, Chander Vihar, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0700586,28.6521647,"North Indian, Chinese, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18464636,Baba Ji,1,New Delhi,"Near Naresh Park, Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.06540443,28.67897397,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18017260,Babu Soup Wala,1,New Delhi,"Near Flyover, Rohtak Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0681466,28.6818432,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304753,Baketown By Gagan Bakers,1,New Delhi,"Near Bharti Vidyalaya, Main Road, Chander Vihar, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.05472823,28.68232512,"Fast Food, Bakery",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18464641,Bala Ji Rasoi,1,New Delhi,"A-18, Naresh Park, Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.06247076,28.67583363,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304822,Bansiwala Sweets & Caterers,1,New Delhi,"Near Metro Pillar 629, Rohtak Road, Mundka, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.02933475,28.68263808,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18312665,Best Chicken Corner,1,New Delhi,"Main Rohtak Road, Near Sutan Puri More, Opposite Metro Pillar 373, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0688571,28.6823752,North Indian,650,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +9181,Bhardwaj Bakery,1,New Delhi,"Near Naresh Park, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.06424572,28.67784092,"Bakery, Pizza",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435332,Bikaner Sweets & Restaurant,1,New Delhi,"Opposite Sanjay Gandhi Hospital, Mangolpuri, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0820767,28.6927975,"Mithai, Street Food, North Indian",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18261710,Classic Chef Corner,1,New Delhi,"Opposite Metro Pillar 520, Near Mundka Metro Station, Rohtak Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.03108288,28.68202569,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18312662,Dabas Ke Special Chole Bhature,1,New Delhi,"Main Market, Mundka, Near, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0287839,28.68247071,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18322599,Daily Belly,1,New Delhi,"A-1, Swarn Park, Main Rohtak Road, Metro Pillar 486, Mundka, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0408396,28.6821182,"North Indian, South Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +9226,Deep Bakery And Cake,1,New Delhi,"3, Najafgarh Road, Opposite Krishna Mandir, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.066475,28.6803916,"Bakery, Desserts",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18434072,Dhaba NH10,1,New Delhi,"E 53, Camp 2, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",0,0,"North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +305699,Dilkhush Dhaba,1,New Delhi,"Near Flyover, Rohtak Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0695034,28.6819199,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +9194,Do Bhai Paneer Wale And Sweets,1,New Delhi,"1, Behind Police Station, Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0662951,28.6801056,Bakery,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304888,Dosa and Pizza Corner,1,New Delhi,"Sultanpuri Mod Market, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0690832,28.6833297,"South Indian, Pizza, Chinese",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +306177,Gulati Ki Rasoi,1,New Delhi,"A 111, Hari Enclave 1, Aman Vihar, Sultanpuri, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0719688,28.69123205,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18261708,JMD Family Restaurant,1,New Delhi,"Chanchal Park, Near Bus Stand, Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0228319,28.6467438,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +9173,Jyoti Sweets,1,New Delhi,"Near MG Plaza, Naresh Park, Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0625067,28.6761455,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304831,Khana Khazana,1,New Delhi,"Idgah Market, Sultanpuri, Near, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.07009997,28.68654323,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +9176,Krishna Panjabi Rasoi,1,New Delhi,"10/10, Yadav Park, Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.06082389,28.6743958,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18233572,Lazeez Zaika,1,New Delhi,"Near P K Medicals, Nilothi Mod, Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0528602,28.6646411,"North Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18464649,Mannat Chinese Fast Food,1,New Delhi,"Shop 41, Kotla Vihar, Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.02514146,28.64669598,"Chinese, Bakery",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18375389,Pizza Hot,1,New Delhi,"Shop 9, Uday Market, Chander Vihar, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.04071805,28.68209451,"Italian, Fast Food, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18466387,Raju Fast Food,1,New Delhi,"Peer Baba Chowk, Shiv Ram Park, Opposite Chitra Palace, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.06034612,28.66742137,"Street Food, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304782,Ramesh Caterers & Dhaba,1,New Delhi,"A-26, Rajneet Vihar, Main Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0721833,28.6536022,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18261719,Sethi's Express,1,New Delhi,"Shop B-5, Uday Vihar, Aggarwal Chowk, Chander Vihar, Nilothi Extension, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0713543,28.6529874,"South Indian, North Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18466389,Shahi Chicken Biryani Corner,1,New Delhi,"Near Bharti Vidyalaya, Main Road, Chander Vihar, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.08171561,28.69252378,Biryani,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18378051,Spicy Curry,1,New Delhi,"G-7, Krishna Plaza, Pocket B, Commercial Complex, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0672844,28.6812756,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +7484,Super Star Restaurant,1,New Delhi,"A6, Shiv Ram Park, Nilothi More, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.053748,28.66539,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18464634,Swagi Food Corner,1,New Delhi,"Shop 2, GRM Complex, Main Rohtak Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.06931744,28.68172684,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18464647,Taoji Ke Amratsari Naan,1,New Delhi,"Chanchal Park, Near Bus Stand, Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.02335276,28.64712056,"Fast Food, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18371391,TCW Chaat Point,1,New Delhi,"36/1, Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0642756,28.6779685,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18017240,The Food Express,1,New Delhi,"126/110, Main Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.064828,28.678402,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18464640,The Pizza Family,1,New Delhi,"126/114, Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.06413608,28.67799829,Pizza,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18261161,The Regal Chicken Corner,1,New Delhi,"Near Water Tank, Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0626796,28.6763063,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18464638,Welcome Rasoi,1,New Delhi,"Near Naresh Park, Najafgarh Road, Nangloi, New Delhi",Nangloi,"Nangloi, New Delhi",77.0654346,28.67898074,"North Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +302694,Agarwal Sweets,1,New Delhi,"Near PVR Cinema, Community Center, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1384794,28.6321812,Mithai,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +18358184,Aurangzeb Rd,1,New Delhi,"C 126, 2nd Floor, Phase 1, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.136724,28.6282528,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.4,Orange,Average,23 +8715,Bengali Sweet Corner,1,New Delhi,"3, Near PVR Cinema, Community Center, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1384323,28.6324507,"South Indian, Street Food, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +641,Cafe Coffee Day,1,New Delhi,"Ground Floor, Community Centre, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1367966,28.6287097,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,23 +308033,Chinese K. Food,1,New Delhi,"ER - 09, Near Reliance Fresh, Inderpuri, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1462701,28.6276292,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +307099,Chocowell,1,New Delhi,"E 42, Naraina Vihar, New Delhi, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.137174,28.628999,"Desserts, Bakery",150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +18312575,Choice,1,New Delhi,"Shop 1, Block CB-369, Ring Road Naraina, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1341651,28.6256939,"South Indian, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +18312652,Desi Street,1,New Delhi,"C-1C, Part-B, Naraina Ring Road, Near Kali Mata Mandir, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1354441,28.6233571,"North Indian, South Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,13 +310666,Enigma Lounge,1,New Delhi,"Hotel Excel, E-16, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1384175,28.6309493,"Chinese, North Indian",750,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,8 +7434,Flavors Of London,1,New Delhi,"WZ - 167, Naraina Village, Near Sabji Mandi, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1380897,28.6199849,"Desserts, Ice Cream, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +305859,Frontier,1,New Delhi,"E-27, Main Road, Naraina Vihar, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.137511,28.6298959,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +308037,Green Chick Chop,1,New Delhi,"Shop 21, Central Market, Phase 1, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1385567,28.631853,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,16 +18435837,Hot House Grill,1,New Delhi,"Main Road Inderpuri, Todapur, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1556191,28.6238474,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,10 +18441658,Kanshi Ram Chole Kulche Wala,1,New Delhi,"E-195, Naraina Vihar, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1559168,28.6242844,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,13 +558,Kents Fast Food,1,New Delhi,"15/5, Community Centre, Phase 1, Industrial Area, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1381832,28.6327034,"North Indian, Chinese, Fast Food",900,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,12 +300485,Paharia Meat & Chicken Shop,1,New Delhi,"RA 76/4, Main Market, Inderpuri, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1468968,28.6314816,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,12 +7416,Palji Corner,1,New Delhi,"WZ 274/A1, Main Market, Inderpuri, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.148368,28.6323154,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,30 +301927,Paratha Hi Paratha,1,New Delhi,"Ring Road, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1365287,28.6203669,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +18288199,Picasso Roof Top,1,New Delhi,"A-14, Naraina Vihar, New Delhi, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1354417,28.6268623,"Continental, European, North Indian",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,15 +301931,RK Dosa,1,New Delhi,"EA1/12, Main Market, Inderpuri, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1451395,28.6285958,South Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,12 +311385,Sandoz,1,New Delhi,"C-159, Naraina Industrial Area, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1371626,28.6291147,"Chinese, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,32 +18175322,Sardar Ji,1,New Delhi,"WZ-429, C/57, Naraina Village, Naraina, New Delhi",Naraina,"Naraina, New Delhi",0,0,"North Indian, Mughlai",120,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +7419,Satkar Fast Food,1,New Delhi,"Opposite Mother Dairy Booth 332, Inderpuri, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1462754,28.6276237,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,20 +9280,Sweetheart Cupcakes,1,New Delhi,"A-72, 1st Floor, Near DDA Complex, Naraina, New Delhi",Naraina,"Naraina, New Delhi",0,0,Desserts,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,21 +18241874,The Earthen Grill,1,New Delhi,"CB 385, Opposite Maruti Service Station, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1556452,28.6238747,"North Indian, Mughlai, Awadhi",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,14 +303250,Twenty Four Seven,1,New Delhi,"C 190, Near Picasso Hotel, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1375944,28.6299888,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,14 +313163,A Patisseries Gallery,1,New Delhi,"H-53, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.14178972,28.6286201,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18398504,Aggarwal Bikaneri Sweets,1,New Delhi,"WZ-258, Main Market, Near Pusa Gate, Inderpuri, Near Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.14808,28.6322418,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +301932,Aggarwal Sweets & Bakers,1,New Delhi,"Ring Road, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1357642,28.6223499,"Desserts, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18312572,Avatar Da Dhaba,1,New Delhi,"Ring Road Narayna, Opp Dharamshala, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1364744,28.6205175,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18371399,Bengali Restaurant,1,New Delhi,"CB, Block Ring Road, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1358184,28.6223489,"Bengali, Chinese",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18431177,Biryani Express,1,New Delhi,"C 126, Shop 20, Nariana Industrial Area, Phase 1, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.136788,28.6286826,Biryani,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18371405,Brahm Point Fast Food,1,New Delhi,"34/5, Community Center, Naraina Phase-1, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.137828,28.6319525,"Fast Food, Chinese",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312926,Chinese Hot,1,New Delhi,"Near Aggarwal Sweets, PVR Cinema Complex, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1558888,28.6244092,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18349241,Curry Man,1,New Delhi,"G-181, Naraina Vihar, Naraina, New Delhi",Naraina,"Naraina, New Delhi",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18431181,Diya Chinese Food,1,New Delhi,"EA 156, Main Market, Inderpuri, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.146829,28.6312058,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18431187,Foodies,1,New Delhi,"Opposite BOI ATM, Ring Road, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1362918,28.6220182,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18393288,Fresh Meat CO,1,New Delhi,"E 45, Naraina Vihar, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1368633,28.6281257,"Raw Meats, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +8718,Hans Fast Food Center,1,New Delhi,"DDA Market, Community Center, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1383317,28.6317769,"Fast Food, Desserts",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18462571,Happy Hours,1,New Delhi,"B Block, Ring Road, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1357857,28.6223096,"Chinese, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18460302,Khalsa Eating Point,1,New Delhi,"R-5, Inderpuri, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1470434,28.6271441,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18431183,Krishna Yummy Foods,1,New Delhi,"EA 156, Shop 3, Main Market, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1469131,28.6311566,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +301925,Laxmi Dhaba,1,New Delhi,"Ring Road, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.136184,28.6204842,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +301885,Milan Shudh Vaishno,1,New Delhi,"CB 206/1, Ring Road, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.134618,28.6253211,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18295497,Milko Sweets Corner,1,New Delhi,"WZ-135, Naraina Ring Road, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1356151,28.622227,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18460299,New Punjabi Chaap Corner,1,New Delhi,"EG-15, Main Market, Inderpuri, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1465469,28.6308841,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +1973,Nik's Chawla Chik Inn,1,New Delhi,"C-159, Shop 27, Naraina Industrial Area, Phase 1, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1371165,28.6292946,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18369770,Paras Corner,1,New Delhi,"RZ-76, Inder Puri, Main Market, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1468595,28.6314962,Chinese,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312848,Punjabi Tadka,1,New Delhi,"Shop 6 EA-114, Main Market, Inderpuri, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.146539,28.6296677,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18474850,Sardar A Pure Meat Shop,1,New Delhi,"E-46, Main Road, Naraina, New Delhi",Naraina,"Naraina, New Delhi",0,0,"Raw Meats, Fast Food, North Indian",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18429186,Shahi Hyderbadi Biryani,1,New Delhi,"WZ 143, Ring Road, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1363776,28.6213659,Mughlai,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18312656,Shashi's China Wok,1,New Delhi,"EG-120, Inderpuri, Naraina, New Delhi",Naraina,"Naraina, New Delhi",0,0,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18416741,Urban Palate,1,New Delhi,"A-1, Shindi Colony, Naraina Vihar, Naraina, New Delhi",Naraina,"Naraina, New Delhi",77.1350843,28.6267926,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18425182,Wrapss,1,New Delhi,"A-34, Naraina Industrial Area, Near Pearl Academy, Naraina, New Delhi",Naraina,"Naraina, New Delhi",0,0,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18464625,China Kitchen,1,New Delhi,"Singhloa Marble Market, Main G.T Karnal Road, Narela, New Delhi",Narela,"Narela, New Delhi",77.12731652,28.84061467,"Chinese, North Eastern",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435330,Chowringhee,1,New Delhi,"Shop 3, Main Bus Stand Bawana, Khajan Market Bawana, Narela, New Delhi",Narela,"Narela, New Delhi",77.0356003,28.8002781,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435326,D-Food,1,New Delhi,"Shop 3, Plot 1161, Opposite Old Sabji Mandi, Kanjhawala Road Bawana, Narela, New Delhi",Narela,"Narela, New Delhi",77.04952508,28.80619877,"Chinese, Fast Food, Bakery",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18464648,Kith N Kin Cafeteria,1,New Delhi,"Khasra 360-361, Village Mamurpur, Main Alipur Road, Narela, New Delhi",Narela,"Narela, New Delhi",77.09081333,28.84056856,"Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18464629,Lazeez Rasoi,1,New Delhi,"Saria Nath Market, Sabji Mandi, Narela, New Delhi",Narela,"Narela, New Delhi",77.08952788,28.85517216,"Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435322,Red Rose Restaurant,1,New Delhi,"U-59, Lampur Road, Near Delhi Nagrik Sehkari Bank, Narela, New Delhi",Narela,"Narela, New Delhi",77.0880292,28.85192847,Fast Food,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18014151,Shri Bikaner Sweets & Restaurant,1,New Delhi,"Kissan Bhawan, Main Delhi Road, Village Bawana, Narela, New Delhi",Narela,"Narela, New Delhi",77.03510278,28.79751667,"North Indian, Chinese, South Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18375378,Welcome Family Restaurant,1,New Delhi,"Shop 1962/1, Arya Samaj Road, Near Sabzi Mandi, Narela, New Delhi",Narela,"Narela, New Delhi",77.0895081,28.85510345,"North Indian, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310408,Al Bake,1,New Delhi,"Shop 7, 57, Manjusha Building, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.252055,28.5489159,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,38 +1185,Americana Kitchen and Bar,1,New Delhi,"Shop 5, Ground Floor, Satyam Cineplex, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2509774,28.5501583,"American, Tex-Mex, Italian, Mexican, North Indian",1900,Indian Rupees(Rs.),Yes,No,No,No,3,2.8,Orange,Average,105 +5536,Bawa Snacks Corner,1,New Delhi,"G 4, Skyline House 85, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2541182,28.548633,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +18393213,Bhimsain's Bengali Sweet House,1,New Delhi,"4, Kundan House, Near Overseas Bank, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2515162,28.5478786,"Mithai, North Indian, Street Food, Chinese, South Indian, Indian",450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +308336,Cafe Coffee Day,1,New Delhi,"Shop 2, Plot 70, The Great Eastern Center, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2531326,28.5490183,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,13 +637,Cafe Coffee Day,1,New Delhi,"101-104, Ist Floor, Dinar Bhavan, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2507978,28.549693,Cafe,450,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,38 +313159,Dolce Gelato,1,New Delhi,"Ground Floor, Modi Towers, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2524142,28.5478742,"Ice Cream, Beverages, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,9 +3608,Domino's Pizza,1,New Delhi,"7, Satyam Complex, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2510672,28.5501668,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,71 +3636,Gopala,1,New Delhi,"G-4A/56, Eros Apartments, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2523434,28.5484867,"North Indian, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,12 +312790,New Punjabi Khana,1,New Delhi,"1st Floor, 103 & 104, Pragati House, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2528555,28.5486641,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +5537,New Vishal Corner,1,New Delhi,"G-4, Vishal Building 95, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.252055,28.5482884,"North Indian, Street Food, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +308347,Punjabi Khana,1,New Delhi,"G-8, Eros Apartment 56, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2531326,28.5492872,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,14 +2602,Rajshree,1,New Delhi,"G-4, 44, Dinaar Bhawan, Satyam Cinema, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2509473,28.5491128,"South Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,11 +3638,Snack Junction,1,New Delhi,"G-5, 56, Eros Apartments, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2522346,28.5485744,"North Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,27 +18017281,Sona,1,New Delhi,"53-54, 1st Floor, Goverdhan House, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.251606,28.5483354,"North Indian, South Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,29 +3607,Southy,1,New Delhi,"15, Satyam Cineplex, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.250474,28.549901,South Indian,450,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,94 +3069,The First Floor,1,New Delhi,"Building 58, 1st Floor, Sahyog Bhavan, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2526836,28.5487963,"North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.1,Orange,Average,14 +18268390,Hype,1,New Delhi,"S-1, American Plaza, Eros Hotel, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2498998,28.5498766,"Finger Food, Italian, Middle Eastern",4700,Indian Rupees(Rs.),No,No,No,No,4,3.7,Yellow,Good,142 +196,McDonald's,1,New Delhi,"Shop 1, Plot 45, Satyam Cinema Complex, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.251157,28.5501754,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,177 +5487,New Punjabi Khana,1,New Delhi,"G-7/35-36, Aggarwal Bhawan, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.250708,28.5490569,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,104 +308331,Pizza Hut Delivery,1,New Delhi,"8-9, Satyam Cinema Complex, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2510672,28.5498979,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,103 +18126080,Shree Rathnam,1,New Delhi,"Shop G-8/9, Plot 32-33, Kusal Bazar, Near Satyam Cinema, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2511424,28.5490976,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,58 +148,Subway,1,New Delhi,"3, Satyam Cineplex, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.251157,28.5501754,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,142 +18412898,Al Mughal,1,New Delhi,"57/5, Manjusha Building, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2521897,28.5487046,Mughlai,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +5528,Anupama Restaurant,1,New Delhi,"GF 10, Bajaj House, Building 97, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2515162,28.5478786,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +17953929,Cafe Einstein,1,New Delhi,"21, Paharpur Business Centre, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2512468,28.5473151,"North Indian, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18355121,Delicious Eating Corner,1,New Delhi,"Shop 2 & 3, DDA Mini Market, Opposite Wine Shop, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2511121,28.5471678,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +9210,Gupta Rasoi,1,New Delhi,"60, DDA Mini Market, Opposite Chiranjiv Tower, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2500794,28.5494455,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +2703,Paras Chicken Point,1,New Delhi,"DDA Mini Market, Behind Paras Cinema, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2512019,28.547266,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18478963,Ralhan Eating Corner,1,New Delhi,"Shop 2, DDA Mini Market, Opposite Wine Shop, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2509547,28.5471755,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +2232,Pind Balluchi,1,New Delhi,"103/104-A, Goverdhan House, Behind Satyam Cinema, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2513366,28.549027,"North Indian, Mughlai",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.4,Red,Poor,184 +2775,Oh! Calcutta,1,New Delhi,"Ground Floor, E Block, Opposite Satyam Cinema, Nehru Place, New Delhi",Nehru Place,"Nehru Place, New Delhi",77.2506182,28.5501242,"Bengali, Seafood",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.4,Green,Very Good,1293 +311623,Alcoholic Lounge & Bar,1,New Delhi,"Level 1, Fun Cinemas, North Square Mall, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1483815,28.6916888,Finger Food,1800,Indian Rupees(Rs.),Yes,No,No,No,3,2.8,Orange,Average,21 +311077,Baljeet's Amritsari Koolcha,1,New Delhi,"G-36, Aggarwal Millenium, Tower 1, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1496283,28.693387,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,110 +492,Bikanervala,1,New Delhi,"1, ITL Twin Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.152022,28.6912959,"North Indian, South Indian, Fast Food, Street Food, Chinese, Beverages, Desserts, Mithai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,89 +304030,Cafe Coffee Day,1,New Delhi,"C-123, PP Towers, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1528753,28.6926578,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,32 +18366028,Chicago Pizza,1,New Delhi,"G-41, Agarwal Millenium Tower 1, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1497297,28.6937883,"Fast Food, Italian, Pizza",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,42 +18168143,Cocoberry,1,New Delhi,"12-13, PP Tower, Main Camp Road, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1499993,28.6936352,Desserts,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,32 +18294246,Dilli Chaap Wale,1,New Delhi,"G-41, Aggarwal Cyber Plaza 1, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1499993,28.6937247,"North Indian, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,24 +2370,Dips,1,New Delhi,"G 37, Aggarwal Millenium, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1499094,28.6937161,"South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,23 +3893,Domino's Pizza,1,New Delhi,"G-11, 12, & 17, Plot C-4, 5, & 6, Aggarwal Cyber Plaza, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1506285,28.6936956,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,85 +5366,Gullu's,1,New Delhi,"ITL Twin Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1522462,28.6913437,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,45 +18037828,Hashtag Foods,1,New Delhi,"G-89, Aggarwal Millennium, Tower 2, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1493702,28.6933956,"Fast Food, Beverages",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,80 +2377,Mini Meals,1,New Delhi,"G-45, Aggarwal Millenium Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1497297,28.6938779,"North Indian, South Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,66 +18384151,No Name - Taste Hi Kaafi Hai,1,New Delhi,"Unit G-73, Aggarwal Cyber Plaza 2, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1499993,28.6940829,"Burger, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,31 +2966,Pind Balluchi,1,New Delhi,"113 to 120, 1st Floor, PP Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.150756,28.6934012,"North Indian, Mughlai",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.7,Orange,Average,261 +257,Pizza Hut,1,New Delhi,"G-5, Aggarwal Millenium Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1496398,28.6941379,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.3,Orange,Average,211 +2380,Raj Bhature wala,1,New Delhi,"G-40, Aggarwal Millenium Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1497297,28.6937883,"North Indian, Fast Food, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,84 +18285222,Rolls Tiger,1,New Delhi,"G-36, PP Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1512576,28.6933978,Fast Food,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,49 +309463,SGF - Spice Grill Flame,1,New Delhi,"G-76, Ground Floor, Aggarwal Millenium, Tower 2, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1494601,28.6934043,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,80 +18219550,Smoksha Cafe and Lounge,1,New Delhi,"G-55/58, Aggrawal Metro Heights, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1495499,28.6941293,"Cafe, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,60 +3230,Subway,1,New Delhi,"2-4, Metro Station, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1519316,28.6953879,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,131 +309542,Sura Vie,1,New Delhi,"101, Aggarwal Cyber Plaza 1, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1501341,28.6937824,"North Indian, Italian, Chinese, Thai",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,391 +2965,Billu's Hut,1,New Delhi,"G-28, Aggarwal Millenium Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1496398,28.6936006,"Fast Food, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,813 +3372,BTW,1,New Delhi,"G-46, Aggarwal Millenium Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1499094,28.6937161,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,459 +312223,Burger King,1,New Delhi,"1st Floor, Plot C-1, 2 & 3, PP Towers, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.151707,28.6930828,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,426 +8828,Cafe Coffee Day,1,New Delhi,"Redpro Building, Near Max Hospital, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1511677,28.6934788,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,50 +2524,Chills 'n' Grills,1,New Delhi,"G-33, Aggarwal Millenium Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1499094,28.6937161,"Fast Food, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,69 +18458640,Fusion N Food,1,New Delhi,"G-4, Pearl Best Height 1, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1518301,28.6927106,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,22 +2532,Giani,1,New Delhi,"G-33 & 34, Aggarwal Cyber Plaza, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1499993,28.6936352,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,87 +5368,Hot Spot,1,New Delhi,"G-49, Aggarwal Millenium, Tower 1, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1496398,28.6937797,"Fast Food, North Indian, Beverages",400,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,201 +18272383,La Americana,1,New Delhi,"101-102, HB Twin Tower, Max Hospital, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1516171,28.6931637,"Fast Food, Burger",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,139 +18332018,Mogambo Khush Hua,1,New Delhi,"G-45, Agarwal Cyber Plaza, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1502307,28.6939598,Chinese,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,121 +18423901,Niti Shake & Ice Cream Hub,1,New Delhi,"G 75, Agarwal Cyber Plaza II, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1499094,28.6936265,"Desserts, Beverages",200,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,23 +1969,Pacific Asia,1,New Delhi,"G-3, Cascade Shopping Center, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1489657,28.6925061,"North Indian, Chinese",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,151 +18455548,Papa Veg Chinese Food,1,New Delhi,"Shop G-25, Ground Floor, Aggarwal Millennium Tower 1, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.147338,28.694444,Chinese,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,29 +310126,Pasta Hut,1,New Delhi,"Shop 72, Aggarwal Heights, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1499993,28.6937247,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,82 +5291,Ram G Snacks & Food Corner,1,New Delhi,"20, GDITL, North X Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1523361,28.6916209,"North Indian, Chinese, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,34 +3522,Sandwich King,1,New Delhi,"G-30, Aggarwal Millenium Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1497494,28.6937508,"Fast Food, Beverages",500,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,99 +18345519,Shake Eat Up,1,New Delhi,"G-7, Pearls Best Heights-II, Near Max Hospital, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1512576,28.6930397,"Fast Food, Beverages",400,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,155 +305967,Starbucks,1,New Delhi,"HB Twin tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1519766,28.6931087,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,294 +18432015,The Chai Story,1,New Delhi,"G-7, HB Twin Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1518426,28.6932029,Cafe,300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,22 +18204820,Themis Barbecue House,1,New Delhi,"Shop 251, 2nd Floor, Aggarwal Millennium Tower 1, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1493702,28.6936643,North Indian,1400,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,457 +18361244,Utsav,1,New Delhi,"Shop G-17, Aggarwal Millenium Tower-I, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1493702,28.6939329,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,13 +9561,Barbeque Nation,1,New Delhi,"101 & 102, 1st Floor, Agarwal Corporate Heights, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1516171,28.6923578,"North Indian, Chinese",1600,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,937 +18466059,Bistro 57,1,New Delhi,"G-9, P.P. Towers, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",0,0,"Fast Food, Beverages",500,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,20 +18361780,Calendar Khana Laao,1,New Delhi,"D-6, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1490259,28.6926883,"North Indian, Chinese, Continental",1000,Indian Rupees(Rs.),No,Yes,No,No,3,4.2,Green,Very Good,42 +18208880,Chaayos,1,New Delhi,"Ground Floor, PP Tower, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1513743,28.6933618,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,4.1,Green,Very Good,156 +307620,Eleven Course,1,New Delhi,"NDM 2, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1502689,28.6907955,"North Indian, Chinese, Italian, Mexican, Lebanese",1650,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,537 +302242,Sinciti,1,New Delhi,"1st Floor, Gopal Heights, Plot D-9, Netaji Subhash Place, New Delhi",Netaji Subhash Place,"Netaji Subhash Place, New Delhi",77.1507183,28.6912864,"North Indian, Chinese, Italian, Lebanese, Mexican",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,277 +310348,Admission Lounge,1,New Delhi,"7, Commercial Complex, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.26883523,28.56240125,"North Indian, Continental, Chinese, Fast Food",2500,Indian Rupees(Rs.),Yes,No,No,No,4,2.7,Orange,Average,24 +309680,Al Zaika,1,New Delhi,"1/9C, Main Road, Taimoor Nagar, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.26652149,28.57086609,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,8 +1508,Angels in my Kitchen,1,New Delhi,"9-AB, Taimur Nagar, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.26684134,28.57094736,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,88 +18312565,Asian Curry,1,New Delhi,"Shop 6, LSC Site, CSC, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",0,0,"Thai, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +311553,Chaska,1,New Delhi,"D-268/2, Tikona Park, Jamia Nagar, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.28829969,28.56238181,"Fast Food, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,47 +7720,Chik Chow,1,New Delhi,"25-27, LSC, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.26801079,28.5693697,"North Indian, Mughlai, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,62 +308332,Deep Sweet Corner,1,New Delhi,"74 Bharat Nagar, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.27004256,28.56563745,"North Indian, Fast Food, Chinese, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,16 +306331,Deepika Khaitan's Cakes,1,New Delhi,"70-B, West New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.2687116,28.5613894,"Bakery, Desserts",700,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +18303863,Dhaba On Wheels,1,New Delhi,"Next to Mata Ki Mandir, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.26754777,28.56971362,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,15 +212,Domino's Pizza,1,New Delhi,"32-33, Grandlays Cinema Complex, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.2688462,28.5613573,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,95 +304183,Evergreen Sweets,1,New Delhi,"156, Opposite Escort Heart Institute, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.27258228,28.56088235,"North Indian, South Indian, Chinese, Mithai",350,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,14 +1915,Gopala,1,New Delhi,"Shop 38, C Block Market, Near Mata Mandir, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.2682086,28.56929078,"Mithai, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +5901,Green Chick Chop,1,New Delhi,"29 & 43, Block C, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.26803929,28.5691783,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,12 +311824,Halal Pizza Fun,1,New Delhi,"E-268, Ground Floor, Tikona Park, Jamia Nagar, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.28950668,28.56250019,"Pizza, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +18376488,Keventers,1,New Delhi,"Shop 15, Community Centre, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.2683973,28.5613147,Beverages,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,13 +300013,Khan Chicken Biryani,1,New Delhi,"158, Sarai Julena, Jamia Nagar, Near, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.268271,28.561703,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,9 +181,McDonald's,1,New Delhi,"Near Grindlays Cinema, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.268936,28.5613658,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,127 +18277019,Midnight Bites,1,New Delhi,"Jamia Nagar, Near, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.29113277,28.56298018,"North Indian, Chinese, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,10 +7721,Moti Mahal Delux,1,New Delhi,"31, LSC, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.2681563,28.56921452,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,44 +308334,MT Everest Food Corner,1,New Delhi,"Shop 99, Sarai Jullena, Near Escort Hospital, Near New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.27250919,28.55941173,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,28 +309675,Muradabad Ki Mashoor Sama Chicken Biryani,1,New Delhi,"Opposite Escort Hospital, Sarai Jullena, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.27289509,28.5603414,"Biryani, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +300020,New Laziz,1,New Delhi,"9 C, Taimoor Nagar, Near Honey Money Top, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.26689197,28.570839,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,6 +7717,Talab South Indian Restaurant,1,New Delhi,"156 D, Sarai Julena, Near Escort Heart Institute, Okhla Road, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.27209244,28.5608741,"South Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,14 +303547,Tipu Sultan Chicken Point,1,New Delhi,"Near Batla House Bus Stand, Jamia Nagar, Near, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.28855785,28.56489598,"Biryani, Mughlai",250,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,27 +18228903,Yo Wok,1,New Delhi,"A-92, Namberdar Estate, Gurudwara Road, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",0,0,"Chinese, Japanese, Thai",750,Indian Rupees(Rs.),Yes,No,No,No,2,2.8,Orange,Average,4 +18428200,Zoet Desserts,1,New Delhi,"11, Eastern Avenue Maharani Bagh, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.26416081,28.57473537,"Bakery, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,8 +18144480,Zooby's Kitchen,1,New Delhi,"New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.271844,28.56528,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,21 +302945,Hotel Malabar,1,New Delhi,"37-A, Sarai Juliena, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.27205321,28.55982665,"Kerala, Biryani",400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,129 +18471283,Hwealthcafe,1,New Delhi,"Plot 11, 1st Floor, Above Canara Bank, Community Centre Market, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.268831,28.563202,"Cafe, Healthy Food, Continental",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,29 +18337892,Noorjahan,1,New Delhi,"A-36, ICs Hotel, Abul Fazal Enclave, Near Jamia Nagar Thaana, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.29254572,28.56159495,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,17 +267,Pizza Hut Delivery,1,New Delhi,"19-20, Grandlay Cinema Building, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.2688462,28.5613573,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,189 +18424893,Sushiya Express,1,New Delhi,"A-92 C, 2nd Floor, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.268211,28.561936,"Sushi, Asian",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,30 +306526,Tuptakes,1,New Delhi,"84 C, D Block, Bharat Nagar, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.268779,28.565383,"Bakery, Desserts",350,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,52 +18133511,Annapurna Food Point,1,New Delhi,"Shop 2/8, DDA Market, Opposite Maharani Bagh, Kilokari, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18456744,Arabian & Turkish Caf,1,New Delhi,"New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",0,0,"Turkish, Arabian, Moroccan, Lebanese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +303559,Brij Palace Restaurant,1,New Delhi,"4, Okhla Bus Stand, Jamia Nagar, Near, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.2912015,28.56308413,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18352261,Bruncheez,1,New Delhi,"112, Hari Nagar Ashram, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",0,0,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +310692,Buena Tierra,1,New Delhi,"Shop 4, CSC Market, A Block, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",0,0,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18313141,Cafe Coffee Day,1,New Delhi,"1st Floor, Escorts Heart Institute, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",0,0,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +312446,Chokoreto - The Cake Design Studio,1,New Delhi,"M-33, Srinivas Puri, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",0,0,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18245296,Crazylicious Cakes N Desserts,1,New Delhi,"A-28, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",0,0,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18254540,Halal Pizza 'n' Joy,1,New Delhi,"68, Tikona Park Jamia Nagar, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.28850622,28.56252021,Pizza,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18354644,Shree Bhojnalaya,1,New Delhi,"Sarai Julena, Near Red Light, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.27276199,28.56077074,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +7684,Shree Laxmi Dhaba,1,New Delhi,"Opposite Fortis Escorts Hospital, Sarai Julena, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.27276031,28.56047774,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18180047,Swaad Restaurant,1,New Delhi,"D-2/E-321, Near MCD School, Okhla Main Road, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",0,0,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18366586,The Bay Leaf,1,New Delhi,"D-88, Saraia Jullena, Okhla Road, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",0,0,"Chinese, Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +112,Lotus Pond,1,New Delhi,"K-185, Surai Jullena, New Friends Colony, New Delhi",New Friends Colony,"New Friends Colony, New Delhi",77.27047574,28.56164062,"Chinese, Seafood, Asian",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,391 +1903,Cafe Turtle,1,New Delhi,"8, Nizamuddin East Market, Nizamuddin, New Delhi",Nizamuddin,"Nizamuddin, New Delhi",77.2525938,28.5902907,"Cafe, Italian, Lebanese",1000,Indian Rupees(Rs.),No,No,No,No,3,3.2,Orange,Average,36 +300710,Gulfam Kashmiri Wazwan,1,New Delhi,"3, Building 5, Basti, Hazrat Nizamuddin, Nizamuddin, New Delhi",Nizamuddin,"Nizamuddin, New Delhi",77.2440626,28.5910927,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,38 +308065,Kit Care Kabab Corner,1,New Delhi,"Shop T21, Near Musafir Khaana, Nizamuddin, New Delhi",Nizamuddin,"Nizamuddin, New Delhi",77.2413685,28.5912845,"North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,10 +18441549,Liter Basar,1,New Delhi,"Nizamuddin East, Nizamuddin, New Delhi",Nizamuddin,"Nizamuddin, New Delhi",77.2440626,28.591272,Bakery,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +3685,N. Iqbal Restaurant,1,New Delhi,"268A, Jha Basti Market, Hazrat Nizamuddin West, Nizamuddin, New Delhi",Nizamuddin,"Nizamuddin, New Delhi",77.2435238,28.5916689,"North Indian, Mughlai",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,40 +303599,Ghalib Kabab Corner,1,New Delhi,"Shop 57, Ghalib Road, Near Lal Mahal, Nizamuddin, New Delhi",Nizamuddin,"Nizamuddin, New Delhi",77.242491,28.5922428,"Mughlai, Biryani",300,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,251 +462,Karim's,1,New Delhi,"168/2, Jha House Basti, Nizamuddin West, Nizamuddin, New Delhi",Nizamuddin,"Nizamuddin, New Delhi",77.2436513,28.59126791,"Mughlai, North Indian",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.7,Yellow,Good,360 +18474567,Chick Fish Point,1,New Delhi,"A-58, Baoli Gate, Nizamuddin, New Delhi",Nizamuddin,"Nizamuddin, New Delhi",77.2419073,28.5923217,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18434504,Monis Kada Hotel,1,New Delhi,"House T-4A, Nizammuddin Dargah Market, Nizamuddin, New Delhi",Nizamuddin,"Nizamuddin, New Delhi",77.2440626,28.591272,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +680,Comesum,1,New Delhi,"Railway Station, Nizamuddin West, Nizamuddin, New Delhi",Nizamuddin,"Nizamuddin, New Delhi",77.2530428,28.5896164,"Fast Food, North Indian, South Indian",350,Indian Rupees(Rs.),No,No,No,No,1,2.2,Red,Poor,251 +18222581,Lunch Express,1,New Delhi,"Okhla Phase 1, New Delhi",Okhla Phase 1,"Okhla Phase 1, New Delhi",77.2835266,28.5256742,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,27 +18432628,Aloo Bhaji Restaurant,1,New Delhi,"C-19, DDA Sheds, Okhla Phase 1, New Delhi",Okhla Phase 1,"Okhla Phase 1, New Delhi",0,0,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18357551,Chinese Corner,1,New Delhi,"A-263, Vishwakarma Colony, MB Road, Near, Okhla Phase 1, New Delhi",Okhla Phase 1,"Okhla Phase 1, New Delhi",77.28726067,28.50184423,"Chinese, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18360900,Gupta Bhojnalya,1,New Delhi,"HR-227, 60 Feet Road, Pul Pahladpur, Okhla Phase 1, New Delhi",Okhla Phase 1,"Okhla Phase 1, New Delhi",77.2885264,28.5003643,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18358168,Sam's 22,1,New Delhi,"Shop A-3/A1, Main Road, Vishwakarma Colony, Okhla Phase 1, New Delhi",Okhla Phase 1,"Okhla Phase 1, New Delhi",77.28724223,28.50129443,"Fast Food, Beverages",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18472680,The Bakery,1,New Delhi,"A-47, Vishwakarma Colony, Near Okhla Phase 1, New Delhi",Okhla Phase 1,"Okhla Phase 1, New Delhi",77.287153,28.5014785,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18409180,Twenty Four Seven,1,New Delhi,"Jai Sai Motors, Indian Oil Petrol Pump, Near Hotel Crowne Plaza, Okhla Phase 1, New Delhi",Okhla Phase 1,"Okhla Phase 1, New Delhi",77.2729071,28.5275256,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18429188,Vishal Snacks,1,New Delhi,"A-1, Vishwakarma Colony, Near BSES Complaint Center, Okhla Phase 1, New Delhi",Okhla Phase 1,"Okhla Phase 1, New Delhi",77.287037,28.501281,"North Indian, Chinese, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310164,Chawla Dhaba,1,New Delhi,"P-38, Industrial Area, Okhla Phase 2, New Delhi",Okhla Phase 2,"Okhla Phase 2, New Delhi",77.2800843,28.5357956,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,10 +7712,Shri Gupta'z,1,New Delhi,"6, DSIDC Market, Scheme 3, Okhla Industrial Area, Okhla Phase 2, New Delhi",Okhla Phase 2,"Okhla Phase 2, New Delhi",77.2806012,28.5370818,"Mughlai, North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,18 +18311948,The Golden Leaf,1,New Delhi,"C-42, Industrial Area, Okhla Phase 2, New Delhi",Okhla Phase 2,"Okhla Phase 2, New Delhi",77.2781976,28.5345304,"North Indian, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,6 +7483,Red Moon Bakery,1,New Delhi,"Okhla Industrial Area, Okhla Phase 2, New Delhi",Okhla Phase 2,"Okhla Phase 2, New Delhi",77.2759158,28.5327507,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,26 +18355004,Cafe Point,1,New Delhi,"C-42, Main Road, Industrial Area, Okhla Phase 2, New Delhi",Okhla Phase 2,"Okhla Phase 2, New Delhi",77.278399,28.5344146,"Fast Food, Beverages",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18291238,TLC Kitchen,1,New Delhi,"Okhla Phase 2, New Delhi",Okhla Phase 2,"Okhla Phase 2, New Delhi",77.2753817,28.5378847,Healthy Food,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18472436,Berco's,1,New Delhi,"2nd Floor, Food Court, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1064348,28.642553,"Chinese, Thai",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,5 +9037,Bikano Chat Cafe,1,New Delhi,"Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1065259,28.6421961,"North Indian, Street Food, South Indian, Fast Food, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,55 +18391581,BonJuz,1,New Delhi,"Food Court, 2nd Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1065016,28.6426602,"Healthy Food, Juices",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +7077,Cafe Coffee Day - The Lounge,1,New Delhi,"Ground Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1068818,28.6417977,Cafe,750,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,29 +306586,Chicago Pizza,1,New Delhi,"2nd Floor, Food Court, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1064258,28.6426643,Pizza,800,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,69 +306495,Domino's Pizza,1,New Delhi,"Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1059714,28.6423028,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,69 +9061,Dosa Village,1,New Delhi,"2nd Floor, Food Court, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.106404,28.6426609,South Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,36 +18357946,Dunkin' Donuts,1,New Delhi,"Pacific Mall, Second Floor, Subhash Nagar, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1064285,28.6424049,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,36 +308991,Gelato Italiano,1,New Delhi,"Food Court, 2nd Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1064014,28.642365,"Ice Cream, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,18 +7071,Gelato Vinto,1,New Delhi,"1st Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1062108,28.642112,"Desserts, Ice Cream",250,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,17 +18282040,Keventers,1,New Delhi,"SK-2, Food Court, 2nd Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1065917,28.642704,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,19 +8379,KFC,1,New Delhi,"Ground Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1062245,28.6422203,"American, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,47 +9040,Kings Kulfi,1,New Delhi,"Lower Ground Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1059749,28.6425056,"Desserts, Ice Cream",150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,18 +18367984,Mr. Sub,1,New Delhi,"Lower Ground Floor Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1062179,28.6425574,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,6 +4455,Shanghai Moon,1,New Delhi,"2nd Floor, Food Court, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.106489,28.6421265,Chinese,800,Indian Rupees(Rs.),Yes,No,No,No,2,2.6,Orange,Average,71 +4454,The Blue Tandoor,1,New Delhi,"2nd Floor, Food Court, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1063059,28.6426228,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,46 +4560,Costa Coffee,1,New Delhi,"6/7, 2nd Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1065639,28.6424982,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,53 +4563,Giani's,1,New Delhi,"36, Food Court, 2nd Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1063609,28.6427806,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,51 +5062,Hinglish - Cafe Beach Bar,1,New Delhi,"Ground Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1068457,28.6424495,"Continental, North Indian, Italian",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,792 +4568,Spaghetti Kitchen,1,New Delhi,"8 & 9, 2nd Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1063393,28.6419495,Italian,2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.8,Yellow,Good,601 +4566,Subway,1,New Delhi,"37, 2nd Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1069047,28.6424575,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,65 +18383434,Swiss Softy,1,New Delhi,"Lower Ground Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1060471,28.6421787,"Ice Cream, Beverages",250,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,31 +308972,The Bubble Tea,1,New Delhi,"Food Court, 2nd Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1064068,28.6424882,Beverages,250,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,35 +307560,Creambell & Chocoxess,1,New Delhi,"LG-K06, Oppsite Bata, Lower Ground Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1064559,28.6423578,"Ice Cream, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18336478,Hang Out,1,New Delhi,"3rd Floor, Pacific Mall, Opposite Unisex Saloon, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1065198,28.6421902,"Italian, Continental, Fast Food, North Indian",1000,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,3 +309004,Mx Corn,1,New Delhi,"Food Court, 2nd Floor, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",77.1064741,28.6423346,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18492109,The Belgian Fries Company,1,New Delhi,"2nd Floor, Food Court, Pacific Mall, Tagore Garden, New Delhi","Pacific Mall, Tagore Garden","Pacific Mall, Tagore Garden, New Delhi",0,0,"European, American, Street Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +6283,Al-Sameer,1,New Delhi,"39 & 40, Arakashan Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21546111,28.64599167,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +6356,Allure,1,New Delhi,"65, D.B. Gupta Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21439444,28.64486111,"North Indian, Chinese, Finger Food",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,6 +18356800,BarShala,1,New Delhi,"4, New Delhi Airport Express Mall, Opposite New Delhi Railway Station, Ajmeri Gate, Near Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.224386,28.641786,Finger Food,600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,14 +18253103,Bikaner House,1,New Delhi,"1604, Main Bazar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2110097,28.6407217,"North Indian, Street Food, Fast Food, Chinese, South Indian, Mithai",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +304152,Cafe Coffee Day,1,New Delhi,"Ground Floor, New Delhi Metro Station, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.22227074,28.6429341,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,16 +18287392,Cafe CoffeeCo,1,New Delhi,"5111, Main Market, Gali Thanedarwali, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2113691,28.6406664,Cafe,350,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,21 +3116,Cafe Festa,1,New Delhi,"1832, Laxmi Narain Street, Chuna Mandi, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2102911,28.6409218,"Cafe, North Indian, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,38 +308620,Cheers Lounge Bar,1,New Delhi,"Plot 1, Block 88 A, Krishna Market, Main Bazaar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2104708,28.6402223,"North Indian, Chinese",1100,Indian Rupees(Rs.),Yes,No,No,No,3,2.8,Orange,Average,8 +300608,Chowmein Hut,1,New Delhi,"1346, Sangarashan, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21226389,28.64379167,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +302162,Club India Cafe & Restaurant,1,New Delhi,"4797, 2nd Floor, 6 Tooti Chowk, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21339095,28.64084258,"North Indian, Fast Food, Chinese, Japanese, Asian, Italian",900,Indian Rupees(Rs.),Yes,No,No,No,2,2.9,Orange,Average,32 +308187,Domino's Pizza,1,New Delhi,"Plot 8, Desh Bandhu Gupta Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21074697,28.64558376,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,29 +8292,Everest Bakery Cafe,1,New Delhi,"899, Chandiwaali Galli, Main Bazar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21537778,28.64251389,"Cafe, Fast Food, Asian, Italian",700,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,19 +307114,Everest Kitchen,1,New Delhi,"1171-1175, Main Market, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21334167,28.64106944,"North Indian, Chinese, Tibetan, Italian, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,18 +18408059,Exotic Rooftop Restaurant,1,New Delhi,"4792, Main Bazar, 6 Tooti Chowk, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21350629,28.64102619,"Chinese, Thai, Seafood, North Indian, Italian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,5 +308614,Flavours,1,New Delhi,"7972, Arakshan Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21406352,28.64601747,"North Indian, Chinese, South Indian",500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,11 +304217,Gagan Assam Bengal Restaurant,1,New Delhi,"7974, Arakashan Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21419964,28.64588388,"North Indian, Bengali",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +302724,Gold Resto Bar,1,New Delhi,"4350, Main Bazaar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21711855,28.6417221,"North Indian, Chinese",850,Indian Rupees(Rs.),Yes,No,No,No,2,2.9,Orange,Average,8 +5799,Grand Madras Cafe,1,New Delhi,"8301/4, Multani Dhanda, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21133538,28.64665684,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +3117,Green Chilli,1,New Delhi,"Roxy Hotel, 2351, Raj Guru Road, Chuna Mandi, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21048,28.6418801,"North Indian, Chinese, Continental",800,Indian Rupees(Rs.),Yes,No,No,No,2,2.8,Orange,Average,17 +300639,Gurdev Punjabi Restaurant,1,New Delhi,"8563, Arakashan Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21650167,28.64538,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +18384879,Haji Irshad Biryani Centre,1,New Delhi,"BB-94, Amar Puri, Nabi Karim, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.20943915,28.62486609,Biryani,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18481280,Hungerzz Grill,1,New Delhi,"Gali 4, Multani Dhanda, Near Hotel R, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",0,0,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +300635,Janta Sweets,1,New Delhi,"9360 61/8, Multani Dhanda",Paharganj,"Paharganj, New Delhi",77.21159454,28.64754161,"Street Food, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,9 +302159,Khosla Cafe,1,New Delhi,"5024, Main Bazaar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2112792,28.6407474,"North Indian, Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,18 +18204494,King Bar & Restaurant,1,New Delhi,"7/7, Desh Bandhu Gupta Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21226476,28.64533983,"North Indian, Chinese, Continental",900,Indian Rupees(Rs.),Yes,No,No,No,2,3,Orange,Average,10 +305135,Le Fairway Restaurant & Bar,1,New Delhi,"Hotel Le Roi 2206, Rajguru Road, Chuna Mandi, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21077781,28.64423731,"North Indian, Continental",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,17 +302155,Madan Cafe & Restaurant,1,New Delhi,"1601, Main Bazaar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21124167,28.640825,"North Indian, Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,28 +3119,Malhotra Restaurant,1,New Delhi,"1833-34, Laxmi Narain Street, Chuna Mandi, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2103809,28.64102,"North Indian, Chinese, Continental, Italian",800,Indian Rupees(Rs.),Yes,No,No,No,2,2.9,Orange,Average,32 +3254,Metropolis Bar,1,New Delhi,"1634, Main Bazaar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21045556,28.64062222,"Chinese, Continental, North Indian",700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,22 +302272,Mikky Restaurant,1,New Delhi,"2-3, Ram Nagar Market, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21796833,28.64574667,North Indian,800,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,18 +300616,Mourya Sweets Chat Bhandar,1,New Delhi,"9922 23/5, Multani Dhanda, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.20978611,28.64710556,"Fast Food, Chinese, Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +5796,My Bar & Restaurant,1,New Delhi,"5136, Main Bazaar, Near Rama Krishna Ashram Metro Station, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2107852,28.640745,"North Indian, Chinese, Italian, Continental",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,679 +310595,My Love Restaurant & Bar,1,New Delhi,"23-B, Panchkuian Road, Near RK Ashram Marg Metro Station, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2094826,28.638784,"North Indian, Mughlai, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,2.7,Orange,Average,19 +303788,Organic German Bakeshop - Brown Bread Bakery,1,New Delhi,"5084-A, Ajay Guest House, Opposite Khanna Cinema, Main Bazar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2122674,28.6408418,"Fast Food, Continental, Italian, Bakery",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,22 +305490,Paankhuri Restaurant,1,New Delhi,"51, Aara Kashan Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21423384,28.64522214,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +300620,Pardeep Corner,1,New Delhi,"9005, Chowk Multani Dhanda, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21111389,28.64571111,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,25 +18218076,Pehalwan Da Hotel,1,New Delhi,"22, Amrit Kaur Market, Opposite New Delhi Railway Station, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21426713,28.64784229,Mughlai,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,6 +308682,Pizza Hut Delivery,1,New Delhi,"Shop 8709-10, Desh Bandhu Gupta Marg, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21523765,28.64436148,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,26 +18198465,Re Cafe,1,New Delhi,"8591, Hotel Bloom Rooms, Arakashan Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21764829,28.64569263,"Continental, Fast Food",1300,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,14 +311879,Rumi Amritsari Naan,1,New Delhi,"2358, Chuna Mandi, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2104258,28.6421442,"North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +1888,Sagar Bar-Be Que,1,New Delhi,"Plot 1, 80, A Block, Krishna Market, Behind RK Ashram Metro Station, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21072584,28.64012372,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,37 +301191,Satyam Rooftop Restaurant,1,New Delhi,"659, Top Floor, Tooti Chowk, Main Bazar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21341833,28.64063,"North Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,9 +6345,Sethi Restaurant,1,New Delhi,"3077, D.B. Gupta Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21133667,28.64541167,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,8 +18272388,Shri Bankey Bihari Samosa Wala,1,New Delhi,"3177, Sangatrashan, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",0,0,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,5 +6355,Sonu South Indian Restaurant,1,New Delhi,"8894/2, Multani Dhanda, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21123043,28.64613634,"South Indian, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,8 +300571,Southern Welcome Restaurant,1,New Delhi,"7876, Arakashan Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21554611,28.64581886,"South Indian, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,7 +302173,Swagat Dhaba,1,New Delhi,"5137, Main Bazaar, Opposite Metropolis Bar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2106504,28.6406874,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,12 +5801,Tadka 4986,1,New Delhi,"4986, Ram Dwara Road, Nehru Bazaar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2131708,28.6404495,"Chinese, Italian, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,37 +18261165,The Drunkyard Cafe,1,New Delhi,"Shop 1077, Main Bazar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21558299,28.64141166,"North Indian, Chinese, Continental, Thai",850,Indian Rupees(Rs.),Yes,No,No,No,2,3,Orange,Average,8 +302188,The Gem Bar & Restaurant,1,New Delhi,"1050, Main Bazaar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21615497,28.64154113,"Continental, North Indian, Chinese",1400,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,18 +18017258,The Indian Grill Restaurant,1,New Delhi,"8501/15, Arakashan Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21508846,28.64598569,"North Indian, Continental",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,10 +3094,True Blue,1,New Delhi,"11, Qutub Road, Ramnagar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.217927,28.645035,"North Indian, Mughlai, Chinese",900,Indian Rupees(Rs.),Yes,No,No,No,2,3,Orange,Average,11 +3118,U Like,1,New Delhi,"3083, Raj Guru Road, Chuna Mandi, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21109062,28.64525804,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,16 +6359,Vaga Bond,1,New Delhi,"Hotel Ajanta, 8647, Arakashan Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21598167,28.64583167,"North Indian, Chinese, Continental",550,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,7 +18252250,Vrinda Vaishno Dhaba,1,New Delhi,"5585, Basant Road Lane, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21702065,28.64058864,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,4 +5949,White Heart Restro Bar,1,New Delhi,"Hotel Star View, 5136/1, Main Bazaar, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2106055,28.6405487,North Indian,1100,Indian Rupees(Rs.),Yes,No,No,No,3,2.7,Orange,Average,13 +18409188,Haldiram Bhujiawala,1,New Delhi,"8730-33, D.B. Gupta Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21376009,28.64481668,"Street Food, North Indian, South Indian, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,27 +5753,Maa Bhagwati,1,New Delhi,"3504, Dariba Pan, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21574157,28.6441564,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,39 +18354666,Cafe Brownie,1,New Delhi,"8501/15, Grand Godwin Hotel, Aarakshan Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21521385,28.64588182,"Cafe, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +305025,Cafexpress,1,New Delhi,"Nawab Road, Behind Sadar Thana, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.20937222,28.65449722,Beverages,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +311468,Mauja Hi Mauja,1,New Delhi,"Main Sadar Thana Road, Near Bara Tuti Chowk, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21249444,28.65731111,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18381669,Metro Bar & Family Restaurant,1,New Delhi,"Pillar 13, Panchkuian Road, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2093928,28.6387755,"North Indian, Chinese",1000,Indian Rupees(Rs.),No,No,No,No,3,0,White,Not rated,2 +18273527,Bajaj Vaishno Dhaba,1,New Delhi,"117, Amrit Kaur Market, Opposite New Delhi Railway Station Gate 2, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.21832521,28.64217671,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.2,Red,Poor,16 +6075,Sita Ram Diwan Chand,1,New Delhi,"2246, Chuna Mandi, Paharganj, New Delhi",Paharganj,"Paharganj, New Delhi",77.2104544,28.6423212,Street Food,100,Indian Rupees(Rs.),No,Yes,No,No,1,4.3,Green,Very Good,1317 +306750,Aayush Food Plaza,1,New Delhi,"Main Road, Sadh Nagar, Palam, New Delhi",Palam,"Palam, New Delhi",77.0909272,28.590995,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +306739,Ankit Fast Food Corner,1,New Delhi,"Opposite Sanjhi Rasoi, Dabri Road, Palam, New Delhi",Palam,"Palam, New Delhi",77.081824,28.5999471,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +18312564,Da Pizza Corner,1,New Delhi,"Rz-36A, Raj Nagar Part 1, Palam Colony, Opposite Piller 47, Palam, New Delhi",Palam,"Palam, New Delhi",77.0875177,28.5859879,"Fast Food, Pizza",600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,7 +306741,Mughal Zaika Chicken Point,1,New Delhi,"Shop 4, K.H 83/8/1, Mahavir Enclave, Main Dabri Road, Palam, New Delhi",Palam,"Palam, New Delhi",77.0816013,28.5988478,"North Indian, Mughlai, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +9974,Nawab Restaurant,1,New Delhi,"WZ 613, Raj Nagar, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.0893327,28.5851308,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +300529,New Bikaner Sweets,1,New Delhi,"D 105, Street 6, Mahavir Enclave, Main Palam Dabri Road, Palam, New Delhi",Palam,"Palam, New Delhi",77.0818086,28.5990759,"Street Food, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +312169,Pizza Yum,1,New Delhi,"D-1/23, Street 5, Mahavir Enclave, Palam Dabri Road, Palam, New Delhi",Palam,"Palam, New Delhi",77.0815144,28.5974151,"Pizza, Fast Food",650,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,8 +301783,Radhika Sweets,1,New Delhi,"Sadh Nagar Main Road, Palam, New Delhi",Palam,"Palam, New Delhi",77.0909658,28.5910707,"Desserts, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +9218,Satguru Di Hatti,1,New Delhi,"Main Road, Palam Gaon, Palam, New Delhi",Palam,"Palam, New Delhi",77.0811572,28.5899658,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,6 +301994,Sher-E-Punjab,1,New Delhi,"WZ 613, Main Market, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.0892552,28.5852411,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +306729,Shudh Vaishno Amritsari Naan,1,New Delhi,"Near Hero Showroom, Dabri Road, Palam, New Delhi",Palam,"Palam, New Delhi",77.0808459,28.5959508,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +9207,Sumit Sweets,1,New Delhi,"1, WZ 10, Opposite Gol Chakkar, Palam, New Delhi",Palam,"Palam, New Delhi",77.0803073,28.5891867,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,6 +306743,Aggarwal Bikaner Wala,1,New Delhi,"Near Gol Chakkar, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.0807273,28.5886994,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +306733,Aggarwal Sweet Centre,1,New Delhi,"Main Road, Kailashpuri, Palam, New Delhi",Palam,"Palam, New Delhi",77.0830226,28.6054188,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +302042,Aggarwal Sweet India,1,New Delhi,"C-156, Mahavir Enclave Part 3, Palam, New Delhi",Palam,"Palam, New Delhi",77.0688245,28.6041636,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18231755,Aggarwal Sweets Centre,1,New Delhi,"23/A, Main Road, Indira Park, Palam, New Delhi",Palam,"Palam, New Delhi",77.0818086,28.5990759,"Mithai, Street Food, North Indian, South Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18228878,Aggarwal Sweets,1,New Delhi,"23-A/1, Main Road, Indra Park, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.0976348,28.5955838,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +302011,Anupama Snacks and Sweets Corner,1,New Delhi,"RZ H2/15, Bengali Colony, Mahavir Enclave, Palam, New Delhi",Palam,"Palam, New Delhi",77.0842816,28.6106461,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18366001,Baba Ka Dhaba,1,New Delhi,"WZ-425, Main Road, Palam Colony, Opposite Railway Crossing, Palam, New Delhi",Palam,"Palam, New Delhi",77.0902799,28.5828978,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18368020,Balaji Eating Point,1,New Delhi,"Pradhan Chowk, Sadh Nagar, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.093073,28.5913425,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +301786,Bhagat Ji Sweets,1,New Delhi,"Kailash Puri Road, Sagar Pur, Palam, New Delhi",Palam,"Palam, New Delhi",77.10086,28.597615,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +302221,Bikaner Sweet Corner,1,New Delhi,"Near Manglapuri Terminal, Palam, New Delhi",Palam,"Palam, New Delhi",77.0889332,28.5901329,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +302175,Chavi Food Point,1,New Delhi,"RZ 12A, Main Market, Indira Park, Palam, New Delhi",Palam,"Palam, New Delhi",77.1007496,28.5974807,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18431171,Cook & Connect,1,New Delhi,"C 118, Palam Dabri Road, Palam, New Delhi",Palam,"Palam, New Delhi",77.0817653,28.6076275,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +17989108,Dinesh Ka Mithila Dhaba,1,New Delhi,"Main Road, Mahavir Enclave Part 3, Palam, New Delhi",Palam,"Palam, New Delhi",77.0688364,28.6029698,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449798,Domino's Pizza,1,New Delhi,"Puran Nagar Main Road, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.0851879,28.5872923,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +313287,Flavors Of London,1,New Delhi,"RZ-1101/C, Gali 11, Sadh Nagar, Palam, New Delhi",Palam,"Palam, New Delhi",77.0907871,28.5912498,"Desserts, Ice Cream, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +312161,Flavours Of London,1,New Delhi,"RZ-1101/C, Gali 11, Sadh Nagar, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.0910041,28.5885001,"Ice Cream, Bakery",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18368003,Foji Bhai Hotel,1,New Delhi,"Main Road, Sadh Nagar, Near Sabji Mandi, Palam, New Delhi",Palam,"Palam, New Delhi",77.0864659,28.5931848,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312153,Green Chilli,1,New Delhi,"Gurudwara Road, Mahavir Enclave, Palam, New Delhi",Palam,"Palam, New Delhi",77.0819105,28.6003471,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18449651,Hook N Cook,1,New Delhi,"Rzg-1 Nanda Block, Mahavir Enclave, Palam, New Delhi",Palam,"Palam, New Delhi",77.07506843,28.59918909,Chinese,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18431159,Hyderabadi & Muradabadi Chicken Corner,1,New Delhi,"RZ A1, Near Mothers Pride School, Palam Dabri Road, Palam, New Delhi",Palam,"Palam, New Delhi",77.0821745,28.6048103,Mughlai,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18350870,It's Pizza Town,1,New Delhi,"WZ 61A/20, Gandhi Market, Vashisht Park, West Sagar Pur, Palam, New Delhi",Palam,"Palam, New Delhi",77.1079132,28.6057682,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +302002,ITO Ke Mashoor Chole Bhature,1,New Delhi,"Main Road, Mahavir Enclave 3, Palam, New Delhi",Palam,"Palam, New Delhi",77.068718,28.6061412,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +312146,Janta Special Lassi Corner,1,New Delhi,"Main Market, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.0911161,28.583836,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18431173,Kairi The Royal Taste,1,New Delhi,"RZA 6, Dabri Extension, Opposite Dada Dev Hospital, Palam, New Delhi",Palam,"Palam, New Delhi",77.083122,28.6093193,"North Indian, South Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18372324,Kasba,1,New Delhi,"WZ-255A, Gali 3, Sadh Nagar, Ram Chowk Market Palam, Palam, New Delhi",Palam,"Palam, New Delhi",77.0917506,28.5861677,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18445631,Kayasthas Food Junction,1,New Delhi,"RZ-46 C/5, Gali 1, Gandhi Market, Main Sagarpur, New Delhi",Palam,"Palam, New Delhi",77.10199412,28.60761477,"Chinese, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18431151,KGN Chicken Corner,1,New Delhi,"Near City Store, Palam Dabri Road, Palam, New Delhi",Palam,"Palam, New Delhi",77.0824439,28.6005361,Mughlai,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18378581,Maggi Point,1,New Delhi,"Street 1, Mahavir Enclave Part 1, Mahavir Enclave, Palam, New Delhi",Palam,"Palam, New Delhi",77.101591,28.6006231,"Chinese, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18406823,Momozone,1,New Delhi,"RZ - A/15, Dwarka Puri, Vijay Enclave, Palam, New Delhi",Palam,"Palam, New Delhi",77.076292,28.6069426,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +301867,Munna Bakery,1,New Delhi,"60 Feet Road, Sadh Nagar, Palam, New Delhi",Palam,"Palam, New Delhi",77.0927191,28.5912032,Bakery,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +306657,N.S. Pizza Point,1,New Delhi,"Main Road, Mahavir Enclave, Part 3, Palam, New Delhi",Palam,"Palam, New Delhi",77.068668,28.6040477,Pizza,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +306747,Nand Bhai Chholey Bhature,1,New Delhi,"Near Pillar 59, Main Road, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.0902079,28.5845283,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18376478,New Lazeez Tandoor,1,New Delhi,"B-1, Shop 4, Gurudwara Road, Mahavir Enclave, Palam Dabri Road, Palam, New Delhi",Palam,"Palam, New Delhi",77.0817069,28.6004059,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +301775,Pizza Day,1,New Delhi,"Ram Chowk, Sadh Nagar, Palam, New Delhi",Palam,"Palam, New Delhi",77.0961177,28.5942717,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +313012,Pizza Day,1,New Delhi,"Ram Chowk, Main Market, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.0909455,28.5871261,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +18466429,Pritam Tiffin Service,1,New Delhi,"RZ-15B, Main Road, Near Ardent Hospital, Palam, New Delhi",Palam,"Palam, New Delhi",77.0875638,28.5867302,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18222029,Rana Sweets and Restaurant,1,New Delhi,"Shop 180, Rajnagar Part 2, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",0,0,"North Indian, Fast Food, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +302782,Rastogi Sweets & Caterers,1,New Delhi,"Near Bros Grillz, Main Road, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.0899375,28.5848753,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18440259,Recipe Tadka,1,New Delhi,"D 1/252, Street 5, Mahavir Enclave, Palam, New Delhi",Palam,"Palam, New Delhi",77.0849466,28.596432,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18369764,Sahi Pakde Hain,1,New Delhi,"WZ- Gali 3, Jal Jeera Wali Gali, Sadh Nagar, Ram Chowk Market, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.0918982,28.5865739,"North Indian, Mughlai, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +17989110,Sher e Punjab Rasoi,1,New Delhi,"WZ - 427A, Raj Nagar, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.0903881,28.5830299,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18369751,Shyam Rasoi,1,New Delhi,"RZ-16-B, Kailash Puri Road, Main Sagar Pur, Palam, New Delhi",Palam,"Palam, New Delhi",77.10665,28.6040693,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +302046,Subhan Chicken Biryani,1,New Delhi,"Main Road, Mahavir Enclave 3, Palam, New Delhi",Palam,"Palam, New Delhi",77.0687114,28.6030799,Biryani,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18431105,Surprise - Bakers & Bites,1,New Delhi,"RZD 1/366, Street 5, Mahavir Enclave, Palam, New Delhi",Palam,"Palam, New Delhi",77.0847547,28.5962898,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489651,The Night Rider,1,New Delhi,"Palam Colony, Vijay Enclave, Near Shani Mandir, Dashrathpuri, Palam, New Delhi",Palam,"Palam, New Delhi",77.08320702,28.60444754,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +306749,Vikram Ji Snacks,1,New Delhi,"Main Market, Palam Colony, Palam, New Delhi",Palam,"Palam, New Delhi",77.0909427,28.583969,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +308128,Yadav Chaat Bhandar,1,New Delhi,"14/5 Sadh Nagar, Near Rajasthani Hotel, Palam, New Delhi",Palam,"Palam, New Delhi",77.0893623,28.5883368,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +306653,Yadav Ji Chholey Bhature,1,New Delhi,"Main Road, Mahavir Enclave, Part 3, Palam, New Delhi",Palam,"Palam, New Delhi",77.0686475,28.6062929,Street Food,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18433910,Burger King,1,New Delhi,"Palate of Delhi, Dhaula Kuan Metro Station, Chanakyapuri, New Delhi","Palate of Delhi, Chanakyapuri","Palate of Delhi, Chanakyapuri, New Delhi",77.1622219,28.5921535,"Burger, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,10 +18435287,Chaayos,1,New Delhi,"Ground Floor, Palate of Delhi, Dhaula Kuan Metro Station, Chanakyapuri, New Delhi","Palate of Delhi, Chanakyapuri","Palate of Delhi, Chanakyapuri, New Delhi",77.1622219,28.5921535,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,4 +18433897,Berco's,1,New Delhi,"Palate of Delhi, Dhaula Kuan Metro Station, Chanakyapuri, New Delhi","Palate of Delhi, Chanakyapuri","Palate of Delhi, Chanakyapuri, New Delhi",77.1622219,28.5921535,"Chinese, Thai",900,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18435820,Chicago Pizza,1,New Delhi,"Palate of Delhi, Dhaula Kuan Metro Station, Chanakyapuri, New Delhi","Palate of Delhi, Chanakyapuri","Palate of Delhi, Chanakyapuri, New Delhi",77.162132,28.5921448,Pizza,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18435289,Domino's Pizza,1,New Delhi,"Palate of Delhi, Dhaula Kuan Metro Station, Chanakyapuri, New Delhi","Palate of Delhi, Chanakyapuri","Palate of Delhi, Chanakyapuri, New Delhi",77.1622219,28.5921535,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18438424,Dunkin' Donuts,1,New Delhi,"Palate of Delhi, Dhaula Kuan Metro Station, Chanakyapuri, New Delhi","Palate of Delhi, Chanakyapuri","Palate of Delhi, Chanakyapuri, New Delhi",77.1620421,28.5921362,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18435290,Keventers,1,New Delhi,"Palate of Delhi, Dhaula Kuan Metro Station, Chanakyapuri, New Delhi","Palate of Delhi, Chanakyapuri","Palate of Delhi, Chanakyapuri, New Delhi",77.162132,28.5921448,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18433864,Khan Chacha,1,New Delhi,"Palate of Delhi, Dhaula Kuan Metro Station, Chanakyapuri, New Delhi","Palate of Delhi, Chanakyapuri","Palate of Delhi, Chanakyapuri, New Delhi",77.1622219,28.5921535,"Mughlai, North Indian",650,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18435829,Wow! Momo,1,New Delhi,"Palate of Delhi, Dhaula Kuan Metro Station, Chanakyapuri, New Delhi","Palate of Delhi, Chanakyapuri","Palate of Delhi, Chanakyapuri, New Delhi",77.162132,28.5921448,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +7618,Aalis Kathi Kabab,1,New Delhi,"Shop 4, Panchsheel Enclave Market, Panchsheel Park, New Delhi",Panchsheel Park,"Panchsheel Park, New Delhi",77.2300888,28.5438243,"Fast Food, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,46 +3637,Dill's Chawla Chik Inn,1,New Delhi,"1, Panchseel Enclave Market, Panchsheel Park, New Delhi",Panchsheel Park,"Panchsheel Park, New Delhi",77.2301503,28.543918,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,66 +302277,Ipshita's Cakes Mamma Bakes,1,New Delhi,"C7, Soami Nagar South, Panchsheel Park, New Delhi",Panchsheel Park,"Panchsheel Park, New Delhi",77.2260944,28.5420321,Bakery,700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,11 +18216942,Big Wong,1,New Delhi,"28, Shopping Complex, Panchsheel Park, New Delhi",Panchsheel Park,"Panchsheel Park, New Delhi",77.2112423,28.5480806,"Chinese, Thai",900,Indian Rupees(Rs.),No,Yes,No,No,2,4.3,Green,Very Good,108 +5784,Giani's,1,New Delhi,"Pandara Road Market, New Delhi",Pandara Road Market,"Pandara Road Market, New Delhi",77.230028,28.6079937,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,39 +5783,Baskin Robbins,1,New Delhi,"20, Muncipal Market, Pandara Road Market, New Delhi",Pandara Road Market,"Pandara Road Market, New Delhi",77.2297975,28.6079866,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,39 +800,Chicken Inn,1,New Delhi,"13-15, Pandara Road Market, New Delhi",Pandara Road Market,"Pandara Road Market, New Delhi",77.2298169,28.6080413,"North Indian, Mughlai, Chinese",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,447 +73,Ichiban,1,New Delhi,"9, Pandara Road Market, New Delhi",Pandara Road Market,"Pandara Road Market, New Delhi",77.2297892,28.6080707,"Chinese, Thai, Japanese",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,768 +308537,Krishna Di Kulfi,1,New Delhi,"Shop 7, Pandara Road Market, New Delhi",Pandara Road Market,"Pandara Road Market, New Delhi",77.2298329,28.6080468,"Ice Cream, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,154 +803,Pindi,1,New Delhi,"16, Pandara Road Market, New Delhi",Pandara Road Market,"Pandara Road Market, New Delhi",77.2300185,28.6079765,"North Indian, Mughlai, Chinese",1700,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,337 +103,Veg Gulati,1,New Delhi,"8, Pandara Road Market, New Delhi",Pandara Road Market,"Pandara Road Market, New Delhi",77.2298055,28.6080723,North Indian,1200,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,600 +18421051,Chor Bizarre,1,New Delhi,"Bikaner House, Pandara Road Market, New Delhi",Pandara Road Market,"Pandara Road Market, New Delhi",77.2305318,28.6081696,North Indian,1600,Indian Rupees(Rs.),Yes,No,No,No,3,4.4,Green,Very Good,64 +799,Gulati,1,New Delhi,"6, Pandara Road Market, New Delhi",Pandara Road Market,"Pandara Road Market, New Delhi",77.229733,28.6081402,"North Indian, Mughlai",1500,Indian Rupees(Rs.),No,Yes,No,No,3,4.4,Green,Very Good,4373 +801,Havemore,1,New Delhi,"11-12, Pandara Road Market, New Delhi",Pandara Road Market,"Pandara Road Market, New Delhi",77.2297998,28.6080483,North Indian,1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,1157 +308845,Aggarwal Sweets,1,New Delhi,"A 15, Ganesh Nagar Complex, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.2853799,28.619105,Street Food,250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +306826,Om Sai Dosa Corner,1,New Delhi,"109, Near D Park, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.2843146,28.6187643,"South Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18432030,Angelena Restaurant,1,New Delhi,"D 490, West Vinod Nagar, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.2847393,28.6213874,"North Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18466825,Chennai Dosa Express,1,New Delhi,"E-167/3, Samaspur Road, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.21252906,28.62789848,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18491638,Chennai Dosa Xpress,1,New Delhi,"167/3, Samasthpur Road, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",0,0,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18499474,Domino's Pizza,1,New Delhi,"Ground Floor, Plot 69, Opposite Mother dairy, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",0,0,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18440169,Foodizm,1,New Delhi,"Pandit Complex, Bhandari Chimint, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.2858165,28.6192264,"North Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18393448,Healthy Nutrienty,1,New Delhi,"Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.2847055,28.6213699,"Beverages, Healthy Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18294222,Kalka Ji Rasoi,1,New Delhi,"A-61, Ganesh Nagar, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.28373256,28.62103989,"Street Food, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18232109,Kolkata Biriyani On Call,1,New Delhi,"Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.2847283,28.6213841,Biryani,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +303468,Mahavir Sweets,1,New Delhi,"J-37, Opposite Mother Dairy, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.2835092,28.6180762,Mithai,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18289272,Massi's Kitchen,1,New Delhi,"494, Ganesh Nagar 2, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.2857811,28.6238533,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18440436,New Shama Chicken Restaurant,1,New Delhi,"Ganesh Nagar Complex, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.2849549,28.6210849,Biryani,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18372299,Pizza King,1,New Delhi,"Shop 24, Near D Park, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.2842381,28.6185463,Pizza,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18244429,Raj Shri,1,New Delhi,"Mandawali Fazalpur, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.2833786,28.6180657,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18449949,Roll Junction,1,New Delhi,"F 205 & 206, Near Akshardham Temple, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",0,0,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +311199,Sai Bhojanalay,1,New Delhi,"Plot 43, Near D-Park, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.2847755,28.6185799,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +300801,Shree Balaji Caterers,1,New Delhi,"A-106, Opposite Fair Price, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.2843343,28.618738,"Mughlai, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18293989,Smily Cakes,1,New Delhi,"B-75, West Vinod Nagar, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.29241386,28.62235249,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18440163,Zaika Restaurant,1,New Delhi,"B-83, Ganesh Nagar Complex, Pandav Nagar, New Delhi",Pandav Nagar,"Pandav Nagar, New Delhi",77.280266,28.6193685,"Mughlai, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18303817,"34, Chowringhee Lane",1,New Delhi,"Shop 9, Block A2, DDA Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1028857,28.6725877,Fast Food,350,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,30 +312913,A Pizza House,1,New Delhi,"Shop 10, A2, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1029262,28.6726853,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,38 +5645,Amrit Family Rasoi,1,New Delhi,"2, BG-6, DDA Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1086886,28.6628265,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,53 +312387,Bake Club,1,New Delhi,"B-2/9, Near HDFC Bank, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1047423,28.6689519,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,15 +5594,Cafe Coffee Day,1,New Delhi,"A3/320, Jwala Heri Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1024553,28.6700417,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,40 +18175309,Cake O Frost,1,New Delhi,"Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.090488,28.667271,Bakery,350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,14 +312990,Chawla Kitchen,1,New Delhi,"G-29, Vardhaman Plaza, Near Bank Of India Bank Bhera Enclave, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.0881856,28.6727831,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,49 +18233577,Cherry Fresh,1,New Delhi,"A-3, DDA market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1088139,28.6704942,"Ice Cream, Desserts",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,21 +309836,Chocooze,1,New Delhi,"Sunder Vihar, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.08939813,28.66483434,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,9 +7692,Chuk Chuk Mail,1,New Delhi,"Opposite A 5, DDA Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1041432,28.6755527,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,44 +18224548,Da Pizza Bakers,1,New Delhi,"RR-11, Miyanwali Nagar, Opposite Metro Pillar 300, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.0876088,28.6800158,Pizza,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,24 +213,Domino's Pizza,1,New Delhi,"1 & 2, Block A-5 B, DDA Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1043703,28.6768613,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,111 +7488,Green Chick Chop,1,New Delhi,"1, A-4, Gole DDA Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1113214,28.6772543,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,51 +18356817,Grill Zone,1,New Delhi,"A-4 DDA Market, Near Saakshara Apartments, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.10953582,28.67279557,"Fast Food, Italian, Pizza",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,23 +1987,Grover Mithaivala,1,New Delhi,"A-4/43, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1101679,28.6707476,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,46 +18241871,Hong Kong Express,1,New Delhi,"Shop 183, Avtar Enclave, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1044433,28.6764727,"Chinese, Thai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,50 +300337,Hot Spot Roll Corner,1,New Delhi,"G 68, Satyam Tower, Near Post Office, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.10151667,28.66980833,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,34 +18232113,Jaiveer Naan & Chaap,1,New Delhi,"BG-8 Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1005941,28.6625244,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,27 +303018,Jaiveer Naan & Chaap,1,New Delhi,"Jwala Heri Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1011865,28.6684312,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,27 +300318,Kabab Hut,1,New Delhi,"48, DDA Market, Sunder Plaza, Near Mother Dairy, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.091691,28.6645411,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,37 +18070479,Kabbaba,1,New Delhi,"A2, Shop 9-12, JDS, DDA Community Center, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.10144192,28.67004128,"North Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,31 +9956,McDonald's,1,New Delhi,"G-1, Pushkar Enclave, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.0923895,28.6636449,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,94 +5652,New Durga Corner,1,New Delhi,"3-A & 5-B, DDA Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1043454,28.6770198,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,37 +7330,New Durga Dosa Corner,1,New Delhi,"GH-14/753, Gate 6, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.0845702,28.6702286,"South Indian, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,43 +4801,Pishori Chicken,1,New Delhi,"BG-8, DDA Market, Near Teacher's Colony, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.10041028,28.66237699,North Indian,700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,46 +9853,Pizza Break,1,New Delhi,"M-139, Guru Harikishan Nagar, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.083637,28.6705118,"Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,75 +308929,Pizza Hut Delivery,1,New Delhi,"A-6/10, Chaudhary Balbir Singh Marg, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1037178,28.6743735,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,58 +300344,PK Shoppe,1,New Delhi,"4, D/3, KC Complex, Jwala Heri Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.10166944,28.66843611,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,36 +18372287,Pudding & Pie,1,New Delhi,"B-22, Shubham Enclave, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.0923449,28.6651734,"Bakery, Desserts, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,16 +18198449,Punjabi Angithi,1,New Delhi,"Shop 32, A-4, DDA Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1090579,28.6726943,"North Indian, South Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,31 +300343,Punjabi Handi,1,New Delhi,"G-2, Balaji Plaza, Bhera Enclave, LSC, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.0883005,28.6732969,"North Indian, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,39 +300323,Quality Cake Shop,1,New Delhi,"1/2, Opposite White House, Sunder Vihar, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.0921794,28.663641,"Desserts, Fast Food, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,92 +2366,Rahul's Rasoi,1,New Delhi,"23, B-1 Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1085776,28.6700821,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,78 +300334,RTW,1,New Delhi,"C-9, D Mall, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.09194355,28.66727869,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,49 +300321,Sahib e Aalam,1,New Delhi,"34, Sunder Plaza Market, Outer Ring Road, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.0916769,28.6644992,"North Indian, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,49 +5655,Shree Durga Dosa,1,New Delhi,"Shop 11, B-4, DDA Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1078468,28.6656865,"South Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,35 +7274,Shree Durga Dosa,1,New Delhi,"Gg-14, Shop 561, Near HDFC Bank, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.0850323,28.6702637,"South Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,27 +9670,Shree Rathnam,1,New Delhi,"4, State Bank Nagar, Outer Ring Road, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.0917501,28.6609267,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.2,Orange,Average,95 +311957,Sunil Momos.Com,1,New Delhi,"GH-14, 1197, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.08380103,28.66988331,Chinese,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,65 +1990,Temptation Food,1,New Delhi,"2, Near Kishan Chand Complex, Jwala Heri Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1011338,28.6684011,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,29 +18279470,Wheelyz,1,New Delhi,"BG-8, Shop 16, DDA Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1006085,28.6622052,"North Indian, Chinese, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,32 +307965,Ashok Meat Wala,1,New Delhi,"Shop 16, G-H10, Sunder Vihar, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.0916553,28.6643779,Mughlai,500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,40 +18336183,Biryani Sons & Co.,1,New Delhi,"Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.10143723,28.66843981,"Biryani, North Indian",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,63 +18472416,Curry Tree,1,New Delhi,"18, BG - 8, DDA Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1008109,28.66197022,North Indian,700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,18 +306636,Deli 63,1,New Delhi,"Shop 3, A-4, Opposite Paschim Vihar East Metro Station, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1113276,28.6770448,"Fast Food, Street Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,52 +300335,Friends Shawarma,1,New Delhi,"111, Sundram Tower, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1018159,28.6701038,"North Indian, Mughlai",350,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,107 +311379,Ganesh Restaurant,1,New Delhi,"BG-8, DDA Central Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1005797,28.6626766,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,105 +18379474,Kake Da Hotel,1,New Delhi,"19, BG-8, DDA Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1005772,28.6621865,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,29 +309307,Nirmal Vada Pav,1,New Delhi,"Shop 26, B-1 Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1089081,28.6698165,Street Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,75 +312425,Oasis Baklawa,1,New Delhi,"B 2/9, Near HDFC Bank, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1048462,28.6691804,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,76 +7291,Puri Bakers,1,New Delhi,"A-3/264, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1073558,28.6700408,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,108 +18163915,Wonder Taste of Spices,1,New Delhi,"Shop 50, Ground Floor, DDA Market, Near Block B-3, Teachers Colony, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.100584,28.6626539,"North Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,75 +18233583,Biryaniwala,1,New Delhi,"G-5, Vardhman Plaza, LSC Near National Market, Bhera Enclave, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.08830345,28.67277733,"Biryani, North Indian",300,Indian Rupees(Rs.),No,Yes,No,No,1,2.1,Red,Poor,68 +310630,Firangi N More,1,New Delhi,"Shop 33, B-1 Market, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.1088081,28.6701078,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.2,Red,Poor,43 +7271,Pakwan,1,New Delhi,"G 9, Garg Plaza, LSC, Bhera Enclave, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.0881834,28.6733616,"North Indian, Chinese, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.1,Red,Poor,45 +18138442,Subway,1,New Delhi,"M-1, Guru Harkishan Nagar, Paschim Vihar, New Delhi",Paschim Vihar,"Paschim Vihar, New Delhi",77.0876301,28.6700688,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,31 +308559,24x7,1,New Delhi,"JP Hotel, 6B, Near Max Hospital, Patparganj, New Delhi Patparganj",Patparganj,"Patparganj, New Delhi",77.3095668,28.6342441,"North Indian, Continental, Chinese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,18 +18358841,Cafe Cook,1,New Delhi,"A-139, Madhu Vihar, Near, Patparganj, New Delhi",Patparganj,"Patparganj, New Delhi",77.3102527,28.6351477,"Fast Food, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,15 +18397140,La-Nawaab,1,New Delhi,"G-4, Atlantic Market, Near Canara Bank, Patparganj, New Delhi",Patparganj,"Patparganj, New Delhi",77.3082555,28.6279757,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +18168171,Roadside Cafe,1,New Delhi,"Shop 11, C-7, Sai Chowk, Madhu Vihar, Patparganj, New Delhi",Patparganj,"Patparganj, New Delhi",77.3040401,28.6347816,"Chinese, North Indian",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,55 +18458961,Royal India Food Plaza,1,New Delhi,"G4, Pankaj Corner Plaza, IP Extension, Patparganj, New Delhi",Patparganj,"Patparganj, New Delhi",0,0,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +18208914,Sir John Bakery Cafe,1,New Delhi,"Shop 19, DDA Central Market, Near Balco Apartments, Patparganj, New Delhi",Patparganj,"Patparganj, New Delhi",77.3061913,28.6311367,"Bakery, Desserts, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,27 +18231410,Bikku Bakes,1,New Delhi,"C-5, Press Apartments, Patparganj, New Delhi",Patparganj,"Patparganj, New Delhi",77.3014118,28.6238399,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,59 +18037850,Giani,1,New Delhi,"G-5, Aggarwal Towers, I.P.Extension, Near Ajanta Apartments, Patparganj, New Delhi",Patparganj,"Patparganj, New Delhi",77.3080199,28.6280118,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,65 +307501,Zune - Piccadily Hotel,1,New Delhi,"Piccadily Hotel, District Center Complex, Janakpuri, New Delhi","Piccadily Hotel, Janakpuri","Piccadily Hotel, Janakpuri, New Delhi",77.079438,28.6295053,"North Indian, Kashmiri, Mughlai",2000,Indian Rupees(Rs.),Yes,No,No,No,4,2.6,Orange,Average,67 +3362,361 Restaurant & Banquet,1,New Delhi,"361, Kohat Enclave, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1405619,28.6977426,"North Indian, Chinese, Seafood",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,67 +18424879,6 Pack Momos,1,New Delhi,"QU Block, DDA Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1411462,28.7126174,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,7 +18363074,Amritsari Kulcha,1,New Delhi,"Flat 22, RU Block, Opposite Power House, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1355283,28.7085403,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,4 +18386078,Bake Houz,1,New Delhi,"HU-7, Near Ram Lila Ground, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1473489,28.7128025,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,4 +313146,Ben's Foods,1,New Delhi,"QU-272 A, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.138944,28.7120026,"North Indian, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,9 +3967,Bobby Punjabi Rasoi,1,New Delhi,"24, KD Block, DDA Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1390339,28.6987597,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,113 +18378050,Bromfy Public House,1,New Delhi,"Shop 5-8, Pankaj Arcade, Near Fawara Chowk, Rani Bagh, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1348248,28.68867,"Continental, Italian, North Indian, Lebanese",1600,Indian Rupees(Rs.),No,No,No,No,3,2.8,Orange,Average,27 +309685,BTW,1,New Delhi,"WZ 664, Rishi Nagar, Rani Bagh, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1296855,28.6888166,"Street Food, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,63 +8940,Chacha Shankar,1,New Delhi,"KP Block, Double Tank, Near Petrol Pump, City Park Hotel, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1414823,28.7052826,North Indian,650,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,29 +300672,Chaska,1,New Delhi,"G-6, Maya Complex, GU Block, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1452027,28.7147226,"North Indian, South Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,161 +313355,Chatore.e.e,1,New Delhi,"GU Block, Vardhman Complex, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1452869,28.7145998,"North Indian, Mughlai, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,38 +2958,Chawla's Tandoori Xpress,1,New Delhi,"2 & 3, DDA Commercial Complex, Road 44, Fountain Chowk, Rani Bagh, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1351688,28.6880009,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,75 +304093,Chawla's Tandoori Xpress,1,New Delhi,"3 & 4, Plot 7, Vardhman Shopping Complex, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1450145,28.6998969,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,45 +6453,Chinese Hut,1,New Delhi,"JD Block Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1357531,28.7013542,Chinese,450,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,60 +18456456,Culinaria,1,New Delhi,"66, Shakti Vihar, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1306743,28.6939262,"North Indian, Chinese, Continental, Thai",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,10 +18306511,Deli Cake Cafe,1,New Delhi,"RP 8, Near Gopal Mandir, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1499993,28.7007092,"Bakery, Fast Food, Chinese",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,33 +214,Domino's Pizza,1,New Delhi,"1 & 21 KD, Ground Floor, DDA Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1394556,28.6992587,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,73 +3892,Domino's Pizza,1,New Delhi,"19, Ground Floor, Road 44, Community Centre, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1350789,28.6886191,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,65 +300873,Dragon Hut,1,New Delhi,"AP Block Market, Near Corporation Bank ATM, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1406518,28.70384,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,72 +307419,Frontier Restaurant,1,New Delhi,"24, BU Block, DDA Market, Outer Ring Road, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1404369,28.7183711,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,7 +5862,Giani's,1,New Delhi,"JP-8, Gopal Mandir Road, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1459548,28.7039917,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,36 +18477957,Giani,1,New Delhi,"GU- 3A, SG Century Plaza, DDA Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.14529034,28.7147518,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18398575,Grand Bikaner,1,New Delhi,"C D Block, LSC, Aggarwal Chambers, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.138135,28.7062841,"Mithai, Street Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,5 +1123,Hill Chillz 26,1,New Delhi,"A-5, NN Tower, Road 44, Rani Bagh, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1350596,28.6883727,"Ice Cream, Desserts",150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,41 +313443,K's Town,1,New Delhi,"S-1, SG Century Plaza, GU Block Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1453257,28.7146757,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,20 +306816,Laxmi Ice Cream Parlour,1,New Delhi,"QU 4, Near Wah Bhai Wah, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1416405,28.7119934,"Ice Cream, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +312471,Make My Day,1,New Delhi,"Shop 1, 322, Rajdhani Enclave, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1360227,28.68571,"Desserts, Bakery, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,25 +194,McDonald's,1,New Delhi,"M2K Multiplex, Community Centre, Road 44, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1331014,28.6893243,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,58 +1959,Mikky Peshawari,1,New Delhi,"7, NN Tower, Shopping Complex, Road 44, Fountain Chowk, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1351915,28.6877493,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,49 +17977763,Moroca,1,New Delhi,"Shop 21, Plot 4, Garg Plaza, LSC Shopping Complex, Sainik Vihar, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.121461,28.6882703,Fast Food,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,31 +8941,New Punjabi Dhaba and Caterers,1,New Delhi,"WZ/1593, Vasundhara Market, Main Bazar, Rani Bagh, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1300451,28.6880453,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,39 +308607,Pandey Chinese Hut,1,New Delhi,"Shop 7, S.G Complex, GU Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1415008,28.7122653,"Chinese, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,43 +313442,Pandey Chinese Hut,1,New Delhi,"Shop 1, QU Block Park, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1452358,28.714488,"Chinese, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,7 +18358201,Peppers & Pipes,1,New Delhi,"Shop 8, SG Complex, GU Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1452358,28.7147566,"Chinese, Italian, Continental",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,15 +5392,Punjabi Zaika,1,New Delhi,"3547, Mahindra Park Chowk, Near Ram Leela Ground, Rani Bagh, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1357081,28.6834858,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,110 +312334,Punjabi's Eating Hub,1,New Delhi,"G-5 & G-6, Anshul Tower, LSC, Sainik Vihar Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1215051,28.6882083,"North Indian, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,31 +18396440,Punjabian Di Shaan,1,New Delhi,"Shop G-11, Aditya Complex, KP Block, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1417304,28.7052868,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,4 +3966,Puran Chand,1,New Delhi,"25, KD Market, Near Kohat Enclave Metro Station, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1393754,28.6991601,North Indian,750,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,48 +304389,Ram Chinese Food,1,New Delhi,"UU Block, Near Maharaja Agrasen Model School, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1390339,28.7052961,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,9 +18175260,Rooftop,1,New Delhi,"Shop 7, 1st Floor, QU Block, DDA Market, Opposite Income Tax Colony, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1401237,28.7133009,"North Indian, Chinese, Italian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,24 +18057827,Ruchi's Food Junction,1,New Delhi,"Shop G-41, Plot 21, Ground Floor, Commercial Complex KP Block, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1417304,28.7052868,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,8 +8961,Sahni Veg & Non Veg,1,New Delhi,"G-6, Plot 6, KP Block, Community Complex, Near City Park Hotel, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1421798,28.70533,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,26 +312327,Shiv Chinese Chat Bhandar,1,New Delhi,"Main Road, Near SU Park, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1382808,28.7063335,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,13 +306809,Shutup 'N' Eat,1,New Delhi,"Shop 23, Garg Plaza, Sainik Vihar, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1214601,28.6882488,"North Indian, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,158 +9792,Sindhi Chicken Corner,1,New Delhi,"Lu Market, Near Ramlila Ground, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1437977,28.710052,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,80 +18218787,Smokshh The Lounge,1,New Delhi,"Building 2, 2nd Floor, Vaishali Enclave, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1369665,28.6999935,"Cafe, North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,25 +311512,Subway,1,New Delhi,"66, Harsh Vihar, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.13418,28.6954275,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,77 +18421020,The Blessing Bliss,1,New Delhi,"Plot 4, 80th Feet Road, Local Shopping Complex, Police Line Marg, Near Bal Bharti Public School, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1058511,28.6912752,"North Indian, Continental, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,21 +308364,The Butter Cup,1,New Delhi,"CP 22, Maurya Enclave, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1413709,28.7049836,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +307276,The Cake Bucks,1,New Delhi,"KP-09, Gopal Mandir Road, Near City Park Hotel, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1447393,28.7049788,"Bakery, Fast Food, Chinese",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,85 +18350101,The Taste of Delhi,1,New Delhi,"Shop 2, 4, 6, & 7, CD Block, Sagar Complex, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1377755,28.7065181,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,128 +18361220,The Taste,1,New Delhi,"Shop 22, SU Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1393205,28.7071071,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +311576,VadaPav 'n' Frankie,1,New Delhi,"CD Block, Aggarwal Shopping Centre, Near SU Park, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1375505,28.7067569,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +300836,Vaishnav Chat & Caterers,1,New Delhi,"2 & 3, Rohit Kunj Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1402923,28.6917172,"Street Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,34 +18265418,Yellowtail,1,New Delhi,"WZ-884, Near Punjab & Sind Bank, Rani Bagh, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1304079,28.6838684,"North Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,19 +18017253,Baker's Stop,1,New Delhi,"209, Harsh Vihar, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1336856,28.6953352,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,71 +300872,Bansal Sweets,1,New Delhi,"6, JD Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1355462,28.7012377,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,91 +3333,Bharat Sweets,1,New Delhi,"KD-81, Near Kohat Enclave Metro Station, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1400381,28.6984959,"Mithai, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,26 +6451,Dosa Corner,1,New Delhi,"33-A, JD Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1355856,28.701269,"South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,93 +6454,Green Chick Chop,1,New Delhi,"2, JD Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1355283,28.7012878,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,68 +18476960,Greenvich,1,New Delhi,"Shop G9, Pearl Best Heights 2, Netaji Subash Place, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",0,0,"Chinese, Continental",350,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,40 +18398592,Hamburg To Hyderabad,1,New Delhi,"Near Pushpanjali Enclave, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1116159,28.6930758,"Hyderabadi, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,63 +18265676,I Food You,1,New Delhi,"Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1296406,28.6885884,"Continental, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,92 +3080,Kay's Chicken Corner,1,New Delhi,"17, ND Market, Near TV Tower, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1455953,28.6997487,"Mughlai, North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,103 +313173,Lanche,1,New Delhi,"Near Netaji Subhash Place, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1379553,28.6992827,"Fast Food, Healthy Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,105 +18476896,Marshmallow Cakes & More,1,New Delhi,"Shop G7, Plot 7, DP Block Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.14499371,28.70012968,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,10 +306011,Om Corner,1,New Delhi,"612, Rishi Nagar, Rani Bagh, Near Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1290202,28.6884763,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,57 +4683,Peshawari,1,New Delhi,"K.D. Block, DDA Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1393218,28.69919,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,79 +18222572,Puri Bakers,1,New Delhi,"Plot 17, Engineer Enclave, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1346295,28.6955603,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,72 +18464054,Republic Of Food Lovers,1,New Delhi,"Shop 20, Sainik Vihar Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",0,0,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,27 +8964,Sharma Bakers,1,New Delhi,"WZ/1075, Main Bazar, Rani Bagh, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1291911,28.6861274,Bakery,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,33 +18322667,Street Hawkers,1,New Delhi,"G-2, Anshul Tower, Shopping Centre, Sainik Vihar, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1217587,28.6882228,"Chinese, Beverages",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,32 +311209,The Midnight Heroes,1,New Delhi,"Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.140472,28.7046286,"North Indian, Biryani, Chinese, Fast Food",950,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.6,Yellow,Good,379 +6449,Tilak Munjal-R Panchkuian Samose Wale,1,New Delhi,"JD 21, Ashiana Chowk, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1358879,28.7008747,Street Food,100,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,98 +18363081,3x Cafe,1,New Delhi,"22, RU Block, Opposite Power House, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1355204,28.7085129,"Fast Food, Desserts, Beverages",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18451571,Amritsari Naan,1,New Delhi,"QU-1, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.141747,28.712165,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18359282,Chinese Tadka,1,New Delhi,"KP Block, Near City Park Hotel, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1426944,28.7064856,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18361222,Dinesh Meat Wala,1,New Delhi,"Shop 28, LU, DDA Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1437283,28.7100972,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18358182,Jeet Pizza,1,New Delhi,"QU Block Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1416255,28.7122306,"Pizza, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +18361223,New South Indian & Chinese Foods,1,New Delhi,"Shop 197A, QU, Block, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1406183,28.7129394,"South Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18451573,Niti Shake & Ice Cream Hub,1,New Delhi,"QU Block, DDA Market, Opposite Income Tax Colony, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1401987,28.7132994,"Desserts, Beverages",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18396396,Yumbuns,1,New Delhi,"Shop 6, QU Block, DDA Market, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1402024,28.7132876,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +312763,Giri Momos Centre & Chinese Fast Food,1,New Delhi,"Shop 1, Rajasthali Market, Main Road, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1339547,28.7017575,Chinese,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,69 +307444,Laalwala's,1,New Delhi,"3399, Mahindra Park Chowk, Rani Bagh, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1359778,28.6836909,"North Indian, Mithai, South Indian, Street Food, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,37 +305398,Sagar Ratna,1,New Delhi,"FD 2, Ground Floor, Near Pitampura Metro Station, Pitampura, New Delhi",Pitampura,"Pitampura, New Delhi",77.1325545,28.7032305,"South Indian, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,131 +302815,Babu Shahi Bawarchi,1,New Delhi,"5, Darga Makta Peer, Pragati Maidan, New Delhi",Pragati Maidan,"Pragati Maidan, New Delhi",77.2405602,28.6143292,Biryani,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,100 +305525,Cafe Lota,1,New Delhi,"National Crafts Museum, Gate 2, Bhairon Marg, Pragati Maidan, New Delhi",Pragati Maidan,"Pragati Maidan, New Delhi",77.2419091,28.6131676,"North Indian, South Indian, Bihari",1200,Indian Rupees(Rs.),No,No,No,No,3,4.5,Dark Green,Excellent,2213 +313481,Bombay's Royal China,1,New Delhi,"Shop 76, DDA Market, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1369983,28.71318,"Chinese, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,17 +18359287,Chin China,1,New Delhi,"Shop 1, RG Complex 1, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1346295,28.7159746,Chinese,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +18199151,Cholkat,1,New Delhi,"B-28, Milansar Apartment, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1346295,28.7153479,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +311162,Deluxe Butter Omlette,1,New Delhi,"S-71, Aggarwal Plaza, Opposite Balaji Mandir, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1344497,28.7155992,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,13 +18204823,Giani's,1,New Delhi,"B-12/3, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1331449,28.710643,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,12 +302465,Kanha Sweets,1,New Delhi,"A 14, Near Lancer's Convent School, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1344612,28.7098286,"Street Food, Mithai",150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,24 +18359296,Liquid,1,New Delhi,"D Block, Central Market, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1375058,28.7127596,"North Indian, Mughlai, Chinese",2400,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,11 +300925,Papa Chinese Veg Food,1,New Delhi,"B-12/5, Opposite CRPF School, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1333485,28.7106084,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,12 +307026,Punjab To China,1,New Delhi,"72, D Block, Local Shopping Complex, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1369216,28.7128377,"Chinese, North Indian",550,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,19 +18352220,Chocolacious by WedCraft,1,New Delhi,"G-9, RG Complex 2, Near Sector 14, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1345845,28.7154778,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18359300,Frontier,1,New Delhi,"C-284, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1340901,28.7143111,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18445759,Gopal Ji Rasoi Wala,1,New Delhi,"A-75, Opposite Lancer Convent School, Prashant Vihar",Prashant Vihar,"Prashant Vihar, New Delhi",77.1337829,28.7101555,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18435210,Kanuchawala,1,New Delhi,"Shop 58, D Block, DDA Market, Opposite PVR Mall, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1371188,28.7132323,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18430914,Keventers,1,New Delhi,"Ground Floor, PVR Prashant Vihar, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1362474,28.7124595,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18216703,Muncheezz,1,New Delhi,"G-4, Sarda Chamber 2, Plot 15, D Block, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1375957,28.7124101,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18359285,Shaketastic,1,New Delhi,"Shop 108, Aggarwal Plaza ,RG Complex 2, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1343223,28.7155806,Beverages,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18359289,Sree Krishna Udupi,1,New Delhi,"G-1, RG Complex 2, Prashant Vihar, New Delhi",Prashant Vihar,"Prashant Vihar, New Delhi",77.1350789,28.7153016,"South Indian, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18057816,Asia 21,1,New Delhi,"F-21, 1st Floor, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2958299,28.6414658,"Asian, North Indian, Japanese",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.9,Orange,Average,48 +18303432,Barkat,1,New Delhi,"10, Park End, Vikas Marg, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2974723,28.6434655,"North Indian, Mughlai",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.4,Orange,Average,67 +3790,Bikanervala,1,New Delhi,"30, Aditya Arcade, Community Centre, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2947783,28.6393251,"North Indian, South Indian, Fast Food, Street Food, Chinese, Mithai",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,81 +2509,Chawla's,1,New Delhi,"G-5, Usha Chamber, New Rajdhani Enclave, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2959927,28.6424569,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,135 +18238913,Cilantro Woodapple,1,New Delhi,"Hotel Woodapple, 3, Hargovind Enclave, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2982982,28.6424299,"North Indian, Continental, Mughlai",800,Indian Rupees(Rs.),Yes,No,No,No,2,3,Orange,Average,8 +215,Domino's Pizza,1,New Delhi,"30, Aditya Arcade, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2949499,28.6393333,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,102 +3793,Giani's,1,New Delhi,"G-1, Sagar Deep Complex, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.296273,28.6427964,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,51 +18244250,Gopala,1,New Delhi,"B-132, Preet Vihar Market, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2908794,28.6347371,"Mithai, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18372294,Green Chick Chop,1,New Delhi,"G-1 DDA Shopping Complex, New Rajdhani Enclave Market, Near Preet Vihar Metro station, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2956527,28.6427539,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +6261,Gupta Chat Corner,1,New Delhi,"1, A Block Market, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2909933,28.6342718,"Street Food, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,47 +18376484,Kake Da Hotel,1,New Delhi,"G1-G2, Sagar Complex, New Rajdhani Enclave, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.296126,28.6428704,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,15 +468,Karim's,1,New Delhi,"1-2/5, Sagar Complex, New Rajdhani Enclave, Vikas Marg, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2964641,28.6427202,"Mughlai, North Indian",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,84 +8276,Katyal Pure Vegetarian,1,New Delhi,"31, LSC Market, New Rajdhani Enclave, Near Preet Vihar Metro Station, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2959509,28.6424226,"Chinese, North Indian, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +6120,Kunal Dhaba,1,New Delhi,"A 56, Jitar Nagar, Parwana Road, Near, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2938388,28.6413119,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,18 +18252395,Midnight Hunger,1,New Delhi,"Main Market, Vikas Marg, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2982982,28.6424254,"North Indian, Chinese, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +18180073,Moon Bite,1,New Delhi,"Near Aditya Complex, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.29361692,28.64106087,"North Indian, Chinese",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,177 +18441678,Nirula's Ice Cream,1,New Delhi,"10 ISC, A-Block Market, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2907956,28.6345502,"Desserts, Ice Cream",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +18400762,Pash!,1,New Delhi,"A-80, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2860243,28.6326548,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,6 +306492,Rashi's De La Creme,1,New Delhi,"90, Shankar Vihar, Near Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2918406,28.6397613,Bakery,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +8488,Rupa Dairy,1,New Delhi,"8, G-7, Chopra Complex, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.294789,28.6397222,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +310536,Sandy's Punjabi Rasoi,1,New Delhi,"Shop 17, DDA Market, Defence Enclave, Opposite Petrol Pump, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2908649,28.6408942,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,24 +308360,Shree Rathnam,1,New Delhi,"G-78, Ground Floor, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2975458,28.6430348,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,121 +18017248,Tandoori Planet,1,New Delhi,"Shop no . 8 ,Ghai Palace, A Block Market, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2910228,28.6343075,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,32 +312855,Tandoori Tadka,1,New Delhi,"21 DDA Market, Defence Enclave, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2911149,28.6409665,"North Indian, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,17 +18463971,Urban Owl,1,New Delhi,"Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",0,0,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,8 +8600,4th Street Cafe,1,New Delhi,"14, G Block, DDA Market, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2979211,28.642275,Fast Food,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,145 +18380143,Late Lateefe,1,New Delhi,"Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2860621,28.6327398,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,44 +18254520,Mr. Brown,1,New Delhi,"Plot 10, LSC Rajdhani Enclave Market, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2960691,28.642482,"Bakery, Desserts, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,50 +18222554,The Riding Guns Cafe,1,New Delhi,"A Block Market, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2912335,28.6345491,Cafe,850,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,100 +18462589,Baskin Robbins,1,New Delhi,"G-17 and 18, New Rajdhani Enclave, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.294171,28.642713,Ice Cream,300,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,1 +18336474,Chai Garam,1,New Delhi,"Shop-16, Plot-10, LSC Rajdhani Enclave, Near Preet Vihar Metro Station, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2963039,28.642748,"Tea, Beverages, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18336477,Chilli Tadka,1,New Delhi,"G-1, Ashish Complex, New Rajdhani Enclave, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2959276,28.6425644,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18382047,Colours of Biryani,1,New Delhi,"G-6, Ashish Complex 2, New Rajdhani Enclave, Opposite Preet Vihar Metro Station, Vikas Marg, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",0,0,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441566,Fc Katyal,1,New Delhi,"G-32, LSC Market, New Rajdhani Enclave, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2959775,28.6424671,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441669,Food State,1,New Delhi,"Aditya Complex, Metro Pillar 106, Vikas Marg, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2943559,28.6405983,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18396358,Giani,1,New Delhi,"126, Rajdhani Enclave, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2963876,28.6427625,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +6248,Gupta Eating Corner,1,New Delhi,"18, G-1, Vardhman Tower, Commercial Complex, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2942644,28.6394682,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +308832,Hot 'N' Cool,1,New Delhi,"Shop 105, A Block Market, Behind Nirulas, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2909535,28.6342767,"Fast Food, Italian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421030,Hot Joint Fast Food,1,New Delhi,"Near PSK, Shankar Vihar, Opposite Pillar 70, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2885921,28.6378195,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18378016,Murliwala Bakers,1,New Delhi,"Shop 1, DDA Market, Defence Enclave, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2907846,28.640916,"Fast Food, Bakery",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310889,New Garden Hut,1,New Delhi,"Parking Area, Aditya Complex, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2941345,28.6401732,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +308837,Perfect Party Chef,1,New Delhi,"A Block Market, Behind Nirula's, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2910726,28.634274,"Fast Food, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18441685,R.S. Chinese Food,1,New Delhi,"2, A Block Market, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2909771,28.6342674,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +6249,Rama Fast Food,1,New Delhi,"Jagdamba Tower, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2945991,28.6398152,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312860,Shanghai Chinese Food,1,New Delhi,"Mahavir Swami Park, Opposite Aditya Arcade, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2957374,28.6393314,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18378023,Teens Cafe Fast Food,1,New Delhi,"G-19, Plot 10, Local Shopping Complex, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2959899,28.6428518,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18107855,The Tandoor Hut,1,New Delhi,"Plot 10, LSC, DDA Commercial Complex, New Rajdhani Enclave, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.296024,28.6425454,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18396955,The Taste of Tandoor,1,New Delhi,"Shop 12, LSC Market, A Block, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2909616,28.634305,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310896,The Chinese Hut,1,New Delhi,"Plot 10, LSC, DDA Commercial Complex, New Rajdhani Enclave, Preet Vihar, New Delhi",Preet Vihar,"Preet Vihar, New Delhi",77.2959279,28.6425109,"Chinese, North Indian",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,62 +5446,Linx - Premier Inn,1,New Delhi,"Premier Inn, District Centre, Shalimar Bagh, New Delhi","Premier Inn, Shalimar Bagh","Premier Inn, Shalimar Bagh, New Delhi",77.144054,28.725814,"North Indian, Chinese",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3,Orange,Average,32 +5448,The 87 - Premier Inn,1,New Delhi,"Premier Inn, District Centre, Shalimar Bagh, New Delhi","Premier Inn, Shalimar Bagh","Premier Inn, Shalimar Bagh, New Delhi",77.144054,28.725814,North Indian,2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.1,Orange,Average,18 +18408062,Stallion - Pride Plaza Hotel,1,New Delhi,"Pride Plaza Hotel, 5-A, Hospitality District, Aerocity, New Delhi","Pride Plaza Hotel, Aerocity","Pride Plaza Hotel, Aerocity, New Delhi",77.122934,28.552711,North Indian,2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.1,Orange,Average,7 +18415386,Aqua Grill - Pride Plaza Hotel,1,New Delhi,"Pride Plaza Hotel, 5A, Hospitality District, Aerocity, New Delhi","Pride Plaza Hotel, Aerocity","Pride Plaza Hotel, Aerocity, New Delhi",77.12289,28.552732,"Continental, North Indian",3000,Indian Rupees(Rs.),No,No,No,No,4,0,White,Not rated,0 +18397621,Mr. Confectioner - Pride Plaza Hotel,1,New Delhi,"Pride Plaza Hotel, Hospitality District, Aerocity, New Delhi","Pride Plaza Hotel, Aerocity","Pride Plaza Hotel, Aerocity, New Delhi",77.122934,28.552711,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18369301,Aditya's Kulcha Express,1,New Delhi,"1/51, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.1331919,28.6700104,Street Food,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,18 +309383,Allterian By Chanson,1,New Delhi,"1, Ground Floor, Shanti Store Market, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12556068,28.66622877,"Continental, Italian",1300,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,140 +310801,Amuse Lounge,1,New Delhi,"1st Floor, Building 6, Central Market, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13308394,28.67063315,"Fast Food, Chinese, North Indian",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,49 +495,Bikanervala,1,New Delhi,"28, NWA Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.1215605,28.66660385,"North Indian, South Indian, Fast Food, Street Food, Chinese, Beverages, Mithai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,129 +18241532,Cakes Dot Com,1,New Delhi,"614, Pocket - 3, Paschim Puri, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.11450998,28.66729693,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,24 +18445783,Chez Papillons by Bonjour Chocolates,1,New Delhi,"1NWA, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12344006,28.66660532,Cafe,800,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,10 +18352179,Chicago Pizza,1,New Delhi,"47, North Avenue, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12736078,28.66595077,Pizza,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,10 +309309,Choco Doux,1,New Delhi,"37, North Avenue Road, West, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12029751,28.66690979,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,8 +8272,Cocoberry,1,New Delhi,"2, Ground Floor, North West Avenue, Punjabi Bagh Extension, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12341726,28.66653148,Desserts,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,50 +1998,Curries N More,1,New Delhi,"17, Central Market, Behind HDFC Bank, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13267021,28.67067669,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,25 +1120,Dili's Chawla Chik Inn,1,New Delhi,"2/81, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12687194,28.66598342,North Indian,650,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,45 +18369772,Dimsum Vs Sushi,1,New Delhi,"S-2, Bhagwan Das Nagar, East Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.14631662,28.66921407,"Japanese, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,24 +216,Domino's Pizza,1,New Delhi,"27-28, Central Market West, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13436034,28.67114118,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,112 +303051,Everest Momos & Chinese Fast Food,1,New Delhi,"Central Market, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13409312,28.67047254,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,17 +6905,Food Plaza,1,New Delhi,"9, Club Road Market, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.1260123,28.66601166,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,23 +307551,Giani,1,New Delhi,"2/81, Club Road, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12674689,28.66599607,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,37 +306267,Grillz & Gravy,1,New Delhi,"16, NWA Market, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12598313,28.66570983,"North Indian, Chinese, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,57 +306170,Kabab,1,New Delhi,"23, NWA Market, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12608337,28.66539211,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,23 +3972,Khalsa,1,New Delhi,"50 & 51, New Janta Market, Club Road, Paschim Puri Chowk, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.11728808,28.66676065,North Indian,550,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,55 +2951,Kumar Pastry Shop,1,New Delhi,"49/43, AKS Complex, Near Standard Charted Bank, Central Market, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13452697,28.67093203,"Chinese, Bakery",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,48 +308242,Little Chef,1,New Delhi,"Shop 24, Central Market, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13411123,28.67111912,"North Indian, Mughlai, Chinese, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,128 +18153553,Mafia 2.0,1,New Delhi,"Shop 1, 1st Floor, Shanti Store Market, Club Road, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.1255647,28.6661817,"North Indian, Continental, Italian, Thai, Chinese",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,198 +311025,Makhni's,1,New Delhi,"Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.14233086,28.66934925,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,78 +309578,Moksha,1,New Delhi,"Plot 3 & 4, Central Market, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13278923,28.67092056,"Chinese, North Indian, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,54 +476,Moti Mahal Delux,1,New Delhi,"37, Central Market, Punjabi Bagh West, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13415582,28.67103528,"North Indian, Mughlai, Chinese",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.5,Orange,Average,70 +310359,Pudding & Pie,1,New Delhi,"Row 42, Plot 57, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13446863,28.66992391,"Bakery, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,27 +1308,Republic of Chicken,1,New Delhi,"1/51, Opposite Central Market, West Punjabi Bagh, Delhi, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13310942,28.6701719,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,15 +301657,Shree Rathnam,1,New Delhi,"22, Central Market, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13306617,28.67024103,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.4,Orange,Average,111 +309188,Soo Yung by the backyard,1,New Delhi,"49, Ground Floor, NWA, Club Road, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.11976878,28.66684831,"Chinese, Thai",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,84 +8801,Subway,1,New Delhi,"31, Central Market, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13401467,28.67055843,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,167 +1986,The Cake Shop,1,New Delhi,"21-22, NWA Market, Club Road, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.1260133,28.6656307,"Bakery, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,42 +304212,The Night Shift,1,New Delhi,"Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12363921,28.66650942,North Indian,800,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,103 +18288046,The Night Walkers,1,New Delhi,"Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13329248,28.67075935,"North Indian, Chinese, Continental, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,18 +18082238,The Submarine Lounge,1,New Delhi,"27, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12443449,28.66658796,"Chinese, North Indian, Continental, Italian",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,148 +18228854,Tikka Junction,1,New Delhi,"Shop 15 , Central Market, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13270139,28.67064904,"North Indian, Chinese, Mughlai",750,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,27 +303105,Twenty Four Seven,1,New Delhi,"2, North West Avenue, Club Road, Punjabi Bagh Extension, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12327108,28.66667416,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,24 +308067,WTF - Wraps Toast Fries,1,New Delhi,"13-A, East Avenue Market, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.14290284,28.66922319,"Chinese, Fast Food, North Indian",450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,63 +18420452,Food Scouts,1,New Delhi,"Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.133327,28.670435,"North Indian, Chinese, Continental",700,Indian Rupees(Rs.),No,Yes,No,No,2,4.6,Dark Green,Excellent,61 +1054,Alkakori,1,New Delhi,"Crossing North Avenue Road, Punjabi Bagh West, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12789018,28.66642175,"North Indian, Mughlai",850,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,198 +312634,Arabian Delites,1,New Delhi,"2/80, Club Road, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.1270882,28.66598725,"Lebanese, Arabian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,68 +3516,Blue Water Grille,1,New Delhi,"12-13, DDA Market, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12141566,28.66572954,"North Indian, Mughlai, Chinese, Seafood",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,180 +5595,Cafe Coffee Day,1,New Delhi,"Shop 6, 1st Floor, Near Kotak Mahindra Bank, Club Road, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12603889,28.66621389,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,58 +18232108,D_ner Grill,1,New Delhi,"40, North West Avenue, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12002393,28.66714249,"Fast Food, Turkish",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,75 +18358681,Drinks At Stake - Bar Exchange,1,New Delhi,"NWA-26, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12182269,28.66681066,"North Indian, Chinese, Italian, Continental",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,96 +18418237,Ghungroo Club & Bar - By Gautam Gambhir,1,New Delhi,"39, NWA Club Road, Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12365262,28.66655119,North Indian,1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,140 +9230,Gupta Chat Corner,1,New Delhi,"1/51, Central Market, Near Guru Nanak School, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13315569,28.67001569,"Fast Food, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,96 +6901,Gupta Sweets & Namkeen,1,New Delhi,"Shop 8, Near Bank of Baroda, Sector 4 Market, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.125859,28.66622,"Street Food, Mithai",150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,36 +18403003,hug!,1,New Delhi,"Shop 3, Plot 40, NWH Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.1199768,28.6669277,Desserts,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,19 +311421,Lucky's Bakery and Patisserie,1,New Delhi,"2/80, Club Road, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12720487,28.66594841,"Bakery, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,89 +176,McDonald's,1,New Delhi,"Shop 23, Central Market, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13317614,28.67033898,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,141 +1992,Mughal Darbar,1,New Delhi,"21, NWA, Club Road, Punjabi Bagh Extension, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12184951,28.66657825,"North Indian, Mughlai, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,150 +18287382,Nutritious Nation,1,New Delhi,"Shop 2, Ground Floor, Club Road Market, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12559488,28.66624642,"Healthy Food, Continental, Juices, Salad",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.6,Yellow,Good,64 +18294251,Paapi Paet,1,New Delhi,"Shop 1, Building 28, Central Market, West Punjabi Bagh, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13377662,28.6706461,"Fast Food, Beverages",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,68 +18291260,The Derby Cookhouse,1,New Delhi,"42, 3rd Floor, NWA, Club Road, Punjabi Bagh West, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.11988546,28.66695157,"Continental, Italian, North Indian",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,47 +311836,The Midnight Heroes,1,New Delhi,"Central Market, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.13307187,28.67056226,"North Indian, Biryani, Chinese, Fast Food",950,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.6,Yellow,Good,203 +18198459,World Art Dining - Brew House,1,New Delhi,"1, North West Avenue, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12735139,28.66624083,"North Indian, Finger Food, Italian, Chinese",1900,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,121 +18224547,Yo! China,1,New Delhi,"19, Ground Floor, NWA, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12199099,28.66654178,Chinese,1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,127 +307911,Bake Me A Cake,1,New Delhi,"Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.1290395,28.67409075,"Bakery, Desserts",750,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,147 +18287876,Bakerz Lodge,1,New Delhi,"19 NWA, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.12192863,28.66666563,"Bakery, Desserts",250,Indian Rupees(Rs.),No,Yes,No,No,1,4.1,Green,Very Good,99 +18375379,Hawalat Lounge & Bar,1,New Delhi,"16, N.W.A, Club Road, Punjabi Bagh, New Delhi",Punjabi Bagh,"Punjabi Bagh, New Delhi",77.1224178,28.6665862,"North Indian, Continental, Italian",1000,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,126 +7167,Al Bake,1,New Delhi,"22/2, PVR Anupam Complex, Community Centre, Saket, New Delhi",PVR Anupam Complex,"PVR Anupam Complex, New Delhi",77.2069673,28.5233797,"Lebanese, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,159 +219,Domino's Pizza,1,New Delhi,"11, PVR Anupam Complex, Community Centre",PVR Anupam Complex,"PVR Anupam Complex, New Delhi",77.2075519,28.5232693,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,253 +572,Madhuban,1,New Delhi,"18-19, PVR Anupam Complex, Community Center",PVR Anupam Complex,"PVR Anupam Complex, New Delhi",77.2070008,28.5229168,"North Indian, Mughlai, Chinese",850,Indian Rupees(Rs.),Yes,No,No,No,2,3.1,Orange,Average,151 +302381,Pind Balluchi,1,New Delhi,"17, 1st Floor, Community Center, PVR Anupam Complex, Saket, New Delhi",PVR Anupam Complex,"PVR Anupam Complex, New Delhi",77.2070122,28.5233392,"North Indian, Mughlai",1300,Indian Rupees(Rs.),Yes,No,No,No,3,2.8,Orange,Average,249 +309232,Subway,1,New Delhi,"17, PVR Anupam Complex, Community Centre",PVR Anupam Complex,"PVR Anupam Complex, New Delhi",77.20727418,28.52352259,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,115 +18303828,Burger King,1,New Delhi,"PVR Anupam Complex, Saket, New Delhi",PVR Anupam Complex,"PVR Anupam Complex, New Delhi",77.20790416,28.52317764,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,116 +2222,Lebanese Point,1,New Delhi,"GF 7, PVR Anupam Complex, Saket, New Delhi",PVR Anupam Complex,"PVR Anupam Complex, New Delhi",77.2070566,28.5233853,Lebanese,450,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,223 +175,McDonald's,1,New Delhi,"Shop 2, PVR Anupam Complex, Community Centre, Saket, New Delhi",PVR Anupam Complex,"PVR Anupam Complex, New Delhi",77.20765002,28.52335409,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,219 +18400733,Nukkadwala,1,New Delhi,"PVR Anupam Complex, District Centre, Sector 1",PVR Anupam Complex,"PVR Anupam Complex, New Delhi",77.20727418,28.52352259,"Fast Food, Street Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,79 +18303724,The Bunk House,1,New Delhi,"3, PVR Anupam Complex, Community Centre, Saket, New Delhi",PVR Anupam Complex,"PVR Anupam Complex, New Delhi",77.20744852,28.52338296,"Italian, Continental, North Indian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,96 +731,The Kathis,1,New Delhi,"GF-5, Community Centre, PVR Anupam Complex, Saket, New Delhi",PVR Anupam Complex,"PVR Anupam Complex, New Delhi",77.2070571,28.5234779,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,109 +18219522,Locale,1,New Delhi,"17, Community Centre, Next to PVR Anupam, Saket, New Delhi",PVR Anupam Complex,"PVR Anupam Complex, New Delhi",77.20718265,28.52332287,"North Indian, Chinese, Mexican, Italian, Thai, Lebanese",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.4,Green,Very Good,317 +18219554,The Coffee Shop,1,New Delhi,"8, PVR Anupam Complex, Community Centre",PVR Anupam Complex,"PVR Anupam Complex, New Delhi",77.20764901,28.52294227,"Cafe, Italian",1200,Indian Rupees(Rs.),No,Yes,No,No,3,4.4,Green,Very Good,326 +7797,Chakhna Food Point,1,New Delhi,"F/238, Near SBI ATM, Katwaria Sarai, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.1859094,28.5413709,"North Indian, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18352263,Da Pizza Corner,1,New Delhi,"123, Near PNB ATM, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.18545038,28.54047405,Pizza,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,4 +18312571,Parashar's,1,New Delhi,"Katwaria Sarai, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.1832793,28.5365468,"Chinese, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18421038,Cafe Coffee Day,1,New Delhi,"B-33-34, Gate 1, Rockland Hospital, Tara Crescent Road, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.181133,28.537381,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18412894,Cake Walk,1,New Delhi,"A-127, Katwaria Sarai, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.1855515,28.5408514,"Bakery, Fast Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18312463,Chhotu Restaurant,1,New Delhi,"F-93, Katwaria Sarai, Ground Floor, Near Shiv Mandir, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.186376,28.5424845,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18332442,Dabbba Wala Home Away,1,New Delhi,"67/2, Near Gumbad, Katwaria Sarai, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.182736,28.539589,North Indian,550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18345771,Foodieholic,1,New Delhi,"F-154, Katwaria Saria, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.18569312,28.54150757,"Chinese, North Indian, South Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18414497,Fourteen Eleven Tea Cafe,1,New Delhi,"H-164, Katwaria Sarai, New Delhi, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.1852381,28.5419777,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18355275,Hungry Folks Food Corner,1,New Delhi,"House 20, Katwaria Sarai, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.1857394,28.5416196,"Fast Food, North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18398593,Hungry Folks,1,New Delhi,"House 220, Katwaria Sarai, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",0,0,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18312455,Hussain - UP Ki Mashoor Biryani,1,New Delhi,"Sabzi Mandi, Katwaria Sarai Main Road, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.1862789,28.5415131,Biryani,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18025131,Just Vada Pav,1,New Delhi,"Shop 2, Ground Floor, 124-A/1, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.18585833,28.54039444,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18161591,Mangal Ji and Gupta Ji Dhaba,1,New Delhi,"Near IIFT, Opposite Sahaj Yog Mandir, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.1884819,28.5361558,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18312459,Pandey Ji Restaurant,1,New Delhi,"F-226, Katwaria Sarai, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.18608741,28.54186954,"North Indian, Chinese",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +302573,Quality Restaurant,1,New Delhi,"F-124, Basement, Katwaria Sarai, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.1857753,28.5413154,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18352264,Ravi Ke Parathe,1,New Delhi,"F-114, Katwaria Sarai, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.1864086,28.54151493,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +3555,Sahara Restaurant,1,New Delhi,"F-94, Katwaria Sarai, Near Panchayat Ghar, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.1863386,28.5418908,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18414494,Shere-E-Punjab,1,New Delhi,"Near Main Gate, Sanjay Park, Katwaria Sarai, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.182236,28.536976,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18306540,Shree Jagannath Restaurant,1,New Delhi,"F-44, Gummad Wali Gali, Katwaria Sarai, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",0,0,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18153550,Sumona Restaurant,1,New Delhi,"F-95, Katwaria Sarai, Near Shiv Mandir, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.18650181,28.54210988,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18439705,The Hubbub Cafe and Restaurant,1,New Delhi,"2, Lalitaksh Singh Lakra Marg, Jia Sarai, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.189514,28.546945,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +7809,Welcome Fast Food & Parantha,1,New Delhi,"F/100, Katwaria Sarai, Qutab Institutional Area, New Delhi",Qutab Institutional Area,"Qutab Institutional Area, New Delhi",77.1856278,28.542264,"Chinese, Fast Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +307171,Abdul Muradabadi Chicken,1,New Delhi,"Kashmiri Market, Sector 1, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1802838,28.5645773,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,11 +300271,Anupam Sweets,1,New Delhi,"Shop 1, Main Market, Sector 12, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1759708,28.5750988,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,2.5,Orange,Average,17 +345,Colonel's Kababz,1,New Delhi,"K 11, Som Vihar Apartments, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1738591,28.5724323,"North Indian, Mughlai",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.2,Orange,Average,67 +307865,Green Chick Chop,1,New Delhi,"Shop 13, Sector 8 Market, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1675179,28.5726799,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +307168,Jasmine Fast Food Centre,1,New Delhi,"Outside Tamil Sangam Building, Tamil Sangam Marg, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1779476,28.5642644,"North Indian, South Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,11 +1859,Khalsa Restaurant,1,New Delhi,"10, Sector 1 Market, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1818562,28.5643243,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,102 +301229,Kitchen King,1,New Delhi,"Shop 8, Sector 9 Market, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1728257,28.5734538,"North Indian, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,53 +307169,Laxmi Corner,1,New Delhi,"Outside Tamil Sangam Building, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1779027,28.5644842,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +306291,Nazeer Delicacies,1,New Delhi,"K-28, Kashmiri Market, Vivekanand Marg, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1807331,28.5650684,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,163 +18428880,Vdesi,1,New Delhi,"D 36, Mohan Singh Market, Sector 6, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1760591,28.5661453,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,5 +3381,Alkakori Alkauser,1,New Delhi,"30, Vasant Place Market, Near Malai Temple, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1672392,28.5651411,"Mughlai, North Indian",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,629 +8853,Mathew's Cafe,1,New Delhi,"Outside Tamil Sangam, Tamil Sangam Marg, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1778359,28.5647542,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,148 +301154,Supreme Bakery,1,New Delhi,"17, Sector 8 Market, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1672793,28.5726386,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,193 +309365,The Midnight Heroes,1,New Delhi,"R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.175631,28.567461,"North Indian, Biryani, Chinese, Fast Food",950,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.6,Yellow,Good,447 +18427212,"34, Chowringhee Lane",1,New Delhi,"Shop 68, Vasant Place Market, Sector 6, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1672543,28.5652136,"Fast Food, Mughlai, Armenian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +313127,Aggarwal Sweets,1,New Delhi,"Shop 3, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.181991,28.5647404,"South Indian, Chinese, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18486867,Alam Biryani,1,New Delhi,"Outside Tamil Sangam Building, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1784594,28.5642458,Biryani,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18472665,Behrouz Biryani,1,New Delhi,"Shop 11, 1st Floor, Sector 8 Market, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1671335,28.5724166,Biryani,600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,0 +18486861,Biryani Point,1,New Delhi,"Opposite Sangam Cinema Bus Stand, Sector 9, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.173904,28.5737361,"South Indian, Biryani",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18396151,Chinese Hut,1,New Delhi,"Near GGS Dispensary, Sector 4, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1793853,28.5626093,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18434343,Dada Ka Dhaba,1,New Delhi,"D 41, Mohan Singh Market, Sector-6, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1760606,28.5660557,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,0 +18478389,Die B_ckerei,1,New Delhi,"Aradhana Enclave, Sector 13, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1784867,28.5751601,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18472663,Faaso's,1,New Delhi,"Shop 11, 1st Floor, Sector 8 Market, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1670746,28.5723659,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,1 +18486866,Gupta Ji Ka Dhaba,1,New Delhi,"D 42, Mohan Singh Market, Sector 6, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1762403,28.5659833,"North Indian, Mughlai, Armenian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18486869,Hot & Tasty,1,New Delhi,"39/3, Near Ram Mandir, Mohammdpur, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1884619,28.5658333,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18486845,Kaka Da Dhaba,1,New Delhi,"R.K. Puram Sector 12, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1741183,28.5771926,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18325509,Kingdom Restaurant,1,New Delhi,"73, Vasant Place Complex, Sector 6, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.167479,28.5652799,Chinese,650,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18352268,Little Delhi,1,New Delhi,"Opposite Pillar 5, Raghu Nagar Pankha Road, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1761505,28.5659747,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18289261,Million Kitchen,1,New Delhi,"R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1791157,28.5629421,"North Indian, South Indian, Bakery, Italian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18352180,Ok Indian & Chinese Food Corner,1,New Delhi,"Shop A RZ-53/54, Gali 14, Pankha Road, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.10044246,28.60913476,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18469974,Ovenstory Pizza,1,New Delhi,"Sector 8 Market, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1668949,28.5726176,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,1 +18489530,Pakeeza Chicken Corner,1,New Delhi,Vasant Complex Secter 6 R.K. Puram,R K Puram,"R K Puram, New Delhi",77.1675125,28.5652412,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18425179,Rapchick Biryani,1,New Delhi,"Shop 1, Sector 9, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1736345,28.5735311,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18461352,Rupa Bangali Dhaba,1,New Delhi,"Munirka Village, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1785769,28.5635547,"North Indian, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18352172,Sindh Snacks,1,New Delhi,"Sector 9, Opposte House Tax Building, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1735792,28.5735816,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18486857,Vaishanavi Food Store,1,New Delhi,"R.K.Puram Sector 12, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1740838,28.5768003,"North Indian, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +301227,"Ada ""e"" Haandi's",1,New Delhi,"Shop 2, Sector 12, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1761056,28.5750668,"North Indian, Mughlai, Chinese",750,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,30 +7060,Karnataka Food Centre,1,New Delhi,"Ground Floor, Delhi Karnataka Sangh Building, R K Puram, New Delhi",R K Puram,"R K Puram, New Delhi",77.1752519,28.5778978,South Indian,400,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,881 +613,Cafe Coffee Day,1,New Delhi,"Delhi Gymkhana Club, Golf Links, Race Course Road, Race Course, New Delhi",Race Course,"Race Course, New Delhi",77.2058916,28.5990816,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,9 +3549,Savannah Bar - Radisson Blu Plaza Delhi,1,New Delhi,"Radisson Blu Plaza Delhi, National Highway 8, Near IGI Airport, Mahipalpur, New Delhi","Radisson Blu Plaza Delhi, Mahipalpur","Radisson Blu Plaza Delhi, Mahipalpur, New Delhi",77.1196172,28.5438001,Finger Food,2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,24 +302282,Neung Roi - Radisson Blu Plaza Delhi,1,New Delhi,"Radisson Blu Plaza Delhi, National Highway 8, Near IGI Airport, Mahipalpur, New Delhi","Radisson Blu Plaza Delhi, Mahipalpur","Radisson Blu Plaza Delhi, Mahipalpur, New Delhi",77.1194083,28.5438287,Thai,3000,Indian Rupees(Rs.),Yes,No,No,No,4,4.5,Dark Green,Excellent,295 +3546,R The Lounge - Radisson Blu Plaza Delhi,1,New Delhi,"Radisson Blu Plaza Delhi, National Highway 8, Near IGI Airport, Mahipalpur, New Delhi","Radisson Blu Plaza Delhi, Mahipalpur","Radisson Blu Plaza Delhi, Mahipalpur, New Delhi",77.1196172,28.5437105,Cafe,1000,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,33 +302283,The Pastry Shop - Radisson Blu Plaza Delhi,1,New Delhi,"Radisson Blu Plaza Delhi, National Highway 8, Near IGI Airport, Mahipalpur, New Delhi","Radisson Blu Plaza Delhi, Mahipalpur","Radisson Blu Plaza Delhi, Mahipalpur, New Delhi",77.1194194,28.5438215,Bakery,1000,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,26 +3545,NYC - Radisson Blu Plaza Delhi,1,New Delhi,"Radisson Blu Plaza Delhi, National Highway 8, Near IGI Airport, Mahipalpur, New Delhi","Radisson Blu Plaza Delhi, Mahipalpur","Radisson Blu Plaza Delhi, Mahipalpur, New Delhi",77.119797,28.5438174,"North Indian, Continental, Italian",3000,Indian Rupees(Rs.),Yes,No,No,No,4,4.4,Green,Very Good,315 +3547,The Great Kabab Factory - Radisson Blu Plaza Delhi,1,New Delhi,"Radisson Blu Plaza Delhi, National Highway 8, Near IGI Airport, Mahipalpur, New Delhi","Radisson Blu Plaza Delhi, Mahipalpur","Radisson Blu Plaza Delhi, Mahipalpur, New Delhi",77.119797,28.543907,"North Indian, Mughlai",3000,Indian Rupees(Rs.),Yes,No,No,No,4,4.2,Green,Very Good,532 +4490,Cup Cakes - Radisson Blu,1,New Delhi,"Radisson Blu, District Centre, Outer Ring Road, Paschim Vihar, New Delhi","Radisson Blu, Paschim Vihar","Radisson Blu, Paschim Vihar, New Delhi",77.090586,28.6672628,"Desserts, Bakery",2000,Indian Rupees(Rs.),No,No,No,No,4,3.1,Orange,Average,40 +4488,Oro The Bar - Radisson Blu,1,New Delhi,"Radisson Blu, District Centre, Outer Ring Road, Paschim Vihar, New Delhi","Radisson Blu, Paschim Vihar","Radisson Blu, Paschim Vihar, New Delhi",77.090592,28.6672586,Finger Food,2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,36 +186,McDonald's,1,New Delhi,"2, Rachna Cinema Complex, Rajendra Place, New Delhi",Rajendra Place,"Rajendra Place, New Delhi",77.1771112,28.6426741,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,91 +3124,Mughal Mahal,1,New Delhi,"7, Sethi Bhawan, Rajendra Place, New Delhi",Rajendra Place,"Rajendra Place, New Delhi",77.1766213,28.644294,"Mughlai, North Indian, Chinese",1100,Indian Rupees(Rs.),No,Yes,No,No,3,3.2,Orange,Average,221 +18057792,Imly,1,New Delhi,"Shop F-20, Hog Market, Rajendra Place, New Delhi",Rajendra Place,"Rajendra Place, New Delhi",77.1784871,28.6446732,"Street Food, North Indian, Chinese, Continental",700,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,1485 +1641,Lanterns Kitchen & Bar,1,New Delhi,"163-164, Rajendra Bhawan, Near Rachna Picture Hall, Rajendra Place, New Delhi",Rajendra Place,"Rajendra Place, New Delhi",77.17779,28.643386,"Italian, North Indian, Chinese, Mughlai",1200,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,1082 +18368023,Guru Om Vanna,1,New Delhi,"S/144, Hog Market, Rajendra Place, New Delhi",Rajendra Place,"Rajendra Place, New Delhi",77.1773576,28.6444387,Street Food,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18438896,Khaao Peeyo,1,New Delhi,"34, Rahendra Bhavan, Rajendra Place, New Delhi",Rajendra Place,"Rajendra Place, New Delhi",77.177472,28.643168,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18479012,New Chow Maun,1,New Delhi,"34, Rahendra Bhavan, Rajendra Place, New Delhi",Rajendra Place,"Rajendra Place, New Delhi",0,0,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18479008,Oye!! Shawarma,1,New Delhi,"34, Rahendra Bhavan, Rajendra Place, New Delhi",Rajendra Place,"Rajendra Place, New Delhi",77.177473,28.643174,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +7242,27 China Street,1,New Delhi,"27/A, Market, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1855361,28.6417258,"Chinese, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,76 +312920,Ada'e Handi,1,New Delhi,"37/1, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1777131,28.6397455,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,31 +308051,Alkauser,1,New Delhi,"2/64, Opposite BSES Office, Shankar Road, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1843283,28.6360505,"North Indian, Mughlai",850,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,58 +3135,Barbeque Creation By Kadhai Tadka,1,New Delhi,"R-549, Main Shankar Road, New Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1775468,28.6398635,"North Indian, Chinese, Mughlai",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.5,Orange,Average,78 +693,Baskin Robbins,1,New Delhi,"E 184, New, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1793562,28.638768,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,32 +7399,Bikaner Sweets Corner,1,New Delhi,"11A/19, Main Shankar Road, Old, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1833586,28.6384592,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +18375392,Biryaniwala,1,New Delhi,"92, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1849206,28.6408817,Biryani,450,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,26 +5527,Cafe Coffee Day,1,New Delhi,"Main Shankar Road, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1802929,28.6383657,Cafe,450,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,37 +7407,Chinese Corner,1,New Delhi,"Near Safal Pure Veg, Old, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.18480556,28.64084722,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,29 +18279476,Choice Corner,1,New Delhi,"2/70 Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1841987,28.6362195,Street Food,120,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18294260,Chowringhee,1,New Delhi,"1/B-27, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1887382,28.6434531,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,5 +7409,Darshan Dhaba,1,New Delhi,"54, Main Market, Old Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1849429,28.6409097,"North Indian, Beverages",100,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,16 +8912,Domino's Pizza,1,New Delhi,"1, Ground Floor, Plot 22-B, Pusa Road, Bada Bazar Marg, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.18654,28.6431648,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,119 +18224550,Durga Dhaba,1,New Delhi,"R Block, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.18191,28.6376128,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18363093,Flashback Midnight Hunger,1,New Delhi,"Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1778506,28.643732,"Italian, Continental, Fast Food, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,50 +307511,Flavours of Punjab,1,New Delhi,"Shop 4, B/64, Main Shankar Road, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1809053,28.6380274,"North Indian, Chinese",750,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.5,Orange,Average,165 +18369767,Flirty Momo's,1,New Delhi,"2/70, Shankar Road, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1842572,28.6362165,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +17977795,Food Factory,1,New Delhi,"23, Double Storey Market, New, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.175828,28.632301,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,14 +18455210,Foodies Joint,1,New Delhi,"4A/1, Bada Bazar Road, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.18303673,28.63823106,"Fast Food, North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,20 +313258,Fresh Meat CO,1,New Delhi,"Shop 124, Shanker Road Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1804127,28.6380933,"Raw Meats, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +7452,Friends Restaurant,1,New Delhi,"27-A, Main Market, Opposite Syndicate Bank, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1856029,28.6416685,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,117 +7373,Giani,1,New Delhi,"Shankar Road, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1809764,28.6380397,"Ice Cream, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,40 +309445,Green Chick Chop,1,New Delhi,"684, Ground Floor, Double Story, New, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1776202,28.6436486,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,17 +18468651,Havmor Ice Cream,1,New Delhi,"Shankar Road, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.181651,28.637767,"Ice Cream, Desserts",200,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,7 +8671,Hot Pot,1,New Delhi,"Shankar Road Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1802949,28.6382645,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.5,Orange,Average,111 +308049,Hyderabadi Biryani Parlour,1,New Delhi,"Shop 7, Opposite Rapid Flour Mill, Old Rajinder Nagar Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1852251,28.6415127,"Biryani, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,66 +307519,iGNiTE,1,New Delhi,"13, Opposite Rapid Flour Mill, Old Rajinder Nagar Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1851613,28.6415262,"North Indian, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,110 +18034082,Just Cakez,1,New Delhi,"2/76, Sir Ganga Ram Road, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1843844,28.6361574,Bakery,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,6 +18237343,Kay's Bar-Be-Que,1,New Delhi,"2/70, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1843284,28.6361662,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +8658,Kolkata Kathi Roll,1,New Delhi,"Opposite Axis Bank, Main Market, Old, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1846576,28.640745,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,24 +307702,Madras Cafe,1,New Delhi,"10/20, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1787112,28.6441954,"South Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,29 +300300,Mama's Chinese Kitchen,1,New Delhi,"4/52, Main Shankar Road, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1819977,28.6374978,Chinese,750,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,58 +3131,Mama's Nu Khana Khazana,1,New Delhi,"4/60, Main Shankar Road, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1817642,28.6373291,"North Indian, Chinese, Mughlai",900,Indian Rupees(Rs.),Yes,No,No,No,2,2.6,Orange,Average,169 +18446480,Marathi Katta,1,New Delhi,"Shop 9, Old Rajinder Nagar Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.18502257,28.64091673,"Fast Food, Maharashtrian, North Indian",250,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,11 +311383,Mitra Da Dhaba,1,New Delhi,"J-424, New Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1788585,28.6389356,North Indian,350,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,55 +2751,Moti Mahal Delux - Kebab Trail,1,New Delhi,"R-551, New Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1773147,28.6399016,"North Indian, Mughlai, Chinese",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.2,Orange,Average,102 +18395392,Nirula's Ice Cream,1,New Delhi,"6/80, Old Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1798317,28.6387701,"Ice Cream, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,10 +306067,Oberoi Biryani,1,New Delhi,"1/123, Opposite BSES Office, Shankar Road, Old, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1851026,28.6358601,"Biryani, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,135 +8688,Pappu Ka Dhaba,1,New Delhi,"143, Shankar Road, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1796308,28.6385828,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,25 +7306,Peshawar Sweets Shop,1,New Delhi,"114, Shankar Road Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1807286,28.638266,"Street Food, Mithai",150,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,79 +18277238,Piyu Kitchen,1,New Delhi,"3/8,Old Rajinder Nagar, Opposite Sanatan Dharm Mandir, Main Shankar Road, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1842643,28.6363021,"North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,13 +18107869,Posh Spice,1,New Delhi,"Shop 12, B-1/8, Apsara Arcade, Pusa Road, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1889084,28.6434584,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,12 +7442,Prince Chicken & Mutton Shop,1,New Delhi,"95, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1849341,28.6406426,"Raw Meats, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,22 +7448,Punjab Chicken & Bar-Be-Que,1,New Delhi,"100, Main Market, Old, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1847405,28.6400561,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,5 +307075,Republic of Chicken,1,New Delhi,"100, Old Rajinder Nagar Market, Near UCO Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1849192,28.6406889,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,33 +305392,Sagar Ratna,1,New Delhi,"Plot 22, 1st Floor, Bazar Marg, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1865864,28.6428784,"South Indian, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,120 +18248991,Sardar A Pure Meat Shop,1,New Delhi,"5/46, Shankar Road, Old, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1804107,28.6383225,"Raw Meats, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +18420444,Shama Chicken Corner,1,New Delhi,"37/1, Old, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.18484,28.6409495,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +311787,Shawarma King's,1,New Delhi,"53/5, Opposite Andhra Bank, Bada Bazar Marg, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1764955,28.6437563,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +8660,Sindh Sweet Corner,1,New Delhi,"131, Shankar Road Market, New, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.180053,28.6383473,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,22 +18282048,Singh Tawa Corner,1,New Delhi,"3/32, Opposite Post Office, Shankar Road, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1835142,28.6366196,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,10 +8666,Singh's Kitchen,1,New Delhi,"4-D/13, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1822871,28.6392731,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,84 +8667,South Indian Cafe,1,New Delhi,"140, Shankar Road Market, New, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1796612,28.6385698,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,18 +7441,Subway,1,New Delhi,"60/17, Old Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1848697,28.6402723,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,152 +3132,Swaad Bar-Be-Que,1,New Delhi,"4A/61, Main Shankar Road, Old, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1819781,28.6374266,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,27 +7342,Tadak Punjabi,1,New Delhi,"4 D/9, Old Rajinder Nagar Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1787607,28.6443538,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,41 +301242,Tandoori Delights,1,New Delhi,"43, Near Rapid Floor Mill, Rajinder Nagar Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1854718,28.6412916,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,40 +18429387,The Culinary Pitaara,1,New Delhi,"Near Rajinder Nagar Metro Station, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1785489,28.6425064,"North Indian, Chinese",900,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,7 +18453448,The Grill Cafe,1,New Delhi,"76, Block 53, Old Rajindra Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.18509823,28.64060998,"Cafe, Fast Food, Pizza",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,21 +18369771,The Sunset,1,New Delhi,"71 Old Rajinder Nagar Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1846194,28.6407597,Mughlai,500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,7 +309255,Tomatoes Kitchen,1,New Delhi,"Shop 77, Next to Axis Bank, Old Rajendra Nagar Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1846297,28.6407064,"North Indian, Chinese, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,135 +307278,Udupi Eating House,1,New Delhi,"4, Ground Floor, Old, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1852191,28.6416652,South Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,53 +311760,Wrapss,1,New Delhi,"57/16, Near HDFC Bank, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1859204,28.6421751,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,140 +18443750,Burger Point,1,New Delhi,"Shop 47, Near Kotak Mahindra Bank, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1854191,28.6409682,"Burger, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,25 +307700,Kings,1,New Delhi,"3/72, Main Shankar Road, Old, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1826464,28.6372098,"Desserts, Ice Cream",300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,83 +18381646,Millionaire - Powered by Wrapss,1,New Delhi,"17-B, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1858395,28.6425402,"Burger, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,27 +308054,Punjabi Chaap Corner,1,New Delhi,"Shop 27, Opposite Syndicate Bank, Near Rapid Flour Mills, Old Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1856699,28.6415906,"Fast Food, North Indian",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,107 +18427200,Spooky Sky,1,New Delhi,"Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.178993,28.635268,"Italian, Chinese, North Indian",650,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.5,Yellow,Good,38 +7427,Standard Corner,1,New Delhi,"99, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1848343,28.6401823,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,87 +18261149,The Canteen,1,New Delhi,"Shop 70, Old Rajinder Nagar Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1845831,28.6407532,"Cafe, South Indian, North Indian, Bakery",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,126 +18322646,The Diet Kitchen,1,New Delhi,Rajinder Nagar,Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1825191,28.6371834,"Continental, Healthy Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,39 +310912,The Flashback,1,New Delhi,"53/5, Opposite Andhra Bank, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1842868,28.640178,"Cafe, Italian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,617 +18334635,The Mashal,1,New Delhi,"11, Old Rajinder Nagar Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1851848,28.6416314,"Mughlai, North Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,26 +18487016,Chillax Cafe And Bistro,1,New Delhi,"1st Floor, Gate 3, Rajinder Place Metro Station, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",0,0,"Cafe, Bakery",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18480928,Jee Aao Jee Chole Bhature,1,New Delhi,"Shop 142, Shankar Road Market, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",0,0,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18446486,LSK Express,1,New Delhi,"4a/57, Old Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.186603,28.640834,"North Indian, Italian, Continental",500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,1 +7401,Aggarwal Sweets India,1,New Delhi,"17/10, Main Market Road, Near Gol Chakkar, Old Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1836668,28.6392121,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.4,Red,Poor,52 +18237341,Dilli Treat,1,New Delhi,"3/80, Shankar Road, Old, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1825292,28.6371688,"North Indian, South Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,251 +7428,Dukes Pastry Shop,1,New Delhi,"26/17, Main Bazar, Old Rajinder Nagar, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.18399361,28.63963084,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,4.2,Green,Very Good,474 +18420467,HotMess Bakes,1,New Delhi,"Shop 123, Shankar Road, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1804858,28.6381693,"Bakery, Fast Food",750,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,101 +18332869,London Street Kitchen,1,New Delhi,"4A-59, Old, Rajinder Nagar, New Delhi",Rajinder Nagar,"Rajinder Nagar, New Delhi",77.1820929,28.6373909,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.2,Green,Very Good,163 +18241878,Bablu Chic-Inn,1,New Delhi,"64, J Block Commercial Complex, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1202901,28.6389393,"Mughlai, North Indian",750,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,25 +312959,Babu Jhatka,1,New Delhi,"Shop 19, DDA Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1153558,28.6394578,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,5 +978,Bal Gopal,1,New Delhi,"46, DDA Market, Opposite Surya Continental, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1204612,28.6383943,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,49 +306910,Bharat Sweets,1,New Delhi,"Opposite J Block, Main Road, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1157942,28.6392175,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,11 +307135,Cafe Blue Tomato,1,New Delhi,"J-13/12, Patel Market, Opposite IDBI Bank, Near Skating Rink Park, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1162715,28.6421004,"Continental, North Indian, Chinese, Cafe",1400,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,411 +18363209,Cafe TAB,1,New Delhi,"JA-1A, DDA Flats, Near Sarg Ashram Mandir, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.11567003,28.63090904,Cafe,500,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,17 +18454700,Cake-O-Licious,1,New Delhi,"2nd Floor, J-12/52, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.12051611,28.64100677,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,11 +308791,Chaap Point,1,New Delhi,"Shop 41, Ground Floor, Banda Bairagi Market, Near Malik Medical Store, Ramesh Nagar, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1241664,28.6365982,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,23 +312589,Chawla Family Restaurant,1,New Delhi,"Shop G3, G4, Opposite Surya Continental, J Block, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1201458,28.6387744,"North Indian, Chinese, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,8 +977,Chawla Family Restaurant,1,New Delhi,"52-53, Opposite Surya, DDA Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1200964,28.6387768,"North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,93 +8649,Chawla Restaurant,1,New Delhi,"J Block, DDA Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1205381,28.6387809,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,25 +309435,Chawlas 2,1,New Delhi,"71-73, DDA Market Complex, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1202079,28.6390825,"North Indian, Mughlai",800,Indian Rupees(Rs.),Yes,No,No,No,2,3,Orange,Average,27 +18371401,Chicken Addiction,1,New Delhi,"Shop 65, DDA Market, J Block, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.12061569,28.64112418,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,21 +307138,Crave Busters,1,New Delhi,"Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1232695,28.6522668,"North Indian, Chinese, Continental",1100,Indian Rupees(Rs.),No,Yes,No,No,3,3.4,Orange,Average,224 +18420427,Garage,1,New Delhi,"68/69, DDA, Complex J Block Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1200667,28.6392619,North Indian,650,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +305082,Gola Sizzlers,1,New Delhi,"J-2/14, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1192439,28.6475397,"Mughlai, North Indian, Chinese",1300,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,246 +305086,Golden Tandoor,1,New Delhi,"Upper Ground Floor, 9-11, J Block, Community Center, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1205618,28.6382052,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,41 +307541,Green Chick Chop,1,New Delhi,"Shop 6, DDA LIG Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1149915,28.63938,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +18281968,Indo Traditional Kulfi,1,New Delhi,"Shop 10, Community Center, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1203589,28.6395034,Ice Cream,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,5 +18375382,Invitation Foodex,1,New Delhi,"Shop 42, J Block Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.12024923,28.63860359,"North Indian, Chinese, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,7 +2537,King's Kabab,1,New Delhi,"Shop 15, Community Centre, DDA Complex, J Block, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1203142,28.6391596,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,16 +311977,New Kadimi,1,New Delhi,"A-40, Vishal Enclave, Opposite TDI Mall, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1200714,28.650417,"North Indian, South Indian, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,90 +974,Paramjeet Machi Wala,1,New Delhi,"50-51, J Block Community Centre, Opposite Surya Continental, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1202126,28.6385502,"North Indian, Mughlai",750,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,53 +4163,Polka Pastry & Snack Bar,1,New Delhi,"2-A, Yellow Flats, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1166967,28.6395812,"Bakery, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,33 +305694,Punnu Biryani,1,New Delhi,"Near Cambridge Foundation School, DDA LIG Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1151872,28.6392925,"North Indian, Biryani, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,41 +2364,Raju Chinese Food,1,New Delhi,"3, Community Centre, Surya Continental, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1202369,28.6392045,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,49 +305688,Sandoz,1,New Delhi,"J 58, Vardhaman Plaza, DDA Complex, Opposite Surya Continental, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1205029,28.6390357,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,22 +18255603,Scoop Junction,1,New Delhi,"Shop 13-14, DDA Market, J Block, Keshav Marg, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1202507,28.6391953,"Ice Cream, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,14 +307548,Shri Durga Dosa Corner,1,New Delhi,"J 5/51, Near HDFC Bank, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1199468,28.6406538,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,14 +5932,Soni Bakers,1,New Delhi,"J-88/89, Main Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1212876,28.645158,"Bakery, Desserts, Fast Food, Street Food, Chinese, Beverages",400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,179 +300397,Subway,1,New Delhi,"4, F-115, Main Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1216877,28.6449256,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,114 +969,The Tandoor,1,New Delhi,"58, DDA Complex, J Block, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.120204,28.6389131,"North Indian, Chinese",750,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.6,Orange,Average,45 +303122,Twenty Four Seven,1,New Delhi,"J-13/59, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.117951,28.6397089,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,22 +8652,Unique Tasty Bites,1,New Delhi,"J Block, Near Surya Continental, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1200278,28.6388527,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +18420456,Band Baaja Baaraat,1,New Delhi,"A-6 Ground Floor, Vishal Enclave, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1192507,28.647609,North Indian,1300,Indian Rupees(Rs.),Yes,No,No,No,3,4.6,Dark Green,Excellent,128 +18445790,Kopper Kadai,1,New Delhi,"J2/6B, 1st & 2nd Floor, B.K. Dutta Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1195466,28.6476272,North Indian,1400,Indian Rupees(Rs.),No,No,No,No,3,4.8,Dark Green,Excellent,83 +313368,Naturals Ice Cream,1,New Delhi,"J-2/10, BK Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1195942,28.647233,Ice Cream,150,Indian Rupees(Rs.),No,Yes,No,No,1,4.7,Dark Green,Excellent,474 +18037817,Qubitos - The Terrace Cafe,1,New Delhi,"C-7, Vishal Enclave, Opposite Metro Pillar 417, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1177015,28.6471325,"Thai, European, Mexican, North Indian, Chinese, Cafe",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.5,Dark Green,Excellent,778 +304746,The California Boulevard,1,New Delhi,"J-2/5, 1st & 2nd Floor, BK Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1200352,28.647716,"American, Asian, European, Seafood",2000,Indian Rupees(Rs.),Yes,No,No,No,4,4.6,Dark Green,Excellent,1691 +9458,Anjlika Pastry Shop,1,New Delhi,"F-146, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1227629,28.6417517,"Bakery, Desserts, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,170 +5878,Atul Chaat Corner,1,New Delhi,"H-44, Main Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1209176,28.6456088,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,413 +18384134,Bake A Wish,1,New Delhi,"J 12/14, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1189181,28.6401722,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,43 +3086,Berco's,1,New Delhi,"S-26, Janta Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1163756,28.6421069,"Chinese, Thai",1100,Indian Rupees(Rs.),No,Yes,No,No,3,3.6,Yellow,Good,364 +497,Bikanervala,1,New Delhi,"A-2/43, 1st Floor, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1227398,28.6485357,"North Indian, South Indian, Fast Food, Street Food, Chinese, Beverages, Desserts, Mithai",550,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,334 +18461723,Bintang Sweet Thrills,1,New Delhi,"Shop 1, 176-A, LIG Flats, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.11487744,28.6393819,"Desserts, Ice Cream",200,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,21 +18163908,Boombox Cafe Reloaded,1,New Delhi,"C-10, Vishal Enclave, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1181073,28.647193,"North Indian, Mexican, Chinese, Italian",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,605 +18037816,Cafe Foto Club,1,New Delhi,"J-2/6 B, Ground Floor, BK Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1198714,28.6476301,"North Indian, Fast Food, Italian, Chinese, Cafe",1400,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,280 +312482,Capital Grill,1,New Delhi,"A-4, Vishal Enclave, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1190895,28.64799,"Continental, North Indian, Chinese",1650,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,316 +18222577,CG's - Lounge Cafe Bar,1,New Delhi,"A-4, 1st Floor, Vishal Enclave, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1193141,28.6476107,"Continental, North Indian",1700,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,88 +966,Dhaba,1,New Delhi,"A-5, Vishal Enclave, Main Najafgarh Road, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1192322,28.6474348,"Chinese, North Indian",1100,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,662 +217,Domino's Pizza,1,New Delhi,"J-2/20, Ground Floor, BK Dutta Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1186491,28.6471108,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,194 +18245274,Garam Dharam,1,New Delhi,"J-2/12, BK Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1192922,28.6474008,North Indian,1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,282 +5931,Gayway Bakery,1,New Delhi,"J-76, Ground Floor, Main Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1210744,28.646717,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,120 +1158,Giani's,1,New Delhi,"A-13, Vishal Enclave, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.120075,28.6480502,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,122 +309845,Grub House,1,New Delhi,"J-2/14, BK Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1192573,28.6472138,"Italian, North Indian, Continental",1700,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,313 +18273540,Habibi,1,New Delhi,"C-13, 1st Floor, Opposite Metro Pillar 414, Vishal Enclave, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1183445,28.647538,"Middle Eastern, Mediterranean, North Indian",1250,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,196 +310768,High Street Caf,1,New Delhi,"J-2/6 A, 2nd Floor, BK Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1199541,28.6474559,"North Indian, Continental, Chinese, Italian",1250,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,374 +18322658,Hungry Heroes,1,New Delhi,"F-135, Main Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1225668,28.6431463,Continental,800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.8,Yellow,Good,96 +18228867,IKKA - The Ace Bar,1,New Delhi,"A-19, Vishal Enclave, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1207867,28.6484888,"Continental, North Indian, Chinese, Italian, Finger Food",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,751 +18384149,Jungle Jamboree,1,New Delhi,"A 23, 1st Floor, Vishal Enclave, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.12107,28.6485937,"Continental, Chinese, Thai, Mughlai, North Indian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,168 +18294265,Lord of the Drinks Chamber,1,New Delhi,"BK Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1202741,28.648007,"European, Chinese, North Indian, Italian",2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,404 +18472653,Marine Drivve - Club & Courtyard,1,New Delhi,"A-2, Vishal Enclave, Opposite Metro Pillar 412, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",0,0,"North Indian, Chinese, Continental",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.8,Yellow,Good,52 +188,McDonald's,1,New Delhi,"Vishal Cinema Complex, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1207565,28.6499809,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,161 +306014,Mister Gulati Bakers,1,New Delhi,"J-7/80 A, Nehru Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1173905,28.6421133,Bakery,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,160 +18281954,My Fit Food,1,New Delhi,"J-19, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1225291,28.6468913,"Healthy Food, Italian, Juices, Beverages",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,81 +306410,Otik Cake Shop,1,New Delhi,"Shop 2, J-12/22, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.12031,28.6404889,"Bakery, Desserts, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,166 +837,Pind Balluchi,1,New Delhi,"J-2/1, BK Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1203644,28.6476603,"North Indian, Mughlai",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.6,Yellow,Good,622 +18438452,SardarBuksh Coffee & Co.,1,New Delhi,"Vardhman Plaza, J Block, Near Pyara Chicken Corner, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.12046923,28.63859667,"Beverages, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,23 +965,Sethi's Restaurant & Barbeque,1,New Delhi,"4-8-9, DDA Market, J Block, Community Centre, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1200955,28.6393673,"North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,422 +310167,Sufiaana,1,New Delhi,"A-37, Vishal Enclave, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1205059,28.6500509,"North Indian, Mughlai, Lebanese",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.8,Yellow,Good,300 +17953943,The Burger Club,1,New Delhi,"Z-9, Opposite Metro Pillar 420, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1173251,28.6462404,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,606 +18241862,The Junkyard Caf,1,New Delhi,"2nd & 3rd Floor, J-2/12 BK Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1195347,28.6473261,"North Indian, Mediterranean, Asian",1400,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,305 +18412880,The Masterpiece Cafe,1,New Delhi,"6-A, Block J-2, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1199627,28.6473907,"Cafe, Continental, Italian, North Indian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,35 +313071,The Momoz Hub,1,New Delhi,"J-93, Main Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1209645,28.6454191,"Chinese, North Indian, Street Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,74 +310395,The Post Office Cafe,1,New Delhi,"J-2/5, Ground Floor, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1199713,28.6476117,"Continental, Fast Food, North Indian, Asian",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,742 +6195,The Royal Turban,1,New Delhi,"J-2/6 A, 1st Floor, BK Dutt Market, Opposite Metro Pillar 409, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1200673,28.6474564,"North Indian, Chinese",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,608 +18311919,The Vintage Bakers,1,New Delhi,"J-7/80m, Nehru Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1172443,28.6463616,"Bakery, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,46 +3083,Wok In The Clouds,1,New Delhi,"J-2/13, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1193284,28.6472442,"Chinese, Thai, Continental, North Indian",1500,Indian Rupees(Rs.),No,Yes,No,No,3,3.7,Yellow,Good,699 +307549,Aggarwal Sweet Centre,1,New Delhi,"Near HDFC Bank, J-12/20, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1198933,28.6404695,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +7287,Crazy Cow,1,New Delhi,"H-37, Main Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1214101,28.6449319,Chinese,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.2,Red,Poor,126 +306476,AMPM Caf & Bar,1,New Delhi,"J 2/5, 3rd & 4th Floor, B.K. Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1201223,28.6477737,"Continental, Italian, American",1400,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,1980 +18369780,Caf Foreground,1,New Delhi,"J 2/11, 3rd Floor, B.K Dutt Market, Amba Tower, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1193188,28.6470325,"Cafe, Asian, Italian, North Indian",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,91 +18412888,Calendar's Kitchen by Satish Kaushik,1,New Delhi,"C-10, Vishal Enclave, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1181539,28.6472676,"Continental, Italian, North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,115 +304233,Desee Dakshin Coastal Cafe,1,New Delhi,"J-2/11, 1st Floor, Opposite Metro Pillar 411, BK Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1194794,28.6473667,"North Indian, Mangalorean, Chinese",1350,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,345 +18345778,Food Scouts,1,New Delhi,"Near TDI Mall, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.11999476,28.65081196,"North Indian, Chinese, Continental",700,Indian Rupees(Rs.),No,Yes,No,No,2,4.4,Green,Very Good,229 +18430901,Ghar Bistro Cafe,1,New Delhi,"J-198, 2nd Floor, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1176775,28.6464612,"Continental, North Indian, Chinese, Mughlai, Asian",800,Indian Rupees(Rs.),Yes,No,No,No,2,4.4,Green,Very Good,153 +18427236,Goosebumps,1,New Delhi,"Z-11, Opposite Metro Pillar 421, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1172042,28.6461641,"Ice Cream, Desserts, Beverages",300,Indian Rupees(Rs.),No,Yes,No,No,1,4.2,Green,Very Good,89 +18441764,Kalol- Bar Te Kitchen,1,New Delhi,"J2/6, 2nd Floor, B.K. Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1201029,28.6478609,"North Indian, Mughlai, Chinese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,60 +312476,Lights Camera Action - Air Bar,1,New Delhi,"J-2/6 B, 3rd Floor, BK Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1198335,28.6477927,"North Indian, Continental",1300,Indian Rupees(Rs.),No,No,No,No,3,4.4,Green,Very Good,1636 +18421044,Midnight Hunger Hub,1,New Delhi,"Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.12252375,28.63957434,"North Indian, Fast Food, Italian, Asian",800,Indian Rupees(Rs.),No,Yes,No,No,2,4.3,Green,Very Good,58 +18252401,National Highway 44,1,New Delhi,"1st Floor, C Block, Vishal Enclave, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1183726,28.6475147,"Kashmiri, North Indian, Mughlai, South Indian, Maharashtrian, Gujarati",1100,Indian Rupees(Rs.),Yes,No,No,No,3,4.4,Green,Very Good,676 +3077,Pirates of Grill,1,New Delhi,"C-12, Vishal Enclave, Main Nazafgarh Road, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1182068,28.6474974,"North Indian, Continental, Mughlai, Asian",1500,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,2514 +300416,Prem Di Hatti,1,New Delhi,"J-1/162, Opposite City Square Mall, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1218081,28.6482991,"North Indian, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,220 +18415387,Showstopper,1,New Delhi,"J-2/6, B K Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1199715,28.6475953,"Continental, North Indian, Chinese, Asian",1000,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,163 +18322621,Spotlight Bistro & Bar,1,New Delhi,"J-2/19, Ground Floor, BK Dutt Market, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.118653,28.647141,"Continental, North Indian, Chinese",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,129 +18432011,The Diet Kitchen,1,New Delhi,"Rajouri Garden, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1165235,28.6473433,"Continental, Healthy Food",700,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,31 +18254514,The Drunk House,1,New Delhi,"A-15, 2nd Floor, Vishal Enclave, Najafgarh Road, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.1204429,28.6480613,"North Indian, Italian, Chinese",1300,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,289 +18381259,The Headquarter,1,New Delhi,"2nd Floor, C-8, Vishal Enclave, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.117922,28.647321,"Continental, Italian, Mediterranean, Asian",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,153 +18454951,Tippling Street,1,New Delhi,"A-12, Vishal Enclave, Rajouri Garden, New Delhi",Rajouri Garden,"Rajouri Garden, New Delhi",77.11992847,28.64820949,"Continental, Modern Indian, Asian",1000,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,91 +300844,"34, Chowringhee Lane",1,New Delhi,"C8/354, Sector 8, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1292361,28.7049801,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,85 +3247,Apni Rasoi,1,New Delhi,"G-3, Aggarwal Center Plaza, DC Chowk, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1261797,28.7183841,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,76 +6481,Apsara Restaurant,1,New Delhi,"B-1/115, 113, Sector 17, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1184642,28.7401249,"Fast Food, North Indian, Chinese, South Indian, Ice Cream",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,114 +8771,Ashu Bhature Wala,1,New Delhi,"B-6/150, Sector 8, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1252807,28.7039726,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,79 +300862,Bakery Wala - The Cake Shop,1,New Delhi,"B-6/151, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1250975,28.703903,"Bakery, Chinese, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,59 +4056,Bikanervala,1,New Delhi,"G-9, Ring Road Mall, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1159313,28.697879,"North Indian, Chinese, South Indian, Street Food, Fast Food, Mithai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,110 +308212,Chalte Firte Momos & Special Foods,1,New Delhi,"G-8, SGL Plaza, DC Chowk, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1258201,28.7181704,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,212 +303595,Chicken Khurana,1,New Delhi,"F-15/40, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1320227,28.7341659,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,128 +7679,Chit Chat,1,New Delhi,"17, 58, & 59, DDA Market, Behind Sachdeva School, Sector 13, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1274382,28.7236979,"North Indian, Chinese, Raw Meats",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,68 +8389,Domino's Pizza,1,New Delhi,"31, 32, 122, & 123, Ground Floor & 1st Floor, NN Mall, Near M2K Cinema, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1167854,28.7014084,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,82 +9408,Gurdasman Punjabi Khana & Caterers,1,New Delhi,"D-1/17, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1322924,28.7344604,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,64 +313336,KFC,1,New Delhi,"G-1-8, Ground Floor, NN Mall,Near M2K Cinemas, Mangalam Road, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1171,28.7007672,"American, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,60 +6477,Malika Bakers Pastry Shop,1,New Delhi,"S Mart Complex, DC Chowk Market, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1263595,28.7181329,"Bakery, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,95 +191,McDonald's,1,New Delhi,"M2K, Manglam Palace, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1167902,28.7010021,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,108 +2000,Nakshatra Punjabi Rasoi,1,New Delhi,"351, Aggarwal Center Plaza, DC Chowk, Sector 9, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1261797,28.7183841,"North Indian, Chinese, South Indian",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,116 +7137,New Eleven to Eleven,1,New Delhi,"CSC 5, DDA Gole Market, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1264494,28.7128593,"North Indian, Chinese",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3,Orange,Average,126 +311711,Pasta Hut,1,New Delhi,"G-10, DC Chowk, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1257302,28.7178037,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,34 +6308,Patiala Shahi,1,New Delhi,"E-20/148-149-150, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.10445471,28.69976033,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,78 +5283,Pavitra Bakers,1,New Delhi,"B-1/58, Sector 18, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.137416,28.736207,"Bakery, Chinese, Fast Food",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,73 +5313,Punjabi Rasoi,1,New Delhi,"D-12/188, Opposite Metro Pillar 408, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1244717,28.7086399,"North Indian, South Indian, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,164 +8915,Puratan - Family Restaurant & Bar,1,New Delhi,"Garg Trade Center, Sector 11, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1142681,28.7344691,"North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,156 +309429,Sardar A Pure Meat Shop,1,New Delhi,"Shop 34, CSC 6, Park Plaza Market, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1246515,28.7116118,"Raw Meats, Fast Food, North Indian",150,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,59 +3114,Spice Court,1,New Delhi,"M2K Cinema, Manglam Palace, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1168303,28.7007412,"Chinese, North Indian, Mughlai",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.6,Orange,Average,59 +3229,Subway,1,New Delhi,"37, M2K Mall, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1170101,28.7009376,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,132 +18254676,Urban Garden Cafe,1,New Delhi,"Ground Floor, Manglam Paradise Mall, Behind Kali Mata Mandir, Sector 3, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1148525,28.6981332,"Fast Food, Italian",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,20 +18365897,Behrouz Biryani,1,New Delhi,"Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1211455,28.7170039,Biryani,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,45 +9253,BTW,1,New Delhi,"1, Garg Trade Center, Sector 11, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1141532,28.7345078,"South Indian, Street Food, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,75 +310459,Chalte Firte Momos & Special Foods,1,New Delhi,"A3/72, Sector 7, Near Hanuman Mandir, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1191677,28.7022199,Fast Food,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,55 +218,Domino's Pizza,1,New Delhi,"10/11, Garg Mall, Community Center, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1140883,28.7348098,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,123 +300841,Gaurav Pastry Palace,1,New Delhi,"G-20/224-225, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1139361,28.711312,"Bakery, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,95 +302466,Jhakkas,1,New Delhi,"231/C-7, Sector 7 & 8 Main Dividing Road, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1220495,28.7054593,"Street Food, South Indian",250,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,175 +309629,Kebab Xpress,1,New Delhi,"118, 1st Floor, Unity Metro Mall, Rohini West Metro Station, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1162909,28.7148351,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,62 +18312438,Keventers,1,New Delhi,"Shop 10, Ground Floor, Unity One Mall, Sector 10, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1162909,28.7151037,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,43 +9348,McDonald's,1,New Delhi,"25-27, Ground Floor, D Mall, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1137736,28.7167411,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,67 +304928,Moti Mahal Delux,1,New Delhi,"Plot 240, Pocket H-17, Opposite Metro Pillar 421, Sector 7, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1182275,28.7126947,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.5,Yellow,Good,159 +18273634,Mr. Sub,1,New Delhi,"Unity One, Near Rohini West Metro Station, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1162909,28.7148351,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,42 +18246132,Nik's Kitchen,1,New Delhi,"Shop 32, CSC 6, DDA Market, Near N.K. Bagrodia School, Sector 9, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1243368,28.7114472,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,56 +302302,Punjabi Dhaba,1,New Delhi,"CSC-5, Near D-3 DDA Market, Behind Veera Jain Hospital, Sector 11, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1097279,28.7313904,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,98 +18355152,Satvik Rasoi,1,New Delhi,"D 14/193, 1st Floor, Sector 7, Opposite Pillar 415, Adjacent to Hari Om Band, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1197071,28.7116727,North Indian,700,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,31 +308969,Shree Gopal Ji Chole Bhature,1,New Delhi,"Shop 4, Flat 148, Pocket 7, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1020856,28.7003942,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,129 +302344,South Indian Corner,1,New Delhi,"26, DDA Market, Sector 13, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1272135,28.7239,"South Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,62 +307466,The Chocolate Villa,1,New Delhi,"110, 1st Floor, MM Mall, DC Chowk, Sector 9, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.125955,28.717512,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,257 +3108,Vaishno Punjabi Dhaba,1,New Delhi,"E-16/289, Sector 8, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1215051,28.7048624,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,70 +309783,WTF - What's the Food?,1,New Delhi,"Plot 171, Opposite Maharaja Agrasen Institute of Technology, Pocket 6, Sector 22, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.06521701,28.71961666,"North Indian, Chinese, Fast Food",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,83 +8883,Handi Chhareyan Di,1,New Delhi,"Opposite Pillar 397, Plot 11/C-9, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1243818,28.7086313,"North Indian, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,128 +300966,Svaruchi Bhoj,1,New Delhi,"E-1/10, Opposite M2K Cinema, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1165388,28.7023434,"North Indian, South Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,62 +18408058,Caffe 9,1,New Delhi,"R-1, DDA Market, Near Rose Apartment, Sector 14, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.11235,28.71679,"North Indian, Continental, European, American, Mediterranean",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,69 +301763,Jai Vaishno Rasoi,1,New Delhi,"B-6, DDA Market, Prashant Vihar, Sector 14, Rohini, New Delhi",Rohini,"Rohini, New Delhi",77.1325217,28.7117653,North Indian,250,Indian Rupees(Rs.),No,Yes,No,No,1,4.2,Green,Very Good,171 +18425766,Chidya Ghar - Roseate House,1,New Delhi,"Roseate House, Asset 10, Hospitality District, Aerocity, New Delhi","Roseate House, Aerocity","Roseate House, Aerocity, New Delhi",77.120533,28.550802,Continental,3700,Indian Rupees(Rs.),No,No,No,No,4,2.9,Orange,Average,4 +18382353,DEL - Roseate House,1,New Delhi,"Roseate House, Asset 10, Hospitality District, Aerocity, New Delhi","Roseate House, Aerocity","Roseate House, Aerocity, New Delhi",77.120533,28.550802,"Continental, American, North Indian",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,30 +18463962,Roasted - Roseate,1,New Delhi,"Roseate House, Asset 10, Hospitality District, Aerocity, New Delhi","Roseate House, Aerocity","Roseate House, Aerocity, New Delhi",77.120533,28.550802,"Cafe, Bakery",1000,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,3 +7310,Adish,1,New Delhi,"AB 2, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.198856,28.565381,"North Indian, Chinese, South Indian",700,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,45 +4336,Amritsari Dhaba,1,New Delhi,"Shop 1, Opposite Safdarjung Club, Behind Kamal Cinema, Safdarjung Enclave Market, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.199024,28.565358,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,18 +305517,Amritsari Xpress,1,New Delhi,"AB-8, Safdarjung Enclave, Kamal Cinema, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.199449,28.566074,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +303289,Anupam Sweets,1,New Delhi,"66/C, Humayunpur, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19249722,28.56198611,Mithai,250,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,12 +18334429,B Two,1,New Delhi,"B-2, 107, DDA Flat, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19174787,28.5624946,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +309531,Babbu Da Punjabi Dhaba,1,New Delhi,"2-A, Nauroji Nagar, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19453,28.567931,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,27 +8216,Baker's Byte,1,New Delhi,"42/A2, Ground Floor, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19496111,28.56383056,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,34 +18384121,Bamboo Hut,1,New Delhi,"298 Humayunpur, B6 DDA Market, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.195856,28.559151,"Naga, Tibetan",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,15 +1775,Bengal Sweet Corner,1,New Delhi,"AB 13, Community Center, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.1991066,28.5654336,"North Indian, South Indian, Chinese, Street Food, Mithai",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,90 +300258,Cafe Coffee Day - The Lounge,1,New Delhi,"B6/6, Commercial Complex, Safdarjung Enclave, New Delhi, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19591,28.559014,Cafe,750,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,32 +304107,Cafe Coffee Day,1,New Delhi,"Near Kamal Cinema, Safdarjung Enclave, New Delhi, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.199075,28.56540556,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,16 +18247034,Cake Away,1,New Delhi,"B-6-7/22, 1st Floor, Safdarjung Enclave Market, Opposite Deer Park, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19691481,28.55951921,"Cafe, Bakery",700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +18357109,Chanky Restruoo,1,New Delhi,"20, Krishna Nagar, Near Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19549257,28.56269484,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,12 +309026,Chawla Fast Food,1,New Delhi,"16, Central Market, Safdarjung Enclave, New Delhi, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19439722,28.56723889,"North Indian, South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18358685,Chawnsan Chef,1,New Delhi,"1B/A, Arjun Nagar, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.198889,28.559828,"Mughlai, North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,13 +18219516,China King,1,New Delhi,"Opposite B-6 Market, Deer Park, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19658758,28.55887489,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,8 +18461946,Dec,1,New Delhi,"70-E, Humayunpur, Safdarjung Enclave",Safdarjung,"Safdarjung, New Delhi",0,0,"Pizza, Continental, Beverages",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,15 +304194,Desi Zaika,1,New Delhi,"House 85-A, Humayupur, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19236042,28.56199193,"North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,83 +300280,Druk,1,New Delhi,"77, Humayunpur, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19417427,28.5618126,"Tibetan, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,53 +9565,Flavours of Tibet,1,New Delhi,"70-D, 1st Floor, Humayunpur Chowk, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19393991,28.56177343,"Tibetan, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,141 +18126972,Get Lost in Flavours,1,New Delhi,"Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19224811,28.56174605,"North Indian, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,70 +18285198,Giani,1,New Delhi,"AB-15, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.1990636,28.56542249,"Ice Cream, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,9 +7318,Green Chick Chop,1,New Delhi,"1/2, Arjun Nagar, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.20069136,28.56207497,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,30 +305514,Grover Dhaba,1,New Delhi,"B-6, Commercial Market, Opposite Deer Park, DDA Market, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19693661,28.55903832,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,16 +4330,Gupta's Rasoi,1,New Delhi,"B-6, Commercial Market, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19629455,28.558874,North Indian,350,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,60 +304186,Hangchuaa's Chinese Food Corner,1,New Delhi,"D-65, Arjun Nagar, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.1989952,28.56062056,Chinese,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,35 +18219526,High On Burgers,1,New Delhi,"Shop 1, C-61/2, Arjun Nagar, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19918799,28.56057904,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,37 +18254549,Hot Paprika,1,New Delhi,"14, Arjun Nagar, Near Sukhmani Hospital, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.20056731,28.56034081,"Chinese, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,26 +311570,Jalsa,1,New Delhi,"43, Humayunpur, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19475061,28.56265773,Chinese,450,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,6 +309804,KPG Express,1,New Delhi,"Humayunpur Chowk, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19366599,28.56201667,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,33 +18144483,Le Himalaya,1,New Delhi,"107/A, Ground Floor, Humayunpur, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19325863,28.56087734,"Tibetan, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,34 +309806,Lunia Italian,1,New Delhi,"B 3/1, Shanti Niwas, Arjun Nagar, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19738889,28.56108333,"Pizza, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,25 +305516,Mahipal Dhaba,1,New Delhi,"D 70, Humanyunpur, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.191948,28.572764,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,8 +18361271,Morong Ki,1,New Delhi,"B-106, NCC Gate, Humayunpur, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",0,0,Naga,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +311828,Moti Mahal Delux - Tandooori Trail,1,New Delhi,"159, Arjun Nagar, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19733089,28.56198369,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,90 +310436,Pooja Take Away Kitchen,1,New Delhi,"House 36-A, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19544631,28.56262917,"North Indian, Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,11 +5846,Red Chilli,1,New Delhi,"A-1/153, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19480157,28.56721546,"North Indian, Chinese, Mughlai",900,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,64 +309808,Saturn,1,New Delhi,"70/B, Humayun Pur, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.1941,28.561778,"Fast Food, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,9 +18432849,Smokey Flavours,1,New Delhi,"106, Humayun Pur, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19396817,28.56178754,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,13 +7322,Subway,1,New Delhi,"A-1, Arjun Nagar, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.20070411,28.56164445,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,188 +308219,Sugar Loft,1,New Delhi,"Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19585299,28.56573815,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,26 +18138427,Sugary Affairs,1,New Delhi,"B-3/91, Ground Floor, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19438482,28.56444427,"Bakery, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,6 +18424971,The Baking Fusion,1,New Delhi,"94-A, Arjun Nagar, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19857084,28.56069268,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +18456724,The Belly Giggles,1,New Delhi,"70-E, 1st Floor, NCC Gate, Humayunpur, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",0,0,"Naga, Tibetan, Chinese, Bakery",600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +300281,The Chef Restaurant,1,New Delhi,"70, Humayun Pur, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19402138,28.56172425,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,63 +304187,Yo Tibet,1,New Delhi,"119-A, Upper Ground Floor, Near NCC Gate, Humanyunpur Village, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19378803,28.56092299,"Chinese, Tibetan, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,150 +310942,Cafe Rock 'n' Rolla,1,New Delhi,"Shop 5 & 6, DDA Market, Arjun Nagar, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19603203,28.56171306,"Fast Food, American, Italian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,103 +309475,Charcoal,1,New Delhi,"B-6/5, Ground Floor, Shopping Centre, Opposite Deer Park, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19611,28.559765,"European, North Indian",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,210 +306870,Chawla Chicken,1,New Delhi,"Shop 1, Central Market, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19439723,28.56729585,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,40 +300283,Freedom Corner,1,New Delhi,"C-119, Humayun Pur, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19365057,28.56078547,"Chinese, Tibetan",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,123 +18337779,Kori's,1,New Delhi,"R-62/1, Humayunpur, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19367238,28.5626823,"Cafe, Korean",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,110 +307464,Mizo Diner,1,New Delhi,"85, Humayunpur, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19262462,28.56199134,"North Indian, Tibetan",600,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,154 +1774,Rainbows,1,New Delhi,"Shop 2, AB-6, Community Center, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.1993312,28.5658584,"Fast Food, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,51 +7319,Rajinder Xpress,1,New Delhi,"AB-4, Safdarjung Enclave Market, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19932243,28.5655974,"North Indian, Chinese, Mughlai",800,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,310 +3164,RDX,1,New Delhi,"AB-4, Safdarjung Enclave Market, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.1989719,28.5657345,"North Indian, Chinese, Mughlai",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,223 +18458306,Sumo Sushi,1,New Delhi,"Shop 13, B6, DDA Market, Chaudhary Harsukh Marg, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.192026,28.5598,Sushi,1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.9,Yellow,Good,21 +312130,The Categorical Eat Pham,1,New Delhi,"120-A, Ground Floor, Humayunpur, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.1938467,28.56102723,North Eastern,600,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,94 +306581,The Hungry Monkey,1,New Delhi,"B-6/6, DDA Market, Opposite Deer Park, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.196097,28.5590068,"European, Italian",2300,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,622 +18357527,Treat Up Cafe and Restaurant,1,New Delhi,"House 20F, Basement, Gali 1, Krishna Nagar, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19541814,28.56274136,"Cafe, American, Continental, Nepalese",500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,31 +18337920,Weird Time Food,1,New Delhi,"Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19384637,28.56078871,"Continental, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,49 +18416859,Amor Kitchen,1,New Delhi,"65-E, Arjun Nagar, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.1990168,28.5604954,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18485984,CHA! WA!!,1,New Delhi,"111, Chaudhary Hukum Chand Marg, Humayuour, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",0,0,"Fast Food, Beverages, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18393436,Chip N Dale,1,New Delhi,"165, LGF, Humayupur, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19272362,28.56177812,"Continental, Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +310320,Chocolangels,1,New Delhi,"B5/204, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",0,0,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18331664,Home Kitchen,1,New Delhi,"Humanyupur, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",0,0,"North Indian, South Indian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18291208,Laziz Foods,1,New Delhi,"B-2 Market, Behind Indian Overseas Bank, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",0,0,"Mughlai, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18285734,Mummy's Food Corner,1,New Delhi,"87/A, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19272755,28.56144097,Assamese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18334432,Riyaz Biryani Corner,1,New Delhi,"B-61, Arjun Nagar, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19942939,28.56039293,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18416831,Safdarjung Club,1,New Delhi,"B-4 Block, Opposite Kamal Cinema, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",0,0,"Chinese, North Indian, Fast Food, Street Food",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18496493,Starup Catering,1,New Delhi,Safdarjung Enclave,Safdarjung,"Safdarjung, New Delhi",0,0,"Chinese, Mughlai, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18285204,The Chinese & Thai Restaurant,1,New Delhi,"85-B, Humayunpur, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19289754,28.56153078,"Chinese, Thai",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +628,Cafe Coffee Day,1,New Delhi,"B6/6, Commercial Complex, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.1960071,28.5589086,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.4,Red,Poor,28 +305606,Zustt Yummy,1,New Delhi,"70 B, LGF, Safdarjung Enclave, New Delhi, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",0,0,"North Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.3,Red,Poor,54 +18396054,Cafe Hashtag LoL,1,New Delhi,"AB-11, DDA Market, Safdarjung Enclave, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19869513,28.56608797,"Cafe, North Indian, Chinese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,49 +18237319,Dirty Apron,1,New Delhi,"B6-7/22, 2nd Floor, Opposite Deer Park, Safdarjung Enclave Market, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19692755,28.55968176,"European, Asian",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,4.3,Green,Very Good,96 +17953911,Hornbill,1,New Delhi,"104/A, Basement Backside NCC Gate, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19302326,28.56098659,Naga,400,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,149 +18456770,Napoli Pizza,1,New Delhi,"Safdarjung Enclave, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.198835,28.560712,Pizza,800,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,41 +1777,Rajinder Da Dhaba,1,New Delhi,"AB-14, Safdarjung Enclave Market, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.1992414,28.5654017,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,3530 +18138443,The Piano Man Jazz Club,1,New Delhi,"B-6-7/22, Safdarjung Enclave Market, Opposite Deer Park, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19702881,28.55952304,"Mexican, American",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,420 +313269,Tossin Pizza,1,New Delhi,"B-6/2, Safdarjung Enclave, Opposite Deer Park, Safdarjung, New Delhi",Safdarjung,"Safdarjung, New Delhi",77.19572827,28.55933546,"Pizza, Italian",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.1,Green,Very Good,647 +18428536,Big Belly Burger,1,New Delhi,"Freedom Fighter Enclave, Opposite Gate 3, Neb Sarai, Ignou Road, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.201128,28.509106,Fast Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,6 +300231,Bikaner Choice,1,New Delhi,"Shop 10, Sudan Singh Market, Saiyad Ul Ajaib, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.2051326,28.5144262,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,14 +300236,Bikaner Misthan,1,New Delhi,"A-96, MB Road, Saiyad Ul Ajaib, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.2030121,28.5203762,"Mithai, Street Food, North Indian, South Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,16 +18303837,Da Yummy Pizza,1,New Delhi,"114/2, IGNOU Road, Neb Sarai, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.20037151,28.50820299,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,4 +312827,Food Nursary,1,New Delhi,"A-183, IGNOU Chowk, Neb Sarai, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.19863344,28.50401631,"North Indian, Mughlai",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,5 +302326,Puja Sandwich House,1,New Delhi,"Main IGNOU Road, Neb Sarai, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.20018056,28.50790278,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,16 +300235,PVR Bhojanalay,1,New Delhi,"117/1, Main IGNOU Road, Neb Sarai, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.2000801,28.507634,"Street Food, North Indian",100,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,17 +309192,The Bake Studio,1,New Delhi,"A/56, Freedom Fighter Enclave, IGNOU Road, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.2017569,28.5098832,"Bakery, Desserts",450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +2201,The Blue Tandoor,1,New Delhi,"A-1, Gate 2, Cariappa Marg, Opposite Saket, Near, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.2142696,28.5180547,"North Indian, Mughlai",1000,Indian Rupees(Rs.),No,No,No,No,3,2.9,Orange,Average,13 +18355141,Abdullah Biryani Centre,1,New Delhi,"IGNOU Road, Neb Sarai, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.1987595,28.50556136,Biryani,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18408037,Allishan Family Restaurant,1,New Delhi,"114/1, Main IGNOU Road, Neb Sarai, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.2008084,28.5086514,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18489533,Bhawani Restaurant,1,New Delhi,"Khasra 59, IGNOU Road, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.2058841,28.51673,"North Indian, Mughlai, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18471278,BonJuz,1,New Delhi,"Flat 2, Plot A-6, Anupam Enclave, Phase 1, Saidulajab Extension, IGNOU Road, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",0,0,"Healthy Food, Juices",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18440160,Chawla Chik Inn,1,New Delhi,"Shop 1, Tiger Lane, Western Avenue, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.214375,28.507952,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,0 +18354987,Foodies,1,New Delhi,"Shop 21, Paryavaran Complex, Near Vidya Sagar Hospital, IGNOU Road, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.20467545,28.51453131,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +302314,G+,1,New Delhi,"Main IGNOU Road, Neb Sarai, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.20021944,28.50756389,Mithai,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18355145,Janta Canteen,1,New Delhi,"Maidangarhi Bus Stand, IGNOU Road, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.19703753,28.50085983,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18355137,Kalka's Food Centre,1,New Delhi,"Shop 3, B Block, Khasra 24, Opposite Anupam Appartments, IGNOU Road, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.2062486,28.5183803,"North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489523,Le Village Pastry Shop,1,New Delhi,"Ignou Road, Anupam Extention, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.206069,28.5172873,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18408066,Meatwale.com,1,New Delhi,"Dhankad Market, Main IGNOU Road, Neb Sarai, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.201667,28.5099643,"Raw Meats, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18312586,Mohit Bakery,1,New Delhi,"Shop B6, Gali 1, Saidulajab, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.2060692,28.5166527,"Bakery, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18492960,Mouthmatics ,1,New Delhi,"A1/75, Freedom Fighter Enclave, IGNOU Road, Neb Sarai, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +302311,Pastry Place,1,New Delhi,"114/3, Neb Sarai, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.200568,28.5082777,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18469965,Pho King Awesome,1,New Delhi,"34 L, Ashoka Avenue, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.22319,28.535749,Asian,850,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18488864,PIE,1,New Delhi,"A-2, Paryavaran Complex, IGNOU Road, Neb Sarai, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.20335054,28.51465649,"Desserts, Ice Cream, Pizza",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18470757,Rasoi - The Indian Zaika,1,New Delhi,"Paryavaran Complex, Near Vidyasagar Hospital, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.2046316,28.5144607,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18355143,Shree Balaji Bhojnalaya,1,New Delhi,"Maidangarhi Bus Stand, IGNOU Road, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.19673578,28.50050685,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18465571,Smoke Trailer Grill,1,New Delhi,"15C, Ashoka Avenue, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.22338664,28.51195551,American,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +302318,Sonu Sweets,1,New Delhi,"Main IGNOU Road, Neb Sarai, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.1988564,28.50556607,"Mithai, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18303708,Spice Treat,1,New Delhi,"Lane 3, West End Marg, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.19935864,28.51725461,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18355147,Star Restaurant,1,New Delhi,"Westend Marg, Saidullajab, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.19856001,28.51784764,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +311821,The Twisted Bakery,1,New Delhi,"J-107, Western Avenue, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",0,0,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18414500,Tiffino Mania,1,New Delhi,"Forest Lane, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",0,0,"North Indian, Chinese, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18419682,Yaadgaar,1,New Delhi,"Gali 2, Neb Sarai, IGNOU Road, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",0,0,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18203159,Pandit Ji Ki Apni Rasoi,1,New Delhi,"Near Hanuman Dharam Kaanta, IGNOU Road, Sainik Farms, New Delhi",Sainik Farms,"Sainik Farms, New Delhi",77.205485,28.5152144,North Indian,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,4 +309152,Alam Muradabadi Chicken Biryani,1,New Delhi,"Main IGNOU Road, Saket, New Delhi",Saket,"Saket, New Delhi",77.2011051,28.5089203,"North Indian, Biryani",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +309113,Boheme Bar & Grill,1,New Delhi,"G-8, Southern Park Mall, Saket, New Delhi",Saket,"Saket, New Delhi",77.2192738,28.5276895,"North Indian, Chinese, Italian",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,118 +18398598,Budapest Kitchen & Bar,1,New Delhi,"Shop 13-17, Gate 3, Garden of Five Senses, Saidulajab, Saket, New Delhi",Saket,"Saket, New Delhi",77.19878934,28.5130132,"Finger Food, North Indian, Continental, Chinese, Italian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3,Orange,Average,4 +18303720,Dark House,1,New Delhi,"Khasra 276, West End Marg, Saidulajab, Saket, New Delhi",Saket,"Saket, New Delhi",77.1989393,28.5182007,"Chinese, Italian, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,24 +18303716,Henry's Cafe,1,New Delhi,"69, Main IGNOU Road, Saket, New Delhi",Saket,"Saket, New Delhi",77.20559042,28.51536946,"Pizza, North Indian, Continental",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,42 +300221,Kathi Zone,1,New Delhi,"Near Made Easy Coaching Center, Westend Marg, Saiyad Ul Ajaib, Saket, New Delhi",Saket,"Saket, New Delhi",77.1982405,28.51755481,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,20 +18203177,Kehar Cafe & Restaurant,1,New Delhi,"A-1, Kehar Singh Estate, Behind Saket Metro Station, Saket, New Delhi",Saket,"Saket, New Delhi",77.2004093,28.5194377,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,16 +308992,Kumaon Dhaba & Service,1,New Delhi,"Shop 11, IGNOU Road, Saidulajab, Saket, New Delhi",Saket,"Saket, New Delhi",77.20637999,28.51901777,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +18368005,Let'z Eat,1,New Delhi,"Gate 1, Opposite Freedom Fighter Colony, Saket, New Delhi",Saket,"Saket, New Delhi",77.202174,28.510419,"North Indian, Mughlai, Chinese, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,11 +311517,Lite Eat Cafe,1,New Delhi,"West Avenue Marg, Saidulajab, Saket, New Delhi",Saket,"Saket, New Delhi",77.1982187,28.51748381,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18282049,Malabar Dosa Hut,1,New Delhi,"Shop 4-5, Chawdhary Dayanand Market, IGNOU Road, Saket, New Delhi",Saket,"Saket, New Delhi",77.20556729,28.51544458,South Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +308166,New Red Onion,1,New Delhi,"Plot 137/1, 1st Floor, Saidulajab, M B Road, Near Saket Metro Station, Saket, New Delhi",Saket,"Saket, New Delhi",77.20329646,28.5201761,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,2.5,Orange,Average,20 +256,Pizza Hut,1,New Delhi,"12, PVR Anupam Complex, Community Centre",Saket,"Saket, New Delhi",77.2076072,28.5233603,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.1,Orange,Average,237 +18348790,The Tiffin Hut,1,New Delhi,"C-14, Ambika Apartment, Westend Marg Lane 4, Saidullajab, Saket, New Delhi",Saket,"Saket, New Delhi",77.19903778,28.51688047,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +309874,The Upper Crust,1,New Delhi,"Shop 4, Upper Ground Floor, Plot 4, Khasra 132, IGNOU Road, Neb Sarai, Near Saket, New Delhi",Saket,"Saket, New Delhi",77.21234288,28.51914091,"Pizza, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,15 +7131,Touch of Punjab,1,New Delhi,"Shop 5, IGNOU Road, Saket, New Delhi",Saket,"Saket, New Delhi",77.2046959,28.51435543,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,33 +312032,Tulicakes,1,New Delhi,"A63 / 1, Saket, New Delhi",Saket,"Saket, New Delhi",77.20787968,28.52252897,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,31 +311370,Wanchai By Kylin,1,New Delhi,"My Square, Select Citywalk Mall, Saket, New Delhi",Saket,"Saket, New Delhi",77.21950404,28.52875186,"Asian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,121 +18233797,Wow! India,1,New Delhi,"A-1, Paryavaran Complex, IGNOU Road, Saket, New Delhi",Saket,"Saket, New Delhi",77.2031077,28.51467478,"North Indian, Chinese",300,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,4 +313311,All About Food,1,New Delhi,"B-70, Opposite Saket City Hospital, Saket, New Delhi",Saket,"Saket, New Delhi",77.213402,28.524625,"Chinese, Asian, Mediterranean, Continental",750,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,305 +3797,Costa Coffee,1,New Delhi,"Ground Floor, DLF Courtyard, Atrium, Saket, New Delhi",Saket,"Saket, New Delhi",77.2168935,28.5280456,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,118 +309893,Hey' Sugar Delhi,1,New Delhi,"Saket, New Delhi",Saket,"Saket, New Delhi",77.20448703,28.52228093,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,60 +4889,India Grill - Hilton Garden Inn,1,New Delhi,"Hilton Garden Inn, A-4 DLF Place, Saket District Centre, Saket, New Delhi",Saket,"Saket, New Delhi",77.2172977,28.5280393,"Continental, Italian, North Indian",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,184 +18373071,Jugmug Thela,1,New Delhi,"Shed 4, Khasra 258, Behind Kuldeep House, Lane 3, Westend Marg, Saidulajab, Saket, New Delhi",Saket,"Saket, New Delhi",77.199805,28.517316,Beverages,200,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,25 +18238757,Mucchad Di Chai,1,New Delhi,"Mehrauli Badarpur Road, Saidullajab",Saket,"Saket, New Delhi",77.2028171,28.5203778,"Fast Food, Beverages",200,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,36 +311326,SS ONN THE GO,1,New Delhi,"My Square Food Court, Select City Walk, Saket, New Delhi",Saket,"Saket, New Delhi",77.2196556,28.5291378,Street Food,500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,66 +18255154,The Junkyard Cafe,1,New Delhi,"Plot D-1, Unit 16,17, 30, 31, Ground Floor, Salcon Ras Vilas Mall, District Centre, Saket, New Delhi",Saket,"Saket, New Delhi",77.21971795,28.52823136,"North Indian, Mediterranean, Asian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,220 +18465802,Aradhya Restaurant,1,New Delhi,"Shop 50, Gali 1, Saiyadulajab, Saket, New Delhi",Saket,"Saket, New Delhi",77.19819423,28.51751975,"Chinese, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18303815,Nanu Ki Rasoi,1,New Delhi,"Shop 1, Upper Ground Floor, Main IGNOU Road, Saket, New Delhi",Saket,"Saket, New Delhi",77.19907064,28.50600419,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18409190,PSR Foods,1,New Delhi,"Khasra 264, Garden of Five Senses Road, Near Saket Metro Station, Saket, New Delhi",Saket,"Saket, New Delhi",77.19821937,28.51756924,"North Indian, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18463563,Rasoi - The Indian Zaika,1,New Delhi,"Paryavaran Complex, Near Vidya Sagar Hospital, Saket, New Delhi",Saket,"Saket, New Delhi",77.20963016,28.50644908,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +311174,The Pizza Corner,1,New Delhi,"Shop 3, A-4, Anupam Garden, IGNOU Road, Saidulajab, Saket, New Delhi",Saket,"Saket, New Delhi",77.20538288,28.51470631,"Fast Food, Pizza",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.1,Red,Poor,39 +4726,Wah Ji Wah,1,New Delhi,"K-3/K-4, Near Gyan Bharti School, Saket, New Delhi",Saket,"Saket, New Delhi",77.2064665,28.52493186,"North Indian, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.1,Red,Poor,112 +18217023,Blue Tokai Coffee Roasters,1,New Delhi,"Khasra 258, Lane 3, Westend Marg, Saidulajab, Saket, New Delhi",Saket,"Saket, New Delhi",77.200089,28.5173033,Cafe,350,Indian Rupees(Rs.),No,Yes,No,No,1,4.4,Green,Very Good,269 +18279172,Ice Pan Creamery,1,New Delhi,"310, 2nd Floor, Near Food Court, DLF Place Mall, Saket, New Delhi",Saket,"Saket, New Delhi",77.21681479,28.52780217,"Ice Cream, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,4.2,Green,Very Good,92 +8621,Rose Cafe,1,New Delhi,"2, Westend Marg, Saidulajab",Saket,"Saket, New Delhi",77.1982094,28.5178209,"Cafe, Italian, Lebanese, Continental, Mediterranean",1000,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,1653 +18463567,Nueva,1,New Delhi,"Ground Floor, Sangam Courtyard, R K Puram, New Delhi","Sangam Courtyard, RK Puram","Sangam Courtyard, RK Puram, New Delhi",77.1720619,28.571902,South American,2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,14 +18124378,Cafe Diva,1,New Delhi,"1st Floor, Sangam Courtyard, Major Somnath Marg, R K Puram, New Delhi","Sangam Courtyard, RK Puram","Sangam Courtyard, RK Puram, New Delhi",77.1720619,28.5722604,"European, Italian",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.8,Yellow,Good,109 +313061,Starbucks,1,New Delhi,"Sangam Courtyard, Major Somnath Marg, R K Puram, New Delhi","Sangam Courtyard, RK Puram","Sangam Courtyard, RK Puram, New Delhi",77.1738591,28.5724323,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,74 +18126111,Cafe Delhi Heights,1,New Delhi,"Shop 1-2, Ground Floor, Sangam Courtyard, R K Puram, New Delhi","Sangam Courtyard, RK Puram","Sangam Courtyard, RK Puram, New Delhi",77.1734996,28.571681,"Continental, American, Italian, Seafood, North Indian, Cafe",2000,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,304 +18053052,Delhi Club House,1,New Delhi,"Ground Floor, Sangam Courtyard, Major Somnath Marg, R K Puram, New Delhi","Sangam Courtyard, RK Puram","Sangam Courtyard, RK Puram, New Delhi",77.1738591,28.5724323,"North Indian, Continental, Asian",1700,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,416 +18034053,The Fatty Bao,1,New Delhi,"2nd Floor, Sangam Courtyard, R K Puram, New Delhi","Sangam Courtyard, RK Puram","Sangam Courtyard, RK Puram, New Delhi",77.1734996,28.571681,"Asian, Sushi",1800,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,695 +18144458,Ziu,1,New Delhi,"Sangam Courtyard, Major Somnath Marg, R K Puram, New Delhi","Sangam Courtyard, RK Puram","Sangam Courtyard, RK Puram, New Delhi",77.1738591,28.5724323,Thai,1500,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,259 +306801,Al-Arabi Restaurant,1,New Delhi,"5th Floor, Plot 61, Drishay Palace, Near K2 Gas Office, Janta Flat, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.300312,28.53354,"Arabian, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,7 +7815,Bikaner Sweets,1,New Delhi,"Shop 7, Pocket H Market, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2919183,28.5353106,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,9 +1461,Chawla's_,1,New Delhi,"7, A Pocket Market, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2868798,28.5336131,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,19 +18339800,DELI2NITE,1,New Delhi,"2-A, Main Market, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2970357,28.5325576,"North Indian, Fast Food, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,15 +309728,Green Chick Chop,1,New Delhi,"4/5, H Block Market, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2918036,28.5351351,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,14 +308536,Laziz Fast Food & Laziz Khana,1,New Delhi,"Opposite H block Market, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2909739,28.5352265,"North Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,7 +18357533,New Zaika Kathi Rolls,1,New Delhi,"Shop 6, Plot 5, Pocket H, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2917987,28.5351255,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +18424619,Sardar Ji Chaap & Rolls,1,New Delhi,"Pocket H & J Market, Pankaj Plaza, Sarita Vihar, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2910441,28.5349496,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,7 +7824,Shri Bala Ji,1,New Delhi,"2, Pocket N, DDA Market, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2983439,28.5381337,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,14 +18219530,The Kitchen Exotica,1,New Delhi,"Near Sarita Vihar Police Station, Opposite Apollo Hospital, Main Mathura Road, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2821107,28.5400233,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,9 +303057,Wake And Bake,1,New Delhi,"Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.297525,28.5318684,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,16 +307409,Neha's Biscotte,1,New Delhi,"A-184, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2868353,28.5336327,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,40 +7803,Bikaner Sweets,1,New Delhi,"302-A, Pocket N, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2985617,28.5380821,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18472439,Biryani Bot,1,New Delhi,"H Pocket Market, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",0,0,Biryani,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18424883,Brij Ki Rasoi,1,New Delhi,"Main Market, Madanpur Khadar, Sarita Vihar, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2998315,28.5335902,"North Indian, South Indian, Mughlai",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18357939,Devika Restaurant,1,New Delhi,"373-A, Pocket-N, Near Sarita Vihar Police Chowki, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2985607,28.5378528,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18357941,Facebook Fast Food,1,New Delhi,"Shop 1, Madan Pur Khadar, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2991003,28.5335599,"North Indian, Mughlai, Chinese",750,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +310198,Jo's Peace of Cake,1,New Delhi,"L-321, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2961381,28.5375838,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18390309,Kaka's Tiffin Service,1,New Delhi,"Pocket L, Sarita Vihar Market, Opposite GD Goenka School, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2963255,28.5374192,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18364414,MK Tiffin Service,1,New Delhi,"GF-771, Sukhdev Complex, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2853594,28.5388021,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +7905,Moni Bakers,1,New Delhi,"5-A/1, Main Market, Madanpur Khadar, Near Aggarwal Sweets, Pocket D & E, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2972152,28.5325746,Bakery,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18357819,Nutri Lunch,1,New Delhi,"B-422, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2921201,28.532939,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +7818,Om Aggarwal Sweets,1,New Delhi,"2 A, Pocket M & N, Janta Flats, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2985251,28.5384507,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18357948,Sansar Hotel,1,New Delhi,"E Block, Chauhan Market, Near DDA Market, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2976641,28.532348,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18357943,Shama Muradabadi Chicken Biryani,1,New Delhi,"Shop 3, 4B, Choudhry Nathu Singh Market, Main Road, Madanpur Khadar, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2990585,28.5334587,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18372279,Midnight Delight,1,New Delhi,"Near Sarita Vihar Metro Station, Sarita Vihar, New Delhi",Sarita Vihar,"Sarita Vihar, New Delhi",77.2884321,28.5293671,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,8 +18384138,Ashok & Ashok Meat Dhaba,1,New Delhi,"Shop 2, Ring Road, Sarojini Nagar, New Delhi",Sarojini Nagar,"Sarojini Nagar, New Delhi",77.1936317,28.5694278,North Indian,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,11 +18211312,Durga Sweets Corner,1,New Delhi,"139, Near Ring Road Market, Sarojini Nagar, New Delhi",Sarojini Nagar,"Sarojini Nagar, New Delhi",77.1940306,28.5697442,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,16 +7591,Hot Pot,1,New Delhi,"Opposite NDMC, DLF Plaza, Main Market, Sarojini Nagar, New Delhi",Sarojini Nagar,"Sarojini Nagar, New Delhi",77.1954232,28.5762852,"Fast Food, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,16 +1634,Kwic Bitte Restaurant,1,New Delhi,"132, Sarojini Nagar Market, Sarojini Nagar, New Delhi",Sarojini Nagar,"Sarojini Nagar, New Delhi",77.1957611,28.5761246,"Chinese, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,38 +307618,Khandani Pakodewala,1,New Delhi,"Ring Road Market, Nauroji Nagar, Near Sarojini Nagar, New Delhi",Sarojini Nagar,"Sarojini Nagar, New Delhi",77.1937667,28.5697323,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,223 +306535,Kulcha King,1,New Delhi,"Shop 144, Ring Road Market, Sarojini Nagar, New Delhi",Sarojini Nagar,"Sarojini Nagar, New Delhi",77.1940263,28.5697787,Street Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,168 +18396418,Cake Spot,1,New Delhi,"Shop 6, Nehru Nagar, Ring Road Market, Sarojini Nagar, New Delhi",Sarojini Nagar,"Sarojini Nagar, New Delhi",77.1939753,28.5696602,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18357568,Chicken Point,1,New Delhi,"Shop 81, Ring Road Market, Sarojini Nagar, New Delhi",Sarojini Nagar,"Sarojini Nagar, New Delhi",77.1936712,28.5699787,"Mughlai, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18425158,Chowringhee,1,New Delhi,"Shop 6, Ring Road Market, Nauroji Nagar, Near, Sarojini Nagar, New Delhi",Sarojini Nagar,"Sarojini Nagar, New Delhi",77.1930423,28.5695602,Fast Food,250,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,1 +18492652,Koolees Milkshake Bar,1,New Delhi,"85, Ring Road Market, Sulekha Vihar, Sarojini Nagar, New Delhi",Sarojini Nagar,"Sarojini Nagar, New Delhi",0,0,Beverages,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18425149,Krispy Kitchen,1,New Delhi,"Shop 1, P-2 Vikas Commercial Complex, Pillangi Village, Sarojini Nagar, New Delhi",Sarojini Nagar,"Sarojini Nagar, New Delhi",77.2012795,28.5797196,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18489497,Mughlai Point,1,New Delhi,"Shop 78, Ring Road Market, Sarojini Nagar, New Delhi",Sarojini Nagar,"Sarojini Nagar, New Delhi",77.1938509,28.5698167,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18486878,Shama Chicken Corner,1,New Delhi,"Shop 3, Ring Road Market, Sarojni Nagar New Delhi",Sarojini Nagar,"Sarojini Nagar, New Delhi",77.1935675,28.5694755,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +3464,Alfa Kathi Rolls,1,New Delhi,"Shop 8, Opposite HDFC ATM, Satyaniketan Market, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1687579,28.5875672,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,23 +18252361,Angeethi Express,1,New Delhi,"Opposite Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1700401,28.5879735,"North Indian, Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,11 +18252412,Backbenchers,1,New Delhi,"294, 2nd Floor, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1692313,28.5887026,"Cafe, Continental, Italian, North Indian",700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,178 +1637,Bake Day,1,New Delhi,"214, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1690516,28.5876997,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,82 +3463,Balaji Dhaba,1,New Delhi,"4, Satyaniketan Market, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1689617,28.5876911,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,11 +18454499,Bhukkad,1,New Delhi,"295, First Floor, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.169099,28.588787,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,8 +609,Cafe Coffee Day,1,New Delhi,"13, South Campus, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1688269,28.5884398,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,78 +18441687,Cafe Cones & Curries,1,New Delhi,"Shop 7, Ground Floor, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1672543,28.5877965,"Fast Food, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,6 +305472,Cafe Trance & Lounge,1,New Delhi,"286, Basement, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1688109,28.5884242,"Cafe, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,21 +4649,Chinese Hut,1,New Delhi,"181, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1693212,28.587367,Chinese,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,33 +300267,Chocolate Square,1,New Delhi,"116, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1688269,28.5880814,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,76 +304976,Chocolate Temptation,1,New Delhi,"60, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1684226,28.5878187,"Bakery, Desserts",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,62 +18423129,Flirty Momo's,1,New Delhi,"Shop 3, Building 12, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1683952,28.5883364,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +18456150,Food Junkies,1,New Delhi,"181/2, Satya Niketan Market, Opposite Sri Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",0,0,"North Indian, Chinese, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,11 +18157391,Frozen Fantasy,1,New Delhi,"295, Satyaniketan Market, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1691415,28.5888732,"Desserts, Beverages",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,31 +18469968,Hooters,1,New Delhi,"297, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",0,0,"Continental, Mexican, Fast Food, North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,6 +18292083,Katwalk Lounge,1,New Delhi,"68, Near Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1683813,28.5880382,"Cafe, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,22 +18356773,Mom Hand Momos,1,New Delhi,"Opposite Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.16901079,28.58770395,Chinese,100,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,8 +309811,Muradabadi Biryani Centre,1,New Delhi,"Shop 2, Mini Market, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1690325,28.5875051,Mughlai,450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,20 +18453788,NCR Cafe ,1,New Delhi,"3rd Floor, Building 15, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1670746,28.5876001,"Cafe, Chinese, Fast Food",800,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +18460981,Peri Peri Momos,1,New Delhi,"57, Satya Niketan Road, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.16854351,28.58765741,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,9 +18287389,Rosart Chocolate,1,New Delhi,"A/19, West End, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1652844,28.5738064,Desserts,200,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,15 +1629,Shanghai Restaurant,1,New Delhi,"9, Satyaniketan Market, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1691415,28.587529,"North Indian, Mughlai, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.5,Orange,Average,23 +18288761,SharpShooters Roof Top Cafe,1,New Delhi,"282, Roof Top, Benito Juarez Marg, South Moti Bagh, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1687371,28.5885208,"Cafe, Chinese, Italian",450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,18 +7603,Stuti Restaurant,1,New Delhi,"6, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1689617,28.5875118,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,26 +18204486,The Addictions,1,New Delhi,"99, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1683776,28.5879488,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,31 +18341806,The Kahuna,1,New Delhi,"House 4-5, Opposite Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",0,0,"Chinese, Continental, Italian, North Indian",800,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,27 +18423125,Turn Up,1,New Delhi,"296, 2nd Floor Satyaniketan, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1692496,28.5887711,"North Indian, Chinese",1200,Indian Rupees(Rs.),No,No,No,No,3,3,Orange,Average,6 +18175323,Wow! Momo,1,New Delhi,"289, Opposite Venkateshwar College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1691141,28.5887241,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,154 +18237321,Echoes Satyaniketan,1,New Delhi,"17, 1st Floor, Opposite Sri Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1671645,28.5876087,"Cafe, Continental, Italian, Mexican, Chinese, American",600,Indian Rupees(Rs.),No,No,No,No,2,4.7,Dark Green,Excellent,1563 +18336489,#OFF Campus,1,New Delhi,"284, Opposite Sri Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1687371,28.5885208,"Cafe, Continental, Italian, Fast Food",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.7,Yellow,Good,216 +312772,2 Bandits Lounge & Bar,1,New Delhi,"16, 1st & 2nd Floor, Opposite Sri Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1670164,28.5876339,"Italian, Continental, Mexican, North Indian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,1316 +351,"34, Chowringhee Lane",1,New Delhi,"93, Opposite Venkateswara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1684675,28.5884054,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,345 +309140,Amigo's Hub,1,New Delhi,"96, Opposite Sri Venkateswara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1683327,28.5879893,"Cafe, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,193 +311854,CAD M CAD B,1,New Delhi,"Shop 10, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1690522,28.5875169,"Fast Food, Italian, Beverages",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,60 +18391128,Cafe 121,1,New Delhi,"121, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1686921,28.5882925,"Continental, American, Italian, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,23 +18228894,Cafe Hera Pheri,1,New Delhi,"2, Opposite Sri Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1676138,28.5879205,"Cafe, Italian, Chinese, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,401 +18429392,Cafe Tansen,1,New Delhi,"14, Opposite Sri Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1670746,28.5876897,"North Indian, Chinese",950,Indian Rupees(Rs.),Yes,No,No,No,2,3.5,Yellow,Good,20 +18364239,Caf Befikre,1,New Delhi,"289, 1st Floor, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.17,28.59,"Chinese, Continental",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,80 +300815,Caf 101,1,New Delhi,"101, Opposite Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1683776,28.5879488,"Cafe, Italian, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,365 +18322638,Canteen Till I Die,1,New Delhi,"107, Ground Floor, Opposite Sri Venkateswara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1684226,28.5879083,"Cafe, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,91 +2215,China Bowl,1,New Delhi,"10, Satyaniketan Market, Opposite Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1674341,28.5879033,"Chinese, Thai, Japanese, Tibetan",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,363 +304162,Chowringhee,1,New Delhi,"93, Opposite Venkateswara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1682428,28.5880703,"Street Food, Chinese, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,364 +18157395,Crazy Kitchen Lounge & Terrace,1,New Delhi,"37, Near HDFC ATM, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1678462,28.5881358,"North Indian, Chinese, Italian",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,176 +309865,FrenZone,1,New Delhi,"17, Ground Floor, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1670746,28.5876001,"North Indian, Chinese, Fast Food, Cafe",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.9,Yellow,Good,288 +18249109,Giani,1,New Delhi,"Shop 93, Main Market, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1683478,28.5882542,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,27 +18355138,Grill Master,1,New Delhi,"106, Ground Floor, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.16855716,28.58764742,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,26 +300185,High On Burgers,1,New Delhi,"57, Opposite Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1691415,28.587529,"Fast Food, Burger",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,115 +300269,Kev's,1,New Delhi,"298, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1688007,28.5885707,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,184 +18398506,Madira,1,New Delhi,"289, 2nd Floor, South Moti Bagh, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1689183,28.588887,"Cafe, North Indian, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,67 +313296,Nature Hut Cafe,1,New Delhi,"295, Upper Ground Floor, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1691864,28.5888327,"Chinese, Thai, Continental, Fast Food, North Indian",750,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.9,Yellow,Good,117 +18445781,Papa Buns,1,New Delhi,"Shop 286, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",0,0,Cafe,250,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,25 +18372705,Pirates of Campus,1,New Delhi,"1st Floor, Building 9, Opposite Venkateshwar College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1672543,28.5877069,"Cafe, North Indian, Continental, Italian",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,43 +4278,Subway,1,New Delhi,"284, Main Market, Near Venkateswara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1687371,28.5885208,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,144 +18312446,Sushiya Express,1,New Delhi,"Shop 10, Satyaniketan Market, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1685561,28.5883121,"Sushi, Asian",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,74 +18261701,The Chai Story,1,New Delhi,"292, 1st Floor, Opposite Venkateshwar College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1690516,28.5885957,Cafe,300,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,142 +18424602,The Food Truck Cafe,1,New Delhi,"Plot 69, Near HDFC Bank ATM, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1679732,28.5881341,Cafe,800,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,35 +18358164,The Punter House,1,New Delhi,"2nd & 3rd Floor, Building 9, Opposite Venkateshwar College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1672543,28.5877069,"Cafe, Continental, Mexican, Italian, North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.7,Yellow,Good,177 +18336204,Thikaana,1,New Delhi,"2, 1st Floor, Opposite Sri Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1677396,28.5880523,"Cafe, Continental, Italian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,83 +18368002,Tin Town Caf,1,New Delhi,"37, Ground Floor, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1676587,28.5880592,"Cafe, North Indian, Continental, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,142 +18245295,Uptown Cafe,1,New Delhi,"4-5, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1676138,28.5880101,"Cafe, Continental, Chinese, North Indian, Italian",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,244 +18268693,Vadapav Junction,1,New Delhi,"Outlet 1, Ground Floor, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1689617,28.5876911,Street Food,150,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,48 +18472609,Crispers,1,New Delhi,"96, Opposite Venkteshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1683519,28.5880191,"Fast Food, Beverages",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +300183,Pizza Hut Delivery,1,New Delhi,"Shop 72, Opposite Venkateswara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1679982,28.5881378,"Italian, Pizza",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,114 +18216918,Wrapss,1,New Delhi,"Shop 123-124, Ground Floor, Opposite Sri Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1684675,28.5884054,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.2,Red,Poor,41 +306503,Big Yellow Door,1,New Delhi,"H-8, Opposite Venkateswara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1675239,28.5879119,"Cafe, Fast Food, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,3311 +18291230,Bombay Brunch,1,New Delhi,"296, Ground Floor, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1691864,28.5888327,"Street Food, South Indian",400,Indian Rupees(Rs.),No,Yes,No,No,1,4.1,Green,Very Good,295 +18418239,Burgrill,1,New Delhi,"123-124, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1684226,28.5884459,"Burger, Fast Food",450,Indian Rupees(Rs.),No,Yes,No,No,1,4.4,Green,Very Good,178 +18391458,Cafe Kazbaah,1,New Delhi,"67, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1683221,28.5879999,"Cafe, Italian, Continental",600,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,49 +18418358,Eat Golf Repeat,1,New Delhi,"11, 2nd Floor, Opposite Venketeshwar College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1671645,28.5877879,"Cafe, Italian, Continental, Mexican",800,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,37 +18433610,Espress-o-Ville,1,New Delhi,"11, Ground Floor, South Moti Bagh, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1672993,28.5876664,"Cafe, Continental, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,48 +18391320,Frosty Rollies,1,New Delhi,"93, Satya Niketan, Opposite Venkateshwar College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.17,28.59,"Desserts, Ice Cream",250,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,44 +18222586,Pipeline Cafe,1,New Delhi,"Shop 37, 2nd Floor, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1677935,28.5881169,"Cafe, North Indian, Chinese, Continental",650,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,355 +18303832,QRO Gourmeteriia BY DARK HOUSE KAFE,1,New Delhi,"9, Ground Floor, Benito Juarez Marg, Opposite Sri Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1674341,28.5879033,"Cafe, Continental, Italian, Chinese, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,349 +18349916,Superstar Caf,1,New Delhi,"288, Opposite Venkateshwara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.16886461,28.58839226,"Cafe, Continental, Italian",600,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,530 +18358675,TBH - The Big House Cafe,1,New Delhi,"37, 1st Floor, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1679732,28.5882237,"Cafe, Continental, North Indian, Chinese, Mexican",700,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,107 +312142,The Biryani Co.,1,New Delhi,"1/33, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1706691,28.5871376,"Hyderabadi, Biryani, North Indian",650,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,295 +307571,Wood Box Cafe,1,New Delhi,"Shop 288, Opposite Venkateswara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1688719,28.5886682,"Cafe, Fast Food, Italian, Chinese",850,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.1,Green,Very Good,1479 +311340,Young Wild Free Cafe,1,New Delhi,"13, 1st Floor, Opposite Venkateswara College, Satyaniketan, New Delhi",Satyaniketan,"Satyaniketan, New Delhi",77.1671645,28.5877879,"Cafe, Italian, Chinese, Continental",500,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,658 +7849,A-One Green Sweet Corner,1,New Delhi,"3, Mini Market, Opposite IIT Main Gate, SDA, New Delhi",SDA,"SDA, New Delhi",77.1996828,28.5512397,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +304950,Cake Symphony,1,New Delhi,"C-1/8, Safdarjung Development Area, SDA, New Delhi",SDA,"SDA, New Delhi",77.1968157,28.5465265,"Bakery, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,15 +304633,Charu Nanda's Home Baked Cakes,1,New Delhi,"C-2/33, SDA, New Delhi",SDA,"SDA, New Delhi",77.1964548,28.5462204,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +5848,Costa Coffee,1,New Delhi,"C-15, DDA, Commercial Complex, SDA, New Delhi",SDA,"SDA, New Delhi",77.1968785,28.5466246,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,53 +18133471,IndoCheen,1,New Delhi,"C-21, SDA Market, SDA, New Delhi",SDA,"SDA, New Delhi",77.1967259,28.5464283,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,49 +18312609,The Staircase Cafe by Doggy Style,1,New Delhi,"Shop C-15, Mezzanine Floor, SDA, New Delhi",SDA,"SDA, New Delhi",77.1967259,28.5463387,"Continental, Italian",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,100 +18336481,Twisted Tacos,1,New Delhi,"Ground Floor, C 7/1, SDA Market, SDA, New Delhi",SDA,"SDA, New Delhi",77.1969954,28.546723,Mexican,850,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,69 +18425760,Typsy Crow,1,New Delhi,"C 8, 2nd Floor, SDA, New Delhi",SDA,"SDA, New Delhi",77.1972261,28.5467864,"North Indian, Continental",1000,Indian Rupees(Rs.),No,No,No,No,3,2.9,Orange,Average,15 +18216936,Urban Dhaba,1,New Delhi,"C-6, Opposite IIT Main Gate, SDA, New Delhi",SDA,"SDA, New Delhi",77.1969505,28.5467635,"North Indian, Chinese, Mughlai",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,40 +528,Barista,1,New Delhi,"C-17, SDA Market, SDA, New Delhi",SDA,"SDA, New Delhi",77.1966218,28.5465078,Cafe,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,104 +18349937,Keventers,1,New Delhi,"C 14, Ground Floor, Community Center, SDA Market, SDA, New Delhi",SDA,"SDA, New Delhi",77.1968157,28.5465265,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,18 +782,Little Punjab,1,New Delhi,"C-6, Commercial Complex, SDA, New Delhi",SDA,"SDA, New Delhi",77.1969056,28.5468937,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,85 +312937,Miam,1,New Delhi,"C 2/33, SDA, New Delhi",SDA,"SDA, New Delhi",77.1968157,28.5465265,"Bakery, Desserts",800,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,47 +18375411,Maharaja Food Club,1,New Delhi,"Building 1E/2, Jia Sarai, Near IIT, SDA, New Delhi",SDA,"SDA, New Delhi",77.1957825,28.5465624,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18279458,Sugar Rush,1,New Delhi,"C-2/54, Development Area, SDA, New Delhi",SDA,"SDA, New Delhi",77.1996906,28.551193,"Bakery, Mithai",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18433987,Tippy Tippy Tap,1,New Delhi,"Street 3, Patel Garden, Sector 15, Dwarka","Sector 15, Dwarka","Sector 15, Dwarka, New Delhi",77.20319497,28.6707758,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +2228,Alaturka,1,New Delhi,"G-64, Ground Floor, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21908394,28.52912861,Turkish,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,202 +1643,Chicago Pizza,1,New Delhi,"G/21-A, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21942861,28.52857541,Pizza,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,271 +2910,Fast Trax,1,New Delhi,"Ground Floor, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21819479,28.528614,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,203 +7364,Khan Chacha,1,New Delhi,"G-3, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.2193637,28.5281463,Mughlai,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,504 +18429148,Pa Pa Ya,1,New Delhi,"Dome, Level 4, Select Citywalk, A-3, District Centre, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21869837,28.52845641,"Asian, Chinese, Thai, Japanese",2000,Indian Rupees(Rs.),No,No,No,No,4,4.7,Dark Green,Excellent,268 +506,Barista,1,New Delhi,"F-62, 1st Floor, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21923247,28.52843667,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,99 +311103,Bings Cafe,1,New Delhi,"2nd Floor, Select City Walk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21932769,28.52869471,"Korean, Beverages, Desserts",650,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.9,Yellow,Good,179 +310916,Fat Lulu's,1,New Delhi,"Unit 6, The Square, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21956339,28.52923878,"Pizza, Italian",1250,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,298 +306545,Harry's Bar + Cafe,1,New Delhi,"S-4, 2nd Floor, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21951075,28.52911683,"Mediterranean, American, Asian",1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,392 +3921,Joy Luck Moon,1,New Delhi,"S-10, 2nd Floor, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21960329,28.52849352,Chinese,1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,385 +311634,Keventers,1,New Delhi,"Ground Floor, High Street, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21866552,28.52845965,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,383 +8877,L'Opera,1,New Delhi,"G-47, Ground Floor, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21894782,28.52872505,"Bakery, Desserts, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,157 +311756,Pita Pit,1,New Delhi,"2nd Floor, My Square Food Court, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21956339,28.52923878,"Healthy Food, Salad",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,217 +311563,Saravana Bhavan,1,New Delhi,"Food Court, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21873961,28.52853329,South Indian,500,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,197 +9984,Starbucks,1,New Delhi,"Ground Floor, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21905142,28.52862637,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,725 +1372,The Coffee Bean & Tea Leaf,1,New Delhi,"1st Floor, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.2193637,28.5285945,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,417 +9467,The Coffee Bean & Tea Leaf,1,New Delhi,"2nd Floor, Food Court, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21935116,28.52866378,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,127 +311440,Habibi Express,1,New Delhi,"My Square Food Court, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21961837,28.52876718,"Lebanese, Arabian, Moroccan",900,Indian Rupees(Rs.),No,Yes,No,No,2,2.2,Red,Poor,122 +18424903,Andrea's Eatery,1,New Delhi,"Shop 48A-51, First Floor, District Centre, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21872788,28.52832061,"Italian, Mexican, Spanish, Thai, Vietnamese, Indonesian, American",2000,Indian Rupees(Rs.),Yes,No,No,No,4,4.3,Green,Very Good,130 +311749,Drool Waffles,1,New Delhi,"2nd Floor, My Square Food Court, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.2194535,28.52941,Desserts,500,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,228 +18268720,Elma's at Good Earth,1,New Delhi,"3rd Floor, Select Citywalk Mall, Inside Good Earth Store, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21925493,28.52860163,"Cafe, Continental, Italian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,61 +4271,H_agen-Dazs,1,New Delhi,"E-4W, Ground Floor, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.219309,28.529136,"Desserts, Ice Cream",700,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,649 +305833,Krispy Kreme,1,New Delhi,"1st Floor, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21951913,28.5292155,"Desserts, Beverages",350,Indian Rupees(Rs.),No,Yes,No,No,1,4,Green,Very Good,734 +307296,Movenpick,1,New Delhi,"2nd Floor, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21938971,28.52869412,"Ice Cream, Desserts",650,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,135 +2786,Punjab Grill,1,New Delhi,"2nd Floor, Food Court, Select Citywalk Mall, Saket, New Delhi","Select Citywalk Mall, Saket","Select Citywalk Mall, Saket, New Delhi",77.21932769,28.52869471,"North Indian, Mughlai",1950,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,1971 +302422,Aapka Bhojanalaya,1,New Delhi,"136/3, Main Road, Maujpur, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2730427,28.6894334,"North Indian, Fast Food, South Indian",200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,5 +302418,Aayana Foods,1,New Delhi,"115, Nehar Bazar, Maujpur, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.27560167,28.684835,"North Indian, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +302416,Aggarwal Sweet India,1,New Delhi,"Main Nathu Colony Chowk, 100 Feet Road, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.291919,28.689547,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18343904,Amchur,1,New Delhi,"1/6966, Babarpur Road, Shivaji Park, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2858644,28.6816566,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +302369,Anand Ji de Choley Bhatoore,1,New Delhi,"Opposite Green Field School, Naveen, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2833919,28.6778187,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,5 +302425,Annapoorna,1,New Delhi,"Loni Road, Near Red Light, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2919252,28.6890869,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,19 +302399,Big Bite,1,New Delhi,"Z 1, Naveen, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2849008,28.6771305,"North Indian, Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,22 +302396,Ceaser Fast Food Centre,1,New Delhi,"C-1, Naveen, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2858595,28.6765638,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,9 +6224,Chanana Ice Cream Parlour,1,New Delhi,"1539, Hanuman Road, Rohtas Nagar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2882128,28.6786503,Ice Cream,100,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +303906,Chaska,1,New Delhi,"C-37, Near Shanti Nursing Home, Naveen Shahdara, Panchsheel Garden, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.28182551,28.6780127,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +18291454,Chowranghee,1,New Delhi,"C-1, Main Market, Naveen Shahdara, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2857063,28.6764855,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +302433,Darbaar Chicken,1,New Delhi,"66, Main Road, Maujpur, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2764747,28.686874,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,14 +312810,Dilli Darbar,1,New Delhi,"C-448, Main 100 Feet Road, Chajjupur, Durgapuri, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2866681,28.6895052,"North Indian, Chinese, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,34 +310563,Domino's Pizza,1,New Delhi,"B-10, Ground Floor, Adjacent ICICI Bank, Jyoti Nagar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2917395,28.6917695,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,31 +6228,Empire,1,New Delhi,"1551, Bhagat Singh Market, Babarpur Road, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2886473,28.6776481,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +312671,Giani,1,New Delhi,"C 2/165, Behind Government School, Yamuna Vihar, Near Shahdara, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2768369,28.7004755,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +18332676,Goldy Da Dhaba,1,New Delhi,"1/9151 West Rohtash Nagar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.288283,28.677394,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18146396,Gufa Restaurant,1,New Delhi,"Shop 250, Main Babarpur Chowk, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2784798,28.6890835,"Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,14 +18126077,Gulshan,1,New Delhi,"Near Taxi Stand, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2904437,28.67574,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,25 +308906,Hira Sweets,1,New Delhi,"1157/1, Main Road, Rohtash Nagar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2889304,28.6775448,Mithai,200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,19 +302358,Hot Shop,1,New Delhi,"E1, Naveen Shahdara, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.286891,28.6760803,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,27 +302424,Janta Eating House,1,New Delhi,"Loni Road, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.292231,28.6822218,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,40 +302359,Madras Cafe,1,New Delhi,"V 23, Main Hanuman Road, Naveen Shahdara, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2853657,28.67692,"South Indian, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,28 +6206,Mitra Da Dhaba & Caterers,1,New Delhi,"Babarpur Road, Opposite Hera Namkeen, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2887963,28.6777524,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,14 +311371,Mr. Momo,1,New Delhi,"Y-18, Naveen Shahdara, Near Madonna Salon, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2845496,28.6773618,"Fast Food, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,18 +18128853,New Anand Sagar,1,New Delhi,"C-1/1A, Yamuna Vihar, Wazirabad Road, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.27249913,28.70246031,"North Indian, Chinese, Street Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,5 +307976,New Tayal's Restaurant,1,New Delhi,"1/7184, Shivaji Park, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2864389,28.6823632,"Chinese, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +6252,Paramjeet Fish & Chicken Point,1,New Delhi,"Near Bhero Mandir, Loni Road, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2924322,28.6762995,North Indian,550,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,15 +18128862,Pizza Diet,1,New Delhi,"C-2/166, Main Jain Mandir Road, Yamuna Vihar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2768961,28.7004582,"Pizza, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,6 +307520,Pizza Diet,1,New Delhi,"C-3, North Chhajjupur, 100 Ft. Road, Near V Mart, Durgapuri Chowk, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2877298,28.6894564,"Pizza, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,29 +310689,Pizzalicious,1,New Delhi,"27/53, Jwala Nagar, Near St. John's Academy, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.29647975,28.66963974,"Pizza, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,9 +308522,Prem Punjab,1,New Delhi,"Near Aggarwal Clinic, Main Babarpur Road, Rohtash Nagar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2882328,28.6785579,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +310807,Priya Panchvati,1,New Delhi,"C-11/8, Yamuna Vihar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2770165,28.6982532,"South Indian, Fast Food, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,10 +302442,Ram Singh Chaat Bhandaar,1,New Delhi,"Loni Road, Jyoti Nagar East, Opposite Bank of Baroda, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2918926,28.6903077,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,13 +307986,Ramchander Bhalushahi Wale,1,New Delhi,"Shop 231, Chhota Bazaar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.29218956,28.66951648,Mithai,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,11 +6219,Shahi Food Corner,1,New Delhi,"24, Double Storey, Kabul Nagar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2903872,28.6762795,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,9 +312773,Titu Chaat Corner,1,New Delhi,"Durgapuri Chowk, Loni Road, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2917395,28.6899779,"Street Food, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +308513,Vinayak Restaurant,1,New Delhi,"1450, Usha Apartment, East Jyoti Nagar, Loni Road, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2919871,28.6922659,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,24 +18378019,Vrinda's Food,1,New Delhi,"725, Main Babarpur, Rohtash Nagar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.29011454,28.67656666,"North Indian, Chinese, South Indian, Bakery",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,6 +6218,Walia's Dawat Mahal,1,New Delhi,"1/9280, West Rohtash Nagar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.286578,28.6805966,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,22 +18428201,Crazy Delights,1,New Delhi,"Street 5, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2933868,28.689352,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,14 +18294229,Aapki Rasoi,1,New Delhi,"Main 60 Ft. Road, Vishvas Nagar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.28867251,28.66235639,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18350567,ADM Foodi,1,New Delhi,"B-41, 3-1/2, Pusta, Kartar Nagar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",0,0,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18423878,Aggarwal Bikaner Sweets Corner,1,New Delhi,"255, Yamuna Vihar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2754038,28.7006707,"Mithai, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +308908,Aggarwal Petha Store and Bakers,1,New Delhi,"1/6695, East Rohtash Nagar, Lane 4, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2882668,28.6784651,"Bakery, Mithai",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +302436,Aggarwal Sweet Fresh,1,New Delhi,"Loni Road, Near Red Light, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2919639,28.6893273,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18423867,Aggarwal Sweet India,1,New Delhi,"A1/1, West Jyoti Nagar, Bhairon Baba Market, Durgapuri Chowk, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.291919,28.6896366,"Mithai, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18423872,Aggarwal Sweets,1,New Delhi,"A16, West Jyotmii Nagar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.28979267,28.68933208,Mithai,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18435811,Al-Taj Shamim Chicken Point,1,New Delhi,"A -1/5, Main Loni Road, Jyoti Colony, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2919802,28.6874311,Mughlai,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18332478,Apni Rasoi,1,New Delhi,"Nand Plaza, Jammu Mohalla, Main Road, Maujpur, Near Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2744128,28.6899437,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18423865,Bikaner Sweets & Bakers,1,New Delhi,"Shop A1/1, West Jyoti Nagar, Durgapuri Chowk, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2919382,28.6895977,"Mithai, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18377919,Bikaner Sweets & Restaurant,1,New Delhi,"1/7228 A, Gorakh Park, Main Babarpur Road, Near Hanuman Mandir, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2849433,28.6825301,"North Indian, Chinese, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +302411,Bikaner Sweets,1,New Delhi,"Brahmpuri Road, Ghonda Chowk, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2702013,28.6901576,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18423869,Bitoo Chat Corner,1,New Delhi,"A1/1, GSK Complex, Bhairon Baba Market, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2917756,28.689657,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18128874,Chaska,1,New Delhi,"Durgapuri Chowk, 100 Feet Road, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",0,0,"Chinese, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18224540,Chilli Tadka Food Villa,1,New Delhi,"6/169, Farsh Bazar, Near Anaj Mandi Chowk, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.29282122,28.66869015,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +6230,China Town,1,New Delhi,"West Gorakh Park, Near Hanuman Mandir, Main Babarpur Road, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.283918,28.6834297,"South Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18377910,Chinese Delight,1,New Delhi,"C-Block, Main Road, Yamuna Vihar, Opposite Universal Brain Academy, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2720913,28.6999209,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18128876,D Food,1,New Delhi,"C-6/230, Yamuna Vihar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.279261,28.7003478,"Chinese, Fast Food, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +307521,Da Bawarchi,1,New Delhi,"1/7228, East Gorakh Park, Hanuman Mandir, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2850964,28.6822697,"North Indian, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18284473,Delhi Cafe Restaurant,1,New Delhi,"Street 12, Near Yadav Medical Store, Wazirabad, Ghaziabad",Shahdara,"Shahdara, New Delhi",77.2450055,28.7085951,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18481404,Dosa Plaza,1,New Delhi,"B-165, 1st Floor, Main Market Bhajanpura, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",0,0,"South Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18435311,Ex- Taj Foods,1,New Delhi,"Main Road, Maujpur, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2718928,28.677039,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18291465,Fantasy Pastry Shop,1,New Delhi,"460, Durga Puri Chowk, Loni Road, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.291919,28.6908012,"Bakery, Desserts",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18423140,Gareeb Dhaba,1,New Delhi,"Bhairon Baba Market, Durgapuri Chowk, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2920013,28.6876451,Mughlai,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18423122,Hira Lal Sweets,1,New Delhi,"C1/167, Yamuna Vihar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2732231,28.7009935,Mithai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18438426,Hot & Chilly Point,1,New Delhi,"1/7219, Shivaji Parak Main Babarpur Road, Near Hanuman Mandir, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2860319,28.6820472,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18435320,Hot Chinese & Fast Food,1,New Delhi,"1/7274, Gorakh Park, Main Babarpur Road, Near Hanuman Mandir, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2839919,28.6832105,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +305626,Jainco Sweets,1,New Delhi,"3737, 60 Feet Road, Vishwas Nagar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",0,0,Mithai,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18423859,Jony Sweets,1,New Delhi,"1448/50, 100 Feet Road, Durgapur, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2945223,28.6894359,"Bakery, Desserts",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18423857,Laxmi Dairy,1,New Delhi,"1449/55, Lane 6, 100 Fota Road, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2939837,28.6893847,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18423876,Madras Cafe,1,New Delhi,"Shop C-1/177, Yamuna Vihar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2736497,28.7008442,South Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +302427,Mehak Restaurant,1,New Delhi,"136/3 Main Road, Maujpur, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.272707,28.6895127,"North Indian, South Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18432109,Mr. Gold,1,New Delhi,"501, Main Road, Bara Bazar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",0,0,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18438433,New Madras Cafe,1,New Delhi,"C-3/161-162, Yamuna Vihar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2795276,28.7003224,"Street Food, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18128872,Pizza Hub,1,New Delhi,"Shop 14, Block C-5, Yamuna Vihar, Near Santan Rath Wala Mandir, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2815952,28.7000322,"Fast Food, Pizza",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18378042,Pizza Hub,1,New Delhi,"D-3/A, North Ghonda, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2700134,28.6915855,Pizza,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18423863,Prakash Sweets,1,New Delhi,"Durgapuri Chowk, 100 Feet Road, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2923084,28.689507,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18378026,Punjabi Chaska & Rasoi,1,New Delhi,"C-7, Main Road, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2769736,28.7005129,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18378022,Sagar,1,New Delhi,"C 7/254, Yamuna Vihar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2781604,28.7003054,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18288644,Sardar A Pure Meat Shop,1,New Delhi,"C-1, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2858492,28.6766696,"Raw Meats, Fast Food, North Indian",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18423870,South Cafe,1,New Delhi,"Shop 4/460, Near Durgapuri Chowk, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2919462,28.69022,"Fast Food, South Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18435823,Sultan Chicken Corner,1,New Delhi,"A -1, Loni Road, Jyoti Colony, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2920323,28.6876577,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18474418,The AB's Kitchen,1,New Delhi,"Shop A 1, GTB Enclave, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",0,0,"Chinese, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18423861,Wah Ji Wah,1,New Delhi,"366, Main 100 Fret Road, Durgapuri Extension, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2948813,28.68947,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18435803,Yum Yum,1,New Delhi,"Z-21, Naveen Shahdra, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2846784,28.6774285,"Pizza, Burger, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18377912,Zaika-e-Dilli,1,New Delhi,"C-9/17, Yamuna Vihar, Shahdara, New Delhi",Shahdara,"Shahdara, New Delhi",77.2722496,28.7002266,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +312268,Anandini - The Tea Room,1,New Delhi,"10 A, DDA, Near UCO Bank, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2159503,28.5487987,Tea,500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,18 +773,Slice of Italy,1,New Delhi,"118, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2159503,28.5495159,"Italian, Pizza, Bakery",700,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.6,Orange,Average,274 +305147,The Coffee Garage,1,New Delhi,"118 B, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2155461,28.5495222,Cafe,800,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,112 +18337924,The Fashion Street Caf,1,New Delhi,"1st Floor, 43, The Fashion Street, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2137046,28.549033,"Cafe, North Indian, Chinese, South Indian",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,18 +18481305,Urban Village,1,New Delhi,"253/2, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.21100144,28.54853276,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,13 +18180080,Greenr Cafe,1,New Delhi,"416, Gora Street, Behind Dada Jungi House, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2132555,28.548542,Cafe,1100,Indian Rupees(Rs.),No,Yes,No,No,3,4.6,Dark Green,Excellent,112 +18306545,Boom Food,1,New Delhi,"193, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2155012,28.5466046,"Asian, North Indian",1100,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,56 +303723,Cafe Red,1,New Delhi,"5-G, Dada Jungi House, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.212447,28.5491821,Cafe,1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,260 +18222560,Hyderabad House,1,New Delhi,"253, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2114589,28.548819,"Hyderabadi, North Indian",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,67 +311483,Le ROFL,1,New Delhi,"Shop 113, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2149622,28.5492425,"Cafe, Continental, Chinese, Italian",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,177 +305640,Ma Cuisine,1,New Delhi,"Plot 38-A, DDA Flats, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2166689,28.5477915,"North Indian, Continental, Salad",400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,43 +18282007,Mumbai Matinee,1,New Delhi,"4-A, 2nd Floor, Opposite Tohfe Wala Gumbad, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2121775,28.5492461,"North Indian, Italian, Continental",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,84 +301793,Old Town Cafe,1,New Delhi,"111, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2154563,28.5490654,Cafe,800,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,119 +18350234,Spanish Delights,1,New Delhi,"118, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2154113,28.5496438,Ice Cream,200,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,23 +300969,Sweet Nothings By Avanti Mathur,1,New Delhi,"Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2151419,28.5497078,"Desserts, Bakery",600,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,40 +18161610,Threads,1,New Delhi,"253, Ground Floor, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2113691,28.5486312,Cafe,700,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,59 +310502,Bats On Delivery,1,New Delhi,"252-1/B, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2155012,28.5474113,"North Indian, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,82 +18244555,Asia Central,1,New Delhi,"Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2136148,28.5490245,"Asian, Chinese, Thai, Vietnamese",1000,Indian Rupees(Rs.),No,Yes,No,No,3,4.2,Green,Very Good,264 +18466435,Biryani By Kilo,1,New Delhi,"Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2119979,28.5484222,"Biryani, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,24 +18163906,Cafe 5H By The Kitchen Connect,1,New Delhi,"5-H, 1st Floor, Jungi House, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2127165,28.5492078,"Cafe, Continental, Italian",700,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,88 +18421026,Hearken Caf,1,New Delhi,"5th Floor, 119- Sishan House, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2154563,28.5492447,Cafe,900,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,55 +18291469,Puppychino,1,New Delhi,"3rd Floor, 119, Shishan Bhawan, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2155012,28.5492042,"Cafe, Continental, Italian",1000,Indian Rupees(Rs.),No,Yes,No,No,3,4.4,Green,Very Good,165 +18322609,Remember Me Caf,1,New Delhi,"JP House, 1st Floor, 118, Near Asain Games Village, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2155653,28.5498307,"Cafe, Continental, Italian, Mexican",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,134 +307391,Sugarama Patisserie,1,New Delhi,"87, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2148724,28.5493235,"Bakery, Desserts",500,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,292 +18400746,The Last Mughal (TLM),1,New Delhi,"Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2136148,28.5491141,"North Indian, Mughlai",750,Indian Rupees(Rs.),No,Yes,No,No,2,4.4,Green,Very Good,52 +9417,The Mad Teapot/The Wishing Chair,1,New Delhi,"86-A, Shahpur Jat, New Delhi",Shahpur Jat,"Shahpur Jat, New Delhi",77.2143783,28.5493213,"Cafe, Bakery, Italian",1000,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,251 +18303719,Fusion Dosa Cafe,1,New Delhi,"Main Market, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.282366,28.6329647,"South Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,13 +6107,Goyal Eating Point,1,New Delhi,"R 4, Main Market, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2823353,28.6328128,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +313139,Haveliram,1,New Delhi,"WZ 3535/1, Raja Park, Mahindra Park, Rani Bagh, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.280107,28.6297763,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +309044,Meet You There,1,New Delhi,"House 54-A, H Block, Main Market, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2804814,28.6300045,"Chinese, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,94 +18157406,Shree Bhog Pure Veg Restaurant,1,New Delhi,"S-3A, School Block, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2789686,28.6275866,"North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +311196,The Crust,1,New Delhi,"WA-116/A, Main Mother Dairy Road, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2800303,28.6263724,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,16 +304965,Vijay Eating Point,1,New Delhi,"S-562, School Block, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2783209,28.6279228,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18438438,Aggarwal Bikaner Sweets,1,New Delhi,"Main Mother Dairy Road, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2798705,28.6270083,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18418252,Bikaner Sweets & Restaurant,1,New Delhi,"R-3, Rita Block, Main Market, Shakarpur, New Delhi Shakarpur",Shakarpur,"Shakarpur, New Delhi",77.282282,28.6328078,"Desserts, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18163895,Cafe Coffee Day,1,New Delhi,"District Centre, B2, NDM 1, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2813787,28.6329113,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18463999,Cake'ry,1,New Delhi,"B-125 Main Market, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",0,0,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18438457,Come 'n' Eat,1,New Delhi,"Main Market, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2811812,28.6303968,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +300788,Darbar Chicken Corner,1,New Delhi,"Near Baba Banquet Hall, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2781757,28.6284726,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18438448,Food Care,1,New Delhi,"WA-86, Main Road, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2791263,28.6269121,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441706,Himalaya Momos,1,New Delhi,"A-1, Main Market, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2819954,28.6322406,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +9855,Hirdesh Eating Point,1,New Delhi,"Main Market, Near Eating Point, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2771666,28.6296634,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18380146,Joshi Eating House,1,New Delhi,"Main Market, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2806842,28.6300457,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18409189,Just Veg,1,New Delhi,"A 422, Gali 1, Ganesh Nagar 2, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2813547,28.6329214,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18377880,Natural Pizza Hub & Food Court,1,New Delhi,"R-70, Main Market, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2824532,28.632852,Pizza,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18377888,Pawar's Food Court Inc.,1,New Delhi,"R-18, Main Market, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2828494,28.6334265,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18438465,Rajesh Eating Corner,1,New Delhi,"Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2788374,28.6282443,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18291209,Raju Ice Cream Parlor,1,New Delhi,"Near Laxmi Nagar Metro Station, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2774778,28.6307758,"Pizza, Ice Cream",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441710,Sangam Ratna,1,New Delhi,"H-52, Main Market, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2807813,28.6302107,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18419917,Tandoor & Curry Restaurant,1,New Delhi,"S-547, School Block, Shakarpur, New Delhi Shakarpur",Shakarpur,"Shakarpur, New Delhi",77.277587,28.6288096,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18418243,Uttarakhand Eating Point,1,New Delhi,"A-4, Sanjay Park, Main Market, Shakarpur, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2816189,28.6316688,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441700,Uttranchal Eating Point,1,New Delhi,"S-193, School Block, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.280183,28.6263812,"North Indian, Chinese, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +311189,Yummy Rasoi,1,New Delhi,"School Block, Shakarpur, New Delhi",Shakarpur,"Shakarpur, New Delhi",77.2773649,28.6268353,"North Indian, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +2055,Aggarwal Restaurant,1,New Delhi,"13, BF Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1601549,28.710818,"South Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +2383,Ane China,1,New Delhi,"AL Market, Shopping Centre, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1616827,28.7034431,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,11 +304092,Arora's Veg. Corner,1,New Delhi,"1, A Block Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1695908,28.7061721,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,18 +302471,Ashu Thali Wala,1,New Delhi,"BK 1/3, Block BK 1, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1685573,28.7096099,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,11 +6555,Bangla Sweets & Pastry Shop,1,New Delhi,"38 & 39, AL Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1618624,28.7035499,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,8 +4716,Baskin Robbins,1,New Delhi,"BN Block, Shopping Complex, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1626712,28.706493,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,21 +311364,Believe in Taste,1,New Delhi,"G-19, BB Block, Vardhaman Complex, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1564702,28.7152991,"North Indian, Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +313494,Bharat Sweet House,1,New Delhi,"AB-9, Opposite MTNL Office, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1685706,28.7067731,Mithai,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,8 +8628,Bikaner Kesarvala,1,New Delhi,"3-4, BN Block Market, LSC, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.162961,28.7065551,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,24 +18312595,Cafe Coffee Day,1,New Delhi,"Inside MAX Hospital, FC-50, C & D Block, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",0,0,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,5 +1501,Chawla's Chic Inn,1,New Delhi,"BT Market, Near DAV School, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1587619,28.704282,"North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,71 +18383610,Chhappan Bhog,1,New Delhi,"Shop 2, AD Market, Near MTNL Office, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1683596,28.7066682,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,9 +2053,Chinese Hut Fast Food,1,New Delhi,"AL Market, Shopping Center, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1618118,28.7032861,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,13 +311358,Domino's Pizza,1,New Delhi,"3, Ground Floor & 1st Floor, Plot 5, BN Block, Local Shopping Centre, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1626712,28.7064034,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,28 +301487,Frontier,1,New Delhi,"AL-142, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1619683,28.70362,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +18288186,Giani,1,New Delhi,"Shop 4, BN Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1624915,28.7065653,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,13 +8670,Hot Pot Snacks,1,New Delhi,"66, 1st Floor, AL Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1619523,28.7035586,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,53 +18376510,Keventers,1,New Delhi,"G2, Plot 4, Aggarwal Tower, BN Block, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1625853,28.7064599,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,4 +302452,Kishan Dhaba,1,New Delhi,"Near Hanuman Mandir, AL Market, New Dekhi, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1620793,28.7030945,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +2049,Madras Dosa & Chinese,1,New Delhi,"11, Near AL Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1613232,28.7037668,"South Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,91 +304090,Mehfil Tawa Tandoor,1,New Delhi,"16, CC Block DDA Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1586721,28.7195845,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +6561,Mitthu Tikki Wala,1,New Delhi,"BN-13, Local Shopping Centre, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1622851,28.7063745,"North Indian, Street Food, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,21 +6562,Mitthu Tikki Wala,1,New Delhi,"SE 42, Near BW Block, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1559037,28.7057298,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,46 +8672,Pandit Ji Ka Dhaba,1,New Delhi,"Main Market, Near Hanuman Mandir, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1622219,28.7031367,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18380175,Punjabi Angeethi,1,New Delhi,"AL- 85, AL Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1616827,28.7033536,"North Indian, South Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,28 +301517,Ram Chinese Food,1,New Delhi,"BB-80/A, West Shalimar Bagh, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1569645,28.7152123,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,23 +312858,Sardar Ji Punjabi Jayeka,1,New Delhi,"U&V Block, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",0,0,"North Indian, Mughlai",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18222576,SFC,1,New Delhi,"BR Block, KL Bagga Marg, Near Jhule Lal Mandir, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1615029,28.7085298,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +18455522,SGF - Spice Grill Flame,1,New Delhi,"BK-90, Near Jhulelal Mandir, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.16011,28.710793,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,4 +311168,Shalimar Vyanjan,1,New Delhi,"Shop 2, Anshul Plaza, AL Block, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.161503,28.7054506,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,9 +18357957,Shri Rudram,1,New Delhi,"AA-13, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1673875,28.7082414,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,5 +306751,Smile Bakers,1,New Delhi,"Shop 9, BD Block, Som Bazar Road, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.153498,28.717991,"Bakery, Desserts, Chinese, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +18400759,Spice Sea,1,New Delhi,"C 19-20-21, CC Block Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1586271,28.7194459,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,13 +8676,Street 5,1,New Delhi,"BQ Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1551103,28.7072568,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,10 +18442666,Subs n Shakes,1,New Delhi,"6, BN Block Market, Vardhman Prime Plaza, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1624915,28.7063862,"Fast Food, Beverages",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,4 +311115,Subway,1,New Delhi,"AG-44, Near A.L. Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.162132,28.7025908,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,46 +303128,Twenty Four Seven,1,New Delhi,"AB-13, Upper Ground Floor, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1684675,28.7066464,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,21 +18352278,Wah G Wah,1,New Delhi,"A J 24, Central Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1636597,28.7068565,"North Indian, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,7 +2054,Aman-Deep Pure Veg,1,New Delhi,"Shop G-3, BN Block Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1624465,28.7063371,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,79 +5271,Kwality Pastry Parlour,1,New Delhi,"3, AL Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1618624,28.7035499,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,51 +9954,McDonald's,1,New Delhi,"2, B-Block Community Centre, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1580581,28.713419,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,39 +313171,Nagpal's,1,New Delhi,"G 1, BB Block, Vardhman Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.156722,28.715237,"Street Food, North Indian",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,31 +2047,Peshawari's Deluxe,1,New Delhi,"AJ-64/A, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1624465,28.7063371,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,195 +301015,Slic Chic,1,New Delhi,"Shop 3, BS Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.157369,28.7058943,"Chinese, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,178 +300780,Standard Ice Cream,1,New Delhi,"BL Block, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1603347,28.7109248,"Desserts, Ice Cream",100,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,31 +18361764,Aunty Chings Fast Food,1,New Delhi,"Shop 11, AL Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1619523,28.7036481,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18446401,Baba Chaap Wala,1,New Delhi,"Shop 18, BP Market, Club Road, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1549724,28.7096778,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18312578,Cafe Coffee Day,1,New Delhi,"Ground Floor, Fortis Hospital, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1698154,28.7090143,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18153555,Chick N Grills,1,New Delhi,"AE-6, Main Road, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1668006,28.7084737,"Mughlai, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18454520,Choc-oholic,1,New Delhi,"Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",0,0,Desserts,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18416877,Da Pizza Palace,1,New Delhi,"A1/11, LSC Market, Near SBI Bank, Main Road, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.16699947,28.72818878,Pizza,500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,1 +18361770,Dosa Junction,1,New Delhi,"SE-20, Singal Pur, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.15665,28.7050194,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18214206,Ganga Food Factory,1,New Delhi,"B-70X, DDA Flat, Jahangir Puri, Near Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",0,0,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18426782,Hot Wok,1,New Delhi,"Gate 1, BC Block, Near Fortis Hospital, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.165004,28.7147586,"Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18352209,Ichak Dana,1,New Delhi,"AP 85, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",0,0,"North Indian, Awadhi",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18441688,Madras Dosa & Chinese,1,New Delhi,"Shop 6, BN Block Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1626712,28.7066721,"South Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18438429,Mashoor Gulati,1,New Delhi,"AJ-64, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1625814,28.7062157,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +18014115,Nidhi's Cake Lounge,1,New Delhi,"2nd Floor, BH-412, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1590765,28.7163553,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18489535,Night Diner,1,New Delhi,"Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",0,0,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18446398,Nirula's Ice Cream,1,New Delhi,"Ground Floor, House 10, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",0,0,"Ice Cream, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18445788,Niti Shake & Ice Cream Hub,1,New Delhi,"G-1, Vardhman Market, CSC, BB Block, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1566379,28.7154009,"Desserts, Beverages",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18361757,Raja Chinese Foods & Snacks,1,New Delhi,"Shop 17, BP Market, Club Road, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1549886,28.7096363,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18273597,Royal Chicken Corner,1,New Delhi,"B-4/15A, Main Road, Keshav Puram, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1605144,28.6896301,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +301519,Shalimar Food,1,New Delhi,"24, CC Block, DDA Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1585449,28.7196342,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18445764,Shalimar Vyanjan,1,New Delhi,"AJ-64/A, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1628082,28.7062081,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18446388,The Urban Canteen,1,New Delhi,"Shop 13, BP Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.1551135,28.7094671,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +301507,Ever Bake,1,New Delhi,"BN-2, Central Market, Shalimar Bagh, New Delhi",Shalimar Bagh,"Shalimar Bagh, New Delhi",77.16241,28.7064285,"Bakery, Chinese, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,4,Green,Very Good,371 +18261157,Grappa - Shangri-La's - Eros Hotel,1,New Delhi,"Shangri-La's Eros Hotel, 19, Ashoka Road, Janpath, New Delhi","Shangri La's - Eros hotel, Janpath","Shangri La's - Eros hotel, Janpath, New Delhi",77.2178366,28.620766,"Pizza, Salad, Finger Food",3500,Indian Rupees(Rs.),Yes,No,No,No,4,3.4,Orange,Average,27 +18277024,Shang Palace - Shangri-La's Eros Hotel,1,New Delhi,"Shangri-La's Eros Hotel, 19, Ashoka Road, Janpath, New Delhi","Shangri La's - Eros hotel, Janpath","Shangri La's - Eros hotel, Janpath, New Delhi",77.2177468,28.6206678,Chinese,5000,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,65 +18261160,Sorrento - Shangri-La's - Eros Hotel,1,New Delhi,"Shangri-La's Eros Hotel, 19, Ashoka Road, Janpath, New Delhi","Shangri La's - Eros hotel, Janpath","Shangri La's - Eros hotel, Janpath, New Delhi",77.2177468,28.6207574,"Seafood, Italian",5000,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,66 +18219539,Mister Chai - Shangri-La's - Eros Hotel,1,New Delhi,"Shangri-La's Eros Hotel, 19, Ashoka Road, Connaught Place, New Delhi","Shangri La's - Eros hotel, Janpath","Shangri La's - Eros hotel, Janpath, New Delhi",77.2178366,28.620766,"Tea, Cafe",2000,Indian Rupees(Rs.),Yes,No,No,No,4,4.1,Green,Very Good,68 +311369,Tamra - Shangri-La's - Eros Hotel,1,New Delhi,"Shangri-La's Eros Hotel, 19, Ashoka Road, Janpath, New Delhi","Shangri La's - Eros hotel, Janpath","Shangri La's - Eros hotel, Janpath, New Delhi",77.2179096,28.6206188,"North Indian, Continental, European, Chinese, Thai",3800,Indian Rupees(Rs.),Yes,No,No,No,4,4.3,Green,Very Good,400 +308769,Cafe Coffee Day,1,New Delhi,"1, DDA Market, Satyaniketan, New Delhi",Shanti Niketan Marg,"Shanti Niketan Marg, New Delhi",77.1686023,28.5770825,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,29 +220,Domino's Pizza,1,New Delhi,"6-7, Commercial Shopping Complex, Shanti Niketan Marg, New Delhi",Shanti Niketan Marg,"Shanti Niketan Marg, New Delhi",77.1684077,28.5771317,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,85 +301675,Lush,1,New Delhi,"9/1700, Main Road, Kailash Nagar, Gandhi Nagar, Shastri Park, New Delhi",Shastri Park,"Shastri Park, New Delhi",77.2667541,28.6597548,"Afghani, North Indian, Pakistani, Arabian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18144466,Shivas Cafe,1,New Delhi,"10, Opposite College of Vocational Studies, DDA Market, Phase 2, Sheikh Sarai, New Delhi",Sheikh Sarai,"Sheikh Sarai, New Delhi",77.181974,28.5222793,Cafe,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +2739,Dakshin - Sheraton New Delhi Hotel,1,New Delhi,"Sheraton New Delhi Hotel, District Centre, Saket, New Delhi","Sheraton New Delhi Hotel, Saket","Sheraton New Delhi Hotel, Saket, New Delhi",77.2159186,28.52678296,South Indian,4000,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,315 +18133508,Delhi Pavilion - Sheraton New Delhi Hotel,1,New Delhi,"Sheraton New Delhi Hotel, District Centre, Saket, New Delhi","Sheraton New Delhi Hotel, Saket","Sheraton New Delhi Hotel, Saket, New Delhi",77.2159186,28.52678296,"North Indian, Continental, Asian",3000,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,160 +2741,Pan Asian - Sheraton New Delhi Hotel,1,New Delhi,"Sheraton New Delhi Hotel, District Centre, Saket, New Delhi","Sheraton New Delhi Hotel, Saket","Sheraton New Delhi Hotel, Saket, New Delhi",77.2153849,28.527002,"Chinese, Thai, Japanese",3000,Indian Rupees(Rs.),Yes,No,No,No,4,4.2,Green,Very Good,327 +308386,Domino's Pizza,1,New Delhi,"G 24, 1st Floor, South Extension 1, New Delhi",South Extension 1,"South Extension 1, New Delhi",77.2204886,28.5694195,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,58 +3170,Kitchen of Awadh,1,New Delhi,"South Extension 1, New Delhi",South Extension 1,"South Extension 1, New Delhi",77.2203517,28.5691173,North Indian,800,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,64 +7760,McDonald's,1,New Delhi,"G-8, Near Midland Book Shop Main Market, South Extension 1, New Delhi",South Extension 1,"South Extension 1, New Delhi",77.2197229,28.5695952,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,73 +18425186,ODT,1,New Delhi,"G-24, 1st Floor, South Extension 1, New Delhi",South Extension 1,"South Extension 1, New Delhi",77.2205016,28.5691333,"Continental, North Indian, Italian",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,12 +311272,Rainbows,1,New Delhi,"H81/G1, South Extension 1, New Delhi",South Extension 1,"South Extension 1, New Delhi",77.2210703,28.5699028,"Bakery, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,24 +310891,Subway,1,New Delhi,"G-24, Ground Floor, South Extension 1, New Delhi",South Extension 1,"South Extension 1, New Delhi",77.2208907,28.5694375,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,167 +9095,Bombay Bhelpuri,1,New Delhi,"G-7, Near Midland Book Shop, South Extension 1, New Delhi",South Extension 1,"South Extension 1, New Delhi",77.2197229,28.5695952,"Street Food, Beverages",150,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,357 +305763,The Owl's Kitchen,1,New Delhi,"South Extension 1, New Delhi",South Extension 1,"South Extension 1, New Delhi",77.221205,28.5723805,"North Indian, Italian, Fast Food",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,174 +18175302,7 Colours Xpress Kitchen,1,New Delhi,"941/8, Nehru Road, Arjun Nagar, Kotla Mubarakpur, South Extension 1, New Delhi",South Extension 1,"South Extension 1, New Delhi",77.2249885,28.5683377,"Chinese, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18337762,Royal Cakes,1,New Delhi,"Near Seva Nagar Sabji Mandi, South Extension 1, New Delhi",South Extension 1,"South Extension 1, New Delhi",77.224753,28.5759899,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18312639,Street Cafe,1,New Delhi,"D 41, South Extension 1, New Delhi",South Extension 1,"South Extension 1, New Delhi",77.2208008,28.5732831,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18337895,Street Cafe,1,New Delhi,"D 49, South Extension 1, New Delhi",South Extension 1,"South Extension 1, New Delhi",77.2205516,28.5733106,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +307418,Dare To Deliver,1,New Delhi,"South Extension 1, New Delhi",South Extension 1,"South Extension 1, New Delhi",77.2231362,28.5712648,"Chinese, Fast Food, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,2.3,Red,Poor,59 +3686,Aggarwal Sweet and Restaurant,1,New Delhi,"273, G-2, Lila Ram Market, Masjid Moth, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.22013604,28.56371164,"North Indian, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,18 +18449626,Burger Lust,1,New Delhi,"Masjid Moth, Lila Ram Market, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.220457,28.56350464,Fast Food,100,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,13 +7761,Cafe Coffee Day,1,New Delhi,"16, 1st Floor, Main Market, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2195433,28.568144,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,31 +9842,Cakes & Bakes,1,New Delhi,"453, Leela Ram Market, Masjit Moth, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.21960362,28.56415599,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,11 +18254523,Chic Fillet,1,New Delhi,"C-1, Near Main Market, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2211739,28.5676697,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +312378,Chinese Express,1,New Delhi,"Shop 436, Lila Ram Market, Near Masjid Moth, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.21890088,28.56435417,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,11 +18358171,Costa Coffee,1,New Delhi,"E-23, 1st Floor, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2208202,28.5676806,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,6 +307474,Domino's Pizza,1,New Delhi,"E-18, 1st Floor, Main Market, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2198813,28.5681089,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,63 +9083,Gupta Fast Food,1,New Delhi,"446, Leela Ram Market, Masjid Moth, NDSE II, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.21914127,28.5642885,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,29 +310705,Hangchuaa's Chinese Food Corner,1,New Delhi,"435, Leela Ram Market, Masjid Moth, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.21891731,28.56432472,Chinese,600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,20 +310701,Kathi's,1,New Delhi,"E-6, Main Market, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2213698,28.567969,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +306934,Kitchen & Chicken,1,New Delhi,"E-5, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2211601,28.5679395,Chinese,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,50 +305651,Meal A Deal,1,New Delhi,"B-453, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.21951243,28.56420752,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,13 +9094,Mohit Restaurant,1,New Delhi,"Leela Ram Market, NDMC, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.219267,28.56414863,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,17 +93,Princess Garden,1,New Delhi,"E-32, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2192289,28.5684277,"Chinese, North Indian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,2.7,Orange,Average,31 +9099,Republic of Chicken,1,New Delhi,"Leela Ram Masjid Moth, NDMC, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.21940279,28.56419015,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,13 +18312618,Sai Juice Point,1,New Delhi,"E-5, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2212868,28.5679028,Beverages,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,6 +18146398,The Pirates Of China Town,1,New Delhi,"239 Masjid Moth, Near Durga Mandir, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.22041389,28.5617,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,14 +3298,Voda Bar,1,New Delhi,"E-32, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2193667,28.5689576,"Chinese, North Indian",2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,28 +305684,All Things Yummy,1,New Delhi,"2nd Floor, C Block, South Extension 2, New Delhi Delhi",South Extension 2,"South Extension 2, New Delhi",77.219739,28.566755,"Bakery, Desserts",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,68 +7759,Cake Palace,1,New Delhi,"E-6, Main Market, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.221205,28.5677197,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,160 +302503,Charan Singh Kulfi & Kala Khatta,1,New Delhi,"E-20, Main Market, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2193637,28.5681269,Ice Cream,100,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,29 +677,Chinese Hut,1,New Delhi,"E-6, Main Market, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2212499,28.5675895,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,87 +305826,Costa Coffee,1,New Delhi,"Shop G-15, 1st Floor, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2196331,28.5680629,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,68 +743,Daitchi,1,New Delhi,"E-19-A, Main Market, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2199924,28.5680075,"Chinese, Japanese",1100,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,273 +18345751,DomDom Biryani,1,New Delhi,"South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",0,0,"Biryani, Mughlai, Bengali, North Indian",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,89 +2250,Gupta's Restaurant,1,New Delhi,"E-27, Main Market New Delhi, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2192738,28.567939,North Indian,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,104 +18352214,Mama's,1,New Delhi,"E-17, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2201272,28.5677962,"North Indian, Chinese, Mughlai",900,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,40 +192,McDonald's,1,New Delhi,"E-31/32, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2191601,28.5684461,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,167 +483,Moti Mahal Delux- Legendary Culinary,1,New Delhi,"E-31/32, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2195433,28.5682336,"North Indian, Mughlai, Chinese",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,177 +1675,Qureshi's Kabab Corner,1,New Delhi,"E-27, Main Market, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.21900079,28.56776639,"North Indian, Mughlai",650,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,215 +18451269,TukTuk,1,New Delhi,"Plaza II, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",0,0,"Asian, Chinese, Thai, Malaysian, Indonesian, Burmese",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,24 +18312616,Anand Sweets,1,New Delhi,"391, Leela Ram Market, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.21940547,28.56402849,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +7793,Cafe Corner,1,New Delhi,"E-6, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2213733,28.5680393,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18231390,Chocolics,1,New Delhi,"C Block, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",0,0,"Bakery, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18427231,ChocoLite,1,New Delhi,"D Block, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",0,0,"Bakery, Desserts, Healthy Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18427201,F Marquee,1,New Delhi,"M 4, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.21986,28.56847,"North Indian, Chinese, Continental",2000,Indian Rupees(Rs.),Yes,No,No,No,4,0,White,Not rated,3 +1129,Republic of Chicken,1,New Delhi,"451 & 452, Ground Floor, Lila Ram Market, Masjid Moth, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2384497,28.5374478,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18424170,Special Chicken Biryani,1,New Delhi,"Leela Ram Market, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2191391,28.5642064,"Biryani, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18306530,Circus,1,New Delhi,"D-14, 3rd Floor, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2174773,28.5686642,"North Indian, Chinese, Italian",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,489 +18332063,The Society Cafe,1,New Delhi,"D-15, South Extension 2, New Delhi",South Extension 2,"South Extension 2, New Delhi",77.2174933,28.5684463,"Cafe, Italian",800,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,149 +309852,Club London,1,New Delhi,"3-4, Ground Floor, Southern Park Mall, District Centre, Saket, New Delhi","Southern Park Mall, Saket","Southern Park Mall, Saket, New Delhi",77.2192708,28.5279802,"North Indian, Chinese, Finger Food",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,179 +18245284,3 Pegs Down,1,New Delhi,"11/12/14-A, Ground Floor, Southern Park Mall, District Centre, Saket, New Delhi","Southern Park Mall, Saket","Southern Park Mall, Saket, New Delhi",77.21947454,28.52748139,"Continental, Italian, North Indian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,217 +310413,Chicago Pizza,1,New Delhi,"Zing Food Court, Spark Mall, Near Gol Chakkar, Kamla Nagar, New Delhi","Spark Mall, Kamla Nagar","Spark Mall, Kamla Nagar, New Delhi",77.20365521,28.68093208,Pizza,600,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,27 +18261739,Maakhansingh,1,New Delhi,"Zing Food Court, 2nd Floor, Spark Mall, Kamla Nagar, New Delhi","Spark Mall, Kamla Nagar","Spark Mall, Kamla Nagar, New Delhi",77.20388161,28.68096059,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,18 +311068,Mad Over Donuts,1,New Delhi,"Zing Food Court, Level 2, Spark Mall, Kamla Nagar, New Delhi","Spark Mall, Kamla Nagar","Spark Mall, Kamla Nagar, New Delhi",77.20394421,28.68088884,Desserts,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,72 +308175,Starbucks,1,New Delhi,"1st Floor, Zing Food Court, Spark Mall, Kamla Nagar, New Delhi","Spark Mall, Kamla Nagar","Spark Mall, Kamla Nagar, New Delhi",77.20384263,28.68091678,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,147 +18276343,World of Wok,1,New Delhi,"Zing Food Court, 2nd Floor, Spark Mall, Kamla Nagar, New Delhi","Spark Mall, Kamla Nagar","Spark Mall, Kamla Nagar, New Delhi",77.20383894,28.68082913,Chinese,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,22 +4682,Alvi's Food Spot,1,New Delhi,"Star City Mall, Mayur Vihar Phase 1, New Delhi","Star City Mall, Mayur Vihar Phase 1","Star City Mall, Mayur Vihar Phase 1, New Delhi",77.296194,28.5929234,"North Indian, Mughlai",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,17 +6191,Cafe Coffee Day,1,New Delhi,"Ground Floor, Star City Mall, Mayur Vihar Phase 1, New Delhi","Star City Mall, Mayur Vihar Phase 1","Star City Mall, Mayur Vihar Phase 1, New Delhi",77.2961448,28.5925115,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,29 +1275,Code,1,New Delhi,"S-20, 2nd Floor, Star City Mall, Mayur Vihar Phase 1, New Delhi","Star City Mall, Mayur Vihar Phase 1","Star City Mall, Mayur Vihar Phase 1, New Delhi",77.2965607,28.5924186,"North Indian, Mughlai, Chinese",850,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.5,Orange,Average,117 +2934,Haowin,1,New Delhi,"G-10, Star City Mall, Mayur Vihar Phase 1, New Delhi","Star City Mall, Mayur Vihar Phase 1","Star City Mall, Mayur Vihar Phase 1, New Delhi",77.296653,28.5934846,"Chinese, Continental, Thai",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,88 +308801,Mirror,1,New Delhi,"F-37, 1st Floor, Star City Mall, Mayur Vihar Phase 1, New Delhi","Star City Mall, Mayur Vihar Phase 1","Star City Mall, Mayur Vihar Phase 1, New Delhi",77.2963556,28.5925202,"North Indian, Chinese, Continental",1250,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,131 +4854,Pizza Hut Delivery,1,New Delhi,"49 & 50, Ground Floor, Star City Mall, Mayur Vihar Phase 1, New Delhi","Star City Mall, Mayur Vihar Phase 1","Star City Mall, Mayur Vihar Phase 1, New Delhi",77.2963154,28.5926711,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,87 +306178,Platinum Lounge,1,New Delhi,"Ground Floor, Star City Mall, Mayur Vihar Phase 1, New Delhi","Star City Mall, Mayur Vihar Phase 1","Star City Mall, Mayur Vihar Phase 1, New Delhi",77.2963765,28.5925353,"North Indian, Chinese, Continental",1400,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,91 +310538,Aap Ki Rasoi Ghar,1,New Delhi,"Shop 1, 16/21, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.119028,28.6344547,"North Indian, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +305579,Aggarwal Sweet & Pastry,1,New Delhi,"Main Road, Beriwala Bagh, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1113233,28.6341298,"Mithai, Chinese",100,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,5 +17977785,Craving,1,New Delhi,"11/47, Shop 6, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1217748,28.6370077,"Chinese, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,10 +18037814,Dakshin South Indian Hut,1,New Delhi,"Ashok Nagar Market, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1017824,28.6375856,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18472638,Food & Travel Cafe,1,New Delhi,"7/155, Shop 3, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1184112,28.6362124,"Fast Food, Italian",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +18168154,Jolly Tandoori Zaika,1,New Delhi,"93 A, Minakshi Garden, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1057254,28.6400959,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,11 +18424579,Lababdar Rasoi,1,New Delhi,"Shop 1, 40A/1, Ashok Nagar, Near, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.0998378,28.6359711,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,16 +305552,Madan Da Dhaba,1,New Delhi,"J-8, Main Road, Beriwala Bagh, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1132628,28.6341385,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +302004,Nishtha,1,New Delhi,"11/76, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1209657,28.6370195,"Street Food, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,21 +18386266,P2 Tandoori Momos Station,1,New Delhi,"60/4 8 Block, Main Market, Sani Bazar Road, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",0,0,"Chinese, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +18272352,Punjabi's Veg Grill,1,New Delhi,"9/108, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1200642,28.637074,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +300560,Sethi's The Cake Shop,1,New Delhi,"14/2, Ashok Nagar, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1049848,28.6372567,"Bakery, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,16 +304453,Soya Grill,1,New Delhi,"WZ 189, Mukherjee Park, Punjabi Market, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1077556,28.6398962,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18025106,Sunny Kebab Wala,1,New Delhi,"Shop 94, Block J, Beri Wala Bagh, Near Sarvodya Bal Vidyalaya, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1137736,28.6341779,"North Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,15 +301836,Vaishno Bhojnalaya,1,New Delhi,"Near Swargashram Road, Hari Nagar, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1104921,28.6341756,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +306012,Valentine Coffee Bar,1,New Delhi,"Ground Floor, Meenakshi Garden, Metro Station, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1053224,28.6401715,"Beverages, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,8 +312023,Zayka Delhi-6,1,New Delhi,"Shop 3, Subhash Nagar Bike Market, Ajanta Cinema, Ajay Enclave, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1076479,28.6389889,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,11 +18430898,13 Cafe,1,New Delhi,"4/175, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1126948,28.6372986,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +305570,Aggarwal Sweet Corner,1,New Delhi,"Main Road, Beriwala Bagh, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1111664,28.6341062,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18447292,Babu Meat Wala,1,New Delhi,"Ground Floor, MCD Complex, Ashok Nagar, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1023553,28.6372884,"Raw Meats, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18365986,Batra Chinese Food & Chaap,1,New Delhi,"3/200, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.111493,28.6341831,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441532,Celebration Family Restaurant,1,New Delhi,"E-63, Near Sheetla Mata Mandir, Opposite Punjab Sindh Bank, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",0,0,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,0 +18492045,Ching Chinese,1,New Delhi,"Shop 7, 6/27, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.113421,28.6380416,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18352176,Choices An Absolute BBQ,1,New Delhi,"D-90, Fateh Nagar, Near Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.10088,28.634166,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18451605,Delhi-27,1,New Delhi,"Main Market, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1181788,28.6357662,"Chinese, South Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18455549,Desi Kukkad,1,New Delhi,"J-72/73 Milap Market, Beriwala Bagh, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1126948,28.6340741,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18455545,Freezy,1,New Delhi,"Shop 11, Opposite Super Medicos, Main Market, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1184103,28.6351694,Ice Cream,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18491264,Gourmet Bistro,1,New Delhi,"Shop 3, Block 12, Back Side, Opposite Shadley Public School, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.124247,28.6368424,"Cafe, Fast Food, Bakery",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18455547,Jiya Amritsari Naan,1,New Delhi,"Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1194054,28.634274,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18291456,Kedgy Bite,1,New Delhi,"Under Metro Station Subash Nagar, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.105132,28.6407295,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18472660,Khera's Foodie Corner,1,New Delhi,"5/186, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",0,0,"Chinese, North Indian",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310255,Lajwab Pastry Palace,1,New Delhi,"3/118, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1126049,28.634155,Bakery,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18366008,Madan Sweets & Bakers,1,New Delhi,"8/1, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1181788,28.6360349,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18462257,Momo's King,1,New Delhi,"Shop 1, Coal Depot, Ashok Nagar, Near Tilak Nagar Police Station, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",0,0,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18312627,New Pishori Chicken Kabab,1,New Delhi,"J-87, Beriwala Bagh, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1135938,28.6342502,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18492103,New Sindhi Chicken Corner,1,New Delhi,"4/192, Corner Shop 1, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1145378,28.6369833,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18431145,Radha Swami Chaat Bhandar,1,New Delhi,"Near Kids Paradise Play School, Meenakshi Garden, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1055921,28.6392123,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18430909,Rajender Di Punjabi Rasoi,1,New Delhi,"WZ 96, Meenakshi Garden, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1055022,28.640368,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18198821,Ram Ji Snacks & Food Corner,1,New Delhi,"8/1, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1183778,28.636237,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18430905,Ram Ram Ji Kachori Bhandar,1,New Delhi,"WZ 10, Tihar Village, Main Road, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1079298,28.6360338,Street Food,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18430907,Rana's Food Corner,1,New Delhi,"23/337, Opposite Sehgal Properties, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1090147,28.6350391,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18451597,Sanjay Chicken Shop,1,New Delhi,"11/48, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1212104,28.637075,"Raw Meats, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +17989089,Sharma Ji Spring Roll,1,New Delhi,"6/28, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1135039,28.6380035,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18492057,Shree Raja Ram,1,New Delhi,"WZ 56, Meenakshi Garden, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1055523,28.6398129,Fast Food,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +17989093,South Indian Hut,1,New Delhi,"10 Block, Main Road, Near PNB ATM, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1205612,28.637115,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18429149,Special Moradabadi Chicken Corner,1,New Delhi,"WZ 47, Meenakshi Garden, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1055921,28.6393914,Biryani,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18366006,Standard Pastry Shop,1,New Delhi,"5/35, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1122453,28.6368971,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,2 +305567,Sushil Punjabi Vaishno Dhaba,1,New Delhi,"Ajanta Market, Main Raod, Ajay Enclave, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1077234,28.6386142,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18455551,Variety of Shawarmas,1,New Delhi,"5/1, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1128304,28.6382092,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18430902,Vrindavan Sweets,1,New Delhi,"A1, WZ 9, Opposite Chhatri Wala Park, Main Road, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1078398,28.6361147,"South Indian, Street Food, Mithai",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18365385,Flirty Momo's,1,New Delhi,"Shop 30, Main Market, Subhash Nagar, New Delhi",Subhash Nagar,"Subhash Nagar, New Delhi",77.1180859,28.6357398,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,2.4,Red,Poor,26 +586,Nathu's Sweets,1,New Delhi,"2, Main Market, Sunder Nagar, New Delhi",Sunder Nagar,"Sunder Nagar, New Delhi",77.2409086,28.60252,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,173 +3403,Basil & Thyme,1,New Delhi,"28, Sunder Nagar Market, Sunder Nagar, New Delhi",Sunder Nagar,"Sunder Nagar, New Delhi",77.241099,28.6014758,"Continental, European",2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,127 +2902,Kamal's,1,New Delhi,"K-1, Sunder Nagar Market, Sunder Nagar, New Delhi",Sunder Nagar,"Sunder Nagar, New Delhi",77.2406505,28.6023444,North Indian,550,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,286 +308628,Orange Peel by Rasleen Kochhar,1,New Delhi,"126, Sunder Nagar, New Delhi",Sunder Nagar,"Sunder Nagar, New Delhi",77.2426044,28.5992226,"Bakery, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,44 +18466399,ATM Bistro,1,New Delhi,"21, Main Market, Sunder Nagar, New Delhi",Sunder Nagar,"Sunder Nagar, New Delhi",77.2415481,28.601877,European,1000,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,3 +18157416,Masala House,1,New Delhi,"4, Sunder Nagar, New Delhi Delhi NCR, Sunder Nagar",Sunder Nagar,"Sunder Nagar, New Delhi",77.241099,28.6026409,North Indian,1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,4,Green,Very Good,169 +18264963,Number 8,1,New Delhi,"8, Sunder Nagar Market, Sunder Nagar, New Delhi",Sunder Nagar,"Sunder Nagar, New Delhi",77.2411888,28.6024702,"Continental, North Indian, European, Asian",2200,Indian Rupees(Rs.),No,No,No,No,4,4,Green,Very Good,165 +18384123,Keventers,1,New Delhi,"FC 2, Arrival, Terminal 1C, Aerocity, New Delhi","T3 Domestic Arrival, Aerocity","T3 Domestic Arrival, Aerocity, New Delhi",77.120791,28.564288,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,6 +308595,4700BC Popcorn,1,New Delhi,"Ground Floor, Pacific Mall, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1063438,28.6421648,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,24 +18251318,Chennai X-Press,1,New Delhi,"Shop 5, B-4, Shopping Centre, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1127414,28.6461669,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18303675,Chinese Sigdi,1,New Delhi,"E-35, Tagore Garden Extension, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.11142376,28.6491793,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +18245286,Da Pizza Pind,1,New Delhi,"198, Opposite Holy Child School Gate 2 , Shivaji Market, Tagore Garden Extension, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1137028,28.6510376,"Pizza, Italian",250,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,36 +18414475,Faasos,1,New Delhi,"Shop B-15, Ground Floor (Back Portion), Shopping Center, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1120745,28.6463287,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,4 +308814,Frontier,1,New Delhi,"B 14, Shopping Zone, Near Post Office, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1124028,28.6463908,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +308996,Gyan Di Hatti,1,New Delhi,"Main Shivaji College Road, Raghuvir Nagar, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1146413,28.6535887,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +304583,Hot Stuff,1,New Delhi,"B Block, Shopping Centre, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1127855,28.6462371,"Chinese, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,14 +308080,KK Da Dhaba,1,New Delhi,"Near Metro Pillar 431, Main Najafgarh Road, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1147742,28.6452447,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,55 +18372669,Last Bencher's,1,New Delhi,"D-103, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1125497,28.6498944,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +309305,Raj Bakers And Confectioners,1,New Delhi,"D 85, Shop 4, Mini Market, Near Holy Child School, Devki Nandan Marg, Tagore Garden Extension, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1124296,28.6499476,"Fast Food, Bakery",100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18292457,Taste Drive,1,New Delhi,"Pacific Mall, Near Kids Zone, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1069062,28.6418012,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,21 +973,The Kafilla,1,New Delhi,"WZ-93, Near Metro Pillar 427, Tatarpur, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1155932,28.6455653,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +18292469,Tibb's Frankie,1,New Delhi,"Food Court, 2nd Floor, Pacific Mall, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1064052,28.6425185,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +18381626,4 Barrels Caf & Lounge,1,New Delhi,"3rd Floor, DE-82, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1099433,28.6490845,"North Indian, Continental, Lebanese",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,24 +18425157,Baadshah,1,New Delhi,"DE-84, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.116361,28.6461869,"North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,26 +18365991,Behrouz Biryani,1,New Delhi,"Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1120493,28.6463347,Biryani,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,54 +18355146,Galina Restaurant,1,New Delhi,"DE 82, Ground Floor, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1163525,28.6461897,North Indian,700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,38 +18454473,Masala Factory,1,New Delhi,"DE - 79, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.11541,28.646011,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,18 +18432240,Ovenstory Pizza,1,New Delhi,"Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1120139,28.6463561,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,12 +312027,Ajeet Fast Food Corner,1,New Delhi,"D-85, Tagore Garden Extension, New Delhi, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1124055,28.6499613,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18430872,Al Changezi,1,New Delhi,"Main Shivaji Road, Tegore Garden, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1156171,28.6538763,Mughlai,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18292478,Dolce Gelato,1,New Delhi,"2nd Floor, Pacific Mall, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1064709,28.6423312,Ice Cream,120,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18429417,Dragon Way,1,New Delhi,"E-35, Tagore Garden Extension, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1114205,28.6491173,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18244564,Foodaholic,1,New Delhi,"ED 118, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1151402,28.6488107,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +304385,Indian Chinese Fast Food,1,New Delhi,"Main Raghuvir Nagar Road, Tagore Garden Extension, New Delhi, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1120655,28.6524639,Chinese,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +9517,Jagadeesh Kharodewala,1,New Delhi,"57 & 58, Titarpur Market, Opposite Metro Pillar 424, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1165705,28.6462079,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +7194,Punjabi Shahi Chicken Soup,1,New Delhi,"1, D383, Opposite Shree Sai Vidya Mandir, Sabji Mandi, Tagore Garden Extension, New Delhi, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.111955,28.6525857,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18472448,Ramu Ka Dhaba,1,New Delhi,"Shop 17, DDA Market, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1097172,28.6512755,Mughlai,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18472599,Sardar Ji Chicken Corner,1,New Delhi,"Main Market, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1162324,28.6456969,"Mughlai, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18429644,Satguru Tiffin Service,1,New Delhi,"D-209, Second Floor, Tagore Garden Extension, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1122065,28.6498255,North Indian,200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,1 +7180,Seth Baker's,1,New Delhi,"Near Mother Dairy, 641, Tagore Garden Extension, New Delhi, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1123132,28.6518001,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +309006,Sri Durga Dosa Corner,1,New Delhi,"D 11, Main Road, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1121665,28.6499138,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18292480,V S Cafe,1,New Delhi,"Pacific Mall, Near Kids Zone, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1068758,28.641769,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +7187,Vijay South Indian Food,1,New Delhi,"Main Raghuveer Nagar Road, Tagore Garden Extension, New Delhi, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1113549,28.6528574,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +301998,Punjab Grill,1,New Delhi,"Pacific Mall, Tagore Garden, New Delhi",Tagore Garden,"Tagore Garden, New Delhi",77.1065034,28.6422159,North Indian,1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.3,Green,Very Good,1252 +3239,Insomnia - Taj Vivanta,1,New Delhi,"Taj Vivanta, Subramania Bharti Marg, Sujan Singh Park, Khan Market, New Delhi","Taj Vivanta, Khan Market","Taj Vivanta, Khan Market, New Delhi",77.2294337,28.6012192,"Italian, Continental, Finger Food",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,50 +301422,Larry's China - Taj Vivanta,1,New Delhi,"Taj Vivanta, Subramania Bharti Marg, Sujan Singh Park, Khan Market, New Delhi","Taj Vivanta, Khan Market","Taj Vivanta, Khan Market, New Delhi",77.2294235,28.6011707,Chinese,3200,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,147 +4404,Yellow Brick Road - Taj Vivanta,1,New Delhi,"Taj Vivanta, Subramania Bharti Marg, Sujan Singh Park, Khan Market, New Delhi","Taj Vivanta, Khan Market","Taj Vivanta, Khan Market, New Delhi",77.2294235,28.6011707,"Continental, North Indian, South Indian, Italian",2500,Indian Rupees(Rs.),No,No,No,No,4,3.9,Yellow,Good,821 +300008,English Tadka,1,New Delhi,"19-21, 1st Floor, TDI Paragon Mall, Rajouri Garden, New Delhi","TDI Mall, Rajouri Garden","TDI Mall, Rajouri Garden, New Delhi",77.1212744,28.6523425,"North Indian, European",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,152 +18216903,Burger King,1,New Delhi,"Ground Floor, Shop GF-05, TDI Mall, Plot 11, Shivaji Place, District Center, Rajouri Garden, New Delhi","TDI Mall, Rajouri Garden","TDI Mall, Rajouri Garden, New Delhi",77.1206821,28.6507962,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,186 +1079,Pizza Hut,1,New Delhi,"Shop 26 & 27, TDI Mall, Rajouri Garden, New Delhi","TDI Mall, Rajouri Garden","TDI Mall, Rajouri Garden, New Delhi",77.1207398,28.6507574,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.6,Yellow,Good,141 +4375,Cake Shop - The Ashok,1,New Delhi,"The Ashok, 50-B, Diplomatic Enclave, Chanakyapuri, New Delhi","The Ashok, Chanakyapuri","The Ashok, Chanakyapuri, New Delhi",77.195866,28.596981,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,26 +3955,Samavar - The Ashok,1,New Delhi,"The Ashok, 50-B, Kautilya Marg, Diplomatic Enclave, Chanakyapuri, New Delhi","The Ashok, Chanakyapuri","The Ashok, Chanakyapuri, New Delhi",77.195892,28.597062,"Continental, North Indian, Chinese",2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,48 +4376,Tea Lounge - The Ashok,1,New Delhi,"The Ashok, 50-B, Kautilya Marg, Diplomatic Enclave, Chanakyapuri, New Delhi","The Ashok, Chanakyapuri","The Ashok, Chanakyapuri, New Delhi",77.1960071,28.5969975,Cafe,1600,Indian Rupees(Rs.),No,No,No,No,3,3.2,Orange,Average,18 +1898,Frontier - The Ashok,1,New Delhi,"The Ashok, 50-B, Diplomatic Enclave, Chanakyapuri, New Delhi","The Ashok, Chanakyapuri","The Ashok, Chanakyapuri, New Delhi",77.1956478,28.5966943,"North Indian, Mughlai",3600,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,101 +1900,The Oudh - The Ashok,1,New Delhi,"The Ashok, 50-B, Diplomatic Enclave, Chanakyapuri, New Delhi","The Ashok, Chanakyapuri","The Ashok, Chanakyapuri, New Delhi",77.1958724,28.5963125,North Indian,3700,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,100 +306198,Zerruco - The Ashok,1,New Delhi,"The Ashok, 50-B, Kautilya Marg, Diplomatic Enclave, Chanakyapuri, New Delhi","The Ashok, Chanakyapuri","The Ashok, Chanakyapuri, New Delhi",77.1962398,28.598181,"Mediterranean, Italian",2500,Indian Rupees(Rs.),Yes,No,No,No,4,4.4,Green,Very Good,609 +18312443,The Claridges Garden -The Claridges,1,New Delhi,"The Claridges, 12, Dr. A.P.J. Abdul Kalam Road, Aurangzeb Road, New Delhi","The Claridges, Aurangzeb Road","The Claridges, Aurangzeb Road, New Delhi",77.2169361,28.60016,"Cafe, American, Tea",2000,Indian Rupees(Rs.),No,No,No,No,4,3.1,Orange,Average,5 +2683,Aura - The Claridges,1,New Delhi,"The Claridges, 12, Dr. A.P.J. Abdul Kalam Road, Aurangzeb Road, New Delhi","The Claridges, Aurangzeb Road","The Claridges, Aurangzeb Road, New Delhi",77.2169659,28.6001706,Continental,4100,Indian Rupees(Rs.),No,No,No,No,4,3.5,Yellow,Good,42 +2682,Dhaba - The Claridges,1,New Delhi,"The Claridges, 12, Dr. A.P.J. Abdul Kalam Road, Aurangzeb Road, New Delhi","The Claridges, Aurangzeb Road","The Claridges, Aurangzeb Road, New Delhi",77.2168724,28.6001728,North Indian,4300,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,548 +2681,Jade - The Claridges,1,New Delhi,"The Claridges, 12, Dr. A.P.J. Abdul Kalam Road, Aurangzeb Road, New Delhi 110011","The Claridges, Aurangzeb Road","The Claridges, Aurangzeb Road, New Delhi",77.2168963,28.6001953,Chinese,5000,Indian Rupees(Rs.),Yes,No,No,No,4,3.8,Yellow,Good,134 +2674,Pickwicks - The Claridges,1,New Delhi,"The Claridges, 12, Dr. A.P.J. Abdul Kalam Road, Aurangzeb Road, New Delhi","The Claridges, Aurangzeb Road","The Claridges, Aurangzeb Road, New Delhi",77.2168839,28.6001694,"European, Continental",3600,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,139 +2684,Ye Old Bakery - The Claridges,1,New Delhi,"The Claridges, 12, Dr. A.P.J. Abdul Kalam Road, Aurangzeb Road, New Delhi 110011","The Claridges, Aurangzeb Road","The Claridges, Aurangzeb Road, New Delhi",77.2169297,28.6001541,"Bakery, Desserts",1000,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,65 +2675,Sevilla - The Claridges,1,New Delhi,"The Claridges, 12, Dr. A.P.J. Abdul Kalam Road, Aurangzeb Road, New Delhi","The Claridges, Aurangzeb Road","The Claridges, Aurangzeb Road, New Delhi",77.2168927,28.6001767,"Spanish, Italian",4500,Indian Rupees(Rs.),Yes,No,No,No,4,4.3,Green,Very Good,800 +3227,GBar - The Grand New Delhi,1,New Delhi,"The Grand New Delhi, Phase II, Nelson Mandela Road, Vasant Kunj, New Delhi","The Grand New Delhi, Vasant Kunj","The Grand New Delhi, Vasant Kunj, New Delhi",77.15246,28.538993,"American, Finger Food",2650,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,145 +4840,Cascades - The Grand New Delhi,1,New Delhi,"The Grand New Delhi, Phase II, Nelson Mandela Road, Vasant Kunj, New Delhi","The Grand New Delhi, Vasant Kunj","The Grand New Delhi, Vasant Kunj, New Delhi",77.15246,28.538993,"North Indian, Continental, Asian",3200,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,97 +2726,1911 Bar - The Imperial,1,New Delhi,"The Imperial, Janpath, New Delhi","The Imperial, Janpath","The Imperial, Janpath, New Delhi",77.218185,28.625443,"Finger Food, European",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,10 +301523,Nostalgia at 1911 Brasserie - The Imperial,1,New Delhi,"The Imperial, Janpath, New Delhi","The Imperial, Janpath","The Imperial, Janpath, New Delhi",77.218187,28.625445,"European, Continental",6000,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,12 +2729,Patiala Peg - The Imperial,1,New Delhi,"The Imperial, Janpath, New Delhi","The Imperial, Janpath","The Imperial, Janpath, New Delhi",77.218187,28.625445,Finger Food,3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,25 +2724,1911 - The Imperial,1,New Delhi,"The Imperial, Janpath, New Delhi","The Imperial, Janpath","The Imperial, Janpath, New Delhi",77.218185,28.625443,"North Indian, Chinese, South Indian, Italian",6000,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,272 +2728,Daniell's Tavern - The Imperial,1,New Delhi,"The Imperial, Janpath, New Delhi","The Imperial, Janpath","The Imperial, Janpath, New Delhi",77.218187,28.625445,North Indian,4000,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,59 +2730,La Baguette - The Imperial,1,New Delhi,"The Imperial, Janpath, New Delhi","The Imperial, Janpath","The Imperial, Janpath, New Delhi",77.218187,28.625445,"Desserts, Bakery",900,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,45 +2727,San Gimignano - The Imperial,1,New Delhi,"The Imperial, Janpath, New Delhi","The Imperial, Janpath","The Imperial, Janpath, New Delhi",77.218187,28.625445,Italian,5000,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,104 +2731,The Atrium - The Imperial,1,New Delhi,"The Imperial, Janpath, New Delhi","The Imperial, Janpath","The Imperial, Janpath, New Delhi",77.218187,28.625445,"European, Desserts",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,57 +2725,The Spice Route - The Imperial,1,New Delhi,"The Imperial, Janpath, New Delhi","The Imperial, Janpath","The Imperial, Janpath, New Delhi",77.218187,28.625445,"Malaysian, Thai, Kerala, Vietnamese, Sri Lankan",6000,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,259 +18237363,Bao Cha,1,New Delhi,"Shop 21, The India Mall, Community Center, New Friends Colony, New Delhi","The India Mall, New Friends Colony","The India Mall, New Friends Colony, New Delhi",77.26898376,28.56164003,"Chinese, Thai, Asian",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3,Orange,Average,90 +18322518,Nazeer Delicacies,1,New Delhi,"45-46, 1st Floor, The India Mall, Community Centre, New Friends Colony, New Delhi","The India Mall, New Friends Colony","The India Mall, New Friends Colony, New Delhi",77.26894453,28.56161147,"North Indian, Mughlai",900,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,21 +1023,Open Oven,1,New Delhi,"1, GF-58, The India Mall, 1 Community Center, New Friends Colony, New Delhi","The India Mall, New Friends Colony","The India Mall, New Friends Colony, New Delhi",77.269154,28.567481,"Bakery, Desserts, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,109 +18277022,Slurp Pasta Express,1,New Delhi,"Ground Floor, The India Mall, 1 Community Center, New Friends Colony, New Delhi","The India Mall, New Friends Colony","The India Mall, New Friends Colony, New Delhi",77.26888552,28.56162678,"Cafe, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +18354650,Urban Gala,1,New Delhi,"1st Floor, The India Mall, New Friends Colony, New Delhi","The India Mall, New Friends Colony","The India Mall, New Friends Colony, New Delhi",77.26885669,28.56179522,"Chinese, Cafe",700,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,19 +9671,Shree Rathnam,1,New Delhi,"2 & 3, The India Mall, Community Center, New Friends Colony, New Delhi","The India Mall, New Friends Colony","The India Mall, New Friends Colony, New Delhi",77.26870917,28.56165594,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.5,Yellow,Good,96 +18424209,Stuffed Kathi Roll,1,New Delhi,"Ground Floor, The India Mall, Community Center, New Friends Colony, New Delhi","The India Mall, New Friends Colony","The India Mall, New Friends Colony, New Delhi",77.2690978,28.5616595,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +149,Subway,1,New Delhi,"54, The India Mall, Community Centre, New Friends Colony, New Delhi","The India Mall, New Friends Colony","The India Mall, New Friends Colony, New Delhi",77.2685174,28.5614696,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,1.9,Red,Poor,146 +8842,24/7 Pastry Shop - The Lalit New Delhi,1,New Delhi,"The Lalit, Barakhamba Avenue, Barakhamba Road, New Delhi","The Lalit New Delhi, Barakhamba Road","The Lalit New Delhi, Barakhamba Road, New Delhi",77.22762946,28.63110267,"Bakery, Desserts",900,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,46 +8817,Le Petit Cafe - The Lalit New Delhi,1,New Delhi,"The Lalit, Barakhamba Avenue, Barakhamba Road, New Delhi","The Lalit New Delhi, Barakhamba Road","The Lalit New Delhi, Barakhamba Road, New Delhi",77.22762745,28.63113239,Cafe,1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,31 +309110,The Grill Room - The Lalit New Delhi,1,New Delhi,"The Lalit, Barakhamba Avenue, Barakhamba Road, New Delhi","The Lalit New Delhi, Barakhamba Road","The Lalit New Delhi, Barakhamba Road, New Delhi",77.227277,28.631407,Continental,4500,Indian Rupees(Rs.),Yes,No,No,No,4,3.4,Orange,Average,51 +301524,24/7 Bar- The Lalit New Delhi,1,New Delhi,"The Lalit, Barakhamba Avenue, Barakhamba Road, New Delhi","The Lalit New Delhi, Barakhamba Road","The Lalit New Delhi, Barakhamba Road, New Delhi",77.227277,28.631407,Finger Food,3000,Indian Rupees(Rs.),No,No,No,No,4,3.5,Yellow,Good,45 +3910,24/7 Restaurant - The Lalit New Delhi,1,New Delhi,"The Lalit, Barakhamba Avenue, Barakhamba Road, New Delhi","The Lalit New Delhi, Barakhamba Road","The Lalit New Delhi, Barakhamba Road, New Delhi",77.22756944,28.63148611,"Continental, North Indian, Italian, Asian",5100,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,419 +3027,Baluchi - The Lalit New Delhi,1,New Delhi,"The Lalit, Barakhamba Avenue, Barakhamba Road, New Delhi","The Lalit New Delhi, Barakhamba Road","The Lalit New Delhi, Barakhamba Road, New Delhi",77.22764019,28.63120891,"Mughlai, North Indian, South Indian",4500,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,265 +4907,Kitty Su - The Lalit New Delhi,1,New Delhi,"The Lalit, Barakhamba Avenue, Barakhamba Road, New Delhi","The Lalit New Delhi, Barakhamba Road","The Lalit New Delhi, Barakhamba Road, New Delhi",77.228133,28.6317423,Finger Food,5000,Indian Rupees(Rs.),No,No,No,No,4,3.7,Yellow,Good,747 +104,Woks - The Lalit New Delhi,1,New Delhi,"The Lalit, Barakhamba Avenue, Barakhamba Road, New Delhi","The Lalit New Delhi, Barakhamba Road","The Lalit New Delhi, Barakhamba Road, New Delhi",77.227277,28.631407,"Chinese, Seafood",4500,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,62 +300688,Caf Knosh - The Leela Ambience Convention Hotel,1,New Delhi,"The Leela Ambience Convention Hotel, Maharaja Surajmal Road, Near Yamuna Sports Complex, Vivek Vihar, New Delhi",The Leela Ambience Convention Hotel,"The Leela Ambience Convention Hotel, New Delhi",77.30317778,28.66113333,"North Indian, Italian",2700,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,186 +300697,Cherry Bar - The Leela Ambience Convention Hotel,1,New Delhi,"The Leela Ambience Convention Hotel, Maharaja Surajmal Road, Near Yamuna Sports Complex, Vivek Vihar, New Delhi",The Leela Ambience Convention Hotel,"The Leela Ambience Convention Hotel, New Delhi",77.30317778,28.66113333,Finger Food,2650,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,48 +300696,Mei Kun - The Leela Ambience Convention Hotel,1,New Delhi,"The Leela Ambience Convention Hotel, Maharaja Surajmal Road, Near Yamuna Sports Complex, Vivek Vihar, New Delhi",The Leela Ambience Convention Hotel,"The Leela Ambience Convention Hotel, New Delhi",77.30317778,28.66113333,Thai,3500,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,42 +300695,Dilli 32 - The Leela Ambience Convention Hotel,1,New Delhi,"The Leela Ambience Convention Hotel, Maharaja Surajmal Road, Near Yamuna Sports Complex, Vivek Vihar, New Delhi",The Leela Ambience Convention Hotel,"The Leela Ambience Convention Hotel, New Delhi",77.30317778,28.66113333,North Indian,3500,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,184 +4917,Jamavar - The Leela Palace,1,New Delhi,"The Leela Palace, Diplomatic Enclave, Chanakyapuri, New Delhi","The Leela Palace, Chanakyapuri","The Leela Palace, Chanakyapuri, New Delhi",77.1889269,28.5794095,"North Indian, Mughlai",4000,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,241 +4910,Le Cirque - The Leela Palace,1,New Delhi,"The Leela Palace, Diplomatic Enclave, Chanakyapuri, New Delhi","The Leela Palace, Chanakyapuri","The Leela Palace, Chanakyapuri, New Delhi",77.1889752,28.5793901,"French, Italian",5000,Indian Rupees(Rs.),Yes,No,No,No,4,3.8,Yellow,Good,199 +6812,MEGU - The Leela Palace,1,New Delhi,"The Leela Palace, Diplomatic Enclave, Chanakyapuri, New Delhi","The Leela Palace, Chanakyapuri","The Leela Palace, Chanakyapuri, New Delhi",77.1889651,28.5794009,"Japanese, Sushi",5500,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,178 +4911,The Library - The Leela Palace,1,New Delhi,"The Leela Palace, Diplomatic Enclave, Chanakyapuri, New Delhi","The Leela Palace, Chanakyapuri","The Leela Palace, Chanakyapuri, New Delhi",77.1885648,28.5802165,"Italian, Continental",3500,Indian Rupees(Rs.),No,No,No,No,4,3.7,Yellow,Good,59 +4915,The Lobby Lounge - The Leela Palace,1,New Delhi,"The Leela Palace, Diplomatic Enclave, Chanakyapuri, New Delhi","The Leela Palace, Chanakyapuri","The Leela Palace, Chanakyapuri, New Delhi",77.1890039,28.5793611,"Cafe, Continental",2000,Indian Rupees(Rs.),No,No,No,No,4,3.6,Yellow,Good,32 +310878,The Lodhi Bakery - The Lodhi,1,New Delhi,"The Lodhi, Lodhi Road, New Delhi","The Lodhi, Lodhi Road","The Lodhi, Lodhi Road, New Delhi",77.238056,28.592135,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +3283,Elan - The Lodhi,1,New Delhi,"The Lodhi, Lodhi Road, New Delhi","The Lodhi, Lodhi Road","The Lodhi, Lodhi Road, New Delhi",77.238315,28.5921591,"North Indian, Continental, Italian",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.8,Yellow,Good,185 +2768,Agni - The Park,1,New Delhi,"The Park, 15, Parliament Street, Connaught Place, New Delhi","The Park, Connaught Place","The Park, Connaught Place, New Delhi",77.21734352,28.62098574,"Mughlai, Italian, Finger Food, Middle Eastern",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,199 +2770,Mist - The Park,1,New Delhi,"The Park, 15, Parliament Street, Connaught Place, New Delhi","The Park, Connaught Place","The Park, Connaught Place, New Delhi",77.21736733,28.62098721,"Continental, Italian, American, North Indian",3500,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,169 +2769,Aqua - The Park,1,New Delhi,"The Park, 15, Parliament Street, Connaught Place, New Delhi","The Park, Connaught Place","The Park, Connaught Place, New Delhi",77.216002,28.628885,"Continental, Italian, Mediterranean",4500,Indian Rupees(Rs.),Yes,No,No,No,4,3.8,Yellow,Good,773 +3202,Atrium Bar & Lounge - The Suryaa New Delhi,1,New Delhi,"The Suryaa New Delhi, New Friends Colony, New Delhi","The Suryaa New Delhi, New Friends Colony","The Suryaa New Delhi, New Friends Colony, New Delhi",77.26953889,28.56109444,Finger Food,3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.1,Orange,Average,26 +4101,French Crust - The Suryaa New Delhi,1,New Delhi,"The Suryaa New Delhi, New Friends Colony, New Delhi","The Suryaa New Delhi, New Friends Colony","The Suryaa New Delhi, New Friends Colony, New Delhi",77.26953889,28.56109444,"Cafe, Bakery",900,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,19 +312902,Club BW - The Suryaa New Delhi,1,New Delhi,"The Suryaa New Delhi, New Friends Colony, New Delhi","The Suryaa New Delhi, New Friends Colony","The Suryaa New Delhi, New Friends Colony, New Delhi",77.269656,28.561179,"Finger Food, Continental, Italian, Chinese",4400,Indian Rupees(Rs.),No,No,No,No,4,3.6,Yellow,Good,90 +5325,Sampan - The Suryaa New Delhi,1,New Delhi,"The Suryaa New Delhi, New Friends Colony, New Delhi","The Suryaa New Delhi, New Friends Colony","The Suryaa New Delhi, New Friends Colony, New Delhi",77.269618,28.561053,"Thai, Chinese, Japanese",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,111 +4496,The Grill Room - The Taj Mahal Hotel,1,New Delhi,"The Taj Mahal Hotel, 1, Mansingh Road, New Delhi","The Taj Mahal Hotel, Mansingh Road","The Taj Mahal Hotel, Mansingh Road, New Delhi",77.2241228,28.6051535,"Mediterranean, European",5000,Indian Rupees(Rs.),No,No,No,No,4,3.1,Orange,Average,15 +2688,Emperor's Lounge - The Taj Mahal Hotel,1,New Delhi,"The Taj Mahal Hotel, 1, Mansingh Road, New Delhi","The Taj Mahal Hotel, Mansingh Road","The Taj Mahal Hotel, Mansingh Road, New Delhi",77.2241405,28.6051689,Cafe,2500,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,79 +2690,Machan - The Taj Mahal Hotel,1,New Delhi,"The Taj Mahal Hotel, 1, Mansingh Road, New Delhi","The Taj Mahal Hotel, Mansingh Road","The Taj Mahal Hotel, Mansingh Road, New Delhi",77.2241369,28.6051648,"North Indian, European, Continental",5000,Indian Rupees(Rs.),No,No,No,No,4,3.9,Yellow,Good,696 +3948,Ricks Bar - The Taj Mahal Hotel,1,New Delhi,"The Taj Mahal Hotel, 1, Mansingh Road, New Delhi","The Taj Mahal Hotel, Mansingh Road","The Taj Mahal Hotel, Mansingh Road, New Delhi",77.22273611,28.60440165,"Malaysian, Thai",4200,Indian Rupees(Rs.),Yes,No,No,No,4,3.6,Yellow,Good,64 +2694,Wasabi by Morimoto - The Taj Mahal Hotel,1,New Delhi,"The Taj Mahal Hotel, 1, Mansingh Road, New Delhi","The Taj Mahal Hotel, Mansingh Road","The Taj Mahal Hotel, Mansingh Road, New Delhi",77.2243039,28.6052532,"Japanese, Sushi",6000,Indian Rupees(Rs.),Yes,No,No,No,4,3.9,Yellow,Good,183 +2689,House of Ming - The Taj Mahal Hotel,1,New Delhi,"The Taj Mahal Hotel, 1, Mansingh Road, New Delhi","The Taj Mahal Hotel, Mansingh Road","The Taj Mahal Hotel, Mansingh Road, New Delhi",77.2246182,28.6051487,Chinese,5500,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,398 +2693,Varq - The Taj Mahal Hotel,1,New Delhi,"The Taj Mahal Hotel, 1, Mansingh Road, New Delhi","The Taj Mahal Hotel, Mansingh Road","The Taj Mahal Hotel, Mansingh Road, New Delhi",77.2241401,28.605189,"Seafood, North Indian",4500,Indian Rupees(Rs.),Yes,No,No,No,4,4.2,Green,Very Good,541 +18400770,Capital Kitchen - Taj Palace Hotel,1,New Delhi,"Taj Palace Hotel, Diplomatic Enclave, Chanakyapuri, New Delhi","The Taj Palace Hotel, Chanakyapuri","The Taj Palace Hotel, Chanakyapuri, New Delhi",77.1701408,28.5950782,"North Indian, European, Asian",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.7,Yellow,Good,42 +18376469,Spicy Duck - Taj Palace Hotel,1,New Delhi,"Taj Palace Hotel, Diplomatic Enclave, Chanakyapuri, New Delhi","The Taj Palace Hotel, Chanakyapuri","The Taj Palace Hotel, Chanakyapuri, New Delhi",77.1702198,28.5948008,Asian,4000,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,24 +2701,Orient Express - Taj Palace Hotel,1,New Delhi,"Taj Palace Hotel, Diplomatic Enclave, Chanakyapuri, New Delhi","The Taj Palace Hotel, Chanakyapuri","The Taj Palace Hotel, Chanakyapuri, New Delhi",77.170087,28.5950077,European,8000,Indian Rupees(Rs.),Yes,No,No,No,4,4,Green,Very Good,145 +2702,The Tea Lounge - Taj Palace Hotel,1,New Delhi,"Taj Palace Hotel, Diplomatic Enclave, Chanakyapuri, New Delhi","The Taj Palace Hotel, Chanakyapuri","The Taj Palace Hotel, Chanakyapuri, New Delhi",77.1703995,28.5945492,Cafe,1500,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,76 +9709,Bonitos - The Uppal,1,New Delhi,"The Uppal, NH-8, Near, Aerocity, New Delhi","The Uppal, Aerocity","The Uppal, Aerocity, New Delhi",77.101847,28.535183,"Continental, Thai, Chinese, North Indian",3000,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,28 +312319,Bonitos Blu - The Uppal,1,New Delhi,"The Uppal, NH-8, Near, Aerocity, New Delhi","The Uppal, Aerocity","The Uppal, Aerocity, New Delhi",77.101847,28.535183,"North Indian, Asian, Continental",2500,Indian Rupees(Rs.),Yes,No,No,No,4,3,Orange,Average,5 +311858,The Gourmet Shop - The Uppal,1,New Delhi,"The Uppal, Ground Floor, NH-8, Mahipalpur Extension, Aerocity, New Delhi","The Uppal, Aerocity","The Uppal, Aerocity, New Delhi",77.101847,28.535183,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +131,Chopsticks,1,New Delhi,"The Village Restaurant Complex, Next to Sirifort Auditorium, Khel Gaon Marg, New Delhi","The Village Restaurant Complex, Khel Gaon Marg","The Village Restaurant Complex, Khel Gaon Marg, New Delhi",77.2133902,28.5525438,"Chinese, Thai",1700,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,350 +313200,TabulaBeach Cafe,1,New Delhi,"The Village Restaurant Complex, Asiad Village, Khel Gaon Marg, New Delhi","The Village Restaurant Complex, Khel Gaon Marg","The Village Restaurant Complex, Khel Gaon Marg, New Delhi",77.213191,28.5523566,"European, American",1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,637 +18282047,Arriba - Mexican Grill & Tequileria,1,New Delhi,"The Village Restaurant Complex, Asiad Village, Khel Gaon Marg, New Delhi","The Village Restaurant Complex, Khel Gaon Marg","The Village Restaurant Complex, Khel Gaon Marg, New Delhi",77.2129742,28.55231,Mexican,2500,Indian Rupees(Rs.),Yes,No,No,No,4,4.1,Green,Very Good,146 +18459030,Chatori Gali,1,New Delhi,"Central Hall, Patiala House Court, Tilak Marg, New Delhi",Tilak Marg,"Tilak Marg, New Delhi",0,0,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +302136,Aggarwal Sweet Center,1,New Delhi,"1A/13, West Zone, Ganesh Nagar, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0919833,28.6350967,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +301767,Aggarwal Sweets,1,New Delhi,"WZ-22A, Mukherjee Park, Chaukhandi Road, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0994142,28.6419765,"Street Food, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,11 +302103,Alag Khana Khazana,1,New Delhi,"Guru Ram Das Marg, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0862978,28.6389981,"North Indian, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +310273,Bhape Di Hatti,1,New Delhi,"Near Sanatan Dharam Mandir, Main Market, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0968578,28.6384031,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +308868,Bhappe Di Hatti,1,New Delhi,"Main Market, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0965905,28.6380699,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +18372667,Bhatura King,1,New Delhi,"Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0954179,28.636751,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +310728,Bhukkadzz Point,1,New Delhi,"C-131, Ganesh Nagar, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0868116,28.6354821,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,7 +8564,Bimbos,1,New Delhi,"Near MCD Park, Katyal Market, Ashok Nagar, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.1016004,28.6374082,"Chinese, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,16 +305486,Brothers' Bakery,1,New Delhi,"A-31, Vishnu Garden, Khyala Road, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.1033405,28.6487302,"Fast Food, Bakery",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,21 +18485858,Chaap Nation,1,New Delhi,"11/41B, Gurudwara Road, Tilak Nagar Market, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.09550753,28.64003986,"North Indian, Fast Food, Afghani",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18204802,Dev Burger,1,New Delhi,"44/1, Totaram Ahuja Marg, Ashok Nagar, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0998394,28.635043,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +310254,Green Chick Chop,1,New Delhi,"179, Mukherji Park, Vishnu Garden, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.1040206,28.6437138,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +310272,Green Chick Chop,1,New Delhi,"A-132, Ganesh Nagar, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0905901,28.6364554,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,16 +302089,Hum Sabki Rasoi,1,New Delhi,"S-1/68, Old Mahavir Nagar, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0888609,28.6377331,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,26 +18034071,Janki Vaishno Dhaba,1,New Delhi,"WZ 714, Tihar Village, Near Tilak Nagar Market, Government Girls Convent School, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.1050287,28.6375598,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +305785,Manmohan Food Plaza,1,New Delhi,"Shop 8, New Market, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0962201,28.6371415,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,10 +18268710,Mr.Hunger,1,New Delhi,"24B/8, Mall Road, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0937942,28.6368398,"Burger, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +308862,Neelma Punjabi Dhaba,1,New Delhi,"K-3, Mukaram Garden, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.097173,28.6434771,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,8 +308863,New Raj Kachori Bhandar,1,New Delhi,"2/17, Double Storey, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0972739,28.6374781,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,18 +304319,Punjabi Ninja,1,New Delhi,"Plot 5, Anmol Vatika, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.1004284,28.6407465,North Indian,550,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,7 +18198440,Radha Swami Cool Hut,1,New Delhi,"11/45 B, Gurudwara Rd, Block 11, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.095013,28.6404001,"Beverages, Ice Cream",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +304161,Sagar Choley Bhatoorey,1,New Delhi,"Mukherji Park, Punjabi Market, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.1006304,28.6448121,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,26 +18037798,Sehyog Alpahar,1,New Delhi,"Main Market, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0966736,28.637326,"South Indian, Chinese",150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +310279,South Indian Hut,1,New Delhi,"21/24, Main Road, Near Central Hospital, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0889219,28.6378234,"South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +5964,Vijay Corner,1,New Delhi,"30, Double Story Ashok Nagar, Near Metro Station, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0973882,28.6361284,"North Indian, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +18241496,Mithlesh Ande Wala,1,New Delhi,"Shop D-3, Fateh Nagar, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.098007,28.6342673,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,17 +309695,Roti N Boti,1,New Delhi,"15/16, Mangal Bazar, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0925481,28.6409492,"North Indian, Fast Food, Mughlai",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,21 +308905,Annapurna Caters,1,New Delhi,"17/30, Aashirwad Complex, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0934526,28.6376488,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18312644,Ashoka's Ice Zone,1,New Delhi,"11/47, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0949112,28.6404463,"Ice Cream, Beverages",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +305238,Bikaner Sweets & Pastry Corner,1,New Delhi,"Guru Ramdas Marg, Krishna Park, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.086714,28.6388684,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +301917,Bikaner Sweets,1,New Delhi,"Near Khyala Road, Vishnu Garden, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.1031722,28.6489062,"Bakery, Mithai",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18372314,Dee Pizza Hub,1,New Delhi,"WZ-139/F, Main Market, New Mahavir Nagar, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0845916,28.6344618,Pizza,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +313282,Flavors of London,1,New Delhi,"K-131/2, Mahavir Nagar, Krishna Park, Main Outer Ring Road, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0854345,28.6396056,"Desserts, Ice Cream, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18368025,Funduz Cafe,1,New Delhi,"WZ-188, Punjabi Market, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.1002905,28.6449182,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18089242,Giani,1,New Delhi,"G-4A, Main Kabuli Chowk, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0863331,28.63903,"Ice Cream, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +304160,Grover Sweets Rajouri Wala,1,New Delhi,"Khyala Road, Vishnu Garden, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.1034131,28.6481247,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18037813,Guru Kripa Chicken Corner,1,New Delhi,"Near Metro Station, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0971137,28.636187,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18487958,Health-O-Lic,1,New Delhi,"4A/2, Near Axis Bank, Main Najafgarh Road, Tilak Nagar, New Delh",Tilak Nagar,"Tilak Nagar, New Delhi",0,0,"Healthy Food, Juices",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18368021,Himalya Chinese,1,New Delhi,"Shop 1, Plot 365, Chand Nagar, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0962302,28.6468527,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +313137,KindBhutani's,1,New Delhi,"41, New Market, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0959301,28.6367945,"South Indian, Fast Food, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +305866,Mama Bhanja Corner,1,New Delhi,"Opposite Vijay Corner, Ashok Nagar, Near Metro Station, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0971707,28.6361765,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18431191,Mama Tao,1,New Delhi,"E-1, Main Khyala Raod, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.1029417,28.6491405,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18037792,Manpasand Punjabi Zaika,1,New Delhi,"20 Block, Opposite Krishna Park, Gurudwara Road, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0864035,28.6391088,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18356794,Pal Restaurant,1,New Delhi,"Plot 6, Punjabi Market, Vishnu Nagar, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.1014529,28.6445351,"North Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312040,Pizza Station,1,New Delhi,"WZ-23B, Part 1, Punjabi Market, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0998064,28.6448699,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18460328,Punjabi Dhaba,1,New Delhi,"Shop BE-106A, Hari Nagar, Near Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",0,0,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18187733,Punjabi Virsa,1,New Delhi,"A-67, Shyam Nagar, Punjabi Market, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.102513,28.644093,"North Indian, Chinese, Mughlai",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +5961,Sahib Jhatka Chicken Shop,1,New Delhi,"29/4, Ashok Nagar, Near Metro Station, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0973474,28.6361148,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18431176,Salt & Peppers,1,New Delhi,"Shop 1, New Market, Main Market, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0964562,28.6371756,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18037796,Sethi Ice Cream Parlour,1,New Delhi,"Khyala Road, Vishnu Garden, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0995462,28.6450932,"Desserts, Beverages",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +312853,Shah Ji Di Rasoi,1,New Delhi,"11/13, Tilak Nagar Main Market, Gurudwara Road, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0966816,28.6380338,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18469949,Shawarma Wala,1,New Delhi,"Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0954687,28.6370036,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18428721,Snazzy Delights,1,New Delhi,"J-8, Mukhram Garden, Near Raj Cinema, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",0,0,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18203187,South Indian Hut,1,New Delhi,"M-49, New Mahavir Nagar, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.084917,28.6343667,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +308900,T-2 Di Hatti,1,New Delhi,"24/10, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0934222,28.6377065,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18430577,The Second Wife Kitchen,1,New Delhi,"24/5, Mall Road, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0933859,28.6366697,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +310286,Today Pizza,1,New Delhi,"E-1, Khyala Road, Vishnu Garden, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.1031681,28.6490554,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18246984,Turban Tadka,1,New Delhi,"WZ-139, B1/B, New Mahavir Nagar, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0846233,28.6356249,"North Indian, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +312041,Wah Shah Ji Wah,1,New Delhi,"WZ-179, Mukherji Park, Punjabi Market Road, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.1039501,28.6437348,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18429180,Wah Wah Chicken Corner,1,New Delhi,"93, DDA Market, Near Balmiki Mandir, Tilak Nagar, New Delhi",Tilak Nagar,"Tilak Nagar, New Delhi",77.0918112,28.6420481,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +304730,Brijwasi Sweet and Namkeen,1,New Delhi,"3/30, Subhash Market, Trilokpuri, New Delhi",Trilokpuri,"Trilokpuri, New Delhi",77.31334833,28.59807667,"Street Food, Mithai",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +5438,Khana Khazana,1,New Delhi,"TA 61, Main Road, Tughlakabad Institutional Area, New Delhi",Tughlakabad Institutional Area,"Tughlakabad Institutional Area, New Delhi",77.25662515,28.52351906,"North Indian, Mughlai, Chinese, Bakery",800,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,281 +3383,Ahad Sons Restaurant,1,New Delhi,"3-A, Behind Mother Dairy, Uday Park, New Delhi",Uday Park,"Uday Park, New Delhi",77.2182605,28.5607572,Kashmiri,750,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,104 +4450,Jughead's Fast Food Corner,1,New Delhi,"1 & 3, Main Market, Uday Park, New Delhi",Uday Park,"Uday Park, New Delhi",77.21790746,28.56074218,"Chinese, Fast Food, North Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,438 +18254521,The Coffee Bond,1,New Delhi,"Shop 4, Uday Park Shopping Complex, Uday Park, New Delhi",Uday Park,"Uday Park, New Delhi",77.21807376,28.56028103,Cafe,700,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,73 +18352678,Wow! Momo,1,New Delhi,"Shop 1, Ground Floor, Unity One Mall, Janakpuri, New Delhi","Unity One Mall, Janakpuri","Unity One Mall, Janakpuri, New Delhi",77.076886,28.6291105,"Tibetan, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,77 +18263236,Domino's Pizza,1,New Delhi,"1st Floor, Unity One Mall, Janakpuri, New Delhi","Unity One Mall, Janakpuri","Unity One Mall, Janakpuri, New Delhi",77.0760342,28.6288818,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,24 +18277230,Haldiram's,1,New Delhi,"G-3, Unity One Mall, Janakpuri, New Delhi","Unity One Mall, Janakpuri","Unity One Mall, Janakpuri, New Delhi",77.0764473,28.6287601,"Mithai, North Indian, South Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,59 +18350231,Keventers,1,New Delhi,"22, Ground Floor, Unity One Mall, Janakpuri, New Delhi","Unity One Mall, Janakpuri","Unity One Mall, Janakpuri, New Delhi",77.0770547,28.6290915,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,37 +18380171,Pat 'N' Harry,1,New Delhi,"Shop 3, Ground Floor, Unity One Mall, Janakpuri, New Delhi","Unity One Mall, Janakpuri","Unity One Mall, Janakpuri, New Delhi",77.075439,28.629097,American,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.3,Red,Poor,42 +18306543,"34, Chowringhee Lane",1,New Delhi,"Shop 2, Plot 57, Under Dwarka Mor Metro Station Pillar No 776, Sewak Park, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0334663,28.6191075,Fast Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,5 +7297,Aggarwal Sweets,1,New Delhi,"A 93, Gurudwara Road, Mohan Garden, Near Metro Pillar 746, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0409828,28.6203298,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,5 +5774,Amritsari Dhaba,1,New Delhi,"Metro Pillar 782, Dwarka Mor, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.032612,28.6194,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,10 +312172,Apna Swad,1,New Delhi,"Shop 5, Indra Park, East Uttam Nagar, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0676143,28.6193541,"North Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,4 +18168165,ATM Food Corner,1,New Delhi,"C-24A, Jeewan Park, Pankha Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0723362,28.6180649,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18449824,Burger House,1,New Delhi,"1/69, Sewak Park, Near Dwarka Mod, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0336428,28.6190995,"Burger, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,4 +5413,Cafe De Bienka,1,New Delhi,"RZ-35/36, Indra Park Extension, Near Hanuman Mandir, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0675373,28.6216032,"Fast Food, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,12 +18285208,Chatkaara Point,1,New Delhi,"Shop AP-4, Commercial Complex, A Block, Bindapur, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0680939,28.6104281,"Fast Food, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +306185,Dharma Punjabi Dhaba,1,New Delhi,"J-7, Arya Samaj Road, Near MLA Office, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0590998,28.619233,North Indian,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,5 +312073,Domino's Pizza,1,New Delhi,"WZ-154, G-1 Block, Upper Ground Floor, Najafgarh Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0571866,28.6222421,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,6 +312054,Flavourz Factoree,1,New Delhi,"Shop 3, Plot 1, Block A, Gulab Bagh, Near Nawada Metro Station, Opposite Metro Pillar 733, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0448877,28.6200086,"Fast Food, Chinese, Bakery",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +301912,Gabbar Chowmein,1,New Delhi,"Pipal Chowk Road, Som Bazaar Chowk, Mohan Garden, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0390888,28.6213725,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18372661,Gayatri's Break Point Restaurant,1,New Delhi,"G-116/117, School Road, SDM Market, Mangal Bazaar Chowk, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0621578,28.6200658,"North Indian, South Indian, Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,4 +5499,Grover Sweets & Bakers,1,New Delhi,"Arya Samaj Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0599921,28.6209487,"Street Food, Chinese, Mithai",150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,12 +302005,Khalsa Veg Corner,1,New Delhi,"A-27, Milap Nagar, Near Desu Office, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0643164,28.6229612,"North Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +306179,Lajawab Chinese Food,1,New Delhi,"A 1/28, Peepal Wala Road, Mohan Garden, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0391009,28.6210909,"Chinese, North Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +302057,Lajwab Bakery,1,New Delhi,"Mangal Bazaar Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0630573,28.6205109,Bakery,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +302729,Maharani Rasoi,1,New Delhi,"Near Mehfil, Dwarka Mod, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0309438,28.6193756,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +313067,Natkhat Bakers,1,New Delhi,"A 65, Gurudwara Road, Mohan Garden, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0411281,28.6217969,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,4 +18133491,Pastry Palace,1,New Delhi,"WZ-175, Opposite Metro Pillar 667, Main Najafgarh Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0605838,28.6228245,"Bakery, Street Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,11 +18204464,Punjabi Tadka,1,New Delhi,"WZ-A1, Main Road, Opposite Pillor 659, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0627386,28.6236426,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,11 +5412,Radha Swami Vaishno Dhaba,1,New Delhi,"C-23, Near Pali Factory, Uttam Nagar East, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0671945,28.6197461,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18358654,Scoops,1,New Delhi,"E-1, Bal Udyan Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0580204,28.6203826,"Beverages, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,9 +309167,Shah Bakery,1,New Delhi,"Arya Samaj Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0612584,28.6185458,"Fast Food, Bakery",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +301903,Shahi Kachauri Wale,1,New Delhi,"Main Najafgarh Road, Dwarka Mod, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0322933,28.6192376,Street Food,50,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,6 +302757,Shahi Kachauri,1,New Delhi,"Najafgarh Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0569411,28.6218904,Street Food,50,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,4 +310625,Shri Bikaner Sweets,1,New Delhi,"F-2/30, Pipal Chowk, Mohan Garden, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0391304,28.6275118,"Fast Food, South Indian, Chinese, Mithai",250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +312171,Shri Krishna Vaishno Dhaba,1,New Delhi,"22-B, K Block, Palam Matiala Road, Raja Puri, Opposite Sector 4-5, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0563114,28.6036473,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +9209,Shri Murli Wala,1,New Delhi,"B-5, Patel Garden, Near Metro Pillar 787, Dwarka Mor, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0306405,28.6191566,"North Indian, South Indian, Chinese, Street Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,7 +18291240,Shri Radha Ki Rasoi,1,New Delhi,"Plot 1, Mohan Bhagwati Complex, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0347129,28.6196925,"North Indian, Chinese, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,6 +307946,Singh's Ice Cream Parlour,1,New Delhi,"A-1/28, Mohan Garden, Peepal Road, Opposite Sargam Sweets, Metro Pillar 754, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0391763,28.6211282,"Ice Cream, Desserts, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +18203182,Swastik Restaurant,1,New Delhi,"GS-70, Sewak Park, Near Dwarka Mod, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0332316,28.6188173,"Chinese, South Indian, North Indian",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,6 +302047,Tanatan Corner,1,New Delhi,"Main Najafgarh Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0569043,28.621959,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +307140,Tasty Bite,1,New Delhi,"A-72/183, Gulab Bagh, Main Najafgarh Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0386806,28.620035,"North Indian, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,12 +302835,Aggarwal Jalebi Wale,1,New Delhi,"Opposite Avtaar Dhaba, Milap Nagar, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.063507,28.6217187,Street Food,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +9108,Aggarwal Sweets,1,New Delhi,"154, Kakrola Housing Complex, Dwarka Mod, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0302045,28.6187806,"Mithai, Street Food, North Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +9116,Arora Pastry Palace,1,New Delhi,"Dwarka Mod Metro Station, Pillar Number 781, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0324848,28.6191434,"Bakery, Fast Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18401212,Chinese Chatorey Xpress,1,New Delhi,"G-1/66 Dalmill Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0715259,28.6205123,"Chinese, North Indian, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,2 +18437128,Chocochill,1,New Delhi,"Vijay Vihar, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",0,0,Desserts,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18331594,Da Pizza Zone,1,New Delhi,"F-1/3, Mohan Garden, Pipal Wala Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0392204,28.6267145,"Pizza, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +18381265,Food N Shakes,1,New Delhi,"E 23, Milap Nagar, Near Reliance Fresh, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0617981,28.6199415,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18312449,Green Chick Chop,1,New Delhi,"WZ-181, A block, Main Najafgarh Road, Metro Pillar 666, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0608986,28.6230789,"Raw Meats, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18372672,Grover Sweets,1,New Delhi,"A/7, Near Metro Pillar 652, Milap Nagar, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0638218,28.6242121,"Street Food, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18363058,J V's Fried Chicken,1,New Delhi,"19 B, Sewak Park, Near Metro Pillor 771, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0346005,28.6194036,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,2 +310581,Kamal Chat Bhandar,1,New Delhi,"Arya Samaj Road, Near Gurudwara, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0608986,28.6179737,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +301914,Khalsa Chicken Corner,1,New Delhi,"Opposite Pillar 760, Main Najafgarh Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.037568,28.6199262,"North Indian, Mughlai",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +5470,Lala Da Shudh Vaishno Dhaba,1,New Delhi,"Main Najafgarh Road, Opposite Metro Pillar 676, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0583229,28.6224126,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18358206,Madras Cafe,1,New Delhi,"K-9, Arya Samaj Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0582581,28.6189874,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +17989106,New China Town,1,New Delhi,"B-44, Sewak Park, Dwarka Mod Metro Station, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0331929,28.6173544,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18419501,Pick & Carry,1,New Delhi,"K-1/85, Mohan Garden, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0398501,28.6296412,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +307950,Punjabi Chicken,1,New Delhi,"3, Bindapark, Near Police Station, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0641627,28.6093206,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18354634,Sandwiches 'N' More,1,New Delhi,"K-41, Bal Udyan Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0580204,28.6183226,"Fast Food, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +306180,Sapna Restaurant,1,New Delhi,"WZ 167 A, Arya Samaj Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0599045,28.6226053,"North Indian, Chinese",200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +301907,Sargam Sweets,1,New Delhi,"A 11, Mohan Garden, Near Metro Pillar 753, Peepal Wala Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0392018,28.6209825,"Desserts, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18358165,Tandoori Theka,1,New Delhi,"C-8, Opposite Metro Pillar 717, Kiran Garden, Main Najafgarh Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0485758,28.6206339,"Mughlai, North Indian",450,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,2 +18372666,The Darjiling Delicious Chinese Food,1,New Delhi,"Shop 3, Plot 42-43, G Block, School Road, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0608752,28.6211626,Chinese,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18499450,Veg Darbar - The Royal Taste,1,New Delhi,"Near Metro Pillar-682, Uttam Nagar West, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.056812,28.622119,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18500618,Veg. Darbar,1,New Delhi,"Near Metro Pillar 682, Uttam Nagar West, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0570523,28.6218839,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18014109,Wah Ji Wah,1,New Delhi,"WZ, 187-A, Main Road, Opposite Metro Pillar 665, Uttam Nagar, New Delhi",Uttam Nagar,"Uttam Nagar, New Delhi",77.0611463,28.6231917,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,4 +8257,Cafe Coffee Day,1,New Delhi,"12, Ground Floor, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2869436,28.6373178,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,33 +18291214,Chalte Firte Momos,1,New Delhi,"G-4, V3S Mall, Near Box Office, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2862874,28.6367704,"Fast Food, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,23 +1547,Chutneez Restaurant Lounge & Bar,1,New Delhi,"F-104, 1st Floor, Fun Cinema Building, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2861149,28.6370319,"North Indian, Chinese, Mughlai",1200,Indian Rupees(Rs.),Yes,No,No,No,3,2.7,Orange,Average,132 +18219520,Domino's Pizza,1,New Delhi,"Ground Floor, Unit G-100-101, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2862468,28.6367821,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,25 +18378036,Fattoush,1,New Delhi,"G-103, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2862407,28.6368753,Lebanese,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +18311958,Keventers,1,New Delhi,"Shop G-3, V3S Mall, Plot 10, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2863589,28.6368388,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,25 +8979,Kutty's South Indian Cafe,1,New Delhi,"V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2859303,28.6367067,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,99 +8215,Mandrain,1,New Delhi,"Food Court, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2870265,28.6369816,Chinese,450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,7 +2009,Nazeer Foods,1,New Delhi,"G-18/19, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2854132,28.637003,"Mughlai, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,193 +6042,Nirula's Ice Cream,1,New Delhi,"G 5, Ground Floor, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2863408,28.6368424,"Desserts, Ice Cream",250,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,38 +308816,Punjabi Tadka,1,New Delhi,"Food Court, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2870265,28.6369816,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,5 +308785,Rocking Woods,1,New Delhi,"F-102, 1st Floor, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2860199,28.6369716,"North Indian, Chinese, Fast Food",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.6,Orange,Average,86 +309769,Shawarma Wala,1,New Delhi,"G 6, Ground Floor, V3S Mall, Near Nirman Vihar Metro Station, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.286309,28.6367759,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,2.5,Orange,Average,18 +3779,Subway,1,New Delhi,"G-111, Ground Floor, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2862019,28.6371001,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,163 +6127,The Yellow Chilli,1,New Delhi,"G-11, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2860211,28.6370146,"North Indian, Mughlai",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.7,Orange,Average,307 +4982,The Yummy Chilli,1,New Delhi,"Food Court, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2870265,28.6369816,"Mughlai, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,9 +4677,United Punjab,1,New Delhi,"G-41, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2860812,28.6369762,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,88 +8265,McDonald's,1,New Delhi,"Shop 98 & 107, Ground Floor, V3S East Central Mall, Plot 12, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2867383,28.6367012,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,160 +312352,Vintro,1,New Delhi,"G-110, Ground Floor, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2861742,28.6370758,Cafe,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,96 +18285699,Wow! Momo,1,New Delhi,"V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2867839,28.636911,"Tibetan, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,54 +304987,"34, Chowringhee Lane",1,New Delhi,"V 3 S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2861642,28.6367213,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,2.3,Red,Poor,45 +305386,Kebab Xpress,1,New Delhi,"Shop G-2 & G-8, Ground Floor, Plot 10, V3S Mall, District Centre, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2862848,28.6368649,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,117 +474,Moti Mahal Delux Tandoori Trail,1,New Delhi,"1st Floor, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2861107,28.6370362,"North Indian, Mughlai",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.2,Red,Poor,79 +252,Pizza Hut,1,New Delhi,"V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.286103,28.637001,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,2.4,Red,Poor,224 +5851,The Golden Dragon,1,New Delhi,"G-27/28, Ground Floor, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2857573,28.6369891,"Chinese, Seafood, Japanese",1500,Indian Rupees(Rs.),Yes,No,No,No,3,2.4,Red,Poor,43 +404,Yo! China,1,New Delhi,"G-9, V3S Mall, Laxmi Nagar, New Delhi","V3S Mall, Laxmi Nagar","V3S Mall, Laxmi Nagar, New Delhi",77.2860344,28.6367037,Chinese,900,Indian Rupees(Rs.),Yes,Yes,No,No,2,2,Red,Poor,191 +3072,Hawkers,1,New Delhi,"B-1, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1573156,28.5232091,Chinese,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,398 +234,Nirula's,1,New Delhi,"B-10, DDA Market, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1538018,28.531431,"Fast Food, North Indian, Desserts, Ice Cream",1100,Indian Rupees(Rs.),No,Yes,No,No,3,3,Orange,Average,145 +308,Sagar Ratna,1,New Delhi,"Central Market, Masudpur, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.155416,28.5251312,"South Indian, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,133 +311305,Tribe,1,New Delhi,"138/9, Aruna Asaf Ali Road, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1655919,28.5207314,"Continental, Seafood, North Indian",2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.3,Orange,Average,89 +1509,Angels in my Kitchen,1,New Delhi,"15, B-10 Market, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1538189,28.5312664,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,248 +18089255,Beijing Street,1,New Delhi,"Outlet 22, Local Shopping Center, Sector D-4, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1584474,28.5183003,"Chinese, Thai, Fast Food",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,122 +18369756,Bun Intended,1,New Delhi,"Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.16529693,28.52331992,"Burger, American, Fast Food",850,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,123 +18416856,Captain Chang,1,New Delhi,"Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.168407,28.522112,"Chinese, Thai",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.9,Yellow,Good,40 +306554,Captain Grub,1,New Delhi,"Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1710434,28.5194758,"American, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,619 +18287390,Clemency- The Restaurant & Cafe,1,New Delhi,"1249, Opposite Fortis Hospital, Aruna Asaf Ali Marg, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.16119282,28.51901836,"Continental, Italian, North Indian, Chinese, Lebanese",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.8,Yellow,Good,43 +1060,Flaming Chilli Pepper,1,New Delhi,"1249, Aruna Asaf Ali Marg, Opposite Fortis Hospital, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1611802,28.519173,"Chinese, Italian, North Indian",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.8,Yellow,Good,286 +306859,Hong Kong Express,1,New Delhi,"Shop 18-19, Sector B, Pocket 10, DDA Market, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.153852,28.5313867,"Chinese, Thai",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,164 +308621,Majeed's,1,New Delhi,"Shop 8 & 9, B-7, LSP, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1517362,28.5336506,"Mughlai, North Indian",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,170 +18218321,Majlis-e-Mughal,1,New Delhi,"1249, Opposite Fortis Hospital, Aruna Asaf Ali Marg, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1611509,28.5191138,Mughlai,900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.5,Yellow,Good,95 +18337788,Mickey's Kitchen,1,New Delhi,"Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.165415,28.514649,"Continental, American, Italian",950,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,191 +2778,Nanking,1,New Delhi,"C-6, Local Shopping Complex, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1482216,28.5367732,"Chinese, Seafood",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,361 +18292485,Nawab Dera,1,New Delhi,"B-98, Vasant Kunj Enclave, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1357431,28.5254999,"North Indian, Mughlai, Biryani",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,141 +18423898,The Cafe,1,New Delhi,"B8/9, Shop 9, DDA Market, Near GD Goenka School, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1553898,28.5291446,Cafe,1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,20 +308246,The Village Caf,1,New Delhi,"Shop 4, Plot 11, Behind Sanchit Medicos, Opposite Fortis Hospital, Aruna Asaf Ali road, Kishan Garh, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1619331,28.519062,"Cafe, American, Italian, North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,185 +18289277,Cookfresh,1,New Delhi,"Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",0,0,Asian,800,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18264997,Cafe Connect,1,New Delhi,"Ground Floor, Adjacent To Ambience Towers Car Market, Chattarpur Road, Abdul Gaffar Khan Marg, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.16498211,28.51428649,"Cafe, Bakery",700,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,193 +18144479,Happy Hakka,1,New Delhi,"28, Vasant Arcade, B7 Market, Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.1520605,28.5332879,Chinese,650,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,173 +18431179,Indian Saffron Co.,1,New Delhi,"Vasant Kunj, New Delhi",Vasant Kunj,"Vasant Kunj, New Delhi",77.166526,28.519511,"North Indian, Mughlai",900,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,62 +307032,DCK- Dana Choga's Kitchen,1,New Delhi,"Shop 40, Ground Floor, Vasant Square Mall, Vasant Kunj, New Delhi","Vasant Square Mall, Vasant Kunj","Vasant Square Mall, Vasant Kunj, New Delhi",77.156659,28.5250993,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,252 +305243,Domino's Pizza,1,New Delhi,"GF 01, Ground Floor, Vasant Square Mall, Vasant Kunj, New Delhi","Vasant Square Mall, Vasant Kunj","Vasant Square Mall, Vasant Kunj, New Delhi",77.1566714,28.5251629,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,145 +9177,Sagar Ratna,1,New Delhi,"Ground Floor, Vasant Square Mall, Vasant Kunj, New Delhi","Vasant Square Mall, Vasant Kunj","Vasant Square Mall, Vasant Kunj, New Delhi",77.1566476,28.524981,"South Indian, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,87 +308697,Shree Bhagatram,1,New Delhi,"A-5, Ground Floor, Vasant Square Mall, Vasant Kunj, New Delhi","Vasant Square Mall, Vasant Kunj","Vasant Square Mall, Vasant Kunj, New Delhi",77.1564626,28.5248609,"North Indian, Chinese, South Indian, Mithai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,199 +3507,Subway,1,New Delhi,"G-10/A, Ground Floor, Vasant Square Mall, Vasant Kunj, New Delhi","Vasant Square Mall, Vasant Kunj","Vasant Square Mall, Vasant Kunj, New Delhi",77.1561628,28.5250677,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,131 +18350121,Biryani Blues,1,New Delhi,"Shop 29, Ground Floor, Vasant Square Mall, Vasant Kunj, New Delhi","Vasant Square Mall, Vasant Kunj","Vasant Square Mall, Vasant Kunj, New Delhi",77.1569671,28.5251478,"Biryani, Hyderabadi",750,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,105 +311345,Kebab Gali,1,New Delhi,"G-39, Ground Floor, Vasant Square Mall, Vasant Kunj, New Delhi","Vasant Square Mall, Vasant Kunj","Vasant Square Mall, Vasant Kunj, New Delhi",77.1566644,28.52506,"North Indian, Mughlai, Biryani",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,380 +1492,KFC,1,New Delhi,"Ground Floor, Vasant Square Mall, Vasant Kunj, New Delhi","Vasant Square Mall, Vasant Kunj","Vasant Square Mall, Vasant Kunj, New Delhi",77.1561251,28.5251233,"American, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,277 +310169,Tipu Sultan,1,New Delhi,"Shop 42, Ground Floor, Vasant Square Mall, Vasant Kunj, New Delhi","Vasant Square Mall, Vasant Kunj","Vasant Square Mall, Vasant Kunj, New Delhi",77.1566556,28.5249865,"North Indian, Mughlai",850,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.7,Yellow,Good,364 +312535,Angels in my Kitchen,1,New Delhi,"E Block Market, Poorvi Marg, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.15988658,28.56104814,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,22 +535,Barista,1,New Delhi,"55, Community Center, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16407988,28.55705291,Cafe,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,47 +304281,Bengal Sweet Palace,1,New Delhi,"A Block Market, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16369264,28.56517455,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,28 +7392,Bread'D Bites,1,New Delhi,"E-17, E Block Market, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.15966111,28.56100556,"Bakery, Desserts, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +2122,Chinese Hut,1,New Delhi,"PVR Complex, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16423243,28.55793018,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,20 +302438,Foodland by Orchid,1,New Delhi,"D 11, LSC, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.15538889,28.56141389,"North Indian, South Indian, Mughlai",900,Indian Rupees(Rs.),Yes,No,No,No,2,2.9,Orange,Average,6 +309789,From The Kitchen of Mala Bindra,1,New Delhi,"2, 2nd Floor, Palam Marg, Rear Block, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.1624016,28.571381,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +313412,Go Kylin,1,New Delhi,"24, Basant Lok Market, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16369834,28.55900888,"Japanese, Chinese, Asian, Malaysian, Thai, Vietnamese",1500,Indian Rupees(Rs.),No,Yes,No,No,3,2.8,Orange,Average,9 +7360,Green Chick Chop,1,New Delhi,"E-16, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.159666,28.561011,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,23 +4317,Hawkers,1,New Delhi,"Opposite Priya Cinema, Vasant Lok, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16311596,28.55760213,Chinese,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,26 +18458099,HotPlate,1,New Delhi,"Vasant Apartments, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",0,0,"Fast Food, North Indian",150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +2124,New Janta Restaurant,1,New Delhi,"C-22, Main Market, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.1583987,28.5677118,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,31 +2204,Rainbows,1,New Delhi,"Shop 3, D Block Market, Community Centre, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.15505794,28.56157466,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,28 +305403,Sinfully Yours,1,New Delhi,"11, Munirka Marg, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.15976667,28.55818056,"Bakery, Desserts",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,18 +775,Slice of Italy,1,New Delhi,"E-249, Rama Market, Nelson Mandela Marg, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.17082061,28.55888991,"Italian, Pizza, Bakery",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,299 +18247024,Spice Deli,1,New Delhi,"38, Upper Ground Floor & First Floor, Basant Lok, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.164272,28.557864,"North Indian, Chinese",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,52 +303244,Twenty Four Seven,1,New Delhi,"Near Indian Oil Petrol Pump, Mool Chand Motors, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16321856,28.55788513,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +300262,Uncle Tom's Steamed Hot Dogs,1,New Delhi,"Opposite RPM Lounge, Priya Market, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16419167,28.55761667,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,40 +18458332,AOWLS,1,New Delhi,"Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.15067118,28.52951508,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,37 +7391,Costa Coffee,1,New Delhi,"Community Center, Priya Market, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.164368,28.557223,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,80 +18198434,Georgia Dakota,1,New Delhi,"Shop 5, D Block Market, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.15496004,28.56139062,"Bakery, Desserts",450,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,34 +18371408,Instapizza After Hours,1,New Delhi,"Shop 25, 1st Floor, CSC Basant Enclave, S.F.G.H Scheme, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.161681,28.572131,"Pizza, Fast Food",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,21 +308007,The Pint Room,1,New Delhi,"2nd Floor, Opp HDFC Bank, Street D7, Junction of Poorvi & Paschmi Marg, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.15516992,28.56151959,"Finger Food, Continental, Italian",1700,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,76 +18227685,Anthony's Kitchen,1,New Delhi,"Stall 3, PVR Priya, Basant Lok, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16367822,28.55747579,"North Indian, South Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18394443,Bakermania,1,New Delhi,"A-9/1, 1st Floor, Near Holy Child School, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",0,0,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18312585,Cafe Coffee Day,1,New Delhi,"61, Inside PVR Community Centre, Basant Lok, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16442622,28.55736507,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18358669,Cones & Curries,1,New Delhi,"Priya Cinema Complex, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16460492,28.55747844,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18279461,Giani,1,New Delhi,"17/20, Community Centre, Basant Lok, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16341134,28.55748345,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18463329,Kaptain Bakery,1,New Delhi,"16A, Basant Lok, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16429355,28.55870848,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18277185,Kayasth Cuisine,1,New Delhi,"Annexe, 1st Floor, D-7/1, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.15520881,28.56118272,Mughlai,1000,Indian Rupees(Rs.),No,No,No,No,3,0,White,Not rated,2 +18358667,Mahinder Food Corner,1,New Delhi,"Priya Complex, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16458414,28.55775173,"North Indian, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18415363,Mohanty Bakery & Confectionery,1,New Delhi,"352, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",0,0,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18440933,Practically Perfect,1,New Delhi,"64, Munirka Marg, Behind PVR Priya, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16454,28.55811,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18397698,Take Away Depot,1,New Delhi,"13, Basant Lok, Priya Cinema Complex, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",0,0,"Chinese, Mughlai, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18492083,The Artful Baker,1,New Delhi,"D Block Market. Near HDFC, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",0,0,"Bakery, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18289247,Perch Wine & Coffee Bar,1,New Delhi,"Priya Complex, Vasant Vihar, New Delhi",Vasant Vihar,"Vasant Vihar, New Delhi",77.16411,28.559058,"Cafe, European",2000,Indian Rupees(Rs.),No,No,No,No,4,4.3,Green,Very Good,114 +8530,Aggarwal Confectionary,1,New Delhi,"38, DDA Market, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.317668,28.5997151,"Street Food, Bakery",50,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,7 +8501,Aggarwal Sweet Corner,1,New Delhi,"31, DDA Market, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3175176,28.5997276,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,16 +8520,Ananda's,1,New Delhi,"1, DDA Market, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3176784,28.6001,"South Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,31 +311184,Ankur Family Restaurant,1,New Delhi,"B 17, Om Sai Complex, New Ashok Nagar, Opposite Metro Pillar No 162, Near, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3062099,28.5892967,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,7 +18217007,Ayush Restaurant,1,New Delhi,"A-405, Near East End Apartment, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.30796732,28.59103534,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,13 +18342098,Chef's Paradise,1,New Delhi,"B 75, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.30650049,28.59154464,"North Indian, Mughlai, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,36 +311231,Domino's Pizza,1,New Delhi,"Shop 6B, 7&8, Ground Floor, New Ashok Nagar Metro Station, Near, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3021052,28.5891084,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,17 +310876,Fatafat Fast Food,1,New Delhi,"A-60, Sarpanch Chowk, New Ashok Nagar, Near, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.30853528,28.58950538,"Chinese, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,32 +18265408,Giani,1,New Delhi,"G-22, Vardhaman Sunrise Plaza, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3205872,28.6002622,"Ice Cream, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +312517,Green Tea Fanatics,1,New Delhi,"G-36, Vardhman Sunrise Plaza, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.32028972,28.60043838,"Beverages, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,31 +312783,Khansama,1,New Delhi,"Shop 1-5, RS Tower, Opposite East End Apartment, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3040391,28.5891093,"North Indian, Mughlai",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,30 +307920,Pauls Food,1,New Delhi,"G-3, East End Plaza, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3164521,28.6013457,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,14 +311253,Punjabi Vaishno Rasoi,1,New Delhi,"Main Road, Near BSES Office, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3145157,28.601793,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +307290,Republic of Chicken,1,New Delhi,"G-8, Vardhaman Sunrise Plaza, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3203951,28.6000397,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,10 +8532,Taj Sweets,1,New Delhi,"28, DDA Market, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3226158,28.6011417,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,16 +18323036,The Cake,1,New Delhi,"E-473, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.31136166,28.59819588,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18325165,The Food Court,1,New Delhi,"D-30, Near Bharti Chowk, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.30725687,28.59087872,"Fast Food, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,32 +311248,Adi's Restaurant,1,New Delhi,"B 80, Near ABD Chowk, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3071359,28.5908127,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18424207,Aggarwal Sweet & Bakers,1,New Delhi,"A-60, Near Doctor's Market, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",0,0,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18420697,Aggarwal Sweets,1,New Delhi,"Shop no. 1,Near Dharamshila Hospital, Main Road Vasundhara Enclave, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3143328,28.6017649,Desserts,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424648,Aggarwal Sweets,1,New Delhi,"B 80, Shree Anand Bhawan, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.30720289,28.59080159,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18376497,Always Eat Green,1,New Delhi,"A-60 New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3078976,28.5901234,"North Indian, South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18377898,Anjali Resaturant,1,New Delhi,"B-72, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3066274,28.5914444,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18423889,Annapoorna Bhojanalya,1,New Delhi,"B-17, Om Sai Complex, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3062381,28.5891961,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424638,Anupam Eating Point,1,New Delhi,"A-60, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3074392,28.5908336,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424661,Bikaner Rasoi,1,New Delhi,"Plaza Market, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3159908,28.601005,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18375390,Cafe Mom,1,New Delhi,"B-62, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3057921,28.5923035,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18377902,Cafe Youth,1,New Delhi,"Main Road, Near BSES Office, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.312519,28.6021139,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18430246,Cake Express,1,New Delhi,"E - 477, Shop 21, Krishna Complex, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3097342,28.59794885,Bakery,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18425318,Cake Knighter,1,New Delhi,"Opposite East End Apartments, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",0,0,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18336496,Catchup Green,1,New Delhi,"Shop SW4, Plot 1, LSC, Vardhaman Plaza, Opposite Delux Apartments, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.315899,28.600942,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18429388,D Food,1,New Delhi,"C-306, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",0,0,"North Indian, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18499026,Delicious Cake,1,New Delhi,"E-77, Main Road, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",0,0,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424202,Famous Parantha and Poori Sabzi,1,New Delhi,"44, Gali Number 1, Block A, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3085095,28.5893763,North Indian,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18434964,FM Biryani Point,1,New Delhi,"D-78, Opposite Akbari Masjid, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",0,0,Biryani,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18377909,Food Plaza,1,New Delhi,"Shop 5, DDA Market, Near Maharaja Agarsen College, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3222402,28.6013619,"Chinese, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18390095,Foodiez,1,New Delhi,"G 24, Sunrise Vardhman Plaza, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3206228,28.6002914,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18423894,Goli Vada Pav No. 1,1,New Delhi,"G-16, Vardhman Sunrise Plaza, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",0,0,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18414502,Hyderabad's Delight,1,New Delhi,"102, Abhinav Apartment, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",0,0,"Hyderabadi, Biryani",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18419424,Khan Tandoori Hub,1,New Delhi,"D-77, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.30728882,28.5915558,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18377900,Khan Tandoori Nights,1,New Delhi,"C-II -205, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.30676837,28.59133326,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424582,Meatwale.com,1,New Delhi,"G-23, Vardhman Sunrise Plaza, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.32050229,28.60012224,Raw Meats,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424654,New Aggarwal Sweets & Fast Food,1,New Delhi,"B 79, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3067747,28.5900965,"Mithai, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424650,Night Munchers,1,New Delhi,"D-30, Near Bharti Chowk, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3071878,28.5908905,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18423118,Old Moradabadi Chicken Corner,1,New Delhi,"B116, Opposite Metro Pillar 164, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.30620712,28.5890838,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18251459,Richa's Bakery,1,New Delhi,"Shop 21, E-447, Krishna Complex, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.31154975,28.59744877,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18424208,Riyaz Biryani Corner,1,New Delhi,"A-440, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.30837971,28.58980772,"Biryani, North Indian",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424656,Rudra The Dhaba,1,New Delhi,"C-2, 205-206, Sarpanch Complex, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3065745,28.5914473,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18375387,Seven Star Pizza,1,New Delhi,"B-69, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.305843,28.5923018,Pizza,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424200,Shahi Muradabadi Chicken Biryani,1,New Delhi,"Block-1, Sarpanch Chowk, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3080751,28.5897432,Biryani,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18377895,Shree Krishna Restaurant,1,New Delhi,"Below Metro Station, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3033247,28.5891562,"North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +300961,Shree Sai Bhog,1,New Delhi,"4, DDA Market, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3174634,28.6000138,"Chinese, North Indian, South Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18424640,Soni Food Court,1,New Delhi,"B-365, Sangam Street, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.30764378,28.59086665,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424584,South Street Cafe,1,New Delhi,"Shop 4, DDA Market, Near Maharaja Agrasen College, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3224363,28.6014833,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18424188,Special Chicken Biryani,1,New Delhi,"B-147, Lane 3, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.30622523,28.5890367,Biryani,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18372694,Sweets n Treats,1,New Delhi,"Main Market, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3068428,28.59118048,Street Food,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18371398,The Royal Prestige,1,New Delhi,"A-435, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3078541,28.5899346,"North Indian, South Indian",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18409206,Twenty Four Seven,1,New Delhi,"M/S Noida Automobiles, Indian Oil Petrol Pump, Sector 14 A, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.304436,28.583353,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18429386,Two Friends Roll Corner,1,New Delhi,"A-124, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",0,0,"Fast Food, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18396190,Waikiki,1,New Delhi,"A-103, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",0,0,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424192,Zaika Chicken Corner,1,New Delhi,"B 1363, East End Apartments, Main Road, New Ashok Nagar, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",77.3080954,28.58927604,"Biryani, North Indian",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18499493,Zombiez,1,New Delhi,"E 379, Khosla Complex, Samrat Apartment, Vasundhara Enclave, New Delhi",Vasundhara Enclave,"Vasundhara Enclave, New Delhi",0,0,"Chinese, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18322647,366 Junction,1,New Delhi,"A-1, 2nd Floor, Near Old Gupta Colony, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2010382,28.6928867,"Cafe, North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,43 +6654,Black & Brew,1,New Delhi,"Shop 1, Single Story, Near Hanuman Mandir, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2023857,28.6895227,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,25 +300941,Hari Om Bhojanalaya,1,New Delhi,"H-149, Old Gupta Colony, Opposite Kalyan Vihar, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.197804,28.6921294,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,43 +18263693,Nalwa's Hotspot,1,New Delhi,"B-85, Old Gupta Colony, Near Kalyan Vihar, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.1965012,28.6928555,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +18245248,Pasta Hub,1,New Delhi,"27-C, Main Road, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.201128,28.6916414,Italian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,16 +305275,Rock n Wood Cafe,1,New Delhi,"3/39, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.201667,28.6899018,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,168 +18337490,Roll Corner,1,New Delhi,"C-24, Single Storey, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2011936,28.6918964,Fast Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,12 +312364,Shree Nandhini Cafe,1,New Delhi,"3/1, Double Storey, Opposite Hanuman Mandir, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2016171,28.6898007,"South Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,27 +312422,Sindhi Dhaba,1,New Delhi,"Main Road, Near Double Storey, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2012294,28.6909462,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,19 +18359295,Take N Taste,1,New Delhi,"3/30, Double Storey, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2011834,28.6901314,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,15 +307369,Taxi Bar & Cafe,1,New Delhi,"G-15/B, Ground Floor, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2041084,28.6944411,"North Indian, Chinese, Fast Food",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,732 +308811,The Little Diner,1,New Delhi,"H-15, Shop 5, Near NDPL Office, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2050359,28.6928661,"Continental, Chinese, Italian, Cafe",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.4,Orange,Average,430 +18273624,Cafeteria & Co.,1,New Delhi,"G 14, Hudson Lane, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2043384,28.6944707,"Continental, Mexican",900,Indian Rupees(Rs.),No,No,No,No,2,4.6,Dark Green,Excellent,1136 +18175303,Burger Point,1,New Delhi,"Shop 3, B-35/B, Single Storey, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2013077,28.6910317,"Burger, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,114 +310532,Cafe All-Inn,1,New Delhi,"F-16 B, 1st Floor, Hudson Lane, Opposite NDBL, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2047215,28.6935077,"Cafe, Mexican, Italian, North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,429 +312420,Chowringhee,1,New Delhi,"C 29 B, Near HDFC Bank, Main Road, Vijay Nagar Colony, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2012817,28.6914056,Fast Food,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,65 +308155,Flamess Restaurant & Cafe Village,1,New Delhi,"G-15, 1st Floor, Near Laxmi Diary, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2040661,28.6945366,"North Indian, Chinese, Continental, Italian, Mexican, Lebanese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,349 +305856,Jack 'n' Chill,1,New Delhi,"F-19, 1st Floor, Opposite NDPL Office, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2048067,28.6936233,"American, Italian, Cafe",500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,480 +308950,Kake Di Hatti,1,New Delhi,"G-20, Near Traffic Signal, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2036388,28.6949624,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,314 +17977767,Mad Monkey,1,New Delhi,"Shop 3, H-15, Opposite NDPL Office, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2050605,28.6926492,"Cafe, Continental, Italian",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.7,Yellow,Good,344 +18359288,Manohar Cakes & Bikaneri,1,New Delhi,"C 28-29, Double Storey, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2013137,28.6914552,"Mithai, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,18 +1199,Shagun,1,New Delhi,"F-16, Opposite NDPL Office, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2047215,28.6934181,"Chinese, Thai, Tibetan, Japanese",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,419 +312365,Shyam Chaat Bhandar,1,New Delhi,"Shop 1, Main Market, Near Gurudwara, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2042723,28.6924796,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,27 +17989097,Telegram,1,New Delhi,"F-21/B, Opposite NDPL Office, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2044519,28.6939297,"Cafe, North Indian, Continental, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,359 +18233584,The University Bistro,1,New Delhi,"F-15, Opposite NDPL Office, Hudson Lane, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2048113,28.6934267,"Cafe, Italian, Continental, Mexican, Mediterranean",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,555 +18241524,736 A.D.,1,New Delhi,"G-15/B, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2039955,28.6947175,"North Indian, Continental, Italian, Chinese",900,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,506 +301700,Big Yellow Door,1,New Delhi,"H-8 B, Near GTB Nagar Metro Station, Opposite Hudson Lane's NDPL Office, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.204991,28.6934439,"Cafe, Italian, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,3986 +303849,Mr. Crust Bakers,1,New Delhi,"B-29/B, Opposite Mother Dairy, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2014873,28.6906011,"Bakery, Desserts, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,4.2,Green,Very Good,741 +18258484,Phonebooth Caf,1,New Delhi,"G-14 B, Hudson Lane, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.2040075,28.6943812,"North Indian, Continental, Chinese, Italian",800,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,636 +18157386,Tony's,1,New Delhi,"C-23, Single Storey, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.201128,28.6919997,Fast Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,4.4,Green,Very Good,163 +18455949,Wake 'n' Bake Cafe,1,New Delhi,"D-6A, Single Storey, Vijay Nagar, New Delhi",Vijay Nagar,"Vijay Nagar, New Delhi",77.20197815,28.69302023,"Fast Food, Bakery",350,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,90 +18337907,Gabbar Di Hatti,1,New Delhi,"R-39, Opposite Metro Pillar - 47, Shakurpur, Vikas Marg",Vikas Marg,"Vikas Marg, New Delhi",77.3103529,28.6580412,"North Indian, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,19 +18441677,Chennai Express,1,New Delhi,"H Block, Vikas Marg, New Delhi",Vikas Marg,"Vikas Marg, New Delhi",77.2776898,28.6307187,"Chinese, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18355037,1990's,1,New Delhi,"KG-1/423, Ground Floor, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0796054,28.6384984,"North Indian, Mughlai",250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,15 +18124369,Amul Cafe,1,New Delhi,"142A, GG-1, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0766826,28.6386194,"Desserts, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,23 +18221405,Burger Point,1,New Delhi,"A-34, Near NIIT, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0700473,28.6282838,"Burger, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,28 +302166,Buta Singh Da Dhabba,1,New Delhi,"Shop 617, Site 1, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0698926,28.628157,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,14 +8696,Cafe Amigo,1,New Delhi,"G-13, Pratibha Tower, PVR Complex, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.07604811,28.6390282,Cafe,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,41 +6925,Cafe Coffee Day,1,New Delhi,"C 9, New Krishna Park, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0764578,28.6294177,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,16 +300459,Cake Palace,1,New Delhi,"17 A, DG 2, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.06883967,28.63507537,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,11 +2403,Carara,1,New Delhi,"19, G Block Community Centre, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0743745,28.6389086,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,20 +8695,Channi Pishori Chicken,1,New Delhi,"29, J Block, LSC, DDA Market, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0798778,28.6420433,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,55 +311396,Chatkora Food N Snacks Corner,1,New Delhi,"Shop 15, H-3 Block, DDA Lal Market, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0791934,28.6459296,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18333392,Chetana Bakes,1,New Delhi,"Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0701624,28.6445722,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18287378,Chily Hut,1,New Delhi,"Shop 3 & 6, Ground Floor, G Block, PVR Sonia Complex, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.07597736,28.63884135,"Chinese, North Indian",750,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,20 +307195,De' Bistro,1,New Delhi,"F-1, 1st Floor, PVR Complex, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0747491,28.6390149,"Chinese, Fast Food",850,Indian Rupees(Rs.),Yes,No,No,No,2,3.3,Orange,Average,16 +300440,Deep Bakers,1,New Delhi,"DG 3/341, Near Mahindra Apartments, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0656655,28.6384063,"Fast Food, Bakery",100,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,17 +4793,Delhi 6,1,New Delhi,"54-A/3, Central Market, Budhela, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0710682,28.6365514,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,44 +18478982,Finest Pizzeria,1,New Delhi,"Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.06846483,28.6322224,Pizza,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,5 +18322639,Food Lab,1,New Delhi,"Shop 1, F-233, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0709881,28.642645,"Chinese, Biryani, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +18285737,Goli Vada Pav No. 1,1,New Delhi,"Shop 3A, Ground Floor, Pocket GG1, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0789309,28.6385677,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,26 +18204810,Grover Sweets,1,New Delhi,"KG-1/19, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",0,0,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +301380,Hema Chinese Foods,1,New Delhi,"33, F Block, Galaxy Market, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0698926,28.6440984,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,21 +18277000,Hunger Stop,1,New Delhi,"Shop 17, DDA Market, M Block, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",0,0,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,13 +300461,Ishwar Sweets,1,New Delhi,"KG-1/411, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0792678,28.638455,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,33 +3654,Kathi Express,1,New Delhi,"598, Site 1, A Block, Opposite NIIT, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.06992965,28.62748827,"Fast Food, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,33 +18264996,Kream's,1,New Delhi,"Shop 6, D-121, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0687123,28.6342343,"Bakery, Fast Food, Pizza",200,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +301377,Madras Cafe,1,New Delhi,"1, H Block, DDA Market, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0758587,28.6429519,"South Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,33 +8680,Mandeep Punjabi Rasoi,1,New Delhi,"H 1, DDA Market, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0756895,28.6431503,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +18246995,Masti Curry,1,New Delhi,"Unit No- 2, F234, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.071162,28.6429129,North Indian,350,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,31 +4785,New Madras Cafe,1,New Delhi,"KG 1/403, Main Market, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0789759,28.6383481,"South Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,34 +2402,Pakwan,1,New Delhi,"Opposite PVR Cinema Ticket Counter, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.074213,28.6392656,"Chinese, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,20 +300406,Patiala Shahi Soups,1,New Delhi,"17, J Block, DDA Market",Vikaspuri,"Vikaspuri, New Delhi",77.0797403,28.6419595,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +311390,Pizza Yum,1,New Delhi,"AG-1, Shop 2, DDA Mini Market, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.06778422,28.62786555,"Pizza, Fast Food",650,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,24 +4164,Polka Pastry & Snack Bar,1,New Delhi,"GG-II/7-A, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0792789,28.6425242,"Bakery, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,44 +18365391,Red Hot,1,New Delhi,"KG-1/88, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0782115,28.6384983,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,15 +8508,Republic of Chicken,1,New Delhi,"1/423, KG Block, Main PVR Road, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0795111,28.6385334,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,17 +1305,Sai Ann Kutir,1,New Delhi,"5, F Block, DDA Market, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0707437,28.64041091,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,37 +18245289,Saravana South Indian Hut,1,New Delhi,"GG-2-3-A, New Durga Mandir, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0792261,28.6422953,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +18057797,Sardar Pure Meat Shop,1,New Delhi,"GG 1/ 143 A, PVR Road, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0765052,28.638646,"Raw Meats, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,9 +300472,Shama Chicken Corner,1,New Delhi,"601, Side 1, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.06975497,28.62759745,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,23 +18247014,Shan E Punjab,1,New Delhi,"Shop G-1, Solider Tower, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0751536,28.6392198,"North Indian, South Indian",550,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,23 +4790,Shanghai Nights,1,New Delhi,"PVR Cinema, Near ICICI Bank, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0739295,28.63949696,Chinese,450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +8707,Shree Ram Sweets & Bakers,1,New Delhi,"C1-401, Janta Flat, Hastal LIG Flat, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0600536,28.6358966,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +302183,Sindhi Kulfi Wala,1,New Delhi,"PVR Road, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0771773,28.6385328,Desserts,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +4792,South Indian Cafe,1,New Delhi,"591, Site 1, Vikaspuri Mod, New Delhi, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0698477,28.6275705,"South Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,42 +2362,South Indian Hut,1,New Delhi,"GG-1/143A, Main Market, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0765725,28.6387222,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,35 +4338,Spinns Resto-Bar,1,New Delhi,"G-2 A & G-2 B, AEZ Square, Community Centre, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0747491,28.639194,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,2.6,Orange,Average,43 +309198,Subway,1,New Delhi,"Main Road, Near PVR, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0751965,28.63885695,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,28 +300457,Taneja Bakery,1,New Delhi,"21, Group 2, Pocket C, DDA Hastsal, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0588879,28.6354403,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,17 +312201,Tequila Express,1,New Delhi,"G-19/20, 1st Floor, Radha Chamber, Community Center, Behind PVR Sonia, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0752887,28.6397834,"North Indian, Chinese",1150,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,40 +3657,The China Town,1,New Delhi,"Shop 42, C Block Market, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.07022168,28.63504182,Chinese,600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,26 +310640,THS - The Hunger Street,1,New Delhi,"G-12, DDA Market, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",0,0,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,49 +309323,True Blue,1,New Delhi,"G-8/A, G-1, Sonia PVR, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0745243,28.6391275,"North Indian, Chinese",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,31 +311333,Twenty Four Seven,1,New Delhi,"A-31, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.069947,28.6274498,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +5925,Your's Chole Bhature,1,New Delhi,"28-29, GG1, Main Market, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0784813,28.6386139,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,42 +312448,Baskin Robbins,1,New Delhi,"GG 2/10A, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.079298,28.6425617,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,36 +311600,Pure Punjabi,1,New Delhi,"Site 1, Opposite Block A, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.069463,28.6284455,"North Indian, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,56 +18365871,Brick Station,1,New Delhi,"B-1, M Block Market, Balaji Market, Opposite Kerela Public School, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0761542,28.6331243,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18466393,Food Factory,1,New Delhi,"PVR Cinema, Near ICICI Bank, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0742061,28.63927361,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18258762,Pastry Point,1,New Delhi,"F-255, Near Dussehra Ground, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0709719,28.6403518,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18489507,Prem Jee Da Dhaba,1,New Delhi,"Shop 10, J Block, DDA Market, Near Durga Mandir, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",0,0,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +3665,Welcome Food Point,1,New Delhi,"8, Community Centre, Near PVR Ticket Counter, Vikaspuri, New Delhi",Vikaspuri,"Vikaspuri, New Delhi",77.0743071,28.6390833,"Chinese, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,26 +309473,Arora Snacks,1,New Delhi,"B Block Market, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.318175,28.67132778,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,14 +8502,Bansal Mithai Wale,1,New Delhi,"7, B Block Market, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.318925,28.67130833,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +18303857,Fabulous Cake Bites,1,New Delhi,"C- 339, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.317225,28.66721,"Bakery, Desserts, Fast Food, Pizza, Burger, Finger Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,33 +6264,Garam Masala Food Corner,1,New Delhi,"C-84, Main Road, Jhilmil Colony, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31211167,28.66965416,"North Indian, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,114 +18419896,Health Buzzz,1,New Delhi,"Shop 7, C Block Market, Near Gurudwara, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.314705,28.668496,Healthy Food,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,7 +18291215,Kumar Pav Bhaji Corner,1,New Delhi,"Main Road, Jhilmil Colony, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31173314,28.66981271,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +18264964,Le Chef,1,New Delhi,"C-211, Jhilmil Colony, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31214788,28.66857042,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18420420,Nainy Fast Food,1,New Delhi,"G-3, D Block market, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31825527,28.66722898,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,12 +310604,Platform Nine and Three Quarters,1,New Delhi,"DDA Market, Satyam Enclave, Near Sukhdev College, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.30372541,28.66736018,"Cafe, North Indian, Continental",600,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,54 +18225627,Pudding & Pie,1,New Delhi,"19, Near Yamuna Sports Complex, Vigyan Vihar, Near Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.21,28.63,"Bakery, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,5 +6251,Rapture,1,New Delhi,"B-11, B Block Market, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31825426,28.67116736,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.5,Orange,Average,51 +6253,Sachdeva Chinese Fast Food,1,New Delhi,"B 15-4, B Block, Local Shopping Center, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31819056,28.67121678,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,21 +18249080,Simply Cakes,1,New Delhi,"1st Floor, D-148, Surajmal Vihar, Near Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.30861206,28.66011757,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,10 +18364535,The Dosa King,1,New Delhi,"C-82, Bhagat Singh Marg, Jhilmil Colony, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31204974,28.66952381,"South Indian, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18128871,Bhappe Di Hatti,1,New Delhi,"C-76, Jhilmil Colony, Gopaljee Dairy Road, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31217302,28.66934292,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,37 +18124355,Cafetorium,1,New Delhi,"D2/G1, D Block Market, Opposite Arwachin School, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31794111,28.66686832,"Cafe, Italian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,122 +304598,Food Express,1,New Delhi,"G-5, Pankaj Tower, LSC Savita Vihar, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.3174241,28.6601382,"Chinese, North Indian",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,126 +18380891,Sai Bajaj Restaurant,1,New Delhi,"C 71, Jhilmil Colony, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31206504,28.66910046,"Chinese, North Indian",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,35 +18458629,The Chimney Bar-Be-Que,1,New Delhi,"Shop 17, C Block Market, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",0,0,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,26 +6240,Urban Punjab,1,New Delhi,"C-207, Jhilmil Colony, Near Reliance Fresh, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31226757,28.66815358,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,168 +18420428,Cheese Bitez Pizza,1,New Delhi,"D-333, D Block Market, Opposite Arwachin School, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31822677,28.667041,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18418262,Goyal Sweets,1,New Delhi,"B 21, B Block Market, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31827907,28.67127679,"Mithai, Bakery",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18418276,Gulati's Takeaway,1,New Delhi,"C-211, Near Gopal Dairy, Jhilmil Colony, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",0,0,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18421469,Jyoti Sweets,1,New Delhi,"B 170, Jhilmil Colony, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.3121633,28.66982713,Mithai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421467,Momos Hi Momos,1,New Delhi,"B Block Market, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31812015,28.67132945,Chinese,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18446390,New Bhappe Di Hatti,1,New Delhi,"C-79, Jhilmil Colony, Gopaljee Dairy Road, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.312115,28.669247,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421471,Oven Fresh,1,New Delhi,"B 168, Jhilmil Colony, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31192157,28.66958297,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18377897,Rupa Ice Cream Parlour,1,New Delhi,"B-169, Main Road, Jhilmil Colony, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31203791,28.66984331,Desserts,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18419871,Scoopers 'n' Bakers,1,New Delhi,"C-199, Jhilmil Colony, Near Gopal Jee Dairy, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31213246,28.66842304,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18420424,South Indian Food Plaza,1,New Delhi,"6/2, D Block Market, Opposite Arwachin School, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31824689,28.66696569,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18377901,Super Snacks,1,New Delhi,"15/3, B Block, DDA Market, Phase 1, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31827103,28.67126826,"North Indian, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18291232,Unique Pastry,1,New Delhi,"B-19, B Block Market, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31820431,28.67148683,"Bakery, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18445361,Veg Food Express,1,New Delhi,"D Block, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",0,0,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +1613,Chintamani's Namkeen,1,New Delhi,"A-10, Jhilmil Industrial Area, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31653329,28.67556419,"Chinese, Fast Food, North Indian, South Indian, Street Food, Mithai",350,Indian Rupees(Rs.),No,No,No,No,1,2.4,Red,Poor,29 +18216911,Deltasious,1,New Delhi,"C-210, Jhilmil Colony, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31898986,28.67993906,"North Indian, Chinese, Bakery",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.2,Red,Poor,64 +310440,Tandoori Junction,1,New Delhi,"C-79, Gopal Jee Road, Jhilmil Colony, Vivek Vihar, New Delhi",Vivek Vihar,"Vivek Vihar, New Delhi",77.31220789,28.66945735,"North Indian, Chinese",300,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,10 +4740,Apni Rasoi,1,New Delhi,"3767, A/2, Main Road, Kanhaiya Nagar, Metro Station, Tri Nagar, Wazirpur, New Delhi",Wazirpur,"Wazirpur, New Delhi",77.1648729,28.6815855,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,19 +2044,Haldiram Bhujiawala,1,New Delhi,"A-94/5, Industrial Area, Wazirpur, New Delhi",Wazirpur,"Wazirpur, New Delhi",77.1586101,28.7003198,"Street Food, North Indian, South Indian, Mithai",400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,35 +306064,Meghraj Food Court,1,New Delhi,"Opposite Meghraj Sweets, Main Road, Industrial Area, Wazirpur, New Delhi",Wazirpur,"Wazirpur, New Delhi",77.1685563,28.6990634,"North Indian, Street Food, Mithai",250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,24 +6553,Meghraj Sweets,1,New Delhi,"C 5, Main Road, Industries Area, Wazirpur, New Delhi",Wazirpur,"Wazirpur, New Delhi",77.1684265,28.6994159,"Mithai, Street Food, North Indian",150,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,8 +18363089,Chill Out,1,New Delhi,"2089/161 Shanti Nagar, Wazirpur, New Delhi",Wazirpur,"Wazirpur, New Delhi",77.1633809,28.6797201,Ice Cream,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18294257,Chilli Chinese,1,New Delhi,"Main Shanti Nagar Road, Tri Nagar, Wazirpur, New Delhi",Wazirpur,"Wazirpur, New Delhi",77.1636597,28.6792749,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +349,"34, Chowringhee Lane",1,New Delhi,"G-37, Ground Floor, Westend Mall, Janakpuri, New Delhi","West End Mall, Janak Puri","West End Mall, Janak Puri, New Delhi",77.080281,28.6299004,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,86 +3455,Subway,1,New Delhi,"G 8, West End Mall, District Centre, Janakpuri, New Delhi","West End Mall, Janak Puri","West End Mall, Janak Puri, New Delhi",77.0795544,28.6301884,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.1,Red,Poor,152 +1115,The Golden Dragon,1,New Delhi,"SF-47, West Gate Mall, Rajouri Garden, New Delhi","West Gate Mall, Rajouri Garden","West Gate Mall, Rajouri Garden, New Delhi",77.12311551,28.65297802,"Chinese, Seafood, Japanese",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,178 +311506,KFC,1,New Delhi,"Upper Ground Floor, W-2/14, West Patel Nagar, New Delhi",West Patel Nagar,"West Patel Nagar, New Delhi",77.1689845,28.6455224,"American, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,86 +3974,Mitra Da Dhaba,1,New Delhi,"Shop X-57, West Patel Nagar, New Delhi",West Patel Nagar,"West Patel Nagar, New Delhi",77.1639289,28.6495338,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,216 +18163893,Mr. Sub,1,New Delhi,"W-2/14, Ground Floor, Near Patel Nagar Metro Station, West Patel Nagar, New Delhi",West Patel Nagar,"West Patel Nagar, New Delhi",77.1689671,28.6454168,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,83 +313093,Kennedy's,1,New Delhi,"B-1, West Patel Nagar, New Delhi",West Patel Nagar,"West Patel Nagar, New Delhi",77.1647873,28.6522346,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,4.1,Green,Very Good,491 +18384135,Keventers,1,New Delhi,"Level 2, Food Capital, Worldmark 1, Hospitality District, Aerocity, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",77.12179529,28.5503472,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,5 +18337772,Street Foods by Punjab Grill,1,New Delhi,"Level 2,Food Capital, Worldmark 1, Aerocity, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",77.12179529,28.5503472,"Street Food, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,17 +18316173,Subway,1,New Delhi,"Level 2, Food Capital, Worldmark 1, Aerocity, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",77.12142371,28.54989546,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,25 +18336491,Wow! Momo,1,New Delhi,"Level 2, Food Capital, Worldmark 1, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",77.12179529,28.5503472,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +18306524,Biryani Blues,1,New Delhi,"Kiosk 4, Level 2, Food Capital, Worldmark 1, Aerocity, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",77.12179529,28.5503472,"Biryani, Hyderabadi",1000,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,22 +18390311,Asia Seven Express,1,New Delhi,"Food Capital, Worldmark 1, Aerocity, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",77.12178456,28.55041317,Chinese,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18446491,Bikanervala,1,New Delhi,"Level 2, Food Capital, Worldmark 1, Aerocity, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",77.12142371,28.54989546,"North Indian, South Indian, Fast Food, Street Food, Chinese, Beverages, Desserts, Mithai",550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18334400,Cafe Huddle,1,New Delhi,"6, Food Capital, Worldmark 1, Aerocity, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",77.12179529,28.5503472,Fast Food,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18474934,Chai Garam,1,New Delhi,"Food Court, Level 2, World mark 1, Aerocity, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",0,0,"Tea, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18416747,Dolce Gelato,1,New Delhi,"Level 2, Food Capital, Worldmark 1, Aerocity, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",77.12165984,28.55052862,"Ice Cream, Beverages, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18415376,GoGourmet,1,New Delhi,"Cart 7, Level 2, Food Capital, Worldmark 1, Aerocity, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",77.120547,28.548297,"Healthy Food, Beverages",600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,3 +18446483,Karim's,1,New Delhi,"Food Capital, Worldmark 1, Aerocity, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",77.12142371,28.54989546,"Mughlai, North Indian",1000,Indian Rupees(Rs.),No,No,No,No,3,0,White,Not rated,1 +18409199,Khan Chacha,1,New Delhi,"FC 15, Level 2, Worldmark 1, Near Aerocity Metro Station, Aerocity, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",77.12179529,28.5503472,"Mughlai, North Indian",650,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18446485,Pizza Hut Delivery,1,New Delhi,"Food Capital, Worldmark 1, Aerocity, New Delhi","Worldmark 1, Aerocity","Worldmark 1, Aerocity, New Delhi",77.12142371,28.54989546,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18439530,Foodhall,1,New Delhi,"Lower Ground Floor, World Mark 3, Aerocity, New Delhi","Worldmark 3, Aerocity","Worldmark 3, Aerocity, New Delhi",77.121714,28.551681,"Bakery, Italian, Chinese, Mexican",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18279456,Eat Me,1,New Delhi,"24/1-4, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2068326,28.5597171,"North Indian, Continental",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,33 +304475,EDC Mania,1,New Delhi,"69-A/2, Gautam Nagar, Behind Big Gurdwara, Next To Panchayati Shiv Mandi, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2125368,28.5612917,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,39 +311971,Elegant China X-Press,1,New Delhi,"Shop 22/2, Near Green Park Metro Station, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2068775,28.5599455,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +1918,Gopala,1,New Delhi,"1, DDA Market, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2071919,28.5579587,"Mithai, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,28 +3467,Green Chick Chop,1,New Delhi,"6, DDA Market, General Raj School, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2071919,28.5579587,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,30 +18265698,Hangchuaa's Chinese Food Corner,1,New Delhi,"K-130, Gautam Nagar, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2098081,28.5609683,Chinese,600,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,5 +7457,Madhuvan Chinese Fast Food,1,New Delhi,"Yusuf Sarai Market, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2077758,28.5577007,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,52 +18175274,Momos House,1,New Delhi,"G-130, Sudarshan Cinema Road, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2101563,28.5619163,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +3469,Punjab Restaurant,1,New Delhi,"3, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2072368,28.5617724,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,46 +2605,Rhythm Restro-Bar,1,New Delhi,"50/8, 1st Floor, Main Market, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2074165,28.5603554,"Mughlai, Chinese, North Indian",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3,Orange,Average,42 +4640,Say Cheese,1,New Delhi,"9, Community Centre, Near Green Park Metro Station, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.207147,28.5579096,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,128 +928,Sona Restaurant,1,New Delhi,"5, Main Market, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2072686,28.5617998,"North Indian, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,30 +312756,Uraki,1,New Delhi,"42, Gautam Nagar, Behind Father Agnel School, Near Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2133453,28.5622651,Asian,400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,8 +309505,Wah Ji Wah,1,New Delhi,"47/3, Yusuf Sarai Main Market, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.20747568,28.55994238,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,25 +9890,Annapurna Sweets,1,New Delhi,"10, DDA Community Centre Market, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.207147,28.5579096,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,109 +954,Karnataka,1,New Delhi,"60/5, Yusuf Sarai Market, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2072368,28.559442,"South Indian, North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,334 +18357525,EDC Mania,1,New Delhi,"95-1/2 Gautam Nagar, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2132657,28.5616657,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18265700,Faeem Chicken Corner,1,New Delhi,"F-130/4, Gautam Nagar, Sudershan Road, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2105606,28.56191,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18252382,Grills N Chills,1,New Delhi,"G-10, Rajeshdeep Building, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2084945,28.5577692,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18478967,Gupta Sweets,1,New Delhi,"74/4, Aurbindo Marg, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2074165,28.5612517,"North Indian, South Indian, Mithai",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18311920,Khub Chand,1,New Delhi,"Shop 2, DDA Market, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2072368,28.5580078,Raw Meats,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18455876,OCD - Online Cake Delivery,1,New Delhi,"59/2, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2063516,28.556623,"Bakery, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18478987,Sher E Punjab,1,New Delhi,"73, Gautam Nagar Road, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2081467,28.5609296,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18479000,Shri Balaji,1,New Delhi,"Near Gate 1, Green Park Metro Station, Yusuf Sarai Market, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2073832,28.5598243,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18478997,Sidhi Cafe,1,New Delhi,"D65/2, Gautam Nagar, New Delhi, Yusuf Sarai, New Delhi",Yusuf Sarai,"Yusuf Sarai, New Delhi",77.2132249,28.5616007,"Street Food, Fast Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18492061,Al Hayat Bakers,1,New Delhi,"Shop 14, Main Road, Zakir Nagar, New Delhi",Zakir Nagar,"Zakir Nagar, New Delhi",77.27884457,28.56720015,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18349925,Al-Kausar's,1,New Delhi,"K-65, Chinar Apartment, Jamia Nagar, Near Zakir Nagar, New Delhi",Zakir Nagar,"Zakir Nagar, New Delhi",0,0,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18492065,Alam Biryani Center,1,New Delhi,"Street 18, Zakir Nagar, New Delhi",Zakir Nagar,"Zakir Nagar, New Delhi",77.27966331,28.56771457,Biryani,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310480,Bismillah Hotel,1,New Delhi,"Masjid Wali Gali, Zakir Nagar, New Delhi",Zakir Nagar,"Zakir Nagar, New Delhi",77.28432264,28.56542779,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18144471,Halal Pizza Star,1,New Delhi,"88-A/4, Main Road, Zakir Nagar, New Delhi",Zakir Nagar,"Zakir Nagar, New Delhi",77.28120089,28.56717571,"Pizza, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18466972,HTW Bakers,1,New Delhi,"128, Zakir Nagar Main Road, Jogabai Extension, Zakir Nagar, New Delhi",Zakir Nagar,"Zakir Nagar, New Delhi",77.27981217,28.56744249,"Bakery, Desserts",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18429376,Javed Bawarchi Restaurant,1,New Delhi,"392, Near SBI, Main Road , Zakir Nagar",Zakir Nagar,"Zakir Nagar, New Delhi",77.2778975,28.5665297,Mughlai,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18354968,Let's Eat,1,New Delhi,"Basement, Shop 6, 88-A, Radheed Hotel Market, Main Road, Zakir Nagar, New Delhi",Zakir Nagar,"Zakir Nagar, New Delhi",77.28167631,28.56679379,"Fast Food, Beverages",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18441542,Moonis Kada,1,New Delhi,"413, Shop B-41, Main Road, Batla House Near Jamia University, Zakir Nagar, New Delhi",Zakir Nagar,"Zakir Nagar, New Delhi",77.28572074,28.56527732,"Mughlai, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18445274,Motu N Patlu,1,New Delhi,"Batla House Chowk, Near Jamia Milia Islamia, Opposite Jamia Cooperative Bank, Zakir Nagar, New Delhi",Zakir Nagar,"Zakir Nagar, New Delhi",77.28506528,28.56624639,"Lebanese, North Indian, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18168147,S.K. Fast Food,1,New Delhi,"161/32, Shop 3 Joga Bai, Main Road, Zakir Nagar, New Delhi",Zakir Nagar,"Zakir Nagar, New Delhi",77.28382677,28.56618897,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18429375,Sufiyan Restaurant,1,New Delhi,"57/12, Main Road, Zakir Nagar, New Delhi",Zakir Nagar,"Zakir Nagar, New Delhi",77.27977898,28.56732117,Mughlai,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310479,The Relax Point,1,New Delhi,"92/17, Zakir Nagar, New Delhi",Zakir Nagar,"Zakir Nagar, New Delhi",77.2785427,28.5668489,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18212160,Zareen's Dastarkhwan,1,New Delhi,"Jamia Nagar, Zakir Nagar, New Delhi",Zakir Nagar,"Zakir Nagar, New Delhi",77.28569627,28.56519398,Awadhi,800,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +310063,Ali Baba Caves,1,Noida,"1st Floor, Ansal Plaza Mall, Pari Chowk, Greater Noida, Noida","Ansal Plaza Mall, Greater Noida","Ansal Plaza Mall, Greater Noida, Noida",77.5281286,28.4581066,"Cafe, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,15 +312214,Caf Doo Ghoont,1,Noida,"AG-13, Atrium Floor, Ansal Plaza Mall, Greater Noida, Noida","Ansal Plaza Mall, Greater Noida","Ansal Plaza Mall, Greater Noida, Noida",77.5074561,28.4639566,Cafe,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,50 +309641,Knights Chaska,1,Noida,"201 to 207, 2nd Floor, Ansal Plaza Mall, Greater Noida, Noida","Ansal Plaza Mall, Greater Noida","Ansal Plaza Mall, Greater Noida, Noida",77.5078343,28.4644343,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,2.9,Orange,Average,6 +306688,Thirsty Scholar Cafe,1,Noida,"SF-256, 2nd Floor, Ansal Plaza Mall, Near Pari Chowk, Greater Noida, Noida","Ansal Plaza Mall, Greater Noida","Ansal Plaza Mall, Greater Noida, Noida",77.5077014,28.4642008,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,45 +18440427,Savoury Street,1,Noida,"GF-37, 1st Floor, Ansal Plaza Mall, Greater Noida, Noida","Ansal Plaza Mall, Greater Noida","Ansal Plaza Mall, Greater Noida, Noida",77.5077014,28.4642008,"North Indian, Continental, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +312573,JSB Evergreen Snack & Sweets,1,Noida,"Brahmaputra Shopping Complex, Sector 29, Noida",Brahmaputra Shopping Complex,"Brahmaputra Shopping Complex, Noida",77.3325771,28.5698988,"North Indian, Chinese, Fast Food, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,47 +7983,221 B Baker Street,1,Noida,"10, Brahmaputra Shoping Complex, Sector 29, Noida",Brahmaputra Shopping Complex,"Brahmaputra Shopping Complex, Noida",77.3326668,28.5703556,Bakery,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,94 +302541,Kapoors Balle Balle,1,Noida,"K-2, Brahmaputra Shopping Complex, Sector 29, Noida",Brahmaputra Shopping Complex,"Brahmaputra Shopping Complex, Noida",77.3328944,28.5697361,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,331 +7992,Lakshmi Coffee House,1,Noida,"Brahmaputra Shopping Complex, Sector 29, Noida",Brahmaputra Shopping Complex,"Brahmaputra Shopping Complex, Noida",77.3326668,28.5700866,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,603 +3695,Geoffrey's,1,Noida,"16-A, Centre Stage Mall, Sector 18, Noida","Centre Stage Mall, Sector 18","Centre Stage Mall, Sector 18, Noida",77.32315633,28.56812092,"Asian, Continental, Italian, North Indian",2600,Indian Rupees(Rs.),Yes,No,No,No,4,3,Orange,Average,579 +4473,Haldiram's,1,Noida,"L-1, Centre Stage Mall, Sector 18, Noida","Centre Stage Mall, Sector 18","Centre Stage Mall, Sector 18, Noida",77.32303832,28.5680476,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,169 +3250,Maamouchee @ My Way,1,Noida,"5th Floor, Centre Stage Mall, Sector 18, Noida","Centre Stage Mall, Sector 18","Centre Stage Mall, Sector 18, Noida",77.32309598,28.56822692,"Italian, Lebanese, North Indian",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,278 +718,Americana Kitchen and Bar,1,Noida,"Ist Floor, 1-6, Centre Stage Mall, Sector 18, Noida","Centre Stage Mall, Sector 18","Centre Stage Mall, Sector 18, Noida",77.3228281,28.56834294,"American, Tex-Mex, Italian, Mexican, North Indian",2000,Indian Rupees(Rs.),Yes,No,No,No,4,2.4,Red,Poor,221 +18272361,Punjabi By Nature Quickie,1,Noida,"D-424/425, 3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32142698,28.5676545,"North Indian, Mughlai",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,120 +18372695,United Coffee House Rewind,1,Noida,"D-428, 3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.3214491,28.5675927,"North Indian, European, Asian, Mediterranean",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,215 +18265411,Wow! Momo,1,Noida,"Food Court, DLF Mall of India, FC16, Plot M-03, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.3210901,28.5673795,"Tibetan, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,212 +18303706,Oh So Stoned!,1,Noida,"4th Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.3210394,28.56800461,Desserts,250,Indian Rupees(Rs.),No,No,No,No,1,4.5,Dark Green,Excellent,324 +18268698,The Big Chill Cakery,1,Noida,"Ground Floor, DLF Mall Of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32187994,28.56772693,"Bakery, Desserts",700,Indian Rupees(Rs.),No,No,No,No,2,4.5,Dark Green,Excellent,147 +18264244,Barista,1,Noida,"B-204, Level 1, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32,28.57,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,23 +18277171,Big Wong XL,1,Noida,"B-404, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32058812,28.56747782,"Chinese, Thai, Sushi",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,199 +18265419,Carl's Jr.,1,Noida,"F-457/C, 3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32092675,28.56668455,"Burger, American, Fast Food",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,458 +18233616,Chaayos,1,Noida,"E-18, Plot M-03, Lower Ground Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32105985,28.56744043,"Cafe, Tea",400,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,124 +18366022,Chi Asian Cookhouse,1,Noida,"F-456, 3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32080102,28.567075,"Chinese, Thai, Asian, Japanese, Korean, Seafood",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,173 +18273551,Costa Coffee,1,Noida,"1st Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32102197,28.56746369,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,64 +18272346,Dunkin' Donuts,1,Noida,"3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32144509,28.5674896,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,86 +18268925,Instapizza,1,Noida,"Food Court, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32094418,28.56702642,"Pizza, Fast Food",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,214 +18272379,Keventers,1,Noida,"Food Court, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32072927,28.56729997,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,169 +18272355,Pirates of Grill,1,Noida,"C-417, 3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32097905,28.56646341,"North Indian, Continental, Mughlai, Asian",1800,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,749 +18268722,Pizza Hut,1,Noida,"3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32057907,28.56737005,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,173 +18273556,PizzaExpress,1,Noida,"3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.3204748,28.56648549,"Italian, Pizza",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,366 +18272367,RollsKing,1,Noida,"Food Court, DLF Mall Of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.3205499,28.56693955,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,232 +18258775,Taco Bell,1,Noida,"M-18, Food Court, 4th Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32083656,28.56733177,"Mexican, Fast Food",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,397 +18449092,The Frozen Factory,1,Noida,"2nd Floor, Near H&M, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",0,0,"Ice Cream, Desserts",350,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,22 +18461590,Theos,1,Noida,"3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",0,0,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,13 +18254530,Wendy's,1,Noida,"D-4208, 3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32080102,28.567075,"Burger, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,518 +18336212,Zizo,1,Noida,"405-406, 3rd Floor, DLF Mall Of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32097905,28.56646341,"Lebanese, Mediterranean, Middle Eastern, Arabian",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.8,Yellow,Good,67 +18268727,Cafe Delhi Heights,1,Noida,"3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.320913,28.56732441,"Continental, American, Cafe",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,567 +18268712,Chili's Grill & Bar,1,Noida,"3rd Floor, DLF Mall Of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32041411,28.56730645,"Mexican, American, Italian",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,750 +18272353,Made In Punjab,1,Noida,"C 418 - 419, 3rd Floor, DLF Mall Of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32079029,28.56673549,"North Indian, Mughlai",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,322 +18261140,Mamagoto,1,Noida,"D-423, 3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.3204748,28.56648549,"Asian, Thai, Chinese",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.3,Green,Very Good,428 +18272357,Movenpick,1,Noida,"3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32051905,28.56724019,"Ice Cream, Desserts",650,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,91 +18303688,Smaaash,1,Noida,"4th Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32082382,28.56732971,"North Indian, Thai, Continental",1350,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,121 +18268716,SodaBottleOpenerWala,1,Noida,"3rd Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32077688,28.56658591,"Parsi, Iranian",1300,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,617 +18264533,The Bento Cafe,1,Noida,"Food Court, 4th Floor, DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida","DLF Mall of India, Sector 18, Noida, Noida",77.32085601,28.56730085,"Asian, Chinese, Japanese",750,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,316 +2799,Earthen Oven - Fortune Inn Grazia,1,Noida,"Fortune Inn Grazia, Block-I, Plot 1A, Sector 27, Noida","Fortune Inn Grazia, Sector 27, Noida","Fortune Inn Grazia, Sector 27, Noida, Noida",77.3283593,28.5774799,"North Indian, Mughlai",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,67 +2655,Fortune Deli - Fortune Inn Grazia,1,Noida,"Fortune Inn Grazia, Block 1, 1A, Sector 27, Noida","Fortune Inn Grazia, Sector 27, Noida","Fortune Inn Grazia, Sector 27, Noida, Noida",77.3283593,28.5773903,Chinese,2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,27 +301392,Cafe Pipa,1,Noida,"160, Ground Floor, Block 3, Ganga Shopping Complex, Sector 29, Noida","Ganga Shopping Complex, Sector 29","Ganga Shopping Complex, Sector 29, Noida",77.3361665,28.5678168,Cafe,350,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,96 +302727,Cook Du Kdu,1,Noida,"124, Block 2, Ganga Shopping Complex, Sector 29, Noida","Ganga Shopping Complex, Sector 29","Ganga Shopping Complex, Sector 29, Noida",77.3353589,28.5681889,"North Indian, Chinese, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,112 +311698,Green Chick Chop,1,Noida,"56, Block I, Ganga Shopping Complex, Sector 29, Noida","Ganga Shopping Complex, Sector 29","Ganga Shopping Complex, Sector 29, Noida",77.3355832,28.567448,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,12 +307297,New Vishal's Kitchen,1,Noida,"Shop 142, Block 3, Ganga Shopping Complex, Sector 29, Noida","Ganga Shopping Complex, Sector 29","Ganga Shopping Complex, Sector 29, Noida",77.3357335,28.5682606,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,24 +3154,Samarkand,1,Noida,"R-292, Ganga Shopping Complex, Sector 29, Noida","Ganga Shopping Complex, Sector 29","Ganga Shopping Complex, Sector 29, Noida",77.3353589,28.5677406,"North Indian, Mughlai, Chinese",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.3,Orange,Average,129 +18357543,Mirchievous,1,Noida,"Ganga Shopping Complex, Sector 29, Noida","Ganga Shopping Complex, Sector 29","Ganga Shopping Complex, Sector 29, Noida",77.3351088,28.5678557,North Indian,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,44 +3155,Pearls Regency,1,Noida,"R-253, Block I, Ganga Shopping Complex, Sector 29, Noida","Ganga Shopping Complex, Sector 29","Ganga Shopping Complex, Sector 29, Noida",77.3352723,28.5674286,"North Indian, Chinese, Thai",1200,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,330 +18424581,The Feast Box,1,Noida,"Ganga Shopping Complex, Sector 29, Noida","Ganga Shopping Complex, Sector 29","Ganga Shopping Complex, Sector 29, Noida",77.3356291,28.5683367,"Chinese, Thai, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,3 +18421057,Imperfecto,1,Noida,"Gardens Gallaria, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.3218081,28.5649369,"Mediterranean, Italian, Continental, Spanish, North Indian",1800,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,299 +18233620,Chaayos,1,Noida,"Unit FB-101, Ground Floor, Gardens Galleria, Plot A-2, Sector 38-A, Near, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.3217244,28.5648201,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,46 +300605,Dunkin' Donuts,1,Noida,"SH-52, Plot A-2, Lower Ground Floor, Gardens Galleria, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.3215077,28.5647926,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,481 +18279442,The Smoke Factory,1,Noida,"Gardens Galleria Mall, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.321853,28.5649859,"North Indian, Italian, Chinese",2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.8,Yellow,Good,240 +18279455,Turquoise Cottage - TC Original 1997,1,Noida,"205-206, 1st Floor, Gardens Galleria Mall, Plot A-2, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.3214674,28.5648242,"Continental, American, Italian, Mediterranean",1900,Indian Rupees(Rs.),Yes,No,No,No,3,3.8,Yellow,Good,240 +18424873,Baskin Robbins,1,Noida,"Ground Floor, Gardens Galleria, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.32147492,28.5649219,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18381672,Cafe Coffee Day,1,Noida,"1st Floor, Gardens Galleria, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.3217184,28.5647491,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18382336,Dolce Gelato,1,Noida,"Ground Floor, Gardens Galleria, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.32148331,28.56493986,"Ice Cream, Beverages, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18424874,Dunkin' Donuts,1,Noida,"Ground Floor, Gardens Galleria, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.3215389,28.5648218,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18424872,Joost Juice Bar,1,Noida,"Shop 160, Gardens Galleria, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.3213883,28.5646431,Beverages,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424880,KFC,1,Noida,"Gardens Galleria Mall, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.3216286,28.5646509,"American, Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +18381675,Pizza Hut,1,Noida,"1st Floor, Garden Galleria, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.3215389,28.5648218,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,No,No,No,3,0,White,Not rated,0 +18419893,Laat Saab,1,Noida,"Gardens Galleria Mall, Next to The Great India Place, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.32180945,28.56450145,"North Indian, Mughlai",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.1,Green,Very Good,111 +18289074,Starbucks,1,Noida,"Gardens Galleria, Sector 38A, Sector 38, Noida","Gardens Galleria, Sector 38 Noida","Gardens Galleria, Sector 38 Noida, Noida",77.321597,28.565014,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,59 +18291236,Rocket Food,1,Noida,"Golf Course, Noida",Golf Course,"Golf Course, Noida",77.3451605,28.5663497,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +311614,Aim Cafe And Restaurant,1,Noida,"Shop FF 5, 2nd Floor, NRI City Centre, Near Pari Chowk, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5111213,28.4632797,"Japanese, Sushi",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,19 +18429395,Al-Swad,1,Noida,"GH-18, Tradex Tower-2, Alpha 1 Commercial Belt, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5142421,28.4725268,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,6 +3735,Anands,1,Noida,"G-15, Krishna Apra Plaza, Commercial Belt, Near State Bank of India, Alpha 1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5103894,28.4704639,"Chinese, North Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,36 +9731,Bansiwala Restaurant,1,Noida,"G 11, Harsha Mall, Alpha 1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5127189,28.4719367,North Indian,200,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,4 +302132,Cafe Coffee Day,1,Noida,"Tradex Tower 2, Alpha Commercial Belt, Alpha 1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5144213,28.4723639,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,24 +18258162,Food Tamasha & Co.,1,Noida,"Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5078806,28.4668203,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,24 +302144,Grand Heritage Resort,1,Noida,"R-4, Near City Park, Greater Noida, Noida Greater Noida",Greater Noida,"Greater Noida, Noida",77.5237792,28.4764154,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.1,Orange,Average,17 +4471,Green Chick Chop,1,Noida,"1 & 2, Krishna Royal Plaza, Alfa Commercial Belt 1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5115542,28.4711106,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,20 +18253392,Kafe Republic,1,Noida,"Shop 4, Ground Floor, NQI Plaza, Alpha 1 Commercial Belt, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5133461,28.4720847,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,37 +310790,Kar C Lounge & Restaurant,1,Noida,"2nd Floor Terrace, C Block, NRI City, Omaxe Mall, Pari Chowk, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.510587,28.4629296,"Cafe, North Indian, Italian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,16 +8152,Kolkata Roll Point,1,Noida,"MSX Tower 1, Alpha 1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5154068,28.4732632,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,9 +313035,Royal Awadh,1,Noida,"GF-32, Bishab Parsavnath Plaza, Alpha 1, Commercial Complex, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5141525,28.4725185,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,9 +301509,Royal Rasoi,1,Noida,"1st Floor, Sri Luxmi Plaza, Behind Ansal Plaza, KP 1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5077462,28.4665835,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,21 +312275,Royale Bakers,1,Noida,"Commercial Complex, Alpha 1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5137941,28.4723057,"Bakery, Fast Food, Desserts",250,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,18 +302127,Sahi Darbar,1,Noida,"MSN Tower, 1 Alpha Commercial Belt, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5149968,28.473395,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,12 +18322604,Taco Street,1,Noida,"Shop A-1 & A-2, J.S. Plaza, Tugalpur Road, Near Pari Chowk, Behind Ansal Plaza, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5081494,28.4657682,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +18433889,The Noodle Co,1,Noida,"39-40, Omaxe NRI City Centre, Omega 1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5112854,28.4634563,"Thai, Chinese",900,Indian Rupees(Rs.),Yes,No,No,No,2,3.1,Orange,Average,8 +18232121,Veg Always,1,Noida,"G-127, Neelkanth Plaza, Alpha 1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5112854,28.4709959,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,25 +307628,Yu Turn,1,Noida,"R-2, Recreation Area, YMCA Complex, Opposite JP Golf Course, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.51812208,28.4719958,"North Indian, Chinese, Thai",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.9,Orange,Average,43 +18281980,Zaika,1,Noida,"GF-1, Omaxe NRI City Centre, Tower C, Omega 2, Near Pari Chowk, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5106105,28.463041,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,10 +8151,Zaika,1,Noida,"Tradex Tower 2, Alpha Commercial Belt, Alpha 1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5145109,28.472462,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,50 +302139,Domino's Pizza,1,Noida,"Shop 114, Ground Floor, MSX Mall, Surajpur Industrial Area, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.527913,28.4583447,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,56 +18377927,Night Food Service,1,Noida,"Green Market, Phase II, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.518042,28.46449,"Fast Food, North Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,80 +313120,Uncle's Patty,1,Noida,"21/A, Krishna Apra Plaza, Commercial Belt, Alpha 1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5102866,28.4706608,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,28 +18361734,Baskin Robbins,1,Noida,"Shop GF-26, Omaxe NRI City Center, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5111958,28.4632685,Ice Cream,300,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +304338,Evergreen Food Point,1,Noida,"Krishna Apra Plaza, Alpha 1, Commercial Belt, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5111958,28.4708978,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18440390,Food Plaza,1,Noida,"Opposite Ansal Mall, Knowledge Park 1, Pari Chowk, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5085078,28.4647244,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18383456,Giani,1,Noida,"GF-29, Parsvnath Bibhav Plaza, Alpha 1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5141525,28.4725185,"Ice Cream, Desserts",400,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,0 +18427237,Grill Inn,1,Noida,"G-4, Tradex Tower- 2, Alpha Commercial Market, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5146578,28.4725114,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +18382359,Hunger's Hut,1,Noida,"Shop 1, Swarn Nagri Market, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5296715,28.4634272,"North Indian, Mughlai",350,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,3 +18445740,Kanha Cake O' Pastry,1,Noida,"Shop GF-17, Block B, Omaxe NRI City Center, Omega II, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.51136148,28.46341884,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18331809,Serendipity Cafe,1,Noida,"Ground Floor, Ansal Plaza Mall, Knowledge Park I, Pari Chowk, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5079254,28.4642665,Cafe,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18377925,Spice Affair,1,Noida,"Plot 12A, Knowledge Park 3, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5152276,28.4733363,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +312287,Tandoori Junction,1,Noida,"G-17, Max Tower 1, Commercial Belt, Alpha 1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5153379,28.4733721,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18441766,Tod-Bistro Cafe,1,Noida,"G-10, Parshavnath Bibhav Plaza, Alpha 1, Commercial Belt, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5134341,28.4725411,Fast Food,300,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,1 +18281977,Upper Deck,1,Noida,"Plot 8, J S Plaza, Behind Ansal Plaza, Near Pari Chowk, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.508208,28.4658168,"North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,3 +18336259,Vadilal Ice Cream Parlour,1,Noida,"Omaxe NRI City Mall, Pari Chowk, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5107478,28.4631372,Ice Cream,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18441537,Wich 'N' Shake,1,Noida,"GF-30, Parsavnath Bibhab Plaza, Commercial Belt, Alpha-1, Greater Noida, Noida",Greater Noida,"Greater Noida, Noida",77.5141192,28.4726306,"Beverages, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18128857,Desi Galli,1,Noida,"Behind Harsha Mall, Alpha 1, Commercial Belt, Greater Noida, Noida","Harsha Mall, Greater Noida","Harsha Mall, Greater Noida, Noida",77.5127637,28.4720755,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,55 +18279435,Mr. Flavour,1,Noida,"GF-7A, Harsha Mall, Near Kotak Mahindra Bank, Commercial Belt, Alpha-1, Greater Noida, Noida","Harsha Mall, Greater Noida","Harsha Mall, Greater Noida, Noida",77.5130325,28.4720107,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,10 +18281983,Wah Ji Wah,1,Noida,"GF-17, Harsha Mall, Alpha 1, Comercial Belt, Greater Noida, Noida","Harsha Mall, Greater Noida","Harsha Mall, Greater Noida, Noida",77.5125397,28.4719201,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,16 +301402,Indian Diners,1,Noida,"Hotel Golf View, 14/1, Opposite Botanical Garden Metro Station, Sector 37, Noida","Hotel Golf View, Sector 37, Noida","Hotel Golf View, Sector 37, Noida, Noida",77.3387496,28.5637906,"North Indian, Chinese, Continental",1300,Indian Rupees(Rs.),Yes,No,No,No,3,3,Orange,Average,7 +301461,Airborne,1,Noida,"Hotel Golf View, 14/1, Opposite Botanical Garden Metro Station, Sector 37, Noida","Hotel Golf View, Sector 37, Noida","Hotel Golf View, Sector 37, Noida, Noida",77.3387521,28.5637524,"North Indian, Chinese, Continental, Mughlai",2000,Indian Rupees(Rs.),Yes,No,No,No,4,0,White,Not rated,0 +301468,Vivino - Hotel Golf View,1,Noida,"Hotel Golf View, 14/1, Opposite Botanical Garden Metro Station, Sector 37, Noida","Hotel Golf View, Sector 37, Noida","Hotel Golf View, Sector 37, Noida, Noida",77.3386893,28.5638179,Continental,1200,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,0 +2342,Gravity,1,Noida,"402, 3rd Floor, Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida, Noida",77.3351961,28.5767055,"Chinese, Mughlai, North Indian",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.6,Orange,Average,192 +309088,Kolkata Biryani House,1,Noida,"138, Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida, Noida",77.3352789,28.5768465,"North Indian, Mughlai, Biryani",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,109 +18334423,Rotees n More,1,Noida,"Shop 118, Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida, Noida",77.3348554,28.5764701,"North Indian, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,49 +439,Saleem's Takeaway,1,Noida,"D 68/K1, Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida, Noida",77.3347857,28.5759163,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,44 +18431970,Sikandrabadi Biryani,1,Noida,"122, Ground Floor, Jaipuria Plaza, Sector 26, Noida, Delhi NCR","Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida, Noida",77.3348596,28.5765143,"Biryani, North Indian",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,29 +307718,Wok N Spice,1,Noida,"Shop 157, Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida, Noida",77.3348923,28.5763192,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,21 +5685,Zaika Hindustani,1,Noida,"107 & 109, Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida, Noida",77.335048,28.5765055,"Mughlai, North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,33 +312243,Chanda Food,1,Noida,"140 Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida, Noida",77.3348957,28.5766241,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,97 +18428614,Chhote Nawab,1,Noida,"Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida, Noida",77.3354311,28.5762864,Lucknowi,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,24 +18424869,Delish BBQ,1,Noida,"Shop 116, Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida, Noida",77.3348778,28.5764412,"North Indian, Chinese, Thai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,40 +307232,Goli Vada Pav No. 1,1,Noida,"120, Ground Floor, Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida, Noida",77.3348627,28.5764862,Street Food,150,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,280 +300907,Happy Hakka,1,Noida,"149, Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida, Noida",77.3353591,28.5764845,"Chinese, Asian, Thai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,582 +18382371,Sadda Adda,1,Noida,"LGF 11, Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida","Jaipuria Plaza, Sector 26, Noida, Noida",77.3352114,28.576761,Cafe,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +8422,Baker's Studio - Jaypee Greens,1,Noida,"Jaypee Greens Golf & Spa Resort, G Block, Surajpur, Noida","Jaypee Greens Golf & Spa Resort, Surajpur","Jaypee Greens Golf & Spa Resort, Surajpur, Noida",77.5180946,28.4696531,Bakery,1000,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,29 +8344,Matrix - Jaypee Greens,1,Noida,"Jaypee Greens Golf & Spa Resort, G Block, Surajpur, Noida","Jaypee Greens Golf & Spa Resort, Surajpur","Jaypee Greens Golf & Spa Resort, Surajpur, Noida",77.5180946,28.4696531,Finger Food,2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,20 +8441,Tea Lounge - Jaypee Greens,1,Noida,"Jaypee Greens Golf & Spa Resort, G Block, Surajpur, Noida","Jaypee Greens Golf & Spa Resort, Surajpur","Jaypee Greens Golf & Spa Resort, Surajpur, Noida",77.5183634,28.4694087,Cafe,900,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,14 +8351,Paatra - Jaypee Greens,1,Noida,"Jaypee Greens Golf & Spa Resort, G Block, Surajpur, Noida","Jaypee Greens Golf & Spa Resort, Surajpur","Jaypee Greens Golf & Spa Resort, Surajpur, Noida",77.5181394,28.4697021,North Indian,3500,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,79 +4505,Cooks Cafe - Jaypee Greens,1,Noida,"Jaypee Greens, Surajpur Kasna Road, Greater Noida, Noida","Jaypee Greens, Greater Noida, Noida","Jaypee Greens, Greater Noida, Noida, Noida",77.521526,28.464167,"Continental, North Indian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,29 +18317498,The Butler & The Chef - Jaypee Greens,1,Noida,"Jaypee Greens, Surajpur Kasna Road, Greater Noida, Noida","Jaypee Greens, Greater Noida, Noida","Jaypee Greens, Greater Noida, Noida, Noida",77.521526,28.464167,Finger Food,2200,Indian Rupees(Rs.),Yes,No,No,No,4,0,White,Not rated,1 +18371434,Burger King,1,Noida,"3rd Floor, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3536634,28.5743086,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,14 +18425747,Cafe Pitacos,1,Noida,"Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3533943,28.5746419,"Continental, Mexican, Mediterranean",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,18 +18371402,Cinnabon & Auntie Anne's,1,Noida,"Atrium Caf, Ground Floor, Logix City Centre, Sector 32, Near Sector 31, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3539094,28.574221,"Desserts, Beverages",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,6 +18383509,Cocoberry,1,Noida,"Food Court, 3rd Floor, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3535737,28.5743001,Desserts,300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,16 +18446433,Hakka Haus,1,Noida,"Level 2, Logix city Center Mall, Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",0,0,"Chinese, Thai",950,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,6 +18349905,Kebab Xpress,1,Noida,"3rd Floor, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3535737,28.5743001,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,7 +18352249,KFC,1,Noida,"Shop 9, Plot BW 58, Logix City Centre, Sector 32, Near, Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3536634,28.5742189,"American, Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,15 +18383479,Mad Over Donuts,1,Noida,"Food Court, 3rd Floor, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3535737,28.5743001,Desserts,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,13 +18383470,Ni Hao,1,Noida,"Food Court, 3rd Floor, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3536634,28.5742189,Chinese,700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,10 +18383460,Pizza Hut,1,Noida,"Food Court, 3rd Floor, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3535737,28.5743001,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,No,No,No,3,2.6,Orange,Average,7 +18440424,Subway,1,Noida,"Lower Ground Floor, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3537083,28.5743576,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,5 +18383477,Time To Tea,1,Noida,"Food Court, 3rd Floor, Logix City Centre, Sector 32, Near, Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3536634,28.5743086,"Tea, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,5 +18383466,Vaango!,1,Noida,"Food Court, 3rd Floor, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3536634,28.5742189,South Indian,450,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,6 +18396179,Biryani Blues,1,Noida,"Food Court, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3536634,28.5743086,"Biryani, Hyderabadi",1000,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,18 +18466951,Jungle Jamboree,1,Noida,"Logix City Centre, FD-03, 2nd Floor, Sector 32 Near, Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",0,0,"North Indian, Continental, Chinese, Italian, Thai, Mughlai",1200,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,46 +18337905,Keventers,1,Noida,"Shop 1, 3rd Floor, Logix City Center, Sector 32, Near, Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3535737,28.5743001,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,34 +18361221,Pita Pit,1,Noida,"FC 12A, 3rd Floor, Logix City Center, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3536634,28.5743086,"Healthy Food, Salad",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,20 +18383484,Baskin Robbins,1,Noida,"Food Court, 3rd Floor, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3536634,28.5743086,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18440164,Cha Cha Cha,1,Noida,"2nd Floor, Logix City Centre, Sector 32, Near, Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3536862,28.5741982,"Beverages, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18382377,Chai Thela,1,Noida,"Lower Ground Floor, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3537531,28.5744067,"Tea, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18383444,Costa Coffee,1,Noida,"Lower Ground Floor, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3537531,28.574317,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18416753,Dolce Gelato,1,Noida,"2nd Floor, Logix City Center Mall, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3536634,28.5743086,"Ice Cream, Beverages, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441551,Joost Juice Bar,1,Noida,"Lowe Ground Floor, Logix City Centre, Sector 32, Near, Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3537083,28.5743576,Beverages,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18383481,Juice Lounge,1,Noida,"Food Court, 3rd Floor, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.35367786,28.57419684,"Juices, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18440406,Kings Kulfi,1,Noida,"Food Court, Logix City Centre, Sector 32, Near, Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3535737,28.5743001,"Desserts, Ice Cream",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18381647,Kwality Wall's Swirl's,1,Noida,"Food Court, 3rd Floor, Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3535737,28.5743001,"Ice Cream, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18440416,Mx Corn,1,Noida,"Lower Ground Floor, Logix City Centre, Sector 32, Near, Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3537531,28.5744067,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18371430,The Gaming Vegas,1,Noida,"301, The Gaming Vegas, Logix City Center, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3535737,28.5743001,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18383490,Chicago Pizza,1,Noida,"Food Court, 3rd Floor, Logix City Centre, Sector 32, Near, Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3535737,28.5743001,Pizza,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,8 +18273632,Mr. Sub,1,Noida,"Logix City Centre, Sector 32, Near Sector 34, Noida","Logix City Centre, Sector 32, Noida","Logix City Centre, Sector 32, Noida, Noida",77.3536634,28.5743086,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,2.3,Red,Poor,27 +18382345,Kwality Wall's Swirl's,1,Noida,"C-28/29, Food Court, Tower B, Logix Cyber Park, Sector 62, Noida","Logix Cyber Park, Sector 62, Noida","Logix Cyber Park, Sector 62, Noida, Noida",77.3665825,28.6123732,"Ice Cream, Desserts",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18382347,My Corn,1,Noida,"C-28/29, Food Court, Tower B, Logix Cyber Park, Sector 62, Noida","Logix Cyber Park, Sector 62, Noida","Logix Cyber Park, Sector 62, Noida, Noida",77.3666722,28.6127402,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +3226,Flluid - Mosaic Hotels,1,Noida,"Mosaic Hotels, C-1, Sector 18, Noida","Mosaic Hotels, Sector 18, Noida ","Mosaic Hotels, Sector 18, Noida , Noida",77.32554484,28.57102038,"Continental, North Indian, Mexican",2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,135 +4627,Latitude - Mosaic Hotels,1,Noida,"Mosaic Hotels, C-1, Sector 18, Noida","Mosaic Hotels, Sector 18, Noida ","Mosaic Hotels, Sector 18, Noida , Noida",77.32554484,28.57102038,"North Indian, Chinese",1700,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,61 +312278,Baker's Zone,1,Noida,"MSX Mall, Site 4, Greater Noida, Noida","MSX Mall, Greater Noida","MSX Mall, Greater Noida, Noida",77.5278832,28.4580751,Bakery,200,Indian Rupees(Rs.),No,Yes,No,No,1,2.9,Orange,Average,9 +18364351,Chakna,1,Noida,"Shop 1 & 2, Food Court, 3rd Floor, MSX Mall, Greater Noida, Noida","MSX Mall, Greater Noida","MSX Mall, Greater Noida, Noida",77.5283078,28.4580334,"North Indian, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,5 +18373737,Get Set Go,1,Noida,"2nd Floor, MSX Mall, Swarn Nagari, Greater Noida, Noida","MSX Mall, Greater Noida","MSX Mall, Greater Noida, Noida",77.5282389,28.4580767,"North Indian, Chinese, Continental",800,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,5 +18124366,Sip & Snacks,1,Noida,"MSX Mall, Greater Noida, Noida","MSX Mall, Greater Noida","MSX Mall, Greater Noida, Noida",77.5282182,28.4579354,"Chinese, North Indian",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,6 +18254400,The Anna,1,Noida,"Shop 135, MSX Mall, Surajpur Site IV, Delhi NCR, Greater Noida, Noida","MSX Mall, Greater Noida","MSX Mall, Greater Noida, Noida",77.5279942,28.4580493,"Chinese, South Indian, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,19 +309545,Kathi Junction,1,Noida,"Shop 132, Ground Floor, MSX Mall, Greater Noida, Noida","MSX Mall, Greater Noida","MSX Mall, Greater Noida, Noida",77.5281474,28.4578535,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,83 +310067,Golden Chaat,1,Noida,"Ground Floor, MSX Mall, Greater Noida, Noida","MSX Mall, Greater Noida","MSX Mall, Greater Noida, Noida",77.5281286,28.4581066,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18430587,Malt n Brew,1,Noida,"Park Ascent, Plot 126, Noida Khoda Road, Opposite IIM Lucknow Noida Campus, Sector 62, Noida","Park Ascent, Sector 62, Noida","Park Ascent, Sector 62, Noida, Noida",0,0,"North Indian, Continental, Chinese",2000,Indian Rupees(Rs.),Yes,No,No,No,4,0,White,Not rated,0 +6033,Cakewalk - Park Plaza,1,Noida,"Park Plaza Hotel, C Block, Sector 55, Noida","Park Plaza Hotel, Sector 55, Noida","Park Plaza Hotel, Sector 55, Noida, Noida",77.3506896,28.6038697,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,25 +6036,New Town Lounge - Park Plaza,1,Noida,"Park Plaza Hotel, C Block, Sector 55, Noida","Park Plaza Hotel, Sector 55, Noida","Park Plaza Hotel, Sector 55, Noida, Noida",77.3503437,28.6039396,Continental,2000,Indian Rupees(Rs.),Yes,No,No,No,4,3.2,Orange,Average,32 +1669,New Town Cafe - Park Plaza,1,Noida,"Park Plaza Hotel, C Block, Sector 55, Noida","Park Plaza Hotel, Sector 55, Noida","Park Plaza Hotel, Sector 55, Noida, Noida",77.3497156,28.6037907,"Continental, Chinese, North Indian",2800,Indian Rupees(Rs.),Yes,No,No,No,4,4.1,Green,Very Good,228 +3924,S-18 - Radisson Blu,1,Noida,"Radisson Blu Hotel, L-2, Sector 18, Noida","Radisson Blu, Sector 18, Noida","Radisson Blu, Sector 18, Noida, Noida",77.32218973,28.56859793,"Mediterranean, Continental, North Indian, Italian",3200,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,218 +18383511,Foodicious,1,Noida,"B 33/ K 1C, Sector 1, Noida",Sector 1,"Sector 1, Noida",77.3129503,28.5872879,"Fast Food, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18245267,Rasoi Dil Se,1,Noida,"B-40/B-3, Near Canara Bank, Sector 1, Noida",Sector 1,"Sector 1, Noida",77.31409,28.5891934,"North Indian, Chinese, Continental",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +304496,Chip Chap Shahi Corner,1,Noida,"C-117, Near Kohli Dharam Kanta, Sector 10, Noida",Sector 10,"Sector 10, Noida",77.3251735,28.5949741,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,12 +308670,Mother's Kitchen,1,Noida,"D 205, Sector 10, Noida",Sector 10,"Sector 10, Noida",77.333568,28.5922973,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18462632,Food Express,1,Noida,"C-94, Sector 10, Noida",Sector 10,"Sector 10, Noida",77.33208809,28.58894661,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18322648,Lemonier,1,Noida,"B-109, 2nd Floor, Sector 10, Noida",Sector 10,"Sector 10, Noida",77.3307374,28.5881489,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18356045,Punjabi Zaika,1,Noida,"B-2, Sector 10, Noida",Sector 10,"Sector 10, Noida",77.3303336,28.5878866,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18126101,Robins Sweets & Restaurant,1,Noida,"C-136, Gautam Budh Nagar, Sector 10, Noida",Sector 10,"Sector 10, Noida",77.3323864,28.5914816,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18273622,TBH To Be Healthy,1,Noida,"C-225, Sector 10, Noida",Sector 10,"Sector 10, Noida",77.331231,28.589854,"Juices, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,76 +5742,Mehfill,1,Noida,"1 & 4, L Block Market, Behind Metro Hospital, Sector 11, Noida",Sector 11,"Sector 11, Noida",77.3355334,28.597946,"North Indian, Chinese, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,90 +311186,Punjabi Pakwaan,1,Noida,"Shop 39 & 40, L-93-A, Sector 11, Noida",Sector 11,"Sector 11, Noida",77.3357155,28.5977441,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,34 +2331,Santushti,1,Noida,"21, L Block Market, Behind Metro Hospital, Sector 11, Noida",Sector 11,"Sector 11, Noida",77.335798,28.5976276,"South Indian, North Indian, Chinese",300,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,70 +2329,Uncle's,1,Noida,"S-17 &18, L Block Market, Sector 11, Noida",Sector 11,"Sector 11, Noida",77.3358973,28.5976456,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,190 +18382363,Cafe Limelight,1,Noida,"T 36, Shop 6, Near Power House, Sector 11, Noida",Sector 11,"Sector 11, Noida",77.338766,28.6003782,"Cafe, North Indian, Italian",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,38 +18456760,Rendezvous Adda,1,Noida,"Shop H 17-27, Near Sahara India LTD, Sector 11, Noida",Sector 11,"Sector 11, Noida",0,0,"North Indian, Bengali",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435292,Wow Noodle,1,Noida,"L Block Market, Behind Metro Hospital, Sector 11, Noida",Sector 11,"Sector 11, Noida",77.335507,28.5978273,Chinese,550,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,0 +18435286,Wraps Cafe,1,Noida,"L Block Market, Behind Metro Hospital, Sector 11, Noida",Sector 11,"Sector 11, Noida",77.3356238,28.5976592,"Fast Food, North Indian",400,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,2 +18243997,Alley's Urbane Cafe,1,Noida,"Main Road, Opposite Pathways Noida, Near PNB, Sector 104, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",77.36543566,28.5391348,"Cafe, Italian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,33 +18268352,Backstreet Kitchen,1,Noida,"12-A, Near Community Centre, Sector 104, Near, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.36520298,28.53920932,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,33 +18463699,Berco's,1,Noida,"104, Hazipur, Sector 104, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",77.365561,28.538929,"Chinese, Thai",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,9 +18376508,Breaktym,1,Noida,"Near Lotus Boulevrd, Gate 4, Sector 100, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",77.369517,28.545627,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,11 +18146402,Chawla's 2,1,Noida,"A-2/17, Main Market, Opposite Kendriya Vihar, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38715278,28.53304444,"North Indian, Mughlai, Chinese",1400,Indian Rupees(Rs.),No,Yes,No,No,3,2.5,Orange,Average,12 +18216904,Chicken Kraft,1,Noida,"Shop 39-A, Behind HDFC Bank, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38628581,28.53268571,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +5634,Chinese By Nature,1,Noida,"GDA Market, Near HDFC Bank",Sector 110,"Sector 110, Noida",77.38746263,28.53393492,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,19 +4541,DV's Chinese Kitchen,1,Noida,"Near ICICI Bank, GB Nagar, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38743782,28.53383506,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,10 +8226,Evergreen Sweets,1,Noida,"A-2/27, Opposite Kendriya Vihar, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38730572,28.5333408,"Mithai, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,16 +18254527,Green Chick Chop,1,Noida,"Shop 32, Block A-2",Sector 110,"Sector 110, Noida",77.38739792,28.53350929,"Raw Meats, Fast Food, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +18409725,Hyderabad Delights,1,Noida,"Shop 12, Opposite Yatharth Hospital, Gejha Road, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38514822,28.53280177,"North Indian, Mughlai, Hyderabadi",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,13 +310208,Kabab And Tadka,1,Noida,"Opposite Pathways School, Main Road, Sector 104, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",77.36518085,28.5390865,North Indian,600,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,36 +8228,Kanha Bhog,1,Noida,"A-2/33, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38745894,28.53358145,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,26 +8236,Mezbaan Jaika Restaurant,1,Noida,"25, Opposite Kendriya Vihar, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.3871696,28.53330811,"Biryani, North Indian, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,18 +18415343,Pind Balluchi,1,Noida,"K Shri Plaza, Main Road Hazipur Village, Opposite Pathways School, Sector 104, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",77.36554932,28.53949767,"Biryani, North Indian, Mughlai",1000,Indian Rupees(Rs.),No,Yes,No,No,3,2.6,Orange,Average,26 +18133476,Red Capsicum,1,Noida,"B-7, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.386751,28.533164,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,25 +18381224,Singh Foods,1,Noida,"Opposite Pathway School, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.36533742,28.53922405,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,7 +18440751,Sparrows At Home Bakery & Cafe,1,Noida,"First Floor, KM-01, Sector 104, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.3682633,28.54079875,"Cafe, Bakery",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,13 +306560,The New Koyla Kitchen,1,Noida,"162-A, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38676123,28.53422092,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,36 +18371428,They_,1,Noida,"A2/11, First Floor, Sector 110 Main Market, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38501411,28.52840456,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,13 +18372251,Your Spicy Kitchen,1,Noida,"Shop 10, Vivek Vihar, Sector-82, Near, Sector 110, Noida",Sector 110,"Sector 110, Noida",0,0,"Mughlai, Continental, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.1,Orange,Average,8 +312369,Yumm Biryani,1,Noida,"Shop 18, Ashirwad Complex, Sector 104, Near Sector 110",Sector 110,"Sector 110, Noida",77.36609716,28.53932095,"Biryani, Mughlai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,27 +307014,Aureo Dine & Bake House,1,Noida,"Shop 9, Block A-3, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38755785,28.53404095,"North Indian, Chinese, Continental",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,367 +18332064,Being Truckers,1,Noida,"Opposite Lotus Panache, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.37825595,28.53174637,Fast Food,550,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,99 +18216939,China Leaf,1,Noida,"Shop 17, Ashirwad Complex, Sector 104, Near, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.36627284,28.53928884,"Chinese, Thai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,115 +18378014,Mera Vala Dabba,1,Noida,"Shop 31, Ashirwaad Complex, Opposite Pathways School, Sector 104, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",77.366061,28.539277,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,18 +18157400,Moti Mahal Delux- Legendary Culinary,1,Noida,"12-A, Ashirwad Shopping Complex, Sector 104, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",77.36619238,28.53941873,"North Indian, Mughlai",900,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,72 +18057810,Noshh,1,Noida,"Shop 31, Ashirwaad Complex, Opposite Pathways School, Sector 104 , Noida",Sector 110,"Sector 110, Noida",77.36621249,28.53921168,North Indian,850,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,56 +18252385,Tadqa Tandoor Express,1,Noida,"Ground Floor, Main Road, Yadhuvanshi Tower, Opposite Pathways School, Sector 104, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",77.36540817,28.53905704,"North Indian, Mughlai",750,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,108 +18421504,The Kebab Company,1,Noida,"Shop 17, Phool Singh Complex, Opposite Pathway School, Sector 104, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",77.36600563,28.53925998,"Fast Food, North Indian",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,21 +18310503,Affamato,1,Noida,"Shop 6, Sunshine Helios, Sector 78, Near, Sector 110, Noida",Sector 110,"Sector 110, Noida",0,0,"Italian, Pizza",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424173,Ahmed's,1,Noida,"Main Market, Near ICICI Bank, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38754611,28.5337414,Mughlai,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18233621,Caff La Poya,1,Noida,"7, Ashirwad Complex, Sector 104, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",77.36602105,28.539318,"Cafe, Continental, Fast Food, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18432230,Chaskaa Restaurant,1,Noida,"Sector 108, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",0,0,"North Indian, Mughlai, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18409212,Chawla's 2,1,Noida,"C-3/18, Main Market, Sector 104, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",77.36599725,28.53954539,"North Indian, Mughlai, Chinese, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18219528,Chination,1,Noida,"Sector 110, Noida",Sector 110,"Sector 110, Noida",77.3869852,28.53309897,Chinese,700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18380150,Essen Foods,1,Noida,"Shop 20, Ashirwad Complex, Opposite Pathway School, Sector 104, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",77.36632314,28.53927854,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18355013,Haochi,1,Noida,"Shop 1 & 2, Lower Ground Floor, Hyde Park, Commercial Complex, Sector 78, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",0,0,Chinese,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18348609,Lassilo,1,Noida,"D 51, Sector 105, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",0,0,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424175,Mittal Bikaneri Sweets,1,Noida,"A 2/22, Main Market, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38711596,28.53319412,"Mithai, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +313415,Royale Bakers,1,Noida,"Opposite Pathway School, Sector 104, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",77.386751,28.533164,"Bakery, Fast Food, Desserts",350,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,0 +18460286,RV's Family Restaurant,1,Noida,"Near Salarpur Police Chowki, Main Dadri Road, Salarpur Bhangel, Sector 107, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",0,0,"North Indian, South Indian, Italian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +310762,The Cake Shop,1,Noida,"Shop A-79, Opposite Kotak Mahindra Bank, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38716993,28.53395848,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18208893,Top Food,1,Noida,"Plot K, Near Watertank, NSEZ, Phase 2, Near Sector 110, Noida",Sector 110,"Sector 110, Noida",0,0,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18478981,Uncle's Corner,1,Noida,"Shop F5, ATS One Hamlet, Sector 104, Sector 110, Noida",Sector 110,"Sector 110, Noida",0,0,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18410832,Urban Express,1,Noida,"Shop 9, Near Yatharth Wellness Hospital, Gejha Road, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38702995,28.53300848,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18303715,Viddya Chinese Fast Food,1,Noida,"ATS Lotus Apartment, GB Nagar Sector 110, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.37790592,28.53197731,"Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +4480,Domino's Pizza,1,Noida,"10, Block A-3, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38758132,28.53420826,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.1,Red,Poor,84 +3764,Kamboj's,1,Noida,"Shop 1, Near Rama Banquet Hall",Sector 110,"Sector 110, Noida",77.38638707,28.53210161,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.4,Red,Poor,76 +304636,Pizza Hut Delivery,1,Noida,"Shop A-4, Block A-3, Main Market, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38736574,28.53397527,"Italian, Pizza",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,94 +307340,Subway,1,Noida,"Plot 7, Block A3, Shramik Kunj, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38739625,28.53409103,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,51 +8237,The Cake Expert's,1,Noida,"11, Block A-2, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.38691278,28.53309132,"Bakery, Desserts, Fast Food",250,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,63 +18268724,The Saffron Boutique,1,Noida,"26 & 27 Ashirwaad Complex, Sector 104, Near, Sector 110, Noida",Sector 110,"Sector 110, Noida",77.36664299,28.53934598,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,4,Green,Very Good,175 +312463,Aggarwal Kachori Wale,1,Noida,"Shop 26, X Block, Near Metro Hospital, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3379637,28.597161,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,9 +309318,Bakes & Cakes,1,Noida,"Royal Paradise Hotel, Shop 3 & 4, Y 349C, Near Sabzi Mandi, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3440643,28.5968936,Bakery,250,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,5 +302518,Burger's Kitchen,1,Noida,"Behind Metro Hospital, X Block Market, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3382315,28.5971578,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,31 +8072,Jhatpat Khana,1,Noida,"Y-372, Near City Hospital, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3435377,28.596352,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +5755,Mahi Rasoi,1,Noida,"5, Block X-1A, Above Axis Bank, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3380039,28.5972511,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,34 +18486840,Night Safari Cafe,1,Noida,"N-199, First Floor, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3387224,28.5923274,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +8074,Saheb's Restaurant,1,Noida,"3, I-25, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3378109,28.5969146,"North Indian, Chinese, Mughlai, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,26 +307888,Scrummy Bites,1,Noida,"Shop 6, N Block, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3372391,28.5931433,"North Indian, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,30 +834,Berco's,1,Noida,"O-1, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3388953,28.5939838,"Chinese, Thai",1100,Indian Rupees(Rs.),No,Yes,No,No,3,3.7,Yellow,Good,1182 +18382337,Cream Bell Scoopers,1,Noida,"Shop 3, I 25, Near Metro Hospital, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3377445,28.5969468,Ice Cream,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18433542,Mayur Kitchen,1,Noida,"Shop 100, Sabzi Mandi, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3439016,28.5972982,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18382335,Raghav Ki Rasoi,1,Noida,"Z 148, Main Road, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3441147,28.5982082,"North Indian, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,0 +18264985,Red Chilli,1,Noida,"H-Block Market, Near Shiv Mandir, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3343957,28.5940266,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18265692,Riyaz Biryani Corner,1,Noida,"29, Block X, 1A, Sector 12 Market, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3381282,28.5973644,Biryani,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +304937,Standard Sweets & Confectioners,1,Noida,"Shop P 38/7, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3395869,28.5948476,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18489849,Standard Sweets,1,Noida,"Shop 6,7, Y-349, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3441252,28.5969498,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18485826,Sushma Homemade Tiffin,1,Noida,"Z Block, Sector 12, Noida",Sector 12,"Sector 12, Noida",0,0,"North Indian, South Indian",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489806,The Tasty Corner,1,Noida,"C-block, Shop 31, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3355321,28.5919342,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18381674,The Zaika King,1,Noida,"Shop X-1 A, 17, Behind Metro Hospital, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.338294,28.597161,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18441772,Tiffinhunt,1,Noida,"N-198, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3386901,28.5923266,North Indian,200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,1 +18390891,Top Burger,1,Noida,"Shop 3N4, Block Y, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3440914,28.5969249,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +8061,Aggarwal Sweet Shop,1,Noida,"8, Royal Paradise Shopping Complex, Y 349C, Near Sabzi Mandi, Sector 12, Noida",Sector 12,"Sector 12, Noida",77.3441785,28.5970594,"Mithai, Street Food",150,Indian Rupees(Rs.),No,Yes,No,No,1,2.3,Red,Poor,15 +308623,Hungry - I,1,Noida,"KO-12, Ground Floor, Near Amity University, Sector 126, Near Sector 125, Noida",Sector 125,"Sector 125, Noida",77.332072,28.5493465,"Cafe, Italian, Continental, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,26 +311013,Oh Buoy,1,Noida,"Plot E-94, Near HCL Office, Sector 125, Noida",Sector 125,"Sector 125, Noida",77.3323527,28.5486721,"Mexican, Italian, Fast Food",550,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,55 +18368015,Caffeinated,1,Noida,"Near Amity University, Sector 125, Noida",Sector 125,"Sector 125, Noida",77.3323449,28.5493943,Beverages,200,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,64 +18273942,Sam and Scrooge,1,Noida,"F-7, Gopalji Mart, Near Jaypee Hospital, Sector 128, Near Sector 125, Noida",Sector 125,"Sector 125, Noida",77.3714268,28.516344,"Continental, Mexican, American, Fast Food, Italian, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,132 +18034079,Tpot,1,Noida,"A-14, Eco Towers, Sector 125, Noida",Sector 125,"Sector 125, Noida",77.3306028,28.5445167,Cafe,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,20 +18440413,Hunger's Hub,1,Noida,"Opposite HCL, Near Amity University, Sector 125, Noida",Sector 125,"Sector 125, Noida",77.3317111,28.5488666,"Chinese, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18427230,Modi's Baker's Zone,1,Noida,"Plot 3 A, Sector 126, Nea, Sector 125, Noida",Sector 125,"Sector 125, Noida",77.3297035,28.5472559,"Bakery, Fast Food, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18440415,The Flip On Wheel,1,Noida,"Near Amity University, Sector 125, Noida",Sector 125,"Sector 125, Noida",77.3323016,28.5494133,"North Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18446387,Big Biryani,1,Noida,"Opposite HCL, Sector 127, Noida",Sector 127,"Sector 127, Noida",77.3323947,28.5493919,"Biryani, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18340903,Aroma,1,Noida,"Shop 2, Paras Tierea, Sector 137, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.4133126,28.5074459,"South Indian, North Indian, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18275760,Bawarchi,1,Noida,"Sector 134, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",0,0,"North Indian, Mughlai, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +18357548,Book Food Kitchen,1,Noida,"Shop 4, Exotica Fresco, Sector 137, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.40612611,28.5131767,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,19 +18381249,Breaktym,1,Noida,"Opposite Gulshan Vivante Entry Gate, Sector 137, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.407635,28.508599,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,6 +18307266,Chaska By Taste,1,Noida,"Village Shadra Bansal Market, Near Pass Taira, Sector 132, Noida",Sector 132,"Sector 132, Noida",77.4132229,28.5070787,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +18112492,Domino's Pizza,1,Noida,"Express Trade Towers 2, B-36, Sector 132, Noida",Sector 132,"Sector 132, Noida",77.377632,28.5141905,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,27 +18445768,Grill King,1,Noida,"Shop 2, Pavilion Arcade, Jaypee Wish Town. Sector 128, Near, Sector 132, Noida",Sector 132,"Sector 132, Noida",0,0,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18393840,Moti Mahal Deluxe Advant,1,Noida,"Advant Towers, Sector 142, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.4102187,28.5007418,"North Indian, Mughlai",1400,Indian Rupees(Rs.),No,No,No,No,3,2.8,Orange,Average,7 +18276998,Rolling Beans,1,Noida,"Near Genpact & Unitech Infospace, Sector 135, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.4027519,28.5003041,North Indian,200,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,9 +300988,RollsKing,1,Noida,"Opposite MetLife Building, Sector 135, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.40179,28.5011578,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,19 +18292443,SnacksWale.com,1,Noida,"Shop 16, Ground Floor, Paras Tiera, Sector 137, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.4132229,28.5075273,"North Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,8 +18204456,Subway,1,Noida,"Ground Floor, Tower 2, Plot 7, Advant IT Park, Expressway, Sector 142, Near, Sector 132, Noida",Sector 132,"Sector 132, Noida",77.4097048,28.5011636,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,13 +18138418,Super Cake Shop,1,Noida,"Near Jaypee Hospital, Sector 132, Noida",Sector 132,"Sector 132, Noida",77.3713463,28.5164185,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18441561,Aureo Dine & Bake House,1,Noida,"Ground Floor, Amenity Block, Unitech Infospace, Sector 135, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.404642,28.4995416,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18245275,B Bawarchi Restaurant,1,Noida,"Shop 2-3, Opposite Jaypee Cosmos, Near Adobe, Sector 134, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.3799935,28.5177319,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18469933,Brajwasi,1,Noida,"Shop 4, Chauhan Market, Behind Advant Navis Business Park, Sector 141, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",0,0,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18358190,Cafe Coffee Day,1,Noida,"Unitech Infospace, Sector 135, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.4038963,28.4995663,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18441663,Cafe Coffee Day,1,Noida,"B-36, Block A, Express Trade Tower 2, Noida-Greater Noida Expressway, Sector 132, Noida",Sector 132,"Sector 132, Noida",77.3778001,28.5137081,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489823,Cafe Lounge,1,Noida,"Eco Suites By Hyphen, GH 03, Adjacent Supertech Ecociti, Sector 137, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",0,0,"Cafe, Bakery, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18489827,Cafe Treat,1,Noida,"Eco Suites By Hyphen, GH 03, Adjacent Supertech Ecociti, Sector 137, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",0,0,"North Indian, Italian, Continental",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18371413,Casa Bake,1,Noida,"Shop 11, UG, Supertech Ecociti, Sector 137, Near, Sector 132, Noida",Sector 132,"Sector 132, Noida",0,0,Bakery,700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18441563,China Town,1,Noida,"Near Metlife, Sector 135, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.4027231,28.500375,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18358662,Costa Coffee,1,Noida,"Jaypee Hospital, Wish Town, Gautam Buddha Nagar, Sector 128, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.3681524,28.5255885,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18277008,Delhi Foods,1,Noida,"F-3, 1st Floor, G Mart, Near Jaypee Hospital, Sector 128, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.3715165,28.5164422,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18399250,Deli Chic,1,Noida,"Shop 11, Lower Ground Floor, Paramount Florence Plaza, Sector 137, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",0,0,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18449300,Delicacies,1,Noida,"Paramount Floraville, Sector 137, Near, Sector 132, Noida",Sector 132,"Sector 132, Noida",77.40778303,28.50763882,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18454471,Kanha Ji Sweets & Restaurant,1,Noida,"Shop 17, Chauhan Market, Sector 141, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.413852,28.505174,"Mithai, North Indian, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18273973,Little China,1,Noida,"Near Metlife, Sector 135, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.4028201,28.4996449,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18375406,Lola's Cafe,1,Noida,"Paras Tiera, Sector 137, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.4132861,28.5074131,"Cafe, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18384109,Madras Coffee House,1,Noida,"Ground Floor, Amenity Block, Unitech Infospace, Sector 135, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.4043548,28.4990685,Beverages,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18441569,Moju Juice Bar,1,Noida,"Near Metlife, Sector 135, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.4026739,28.500282,Beverages,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18254543,Peniel Restaurant,1,Noida,"Near Jaypee Hospital, Sector 132, Noida",Sector 132,"Sector 132, Noida",77.3712923,28.5164659,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18393815,Pizza Key,1,Noida,"Near Sri Ram School, Sector 135, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.3734774,28.5161937,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18458636,Sandoz,1,Noida,"Shop 3, Upper Ground Floor, Supertech Mart, Sector 137, Near, Sector 132, Noida",Sector 132,"Sector 132, Noida",0,0,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18481281,Subway,1,Noida,"Plot 20/21, Unit 3, Amenity Block, Sector 135, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",0,0,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18474432,Tandoori Mystery,1,Noida,"B-4, Urbtech Matrix Tower, Sector 132, Noida",Sector 132,"Sector 132, Noida",77.37313192,28.51524439,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18441559,Taste of Punjab,1,Noida,"Chauhan Market, Sector 137, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.4141288,28.5046715,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441665,Tea Nation,1,Noida,"Express Trade Towers 2, B-36, Sector 132, Noida",Sector 132,"Sector 132, Noida",77.3777963,28.513978,"Fast Food, Beverages",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18466397,The Corporate Kitchen,1,Noida,"Sector 132, Noida",Sector 132,"Sector 132, Noida",0,0,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441557,The Royal Kitchen,1,Noida,"Shop 4, Paras Tierea Commercial Complex, Sector 137, Near Sector 132, Noida",Sector 132,"Sector 132, Noida",77.413356,28.5078125,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18441671,Tpot,1,Noida,"Ground Floor, Urbtech Matrix Towers, Opposite Jaypee Hospital, Sector 132, Noida",Sector 132,"Sector 132, Noida",77.3732546,28.5152596,"Fast Food, Beverages",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18416310,Wild Chef House,1,Noida,"Urbtech Matrix, Opposite JP Hospital, Sector 132, Noida",Sector 132,"Sector 132, Noida",77.3730864,28.5151994,"Continental, Chinese, North Indian, Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,3 +18372688,DIOS The Neighbourhood Bistro,1,Noida,"B-36, Block A, Express Trade Tower 2, Noida-Greater Noida Expressway, Sector 132, Noida",Sector 132,"Sector 132, Noida",77.3778856,28.5138115,"Continental, Fast Food, Italian",1300,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,108 +18146472,Cake n Flower,1,Noida,"Shop 4, CDR Complex, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3145385,28.5811942,Bakery,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +3145,Dilli 6,1,Noida,"The Residency Hotel, Priya Gold Building, Naya Bans, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3138576,28.5818951,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,84 +312175,Food Bell,1,Noida,"Shersingh Market, Naga Bans, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3141014,28.5814426,"North Indian, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,6 +3143,Kalpana Hotel,1,Noida,"Opposite Priya Gold Biscuits Factory, Naya Bans, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.314,28.5817708,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +4518,Sagar Dhaba,1,Noida,"Sher Singh Market, Naya Bans, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3141279,28.5815304,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,27 +304510,Shree Balaji Shudh Vaishno Hotel,1,Noida,"Naya Bans, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3142692,28.5802723,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +310875,Shree Rathnam,1,Noida,"R1, 2 & 4, Gulmohar Shopping Complex, Sector 15 C, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3119452,28.5832846,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,57 +309317,Simran's Cake Studio,1,Noida,"D Block, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3104224,28.5820794,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,23 +311085,Sweet Cake,1,Noida,"Shop 320, Nayabar, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3127883,28.5826872,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +300914,The Cake Xpress,1,Noida,"CDR Complex, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3144579,28.5812215,"Bakery, Desserts",250,Indian Rupees(Rs.),No,Yes,No,No,1,3,Orange,Average,43 +8115,The Chef,1,Noida,"5, Block 331 A, Gulmohar Market, Sector 15-A Market, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.310934,28.5773817,"North Indian, Mughlai, Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,8 +18455665,The Flying Pan,1,Noida,"201, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3137449,28.58180043,"North Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +18146390,Wrapster,1,Noida,"Near Astha Medicos, B Block Market, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3100508,28.5821145,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,48 +18435298,Getafix Petit,1,Noida,"Sports & Cultural Club, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3075696,28.5784806,"Healthy Food, Juices",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,14 +301415,Lawn Bistro,1,Noida,"12, Rajnigandha Market, Sector 15-A, Near Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3084223,28.5789682,"North Indian, Chinese, Thai, Continental",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,328 +18407293,Cake N Gifts,1,Noida,"CDR Complex, Sector 15, Noida",Sector 15,"Sector 15, Noida",0,0,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18432201,Cheese Pizza,1,Noida,"B Block Market, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3101406,28.5822126,Pizza,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304493,Divya Hotal,1,Noida,"Naya Bans, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3146798,28.5806262,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18438456,Green Valley Chinese Food,1,Noida,"Alka Cinema, Near Sai Mandir, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.312979,28.58206,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18367439,Hooting Owl Cafe,1,Noida,"97, B Block Market, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3101406,28.582123,"Fast Food, Beverages",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18466616,Jaak Foods,1,Noida,"Below MK Residency, Nayabans, Opposite Sai Mandir, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.31239598,28.58226269,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18382368,Kaka Restaurant,1,Noida,"S.R. Complex, Naya Bans, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3147473,28.5807004,"Mughlai, North Indian",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18465093,KC Bakers,1,Noida,"Shop 7, Gali 1, Sector 15, Noida",Sector 15,"Sector 15, Noida",0,0,Bakery,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18345109,KC Bakery,1,Noida,"Gail 1, Naya Bans, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3127435,28.5827278,Bakery,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18432027,Rajan Foods Corner,1,Noida,"B-97, Shop 4, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3102284,28.5822693,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18258742,Sagar Dhaba,1,Noida,"Yadav Complex, Nayabans, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.314359,28.5801911,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18254314,Sarfira,1,Noida,"B Block Market, Sector 15, Noida",Sector 15,"Sector 15, Noida",0,0,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18258756,Shama Chicken Corner,1,Noida,"Sangam Guest House, Nayabans, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.314,28.5816812,Mughlai,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18382366,Yummy Kitchen,1,Noida,"Bhagmal Complex, Naya Bans, Sector 15, Noida",Sector 15,"Sector 15, Noida",77.3145418,28.5805304,"North Indian, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +4882,Barista,1,Noida,"A 5, Ground Floor, Atrium, Sector 16, Noida",Sector 16,"Sector 16, Noida",77.3156097,28.5793172,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,22 +309535,Divine Curries,1,Noida,"FC 23, Film City Noida, Sector 16 A, Near, Sector 16, Noida",Sector 16,"Sector 16, Noida",77.31759,28.5707246,"North Indian, Chinese, South Indian",700,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,31 +18415359,Moon Bite,1,Noida,"Near Sector 16, Noida",Sector 16,"Sector 16, Noida",77.31485,28.577722,"North Indian, Chinese",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,13 +308451,Subway,1,Noida,"Ground Floor, Savoy Suites, Near Metro Station, Sector 16, Noida",Sector 16,"Sector 16, Noida",77.31558178,28.58129376,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,55 +18156287,Hurry's Paratha,1,Noida,"Road 1-B, Lt. Vijayant Thapar Marg, Near Sector 16 Metro Station, Sector 16, Noida",Sector 16,"Sector 16, Noida",77.3169908,28.5792232,North Indian,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,45 +399,McDonald's,1,Noida,"A-79A, Savoy Suite, Sector 16, Noida",Sector 16,"Sector 16, Noida",77.3157052,28.5801391,"Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,135 +18161600,Cafe Coffee Day,1,Noida,"IT Towers, Plot 24, Sector 16-A, Near Sector 16, Sector 16, Noida",Sector 16,"Sector 16, Noida",0,0,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18249084,Dunkin' Donuts,1,Noida,"Corporate Office, Jubilant Life Sciences Limited, Plot 1A, Sector 16, Noida",Sector 16,"Sector 16, Noida",0,0,"Burger, Desserts, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18432020,Green Chilli Fast Food,1,Noida,"Near Night Stay Hotel, Sector 16, Noida",Sector 16,"Sector 16, Noida",77.313817,28.5788612,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18432013,Street Food Corner,1,Noida,"Opposite Gate 2, Sector 16 Metro Station, Sector 16, Noida",Sector 16,"Sector 16, Noida",77.317657,28.5776606,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +303371,Barbeque Nation,1,Noida,"A-79-A, Ground Floor, Hotel Savoy Suites, Sector 16, Noida",Sector 16,"Sector 16, Noida",77.3153216,28.5801189,"North Indian, Chinese, Mediterranean",1600,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,1670 +302558,Aggarwal,1,Noida,"B-1/3, Near Sector 18 Metro Station, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32593108,28.57081133,"South Indian, Chinese, Street Food, Mithai",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,61 +1698,Anchor Bar & Kitchen,1,Noida,"C-26/27, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32504863,28.57064084,"North Indian, Chinese",1300,Indian Rupees(Rs.),Yes,No,No,No,3,2.5,Orange,Average,106 +9252,Basil Tree,1,Noida,"G-43 & 44, Main Market, Near Radisson Hotel, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32310604,28.56861001,"Italian, North Indian, Chinese",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,431 +1323,Bon Bon Pastry Shop,1,Noida,"F-1, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32418898,28.57158307,"Bakery, Desserts, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,213 +1735,BSGulati's Punjabi Swad,1,Noida,"G-8/3, Savitri Market, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32611079,28.57044385,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,357 +5677,Cafe-18,1,Noida,"G-27, Savitri Market, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32660197,28.56988852,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,2.5,Orange,Average,103 +300953,Chandni Chowk Ke Mashhoor Paranthe,1,Noida,"G-24B, Savitri Market, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32660867,28.56997273,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,30 +4721,Cheenos,1,Noida,"P-11, 2nd & 3rd Floor, Above Sony Centre, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32454438,28.56857349,"American, Italian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,2.6,Orange,Average,521 +18261722,Gola Sizzlers,1,Noida,"K-4, 1st Floor, Ocean Heights, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.3235295,28.57113316,"Chinese, North Indian, Mughlai, Continental",1600,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,198 +18346730,Hira Sweets,1,Noida,"B-13, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32480153,28.57024863,"Mithai, North Indian, South Indian, Street Food, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,36 +461,Karim's,1,Noida,"G-40, Mughal Palace, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32365757,28.56926546,"Mughlai, North Indian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.3,Orange,Average,446 +937,KFC,1,Noida,"P-21, Near Vodafone Store, Sector 18 Market, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32496414,28.56876577,"American, Fast Food, Burger",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,608 +307720,Khan's Kathi Rolls,1,Noida,"G-24-26, Savitri Market, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32669149,28.56992385,"North Indian, Street Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,76 +591,Nathu's Sweets,1,Noida,"G-63, Mansarover Shopping Complex, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.3242832,28.56889916,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,211 +18371433,Nawabi Mughlai Zaika,1,Noida,"Sector 18, Noida",Sector 18,"Sector 18, Noida",77.325204,28.57099,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,19 +18287364,Nite Bites,1,Noida,"Sector 18, Noida",Sector 18,"Sector 18, Noida",77.332893,28.597824,"North Indian, Chinese, Continental",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,68 +7913,Nizam's Kathi Kabab,1,Noida,"C-18, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32458662,28.57071651,"North Indian, Fast Food",900,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,139 +18180086,NSD Resto Bar & Kitchen,1,Noida,"D-2C, Basement Level, Sector 18 Market, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32406242,28.57151907,"North Indian, Chinese, Continental",1000,Indian Rupees(Rs.),Yes,No,No,No,3,2.6,Orange,Average,19 +5678,PS Wah Bhai Wah,1,Noida,"B-1/6, Ground Floor, Near Metro Station, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32570108,28.57088023,"North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,89 +427,Sagar Ratna,1,Noida,"49-50, Ansal Fortune Arcade, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32221387,28.5721275,"South Indian, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,277 +18292482,Sbarro,1,Noida,"G-23, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.3243117,28.57015824,"Pizza, Italian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,97 +18446481,Swag & Swad,1,Noida,"Near Sector 18, Noida",Sector 18,"Sector 18, Noida",77.322001,28.570049,"North Indian, Chinese, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,19 +310694,The Fizz,1,Noida,"N-7, Opposite Axis Bank, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32313555,28.57225971,"North Indian, Mughlai, Chinese",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.2,Orange,Average,80 +18252573,The Kitchen,1,Noida,"Shop G-25, Savitri Market, Captain Vijyant Thapar Marg, Pocket A, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.3264863,28.57003427,"North Indian, Mughlai",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,47 +303269,Twenty Four Seven,1,Noida,"1-2, D Block, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32466508,28.57117762,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,45 +5854,Vinny's Restro Bar,1,Noida,"B-10, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32512441,28.57073654,"North Indian, Chinese",1300,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,37 +18349895,Walk In The Woods,1,Noida,"P-18, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.324447,28.569182,"North Indian, Mughlai, Chinese",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,3,Orange,Average,203 +4160,Xiian,1,Noida,"G-45, Sector 18 Market, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.3233803,28.5688017,"Italian, Continental, North Indian, Chinese",1400,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.4,Orange,Average,286 +301514,Zest Bar and Lounge,1,Noida,"K-24, Near HSBC Bank, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32295919,28.57206302,"Finger Food, North Indian, Chinese",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.4,Orange,Average,223 +310417,Angels in my Kitchen,1,Noida,"C-19, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32430164,28.57046888,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.9,Yellow,Good,205 +1701,Baby Dragon Bar & Restaurant,1,Noida,"G-34, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.323714,28.569561,"North Indian, Continental, Thai, Chinese",1350,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.5,Yellow,Good,326 +18208904,Baker Street,1,Noida,"5, Ground Floor, Ansal Fortune Arcade, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32213676,28.57302026,"Bakery, Beverages, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,40 +3306,Bamboo Shoots,1,Noida,"F-2/3, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32396636,28.57153949,"Chinese, Seafood, Asian",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.9,Yellow,Good,515 +301005,Bikanervala Bliss,1,Noida,"Silver Tower, Near Metro Station, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32466038,28.57196379,"North Indian, Fast Food, Chinese",1200,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,235 +307566,Bikanervala,1,Noida,"1st Floor, Silver Tower, Near Metro Station, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.3246292,28.57215783,"North Indian, South Indian, Fast Food, Street Food, Chinese, Beverages, Desserts, Mithai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,331 +18216913,Bikkgane Biryani,1,Noida,"G-24, Gautam Buddha Nagar, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32443139,28.57013969,"Biryani, North Indian, Hyderabadi",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.8,Yellow,Good,612 +310399,Burbee's Cafe,1,Noida,"G-56, 2nd Floor, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32456181,28.56935203,"American, Italian, Chinese, North Indian, Cafe",900,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.7,Yellow,Good,833 +594,Cafe Coffee Day,1,Noida,"G-54, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32398044,28.56966474,Cafe,450,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,125 +3796,Deez Biryani & Kebabs,1,Noida,"P-10, 1st Floor, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32459467,28.56839947,"Biryani, North Indian, Mughlai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,430 +490,Desi Vibes,1,Noida,"G-50, 1st Floor, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32425638,28.5694916,"North Indian, Mughlai",1400,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,2019 +18336495,Dhaba at Atta,1,Noida,"G-56, 1st Floor, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32411414,28.56914544,"North Indian, Mughlai",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.8,Yellow,Good,477 +18228862,DND,1,Noida,"28B, Ground Floor, Pearls Plaza, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32224271,28.57234745,"North Indian, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,196 +384,Domino's Pizza,1,Noida,"C-2/22, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.3248877,28.5702822,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,547 +7945,Donald's Pastry Shop,1,Noida,"J-55, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32413467,28.56784854,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,402 +2985,Doosri Mehfil,1,Noida,"D-2C, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32429225,28.57171587,"North Indian, Chinese, Mughlai",950,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.8,Yellow,Good,285 +18228855,Fit Bites,1,Noida,"B-5, Ground Floor, Wave Silver Tower, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32514117,28.57101361,Healthy Food,800,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,154 +18289257,Hungry Minister,1,Noida,"Sector 18 ,Noida",Sector 18,"Sector 18, Noida",77.327377,28.570034,"Continental, Mexican, Fast Food, Chinese",400,Indian Rupees(Rs.),No,Yes,Yes,No,1,3.5,Yellow,Good,147 +18380141,Hurry's Paratha,1,Noida,"J-44, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.322687,28.570159,"Pizza, North Indian",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,47 +18272377,Imly,1,Noida,"Food Court, DLF Mall Of India, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32071754,28.56728731,"Street Food, Continental, South Indian, North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,204 +18473005,Jambox,1,Noida,"Shop 5-A, Ground Floor, Wave Silver Tower, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.325052,28.571388,"Fast Food, Beverages",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,30 +300180,LIT Ultrabar,1,Noida,"B-1, 9/10, Near Sector 18 Metro Station, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32541844,28.57096149,"Continental, American, North Indian, Chinese",1550,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,425 +7784,Mainland China,1,Noida,"Ground Floor, Plot K-1, Dharam Palace, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32224539,28.57181745,Chinese,1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,743 +396,McDonald's,1,Noida,"P-16, Atta Market, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32432779,28.56920863,Fast Food,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,403 +18014141,Metro Dhaba,1,Noida,"B-1/35, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.3257916,28.57036376,"North Indian, Fast Food, Chinese, Biryani, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,418 +1702,Nazeer Foods,1,Noida,"C-9, Behind Shipra Hotel, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.3248411,28.57116908,"Mughlai, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,703 +18198836,Our Story Bistro & Tea Room,1,Noida,"G-38, 1st Floor, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32361533,28.56914297,"Cafe, Italian, Continental, Desserts",1000,Indian Rupees(Rs.),Yes,No,No,No,3,3.9,Yellow,Good,320 +309111,Paddy's Cafe,1,Noida,"J-3, 1st Floor, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32465636,28.5682225,Cafe,800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.7,Yellow,Good,302 +309098,Popular Cakery,1,Noida,"BK-1, Near Sector 18, Metro Station, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32499767,28.56978752,"Bakery, Desserts, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.9,Yellow,Good,250 +166,Punjabi By Nature,1,Noida,"P-19, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32484244,28.56900605,"North Indian, Mughlai",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.7,Yellow,Good,770 +18434638,Sadda Adda,1,Noida,"D-3, Opposite Karnataka Bank, GB Nagar, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.3238781,28.57065303,"Fast Food, Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,22 +1070,Subway,1,Noida,"B-14, K.J Enterprises, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32487295,28.57008816,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,268 +450,Swagath,1,Noida,"J-57, Near Centrestage Mall, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32373536,28.5684245,"North Indian, Chinese, South Indian, Seafood, Chettinad",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,415 +18175334,TFK - The Flaming Kick,1,Noida,"1st Floor, Ansal Fortune Arcade, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32236877,28.56954961,"North Indian, Asian, Continental",2350,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.5,Yellow,Good,214 +4248,The Great Kabab Factory,1,Noida,"Ansal's Fortune Arcade, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.3218102,28.57210424,"North Indian, Mughlai",2200,Indian Rupees(Rs.),Yes,No,No,No,4,3.5,Yellow,Good,540 +18237334,The Patiala Kkitchen,1,Noida,"K-1 Block, Dharam Palace, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32216291,28.57199854,North Indian,1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,332 +300952,The Tandoori Village,1,Noida,"J-57, 1st Floor, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32376587,28.56837474,"North Indian, Mughlai, Italian, Chinese",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.5,Yellow,Good,247 +311649,The Yellow Chilli,1,Noida,"2nd Floor, Dharam Palace, K Block, Near Movie Time Cinema, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32239123,28.57149032,"North Indian, Mughlai",1600,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.7,Yellow,Good,222 +2336,Top Breads,1,Noida,"K-4, Ground Floor, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32339572,28.57070886,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,420 +18273566,Wat-a-Burger!,1,Noida,"Shop 4, JOP Plaza, Near Lenskart, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32514352,28.56950956,Fast Food,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,324 +311338,Chawla's 2,1,Noida,"G-28, Savitri Market, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32652552,28.56984906,"North Indian, Mughlai, Chinese, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.2,Red,Poor,81 +310609,Himalaya,1,Noida,"Near JS Arcade, Atta Market, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32435126,28.57242813,North Indian,450,Indian Rupees(Rs.),No,Yes,No,No,1,2.3,Red,Poor,31 +307555,Public Cafe,1,Noida,"G-28A, Savitri Market, Near Metro Station, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.3261812,28.56993416,"Fast Food, Beverages",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.1,Red,Poor,74 +4717,RPM - Zanzi Bar,1,Noida,"B-110, Gautam Budh Nagar, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32529875,28.57066881,"Chinese, North Indian",2000,Indian Rupees(Rs.),Yes,No,No,No,4,2.4,Red,Poor,103 +7956,Mad Over Donuts,1,Noida,"J-52,Ground Floor, Main Market, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.3242376,28.56827816,Desserts,450,Indian Rupees(Rs.),No,Yes,No,No,1,4.2,Green,Very Good,235 +304612,RollsKing,1,Noida,"J-3, Near GIP Footover Bridge, Sector 18, Noida",Sector 18,"Sector 18, Noida",77.32480355,28.56812416,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,1055 +304691,Lumbini Food Point,1,Noida,"Near Sharma Clinic, C Block, Sector 19, Noida",Sector 19,"Sector 19, Noida",77.3283593,28.5816039,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,18 +309519,Owlcity,1,Noida,"Sector 19, Noida",Sector 19,"Sector 19, Noida",77.328028,28.577975,Fast Food,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,165 +18450369,Night Munchers,1,Noida,"Sector 19, Noida",Sector 19,"Sector 19, Noida",0,0,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18409730,Night Munchies,1,Noida,"C-31, Sector 19, Noida",Sector 19,"Sector 19, Noida",77.3291124,28.5807886,"North Indian, Chinese, South Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18427226,Anand Food Factory,1,Noida,"C-68, Sector-2, Noida",Sector 2,"Sector 2, Noida",77.3143909,28.5837833,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +387,Nirula's,1,Noida,"C-135, Near Sector 15 Metro Station, Sector 2, Noida",Sector 2,"Sector 2, Noida",77.3135127,28.5822486,"Fast Food, North Indian, Chinese, Desserts, Ice Cream",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.5,Orange,Average,221 +301420,Snacks India,1,Noida,"A-78, Sector 2, Noida",Sector 2,"Sector 2, Noida",77.3116811,28.5849968,"North Indian, Chinese, South Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,103 +18383442,Ahaar Udyan,1,Noida,"C-135, Sector 2, Noida",Sector 2,"Sector 2, Noida",77.3134615,28.5833336,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424675,Choco Bee,1,Noida,"B 3, Sector 2, Noida",Sector 2,"Sector 2, Noida",77.3123862,28.5850552,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18425782,Crazy Noodles,1,Noida,"Sector 2, Noida",Sector 2,"Sector 2, Noida",77.3128979,28.5853521,"Chinese, Thai",1100,Indian Rupees(Rs.),No,Yes,No,No,3,0,White,Not rated,2 +18457257,Dakshin Platter,1,Noida,"B Block, Sector 2, Noida",Sector 2,"Sector 2, Noida",77.31540769,28.58503529,South Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18382382,Kathi Junction,1,Noida,"B Block Road, Sector 2, Noida",Sector 2,"Sector 2, Noida",77.3139934,28.5855201,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18441711,Sonu Parantha Corner,1,Noida,"B-64, Sector -2, Noida",Sector 2,"Sector 2, Noida",77.3141165,28.585532,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +308770,Olive Kitchen,1,Noida,"82/2, F Block Market, Near INP School, Sector 20, Noida",Sector 20,"Sector 20, Noida",77.3332052,28.5838546,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,17 +18472688,R Cafe,1,Noida,"Near Indian National Public School, Sector 20, Noida",Sector 20,"Sector 20, Noida",0,0,South Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +18156065,Eating Point,1,Noida,"D-24, Sector 20, Noida",Sector 20,"Sector 20, Noida",77.3328463,28.5825656,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +308951,New Gee Pee,1,Noida,"Shop 1, F Block Market, Jal Vayu Vihar, Sector 21, Noida",Sector 21,"Sector 21, Noida",77.3360987,28.5880357,"Fast Food, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,27 +308563,Uncle's JVCC Restaurant,1,Noida,"Jalvayu Vihar Community Centre, Sector 21, Noida",Sector 21,"Sector 21, Noida",77.3371603,28.5847607,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,26 +18409182,Twenty Four Seven,1,Noida,"Dolly Motors, Indian Oil Petrol Pump, Near 12-22 Market, Near Noida Stadium, Plot 4, Sector 21 A, Sector 21, Noida",Sector 21,"Sector 21, Noida",77.3386645,28.5921841,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +8065,Hari Om Restaurant,1,Noida,"Main Road, I Block Market, Sector 22, Noida",Sector 22,"Sector 22, Noida",77.3446655,28.5990702,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +18216929,Jain Restaurant,1,Noida,"Jiyaram Complex, Near Central Bank, Sector 22, Noida",Sector 22,"Sector 22, Noida",77.3425749,28.5950171,"North Indian, Chinese, South Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,7 +18224208,Lajawab Family Restaurant,1,Noida,"Shop 10, Pandit Market, Opposite A- Block, Sector 22, Noida",Sector 22,"Sector 22, Noida",77.3425375,28.5940591,"North Indian, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,17 +18441760,Alam Muradabadi & Hyderabadi Biryani,1,Noida,"Near Wine Shop, Main Road, Sector 22, Noida",Sector 22,"Sector 22, Noida",77.3431349,28.5954289,"Mughlai, Biryani",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18492041,Bala Ji Raja Dhaba,1,Noida,"Opposite Sector 12 Sabji Mandi, Sector 22, Noida",Sector 22,"Sector 22, Noida",77.3446346,28.5973259,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18393406,Brijwasi Dhaba,1,Noida,"Sadarpur Colony, Sabzi Mandi, Sector 22, Noida",Sector 22,"Sector 22, Noida",77.3445624,28.597278,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18381676,Prerna Family Restaurant,1,Noida,"Main Road, I Block Market, Near Bank of India, Sector 22, Noida",Sector 22,"Sector 22, Noida",77.3449071,28.5990864,"North Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18430895,Rana Dhaba,1,Noida,"G 39/A, Near Axis Bank ATM, Sector 22, Noida",Sector 22,"Sector 22, Noida",77.349942,28.5979022,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18433898,The Food Factory,1,Noida,"Shop 617, Chaudhary Complex, Sector 22, Noida",Sector 22,"Sector 22, Noida",77.3469331,28.5916807,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +5239,221 B Baker Street,1,Noida,"21, Jalvayu Vihar Market, Sector 25, Noida",Sector 25,"Sector 25, Noida",77.3379464,28.5843762,Bakery,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,102 +18312466,Hunger's Hub,1,Noida,"Shop 1, Jalvayu Vihar, Shopping Complex, Sector 25, Noida",Sector 25,"Sector 25, Noida",77.3378653,28.5845728,"North Indian, Chinese, Mughlai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,16 +8022,Lajwaab Restaurant,1,Noida,"22, Opposite Bal Bharti School, Jalvayu Vihar Shopping Complex, Sector 25, Noida",Sector 25,"Sector 25, Noida",77.3381766,28.5843215,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,59 +8017,Republic of Chicken,1,Noida,"17, Jalvayu Vihar Shopping Complex, Sector 25, Noida",Sector 25,"Sector 25, Noida",77.3382691,28.5844243,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,37 +18020006,Gauranga Sweets,1,Noida,"15, Jal Vayu Vihar Shopping Complex, Sector 25, Noida",Sector 25,"Sector 25, Noida",77.3381319,28.5843227,Mithai,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18252394,Green Valley Chinese Food,1,Noida,"Market 5, Opposite Bal Bharti Public School, Sector 25, Noida",Sector 25,"Sector 25, Noida",77.3377069,28.5846506,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +311375,Super Cake Shop,1,Noida,"Jaipuria Plaza, Sector 26, Noida",Sector 26,"Sector 26, Noida",77.3352827,28.5767841,"Bakery, Desserts",300,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,4 +18463959,Dev Food,1,Noida,"B-128, Near MMI School, Sector 26, Noida",Sector 26,"Sector 26, Noida",0,0,"North Indian, South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18345461,Wakhra Swaad,1,Noida,"Shop 129, Jaipuria Plaza, Sector 26, Noida",Sector 26,"Sector 26, Noida",77.3352977,28.5768276,"North Indian, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,112 +311688,27 Grills,1,Noida,"Shop 27, D Block Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.32838832,28.57445006,"North Indian, Chinese, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,159 +18265723,China Hot Pot,1,Noida,"D Block Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.32827835,28.57456872,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +7986,Himalaya Momos & Roll,1,Noida,"Lakhi Ram Market, Near Sabji Mandi, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.324321,28.5735123,"Chinese, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,15 +18244520,Hungry House Pizzas & More,1,Noida,"Shop 28, D Block Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.32837792,28.57444329,"Pizza, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,79 +5760,Khana Khajana Da Dhaba,1,Noida,"20 & 21, Atta Subzi Mandi, Maa Shakumbhari Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.3245817,28.573916,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +18265705,M.P. Chole Tikki Wala,1,Noida,"Block D, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.32828371,28.57457078,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +5761,Maa Vaishno Shudh Bhojnalaya,1,Noida,"27, Subzi Mandi Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.3245004,28.5737086,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +18255160,More Than Caf,1,Noida,"Shop 26, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.3282646,28.57438086,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +18265709,Public Cafe,1,Noida,"Shop 29, D Block Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.32841983,28.57439941,"Fast Food, Beverages",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,13 +18236270,Sadda Taste,1,Noida,"Sector 27, Noida",Sector 27,"Sector 27, Noida",77.32803628,28.57187929,"North Indian, Fast Food, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,12 +5757,Sati Restaurant,1,Noida,"Likhi Ram Market, Atta, Near Subzi Mandi, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.3243658,28.5734717,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +312237,Super Cake Shop,1,Noida,"E-285, Near Atta Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.32451957,28.57346898,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,8 +5700,Uncle's Punjabi Rasoi,1,Noida,"11 & 12, Shakumbari Sabzi Market, Behind SABMALL, Atta Peer, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.3245902,28.5737171,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,7 +302575,Yours Deliciously,1,Noida,"45, 2nd Floor, Sab Mall, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.3235133,28.5737946,"Street Food, Beverages",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18463961,Captain Curry,1,Noida,"D 9A/13,D Block Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",0,0,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,19 +18336506,Oh My Scoop!,1,Noida,"Shop 24, Block D-9A Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.3283169,28.57453721,"Ice Cream, Beverages",200,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,23 +5744,Reena Restaurant,1,Noida,"Dharam Market, Behind Sab Mall, Atta Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.3242109,28.5736246,"Chinese, South Indian, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,57 +18408051,Delight Food,1,Noida,"Shop 26, D Block Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",0,0,"Italian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18377587,Hungro,1,Noida,"Indra Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",0,0,"North Indian, South Indian",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +307719,Shiparma Shri,1,Noida,"Behind Sub Mall, Shakumbhari Market, Sabji Mandi, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.32458611,28.57386667,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +7982,Shri Adarsh Kulfi,1,Noida,"Ground Floor, Sab Mall, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.323603,28.5738031,Desserts,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +311419,Simla Bakery,1,Noida,"Atta Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.32458428,28.57350873,Bakery,150,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,1 +18383448,Swad E Punjab,1,Noida,"E 20-21, Sabji Mandi Market, Behind Sub Mall, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.32455846,28.57394362,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18432192,Vishnu Ki Rasoi,1,Noida,"D Block Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.3282696,28.5746025,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +395,Pizza Hut Delivery,1,Noida,"5-10 & 12, Parsvanath Plaza, G Block, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.328325,28.5775482,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,62 +307724,Wah Ji Wah,1,Noida,"Shop 1, D Block Market, Sector 27, Noida",Sector 27,"Sector 27, Noida",77.32809763,28.57433905,North Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,2,Red,Poor,74 +1460,Chawla's Chic Inn,1,Noida,"2, Alaknanda Market, Sector 28, Noida",Sector 28,"Sector 28, Noida",77.3331573,28.5711016,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,58 +7991,Grill Point,1,Noida,"Alaknanda Shopping Complex, Sector 28, Noida",Sector 28,"Sector 28, Noida",77.3330621,28.5714962,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,20 +7979,Hari Sweets,1,Noida,"14, Alaknanda Shopping Complex, Sector 28, Noida",Sector 28,"Sector 28, Noida",77.3330963,28.5714642,Mithai,100,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,14 +18323760,Sultanate of Spice,1,Noida,"Shop 5, Alaknanda Shopping Complex, Sector 28, Noida",Sector 28,"Sector 28, Noida",77.333159,28.5710463,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,43 +307491,Yamu's Panchayat,1,Noida,"4, Alaknanda Shopping Complex, Sector 28, Noida",Sector 28,"Sector 28, Noida",77.3331584,28.5710661,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +2334,Debon,1,Noida,"D-1, Alaknanda Shopping Complex, Sector 28, Noida",Sector 28,"Sector 28, Noida",77.3332434,28.5711287,"Raw Meats, North Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,85 +3153,Hot & Sour,1,Noida,"Near Ganga Shopping Complex, Sector 29, Noida",Sector 29,"Sector 29, Noida",77.3350897,28.5670876,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,46 +18361198,Open Kitchen,1,Noida,"Shop 54, Block 1, Ganga Shopping Complex, Sector 29, Noida",Sector 29,"Sector 29, Noida",77.3353589,28.5672923,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,12 +309215,Truffle Muffle,1,Noida,"Sector 29, Noida",Sector 29,"Sector 29, Noida",77.3352692,28.5673735,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,37 +18219552,Go! Biryani,1,Noida,"Sector 29, Noida",Sector 29,"Sector 29, Noida",77.3353589,28.5684579,Biryani,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,144 +18478962,Tastee Chauka,1,Noida,"Shop 31, Block IV, Ganga Shopping Complex, Sector 29, Noida",Sector 29,"Sector 29, Noida",77.33557262,28.56859852,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,31 +18472682,Maharba Chicken Point,1,Noida,"Brahmputra Market, Near Juice Corner, Sector 29, Noida",Sector 29,"Sector 29, Noida",77.332751,28.569734,"North Indian, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18396192,Sweet Spells,1,Noida,"1264, 3rd Floor, Sector 29, Noida",Sector 29,"Sector 29, Noida",77.3352692,28.5672838,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18138415,Foodie,1,Noida,"E-19, E Block Market, Sector 3, Noida",Sector 3,"Sector 3, Noida",77.319038,28.5818551,"North Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,8 +18429379,Lapaalap,1,Noida,"Shop 18, E- Block Market, Sector 3, Noida",Sector 3,"Sector 3, Noida",77.3187567,28.5821309,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +3443,Fresh Food Factory,1,Noida,"E-1, Sector 3, Noida",Sector 3,"Sector 3, Noida",77.3173193,28.5810955,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,140 +18466412,Bollycric,1,Noida,"D-15, Sector 3, Noida",Sector 3,"Sector 3, Noida",0,0,"North Indian, South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18180048,The Kitchen Factory,1,Noida,"A-26, Sector 3, Noida",Sector 3,"Sector 3, Noida",77.3173563,28.5810132,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +302535,Caff La Poya,1,Noida,"10, Kirtimaan Plaza Behind Mother Diary, Sector 30, Noida",Sector 30,"Sector 30, Noida",77.3409391,28.5722363,"Cafe, Continental, Fast Food, Italian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,164 +18311928,Elixir Health Caf,1,Noida,"10, 1st Floor, Kirtimaan Plaza, Sector 30, Noida",Sector 30,"Sector 30, Noida",77.3408326,28.5724711,"Cafe, Healthy Food, Continental, Italian, Asian",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.7,Yellow,Good,131 +18446503,Radhey Foodz,1,Noida,"Shop 11, Main Sharma Market, Near New Shiv Mandir, G.B.Nagar, Sector 31, Noida",Sector 31,"Sector 31, Noida",77.346491,28.576754,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18157374,The Kitchen,1,Noida,"G-25, Savitri Market, Sector 31, Noida",Sector 31,"Sector 31, Noida",77.3394417,28.5791986,North Indian,600,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,20 +309059,Uncle's Treat,1,Noida,"B-5/9, Sector 31, Noida",Sector 31,"Sector 31, Noida",77.34303586,28.5793226,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,5 +18291234,Wow! Momo,1,Noida,"3rd Floor, Food Court, Logix City Center, Sector 32, Near, Sector 31, Noida",Sector 31,"Sector 31, Noida",77.3536634,28.5743086,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,2.6,Orange,Average,32 +18458315,KD's Hunger Point,1,Noida,"Shop 1A, Hansraj Complex, Sector 31, Noida",Sector 31,"Sector 31, Noida",0,0,"North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,49 +18457856,Food Town,1,Noida,"Shop 12, A Block, Sector 31, Noida",Sector 31,"Sector 31, Noida",0,0,"Chinese, North Indian, South Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18323684,The Big Chefs,1,Noida,"C-7/2, Near Shiv Mandir, Sector 31, Noida",Sector 31,"Sector 31, Noida",77.3469342,28.5773502,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18244230,The Big Scoop,1,Noida,"B 103, Near B Block Park, Sector 31, Noida",Sector 31,"Sector 31, Noida",77.347652,28.5744592,Ice Cream,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18204467,Govinda's Restaurant,1,Noida,"A-5, Opposite NTPC Office, Sector 33, Noida",Sector 33,"Sector 33, Noida",77.3499908,28.5866196,"North Indian, South Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +18306542,Not Just Dilli,1,Noida,"Food Court, Logix City Centre, Sector 32, Near Sector 33, Noida",Sector 33,"Sector 33, Noida",77.3536634,28.5743086,Street Food,450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +18337925,RollsKing,1,Noida,"12B , 3rd Floor, Logix City Centre, Sector 32, Near Sector 33, Noida",Sector 33,"Sector 33, Noida",77.3536634,28.5743086,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,22 +18433854,Bunz & Dogz,1,Noida,"Inside Unitech Infospace, Sector 33, Noida",Sector 33,"Sector 33, Noida",77.35415488,28.58791339,American,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +313151,Radha Rani Bakery,1,Noida,"A-5, Iskcon Temple, Opposite NTPC, Sector 33, Noida",Sector 33,"Sector 33, Noida",77.3502339,28.5865079,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +9735,Chauhan Vatika,1,Noida,"24, B-12, Sector 34, Noida",Sector 34,"Sector 34, Noida",77.36111,28.5818244,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,28 +18440192,Frozen Stone,1,Noida,"Food Court, Logix City Centre, Sector 32, Near Sector 34, Noida",Sector 34,"Sector 34, Noida",77.3536634,28.5743086,"Fast Food, Beverages",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,4 +302501,Kavita's Restaurant,1,Noida,"C Block Market, Nilgiri Shopping Complex, Sector 34, Noida",Sector 34,"Sector 34, Noida",77.3636829,28.5835424,"North Indian, Mughlai, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,37 +303025,Mudrika Food Factory,1,Noida,"16-A, Block B-8-A, Amaltash Market, Sector 34, Noida",Sector 34,"Sector 34, Noida",77.3573419,28.5838901,"North Indian, Mughlai, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,20 +18424204,Pind Balluchi,1,Noida,"Shop 215, 2nd Floor, Logix City Centre Mall, Sector 34, Noida",Sector 34,"Sector 34, Noida",77.3536634,28.5743086,"North Indian, Chinese, Mughlai",900,Indian Rupees(Rs.),Yes,No,No,No,2,2.9,Orange,Average,7 +18393700,Zaffran- Ikshita's Kitchen,1,Noida,"B-1/300, Aravalli Apartment, Sector 34, Noida",Sector 34,"Sector 34, Noida",77.3577905,28.5840221,Kashmiri,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +18430590,Chaayos,1,Noida,"Ground Floor, Logix City Centre Mall, Near Noida City Center Metro, Sector 34, Noida",Sector 34,"Sector 34, Noida",77.3536634,28.5743086,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,18 +18439524,Punjabi Tadka,1,Noida,"B Block Market, Behind Mother Dairy, Sector 34, Noida",Sector 34,"Sector 34, Noida",77.360356,28.583684,"North Indian, Mughlai",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,70 +18417576,Cafe Krisa,1,Noida,"B8A/24, Amaltash Shopping Complex, Sector 34, Noida,",Sector 34,"Sector 34, Noida",77.3574316,28.5839882,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18440395,Chill Grill,1,Noida,"Food Court, Logix City Centre, Sector 32, Near, Sector 34, Noida",Sector 34,"Sector 34, Noida",77.3536634,28.5743086,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18423885,Dolce Gelato,1,Noida,"BW-58, Near Noida City Center Metro, Wave City Center, Sector 32, Near Sector 34, Noida",Sector 34,"Sector 34, Noida",77.3536634,28.5743086,"Ice Cream, Beverages, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18421515,Maa Ka Khaana,1,Noida,"273, B-14, Himgiri Apartment, Sector 34, Noida",Sector 34,"Sector 34, Noida",77.3614689,28.5820375,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18440171,The Beer Cafe,1,Noida,"2nd Floor, Logix City Centre, Sector 32, Near, Sector 34, Noida",Sector 34,"Sector 34, Noida",77.3536634,28.5743086,North Indian,1250,Indian Rupees(Rs.),No,No,No,No,3,0,White,Not rated,3 +18359322,Heaven's Point,1,Noida,"341, Near Mother Diary, Arun Vihar, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3425375,28.5691352,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +457,Kamboj's,1,Noida,"AVCC Club, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3402775,28.5661407,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.8,Orange,Average,239 +18398459,Mexican Pizza,1,Noida,"Shop 2, Godavari Shopping Complex, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3404288,28.5653946,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,15 +18255715,Shahenshah,1,Noida,"Shop 2, Mukhiya Market, Near MITR Hospital, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3376836,28.5644063,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,7 +18427249,Snack Chat,1,Noida,"5, Sharma Market, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3405146,28.5660756,"Fast Food, Italian",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,23 +18391164,The Amazing Buger's,1,Noida,"Shop 21, Godavari Complex, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3397535,28.5651685,"Fast Food, Burger",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,8 +18472655,The Black Box,1,Noida,"Shop 1, Godavari Complex Market, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.340435,28.565446,"North Indian, Continental",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,6 +18279437,Al Bake,1,Noida,"Shop 5, Godavari Complex, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3403587,28.5654172,"Fast Food, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,72 +18204489,Asian Fun,1,Noida,"Shop 14, Godavari Shopping Complex, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.340025,28.565491,Chinese,700,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,113 +18275704,Burnout,1,Noida,"Location Varies, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.37565689,28.52998373,"Continental, Mexican, Italian",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,111 +18332077,Cafe Fusion,1,Noida,"Shop 10, Sharma Market, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.34083544,28.56619633,"Cafe, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,68 +18458632,Fit Bites,1,Noida,"Shop 1, Sharma Market, Arun Vihar, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.340721,28.566297,Healthy Food,800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.7,Yellow,Good,26 +18391158,Go Krazy,1,Noida,"Shop 7, Godavari Complex, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3403537,28.565437,"Italian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,27 +18303845,Green Restaurant,1,Noida,"Shop 2, Sharma Market, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3408326,28.5661948,"North Indian, Chinese, Mughlai",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,47 +18352262,Hunger Strike,1,Noida,"Shop 3, Godavari Shopping Complex, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3404288,28.5653946,"Fast Food, North Indian",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,92 +18427229,The Munchkart Cafe,1,Noida,"Shop 38, Godavari Shopping Complex, Arun Vihar, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.34018199,28.56528114,"Fast Food, Chinese",350,Indian Rupees(Rs.),No,Yes,No,No,1,3.8,Yellow,Good,34 +18345747,Thee Pot,1,Noida,"Shop 17, Godavari Market, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3399353,28.5653929,"Cafe, Fast Food",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.7,Yellow,Good,80 +18368024,Waffles and Crepes,1,Noida,"Shop 27, Godavri Market, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3400699,28.5655401,"Desserts, Beverages",250,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,66 +18472419,Biryani Vice,1,Noida,"Shop 2, Godavari Shopping Complex, Sector 37, Noida",Sector 37,"Sector 37, Noida",0,0,"North Indian, Biryani",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18284048,Chinese Chilly Sizzler,1,Noida,"Near Golf Course Metro Station Gate 1, Sector 36, Near, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3457285,28.5699307,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18438321,Moonlight Cafe,1,Noida,"Near Godavri Complex, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.34016448,28.56573444,"Continental, Fast Food, Italian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18319512,Sugar Ruffles,1,Noida,"Sector 36, Near Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3404737,28.5686715,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +309278,Bistro 37,1,Noida,"Shop 11, Godawari Complex, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.3397409,28.5652948,"Fast Food, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,4.3,Green,Very Good,1005 +18419879,Desi Swag,1,Noida,"Shop 22, Godavari Shopping Complex, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.340025,28.5653117,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,4.3,Green,Very Good,96 +9836,Teasta,1,Noida,"16, Godawari Complex, Sector 37, Noida",Sector 37,"Sector 37, Noida",77.340025,28.565491,"Fast Food, Beverages",200,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,632 +307407,Appu Ghar Express,1,Noida,"Building 105, Plot A-2, GIP Campus, Sector 38-A, Sector 38, Noida",Sector 38,"Sector 38, Noida",77.323737,28.5641453,"Fast Food, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,63 +305317,Barista,1,Noida,"Botanical Garden Metro Station, Ground Floor, Sector 38, Noida",Sector 38,"Sector 38, Noida",77.334633,28.5640131,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,26 +18430593,Burger King,1,Noida,"Shop B, Ground Floor, Botanical Garden Metro Station, Sector 38, Noida",Sector 38,"Sector 38, Noida",77.334633,28.5640131,"Burger, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,13 +18349929,Keventers,1,Noida,"SH-161,GardenGalleria, Sector 38, Noida",Sector 38,"Sector 38, Noida",77.3221651,28.5643934,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +18408048,Kenny Rogers Roasters,1,Noida,"Ground Floor, FB 104, Garden Galleria Mall, Sector 38, Noida",Sector 38,"Sector 38, Noida",77.3220403,28.5645948,American,1300,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,53 +305222,McDonald's,1,Noida,"Intersection of Worlds of Wonder and Great India Place Mall, Sector 38, Noida",Sector 38,"Sector 38, Noida",77.3254169,28.5664384,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,53 +18356801,Baskin Robbins,1,Noida,"Attrium Ground Floor, Garden Galleria Mall, Sector 38, Noida",Sector 38,"Sector 38, Noida",77.3216286,28.5648303,Ice Cream,300,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,2 +18432198,Cafe Buddy's,1,Noida,"Botinical Garden Metro Station, Sector 38, Noida",Sector 38,"Sector 38, Noida",77.3349102,28.5643808,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18432025,Fusionn Rolls,1,Noida,"Global Metro Complex, Botanical Garden Metro Station, Sector 38, Noida",Sector 38,"Sector 38, Noida",0,0,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18265399,Kwality Walls - Happiness Station,1,Noida,"Third Floor, Food Court, Sector 38, Noida",Sector 38,"Sector 38, Noida",77.3263626,28.5677206,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18432194,Shakti Food & Restaurant,1,Noida,"Babu Ram Market, Main Dadri Road, Opposite Great India Place Mall, Sector 38, Noida",Sector 38,"Sector 38, Noida",77.3281989,28.5693451,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +8385,Domino's Pizza,1,Noida,"Ground Floor, Botanical Garden, Metro Station, Sector 38, Noida",Sector 38,"Sector 38, Noida",77.334211,28.564222,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,70 +309799,Mr. Brown,1,Noida,"Botanical Garden Metro Station, Sector 38, Noida",Sector 38,"Sector 38, Noida",77.33417619,28.56437507,"Bakery, Desserts, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,4,Green,Very Good,183 +6800,Chef's Bar-Be-Que,1,Noida,"C 102 A, 13/14, Near Sector 39, Noida",Sector 39,"Sector 39, Noida",77.3498054,28.5672202,"North Indian, Mughlai, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,69 +18449659,Sen's Sational Xpress Kitchen,1,Noida,"Shop 2, C Block Market, Sector 39, Noida",Sector 39,"Sector 39, Noida",0,0,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,7 +18438249,Shanghai Dreams,1,Noida,"C Block Market, Sector 39, Noida",Sector 39,"Sector 39, Noida",77.34990894,28.56699945,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +18489509,InnerChef,1,Noida,"B-46, Sector 4, Noida",Sector 4,"Sector 4, Noida",0,28,"North Indian, South Indian, Italian, Continental, Mediterranean, Lebanese, Desserts",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,10 +18155147,Antaryami Paratha Corner,1,Noida,"A-15, Sector 4, Noida",Sector 4,"Sector 4, Noida",77.3219012,28.5810716,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18388032,F-all (Food for All),1,Noida,"Sector 40, Noida",Sector 40,"Sector 40, Noida",77.3568036,28.5651898,"North Indian, Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,24 +18478565,Green Restaurant,1,Noida,"Sector 40, Noida",Sector 40,"Sector 40, Noida",0,0,"Chinese, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +313410,2 Bros Kitchen,1,Noida,"Plot 14, C-98, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.36176707,28.56952163,"North Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,364 +311974,Baskin Robbins,1,Noida,"Near Theos/ HP Petrol Pump, Main Dadri Road, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3607699,28.561368,Ice Cream,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.3,Orange,Average,12 +5686,Big Bone - The Meat Shop,1,Noida,"Shop 13, C Block Market, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3618278,28.5692496,"Raw Meats, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,16 +18396157,Biryani House,1,Noida,"C block market, sector 41, Noida",Sector 41,"Sector 41, Noida",77.36170672,28.56920834,"Biryani, North Indian",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,9 +5681,China Hot,1,Noida,"C Block Market, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3618487,28.5697922,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,22 +307424,City Hut,1,Noida,"Near HP Petrol Pump, Main Dadri Road, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3591531,28.5615185,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,27 +8084,Defence Bakery,1,Noida,"30, C Block Market, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.361986,28.5689914,"Bakery, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,117 +18412870,Dhabha 27,1,Noida,"Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3629392,28.5662049,"Mughlai, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,5 +18412876,Faasos,1,Noida,"C-11/98, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3616483,28.569412,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,10 +306551,Green Chick Chop,1,Noida,"C-98/18, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3618197,28.5692859,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,25 +8095,JSB Evergreen Cool Point,1,Noida,"25, C Block Market, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3620195,28.569218,"North Indian, Chinese, Fast Food, Mithai",450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,56 +308648,JSB Evergreen Snack & Sweets,1,Noida,"C Block Market, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3619175,28.5693477,"North Indian, Chinese, Fast Food, Street Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,41 +18352184,Keventers,1,Noida,"Glued Reloaded, Dynamic House, Opposite Petrol Bunk, Dadri Main Road, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3609306,28.5614537,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +17977758,More Than Cafe,1,Noida,"Shop 12, C Block Market, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3618306,28.569207,"Cafe, Continental, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,39 +18370702,Mutfi,1,Noida,"Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3603093,28.5613668,"North Indian, Seafood, Bengali",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,15 +18322612,Nawabi Mughlai Zaika,1,Noida,"Sector 41, Noida",Sector 41,"Sector 41, Noida",77.360265,28.561485,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,34 +18412866,Ovenstory Pizza,1,Noida,"Sector 41, Noida",Sector 41,"Sector 41, Noida",77.366334,28.565118,"Pizza, Fast Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,26 +18396425,ProFit Kitchen,1,Noida,"Opposite Shani Mandir, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3592512,28.5614308,Healthy Food,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,21 +18287405,Public Cafe,1,Noida,"Near HP Petrol Pump, Main Dadri Road, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.35881027,28.56145334,"Fast Food, Beverages",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,13 +18466390,The Chickmunks Express,1,Noida,"Sector 41, Noida",Sector 41,"Sector 41, Noida",77.360571,28.565447,"Fast Food, Italian, North Indian, Chinese",1300,Indian Rupees(Rs.),No,Yes,Yes,No,3,3,Orange,Average,6 +18219556,Time to Tea,1,Noida,"C-98/27, Jain Road, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3620072,28.5689975,"Fast Food, Beverages",350,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,66 +311332,Twenty Four Seven,1,Noida,"RK Service Station, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3583449,28.5614837,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,6 +18439546,Virundu,1,Noida,"H Block, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.361169,28.5656,South Indian,300,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,10 +18441667,Be Bhukkad,1,Noida,"Aghapur, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.363015,28.563578,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,43 +18363088,Behrouz Biryani,1,Noida,"Sector 41, Noida",Sector 41,"Sector 41, Noida",77.361455,28.569307,Biryani,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,63 +18454463,Bistro 365,1,Noida,"N.P Plaza, Main Dadri Road, Agghapur, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.36045983,28.56136235,"Cafe, North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,27 +18450749,Engineers Da Dhaba,1,Noida,"Shop 2, Street 1, Aghapur, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.36013662,28.56132431,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,38 +18381230,Hungry Minister,1,Noida,"Shop 6, Gautam Budh Nagar, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3522612,28.5615785,"Continental, Mexican, Fast Food, Chinese",400,Indian Rupees(Rs.),No,Yes,Yes,No,1,3.5,Yellow,Good,29 +18332051,Kake Da Hotel,1,Noida,"Shop 1-2, Gautam Budh Nagar, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3612895,28.5612185,"North Indian, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,63 +18339370,Biryani,1,Noida,"Sector 41, Noida",Sector 41,"Sector 41, Noida",77.36,28.57,Biryani,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18439534,C Cube,1,Noida,"1st Floor, C Block Market, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3618278,28.5692496,"American, Italian, North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18432190,Chicago Pizza,1,Noida,"Glued Reloaded, Dynamic House, Next to HP Petrol Pump, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3609306,28.5614537,Pizza,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18412897,Kettle & Kegs,1,Noida,"Sector 41, Noida",Sector 41,"Sector 41, Noida",77.361455,28.569307,Tea,200,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,2 +18383529,Keventers,1,Noida,"19, C 19/98, C Block Market, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3617807,28.5692053,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18383549,Keventers,1,Noida,"C 19/98, Block Market, Gautam Buddh Nagar, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.358773,28.5612563,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18430878,Navab's,1,Noida,"Near HP Petrol Pump, Main Dadri Road, Sector 41, Noida",Sector 41,"Sector 41, Noida",0,0,"North Indian, Chinese",900,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18481312,Nawabi Mughlai Zaika Food Van,1,Noida,"Sector 41, Noida",Sector 41,"Sector 41, Noida",0,0,"North Indian, Mughlai",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18478971,NS Punjabi Swad,1,Noida,"Opposite Shani Mandir, Aghapur Villlage, Sector 41, Noida",Sector 41,"Sector 41, Noida",0,0,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18439535,Pitstop,1,Noida,"Glued Reloaded, Dynamic House, Opposite Petrol Pump, Dadri Main Road, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3609755,28.5615028,"North Indian, Mughlai, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +307974,Royal Spice Restaurant,1,Noida,"Dadri Road, Near HP Petrol Pump, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.3591363,28.5616434,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,3 +18430884,Sethi's,1,Noida,"Near HP Petrol Pump, Main Dadri Road, Sector 41, Noida",Sector 41,"Sector 41, Noida",0,0,North Indian,800,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18460087,Snacks Parties,1,Noida,"Sector 41, Noida",Sector 41,"Sector 41, Noida",0,0,"Fast Food, Street Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +1337,Peshawari Delux Restaurant,1,Noida,"C Block Market, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.361974,28.5689197,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,52 +311342,WTF - World's Tastiest Food,1,Noida,"Sector 41, Noida",Sector 41,"Sector 41, Noida",77.35858697,28.56337153,"North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,5 +18438435,Salato Salad Studio,1,Noida,"Block C Road, Sector 41, Noida",Sector 41,"Sector 41, Noida",77.362094,28.569279,"Salad, Continental",500,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,43 +18425976,AB Fast N Food,1,Noida,"2, Main Market, Opposite Easy Day Supermarket, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3374886,28.5546617,Fast Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,6 +18463984,Cafe 44,1,Noida,"A15/11, 1st Floor, Sector 44, Noida",Sector 44,"Sector 44, Noida",0,0,"Continental, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +18370372,Cafe Onion Rings,1,Noida,"Near HP Petrol Pump, Dadri Road, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3382907,28.56470841,"North Indian, Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,52 +18433903,Club 44,1,Noida,"A Block Market, Above Andhra Bank, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3321849,28.5580118,North Indian,800,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,11 +18391172,Indian Curry House,1,Noida,"Sector 44, Noida",Sector 44,"Sector 44, Noida",77.35743094,28.56198634,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,9 +310539,Krunchies,1,Noida,"Shop 2, Bhanu Market, Opposite Valley Bazar, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3373827,28.5543914,Fast Food,200,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,19 +18383527,Platefull,1,Noida,"A-18, A Block Commercial Market, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3323268,28.5579734,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,18 +310695,Sanghai Food,1,Noida,"Pearl Gateway Tower, Near Gulmohar Garden, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3361665,28.5599265,Chinese,450,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,15 +308763,Shadev Saini Dhaba,1,Noida,"Main Dadri Road, Village Chhalera, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3400334,28.560602,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +309135,Wasim Biryani Center,1,Noida,"Near Saba Apartment, Main Dadri Road, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3400007,28.5607636,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,8 +3740,Hungry - I,1,Noida,"20, A Block Market, Near Amity School, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3323527,28.5579975,"Cafe, Italian, Chinese, Continental",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,431 +18400723,Smoking Tikka,1,Noida,"Plot 109, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3385357,28.5545389,"North Indian, Chinese, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,47 +18383486,The Fusion Food Stand,1,Noida,"Shop 6, A-15, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3322975,28.5579718,"Chinese, Thai, Fast Food",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,40 +18454484,44 Grills,1,Noida,"Street 3, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.339363,28.554041,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,0 +18398614,Ammi's Kitchen,1,Noida,"Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3305135,28.5584685,Mughlai,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18373560,Bangali Restaurant,1,Noida,"Shop 4, Opposite Value Bazaar, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3374228,28.5541271,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18478972,Home Cafe,1,Noida,"Block A, Sector 46, Near Sector 44, Noida",Sector 44,"Sector 44, Noida",0,0,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18381258,Hot Chilli Food Plaza,1,Noida,"Gali 3, Village Chhalera, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3431656,28.5585244,"North Indian, South Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18420881,Kanak Kitchen,1,Noida,"Near Kartik Kunj Apartment, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.33950197,28.5568248,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18499456,Speziato Foods,1,Noida,"Shop 6, A Block Market, Sector 44, Noida",Sector 44,"Sector 44, Noida",0,0,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18433905,The Golden Spoon,1,Noida,"Near SRS Value Bazar, Sector 44, Noida",Sector 44,"Sector 44, Noida",77.3367172,28.5538698,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18448608,The Saffron Plant Restaurant,1,Noida,"The Club, Amrapali Sapphire, Sector 45, Near Sector 44, Noida",Sector 44,"Sector 44, Noida",0,0,"Chinese, North Indian, Mughlai",700,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,0 +18387305,Zaika Tiffin Center,1,Noida,"Gardenia Glory, Sector 46, Near Sector 44, Noida",Sector 44,"Sector 44, Noida",0,0,"North Indian, South Indian",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18317511,#Urban Caf,1,Noida,"LG-06, Amrapali Arcade 1, Amrapali Sapphire, Sector 45, Noida",Sector 45,"Sector 45, Noida",77.3441526,28.5485744,"North Indian, Chinese, Italian",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,49 +18472676,Baked! Cakes & Desserts,1,Noida,"Amrapali Sapphire, Sector 45, Noida",Sector 45,"Sector 45, Noida",0,0,"Bakery, Desserts",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,11 +18244257,Quick Grabs,1,Noida,"Shop 13, UG, Amrapali Sapphire Shopping Complex, Sector 45, Noida",Sector 45,"Sector 45, Noida",77.3440629,28.5489246,"North Indian, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,80 +18228857,The Roll Van,1,Noida,"Plot 1, Sector 45, Noida",Sector 45,"Sector 45, Noida",77.3451396,28.5503712,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +18456765,Balaji Restaurant & Sweets,1,Noida,"Shop B-6/7, Som Bazaar, Sadarpur, Near Shiv Mandir, Sector 45, Noida",Sector 45,"Sector 45, Noida",0,0,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18317512,Baskin Robbins,1,Noida,"Near Amity University, Sector 45, Noida",Sector 45,"Sector 45, Noida",77.3444218,28.5498552,Ice Cream,300,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,2 +18432231,Baskin Robbins,1,Noida,"Shop 10, Amrapali Sapphire Arcade, Sector 45, Noida",Sector 45,"Sector 45, Noida",77.3442694,28.5486331,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18486776,Chandu Chat Bhandar,1,Noida,"Amrapali Arcade, Sector 45, Noida, Delhi NCR",Sector 45,"Sector 45, Noida",0,0,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18432236,Foodies Park,1,Noida,"Choudhary Fateh Singh Market, Opposite Amarpali Sapphire, Sector 45, Noida",Sector 45,"Sector 45, Noida",77.3425046,28.5509007,"Chinese, North Indian",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +311706,Noida Cakes Online,1,Noida,"Sector 47, Noida",Sector 47,"Sector 47, Noida",77.3636066,28.5593943,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,9 +18410380,The Epicureans,1,Noida,"B-101, Near HDFC Bank, Sector 46, Near Sector 47, Noida",Sector 47,"Sector 47, Noida",77.3728126,28.5480976,"North Indian, Mughlai, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,20 +18426112,Bhojanam4u,1,Noida,"A 109, Sector 47, Noida",Sector 47,"Sector 47, Noida",77.3740358,28.55065,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18418205,Chocadoodledoo,1,Noida,"802, Tower 32, Lotus Boulevard Espacia, Opposite Pathways School, Sector 100, Near Sector 47, Noida",Sector 47,"Sector 47, Noida",0,0,Bakery,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18352161,Chocolate Therapy by Nishi,1,Noida,"A-811, Jalvayu Towers, Sector 47, Noida",Sector 47,"Sector 47, Noida",77.3724136,28.55276,Bakery,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18234101,Cookie House,1,Noida,"Sector 47, Noida",Sector 47,"Sector 47, Noida",77.3717413,28.5528331,Bakery,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +312313,Adhikari Fast Food Corner,1,Noida,"Shop 3, Near Samvedana Hospital, Sector 48, Noida",Sector 48,"Sector 48, Noida",77.3678917,28.5572741,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,5 +18339329,Amrit's Agni Multi Cuisine Restaurant,1,Noida,"M-7, 1st Floor, Opposite Samvedana Hospital, Sector 48, Noida",Sector 48,"Sector 48, Noida",77.3676875,28.5574096,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +304818,Punjabi Chaska,1,Noida,"1, Opposite Samvedna Hospital, Sector 48, Noida",Sector 48,"Sector 48, Noida",77.3681581,28.5571046,"North Indian, Mughlai, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,27 +18303838,The Choco Shop,1,Noida,"Sector 48, Noida",Sector 48,"Sector 48, Noida",77.3682751,28.5571526,Bakery,700,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +310724,The Taste,1,Noida,"Opposite Samvedna Hospital, Sector 48, Noida",Sector 48,"Sector 48, Noida",77.3678243,28.5574263,"Bakery, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,7 +310753,Tibb's Frankie,1,Noida,"Food Court, Shopping Planet, Near Value Bazaar, Sector 48, Noida",Sector 48,"Sector 48, Noida",77.3727931,28.5551493,Fast Food,250,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,22 +18435295,Amazing Burgers,1,Noida,"Shop 29 & 30, Ground Floor, Shopping Planet, Plot 232A/1, Block C, Sector 48, Noida",Sector 48,"Sector 48, Noida",77.3728518,28.5555893,"Burger, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18281160,Kitchen Express,1,Noida,"Sector 48, Noida",Sector 48,"Sector 48, Noida",77.36971536,28.56072076,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +309155,Domino's Pizza,1,Noida,"Shop 29 & 30, Ground Floor, Shopping Planet, Plot 232A/1, Block C, Sector 48, Noida",Sector 48,"Sector 48, Noida",77.3729825,28.5555542,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.3,Red,Poor,38 +18289230,Public Cafe,1,Noida,"2, Shopping Planet, Sector 48, Noida",Sector 48,"Sector 48, Noida",77.373221,28.5556159,"Fast Food, Beverages",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,7 +18277218,Chocopur,1,Noida,"Near HDFC ATM, Sector 49, Noida",Sector 49,"Sector 49, Noida",77.3719832,28.5573976,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,11 +18133492,Sweta Restaurant,1,Noida,"Barola, Near OBC Bank, Dadri Main Road, Sector 49, Noida",Sector 49,"Sector 49, Noida",77.3706065,28.5596943,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,61 +18332086,Flames of Tandoor,1,Noida,"Main DSC Road, Near OBC Bank, Sector 49, Noida",Sector 49,"Sector 49, Noida",77.37059221,28.56042768,"North Indian, Mughlai",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,76 +18419113,Shaivi's Kitchen,1,Noida,"Hindon Vihar, Sector 49, Noida Opp. Dominos and ICICI BANK Sector 48",Sector 49,"Sector 49, Noida",77.375287,28.5562369,"North Indian, South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18203626,Kuppies,1,Noida,"A-100, 2nd Floor, Sector 5, Noida",Sector 5,"Sector 5, Noida",77.3234175,28.5887703,"Bakery, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,89 +312978,The Urban Chulha,1,Noida,"I-10, Harola, Near Sector 5, Noida",Sector 5,"Sector 5, Noida",77.3245004,28.5878734,North Indian,300,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,87 +18451091,Goyal Chhole Kulche Wala,1,Noida,"G-48, Udhyog Marg, Sector 6, Near Sector 5",Sector 5,"Sector 5, Noida",77.32,28.59,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304727,Cafe Coffee Day,1,Noida,"Shop B-1-23, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3619175,28.5705134,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,42 +3679,Choco House,1,Noida,"F-28, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.361738,28.5695102,Desserts,450,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,18 +306023,DCK- Dana Choga's Kitchen,1,Noida,"B-1/52, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3620969,28.5702613,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,340 +18378765,Fresh and Fit Ghar Ka Khana,1,Noida,"F Block, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3619772,28.5702807,"North Indian, Healthy Food, Rajasthani",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +18014129,Hungry Ullu,1,Noida,"Main Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3640969,28.56872955,Fast Food,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,141 +301081,Khidmat,1,Noida,"Shop B-1/56, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3621286,28.5699073,"North Indian, Mughlai, Chinese",750,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,369 +2971,Lahori Restaurant,1,Noida,"B-1/28, Central Market, Above Archies, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.361983,28.5705071,"North Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,2.5,Orange,Average,206 +302406,New Chinese Chilli Sizzler,1,Noida,"Near Vodafone Store, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3621117,28.5699059,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,53 +18254253,Nirmala's,1,Noida,"Shop 1, Near Neo Hospital, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3704026,28.5694331,"North Indian, Chinese",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,51 +18138435,Prime Bakery,1,Noida,"Shop 4, Skytech Matrott, Sector 76, Near Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3864967,28.5709428,"Bakery, Mithai",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,11 +5684,Royal Empire Meat Shop,1,Noida,"B-1/48, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.362366,28.5702866,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,29 +1745,Southern Treat,1,Noida,"B-1/32, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3620969,28.5703509,South Indian,500,Indian Rupees(Rs.),No,Yes,No,No,2,2.8,Orange,Average,113 +3707,Subway,1,Noida,"B-1/24, Central Market, Near City Centre Metro Station, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3619175,28.5705134,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,165 +18371395,The Chickmunks Caf,1,Noida,"B-1/39 Central, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3623092,28.5706018,"Fast Food, Cafe, Italian, North Indian, Chinese",550,Indian Rupees(Rs.),No,Yes,Yes,No,2,3.2,Orange,Average,48 +310766,The FLIP Cafe,1,Noida,"Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3623212,28.5697892,"Italian, Continental, North Indian, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,147 +2939,Yo! China,1,Noida,"B-1/29, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3620447,28.5703164,Chinese,1300,Indian Rupees(Rs.),No,Yes,No,No,3,2.5,Orange,Average,252 +1919,Gopala,1,Noida,"B-1/7, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3619175,28.570872,"Mithai, Street Food",250,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,69 +9313,R.I.P Cafe & Lounge,1,Noida,"B-1/61, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.362497,28.5699968,Cafe,700,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,203 +18470627,Big Biryani,1,Noida,"B Block Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",0,0,"Biryani, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18273432,Cupcakes & More,1,Noida,"408, Mahagun Maestro, Block F-21-A, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.37630514,28.57683772,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18163927,Heavens Food Xprs,1,Noida,"Main Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3624558,28.5699364,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18373828,Parul's Cooking Hub,1,Noida,"F-28,483, Windsor Green, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3620969,28.5708889,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18252364,Republic of Chicken,1,Noida,"JM Orchid Market, Sector 76, Near Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3852409,28.5694797,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18376068,Somethings Sweet,1,Noida,"C-92, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.37,28.57,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +308725,Chawla's_,1,Noida,"B-1/54, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3620969,28.5702613,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.3,Red,Poor,91 +385,Domino's Pizza,1,Noida,"B-1/55, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3621039,28.5699792,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,161 +18432227,Nazeer Foods,1,Noida,"Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.361896,28.5704704,"Mughlai, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,12 +308441,Night Food Xprs,1,Noida,"Main Dadri Road, Aggapur, sector 41, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3621866,28.5702697,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,115 +2327,Pizza Hut Delivery,1,Noida,"B-1/32, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3620973,28.5703849,"Italian, Pizza, Fast Food",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,173 +313045,The Caspian,1,Noida,"B-1/14, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3624456,28.5708499,"North Indian, Chinese",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.4,Red,Poor,56 +309818,The Noodle Box Co.,1,Noida,"B-1/26, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3617899,28.5704635,"Chinese, Thai, Asian",750,Indian Rupees(Rs.),Yes,No,No,No,2,2.4,Red,Poor,137 +311341,WTF - World's Tastiest Food,1,Noida,"Sector 50, Noida",Sector 50,"Sector 50, Noida",77.37062,28.5728,"North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,21 +18398605,Biryani By Kilo,1,Noida,"Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3617829,28.5704559,"Biryani, Mughlai",700,Indian Rupees(Rs.),No,Yes,No,No,2,4.1,Green,Very Good,126 +18383531,Kalpak Restaurant & Cafe,1,Noida,"Shop 34-35, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3625098,28.5704437,"North Indian, Chinese",1300,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.3,Green,Very Good,150 +306167,Theos,1,Noida,"B-1/20, Central Market, Sector 50, Noida",Sector 50,"Sector 50, Noida",77.3619175,28.570603,"Desserts, Bakery, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,516 +308059,Aamantran Bangla,1,Noida,"Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3670311,28.5780783,"Bengali, North Indian",650,Indian Rupees(Rs.),No,No,No,No,2,2.7,Orange,Average,27 +18489511,Chung-Fu,1,Noida,"H 38, Sector 51, Noida",Sector 51,"Sector 51, Noida",0,0,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +18388008,Paco Meals,1,Noida,"Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3674796,28.5582143,"North Indian, Chinese, Fast Food",150,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,11 +18255153,Reena Restaurant,1,Noida,"B-1/23, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3624558,28.5782751,"North Indian, Chinese, South Indian",350,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,9 +313164,Sanskriti Foods,1,Noida,"Near Vrinda Garden, Hoshiarpur Village, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3676591,28.5832481,"North Indian, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,29 +18432195,Biryani Vice,1,Noida,"H-38, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.369257,28.578194,"North Indian, Biryani",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,19 +18261811,Dietwholic,1,Noida,"H 38, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3693635,28.5782979,"Healthy Food, North Indian, Chinese, Continental",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,142 +18377891,Goldenplates,1,Noida,"Gali 4, Main Road Hoshiarpur, Near Red Light, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3664928,28.5822417,"North Indian, Mughlai, Chinese, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,33 +18273047,Mishti's Kitchen,1,Noida,"H-38, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3692738,28.5781101,"Chinese, Mughlai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,49 +18261720,Shahenshah,1,Noida,"Near City Center Metro Station, Noida, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3665825,28.5825191,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,61 +18435293,Ayush Chicken Point,1,Noida,"Main Road, Opposite Antriksh Apartment, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3681633,28.5834992,"North Indian, Mughlai, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18480748,Baby Got Bacon,1,Noida,"Sector 51, Noida",Sector 51,"Sector 51, Noida",0,0,"American, Italian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18480216,Better Butter Chicken,1,Noida,"E-36, Sector 51, Noida",Sector 51,"Sector 51, Noida",0,0,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18478977,Black Pepper,1,Noida,"Shop 12, F Block, VDS Market, Sector 51, Noida",Sector 51,"Sector 51, Noida",0,0,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18500639,Chandni Chowk 2 China,1,Noida,"H-38, Sector 51, Noida",Sector 51,"Sector 51, Noida",0,0,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18357573,Choco N Lush,1,Noida,"Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3672447,28.5783055,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18435297,Friend's Restaurant,1,Noida,"Near Shivalik Hospital, Hoshiyar Pur, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3688983,28.583972,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18322688,Ghar Ka Khana,1,Noida,"House 1, Near VDS Market, Hoshiyarpur, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3722342,28.58601,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18383521,Ghar Ka Swad,1,Noida,"Shop 23, Basement VDS Market, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3722935,28.5862117,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18337906,Kake Da Dhaba,1,Noida,"1, Near VDS Market, Hoshiyarpur, Sector 51, Noida",Sector 51,"Sector 51, Noida",0,0,"Awadhi, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18351422,Knight Kitchens,1,Noida,Sector 51 Noida,Sector 51,"Sector 51, Noida",77.3669408,28.5784302,"North Indian, Fast Food, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18353796,Lucknow Heritage,1,Noida,"Shop 2, V.D.S Market, F Block, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.37,28.58,Lucknowi,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18495875,Momos Box,1,Noida,"Sector 51, Noida",Sector 51,"Sector 51, Noida",77.37454668,28.58168431,"Tibetan, Street Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18480321,Raging Bull - The Spicy Punch,1,Noida,"Sector 51, Noida",Sector 51,"Sector 51, Noida",0,0,"Mexican, Italian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18332475,Second Home,1,Noida,"1st Floor, C-3, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3658648,28.5796721,"Chinese, North Indian",800,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,3 +18439522,The Big Buddha Grill,1,Noida,"4th Floor, Hoshiarpur Market, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.366121,28.581868,"Cafe, Mexican",550,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +18481291,Whatslife.in,1,Noida,"Shop 23, VDS Market, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3614962,28.573306,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,0 +1498,Slice of Italy,1,Noida,"7/8/9, VDS Market, Sector 51, Noida",Sector 51,"Sector 51, Noida",77.3720794,28.585893,"Italian, Pizza, Bakery",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,230 +18258491,Bebbe Da Degh,1,Noida,"Shop 2, Sharma Market, Near Indian Overseas Bank, Sector 52, Noida",Sector 52,"Sector 52, Noida",77.3625455,28.5867115,North Indian,800,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,65 +304484,Chauhan Hotel,1,Noida,"Main Road, Opposite Sector 51, Sector 52, Noida",Sector 52,"Sector 52, Noida",77.367691,28.5833075,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,11 +18477658,52 Food Express,1,Noida,"B Block Market, Sector 52, Noida",Sector 52,"Sector 52, Noida",77.3681073,28.5864134,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18368602,Delicious Treasure,1,Noida,"E-143 E Block Sector 52, Noida",Sector 52,"Sector 52, Noida",77.3655244,28.5879739,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18435807,Shiv Murti Hotel,1,Noida,"Mukhiya Market, Main Road, Opposite Sector 51, Sector 52, Noida",Sector 52,"Sector 52, Noida",77.3675487,28.5832178,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18287399,Kaka Ji Restaurant,1,Noida,"Sector 53, Noida,",Sector 53,"Sector 53, Noida",77.3607512,28.5906666,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,Yes,No,No,2,2.9,Orange,Average,6 +309873,Lazzez's,1,Noida,"K-1-4, Kanchanjunga Market, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.3625937,28.5953748,"North Indian, Mughlai, Chinese, Raw Meats",600,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,25 +310170,Mithaas Sweets,1,Noida,"Ground Floor, Ashirwad Complex, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.362305,28.5955626,"North Indian, Chinese, South Indian, Mithai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,39 +8497,Mithaas,1,Noida,"G-20, Ground Floor, Ashirwad Complex, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.3630838,28.5863139,"North Indian, Chinese, South Indian, Mithai",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,193 +312184,Tandoori Corner,1,Noida,"Main Road, Gijhor, Near CNG Pump, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.3596121,28.5900318,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,9 +18082207,Culinate,1,Noida,"Shop 6-A, B Block Market, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.365506,28.5913835,"Continental, Fast Food, Asian, Italian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.8,Yellow,Good,200 +18144457,Haaochi,1,Noida,"Gurukripa Bhawan, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.3631735,28.5878465,Chinese,600,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,123 +18346998,Bake Walkers,1,Noida,"Mamura, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.3607512,28.5906666,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435308,Chacha Food Street,1,Noida,"Shop 32, Kanchanjunga Market, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.3623636,28.59562,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18291227,DudeFood,1,Noida,"Village Gijhor, Near Mithas, Sharma Complex, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.3597643,28.5895874,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18435795,Indian Special Hot Momos,1,Noida,"Ashirwad Complex, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.3627249,28.5866387,Chinese,50,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18383031,Kesarwa Bakez,1,Noida,"B 3, Kanchanjunga Market, Sector 53, Noida, Delhi NCR",Sector 53,"Sector 53, Noida",77.3626452,28.5957812,Bakery,500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +304750,Om Bikaner Sweets,1,Noida,"Ashirwad Complex, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.3627249,28.5866387,Mithai,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435790,Sadda Adda 2 Cafe & Lounge,1,Noida,"Ashirwad Complex, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.3631735,28.586412,Cafe,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18244407,The Backyard Chef,1,Noida,"Shop 1, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.3607512,28.5906666,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18428215,Veer Jee,1,Noida,"Shop 31, Kunchanjunga Market, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.36209564,28.59569369,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18382356,VP ki Kitchen,1,Noida,"MS Complex, Shop 1, Chauhan Market, Gijhor, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.3624115,28.5869987,"North Indian, Mughlai, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +307841,Flying Cakes,1,Noida,"Shop 37, Kanchanjunga Market, Near Shoprix Mall, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.362366,28.5955703,Bakery,350,Indian Rupees(Rs.),No,Yes,No,No,1,2.1,Red,Poor,56 +18157407,Taste In Box,1,Noida,"Shop 28, Kanchanjunga Market, Sector 53, Noida",Sector 53,"Sector 53, Noida",77.3623312,28.5956935,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,23 +8068,Snacks Point,1,Noida,"17, A Block Market, Sector 55, Noida",Sector 55,"Sector 55, Noida",77.3469342,28.6070243,Chinese,150,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18435313,Sector 55 China Town,1,Noida,"A Block Market, Sector 55, Noida",Sector 55,"Sector 55, Noida",77.3470476,28.606606,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18249124,B Tamang Chineese,1,Noida,"Shop 4/7, E Block Market, Sector 56, Noida",Sector 56,"Sector 56, Noida",77.3428293,28.6033018,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +302502,Foodelicious,1,Noida,"E-4/20, Om Sai Market, Sector 56, Noida",Sector 56,"Sector 56, Noida",77.3427967,28.6033255,"North Indian, Chinese, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,144 +313329,The Cake Masters,1,Noida,"B-103, Near B Block Park, Sector 56, Noida",Sector 56,"Sector 56, Noida",77.3429861,28.6032453,"Bakery, Desserts",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,7 +18126119,Food Hut,1,Noida,"E 4/13, Sector 56, Noida",Sector 56,"Sector 56, Noida",77.3427604,28.603325,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435805,South Indian Snacks Stall,1,Noida,"E-4/7, Sector 56, Noida",Sector 56,"Sector 56, Noida",77.3427275,28.6033137,South Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18409196,Twenty Four Seven,1,Noida,"M/S Jain Service Station, Indian Oil Petrol Pump, Sector 54, Near Sector 57, Noida",Sector 57,"Sector 57, Noida",77.3545409,28.6005354,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +501,Barista,1,Noida,"EXL Tower, 5, A-94/4, 5, Sector 58, Noida",Sector 58,"Sector 58, Noida",77.3576192,28.6045901,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,7 +510,Barista,1,Noida,"A 48, EXL Tower 3, Sector 58, Noida",Sector 58,"Sector 58, Noida",77.358741,28.6048659,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,5 +18418274,The Gourmet Shack,1,Noida,"L-1, Bishenpura, Sector 58, Noida",Sector 58,"Sector 58, Noida",77.35685091,28.60756944,"Continental, American",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,15 +5746,"Vanshika Indian, Chinese, & Parantha Corner",1,Noida,"D-15, Bhai Ji Market, Near Bishanpura Village, Sector 58, Noida",Sector 58,"Sector 58, Noida",77.3597643,28.6086827,"Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,29 +18215963,Yes Bosz Food Plaza,1,Noida,"C-3, 2nd Floor, Sector 58, Noida",Sector 58,"Sector 58, Noida",77.362444,28.6072953,"North Indian, Chinese",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,15 +18432232,A1 Restaurant,1,Noida,"Khoda Colony, Deepak Vihar, Sector 58, Noida",Sector 58,"Sector 58, Noida",77.3533487,28.6101016,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +304487,Aggarwal Sweets India,1,Noida,"Upper Ground 17, Singhal Tower, Near, Sector 58, Noida",Sector 58,"Sector 58, Noida",77.35318667,28.61007,"Mithai, Street Food",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18433909,Chaska Food Hut,1,Noida,"D-17, Near Bishanpura Village, Sector 58, Noida",Sector 58,"Sector 58, Noida",77.3597207,28.6085274,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +8096,Hasty Tasty Fast Food,1,Noida,"Opposite HCL, N 1, Sector 58, Noida",Sector 58,"Sector 58, Noida",77.3625711,28.6057844,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18459896,Pihu's Cafe,1,Noida,"A 108, B Block, Sector 58, Noida",Sector 58,"Sector 58, Noida",0,0,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +5702,Sanjay Pandit Bhojnalaya,1,Noida,"Khoda Colony, Deepak Vihar, Sector 58, Noida",Sector 58,"Sector 58, Noida",77.3532162,28.6099807,North Indian,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +304502,Sharma Hotel,1,Noida,"Labour Chowk, Sector 58, Noida",Sector 58,"Sector 58, Noida",77.3528544,28.6097471,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18432196,Shri G,1,Noida,"Khoda Colony, Deepak Vihar, Labour Chowk, Sector 58, Noida",Sector 58,"Sector 58, Noida",77.3533213,28.6100951,North Indian,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18414468,Nite Bites,1,Noida,"D 5, Logic Infotech Park, Sector 59, Noida",Sector 59,"Sector 59, Noida",77.3723239,28.6080732,"North Indian, Chinese, Fast Food",650,Indian Rupees(Rs.),No,Yes,Yes,No,2,2.7,Orange,Average,8 +8090,Shankar Fast Food,1,Noida,"D-16, B Block, Near HCL Call Center, Sector 59, Noida",Sector 59,"Sector 59, Noida",77.3626026,28.6088161,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,15 +8092,Shivam Fast Food,1,Noida,"Shop 1, C Block, Near HCL Call Center, Sector 59, Noida",Sector 59,"Sector 59, Noida",77.3626134,28.6088444,"North Indian, South Indian, Chinese",350,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,12 +18391140,Yumbo Bites,1,Noida,"D-5, Logix Infotech, Sector 59, Noida",Sector 59,"Sector 59, Noida",77.3724933,28.6086461,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +312935,Essen Foods,1,Noida,"Shop 2, Vill Mamura, Sector 66, Near Sector 59, Noida",Sector 59,"Sector 59, Noida",77.3781674,28.6095755,"North Indian, Mughlai, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18313786,L'amore,1,Noida,"Ground Floor, D-5, Logix Infotech Park, Sector 59, Noida",Sector 59,"Sector 59, Noida",77.3724239,28.6081042,"Bakery, Desserts, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18432223,SPL Food Corner,1,Noida,"Shop 3, C Block, Near HCL Call Center, Sector 59, Noida",Sector 59,"Sector 59, Noida",77.36256,28.6084226,"Chinese, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +8077,Shree Ganesh M Cafe,1,Noida,"Noida Authority, Opposite Vijaya Bank, Sector 6, Noida",Sector 6,"Sector 6, Noida",77.3178507,28.5920932,South Indian,150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +8089,Chauhan Fast Food,1,Noida,"Near A-37, Opposite Star News Building, Sector 60, Noida",Sector 60,"Sector 60, Noida",77.3624842,28.6047247,"Chinese, North Indian, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18368771,Right for Night,1,Noida,"Sector 60, Noida",Sector 60,"Sector 60, Noida",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18481296,Whatslife.in,1,Noida,"M49, Sector 66, Near Sector 60, Noida",Sector 60,"Sector 60, Noida",77.3719027,28.6055225,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,0 +18128894,BakeAffair,1,Noida,"A-60, Sector 61, Noida",Sector 61,"Sector 61, Noida",0,0,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,30 +18451823,Mirchievous,1,Noida,"Sector 61, Noida",Sector 61,"Sector 61, Noida",77.36473083,28.59345268,North Indian,650,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,6 +18469955,Cafe Coffee Day,1,Noida,"Brookfield Infosapce, Sector 61, Noida",Sector 61,"Sector 61, Noida",0,0,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18466392,Dev Food,1,Noida,"House 34 C, Shatabdi Vihar, Sector 61, Noida",Sector 61,"Sector 61, Noida",0,0,"North Indian, South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310755,Green Vally Chiiness Food,1,Noida,"Near Kanchenjunga Market, Sector 61, Noida",Sector 61,"Sector 61, Noida",77.362366,28.59566,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +312186,221 B Baker Street,1,Noida,"PG 30, TOT Mall, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3716062,28.6142808,Bakery,200,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,19 +4469,Binge Restaurant,1,Noida,"C-25, Ground Floor, Stellar IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3625455,28.6127995,"North Indian, Chinese, Continental",1100,Indian Rupees(Rs.),Yes,No,No,No,3,3.2,Orange,Average,325 +18423860,Boxmeal,1,Noida,"RN 10, Rasoolpur Navada, Next to Bank of Maharashtra, B Block Market, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3698446,28.6181042,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,4 +307335,Brown Town,1,Noida,"RN 33, Near Fortis Hospital, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.370818,28.6191966,Bakery,150,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,11 +5698,Cafe Coffee Day,1,Noida,"SG-14-15, C-25, Stellar IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3625455,28.6127995,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,26 +8130,Cafe Coffee Day,1,Noida,"Ground Floor, Logix Cyber Park, Tower B, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3666722,28.6127402,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,14 +311533,Cafe Green Apple,1,Noida,"A-41, The Corenthum Tower, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.374165,28.6274956,"North Indian, South Indian, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,16 +18268502,Cake Mandi,1,Noida,"A-117, Deepak Vihar, Near Labour Chowk, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.35402454,28.61083103,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,17 +18285723,Chai Thela,1,Noida,"Tower A, Logix Cyber Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3666722,28.6127402,Cafe,250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,10 +308751,Chinese Chilli Sizzler,1,Noida,"Block C, Tout Mall Market, Near Mother Dairy, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.371174,28.6139194,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,5 +18273567,Delhi Biryani Hut,1,Noida,"RN-3-B, Opposite Corporation Bank, Near Fortis Hospital, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3704181,28.6181215,"Biryani, Mughlai",300,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,9 +3753,Dev's Restaurant & Bar,1,Noida,"Plot 16, Block C-58/15A, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3716062,28.6142808,"North Indian, Mughlai, Chinese",1500,Indian Rupees(Rs.),No,Yes,No,No,3,3.1,Orange,Average,56 +18258503,Doggy Style,1,Noida,"Location Varies, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.33747028,28.58167444,"Continental, Italian",700,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,33 +1844,Domino's Pizza,1,Noida,"A-44/45, DLF 3C Galaxy, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.37043262,28.62443114,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,118 +313305,Floating Cakes,1,Noida,"Shop 2, Main Market, Deepak Vihar, Sector 62A, Sector 62, Noida",Sector 62,"Sector 62, Noida",0,0,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,12 +18281981,Food Brigade,1,Noida,"1, Ground Floor, Unit A-13/2,3,4 Highway Tower 1, Near Jaypee College, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.37389041,28.62840758,"North Indian, South Indian, Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +308718,Frequent Bakes,1,Noida,"RN 10, Rasulpur Nawada, Near SRS Value Bazaar, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3702942,28.6181067,"Bakery, Desserts, Fast Food",350,Indian Rupees(Rs.),No,Yes,No,No,1,2.5,Orange,Average,38 +18423098,GreeNox,1,Noida,"A Block, The Corenthum Office Complex, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.37371799,28.62667926,"Fast Food, Beverages",200,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,16 +18435329,GVP Creations,1,Noida,"Sector 62, Noida",Sector 62,"Sector 62, Noida",77.37029448,28.61183236,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,7 +18367978,Health Buzzz,1,Noida,"22 GF, B Block Market, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3707092,28.6184991,Healthy Food,350,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,11 +5777,Hot & Spicy,1,Noida,"C Block, Lozix Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3665825,28.612911,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18396437,Malabar Junction,1,Noida,"Near Fortis Hospital, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.369864,28.6181511,"South Indian, North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,15 +18224549,Masters Caterer,1,Noida,"C-28/29, Food Court, Tower B, Logix Cyber Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3666722,28.6127402,"North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +8138,Meeting Point Corner,1,Noida,"Near Corenthum Building, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3738681,28.6280874,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,14 +18281973,Mithaas Sweets,1,Noida,"RN-1, B Block, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3706652,28.6180976,"North Indian, Chinese, South Indian, Mithai",650,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,17 +18391059,Mom's Canteen,1,Noida,"Sector 62, Noida",Sector 62,"Sector 62, Noida",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +313049,MS Foods,1,Noida,"E-78, Deepak Vihar, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3545194,28.61263059,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,9 +313250,Oh Buoy,1,Noida,"Near DLF Building, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.37002995,28.62392171,Chinese,650,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,50 +313358,Old Tehrii Cafe & Lounge,1,Noida,"C-20, Ground Floor, Assotech 1, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.35519834,28.61451253,"North Indian, Chinese, Cafe",1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,13 +18358191,Pichli Gali,1,Noida,"Shop 3, RN 37, B Block Market, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3701709,28.6193448,"North Indian, Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +5696,Pizza Hut,1,Noida,"C-25, Stellar IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3625455,28.6127995,"Italian, Pizza",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.1,Orange,Average,147 +18252359,Rasoi99,1,Noida,"Gautam Buddh Nagar, Block C, Behind Fortis Hospital, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3705298,28.6197372,"North Indian, Chinese",800,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,10 +4483,Republic of Chicken,1,Noida,"15, B Block 9/2, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3704489,28.6196711,"Raw Meats, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,17 +5776,Republic's @ Dhaba,1,Noida,"KT-08, Food Court, Steller IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3625455,28.6127995,"North Indian, Street Food",750,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,56 +8767,Rolling Beans,1,Noida,"Opposite Galaxy Bussines Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3700887,28.6239066,South Indian,250,Indian Rupees(Rs.),No,Yes,No,No,1,2.8,Orange,Average,5 +311622,Rollmaal,1,Noida,"C-56/9, Stellar IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3624558,28.612791,"Fast Food, North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,155 +308758,Subway,1,Noida,"A-44-45, Galaxy IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.37041719,28.62453856,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.5,Orange,Average,28 +303996,Swad,1,Noida,"Corporate Suites, C 30/4, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3684034,28.613167,"North Indian, Chinese, Continental",900,Indian Rupees(Rs.),Yes,No,No,No,2,2.8,Orange,Average,13 +18128867,The Chaiwalas,1,Noida,"Shop 1, Ground Floor, Tower B, Okaya Business Centre, Sector 62, Noida",Sector 62,"Sector 62, Noida",0,0,Cafe,300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,9 +18160567,The Hunger Cure,1,Noida,"RN-23, B Block Market, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3707797,28.6187885,"Fast Food, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,9 +18128892,World Bites,1,Noida,"RN-15, B Block, Behind Bank of Maharashtra, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3698121,28.6185042,"Chinese, North Indian",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,30 +18380262,BunkYard Cafe,1,Noida,"C-56/12, Near Stellar IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3624828,28.6145003,"Fast Food, Beverages",400,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,33 +307703,Chaayos,1,Noida,"DLF Galaxy IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.37017244,28.62453797,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,182 +302308,RollsKing,1,Noida,"Plot 11, Near SRS Value Bazar, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3702457,28.6182239,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,401 +3939,Sandwich King,1,Noida,"C-20/6B, Near Stellar IT park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3631735,28.613038,Fast Food,500,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,215 +311656,Speedy Chow,1,Noida,"C-25/9, Stellar IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3624558,28.612791,"Chinese, Thai",850,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,114 +304441,Aggarwal Bikaneri Sweets & Restaurant,1,Noida,"Rajiv Vihar, Khora Village, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.35487667,28.61550833,"Street Food, Mithai",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18344518,Al-Aayat Mughlai Biryani,1,Noida,"NH-24, Lok Priya Vihar, Khoda Colony, Sector 62-A, Near, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.35400308,28.61044692,Biryani,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304439,Baba Chinese Fast Food,1,Noida,"B-Block, Opposite Fatherangle School, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.35509105,28.61997007,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18312485,Cafe Coffee Day,1,Noida,"Ground Floor, OPD Block, Fortis Hospital, B-22, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3723946,28.618099,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312188,Cafe Rap,1,Noida,"Galaxy Business Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.37004437,28.6252228,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18424577,Chinese Fast Food Corner,1,Noida,"Near Green Boulvard Building, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.368349,28.6238525,Chinese,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +312192,Chinese Food Corner,1,Noida,"Near DLF IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",0,0,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424631,Chinese Hot,1,Noida,"Opposite Amprapali Corporate Tower 2, C Block, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3672105,28.6139563,Chinese,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18474221,Dial a Cake,1,Noida,"Sector 62, Noida",Sector 62,"Sector 62, Noida",0,0,"Bakery, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18268694,Doon Dhaba,1,Noida,"B Block Market, Near Fortis Hospital, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.370496,28.6181335,"North Indian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18381667,Food Weavers,1,Noida,"Opposite Samsung Tower Building, Near Stellar IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3656117,28.6129491,"Chinese, North Indian",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424598,Green Chick Chop,1,Noida,"Ground Floor, TOT Mall, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3712474,28.6143366,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18423900,Hookie Dookie,1,Noida,"RN 39, Basement, B Block Market, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3706875,28.6193211,Cafe,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18347548,Hotel Green View Palace,1,Noida,"Plot 16-A, Hotel Green View Palace, Near Indus Valley School, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.35475075,28.61750372,"North Indian, Chinese, South Indian",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18281813,Hurry Curry Express,1,Noida,"B-71, Sector 67, Near, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.20952498,28.62565716,"North Indian, Mughlai, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18423896,Kesarwa Bakez,1,Noida,"RN 1, B Block Market, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3707092,28.6182302,Bakery,600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,1 +18423139,Let's Noodle,1,Noida,"Near B-19, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3629871,28.6207119,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +308717,New Dragon Chinese Fast Food & Paranthey Wala,1,Noida,"C 28-29, Logic Cyber Park, Opposite Samsung Tower, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3660074,28.6132102,Chinese,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +310775,New Shahi Chinese Fast Food,1,Noida,"C-25, Opposite Stellar IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3633138,28.6132289,Chinese,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18274402,Night Food Delivery,1,Noida,"Behind Fortis Hospital, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3706195,28.619656,"North Indian, Chinese",500,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +18382349,Rajwana Foods,1,Noida,"Opposite Samsung Building, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3634824,28.6131696,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18423877,Shama Chicken Corner,1,Noida,"RN 1, B Block Market, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3707092,28.6182302,Mughlai,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18424206,Shiva Shudh Shakahari Bhojnalaya,1,Noida,"Near Hero Show Room, Main Road, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3550388,28.6220057,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424195,Shri Balaji Shudh Vaishno Dhaba,1,Noida,"Near Hotel Ascent, Main Road, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3551543,28.6218907,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +310770,Southern Santushti Cafe,1,Noida,"Ground Floor, A-44/45, M Block, Galaxy IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.37101935,28.62503592,South Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18424588,Tiffin Man House,1,Noida,"N 97, Behind Fortis Hospital, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.369567,28.6188035,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18356798,WOW Zaika,1,Noida,"Rajat Vihar, Sector 62, Noida",Sector 62,"Sector 62, Noida",0,0,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +304480,Grand Eatery,1,Noida,"B Block Market, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3707194,28.6191953,"North Indian, Chinese, Mughlai, Fast Food",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,49 +4758,Nathu's Sweets,1,Noida,"C-25, Near IT Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3624558,28.612791,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai",500,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,77 +7909,Subway,1,Noida,"C Block, Logic Cyber Park, Sector 62, Noida",Sector 62,"Sector 62, Noida",77.3664928,28.6129026,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.4,Red,Poor,88 +18391137,Chick Chicken Barbeque,1,Noida,"Shop 1, Block D, Near Anjana, Sector 63, Noida",Sector 63,"Sector 63, Noida",77.38531,28.625608,"North Indian, Mughlai, Chinese",750,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,4 +312428,Tiwari Hot Pot,1,Noida,"B-50, Sector 63, Noida",Sector 63,"Sector 63, Noida",77.3770285,28.616674,"North Indian, Chinese, South Indian",450,Indian Rupees(Rs.),No,Yes,No,No,1,2.6,Orange,Average,11 +18448390,Chaiwaalas,1,Noida,"D Block, Sector 63, Noida",Sector 63,"Sector 63, Noida",0,0,"Fast Food, Beverages",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18462716,Delhi Mughlai Biryani,1,Noida,"B-35, Sector 63, Noida",Sector 63,"Sector 63, Noida",77.3784944,28.6177586,Biryani,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18492089,Dumpty's,1,Noida,"Shop 42, Tejpal Singh Market, Opposite H Block, Sector 63, Noida",Sector 63,"Sector 63, Noida",77.3771889,28.6249999,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18424868,Food Passengers,1,Noida,"E-214, First Floor, Sector 63, Noida",Sector 63,"Sector 63, Noida",0,0,North Indian,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18415381,Hungry Buddies,1,Noida,"A-21, Sector 65, Noida",Sector 63,"Sector 63, Noida",77.3846785,28.6125969,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18492086,Maa Durga Food Corner,1,Noida,"H Block, Near OBC Bank, Sector 63, Noida",Sector 63,"Sector 63, Noida",77.3760306,28.6292246,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18378580,Subhoj,1,Noida,"E-198, Ground Floor, Sector 63, Noida",Sector 63,"Sector 63, Noida",0,0,"North Indian, Biryani",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18460908,The Square Meal,1,Noida,"Ginger Hotel, 46/1-A, Block H, Sector 63, Noida",Sector 63,"Sector 63, Noida",0,0,"North Indian, South Indian, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,0 +18409211,Twenty Four Seven,1,Noida,"M/S Padam Petrolium, Indian Oil Petrol Pump, Plot PP1, Sector 63, Noida",Sector 63,"Sector 63, Noida",0,0,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18478895,Yeoh,1,Noida,"Sector 63, Noida",Sector 63,"Sector 63, Noida",0,0,"North Indian, Chinese, Italian, Thai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18258764,South King Restaurant,1,Noida,"Sector 66, Near Sector 65, Noida",Sector 65,"Sector 65, Noida",77.3772233,28.6075466,"South Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,2.8,Orange,Average,8 +18382564,Twomato Foods,1,Noida,"B-65, 1st Floor, Sector 67, Near Sector 65, Noida",Sector 65,"Sector 65, Noida",77.380365,28.607233,North Indian,400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,11 +18378040,Lazeez Foods,1,Noida,"Plot 557, Sector 66, Near Sector 65, Noida",Sector 65,"Sector 65, Noida",77.3760035,28.6095834,"North Indian, Mughlai, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18382348,Spicy Punjabi Tadka,1,Noida,"A-3, Sector 66, Near Sector 65, Noida",Sector 65,"Sector 65, Noida",77.3757327,28.6095596,North Indian,550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18216323,SPL Foods Plaza,1,Noida,"Shop 2, Chauhan Market, Sector 66, Near Sector 65, Noida",Sector 65,"Sector 65, Noida",77.3799187,28.6072612,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +312240,Super Cake Shop,1,Noida,"Near Shani Mandir, Sector 66, Near Sector 65, Noida",Sector 65,"Sector 65, Noida",77.3755981,28.6094124,Bakery,300,Indian Rupees(Rs.),No,Yes,No,No,1,0,White,Not rated,2 +18224558,Bats On Delivery,1,Noida,"Sector 7, Noida",Sector 7,"Sector 7, Noida",77.317172,28.597085,"North Indian, Fast Food",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,9 +6170,Legacy of Awadh,1,Noida,"D-158, Sector 7, Noida",Sector 7,"Sector 7, Noida",77.3201607,28.5976222,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.3,Orange,Average,114 +18478533,Sweetcake.in,1,Noida,"D-44, Sector 7, Noida",Sector 7,"Sector 7, Noida",0,0,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18439012,Hurry Curry,1,Noida,"B-71, Sector 67, Near, Sector 71, Noida",Sector 71,"Sector 71, Noida",0,0,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,10 +18421059,Thaaliwaalaa.com,1,Noida,"WP-04, C Block, Sector 71, Noida",Sector 71,"Sector 71, Noida",77.3751945,28.5915785,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,6 +18490967, Let's Burrrp,1,Noida,"Bs-10, Sector 70, Near Sector 70, Noida",Sector 71,"Sector 71, Noida",0,0,"Chinese, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18491387,Annapurna Caterings,1,Noida,"BH 46, Block B, Sector 70, Near Sector 71, Noida",Sector 71,"Sector 71, Noida",0,0,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18388148,Beyond Food,1,Noida,"Sector 71, Noida",Sector 71,"Sector 71, Noida",77.3771267,28.6008237,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +313103,Brown Town,1,Noida,"A-64, Opposite Sai Temple, Sector 71, Noida",Sector 71,"Sector 71, Noida",77.3771316,28.6008229,Bakery,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18439544,Royal Spice,1,Noida,"Shop 4, Near Orange Pie Hotel, Main Road, Sector 66/67, Near Sector 71, Noida",Sector 71,"Sector 71, Noida",77.3798644,28.6076509,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18439541,Bikaner's,1,Noida,"Shop 3 & 4, Amrapali Princely Estate , Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3823794,28.5645097,"Mithai, North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18335834,Chilli Zone,1,Noida,"Shop 29, Amrapali Princely Estate Market, Sector 76, Noida",Sector 72,"Sector 72, Noida",77.3813429,28.5664689,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,20 +18383468,Cold Rock Cafe,1,Noida,"Shop 28, Amarpali Princely Estate, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.381327,28.5663929,"Fast Food, Italian, Desserts, Beverages",350,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,12 +18351053,Cup and Cones,1,Noida,"Shop 24, Amrapali Princely Estate, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3811864,28.5663773,Desserts,150,Indian Rupees(Rs.),No,Yes,No,No,1,3.1,Orange,Average,10 +18411585,Desi Spice,1,Noida,"Shop 3, Sethi Arcade, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3851512,28.5646289,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3,Orange,Average,10 +18382362,Food Destination,1,Noida,"Shop 10, Skytech Matrott, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3862918,28.57108,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,5 +18163938,Gangaur Sweets,1,Noida,"20-23, A Square Buiding, Opposite Global Indian International School, Sector 73, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3809101,28.5914755,"North Indian, South Indian, Chinese, Mithai",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,34 +312316,Handi,1,Noida,"Shop 21, Amarpali Zodiac, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3997654,28.585038,"North Indian, Chinese",850,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,8 +18424201,Hungry Inn,1,Noida,"Shop 18-19, Plot 8, Golf City, Sector 75, Near, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3863299,28.5722375,"North Indian, Chinese, South Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +18429391,Keventers,1,Noida,"S 15, Plot GH-08, Golf City, Sector 75, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3864019,28.5723004,Beverages,400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +18126089,La-Cuisine,1,Noida,"Shop 5, Gaur Grandeur, Sector 119, Near, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.4013017,28.5868911,"North Indian, Chinese",550,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,4 +18337921,Melting Flavours,1,Noida,"Shop 20, Amrapali Princely Estate, Sector 76, Near, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3810922,28.5663966,North Indian,800,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,21 +18462972,Mighty Mughlai,1,Noida,"Shop 16, Sethi Arcade, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.32181758,28.57605503,"North Indian, Mughlai, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,12 +18014154,Mithaas,1,Noida,"7th Floor, Amrapali Platinum Club, Sector 119, Near, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.400309,28.5879324,"North Indian, Chinese, South Indian, Mithai",650,Indian Rupees(Rs.),No,No,No,No,2,2.9,Orange,Average,12 +18383462,Mood 4 Food,1,Noida,"Shop 5, JM Orchid, Sector 76, NOIDA, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.38469392,28.56920274,"Street Food, North Indian",150,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +18435296,Northern Bytes,1,Noida,"Near Ajnara Clock Tower, Sector 77, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3920718,28.57173,"Kashmiri, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,6 +18416867,Shahenshah,1,Noida,"Near Hanuman Murti, Sector 78, Near, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3833124,28.5905939,"North Indian, Mughlai, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,4 +18383535,Sugar Daddy Bakers,1,Noida,"Shop 45, Amarapali Pricely Estate, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3819125,28.566406,Bakery,350,Indian Rupees(Rs.),No,Yes,No,No,1,2.7,Orange,Average,4 +18418649,Swag Sadda Desi,1,Noida,"Amrapali Zodiac Market, Sector 120, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3992328,28.5851413,"Fast Food, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +18313143,The Chinese Hut,1,Noida,"Shop 9-C, Amrapali Princely Market, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.38271,28.5645272,"Chinese, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,10 +18332053,Wild Chef House,1,Noida,"Shop 10, JM Orchid, Sector 76, Noida",Sector 72,"Sector 72, Noida",77.3848705,28.5694254,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,11 +18365588,Grub Patio,1,Noida,"Shop 19, Amrapali Princely Estate, Opposite Silicon City, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3810436,28.5664155,"Cafe, Continental, Italian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.7,Yellow,Good,51 +18423131,The Grill @ 76,1,Noida,"Shop 51, Amrapali Princely Estate, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3821963,28.5665424,"North Indian, Mughlai, Chinese",650,Indian Rupees(Rs.),No,Yes,No,No,2,3.5,Yellow,Good,42 +18418250,Zooby's Kitchen,1,Noida,"Shop 31, Amrapali Princely Estate, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3814563,28.5663598,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),Yes,No,No,No,2,3.5,Yellow,Good,31 +18439523,4U,1,Noida,"Amrapali Princely Estate, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3813897,28.5659688,"North Indian, South Indian, Chinese",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18471723,Aadhya Bakery & Foods,1,Noida,"Shop 7, Singhal Residency, Arya Nagar, Sector 73, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3803972,28.5891989,"Bakery, North Indian",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18430582,Bake Walkers,1,Noida,"BH-39, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3805766,28.5914573,"Bakery, Desserts",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18451827,Bean Machine & Co.,1,Noida,"Sector 72, Noida",Sector 72,"Sector 72, Noida",77.400003,28.588073,"Italian, Continental, American",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18439527,Big B Pastry Shop,1,Noida,"Shop 35, Amrapali Princely, Shopping Arcade, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3816692,28.5663512,"Bakery, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18313605,Breadman Cake Shop,1,Noida,"Shop 18, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.386365,28.5706274,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18372662,Breaky2Dinner,1,Noida,"Shop 11, JM Orchid, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3837255,28.5714727,"Chinese, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18435336,Brijwasi Sweets,1,Noida,"Shop 2, LGF Amrapali Zodiac Market, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3991911,28.5853989,"Mithai, Fast Food",100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18418232,Cafe Hot Pot,1,Noida,"Near Amrapali Zodiac Market, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3992776,28.58528,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18433873,Chef's Curry,1,Noida,"20, Plot 8, Golf City, Opposite Supertech North Eye, Sector 75, Near, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.386199,28.5722136,"North Indian, Mughlai, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18383464,Dilli Bakery,1,Noida,"Shop 22, Amarpali Princely Estate, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3812069,28.5664704,"Bakery, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18354978,Domino's Pizza,1,Noida,"Shop G-2, Ground Floor, Commercial Complex, RG Residency, Plot GH-2, Opposite Prateek Laurel, Sector 120, Near, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3986498,28.5880007,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18469970,Dove And Mouse,1,Noida,"Shop 19, Mahagun Mart, Sector 78, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.387573,28.5639598,"Cafe, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18441651,Food Cabana,1,Noida,"Film City, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",0,0,Chinese,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18415977,Frozen Grillz,1,Noida,"Shop 12-B, Sethi Arcade, Sethi Max Royal, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3851512,28.5645393,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18439532,Ganesh Chinese Food Corner,1,Noida,"Amrapali Silicon City, Gate 3, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3819508,28.5666463,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18435288,Green Chick Chop,1,Noida,"Shop 20, Skytech Matrott, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3864967,28.5704048,"Raw Meats, North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18383483,Handi Mitran Di,1,Noida,"Shop 59, Amarpali Princely Estate, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3822877,28.5665638,"Mughlai, North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,2 +18442657,Hunger Tales,1,Noida,"Sector 122, Near, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3346967,28.5419387,"Lucknowi, Mughlai, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18435824,Hydrabad Biryani Express,1,Noida,"Amrapali Princely Estate , Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3827156,28.5643503,North Indian,350,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18456271,Ice Stone Cafe,1,Noida,"Shop 11, JM Orchid Market, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",0,0,Desserts,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18394367,Kake Da Dhaba,1,Noida,"Amrapali Zodiac Market, Sector 120, Near, Sector 72, Noida",Sector 72,"Sector 72, Noida",0,0,North Indian,450,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18439529,Lucknow Wale Kwality Kabab,1,Noida,"Shop No.21, Amrapali Princely Estate, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3807896,28.5664153,"Mughlai, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18435797,Mairu's,1,Noida,"Shop 7A, Sethi Arcade, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3851512,28.5646289,"North Indian, Chinese, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18435321,Meatwale.com,1,Noida,"17, Skytech Matrott, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3863819,28.5707996,"Raw Meats, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18494319,Mr. Biryani Walia,1,Noida,"Civitech Sampriti Central, Sector 77, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",0,0,Biryani,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18383458,N E Great Foods,1,Noida,"Aditya Celebrity Homes Market, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3846131,28.5711244,Street Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18352676,New Punjabi Tadka,1,Noida,"BR 38, Sector 116, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3936272,28.5674429,"North Indian, Chinese",300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18468948,Royal King,1,Noida,"Shop 2, 3 & 4, Elite Mart, Sector 77, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.392176,28.5717508,"North Indian, South Indian, Street Food",800,Indian Rupees(Rs.),Yes,No,No,No,2,0,White,Not rated,1 +18499472,The Dhaba,1,Noida,"Shop 30, Amarpali Princely Estate, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3812875,28.5665039,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18396341,Tikka Express meets Chennai Express,1,Noida,"Shop UG 15-16, Amrapali Zodiac Society, Sector 120, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3992328,28.585231,"Fast Food, North Indian, South Indian",400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18431190,Vyanjan,1,Noida,"Aditya Celebrity Homes Market, Sector 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3839456,28.5712706,North Indian,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18431976,Yolkers,1,Noida,"Opposite Amrapali Zodiac Market, Sector 120, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3992776,28.58528,Fast Food,250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18466993,Zaika Kathi Rolls,1,Noida,"Near ICICI Bank, Civitech Sampriti Market, Sector 77, Near, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3923332,28.5717732,Fast Food,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +18472450,Zaika of Dilli 6,1,Noida,"Shop 4, Golf City, Street Mart, Sector 75, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3804176,28.5716155,"North Indian, Chinese, Kashmiri",600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18383503,Bikaner's,1,Noida,"Shop 25, 26 & 27, Arcade A, Princely Estate, Secotor 76, Near Sector 72, Noida",Sector 72,"Sector 72, Noida",77.3812288,28.56639,"Mithai, North Indian",400,Indian Rupees(Rs.),No,Yes,No,No,1,2.4,Red,Poor,11 +311334,Chawla's 2,1,Noida,"Mahagun Modern, Sector 78, Near, Sector 72, Noida",Sector 72,"Sector 72, Noida",77.37333611,28.515425,"North Indian, Mughlai, Chinese",1400,Indian Rupees(Rs.),No,Yes,No,No,3,2.1,Red,Poor,22 +18308083,Ginnis Oven,1,Noida,"E-18-A, Sector 8, Noida",Sector 8,"Sector 8, Noida",77.3246524,28.5963721,Bakery,400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,9 +310240,Cream Bell,1,Noida,"F-74, Sector 8, Noida",Sector 8,"Sector 8, Noida",77.3227953,28.5960491,Ice Cream,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18206836,Whomely,1,Noida,"A-136, Sector 83, Noida",Sector 83,"Sector 83, Noida",77.39445644,28.52887237,North Indian,200,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,15 +18376500,Breaktym,1,Noida,"SuperTech Emerald Court, Entry Gate, Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3820287,28.5205286,"North Indian, Mughlai",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.2,Orange,Average,20 +308877,Chinese Chilli Seasonal,1,Noida,"Near Eldeco Studio, A Block, Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3851484,28.5136416,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,2.9,Orange,Average,4 +311768,Gopala,1,Noida,"Eldeco Convenience Shopping Area, GF, Eldeco Studio Apartments, Sector 93A, Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3853306,28.5146003,"Mithai, Beverages",200,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,23 +18423127,Hungry's Hut,1,Noida,"Plot 10, Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3817427,28.5200041,"Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,10 +300550,Kebabplus,1,Noida,"Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3841646,28.5205903,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,140 +18337891,Oh Buoy - Flying Fox,1,Noida,"Near Supertech Building, Sector 93, Noida",Sector 93,"Sector 93, Noida",77.381653,28.519906,"Chinese, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,7 +9724,Punjabi Pakwaan,1,Noida,"Supertech Emerald Club, Plot 4, Sector 93-A, Near Sector 93, Noida",Sector 93,"Sector 93, Noida",77.38255,28.5200799,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.1,Orange,Average,45 +312558,The Dessert Table Company,1,Noida,"Flat 203, Tower 6, Parsvnath Prestige 2, Shrishti Welfare Society, Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3863173,28.5189985,"Bakery, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,9 +312777,The Roll Van,1,Noida,"Plot 1, Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3826397,28.5208059,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,5 +1495,Kitchen Mantra,1,Noida,"Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3841646,28.5205006,"North Indian, Mughlai, Chinese",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,210 +18258469,Wabi Sabi,1,Noida,"Shop 7 & 8, Near ELT, Choudhary Dharam Singh Market, Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3841646,28.5209491,"Bakery, Fast Food",300,Indian Rupees(Rs.),No,Yes,No,No,1,3.6,Yellow,Good,34 +18440423,Baskin Robbins,1,Noida,"Eldeco Studio, Plot 3, Sector 93-A, Near Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3854509,28.5143927,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18385532,Choicest Cakes,1,Noida,"Vivek Vihar, Sector 82, Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3856446,28.5144055,Bakery,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,2 +18349808,Midnight Foodies,1,Noida,"Sector 93 B, Noida",Sector 93,"Sector 93, Noida",0,0,"Burger, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18440409,Om Sweets Caterers & Bakery,1,Noida,"SKI, V.D.S Market, Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3881327,28.5249223,"Mithai, Bakery",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18271099,Spicy Affair,1,Noida,"Plot 2, Sector 93A, Sector 93, Noida",Sector 93,"Sector 93, Noida",77.381653,28.519906,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +311701,The Bakery Mart,1,Noida,"Expressview Society, Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3820118,28.5204779,Bakery,800,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +302925,Southern Flavours,1,Noida,"Eldeco Studio, Plot 3, Sector 93-A, Near Sector 93, Noida",Sector 93,"Sector 93, Noida",77.3854743,28.5143706,South Indian,350,Indian Rupees(Rs.),No,No,No,No,1,2.4,Red,Poor,54 +18385889,Cakebak,1,Noida,"Shopprix Mall, Shop 118, Plot 106 B, Block A, Sector 61, Noida","Shopprix Mall, Sector 61, Noida","Shopprix Mall, Sector 61, Noida, Noida",77.36500047,28.59579437,"Bakery, Desserts",400,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,8 +18371420,Fire n Ice,1,Noida,"104, Food Court, Shopprix Mall, Sector 61, Noida","Shopprix Mall, Sector 61, Noida","Shopprix Mall, Sector 61, Noida, Noida",77.3648332,28.5971027,"Fast Food, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,0,White,Not rated,1 +308737,Adarsh Kulfi,1,Noida,"Food Court, Spice World Mall, Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.3404494,28.5854737,Ice Cream,100,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,7 +309693,Andaaz E Paranthas,1,Noida,"306, 2nd Floor, Food Court, Spice World Mall, Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.3404494,28.5854737,"North Indian, Mughlai",550,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,36 +312241,Hot Fries,1,Noida,"Food Court, Spice World Mall, Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.3404494,28.5854737,Fast Food,350,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +390,Pizza Hut,1,Noida,"Ground Floor, Spice World Mall, Sector 25-A, Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.3413131,28.5864102,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,144 +447,Rasoi E Punjab,1,Noida,"304, Food Court, Spice World Mall, Sector 25 A, Near Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.3404494,28.5854737,North Indian,500,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,32 +4482,Subway,1,Noida,"Food Court, 2nd Floor, Spice World Mall, Sector 25-A, Near Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.3398007,28.5864047,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,3.4,Orange,Average,93 +550,Haldiram's,1,Noida,"108-109, Ground Floor, Spice World Mall, Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.341214,28.5861409,"North Indian, South Indian, Chinese, Street Food, Fast Food, Mithai, Desserts",600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,301 +303152,Legends Barbeques,1,Noida,"311A, 2nd Floor, Spice World Mall, Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.341371,28.5862391,"North Indian, Chinese, Mediterranean, Asian, Continental",1300,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,1088 +18486858,6 Packs Momos,1,Noida,"Spice World Mall, Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.3406022,28.586,Chinese,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18499455,Balti,1,Noida,"Shop 303, 2nd Floor, Food Court, Spice Mall, Sector 25 A, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",0,0,North Indian,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18466970,Baskin Robbins,1,Noida,"Spice World Mall, Ground Floor, Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.341593,28.5855119,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18431193,KBC_,1,Noida,"Food Court, Spice World Mall, Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.3409734,28.5863196,"North Indian, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18258397,Nukkad Bites,1,Noida,"Shop K2 -K5, 2nd Floor, Spice World Mall, Sector 25A, Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.3373249,28.5835794,"North Indian, South Indian, Bakery, Beverages",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,2 +18431981,Pan Asian Noodles,1,Noida,"Food Court, Spice World Mall, Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.3409762,28.5863106,Chinese,550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +3212,Chicane,1,Noida,"205-A, 1st Floor, Spice World Mall, Sector 25-A, Near Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.3410212,28.5854928,"European, North Indian, Chinese",2500,Indian Rupees(Rs.),Yes,No,No,No,4,2.2,Red,Poor,116 +8012,US Pizza,1,Noida,"Food Court, 2nd Floor, Spice World Mall, Sector 25-A, Near, Sector 25, Noida","Spice World Mall, Sector 25","Spice World Mall, Sector 25, Noida",77.3410212,28.5854928,"Pizza, Fast Food",650,Indian Rupees(Rs.),No,Yes,No,No,2,2.2,Red,Poor,134 +312187,Angeethi Se,1,Noida,"Shop 105, Food Court, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.3648332,28.5971027,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,35 +523,Barista,1,Noida,"Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.3648332,28.5971027,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,2.5,Orange,Average,23 +2480,BK's The Juice Bar,1,Noida,"101, Food Court, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.3648332,28.5971027,"Juices, Beverages, Fast Food",200,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,10 +1733,Eden Kitchen & Bar,1,Noida,"Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.3646089,28.5973057,"North Indian, Chinese",2000,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.1,Orange,Average,129 +307145,Moti Mahal Delux Tandoori Trail,1,Noida,"Food Court, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.364878,28.5970621,"North Indian, Mughlai, Chinese",1000,Indian Rupees(Rs.),Yes,Yes,No,No,3,2.5,Orange,Average,28 +1727,New Woks,1,Noida,"102 & 103, Food Court, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.364878,28.5970621,"Chinese, Asian",750,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.5,Orange,Average,79 +828,Otik Hotshop,1,Noida,"63, C-134/B, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.3648332,28.5971027,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.1,Orange,Average,147 +393,Pizza Hut,1,Noida,"Ground Floor, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.36484054,28.5973425,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,Yes,No,No,3,3.3,Orange,Average,113 +1722,Punjabi Dhaba 61,1,Noida,"8, Food Court, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.3649169,28.5971298,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,2.6,Orange,Average,75 +2483,Punjabi Pakwaan,1,Noida,"153, Ground Floor, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.364878,28.5971518,"North Indian, Mughlai",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,3,Orange,Average,120 +1726,Spice of India,1,Noida,"108, Food Court, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.3647883,28.5971433,"Mughlai, North Indian",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,76 +304934,Swaad,1,Noida,"3, Food Court, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.364878,28.5970621,"North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.7,Orange,Average,15 +305961,Yumm Biryani,1,Noida,"1-B, Lower Ground Floor, Food Court, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.3649068,28.5971097,"Biryani, Mughlai",550,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,160 +308578,Otik Cake Shop,1,Noida,"63-C, 134-B, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.3648332,28.5971027,"Bakery, Desserts, Fast Food, North Indian",450,Indian Rupees(Rs.),No,Yes,No,No,1,3.5,Yellow,Good,105 +308750,Adarsh Kulfi,1,Noida,"Food Court, Ground Floor, Supertech Shoprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.3648332,28.5971027,Ice Cream,100,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,3 +309971,Pizza Junction,1,Noida,"Shop 3, C 134 B, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.36474722,28.59716667,"Fast Food, Pizza",550,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +386,Domino's Pizza,1,Noida,"Lower Ground, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.3649083,28.5971137,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,2.4,Red,Poor,98 +428,Sagar Ratna,1,Noida,"C-134/B, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.3648332,28.5971027,"South Indian, North Indian, Chinese",600,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,155 +18070483,Subway,1,Noida,"Shop 3, Supertech Shopprix Mall, Sector 61, Noida","Supertech Shopprix Mall, Sector 61","Supertech Shopprix Mall, Sector 61, Noida",77.36498103,28.59689799,"American, Fast Food, Salad, Healthy Food",500,Indian Rupees(Rs.),No,Yes,No,No,2,2.3,Red,Poor,24 +7869,Barista,1,Noida,"305, 3rd Floor, The Great India Place Mall, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3258017,28.5675107,Cafe,650,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,57 +5610,Bikano Chat Cafe,1,Noida,"2nd Floor, The Great India Place Mall, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.325869,28.5674499,"North Indian, Street Food, South Indian, Fast Food, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3,Orange,Average,38 +304103,Cafe Coffee Day,1,Noida,"2nd Floor, Shoppers Stop, The Great India Place Mall, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3262953,28.5678712,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,18 +5598,Cafe Coffee Day,1,Noida,"Shop 111, 1st Floor, The Great India Place Mall, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3260261,28.5676664,Cafe,450,Indian Rupees(Rs.),No,No,No,No,1,2.7,Orange,Average,34 +18233617,Chaayos,1,Noida,"Ground Floor, The Great India Place Mall, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3253081,28.566702,"Cafe, Tea",400,Indian Rupees(Rs.),No,Yes,No,No,1,3.4,Orange,Average,67 +300955,Chopaal Marwari,1,Noida,"3rd Floor, The Great India Place, Sector 38-A, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.325482,28.5670755,"North Indian, Rajasthani",600,Indian Rupees(Rs.),No,No,No,No,2,2.8,Orange,Average,102 +18017237,Dolce Gelato,1,Noida,"Shop 98, Ground Floor, The Great India Place Mall, Sector 38 A, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3265645,28.5680759,"Ice Cream, Beverages, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3,Orange,Average,8 +5619,Domino's Pizza,1,Noida,"302-A, 3rd Floor, The Great India Place Mall, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3255549,28.5675098,"Pizza, Fast Food",700,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,60 +2191,Gelato Vinto,1,Noida,"The Great India Place Mall, Sector 38 A, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3259363,28.5677476,"Desserts, Ice Cream",250,Indian Rupees(Rs.),No,No,No,No,1,3.1,Orange,Average,32 +307447,Kebab Xpress,1,Noida,"3rd Floor, The Great India Place, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3254017,28.5672542,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.2,Orange,Average,106 +7932,McDonald's,1,Noida,"Food Court, 3rd Floor, The Great India Palace Mall, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3253081,28.5671503,"Fast Food, Burger",500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,70 +1226,Pind Balluchi,1,Noida,"The Great India Place Mall, Sector 38-A, Near Sector 38, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3253979,28.5671588,"North Indian, Mughlai",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,3.3,Orange,Average,793 +8888,Ristorante Prego,1,Noida,"323, 3rd Floor, The Great India Place Mall, Sector 38-A, Near Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3253979,28.5671588,Italian,1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.1,Orange,Average,372 +4530,The Coffee Bean & Tea Leaf,1,Noida,"3rd Floor, The Great India Place Mall, Sector 38 A, Near Sector 38, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.32540604,28.56721958,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,2.6,Orange,Average,55 +18400768,Turquoise Turkish Ice-cream,1,Noida,"Ground Floor, The Great India Palace Mall, Sector 38-A, Near, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3265645,28.5680759,Ice Cream,250,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,11 +409,Yo! China,1,Noida,"3rd Floor, The Great India Place Mall, Sector 38-A, Near, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3262504,28.5678221,Chinese,1300,Indian Rupees(Rs.),No,Yes,No,No,3,2.6,Orange,Average,334 +7939,Baskin Robbins,1,Noida,"Ground Floor, The Great India Place Mall, Sector 38 A, Noida, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3254972,28.5672537,Ice Cream,300,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,41 +18133480,Burger King,1,Noida,"3rd Floor, The Great India Place Mall, Sector 38-A, Near Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3253081,28.5671503,"Burger, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,211 +791,Costa Coffee,1,Noida,"36, The Great India Place Mall, Sector 38 A, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3260709,28.5674465,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,110 +486,Crazy Noodles,1,Noida,"3rd Floor, The Great India Place, Sector 38-A, Near Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3264748,28.5678881,"Chinese, Thai",1100,Indian Rupees(Rs.),Yes,Yes,No,No,3,3.6,Yellow,Good,507 +18208913,Jack Po!tato's,1,Noida,"Food Court, 3rd FloorThe Great India Place, Sector 38, Near Sector 18, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3253509,28.5671054,Fast Food,150,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,37 +3251,Mandarin Trail,1,Noida,"3rd Floor, The Great India Place Mall, Sector 38-A, Near Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3255325,28.5672163,Chinese,1500,Indian Rupees(Rs.),Yes,No,No,No,3,3.7,Yellow,Good,517 +308774,Nazeer Foods,1,Noida,"304, 3rd Floor, The Great India Place Mall, Sector 38-A, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3256447,28.5674287,"Mughlai, North Indian",600,Indian Rupees(Rs.),No,Yes,No,No,2,3.6,Yellow,Good,179 +394,Pizza Hut,1,Noida,"The Great India Place Mall, Sector 38 A, Noida, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3255133,28.5672492,"Italian, Pizza, Fast Food",1000,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,189 +302421,Shree Rathnam,1,Noida,"309, 3rd Floor, The Great India Place, Sector 38-A, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3261382,28.5680132,"South Indian, North Indian, Chinese",800,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,139 +1244,TGI Friday's,1,Noida,"319-320, 3rd Floor, The Great India Place Mall, Sector 38-A, Near Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3262056,28.5676834,"American, Tex-Mex",2500,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.5,Yellow,Good,1147 +5689,Thaal Vaadi,1,Noida,"310/311, 3rd Floor, The Great India Place Mall, Sector 38-A, Near, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3261382,28.5680132,"North Indian, Rajasthani",1000,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,249 +18431152,Cafe' Wow,1,Noida,"Food Court, 3rd Floor, The Great India Palace Mall, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3255998,28.5675141,Fast Food,200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18439721,Chef's Basket Pop Up Caf,1,Noida,"Inside Big Bazaar, The Great India Place, Sector 38 A, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",0,0,"Italian, Chinese",200,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,0 +18431158,Chocolate Fountain,1,Noida,"Food Court, 3rd Floor, Great India Palace Mall, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3253979,28.5671588,Desserts,150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18430892,McDonald's,1,Noida,"Ground Floor, Great India Palce Mall, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3265645,28.5680759,"Desserts, Ice Cream",150,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18430870,Tea Trails,1,Noida,"Kidzania, GIP, Entertainment City, Plot A 2, Sector-38 A, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.324803,28.564185,Cafe,850,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,1 +18428504,The Hangout-Deli,1,Noida,"320-A, 3rd Floor, The Great India Place Mall, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.32321292,28.5677509,"Continental, Lebanese, Mexican",1000,Indian Rupees(Rs.),Yes,No,No,No,3,0,White,Not rated,0 +2979,Chopaal,1,Noida,"A-2, 3rd Floor, The Great India Place Mall, Sector 38-A, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3253081,28.5671503,"Chinese, North Indian, South Indian, Fast Food",450,Indian Rupees(Rs.),No,No,No,No,1,2,Red,Poor,161 +3237,Club Ice Cube,1,Noida,"313, 3rd Floor, The Great India Place Mall, Sector 38-A, Near Sector 38, Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3264748,28.5680674,"North Indian, Continental, Chinese",2400,Indian Rupees(Rs.),Yes,No,No,No,4,2,Red,Poor,230 +2025,Moti Mahal Delux Tandoori Trail,1,Noida,"Food Court, The Great India Place Mall, Sector 38 A, Near Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.325445,28.5670397,"North Indian, Mughlai",1200,Indian Rupees(Rs.),Yes,Yes,No,No,3,2,Red,Poor,108 +3149,The Punjabiis Restro Bar,1,Noida,"325-A, 3rd Floor, The Great India Place Mall, Sector 38-A, Near Sector 38, Noida","The Great India Place, Sector 38","The Great India Place, Sector 38, Noida",77.3253979,28.5671588,"North Indian, Chinese",1200,Indian Rupees(Rs.),Yes,No,No,No,3,4,Green,Very Good,395 +18255134,Sky Grill,1,Noida,"2nd Floor, Tulip Mall, Sector 48, Noida","Tulip Mall, Sector 48, Noida","Tulip Mall, Sector 48, Noida, Noida",77.3675243,28.5575368,"North Indian, Chinese",700,Indian Rupees(Rs.),No,Yes,No,No,2,2.6,Orange,Average,34 +18277023,Bread & Pasta,1,Noida,"Shop 15, Near HDFC Bank, Tulip Mall, Sector 48, Noida","Tulip Mall, Sector 48, Noida","Tulip Mall, Sector 48, Noida, Noida",77.3673027,28.5579292,Fast Food,400,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +18313203,Chillies Cafe,1,Noida,"G-11, Tulip Mall, Sector 48, Noida","Tulip Mall, Sector 48, Noida","Tulip Mall, Sector 48, Noida, Noida",77.367188,28.5578418,Fast Food,600,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,3 +18254559,Platters,1,Noida,"Shop 1, Tulip Mall, Near HDFC Bank, Sector 48, Noida","Tulip Mall, Sector 48, Noida","Tulip Mall, Sector 48, Noida, Noida",77.3673216,28.5579297,"North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,0,White,Not rated,0 +18255132,The Grand,1,Noida,"G-5, Tulip Mall, Sector 48, Noida","Tulip Mall, Sector 48, Noida","Tulip Mall, Sector 48, Noida, Noida",77.367188,28.5578518,"Raw Meats, Fast Food",250,Indian Rupees(Rs.),No,No,No,No,1,0,White,Not rated,1 +120519,Hops n Grains,1,Panchkula,"SCO 358, Sector 9, Panchkula",Sector 9,"Sector 9, Panchkula",76.849258,30.6978586,"North Indian, Middle Eastern, Pizza",2000,Indian Rupees(Rs.),No,No,No,No,4,4.2,Green,Very Good,843 +4000344,Genuine Broaster Chicken,1,Patna,"West Boring Canal Road, Opposite Zee Saheb Super Market, Anandpuri, Patna",Anandpuri,"Anandpuri, Patna",0,0,"American, Chinese, North Indian, Italian",500,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,42 +4000016,Bansi Vihar,1,Patna,"New Market Beside Buddha Park, Fraser Road Area, Patna",Fraser Road Area,"Fraser Road Area, Patna",85.137825,25.60803333,"South Indian, Fast Food",300,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,111 +4000277,Mainland China,1,Patna,"5th Floor, Central Mall, Fraser Road Area, Patna",Fraser Road Area,"Fraser Road Area, Patna",0,0,Chinese,1400,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,65 +18369321,Pukhtaan-The Royal Taste of India,1,Patna,"5th Floor, Nutan Plaza, Bander Bagicha, Fraser Road Area, Patna",Fraser Road Area,"Fraser Road Area, Patna",0,0,"North Indian, Chinese",1500,Indian Rupees(Rs.),No,No,No,No,4,3.5,Yellow,Good,32 +4000033,The Yellow Chilli,1,Patna,"1st Floor, Hira Place, Dak Bunglow Road, Chajju Bagh, Fraser Road Area, Patna",Fraser Road Area,"Fraser Road Area, Patna",85.13588611,25.61034722,"North Indian, Chinese, Continental",1000,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,150 +18279982,Indian Summer Cafe,1,Patna,"Satya Narain Building, Exhibition Road, Golambar, Patna",Golambar,"Golambar, Patna",85.14262542,25.6097878,"Continental, Cafe, Italian, Pizza, North Indian, Chinese, Bakery, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,16 +4000004,KFC,1,Patna,"Ground floor, Regent Theatre, Opposite East Gandhi Maidan, Golambar, Patna",Golambar,"Golambar, Patna",85.14649167,25.6172,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,49 +4000269,McDonald's,1,Patna,"BR Patna Elphinstone, Elphinstone Picture Palace , East Gandhi Maidan, Golambar, Patna",Golambar,"Golambar, Patna",85.148632,25.617912,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,60 +4000027,Biryani Mahal,1,Patna,"Near Buddha Marg, Kotwali Chauraha, Golambar, Patna",Golambar,"Golambar, Patna",85.13382778,25.61042222,"Biryani, Mughlai",500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,99 +4000081,Spice Court - Hotel Maurya,1,Patna,"Hotel Maurya, South Gandhi Maidan, Lodipur, Patna","Hotel Maurya, Lodipur","Hotel Maurya, Lodipur, Patna",85.142028,25.615025,"North Indian, Continental, Chinese, South Indian",1600,Indian Rupees(Rs.),No,No,No,No,4,3.7,Yellow,Good,43 +4000069,Angeethi,1,Patna,"101, Gharonda Complex, Jagdeo Path Crossing, Bailey Road, Khajpura, Patna",Khajpura,"Khajpura, Patna",85.074775,25.60662778,"North Indian, Mughlai, Chinese",800,Indian Rupees(Rs.),No,No,No,No,3,3.4,Orange,Average,45 +4000294,Red Chilli,1,Patna,"Opposite Allahabad Bank, Ramnagri Mor, Ashiana Digha Road, Khajpura, Patna",Khajpura,"Khajpura, Patna",85.08215654,25.61355147,"Chinese, North Indian, Mughlai",450,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,69 +4000001,Pind Balluchi,1,Patna,"16th-18th Floor, Biscomaun Tower, Gandhi Maidan, Lodipur, Patna",Lodipur,"Lodipur, Patna",85.14115833,25.61704444,"North Indian, Chinese",1000,Indian Rupees(Rs.),No,No,No,No,3,3.3,Orange,Average,162 +4000030,Raj Rasoi,1,Patna,"Twin Tower Hathwa, South Gandhi Maidan, Lodipur, Patna",Lodipur,"Lodipur, Patna",85.14343889,25.61583889,"North Indian, South Indian, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,74 +4000018,Kapil Dev's Eleven,1,Patna,"Lower Ground Floor, Dumraow Kothi, Frazer Road, Lodipur, Patna",Lodipur,"Lodipur, Patna",85.13806111,25.61098056,"North Indian, Chinese, Finger Food",1000,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,107 +4000222,Sri Basant Vihar,1,Patna,"Maurya Lok Complex, Fraser Road Area, Patna","Maurya Lok, Fraser Road Area","Maurya Lok, Fraser Road Area, Patna",85.13407222,25.61011389,"North Indian, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,75 +4000031,17 Degrees,1,Patna,"6th Floor, P&M Mall, Patliputra Colony, Patna",Patliputra Colony,"Patliputra Colony, Patna",85.106207,25.634209,"North Indian, Chinese, Continental, Italian",1200,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,151 +4000015,Nirvana,1,Patna,"Bhagwathi Saran Enclave, Boring Road, Near JP Hospital, Boring Road Sri Krishnapuri, Sri Krishnapuri, Patna",Sri Krishnapuri,"Sri Krishnapuri, Patna",85.11631667,25.61403056,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,61 +4000007,Roti Restaurant,1,Patna,"Opposite A.N College, Boring Road, Sri Krishnapuri, Patna",Sri Krishnapuri,"Sri Krishnapuri, Patna",85.11401389,25.62067778,"North Indian, South Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,64 +18343124,Swaaddesh,1,Patna,"2nd floor, chandra complex, above manyavar, boring road, Sri Krishnapuri, Patna",Sri Krishnapuri,"Sri Krishnapuri, Patna",85.1154613,25.61552768,"North Indian, Chinese",700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,45 +3700010,Auroville Bakery,1,Puducherry,"Kuilapalayam, Auroville, Puducherry",Auroville,"Auroville, Puducherry",79.834825,11.989991,Bakery,150,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,173 +3700009,Tanto Pizzeria,1,Puducherry,"Main Road, Near Iyyanar Koil Kullapalyam, Auroville, Puducherry",Auroville,"Auroville, Puducherry",79.82895,11.99078611,"Pizza, Italian",1000,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,513 +18427467,The Smoothie Bar,1,Puducherry,"26, Sri Aurobindo Street, Mission Street Crossing, Heritage Town, Puducherry",Heritage Town,"Heritage Town, Puducherry",79.83147883,11.93819039,"Desserts, Beverages, Juices",250,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,36 +3700024,Le Club,1,Puducherry,"Hotel De Pondicherry, 38, Dumas Street, White Town, Puducherry","Hotel De Pondicherry, White Town","Hotel De Pondicherry, White Town, Puducherry",79.83385556,11.92587222,"French, Continental, North Indian",1400,Indian Rupees(Rs.),No,No,No,No,4,3.5,Yellow,Good,328 +3700056,Cafe Ole,1,Puducherry,"319, Mission Street, MG Road, Puducherry",MG Road,"MG Road, Puducherry",79.83015556,11.92994722,"Cafe, Continental",700,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,199 +3700408,Italize,1,Puducherry,"137, 1st Floor, Mission Street (kosakadai street cutting), MG Road, Puducherry",MG Road,"MG Road, Puducherry",79.83134832,11.93648771,"Pizza, Italian",600,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,97 +3700017,The Pasta Bar Veneto,1,Puducherry,"248, Mission Street, MG Road, Puducherry",MG Road,"MG Road, Puducherry",79.83013889,11.92996111,Italian,900,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,275 +3700050,Baker Street,1,Puducherry,"123, Bussy Street, MG Road, Puducherry",MG Road,"MG Road, Puducherry",79.829584,11.929275,"Bakery, French",400,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,791 +3700041,Zuka Choco-la,1,Puducherry,"319, Mission Street, MG Road, Puducherry",MG Road,"MG Road, Puducherry",79.830194,11.929842,Desserts,300,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,656 +3700387,Bay of Buddha - The Promenade,1,Puducherry,"The Promenade, 23, Goubert Avenue, White Town, Puducherry","The Promenade, White Town","The Promenade, White Town, Puducherry",79.8358,11.9331,"Chinese, Thai, Malaysian, Vietnamese, Korean, Indonesian, Asian",1500,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,189 +3700036,Blueline - The Promenade,1,Puducherry,"The Promenade, 23, Goubert Avenue, White Town, Puducherry","The Promenade, White Town","The Promenade, White Town, Puducherry",79.83575556,11.93315278,"North Indian, Seafood, South Indian, Italian",1500,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,192 +3700049,Villa Shanti,1,Puducherry,"Villa Shanti, 14, Suffren Street, White Town, Puducherry","Villa Shanti, White Town","Villa Shanti, White Town, Puducherry",79.833191,11.929698,Continental,1500,Indian Rupees(Rs.),No,No,No,No,4,3.9,Yellow,Good,535 +3700069,Le Cafe,1,Puducherry,"Beach Road, Near Gandhi Statue, White Town, Puducherry",White Town,"White Town, Puducherry",79.83570833,11.93154444,Cafe,450,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,875 +3700160,Spice Route,1,Puducherry,"6, Rue Bussy Street, Romain Rolland Street Cutting, White Town, Puducherry",White Town,"White Town, Puducherry",79.83363356,11.92877274,"Continental, North Indian, Finger Food",1200,Indian Rupees(Rs.),No,No,No,No,4,3.4,Orange,Average,228 +18378803,#Dilliwaala6,1,Puducherry,"6, Rue De La Marine, White Town, Puducherry",White Town,"White Town, Puducherry",79.83481014,11.9365319,North Indian,800,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,124 +3700051,Cafe des Arts,1,Puducherry,"10, Suffren Street, White Town, Pondicherry",White Town,"White Town, Puducherry",79.83331944,11.93021111,Cafe,800,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,298 +3700037,Le Dupleix,1,Puducherry,"5, Rue De La Caserne, White Town, Puducherry",White Town,"White Town, Puducherry",79.83376389,11.93104444,"North Indian, French, Continental",1500,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,456 +3700019,Rendezvous Cafe Restaurant,1,Puducherry,"30, Rue Suffren, White Town, Puducherry",White Town,"White Town, Puducherry",79.83258056,11.92859167,"Goan, Mangalorean, Continental, French",1200,Indian Rupees(Rs.),No,No,No,No,4,3.5,Yellow,Good,225 +3700021,The Indian Kaffe Express,1,Puducherry,"3, Rue Dumas Street, Near IG Office, White Town, Puducherry",White Town,"White Town, Puducherry",79.8348,11.93036667,Cafe,550,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,495 +3700561,Gelateria Montecatini Terme,1,Puducherry,"Goubert Avenue, Next To Alliance Francaise, White Town, Puducherry",White Town,"White Town, Puducherry",79.83419167,11.92598889,Desserts,150,Indian Rupees(Rs.),No,No,No,No,1,4.2,Green,Very Good,163 +6508323,The Urban Foundry,1,Pune,"1, Balewadi High Street, Cummins India Office Campus, Baner-Balewadi Link Road, Pune","Balewadi High Street, Balewadi","Balewadi High Street, Balewadi, Pune",73.77472289,18.5691562,"North Indian, Asian",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.5,Dark Green,Excellent,1099 +18383095,Teddy Boy,1,Pune,"9th Floor, Deron Heights, Above Ranka Jewellers, Baner, Pune",Baner,"Baner, Pune",73.80485516,18.5514399,"North Indian, Continental, Finger Food",1200,Indian Rupees(Rs.),Yes,No,No,No,3,3.6,Yellow,Good,507 +18378852,Effingut Brewerkz,1,Pune,"4, Deron Heights, Next to Ranka Jewellers, Baner, Pune",Baner,"Baner, Pune",73.7982064,18.554382,"Continental, North Indian, Mughlai, Burmese",2000,Indian Rupees(Rs.),No,Yes,No,No,4,4.3,Green,Very Good,375 +13231,Le Plaisir,1,Pune,"759/125, Rajkamal, Opposite Kelkar Eye Hospital, Prabhat Road, Deccan Gymkhana, Pune",Deccan Gymkhana,"Deccan Gymkhana, Pune",73.83842938,18.51420998,"European, Desserts",1000,Indian Rupees(Rs.),No,No,No,No,3,4.8,Dark Green,Excellent,2510 +18354483,Farzi Cafe,1,Pune,"Level 1 & 2, Fortaleza Complex, East Avenue, Kalyani Nagar, Pune",Kalyani Nagar,"Kalyani Nagar, Pune",73.9051007,18.5436256,Modern Indian,1500,Indian Rupees(Rs.),No,No,No,No,3,4.3,Green,Very Good,868 +18383076,Mineority By Saby,1,Pune,"Level 1/2, Fortaleza Complex, Kalyani Nagar, Pune",Kalyani Nagar,"Kalyani Nagar, Pune",73.90433729,18.54625752,"North Indian, North Eastern, Continental",1400,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,306 +6505309,The Little Next Door,1,Pune,"D-10, Central Avenue, Kalyani Nagar, Pune",Kalyani Nagar,"Kalyani Nagar, Pune",73.90062645,18.54694697,"Finger Food, Italian, Spanish, Greek",1000,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,1143 +6504409,Effingut Brewerkz,1,Pune,"End of Lane Number 6, Koregaon Park, Pune",Koregaon Park,"Koregaon Park, Pune",73.89852025,18.53408003,"Continental, North Indian, Mughlai, Burmese",1800,Indian Rupees(Rs.),No,Yes,No,No,3,4.3,Green,Very Good,1531 +18350020,Kargo,1,Pune,"Shop 1&2, Marvel Alaina, Lane 8, Near Godrej Nature's Basket, Koregaon Park, Pune",Koregaon Park,"Koregaon Park, Pune",73.89648478,18.53656175,"Charcoal Grill, Italian, North Indian, European, Indonesian, Thai",900,Indian Rupees(Rs.),Yes,No,No,No,2,4.4,Green,Very Good,635 +6508117,Sauted Stories,1,Pune,"Plot 5, Between Lane 5/6, North Main Road, Opposite Wellness Forever, Koregaon Park, Pune",Koregaon Park,"Koregaon Park, Pune",73.897902,18.53929933,"Cafe, Italian, Continental",850,Indian Rupees(Rs.),No,Yes,No,No,2,4.2,Green,Very Good,583 +18417624,The Sassy Spoon,1,Pune,"Lane 7, Sanskriti Lifestyle Complex, Koregaon Park, Pune",Koregaon Park,"Koregaon Park, Pune",73.899315,18.533811,"European, Asian, Mediterranean, Modern Indian, Desserts, Finger Food",1500,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,140 +6505564,German Bakery Wunderbar,1,Pune,"153/A, Varun Complex, Near Demech House, Law College Road, Pune",Law College Road,"Law College Road, Pune",73.83054703,18.52001645,"Italian, German, Continental",1000,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,1583 +11371,Chili's,1,Pune,"UG 49, Phoenix Market City, Nagar Road, Viman Nagar, Pune","Phoenix Market City, Viman Nagar","Phoenix Market City, Viman Nagar, Pune",73.9166191,18.5624502,"Mexican, American, Tex-Mex",1800,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.5,Dark Green,Excellent,1439 +11807,Barbeque Nation,1,Pune,"3rd Floor, R Deccan Mall, Near Deccan Gymkhana, JM Road, Pune","R Deccan Mall, JM Road","R Deccan Mall, JM Road, Pune",73.84252679,18.51621575,"North Indian, Mughlai",1700,Indian Rupees(Rs.),No,No,No,No,3,4.5,Dark Green,Excellent,2847 +18292672,Blue Water,1,Pune,"Punawale, Near Basket Bridge,Off Aundh-Ravet BRT, Ravet, Pune",Ravet,"Ravet, Pune",73.75108123,18.63621513,"North Indian, Chinese, Continental",1500,Indian Rupees(Rs.),Yes,Yes,No,No,3,4.2,Green,Very Good,487 +6507461,Agent Jack's Bar,1,Pune,"Terrace, B Wing, ICC Trade Tower, Senapati Bapat Road, Pune",Senapati Bapat Road,"Senapati Bapat Road, Pune",73.8303275,18.5367185,"Continental, North Indian, Italian",1200,Indian Rupees(Rs.),Yes,No,No,No,3,4.2,Green,Very Good,1531 +6507967,Tales & Spirits,1,Pune,"Plot 64, Shivaji Housing Society, Senapati Bapat Road, Pune",Senapati Bapat Road,"Senapati Bapat Road, Pune",73.8289719,18.5309626,"Italian, Continental, Cafe",800,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.1,Green,Very Good,997 +6506206,18 Degrees Resto Lounge,1,Pune,"8th & 9th Floor, Spot 18 Mall, Pimple Saudagar, Pune","Spot 18 Mall, Pimple Saudagar","Spot 18 Mall, Pimple Saudagar, Pune",73.785901,18.59348149,"North Indian, Mediterranean, Chinese",2100,Indian Rupees(Rs.),Yes,Yes,No,No,4,3.6,Yellow,Good,1566 +6507495,Apache,1,Pune,"Shop 3, Turning Point, Behind Phoenix Mall, Viman Nagar, Pune",Viman Nagar,"Viman Nagar, Pune",73.9153669,18.5639345,Finger Food,1000,Indian Rupees(Rs.),Yes,No,No,No,3,4.1,Green,Very Good,377 +18441490,Barbeque Ville,1,Pune,"257, Green Valley, Near Mankar Chowk, Kaspate Vasti, Wakad, Pune",Wakad,"Wakad, Pune",73.7735722,18.5927182,North Indian,1000,Indian Rupees(Rs.),Yes,No,No,No,3,4.4,Green,Very Good,208 +2700001,Hot Lips,1,Ranchi,"Near Chandini Chowk, Kanke Road, Gandhi Nagar, Ranchi",Gandhi Nagar,"Gandhi Nagar, Ranchi",85.31684167,23.41679167,"North Indian, Chinese",1000,Indian Rupees(Rs.),No,No,No,No,3,3.3,Orange,Average,65 +2700223,The Kav's,1,Ranchi,"Near BJP Office, Harmu Bypass Road, Harmu, Ranchi",Harmu,"Harmu, Ranchi",0,0,"North Indian, Continental, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3.2,Orange,Average,51 +2700263,Prana,1,Ranchi,"6th Floor, RS Square, Near Vishal Mega Mart,Harmu Road, Ranchi",Harmu,"Harmu, Ranchi",0,0,"European, North Indian, Continental, Italian",1000,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,81 +2700024,Kathi Kabab,1,Ranchi,"Main Road, Hindpiri, Ranchi",Hindpiri,"Hindpiri, Ranchi",85.32534722,23.35903333,"Fast Food, North Indian",400,Indian Rupees(Rs.),No,No,No,No,1,3.3,Orange,Average,89 +2700010,Yo China Restaurant,1,Ranchi,"2nd Floor, Citadel Building, Main Road, Ranchi",Hindpiri,"Hindpiri, Ranchi",85.32409722,23.35516389,Chinese,650,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,117 +2700007,Kaveri Restaurant And Caterers,1,Ranchi,"GEL Church Shopping Complex, Main Road, Hindpiri, Ranchi",Hindpiri,"Hindpiri, Ranchi",85.32514606,23.35780368,"North Indian, Chinese, South Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,370 +2700019,Yellow Sapphire,1,Ranchi,"Hotel Capitol Hill, Near Ratan Talkies, Main Road, Hindpiri, Ranchi","Hotel Capitol Hill, Hindpiri","Hotel Capitol Hill, Hindpiri, Ranchi",85.325055,23.359407,"Continental, North Indian, European",1000,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,116 +2700002,Moti Mahal Delux Tandoori Trail,1,Ranchi,"Lower Ground Floor Karni Heights, Beside Milan Palace, Club Road, Kadru, Ranchi",Kadru,"Kadru, Ranchi",85.32696667,23.35378333,"North Indian, Chinese",1000,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,119 +2700008,Jungli Moon Dance Restaurant,1,Ranchi,"4th Floor, Shree Nand Bhawan, Near Income Tax Office, Main Road, Kanka, Ranchi",Kanka,"Kanka, Ranchi",85.32573056,23.35105833,"North Indian, South Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,2,3.1,Orange,Average,26 +2700044,KFC,1,Ranchi,"Sirham Toli Chowk, Opposite Yogoda Ashram, Old Hazaribagh Road, Kanka, Ranchi",Kanka,"Kanka, Ranchi",85.3329,23.35442222,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,3.2,Orange,Average,125 +2700059,Punjab Sweet House,1,Ranchi,"Main Road, Kanka, Ranchi",Kanka,"Kanka, Ranchi",85.32544722,23.35919444,Street Food,200,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,112 +2700242,Food Belle,1,Ranchi,"Bhaskar Anirudh Complex, Near Jail More, Karamtoli Road, Lalpur, Ranchi",Lalpur,"Lalpur, Ranchi",0,0,"North Indian, Chinese",650,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,20 +2700085,Kaveri Restaurant And Caterers,1,Ranchi,"Circular Road, Near Lalpur Chowk, Lalpur, Ranchi",Lalpur,"Lalpur, Ranchi",85.33548611,23.37498889,"North Indian, Chinese, South Indian, Chinese",450,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,102 +2700241,OMG Cafe,1,Ranchi,"301, 3rd Floor, R S Tower, Opposite Pantaloons, Circular Road, Lalpur, Ranchi",Lalpur,"Lalpur, Ranchi",0,0,"Cafe, Italian, Mexican, Chinese, North Indian",500,Indian Rupees(Rs.),No,No,No,No,2,3.3,Orange,Average,19 +18388053,The Best,1,Ranchi,"R.S.Tower, Circular Road, Lalpur, Ranchi",Lalpur,"Lalpur, Ranchi",85.33981957,23.36974563,"North Indian, South Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3.4,Orange,Average,13 +2700011,7th Heaven,1,Ranchi,"1st Floor, Shrilok Complex, Near Santevita Hospital, H B Road, Lalpur, Ranchi",Lalpur,"Lalpur, Ranchi",85.32787222,23.37129167,"South Indian, North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,92 +2700082,The Urban Brava,1,Ranchi,"Circular Road, Near Lalpur Chowk, Lalpur, Ranchi",Lalpur,"Lalpur, Ranchi",85.33573889,23.37487778,"Cafe, Fast Food, North Indian",1000,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,95 +2700032,Waterfront - Radisson Blu,1,Ranchi,"Radisson Blu, Main Road, Hindpiri, Ranchi","Radisson Blu, Hindpiri","Radisson Blu, Hindpiri, Ranchi",85.324253,23.351489,"North Indian, Continental",2000,Indian Rupees(Rs.),No,No,No,No,4,3.4,Orange,Average,62 +2700049,Pizza Hut,1,Ranchi,"Shop 101, Ground Floor, Spring City Mall, Beside Eyelex Cinema, Airport Road, Hinoo, Doranda, Ranchi","Spring City Mall, Doranda","Spring City Mall, Doranda, Ranchi",85.3172,23.33301667,Pizza,700,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,66 +2700036,Aroma - The Royal Retreat,1,Ranchi,"The Royal Retreat, Krishna Nagar, Booti, Bariatu, Ranchi","The Royal Retreat, Bariatu","The Royal Retreat, Bariatu, Ranchi",85.39046389,23.39925,"North Indian, South Indian, Chinese",1500,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,67 +96814,Saffron Mantra,1,Secunderabad,"The Purple Leaf Hotel, Karkhana, Secunderabad",Karkhana,"Karkhana, Secunderabad",78.5003662,17.4589981,"North Indian, Chinese",850,Indian Rupees(Rs.),Yes,Yes,No,No,2,4.4,Green,Very Good,494 +90499,Coffee Cup,1,Secunderabad,"E 89, Above Canara Bank, Sainikpuri, Secunderabad",Sainikpuri,"Sainikpuri, Secunderabad",78.5521107,17.4832159,"Cafe, Continental",800,Indian Rupees(Rs.),Yes,No,No,No,2,4.6,Dark Green,Excellent,1408 +3800319,Level 5 - Terrace Restro & Cafe,1,Surat,"5th floor, Royal Trade Centre, Opposite Star Bazaar, Adajan, Adajan Gam, Surat",Adajan Gam,"Adajan Gam, Surat",72.79411532,21.18643846,"Chinese, North Indian, Italian, Mexican",900,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,201 +3800021,Wok On Fire,1,Surat,"G 6, Riddhi Shoppers, Opposite Star Bazaar, Pal Adajan Road, Adajan, Surat, Adajan Gam, Surat",Adajan Gam,"Adajan Gam, Surat",72.79413611,21.18660789,"Chinese, Thai, Asian",800,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,226 +18396610,Thalaivaa,1,Surat,"G-1, Aqua Corridor, Near Star Bazaar, Pal Road, Adajan Gam, Surat",Adajan Gam,"Adajan Gam, Surat",72.79361609,21.18688393,South Indian,500,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,70 +3800053,World Platter,1,Surat,"Second Floor, Rajmal Lakhichand Jewellers Building, Ghod Dod Road, Athwa, Surat",Athwa,"Athwa, Surat",72.80195273,21.17349346,"North Indian, Chinese, Thai, Mexican, Italian",800,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,191 +3800052,Golden Dragon,1,Surat,"10-15, Second Floor, Rangila Park, Ghod Dod Road, Athwa, Surat",Athwa,"Athwa, Surat",72.80434225,21.17510449,Chinese,800,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,197 +3800078,Mysore Cafe,1,Surat,"Daruwala Building, Athwalines, Athwa, Surat",Athwa,"Athwa, Surat",72.80858986,21.185047,South Indian,250,Indian Rupees(Rs.),No,No,No,No,1,4,Green,Very Good,279 +3800022,Coffee Culture - The Ristorante Lounge,1,Surat,"Opposite Sargam Shopping Centre, Near Parle Point, City Light, Surat",City Light,"City Light, Surat",72.79048864,21.17079783,"Cafe, Continental",650,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,223 +3800238,Falafel Lovers,1,Surat,"LG-5/6/19, Megh Mayur Plaza, Parle Point, Surat, City Light, Surat",City Light,"City Light, Surat",72.79273096,21.17334339,"Lebanese, Italian",650,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,479 +3800003,The Centre Court,1,Surat,"Near Ambica Niketan Bus Stand, Parle Point, City Light, Surat",City Light,"City Light, Surat",72.79550278,21.175975,"Italian, North Indian, Desserts, Continental",900,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,164 +3800020,Wok On Fire,1,Surat,"G 2, Golden Square, Near Sargam Shopping Center, Parle Point, Surat, Piplod, Surat","Golden Square, City Light","Golden Square, City Light, Surat",72.78929204,21.17105952,"Chinese, Thai, Asian",800,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,209 +3800000,Leonardo Italian Mediterranean Dining,1,Surat,"Ground Floor, International Business Centre, Surat-Dumas Road, Piplod, Surat","International Business Center, Piplod","International Business Center, Piplod, Surat",72.76877817,21.15773452,"Italian, Mexican, Mediterranean",1400,Indian Rupees(Rs.),No,No,No,No,3,4.2,Green,Very Good,319 +3800002,Kansar Gujarati Thali,1,Surat,"A Wing, President Plaza, Near RTO, Nanpura, Surat",Nanpura,"Nanpura, Surat",72.81449206,21.18343357,Gujarati,550,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,153 +18362165,The Haus,1,Surat,"3, Radhe Nagar Society, Opposite Sargam Shopping Centre, Piplod, Surat",Piplod,"Piplod, Surat",72.78912205,21.17009563,"Cafe, Desserts",500,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,28 +3800252,Black Pepper,1,Surat,"8/9, International Business Center, Dumas Road, Piplod, Surat",Piplod,"Piplod, Surat",72.76872553,21.15772858,"North Indian, Italian",1000,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,221 +3800018,Pizza Hut,1,Surat,"Akash Ganga, Opposite Croma, Dumas Road, Piplod, Surat",Piplod,"Piplod, Surat",72.77147748,21.16052169,Pizza,800,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,216 +3800016,The Sizzling Salsa,1,Surat,"Opposite Iscon Mall, Surat Dumas Road, Piplod, Surat",Piplod,"Piplod, Surat",72.77420897,21.16043664,"Italian, Continental, Chinese, Mexican",1500,Indian Rupees(Rs.),No,No,No,No,4,4.1,Green,Very Good,204 +18439181,Global Local,1,Surat,"Western Vesu Point, Near Reliance Market, Vesu, Surat",Vesu,"Vesu, Surat",72.77269729,21.14956883,Modern Indian,1500,Indian Rupees(Rs.),No,No,No,No,4,3.4,Orange,Average,47 +3800477,The Creamery,1,Surat,"G 31, Someshwar Square, Opposite Aagam Bungalow, Vesu, Surat",Vesu,"Vesu, Surat",72.7786658,21.14983426,"Ice Cream, Desserts",250,Indian Rupees(Rs.),No,No,No,No,1,3.6,Yellow,Good,87 +18367402,The Food Lab,1,Surat,"G-1 Western Vesu Point, Vesu, Surat",Vesu,"Vesu, Surat",72.77262915,21.14966885,"Italian, Lebanese, Mexican",900,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,66 +3800437,The Hog Spot,1,Surat,"G-5, Trinity Cygnuss, Udhna Magdalla Road, Vesu, Surat",Vesu,"Vesu, Surat",72.77805928,21.15275978,"North Indian, Italian, Mexican, Asian",800,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,87 +3200090,22nd Parallel,1,Vadodara,"1st Floor, Tapan Complex, Next To M Cube Mall, Alkapuri, Vadodara",Alkapuri,"Alkapuri, Vadodara",73.167788,22.307898,South Indian,400,Indian Rupees(Rs.),No,No,No,No,2,4.5,Dark Green,Excellent,344 +3200440,Kabir Kitchen,1,Vadodara,"R.C. Dutt Road,Opposite Concord Building, Alkapuri, Vadodara",Alkapuri,"Alkapuri, Vadodara",0,0,"North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,130 +18295781,Kaphi Pibama,1,Vadodara,"18-A, Nutan Bharat, Soc 002-Yogeshwar Apartment, Near Reliance Fresh, Alkapuri, Vadodara",Alkapuri,"Alkapuri, Vadodara",73.17,22.32,"Cafe, Mexican, Italian, Fast Food",500,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,71 +3200265,VarieTea,1,Vadodara,"83/A, Alkapuri Society, Near Baroda High School, Alkapuri, Vadodara",Alkapuri,"Alkapuri, Vadodara",0,0,"Cafe, Fast Food",400,Indian Rupees(Rs.),No,No,No,No,2,3.9,Yellow,Good,145 +3200012,Barbeque Nation,1,Vadodara,"3rd Floor, Shreem Shalini Mall, R.C. Dutt Road, Alkapuri, Vadodara",Alkapuri,"Alkapuri, Vadodara",73.170937,22.310526,"Mughlai, North Indian",1500,Indian Rupees(Rs.),No,No,No,No,4,4.3,Green,Very Good,332 +3200005,Little Italy,1,Vadodara,"36, Alkapuri Society, Behind HDFC Bank, Alkapuri, Vadodara",Alkapuri,"Alkapuri, Vadodara",73.170283,22.31279,Italian,1000,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,202 +18275708,Meraki,1,Vadodara,"Opposite Kunj Society, Near Nilkanthvarni Jewellers, Alkapuri, Vadodara",Alkapuri,"Alkapuri, Vadodara",0,0,"North Indian, Continental, Italian, Asian",1200,Indian Rupees(Rs.),No,No,No,No,3,4,Green,Very Good,93 +3200021,That Place,1,Vadodara,"33, Sampatrao Colony, Alkapuri, Vadodara",Alkapuri,"Alkapuri, Vadodara",0,0,"Italian, Mexican, Continental",1500,Indian Rupees(Rs.),No,No,No,No,4,4.4,Green,Very Good,276 +3200584,Wok On Fire,1,Vadodara,"1, Olive Complex, Opposite ABS Tower, B/S ICICI Wealth Bank, Old Padra Road, Diwalipura, Diwalipura, Vadodara",Diwalipura,"Diwalipura, Vadodara",0,0,"Thai, Chinese, Asian",800,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,107 +3200015,Mandap - Hotel Express Towers,1,Vadodara,"Hotel Express Towers, R.C. Dutt Road, Alkapuri, Vadodara","Hotel Express Towers, Alkapuri","Hotel Express Towers, Alkapuri, Vadodara",73.169083,22.310329,Gujarati,600,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,191 +3200032,Offside Lounge,1,Vadodara,"1st Floor, Kanchanganga Apartments, Near Bird Circle, Race Course Road, Vadiwadi, Vadodara","M Cube Mall, Vadiwadi","M Cube Mall, Vadiwadi, Vadodara",73.167753,22.308096,"Continental, Chinese, Mexican, North Indian",800,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,149 +3200002,Gazebo Garden Restaurant,1,Vadodara,"Opposite FGI, Near Iscon Harmony, Sevasi-Bhimpura Road, Near Panchvati, Vadodara",Panchvati,"Panchvati, Vadodara",0,0,North Indian,1000,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,82 +3200311,La Quello - Mediterranean Kitchen,1,Vadodara,"1, Trivia, Natu Bhai Circle, Race Course Road, Vadiwadi, Vadodara",Vadiwadi,"Vadiwadi, Vadodara",73.15892089,22.31023696,"Mediterranean, Italian",1300,Indian Rupees(Rs.),No,No,No,No,3,4.6,Dark Green,Excellent,321 +3200497,El Amigos Kitchen,1,Vadodara,"Ground Floor, Prestige Building, Race Course Road, Race Course Circle, Vadiwadi, Vadodara",Vadiwadi,"Vadiwadi, Vadodara",73.165012,22.311603,"North Indian, Thai, Italian, Chinese, Mexican",800,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,96 +3200560,Mr Toasties,1,Vadodara,"2/8 MIG Flats, Opposite Indraprastha Complex, Near LG Showroom, Inox Road, Ellora Park, Vadiwadi, Vadodara",Vadiwadi,"Vadiwadi, Vadodara",0,0,Fast Food,300,Indian Rupees(Rs.),No,No,No,No,1,3.9,Yellow,Good,50 +3200269,The Yellow Chilli,1,Vadodara,"2nd Floor, 1-7, Sharnam Fortune, Opposite Inox Multiplex, Race Course Circle, Vadiwadi, Vadodara",Vadiwadi,"Vadiwadi, Vadodara",0,0,"North Indian, Mughlai",800,Indian Rupees(Rs.),No,No,No,No,3,3.9,Yellow,Good,243 +3200590,Coffee Culture,1,Vadodara,"1-8, Opposite INOX Multiplex, Sharnam Fortune, Vadiwadi, Vadodara",Vadiwadi,"Vadiwadi, Vadodara",0,0,Cafe,600,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,92 +3200537,Freshco - The Health Caf,1,Vadodara,"Shop 2-3, Ground Floor, Opposite Natubhai Circle, Trivia Complex, Race Course, Vadiwadi, Vadodara",Vadiwadi,"Vadiwadi, Vadodara",0,0,Cafe,700,Indian Rupees(Rs.),No,No,No,No,2,4.2,Green,Very Good,132 +3200024,Pizza Hut,1,Vadodara,"51,Akashganga Complex,Race Course Road, Vadiwadi, Vadodara",Vadiwadi,"Vadiwadi, Vadodara",73.165081,22.311844,"Pizza, Italian",600,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,269 +3200034,Tomato's,1,Vadodara,"1st Floor, Aditi Plaza, Beside IDBI Bank, Race Course Road, ., Vadiwadi, Vadodara",Vadiwadi,"Vadiwadi, Vadodara",73.164798,22.311358,"North Indian, Mughlai, Mexican, Thai",1000,Indian Rupees(Rs.),No,No,No,No,3,4.1,Green,Very Good,395 +3900021,Open Hand Shop & Cafe,1,Varanasi,"B1/128-3, Dumraun Bagh Colony, Assi Ghat, Varanasi",Assi Ghat,"Assi Ghat, Varanasi",83.004504,25.287958,Cafe,450,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,59 +3900059,Pizzeria Vaatika Cafe,1,Varanasi,"B-1/178, Assi Ghat, Varanasi",Assi Ghat,"Assi Ghat, Varanasi",83.006523,25.288447,"Pizza, Chinese",700,Indian Rupees(Rs.),No,No,No,No,3,3.7,Yellow,Good,149 +3900158,Aman Restaurant,1,Varanasi,"Boradway Hotel, Near IP Vijaya Mall, Bhelupur, Varanasi",Bhelupur,"Bhelupur, Varanasi",0,0,"Chinese, North Indian",650,Indian Rupees(Rs.),No,No,No,No,3,3.2,Orange,Average,60 +3900007,Blue Lassi,1,Varanasi,"CK 12/1, Kachauri Gali Chowk, Near Rajbandhu Sweet, Bhelupur, Varanasi",Bhelupur,"Bhelupur, Varanasi",0,0,Beverages,300,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,96 +3900232,Kerala Cafe,1,Varanasi,"Bhelupur Crossing, Bhelupur, Varanasi",Bhelupur,"Bhelupur, Varanasi",0,0,South Indian,300,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,125 +3900250,Baati Chokha,1,Varanasi,"Anand Mandir Cinema, Telibagh, Dashaswmedh Road, Varanasi",Dashaswmedh Road,"Dashaswmedh Road, Varanasi",0,0,North Indian,450,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,68 +3900245,Deena Chat Bhandar,1,Varanasi,"D-47/184, Luxa Road, Dashaswmedh Road, Varanasi",Dashaswmedh Road,"Dashaswmedh Road, Varanasi",0,0,Street Food,0,Indian Rupees(Rs.),No,No,No,No,1,3.8,Yellow,Good,78 +3900004,Dosa Cafe,1,Varanasi,"D 15/49, Maan Mandir, Dashaswmedh Road, Varanasi",Dashaswmedh Road,"Dashaswmedh Road, Varanasi",83.010021,25.307589,South Indian,450,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,48 +3900032,Kashi Chat Bhandar,1,Varanasi,"D-37/49, Godaulia, Varanasi",Godaulia,"Godaulia, Varanasi",82.971977,25.311385,Street Food,150,Indian Rupees(Rs.),No,No,No,No,1,4.1,Green,Very Good,158 +3900058,Chrystal Bowl Restaurant,1,Varanasi,"34-B, Ravindra Puri, Near Lanka, Varanasi",Lanka,"Lanka, Varanasi",83.001801,25.290468,North Indian,800,Indian Rupees(Rs.),No,No,No,No,3,3.3,Orange,Average,96 +3900070,Flavours Cafe,1,Varanasi,"1st Floor, Swastik Plaza, Near Ravidas Gate, BHU Road, Lanka, Varanasi",Lanka,"Lanka, Varanasi",82.999827,25.281437,"North Indian, Cafe",400,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,85 +3900057,Ming Garden,1,Varanasi,"34-B, Ravindra Puri, Near Lanka,Varanasi",Lanka,"Lanka, Varanasi",82.982869,25.270943,Chinese,600,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,172 +3900067,Burger King,1,Varanasi,"S 19/1 K, Mint House, Near Hotel Taj, Nai Bazar Cantt, Nadesar, Varanasi",Nadesar,"Nadesar, Varanasi",82.987294,25.334362,"North Indian, Fast Food",350,Indian Rupees(Rs.),No,No,No,No,2,3.4,Orange,Average,96 +3900050,Tandoor Villa,1,Varanasi,"Near Sbi Atm, Main Road, Nadesar, Varanasi",Nadesar,"Nadesar, Varanasi",82.98929069,25.33290879,"North Indian, Mughlai",600,Indian Rupees(Rs.),No,No,No,No,3,3.6,Yellow,Good,63 +3900009,eastWEST - Radisson Hotel,1,Varanasi,"Radisson Hotel, The Mall Road, Nadesar, Varanasi","Radisson Hotel, Nadesar","Radisson Hotel, Nadesar, Varanasi",82.98081,25.338373,"Cafe, North Indian, Continental",600,Indian Rupees(Rs.),No,No,No,No,3,3.3,Orange,Average,34 +3900010,The Great Kabab Factory - Radisson Hotel,1,Varanasi,"Radisson Hotel, The Mall Road, Nadesar, Varanasi","Radisson Hotel, Nadesar","Radisson Hotel, Nadesar, Varanasi",82.98081,25.338373,"North Indian, Mughlai",1100,Indian Rupees(Rs.),No,No,No,No,4,3.3,Orange,Average,67 +3900055,I:ba Cafe & Restaurant,1,Varanasi,"B 3/335, Krimkund, Shivala, Varanasi",Shivala,"Shivala, Varanasi",0,0,"Japanese, American, North Indian, Fast Food",1000,Indian Rupees(Rs.),No,No,No,No,4,3.5,Yellow,Good,83 +18346996,3Cherryz Sky Lounge & Cafe,1,Varanasi,"5th Floor Roof Top,(Above Big Bazaar) Sigra. Opp. IP Mall Sigra., Sigra, Varanasi",Sigra,"Sigra, Varanasi",82.99116335,25.31717627,"Cafe, North Indian, Chinese",500,Indian Rupees(Rs.),No,No,No,No,3,3.2,Orange,Average,26 +18246202,VNS Live Studio,1,Varanasi,"Hotel Varuna Ground Floor, 22 Gulab Bagh, Sigra, Varanasi",Sigra,"Sigra, Varanasi",82.99169443,25.31834492,"Chinese, North Indian",0,Indian Rupees(Rs.),No,No,No,No,1,3.5,Yellow,Good,109 +3900238,Singh's Delight Restaurant,1,Varanasi,"1st Floor, Nath Complex, Beside Life Line Hospital, Sunderpur, Varanasi",Sunderpur,"Sunderpur, Varanasi",0,0,"Chinese, North Indian",700,Indian Rupees(Rs.),No,No,No,No,3,3.5,Yellow,Good,57 +2800013,Pizza Hut,1,Vizag,"52-1-35,36&38, CMR Mall, New Resapavanipalem, Maddilapalem, Vizag","CMR Central Mall, Maddilapalem","CMR Central Mall, Maddilapalem, Vizag",83.31851111,17.73417778,"Pizza, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,4.6,Dark Green,Excellent,289 +2800012,Pizza Hut,1,Vizag,"Plot No 47- 10-23/3, 5th Floor, Isnar Khazana Towers, Dwaraka Nagar, Vizag",Dwaraka Nagar,"Dwaraka Nagar, Vizag",83.30513889,17.72614722,"Pizza, Fast Food",600,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,230 +2800294,Sri Sairam Parlour,1,Vizag,"Diamond Park, Railway New Colony Road, Dwaraka Nagar, Vizag",Dwaraka Nagar,"Dwaraka Nagar, Vizag",83.30341389,17.72629722,"South Indian, North Indian",300,Indian Rupees(Rs.),No,No,No,No,1,4.2,Green,Very Good,270 +2800903,Mekong - Hotel GreenPark,1,Vizag,"Hotel GreenPark, Waltair Main Road, Waltair Uplands, Vizag","Hotel GreenPark, Vizag","Hotel GreenPark, Vizag, Vizag",83.307073,17.715819,"Chinese, Thai, Burmese, Vietnamese, Tibetan, Japanese",1300,Indian Rupees(Rs.),No,No,No,No,3,4.4,Green,Very Good,73 +2800052,The Square - Hotel Novotel,1,Vizag,"Hotel Novotel, Beach Road, Maharani Peta, Vizag","Hotel Novotel, Maharani Peta","Hotel Novotel, Maharani Peta, Vizag",83.315935,17.71069,"Continental, North Indian",1700,Indian Rupees(Rs.),No,No,No,No,4,4.1,Green,Very Good,125 +2800095,Alpha Hotel,1,Vizag,"28-10-33/6, Jagdamba Commercial Complex, Chitralaya Cinema Hall, Jagadamba Junction, Visakhapatnam, Jagadamba Junction, Vizag",Jagadamba Junction,"Jagadamba Junction, Vizag",83.30161389,17.71202778,"North Indian, Biryani",300,Indian Rupees(Rs.),No,No,No,No,1,3.7,Yellow,Good,240 +2800856,Barbeque Nation,1,Vizag,"1st Floor, ATR Towers, Harbour Park Road, Panduranga Puram, Near Harbour Park, Kirlampudi Layout, Vizag",Kirlampudi Layout,"Kirlampudi Layout, Vizag",0,0,"North Indian, Chinese, Mediterranean",1600,Indian Rupees(Rs.),No,No,No,No,4,4.9,Dark Green,Excellent,345 +2800911,Double Roti,1,Vizag,"Ground Floor, ATR Towers, Harbour Park Road, Pandurangapuram, Kirlampudi Layout, Vizag",Kirlampudi Layout,"Kirlampudi Layout, Vizag",0,0,"Cafe, Fast Food, American",1000,Indian Rupees(Rs.),No,No,No,No,3,3.8,Yellow,Good,27 +2800757,Bake My Wish,1,Vizag,"4-70-4, Opposite NCC Canteen, Lawsons Bay, Vizag",Lawsons Bay,"Lawsons Bay, Vizag",0,0,Fast Food,450,Indian Rupees(Rs.),No,No,No,No,2,3.8,Yellow,Good,175 +2800096,Kamat Restaurant,1,Vizag,"Beach Road, Near Santhi Ashram, Lawsons Bay, Visakhapatnam",Lawsons Bay,"Lawsons Bay, Vizag",83.33809722,17.73480556,"Andhra, North Indian, Chinese, Seafood, Biryani",600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,154 +2800083,My Restaurant,1,Vizag,"HB Colony, Isukathota, National Highway 5, Besides Honda Showroom, Maddilapalem, Vizag",Maddilapalem,"Maddilapalem, Vizag",83.326859,17.740024,"Andhra, North Indian, Chinese",600,Indian Rupees(Rs.),No,No,No,No,2,3.5,Yellow,Good,124 +18306045,Percolator Coffee House,1,Vizag,"RK Beach, Maharani Peta, Vizag Visakhapatnam., Maharani Peta",Maharani Peta,"Maharani Peta, Vizag",83.31983998,17.71266157,"Mughlai, Chinese, Cafe, BBQ, Cajun",500,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,84 +2800897,Tea Trails,1,Vizag,"7-5-82, Sea Shore Apartments, Southern Portion Cellar Floor, R K Beach Road, Maharani Peta, Vizag",Maharani Peta,"Maharani Peta, Vizag",0,0,Fast Food,500,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,57 +18285610,Six Degrees,1,Vizag,"1-83-29, Opposite Pollock Lotus School, MVP Double Road, Sector 5, MVP Colony, Vizag",MVP Colony,"MVP Colony, Vizag",83.304558,17.726709,"South Indian, Chinese, Continental, Italian, North Indian",600,Indian Rupees(Rs.),No,No,No,No,2,4.1,Green,Very Good,75 +2800128,Sea Inn - Raju Gaari Dhaba,1,Vizag,"Beach Road, Opposite Cyclone Shelter , Visakhapatnam, Rushikonda, Vizag",Rushikonda,"Rushikonda, Vizag",83.38285833,17.78386944,"Biryani, Andhra",450,Indian Rupees(Rs.),No,No,No,No,2,4,Green,Very Good,169 +2800100,D Cabana,1,Vizag,"Beach Road, Near Bus Stop, Sagar Nagar, Visakhapatnam",Sagar Nagar,"Sagar Nagar, Vizag",83.361377,17.764287,"Continental, Seafood, Chinese, North Indian, Biryani",600,Indian Rupees(Rs.),No,No,No,No,2,3.6,Yellow,Good,193 +2800418,Kaloreez,1,Vizag,"Plot 95, Opposite St. Lukes Nursing School, Daspalla Hills, Siripuram, Vizag",Siripuram,"Siripuram, Vizag",0,0,"Cafe, North Indian, Chinese",400,Indian Rupees(Rs.),No,No,No,No,2,3.7,Yellow,Good,85 +2800881,Plot 17,1,Vizag,"Plot 17, Gangapur Layout, Siripuram, Vizag",Siripuram,"Siripuram, Vizag",83.31528135,17.7195395,"Burger, Pizza, Biryani",600,Indian Rupees(Rs.),No,No,No,No,2,4.3,Green,Very Good,172 +2800042,Vista - The Park,1,Vizag,"The Park, Beach Road, Pedda Waltair, Lawsons Bay, Visakhapatnam, Lawsons Bay, Vizag","The Park, Lawsons Bay","The Park, Lawsons Bay, Vizag",83.33684,17.721182,"American, North Indian, Thai, Continental",1500,Indian Rupees(Rs.),No,No,No,No,4,3.8,Yellow,Good,74 +2800019,Flying Spaghetti Monster,1,Vizag,"10-50-12/F2, Sai Dakshata Complex, Beside Lenovo Showroom, Visakhapatnam, Waltair Uplands, Waltair Uplands, Vizag",Waltair Uplands,"Waltair Uplands, Vizag",83.31494167,17.72111944,Italian,1400,Indian Rupees(Rs.),No,No,No,No,3,4.4,Green,Very Good,316 +18400530,Noah's Barn Coffeenery,94,Bandung,"Jl. Dayang Sumbi No. 2, Dago, Bandung",Dago,"Dago, Bandung",107.6127895,-6.887057501,"Cafe, Coffee and Tea, Western",150000,Indonesian Rupiah(IDR),No,No,No,No,3,4.2,Green,Very Good,22 +7423620,Momo Milk,94,Bogor,"Jl. Kantor Pos No. 6, Bogor Timur, Bogor",Bogor Timur,"Bogor Timur, Bogor",106.8103014,-6.606916768,"Cafe, Desserts, Beverages",70000,Indonesian Rupiah(IDR),No,No,No,No,2,3.7,Yellow,Good,783 +7423482,Lemongrass,94,Bogor,"Jl. Raya Pajajaran No. 21, Bogor Utara, Bogor",Bogor Utara,"Bogor Utara, Bogor",106.8078499,-6.576578026,"Peranakan, Indonesian",250000,Indonesian Rupiah(IDR),No,No,No,No,3,4,Green,Very Good,1159 +7422633,Talaga Sampireun,94,Jakarta,Jl. Lingkar Luar Barat,Cengkareng,"Cengkareng, Jakarta",106.7285083,-6.168466667,"Sunda, Indonesian",200000,Indonesian Rupiah(IDR),No,No,No,No,3,4.9,Dark Green,Excellent,1662 +7405789,Toodz House,94,Jakarta,"Jl. Cipete Raya No. 79, Fatmawati, Jakarta",Fatmawati,"Fatmawati, Jakarta",106.801782,-6.278012,"Cafe, Italian, Coffee and Tea, Western, Indonesian",165000,Indonesian Rupiah(IDR),No,No,No,No,3,4.6,Dark Green,Excellent,1476 +18425821,OJJU,94,Jakarta,"Gandaria City, Lantai Upper Ground, Jl. Sultan Iskandar Muda","Gandaria City Mall, Gandaria","Gandaria City Mall, Gandaria, Jakarta",106.783162,-6.244221,Korean,200000,Indonesian Rupiah(IDR),No,No,No,No,3,3.9,Yellow,Good,137 +7422751,Union Deli,94,Jakarta,"Grand Indonesia Mall, Lantai Ground, East Mall, Jl. MH Thamrin, Thamrin, Jakarta","Grand Indonesia Mall, Thamrin","Grand Indonesia Mall, Thamrin, Jakarta",106.8197488,-6.197150016,"Desserts, Bakery, Western",200000,Indonesian Rupiah(IDR),No,No,No,No,3,4.6,Dark Green,Excellent,903 +7402935,Skye,94,Jakarta,"Menara BCA, Lantai 56, Jl. MH. Thamrin, Thamrin, Jakarta","Grand Indonesia Mall, Thamrin","Grand Indonesia Mall, Thamrin, Jakarta",106.821999,-6.196778,"Italian, Continental",800000,Indonesian Rupiah(IDR),No,No,No,No,3,4.1,Green,Very Good,1498 +7410290,Satoo - Hotel Shangri-La,94,Jakarta,"Hotel Shangri-La, Jl. Jend. Sudirman","Hotel Shangri-La, Sudirman","Hotel Shangri-La, Sudirman, Jakarta",106.8189611,-6.203291667,"Asian, Indonesian, Western",800000,Indonesian Rupiah(IDR),No,No,No,No,3,4.6,Dark Green,Excellent,873 +18391256,MONKS,94,Jakarta,"Komplek Graha Boulevard Timur, Summarecon Kelapa Gading Blok ND1/51, Kelapa Gading, Jakarta",Kelapa Gading,"Kelapa Gading, Jakarta",106.9113346,-6.163947933,"Western, Asian, Cafe",250000,Indonesian Rupiah(IDR),No,No,No,No,3,4.2,Green,Very Good,259 +7400818,Zenbu,94,Jakarta,"Kota Kasablanka, Lantai Upper Ground, Food Society, Jl. Casablanca Raya, Tebet, Jakarta","Kota Kasablanka, Tebet","Kota Kasablanka, Tebet, Jakarta",106.8425,-6.224333333,"Japanese, Sushi, Ramen",200000,Indonesian Rupiah(IDR),No,No,No,No,3,4.4,Green,Very Good,841 +7420899,Sushi Masa,94,Jakarta,"Jl. Tuna Raya No. 5, Penjaringan",Penjaringan,"Penjaringan, Jakarta",106.800144,-6.101298,"Sushi, Japanese",500000,Indonesian Rupiah(IDR),No,No,No,No,3,4.9,Dark Green,Excellent,605 +18352452,Lucky Cat Coffee & Kitchen,94,Jakarta,"Plaza Festival, South Parking, Jl. HR Rasuna Said, Kuningan, Jakarta","Plaza Festival, Kuningan","Plaza Festival, Kuningan, Jakarta",106.8317481,-6.218932479,"Cafe, Western",300000,Indonesian Rupiah(IDR),No,No,No,No,3,4.3,Green,Very Good,458 +7421967,3 Wise Monkeys,94,Jakarta,"Jl. Suryo No. 26, Senopati, Jakarta",Senopati,"Senopati, Jakarta",106.8134001,-6.235241091,Japanese,450000,Indonesian Rupiah(IDR),No,No,No,No,3,4.2,Green,Very Good,395 +18370659,Flip Burger,94,Jakarta,"Jl. Senopati No. 27, Senopati, Jakarta",Senopati,"Senopati, Jakarta",106.8085503,-6.23077495,Burger,120000,Indonesian Rupiah(IDR),No,No,No,No,3,4.4,Green,Very Good,410 +7417455,Talaga Sampireun,94,Jakarta,"Taman Impian Jaya Ancol, Jl. Lapangan Golf 7, Ancol, Jakarta","Taman Impian Jaya Ancol, Ancol","Taman Impian Jaya Ancol, Ancol, Jakarta",106.8335532,-6.12685982,"Sunda, Indonesian",200000,Indonesian Rupiah(IDR),No,No,No,No,3,4.9,Dark Green,Excellent,1640 +18409146,Fish Streat,94,Jakarta,"Jl. Tanjung Duren Utara III, Blok M Kav. 32, Tanjung Duren, Jakarta",Tanjung Duren,"Tanjung Duren, Jakarta",0,0,"Seafood, Western",100000,Indonesian Rupiah(IDR),No,No,No,No,3,3.4,Orange,Average,152 +18408381,Fish Streat,94,Jakarta,"Jl. Tebet Timur Dalam Raya 44B, Tebet, Jakarta",Tebet,"Tebet, Jakarta",106.8564133,-6.232815715,"Seafood, Western",100000,Indonesian Rupiah(IDR),No,No,No,No,3,4,Green,Very Good,331 +7422489,Avec Moi Restaurant and Bar,94,Jakarta,"Gedung PIC, Jl. Teluk Betung 43, Thamrin, Jakarta",Thamrin,"Thamrin, Jakarta",106.821023,-6.19627,"French, Western",350000,Indonesian Rupiah(IDR),No,No,No,No,3,4.3,Green,Very Good,243 +18386856,Onokabe,94,Tangerang,"Alam Sutera Town Center, Jl. Alam Utama, Serpong, Tangerang","Alam Sutera Town Center, Serpong Utara","Alam Sutera Town Center, Serpong Utara, Tangerang",106.652688,-6.241792,Indonesian,300000,Indonesian Rupiah(IDR),No,No,No,No,3,3.7,Yellow,Good,155 +7417450,Talaga Sampireun,94,Tangerang,"Jl. Boulevard Bintaro Jaya Blok B7/N1, Bintaro Sektor 7, Pondok Aren, Tangerang",Pondok Aren,"Pondok Aren, Tangerang",106.7261194,-6.269913889,"Sunda, Indonesian",200000,Indonesian Rupiah(IDR),No,No,No,No,3,4.9,Dark Green,Excellent,2212 +18251260,Kiss Kiss,148,Auckland,"1 Rocklands Avenue, Balmoral, Auckland",Balmoral,"Balmoral, Auckland",174.74808,-36.888662,Thai,40,NewZealand($),No,No,No,No,2,4.3,Green,Very Good,133 +7000162,Giapo,148,Auckland,"12 Gore Street, Auckland CBD, Auckland",Britomart,"Britomart, Auckland",174.768851,-36.845553,"Ice Cream, Desserts",20,NewZealand($),No,No,No,No,1,4.7,Dark Green,Excellent,617 +7001086,Milse,148,Auckland,"The Pavilions, 27 Tyler Street, Britomart, Auckland CBD, Auckland 1010",Britomart,"Britomart, Auckland",174.7686903,-36.84418841,Desserts,50,NewZealand($),No,No,No,No,3,4.9,Dark Green,Excellent,754 +7003855,Orleans,148,Auckland,"Roukai Lane, 48 Custom Street East, Britomart, Auckland CBD, Auckland 1010",Britomart,"Britomart, Auckland",174.7695519,-36.8453314,American,65,NewZealand($),No,No,No,No,3,4.1,Green,Very Good,431 +7000095,Depot Eatery and Oyster Bar,148,Auckland,"86 Federal Street, Auckland CBD, Auckland, 1010",Federal Street,"Federal Street, Auckland",174.762527,-36.848988,"Seafood, Kiwi",90,NewZealand($),No,No,No,No,4,4.8,Dark Green,Excellent,598 +7003663,Federal Delicatessen,148,Auckland,"86 Federal Street, Auckland CBD, Auckland 1010",Federal Street,"Federal Street, Auckland",174.7622201,-36.84876968,"Cafe, American",60,NewZealand($),No,No,No,No,3,4.6,Dark Green,Excellent,696 +18217279,Miann,148,Auckland,"57 Fort Street, Auckland Auckland CBD",Fort Street,"Fort Street, Auckland",174.768986,-36.84604966,Desserts,25,NewZealand($),No,No,No,No,1,4.9,Dark Green,Excellent,281 +7005582,Little Sister Cafe,148,Auckland,"91 Central Park Drive, Henderson, Auckland",Henderson,"Henderson, Auckland",174.635633,-36.859341,Cafe,45,NewZealand($),No,No,No,No,3,4.5,Dark Green,Excellent,213 +18419011,The Kimchi Project,148,Auckland,"20 Lorne Street, Auckland CBD, Auckland",Lorne Street,"Lorne Street, Auckland",174.765767,-36.85014119,"Asian Fusion, Cafe",90,NewZealand($),No,No,No,No,4,4.2,Green,Very Good,61 +7001208,De Fontein Belgian Beer Cafe,148,Auckland,"75-79 Tamaki Drive, Mission Bay, Auckland",Mission Bay,"Mission Bay, Auckland",174.8320893,-36.84831519,European,100,NewZealand($),No,No,No,No,4,2.3,Red,Poor,402 +7005979,Chinoiserie,148,Auckland,"4 Owairaka Avenue, Mt Albert, Auckland",Mt Albert,"Mt Albert, Auckland",174.7269883,-36.89398977,"Taiwanese, Street Food",50,NewZealand($),No,No,No,No,3,4.4,Green,Very Good,223 +7000992,Eden Noodles Cafe __·___,148,Auckland,"105 Dominion Road, Mt Eden, Auckland 1024",Mt Eden,"Mt Eden, Auckland",174.7524415,-36.87177949,Chinese,35,NewZealand($),No,No,No,No,2,4.3,Green,Very Good,212 +7001660,Frasers,148,Auckland,"434 Mt Eden Road, Mt Eden, Auckland 1024",Mt Eden,"Mt Eden, Auckland",174.762234,-36.881213,"Cafe, European",60,NewZealand($),No,No,No,No,3,4,Green,Very Good,381 +7006107,The Garden Shed,148,Auckland,"470 Mt Eden Road, Mt Eden, Auckland 1024",Mt Eden,"Mt Eden, Auckland",174.762354,-36.882604,"Kiwi, European",90,NewZealand($),No,No,No,No,4,4.2,Green,Very Good,271 +18383350,Tucks and Bao,148,Auckland,"19 Davis Cresent, Newmarket, Auckland 1023",Newmarket,"Newmarket, Auckland",174.777987,-36.86565,"Asian Fusion, Pub Food, Fusion, Asian, Filipino, Malaysian, Thai",70,NewZealand($),No,No,No,No,4,3.5,Yellow,Good,86 +18450836,Winona Forever,148,Auckland,"100 Parnell Road, Parnell, Auckland",Parnell,"Parnell, Auckland",174.779441,0,Cafe,50,NewZealand($),No,No,No,No,3,4,Green,Very Good,31 +7006871,Big Fish Eatery,148,Auckland,"Unit 3, 710 Great South Road, Corner Wilkinson Road, Penrose, Auckland 1061",Penrose,"Penrose, Auckland",174.810305,-36.905409,"Asian, Sushi, Seafood",55,NewZealand($),No,No,No,No,3,4.5,Dark Green,Excellent,166 +7006421,PappaRich,148,Auckland,"Sky City Metro, Shop 2.01-2.03, 291-297 Queen Street, Auckland CBD, Auckland 1010","Sky City Metro, Auckland CBD","Sky City Metro, Auckland CBD, Auckland",174.7634761,-36.85158619,Malaysian,60,NewZealand($),No,No,No,No,3,4,Green,Very Good,414 +7001670,Eight - The Langham Hotel,148,Auckland,"The Langham Hotel, 83 Symonds Street, Grafton, Auckland","The Langham Hotel, Auckland CBD","The Langham Hotel, Auckland CBD, Auckland",174.764078,-36.857474,European,190,NewZealand($),No,No,No,No,4,4.7,Dark Green,Excellent,412 +7003682,Baduzzi,148,Auckland,"10-26 Jellicoe Street, Wynyard Quarter, Auckland CBD, Auckland 1010",Wynyard Quarter,"Wynyard Quarter, Auckland",174.7570233,-36.84109176,Italian,120,NewZealand($),No,No,No,No,4,4.6,Dark Green,Excellent,413 +7100468,Maranui Cafe,148,Wellington City,"Maranui Surf Life Saving Club, 7 Lyall Parade, Lyall Bay, Wellington City",Lyall Bay,"Lyall Bay, Wellington City",174.793257,-41.330428,"Cafe, Kiwi",50,NewZealand($),No,No,No,No,3,4.3,Green,Very Good,127 +7101378,Five Boroughs,148,Wellington City,"4 Roxburgh Street, Corner of Roxburgh and Majoribanks Street, Mt Victoria, Wellington City",Mt Victoria,"Mt Victoria, Wellington City",174.785051,-41.294234,American,60,NewZealand($),No,No,No,No,3,4.1,Green,Very Good,114 +7101011,Ekim Burgers,148,Wellington City,"257 Cuba Street, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.774151,-41.296107,Fast Food,25,NewZealand($),No,No,No,No,1,4.5,Dark Green,Excellent,195 +7100171,Ombra,148,Wellington City,"199 Cuba Street, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.775,-41.29483333,Italian,70,NewZealand($),No,No,No,No,4,4.5,Dark Green,Excellent,152 +7101042,The Hangar,148,Wellington City,"171-177 Willis Street, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.773933,-41.290801,Cafe,50,NewZealand($),No,No,No,No,3,4.6,Dark Green,Excellent,171 +7101483,Burger Liquor,148,Wellington City,"129 Willis Street, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.774546,-41.289798,American,55,NewZealand($),No,No,No,No,3,4.1,Green,Very Good,116 +7100478,Caffe L'affare,148,Wellington City,"27 College Street, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.780345,-41.296155,Cafe,50,NewZealand($),No,No,No,No,3,4.1,Green,Very Good,103 +7100660,Dragonfly,148,Wellington City,"70 Courtenay Place, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.7806667,-41.293,Asian,100,NewZealand($),No,No,No,No,4,4.3,Green,Very Good,143 +7100151,Enigma Cafe,148,Wellington City,"128 Courtenay Place, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.7791667,-41.2925,"Cafe, Kiwi, Ice Cream, Desserts",50,NewZealand($),No,No,No,No,3,4,Green,Very Good,94 +7100502,Fidel's,148,Wellington City,"234 Cuba Street, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.774134,-41.29597,"Cafe, European, Mexican",50,NewZealand($),No,No,No,No,3,4.4,Green,Very Good,242 +7100072,Fisherman's Plate,148,Wellington City,"12 Bond Street, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.7756667,-41.289,"Vietnamese, Fish and Chips",40,NewZealand($),No,No,No,No,2,4.3,Green,Very Good,96 +7100811,Floriditas,148,Wellington City,"161 Cuba Street, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.7755,-41.29383333,"Italian, Cafe",105,NewZealand($),No,No,No,No,4,4.2,Green,Very Good,170 +7100119,Hippopotamus - Museum Hotel,148,Wellington City,"Museum Hotel, Level 3, 90 Cable Street, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.782427,-41.291774,"French, Kiwi",200,NewZealand($),No,No,No,No,4,4.4,Green,Very Good,125 +7100087,Little Penang,148,Wellington City,"40 Dixon Street, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.777091,-41.291901,Malaysian,50,NewZealand($),No,No,No,No,3,4.4,Green,Very Good,161 +7101310,Loretta,148,Wellington City,"181 Cuba Street, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.775296,-41.294154,"European, Cafe",80,NewZealand($),No,No,No,No,4,4.2,Green,Very Good,113 +7100535,Midnight Espresso,148,Wellington City,"178 Cuba Street, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.774912,-41.294565,Cafe,40,NewZealand($),No,No,No,No,2,4.3,Green,Very Good,157 +7101000,Olive,148,Wellington City,"170 Cuba Street, Te Aro, Wellington City",Te Aro,"Te Aro, Wellington City",174.775005,-41.294402,"Mediterranean, Cafe, European",80,NewZealand($),No,No,No,No,4,4.2,Green,Very Good,146 +7100938,wagamama,148,Wellington City,"33 Customhouse Quay, Wellington Central, Wellington City 6011",Wellington Central,"Wellington Central, Wellington City",174.7792237,-41.28303381,"Japanese, Asian",70,NewZealand($),No,No,No,No,4,3.7,Yellow,Good,131 +7101081,Charley Noble Eatery & Bar,148,Wellington City,"Huddart Parker Building, Ground Floor, 1 Post Office Square, Wellington Central, Wellington City",Wellington Central,"Wellington Central, Wellington City",174.7774651,-41.28496092,European,110,NewZealand($),No,No,No,No,4,4.3,Green,Very Good,141 +7100788,The Crab Shack,148,Wellington City,"15 Jervois Quay, Queens Wharf, Wellington Central, Wellington City",Wellington Central,"Wellington Central, Wellington City",174.7791667,-41.28483333,"Seafood, Kiwi",90,NewZealand($),No,No,No,No,4,4.1,Green,Very Good,229 +6900714,Pepe's Piri Piri,215,Birmingham,"254-256 Alum Rock Road, Alum Rock, Birmingham B8 3DD",Alum Rock,"Alum Rock, Birmingham",-1.846811,52.488557,Fast Food,10,Pounds(),No,No,No,No,1,2.8,Orange,Average,26 +6900883,Ju Ju's Cafe,215,Birmingham,"1 Canal Square, Brindleyplace, Birmingham B16 8EH",Brindleyplace,"Brindleyplace, Birmingham",-1.918049,52.477569,"Cafe, British",15,Pounds(),No,No,No,No,1,3.7,Yellow,Good,13 +6900374,Bank,215,Birmingham,"4 Brindleyplace, Brindleyplace, Birmingham B1 2JB","Brindleyplace, Broad Street","Brindleyplace, Broad Street, Birmingham",-1.914805,52.477693,"British, Steak",60,Pounds(),Yes,No,No,No,3,4,Green,Very Good,133 +6900224,Chaophraya,215,Birmingham,"Middle Mall, Bullring Shopping Centre, Special street, Bullring, Birmingham B5 4BH","Bullring Shopping Centre, Southside","Bullring Shopping Centre, Southside, Birmingham",-1.894286,52.477633,Thai,30,Pounds(),Yes,No,No,No,2,3.9,Yellow,Good,22 +6900160,Handmade Burger Co.,215,Birmingham,"Unit 3, St Martin Square, Bullring Shopping Centre, Bullring, Birmingham B5 4BU","Bullring Shopping Centre, Southside","Bullring Shopping Centre, Southside, Birmingham",-1.894286,52.477633,"Burger, American",35,Pounds(),No,No,No,No,2,3.7,Yellow,Good,21 +6900050,Jamie's Italian,215,Birmingham,"Middle Mall, Bullring Shopping Centre, Bullring, Birmingham B5 4BU","Bullring Shopping Centre, Southside","Bullring Shopping Centre, Southside, Birmingham",-1.894286,52.477633,Italian,50,Pounds(),No,No,No,No,3,3.9,Yellow,Good,53 +6900724,Bodega,215,Birmingham,"12 Bennetts Hill, City Centre, Birmingham B2 5RS",City Centre,"City Centre, Birmingham",-1.900375,52.47969,Latin American,40,Pounds(),No,No,No,No,3,4.6,Dark Green,Excellent,100 +6901081,San Carlo,215,Birmingham,"4 Temple Street, City Centre, Birmingham B2 5BN",City Centre,"City Centre, Birmingham",-1.899133,52.480364,Italian,45,Pounds(),No,No,No,No,3,4.2,Green,Very Good,148 +6900674,Purnell's,215,Birmingham,"55 Cornwall Street, Colmore Business District, Birmingham B3 2DH",Colmore Business District,"Colmore Business District, Birmingham",-1.901843,52.483643,Contemporary,120,Pounds(),No,No,No,No,4,4.5,Dark Green,Excellent,265 +6901062,The Warehouse Cafe,215,Birmingham,"54-57 Allison Street, Digbeth, Birmingham B5 5TH",Digbeth,"Digbeth, Birmingham",-1.890569,52.477388,"British, Cafe",20,Pounds(),No,No,No,No,2,3.8,Yellow,Good,38 +6900669,Fiesta del Asado,215,Birmingham,"229 Hagley Road, Edgbaston, Birmingham B16 9RP",Edgbaston,"Edgbaston, Birmingham",-1.938759,52.472197,"Latin American, Italian",50,Pounds(),No,No,No,No,3,4,Green,Very Good,40 +6900811,Istanbul Restaurant,215,Birmingham,"2 Stockwell Road, Handsworth, Birmingham B21 9RJ",Handsworth,"Handsworth, Birmingham",-1.939166667,52.51416667,Turkish,30,Pounds(),No,No,No,No,2,3.6,Yellow,Good,9 +6901051,The Plough,215,Birmingham,"21 High Street, Harborne, Birmingham B17 9NT",Harborne,"Harborne, Birmingham",-1.943852,52.460962,British,30,Pounds(),No,No,No,No,2,4.2,Green,Very Good,55 +6900388,Lasan Restaurant,215,Birmingham,"3-4 Dakota Buildings, James Street, Saint Paul's Square, Jewellery Quarter, Birmingham B3 1SD",Jewellery Quarter,"Jewellery Quarter, Birmingham",-1.907596,52.485015,Indian,80,Pounds(),No,No,No,No,4,4.1,Green,Very Good,213 +18273002,Damascena Coffee House,215,Birmingham,"133 Alcester Road, Moseley, Birmingham",Moseley,"Moseley, Birmingham",-1.888555455,52.44630234,"Greek, Mediterranean, Middle Eastern",20,Pounds(),No,No,No,No,2,0,White,Not rated,3 +6901231,Tipu Sultan,215,Birmingham,"43 Alcester Road, Moseley, Birmingham B13 8AA",Moseley,"Moseley, Birmingham",-1.889039,52.450999,"Indian, Pakistani",45,Pounds(),No,No,No,No,3,4,Green,Very Good,63 +6901394,Jamjar,215,Birmingham,"418 Coventry Road, Small Heath, Birmingham B10 0TH",Small Heath,"Small Heath, Birmingham",-1.860593,52.470571,"Ice Cream, Desserts, Cafe",15,Pounds(),No,No,No,No,1,3.1,Orange,Average,11 +6900843,Chennai Dosa,215,Birmingham,"445-447, Dudley Road, Birmingham, Smethwick, Birmingham B18 4HE",Smethwick,"Smethwick, Birmingham",-1.947514,52.487692,"Indian, South Indian",20,Pounds(),No,No,No,No,2,3.8,Yellow,Good,55 +6900992,Mughal E Azam,215,Birmingham,"Stratford Road, Sparkhill, Birmingham B11 4DA",Sparkhill,"Sparkhill, Birmingham",-1.858529,52.443963,"Pakistani, Indian",45,Pounds(),No,No,No,No,3,3.7,Yellow,Good,32 +6900069,Bar Estilo,215,Birmingham,"110-114 Wharfside Street, The Mailbox, City Centre, Birmingham B1 1RF","The Mailbox, Broad Street","The Mailbox, Broad Street, Birmingham",-1.905477,52.475857,Mexican,20,Pounds(),No,No,No,No,2,4,Green,Very Good,93 +7600803,Loudons Cafe & Bakery,215,Edinburgh,"94b Fountainbridge, Fountainbridge, Edinburgh EH3 9QA",Fountainbridge,"Fountainbridge, Edinburgh",-3.208363,55.943501,"Cafe, Bakery",30,Pounds(),No,No,No,No,3,3.9,Yellow,Good,63 +7600217,La Favorita,215,Edinburgh,"325-331 Leith Walk, Leith, Edinburgh EH6 8SA",Leith,"Leith, Edinburgh",-3.176858333,55.96466944,Italian,30,Pounds(),No,No,No,No,3,4.5,Dark Green,Excellent,329 +7600902,Mimi's Bakehouse,215,Edinburgh,"63 Shore, Leith, Edinburgh EH6 6RA",Leith,"Leith, Edinburgh",-3.171327778,55.97509722,"Cafe, Bakery, Desserts",35,Pounds(),No,No,No,No,3,4.6,Dark Green,Excellent,130 +7601577,Roseleaf Bar Cafe,215,Edinburgh,"23-24 Sandport Place, Leith, Edinburgh EH6 6EW",Leith,"Leith, Edinburgh",-3.173679,55.976644,"Scottish, Cafe",45,Pounds(),No,No,No,No,3,4.7,Dark Green,Excellent,163 +7601241,The Kitchin,215,Edinburgh,"78 Commercial Street, Leith, Edinburgh EH6 6LX",Leith,"Leith, Edinburgh",-3.172778,55.97698,"British, French",90,Pounds(),No,No,No,No,4,4.4,Green,Very Good,275 +7602204,El Cartel,215,Edinburgh,"64 Thistle Street, New Town, Edinburgh EH2 1EN",New Town,"New Town, Edinburgh",-3.199521,55.95404,Mexican,30,Pounds(),No,No,No,No,3,3.8,Yellow,Good,31 +7601102,Chaophraya,215,Edinburgh,"4th Floor, 33 Castle Street, New Town, Edinburgh EH2 3DN",New Town,"New Town, Edinburgh",-3.203159,55.952221,Thai,50,Pounds(),Yes,No,No,No,4,4.3,Green,Very Good,61 +7600062,Hard Rock Cafe,215,Edinburgh,"20 George Street, New Town, Edinburgh EH2 2PF",New Town,"New Town, Edinburgh",-3.196294444,55.95349444,American,40,Pounds(),No,No,No,No,3,4,Green,Very Good,154 +7602340,The Boozy Cow,215,Edinburgh,"17 Frederick Street, New Town, Edinburgh EH2 2EY",New Town,"New Town, Edinburgh",-3.199569,55.951974,"Burger, Grill",40,Pounds(),No,No,No,No,3,4,Green,Very Good,36 +7601106,10 To 10 In Delhi,215,Edinburgh,"67 Nicolson Street, Old Town, Edinburgh EH8 9BE",Old Town,"Old Town, Edinburgh",-3.184344444,55.94543056,"Indian, Cafe",20,Pounds(),No,No,No,No,2,3.8,Yellow,Good,73 +7602219,Bentoya,215,Edinburgh,"15 Bread Street, Old Town, Edinburgh EH3 9AL",Old Town,"Old Town, Edinburgh",-3.204735,55.945895,"Sushi, Japanese, Cantonese",25,Pounds(),No,No,No,No,2,3.8,Yellow,Good,32 +7602224,Civerinos,215,Edinburgh,"5 Hunter Square, Royal Mile, Old Town, Edinburgh EH1 1QW",Old Town,"Old Town, Edinburgh",-3.187962,55.949637,"Pizza, Italian",35,Pounds(),No,No,No,No,3,3.7,Yellow,Good,27 +7600471,The Elephant House,215,Edinburgh,"21 George IV Bridge, Old Town, Edinburgh EH1 1EN",Old Town,"Old Town, Edinburgh",-3.191780556,55.94755556,Cafe,30,Pounds(),No,No,No,No,3,3.9,Yellow,Good,81 +7600118,The Hanging Bat,215,Edinburgh,"133 Lothian Road, Old Town, Edinburgh EH3 9AD",Old Town,"Old Town, Edinburgh",-3.205522222,55.94562222,American,35,Pounds(),No,No,No,No,3,3.5,Yellow,Good,31 +7600097,Love Crumbs,215,Edinburgh,"155 West Port, Old Town, Edinburgh EH3 9DP",Old Town,"Old Town, Edinburgh",-3.201683333,55.94595,"Bakery, Cafe",15,Pounds(),No,No,No,No,2,4.1,Green,Very Good,57 +7600188,Mother India's Cafe,215,Edinburgh,"3-5 Infirmary Street, Old Town, Edinburgh EH1 1LT",Old Town,"Old Town, Edinburgh",-3.18625,55.94800278,Indian,25,Pounds(),No,No,No,No,2,4.4,Green,Very Good,279 +7600914,The Witchery & The Secret Garden,215,Edinburgh,"Castlehill, The Royal Mile, Old Town, Edinburgh EH12NF",Old Town,"Old Town, Edinburgh",-3.19575,55.94828056,"British, Scottish, Seafood",100,Pounds(),Yes,No,No,No,4,4.1,Green,Very Good,200 +7601024,Ting Thai Caravan,215,Edinburgh,"8-9 Teviot Place, Old Town, Edinburgh EH1 2QZ",Old Town,"Old Town, Edinburgh",-3.189979,55.945676,"Thai, Asian",20,Pounds(),No,No,No,No,2,4.1,Green,Very Good,84 +7601177,Tuk Tuk Indian Street Food,215,Edinburgh,"1 Leven Street, Tollcross, Edinburgh EH3 9NB",Tollcross,"Tollcross, Edinburgh",-3.203588889,55.94190278,"Indian, Street Food",20,Pounds(),No,No,No,No,2,4,Green,Very Good,76 +7600921,Steak,215,Edinburgh,"14 Picardy Place, New Town, Edinburgh EH1 3JT","Twelve Picardy Place, New Town","Twelve Picardy Place, New Town, Edinburgh",-3.186854,55.957033,"Steak, Scottish, British",55,Pounds(),No,No,No,No,4,4.2,Green,Very Good,64 +6118140,Gymkhana,215,London,"42 Albemarle Street, Mayfair, London W1S 4JH","Albemarle Street, Mayfair","Albemarle Street, Mayfair, London",-0.141645,51.508515,"Indian, Pakistani, Curry",80,Pounds(),Yes,No,No,No,4,4.7,Dark Green,Excellent,214 +6103683,Bocca Di Lupo,215,London,"12 Archer Street, Soho, London W1D 7BB","Archer Street, Soho","Archer Street, Soho, London",-0.133947,51.511629,Italian,45,Pounds(),No,No,No,No,3,4.5,Dark Green,Excellent,571 +6114338,Flat Iron,215,London,"17 Beak Street, Soho, London W1F 9RW","Beak Street, Soho","Beak Street, Soho, London",-0.138343,51.512069,Steak,35,Pounds(),No,No,No,No,2,4.9,Dark Green,Excellent,309 +6114829,Duck & Waffle,215,London,"Heron Tower, 110 Bishopsgate, City of London, London EC2N 4AY","Bishopsgate, City Of London","Bishopsgate, City Of London, London",-0.080963,51.516284,British,55,Pounds(),No,No,No,No,3,4.9,Dark Green,Excellent,706 +6103922,Dishoom,215,London,"7 Boundary Street, Shoreditch, London E2 7JE","Boundary Street, Shoreditch","Boundary Street, Shoreditch, London",-0.076580556,51.52453611,"Indian, Cafe, Curry",55,Pounds(),No,No,No,No,3,4.5,Dark Green,Excellent,305 +6103902,Yauatcha,215,London,"15-17 Broadwick Street, Soho, London W1F 0DL","Broadwick Street, Soho","Broadwick Street, Soho, London",-0.135229,51.513739,"Chinese, Dim Sum",90,Pounds(),Yes,No,No,No,4,4.7,Dark Green,Excellent,1326 +6103255,Roka,215,London,"37 Charlotte Street, Fitzrovia, London W1T 1RR","Charlotte Street, Fitzrovia","Charlotte Street, Fitzrovia, London",-0.135524,51.518935,"Japanese, Sushi",60,Pounds(),No,No,No,No,3,4.6,Dark Green,Excellent,436 +6113680,Restaurant Gordon Ramsay,215,London,"68 Royal Hospital Road, Chelsea, London SW3 4HP",Chelsea,Chelsea,-0.162092,51.485509,French,230,Pounds(),No,No,No,No,4,4.7,Dark Green,Excellent,320 +6113857,sketch Gallery,215,London,"sketch, 9 Conduit Street, Mayfair, London W1S 2XG","Conduit Street, Mayfair","Conduit Street, Mayfair, London",-0.141557,51.512669,"British, Contemporary",100,Pounds(),No,No,No,No,4,4.5,Dark Green,Excellent,148 +6100054,Masala Zone,215,London,"48 Floral Street, Covent Garden, London WC2E 9DA",Covent Garden,Covent Garden,-0.123132,51.513196,"Indian, Curry",30,Pounds(),Yes,No,No,No,2,4.1,Green,Very Good,316 +6102615,The Breakfast Club,215,London,"33 D'Arblay Street, Soho, London W1F 8EU","D'arblay Street, Soho","D'arblay Street, Soho, London",-0.135463889,51.51481111,"American, Burger",40,Pounds(),No,No,No,No,3,4.5,Dark Green,Excellent,313 +6127163,Bao,215,London,"53 Lexington Street, Soho, London W1F 9AS","Lexington Street, Soho","Lexington Street, Soho, London",-0.136576,51.513225,"Taiwanese, Street Food",20,Pounds(),No,No,No,No,2,4.9,Dark Green,Excellent,161 +6117406,Five Guys,215,London,"1-3 Long Acre, Covent Garden, London WC2E 9LH","Long Acre, Covent Garden","Long Acre, Covent Garden, London",-0.126324,51.512085,"American, Burger",30,Pounds(),No,No,No,No,2,3.8,Yellow,Good,400 +6102866,Hakkasan,215,London,"17 Bruton Street, Mayfair, London W1J 6QB",Mayfair,Mayfair,-0.144861,51.510342,"Chinese, Dim Sum",120,Pounds(),Yes,No,No,No,4,4.8,Dark Green,Excellent,395 +6103868,Nobu,215,London,"15 Berkeley Street, Mayfair, London W1J 8DY",Mayfair,Mayfair,-0.143259,51.508811,"Japanese, Sushi",100,Pounds(),Yes,No,No,No,4,4.4,Green,Very Good,311 +6104220,Roti Chai,215,London,"3 Portman Mews South, Marble Arch, London W1H 6HS","Portman Mews South, Marble Arch","Portman Mews South, Marble Arch, London",-0.155732,51.514641,"Indian, Street Food",45,Pounds(),Yes,No,No,No,3,4.5,Dark Green,Excellent,367 +6117859,Shake Shack,215,London,"24 Market Building, The Piazza, Covent Garden, London WC2E 8RD","Tavistock Court, Covent Garden","Tavistock Court, Covent Garden, London",-0.12262,51.511682,"American, Burger",30,Pounds(),No,No,No,No,2,4.1,Green,Very Good,473 +6103211,Dishoom,215,London,"12 Upper St Martin's Lane, Covent Garden, London WC2H 9FB","Upper St Martin's Lane, Covent Garden","Upper St Martin's Lane, Covent Garden, London",-0.127164,51.512417,"Indian, North Indian, Curry, Cafe",35,Pounds(),No,No,No,No,2,4.7,Dark Green,Excellent,964 +6101881,Jamie's Italian,215,London,"11 Upper St Martin's Lane, Covent Garden, London WC2H 9FB","Upper St Martin's Lane, Covent Garden","Upper St Martin's Lane, Covent Garden, London",-0.126963,51.51259,Italian,50,Pounds(),No,No,No,No,3,4.3,Green,Very Good,271 +6113973,Bone Daddies,215,London,"31 St. Peter Street, Soho, London W1F 0AR","Walker's Court, Soho","Walker's Court, Soho, London",-0.133789,51.512627,"Ramen, Japanese",40,Pounds(),No,No,No,No,3,4.6,Dark Green,Excellent,418 +6800280,Monolos Playhouse Restaurant,215,Manchester,"137 Cheetham Hill Road, Cheetham Hill, Manchester M8 8LY",Cheetham Hill,"Cheetham Hill, Manchester",-2.239385,53.494691,"American, Fast Food, Desserts, Steak",30,Pounds(),No,No,No,No,2,3.3,Orange,Average,14 +6800443,Santos,215,Manchester,"22 King Edward's Buildings, Bury Old Road, Cheetham Hill, Manchester M7 4QJ",Cheetham Hill,"Cheetham Hill, Manchester",-2.246548,53.513525,"Pizza, Fast Food",20,Pounds(),No,No,No,No,2,3.3,Orange,Average,23 +6801867,Manchester House,215,Manchester,"Tower 12, 18-22 Bridge Street, Deansgate, Manchester M3 3BZ",Deansgate,"Deansgate, Manchester",-2.250806,53.48124,British,85,Pounds(),No,No,No,No,4,4,Green,Very Good,52 +6800235,The Grill On The Alley,215,Manchester,"5 RIdgefield, Deansgate, Manchester M2 6EG",Deansgate,"Deansgate, Manchester",-2.247333333,53.48083333,"Steak, Seafood, Grill",55,Pounds(),No,No,No,No,3,4.4,Green,Very Good,704 +6801051,Nawaab,215,Manchester,"1008 Stockport Road, Levenshulme, Manchester M19 3WN",Levenshulme,"Levenshulme, Manchester",-2.189833333,53.44183333,"Pakistani, Indian, Afghani, Curry",35,Pounds(),No,No,No,No,2,3.9,Yellow,Good,150 +6800577,Jamie's Italian,215,Manchester,"100 King Street, Market Street, Manchester M2 4WU",Market Street,"Market Street, Manchester",-2.242833333,53.48083333,Italian,50,Pounds(),No,No,No,No,3,3.9,Yellow,Good,88 +6800569,Chaophraya,215,Manchester,"19 Chapel Walks, City Center, Market Street, Manchester M2 1HN",Market Street,"Market Street, Manchester",-2.243505,53.48174,Thai,70,Pounds(),Yes,No,No,No,4,4.3,Green,Very Good,422 +6801374,Solita,215,Manchester,"37 Turner Street, Northern Quarter, Manchester M4 1DW",Northern Quarter,"Northern Quarter, Manchester",-2.237333333,53.4835,"American, Burger, Grill",50,Pounds(),No,No,No,No,3,4.9,Dark Green,Excellent,162 +6801963,Almost Famous Burgers,215,Manchester,"100-102 High Street, Northern Quarter, Manchester M4 1HP",Northern Quarter,"Northern Quarter, Manchester",-2.237033,53.484543,"Burger, American",40,Pounds(),No,No,No,No,3,4,Green,Very Good,86 +6801329,Home Sweet Home,215,Manchester,"49-51 Edge Street, Northern Quarter, Manchester M4 1HW",Northern Quarter,"Northern Quarter, Manchester",-2.236,53.48416667,"British, Burger, Cafe",30,Pounds(),No,No,No,No,2,4.1,Green,Very Good,82 +6801395,Teacup,215,Manchester,"55 Thomas Street, Northern Quarter, Manchester M4 1NA",Northern Quarter,"Northern Quarter, Manchester",-2.236507,53.484099,"British, Contemporary",45,Pounds(),No,No,No,No,3,4.1,Green,Very Good,98 +6800538,Archies,215,Manchester,"72 Oxford Road, University District, Oxford Road, Manchester M1 5NH",Oxford Road,"Oxford Road, Manchester",-2.241047,53.474221,"Fast Food, American",15,Pounds(),No,No,No,No,1,3.4,Orange,Average,25 +6800593,Zouk Tea Bar & Grill,215,Manchester,"The Quadrangle, Chester Street, Oxford Road, Manchester M1 5QS",Oxford Road,"Oxford Road, Manchester",-2.24042,53.472433,"Indian, Seafood",50,Pounds(),No,No,No,No,3,3.6,Yellow,Good,101 +6800908,Mughli,215,Manchester,"30 Wilmslow Road, Rusholme, Manchester M14 5TQ",Rusholme,"Rusholme, Manchester",-2.225333333,53.456,"Indian, Curry",35,Pounds(),No,No,No,No,2,4.5,Dark Green,Excellent,110 +6800678,Lahore,215,Manchester,"14-18 Wilmslow Road, Rusholme, Manchester M14 5TQ",Rusholme,"Rusholme, Manchester",-2.225333333,53.45583333,"Indian, Grill",25,Pounds(),No,No,No,No,2,3.7,Yellow,Good,48 +6800892,Gaucho,215,Manchester,"2A St Mary's Street, Spinningfields, Manchester M3 2LB",Spinningfields,"Spinningfields, Manchester",-2.247633,53.482261,"Argentine, American",80,Pounds(),No,No,No,No,4,4.5,Dark Green,Excellent,602 +6800263,Akbars,215,Manchester,"73-83 Liverpool Road, Spinningfields, Manchester M3 4NQ",Spinningfields,"Spinningfields, Manchester",-2.254833333,53.4765,Indian,30,Pounds(),No,No,No,No,2,4.2,Green,Very Good,383 +6801039,San Carlo,215,Manchester,"40-42 King Street West, Spinningfields, Manchester M3 2WY",Spinningfields,"Spinningfields, Manchester",-2.248848,53.481413,Italian,25,Pounds(),No,No,No,No,2,4.3,Green,Very Good,745 +6801873,Mr Cooper's House & Garden - The Midland,215,Manchester,"The Midland, Peter Street, Deansgate, Manchester M60 2DS","The Midland, Deansgate","The Midland, Deansgate, Manchester",-2.245034,53.477358,"European, Mediterranean, Contemporary",55,Pounds(),Yes,No,No,No,3,4.2,Green,Very Good,67 +6800782,The French by Simon Rogan - The Midland,215,Manchester,"The Midland, Peter Street, Deansgate, Manchester M60 2DS","The Midland, Deansgate","The Midland, Deansgate, Manchester",-2.245077,53.477154,French,160,Pounds(),No,No,No,No,4,4.3,Green,Very Good,114 +18426586,7st by Mumbai Spices,166,Doha,"Barwa Commercial Avenue, Near Thursday & Friday Market Building, Near F Ring Road, Main Industrial Area Road, Ain Khalid, Doha",Ain Khalid,"Ain Khalid, Doha",51.506825,25.224394,"Indian, Street Food",150,Qatari Rial(QR),No,No,No,No,4,3.4,Orange,Average,74 +6201976,Indian Coffee House,166,Doha,"Beside Le Mirage Suites, Fereej Abdul Aziz Street, Al Doha Al Jadeeda, Doha",Al Doha Al Jadeeda,"Al Doha Al Jadeeda, Doha",51.5210744,25.276109,Indian,80,Qatari Rial(QR),No,No,No,No,3,3.4,Orange,Average,350 +18107765,Zaffran Dining Experience,166,Doha,"Al Emadi Financial Square, C Ring Road, Al Hilal, Doha","Al Emadi Financial Square, Al Hilal","Al Emadi Financial Square, Al Hilal, Doha",51.5274557,25.2625016,Indian,300,Qatari Rial(QR),No,No,No,No,4,4.6,Dark Green,Excellent,348 +6201309,MRA Bakery Sweets & Restaurant,166,Doha,"Opposite Aster Pharmacy, Al Taei Street, Al Ghanim, Doha",Al Ghanim,"Al Ghanim, Doha",51.5369233,25.2802233,"Kerala, Indian, Chinese, Bakery",60,Qatari Rial(QR),No,No,No,No,3,4,Green,Very Good,322 +6201312,Zaoq,166,Doha,"Midmac Flyover, Salwa Road, Al Hilal, Doha",Al Hilal,"Al Hilal, Doha",51.498153,25.2641161,Pakistani,170,Qatari Rial(QR),No,No,No,No,4,4.2,Green,Very Good,189 +6200110,Aalishan,166,Doha,"Opposite Universal Cooling System, Ibn Seena Street, Al Muntazah, Doha",Al Muntazah,"Al Muntazah, Doha",51.5194969,25.2684026,"North Indian, Chinese, Turkish",100,Qatari Rial(QR),No,No,No,No,3,3.8,Yellow,Good,263 +6200383,Applebee's,166,Doha,"Opposite La Cigale Hotel, C Ring Road, Al Nasr, Doha",Al Nasr,"Al Nasr, Doha",51.5076178,25.2774224,"American, Tex-Mex",220,Qatari Rial(QR),No,No,No,No,4,3.8,Yellow,Good,155 +6202039,Mainland China Restaurant,166,Doha,"1st Floor, Barwa Towers, Suhaim Bin Hamad Street, Al Sadd, Doha","Barwa Towers, Al Sadd","Barwa Towers, Al Sadd, Doha",51.50505289,25.28599626,Chinese,250,Qatari Rial(QR),No,No,No,No,4,4.9,Dark Green,Excellent,182 +6201336,Ponderosa,166,Doha,"Caravan Complex, Ramada Junction, Salwa Road, Al Hilal, Doha","Caravan Complex, Al Hilal","Caravan Complex, Al Hilal, Doha",51.5104884,25.2709036,Steak,110,Qatari Rial(QR),No,No,No,No,3,3.6,Yellow,Good,115 +6202515,Gokul Gujarati Restaurant,166,Doha,"Opposite Masjid, Ibn Mahmoud Street, Fereej Bin Mahmoud, Doha",Fereej Bin Mahmoud,"Fereej Bin Mahmoud, Doha",51.5141453,25.2859356,Indian,50,Qatari Rial(QR),No,No,No,No,2,4.3,Green,Very Good,211 +17957917,The Manhattan FISH MARKET,166,Doha,"Mezzanine Floor, Ghanem Business Center, Opposite Ahli Bank, Fereej Bin Mahmoud, Doha","Ghanem Business Center, Fereej Bin Mahmoud","Ghanem Business Center, Fereej Bin Mahmoud, Doha",51.512682,25.274457,"Seafood, American",150,Qatari Rial(QR),No,No,No,No,4,4,Green,Very Good,180 +6201431,Coral - InterContinental Doha,166,Doha,"Lower Ground Floor, Hotel Intercontinental Doha, Al Isteqlal Road, Westbay, Doha","Hotel Intercontinental Doha, Westbay","Hotel Intercontinental Doha, Westbay, Doha",51.530046,25.348622,International,500,Qatari Rial(QR),No,No,No,No,4,3.7,Yellow,Good,58 +18425995,Texas Roadhouse,166,Doha,"Ground Floor, Mall Of Qatar, Dukhan Highway, Al Gharafa, Doha","Mall of Qatar, Al Gharafa","Mall of Qatar, Al Gharafa, Doha",51.3500471,25.3273326,"Steak, American",250,Qatari Rial(QR),No,No,No,No,4,4,Green,Very Good,41 +17957911,Punjab Restaurant,166,Doha,"Near Kahramaa Office, Al Adhwaa Street, Musheireb, Doha",Musheireb,"Musheireb, Doha",51.52302034,25.28246661,Pakistani,80,Qatari Rial(QR),No,No,No,No,3,3.8,Yellow,Good,83 +18295472,Gymkhana,166,Doha,"Ground Floor, Al Jomrok Boutique Hotel, Souq Waqif, Doha",Souq Waqif,"Souq Waqif, Doha",51.5333165,25.2894111,Indian,250,Qatari Rial(QR),Yes,No,No,No,4,4.7,Dark Green,Excellent,114 +6201972,Eatopia,166,Doha,"2nd Floor, The Gate Mall, Dafna, Doha","The Gate, Dafna","The Gate, Dafna, Doha",51.526653,25.3232606,"European, Arabian, Japanese, Bakery, Desserts",200,Qatari Rial(QR),No,No,No,No,4,3.9,Yellow,Good,197 +6201130,Vine - The St. Regis,166,Doha,"1st Floor, The St. Regis Hotel, Westbay, Doha","The St. Regis, Westbay","The St. Regis, Westbay, Doha",51.530127,25.350325,International,550,Qatari Rial(QR),No,No,No,No,4,4.4,Green,Very Good,67 +18261203,Sabai Thai - The Westin Doha Hotel & Spa,166,Doha,"Ground Floor, The Westin Doha Hotel & Spa, Fereej Bin Mahmoud, Doha","The Westin Doha Hotel & Spa, Fereej Bin Mahmoud","The Westin Doha Hotel & Spa, Fereej Bin Mahmoud, Doha",51.512909,25.27618,Thai,445,Qatari Rial(QR),No,No,No,No,4,4.3,Green,Very Good,73 +6201360,Paper Moon,166,Doha,"Beside Jarir Bookstore, Jaidah Square, Al Matar Street, Umm Ghuwailina, Doha",Umm Ghuwailina,"Umm Ghuwailina, Doha",51.54457591,25.27301974,Italian,400,Qatari Rial(QR),No,No,No,No,4,4.5,Dark Green,Excellent,145 +18318801,Roti & Boti,166,Doha,"Showroom #10, Al Emadi Suites, Ras Abu Aboud Street, Umm Ghuwailina, Doha",Umm Ghuwailina,"Umm Ghuwailina, Doha",51.546714,25.2830109,Indian,160,Qatari Rial(QR),No,No,No,No,4,3.9,Yellow,Good,109 +18395463,The Butcher's Wife,189,Cape Town,"15 Belgravia Road, Athlone, Cape Town",Athlone,"Athlone, Cape Town",18.51440571,-33.96466043,"Pizza, Grill",294,Rand(R),No,No,No,No,3,3.7,Yellow,Good,22 +18337845,Coco Safar,189,Cape Town,"Ground Floor, Cavendish Square, Claremont, Cape Town","Cavendish Square, Claremont","Cavendish Square, Claremont, Cape Town",18.46489381,-33.97975702,"Cafe, Patisserie",300,Rand(R),No,No,No,No,4,4.1,Green,Very Good,88 +6401732,La Parada,189,Cape Town,"107 Bree Street, CBD, Cape Town",CBD,"CBD, Cape Town",18.41789313,-33.92154333,"Spanish, Tapas",360,Rand(R),No,No,No,No,4,3.7,Yellow,Good,255 +6401060,Jason Bakery,189,Cape Town,"185 Bree Street, CBD, Cape Town",CBD,"CBD, Cape Town",18.41457088,-33.92451515,"Cafe, Bakery",180,Rand(R),No,No,No,No,2,4.2,Green,Very Good,266 +6400421,Truth Coffee,189,Cape Town,"36 Buitenkant Street, CBD, Cape Town",CBD,"CBD, Cape Town",18.42286024,-33.92849643,Cafe,150,Rand(R),No,No,No,No,2,4.4,Green,Very Good,514 +6402177,Salushi,189,Cape Town,"25 Protea Road, Claremont, Cape Town",Claremont,"Claremont, Cape Town",18.462423,-33.978602,"Japanese, Sushi, Asian",250,Rand(R),No,No,No,No,3,3.9,Yellow,Good,239 +6401198,Origin Coffee Roasting,189,Cape Town,"28 Hudson Street, De Waterkant, Cape Town",De Waterkant,"De Waterkant, Cape Town",18.41766667,-33.91733333,"Cafe, Bakery, Tea, Vegetarian",200,Rand(R),No,No,No,No,3,4,Green,Very Good,185 +6401054,Kloof Street House,189,Cape Town,"30 Kloof Street, Gardens, Cape Town",Gardens,"Gardens, Cape Town",18.4125,-33.9285,Mediterranean,350,Rand(R),No,No,No,No,4,4.5,Dark Green,Excellent,356 +6403291,Jerry's Burger Bar,189,Cape Town,"5 Park Road, Kloof Street, Gardens, Cape Town",Gardens,"Gardens, Cape Town",18.410769,-33.929022,"Burger, American",250,Rand(R),No,No,No,No,3,4.4,Green,Very Good,281 +6403499,Active Sushi,189,Cape Town,"32 Hudson Street, Mirage Building, Green Point, Cape Town",Green Point,"Green Point, Cape Town",18.417566,-33.917258,Sushi,250,Rand(R),No,No,No,No,3,3.8,Yellow,Good,127 +6400191,Beluga,189,Cape Town,"The Foundry, Prestwich Street, Green Point, Cape Town",Green Point,"Green Point, Cape Town",18.418015,-33.912585,"Seafood, Asian, Grill, Sushi",500,Rand(R),No,No,No,No,4,3.8,Yellow,Good,619 +6404082,Rocomamas,189,Cape Town,"107a Main Road, Green Point, Cape Town",Green Point,"Green Point, Cape Town",18.409153,-33.907776,"Burger, Fast Food, Grill",250,Rand(R),No,No,No,No,3,3.6,Yellow,Good,131 +6401485,The Creamery,189,Cape Town,"Newlands Quarter, Dean Street, Newlands, Cape Town",Newlands,"Newlands, Cape Town",18.46195,-33.970286,"Desserts, Ice Cream",110,Rand(R),No,No,No,No,2,4.5,Dark Green,Excellent,328 +6400621,Nobu - One&Only,189,Cape Town,"One & Only Hotel, Dock Road, V & A Waterfront, Cape Town","One and Only Hotel, V & A Waterfront","One and Only Hotel, V & A Waterfront, Cape Town",18.416435,-33.908603,"Japanese, Asian, Seafood, Sushi",535,Rand(R),Yes,No,No,No,4,4,Green,Very Good,110 +6403544,Jarryds,189,Cape Town,"90 Regent Road, Sea Point, Cape Town",Sea Point,"Sea Point, Cape Town",18.381997,-33.921453,"Cafe, Burger",230,Rand(R),No,No,No,No,3,4.8,Dark Green,Excellent,319 +6403452,My Sugar,189,Cape Town,"77 Regent Road, Sea Point, Cape Town",Sea Point,"Sea Point, Cape Town",18.382759,-33.921692,"Cafe, Patisserie, Bakery, Desserts",125,Rand(R),No,No,No,No,2,4.4,Green,Very Good,157 +6402163,Grand Caf & Beach,189,Cape Town,"Granger Bay Road, Granger Bay, V & A Waterfront, Cape Town",V & A Waterfront,"V & A Waterfront, Cape Town",18.415163,-33.901746,"Seafood, African, Sushi",450,Rand(R),No,No,No,No,4,3.8,Yellow,Good,280 +6401789,tashas,189,Cape Town,"Ground Level, Victoria Wharf, V & A Waterfront, Cape Town",V & A Waterfront,"V & A Waterfront, Cape Town",18.421341,-33.902336,"Cafe, Mediterranean",320,Rand(R),No,No,No,No,4,4.1,Green,Very Good,374 +6400235,Gibson's Gourmet Burgers & Ribs,189,Cape Town,"Shop 157, Lower Level, Victoria Wharf, V & A Waterfront, Cape Town","Victoria Wharf, V & A Waterfront","Victoria Wharf, V & A Waterfront, Cape Town",18.42030041,-33.9042665,"Burger, American, Grill",270,Rand(R),No,No,No,No,3,4.1,Green,Very Good,298 +6400217,Willoughby & Co.,189,Cape Town,"Ground Level, Victoria Wharf, V & A Waterfront, Cape Town","Victoria Wharf, V & A Waterfront","Victoria Wharf, V & A Waterfront, Cape Town",18.421,-33.90416667,"Seafood, Japanese, Sushi",570,Rand(R),No,No,No,No,4,4.4,Green,Very Good,466 +6501534,Cube - Tasting Kitchen,189,Inner City,"24 Albrecht Road, Maboneng Precinct, City and Suburban, Inner City",City and Suburban,"City and Suburban, Inner City",28.060192,-26.203278,"European, Contemporary",1540,Rand(R),No,No,No,No,4,4.9,Dark Green,Excellent,441 +18339373,Urbanologi,189,Inner City,"1 Fox Street, Marshalltown, Inner City, Johannesburg",Marshalltown,"Marshalltown, Inner City",28.031863,-26.207091,Tapas,700,Rand(R),No,No,No,No,4,4.9,Dark Green,Excellent,194 +6517396,Momo Baohaus,189,Johannesburg,"139 Greenway, Greenside, Johannesburg",Greenside,"Greenside, Johannesburg",28.011059,-26.14658,"Asian, Sushi, Tapas",300,Rand(R),No,No,No,No,4,4.3,Green,Very Good,180 +6502688,Craft,189,Johannesburg,"33, 4th Avenue corner of 13th street, Parkhurst, Johannesburg",Parkhurst,"Parkhurst, Johannesburg",28.017548,-26.138396,"European, Pizza",350,Rand(R),No,No,No,No,4,4.1,Green,Very Good,1207 +6515130,Hudsons,189,Johannesburg,"Corner 4th Avenue & 14th Street, Parkhurst, Johannesburg",Parkhurst,"Parkhurst, Johannesburg",28.018022,-26.137391,"Burger, Finger Food, Pizza",350,Rand(R),No,No,No,No,4,4,Green,Very Good,861 +6502341,The Wolfpack,189,Johannesburg,"21, 4th Avenue, Parkhurst, Johannesburg",Parkhurst,"Parkhurst, Johannesburg",28.017146,-26.140464,"American, Burger",350,Rand(R),No,No,No,No,4,4.1,Green,Very Good,1024 +6516766,The National,189,Johannesburg,"19, 4th Avenue, Parktown North, Johannesburg",Parktown North,"Parktown North, Johannesburg",28.025193,-26.1440716,American,515,Rand(R),Yes,No,No,No,4,4.2,Green,Very Good,212 +18370704,Marble,189,Johannesburg,"Corner Jan Smuts Avenue & Jellicoe Avenue, Rosebank, Johannesburg",Rosebank,"Rosebank, Johannesburg",28.03619944,-26.14338814,"Continental, South African, Beverages, Desserts, Seafood, Grill, Ice Cream, International",955,Rand(R),No,No,No,No,4,4.5,Dark Green,Excellent,222 +75027,Kream,189,Pretoria,"570 Fehrsen Street, Brooklyn, Pretoria",Brooklyn,"Brooklyn, Pretoria",28.23604667,-25.77074833,African,450,Rand(R),No,No,No,No,4,4.7,Dark Green,Excellent,373 +18199767,Carbon Bistro,189,Pretoria,"279 Dey Street, Brooklyn, Pretoria",Brooklyn,"Brooklyn, Pretoria",28.230606,-25.772304,"Burger, Steak, Seafood",360,Rand(R),No,No,No,No,4,4.1,Green,Very Good,84 +75031,Geet Indian Restaurant,189,Pretoria,"541 Fehrsen Street, Nieuw Muckleneuk, Brooklyn, Pretoria",Brooklyn,"Brooklyn, Pretoria",28.235482,-25.771335,Indian,320,Rand(R),No,No,No,No,4,4.4,Green,Very Good,147 +75728,Blos Cafe,189,Pretoria,"66 Olympus street, Faerie Glen, Pretoria",Faerie Glen,"Faerie Glen, Pretoria",28.331763,-25.798167,"Cafe, Burger, Tapas, South African, European, Grill",390,Rand(R),No,No,No,No,4,3.9,Yellow,Good,150 +18445944,The Belgian Triple,189,Pretoria,"Olympus Village, Corner Olympus Dr And Achilles Road, Faerie Glen, Pretoria",Faerie Glen,"Faerie Glen, Pretoria",28.33247088,-25.79850294,"Healthy Food, Seafood, Beverages, Belgian, Contemporary, Desserts, Finger Food, International",500,Rand(R),No,No,No,No,4,4.2,Green,Very Good,20 +18199742,El Pistolero,189,Pretoria,"Corner Duvernoy and Chopin Street, Garsfontein, Pretoria",Garsfontein,"Garsfontein, Pretoria",28.287114,-25.80283,Mexican,300,Rand(R),No,No,No,No,4,4.3,Green,Very Good,116 +18238595,Brooklyn Brothers,189,Pretoria,"Glenfair Boulevard, Corner Lynnwood & Daventry Road, Lynnwood Manor, Lynnwood, Pretoria","Glenfair Boulevard, Lynnwood ","Glenfair Boulevard, Lynnwood , Pretoria",28.280437,-25.765656,"Burger, American, Beverages",300,Rand(R),No,No,No,No,4,3.8,Yellow,Good,57 +75609,Capital Craft Beer Academy,189,Pretoria,"Greenlyn Village, Shop 20, 13th Street, Menlo Park, Near, Lynnwood, Pretoria","Greenlyn Village, Menlopark, Near Lynnwood","Greenlyn Village, Menlopark, Near Lynnwood, Pretoria",28.25643333,-25.76973333,"Street Food, Burger, American, Finger Food, German",200,Rand(R),No,No,No,No,3,4.4,Green,Very Good,301 +18318846,Spice - The Indian Kitchen,189,Pretoria,"Lynridge Mall, 1 Jacobson Drive, Lynnwood, Pretoria",Lynnwood,"Lynnwood, Pretoria",28.298357,-25.765752,"Indian, Asian, Durban, International, Desserts",320,Rand(R),No,No,No,No,4,4.3,Green,Very Good,43 +75380,The Black Bamboo,189,Pretoria,"Menlyn Boutique Hotel, 209 Tugela Road, Ashlea Gardens, Near Menlyn, Menlyn, Pretoria","Menlyn Boutique Hotel, Menlyn","Menlyn Boutique Hotel, Menlyn, Pretoria",28.270627,-25.780358,Continental,600,Rand(R),No,No,No,No,4,4.4,Green,Very Good,84 +18376948,Old Town Italy,189,Pretoria,"Shop 53, Menlyn Maine, Central Square, 180 Amarand Avenue, Waterkloof Glen, Pretoria","Menlyn Maine, Waterkloof Glen","Menlyn Maine, Waterkloof Glen, Pretoria",28.283896,-25.786067,"Cafe, Italian, Pizza, European, Bakery, Deli",400,Rand(R),No,No,No,No,4,3.9,Yellow,Good,153 +75104,Parrot's,189,Pretoria,"Menlyn Shopping Centre, Corner of Atterbury Road & Lois Avenue, Menlyn, Pretoria","Menlyn Shopping Centre, Menlyn","Menlyn Shopping Centre, Menlyn, Pretoria",28.275316,-25.783539,"Contemporary, Sushi, Grill, Italian, Steak",200,Rand(R),No,No,No,No,3,3.4,Orange,Average,111 +75026,Baobab Cafe & Grill,189,Pretoria,"Menlyn Shopping Centre, Level 1, Corner of Atterbury Road & Lois Avenue, Menlyn, Pretoria","Menlyn Shopping Centre, Menlyn","Menlyn Shopping Centre, Menlyn, Pretoria",28.275005,-25.782735,"Cafe, Grill",410,Rand(R),No,No,No,No,4,4,Green,Very Good,235 +75576,Harissa Bistro,189,Pretoria,"The Club Centre, Corner of Pinaster Avenue & 18th Street, Hazelwood, Near Waterkloof, Pretoria","The Club Centre, Hazelwood, Near Waterkloof","The Club Centre, Hazelwood, Near Waterkloof, Pretoria",28.257131,-25.778387,"European, South African, Steak",450,Rand(R),No,No,No,No,4,4.5,Dark Green,Excellent,287 +75764,Life Grand Cafe,189,Pretoria,"The Club Centre, Corner of Pinaster Avenue & 18th Street, Hazelwood, Near, Waterkloof, Pretoria","The Club Centre, Hazelwood, Near Waterkloof","The Club Centre, Hazelwood, Near Waterkloof, Pretoria",28.256922,-25.777898,"Italian, Mediterranean, Sushi, Desserts",400,Rand(R),No,No,No,No,4,4.1,Green,Very Good,232 +75132,Crawdaddy's,189,Pretoria,"Waterglen Shopping Centre, Corner of Garsfontein Road & January Masilela Drive, Waterkloof Glen, Pretoria","Waterglen Shopping Centre, Garsfontein","Waterglen Shopping Centre, Garsfontein, Pretoria",28.28159167,-25.79399333,"Continental, Seafood, Burger, South African, Finger Food, Grill",250,Rand(R),No,No,No,No,3,4,Green,Very Good,158 +18289339,Culture Club - Bar De Tapas,189,Pretoria,"15, 16th Street, Waterkloof, Pretoria 0081",Waterkloof,"Waterkloof, Pretoria",28.255682,-25.775823,"Cafe, Tapas, South African, Beverages, Healthy Food, Desserts, Spanish",285,Rand(R),No,No,No,No,3,4.5,Dark Green,Excellent,97 +75683,23 On Hazelwood,189,Pretoria,"23 Hazelwood Road, Menlo Park, Near, Waterkloof, Pretoria",Waterkloof,"Waterkloof, Pretoria",28.257074,-25.775722,"Street Food, Continental, Burger, Grill",250,Rand(R),No,No,No,No,3,3.9,Yellow,Good,135 +18136493,Hogshead,189,Pretoria,"Corner Dely & Pinaster Roads, Hazelwood, Waterkloof, Pretoria",Waterkloof,"Waterkloof, Pretoria",28.25626243,-25.7779816,"Grill, Burger",250,Rand(R),No,No,No,No,3,4.1,Green,Very Good,258 +75989,Restaurant Mosaic @ The Orient,189,Pretoria,"The Orient Boutique Hotel, Crocodile River Valley, Elandsfontein, Near West Park, Pretoria",West Park,"West Park, Pretoria",27.999097,-25.761238,French,3210,Rand(R),No,No,No,No,4,4.9,Dark Green,Excellent,85 +6502134,The Whippet,189,Randburg,"Corner of 7th Street and 4th Avenue, Linden, Randburg 2195",Linden,"Linden, Randburg",27.991791,-26.14026,Cafe,200,Rand(R),No,No,No,No,3,4.3,Green,Very Good,618 +18204217,Gemelli Cucina Bar,189,Sandton,"13 Posthouse Link Centre, Corner Main & Posthouse Street, Bryanston, Johannesburg Sandton, Bryanston, Sandton",Bryanston,"Bryanston, Sandton",28.02302878,-26.05198229,"Contemporary, Italian",450,Rand(R),No,No,No,No,4,4.8,Dark Green,Excellent,542 +6502852,Social on Main,189,Sandton,"Shop 1, Posthouse Centre, Corner Main Road & Posthouse Street, Bryanston, Sandton 2021",Bryanston,"Bryanston, Sandton",28.023143,-26.052744,"Contemporary, Burger, European",250,Rand(R),No,No,No,No,3,4,Green,Very Good,504 +6515339,Cafe Del Sol Botanico,189,Sandton,"Bryanston Shopping Centre, Corner of William Nicol & Ballyclare Dr, Bryanston, Sandton, Bryanston, Johannesburg","Bryanston Shopping Centre, Bryanston","Bryanston Shopping Centre, Bryanston, Sandton",28.027725,-26.074876,"Italian, Pizza, Beverages, Desserts, Grill, Seafood",400,Rand(R),No,No,No,No,4,4.4,Green,Very Good,499 +6502883,Perron,189,Sandton,"Illovo Junction, Corner Oxford Road and Corlett Drive, Illovo, Sandton",Illovo,"Illovo, Sandton",28.04833811,-26.13493464,Mexican,250,Rand(R),No,No,No,No,3,4.2,Green,Very Good,581 +6517568,Jamie's Italian,189,Sandton,"Shop 00513, Building 13, High Street, Melrose Arch, Sandton","Melrose Arch, Melrose ","Melrose Arch, Melrose , Sandton",28.068062,-26.13233,Italian,400,Rand(R),No,No,No,No,4,4.1,Green,Very Good,251 +6516831,The Big Mouth,189,Sandton,"Nelson Mandela Square, Corner Maude & 5th Streets, Sandown, Sandton","Nelson Mandela Square, Sandown","Nelson Mandela Square, Sandown, Sandton",28.05466667,-26.1075,"Grill, Steak, Burger, Sushi, Tapas",400,Rand(R),No,No,No,No,4,4.3,Green,Very Good,430 +6501141,Licorish Bistro,189,Sandton,"Nicolway Shopping Centre, William Nicol Drive, Bryanston, Sandton","Nicolway Shopping Centre, Bryanston","Nicolway Shopping Centre, Bryanston, Sandton",28.021,-26.05233333,"European, South African",545,Rand(R),No,No,No,No,4,4.6,Dark Green,Excellent,892 +6516432,Salsa Mexican Grill,189,Sandton,"Pineslopes Shopping Centre, Corner of Witkoppen Drive & The Straight, Fourways, Sandton","Pineslopes Shopping Centre, Fourways","Pineslopes Shopping Centre, Fourways, Sandton",28.014375,-26.021111,Mexican,330,Rand(R),No,No,No,No,4,4.3,Green,Very Good,488 +6517404,The Smokehouse and Grill,189,Sandton,"Pineslopes Shopping Centre, Corner of Witkoppen Drive & The Straight, Fourways, Sandton","Pineslopes Shopping Centre, Fourways","Pineslopes Shopping Centre, Fourways, Sandton",28.014749,-26.021362,Steak,300,Rand(R),No,No,No,No,4,4.4,Green,Very Good,90 +6515135,Escondido Tapas,189,Sandton,"Post Office Centre, Corner of Rudd Road and Otto Street, Illovo, Sandton","Post Office Center, Illovo","Post Office Center, Illovo, Sandton",28.050845,-26.129002,Mediterranean,450,Rand(R),No,No,No,No,4,4.4,Green,Very Good,743 +6502857,Remo's Maximilliano,189,Sandton,"Waterfall Corner Mall, Corner of Maxwell & Woodmead Drives, Woodmead, Sandton","Waterfall Corner Mall, Midrand","Waterfall Corner Mall, Midrand, Sandton",28.089878,-26.02172,"Italian, Pizza",360,Rand(R),No,No,No,No,4,3.8,Yellow,Good,390 +5800557,Chinese Dragon Cafe,191,Colombo,"11, Milagiriya Avenue, Bambalapitiya, Colombo 04","Bambalapitiya, Colombo 04","Bambalapitiya, Colombo 04, Colombo",79.85667843,6.88634086,Chinese,2000,Sri Lankan Rupee(LKR),No,No,No,No,3,3.4,Orange,Average,118 +5800634,Elite Indian Restaurant,191,Colombo,"124, New Bullers Road, Bambalapitiya, Colombo 04","Bambalapitiya, Colombo 04","Bambalapitiya, Colombo 04, Colombo",79.8578301,6.8960838,"North Indian, Chinese, Sri Lankan",1800,Sri Lankan Rupee(LKR),No,No,No,No,2,2.4,Red,Poor,240 +5800567,CIOCONAT Lounge,191,Colombo,"107, Barnes Place, Cinnamon Gardens, Colombo 07","Cinnamon Gardens, Colombo 07","Cinnamon Gardens, Colombo 07, Colombo",79.87511359,6.91280628,"Italian, Cafe, Desserts",2500,Sri Lankan Rupee(LKR),No,No,No,No,3,3.7,Yellow,Good,157 +5800891,The Paddington,191,Colombo,"36, Barnes Place, Cinnamon Gardens, Colombo 07","Cinnamon Gardens, Colombo 07","Cinnamon Gardens, Colombo 07, Colombo",79.86849167,6.913291667,"Cafe, Italian",2000,Sri Lankan Rupee(LKR),No,No,No,No,3,3.6,Yellow,Good,83 +5800590,The Commons,191,Colombo,"39 A, Flower Road, Cinnamon Gardens, Colombo 07","Cinnamon Gardens, Colombo 07","Cinnamon Gardens, Colombo 07, Colombo",79.8581047,6.908536272,"Cafe, Sri Lankan, Continental, American",2500,Sri Lankan Rupee(LKR),No,No,No,No,3,4,Green,Very Good,209 +5800755,Upali's,191,Colombo,"65, C.W.W Kannangara Mawatha, Near Town Hall, Cinnamon Gardens, Colombo 07","Cinnamon Gardens, Colombo 07","Cinnamon Gardens, Colombo 07, Colombo",79.86472741,6.912529358,Sri Lankan,2500,Sri Lankan Rupee(LKR),No,No,No,No,3,4,Green,Very Good,114 +5800515,Malay Restaurant,191,Colombo,"115, Hill Street, Dehiwala, Colombo","Dehiwala, Colombo","Dehiwala, Colombo, Colombo",79.87088978,6.850283043,"Malaysian, North Indian, Sri Lankan",1500,Sri Lankan Rupee(LKR),No,No,No,No,2,3.5,Yellow,Good,80 +5800746,T.G.I. Friday's,191,Colombo,"23, Canal Row, Fort, Colombo 01","Fort, Colombo 01","Fort, Colombo 01, Colombo",79.843575,6.932547222,"American, Steak",4000,Sri Lankan Rupee(LKR),No,No,No,No,4,4,Green,Very Good,166 +5800718,Simply Strawberries By Jagro,191,Colombo,"131, Vijaya Kumaratunge Mawathu, Havelock Town, Colombo 05","Havelock Town, Colombo 05","Havelock Town, Colombo 05, Colombo",79.87943333,6.883738889,"Juices, Desserts",1300,Sri Lankan Rupee(LKR),No,No,No,No,2,4.5,Dark Green,Excellent,146 +5800758,Cafe Shaze,191,Colombo,"65, Thimbirigasaya Road, Havelock Town, Colombo 05","Havelock Town, Colombo 05","Havelock Town, Colombo 05, Colombo",79.86563889,6.890905556,"Cafe, Fast Food, Beverages",3500,Sri Lankan Rupee(LKR),No,No,No,No,3,3.8,Yellow,Good,81 +5800156,Queen's Cafe,191,Colombo,"417, Duplication Road, Kollupitiya, Colombo 03","Kollupitiya, Colombo 03","Kollupitiya, Colombo 03, Colombo",79.85581944,6.899175,"American, Chinese, North Indian",2000,Sri Lankan Rupee(LKR),No,No,No,No,3,2.5,Orange,Average,93 +5801078,Arabian Knights,191,Colombo,"377, Opposite Amana Bank, Galle Road, Kollupitiya, Colombo 03","Kollupitiya, Colombo 03","Kollupitiya, Colombo 03, Colombo",79.852248,6.904392,"Middle Eastern, Arabian",2400,Sri Lankan Rupee(LKR),No,No,No,No,3,4.2,Green,Very Good,158 +5801970,Butter Boutique,191,Colombo,"34, 27th Lane, Kollupitiya, Colombo 03","Kollupitiya, Colombo 03","Kollupitiya, Colombo 03, Colombo",79.856148,6.90686,"Desserts, Bakery",1000,Sri Lankan Rupee(LKR),No,No,No,No,2,4.2,Green,Very Good,49 +5800144,Carnival Ice Cream,191,Colombo,"263, Galle Road, Near NSB ATM, Kollupitiya, Colombo 03","Kollupitiya, Colombo 03","Kollupitiya, Colombo 03, Colombo",79.85007349,6.910538311,"Desserts, Ice Cream",1000,Sri Lankan Rupee(LKR),No,No,No,No,2,4.1,Green,Very Good,122 +5800316,Cricket Club Cafe,191,Colombo,"12 Flower Road, Kollupitiya, Colombo 03","Kollupitiya, Colombo 03","Kollupitiya, Colombo 03, Colombo",0,0,"Continental, American, Seafood",3000,Sri Lankan Rupee(LKR),No,No,No,No,3,4.2,Green,Very Good,171 +5800710,The Manhattan Fish Market,191,Colombo,"31, Deal Place, Off R.A. De Mel Mawatha, Kollupitiya, Colombo 03","Kollupitiya, Colombo 03","Kollupitiya, Colombo 03, Colombo",79.85336389,6.906813889,"Seafood, Italian",4500,Sri Lankan Rupee(LKR),No,No,No,No,4,4,Green,Very Good,196 +5800433,The Sizzle,191,Colombo,"32, Walukarama Road, Kollupitiya, Colombo 03","Kollupitiya, Colombo 03","Kollupitiya, Colombo 03, Colombo",79.85292778,6.904580556,"American, Fast Food, Steak, Beverages",3000,Sri Lankan Rupee(LKR),No,No,No,No,3,4.2,Green,Very Good,286 +5800176,Ministry of Crab,191,Colombo,"Old Colombo Dutch Hospital, Fort, Colombo 01","Old Dutch Hospital, Fort","Old Dutch Hospital, Fort, Colombo",79.84423889,6.932813889,Seafood,4000,Sri Lankan Rupee(LKR),No,No,No,No,4,4.9,Dark Green,Excellent,203 +5801321,Cafe Beverly,191,Colombo,"475/C, Sri Jayawardenapura Mawatha, Welikada, Rajagiriya, Colombo","Rajagiriya, Colombo","Rajagiriya, Colombo, Colombo",79.90294117,6.906814811,"Continental, American",2000,Sri Lankan Rupee(LKR),No,No,No,No,3,4.1,Green,Very Good,58 +5800612,Burger's King,191,Colombo,"1, Vellons Passage, Slave Island, Colombo 02","Slave Island, Colombo 02","Slave Island, Colombo 02, Colombo",79.85074807,6.923933284,Fast Food,1000,Sri Lankan Rupee(LKR),No,No,No,No,2,4.1,Green,Very Good,199 +6001980,Timboo Cafe,208,Ankara,"Armada AVM, Kat -1, Eskiehir Yolu, No 6, Yenimahalle, Ankara","Armada AVM, S__t_z_, Yenimahalle","Armada AVM, S__t_z_, Yenimahalle, Ankara",32.80924722,39.91320556,Cafe,70,Turkish Lira(TL),No,No,No,No,3,4.2,Green,Very Good,134 +6000168,Hattena Hatay Sofras۱,208,Ankara,"Balgat Mahallesi, Osmanl۱ Caddesi, No 41/A, ankaya, Ankara",Balgat,"Balgat, Ankara",32.82121389,39.90597222,Kebab,70,Turkish Lira(TL),No,No,No,No,3,4.6,Dark Green,Excellent,124 +6000447,Masaba۱ Kebap_۱s۱,208,Ankara,"Balgat Mahallesi, Ziyabey Caddesi, No 35, ankaya, Ankara",Balgat,"Balgat, Ankara",32.8203,39.91069722,"Kebab, Turkish Pizza",100,Turkish Lira(TL),No,No,No,No,3,4.2,Green,Very Good,212 +6004408,Turta Home Cafe,208,Ankara,"Mutlukent Mahallesi, 1944. Cadde, 1948. Sokak, No 15, ankaya, Ankara",ayyolu,"ayyolu, Ankara",32.70474167,39.89479444,"Cafe, Desserts",35,Turkish Lira(TL),No,No,No,No,2,4.3,Green,Very Good,126 +6003426,Liva,208,Ankara,"ukurambar Mahallesi, Muhsin Yaz۱c۱olu Caddesi, No 3, ankaya, Ankara",ukurambar,"ukurambar, Ankara",32.809146,39.904709,"Patisserie, Coffee and Tea",50,Turkish Lira(TL),No,No,No,No,2,3.4,Orange,Average,115 +6000549,Mehur Tavac۱ Recep Usta,208,Ankara,"G_zeltepe Mahallesi, Dikmen Vadisi, Hodere Girii, ankaya, Ankara",Dikmen,"Dikmen, Ankara",32.84618889,39.88487222,Kebab,100,Turkish Lira(TL),No,No,No,No,3,4.5,Dark Green,Excellent,231 +6000871,ukuraa Sofras۱,208,Ankara,"Emek Mahallesi, Bosna Hersek Caddesi, No 22/C, ankaya, Ankara",Emek,"Emek, Ankara",32.81883333,39.91666667,"Kebab, Izgara",60,Turkish Lira(TL),No,No,No,No,3,4.4,Green,Very Good,296 +6004011,Gaga Manjero,208,Ankara,"Gazi Osman Paa Mahallesi, Filistin Caddesi, No 21, ankaya, Ankara",Gazi Osman Paa,"Gazi Osman Paa, Ankara",32.8698,39.89823889,World Cuisine,80,Turkish Lira(TL),No,No,No,No,3,4.9,Dark Green,Excellent,95 +6000409,Cafemiz,208,Ankara,"Gaziosmanpaa Mahallesi, Arjantin Caddesi, No 19, ankaya, Ankara",Gazi Osman Paa,"Gazi Osman Paa, Ankara",32.86568333,39.89787222,"World Cuisine, Mexican, Italian",150,Turkish Lira(TL),No,No,No,No,4,4.4,Green,Very Good,115 +6000019,Nusr-Et,208,Ankara,"Gaziosmanpaa Mahallesi, _ehit _mer Haluk Sipahiolu Sokak, No 8, ankaya, Ankara",Gazi Osman Paa,"Gazi Osman Paa, Ankara",32.86483333,39.89966667,Steak,400,Turkish Lira(TL),No,No,No,No,4,4.1,Green,Very Good,97 +6001537,Kebap 49,208,Ankara,"Remzi Ouz Ar۱k Mahallesi, Tunal۱ Hilmi Caddesi, B_lten Sokak, No 5, ankaya, Ankara",Kavakl۱dere,"Kavakl۱dere, Ankara",32.86014444,39.90727222,"Kebab, Turkish Pizza",60,Turkish Lira(TL),No,No,No,No,3,4.3,Green,Very Good,106 +6003668,Timboo Cafe,208,Ankara,"Kentpark AVM, Kat -1, Mustafa Kemal Mahallesi, Eskiehir Yolu 7.km, No 164, ankaya, Ankara","Kentpark AVM, niversiteler, ankaya","Kentpark AVM, niversiteler, ankaya, Ankara",32.776255,39.908957,Cafe,70,Turkish Lira(TL),No,No,No,No,3,4.2,Green,Very Good,79 +6001748,Mehur _z_elik Aspava,208,Ankara,"K___k Esat Mahallesi, Esat Caddesi, No 110/C, ankaya, Ankara",K___k Esat,"K___k Esat, Ankara",32.86663333,39.90663611,"Kebab, Turkish Pizza",40,Turkish Lira(TL),No,No,No,No,2,4.6,Dark Green,Excellent,109 +6001757,Y۱ld۱z Aspava,208,Ankara,"K___k Esat Mahallesi, Esat Caddesi, No 110/25, ankaya, Ankara",K___k Esat,"K___k Esat, Ankara",32.86660833,39.90656944,"Kebab, Turkish Pizza, D_ner",50,Turkish Lira(TL),No,No,No,No,2,4.4,Green,Very Good,72 +6000747,The Bigos,208,Ankara,"Mahallesi, Selanik 2 Caddesi, No 61/A, ankaya, Ankara",K۱z۱lay,"K۱z۱lay, Ankara",32.85791667,39.91668611,Cafe,80,Turkish Lira(TL),No,No,No,No,3,3.8,Yellow,Good,123 +6002025,Masaba۱,208,Ankara,"Kocatepe Mahallesi, Mithatpaa Caddesi, No 62/A, ankaya, Ankara",K۱z۱lay,"K۱z۱lay, Ankara",32.85986667,39.91914444,"Kebab, Turkish Pizza",100,Turkish Lira(TL),No,No,No,No,3,4.2,Green,Very Good,103 +6003879,Zigana Pide,208,Ankara,"Macun Mahallesi, Erciyes yerleri Sitesi, 201. Cadde, No 6, Yenimahalle, Ankara",Macunk_y,"Macunk_y, Ankara",32.76337778,39.94627778,Turkish Pizza,50,Turkish Lira(TL),No,No,No,No,2,4.3,Green,Very Good,103 +6004089,D_verolu,208,Ankara,"Maltepe Mahallesi, Gen_lik Caddesi, No 28, ankaya, Ankara",Maltepe,"Maltepe, Ankara",32.84274167,39.92253611,"Kebab, Desserts, Turkish Pizza",70,Turkish Lira(TL),No,No,No,No,3,4.4,Green,Very Good,131 +6000921,D_verolu,208,Ankara,"mitk_y Mahallesi, 2432. Cadde (8. Cadde), No 113, ankaya, Ankara",mitk_y,"mitk_y, Ankara",32.701775,39.89156389,"Kebab, Desserts, Turkish Pizza",70,Turkish Lira(TL),No,No,No,No,3,4.2,Green,Very Good,152 +6004813,Pizza l Forno,208,Ankara,"Y۱ld۱zevler Mahallesi, 720. Sokak, No 2/B, ankaya, Ankara",Y۱ld۱zevler,"Y۱ld۱zevler, Ankara",32.86021667,39.87623889,Pizza,40,Turkish Lira(TL),No,No,No,No,2,4.7,Dark Green,Excellent,104 +5904116,J'adore Chocolatier,208,stanbul,"Asmal۱mescit Mahallesi, stiklal Caddesi, Emir Nevruz Sokak, No 2/H, Beyolu, stanbul",Asmal۱mescit,"Asmal۱mescit, stanbul",28.97612661,41.03300186,Desserts,50,Turkish Lira(TL),No,No,No,No,2,4.7,Dark Green,Excellent,1311 +5901782,Starbucks,208,stanbul,"Bebek Mahallesi, Cevdetpaa Caddesi, No 30/A, Beikta, stanbul",Bebek,"Bebek, stanbul",29.04373437,41.07769599,Cafe,30,Turkish Lira(TL),No,No,No,No,2,4.9,Dark Green,Excellent,1042 +5902117,Valonia,208,stanbul,"T_rkali Mahallesi, Ihlamurdere Caddesi, No 40/B, Beikta, stanbul",Beikta Merkez,"Beikta Merkez, stanbul",29.0028964,41.04481318,"Restaurant Cafe, Desserts",80,Turkish Lira(TL),No,No,No,No,3,4.2,Green,Very Good,874 +5927248,Draft Gastro Pub,208,stanbul,"Caddebostan Mahallesi, Badat Caddesi, No 349, Kat 1, Kad۱k_y, stanbul",Caddebostan,"Caddebostan, stanbul",29.07411609,40.96393456,Bar Food,130,Turkish Lira(TL),No,No,No,No,4,4.9,Dark Green,Excellent,522 +5905215,Emirgan S_ti,208,stanbul,"Emirgan Mahallesi, Sak۱p Sabanc۱ Caddesi, No 46, Sar۱yer, stanbul",Emirgn,"Emirgn, stanbul",29.05662037,41.10496881,"Restaurant Cafe, Turkish, Desserts",75,Turkish Lira(TL),No,No,No,No,3,4.2,Green,Very Good,877 +5926979,Leman K_lt_r,208,stanbul,"Caferaa Mahallesi, Neet _mer Sokak, No 9/A, Kad۱k_y, stanbul",Kad۱k_y Merkez,"Kad۱k_y Merkez, stanbul",29.02280476,40.98970497,Restaurant Cafe,80,Turkish Lira(TL),No,No,No,No,3,3.7,Yellow,Good,506 +5916085,Dem Karak_y,208,stanbul,"Kemanke Karamustafa Paa Mahallesi, Hoca Tahsin Sokak, No 17, Beyolu, stanbul",Karak_y,"Karak_y, stanbul",28.9782365,41.02463331,Cafe,35,Turkish Lira(TL),No,No,No,No,2,4.5,Dark Green,Excellent,761 +5915547,Karak_y G_ll_olu,208,stanbul,"Kemanke Karamustafa Paa Mahallesi, R۱ht۱m Caddesi, Katl۱ Otopark Alt۱, No 4, Beyolu, stanbul",Karak_y,"Karak_y, stanbul",28.97763569,41.02290443,"Desserts, B_rek",40,Turkish Lira(TL),No,No,No,No,2,4.7,Dark Green,Excellent,1305 +5915054,Baltazar,208,stanbul,"Kemanke Karamustafa Paa Mahallesi, K۱l۱_ Ali Paa Mescidi Sokak, No 12/A, Beyolu, stanbul",Karak_y,"Karak_y, stanbul",28.98110311,41.02578494,"Burger, Izgara",90,Turkish Lira(TL),No,No,No,No,3,4.3,Green,Very Good,870 +5915730,Naml۱ Gurme,208,stanbul,"Kemanke Karamustafa Paa Mahallesi, R۱ht۱m Caddesi, No 1/1, Katl۱ Otopark Alt۱, Beyolu, stanbul",Karak_y,"Karak_y, stanbul",28.97739161,41.02279314,Turkish,80,Turkish Lira(TL),No,No,No,No,3,4.1,Green,Very Good,788 +5908749,Ceviz Aac۱,208,stanbul,"Kouyolu Mahallesi, Muhittin st_nda Caddesi, No 85, Kad۱k_y, stanbul",Kouyolu,"Kouyolu, stanbul",29.04129725,41.00984672,"World Cuisine, Patisserie, Cafe",105,Turkish Lira(TL),No,No,No,No,3,4.2,Green,Very Good,1034 +5915807,Huqqa,208,stanbul,"Kuru_eme Mahallesi, Muallim Naci Caddesi, No 56, Beikta, stanbul",Kuru_eme,"Kuru_eme, stanbul",29.03464001,41.05581715,"Italian, World Cuisine",170,Turkish Lira(TL),No,No,No,No,4,3.7,Yellow,Good,661 +5916112,Ak Kahve,208,stanbul,"Kuru_eme Mahallesi, Muallim Naci Caddesi, No 64/B, Beikta, stanbul",Kuru_eme,"Kuru_eme, stanbul",29.036019,41.057979,Restaurant Cafe,120,Turkish Lira(TL),No,No,No,No,4,4,Green,Very Good,901 +5927402,Walter's Coffee Roastery,208,stanbul,"Cafeaa Mahallesi, Bademalt۱ Sokak, No 21/B, Kad۱k_y, stanbul",Moda,"Moda, stanbul",29.02601603,40.98477563,Cafe,55,Turkish Lira(TL),No,No,No,No,2,4,Green,Very Good,591 \ No newline at end of file diff --git a/Python_For_ML/Week_4/Conceptual Session/Posts.html b/Python_For_ML/Week_4/Conceptual Session/Posts.html new file mode 100644 index 0000000..b46eccf --- /dev/null +++ b/Python_For_ML/Week_4/Conceptual Session/Posts.html @@ -0,0 +1,713 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
userIdidtitlebody
011sunt aut facere repellat provident occaecati excepturi optio reprehenderitquia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto
112qui est esseest rerum tempore vitae\nsequi sint nihil reprehenderit dolor beatae ea dolores neque\nfugiat blanditiis voluptate porro vel nihil molestiae ut reiciendis\nqui aperiam non debitis possimus qui neque nisi nulla
213ea molestias quasi exercitationem repellat qui ipsa sit autet iusto sed quo iure\nvoluptatem occaecati omnis eligendi aut ad\nvoluptatem doloribus vel accusantium quis pariatur\nmolestiae porro eius odio et labore et velit aut
314eum et est occaecatiullam et saepe reiciendis voluptatem adipisci\nsit amet autem assumenda provident rerum culpa\nquis hic commodi nesciunt rem tenetur doloremque ipsam iure\nquis sunt voluptatem rerum illo velit
415nesciunt quas odiorepudiandae veniam quaerat sunt sed\nalias aut fugiat sit autem sed est\nvoluptatem omnis possimus esse voluptatibus quis\nest aut tenetur dolor neque
516dolorem eum magni eos aperiam quiaut aspernatur corporis harum nihil quis provident sequi\nmollitia nobis aliquid molestiae\nperspiciatis et ea nemo ab reprehenderit accusantium quas\nvoluptate dolores velit et doloremque molestiae
617magnam facilis autemdolore placeat quibusdam ea quo vitae\nmagni quis enim qui quis quo nemo aut saepe\nquidem repellat excepturi ut quia\nsunt ut sequi eos ea sed quas
718dolorem dolore est ipsamdignissimos aperiam dolorem qui eum\nfacilis quibusdam animi sint suscipit qui sint possimus cum\nquaerat magni maiores excepturi\nipsam ut commodi dolor voluptatum modi aut vitae
819nesciunt iure omnis dolorem tempora et accusantiumconsectetur animi nesciunt iure dolore\nenim quia ad\nveniam autem ut quam aut nobis\net est aut quod aut provident voluptas autem voluptas
9110optio molestias id quia eumquo et expedita modi cum officia vel magni\ndoloribus qui repudiandae\nvero nisi sit\nquos veniam quod sed accusamus veritatis error
10211et ea vero quia laudantium autemdelectus reiciendis molestiae occaecati non minima eveniet qui voluptatibus\naccusamus in eum beatae sit\nvel qui neque voluptates ut commodi qui incidunt\nut animi commodi
11212in quibusdam tempore odit est doloremitaque id aut magnam\npraesentium quia et ea odit et ea voluptas et\nsapiente quia nihil amet occaecati quia id voluptatem\nincidunt ea est distinctio odio
12213dolorum ut in voluptas mollitia et saepe quo animiaut dicta possimus sint mollitia voluptas commodi quo doloremque\niste corrupti reiciendis voluptatem eius rerum\nsit cumque quod eligendi laborum minima\nperferendis recusandae assumenda consectetur porro architecto ipsum ipsam
13214voluptatem eligendi optiofuga et accusamus dolorum perferendis illo voluptas\nnon doloremque neque facere\nad qui dolorum molestiae beatae\nsed aut voluptas totam sit illum
14215eveniet quod temporibusreprehenderit quos placeat\nvelit minima officia dolores impedit repudiandae molestiae nam\nvoluptas recusandae quis delectus\nofficiis harum fugiat vitae
15216sint suscipit perspiciatis velit dolorum rerum ipsa laboriosam odiosuscipit nam nisi quo aperiam aut\nasperiores eos fugit maiores voluptatibus quia\nvoluptatem quis ullam qui in alias quia est\nconsequatur magni mollitia accusamus ea nisi voluptate dicta
16217fugit voluptas sed molestias voluptatem providenteos voluptas et aut odit natus earum\naspernatur fuga molestiae ullam\ndeserunt ratione qui eos\nqui nihil ratione nemo velit ut aut id quo
17218voluptate et itaque vero tempora molestiaeeveniet quo quis\nlaborum totam consequatur non dolor\nut et est repudiandae\nest voluptatem vel debitis et magnam
18219adipisci placeat illum aut reiciendis quiillum quis cupiditate provident sit magnam\nea sed aut omnis\nveniam maiores ullam consequatur atque\nadipisci quo iste expedita sit quos voluptas
19220doloribus ad provident suscipit atqui consequuntur ducimus possimus quisquam amet similique\nsuscipit porro ipsam amet\neos veritatis officiis exercitationem vel fugit aut necessitatibus totam\nomnis rerum consequatur expedita quidem cumque explicabo
20321asperiores ea ipsam voluptatibus modi minima quia sintrepellat aliquid praesentium dolorem quo\nsed totam minus non itaque\nnihil labore molestiae sunt dolor eveniet hic recusandae veniam\ntempora et tenetur expedita sunt
21322dolor sint quo a velit explicabo quia nameos qui et ipsum ipsam suscipit aut\nsed omnis non odio\nexpedita earum mollitia molestiae aut atque rem suscipit\nnam impedit esse
22323maxime id vitae nihil numquamveritatis unde neque eligendi\nquae quod architecto quo neque vitae\nest illo sit tempora doloremque fugit quod\net et vel beatae sequi ullam sed tenetur perspiciatis
23324autem hic labore sunt dolores inciduntenim et ex nulla\nomnis voluptas quia qui\nvoluptatem consequatur numquam aliquam sunt\ntotam recusandae id dignissimos aut sed asperiores deserunt
24325rem alias distinctio quo quisullam consequatur ut\nomnis quis sit vel consequuntur\nipsa eligendi ipsum molestiae et omnis error nostrum\nmolestiae illo tempore quia et distinctio
25326est et quae odit qui nonsimilique esse doloribus nihil accusamus\nomnis dolorem fuga consequuntur reprehenderit fugit recusandae temporibus\nperspiciatis cum ut laudantium\nomnis aut molestiae vel vero
26327quasi id et eos tenetur aut quo autemeum sed dolores ipsam sint possimus debitis occaecati\ndebitis qui qui et\nut placeat enim earum aut odit facilis\nconsequatur suscipit necessitatibus rerum sed inventore temporibus consequatur
27328delectus ullam et corporis nulla voluptas sequinon et quaerat ex quae ad maiores\nmaiores recusandae totam aut blanditiis mollitia quas illo\nut voluptatibus voluptatem\nsimilique nostrum eum
28329iusto eius quod necessitatibus culpa eaodit magnam ut saepe sed non qui\ntempora atque nihil\naccusamus illum doloribus illo dolor\neligendi repudiandae odit magni similique sed cum maiores
29330a quo magni similique perferendisalias dolor cumque\nimpedit blanditiis non eveniet odio maxime\nblanditiis amet eius quis tempora quia autem rem\na provident perspiciatis quia
30431ullam ut quidem id aut vel consequunturdebitis eius sed quibusdam non quis consectetur vitae\nimpedit ut qui consequatur sed aut in\nquidem sit nostrum et maiores adipisci atque\nquaerat voluptatem adipisci repudiandae
31432doloremque illum aliquid suntdeserunt eos nobis asperiores et hic\nest debitis repellat molestiae optio\nnihil ratione ut eos beatae quibusdam distinctio maiores\nearum voluptates et aut adipisci ea maiores voluptas maxime
32433qui explicabo molestiae doloremrerum ut et numquam laborum odit est sit\nid qui sint in\nquasi tenetur tempore aperiam et quaerat qui in\nrerum officiis sequi cumque quod
33434magnam ut rerum iureea velit perferendis earum ut voluptatem voluptate itaque iusto\ntotam pariatur in\nnemo voluptatem voluptatem autem magni tempora minima in\nest distinctio qui assumenda accusamus dignissimos officia nesciunt nobis
34435id nihil consequatur molestias animi providentnisi error delectus possimus ut eligendi vitae\nplaceat eos harum cupiditate facilis reprehenderit voluptatem beatae\nmodi ducimus quo illum voluptas eligendi\net nobis quia fugit
35436fuga nam accusamus voluptas reiciendis itaquead mollitia et omnis minus architecto odit\nvoluptas doloremque maxime aut non ipsa qui alias veniam\nblanditiis culpa aut quia nihil cumque facere et occaecati\nqui aspernatur quia eaque ut aperiam inventore
36437provident vel ut sit ratione estdebitis et eaque non officia sed nesciunt pariatur vel\nvoluptatem iste vero et ea\nnumquam aut expedita ipsum nulla in\nvoluptates omnis consequatur aut enim officiis in quam qui
37438explicabo et eos deleniti nostrum ab id repellendusanimi esse sit aut sit nesciunt assumenda eum voluptas\nquia voluptatibus provident quia necessitatibus ea\nrerum repudiandae quia voluptatem delectus fugit aut id quia\nratione optio eos iusto veniam iure
38439eos dolorem iste accusantium est eaque quamcorporis rerum ducimus vel eum accusantium\nmaxime aspernatur a porro possimus iste omnis\nest in deleniti asperiores fuga aut\nvoluptas sapiente vel dolore minus voluptatem incidunt ex
39440enim quo cumqueut voluptatum aliquid illo tenetur nemo sequi quo facilis\nipsum rem optio mollitia quas\nvoluptatem eum voluptas qui\nunde omnis voluptatem iure quasi maxime voluptas nam
40541non est faceremolestias id nostrum\nexcepturi molestiae dolore omnis repellendus quaerat saepe\nconsectetur iste quaerat tenetur asperiores accusamus ex ut\nnam quidem est ducimus sunt debitis saepe
41542commodi ullam sint et excepturi error explicabo praesentium voluptasodio fugit voluptatum ducimus earum autem est incidunt voluptatem\nodit reiciendis aliquam sunt sequi nulla dolorem\nnon facere repellendus voluptates quia\nratione harum vitae ut
42543eligendi iste nostrum consequuntur adipisci praesentium sit beatae perferendissimilique fugit est\nillum et dolorum harum et voluptate eaque quidem\nexercitationem quos nam commodi possimus cum odio nihil nulla\ndolorum exercitationem magnam ex et a et distinctio debitis
43544optio dolor molestias sittemporibus est consectetur dolore\net libero debitis vel velit laboriosam quia\nipsum quibusdam qui itaque fuga rem aut\nea et iure quam sed maxime ut distinctio quae
44545ut numquam possimus omnis eius suscipit laudantium iureest natus reiciendis nihil possimus aut provident\nex et dolor\nrepellat pariatur est\nnobis rerum repellendus dolorem autem
45546aut quo modi neque nostrum ducimusvoluptatem quisquam iste\nvoluptatibus natus officiis facilis dolorem\nquis quas ipsam\nvel et voluptatum in aliquid
46547quibusdam cumque rem aut deseruntvoluptatem assumenda ut qui ut cupiditate aut impedit veniam\noccaecati nemo illum voluptatem laudantium\nmolestiae beatae rerum ea iure soluta nostrum\neligendi et voluptate
47548ut voluptatem illum ea doloribus itaque eosvoluptates quo voluptatem facilis iure occaecati\nvel assumenda rerum officia et\nillum perspiciatis ab deleniti\nlaudantium repellat ad ut et autem reprehenderit
48549laborum non sunt aut ut assumenda perspiciatis voluptasinventore ab sint\nnatus fugit id nulla sequi architecto nihil quaerat\neos tenetur in in eum veritatis non\nquibusdam officiis aspernatur cumque aut commodi aut
49550repellendus qui recusandae incidunt voluptates tenetur qui omnis exercitationemerror suscipit maxime adipisci consequuntur recusandae\nvoluptas eligendi et est et voluptates\nquia distinctio ab amet quaerat molestiae et vitae\nadipisci impedit sequi nesciunt quis consectetur
50651soluta aliquam aperiam consequatur illo quis voluptassunt dolores aut doloribus\ndolore doloribus voluptates tempora et\ndoloremque et quo\ncum asperiores sit consectetur dolorem
51652qui enim et consequuntur quia animi quis voluptate quibusdamiusto est quibusdam fuga quas quaerat molestias\na enim ut sit accusamus enim\ntemporibus iusto accusantium provident architecto\nsoluta esse reprehenderit qui laborum
52653ut quo aut ducimus aliasminima harum praesentium eum rerum illo dolore\nquasi exercitationem rerum nam\nporro quis neque quo\nconsequatur minus dolor quidem veritatis sunt non explicabo similique
53654sit asperiores ipsam eveniet odio non quiatotam corporis dignissimos\nvitae dolorem ut occaecati accusamus\nex velit deserunt\net exercitationem vero incidunt corrupti mollitia
54655sit vel voluptatem et non liberodebitis excepturi ea perferendis harum libero optio\neos accusamus cum fuga ut sapiente repudiandae\net ut incidunt omnis molestiae\nnihil ut eum odit
55656qui et at rerum necessitatibusaut est omnis dolores\nneque rerum quod ea rerum velit pariatur beatae excepturi\net provident voluptas corrupti\ncorporis harum reprehenderit dolores eligendi
56657sed ab est estat pariatur consequuntur earum quidem\nquo est laudantium soluta voluptatem\nqui ullam et est\net cum voluptas voluptatum repellat est
57658voluptatum itaque dolores nisi et quasiveniam voluptatum quae adipisci id\net id quia eos ad et dolorem\naliquam quo nisi sunt eos impedit error\nad similique veniam
58659qui commodi dolor at maiores et quis id accusantiumperspiciatis et quam ea autem temporibus non voluptatibus qui\nbeatae a earum officia nesciunt dolores suscipit voluptas et\nanimi doloribus cum rerum quas et magni\net hic ut ut commodi expedita sunt
59660consequatur placeat omnis quisquam quia reprehenderit fugit veritatis facereasperiores sunt ab assumenda cumque modi velit\nqui esse omnis\nvoluptate et fuga perferendis voluptas\nillo ratione amet aut et omnis
60761voluptatem doloribus consectetur est ut ducimusab nemo optio odio\ndelectus tenetur corporis similique nobis repellendus rerum omnis facilis\nvero blanditiis debitis in nesciunt doloribus dicta dolores\nmagnam minus velit
61762beatae enim quia velenim aspernatur illo distinctio quae praesentium\nbeatae alias amet delectus qui voluptate distinctio\nodit sint accusantium autem omnis\nquo molestiae omnis ea eveniet optio
62763voluptas blanditiis repellendus animi ducimus error sapiente et suscipitenim adipisci aspernatur nemo\nnumquam omnis facere dolorem dolor ex quis temporibus incidunt\nab delectus culpa quo reprehenderit blanditiis asperiores\naccusantium ut quam in voluptatibus voluptas ipsam dicta
63764et fugit quas eum in in aperiam quodid velit blanditiis\neum ea voluptatem\nmolestiae sint occaecati est eos perspiciatis\nincidunt a error provident eaque aut aut qui
64765consequatur id enim sunt et etvoluptatibus ex esse\nsint explicabo est aliquid cumque adipisci fuga repellat labore\nmolestiae corrupti ex saepe at asperiores et perferendis\nnatus id esse incidunt pariatur
65766repudiandae ea animi iustoofficia veritatis tenetur vero qui itaque\nsint non ratione\nsed et ut asperiores iusto eos molestiae nostrum\nveritatis quibusdam et nemo iusto saepe
66767aliquid eos sed fuga est maxime repellendusreprehenderit id nostrum\nvoluptas doloremque pariatur sint et accusantium quia quod aspernatur\net fugiat amet\nnon sapiente et consequatur necessitatibus molestiae
67768odio quis facere architecto reiciendis optiomagnam molestiae perferendis quisquam\nqui cum reiciendis\nquaerat animi amet hic inventore\nea quia deleniti quidem saepe porro velit
68769fugiat quod pariatur odit minimaofficiis error culpa consequatur modi asperiores et\ndolorum assumenda voluptas et vel qui aut vel rerum\nvoluptatum quisquam perspiciatis quia rerum consequatur totam quas\nsequi commodi repudiandae asperiores et saepe a
69770voluptatem laborum magnisunt repellendus quae\nest asperiores aut deleniti esse accusamus repellendus quia aut\nquia dolorem unde\neum tempora esse dolore
70871et iusto veniam et illum aut fugaoccaecati a doloribus\niste saepe consectetur placeat eum voluptate dolorem et\nqui quo quia voluptas\nrerum ut id enim velit est perferendis
71872sint hic doloribus consequatur eos non idquam occaecati qui deleniti consectetur\nconsequatur aut facere quas exercitationem aliquam hic voluptas\nneque id sunt ut aut accusamus\nsunt consectetur expedita inventore velit
72873consequuntur deleniti eos quia temporibus ab aliquid atvoluptatem cumque tenetur consequatur expedita ipsum nemo quia explicabo\naut eum minima consequatur\ntempore cumque quae est et\net in consequuntur voluptatem voluptates aut
73874enim unde ratione doloribus quas enim ut sit sapienteodit qui et et necessitatibus sint veniam\nmollitia amet doloremque molestiae commodi similique magnam et quam\nblanditiis est itaque\nquo et tenetur ratione occaecati molestiae tempora
74875dignissimos eum dolor ut enim et delectus incommodi non non omnis et voluptas sit\nautem aut nobis magnam et sapiente voluptatem\net laborum repellat qui delectus facilis temporibus\nrerum amet et nemo voluptate expedita adipisci error dolorem
75876doloremque officiis ad et non perferendisut animi facere\ntotam iusto tempore\nmolestiae eum aut et dolorem aperiam\nquaerat recusandae totam odio
76877necessitatibus quasi exercitationem odiomodi ut in nulla repudiandae dolorum nostrum eos\naut consequatur omnis\nut incidunt est omnis iste et quam\nvoluptates sapiente aliquam asperiores nobis amet corrupti repudiandae provident
77878quam voluptatibus rerum veritatisnobis facilis odit tempore cupiditate quia\nassumenda doloribus rerum qui ea\nillum et qui totam\naut veniam repellendus
78879pariatur consequatur quia magnam autem omnis non ametlibero accusantium et et facere incidunt sit dolorem\nnon excepturi qui quia sed laudantium\nquisquam molestiae ducimus est\nofficiis esse molestiae iste et quos
79880labore in ex et explicabo corporis aut quasex quod dolorem ea eum iure qui provident amet\nquia qui facere excepturi et repudiandae\nasperiores molestias provident\nminus incidunt vero fugit rerum sint sunt excepturi provident
80981tempora rem veritatis voluptas quo dolores verofacere qui nesciunt est voluptatum voluptatem nisi\nsequi eligendi necessitatibus ea at rerum itaque\nharum non ratione velit laboriosam quis consequuntur\nex officiis minima doloremque voluptas ut aut
81982laudantium voluptate suscipit sunt enim enimut libero sit aut totam inventore sunt\nporro sint qui sunt molestiae\nconsequatur cupiditate qui iste ducimus adipisci\ndolor enim assumenda soluta laboriosam amet iste delectus hic
82983odit et voluptates doloribus alias odio etest molestiae facilis quis tempora numquam nihil qui\nvoluptate sapiente consequatur est qui\nnecessitatibus autem aut ipsa aperiam modi dolore numquam\nreprehenderit eius rem quibusdam
83984optio ipsam molestias necessitatibus occaecati facilis veritatis dolores autsint molestiae magni a et quos\neaque et quasi\nut rerum debitis similique veniam\nrecusandae dignissimos dolor incidunt consequatur odio
84985dolore veritatis porro provident adipisci blanditiis et suntsimilique sed nisi voluptas iusto omnis\nmollitia et quo\nassumenda suscipit officia magnam sint sed tempora\nenim provident pariatur praesentium atque animi amet ratione
85986placeat quia et porro istequasi excepturi consequatur iste autem temporibus sed molestiae beatae\net quaerat et esse ut\nvoluptatem occaecati et vel explicabo autem\nasperiores pariatur deserunt optio
86987nostrum quis quasi placeateos et molestiae\nnesciunt ut a\ndolores perspiciatis repellendus repellat aliquid\nmagnam sint rem ipsum est
87988sapiente omnis fugit eosconsequatur omnis est praesentium\nducimus non iste\nneque hic deserunt\nvoluptatibus veniam cum et rerum sed
88989sint soluta et vel magnam aut ut sed quirepellat aut aperiam totam temporibus autem et\narchitecto magnam ut\nconsequatur qui cupiditate rerum quia soluta dignissimos nihil iure\ntempore quas est
89990ad iusto omnis odit dolor voluptatibusminus omnis soluta quia\nqui sed adipisci voluptates illum ipsam voluptatem\neligendi officia ut in\neos soluta similique molestias praesentium blanditiis
901091aut amet sedlibero voluptate eveniet aperiam sed\nsunt placeat suscipit molestias\nsimilique fugit nam natus\nexpedita consequatur consequatur dolores quia eos et placeat
911092ratione ex tenetur perferendisaut et excepturi dicta laudantium sint rerum nihil\nlaudantium et at\na neque minima officia et similique libero et\ncommodi voluptate qui
921093beatae soluta recusandaedolorem quibusdam ducimus consequuntur dicta aut quo laboriosam\nvoluptatem quis enim recusandae ut sed sunt\nnostrum est odit totam\nsit error sed sunt eveniet provident qui nulla
931094qui qui voluptates illo iste minimaaspernatur expedita soluta quo ab ut similique\nexpedita dolores amet\nsed temporibus distinctio magnam saepe deleniti\nomnis facilis nam ipsum natus sint similique omnis
941095id minus libero illum nam ad officiisearum voluptatem facere provident blanditiis velit laboriosam\npariatur accusamus odio saepe\ncumque dolor qui a dicta ab doloribus consequatur omnis\ncorporis cupiditate eaque assumenda ad nesciunt
951096quaerat velit veniam amet cupiditate aut numquam ut sequiin non odio excepturi sint eum\nlabore voluptates vitae quia qui et\ninventore itaque rerum\nveniam non exercitationem delectus aut
961097quas fugiat ut perspiciatis vero providenteum non blanditiis soluta porro quibusdam voluptas\nvel voluptatem qui placeat dolores qui velit aut\nvel inventore aut cumque culpa explicabo aliquid at\nperspiciatis est et voluptatem dignissimos dolor itaque sit nam
971098laboriosam dolor voluptatesdoloremque ex facilis sit sint culpa\nsoluta assumenda eligendi non ut eius\nsequi ducimus vel quasi\nveritatis est dolores
981099temporibus sit alias delectus eligendi possimus magniquo deleniti praesentium dicta non quod\naut est molestias\nmolestias et officia quis nihil\nitaque dolorem quia
9910100at nam consequatur ea labore ea harumcupiditate quo est a modi nesciunt soluta\nipsa voluptas error itaque dicta in\nautem qui minus magnam et distinctio eum\naccusamus ratione error aut
\ No newline at end of file diff --git a/Python_For_ML/Week_4/Conceptual Session/cricket.json b/Python_For_ML/Week_4/Conceptual Session/cricket.json new file mode 100644 index 0000000..fc4a563 --- /dev/null +++ b/Python_For_ML/Week_4/Conceptual Session/cricket.json @@ -0,0 +1 @@ +{"id":{"0":335982,"1":335983,"2":335984,"3":335985,"4":335986,"5":335987,"6":335988,"7":335989,"8":335990,"9":335991,"10":335992,"11":335993,"12":335994,"13":335995,"14":335996,"15":335997,"16":335998,"17":335999,"18":336000,"19":336001,"20":336002,"21":336003,"22":336004,"23":336005,"24":336006,"25":336007,"26":336008,"27":336009,"28":336010,"29":336011,"30":336012,"31":336013,"32":336014,"33":336015,"34":336016,"35":336017,"36":336018,"37":336019,"38":336020,"39":336021,"40":336022,"41":336023,"42":336024,"43":336025,"44":336026,"45":336027,"46":336028,"47":336029,"48":336031,"49":336032,"50":336033,"51":336034,"52":336035,"53":336036,"54":336037,"55":336038,"56":336039,"57":336040,"58":392181,"59":392182,"60":392183,"61":392184,"62":392185,"63":392186,"64":392188,"65":392189,"66":392190,"67":392191,"68":392192,"69":392194,"70":392195,"71":392196,"72":392197,"73":392198,"74":392199,"75":392200,"76":392201,"77":392202,"78":392203,"79":392204,"80":392205,"81":392206,"82":392207,"83":392208,"84":392209,"85":392210,"86":392211,"87":392212,"88":392213,"89":392214,"90":392215,"91":392216,"92":392217,"93":392218,"94":392219,"95":392220,"96":392221,"97":392222,"98":392223,"99":392224,"100":392225,"101":392226,"102":392227,"103":392228,"104":392229,"105":392230,"106":392231,"107":392232,"108":392233,"109":392234,"110":392235,"111":392236,"112":392237,"113":392238,"114":392239,"115":419106,"116":419107,"117":419108,"118":419109,"119":419110,"120":419111,"121":419112,"122":419113,"123":419114,"124":419115,"125":419116,"126":419117,"127":419118,"128":419119,"129":419120,"130":419121,"131":419122,"132":419123,"133":419124,"134":419125,"135":419126,"136":419127,"137":419128,"138":419129,"139":419130,"140":419131,"141":419132,"142":419133,"143":419134,"144":419135,"145":419136,"146":419137,"147":419138,"148":419139,"149":419140,"150":419141,"151":419142,"152":419143,"153":419144,"154":419145,"155":419146,"156":419147,"157":419148,"158":419149,"159":419150,"160":419151,"161":419152,"162":419153,"163":419154,"164":419155,"165":419156,"166":419157,"167":419158,"168":419159,"169":419160,"170":419161,"171":419162,"172":419163,"173":419164,"174":419165,"175":501198,"176":501199,"177":501200,"178":501201,"179":501202,"180":501203,"181":501204,"182":501205,"183":501206,"184":501207,"185":501208,"186":501209,"187":501210,"188":501211,"189":501212,"190":501213,"191":501214,"192":501215,"193":501216,"194":501218,"195":501219,"196":501220,"197":501221,"198":501222,"199":501223,"200":501224,"201":501225,"202":501226,"203":501227,"204":501228,"205":501229,"206":501230,"207":501231,"208":501232,"209":501233,"210":501234,"211":501235,"212":501236,"213":501237,"214":501238,"215":501239,"216":501240,"217":501241,"218":501242,"219":501243,"220":501244,"221":501245,"222":501246,"223":501247,"224":501248,"225":501249,"226":501250,"227":501251,"228":501252,"229":501253,"230":501254,"231":501255,"232":501256,"233":501257,"234":501258,"235":501259,"236":501260,"237":501261,"238":501262,"239":501263,"240":501264,"241":501265,"242":501266,"243":501267,"244":501268,"245":501269,"246":501270,"247":501271,"248":548306,"249":548307,"250":548308,"251":548309,"252":548310,"253":548311,"254":548312,"255":548313,"256":548314,"257":548315,"258":548316,"259":548317,"260":548318,"261":548319,"262":548320,"263":548321,"264":548322,"265":548323,"266":548324,"267":548325,"268":548326,"269":548327,"270":548328,"271":548329,"272":548330,"273":548331,"274":548332,"275":548333,"276":548334,"277":548335,"278":548336,"279":548337,"280":548339,"281":548341,"282":548342,"283":548343,"284":548344,"285":548345,"286":548346,"287":548347,"288":548348,"289":548349,"290":548350,"291":548351,"292":548352,"293":548353,"294":548354,"295":548355,"296":548356,"297":548357,"298":548358,"299":548359,"300":548360,"301":548361,"302":548362,"303":548363,"304":548364,"305":548365,"306":548366,"307":548367,"308":548368,"309":548369,"310":548370,"311":548371,"312":548372,"313":548373,"314":548374,"315":548375,"316":548376,"317":548377,"318":548378,"319":548379,"320":548380,"321":548381,"322":597998,"323":597999,"324":598000,"325":598001,"326":598002,"327":598003,"328":598004,"329":598005,"330":598006,"331":598007,"332":598008,"333":598009,"334":598010,"335":598011,"336":598012,"337":598013,"338":598014,"339":598015,"340":598016,"341":598017,"342":598018,"343":598019,"344":598020,"345":598021,"346":598022,"347":598023,"348":598024,"349":598025,"350":598026,"351":598027,"352":598028,"353":598029,"354":598030,"355":598031,"356":598032,"357":598033,"358":598034,"359":598035,"360":598036,"361":598037,"362":598038,"363":598039,"364":598040,"365":598041,"366":598042,"367":598043,"368":598044,"369":598045,"370":598046,"371":598047,"372":598048,"373":598049,"374":598050,"375":598051,"376":598052,"377":598053,"378":598054,"379":598055,"380":598056,"381":598057,"382":598058,"383":598059,"384":598060,"385":598061,"386":598062,"387":598063,"388":598064,"389":598065,"390":598066,"391":598067,"392":598068,"393":598069,"394":598070,"395":598071,"396":598072,"397":598073,"398":729279,"399":729281,"400":729283,"401":729285,"402":729287,"403":729289,"404":729291,"405":729293,"406":729295,"407":729297,"408":729299,"409":729301,"410":729303,"411":729305,"412":729307,"413":729309,"414":729311,"415":729313,"416":729315,"417":729317,"418":733971,"419":733973,"420":733975,"421":733977,"422":733979,"423":733981,"424":733983,"425":733985,"426":733987,"427":733989,"428":733991,"429":733993,"430":733995,"431":733997,"432":733999,"433":734001,"434":734003,"435":734005,"436":734007,"437":734009,"438":734011,"439":734013,"440":734015,"441":734017,"442":734019,"443":734021,"444":734023,"445":734025,"446":734027,"447":734029,"448":734031,"449":734033,"450":734035,"451":734037,"452":734039,"453":734041,"454":734043,"455":734045,"456":734047,"457":734049,"458":829705,"459":829707,"460":829709,"461":829711,"462":829713,"463":829715,"464":829717,"465":829719,"466":829721,"467":829723,"468":829725,"469":829727,"470":829729,"471":829731,"472":829733,"473":829735,"474":829737,"475":829739,"476":829741,"477":829743,"478":829745,"479":829747,"480":829749,"481":829751,"482":829753,"483":829757,"484":829759,"485":829761,"486":829763,"487":829765,"488":829767,"489":829769,"490":829771,"491":829773,"492":829775,"493":829777,"494":829779,"495":829781,"496":829783,"497":829785,"498":829787,"499":829789,"500":829791,"501":829793,"502":829795,"503":829797,"504":829799,"505":829801,"506":829803,"507":829805,"508":829807,"509":829809,"510":829811,"511":829813,"512":829815,"513":829817,"514":829819,"515":829821,"516":829823,"517":980901,"518":980903,"519":980905,"520":980907,"521":980909,"522":980911,"523":980913,"524":980915,"525":980917,"526":980919,"527":980921,"528":980923,"529":980925,"530":980927,"531":980929,"532":980931,"533":980933,"534":980935,"535":980937,"536":980939,"537":980941,"538":980943,"539":980945,"540":980947,"541":980949,"542":980951,"543":980953,"544":980955,"545":980957,"546":980959,"547":980961,"548":980963,"549":980965,"550":980967,"551":980969,"552":980971,"553":980973,"554":980975,"555":980977,"556":980979,"557":980981,"558":980983,"559":980985,"560":980987,"561":980989,"562":980991,"563":980993,"564":980995,"565":980997,"566":980999,"567":981001,"568":981003,"569":981005,"570":981007,"571":981009,"572":981011,"573":981013,"574":981015,"575":981017,"576":981019,"577":1082591,"578":1082592,"579":1082593,"580":1082594,"581":1082595,"582":1082596,"583":1082597,"584":1082598,"585":1082599,"586":1082600,"587":1082601,"588":1082602,"589":1082603,"590":1082604,"591":1082605,"592":1082606,"593":1082607,"594":1082608,"595":1082609,"596":1082610,"597":1082611,"598":1082612,"599":1082613,"600":1082614,"601":1082615,"602":1082616,"603":1082617,"604":1082618,"605":1082620,"606":1082621,"607":1082622,"608":1082623,"609":1082624,"610":1082625,"611":1082626,"612":1082627,"613":1082628,"614":1082629,"615":1082630,"616":1082631,"617":1082632,"618":1082633,"619":1082634,"620":1082635,"621":1082636,"622":1082637,"623":1082638,"624":1082639,"625":1082640,"626":1082641,"627":1082642,"628":1082643,"629":1082644,"630":1082645,"631":1082646,"632":1082647,"633":1082648,"634":1082649,"635":1082650,"636":1136561,"637":1136562,"638":1136563,"639":1136564,"640":1136565,"641":1136566,"642":1136567,"643":1136568,"644":1136569,"645":1136570,"646":1136571,"647":1136572,"648":1136573,"649":1136574,"650":1136575,"651":1136576,"652":1136577,"653":1136578,"654":1136579,"655":1136580,"656":1136581,"657":1136582,"658":1136583,"659":1136584,"660":1136585,"661":1136586,"662":1136587,"663":1136588,"664":1136589,"665":1136590,"666":1136591,"667":1136592,"668":1136593,"669":1136594,"670":1136595,"671":1136596,"672":1136597,"673":1136598,"674":1136599,"675":1136600,"676":1136601,"677":1136602,"678":1136603,"679":1136604,"680":1136605,"681":1136606,"682":1136607,"683":1136608,"684":1136609,"685":1136610,"686":1136611,"687":1136612,"688":1136613,"689":1136614,"690":1136615,"691":1136616,"692":1136617,"693":1136618,"694":1136619,"695":1136620,"696":1175356,"697":1175357,"698":1175358,"699":1175359,"700":1175360,"701":1175361,"702":1175362,"703":1175363,"704":1175364,"705":1175365,"706":1175366,"707":1175367,"708":1175368,"709":1175369,"710":1175370,"711":1175371,"712":1175372,"713":1178393,"714":1178394,"715":1178395,"716":1178396,"717":1178397,"718":1178398,"719":1178399,"720":1178400,"721":1178401,"722":1178402,"723":1178403,"724":1178404,"725":1178405,"726":1178406,"727":1178407,"728":1178408,"729":1178409,"730":1178410,"731":1178411,"732":1178412,"733":1178413,"734":1178414,"735":1178415,"736":1178416,"737":1178417,"738":1178418,"739":1178419,"740":1178420,"741":1178421,"742":1178422,"743":1178423,"744":1178424,"745":1178425,"746":1178426,"747":1178427,"748":1178428,"749":1178429,"750":1178430,"751":1178431,"752":1181764,"753":1181766,"754":1181767,"755":1181768,"756":1216492,"757":1216493,"758":1216494,"759":1216495,"760":1216496,"761":1216497,"762":1216498,"763":1216499,"764":1216500,"765":1216501,"766":1216502,"767":1216503,"768":1216504,"769":1216505,"770":1216506,"771":1216507,"772":1216508,"773":1216509,"774":1216510,"775":1216511,"776":1216512,"777":1216513,"778":1216514,"779":1216515,"780":1216516,"781":1216517,"782":1216518,"783":1216519,"784":1216520,"785":1216521,"786":1216522,"787":1216523,"788":1216524,"789":1216525,"790":1216526,"791":1216527,"792":1216528,"793":1216529,"794":1216530,"795":1216531,"796":1216532,"797":1216533,"798":1216534,"799":1216535,"800":1216536,"801":1216537,"802":1216538,"803":1216539,"804":1216540,"805":1216541,"806":1216542,"807":1216543,"808":1216544,"809":1216545,"810":1216546,"811":1216547,"812":1237177,"813":1237178,"814":1237180,"815":1237181},"city":{"0":"Bangalore","1":"Chandigarh","2":"Delhi","3":"Mumbai","4":"Kolkata","5":"Jaipur","6":"Hyderabad","7":"Chennai","8":"Hyderabad","9":"Chandigarh","10":"Bangalore","11":"Chennai","12":"Mumbai","13":"Chandigarh","14":"Bangalore","15":"Kolkata","16":"Delhi","17":"Hyderabad","18":"Jaipur","19":"Chennai","20":"Hyderabad","21":"Chandigarh","22":"Mumbai","23":"Jaipur","24":"Bangalore","25":"Chennai","26":"Mumbai","27":"Delhi","28":"Kolkata","29":"Jaipur","30":"Bangalore","31":"Chennai","32":"Hyderabad","33":"Jaipur","34":"Chandigarh","35":"Kolkata","36":"Mumbai","37":"Chandigarh","38":"Delhi","39":"Mumbai","40":"Delhi","41":"Jaipur","42":"Hyderabad","43":"Kolkata","44":"Bangalore","45":"Kolkata","46":"Mumbai","47":"Chennai","48":"Chandigarh","49":"Delhi","50":"Chennai","51":"Bangalore","52":"Kolkata","53":"Jaipur","54":"Hyderabad","55":"Mumbai","56":"Mumbai","57":"Mumbai","58":"Cape Town","59":"Cape Town","60":"Cape Town","61":"Cape Town","62":"Port Elizabeth","63":"Durban","64":"Cape Town","65":"Durban","66":"Cape Town","67":"Durban","68":"Durban","69":"Port Elizabeth","70":"Cape Town","71":"Durban","72":"Port Elizabeth","73":"Centurion","74":"Durban","75":"Durban","76":"Centurion","77":"Centurion","78":"East London","79":"Durban","80":"Port Elizabeth","81":"Johannesburg","82":"Port Elizabeth","83":"Johannesburg","84":"East London","85":"Durban","86":"Durban","87":"Centurion","88":"Centurion","89":"Centurion","90":"East London","91":"Kimberley","92":"Kimberley","93":"Port Elizabeth","94":"Johannesburg","95":"Kimberley","96":"Centurion","97":"Centurion","98":"Durban","99":"Durban","100":"Durban","101":"Bloemfontein","102":"Port Elizabeth","103":"Johannesburg","104":"Johannesburg","105":"Bloemfontein","106":"Centurion","107":"Johannesburg","108":"Durban","109":"Durban","110":"Centurion","111":"Centurion","112":"Centurion","113":"Johannesburg","114":"Johannesburg","115":"Mumbai","116":"Mumbai","117":"Chandigarh","118":"Kolkata","119":"Chennai","120":"Ahmedabad","121":"Bangalore","122":"Kolkata","123":"Delhi","124":"Bangalore","125":"Delhi","126":"Cuttack","127":"Ahmedabad","128":"Mumbai","129":"Cuttack","130":"Chennai","131":"Mumbai","132":"Bangalore","133":"Chandigarh","134":"Mumbai","135":"Ahmedabad","136":"Chandigarh","137":"Bangalore","138":"Ahmedabad","139":"Mumbai","140":"Delhi","141":"Mumbai","142":"Chennai","143":"Delhi","144":"Kolkata","145":"Chandigarh","146":"Chennai","147":"Mumbai","148":"Kolkata","149":"Delhi","150":"Nagpur","151":"Chennai","152":"Jaipur","153":"Kolkata","154":"Bangalore","155":"Chandigarh","156":"Nagpur","157":"Bangalore","158":"Delhi","159":"Jaipur","160":"Nagpur","161":"Mumbai","162":"Chennai","163":"Jaipur","164":"Chennai","165":"Dharamsala","166":"Bangalore","167":"Kolkata","168":"Dharamsala","169":"Delhi","170":"Kolkata","171":"Mumbai","172":"Mumbai","173":"Mumbai","174":"Mumbai","175":"Chennai","176":"Hyderabad","177":"Kochi","178":"Delhi","179":"Mumbai","180":"Kolkata","181":"Jaipur","182":"Bangalore","183":"Chandigarh","184":"Mumbai","185":"Hyderabad","186":"Jaipur","187":"Mumbai","188":"Chennai","189":"Hyderabad","190":"Mumbai","191":"Kolkata","192":"Kochi","193":"Delhi","194":"Mumbai","195":"Kolkata","196":"Chandigarh","197":"Mumbai","198":"Kolkata","199":"Delhi","200":"Hyderabad","201":"Jaipur","202":"Chennai","203":"Delhi","204":"Mumbai","205":"Kochi","206":"Delhi","207":"Jaipur","208":"Bangalore","209":"Kochi","210":"Kolkata","211":"Jaipur","212":"Chennai","213":"Mumbai","214":"Delhi","215":"Hyderabad","216":"Chennai","217":"Mumbai","218":"Kochi","219":"Hyderabad","220":"Bangalore","221":"Kolkata","222":"Mumbai","223":"Bangalore","224":"Chandigarh","225":"Jaipur","226":"Hyderabad","227":"Chandigarh","228":"Jaipur","229":"Chennai","230":"Indore","231":"Bangalore","232":"Mumbai","233":"Dharamsala","234":"Indore","235":"Mumbai","236":"Dharamsala","237":"Chennai","238":"Mumbai","239":"Mumbai","240":"Dharamsala","241":"Delhi","242":"Bangalore","243":"Kolkata","244":"Mumbai","245":"Mumbai","246":"Chennai","247":"Chennai","248":"Chennai","249":"Kolkata","250":"Mumbai","251":"Jaipur","252":"Bangalore","253":"Visakhapatnam","254":"Jaipur","255":"Pune","256":"Visakhapatnam","257":"Bangalore","258":"Delhi","259":"Mumbai","260":"Chennai","261":"Chandigarh","262":"Kolkata","263":"Delhi","264":"Pune","265":"Kolkata","266":"Bangalore","267":"Mumbai","268":"Jaipur","269":"Bangalore","270":"Chandigarh","271":"Hyderabad","272":"Chennai","273":"Chandigarh","274":"Chennai","275":"Delhi","276":"Mumbai","277":"Cuttack","278":"Jaipur","279":"Pune","280":"Chandigarh","281":"Pune","282":"Delhi","283":"Chennai","284":"Kolkata","285":"Delhi","286":"Mumbai","287":"Chennai","288":"Cuttack","289":"Jaipur","290":"Bangalore","291":"Pune","292":"Chennai","293":"Kolkata","294":"Chandigarh","295":"Mumbai","296":"Bangalore","297":"Delhi","298":"Pune","299":"Hyderabad","300":"Mumbai","301":"Jaipur","302":"Pune","303":"Kolkata","304":"Chennai","305":"Jaipur","306":"Chandigarh","307":"Bangalore","308":"Kolkata","309":"Delhi","310":"Mumbai","311":"Dharamsala","312":"Delhi","313":"Hyderabad","314":"Dharamsala","315":"Pune","316":"Hyderabad","317":"Jaipur","318":"Pune","319":"Bangalore","320":"Chennai","321":"Chennai","322":"Kolkata","323":"Bangalore","324":"Hyderabad","325":"Delhi","326":"Chennai","327":"Pune","328":"Hyderabad","329":"Jaipur","330":"Mumbai","331":"Chandigarh","332":"Bangalore","333":"Pune","334":"Delhi","335":"Mumbai","336":"Chennai","337":"Kolkata","338":"Jaipur","339":"Chennai","340":"Chandigarh","341":"Bangalore","342":"Pune","343":"Jaipur","344":"Delhi","345":"Hyderabad","346":"Kolkata","347":"Bangalore","348":"Delhi","349":"Chandigarh","350":"Chennai","351":"Bangalore","352":"Dharamsala","353":"Kolkata","354":"Chennai","355":"Kolkata","356":"Jaipur","357":"Mumbai","358":"Chennai","359":"Raipur","360":"Jaipur","361":"Mumbai","362":"Pune","363":"Hyderabad","364":"Raipur","365":"Chennai","366":"Pune","367":"Kolkata","368":"Hyderabad","369":"Bangalore","370":"Mumbai","371":"Jaipur","372":"Bangalore","373":"Jaipur","374":"Mumbai","375":"Hyderabad","376":"Chandigarh","377":"Pune","378":"Delhi","379":"Pune","380":"Chandigarh","381":"Ranchi","382":"Jaipur","383":"Delhi","384":"Mumbai","385":"Ranchi","386":"Chennai","387":"Mumbai","388":"Chandigarh","389":"Hyderabad","390":"Dharamsala","391":"Pune","392":"Bangalore","393":"Hyderabad","394":"Delhi","395":"Delhi","396":"Kolkata","397":"Kolkata","398":"Abu Dhabi","399":null,"400":"Abu Dhabi","401":"Abu Dhabi","402":null,"403":null,"404":null,"405":"Abu Dhabi","406":null,"407":null,"408":null,"409":null,"410":null,"411":"Abu Dhabi","412":"Abu Dhabi","413":null,"414":null,"415":null,"416":"Abu Dhabi","417":null,"418":"Ranchi","419":"Mumbai","420":"Delhi","421":"Bangalore","422":"Ahmedabad","423":"Delhi","424":"Mumbai","425":"Delhi","426":"Cuttack","427":"Ahmedabad","428":"Bangalore","429":"Delhi","430":"Mumbai","431":"Cuttack","432":"Bangalore","433":"Hyderabad","434":"Ranchi","435":"Bangalore","436":"Hyderabad","437":"Cuttack","438":"Ahmedabad","439":"Ranchi","440":"Hyderabad","441":"Ahmedabad","442":"Delhi","443":"Hyderabad","444":"Kolkata","445":"Chandigarh","446":"Kolkata","447":"Ranchi","448":"Mumbai","449":"Chandigarh","450":"Bangalore","451":"Kolkata","452":"Chandigarh","453":"Mumbai","454":"Kolkata","455":"Mumbai","456":"Mumbai","457":"Bangalore","458":"Kolkata","459":"Chennai","460":"Pune","461":"Chennai","462":"Kolkata","463":"Delhi","464":"Mumbai","465":"Bangalore","466":"Ahmedabad","467":"Kolkata","468":"Pune","469":"Visakhapatnam","470":"Mumbai","471":"Visakhapatnam","472":"Pune","473":"Ahmedabad","474":"Bangalore","475":"Delhi","476":"Ahmedabad","477":"Visakhapatnam","478":"Bangalore","479":"Delhi","480":"Ahmedabad","481":"Mumbai","482":"Chennai","483":"Delhi","484":"Chandigarh","485":"Kolkata","486":"Bangalore","487":"Chennai","488":"Delhi","489":"Mumbai","490":"Bangalore","491":"Hyderabad","492":"Chandigarh","493":"Mumbai","494":"Chennai","495":"Kolkata","496":"Mumbai","497":"Bangalore","498":"Mumbai","499":"Chennai","500":"Kolkata","501":"Raipur","502":"Mumbai","503":"Chennai","504":"Hyderabad","505":"Raipur","506":"Chandigarh","507":"Mumbai","508":"Hyderabad","509":"Chandigarh","510":"Mumbai","511":"Bangalore","512":"Hyderabad","513":"Mumbai","514":"Pune","515":"Ranchi","516":"Kolkata","517":"Mumbai","518":"Kolkata","519":"Chandigarh","520":"Bangalore","521":"Kolkata","522":"Rajkot","523":"Delhi","524":"Hyderabad","525":"Mumbai","526":"Chandigarh","527":"Bangalore","528":"Hyderabad","529":"Chandigarh","530":"Mumbai","531":"Rajkot","532":"Pune","533":"Delhi","534":"Hyderabad","535":"Rajkot","536":"Pune","537":"Chandigarh","538":"Hyderabad","539":"Delhi","540":"Mumbai","541":"Pune","542":"Delhi","543":"Hyderabad","544":"Rajkot","545":"Pune","546":"Bangalore","547":"Rajkot","548":"Kolkata","549":"Delhi","550":"Hyderabad","551":"Bangalore","552":"Chandigarh","553":"Visakhapatnam","554":"Kolkata","555":"Chandigarh","556":"Visakhapatnam","557":"Bangalore","558":"Hyderabad","559":"Visakhapatnam","560":"Bangalore","561":"Kolkata","562":"Chandigarh","563":"Visakhapatnam","564":"Kolkata","565":"Visakhapatnam","566":"Bangalore","567":"Kanpur","568":"Raipur","569":"Visakhapatnam","570":"Kanpur","571":"Kolkata","572":"Raipur","573":"Bangalore","574":"Delhi","575":"Delhi","576":"Bangalore","577":"Hyderabad","578":"Pune","579":"Rajkot","580":"Indore","581":"Bengaluru","582":"Hyderabad","583":"Mumbai","584":"Indore","585":"Pune","586":"Mumbai","587":"Kolkata","588":"Bangalore","589":"Rajkot","590":"Kolkata","591":"Delhi","592":"Mumbai","593":"Bangalore","594":"Delhi","595":"Hyderabad","596":"Rajkot","597":"Hyderabad","598":"Indore","599":"Kolkata","600":"Mumbai","601":"Pune","602":"Rajkot","603":"Kolkata","604":"Mumbai","605":"Pune","606":"Bangalore","607":"Kolkata","608":"Chandigarh","609":"Pune","610":"Rajkot","611":"Chandigarh","612":"Hyderabad","613":"Mumbai","614":"Pune","615":"Delhi","616":"Kolkata","617":"Delhi","618":"Bangalore","619":"Hyderabad","620":"Delhi","621":"Bangalore","622":"Chandigarh","623":"Hyderabad","624":"Chandigarh","625":"Kanpur","626":"Mumbai","627":"Delhi","628":"Kanpur","629":"Kolkata","630":"Pune","631":"Delhi","632":"Mumbai","633":"Bangalore","634":"Bangalore","635":"Hyderabad","636":"Mumbai","637":"Chandigarh","638":"Kolkata","639":"Hyderabad","640":"Chennai","641":"Jaipur","642":"Hyderabad","643":"Bengaluru","644":"Mumbai","645":"Kolkata","646":"Bengaluru","647":"Chandigarh","648":"Kolkata","649":"Mumbai","650":"Jaipur","651":"Chandigarh","652":"Pune","653":"Kolkata","654":"Bengaluru","655":"Hyderabad","656":"Jaipur","657":"Delhi","658":"Mumbai","659":"Bengaluru","660":"Hyderabad","661":"Delhi","662":"Pune","663":"Jaipur","664":"Bengaluru","665":"Pune","666":"Bengaluru","667":"Delhi","668":"Kolkata","669":"Indore","670":"Pune","671":"Hyderabad","672":"Mumbai","673":"Indore","674":"Hyderabad","675":"Jaipur","676":"Kolkata","677":"Delhi","678":"Jaipur","679":"Indore","680":"Delhi","681":"Pune","682":"Mumbai","683":"Indore","684":"Kolkata","685":"Mumbai","686":"Bengaluru","687":"Delhi","688":"Jaipur","689":"Hyderabad","690":"Delhi","691":"Pune","692":"Mumbai","693":"Kolkata","694":"Kolkata","695":"Mumbai","696":"Chennai","697":"Kolkata","698":"Mumbai","699":"Jaipur","700":"Delhi","701":"Kolkata","702":"Bengaluru","703":"Hyderabad","704":"Chandigarh","705":"Delhi","706":"Hyderabad","707":"Chennai","708":"Chandigarh","709":"Jaipur","710":"Mumbai","711":"Delhi","712":"Bengaluru","713":"Chennai","714":"Hyderabad","715":"Bengaluru","716":"Jaipur","717":"Chandigarh","718":"Chennai","719":"Mumbai","720":"Jaipur","721":"Kolkata","722":"Mumbai","723":"Chandigarh","724":"Kolkata","725":"Hyderabad","726":"Mumbai","727":"Chandigarh","728":"Hyderabad","729":"Delhi","730":"Kolkata","731":"Jaipur","732":"Delhi","733":"Hyderabad","734":"Bengaluru","735":"Jaipur","736":"Chennai","737":"Bengaluru","738":"Kolkata","739":"Chennai","740":"Jaipur","741":"Delhi","742":"Kolkata","743":"Hyderabad","744":"Bengaluru","745":"Chennai","746":"Mumbai","747":"Chandigarh","748":"Delhi","749":"Bengaluru","750":"Chandigarh","751":"Mumbai","752":"Chennai","753":"Visakhapatnam","754":"Visakhapatnam","755":"Hyderabad","756":"Abu Dhabi","757":"Dubai","758":"Abu Dhabi","759":"Sharjah","760":"Sharjah","761":"Abu Dhabi","762":"Dubai","763":"Abu Dhabi","764":"Sharjah","765":"Abu Dhabi","766":"Sharjah","767":"Abu Dhabi","768":"Dubai","769":"Abu Dhabi","770":"Abu Dhabi","771":"Dubai","772":"Abu Dhabi","773":"Sharjah","774":"Dubai","775":"Abu Dhabi","776":"Abu Dhabi","777":"Dubai","778":"Abu Dhabi","779":"Sharjah","780":"Dubai","781":"Dubai","782":"Dubai","783":"Dubai","784":"Sharjah","785":"Sharjah","786":"Dubai","787":"Abu Dhabi","788":"Dubai","789":"Dubai","790":"Abu Dhabi","791":"Sharjah","792":"Dubai","793":"Abu Dhabi","794":"Dubai","795":"Sharjah","796":"Abu Dhabi","797":"Abu Dhabi","798":"Dubai","799":"Dubai","800":"Dubai","801":"Abu Dhabi","802":"Sharjah","803":"Dubai","804":"Sharjah","805":"Abu Dhabi","806":"Dubai","807":"Dubai","808":"Dubai","809":"Abu Dhabi","810":"Dubai","811":"Dubai","812":"Dubai","813":"Abu Dhabi","814":"Abu Dhabi","815":"Dubai"},"date":{"0":"2008-04-18","1":"2008-04-19","2":"2008-04-19","3":"2008-04-20","4":"2008-04-20","5":"2008-04-21","6":"2008-04-22","7":"2008-04-23","8":"2008-04-24","9":"2008-04-25","10":"2008-04-26","11":"2008-04-26","12":"2008-04-27","13":"2008-04-27","14":"2008-04-28","15":"2008-04-29","16":"2008-04-30","17":"2008-05-01","18":"2008-05-01","19":"2008-05-02","20":"2008-05-25","21":"2008-05-03","22":"2008-05-04","23":"2008-05-04","24":"2008-05-05","25":"2008-05-06","26":"2008-05-07","27":"2008-05-08","28":"2008-05-08","29":"2008-05-09","30":"2008-05-28","31":"2008-05-10","32":"2008-05-11","33":"2008-05-11","34":"2008-05-12","35":"2008-05-13","36":"2008-05-14","37":"2008-05-28","38":"2008-05-15","39":"2008-05-16","40":"2008-05-17","41":"2008-05-17","42":"2008-05-18","43":"2008-05-18","44":"2008-05-19","45":"2008-05-20","46":"2008-05-21","47":"2008-05-21","48":"2008-05-23","49":"2008-05-24","50":"2008-05-24","51":"2008-05-03","52":"2008-05-25","53":"2008-05-26","54":"2008-05-27","55":"2008-05-30","56":"2008-05-31","57":"2008-06-01","58":"2009-04-18","59":"2009-04-18","60":"2009-04-19","61":"2009-04-19","62":"2009-04-20","63":"2009-04-21","64":"2009-04-22","65":"2009-04-23","66":"2009-04-23","67":"2009-04-24","68":"2009-04-25","69":"2009-04-26","70":"2009-04-26","71":"2009-04-27","72":"2009-04-27","73":"2009-04-28","74":"2009-04-29","75":"2009-04-29","76":"2009-04-30","77":"2009-04-30","78":"2009-05-01","79":"2009-05-01","80":"2009-05-02","81":"2009-05-02","82":"2009-05-03","83":"2009-05-03","84":"2009-05-04","85":"2009-05-05","86":"2009-05-05","87":"2009-05-06","88":"2009-05-07","89":"2009-05-07","90":"2009-05-08","91":"2009-05-09","92":"2009-05-09","93":"2009-05-10","94":"2009-05-10","95":"2009-05-11","96":"2009-05-12","97":"2009-05-12","98":"2009-05-13","99":"2009-05-14","100":"2009-05-14","101":"2009-05-15","102":"2009-05-16","103":"2009-05-16","104":"2009-05-17","105":"2009-05-17","106":"2009-05-18","107":"2009-05-19","108":"2009-05-20","109":"2009-05-20","110":"2009-05-21","111":"2009-05-21","112":"2009-05-22","113":"2009-05-23","114":"2009-05-24","115":"2010-03-12","116":"2010-03-13","117":"2010-03-13","118":"2010-03-14","119":"2010-03-14","120":"2010-03-15","121":"2010-03-16","122":"2010-03-16","123":"2010-03-17","124":"2010-03-18","125":"2010-03-19","126":"2010-03-19","127":"2010-03-20","128":"2010-03-20","129":"2010-03-21","130":"2010-03-21","131":"2010-03-22","132":"2010-03-23","133":"2010-03-24","134":"2010-03-25","135":"2010-03-26","136":"2010-03-27","137":"2010-03-25","138":"2010-03-28","139":"2010-03-28","140":"2010-03-29","141":"2010-03-30","142":"2010-03-31","143":"2010-03-31","144":"2010-04-01","145":"2010-04-02","146":"2010-04-03","147":"2010-04-03","148":"2010-04-04","149":"2010-04-04","150":"2010-04-05","151":"2010-04-06","152":"2010-04-07","153":"2010-04-07","154":"2010-04-08","155":"2010-04-09","156":"2010-04-10","157":"2010-04-10","158":"2010-04-11","159":"2010-04-11","160":"2010-04-12","161":"2010-04-13","162":"2010-04-13","163":"2010-04-14","164":"2010-04-15","165":"2010-04-16","166":"2010-04-17","167":"2010-04-17","168":"2010-04-18","169":"2010-04-18","170":"2010-04-19","171":"2010-04-21","172":"2010-04-22","173":"2010-04-24","174":"2010-04-25","175":"2011-04-08","176":"2011-04-09","177":"2011-04-09","178":"2011-04-10","179":"2011-04-10","180":"2011-04-11","181":"2011-04-12","182":"2011-04-12","183":"2011-04-13","184":"2011-04-13","185":"2011-04-14","186":"2011-04-15","187":"2011-04-15","188":"2011-04-16","189":"2011-04-16","190":"2011-04-17","191":"2011-04-17","192":"2011-04-18","193":"2011-04-19","194":"2011-04-20","195":"2011-04-20","196":"2011-04-21","197":"2011-04-22","198":"2011-04-22","199":"2011-04-23","200":"2011-04-24","201":"2011-04-24","202":"2011-04-25","203":"2011-04-26","204":"2011-04-27","205":"2011-04-27","206":"2011-04-28","207":"2011-04-29","208":"2011-04-29","209":"2011-04-30","210":"2011-04-30","211":"2011-05-01","212":"2011-05-01","213":"2011-05-02","214":"2011-05-02","215":"2011-05-03","216":"2011-05-04","217":"2011-05-04","218":"2011-05-05","219":"2011-05-05","220":"2011-05-06","221":"2011-05-07","222":"2011-05-07","223":"2011-05-08","224":"2011-05-08","225":"2011-05-09","226":"2011-05-10","227":"2011-05-10","228":"2011-05-11","229":"2011-05-12","230":"2011-05-13","231":"2011-05-14","232":"2011-05-14","233":"2011-05-15","234":"2011-05-15","235":"2011-05-16","236":"2011-05-17","237":"2011-05-18","238":"2011-05-19","239":"2011-05-20","240":"2011-05-21","241":"2011-05-21","242":"2011-05-22","243":"2011-05-22","244":"2011-05-24","245":"2011-05-25","246":"2011-05-27","247":"2011-05-28","248":"2012-04-04","249":"2012-04-05","250":"2012-04-06","251":"2012-04-06","252":"2012-04-07","253":"2012-04-07","254":"2012-04-08","255":"2012-04-08","256":"2012-04-09","257":"2012-04-10","258":"2012-04-10","259":"2012-04-11","260":"2012-04-12","261":"2012-04-12","262":"2012-04-13","263":"2012-04-19","264":"2012-04-14","265":"2012-04-15","266":"2012-04-15","267":"2012-04-16","268":"2012-04-17","269":"2012-04-17","270":"2012-04-18","271":"2012-05-10","272":"2012-04-19","273":"2012-04-20","274":"2012-04-21","275":"2012-04-21","276":"2012-04-22","277":"2012-04-22","278":"2012-04-23","279":"2012-04-24","280":"2012-04-25","281":"2012-04-26","282":"2012-04-27","283":"2012-04-28","284":"2012-04-28","285":"2012-04-29","286":"2012-04-29","287":"2012-04-30","288":"2012-05-01","289":"2012-05-01","290":"2012-05-02","291":"2012-05-03","292":"2012-05-04","293":"2012-05-05","294":"2012-05-05","295":"2012-05-06","296":"2012-05-06","297":"2012-05-07","298":"2012-05-08","299":"2012-05-08","300":"2012-05-09","301":"2012-05-10","302":"2012-05-11","303":"2012-05-12","304":"2012-05-12","305":"2012-05-13","306":"2012-05-13","307":"2012-05-14","308":"2012-05-14","309":"2012-05-15","310":"2012-05-16","311":"2012-05-17","312":"2012-05-17","313":"2012-05-18","314":"2012-05-19","315":"2012-05-19","316":"2012-05-20","317":"2012-05-20","318":"2012-05-22","319":"2012-05-23","320":"2012-05-25","321":"2012-05-27","322":"2013-04-03","323":"2013-04-04","324":"2013-04-05","325":"2013-04-06","326":"2013-04-06","327":"2013-04-07","328":"2013-04-07","329":"2013-04-08","330":"2013-04-09","331":"2013-04-10","332":"2013-04-11","333":"2013-04-11","334":"2013-04-12","335":"2013-04-13","336":"2013-04-13","337":"2013-04-14","338":"2013-04-14","339":"2013-04-15","340":"2013-04-16","341":"2013-04-16","342":"2013-04-17","343":"2013-04-17","344":"2013-04-18","345":"2013-04-19","346":"2013-04-20","347":"2013-04-20","348":"2013-04-21","349":"2013-04-21","350":"2013-04-22","351":"2013-04-23","352":"2013-05-16","353":"2013-04-24","354":"2013-04-25","355":"2013-04-26","356":"2013-04-27","357":"2013-04-27","358":"2013-04-28","359":"2013-04-28","360":"2013-04-29","361":"2013-04-29","362":"2013-04-30","363":"2013-05-01","364":"2013-05-01","365":"2013-05-02","366":"2013-05-02","367":"2013-05-03","368":"2013-05-04","369":"2013-05-14","370":"2013-05-05","371":"2013-05-05","372":"2013-04-09","373":"2013-05-07","374":"2013-05-07","375":"2013-05-08","376":"2013-05-09","377":"2013-05-09","378":"2013-05-10","379":"2013-05-11","380":"2013-05-11","381":"2013-05-12","382":"2013-05-12","383":"2013-04-23","384":"2013-05-13","385":"2013-05-15","386":"2013-05-14","387":"2013-05-15","388":"2013-05-06","389":"2013-05-17","390":"2013-05-18","391":"2013-05-19","392":"2013-05-18","393":"2013-05-19","394":"2013-05-21","395":"2013-05-22","396":"2013-05-24","397":"2013-05-26","398":"2014-04-16","399":"2014-04-17","400":"2014-04-18","401":"2014-04-18","402":"2014-04-19","403":"2014-04-19","404":"2014-04-20","405":"2014-04-21","406":"2014-04-22","407":"2014-04-23","408":"2014-04-24","409":"2014-04-25","410":"2014-04-25","411":"2014-04-26","412":"2014-04-26","413":"2014-04-27","414":"2014-04-27","415":"2014-04-28","416":"2014-04-29","417":"2014-04-30","418":"2014-05-02","419":"2014-05-03","420":"2014-05-03","421":"2014-05-04","422":"2014-05-05","423":"2014-05-05","424":"2014-05-06","425":"2014-05-07","426":"2014-05-07","427":"2014-05-08","428":"2014-05-09","429":"2014-05-10","430":"2014-05-10","431":"2014-05-11","432":"2014-05-11","433":"2014-05-12","434":"2014-05-13","435":"2014-05-13","436":"2014-05-14","437":"2014-05-14","438":"2014-05-15","439":"2014-05-18","440":"2014-05-18","441":"2014-05-19","442":"2014-05-19","443":"2014-05-20","444":"2014-05-20","445":"2014-05-21","446":"2014-05-22","447":"2014-05-22","448":"2014-05-23","449":"2014-05-23","450":"2014-05-24","451":"2014-05-24","452":"2014-05-25","453":"2014-05-25","454":"2014-05-27","455":"2014-05-28","456":"2014-05-30","457":"2014-06-01","458":"2015-04-08","459":"2015-04-09","460":"2015-04-10","461":"2015-04-11","462":"2015-04-11","463":"2015-04-12","464":"2015-04-12","465":"2015-04-13","466":"2015-04-14","467":"2015-04-30","468":"2015-04-15","469":"2015-04-16","470":"2015-04-17","471":"2015-04-18","472":"2015-04-18","473":"2015-04-19","474":"2015-04-19","475":"2015-04-20","476":"2015-04-21","477":"2015-04-22","478":"2015-04-22","479":"2015-04-23","480":"2015-04-24","481":"2015-04-25","482":"2015-04-25","483":"2015-04-26","484":"2015-04-27","485":"2015-05-07","486":"2015-04-29","487":"2015-04-28","488":"2015-05-01","489":"2015-05-01","490":"2015-05-02","491":"2015-05-02","492":"2015-05-03","493":"2015-05-03","494":"2015-05-04","495":"2015-05-04","496":"2015-05-05","497":"2015-05-06","498":"2015-05-07","499":"2015-05-08","500":"2015-05-09","501":"2015-05-09","502":"2015-05-10","503":"2015-05-10","504":"2015-05-11","505":"2015-05-12","506":"2015-05-13","507":"2015-05-14","508":"2015-05-15","509":"2015-05-16","510":"2015-05-16","511":"2015-05-17","512":"2015-05-17","513":"2015-05-19","514":"2015-05-20","515":"2015-05-22","516":"2015-05-24","517":"2016-04-09","518":"2016-04-10","519":"2016-04-11","520":"2016-04-12","521":"2016-04-13","522":"2016-04-14","523":"2016-04-15","524":"2016-04-16","525":"2016-04-16","526":"2016-04-17","527":"2016-04-17","528":"2016-04-18","529":"2016-04-19","530":"2016-04-20","531":"2016-04-21","532":"2016-04-22","533":"2016-04-23","534":"2016-04-23","535":"2016-04-24","536":"2016-04-24","537":"2016-04-25","538":"2016-04-26","539":"2016-04-27","540":"2016-04-28","541":"2016-04-29","542":"2016-04-30","543":"2016-04-30","544":"2016-05-01","545":"2016-05-01","546":"2016-05-02","547":"2016-05-03","548":"2016-05-04","549":"2016-05-05","550":"2016-05-06","551":"2016-05-07","552":"2016-05-07","553":"2016-05-08","554":"2016-05-08","555":"2016-05-09","556":"2016-05-10","557":"2016-05-11","558":"2016-05-12","559":"2016-05-13","560":"2016-05-14","561":"2016-05-14","562":"2016-05-15","563":"2016-05-15","564":"2016-05-16","565":"2016-05-17","566":"2016-05-18","567":"2016-05-19","568":"2016-05-20","569":"2016-05-21","570":"2016-05-21","571":"2016-05-22","572":"2016-05-22","573":"2016-05-24","574":"2016-05-25","575":"2016-05-27","576":"2016-05-29","577":"2017-04-05","578":"2017-04-06","579":"2017-04-07","580":"2017-04-08","581":"2017-04-08","582":"2017-04-09","583":"2017-04-09","584":"2017-04-10","585":"2017-04-11","586":"2017-04-12","587":"2017-04-13","588":"2017-04-14","589":"2017-04-14","590":"2017-04-15","591":"2017-04-15","592":"2017-04-16","593":"2017-04-16","594":"2017-04-17","595":"2017-04-17","596":"2017-04-18","597":"2017-04-19","598":"2017-04-20","599":"2017-04-21","600":"2017-04-22","601":"2017-04-22","602":"2017-04-23","603":"2017-04-23","604":"2017-04-24","605":"2017-04-26","606":"2017-04-27","607":"2017-04-28","608":"2017-04-28","609":"2017-04-29","610":"2017-04-29","611":"2017-04-30","612":"2017-04-30","613":"2017-05-01","614":"2017-05-01","615":"2017-05-02","616":"2017-05-03","617":"2017-05-04","618":"2017-05-05","619":"2017-05-06","620":"2017-05-06","621":"2017-05-07","622":"2017-05-07","623":"2017-05-08","624":"2017-05-09","625":"2017-05-10","626":"2017-05-11","627":"2017-05-12","628":"2017-05-13","629":"2017-05-13","630":"2017-05-14","631":"2017-05-14","632":"2017-05-16","633":"2017-05-17","634":"2017-05-19","635":"2017-05-21","636":"2018-04-07","637":"2018-04-08","638":"2018-04-08","639":"2018-04-09","640":"2018-04-10","641":"2018-04-11","642":"2018-04-12","643":"2018-04-13","644":"2018-04-14","645":"2018-04-14","646":"2018-04-15","647":"2018-04-15","648":"2018-04-16","649":"2018-04-17","650":"2018-04-18","651":"2018-04-19","652":"2018-04-20","653":"2018-04-21","654":"2018-04-21","655":"2018-04-22","656":"2018-04-22","657":"2018-04-23","658":"2018-04-24","659":"2018-04-25","660":"2018-04-26","661":"2018-04-27","662":"2018-04-28","663":"2018-04-29","664":"2018-04-29","665":"2018-04-30","666":"2018-05-01","667":"2018-05-02","668":"2018-05-03","669":"2018-05-04","670":"2018-05-05","671":"2018-05-05","672":"2018-05-06","673":"2018-05-06","674":"2018-05-07","675":"2018-05-08","676":"2018-05-09","677":"2018-05-10","678":"2018-05-11","679":"2018-05-12","680":"2018-05-12","681":"2018-05-13","682":"2018-05-13","683":"2018-05-14","684":"2018-05-15","685":"2018-05-16","686":"2018-05-17","687":"2018-05-18","688":"2018-05-19","689":"2018-05-19","690":"2018-05-20","691":"2018-05-20","692":"2018-05-22","693":"2018-05-23","694":"2018-05-25","695":"2018-05-27","696":"2019-03-23","697":"2019-03-24","698":"2019-03-24","699":"2019-03-25","700":"2019-03-26","701":"2019-03-27","702":"2019-03-28","703":"2019-03-29","704":"2019-03-30","705":"2019-03-30","706":"2019-03-31","707":"2019-03-31","708":"2019-04-01","709":"2019-04-02","710":"2019-04-03","711":"2019-04-04","712":"2019-04-05","713":"2019-04-06","714":"2019-04-06","715":"2019-04-07","716":"2019-04-07","717":"2019-04-08","718":"2019-04-09","719":"2019-04-10","720":"2019-04-11","721":"2019-04-12","722":"2019-04-13","723":"2019-04-13","724":"2019-04-14","725":"2019-04-14","726":"2019-04-15","727":"2019-04-16","728":"2019-04-17","729":"2019-04-18","730":"2019-04-19","731":"2019-04-20","732":"2019-04-20","733":"2019-04-21","734":"2019-04-21","735":"2019-04-22","736":"2019-04-23","737":"2019-04-24","738":"2019-04-25","739":"2019-04-26","740":"2019-04-27","741":"2019-04-28","742":"2019-04-28","743":"2019-04-29","744":"2019-04-30","745":"2019-05-01","746":"2019-05-02","747":"2019-05-03","748":"2019-05-04","749":"2019-05-04","750":"2019-05-05","751":"2019-05-05","752":"2019-05-07","753":"2019-05-08","754":"2019-05-10","755":"2019-05-12","756":"2020-09-19","757":"2020-09-20","758":"2020-10-21","759":"2020-11-03","760":"2020-09-22","761":"2020-10-24","762":"2020-10-24","763":"2020-10-28","764":"2020-10-09","765":"2020-10-07","766":"2020-10-31","767":"2020-10-01","768":"2020-09-30","769":"2020-11-02","770":"2020-11-01","771":"2020-10-11","772":"2020-09-23","773":"2020-10-17","774":"2020-09-24","775":"2020-10-06","776":"2020-10-18","777":"2020-10-04","778":"2020-10-03","779":"2020-10-03","780":"2020-10-02","781":"2020-10-18","782":"2020-10-22","783":"2020-10-05","784":"2020-10-26","785":"2020-10-23","786":"2020-10-17","787":"2020-10-10","788":"2020-10-27","789":"2020-10-10","790":"2020-10-16","791":"2020-09-27","792":"2020-10-13","793":"2020-10-11","794":"2020-11-01","795":"2020-10-15","796":"2020-09-29","797":"2020-10-19","798":"2020-09-21","799":"2020-10-31","800":"2020-10-29","801":"2020-10-30","802":"2020-10-04","803":"2020-09-25","804":"2020-10-12","805":"2020-10-25","806":"2020-10-08","807":"2020-10-14","808":"2020-10-25","809":"2020-09-26","810":"2020-10-20","811":"2020-09-28","812":"2020-11-05","813":"2020-11-06","814":"2020-11-08","815":"2020-11-10"},"player_of_match":{"0":"BB McCullum","1":"MEK Hussey","2":"MF Maharoof","3":"MV Boucher","4":"DJ Hussey","5":"SR Watson","6":"V Sehwag","7":"ML Hayden","8":"YK Pathan","9":"KC Sangakkara","10":"SR Watson","11":"JDP Oram","12":"AC Gilchrist","13":"SM Katich","14":"MS Dhoni","15":"ST Jayasuriya","16":"GD McGrath","17":"SE Marsh","18":"SA Asnodkar","19":"V Sehwag","20":"R Vinay Kumar","21":"IK Pathan","22":"SM Pollock","23":"Sohail Tanvir","24":"S Sreesanth","25":"AC Gilchrist","26":"A Nehra","27":"MS Dhoni","28":"SC Ganguly","29":"YK Pathan","30":"CRD Fernando","31":"L Balaji","32":"SC Ganguly","33":"SR Watson","34":"SE Marsh","35":"Shoaib Akhtar","36":"ST Jayasuriya","37":"SE Marsh","38":"A Mishra","39":"SM Pollock","40":"DPMD Jayawardene","41":"GC Smith","42":"DJ Bravo","43":"M Ntini","44":"SP Goswami","45":"YK Pathan","46":"SE Marsh","47":"A Kumble","48":"SE Marsh","49":"KD Karthik","50":"JA Morkel","51":"P Kumar","52":"Umar Gul","53":"Sohail Tanvir","54":"SK Raina","55":"SR Watson","56":"M Ntini","57":"YK Pathan","58":"SR Tendulkar","59":"R Dravid","60":"DL Vettori","61":"RP Singh","62":"M Muralitharan","63":"CH Gayle","64":"AC Gilchrist","65":"AB de Villiers","66":"YK Pathan","67":"RS Bopara","68":"PP Ojha","69":"TM Dilshan","70":"KC Sangakkara","71":"HH Gibbs","72":"SR Tendulkar","73":"YK Pathan","74":"MV Boucher","75":"KC Sangakkara","76":"DP Nannes","77":"SK Raina","78":"JP Duminy","79":"Yuvraj Singh","80":"YK Pathan","81":"SB Jakati","82":"DPMD Jayawardene","83":"JH Kallis","84":"MS Dhoni","85":"GC Smith","86":"G Gambhir","87":"RG Sharma","88":"A Singh","89":"ML Hayden","90":"A Nehra","91":"DPMD Jayawardene","92":"S Badrinath","93":"JP Duminy","94":"A Mishra","95":"DR Smith","96":"LRPL Taylor","97":"Harbhajan Singh","98":"R Bhatia","99":"LRPL Taylor","100":"SK Warne","101":"B Lee","102":"ML Hayden","103":"RG Sharma","104":"Yuvraj Singh","105":"AB de Villiers","106":"BJ Hodge","107":"JH Kallis","108":"LR Shukla","109":"M Muralitharan","110":"V Sehwag","111":"MK Pandey","112":"AC Gilchrist","113":"MK Pandey","114":"A Kumble","115":"AD Mathews","116":"YK Pathan","117":"G Gambhir","118":"MK Tiwary","119":"WPUJC Vaas","120":"V Sehwag","121":"JH Kallis","122":"MS Dhoni","123":"SR Tendulkar","124":"JH Kallis","125":"ML Hayden","126":"A Symonds","127":"AA Jhunjhunwala","128":"JH Kallis","129":"A Symonds","130":"J Theron","131":"SR Tendulkar","132":"RV Uthappa","133":"AC Voges","134":"SR Tendulkar","135":"YK Pathan","136":"MK Tiwary","137":"KM Jadhav","138":"NV Ojha","139":"Harbhajan Singh","140":"DA Warner","141":"SL Malinga","142":"M Vijay","143":"KD Karthik","144":"SC Ganguly","145":"KP Pietersen","146":"M Vijay","147":"AT Rayudu","148":"DPMD Jayawardene","149":"PD Collingwood","150":"SK Warne","151":"SK Raina","152":"MJ Lumb","153":"SC Ganguly","154":"TL Suman","155":"KC Sangakkara","156":"RJ Harris","157":"R Vinay Kumar","158":"PP Chawla","159":"SR Tendulkar","160":"Harmeet Singh","161":"KA Pollard","162":"R Ashwin","163":"KP Pietersen","164":"G Gambhir","165":"RG Sharma","166":"R McLaren","167":"JD Unadkat","168":"MS Dhoni","169":"A Symonds","170":"M Kartik","171":"KA Pollard","172":"DE Bollinger","173":"A Kumble","174":"SK Raina","175":"S Anirudha","176":"SK Trivedi","177":"AB de Villiers","178":"SL Malinga","179":"SB Wagh","180":"JH Kallis","181":"SK Warne","182":"SR Tendulkar","183":"PC Valthaty","184":"MD Mishra","185":"DW Steyn","186":"G Gambhir","187":"BB McCullum","188":"MEK Hussey","189":"PC Valthaty","190":"Yuvraj Singh","191":"L Balaji","192":"BB McCullum","193":"S Sohal","194":"MM Patel","195":"DPMD Jayawardene","196":"SE Marsh","197":"Harbhajan Singh","198":"CH Gayle","199":"DA Warner","200":"SL Malinga","201":"SK Warne","202":"MEK Hussey","203":"V Kohli","204":"DE Bollinger","205":"I Sharma","206":"MK Tiwary","207":"J Botha","208":"V Kohli","209":"V Sehwag","210":"Iqbal Abdulla","211":"LRPL Taylor","212":"JA Morkel","213":"KA Pollard","214":"P Parameswaran","215":"YK Pathan","216":"MEK Hussey","217":"R Sharma","218":"BJ Hodge","219":"V Sehwag","220":"CH Gayle","221":"Iqbal Abdulla","222":"AT Rayudu","223":"CH Gayle","224":"R Sharma","225":"M Vijay","226":"MR Marsh","227":"BA Bhatt","228":"S Aravind","229":"MS Dhoni","230":"KD Karthik","231":"CH Gayle","232":"A Mishra","233":"PP Chawla","234":"BJ Hodge","235":"A Mishra","236":"AC Gilchrist","237":"WP Saha","238":"YK Pathan","239":"SR Watson","240":"S Dhawan","241":null,"242":"CH Gayle","243":"JEC Franklin","244":"SK Raina","245":"MM Patel","246":"CH Gayle","247":"M Vijay","248":"RE Levi","249":"IK Pathan","250":"SPD Smith","251":"AM Rahane","252":"AB de Villiers","253":"RA Jadeja","254":"BJ Hodge","255":"MN Samuels","256":"RG Sharma","257":"L Balaji","258":"M Morkel","259":"KA Pollard","260":"F du Plessis","261":"AD Mascarenhas","262":"Shakib Al Hasan","263":"KP Pietersen","264":"JD Ryder","265":"SP Narine","266":"AM Rahane","267":"S Nadeem","268":"BJ Hodge","269":"CH Gayle","270":"G Gambhir","271":"DA Warner","272":"KMDN Kulasekara","273":"CH Gayle","274":"F du Plessis","275":"SC Ganguly","276":"SE Marsh","277":"B Lee","278":"AB de Villiers","279":"V Sehwag","280":"AT Rayudu","281":"CL White","282":"V Sehwag","283":"Mandeep Singh","284":"G Gambhir","285":"V Sehwag","286":"DW Steyn","287":"G Gambhir","288":"KC Sangakkara","289":"P Negi","290":"Azhar Mahmood","291":"SL Malinga","292":"SK Raina","293":"SP Narine","294":"SR Watson","295":"DR Smith","296":"AB de Villiers","297":"JH Kallis","298":"SR Watson","299":"Mandeep Singh","300":"CH Gayle","301":"BW Hilfenhaus","302":"CH Gayle","303":"RG Sharma","304":"BW Hilfenhaus","305":"A Chandila","306":"DJ Hussey","307":"AT Rayudu","308":"MEK Hussey","309":"UT Yadav","310":"SP Narine","311":"AC Gilchrist","312":"CH Gayle","313":"DW Steyn","314":"UT Yadav","315":"Shakib Al Hasan","316":"DW Steyn","317":"DR Smith","318":"YK Pathan","319":"MS Dhoni","320":"M Vijay","321":"MS Bisla","322":"SP Narine","323":"CH Gayle","324":"A Mishra","325":"R Dravid","326":"KA Pollard","327":"M Vohra","328":"GH Vihari","329":"SK Trivedi","330":"KD Karthik","331":"MEK Hussey","332":"CH Gayle","333":"AJ Finch","334":"A Mishra","335":"RG Sharma","336":"RA Jadeja","337":"G Gambhir","338":"JP Faulkner","339":"SPD Smith","340":"MS Gony","341":"V Kohli","342":"A Mishra","343":"AM Rahane","344":"MEK Hussey","345":"GH Vihari","346":"RA Jadeja","347":"R Vinay Kumar","348":"V Sehwag","349":"DA Miller","350":"MEK Hussey","351":"CH Gayle","352":"DA Miller","353":"DR Smith","354":"MS Dhoni","355":"JH Kallis","356":"JP Faulkner","357":"DR Smith","358":"MEK Hussey","359":"DA Warner","360":"SV Samson","361":"RG Sharma","362":"MS Dhoni","363":"I Sharma","364":"DA Warner","365":"SK Raina","366":"AB de Villiers","367":"YK Pathan","368":"DJG Sammy","369":"AC Gilchrist","370":"MG Johnson","371":"AM Rahane","372":"V Kohli","373":"AM Rahane","374":"SR Tendulkar","375":"SK Raina","376":"KK Cooper","377":"G Gambhir","378":"JD Unadkat","379":"MG Johnson","380":"PA Patel","381":"JH Kallis","382":"SR Watson","383":"Harmeet Singh","384":"KA Pollard","385":"MK Pandey","386":"MS Dhoni","387":"AP Tare","388":"DA Miller","389":"A Mishra","390":"Azhar Mahmood","391":"LJ Wright","392":"V Kohli","393":"PA Patel","394":"MEK Hussey","395":"BJ Hodge","396":"Harbhajan Singh","397":"KA Pollard","398":"JH Kallis","399":"YS Chahal","400":"GJ Maxwell","401":"AM Rahane","402":"PA Patel","403":"JP Duminy","404":"GJ Maxwell","405":"SK Raina","406":"GJ Maxwell","407":"RA Jadeja","408":"CA Lynn","409":"AJ Finch","410":"MM Sharma","411":"PV Tambe","412":"Sandeep Sharma","413":"M Vijay","414":"DR Smith","415":"Sandeep Sharma","416":"JP Faulkner","417":"B Kumar","418":"RA Jadeja","419":"CJ Anderson","420":"KK Nair","421":"AB de Villiers","422":"PV Tambe","423":"DR Smith","424":"RG Sharma","425":"G Gambhir","426":"GJ Maxwell","427":"B Kumar","428":"Sandeep Sharma","429":"DW Steyn","430":"DR Smith","431":"G Gambhir","432":"JP Faulkner","433":"AT Rayudu","434":"RA Jadeja","435":"Yuvraj Singh","436":"WP Saha","437":"RV Uthappa","438":"AM Rahane","439":"AB de Villiers","440":"UT Yadav","441":"MEK Hussey","442":"AR Patel","443":"DA Warner","444":"RV Uthappa","445":"LMP Simmons","446":"RV Uthappa","447":"DA Warner","448":"MEK Hussey","449":"SE Marsh","450":"MS Dhoni","451":"YK Pathan","452":"M Vohra","453":"CJ Anderson","454":"UT Yadav","455":"SK Raina","456":"V Sehwag","457":"MK Pandey","458":"M Morkel","459":"A Nehra","460":"JP Faulkner","461":"BB McCullum","462":"CH Gayle","463":"DJ Hooda","464":"GJ Bailey","465":"DA Warner","466":"SPD Smith","467":"AD Russell","468":"MA Agarwal","469":"AM Rahane","470":"A Nehra","471":"JP Duminy","472":"AD Russell","473":"AM Rahane","474":"Harbhajan Singh","475":"UT Yadav","476":"SE Marsh","477":"DA Warner","478":"SK Raina","479":"SS Iyer","480":"MA Starc","481":"SL Malinga","482":"BB McCullum","483":"VR Aaron","484":"TA Boult","485":"PP Chawla","486":null,"487":"DJ Bravo","488":"NM Coulter-Nile","489":"AT Rayudu","490":"Mandeep Singh","491":"DA Warner","492":"LMP Simmons","493":"AM Rahane","494":"SK Raina","495":"UT Yadav","496":"Harbhajan Singh","497":"CH Gayle","498":"EJG Morgan","499":"HH Pandya","500":"AD Russell","501":"MC Henriques","502":"AB de Villiers","503":"RA Jadeja","504":"DA Warner","505":"Z Khan","506":"AR Patel","507":"HH Pandya","508":"V Kohli","509":"P Negi","510":"SR Watson","511":null,"512":"MJ McClenaghan","513":"KA Pollard","514":"AB de Villiers","515":"A Nehra","516":"RG Sharma","517":"AM Rahane","518":"AD Russell","519":"AJ Finch","520":"AB de Villiers","521":"RG Sharma","522":"AJ Finch","523":"A Mishra","524":"G Gambhir","525":"AJ Finch","526":"M Vohra","527":"Q de Kock","528":"DA Warner","529":"RV Uthappa","530":"RG Sharma","531":"B Kumar","532":"AB de Villiers","533":"SV Samson","534":"Mustafizur Rahman","535":"V Kohli","536":"SA Yadav","537":"PA Patel","538":"AB Dinda","539":"CH Morris","540":"RG Sharma","541":"DR Smith","542":"CR Brathwaite","543":"DA Warner","544":"AR Patel","545":"RG Sharma","546":"AD Russell","547":"RR Pant","548":"AD Russell","549":"AM Rahane","550":"B Kumar","551":"V Kohli","552":"MP Stoinis","553":"A Nehra","554":"P Kumar","555":"SR Watson","556":"A Zampa","557":"KH Pandya","558":"CH Morris","559":"MP Stoinis","560":"AB de Villiers","561":"YK Pathan","562":"HM Amla","563":"KH Pandya","564":"V Kohli","565":"AB Dinda","566":"V Kohli","567":"DR Smith","568":"KK Nair","569":"MS Dhoni","570":"SK Raina","571":"YK Pathan","572":"V Kohli","573":"AB de Villiers","574":"MC Henriques","575":"DA Warner","576":"BCJ Cutting","577":"Yuvraj Singh","578":"SPD Smith","579":"CA Lynn","580":"GJ Maxwell","581":"KM Jadhav","582":"Rashid Khan","583":"N Rana","584":"AR Patel","585":"SV Samson","586":"JJ Bumrah","587":"SP Narine","588":"KA Pollard","589":"AJ Tye","590":"RV Uthappa","591":"CJ Anderson","592":"N Rana","593":"BA Stokes","594":"NM Coulter-Nile","595":"B Kumar","596":"CH Gayle","597":"KS Williamson","598":"JC Buttler","599":"SK Raina","600":"MJ McClenaghan","601":"MS Dhoni","602":"HM Amla","603":"NM Coulter-Nile","604":"BA Stokes","605":"RV Uthappa","606":"AJ Tye","607":"G Gambhir","608":"Rashid Khan","609":"LH Ferguson","610":"KH Pandya","611":"Sandeep Sharma","612":"DA Warner","613":"RG Sharma","614":"BA Stokes","615":"Mohammed Shami","616":"RA Tripathi","617":"RR Pant","618":"Sandeep Sharma","619":"JD Unadkat","620":"LMP Simmons","621":"SP Narine","622":"DR Smith","623":"S Dhawan","624":"MM Sharma","625":"SS Iyer","626":"WP Saha","627":"KK Nair","628":"Mohammed Siraj","629":"AT Rayudu","630":"JD Unadkat","631":"HV Patel","632":"Washington Sundar","633":"NM Coulter-Nile","634":"KV Sharma","635":"KH Pandya","636":"DJ Bravo","637":"KL Rahul","638":"SP Narine","639":"S Dhawan","640":"SW Billings","641":"SV Samson","642":"Rashid Khan","643":"UT Yadav","644":"JJ Roy","645":"B Stanlake","646":"SV Samson","647":"CH Gayle","648":"N Rana","649":"RG Sharma","650":"N Rana","651":"CH Gayle","652":"SR Watson","653":"KL Rahul","654":"AB de Villiers","655":"AT Rayudu","656":"JC Archer","657":"AS Rajpoot","658":"Rashid Khan","659":"MS Dhoni","660":"AS Rajpoot","661":"SS Iyer","662":"RG Sharma","663":"KS Williamson","664":"CA Lynn","665":"SR Watson","666":"TG Southee","667":"RR Pant","668":"SP Narine","669":"SA Yadav","670":"RA Jadeja","671":"Rashid Khan","672":"HH Pandya","673":"Mujeeb Ur Rahman","674":"KS Williamson","675":"JC Buttler","676":"Ishan Kishan","677":"S Dhawan","678":"JC Buttler","679":"SP Narine","680":"AB de Villiers","681":"AT Rayudu","682":"JC Buttler","683":"UT Yadav","684":"Kuldeep Yadav","685":"JJ Bumrah","686":"AB de Villiers","687":"HV Patel","688":"S Gopal","689":"CA Lynn","690":"A Mishra","691":"L Ngidi","692":"F du Plessis","693":"AD Russell","694":"Rashid Khan","695":"SR Watson","696":"Harbhajan Singh","697":"AD Russell","698":"RR Pant","699":"CH Gayle","700":"SR Watson","701":"AD Russell","702":"JJ Bumrah","703":"Rashid Khan","704":"MA Agarwal","705":"PP Shaw","706":"JM Bairstow","707":"MS Dhoni","708":"SM Curran","709":"S Gopal","710":"HH Pandya","711":"JM Bairstow","712":"AD Russell","713":"Harbhajan Singh","714":"AS Joseph","715":"K Rabada","716":"HF Gurney","717":"KL Rahul","718":"DL Chahar","719":"KA Pollard","720":"MS Dhoni","721":"S Dhawan","722":"JC Buttler","723":"AB de Villiers","724":"Imran Tahir","725":"KMA Paul","726":"SL Malinga","727":"R Ashwin","728":"DA Warner","729":"HH Pandya","730":"V Kohli","731":"SPD Smith","732":"SS Iyer","733":"KK Ahmed","734":"PA Patel","735":"RR Pant","736":"SR Watson","737":"AB de Villiers","738":"VR Aaron","739":"RG Sharma","740":"JD Unadkat","741":"S Dhawan","742":"AD Russell","743":"DA Warner","744":null,"745":"MS Dhoni","746":"JJ Bumrah","747":"Shubman Gill","748":"A Mishra","749":"SO Hetmyer","750":"KL Rahul","751":"HH Pandya","752":"SA Yadav","753":"RR Pant","754":"F du Plessis","755":"JJ Bumrah","756":"AT Rayudu","757":"MP Stoinis","758":"Mohammed Siraj","759":"S Nadeem","760":"SV Samson","761":"CV Varun","762":"CJ Jordan","763":"SA Yadav","764":"R Ashwin","765":"RA Tripathi","766":"Sandeep Sharma","767":"KA Pollard","768":"Shivam Mavi","769":"A Nortje","770":"RD Gaikwad","771":"R Tewatia","772":"RG Sharma","773":"S Dhawan","774":"KL Rahul","775":"SA Yadav","776":"LH Ferguson","777":"SR Watson","778":"YS Chahal","779":"SS Iyer","780":"PK Garg","781":"KL Rahul","782":"MK Pandey","783":"AR Patel","784":"CH Gayle","785":"TA Boult","786":"AB de Villiers","787":"KD Karthik","788":"WP Saha","789":"V Kohli","790":"Q de Kock","791":"SV Samson","792":"RA Jadeja","793":"Q de Kock","794":"PJ Cummins","795":"KL Rahul","796":"Rashid Khan","797":"JC Buttler","798":"YS Chahal","799":"Ishan Kishan","800":"RD Gaikwad","801":"BA Stokes","802":"TA Boult","803":"PP Shaw","804":"AB de Villiers","805":"BA Stokes","806":"JM Bairstow","807":"A Nortje","808":"RD Gaikwad","809":"Shubman Gill","810":"S Dhawan","811":"AB de Villiers","812":"JJ Bumrah","813":"KS Williamson","814":"MP Stoinis","815":"TA Boult"},"venue":{"0":"M Chinnaswamy Stadium","1":"Punjab Cricket Association Stadium, Mohali","2":"Feroz Shah Kotla","3":"Wankhede Stadium","4":"Eden Gardens","5":"Sawai Mansingh Stadium","6":"Rajiv Gandhi International Stadium, Uppal","7":"MA Chidambaram Stadium, Chepauk","8":"Rajiv Gandhi International Stadium, Uppal","9":"Punjab Cricket Association Stadium, Mohali","10":"M Chinnaswamy Stadium","11":"MA Chidambaram Stadium, Chepauk","12":"Dr DY Patil Sports Academy","13":"Punjab Cricket Association Stadium, Mohali","14":"M Chinnaswamy Stadium","15":"Eden Gardens","16":"Feroz Shah Kotla","17":"Rajiv Gandhi International Stadium, Uppal","18":"Sawai Mansingh Stadium","19":"MA Chidambaram Stadium, Chepauk","20":"Rajiv Gandhi International Stadium, Uppal","21":"Punjab Cricket Association Stadium, Mohali","22":"Dr DY Patil Sports Academy","23":"Sawai Mansingh Stadium","24":"M Chinnaswamy Stadium","25":"MA Chidambaram Stadium, Chepauk","26":"Dr DY Patil Sports Academy","27":"Feroz Shah Kotla","28":"Eden Gardens","29":"Sawai Mansingh Stadium","30":"M Chinnaswamy Stadium","31":"MA Chidambaram Stadium, Chepauk","32":"Rajiv Gandhi International Stadium, Uppal","33":"Sawai Mansingh Stadium","34":"Punjab Cricket Association Stadium, Mohali","35":"Eden Gardens","36":"Wankhede Stadium","37":"Punjab Cricket Association Stadium, Mohali","38":"Feroz Shah Kotla","39":"Wankhede Stadium","40":"Feroz Shah Kotla","41":"Sawai Mansingh Stadium","42":"Rajiv Gandhi International Stadium, Uppal","43":"Eden Gardens","44":"M Chinnaswamy Stadium","45":"Eden Gardens","46":"Wankhede Stadium","47":"MA Chidambaram Stadium, Chepauk","48":"Punjab Cricket Association Stadium, Mohali","49":"Feroz Shah Kotla","50":"MA Chidambaram Stadium, Chepauk","51":"M Chinnaswamy Stadium","52":"Eden Gardens","53":"Sawai Mansingh Stadium","54":"Rajiv Gandhi International Stadium, Uppal","55":"Wankhede Stadium","56":"Wankhede Stadium","57":"Dr DY Patil Sports Academy","58":"Newlands","59":"Newlands","60":"Newlands","61":"Newlands","62":"St George's Park","63":"Kingsmead","64":"Newlands","65":"Kingsmead","66":"Newlands","67":"Kingsmead","68":"Kingsmead","69":"St George's Park","70":"Newlands","71":"Kingsmead","72":"St George's Park","73":"SuperSport Park","74":"Kingsmead","75":"Kingsmead","76":"SuperSport Park","77":"SuperSport Park","78":"Buffalo Park","79":"Kingsmead","80":"St George's Park","81":"New Wanderers Stadium","82":"St George's Park","83":"New Wanderers Stadium","84":"Buffalo Park","85":"Kingsmead","86":"Kingsmead","87":"SuperSport Park","88":"SuperSport Park","89":"SuperSport Park","90":"Buffalo Park","91":"De Beers Diamond Oval","92":"De Beers Diamond Oval","93":"St George's Park","94":"New Wanderers Stadium","95":"De Beers Diamond Oval","96":"SuperSport Park","97":"SuperSport Park","98":"Kingsmead","99":"Kingsmead","100":"Kingsmead","101":"OUTsurance Oval","102":"St George's Park","103":"New Wanderers Stadium","104":"New Wanderers Stadium","105":"OUTsurance Oval","106":"SuperSport Park","107":"New Wanderers Stadium","108":"Kingsmead","109":"Kingsmead","110":"SuperSport Park","111":"SuperSport Park","112":"SuperSport Park","113":"New Wanderers Stadium","114":"New Wanderers Stadium","115":"Dr DY Patil Sports Academy","116":"Brabourne Stadium","117":"Punjab Cricket Association Stadium, Mohali","118":"Eden Gardens","119":"MA Chidambaram Stadium, Chepauk","120":"Sardar Patel Stadium, Motera","121":"M Chinnaswamy Stadium","122":"Eden Gardens","123":"Feroz Shah Kotla","124":"M Chinnaswamy Stadium","125":"Feroz Shah Kotla","126":"Barabati Stadium","127":"Sardar Patel Stadium, Motera","128":"Brabourne Stadium","129":"Barabati Stadium","130":"MA Chidambaram Stadium, Chepauk","131":"Brabourne Stadium","132":"M Chinnaswamy Stadium","133":"Punjab Cricket Association Stadium, Mohali","134":"Brabourne Stadium","135":"Sardar Patel Stadium, Motera","136":"Punjab Cricket Association Stadium, Mohali","137":"M Chinnaswamy Stadium","138":"Sardar Patel Stadium, Motera","139":"Dr DY Patil Sports Academy","140":"Feroz Shah Kotla","141":"Brabourne Stadium","142":"MA Chidambaram Stadium, Chepauk","143":"Feroz Shah Kotla","144":"Eden Gardens","145":"Punjab Cricket Association Stadium, Mohali","146":"MA Chidambaram Stadium, Chepauk","147":"Brabourne Stadium","148":"Eden Gardens","149":"Feroz Shah Kotla","150":"Vidarbha Cricket Association Stadium, Jamtha","151":"MA Chidambaram Stadium, Chepauk","152":"Sawai Mansingh Stadium","153":"Eden Gardens","154":"M Chinnaswamy Stadium","155":"Punjab Cricket Association Stadium, Mohali","156":"Vidarbha Cricket Association Stadium, Jamtha","157":"M Chinnaswamy Stadium","158":"Feroz Shah Kotla","159":"Sawai Mansingh Stadium","160":"Vidarbha Cricket Association Stadium, Jamtha","161":"Brabourne Stadium","162":"MA Chidambaram Stadium, Chepauk","163":"Sawai Mansingh Stadium","164":"MA Chidambaram Stadium, Chepauk","165":"Himachal Pradesh Cricket Association Stadium","166":"M Chinnaswamy Stadium","167":"Eden Gardens","168":"Himachal Pradesh Cricket Association Stadium","169":"Feroz Shah Kotla","170":"Eden Gardens","171":"Dr DY Patil Sports Academy","172":"Dr DY Patil Sports Academy","173":"Dr DY Patil Sports Academy","174":"Dr DY Patil Sports Academy","175":"MA Chidambaram Stadium, Chepauk","176":"Rajiv Gandhi International Stadium, Uppal","177":"Nehru Stadium","178":"Feroz Shah Kotla","179":"Dr DY Patil Sports Academy","180":"Eden Gardens","181":"Sawai Mansingh Stadium","182":"M Chinnaswamy Stadium","183":"Punjab Cricket Association Stadium, Mohali","184":"Dr DY Patil Sports Academy","185":"Rajiv Gandhi International Stadium, Uppal","186":"Sawai Mansingh Stadium","187":"Wankhede Stadium","188":"MA Chidambaram Stadium, Chepauk","189":"Rajiv Gandhi International Stadium, Uppal","190":"Dr DY Patil Sports Academy","191":"Eden Gardens","192":"Nehru Stadium","193":"Feroz Shah Kotla","194":"Wankhede Stadium","195":"Eden Gardens","196":"Punjab Cricket Association Stadium, Mohali","197":"Wankhede Stadium","198":"Eden Gardens","199":"Feroz Shah Kotla","200":"Rajiv Gandhi International Stadium, Uppal","201":"Sawai Mansingh Stadium","202":"MA Chidambaram Stadium, Chepauk","203":"Feroz Shah Kotla","204":"Dr DY Patil Sports Academy","205":"Nehru Stadium","206":"Feroz Shah Kotla","207":"Sawai Mansingh Stadium","208":"M Chinnaswamy Stadium","209":"Nehru Stadium","210":"Eden Gardens","211":"Sawai Mansingh Stadium","212":"MA Chidambaram Stadium, Chepauk","213":"Wankhede Stadium","214":"Feroz Shah Kotla","215":"Rajiv Gandhi International Stadium, Uppal","216":"MA Chidambaram Stadium, Chepauk","217":"Dr DY Patil Sports Academy","218":"Nehru Stadium","219":"Rajiv Gandhi International Stadium, Uppal","220":"M Chinnaswamy Stadium","221":"Eden Gardens","222":"Wankhede Stadium","223":"M Chinnaswamy Stadium","224":"Punjab Cricket Association Stadium, Mohali","225":"Sawai Mansingh Stadium","226":"Rajiv Gandhi International Stadium, Uppal","227":"Punjab Cricket Association Stadium, Mohali","228":"Sawai Mansingh Stadium","229":"MA Chidambaram Stadium, Chepauk","230":"Holkar Cricket Stadium","231":"M Chinnaswamy Stadium","232":"Wankhede Stadium","233":"Himachal Pradesh Cricket Association Stadium","234":"Holkar Cricket Stadium","235":"Dr DY Patil Sports Academy","236":"Himachal Pradesh Cricket Association Stadium","237":"MA Chidambaram Stadium, Chepauk","238":"Dr DY Patil Sports Academy","239":"Wankhede Stadium","240":"Himachal Pradesh Cricket Association Stadium","241":"Feroz Shah Kotla","242":"M Chinnaswamy Stadium","243":"Eden Gardens","244":"Wankhede Stadium","245":"Wankhede Stadium","246":"MA Chidambaram Stadium, Chepauk","247":"MA Chidambaram Stadium, Chepauk","248":"MA Chidambaram Stadium, Chepauk","249":"Eden Gardens","250":"Wankhede Stadium","251":"Sawai Mansingh Stadium","252":"M Chinnaswamy Stadium","253":"Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium","254":"Sawai Mansingh Stadium","255":"Subrata Roy Sahara Stadium","256":"Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium","257":"M Chinnaswamy Stadium","258":"Feroz Shah Kotla","259":"Wankhede Stadium","260":"MA Chidambaram Stadium, Chepauk","261":"Punjab Cricket Association Stadium, Mohali","262":"Eden Gardens","263":"Feroz Shah Kotla","264":"Subrata Roy Sahara Stadium","265":"Eden Gardens","266":"M Chinnaswamy Stadium","267":"Wankhede Stadium","268":"Sawai Mansingh Stadium","269":"M Chinnaswamy Stadium","270":"Punjab Cricket Association Stadium, Mohali","271":"Rajiv Gandhi International Stadium, Uppal","272":"MA Chidambaram Stadium, Chepauk","273":"Punjab Cricket Association Stadium, Mohali","274":"MA Chidambaram Stadium, Chepauk","275":"Feroz Shah Kotla","276":"Wankhede Stadium","277":"Barabati Stadium","278":"Sawai Mansingh Stadium","279":"Subrata Roy Sahara Stadium","280":"Punjab Cricket Association Stadium, Mohali","281":"Subrata Roy Sahara Stadium","282":"Feroz Shah Kotla","283":"MA Chidambaram Stadium, Chepauk","284":"Eden Gardens","285":"Feroz Shah Kotla","286":"Wankhede Stadium","287":"MA Chidambaram Stadium, Chepauk","288":"Barabati Stadium","289":"Sawai Mansingh Stadium","290":"M Chinnaswamy Stadium","291":"Subrata Roy Sahara Stadium","292":"MA Chidambaram Stadium, Chepauk","293":"Eden Gardens","294":"Punjab Cricket Association Stadium, Mohali","295":"Wankhede Stadium","296":"M Chinnaswamy Stadium","297":"Feroz Shah Kotla","298":"Subrata Roy Sahara Stadium","299":"Rajiv Gandhi International Stadium, Uppal","300":"Wankhede Stadium","301":"Sawai Mansingh Stadium","302":"Subrata Roy Sahara Stadium","303":"Eden Gardens","304":"MA Chidambaram Stadium, Chepauk","305":"Sawai Mansingh Stadium","306":"Punjab Cricket Association Stadium, Mohali","307":"M Chinnaswamy Stadium","308":"Eden Gardens","309":"Feroz Shah Kotla","310":"Wankhede Stadium","311":"Himachal Pradesh Cricket Association Stadium","312":"Feroz Shah Kotla","313":"Rajiv Gandhi International Stadium, Uppal","314":"Himachal Pradesh Cricket Association Stadium","315":"Subrata Roy Sahara Stadium","316":"Rajiv Gandhi International Stadium, Uppal","317":"Sawai Mansingh Stadium","318":"Subrata Roy Sahara Stadium","319":"M Chinnaswamy Stadium","320":"MA Chidambaram Stadium, Chepauk","321":"MA Chidambaram Stadium, Chepauk","322":"Eden Gardens","323":"M Chinnaswamy Stadium","324":"Rajiv Gandhi International Stadium, Uppal","325":"Feroz Shah Kotla","326":"MA Chidambaram Stadium, Chepauk","327":"Subrata Roy Sahara Stadium","328":"Rajiv Gandhi International Stadium, Uppal","329":"Sawai Mansingh Stadium","330":"Wankhede Stadium","331":"Punjab Cricket Association Stadium, Mohali","332":"M Chinnaswamy Stadium","333":"Subrata Roy Sahara Stadium","334":"Feroz Shah Kotla","335":"Wankhede Stadium","336":"MA Chidambaram Stadium, Chepauk","337":"Eden Gardens","338":"Sawai Mansingh Stadium","339":"MA Chidambaram Stadium, Chepauk","340":"Punjab Cricket Association Stadium, Mohali","341":"M Chinnaswamy Stadium","342":"Subrata Roy Sahara Stadium","343":"Sawai Mansingh Stadium","344":"Feroz Shah Kotla","345":"Rajiv Gandhi International Stadium, Uppal","346":"Eden Gardens","347":"M Chinnaswamy Stadium","348":"Feroz Shah Kotla","349":"Punjab Cricket Association Stadium, Mohali","350":"MA Chidambaram Stadium, Chepauk","351":"M Chinnaswamy Stadium","352":"Himachal Pradesh Cricket Association Stadium","353":"Eden Gardens","354":"MA Chidambaram Stadium, Chepauk","355":"Eden Gardens","356":"Sawai Mansingh Stadium","357":"Wankhede Stadium","358":"MA Chidambaram Stadium, Chepauk","359":"Shaheed Veer Narayan Singh International Stadium","360":"Sawai Mansingh Stadium","361":"Wankhede Stadium","362":"Subrata Roy Sahara Stadium","363":"Rajiv Gandhi International Stadium, Uppal","364":"Shaheed Veer Narayan Singh International Stadium","365":"MA Chidambaram Stadium, Chepauk","366":"Subrata Roy Sahara Stadium","367":"Eden Gardens","368":"Rajiv Gandhi International Stadium, Uppal","369":"M Chinnaswamy Stadium","370":"Wankhede Stadium","371":"Sawai Mansingh Stadium","372":"M Chinnaswamy Stadium","373":"Sawai Mansingh Stadium","374":"Wankhede Stadium","375":"Rajiv Gandhi International Stadium, Uppal","376":"Punjab Cricket Association Stadium, Mohali","377":"Subrata Roy Sahara Stadium","378":"Feroz Shah Kotla","379":"Subrata Roy Sahara Stadium","380":"Punjab Cricket Association Stadium, Mohali","381":"JSCA International Stadium Complex","382":"Sawai Mansingh Stadium","383":"Feroz Shah Kotla","384":"Wankhede Stadium","385":"JSCA International Stadium Complex","386":"MA Chidambaram Stadium, Chepauk","387":"Wankhede Stadium","388":"Punjab Cricket Association Stadium, Mohali","389":"Rajiv Gandhi International Stadium, Uppal","390":"Himachal Pradesh Cricket Association Stadium","391":"Subrata Roy Sahara Stadium","392":"M Chinnaswamy Stadium","393":"Rajiv Gandhi International Stadium, Uppal","394":"Feroz Shah Kotla","395":"Feroz Shah Kotla","396":"Eden Gardens","397":"Eden Gardens","398":"Sheikh Zayed Stadium","399":"Sharjah Cricket Stadium","400":"Sheikh Zayed Stadium","401":"Sheikh Zayed Stadium","402":"Dubai International Cricket Stadium","403":"Dubai International Cricket Stadium","404":"Sharjah Cricket Stadium","405":"Sheikh Zayed Stadium","406":"Sharjah Cricket Stadium","407":"Dubai International Cricket Stadium","408":"Sharjah Cricket Stadium","409":"Dubai International Cricket Stadium","410":"Dubai International Cricket Stadium","411":"Sheikh Zayed Stadium","412":"Sheikh Zayed Stadium","413":"Sharjah Cricket Stadium","414":"Sharjah Cricket Stadium","415":"Dubai International Cricket Stadium","416":"Sheikh Zayed Stadium","417":"Dubai International Cricket Stadium","418":"JSCA International Stadium Complex","419":"Wankhede Stadium","420":"Feroz Shah Kotla","421":"M Chinnaswamy Stadium","422":"Sardar Patel Stadium, Motera","423":"Feroz Shah Kotla","424":"Wankhede Stadium","425":"Feroz Shah Kotla","426":"Barabati Stadium","427":"Sardar Patel Stadium, Motera","428":"M Chinnaswamy Stadium","429":"Feroz Shah Kotla","430":"Wankhede Stadium","431":"Barabati Stadium","432":"M Chinnaswamy Stadium","433":"Rajiv Gandhi International Stadium, Uppal","434":"JSCA International Stadium Complex","435":"M Chinnaswamy Stadium","436":"Rajiv Gandhi International Stadium, Uppal","437":"Barabati Stadium","438":"Sardar Patel Stadium, Motera","439":"JSCA International Stadium Complex","440":"Rajiv Gandhi International Stadium, Uppal","441":"Sardar Patel Stadium, Motera","442":"Feroz Shah Kotla","443":"Rajiv Gandhi International Stadium, Uppal","444":"Eden Gardens","445":"Punjab Cricket Association Stadium, Mohali","446":"Eden Gardens","447":"JSCA International Stadium Complex","448":"Wankhede Stadium","449":"Punjab Cricket Association Stadium, Mohali","450":"M Chinnaswamy Stadium","451":"Eden Gardens","452":"Punjab Cricket Association Stadium, Mohali","453":"Wankhede Stadium","454":"Eden Gardens","455":"Brabourne Stadium","456":"Wankhede Stadium","457":"M Chinnaswamy Stadium","458":"Eden Gardens","459":"MA Chidambaram Stadium, Chepauk","460":"Maharashtra Cricket Association Stadium","461":"MA Chidambaram Stadium, Chepauk","462":"Eden Gardens","463":"Feroz Shah Kotla","464":"Wankhede Stadium","465":"M Chinnaswamy Stadium","466":"Sardar Patel Stadium, Motera","467":"Eden Gardens","468":"Maharashtra Cricket Association Stadium","469":"Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium","470":"Wankhede Stadium","471":"Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium","472":"Maharashtra Cricket Association Stadium","473":"Sardar Patel Stadium, Motera","474":"M Chinnaswamy Stadium","475":"Feroz Shah Kotla","476":"Sardar Patel Stadium, Motera","477":"Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium","478":"M Chinnaswamy Stadium","479":"Feroz Shah Kotla","480":"Sardar Patel Stadium, Motera","481":"Wankhede Stadium","482":"MA Chidambaram Stadium, Chepauk","483":"Feroz Shah Kotla","484":"Punjab Cricket Association Stadium, Mohali","485":"Eden Gardens","486":"M Chinnaswamy Stadium","487":"MA Chidambaram Stadium, Chepauk","488":"Feroz Shah Kotla","489":"Wankhede Stadium","490":"M Chinnaswamy Stadium","491":"Rajiv Gandhi International Stadium, Uppal","492":"Punjab Cricket Association Stadium, Mohali","493":"Brabourne Stadium","494":"MA Chidambaram Stadium, Chepauk","495":"Eden Gardens","496":"Wankhede Stadium","497":"M Chinnaswamy Stadium","498":"Brabourne Stadium","499":"MA Chidambaram Stadium, Chepauk","500":"Eden Gardens","501":"Shaheed Veer Narayan Singh International Stadium","502":"Wankhede Stadium","503":"MA Chidambaram Stadium, Chepauk","504":"Rajiv Gandhi International Stadium, Uppal","505":"Shaheed Veer Narayan Singh International Stadium","506":"Punjab Cricket Association Stadium, Mohali","507":"Wankhede Stadium","508":"Rajiv Gandhi International Stadium, Uppal","509":"Punjab Cricket Association Stadium, Mohali","510":"Brabourne Stadium","511":"M Chinnaswamy Stadium","512":"Rajiv Gandhi International Stadium, Uppal","513":"Wankhede Stadium","514":"Maharashtra Cricket Association Stadium","515":"JSCA International Stadium Complex","516":"Eden Gardens","517":"Wankhede Stadium","518":"Eden Gardens","519":"Punjab Cricket Association IS Bindra Stadium, Mohali","520":"M Chinnaswamy Stadium","521":"Eden Gardens","522":"Saurashtra Cricket Association Stadium","523":"Feroz Shah Kotla","524":"Rajiv Gandhi International Stadium, Uppal","525":"Wankhede Stadium","526":"Punjab Cricket Association IS Bindra Stadium, Mohali","527":"M Chinnaswamy Stadium","528":"Rajiv Gandhi International Stadium, Uppal","529":"Punjab Cricket Association IS Bindra Stadium, Mohali","530":"Wankhede Stadium","531":"Saurashtra Cricket Association Stadium","532":"Maharashtra Cricket Association Stadium","533":"Feroz Shah Kotla","534":"Rajiv Gandhi International Stadium, Uppal","535":"Saurashtra Cricket Association Stadium","536":"Maharashtra Cricket Association Stadium","537":"Punjab Cricket Association IS Bindra Stadium, Mohali","538":"Rajiv Gandhi International Stadium, Uppal","539":"Feroz Shah Kotla","540":"Wankhede Stadium","541":"Maharashtra Cricket Association Stadium","542":"Feroz Shah Kotla","543":"Rajiv Gandhi International Stadium, Uppal","544":"Saurashtra Cricket Association Stadium","545":"Maharashtra Cricket Association Stadium","546":"M Chinnaswamy Stadium","547":"Saurashtra Cricket Association Stadium","548":"Eden Gardens","549":"Feroz Shah Kotla","550":"Rajiv Gandhi International Stadium, Uppal","551":"M Chinnaswamy Stadium","552":"Punjab Cricket Association IS Bindra Stadium, Mohali","553":"Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium","554":"Eden Gardens","555":"Punjab Cricket Association IS Bindra Stadium, Mohali","556":"Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium","557":"M Chinnaswamy Stadium","558":"Rajiv Gandhi International Stadium, Uppal","559":"Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium","560":"M Chinnaswamy Stadium","561":"Eden Gardens","562":"Punjab Cricket Association IS Bindra Stadium, Mohali","563":"Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium","564":"Eden Gardens","565":"Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium","566":"M Chinnaswamy Stadium","567":"Green Park","568":"Shaheed Veer Narayan Singh International Stadium","569":"Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium","570":"Green Park","571":"Eden Gardens","572":"Shaheed Veer Narayan Singh International Stadium","573":"M Chinnaswamy Stadium","574":"Feroz Shah Kotla","575":"Feroz Shah Kotla","576":"M Chinnaswamy Stadium","577":"Rajiv Gandhi International Stadium, Uppal","578":"Maharashtra Cricket Association Stadium","579":"Saurashtra Cricket Association Stadium","580":"Holkar Cricket Stadium","581":"M.Chinnaswamy Stadium","582":"Rajiv Gandhi International Stadium, Uppal","583":"Wankhede Stadium","584":"Holkar Cricket Stadium","585":"Maharashtra Cricket Association Stadium","586":"Wankhede Stadium","587":"Eden Gardens","588":"M Chinnaswamy Stadium","589":"Saurashtra Cricket Association Stadium","590":"Eden Gardens","591":"Feroz Shah Kotla","592":"Wankhede Stadium","593":"M Chinnaswamy Stadium","594":"Feroz Shah Kotla","595":"Rajiv Gandhi International Stadium, Uppal","596":"Saurashtra Cricket Association Stadium","597":"Rajiv Gandhi International Stadium, Uppal","598":"Holkar Cricket Stadium","599":"Eden Gardens","600":"Wankhede Stadium","601":"Maharashtra Cricket Association Stadium","602":"Saurashtra Cricket Association Stadium","603":"Eden Gardens","604":"Wankhede Stadium","605":"Maharashtra Cricket Association Stadium","606":"M Chinnaswamy Stadium","607":"Eden Gardens","608":"Punjab Cricket Association IS Bindra Stadium, Mohali","609":"Maharashtra Cricket Association Stadium","610":"Saurashtra Cricket Association Stadium","611":"Punjab Cricket Association IS Bindra Stadium, Mohali","612":"Rajiv Gandhi International Stadium, Uppal","613":"Wankhede Stadium","614":"Maharashtra Cricket Association Stadium","615":"Feroz Shah Kotla","616":"Eden Gardens","617":"Feroz Shah Kotla","618":"M Chinnaswamy Stadium","619":"Rajiv Gandhi International Stadium, Uppal","620":"Feroz Shah Kotla","621":"M Chinnaswamy Stadium","622":"Punjab Cricket Association IS Bindra Stadium, Mohali","623":"Rajiv Gandhi International Stadium, Uppal","624":"Punjab Cricket Association IS Bindra Stadium, Mohali","625":"Green Park","626":"Wankhede Stadium","627":"Feroz Shah Kotla","628":"Green Park","629":"Eden Gardens","630":"Maharashtra Cricket Association Stadium","631":"Feroz Shah Kotla","632":"Wankhede Stadium","633":"M Chinnaswamy Stadium","634":"M Chinnaswamy Stadium","635":"Rajiv Gandhi International Stadium, Uppal","636":"Wankhede Stadium","637":"Punjab Cricket Association IS Bindra Stadium, Mohali","638":"Eden Gardens","639":"Rajiv Gandhi International Stadium, Uppal","640":"MA Chidambaram Stadium, Chepauk","641":"Sawai Mansingh Stadium","642":"Rajiv Gandhi International Stadium, Uppal","643":"M.Chinnaswamy Stadium","644":"Wankhede Stadium","645":"Eden Gardens","646":"M.Chinnaswamy Stadium","647":"Punjab Cricket Association IS Bindra Stadium, Mohali","648":"Eden Gardens","649":"Wankhede Stadium","650":"Sawai Mansingh Stadium","651":"Punjab Cricket Association IS Bindra Stadium, Mohali","652":"Maharashtra Cricket Association Stadium","653":"Eden Gardens","654":"M.Chinnaswamy Stadium","655":"Rajiv Gandhi International Stadium, Uppal","656":"Sawai Mansingh Stadium","657":"Feroz Shah Kotla","658":"Wankhede Stadium","659":"M.Chinnaswamy Stadium","660":"Rajiv Gandhi International Stadium, Uppal","661":"Feroz Shah Kotla","662":"Maharashtra Cricket Association Stadium","663":"Sawai Mansingh Stadium","664":"M.Chinnaswamy Stadium","665":"Maharashtra Cricket Association Stadium","666":"M.Chinnaswamy Stadium","667":"Feroz Shah Kotla","668":"Eden Gardens","669":"Holkar Cricket Stadium","670":"Maharashtra Cricket Association Stadium","671":"Rajiv Gandhi International Stadium, Uppal","672":"Wankhede Stadium","673":"Holkar Cricket Stadium","674":"Rajiv Gandhi International Stadium, Uppal","675":"Sawai Mansingh Stadium","676":"Eden Gardens","677":"Feroz Shah Kotla","678":"Sawai Mansingh Stadium","679":"Holkar Cricket Stadium","680":"Feroz Shah Kotla","681":"Maharashtra Cricket Association Stadium","682":"Wankhede Stadium","683":"Holkar Cricket Stadium","684":"Eden Gardens","685":"Wankhede Stadium","686":"M.Chinnaswamy Stadium","687":"Feroz Shah Kotla","688":"Sawai Mansingh Stadium","689":"Rajiv Gandhi International Stadium, Uppal","690":"Feroz Shah Kotla","691":"Maharashtra Cricket Association Stadium","692":"Wankhede Stadium","693":"Eden Gardens","694":"Eden Gardens","695":"Wankhede Stadium","696":"MA Chidambaram Stadium, Chepauk","697":"Eden Gardens","698":"Wankhede Stadium","699":"Sawai Mansingh Stadium","700":"Feroz Shah Kotla","701":"Eden Gardens","702":"M.Chinnaswamy Stadium","703":"Rajiv Gandhi International Stadium, Uppal","704":"Punjab Cricket Association IS Bindra Stadium, Mohali","705":"Feroz Shah Kotla","706":"Rajiv Gandhi International Stadium, Uppal","707":"MA Chidambaram Stadium, Chepauk","708":"Punjab Cricket Association IS Bindra Stadium, Mohali","709":"Sawai Mansingh Stadium","710":"Wankhede Stadium","711":"Feroz Shah Kotla","712":"M.Chinnaswamy Stadium","713":"MA Chidambaram Stadium, Chepauk","714":"Rajiv Gandhi International Stadium, Uppal","715":"M.Chinnaswamy Stadium","716":"Sawai Mansingh Stadium","717":"Punjab Cricket Association IS Bindra Stadium, Mohali","718":"MA Chidambaram Stadium, Chepauk","719":"Wankhede Stadium","720":"Sawai Mansingh Stadium","721":"Eden Gardens","722":"Wankhede Stadium","723":"Punjab Cricket Association IS Bindra Stadium, Mohali","724":"Eden Gardens","725":"Rajiv Gandhi International Stadium, Uppal","726":"Wankhede Stadium","727":"Punjab Cricket Association IS Bindra Stadium, Mohali","728":"Rajiv Gandhi International Stadium, Uppal","729":"Feroz Shah Kotla","730":"Eden Gardens","731":"Sawai Mansingh Stadium","732":"Feroz Shah Kotla","733":"Rajiv Gandhi International Stadium, Uppal","734":"M.Chinnaswamy Stadium","735":"Sawai Mansingh Stadium","736":"MA Chidambaram Stadium, Chepauk","737":"M.Chinnaswamy Stadium","738":"Eden Gardens","739":"MA Chidambaram Stadium, Chepauk","740":"Sawai Mansingh Stadium","741":"Feroz Shah Kotla","742":"Eden Gardens","743":"Rajiv Gandhi International Stadium, Uppal","744":"M.Chinnaswamy Stadium","745":"MA Chidambaram Stadium, Chepauk","746":"Wankhede Stadium","747":"Punjab Cricket Association IS Bindra Stadium, Mohali","748":"Feroz Shah Kotla","749":"M.Chinnaswamy Stadium","750":"Punjab Cricket Association IS Bindra Stadium, Mohali","751":"Wankhede Stadium","752":"MA Chidambaram Stadium, Chepauk","753":"Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium","754":"Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium","755":"Rajiv Gandhi International Stadium, Uppal","756":"Sheikh Zayed Stadium","757":"Dubai International Cricket Stadium","758":"Sheikh Zayed Stadium","759":"Sharjah Cricket Stadium","760":"Sharjah Cricket Stadium","761":"Sheikh Zayed Stadium","762":"Dubai International Cricket Stadium","763":"Sheikh Zayed Stadium","764":"Sharjah Cricket Stadium","765":"Sheikh Zayed Stadium","766":"Sharjah Cricket Stadium","767":"Sheikh Zayed Stadium","768":"Dubai International Cricket Stadium","769":"Sheikh Zayed Stadium","770":"Sheikh Zayed Stadium","771":"Dubai International Cricket Stadium","772":"Sheikh Zayed Stadium","773":"Sharjah Cricket Stadium","774":"Dubai International Cricket Stadium","775":"Sheikh Zayed Stadium","776":"Sheikh Zayed Stadium","777":"Dubai International Cricket Stadium","778":"Sheikh Zayed Stadium","779":"Sharjah Cricket Stadium","780":"Dubai International Cricket Stadium","781":"Dubai International Cricket Stadium","782":"Dubai International Cricket Stadium","783":"Dubai International Cricket Stadium","784":"Sharjah Cricket Stadium","785":"Sharjah Cricket Stadium","786":"Dubai International Cricket Stadium","787":"Sheikh Zayed Stadium","788":"Dubai International Cricket Stadium","789":"Dubai International Cricket Stadium","790":"Sheikh Zayed Stadium","791":"Sharjah Cricket Stadium","792":"Dubai International Cricket Stadium","793":"Sheikh Zayed Stadium","794":"Dubai International Cricket Stadium","795":"Sharjah Cricket Stadium","796":"Sheikh Zayed Stadium","797":"Sheikh Zayed Stadium","798":"Dubai International Cricket Stadium","799":"Dubai International Cricket Stadium","800":"Dubai International Cricket Stadium","801":"Sheikh Zayed Stadium","802":"Sharjah Cricket Stadium","803":"Dubai International Cricket Stadium","804":"Sharjah Cricket Stadium","805":"Sheikh Zayed Stadium","806":"Dubai International Cricket Stadium","807":"Dubai International Cricket Stadium","808":"Dubai International Cricket Stadium","809":"Sheikh Zayed Stadium","810":"Dubai International Cricket Stadium","811":"Dubai International Cricket Stadium","812":"Dubai International Cricket Stadium","813":"Sheikh Zayed Stadium","814":"Sheikh Zayed Stadium","815":"Dubai International Cricket Stadium"},"neutral_venue":{"0":0,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"66":1,"67":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"78":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1,"96":1,"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"115":0,"116":0,"117":0,"118":0,"119":0,"120":0,"121":0,"122":0,"123":0,"124":0,"125":0,"126":0,"127":0,"128":0,"129":0,"130":0,"131":0,"132":0,"133":0,"134":0,"135":0,"136":0,"137":0,"138":0,"139":0,"140":0,"141":0,"142":0,"143":0,"144":0,"145":0,"146":0,"147":0,"148":0,"149":0,"150":0,"151":0,"152":0,"153":0,"154":0,"155":0,"156":0,"157":0,"158":0,"159":0,"160":0,"161":0,"162":0,"163":0,"164":0,"165":0,"166":0,"167":0,"168":0,"169":0,"170":0,"171":0,"172":0,"173":0,"174":0,"175":0,"176":0,"177":0,"178":0,"179":0,"180":0,"181":0,"182":0,"183":0,"184":0,"185":0,"186":0,"187":0,"188":0,"189":0,"190":0,"191":0,"192":0,"193":0,"194":0,"195":0,"196":0,"197":0,"198":0,"199":0,"200":0,"201":0,"202":0,"203":0,"204":0,"205":0,"206":0,"207":0,"208":0,"209":0,"210":0,"211":0,"212":0,"213":0,"214":0,"215":0,"216":0,"217":0,"218":0,"219":0,"220":0,"221":0,"222":0,"223":0,"224":0,"225":0,"226":0,"227":0,"228":0,"229":0,"230":0,"231":0,"232":0,"233":0,"234":0,"235":0,"236":0,"237":0,"238":0,"239":0,"240":0,"241":0,"242":0,"243":0,"244":0,"245":0,"246":0,"247":0,"248":0,"249":0,"250":0,"251":0,"252":0,"253":0,"254":0,"255":0,"256":0,"257":0,"258":0,"259":0,"260":0,"261":0,"262":0,"263":0,"264":0,"265":0,"266":0,"267":0,"268":0,"269":0,"270":0,"271":0,"272":0,"273":0,"274":0,"275":0,"276":0,"277":0,"278":0,"279":0,"280":0,"281":0,"282":0,"283":0,"284":0,"285":0,"286":0,"287":0,"288":0,"289":0,"290":0,"291":0,"292":0,"293":0,"294":0,"295":0,"296":0,"297":0,"298":0,"299":0,"300":0,"301":0,"302":0,"303":0,"304":0,"305":0,"306":0,"307":0,"308":0,"309":0,"310":0,"311":0,"312":0,"313":0,"314":0,"315":0,"316":0,"317":0,"318":0,"319":0,"320":0,"321":0,"322":0,"323":0,"324":0,"325":0,"326":0,"327":0,"328":0,"329":0,"330":0,"331":0,"332":0,"333":0,"334":0,"335":0,"336":0,"337":0,"338":0,"339":0,"340":0,"341":0,"342":0,"343":0,"344":0,"345":0,"346":0,"347":0,"348":0,"349":0,"350":0,"351":0,"352":0,"353":0,"354":0,"355":0,"356":0,"357":0,"358":0,"359":0,"360":0,"361":0,"362":0,"363":0,"364":0,"365":0,"366":0,"367":0,"368":0,"369":0,"370":0,"371":0,"372":0,"373":0,"374":0,"375":0,"376":0,"377":0,"378":0,"379":0,"380":0,"381":0,"382":0,"383":0,"384":0,"385":0,"386":0,"387":0,"388":0,"389":0,"390":0,"391":0,"392":0,"393":0,"394":0,"395":0,"396":0,"397":0,"398":1,"399":1,"400":1,"401":1,"402":1,"403":1,"404":1,"405":1,"406":1,"407":1,"408":1,"409":1,"410":1,"411":1,"412":1,"413":1,"414":1,"415":1,"416":1,"417":1,"418":0,"419":0,"420":0,"421":0,"422":0,"423":0,"424":0,"425":0,"426":0,"427":0,"428":0,"429":0,"430":0,"431":0,"432":0,"433":0,"434":0,"435":0,"436":0,"437":0,"438":0,"439":0,"440":0,"441":0,"442":0,"443":0,"444":0,"445":0,"446":0,"447":0,"448":0,"449":0,"450":0,"451":0,"452":0,"453":0,"454":0,"455":0,"456":0,"457":0,"458":0,"459":0,"460":0,"461":0,"462":0,"463":0,"464":0,"465":0,"466":0,"467":0,"468":0,"469":0,"470":0,"471":0,"472":0,"473":0,"474":0,"475":0,"476":0,"477":0,"478":0,"479":0,"480":0,"481":0,"482":0,"483":0,"484":0,"485":0,"486":0,"487":0,"488":0,"489":0,"490":0,"491":0,"492":0,"493":0,"494":0,"495":0,"496":0,"497":0,"498":0,"499":0,"500":0,"501":0,"502":0,"503":0,"504":0,"505":0,"506":0,"507":0,"508":0,"509":0,"510":0,"511":0,"512":0,"513":0,"514":0,"515":0,"516":0,"517":0,"518":0,"519":0,"520":0,"521":0,"522":0,"523":0,"524":0,"525":0,"526":0,"527":0,"528":0,"529":0,"530":0,"531":0,"532":0,"533":0,"534":0,"535":0,"536":0,"537":0,"538":0,"539":0,"540":0,"541":0,"542":0,"543":0,"544":0,"545":0,"546":0,"547":0,"548":0,"549":0,"550":0,"551":0,"552":0,"553":0,"554":0,"555":0,"556":0,"557":0,"558":0,"559":0,"560":0,"561":0,"562":0,"563":0,"564":0,"565":0,"566":0,"567":0,"568":0,"569":0,"570":0,"571":0,"572":0,"573":0,"574":0,"575":0,"576":0,"577":0,"578":0,"579":0,"580":0,"581":0,"582":0,"583":0,"584":0,"585":0,"586":0,"587":0,"588":0,"589":0,"590":0,"591":0,"592":0,"593":0,"594":0,"595":0,"596":0,"597":0,"598":0,"599":0,"600":0,"601":0,"602":0,"603":0,"604":0,"605":0,"606":0,"607":0,"608":0,"609":0,"610":0,"611":0,"612":0,"613":0,"614":0,"615":0,"616":0,"617":0,"618":0,"619":0,"620":0,"621":0,"622":0,"623":0,"624":0,"625":0,"626":0,"627":0,"628":0,"629":0,"630":0,"631":0,"632":0,"633":0,"634":0,"635":0,"636":0,"637":0,"638":0,"639":0,"640":0,"641":0,"642":0,"643":0,"644":0,"645":0,"646":0,"647":0,"648":0,"649":0,"650":0,"651":0,"652":0,"653":0,"654":0,"655":0,"656":0,"657":0,"658":0,"659":0,"660":0,"661":0,"662":0,"663":0,"664":0,"665":0,"666":0,"667":0,"668":0,"669":0,"670":0,"671":0,"672":0,"673":0,"674":0,"675":0,"676":0,"677":0,"678":0,"679":0,"680":0,"681":0,"682":0,"683":0,"684":0,"685":0,"686":0,"687":0,"688":0,"689":0,"690":0,"691":0,"692":0,"693":0,"694":0,"695":0,"696":0,"697":0,"698":0,"699":0,"700":0,"701":0,"702":0,"703":0,"704":0,"705":0,"706":0,"707":0,"708":0,"709":0,"710":0,"711":0,"712":0,"713":0,"714":0,"715":0,"716":0,"717":0,"718":0,"719":0,"720":0,"721":0,"722":0,"723":0,"724":0,"725":0,"726":0,"727":0,"728":0,"729":0,"730":0,"731":0,"732":0,"733":0,"734":0,"735":0,"736":0,"737":0,"738":0,"739":0,"740":0,"741":0,"742":0,"743":0,"744":0,"745":0,"746":0,"747":0,"748":0,"749":0,"750":0,"751":0,"752":0,"753":0,"754":0,"755":0,"756":0,"757":0,"758":0,"759":0,"760":0,"761":0,"762":0,"763":0,"764":0,"765":0,"766":0,"767":0,"768":0,"769":0,"770":0,"771":0,"772":0,"773":0,"774":0,"775":0,"776":0,"777":0,"778":0,"779":0,"780":0,"781":0,"782":0,"783":0,"784":0,"785":0,"786":0,"787":0,"788":0,"789":0,"790":0,"791":0,"792":0,"793":0,"794":0,"795":0,"796":0,"797":0,"798":0,"799":0,"800":0,"801":0,"802":0,"803":0,"804":0,"805":0,"806":0,"807":0,"808":0,"809":0,"810":0,"811":0,"812":0,"813":0,"814":0,"815":0},"team1":{"0":"Royal Challengers Bangalore","1":"Kings XI Punjab","2":"Delhi Daredevils","3":"Mumbai Indians","4":"Kolkata Knight Riders","5":"Rajasthan Royals","6":"Deccan Chargers","7":"Chennai Super Kings","8":"Deccan Chargers","9":"Kings XI Punjab","10":"Royal Challengers Bangalore","11":"Chennai Super Kings","12":"Mumbai Indians","13":"Kings XI Punjab","14":"Royal Challengers Bangalore","15":"Kolkata Knight Riders","16":"Delhi Daredevils","17":"Deccan Chargers","18":"Rajasthan Royals","19":"Chennai Super Kings","20":"Deccan Chargers","21":"Kings XI Punjab","22":"Mumbai Indians","23":"Rajasthan Royals","24":"Royal Challengers Bangalore","25":"Chennai Super Kings","26":"Mumbai Indians","27":"Delhi Daredevils","28":"Kolkata Knight Riders","29":"Rajasthan Royals","30":"Royal Challengers Bangalore","31":"Chennai Super Kings","32":"Deccan Chargers","33":"Rajasthan Royals","34":"Kings XI Punjab","35":"Kolkata Knight Riders","36":"Mumbai Indians","37":"Kings XI Punjab","38":"Delhi Daredevils","39":"Mumbai Indians","40":"Delhi Daredevils","41":"Rajasthan Royals","42":"Deccan Chargers","43":"Kolkata Knight Riders","44":"Royal Challengers Bangalore","45":"Kolkata Knight Riders","46":"Mumbai Indians","47":"Chennai Super Kings","48":"Kings XI Punjab","49":"Delhi Daredevils","50":"Chennai Super Kings","51":"Royal Challengers Bangalore","52":"Kolkata Knight Riders","53":"Rajasthan Royals","54":"Deccan Chargers","55":"Delhi Daredevils","56":"Chennai Super Kings","57":"Chennai Super Kings","58":"Chennai Super Kings","59":"Royal Challengers Bangalore","60":"Delhi Daredevils","61":"Deccan Chargers","62":"Royal Challengers Bangalore","63":"Kings XI Punjab","64":"Royal Challengers Bangalore","65":"Chennai Super Kings","66":"Kolkata Knight Riders","67":"Royal Challengers Bangalore","68":"Deccan Chargers","69":"Royal Challengers Bangalore","70":"Kings XI Punjab","71":"Chennai Super Kings","72":"Kolkata Knight Riders","73":"Delhi Daredevils","74":"Royal Challengers Bangalore","75":"Kings XI Punjab","76":"Deccan Chargers","77":"Chennai Super Kings","78":"Kolkata Knight Riders","79":"Royal Challengers Bangalore","80":"Deccan Chargers","81":"Chennai Super Kings","82":"Kings XI Punjab","83":"Royal Challengers Bangalore","84":"Chennai Super Kings","85":"Kings XI Punjab","86":"Delhi Daredevils","87":"Deccan Chargers","88":"Royal Challengers Bangalore","89":"Chennai Super Kings","90":"Delhi Daredevils","91":"Deccan Chargers","92":"Chennai Super Kings","93":"Royal Challengers Bangalore","94":"Delhi Daredevils","95":"Deccan Chargers","96":"Royal Challengers Bangalore","97":"Kings XI Punjab","98":"Deccan Chargers","99":"Royal Challengers Bangalore","100":"Mumbai Indians","101":"Delhi Daredevils","102":"Chennai Super Kings","103":"Deccan Chargers","104":"Deccan Chargers","105":"Delhi Daredevils","106":"Chennai Super Kings","107":"Royal Challengers Bangalore","108":"Kolkata Knight Riders","109":"Chennai Super Kings","110":"Delhi Daredevils","111":"Royal Challengers Bangalore","112":"Delhi Daredevils","113":"Royal Challengers Bangalore","114":"Royal Challengers Bangalore","115":"Deccan Chargers","116":"Mumbai Indians","117":"Kings XI Punjab","118":"Kolkata Knight Riders","119":"Chennai Super Kings","120":"Rajasthan Royals","121":"Royal Challengers Bangalore","122":"Kolkata Knight Riders","123":"Delhi Daredevils","124":"Royal Challengers Bangalore","125":"Delhi Daredevils","126":"Deccan Chargers","127":"Rajasthan Royals","128":"Mumbai Indians","129":"Deccan Chargers","130":"Chennai Super Kings","131":"Mumbai Indians","132":"Royal Challengers Bangalore","133":"Kings XI Punjab","134":"Mumbai Indians","135":"Rajasthan Royals","136":"Kings XI Punjab","137":"Royal Challengers Bangalore","138":"Rajasthan Royals","139":"Deccan Chargers","140":"Delhi Daredevils","141":"Mumbai Indians","142":"Chennai Super Kings","143":"Delhi Daredevils","144":"Kolkata Knight Riders","145":"Kings XI Punjab","146":"Chennai Super Kings","147":"Mumbai Indians","148":"Kolkata Knight Riders","149":"Delhi Daredevils","150":"Deccan Chargers","151":"Chennai Super Kings","152":"Rajasthan Royals","153":"Kolkata Knight Riders","154":"Royal Challengers Bangalore","155":"Kings XI Punjab","156":"Deccan Chargers","157":"Royal Challengers Bangalore","158":"Delhi Daredevils","159":"Rajasthan Royals","160":"Deccan Chargers","161":"Mumbai Indians","162":"Chennai Super Kings","163":"Rajasthan Royals","164":"Chennai Super Kings","165":"Kings XI Punjab","166":"Royal Challengers Bangalore","167":"Kolkata Knight Riders","168":"Kings XI Punjab","169":"Delhi Daredevils","170":"Kolkata Knight Riders","171":"Royal Challengers Bangalore","172":"Chennai Super Kings","173":"Royal Challengers Bangalore","174":"Chennai Super Kings","175":"Chennai Super Kings","176":"Deccan Chargers","177":"Kochi Tuskers Kerala","178":"Delhi Daredevils","179":"Pune Warriors","180":"Kolkata Knight Riders","181":"Rajasthan Royals","182":"Royal Challengers Bangalore","183":"Kings XI Punjab","184":"Pune Warriors","185":"Deccan Chargers","186":"Rajasthan Royals","187":"Mumbai Indians","188":"Chennai Super Kings","189":"Deccan Chargers","190":"Pune Warriors","191":"Kolkata Knight Riders","192":"Kochi Tuskers Kerala","193":"Delhi Daredevils","194":"Mumbai Indians","195":"Kolkata Knight Riders","196":"Kings XI Punjab","197":"Mumbai Indians","198":"Kolkata Knight Riders","199":"Delhi Daredevils","200":"Deccan Chargers","201":"Rajasthan Royals","202":"Chennai Super Kings","203":"Delhi Daredevils","204":"Pune Warriors","205":"Kochi Tuskers Kerala","206":"Delhi Daredevils","207":"Rajasthan Royals","208":"Royal Challengers Bangalore","209":"Kochi Tuskers Kerala","210":"Kolkata Knight Riders","211":"Rajasthan Royals","212":"Chennai Super Kings","213":"Mumbai Indians","214":"Delhi Daredevils","215":"Deccan Chargers","216":"Chennai Super Kings","217":"Pune Warriors","218":"Kochi Tuskers Kerala","219":"Deccan Chargers","220":"Royal Challengers Bangalore","221":"Kolkata Knight Riders","222":"Mumbai Indians","223":"Royal Challengers Bangalore","224":"Kings XI Punjab","225":"Rajasthan Royals","226":"Deccan Chargers","227":"Kings XI Punjab","228":"Rajasthan Royals","229":"Chennai Super Kings","230":"Kochi Tuskers Kerala","231":"Royal Challengers Bangalore","232":"Mumbai Indians","233":"Kings XI Punjab","234":"Kochi Tuskers Kerala","235":"Pune Warriors","236":"Kings XI Punjab","237":"Chennai Super Kings","238":"Pune Warriors","239":"Mumbai Indians","240":"Kings XI Punjab","241":"Delhi Daredevils","242":"Royal Challengers Bangalore","243":"Kolkata Knight Riders","244":"Royal Challengers Bangalore","245":"Mumbai Indians","246":"Royal Challengers Bangalore","247":"Chennai Super Kings","248":"Chennai Super Kings","249":"Kolkata Knight Riders","250":"Mumbai Indians","251":"Rajasthan Royals","252":"Royal Challengers Bangalore","253":"Deccan Chargers","254":"Rajasthan Royals","255":"Pune Warriors","256":"Deccan Chargers","257":"Royal Challengers Bangalore","258":"Delhi Daredevils","259":"Mumbai Indians","260":"Chennai Super Kings","261":"Kings XI Punjab","262":"Kolkata Knight Riders","263":"Delhi Daredevils","264":"Pune Warriors","265":"Kolkata Knight Riders","266":"Royal Challengers Bangalore","267":"Mumbai Indians","268":"Rajasthan Royals","269":"Royal Challengers Bangalore","270":"Kings XI Punjab","271":"Deccan Chargers","272":"Chennai Super Kings","273":"Kings XI Punjab","274":"Chennai Super Kings","275":"Delhi Daredevils","276":"Mumbai Indians","277":"Deccan Chargers","278":"Rajasthan Royals","279":"Pune Warriors","280":"Kings XI Punjab","281":"Pune Warriors","282":"Delhi Daredevils","283":"Chennai Super Kings","284":"Kolkata Knight Riders","285":"Delhi Daredevils","286":"Mumbai Indians","287":"Chennai Super Kings","288":"Deccan Chargers","289":"Rajasthan Royals","290":"Royal Challengers Bangalore","291":"Pune Warriors","292":"Chennai Super Kings","293":"Kolkata Knight Riders","294":"Kings XI Punjab","295":"Mumbai Indians","296":"Royal Challengers Bangalore","297":"Delhi Daredevils","298":"Pune Warriors","299":"Deccan Chargers","300":"Mumbai Indians","301":"Rajasthan Royals","302":"Pune Warriors","303":"Kolkata Knight Riders","304":"Chennai Super Kings","305":"Rajasthan Royals","306":"Kings XI Punjab","307":"Royal Challengers Bangalore","308":"Kolkata Knight Riders","309":"Delhi Daredevils","310":"Mumbai Indians","311":"Kings XI Punjab","312":"Delhi Daredevils","313":"Deccan Chargers","314":"Kings XI Punjab","315":"Pune Warriors","316":"Deccan Chargers","317":"Rajasthan Royals","318":"Delhi Daredevils","319":"Chennai Super Kings","320":"Delhi Daredevils","321":"Kolkata Knight Riders","322":"Kolkata Knight Riders","323":"Royal Challengers Bangalore","324":"Sunrisers Hyderabad","325":"Delhi Daredevils","326":"Chennai Super Kings","327":"Pune Warriors","328":"Sunrisers Hyderabad","329":"Rajasthan Royals","330":"Mumbai Indians","331":"Kings XI Punjab","332":"Royal Challengers Bangalore","333":"Pune Warriors","334":"Delhi Daredevils","335":"Mumbai Indians","336":"Chennai Super Kings","337":"Kolkata Knight Riders","338":"Rajasthan Royals","339":"Chennai Super Kings","340":"Kings XI Punjab","341":"Royal Challengers Bangalore","342":"Pune Warriors","343":"Rajasthan Royals","344":"Delhi Daredevils","345":"Sunrisers Hyderabad","346":"Kolkata Knight Riders","347":"Royal Challengers Bangalore","348":"Delhi Daredevils","349":"Kings XI Punjab","350":"Chennai Super Kings","351":"Royal Challengers Bangalore","352":"Kings XI Punjab","353":"Kolkata Knight Riders","354":"Chennai Super Kings","355":"Kolkata Knight Riders","356":"Rajasthan Royals","357":"Mumbai Indians","358":"Chennai Super Kings","359":"Delhi Daredevils","360":"Rajasthan Royals","361":"Mumbai Indians","362":"Pune Warriors","363":"Sunrisers Hyderabad","364":"Delhi Daredevils","365":"Chennai Super Kings","366":"Pune Warriors","367":"Kolkata Knight Riders","368":"Sunrisers Hyderabad","369":"Royal Challengers Bangalore","370":"Mumbai Indians","371":"Rajasthan Royals","372":"Royal Challengers Bangalore","373":"Rajasthan Royals","374":"Mumbai Indians","375":"Sunrisers Hyderabad","376":"Kings XI Punjab","377":"Pune Warriors","378":"Delhi Daredevils","379":"Pune Warriors","380":"Kings XI Punjab","381":"Kolkata Knight Riders","382":"Rajasthan Royals","383":"Delhi Daredevils","384":"Mumbai Indians","385":"Kolkata Knight Riders","386":"Chennai Super Kings","387":"Mumbai Indians","388":"Kings XI Punjab","389":"Sunrisers Hyderabad","390":"Kings XI Punjab","391":"Pune Warriors","392":"Royal Challengers Bangalore","393":"Sunrisers Hyderabad","394":"Chennai Super Kings","395":"Rajasthan Royals","396":"Mumbai Indians","397":"Chennai Super Kings","398":"Mumbai Indians","399":"Delhi Daredevils","400":"Chennai Super Kings","401":"Sunrisers Hyderabad","402":"Royal Challengers Bangalore","403":"Kolkata Knight Riders","404":"Rajasthan Royals","405":"Chennai Super Kings","406":"Kings XI Punjab","407":"Rajasthan Royals","408":"Royal Challengers Bangalore","409":"Sunrisers Hyderabad","410":"Chennai Super Kings","411":"Rajasthan Royals","412":"Kolkata Knight Riders","413":"Delhi Daredevils","414":"Sunrisers Hyderabad","415":"Kings XI Punjab","416":"Kolkata Knight Riders","417":"Mumbai Indians","418":"Chennai Super Kings","419":"Mumbai Indians","420":"Delhi Daredevils","421":"Royal Challengers Bangalore","422":"Rajasthan Royals","423":"Delhi Daredevils","424":"Mumbai Indians","425":"Delhi Daredevils","426":"Kings XI Punjab","427":"Rajasthan Royals","428":"Royal Challengers Bangalore","429":"Delhi Daredevils","430":"Mumbai Indians","431":"Kings XI Punjab","432":"Royal Challengers Bangalore","433":"Sunrisers Hyderabad","434":"Chennai Super Kings","435":"Royal Challengers Bangalore","436":"Sunrisers Hyderabad","437":"Kolkata Knight Riders","438":"Rajasthan Royals","439":"Chennai Super Kings","440":"Sunrisers Hyderabad","441":"Rajasthan Royals","442":"Delhi Daredevils","443":"Sunrisers Hyderabad","444":"Kolkata Knight Riders","445":"Kings XI Punjab","446":"Kolkata Knight Riders","447":"Chennai Super Kings","448":"Mumbai Indians","449":"Kings XI Punjab","450":"Royal Challengers Bangalore","451":"Kolkata Knight Riders","452":"Kings XI Punjab","453":"Mumbai Indians","454":"Kings XI Punjab","455":"Chennai Super Kings","456":"Chennai Super Kings","457":"Kolkata Knight Riders","458":"Kolkata Knight Riders","459":"Chennai Super Kings","460":"Kings XI Punjab","461":"Chennai Super Kings","462":"Kolkata Knight Riders","463":"Delhi Daredevils","464":"Mumbai Indians","465":"Royal Challengers Bangalore","466":"Rajasthan Royals","467":"Kolkata Knight Riders","468":"Kings XI Punjab","469":"Sunrisers Hyderabad","470":"Mumbai Indians","471":"Sunrisers Hyderabad","472":"Kings XI Punjab","473":"Rajasthan Royals","474":"Royal Challengers Bangalore","475":"Delhi Daredevils","476":"Rajasthan Royals","477":"Sunrisers Hyderabad","478":"Royal Challengers Bangalore","479":"Delhi Daredevils","480":"Rajasthan Royals","481":"Mumbai Indians","482":"Chennai Super Kings","483":"Delhi Daredevils","484":"Kings XI Punjab","485":"Kolkata Knight Riders","486":"Royal Challengers Bangalore","487":"Chennai Super Kings","488":"Delhi Daredevils","489":"Mumbai Indians","490":"Royal Challengers Bangalore","491":"Sunrisers Hyderabad","492":"Kings XI Punjab","493":"Rajasthan Royals","494":"Chennai Super Kings","495":"Kolkata Knight Riders","496":"Mumbai Indians","497":"Royal Challengers Bangalore","498":"Rajasthan Royals","499":"Chennai Super Kings","500":"Kolkata Knight Riders","501":"Delhi Daredevils","502":"Mumbai Indians","503":"Chennai Super Kings","504":"Sunrisers Hyderabad","505":"Delhi Daredevils","506":"Kings XI Punjab","507":"Mumbai Indians","508":"Sunrisers Hyderabad","509":"Kings XI Punjab","510":"Rajasthan Royals","511":"Royal Challengers Bangalore","512":"Sunrisers Hyderabad","513":"Chennai Super Kings","514":"Royal Challengers Bangalore","515":"Chennai Super Kings","516":"Mumbai Indians","517":"Mumbai Indians","518":"Kolkata Knight Riders","519":"Kings XI Punjab","520":"Royal Challengers Bangalore","521":"Kolkata Knight Riders","522":"Gujarat Lions","523":"Delhi Daredevils","524":"Sunrisers Hyderabad","525":"Mumbai Indians","526":"Kings XI Punjab","527":"Royal Challengers Bangalore","528":"Sunrisers Hyderabad","529":"Kings XI Punjab","530":"Mumbai Indians","531":"Gujarat Lions","532":"Rising Pune Supergiants","533":"Delhi Daredevils","534":"Sunrisers Hyderabad","535":"Gujarat Lions","536":"Rising Pune Supergiants","537":"Kings XI Punjab","538":"Sunrisers Hyderabad","539":"Delhi Daredevils","540":"Mumbai Indians","541":"Rising Pune Supergiants","542":"Delhi Daredevils","543":"Sunrisers Hyderabad","544":"Gujarat Lions","545":"Rising Pune Supergiants","546":"Royal Challengers Bangalore","547":"Gujarat Lions","548":"Kolkata Knight Riders","549":"Delhi Daredevils","550":"Sunrisers Hyderabad","551":"Royal Challengers Bangalore","552":"Kings XI Punjab","553":"Mumbai Indians","554":"Kolkata Knight Riders","555":"Kings XI Punjab","556":"Rising Pune Supergiants","557":"Royal Challengers Bangalore","558":"Sunrisers Hyderabad","559":"Mumbai Indians","560":"Royal Challengers Bangalore","561":"Kolkata Knight Riders","562":"Kings XI Punjab","563":"Mumbai Indians","564":"Kolkata Knight Riders","565":"Rising Pune Supergiants","566":"Royal Challengers Bangalore","567":"Gujarat Lions","568":"Delhi Daredevils","569":"Rising Pune Supergiants","570":"Gujarat Lions","571":"Kolkata Knight Riders","572":"Delhi Daredevils","573":"Gujarat Lions","574":"Sunrisers Hyderabad","575":"Gujarat Lions","576":"Royal Challengers Bangalore","577":"Sunrisers Hyderabad","578":"Rising Pune Supergiant","579":"Gujarat Lions","580":"Kings XI Punjab","581":"Royal Challengers Bangalore","582":"Sunrisers Hyderabad","583":"Mumbai Indians","584":"Kings XI Punjab","585":"Rising Pune Supergiant","586":"Mumbai Indians","587":"Kolkata Knight Riders","588":"Royal Challengers Bangalore","589":"Gujarat Lions","590":"Kolkata Knight Riders","591":"Delhi Daredevils","592":"Mumbai Indians","593":"Royal Challengers Bangalore","594":"Delhi Daredevils","595":"Sunrisers Hyderabad","596":"Gujarat Lions","597":"Sunrisers Hyderabad","598":"Kings XI Punjab","599":"Kolkata Knight Riders","600":"Mumbai Indians","601":"Rising Pune Supergiant","602":"Gujarat Lions","603":"Kolkata Knight Riders","604":"Mumbai Indians","605":"Rising Pune Supergiant","606":"Royal Challengers Bangalore","607":"Kolkata Knight Riders","608":"Kings XI Punjab","609":"Rising Pune Supergiant","610":"Gujarat Lions","611":"Kings XI Punjab","612":"Sunrisers Hyderabad","613":"Mumbai Indians","614":"Rising Pune Supergiant","615":"Delhi Daredevils","616":"Kolkata Knight Riders","617":"Delhi Daredevils","618":"Royal Challengers Bangalore","619":"Sunrisers Hyderabad","620":"Delhi Daredevils","621":"Royal Challengers Bangalore","622":"Kings XI Punjab","623":"Sunrisers Hyderabad","624":"Kings XI Punjab","625":"Gujarat Lions","626":"Mumbai Indians","627":"Delhi Daredevils","628":"Gujarat Lions","629":"Kolkata Knight Riders","630":"Rising Pune Supergiant","631":"Delhi Daredevils","632":"Mumbai Indians","633":"Sunrisers Hyderabad","634":"Mumbai Indians","635":"Mumbai Indians","636":"Mumbai Indians","637":"Kings XI Punjab","638":"Kolkata Knight Riders","639":"Sunrisers Hyderabad","640":"Chennai Super Kings","641":"Rajasthan Royals","642":"Sunrisers Hyderabad","643":"Royal Challengers Bangalore","644":"Mumbai Indians","645":"Kolkata Knight Riders","646":"Royal Challengers Bangalore","647":"Kings XI Punjab","648":"Kolkata Knight Riders","649":"Mumbai Indians","650":"Rajasthan Royals","651":"Kings XI Punjab","652":"Chennai Super Kings","653":"Kolkata Knight Riders","654":"Royal Challengers Bangalore","655":"Sunrisers Hyderabad","656":"Rajasthan Royals","657":"Delhi Daredevils","658":"Mumbai Indians","659":"Royal Challengers Bangalore","660":"Sunrisers Hyderabad","661":"Delhi Daredevils","662":"Chennai Super Kings","663":"Rajasthan Royals","664":"Royal Challengers Bangalore","665":"Chennai Super Kings","666":"Royal Challengers Bangalore","667":"Delhi Daredevils","668":"Kolkata Knight Riders","669":"Kings XI Punjab","670":"Chennai Super Kings","671":"Sunrisers Hyderabad","672":"Mumbai Indians","673":"Kings XI Punjab","674":"Sunrisers Hyderabad","675":"Rajasthan Royals","676":"Kolkata Knight Riders","677":"Delhi Daredevils","678":"Rajasthan Royals","679":"Kings XI Punjab","680":"Delhi Daredevils","681":"Chennai Super Kings","682":"Mumbai Indians","683":"Kings XI Punjab","684":"Kolkata Knight Riders","685":"Mumbai Indians","686":"Royal Challengers Bangalore","687":"Delhi Daredevils","688":"Rajasthan Royals","689":"Sunrisers Hyderabad","690":"Delhi Daredevils","691":"Chennai Super Kings","692":"Sunrisers Hyderabad","693":"Kolkata Knight Riders","694":"Kolkata Knight Riders","695":"Chennai Super Kings","696":"Chennai Super Kings","697":"Kolkata Knight Riders","698":"Mumbai Indians","699":"Rajasthan Royals","700":"Delhi Capitals","701":"Kolkata Knight Riders","702":"Royal Challengers Bangalore","703":"Sunrisers Hyderabad","704":"Kings XI Punjab","705":"Delhi Capitals","706":"Sunrisers Hyderabad","707":"Chennai Super Kings","708":"Kings XI Punjab","709":"Rajasthan Royals","710":"Mumbai Indians","711":"Delhi Capitals","712":"Royal Challengers Bangalore","713":"Chennai Super Kings","714":"Sunrisers Hyderabad","715":"Royal Challengers Bangalore","716":"Rajasthan Royals","717":"Kings XI Punjab","718":"Chennai Super Kings","719":"Mumbai Indians","720":"Rajasthan Royals","721":"Kolkata Knight Riders","722":"Mumbai Indians","723":"Kings XI Punjab","724":"Kolkata Knight Riders","725":"Sunrisers Hyderabad","726":"Mumbai Indians","727":"Kings XI Punjab","728":"Sunrisers Hyderabad","729":"Delhi Capitals","730":"Kolkata Knight Riders","731":"Rajasthan Royals","732":"Delhi Capitals","733":"Sunrisers Hyderabad","734":"Royal Challengers Bangalore","735":"Rajasthan Royals","736":"Chennai Super Kings","737":"Royal Challengers Bangalore","738":"Kolkata Knight Riders","739":"Chennai Super Kings","740":"Rajasthan Royals","741":"Delhi Capitals","742":"Kolkata Knight Riders","743":"Sunrisers Hyderabad","744":"Royal Challengers Bangalore","745":"Chennai Super Kings","746":"Mumbai Indians","747":"Kings XI Punjab","748":"Delhi Capitals","749":"Royal Challengers Bangalore","750":"Kings XI Punjab","751":"Mumbai Indians","752":"Mumbai Indians","753":"Delhi Capitals","754":"Chennai Super Kings","755":"Mumbai Indians","756":"Mumbai Indians","757":"Delhi Capitals","758":"Kolkata Knight Riders","759":"Mumbai Indians","760":"Rajasthan Royals","761":"Kolkata Knight Riders","762":"Kings XI Punjab","763":"Royal Challengers Bangalore","764":"Delhi Capitals","765":"Kolkata Knight Riders","766":"Royal Challengers Bangalore","767":"Mumbai Indians","768":"Kolkata Knight Riders","769":"Royal Challengers Bangalore","770":"Kings XI Punjab","771":"Sunrisers Hyderabad","772":"Mumbai Indians","773":"Chennai Super Kings","774":"Kings XI Punjab","775":"Mumbai Indians","776":"Kolkata Knight Riders","777":"Kings XI Punjab","778":"Rajasthan Royals","779":"Delhi Capitals","780":"Sunrisers Hyderabad","781":"Mumbai Indians","782":"Rajasthan Royals","783":"Delhi Capitals","784":"Kolkata Knight Riders","785":"Chennai Super Kings","786":"Rajasthan Royals","787":"Kolkata Knight Riders","788":"Sunrisers Hyderabad","789":"Royal Challengers Bangalore","790":"Kolkata Knight Riders","791":"Kings XI Punjab","792":"Chennai Super Kings","793":"Delhi Capitals","794":"Kolkata Knight Riders","795":"Royal Challengers Bangalore","796":"Sunrisers Hyderabad","797":"Chennai Super Kings","798":"Royal Challengers Bangalore","799":"Delhi Capitals","800":"Kolkata Knight Riders","801":"Kings XI Punjab","802":"Mumbai Indians","803":"Delhi Capitals","804":"Royal Challengers Bangalore","805":"Mumbai Indians","806":"Sunrisers Hyderabad","807":"Delhi Capitals","808":"Royal Challengers Bangalore","809":"Sunrisers Hyderabad","810":"Delhi Capitals","811":"Royal Challengers Bangalore","812":"Mumbai Indians","813":"Royal Challengers Bangalore","814":"Delhi Capitals","815":"Delhi Capitals"},"team2":{"0":"Kolkata Knight Riders","1":"Chennai Super Kings","2":"Rajasthan Royals","3":"Royal Challengers Bangalore","4":"Deccan Chargers","5":"Kings XI Punjab","6":"Delhi Daredevils","7":"Mumbai Indians","8":"Rajasthan Royals","9":"Mumbai Indians","10":"Rajasthan Royals","11":"Kolkata Knight Riders","12":"Deccan Chargers","13":"Delhi Daredevils","14":"Chennai Super Kings","15":"Mumbai Indians","16":"Royal Challengers Bangalore","17":"Kings XI Punjab","18":"Kolkata Knight Riders","19":"Delhi Daredevils","20":"Royal Challengers Bangalore","21":"Kolkata Knight Riders","22":"Delhi Daredevils","23":"Chennai Super Kings","24":"Kings XI Punjab","25":"Deccan Chargers","26":"Rajasthan Royals","27":"Chennai Super Kings","28":"Royal Challengers Bangalore","29":"Deccan Chargers","30":"Mumbai Indians","31":"Kings XI Punjab","32":"Kolkata Knight Riders","33":"Delhi Daredevils","34":"Royal Challengers Bangalore","35":"Delhi Daredevils","36":"Chennai Super Kings","37":"Rajasthan Royals","38":"Deccan Chargers","39":"Kolkata Knight Riders","40":"Kings XI Punjab","41":"Royal Challengers Bangalore","42":"Mumbai Indians","43":"Chennai Super Kings","44":"Delhi Daredevils","45":"Rajasthan Royals","46":"Kings XI Punjab","47":"Royal Challengers Bangalore","48":"Deccan Chargers","49":"Mumbai Indians","50":"Rajasthan Royals","51":"Deccan Chargers","52":"Kings XI Punjab","53":"Mumbai Indians","54":"Chennai Super Kings","55":"Rajasthan Royals","56":"Kings XI Punjab","57":"Rajasthan Royals","58":"Mumbai Indians","59":"Rajasthan Royals","60":"Kings XI Punjab","61":"Kolkata Knight Riders","62":"Chennai Super Kings","63":"Kolkata Knight Riders","64":"Deccan Chargers","65":"Delhi Daredevils","66":"Rajasthan Royals","67":"Kings XI Punjab","68":"Mumbai Indians","69":"Delhi Daredevils","70":"Rajasthan Royals","71":"Deccan Chargers","72":"Mumbai Indians","73":"Rajasthan Royals","74":"Kolkata Knight Riders","75":"Mumbai Indians","76":"Delhi Daredevils","77":"Rajasthan Royals","78":"Mumbai Indians","79":"Kings XI Punjab","80":"Rajasthan Royals","81":"Delhi Daredevils","82":"Kolkata Knight Riders","83":"Mumbai Indians","84":"Deccan Chargers","85":"Rajasthan Royals","86":"Kolkata Knight Riders","87":"Mumbai Indians","88":"Rajasthan Royals","89":"Kings XI Punjab","90":"Mumbai Indians","91":"Kings XI Punjab","92":"Rajasthan Royals","93":"Mumbai Indians","94":"Kolkata Knight Riders","95":"Rajasthan Royals","96":"Kolkata Knight Riders","97":"Mumbai Indians","98":"Delhi Daredevils","99":"Chennai Super Kings","100":"Rajasthan Royals","101":"Kings XI Punjab","102":"Mumbai Indians","103":"Kolkata Knight Riders","104":"Kings XI Punjab","105":"Rajasthan Royals","106":"Kolkata Knight Riders","107":"Delhi Daredevils","108":"Rajasthan Royals","109":"Kings XI Punjab","110":"Mumbai Indians","111":"Deccan Chargers","112":"Deccan Chargers","113":"Chennai Super Kings","114":"Deccan Chargers","115":"Kolkata Knight Riders","116":"Rajasthan Royals","117":"Delhi Daredevils","118":"Royal Challengers Bangalore","119":"Deccan Chargers","120":"Delhi Daredevils","121":"Kings XI Punjab","122":"Chennai Super Kings","123":"Mumbai Indians","124":"Rajasthan Royals","125":"Chennai Super Kings","126":"Kings XI Punjab","127":"Kolkata Knight Riders","128":"Royal Challengers Bangalore","129":"Delhi Daredevils","130":"Kings XI Punjab","131":"Kolkata Knight Riders","132":"Chennai Super Kings","133":"Rajasthan Royals","134":"Chennai Super Kings","135":"Deccan Chargers","136":"Kolkata Knight Riders","137":"Delhi Daredevils","138":"Chennai Super Kings","139":"Mumbai Indians","140":"Kolkata Knight Riders","141":"Kings XI Punjab","142":"Royal Challengers Bangalore","143":"Rajasthan Royals","144":"Deccan Chargers","145":"Royal Challengers Bangalore","146":"Rajasthan Royals","147":"Deccan Chargers","148":"Kings XI Punjab","149":"Royal Challengers Bangalore","150":"Rajasthan Royals","151":"Mumbai Indians","152":"Kings XI Punjab","153":"Delhi Daredevils","154":"Deccan Chargers","155":"Mumbai Indians","156":"Chennai Super Kings","157":"Kolkata Knight Riders","158":"Kings XI Punjab","159":"Mumbai Indians","160":"Royal Challengers Bangalore","161":"Delhi Daredevils","162":"Kolkata Knight Riders","163":"Royal Challengers Bangalore","164":"Delhi Daredevils","165":"Deccan Chargers","166":"Mumbai Indians","167":"Rajasthan Royals","168":"Chennai Super Kings","169":"Deccan Chargers","170":"Mumbai Indians","171":"Mumbai Indians","172":"Deccan Chargers","173":"Deccan Chargers","174":"Mumbai Indians","175":"Kolkata Knight Riders","176":"Rajasthan Royals","177":"Royal Challengers Bangalore","178":"Mumbai Indians","179":"Kings XI Punjab","180":"Deccan Chargers","181":"Delhi Daredevils","182":"Mumbai Indians","183":"Chennai Super Kings","184":"Kochi Tuskers Kerala","185":"Royal Challengers Bangalore","186":"Kolkata Knight Riders","187":"Kochi Tuskers Kerala","188":"Royal Challengers Bangalore","189":"Kings XI Punjab","190":"Delhi Daredevils","191":"Rajasthan Royals","192":"Chennai Super Kings","193":"Deccan Chargers","194":"Pune Warriors","195":"Kochi Tuskers Kerala","196":"Rajasthan Royals","197":"Chennai Super Kings","198":"Royal Challengers Bangalore","199":"Kings XI Punjab","200":"Mumbai Indians","201":"Kochi Tuskers Kerala","202":"Pune Warriors","203":"Royal Challengers Bangalore","204":"Chennai Super Kings","205":"Deccan Chargers","206":"Kolkata Knight Riders","207":"Mumbai Indians","208":"Pune Warriors","209":"Delhi Daredevils","210":"Kings XI Punjab","211":"Pune Warriors","212":"Deccan Chargers","213":"Kings XI Punjab","214":"Kochi Tuskers Kerala","215":"Kolkata Knight Riders","216":"Rajasthan Royals","217":"Mumbai Indians","218":"Kolkata Knight Riders","219":"Delhi Daredevils","220":"Kings XI Punjab","221":"Chennai Super Kings","222":"Delhi Daredevils","223":"Kochi Tuskers Kerala","224":"Pune Warriors","225":"Chennai Super Kings","226":"Pune Warriors","227":"Mumbai Indians","228":"Royal Challengers Bangalore","229":"Delhi Daredevils","230":"Kings XI Punjab","231":"Kolkata Knight Riders","232":"Deccan Chargers","233":"Delhi Daredevils","234":"Rajasthan Royals","235":"Deccan Chargers","236":"Royal Challengers Bangalore","237":"Kochi Tuskers Kerala","238":"Kolkata Knight Riders","239":"Rajasthan Royals","240":"Deccan Chargers","241":"Pune Warriors","242":"Chennai Super Kings","243":"Mumbai Indians","244":"Chennai Super Kings","245":"Kolkata Knight Riders","246":"Mumbai Indians","247":"Royal Challengers Bangalore","248":"Mumbai Indians","249":"Delhi Daredevils","250":"Pune Warriors","251":"Kings XI Punjab","252":"Delhi Daredevils","253":"Chennai Super Kings","254":"Kolkata Knight Riders","255":"Kings XI Punjab","256":"Mumbai Indians","257":"Kolkata Knight Riders","258":"Chennai Super Kings","259":"Rajasthan Royals","260":"Royal Challengers Bangalore","261":"Pune Warriors","262":"Rajasthan Royals","263":"Deccan Chargers","264":"Chennai Super Kings","265":"Kings XI Punjab","266":"Rajasthan Royals","267":"Delhi Daredevils","268":"Deccan Chargers","269":"Pune Warriors","270":"Kolkata Knight Riders","271":"Delhi Daredevils","272":"Pune Warriors","273":"Royal Challengers Bangalore","274":"Rajasthan Royals","275":"Pune Warriors","276":"Kings XI Punjab","277":"Kolkata Knight Riders","278":"Royal Challengers Bangalore","279":"Delhi Daredevils","280":"Mumbai Indians","281":"Deccan Chargers","282":"Mumbai Indians","283":"Kings XI Punjab","284":"Royal Challengers Bangalore","285":"Rajasthan Royals","286":"Deccan Chargers","287":"Kolkata Knight Riders","288":"Pune Warriors","289":"Delhi Daredevils","290":"Kings XI Punjab","291":"Mumbai Indians","292":"Deccan Chargers","293":"Pune Warriors","294":"Rajasthan Royals","295":"Chennai Super Kings","296":"Deccan Chargers","297":"Kolkata Knight Riders","298":"Rajasthan Royals","299":"Kings XI Punjab","300":"Royal Challengers Bangalore","301":"Chennai Super Kings","302":"Royal Challengers Bangalore","303":"Mumbai Indians","304":"Delhi Daredevils","305":"Pune Warriors","306":"Deccan Chargers","307":"Mumbai Indians","308":"Chennai Super Kings","309":"Kings XI Punjab","310":"Kolkata Knight Riders","311":"Chennai Super Kings","312":"Royal Challengers Bangalore","313":"Rajasthan Royals","314":"Delhi Daredevils","315":"Kolkata Knight Riders","316":"Royal Challengers Bangalore","317":"Mumbai Indians","318":"Kolkata Knight Riders","319":"Mumbai Indians","320":"Chennai Super Kings","321":"Chennai Super Kings","322":"Delhi Daredevils","323":"Mumbai Indians","324":"Pune Warriors","325":"Rajasthan Royals","326":"Mumbai Indians","327":"Kings XI Punjab","328":"Royal Challengers Bangalore","329":"Kolkata Knight Riders","330":"Delhi Daredevils","331":"Chennai Super Kings","332":"Kolkata Knight Riders","333":"Rajasthan Royals","334":"Sunrisers Hyderabad","335":"Pune Warriors","336":"Royal Challengers Bangalore","337":"Sunrisers Hyderabad","338":"Kings XI Punjab","339":"Pune Warriors","340":"Kolkata Knight Riders","341":"Delhi Daredevils","342":"Sunrisers Hyderabad","343":"Mumbai Indians","344":"Chennai Super Kings","345":"Kings XI Punjab","346":"Chennai Super Kings","347":"Rajasthan Royals","348":"Mumbai Indians","349":"Pune Warriors","350":"Rajasthan Royals","351":"Pune Warriors","352":"Delhi Daredevils","353":"Mumbai Indians","354":"Sunrisers Hyderabad","355":"Kings XI Punjab","356":"Sunrisers Hyderabad","357":"Royal Challengers Bangalore","358":"Kolkata Knight Riders","359":"Pune Warriors","360":"Royal Challengers Bangalore","361":"Kings XI Punjab","362":"Chennai Super Kings","363":"Mumbai Indians","364":"Kolkata Knight Riders","365":"Kings XI Punjab","366":"Royal Challengers Bangalore","367":"Rajasthan Royals","368":"Delhi Daredevils","369":"Kings XI Punjab","370":"Chennai Super Kings","371":"Pune Warriors","372":"Sunrisers Hyderabad","373":"Delhi Daredevils","374":"Kolkata Knight Riders","375":"Chennai Super Kings","376":"Rajasthan Royals","377":"Kolkata Knight Riders","378":"Royal Challengers Bangalore","379":"Mumbai Indians","380":"Sunrisers Hyderabad","381":"Royal Challengers Bangalore","382":"Chennai Super Kings","383":"Kings XI Punjab","384":"Sunrisers Hyderabad","385":"Pune Warriors","386":"Delhi Daredevils","387":"Rajasthan Royals","388":"Royal Challengers Bangalore","389":"Rajasthan Royals","390":"Mumbai Indians","391":"Delhi Daredevils","392":"Chennai Super Kings","393":"Kolkata Knight Riders","394":"Mumbai Indians","395":"Sunrisers Hyderabad","396":"Rajasthan Royals","397":"Mumbai Indians","398":"Kolkata Knight Riders","399":"Royal Challengers Bangalore","400":"Kings XI Punjab","401":"Rajasthan Royals","402":"Mumbai Indians","403":"Delhi Daredevils","404":"Kings XI Punjab","405":"Delhi Daredevils","406":"Sunrisers Hyderabad","407":"Chennai Super Kings","408":"Kolkata Knight Riders","409":"Delhi Daredevils","410":"Mumbai Indians","411":"Royal Challengers Bangalore","412":"Kings XI Punjab","413":"Mumbai Indians","414":"Chennai Super Kings","415":"Royal Challengers Bangalore","416":"Rajasthan Royals","417":"Sunrisers Hyderabad","418":"Kolkata Knight Riders","419":"Kings XI Punjab","420":"Rajasthan Royals","421":"Sunrisers Hyderabad","422":"Kolkata Knight Riders","423":"Chennai Super Kings","424":"Royal Challengers Bangalore","425":"Kolkata Knight Riders","426":"Chennai Super Kings","427":"Sunrisers Hyderabad","428":"Kings XI Punjab","429":"Sunrisers Hyderabad","430":"Chennai Super Kings","431":"Kolkata Knight Riders","432":"Rajasthan Royals","433":"Mumbai Indians","434":"Rajasthan Royals","435":"Delhi Daredevils","436":"Kings XI Punjab","437":"Mumbai Indians","438":"Delhi Daredevils","439":"Royal Challengers Bangalore","440":"Kolkata Knight Riders","441":"Mumbai Indians","442":"Kings XI Punjab","443":"Royal Challengers Bangalore","444":"Chennai Super Kings","445":"Mumbai Indians","446":"Royal Challengers Bangalore","447":"Sunrisers Hyderabad","448":"Delhi Daredevils","449":"Rajasthan Royals","450":"Chennai Super Kings","451":"Sunrisers Hyderabad","452":"Delhi Daredevils","453":"Rajasthan Royals","454":"Kolkata Knight Riders","455":"Mumbai Indians","456":"Kings XI Punjab","457":"Kings XI Punjab","458":"Mumbai Indians","459":"Delhi Daredevils","460":"Rajasthan Royals","461":"Sunrisers Hyderabad","462":"Royal Challengers Bangalore","463":"Rajasthan Royals","464":"Kings XI Punjab","465":"Sunrisers Hyderabad","466":"Mumbai Indians","467":"Chennai Super Kings","468":"Delhi Daredevils","469":"Rajasthan Royals","470":"Chennai Super Kings","471":"Delhi Daredevils","472":"Kolkata Knight Riders","473":"Chennai Super Kings","474":"Mumbai Indians","475":"Kolkata Knight Riders","476":"Kings XI Punjab","477":"Kolkata Knight Riders","478":"Chennai Super Kings","479":"Mumbai Indians","480":"Royal Challengers Bangalore","481":"Sunrisers Hyderabad","482":"Kings XI Punjab","483":"Royal Challengers Bangalore","484":"Sunrisers Hyderabad","485":"Delhi Daredevils","486":"Rajasthan Royals","487":"Kolkata Knight Riders","488":"Kings XI Punjab","489":"Rajasthan Royals","490":"Kolkata Knight Riders","491":"Chennai Super Kings","492":"Mumbai Indians","493":"Delhi Daredevils","494":"Royal Challengers Bangalore","495":"Sunrisers Hyderabad","496":"Delhi Daredevils","497":"Kings XI Punjab","498":"Sunrisers Hyderabad","499":"Mumbai Indians","500":"Kings XI Punjab","501":"Sunrisers Hyderabad","502":"Royal Challengers Bangalore","503":"Rajasthan Royals","504":"Kings XI Punjab","505":"Chennai Super Kings","506":"Royal Challengers Bangalore","507":"Kolkata Knight Riders","508":"Royal Challengers Bangalore","509":"Chennai Super Kings","510":"Kolkata Knight Riders","511":"Delhi Daredevils","512":"Mumbai Indians","513":"Mumbai Indians","514":"Rajasthan Royals","515":"Royal Challengers Bangalore","516":"Chennai Super Kings","517":"Rising Pune Supergiants","518":"Delhi Daredevils","519":"Gujarat Lions","520":"Sunrisers Hyderabad","521":"Mumbai Indians","522":"Rising Pune Supergiants","523":"Kings XI Punjab","524":"Kolkata Knight Riders","525":"Gujarat Lions","526":"Rising Pune Supergiants","527":"Delhi Daredevils","528":"Mumbai Indians","529":"Kolkata Knight Riders","530":"Royal Challengers Bangalore","531":"Sunrisers Hyderabad","532":"Royal Challengers Bangalore","533":"Mumbai Indians","534":"Kings XI Punjab","535":"Royal Challengers Bangalore","536":"Kolkata Knight Riders","537":"Mumbai Indians","538":"Rising Pune Supergiants","539":"Gujarat Lions","540":"Kolkata Knight Riders","541":"Gujarat Lions","542":"Kolkata Knight Riders","543":"Royal Challengers Bangalore","544":"Kings XI Punjab","545":"Mumbai Indians","546":"Kolkata Knight Riders","547":"Delhi Daredevils","548":"Kings XI Punjab","549":"Rising Pune Supergiants","550":"Gujarat Lions","551":"Rising Pune Supergiants","552":"Delhi Daredevils","553":"Sunrisers Hyderabad","554":"Gujarat Lions","555":"Royal Challengers Bangalore","556":"Sunrisers Hyderabad","557":"Mumbai Indians","558":"Delhi Daredevils","559":"Kings XI Punjab","560":"Gujarat Lions","561":"Rising Pune Supergiants","562":"Sunrisers Hyderabad","563":"Delhi Daredevils","564":"Royal Challengers Bangalore","565":"Delhi Daredevils","566":"Kings XI Punjab","567":"Kolkata Knight Riders","568":"Sunrisers Hyderabad","569":"Kings XI Punjab","570":"Mumbai Indians","571":"Sunrisers Hyderabad","572":"Royal Challengers Bangalore","573":"Royal Challengers Bangalore","574":"Kolkata Knight Riders","575":"Sunrisers Hyderabad","576":"Sunrisers Hyderabad","577":"Royal Challengers Bangalore","578":"Mumbai Indians","579":"Kolkata Knight Riders","580":"Rising Pune Supergiant","581":"Delhi Daredevils","582":"Gujarat Lions","583":"Kolkata Knight Riders","584":"Royal Challengers Bangalore","585":"Delhi Daredevils","586":"Sunrisers Hyderabad","587":"Kings XI Punjab","588":"Mumbai Indians","589":"Rising Pune Supergiant","590":"Sunrisers Hyderabad","591":"Kings XI Punjab","592":"Gujarat Lions","593":"Rising Pune Supergiant","594":"Kolkata Knight Riders","595":"Kings XI Punjab","596":"Royal Challengers Bangalore","597":"Delhi Daredevils","598":"Mumbai Indians","599":"Gujarat Lions","600":"Delhi Daredevils","601":"Sunrisers Hyderabad","602":"Kings XI Punjab","603":"Royal Challengers Bangalore","604":"Rising Pune Supergiant","605":"Kolkata Knight Riders","606":"Gujarat Lions","607":"Delhi Daredevils","608":"Sunrisers Hyderabad","609":"Royal Challengers Bangalore","610":"Mumbai Indians","611":"Delhi Daredevils","612":"Kolkata Knight Riders","613":"Royal Challengers Bangalore","614":"Gujarat Lions","615":"Sunrisers Hyderabad","616":"Rising Pune Supergiant","617":"Gujarat Lions","618":"Kings XI Punjab","619":"Rising Pune Supergiant","620":"Mumbai Indians","621":"Kolkata Knight Riders","622":"Gujarat Lions","623":"Mumbai Indians","624":"Kolkata Knight Riders","625":"Delhi Daredevils","626":"Kings XI Punjab","627":"Rising Pune Supergiant","628":"Sunrisers Hyderabad","629":"Mumbai Indians","630":"Kings XI Punjab","631":"Royal Challengers Bangalore","632":"Rising Pune Supergiant","633":"Kolkata Knight Riders","634":"Kolkata Knight Riders","635":"Rising Pune Supergiant","636":"Chennai Super Kings","637":"Delhi Daredevils","638":"Royal Challengers Bangalore","639":"Rajasthan Royals","640":"Kolkata Knight Riders","641":"Delhi Daredevils","642":"Mumbai Indians","643":"Kings XI Punjab","644":"Delhi Daredevils","645":"Sunrisers Hyderabad","646":"Rajasthan Royals","647":"Chennai Super Kings","648":"Delhi Daredevils","649":"Royal Challengers Bangalore","650":"Kolkata Knight Riders","651":"Sunrisers Hyderabad","652":"Rajasthan Royals","653":"Kings XI Punjab","654":"Delhi Daredevils","655":"Chennai Super Kings","656":"Mumbai Indians","657":"Kings XI Punjab","658":"Sunrisers Hyderabad","659":"Chennai Super Kings","660":"Kings XI Punjab","661":"Kolkata Knight Riders","662":"Mumbai Indians","663":"Sunrisers Hyderabad","664":"Kolkata Knight Riders","665":"Delhi Daredevils","666":"Mumbai Indians","667":"Rajasthan Royals","668":"Chennai Super Kings","669":"Mumbai Indians","670":"Royal Challengers Bangalore","671":"Delhi Daredevils","672":"Kolkata Knight Riders","673":"Rajasthan Royals","674":"Royal Challengers Bangalore","675":"Kings XI Punjab","676":"Mumbai Indians","677":"Sunrisers Hyderabad","678":"Chennai Super Kings","679":"Kolkata Knight Riders","680":"Royal Challengers Bangalore","681":"Sunrisers Hyderabad","682":"Rajasthan Royals","683":"Royal Challengers Bangalore","684":"Rajasthan Royals","685":"Kings XI Punjab","686":"Sunrisers Hyderabad","687":"Chennai Super Kings","688":"Royal Challengers Bangalore","689":"Kolkata Knight Riders","690":"Mumbai Indians","691":"Kings XI Punjab","692":"Chennai Super Kings","693":"Rajasthan Royals","694":"Sunrisers Hyderabad","695":"Sunrisers Hyderabad","696":"Royal Challengers Bangalore","697":"Sunrisers Hyderabad","698":"Delhi Capitals","699":"Kings XI Punjab","700":"Chennai Super Kings","701":"Kings XI Punjab","702":"Mumbai Indians","703":"Rajasthan Royals","704":"Mumbai Indians","705":"Kolkata Knight Riders","706":"Royal Challengers Bangalore","707":"Rajasthan Royals","708":"Delhi Capitals","709":"Royal Challengers Bangalore","710":"Chennai Super Kings","711":"Sunrisers Hyderabad","712":"Kolkata Knight Riders","713":"Kings XI Punjab","714":"Mumbai Indians","715":"Delhi Capitals","716":"Kolkata Knight Riders","717":"Sunrisers Hyderabad","718":"Kolkata Knight Riders","719":"Kings XI Punjab","720":"Chennai Super Kings","721":"Delhi Capitals","722":"Rajasthan Royals","723":"Royal Challengers Bangalore","724":"Chennai Super Kings","725":"Delhi Capitals","726":"Royal Challengers Bangalore","727":"Rajasthan Royals","728":"Chennai Super Kings","729":"Mumbai Indians","730":"Royal Challengers Bangalore","731":"Mumbai Indians","732":"Kings XI Punjab","733":"Kolkata Knight Riders","734":"Chennai Super Kings","735":"Delhi Capitals","736":"Sunrisers Hyderabad","737":"Kings XI Punjab","738":"Rajasthan Royals","739":"Mumbai Indians","740":"Sunrisers Hyderabad","741":"Royal Challengers Bangalore","742":"Mumbai Indians","743":"Kings XI Punjab","744":"Rajasthan Royals","745":"Delhi Capitals","746":"Sunrisers Hyderabad","747":"Kolkata Knight Riders","748":"Rajasthan Royals","749":"Sunrisers Hyderabad","750":"Chennai Super Kings","751":"Kolkata Knight Riders","752":"Chennai Super Kings","753":"Sunrisers Hyderabad","754":"Delhi Capitals","755":"Chennai Super Kings","756":"Chennai Super Kings","757":"Kings XI Punjab","758":"Royal Challengers Bangalore","759":"Sunrisers Hyderabad","760":"Chennai Super Kings","761":"Delhi Capitals","762":"Sunrisers Hyderabad","763":"Mumbai Indians","764":"Rajasthan Royals","765":"Chennai Super Kings","766":"Sunrisers Hyderabad","767":"Kings XI Punjab","768":"Rajasthan Royals","769":"Delhi Capitals","770":"Chennai Super Kings","771":"Rajasthan Royals","772":"Kolkata Knight Riders","773":"Delhi Capitals","774":"Royal Challengers Bangalore","775":"Rajasthan Royals","776":"Sunrisers Hyderabad","777":"Chennai Super Kings","778":"Royal Challengers Bangalore","779":"Kolkata Knight Riders","780":"Chennai Super Kings","781":"Kings XI Punjab","782":"Sunrisers Hyderabad","783":"Royal Challengers Bangalore","784":"Kings XI Punjab","785":"Mumbai Indians","786":"Royal Challengers Bangalore","787":"Kings XI Punjab","788":"Delhi Capitals","789":"Chennai Super Kings","790":"Mumbai Indians","791":"Rajasthan Royals","792":"Sunrisers Hyderabad","793":"Mumbai Indians","794":"Rajasthan Royals","795":"Kings XI Punjab","796":"Delhi Capitals","797":"Rajasthan Royals","798":"Sunrisers Hyderabad","799":"Mumbai Indians","800":"Chennai Super Kings","801":"Rajasthan Royals","802":"Sunrisers Hyderabad","803":"Chennai Super Kings","804":"Kolkata Knight Riders","805":"Rajasthan Royals","806":"Kings XI Punjab","807":"Rajasthan Royals","808":"Chennai Super Kings","809":"Kolkata Knight Riders","810":"Kings XI Punjab","811":"Mumbai Indians","812":"Delhi Capitals","813":"Sunrisers Hyderabad","814":"Sunrisers Hyderabad","815":"Mumbai Indians"},"toss_winner":{"0":"Royal Challengers Bangalore","1":"Chennai Super Kings","2":"Rajasthan Royals","3":"Mumbai Indians","4":"Deccan Chargers","5":"Kings XI Punjab","6":"Deccan Chargers","7":"Mumbai Indians","8":"Rajasthan Royals","9":"Mumbai Indians","10":"Rajasthan Royals","11":"Kolkata Knight Riders","12":"Deccan Chargers","13":"Delhi Daredevils","14":"Chennai Super Kings","15":"Kolkata Knight Riders","16":"Royal Challengers Bangalore","17":"Kings XI Punjab","18":"Rajasthan Royals","19":"Chennai Super Kings","20":"Deccan Chargers","21":"Kings XI Punjab","22":"Delhi Daredevils","23":"Chennai Super Kings","24":"Kings XI Punjab","25":"Deccan Chargers","26":"Mumbai Indians","27":"Chennai Super Kings","28":"Kolkata Knight Riders","29":"Rajasthan Royals","30":"Mumbai Indians","31":"Kings XI Punjab","32":"Kolkata Knight Riders","33":"Rajasthan Royals","34":"Royal Challengers Bangalore","35":"Kolkata Knight Riders","36":"Mumbai Indians","37":"Rajasthan Royals","38":"Deccan Chargers","39":"Mumbai Indians","40":"Delhi Daredevils","41":"Royal Challengers Bangalore","42":"Deccan Chargers","43":"Kolkata Knight Riders","44":"Delhi Daredevils","45":"Rajasthan Royals","46":"Mumbai Indians","47":"Royal Challengers Bangalore","48":"Kings XI Punjab","49":"Delhi Daredevils","50":"Rajasthan Royals","51":"Deccan Chargers","52":"Kings XI Punjab","53":"Rajasthan Royals","54":"Deccan Chargers","55":"Delhi Daredevils","56":"Kings XI Punjab","57":"Rajasthan Royals","58":"Chennai Super Kings","59":"Royal Challengers Bangalore","60":"Delhi Daredevils","61":"Kolkata Knight Riders","62":"Chennai Super Kings","63":"Kolkata Knight Riders","64":"Deccan Chargers","65":"Delhi Daredevils","66":"Kolkata Knight Riders","67":"Royal Challengers Bangalore","68":"Deccan Chargers","69":"Royal Challengers Bangalore","70":"Kings XI Punjab","71":"Deccan Chargers","72":"Mumbai Indians","73":"Delhi Daredevils","74":"Kolkata Knight Riders","75":"Kings XI Punjab","76":"Delhi Daredevils","77":"Rajasthan Royals","78":"Mumbai Indians","79":"Royal Challengers Bangalore","80":"Deccan Chargers","81":"Delhi Daredevils","82":"Kolkata Knight Riders","83":"Mumbai Indians","84":"Chennai Super Kings","85":"Kings XI Punjab","86":"Kolkata Knight Riders","87":"Deccan Chargers","88":"Rajasthan Royals","89":"Chennai Super Kings","90":"Mumbai Indians","91":"Kings XI Punjab","92":"Rajasthan Royals","93":"Mumbai Indians","94":"Delhi Daredevils","95":"Deccan Chargers","96":"Royal Challengers Bangalore","97":"Kings XI Punjab","98":"Deccan Chargers","99":"Chennai Super Kings","100":"Rajasthan Royals","101":"Kings XI Punjab","102":"Mumbai Indians","103":"Deccan Chargers","104":"Deccan Chargers","105":"Delhi Daredevils","106":"Chennai Super Kings","107":"Delhi Daredevils","108":"Kolkata Knight Riders","109":"Chennai Super Kings","110":"Delhi Daredevils","111":"Royal Challengers Bangalore","112":"Deccan Chargers","113":"Royal Challengers Bangalore","114":"Royal Challengers Bangalore","115":"Deccan Chargers","116":"Mumbai Indians","117":"Delhi Daredevils","118":"Kolkata Knight Riders","119":"Deccan Chargers","120":"Delhi Daredevils","121":"Kings XI Punjab","122":"Chennai Super Kings","123":"Delhi Daredevils","124":"Royal Challengers Bangalore","125":"Delhi Daredevils","126":"Kings XI Punjab","127":"Rajasthan Royals","128":"Mumbai Indians","129":"Deccan Chargers","130":"Chennai Super Kings","131":"Kolkata Knight Riders","132":"Chennai Super Kings","133":"Kings XI Punjab","134":"Mumbai Indians","135":"Deccan Chargers","136":"Kolkata Knight Riders","137":"Royal Challengers Bangalore","138":"Rajasthan Royals","139":"Deccan Chargers","140":"Delhi Daredevils","141":"Mumbai Indians","142":"Royal Challengers Bangalore","143":"Delhi Daredevils","144":"Kolkata Knight Riders","145":"Kings XI Punjab","146":"Chennai Super Kings","147":"Mumbai Indians","148":"Kolkata Knight Riders","149":"Delhi Daredevils","150":"Rajasthan Royals","151":"Chennai Super Kings","152":"Kings XI Punjab","153":"Kolkata Knight Riders","154":"Deccan Chargers","155":"Mumbai Indians","156":"Chennai Super Kings","157":"Royal Challengers Bangalore","158":"Delhi Daredevils","159":"Rajasthan Royals","160":"Royal Challengers Bangalore","161":"Mumbai Indians","162":"Kolkata Knight Riders","163":"Rajasthan Royals","164":"Chennai Super Kings","165":"Deccan Chargers","166":"Royal Challengers Bangalore","167":"Rajasthan Royals","168":"Chennai Super Kings","169":"Deccan Chargers","170":"Mumbai Indians","171":"Mumbai Indians","172":"Chennai Super Kings","173":"Deccan Chargers","174":"Chennai Super Kings","175":"Chennai Super Kings","176":"Rajasthan Royals","177":"Kochi Tuskers Kerala","178":"Delhi Daredevils","179":"Kings XI Punjab","180":"Kolkata Knight Riders","181":"Delhi Daredevils","182":"Mumbai Indians","183":"Kings XI Punjab","184":"Kochi Tuskers Kerala","185":"Royal Challengers Bangalore","186":"Kolkata Knight Riders","187":"Kochi Tuskers Kerala","188":"Chennai Super Kings","189":"Kings XI Punjab","190":"Delhi Daredevils","191":"Kolkata Knight Riders","192":"Kochi Tuskers Kerala","193":"Deccan Chargers","194":"Pune Warriors","195":"Kolkata Knight Riders","196":"Rajasthan Royals","197":"Chennai Super Kings","198":"Royal Challengers Bangalore","199":"Kings XI Punjab","200":"Deccan Chargers","201":"Rajasthan Royals","202":"Pune Warriors","203":"Royal Challengers Bangalore","204":"Pune Warriors","205":"Kochi Tuskers Kerala","206":"Delhi Daredevils","207":"Rajasthan Royals","208":"Pune Warriors","209":"Delhi Daredevils","210":"Kolkata Knight Riders","211":"Rajasthan Royals","212":"Chennai Super Kings","213":"Kings XI Punjab","214":"Kochi Tuskers Kerala","215":"Deccan Chargers","216":"Rajasthan Royals","217":"Pune Warriors","218":"Kolkata Knight Riders","219":"Delhi Daredevils","220":"Kings XI Punjab","221":"Chennai Super Kings","222":"Delhi Daredevils","223":"Kochi Tuskers Kerala","224":"Kings XI Punjab","225":"Rajasthan Royals","226":"Deccan Chargers","227":"Mumbai Indians","228":"Royal Challengers Bangalore","229":"Chennai Super Kings","230":"Kings XI Punjab","231":"Royal Challengers Bangalore","232":"Deccan Chargers","233":"Delhi Daredevils","234":"Kochi Tuskers Kerala","235":"Deccan Chargers","236":"Kings XI Punjab","237":"Chennai Super Kings","238":"Kolkata Knight Riders","239":"Mumbai Indians","240":"Kings XI Punjab","241":"Delhi Daredevils","242":"Royal Challengers Bangalore","243":"Mumbai Indians","244":"Chennai Super Kings","245":"Mumbai Indians","246":"Mumbai Indians","247":"Chennai Super Kings","248":"Mumbai Indians","249":"Delhi Daredevils","250":"Mumbai Indians","251":"Kings XI Punjab","252":"Delhi Daredevils","253":"Deccan Chargers","254":"Kolkata Knight Riders","255":"Pune Warriors","256":"Deccan Chargers","257":"Royal Challengers Bangalore","258":"Delhi Daredevils","259":"Rajasthan Royals","260":"Royal Challengers Bangalore","261":"Kings XI Punjab","262":"Rajasthan Royals","263":"Deccan Chargers","264":"Chennai Super Kings","265":"Kolkata Knight Riders","266":"Rajasthan Royals","267":"Delhi Daredevils","268":"Deccan Chargers","269":"Pune Warriors","270":"Kings XI Punjab","271":"Deccan Chargers","272":"Pune Warriors","273":"Royal Challengers Bangalore","274":"Rajasthan Royals","275":"Delhi Daredevils","276":"Mumbai Indians","277":"Kolkata Knight Riders","278":"Rajasthan Royals","279":"Pune Warriors","280":"Kings XI Punjab","281":"Deccan Chargers","282":"Mumbai Indians","283":"Kings XI Punjab","284":"Kolkata Knight Riders","285":"Delhi Daredevils","286":"Mumbai Indians","287":"Chennai Super Kings","288":"Deccan Chargers","289":"Rajasthan Royals","290":"Kings XI Punjab","291":"Mumbai Indians","292":"Chennai Super Kings","293":"Kolkata Knight Riders","294":"Rajasthan Royals","295":"Mumbai Indians","296":"Royal Challengers Bangalore","297":"Delhi Daredevils","298":"Pune Warriors","299":"Deccan Chargers","300":"Royal Challengers Bangalore","301":"Chennai Super Kings","302":"Pune Warriors","303":"Mumbai Indians","304":"Chennai Super Kings","305":"Rajasthan Royals","306":"Deccan Chargers","307":"Mumbai Indians","308":"Chennai Super Kings","309":"Kings XI Punjab","310":"Mumbai Indians","311":"Kings XI Punjab","312":"Delhi Daredevils","313":"Rajasthan Royals","314":"Delhi Daredevils","315":"Kolkata Knight Riders","316":"Royal Challengers Bangalore","317":"Rajasthan Royals","318":"Kolkata Knight Riders","319":"Mumbai Indians","320":"Delhi Daredevils","321":"Chennai Super Kings","322":"Kolkata Knight Riders","323":"Mumbai Indians","324":"Pune Warriors","325":"Rajasthan Royals","326":"Mumbai Indians","327":"Pune Warriors","328":"Royal Challengers Bangalore","329":"Kolkata Knight Riders","330":"Mumbai Indians","331":"Chennai Super Kings","332":"Royal Challengers Bangalore","333":"Rajasthan Royals","334":"Delhi Daredevils","335":"Mumbai Indians","336":"Chennai Super Kings","337":"Kolkata Knight Riders","338":"Rajasthan Royals","339":"Pune Warriors","340":"Kolkata Knight Riders","341":"Royal Challengers Bangalore","342":"Pune Warriors","343":"Rajasthan Royals","344":"Chennai Super Kings","345":"Kings XI Punjab","346":"Kolkata Knight Riders","347":"Royal Challengers Bangalore","348":"Mumbai Indians","349":"Kings XI Punjab","350":"Rajasthan Royals","351":"Pune Warriors","352":"Delhi Daredevils","353":"Kolkata Knight Riders","354":"Sunrisers Hyderabad","355":"Kings XI Punjab","356":"Sunrisers Hyderabad","357":"Mumbai Indians","358":"Kolkata Knight Riders","359":"Pune Warriors","360":"Rajasthan Royals","361":"Mumbai Indians","362":"Chennai Super Kings","363":"Mumbai Indians","364":"Kolkata Knight Riders","365":"Chennai Super Kings","366":"Royal Challengers Bangalore","367":"Rajasthan Royals","368":"Delhi Daredevils","369":"Kings XI Punjab","370":"Mumbai Indians","371":"Pune Warriors","372":"Sunrisers Hyderabad","373":"Delhi Daredevils","374":"Mumbai Indians","375":"Sunrisers Hyderabad","376":"Rajasthan Royals","377":"Kolkata Knight Riders","378":"Delhi Daredevils","379":"Pune Warriors","380":"Kings XI Punjab","381":"Kolkata Knight Riders","382":"Rajasthan Royals","383":"Kings XI Punjab","384":"Sunrisers Hyderabad","385":"Kolkata Knight Riders","386":"Chennai Super Kings","387":"Rajasthan Royals","388":"Kings XI Punjab","389":"Sunrisers Hyderabad","390":"Mumbai Indians","391":"Pune Warriors","392":"Chennai Super Kings","393":"Kolkata Knight Riders","394":"Chennai Super Kings","395":"Sunrisers Hyderabad","396":"Rajasthan Royals","397":"Mumbai Indians","398":"Kolkata Knight Riders","399":"Royal Challengers Bangalore","400":"Chennai Super Kings","401":"Rajasthan Royals","402":"Royal Challengers Bangalore","403":"Kolkata Knight Riders","404":"Kings XI Punjab","405":"Chennai Super Kings","406":"Sunrisers Hyderabad","407":"Rajasthan Royals","408":"Royal Challengers Bangalore","409":"Sunrisers Hyderabad","410":"Mumbai Indians","411":"Rajasthan Royals","412":"Kolkata Knight Riders","413":"Mumbai Indians","414":"Sunrisers Hyderabad","415":"Kings XI Punjab","416":"Rajasthan Royals","417":"Mumbai Indians","418":"Chennai Super Kings","419":"Kings XI Punjab","420":"Rajasthan Royals","421":"Royal Challengers Bangalore","422":"Kolkata Knight Riders","423":"Chennai Super Kings","424":"Royal Challengers Bangalore","425":"Delhi Daredevils","426":"Chennai Super Kings","427":"Rajasthan Royals","428":"Royal Challengers Bangalore","429":"Sunrisers Hyderabad","430":"Chennai Super Kings","431":"Kolkata Knight Riders","432":"Royal Challengers Bangalore","433":"Sunrisers Hyderabad","434":"Rajasthan Royals","435":"Delhi Daredevils","436":"Kings XI Punjab","437":"Kolkata Knight Riders","438":"Delhi Daredevils","439":"Chennai Super Kings","440":"Sunrisers Hyderabad","441":"Mumbai Indians","442":"Kings XI Punjab","443":"Royal Challengers Bangalore","444":"Kolkata Knight Riders","445":"Mumbai Indians","446":"Royal Challengers Bangalore","447":"Sunrisers Hyderabad","448":"Delhi Daredevils","449":"Rajasthan Royals","450":"Chennai Super Kings","451":"Kolkata Knight Riders","452":"Kings XI Punjab","453":"Mumbai Indians","454":"Kings XI Punjab","455":"Chennai Super Kings","456":"Chennai Super Kings","457":"Kolkata Knight Riders","458":"Kolkata Knight Riders","459":"Delhi Daredevils","460":"Kings XI Punjab","461":"Chennai Super Kings","462":"Royal Challengers Bangalore","463":"Rajasthan Royals","464":"Mumbai Indians","465":"Sunrisers Hyderabad","466":"Mumbai Indians","467":"Kolkata Knight Riders","468":"Kings XI Punjab","469":"Rajasthan Royals","470":"Mumbai Indians","471":"Delhi Daredevils","472":"Kolkata Knight Riders","473":"Chennai Super Kings","474":"Royal Challengers Bangalore","475":"Kolkata Knight Riders","476":"Kings XI Punjab","477":"Kolkata Knight Riders","478":"Royal Challengers Bangalore","479":"Mumbai Indians","480":"Royal Challengers Bangalore","481":"Mumbai Indians","482":"Chennai Super Kings","483":"Royal Challengers Bangalore","484":"Kings XI Punjab","485":"Kolkata Knight Riders","486":"Rajasthan Royals","487":"Kolkata Knight Riders","488":"Delhi Daredevils","489":"Rajasthan Royals","490":"Royal Challengers Bangalore","491":"Chennai Super Kings","492":"Mumbai Indians","493":"Delhi Daredevils","494":"Chennai Super Kings","495":"Sunrisers Hyderabad","496":"Delhi Daredevils","497":"Kings XI Punjab","498":"Rajasthan Royals","499":"Chennai Super Kings","500":"Kings XI Punjab","501":"Sunrisers Hyderabad","502":"Royal Challengers Bangalore","503":"Chennai Super Kings","504":"Sunrisers Hyderabad","505":"Chennai Super Kings","506":"Royal Challengers Bangalore","507":"Kolkata Knight Riders","508":"Sunrisers Hyderabad","509":"Kings XI Punjab","510":"Rajasthan Royals","511":"Royal Challengers Bangalore","512":"Sunrisers Hyderabad","513":"Mumbai Indians","514":"Royal Challengers Bangalore","515":"Chennai Super Kings","516":"Chennai Super Kings","517":"Mumbai Indians","518":"Kolkata Knight Riders","519":"Gujarat Lions","520":"Sunrisers Hyderabad","521":"Mumbai Indians","522":"Rising Pune Supergiants","523":"Delhi Daredevils","524":"Sunrisers Hyderabad","525":"Gujarat Lions","526":"Rising Pune Supergiants","527":"Delhi Daredevils","528":"Sunrisers Hyderabad","529":"Kolkata Knight Riders","530":"Mumbai Indians","531":"Sunrisers Hyderabad","532":"Rising Pune Supergiants","533":"Mumbai Indians","534":"Sunrisers Hyderabad","535":"Royal Challengers Bangalore","536":"Kolkata Knight Riders","537":"Kings XI Punjab","538":"Rising Pune Supergiants","539":"Delhi Daredevils","540":"Mumbai Indians","541":"Gujarat Lions","542":"Kolkata Knight Riders","543":"Royal Challengers Bangalore","544":"Gujarat Lions","545":"Mumbai Indians","546":"Kolkata Knight Riders","547":"Delhi Daredevils","548":"Kings XI Punjab","549":"Rising Pune Supergiants","550":"Sunrisers Hyderabad","551":"Royal Challengers Bangalore","552":"Delhi Daredevils","553":"Mumbai Indians","554":"Gujarat Lions","555":"Kings XI Punjab","556":"Sunrisers Hyderabad","557":"Mumbai Indians","558":"Delhi Daredevils","559":"Mumbai Indians","560":"Gujarat Lions","561":"Rising Pune Supergiants","562":"Kings XI Punjab","563":"Delhi Daredevils","564":"Royal Challengers Bangalore","565":"Rising Pune Supergiants","566":"Kings XI Punjab","567":"Gujarat Lions","568":"Delhi Daredevils","569":"Kings XI Punjab","570":"Gujarat Lions","571":"Sunrisers Hyderabad","572":"Royal Challengers Bangalore","573":"Royal Challengers Bangalore","574":"Kolkata Knight Riders","575":"Sunrisers Hyderabad","576":"Sunrisers Hyderabad","577":"Royal Challengers Bangalore","578":"Rising Pune Supergiant","579":"Kolkata Knight Riders","580":"Kings XI Punjab","581":"Royal Challengers Bangalore","582":"Sunrisers Hyderabad","583":"Mumbai Indians","584":"Royal Challengers Bangalore","585":"Rising Pune Supergiant","586":"Mumbai Indians","587":"Kolkata Knight Riders","588":"Mumbai Indians","589":"Gujarat Lions","590":"Sunrisers Hyderabad","591":"Delhi Daredevils","592":"Mumbai Indians","593":"Royal Challengers Bangalore","594":"Delhi Daredevils","595":"Kings XI Punjab","596":"Gujarat Lions","597":"Sunrisers Hyderabad","598":"Mumbai Indians","599":"Gujarat Lions","600":"Delhi Daredevils","601":"Rising Pune Supergiant","602":"Gujarat Lions","603":"Royal Challengers Bangalore","604":"Mumbai Indians","605":"Kolkata Knight Riders","606":"Gujarat Lions","607":"Kolkata Knight Riders","608":"Kings XI Punjab","609":"Royal Challengers Bangalore","610":"Gujarat Lions","611":"Kings XI Punjab","612":"Kolkata Knight Riders","613":"Royal Challengers Bangalore","614":"Rising Pune Supergiant","615":"Delhi Daredevils","616":"Rising Pune Supergiant","617":"Delhi Daredevils","618":"Royal Challengers Bangalore","619":"Sunrisers Hyderabad","620":"Delhi Daredevils","621":"Kolkata Knight Riders","622":"Gujarat Lions","623":"Mumbai Indians","624":"Kolkata Knight Riders","625":"Delhi Daredevils","626":"Mumbai Indians","627":"Delhi Daredevils","628":"Sunrisers Hyderabad","629":"Kolkata Knight Riders","630":"Rising Pune Supergiant","631":"Royal Challengers Bangalore","632":"Mumbai Indians","633":"Kolkata Knight Riders","634":"Mumbai Indians","635":"Mumbai Indians","636":"Chennai Super Kings","637":"Kings XI Punjab","638":"Kolkata Knight Riders","639":"Sunrisers Hyderabad","640":"Chennai Super Kings","641":"Delhi Daredevils","642":"Sunrisers Hyderabad","643":"Royal Challengers Bangalore","644":"Delhi Daredevils","645":"Sunrisers Hyderabad","646":"Royal Challengers Bangalore","647":"Chennai Super Kings","648":"Delhi Daredevils","649":"Royal Challengers Bangalore","650":"Kolkata Knight Riders","651":"Kings XI Punjab","652":"Rajasthan Royals","653":"Kings XI Punjab","654":"Royal Challengers Bangalore","655":"Sunrisers Hyderabad","656":"Mumbai Indians","657":"Delhi Daredevils","658":"Mumbai Indians","659":"Chennai Super Kings","660":"Kings XI Punjab","661":"Kolkata Knight Riders","662":"Mumbai Indians","663":"Sunrisers Hyderabad","664":"Kolkata Knight Riders","665":"Delhi Daredevils","666":"Mumbai Indians","667":"Rajasthan Royals","668":"Kolkata Knight Riders","669":"Mumbai Indians","670":"Chennai Super Kings","671":"Delhi Daredevils","672":"Kolkata Knight Riders","673":"Kings XI Punjab","674":"Royal Challengers Bangalore","675":"Rajasthan Royals","676":"Kolkata Knight Riders","677":"Delhi Daredevils","678":"Chennai Super Kings","679":"Kings XI Punjab","680":"Royal Challengers Bangalore","681":"Chennai Super Kings","682":"Rajasthan Royals","683":"Royal Challengers Bangalore","684":"Kolkata Knight Riders","685":"Kings XI Punjab","686":"Sunrisers Hyderabad","687":"Chennai Super Kings","688":"Rajasthan Royals","689":"Sunrisers Hyderabad","690":"Delhi Daredevils","691":"Chennai Super Kings","692":"Chennai Super Kings","693":"Rajasthan Royals","694":"Kolkata Knight Riders","695":"Chennai Super Kings","696":"Chennai Super Kings","697":"Kolkata Knight Riders","698":"Mumbai Indians","699":"Rajasthan Royals","700":"Delhi Capitals","701":"Kings XI Punjab","702":"Royal Challengers Bangalore","703":"Rajasthan Royals","704":"Kings XI Punjab","705":"Delhi Capitals","706":"Royal Challengers Bangalore","707":"Rajasthan Royals","708":"Delhi Capitals","709":"Rajasthan Royals","710":"Chennai Super Kings","711":"Sunrisers Hyderabad","712":"Kolkata Knight Riders","713":"Chennai Super Kings","714":"Sunrisers Hyderabad","715":"Delhi Capitals","716":"Kolkata Knight Riders","717":"Kings XI Punjab","718":"Chennai Super Kings","719":"Mumbai Indians","720":"Chennai Super Kings","721":"Delhi Capitals","722":"Rajasthan Royals","723":"Royal Challengers Bangalore","724":"Chennai Super Kings","725":"Sunrisers Hyderabad","726":"Mumbai Indians","727":"Rajasthan Royals","728":"Chennai Super Kings","729":"Mumbai Indians","730":"Kolkata Knight Riders","731":"Rajasthan Royals","732":"Delhi Capitals","733":"Sunrisers Hyderabad","734":"Chennai Super Kings","735":"Delhi Capitals","736":"Chennai Super Kings","737":"Kings XI Punjab","738":"Rajasthan Royals","739":"Chennai Super Kings","740":"Rajasthan Royals","741":"Delhi Capitals","742":"Mumbai Indians","743":"Kings XI Punjab","744":"Rajasthan Royals","745":"Delhi Capitals","746":"Mumbai Indians","747":"Kolkata Knight Riders","748":"Rajasthan Royals","749":"Royal Challengers Bangalore","750":"Kings XI Punjab","751":"Mumbai Indians","752":"Chennai Super Kings","753":"Delhi Capitals","754":"Chennai Super Kings","755":"Mumbai Indians","756":"Chennai Super Kings","757":"Kings XI Punjab","758":"Kolkata Knight Riders","759":"Sunrisers Hyderabad","760":"Chennai Super Kings","761":"Delhi Capitals","762":"Sunrisers Hyderabad","763":"Mumbai Indians","764":"Rajasthan Royals","765":"Kolkata Knight Riders","766":"Sunrisers Hyderabad","767":"Kings XI Punjab","768":"Rajasthan Royals","769":"Delhi Capitals","770":"Chennai Super Kings","771":"Sunrisers Hyderabad","772":"Kolkata Knight Riders","773":"Chennai Super Kings","774":"Royal Challengers Bangalore","775":"Mumbai Indians","776":"Sunrisers Hyderabad","777":"Kings XI Punjab","778":"Rajasthan Royals","779":"Kolkata Knight Riders","780":"Sunrisers Hyderabad","781":"Mumbai Indians","782":"Sunrisers Hyderabad","783":"Royal Challengers Bangalore","784":"Kings XI Punjab","785":"Mumbai Indians","786":"Rajasthan Royals","787":"Kolkata Knight Riders","788":"Delhi Capitals","789":"Royal Challengers Bangalore","790":"Kolkata Knight Riders","791":"Rajasthan Royals","792":"Chennai Super Kings","793":"Delhi Capitals","794":"Rajasthan Royals","795":"Royal Challengers Bangalore","796":"Delhi Capitals","797":"Chennai Super Kings","798":"Sunrisers Hyderabad","799":"Mumbai Indians","800":"Chennai Super Kings","801":"Rajasthan Royals","802":"Mumbai Indians","803":"Chennai Super Kings","804":"Royal Challengers Bangalore","805":"Mumbai Indians","806":"Sunrisers Hyderabad","807":"Delhi Capitals","808":"Royal Challengers Bangalore","809":"Sunrisers Hyderabad","810":"Delhi Capitals","811":"Mumbai Indians","812":"Delhi Capitals","813":"Sunrisers Hyderabad","814":"Delhi Capitals","815":"Delhi Capitals"},"toss_decision":{"0":"field","1":"bat","2":"bat","3":"bat","4":"bat","5":"bat","6":"bat","7":"field","8":"field","9":"field","10":"field","11":"bat","12":"field","13":"bat","14":"bat","15":"bat","16":"field","17":"field","18":"bat","19":"bat","20":"bat","21":"bat","22":"field","23":"bat","24":"field","25":"field","26":"field","27":"field","28":"bat","29":"field","30":"field","31":"field","32":"bat","33":"field","34":"bat","35":"bat","36":"field","37":"field","38":"field","39":"field","40":"bat","41":"field","42":"field","43":"bat","44":"field","45":"field","46":"field","47":"bat","48":"field","49":"field","50":"bat","51":"field","52":"bat","53":"field","54":"bat","55":"field","56":"bat","57":"field","58":"field","59":"bat","60":"field","61":"bat","62":"bat","63":"field","64":"bat","65":"bat","66":"field","67":"bat","68":"bat","69":"bat","70":"bat","71":"field","72":"bat","73":"bat","74":"bat","75":"bat","76":"field","77":"field","78":"bat","79":"bat","80":"bat","81":"field","82":"bat","83":"bat","84":"bat","85":"field","86":"bat","87":"bat","88":"field","89":"bat","90":"bat","91":"field","92":"bat","93":"bat","94":"field","95":"bat","96":"field","97":"bat","98":"field","99":"bat","100":"bat","101":"field","102":"bat","103":"field","104":"field","105":"bat","106":"bat","107":"bat","108":"field","109":"bat","110":"field","111":"bat","112":"field","113":"field","114":"field","115":"field","116":"bat","117":"field","118":"field","119":"bat","120":"field","121":"bat","122":"bat","123":"field","124":"field","125":"bat","126":"field","127":"bat","128":"bat","129":"bat","130":"field","131":"bat","132":"field","133":"field","134":"field","135":"bat","136":"bat","137":"field","138":"bat","139":"field","140":"bat","141":"field","142":"bat","143":"bat","144":"bat","145":"bat","146":"bat","147":"bat","148":"bat","149":"bat","150":"bat","151":"bat","152":"bat","153":"bat","154":"field","155":"bat","156":"bat","157":"field","158":"bat","159":"field","160":"field","161":"bat","162":"bat","163":"bat","164":"bat","165":"field","166":"field","167":"bat","168":"field","169":"bat","170":"bat","171":"bat","172":"bat","173":"bat","174":"bat","175":"bat","176":"field","177":"bat","178":"bat","179":"bat","180":"bat","181":"bat","182":"field","183":"field","184":"bat","185":"field","186":"field","187":"field","188":"bat","189":"field","190":"field","191":"field","192":"field","193":"bat","194":"bat","195":"field","196":"field","197":"field","198":"field","199":"field","200":"field","201":"field","202":"field","203":"field","204":"bat","205":"field","206":"field","207":"field","208":"field","209":"bat","210":"field","211":"field","212":"bat","213":"field","214":"field","215":"field","216":"bat","217":"field","218":"field","219":"field","220":"field","221":"bat","222":"field","223":"bat","224":"bat","225":"field","226":"bat","227":"field","228":"field","229":"bat","230":"field","231":"field","232":"bat","233":"field","234":"field","235":"field","236":"bat","237":"bat","238":"field","239":"bat","240":"field","241":"bat","242":"field","243":"field","244":"field","245":"field","246":"field","247":"bat","248":"field","249":"field","250":"field","251":"field","252":"field","253":"field","254":"field","255":"bat","256":"bat","257":"field","258":"field","259":"field","260":"bat","261":"field","262":"bat","263":"bat","264":"bat","265":"field","266":"bat","267":"field","268":"bat","269":"bat","270":"bat","271":"bat","272":"field","273":"field","274":"bat","275":"field","276":"bat","277":"field","278":"field","279":"bat","280":"bat","281":"bat","282":"field","283":"bat","284":"bat","285":"bat","286":"field","287":"bat","288":"bat","289":"bat","290":"field","291":"bat","292":"bat","293":"bat","294":"bat","295":"field","296":"field","297":"bat","298":"bat","299":"field","300":"field","301":"field","302":"field","303":"bat","304":"field","305":"bat","306":"bat","307":"field","308":"field","309":"bat","310":"field","311":"field","312":"field","313":"bat","314":"field","315":"bat","316":"field","317":"bat","318":"bat","319":"field","320":"field","321":"bat","322":"field","323":"field","324":"field","325":"bat","326":"bat","327":"bat","328":"bat","329":"field","330":"bat","331":"field","332":"field","333":"bat","334":"bat","335":"bat","336":"field","337":"bat","338":"field","339":"bat","340":"field","341":"field","342":"field","343":"bat","344":"bat","345":"bat","346":"bat","347":"field","348":"bat","349":"field","350":"bat","351":"field","352":"field","353":"bat","354":"bat","355":"bat","356":"bat","357":"bat","358":"field","359":"field","360":"field","361":"bat","362":"bat","363":"bat","364":"bat","365":"bat","366":"bat","367":"bat","368":"bat","369":"field","370":"bat","371":"bat","372":"bat","373":"bat","374":"bat","375":"field","376":"field","377":"bat","378":"field","379":"bat","380":"field","381":"field","382":"field","383":"field","384":"bat","385":"field","386":"bat","387":"field","388":"field","389":"bat","390":"field","391":"bat","392":"field","393":"bat","394":"bat","395":"bat","396":"bat","397":"bat","398":"bat","399":"field","400":"bat","401":"field","402":"field","403":"bat","404":"field","405":"bat","406":"field","407":"field","408":"field","409":"bat","410":"bat","411":"field","412":"field","413":"bat","414":"bat","415":"field","416":"bat","417":"field","418":"bat","419":"bat","420":"field","421":"field","422":"field","423":"field","424":"field","425":"bat","426":"field","427":"field","428":"field","429":"field","430":"field","431":"field","432":"bat","433":"bat","434":"bat","435":"field","436":"field","437":"field","438":"field","439":"bat","440":"bat","441":"bat","442":"field","443":"bat","444":"field","445":"field","446":"field","447":"field","448":"field","449":"field","450":"field","451":"field","452":"field","453":"field","454":"field","455":"field","456":"field","457":"field","458":"field","459":"field","460":"field","461":"bat","462":"field","463":"field","464":"field","465":"field","466":"bat","467":"field","468":"bat","469":"field","470":"bat","471":"bat","472":"field","473":"bat","474":"field","475":"field","476":"field","477":"field","478":"field","479":"field","480":"field","481":"bat","482":"bat","483":"field","484":"field","485":"bat","486":"field","487":"field","488":"field","489":"field","490":"field","491":"field","492":"bat","493":"field","494":"bat","495":"field","496":"bat","497":"field","498":"field","499":"bat","500":"bat","501":"bat","502":"bat","503":"bat","504":"bat","505":"bat","506":"field","507":"field","508":"bat","509":"bat","510":"bat","511":"field","512":"bat","513":"bat","514":"bat","515":"field","516":"field","517":"bat","518":"field","519":"field","520":"field","521":"field","522":"bat","523":"field","524":"bat","525":"field","526":"bat","527":"field","528":"field","529":"field","530":"field","531":"field","532":"field","533":"field","534":"field","535":"bat","536":"field","537":"field","538":"field","539":"field","540":"field","541":"field","542":"field","543":"field","544":"field","545":"field","546":"field","547":"field","548":"field","549":"field","550":"field","551":"field","552":"field","553":"field","554":"field","555":"field","556":"bat","557":"field","558":"field","559":"bat","560":"field","561":"bat","562":"bat","563":"field","564":"field","565":"field","566":"field","567":"field","568":"field","569":"bat","570":"field","571":"field","572":"field","573":"field","574":"field","575":"field","576":"bat","577":"field","578":"field","579":"field","580":"field","581":"bat","582":"field","583":"field","584":"bat","585":"field","586":"field","587":"field","588":"field","589":"field","590":"field","591":"bat","592":"field","593":"field","594":"bat","595":"field","596":"field","597":"bat","598":"field","599":"field","600":"field","601":"field","602":"field","603":"field","604":"field","605":"field","606":"field","607":"field","608":"field","609":"field","610":"bat","611":"field","612":"field","613":"bat","614":"field","615":"field","616":"field","617":"field","618":"field","619":"field","620":"field","621":"field","622":"field","623":"bat","624":"field","625":"field","626":"field","627":"bat","628":"field","629":"field","630":"field","631":"bat","632":"field","633":"field","634":"field","635":"bat","636":"field","637":"field","638":"field","639":"field","640":"field","641":"field","642":"field","643":"field","644":"field","645":"field","646":"field","647":"field","648":"field","649":"field","650":"field","651":"bat","652":"field","653":"field","654":"field","655":"field","656":"bat","657":"field","658":"field","659":"field","660":"field","661":"field","662":"field","663":"bat","664":"field","665":"field","666":"field","667":"field","668":"field","669":"field","670":"field","671":"bat","672":"field","673":"field","674":"field","675":"bat","676":"field","677":"bat","678":"bat","679":"field","680":"field","681":"field","682":"field","683":"field","684":"field","685":"field","686":"field","687":"field","688":"bat","689":"bat","690":"bat","691":"field","692":"field","693":"field","694":"field","695":"field","696":"field","697":"field","698":"field","699":"field","700":"bat","701":"field","702":"field","703":"bat","704":"field","705":"field","706":"field","707":"field","708":"field","709":"field","710":"field","711":"field","712":"field","713":"bat","714":"field","715":"field","716":"field","717":"field","718":"field","719":"field","720":"field","721":"field","722":"field","723":"field","724":"field","725":"field","726":"field","727":"field","728":"bat","729":"bat","730":"field","731":"field","732":"field","733":"field","734":"field","735":"field","736":"field","737":"field","738":"field","739":"field","740":"field","741":"bat","742":"field","743":"field","744":"field","745":"field","746":"bat","747":"field","748":"bat","749":"field","750":"field","751":"field","752":"bat","753":"field","754":"field","755":"bat","756":"field","757":"field","758":"bat","759":"field","760":"field","761":"field","762":"field","763":"field","764":"field","765":"bat","766":"field","767":"field","768":"field","769":"field","770":"field","771":"bat","772":"field","773":"bat","774":"field","775":"bat","776":"field","777":"bat","778":"bat","779":"field","780":"bat","781":"bat","782":"field","783":"field","784":"field","785":"field","786":"bat","787":"bat","788":"field","789":"bat","790":"bat","791":"field","792":"bat","793":"bat","794":"field","795":"bat","796":"field","797":"bat","798":"field","799":"field","800":"field","801":"field","802":"bat","803":"field","804":"bat","805":"bat","806":"bat","807":"bat","808":"bat","809":"bat","810":"bat","811":"field","812":"field","813":"field","814":"bat","815":"bat"},"winner":{"0":"Kolkata Knight Riders","1":"Chennai Super Kings","2":"Delhi Daredevils","3":"Royal Challengers Bangalore","4":"Kolkata Knight Riders","5":"Rajasthan Royals","6":"Delhi Daredevils","7":"Chennai Super Kings","8":"Rajasthan Royals","9":"Kings XI Punjab","10":"Rajasthan Royals","11":"Chennai Super Kings","12":"Deccan Chargers","13":"Kings XI Punjab","14":"Chennai Super Kings","15":"Mumbai Indians","16":"Delhi Daredevils","17":"Kings XI Punjab","18":"Rajasthan Royals","19":"Delhi Daredevils","20":"Royal Challengers Bangalore","21":"Kings XI Punjab","22":"Mumbai Indians","23":"Rajasthan Royals","24":"Kings XI Punjab","25":"Deccan Chargers","26":"Mumbai Indians","27":"Chennai Super Kings","28":"Kolkata Knight Riders","29":"Rajasthan Royals","30":"Mumbai Indians","31":"Chennai Super Kings","32":"Kolkata Knight Riders","33":"Rajasthan Royals","34":"Kings XI Punjab","35":"Kolkata Knight Riders","36":"Mumbai Indians","37":"Kings XI Punjab","38":"Delhi Daredevils","39":"Mumbai Indians","40":"Kings XI Punjab","41":"Rajasthan Royals","42":"Mumbai Indians","43":"Chennai Super Kings","44":"Delhi Daredevils","45":"Rajasthan Royals","46":"Kings XI Punjab","47":"Royal Challengers Bangalore","48":"Kings XI Punjab","49":"Delhi Daredevils","50":"Rajasthan Royals","51":"Royal Challengers Bangalore","52":"Kolkata Knight Riders","53":"Rajasthan Royals","54":"Chennai Super Kings","55":"Rajasthan Royals","56":"Chennai Super Kings","57":"Rajasthan Royals","58":"Mumbai Indians","59":"Royal Challengers Bangalore","60":"Delhi Daredevils","61":"Deccan Chargers","62":"Chennai Super Kings","63":"Kolkata Knight Riders","64":"Deccan Chargers","65":"Delhi Daredevils","66":"Rajasthan Royals","67":"Kings XI Punjab","68":"Deccan Chargers","69":"Delhi Daredevils","70":"Kings XI Punjab","71":"Deccan Chargers","72":"Mumbai Indians","73":"Rajasthan Royals","74":"Royal Challengers Bangalore","75":"Kings XI Punjab","76":"Delhi Daredevils","77":"Chennai Super Kings","78":"Mumbai Indians","79":"Royal Challengers Bangalore","80":"Rajasthan Royals","81":"Chennai Super Kings","82":"Kings XI Punjab","83":"Royal Challengers Bangalore","84":"Chennai Super Kings","85":"Rajasthan Royals","86":"Delhi Daredevils","87":"Deccan Chargers","88":"Rajasthan Royals","89":"Chennai Super Kings","90":"Delhi Daredevils","91":"Kings XI Punjab","92":"Chennai Super Kings","93":"Mumbai Indians","94":"Delhi Daredevils","95":"Deccan Chargers","96":"Royal Challengers Bangalore","97":"Mumbai Indians","98":"Delhi Daredevils","99":"Royal Challengers Bangalore","100":"Rajasthan Royals","101":"Kings XI Punjab","102":"Chennai Super Kings","103":"Deccan Chargers","104":"Kings XI Punjab","105":"Delhi Daredevils","106":"Kolkata Knight Riders","107":"Royal Challengers Bangalore","108":"Kolkata Knight Riders","109":"Chennai Super Kings","110":"Delhi Daredevils","111":"Royal Challengers Bangalore","112":"Deccan Chargers","113":"Royal Challengers Bangalore","114":"Deccan Chargers","115":"Kolkata Knight Riders","116":"Mumbai Indians","117":"Delhi Daredevils","118":"Kolkata Knight Riders","119":"Deccan Chargers","120":"Delhi Daredevils","121":"Royal Challengers Bangalore","122":"Chennai Super Kings","123":"Mumbai Indians","124":"Royal Challengers Bangalore","125":"Chennai Super Kings","126":"Deccan Chargers","127":"Rajasthan Royals","128":"Royal Challengers Bangalore","129":"Deccan Chargers","130":"Kings XI Punjab","131":"Mumbai Indians","132":"Royal Challengers Bangalore","133":"Rajasthan Royals","134":"Mumbai Indians","135":"Rajasthan Royals","136":"Kolkata Knight Riders","137":"Delhi Daredevils","138":"Rajasthan Royals","139":"Mumbai Indians","140":"Delhi Daredevils","141":"Mumbai Indians","142":"Chennai Super Kings","143":"Delhi Daredevils","144":"Kolkata Knight Riders","145":"Royal Challengers Bangalore","146":"Chennai Super Kings","147":"Mumbai Indians","148":"Kings XI Punjab","149":"Delhi Daredevils","150":"Rajasthan Royals","151":"Chennai Super Kings","152":"Rajasthan Royals","153":"Kolkata Knight Riders","154":"Deccan Chargers","155":"Kings XI Punjab","156":"Deccan Chargers","157":"Royal Challengers Bangalore","158":"Kings XI Punjab","159":"Mumbai Indians","160":"Deccan Chargers","161":"Mumbai Indians","162":"Chennai Super Kings","163":"Royal Challengers Bangalore","164":"Delhi Daredevils","165":"Deccan Chargers","166":"Mumbai Indians","167":"Kolkata Knight Riders","168":"Chennai Super Kings","169":"Deccan Chargers","170":"Kolkata Knight Riders","171":"Mumbai Indians","172":"Chennai Super Kings","173":"Royal Challengers Bangalore","174":"Chennai Super Kings","175":"Chennai Super Kings","176":"Rajasthan Royals","177":"Royal Challengers Bangalore","178":"Mumbai Indians","179":"Pune Warriors","180":"Kolkata Knight Riders","181":"Rajasthan Royals","182":"Mumbai Indians","183":"Kings XI Punjab","184":"Pune Warriors","185":"Deccan Chargers","186":"Kolkata Knight Riders","187":"Kochi Tuskers Kerala","188":"Chennai Super Kings","189":"Kings XI Punjab","190":"Delhi Daredevils","191":"Kolkata Knight Riders","192":"Kochi Tuskers Kerala","193":"Deccan Chargers","194":"Mumbai Indians","195":"Kochi Tuskers Kerala","196":"Kings XI Punjab","197":"Mumbai Indians","198":"Royal Challengers Bangalore","199":"Delhi Daredevils","200":"Mumbai Indians","201":"Rajasthan Royals","202":"Chennai Super Kings","203":"Royal Challengers Bangalore","204":"Chennai Super Kings","205":"Deccan Chargers","206":"Kolkata Knight Riders","207":"Rajasthan Royals","208":"Royal Challengers Bangalore","209":"Delhi Daredevils","210":"Kolkata Knight Riders","211":"Rajasthan Royals","212":"Chennai Super Kings","213":"Mumbai Indians","214":"Kochi Tuskers Kerala","215":"Kolkata Knight Riders","216":"Chennai Super Kings","217":"Mumbai Indians","218":"Kochi Tuskers Kerala","219":"Delhi Daredevils","220":"Royal Challengers Bangalore","221":"Kolkata Knight Riders","222":"Mumbai Indians","223":"Royal Challengers Bangalore","224":"Pune Warriors","225":"Chennai Super Kings","226":"Pune Warriors","227":"Kings XI Punjab","228":"Royal Challengers Bangalore","229":"Chennai Super Kings","230":"Kings XI Punjab","231":"Royal Challengers Bangalore","232":"Deccan Chargers","233":"Kings XI Punjab","234":"Kochi Tuskers Kerala","235":"Deccan Chargers","236":"Kings XI Punjab","237":"Chennai Super Kings","238":"Kolkata Knight Riders","239":"Rajasthan Royals","240":"Deccan Chargers","241":null,"242":"Royal Challengers Bangalore","243":"Mumbai Indians","244":"Chennai Super Kings","245":"Mumbai Indians","246":"Royal Challengers Bangalore","247":"Chennai Super Kings","248":"Mumbai Indians","249":"Delhi Daredevils","250":"Pune Warriors","251":"Rajasthan Royals","252":"Royal Challengers Bangalore","253":"Chennai Super Kings","254":"Rajasthan Royals","255":"Pune Warriors","256":"Mumbai Indians","257":"Kolkata Knight Riders","258":"Delhi Daredevils","259":"Mumbai Indians","260":"Chennai Super Kings","261":"Kings XI Punjab","262":"Kolkata Knight Riders","263":"Delhi Daredevils","264":"Pune Warriors","265":"Kings XI Punjab","266":"Rajasthan Royals","267":"Delhi Daredevils","268":"Rajasthan Royals","269":"Royal Challengers Bangalore","270":"Kolkata Knight Riders","271":"Delhi Daredevils","272":"Chennai Super Kings","273":"Royal Challengers Bangalore","274":"Chennai Super Kings","275":"Pune Warriors","276":"Kings XI Punjab","277":"Kolkata Knight Riders","278":"Royal Challengers Bangalore","279":"Delhi Daredevils","280":"Mumbai Indians","281":"Deccan Chargers","282":"Delhi Daredevils","283":"Kings XI Punjab","284":"Kolkata Knight Riders","285":"Delhi Daredevils","286":"Mumbai Indians","287":"Kolkata Knight Riders","288":"Deccan Chargers","289":"Delhi Daredevils","290":"Kings XI Punjab","291":"Mumbai Indians","292":"Chennai Super Kings","293":"Kolkata Knight Riders","294":"Rajasthan Royals","295":"Mumbai Indians","296":"Royal Challengers Bangalore","297":"Kolkata Knight Riders","298":"Rajasthan Royals","299":"Kings XI Punjab","300":"Royal Challengers Bangalore","301":"Chennai Super Kings","302":"Royal Challengers Bangalore","303":"Mumbai Indians","304":"Chennai Super Kings","305":"Rajasthan Royals","306":"Kings XI Punjab","307":"Mumbai Indians","308":"Chennai Super Kings","309":"Delhi Daredevils","310":"Kolkata Knight Riders","311":"Kings XI Punjab","312":"Royal Challengers Bangalore","313":"Deccan Chargers","314":"Delhi Daredevils","315":"Kolkata Knight Riders","316":"Deccan Chargers","317":"Mumbai Indians","318":"Kolkata Knight Riders","319":"Chennai Super Kings","320":"Chennai Super Kings","321":"Kolkata Knight Riders","322":"Kolkata Knight Riders","323":"Royal Challengers Bangalore","324":"Sunrisers Hyderabad","325":"Rajasthan Royals","326":"Mumbai Indians","327":"Kings XI Punjab","328":"Sunrisers Hyderabad","329":"Rajasthan Royals","330":"Mumbai Indians","331":"Chennai Super Kings","332":"Royal Challengers Bangalore","333":"Pune Warriors","334":"Sunrisers Hyderabad","335":"Mumbai Indians","336":"Chennai Super Kings","337":"Kolkata Knight Riders","338":"Rajasthan Royals","339":"Pune Warriors","340":"Kings XI Punjab","341":"Royal Challengers Bangalore","342":"Sunrisers Hyderabad","343":"Rajasthan Royals","344":"Chennai Super Kings","345":"Sunrisers Hyderabad","346":"Chennai Super Kings","347":"Royal Challengers Bangalore","348":"Delhi Daredevils","349":"Kings XI Punjab","350":"Chennai Super Kings","351":"Royal Challengers Bangalore","352":"Kings XI Punjab","353":"Mumbai Indians","354":"Chennai Super Kings","355":"Kolkata Knight Riders","356":"Rajasthan Royals","357":"Mumbai Indians","358":"Chennai Super Kings","359":"Delhi Daredevils","360":"Rajasthan Royals","361":"Mumbai Indians","362":"Chennai Super Kings","363":"Sunrisers Hyderabad","364":"Delhi Daredevils","365":"Chennai Super Kings","366":"Royal Challengers Bangalore","367":"Kolkata Knight Riders","368":"Sunrisers Hyderabad","369":"Kings XI Punjab","370":"Mumbai Indians","371":"Rajasthan Royals","372":"Royal Challengers Bangalore","373":"Rajasthan Royals","374":"Mumbai Indians","375":"Chennai Super Kings","376":"Rajasthan Royals","377":"Kolkata Knight Riders","378":"Royal Challengers Bangalore","379":"Mumbai Indians","380":"Sunrisers Hyderabad","381":"Kolkata Knight Riders","382":"Rajasthan Royals","383":"Kings XI Punjab","384":"Mumbai Indians","385":"Pune Warriors","386":"Chennai Super Kings","387":"Mumbai Indians","388":"Kings XI Punjab","389":"Sunrisers Hyderabad","390":"Kings XI Punjab","391":"Pune Warriors","392":"Royal Challengers Bangalore","393":"Sunrisers Hyderabad","394":"Chennai Super Kings","395":"Rajasthan Royals","396":"Mumbai Indians","397":"Mumbai Indians","398":"Kolkata Knight Riders","399":"Royal Challengers Bangalore","400":"Kings XI Punjab","401":"Rajasthan Royals","402":"Royal Challengers Bangalore","403":"Delhi Daredevils","404":"Kings XI Punjab","405":"Chennai Super Kings","406":"Kings XI Punjab","407":"Chennai Super Kings","408":"Kolkata Knight Riders","409":"Sunrisers Hyderabad","410":"Chennai Super Kings","411":"Rajasthan Royals","412":"Kings XI Punjab","413":"Delhi Daredevils","414":"Chennai Super Kings","415":"Kings XI Punjab","416":"Rajasthan Royals","417":"Sunrisers Hyderabad","418":"Chennai Super Kings","419":"Mumbai Indians","420":"Rajasthan Royals","421":"Royal Challengers Bangalore","422":"Rajasthan Royals","423":"Chennai Super Kings","424":"Mumbai Indians","425":"Kolkata Knight Riders","426":"Kings XI Punjab","427":"Sunrisers Hyderabad","428":"Kings XI Punjab","429":"Sunrisers Hyderabad","430":"Chennai Super Kings","431":"Kolkata Knight Riders","432":"Rajasthan Royals","433":"Mumbai Indians","434":"Chennai Super Kings","435":"Royal Challengers Bangalore","436":"Kings XI Punjab","437":"Kolkata Knight Riders","438":"Rajasthan Royals","439":"Royal Challengers Bangalore","440":"Kolkata Knight Riders","441":"Mumbai Indians","442":"Kings XI Punjab","443":"Sunrisers Hyderabad","444":"Kolkata Knight Riders","445":"Mumbai Indians","446":"Kolkata Knight Riders","447":"Sunrisers Hyderabad","448":"Mumbai Indians","449":"Kings XI Punjab","450":"Chennai Super Kings","451":"Kolkata Knight Riders","452":"Kings XI Punjab","453":"Mumbai Indians","454":"Kolkata Knight Riders","455":"Chennai Super Kings","456":"Kings XI Punjab","457":"Kolkata Knight Riders","458":"Kolkata Knight Riders","459":"Chennai Super Kings","460":"Rajasthan Royals","461":"Chennai Super Kings","462":"Royal Challengers Bangalore","463":"Rajasthan Royals","464":"Kings XI Punjab","465":"Sunrisers Hyderabad","466":"Rajasthan Royals","467":"Kolkata Knight Riders","468":"Delhi Daredevils","469":"Rajasthan Royals","470":"Chennai Super Kings","471":"Delhi Daredevils","472":"Kolkata Knight Riders","473":"Rajasthan Royals","474":"Mumbai Indians","475":"Kolkata Knight Riders","476":"Kings XI Punjab","477":"Sunrisers Hyderabad","478":"Chennai Super Kings","479":"Delhi Daredevils","480":"Royal Challengers Bangalore","481":"Mumbai Indians","482":"Chennai Super Kings","483":"Royal Challengers Bangalore","484":"Sunrisers Hyderabad","485":"Kolkata Knight Riders","486":null,"487":"Chennai Super Kings","488":"Delhi Daredevils","489":"Mumbai Indians","490":"Royal Challengers Bangalore","491":"Sunrisers Hyderabad","492":"Mumbai Indians","493":"Rajasthan Royals","494":"Chennai Super Kings","495":"Kolkata Knight Riders","496":"Mumbai Indians","497":"Royal Challengers Bangalore","498":"Sunrisers Hyderabad","499":"Mumbai Indians","500":"Kolkata Knight Riders","501":"Sunrisers Hyderabad","502":"Royal Challengers Bangalore","503":"Chennai Super Kings","504":"Sunrisers Hyderabad","505":"Delhi Daredevils","506":"Kings XI Punjab","507":"Mumbai Indians","508":"Royal Challengers Bangalore","509":"Chennai Super Kings","510":"Rajasthan Royals","511":null,"512":"Mumbai Indians","513":"Mumbai Indians","514":"Royal Challengers Bangalore","515":"Chennai Super Kings","516":"Mumbai Indians","517":"Rising Pune Supergiants","518":"Kolkata Knight Riders","519":"Gujarat Lions","520":"Royal Challengers Bangalore","521":"Mumbai Indians","522":"Gujarat Lions","523":"Delhi Daredevils","524":"Kolkata Knight Riders","525":"Gujarat Lions","526":"Kings XI Punjab","527":"Delhi Daredevils","528":"Sunrisers Hyderabad","529":"Kolkata Knight Riders","530":"Mumbai Indians","531":"Sunrisers Hyderabad","532":"Royal Challengers Bangalore","533":"Delhi Daredevils","534":"Sunrisers Hyderabad","535":"Gujarat Lions","536":"Kolkata Knight Riders","537":"Mumbai Indians","538":"Rising Pune Supergiants","539":"Gujarat Lions","540":"Mumbai Indians","541":"Gujarat Lions","542":"Delhi Daredevils","543":"Sunrisers Hyderabad","544":"Kings XI Punjab","545":"Mumbai Indians","546":"Kolkata Knight Riders","547":"Delhi Daredevils","548":"Kolkata Knight Riders","549":"Rising Pune Supergiants","550":"Sunrisers Hyderabad","551":"Royal Challengers Bangalore","552":"Kings XI Punjab","553":"Sunrisers Hyderabad","554":"Gujarat Lions","555":"Royal Challengers Bangalore","556":"Sunrisers Hyderabad","557":"Mumbai Indians","558":"Delhi Daredevils","559":"Kings XI Punjab","560":"Royal Challengers Bangalore","561":"Kolkata Knight Riders","562":"Sunrisers Hyderabad","563":"Mumbai Indians","564":"Royal Challengers Bangalore","565":"Rising Pune Supergiants","566":"Royal Challengers Bangalore","567":"Gujarat Lions","568":"Delhi Daredevils","569":"Rising Pune Supergiants","570":"Gujarat Lions","571":"Kolkata Knight Riders","572":"Royal Challengers Bangalore","573":"Royal Challengers Bangalore","574":"Sunrisers Hyderabad","575":"Sunrisers Hyderabad","576":"Sunrisers Hyderabad","577":"Sunrisers Hyderabad","578":"Rising Pune Supergiant","579":"Kolkata Knight Riders","580":"Kings XI Punjab","581":"Royal Challengers Bangalore","582":"Sunrisers Hyderabad","583":"Mumbai Indians","584":"Kings XI Punjab","585":"Delhi Daredevils","586":"Mumbai Indians","587":"Kolkata Knight Riders","588":"Mumbai Indians","589":"Gujarat Lions","590":"Kolkata Knight Riders","591":"Delhi Daredevils","592":"Mumbai Indians","593":"Rising Pune Supergiant","594":"Kolkata Knight Riders","595":"Sunrisers Hyderabad","596":"Royal Challengers Bangalore","597":"Sunrisers Hyderabad","598":"Mumbai Indians","599":"Gujarat Lions","600":"Mumbai Indians","601":"Rising Pune Supergiant","602":"Kings XI Punjab","603":"Kolkata Knight Riders","604":"Rising Pune Supergiant","605":"Kolkata Knight Riders","606":"Gujarat Lions","607":"Kolkata Knight Riders","608":"Sunrisers Hyderabad","609":"Rising Pune Supergiant","610":"Mumbai Indians","611":"Kings XI Punjab","612":"Sunrisers Hyderabad","613":"Mumbai Indians","614":"Rising Pune Supergiant","615":"Delhi Daredevils","616":"Rising Pune Supergiant","617":"Delhi Daredevils","618":"Kings XI Punjab","619":"Rising Pune Supergiant","620":"Mumbai Indians","621":"Kolkata Knight Riders","622":"Gujarat Lions","623":"Sunrisers Hyderabad","624":"Kings XI Punjab","625":"Delhi Daredevils","626":"Kings XI Punjab","627":"Delhi Daredevils","628":"Sunrisers Hyderabad","629":"Mumbai Indians","630":"Rising Pune Supergiant","631":"Royal Challengers Bangalore","632":"Rising Pune Supergiant","633":"Kolkata Knight Riders","634":"Mumbai Indians","635":"Mumbai Indians","636":"Chennai Super Kings","637":"Kings XI Punjab","638":"Kolkata Knight Riders","639":"Sunrisers Hyderabad","640":"Chennai Super Kings","641":"Rajasthan Royals","642":"Sunrisers Hyderabad","643":"Royal Challengers Bangalore","644":"Delhi Daredevils","645":"Sunrisers Hyderabad","646":"Rajasthan Royals","647":"Kings XI Punjab","648":"Kolkata Knight Riders","649":"Mumbai Indians","650":"Kolkata Knight Riders","651":"Kings XI Punjab","652":"Chennai Super Kings","653":"Kings XI Punjab","654":"Royal Challengers Bangalore","655":"Chennai Super Kings","656":"Rajasthan Royals","657":"Kings XI Punjab","658":"Sunrisers Hyderabad","659":"Chennai Super Kings","660":"Sunrisers Hyderabad","661":"Delhi Daredevils","662":"Mumbai Indians","663":"Sunrisers Hyderabad","664":"Kolkata Knight Riders","665":"Chennai Super Kings","666":"Royal Challengers Bangalore","667":"Delhi Daredevils","668":"Kolkata Knight Riders","669":"Mumbai Indians","670":"Chennai Super Kings","671":"Sunrisers Hyderabad","672":"Mumbai Indians","673":"Kings XI Punjab","674":"Sunrisers Hyderabad","675":"Rajasthan Royals","676":"Mumbai Indians","677":"Sunrisers Hyderabad","678":"Rajasthan Royals","679":"Kolkata Knight Riders","680":"Royal Challengers Bangalore","681":"Chennai Super Kings","682":"Rajasthan Royals","683":"Royal Challengers Bangalore","684":"Kolkata Knight Riders","685":"Mumbai Indians","686":"Royal Challengers Bangalore","687":"Delhi Daredevils","688":"Rajasthan Royals","689":"Kolkata Knight Riders","690":"Delhi Daredevils","691":"Chennai Super Kings","692":"Chennai Super Kings","693":"Kolkata Knight Riders","694":"Sunrisers Hyderabad","695":"Chennai Super Kings","696":"Chennai Super Kings","697":"Kolkata Knight Riders","698":"Delhi Capitals","699":"Kings XI Punjab","700":"Chennai Super Kings","701":"Kolkata Knight Riders","702":"Mumbai Indians","703":"Sunrisers Hyderabad","704":"Kings XI Punjab","705":"Delhi Capitals","706":"Sunrisers Hyderabad","707":"Chennai Super Kings","708":"Kings XI Punjab","709":"Rajasthan Royals","710":"Mumbai Indians","711":"Sunrisers Hyderabad","712":"Kolkata Knight Riders","713":"Chennai Super Kings","714":"Mumbai Indians","715":"Delhi Capitals","716":"Kolkata Knight Riders","717":"Kings XI Punjab","718":"Chennai Super Kings","719":"Mumbai Indians","720":"Chennai Super Kings","721":"Delhi Capitals","722":"Rajasthan Royals","723":"Royal Challengers Bangalore","724":"Chennai Super Kings","725":"Delhi Capitals","726":"Mumbai Indians","727":"Kings XI Punjab","728":"Sunrisers Hyderabad","729":"Mumbai Indians","730":"Royal Challengers Bangalore","731":"Rajasthan Royals","732":"Delhi Capitals","733":"Sunrisers Hyderabad","734":"Royal Challengers Bangalore","735":"Delhi Capitals","736":"Chennai Super Kings","737":"Royal Challengers Bangalore","738":"Rajasthan Royals","739":"Mumbai Indians","740":"Rajasthan Royals","741":"Delhi Capitals","742":"Kolkata Knight Riders","743":"Sunrisers Hyderabad","744":null,"745":"Chennai Super Kings","746":"Mumbai Indians","747":"Kolkata Knight Riders","748":"Delhi Capitals","749":"Royal Challengers Bangalore","750":"Kings XI Punjab","751":"Mumbai Indians","752":"Mumbai Indians","753":"Delhi Capitals","754":"Chennai Super Kings","755":"Mumbai Indians","756":"Chennai Super Kings","757":"Delhi Capitals","758":"Royal Challengers Bangalore","759":"Sunrisers Hyderabad","760":"Rajasthan Royals","761":"Kolkata Knight Riders","762":"Kings XI Punjab","763":"Mumbai Indians","764":"Delhi Capitals","765":"Kolkata Knight Riders","766":"Sunrisers Hyderabad","767":"Mumbai Indians","768":"Kolkata Knight Riders","769":"Delhi Capitals","770":"Chennai Super Kings","771":"Rajasthan Royals","772":"Mumbai Indians","773":"Delhi Capitals","774":"Kings XI Punjab","775":"Mumbai Indians","776":"Kolkata Knight Riders","777":"Chennai Super Kings","778":"Royal Challengers Bangalore","779":"Delhi Capitals","780":"Sunrisers Hyderabad","781":"Kings XI Punjab","782":"Sunrisers Hyderabad","783":"Delhi Capitals","784":"Kings XI Punjab","785":"Mumbai Indians","786":"Royal Challengers Bangalore","787":"Kolkata Knight Riders","788":"Sunrisers Hyderabad","789":"Royal Challengers Bangalore","790":"Mumbai Indians","791":"Rajasthan Royals","792":"Chennai Super Kings","793":"Mumbai Indians","794":"Kolkata Knight Riders","795":"Kings XI Punjab","796":"Sunrisers Hyderabad","797":"Rajasthan Royals","798":"Royal Challengers Bangalore","799":"Mumbai Indians","800":"Chennai Super Kings","801":"Rajasthan Royals","802":"Mumbai Indians","803":"Delhi Capitals","804":"Royal Challengers Bangalore","805":"Rajasthan Royals","806":"Sunrisers Hyderabad","807":"Delhi Capitals","808":"Chennai Super Kings","809":"Kolkata Knight Riders","810":"Kings XI Punjab","811":"Royal Challengers Bangalore","812":"Mumbai Indians","813":"Sunrisers Hyderabad","814":"Delhi Capitals","815":"Mumbai Indians"},"result":{"0":"runs","1":"runs","2":"wickets","3":"wickets","4":"wickets","5":"wickets","6":"wickets","7":"runs","8":"wickets","9":"runs","10":"wickets","11":"wickets","12":"wickets","13":"wickets","14":"runs","15":"wickets","16":"runs","17":"wickets","18":"runs","19":"wickets","20":"wickets","21":"runs","22":"runs","23":"wickets","24":"wickets","25":"wickets","26":"wickets","27":"wickets","28":"runs","29":"wickets","30":"wickets","31":"runs","32":"runs","33":"wickets","34":"wickets","35":"runs","36":"wickets","37":"runs","38":"runs","39":"wickets","40":"runs","41":"runs","42":"runs","43":"runs","44":"wickets","45":"wickets","46":"runs","47":"runs","48":"wickets","49":"wickets","50":"runs","51":"runs","52":"wickets","53":"wickets","54":"wickets","55":"runs","56":"wickets","57":"wickets","58":"runs","59":"runs","60":"wickets","61":"wickets","62":"runs","63":"runs","64":"runs","65":"runs","66":"tie","67":"wickets","68":"runs","69":"wickets","70":"runs","71":"wickets","72":"runs","73":"wickets","74":"wickets","75":"runs","76":"wickets","77":"runs","78":"runs","79":"runs","80":"wickets","81":"runs","82":"wickets","83":"wickets","84":"runs","85":"runs","86":"wickets","87":"runs","88":"wickets","89":"runs","90":"wickets","91":"wickets","92":"wickets","93":"runs","94":"wickets","95":"runs","96":"wickets","97":"wickets","98":"runs","99":"wickets","100":"runs","101":"wickets","102":"wickets","103":"wickets","104":"runs","105":"runs","106":"wickets","107":"wickets","108":"wickets","109":"runs","110":"wickets","111":"runs","112":"wickets","113":"wickets","114":"runs","115":"runs","116":"runs","117":"wickets","118":"wickets","119":"runs","120":"wickets","121":"wickets","122":"runs","123":"runs","124":"wickets","125":"wickets","126":"runs","127":"runs","128":"wickets","129":"runs","130":"tie","131":"wickets","132":"runs","133":"runs","134":"wickets","135":"wickets","136":"runs","137":"runs","138":"runs","139":"runs","140":"runs","141":"wickets","142":"wickets","143":"runs","144":"runs","145":"wickets","146":"runs","147":"runs","148":"wickets","149":"runs","150":"runs","151":"runs","152":"wickets","153":"runs","154":"wickets","155":"wickets","156":"wickets","157":"wickets","158":"wickets","159":"runs","160":"runs","161":"runs","162":"wickets","163":"wickets","164":"wickets","165":"wickets","166":"runs","167":"wickets","168":"wickets","169":"runs","170":"wickets","171":"runs","172":"runs","173":"wickets","174":"runs","175":"runs","176":"wickets","177":"wickets","178":"wickets","179":"wickets","180":"runs","181":"wickets","182":"wickets","183":"wickets","184":"wickets","185":"runs","186":"wickets","187":"wickets","188":"runs","189":"wickets","190":"wickets","191":"wickets","192":"wickets","193":"runs","194":"wickets","195":"runs","196":"runs","197":"runs","198":"wickets","199":"runs","200":"runs","201":"wickets","202":"runs","203":"wickets","204":"wickets","205":"runs","206":"runs","207":"wickets","208":"runs","209":"runs","210":"wickets","211":"wickets","212":"runs","213":"runs","214":"wickets","215":"runs","216":"wickets","217":"runs","218":"runs","219":"wickets","220":"runs","221":"runs","222":"runs","223":"wickets","224":"wickets","225":"runs","226":"wickets","227":"runs","228":"wickets","229":"runs","230":"wickets","231":"wickets","232":"runs","233":"runs","234":"wickets","235":"wickets","236":"runs","237":"runs","238":"wickets","239":"wickets","240":"runs","241":null,"242":"wickets","243":"wickets","244":"wickets","245":"wickets","246":"runs","247":"runs","248":"wickets","249":"wickets","250":"runs","251":"runs","252":"runs","253":"runs","254":"runs","255":"runs","256":"wickets","257":"runs","258":"wickets","259":"runs","260":"wickets","261":"wickets","262":"wickets","263":"wickets","264":"wickets","265":"runs","266":"runs","267":"wickets","268":"wickets","269":"wickets","270":"wickets","271":"wickets","272":"runs","273":"wickets","274":"wickets","275":"runs","276":"wickets","277":"wickets","278":"runs","279":"wickets","280":"wickets","281":"runs","282":"runs","283":"runs","284":"runs","285":"runs","286":"wickets","287":"wickets","288":"runs","289":"wickets","290":"wickets","291":"runs","292":"runs","293":"runs","294":"runs","295":"wickets","296":"wickets","297":"wickets","298":"wickets","299":"runs","300":"wickets","301":"wickets","302":"runs","303":"runs","304":"wickets","305":"runs","306":"wickets","307":"wickets","308":"wickets","309":"wickets","310":"runs","311":"wickets","312":"runs","313":"wickets","314":"wickets","315":"runs","316":"runs","317":"wickets","318":"runs","319":"runs","320":"runs","321":"wickets","322":"wickets","323":"runs","324":"runs","325":"runs","326":"runs","327":"wickets","328":"tie","329":"runs","330":"runs","331":"wickets","332":"wickets","333":"wickets","334":"wickets","335":"runs","336":"wickets","337":"runs","338":"wickets","339":"runs","340":"runs","341":"tie","342":"runs","343":"runs","344":"runs","345":"wickets","346":"wickets","347":"wickets","348":"wickets","349":"wickets","350":"wickets","351":"runs","352":"runs","353":"wickets","354":"wickets","355":"wickets","356":"wickets","357":"runs","358":"runs","359":"runs","360":"wickets","361":"runs","362":"runs","363":"wickets","364":"wickets","365":"runs","366":"runs","367":"wickets","368":"wickets","369":"wickets","370":"runs","371":"wickets","372":"wickets","373":"wickets","374":"runs","375":"runs","376":"wickets","377":"runs","378":"runs","379":"wickets","380":"runs","381":"wickets","382":"wickets","383":"wickets","384":"wickets","385":"runs","386":"runs","387":"runs","388":"wickets","389":"runs","390":"runs","391":"runs","392":"runs","393":"wickets","394":"runs","395":"wickets","396":"wickets","397":"runs","398":"runs","399":"wickets","400":"wickets","401":"wickets","402":"wickets","403":"wickets","404":"wickets","405":"runs","406":"runs","407":"runs","408":"runs","409":"runs","410":"wickets","411":"wickets","412":"runs","413":"wickets","414":"wickets","415":"wickets","416":"tie","417":"runs","418":"runs","419":"wickets","420":"wickets","421":"wickets","422":"runs","423":"wickets","424":"runs","425":"wickets","426":"runs","427":"runs","428":"runs","429":"wickets","430":"wickets","431":"wickets","432":"wickets","433":"wickets","434":"wickets","435":"runs","436":"wickets","437":"wickets","438":"runs","439":"wickets","440":"wickets","441":"runs","442":"wickets","443":"wickets","444":"wickets","445":"wickets","446":"runs","447":"wickets","448":"runs","449":"runs","450":"wickets","451":"wickets","452":"wickets","453":"wickets","454":"runs","455":"wickets","456":"runs","457":"wickets","458":"wickets","459":"runs","460":"runs","461":"runs","462":"wickets","463":"wickets","464":"runs","465":"wickets","466":"wickets","467":"wickets","468":"wickets","469":"wickets","470":"wickets","471":"runs","472":"wickets","473":"wickets","474":"runs","475":"wickets","476":"tie","477":"runs","478":"runs","479":"runs","480":"wickets","481":"runs","482":"runs","483":"wickets","484":"runs","485":"runs","486":null,"487":"runs","488":"wickets","489":"runs","490":"wickets","491":"runs","492":"runs","493":"runs","494":"runs","495":"runs","496":"wickets","497":"runs","498":"runs","499":"wickets","500":"wickets","501":"runs","502":"runs","503":"runs","504":"runs","505":"wickets","506":"runs","507":"runs","508":"wickets","509":"wickets","510":"runs","511":null,"512":"wickets","513":"runs","514":"runs","515":"wickets","516":"runs","517":"wickets","518":"wickets","519":"wickets","520":"runs","521":"wickets","522":"wickets","523":"wickets","524":"wickets","525":"wickets","526":"wickets","527":"wickets","528":"wickets","529":"wickets","530":"wickets","531":"wickets","532":"runs","533":"runs","534":"wickets","535":"wickets","536":"wickets","537":"runs","538":"runs","539":"runs","540":"wickets","541":"wickets","542":"runs","543":"runs","544":"runs","545":"wickets","546":"wickets","547":"wickets","548":"runs","549":"wickets","550":"wickets","551":"wickets","552":"runs","553":"runs","554":"wickets","555":"runs","556":"runs","557":"wickets","558":"wickets","559":"wickets","560":"runs","561":"wickets","562":"wickets","563":"runs","564":"wickets","565":"runs","566":"runs","567":"wickets","568":"wickets","569":"wickets","570":"wickets","571":"runs","572":"wickets","573":"wickets","574":"runs","575":"wickets","576":"runs","577":"runs","578":"wickets","579":"wickets","580":"wickets","581":"runs","582":"wickets","583":"wickets","584":"wickets","585":"runs","586":"wickets","587":"wickets","588":"wickets","589":"wickets","590":"runs","591":"runs","592":"wickets","593":"runs","594":"wickets","595":"runs","596":"runs","597":"runs","598":"wickets","599":"wickets","600":"runs","601":"wickets","602":"runs","603":"runs","604":"runs","605":"wickets","606":"wickets","607":"wickets","608":"runs","609":"runs","610":"tie","611":"wickets","612":"runs","613":"wickets","614":"wickets","615":"wickets","616":"wickets","617":"wickets","618":"runs","619":"runs","620":"runs","621":"wickets","622":"wickets","623":"wickets","624":"runs","625":"wickets","626":"runs","627":"runs","628":"wickets","629":"runs","630":"wickets","631":"runs","632":"runs","633":"wickets","634":"wickets","635":"runs","636":"wickets","637":"wickets","638":"wickets","639":"wickets","640":"wickets","641":"runs","642":"wickets","643":"wickets","644":"wickets","645":"wickets","646":"runs","647":"runs","648":"runs","649":"runs","650":"wickets","651":"runs","652":"runs","653":"wickets","654":"wickets","655":"runs","656":"wickets","657":"runs","658":"runs","659":"wickets","660":"runs","661":"runs","662":"wickets","663":"runs","664":"wickets","665":"runs","666":"runs","667":"runs","668":"wickets","669":"wickets","670":"wickets","671":"wickets","672":"runs","673":"wickets","674":"runs","675":"runs","676":"runs","677":"wickets","678":"wickets","679":"runs","680":"wickets","681":"wickets","682":"wickets","683":"wickets","684":"wickets","685":"runs","686":"runs","687":"runs","688":"runs","689":"wickets","690":"runs","691":"wickets","692":"wickets","693":"runs","694":"runs","695":"wickets","696":"wickets","697":"wickets","698":"runs","699":"runs","700":"wickets","701":"runs","702":"runs","703":"wickets","704":"wickets","705":"tie","706":"runs","707":"runs","708":"runs","709":"wickets","710":"runs","711":"wickets","712":"wickets","713":"runs","714":"runs","715":"wickets","716":"wickets","717":"wickets","718":"wickets","719":"wickets","720":"wickets","721":"wickets","722":"wickets","723":"wickets","724":"wickets","725":"runs","726":"wickets","727":"runs","728":"wickets","729":"runs","730":"runs","731":"wickets","732":"wickets","733":"wickets","734":"runs","735":"wickets","736":"wickets","737":"runs","738":"wickets","739":"runs","740":"wickets","741":"runs","742":"runs","743":"runs","744":null,"745":"runs","746":"tie","747":"wickets","748":"wickets","749":"wickets","750":"wickets","751":"wickets","752":"wickets","753":"wickets","754":"wickets","755":"runs","756":"wickets","757":"tie","758":"wickets","759":"wickets","760":"runs","761":"runs","762":"runs","763":"wickets","764":"runs","765":"runs","766":"wickets","767":"runs","768":"runs","769":"wickets","770":"wickets","771":"wickets","772":"runs","773":"wickets","774":"runs","775":"runs","776":"tie","777":"wickets","778":"wickets","779":"runs","780":"runs","781":"tie","782":"wickets","783":"runs","784":"wickets","785":"wickets","786":"wickets","787":"runs","788":"runs","789":"runs","790":"wickets","791":"wickets","792":"runs","793":"wickets","794":"runs","795":"wickets","796":"runs","797":"wickets","798":"runs","799":"wickets","800":"wickets","801":"wickets","802":"runs","803":"runs","804":"runs","805":"wickets","806":"runs","807":"runs","808":"wickets","809":"wickets","810":"wickets","811":"tie","812":"runs","813":"wickets","814":"runs","815":"wickets"},"result_margin":{"0":140.0,"1":33.0,"2":9.0,"3":5.0,"4":5.0,"5":6.0,"6":9.0,"7":6.0,"8":3.0,"9":66.0,"10":7.0,"11":9.0,"12":10.0,"13":4.0,"14":13.0,"15":7.0,"16":10.0,"17":7.0,"18":45.0,"19":8.0,"20":5.0,"21":9.0,"22":29.0,"23":8.0,"24":6.0,"25":7.0,"26":7.0,"27":4.0,"28":5.0,"29":8.0,"30":9.0,"31":18.0,"32":23.0,"33":3.0,"34":9.0,"35":23.0,"36":9.0,"37":41.0,"38":12.0,"39":8.0,"40":6.0,"41":65.0,"42":25.0,"43":3.0,"44":5.0,"45":6.0,"46":1.0,"47":14.0,"48":6.0,"49":5.0,"50":10.0,"51":3.0,"52":3.0,"53":5.0,"54":7.0,"55":105.0,"56":9.0,"57":3.0,"58":19.0,"59":75.0,"60":10.0,"61":8.0,"62":92.0,"63":11.0,"64":24.0,"65":9.0,"66":null,"67":7.0,"68":12.0,"69":6.0,"70":27.0,"71":6.0,"72":92.0,"73":5.0,"74":5.0,"75":3.0,"76":6.0,"77":38.0,"78":9.0,"79":8.0,"80":3.0,"81":18.0,"82":6.0,"83":9.0,"84":78.0,"85":78.0,"86":9.0,"87":19.0,"88":7.0,"89":12.0,"90":7.0,"91":3.0,"92":7.0,"93":16.0,"94":7.0,"95":53.0,"96":6.0,"97":8.0,"98":12.0,"99":2.0,"100":2.0,"101":6.0,"102":7.0,"103":6.0,"104":1.0,"105":14.0,"106":7.0,"107":7.0,"108":4.0,"109":24.0,"110":4.0,"111":12.0,"112":6.0,"113":6.0,"114":6.0,"115":11.0,"116":4.0,"117":5.0,"118":7.0,"119":31.0,"120":6.0,"121":8.0,"122":55.0,"123":98.0,"124":10.0,"125":5.0,"126":6.0,"127":34.0,"128":7.0,"129":10.0,"130":null,"131":7.0,"132":36.0,"133":31.0,"134":5.0,"135":8.0,"136":39.0,"137":17.0,"138":17.0,"139":41.0,"140":40.0,"141":4.0,"142":5.0,"143":67.0,"144":24.0,"145":6.0,"146":23.0,"147":63.0,"148":8.0,"149":37.0,"150":2.0,"151":24.0,"152":9.0,"153":14.0,"154":7.0,"155":6.0,"156":6.0,"157":7.0,"158":7.0,"159":37.0,"160":13.0,"161":39.0,"162":9.0,"163":5.0,"164":6.0,"165":5.0,"166":57.0,"167":8.0,"168":6.0,"169":11.0,"170":9.0,"171":35.0,"172":38.0,"173":9.0,"174":22.0,"175":2.0,"176":8.0,"177":6.0,"178":8.0,"179":7.0,"180":9.0,"181":6.0,"182":9.0,"183":6.0,"184":4.0,"185":33.0,"186":9.0,"187":8.0,"188":21.0,"189":8.0,"190":3.0,"191":8.0,"192":7.0,"193":16.0,"194":7.0,"195":6.0,"196":48.0,"197":8.0,"198":9.0,"199":29.0,"200":37.0,"201":8.0,"202":25.0,"203":3.0,"204":8.0,"205":55.0,"206":17.0,"207":7.0,"208":26.0,"209":38.0,"210":8.0,"211":6.0,"212":19.0,"213":23.0,"214":7.0,"215":20.0,"216":8.0,"217":21.0,"218":17.0,"219":4.0,"220":85.0,"221":10.0,"222":32.0,"223":9.0,"224":5.0,"225":63.0,"226":6.0,"227":76.0,"228":9.0,"229":18.0,"230":6.0,"231":4.0,"232":10.0,"233":29.0,"234":8.0,"235":6.0,"236":111.0,"237":11.0,"238":7.0,"239":10.0,"240":82.0,"241":null,"242":8.0,"243":5.0,"244":6.0,"245":4.0,"246":43.0,"247":58.0,"248":8.0,"249":8.0,"250":28.0,"251":31.0,"252":20.0,"253":74.0,"254":22.0,"255":22.0,"256":5.0,"257":42.0,"258":8.0,"259":27.0,"260":5.0,"261":7.0,"262":5.0,"263":5.0,"264":7.0,"265":2.0,"266":59.0,"267":7.0,"268":5.0,"269":6.0,"270":8.0,"271":9.0,"272":13.0,"273":5.0,"274":7.0,"275":20.0,"276":6.0,"277":5.0,"278":46.0,"279":8.0,"280":4.0,"281":18.0,"282":37.0,"283":7.0,"284":47.0,"285":1.0,"286":5.0,"287":5.0,"288":13.0,"289":6.0,"290":4.0,"291":1.0,"292":10.0,"293":7.0,"294":43.0,"295":2.0,"296":5.0,"297":6.0,"298":7.0,"299":25.0,"300":9.0,"301":4.0,"302":35.0,"303":27.0,"304":9.0,"305":45.0,"306":4.0,"307":5.0,"308":5.0,"309":5.0,"310":32.0,"311":6.0,"312":21.0,"313":5.0,"314":6.0,"315":34.0,"316":9.0,"317":10.0,"318":18.0,"319":38.0,"320":86.0,"321":5.0,"322":6.0,"323":2.0,"324":22.0,"325":5.0,"326":9.0,"327":8.0,"328":null,"329":19.0,"330":44.0,"331":10.0,"332":8.0,"333":7.0,"334":3.0,"335":41.0,"336":4.0,"337":48.0,"338":6.0,"339":24.0,"340":4.0,"341":null,"342":11.0,"343":87.0,"344":86.0,"345":5.0,"346":4.0,"347":7.0,"348":9.0,"349":7.0,"350":5.0,"351":130.0,"352":7.0,"353":5.0,"354":5.0,"355":6.0,"356":8.0,"357":58.0,"358":14.0,"359":15.0,"360":4.0,"361":4.0,"362":37.0,"363":7.0,"364":7.0,"365":15.0,"366":17.0,"367":8.0,"368":6.0,"369":7.0,"370":60.0,"371":5.0,"372":7.0,"373":9.0,"374":65.0,"375":77.0,"376":8.0,"377":46.0,"378":4.0,"379":5.0,"380":30.0,"381":5.0,"382":5.0,"383":5.0,"384":7.0,"385":7.0,"386":33.0,"387":14.0,"388":6.0,"389":23.0,"390":50.0,"391":38.0,"392":24.0,"393":5.0,"394":48.0,"395":4.0,"396":4.0,"397":23.0,"398":41.0,"399":8.0,"400":6.0,"401":4.0,"402":7.0,"403":4.0,"404":7.0,"405":93.0,"406":72.0,"407":7.0,"408":2.0,"409":4.0,"410":7.0,"411":6.0,"412":23.0,"413":6.0,"414":5.0,"415":5.0,"416":null,"417":15.0,"418":34.0,"419":5.0,"420":7.0,"421":4.0,"422":10.0,"423":8.0,"424":19.0,"425":8.0,"426":44.0,"427":32.0,"428":32.0,"429":8.0,"430":4.0,"431":9.0,"432":5.0,"433":7.0,"434":5.0,"435":16.0,"436":6.0,"437":6.0,"438":62.0,"439":5.0,"440":7.0,"441":25.0,"442":4.0,"443":7.0,"444":8.0,"445":7.0,"446":30.0,"447":6.0,"448":15.0,"449":16.0,"450":8.0,"451":4.0,"452":7.0,"453":5.0,"454":28.0,"455":7.0,"456":24.0,"457":3.0,"458":7.0,"459":1.0,"460":26.0,"461":45.0,"462":3.0,"463":3.0,"464":18.0,"465":8.0,"466":7.0,"467":7.0,"468":5.0,"469":6.0,"470":6.0,"471":4.0,"472":4.0,"473":8.0,"474":18.0,"475":6.0,"476":null,"477":16.0,"478":27.0,"479":37.0,"480":9.0,"481":20.0,"482":97.0,"483":10.0,"484":20.0,"485":13.0,"486":null,"487":2.0,"488":9.0,"489":8.0,"490":7.0,"491":22.0,"492":23.0,"493":14.0,"494":24.0,"495":35.0,"496":5.0,"497":138.0,"498":7.0,"499":6.0,"500":1.0,"501":6.0,"502":39.0,"503":12.0,"504":5.0,"505":6.0,"506":22.0,"507":5.0,"508":6.0,"509":7.0,"510":9.0,"511":null,"512":9.0,"513":25.0,"514":71.0,"515":3.0,"516":41.0,"517":9.0,"518":9.0,"519":5.0,"520":45.0,"521":6.0,"522":7.0,"523":8.0,"524":8.0,"525":3.0,"526":6.0,"527":7.0,"528":7.0,"529":6.0,"530":6.0,"531":10.0,"532":13.0,"533":10.0,"534":5.0,"535":6.0,"536":2.0,"537":25.0,"538":34.0,"539":1.0,"540":6.0,"541":3.0,"542":27.0,"543":15.0,"544":23.0,"545":8.0,"546":5.0,"547":8.0,"548":7.0,"549":7.0,"550":5.0,"551":7.0,"552":9.0,"553":85.0,"554":5.0,"555":1.0,"556":4.0,"557":6.0,"558":7.0,"559":7.0,"560":144.0,"561":8.0,"562":7.0,"563":80.0,"564":9.0,"565":19.0,"566":82.0,"567":6.0,"568":6.0,"569":4.0,"570":6.0,"571":22.0,"572":6.0,"573":4.0,"574":22.0,"575":4.0,"576":8.0,"577":35.0,"578":7.0,"579":10.0,"580":6.0,"581":15.0,"582":9.0,"583":4.0,"584":8.0,"585":97.0,"586":4.0,"587":8.0,"588":4.0,"589":7.0,"590":17.0,"591":51.0,"592":6.0,"593":27.0,"594":4.0,"595":5.0,"596":21.0,"597":15.0,"598":8.0,"599":4.0,"600":14.0,"601":6.0,"602":26.0,"603":82.0,"604":3.0,"605":7.0,"606":7.0,"607":7.0,"608":26.0,"609":61.0,"610":null,"611":10.0,"612":48.0,"613":5.0,"614":5.0,"615":6.0,"616":4.0,"617":7.0,"618":19.0,"619":12.0,"620":146.0,"621":6.0,"622":6.0,"623":7.0,"624":14.0,"625":2.0,"626":7.0,"627":7.0,"628":8.0,"629":9.0,"630":9.0,"631":10.0,"632":20.0,"633":7.0,"634":6.0,"635":1.0,"636":1.0,"637":6.0,"638":4.0,"639":9.0,"640":5.0,"641":10.0,"642":1.0,"643":4.0,"644":7.0,"645":5.0,"646":19.0,"647":4.0,"648":71.0,"649":46.0,"650":7.0,"651":15.0,"652":64.0,"653":9.0,"654":6.0,"655":4.0,"656":3.0,"657":4.0,"658":31.0,"659":5.0,"660":13.0,"661":55.0,"662":8.0,"663":11.0,"664":6.0,"665":13.0,"666":14.0,"667":4.0,"668":6.0,"669":6.0,"670":6.0,"671":7.0,"672":13.0,"673":6.0,"674":5.0,"675":15.0,"676":102.0,"677":9.0,"678":4.0,"679":31.0,"680":5.0,"681":8.0,"682":7.0,"683":10.0,"684":6.0,"685":3.0,"686":14.0,"687":34.0,"688":30.0,"689":5.0,"690":11.0,"691":5.0,"692":2.0,"693":25.0,"694":14.0,"695":8.0,"696":7.0,"697":6.0,"698":37.0,"699":14.0,"700":6.0,"701":28.0,"702":6.0,"703":5.0,"704":8.0,"705":null,"706":118.0,"707":8.0,"708":14.0,"709":7.0,"710":37.0,"711":5.0,"712":5.0,"713":22.0,"714":40.0,"715":4.0,"716":8.0,"717":6.0,"718":7.0,"719":3.0,"720":4.0,"721":7.0,"722":4.0,"723":8.0,"724":5.0,"725":39.0,"726":5.0,"727":12.0,"728":6.0,"729":40.0,"730":10.0,"731":5.0,"732":5.0,"733":9.0,"734":1.0,"735":6.0,"736":6.0,"737":17.0,"738":3.0,"739":46.0,"740":7.0,"741":16.0,"742":34.0,"743":45.0,"744":null,"745":80.0,"746":null,"747":7.0,"748":5.0,"749":4.0,"750":6.0,"751":9.0,"752":6.0,"753":2.0,"754":6.0,"755":1.0,"756":5.0,"757":null,"758":8.0,"759":10.0,"760":16.0,"761":59.0,"762":12.0,"763":5.0,"764":46.0,"765":10.0,"766":5.0,"767":48.0,"768":37.0,"769":6.0,"770":9.0,"771":5.0,"772":49.0,"773":5.0,"774":97.0,"775":57.0,"776":null,"777":10.0,"778":8.0,"779":18.0,"780":7.0,"781":null,"782":8.0,"783":59.0,"784":8.0,"785":10.0,"786":7.0,"787":2.0,"788":88.0,"789":37.0,"790":8.0,"791":4.0,"792":20.0,"793":5.0,"794":60.0,"795":8.0,"796":15.0,"797":7.0,"798":10.0,"799":9.0,"800":6.0,"801":7.0,"802":34.0,"803":44.0,"804":82.0,"805":8.0,"806":69.0,"807":13.0,"808":8.0,"809":7.0,"810":5.0,"811":null,"812":57.0,"813":6.0,"814":17.0,"815":5.0},"eliminator":{"0":"N","1":"N","2":"N","3":"N","4":"N","5":"N","6":"N","7":"N","8":"N","9":"N","10":"N","11":"N","12":"N","13":"N","14":"N","15":"N","16":"N","17":"N","18":"N","19":"N","20":"N","21":"N","22":"N","23":"N","24":"N","25":"N","26":"N","27":"N","28":"N","29":"N","30":"N","31":"N","32":"N","33":"N","34":"N","35":"N","36":"N","37":"N","38":"N","39":"N","40":"N","41":"N","42":"N","43":"N","44":"N","45":"N","46":"N","47":"N","48":"N","49":"N","50":"N","51":"N","52":"N","53":"N","54":"N","55":"N","56":"N","57":"N","58":"N","59":"N","60":"N","61":"N","62":"N","63":"N","64":"N","65":"N","66":"Y","67":"N","68":"N","69":"N","70":"N","71":"N","72":"N","73":"N","74":"N","75":"N","76":"N","77":"N","78":"N","79":"N","80":"N","81":"N","82":"N","83":"N","84":"N","85":"N","86":"N","87":"N","88":"N","89":"N","90":"N","91":"N","92":"N","93":"N","94":"N","95":"N","96":"N","97":"N","98":"N","99":"N","100":"N","101":"N","102":"N","103":"N","104":"N","105":"N","106":"N","107":"N","108":"N","109":"N","110":"N","111":"N","112":"N","113":"N","114":"N","115":"N","116":"N","117":"N","118":"N","119":"N","120":"N","121":"N","122":"N","123":"N","124":"N","125":"N","126":"N","127":"N","128":"N","129":"N","130":"Y","131":"N","132":"N","133":"N","134":"N","135":"N","136":"N","137":"N","138":"N","139":"N","140":"N","141":"N","142":"N","143":"N","144":"N","145":"N","146":"N","147":"N","148":"N","149":"N","150":"N","151":"N","152":"N","153":"N","154":"N","155":"N","156":"N","157":"N","158":"N","159":"N","160":"N","161":"N","162":"N","163":"N","164":"N","165":"N","166":"N","167":"N","168":"N","169":"N","170":"N","171":"N","172":"N","173":"N","174":"N","175":"N","176":"N","177":"N","178":"N","179":"N","180":"N","181":"N","182":"N","183":"N","184":"N","185":"N","186":"N","187":"N","188":"N","189":"N","190":"N","191":"N","192":"N","193":"N","194":"N","195":"N","196":"N","197":"N","198":"N","199":"N","200":"N","201":"N","202":"N","203":"N","204":"N","205":"N","206":"N","207":"N","208":"N","209":"N","210":"N","211":"N","212":"N","213":"N","214":"N","215":"N","216":"N","217":"N","218":"N","219":"N","220":"N","221":"N","222":"N","223":"N","224":"N","225":"N","226":"N","227":"N","228":"N","229":"N","230":"N","231":"N","232":"N","233":"N","234":"N","235":"N","236":"N","237":"N","238":"N","239":"N","240":"N","241":null,"242":"N","243":"N","244":"N","245":"N","246":"N","247":"N","248":"N","249":"N","250":"N","251":"N","252":"N","253":"N","254":"N","255":"N","256":"N","257":"N","258":"N","259":"N","260":"N","261":"N","262":"N","263":"N","264":"N","265":"N","266":"N","267":"N","268":"N","269":"N","270":"N","271":"N","272":"N","273":"N","274":"N","275":"N","276":"N","277":"N","278":"N","279":"N","280":"N","281":"N","282":"N","283":"N","284":"N","285":"N","286":"N","287":"N","288":"N","289":"N","290":"N","291":"N","292":"N","293":"N","294":"N","295":"N","296":"N","297":"N","298":"N","299":"N","300":"N","301":"N","302":"N","303":"N","304":"N","305":"N","306":"N","307":"N","308":"N","309":"N","310":"N","311":"N","312":"N","313":"N","314":"N","315":"N","316":"N","317":"N","318":"N","319":"N","320":"N","321":"N","322":"N","323":"N","324":"N","325":"N","326":"N","327":"N","328":"Y","329":"N","330":"N","331":"N","332":"N","333":"N","334":"N","335":"N","336":"N","337":"N","338":"N","339":"N","340":"N","341":"Y","342":"N","343":"N","344":"N","345":"N","346":"N","347":"N","348":"N","349":"N","350":"N","351":"N","352":"N","353":"N","354":"N","355":"N","356":"N","357":"N","358":"N","359":"N","360":"N","361":"N","362":"N","363":"N","364":"N","365":"N","366":"N","367":"N","368":"N","369":"N","370":"N","371":"N","372":"N","373":"N","374":"N","375":"N","376":"N","377":"N","378":"N","379":"N","380":"N","381":"N","382":"N","383":"N","384":"N","385":"N","386":"N","387":"N","388":"N","389":"N","390":"N","391":"N","392":"N","393":"N","394":"N","395":"N","396":"N","397":"N","398":"N","399":"N","400":"N","401":"N","402":"N","403":"N","404":"N","405":"N","406":"N","407":"N","408":"N","409":"N","410":"N","411":"N","412":"N","413":"N","414":"N","415":"N","416":"Y","417":"N","418":"N","419":"N","420":"N","421":"N","422":"N","423":"N","424":"N","425":"N","426":"N","427":"N","428":"N","429":"N","430":"N","431":"N","432":"N","433":"N","434":"N","435":"N","436":"N","437":"N","438":"N","439":"N","440":"N","441":"N","442":"N","443":"N","444":"N","445":"N","446":"N","447":"N","448":"N","449":"N","450":"N","451":"N","452":"N","453":"N","454":"N","455":"N","456":"N","457":"N","458":"N","459":"N","460":"N","461":"N","462":"N","463":"N","464":"N","465":"N","466":"N","467":"N","468":"N","469":"N","470":"N","471":"N","472":"N","473":"N","474":"N","475":"N","476":"Y","477":"N","478":"N","479":"N","480":"N","481":"N","482":"N","483":"N","484":"N","485":"N","486":null,"487":"N","488":"N","489":"N","490":"N","491":"N","492":"N","493":"N","494":"N","495":"N","496":"N","497":"N","498":"N","499":"N","500":"N","501":"N","502":"N","503":"N","504":"N","505":"N","506":"N","507":"N","508":"N","509":"N","510":"N","511":null,"512":"N","513":"N","514":"N","515":"N","516":"N","517":"N","518":"N","519":"N","520":"N","521":"N","522":"N","523":"N","524":"N","525":"N","526":"N","527":"N","528":"N","529":"N","530":"N","531":"N","532":"N","533":"N","534":"N","535":"N","536":"N","537":"N","538":"N","539":"N","540":"N","541":"N","542":"N","543":"N","544":"N","545":"N","546":"N","547":"N","548":"N","549":"N","550":"N","551":"N","552":"N","553":"N","554":"N","555":"N","556":"N","557":"N","558":"N","559":"N","560":"N","561":"N","562":"N","563":"N","564":"N","565":"N","566":"N","567":"N","568":"N","569":"N","570":"N","571":"N","572":"N","573":"N","574":"N","575":"N","576":"N","577":"N","578":"N","579":"N","580":"N","581":"N","582":"N","583":"N","584":"N","585":"N","586":"N","587":"N","588":"N","589":"N","590":"N","591":"N","592":"N","593":"N","594":"N","595":"N","596":"N","597":"N","598":"N","599":"N","600":"N","601":"N","602":"N","603":"N","604":"N","605":"N","606":"N","607":"N","608":"N","609":"N","610":"Y","611":"N","612":"N","613":"N","614":"N","615":"N","616":"N","617":"N","618":"N","619":"N","620":"N","621":"N","622":"N","623":"N","624":"N","625":"N","626":"N","627":"N","628":"N","629":"N","630":"N","631":"N","632":"N","633":"N","634":"N","635":"N","636":"N","637":"N","638":"N","639":"N","640":"N","641":"N","642":"N","643":"N","644":"N","645":"N","646":"N","647":"N","648":"N","649":"N","650":"N","651":"N","652":"N","653":"N","654":"N","655":"N","656":"N","657":"N","658":"N","659":"N","660":"N","661":"N","662":"N","663":"N","664":"N","665":"N","666":"N","667":"N","668":"N","669":"N","670":"N","671":"N","672":"N","673":"N","674":"N","675":"N","676":"N","677":"N","678":"N","679":"N","680":"N","681":"N","682":"N","683":"N","684":"N","685":"N","686":"N","687":"N","688":"N","689":"N","690":"N","691":"N","692":"N","693":"N","694":"N","695":"N","696":"N","697":"N","698":"N","699":"N","700":"N","701":"N","702":"N","703":"N","704":"N","705":"Y","706":"N","707":"N","708":"N","709":"N","710":"N","711":"N","712":"N","713":"N","714":"N","715":"N","716":"N","717":"N","718":"N","719":"N","720":"N","721":"N","722":"N","723":"N","724":"N","725":"N","726":"N","727":"N","728":"N","729":"N","730":"N","731":"N","732":"N","733":"N","734":"N","735":"N","736":"N","737":"N","738":"N","739":"N","740":"N","741":"N","742":"N","743":"N","744":null,"745":"N","746":"Y","747":"N","748":"N","749":"N","750":"N","751":"N","752":"N","753":"N","754":"N","755":"N","756":"N","757":"Y","758":"N","759":"N","760":"N","761":"N","762":"N","763":"N","764":"N","765":"N","766":"N","767":"N","768":"N","769":"N","770":"N","771":"N","772":"N","773":"N","774":"N","775":"N","776":"Y","777":"N","778":"N","779":"N","780":"N","781":"Y","782":"N","783":"N","784":"N","785":"N","786":"N","787":"N","788":"N","789":"N","790":"N","791":"N","792":"N","793":"N","794":"N","795":"N","796":"N","797":"N","798":"N","799":"N","800":"N","801":"N","802":"N","803":"N","804":"N","805":"N","806":"N","807":"N","808":"N","809":"N","810":"N","811":"Y","812":"N","813":"N","814":"N","815":"N"},"method":{"0":null,"1":null,"2":null,"3":null,"4":null,"5":null,"6":null,"7":null,"8":null,"9":null,"10":null,"11":null,"12":null,"13":null,"14":null,"15":null,"16":null,"17":null,"18":null,"19":null,"20":null,"21":null,"22":null,"23":null,"24":null,"25":null,"26":null,"27":null,"28":null,"29":null,"30":null,"31":null,"32":null,"33":null,"34":null,"35":null,"36":null,"37":null,"38":null,"39":null,"40":"D\/L","41":null,"42":null,"43":"D\/L","44":null,"45":null,"46":null,"47":null,"48":null,"49":null,"50":null,"51":null,"52":null,"53":null,"54":null,"55":null,"56":null,"57":null,"58":null,"59":null,"60":"D\/L","61":null,"62":null,"63":"D\/L","64":null,"65":null,"66":null,"67":null,"68":null,"69":null,"70":null,"71":null,"72":null,"73":null,"74":null,"75":null,"76":null,"77":null,"78":null,"79":null,"80":null,"81":null,"82":null,"83":null,"84":null,"85":null,"86":null,"87":null,"88":null,"89":"D\/L","90":null,"91":null,"92":null,"93":null,"94":null,"95":null,"96":null,"97":null,"98":null,"99":null,"100":null,"101":null,"102":null,"103":null,"104":null,"105":null,"106":null,"107":null,"108":null,"109":null,"110":null,"111":null,"112":null,"113":null,"114":null,"115":null,"116":null,"117":null,"118":null,"119":null,"120":null,"121":null,"122":null,"123":null,"124":null,"125":null,"126":null,"127":null,"128":null,"129":null,"130":null,"131":null,"132":null,"133":null,"134":null,"135":null,"136":null,"137":null,"138":null,"139":null,"140":null,"141":null,"142":null,"143":null,"144":null,"145":null,"146":null,"147":null,"148":null,"149":null,"150":null,"151":null,"152":null,"153":null,"154":null,"155":null,"156":null,"157":null,"158":null,"159":null,"160":null,"161":null,"162":null,"163":null,"164":null,"165":null,"166":null,"167":null,"168":null,"169":null,"170":null,"171":null,"172":null,"173":null,"174":null,"175":null,"176":null,"177":null,"178":null,"179":null,"180":null,"181":null,"182":null,"183":null,"184":null,"185":null,"186":null,"187":null,"188":null,"189":null,"190":null,"191":null,"192":"D\/L","193":null,"194":null,"195":null,"196":null,"197":null,"198":null,"199":null,"200":null,"201":null,"202":null,"203":null,"204":null,"205":null,"206":null,"207":null,"208":null,"209":null,"210":null,"211":null,"212":null,"213":null,"214":null,"215":null,"216":null,"217":null,"218":null,"219":null,"220":null,"221":"D\/L","222":null,"223":null,"224":null,"225":null,"226":null,"227":null,"228":null,"229":null,"230":null,"231":"D\/L","232":null,"233":null,"234":null,"235":null,"236":null,"237":null,"238":null,"239":null,"240":null,"241":null,"242":null,"243":null,"244":null,"245":null,"246":null,"247":null,"248":null,"249":null,"250":null,"251":null,"252":null,"253":null,"254":null,"255":null,"256":null,"257":null,"258":null,"259":null,"260":null,"261":null,"262":null,"263":null,"264":null,"265":null,"266":null,"267":null,"268":null,"269":null,"270":null,"271":null,"272":null,"273":null,"274":null,"275":null,"276":null,"277":null,"278":null,"279":null,"280":null,"281":null,"282":null,"283":null,"284":null,"285":null,"286":null,"287":null,"288":null,"289":null,"290":null,"291":null,"292":null,"293":null,"294":null,"295":null,"296":null,"297":null,"298":null,"299":null,"300":null,"301":null,"302":null,"303":null,"304":null,"305":null,"306":null,"307":null,"308":null,"309":null,"310":null,"311":null,"312":null,"313":null,"314":null,"315":null,"316":null,"317":null,"318":null,"319":null,"320":null,"321":null,"322":null,"323":null,"324":null,"325":null,"326":null,"327":null,"328":null,"329":null,"330":null,"331":null,"332":null,"333":null,"334":null,"335":null,"336":null,"337":null,"338":null,"339":null,"340":null,"341":null,"342":null,"343":null,"344":null,"345":null,"346":null,"347":null,"348":null,"349":null,"350":null,"351":null,"352":null,"353":null,"354":null,"355":null,"356":null,"357":null,"358":null,"359":null,"360":null,"361":null,"362":null,"363":null,"364":null,"365":null,"366":null,"367":null,"368":null,"369":null,"370":null,"371":null,"372":null,"373":null,"374":null,"375":null,"376":null,"377":null,"378":null,"379":null,"380":null,"381":null,"382":null,"383":null,"384":null,"385":null,"386":null,"387":null,"388":null,"389":null,"390":null,"391":null,"392":null,"393":null,"394":null,"395":null,"396":null,"397":null,"398":null,"399":null,"400":null,"401":null,"402":null,"403":null,"404":null,"405":null,"406":null,"407":null,"408":null,"409":null,"410":null,"411":null,"412":null,"413":null,"414":null,"415":null,"416":null,"417":null,"418":null,"419":null,"420":null,"421":null,"422":null,"423":null,"424":null,"425":null,"426":null,"427":null,"428":null,"429":"D\/L","430":null,"431":null,"432":null,"433":null,"434":null,"435":null,"436":null,"437":null,"438":null,"439":null,"440":null,"441":null,"442":null,"443":null,"444":null,"445":null,"446":null,"447":null,"448":null,"449":null,"450":null,"451":null,"452":null,"453":null,"454":null,"455":null,"456":null,"457":null,"458":null,"459":null,"460":null,"461":null,"462":null,"463":null,"464":null,"465":null,"466":null,"467":null,"468":null,"469":null,"470":null,"471":null,"472":null,"473":null,"474":null,"475":null,"476":null,"477":"D\/L","478":null,"479":null,"480":null,"481":null,"482":null,"483":null,"484":null,"485":null,"486":null,"487":null,"488":null,"489":null,"490":null,"491":null,"492":null,"493":null,"494":null,"495":null,"496":null,"497":null,"498":null,"499":null,"500":null,"501":null,"502":null,"503":null,"504":null,"505":null,"506":null,"507":null,"508":"D\/L","509":null,"510":null,"511":null,"512":null,"513":null,"514":null,"515":null,"516":null,"517":null,"518":null,"519":null,"520":null,"521":null,"522":null,"523":null,"524":null,"525":null,"526":null,"527":null,"528":null,"529":null,"530":null,"531":null,"532":null,"533":null,"534":null,"535":null,"536":null,"537":null,"538":"D\/L","539":null,"540":null,"541":null,"542":null,"543":null,"544":null,"545":null,"546":null,"547":null,"548":null,"549":null,"550":null,"551":null,"552":null,"553":null,"554":null,"555":null,"556":null,"557":null,"558":null,"559":null,"560":null,"561":"D\/L","562":null,"563":null,"564":null,"565":"D\/L","566":"D\/L","567":null,"568":null,"569":null,"570":null,"571":null,"572":null,"573":null,"574":null,"575":null,"576":null,"577":null,"578":null,"579":null,"580":null,"581":null,"582":null,"583":null,"584":null,"585":null,"586":null,"587":null,"588":null,"589":null,"590":null,"591":null,"592":null,"593":null,"594":null,"595":null,"596":null,"597":null,"598":null,"599":null,"600":null,"601":null,"602":null,"603":null,"604":null,"605":null,"606":null,"607":null,"608":null,"609":null,"610":null,"611":null,"612":null,"613":null,"614":null,"615":null,"616":null,"617":null,"618":null,"619":null,"620":null,"621":null,"622":null,"623":null,"624":null,"625":null,"626":null,"627":null,"628":null,"629":null,"630":null,"631":null,"632":null,"633":"D\/L","634":null,"635":null,"636":null,"637":null,"638":null,"639":null,"640":null,"641":"D\/L","642":null,"643":null,"644":null,"645":null,"646":null,"647":null,"648":null,"649":null,"650":null,"651":null,"652":null,"653":"D\/L","654":null,"655":null,"656":null,"657":null,"658":null,"659":null,"660":null,"661":null,"662":null,"663":null,"664":null,"665":null,"666":null,"667":"D\/L","668":null,"669":null,"670":null,"671":null,"672":null,"673":null,"674":null,"675":null,"676":null,"677":null,"678":null,"679":null,"680":null,"681":null,"682":null,"683":null,"684":null,"685":null,"686":null,"687":null,"688":null,"689":null,"690":null,"691":null,"692":null,"693":null,"694":null,"695":null,"696":null,"697":null,"698":null,"699":null,"700":null,"701":null,"702":null,"703":null,"704":null,"705":null,"706":null,"707":null,"708":null,"709":null,"710":null,"711":null,"712":null,"713":null,"714":null,"715":null,"716":null,"717":null,"718":null,"719":null,"720":null,"721":null,"722":null,"723":null,"724":null,"725":null,"726":null,"727":null,"728":null,"729":null,"730":null,"731":null,"732":null,"733":null,"734":null,"735":null,"736":null,"737":null,"738":null,"739":null,"740":null,"741":null,"742":null,"743":null,"744":null,"745":null,"746":null,"747":null,"748":null,"749":null,"750":null,"751":null,"752":null,"753":null,"754":null,"755":null,"756":null,"757":null,"758":null,"759":null,"760":null,"761":null,"762":null,"763":null,"764":null,"765":null,"766":null,"767":null,"768":null,"769":null,"770":null,"771":null,"772":null,"773":null,"774":null,"775":null,"776":null,"777":null,"778":null,"779":null,"780":null,"781":null,"782":null,"783":null,"784":null,"785":null,"786":null,"787":null,"788":null,"789":null,"790":null,"791":null,"792":null,"793":null,"794":null,"795":null,"796":null,"797":null,"798":null,"799":null,"800":null,"801":null,"802":null,"803":null,"804":null,"805":null,"806":null,"807":null,"808":null,"809":null,"810":null,"811":null,"812":null,"813":null,"814":null,"815":null},"umpire1":{"0":"Asad Rauf","1":"MR Benson","2":"Aleem Dar","3":"SJ Davis","4":"BF Bowden","5":"Aleem Dar","6":"IL Howell","7":"DJ Harper","8":"Asad Rauf","9":"Aleem Dar","10":"MR Benson","11":"BF Bowden","12":"Asad Rauf","13":"RE Koertzen","14":"BR Doctrove","15":"BF Bowden","16":"Aleem Dar","17":"BR Doctrove","18":"RE Koertzen","19":"BF Bowden","20":"Asad Rauf","21":"DJ Harper","22":"IL Howell","23":"Asad Rauf","24":"SJ Davis","25":"MR Benson","26":"DJ Harper","27":"Aleem Dar","28":"Asad Rauf","29":"MR Benson","30":"BF Bowden","31":"AV Jayaprakash","32":"IL Howell","33":"SJ Davis","34":"BR Doctrove","35":"Asad Rauf","36":"BR Doctrove","37":"SJ Davis","38":"BG Jerling","39":"BR Doctrove","40":"AV Jayaprakash","41":"BF Bowden","42":"BR Doctrove","43":"Asad Rauf","44":"SJ Davis","45":"BG Jerling","46":"BF Bowden","47":"DJ Harper","48":"Asad Rauf","49":"BF Bowden","50":"DJ Harper","51":"BR Doctrove","52":"SJ Davis","53":"BF Bowden","54":"BG Jerling","55":"BF Bowden","56":"Asad Rauf","57":"BF Bowden","58":"BR Doctrove","59":"BR Doctrove","60":"MR Benson","61":"MR Benson","62":"BG Jerling","63":"DJ Harper","64":"M Erasmus","65":"BR Doctrove","66":"MR Benson","67":"BR Doctrove","68":"HDPK Dharmasena","69":"S Asnani","70":"M Erasmus","71":"IL Howell","72":"BG Jerling","73":"GAV Baxter","74":"MR Benson","75":"MR Benson","76":"GAV Baxter","77":"GAV Baxter","78":"M Erasmus","79":"HDPK Dharmasena","80":"S Asnani","81":"DJ Harper","82":"S Asnani","83":"RE Koertzen","84":"BR Doctrove","85":"SS Hazare","86":"GAV Baxter","87":"MR Benson","88":"K Hariharan","89":"DJ Harper","90":"M Erasmus","91":"GAV Baxter","92":"GAV Baxter","93":"BR Doctrove","94":"SL Shastri","95":"GAV Baxter","96":"M Erasmus","97":"SS Hazare","98":"DJ Harper","99":"BR Doctrove","100":"BR Doctrove","101":"HDPK Dharmasena","102":"SK Tarapore","103":"RE Koertzen","104":"S Ravi","105":"SS Hazare","106":"SJA Taufel","107":"IL Howell","108":"BG Jerling","109":"BG Jerling","110":"IL Howell","111":"IL Howell","112":"BR Doctrove","113":"RE Koertzen","114":"RE Koertzen","115":"RE Koertzen","116":"RE Koertzen","117":"BR Doctrove","118":"HDPK Dharmasena","119":"K Hariharan","120":"BG Jerling","121":"S Das","122":"HDPK Dharmasena","123":"BR Doctrove","124":"K Hariharan","125":"BR Doctrove","126":"BF Bowden","127":"RE Koertzen","128":"HDPK Dharmasena","129":"BF Bowden","130":"K Hariharan","131":"SS Hazare","132":"RE Koertzen","133":"BR Doctrove","134":"BF Bowden","135":"HDPK Dharmasena","136":"BR Doctrove","137":"BG Jerling","138":"SS Hazare","139":"S Das","140":"SS Hazare","141":"BR Doctrove","142":"BG Jerling","143":"HDPK Dharmasena","144":"K Hariharan","145":"BF Bowden","146":"RE Koertzen","147":"BR Doctrove","148":"S Asnani","149":"BF Bowden","150":"HDPK Dharmasena","151":"S Asnani","152":"S Ravi","153":"BG Jerling","154":"S Asnani","155":"M Erasmus","156":"HDPK Dharmasena","157":"K Hariharan","158":"BF Bowden","159":"BR Doctrove","160":"RE Koertzen","161":"S Asnani","162":"SS Hazare","163":"BR Doctrove","164":"HDPK Dharmasena","165":"M Erasmus","166":"HDPK Dharmasena","167":"BG Jerling","168":"BF Bowden","169":"BR Doctrove","170":"BG Jerling","171":"BR Doctrove","172":"BR Doctrove","173":"RE Koertzen","174":"RE Koertzen","175":"BR Doctrove","176":"RE Koertzen","177":"HDPK Dharmasena","178":"AM Saheba","179":"BR Doctrove","180":"RE Koertzen","181":"Aleem Dar","182":"HDPK Dharmasena","183":"Asad Rauf","184":"S Asnani","185":"RE Koertzen","186":"Aleem Dar","187":"BR Doctrove","188":"HDPK Dharmasena","189":"RE Koertzen","190":"Asad Rauf","191":"Aleem Dar","192":"K Hariharan","193":"PR Reiffel","194":"Asad Rauf","195":"Aleem Dar","196":"S Asnani","197":"Asad Rauf","198":"SS Hazare","199":"S Asnani","200":"HDPK Dharmasena","201":"BR Doctrove","202":"Aleem Dar","203":"S Asnani","204":"Asad Rauf","205":"HDPK Dharmasena","206":"PR Reiffel","207":"Asad Rauf","208":"Aleem Dar","209":"HDPK Dharmasena","210":"AM Saheba","211":"SK Tarapore","212":"Aleem Dar","213":"HDPK Dharmasena","214":"Asad Rauf","215":"S Asnani","216":"SS Hazare","217":"HDPK Dharmasena","218":"S Ravi","219":"Asad Rauf","220":"Aleem Dar","221":"Asad Rauf","222":"K Hariharan","223":"Aleem Dar","224":"SK Tarapore","225":"K Hariharan","226":"Asad Rauf","227":"SK Tarapore","228":"HDPK Dharmasena","229":"AM Saheba","230":"S Asnani","231":"RE Koertzen","232":"S Ravi","233":"Asad Rauf","234":"PR Reiffel","235":"S Ravi","236":"Asad Rauf","237":"HDPK Dharmasena","238":"S Ravi","239":"RE Koertzen","240":"Asad Rauf","241":"SS Hazare","242":"K Hariharan","243":"SK Tarapore","244":"Asad Rauf","245":"Asad Rauf","246":"Asad Rauf","247":"Asad Rauf","248":"JD Cloete","249":"S Asnani","250":"AK Chaudhary","251":"BF Bowden","252":"S Asnani","253":"JD Cloete","254":"BF Bowden","255":"S Das","256":"AK Chaudhary","257":"S Ravi","258":"Asad Rauf","259":"Aleem Dar","260":"HDPK Dharmasena","261":"VA Kulkarni","262":"Asad Rauf","263":"BF Bowden","264":"Aleem Dar","265":"Asad Rauf","266":"JD Cloete","267":"BF Bowden","268":"Aleem Dar","269":"S Asnani","270":"JD Cloete","271":"JD Cloete","272":"Asad Rauf","273":"S Ravi","274":"Aleem Dar","275":"Asad Rauf","276":"S Ravi","277":"BF Bowden","278":"Asad Rauf","279":"S Ravi","280":"Aleem Dar","281":"S Ravi","282":"Aleem Dar","283":"BF Bowden","284":"Asad Rauf","285":"S Ravi","286":"AK Chaudhary","287":"BF Bowden","288":"Aleem Dar","289":"JD Cloete","290":"BF Bowden","291":"Asad Rauf","292":"HDPK Dharmasena","293":"BF Bowden","294":"JD Cloete","295":"Asad Rauf","296":"HDPK Dharmasena","297":"JD Cloete","298":"Asad Rauf","299":"HDPK Dharmasena","300":"BF Bowden","301":"BNJ Oxenford","302":"BF Bowden","303":"S Ravi","304":"S Das","305":"BF Bowden","306":"HDPK Dharmasena","307":"S Das","308":"JD Cloete","309":"HDPK Dharmasena","310":"S Das","311":"VA Kulkarni","312":"HDPK Dharmasena","313":"S Ravi","314":"BF Bowden","315":"S Asnani","316":"S Ravi","317":"HDPK Dharmasena","318":"BR Doctrove","319":"BF Bowden","320":"BR Doctrove","321":"BF Bowden","322":"S Ravi","323":"VA Kulkarni","324":"S Ravi","325":"S Das","326":"M Erasmus","327":"S Asnani","328":"AK Chaudhary","329":"Aleem Dar","330":"M Erasmus","331":"Aleem Dar","332":"Asad Rauf","333":"M Erasmus","334":"Aleem Dar","335":"S Ravi","336":"Asad Rauf","337":"M Erasmus","338":"Aleem Dar","339":"Asad Rauf","340":"CK Nandan","341":"M Erasmus","342":"Asad Rauf","343":"Aleem Dar","344":"M Erasmus","345":"HDPK Dharmasena","346":"Asad Rauf","347":"Aleem Dar","348":"HDPK Dharmasena","349":"M Erasmus","350":"S Asnani","351":"Aleem Dar","352":"HDPK Dharmasena","353":"HDPK Dharmasena","354":"Aleem Dar","355":"CK Nandan","356":"VA Kulkarni","357":"Asad Rauf","358":"Aleem Dar","359":"CK Nandan","360":"M Erasmus","361":"Asad Rauf","362":"S Das","363":"Asad Rauf","364":"HDPK Dharmasena","365":"M Erasmus","366":"Aleem Dar","367":"HDPK Dharmasena","368":"Asad Rauf","369":"HDPK Dharmasena","370":"HDPK Dharmasena","371":"C Shamshuddin","372":"S Ravi","373":"Aleem Dar","374":"HDPK Dharmasena","375":"S Das","376":"HDPK Dharmasena","377":"Asad Rauf","378":"NJ Llong","379":"Asad Rauf","380":"S Das","381":"NJ Llong","382":"HDPK Dharmasena","383":"VA Kulkarni","384":"AK Chaudhary","385":"NJ Llong","386":"C Shamshuddin","387":"Asad Rauf","388":"VA Kulkarni","389":"Asad Rauf","390":"HDPK Dharmasena","391":"NJ Llong","392":"C Shamshuddin","393":"Asad Rauf","394":"NJ Llong","395":"S Ravi","396":"C Shamshuddin","397":"HDPK Dharmasena","398":"M Erasmus","399":"Aleem Dar","400":"RK Illingworth","401":"BF Bowden","402":"Aleem Dar","403":"Aleem Dar","404":"BF Bowden","405":"RK Illingworth","406":"M Erasmus","407":"HDPK Dharmasena","408":"Aleem Dar","409":"M Erasmus","410":"BF Bowden","411":"HDPK Dharmasena","412":"HDPK Dharmasena","413":"Aleem Dar","414":"AK Chaudhary","415":"BF Bowden","416":"Aleem Dar","417":"HDPK Dharmasena","418":"AK Chaudhary","419":"BNJ Oxenford","420":"SS Hazare","421":"HDPK Dharmasena","422":"NJ Llong","423":"RM Deshpande","424":"S Ravi","425":"BNJ Oxenford","426":"HDPK Dharmasena","427":"AK Chaudhary","428":"S Ravi","429":"RM Deshpande","430":"HDPK Dharmasena","431":"NJ Llong","432":"S Ravi","433":"HDPK Dharmasena","434":"BNJ Oxenford","435":"K Srinath","436":"VA Kulkarni","437":"AK Chaudhary","438":"S Ravi","439":"BNJ Oxenford","440":"NJ Llong","441":"S Ravi","442":"HDPK Dharmasena","443":"AK Chaudhary","444":"RM Deshpande","445":"HDPK Dharmasena","446":"AK Chaudhary","447":"BNJ Oxenford","448":"S Ravi","449":"HDPK Dharmasena","450":"AK Chaudhary","451":"RM Deshpande","452":"HDPK Dharmasena","453":"K Srinath","454":"NJ Llong","455":"VA Kulkarni","456":"HDPK Dharmasena","457":"HDPK Dharmasena","458":"S Ravi","459":"RK Illingworth","460":"SD Fry","461":"RK Illingworth","462":"S Ravi","463":"SD Fry","464":"AK Chaudhary","465":"RM Deshpande","466":"AK Chaudhary","467":"AK Chaudhary","468":"CB Gaffaney","469":"PG Pathak","470":"AK Chaudhary","471":"PG Pathak","472":"SD Fry","473":"AK Chaudhary","474":"RK Illingworth","475":"SD Fry","476":"M Erasmus","477":"RK Illingworth","478":"JD Cloete","479":"SD Fry","480":"M Erasmus","481":"HDPK Dharmasena","482":"JD Cloete","483":"M Erasmus","484":"HDPK Dharmasena","485":"AK Chaudhary","486":"JD Cloete","487":"RM Deshpande","488":"RK Illingworth","489":"HDPK Dharmasena","490":"JD Cloete","491":"AK Chaudhary","492":"RK Illingworth","493":"HDPK Dharmasena","494":"C Shamshuddin","495":"AK Chaudhary","496":"HDPK Dharmasena","497":"RK Illingworth","498":"JD Cloete","499":"CB Gaffaney","500":"AK Chaudhary","501":"VA Kulkarni","502":"JD Cloete","503":"M Erasmus","504":"AK Chaudhary","505":"RK Illingworth","506":"JD Cloete","507":"RK Illingworth","508":"AK Chaudhary","509":"CK Nandan","510":"RM Deshpande","511":"HDPK Dharmasena","512":"CB Gaffaney","513":"HDPK Dharmasena","514":"AK Chaudhary","515":"AK Chaudhary","516":"HDPK Dharmasena","517":"HDPK Dharmasena","518":"S Ravi","519":"AK Chaudhary","520":"HDPK Dharmasena","521":"Nitin Menon","522":"VA Kulkarni","523":"S Ravi","524":"AK Chaudhary","525":"HDPK Dharmasena","526":"S Ravi","527":"VA Kulkarni","528":"HDPK Dharmasena","529":"S Ravi","530":"AK Chaudhary","531":"K Bharatan","532":"CB Gaffaney","533":"S Ravi","534":"AK Chaudhary","535":"K Bharatan","536":"CB Gaffaney","537":"Nitin Menon","538":"AY Dandekar","539":"M Erasmus","540":"Nitin Menon","541":"CB Gaffaney","542":"KN Ananthapadmanabhan","543":"AK Chaudhary","544":"BNJ Oxenford","545":"AY Dandekar","546":"M Erasmus","547":"CB Gaffaney","548":"AK Chaudhary","549":"C Shamshuddin","550":"M Erasmus","551":"CB Gaffaney","552":"HDPK Dharmasena","553":"S Ravi","554":"M Erasmus","555":"AK Chaudhary","556":"CB Gaffaney","557":"AY Dandekar","558":"K Bharatan","559":"HDPK Dharmasena","560":"AY Dandekar","561":"A Nand Kishore","562":"KN Ananthapadmanabhan","563":"Nitin Menon","564":"CB Gaffaney","565":"Nitin Menon","566":"KN Ananthapadmanabhan","567":"AK Chaudhary","568":"A Nand Kishore","569":"HDPK Dharmasena","570":"AK Chaudhary","571":"KN Ananthapadmanabhan","572":"A Nand Kishore","573":"AK Chaudhary","574":"M Erasmus","575":"M Erasmus","576":"HDPK Dharmasena","577":"AY Dandekar","578":"A Nand Kishore","579":"Nitin Menon","580":"AK Chaudhary","581":"S Ravi","582":"A Deshmukh","583":"Nitin Menon","584":"AK Chaudhary","585":"AY Dandekar","586":"Nitin Menon","587":"A Deshmukh","588":"KN Ananthapadmanabhan","589":"A Nand Kishore","590":"AY Dandekar","591":"YC Barde","592":"A Nand Kishore","593":"KN Ananthapadmanabhan","594":"Nitin Menon","595":"AY Dandekar","596":"S Ravi","597":"CB Gaffaney","598":"M Erasmus","599":"CB Gaffaney","600":"A Nand Kishore","601":"AY Dandekar","602":"AK Chaudhary","603":"CB Gaffaney","604":"A Nand Kishore","605":"AY Dandekar","606":"AK Chaudhary","607":"NJ Llong","608":"Nitin Menon","609":"KN Ananthapadmanabhan","610":"AK Chaudhary","611":"YC Barde","612":"AY Dandekar","613":"AK Chaudhary","614":"M Erasmus","615":"YC Barde","616":"KN Ananthapadmanabhan","617":"M Erasmus","618":"CB Gaffaney","619":"KN Ananthapadmanabhan","620":"Nitin Menon","621":"AY Dandekar","622":"A Nand Kishore","623":"KN Ananthapadmanabhan","624":"A Nand Kishore","625":"YC Barde","626":"A Deshmukh","627":"KN Ananthapadmanabhan","628":"AK Chaudhary","629":"A Nand Kishore","630":"AY Dandekar","631":"CK Nandan","632":"S Ravi","633":"AK Chaudhary","634":"NJ Llong","635":"NJ Llong","636":"CB Gaffaney","637":"KN Ananthapadmanabhan","638":"C Shamshuddin","639":"VA Kulkarni","640":"CB Gaffaney","641":"KN Ananthapadmanabhan","642":"NJ Llong","643":"A Deshmukh","644":"KN Ananthapadmanabhan","645":"AK Chaudhary","646":"C Shamshuddin","647":"VA Kulkarni","648":"AK Chaudhary","649":"RJ Tucker","650":"A Deshmukh","651":"NJ Llong","652":"KN Ananthapadmanabhan","653":"C Shamshuddin","654":"CB Gaffaney","655":"VA Kulkarni","656":"KN Ananthapadmanabhan","657":"A Nand Kishore","658":"C Shamshuddin","659":"NJ Llong","660":"YC Barde","661":"C Shamshuddin","662":"CB Gaffaney","663":"BNJ Oxenford","664":"NJ Llong","665":"AY Dandekar","666":"M Erasmus","667":"VK Sharma","668":"HDPK Dharmasena","669":"AY Dandekar","670":"Nitin Menon","671":"BNJ Oxenford","672":"HDPK Dharmasena","673":"C Shamshuddin","674":"BNJ Oxenford","675":"M Erasmus","676":"KN Ananthapadmanabhan","677":"AY Dandekar","678":"M Erasmus","679":"VK Sharma","680":"KN Ananthapadmanabhan","681":"M Erasmus","682":"Nitin Menon","683":"BNJ Oxenford","684":"HDPK Dharmasena","685":"M Erasmus","686":"AY Dandekar","687":"VA Kulkarni","688":"BNJ Oxenford","689":"AK Chaudhary","690":"HDPK Dharmasena","691":"Nitin Menon","692":"C Shamshuddin","693":"AK Chaudhary","694":"HDPK Dharmasena","695":"M Erasmus","696":"AY Dandekar","697":"CB Gaffaney","698":"YC Barde","699":"KN Ananthapadmanabhan","700":"M Erasmus","701":"VA Kulkarni","702":"CK Nandan","703":"C Shamshuddin","704":"VA Kulkarni","705":"AY Dandekar","706":"KN Ananthapadmanabhan","707":"YC Barde","708":"CB Gaffaney","709":"AY Dandekar","710":"RJ Tucker","711":"KN Ananthapadmanabhan","712":"CB Gaffaney","713":"KN Ananthapadmanabhan","714":"AY Dandekar","715":"YC Barde","716":"CB Gaffaney","717":"AY Dandekar","718":"RJ Tucker","719":"YC Barde","720":"UV Gandhe","721":"YC Barde","722":"Nitin Menon","723":"UV Gandhe","724":"RJ Tucker","725":"BNJ Oxenford","726":"M Erasmus","727":"VA Kulkarni","728":"UV Gandhe","729":"BNJ Oxenford","730":"IJ Gould","731":"YC Barde","732":"UV Gandhe","733":"NJ Llong","734":"RJ Tucker","735":"A Nand Kishore","736":"NJ Llong","737":"C Shamshuddin","738":"AY Dandekar","739":"NJ Llong","740":"YC Barde","741":"KN Ananthapadmanabhan","742":"IJ Gould","743":"CK Nandan","744":"UV Gandhe","745":"AY Dandekar","746":"CK Nandan","747":"C Shamshuddin","748":"AY Dandekar","749":"NJ Llong","750":"KN Ananthapadmanabhan","751":"A Nand Kishore","752":"NJ Llong","753":"BNJ Oxenford","754":"BNJ Oxenford","755":"IJ Gould","756":"CB Gaffaney","757":"AK Chaudhary","758":"VK Sharma","759":"C Shamshuddin","760":"C Shamshuddin","761":"CB Gaffaney","762":"AY Dandekar","763":"UV Gandhe","764":"KN Ananthapadmanabhan","765":"KN Ananthapadmanabhan","766":"KN Ananthapadmanabhan","767":"VK Sharma","768":"KN Ananthapadmanabhan","769":"CB Gaffaney","770":"PG Pathak","771":"YC Barde","772":"CB Gaffaney","773":"KN Ananthapadmanabhan","774":"AK Chaudhary","775":"VK Sharma","776":"PG Pathak","777":"AY Dandekar","778":"CB Gaffaney","779":"VA Kulkarni","780":"AK Chaudhary","781":"Nitin Menon","782":"Nitin Menon","783":"Nitin Menon","784":"KN Ananthapadmanabhan","785":"C Shamshuddin","786":"AK Chaudhary","787":"UV Gandhe","788":"AK Chaudhary","789":"AK Chaudhary","790":"CB Gaffaney","791":"RK Illingworth","792":"AK Chaudhary","793":"CB Gaffaney","794":"Nitin Menon","795":"KN Ananthapadmanabhan","796":"VK Sharma","797":"CB Gaffaney","798":"AY Dandekar","799":"YC Barde","800":"C Shamshuddin","801":"CB Gaffaney","802":"KN Ananthapadmanabhan","803":"KN Ananthapadmanabhan","804":"RK Illingworth","805":"UV Gandhe","806":"AK Chaudhary","807":"AK Chaudhary","808":"C Shamshuddin","809":"CB Gaffaney","810":"C Shamshuddin","811":"Nitin Menon","812":"CB Gaffaney","813":"PR Reiffel","814":"PR Reiffel","815":"CB Gaffaney"},"umpire2":{"0":"RE Koertzen","1":"SL Shastri","2":"GA Pratapkumar","3":"DJ Harper","4":"K Hariharan","5":"RB Tiffin","6":"AM Saheba","7":"GA Pratapkumar","8":"MR Benson","9":"AM Saheba","10":"IL Howell","11":"AV Jayaprakash","12":"SL Shastri","13":"I Shivram","14":"RB Tiffin","15":"AV Jayaprakash","16":"I Shivram","17":"RB Tiffin","18":"GA Pratapkumar","19":"K Hariharan","20":"RE Koertzen","21":"I Shivram","22":"RE Koertzen","23":"AV Jayaprakash","24":"BR Doctrove","25":"RB Tiffin","26":"RE Koertzen","27":"RB Tiffin","28":"IL Howell","29":"AM Saheba","30":"AV Jayaprakash","31":"BG Jerling","32":"AM Saheba","33":"RE Koertzen","34":"I Shivram","35":"IL Howell","36":"AM Saheba","37":"K Hariharan","38":"GA Pratapkumar","39":"DJ Harper","40":"RE Koertzen","41":"SL Shastri","42":"DJ Harper","43":"K Hariharan","44":"GA Pratapkumar","45":"RE Koertzen","46":"GA Pratapkumar","47":"I Shivram","48":"SJ Davis","49":"K Hariharan","50":"SL Shastri","51":"SL Shastri","52":"I Shivram","53":"K Hariharan","54":"AM Saheba","55":"RE Koertzen","56":"DJ Harper","57":"RE Koertzen","58":"K Hariharan","59":"RB Tiffin","60":"SD Ranade","61":"BR Doctrove","62":"SJA Taufel","63":"SD Ranade","64":"AM Saheba","65":"SJA Taufel","66":"M Erasmus","67":"TH Wijewardene","68":"SJA Taufel","69":"BG Jerling","70":"K Hariharan","71":"TH Wijewardene","72":"RB Tiffin","73":"RE Koertzen","74":"TH Wijewardene","75":"SL Shastri","76":"AM Saheba","77":"RE Koertzen","78":"SK Tarapore","79":"S Ravi","80":"BG Jerling","81":"RE Koertzen","82":"MR Benson","83":"TH Wijewardene","84":"M Erasmus","85":"IL Howell","86":"IL Howell","87":"HDPK Dharmasena","88":"DJ Harper","89":"TH Wijewardene","90":"SK Tarapore","91":"AM Saheba","92":"HDPK Dharmasena","93":"BG Jerling","94":"RB Tiffin","95":"HDPK Dharmasena","96":"SS Hazare","97":"RE Koertzen","98":"SL Shastri","99":"DJ Harper","100":"DJ Harper","101":"IL Howell","102":"SJA Taufel","103":"S Ravi","104":"RB Tiffin","105":"IL Howell","106":"RB Tiffin","107":"RB Tiffin","108":"SJA Taufel","109":"SJA Taufel","110":"S Ravi","111":"S Ravi","112":"DJ Harper","113":"SJA Taufel","114":"SJA Taufel","115":"RB Tiffin","116":"RB Tiffin","117":"S Ravi","118":"AM Saheba","119":"DJ Harper","120":"RE Koertzen","121":"DJ Harper","122":"AM Saheba","123":"SK Tarapore","124":"DJ Harper","125":"SK Tarapore","126":"M Erasmus","127":"RB Tiffin","128":"SS Hazare","129":"M Erasmus","130":"DJ Harper","131":"SJA Taufel","132":"RB Tiffin","133":"SK Tarapore","134":"AM Saheba","135":"SJA Taufel","136":"S Ravi","137":"RE Koertzen","138":"SJA Taufel","139":"K Hariharan","140":"SJA Taufel","141":"SK Tarapore","142":"RE Koertzen","143":"SJA Taufel","144":"DJ Harper","145":"M Erasmus","146":"RB Tiffin","147":"S Ravi","148":"DJ Harper","149":"M Erasmus","150":"SJA Taufel","151":"DJ Harper","152":"SK Tarapore","153":"RE Koertzen","154":"DJ Harper","155":"AM Saheba","156":"SJA Taufel","157":"DJ Harper","158":"AM Saheba","159":"SK Tarapore","160":"RB Tiffin","161":"DJ Harper","162":"SJA Taufel","163":"S Ravi","164":"SS Hazare","165":"AM Saheba","166":"SJA Taufel","167":"RB Tiffin","168":"AM Saheba","169":"SK Tarapore","170":"RE Koertzen","171":"RB Tiffin","172":"RB Tiffin","173":"SJA Taufel","174":"SJA Taufel","175":"PR Reiffel","176":"SK Tarapore","177":"K Hariharan","178":"RB Tiffin","179":"PR Reiffel","180":"SK Tarapore","181":"RB Tiffin","182":"AL Hill","183":"SL Shastri","184":"PR Reiffel","185":"S Ravi","186":"SS Hazare","187":"PR Reiffel","188":"AL Hill","189":"S Ravi","190":"AM Saheba","191":"RB Tiffin","192":"AL Hill","193":"RJ Tucker","194":"AM Saheba","195":"RB Tiffin","196":"PR Reiffel","197":"AM Saheba","198":"RB Tiffin","199":"RE Koertzen","200":"AL Hill","201":"SK Tarapore","202":"RB Tiffin","203":"RJ Tucker","204":"SL Shastri","205":"AL Hill","206":"RJ Tucker","207":"SK Tarapore","208":"SS Hazare","209":"AL Hill","210":"SL Shastri","211":"SJA Taufel","212":"RB Tiffin","213":"PR Reiffel","214":"SL Shastri","215":"RJ Tucker","216":"RB Tiffin","217":"SJA Taufel","218":"RJ Tucker","219":"AM Saheba","220":"RB Tiffin","221":"PR Reiffel","222":"SJA Taufel","223":"SS Hazare","224":"RJ Tucker","225":"SJA Taufel","226":"AM Saheba","227":"RJ Tucker","228":"K Hariharan","229":"SL Shastri","230":"RJ Tucker","231":"RB Tiffin","232":"SK Tarapore","233":"SL Shastri","234":"RJ Tucker","235":"SK Tarapore","236":"AM Saheba","237":"RE Koertzen","238":"SJA Taufel","239":"PR Reiffel","240":"AM Saheba","241":"RJ Tucker","242":"RE Koertzen","243":"SJA Taufel","244":"SJA Taufel","245":"SJA Taufel","246":"SJA Taufel","247":"SJA Taufel","248":"SJA Taufel","249":"HDPK Dharmasena","250":"SJA Taufel","251":"SK Tarapore","252":"S Ravi","253":"HDPK Dharmasena","254":"VA Kulkarni","255":"SJA Taufel","256":"JD Cloete","257":"RJ Tucker","258":"SK Tarapore","259":"BNJ Oxenford","260":"RJ Tucker","261":"SK Tarapore","262":"S Asnani","263":"SK Tarapore","264":"BNJ Oxenford","265":"S Asnani","266":"RJ Tucker","267":"SK Tarapore","268":"BNJ Oxenford","269":"S Das","270":"RJ Tucker","271":"SJA Taufel","272":"S Das","273":"RJ Tucker","274":"BNJ Oxenford","275":"S Das","276":"RJ Tucker","277":"SK Tarapore","278":"S Asnani","279":"RJ Tucker","280":"BNJ Oxenford","281":"RJ Tucker","282":"BNJ Oxenford","283":"SK Tarapore","284":"BR Doctrove","285":"RJ Tucker","286":"BNJ Oxenford","287":"C Shamshuddin","288":"AK Chaudhary","289":"SJA Taufel","290":"C Shamshuddin","291":"S Asnani","292":"BNJ Oxenford","293":"SK Tarapore","294":"SJA Taufel","295":"S Asnani","296":"BNJ Oxenford","297":"S Ravi","298":"BR Doctrove","299":"BNJ Oxenford","300":"VA Kulkarni","301":"C Shamshuddin","302":"SK Tarapore","303":"SJA Taufel","304":"BR Doctrove","305":"SK Tarapore","306":"BNJ Oxenford","307":"BR Doctrove","308":"SJA Taufel","309":"BNJ Oxenford","310":"BR Doctrove","311":"SK Tarapore","312":"C Shamshuddin","313":"SJA Taufel","314":"VA Kulkarni","315":"BR Doctrove","316":"SJA Taufel","317":"C Shamshuddin","318":"SJA Taufel","319":"HDPK Dharmasena","320":"SJA Taufel","321":"SJA Taufel","322":"SJA Taufel","323":"C Shamshuddin","324":"SJA Taufel","325":"C Shamshuddin","326":"VA Kulkarni","327":"SJA Taufel","328":"S Ravi","329":"S Das","330":"VA Kulkarni","331":"C Shamshuddin","332":"AK Chaudhary","333":"K Srinath","334":"Subroto Das","335":"SJA Taufel","336":"AK Chaudhary","337":"VA Kulkarni","338":"C Shamshuddin","339":"AK Chaudhary","340":"SJA Taufel","341":"VA Kulkarni","342":"AK Chaudhary","343":"C Shamshuddin","344":"VA Kulkarni","345":"CK Nandan","346":"AK Chaudhary","347":"C Shamshuddin","348":"S Ravi","349":"K Srinath","350":"AK Chaudhary","351":"C Shamshuddin","352":"S Ravi","353":"S Ravi","354":"S Das","355":"S Ravi","356":"K Srinath","357":"S Asnani","358":"SJA Taufel","359":"S Ravi","360":"K Srinath","361":"AK Chaudhary","362":"SJA Taufel","363":"S Asnani","364":"CK Nandan","365":"VA Kulkarni","366":"C Shamshuddin","367":"CK Nandan","368":"S Asnani","369":"S Ravi","370":"CK Nandan","371":"RJ Tucker","372":"SJA Taufel","373":"RJ Tucker","374":"S Ravi","375":"NJ Llong","376":"S Ravi","377":"S Asnani","378":"K Srinath","379":"AK Chaudhary","380":"RJ Tucker","381":"K Srinath","382":"CK Nandan","383":"K Srinath","384":"SJA Taufel","385":"K Srinath","386":"RJ Tucker","387":"S Asnani","388":"NJ Llong","389":"AK Chaudhary","390":"CK Nandan","391":"SJA Taufel","392":"RJ Tucker","393":"S Asnani","394":"RJ Tucker","395":"RJ Tucker","396":"SJA Taufel","397":"SJA Taufel","398":"RK Illingworth","399":"S Ravi","400":"C Shamshuddin","401":"RK Illingworth","402":"AK Chaudhary","403":"VA Kulkarni","404":"M Erasmus","405":"C Shamshuddin","406":"S Ravi","407":"RK Illingworth","408":"VA Kulkarni","409":"S Ravi","410":"M Erasmus","411":"C Shamshuddin","412":"RK Illingworth","413":"VA Kulkarni","414":"VA Kulkarni","415":"S Ravi","416":"AK Chaudhary","417":"M Erasmus","418":"NJ Llong","419":"C Shamshuddin","420":"S Ravi","421":"VA Kulkarni","422":"CK Nandan","423":"BNJ Oxenford","424":"K Srinath","425":"C Shamshuddin","426":"PG Pathak","427":"NJ Llong","428":"K Srinath","429":"BNJ Oxenford","430":"VA Kulkarni","431":"CK Nandan","432":"RJ Tucker","433":"VA Kulkarni","434":"C Shamshuddin","435":"RJ Tucker","436":"PG Pathak","437":"NJ Llong","438":"RJ Tucker","439":"C Shamshuddin","440":"CK Nandan","441":"RJ Tucker","442":"PG Pathak","443":"NJ Llong","444":"C Shamshuddin","445":"VA Kulkarni","446":"CK Nandan","447":"C Shamshuddin","448":"RJ Tucker","449":"PG Pathak","450":"NJ Llong","451":"BNJ Oxenford","452":"VA Kulkarni","453":"RJ Tucker","454":"S Ravi","455":"BNJ Oxenford","456":"RJ Tucker","457":"BNJ Oxenford","458":"C Shamshuddin","459":"VA Kulkarni","460":"CB Gaffaney","461":"VA Kulkarni","462":"C Shamshuddin","463":"CB Gaffaney","464":"K Srinivasan","465":"RK Illingworth","466":"SD Fry","467":"M Erasmus","468":"K Srinath","469":"S Ravi","470":"M Erasmus","471":"S Ravi","472":"CK Nandan","473":"M Erasmus","474":"VA Kulkarni","475":"CB Gaffaney","476":"S Ravi","477":"VA Kulkarni","478":"C Shamshuddin","479":"CK Nandan","480":"S Ravi","481":"CB Gaffaney","482":"C Shamshuddin","483":"S Ravi","484":"CB Gaffaney","485":"M Erasmus","486":"PG Pathak","487":"VA Kulkarni","488":"S Ravi","489":"CK Nandan","490":"PG Pathak","491":"K Srinivasan","492":"VA Kulkarni","493":"CB Gaffaney","494":"K Srinath","495":"M Erasmus","496":"CB Gaffaney","497":"VA Kulkarni","498":"C Shamshuddin","499":"CK Nandan","500":"HDPK Dharmasena","501":"S Ravi","502":"C Shamshuddin","503":"CK Nandan","504":"HDPK Dharmasena","505":"VA Kulkarni","506":"C Shamshuddin","507":"VA Kulkarni","508":"HDPK Dharmasena","509":"C Shamshuddin","510":"RK Illingworth","511":"K Srinivasan","512":"K Srinath","513":"RK Illingworth","514":"C Shamshuddin","515":"CB Gaffaney","516":"RK Illingworth","517":"CK Nandan","518":"C Shamshuddin","519":"VA Kulkarni","520":"VK Sharma","521":"S Ravi","522":"CK Nandan","523":"C Shamshuddin","524":"CK Nandan","525":"VK Sharma","526":"C Shamshuddin","527":"A Nand Kishore","528":"VK Sharma","529":"C Shamshuddin","530":"CK Nandan","531":"HDPK Dharmasena","532":"VK Sharma","533":"C Shamshuddin","534":"CK Nandan","535":"BNJ Oxenford","536":"A Nand Kishore","537":"RJ Tucker","538":"CK Nandan","539":"S Ravi","540":"RJ Tucker","541":"BNJ Oxenford","542":"M Erasmus","543":"HDPK Dharmasena","544":"VK Sharma","545":"RJ Tucker","546":"S Ravi","547":"BNJ Oxenford","548":"HDPK Dharmasena","549":"RJ Tucker","550":"S Ravi","551":"BNJ Oxenford","552":"CK Nandan","553":"C Shamshuddin","554":"RJ Tucker","555":"HDPK Dharmasena","556":"VK Sharma","557":"C Shamshuddin","558":"M Erasmus","559":"CK Nandan","560":"VK Sharma","561":"BNJ Oxenford","562":"M Erasmus","563":"CK Nandan","564":"A Nand Kishore","565":"C Shamshuddin","566":"M Erasmus","567":"CK Nandan","568":"BNJ Oxenford","569":"Nitin Menon","570":"CK Nandan","571":"M Erasmus","572":"BNJ Oxenford","573":"HDPK Dharmasena","574":"C Shamshuddin","575":"CK Nandan","576":"BNJ Oxenford","577":"NJ Llong","578":"S Ravi","579":"CK Nandan","580":"C Shamshuddin","581":"VK Sharma","582":"NJ Llong","583":"CK Nandan","584":"C Shamshuddin","585":"S Ravi","586":"CK Nandan","587":"NJ Llong","588":"AK Chaudhary","589":"S Ravi","590":"NJ Llong","591":"Nitin Menon","592":"S Ravi","593":"C Shamshuddin","594":"CK Nandan","595":"A Deshmukh","596":"VK Sharma","597":"NJ Llong","598":"C Shamshuddin","599":"Nitin Menon","600":"S Ravi","601":"A Deshmukh","602":"M Erasmus","603":"CK Nandan","604":"S Ravi","605":"NJ Llong","606":"C Shamshuddin","607":"S Ravi","608":"CK Nandan","609":"M Erasmus","610":"CB Gaffaney","611":"CK Nandan","612":"S Ravi","613":"CB Gaffaney","614":"C Shamshuddin","615":"Nitin Menon","616":"A Nand Kishore","617":"Nitin Menon","618":"C Shamshuddin","619":"AK Chaudhary","620":"CK Nandan","621":"C Shamshuddin","622":"VK Sharma","623":"M Erasmus","624":"S Ravi","625":"AK Chaudhary","626":"A Nand Kishore","627":"CK Nandan","628":"Nitin Menon","629":"S Ravi","630":"A Deshmukh","631":"C Shamshuddin","632":"C Shamshuddin","633":"Nitin Menon","634":"Nitin Menon","635":"S Ravi","636":"A Nand Kishore","637":"RJ Tucker","638":"A Deshmukh","639":"NJ Llong","640":"AK Chaudhary","641":"Nitin Menon","642":"CK Nandan","643":"S Ravi","644":"Nitin Menon","645":"A Nand Kishore","646":"S Ravi","647":"CK Nandan","648":"A Nand Kishore","649":"Nitin Menon","650":"S Ravi","651":"AK Chaudhary","652":"Nitin Menon","653":"A Deshmukh","654":"CK Nandan","655":"AK Chaudhary","656":"RJ Tucker","657":"CK Nandan","658":"S Ravi","659":"VK Sharma","660":"CK Nandan","661":"S Ravi","662":"Nitin Menon","663":"A Nand Kishore","664":"AK Chaudhary","665":"C Shamshuddin","666":"Nitin Menon","667":"CK Nandan","668":"A Deshmukh","669":"S Ravi","670":"YC Barde","671":"CK Nandan","672":"A Deshmukh","673":"S Ravi","674":"VK Sharma","675":"Nitin Menon","676":"AK Chaudhary","677":"C Shamshuddin","678":"YC Barde","679":"CK Nandan","680":"HDPK Dharmasena","681":"YC Barde","682":"S Ravi","683":"VK Sharma","684":"AK Chaudhary","685":"Nitin Menon","686":"S Ravi","687":"HDPK Dharmasena","688":"VK Sharma","689":"S Ravi","690":"CK Nandan","691":"YC Barde","692":"M Erasmus","693":"Nitin Menon","694":"Nitin Menon","695":"S Ravi","696":"BNJ Oxenford","697":"AK Chaudhary","698":"S Ravi","699":"C Shamshuddin","700":"Nitin Menon","701":"AK Chaudhary","702":"S Ravi","703":"BNJ Oxenford","704":"CB Gaffaney","705":"Nitin Menon","706":"S Ravi","707":"CK Nandan","708":"AK Chaudhary","709":"M Erasmus","710":"BNJ Oxenford","711":"C Shamshuddin","712":"AK Chaudhary","713":"RJ Tucker","714":"Nitin Menon","715":"S Ravi","716":"AK Chaudhary","717":"M Erasmus","718":"C Shamshuddin","719":"S Ravi","720":"BNJ Oxenford","721":"CK Nandan","722":"A Nand Kishore","723":"S Ravi","724":"CK Nandan","725":"AK Chaudhary","726":"Nitin Menon","727":"AK Chaudhary","728":"IJ Gould","729":"NJ Llong","730":"Nitin Menon","731":"S Ravi","732":"C Shamshuddin","733":"Nitin Menon","734":"VA Kulkarni","735":"S Ravi","736":"AK Chaudhary","737":"BNJ Oxenford","738":"IJ Gould","739":"AK Chaudhary","740":"A Nand Kishore","741":"BNJ Oxenford","742":"Nitin Menon","743":"S Ravi","744":"NJ Llong","745":"Nitin Menon","746":"S Ravi","747":"BNJ Oxenford","748":"IJ Gould","749":"AK Chaudhary","750":"C Shamshuddin","751":"CK Nandan","752":"Nitin Menon","753":"S Ravi","754":"S Ravi","755":"Nitin Menon","756":"VK Sharma","757":"Nitin Menon","758":"S Ravi","759":"RK Illingworth","760":"VA Kulkarni","761":"PG Pathak","762":"PR Reiffel","763":"CB Gaffaney","764":"C Shamshuddin","765":"RK Illingworth","766":"K Srinivasan","767":"S Ravi","768":"C Shamshuddin","769":"S Ravi","770":"VK Sharma","771":"PR Reiffel","772":"S Ravi","773":"RK Illingworth","774":"PR Reiffel","775":"S Ravi","776":"S Ravi","777":"Nitin Menon","778":"S Ravi","779":"RK Illingworth","780":"PR Reiffel","781":"PR Reiffel","782":"PR Reiffel","783":"YC Barde","784":"RK Illingworth","785":"VA Kulkarni","786":"Nitin Menon","787":"CB Gaffaney","788":"Nitin Menon","789":"PR Reiffel","790":"VK Sharma","791":"K Srinivasan","792":"PR Reiffel","793":"S Ravi","794":"PR Reiffel","795":"C Shamshuddin","796":"S Ravi","797":"VK Sharma","798":"Nitin Menon","799":"PR Reiffel","800":"RK Illingworth","801":"S Ravi","802":"RK Illingworth","803":"RK Illingworth","804":"K Srinivasan","805":"VK Sharma","806":"Nitin Menon","807":"Nitin Menon","808":"RK Illingworth","809":"VK Sharma","810":"RK Illingworth","811":"PR Reiffel","812":"Nitin Menon","813":"S Ravi","814":"S Ravi","815":"Nitin Menon"}} \ No newline at end of file diff --git a/Python_For_ML/Week_4/Conceptual Session/post-comment.xlsx b/Python_For_ML/Week_4/Conceptual Session/post-comment.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..0673638bf1cb0b5ab4950b601ed424060a73d0bb GIT binary patch literal 69213 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 LEVT}EgAyA6b`pi+ literal 0 HcmV?d00001 diff --git a/Python_For_ML/Week_4/Conceptual Session/posts-excel.xlsx b/Python_For_ML/Week_4/Conceptual Session/posts-excel.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..b593e8578c229be6bfd85818b1e4bb012aab4024 GIT binary patch literal 14323 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 b{ujqmkOuo2_yPc+zP@~45j>mquc!Y5l^5k7 literal 0 HcmV?d00001 diff --git a/Python_For_ML/Week_4/Conceptual Session/s1.ipynb b/Python_For_ML/Week_4/Conceptual Session/s1.ipynb new file mode 100644 index 0000000..d2a89d4 --- /dev/null +++ b/Python_For_ML/Week_4/Conceptual Session/s1.ipynb @@ -0,0 +1,4514 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-21T12:25:04.590074Z", + "start_time": "2025-11-21T12:25:03.013169Z" + } + }, + "source": "import pandas as pd", + "outputs": [], + "execution_count": 1 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:04.725421Z", + "start_time": "2025-11-21T12:25:04.611277Z" + } + }, + "cell_type": "code", + "source": [ + "df = pd.read_csv('CS-1/train.csv')\n", + "print(df.head())\n", + "print(df.info())\n", + "print(df.describe())" + ], + "id": "565aaa80843d6897", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " enrollee_id city city_development_index gender \\\n", + "0 8949 city_103 0.920 Male \n", + "1 29725 city_40 0.776 Male \n", + "2 11561 city_21 0.624 NaN \n", + "3 33241 city_115 0.789 NaN \n", + "4 666 city_162 0.767 Male \n", + "\n", + " relevent_experience enrolled_university education_level \\\n", + "0 Has relevent experience no_enrollment Graduate \n", + "1 No relevent experience no_enrollment Graduate \n", + "2 No relevent experience Full time course Graduate \n", + "3 No relevent experience NaN Graduate \n", + "4 Has relevent experience no_enrollment Masters \n", + "\n", + " major_discipline experience company_size company_type last_new_job \\\n", + "0 STEM >20 NaN NaN 1 \n", + "1 STEM 15 50-99 Pvt Ltd >4 \n", + "2 STEM 5 NaN NaN never \n", + "3 Business Degree <1 NaN Pvt Ltd never \n", + "4 STEM >20 50-99 Funded Startup 4 \n", + "\n", + " training_hours target \n", + "0 36 1.0 \n", + "1 47 0.0 \n", + "2 83 0.0 \n", + "3 52 1.0 \n", + "4 8 0.0 \n", + "\n", + "RangeIndex: 19158 entries, 0 to 19157\n", + "Data columns (total 14 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 enrollee_id 19158 non-null int64 \n", + " 1 city 19158 non-null object \n", + " 2 city_development_index 19158 non-null float64\n", + " 3 gender 14650 non-null object \n", + " 4 relevent_experience 19158 non-null object \n", + " 5 enrolled_university 18772 non-null object \n", + " 6 education_level 18698 non-null object \n", + " 7 major_discipline 16345 non-null object \n", + " 8 experience 19093 non-null object \n", + " 9 company_size 13220 non-null object \n", + " 10 company_type 13018 non-null object \n", + " 11 last_new_job 18735 non-null object \n", + " 12 training_hours 19158 non-null int64 \n", + " 13 target 19158 non-null float64\n", + "dtypes: float64(2), int64(2), object(10)\n", + "memory usage: 2.0+ MB\n", + "None\n", + " enrollee_id city_development_index training_hours target\n", + "count 19158.000000 19158.000000 19158.000000 19158.000000\n", + "mean 16875.358179 0.828848 65.366896 0.249348\n", + "std 9616.292592 0.123362 60.058462 0.432647\n", + "min 1.000000 0.448000 1.000000 0.000000\n", + "25% 8554.250000 0.740000 23.000000 0.000000\n", + "50% 16982.500000 0.903000 47.000000 0.000000\n", + "75% 25169.750000 0.920000 88.000000 0.000000\n", + "max 33380.000000 0.949000 336.000000 1.000000\n" + ] + } + ], + "execution_count": 2 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:05.800440Z", + "start_time": "2025-11-21T12:25:04.760702Z" + } + }, + "cell_type": "code", + "source": [ + "import requests\n", + "from io import StringIO\n", + "\n", + "res = requests.get('https://gist.githubusercontent.com/kevin336/acbb2271e66c10a5b73aacf82ca82784/raw/e38afe62e088394d61ed30884dd50a6826eee0a8/employees.csv')\n", + "\n", + "pd.read_csv(StringIO(res.text))\n", + "\n" + ], + "id": "788f8f2ab6af682", + "outputs": [ + { + "data": { + "text/plain": [ + " EMPLOYEE_ID FIRST_NAME LAST_NAME EMAIL PHONE_NUMBER HIRE_DATE \\\n", + "0 198 Donald OConnell DOCONNEL 650.507.9833 21-JUN-07 \n", + "1 199 Douglas Grant DGRANT 650.507.9844 13-JAN-08 \n", + "2 200 Jennifer Whalen JWHALEN 515.123.4444 17-SEP-03 \n", + "3 201 Michael Hartstein MHARTSTE 515.123.5555 17-FEB-04 \n", + "4 202 Pat Fay PFAY 603.123.6666 17-AUG-05 \n", + "5 203 Susan Mavris SMAVRIS 515.123.7777 07-JUN-02 \n", + "6 204 Hermann Baer HBAER 515.123.8888 07-JUN-02 \n", + "7 205 Shelley Higgins SHIGGINS 515.123.8080 07-JUN-02 \n", + "8 206 William Gietz WGIETZ 515.123.8181 07-JUN-02 \n", + "9 100 Steven King SKING 515.123.4567 17-JUN-03 \n", + "10 101 Neena Kochhar NKOCHHAR 515.123.4568 21-SEP-05 \n", + "11 102 Lex De Haan LDEHAAN 515.123.4569 13-JAN-01 \n", + "12 103 Alexander Hunold AHUNOLD 590.423.4567 03-JAN-06 \n", + "13 104 Bruce Ernst BERNST 590.423.4568 21-MAY-07 \n", + "14 105 David Austin DAUSTIN 590.423.4569 25-JUN-05 \n", + "15 106 Valli Pataballa VPATABAL 590.423.4560 05-FEB-06 \n", + "16 107 Diana Lorentz DLORENTZ 590.423.5567 07-FEB-07 \n", + "17 108 Nancy Greenberg NGREENBE 515.124.4569 17-AUG-02 \n", + "18 109 Daniel Faviet DFAVIET 515.124.4169 16-AUG-02 \n", + "19 110 John Chen JCHEN 515.124.4269 28-SEP-05 \n", + "20 111 Ismael Sciarra ISCIARRA 515.124.4369 30-SEP-05 \n", + "21 112 Jose Manuel Urman JMURMAN 515.124.4469 07-MAR-06 \n", + "22 113 Luis Popp LPOPP 515.124.4567 07-DEC-07 \n", + "23 114 Den Raphaely DRAPHEAL 515.127.4561 07-DEC-02 \n", + "24 115 Alexander Khoo AKHOO 515.127.4562 18-MAY-03 \n", + "25 116 Shelli Baida SBAIDA 515.127.4563 24-DEC-05 \n", + "26 117 Sigal Tobias STOBIAS 515.127.4564 24-JUL-05 \n", + "27 118 Guy Himuro GHIMURO 515.127.4565 15-NOV-06 \n", + "28 119 Karen Colmenares KCOLMENA 515.127.4566 10-AUG-07 \n", + "29 120 Matthew Weiss MWEISS 650.123.1234 18-JUL-04 \n", + "30 121 Adam Fripp AFRIPP 650.123.2234 10-APR-05 \n", + "31 122 Payam Kaufling PKAUFLIN 650.123.3234 01-MAY-03 \n", + "32 123 Shanta Vollman SVOLLMAN 650.123.4234 10-OCT-05 \n", + "33 124 Kevin Mourgos KMOURGOS 650.123.5234 16-NOV-07 \n", + "34 125 Julia Nayer JNAYER 650.124.1214 16-JUL-05 \n", + "35 126 Irene Mikkilineni IMIKKILI 650.124.1224 28-SEP-06 \n", + "36 127 James Landry JLANDRY 650.124.1334 14-JAN-07 \n", + "37 128 Steven Markle SMARKLE 650.124.1434 08-MAR-08 \n", + "38 129 Laura Bissot LBISSOT 650.124.5234 20-AUG-05 \n", + "39 130 Mozhe Atkinson MATKINSO 650.124.6234 30-OCT-05 \n", + "40 131 James Marlow JAMRLOW 650.124.7234 16-FEB-05 \n", + "41 132 TJ Olson TJOLSON 650.124.8234 10-APR-07 \n", + "42 133 Jason Mallin JMALLIN 650.127.1934 14-JUN-04 \n", + "43 134 Michael Rogers MROGERS 650.127.1834 26-AUG-06 \n", + "44 135 Ki Gee KGEE 650.127.1734 12-DEC-07 \n", + "45 136 Hazel Philtanker HPHILTAN 650.127.1634 06-FEB-08 \n", + "46 137 Renske Ladwig RLADWIG 650.121.1234 14-JUL-03 \n", + "47 138 Stephen Stiles SSTILES 650.121.2034 26-OCT-05 \n", + "48 139 John Seo JSEO 650.121.2019 12-FEB-06 \n", + "49 140 Joshua Patel JPATEL 650.121.1834 06-APR-06 \n", + "\n", + " JOB_ID SALARY COMMISSION_PCT MANAGER_ID DEPARTMENT_ID \n", + "0 SH_CLERK 2600 - 124 50 \n", + "1 SH_CLERK 2600 - 124 50 \n", + "2 AD_ASST 4400 - 101 10 \n", + "3 MK_MAN 13000 - 100 20 \n", + "4 MK_REP 6000 - 201 20 \n", + "5 HR_REP 6500 - 101 40 \n", + "6 PR_REP 10000 - 101 70 \n", + "7 AC_MGR 12008 - 101 110 \n", + "8 AC_ACCOUNT 8300 - 205 110 \n", + "9 AD_PRES 24000 - - 90 \n", + "10 AD_VP 17000 - 100 90 \n", + "11 AD_VP 17000 - 100 90 \n", + "12 IT_PROG 9000 - 102 60 \n", + "13 IT_PROG 6000 - 103 60 \n", + "14 IT_PROG 4800 - 103 60 \n", + "15 IT_PROG 4800 - 103 60 \n", + "16 IT_PROG 4200 - 103 60 \n", + "17 FI_MGR 12008 - 101 100 \n", + "18 FI_ACCOUNT 9000 - 108 100 \n", + "19 FI_ACCOUNT 8200 - 108 100 \n", + "20 FI_ACCOUNT 7700 - 108 100 \n", + "21 FI_ACCOUNT 7800 - 108 100 \n", + "22 FI_ACCOUNT 6900 - 108 100 \n", + "23 PU_MAN 11000 - 100 30 \n", + "24 PU_CLERK 3100 - 114 30 \n", + "25 PU_CLERK 2900 - 114 30 \n", + "26 PU_CLERK 2800 - 114 30 \n", + "27 PU_CLERK 2600 - 114 30 \n", + "28 PU_CLERK 2500 - 114 30 \n", + "29 ST_MAN 8000 - 100 50 \n", + "30 ST_MAN 8200 - 100 50 \n", + "31 ST_MAN 7900 - 100 50 \n", + "32 ST_MAN 6500 - 100 50 \n", + "33 ST_MAN 5800 - 100 50 \n", + "34 ST_CLERK 3200 - 120 50 \n", + "35 ST_CLERK 2700 - 120 50 \n", + "36 ST_CLERK 2400 - 120 50 \n", + "37 ST_CLERK 2200 - 120 50 \n", + "38 ST_CLERK 3300 - 121 50 \n", + "39 ST_CLERK 2800 - 121 50 \n", + "40 ST_CLERK 2500 - 121 50 \n", + "41 ST_CLERK 2100 - 121 50 \n", + "42 ST_CLERK 3300 - 122 50 \n", + "43 ST_CLERK 2900 - 122 50 \n", + "44 ST_CLERK 2400 - 122 50 \n", + "45 ST_CLERK 2200 - 122 50 \n", + "46 ST_CLERK 3600 - 123 50 \n", + "47 ST_CLERK 3200 - 123 50 \n", + "48 ST_CLERK 2700 - 123 50 \n", + "49 ST_CLERK 2500 - 123 50 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
EMPLOYEE_IDFIRST_NAMELAST_NAMEEMAILPHONE_NUMBERHIRE_DATEJOB_IDSALARYCOMMISSION_PCTMANAGER_IDDEPARTMENT_ID
0198DonaldOConnellDOCONNEL650.507.983321-JUN-07SH_CLERK2600-12450
1199DouglasGrantDGRANT650.507.984413-JAN-08SH_CLERK2600-12450
2200JenniferWhalenJWHALEN515.123.444417-SEP-03AD_ASST4400-10110
3201MichaelHartsteinMHARTSTE515.123.555517-FEB-04MK_MAN13000-10020
4202PatFayPFAY603.123.666617-AUG-05MK_REP6000-20120
5203SusanMavrisSMAVRIS515.123.777707-JUN-02HR_REP6500-10140
6204HermannBaerHBAER515.123.888807-JUN-02PR_REP10000-10170
7205ShelleyHigginsSHIGGINS515.123.808007-JUN-02AC_MGR12008-101110
8206WilliamGietzWGIETZ515.123.818107-JUN-02AC_ACCOUNT8300-205110
9100StevenKingSKING515.123.456717-JUN-03AD_PRES24000--90
10101NeenaKochharNKOCHHAR515.123.456821-SEP-05AD_VP17000-10090
11102LexDe HaanLDEHAAN515.123.456913-JAN-01AD_VP17000-10090
12103AlexanderHunoldAHUNOLD590.423.456703-JAN-06IT_PROG9000-10260
13104BruceErnstBERNST590.423.456821-MAY-07IT_PROG6000-10360
14105DavidAustinDAUSTIN590.423.456925-JUN-05IT_PROG4800-10360
15106ValliPataballaVPATABAL590.423.456005-FEB-06IT_PROG4800-10360
16107DianaLorentzDLORENTZ590.423.556707-FEB-07IT_PROG4200-10360
17108NancyGreenbergNGREENBE515.124.456917-AUG-02FI_MGR12008-101100
18109DanielFavietDFAVIET515.124.416916-AUG-02FI_ACCOUNT9000-108100
19110JohnChenJCHEN515.124.426928-SEP-05FI_ACCOUNT8200-108100
20111IsmaelSciarraISCIARRA515.124.436930-SEP-05FI_ACCOUNT7700-108100
21112Jose ManuelUrmanJMURMAN515.124.446907-MAR-06FI_ACCOUNT7800-108100
22113LuisPoppLPOPP515.124.456707-DEC-07FI_ACCOUNT6900-108100
23114DenRaphaelyDRAPHEAL515.127.456107-DEC-02PU_MAN11000-10030
24115AlexanderKhooAKHOO515.127.456218-MAY-03PU_CLERK3100-11430
25116ShelliBaidaSBAIDA515.127.456324-DEC-05PU_CLERK2900-11430
26117SigalTobiasSTOBIAS515.127.456424-JUL-05PU_CLERK2800-11430
27118GuyHimuroGHIMURO515.127.456515-NOV-06PU_CLERK2600-11430
28119KarenColmenaresKCOLMENA515.127.456610-AUG-07PU_CLERK2500-11430
29120MatthewWeissMWEISS650.123.123418-JUL-04ST_MAN8000-10050
30121AdamFrippAFRIPP650.123.223410-APR-05ST_MAN8200-10050
31122PayamKauflingPKAUFLIN650.123.323401-MAY-03ST_MAN7900-10050
32123ShantaVollmanSVOLLMAN650.123.423410-OCT-05ST_MAN6500-10050
33124KevinMourgosKMOURGOS650.123.523416-NOV-07ST_MAN5800-10050
34125JuliaNayerJNAYER650.124.121416-JUL-05ST_CLERK3200-12050
35126IreneMikkilineniIMIKKILI650.124.122428-SEP-06ST_CLERK2700-12050
36127JamesLandryJLANDRY650.124.133414-JAN-07ST_CLERK2400-12050
37128StevenMarkleSMARKLE650.124.143408-MAR-08ST_CLERK2200-12050
38129LauraBissotLBISSOT650.124.523420-AUG-05ST_CLERK3300-12150
39130MozheAtkinsonMATKINSO650.124.623430-OCT-05ST_CLERK2800-12150
40131JamesMarlowJAMRLOW650.124.723416-FEB-05ST_CLERK2500-12150
41132TJOlsonTJOLSON650.124.823410-APR-07ST_CLERK2100-12150
42133JasonMallinJMALLIN650.127.193414-JUN-04ST_CLERK3300-12250
43134MichaelRogersMROGERS650.127.183426-AUG-06ST_CLERK2900-12250
44135KiGeeKGEE650.127.173412-DEC-07ST_CLERK2400-12250
45136HazelPhiltankerHPHILTAN650.127.163406-FEB-08ST_CLERK2200-12250
46137RenskeLadwigRLADWIG650.121.123414-JUL-03ST_CLERK3600-12350
47138StephenStilesSSTILES650.121.203426-OCT-05ST_CLERK3200-12350
48139JohnSeoJSEO650.121.201912-FEB-06ST_CLERK2700-12350
49140JoshuaPatelJPATEL650.121.183406-APR-06ST_CLERK2500-12350
\n", + "
" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 3 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:06.425887Z", + "start_time": "2025-11-21T12:25:06.391603Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/train.csv', sep=\"\\t\")\n", + "id": "c639775d63200903", + "outputs": [ + { + "data": { + "text/plain": [ + " enrollee_id,city,city_development_index,gender,relevent_experience,enrolled_university,education_level,major_discipline,experience,company_size,company_type,last_new_job,training_hours,target\n", + "0 8949,city_103,0.92,Male,Has relevent experienc... \n", + "1 29725,city_40,0.7759999999999999,Male,No relev... \n", + "2 11561,city_21,0.624,,No relevent experience,Fu... \n", + "3 33241,city_115,0.789,,No relevent experience,,... \n", + "4 666,city_162,0.767,Male,Has relevent experienc... \n", + "... ... \n", + "19153 7386,city_173,0.878,Male,No relevent experienc... \n", + "19154 31398,city_103,0.92,Male,Has relevent experien... \n", + "19155 24576,city_103,0.92,Male,Has relevent experien... \n", + "19156 5756,city_65,0.802,Male,Has relevent experienc... \n", + "19157 23834,city_67,0.855,,No relevent experience,no... \n", + "\n", + "[19158 rows x 1 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
enrollee_id,city,city_development_index,gender,relevent_experience,enrolled_university,education_level,major_discipline,experience,company_size,company_type,last_new_job,training_hours,target
08949,city_103,0.92,Male,Has relevent experienc...
129725,city_40,0.7759999999999999,Male,No relev...
211561,city_21,0.624,,No relevent experience,Fu...
333241,city_115,0.789,,No relevent experience,,...
4666,city_162,0.767,Male,Has relevent experienc...
......
191537386,city_173,0.878,Male,No relevent experienc...
1915431398,city_103,0.92,Male,Has relevent experien...
1915524576,city_103,0.92,Male,Has relevent experien...
191565756,city_65,0.802,Male,Has relevent experienc...
1915723834,city_67,0.855,,No relevent experience,no...
\n", + "

19158 rows × 1 columns

\n", + "
" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 4 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:06.835534Z", + "start_time": "2025-11-21T12:25:06.781326Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/train.csv', index_col=\"enrollee_id\")\n", + "id": "2c6a76d351914fca", + "outputs": [ + { + "data": { + "text/plain": [ + " city city_development_index gender relevent_experience \\\n", + "enrollee_id \n", + "8949 city_103 0.920 Male Has relevent experience \n", + "29725 city_40 0.776 Male No relevent experience \n", + "11561 city_21 0.624 NaN No relevent experience \n", + "33241 city_115 0.789 NaN No relevent experience \n", + "666 city_162 0.767 Male Has relevent experience \n", + "... ... ... ... ... \n", + "7386 city_173 0.878 Male No relevent experience \n", + "31398 city_103 0.920 Male Has relevent experience \n", + "24576 city_103 0.920 Male Has relevent experience \n", + "5756 city_65 0.802 Male Has relevent experience \n", + "23834 city_67 0.855 NaN No relevent experience \n", + "\n", + " enrolled_university education_level major_discipline experience \\\n", + "enrollee_id \n", + "8949 no_enrollment Graduate STEM >20 \n", + "29725 no_enrollment Graduate STEM 15 \n", + "11561 Full time course Graduate STEM 5 \n", + "33241 NaN Graduate Business Degree <1 \n", + "666 no_enrollment Masters STEM >20 \n", + "... ... ... ... ... \n", + "7386 no_enrollment Graduate Humanities 14 \n", + "31398 no_enrollment Graduate STEM 14 \n", + "24576 no_enrollment Graduate STEM >20 \n", + "5756 no_enrollment High School NaN <1 \n", + "23834 no_enrollment Primary School NaN 2 \n", + "\n", + " company_size company_type last_new_job training_hours target \n", + "enrollee_id \n", + "8949 NaN NaN 1 36 1.0 \n", + "29725 50-99 Pvt Ltd >4 47 0.0 \n", + "11561 NaN NaN never 83 0.0 \n", + "33241 NaN Pvt Ltd never 52 1.0 \n", + "666 50-99 Funded Startup 4 8 0.0 \n", + "... ... ... ... ... ... \n", + "7386 NaN NaN 1 42 1.0 \n", + "31398 NaN NaN 4 52 1.0 \n", + "24576 50-99 Pvt Ltd 4 44 0.0 \n", + "5756 500-999 Pvt Ltd 2 97 0.0 \n", + "23834 NaN NaN 1 127 0.0 \n", + "\n", + "[19158 rows x 13 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
citycity_development_indexgenderrelevent_experienceenrolled_universityeducation_levelmajor_disciplineexperiencecompany_sizecompany_typelast_new_jobtraining_hourstarget
enrollee_id
8949city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM>20NaNNaN1361.0
29725city_400.776MaleNo relevent experienceno_enrollmentGraduateSTEM1550-99Pvt Ltd>4470.0
11561city_210.624NaNNo relevent experienceFull time courseGraduateSTEM5NaNNaNnever830.0
33241city_1150.789NaNNo relevent experienceNaNGraduateBusiness Degree<1NaNPvt Ltdnever521.0
666city_1620.767MaleHas relevent experienceno_enrollmentMastersSTEM>2050-99Funded Startup480.0
..........................................
7386city_1730.878MaleNo relevent experienceno_enrollmentGraduateHumanities14NaNNaN1421.0
31398city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM14NaNNaN4521.0
24576city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM>2050-99Pvt Ltd4440.0
5756city_650.802MaleHas relevent experienceno_enrollmentHigh SchoolNaN<1500-999Pvt Ltd2970.0
23834city_670.855NaNNo relevent experienceno_enrollmentPrimary SchoolNaN2NaNNaN11270.0
\n", + "

19158 rows × 13 columns

\n", + "
" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 5 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:07.298917Z", + "start_time": "2025-11-21T12:25:07.285588Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/test.csv')", + "id": "88bada12698e6d50", + "outputs": [ + { + "data": { + "text/plain": [ + " Unnamed: 0 Unnamed: 1 Unnamed: 2 Unnamed: 3 Unnamed: 4 \\\n", + "0 0 enrollee_id city city_development_index gender \n", + "1 1 29725 city_40 0.776 Male \n", + "2 2 11561 city_21 0.624 NaN \n", + "3 3 33241 city_115 0.789 NaN \n", + "4 4 666 city_162 0.767 Male \n", + "\n", + " Unnamed: 5 Unnamed: 6 Unnamed: 7 \\\n", + "0 relevent_experience enrolled_university education_level \n", + "1 No relevent experience no_enrollment Graduate \n", + "2 No relevent experience Full time course Graduate \n", + "3 No relevent experience NaN Graduate \n", + "4 Has relevent experience no_enrollment Masters \n", + "\n", + " Unnamed: 8 Unnamed: 9 Unnamed: 10 Unnamed: 11 Unnamed: 12 \\\n", + "0 major_discipline experience company_size company_type last_new_job \n", + "1 STEM 15 50-99 Pvt Ltd >4 \n", + "2 STEM 5 NaN NaN never \n", + "3 Business Degree <1 NaN Pvt Ltd never \n", + "4 STEM >20 50-99 Funded Startup 4 \n", + "\n", + " Unnamed: 13 Unnamed: 14 \n", + "0 training_hours target \n", + "1 47 0 \n", + "2 83 0 \n", + "3 52 1 \n", + "4 8 0 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0Unnamed: 1Unnamed: 2Unnamed: 3Unnamed: 4Unnamed: 5Unnamed: 6Unnamed: 7Unnamed: 8Unnamed: 9Unnamed: 10Unnamed: 11Unnamed: 12Unnamed: 13Unnamed: 14
00enrollee_idcitycity_development_indexgenderrelevent_experienceenrolled_universityeducation_levelmajor_disciplineexperiencecompany_sizecompany_typelast_new_jobtraining_hourstarget
1129725city_400.776MaleNo relevent experienceno_enrollmentGraduateSTEM1550-99Pvt Ltd>4470
2211561city_210.624NaNNo relevent experienceFull time courseGraduateSTEM5NaNNaNnever830
3333241city_1150.789NaNNo relevent experienceNaNGraduateBusiness Degree<1NaNPvt Ltdnever521
44666city_1620.767MaleHas relevent experienceno_enrollmentMastersSTEM>2050-99Funded Startup480
\n", + "
" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 6 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:07.707354Z", + "start_time": "2025-11-21T12:25:07.696079Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/test.csv',header=1)", + "id": "15bad0d651156ed9", + "outputs": [ + { + "data": { + "text/plain": [ + " 0 enrollee_id city city_development_index gender \\\n", + "0 1 29725 city_40 0.776 Male \n", + "1 2 11561 city_21 0.624 NaN \n", + "2 3 33241 city_115 0.789 NaN \n", + "3 4 666 city_162 0.767 Male \n", + "\n", + " relevent_experience enrolled_university education_level \\\n", + "0 No relevent experience no_enrollment Graduate \n", + "1 No relevent experience Full time course Graduate \n", + "2 No relevent experience NaN Graduate \n", + "3 Has relevent experience no_enrollment Masters \n", + "\n", + " major_discipline experience company_size company_type last_new_job \\\n", + "0 STEM 15 50-99 Pvt Ltd >4 \n", + "1 STEM 5 NaN NaN never \n", + "2 Business Degree <1 NaN Pvt Ltd never \n", + "3 STEM >20 50-99 Funded Startup 4 \n", + "\n", + " training_hours target \n", + "0 47 0 \n", + "1 83 0 \n", + "2 52 1 \n", + "3 8 0 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0enrollee_idcitycity_development_indexgenderrelevent_experienceenrolled_universityeducation_levelmajor_disciplineexperiencecompany_sizecompany_typelast_new_jobtraining_hourstarget
0129725city_400.776MaleNo relevent experienceno_enrollmentGraduateSTEM1550-99Pvt Ltd>4470
1211561city_210.624NaNNo relevent experienceFull time courseGraduateSTEM5NaNNaNnever830
2333241city_1150.789NaNNo relevent experienceNaNGraduateBusiness Degree<1NaNPvt Ltdnever521
34666city_1620.767MaleHas relevent experienceno_enrollmentMastersSTEM>2050-99Funded Startup480
\n", + "
" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 7 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:07.900730Z", + "start_time": "2025-11-21T12:25:07.855769Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/train.csv', skiprows=[1])\n", + "id": "2ce8f35b9ded1c21", + "outputs": [ + { + "data": { + "text/plain": [ + " enrollee_id city city_development_index gender \\\n", + "0 29725 city_40 0.776 Male \n", + "1 11561 city_21 0.624 NaN \n", + "2 33241 city_115 0.789 NaN \n", + "3 666 city_162 0.767 Male \n", + "4 21651 city_176 0.764 NaN \n", + "... ... ... ... ... \n", + "19152 7386 city_173 0.878 Male \n", + "19153 31398 city_103 0.920 Male \n", + "19154 24576 city_103 0.920 Male \n", + "19155 5756 city_65 0.802 Male \n", + "19156 23834 city_67 0.855 NaN \n", + "\n", + " relevent_experience enrolled_university education_level \\\n", + "0 No relevent experience no_enrollment Graduate \n", + "1 No relevent experience Full time course Graduate \n", + "2 No relevent experience NaN Graduate \n", + "3 Has relevent experience no_enrollment Masters \n", + "4 Has relevent experience Part time course Graduate \n", + "... ... ... ... \n", + "19152 No relevent experience no_enrollment Graduate \n", + "19153 Has relevent experience no_enrollment Graduate \n", + "19154 Has relevent experience no_enrollment Graduate \n", + "19155 Has relevent experience no_enrollment High School \n", + "19156 No relevent experience no_enrollment Primary School \n", + "\n", + " major_discipline experience company_size company_type last_new_job \\\n", + "0 STEM 15 50-99 Pvt Ltd >4 \n", + "1 STEM 5 NaN NaN never \n", + "2 Business Degree <1 NaN Pvt Ltd never \n", + "3 STEM >20 50-99 Funded Startup 4 \n", + "4 STEM 11 NaN NaN 1 \n", + "... ... ... ... ... ... \n", + "19152 Humanities 14 NaN NaN 1 \n", + "19153 STEM 14 NaN NaN 4 \n", + "19154 STEM >20 50-99 Pvt Ltd 4 \n", + "19155 NaN <1 500-999 Pvt Ltd 2 \n", + "19156 NaN 2 NaN NaN 1 \n", + "\n", + " training_hours target \n", + "0 47 0.0 \n", + "1 83 0.0 \n", + "2 52 1.0 \n", + "3 8 0.0 \n", + "4 24 1.0 \n", + "... ... ... \n", + "19152 42 1.0 \n", + "19153 52 1.0 \n", + "19154 44 0.0 \n", + "19155 97 0.0 \n", + "19156 127 0.0 \n", + "\n", + "[19157 rows x 14 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
enrollee_idcitycity_development_indexgenderrelevent_experienceenrolled_universityeducation_levelmajor_disciplineexperiencecompany_sizecompany_typelast_new_jobtraining_hourstarget
029725city_400.776MaleNo relevent experienceno_enrollmentGraduateSTEM1550-99Pvt Ltd>4470.0
111561city_210.624NaNNo relevent experienceFull time courseGraduateSTEM5NaNNaNnever830.0
233241city_1150.789NaNNo relevent experienceNaNGraduateBusiness Degree<1NaNPvt Ltdnever521.0
3666city_1620.767MaleHas relevent experienceno_enrollmentMastersSTEM>2050-99Funded Startup480.0
421651city_1760.764NaNHas relevent experiencePart time courseGraduateSTEM11NaNNaN1241.0
.............................................
191527386city_1730.878MaleNo relevent experienceno_enrollmentGraduateHumanities14NaNNaN1421.0
1915331398city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM14NaNNaN4521.0
1915424576city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM>2050-99Pvt Ltd4440.0
191555756city_650.802MaleHas relevent experienceno_enrollmentHigh SchoolNaN<1500-999Pvt Ltd2970.0
1915623834city_670.855NaNNo relevent experienceno_enrollmentPrimary SchoolNaN2NaNNaN11270.0
\n", + "

19157 rows × 14 columns

\n", + "
" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 8 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:08.248803Z", + "start_time": "2025-11-21T12:25:08.230790Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/train.csv', nrows=10)\n", + "id": "7a78107e98c38fd3", + "outputs": [ + { + "data": { + "text/plain": [ + " enrollee_id city city_development_index gender \\\n", + "0 8949 city_103 0.920 Male \n", + "1 29725 city_40 0.776 Male \n", + "2 11561 city_21 0.624 NaN \n", + "3 33241 city_115 0.789 NaN \n", + "4 666 city_162 0.767 Male \n", + "5 21651 city_176 0.764 NaN \n", + "6 28806 city_160 0.920 Male \n", + "7 402 city_46 0.762 Male \n", + "8 27107 city_103 0.920 Male \n", + "9 699 city_103 0.920 NaN \n", + "\n", + " relevent_experience enrolled_university education_level \\\n", + "0 Has relevent experience no_enrollment Graduate \n", + "1 No relevent experience no_enrollment Graduate \n", + "2 No relevent experience Full time course Graduate \n", + "3 No relevent experience NaN Graduate \n", + "4 Has relevent experience no_enrollment Masters \n", + "5 Has relevent experience Part time course Graduate \n", + "6 Has relevent experience no_enrollment High School \n", + "7 Has relevent experience no_enrollment Graduate \n", + "8 Has relevent experience no_enrollment Graduate \n", + "9 Has relevent experience no_enrollment Graduate \n", + "\n", + " major_discipline experience company_size company_type last_new_job \\\n", + "0 STEM >20 NaN NaN 1 \n", + "1 STEM 15 50-99 Pvt Ltd >4 \n", + "2 STEM 5 NaN NaN never \n", + "3 Business Degree <1 NaN Pvt Ltd never \n", + "4 STEM >20 50-99 Funded Startup 4 \n", + "5 STEM 11 NaN NaN 1 \n", + "6 NaN 5 50-99 Funded Startup 1 \n", + "7 STEM 13 <10 Pvt Ltd >4 \n", + "8 STEM 7 50-99 Pvt Ltd 1 \n", + "9 STEM 17 10000+ Pvt Ltd >4 \n", + "\n", + " training_hours target \n", + "0 36 1.0 \n", + "1 47 0.0 \n", + "2 83 0.0 \n", + "3 52 1.0 \n", + "4 8 0.0 \n", + "5 24 1.0 \n", + "6 24 0.0 \n", + "7 18 1.0 \n", + "8 46 1.0 \n", + "9 123 0.0 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
enrollee_idcitycity_development_indexgenderrelevent_experienceenrolled_universityeducation_levelmajor_disciplineexperiencecompany_sizecompany_typelast_new_jobtraining_hourstarget
08949city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM>20NaNNaN1361.0
129725city_400.776MaleNo relevent experienceno_enrollmentGraduateSTEM1550-99Pvt Ltd>4470.0
211561city_210.624NaNNo relevent experienceFull time courseGraduateSTEM5NaNNaNnever830.0
333241city_1150.789NaNNo relevent experienceNaNGraduateBusiness Degree<1NaNPvt Ltdnever521.0
4666city_1620.767MaleHas relevent experienceno_enrollmentMastersSTEM>2050-99Funded Startup480.0
521651city_1760.764NaNHas relevent experiencePart time courseGraduateSTEM11NaNNaN1241.0
628806city_1600.920MaleHas relevent experienceno_enrollmentHigh SchoolNaN550-99Funded Startup1240.0
7402city_460.762MaleHas relevent experienceno_enrollmentGraduateSTEM13<10Pvt Ltd>4181.0
827107city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM750-99Pvt Ltd1461.0
9699city_1030.920NaNHas relevent experienceno_enrollmentGraduateSTEM1710000+Pvt Ltd>41230.0
\n", + "
" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 9 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:09.059075Z", + "start_time": "2025-11-21T12:25:08.426974Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/zomato.csv',)", + "id": "1a58e965e669165", + "outputs": [ + { + "ename": "UnicodeDecodeError", + "evalue": "'utf-8' codec can't decode byte 0xed in position 7044: invalid continuation byte", + "output_type": "error", + "traceback": [ + "\u001B[31m---------------------------------------------------------------------------\u001B[39m", + "\u001B[31mUnicodeDecodeError\u001B[39m Traceback (most recent call last)", + "\u001B[36mCell\u001B[39m\u001B[36m \u001B[39m\u001B[32mIn[10]\u001B[39m\u001B[32m, line 1\u001B[39m\n\u001B[32m----> \u001B[39m\u001B[32m1\u001B[39m \u001B[43mpd\u001B[49m\u001B[43m.\u001B[49m\u001B[43mread_csv\u001B[49m\u001B[43m(\u001B[49m\u001B[33;43m'\u001B[39;49m\u001B[33;43mCS-1/zomato.csv\u001B[39;49m\u001B[33;43m'\u001B[39;49m\u001B[43m,\u001B[49m\u001B[43m)\u001B[49m\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\io\\parsers\\readers.py:1026\u001B[39m, in \u001B[36mread_csv\u001B[39m\u001B[34m(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, dtype, engine, converters, true_values, false_values, skipinitialspace, skiprows, skipfooter, nrows, na_values, keep_default_na, na_filter, verbose, skip_blank_lines, parse_dates, infer_datetime_format, keep_date_col, date_parser, date_format, dayfirst, cache_dates, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, doublequote, escapechar, comment, encoding, encoding_errors, dialect, on_bad_lines, delim_whitespace, low_memory, memory_map, float_precision, storage_options, dtype_backend)\u001B[39m\n\u001B[32m 1013\u001B[39m kwds_defaults = _refine_defaults_read(\n\u001B[32m 1014\u001B[39m dialect,\n\u001B[32m 1015\u001B[39m delimiter,\n\u001B[32m (...)\u001B[39m\u001B[32m 1022\u001B[39m dtype_backend=dtype_backend,\n\u001B[32m 1023\u001B[39m )\n\u001B[32m 1024\u001B[39m kwds.update(kwds_defaults)\n\u001B[32m-> \u001B[39m\u001B[32m1026\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43m_read\u001B[49m\u001B[43m(\u001B[49m\u001B[43mfilepath_or_buffer\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43mkwds\u001B[49m\u001B[43m)\u001B[49m\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\io\\parsers\\readers.py:620\u001B[39m, in \u001B[36m_read\u001B[39m\u001B[34m(filepath_or_buffer, kwds)\u001B[39m\n\u001B[32m 617\u001B[39m _validate_names(kwds.get(\u001B[33m\"\u001B[39m\u001B[33mnames\u001B[39m\u001B[33m\"\u001B[39m, \u001B[38;5;28;01mNone\u001B[39;00m))\n\u001B[32m 619\u001B[39m \u001B[38;5;66;03m# Create the parser.\u001B[39;00m\n\u001B[32m--> \u001B[39m\u001B[32m620\u001B[39m parser = \u001B[43mTextFileReader\u001B[49m\u001B[43m(\u001B[49m\u001B[43mfilepath_or_buffer\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43m*\u001B[49m\u001B[43m*\u001B[49m\u001B[43mkwds\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 622\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m chunksize \u001B[38;5;129;01mor\u001B[39;00m iterator:\n\u001B[32m 623\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m parser\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\io\\parsers\\readers.py:1620\u001B[39m, in \u001B[36mTextFileReader.__init__\u001B[39m\u001B[34m(self, f, engine, **kwds)\u001B[39m\n\u001B[32m 1617\u001B[39m \u001B[38;5;28mself\u001B[39m.options[\u001B[33m\"\u001B[39m\u001B[33mhas_index_names\u001B[39m\u001B[33m\"\u001B[39m] = kwds[\u001B[33m\"\u001B[39m\u001B[33mhas_index_names\u001B[39m\u001B[33m\"\u001B[39m]\n\u001B[32m 1619\u001B[39m \u001B[38;5;28mself\u001B[39m.handles: IOHandles | \u001B[38;5;28;01mNone\u001B[39;00m = \u001B[38;5;28;01mNone\u001B[39;00m\n\u001B[32m-> \u001B[39m\u001B[32m1620\u001B[39m \u001B[38;5;28mself\u001B[39m._engine = \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43m_make_engine\u001B[49m\u001B[43m(\u001B[49m\u001B[43mf\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43mengine\u001B[49m\u001B[43m)\u001B[49m\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\io\\parsers\\readers.py:1898\u001B[39m, in \u001B[36mTextFileReader._make_engine\u001B[39m\u001B[34m(self, f, engine)\u001B[39m\n\u001B[32m 1895\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mValueError\u001B[39;00m(msg)\n\u001B[32m 1897\u001B[39m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[32m-> \u001B[39m\u001B[32m1898\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[43mmapping\u001B[49m\u001B[43m[\u001B[49m\u001B[43mengine\u001B[49m\u001B[43m]\u001B[49m\u001B[43m(\u001B[49m\u001B[43mf\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43m*\u001B[49m\u001B[43m*\u001B[49m\u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43moptions\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 1899\u001B[39m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mException\u001B[39;00m:\n\u001B[32m 1900\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28mself\u001B[39m.handles \u001B[38;5;129;01mis\u001B[39;00m \u001B[38;5;129;01mnot\u001B[39;00m \u001B[38;5;28;01mNone\u001B[39;00m:\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\io\\parsers\\c_parser_wrapper.py:93\u001B[39m, in \u001B[36mCParserWrapper.__init__\u001B[39m\u001B[34m(self, src, **kwds)\u001B[39m\n\u001B[32m 90\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m kwds[\u001B[33m\"\u001B[39m\u001B[33mdtype_backend\u001B[39m\u001B[33m\"\u001B[39m] == \u001B[33m\"\u001B[39m\u001B[33mpyarrow\u001B[39m\u001B[33m\"\u001B[39m:\n\u001B[32m 91\u001B[39m \u001B[38;5;66;03m# Fail here loudly instead of in cython after reading\u001B[39;00m\n\u001B[32m 92\u001B[39m import_optional_dependency(\u001B[33m\"\u001B[39m\u001B[33mpyarrow\u001B[39m\u001B[33m\"\u001B[39m)\n\u001B[32m---> \u001B[39m\u001B[32m93\u001B[39m \u001B[38;5;28mself\u001B[39m._reader = \u001B[43mparsers\u001B[49m\u001B[43m.\u001B[49m\u001B[43mTextReader\u001B[49m\u001B[43m(\u001B[49m\u001B[43msrc\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[43m*\u001B[49m\u001B[43m*\u001B[49m\u001B[43mkwds\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 95\u001B[39m \u001B[38;5;28mself\u001B[39m.unnamed_cols = \u001B[38;5;28mself\u001B[39m._reader.unnamed_cols\n\u001B[32m 97\u001B[39m \u001B[38;5;66;03m# error: Cannot determine type of 'names'\u001B[39;00m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/parsers.pyx:574\u001B[39m, in \u001B[36mpandas._libs.parsers.TextReader.__cinit__\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/parsers.pyx:663\u001B[39m, in \u001B[36mpandas._libs.parsers.TextReader._get_header\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/parsers.pyx:874\u001B[39m, in \u001B[36mpandas._libs.parsers.TextReader._tokenize_rows\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/parsers.pyx:891\u001B[39m, in \u001B[36mpandas._libs.parsers.TextReader._check_tokenize_status\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/parsers.pyx:2053\u001B[39m, in \u001B[36mpandas._libs.parsers.raise_parser_error\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32m:325\u001B[39m, in \u001B[36mdecode\u001B[39m\u001B[34m(self, input, final)\u001B[39m\n", + "\u001B[31mUnicodeDecodeError\u001B[39m: 'utf-8' codec can't decode byte 0xed in position 7044: invalid continuation byte" + ] + } + ], + "execution_count": 10 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:09.065037600Z", + "start_time": "2025-11-20T13:41:45.430927Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/zomato.csv',encoding='latin-1')", + "id": "2c42110ac0384db3", + "outputs": [ + { + "data": { + "text/plain": [ + " Restaurant ID Restaurant Name Country Code City \\\n", + "0 6317637 Le Petit Souffle 162 Makati City \n", + "1 6304287 Izakaya Kikufuji 162 Makati City \n", + "2 6300002 Heat - Edsa Shangri-La 162 Mandaluyong City \n", + "3 6318506 Ooma 162 Mandaluyong City \n", + "4 6314302 Sambo Kojin 162 Mandaluyong City \n", + "... ... ... ... ... \n", + "9546 5915730 NamlÛ± Gurme 208 ÛÁstanbul \n", + "9547 5908749 Ceviz AÛôacÛ± 208 ÛÁstanbul \n", + "9548 5915807 Huqqa 208 ÛÁstanbul \n", + "9549 5916112 Aôôk Kahve 208 ÛÁstanbul \n", + "9550 5927402 Walter's Coffee Roastery 208 ÛÁstanbul \n", + "\n", + " Address \\\n", + "0 Third Floor, Century City Mall, Kalayaan Avenu... \n", + "1 Little Tokyo, 2277 Chino Roces Avenue, Legaspi... \n", + "2 Edsa Shangri-La, 1 Garden Way, Ortigas, Mandal... \n", + "3 Third Floor, Mega Fashion Hall, SM Megamall, O... \n", + "4 Third Floor, Mega Atrium, SM Megamall, Ortigas... \n", + "... ... \n", + "9546 Kemankeô Karamustafa Paôa Mahallesi, RÛ±htÛ±... \n", + "9547 Koôuyolu Mahallesi, Muhittin íìstí_ndaÛô Cadd... \n", + "9548 Kuruí_eôme Mahallesi, Muallim Naci Caddesi, N... \n", + "9549 Kuruí_eôme Mahallesi, Muallim Naci Caddesi, N... \n", + "9550 CafeaÛôa Mahallesi, BademaltÛ± Sokak, No 21/B,... \n", + "\n", + " Locality \\\n", + "0 Century City Mall, Poblacion, Makati City \n", + "1 Little Tokyo, Legaspi Village, Makati City \n", + "2 Edsa Shangri-La, Ortigas, Mandaluyong City \n", + "3 SM Megamall, Ortigas, Mandaluyong City \n", + "4 SM Megamall, Ortigas, Mandaluyong City \n", + "... ... \n", + "9546 Karakí_y \n", + "9547 Koôuyolu \n", + "9548 Kuruí_eôme \n", + "9549 Kuruí_eôme \n", + "9550 Moda \n", + "\n", + " Locality Verbose Longitude \\\n", + "0 Century City Mall, Poblacion, Makati City, Mak... 121.027535 \n", + "1 Little Tokyo, Legaspi Village, Makati City, Ma... 121.014101 \n", + "2 Edsa Shangri-La, Ortigas, Mandaluyong City, Ma... 121.056831 \n", + "3 SM Megamall, Ortigas, Mandaluyong City, Mandal... 121.056475 \n", + "4 SM Megamall, Ortigas, Mandaluyong City, Mandal... 121.057508 \n", + "... ... ... \n", + "9546 Karakí_y, ÛÁstanbul 28.977392 \n", + "9547 Koôuyolu, ÛÁstanbul 29.041297 \n", + "9548 Kuruí_eôme, ÛÁstanbul 29.034640 \n", + "9549 Kuruí_eôme, ÛÁstanbul 29.036019 \n", + "9550 Moda, ÛÁstanbul 29.026016 \n", + "\n", + " Latitude Cuisines ... Currency \\\n", + "0 14.565443 French, Japanese, Desserts ... Botswana Pula(P) \n", + "1 14.553708 Japanese ... Botswana Pula(P) \n", + "2 14.581404 Seafood, Asian, Filipino, Indian ... Botswana Pula(P) \n", + "3 14.585318 Japanese, Sushi ... Botswana Pula(P) \n", + "4 14.584450 Japanese, Korean ... Botswana Pula(P) \n", + "... ... ... ... ... \n", + "9546 41.022793 Turkish ... Turkish Lira(TL) \n", + "9547 41.009847 World Cuisine, Patisserie, Cafe ... Turkish Lira(TL) \n", + "9548 41.055817 Italian, World Cuisine ... Turkish Lira(TL) \n", + "9549 41.057979 Restaurant Cafe ... Turkish Lira(TL) \n", + "9550 40.984776 Cafe ... Turkish Lira(TL) \n", + "\n", + " Has Table booking Has Online delivery Is delivering now \\\n", + "0 Yes No No \n", + "1 Yes No No \n", + "2 Yes No No \n", + "3 No No No \n", + "4 Yes No No \n", + "... ... ... ... \n", + "9546 No No No \n", + "9547 No No No \n", + "9548 No No No \n", + "9549 No No No \n", + "9550 No No No \n", + "\n", + " Switch to order menu Price range Aggregate rating Rating color \\\n", + "0 No 3 4.8 Dark Green \n", + "1 No 3 4.5 Dark Green \n", + "2 No 4 4.4 Green \n", + "3 No 4 4.9 Dark Green \n", + "4 No 4 4.8 Dark Green \n", + "... ... ... ... ... \n", + "9546 No 3 4.1 Green \n", + "9547 No 3 4.2 Green \n", + "9548 No 4 3.7 Yellow \n", + "9549 No 4 4.0 Green \n", + "9550 No 2 4.0 Green \n", + "\n", + " Rating text Votes \n", + "0 Excellent 314 \n", + "1 Excellent 591 \n", + "2 Very Good 270 \n", + "3 Excellent 365 \n", + "4 Excellent 229 \n", + "... ... ... \n", + "9546 Very Good 788 \n", + "9547 Very Good 1034 \n", + "9548 Good 661 \n", + "9549 Very Good 901 \n", + "9550 Very Good 591 \n", + "\n", + "[9551 rows x 21 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Restaurant IDRestaurant NameCountry CodeCityAddressLocalityLocality VerboseLongitudeLatitudeCuisines...CurrencyHas Table bookingHas Online deliveryIs delivering nowSwitch to order menuPrice rangeAggregate ratingRating colorRating textVotes
06317637Le Petit Souffle162Makati CityThird Floor, Century City Mall, Kalayaan Avenu...Century City Mall, Poblacion, Makati CityCentury City Mall, Poblacion, Makati City, Mak...121.02753514.565443French, Japanese, Desserts...Botswana Pula(P)YesNoNoNo34.8Dark GreenExcellent314
16304287Izakaya Kikufuji162Makati CityLittle Tokyo, 2277 Chino Roces Avenue, Legaspi...Little Tokyo, Legaspi Village, Makati CityLittle Tokyo, Legaspi Village, Makati City, Ma...121.01410114.553708Japanese...Botswana Pula(P)YesNoNoNo34.5Dark GreenExcellent591
26300002Heat - Edsa Shangri-La162Mandaluyong CityEdsa Shangri-La, 1 Garden Way, Ortigas, Mandal...Edsa Shangri-La, Ortigas, Mandaluyong CityEdsa Shangri-La, Ortigas, Mandaluyong City, Ma...121.05683114.581404Seafood, Asian, Filipino, Indian...Botswana Pula(P)YesNoNoNo44.4GreenVery Good270
36318506Ooma162Mandaluyong CityThird Floor, Mega Fashion Hall, SM Megamall, O...SM Megamall, Ortigas, Mandaluyong CitySM Megamall, Ortigas, Mandaluyong City, Mandal...121.05647514.585318Japanese, Sushi...Botswana Pula(P)NoNoNoNo44.9Dark GreenExcellent365
46314302Sambo Kojin162Mandaluyong CityThird Floor, Mega Atrium, SM Megamall, Ortigas...SM Megamall, Ortigas, Mandaluyong CitySM Megamall, Ortigas, Mandaluyong City, Mandal...121.05750814.584450Japanese, Korean...Botswana Pula(P)YesNoNoNo44.8Dark GreenExcellent229
..................................................................
95465915730NamlÛ± Gurme208ÛÁstanbulKemankeô Karamustafa Paôa Mahallesi, RÛ±htÛ±...Karakí_yKarakí_y, ÛÁstanbul28.97739241.022793Turkish...Turkish Lira(TL)NoNoNoNo34.1GreenVery Good788
95475908749Ceviz AÛôacÛ±208ÛÁstanbulKoôuyolu Mahallesi, Muhittin íìstí_ndaÛô Cadd...KoôuyoluKoôuyolu, ÛÁstanbul29.04129741.009847World Cuisine, Patisserie, Cafe...Turkish Lira(TL)NoNoNoNo34.2GreenVery Good1034
95485915807Huqqa208ÛÁstanbulKuruí_eôme Mahallesi, Muallim Naci Caddesi, N...Kuruí_eômeKuruí_eôme, ÛÁstanbul29.03464041.055817Italian, World Cuisine...Turkish Lira(TL)NoNoNoNo43.7YellowGood661
95495916112Aôôk Kahve208ÛÁstanbulKuruí_eôme Mahallesi, Muallim Naci Caddesi, N...Kuruí_eômeKuruí_eôme, ÛÁstanbul29.03601941.057979Restaurant Cafe...Turkish Lira(TL)NoNoNoNo44.0GreenVery Good901
95505927402Walter's Coffee Roastery208ÛÁstanbulCafeaÛôa Mahallesi, BademaltÛ± Sokak, No 21/B,...ModaModa, ÛÁstanbul29.02601640.984776Cafe...Turkish Lira(TL)NoNoNoNo24.0GreenVery Good591
\n", + "

9551 rows × 21 columns

\n", + "
" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 19 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:09.069133100Z", + "start_time": "2025-11-20T13:38:50.262182Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/book.csv')", + "id": "385f8ac641221edc", + "outputs": [ + { + "data": { + "text/plain": [ + " title author isbn\n", + "The Mom Test Rob Fitzpatrick 9781492180746 Bangladesh\n", + "The Innovator's Dilemma Clayton Christensen 9781633691780 NaN\n", + "The Lean Startup Eric Ries 9780307887894 Bangladesh\n", + "Zero to One Peter Thiel 9780804139298 NaN" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titleauthorisbn
The Mom TestRob Fitzpatrick9781492180746Bangladesh
The Innovator's DilemmaClayton Christensen9781633691780NaN
The Lean StartupEric Ries9780307887894Bangladesh
Zero to OnePeter Thiel9780804139298NaN
\n", + "
" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 17 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:09.070134500Z", + "start_time": "2025-11-20T13:42:33.086919Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/book.csv', on_bad_lines='warn')", + "id": "df0fbd97dec89713", + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\evan\\AppData\\Local\\Temp\\ipykernel_17816\\667808602.py:1: ParserWarning: Skipping line 3: expected 3 fields, saw 4\n", + "Skipping line 5: expected 3 fields, saw 4\n", + "\n", + " pd.read_csv('CS-1/book.csv', on_bad_lines='warn')\n" + ] + }, + { + "data": { + "text/plain": [ + " title author isbn\n", + "0 Deep Work Cal Newport 9781455586691\n", + "1 The Innovator's Dilemma Clayton Christensen 9781633691780\n", + "2 Zero to One Peter Thiel 9780804139298" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titleauthorisbn
0Deep WorkCal Newport9781455586691
1The Innovator's DilemmaClayton Christensen9781633691780
2Zero to OnePeter Thiel9780804139298
\n", + "
" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 20 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:09.072135900Z", + "start_time": "2025-11-20T14:48:44.968326Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/book.csv', on_bad_lines='skip')\n", + "id": "d2dfc20d36040ec6", + "outputs": [ + { + "data": { + "text/plain": [ + " title author isbn\n", + "0 Deep Work Cal Newport 9781455586691\n", + "1 The Innovator's Dilemma Clayton Christensen 9781633691780\n", + "2 Zero to One Peter Thiel 9780804139298" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titleauthorisbn
0Deep WorkCal Newport9781455586691
1The Innovator's DilemmaClayton Christensen9781633691780
2Zero to OnePeter Thiel9780804139298
\n", + "
" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 21 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:09.074134900Z", + "start_time": "2025-11-20T14:49:59.705372Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/cricket_matches.csv',parse_dates=['date']).info()\n", + "id": "c8162acd88e27a9d", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 816 entries, 0 to 815\n", + "Data columns (total 17 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 id 816 non-null int64 \n", + " 1 city 803 non-null object \n", + " 2 date 816 non-null datetime64[ns]\n", + " 3 player_of_match 812 non-null object \n", + " 4 venue 816 non-null object \n", + " 5 neutral_venue 816 non-null int64 \n", + " 6 team1 816 non-null object \n", + " 7 team2 816 non-null object \n", + " 8 toss_winner 816 non-null object \n", + " 9 toss_decision 816 non-null object \n", + " 10 winner 812 non-null object \n", + " 11 result 812 non-null object \n", + " 12 result_margin 799 non-null float64 \n", + " 13 eliminator 812 non-null object \n", + " 14 method 19 non-null object \n", + " 15 umpire1 816 non-null object \n", + " 16 umpire2 816 non-null object \n", + "dtypes: datetime64[ns](1), float64(1), int64(2), object(13)\n", + "memory usage: 108.5+ KB\n" + ] + } + ], + "execution_count": 23 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:09.075134700Z", + "start_time": "2025-11-20T15:06:08.143674Z" + } + }, + "cell_type": "code", + "source": [ + "def rename(name):\n", + " if name == 'Royal Challengers Bangalore':\n", + " return 'RCB'\n", + " else :\n", + " return name\n", + "\n", + "rename(\"Royal Challengers Bangalore\")" + ], + "id": "ce930042adb9d23e", + "outputs": [ + { + "data": { + "text/plain": [ + "'RCB'" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 24 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:09.075646300Z", + "start_time": "2025-11-20T15:08:56.690956Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/cricket_matches.csv',converters={'team1':rename})\n", + "id": "c88124e1e2a51043", + "outputs": [ + { + "data": { + "text/plain": [ + " id city date player_of_match \\\n", + "0 335982 Bangalore 2008-04-18 BB McCullum \n", + "1 335983 Chandigarh 2008-04-19 MEK Hussey \n", + "2 335984 Delhi 2008-04-19 MF Maharoof \n", + "3 335985 Mumbai 2008-04-20 MV Boucher \n", + "4 335986 Kolkata 2008-04-20 DJ Hussey \n", + ".. ... ... ... ... \n", + "811 1216547 Dubai 2020-09-28 AB de Villiers \n", + "812 1237177 Dubai 2020-11-05 JJ Bumrah \n", + "813 1237178 Abu Dhabi 2020-11-06 KS Williamson \n", + "814 1237180 Abu Dhabi 2020-11-08 MP Stoinis \n", + "815 1237181 Dubai 2020-11-10 TA Boult \n", + "\n", + " venue neutral_venue \\\n", + "0 M Chinnaswamy Stadium 0 \n", + "1 Punjab Cricket Association Stadium, Mohali 0 \n", + "2 Feroz Shah Kotla 0 \n", + "3 Wankhede Stadium 0 \n", + "4 Eden Gardens 0 \n", + ".. ... ... \n", + "811 Dubai International Cricket Stadium 0 \n", + "812 Dubai International Cricket Stadium 0 \n", + "813 Sheikh Zayed Stadium 0 \n", + "814 Sheikh Zayed Stadium 0 \n", + "815 Dubai International Cricket Stadium 0 \n", + "\n", + " team1 team2 \\\n", + "0 RCB Kolkata Knight Riders \n", + "1 Kings XI Punjab Chennai Super Kings \n", + "2 Delhi Daredevils Rajasthan Royals \n", + "3 Mumbai Indians Royal Challengers Bangalore \n", + "4 Kolkata Knight Riders Deccan Chargers \n", + ".. ... ... \n", + "811 RCB Mumbai Indians \n", + "812 Mumbai Indians Delhi Capitals \n", + "813 RCB Sunrisers Hyderabad \n", + "814 Delhi Capitals Sunrisers Hyderabad \n", + "815 Delhi Capitals Mumbai Indians \n", + "\n", + " toss_winner toss_decision winner \\\n", + "0 Royal Challengers Bangalore field Kolkata Knight Riders \n", + "1 Chennai Super Kings bat Chennai Super Kings \n", + "2 Rajasthan Royals bat Delhi Daredevils \n", + "3 Mumbai Indians bat Royal Challengers Bangalore \n", + "4 Deccan Chargers bat Kolkata Knight Riders \n", + ".. ... ... ... \n", + "811 Mumbai Indians field Royal Challengers Bangalore \n", + "812 Delhi Capitals field Mumbai Indians \n", + "813 Sunrisers Hyderabad field Sunrisers Hyderabad \n", + "814 Delhi Capitals bat Delhi Capitals \n", + "815 Delhi Capitals bat Mumbai Indians \n", + "\n", + " result result_margin eliminator method umpire1 umpire2 \n", + "0 runs 140.0 N NaN Asad Rauf RE Koertzen \n", + "1 runs 33.0 N NaN MR Benson SL Shastri \n", + "2 wickets 9.0 N NaN Aleem Dar GA Pratapkumar \n", + "3 wickets 5.0 N NaN SJ Davis DJ Harper \n", + "4 wickets 5.0 N NaN BF Bowden K Hariharan \n", + ".. ... ... ... ... ... ... \n", + "811 tie NaN Y NaN Nitin Menon PR Reiffel \n", + "812 runs 57.0 N NaN CB Gaffaney Nitin Menon \n", + "813 wickets 6.0 N NaN PR Reiffel S Ravi \n", + "814 runs 17.0 N NaN PR Reiffel S Ravi \n", + "815 wickets 5.0 N NaN CB Gaffaney Nitin Menon \n", + "\n", + "[816 rows x 17 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idcitydateplayer_of_matchvenueneutral_venueteam1team2toss_winnertoss_decisionwinnerresultresult_margineliminatormethodumpire1umpire2
0335982Bangalore2008-04-18BB McCullumM Chinnaswamy Stadium0RCBKolkata Knight RidersRoyal Challengers BangalorefieldKolkata Knight Ridersruns140.0NNaNAsad RaufRE Koertzen
1335983Chandigarh2008-04-19MEK HusseyPunjab Cricket Association Stadium, Mohali0Kings XI PunjabChennai Super KingsChennai Super KingsbatChennai Super Kingsruns33.0NNaNMR BensonSL Shastri
2335984Delhi2008-04-19MF MaharoofFeroz Shah Kotla0Delhi DaredevilsRajasthan RoyalsRajasthan RoyalsbatDelhi Daredevilswickets9.0NNaNAleem DarGA Pratapkumar
3335985Mumbai2008-04-20MV BoucherWankhede Stadium0Mumbai IndiansRoyal Challengers BangaloreMumbai IndiansbatRoyal Challengers Bangalorewickets5.0NNaNSJ DavisDJ Harper
4335986Kolkata2008-04-20DJ HusseyEden Gardens0Kolkata Knight RidersDeccan ChargersDeccan ChargersbatKolkata Knight Riderswickets5.0NNaNBF BowdenK Hariharan
......................................................
8111216547Dubai2020-09-28AB de VilliersDubai International Cricket Stadium0RCBMumbai IndiansMumbai IndiansfieldRoyal Challengers BangaloretieNaNYNaNNitin MenonPR Reiffel
8121237177Dubai2020-11-05JJ BumrahDubai International Cricket Stadium0Mumbai IndiansDelhi CapitalsDelhi CapitalsfieldMumbai Indiansruns57.0NNaNCB GaffaneyNitin Menon
8131237178Abu Dhabi2020-11-06KS WilliamsonSheikh Zayed Stadium0RCBSunrisers HyderabadSunrisers HyderabadfieldSunrisers Hyderabadwickets6.0NNaNPR ReiffelS Ravi
8141237180Abu Dhabi2020-11-08MP StoinisSheikh Zayed Stadium0Delhi CapitalsSunrisers HyderabadDelhi CapitalsbatDelhi Capitalsruns17.0NNaNPR ReiffelS Ravi
8151237181Dubai2020-11-10TA BoultDubai International Cricket Stadium0Delhi CapitalsMumbai IndiansDelhi CapitalsbatMumbai Indianswickets5.0NNaNCB GaffaneyNitin Menon
\n", + "

816 rows × 17 columns

\n", + "
" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 26 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T12:25:09.077654600Z", + "start_time": "2025-11-20T15:26:23.088556Z" + } + }, + "cell_type": "code", + "source": "pd.read_csv('CS-1/cricket_matches.csv',na_values=['Dubai'])\n", + "id": "4af4da6cc069cb43", + "outputs": [ + { + "data": { + "text/plain": [ + " id city date player_of_match \\\n", + "0 335982 Bangalore 2008-04-18 BB McCullum \n", + "1 335983 Chandigarh 2008-04-19 MEK Hussey \n", + "2 335984 Delhi 2008-04-19 MF Maharoof \n", + "3 335985 Mumbai 2008-04-20 MV Boucher \n", + "4 335986 Kolkata 2008-04-20 DJ Hussey \n", + ".. ... ... ... ... \n", + "811 1216547 NaN 2020-09-28 AB de Villiers \n", + "812 1237177 NaN 2020-11-05 JJ Bumrah \n", + "813 1237178 Abu Dhabi 2020-11-06 KS Williamson \n", + "814 1237180 Abu Dhabi 2020-11-08 MP Stoinis \n", + "815 1237181 NaN 2020-11-10 TA Boult \n", + "\n", + " venue neutral_venue \\\n", + "0 M Chinnaswamy Stadium 0 \n", + "1 Punjab Cricket Association Stadium, Mohali 0 \n", + "2 Feroz Shah Kotla 0 \n", + "3 Wankhede Stadium 0 \n", + "4 Eden Gardens 0 \n", + ".. ... ... \n", + "811 Dubai International Cricket Stadium 0 \n", + "812 Dubai International Cricket Stadium 0 \n", + "813 Sheikh Zayed Stadium 0 \n", + "814 Sheikh Zayed Stadium 0 \n", + "815 Dubai International Cricket Stadium 0 \n", + "\n", + " team1 team2 \\\n", + "0 Royal Challengers Bangalore Kolkata Knight Riders \n", + "1 Kings XI Punjab Chennai Super Kings \n", + "2 Delhi Daredevils Rajasthan Royals \n", + "3 Mumbai Indians Royal Challengers Bangalore \n", + "4 Kolkata Knight Riders Deccan Chargers \n", + ".. ... ... \n", + "811 Royal Challengers Bangalore Mumbai Indians \n", + "812 Mumbai Indians Delhi Capitals \n", + "813 Royal Challengers Bangalore Sunrisers Hyderabad \n", + "814 Delhi Capitals Sunrisers Hyderabad \n", + "815 Delhi Capitals Mumbai Indians \n", + "\n", + " toss_winner toss_decision winner \\\n", + "0 Royal Challengers Bangalore field Kolkata Knight Riders \n", + "1 Chennai Super Kings bat Chennai Super Kings \n", + "2 Rajasthan Royals bat Delhi Daredevils \n", + "3 Mumbai Indians bat Royal Challengers Bangalore \n", + "4 Deccan Chargers bat Kolkata Knight Riders \n", + ".. ... ... ... \n", + "811 Mumbai Indians field Royal Challengers Bangalore \n", + "812 Delhi Capitals field Mumbai Indians \n", + "813 Sunrisers Hyderabad field Sunrisers Hyderabad \n", + "814 Delhi Capitals bat Delhi Capitals \n", + "815 Delhi Capitals bat Mumbai Indians \n", + "\n", + " result result_margin eliminator method umpire1 umpire2 \n", + "0 runs 140.0 N NaN Asad Rauf RE Koertzen \n", + "1 runs 33.0 N NaN MR Benson SL Shastri \n", + "2 wickets 9.0 N NaN Aleem Dar GA Pratapkumar \n", + "3 wickets 5.0 N NaN SJ Davis DJ Harper \n", + "4 wickets 5.0 N NaN BF Bowden K Hariharan \n", + ".. ... ... ... ... ... ... \n", + "811 tie NaN Y NaN Nitin Menon PR Reiffel \n", + "812 runs 57.0 N NaN CB Gaffaney Nitin Menon \n", + "813 wickets 6.0 N NaN PR Reiffel S Ravi \n", + "814 runs 17.0 N NaN PR Reiffel S Ravi \n", + "815 wickets 5.0 N NaN CB Gaffaney Nitin Menon \n", + "\n", + "[816 rows x 17 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idcitydateplayer_of_matchvenueneutral_venueteam1team2toss_winnertoss_decisionwinnerresultresult_margineliminatormethodumpire1umpire2
0335982Bangalore2008-04-18BB McCullumM Chinnaswamy Stadium0Royal Challengers BangaloreKolkata Knight RidersRoyal Challengers BangalorefieldKolkata Knight Ridersruns140.0NNaNAsad RaufRE Koertzen
1335983Chandigarh2008-04-19MEK HusseyPunjab Cricket Association Stadium, Mohali0Kings XI PunjabChennai Super KingsChennai Super KingsbatChennai Super Kingsruns33.0NNaNMR BensonSL Shastri
2335984Delhi2008-04-19MF MaharoofFeroz Shah Kotla0Delhi DaredevilsRajasthan RoyalsRajasthan RoyalsbatDelhi Daredevilswickets9.0NNaNAleem DarGA Pratapkumar
3335985Mumbai2008-04-20MV BoucherWankhede Stadium0Mumbai IndiansRoyal Challengers BangaloreMumbai IndiansbatRoyal Challengers Bangalorewickets5.0NNaNSJ DavisDJ Harper
4335986Kolkata2008-04-20DJ HusseyEden Gardens0Kolkata Knight RidersDeccan ChargersDeccan ChargersbatKolkata Knight Riderswickets5.0NNaNBF BowdenK Hariharan
......................................................
8111216547NaN2020-09-28AB de VilliersDubai International Cricket Stadium0Royal Challengers BangaloreMumbai IndiansMumbai IndiansfieldRoyal Challengers BangaloretieNaNYNaNNitin MenonPR Reiffel
8121237177NaN2020-11-05JJ BumrahDubai International Cricket Stadium0Mumbai IndiansDelhi CapitalsDelhi CapitalsfieldMumbai Indiansruns57.0NNaNCB GaffaneyNitin Menon
8131237178Abu Dhabi2020-11-06KS WilliamsonSheikh Zayed Stadium0Royal Challengers BangaloreSunrisers HyderabadSunrisers HyderabadfieldSunrisers Hyderabadwickets6.0NNaNPR ReiffelS Ravi
8141237180Abu Dhabi2020-11-08MP StoinisSheikh Zayed Stadium0Delhi CapitalsSunrisers HyderabadDelhi CapitalsbatDelhi Capitalsruns17.0NNaNPR ReiffelS Ravi
8151237181NaN2020-11-10TA BoultDubai International Cricket Stadium0Delhi CapitalsMumbai IndiansDelhi CapitalsbatMumbai Indianswickets5.0NNaNCB GaffaneyNitin Menon
\n", + "

816 rows × 17 columns

\n", + "
" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 27 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "", + "id": "6271c834206fe942" + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# ****prblm****", + "id": "242f306bdb890c14" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T13:06:54.502595Z", + "start_time": "2025-11-21T13:06:54.354386Z" + } + }, + "cell_type": "code", + "source": [ + "Chunks = pd.read_csv('CS-1/train.csv', chunksize=1000)\n", + "\n", + "for d in Chunks:\n", + " print(d.shape)\n" + ], + "id": "f5e45ec96bc1f27e", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n", + "(1000, 14)\n" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001B[31m---------------------------------------------------------------------------\u001B[39m", + "\u001B[31mKeyboardInterrupt\u001B[39m Traceback (most recent call last)", + "\u001B[36mCell\u001B[39m\u001B[36m \u001B[39m\u001B[32mIn[13]\u001B[39m\u001B[32m, line 3\u001B[39m\n\u001B[32m 1\u001B[39m Chunks = pd.read_csv(\u001B[33m'\u001B[39m\u001B[33mCS-1/train.csv\u001B[39m\u001B[33m'\u001B[39m, chunksize=\u001B[32m1000\u001B[39m)\n\u001B[32m----> \u001B[39m\u001B[32m3\u001B[39m \u001B[38;5;28;43;01mfor\u001B[39;49;00m\u001B[43m \u001B[49m\u001B[43md\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;129;43;01min\u001B[39;49;00m\u001B[43m \u001B[49m\u001B[43mChunks\u001B[49m\u001B[43m:\u001B[49m\n\u001B[32m 4\u001B[39m \u001B[43m \u001B[49m\u001B[38;5;28;43mprint\u001B[39;49m\u001B[43m(\u001B[49m\u001B[43md\u001B[49m\u001B[43m.\u001B[49m\u001B[43mshape\u001B[49m\u001B[43m)\u001B[49m\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\io\\parsers\\readers.py:1843\u001B[39m, in \u001B[36mTextFileReader.__next__\u001B[39m\u001B[34m(self)\u001B[39m\n\u001B[32m 1841\u001B[39m \u001B[38;5;28;01mdef\u001B[39;00m\u001B[38;5;250m \u001B[39m\u001B[34m__next__\u001B[39m(\u001B[38;5;28mself\u001B[39m) -> DataFrame:\n\u001B[32m 1842\u001B[39m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[32m-> \u001B[39m\u001B[32m1843\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43mget_chunk\u001B[49m\u001B[43m(\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 1844\u001B[39m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mStopIteration\u001B[39;00m:\n\u001B[32m 1845\u001B[39m \u001B[38;5;28mself\u001B[39m.close()\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\io\\parsers\\readers.py:1985\u001B[39m, in \u001B[36mTextFileReader.get_chunk\u001B[39m\u001B[34m(self, size)\u001B[39m\n\u001B[32m 1983\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m \u001B[38;5;167;01mStopIteration\u001B[39;00m\n\u001B[32m 1984\u001B[39m size = \u001B[38;5;28mmin\u001B[39m(size, \u001B[38;5;28mself\u001B[39m.nrows - \u001B[38;5;28mself\u001B[39m._currow)\n\u001B[32m-> \u001B[39m\u001B[32m1985\u001B[39m \u001B[38;5;28;01mreturn\u001B[39;00m \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43mread\u001B[49m\u001B[43m(\u001B[49m\u001B[43mnrows\u001B[49m\u001B[43m=\u001B[49m\u001B[43msize\u001B[49m\u001B[43m)\u001B[49m\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\io\\parsers\\readers.py:1923\u001B[39m, in \u001B[36mTextFileReader.read\u001B[39m\u001B[34m(self, nrows)\u001B[39m\n\u001B[32m 1916\u001B[39m nrows = validate_integer(\u001B[33m\"\u001B[39m\u001B[33mnrows\u001B[39m\u001B[33m\"\u001B[39m, nrows)\n\u001B[32m 1917\u001B[39m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[32m 1918\u001B[39m \u001B[38;5;66;03m# error: \"ParserBase\" has no attribute \"read\"\u001B[39;00m\n\u001B[32m 1919\u001B[39m (\n\u001B[32m 1920\u001B[39m index,\n\u001B[32m 1921\u001B[39m columns,\n\u001B[32m 1922\u001B[39m col_dict,\n\u001B[32m-> \u001B[39m\u001B[32m1923\u001B[39m ) = \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43m_engine\u001B[49m\u001B[43m.\u001B[49m\u001B[43mread\u001B[49m\u001B[43m(\u001B[49m\u001B[43m \u001B[49m\u001B[38;5;66;43;03m# type: ignore[attr-defined]\u001B[39;49;00m\n\u001B[32m 1924\u001B[39m \u001B[43m \u001B[49m\u001B[43mnrows\u001B[49m\n\u001B[32m 1925\u001B[39m \u001B[43m \u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 1926\u001B[39m \u001B[38;5;28;01mexcept\u001B[39;00m \u001B[38;5;167;01mException\u001B[39;00m:\n\u001B[32m 1927\u001B[39m \u001B[38;5;28mself\u001B[39m.close()\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pandas\\io\\parsers\\c_parser_wrapper.py:234\u001B[39m, in \u001B[36mCParserWrapper.read\u001B[39m\u001B[34m(self, nrows)\u001B[39m\n\u001B[32m 232\u001B[39m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[32m 233\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28mself\u001B[39m.low_memory:\n\u001B[32m--> \u001B[39m\u001B[32m234\u001B[39m chunks = \u001B[38;5;28;43mself\u001B[39;49m\u001B[43m.\u001B[49m\u001B[43m_reader\u001B[49m\u001B[43m.\u001B[49m\u001B[43mread_low_memory\u001B[49m\u001B[43m(\u001B[49m\u001B[43mnrows\u001B[49m\u001B[43m)\u001B[49m\n\u001B[32m 235\u001B[39m \u001B[38;5;66;03m# destructive to chunks\u001B[39;00m\n\u001B[32m 236\u001B[39m data = _concatenate_chunks(chunks)\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/parsers.pyx:850\u001B[39m, in \u001B[36mpandas._libs.parsers.TextReader.read_low_memory\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/parsers.pyx:905\u001B[39m, in \u001B[36mpandas._libs.parsers.TextReader._read_rows\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/parsers.pyx:874\u001B[39m, in \u001B[36mpandas._libs.parsers.TextReader._tokenize_rows\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/parsers.pyx:891\u001B[39m, in \u001B[36mpandas._libs.parsers.TextReader._check_tokenize_status\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32mpandas/_libs/parsers.pyx:2053\u001B[39m, in \u001B[36mpandas._libs.parsers.raise_parser_error\u001B[39m\u001B[34m()\u001B[39m\n", + "\u001B[36mFile \u001B[39m\u001B[32m:334\u001B[39m, in \u001B[36mgetstate\u001B[39m\u001B[34m(self)\u001B[39m\n", + "\u001B[31mKeyboardInterrupt\u001B[39m: " + ] + } + ], + "execution_count": 13 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T13:13:38.650034Z", + "start_time": "2025-11-21T13:13:38.595045Z" + } + }, + "cell_type": "code", + "source": [ + "df1 = pd.read_json('https://jsonplaceholder.typicode.com/posts')\n", + "df1.to_csv('posts.csv')" + ], + "id": "191317ca5abcb9d9", + "outputs": [], + "execution_count": 23 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T13:13:52.094856Z", + "start_time": "2025-11-21T13:13:52.057579Z" + } + }, + "cell_type": "code", + "source": "df1.to_excel('posts-excel.xlsx')", + "id": "b27953842a926c1a", + "outputs": [], + "execution_count": 27 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T13:18:56.314820Z", + "start_time": "2025-11-21T13:18:55.339133Z" + } + }, + "cell_type": "code", + "source": "df2 = pd.read_json('https://jsonplaceholder.typicode.com/comments')", + "id": "501bb67cd28f1e2c", + "outputs": [], + "execution_count": 28 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T13:18:58.809614Z", + "start_time": "2025-11-21T13:18:58.666918Z" + } + }, + "cell_type": "code", + "source": [ + "with pd.ExcelWriter('post-comment.xlsx') as writer:\n", + " df1.to_excel(writer, sheet_name='Posts')\n", + " df2.to_excel(writer, sheet_name='Comments')" + ], + "id": "9a43e47d2a5efc1e", + "outputs": [], + "execution_count": 29 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T13:19:56.758553Z", + "start_time": "2025-11-21T13:19:56.750304Z" + } + }, + "cell_type": "code", + "source": "df1.to_html('Posts.html')", + "id": "48d2d21e67cff260", + "outputs": [], + "execution_count": 38 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T13:20:06.155137Z", + "start_time": "2025-11-21T13:20:06.142536Z" + } + }, + "cell_type": "code", + "source": "df", + "id": "5aa690a559c0d3f6", + "outputs": [ + { + "data": { + "text/plain": [ + " enrollee_id city city_development_index gender \\\n", + "0 8949 city_103 0.920 Male \n", + "1 29725 city_40 0.776 Male \n", + "2 11561 city_21 0.624 NaN \n", + "3 33241 city_115 0.789 NaN \n", + "4 666 city_162 0.767 Male \n", + "... ... ... ... ... \n", + "19153 7386 city_173 0.878 Male \n", + "19154 31398 city_103 0.920 Male \n", + "19155 24576 city_103 0.920 Male \n", + "19156 5756 city_65 0.802 Male \n", + "19157 23834 city_67 0.855 NaN \n", + "\n", + " relevent_experience enrolled_university education_level \\\n", + "0 Has relevent experience no_enrollment Graduate \n", + "1 No relevent experience no_enrollment Graduate \n", + "2 No relevent experience Full time course Graduate \n", + "3 No relevent experience NaN Graduate \n", + "4 Has relevent experience no_enrollment Masters \n", + "... ... ... ... \n", + "19153 No relevent experience no_enrollment Graduate \n", + "19154 Has relevent experience no_enrollment Graduate \n", + "19155 Has relevent experience no_enrollment Graduate \n", + "19156 Has relevent experience no_enrollment High School \n", + "19157 No relevent experience no_enrollment Primary School \n", + "\n", + " major_discipline experience company_size company_type last_new_job \\\n", + "0 STEM >20 NaN NaN 1 \n", + "1 STEM 15 50-99 Pvt Ltd >4 \n", + "2 STEM 5 NaN NaN never \n", + "3 Business Degree <1 NaN Pvt Ltd never \n", + "4 STEM >20 50-99 Funded Startup 4 \n", + "... ... ... ... ... ... \n", + "19153 Humanities 14 NaN NaN 1 \n", + "19154 STEM 14 NaN NaN 4 \n", + "19155 STEM >20 50-99 Pvt Ltd 4 \n", + "19156 NaN <1 500-999 Pvt Ltd 2 \n", + "19157 NaN 2 NaN NaN 1 \n", + "\n", + " training_hours target \n", + "0 36 1.0 \n", + "1 47 0.0 \n", + "2 83 0.0 \n", + "3 52 1.0 \n", + "4 8 0.0 \n", + "... ... ... \n", + "19153 42 1.0 \n", + "19154 52 1.0 \n", + "19155 44 0.0 \n", + "19156 97 0.0 \n", + "19157 127 0.0 \n", + "\n", + "[19158 rows x 14 columns]" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
enrollee_idcitycity_development_indexgenderrelevent_experienceenrolled_universityeducation_levelmajor_disciplineexperiencecompany_sizecompany_typelast_new_jobtraining_hourstarget
08949city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM>20NaNNaN1361.0
129725city_400.776MaleNo relevent experienceno_enrollmentGraduateSTEM1550-99Pvt Ltd>4470.0
211561city_210.624NaNNo relevent experienceFull time courseGraduateSTEM5NaNNaNnever830.0
333241city_1150.789NaNNo relevent experienceNaNGraduateBusiness Degree<1NaNPvt Ltdnever521.0
4666city_1620.767MaleHas relevent experienceno_enrollmentMastersSTEM>2050-99Funded Startup480.0
.............................................
191537386city_1730.878MaleNo relevent experienceno_enrollmentGraduateHumanities14NaNNaN1421.0
1915431398city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM14NaNNaN4521.0
1915524576city_1030.920MaleHas relevent experienceno_enrollmentGraduateSTEM>2050-99Pvt Ltd4440.0
191565756city_650.802MaleHas relevent experienceno_enrollmentHigh SchoolNaN<1500-999Pvt Ltd2970.0
1915723834city_670.855NaNNo relevent experienceno_enrollmentPrimary SchoolNaN2NaNNaN11270.0
\n", + "

19158 rows × 14 columns

\n", + "
" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 39 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T13:23:22.068597Z", + "start_time": "2025-11-21T13:23:22.058600Z" + } + }, + "cell_type": "code", + "source": [ + "df = pd.read_csv('CS-1/cricket_matches.csv')\n", + "df.to_json('cricket.json')" + ], + "id": "f16159d78630377c", + "outputs": [], + "execution_count": 41 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "", + "id": "b9ffe97aa49e3719" + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "# API to DataFrame", + "id": "547b22d0198a3f77" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T13:41:52.333449Z", + "start_time": "2025-11-21T13:41:51.974144Z" + } + }, + "cell_type": "code", + "source": [ + "res = requests.get('https://jsonplaceholder.typicode.com/users')\n", + "res" + ], + "id": "16ee8fbc02335245", + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 47 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T13:41:54.007186Z", + "start_time": "2025-11-21T13:41:54.003793Z" + } + }, + "cell_type": "code", + "source": "temp_df = pd.DataFrame(res.json())\n", + "id": "3f765b3a3a2b0c9a", + "outputs": [], + "execution_count": 48 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T13:41:56.232858Z", + "start_time": "2025-11-21T13:41:56.228998Z" + } + }, + "cell_type": "code", + "source": "temp_df['address'][0]['street']\n", + "id": "25673cdec7f00c79", + "outputs": [ + { + "data": { + "text/plain": [ + "'Kulas Light'" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 49 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T13:43:28.543655Z", + "start_time": "2025-11-21T13:43:28.536530Z" + } + }, + "cell_type": "code", + "source": "temp_df['address'].apply(lambda x: x['street'])", + "id": "316e590abc5f4d99", + "outputs": [ + { + "data": { + "text/plain": [ + "0 Kulas Light\n", + "1 Victor Plains\n", + "2 Douglas Extension\n", + "3 Hoeger Mall\n", + "4 Skiles Walks\n", + "5 Norberto Crossing\n", + "6 Rex Trail\n", + "7 Ellsworth Summit\n", + "8 Dayna Park\n", + "9 Kattie Turnpike\n", + "Name: address, dtype: object" + ] + }, + "execution_count": 50, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 50 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T16:04:09.410512Z", + "start_time": "2025-11-21T16:04:09.407815Z" + } + }, + "cell_type": "code", + "source": [ + "import pandas as pd\n", + "import requests\n", + "import numpy as np\n", + "from bs4 import BeautifulSoup" + ], + "id": "e2bf7ddf65def9fe", + "outputs": [], + "execution_count": 66 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T16:19:34.778046Z", + "start_time": "2025-11-21T16:19:34.203141Z" + } + }, + "cell_type": "code", + "source": [ + "headers = {\n", + " \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36\"\n", + "}\n", + "\n", + "res = requests.get('https://en.wikipedia.org/wiki/List_of_companies_of_Bangladesh',headers=headers).text\n" + ], + "id": "90b7bc26ecd3019", + "outputs": [], + "execution_count": 76 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T16:23:06.292646Z", + "start_time": "2025-11-21T16:23:06.232120Z" + } + }, + "cell_type": "code", + "source": [ + "soup = BeautifulSoup(res, 'lxml')\n", + "print(soup.prettify())" + ], + "id": "8063f06250eba3bb", + "outputs": [ + { + "ename": "FeatureNotFound", + "evalue": "Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library?", + "output_type": "error", + "traceback": [ + "\u001B[31m---------------------------------------------------------------------------\u001B[39m", + "\u001B[31mFeatureNotFound\u001B[39m Traceback (most recent call last)", + "\u001B[36mCell\u001B[39m\u001B[36m \u001B[39m\u001B[32mIn[79]\u001B[39m\u001B[32m, line 1\u001B[39m\n\u001B[32m----> \u001B[39m\u001B[32m1\u001B[39m soup = \u001B[43mBeautifulSoup\u001B[49m\u001B[43m(\u001B[49m\u001B[43mres\u001B[49m\u001B[43m,\u001B[49m\u001B[43m \u001B[49m\u001B[33;43m'\u001B[39;49m\u001B[33;43mlxml\u001B[39;49m\u001B[33;43m'\u001B[39;49m\u001B[43m)\u001B[49m\n\u001B[32m 2\u001B[39m \u001B[38;5;28mprint\u001B[39m(soup.prettify())\n", + "\u001B[36mFile \u001B[39m\u001B[32m~\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\bs4\\__init__.py:366\u001B[39m, in \u001B[36mBeautifulSoup.__init__\u001B[39m\u001B[34m(self, markup, features, builder, parse_only, from_encoding, exclude_encodings, element_classes, **kwargs)\u001B[39m\n\u001B[32m 364\u001B[39m possible_builder_class = builder_registry.lookup(*features)\n\u001B[32m 365\u001B[39m \u001B[38;5;28;01mif\u001B[39;00m possible_builder_class \u001B[38;5;129;01mis\u001B[39;00m \u001B[38;5;28;01mNone\u001B[39;00m:\n\u001B[32m--> \u001B[39m\u001B[32m366\u001B[39m \u001B[38;5;28;01mraise\u001B[39;00m FeatureNotFound(\n\u001B[32m 367\u001B[39m \u001B[33m\"\u001B[39m\u001B[33mCouldn\u001B[39m\u001B[33m'\u001B[39m\u001B[33mt find a tree builder with the features you \u001B[39m\u001B[33m\"\u001B[39m\n\u001B[32m 368\u001B[39m \u001B[33m\"\u001B[39m\u001B[33mrequested: \u001B[39m\u001B[38;5;132;01m%s\u001B[39;00m\u001B[33m. Do you need to install a parser library?\u001B[39m\u001B[33m\"\u001B[39m\n\u001B[32m 369\u001B[39m % \u001B[33m\"\u001B[39m\u001B[33m,\u001B[39m\u001B[33m\"\u001B[39m.join(features)\n\u001B[32m 370\u001B[39m )\n\u001B[32m 371\u001B[39m builder_class = possible_builder_class\n\u001B[32m 373\u001B[39m \u001B[38;5;66;03m# At this point either we have a TreeBuilder instance in\u001B[39;00m\n\u001B[32m 374\u001B[39m \u001B[38;5;66;03m# builder, or we have a builder_class that we can instantiate\u001B[39;00m\n\u001B[32m 375\u001B[39m \u001B[38;5;66;03m# with the remaining **kwargs.\u001B[39;00m\n", + "\u001B[31mFeatureNotFound\u001B[39m: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library?" + ] + } + ], + "execution_count": 79 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T16:23:10.768436Z", + "start_time": "2025-11-21T16:23:10.747125Z" + } + }, + "cell_type": "code", + "source": "table = soup.find('table')", + "id": "4aaf0690cf927cff", + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'soup' is not defined", + "output_type": "error", + "traceback": [ + "\u001B[31m---------------------------------------------------------------------------\u001B[39m", + "\u001B[31mNameError\u001B[39m Traceback (most recent call last)", + "\u001B[36mCell\u001B[39m\u001B[36m \u001B[39m\u001B[32mIn[81]\u001B[39m\u001B[32m, line 1\u001B[39m\n\u001B[32m----> \u001B[39m\u001B[32m1\u001B[39m table = \u001B[43msoup\u001B[49m.find(\u001B[33m'\u001B[39m\u001B[33mtable\u001B[39m\u001B[33m'\u001B[39m)\n", + "\u001B[31mNameError\u001B[39m: name 'soup' is not defined" + ] + } + ], + "execution_count": 81 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-21T16:23:08.967500Z", + "start_time": "2025-11-21T16:23:08.945955Z" + } + }, + "cell_type": "code", + "source": "table", + "id": "122d0b8bda082e43", + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'table' is not defined", + "output_type": "error", + "traceback": [ + "\u001B[31m---------------------------------------------------------------------------\u001B[39m", + "\u001B[31mNameError\u001B[39m Traceback (most recent call last)", + "\u001B[36mCell\u001B[39m\u001B[36m \u001B[39m\u001B[32mIn[80]\u001B[39m\u001B[32m, line 1\u001B[39m\n\u001B[32m----> \u001B[39m\u001B[32m1\u001B[39m \u001B[43mtable\u001B[49m\n", + "\u001B[31mNameError\u001B[39m: name 'table' is not defined" + ] + } + ], + "execution_count": 80 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "", + "id": "b48077ce82db0759" + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 6d1f5cae6abbfcfee450df3b748cc0150ebe937e Mon Sep 17 00:00:00 2001 From: Evan <119051240+Mofazzal-Hossain-Evan@users.noreply.github.com> Date: Sat, 22 Nov 2025 21:53:11 +0600 Subject: [PATCH 78/78] Conceptual Session 02 --- ...anic_Data_Preparation_(Step_by_Step).ipynb | 3280 +++++++++++++++++ .../Week_4/Conceptual Session/s2.ipynb | 41 + student_data (2).csv => student_data.csv | 0 student_scores.csv => student_scores.xlsx | 0 4 files changed, 3321 insertions(+) create mode 100644 Python_For_ML/Week_4/Conceptual Session/From_Pandas_to_Model_Ready_Titanic_Data_Preparation_(Step_by_Step).ipynb create mode 100644 Python_For_ML/Week_4/Conceptual Session/s2.ipynb rename student_data (2).csv => student_data.csv (100%) rename student_scores.csv => student_scores.xlsx (100%) diff --git a/Python_For_ML/Week_4/Conceptual Session/From_Pandas_to_Model_Ready_Titanic_Data_Preparation_(Step_by_Step).ipynb b/Python_For_ML/Week_4/Conceptual Session/From_Pandas_to_Model_Ready_Titanic_Data_Preparation_(Step_by_Step).ipynb new file mode 100644 index 0000000..7e581e3 --- /dev/null +++ b/Python_For_ML/Week_4/Conceptual Session/From_Pandas_to_Model_Ready_Titanic_Data_Preparation_(Step_by_Step).ipynb @@ -0,0 +1,3280 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "01e12c5f", + "metadata": { + "id": "01e12c5f" + }, + "source": [ + "\n", + "# From Pandas to Model-Ready: Titanic Data Preparation (Step-by-Step)\n", + "**Class focus:** A simple, beginner-friendly path to turn the Titanic dataset into a model-ready table **without** using scikit-learn Pipelines yet. \n", + "We'll **discuss Pipelines next session**.\n", + "\n", + "**Topics covered today**\n", + "1. What “model-ready” means \n", + "2. Pick target **y** and features **X** without leakage \n", + "3. Split early (train/test with `stratify`) \n", + "4. Numeric prep: invalids, missing values, outliers \n", + "5. Categorical prep: clean labels, One-Hot vs Ordinal, rare categories \n", + "6. Datetime to features (tiny synthetic example) \n", + "7. Scaling: Standard vs Min-Max vs Robust \n", + "8. Save processed data + tiny sanity check\n" + ] + }, + { + "cell_type": "markdown", + "id": "1189f040", + "metadata": { + "id": "1189f040" + }, + "source": [ + "\n", + "## 1) Setup and Load Titanic (Google Drive link → `uc?id=` format)\n", + "This mirrors the loading style from your lab file: paste a **public** Google Drive file link to a CSV, we extract the `id`, and then use `https://drive.google.com/uc?id=...` to read with Pandas.\n", + "\n", + "> If you don't have a Drive link yet, run the **fallback** cell below to load Seaborn's Titanic instead.\n" + ] + }, + { + "cell_type": "code", + "source": [ + "# importing the necessary libraries\n", + "import numpy as np\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "from sklearn.model_selection import train_test_split" + ], + "metadata": { + "id": "nuccOG9mNjq7", + "ExecuteTime": { + "end_time": "2025-11-22T09:16:15.223093Z", + "start_time": "2025-11-22T09:16:09.161805Z" + } + }, + "id": "nuccOG9mNjq7", + "outputs": [], + "execution_count": 1 + }, + { + "cell_type": "code", + "id": "230b7de1", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 363 + }, + "id": "230b7de1", + "outputId": "178c59cf-aa42-4132-918f-2bb251b678f2", + "ExecuteTime": { + "end_time": "2025-11-22T11:28:34.969982Z", + "start_time": "2025-11-22T11:28:32.345874Z" + } + }, + "source": [ + "# read dataset from a Google Drive File\n", + "\n", + "file_link = 'https://drive.google.com/file/d/1wADS0ybifgQJcPEtzqDurKAi_CEmwKDF/view?usp=sharing' # the file access must have to be Public\n", + "\n", + "# get the id part of the file\n", + "id = file_link.split(\"/\")[-2]\n", + "\n", + "# creating a new link using the id so that we can easily read the csv file in pandas\n", + "new_link = f'https://drive.google.com/uc?id={id}'\n", + "df = pd.read_csv(new_link)\n", + "\n", + "# let's look at the first few instances\n", + "df.head(10)" + ], + "outputs": [ + { + "data": { + "text/plain": [ + " PassengerId Pclass Name \\\n", + "0 1 3 Braund, Mr. Owen Harris \n", + "1 2 1 Cumings, Mrs. John Bradley (Florence Briggs Th... \n", + "2 3 3 Heikkinen, Miss. Laina \n", + "3 4 1 Futrelle, Mrs. Jacques Heath (Lily May Peel) \n", + "4 5 3 Allen, Mr. William Henry \n", + "5 6 3 Moran, Mr. James \n", + "6 7 1 McCarthy, Mr. Timothy J \n", + "7 8 3 Palsson, Master. Gosta Leonard \n", + "8 9 3 Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg) \n", + "9 10 2 Nasser, Mrs. Nicholas (Adele Achem) \n", + "\n", + " Sex Age SibSp Parch Ticket Fare Cabin Embarked \\\n", + "0 male 22.0 1 0 A/5 21171 7.2500 NaN S \n", + "1 female 38.0 1 0 PC 17599 71.2833 C85 C \n", + "2 female 26.0 0 0 STON/O2. 3101282 7.9250 NaN S \n", + "3 female 35.0 1 0 113803 53.1000 C123 S \n", + "4 male 35.0 0 0 373450 8.0500 NaN S \n", + "5 male NaN 0 0 330877 8.4583 NaN Q \n", + "6 male 54.0 0 0 17463 51.8625 E46 S \n", + "7 male 2.0 3 1 349909 21.0750 NaN S \n", + "8 female 27.0 0 2 347742 11.1333 NaN S \n", + "9 female 14.0 1 0 237736 30.0708 NaN C \n", + "\n", + " Survived \n", + "0 0 \n", + "1 1 \n", + "2 1 \n", + "3 1 \n", + "4 0 \n", + "5 0 \n", + "6 0 \n", + "7 0 \n", + "8 1 \n", + "9 1 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PassengerIdPclassNameSexAgeSibSpParchTicketFareCabinEmbarkedSurvived
013Braund, Mr. Owen Harrismale22.010A/5 211717.2500NaNS0
121Cumings, Mrs. John Bradley (Florence Briggs Th...female38.010PC 1759971.2833C85C1
233Heikkinen, Miss. Lainafemale26.000STON/O2. 31012827.9250NaNS1
341Futrelle, Mrs. Jacques Heath (Lily May Peel)female35.01011380353.1000C123S1
453Allen, Mr. William Henrymale35.0003734508.0500NaNS0
563Moran, Mr. JamesmaleNaN003308778.4583NaNQ0
671McCarthy, Mr. Timothy Jmale54.0001746351.8625E46S0
783Palsson, Master. Gosta Leonardmale2.03134990921.0750NaNS0
893Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)female27.00234774211.1333NaNS1
9102Nasser, Mrs. Nicholas (Adele Achem)female14.01023773630.0708NaNC1
\n", + "
" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 2 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-22T11:43:51.936838Z", + "start_time": "2025-11-22T11:43:51.864506Z" + } + }, + "cell_type": "code", + "source": "df.describe(include='all')", + "id": "51e9cf0c587c91a3", + "outputs": [ + { + "data": { + "text/plain": [ + " PassengerId Pclass Name Sex Age \\\n", + "count 891.000000 891.000000 891 891 714.000000 \n", + "unique NaN NaN 891 2 NaN \n", + "top NaN NaN Braund, Mr. Owen Harris male NaN \n", + "freq NaN NaN 1 577 NaN \n", + "mean 446.000000 2.308642 NaN NaN 29.699118 \n", + "std 257.353842 0.836071 NaN NaN 14.526497 \n", + "min 1.000000 1.000000 NaN NaN 0.420000 \n", + "25% 223.500000 2.000000 NaN NaN 20.125000 \n", + "50% 446.000000 3.000000 NaN NaN 28.000000 \n", + "75% 668.500000 3.000000 NaN NaN 38.000000 \n", + "max 891.000000 3.000000 NaN NaN 80.000000 \n", + "\n", + " SibSp Parch Ticket Fare Cabin Embarked Survived \n", + "count 891.000000 891.000000 891 891.000000 204 889 891.000000 \n", + "unique NaN NaN 681 NaN 147 3 NaN \n", + "top NaN NaN 347082 NaN G6 S NaN \n", + "freq NaN NaN 7 NaN 4 644 NaN \n", + "mean 0.523008 0.381594 NaN 32.204208 NaN NaN 0.383838 \n", + "std 1.102743 0.806057 NaN 49.693429 NaN NaN 0.486592 \n", + "min 0.000000 0.000000 NaN 0.000000 NaN NaN 0.000000 \n", + "25% 0.000000 0.000000 NaN 7.910400 NaN NaN 0.000000 \n", + "50% 0.000000 0.000000 NaN 14.454200 NaN NaN 0.000000 \n", + "75% 1.000000 0.000000 NaN 31.000000 NaN NaN 1.000000 \n", + "max 8.000000 6.000000 NaN 512.329200 NaN NaN 1.000000 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PassengerIdPclassNameSexAgeSibSpParchTicketFareCabinEmbarkedSurvived
count891.000000891.000000891891714.000000891.000000891.000000891891.000000204889891.000000
uniqueNaNNaN8912NaNNaNNaN681NaN1473NaN
topNaNNaNBraund, Mr. Owen HarrismaleNaNNaNNaN347082NaNG6SNaN
freqNaNNaN1577NaNNaNNaN7NaN4644NaN
mean446.0000002.308642NaNNaN29.6991180.5230080.381594NaN32.204208NaNNaN0.383838
std257.3538420.836071NaNNaN14.5264971.1027430.806057NaN49.693429NaNNaN0.486592
min1.0000001.000000NaNNaN0.4200000.0000000.000000NaN0.000000NaNNaN0.000000
25%223.5000002.000000NaNNaN20.1250000.0000000.000000NaN7.910400NaNNaN0.000000
50%446.0000003.000000NaNNaN28.0000000.0000000.000000NaN14.454200NaNNaN0.000000
75%668.5000003.000000NaNNaN38.0000001.0000000.000000NaN31.000000NaNNaN1.000000
max891.0000003.000000NaNNaN80.0000008.0000006.000000NaN512.329200NaNNaN1.000000
\n", + "
" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 3 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-22T11:47:56.648230Z", + "start_time": "2025-11-22T11:47:56.617350Z" + } + }, + "cell_type": "code", + "source": "df.nunique()\n", + "id": "f19b022e93310e89", + "outputs": [ + { + "data": { + "text/plain": [ + "PassengerId 891\n", + "Pclass 3\n", + "Name 891\n", + "Sex 2\n", + "Age 88\n", + "SibSp 7\n", + "Parch 7\n", + "Ticket 681\n", + "Fare 248\n", + "Cabin 147\n", + "Embarked 3\n", + "Survived 2\n", + "dtype: int64" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 4 + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2025-11-22T12:35:04.956076Z", + "start_time": "2025-11-22T12:35:04.939952Z" + } + }, + "cell_type": "code", + "source": "df.isnull().sum()", + "id": "94e8a7bf76825830", + "outputs": [ + { + "data": { + "text/plain": [ + "PassengerId 0\n", + "Pclass 0\n", + "Name 0\n", + "Sex 0\n", + "Age 177\n", + "SibSp 0\n", + "Parch 0\n", + "Ticket 0\n", + "Fare 0\n", + "Cabin 687\n", + "Embarked 2\n", + "Survived 0\n", + "dtype: int64" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 5 + }, + { + "cell_type": "markdown", + "id": "b512eca7", + "metadata": { + "id": "b512eca7" + }, + "source": [ + "\n", + "## 2) Basic EDA (Exploratory Data Analysis)\n", + "This introduce simple EDA steps:\n", + "- `info()`, `describe(include='all')`\n", + "- Missing values overview\n", + "- Distribution plots and crosstabs for key columns\n" + ] + }, + { + "cell_type": "markdown", + "source": [ + "***Titanic Dataset:***\n", + "\n", + "* **PassengerId**\n", + "\n", + "* **Pclass:**\tTicket class. A proxy for socio-economic status (SES).\n", + " 1 = 1st (Upper)\n", + " 2 = 2nd (Middle)\n", + " 3 = 3rd (Lower)\n", + "\n", + "* **Name**\n", + "\n", + "* **Sex**\n", + "\n", + "* **Age:**\tAge in years. Age is fractional if less than 1. If the age is estimated, is it in the form of **xx.5**\t.\n", + "\n", + "* **SibSp:**\tnumber of siblings / spouses aboard the Titanic. The dataset defines family relations in this way:\n", + "\n", + " Sibling = brother, sister, stepbrother, stepsister\n", + " Spouse = husband, wife (mistresses and fiancés were ignored)\n", + "\n", + "\n", + "* **Parch:**\tnumber of parents / children aboard the Titanic. The dataset defines family relations in this way:\n", + " Parent = mother, father\n", + " Child = daughter, son, stepdaughter, stepson\n", + " [Some children travelled only with a nanny, therefore parch=0 for them.]\n", + "\n", + "* **Ticket:**\tTicket number\n", + "\n", + "* **Fare:**\tPassenger fare\n", + "\n", + "* **Cabin:**\tCabin number\n", + "\n", + "* **Embarked:**\tPort of Embarkation\n", + " C = Cherbourg\n", + " Q = Queenstown\n", + " S = Southampton\n", + "\n", + "* **Survived:**\tSurvival Status\n", + " 0 = No\n", + " 1 = Yes\n" + ], + "metadata": { + "id": "gn5-WJZtOihi" + }, + "id": "gn5-WJZtOihi" + }, + { + "cell_type": "code", + "source": [ + "#Check dataframe shape (Number of rows and columns)\n", + "df.shape" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "ZjTvwJ1XOryJ", + "outputId": "c9dc45d4-5157-4963-e470-8203d6d87f7e" + }, + "id": "ZjTvwJ1XOryJ", + "execution_count": null, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(891, 12)" + ] + }, + "metadata": {}, + "execution_count": 46 + } + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "56152cdc", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "56152cdc", + "outputId": "8a519cb4-eee0-4447-d8ac-1eadb0205465" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\n", + "RangeIndex: 891 entries, 0 to 890\n", + "Data columns (total 12 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 PassengerId 891 non-null int64 \n", + " 1 Pclass 891 non-null int64 \n", + " 2 Name 891 non-null object \n", + " 3 Sex 891 non-null object \n", + " 4 Age 714 non-null float64\n", + " 5 SibSp 891 non-null int64 \n", + " 6 Parch 891 non-null int64 \n", + " 7 Ticket 891 non-null object \n", + " 8 Fare 891 non-null float64\n", + " 9 Cabin 204 non-null object \n", + " 10 Embarked 889 non-null object \n", + " 11 Survived 891 non-null int64 \n", + "dtypes: float64(2), int64(5), object(5)\n", + "memory usage: 83.7+ KB\n" + ] + } + ], + "source": [ + "df.info()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5247358d", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 394 + }, + "id": "5247358d", + "outputId": "eb004039-0521-4752-f391-30a18eaac0e0" + }, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " PassengerId Pclass Name ... Cabin Embarked Survived\n", + "count 891.000000 891.000000 891 ... 204 889 891.000000\n", + "unique NaN NaN 891 ... 147 3 NaN\n", + "top NaN NaN Dooley, Mr. Patrick ... G6 S NaN\n", + "freq NaN NaN 1 ... 4 644 NaN\n", + "mean 446.000000 2.308642 NaN ... NaN NaN 0.383838\n", + "std 257.353842 0.836071 NaN ... NaN NaN 0.486592\n", + "min 1.000000 1.000000 NaN ... NaN NaN 0.000000\n", + "25% 223.500000 2.000000 NaN ... NaN NaN 0.000000\n", + "50% 446.000000 3.000000 NaN ... NaN NaN 0.000000\n", + "75% 668.500000 3.000000 NaN ... NaN NaN 1.000000\n", + "max 891.000000 3.000000 NaN ... NaN NaN 1.000000\n", + "\n", + "[11 rows x 12 columns]" + ], + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PassengerIdPclassNameSexAgeSibSpParchTicketFareCabinEmbarkedSurvived
count891.000000891.000000891891714.000000891.000000891.000000891891.000000204889891.000000
uniqueNaNNaN8912NaNNaNNaN681NaN1473NaN
topNaNNaNDooley, Mr. PatrickmaleNaNNaNNaN347082NaNG6SNaN
freqNaNNaN1577NaNNaNNaN7NaN4644NaN
mean446.0000002.308642NaNNaN29.6991180.5230080.381594NaN32.204208NaNNaN0.383838
std257.3538420.836071NaNNaN14.5264971.1027430.806057NaN49.693429NaNNaN0.486592
min1.0000001.000000NaNNaN0.4200000.0000000.000000NaN0.000000NaNNaN0.000000
25%223.5000002.000000NaNNaN20.1250000.0000000.000000NaN7.910400NaNNaN0.000000
50%446.0000003.000000NaNNaN28.0000000.0000000.000000NaN14.454200NaNNaN0.000000
75%668.5000003.000000NaNNaN38.0000001.0000000.000000NaN31.000000NaNNaN1.000000
max891.0000003.000000NaNNaN80.0000008.0000006.000000NaN512.329200NaNNaN1.000000
\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "\n", + " \n", + "\n", + " \n", + "
\n", + "\n", + "\n", + "
\n", + " \n", + "\n", + "\n", + "\n", + " \n", + "
\n", + "\n", + "
\n", + "
\n" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "dataframe", + "summary": "{\n \"name\": \"df\",\n \"rows\": 11,\n \"fields\": [\n {\n \"column\": \"PassengerId\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 320.8159711429856,\n \"min\": 1.0,\n \"max\": 891.0,\n \"num_unique_values\": 6,\n \"samples\": [\n 891.0,\n 446.0,\n 668.5\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Pclass\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 314.2523437079693,\n \"min\": 0.8360712409770513,\n \"max\": 891.0,\n \"num_unique_values\": 6,\n \"samples\": [\n 891.0,\n 2.308641975308642,\n 3.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Name\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"891\",\n \"Dooley, Mr. Patrick\",\n \"1\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Sex\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 4,\n \"samples\": [\n 2,\n \"577\",\n \"891\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Age\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 242.9056731818781,\n \"min\": 0.42,\n \"max\": 714.0,\n \"num_unique_values\": 8,\n \"samples\": [\n 29.69911764705882,\n 28.0,\n 714.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"SibSp\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 314.4908277465442,\n \"min\": 0.0,\n \"max\": 891.0,\n \"num_unique_values\": 6,\n \"samples\": [\n 891.0,\n 0.5230078563411896,\n 8.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Parch\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 314.65971717879,\n \"min\": 0.0,\n \"max\": 891.0,\n \"num_unique_values\": 5,\n \"samples\": [\n 0.38159371492704824,\n 6.0,\n 0.8060572211299559\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Ticket\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 4,\n \"samples\": [\n 681,\n \"7\",\n \"891\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Fare\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 330.6256632228577,\n \"min\": 0.0,\n \"max\": 891.0,\n \"num_unique_values\": 8,\n \"samples\": [\n 32.204207968574636,\n 14.4542,\n 891.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Cabin\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 4,\n \"samples\": [\n 147,\n \"4\",\n \"204\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Embarked\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 4,\n \"samples\": [\n 3,\n \"644\",\n \"889\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"Survived\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 314.8713661874558,\n \"min\": 0.0,\n \"max\": 891.0,\n \"num_unique_values\": 5,\n \"samples\": [\n 0.3838383838383838,\n 1.0,\n 0.4865924542648585\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" + } + }, + "metadata": {}, + "execution_count": 48 + } + ], + "source": [ + "df.describe(include='all')" + ] + }, + { + "cell_type": "code", + "source": [ + "# Check Unique Values\n", + "df.nunique()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 460 + }, + "id": "ZMOR5MUAOwHh", + "outputId": "85cd0fbb-e4ed-4c67-e99d-2cb14dad7858" + }, + "id": "ZMOR5MUAOwHh", + "execution_count": null, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "PassengerId 891\n", + "Pclass 3\n", + "Name 891\n", + "Sex 2\n", + "Age 88\n", + "SibSp 7\n", + "Parch 7\n", + "Ticket 681\n", + "Fare 248\n", + "Cabin 147\n", + "Embarked 3\n", + "Survived 2\n", + "dtype: int64" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0
PassengerId891
Pclass3
Name891
Sex2
Age88
SibSp7
Parch7
Ticket681
Fare248
Cabin147
Embarked3
Survived2
\n", + "

" + ] + }, + "metadata": {}, + "execution_count": 49 + } + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f616f652", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 460 + }, + "id": "f616f652", + "outputId": "721b1a9c-4d45-4318-9a18-a246ab6de2b7" + }, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "PassengerId 0\n", + "Pclass 0\n", + "Name 0\n", + "Sex 0\n", + "Age 177\n", + "SibSp 0\n", + "Parch 0\n", + "Ticket 0\n", + "Fare 0\n", + "Cabin 687\n", + "Embarked 2\n", + "Survived 0\n", + "dtype: int64" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0
PassengerId0
Pclass0
Name0
Sex0
Age177
SibSp0
Parch0
Ticket0
Fare0
Cabin687
Embarked2
Survived0
\n", + "

" + ] + }, + "metadata": {}, + "execution_count": 50 + } + ], + "source": [ + "# Missing values per column\n", + "df.isnull().sum()" + ] + }, + { + "cell_type": "code", + "id": "2d3ced66", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 559 + }, + "id": "2d3ced66", + "outputId": "b0710411-4f7f-4abc-ec29-728e2c005859", + "ExecuteTime": { + "end_time": "2025-11-22T12:50:02.918219Z", + "start_time": "2025-11-22T12:50:02.659538Z" + } + }, + "source": [ + "# Simple distributions and relationships (match common Titanic columns)\n", + "# Target distribution if 'survived' present (seaborn titanic uses 'survived'; some CSVs use 'Survived')\n", + "target_col = \"Survived\"\n", + "plt.figure(figsize=(10, 6))\n", + "df[target_col].value_counts().sort_index().plot(kind='bar',color=['lightcoral','lightgreen'])\n", + "plt.title(f\"Distribution of {target_col}\")\n", + "plt.xlabel(target_col)\n", + "plt.ylabel(\"Count\")\n", + "plt.show()" + ], + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA1IAAAIeCAYAAACxyz6kAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjcsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvTLEjVAAAAAlwSFlzAAAPYQAAD2EBqD+naQAAMLxJREFUeJzt3QuclVW9P/7vcFcREJRbImqpgOIlLEE7lojiNU08pXkMO2TnEJpCmVEogpYeSvESSsdU7KhZdtLUDC+YWok3PF7CS1qWFAJe4iIFKMzvtdb/tec/gzPAInCY4f1+vR737Od59rPXs4eX7A9rre+qqq6urg4AAADWWYt1PxUAAABBCgAAYD3okQIAACgkSAEAABQSpAAAAAoJUgAAAIUEKQAAgEKCFAAAQCFBCgAAoJAgBdCEnXfeeVFVVfW+vNcnPvGJvFU88MAD+b1/+tOfvi/vf8opp8SOO+4Ym7K33347vvCFL0T37t3zZ3PmmWdGU/KnP/0pt3vatGnN+s8ywIYgSAFsItKX1/RFsrK1a9cuevbsGUOHDo3LL788lixZskHeZ+7cuflL61NPPRWbmk25bevi29/+dv49jhw5Mv7nf/4nTj755AbPXbFiRVx22WWxzz77RIcOHaJTp06x++67xxe/+MV44YUX3td2A1Cu1Xq8BoCNaOLEibHTTjvFO++8E/Pmzcs9P6ln45JLLonbb7899txzz5pzx40bF1//+teLw8qECRNy787ee++9zq+75557YmNbU9uuvvrqWLVqVWzK7r///hg4cGCMHz9+recOGzYsfvnLX8aJJ54Yp556av59pwB15513xv777x99+vSJ91vv3r3jH//4R7Ru3fp9f2+ApkaQAtjEHH744bHvvvvWPB87dmz+gn7UUUfFJz/5yXj++edjiy22yMdatWqVt43p73//e2y55ZbRpk2baExN4cv9ggULol+/fms97/HHH8+B6Vvf+lZ84xvfqHPse9/7XixcuHCDtCcFz9TzlXo310WlJxSAtTO0D6AJGDx4cJxzzjnx5z//OW644YY1ziu5995742Mf+1geKta+ffvYbbfdar6sp96tj3zkI/nnz3/+8zXDCCtzYtIcqD322CNmzZoVBx54YA5QldeuPkeqYuXKlfmcNC9oq622ymFvzpw5dc5JPUxpjtPqal9zbW2rb47U0qVL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76qrroo999wzOnTokLdBgwbFL3/5y5rjy5Yti1GjRkWXLl2iffv2MWzYsJg/f36da7z66qtx5JFHxpZbbhldu3aNs846K959992S2wIAANj4c6ReeeWV2HbbbeOftf3228dFF10Us2bNiieeeCIGDx4cxxxzTMyePTsfHz16dNxxxx1xyy23xIMPPhhz586N4447rs5wwhSiVqxYEQ8//HBcf/31MW3atDj33HP/6bYBAAA0pKq6uro61kOaD5W2Ss9Ubddee22sr86dO8d3vvOdOP7442O77baLm266Kf+cvPDCC9G3b9+YOXNmDBw4MPdepR6wFLC6deuWz5k6dWqcffbZ8frrr0ebNm3W6T0XL16c53stWrQo94zROBZNmOCjZ7PWcfz4xm4CNLrL/nZZYzcBGt0Z25zR2E3YrC1ex2ywXj1SEyZMiEMPPTQHqTfeeCP+9re/1dnWR+pduvnmm2Pp0qV5iF/qpXrnnXdiyJAhNef06dMnDytMQSpJj/37968JUcnQoUPzzVd6teqThiGmc2pvAAAAG6XYREXq9UlD6E4++eT4Zz377LM5OKX5UGke1K233hr9+vWLp556KvcoderUqc75KTTNmzcv/5wea4eoyvHKsYZceOGFOQwCAACsj/XqkUpzkvbff//YEHbbbbccmh599NEYOXJkrgb43HPPxcY0duzY3FVX2ebMmbNR3w8AAGhe1itIfeELX8hzlzaE1Ov0oQ99KAYMGJB7ivbaa6+47LLLonv37jmwLVy4sM75qWpfOpakx9Wr+FWeV86pT9u2bWsqBVY2AACAjTq0Lw3D++///u+47777cvnytIZUbZdcckmsr0op9RSs0nXTPKxU9jxJ5dVTufM0FDBJj9/61rdywYtU+jy59957czBKwwMBAAA2mSD1zDPPxN57751//t3vflfnWFqst2SI3eGHH54LSCxZsiT3cj3wwANx991350oZI0aMiDFjxuRKfikcnX766Tk8pYp9SSp4kQJTmqs1adKkPC9q3Lhxee2p1OsEAACwyQSpX/3qVxvkzVNP0uc+97l47bXXcnBKvVspRB1yyCH5+OTJk6NFixa5Ryr1UqWKfFdeeWXN61u2bBl33nlnnluVAtZWW22V51hNnDhxg7QPAABggwWpDeWaa65Z4/F27drFlClT8taQ3r17x1133bURWgcAALABg9RBBx20xiF8999///pcFgAAoPkGqcr8qIq0cG4qYZ7mS6WhdQAAAM3ZegWpNHepPuedd168/fbb/2ybAAAAmt86Ug35t3/7t7j22ms35CUBAACad5CaOXNmLhABAADQnK3X0L7jjjuuzvPq6upcwvyJJ56Ic845Z0O1DQAAoPkEqbTmU21prafddtstr9+UFskFAABoztYrSF133XUbviUAAACbw4K8s2bNiueffz7/vPvuu8c+++yzodoFAADQvILUggUL4oQTTogHHnggOnXqlPctXLgwL9R78803x3bbbbeh2wkAANC0q/adfvrpsWTJkpg9e3a89dZbeUuL8S5evDi+/OUvb/hWAgAANPUeqenTp8d9990Xffv2rdnXr1+/mDJlimITAABAs7dePVKrVq2K1q1bv2d/2peOAQAANGfrFaQGDx4cZ5xxRsydO7dm31//+tcYPXp0HHzwwRuyfQAAAM0jSH3ve9/L86F23HHH+OAHP5i3nXbaKe+74oorNnwrAQAAmvocqV69esWTTz6Z50m98MILeV+aLzVkyJAN3T4AAICm3SN1//3356ISqeepqqoqDjnkkFzBL20f+chH8lpSv/71rzdeawEAAJpakLr00kvj1FNPjQ4dOrznWMeOHeM//uM/4pJLLtmQ7QMAAGjaQerpp5+Oww47rMHjhx56aMyaNWtDtAsAAKB5BKn58+fXW/a8olWrVvH6669viHYBAAA0jyD1gQ98IH73u981ePyZZ56JHj16bIh2AQAANI8gdcQRR8Q555wTy5Yte8+xf/zjHzF+/Pg46qijNmT7AAAAmnb583HjxsXPfvaz2HXXXeO0006L3XbbLe9PJdCnTJkSK1eujG9+85sbq60AAABNL0h169YtHn744Rg5cmSMHTs2qqur8/5UCn3o0KE5TKVzAAAAmrPiBXl79+4dd911V/ztb3+Ll19+OYepXXbZJbbZZpuN00IAAICmHqQqUnBKi/ACAABsboqKTQAAACBIAQAAFNMjBQAAIEgBAABsXHqkAAAACglSAAAAhQQpAACAQoIUAABAIUEKAACgkCAFAABQSJACAAAoJEgBAAAUEqQAAAAKCVIAAACFBCkAAIBCghQAAEAhQQoAAKCQIAUAAFBIkAIAACgkSAEAABQSpAAAAAoJUgAAAIUEKQAAgEKCFAAAQCFBCgAAoJAgBQAAUEiQAgAAKCRIAQAAFBKkAAAACglSAAAAhQQpAACAQoIUAABAIUEKAACgkCAFAABQSJACAAAoJEgBAAAUEqQAAAAKCVIAAACFBCkAAIBCghQAAEAhQQoAAKCQIAUAAFBIkAIAACgkSAEAADSlIHXhhRfGRz7ykdh6662ja9euceyxx8aLL75Y55xly5bFqFGjokuXLtG+ffsYNmxYzJ8/v845r776ahx55JGx5ZZb5uucddZZ8e67777PdwMAAGwuGjVIPfjggzkkPfLII3HvvffGO++8E4ceemgsXbq05pzRo0fHHXfcEbfccks+f+7cuXHcccfVHF+5cmUOUStWrIiHH344rr/++pg2bVqce+65jXRXAABAc9eqMd98+vTpdZ6nAJR6lGbNmhUHHnhgLFq0KK655pq46aabYvDgwfmc6667Lvr27ZvD18CBA+Oee+6J5557Lu67777o1q1b7L333nH++efH2WefHeedd160adOmke4OAABorjapOVIpOCWdO3fOjylQpV6qIUOG1JzTp0+f2GGHHWLmzJn5eXrs379/DlEVQ4cOjcWLF8fs2bPrfZ/ly5fn47U3AACAJhekVq1aFWeeeWYccMABsccee+R98+bNyz1KnTp1qnNuCk3pWOWc2iGqcrxyrKG5WR07dqzZevXqtZHuCgAAaI42mSCV5kr97ne/i5tvvnmjv9fYsWNz71dlmzNnzkZ/TwAAoPlo1DlSFaeddlrceeed8dBDD8X2229fs7979+65iMTChQvr9Eqlqn3pWOWcxx57rM71KlX9Kuesrm3btnkDAABocj1S1dXVOUTdeuutcf/998dOO+1U5/iAAQOidevWMWPGjJp9qTx6Knc+aNCg/Dw9Pvvss7FgwYKac1IFwA4dOkS/fv3ex7sBAAA2F60aezhfqsj385//PK8lVZnTlOYtbbHFFvlxxIgRMWbMmFyAIoWj008/PYenVLEvSeXSU2A6+eSTY9KkSfka48aNy9fW6wQAADS7IHXVVVflx0984hN19qcS56ecckr+efLkydGiRYu8EG+qtpcq8l155ZU157Zs2TIPCxw5cmQOWFtttVUMHz48Jk6c+D7fDQAAsLlo1dhD+9amXbt2MWXKlLw1pHfv3nHXXXdt4NYBAABs4lX7AAAAmgpBCgAAoJAgBQAAUEiQAgAA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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 6 + }, + { + "cell_type": "code", + "source": [ + "# Pclass distribution\n", + "pclass_col = \"pclass\" if \"pclass\" in df.columns else (\"Pclass\" if \"Pclass\" in df.columns else None)\n", + "if pclass_col:\n", + " plt.figure(figsize=(5,3))\n", + " df[pclass_col].value_counts().sort_index().plot(kind='bar', color='slategrey')\n", + " plt.title(\"Passenger Class Distribution\")\n", + " plt.xlabel(pclass_col)\n", + " plt.ylabel(\"Count\")\n", + " plt.xticks(rotation=0)\n", + " plt.show()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 333 + }, + "id": "xE1DKPwuPKAb", + "outputId": "33cd1a89-ee74-4b1e-9185-efb67e105a2b", + "ExecuteTime": { + "end_time": "2025-11-22T13:01:12.669542Z", + "start_time": "2025-11-22T13:01:12.576616Z" + } + }, + "id": "xE1DKPwuPKAb", + "outputs": [ + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 7 + }, + { + "cell_type": "code", + "source": [ + "# Sex distribution\n", + "sex_col = \"sex\" if \"sex\" in df.columns else (\"Sex\" if \"Sex\" in df.columns else None)\n", + "if sex_col:\n", + " plt.figure(figsize=(5,3))\n", + " df[sex_col].value_counts().plot(kind='bar', color=['steelblue','orchid'])\n", + " plt.title(\"Gender Distribution\")\n", + " plt.xlabel(sex_col)\n", + " plt.ylabel(\"Count\")\n", + " plt.xticks(rotation=0)\n", + " plt.show()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 333 + }, + "id": "uaKhNBSuPNwp", + "outputId": "579c3a69-cbc3-4a7e-d093-c84808b454da" + }, + "id": "uaKhNBSuPNwp", + "execution_count": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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\n" + }, + "metadata": {} + } + ] + }, + { + "cell_type": "code", + "source": [ + "# Age histogram\n", + "age_col = \"age\" if \"age\" in df.columns else (\"Age\" if \"Age\" in df.columns else None)\n", + "if age_col and df[age_col].notna().any():\n", + " plt.figure(figsize=(5,3))\n", + " df[age_col].dropna().plot(kind='hist', bins=20)\n", + " plt.title(\"Age Distribution\")\n", + " plt.xlabel(\"Age\")\n", + " plt.ylabel(\"Count\")\n", + " plt.show()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 333 + }, + "id": "C8ptfGs_PQrB", + "outputId": "f47d5238-a4d1-4438-e8d0-b7e8656effb9" + }, + "id": "C8ptfGs_PQrB", + "execution_count": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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\n" + }, + "metadata": {} + } + ] + }, + { + "cell_type": "code", + "source": [ + "# Survival by Pclass crosstab\n", + "if target_col and pclass_col:\n", + " pd.crosstab(df[pclass_col], df[target_col]).plot(kind='bar',figsize=(10,6),color=['lightcoral','lightgreen'])\n", + " plt.title(\"Survival by Passenger Class\")\n", + " plt.xlabel(pclass_col)\n", + " plt.ylabel(\"Count\")\n", + " plt.show()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 559 + }, + "id": "cY7TlvFsPUNi", + "outputId": "27d07c7d-4784-4a63-9de1-41d539e817bb" + }, + "id": "cY7TlvFsPUNi", + "execution_count": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA1IAAAIeCAYAAACxyz6kAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjAsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvlHJYcgAAAAlwSFlzAAAPYQAAD2EBqD+naQAAR7VJREFUeJzt3XlcVXX+x/H3ZRfZRIULCbimYriEZpSZC4q4pIal5iRqWZHawpQNjXuLZZuOmTbTpNVobqNlTq64TUmWNGpqmjoalgKOCtcVBM7vjx7cXzfQOIhehNfz8biPB+d8v+ecz/fqML39nvM9FsMwDAEAAAAAyszF2QUAAAAAwI2GIAUAAAAAJhGkAAAAAMAkghQAAAAAmESQAgAAAACTCFIAAAAAYBJBCgAAAABMIkgBAAAAgEkEKQAAAAAwiSAFAFXUsGHDVL9+/Wt6DYvFokmTJl2xz6ZNm2SxWLR06dJrWgsqp3nz5slisejIkSPOLgUAKhRBCgAqwHfffacBAwYoIiJCXl5euummm9StWzfNnDnT2aVVG5MmTZLFYrF/vL29FRkZqXHjxslmszm7vCqnsLBQc+fOVadOnRQYGChPT0/Vr19fw4cP1/bt251dHgBcc27OLgAAbnRbt25V586dFR4erpEjR8pqtero0aP66quvNGPGDI0ZM8Ypdf3tb39TUVGRU67tTLNnz5aPj4/Onj2rtWvX6qWXXtKGDRv05ZdfymKxOLu8KuHChQu69957tXr1anXs2FHPP/+8AgMDdeTIES1evFgffPCBMjIyVK9ePWeXCgDXDEEKAK7SSy+9JH9/f33zzTcKCAhwaMvOzq6w65w7d041a9Ysc393d/cKu/aNZMCAAapTp44k6bHHHlNCQoKWLVumr776SjExMU6u7sZQUFCgoqIieXh4lNr+7LPPavXq1Xrrrbf01FNPObRNnDhRb7311nWoEgCci1v7AOAqHTp0SC1atCgRoiQpKCjI/vORI0dksVg0b968Ev1++6xR8W1qe/fu1QMPPKBatWqpQ4cOev3112WxWPTjjz+WOEdKSoo8PDx0+vRpSY7PSF26dEmBgYEaPnx4ieNsNpu8vLz0zDPPSJLy8/M1YcIERUdHy9/fXzVr1tRdd92ljRs3mvhWSiosLNTzzz8vq9WqmjVr6p577tHRo0ft7RMnTpS7u7tOnDhR4thHHnlEAQEBunjxounrdunSRZJ0+PBhU2NbuHChoqOj5evrKz8/P0VFRWnGjBn29kuXLmny5Mlq0qSJvLy8VLt2bXXo0EHr1q1zOM++ffs0YMAABQYGysvLS23bttWKFSsc+hQ/R/Tll18qOTlZdevWVc2aNdW/f/8S30dRUZEmTZqk0NBQeXt7q3Pnztq7d6/q16+vYcOGOfTNycnRU089pbCwMHl6eqpx48Z69dVXHWYqi/9evv7665o+fboaNWokT09P7d27t9Tv86efftK7776rbt26lQhRkuTq6qpnnnnmirNRn376qXr16qXQ0FB5enqqUaNGeuGFF1RYWOjQ78CBA0pISJDVapWXl5fq1aunQYMGKTc3195n3bp16tChgwICAuTj46OmTZvq+eefv+y1AaCiMCMFAFcpIiJCaWlp2r17t2655ZYKPfd9992nJk2a6OWXX5ZhGOrdu7fGjh2rxYsX69lnn3Xou3jxYnXv3l21atUqcR53d3f1799fy5Yt07vvvusw0/DJJ58oLy9PgwYNkvRLsHrvvfc0ePBgjRw5UmfOnNHf//53xcXF6euvv1br1q3LNZaXXnpJFotFzz33nLKzszV9+nTFxsZqx44dqlGjhh588EFNmTJFixYt0ujRo+3H5efna+nSpUpISJCXl5fp6x46dEiSVLt27TKPbd26dRo8eLC6du2qV199VZL0/fff68svv9STTz4p6ZewO3XqVD388MO67bbbZLPZtH37dn377bfq1q2bJGnPnj268847ddNNN+lPf/qTatasqcWLF6tfv3765z//qf79+zvUOmbMGNWqVUsTJ07UkSNHNH36dI0ePVqLFi2y90lJSdG0adPUp08fxcXFaefOnYqLiysRMs+fP6+7775bP//8sx599FGFh4dr69atSklJ0fHjxzV9+nSH/nPnztXFixf1yCOPyNPTU4GBgaV+n6tWrVJBQYEefPBB038WxebNmycfHx8lJyfLx8dHGzZs0IQJE2Sz2fTaa69J+uXPPS4uTnl5eRozZoysVqt+/vlnrVy5Ujk5OfL399eePXvUu3dvtWzZUlOmTJGnp6cOHjyoL7/8sty1AUCZGQCAq7J27VrD1dXVcHV1NWJiYoyxY8caa9asMfLz8x36HT582JBkzJ07t8Q5JBkTJ060b0+cONGQZAwePLhE35iYGCM6Otph39dff21IMj788EP7vsTERCMiIsK+vWbNGkOS8dlnnzkc27NnT6Nhw4b27YKCAiMvL8+hz+nTp43g4GBjxIgRV6y7NBs3bjQkGTfddJNhs9ns+xcvXmxIMmbMmOEwtvbt2zscv2zZMkOSsXHjxitep/g7279/v3HixAnj8OHDxrvvvmt4enoawcHBxrlz58o8tieffNLw8/MzCgoKLnu9Vq1aGb169bpiTV27djWioqKMixcv2vcVFRUZd9xxh9GkSRP7vrlz5xqSjNjYWKOoqMi+/+mnnzZcXV2NnJwcwzAMIzMz03BzczP69evncJ1JkyYZkozExET7vhdeeMGoWbOm8cMPPzj0/dOf/mS4uroaGRkZhmH8/99LPz8/Izs7+4rjKa5JkvGf//znd/v+emyHDx+27zt//nyJfo8++qjh7e1t/67+85//GJKMJUuWXPbcb731liHJOHHiRJlqAYCKxK19AHCVunXrprS0NN1zzz3auXOnpk2bpri4ON10000lbuEy67HHHiuxb+DAgUpPT7fPtEjSokWL5Onpqb59+172XF26dFGdOnUcZjdOnz6tdevWaeDAgfZ9rq6u9hmroqIinTp1SgUFBWrbtq2+/fbbco9l6NCh8vX1tW8PGDBAISEh+vzzzx36bNu2zWFs8+fPV1hYmO6+++4yXadp06aqW7euGjRooEcffVSNGzfWv/71L3l7e5d5bAEBATp37lyJ2/R+LSAgQHv27NGBAwdKbT916pQ2bNig+++/X2fOnNH//vc//e9//9PJkycVFxenAwcO6Oeff3Y45pFHHnFYEOOuu+5SYWGh/VbO1NRUFRQU6PHHH3c4rrQFTZYsWaK77rpLtWrVsl/7f//7n2JjY1VYWKgtW7Y49E9ISFDdunUvO95ixSsg/vrP0qwaNWrYfy7+bu666y6dP39e+/btkyT5+/tLktasWaPz58+Xep7i22k//fTTarmwCgDnIkgBQAVo166dli1bptOnT+vrr79WSkqKzpw5owEDBlz2WZOyaNCgQYl99913n1xcXOyByDAMLVmyRPHx8fLz87vsudzc3JSQkKBPP/1UeXl5kqRly5bp0qVLDkFKkj744AO1bNnS/uxP3bp19a9//cvh2RSzmjRp4rBtsVjUuHFjh/cLDRw4UJ6enpo/f74kKTc3VytXrtSQIUPK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/FFPP/20jh07pq5du+qZZ56RJN166606fPiwXnjhBV24cEH333+/BgwYUPGDBQBUGgQpAMANrWbNmmrcuLHCw8Pl5vb/d6y3bNlSqampZTrHvn37dPLkSb3yyiu666671KxZM4eFJorVrVtXiYmJ+sc//qHp06frr3/9q73Nz89PAwcO1N/+9jctWrRI//znP3Xq1KmrHyAAoFLiGSkAQJWUkpKiqKgoPf7443rsscfk4eGhjRs36r777lOdOnUc+oaHh8vDw0MzZ87UY489pt27d+uFF15w6DNhwgRFR0erRYsWysvL08qVK9W8eXNJ0ptvvqmQkBC1adNGLi4uWrJkiaxWqwICAq7XcAEA1xkzUgCAKunmm2/W2rVrtXPnTt12222KiYnRp59+6jBrVaxu3bqaN2+elixZosjISL3yyit6/fXXHfp4eHgoJSVFLVu2VMeOHeXq6qqFCxdKknx9fe2LW7Rr105HjhzR559/LhcX/m8WAKoqi2EYhrOLAAAAAIAbCf9UBgAAAAAmEaQAAAAAwCSCFAAAAACYRJACAAAAAJMIUgAAAABgEkEKAAAAAEwiSAEAAACASQQpAAAAADCJIAUAAAAAJhGkAAAAAMAkghQAAAAAmESQAgAAAACT/g9uHOJJKysDIwAAAABJRU5ErkJggg==\n" + }, + "metadata": {} + } + ] + }, + { + "cell_type": "code", + "source": [ + "# Survival by Sex crosstab\n", + "if target_col and sex_col:\n", + " pd.crosstab(df[sex_col], df[target_col]).plot(kind='bar', figsize=(5,3), color=['lightcoral','lightgreen'])\n", + " plt.title(\"Survival by Gender\")\n", + " plt.xlabel(sex_col); plt.ylabel(\"Count\"); plt.xticks(rotation=0)\n", + " plt.show()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 333 + }, + "id": "Qf8kjWV4PZrJ", + "outputId": "7824a3ec-44ac-4a84-933d-0ec0f19eaab7" + }, + "id": "Qf8kjWV4PZrJ", + "execution_count": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "
" + ], + "image/png": "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\n" + }, + "metadata": {} + } + ] + }, + { + "cell_type": "code", + "source": [ + "# Correlation matrix plot\n", + "plt.figure(figsize=(10,6))\n", + "correlation_matrix = df.corr(numeric_only=True)\n", + "print(correlation_matrix)\n", + "plt.matshow(correlation_matrix)\n", + "plt.title('Correlation Matrix')\n", + "plt.xticks(range(len(correlation_matrix.columns)), correlation_matrix.columns,rotation = 90)\n", + "plt.yticks(range(len(correlation_matrix.columns)), correlation_matrix.columns)\n", + "plt.colorbar()\n", + "plt.show()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 678 + }, + "id": "XOYKdog8Pl-R", + "outputId": "16d6ca85-2d06-4794-91b3-14728f9a92dc", + "ExecuteTime": { + "end_time": "2025-11-22T14:20:22.090323Z", + "start_time": "2025-11-22T14:20:19.372241Z" + } + }, + "id": "XOYKdog8Pl-R", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " PassengerId Pclass Age SibSp Parch Fare \\\n", + "PassengerId 1.000000 -0.035144 0.036847 -0.057527 -0.001652 0.012658 \n", + "Pclass -0.035144 1.000000 -0.369226 0.083081 0.018443 -0.549500 \n", + "Age 0.036847 -0.369226 1.000000 -0.308247 -0.189119 0.096067 \n", + "SibSp -0.057527 0.083081 -0.308247 1.000000 0.414838 0.159651 \n", + "Parch -0.001652 0.018443 -0.189119 0.414838 1.000000 0.216225 \n", + "Fare 0.012658 -0.549500 0.096067 0.159651 0.216225 1.000000 \n", + "Survived -0.005007 -0.338481 -0.077221 -0.035322 0.081629 0.257307 \n", + "\n", + " Survived \n", + "PassengerId -0.005007 \n", + "Pclass -0.338481 \n", + "Age -0.077221 \n", + "SibSp -0.035322 \n", + "Parch 0.081629 \n", + "Fare 0.257307 \n", + "Survived 1.000000 \n" + ] + }, + { + "data": { + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + }, + { + "data": { + "text/plain": [ + "
" + ], + "image/png": "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" + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 8 + }, + { + "cell_type": "code", + "source": [ + "#Result ->study hour\n", + "#Result ->sleep hour" + ], + "metadata": { + "id": "4Z8_rX9kh0YP" + }, + "id": "4Z8_rX9kh0YP", + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "# Drop unnecessary columns from the original DataFrame\n", + "# Based on EDA, 'PassengerId', 'Name', and 'Ticket' are typically not useful features.\n", + "# 'Cabin' has a high number of missing values.\n", + "colsToDrop = ['PassengerId', 'Name', 'Ticket', 'Cabin']\n", + "df = df.drop(columns=colsToDrop, errors = 'ignore')\n", + "print(\"Current column list in df: \", df.columns.tolist())" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "tjQBmsELYmEC", + "outputId": "944a683a-a469-4f82-ca7f-3352661c3080", + "ExecuteTime": { + "end_time": "2025-11-22T15:04:31.373256Z", + "start_time": "2025-11-22T15:04:31.294829Z" + } + }, + "id": "tjQBmsELYmEC", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Current column list in df: ['Pclass', 'Sex', 'Age', 'SibSp', 'Parch', 'Fare', 'Embarked', 'Survived']\n" + ] + } + ], + "execution_count": 9 + }, + { + "cell_type": "markdown", + "id": "af6315d9", + "metadata": { + "id": "af6315d9" + }, + "source": [ + "\n", + "## 3) What “model-ready” means\n", + "A model-ready table has:\n", + "- **Numeric features only** (after encoding categoricals)\n", + "- **No missing values** after preprocessing\n", + "- Reasonable **scales** for the intended algorithm\n", + "- A clearly defined **target `y`**\n", + "- No **leakage** (no target-derived info inside features)\n" + ] + }, + { + "cell_type": "markdown", + "id": "6b1e735a", + "metadata": { + "id": "6b1e735a" + }, + "source": [ + "\n", + "## 4) Pick target **y** and features **X** (avoid leakage)\n", + "We will:\n", + "- Pick `y = Survived`\n", + "- Keep the rest columns for `X`\n", + "- Drop obvious duplicates/leakage columns if they exist (e.g., `alive` is a text version of survived in seaborn)\n" + ] + }, + { + "cell_type": "code", + "id": "718b2155", + "metadata": { + "id": "718b2155", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 304 + }, + "outputId": "e11575c6-334b-448c-e3ac-4c1ec1a7972f", + "ExecuteTime": { + "end_time": "2025-11-22T15:25:51.970094Z", + "start_time": "2025-11-22T15:25:51.911551Z" + } + }, + "source": [ + "# Choose target (last column) and features (rest)\n", + "target = df.columns[-1]\n", + "y = df[target].astype(int)\n", + "\n", + "X = df.iloc[:, :-1].copy()\n", + "\n", + "print(\"X column:\", list(X.columns))\n", + "print('y name:', target)\n", + "X.head(7)" + ], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "X column: ['Pclass', 'Sex', 'Age', 'SibSp', 'Parch', 'Fare', 'Embarked']\n", + "y name: Survived\n" + ] + }, + { + "data": { + "text/plain": [ + " Pclass Sex Age SibSp Parch Fare Embarked\n", + "0 3 male 22.0 1 0 7.2500 S\n", + "1 1 female 38.0 1 0 71.2833 C\n", + "2 3 female 26.0 0 0 7.9250 S\n", + "3 1 female 35.0 1 0 53.1000 S\n", + "4 3 male 35.0 0 0 8.0500 S\n", + "5 3 male NaN 0 0 8.4583 Q\n", + "6 1 male 54.0 0 0 51.8625 S" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PclassSexAgeSibSpParchFareEmbarked
03male22.0107.2500S
11female38.01071.2833C
23female26.0007.9250S
31female35.01053.1000S
43male35.0008.0500S
53maleNaN008.4583Q
61male54.00051.8625S
\n", + "
" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 10 + }, + { + "cell_type": "markdown", + "id": "72c8cc9f", + "metadata": { + "id": "72c8cc9f" + }, + "source": [ + "\n", + "## 5) Split **early**: train vs test (with `stratify`)\n", + "We split before computing medians, modes, or scalers. We **fit** decisions on the train set and **apply** them to the test set.\n" + ] + }, + { + "cell_type": "code", + "id": "99d85e46", + "metadata": { + "id": "99d85e46", + "colab": { + "base_uri": "https://localhost:8080/" + }, + "outputId": "8359acd6-d452-44ee-98f9-93344582cc2d", + "ExecuteTime": { + "end_time": "2025-11-22T15:25:57.152638Z", + "start_time": "2025-11-22T15:25:56.983306Z" + } + }, + "source": [ + "X_train, X_test, y_train, y_test = train_test_split(\n", + " X, y, test_size=0.25, random_state = 42, stratify = y\n", + ")\n", + "X_train.shape, X_test.shape" + ], + "outputs": [ + { + "data": { + "text/plain": [ + "((668, 7), (223, 7))" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 11 + }, + { + "cell_type": "markdown", + "id": "c8a16860", + "metadata": { + "id": "c8a16860" + }, + "source": [ + "\n", + "## 6) Numeric preparation (invalids, missing, outliers)\n", + "- Fix invalid values (e.g., negative ages if any) \n", + "- Impute missing numeric values (median is a robust default with outliers) \n", + "- IQR clipping for outliers (example on `age` and `fare`)\n" + ] + }, + { + "cell_type": "code", + "source": [ + "# Automatically identify numerical and categorical columns\n", + "num_cols = X_train.select_dtypes(include=np.number).columns.tolist()\n", + "cat_cols = X_train.select_dtypes(exclude=np.number).columns.tolist()\n", + "\n", + "print(\"Numerical columns: \",num_cols)\n", + "print(\"Categorical columns: \",cat_cols)" + ], + "metadata": { + "id": "nRHUZXmTXQbG", + "colab": { + "base_uri": "https://localhost:8080/" + }, + "outputId": "085db65b-19a2-4d0c-df79-e52e0d0c16c0", + "ExecuteTime": { + "end_time": "2025-11-22T15:26:01.936903Z", + "start_time": "2025-11-22T15:26:01.923879Z" + } + }, + "id": "nRHUZXmTXQbG", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Numerical columns: ['Pclass', 'Age', 'SibSp', 'Parch', 'Fare']\n", + "Categorical columns: ['Sex', 'Embarked']\n" + ] + } + ], + "execution_count": 12 + }, + { + "cell_type": "code", + "source": [ + "# Apply numeric preprocessing to train and test sets\n", + "train = X_train.copy()\n", + "test = X_test.copy()\n", + "\n", + "# Fix invalid values (negative numbers)\n", + "for c in num_cols:\n", + " train.loc[train[c] < 0, c] = np.nan\n", + " test.loc[test[c] < 0, c] = np.nan\n", + "\n", + "\n", + "# Impute missing values with medians (fit on TRAIN, then apply to TEST)\n", + "medians = {c: train[c].median() for c in num_cols}\n", + "for c in num_cols:\n", + " train[c] = train[c].fillna(medians[c])\n", + " test[c] = test[c].fillna(medians[c])" + ], + "metadata": { + "id": "RgnodeybX-Gv", + "ExecuteTime": { + "end_time": "2025-11-22T15:26:10.081245Z", + "start_time": "2025-11-22T15:26:09.991194Z" + } + }, + "id": "RgnodeybX-Gv", + "outputs": [], + "execution_count": 13 + }, + { + "cell_type": "code", + "source": [ + "# IQR clip for outliers (example on age and fare) (fit on TRAIN, then apply to TEST)\n", + "def iqr_bounds(s):\n", + " q1, q3 = s.quantile(0.25), s.quantile(0.75)\n", + " iqr = q3 - q1\n", + " return q1 - 1.5 * iqr, q3 + 1.5 * iqr\n", + "\n", + "for c in [x for x in [\"Age\", \"Fare\"] if x in num_cols]:\n", + " lo, hi = iqr_bounds(train[c])\n", + " train[c] = train[c].clip(lower = lo, upper = hi)\n", + " test[c] = test[c].clip(lower = lo, upper = hi)" + ], + "metadata": { + "id": "_j1xZnOQYIzP", + "ExecuteTime": { + "end_time": "2025-11-22T15:28:53.730283Z", + "start_time": "2025-11-22T15:28:53.708547Z" + } + }, + "id": "_j1xZnOQYIzP", + "outputs": [], + "execution_count": 17 + }, + { + "cell_type": "code", + "source": [ + "# Display descriptive statistics for numeric columns after preprocessing\n", + "print(\"\\nDescription statistics for numerical columns (Train set)\")\n", + "print(train[num_cols].describe())\n" + ], + "metadata": { + "id": "Y_o6mD84YMiU", + "colab": { + "base_uri": "https://localhost:8080/" + }, + "outputId": "3bc7ab1d-9506-461d-80a7-e2ccd2d681e8", + "ExecuteTime": { + "end_time": "2025-11-22T15:28:51.537238Z", + "start_time": "2025-11-22T15:28:51.519552Z" + } + }, + "id": "Y_o6mD84YMiU", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Description statistics for numerical columns (Train set)\n", + " Pclass Age SibSp Parch Fare\n", + "count 668.000000 668.000000 668.000000 668.000000 668.000000\n", + "mean 2.312874 29.749132 0.464072 0.375749 31.177469\n", + "std 0.831906 12.964151 0.999353 0.832877 47.457877\n", + "min 1.000000 0.420000 0.000000 0.000000 0.000000\n", + "25% 2.000000 22.000000 0.000000 0.000000 7.895800\n", + "50% 3.000000 29.000000 0.000000 0.000000 13.860400\n", + "75% 3.000000 36.000000 1.000000 0.000000 30.500000\n", + "max 3.000000 80.000000 8.000000 6.000000 512.329200\n" + ] + } + ], + "execution_count": 16 + }, + { + "cell_type": "code", + "source": [ + "# Display descriptive statistics for numeric columns after preprocessing\n", + "print(\"\\nDescription statistics for numerical columns (Test set)\")\n", + "print(test[num_cols].describe())" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "75v8QjSTrjry", + "outputId": "c29803f6-a6e8-403f-a087-9ccd14e42431", + "ExecuteTime": { + "end_time": "2025-11-22T15:28:49.266483Z", + "start_time": "2025-11-22T15:28:49.193298Z" + } + }, + "id": "75v8QjSTrjry", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Description statistics for numerical columns (Test set)\n", + " Pclass Age SibSp Parch Fare\n", + "count 223.000000 223.000000 223.000000 223.000000 223.000000\n", + "mean 2.295964 28.994395 0.699552 0.399103 35.279819\n", + "std 0.850189 13.139678 1.353790 0.721235 55.860764\n", + "min 1.000000 0.750000 0.000000 0.000000 0.000000\n", + "25% 1.000000 23.000000 0.000000 0.000000 8.050000\n", + "50% 3.000000 29.000000 0.000000 0.000000 15.850000\n", + "75% 3.000000 33.000000 1.000000 1.000000 35.500000\n", + "max 3.000000 70.000000 8.000000 4.000000 512.329200\n" + ] + } + ], + "execution_count": 15 + }, + { + "cell_type": "code", + "source": [ + "print(\"\\nTrain set after numeric preprocessing:\")\n", + "display(train.head(10))\n", + "\n", + "print(\"\\nTest set after numeric preprocessing:\")\n", + "display(test.head(10))" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 778 + }, + "id": "7YJzxMQ8YO6U", + "outputId": "e975b4e7-4f82-4c62-82aa-595f5ad8df44", + "ExecuteTime": { + "end_time": "2025-11-22T15:28:45.537643Z", + "start_time": "2025-11-22T15:28:45.505612Z" + } + }, + "id": "7YJzxMQ8YO6U", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Train set after numeric preprocessing:\n" + ] + }, + { + "data": { + "text/plain": [ + " Pclass Sex Age SibSp Parch Fare Embarked\n", + "486 1.0 female 35.0 1.0 0.0 90.0000 S\n", + "238 2.0 male 19.0 0.0 0.0 10.5000 S\n", + "722 2.0 male 34.0 0.0 0.0 13.0000 S\n", + "184 3.0 female 4.0 0.0 2.0 22.0250 S\n", + "56 2.0 female 21.0 0.0 0.0 10.5000 S\n", + "748 1.0 male 19.0 1.0 0.0 53.1000 S\n", + "638 3.0 female 41.0 0.0 5.0 39.6875 S\n", + "253 3.0 male 30.0 1.0 0.0 16.1000 S\n", + "140 3.0 female 29.0 0.0 2.0 15.2458 C\n", + "626 2.0 male 57.0 0.0 0.0 12.3500 Q" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PclassSexAgeSibSpParchFareEmbarked
4861.0female35.01.00.090.0000S
2382.0male19.00.00.010.5000S
7222.0male34.00.00.013.0000S
1843.0female4.00.02.022.0250S
562.0female21.00.00.010.5000S
7481.0male19.01.00.053.1000S
6383.0female41.00.05.039.6875S
2533.0male30.01.00.016.1000S
1403.0female29.00.02.015.2458C
6262.0male57.00.00.012.3500Q
\n", + "
" + ] + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Test set after numeric preprocessing:\n" + ] + }, + { + "data": { + "text/plain": [ + " Pclass Sex Age SibSp Parch Fare Embarked\n", + "157 3.0 male 30.0 0.0 0.0 8.0500 S\n", + "501 3.0 female 21.0 0.0 0.0 7.7500 Q\n", + "352 3.0 male 15.0 1.0 1.0 7.2292 C\n", + "82 3.0 female 29.0 0.0 0.0 7.7875 Q\n", + "683 3.0 male 14.0 5.0 2.0 46.9000 S\n", + "84 2.0 female 17.0 0.0 0.0 10.5000 S\n", + "779 1.0 female 43.0 0.0 1.0 211.3375 S\n", + "515 1.0 male 47.0 0.0 0.0 34.0208 S\n", + "728 2.0 male 25.0 1.0 0.0 26.0000 S\n", + "734 2.0 male 23.0 0.0 0.0 13.0000 S" + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PclassSexAgeSibSpParchFareEmbarked
1573.0male30.00.00.08.0500S
5013.0female21.00.00.07.7500Q
3523.0male15.01.01.07.2292C
823.0female29.00.00.07.7875Q
6833.0male14.05.02.046.9000S
842.0female17.00.00.010.5000S
7791.0female43.00.01.0211.3375S
5151.0male47.00.00.034.0208S
7282.0male25.01.00.026.0000S
7342.0male23.00.00.013.0000S
\n", + "
" + ] + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 14 + }, + { + "cell_type": "markdown", + "id": "6f979e8c", + "metadata": { + "id": "6f979e8c" + }, + "source": [ + "\n", + "## 7) Categorical preparation (One-Hot vs Ordinal, rare cats)\n", + "- For unordered categories like `sex`, `embarked`: **One-Hot** \n", + "- For ordered categories (not common in Titanic): **Ordinal** \n", + "- Handle rare categories by grouping into \"other\" (optional demo)\n" + ] + }, + { + "cell_type": "code", + "source": [ + "# Identify categorical columns present (using the list identified earlier)\n", + "# Assuming cat_cols was defined in a previous cell and contains 'Sex', 'Embarked'\n", + "# If not, we can redefine here:\n", + "print(cat_cols)\n", + "\n", + "# Handle missing values in categorical columns\n", + "for c in cat_cols:\n", + " train[c] = train[c].fillna(\"missing\")\n", + " test[c] = test[c].fillna(\"missing\")" + ], + "metadata": { + "id": "Kikst4_XZuoR", + "colab": { + "base_uri": "https://localhost:8080/" + }, + "outputId": "5b6ed028-f632-4bf8-84b4-bdd2c984144e", + "ExecuteTime": { + "end_time": "2025-11-22T15:28:58.604033Z", + "start_time": "2025-11-22T15:28:58.598701Z" + } + }, + "id": "Kikst4_XZuoR", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Sex', 'Embarked']\n" + ] + } + ], + "execution_count": 18 + }, + { + "cell_type": "markdown", + "source": [ + "**Explanation: Why One-Hot Encoding for sex and embarked**\n", + "\n", + "These are nominal categorical variables. There is no natural order among the categories\n", + "(e.g., male is not greater than female, and C is not better than S).\n", + "\n", + "***One-Hot Encoding (recommended here):***\n", + "\n", + "\n", + "* Creates new binary columns (0 or 1) for each category.\n", + "* Works well for nominal variables because it does not impose any artificial order.\n", + "* Keeps distances meaningful for models that use numeric input.\n", + "\n", + "\n", + "***Ordinal Encoding (not suitable here):***\n", + "\n", + "* Assigns numerical ranks such as 0, 1, 2.\n", + "\n", + "* Appropriate only when categories have a true order (e.g., low, medium, high).\n", + "\n", + "* Using it for sex or embarked would wrongly suggest an order and can mislead the model.\n", + "\n", + "***Frequency Encoding (use with care):***\n", + "\n", + "* Replaces each category with its frequency or count in the dataset.\n", + "\n", + "* Can capture prevalence but may collapse information if different categories share the same frequency.\n", + "\n", + "* For simple variables like sex and embarked, one-hot is usually clearer and avoids adding a numeric relationship that is not meaningful." + ], + "metadata": { + "id": "wMX2S8W4fGdW" + }, + "id": "wMX2S8W4fGdW" + }, + { + "cell_type": "code", + "source": [ + "# Categorical columns for encoding\n", + "print(cat_cols)\n", + "# Apply One-Hot Encoding\n", + "# We will apply this to the 'train' and 'test' dataframes that already had numeric preprocessing and rare category handling.\n", + "train_encoded_ohe = pd.get_dummies(train, columns=cat_cols, prefix = cat_cols, dtype = int)\n", + "test_encoded_ohe = pd.get_dummies(test, columns=cat_cols, prefix = cat_cols, dtype = int)\n", + "\n", + "# Align columns after One-Hot Encoding\n", + "train_cols_ohe = train_encoded_ohe.columns\n", + "test_encoded_ohe = test_encoded_ohe.reindex(columns=train_cols_ohe, fill_value=0)\n", + "\n", + "print(\"\\Train set after On-Hot Encoding: \")\n", + "display(train_encoded_ohe.head())\n", + "\n", + "print(\"\\nTest set after On-Hot Encoding: \")\n", + "display(test_encoded_ohe.head())" + ], + "metadata": { + "id": "UrvxzkM3d4VW", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 534 + }, + "outputId": "1d06d5ed-05c8-478b-fbe4-9f677ea928ed", + "ExecuteTime": { + "end_time": "2025-11-22T15:29:02.489925Z", + "start_time": "2025-11-22T15:29:02.408186Z" + } + }, + "id": "UrvxzkM3d4VW", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Sex', 'Embarked']\n", + "\\Train set after On-Hot Encoding: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "<>:12: SyntaxWarning: invalid escape sequence '\\T'\n", + "<>:12: SyntaxWarning: invalid escape sequence '\\T'\n", + "C:\\Users\\evan\\AppData\\Local\\Temp\\ipykernel_15184\\2510539829.py:12: SyntaxWarning: invalid escape sequence '\\T'\n", + " print(\"\\Train set after On-Hot Encoding: \")\n" + ] + }, + { + "data": { + "text/plain": [ + " Pclass Age SibSp Parch Fare Sex_female Sex_male Embarked_C \\\n", + "486 1.0 35.0 1.0 0.0 64.4063 1 0 0 \n", + "238 2.0 19.0 0.0 0.0 10.5000 0 1 0 \n", + "722 2.0 34.0 0.0 0.0 13.0000 0 1 0 \n", + "184 3.0 4.0 0.0 2.0 22.0250 1 0 0 \n", + "56 2.0 21.0 0.0 0.0 10.5000 1 0 0 \n", + "\n", + " Embarked_Q Embarked_S Embarked_missing \n", + "486 0 1 0 \n", + "238 0 1 0 \n", + "722 0 1 0 \n", + "184 0 1 0 \n", + "56 0 1 0 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PclassAgeSibSpParchFareSex_femaleSex_maleEmbarked_CEmbarked_QEmbarked_SEmbarked_missing
4861.035.01.00.064.4063100010
2382.019.00.00.010.5000010010
7222.034.00.00.013.0000010010
1843.04.00.02.022.0250100010
562.021.00.00.010.5000100010
\n", + "
" + ] + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Test set after On-Hot Encoding: \n" + ] + }, + { + "data": { + "text/plain": [ + " Pclass Age SibSp Parch Fare Sex_female Sex_male Embarked_C \\\n", + "157 3.0 30.0 0.0 0.0 8.0500 0 1 0 \n", + "501 3.0 21.0 0.0 0.0 7.7500 1 0 0 \n", + "352 3.0 15.0 1.0 1.0 7.2292 0 1 1 \n", + "82 3.0 29.0 0.0 0.0 7.7875 1 0 0 \n", + "683 3.0 14.0 5.0 2.0 46.9000 0 1 0 \n", + "\n", + " Embarked_Q Embarked_S Embarked_missing \n", + "157 0 1 0 \n", + "501 1 0 0 \n", + "352 0 0 0 \n", + "82 1 0 0 \n", + "683 0 1 0 " + ], + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PclassAgeSibSpParchFareSex_femaleSex_maleEmbarked_CEmbarked_QEmbarked_SEmbarked_missing
1573.030.00.00.08.0500010010
5013.021.00.00.07.7500100100
3523.015.01.01.07.2292011000
823.029.00.00.07.7875100100
6833.014.05.02.046.9000010010
\n", + "
" + ] + }, + "metadata": {}, + "output_type": "display_data", + "jetTransient": { + "display_id": null + } + } + ], + "execution_count": 19 + }, + { + "cell_type": "code", + "source": [ + "# --- Demonstration of Ordinal and Frequency Encoding (on copies) ---\n", + "\n", + "\n", + "# Ordinal Encoding Demonstration\n", + "# Create copies to avoid modifying the main dataframes\n", + "\n", + "\n", + "# Fit encoder on train, transform both train and test\n", + "\n", + "\n", + "# Need to handle potential unseen categories in test if not using handle_unknown\n", + "# For simplicity in demo, fit on combined to get all categories, but in real scenario fit only on train\n" + ], + "metadata": { + "id": "zBVJ1aPKerbe" + }, + "id": "zBVJ1aPKerbe", + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "# Frequency Encoding Demonstration\n", + "# Create copies\n", + "\n", + "\n", + "\n", + "# Note: The main dataframes 'train_encoded_ohe' and 'test_encoded_ohe' are the ones with One-Hot Encoding applied." + ], + "metadata": { + "id": "pn_dWr4seyQu" + }, + "id": "pn_dWr4seyQu", + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "id": "c3a79d35", + "metadata": { + "id": "c3a79d35" + }, + "source": [ + "\n", + "## 8) Datetime to features (tiny synthetic example)\n", + "Titanic often lacks a datetime. To teach the idea, we create a synthetic `boarding_date` and derive numeric features.\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "31cd78bf", + "metadata": { + "id": "31cd78bf" + }, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "source": [], + "metadata": { + "id": "d0cpNSL_hJd0" + }, + "id": "d0cpNSL_hJd0", + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "id": "92e73f69", + "metadata": { + "id": "92e73f69" + }, + "source": [ + "\n", + "## 9) Scaling (Standard vs Min-Max vs Robust)\n", + "We show Standardization manually. You can swap to Min-Max or Robust later.\n" + ] + }, + { + "cell_type": "markdown", + "source": [ + "###Scaling (Standard vs Min-Max vs Robust)\n", + "\n", + "Scaling is a step to adjust the range of values in your features so that they are on a similar scale. This is important for many machine learning algorithms that are sensitive to the magnitude of features (like those using distance calculations).\n", + "\n", + "Think of it like comparing heights in meters and centimeters – scaling would convert them to the same unit so they can be compared fairly.\n", + "\n", + "**Standardization:** This is the method we're using here. It transforms the data so that it has a mean of 0 and a standard deviation of 1.\n", + "\n", + "* **How it works:** For each feature, it subtracts the mean of that feature (calculated from the training data) and then divides by the standard deviation of that feature (also calculated from the training data).\n", + "* **Is this approach correct?** Yes, the approach in the code is correct. We calculate the mean and standard deviation *only* from the training data (`fit` on train). This is crucial to prevent \"data leakage\" from the test set. If we used the test set's statistics, we would be giving the model information about the test set during training, which would make our performance estimates unrealistic. We then apply this learned transformation (using the training mean and standard deviation) to *both* the training and test data (`transform` both).\n", + "\n", + "We show Standardization manually below. You can swap to Min-Max or Robust later, but the principle of fitting on training and transforming both remains the same." + ], + "metadata": { + "id": "JqCG_Ir9kBwz" + }, + "id": "JqCG_Ir9kBwz" + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7e5c6c5d", + "metadata": { + "id": "7e5c6c5d" + }, + "outputs": [], + "source": [ + "# Pick numeric columns for scaling (only those that exist after OHE)\n", + "\n", + "\n", + "# Standardization: z = (x - mean) / std (fit on TRAIN only)\n" + ] + }, + { + "cell_type": "code", + "source": [], + "metadata": { + "id": "EYGPUMtyhtVE" + }, + "id": "EYGPUMtyhtVE", + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "id": "28f8429a", + "metadata": { + "id": "28f8429a" + }, + "source": [ + "\n", + "## 10) Save processed data + tiny sanity check\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6da6a1f5", + "metadata": { + "id": "6da6a1f5" + }, + "outputs": [], + "source": [ + "# Keep feature matrix aligned with target lengths\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "id": "e51c8e0f", + "metadata": { + "id": "e51c8e0f" + }, + "source": [ + "\n", + "---\n", + "\n", + "### Next Session Preview: Pipelines\n", + "We will convert today's manual steps into a clean **`Pipeline` + `ColumnTransformer`** so the same logic is applied consistently to train/test and future data. " + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "edb82675" + }, + "source": [ + "### Golden rule\n", + "\n", + "**Split first** → `X_train, X_test, y_train, y_test`\n", + "Then **fit on train** → **apply to both** (train & test) using the **same fitted parameters**.\n", + "\n", + "---\n", + "\n", + "### 1) “Learned” transforms (fit on **train only**, transform **both**)\n", + "\n", + "These compute parameters from data. **Never** peek at test to compute them.\n", + "\n", + "* **Missing-value imputation** (mean/median/mode): compute on train, use same values on test.\n", + "* **Scaling/standardization** (StandardScaler, MinMaxScaler, RobustScaler): fit on train, transform both.\n", + "* **One-Hot/Ordinal encoding** (sklearn encoders): fit on train (learn categories), transform both (`handle_unknown='ignore'` helps).\n", + "* **Outlier caps/clip with IQR or percentiles**: compute bounds on train, apply same bounds to both.\n", + "* **Discretization/binning by quantiles** (KBinsDiscretizer, pd.qcut): fit on train, apply edges to both.\n", + "* **Feature selection** (VarianceThreshold, SelectKBest, model-based, PCA): fit on train, transform both.\n", + "* **Text vectorizers** (CountVectorizer, TF-IDF): fit on train (vocab/idf), transform both.\n", + "* **Target balancing** (SMOTE/oversampling/undersampling): **apply only to the training set** (never to test).\n", + "* **Model hyperparameter tuning / CV**: use **train only** (with internal CV). Pick the best, then evaluate once on test.\n", + "* Manual binning with predefined edges (e.g., ages 0–12, 13–19, …) — edges defined upfront.\n", + "\n", + "\n", + "---\n", + "\n", + "### 2) “Rule-based / deterministic” transforms (do the **same** on train & test)\n", + "\n", + "These don’t need to “learn” from data, so you can apply identically to both sets.\n", + "\n", + "* **String cleanup**: lowercasing, trimming spaces, fixing typos with a fixed map.\n", + "* **Type fixes**: `to_datetime`, numeric casting with a fixed rule.\n", + "* **Feature extraction from datetime/text**: year, month, dayofweek, char length, regex parse (fixed pattern).\n", + "* **Unit conversions / math transforms**: log/exp/square (if you choose to always apply), clipping to known business limits.\n", + "* **Manual binning with predefined edge**\n", + "* Dropping constant/ID columns: e.g., PassengerId, Name, Ticket (fixed decision).\n", + "\n", + "If a “deterministic” step derives thresholds from data (e.g., “drop columns with >40% missing”), compute that decision on train, then apply the resulting column list to test.\n", + "\n", + "---\n", + "\n", + "### 3) Things you should never compute using test (to avoid leakage)\n", + "\n", + "* Any statistic used for preprocessing (means, medians, std, percentiles, encoder category sets, PCA components).\n", + "\n", + "* Any feature engineering that looks at target when deciding transforms (e.g., selecting bins using y).\n", + "\n", + "* **Resampling** (SMOTE/undersampling) on test.\n", + "\n", + "* **Feature selection** using y fitted on the full data; fit it on train only.\n", + "\n", + "---\n", + "\n", + "### 4) Quick checklist (practical order)\n", + "\n", + "* **Split** → train/test (with stratify=y for classification).\n", + "\n", + "* **Deterministic fixes on both:** strip/lower text, parse dates, drop IDs, add date features.\n", + "\n", + "* **Fit on train, apply to both:** Imputers → encoders → scalers → (optional) feature selection/PCA.\n", + "\n", + "* (Train only) **Resampling** if needed (SMOTE, class weights).\n", + "\n", + "* **Save fitted preprocessors/pipeline**; transform test with those; evaluate once on test.\n", + "\n", + "---\n", + "\n", + "### Mini examples\n", + "\n", + "* **Imputer example**\n", + "Fit median on train ages; fill test ages with the same median.\n", + "\n", + "* **One-Hot example**\n", + "Fit encoder on train embarked categories (e.g., {C, Q, S}); transform test with handle_unknown='ignore'.\n", + "\n", + "* **IQR clip**\n", + "Compute age lower/upper bounds from train; clip both train and test with those bounds.\n", + "\n", + "This mental model—fit on train, reuse on test—keeps your evaluation honest and leak-free." + ], + "id": "edb82675" + } + ], + "metadata": { + "colab": { + "provenance": [] + }, + "language_info": { + "name": "python" + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3 (ipykernel)", + "language": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Python_For_ML/Week_4/Conceptual Session/s2.ipynb b/Python_For_ML/Week_4/Conceptual Session/s2.ipynb new file mode 100644 index 0000000..a4b1f79 --- /dev/null +++ b/Python_For_ML/Week_4/Conceptual Session/s2.ipynb @@ -0,0 +1,41 @@ +{ + "cells": [ + { + "cell_type": "code", + "id": "initial_id", + "metadata": { + "collapsed": true, + "ExecuteTime": { + "end_time": "2025-11-22T09:15:32.886346Z", + "start_time": "2025-11-22T09:15:32.884287Z" + } + }, + "source": [ + "" + ], + "outputs": [], + "execution_count": null + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/student_data (2).csv b/student_data.csv similarity index 100% rename from student_data (2).csv rename to student_data.csv diff --git a/student_scores.csv b/student_scores.xlsx similarity index 100% rename from student_scores.csv rename to student_scores.xlsx